From 851b68dbccae859682082c4038f8ed1cdba05e9a Mon Sep 17 00:00:00 2001 From: githubtemp5 Date: Sat, 17 Aug 2024 17:03:33 +0100 Subject: [PATCH 1/6] work in progress regression --- .gitignore | 3 + 2-Regression/1-Tools/notebook.ipynb | 92 +++++++++++++++++++++++++++++ 2 files changed, 95 insertions(+) diff --git a/.gitignore b/.gitignore index f780d5761d..9f15375872 100644 --- a/.gitignore +++ b/.gitignore @@ -361,3 +361,6 @@ MigrationBackup/ .Rhistory ML-For-Beginners.Rproj + +#.venv +.venv/ diff --git a/2-Regression/1-Tools/notebook.ipynb b/2-Regression/1-Tools/notebook.ipynb index e69de29bb2..6e92813b92 100644 --- a/2-Regression/1-Tools/notebook.ipynb +++ b/2-Regression/1-Tools/notebook.ipynb @@ -0,0 +1,92 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#Python notebook for ML" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hello World!\n" + ] + } + ], + "source": [ + "print(\"Hello World!\")" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'numpy'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[1;32mIn[10], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mnumpy\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m \u001b[38;5;21;01mnp\u001b[39;00m\n\u001b[0;32m 3\u001b[0m a \u001b[38;5;241m=\u001b[39m np\u001b[38;5;241m.\u001b[39marray([\u001b[38;5;241m1\u001b[39m,\u001b[38;5;241m2\u001b[39m,\u001b[38;5;241m3\u001b[39m,\u001b[38;5;241m4\u001b[39m],[\u001b[38;5;241m5\u001b[39m,\u001b[38;5;241m6\u001b[39m,\u001b[38;5;241m7\u001b[39m,\u001b[38;5;241m8\u001b[39m],[\u001b[38;5;241m9\u001b[39m,\u001b[38;5;241m10\u001b[39m,\u001b[38;5;241m11\u001b[39m,\u001b[38;5;241m12\u001b[39m])\n\u001b[0;32m 5\u001b[0m \u001b[38;5;28mprint\u001b[39m(a[\u001b[38;5;241m0\u001b[39m])\n", + "\u001b[1;31mModuleNotFoundError\u001b[0m: No module named 'numpy'" + ] + } + ], + "source": [ + "import numpy as np\n", + "\n", + "a = np.array([1,2,3,4],[5,6,7,8],[9,10,11,12])\n", + "\n", + "print(a[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3.12.5 (tags/v3.12.5:ff3bc82, Aug 6 2024, 20:45:27) [MSC v.1940 64 bit (AMD64)]\n" + ] + } + ], + "source": [ + "import sys\n", + "print(sys.version)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.12.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 653933aca0b7267bfd78a94bccca8f09a40bea1c Mon Sep 17 00:00:00 2001 From: githubtemp5 Date: Sat, 17 Aug 2024 17:12:10 +0100 Subject: [PATCH 2/6] work in progress --- 2-Regression/1-Tools/notebook.ipynb | 547 +++++++++++++++++++++++++++- 1 file changed, 532 insertions(+), 15 deletions(-) diff --git a/2-Regression/1-Tools/notebook.ipynb b/2-Regression/1-Tools/notebook.ipynb index 6e92813b92..184e20bfdf 100644 --- a/2-Regression/1-Tools/notebook.ipynb +++ b/2-Regression/1-Tools/notebook.ipynb @@ -9,7 +9,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 118, "metadata": {}, "outputs": [ { @@ -26,45 +26,562 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 119, "metadata": {}, "outputs": [ { - "ename": "ModuleNotFoundError", - "evalue": "No module named 'numpy'", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[1;32mIn[10], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mnumpy\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m \u001b[38;5;21;01mnp\u001b[39;00m\n\u001b[0;32m 3\u001b[0m a \u001b[38;5;241m=\u001b[39m np\u001b[38;5;241m.\u001b[39marray([\u001b[38;5;241m1\u001b[39m,\u001b[38;5;241m2\u001b[39m,\u001b[38;5;241m3\u001b[39m,\u001b[38;5;241m4\u001b[39m],[\u001b[38;5;241m5\u001b[39m,\u001b[38;5;241m6\u001b[39m,\u001b[38;5;241m7\u001b[39m,\u001b[38;5;241m8\u001b[39m],[\u001b[38;5;241m9\u001b[39m,\u001b[38;5;241m10\u001b[39m,\u001b[38;5;241m11\u001b[39m,\u001b[38;5;241m12\u001b[39m])\n\u001b[0;32m 5\u001b[0m \u001b[38;5;28mprint\u001b[39m(a[\u001b[38;5;241m0\u001b[39m])\n", - "\u001b[1;31mModuleNotFoundError\u001b[0m: No module named 'numpy'" + "name": "stdout", + "output_type": "stream", + "text": [ + "[1 2 3 4]\n" ] } ], "source": [ "import numpy as np\n", "\n", - "a = np.array([1,2,3,4],[5,6,7,8],[9,10,11,12])\n", + "a = np.array([[1,2,3,4],[5,6,7,8],[9,10,11,12]])\n", "\n", "print(a[0])" ] }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 120, + "metadata": {}, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "from sklearn import datasets, linear_model, model_selection" + ] + }, + { + "cell_type": "code", + "execution_count": 121, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(442, 10)\n", + "[ 0.03807591 0.05068012 0.06169621 0.02187239 -0.0442235 -0.03482076\n", + " -0.04340085 -0.00259226 0.01990749 -0.01764613]\n" + ] + } + ], + "source": [ + "X,y = datasets.load_diabetes(return_X_y=True)\n", + "columns = [\"age age in years\", \"sex\", \"bmi body mass index\",\"bp average blood pressure\",\"s1 tc, total serum cholesterol\",\"s2 ldl, low-density lipoproteins\",\"s3 hdl, high-density lipoproteins\",\"s4 tch, total cholesterol / HDL\",\"s5 ltg, possibly log of serum triglycerides level\",\"s6 glu, blood sugar level\"]\n", + "print(X.shape)\n", + "print(X[0])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 122, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "3.12.5 (tags/v3.12.5:ff3bc82, Aug 6 2024, 20:45:27) [MSC v.1940 64 bit (AMD64)]\n" + "(442,)\n", + "(442, 1)\n" ] } ], "source": [ - "import sys\n", - "print(sys.version)" + "columnNumber = 2\n", + "X = X[:,columnNumber]\n", + "print(X.shape)\n", + "X = X.reshape((-1,1))\n", + "print(X.shape)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Splitting between training and testing data and training" + ] + }, + { + "cell_type": "code", + "execution_count": 123, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
LinearRegression()
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
" + ], + "text/plain": [ + "LinearRegression()" + ] + }, + "execution_count": 123, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X_train, X_test, y_train, y_test = model_selection.train_test_split(X, y, test_size = 0.25)\n", + "model = linear_model.LinearRegression()\n", + "model.fit(X_train, y_train)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Testing" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "metadata": {}, + "outputs": [], + "source": [ + "y_pred = model.predict(X_test)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Plotting graph" + ] + }, + { + "cell_type": "code", + "execution_count": 125, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0kAAAHHCAYAAABqXBPBAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAACl00lEQVR4nOzdd1hT1xsH8O8FZAgCoiAgKG5cVautUsWtaKkLqa32V8VaOxxVW21rh6taq62rw1Vb7XBVxVn3wInWXeuqWFwIbsCJEs7vjzQpgYTchOx8P8/DA9yc3Jx7k9x733vOeY8khBAgIiIiIiIiAICLtStARERERERkSxgkERERERER5cMgiYiIiIiIKB8GSURERERERPkwSCIiIiIiIsqHQRIREREREVE+DJKIiIiIiIjyYZBERERERESUD4MkIiIiIiKifBgkFTBmzBhIkoSbN29a5HVsSUJCAnx8fKxdDSQlJUGSJCQlJVm7KrIU572MiIjACy+8YOIakS2SJAljxoyxdjUszhaPdea0YMECSJKECxcuWLsqNqfgd8CQ821ERAQSEhJMUo8LFy5AkiQsWLDAJOszl40bN6J+/frw9PSEJEnIzMy0dpXsTnHfa1s/bhtyvdSyZUu0bNnS7HXKz5Tf2+Iypi5GB0kzZ86EJElo3LixUc9fu3YtOnXqhHLlysHd3R0BAQFo3rw5pkyZguzsbGOrZXUJCQmQJEn94+vri3r16mHKlCnIyckxyWvMnDnToC/8vXv3MHr0aNSpUwfe3t4oU6YM6tevjyFDhuDq1asmqZOjUF3gqH48PT0RGhqKmJgYfP3117h79661q1ikBw8eYMyYMVYJMFUHa9VPiRIlULlyZfTu3Rv//POPxetDhb3//vuQJAkvvfSStatiMosWLcL06dNNus78n+P8P1988YVR6zP0mE1069Yt9OjRA15eXvjuu+/wyy+/wNvb29rVsqr169fbdMBCjsfN2CcuXLgQERER+OOPP5CSkoKqVavKel5eXh769euHBQsWoG7duhgwYADCw8Nx9+5dJCcn45NPPsH69euxbds2Y6tmdR4eHpg3bx4AIDMzEytWrMDw4cNx8OBBLFmypNjrnzlzJsqWLSsrIn7y5AmaN2+OM2fOoE+fPhg8eDDu3buHkydPYtGiRejWrRtCQ0OLXSdTat68OR4+fAh3d3er1WHcuHGoVKkSnjx5goyMDCQlJWHo0KGYOnUq1qxZg6eeekpd9pNPPsGHH35otbrm9+DBA4wdOxYALH7HSOWdd97BM888gydPnuDIkSOYO3cufv/9d5w4ccLmPmuW9PDhQ7i5GX3ILTYhBBYvXoyIiAisXbsWd+/eRalSpcz+uub+fixatAh//fUXhg4datL1tmvXDr1799ZY1qBBA6PWZcgx25FZ+ztgTw4ePIi7d+/is88+Q9u2ba1dHZuwfv16fPfddwYFShUrVsTDhw9RokQJ81XMimzhesmRGXW0Sk1Nxb59+5CYmIg333wTCxcuxOjRo2U9d/LkyViwYAGGDRuGKVOmaHTDGDJkCNLT0/Hzzz8XuY68vDw8fvwYnp6exlTf7Nzc3PC///1P/f+AAQPQuHFjLF26FFOnTrXoheKqVatw9OhRLFy4EL169dJ47NGjR3j8+LHF6iKXi4uL1d/bjh07olGjRur/R44cie3bt+OFF15A586dcfr0aXh5eQFQvt888f8nOjoa8fHxAIC+ffuievXqeOedd/DTTz9h5MiRWp9z//59i90lteRr5Wftz3RSUhKuXLmC7du3IyYmBomJiejTp4/ZX9devx/Vq1fXOI5T8Vn7O2BPrl+/DgDw9/e3bkVgvWNmceTm5iIvLw/u7u4O+bl79OgR3N3dbeJ6yZEZ1d1u4cKFKF26NGJjYxEfH4+FCxfKet6DBw8wadIk1K5dG19++aXWfuohISH44IMPNJZJkoRBgwZh4cKFqF27Njw8PLBx40YAwFdffYXnnnsOZcqUgZeXFxo2bIjly5cXWm/+ddSoUQOenp5o2LAhdu3apbWumZmZSEhIgL+/P/z8/NC3b188ePBA1nYW5OLior6rX1Q/9dzcXHz22WeoUqUKPDw8EBERgY8++kijm15ERAROnjyJnTt3qruAFNVicP78eQBA06ZNCz3m6ekJX1/fQsvT0tLQtWtX+Pj4IDAwEMOHD4dCodAoc//+fbz33nsIDw+Hh4cHatSoga+++gpCCHWZuLg4PP300xrP69SpEyRJwpo1a9TLDhw4AEmSsGHDBgDa+9i2bNkSderUwalTp9CqVSuULFkS5cuXx+TJkwvV/+LFi+jcuTO8vb0RFBSEYcOGYdOmTcUe59S6dWt8+umnuHjxIn799Vf1cm1jLubPn4/WrVsjKCgIHh4eqFWrFmbNmqVz3Zs3b1b3Pa9VqxYSExMLlcnMzMTQoUPV+7xq1aqYNGkS8vLyACg/W4GBgQCAsWPHqj8f+e+6nTlzBvHx8QgICICnpycaNWqk8V4AytbHsWPHolq1avD09ESZMmXQrFkzbNmyxeB9Bij3G6C8uQL8t79OnTqFXr16oXTp0mjWrBkAed8BQHmjZMyYMQgNDUXJkiXRqlUrnDp1qlCfY1X3yZ07d2LAgAEICgpCWFiY+vENGzYgOjoa3t7eKFWqFGJjY3Hy5EmN18rIyEDfvn0RFhYGDw8PhISEoEuXLhrf5UOHDiEmJgZly5aFl5cXKlWqhNdee01jPdr6th89ehQdO3aEr68vfHx80KZNG+zfv1+jjGob9u7di3fffReBgYHw9vZGt27dcOPGDdnvw8KFC1GrVi20atUKbdu21Xnclvv92b17N1588UVUqFABHh4eCA8Px7Bhw/Dw4UON9Wn7fqiOx6tWrUKdOnXg4eGB2rVrq4/rKnfv3sXQoUMREREBDw8PBAUFoV27djhy5AgA5XHh999/x8WLF9Wf94iIiCL3w5YtW9CsWTP4+/vDx8cHNWrUwEcffaS17MOHD/Ho0aMi16ePvmP2n3/+iRYtWsDLywthYWEYP3485s+fb/S4JtXxc+nSpfjoo48QHBwMb29vdO7cGZcvXy5UftmyZWjYsCG8vLxQtmxZ/O9//0NaWppGGXN+BwDg5s2b6NGjB3x9fVGmTBkMGTKkyP3+zz//QJIkTJs2rdBj+/btgyRJWLx4sZ49Vdj27dvVxwN/f3906dIFp0+fLlQuKSkJjRo1gqenJ6pUqYI5c+YYNPZO3z5v2bKl+gbGM888A0mSimyF1Pc9UTlw4AA6dOgAPz8/lCxZEi1atMDevXs1yhR1fNY1piUhIUHje6caB/TVV1/hu+++Q+XKlVGyZEm0b98ely9fhhACn332GcLCwuDl5YUuXbrg9u3bRe6zhIQEfPfddwA0u8MWfL3p06erzx+nTp3SOSZp2bJlqFWrFjw9PVGnTh2sXLmy0HYUtGPHDkiShJUrVxZ6bNGiRZAkCcnJyeplZ86cQY8ePRAYGAgvLy/UqFEDH3/8scbz0tLS8Nprr6FcuXLq4+CPP/6oUUb1nV6yZAk++eQTlC9fHiVLlkR2drbOMUlz585FlSpV4OXlhWeffRa7d+/Wuk05OTkYPXo0qlatqj6Ov//++4XOuYYcN/XRdy3z5MkTBAQEoG/fvoWem52dDU9PTwwfPtzgbTCGUbf3Fi5ciLi4OLi7u6Nnz56YNWsWDh48iGeeeabI5+3ZsweZmZkYPnw4XF1dDXrN7du347fffsOgQYNQtmxZ9Qd5xowZ6Ny5M1555RU8fvwYS5YswYsvvoh169YhNjZWYx07d+7E0qVL8c4778DDwwMzZ85Ehw4d8Mcff6BOnToaZXv06IFKlSph4sSJOHLkCObNm4egoCBMmjTJoHqrqIKVMmXK6Czz+uuv46effkJ8fDzee+89HDhwABMnTsTp06fVX8rp06dj8ODB8PHxUX/ZypUrp3OdFStWBAD8/PPP+OSTT/QexBUKBWJiYtC4cWN89dVX2Lp1K6ZMmYIqVarg7bffBqDsttO5c2fs2LED/fr1Q/369bFp0yaMGDECaWlp6hNXdHQ0Vq9ejezsbPj6+kIIgb1798LFxQW7d+9G586dASgvtlxcXLQGcvnduXMHHTp0QFxcHHr06IHly5fjgw8+QN26ddGxY0cAyuCtdevWSE9Px5AhQxAcHIxFixZhx44dRa5brldffRUfffQRNm/ejP79++ssN2vWLNSuXRudO3eGm5sb1q5diwEDBiAvLw8DBw7UKHvu3Dm89NJLeOutt9CnTx/Mnz8fL774IjZu3Ih27doBUN5gaNGiBdLS0vDmm2+iQoUK2LdvH0aOHIn09HRMnz4dgYGBmDVrFt5++21069YNcXFxAKDuGnjy5Ek0bdoU5cuXx4cffghvb2/89ttv6Nq1K1asWIFu3boBUJ4kJ06ciNdffx3PPvsssrOzcejQIRw5ckRdH0Po+uy/+OKLqFatGj7//HN1cC3nOwAoW/YmT56MTp06ISYmBsePH0dMTIzOC6sBAwYgMDAQo0aNwv379wEAv/zyC/r06YOYmBhMmjQJDx48wKxZs9CsWTMcPXpUfYzp3r07Tp48icGDByMiIgLXr1/Hli1bcOnSJfX/7du3R2BgID788EP4+/vjwoULWgPd/E6ePIno6Gj4+vri/fffR4kSJTBnzhy0bNkSO3fuLDTec/DgwShdujRGjx6NCxcuYPr06Rg0aBCWLl2q9z3IycnBihUr8N577wEAevbsib59+yIjIwPBwcHqcoZ8f5YtW4YHDx7g7bffRpkyZfDHH3/gm2++wZUrV7Bs2TK9ddqzZw8SExMxYMAAlCpVCl9//TW6d++OS5cuqT8rb731FpYvX45BgwahVq1auHXrFvbs2YPTp0/j6aefxscff4ysrCxcuXJFfdwpKvnMyZMn8cILL+Cpp57CuHHj4OHhgZSUlEIXioAyOJ05cyaEEKhZsyY++eSTQq3xchR1zE5LS0OrVq0gSRJGjhwJb29vzJs3Dx4eHga/TkETJkyAJEn44IMPcP36dUyfPh1t27bFsWPH1K3gCxYsQN++ffHMM89g4sSJuHbtGmbMmIG9e/fi6NGj6lYMc30HVHr06IGIiAhMnDgR+/fvx9dff407d+7o7FVSuXJlNG3aFAsXLsSwYcM0Hlu4cCFKlSqFLl26GLS/tm7dio4dO6Jy5coYM2YMHj58iG+++QZNmzbFkSNH1MeDo0ePokOHDggJCcHYsWOhUCgwbtw49Q0qfeTs848//hg1atTA3Llz1V2/q1SponOd+r4ngPIaqmPHjmjYsCFGjx4NFxcX9c283bt349lnn9VYp7bjs6EWLlyIx48fY/Dgwbh9+zYmT56MHj16oHXr1khKSsIHH3yAlJQUfPPNNxg+fHih4CC/N998E1evXsWWLVvwyy+/aC0zf/58PHr0CG+88QY8PDwQEBCgvvDO7/fff8dLL72EunXrYuLEibhz5w769euH8uXLF7k9LVu2RHh4OBYuXKg+X+bf1ipVqiAqKgqA8uZHdHQ0SpQogTfeeAMRERE4f/481q5diwkTJgAArl27hiZNmqhvGgUGBmLDhg3o168fsrOzC3Uh/uyzz+Du7o7hw4cjJydHZxe7H374AW+++Saee+45DB06FP/88w86d+6MgIAAhIeHq8vl5eWhc+fO2LNnD9544w3UrFkTJ06cwLRp0/D3339j1apVAAw7buoj51qmRIkS6NatGxITEzFnzhyN7Vy1ahVycnLw8ssvG7QNRhMGOnTokAAgtmzZIoQQIi8vT4SFhYkhQ4bofe6MGTMEALFq1SqN5bm5ueLGjRsaP3l5eerHAQgXFxdx8uTJQut88OCBxv+PHz8WderUEa1bt9ZYDkAAEIcOHVIvu3jxovD09BTdunVTLxs9erQAIF577TWN53fr1k2UKVNG7zb26dNHeHt7q7cjJSVFfP7550KSJPHUU08Veh2VY8eOCQDi9ddf11jf8OHDBQCxfft29bLatWuLFi1a6K2LEMr9U6NGDQFAVKxYUSQkJIgffvhBXLt2TWvdAYhx48ZpLG/QoIFo2LCh+v9Vq1YJAGL8+PEa5eLj44UkSSIlJUUIIcTBgwcFALF+/XohhBB//vmnACBefPFF0bhxY/XzOnfuLBo0aKD+f8eOHQKA2LFjh3pZixYtBADx888/q5fl5OSI4OBg0b17d/WyKVOmFPqMPXz4UERGRhZapzbz588XAMTBgwd1lvHz89Oob8H3UojCn0shhIiJiRGVK1fWWFaxYkUBQKxYsUK9LCsrS4SEhGi8xmeffSa8vb3F33//rfH8Dz/8ULi6uopLly4JIYS4ceOGACBGjx5d6PXbtGkj6tatKx49eqRelpeXJ5577jlRrVo19bJ69eqJ2NhYnduvi+p9+/HHH8WNGzfE1atXxe+//y4iIiKEJEnqfaraXz179tR4vtzvQEZGhnBzcxNdu3bVKDdmzBgBQPTp00e9TPV+NmvWTOTm5qqX3717V/j7+4v+/ftrrCMjI0P4+fmpl9+5c0cAEF9++aXO7V65cqXez4wQotD70rVrV+Hu7i7Onz+vXnb16lVRqlQp0bx580Lb0LZtW43j4rBhw4Srq6vIzMws8nWFEGL58uUCgDh37pwQQojs7Gzh6ekppk2bplHOkO+Pts/4xIkThSRJ4uLFi+pl2r4fAIS7u7v6WCGEEMePHxcAxDfffKNe5ufnJwYOHFjktsXGxoqKFSsWWUZl2rRpAoC4ceNGkeWee+45MX36dLF69Woxa9YsUadOHQFAzJw5U+9rqN6v1NRU9TJdx+zBgwcLSZLE0aNH1ctu3bolAgICCq1DLtX3sHz58iI7O1u9/LfffhMAxIwZM4QQynNlUFCQqFOnjnj48KG63Lp16wQAMWrUKCGEeb8Dqs9G586dNcoNGDBAABDHjx9XL6tYsaLGd3vOnDkCgDh9+rR62ePHj0XZsmU1ymmTmpoqAIj58+erl9WvX18EBQWJW7duqZcdP35cuLi4iN69e6uXderUSZQsWVKkpaWpl507d064ubkV+pwXJHefCyHvXKSi73uSl5cnqlWrJmJiYjSOIQ8ePBCVKlUS7dq1Uy/TdXwWQnke1vY57tOnj8Z3ULV/AwMDNY5PI0eOFABEvXr1xJMnT9TLe/bsKdzd3TXOTdoMHDhQ6z5WvZ6vr6+4fv261sfyv9d169YVYWFh4u7du+plSUlJ6uuk/Ap+ZkeOHCk8PDw0tuv69evCzc1No1zz5s1FqVKlNI6FQgiN/d+vXz8REhIibt68qVHm5ZdfFn5+fupjrOo7Xbly5ULH3YLXS6rPWP369UVOTo663Ny5cwUAjffvl19+ES4uLmL37t0a65w9e7YAIPbu3SuEkH/c1Kbg91butcymTZsEALF27VqNcs8//7zGdZTcbdBWFzkM7m63cOFClCtXDq1atQIAdaakJUuWFOqSVZAqa13BO30nTpxAYGCgxs+tW7c0yrRo0QK1atUqtE7VHTFA2dKQlZWF6OjoQs3MABAVFYWGDRuq/69QoQK6dOmCTZs2Far7W2+9pfF/dHQ0bt26JSvz3v3799XbUbVqVXz00UeIiorS2kSrsn79egDAu+++q7Fcdef3999/1/u62nh5eeHAgQMYMWIEAOVdrH79+iEkJASDBw/W2hypbdvzZydbv349XF1d8c477xSqqxBC3W2uQYMG8PHxUXdp3L17N8LCwtC7d28cOXIEDx48gBACe/bsQXR0tN5t8fHx0Rgj4O7ujmeffVajbhs3bkT58uXVrVSAslthUa0+hvLx8dGb5S7/5zIrKws3b95EixYt8M8//yArK0ujbGhoqMZdKV9fX/Tu3RtHjx5FRkYGAOVd++joaJQuXRo3b95U/7Rt2xYKhUJnt1GV27dvY/v27ejRowfu3r2rfv6tW7cQExODc+fOqbt7+Pv74+TJkzh37pxB+0XltddeQ2BgIEJDQxEbG4v79+/jp59+0hjjBRT+nMn9Dmzbtg25ubkYMGCARrnBgwfrrFP//v01Wq+3bNmCzMxM9OzZU2N/urq6onHjxuqWEy8vL7i7uyMpKQl37tzRum7V3fZ169bhyZMnOuuQn0KhwObNm9G1a1dUrlxZvTwkJAS9evXCnj17Ch1r3njjDY2W4OjoaCgUCly8eFHv6y1cuBCNGjVSJ9hRdS0s2OXOkO9P/s/4/fv3cfPmTTz33HMQQuDo0aN669S2bVuNu+NPPfUUfH19Nb7P/v7+OHDggMmycKreq9WrV2u9w6yyd+9eDBkyBJ07d8Zbb72Fw4cPo06dOvjoo48KdScsjo0bNyIqKgr169dXLwsICMArr7xS7HX37t1bIzFHfHw8QkJC1N+zQ4cO4fr16xgwYIDGmIbY2FhERkaqv2/m+g7kV7B1XfVdVtVVmx49esDT01PjM7xp0ybcvHnT4LFk6enpOHbsGBISEhAQEKBe/tRTT6Fdu3bqeigUCmzduhVdu3bVGFtctWpVdW+Gosjd54bS9z05duwYzp07h169euHWrVvq4939+/fRpk0b7Nq1q9D3oeDx2Rgvvvgi/Pz81P+rWsf/97//aYxTbNy4MR4/flyom6ehunfvrrdF7+rVqzhx4gR69+6tcS3aokUL1K1bV+9r9O7dGzk5ORrDOpYuXYrc3Fz15+7GjRvYtWsXXnvtNVSoUEHj+apjuBACK1asQKdOnSCE0DgPxcTEICsrq9B1bJ8+fTSOu9qoPmNvvfWWRgtMQkKCxnsBKK8ratasicjISI3XV3WRV50H5R435ZB7LdO6dWuULVtWo6fEnTt3sGXLFo3srHK3wVgGBUkKhQJLlixBq1atkJqaipSUFKSkpKBx48a4du2a3ox0qgP2vXv3NJZXrVoVW7ZswZYtW/Dqq69qfW6lSpW0Ll+3bh2aNGkCT09PBAQEqLscFbwQBYBq1aoVWla9enU8ePCgUN/+gh/s0qVLA4DOk0R+np6e6u3ZtWsXLl++jL1792pcDBV08eJFuLi4FMoSGBwcDH9/f1kXQrr4+flh8uTJuHDhAi5cuIAffvgBNWrUwLfffovPPvusUN0LHmRKly6tsd0XL15EaGhoocxYNWvWVD8OAK6uroiKilL3hd29ezeio6PRrFkzKBQK7N+/H6dOncLt27dlBUlhYWGFugtqq1uVKlUKlZObfVGOe/fu6c0KtnfvXrRt21bdtz0wMFDdf7fgZ7Nq1aqF6lu9enUA/41hO3fuHDZu3FjoZoIq65FqkK8uKSkpEELg008/LbQOVdIV1TrGjRuHzMxMVK9eHXXr1sWIESPw559/ytgzSqNGjcKWLVuwfft2/Pnnn7h69arW73XB77Tc74Dqd8FyAQEB6u+pvtdSBYCtW7cutD82b96s3hceHh6YNGkSNmzYgHLlyqF58+aYPHmyOngFlCfX7t27Y+zYsShbtiy6dOmC+fPnF9kf+saNG3jw4AFq1KhR6LGaNWsiLy+v0PgRY49JmZmZWL9+PVq0aKE+ZqekpKBp06Y4dOgQ/v77b3VZQ74/ly5dUl9UqsYvtmjRAkDhz7g2BbdHtU35t2fy5Mn466+/EB4ejmeffRZjxowpVjr5l156CU2bNsXrr7+OcuXK4eWXX8Zvv/2m98Tv7u6OQYMGITMzE4cPHzb69Qu6ePGi1n1riuNVwfOdJEmoWrWq+pii+h5p+wxGRkaqHzfXd6CoulapUgUuLi5Fjsny9/dHp06dsGjRIvWyhQsXonz58uoLJLmK2hc1a9ZUBxTXr1/Hw4cPjX7P5O5zQ+n7nqiOd3369Cl0vJs3bx5ycnIKfWd1XXMZouB3XHWRnr/LV/7lcq6viiKnzrrOH7qWFRQZGYlnnnlGIzhfuHAhmjRpon6+at8XHMaR340bN5CZmYm5c+cWek9UY3EKntcN2b6C3ynVlBz5nTt3DidPniz0+qrrD9XrG3vc1EbutYybmxu6d++O1atXq48jiYmJePLkiUaQJHcbjGXQmKTt27cjPT0dS5Ys0ZrKeuHChWjfvr3O50dGRgIA/vrrL43+wj4+PuodtGfPHq3P1RY9q8a1NG/eHDNnzkRISAhKlCiB+fPnaxw4jaFrzJSQ0TfX1dXV6JSd5p50sWLFinjttdfQrVs3VK5cGQsXLsT48ePVjxs6VkyfZs2aYcKECXj06BF2796Njz/+GP7+/qhTpw52796t7psvJ0gqzntiKleuXEFWVlaRB9Pz58+jTZs2iIyMxNSpUxEeHg53d3esX78e06ZNM+rAkpeXh3bt2uH999/X+rjqgFDU8wFg+PDhiImJ0VpGtU3NmzfH+fPnsXr1amzevBnz5s3DtGnTMHv2bLz++ut661q3bl1Zn39dd8TM8R0o+Fqq/fHLL79ojMlRyX+Xc+jQoejUqRNWrVqFTZs24dNPP8XEiROxfft2NGjQAJIkYfny5di/fz/Wrl2LTZs24bXXXsOUKVOwf/9+k03QbOznf9myZcjJycGUKVMwZcqUQo8vXLhQnTZeLoVCgXbt2uH27dv44IMPEBkZCW9vb6SlpSEhIUHWZ1zO9vTo0QPR0dFYuXIlNm/ejC+//BKTJk1CYmKirDv3BXl5eWHXrl3YsWMHfv/9d2zcuBFLly5F69atsXnz5iKPf6oLO30DzB2Rpb8Dco8BvXv3xrJly7Bv3z7UrVsXa9aswYABA+DiYvQUkHZJ3/dE9X388ssvNVot8yv4Hmk7PkuSpPV4o6sXka7vk7nO5fpaWUyld+/eGDJkCK5cuYKcnBzs378f3377rUHrUL0n//vf/3RmGc0/1Qhg+u3Ly8tD3bp1MXXqVK2Pq455xTluantNudcyL7/8MubMmYMNGzaga9eu+O233xAZGYl69eoZvA3GMihIWrhwIYKCgtQZRvJLTEzEypUrMXv2bJ1vZHR0NPz8/LBkyRKMHDmy2AeyFStWwNPTE5s2bdIY6Dp//nyt5bV1H/r7779RsmRJ2YMuzaVixYrIy8vDuXPn1C0ygHJgX2ZmpjoBA2Cai8jSpUujSpUq+Ouvv4yq69atWwvNs3LmzBn14yrR0dF4/PgxFi9ejLS0NHUw1Lx5c3WQVL169SKTTxhat1OnTkEIobGfUlJSTLJ+1YBRXYEGoJwoOScnB2vWrNG4k6ar2VfVypO/vqq7+6rBwlWqVMG9e/f0Bh+6PhuqO0glSpSQFcCoMsv07dsX9+7dQ/PmzTFmzBhZQZKx5H4HVL9TUlI07qzdunVL9p1IVTevoKAgWfujSpUqeO+99/Dee+/h3LlzqF+/PqZMmaKR5bBJkyZo0qQJJkyYgEWLFuGVV17BkiVLtO6zwMBAlCxZEmfPni302JkzZ+Di4lLsg7vKwoULUadOHa3TNMyZMweLFi1SB0lyvz8nTpzA33//jZ9++kljLiFjMyAWJSQkBAMGDMCAAQNw/fp1PP3005gwYYI6SDL0eOji4oI2bdqgTZs2mDp1Kj7//HN8/PHH2LFjR5GfBdXdYWPOFbrqWLFiRa3HJlMcrwqe74QQSElJUV94qb5HZ8+eLdTycvbsWY3jOGD670DBuub/LqekpCAvL09vpsIOHTogMDAQCxcuROPGjfHgwQOdvVGKkn9fFHTmzBmULVsW3t7e8PT0hKenp9HvmaH73BBFfU9UxztfX99izblUunRprS25xenpYghTXPvkP38UJPd79/LLL+Pdd9/F4sWL1XMw5W/dUJ1vi7q+CgwMRKlSpaBQKEw6D5Zq+86dO6fxGXvy5AlSU1M1AowqVarg+PHjaNOmjd59a+xxsyC51zKA8joxJCQES5cuRbNmzbB9+/ZC2QEN2QZjyI5SHj58iMTERLzwwguIj48v9DNo0CDcvXu3UDrh/EqWLIn3338ff/31Fz788EOtdw0MuZPg6uoKSZI07mJcuHBBZzaL5ORkjT6ely9fxurVq9G+fXuTt6AY6vnnnweAQjPHq6Lj/Jn6vL29kZmZKWu9x48fx82bNwstv3jxIk6dOqW12V9OXRUKRaE7J9OmTYMkSRp3eBs3bowSJUpg0qRJCAgIQO3atQEog6f9+/dj586dslqR5IqJiUFaWprG5/DRo0f4/vvvi73u7du347PPPkOlSpWKHDOg+izl/yxnZWXpDN6vXr2qMV4tOzsbP//8M+rXr69u5ejRoweSk5OxadOmQs/PzMxEbm4uAOV3TLUsv6CgILRs2RJz5sxBenp6oXXk725acDygj48PqlatapJ0mkWR+x1o06YN3NzcCqVUN+ROXkxMDHx9ffH5559rHUOh2h8PHjwolDGvSpUqKFWqlHp/3Llzp9BxS3W3Vtc+c3V1Rfv27bF69WqNLkXXrl3DokWL0KxZM63p+Q11+fJl7Nq1Cz169NB63O7bty9SUlJw4MABAPK/P9o+40IIzJgxo9h1VlEoFIW6AAUFBSE0NFRjv3p7e8vq3gdobwUq+F5pS6t+9+5dTJ8+HWXLltUY1yqXrmN2TEwMkpOTcezYMY06yp1Woyg///yzxtjJ5cuXIz09XX18btSoEYKCgjB79myN/blhwwacPn1a/X0z13cgv4I3Xr/55hsA0Nta6Obmhp49e+K3335TT1Bf8O67HCEhIahfvz5++uknjffpr7/+wubNm9XHJlUvkVWrVmmM/0lJSVGPxS2K3H1uCDnfk4YNG6JKlSr46quvCg13ALR/5rWpUqUKzpw5o1H++PHjRmU5M4Zqria51z/ahIaGok6dOvj555819sXOnTtx4sQJWesoW7YsOnbsiF9//RULFy5Ehw4dULZsWfXjgYGBaN68OX788UdcunRJ47mq74mrqyu6d++OFStWaA2mDJneIb9GjRohMDAQs2fP1pgHc8GCBYX2W48ePZCWlqb1+ujhw4fqTLByjptyyb2WAZSBWXx8PNauXYtffvkFubm5GsGoIdtgLNktSWvWrMHdu3c1BvTm16RJE/UdnYIbkd+HH36I06dP48svv8TmzZvRvXt3hIWF4c6dOzhy5AiWLVuGoKAgWZNjxcbGYurUqejQoQN69eqF69ev47vvvkPVqlW1jqGoU6cOYmJiNFKAAzC4q4k51KtXD3369MHcuXORmZmJFi1a4I8//sBPP/2Erl27qhNlAMoD3qxZszB+/HhUrVoVQUFBOvtgb9myBaNHj0bnzp3RpEkT+Pj44J9//sGPP/6InJwcg2auVunUqRNatWqFjz/+GBcuXEC9evWwefNmrF69GkOHDtUYjF2yZEk0bNgQ+/fvV8+RBCjvENy/fx/37983aZD05ptv4ttvv0XPnj0xZMgQhISEYOHCherPk9w7DRs2bMCZM2eQm5uLa9euYfv27diyZQsqVqyINWvWFPn5bN++Pdzd3dGpUye8+eabuHfvHr7//nsEBQVpDVCqV6+Ofv364eDBgyhXrhx+/PFHXLt2TSOoGjFiBNasWYMXXngBCQkJaNiwIe7fv48TJ05g+fLluHDhgnp+klq1amHp0qWoXr06AgICUKdOHdSpUwffffcdmjVrhrp166J///6oXLkyrl27huTkZFy5cgXHjx8HANSqVQstW7ZEw4YNERAQgEOHDqnTy5qT3O9AuXLlMGTIEEyZMgWdO3dGhw4dcPz4cWzYsAFly5aV9R77+vpi1qxZePXVV/H000/j5ZdfRmBgIC5duoTff/8dTZs2xbfffou///4bbdq0QY8ePVCrVi24ublh5cqVuHbtmjoF6U8//YSZM2eiW7duqFKlCu7evYvvv/8evr6+6osrbcaPH6+ee2LAgAFwc3PDnDlzkJOTo3X+L2MsWrRInbJfm+effx5ubm7qO/Fyvz+RkZGoUqUKhg8fjrS0NPj6+mLFihXFHlOQ3927dxEWFob4+HjUq1cPPj4+2Lp1Kw4ePKjRbbBhw4ZYunQp3n33XTzzzDPw8fFBp06dtK5z3Lhx2LVrF2JjY1GxYkVcv34dM2fORFhYmHoumO+++w6rVq1Cp06dUKFCBaSnp6svdn755RejZrbXdcx+//338euvv6Jdu3YYPHiwOgV4hQoVcPv2bY3Psip19Pz584ucM0clICAAzZo1Q9++fXHt2jVMnz4dVatWVSfhUN286tu3L1q0aIGePXuq01FHRESoU2ub8zugkpqaqv4uJycn49dff0WvXr007nrr0rt3b3z99dfYsWOH0VN0AMquaB07dkRUVBT69eunTgHu5+encZ4cM2YMNm/ejKZNm+Ltt99W3zCsU6eORrCrjdx9bgg53xMXFxfMmzcPHTt2RO3atdG3b1+UL18eaWlp2LFjB3x9fbF27Vq9r/Xaa69h6tSpiImJQb9+/XD9+nXMnj0btWvXlpXUqrhUNyjeeecdxMTEwNXVVf0ZNMTnn3+OLl26oGnTpujbty/u3Lmjfg+1BZHa9O7dWz1pesGx3QDw9ddfo1mzZnj66afxxhtvoFKlSrhw4QJ+//139efkiy++wI4dO9C4cWP0798ftWrVwu3bt3HkyBFs3brVqK69JUqUwPjx4/Hmm2+idevWeOmll5Camor58+cXGpP06quv4rfffsNbb72FHTt2oGnTplAoFDhz5gx+++03bNq0CY0aNZJ13JRL7rWMyksvvYRvvvkGo0ePRt26dTV6mRiyDUaTmwavU6dOwtPTU9y/f19nmYSEBFGiRIlC6Qy1WblypXj++edFYGCgcHNzE/7+/qJZs2biyy+/LJTSFoDO9JY//PCDqFatmvDw8BCRkZFi/vz5OlPODhw4UPz666/q8g0aNCiUElr13IKpDrWlddVGlQJcH211fPLkiRg7dqyoVKmSKFGihAgPDxcjR44slBYzIyNDxMbGilKlShVK6VjQP//8I0aNGiWaNGkigoKChJubmwgMDBSxsbEaacWLqru2ut69e1cMGzZMhIaGihIlSohq1aqJL7/8UiO9pcqIESMEADFp0iSN5VWrVhUANFIgC6E7BXjt2rULrbtg6lHVNsfGxgovLy8RGBgo3nvvPbFixQoBQOzfv1/rflJRvc+qH3d3dxEcHCzatWsnZsyYoZFSt6j9s2bNGvHUU08JT09PERERISZNmiR+/PHHQp+hihUritjYWLFp0ybx1FNPqT/Hy5YtK/Q6d+/eFSNHjhRVq1YV7u7uomzZsuK5554TX331lXj8+LG63L59+0TDhg2Fu7t7ofSl58+fF7179xbBwcGiRIkSonz58uKFF14Qy5cvV5cZP368ePbZZ4W/v7/w8vISkZGRYsKECRqvoY3qfdNWd237S1s6UbnfgdzcXPHpp5+K4OBg4eXlJVq3bi1Onz4typQpI9566y11OX1pdHfs2CFiYmKEn5+f8PT0FFWqVBEJCQnqqQJu3rwpBg4cKCIjI4W3t7fw8/MTjRs3Fr/99pt6HUeOHBE9e/YUFSpUEB4eHiIoKEi88MILGtMNCFE4lazquTExMcLHx0eULFlStGrVSuzbt0+jjK5t0PY9Kahu3bqiQoUKOh8XQoiWLVuKoKAgdUpeud+fU6dOibZt2wofHx9RtmxZ0b9/f3Ua7/zpdos6HheUP0VrTk6OGDFihKhXr54oVaqU8Pb2FvXq1SuUhvvevXuiV69ewt/fX2sK3/y2bdsmunTpIkJDQ4W7u7sIDQ0VPXv21EhHu3nzZtGuXTv1d8Tf31+0b99ebNu2rcj9qKLtXFHUMfvo0aMiOjpaeHh4iLCwMDFx4kTx9ddfCwAiIyNDXe6bb74RAMTGjRuLfH3V52Lx4sVi5MiRIigoSHh5eYnY2NhC6YiFEGLp0qWiQYMGwsPDQwQEBIhXXnlFXLlyRf24Ob8Dqs/GqVOnRHx8vChVqpQoXbq0GDRokEaKbCGKTt9bu3Zt4eLiolHvomhLCy2EEFu3bhVNmzYVXl5ewtfXV3Tq1EmcOnWq0PO3bdsmGjRoINzd3UWVKlXEvHnzxHvvvSc8PT1lvb6+fS6E/BTgcr8nQig/a3FxcaJMmTLCw8NDVKxYUfTo0UPjs13U8VkIIX799VdRuXJl4e7uLurXry82bdqkMwV4wbTxus4Rcrc1NzdXDB48WAQGBgpJktTHFV2vl/+xgu/1kiVLRGRkpPDw8BB16tQRa9asEd27dxeRkZEa5bQdt4VQ7vfSpUsLPz+/Qp9Vlb/++kt069ZN+Pv7C09PT1GjRg3x6aefapS5du2aGDhwoAgPDxclSpQQwcHBok2bNmLu3LnqMkWdW3WdB2bOnCkqVaokPDw8RKNGjcSuXbu0pnB//PixmDRpkqhdu7bw8PAQpUuXFg0bNhRjx44VWVlZQgh5x01dtH1v5V7LCKFMmR4eHi6gZdoZQ7ZBV130kYSw4Kh3K5IkCQMHDjR4cB05hunTp2PYsGG4cuWK3gnjyD5lZmaidOnSGD9+fKF+y1Q8/P5Y1tChQzFnzhzcu3dP3bWxR48euHDhAv74448in5uUlIRWrVph2bJl6jvdjq5BgwYICAjQm2HXnLp27VqsqRPI+urXr4/AwEBZYytzc3MRGhqKTp064YcffrBA7cganCsFDDmFgvOYPHr0CHPmzEG1atV4gecgtM1VoxrL1LJlS8tWxsHw+2NZBff3rVu38Msvv6BZs2YaY7+SkpI0MpGS0qFDh3Ds2DGNBCLmVvA9O3fuHNavX89jj5148uSJxtgXQHlz4fjx47Lfw1WrVuHGjRsW/dyR5RmU3Y7IHsTFxaFChQqoX78+srKy8Ouvv+LMmTMmGQxNtmHp0qVYsGABnn/+efj4+GDPnj1YvHgx2rdvj6ZNm1q7enaN3x/LioqKQsuWLVGzZk1cu3YNP/zwA7Kzs/Hpp5+qy0iSVOz5PhzNX3/9hcOHD2PKlCkICQkpciy0qVWuXBkJCQmoXLkyLl68iFmzZsHd3V1nWmOyLWlpaWjbti3+97//ITQ0FGfOnMHs2bMRHBysdxLdAwcO4M8//8Rnn32GBg0aqOeGI8fEIIkcTkxMDObNm4eFCxdCoVCgVq1aWLJkiUVPomReTz31FNzc3DB58mRkZ2erkznwTnvx8ftjWc8//zyWL1+OuXPnQpIkPP300/jhhx/QvHlza1fNpi1fvhzjxo1DjRo1sHjxYlnJnkylQ4cOWLx4MTIyMuDh4YGoqCh8/vnnWiesJ9tTunRpNGzYEPPmzcONGzfg7e2N2NhYfPHFFyhTpkyRz501axZ+/fVX1K9fHwsWLLBMhclqnGZMEhERERERkRwck0RERERERJQPgyQiIiIiIqJ8OCaJ7EpeXh6uXr2KUqVKyZ4YloiIiKxLCIG7d+8iNDQULi68R0+2j0ES2ZWrV68iPDzc2tUgIiIiI1y+fBlhYWHWrgaRXgySyK6UKlUKgPIg6+vra+XaEBERkRzZ2dkIDw9Xn8eJbB2DJLIrqi52vr6+DJKIiIjsDLvKk71gp1AiIiIiIqJ8GCQRERERERHlwyCJiIiIiIgoHwZJRERERERE+TBIIiIiIiIiyodBEhERERERUT4MkoiIiIiIiPJhkERERERERJQPgyQiIiIiIqJ83KxdASIiIigUwO7dQHo6EBICREcDrq7WrhURETkpBklERGRdiYnAkCHAlSv/LQsLA2bMAOLirFcvIiJyWuxuR0RE1pOYCMTHawZIAJCWplyemGidehERkVNjkERERNahUChbkIQo/Jhq2dChynJEREQWxCCJiIisY/fuwi1I+QkBXL6sLEdERGRBDJKIiMg60tNNW46IiMhEGCQREZF1hISYthwREZGJMEgiIiLriI5WZrGTJO2PSxIQHq4sR0REZEEMkoiIyDpcXZVpvoHCgZLq/+nTOV8SERFZHIMkIiKynrg4YPlyoHx5zeVhYcrlnCeJiIisgJPJEhGRdcXFAV26KLPYpacrxyBFR7MFiYiIrIZBEhERWZ+rK9CypbVrQUREBIDd7YiIiIiIiDQwSCIiIiIiIsqHQRLJMmvWLDz11FPw9fWFr68voqKisGHDBvXjjx49wsCBA1GmTBn4+Pige/fuuHbtmsY6Ll26hNjYWJQsWRJBQUEYMWIEcnNzLb0pRERERERFYpBEsoSFheGLL77A4cOHcejQIbRu3RpdunTByZMnAQDDhg3D2rVrsWzZMuzcuRNXr15FXL6sVAqFArGxsXj8+DH27duHn376CQsWLMCoUaOstUlERERERFpJQghh7UqQfQoICMCXX36J+Ph4BAYGYtGiRYiPjwcAnDlzBjVr1kRycjKaNGmCDRs24IUXXsDVq1dRrlw5AMDs2bPxwQcf4MaNG3B3d5f1mtnZ2fDz80NWVhZ8fX3Ntm1ERERkOjx/k71hSxIZTKFQYMmSJbh//z6ioqJw+PBhPHnyBG3btlWXiYyMRIUKFZCcnAwASE5ORt26ddUBEgDExMQgOztb3RpFRERERGQLmAKcZDtx4gSioqLw6NEj+Pj4YOXKlahVqxaOHTsGd3d3+Pv7a5QvV64cMjIyAAAZGRkaAZLqcdVjuuTk5CAnJ0f9f3Z2tom2hoiIiIhIO7YkkWw1atTAsWPHcODAAbz99tvo06cPTp06ZdbXnDhxIvz8/NQ/4eHhZn09IiIiIiIGSSSbu7s7qlatioYNG2LixImoV68eZsyYgeDgYDx+/BiZmZka5a9du4bg4GAAQHBwcKFsd6r/VWW0GTlyJLKystQ/ly9fNu1GEREREREVwCCJjJaXl4ecnBw0bNgQJUqUwLZt29SPnT17FpcuXUJUVBQAICoqCidOnMD169fVZbZs2QJfX1/UqlVL52t4eHio046rfoiIiIiIzIljkkiWkSNHomPHjqhQoQLu3r2LRYsWISkpCZs2bYKfnx/69euHd999FwEBAfD19cXgwYMRFRWFJk2aAADat2+PWrVq4dVXX8XkyZORkZGBTz75BAMHDoSHh4eVt46IiIiI6D8MkkiW69evo3fv3khPT4efnx+eeuopbNq0Ce3atQMATJs2DS4uLujevTtycnIQExODmTNnqp/v6uqKdevW4e2330ZUVBS8vb3Rp08fjBs3zlqbRERERESkFedJIrvCeRaISCuFAti9G0hPB0JCgOhowNVV93Iisiiev8nesCWJiIjsW2IiMGQIcOXKf8vCwoCePYHFiwsvnzEDiIuzfD2JiMhusCWJ7ArvRBGRhsREID4ekHsqkyTl7+XLGSgRWRDP32RvmN2OiIjsk0KhbEEy5F6fquzQocrnExERacEgiYiI7NPu3Zpd6eQSArh8Wfl8IiIiLRgkERGRfUpPt+7ziYjIYTFIIiIi+xQSYt3nExGRw2KQRERE9ik6WpmtTpWMQS5JAsLDlc8nIiLSgkESERHZJ1dXZTpvQH6gpCo3fTrnSyIiIp0YJBERkf2Ki1Om8y5fXnN5eDgwYoSypSm/sDCm/yYiIr04TxLZFc6zQERaKRTKbHXp6cqxRtHRypYiXcuJyKJ4/iZ742btChARERWbqyvQsqX85Y6OwSERUbEwSCIiInIkiYnKSXbzzyEVFqYcv8VuhkREsjBIIiIi67C31g57qG9iIhAfr5wwN7+0NOVyjsciIpKFiRuIiMjyEhOBiAigVSugVy/l74gI5XJbZA/1VSiULUjahhqrlg0dqixHRERFYpBERESWpWrtyN8dDPivtcOWAg/Afuq7e3fhOuYnBHD5srIcEREViUESERHJo1AASUnA4sXK38a0SNhba4c91Tc93bTliIicGIMkIiLSz1TdzeyttcOe6hsSYtpyREROjEESEREVLTER6N7dNN3N7K21w57qGx2tzGInSdoflyTlJLvR0ZatF9kFIQRSbqfg9I3T1q4KkU1gkERERLopFMAbb2h/zJjuZvbW2mFP9XV1Vab5BgoHSqr/p0+3vYx8ZHW///07XMa5oNo31VBrZi2M3DrS2lUisjoGSUREpNuECcCtW7ofN7S7mdzWjueeK/74J1Owt9aZuDhlmu/y5TWXh4Ux/TcVkpadBmmshBcWv6Cx/Mt9XyI3L9dKtSKyDZwniYiItFMo/muZ0EdudzNVa0d8vDLAyJ8QQRWIvPwyUKWKbUyGKqe+ulpnrDWvUlwc0KVL4dcGlAGnLc/zRBYjjdUR+AMILRUKNxdeIpJzY0sSERFpt3s3cPu2vLKGdDcrqrVj+HDgq68MG/9kiqx7xtZXV+uMtedVcnUFWrYEevZU/l692vbneSKLWHl6ZZEBEgAs77HcQrUhsl2SENrymhLZpuzsbPj5+SErKwu+vr7Wrg6RY1u8WHlBrU9AAHD9uuGtEgVbWp57rnALUn6SpAxMUlP/e63ERGWKbku0OsltGVLNq1Tw9KpqebJ0tzdbqw9ZxWPFY3iM99BbLv29dAT7BJv89Xn+JnvDIInsCg+yRBaUlKRscdBn7Fhg1CjLvd6OHcrWEVu8+FcolC00hgR6zlQfsgq/L/yQnZNdZJmm4U2x57U9ZqsDz99kb9jdjoiItNOXtAAAypQBPv7YNK9nSLptW53k1dbmVbJUfczd5ZGMcizjGKSxkt4A6X7tRWYNkIjsEYMkIiLSrqiU0qplc+eargXCkHTbthaMqNjavEqWqI+1x1+RVtJYCQ3mNCiyzKx1gBgroeS7HzCwJSqAQRIREemmK2lBeLjpu7MZkm5b7kV9WpplWzhsbV4lc9dH1eXRFBMNk0l8vO1jvYkZAECMAd46BOvdUCCycRyTRHaFfZqJrMRS6axVF92A9nTbqsBM7vilwEDgxo3//jd3KnHVGKC0NO1dAa01Jskc9eF4J5vy8MlDlPy8pN5yO+cDzS9qeWDRImU2RDPh+ZvsDVuSiIhIv4Ippc110Ss33bac8VKAZoAEmL+Fo6guivrmVbK3+thql0cnJI2VZAVIYoyOAAmwXOsmkZ1gkERERLYlLg64cEGZxW7RIuXv1FTN1h9946V0sURSB2PmVTInc9XH1sZfOaHky8myutbdWxAKoatc/m6sRKTG7nZkV9hcT0QatM2TVLCLnS6qVOLmYqkuitaqj6Ep28mk5ARH70W9h6/afyW/G6sZ8fxN9oZBEtkVHmSJqJCCF/9pacD//qf/eWYeg+HwbG38lZMYtH4Qvjv4nd5yYnSB90TbDYXwcGV3Swu0bvL8TfbGzdoVICIiKhbVeCmVpCR5zzNmDIattA7ZQj1UXR7j45UBkbYWCkuOv3Jwd3PuwvcL/cHFwf4H0Si0UeEH4uKALl2s/7khshNsSSK7wjtRRKSXuVo4tN2JN3e2PFuuR1H1sWALhTOQ07WuhEsJPP70sQVqYxyev8neMEgiu8KDLBHJUtQYDCGAsWOBatXk301Xra/gKdOCYzpsqh4F2ULLlgP67eRveGn5S3rLPfr4ETzcPCxQI+Px/E32hkES2RUeZIlINm0tHGXKKH/fuvXfMn2tMLYyH5Ct1IMsQk7r0diWYzGqxSgL1Kb4eP4me8MgiewKD7JEDspcLRH513vuHDBmjOGtMLaSxc3c9WBrkE2o/k11nLt9Tm+5QokZbBzP32RvmLiBiIisy5xjbFRJHVStMNruCwqhDJSGDlUObC8YGNjKfEDmrIetjXNyQtfuXUPwlGC95f56+y/UDqptgRoROTdOJktERNajGmNTsAtZWppyeWKiaV5n927d3dQAZaB0+bKyXEFys+AZky3PEOaqh6XeA9JJGivJCpDEaMEAichCGCQREZF1KBTK1gtdrTuAsnVHoSj+axWnFSY6WtmqIukYIyJJymxu0dHG108Oc9TDku8BFTLn0BxZY49yPsmxu+51RPaOQRIREVlHcVp3DFWcVhjVfEBA4QDFkvMBmaMelnwPSE0IAWmshLd+f6vIcm83ehtitIC7q7uFakZEKgySiIjIOiw51qe4rTBxccrEDuXLay4PC7Ns2m1T1kOhALZtk1fW3OOtnIj/F/5wGaf/8kuMFpgZO9MCNSIibZi4gYiILKNg9rSgIHnPM8VYH1UrTHz8f3MlqchthYmLUyZ2sHYGOFPUQ1uihqKYe7yVE7iYeRERMyL0ljv65lHUD65v9voQUdGYApzsClOIEtkpbRfl5csDjx4Bt29rHxNjjnl/tNUjPFwZIDlLFjddE9Jqw7mXTELOuCPA/tJ6G4Lnb7I3bEkiIiLz0nVRfvXqf8uMbd0xlK20BllLUYkaCrLkeCsHNXnvZHyw9QO95XI/zYWrC/cxkS1hkEREROajL3uaJAEBAYCXV+E5eszVuqOaO8kZ6UvUkJ853wMHJ4SQNe7o4+iPMb71eAvUiIgMxSCJiIjMR072tFu3gK1blcGLM7buWJLcBAyffAKMGcP3wAjsWkfkGBgkERGR+ci9KL9+HejZ07x1IfkJGNq0YYBkoDM3z6DmdzX1ljs76Cyql6lugRoRUXEwSCIiIvMpzvxEZHqqVOhpaUUnyzD3xLgOhq1HRI6H8yQREZH5FHd+IjItW5kY10GM3DpSVoCUNyqPARKRnWGQRERE5sOLcttjKxPj2jFFngLSWAlf7P2iyHJftfsKYrSApOsmARHZLM6TRHaF8ywQ2SnOT2R7Ck7uy2QZsrBrnXF4/iZ7w5YkkmXixIl45plnUKpUKQQFBaFr1644e/asRpmWLVtCkiSNn7feekujzKVLlxAbG4uSJUsiKCgII0aMQG5uriU3hYisIS4OuHAB2LEDWLRI+Ts1lQGSNalSoffs+V9K9KQkYPFi5W+Fwnp1s0FH0o/ICpAuDr3IAInIATBxA8myc+dODBw4EM888wxyc3Px0UcfoX379jh16hS8vb3V5fr3749x48ap/y9ZsqT6b4VCgdjYWAQHB2Pfvn1IT09H7969UaJECXz++ecW3R4isgJnnp/I1mlr6QsLU3aVZCArKzgq41UGN9+/aYHaEJElsLsdGeXGjRsICgrCzp070bx5cwDKlqT69etj+vTpWp+zYcMGvPDCC7h69SrKlSsHAJg9ezY++OAD3LhxA+7u7npfl831REQmlpgIxMcXznanGkfjxOOU3lr3FuYcnqO3XN6oPI470oPnb7I37G5HRsnKygIABAQEaCxfuHAhypYtizp16mDkyJF48OCB+rHk5GTUrVtXHSABQExMDLKzs3Hy5Emtr5OTk4Ps7GyNHyIiMhGFQtmCpO1+qWrZ0KFO1/XuseIxpLGS3gBp7gtzmZiByEGxux0ZLC8vD0OHDkXTpk1Rp04d9fJevXqhYsWKCA0NxZ9//okPPvgAZ8+eRWJiIgAgIyNDI0ACoP4/IyND62tNnDgRY8eONdOWEBE5uaQkzS52BQkBXL6sTPDgJF0lmZiBiAAGSWSEgQMH4q+//sKePXs0lr/xxhvqv+vWrYuQkBC0adMG58+fR5UqVYx6rZEjR+Ldd99V/5+dnY3w8HDjKk5ERP9JTAT695dXNj3dvHWxAXsu7UH0fP3zdV0bfg1B3kEWqJGFMdshkQYGSWSQQYMGYd26ddi1axfCwsKKLNu4cWMAQEpKCqpUqYLg4GD88ccfGmWuXbsGAAgODta6Dg8PD3h4eJig5kREpKZrHJIuISHmrY+VyWk9qlm2Jk4NPGWB2lgBE3cQFcIxSSSLEAKDBg3CypUrsX37dlSqVEnvc44dOwYACPn35BoVFYUTJ07g+vXr6jJbtmyBr68vatWqZZZ6ExFRAUWNQypIkpTzWUXrb2GxRy8ue1FWgCRGC8cOkOLjC3e7TEtTLv+3yzyRs2F2O5JlwIABWLRoEVavXo0aNWqol/v5+cHLywvnz5/HokWL8Pzzz6NMmTL4888/MWzYMISFhWHnzp0AlCnA69evj9DQUEyePBkZGRl49dVX8frrr8tOAc7sOERExZSUBLRqJa+sJDlkdrsHTx7A+3NvveWWdF+Cl+q8ZIEaWYlCAURE6B6XJknKFqXU1GJ3veP5m+wNu9uRLLNmzQKgTPOd3/z585GQkAB3d3ds3boV06dPx/379xEeHo7u3bvjk08+UZd1dXXFunXr8PbbbyMqKgre3t7o06ePxrxKREQ2wZHHZ8gdX1SmDDB3rsMFSEzMkM/u3UzcQaQDgySSRV+DY3h4uLrFqCgVK1bE+vXrTVUtIiLTc/TxGXLHFy1dCrRpY966WNCmlE3osLCD3nJ3PrgDf09/81fIFsgNmJ0gcQdRQQySiIiIVHQlNFCNz3CErmfR0cqgLy1N+7gkVRcrB2o5kNN61Lxic+xM0H+zz6HIDZgdPHEHkTZM3EBERAQ4z8Sqrq7KVjFAGRDlp/p/+nSH6F7Y6qdWshMzOF2ABPwXMOuaDNfBE3cQFYVBEhEREWDY+Ax7FxenbBUrX15zeViYQ7SWZT3KgjRWQtKFpCLLre+13jnGHuniRAEzkaHY3Y6IiAhwvvEZcXFAly4Ol6CCiRkMpAqYtY3Dmz7d7gNmImMxSCIicmaOnMXNUM44PsPV1WHGHi07uQw9lvfQW+7eyHvwdtef/tupOGjATFQcDJKIiJyVo2dxM5TchAYcn2Fz5LQexdWMw4oeKyxQGzvlQAEzkSkwSCIickbOkMXNUKrxGfHxyoAo/77h+AybxK51RGQuTNxARORsnCWLmzEcPKGBo7h696qsAGlnwk4GSERkFLYkERE5G0OyuDlj9xuOz7BpbD0iIktgkERE5GycLYubMTg+w+ZM2DUBn+z4RG+5Rx8/goebhwVqRESOjEESEZGzccYsbmTX5LQeta7UGtt6b7NAbYjIGTBIIiJyNsziZlpMo2427FpHRNbCxA1ERM5GlcUN+C9rmwqzuBkmMRGIiABatQJ69VL+johQLiej/X3rbyZmICKrYpBEROSMmMWt+FRp1AsmwVClUWegZBRprIQa39bQW06MFmhesbkFakREzkgSQltfCyLblJ2dDT8/P2RlZcHX19fa1SGyf+wqZhyFQtlipCtLoKrLYmoq96dMPZb1wLJTy/SWe/LpE7i5cLSAveH5m+wNjzJERM6MWdyMwzTqJiOEgMs4/R1butfsjuU9llugRkREDJKIiIgMxzTqJsHEDERkqxgkOYHHjx/j+vXryMvL01heoUIFK9WIiMjOMY16sfyR9gcaz2ust9yuhF2Irsgsi0RkeQySHNi5c+fw2muvYd++fRrLhRCQJAkKhcJKNSMisnNMo240th4RkT1gkOTAEhIS4ObmhnXr1iEkJARSwVS/RERkHFUa9fh4ZUCUP1BiGnWtms9vjt2XdustpxilgIvE5LtEZF0MkhzYsWPHcPjwYURGRlq7KkREjkeVRn3IEM0kDmFhygCJadQBAIo8Bdw+03+5EVstFut6rbNAjYiI9GOQ5MBq1aqFmzdvWrsaRESOKy4O6NKFadR1YNc6IrJXDJIc2KRJk/D+++/j888/R926dVGiRAmNxzlPARGRCTCNeiFb/9mKdr+001vu6JtHUT+4vvkrRERkIE4m68BcXJR9uguORbLnxA2cjI6IyLax9Yi04fmb7A1bkhzYjh07rF0FIiIyhEJht133qn5dFefvnNdbLm9UHhMJEZHNY5DkwFq0aGHtKhARkVyJidqTQMyYYdNJIB4+eYiSn5fUW+61+q/hhy4/WKBGRETFxyDJwWVmZuKHH37A6dOnAQC1a9fGa6+9Bj8/PyvXjIiI1BITlenEC/aAT0tTLl++3CYDJXatIyJHxYkIHNihQ4dQpUoVTJs2Dbdv38bt27cxdepUVKlSBUeOHLF29YiIbItCASQlAYsXK39batymQqFsQdI2RFi1bOhQy9VHhh+O/CArQDr3WzBE3RUWqBERkWkxcYMDi46ORtWqVfH999/DzU3ZaJibm4vXX38d//zzD3bt2mXlGhqOAz+JyCys2dUtKQlo1Up/uR07bCKLnuzWozH4b2JdG20JI8vh+ZvsDbvbObBDhw5pBEgA4Obmhvfffx+NGjWyYs2IiGyItbu6paebtpyZGBQcqf8RykBp6FDlfFJ2koSCiIjd7RyYr68vLl26VGj55cuXUapUKSvUiIjIxthCV7eQENOWM7E7D+/ICpD6Hi0QIKkIAVy+rMzaR0RkJ9iS5MBeeukl9OvXD1999RWee+45AMDevXsxYsQI9OzZ08q1IyKyAbt3a3axKyj/Bb65urpFRyu79qWlaQ/WJEn5eHS0eV6/CEa1Huli5ZYwIiJDMEhyYF999RUkSULv3r2Rm5sLAChRogTefvttfPHFF1auHRGRDbCFrm6ursqxT/HxyoAof6CkGtMzfbpFu6qN3DoSX+zVf564MOQCKh5LBSBjTJWVWsKIiIzBIMmBubu7Y8aMGZg4cSLOn1dO8FelShWULKl/PgsiIqdgK13d4uKUY5+0JY+YPt2iSQ9ktx7NCwPqHlaONbLRljAiImMxux3ZFWbHISKTUiiAiAj9F/ipqZZpyVEolF370tOVgVl0tMVakAzuWpc/cx2gbAkDtLeEMbud0+P5m+wNW5IcTFxcHBYsWABfX1/E6TkhJSYmWqhWREQ2yta6urm6WjzNd+qdVFT+urLecm8cAuasy7cgf+a61FSbaQkjIjIFBkkOxs/PD9K/J3Y/Pz8r14aIyA7YUFc3Syt2Yob8iS3i4pRd76zUEkZEZErsbkd2hc31RGQ2VuzqZmlVv66K83fO6y2XUXkWyvV+W/8KFy0CmDWVisDzN9kbtiQ5sIcPH0IIoU7UcPHiRaxcuRK1atVC+/btrVw7IiIbY4WubtYgu/VotACSkuStlJnriMjBMEhyYF26dEFcXBzeeustZGZm4tlnn4W7uztu3ryJqVOn4u23ZdwdJCIihyA7OKq+SBn0KBQ2PYcTEZE5uVi7AmQ+R44cQfS/J67ly5cjODgYFy9exM8//4yvv/7ayrUjIiJL2J66XVaA9EpKSeXYo169gFatlFn/Vq9WJrYA/ktkoWKlOZyIiCyBQZIDe/DgAUqVKgUA2Lx5M+Li4uDi4oImTZrg4sWLVq4dERGZmzRWQpuf2+gtJ8ZK+PXXB5oL09L+S+u9fDlQvrzm42FhTO1NRA6L3e0cWNWqVbFq1Sp069YNmzZtwrBhwwAA169f56BJIiIHJrdr3Y13M1C2ViNAXCn8YMEU38xcR0ROhC1JDmzUqFEYPnw4IiIi0LhxY0RFRQFQtio1aNDAyrUjIiJzMCQxQ9nDpzXTnhcqlC/FtyqxRc+eyt8MkIjIgbElyYHFx8ejWbNmSE9PR7169dTL27Rpg27dulmxZkREZGoGZa1TSU+Xt3K55YiIHARbkhxccHAwGjRoABcXF2RnZ2PVqlUoVaoUIiMjrV01IiIygYV/LpQVILWt3FYzQALkp+5mim8icjJsSXJgPXr0QPPmzTFo0CA8fPgQjRo1woULFyCEwJIlS9C9e3drV5GIiIrBqNaj/Jjim4hIK7YkObBdu3apU4CvXLkSQghkZmbi66+/xvjx461cOyIiMpY0VpIVIGV9mKU7QAKU44qY4puIqBAGSQ4sKysLAQEBAICNGzeie/fuKFmyJGJjY3Hu3Dkr146IyAAKBZCUBCxerPytUFi7RlYhhDCo9cjXQ0Ym07g420vxzfebiKyM3e0cWHh4OJKTkxEQEICNGzdiyZIlAIA7d+7A09PTyrWzIQoF09oS2bLERGDIEM0sbGFhyhYQJ5qjp9hd64oSF2c7Kb75fhORDWBLkgMbOnQoXnnlFYSFhSEkJAQtW7YEoOyGV7duXetWzlYkJipnlW/VSnOW+cREa9eMiADldzE+vnCaatVEp07wXR25daSsAOmthm8ZFyCp2EKKb77fRGQjGCQ5sAEDBiA5ORk//vgj9u7dCxcX5dtduXJlg8ckTZw4Ec888wxKlSqFoKAgdO3aFWfPntUo8+jRIwwcOBBlypSBj48PunfvjmvXrmmUuXTpEmJjY1GyZEkEBQVhxIgRyM3NLd6GGosnYyLbplAoWxS0JRRQLRs61KG7YkljJXyx9wu95cRogVkvzLJAjcyI7zcR2RAGSQ6uUaNGiI2NRVpamjoYiY2NRdOmTQ1az86dOzFw4EDs378fW7ZswZMnT9C+fXvcv39fXWbYsGFYu3Ytli1bhp07d+Lq1auIy9c1QqFQIDY2Fo8fP8a+ffvw008/YcGCBRg1apRpNtYQPBkT2b7du+VPdOpg5CZmePTxo+K1HtkSJ36/icj2MEhyYA8ePEC/fv1QsmRJ1K5dG5cuXQIADB48GF98of/OZH4bN25EQkICateujXr16mHBggW4dOkSDh8+DECZJOKHH37A1KlT0bp1azRs2BDz58/Hvn37sH//fgDA5s2bcerUKfz666+oX78+OnbsiM8++wzfffcdHj9+bNqN14cnYyLbZ6mJTm0oSUBObo5BY4883DzMXCML4sS2RGRDGCQ5sJEjR+L48eNISkrSSNTQtm1bLF26tFjrzsrKAgB19rzDhw/jyZMnaNu2rbpMZGQkKlSogOTkZABAcnIy6tati3LlyqnLxMTEIDs7GydPnixWfQzGkzGR7bPERKc2NC5RGivBc4L+pDpitHCc1qP8OLFtYTYUwBM5GwZJDmzVqlX49ttv0axZM0j55r+oXbs2zp8/b/R68/LyMHToUDRt2hR16tQBAGRkZMDd3R3+/v4aZcuVK4eMjAx1mfwBkupx1WPa5OTkIDs7W+PHJHgyJrJ9qolOC87foyJJQHi48ROd2si4xI4LO8pqPXr/ufcdMzhSMff7bW9sKIAnckYMkhzYjRs3EBQUVGj5/fv3NYImQw0cOBB//fWXOqW4OU2cOBF+fn7qn/DwcNOsmCdjIssozp1wc050aiPjEqWxEjambNRbTowWmNRuklnrYnWc2PY/NhLAEzkzBkkOrFGjRvj999/V/6sCo3nz5iEqKsqodQ4aNAjr1q3Djh07EBYWpl4eHByMx48fIzMzU6P8tWvXEBwcrC5TMNud6n9VmYJGjhyJrKws9c/ly5eNqnchPBkTmZ8p7oSba6JTK49LlJuYIW9UnmO3HhVkixPbWpqNBPBEzo6TyTqwzz//HB07dsSpU6eQm5uLGTNm4NSpU9i3bx927txp0LqEEBg8eDBWrlyJpKQkVKpUSePxhg0bokSJEti2bRu6d+8OADh79iwuXbqkDsiioqIwYcIEXL9+Xd3CtWXLFvj6+qJWrVpaX9fDwwMeHmYamKw6GWubtHD6dOc4GROZi+pOeMELPdWdcEMueM0x0amVxiVmPspE6UmlZZV1quAoP1ua2NYaDAng/53/kIhMj0GSA2vWrBmOHz+OiRMnom7duti8eTOefvppdQIFQwwcOBCLFi3C6tWrUapUKfUYIj8/P3h5ecHPzw/9+vXDu+++i4CAAPj6+mLw4MGIiopCkyZNAADt27dHrVq18Oqrr2Ly5MnIyMjAJ598goEDB5ovENLH2U/GROag7064JCnvhHfpIv+7ppro1FSsMC7RkKx1Ts/U77c9YWIhIpsgCaHtLEb27smTJ3jzzTfx6aefFmr1MYauMUzz589HQkICAOVksu+99x4WL16MnJwcxMTEYObMmRpd6S5evIi3334bSUlJ8Pb2Rp8+ffDFF1/AzU1evJ6dnQ0/Pz9kZWXB19e32NtFRGaQlKTsWqfPjh3WuxBWKJRd/9LStAdzkqRsVU5NLfZNk4rTK+JS1iW95abHTMeQJkOK9VrkAOzh+2MEnr/J3jBIcmB+fn44duyYSYIkW8GDLJEdWLxYOQZJn0WLgJ49zV8fXVRdAgHNQEl1U8gEY2DYekQGs2AAb0k8f5O9YeIGB9a1a1esWrXK2tUgsl+co8Q4tpxiP/97GhAA/PabWZIEyE3M4LBzHpHxmFiIyCZwTJIDq1atGsaNG4e9e/eiYcOG8Pb21nj8nXfesVLNiOxAYqL2pB4zZjCphz6qFPv67oRbOsW+rvd06lQgMNAk4xJTbqeg2jfVZJVlcEQ6MbEQkdWxu50DK6qbnSRJ+OeffyxYG9Ngcz1ZhK7MbCbshuXwLNCVzaj6mPE9tYmudQoFE9E4Egd6P3n+JnvDIInsCg+yZHaq8QC6UvDa6XgAq9DWchMebvk74WZ+T+UGR0u6L8FLdV4yeP2ysfWTbBjP32RvGCSRXeFBlszOQTNLWY0t3Ak343tqE61HAFs/yebx/E32hmOSHNi7776rdbkkSfD09ETVqlXRpUsXBAQEWLhmRGZiigtyzlFiWrYw340Z3lObCY4A88xLRUTk5BgkObCjR4/iyJEjUCgUqFGjBgDg77//hqurKyIjIzFz5ky899572LNnD2rVqmXl2hIVk6m6GtlyZjYyjgnf010Xd6HFghayVmexxAy7d+vuSggoA6XLl5XlrB2wEhHZCaYAd2BdunRB27ZtcfXqVRw+fBiHDx/GlStX0K5dO/Ts2RNpaWlo3rw5hg0bZu2qEhWPqqtRwQvFtDTl8sRE+etSZWbTMYEyJEk5rsbSmdnIeCZ6T6WxkqwAyeJpvdn6SURkcgySHNiXX36Jzz77TKPvr5+fH8aMGYPJkyejZMmSGDVqFA4fPmzFWhIVk76uRoCyq5HcOY44R4njKeZ7KnfOo02/AKLuimJU1Ehs/SQiMjkGSQ4sKysL169fL7T8xo0byM7OBgD4+/vj8ePHlq4akekY0tVILtUcJWaYZJSsxMj3VPbYozFA+38kwwJyU2HrJxGRyXFMkgPr0qULXnvtNUyZMgXPPPMMAODgwYMYPnw4unbtCgD4448/UL16dSvWkqiYzNXVKC5OOdDd2pnZyHQMeE8NCY7++8dKY39ULWXx8cqASNu8VGz9JCIyCIMkBzZnzhwMGzYML7/8MnJzcwEAbm5u6NOnD6ZNmwYAiIyMxLx586xZTaLiMWdXI1vIzEampec9nXdkHvqv7S9rVRoBUn7WGPujainTlrzE0vNSERE5AM6T5ATu3buHf/75BwBQuXJl+Pj4WLlGxuM8CxZgC/PaGEI1UWhamvZxSZz8lWQyqvVIG2vOoWVv319yGjx/k71hS5IT8PHxUc+FZM8BElmAqdJoWxK7GlExyQ2Ojr5+CPWbdAUkPQG5Ncf+sPWTiMgkmLjBgeXl5WHcuHHw8/NDxYoVUbFiRfj7++Ozzz5DXl6etatHtsaUabQtjYkWyEiGTApbv3xDZj4kInIS7G7nwEaOHIkffvgBY8eORdOmTQEAe/bswZgxY9C/f39MmDDByjU0HJvrzUTVZU1Xljh76bLGrkYkkyHBUSHaWlzDwzn2h6gIPH+TvWGQ5MBCQ0Mxe/ZsdO7cWWP56tWrMWDAAKSlpVmpZsbjQdZMkpKAVq30l7PEWAsGOmRGvVb0wuK/FssqW+SEsPycEhmE52+yNxyT5MBu376NyMjIQssjIyNx+/ZtK9SIbJa50mgbyh7HRJHdKFbrUUEc+0NE5NA4JsmB1atXD99++22h5d9++y3q1atnhRqRzTJnGm257HlMFNk0aawkK0C6OPSivACJiIgcHrvbObCdO3ciNjYWFSpUQFRUFAAgOTkZly9fxvr16xFth7Ovs7neTKydRttRxkSRTRFCwGWcvHuBDI6IzIvnb7I3bElyYC1atMDff/+Nbt26ITMzE5mZmYiLi8PZs2ftMkAiM1Kl0Qask7Vr927dARKgDNwuX1aWI5JBGivJCpDEaMEAiYiICuGYJAf15MkTdOjQAbNnz7bLLHZkBao02trGBJk7a5etjIkiu1d2clncenhLVlkGR0REpAuDJAdVokQJ/Pnnn9auBtmbuDigSxfLZ+2yhTFRZB+KyCpn0sQM9oAZ9oiIzIZjkhzYsGHD4OHhgS+++MLaVTEZ9ml2UNYeE0X2QUf2Q+n1Irpq5pP5QSb8PP3MVDkLYyZIsjM8f5O9YUuSA8vNzcWPP/6IrVu3omHDhvD29tZ4fOrUqVaqGVEBqjFR8fHKgCh/oGSJMVGG4N1761BlP8z32XjkBnjJDJAcpvUI0LovAPyXCXL5cgZKRETFxJYkB9aqiMlBJUnC9u3bLVgb0+CdKAen7e54eLj5x0TJxbv31qEl+6E0Rt5THSo4ApgJkuwWz99kbxgkkV3hQdYJ2GpLja6796qWLt69N5+kJODfmz5ygyPAAQMkQGNfFGnHDk52SzaF52+yN+xu56CWLl2KNWvW4PHjx2jTpg3eeusta1eJSB5XV9u7uFMolC1I2u4pCaEMlIYOVSa9sIWAztH8m9XQaVuP8mMmSCIii+A8SQ5o1qxZ6NmzJw4dOoRz585h4MCBGDFihLWrRWS/OI+TVUl/95IVID1pvtWxAySAmSCJiCyEQZID+vbbbzF69GicPXsWx44dw08//YSZM2dau1pE9ot3763i2r1r8tN6/xAOt+YtzVshWxAdrRxzVHDSZxVJUo7j44ThRETFwiDJAf3zzz/o06eP+v9evXohNzcX6byAIzIO795bnDRWQvCUYL3lxFgJYqxkO9kPzU2VCRIoHCjZWiZIIiI7xiDJAeXk5Gik+3ZxcYG7uzsePnxoxVoR2THevbcYaawkq/Wo8m1AjIHyfXG2pBlxccptLl9ec7kz7gsiIjNh4gYH9emnn6JkyZLq/x8/fowJEybAz++/iRQ5TxKRTPY0j5Mdk921rsUOZdfGbjaU/dDS4uKUiUJsMRMkEZEDYApwB9SyZUtIuu54/4vzJBEZwdbncbJTsoMjR0/KQOTAeP4me8MgiewKD7JkdbY6j5MdOnHtBJ6a/ZSssjYTIPH9JzIKz99kb9jdjojIELY4j5MdssvWI20tiWFhyq6YBVsSGUwREdk1Jm4gIiKLkZuYoU+9PrYXIMXHF54vKy1NuTwxUbNsRATQqhXQq5fyd0SEZhkiIrJp7G5HdoXN9UT2yy5bjwBlq1BEhO4JhSVJ2aKUmgqsXq0MmgqeWlXjRJl9jpwUz99kb9jdjoiIzMpugyOV3bt1B0iAMiC6fBlISlJ2x9N271EIZaA0dKgyKx273hER2TR2tyMisjcKhfKCfPFi5W+Fwto10mrN2TX2HyABynFFciQlyQumdu82SbWIiMh82JLk4Hbv3o05c+bg/PnzWL58OcqXL49ffvkFlSpVQrNmzaxdPSIylCHJA6zIIYIjlZAQ065PbtBFRERWw5YkB7ZixQrExMTAy8sLR48eRU5ODgAgKysLn3/+uZVrR0QGMyR5gJXITcwwLWaafQRIgDIzXVjYf+OKCpIk5XxZcrMemjroIiIik2OQ5MDGjx+P2bNn4/vvv0eJEiXUy5s2bYojR45YsWZEZDCFoujxLoByvIsVu94Z0no0tMlQ81bGlFxdlS11QOFASfX/9OnKIElOMBUdba6aEhGRiTBIcmBnz55F8+bNCy338/NDZmam5StERMaTmzzACuNd5LYeidHCflqPCoqLU2amK19ec3lY2H8Z6+QGU0zaQERk8xgkObDg4GCkpKQUWr5nzx5UrlzZCjUiIqPJHcdiwfEuE3dPdKyxR/rExQEXLgA7dgCLFil/p6ZqjgWTE0wREZHNY+IGB9a/f38MGTIEP/74IyRJwtWrV5GcnIzhw4fj008/tXb1iMgQcsexWGi8i1MFR/m5uuofexQXp0zzvXu3MmgNCVF2sWMLEhGR3WCQ5MA+/PBD5OXloU2bNnjw4AGaN28ODw8PDB8+HIMHD7Z29YjIEKrkAWlp2sclqSY0NfN4F7nB0bqe6xBbPdasdbFpcoIpIiKyWZIQ2s625EgeP36MlJQU3Lt3D7Vq1YKPj4+1q2Q0zthNTk2V3Q7QDJRU412M6c6lUMhu8XDa1iMiKjaev8necEySE3B3d0etWrUQGRmJrVu34vTp09auEhEZw9TjXRITgYgIoFUroFcv5e+IiEKpxJ0iMQMREVE+bElyYD169EDz5s0xaNAgPHz4EPXr10dqaiqEEFiyZAm6d+9u7SoajHeiiGBQ649OqlapgqeAfK1S/0MiFp5YKGt1DI6IqCg8f5O94ZgkB7Zr1y58/PHHAICVK1ciLy8PmZmZ+OmnnzB+/Hi7DJKICMUf76JvziVJgnRC3vGBwRERETkiBkkOLCsrCwEBAQCAjRs3onv37ihZsiRiY2MxYsQIK9eOiKymiDmXpDEAoD/wOTngJGoF1jJptchMTNHySETkZDgmyYGFh4cjOTkZ9+/fx8aNG9G+fXsAwJ07d+Dp6WnQunbt2oVOnTohNDQUkiRh1apVGo8nJCRAkiSNnw4dOmiUuX37Nl555RX4+vrC398f/fr1w71794q1jURkBC1zKQmoAiT9xGjBAMleyBx3RkREmtiS5MCGDh2KV155BT4+PqhYsSJa/ts9Z9euXahbt65B67p//z7q1auH1157DXE6Bod36NAB8+fPV//v4eGh8fgrr7yC9PR0bNmyBU+ePEHfvn3xxhtvYNGiRYZtGBEVT4G5lAwJjsiO6Bp3lpamXM7JbYmIdGLiBgd3+PBhXLp0Ce3atVOn/v7999/h7++Ppk2bGrVOSZKwcuVKdO3aVb0sISEBmZmZhVqYVE6fPo1atWrh4MGDaNSoEQBlF8Dnn38eV65cQWhoqKzX5sBPIhNQKICICNTpfAUng+Q9hQGSnfn3PdbVrVI9r1ZqKrvekUXw/E32hi1JDq5hw4Zo2LChxrLYWPNM8JiUlISgoCCULl0arVu3xvjx41GmTBkAQHJyMvz9/dUBEgC0bdsWLi4uOHDgALp166Z1nTk5OcjJyVH/n52dbZa6EzkVV1dIr+u4eC6AwZGdKmLcGQBl69Lly8pynPSWiKgQBkkO7sqVK1izZg0uXbqEx48fazw2depUk71Ohw4dEBcXh0qVKuH8+fP46KOP0LFjRyQnJ8PV1RUZGRkICtK8Ze3m5oaAgABkZGToXO/EiRMxduxYk9WTyNnJnRD2+vDrCPQONHNtyGy0jDsrVjkiIifDIMmBbdu2DZ07d0blypVx5swZ1KlTBxcuXIAQAk8//bRJX+vll19W/123bl089dRTqFKlCpKSktCmTRuj1zty5Ei8++676v+zs7MRHh5erLoSOaMniidwH+8uqyxbjxxAgXFnxS5HRORkmN3OgY0cORLDhw/HiRMn4OnpiRUrVuDy5cto0aIFXnzxRbO+duXKlVG2bFmkpKQAAIKDg3H9+nWNMrm5ubh9+zaCg4N1rsfDwwO+vr4aP0RkGGmsJCtAEqMFAyRHER2tHHMk6Wg5lCQgPFxZjoiICmGQ5MBOnz6N3r17A1B2bXv48CF8fHwwbtw4TJo0yayvfeXKFdy6dQsh/96ljIqKQmZmJg4fPqwus337duTl5aFx48ZmrQtRIQoFkJQELF6s/K1QWLtGZiGNlWR3r2Nw5GBcXYEZM5R/FwyUVP9Pn86kDUREOjBIcmDe3t7qcUghISE4f/68+rGbN28atK579+7h2LFjOHbsGAAgNTUVx44dw6VLl3Dv3j2MGDEC+/fvx4ULF7Bt2zZ06dIFVatWRUxMDACgZs2a6NChA/r3748//vgDe/fuxaBBg/Dyyy/LzmxHZBJOMm+MIcERAyQHFRenTPNdvrzm8rAwpv8mItKDKcAdWNeuXREbG4v+/ftj+PDhWL16NRISEpCYmIjSpUtj69atsteVlJSEVq1aFVrep08fzJo1C127dsXRo0eRmZmJ0NBQtG/fHp999hnKlSunLnv79m0MGjQIa9euhYuLC7p3746vv/5anZpcDqYQpWLRNW+M6s66LVw4KhTKjGPp6crxItHRBt3tlxscPfr4ETzcPPQXJPtXzM8UkSnw/E32hkGSA/vnn39w7949PPXUU7h//z7ee+897Nu3D9WqVcPUqVNRsWJFa1fRYDzIktHsYd6YxERgyBDNOoaFKbtN6QneMh9lovSk0rJehi1HRGRpPH+TvWGQRHaFB1kyWlKSsmudPjt2WGfemGK0cnHcERHZOp6/yd5wTJKDy8zMxLx58zBy5Ejcvn0bAHDkyBGkpaVZuWZEFmbL88YoFMoWJG33rFTLhg4tlGBCbmKGYJ9gBkhEREQG4DxJDuzPP/9E27Zt4efnhwsXLqB///4ICAhAYmIiLl26hJ9//tnaVSSyHFueN2b3bt3dAAFloHT5srLcv61cbD0io3B8EhGRLGxJcmDvvvsuEhIScO7cOXh6eqqXP//889i1a5cVa0ZkBbY8b4wBrVxyW4/yRuUxQCJNTpLZkYjIFBgkObCDBw/izTffLLS8fPnyyMjIsEKNiKzIlueNkdF6dcEfkP7uJWt1YrSApCsYJOekGvNWsMUyLU25nIESEZEGBkkOzMPDA9nZ2YWW//333wgMDLRCjYiszFbnjdHTyiWNASoN1b8aznlEWhk55o2IyJkxSHJgnTt3xrhx4/DkyRMAgCRJuHTpEj744AN0797dyrUjspK4OODCBWUWu0WLlL9TU607P5KOVi5pjPJHn9fqv8bgiHQzZMwbEREBYOIGhzZlyhTEx8cjKCgIDx8+RIsWLZCRkYGoqChMmDDB2tUjsh5XV+uk+S6KqpXr33mS5ARHABMzkAy2nNmRiMhGMUhyYH5+ftiyZQv27t2L48eP4969e3j66afRtm1ba1eNiLSJi4N0Ql4rL4Mjks2WMzsSEdkoTibrZDIzM+Hv72/tahiNk9GRo/oj7Q80ntdYVlkGSGQQhUKZxS4tTfu4JElSjolLTWU6cDIbnr/J3nBMkgObNGkSli5dqv6/R48eKFOmDMqXL4/jx49bsWZElJ80VpIVIDExAxnFljM7EhHZKAZJDmz27NkIDw8HAGzZsgVbtmzBhg0b0LFjR4wYMcLKtSMiuXMezXlhDoMjKh5bzexIRGSjOCbJgWVkZKiDpHXr1qFHjx5o3749IiIi0LixvG49RGQecoIjwEpd6xQKZaaz9HTlOJXoaMdsZbDn7TSm7nFxQJcu9rvNREQWxCDJgZUuXRqXL19GeHg4Nm7ciPHjxwMAhBBQcD4MIquw6eAIUE4q+m+GPbWwMGV3LUdqbbDn7SxO3W0xsyMRkQ1idzsHFhcXh169eqFdu3a4desWOnbsCAA4evQoqlatauXaETkYhQJISgIWL1b+LnAjYuXplfYRIMXHF55TJy1NuTwx0Tr1MjV73k57rjsRkR1hdjsH9uTJE8yYMQOXL19GQkICGjRoAACYNm0aSpUqhddff93KNTQcs+OQTdJzZ9/mgyPgvwxouiYddZQMaPa8nfZcd3J6PH+TvWGQRHaFB1myOao7+wUPpZIESWbQs733drSq1MoMlTNAUhLQSkYdduywn+5a2sbt7N5dvO205jgmR3yPyGnw/E32hmOSHMyaNWvQsWNHlChRAmvWrCmybOfOnS1UKyIHpVAoW5C03GuSGyDZTNa69HTTlrM2Xa178fHynq9tO609jsnR3iMiIhvGIMnBdO3aFRkZGQgKCkLXrl11lpMkickbiIpr9+5CXZ+kMfKeajPBkUpIiGnLWZOu1r20NOV8QHIU3M6i1hkfb5k02o70HhER2Th2tyO7wuZ6J2PrKZoXLwZ69QIAfN0YGNJR3tNsLkAC/hvvkpamtWXMbsa76Bu3Ayjrn5cnfzttZSyQo7xH5JR4/iZ7w+x2RGSbEhOVF4StWikDkVatlP/bUvauf+/YS2PkBUhitLDNAAlQXlTPmKH8WyqQaEL1//Tptn/xraV1rxCFQhlkyN1OfesUArh8WVnOnBzlPSIisgMMkhxUXl4efvzxR7zwwguoU6cO6tati86dO+Pnn38GGw/J5tlJmmNpZytZ3evOvH3SdoOj/OLilN3GypfXXB4WZpnuZKYgdzzO0KHyt9OWxgI5wntERGQH2N3OAQkh0KlTJ6xfvx716tVDZGQkhBA4ffo0Tpw4gc6dO2PVqlXWrqZR2FzvBGyla5MestN6111hfxeutt7NsSiGZIBTZbvTt522mFXOnt8jcko8f5O9YZDkgObPn48hQ4Zg9erVaFXgxL59+3Z07doV3377LXr37m2lGhqPB1knYIsXpPnIDo5+CFd2fbK3AMnemWPcDscCERUbz99kb9jdzgEtXrwYH330UaEACQBat26NDz/8EAsXLrRCzYhksKWuTfl8sOUD+QFSix3KC2ZTBEgKhTJwXLxY+ZtZKYtmjnE7HAtEROR0GCQ5oD///BMdOnTQ+XjHjh1x/PhxC9aIyAA2mOZYGith8r7JesupEzO0bGmaC2Z7SF5hi8wxbodjgYiInAq72zkgd3d3XLx4ESE6LiKvXr2KSpUqIScnx8I1Kz421zsBG+raJLfl6OaImyhTsoxpX1zXvDyqlgtemOtnjnE7HAtEZBSev8necDJZB6RQKODmpvutdXV1RW5urgVrRGQAVdem+HhlQJA/SLBQ16Y8kQfXcfLWb5asdQoFMGSI9iBRlbp66FCgSxdeoBfF1dX049bMsU4iIrI5DJIckBACCQkJ8PDw0Pq4PbYgkZNRdW0aMkQzy11YmNmTIcged2TOlN6GzMvDC3YiIiKTY5DkgPr06aO3jD1mtiMnExenbCmxUNemXit6YfFfi/WWe/oqcHh9GFA30XzBmo0mryAiInIWDJIc0Pz5861dBSLTsFDXJtmtR2NUT/h3UltzjQuyweQVREREzoSJG8iucOAnmZLc4CjnM8C9YOZtcyaQsKHkFUREpsDzN9kbpgAnIqfzKPeRQa1HhQIk4L9xQUlJpqyaEuflISIisioGSUTkVKSxErwmeOktJ6ov+q97XVF69DDPvEWcl4eIiMhqGCQRkVOIXRQrq/XozYZvKjPXyR3vc/u2cnySuQKlCxeAHTuARYuUv1NTGSARERGZGcckkV1hn2YyhlFpvfWNC9J4AY4RIiIqCs/fZG/YkkREDksaK8kKkPJG5RWe9yj/uCB98s9bRERERHaPQRIROZysR1kGtR5JBZMjqKjGBQUEyHthzltERETkEDhPEhE5FKO61hUlLg7w8wPattVflvMWEREROQS2JBGRQ+jwawdZAdKcF+bID5BUWrZUjjnS1eIkSUB4OBAdbdh6iYisTaFQTmWweLHyt0LbnAdEzoctSURk90zeelSQanxSfLwyIMqfyIHzFhGRvUpMBIYMAa5c+W9ZWJjyeMcsmuTk2JJERHZLbmIGMVoYHyCpcN4iInIkiYnKGz/5AyRAmdHTXNMaENkRpgAnu8IUogQA6XfTETo1VFbZYgdHBSkUyix26enKMUjR0ZZvQbKFOhCR/VJNcVAwQFIxw7QGPH+TvWF3OyKyK2bvWqePq6tyjJK1sHsMERXX7t26AyRAc1oDax7viKyI3e2IyC7U/K6mrABpZ8JO8wVI1sbuMURkCnKnK+C0BuTE2JJERDbP6q1HtkChULYgaeshLYSye8zQoUCXLux6R0RFkztdAac1ICfGIImIbBaDo3zYPYaITCU6WtlNNy1N+40X1ZgkTmtATozd7YjI5py7dY4BUkHsHkNEpqKa1gAoPP8bpzUgAsCWJCKyMQyOdGD3GCIyJdW0BtoSwUyfzkQw5PSYApzsClOI2hgTpqKO/DYSZ2+d1Vvu1IBTqBlY06jXsAu69qlCAZQrB9y6pfu5ZcoA167x7i8RyWehKQV4/iZ7w5YkIjKOCVNRs/XoX0Xt0y5drFcvInJc1p7WgMhGcUwSybJr1y506tQJoaGhkCQJq1at0nhcCIFRo0YhJCQEXl5eaNu2Lc6dO6dR5vbt23jllVfg6+sLf39/9OvXD/fu3bPgVpDJmCgVtTRWkhUgidHCOQKkovbphAlFtyIBysd37zZfHYmIiJwEgySS5f79+6hXrx6+++47rY9PnjwZX3/9NWbPno0DBw7A29sbMTExePTokbrMK6+8gpMnT2LLli1Yt24ddu3ahTfeeMNSm0Cmoi8VNaBMRa1Q6FzFkfQjsoKjDlU7OH5wBMjbp19/LW9dTNxARERUbByTRAaTJAkrV65E165dAShbkUJDQ/Hee+9h+PDhAICsrCyUK1cOCxYswMsvv4zTp0+jVq1aOHjwIBo1agQA2LhxI55//nlcuXIFoaGhsl6bfZptQFIS0KqV/nI7dmjtwsGudVrI3ady6NjvRETWxPM32Ru2JFGxpaamIiMjA23btlUv8/PzQ+PGjZGcnAwASE5Ohr+/vzpAAoC2bdvCxcUFBw4c0LnunJwcZGdna/yQlRmZijp0SqisAOna8GvOFSAB8vdpQEDhdL35lSmjbJUqohWPiIiI9GOQRMWWkZEBAChXrpzG8nLlyqkfy8jIQFBQkMbjbm5uCAgIUJfRZuLEifDz81P/hIeHm7j2ZDAjUlFLYyWk39MfCIjRAkHeQXrLORy5+3TIEOVvXYHSrVtA27ZARITscWFERERUGIMksmkjR45EVlaW+ufy5cvWrhKpZmrXdaEuSUB4OBAdzcQMcsndpx9/rJzXpHz5otdnYAINIiIi0sQgiYotODgYAHDt2jWN5deuXVM/FhwcjOvXr2s8npubi9u3b6vLaOPh4QFfX1+NH7IyGTO17xzfH9J4/TMMvNXwLecOjlRk7FNMn64sFxcHXLgAbN2q7H6njcwEGmQBCoVyzNnixcrffD+IiOwCgyQqtkqVKiE4OBjbtm1TL8vOzsaBAwcQFRUFAIiKikJmZiYOHz6sLrN9+3bk5eWhcePGFq8zFZNqpvaCLRphYZBGC7RMHaV3FWK0wKwXZpmpgnaoiH2K5cs1555ydVX+3L6te31CAJcvMyW4NSUmKrs+tmoF9Oql/M2ukEREdoGTyZIs9+7dQ0pKivr/1NRUHDt2DAEBAahQoQKGDh2K8ePHo1q1aqhUqRI+/fRThIaGqjPg1axZEx06dED//v0xe/ZsPHnyBIMGDcLLL78sO7Md2Zi4OOUEp//O1C793QuA/u6Q90beg7e7t3nrZqEZ5E2uwD4tsu5GJtAgC1HNe1UwgayqK2TBwJeIiGwKU4CTLElJSWilJUVxnz59sGDBAgghMHr0aMydOxeZmZlo1qwZZs6cierVq6vL3r59G4MGDcLatWvh4uKC7t274+uvv4aPj4/sejCFqO0RQsBlnLxGaYt0rUtMVCY4yD8pa1iYsjubI12UGpqK3V4DR3ukUChbjApODKwiScrPZGoq3wNyGjx/k71hkER2hQdZ22Jzcx7punuvGtfjSHfvVRfiaWnaJ6HNfyG+erVzBI62ophziRE5Ip6/yd5wTBIRGWzf5X2yAqTpMdMtFyApFMpAQFvA4IiJDOQme1i9Whk4FmzVuHIF6N4dGDaMCQVMjV0hiYjsHsckEdkLG+kuZXOtRyq7d+vu3gRoJjJwlLv3qmQP2lqJpk9Xjm+KiNAeOKpMn678YcuS6RgxlxgZyUaOi0TkeBgkEdkDGxhnU+u7Wjh987Teck8+fQI3FyscWpz17n1RyR6SkooOHPNjQgHTUc17pa8rZHS05evmSGzguEhEjovd7YhsnWqcTcGLXQtNGKrIU0AaK8kKkESLHXBbusw63bec+e69q6uydaxnz/9ayZKSgBUr5K/DkC6JnPunaIbMe0XGsfJxkYgcHxM3kF1xuoGfVs6SJbtrXd0V1r+ja0giA0e+ONV2d91QRSUU4N17+bTtq/BwZYDEfWU8Zg+0S053/ia7x5YkIltmyDgbE9pwboOsAGlnwk5lgGQLd3R591733XVD6eqSyLv3homLAy5cUAadixYpf6emMkAqLisdF4nIuXBMEpEts8I4G4MSMygUQLMI3RnlJEnZfatLF8sEJ/oSGTjyxWlR2f0Mpa1Lor7sgZZ+r+2FqiskmY6zjj8kIotikERkyyw4ziZuaRxWnlmpt1zeqDxIqpYZW8woV1QiA0em772Qo6iEArb4XpNzcubxh0RkMQySiGyZBbJkPVE8gft4d/1VqRCNXX13aS601Tu6znj3Xu4+7tAB2LhR+dnJ/5nS1yXRVt9rcj7MHkhEFsAxSUS2zMzjbKSxkqwASYwWhQMkgHd0bYncffzBB8qsd+XLay4PCys6/Tffa7IVHH9IRBbA7HZkV5w2O46Js2TtSN2B1j+31lvu/DvnUbl0Zd0FmFHOdhj6Xhg6Caep3mtO/kmmwuyBdsVpz99ktxgkkV1x6oOsiS4uDUrMIIcq4xmgvfsWJye1HHO/F8VdP9OHk6kx6LYbTn3+JrvEIInsCg+yxmv6Y1Psu7xPbznZwVF+vKNrO8z9Xhi7flWAVfCUw2CayCnw/E32hkES2RUeZA338MlDlPy8pN5yn7f+HCOjRxr/QryjazvM/V4Y21WPk38SOS2ev8neMEgiu8KDrGFM3rWOyBhJSUCrVvrL7djhfFkJiZwEz99kb5jdjsgBrTm7RlaAdPXdqwyQyPyYPpyIiOwM50kicjBsPSKjmaubHtOHK7FLKhGR3WCQROQgqn1TDSm3U/SWY3BkQ2zpotmcmec4+Scz+xER2Rl2tyOyc9k52ZDGSnoDpFmxsxgg2ZLERGUyg1atgF69lL8jIpTLrVGX+PjCiRXS0pTLi1snZ5/809z7l4iITI6JG8iucOCnJnats1O2lA7bkpnnnDFVPDP7EQHg+ZvsD4Mksis8yCr9fPxn9FnVR2+5W+/fQoBXgGErt6UuYI7I1i6aLZ15ztk+X8zsRwSA52+yPxyTRGRn5LQeBZYMxPUR1w1fOcdNmN/u3boDJEDZunT5srKcJS6aLZ15ztXVuYIBZvYjIrJLDJKI7ETolFCk39N/IWV01zpdXcBU4yYs2QXMkdnaRTMzz5kX9y8RkV1i4gYiG3fv8T1IYyW9AdKS7kuMD5AUCmULkrbet6plQ4cqyxV8XlISsHix8nfBx6kwW7toVmWeK5hQQUWSlOOGHDnznDlx/xIR2SUGSUQ2TBorodTEUnrLidECL9V5yfgXMqQLmIotZWezJ7Z20ezsmefMjfuXiMguMUgiskHbU7fLGnt0d+Td/1qPitOqY2gXMKY0Np45LpqL26IXF6fsTlm+vObysDB2szQF7l8iIrvD7HZkV5whO46c4KhOUB2cePvEfwuKm3DBkAxc0dG2lZ3NnuTP7HbuHDB3rjKwVDEmHbYpk204W+Y5S+P+JSfmDOdvciwMksiuOPJBtvfK3vjlz1/0lis07igxEejeXfcTVqzQf7GsSkudlqZ9XFL+wGf3bvtMaWztC1RdwUz//kC1asbVyZbmW7IF1n6PiUgnRz5/k2NidzsiK1MlZtAXIJ14+0ThAEmhAN54o+gXeOMN/d2vDOkCZmvZ2eSw9viporonjhkDeHgoA0pDu9gZk2zDUVn7PbZ1TLJCRGQQBklEVtR4XmO9iRnKeZeDGC1QJ6hO4QeTkoBbt4p+kVu3lOX0kTtuwtays+lj7fFT5gpmjEm24ais/R7bOgaQREQGY5BEZAVnbp6BNFbCH2l/FFnuyadPkDE8Q3cBOcGPIeXi4oALF5Rd5RYtUv5OTdXssmVr2dmKYgutLeYKZuyxRc8cbOE9tmUMIImIjMIgiciChBDovbI3an5Xs8hy02KmQYwWcHOxwnzPrq7Krl89e2rvAmZPKY1tobXFXMGMvbXoyWFMlzBbeI9tFQNIIiKjMUgispA9l/bAZZxLkWOPvNy8IEYLDG0yVN5K5SZGMHUCBXtJaWwLrS3mCmbsqUVPDmO7hNnCe2yrGEASERnNCrepiZzLo9xHqPJ1FVy9e7XIcunvpSPYJ9iwlbdsCZQpU/S4pDJlzJNlLi4O6NLFtrOJWau1JX+WtaAgZTCjL3OgocGMqkUvPl65jvzrtrUWPX10ZelTdQkrKvB2xBY1U2EASURkNLYkEZnRt398C68JXkUGSO82eRditDA8QAKUF8Bz5xZdZu5c810o6+uaZ23WaG0p2CLSti3w8KEyADB190R7adErSnG7hDlai5opMYAkIjIagyQiM7icdRnSWAmDNwzWWSY2oAnyqi3EFI9OxRsTEBennAtJ24WynDmSTMUWUwxbevyUrkHyt28rfwcEaC43RTAjJ9lGfrb2PhW3S5g9jZGzNAaQRERGY3c7IhMSQuCl5S9h2allRZY7vzQYlU/vB7BfuSAsTHmhZ+zFsrW7vumaKLU422QqqtYWbfWbPt109dPXIiJJgJcXsHUrcP26ad8jVYuePrb4PpmiS5il3mN740hdMomILEwSQtsZncg22fKM3TtSd6D1z62LLPNlcG8Mf/uXwhfSqgsWe+kilZ+u8SS2tk35xwmZI4hMSlJ2sdNnxw7zjBHTx1bfJ1PuN3O/x/ZKW3AcHu7cASRZnC2fv4m0YZBEdsUWD7IPnjxA+anlkfkoU2eZ0p6lcWXIRZSsVkt31yLVAP7UVPu5sFMolONvbHmbLHXhvHixcgySPosWKcdwWbKOtvw+qeqmL7GFPX0vbBEDSLIyWzx/ExWFY5KIiuGrfV/B+3PvIgOkbb234fYHt1Fy/2HHS8dr6ymGjU0rbQxjB8lboo62/D5xTJFl2HqSFSIiG8MgicgI/9z5B9JYCSO2jNBZ5sVaLyJvVB5aV/q3C54jpuM1dJssmTRAVxIFVVppUwdKxgySt1Qdbf2z5whZ+oiIyKEwSCIygBACLyx6AVW+rlJkuYtDL+K3F3+DlP+C2RHT8RqyTZZs1SluWmljGNoiYsk62sNnz9AsfURERGbEIIlIpo0pG+EyzgW/n/tdZ5lvOn4DMVqggl+Fwg86Yjpeudt086ZlW3Ws1b3MkBYRS9bRXj577BJGREQ2gkESkR53c+7Cc7wnOi7sqLNM+VLl8fDjhxj07CDdK3LEsRdytmnKFGDYMMu26lize5ncFhFL1tERP3tERERmxCCJqAjjd42H7xe+yFHk6Cyzu+9uXHn3CjzdPPWv0BHHXujbpsBAy7fqWLt7mZwWEUvX0RE/e0RERGbCFOBkVyyVQvTvW3+jxrc1iizTu15vLOiyQHPckVyOmI5X1zYVJzV2cepi62mlrVVHR/zsEZHNYwpwsjdu1q4AkS3JE3lo90s7bE/dXmS5tHfTEFoq1PgXUrU0OBJd22SNVh1V97L4eGWwkT8IsZXuZdaqoyN+9oiIiEyM3e2I/rXm7Bq4jnMtMkCa88IciNGieAGSs7FW0gBDu5dZMj25sXUkIiIii2B3O7Ir5miuz83Lhcd4D+SJPJ1lqgZUxckBJ+Hu6m6S1zSKPXeTUs0HBGhvMTFnQCBnvyUmKtNx5x87FRambOmxRKBiz+8tEZEM7G5H9oZBEtkVcxxkh24cihkHZuh8fH+//Wgc1tgkr2U0a1/Em4K2bQgPV3Yps+Y2qAK4godCSwRwREROgkES2RsGSWRXzHGQjZgegYtZFwstf7Phm5j9wmyTvEaxONJFvDVaTIp6TVXyBF3Z92whwYOpsLWKiKyIQRLZGyZuIKcXFR5VKEi6NvwagryDrFSjfBQKZeuLrjmGJEk5x1CXLvZxwWvppAH6WuAMmdDVnpMdOEJLJBERkQUxcQOZxJgxYyBJksZPZGSk+vFHjx5h4MCBKFOmDHx8fNC9e3dcu3bNijX+z6zYWZjYZiJGNhuJlS+thBgtbCNAAgy7iHdWuhIuqFrgCu6/tDTl8sRE6046ayly9gMRERFpYEsSmUzt2rWxdetW9f9ubv99vIYNG4bff/8dy5Ytg5+fHwYNGoS4uDjs3bvXGlXV4O/pjw+bfWjtamhnTxfx1ujOpauFZNo0YNgw/S1w8+fLex1zTTprbo7WEklERGQhDJLIZNzc3BAcHFxoeVZWFn744QcsWrQIrVu3BgDMnz8fNWvWxP79+9GkSRNLV9V+WGOOIWNYozuXrrFaaWnAiy8W/VxVC5yqnvomdDV1enJLcZbuhERERCbG7nZkMufOnUNoaCgqV66MV155BZcuXQIAHD58GE+ePEHbtm3VZSMjI1GhQgUkJycXuc6cnBxkZ2dr/DgVa80xZAhrdOfS10Ii1/XrykAOKLyPbWXS2eKwp5ZIIiIiG8IgiUyicePGWLBgATZu3IhZs2YhNTUV0dHRuHv3LjIyMuDu7g5/f3+N55QrVw4ZGRlFrnfixInw8/NT/4SHh5txK2yQq6ttX8TLCVaGDjX9xKz6WkjkCglx7Ald7aUlkoiIyMYwBTiZRWZmJipWrIipU6fCy8sLffv2RU5OjkaZZ599Fq1atcKkSZN0ricnJ0fjednZ2QgPD3e8FKL6xvPY6hxDSUlAq1b6y+3YYdruXIsXA716Gf98bam9HTFFtirFub7uhI6Q4pyIbBpTgJO94ZgkMgt/f39Ur14dKSkpaNeuHR4/fozMzEyN1qRr165pHcOUn4eHBzw8PMxcWyuTM54nLk45uN7WLuKt1Z3LkJYPSdIMEHS1wFk6PbklqFoi4+Pl7wciIiJidzsyj3v37uH8+fMICQlBw4YNUaJECWzbtk39+NmzZ3Hp0iVERUVZsZY2wJDxPKqL+J49lb9t4cLWWt255I7V+u03x+xGZwhH7k5IRERkJuxuRyYxfPhwdOrUCRUrVsTVq1cxevRoHDt2DKdOnUJgYCDefvttrF+/HgsWLICvry8GDx4MANi3b59Br+NQzfWqrlC6xtbYQ1coa3bnUgWYgPYWElUA4Ijd6IzB/UBEVuRQ529yCuxuRyZx5coV9OzZE7du3UJgYCCaNWuG/fv3IzAwEAAwbdo0uLi4oHv37sjJyUFMTAxmzpxp5VpbmSOkZ7Zmdy5VC4m2ror5x2oZ2o3OUYMJR+xOSEREZCZsSSK74lB3ouQmH1i0SNnFzpZZM7GEKYMaa8z3RETkBBzq/E1OgS1JRNbiSOmZrZlYwlQtJEVNThsfz/E7REREToQtSWRXHOpOFNMz2w5HGB9GRGTDHOr8TU6B2e2IrMXWJ4p1JoaMDyMiIiKHxyCJyJqYntk2WGu+JyIiIrJJHJNEZG22OlGsM3Gk8WFERERUbAySiGwB0zNbl2pyWn3jw6KjLV83IiIisjh2tyMi4vgwIiIiyodBEhERwPFhREREpMbudkREKhwfRkRERGCQRESkiePDiIiInB672xEREREREeXDIImIiIiIiCgfBklERERERET5MEgiIiIiIiLKh0ESERERERFRPgySiIiIiIiI8mGQRERERERElA+DJCIiIiIionwYJBEREREREeXjZu0KEBlCCAEAyM7OtnJNiIiISC7VeVt1HieydQySyK7cvXsXABAeHm7lmhAREZGh7t69Cz8/P2tXg0gvSTCkJzuSl5eHq1evolSpUpAkyWKvm52djfDwcFy+fBm+vr4We13ivrcm7nvr4b63Du538xFC4O7duwgNDYWLC0d7kO1jSxLZFRcXF4SFhVnt9X19fXnitBLue+vhvrce7nvr4H43D7YgkT1hKE9ERERERJQPgyQiIiIiIqJ8GCQRyeDh4YHRo0fDw8PD2lVxOtz31sN9bz3c99bB/U5EKkzcQERERERElA9bkoiIiIiIiPJhkERERERERJQPgyQiIiIiIqJ8GCQRERERERHlwyCJ6F+3b9/GK6+8Al9fX/j7+6Nfv364d+9ekc+ZO3cuWrZsCV9fX0iShMzMTJOs15kYs38ePXqEgQMHokyZMvDx8UH37t1x7do1jTKSJBX6WbJkiTk3xeZ99913iIiIgKenJxo3bow//vijyPLLli1DZGQkPD09UbduXaxfv17jcSEERo0ahZCQEHh5eaFt27Y4d+6cOTfBbpl63yckJBT6fHfo0MGcm2C3DNn3J0+eRPfu3REREQFJkjB9+vRir5OI7BODJKJ/vfLKKzh58iS2bNmCdevWYdeuXXjjjTeKfM6DBw/QoUMHfPTRRyZdrzMxZv8MGzYMa9euxbJly7Bz505cvXoVcXFxhcrNnz8f6enp6p+uXbuaaSts39KlS/Huu+9i9OjROHLkCOrVq4eYmBhcv35da/l9+/ahZ8+e6NevH44ePYquXbuia9eu+Ouvv9RlJk+ejK+//hqzZ8/GgQMH4O3tjZiYGDx69MhSm2UXzLHvAaBDhw4an+/FixdbYnPsiqH7/sGDB6hcuTK++OILBAcHm2SdRGSnBBGJU6dOCQDi4MGD6mUbNmwQkiSJtLQ0vc/fsWOHACDu3Llj0vU6OmP2T2ZmpihRooRYtmyZetnp06cFAJGcnKxeBkCsXLnSbHW3N88++6wYOHCg+n+FQiFCQ0PFxIkTtZbv0aOHiI2N1VjWuHFj8eabbwohhMjLyxPBwcHiyy+/VD+emZkpPDw8xOLFi82wBfbL1PteCCH69OkjunTpYpb6OhJD931+FStWFNOmTTPpOonIfrAliQhAcnIy/P390ahRI/Wytm3bwsXFBQcOHLC59ToKY/bP4cOH8eTJE7Rt21a9LDIyEhUqVEBycrJG2YEDB6Js2bJ49tln8eOPP0I46bRwjx8/xuHDhzX2mYuLC9q2bVton6kkJydrlAeAmJgYdfnU1FRkZGRolPHz80Pjxo11rtMZmWPfqyQlJSEoKAg1atTA22+/jVu3bpl+A+yYMfveGuskItvkZu0KENmCjIwMBAUFaSxzc3NDQEAAMjIybG69jsKY/ZORkQF3d3f4+/trLC9XrpzGc8aNG4fWrVujZMmS2Lx5MwYMGIB79+7hnXfeMfl22LqbN29CoVCgXLlyGsvLlSuHM2fOaH1ORkaG1vKqfaz6XVQZMs++B5Rd7eLi4lCpUiWcP38eH330ETp27Ijk5GS4urqafkPskDH73hrrJCLbxCCJHNqHH36ISZMmFVnm9OnTFqqN87CF/f7pp5+q/27QoAHu37+PL7/80imDJHI8L7/8svrvunXr4qmnnkKVKlWQlJSENm3aWLFmRESOgUESObT33nsPCQkJRZapXLkygoODCw26zc3Nxe3bt3UO3pXDXOu1debc78HBwXj8+DEyMzM1WpOuXbtW5D5t3LgxPvvsM+Tk5MDDw0P2tjiCsmXLwtXVtVAGwKL2WXBwcJHlVb+vXbuGkJAQjTL169c3Ye3tmzn2vTaVK1dG2bJlkZKSwiDpX8bse2usk4hsE8ckkUMLDAxEZGRkkT/u7u6IiopCZmYmDh8+rH7u9u3bkZeXh8aNGxv9+uZar60z535v2LAhSpQogW3btqmXnT17FpcuXUJUVJTOOh07dgylS5d2ugAJANzd3dGwYUONfZaXl4dt27bp3GdRUVEa5QFgy5Yt6vKVKlVCcHCwRpns7GwcOHCgyPfB2Zhj32tz5coV3Lp1SyNgdXbG7HtrrJOIbJS1M0cQ2YoOHTqIBg0aiAMHDog9e/aIatWqiZ49e6ofv3LliqhRo4Y4cOCAell6ero4evSo+P777wUAsWvXLnH06FFx69Yt2et1dsbs97feektUqFBBbN++XRw6dEhERUWJqKgo9eNr1qwR33//vThx4oQ4d+6cmDlzpihZsqQYNWqURbfNlixZskR4eHiIBQsWiFOnTok33nhD+Pv7i4yMDCGEEK+++qr48MMP1eX37t0r3NzcxFdffSVOnz4tRo8eLUqUKCFOnDihLvPFF18If39/sXr1avHnn3+KLl26iEqVKomHDx9afPtsman3/d27d8Xw4cNFcnKySE1NFVu3bhVPP/20qFatmnj06JFVttFWGbrvc3JyxNGjR8XRo0dFSEiIGD58uDh69Kg4d+6c7HUSkWNgkET0r1u3bomePXsKHx8f4evrK/r27Svu3r2rfjw1NVUAEDt27FAvGz16tABQ6Gf+/Pmy1+vsjNnvDx8+FAMGDBClS5cWJUuWFN26dRPp6enqxzds2CDq168vfHx8hLe3t6hXr56YPXu2UCgUltw0m/PNN9+IChUqCHd3d/Hss8+K/fv3qx9r0aKF6NOnj0b53377TVSvXl24u7uL2rVri99//13j8by8PPHpp5+KcuXKCQ8PD9GmTRtx9uxZS2yK3THlvn/w4IFo3769CAwMFCVKlBAVK1YU/fv350W6Dobse9XxpuBPixYtZK+TiByDJIST5sQlIiIiIiLSgmOSiIiIiIiI8mGQRERERERElA+DJCIiIiIionwYJBEREREREeXDIImIiIiIiCgfBklERERERET5MEgiIiIiIiLKh0ESEZnNmDFjUL9+fWtXwyIiIiIwffp09f+SJGHVqlU6y1+4cAGSJOHYsWNGv2ZCQgK6du1q9PNNae7cuQgPD4eLi4vGfnBWBT8P+pji82AKcuqRlJQESZKQmZlpljosWLAA/v7+Zlm3LubeJiKyP27WrgAR2YcFCxagb9++Gss8PDzw6NEj2etISEhAZmZmkcGDvTp48CC8vb2tXQ2ryM7OxqBBgzB16lR0794dfn5+1q6SyV24cAGVKlXC0aNHZQX+9vp5CA8PR3p6OsqWLWvtqhARWRWDJCKSzdfXF2fPnlX/L0mSFWtjWwIDA61dBau5dOkSnjx5gtjYWISEhFjkNR8/fgx3d3eLvJYhVPWyx8+Dqu7BwcHWrgoRkdWxux0RqS1fvhx169aFl5cXypQpg7Zt2+L+/fvqxyVJQnBwsPqnXLlystc9ZswY/PTTT1i9ejUkSYIkSUhKSgIA7Nu3D/Xr14enpycaNWqEVatWGdz1SNW1b86cOQgPD0fJkiXRo0cPZGVlqcvk5eVh3LhxCAsLg4eHB+rXr4+NGzeqH3/8+DEGDRqEkJAQeHp6omLFipg4cSIAQAiBMWPGoEKFCvDw8EBoaCjeeecd9XO1da9KT09Hx44d4eXlhcqVK2P58uVa6y6EQNWqVfHVV19pLD927BgkSUJKSoqsfZCTk4N33nkHQUFB8PT0RLNmzXDw4EGNMmvWrEG1atXg6emJVq1a4aefftLbzejSpUvo0qULfHx84Ovrix49euDatWsAlC2MdevWBQBUrlwZkiThwoULhdZR1L4FgMzMTLz++usIDAyEr68vWrdujePHj6sfV72/8+bNQ6VKleDp6QlA+36vX78+xowZo/5fkiTMmTMHL7zwAkqWLImaNWsiOTkZKSkpaNmyJby9vfHcc8/h/PnzOvdBpUqVAAANGjSAJElo2bIlgP+6PE6YMAGhoaGoUaOG1nqdOXMGzZo1g6enJ2rVqoWtW7fq7JIp9/OQmZmJN998E+XKlYOnpyfq1KmDdevWqcvv2bMH0dHR8PLyQnh4ON555x2N73NERAQ+++wz9O7dG76+vnjjjTe0drdbv349qlevDi8vL7Rq1Urr+6vvtWbOnKn+3JUrVw7x8fE697U2q1evxtNPPw1PT09UrlwZY8eORW5uLgCgV69eeOmllzTKP3nyBGXLlsXPP/8MQPndnzhxIipVqgQvLy/Uq1dP5/eRiAgAIIiIhBBXr14Vbm5uYurUqSI1NVX8+eef4rvvvhN3794VQggxf/584erqKipUqCDCwsJE586dxV9//VXkOkePHi3q1asnhBDi7t27okePHqJDhw4iPT1dpKeni5ycHJGVlSUCAgLE//73P3Hy5Emxfv16Ub16dQFAHD16VHb9R48eLby9vUXr1q3F0aNHxc6dO0XVqlVFr1691GWmTp0qfH19xeLFi8WZM2fE+++/L0qUKCH+/vtvIYQQX375pQgPDxe7du0SFy5cELt37xaLFi0SQgixbNky4evrK9avXy8uXrwoDhw4IObOnated8WKFcW0adPU/wMQZcqUEd9//704e/as+OSTT4Srq6s4deqUEEKI1NRUjW2cMGGCqFWrlsY2vfPOO6J58+Y6t7lPnz6iS5cuGuVDQ0PF+vXrxcmTJ0WfPn1E6dKlxa1bt4QQQvzzzz+iRIkSYvjw4eLMmTNi8eLFonz58gKAuHPnjtbXUCgUon79+qJZs2bi0KFDYv/+/aJhw4aiRYsWQgghHjx4ILZu3SoAiD/++EOkp6eL3NzcQuspat8KIUTbtm1Fp06dxMGDB8Xff/8t3nvvPVGmTBl13VXvb4cOHcSRI0fE8ePHte53IYSoV6+eGD16tMZ7Ub58ebF06VJx9uxZ0bVrVxERESFat24tNm7cKE6dOiWaNGkiOnTooHNf//HHHwKA2Lp1q0hPT1fXq0+fPsLHx0e8+uqr4q+//lJ/J/LXKzc3V9SoUUO0a9dOHDt2TOzevVs8++yzAoBYuXKlEMLwz4NCoRBNmjQRtWvXFps3bxbnz58Xa9euFevXrxdCCJGSkiK8vb3FtGnTxN9//y327t0rGjRoIBISEtTrq1ixovD19RVfffWVSElJESkpKYXqcenSJeHh4SHeffddcebMGfHrr7+KcuXKaXxm9L3WwYMHhaurq1i0aJG4cOGCOHLkiJgxY4bOfT1//nzh5+en/n/Xrl3C19dXLFiwQJw/f15s3rxZREREiDFjxgghhFi3bp3w8vJSH6uEEGLt2rXCy8tLZGdnCyGEGD9+vIiMjBQbN24U58+fF/PnzxceHh7i/+3df1BUVRsH8K8Lu7AsbhigAe7iAEIwgkgiIiQNP8IRbaxcGGWMDPzFqNWUQwwOoaP9AUFOlmiMShQ5jBk5aCBQ4DCgYApEgWsYCoYMTqRIIBD7vH843Hcv7C5rr+b7vj2fGWa4555f9+xZ5h723Gerq6uJiKiqqsrk+4Ax9s/DiyTGGBERXbx4kQDQtWvXDJ6vq6ujTz/9lBobG6m6uppWrFhBSqWSurq6jNapv0gimnxTT0SUm5tL9vb2NDQ0JKTl5eX9pUWShYUF3bhxQ0grLS0liURCN2/eJCIiZ2dn2rt3r6hcYGAgJScnExHRtm3bKDw8nHQ63aT6s7OzydPTk0ZGRgy2b2iRtHnzZlGeoKAg2rJlCxFNvin+9ddfycLCgurr64mIaGRkhBwcHCg/P9/oNeuP58DAAEmlUiosLBTOj4yMkLOzM2VmZhIRUUpKCs2bN09UR1pamsmbw/LycrKwsKDOzk4h7aeffhIWRUREjY2NBIA6OjqM9tXU2NbU1JBSqaR79+6J0t3d3enQoUNEdP/1lUql1NvbK8pj7iJp586dwvG5c+cIAB0+fFhIO3bsGFlbWxvt/8TXa1xCQgLNmjWLhoeHjfartLSULC0thXlIRFRRUWFykTTVfDhz5gxJJBLSarUG+5uYmEgbN24UpdXU1JBEIhHea66urrRq1SqT15mamjppsZaSkiKaM1O1deLECVIqlcKCZSoTF0kRERH03nvvifJ89tln5OTkREREo6Oj5ODgQAUFBcL5NWvWUFxcHBER3bt3j2xsbKiurk5UR2JiIq1Zs4aIeJHEGJuMt9sxxgAA8+fPR0REBHx9faHRaJCXl4fff/9dOB8cHIxXXnkF/v7+CAsLw1dffQVHR0ccOnToP2pXq9XCz89P2D4FAIsWLfpLdanVari4uIj6rNPpoNVq0d/fj+7uboSEhIjKhISEoK2tDcD9rVNNTU3w8vLC9u3bUV5eLuTTaDQYGhqCm5sbNmzYgOLiYmG7jzHBwcGTjsfbmsjZ2RkxMTE4cuQIAKCkpATDw8PQaDRmXfvVq1cxOjoquj6pVIpFixYJbWq1WgQGBorKTTXWbW1tUKlUUKlUQpqPjw/s7OyMXoshpsa2ubkZAwMDsLe3h62trfDT0dEh2gLn6ur6l5/18fPzE34f3yY6vk1wPO3evXvo7+9/4Lp9fX1NPh+l1WqhUqlEz/pMNe5TzYempibMnj0bnp6eBss3NzcjPz9fNJ7R0dHQ6XTo6OgQ8i1cuNBkP9ra2hAUFCRKmzivp2orKioKrq6ucHNzw7p161BYWIjBwUGT7U6sf/fu3aL6N2zYgJs3b2JwcBCWlpaIjY1FYWEhAOCPP/7AyZMnER8fDwBob2/H4OAgoqKiRHUUFBSY3GLJGPtn48ANjDEAgIWFBSoqKlBXV4fy8nLs378faWlpqK+vF57H0CeVSrFgwQKzn5f5XxAQEICOjg6UlpaisrISsbGxiIyMxJdffgmVSgWtVovKykpUVFQgOTkZWVlZOHv2LKRS6UNpPykpCevWrcMHH3yAo0ePIi4uDjY2Ng+l7sfN1NgODAzAyclJeEZNn34oaEPR4iQSCYhIlDY6Ojopn/5rNB5wxFCaTqd7oOsy1q+HwdR8kMvlJssODAxg06ZNoufmxqnVauH3h9H3qdqSyWS4dOkSqqurUV5ejvT0dGRkZODChQtmhfoeGBjArl278NJLL006N/7Plfj4eISFhaG3txcVFRWQy+VYtmyZUB4ATp8+LfonCnA/QidjjBnCnyQxxgTTpk1DSEgIdu3ahcbGRshkMhQXFxvMOzY2hpaWlgeKZiaTyTA2NiZK8/LyQktLC4aHh4W0icEGzNXZ2Ynu7m7h+Pz585BIJPDy8oJSqYSzszNqa2tFZWpra+Hj4yMcK5VKxMXFIS8vD0VFRThx4gT6+voA3L8xXblyJT788ENUV1fj3LlzaGlpMdqf8+fPTzr29vY2mn/58uVQKBTIzc1FWVkZXnvtNbOv3d3dHTKZTHR9o6OjuHDhgnB9Xl5e+P7770Xlphprb29vdHV1oaurS0hrbW3F7du3ReNmDmNjGxAQgJ6eHlhaWsLDw0P0M1UoakdHR9y8eVM47u/vF31S8rCMf1I0cf6aw8vLC11dXUKwC8C8OW5qPvj5+eHGjRu4cuWKwbIBAQFobW2dNJ4eHh4PFBXQ29sbDQ0NorSJ89qctiwtLREZGYnMzEz88MMPuHbtGr777juz+hAQEACtVmuwfonk/m3MkiVLoFKpUFRUhMLCQmg0GmER7OPjAysrK3R2dk4qr/8JKWOM6eNPkhhjAID6+np8++23eP755zFz5kzU19fj1q1bwk397t27sXjxYnh4eOD27dvIysrC9evXkZSUZHYbc+bMwZkzZ6DVamFvb48nnngCa9euRVpaGjZu3Ih33nkHnZ2dQlSvBw0xbm1tjYSEBLz//vvo7+/H9u3bERsbK2xz2rFjB9599124u7vD398fR48eRVNTk7BNJycnB05OTliwYAEkEgmOHz+Op556CnZ2dsjPz8fY2BiCgoJgY2ODzz//HHK5HK6urkb7c/z4cSxcuBChoaEoLCxEQ0MDDh8+bDS/hYUFXn31VaSmpmLu3LmTtjWZolAosGXLFuzYsQNPPvkk1Go1MjMzMTg4iMTERADApk2bkJOTg5SUFCQmJqKpqQn5+fkAjI91ZGQkfH19ER8fj3379uHPP/9EcnIywsLCptyqpc/U2EZGRiI4OBirVq1CZmYmPD090d3djdOnT+PFF1802U54eDjy8/OxcuVK2NnZIT09HRYWFmb3y1wzZ86EXC5HWVkZZs+eDWtra7O/DyoqKgru7u5ISEhAZmYm7t69i507dwIwPcdNzYewsDAsXboUL7/8MnJycuDh4YHLly9j2rRpWLZsGVJSUrB48WJs3boVSUlJUCgUaG1tRUVFBT766COzr3vz5s3Izs7Gjh07kJSUhIsXLwpzZtxUbZ06dQq//PILli5dihkzZuCbb76BTqcTIgFOJT09HStWrIBarcbq1ashkUjQ3NyMH3/8EXv27BHyrV27FgcPHsSVK1dQVVUlpE+fPh1vv/023nzzTeh0OoSGhuLOnTuora2FUqlEQkKC2ePBGPsHedwPRTHG/ju0trZSdHQ0OTo6kpWVFXl6etL+/fuF82+88Qap1WqSyWQ0a9YsWr58OV26dMlknRMDN/T29lJUVBTZ2toSAKqqqiIiotraWvLz8yOZTEbPPPMMffHFFwSALl++LJR1dXUVPYxvrK0DBw6Qs7MzWVtb0+rVq6mvr0/IMzY2RhkZGeTi4kJSqZTmz59PpaWlwvlPPvmE/P39SaFQkFKppIiICOEai4uLKSgoiJRKJSkUClq8eDFVVlaK+jcxcMPHH39MUVFRZGVlRXPmzKGioiLhvLFAAFevXiUAQrAFUyYGwhgaGqJt27aRg4MDWVlZUUhIiBBcYdzJkyfJw8ODrKys6LnnnqPc3FwCIAqcMdH169fphRdeIIVCQdOnTyeNRkM9PT3CeXMCN5gaWyKi/v5+2rZtGzk7O5NUKiWVSkXx8fFCwIiJc2ncnTt3KC4ujpRKJalUKsrPzzcYuGE8QAKR4bE358H9vLw8UqlUJJFIhOh+hoKREE2eD21tbRQSEkIymYyefvppKikpIQBUVlZmtE9EpufDb7/9RuvXryd7e3uytramefPm0alTp4TzDQ0NwvtNoVCQn5+fKHCJoaAXhvpRUlIizJlnn32Wjhw5MmmsTLVVU1NDYWFhNGPGDJLL5eTn5yd6L0w0MXADEVFZWRktWbKE5HI5KZVKWrRokSi6JNH9v2EAyNXVdVKAEJ1OR/v27SMvLy+SSqXk6OhI0dHRdPbsWSLiwA2MscmmEU3YzM0YY49ZYWEh1q9fjzt37kAul2NwcBD29vYoLS0Vvp9mooyMDHz99dcP9N1K/41qamoQERGBrq6uB/oeqr9q7969OHjwoGg7HXv0amtrERoaivb2dri7uxvN93fPB8YYY/fxdjvG2GNXUFAANzc3uLi4oLm5GSkpKYiNjRUeTq+qqkJ4eLjRBdL/g+HhYdy6dQsZGRnQaDSP7Ib4wIEDCAwMhL29PWpra5GVlYWtW7c+krbYvxUXF8PW1hZz585Fe3s7Xn/9dYSEhBhdIP1d84ExxphhvEhijD12PT09SE9PR09PD5ycnKDRaLB3717hfExMDGJiYh5jDx+9Y8eOITExEf7+/igoKHhk7fz888/Ys2cP+vr6oFar8dZbbyE1NfWRtcfuu3v3LlJSUtDZ2QkHBwdERkYiOzvbaP6/az4wxhgzjLfbMcYYY4wxxpgeDgHOGGOMMcYYY3p4kcQYY4wxxhhjeniRxBhjjDHGGGN6eJHEGGOMMcYYY3p4kcQYY4wxxhhjeniRxBhjjDHGGGN6eJHEGGOMMcYYY3p4kcQYY4wxxhhjeniRxBhjjDHGGGN6/gXl42vArkIMrQAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.scatter(X_test, y_test, color='red')\n", + "plt.plot(X_test, y_pred, color='green', linewidth=3)\n", + "plt.xlabel(f\"{columns[columnNumber]}\")\n", + "plt.ylabel(\"Disease Progression\")\n", + "plt.title(f\"A Graph Plot Showing Diabetes Progression Against {columns[columnNumber]}\")\n", + "plt.show()" ] } ], From bb40b8823f411d2b05e8a5a353f3c9e7f79c97d7 Mon Sep 17 00:00:00 2001 From: Alvin Date: Sat, 17 Aug 2024 18:09:01 +0100 Subject: [PATCH 3/6] linnerud dataset modelled by linear regression --- 2-Regression/1-Tools/assignment.ipynb | 625 ++++++++++++++++++++++++++ 2-Regression/1-Tools/notebook.ipynb | 16 +- 2 files changed, 633 insertions(+), 8 deletions(-) create mode 100644 2-Regression/1-Tools/assignment.ipynb diff --git a/2-Regression/1-Tools/assignment.ipynb b/2-Regression/1-Tools/assignment.ipynb new file mode 100644 index 0000000000..ab05d95cad --- /dev/null +++ b/2-Regression/1-Tools/assignment.ipynb @@ -0,0 +1,625 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Importing necessary libraries" + ] + }, + { + "cell_type": "code", + "execution_count": 135, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "from sklearn import datasets, linear_model, model_selection" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Data processing" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(20, 3)\n", + "(20, 3)\n", + "[[191. 36. 50.]\n", + " [189. 37. 52.]\n", + " [193. 38. 58.]\n", + " [162. 35. 62.]\n", + " [189. 35. 46.]\n", + " [182. 36. 56.]\n", + " [211. 38. 56.]\n", + " [167. 34. 60.]\n", + " [176. 31. 74.]\n", + " [154. 33. 56.]\n", + " [169. 34. 50.]\n", + " [166. 33. 52.]\n", + " [154. 34. 64.]\n", + " [247. 46. 50.]\n", + " [193. 36. 46.]\n", + " [202. 37. 62.]\n", + " [176. 37. 54.]\n", + " [157. 32. 52.]\n", + " [156. 33. 54.]\n", + " [138. 33. 68.]]\n", + "[[ 5. 162. 60.]\n", + " [ 2. 110. 60.]\n", + " [ 12. 101. 101.]\n", + " [ 12. 105. 37.]\n", + " [ 13. 155. 58.]\n", + " [ 4. 101. 42.]\n", + " [ 8. 101. 38.]\n", + " [ 6. 125. 40.]\n", + " [ 15. 200. 40.]\n", + " [ 17. 251. 250.]\n", + " [ 17. 120. 38.]\n", + " [ 13. 210. 115.]\n", + " [ 14. 215. 105.]\n", + " [ 1. 50. 50.]\n", + " [ 6. 70. 31.]\n", + " [ 12. 210. 120.]\n", + " [ 4. 60. 25.]\n", + " [ 11. 230. 80.]\n", + " [ 15. 225. 73.]\n", + " [ 2. 110. 43.]]\n" + ] + } + ], + "source": [ + "XColumns= [\"weight\", \"waist\", \"pulse\"]\n", + "yColumns = [\"chins\", \"situps\", \"jumps\"]\n", + "columnNumber = 0\n", + "targetColumnNumber = 1\n", + "y,X = datasets.load_linnerud(return_X_y= True)\n", + "print(X.shape)\n", + "print(y.shape)\n", + "print(X)\n", + "print(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 137, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(20,)\n", + "(20, 1)\n", + "(20,)\n", + "(20, 1)\n" + ] + } + ], + "source": [ + "\n", + "X= X[:,columnNumber]\n", + "print(X.shape)\n", + "X = X.reshape((-1,1))\n", + "print(X.shape)\n", + "\n", + "y = y[:,targetColumnNumber]\n", + "print(y.shape)\n", + "y= y.reshape((-1,1))\n", + "print(y.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Splitting training and test data and training the model" + ] + }, + { + "cell_type": "code", + "execution_count": 138, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
LinearRegression()
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
" + ], + "text/plain": [ + "LinearRegression()" + ] + }, + "execution_count": 138, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X_train, X_test, y_train, y_test = model_selection.train_test_split(X, y, train_size=0.75)\n", + "model = linear_model.LinearRegression()\n", + "model.fit(X_train, y_train)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Predicting, Plotting the data and determining accuracy" + ] + }, + { + "cell_type": "code", + "execution_count": 139, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 139, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAHHCAYAAABZbpmkAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABXiklEQVR4nO3dd3gU5f428HvT+6aQSiqdUAJESjQNiIQiLaAiyAEOCmpCVUSs4A9FUKR4EOyIBPHAoYkKBJJAgNBBpRNIQkijppP+vH/kzciSDWmb7Ga4P9e1F+zM7Mx3JtndO888z4xCCCFAREREJFN62i6AiIiIqDEx7BAREZGsMewQERGRrDHsEBERkawx7BAREZGsMewQERGRrDHsEBERkawx7BAREZGsMewQERGRrDHsUJOaP38+FAoFbt++3STb0SUTJ06EhYWFtstAbGwsFAoFYmNjtV2KVnh6emLixInS88Y4HgqFAvPnz9fY+hrD8ePH8eSTT8Lc3BwKhQJnzpyp97p08f1WG031edTYHv6drutrn3nmGc0WpIMYdnTUl19+CYVCgd69e9fr9b/++iuGDh0KR0dHGBkZwdbWFoGBgVi6dClycnI0XG3TmThxIhQKhfSwsrKCj48Pli5diqKiIo1s48svv8TatWtrvXxeXh4++OADdO7cGebm5rCzs0O3bt0wY8YMpKWlaaQmuVi7dq3Kz8/ExATt2rVDREQEMjMztV1enfz+++86H2iqU1JSgmeffRZ3797FsmXL8NNPP8HDw0Oj2/j444+xbds2ja6TtOf8+fOYP38+kpKStF1KvRhouwBSLzIyEp6enjh27BgSEhLQpk2bWr2uvLwckydPxtq1a9GlSxe89tprcHNzQ25uLuLj4/Huu+/i999/x759+xp5DxqPsbExvv32WwBAVlYW/ve//+GNN97A8ePHsXHjxgav/8svv0SLFi1q9ZdSSUkJAgMDcfHiRUyYMAHTpk1DXl4ezp07hw0bNmDkyJFwcXFpcE2aFBgYiPv378PIyEhrNXz44Yfw8vJCYWEhDh48iNWrV+P333/H2bNnYWZm1qS11Pd4/P7771i1apXawHP//n0YGOjux+vVq1eRnJyMb775Bi+99FKD1/fuu+/irbfeUpn28ccfY/To0RgxYkSD10+PdunSJejpNW7bxfnz57FgwQIEBwfD09OzUbfVGHT33fgYS0xMxOHDh7FlyxZMnToVkZGR+OCDD2r12iVLlmDt2rWYNWsWli5dqtK0PGPGDKSnp2PdunWPXEd5eTmKi4thYmLSoP1oLAYGBnjxxRel56+99hp69+6NX375BZ9//nmThott27bh9OnTiIyMxNixY1XmFRYWori4uMlqqS09PT2t/2wHDRqEJ554AgDw0ksvwc7ODp9//jm2b9+OF154Qe1r8vPzYW5urvFaGuN4aPv41uTmzZsAAGtra42sz8DAQKfDndwZGxtruwSdx9NYOigyMhI2NjYYMmQIRo8ejcjIyFq9rqCgAIsXL0anTp3w6aefqj2H7uzsjLlz56pMUygUiIiIQGRkJDp16gRjY2Ps2rULAPDZZ5/hySefhJ2dHUxNTeHr64vNmzdXWe+D62jfvj1MTEzg6+uLAwcOqK01KysLEydOhLW1NZRKJSZNmoSCgoJa7efD9PT0EBwcDACPbGItLS3F//3f/6F169YwNjaGp6cn3n77bZXTX56enjh37hz2798vnWqpXLc6V69eBQA89dRTVeaZmJjAysqqyvTU1FSMGDECFhYWsLe3xxtvvIGysjKVZfLz8/H666/Dzc0NxsbGaN++PT777DMIIaRlwsLC0KNHD5XXDR06FAqFAjt27JCmHT16FAqFAn/88QcA9X1UgoOD0blzZ5w/fx59+/aFmZkZWrZsiSVLllSpPzk5GcOGDYO5uTkcHBwwa9Ys7N69u0H9Xvr16wegIugD//Rvunr1KgYPHgxLS0uMGzcOQEUYX758OTp16gQTExM4Ojpi6tSpuHfvnso6hRBYuHAhXF1dYWZmhr59++LcuXNVtl1dn52jR49i8ODBsLGxgbm5Obp27YoVK1ZI9a1atQoAVE7LVVLXZ+f06dMYNGgQrKysYGFhgf79++PIkSMqy1Se5jt06BBmz54Ne3t7mJubY+TIkbh161atjmV0dDQCAgJgbm4Oa2trDB8+HBcuXJDmT5w4EUFBQQCAZ599tsbf8ZKSEixYsABt27aFiYkJ7Ozs4O/vj6ioKGmZh/vsKBQK5Ofn48cff5SOTWVL6cSJE9W2DKjr91Pbz5Xc3FzMnDkTnp6eMDY2hoODA55++mmcOnWqVsfs9u3beO6552BlZQU7OzvMmDEDhYWF0vygoCD4+PiofW379u0RGhpa7bpnz54NOzs7lffutGnToFAosHLlSmlaZmYmFAoFVq9eLU0rKirCBx98gDZt2sDY2Bhubm548803q5yyV9dn56+//kJQUBBMTU3h6uqKhQsX4ocffoBCoVD7OXnw4EH06tULJiYmaNWqlcofxWvXrsWzzz4LAOjbt6/0M21O/f4YxXVQZGQkwsLCYGRkhBdeeAGrV6/G8ePH0bNnz0e+7uDBg8jKysIbb7wBfX39Om0zOjoa//3vfxEREYEWLVpIH0YrVqzAsGHDMG7cOBQXF2Pjxo149tlnsXPnTgwZMkRlHfv378cvv/yC6dOnw9jYGF9++SUGDhyIY8eOoXPnzirLPvfcc/Dy8sKiRYtw6tQpfPvtt3BwcMDixYvrVHelytBhZ2dX7TIvvfQSfvzxR4wePRqvv/46jh49ikWLFuHChQvYunUrAGD58uWYNm0aLCws8M477wAAHB0dq11nZT+HdevW4d13362xk2ZZWRlCQ0PRu3dvfPbZZ9i7dy+WLl2K1q1b49VXXwVQ8SU9bNgwxMTEYPLkyejWrRt2796NOXPmIDU1FcuWLQMABAQEYPv27cjJyYGVlRWEEDh06BD09PQQFxeHYcOGAQDi4uKgp6enNpA96N69exg4cCDCwsLw3HPPYfPmzZg7dy66dOmCQYMGAagIYf369UN6ejpmzJgBJycnbNiwATExMY9cd03U/fxKS0sRGhoKf39/fPbZZ9LpralTp2Lt2rWYNGkSpk+fjsTERPznP//B6dOncejQIRgaGgIA3n//fSxcuBCDBw/G4MGDcerUKQwYMKBWrW1RUVF45pln4OzsLO3nhQsXsHPnTsyYMQNTp05FWloaoqKi8NNPP9W4vnPnziEgIABWVlZ48803YWhoiK+++grBwcHYv39/lb5506ZNg42NDT744AMkJSVh+fLliIiIwC+//PLI7ezduxeDBg1Cq1atMH/+fNy/fx9ffPEFnnrqKZw6dQqenp6YOnUqWrZsiY8//hjTp09Hz549H/k7Pn/+fCxatAgvvfQSevXqhZycHJw4cQKnTp3C008/rfY1P/30k7T8lClTAACtW7eu8TipU5vPlVdeeQWbN29GREQEvL29cefOHRw8eBAXLlyo8geBOs899xw8PT2xaNEiHDlyBCtXrsS9e/ekL/zx48fj5ZdfxtmzZ1U+y44fP47Lly/j3XffrXbdAQEBWLZsGc6dOye9tvI9GRcXh+nTp0vTgIrTqkBFqB82bBgOHjyIKVOmoGPHjvj777+xbNkyXL58+ZH9oVJTU6VQMm/ePJibm+Pbb7+ttgUoISEBo0ePxuTJkzFhwgR8//33mDhxInx9fdGpUycEBgZi+vTpWLlyJd5++2107NgRAKR/mwVBOuXEiRMCgIiKihJCCFFeXi5cXV3FjBkzanztihUrBACxbds2lemlpaXi1q1bKo/y8nJpPgChp6cnzp07V2WdBQUFKs+Li4tF586dRb9+/VSmAxAAxIkTJ6RpycnJwsTERIwcOVKa9sEHHwgA4t///rfK60eOHCns7Oxq3McJEyYIc3NzaT8SEhLExx9/LBQKhejatWuV7VQ6c+aMACBeeukllfW98cYbAoCIjo6WpnXq1EkEBQXVWIsQFcenffv2AoDw8PAQEydOFN99953IzMxUWzsA8eGHH6pM7969u/D19ZWeb9u2TQAQCxcuVFlu9OjRQqFQiISEBCGEEMePHxcAxO+//y6EEOKvv/4SAMSzzz4revfuLb1u2LBhonv37tLzmJgYAUDExMRI04KCggQAsW7dOmlaUVGRcHJyEqNGjZKmLV26tMrv2P3790WHDh2qrFOdH374QQAQe/fuFbdu3RIpKSli48aNws7OTpiamoobN26oHKu33npL5fVxcXECgIiMjFSZvmvXLpXpN2/eFEZGRmLIkCEqv+tvv/22ACAmTJhQ7fEoLS0VXl5ewsPDQ9y7d09lOw+uKzw8XFT3EQpAfPDBB9LzESNGCCMjI3H16lVpWlpamrC0tBSBgYFVjk9ISIjKtmbNmiX09fVFVlaW2u1V6tatm3BwcBB37tyRpv35559CT09P/Otf/6qyz5s2bXrk+oQQwsfHRwwZMuSRyzz8fhNCCHNzc5XjXGnChAnCw8OjVuuo7eeKUqkU4eHhNe5LddscNmyYyvTXXntNABB//vmnEEKIrKwsYWJiIubOnauy3PTp04W5ubnIy8urdhs3b94UAMSXX34prUtPT088++yzwtHRUWVdtra20s/9p59+Enp6eiIuLk5lfWvWrBEAxKFDh6RpHh4eKsd62rRpQqFQiNOnT0vT7ty5I2xtbQUAkZiYqPJaAOLAgQMqNRsbG4vXX39dmrZp06Zavcd1FU9j6ZjIyEg4Ojqib9++ACqacZ9//nls3LixyqmOh1WOsnp4ePPff/8Ne3t7lcedO3dUlgkKCoK3t3eVdZqamkr/v3fvHrKzsxEQEKC2edjPzw++vr7Sc3d3dwwfPhy7d++uUvsrr7yi8jwgIAB37typ1Uix/Px8aT/atGmDt99+G35+flLrjDq///47gIom5Qe9/vrrAIDffvutxu2qY2pqiqNHj2LOnDkAKpp7J0+eDGdnZ0ybNk3tCDF1+37t2jWVWvX19aW/+B6sVQghnY7q3r07LCwspCb9uLg4uLq64l//+hdOnTqFgoICCCFw8OBBBAQE1LgvFhYWKn2hjIyM0KtXL5Xadu3ahZYtW0qtRkDF6bqXX365xvU/KCQkBPb29nBzc8OYMWNgYWGBrVu3omXLlirLVbZ2Vdq0aROUSiWefvpp3L59W3r4+vrCwsJCamHau3cviouLpdMFlWbOnFljbadPn0ZiYiJmzpxZpU9LfYZXl5WVYc+ePRgxYgRatWolTXd2dsbYsWNx8ODBKr/3U6ZMUdlWQEAAysrKkJycXO120tPTcebMGUycOBG2trbS9K5du+Lpp5+W3gN1ZW1tjXPnzuHKlSv1en1D1eZzxdraGkePHq336Mfw8HCV59OmTQPwz+eGUqnE8OHD8fPPP0uno8rKyvDLL79gxIgRj+xLZm9vjw4dOkjv00OHDkFfXx9z5sxBZmamdFzj4uLg7+8v/dw3bdqEjh07okOHDiq/65WnfB/Vmrpr1y74+fmhW7du0jRbW1vpVPDDvL29VT4j7O3t0b59e5X3fnPHsKNDysrKsHHjRvTt2xeJiYlISEhAQkICevfujczMzBpHUFlaWgKoGAr9oDZt2iAqKgpRUVEYP3682td6eXmpnb5z50706dMHJiYmsLW1hb29PVavXo3s7Owqy7Zt27bKtHbt2qGgoKBKfwN3d3eV5zY2NgBQpd+FOiYmJtL+HDhwACkpKTh06JDKF8nDkpOToaenV2VUm5OTE6ytrR/5JVITpVKJJUuWICkpCUlJSfjuu+/Qvn17/Oc//8H//d//Vand3t5eZZqNjY3KficnJ8PFxUX6eVaqbDKurFVfXx9+fn5S83dcXBwCAgLg7++PsrIyHDlyBOfPn8fdu3drFXZcXV2rfJmrq61169ZVlqvtaMFKq1atQlRUFGJiYnD+/Hlcu3atSr8HAwMDuLq6qky7cuUKsrOz4eDgUCXA5+XlSR1vK4/Rw7+T9vb20u9adSpPqT186rW+bt26hYKCArRv377KvI4dO6K8vBwpKSkq0+vz/qjc5+q2c/v2beTn59e5/g8//BBZWVlo164dunTpgjlz5uCvv/6q83rqqzafK0uWLMHZs2fh5uaGXr16Yf78+XX6on54G61bt4aenp5K35Z//etfuH79uvR+27t3LzIzM6v9TH1QQECAyvv0iSeewBNPPAFbW1vExcUhJycHf/75p8r79MqVKzh37lyV3/N27doB+KeTuTrJyclq35PVvU8f/n0Dqr73mzv22dEh0dHRSE9Px8aNG9UOoY6MjMSAAQOqfX2HDh0AAGfPnsXw4cOl6RYWFggJCQFQ0a9HnQdbcCpV9vsIDAzEl19+CWdnZxgaGuKHH37Ahg0b6rRvD6uuT5F4oBPfo15buT911dgXPvPw8MC///1vjBw5Eq1atUJkZCQWLlwoza9rX6qa+Pv746OPPkJhYSHi4uLwzjvvwNraGp07d0ZcXJzUF6M2YachP5O66tWrlzQaqzrGxsZVhtOWl5fDwcGh2k77DwfJ5qopfxY1CQwMxNWrV7F9+3bs2bMH3377LZYtW4Y1a9bUa9h6de/BmlquH+W5555DQEAAtm7dij179uDTTz/F4sWLsWXLFqm/WUNrDA0NhaOjI9avX4/AwECsX78eTk5Otfos8vf3xzfffINr165Jf5QoFAr4+/sjLi4OLi4uKC8vV3mflpeXo0uXLvj888/VrtPNza3O+1UdXfp9aywMOzokMjISDg4O0iiPB23ZsgVbt27FmjVr1AYToOILTalUYuPGjZg3b16Dr7vwv//9DyYmJti9e7dKx7YffvhB7fLqmrkvX74MMzMzrX8JeXh4oLy8HFeuXFHpVJeZmYmsrCyVC6ppIhDZ2NigdevWOHv2bL1q3bt3L3Jzc1Vady5evCjNrxQQEIDi4mL8/PPPSE1NlT4sAwMDpbDTrl27R3ZArWtt58+fhxBC5TglJCRoZP01ad26Nfbu3Yunnnqq2vcB8M8xunLlikqL361bt2r8a7WyI+3Zs2cf+UVW298Te3t7mJmZ4dKlS1XmXbx4EXp6ehr54qrc5+q206JFi3oP3be1tcWkSZMwadIk5OXlITAwEPPnz39k2Knu+NjY2CArK6vK9OpaV2v7ueLs7IzXXnsNr732Gm7evIkePXrgo48+qlXYuXLlikrrdkJCAsrLy1VGjenr62Ps2LFYu3YtFi9ejG3btuHll1+u1R8wle/LqKgoHD9+XLomUWBgIFavXg0XFxeYm5urnK5r3bo1/vzzT/Tv37/On0keHh5q35MNeZ82xytkP4insXTE/fv3sWXLFjzzzDMYPXp0lUdERARyc3NVhhQ/zMzMDG+++SbOnj2Lt956S20qr0tS19fXh0KhUPmLKykpqdpRAPHx8Sp9eVJSUrB9+3YMGDBA4y0adTV48GAAFaOtHlT5V9ODI8vMzc3Vfhir8+eff6q91HxycjLOnz+v9pRCbWotKyvDf/7zH5Xpy5Ytg0KhUPnw7t27NwwNDbF48WLY2tqiU6dOACo+XI8cOYL9+/fXqlWntkJDQ5Gamqrye1hYWIhvvvlGY9t4lOeeew5lZWVVTg8CFaO3Kn9uISEhMDQ0xBdffKHyO//wz1+dHj16wMvLC8uXL6/ye/DguiqDQ02/K/r6+hgwYAC2b9+uclokMzMTGzZsgL+/v9pLFNSVs7MzunXrhh9//FGlprNnz2LPnj3Se6CuHu7fZ2FhgTZt2tR4xfLq3ketW7dGdna2yqmw9PT0avvc1fS5UlZWVuW0uoODA1xcXGp9VfWH/8D84osvAKBKUBo/fjzu3buHqVOnIi8vT6WP26N4eXmhZcuWWLZsGUpKSqSRkQEBAbh69So2b96MPn36qFyr6LnnnkNqaqra99b9+/cfeUoyNDQU8fHxKrcAuXv3bq0vY6JObX/fdRVbdnTEjh07kJubq9Lx80F9+vSBvb09IiMj8fzzz1e7nrfeegsXLlzAp59+ij179mDUqFFwdXXFvXv3cOrUKWzatAkODg61uujZkCFD8Pnnn2PgwIEYO3Ysbt68iVWrVqFNmzZqz9l37twZoaGhKkNEAWDBggW1PAqNx8fHBxMmTMDXX3+NrKwsBAUF4dixY/jxxx8xYsQIqUM4APj6+mL16tVYuHAh2rRpAwcHB6lT4MOioqLwwQcfYNiwYejTpw8sLCxw7do1fP/99ygqKqrX7QSGDh2Kvn374p133kFSUhJ8fHywZ88ebN++HTNnzlQZwmtmZgZfX18cOXJEusYOUPEXY35+PvLz8zUadqZOnYr//Oc/eOGFFzBjxgw4OzsjMjJS+n1q7L/+goKCMHXqVCxatAhnzpzBgAEDYGhoiCtXrmDTpk1YsWIFRo8eLV2/aNGiRXjmmWcwePBgnD59Gn/88QdatGjxyG3o6elh9erVGDp0KLp164ZJkybB2dkZFy9exLlz57B7924AkP4Knz59OkJDQ6Gvr48xY8aoXefChQsRFRUFf39/vPbaazAwMMBXX32FoqIitdcyqq9PP/0UgwYNgp+fHyZPniwNPVcqlfW+tYW3tzeCg4Ph6+sLW1tbnDhxQhrm/Si+vr7Yu3evdKFPLy8v9O7dG2PGjMHcuXMxcuRITJ8+HQUFBVi9ejXatWunduBDTZ8rubm5cHV1xejRo+Hj4wMLCwvs3bsXx48fx9KlS2u1j4mJiRg2bBgGDhyI+Ph4rF+/HmPHjq1ybZ3u3bujc+fOUufh2gxrrxQQEICNGzeiS5cuUh+sHj16wNzcHJcvX65yUdLx48fjv//9L1555RXExMTgqaeeQllZGS5evIj//ve/2L17d7Wngt98802sX78eTz/9NKZNmyYNPXd3d8fdu3fr9T7t1q0b9PX1sXjxYmRnZ8PY2Bj9+vWDg4NDndelFdoZBEYPGzp0qDAxMRH5+fnVLjNx4kRhaGgobt++XeP6tm7dKgYPHizs7e2FgYGBsLa2Fv7+/uLTTz+tMnwVQLXDNr/77jvRtm1bYWxsLDp06CB++OGHaoeIhoeHi/Xr10vLd+/evcowxcrX3rp1S2V65ZDbB4dEqlM59Lwm6mosKSkRCxYsEF5eXsLQ0FC4ubmJefPmicLCQpXlMjIyxJAhQ4SlpaUA8Mhh6NeuXRPvv/++6NOnj3BwcBAGBgbC3t5eDBkyRGU4+6NqV1drbm6umDVrlnBxcRGGhoaibdu24tNPP1UZjlxpzpw5AoBYvHixyvQ2bdoIACrDnYWofuh5p06dqqxb3TDha9euiSFDhghTU1Nhb28vXn/9dfG///1PABBHjhxRe5wqVf6cjx8//sjlavo5f/3118LX11eYmpoKS0tL0aVLF/Hmm2+KtLQ0aZmysjKxYMEC4ezsLExNTUVwcLA4e/ZslWG66o6HEEIcPHhQPP3008LS0lKYm5uLrl27ii+++EKaX1paKqZNmybs7e2FQqFQ+RnioaHnQghx6tQpERoaKiwsLISZmZno27evOHz4cK2OT3U1qrN3717x1FNPCVNTU2FlZSWGDh0qzp8/r3Z9tRl6vnDhQtGrVy9hbW0tTE1NRYcOHcRHH30kiouLpWXU/Q5fvHhRBAYGClNT0yrD/ffs2SM6d+4sjIyMRPv27cX69evr/blSVFQk5syZI3x8fKSflY+PjzTU+1Eqt3n+/HkxevRoYWlpKWxsbERERIS4f/++2tcsWbJEABAff/xxjet/0KpVqwQA8eqrr6pMDwkJEQDEvn37qrymuLhYLF68WHTq1EkYGxsLGxsb4evrKxYsWCCys7Ol5R7+nRZCiNOnT4uAgABhbGwsXF1dxaJFi8TKlSsFAJGRkaHyWnWXFggKCqry2ffNN9+IVq1aCX19/WY3DF0hhIx6IJHWKBQKhIeHVzn1Qo+H5cuXY9asWbhx40aV4eNE9aWLnysrVqzArFmzkJSUpHYUky6bOXMmvvrqK+Tl5Wm9a0FTY58dIqqT+/fvqzwvLCzEV199hbZt2zLokKwJIfDdd98hKChI54POw+/TO3fu4KeffoK/v/9jF3QA9tkhojoKCwuDu7s7unXrhuzsbKxfvx4XL15sUOdHIl2Wn5+PHTt2ICYmBn///Te2b9+u7ZJq5Ofnh+DgYHTs2BGZmZn47rvvkJOTg/fee0/bpWkFww4R1UloaCi+/fZbREZGoqysDN7e3ti4ceMjO84TNWe3bt3C2LFjYW1tjbfffrvagSS6ZPDgwdi8eTO+/vprKBQK9OjRA9999510763HDfvsEBERkayxzw4RERHJGsMOERERyRr77KDiHiRpaWmwtLRs9pfEJiIielwIIZCbmwsXF5dH3iKJYQdAWlqaRm+qRkRERE0nJSUFrq6u1c5n2AGkmy2mpKRo5B41RERE1PhycnLg5uamctNkdRh28M/9fKysrBh2iIiImpmauqCwgzIRERHJGsMOERERyRrDDhEREckaww4RERHJGsMOERERyRrDDhEREckaww4RERHJGsMOERERyRrDDhEREckar6Cs68rKgLg4ID0dcHYGAgIAfX1tV0VERNRsMOzosi1bgBkzgBs3/pnm6gqsWAGEhWmvLiIiomaEp7F01ZYtwOjRqkEHAFJTK6Zv2aKduoiIiJoZhh1dVFZW0aIjRNV5ldNmzqxYjoiIiB6JYUcXxcVVbdF5kBBASkrFckRERPRIDDu6KD1ds8sRERE9xhh2dJGzs2aXIyIieowx7OiigICKUVcKhfr5CgXg5laxHBERET0Sw44u0tevGF4OVA08lc+XL+f1doiIiGqBYUdXhYUBmzcDLVuqTnd1rZjO6+wQERHVCi8qqMvCwoDhw3kFZSIiogZg2NF1+vpAcLC2qyAiImq2eBqLiIiIZI0tO42FN/AkIiLSCQw7jYE38CQiItIZPI2labyBJxERkU5h2NEk3sCTiIhI5zDsaBJv4ElERKRzGHY0iTfwJCIi0jkMO5rEG3gSERHpHIYdTeINPImIiHQOw44m8QaeREREOodhR9N4A08iIiKdwosKNgbewJOIiEhnMOw0Ft7Ak4iISCfwNBYRERHJGsMOERERyZpWw86iRYvQs2dPWFpawsHBASNGjMClS5ek+Xfv3sW0adPQvn17mJqawt3dHdOnT0d2drbKeq5fv44hQ4bAzMwMDg4OmDNnDkpLS5t6d4iIiEgHaTXs7N+/H+Hh4Thy5AiioqJQUlKCAQMGID8/HwCQlpaGtLQ0fPbZZzh79izWrl2LXbt2YfLkydI6ysrKMGTIEBQXF+Pw4cP48ccfsXbtWrz//vva2i0iIiLSIQoh1N21Ujtu3boFBwcH7N+/H4GBgWqX2bRpE1588UXk5+fDwMAAf/zxB5555hmkpaXB0dERALBmzRrMnTsXt27dgpGRUY3bzcnJgVKpRHZ2NqysrDS6T0RERNQ4avv9rVN9dipPT9na2j5yGSsrKxgYVAwki4+PR5cuXaSgAwChoaHIycnBuXPn1K6jqKgIOTk5Kg8iIiKSJ50JO+Xl5Zg5cyaeeuopdO7cWe0yt2/fxv/93/9hypQp0rSMjAyVoANAep6RkaF2PYsWLYJSqZQebm5uGtoLIiIi0jU6E3bCw8Nx9uxZbNy4Ue38nJwcDBkyBN7e3pg/f36DtjVv3jxkZ2dLj5SUlAatj4iIiHSXTlxUMCIiAjt37sSBAwfg6upaZX5ubi4GDhwIS0tLbN26FYaGhtI8JycnHDt2TGX5zMxMaZ46xsbGMDY21uAeEBERka7SasuOEAIRERHYunUroqOj4eXlVWWZnJwcDBgwAEZGRtixYwdMTExU5vv5+eHvv//GzZs3pWlRUVGwsrKCt7d3o+8DERER6TattuyEh4djw4YN2L59OywtLaU+NkqlEqamplLQKSgowPr161U6E9vb20NfXx8DBgyAt7c3xo8fjyVLliAjIwPvvvsuwsPD2XpDRERE2h16rlAo1E7/4YcfMHHiRMTGxqJv375ql0lMTISnpycAIDk5Ga+++ipiY2Nhbm6OCRMm4JNPPpFGbNWEQ8+JiIian9p+f+vUdXa0hWGHiIio+WmW19khIiIi0jSGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1A20XQEQ6pKwMiIsD0tMBZ2cgIADQ19d2VUREDcKwQ0QVtmwBZswAbtz4Z5qrK7BiBRAWpr26iIgaiKexiKgi6IwerRp0ACA1tWL6li3aqYuISAMYdoged2VlFS06QlSdVzlt5syK5YiImiGGHaLHXVxc1RadBwkBpKRULEdE1Awx7BA97tLTNbscEZGOYdghetw5O2t2OSIiHcOwQ/S4CwioGHWlUKifr1AAbm4VyxERNUMMO0SPO339iuHlQNXAU/l8+XJeb4eImi2GHSKquI7O5s1Ay5aq011dK6bzOjtE1IzxooJEVCEsDBg+nFdQJiLZYdghon/o6wPBwdqugohIo3gai4iIiGSNYYeIiIhkjWGHiIiIZI1hh4iIiGSNYYeIiIhkjWGHiIiIZI1hh4iIiGSNYYeIiIhkjWGHiIiIZI1hh4iIiGSNYYeIiIhkjWGHiIiIZI1hh4iIiGSNYYeIiIhkzUDbBRAREdVbWRkQFwekpwPOzkBAAKCvr+2qSMdotWVn0aJF6NmzJywtLeHg4IARI0bg0qVLKssUFhYiPDwcdnZ2sLCwwKhRo5CZmamyzPXr1zFkyBCYmZnBwcEBc+bMQWlpaVPuChERNbUtWwBPT6BvX2Ds2Ip/PT0rphM9QKthZ//+/QgPD8eRI0cQFRWFkpISDBgwAPn5+dIys2bNwq+//opNmzZh//79SEtLQ1hYmDS/rKwMQ4YMQXFxMQ4fPowff/wRa9euxfvvv6+NXSIioqawZQswejRw44bq9NTUiukMPPQAhRBCaLuISrdu3YKDgwP279+PwMBAZGdnw97eHhs2bMDo0aMBABcvXkTHjh0RHx+PPn364I8//sAzzzyDtLQ0ODo6AgDWrFmDuXPn4tatWzAyMqpxuzk5OVAqlcjOzoaVlVWj7iMRETVQWVlFC87DQaeSQgG4ugKJiTylJXO1/f7WqQ7K2dnZAABbW1sAwMmTJ1FSUoKQkBBpmQ4dOsDd3R3x8fEAgPj4eHTp0kUKOgAQGhqKnJwcnDt3Tu12ioqKkJOTo/IgIqJmIi6u+qADAEIAKSkVyxFBh8JOeXk5Zs6ciaeeegqdO3cGAGRkZMDIyAjW1tYqyzo6OiIjI0Na5sGgUzm/cp46ixYtglKplB5ubm4a3hsiImo06emaXY5kT2fCTnh4OM6ePYuNGzc2+rbmzZuH7Oxs6ZGSktLo2yQiIg1xdtbsciR7OhF2IiIisHPnTsTExMDV1VWa7uTkhOLiYmRlZaksn5mZCScnJ2mZh0dnVT6vXOZhxsbGsLKyUnkQEVEzERBQ0SdHoVA/X6EA3NwqliOClsOOEAIRERHYunUroqOj4eXlpTLf19cXhoaG2LdvnzTt0qVLuH79Ovz8/AAAfn5++Pvvv3Hz5k1pmaioKFhZWcHb27tpdoSIiJqOvj6wYkXF/x8OPJXPly9n52SSaDXshIeHY/369diwYQMsLS2RkZGBjIwM3L9/HwCgVCoxefJkzJ49GzExMTh58iQmTZoEPz8/9OnTBwAwYMAAeHt7Y/z48fjzzz+xe/duvPvuuwgPD4exsbE2d4+IiBpLWBiweTPQsqXqdFfXiukPXKKESKtDzxXVNEH+8MMPmDhxIoCKiwq+/vrr+Pnnn1FUVITQ0FB8+eWXKqeokpOT8eqrryI2Nhbm5uaYMGECPvnkExgY1O4C0Rx6TkTUTPEKyo+12n5/69R1drSFYYeIiKj5aZbX2SEiIiLSNIYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWthp0DBw5g6NChcHFxgUKhwLZt21Tm5+XlISIiAq6urjA1NYW3tzfWrFmjskxhYSHCw8NhZ2cHCwsLjBo1CpmZmU24F0RERKTLtBp28vPz4ePjg1WrVqmdP3v2bOzatQvr16/HhQsXMHPmTERERGDHjh3SMrNmzcKvv/6KTZs2Yf/+/UhLS0NYWFhT7QIRERHpOIUQQmi7CABQKBTYunUrRowYIU3r3Lkznn/+ebz33nvSNF9fXwwaNAgLFy5EdnY27O3tsWHDBowePRoAcPHiRXTs2BHx8fHo06dPrbadk5MDpVKJ7OxsWFlZaXS/iIiIqHHU9vtbp/vsPPnkk9ixYwdSU1MhhEBMTAwuX76MAQMGAABOnjyJkpIShISESK/p0KED3N3dER8fX+16i4qKkJOTo/IgIiIiedLpsPPFF1/A29sbrq6uMDIywsCBA7Fq1SoEBgYCADIyMmBkZARra2uV1zk6OiIjI6Pa9S5atAhKpVJ6uLm5NeZuEBERkRbpfNg5cuQIduzYgZMnT2Lp0qUIDw/H3r17G7TeefPmITs7W3qkpKRoqGIiIiLSNQbaLqA69+/fx9tvv42tW7diyJAhAICuXbvizJkz+OyzzxASEgInJycUFxcjKytLpXUnMzMTTk5O1a7b2NgYxsbGjb0LREREpAN0tmWnpKQEJSUl0NNTLVFfXx/l5eUAKjorGxoaYt++fdL8S5cu4fr16/Dz82vSeomIiEg3abVlJy8vDwkJCdLzxMREnDlzBra2tnB3d0dQUBDmzJkDU1NTeHh4YP/+/Vi3bh0+//xzAIBSqcTkyZMxe/Zs2NrawsrKCtOmTYOfn1+tR2IRERGRvGl16HlsbCz69u1bZfqECROwdu1aZGRkYN68edizZw/u3r0LDw8PTJkyBbNmzYJCoQBQcVHB119/HT///DOKiooQGhqKL7/88pGnsR7GoedERETNT22/v3XmOjvaxLBDRETU/MjiOjtEREREDcWwQ0RERLLGsENERESyxrBDREREssawQ0RERLLGsENERESyxrBDREREssawQ0RERLLGsENERESyxrBDREREssawQ0RERLLGsENERESyxrBDREREslavsJOSkoIbN25Iz48dO4aZM2fi66+/1lhhRERERJpQr7AzduxYxMTEAAAyMjLw9NNP49ixY3jnnXfw4YcfarRAIiIiooaoV9g5e/YsevXqBQD473//i86dO+Pw4cOIjIzE2rVrNVkfERERUYPUK+yUlJTA2NgYALB3714MGzYMANChQwekp6drrjoiIiKiBqpX2OnUqRPWrFmDuLg4REVFYeDAgQCAtLQ02NnZabRAIiIiooaoV9hZvHgxvvrqKwQHB+OFF16Aj48PAGDHjh3S6S0iIiIiXaAQQoj6vLCsrAw5OTmwsbGRpiUlJcHMzAwODg4aK7Ap5OTkQKlUIjs7G1ZWVtouh4iIiGqhtt/fBvXdgL6+PkpKShAXFwcAaN++PTw9Peu7OiIiIqJGUa/TWLm5uRg/fjxatmyJoKAgBAUFoWXLlnjxxReRnZ2t6RqJiIiI6q1eYeell17C0aNHsXPnTmRlZSErKws7d+7EiRMnMHXqVE3XSERERFRv9eqzY25ujt27d8Pf319lelxcHAYOHIj8/HyNFdgU2GeHiIio+ant93e9Wnbs7OygVCqrTFcqlSodlomIiIi0rV5h591338Xs2bORkZEhTcvIyMCcOXPw3nvvaaw4IiIiooaq12ms7t27IyEhAUVFRXB3dwcAXL9+HcbGxmjbtq3KsqdOndJMpY2Ip7GIiIian0Ydej5ixIj61kVERETUpOp9UUE5YcsOERFR89OoHZSJiIiImot6ncbS09ODQqGodn5ZWVm9CyIiIiLSpHqFna1bt6o8LykpwenTp/Hjjz9iwYIFGimMiIiISBM02mdnw4YN+OWXX7B9+3ZNrbJJsM8OERFR86OVPjt9+vTBvn37NLlKIiIiogbRWNi5f/8+Vq5ciZYtW2pqlUREREQNVq8+OzY2NiodlIUQyM3NhZmZGdavX6+x4oiIiIgaql5hZ9myZSphR09PD/b29ujduzfvjUVEREQ6pV5hp1+/fnBzc1M7/Pz69evSLSSIiIiItK1efXa8vLxw69atKtPv3LkDLy+vBhdFREREpCn1CjvVjVbPy8uDiYlJgwoiIiIi0qQ6ncaaPXs2AEChUOD999+HmZmZNK+srAxHjx5Ft27dNFogERERUUPUqWXn9OnTOH36NIQQ+Pvvv6Xnp0+fxsWLF+Hj44O1a9fWen0HDhzA0KFD4eLiAoVCgW3btlVZ5sKFCxg2bBiUSiXMzc3Rs2dPXL9+XZpfWFiI8PBw2NnZwcLCAqNGjUJmZmZddouIiIhkrE4tOzExMQCASZMmYcWKFQ2+2nB+fj58fHzw73//G2FhYVXmX716Ff7+/pg8eTIWLFgAKysrnDt3TuVU2axZs/Dbb79h06ZNUCqViIiIQFhYGA4dOtSg2oiIiEgeNHq7iIZQKBTYunUrRowYIU0bM2YMDA0N8dNPP6l9TXZ2Nuzt7bFhwwaMHj0aAHDx4kV07NgR8fHx6NOnT622zdtFEBERNT+1/f6udctOWFgY1q5dCysrK7WtMA/asmVL7SutRnl5OX777Te8+eabCA0NxenTp+Hl5YV58+ZJgejkyZMoKSlBSEiI9LoOHTrA3d39kWGnqKgIRUVF0vOcnJwG10tERES6qdZ9dpRKpXRdHSsrKyiVymofmnDz5k3k5eXhk08+wcCBA7Fnzx6MHDkSYWFh2L9/PwAgIyMDRkZGsLa2Vnmto6MjMjIyql33okWLVOp1c3PTSM1ERESke2rdsvPDDz9I/1+9ejXKy8thbm4OAEhKSsK2bdvQsWNHhIaGaqSw8vJyAMDw4cMxa9YsAEC3bt1w+PBhrFmzBkFBQfVe97x586SRZUBFyw4DDxERkTzV6zo7w4cPl/rRZGVloU+fPli6dClGjBiB1atXa6SwFi1awMDAAN7e3irTO3bsKI3GcnJyQnFxMbKyslSWyczMhJOTU7XrNjY2hpWVlcqDiIiI5KleYefUqVMICAgAAGzevBmOjo5ITk7GunXrsHLlSo0UZmRkhJ49e+LSpUsq0y9fvgwPDw8AgK+vLwwNDbFv3z5p/qVLl3D9+nX4+flppA4iIiJq3up1b6yCggJYWloCAPbs2YOwsDDo6emhT58+SE5OrvV68vLykJCQID1PTEzEmTNnYGtrC3d3d8yZMwfPP/88AgMD0bdvX+zatQu//vorYmNjAVT0I5o8eTJmz54NW1tbWFlZYdq0afDz86v1SCwiIiKSt3q17LRp0wbbtm1DSkoKdu/ejQEDBgCo6FRcl1NCJ06cQPfu3dG9e3cAFVdo7t69O95//30AwMiRI7FmzRosWbIEXbp0wbfffov//e9/8Pf3l9axbNkyPPPMMxg1ahQCAwPh5OSkkdFgREREJA/1us7O5s2bMXbsWJSVlaF///7Ys2cPgIpRTgcOHMAff/yh8UIbE6+zQ0RE1PzU9vu73hcVzMjIQHp6Onx8fKCnV9FAdOzYMVhZWaFDhw71q1pLGHaIiIiaH41fVPBhTk5OVUY89erVq76rIyIiImoU9eqzQ0RERNRcMOwQERGRrDHsEBERkawx7BAREZGsMewQERGRrDHsEBERkawx7BAREZGsMewQERGRrNX7ooJUs6zCLOy9thfG+sYI8gyClTGvzkxERNTUGHYayZEbRxCyLgT5JfnVLtPPqx/6e/VHf6/+8HXxhYEefxxERESaVu97Y8lJY9wb68UtLyLy78h6v97ezB79W/VHP89+6N+qP1rZtNJIXURERHLR6PfGokdztnBu0OtvFdzCxrMbsfHsRrXzve29pVahIM8gWJtYN2h7REREcsWWHTROy869+/cwd+9cfHPqG42sr66CPYOlVqGeLj1hqG+olTqIiIgaS22/vxl20Dhh50E3cm4gOjEa+xL3IToxGjdybmh8G3Vha2ortQr18+qHNrZtoFAotFoTERFRXTHs1EFjh51HKRfl+DPjTykM7Uvch+Ky4iat4WEdWnSQWoWCPYNha2qr1XqIiIjUYdipA22GnZrkF+fj4PWDiE6MRnRSNE6kndB2SQhwD5BahXq79oaRvpG2SyIioscQw04d6HLYqUlabhpiEmOkVqHr2de1Wo+1ibXKkPp2du14ioyIiBoFw04dNOew8yjlohxnb57Fvmv7EJ0UjX3X9uF+6X2t1tTGto0UhPp69UULsxZarYeIiJovhp06kGvYqcn9kvs4nHJYahU6lnpM2yXhSbcnpf5Cfq5+MDYw1nZJRESkoxh26uBxDTs1yczLRExSDPZdqwhDiVmJWq3HwshCZRSZt703T5ERET3GGHbqgGGn7oQQOH/rvNQqFJ0YjbziPK3W1MqmldQq1M+rHxzMHbRaDxERNS6GnTpg2NG8wtJCxKfES6PIDqcc1nZJ6N2yt9Qq9KTbkzA1NNV2SURE1AAMO3XAsNP0buXfQmxSrNQylHA3Qav1mBmaqYwi6+zQmafIiIh0HMNOHTDs6BYhBC7duaQyiiy7KFurNXkoPaRWoX5e/eBs2bB7nxERUcMx7NQBw07zUlRahGOpx6RWoYPXD2q7JDzh8oTUKvSU+1MwMzTTdklERLLHsFMHDDvycqfgDmKTYqVbcFy6c0mr9RjrG1d0mvasaBXycfKBnkJPqzUREckBw04dMOw8PoQQSLiboDKK7O79u1qtydXKVaW/UEurllqth4iouWDYqQOGHapUXFaM46nHpVah/cn7tV0Sujt1l/oLBXgEwMLIQtslERHpBIadOmDYodq6d/8e9ifvlzpPn791Xqv1GOgZqLQKdXPqBn09fa3WRETUVBh26oBhhzRBCIFr965JrUL7EvfhdsFtrdbkbOEs9Rfq36o/3JXuWq2HiEiTGHbqgGGHmkJpeSlOpJ2QWoWiE6O1XRK6OnaVWoUCPQJhaWyp7ZKIiGqNYacOGHZIF2QXZuNA8gGpZejvm39rtR4FFPh66Ndob9cerWxawdnSmaPIiEinMOzUAcMONQdJWUlSEIpOjEZGXkaTbt9Y3xge1h5oZdMKXtZe8LL2qvi/TcX/bUxtmrQeIiKGnTpg2KHmrrS8FKfTT6v0FyoX5U1ag7WJdUUIsvFCK+t/QlArm1bwsPaAiYFJk9ZDRPLHsFMHDDskd7lFuYi7Hif1FzqTcabJa3CxdPmnNeihViEXSxeOIiOiOmPYqQOGHXrcXc++jpjEGKlVKC03DQDQsUVHJGYlorC0sFG3b6RvBA+lh9pWIS8bL9iY2PDGrERUBcNOHTDsEFWvXJQjMy8TiVmJuHbvGhLvJf7z/6xE3Mi50einzKyMrVRahbxs/vm/p7UnTA1NG3X7RKSbGHbqgGGHqP6Ky4pxPft6lRCUeK/i/3fu32n0GpwtnFVbgx4IRC0tW/IUGZFMMezUAcMOUePJKcpBUlaS2lahxHuJuF96v1G3b6hnCHelu9pWIS8bL9iZ2vEUGVEz1SzCzoEDB/Dpp5/i5MmTSE9Px9atWzFixAi1y77yyiv46quvsGzZMsycOVOafvfuXUybNg2//vor9PT0MGrUKKxYsQIWFrW/fxDDDpF2CCGQmZ+pGoIe+H9KTkqjnyKzNLKstlXI09oTZoZmjbp9Iqq/2n5/GzRhTVXk5+fDx8cH//73vxEWFlbtclu3bsWRI0fg4uJSZd64ceOQnp6OqKgolJSUYNKkSZgyZQo2bNjQmKUTkQYoFAo4WTjBycIJfm5+VeaXlJUgJSel2lahWwW3GlxDbnEu/sr8C39l/qV2vqO5o8rIsQcDkauVKwz0tPoxSkS1oNV36aBBgzBo0KBHLpOamopp06Zh9+7dGDJkiMq8CxcuYNeuXTh+/DieeOIJAMAXX3yBwYMH47PPPlMbjoio+TDUN0Qrm1ZoZdNK7fy84rxqW4USsxJRUFLQ4Boy8zORmZ+J+BvxVeYZ6BnAXelebefpFmYteIqMSAfo9J8k5eXlGD9+PObMmYNOnTpVmR8fHw9ra2sp6ABASEgI9PT0cPToUYwcOVLteouKilBUVCQ9z8nJ0XzxRNToLIws0MWxC7o4dqkyTwiBWwW3qm0Vup59HWWirEHbLy0vxbV713Dt3jXsS9xXZb65oXm1rUJe1l4wNzJv0PaJqHZ0OuwsXrwYBgYGmD59utr5GRkZcHBwUJlmYGAAW1tbZGRUfyn9RYsWYcGCBRqtlYh0i0KhgIO5AxzMHdDHtU+V+aXlpUjJTqnSKlT5/Gb+zQbXkF+Sj79v/l3tfc4czB2qbRVyU7rxFBmRhujsO+nkyZNYsWIFTp06pfFm4Hnz5mH27NnS85ycHLi5uWl0G0Sk2wz0DCpaWGy80M+rX5X5+cX5/4wiqxxKn/VPKMorzmtwDTfzb+Jm/k0cTT1aZZ6+Qr/iFNn/bwV6+KrTDuYOPEVGVEs6G3bi4uJw8+ZNuLu7S9PKysrw+uuvY/ny5UhKSoKTkxNu3lT966u0tBR3796Fk5NTtes2NjaGsbFxo9VORM2fuZE5Ojl0QieHqqfQhRC4XXBb5XpCD7YKXc++jtLy0gZtv0yUSetUx8zQrNp7kXnZeMHCqPYjUonkTmfDzvjx4xESEqIyLTQ0FOPHj8ekSZMAAH5+fsjKysLJkyfh6+sLAIiOjkZ5eTl69+7d5DUT0eNBoVDA3twe9ub26NWyV5X5peWlSM1JrbZVSBN3rC8oKcC5W+dw7tY5tfNbmLWo9g717kp3GOobNrgGouZCq2EnLy8PCQkJ0vPExEScOXMGtra2cHd3h52dncryhoaGcHJyQvv27QEAHTt2xMCBA/Hyyy9jzZo1KCkpQUREBMaMGcORWESkNQZ6BvCw9oCHtQf6om+V+QUlBUjKSlLbKpR4LxG5xbkNruF2wW3cLriNY6nHqszTU+jBzcqt2lYhR3NHniIjWdFq2Dlx4gT69v3ng6CyH82ECROwdu3aWq0jMjISERER6N+/v3RRwZUrVzZGuUREGmFmaAZve29423tXmSeEwN37d6vcdqMyECVlJTX4FFm5KEdydjKSs5MRi9gq800NTKvtK+Rl4wUrY158lZoX3i4CvIIyETUfZeVlSM1NrbZVKD0vvdFrsDO1U73txgOByF3pDiN9o0avgQhoJreL0BUMO0QkF/dL7lecIqum83ROUeNeV0xPoQdXK9dqO087WTjxFBlpDMNOHTDsENHjQAiBe4X3VEPQA52nk7OTUVxW3Kg1mBiYwNPas9rO00oTZaNun+SFYacOGHaIiCr68qTlplV71enU3NRGr8HW1FZtq5CXjRc8lB4wNuBlQ+gfDDt1wLBDRFSzwtJCJGclV3svsqzCrEbdvgIKtLRqqXLV6cz8TLgr3dHfqz96OPeAvp5+o9ZAuoVhpw4YdoiIGu7e/XtSK9DDrUKJWYmNforsYY7mjujfqj/6efZD/1b94Wnt2aTbp8bHsFMHDDtERI2rXJQjPTe92lah1JxUCDTt11Fnh87o79Uf/b36I9AjkP2FmiGGnTpg2CEi0q6i0iIkZyerbRW6du8a7hXea/Ka+nn1k1qFnnB5gjdm1UEMO3XAsENEpNuyC7OrtAoduXEEJ9NPaqWeFmYt0M+rn9Qy1MqmFYfUawHDTh0w7BARNV9l5WU4k3EG0YnR2Je4D/sS9zX4KtMN1bFFR/T36o9+Xv0Q7BkMG1MbrdYjVww7dcCwQ0QkX3nFeTh4/SD2XduH6KRonEo/pe2SEOgRKLUK9WrZizdmrSeGnTpg2CEienzdyLmBmMQYqVXoRs4NrdZjY2KjMoqsrW1bniKrBsNOHTDsEBGROuWiHH9n/i0FoejEaBSWFmq1pnZ27aRWoWDPYNiZ2Wm1Hm1i2KkDhh0iIqqPgpICHLp+SOovdDztuLZLgr+7v9Qq1Me1j6xvzMqwUwcMO0RE1BjSc9MRkxQj9RdKykrSaj1WxlZSq1A/r37o0KJDsz5FxrBTBww7RETU1MpFOc7dPKcyiqygpECrNbWxbSO1CvX17At7c3ut1lMThp06YNghIiJdc7/kPuJvxEutQkduHNF2SfBz9ZNahfzc/GBiYKLVehh26oBhh4iImpvMvEzEJsVKrULX7l3Taj0WRhYqF1r0tvdu9FNkDDt1wLBDRERyIoTAhdsXpFahfdf2Ibc4V2v19HDugW3Pb4Ob0k2j62XYqQOGHSIiepwUlRbhyI0jUqvQ4ZTDjb5NJwsnJExLgLmRucbWybBTBww7RERE/7iVfwuxSbGIToxGdFI0Lt+5rJH1Hvr3ITzp9qRG1gXU/vubt3AlIiIiFfbm9ni207N4ttOzVeYJIXD5zmWVUWRZhVk1rrOlZUt423s3QrU1Y8sO2LJDRESkKcVlxTiWekzqL3Qg+QA+6vcRnu/0PFrbttbotngaqw4YdoiIiJqf2n5/6zVhTURERERNjmGHiIiIZI1hh4iIiGSNYYeIiIhkjWGHiIiIZI1hh4iIiGSNYYeIiIhkjWGHiIiIZI1hh4iIiGSNYYeIiIhkjWGHiIiIZI1hh4iIiGSNYYeIiIhkjWGHiIiIZI1hh4iIiGSNYYeIiIhkjWGHiIiIZI1hh4iIiGRNq2HnwIEDGDp0KFxcXKBQKLBt2zZpXklJCebOnYsuXbrA3NwcLi4u+Ne//oW0tDSVddy9exfjxo2DlZUVrK2tMXnyZOTl5TXxnhAREZGu0mrYyc/Ph4+PD1atWlVlXkFBAU6dOoX33nsPp06dwpYtW3Dp0iUMGzZMZblx48bh3LlziIqKws6dO3HgwAFMmTKlqXaBiIiIdJxCCCG0XQQAKBQKbN26FSNGjKh2mePHj6NXr15ITk6Gu7s7Lly4AG9vbxw/fhxPPPEEAGDXrl0YPHgwbty4ARcXl1ptOycnB0qlEtnZ2bCystLE7hAREVEjq+33d7Pqs5OdnQ2FQgFra2sAQHx8PKytraWgAwAhISHQ09PD0aNHq11PUVERcnJyVB5EREQkT80m7BQWFmLu3Ll44YUXpPSWkZEBBwcHleUMDAxga2uLjIyMate1aNEiKJVK6eHm5taotRMREZH2NIuwU1JSgueeew5CCKxevbrB65s3bx6ys7OlR0pKigaqJCIiIl1koO0CalIZdJKTkxEdHa1yTs7JyQk3b95UWb60tBR3796Fk5NTtes0NjaGsbFxo9VMREREukOnW3Yqg86VK1ewd+9e2NnZqcz38/NDVlYWTp48KU2Ljo5GeXk5evfu3dTlEhERkQ7SastOXl4eEhISpOeJiYk4c+YMbG1t4ezsjNGjR+PUqVPYuXMnysrKpH44tra2MDIyQseOHTFw4EC8/PLLWLNmDUpKShAREYExY8bUeiQWERERyZtWh57Hxsaib9++VaZPmDAB8+fPh5eXl9rXxcTEIDg4GEDFRQUjIiLw66+/Qk9PD6NGjcLKlSthYWFR6zo49JyIiKj5qe33t85cZ0ebGHaIiIiaH1leZ4eIiIiorhh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYYdoiIiEjWGHaIiIhI1hh2iIiISNYMtF0AERERyVRZGRAXB6SnA87OQEAAoK/f5GUw7BAREZHmbdkCzJgB3LjxzzRXV2DFCiAsrElL4WksIiIi0qwtW4DRo1WDDgCkplZM37KlScvRatg5cOAAhg4dChcXFygUCmzbtk1lvhAC77//PpydnWFqaoqQkBBcuXJFZZm7d+9i3LhxsLKygrW1NSZPnoy8vLwm3AsiIiKSlJVVtOgIUXVe5bSZMyuWayJaDTv5+fnw8fHBqlWr1M5fsmQJVq5ciTVr1uDo0aMwNzdHaGgoCgsLpWXGjRuHc+fOISoqCjt37sSBAwcwZcqUptoFIiIielBcXNUWnQcJAaSkVCzXRLTaZ2fQoEEYNGiQ2nlCCCxfvhzvvvsuhg8fDgBYt24dHB0dsW3bNowZMwYXLlzArl27cPz4cTzxxBMAgC+++AKDBw/GZ599BhcXlybbFyIiIkJFZ2RNLqcBOttnJzExERkZGQgJCZGmKZVK9O7dG/Hx8QCA+Ph4WFtbS0EHAEJCQqCnp4ejR482ec1ERESPPWdnzS6nATo7GisjIwMA4OjoqDLd0dFRmpeRkQEHBweV+QYGBrC1tZWWUaeoqAhFRUXS85ycHE2VTURE9HgLCKgYdZWaqr7fjkJRMT8goMlK0tmWnca0aNEiKJVK6eHm5qbtkoiIiORBX79ieDlQEWweVPl8+fImvd6OzoYdJycnAEBmZqbK9MzMTGmek5MTbt68qTK/tLQUd+/elZZRZ968ecjOzpYeKSkpGq6eiIjoMRYWBmzeDLRsqTrd1bViOq+zU8HLywtOTk7Yt2+fNC0nJwdHjx6Fn58fAMDPzw9ZWVk4efKktEx0dDTKy8vRu3fvatdtbGwMKysrlQcRERFpUFgYkJQExMQAGzZU/JuY2ORBB9Byn528vDwkJCRIzxMTE3HmzBnY2trC3d0dM2fOxMKFC9G2bVt4eXnhvffeg4uLC0aMGAEA6NixIwYOHIiXX34Za9asQUlJCSIiIjBmzBiOxCIiItI2fX0gOFjbVWg37Jw4cQJ9+/aVns+ePRsAMGHCBKxduxZvvvkm8vPzMWXKFGRlZcHf3x+7du2CiYmJ9JrIyEhERESgf//+0NPTw6hRo7By5com3xciIiLSTQoh1HWVfrzk5ORAqVQiOzubp7SIiIiaidp+f+tsnx0iIiIiTWDYISIiIllj2CEiIiJZY9ghIiIiWWPYISIiIllj2CEiIiJZY9ghIiIiWdPZu543pcpLDfHu50RERM1H5fd2TZcMZNgBkJubCwC8+zkREVEzlJubC6VSWe18XkEZQHl5OdLS0mBpaQnF/7/9fE5ODtzc3JCSksKrKmsYj23j4HFtPDy2jYfHtvE8DsdWCIHc3Fy4uLhAT6/6njls2QGgp6cHV1dXtfN4V/TGw2PbOHhcGw+PbePhsW08cj+2j2rRqcQOykRERCRrDDtEREQkaww71TA2NsYHH3wAY2NjbZciOzy2jYPHtfHw2DYeHtvGw2P7D3ZQJiIiIlljyw4RERHJGsMOERERyRrDDhEREckaww4RERHJ2mMVdg4cOIChQ4fCxcUFCoUC27ZtU5k/ceJEKBQKlcfAgQNVlvH09KyyzCeffNKEe6Gbajq2AHDhwgUMGzYMSqUS5ubm6NmzJ65fvy7NLywsRHh4OOzs7GBhYYFRo0YhMzOzCfdCN2ni2AYHB1f5vX3llVeacC90T03H9eHjVfn49NNPpWXu3r2LcePGwcrKCtbW1pg8eTLy8vKaeE90jyaOLT9r1avp2Obl5SEiIgKurq4wNTWFt7c31qxZo7LM4/hZ+1iFnfz8fPj4+GDVqlXVLjNw4ECkp6dLj59//rnKMh9++KHKMtOmTWvMspuFmo7t1atX4e/vjw4dOiA2NhZ//fUX3nvvPZiYmEjLzJo1C7/++is2bdqE/fv3Iy0tDWFhYU21CzpLE8cWAF5++WWV39slS5Y0Rfk6q6bj+uCxSk9Px/fffw+FQoFRo0ZJy4wbNw7nzp1DVFQUdu7ciQMHDmDKlClNtQs6SxPHFuBnrTo1HdvZs2dj165dWL9+PS5cuICZM2ciIiICO3bskJZ5LD9rxWMKgNi6davKtAkTJojhw4c/8nUeHh5i2bJljVaXHKg7ts8//7x48cUXq31NVlaWMDQ0FJs2bZKmXbhwQQAQ8fHxjVVqs1OfYyuEEEFBQWLGjBmNV1gzp+64Pmz48OGiX79+0vPz588LAOL48ePStD/++EMoFAqRmpraWKU2O/U5tkLws7Y21B3bTp06iQ8//FBlWo8ePcQ777wjhHh8P2sfq5ad2oiNjYWDgwPat2+PV199FXfu3KmyzCeffAI7Ozt0794dn376KUpLS7VQafNRXl6O3377De3atUNoaCgcHBzQu3dvlebXkydPoqSkBCEhIdK0Dh06wN3dHfHx8VqounmozbGtFBkZiRYtWqBz586YN28eCgoKmr7gZiozMxO//fYbJk+eLE2Lj4+HtbU1nnjiCWlaSEgI9PT0cPToUW2U2SypO7aV+Flbd08++SR27NiB1NRUCCEQExODy5cvY8CAAQAe389a3gj0AQMHDkRYWBi8vLxw9epVvP322xg0aBDi4+Ohr68PAJg+fTp69OgBW1tbHD58GPPmzUN6ejo+//xzLVevu27evIm8vDx88sknWLhwIRYvXoxdu3YhLCwMMTExCAoKQkZGBoyMjGBtba3yWkdHR2RkZGin8GagNscWAMaOHQsPDw+4uLjgr7/+wty5c3Hp0iVs2bJFy3vQPPz444+wtLRUaerPyMiAg4ODynIGBgawtbXl72wdqDu2AD9r6+uLL77AlClT4OrqCgMDA+jp6eGbb75BYGAgADy2n7UMOw8YM2aM9P8uXbqga9euaN26NWJjY9G/f38AFedDK3Xt2hVGRkaYOnUqFi1axEtyV6O8vBwAMHz4cMyaNQsA0K1bNxw+fBhr1qyRvpCp7mp7bB/sR9KlSxc4Ozujf//+uHr1Klq3bt30hTcz33//PcaNG1elHxQ1XHXHlp+19fPFF1/gyJEj2LFjBzw8PHDgwAGEh4fDxcVFpTXnccPTWI/QqlUrtGjRAgkJCdUu07t3b5SWliIpKanpCmtmWrRoAQMDA3h7e6tM79ixozRiyMnJCcXFxcjKylJZJjMzE05OTk1VarNTm2OrTu/evQHgkb/bVCEuLg6XLl3CSy+9pDLdyckJN2/eVJlWWlqKu3fv8ne2lqo7turws7Zm9+/fx9tvv43PP/8cQ4cORdeuXREREYHnn38en332GYDH97OWYecRbty4gTt37sDZ2bnaZc6cOQM9Pb0qzdn0DyMjI/Ts2ROXLl1SmX758mV4eHgAAHx9fWFoaIh9+/ZJ8y9duoTr16/Dz8+vSettTmpzbNU5c+YMADzyd5sqfPfdd/D19YWPj4/KdD8/P2RlZeHkyZPStOjoaJSXl0thkh6tumOrDj9ra1ZSUoKSkhLo6al+tevr60utwI/rZ+1jdRorLy9P5S/ZxMREnDlzBra2trC1tcWCBQswatQoODk54erVq3jzzTfRpk0bhIaGAqjokHj06FH07dsXlpaWiI+Px6xZs/Diiy/CxsZGW7ulEx51bN3d3TFnzhw8//zzCAwMRN++fbFr1y78+uuviI2NBQAolUpMnjwZs2fPhq2tLaysrDBt2jT4+fmhT58+Wtor3dDQY3v16lVs2LABgwcPhp2dHf766y/MmjULgYGB6Nq1q5b2SvtqOq4AkJOTg02bNmHp0qVVXt+xY0cMHDgQL7/8MtasWYOSkhJERERgzJgxcHFxabL90EUNPbb8rK1eTcc2KCgIc+bMgampKTw8PLB//36sW7dO6uv02H7Wans4WFOKiYkRAKo8JkyYIAoKCsSAAQOEvb29MDQ0FB4eHuLll18WGRkZ0utPnjwpevfuLZRKpTAxMREdO3YUH3/8sSgsLNTiXumGRx3bSt99951o06aNMDExET4+PmLbtm0q67h//7547bXXhI2NjTAzMxMjR44U6enpTbwnuqehx/b69esiMDBQ2NraCmNjY9GmTRsxZ84ckZ2drYW90R21Oa5fffWVMDU1FVlZWWrXcefOHfHCCy8ICwsLYWVlJSZNmiRyc3ObaA90V0OPLT9rq1fTsU1PTxcTJ04ULi4uwsTERLRv314sXbpUlJeXS+t4HD9rFUII0RShioiIiEgb2GeHiIiIZI1hh4iIiGSNYYeIiIhkjWGHiIiIZI1hh4iIiGSNYYeIiIhkjWGHiIiIZI1hh4hkydPTE8uXL6/18klJSVAoFNKtNIhIPhh2iEiWjh8/rnK3d01Yu3YtrK2tNbpOImp8j9W9sYjo8WFvb6/tEohIR7Blh4h0ws6dO2FtbY2ysjIAFXe5VigUeOutt6RlXnrpJbz44osAgIMHDyIgIACmpqZwc3PD9OnTkZ+fLy378Gmsixcvwt/fHyYmJvD29sbevXuhUCiwbds2lTquXbuGvn37wszMDD4+PoiPjwcAxMbGYtKkScjOzoZCoYBCocD8+fMb52AQkUYx7BCRTggICEBubi5Onz4NANi/fz9atGgh3b29clpwcDCuXr2KgQMHYtSoUfjrr7/wyy+/4ODBg4iIiFC77rKyMowYMQJmZmY4evQovv76a7zzzjtql33nnXfwxhtv4MyZM2jXrh1eeOEFlJaW4sknn8Ty5cthZWWF9PR0pKen44033tD4cSAizWPYISKdoFQq0a1bNyncxMbGYtasWTh9+jTy8vKQmpqKhIQEBAUFYdGiRRg3bhxmzpyJtm3b4sknn8TKlSuxbt06FBYWVll3VFQUrl69inXr1sHHxwf+/v746KOP1NbxxhtvYMiQIWjXrh0WLFiA5ORkJCQkwMjICEqlEgqFAk5OTnBycoKFhUVjHhIi0hCGHSLSGUFBQYiNjYUQAnFxcQgLC0PHjh1x8OBB7N+/Hy4uLmjbti3+/PNPrF27FhYWFtIjNDQU5eXlSExMrLLeS5cuwc3NDU5OTtK0Xr16qa2ha9eu0v+dnZ0BADdv3tTwnhJRU2IHZSLSGcHBwfj+++/x559/wtDQEB06dEBwcDBiY2Nx7949BAUFAQDy8vIwdepUTJ8+vco63N3dG1SDoaGh9H+FQgEAKC8vb9A6iUi7GHaISGdU9ttZtmyZFGyCg4PxySef4N69e3j99dcBAD169MD58+fRpk2bWq23ffv2SElJQWZmJhwdHQFUDE2vKyMjI6kDNRE1HzyNRUQ6w8bGBl27dkVkZCSCg4MBAIGBgTh16hQuX74sBaC5c+fi8OHDiIiIwJkzZ3DlyhVs37692g7KTz/9NFq3bo0JEybgr7/+wqFDh/Duu+8C+Kf1pjY8PT2Rl5eHffv24fbt2ygoKGjYDhNRk2DYISKdEhQUhLKyMins2NrawtvbG05OTmjfvj2Ain41+/fvx+XLlxEQEIDu3bvj/fffh4uLi9p16uvrY9u2bcjLy0PPnj3x0ksvSaOxTExMal3bk08+iVdeeQXPP/887O3tsWTJkobtLBE1CYUQQmi7CCKipnbo0CH4+/sjISEBrVu31nY5RNSIGHaI6LGwdetWWFhYoG3btkhISMCMGTNgY2ODgwcPars0Impk7KBMRI+F3NxczJ07F9evX0eLFi0QEhKCpUuXarssImoCbNkhIiIiWWMHZSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikjWGHSIiIpI1hh0iIiKSNYYdIiIikrX/Bzcsp5PhXj6sAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "y_pred = model.predict(X_test)\n", + "plt.scatter(X_test, y_test, color=\"red\")\n", + "plt.plot(X_test, y_pred, color=\"green\", linewidth=3)\n", + "plt.xlabel(f'{XColumns[columnNumber]}')\n", + "plt.ylabel(f'{yColumns[targetColumnNumber]}')\n", + "plt.title(f'A Graph Plot Showing Prediction of {yColumns[targetColumnNumber]} by {XColumns[columnNumber]}')\n", + "plt.plot()\n", + "\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "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.12.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/2-Regression/1-Tools/notebook.ipynb b/2-Regression/1-Tools/notebook.ipynb index 184e20bfdf..d178554b81 100644 --- a/2-Regression/1-Tools/notebook.ipynb +++ b/2-Regression/1-Tools/notebook.ipynb @@ -9,7 +9,7 @@ }, { "cell_type": "code", - "execution_count": 118, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -26,7 +26,7 @@ }, { "cell_type": "code", - "execution_count": 119, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -47,7 +47,7 @@ }, { "cell_type": "code", - "execution_count": 120, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -58,7 +58,7 @@ }, { "cell_type": "code", - "execution_count": 121, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -80,7 +80,7 @@ }, { "cell_type": "code", - "execution_count": 122, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -109,7 +109,7 @@ }, { "cell_type": "code", - "execution_count": 123, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -545,7 +545,7 @@ }, { "cell_type": "code", - "execution_count": 124, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -561,7 +561,7 @@ }, { "cell_type": "code", - "execution_count": 125, + "execution_count": null, "metadata": {}, "outputs": [ { From 08b59dab18a82285c17f4a89f6beed0a1daaf0d0 Mon Sep 17 00:00:00 2001 From: githubtemp5 Date: Sat, 17 Aug 2024 23:40:13 +0100 Subject: [PATCH 4/6] microsoft link exercises https://learn.microsoft.com/en-gb/training/modules/explore-analyze-data-with-python/ --- 2-Regression/2-Data/01-numpy-and-pandas.ipynb | 2728 +++++++++++++++++ 2-Regression/2-Data/02-visualize-data.ipynb | 902 ++++++ 2-Regression/2-Data/03-real-world-data.ipynb | 620 ++++ 2-Regression/2-Data/grades.csv | 25 + 2-Regression/2-Data/notebook.ipynb | 510 ++- 5 files changed, 4767 insertions(+), 18 deletions(-) create mode 100644 2-Regression/2-Data/01-numpy-and-pandas.ipynb create mode 100644 2-Regression/2-Data/02-visualize-data.ipynb create mode 100644 2-Regression/2-Data/03-real-world-data.ipynb create mode 100644 2-Regression/2-Data/grades.csv diff --git a/2-Regression/2-Data/01-numpy-and-pandas.ipynb b/2-Regression/2-Data/01-numpy-and-pandas.ipynb new file mode 100644 index 0000000000..fc99c0ca2c --- /dev/null +++ b/2-Regression/2-Data/01-numpy-and-pandas.ipynb @@ -0,0 +1,2728 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exploring Data with Python\n", + "\n", + "A significant part of a a data scientist's role is to explore, analyze, and visualize data. There are many tools and programming languages that they can use to do this. One of the most popular approaches is to use Jupyter notebooks (like this one) and Python.\n", + "\n", + "Python is a flexible programming language that's used in a wide range of scenarios, from web applications to device programming. It's extremely popular in the data-science and machine-learning communities because of the many packages it supports for data analysis and visualization.\n", + "\n", + "In this notebook, we'll explore some of these packages and apply basic techniques to analyze data. This isn't intended to be a comprehensive Python programming exercise or even a deep dive into data analysis. Rather, it's intended as a crash course in some of the common ways in which data scientists can use Python to work with data.\n", + "\n", + "> **Note**: If you've never used the Jupyter Notebooks environment before, there are a few things of which you should be aware:\n", + "> \n", + "> - Notebooks are made up of *cells*. Some cells (like this one) contain *markdown* text, while others (like the one following this one) contain code.\n", + "> - You can run each code cell by using the **► Run** button. The **► Run** button shows up when you hover over the cell.\n", + "> - The output from each code cell is displayed immediately below the cell.\n", + "> - Even though you can run the code cells individually, some variables the code uses are global to the notebook. That means that you should run all of the code cells **in order**. There might be dependencies between code cells, so if you skip a cell, subsequent cells might not run correctly.\n", + "> \n", + "\n", + "\n", + "## Exploring data arrays with NumPy\n", + "\n", + "Let's start by looking at some simple data.\n", + "\n", + "Suppose a college professor takes a sample of student grades from a class to analyze.\n", + "\n", + "Run the code in the following cell by selecting the **► Run** button to see the data." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[50, 50, 47, 97, 49, 3, 53, 42, 26, 74, 82, 62, 37, 15, 70, 27, 36, 35, 48, 52, 63, 64]\n" + ] + } + ], + "source": [ + "data = [50,50,47,97,49,3,53,42,26,74,82,62,37,15,70,27,36,35,48,52,63,64]\n", + "print(data)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The data has been loaded into a Python **list** structure, which is a good data type for general data manipulation, but it's not optimized for numeric analysis. For that, we're going to use the **NumPy** package, which includes specific data types and functions for working with *Num*bers in *Py*thon.\n", + "\n", + "Run the following cell to load the data into a NumPy **array**." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[50 50 47 97 49 3 53 42 26 74 82 62 37 15 70 27 36 35 48 52 63 64]\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "\n", + "grades = np.array(data)\n", + "print(grades)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Just in case you're wondering about the differences between a **list** and a NumPy **array**, let's compare how these data types behave when we use them in an expression that multiplies them by two." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " x 2: [50, 50, 47, 97, 49, 3, 53, 42, 26, 74, 82, 62, 37, 15, 70, 27, 36, 35, 48, 52, 63, 64, 50, 50, 47, 97, 49, 3, 53, 42, 26, 74, 82, 62, 37, 15, 70, 27, 36, 35, 48, 52, 63, 64]\n", + "---\n", + " x 2: [100 100 94 194 98 6 106 84 52 148 164 124 74 30 140 54 72 70\n", + " 96 104 126 128]\n" + ] + } + ], + "source": [ + "print (type(data),'x 2:', data * 2)\n", + "print('---')\n", + "print (type(grades),'x 2:', grades * 2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note that multiplying a list by two creates a new list of twice the length with the original sequence of list elements repeated. Multiplying a NumPy array, on the other hand, performs an element-wise calculation in which the array behaves like a *vector*, so we end up with an array of the same size in which each element has been multiplied by two.\n", + "\n", + "The key takeaway from this is that NumPy arrays are specifically designed to support mathematical operations on numeric data, which makes them more useful for data analysis than a generic list.\n", + "\n", + "You might have spotted that the class type for the preceding NumPy array is **numpy.ndarray**. The **nd** indicates that this is a structure that can consist of multiple *dimensions*. (It can have *n* dimensions.) Our specific instance has a single dimension of student grades.\n", + "\n", + "Run the following cell to view the **shape** of the array." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(22,)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "grades.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The shape confirms that this array has only one dimension, which contains 22 elements. (There are 22 grades in the original list.) You can access the individual elements in the array by their zero-based ordinal position. Let's get the first element (the one in position 0)." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.int64(50)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "grades[0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now that you know your way around a NumPy array, it's time to perform some analysis of the grades data.\n", + "\n", + "You can apply aggregations across the elements in the array, so let's find the simple average grade (in other words, the *mean* grade value)." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(49.18181818181818)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "grades.mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "So the mean grade is just around 50, more or less in the middle of the possible range from 0 to 100.\n", + "\n", + "Let's add a second set of data for the same students. This time, we'll record the typical number of hours per week they devoted to studying." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[10. , 11.5 , 9. , 16. , 9.25, 1. , 11.5 , 9. , 8.5 ,\n", + " 14.5 , 15.5 , 13.75, 9. , 8. , 15.5 , 8. , 9. , 6. ,\n", + " 10. , 12. , 12.5 , 12. ],\n", + " [50. , 50. , 47. , 97. , 49. , 3. , 53. , 42. , 26. ,\n", + " 74. , 82. , 62. , 37. , 15. , 70. , 27. , 36. , 35. ,\n", + " 48. , 52. , 63. , 64. ]])" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Define an array of study hours\n", + "study_hours = [10.0,11.5,9.0,16.0,9.25,1.0,11.5,9.0,8.5,14.5,15.5,\n", + " 13.75,9.0,8.0,15.5,8.0,9.0,6.0,10.0,12.0,12.5,12.0]\n", + "\n", + "# Create a 2D array (an array of arrays)\n", + "student_data = np.array([study_hours, grades])\n", + "\n", + "# display the array\n", + "student_data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now the data consists of a two-dimensional array; an array of arrays. Let's look at its shape." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(2, 22)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Show shape of 2D array\n", + "student_data.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The **student_data** array contains two elements, each of which is an array containing 22 elements.\n", + "\n", + "To navigate this structure, you need to specify the position of each element in the hierarchy. So to find the first value in the first array (which contains the study hours data), you can use the following code." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(10.0)" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Show the first element of the first element\n", + "student_data[0][0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now you have a multidimensional array containing both the student's study time and grade information, which you can use to compare study time to a student's grade." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Average study hours: 10.52\n", + "Average grade: 49.18\n" + ] + } + ], + "source": [ + "# Get the mean value of each sub-array\n", + "avg_study = student_data[0].mean()\n", + "avg_grade = student_data[1].mean()\n", + "\n", + "print('Average study hours: {:.2f}\\nAverage grade: {:.2f}'.format(avg_study, avg_grade))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exploring tabular data with Pandas\n", + "\n", + "NumPy provides a lot of the functionality and tools you need to work with numbers, such as arrays of numeric values. However, when you start to deal with two-dimensional tables of data, the **Pandas** package offers a more convenient structure to work with: the **DataFrame**.\n", + "\n", + "Run the following cell to import the Pandas library and create a DataFrame with three columns. The first column is a list of student names, and the second and third columns are the NumPy arrays containing the study time and grade data." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGrade
0Dan10.0050.0
1Joann11.5050.0
2Pedro9.0047.0
3Rosie16.0097.0
4Ethan9.2549.0
5Vicky1.003.0
6Frederic11.5053.0
7Jimmie9.0042.0
8Rhonda8.5026.0
9Giovanni14.5074.0
10Francesca15.5082.0
11Rajab13.7562.0
12Naiyana9.0037.0
13Kian8.0015.0
14Jenny15.5070.0
15Jakeem8.0027.0
16Helena9.0036.0
17Ismat6.0035.0
18Anila10.0048.0
19Skye12.0052.0
20Daniel12.5063.0
21Aisha12.0064.0
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "0 Dan 10.00 50.0\n", + "1 Joann 11.50 50.0\n", + "2 Pedro 9.00 47.0\n", + "3 Rosie 16.00 97.0\n", + "4 Ethan 9.25 49.0\n", + "5 Vicky 1.00 3.0\n", + "6 Frederic 11.50 53.0\n", + "7 Jimmie 9.00 42.0\n", + "8 Rhonda 8.50 26.0\n", + "9 Giovanni 14.50 74.0\n", + "10 Francesca 15.50 82.0\n", + "11 Rajab 13.75 62.0\n", + "12 Naiyana 9.00 37.0\n", + "13 Kian 8.00 15.0\n", + "14 Jenny 15.50 70.0\n", + "15 Jakeem 8.00 27.0\n", + "16 Helena 9.00 36.0\n", + "17 Ismat 6.00 35.0\n", + "18 Anila 10.00 48.0\n", + "19 Skye 12.00 52.0\n", + "20 Daniel 12.50 63.0\n", + "21 Aisha 12.00 64.0" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "df_students = pd.DataFrame({'Name': ['Dan', 'Joann', 'Pedro', 'Rosie', 'Ethan', 'Vicky', 'Frederic', 'Jimmie', \n", + " 'Rhonda', 'Giovanni', 'Francesca', 'Rajab', 'Naiyana', 'Kian', 'Jenny',\n", + " 'Jakeem','Helena','Ismat','Anila','Skye','Daniel','Aisha'],\n", + " 'StudyHours':student_data[0],\n", + " 'Grade':student_data[1]})\n", + "\n", + "df_students " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note that in addition to the columns you specified, the DataFrame includes an *index* to uniquely identify each row. We could've specified the index explicitly and assigned any kind of appropriate value (for example, an email address). However, because we didn't specify an index, one has been created with a unique integer value for each row.\n", + "\n", + "### Finding and filtering data in a DataFrame\n", + "\n", + "You can use the DataFrame's **loc** method to retrieve data for a specific index value, like this." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Name Vicky\n", + "StudyHours 1.0\n", + "Grade 3.0\n", + "Name: 5, dtype: object" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Get the data for index value 5\n", + "df_students.loc[5]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can also get the data at a range of index values, like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGrade
0Dan10.0050.0
1Joann11.5050.0
2Pedro9.0047.0
3Rosie16.0097.0
4Ethan9.2549.0
5Vicky1.003.0
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "0 Dan 10.00 50.0\n", + "1 Joann 11.50 50.0\n", + "2 Pedro 9.00 47.0\n", + "3 Rosie 16.00 97.0\n", + "4 Ethan 9.25 49.0\n", + "5 Vicky 1.00 3.0" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Get the rows with index values from 0 to 5\n", + "df_students.loc[0:5]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In addition to being able to use the **loc** method to find rows based on the index, you can use the **iloc** method to find rows based on their ordinal position in the DataFrame (regardless of the index):" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGrade
0Dan10.0050.0
1Joann11.5050.0
2Pedro9.0047.0
3Rosie16.0097.0
4Ethan9.2549.0
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "0 Dan 10.00 50.0\n", + "1 Joann 11.50 50.0\n", + "2 Pedro 9.00 47.0\n", + "3 Rosie 16.00 97.0\n", + "4 Ethan 9.25 49.0" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Get data in the first five rows\n", + "df_students.iloc[0:5]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Look carefully at the `iloc[0:5]` results and compare them to the `loc[0:5]` results you obtained previously. Can you spot the difference?\n", + "\n", + "The **loc** method returned rows with index *label* in the list of values from *0* to *5*, which includes *0*, *1*, *2*, *3*, *4*, and *5* (six rows). However, the **iloc** method returns the rows in the *positions* included in the range 0 to 5. Since integer ranges don't include the upper-bound value, this includes positions *0*, *1*, *2*, *3*, and *4* (five rows).\n", + "\n", + "**iloc** identifies data values in a DataFrame by *position*, which extends beyond rows to columns. So, for example, you can use it to find the values for the columns in positions 1 and 2 in row 0, like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "StudyHours 10.0\n", + "Grade 50.0\n", + "Name: 0, dtype: object" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students.iloc[0,[1,2]]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's return to the **loc** method and see how it works with columns. Remember that you use **loc** to locate data items based on index values rather than positions. In the absence of an explicit index column, the rows in our DataFrame are indexed as integer values, but the columns are identified by name:" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(50.0)" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students.loc[0,'Grade']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here's another useful trick. You can use the **loc** method to find indexed rows based on a filtering expression that references named columns other than the index, like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameStudyHoursGrade
21Aisha12.064.0
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "21 Aisha 12.0 64.0" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students.loc[df_students['Name']=='Aisha']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Actually, you don't need to explicitly use the **loc** method to do this. You can simply apply a DataFrame filtering expression, like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameStudyHoursGrade
21Aisha12.064.0
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "21 Aisha 12.0 64.0" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students[df_students['Name']=='Aisha']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "And for good measure, you can achieve the same results by using the DataFrame's **query** method, like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameStudyHoursGrade
21Aisha12.064.0
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "21 Aisha 12.0 64.0" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students.query('Name==\"Aisha\"')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The three previous examples underline a confusing truth about working with Pandas. Often, there are multiple ways to achieve the same results. Another example of this is the way you refer to a DataFrame column name. You can specify the column name as a named index value (as in the `df_students['Name']` examples we've seen so far), or you can use the column as a property of the DataFrame, like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameStudyHoursGrade
21Aisha12.064.0
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "21 Aisha 12.0 64.0" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students[df_students.Name == 'Aisha']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Loading a DataFrame from a file\n", + "\n", + "We constructed the DataFrame from some existing arrays. However, in many real-world scenarios, data is loaded from sources such as files. Let's replace the student grades DataFrame with the contents of a text file." + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGrade
0Dan10.0050.0
1Joann11.5050.0
2Pedro9.0047.0
3Rosie16.0097.0
4Ethan9.2549.0
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "0 Dan 10.00 50.0\n", + "1 Joann 11.50 50.0\n", + "2 Pedro 9.00 47.0\n", + "3 Rosie 16.00 97.0\n", + "4 Ethan 9.25 49.0" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "df_students = pd.read_csv('grades.csv',delimiter=',',header='infer')\n", + "df_students.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The DataFrame's **read_csv** method is used to load data from text files. As you can see in the example code, you can specify options such as the column delimiter and which row (if any) contains column headers. (In this case, the delimiter is a comma and the first row contains the column names. These are the default settings, so we could've omitted the parameters.)\n", + "\n", + "\n", + "### Handling missing values\n", + "\n", + "One of the most common issues data scientists need to deal with is incomplete or missing data. So how would we know that the DataFrame contains missing values? You can use the **isnull** method to identify which individual values are null, like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGrade
0FalseFalseFalse
1FalseFalseFalse
2FalseFalseFalse
3FalseFalseFalse
4FalseFalseFalse
5FalseFalseFalse
6FalseFalseFalse
7FalseFalseFalse
8FalseFalseFalse
9FalseFalseFalse
10FalseFalseFalse
11FalseFalseFalse
12FalseFalseFalse
13FalseFalseFalse
14FalseFalseFalse
15FalseFalseFalse
16FalseFalseFalse
17FalseFalseFalse
18FalseFalseFalse
19FalseFalseFalse
20FalseFalseFalse
21FalseFalseFalse
22FalseFalseTrue
23FalseTrueTrue
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "0 False False False\n", + "1 False False False\n", + "2 False False False\n", + "3 False False False\n", + "4 False False False\n", + "5 False False False\n", + "6 False False False\n", + "7 False False False\n", + "8 False False False\n", + "9 False False False\n", + "10 False False False\n", + "11 False False False\n", + "12 False False False\n", + "13 False False False\n", + "14 False False False\n", + "15 False False False\n", + "16 False False False\n", + "17 False False False\n", + "18 False False False\n", + "19 False False False\n", + "20 False False False\n", + "21 False False False\n", + "22 False False True\n", + "23 False True True" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students.isnull()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Of course, with a larger DataFrame, it would be inefficient to review all of the rows and columns individually, so we can get the sum of missing values for each column like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Name 0\n", + "StudyHours 1\n", + "Grade 2\n", + "dtype: int64" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students.isnull().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "So now we know that there's one missing **StudyHours** value and two missing **Grade** values.\n", + "\n", + "To see them in context, we can filter the DataFrame to include only rows where any of the columns (axis 1 of the DataFrame) are null." + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGrade
22Bill8.0NaN
23TedNaNNaN
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "22 Bill 8.0 NaN\n", + "23 Ted NaN NaN" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students[df_students.isnull().any(axis=1)]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "When the DataFrame is retrieved, the missing numeric values show up as **NaN** (*not a number*).\n", + "\n", + "So now that we've found the null values, what can we do about them?\n", + "\n", + "One common approach is to *impute* replacement values. For example, if the number of study hours is missing, we could just assume that the student studied for an average amount of time and replace the missing value with the mean study hours. To do this, we can use the **fillna** method, like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGrade
0Dan10.00000050.0
1Joann11.50000050.0
2Pedro9.00000047.0
3Rosie16.00000097.0
4Ethan9.25000049.0
5Vicky1.0000003.0
6Frederic11.50000053.0
7Jimmie9.00000042.0
8Rhonda8.50000026.0
9Giovanni14.50000074.0
10Francesca15.50000082.0
11Rajab13.75000062.0
12Naiyana9.00000037.0
13Kian8.00000015.0
14Jenny15.50000070.0
15Jakeem8.00000027.0
16Helena9.00000036.0
17Ismat6.00000035.0
18Anila10.00000048.0
19Skye12.00000052.0
20Daniel12.50000063.0
21Aisha12.00000064.0
22Bill8.000000NaN
23Ted10.413043NaN
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "0 Dan 10.000000 50.0\n", + "1 Joann 11.500000 50.0\n", + "2 Pedro 9.000000 47.0\n", + "3 Rosie 16.000000 97.0\n", + "4 Ethan 9.250000 49.0\n", + "5 Vicky 1.000000 3.0\n", + "6 Frederic 11.500000 53.0\n", + "7 Jimmie 9.000000 42.0\n", + "8 Rhonda 8.500000 26.0\n", + "9 Giovanni 14.500000 74.0\n", + "10 Francesca 15.500000 82.0\n", + "11 Rajab 13.750000 62.0\n", + "12 Naiyana 9.000000 37.0\n", + "13 Kian 8.000000 15.0\n", + "14 Jenny 15.500000 70.0\n", + "15 Jakeem 8.000000 27.0\n", + "16 Helena 9.000000 36.0\n", + "17 Ismat 6.000000 35.0\n", + "18 Anila 10.000000 48.0\n", + "19 Skye 12.000000 52.0\n", + "20 Daniel 12.500000 63.0\n", + "21 Aisha 12.000000 64.0\n", + "22 Bill 8.000000 NaN\n", + "23 Ted 10.413043 NaN" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students.StudyHours = df_students.StudyHours.fillna(df_students.StudyHours.mean())\n", + "df_students" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Alternatively, it might be important to ensure that you only use data you know to be absolutely correct. In this case, you can drop rows or columns that contain null values by using the **dropna** method. For example, we'll remove rows (axis 0 of the DataFrame) where any of the columns contain null values:" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGrade
0Dan10.0050.0
1Joann11.5050.0
2Pedro9.0047.0
3Rosie16.0097.0
4Ethan9.2549.0
5Vicky1.003.0
6Frederic11.5053.0
7Jimmie9.0042.0
8Rhonda8.5026.0
9Giovanni14.5074.0
10Francesca15.5082.0
11Rajab13.7562.0
12Naiyana9.0037.0
13Kian8.0015.0
14Jenny15.5070.0
15Jakeem8.0027.0
16Helena9.0036.0
17Ismat6.0035.0
18Anila10.0048.0
19Skye12.0052.0
20Daniel12.5063.0
21Aisha12.0064.0
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "0 Dan 10.00 50.0\n", + "1 Joann 11.50 50.0\n", + "2 Pedro 9.00 47.0\n", + "3 Rosie 16.00 97.0\n", + "4 Ethan 9.25 49.0\n", + "5 Vicky 1.00 3.0\n", + "6 Frederic 11.50 53.0\n", + "7 Jimmie 9.00 42.0\n", + "8 Rhonda 8.50 26.0\n", + "9 Giovanni 14.50 74.0\n", + "10 Francesca 15.50 82.0\n", + "11 Rajab 13.75 62.0\n", + "12 Naiyana 9.00 37.0\n", + "13 Kian 8.00 15.0\n", + "14 Jenny 15.50 70.0\n", + "15 Jakeem 8.00 27.0\n", + "16 Helena 9.00 36.0\n", + "17 Ismat 6.00 35.0\n", + "18 Anila 10.00 48.0\n", + "19 Skye 12.00 52.0\n", + "20 Daniel 12.50 63.0\n", + "21 Aisha 12.00 64.0" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_students = df_students.dropna(axis=0, how='any')\n", + "df_students" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Explore data in the DataFrame\n", + "\n", + "Now that we've cleaned up the missing values, we're ready to explore the data in the DataFrame. Let's start by comparing the mean study hours and grades." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Average weekly study hours: 10.52\n", + "Average grade: 49.18\n" + ] + } + ], + "source": [ + "# Get the mean study hours using to column name as an index\n", + "mean_study = df_students['StudyHours'].mean()\n", + "\n", + "# Get the mean grade using the column name as a property (just to make the point!)\n", + "mean_grade = df_students.Grade.mean()\n", + "\n", + "# Print the mean study hours and mean grade\n", + "print('Average weekly study hours: {:.2f}\\nAverage grade: {:.2f}'.format(mean_study, mean_grade))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "OK, let's filter the DataFrame to find only the students who studied for more than the average amount of time." + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGrade
1Joann11.5050.0
3Rosie16.0097.0
6Frederic11.5053.0
9Giovanni14.5074.0
10Francesca15.5082.0
11Rajab13.7562.0
14Jenny15.5070.0
19Skye12.0052.0
20Daniel12.5063.0
21Aisha12.0064.0
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade\n", + "1 Joann 11.50 50.0\n", + "3 Rosie 16.00 97.0\n", + "6 Frederic 11.50 53.0\n", + "9 Giovanni 14.50 74.0\n", + "10 Francesca 15.50 82.0\n", + "11 Rajab 13.75 62.0\n", + "14 Jenny 15.50 70.0\n", + "19 Skye 12.00 52.0\n", + "20 Daniel 12.50 63.0\n", + "21 Aisha 12.00 64.0" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Get students who studied for the mean or more hours\n", + "df_students[df_students.StudyHours > mean_study]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note that the filtered result is itself a DataFrame, so you can work with its columns just like any other DataFrame.\n", + "\n", + "For example, let's find the average grade for students who undertook more than the average amount of study time." + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(66.7)" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# What was their mean grade?\n", + "df_students[df_students.StudyHours > mean_study].Grade.mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's assume that the passing grade for the course is 60.\n", + "\n", + "We can use that information to add a new column to the DataFrame that indicates whether or not each student passed.\n", + "\n", + "First, we'll create a Pandas **Series** containing the pass/fail indicator (True or False), and then we'll concatenate that series as a new column (axis 1) in the DataFrame." + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGradePass
0Dan10.0050.0False
1Joann11.5050.0False
2Pedro9.0047.0False
3Rosie16.0097.0True
4Ethan9.2549.0False
5Vicky1.003.0False
6Frederic11.5053.0False
7Jimmie9.0042.0False
8Rhonda8.5026.0False
9Giovanni14.5074.0True
10Francesca15.5082.0True
11Rajab13.7562.0True
12Naiyana9.0037.0False
13Kian8.0015.0False
14Jenny15.5070.0True
15Jakeem8.0027.0False
16Helena9.0036.0False
17Ismat6.0035.0False
18Anila10.0048.0False
19Skye12.0052.0False
20Daniel12.5063.0True
21Aisha12.0064.0True
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade Pass\n", + "0 Dan 10.00 50.0 False\n", + "1 Joann 11.50 50.0 False\n", + "2 Pedro 9.00 47.0 False\n", + "3 Rosie 16.00 97.0 True\n", + "4 Ethan 9.25 49.0 False\n", + "5 Vicky 1.00 3.0 False\n", + "6 Frederic 11.50 53.0 False\n", + "7 Jimmie 9.00 42.0 False\n", + "8 Rhonda 8.50 26.0 False\n", + "9 Giovanni 14.50 74.0 True\n", + "10 Francesca 15.50 82.0 True\n", + "11 Rajab 13.75 62.0 True\n", + "12 Naiyana 9.00 37.0 False\n", + "13 Kian 8.00 15.0 False\n", + "14 Jenny 15.50 70.0 True\n", + "15 Jakeem 8.00 27.0 False\n", + "16 Helena 9.00 36.0 False\n", + "17 Ismat 6.00 35.0 False\n", + "18 Anila 10.00 48.0 False\n", + "19 Skye 12.00 52.0 False\n", + "20 Daniel 12.50 63.0 True\n", + "21 Aisha 12.00 64.0 True" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "passes = pd.Series(df_students['Grade'] >= 60)\n", + "df_students = pd.concat([df_students, passes.rename(\"Pass\")], axis=1)\n", + "\n", + "df_students" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "DataFrames are designed for tabular data, and you can use them to perform many of the same kinds of data-analytics operations you can do in a relational database, such as grouping and aggregating tables of data.\n", + "\n", + "For example, you can use the **groupby** method to group the student data into groups based on the **Pass** column you added previously and to count the number of names in each group. In other words, you can determine how many students passed and failed." + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pass\n", + "False 15\n", + "True 7\n", + "Name: Name, dtype: int64\n" + ] + } + ], + "source": [ + "print(df_students.groupby(df_students.Pass).Name.count())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can aggregate multiple fields in a group using any available aggregation function. For example, you can find the mean study time and grade for the groups of students who passed and failed the course." + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " StudyHours Grade\n", + "Pass \n", + "False 8.783333 38.000000\n", + "True 14.250000 73.142857\n" + ] + } + ], + "source": [ + "print(df_students.groupby(df_students.Pass)[['StudyHours', 'Grade']].mean())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "DataFrames are amazingly versatile and make it easy to manipulate data. Many DataFrame operations return a new copy of the DataFrame, so if you want to modify a DataFrame but keep the existing variable, you need to assign the result of the operation to the existing variable. For example, the following code sorts the student data into descending order by Grade and assigns the resulting sorted DataFrame to the original **df_students** variable." + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGradePass
3Rosie16.0097.0True
10Francesca15.5082.0True
9Giovanni14.5074.0True
14Jenny15.5070.0True
21Aisha12.0064.0True
20Daniel12.5063.0True
11Rajab13.7562.0True
6Frederic11.5053.0False
19Skye12.0052.0False
0Dan10.0050.0False
1Joann11.5050.0False
4Ethan9.2549.0False
18Anila10.0048.0False
2Pedro9.0047.0False
7Jimmie9.0042.0False
12Naiyana9.0037.0False
16Helena9.0036.0False
17Ismat6.0035.0False
15Jakeem8.0027.0False
8Rhonda8.5026.0False
13Kian8.0015.0False
5Vicky1.003.0False
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade Pass\n", + "3 Rosie 16.00 97.0 True\n", + "10 Francesca 15.50 82.0 True\n", + "9 Giovanni 14.50 74.0 True\n", + "14 Jenny 15.50 70.0 True\n", + "21 Aisha 12.00 64.0 True\n", + "20 Daniel 12.50 63.0 True\n", + "11 Rajab 13.75 62.0 True\n", + "6 Frederic 11.50 53.0 False\n", + "19 Skye 12.00 52.0 False\n", + "0 Dan 10.00 50.0 False\n", + "1 Joann 11.50 50.0 False\n", + "4 Ethan 9.25 49.0 False\n", + "18 Anila 10.00 48.0 False\n", + "2 Pedro 9.00 47.0 False\n", + "7 Jimmie 9.00 42.0 False\n", + "12 Naiyana 9.00 37.0 False\n", + "16 Helena 9.00 36.0 False\n", + "17 Ismat 6.00 35.0 False\n", + "15 Jakeem 8.00 27.0 False\n", + "8 Rhonda 8.50 26.0 False\n", + "13 Kian 8.00 15.0 False\n", + "5 Vicky 1.00 3.0 False" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Create a DataFrame with the data sorted by Grade (descending)\n", + "df_students = df_students.sort_values('Grade', ascending=False)\n", + "\n", + "# Show the DataFrame\n", + "df_students" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Summary\n", + "\n", + "NumPy and DataFrames are the workhorses of data science in Python. They provide us ways to load, explore, and analyze tabular data. As we will learn in subsequent modules, even advanced analysis methods typically rely on NumPy and Pandas for these important roles.\n", + "\n", + "In our next workbook, we'll take a look at how create graphs and explore your data in more interesting ways." + ] + } + ], + "metadata": { + "kernel_info": { + "name": "conda-env-azureml_py38-py" + }, + "kernelspec": { + "display_name": "Python 3", + "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.12.5" + }, + "nteract": { + "version": "nteract-front-end@1.0.0" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/2-Regression/2-Data/02-visualize-data.ipynb b/2-Regression/2-Data/02-visualize-data.ipynb new file mode 100644 index 0000000000..c34eab8ac4 --- /dev/null +++ b/2-Regression/2-Data/02-visualize-data.ipynb @@ -0,0 +1,902 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exploring data with Python - visualize data\n", + "\n", + "In this notebook, we'll apply a few techniques to analyze data with basic statistics and visualize it using graphs.\n", + "\n", + "## Loading our data\n", + "\n", + "Before we begin, let's load the same data about study hours that we analyzed in the previous notebook. We'll also recalculate who passed the class in the same way as last time.\n", + "\n", + "Run the code in the cell below by clicking the **► Run** button to see the data." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "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", + "
NameStudyHoursGradePass
0Dan10.0050.0False
1Joann11.5050.0False
2Pedro9.0047.0False
3Rosie16.0097.0True
4Ethan9.2549.0False
5Vicky1.003.0False
6Frederic11.5053.0False
7Jimmie9.0042.0False
8Rhonda8.5026.0False
9Giovanni14.5074.0True
10Francesca15.5082.0True
11Rajab13.7562.0True
12Naiyana9.0037.0False
13Kian8.0015.0False
14Jenny15.5070.0True
15Jakeem8.0027.0False
16Helena9.0036.0False
17Ismat6.0035.0False
18Anila10.0048.0False
19Skye12.0052.0False
20Daniel12.5063.0True
21Aisha12.0064.0True
\n", + "
" + ], + "text/plain": [ + " Name StudyHours Grade Pass\n", + "0 Dan 10.00 50.0 False\n", + "1 Joann 11.50 50.0 False\n", + "2 Pedro 9.00 47.0 False\n", + "3 Rosie 16.00 97.0 True\n", + "4 Ethan 9.25 49.0 False\n", + "5 Vicky 1.00 3.0 False\n", + "6 Frederic 11.50 53.0 False\n", + "7 Jimmie 9.00 42.0 False\n", + "8 Rhonda 8.50 26.0 False\n", + "9 Giovanni 14.50 74.0 True\n", + "10 Francesca 15.50 82.0 True\n", + "11 Rajab 13.75 62.0 True\n", + "12 Naiyana 9.00 37.0 False\n", + "13 Kian 8.00 15.0 False\n", + "14 Jenny 15.50 70.0 True\n", + "15 Jakeem 8.00 27.0 False\n", + "16 Helena 9.00 36.0 False\n", + "17 Ismat 6.00 35.0 False\n", + "18 Anila 10.00 48.0 False\n", + "19 Skye 12.00 52.0 False\n", + "20 Daniel 12.50 63.0 True\n", + "21 Aisha 12.00 64.0 True" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "# Load data from a text file\n", + "df_students = pd.read_csv('grades.csv',delimiter=',',header='infer')\n", + "\n", + "# Remove any rows with missing data\n", + "df_students = df_students.dropna(axis=0, how='any')\n", + "\n", + "# Calculate who passed, assuming '60' is the grade needed to pass\n", + "passes = pd.Series(df_students['Grade'] >= 60)\n", + "\n", + "# Save who passed to the Pandas dataframe\n", + "df_students = pd.concat([df_students, passes.rename(\"Pass\")], axis=1)\n", + "\n", + "\n", + "# Print the result out into this notebook\n", + "df_students " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Visualizing data with Matplotlib\n", + "\n", + "DataFrames provide a great way to explore and analyze tabular data, but sometimes a picture is worth a thousand rows and columns. The **Matplotlib** library provides the foundation for plotting data visualizations that can greatly enhance your ability to analyze the data.\n", + "\n", + "Let's start with a simple bar chart that shows the grade of each student.\n", + "\n", + "**Note**: This first graph may take one to two minutes to render. Subsequent graphs will render more quickly." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAigAAAGdCAYAAAA44ojeAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABAjUlEQVR4nO3dd3hUZf7+8XtKkklPSCChJpHeewmICIQFSwCNioIalF0syIIKLihFWaXYKIqyIFJU1LUglt24CottEVgQFhGRJiCQIFKiSCCQz+8Pvjk/BlBRkuWEfb+uay7ImXOe+cxpc8+Z55nxmJkJAADARbznugAAAICTEVAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDr+M91Ab9FUVGRdu7cqejoaHk8nnNdDgAAOANmpu+//16VKlWS1/vz10jKZEDZuXOnqlateq7LAAAAv8H27dtVpUqVn52nTAaU6OhoScefYExMzDmuBgAAnIn8/HxVrVrVeR3/Ob86oHz44Yd65JFHtGLFCu3atUvz589Xz549nfvNTKNHj9aMGTO0f/9+tWvXTk8//bRq1qzpzLN3714NHDhQb731lrxer7KysjR58mRFRUWdUQ3FH+vExMQQUAAAKGPOpHvGr+4ke/DgQTVu3FhTp0497f0PP/ywpkyZomnTpmnp0qWKjIxU165dVVBQ4MzTp08frV27Vu+9957efvttffjhh+rfv/+vLQUAAJynPGfza8YejyfoCoqZqVKlSrr77rs1ZMgQSdKBAweUlJSk2bNn69prr9W6detUr149LV++XC1atJAk5eTk6NJLL9U333yjSpUq/eLj5ufnKzY2VgcOHOAKCgAAZcSvef0u0WHGW7ZsUW5urjIyMpxpsbGxat26tZYsWSJJWrJkieLi4pxwIkkZGRnyer1aunTpads9fPiw8vPzg24AAOD8VaIBJTc3V5KUlJQUND0pKcm5Lzc3VxUqVAi63+/3q1y5cs48Jxs3bpxiY2OdGyN4AAA4v5WJL2obPny4Dhw44Ny2b99+rksCAAClqEQDSnJysiQpLy8vaHpeXp5zX3Jysnbv3h10/9GjR7V3715nnpOFhYU5I3YYuQMAwPmvRANKWlqakpOTtXDhQmdafn6+li5dqvT0dElSenq69u/frxUrVjjzLFq0SEVFRWrdunVJlgMAAMqoX/09KD/88IM2btzo/L1lyxatWrVK5cqVU7Vq1TR48GA9+OCDqlmzptLS0jRy5EhVqlTJGelTt25ddevWTX/4wx80bdo0FRYW6o477tC11157RiN4AADA+e9XB5R///vf6tixo/P3XXfdJUnKzs7W7Nmzdc899+jgwYPq37+/9u/frwsvvFA5OTkKBALOMi+88ILuuOMOde7c2fmitilTppTA0wEAAOeDs/oelHOF70EBAKDsOWffgwIAAFASCCgAAMB1CCgAAMB1CCgAAMB1fvUoHpy/Uoe9c1bLfz3+shKqBADwv44rKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHUIKAAAwHX857oAAOeH1GHvnHUbX4+/rAQqAXA+4AoKAABwHQIKAABwnRIPKMeOHdPIkSOVlpam8PBwVa9eXX/+859lZs48ZqZRo0apYsWKCg8PV0ZGhjZs2FDSpQAAgDKqxAPKhAkT9PTTT+vJJ5/UunXrNGHCBD388MN64oknnHkefvhhTZkyRdOmTdPSpUsVGRmprl27qqCgoKTLAQAAZVCJd5L917/+pR49euiyy453dktNTdWLL76oZcuWSTp+9WTSpEkaMWKEevToIUmaO3eukpKS9MYbb+jaa68t6ZIAAEAZU+JXUNq2bauFCxfqq6++kiStXr1aH3/8sS655BJJ0pYtW5Sbm6uMjAxnmdjYWLVu3VpLliw5bZuHDx9Wfn5+0A0AAJy/SvwKyrBhw5Sfn686derI5/Pp2LFjeuihh9SnTx9JUm5uriQpKSkpaLmkpCTnvpONGzdODzzwQEmXCgAAXKrEr6D89a9/1QsvvKB58+Zp5cqVmjNnjh599FHNmTPnN7c5fPhwHThwwLlt3769BCsGAABuU+JXUIYOHaphw4Y5fUkaNmyorVu3aty4ccrOzlZycrIkKS8vTxUrVnSWy8vLU5MmTU7bZlhYmMLCwkq6VAAA4FIlfgXlxx9/lNcb3KzP51NRUZEkKS0tTcnJyVq4cKFzf35+vpYuXar09PSSLgcAAJRBJX4FJTMzUw899JCqVaum+vXr67PPPtPjjz+um2++WZLk8Xg0ePBgPfjgg6pZs6bS0tI0cuRIVapUST179izpcgAAQBlU4gHliSee0MiRI3X77bdr9+7dqlSpkm655RaNGjXKmeeee+7RwYMH1b9/f+3fv18XXnihcnJyFAgESrocAABQBnnsxK94LSPy8/MVGxurAwcOKCYm5lyXc9442x9744fe/rfxY4EAfsmvef3mt3gAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDr+M91AQDOjdRh75zV8l+Pv6yEKgGAU3EFBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA6/ZgwALnO2vzQt8WvTKPu4ggIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFzHf64LAAAAJSt12Dtn3cbX4y8rgUp+O66gAAAA1yGgAAAA1yGgAAAA16EPCgAA59D50F+kNHAFBQAAuA4BBQAAuA4f8QBwLS59A/+7uIICAABch4ACAABcp1QCyo4dO3T99dcrISFB4eHhatiwof79738795uZRo0apYoVKyo8PFwZGRnasGFDaZQCAADKoBIPKPv27VO7du0UEhKiv//97/riiy/02GOPKT4+3pnn4Ycf1pQpUzRt2jQtXbpUkZGR6tq1qwoKCkq6HAAAUAaVeCfZCRMmqGrVqpo1a5YzLS0tzfm/mWnSpEkaMWKEevToIUmaO3eukpKS9MYbb+jaa68t6ZIAAEAZU+JXUN588021aNFCV199tSpUqKCmTZtqxowZzv1btmxRbm6uMjIynGmxsbFq3bq1lixZUtLlAACAMqjEA8rmzZv19NNPq2bNmnr33Xd122236Y9//KPmzJkjScrNzZUkJSUlBS2XlJTk3Heyw4cPKz8/P+gGAADOXyX+EU9RUZFatGihsWPHSpKaNm2qzz//XNOmTVN2dvZvanPcuHF64IEHSrJMAADgYiV+BaVixYqqV69e0LS6detq27ZtkqTk5GRJUl5eXtA8eXl5zn0nGz58uA4cOODctm/fXtJlAwAAFynxgNKuXTutX78+aNpXX32llJQUScc7zCYnJ2vhwoXO/fn5+Vq6dKnS09NP22ZYWJhiYmKCbgAA4PxV4h/x3HnnnWrbtq3Gjh2ra665RsuWLdP06dM1ffp0SZLH49HgwYP14IMPqmbNmkpLS9PIkSNVqVIl9ezZs6TLAQAAZVCJB5SWLVtq/vz5Gj58uMaMGaO0tDRNmjRJffr0cea55557dPDgQfXv31/79+/XhRdeqJycHAUCgZIuBwAAlEGl8mOBl19+uS6//PKfvN/j8WjMmDEaM2ZMaTw8AAAo4/gtHgAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4Dr+c10AcK6lDnvnrJb/evxlJVQJAKAYV1AAAIDrEFAAAIDrEFAAAIDr0AcFAIBfgX5r/x1cQQEAAK5DQAEAAK5DQAEAAK5DQAEAAK5DQAEAAK5DQAEAAK7DMOPTKOkhZGfb3unaBADgfMYVFAAA4DoEFAAA4Dp8xINSw0dbAIDfiisoAADAdQgoAADAdQgoAADAdeiDAgA4b9EXruziCgoAAHAdAgoAAHAdAgoAAHAd+qCUUXyuCgA4n3EFBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuA4BBQAAuI7/XBcAnG9Sh71z1m18Pf6yEqgEAMourqAAAADXIaAAAADXKfWAMn78eHk8Hg0ePNiZVlBQoAEDBighIUFRUVHKyspSXl5eaZcCAADKiFINKMuXL9df/vIXNWrUKGj6nXfeqbfeekuvvPKKPvjgA+3cuVNXXnllaZYCAADKkFILKD/88IP69OmjGTNmKD4+3pl+4MABzZw5U48//rg6deqk5s2ba9asWfrXv/6lTz/9tLTKAQAAZUipBZQBAwbosssuU0ZGRtD0FStWqLCwMGh6nTp1VK1aNS1ZsuS0bR0+fFj5+flBNwAAcP4qlWHGL730klauXKnly5efcl9ubq5CQ0MVFxcXND0pKUm5ubmnbW/cuHF64IEHSqNUAADgQiV+BWX79u0aNGiQXnjhBQUCgRJpc/jw4Tpw4IBz2759e4m0CwAA3KnEA8qKFSu0e/duNWvWTH6/X36/Xx988IGmTJkiv9+vpKQkHTlyRPv37w9aLi8vT8nJyadtMywsTDExMUE3AABw/irxj3g6d+6sNWvWBE276aabVKdOHf3pT39S1apVFRISooULFyorK0uStH79em3btk3p6eklXQ4AACiDSjygREdHq0GDBkHTIiMjlZCQ4Ezv16+f7rrrLpUrV04xMTEaOHCg0tPT1aZNm5IuBwAAlEHn5Ld4Jk6cKK/Xq6ysLB0+fFhdu3bVU089dS5KAQAALvRfCSiLFy8O+jsQCGjq1KmaOnXqf+PhAQBAGcNv8QAAANchoAAAANchoAAAANchoAAAANc5J6N4AOBcSR32zlkt//X4y0qoEgA/hysoAADAdQgoAADAdQgoAADAdeiDAgD4TejPg9LEFRQAAOA6BBQAAOA6fMQDAHCFs/3ISOJjo/MJV1AAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDrEFAAAIDr+M91AQCA0pc67J2zWv7r8ZeVUCXAmeEKCgAAcB0CCgAAcB0CCgAAcB36oABlwNn2H5DoQwCgbOEKCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcB0CCgAAcJ0SDyjjxo1Ty5YtFR0drQoVKqhnz55av3590DwFBQUaMGCAEhISFBUVpaysLOXl5ZV0KQAAoIwq8YDywQcfaMCAAfr000/13nvvqbCwUL/73e908OBBZ54777xTb731ll555RV98MEH2rlzp6688sqSLgUAAJRR/pJuMCcnJ+jv2bNnq0KFClqxYoUuuugiHThwQDNnztS8efPUqVMnSdKsWbNUt25dffrpp2rTpk1JlwQAAMqYUu+DcuDAAUlSuXLlJEkrVqxQYWGhMjIynHnq1KmjatWqacmSJadt4/Dhw8rPzw+6AQCA81epBpSioiINHjxY7dq1U4MGDSRJubm5Cg0NVVxcXNC8SUlJys3NPW0748aNU2xsrHOrWrVqaZYNAADOsVINKAMGDNDnn3+ul1566azaGT58uA4cOODctm/fXkIVAgAANyrxPijF7rjjDr399tv68MMPVaVKFWd6cnKyjhw5ov379wddRcnLy1NycvJp2woLC1NYWFhplQoAAFymxK+gmJnuuOMOzZ8/X4sWLVJaWlrQ/c2bN1dISIgWLlzoTFu/fr22bdum9PT0ki4HAACUQSV+BWXAgAGaN2+eFixYoOjoaKdfSWxsrMLDwxUbG6t+/frprrvuUrly5RQTE6OBAwcqPT2dETwAAEBSKQSUp59+WpJ08cUXB02fNWuW+vbtK0maOHGivF6vsrKydPjwYXXt2lVPPfVUSZcCAADKqBIPKGb2i/MEAgFNnTpVU6dOLemHBwAA5wF+iwcAALgOAQUAALgOAQUAALgOAQUAALgOAQUAALgOAQUAALgOAQUAALgOAQUAALgOAQUAALgOAQUAALgOAQUAALhOif8WDwD8r0kd9s5ZLf/1+MtKqBLg/MEVFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4DoEFAAA4Dr+c10A8GukDnvnrNv4evxlJVAJAKA0cQUFAAC4DgEFAAC4DgEFAAC4DgEFAAC4DgEFAAC4DgEFAAC4zjkNKFOnTlVqaqoCgYBat26tZcuWnctyAACAS5yzgPLyyy/rrrvu0ujRo7Vy5Uo1btxYXbt21e7du89VSQAAwCXOWUB5/PHH9Yc//EE33XST6tWrp2nTpikiIkLPPvvsuSoJAAC4xDn5JtkjR45oxYoVGj58uDPN6/UqIyNDS5YsOWX+w4cP6/Dhw87fBw4ckCTl5+eXSn1Fh388q+VPruts2ysrbZaFGkujzbJQY2m0WRZqLI02T3fe+V9Yl/+rz7s02iwLNZ6uzZJQ3KaZ/fLMdg7s2LHDJNm//vWvoOlDhw61Vq1anTL/6NGjTRI3bty4cePG7Ty4bd++/RezQpn4LZ7hw4frrrvucv4uKirS3r17lZCQII/H81+tJT8/X1WrVtX27dsVExPjyjbLQo2l0WZZqLE02iwLNZZGm2WhxtJosyzUWFbaLAs1lkabpVHjmTIzff/996pUqdIvzntOAkpiYqJ8Pp/y8vKCpufl5Sk5OfmU+cPCwhQWFhY0LS4urjRL/EUxMTElvmFLus2yUGNptFkWaiyNNstCjaXRZlmosTTaLAs1lpU2y0KNpdFmadR4JmJjY89ovnPSSTY0NFTNmzfXwoULnWlFRUVauHCh0tPTz0VJAADARc7ZRzx33XWXsrOz1aJFC7Vq1UqTJk3SwYMHddNNN52rkgAAgEucs4DSq1cvffvttxo1apRyc3PVpEkT5eTkKCkp6VyVdEbCwsI0evToUz5yclObZaHG0mizLNRYGm2WhRpLo82yUGNptFkWaiwrbZaFGkujzdKosTR4zM5krA8AAMB/D7/FAwAAXIeAAgAAXIeAAgAAXIeAcp6bPXt2qX9nzNdffy2Px6NVq1b95Dz333+/mjRpclaP82vb8Hg8euONN87qMS+++GINHjzY+fe36tu3r3r27Hna+35p/aWmpmrSpEln9Di/9jmfybb7b1i8eLE8Ho/2799/xsv83Do9neLn2qdPn19f4Bk62/2kpJyL7fpr9lO3Ofnccib7VkmcX0rCybX+0rF04v2/5bj7b/qfDyh9+/aVx+ORx+NRSEiIkpKS1KVLFz377LMqKio6o+V/zUny19QTGhqqGjVqaMyYMTp69GiJtRsSEqK0tDTdc889KigoOKu2PB6P0tLSJEl/+tOfJP22AzczM1PdunU77X0fffSRPB6PrrzyyqDvzjm5juLbxo0bf/VzOp2+ffvq888/lyS9/vrr+vOf//yb25kzZ44WLFjwm9b98uXL1b9/f+Xm5mrQoEGqUaOGAoGAkpKS1K5dOz399NP68cfjv7uxa9cuXXLJJaet4XTr6uuvv/5Nz+lsnbw/9u3bV7fffvtPjioonn/8+PHOtMmTJ+vqq6/+1d8mffvtt59V3Scf76+++qoCgYAee+yxM9pPfus5o6TPNb/Ubkm/eJVW/cWWLFkin8+nyy677LT3/9wbnCFDhgSdW6TjvwF32223qVq1agoLC1NycrK6du2qTz755BdrOdvXlTNR/Hx37dql2bNnO9Pbtm2rXbt2nfGXoblZmfiq+9LWrVs3zZo1S8eOHVNeXp5ycnI0aNAgvfrqq3rzzTfl9/93V1NxPYcPH9bf/vY3DRgwQCEhIUE/rng27RYWFmrFihXKzs5WUVGRHn300d/c1onOZshav379lJWVpW+++UZVqlQJum/WrFlq0aKFGjVqdEZ1lC9fPujvI0eOKDQ09DfXJknlypX7TcsdO3ZMZnbade/xeDRhwoRfbKN8+fLavHmz2rVrp7i4OI0dO1YNGzZUWFiY1qxZo+nTp6ty5crq3r37ab+Judjp1tXBgweD/i6JdXWmTrdOoqKifnKdBAIBTZgwQbfccovi4+MVGxuryMjIX/24v2WZn/LMM89owIABmjZtGt/hdI7NnDlTAwcO1MyZM7Vz584z+ir1YlFRUYqKigqatnz5cu3bt09z5szRBRdcoLy8PC1cuFDffffdGbVZ2q8rJz7fH3/80blSHhoa+rPngTKlRH79rwzLzs62Hj16nDJ94cKFJslmzJhhZmaPPfaYNWjQwCIiIqxKlSp222232ffff+8sP2vWLIuJibHu3bubz+czSRYXF2d/+9vfnDaPHj1qN998s6WmplogELBatWrZpEmTgh63evXqlpycbI888oglJydbuXLlrEqVKta6dWsrKCiwu+++23w+n4WEhFhiYqIFAgGrWrWq/eUvfzEzs1mzZlnVqlUtPDzcevbsaY8++qjFxsY6dY4ePdoaN25sM2bMsIiICCveBb766itLS0tzfsgpISHB/v73vzt17d2713r37m2JiYnm9XotMjLSnn32WTMz27Jli0myzz77zFJSUoJ+EMrj8ViFChWsYcOGVr9+fZs7d66lpKRYTEyM9erVy/Lz883MrLCw0OLj461atWoWGxtr5cqVs8suu8xWr15tUVFR9vTTT9ugQYNMkr322mt28cUXm8/ns0AgYGlpaRYaGmrJyck2YMAA69Chgw0YMMAkWXR0tF188cVmZnbrrbdaaGiohYeHm8fjsfbt29u3337rPMcXX3zRfD6fRUZGWnJysrVo0cISEhJs0KBB1qFDBxs0aNAp2yAhIcECgYBVq1bNFixYYJMnTza/32+BQMDCwsLM6/VaVlaWVa1a1Zo2bWqxsbH21ltvWVRUlEmyyMhI8/v9JskiIiLM7/eb3++3Ro0aOT+mmZKSYnXq1LGEhASrU6eOhYaGWlRUlEVERFh0dLR17NgxaN136tTJoqKirGrVqjZq1Cjr2LGjeb1eCwkJsR49eljDhg0tLCzMatasaR6PxyRZ7969LSEhwTp06GD16tUzv99vHo/HPB6PhYSEWEREhAUCAWvQoIHNmzfPZs2aZbGxsZaTk2MREREWEhJiqampFhsba0lJSTZ69GgzM5s5c6bVq1fPJFlsbKylpaVZeHi4RUdHW/Pmza1fv36WmJjo7Is1a9Y0M7M9e/ZYt27dLDQ01NmXwsPDLTU11YYOHWpmZpdccolFR0c7x1qjRo0sISHBeU5er9fCwsKcfWnx4sUmybp162bp6enm8/ksLCzMFi9eHHQMNm7c2EaMGGFmZsuWLbOMjAxLSEiwmJgYS0pKsg4dOpiZ2YQJEywQCDjniZ49e5rX67XY2FhbsGCBmZnNnTvXmjdvbn6/37xer3m9XouKirIGDRoEnWeSk5Od9V2rVi378ssvzczsn//8p0my999/3xISEszr9Vp6errNmDHD2rVrZ7Gxsc76fOSRR5xj6/LLL3eOyTlz5lh8fLzdeOONVrt2bdu6dauZmbVq1cri4+PN6/VaRESE3X///VZYWOish7feesskWbly5Sw6OtqaNm1qTZs2tUAgYFWqVLFWrVpZgwYNbObMmVa1alXzeDzWtm1bO3r0qE2YMMHKly9vgUDA2U+Tk5OdY/GVV16xChUqmMfjscjISAsEAhYdHW29evWy3r17W48ePeyhhx6yuLg4ZzvFx8fbBRdcYLGxsVa5cmXn/GNm9v3331tISIilpKSYz+ez+Ph4GzFihB05csRZhyffxo4d6yxffF4sdt1115kkZ9/4+9//7qzv4v1Jks2fP99ZZtSoUZacnGyrVq0yv99vLVu2DNqv5s+fb2FhYc7+sm3bNmvcuLF5vV6TZIFAwK6//nr7/vvvnWVOPM7q1KljkZGR1rVrV9uwYYNFRUXZl19+aampqVa3bl1nmeJ9qmrVqhYIBKxOnTrWvHlzi4uLs4iICOc8sW/fvqD9q3nz5hYeHm7p6enO/mdmtnHjRuvevbtVqFDBIiMjrUWLFvbee+/ZfwMB5ScCitnxE9Ull1xiZmYTJ060RYsW2ZYtW2zhwoVWu3Ztu+2224ICSvEJcdKkSfbKK69YbGyshYaG2nfffWdmZkeOHLFRo0bZ8uXLbfPmzfb8889bRESEvfzyy85jVq9e3fx+v9166622bt06e+utt8zn81m1atXs97//vbVt29aSkpIsNjbWrrjiCgsNDbW7777bvF6vvfzyy+b1em3ChAm2fv16mzx5ssXFxZ0SUCIjI61du3aWmJhoDRs2tGPHjlliYqKFhoba5MmT7cUXX7SEhATz+/1O7QMGDLAmTZrY8uXLLSsry9q2bWtvvvmmmQUHlN27dzvBYODAgfbJJ5/YypUr7YILLjCfz2dXXnmlrVmzxj788ENLTk62e++913nuPXr0sOTkZPvqq6/ss88+s8zMTKtcubKFh4fb/v37nYBSp04de/vtt61x48YmyeLj423t2rW2bNkymzhxonXo0MEJAE8++aStW7fO/vCHP5jX63XW6xVXXGGJiYnWsWNH5/FTU1MtMjLS3n//ffvPf/5jVapUMb/fHxRQirdBcnKyxcXF2ZVXXmkhISHWu3dvi4mJsYYNG5rP57OmTZvaRRddZNWrV7c+ffo4ASUkJMTS09MtPDzcebFq0aKFSbLExEQbNWqUhYSEWOvWrS0lJcUKCwutSpUqTtgbM2aMpaenW5MmTSwsLMzGjx9vd999tyUkJFjVqlVNkvXv3982bNhgDzzwgEmyLl26WPfu3a1Nmzbm9XotLS3NPv/8c3vjjTeck3V2drZ9+eWXtnr1aouMjLQuXbrYCy+8YKNHjzafz2fly5e3Pn362JQpU8zn89nIkSMtJCTEMjIyrFmzZhYZGWmJiYmWmZlpc+bMMY/HYwMHDrRAIGCTJk0ySVahQgW74YYbbMOGDVa3bl0nLCxfvtzGjh1rkszn89l3331n33zzjSUlJdmll15q//jHP6xRo0YmyQYNGmSBQMBycnLM6/Va+fLlTZJ9/vnndu2119o111xjCxYssGHDhjnrY86cOZaZmWm1a9c2SRYVFWWvvvqqLVq0yDwej0VERNiePXvMzGzlypXm8Xhs06ZNZnb8ZP/cc8/ZunXr7IsvvrCaNWtaWFiYDR482KKiouz99983SValShWbN2+etWrVypo0aWJRUVH23Xff2cyZM+3NN9+0gQMH2rPPPmvNmjWz+Ph48/l89vLLL1u/fv1MktWuXdvmzZtnDz74oHk8Hqtfv76Z/f+A0rp1a+vatat16tTJ2rdvb7Vr17bXXnvNNmzYYLfccov5fD6LiYmx1atX24cffmiJiYnOMblv3z7z+/2WlpZmu3fvNjOzBQsWmCT705/+ZFdeeaWlp6dbamqq3X///c7x0KxZM5NkixYtsvfff98JqsuWLbNPPvnEkpOTze/321VXXWVr1661ChUqmM/ns65du9rAgQOtbdu21qRJE5Nkf/3rX61+/foWEhJia9euNb/fb7/73e8sIiLCOnfubPfdd5/l5ORYcnKyNWzY0KKjo23AgAE2efJku/32202StW3b1urUqWO1atWyMWPGWEhIiPOLuDNnzrTKlSvbJ598Ys8884wlJydbhQoVbMKECc46rFixoqWmptrixYutdevW1qZNG+e5nhxQbrjhBvP5fDZ48GArKCiwV1991Vnfxeem4jdLRUVFdscdd1hqaqpt2LDBzMxq1qxpSUlJQa8n3bt3txtvvNEaN25s3bp1s7p161rr1q3tmWeesffee886depkoaGh1r9/f2eZWbNmOcfZ8uXLbcWKFc5yLVq0MDOzTp06WWRkpBUVFZmZ2c0332yS7NVXX7VNmzZZ48aNzePx2LPPPmubNm1yjrUTA0rr1q1t8eLFtnbtWmvfvr21bdvWqWHVqlU2bdo0W7NmjX311Vc2YsQICwQCTtAtTQSUnwkovXr1CkqmJ3rllVcsISHBWX7atGkmyR5//HFnnilTppjX67WHH374Jx9/wIABlpWV5fxdvXp1Cw8Pt6NHj1pRUZG999575vV6LTU11Xw+n+3YscNSUlLs+uuvNzOzzp0727Bhw6xChQrWokULu/TSS095DsUBpfhdf/GLktfrtVdffdU5WU2ZMsVZbtWqVSbJBg4caGZmmZmZdtNNNznrrPhKQ2RkpPPu94477jAzM0nWpEmToDruvPNOk2QrVqxwpg0dOtRat27t/L1u3TqTZP/85z/NzOzbb781SXb55ZebmTkB5ZlnnjEzc66EFF99iIyMtKuuuso6dOhgTZs2NUn2yiuvWO/eva18+fLOO18zs6VLlzrvXNavX2+bN282SUEn6Guvvda8Xq8TUG6++eaf3AYDBw40Sda9e3eTZKtWrbIlS5aYJLvmmmvM4/E4j1d8u/XWW+2WW25x3oUXP6+uXbvaNddcY5Js3bp1lpycbJKscePG9tFHH1lMTIwVFBQ4zz8yMtLi4uIsISEh6F3dX/7yF/N4PDZp0iTLzs4OevyIiAi76qqrLC4uznkhMzN79913LSwszPbt2xe0j7Zu3doSEhLMzOyyyy6zrl27miTbuHGjdejQwS688EKbOnWqc1Ju2bKlRUVF2X333efsE8VXJczMunTp4rxrLH5XWRxiiq8GRkdH2+zZs519Likpye6++25r06aNXXDBBVahQgVr1aqVcxXwZMX7T3Z2tvN/SdauXTtnnm7dullkZKRNmDDBzMwGDhzovMs/nRtvvNFpZ+HChac8tw4dOjgvqCdegSy2fPlyk2QpKSnWs2dPZ9u///77zjy/+93vTJIdOnQo6B1u8bnmnXfece43O/7iGh4ebpJszZo1ZmbWv39/k2QfffSRde7c2ZKTky0jI8N5jJo1a1p8fLwVFRU5x3NYWJizPxW3V/xC1q9fP+vfv79Vr17d2T433XSTSXJCT0pKitWuXdtSU1Ptgw8+cPbT2rVr27hx4yw7O9siIiLsvvvuc8JmRESEcxXV7Pg5ITEx0VJSUuzYsWPO9Nq1aztXPIuPr8jISHvxxRfNzKxt27bO1ejCwkJLTEy0W2+91Zo3b+6swxtuuMEJIadbhycGlOzsbGvZsqXFx8dbIBCwtm3b2vDhw2316tVB+9Zjjz1mvXv3trp169o333zjLF98hWXnzp1mZpaXl2d+v98WL15svXr1skqVKlnt2rWdUGFmdvjwYQsNDbWYmBhn2qxZs5zjrNjUqVMtJCTEeb433HCDhYaG2j//+U8rKChwjqfiY7hhw4bWtGlTu+6668zs/4fek6+gFDt53ZxO/fr17YknnvjJ+0sKfVB+hpk5HfDef/99jRs3Tl9++aXy8/N19OhRFRQUOJ1Xd+/eLUm68sorneWrVKmioqIirVu3zpk2depUPfvss9q2bZsOHTqkI0eOnNJxq6CgQLGxsSosLFRRUZFq1aqlkJAQHTt2TLVq1dKPP/6ov/71r5o/f74OHz6shIQEJScn65tvvlFmZmZQW+np6crJyZEkdezYUXXr1tUbb7yhTp06ye/3Kysry+nc2r17d2e5xo0bKyQkxBkFcNtttykrK0srV67U0aNH1bRpU7344ouSpG+++UYdO3bUVVdd5Sy/Zs2aoM90jxw5IklBv2BdsWJFZ71Jks/nU2JiojIzM+XxeJx1265du6Dn1KhRI+3evVuHDh1S48aNtXr1as2YMUOtWrVSZGSkrrvuOjVv3lyfffaZ7rzzToWFhalNmzbKyck55XNmSdq0aZPTQa5v377O9LCwsKD59+zZE7QNXn75ZWcbFPdRqVKlikJDQ9WoUSOnA2pBQYGSk5MVHx+vzZs3q3PnznrnnXd0zz33aPbs2apSpYo2btzo9LFJSkpyPuc+cf3UqVNHq1ev1g8//KCEhASnf8uhQ4d08ODBU36V9Msvv1RERIQOHDjg1FahQgX9+9//1owZM9SxY0d16tRJ+/fvdx7nhRdeUJ06ddSyZUtt3bpVR48elZ3wZdORkZE6cuSImjZtqoiICFWvXt3ZJiduz3LlyumHH35Q586dg7Zbsfz8fEnHfyTU6/XK6/WqqKhIe/bs0aZNm3Ts2DE1b95cffv21e9//3sVFRXJzLRt2zZNmDBBHTp0UO3atU95vldffbXWr1+vwsJCZ/rzzz+vV1991fm7YsWKzv/79++vhQsXas2aNTpy5IjmzZuniRMnOvfn5eVpxIgRWrx4sXbv3u10Rk5ISNDo0aPVqlWrU55bSEiIYmJitHv3bq1YsUL333+/PvnkEx04cMDpILlt2zZFR0c7HaW7d+/unGsOHz58yrY/sf3i+nv16qU1a9Zox44dzvPdtm2bGjRooAoVKkiSrrvuOlWpUkWvv/662rdvrx07dqhy5cravHmzPB6PoqOjdfjwYdnxN6syMy1ZskSvvfaaxowZIzNT5cqVVVBQ4NR+xx136K677nKO6T179jj9vqKjo1W9enWtWbPG2U8PHTqkUaNGycx09OhRHT58WJ07d9bTTz+tsLAwvfTSS7rqqqsUHx+vihUrqqCgQK1atZLX69WGDRs0atQobd26VZs3b1ZqaqokaceOHUpISNDu3bu1fv16LVu2TNnZ2WrXrp02bdqk/fv3a/r06UpISHDW24k/o1K8Dnfv3q1q1arpdCpVqqQPP/xQH330kd555x1Nnz5d48aNUyAQkM/nkySNGzdOsbGx+vTTT5WYmOgsm5iYqJiYGM2ZM0fDhg3T888/r5SUFF100UV66qmndPjwYeXl5SkiIkJHjhxx1r10/Fz5448/KiIiQpKCjjPp+DFTWFio6667TpLk9XpVuXJlzZw5U+XLl3f2n8qVK8vj8aiwsFBHjhzRhg0bNHr06NM+39PtX8Xr5ocfftD999+vd955R7t27dLRo0d16NAhbdu27bTrrST9z4/i+Tnr1q1TWlqavv76a11++eVq1KiRXnvtNa1YsUJTp06VpJ/tkX3y6IKXXnpJQ4YMUb9+/fSPf/xDq1at0k033eQc6MUSExO1atUqbdiwQYcOHVLXrl119OhR+Xw+rVixQhUrVtSQIUO0atUqrVu3TpMnTz6jkQyRkZEqV66cypUrp2effVZLly7VzJkzz2hdXHLJJdq6davuvPNOHTp0SCtXrtS0adNUo0YN56RxYq/xli1batWqVc7t1ltvVZ06dXTRRRcFrZ8T119mZqaSkpJ09OhRLVq0SNdff70knfJCFBISovDwcEnHO05Kx08mNWrUcA6u4o6QXbp00Y4dO7R161ZlZmYG1XTfffcpLS1NF110kTPq6OfWY2FhobMNKlWqpKFDhzrbYMqUKZKOh6zw8HCnB790POj6/X6FhYUpLCxMDz30kCTp5Zdfdnr5Fz+v4hqKT1ZFRUVOZ7o9e/bohx9+UMWKFbVq1SpNnjxZISEhat68ubKzs3+y137xOvb7/c56q1KliipWrOisp3fffVeHDh3SK6+8orVr1+rrr7/W1Vdfreuuu04hISFOAPvoo4+c/bG43uLaT6y7+AR+8nY7cV1K0pgxY7RmzRpnFMJ9992noUOH6pFHHtGaNWv08MMPa9CgQUpMTJSZaevWrbrooosUExOjXbt2BbXfvn17rV+/XnfffbcqVaqkpk2bSpLq1aunpUuXnnbdZGZmyuv1atu2bXrrrbdUWFgYFLSzs7Oddf2vf/1LmZmZCg0N1e23364dO3Y4I89OfG7S8W1YfOzu27dPBw8e1H333eecN5KTk4NGcX300UfOfvnaa68FbbeT2y/er/bt26cZM2bo97//vWrVqiXp/78RKJ7n0ksv1X/+8x8nzM+dO1crVqzQsWPHnP03MzNTnTp10tq1a7VhwwbVr19f4eHhzov7Rx99pNTUVN1www16//339fHHHwcd0ye+eBbvzyfupy1atFDv3r2VmZmpjIwM/elPf9J7772nPn36KCIiQk888YRq166tLVu2OPtQ8fPNzMzU3r17VatWLV177bXOdjxy5Ihz/pg5c6aOHj2qW265RZ9++qn27NmjoqIi+Xw+58VaCt4ni9fPL42oCQQC6tKli3JyctS8eXNdcsklio+Pd+po1KiRduzYoXffffeUZVNSUpz9etasWbrpppvk8Xi0bt06RUZGqkGDBioqKtKNN96ol19+Wf/4xz80duzYoO148raX5LyZqlSpkvx+v+bOnastW7botddeU25urjNf8T61du1affjhhxo+fLjWrFmjW2+99ZRaT7d/Fa+bIUOGaP78+Ro7dqzTZsOGDU953SoNBJSfsGjRIq1Zs0ZZWVlasWKFioqK9Nhjj6lNmzaqVauWdu7cGTR/8TuWE4egFV8BqFevnnNf27Ztdfvtt6tp06aqUaOGNm3adMpj+3w+1ahRQ9WqVXNenKKionTs2DHt3r1bISEhKl++vGrUqKEaNWo4PbYTExNPORF/+umnp31+Xq9X9957r0aMGOFcoXjzzTed+1evXq3CwkLnJC8dH02SnZ2t9u3bq2HDhpo+ffpPtr1t2zalpqY6NZYrV05hYWE/OYLiu+++0/r16/XYY4/J7/drxYoVWrBggaTTh4bo6GhFRkZqz549p22vWPfu3TVv3jytXbtWn376aVBNd955p3bt2qWZM2dq8+bNCgkJCVp/R44cCRrlUr58eWcb+P3+026DM1G7dm2FhIRo/PjxQe/0f4rP51N0dLQ+/vhj1a1bV7m5ufL7/dq8ebNq1aqliIgIxcXFyesNPpzr1q2rgoIC50QSHR2tVatWyev1OqGv+ErG3//+d7311ls6duyYateuLY/Ho+eee075+flKTEx0Rvakpqbqq6+++sWaQ0JCFBUVdcrQzWLFL37F+3rVqlUlSdOnT1dkZKQ++eQT9ejRQ0OHDtWjjz6qbt26ye/3a+vWrZKOXw3Mz8/X3r17JR3ff/bs2aMuXbpoyJAh2rlzpzOqJjw8XPv27XMe++RgExoaql27dmnWrFm69tprnRAnHT9m//jHP+rSSy9V/fr15fP5dOTIEZUrV04ffPCB84Jw6NChU57jrl279N1336lGjRq68MILNWbMGOcq16FDhxQIBJwXhgsuuMDZl37qHX2x4mG/d9xxhzp37qzy5cv/5NcQ3HbbbRo/fry6d++uiy66SLNnz9asWbMUFxenvLw81ahRQzExMYqMjHQe3+v1qlmzZs66veCCC9SmTRvt3LlTnTt3VqtWrYKO6dON+mrWrJmzn4aHhysuLs55nMTERHk8HlWrVk3Jycn67LPPFBoaqvnz5we1UXxOGDFihOLj41WuXLmg7SgdHyU3d+5cZWZmqkqVKlq9erVWrVql1atXKxAInPJCf+zYsZ9dt6dzYh0ZGRk6cuSIU0erVq00b948/f73v9dLL70UtFzVqlW1detWTZkyRV988YWys7Od15WOHTtq48aNMjPNnDlTV199tbp06fKL9R09elSLFy+WJCfQZmZmqmPHjqpUqZLWrFlz2n2qffv2uvfee/X666/rmmuu+VXP/5NPPlHfvn11xRVXqGHDhkpOTv6vfT0BAUXHL6nm5uZqx44dWrlypcaOHasePXro8ssv14033qgaNWqosLBQTzzxhDZv3qznnntO06ZNC2qj+EAdOnSocnJy9MUXX+ipp56SdHwIrSTVrFlT//73v/Xuu+/qq6++0siRI7V8+fIzqjEiIkJ9+vTRjTfeqB9//FHfffedli1bpnHjxumdd96RJLVu3Vo5OTl69NFHtWHDBj355JPOxzunc/XVV8vn82n9+vVKTEzUkCFD9OSTT+qll15S586d5ff7df/990uSRo0apQULFmjjxo3av3+/du7cqerVqys3N1fffvutJDkHbUpKivbu3asrrrhCCxcu1KZNm7Rx40Zt27btJw/A+Ph4JSQk6Pnnn9cll1yioUOHBl3iPp0mTZpoy5Ytko5/zLRy5Uo98cQTp8x3xRVX6KmnntLOnTvVvn17LV++XJs2bdKyZctUqVIlDRkyRF27dlW/fv00dOhQLVq0SJ9//rk+/vjjU2r8pW1wJgKBgIYNG6b8/HwtWLDAOYmefII+0dVXX63Dhw+rX79+qlatmtLT0zVp0iQ1bNhQa9as0ZIlS055R9OnTx/nO2n27dun8PBwHTx4UKmpqfruu+/0t7/9Tdu3b5d0/GrhQw89pGbNmunrr79WYWGhRo4cqe3bt2vXrl3ONh48eHDQx3Q/p3Hjxnrsscecq0ubNm1ytk/xENApU6boH//4h/NCf/DgQQ0bNkxpaWn661//qieffFILFy7UokWLdPToUUVHR0uSHn74YadN6fhHMX6/X//85z/13nvvKTIyUkOHDpV0PITdddddTl3/+c9/NH/+fH355ZcaMGCAjh07ps2bNysnJ0c333xz0HOoWbOmnnvuOa1bt05Lly7Vhx9+6ATBqlWrOi8WDzzwgBP2ipUrV06hoaHavn27li1bpvvvv18jR46UJH3//ffy+Xzq1auXJOnFF1/Upk2btHLlSuej059SHHJefPFFbdy4UVu2bDnlDdOJBg4cqAcffFDPPPOMtm7dqhkzZui2227T3Llz9cADD2j//v36/vvv9dJLL2nEiBGSpIyMDOeNVfHVzI8//lgtWrTQCy+8oA0bNujLL7/UN998c9rHzMjIUHp6unr27Km9e/cqPz9fu3fv1rp16zR79myNHTtWO3fu1JEjR/T666/r22+/Vd26dYPaKD4nTJ8+XYcOHdL27duDtqMkffHFF9q3b5+uu+465ebm6vPPP1d4eLgWLVqkwsLCoDcA1apV05YtW7Rq1apTgs7JCgoK9Mknn+j555/X9u3bFRcXp/vuu0/jxo1Ty5Ytg+q44oor9Nxzz+mmm24K+iixqKhIl1xyiYYMGaLWrVtr7ty5zuvKE088oYSEBBUWFmrw4MH64IMPdO+99wZ9z8/pvP322/rhhx8kSQ0aNFCDBg0UHx+vmJgYZWVl6YUXXnD2qXnz5mnTpk3q3bu3br/9dj366KNauXKlPvvss599jJPVrFlTr7/+uhP8evfuXWLf5fKLSr2Xi8tlZ2c7ncH8fr+VL1/eMjIy7Nlnnw3qpPX4449bxYoVLTw83Lp27Wpz5841SdarVy/LyspyhhkPHDjQEhMTLSwszOrUqRPUga+goMD69u1rsbGxFhcXZ7fddpsNGzYsqHNW8TDjExV30iweBeTz+czn81nFihXtiiuusP/85z/WuHFjGz16tM2cOdOqVKli4eHhlpmZ+ZPDjIuNGzfOypcvb+vWrfvZYcZ//vOfrW7duhYeHh409PPEW2pqqpmZvfnmm5aSkuIMmwwPD7eEhARLTEwM6hQ2ceJES0lJcf5+7733rG7duk5H3jZt2gR1+izuJFvcoTM7O9saNGjgbLuKFSvawIEDnRE3Jy5rZjZp0iRniHR4eLjVqVPHsrKynFEG33//vV1//fUWERFhSUlJ1qxZM0tMTAwaxXPiNvB6vUHbQP/XqTg2NtbM/v/opszMzKBhxmZmx44dsy5dujidfHVCJ+Ps7Gy79NJLnQ7DKSkpNnHiRJsxY4bFx8cHrXOPx2OxsbHWq1cvZ7TPic+5Vq1alpqaGjTMuEGDBhYaGmpNmjSx+vXrmyRnPebk5Fjfvn0tEAiYx+Mxn89nERERTp1DhgyxG2+8Mei5FK+b+fPnO/t7jx49LDs726ZNm+aMnomPj3c6XWdnZ5vf77eMjAyrVKmSM9S6YcOGlpCQYJs3b7bKlSs7j+v3+y0qKsrpMG1mdtFFFznrIS4uzhk9o/8bDRQTE2PS8eHJxUOM9X8jh1q1amWhoaFWr149W7RokbVv394ZOXOilStXWosWLSwQCFjNmjWtQ4cOFh4ebhMnTnTm0f+NEGnTpo01bdrUBg0aZLGxsTZr1iybN2+epaSkmNfrdTqW6/86yTZu3NgWLVpk0vHh1SEhIVa+fHlr27atSbItW7YEdWi84YYbLCsryz777DOTZDVq1LCwsDBLSkqy6tWrB237kSNHBh0rZse/KiEkJMSio6OtoKDAcnJyrG3btubz+czv91urVq1s+vTpzvzFnSWTk5MtJCTEKlSoYMnJyU7n+KSkpKBzVUpKirVs2dIZdJCfn28DBw600NBQZyhzlSpVbOHChda1a1dnv6pVq5bT4XLixIkWGRnptFF8TvB4PJaYmOhsx/nz51tKSorVq1fPGRgwdOhQS0hIsKioKOvVq5cNHjzYJNnkyZNNkuXm5lpWVpbTMbx4HZud2kn2+uuvt5o1a1qzZs0sNjbWAoGAhYaGms/nswYNGjh1DBs2zFnm5ZdftkAgYK+99lrQ64oki4mJOeV1ZdeuXdaiRQun83p4eLhdfPHFQR1ci4cZF7v88sutefPmQa8rxef2pUuXmiRn1FyNGjUsJCTEAoGAc94uX76800H9xE6yJ3aKL96/itfNli1brGPHjhYeHm5Vq1a1J5980jnmS5vH7IQecPjVunXrpho1aujJJ58816XgN3juued05513aufOnadcqmbbutt1110nn8+n559//qzaMTPVrFlTt99++ynv0EvDb92vSmJ/7Ny5s+rXr+9c1ULp+rnzC34ZH/H8Rvv27dPbb7+txYsXKyMj41yXg1/pxx9/1KZNmzR+/HjdcsstQScPtq27HT16VF988YWWLFmi+vXrn1Vb3377rZ588knl5uaW+jfB/tb9qiT2x3379mn+/PlavHixBgwY8JvawJn7ufMLfoVSv0ZznurZs6dVrlzZ7r333qCPLVA2jB492vx+v3Xq1CnomxvN2LZu99lnn1l4eLhdeumltnfv3rNqSzr+BXkvvPBCCVX3037rflUS+2PxN8w+8sgjv2l5/Do/d37BmeMjHgAA4Dp8xAMAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFyHgAIAAFzn/wFxzeNTPHfyQwAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Ensure plots are displayed inline in the notebook\n", + "%matplotlib inline\n", + "\n", + "from matplotlib import pyplot as plt\n", + "\n", + "# Create a bar plot of name vs grade\n", + "plt.bar(x=df_students.Name, height=df_students.Grade)\n", + "\n", + "# Display the plot\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Well, that worked, but the chart could use some improvements to make it clearer what we're looking at.\n", + "\n", + "Note that you used the **pyplot** class from Matplotlib to plot the chart. This class provides many ways to improve the visual elements of the plot. For example, the following code:\n", + "\n", + "- Specifies the color of the bar chart.\n", + "- Adds a title to the chart (so we know what it represents)\n", + "- Adds labels to the X and Y axes (so we know which axis shows which data)\n", + "- Adds a grid (to make it easier to determine the values for the bars)\n", + "- Rotates the X markers (so we can read them)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAH+CAYAAAB6G8/BAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB/4ElEQVR4nO3dd1QU19sH8O+y9F6UYqEpduxdYywoGntMjNHYUJPYe0neWGNPYqyxJHZjjDHGkqIx2BUr9g4WTFA0ICAgK+W+f/BjwrALbENg/X7O4RzmzszdZ3Zm7z47c+eOQgghQERERGSizIo6ACIiIqLCxGSHiIiITBqTHSIiIjJpTHaIiIjIpDHZISIiIpPGZIeIiIhMGpMdIiIiMmlMdoiIiMikMdkhIiIik8Zkh4heGYVCgRkzZhR1GMXW/fv3oVAosGHDhqIOhcikMNkhek1cuXIF77zzDnx8fGBtbY2yZcuibdu2WLZsmWy5uXPnYteuXUUTpBFs3boVixcv1mmdzMxMbNq0CW3btkWpUqVgYWEBd3d3tGvXDmvWrIFKpSqcYInolWCyQ/QaOHnyJOrXr49Lly5hyJAhWL58OQYPHgwzMzMsWbJEtuzrluy8ePECb731Fvr374+UlBRMmDABa9asweTJk2FtbY1hw4Zh2LBhhRcwERU686IOgIgK35w5c+Dk5ISzZ8/C2dlZNu/JkydFE1QxMXbsWOzfvx+LFy/G6NGjZfPGjx+PO3fu4MCBA/nWkZ6ejszMTFhaWhZmqESkJ57ZIXoNREZGonr16mqJDgC4u7tL/ysUCiQnJ2Pjxo1QKBRQKBQYMGAAAGDAgAHw9fVVW3/GjBlQKBSyMpVKhbFjx6J06dJwcHBAly5d8Pfff2uM7Z9//kFISAg8PDxgZWWF6tWrY926dbJlDh8+DIVCge3bt2POnDkoV64crK2t0aZNG0REREjLtWzZEr/99hsePHggxa8p5mwPHz7Ed999h/bt26slOtkCAgJkZ3ay+9V8+eWXWLx4MSpUqAArKytcv34dL1++xLRp01CvXj04OTnBzs4Ob7zxBg4dOqRWb3x8PAYMGAAnJyc4Ozujf//+iI+P1xjDzZs38c4778DV1RXW1taoX78+9uzZI1smLS0NM2fOREBAAKytreHm5obmzZsXmKgRvQ54ZofoNeDj44OwsDBcvXoVNWrUyHO5zZs3Y/DgwWjYsCE+/PBDAECFChV0fr3Bgwdjy5Yt6N27N5o2bYqDBw+iY8eOasvFxMSgcePGUCgUGDFiBEqXLo0//vgDgwYNQmJiIsaMGSNbfv78+TAzM8OECROQkJCAhQsXok+fPjh9+jQA4P/+7/+QkJCAv//+G19//TUAwN7ePs84//jjD2RkZOCDDz7QeRvXr1+P1NRUfPjhh7CysoKrqysSExPx3Xff4f3338eQIUPw/PlzrF27FsHBwThz5gxq164NABBCoGvXrjh+/Dg+/vhjVK1aFb/88gv69++v9jrXrl1Ds2bNULZsWUyZMgV2dnbYvn07unXrhp9//hndu3cHkJV0zps3T9p/iYmJOHfuHMLDw9G2bVudt4/IpAgiMnl//vmnUCqVQqlUiiZNmohJkyaJ/fv3i5cvX6ota2dnJ/r3769W3r9/f+Hj46NWPn36dJGzKbl48aIAIIYNGyZbrnfv3gKAmD59ulQ2aNAg4eXlJf7991/Zsr169RJOTk4iJSVFCCHEoUOHBABRtWpVoVKppOWWLFkiAIgrV65IZR07dtQYpyZjx44VAMTFixdl5SqVSjx9+lT6yxnfvXv3BADh6Ogonjx5IlsvPT1dFp8QQjx79kx4eHiIkJAQqWzXrl0CgFi4cKFs3TfeeEMAEOvXr5fK27RpIwIDA0VqaqpUlpmZKZo2bSoCAgKkslq1aomOHTtqtd1ErxtexiJ6DbRt2xZhYWHo0qULLl26hIULFyI4OBhly5ZVuxxiqN9//x0AMGrUKFl57rM0Qgj8/PPP6Ny5M4QQ+Pfff6W/4OBgJCQkIDw8XLbOwIEDZf1i3njjDQDA3bt39Yo1MTERgPrZn99//x2lS5eW/nx8fNTW7dGjB0qXLi0rUyqVUnyZmZmIi4tDeno66tevL9uW33//Hebm5hg6dKhs3ZEjR8rqi4uLw8GDB9GzZ088f/5cen9iY2MRHByMO3fu4J9//gEAODs749q1a7hz545e7wWRKWOyQ/SaaNCgAXbu3Ilnz57hzJkz+OSTT/D8+XO88847uH79utFe58GDBzAzM1O7/FW5cmXZ9NOnTxEfH481a9bIEovSpUtj4MCBANQ7T3t7e8umXVxcAADPnj3TK1YHBwcAQFJSkqy8WbNmOHDgAA4cOIB27dppXNfPz09j+caNG1GzZk2p30zp0qXx22+/ISEhQVrmwYMH8PLyUkuycr9HEREREEJg6tSpau/R9OnTAfz3Hs2aNQvx8fGoVKkSAgMDMXHiRFy+fFmHd4PIdLHPDtFrxtLSEg0aNECDBg1QqVIlDBw4ED/99JP05ZmX3J2Qs2VkZOgVR2ZmJgDggw8+0NhXBQBq1qwpm1YqlRqXE0LoFUOVKlUAAFevXkWtWrWk8tKlSyMoKAgAsGXLFo3r2tjYqJVt2bIFAwYMQLdu3TBx4kS4u7tDqVRi3rx5iIyM1Dm+7PdowoQJCA4O1rhMxYoVAQAtWrRAZGQkdu/ejT///BPfffcdvv76a6xatQqDBw/W+bWJTAmTHaLXWP369QEAjx49ksrySmpcXFw03i304MED2bSPjw8yMzMRGRkpO1Nx69Yt2XLZd2plZGRIiYUx5BW/Jh06dIBSqcT333+PPn36GPzaO3bsgL+/P3bu3CmLI3ci6ePjg9DQUCQlJcnO7uR+j/z9/QEAFhYWWr1Hrq6uGDhwIAYOHIikpCS0aNECM2bMYLJDrz1exiJ6DRw6dEjj2Y/s/jU5kxI7OzuNSU2FChWQkJAguzTy6NEj/PLLL7LlOnToAABYunSprDz3QH9KpRI9evTAzz//jKtXr6q93tOnT/PfqDzY2dnJLhnlx9vbGyEhIfjjjz+wfPlyjcvoctYo+8xTznVOnz6NsLAw2XJvvfUW0tPTsXLlSqksIyNDbTRrd3d3tGzZEqtXr5YlpNlyvkexsbGyefb29qhYsSJHfyYCz+wQvRZGjhyJlJQUdO/eHVWqVMHLly9x8uRJ/Pjjj/D19ZX6yABAvXr18Ndff2HRokUoU6YM/Pz80KhRI/Tq1QuTJ09G9+7dMWrUKKSkpGDlypWoVKmSrPNt7dq18f777+Obb75BQkICmjZtitDQUNl4ONnmz5+PQ4cOoVGjRhgyZAiqVauGuLg4hIeH46+//kJcXJzO21qvXj38+OOPGDduHBo0aAB7e3t07tw5z+UXL16Me/fuYeTIkdi2bRs6d+4Md3d3/Pvvvzhx4gT27t2r1pcmL506dcLOnTvRvXt3dOzYEffu3cOqVatQrVo1Wb+gzp07o1mzZpgyZQru37+PatWqYefOnRqTtBUrVqB58+YIDAzEkCFD4O/vj5iYGISFheHvv//GpUuXAADVqlVDy5YtUa9ePbi6uuLcuXPYsWMHRowYoeM7SGSCivBOMCJ6Rf744w8REhIiqlSpIuzt7YWlpaWoWLGiGDlypIiJiZEte/PmTdGiRQthY2MjAMhuQ//zzz9FjRo1hKWlpahcubLYsmWL2q3nQgjx4sULMWrUKOHm5ibs7OxE586dxcOHD9VuPRdCiJiYGDF8+HBRvnx5YWFhITw9PUWbNm3EmjVrpGWybz3/6aefZOtm3wae81btpKQk0bt3b+Hs7CwAaHUbenp6uli/fr1o3bq1cHV1Febm5qJUqVKiTZs2YtWqVeLFixdqr/nFF1+o1ZOZmSnmzp0rfHx8hJWVlahTp4749ddfNd62HxsbK/r27SscHR2Fk5OT6Nu3r7hw4YLa9gghRGRkpOjXr5/w9PQUFhYWomzZsqJTp05ix44d0jKzZ88WDRs2FM7OzsLGxkZUqVJFzJkzR+PwAkSvG4UQevbsIyIiIioB2GeHiIiITBqTHSIiIjJpTHaIiIjIpDHZISIiIpPGZIeIiIhMGsfZQdaQ7NHR0XBwcNBp9FUiIiIqOkIIPH/+HGXKlIGZWd7nb5jsAIiOjkb58uWLOgwiIiLSw8OHD1GuXLk85zPZwX9PPn748CEcHR2LOBoiIiLSRmJiIsqXLy99j+eFyQ7+e3Cgo6Mjkx0iIqISpqAuKOygTERERCatSJOdo0ePonPnzihTpgwUCgV27dolmy+EwLRp0+Dl5QUbGxsEBQXhzp07smXi4uLQp08fODo6wtnZGYMGDZI9cI+IiIheb0Wa7CQnJ6NWrVpYsWKFxvkLFy7E0qVLsWrVKpw+fRp2dnYIDg5GamqqtEyfPn1w7do1HDhwAL/++iuOHj2KDz/88FVtAhERERVzxeZBoAqFAr/88gu6desGIOusTpkyZTB+/HhMmDABAJCQkAAPDw9s2LABvXr1wo0bN1CtWjWcPXsW9evXBwDs27cPb731Fv7++2+UKVNG42upVCqoVCppOruD0+4Df8HOzi7fOJ3s7VE/sIas7NyVq0jQ4mySX7ly8C//X2/x9PR0HDl7rsD1AKB+jepwytEBKyY2Fldv38lnjSxKpRItGzaQld2IjET0k6cFruvu5orASpVkZcfPh0P18mWB61bx90dZD3dpOiklBacvXS5wPQBoVrcOrK2spOmo6GjceRBV4Hp2tjZoXKuWrOzCjRuIi08ocF1vL08E+PrKykLDTmkVb+2qVeDm7CxNx8bH4+KNm1qt26ZJY9n0nfv3EfXocYHruTo7oU7VqrKyU5cuITnlRYHrBvh4wzvHZyNVpcKJ8AtaxduoVk3Y29pK0//EPMHNu3cLXM/K0hLN69WVlV25fRtPYuMKXLeMe2lUrVBBVnb4zFlkZGQUuG6NSgHwcHOTphOeP8e5q9cKXA8A3mxQH+bm/3VrvPvwb9z7++8C12MbwTYiN7YRhddGJCcno2vbICQkJOTb57bYdlC+d+8eHj9+jKCgIKnMyckJjRo1QlhYGHr16oWwsDA4OztLiQ4ABAUFwczMDKdPn0b37t011j1v3jzMnDlTrVylUkFpnv9bkvMDJq2XlobUHMlTXtIz0mXTAtBqPQDIzJTnpJkZmVqta26uVCtLS0/Xat20tHS1MtXLl1qtm5Ep/yISQmi9rbnT73RDtlXLfZOWrv7Fqf2+yVSb1nZdTXFot2/S1Mq03TfpGfJ4hdB+W3P/NsrI1C5eTdLStDwO0zUdhyqka9hnuWVm5N43OhyHuabTM7SLl20E24jc2EYUXhuh0rLuYpvsPH6clbl6eHjIyj08PKR5jx8/hru7u2y+ubk5XF1dpWU0+eSTTzBu3DhpOvvMjpWVlcaGKicrCwuNZQWtBwDmSvnbrYDmhlETMzN5T3MzpZlW6yqV6h9uC3Nzrda1sFA/PKwsLQtcDwCUZvLXVSgUWm9r7k715lpuq6bYLLTcNxYaGkHt942Z2rS262qKQ7t9o+E4tLTUKgEwV8rjVSi039bcdzwozbSLV/O+0fI41PADxMrSCubKgrfVTJl73+hwHOaaNldqFy/bCLYRubGNKLw2IkPDjyGNcRXXy1gnT55Es2bNEB0dDS8vL2m5nj17QqFQ4Mcff8TcuXOxceNG3Lp1S1aXu7s7Zs6ciaFDh2r12omJiXBycirwNBgREREVH9p+fxfbW889PT0BADExMbLymJgYaZ6npyeePHkim5+eno64uDhpGSIiInq9Fdtkx8/PD56enggNDZXKEhMTcfr0aTRp0gQA0KRJE8THx+P8+fPSMgcPHkRmZiYaNWr0ymMmIiKi4qdI++wkJSUhIiJCmr537x4uXrwIV1dXeHt7Y8yYMZg9ezYCAgLg5+eHqVOnokyZMtKlrqpVq6J9+/YYMmQIVq1ahbS0NIwYMQK9evXK804sIiIier0UabJz7tw5tGrVSprO7jTcv39/bNiwAZMmTUJycjI+/PBDxMfHo3nz5ti3bx+sra2ldb7//nuMGDECbdq0gZmZGXr06IGlS5e+8m0hIiKi4qnYdFAuSuygTEREVPKU+A7KRERERMbAZIeIiIhMGpMdIiIiMmnFdgRlKuG25h5/Vg+9X/vuZEREZAQ8s0NEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNPOiDoCISKOtCsPr6C0Mr4OISjye2SEiIiKTxmSHiIiITFqxTnYyMjIwdepU+Pn5wcbGBhUqVMDnn38OIf47NS2EwLRp0+Dl5QUbGxsEBQXhzp07RRg1ERERFSfFOtlZsGABVq5cieXLl+PGjRtYsGABFi5ciGXLlknLLFy4EEuXLsWqVatw+vRp2NnZITg4GKmpqUUYORERERUXxbqD8smTJ9G1a1d07NgRAODr64sffvgBZ86cAZB1Vmfx4sX47LPP0LVrVwDApk2b4OHhgV27dqFXr15FFjsREREVD8U62WnatCnWrFmD27dvo1KlSrh06RKOHz+ORYsWAQDu3buHx48fIygoSFrHyckJjRo1QlhYWJ7JjkqlgkqlkqYTExMBAIfPnIWdnV2+MTnZ26N+YA1Z2bkrV5GQlFTg9viVKwf/8uWk6fT0dBw5e67A9QCgfo3qcHJwkKZjYmNx9XbBl+uUSiVaNmwgK7sRGYnoJ08LXNfdzRWBlSrJyo6fD4fq5csC162CKiiLm9J0ElxwGj0LXA8AmmELrJEsTUdFR+POg6gC17OztUHjWrVkZRdu3EBcfEKB63p7eSLA11dWFhp2Sqt4a1etAjdnZ2k6Nj4eF2/czHuFHNo0aSybvnP/PqIePS5wPVdnJ9SpWlVWdurSJSSnvChw3QAfb3iXKSNNp6pUOBF+Qat4G9WqCXtbW2n6n5gnuHn3boHrWVlaonm9urKyK7dv40lsXD5rfQQAKIObqIojsjmHEYIMWBT4ujViY+Hh5iZNJzx/jnNXrxW4HgC82aA+zM3/ayLvPvwb9/7+u8D12EZo2Ub4+6Osh7s0nZSSgtOXLhe4HgA0q1sH1lZW0jTbCHWvRxsBJCcn5zs/W7FOdqZMmYLExERUqVIFSqUSGRkZmDNnDvr06QMAePw4a4d7eHjI1vPw8JDmaTJv3jzMnDlTrVylUkFpnv9bkvMDJq2XlobUHMlTXtIz0mXTAtBqPQDIzJTfQpuZkanVuubmSrWytPR0rdZNS0tXK1O9fKnVurm/iATMkAqHPJaWE7murqYbsq1a7pu09Ay1Mu33TabatLbraopDu32Tplam7b5Jz5DHK4T225qzvxwAZGRqF68maWkFHYdZx0sarNXmqGCPdFgW+BqZGbn3jdB+W3NNp2do97lhG6FlG5Ep/8wJocO+ybVz2EZoWO61aCMgO3GRn2Kd7Gzfvh3ff/89tm7diurVq+PixYsYM2YMypQpg/79++td7yeffIJx48ZJ04mJiShfvjysrKw0NlQ5WVmo/5q0srAocD0AMFfK324FNDeMmpiZycccMVOaabWuUqn+4bYwN9dqXQsL9cPDyrLgLxgAUEL+QVMgE9Z4rtW6Csg/aOZabqum2Cy03DcWGhpB7feNmdq0tutqikO7faPhOLS0RLqGBjk3c6U8XoVC+21VKOTHodJMu3g175uCjsOs48UC6v3vrJAEcy3O7Jgpc+8bhfbbmmvaXKnd54ZthJZthJn8dRUKHfZNrp3DNkLDcq9FGwFkpKsn3BrjErnTsGKkfPnymDJlCoYPHy6VzZ49G1u2bMHNmzdx9+5dVKhQARcuXEDt2rWlZd58803Url0bS5Ys0ep1EhMT4eTkhISEBDg6Ohp7M15PHBCODMVjiIgKoO33d7G+GyslJUUtI1YqldIpQT8/P3h6eiI0NFSan5iYiNOnT6NJkyavNFYiIiIqnor1ZazOnTtjzpw58Pb2RvXq1XHhwgUsWrQIISEhALJOl40ZMwazZ89GQEAA/Pz8MHXqVJQpUwbdunUr2uCJiIioWCjWyc6yZcswdepUDBs2DE+ePEGZMmXw0UcfYdq0adIykyZNQnJyMj788EPEx8ejefPm2LdvH6yt1Ts1EhER0eunWPfZeVXYZ6cQsL8FGYrHEBEVwCT67BAREREZiskOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmTQmO0RERGTSzIs6ACIyAVsVhtfRWxheBxGRBjyzQ0RERCaNyQ4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNTz0nIjJ1hj6Vnk+kpxKOZ3aIiIjIpDHZISIiIpPGZIeIiIhMGpMdIiIiMmlMdoiIiMikMdkhIiIik8Zkh4iIiEwakx0iIiIyaUx2iIiIyKQx2SEiIiKTxmSHiIiITBqTHSIiIjJpTHaIiIjIpDHZISIiIpPGZIeIiIhMGpMdIiIiMmlMdoiIiMikMdkhIiIik8Zkh4iIiEwakx0iIiIyaUx2iIiIyKSZF3UAREREVMxtVRi2fm9hnDj0xDM7REREZNKY7BAREZFJ42UsIiIiU1LCLzkVBp7ZISIiIpPGZIeIiIhMGpMdIiIiMmnss0NErw/2ZSB6LfHMDhEREZk0JjtERERk0pjsEBERkUkr9snOP//8gw8++ABubm6wsbFBYGAgzp07J80XQmDatGnw8vKCjY0NgoKCcOfOnSKMmIiIiIqTYp3sPHv2DM2aNYOFhQX++OMPXL9+HV999RVcXFykZRYuXIilS5di1apVOH36NOzs7BAcHIzU1NQijJyIiIiKi2J9N9aCBQtQvnx5rF+/Xirz8/OT/hdCYPHixfjss8/QtWtXAMCmTZvg4eGBXbt2oVevXhrrValUUKlU0nRiYiIA4PCZs7Czs8s3Jid7e9QPrCErO3flKhKSkgrcHr9y5eBfvpw0nZ6ejiNnz+Wzxn/q16gOJwcHaTomNhZXbxd8BkupVKJlwwayshuRkYh+8rTAdd3dXBFYqZKs7Pj5cKhevixw3SqogrK4KU0nwQWn0bPA9QCgGbbAGsnSdFR0NO48iCpwPTtbGzSuVUtWduHGDcTFJxS4rreXJwJ8fWVloWGntIq3dtUqcHN2lqZj4+Nx8cbNvFfIoU2TxrLpO/fvI+rR4wLXc3V2Qp2qVWVlpy5dQnLKiwLXDfDxhneZMtJ0qkqFE+EXtIq3Ua2asLe1lab/iXmCm3fvAvgo3/WskIzm2CIru4K2eAL//wrU3u+sOsvgJqriiGzOYYQgAxYFxlsjNhYebm7SdAI8cA7dClwPAN7EOpgjTZq+i/q4p8UxUTzbiLz3jxJpaIl1srIbeBPRqPJfQR7bbVAb4e+Psh7u0nRSSgpOX7pc4HoA0KxuHVhbWUnTbCNy+wiu+Bt18Jus9BR6Ihkueazzn4DoaPU2ooDPeLZG2A57PJOm/0EV3MSbeR5D2awsLdG8Xl1Z2ZXbt/EkNi7f9ZKTk/Odn61YJzt79uxBcHAw3n33XRw5cgRly5bFsGHDMGTIEADAvXv38PjxYwQFBUnrODk5oVGjRggLC8sz2Zk3bx5mzpypVq5SqaA0z/8tyfkBk9ZLS0NqjuQpL+kZ6bJpAWi1HgBkZspvec3MyNRqXXNzpVpZWnq6VuumpaWrlalevtRq3dxfRAJmSIVDHkvLiVwnHNMN2VYt901aeoZamfb7JlNtWtt1NcWh3b5JUyvTdt+kZ8jjFUL7bRVCfhxmZGbHq92+zSkN1vJjQi0GB2m53FSwRzosC3yNzFzbmgmlDseh/Db1dFhq9T4VzzYi7202h3piUvC++d9yhrQRmfLPnBBCh+NQPs02IjcHpMFGrVQFO62Of41thJ7tdwYsstbVY3vT0gr+rlJpWW+xTnbu3r2LlStXYty4cfj0009x9uxZjBo1CpaWlujfvz8eP87Kbj08PGTreXh4SPM0+eSTTzBu3DhpOjExEeXLl4eVlZXGhionKwv1X5NWFhYFrgcA5kr5262A5oZREzMzecNrpjTTal2lUv3DbWFurtW6Fhbqh4eVZcFfMEDWr8WcFMiENZ5rta4C8g+auZbbqik2Cy33jYWGRlD7fWOmNq3tupri0G7faDgOLS2RrqFBzs1cKY9XodB+WxUK+XGoNMuON/99awX1X18WSJUfE2oxPJeWU68vCeZanNkxy7WtZsjQ4TiUf6Oa46V2x2GxbCPy3ubcn1VAm33zv+UMaSPM5J85hUKhw3Eon2YbkdtzWED9LK8VkrX6kaCxjdCz/VYiLWvdgr5bNe6bgr+rMtLVE26NcYncP9WKEUtLS9SvXx8nT56UykaNGoWzZ88iLCwMJ0+eRLNmzRAdHQ0vLy9pmZ49e0KhUODHH3/U6nUSExPh5OSEhIQEODo6Gn07XkuGDt4GcAC3kqQw9ndxrLOkHpOv63a/rgpjfxfTY0jb7+9i3UHZy8sL1apVk5VVrVoVUVFZ12Y9PT0BADExMbJlYmJipHlERET0eivWyU6zZs1w69YtWdnt27fh4+MDIKuzsqenJ0JDQ6X5iYmJOH36NJo0afJKYyUiIqLiqVj32Rk7diyaNm2KuXPnomfPnjhz5gzWrFmDNWvWAMi6xjtmzBjMnj0bAQEB8PPzw9SpU1GmTBl069ataIMnIiKiYqFYJzsNGjTAL7/8gk8++QSzZs2Cn58fFi9ejD59+kjLTJo0CcnJyfjwww8RHx+P5s2bY9++fbC2Vr+Dg4iIiF4/xTrZAYBOnTqhU6dOec5XKBSYNWsWZs2a9QqjIiIiopKiWPfZISIiIjIUkx0iIiIyaUx2iIiIyKQx2SEiIiKTxmSHiIiITBqTHSIiIjJpTHaIiIjIpOmd7Bw7dgwffPABmjRpgn/++QcAsHnzZhw/ftxowREREREZSq9k5+eff0ZwcDBsbGxw4cIFqFQqAEBCQgLmzp1r1ACJiIiIDKFXsjN79mysWrUK3377LSwsLKTyZs2aITw83GjBERERERlKr2Tn1q1baNGihVq5k5MT4uPjDY2JiIiIyGj0SnY8PT0RERGhVn78+HH4+/sbHBQRERGRseiV7AwZMgSjR4/G6dOnoVAoEB0dje+//x4TJkzA0KFDjR0jERERkd70eur5lClTkJmZiTZt2iAlJQUtWrSAlZUVJkyYgJEjRxo7RiIiIiK96ZXsKBQK/N///R8mTpyIiIgIJCUloVq1arC3tzd2fEREREQG0SvZyWZpaYlq1aoZKxYiIiIio9M62Xn77be1rnTnzp16BUNERERkbFp3UHZycpL+HB0dERoainPnzknzz58/j9DQUDg5ORVKoERERET60PrMzvr166X/J0+ejJ49e2LVqlVQKpUAgIyMDAwbNgyOjo7Gj5KopNiqMLyO3sLwOoiISKLXrefr1q3DhAkTpEQHAJRKJcaNG4d169YZLTgiIiIiQ+mV7KSnp+PmzZtq5Tdv3kRmZqbBQREREREZi153Yw0cOBCDBg1CZGQkGjZsCAA4ffo05s+fj4EDBxo1QCIiIpPFS9+vhF7JzpdffglPT0989dVXePToEQDAy8sLEydOxPjx440aIBEREZEh9Ep2zMzMMGnSJEyaNAmJiYkAwI7JREREVCwZNKggwCSHiIiIije9k50dO3Zg+/btiIqKwsuXL2XzwsPDDQ6MiIiIyBj0uhtr6dKlGDhwIDw8PHDhwgU0bNgQbm5uuHv3Ljp06GDsGImIiIj0pley880332DNmjVYtmwZLC0tMWnSJBw4cACjRo1CQkKCsWMkIiIi0pteyU5UVBSaNm0KALCxscHz588BAH379sUPP/xgvOiIiIiIDKRXnx1PT0/ExcXBx8cH3t7eOHXqFGrVqoV79+5BCN7vL1MYYygYWifHZCAioteIXmd2WrdujT179gDIGmBw7NixaNu2Ld577z10797dqAESERERGUKvMztr1qyRHgsxfPhwuLm54eTJk+jSpQs++ugjowZIREREZAidk5309HTMnTsXISEhKFeuHACgV69e6NWrl9GDI5Lh5TsiItKDzpexzM3NsXDhQqSnpxdGPERERERGpVefnTZt2uDIkSPGjoWIiIjI6PTqs9OhQwdMmTIFV65cQb169WBnZyeb36VLF6MER0RERGQovZKdYcOGAQAWLVqkNk+hUCAjI8OwqIiIiIoj9h0skfRKdrLvxCIiIiIq7nRKdl68eIHQ0FB06tQJAPDJJ59ApVL9V5m5OWbNmgVra2vjRklERESkJ52SnY0bN+K3336Tkp3ly5ejevXqsLGxAQDcvHkTnp6eGDdunPEjJSIiItKDTsnO999/j0mTJsnKtm7dCn9/fwDAli1bsGLFCiY7JRGvQxMRkYnS6dbziIgIBAYGStPW1tYwM/uvioYNG+L69evGi46IiIjIQDqd2YmPj5f10Xn69KlsfmZmpmw+ERERUVHT6cxOuXLlcPXq1TznX758WXqEBBEREVFxoFOy89Zbb2HatGlITU1Vm/fixQvMnDkTHTt2NFpwRERERIbS6TLWp59+iu3bt6Ny5coYMWIEKlWqBAC4desWli9fjvT0dHz66aeFEigRERGRPnRKdjw8PHDy5EkMHToUU6ZMgRBZd+AoFAq0bdsW33zzDTw8PAolUCIiIiJ96DyCsp+fH/bt24e4uDhEREQAACpWrAhXV1ejB0dERERkKL0eFwEArq6uaNiwoTFjISIiIjI6nTooExEREZU0THaIiIjIpDHZISIiIpPGZIeIiIhMGpMdIiIiMmlMdoiIiMikMdkhIiIik8Zkh4iIiEwakx0iIiIyaXqPoExEr8hWheF19BaG10FEVELxzA4RERGZNCY7REREZNJKVLIzf/58KBQKjBkzRipLTU3F8OHD4ebmBnt7e/To0QMxMTFFFyQREREVKyUm2Tl79ixWr16NmjVrysrHjh2LvXv34qeffsKRI0cQHR2Nt99+u4iiJCIiouKmRCQ7SUlJ6NOnD7799lu4uLhI5QkJCVi7di0WLVqE1q1bo169eli/fj1OnjyJU6dOFWHEREREVFyUiLuxhg8fjo4dOyIoKAizZ8+Wys+fP4+0tDQEBQVJZVWqVIG3tzfCwsLQuHFjjfWpVCqoVCppOjExEQBw+MxZ2NnZ5RuLk7096gfWkJWdu3IVCUlJeazxkfSfH87DH+ek6XRY4AhC8n09AEDYKdSvUR1ODg5SUQz8cRVtC1xViTS0xDpZ2Y3ISEQ/eZpnnNnccReBOCArO44PoIKG9yhMnlxWQRWUxU1pOgkuOI2eBcYLAM2wBdZIlqajoqNx50GUxhhzssMzNMZ2WdkFdEQcymmMMSdvL08E+PrKykLzWT6n2lWrwM3ZWZqORXlcxFtardsGq2XTd9AEUWqvq77drvgbdfCbrOwUeiIZLmrLApBte4CPN7zLlJGmU1UqnAi/oFW8jWrVhL2trTT9T8wT3Lx7V2OMOVkhGc2xRVZ2BW3xBP4aY8ySVWcZ3ERVHJHNOYwQZMCiwHhrxMbCw81Nmk6AB86hW4HrAcCbWAdzpEnTd1Ef97Q4JnRvI/7jV64c/MuXk6bT09Nx5Oy5fNb4j1obERuLq7fv/G8q7/2jsY3Am4hGlf8K8thudzdXBFaqJCs7fj4cqpcvC4y3ir8/ynq4S9NJKSk4felygesBQLO6dWBtZSVN/9dG5M/O1gaNa9WSlV24cQNx8QkFrquxjSjguM9WG7/DDQ+l6dj4eFy8kd0+5l+HxjYC8iscmj47OrcROQRER6u3EVpuayNshz2eSdP/oApu4s18218AsLK0RPN6dWVlV27fxpPYuHzXS05Oznd+tmKf7Gzbtg3h4eE4e/as2rzHjx/D0tISzjm+aADAw8MDjx8/zrPOefPmYebMmWrlKpUKSvP835KcHzBpvbQ0pOZInuT+a3zSYSmbI6BAao75eVKpkJkpv3U4ExZarWsO9UYnLT1dQ7zqdaXBWj0U2Gl+3Vz15f4iEjDTblv/t2xO6RmZ/4s3//U1bits/nvdPPcRkJaeoVaW9z6Vy8zMlE9DqfW2qsUBKy33jY1aWZ77BpBte3qGPF4htN9WIeTHYUZmhlb7RpM0WMvjzWO7NR+H9mqfJ00yM/TfNwLyW/7TYanV+6R7G5HjNTLSc8Wgy3GYq42QPjdAfvtH8+emoH3zv+XS0tXKVC9fahVzRqb8MyeE0OE4lE+ny7Y1b+bmSrWyNC33jcY2QstjKRPy183M1G7faIwDVuqvq+Gzo3MbkYPGNkLP9jsj+7tKy32bU1qapu8qOZWW9RbrZOfhw4cYPXo0Dhw4AGtr9QZPX5988gnGjRsnTScmJqJ8+fKwsrLS2FDlZGWh/mvSysIin/WeS//lblQUELDOMT/vF7WCmZm84TVDmlbrKnP8Ms1mYW6uIV71uiyQqh4K8siic9WX+3UVyNRuW/+3bE7mSrP/xZv/+ppis8CL/143n31roaERLOhYyGZmJv9wmyFD621ViwMqLffNC7UyKyTnnQDkqNNcKY9XodB+WxUK+XGoNFMasG9S5e9THtut+ThMgrkWZ3bMlPrvGwXk36jmeKnV+6R7G5HjNZTyJlkBXY7DXG2E9LkB8ts/GtuIAvfN/5azUP8KsbIsOAkFso6dnBQKhQ7HoXzaXLatedMUm4WW+0ZjG6HlsWQGeaJkZqbdvtEYB1Tqr6vhs6NzG5GDxjZCz/Zbmf1dVdB3q8Z9o+m7Si4jXT3h1hiXyP1TrRjZtWsXunfvDqXyv4MsIyMDCoUCZmZm2L9/P4KCgvDs2TPZ2R0fHx+MGTMGY8eO1ep1EhMT4eTkhISEBDg6Ohp3IwpjQDhD69Q0wJyx6ywp221sxXG7NdVpbCVlu0vCMVQYXtftLgyva1tZTI8hbb+/i/WZnTZt2uDKlSuysoEDB6JKlSqYPHkyypcvDwsLC4SGhqJHjx4AgFu3biEqKgpNmjQpipCJiIiomCnWyY6DgwNq1JB39LOzs4Obm5tUPmjQIIwbNw6urq5wdHTEyJEj0aRJkzw7JxMREdHrpVgnO9r4+uuvYWZmhh49ekClUiE4OBjffPNNUYdFRERExUSJS3YOHz4sm7a2tsaKFSuwYsWKogmIiIiIirUSMaggERERkb6Y7BAREZFJY7JDREREJo3JDhEREZm0EtdBmYio2CgJAz4SEc/sEBERkWljskNEREQmjZexiIio6PGSIBUintkhIiIik8Zkh4iIiEwakx0iIiIyaeyzQ0REpsnQfkDsA2QyeGaHiIiITBqTHSIiIjJpTHaIiIjIpDHZISIiIpPGZIeIiIhMGpMdIiIiMmlMdoiIiMikMdkhIiIik8Zkh4iIiEwakx0iIiIyaUx2iIiIyKQx2SEiIiKTxmSHiIiITBqTHSIiIjJpTHaIiIjIpDHZISIiIpPGZIeIiIhMGpMdIiIiMmlMdoiIiMikMdkhIiIik8Zkh4iIiEwakx0iIiIyaUx2iIiIyKQx2SEiIiKTxmSHiIiITBqTHSIiIjJpTHaIiIjIpDHZISIiIpNmXtQBEBFRCbNVYXgdvYXhdRBpiWd2iIiIyKQx2SEiIiKTxmSHiIiITBr77BC9jgztc8H+FkRUgvDMDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmbRinezMmzcPDRo0gIODA9zd3dGtWzfcunVLtkxqaiqGDx8ONzc32Nvbo0ePHoiJiSmiiImIiKi4KdbJzpEjRzB8+HCcOnUKBw4cQFpaGtq1a4fk5GRpmbFjx2Lv3r346aefcOTIEURHR+Ptt98uwqiJiIioODEv6gDys2/fPtn0hg0b4O7ujvPnz6NFixZISEjA2rVrsXXrVrRu3RoAsH79elStWhWnTp1C48aNiyJsIiIiKkaKdbKTW0JCAgDA1dUVAHD+/HmkpaUhKChIWqZKlSrw9vZGWFhYnsmOSqWCSqWSphMTEwEAh8+chZ2dXb4xONnbo35gDVnZuStXkZCUlMcaH0n/+eE8/HFOmk6HBY4gJN/XAwCEnUL9GtXh5OAgFcXAH1fRtsBVlUhDS6yTld2IjET0k6d5xpnNHXcRiAOysuP4ACpoeI/CTskmq6AKyuKmNJ0EF5xGzwLjBYBm2AJr/Hf2Lio6GnceRGmMMSc7PENjbJeVXUBHxKGcxhhz8vbyRICvr6wsNJ/lc6pdtQrcnJ2l6ViUx0W8pdW6bbBaNn0HTRCl9rrq2+2Kv1EHv8nKTqEnkuGi+YVy1Bng4w3vHLNSYYcT+ECreBthO+zxTJr+J+YJbt69qzHGnKyQjObYIiu7grZ4An+NMWbJqrMMbqIqjsjmHEYIMmBRYLw1YmPh4eYmTSfAA+fQrcD1AOBNrIM50qTpu6iPe1rsGyc8QX38Iis7h+5IgLvmF8pRp1+5cvAvX06aTk9Px5Gz5zStpUatjYiNxdXbd/KMM5vGNgJvIhpVNMaYsz6d2ohcqsQ8QVmP/94Tg9oI1MQdNMkzzmwFthG55ahPYxtRwHGfrTZ+hxseStOx8fG4eCO7fcy/Do1tBGrmGWd2nTq3ETkEREfDu0wZaTpVpcIJLbdVrY1AFdzEm/m2vwBgZWmJ5vXqysqu3L6NJ7Fx+a6X80pPfkpMspOZmYkxY8agWbNmqFEjK9l4/PgxLC0t4ZzjiwYAPDw88Pjx4zzrmjdvHmbOnKlWrlKpoDTP/y2xtrJSXy8tDak5kie5/xqfdFjK5ggokJpjfp5UKmRmCllRJiy0WtccL9XK0tLTNcSrXlcarNVDgZ3m181VX+4vIgEz7bb1f8vmlJ6R+b94819f47bC5r/XzXMfAWnpGWplee9TuczMTPk0lFpvq1ocsNJy39ioleW5bwDZtqdnyOM1ZN9kZGZotW80SYO1/HXz2G7Nx6G92udJk8wM/feNgEI2nQ5LrfaNNZ6rlalyHodqM3Pum/RcMehyHOZqI6TPjeY4s2n+3Biyb/I5DnPIyJR/5gxqI2CZtW4B+6fANiK3HPVpbCO0jDcTSvl0pnb7RpM0WKm/robt1rmNyEGtjRDab6taG5H9XaXlcZxTWpqm7yo5lZb1lphkZ/jw4bh69SqOHz9ucF2ffPIJxo0bJ00nJiaifPnysLKy0pjM5GRlof5r0srCIp/1/mv4cn/QFBAaG0b1F7CCmZm84TVDmlbrKnP8Ms1mYW6uIV71uiyQqh4K8siic9WX+3UVyNRuW/+3bE7mSrP/xZv/+ppis8CL/143n31rYa5UKyvoWMhmZib/cJshQ+ttVYsDKi33zQu1Misk550A5KjTXCmP15B9ozRTGrBvUuWvm8d2az4Ok2CuxZkdM6X++0YBefJgjpda7RsrjfvmRd6vK9s38iZZAV2Ow1xthPS50RxnNo1thEH7Rrtf2koz+WfOoDYCL7PWLWD/FNhG5JajPo1thJbxmkGeKJmZabdvNLGASv11NWy3zm1EDmpthEL7bVVrI7K/qwr6brVUj8vCQtN3lVxGenq+86W4hBCi4MWK1ogRI7B7924cPXoUfn5+UvnBgwfRpk0bPHv2THZ2x8fHB2PGjMHYsWO1qj8xMRFOTk5ISEiAo6OjcYPfqih4mYL0zrWLDK0zd32FUWdJ2W5jK47bXRh1loQYC6POVxFjYSgJ210c62RbWbh1GoG239/F+m4sIQRGjBiBX375BQcPHpQlOgBQr149WFhYIDQ0VCq7desWoqKi0KRJk1cdLhERERVDxfoy1vDhw7F161bs3r0bDg4OUj8cJycn2NjYwMnJCYMGDcK4cePg6uoKR0dHjBw5Ek2aNOGdWERERASgmCc7K1euBAC0bNlSVr5+/XoMGDAAAPD111/DzMwMPXr0gEqlQnBwML755ptXHCkREREVV8U62dGmO5G1tTVWrFiBFStWvIKIiIiIqKQp1n12iIiIiAzFZIeIiIhMGpMdIiIiMmlMdoiIiMikMdkhIiIik8Zkh4iIiEwakx0iIiIyaUx2iIiIyKQx2SEiIiKTxmSHiIiITBqTHSIiIjJpxfrZWEREr52tCsPr6F3wcwWJXic8s0NEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0pjsEBERkUljskNEREQmjckOERERmTQmO0RERGTSmOwQERGRSWOyQ0RERCaNyQ4RERGZNPOiDoCoSG1VGLZ+b2GcOIiIqNDwzA4RERGZNCY7REREZNKY7BAREZFJY7JDREREJo3JDhEREZk0JjtERERk0kwm2VmxYgV8fX1hbW2NRo0a4cyZM0UdEhERERUDJpHs/Pjjjxg3bhymT5+O8PBw1KpVC8HBwXjy5ElRh0ZERERFzCSSnUWLFmHIkCEYOHAgqlWrhlWrVsHW1hbr1q0r6tCIiIioiJX4EZRfvnyJ8+fP45NPPpHKzMzMEBQUhLCwMI3rqFQqqFQqaTohIQEA8Puhw7C1s8v39Rzt7FC3ejVZWfi160hMTta8QspA6V8fXIQfLkjT6TDHcfTN9/UAAH+Fok7VKnBycPhfncAT+OI6WhW4qhJpeANbZGW3Ll7Eo39j84wzW2ncR3UckpWFoSdU0PAe/RUqm6yUEoAyuCNNJ8EZ59C9wHgBoDF+hDVSgMREAMDDR48Q+fBvjTHmZId4NMAvsrJLaIdnKKsxRgBSneVxFRVwVjbrMPJ/vew6a1YKgKuz8//qA+JQFpfRruB1AbTEetl0JBrgYe44NWy3C/5BLfwpKzuL7kiGc55xZqtQvhzKp/w3KxW2OIX3tIq3Pn6BPeKlfRP95Clu379f4L6xQjKaYLus7Bpa4Sl8NcYIQKrTC7dRGSdks47hA2TAosB4q92/D3dXV2k6IaU0LqBTgesBQHNshjnSpel7qIMHWuwbRzxFXfwqKwtHJySitOYXylGnT5ky8Muxb7RuIwDUwa9wwtOsicREPImLw/WIyDzjzKaxjUAzPEIljTHmrE+nNiKXShGRKOP+33uSlKJHG/E/D1EdkWiYZ5zZCmwjcstRX3kPd1Tw8UGOl9WujQBQE3/CFf9kTSQmIi4+Hpdv39EYY24a2wjUyDPO7Dp1biNyqHDrFsp7eUnTqSoVThUQZzapjfifaATgNpprbn9zsLKwQJM6tWVl1yIi8DTuWb7rpfzvu1eIAkazFyXcP//8IwCIkydPysonTpwoGjZsqHGd6dOnCwD84x//+Mc//vHPBP4ePnyYb65Q4s/s6OOTTz7BuHHjpOnMzEzExcXBzc0NCoWBz0rSQWJiIsqXL4+HDx/C0dGRdRaj+kpKnSUhxsKosyTEWBh1loQYC6POkhBjYdRZEmIsrDq1JYTA8+fPUaZMmXyXK/HJTqlSpaBUKhETEyMrj4mJgaenp8Z1rKysYGVlJStzzr4MUQQcHR2NfoC8rnWWhBgLo86SEGNh1FkSYiyMOktCjIVRZ0mIsTDqLAkxFlad2nBycipwmRLfQdnS0hL16tVDaOh/1wMzMzMRGhqKJk2aFGFkREREVByU+DM7ADBu3Dj0798f9evXR8OGDbF48WIkJydj4EDtOlQRERGR6TKJZOe9997D06dPMW3aNDx+/Bi1a9fGvn374OHhUdSh5cvKygrTp09Xu6TGOou+vpJSZ0mIsTDqLAkxFkadJSHGwqizJMRYGHWWhBgLq05jUwhR0P1aRERERCVXie+zQ0RERJQfJjtERERk0pjsEBERkUljskNEREQmjckOERERmTSTuPX8dXbnzh0cOnQIT548QWZmpmzetGnTiiiqkik5ORl2BTwItjiIj4/Hjh07EBkZiYkTJ8LV1RXh4eHw8PBA2bJ5PNCQCED//v0xaNAgtGjRwqj1nj17Ns92aNGiRUZ9LSJ9MNkpwb799lsMHToUpUqVgqenp+y5XgqFgsmOjjw8PNCzZ0+EhISgefPmRR2ORpcvX0ZQUBCcnJxw//59DBkyBK6urti5cyeioqKwadOmIostMTFRGio+8X9PRc9LUQwpT0BCQgKCgoLg4+ODgQMHon///gYnyHPnzsVnn32GypUrw8PDQ60dKk42bdqE9957T208mJcvX2Lbtm3o16+fXvVev34dUVFRePnypay8S5cuetWXnp6Ow4cPIzIyEr1794aDgwOio6Ph6OgIe3t7vep83XGcnRLMx8cHw4YNw+TJkwvtNc6fP48bN24AAKpVq4a6desaXGdERAQiIyPRokUL2NjYQAhhUKOYmZmJiIgIjb8qdfkFu2vXLmzYsAG///47fH19ERISgn79+hX4gLmCzJs3Dx4eHggJCZGVr1u3Dk+fPtVp/wUFBaFu3bpYuHAhHBwccOnSJfj7++PkyZPo3bs37t+/b1CshlAqlXj06BHc3d1hZmamcZ9m7+uMjAyDXsuYXy7Pnj3D2rVrpeO8atWqCAkJgaurq0ExFoaXL19qPM69vb21ruPp06fYvHkzNm7ciOvXryMoKAiDBg1C165dYWFhoXNMHh4eWLBgAQYMGKDzutoy1v7OeYzmFBsbC3d3d52Py7t376J79+64cuUKFAoFsr9Os499fY7zBw8eoH379oiKioJKpcLt27fh7++P0aNHQ6VSYdWqVVrXVdCPjpx0/QHy999/Y8+ePRr3S7E8m5fvM9GpUDx+/Fh88MEHwsvLSyiVSmFmZib705aDg4OIjIwslBhjYmJEq1athEKhEC4uLsLFxUUoFArRunVr8eTJE73q/Pfff0WbNm2EQqEQZmZmUuwDBw4U48aN06vOsLAw4efnJ8zMzIRCoZD96fJe5vTkyRPx1VdficDAQGFubi46duwofv75Z5GWlqZXfT4+PuLEiRNq5adOnRK+vr461eXo6CgiIiKEEELY29tL7+H9+/eFlZWVXvFl++mnn8S7774rGjVqJOrUqSP708bhw4el9+jw4cP5/ukrMjJS1KxZU9q/Ofe1Pvv7yJEjwsnJSZQvX150795ddO/eXXh7ewtHR0dx5MgRveM09L3M7fbt26J58+ZqbYUhx7kQQpw/f16MGDFCWFtbi1KlSokxY8aI27dv61SHp6enzutoy9j7W6FQaGy/Ll68KFxcXHSur1OnTqJr167i6dOnwt7eXly/fl0cO3ZMNGzYUBw9elTn+oQQomvXruKDDz4QKpVK9hk/dOiQqFixok515Xyv8vrT5xj666+/hK2trahRo4YwNzcXtWvXFs7OzsLJyUm0atVKp7peFSY7RaB9+/aiWrVq4ptvvhG//PKL2LVrl+xPWyEhIWLlypWFEmPPnj1F/fr1xfXr16Wya9euifr164tevXrpVWffvn1FcHCwePjwoexDvG/fPlGtWjW96qxVq5Z49913xfXr18WzZ89EfHy87M9QS5cuFVZWVkKhUIjSpUuLqVOniuTkZJ3qsLKyEnfv3lUrj4yM1DlBKV26tAgPDxdCyJOdP//8U5QrV06nunJasmSJsLe3FyNGjBCWlpbio48+EkFBQcLJyUl8+umnetdrbMb+cqlRo4YYMmSISE9Pl8rS09PFhx9+KGrUqKFXjIXxXjZt2lS0aNFC/P777+LChQvi4sWLsj99REdHi/nz54vKlSsLOzs70a9fP9GmTRthbm4uFi1apHU9CxYsEKNHj9YrhoIYa3/Xrl1b1KlTR5iZmYnAwEBZ8lmzZk3h4OAg3n33XZ3jc3NzE5cuXRJCZP0QuXnzphBCiNDQUFG7dm2d6xNCCFdXV6menJ/xe/fuCRsbG53qKuhHh74/QBo0aCCmTZsmi/H58+eiS5cu4ptvvtGprleFyU4RsLe3FxcuXDC4nrlz54pSpUqJ/v37iy+//FIsWbJE9mcIR0dHcebMGbXy06dPCycnJ73q9PDwkBrmnB/iyMhIYWdnp1edtra24s6dO3qtm5fHjx+LBQsWiKpVqwpbW1vRp08fcfDgQbFp0yZRvXp10bZtW53qq1ixoti8ebNa+aZNm4Sfn59OdQ0aNEh069ZNvHz5Utjb24u7d++KBw8eiDp16hj0hVO5cmWxdetWIYR830ydOlUMHz5crzqfPXsm9u/fLzZv3iw2btwo+9OXsb9crK2tpTpyunnzprC2ttYrxsJ4L21tbcWNGzf0Wjenly9fih07doiOHTsKCwsLUa9ePbFy5UqRkJAgLbNz507h7OysdZ0ZGRmiffv2wt/fX3Tq1Ek6Q5b9Zwhj7e8ZM2aIGTNmCIVCISZMmCBNz5gxQ8ydO1ds3bpVqFQqneNzdnaWfsj4+/uLgwcPCiGEiIiI0DkxyVnntWvXhBDy4+fYsWPC3d1drzqNzd7eXjrD7OzsLK5evSqEyDpD5uPjU4SR5Y0dlItA+fLlpWu7hlizZg3s7e1x5MgRHDlyRDZPoVBg1KhRetedmZmp8fq9hYWFWn8BbSUnJ8PW1latPC4uTu8HyDVq1AgRERGoWLGiXuvntHPnTqxfvx779+9HtWrVMGzYMHzwwQdwdnaWlmnatCmqVq2qU71DhgzBmDFjkJaWhtatWwMAQkNDMWnSJIwfP16nur766iu88847cHd3x4sXL/Dmm2/i8ePHaNKkCebMmaNTXTlFRUWhadOmAAAbGxs8f/4cANC3b180btwYy5cv16m+vXv3ok+fPkhKSoKjo6Nap1V9O4JmZGTAwcEBAFCqVClER0ejcuXK8PHxwa1bt3Sur27durhx4wYqV64sK79x4wZq1aqlV4zGfi+BrP5y//77r17x5OTl5YXMzEy8//77OHPmDGrXrq22TKtWrWTHfEFGjRqFQ4cOoVWrVnBzczNqp2Rj7e/p06cDAHx9ffHee+/B2traKPHVqFEDly5dgp+fHxo1aoSFCxfC0tISa9asgb+/v151tmvXDosXL8aaNWsAZH1ekpKSMH36dLz11lsGxXvs2DGsXr0ad+/exU8//YSyZcti8+bN8PPz0+mmDDs7O6mfjpeXFyIjI1G9enUAMMpxWiiKOtt6He3fv1+0a9dO3Lt3r6hDyVOXLl1EixYtxD///COV/f333+LNN98U3bp106vODh06iM8++0wIIaSzEhkZGeLdd98VPXr00KvOnTt3imrVqon169eLc+fOiUuXLsn+dOHo6Cg+/PBDjWe0sqWkpIgZM2boVG9mZqaYNGmSsLa2lq6T29raipkzZ+pUT07Hjh0TK1asEAsWLBAHDhzQu55sfn5+0uWxevXqiVWrVgkhso5VffoyBAQEiNGjR+t8ya8gzZs3F7/88osQQoj3339ftG/fXhw/flz069dPVK9eXas6ch4f27ZtE97e3uKLL74Qx44dE8eOHRNffPGF8PX1Fdu2bdMrRmO/l0Jknclo0qSJOHTokPj3339FQkKC7E9bmzZtEi9evNArhrzY29uLX3/91ah1ZjPG/i5M+/btEz///LMQQog7d+6IypUrC4VCIUqVKiVCQ0P1qvPhw4eiWrVqomrVqsLc3Fw0btxYuLm5icqVK4uYmBi9Y92xY4ewsbERgwcPFlZWVtIZo2XLlokOHTroVFfXrl3FmjVrhBBCjB8/XlSsWFHMnj1b1K1bV7Rp00bvGAsTk50i4OzsLCwtLYWZmZmwt7eXOgBn/xUHUVFRonbt2sLCwkL4+/sLf39/YWFhIerUqSMePnyoV51XrlwR7u7uon379sLS0lK88847omrVqsLDw0M6Jaqr3J2Sc3Zk1LXTXX7JUXaDa4jnz5+LM2fOiCtXrojU1FSD6zOmQYMGSUnc8uXLhY2NjQgKChLOzs4iJCRE5/psbW0LpfO8Mb5ccnd2zetP346/xn4vs2PW1NnU0A7KxuDt7W2US2yaGDuZSE9PF1988YVo0KCB8PDwKJS2NzY2VmRmZhpUR1pamti8ebOYOHGiGDp0qPj2229FSkqKQXXWrl1buoSc8/JYeHi48PDw0KmuyMhIqb1MSkoSH330kQgMDBRvv/22uH//vkFxFhbeel4ENm7cmO/8/v37a1VPRkYGNmzYgNDQUI23ox48eFDvGIGs24T/+usv3Lx5E0DWLblBQUEG1ZmQkIDly5fj0qVLSEpKQt26dTF8+HB4eXnpVd+DBw/yne/j46N1XWXLlsXx48fh5+cnK//555/Rr18/JCcn6xWjoZYuXYoPP/wQ1tbWWLp0ab7L6nvpMjMzE5mZmTA3z7qyvW3bNpw8eRIBAQH46KOPYGlpqVN9b7/9Nnr16oWePXvqFY8u4uLi4OLiovXlk4KOmZx0OX6yGfu9BKB2mTq3N998U6t6kpOTMX/+/DzbjLt37+oc2/r167Fv3z6sX79e42VqY9N1f+c0bdo0fPfddxg/fjw+++wz/N///R/u37+PXbt2Ydq0aQZd+jeWwhrc1NbWFtevX4evr69s2Iq7d++iWrVqSE1NNfprFidMdkqwESNGYMOGDejYsSO8vLzUPvxff/21XvWmpaXBxsYGFy9eRI0aNYwRaokwffp0bNmyBSdOnICnpycA4Mcff0RISAg2bNiAd999V+u63n77bWzYsAGOjo54++238112586d+c738/PDuXPn4ObmppaI5aRQKPT6sioMa9euxaxZszBw4EAEBgaq9f/Sd7C1hIQEZGRkqI2BExcXB3Nzcw5WWID3338fR44cQd++fTW2GaNHj9a5zjp16iAyMhJCCPj6+qrt6/DwcINiNqYKFSpg6dKl6NixIxwcHHDx4kWp7NSpU9i6dWuBdRT0ec6poM+2Jvb29oUyuKm/vz/WrFmDoKAgWbKzadMmzJ8/H9evX9e5TmOM+/SqsINyEUtNTVUbkEnbBnvbtm3Yvn27wZ3WcrOwsIC3t7fBA78BWSP+1qhRA2ZmZrh8+XK+y9asWVPv1zHGoGMzZ85EXFwcgoKCcPToUezbtw+DBw/G5s2b0aNHD53icXJykr5InJycdFo3t3v37mn831AF7Y+cdN03Q4YMAQDMmjVLbZ4hgwr26tULnTt3xrBhw2Tl27dvx549e/D777/rVa+xR8CNj4/HmTNnNH4R6Ns5GwBSUlI0xqnt/vnjjz/w22+/oVmzZnrHkFu3bt2MVlduxj4T9fjxYwQGBgLISioSEhIAAJ06dcLUqVO1qsPQz3NBtmzZgg0bNqB169ZGHdx0yJAhGD16NNatWweFQoHo6GiEhYVhwoQJWm97ttu3b2PQoEE4efKkrFwYadDQQlGEl9BeW0lJSWL48OGidOnSGgd50paXl5e4detWocT43XffibfeekvExsYaVI9CoZA61eXXV0LffgfGHnRMCCF69+4tAgIChK2trU7jHmmSmZkpHjx4YPD19sKQu39Tfn/FhYuLi2zsp2w3btwQrq6uOtdXGMfPnj17hIODg1AoFMLJyUk4OztLf/r2C3ny5Ino2LGjwfvH19dX4/tXXPXq1Ut4eXmJSZMmia+//losXrxY9qerSpUqiVOnTgkhhGjWrJmYN2+eEEKIbdu2idKlSxs1dkMZe3DTzMxMMXv2bGFnZycd59bW1tJNI7oojHGfChuTnSIwbNgwUbVqVal3/Lp168Tnn38uypUrJ7Zs2aJ1PV9++aUYNmyYwZ3hNKldu7awt7cXVlZWolKlSnqPAnv//n0pvvv37+f7pw9DBx3bvXu32t+OHTtE+fLlxaBBg2Tl+sjIyBAWFhZGG2E2MzNTbN++XQwdOlT06NHDoDFNcr73v/zyi6hQoYJYtWqVdKfSqlWrREBAgFE6ZxuLra2tuHz5slr55cuX9RrXpDBGwC2MO9F69+4tmjVrJs6ePSvs7OzEn3/+KTZv3iwqV66s051QmzdvFu+8847R75J79uyZ+Pbbb8WUKVOkH0jnz58Xf//9t0H1Ojk5iePHjxsjRCGEEJMnTxZz5swRQmQlOObm5qJixYrC0tJSTJ482WivY2zGGNw0m0qlEteuXROnT58Wz58/16sOY4379Cqxz04R8Pb2xqZNm9CyZUs4OjoiPDwcFStWxObNm/HDDz9ofSq+e/fuOHToEFxdXVG9enW1a+X6XC/ONnPmzHznZ49bUdRKlSqFgwcPombNmnBycsKZM2dQuXJlHDx4EOPHj8eFCxfyXd/MzEyr1zHk1Gz16tWxdu1aNG7cWK/1cxo9ejRWr16NVq1aqT10EcjqLKqPhg0bYsaMGWqXRH///XdMnToV58+f17nO0NDQPC8/rFu3Tq84W7VqhRo1amDZsmWy8uHDh+Py5cs4duyYTvUZevxoYmdnhytXrug9zoomXl5e2L17Nxo2bAhHR0ecO3cOlSpVwp49e7Bw4UIcP35cq3oKo39N7ofT3rp1C/7+/vjss88Mfjitn58ffv/9d53HttJWWFgYwsLCEBAQgM6dO2u1Tt26dREaGgoXFxfUqVMn347ShvRXiomJwcaNG7FhwwY8ePAA3bt3x6BBg/D3339jwYIFKFOmDP7880+96zdEgwYN8PXXXxfbByZrwj47RSAuLk5qCB0dHREXFwcAaN68OYYOHap1Pc7OzujevXuhxFgYyczGjRtRqlQpdOzYEQAwadIkrFmzBtWqVcMPP/yg150vhg46pu8AibqYP38+Jk6ciJUrVxrc4Xvz5s3YuXOn0ftpXblyRWPnZz8/P706Ls6cOROzZs1C/fr1NXaE1dfs2bMRFBSES5cuoU2bNgCykqqzZ8/q1fAbe5BCAAgODsa5c+eMmuwkJydLD690cXHB06dPUalSJQQGBur0hVoY/WvGjRuHAQMGSA+nzfbWW2+hd+/eBtX9+eefY9q0adi4cWOh3OnVpEkTNGnSRKd1unbtKg2CWhjvpzEHNzXmjRI5Hyq6YMECTJo0CXPnztV4A0JxvFGAyU4R8Pf3x7179+Dt7Y0qVapg+/btaNiwIfbu3avTyKX6/oovKnPnzsXKlSsBZP2iWr58ORYvXoxff/0VY8eO1etMVGGMYGps/fr1Q0pKCmrVqgVLS0vY2NjI5mcnu9pwcnIqlO2qWrUq5s2bh++++066Nfrly5eYN2+eXr+qV61ahQ0bNqBv375GjbNZs2YICwvDF198ge3bt8PGxgY1a9bE2rVrERAQoHN9hXH8dOzYERMnTsT169eNdida5cqVcevWLfj6+qJWrVpYvXo1fH19sWrVKp2GbSiMHzFnz57F6tWr1crLli2Lx48fG1T3V199hcjISHh4eBjtTFR0dDSOHz+u8YyjNree53wPC+P9HDhwIHr16oUTJ06gQYMGGpcpU6YM/u///q/Auox5o4Szs7PsR4sQQvrBkbOsuHZQ5mWsIvD1119DqVRi1KhR+Ouvv9C5c2cIIZCWloZFixbpdfunMegydoUuX9DZbG1tcfPmTXh7e2Py5Ml49OgRNm3ahGvXrqFly5Z4+vSpznXu378fycnJePvttxEREYFOnTrh9u3bcHNzw48//ig9nkEbo0aNQsWKFdUavOXLlyMiIgKLFy/WOT7AeOMqZde1b98+rFu3Ti1pMsSZM2ek4zD7zp7Lly9DoVBg7969aNiwoU71ubm54cyZM6hQoYLRYiwMxjx+suV3aVTfL4ItW7YgPT0dAwYMwPnz59G+fXvExcXB0tISGzZswHvvvadTfca8Zdjd3R379+9HnTp1ZLc0HzhwACEhIXj48KHOdWYz9uX0DRs2SGMd5X60hSFDNxjz/bx8+XKed9ft2rWrUO9+y09BYz3lpO24T68Sk51i4MGDBzh//jwqVqyo8y2+O3bswPbt2zXejqrrr56cX8qxsbGYPXs2goODpdO8YWFh2L9/P6ZOnYqxY8fqVDcgbxTr1KmDcePGoW/fvoiMjEStWrWQlJSkc52a6DvoWNmyZbFnzx7Uq1dPVh4eHo4uXbrg77//Nkp8hnjx4gW6d++OEydOGH1Mk+TkZHz//feyQSR79+6t1wBnkydPhr29vc63tBYkPDwcFhYW0u3Du3fvxvr161GtWjXMmDFDrwH7cjNk0LpXJSUlRfrhUKpUKa3XK4xbhgcPHozY2Fhs374drq6uuHz5MpRKJbp164YWLVro/SOhMJQvXx4ff/wxPvnkE6376+WnMN7P4jq4aUnHy1ivWGZmJjZs2ICdO3fi/v37UCgU8PPzwzvvvCM14NpaunQp/u///g8DBgzA7t27MXDgQERGRuLs2bMYPny4zrHlPMPQo0cPzJo1CyNGjJDKRo0aheXLl+Ovv/7SK9lp27YtBg8ejDp16uD27dtSv5Nr167B19dX5/ryknvAOW3FxsZqPNXr6Oho8MPtIiMjsX79ekRGRmLJkiVwd3fHH3/8AW9vb+kBetro378/zp8/jw8++EBjB2VD2NnZ4cMPPzRKXampqVizZg3++usv1KxZUy0pW7RokV71fvTRR5gyZQoCAwNx9+5dvPfee3j77bfx008/ISUlxShfrPoeP6+Sra0t6tatq/N6AwcOhLm5OX799Vej9aUqrIfTZouPj8eOHTsQGRmJiRMnwtXVFeHh4fDw8EDZsmV1qislJQW9evUySqIDFM77OXjwYAQFBeU5uKm+YmJiMGHCBOmmgdznOXRJzPbt2wd7e3upg/KKFSvw7bffolq1alixYgVcXFz0jrOw8MzOKySEQOfOnfH777+jVq1aqFKlCoQQuHHjBq5cuYIuXbpg165dWtdXpUoVTJ8+He+//77s9PG0adMQFxen19OVs9nb2+PixYtqTxOPiIhA7dq19ToLEx8fj88++wwPHz7E0KFD0b59ewBZp6ItLS21ugadmzEHHatRowY+/vhjWYIHAMuWLcPKlSv16qgLZJ3+7dChA5o1a4ajR4/ixo0b8Pf3x/z583Hu3Dns2LFD67rs7Oywf//+QrkL4s6dOzh06JDG93HatGk61dWqVas85ykUCr0fZeLk5ITw8HBUqFABCxYswMGDB7F//36cOHECvXr10uqSiS6dNu3t7VG9enV8/PHHOvV5SE5OxpEjRzSecdX2kQTjxo3D559/Djs7O4wbNy7fZbVNHu3s7HD+/HlUqVJFq+V1cfz4cVy+fFl6DIyhj5YBjH+n16RJk+Dq6oopU6YYHBtQeO/nyJEjcejQIYMHN82pQ4cOiIqKwogRIzQmZl27dtW6rsDAQCxYsABvvfUWrly5gvr162P8+PE4dOgQqlSpUiz7k/LMziu0YcMGHD16FKGhoWpfBgcPHkS3bt2wadMmrUdYjYqKQtOmTQEANjY2eP78OQCgb9++aNy4sUHJjpubG3bv3o3x48fLynfv3g03Nze96nR2dtYYU0HX5fMzePDgfIe/18W4ceMwYsQIPH36VOqrERoaiq+++sqgMwZTpkzB7NmzMW7cONndKq1bt9Z5H5UvX75Q7nT49ttvMXToUJQqVQqenp5qfRl0TXYOHTpk7BABZP1gyE7E/vrrL3Tq1AlA1vui7dk3XTptqlQqrFq1CidOnMCePXu0qv/ChQt46623kJKSguTkZLi6uuLff/+Fra0t3N3dtU52Lly4gLS0NOn/vGR/7rVRrVo1g89S5qV58+aoX78+rKysjHbG0dh3es2bNw+dOnXCvn37NHYe1/WMY2G9n8uWLUOfPn3QuHFj/PPPP/jhhx90SkY0OX78OI4dO4batWsbHN+9e/dQrVo1AFmX1zp37oy5c+ciPDzc6HeKGs0rHtfntda2bVtpxE5N5syZI9q1a6d1fX5+fiI8PFwIIUS9evXEqlWrhBBC7N+/3+An+K5fv14olUrRqVMn8fnnn4vPP/9cdOrUSZibm4v169frXe+zZ8/El19+KQYNGiQGDRokFi1aJOLj4/Wuz9iDjn3zzTeibNmy0gijfn5+0pOC9WVnZyfu3r0rhJA/bfjevXvCyspKp7p+/fVXERwcLO7du2dQTLl5e3uL+fPnG7XOwtCqVSvRr18/sWnTJmFhYSHu3LkjhBDi8OHDwsfHp1Be89q1a8LW1lbr5d98800xZMgQkZGRIe3vqKgo0aJFC+kJ3tpatGhRvvMTExNF06ZNta4vNDRUNGnSRBw6dEj8+++/IiEhQfanj4yMDDFr1ixRpkwZoVQqpeP7s88+E999951edWZzdHQUERERQgj5Z+f+/fs6f3aEEOLzzz8XCoVCVKlSRbz55puiZcuW0l+rVq10rs9Y72dhD24qhBBVq1aVvi8M5eLiIq5duyaEyBqJevXq1UKIrDZNn8E9XwUmO6+Qh4eHuHDhQp7zw8PDhYeHh9b1DRo0SMyYMUMIIcTy5cuFjY2NCAoKEs7OziIkJMTQcMWpU6dE7969pVGTe/fuLQ21ro+zZ88KV1dXUbZsWWnE33Llygk3Nzdx/vx5veosrOHvnzx5ovfoormVLVtWnDhxQgghb7B37twp/P39darL2dlZWFpaCjMzM2Fvby9cXFxkf/pycHCQ4jKWs2fPiokTJ4r33nvPoJGec7p06ZKoUaOGcHR0lI59IYQYMWKEeP/9940Rtpr09HSdhsB3cnISN2/elP7PPj5PnTolKleurNNrW1tb55lsJyUliWbNmulUZ+7HYWT/GfLIlpkzZwp/f3+xZcsWYWNjIx1H27ZtE40bN9arzmylS5eWvqBzfnb+/PNPUa5cOZ3rc3Z2NujHWm7Gej81PULHmI/VESLrR3C7du2M8kOpc+fOIjg4WMyaNUtYWFhII2Xv379fBAQEGFx/YWCfnVfI0tISDx48yHNcjOjoaPj5+UGlUmlVX2ZmJjIzM2FunnU1ctu2bTh58iQCAgKk2yuLkzfeeAMVK1bEt99+K8Wcnp6OwYMH4+7duzh69KjOdW7ZsgW7d+8utEHHjGHChAk4ffo0fvrpJ1SqVAnh4eGIiYlBv3790K9fP51unzXmbew5DRo0CA0aNMDHH3+s1/q5bdu2Df369UNwcDD+/PNPtGvXDrdv30ZMTAy6d+9u9Gv6qampUCqVapcltHHu3Lk872jUZ+yn0qVLS5/DSpUqYdmyZQgODsbNmzdRr149ne6m2bFjB/r27Ysff/xRNj5PUlIS2rdvjydPnuDw4cNaPySyoNuH9blluGLFili9ejXatGkj6zt48+ZNNGnSBM+ePdO5zmzGvtPL09MTx44d02tMJk3yez+vXLmi1v+vKLm4uCAlJQXp6emwtbVV+6zoMpxIVFQUhg0bhocPH2LUqFEYNGgQAGDs2LHIyMjA0qVLjRq7MTDZeYWUSiUeP36M0qVLa5wfExODMmXKFJsBmbLvILp79y4WL16s9x1E2WxsbHDhwgW1znzXr19H/fr1kZKSolU9uYdoj4iI0Hv4+1cx9PvLly8xfPhwbNiwARkZGTA3N0dGRgZ69+6NDRs2QKlU6lWvMc2bNw+LFi1Cx44dNfZl0LafSbaaNWvio48+wvDhw6UvQD8/P3z00Ufw8vIyqJ+WMe/OKYykrF27dhgwYAB69+6NIUOG4PLlyxg1ahQ2b96MZ8+e4fTp0zrV991332H06NH47bff0LJlSyQnJ6N9+/Z4/Pgxjhw5YvDTsA1lY2ODmzdvwsfHR5bsXL9+HQ0bNjRoSImEhAS88847OHfuHJ4/f44yZcpId3r9/vvvOg+LMG/ePDx69KjQvoyfP3+OH374Ad999x3Onz+vU1seFhaG2NhYqR8aAGzatAnTp09HcnIyunXrhmXLlkmjN+uqsH4olRTsoPwKCSEwYMCAPA9Wbc/o5BQfH4+1a9fixo0bALKewxQSEmLwaJm57yCaPXs23N3dcenSJaxdu1anO4iyOTo6IioqSi3ZefjwoazzYUGMOahW165dER0dDRcXl0IbrMvS0hLffvstpk6diqtXryIpKQl16tQx6NflkydPNN41pes4TdnWrFkDe3t7HDlyRO3XqkKh0DnZiYyMlB4LYmlpieTkZCgUCowdOxatW7fWO9m5fPky2rRpA2dnZ9y/fx9DhgyBq6srdu7cqdfdOXPnzsXXX38tJWVLliyRJWX6mDt3rtRpeM6cOejXrx+GDh2KgIAAvZ4JNnjwYMTFxaFr167YvXs3pk2bhujoaL0TnWPHjmH16tW4e/cufvrpJ5QtWxabN2+Gn5+fXnf5VatWDceOHVN73MuOHTtQp04dnevLycnJCQcOHDDanV5nzpzBwYMH8euvvxr1eYJHjx7F2rVr8fPPP6NMmTJ4++23sWLFCp3qmDlzJlq1aiUlO1euXMGgQYMwYMAAVK1aFV988QXKlCmDGTNm6BWjoclMYmKidHNEzkdHaFIcHxfBPjuv0IABA7T601Zh9IHJ1rhxY/HVV18JIeTXyk+fPi3Kli2rV50jR44U5cqVE9u2bRNRUVEiKipK/PDDD6Js2bJi1KhRBsVrCIVCIRo2bChWr14tEhMTiywObZw7d05Ur15d6hdgrOv5xla2bFnp6eSBgYFi69atQgghTp48KRwdHfWut02bNmLixIlCCPlxeeLECb06KNva2kp9GFxdXaWYr1+/Ljw9PfWOszBMnjxZmJmZCX9/fxEVFaVXHTt27BA2NjZi8ODBwsrKSnr/li1bJjp06KBXnbt27RJOTk5i/vz5wtbWVnzxxRdi8ODBwtLSUvz555961VlYjNX2CiHEo0ePxLx580TFihWFu7u7GDFihDA3N5c67urK09NTnD17Vpr+9NNPRbNmzaTp7du3i6pVq+pVd24vXrzQuTO1mZmZiImJEUIIjf2UDO37Vdh4ZucVMnY/hbFjx6JLly4a+8CMGTNGrz4w2a5cuYKtW7eqlbu7u+t9q+WXX34JhUKBfv36IT09HUIIWFpaYtiwYXoPPubv74+zZ8+q3Q4fHx+PunXrajXOzpEjR7B+/XpMmDAB48aNwzvvvINBgwbhjTfe0CsmAAWOi5KTLre7hoSEoFKlSli7dq3RBxXMJv53ZduQulu0aIEDBw4gMDAQ7777LkaPHo2DBw/iwIEDas/T0YWxn8Pk4uIinYUpW7Ysrl69isDAQMTHx2t9WTW36dOnIyQkRK8H2+aWexwgCwsLlCpVSu2RMtqekZg9ezZWrVqFfv36Ydu2bVJ5s2bNMHv2bL1i7Nq1K/bu3YtZs2bBzs4O06ZNQ926dbF37160bdtW5/p0ucSk6xlHY7XBnTt3xtGjR9GxY0csXrwY7du3h1KpxKpVq/Su89mzZ/Dw8JCms8+uZ2vQoIFBj95ITk7G5MmTsX37dsTGxqrNL+iS28GDB6UBN/MbWuLKlSt6x1ioijrbIv1ZW1uLGzduqJVfu3bN4Nv/jHkHUW7Jycni8uXL4vLlyyI5OVl8+eWXOt2FlpNCoZB+beT0+PFjYWFhoVNdSUlJYt26daJFixZCoVCIgIAAMX/+fPHo0SOd48p5S2vLli2Fo6OjsLW1le5ss7OzE46Ojjrf7mpvby/dbm1sGzduFDVq1BBWVlbCyspKBAYGik2bNulVV2xsrPjnn3+EEFm3Js+bN0907txZjBs3TsTFxekdo7Hvznn//felM5izZs0SpUuXFoMHDxY+Pj6iW7duesVYq1YtoVQqRevWrcX3338vUlNT9apHCOOfDbaxsZHOZOV8/yIjI/W6lVsIIR4+fJjnvLCwMJ3r8/X11erPz89P57pTUlJEcnKyNH3//n3x9ddfi/379+tUj1KpFGPHjhW3b9+WlRtyZsfb21scOXJECCGESqUSNjY24q+//pLmX7582aA7LocNGyaqVq0qnd1bt26d+Pzzz0W5cuXEli1b9K5XiKwhEFavXi0aNGhQbM/sMNkpwdzd3TV+SPft2yfc3d0Nqnv8+PGiefPm4tGjR8LBwUHcuXNHHD9+XPj7+8tu+dVGamqqmDJliqhXr55o2rSp+OWXX4QQQqxbt06UKVNGlC9fXucxXrLHnFAoFGLTpk2ycSh27twphg8fLipVqqRTnTnduXNHfPrpp6J8+fLCwsJCdO7cWe+6vvrqK9G5c2fZl3xcXJzo2rWr+PLLL3Wqq2vXrmLHjh16x5KXr776Stja2opJkyZJ7+PEiROFra1tgWO9vEqDBg0S3bp1Ey9fvhT29vbi7t274sGDB6JOnTpi9OjROteXX1IWHR2td5zh4eFi5MiRolSpUsLZ2Vl8/PHH4syZM3rXZyx+fn7iwIEDQgh5srNx40a9L5FUrVpVxMbGqpUfP35cODk56R1rYWjbtq1YuXKlECJrzC93d3dRrlw5YW1tLb755hut6wkLCxODBw8WDg4OomHDhmLZsmXi6dOnBiU7H3/8sWjSpIk4evSoGDdunHBzcxMqlUqav2XLFlG/fn296hZCiPLly4tDhw4JIYTUpgshxKZNm/S+hHnkyBHRr18/YWdnJwICAsTkyZOLxXGuCZOdEiyvPjDlypXTq+HPSaVSiSFDhggLCwuhUCiEhYWFMDMzEx988IFIT0/Xqa5JkyYJJycn0aNHD+Hl5SXMzc3FkCFDRGBgoPjhhx90rk8I+fgWufuuWFpaikqVKom9e/fqXG9OSUlJYvXq1cLV1dWgXytlypQRV69eVSu/cuWK8PLy0qmup0+firfeekvMmDFD7NixQ20gMn35+vpqHM9lw4YNwtfXV+f62rRpI9avX6/3QHV5iY+Pl8aSUiqVUjLaokULkZSUZJTXePHihUFnG3N6+fKl+Pnnn0WnTp2EhYWFCAwMFIsXLzZoIE1DzJ07V1SrVk2cOnVKODg4iGPHjoktW7aI0qVLi6VLl+pV58CBA0W9evVk/d2OHDkiHB0djZYoq1QqcfPmTZGWlmZQPW5ubtJn8dtvvxU1a9YUGRkZYvv27aJKlSo615eUlCTWrl0rmjVrJrWRixcv1qvv39OnT8Ubb7whFAqFcHBwEDt37pTNb926tfj00091rjebnZ2dePDggRAi68z96dOnhRBC3L17V9jZ2Wldj7H7Kr0qTHZKMJVKJUaNGiUNMqdQKISVlZUYM2aM3qfOMzIyxPz580XTpk1F/fr1RUhIiPjtt9/Ejz/+qHbKVlt+fn7SF/GVK1eEQqEQAwcOFJmZmXrVl5Ovr694+vSpwfXkdOTIEdG/f39hb28vHB0dxeDBg/U6HZ/N3t5e+kWV08GDB4W9vb1Ode3Zs0c4OTkZfcAxKysrjZfHbt++rdfljVGjRglPT09hY2Mj3nnnHbFr1y7x8uVLvePL7fjx42LFihViwYIF0pkKXeQ829ikSROjnG3URKVSiW3btol27doJc3Nz0aJFC1GxYkXh4OAgtm3bZnD9usrMzBSzZ88WdnZ20nFjbW0tPvvsM73rzMjIEN27dxdvvvmmSE1NlY7rxYsXGxxvcnKyCAkJEUqlUjY684gRI/IdjT4vNjY20hf+u+++K52ljoqKMvjS/82bN8XEiROFp6ensLa21vtscHx8vMYfgLGxsbIzPboKDAwUhw8fFkJk/RgZP368EEKIJUuWaH3TSadOnYSjo6N4//33xa+//irFyWSHXoncfWAMMWvWLGFmZibatWsnunbtKqytrcXAgQMNqjPnCJtCZPU1yr7rRV8dOnSQ/TqeN2+eePbsmTT977//6nRa/p9//hFz5swRAQEBQqFQiGbNmol169YZ5WxB3759ha+vr/j555/Fw4cPxcOHD8WOHTuEn5+f6Nevn051+fj4iOHDh4vHjx8bHFdO1atXF3PmzFEr//zzz0WNGjX0qjMjI0Ps379f9O/fXzg6OgoXFxcxZMgQqcEtSoVxtjGnc+fOieHDhwtXV1fh5eUlJk+eLEsmly5davClZkOoVCpx7do1cfr0aaOMFK5SqURQUJBo2rSpsLe3F8uWLTNClFlJc7169cSxY8eEnZ2dlOzs2rVL1K5dW+f6AgMDxZIlS0RUVJRwdHQUJ0+eFEJk7S9jnMkTImvE7V9++cWgS9+FYdGiRWLJkiVCCCEOHDggrK2thZWVlXQ2ShuF0VfpVeGggiVQQU9qBgBzc3N4enqibdu26Ny5s9Z1BwQEYMKECfjoo48AZD1ssWPHjnjx4gXMzMz0ijf3YIoODg64fPky/Pz89KoPAMzMzPD48WO4u7sDyBrX4eLFi/D39weg2wCNHTp0wF9//YVSpUqhX79+CAkJQeXKlfWOLbeUlBRMmDAB69atkx7saG5ujkGDBuGLL77QaWA0BwcHXLx4ERUqVDBafEDWw/zee+89BAUFoVmzZgCAEydOIDQ0FNu3b0f37t0Nqj81NRV79+7FnDlzcOXKFb0Hzhw1ahQqVqyodhfO8uXLERERofWIuv7+/li8eDG6dOmCq1evombNmhgwYADWrl1r8B1ugYGBuHnzJtq1a4chQ4agc+fOagNH/vvvv3B3d1cbJ6mwGLvNuHz5slrZ8+fP8f7776Njx44YOnSoVK7v2E8A4OPjgx9//BGNGzeWDVgYERGBunXrFjjeS247duxA7969kZGRgdatW+PAgQMAsgYbPHr0KP744w+9Yy1pHjx4gPPnz6NixYpa76NTp05h7dq1+PHHH1G1alX07dsXvXr1gpeXFy5duiQ9HLQ4YrJTAg0cOLDAZTIzM/HkyRMcOXIEEyZMwKxZs7Sq28rKChEREShfvrxUZm1tjYiICJQrV06veM3MzNChQwdpMMW9e/eidevWal/yugzolTvZydkQArolO126dMGgQYPQqVOnQh3NODk5GZGRkQCAChUq6Dz6K5A1MNgbb7yBwYMHGzs8nD9/Hl9//bU0QGXVqlUxfvx4gweGe/z4MbZt24YtW7YgPDwcDRs2xKlTp/Sqq2zZstizZw/q1asnKw8PD0eXLl3w999/a1WPpaUl7t27J424bGNjgzNnziAwMFCvuHL6/PPPERISovNozoXJ2G2GmZkZFAoFcn595JzO/l+hUBg0IrytrS2uXr0Kf39/2Wf80qVLaNGiBRISEnSu8/Hjx3j06BFq164tJbZnzpyBk5OTUX/kFCeZmZnYsGEDdu7cifv370OhUMDPzw/vvPMO+vbtq3OCn5ycjB9//BHr1q3DmTNnkJGRgUWLFiEkJESnAWJfJSY7Ju7XX3/FsGHDEBUVpdXymh5pYeiZGG0aWkC3MTCMmey8KhEREYiMjESLFi1gY2MjfRnoYs6cOVi8eLHRHutQWBITE/Hzzz9j69atOHz4MPz9/dGnTx/06dPHoLNS1tbWuHr1KipWrCgrj4iIQI0aNZCamqpVPYVxttFUaNNmPHjwQOv6DBlvqEWLFnj33XcxcuRI2T4aOXIk7ty5g3379mlVjzZntgD9R1AuzoQQ6Ny5M37//XfUqlULVapUgRACN27cwJUrV9ClSxfs2rVL7/pv3bqFtWvXYvPmzYiPj0fbtm2xZ88e422AkXBQQRPXvHlz1K9fX+vlhYZHWqSmpuLjjz+WnYnQpVEw9mCKQNYvx9yJQmEMsGcMsbGx6NmzJw4dOgSFQoE7d+7A398fgwYNgouLC7766iut6/ruu++M+liHnDIzMxEREaHxMRQtWrTQqS4PDw+4uLjgvffew7x583Q6BvNTsWJF7Nu3T+0Bi3/88YeU6Goj93Gu6RgHtD/Ox40bh88//xx2dnYFDiipyyCSRUGbNsMYAyZqY+7cuejQoQOuX7+O9PR0LFmyBNevX8fJkycLfKhpToY+Pqck27BhA44ePYrQ0FC0atVKNu/gwYPo1q0bNm3ahH79+ulVf+XKlbFw4ULMmzcPe/fu1euRKK8Cz+yQTGGchSkMBV0aU6lU2LdvX7E4s9OvXz88efIE3333HapWrSqdgdq/fz/GjRuHa9euFXWIOHXqFHr37o0HDx4gd5Ogz6WI7JGS9e3nlZd169ZhxIgRmDhxIlq3bg0ACA0NxVdffYXFixdjyJAhWtVj7OO8VatW+OWXX+Ds7Kz2hZKTQqHAwYMHtaqzpLl+/brGJ8fnfFq7PiIjIzF//nxcunRJejbW5MmTjXLJ8XXQrl07tG7dGlOmTNE4f+7cuThy5Aj279//iiN7tZjsUIlUUpIyAPD09MT+/ftRq1Yt2eW2u3fvombNmgY9FdpYateujUqVKmHmzJnw8vJSO0um7y/jp0+f4tatWwCyfgHmvDyqr5UrV2LOnDmIjo4GAPj6+mLGjBl6/zIlw9y9exfdu3fHlStX1PrtAAU/hkATbTseF8sHThYznp6e2LdvH2rXrq1x/oULF9ChQwe9HrdSkjDZISpkDg4OCA8PR0BAgCzZOXfuHIKDgzU+pyanV3GJxM7ODpcuXVLrC6OvlJQUjBgxAps2bZIuiSmVSvTr1w/Lli2Dra2twa/x9OlT2NjYwN7e3uC6SH/Zd5t999138PPzw5kzZxAbG4vx48fjyy+/1OsZc9kdoPNijM7PrwtLS0s8ePAAXl5eGudHR0fDz88PKpXqFUf2arHPDlEhe+ONN7Bp0yZ8/vnnALJ+8WZmZmLhwoX5XvLIduHCBemW9QsXLhRKjI0aNUJERITRkp2xY8fiyJEj2Lt3r3Qr+/HjxzFq1CiMHz8eK1euNPg1jHGWqLCcO3cO27dv13hZx9Q6wYaFheHgwYMoVaoUzMzMYGZmhubNm2PevHkYNWqUXsdszgdNCiHw1ltv4bvvvitWd7iVFBkZGdKDojVRKpVIT09/hREVDSY7RIVs4cKFaNOmDc6dO4eXL19i0qRJuHbtGuLi4nDixIkC18/Z8Of3tGFd5RwrZeTIkRg/fjweP36s8S4vXcdK+fnnn7Fjxw60bNlSKnvrrbdgY2ODnj176p3sxMTEYMKECQgNDcWTJ0/U+hcVh1/627ZtQ79+/RAcHIw///wT7dq1w+3btxETE2PweEXFUUZGhnS7calSpRAdHY3KlSvDx8dHuoSpqzfffFM2rVQq0bhxY506oVMWTTed5GTqZ3SyMdkhKmQ1atTA7du3sXz5cjg4OCApKQlvv/02hg8fnuep5dwKYyDJ7HFGciYMISEhasvpc7kgJSUFHh4eauXu7u5ISUnRqa6cBgwYgKioKEydOlVj36LiYO7cufj6668xfPhwODg4YMmSJfDz88NHH32k9f4uSWrUqIFLly7Bz88PjRo1wsKFC2FpaYk1a9YwOSkG+vfvX+Ayr0N/N/bZISpEaWlpaN++PVatWoWAgAC96ymMgSS1HSslOTlZ55FR27RpAzc3N2zatAnW1tYAgBcvXqB///6Ii4vDX3/9pVN92RwcHHDs2LE8O1sWB3Z2drh27Rp8fX3h5uaGw4cPIzAwEDdu3EDr1q3x6NGjog7RqPbv34/k5GS8/fbbuHPnDjp37ozbt2/Dzc0N27ZtQ5s2bQx+jdzjaBHpimd2iAqRhYWFxqH1daXLXWXZg8IVlOwUNFaKSqXCihUrsHDhQp3v1FiyZAmCg4NRrlw51KpVCwBw6dIlWFtbG3SLa/ny5dUuXRU3Li4ueP78OYCsEZ+vXr2KwMBAxMfHG3RWq7gKDg6W/g8ICMDNmzcRFxcHFxcXo555K45n8ajkYLJDVMg++OADrF27FvPnz38lr6fLQJIqlQozZszAgQMHYGlpiUmTJqFbt25Yv349/u///g9KpRJjx47VOYYaNWrgzp07+P7773Hz5k0AwPvvv48+ffrAxsZG5/qyLV68GFOmTMHq1avh6+urdz2FqUWLFjhw4AACAwPx7rvvYvTo0Th48KA09pCpKMxn9OWu29BBH4l4GYuokI0cORKbNm1CQEAA6tWrp9ZgF+WIupMnT8bq1asRFBSEkydP4unTpxg4cCBOnTqFTz/9FO+++26hPi9MVy4uLkhJSUF6ejpsbW3VOlLHxcUVUWTyGFJTU1GmTBnprruTJ08iICAAn332GVxcXIo6RKMozGf0laRxtKhkYLJDVEju3r0LX1/ffH/NF/WIusZ8+veePXvQoUMHWFhYFPhsHH1H1d24cWO+87XpjEmvnq7P6CMyNiY7RIVEqVTi0aNH0sNK33vvPSxdulTjXUpFxZhP/875cNb8HhNhqoPBFTQQHpC17a/DmCa5xcfHIyQkhJedqMiwzw5RIcn9O+KPP/5AcnJyEUWjWUZGBiwtLaVpc3NzvUckzvnw0NwPEi0MqampagP2FeXjA3755Zc854WFhWHp0qWv5H0pjpydnZnoUJFiskP0ihTHk6jGfvr3ixcvEBoaik6dOgEAPvnkE9mgZebm5pg1a5Z0O7qukpOTMXnyZGzfvl3jYzaK8oxR165d1cpu3bqFKVOmYO/evejTp4/WfVaIyLiY7BAVEoVCoXZZo7jdPpu7j8sHH3xgUH0bN27Eb7/9JiU7y5cvR/Xq1aU7sG7evAlPT88Cn/GVl0mTJuHQoUNYuXIl+vbtixUrVuCff/7B6tWrX9ndbtqIjo7G9OnTsXHjRgQHB+PixYuoUaNGUYdF9Npinx2iQmJmZoYOHTpIZ0327t2L1q1bm/Tts2+88QYmTZok3WacezC4LVu2YMWKFQgLC9Orfm9vb2zatAktW7aEo6MjwsPDUbFiRWzevBk//PADfv/9d6Ntiz4SEhIwd+5cLFu2DLVr18aCBQv0ehAmERkXz+wQFRJjnzUpCSIiImSdm62trWWdlRs2bIjhw4frXX9cXJyUODk6Okq3mjdv3hxDhw7Vu15jWLhwIRYsWABPT0/88MMPGi9rEVHRYLJDVEhexzFA4uPjZX10nj59KpufmZlp0IMH/f39ce/ePXh7e6NKlSrYvn07GjZsiL1798LZ2Vnveo1hypQpsLGxQcWKFbFx48Y8b5M3pTN5RCUFkx0iMppy5crh6tWrqFy5ssb5ly9fRrly5fSuf+DAgbh06RLefPNNTJkyBZ07d8by5cuRlpZWpIMzAlkPUyxufbKIKAv77BCR0YwePRp//fUXzp8/r3bH1YsXL1C/fn0EBQVhyZIlRnm9Bw8e4Pz586hYsSJq1qxplDqJyPQw2SEio4mJiUHt2rVhaWmJESNGoFKlSgCybsFevnw50tPTceHCBb0GVjTWE+SJ6PXDZIeIjOrevXsYOnQoDhw4II0tpFAo0LZtW3zzzTdSB2N9lC5dWnrOFBGRtpjsEFGhiIuLQ0REBACgYsWKcHV1NbjOsWPHwsrKqliNqUNExR+THSIqMYrzE+SJqPji3VhEVOxlP0H+6tWrqFu3LgDg9u3bsmV4JxQR5YVndoio2CsJT5AnouLLrOBFiIiKVkl4gjwRFV9MdoioxOEJaSLSBZMdIir2SsIT5Imo+GIHZSIq9oQQGDBggPQE+dTUVHz88ccm/QR5IjIeJjtEVOy9jk+QJyLj4d1YREREZNLYZ4eIiIhMGpMdIiIiMmlMdoiIiMikMdkhIiIik8Zkh4heCy1btsSYMWOKOgwiKgJMdoioyDx9+hRDhw6Ft7c3rKys4OnpieDgYJw4cQJA1sCBu3btKtog8zFgwAB069atqMMgogJwnB0iKjI9evTAy5cvsXHjRvj7+yMmJgahoaGIjY0t6tCIyITwzA4RFYn4+HgcO3YMCxYsQKtWreDj44OGDRvik08+QZcuXeDr6wsA6N69OxQKhTSt6WzKmDFj0LJlS2k6OTkZ/fr1g729Pby8vPDVV1+pvb5KpcKECRNQtmxZ2NnZoVGjRjh8+LA0f8OGDXB2dsb+/ftRtWpV2Nvbo3379nj06BEAYMaMGdi4cSN2794tPc4i5/pEVHww2SGiImFvbw97e3vs2rULKpVKbf7Zs2cBAOvXr8ejR4+kaW1MnDgRR44cwe7du/Hnn3/i8OHDCA8Ply0zYsQIhIWFYdu2bbh8+TLeffddtG/fHnfu3JGWSUlJwZdffonNmzfj6NGjiIqKwoQJEwAAEyZMQM+ePaUE6NGjR2jatKk+bwURFTImO0RUJMzNzbFhwwZs3LgRzs7OaNasGT799FNcvnwZAFC6dGkAgLOzMzw9PaXpgiQlJWHt2rX48ssv0aZNGwQGBmLjxo1IT0+XlomKisL69evx008/4Y033kCFChUwYcIENG/eHOvXr5eWS0tLw6pVq1C/fn3UrVsXI0aMQGhoKICsZM3Gxkbqa+Tp6QlLS0tjvT1EZERMdoioyPTo0QPR0dHYs2cP2rdvj8OHD6Nu3brYsGGD3nVGRkbi5cuXaNSokVTm6uqKypUrS9NXrlxBRkYGKlWqJJ1hsre3x5EjRxAZGSktZ2triwoVKkjTXl5eePLkid6xEVHRYAdlIipS1tbWaNu2Ldq2bYupU6di8ODBmD59OgYMGKBxeTMzM+R+pF9aWppOr5mUlASlUonz589DqVTK5tnb20v/W1hYyOYpFAq11yai4o9ndoioWKlWrRqSk5MBZCUbGRkZsvmlS5eWOglnu3jxovR/hQoVYGFhgdOnT0tlz549w+3bt6XpOnXqICMjA0+ePEHFihVlf56enlrHamlpqRYfERU/THaIqEjExsaidevW2LJlCy5fvox79+7hp59+wsKFC9G1a1cAgK+vL0JDQ/H48WM8e/YMANC6dWucO3cOmzZtwp07dzB9+nRcvXpVqtfe3h6DBg3CxIkTcfDgQVy9ehUDBgyAmdl/zV2lSpXQp08f9OvXDzt37sS9e/dw5swZzJs3D7/99pvW2+Dr64vLly/j1q1b+Pfff3U+w0RErwaTHSIqEvb29mjUqBG+/vprtGjRAjVq1MDUqVMxZMgQLF++HADw1Vdf4cCBAyhfvjzq1KkDAAgODsbUqVMxadIkNGjQAM+fP0e/fv1kdX/xxRd444030LlzZwQFBaF58+aoV6+ebJn169ejX79+GD9+PCpXroxu3brh7Nmz8Pb21nobhgwZgsqVK6N+/fooXbq0NBgiERUvCsEL0ERERGTCeGaHiIiITBqTHSIiIjJpTHaIiIjIpDHZISIiIpPGZIeIiIhMGpMdIiIiMmlMdoiIiMikMdkhIiIik8Zkh4iIiEwakx0iIiIyaUx2iIiIyKT9P7vawqov0P1pAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create a bar plot of name vs grade\n", + "plt.bar(x=df_students.Name, height=df_students.Grade, color='orange')\n", + "\n", + "# Customize the chart\n", + "plt.title('Student Grades')\n", + "plt.xlabel('Student')\n", + "plt.ylabel('Grade')\n", + "plt.grid(color='#95a5a6', linestyle='--', linewidth=2, axis='y', alpha=0.7)\n", + "plt.xticks(rotation=90)\n", + "\n", + "# Display the plot\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "A plot is technically contained within a **Figure**. In the previous examples, the figure was created implicitly for you, but you can create it explicitly. For example, the following code creates a figure with a specific size." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAArcAAAF0CAYAAAA5CRHwAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAACBlklEQVR4nO3dd1QUVxsG8GdZqiAgKGClKHas2I0axaCxa0yMxgJqEnvEnliiny0m1mgssWuMsZcktmCJvWHDDhaMPSIgoEu73x+GkWEXWNhhwfX5ncPRubtz3zs7s3ffnb1zRyWEECAiIiIiMgFmed0AIiIiIiKlMLklIiIiIpPB5JaIiIiITAaTWyIiIiIyGUxuiYiIiMhkMLklIiIiIpPB5JaIiIiITAaTWyIiIiIyGUxuiYiIiMhkMLklIsplKpUK3377bV43I9+6c+cOVCoVVq5cmddNISITwOSWiEzapUuX8NFHH8Hd3R3W1tYoXrw4mjdvjh9//FH2vKlTp2Lbtm1500gFrFu3DnPmzMnWOikpKVi9ejWaN2+OwoULw8LCAi4uLvjggw+wZMkSaDSa3GksEVEuYnJLRCbr2LFj8PX1xYULF9C3b1/Mnz8fffr0gZmZGebOnSt77ruW3L58+RIffvghevbsifj4eAwfPhxLlizBqFGjYG1tjf79+6N///6512AiolxintcNICLKLVOmTIGDgwNOnz4NR0dH2WNPnjzJm0blE0OHDsWePXswZ84cDBkyRPbYsGHDcPPmTezbty/TOpKSkpCSkgJLS8vcbCoRUbbwzC0Rmazw8HBUqlRJK7EFABcXF+n/KpUKcXFxWLVqFVQqFVQqFXr16gUA6NWrFzw8PLTW//bbb6FSqWRlGo0GQ4cORZEiRVCwYEG0bdsW//zzj8623b9/H4GBgXB1dYWVlRUqVaqE5cuXy55z8OBBqFQqbNiwAVOmTEGJEiVgbW2NZs2aISwsTHpekyZN8Mcff+Du3btS+3W1OdW9e/ewdOlStGjRQiuxTeXt7S07c5s6LvaHH37AnDlzULp0aVhZWeHKlStISEjA+PHjUbNmTTg4OMDW1hbvvfceDhw4oFVvVFQUevXqBQcHBzg6OqJnz56IiorS2YZr167ho48+gpOTE6ytreHr64sdO3bInpOYmIiJEyfC29sb1tbWcHZ2RsOGDbNMzInIdPHMLRGZLHd3dxw/fhyhoaGoXLlyhs9bs2YN+vTpg9q1a+Pzzz8HAJQuXTrb8fr06YO1a9eia9euqF+/Pvbv349WrVppPe/x48eoW7cuVCoVBg4ciCJFimDXrl3o3bs3YmJi8NVXX8meP336dJiZmWH48OGIjo7GjBkz0K1bN5w8eRIA8M033yA6Ohr//PMPZs+eDQCws7PLsJ27du1CcnIyPvvss2xv44oVK/Dq1St8/vnnsLKygpOTE2JiYrB06VJ8+umn6Nu3L168eIFly5bB398fp06dQrVq1QAAQgi0a9cOR44cwZdffokKFSpg69at6Nmzp1acy5cvo0GDBihevDhGjx4NW1tbbNiwAe3bt8fmzZvRoUMHAK+/ZEybNk3afzExMThz5gxCQkLQvHnzbG8fEZkAQURkovbu3SvUarVQq9WiXr16YuTIkWLPnj0iISFB67m2traiZ8+eWuU9e/YU7u7uWuUTJkwQabvQ8+fPCwCif//+sud17dpVABATJkyQynr37i2KFi0q/v33X9lzu3TpIhwcHER8fLwQQogDBw4IAKJChQpCo9FIz5s7d64AIC5duiSVtWrVSmc7dRk6dKgAIM6fPy8r12g04unTp9Jf2vbdvn1bABD29vbiyZMnsvWSkpJk7RNCiOfPnwtXV1cRGBgolW3btk0AEDNmzJCt+9577wkAYsWKFVJ5s2bNhI+Pj3j16pVUlpKSIurXry+8vb2lsqpVq4pWrVrptd1E9G7gsAQiMlnNmzfH8ePH0bZtW1y4cAEzZsyAv78/ihcvrvXztqH+/PNPAMDgwYNl5enPwgohsHnzZrRp0wZCCPz777/Sn7+/P6KjoxESEiJbJyAgQDau9b333gMA3Lp1K0dtjYmJAaB9dvfPP/9EkSJFpD93d3etdTt16oQiRYrIytRqtdS+lJQUREZGIikpCb6+vrJt+fPPP2Fubo5+/frJ1h00aJCsvsjISOzfvx8ff/wxXrx4Ib0+z549g7+/P27evIn79+8DABwdHXH58mXcvHkzR68FEZkeJrdEZNJq1aqFLVu24Pnz5zh16hTGjBmDFy9e4KOPPsKVK1cUi3P37l2YmZlpDWcoV66cbPnp06eIiorCkiVLZIlkkSJFEBAQAED7YrdSpUrJlgsVKgQAeP78eY7aWrBgQQBAbGysrLxBgwbYt28f9u3bhw8++EDnup6enjrLV61ahSpVqkjjXosUKYI//vgD0dHR0nPu3r2LokWLaiXV6V+jsLAwCCEwbtw4rddowoQJAN68RpMmTUJUVBTKli0LHx8fjBgxAhcvXszGq0FEpoZjbononWBpaYlatWqhVq1aKFu2LAICArBx40YpWcpI+ovGUiUnJ+eoHSkpKQCAzz77TOdYUwCoUqWKbFmtVut8nhAiR20oX748ACA0NBRVq1aVyosUKQI/Pz8AwNq1a3Wua2Njo1W2du1a9OrVC+3bt8eIESPg4uICtVqNadOmITw8PNvtS32Nhg8fDn9/f53PKVOmDACgUaNGCA8Px/bt27F3714sXboUs2fPxqJFi9CnT59sxyaitx+TWyJ65/j6+gIAHj58KJVllMQWKlRI59X8d+/elS27u7sjJSUF4eHhsjOR169flz0vdSaF5ORkKZFUQkbt16Vly5ZQq9X45Zdf0K1bN4Njb9q0CV5eXtiyZYusHem/OLi7uyM4OBixsbGys7fpXyMvLy8AgIWFhV6vkZOTEwICAhAQEIDY2Fg0atQI3377LZNboncUhyUQkck6cOCAzrObqeNj0yahtra2OpPY0qVLIzo6WvZT98OHD7F161bZ81q2bAkAmDdvnqw8/Y0V1Go1OnXqhM2bNyM0NFQr3tOnTzPfqAzY2trKhgBkplSpUggMDMSuXbswf/58nc/Jzlnh1DPLadc5efIkjh8/Lnvehx9+iKSkJCxcuFAqS05O1rpbnIuLC5o0aYLFixfLvoCkSvsaPXv2TPaYnZ0dypQpw7urEb3DeOaWiEzWoEGDEB8fjw4dOqB8+fJISEjAsWPH8Ntvv8HDw0Ma4woANWvWxF9//YVZs2ahWLFi8PT0RJ06ddClSxeMGjUKHTp0wODBgxEfH4+FCxeibNmysoulqlWrhk8//RQ//fQToqOjUb9+fQQHB8vmo001ffp0HDhwAHXq1EHfvn1RsWJFREZGIiQkBH/99RciIyOzva01a9bEb7/9hqCgINSqVQt2dnZo06ZNhs+fM2cObt++jUGDBmH9+vVo06YNXFxc8O+//+Lo0aPYuXOn1ljYjLRu3RpbtmxBhw4d0KpVK9y+fRuLFi1CxYoVZeN627RpgwYNGmD06NG4c+cOKlasiC1btuhMyhcsWICGDRvCx8cHffv2hZeXFx4/fozjx4/jn3/+wYULFwAAFStWRJMmTVCzZk04OTnhzJkz2LRpEwYOHJjNV5CITEYeztRARJSrdu3aJQIDA0X58uWFnZ2dsLS0FGXKlBGDBg0Sjx8/lj332rVrolGjRsLGxkYAkE0LtnfvXlG5cmVhaWkpypUrJ9auXas1FZgQQrx8+VIMHjxYODs7C1tbW9GmTRtx7949ranAhBDi8ePHYsCAAaJkyZLCwsJCuLm5iWbNmoklS5ZIz0mdCmzjxo2ydVOn5Uo7dVZsbKzo2rWrcHR0FAD0mhYsKSlJrFixQjRt2lQ4OTkJc3NzUbhwYdGsWTOxaNEi8fLlS62Y33//vVY9KSkpYurUqcLd3V1YWVmJ6tWri99//13nNGrPnj0T3bt3F/b29sLBwUF0795dnDt3Tmt7hBAiPDxc9OjRQ7i5uQkLCwtRvHhx0bp1a7Fp0ybpOZMnTxa1a9cWjo6OwsbGRpQvX15MmTJF53RvRPRuUAmRwysSiIiIiIjyGY65JSIiIiKTweSWiIiIiEwGk1siIiIiMhlMbomIiIjIZDC5JSIiIiKTweSWiIiIiEwGb+KA1/cxf/DgAQoWLJitW1gSERERkXEIIfDixQsUK1YMZmaZnJ/Ny0l2Dx06JFq3bi2KFi0qAIitW7fKHk9JSRHjxo0Tbm5uwtraWjRr1kzcuHFD9pxnz56Jrl27ioIFCwoHBwcRGBgoXrx4ka12pE6yzj/+8Y9//OMf//jHv/z9d+/evUzzujw9cxsXF4eqVasiMDAQHTt21Hp8xowZmDdvHlatWgVPT0+MGzcO/v7+uHLlCqytrQEA3bp1w8OHD7Fv3z4kJiYiICAAn3/+OdatW6d3OwoWLAgAuHfvHuzt7ZXZOCIiIiJSTExMDEqWLCnlbRnJN3coU6lU2Lp1K9q3bw8AEEKgWLFiGDZsGIYPHw4AiI6OhqurK1auXIkuXbrg6tWrqFixIk6fPg1fX18AwO7du/Hhhx/in3/+QbFixfSKHRMTAwcHB0RHRzO5JSIiIsqH9M3X8u2Y29u3b+PRo0fw8/OTyhwcHFCnTh0cP34cXbp0wfHjx+Ho6CgltgDg5+cHMzMznDx5Eh06dNBZt0ajgUajkZZjYmIAAAdPnYatrW2m7XKws4OvT2VZ2ZlLoYiOjc1ymzxLlIBXyRLSclJSEg6dPpPlegDgW7kSHNJ8U3n87BlCb9zMcj21Wo0mtWvJyq6Gh+PBk6dZruvi7ASfsmVlZUfOhkCTkJDluuW9vFDc1UVajo2Px8kLF7NcDwAa1KgOaysraTniwQPcvBuR5Xq2BWxQt2pVWdm5q1cRGRWd5bqlirrB28NDVhZ8/IRe7a1WoTycHR2l5WdRUTh/9Zpe6zarV1e2fPPOHUQ8fJTlek6ODqheoYKs7MSFC4iLf5nlut7upVAqzRe/VxoNjoac06u9dapWgV2BAtLy/cdPcO3WrSzXs7K0RMOaNWRll27cwJNnkVmuW8ylCCqULi0rO3jqNJKTk7Nct3JZb7g6O0vL0S9e4Ezo5SzXA4DGtXxhbv6mi7x17x/c/uefLNdjH8E+Ij32Eewj0mIfkfM+4uCp01muB+Tj5PbRo9dvXldXV1m5q6ur9NijR4/g4uIie9zc3BxOTk7Sc3SZNm0aJk6cqFWu0WigNs/8JUnboUrrJSbiVZpkOSNJyUmyZQHotR4ApKTIT7CnJKfota65uVqrLDEpSa91ExOTtMo0CQl6rZucIu9UhBB6b2v63xKSDNlWPfdNYpJ2J6j/vknRWtZ3XV3t0G/fJGqV6btvkpLl7RVC/21N/0NPcop+7dUlMVHP4zBJ13GoQZKOfZZeSnL6fZON4zDdclKyfu1lH8E+Ij32Eewj0mIfkfM+QqPntubb5DY3jRkzBkFBQdJy6hgOKysrnQddWlYWFjrLsloPAMzV8pdbBd0HuS5mZvJZHMzUZnqtq1ZrH5QW5uZ6rWthoX14WFlaZrkeAKjN5HFVKpXe25p+wgpzPbdVV9ss9Nw3FjrevPrvGzOtZX3X1dUO/faNjuPQ0lKvztxcLW+vSqX/tqafTURtpl97de8bPY9DHV84rSytYK7OelvN1On3TTaOw3TL5mr92ss+gn1Eeuwj2EfI2sY+Isv1AN19hJW++ya/jrm9desWSpcujXPnzqFatWrS8xo3boxq1aph7ty5WL58OYYNG4bnz59LjyclJcHa2hobN27McFhCehxzS0RERJS/6Zuv5dubOHh6esLNzQ3BwcFSWUxMDE6ePIl69eoBAOrVq4eoqCicPXtWes7+/fuRkpKCOnXqGL3NRERERJS38nRYQmxsLMLCwqTl27dv4/z583ByckKpUqXw1VdfYfLkyfD29pamAitWrJh0drdChQpo0aIF+vbti0WLFiExMREDBw5Ely5d9J4pgYiIiIhMR54mt2fOnMH7778vLaeOg+3ZsydWrlyJkSNHIi4uDp9//jmioqLQsGFD7N69W5rjFgB++eUXDBw4EM2aNYOZmRk6deqEefPmGX1biIiIiCjv5Zsxt3mJY26JiIiI8re3fp5bIi3r0l+bqoCu7/x3OyIiIpOSby8oIyIiIiLKLia3RERERGQymNwSERERkclgcktEREREJoPJLRERERGZDCa3RERERGQymNwSERERkclgcktEREREJoPJLRERERGZDCa3RERERGQymNwSERERkclgcktEREREJoPJLRERERGZDCa3RERERGQymNwSERERkclgcktEREREJoPJLRERERGZDCa3RERERGQymNwSERERkclgcktEREREJoPJLRERERGZDCa3RERERGQymNwSERERkclgcktEREREJoPJLRERERGZDCa3RERERGQymNwSERERkclgcktEREREJoPJLRERERGZDCa3RERERGQymNwSERERkclgcktEREREJoPJLRERERGZDPO8bkBmkpOT8e2332Lt2rV49OgRihUrhl69emHs2LFQqVQAACEEJkyYgJ9//hlRUVFo0KABFi5cCG9v7zxuPRFRFtaplK+zq1C+TiKit0i+PnP73XffYeHChZg/fz6uXr2K7777DjNmzMCPP/4oPWfGjBmYN28eFi1ahJMnT8LW1hb+/v549epVHraciIiIiPJCvj5ze+zYMbRr1w6tWrUCAHh4eODXX3/FqVOnALw+aztnzhyMHTsW7dq1AwCsXr0arq6u2LZtG7p06ZJnbSciIiIi48vXZ27r16+P4OBg3LhxAwBw4cIFHDlyBC1btgQA3L59G48ePYKfn5+0joODA+rUqYPjx4/nSZuJiIiIKO/k6zO3o0ePRkxMDMqXLw+1Wo3k5GRMmTIF3bp1AwA8evQIAODq6ipbz9XVVXpMF41GA41GIy3HxMQAAA6eOg1bW9tM2+RgZwdfn8qysjOXQhEdG5vl9niWKAGvkiWk5aSkJBw6fSbL9QDAt3IlOBQsKC0/fvYMoTduZrmeWq1Gk9q1ZGVXw8Px4MnTLNd1cXaCT9mysrIjZ0OgSUjIct3yXl4o7uoiLcfGx+PkhYtZrgcADWpUh7WVlbQc8eABbt6NAPBFpuvZ4jnqYoOs7BxaIRIlMlgDwPETAIBSRd3g7eEheyj4v8eyUq1CeTg7OkrLz6KicP7qNb3WbVavrmz55p07iHiY8bGbysnRAdUrVJCVnbhwAXHxL7Nc19u9FEoVKyYtv9JocDTknF7trVO1CuwKFJCW7z9+gmu3bmW5npWlJRrWrCEru3TjBp48i8xy3WIuRVChdGlZ2cFTp5GcnJzlupXLesPV2Vlajn7xAmdCL2e5HgA0ruULc/M3XeSte//g9j//ZLle9voI+THtibPwwps+IQkWOIRAvdrri21wwGNp+d3sIzJnW8AGdatWlZWdu3oVkVHRWa7LPoJ9RHrG6SPk3vU84uCp01muB+Tz5HbDhg345ZdfsG7dOlSqVAnnz5/HV199hWLFiqFnz545rnfatGmYOHGiVrlGo4HaPPOXJG2HKq2XmIhXaZLljCQlJ8mWBaDXegCQkiK/SCQlOUWvdc3N1VpliUlJeq2bmJikVaZJSNBr3eQUeacihNB7W0W662GSpG0tqPP5qcyh/WZJhA1eZbbef21KTNLuBPXfNylay/qum15iUrKe+yZRq0zffZOULG+vEPpvq0i3c5JT9GuvLomJeh6HSbqOQw2SdOyz9FKS0++bbByH6ZaTkvVrb/b6CPmxmQTLdG1QZX78ppEC+Xv93ewjMqdzW/Xsv9lHsI9Izzh9hHaM9G14l/IIjZ7bmq+T2xEjRmD06NHS2FkfHx/cvXsX06ZNQ8+ePeHm5gYAePz4MYoWLSqt9/jxY1SrVi3DeseMGYOgoCBpOSYmBiVLloSVlZXOgy4tKwsLnWVZrQcA5mr5y62C7oNcFzMz+VXVZmozvdZVq7UPSgtzc73WtbDQPjysLC11PFNHXDN5XJVKpfe2qtJdQG4ubeuLTNezQpxWmQVewjqz9f5rk4WON6/++8ZMa1nfddOzMFfruW90HIeWlnp15uZqeXtVKv23VZVu56jN9GuvruPGwkLP41DHF04rSyuYq7PeVjN1+n2TjeMw3bK5Wr/2Zq+PkB+b6b+gqSAyP37TMIP89Xg3+4jM6T4O9eu/2Uewj0jPOH2Edoz0bXiX8ggrffeNSP81Kx9xdnbG5MmT0a9fP6ls2rRpWLFiBW7cuAEhBIoVK4bhw4dj2LBhAF4nqi4uLli5cqXeF5TFxMTAwcEB0dHRsLe3z5VtIQVw2iQyNTymiYj0pm++lq/P3LZp0wZTpkxBqVKlUKlSJZw7dw6zZs1CYODrMWgqlQpfffUVJk+eDG9vb3h6emLcuHEoVqwY2rdvn7eNJyIiIiKjy9fJ7Y8//ohx48ahf//+ePLkCYoVK4YvvvgC48ePl54zcuRIxMXF4fPPP0dUVBQaNmyI3bt3w9raOg9bTkRERER5IV8PSzAWDkt4S/AnXDI1PKaJiPSmb76Wr+e5JSIiIiLKDia3RERERGQymNwSERERkclgcktEREREJoPJLRERERGZDCa3RERERGQymNwSERERkcnI1zdxICLKM0rPQcv5Z4mIjIJnbomIiIjIZDC5JSIiIiKTweSWiIiIiEwGk1siIiIiMhlMbomIiIjIZDC5JSIiIiKTweSWiIiIiEwGk1siIiIiMhm8iQMREZEuvJEH0VuJZ26JiIiIyGQwuSUiIiIik8HkloiIiIhMBpNbIiIiIjIZTG6JiIiIyGQwuSUiIiIik8HkloiIiIhMBpNbIiIiIjIZTG6JiIiIyGQwuSUiIiIik8HkloiIiIhMBpNbIiIiIjIZTG6JiIiIyGSY53UDiIiIiMgI1qmUra+rULY+hfDMLRERERGZDJ65JSIiIspLSp9RBfLtWVVj4JlbIiIiIjIZPHNLRGTqeFaIiN4h+f7M7f379/HZZ5/B2dkZNjY28PHxwZkzZ6THhRAYP348ihYtChsbG/j5+eHmzZt52GIiIiIiyiv5Orl9/vw5GjRoAAsLC+zatQtXrlzBzJkzUahQIek5M2bMwLx587Bo0SKcPHkStra28Pf3x6tXr/Kw5URERESUF/L1sITvvvsOJUuWxIoVK6QyT09P6f9CCMyZMwdjx45Fu3btAACrV6+Gq6srtm3bhi5duhi9zURERESUd/J1crtjxw74+/ujc+fOOHToEIoXL47+/fujb9++AIDbt2/j0aNH8PPzk9ZxcHBAnTp1cPz48QyTW41GA41GIy3HxMQAAA6eOg1bW9tM2+RgZwdfn8qysjOXQhEdG5vl9niWKAGvkiWk5aSkJBw6fSaTNd7wrVwJDgULSsuPnz1D6I2sh1+o1Wo0qV1LVnY1PBwPnjzNcl0XZyf4lC0rKztyNgSahIQs1y3v5YXiri7Scmx8PE5euJjlegDQoEZ1WFtZScsRDx7g5t0IAF9kup4tnqMuNsjKzqEVIlEigzUAHD8BAChV1A3eHh6yh4L/eywr1SqUh7Ojo7T8LCoK569e02vdZvXqypZv3rmDiIePslzPydEB1StUkJWduHABcfEvs1zX270UShUrJi2/0mhwNOScXu2tU7UK7AoUkJbvP36Ca7duZbmelaUlGtasISu7dOMGnjyLzHLdYi5FUKF0aVnZwVOnkZycnOW6lct6w9XZWVqOfvECZ0IvZ7keADSGBcyRKC3fgi9uo2aW6zngCXyxVVZ2Bh0QrfN4kh/TnjgLL7zpE5JggUMI1Ku9vtgGBzyWluV9RMbvHTUS0QTLZWVX0RgPUD7zgMdP5MM+InO2BWxQt2pVWdm5q1cRGRWdwRpvXrdSuAhvHJc9GpxFn5SqGv6EM+5Jy+wjtL2VfUQtX5ibv0mjbt37B7f/+SfL9XTmEeiAaLhksMYb2eoj0vU5vpUrwSHN8mN4IRTNs4yZaR+Rxeek0n3EwVOns1wPyOfJ7a1bt7Bw4UIEBQXh66+/xunTpzF48GBYWlqiZ8+eePTo9Rvc1dVVtp6rq6v0mC7Tpk3DxIkTtco1Gg3U5pm/JGk7VGm9xES8SpMsZyQpOUm2LAC91gOAlBT5xRspySl6rWturtYqS0xK0mvdxMQkrTJNQoJe6yanyDsVIYTe2yrSXaeSJG1rQZ3PT2UO7TdLImzwKrP1/mtTYpJ2J6j/vknRWtZ33fQSk5L13DeJWmX67pukZHl7hdB/W0W6nZOcol97dUlM1PM4TNJ1HGqQpGOfpZeSnH7fZOM4hPwirCRYZn4s/ccaL7TKNLDJIK68viRYarVBn5gAkAL5e13eR2Rch+73jXXWcTWafNhHZE5nf5hp//3mNUiEdt+f433DPkIv+b+PkEtK1q+9OvOIrD6rUmNkp49I1xatPAIWesXMtI/IYnuV7iM0eu6bfJ3cpqSkwNfXF1OnTgUAVK9eHaGhoVi0aBF69uyZ43rHjBmDoKAgaTkmJgYlS5aElZWVzoMuLSsLC51lWa0HAOZq+cutgu6DXBczM/kHrZnaTK911WrtztzC3FyvdS0stA8PK0tLHc/UEddMHlelUum9rap0F3abS9uqnTTI2oY4rTILvNSZbLxZ6XWbLHR86Om/b8y0lvVdNz0Lc7We+0bHcWhpqVdnbq6Wt1el0n9bVel2jtpMv/bqOm4sLPQ8DnV84bSytIK5OuttNVOn3zfZOA7TfXSZIyHzYym1bdA+M2aFlxnEldeX/kNEBaFXTAAwg/z1kPcRGdehhnYSZIFXWce1ssqHfUTmdB+HmfXfb14DC2h/qOZ437CP0Nm29PJ/HyFnrtavvTrziKw+q1JjZKePSNcWrTwCiXrFzLSPyGJ7le4jrPTdNyL91yw9HT58GIsXL0Z4eDg2bdqE4sWLY82aNfD09ETDhg1zUqUWd3d3NG/eHEuXLpXKFi5ciMmTJ+P+/fu4desWSpcujXPnzqFatWrScxo3boxq1aph7ty5esWJiYmBg4MDoqOjYW9vr0jbKRdwOiMyJmPcptJYxzTfOznzjtyqlPKBt7UvMPIxrW++lqPZEjZv3gx/f3/Y2Njg3Llz0mni6Oho6SyrEho0aIDr16/Lym7cuAF3d3cAry8uc3NzQ3BwsPR4TEwMTp48iXr16inWDiIiIiJ6O+QouZ08eTIWLVqEn3/+WfbTR4MGDRASEqJY44YOHYoTJ05g6tSpCAsLw7p167BkyRIMGDAAwOtT1F999RUmT56MHTt24NKlS+jRoweKFSuG9u3bK9YOIiIiIno75GjM7fXr19GoUSOtcgcHB0RFRRnaJkmtWrWwdetWjBkzBpMmTYKnpyfmzJmDbt26Sc8ZOXIk4uLi8PnnnyMqKgoNGzbE7t27YW1trVg7iIiIiOjtkKPk1s3NDWFhYfBIN3XSkSNH4OXlpUS7JK1bt0br1q0zfFylUmHSpEmYNGmSonGJiIiI6O2To2EJffv2xZAhQ3Dy5EmoVCo8ePAAv/zyC4YPH45+/fop3UYiIiIiIr3k6Mzt6NGjkZKSgmbNmiE+Ph6NGjWClZUVhg8fjkGDBindRiIiIiIiveQouVWpVPjmm28wYsQIhIWFITY2FhUrVoSdnZ3S7SMiIiIi0ptBN3GwtLRExYoVlWoLEREREZFB9E5uO3bsqHelW7ZsyVFjiIiIiIgMofcFZQ4ODtKfvb09goODcebMGenxs2fPIjg4GA4ODrnSUCIiIiKirOh95nbFihXS/0eNGoWPP/4YixYtglr9+t6/ycnJ6N+/P29fS0RERER5JkdTgS1fvhzDhw+XElsAUKvVCAoKwvLlyxVrHBERERFRduQouU1KSsK1a9e0yq9du4aUlBSDG0VERERElBM5mi0hICAAvXv3Rnh4OGrXrg0AOHnyJKZPn46AgABFG0hEBlqnUr7OrkL5OomIiBSQo+T2hx9+gJubG2bOnImHDx8CAIoWLYoRI0Zg2LBhijaQiIiIiEhfOUpuzczMMHLkSIwcORIxMTEAwAvJiIiIyLTwl6+3kkE3cQCY1BIRERFR/pHj5HbTpk3YsGEDIiIikJCQIHssJCTE4IYREREREWVXjmZLmDdvHgICAuDq6opz586hdu3acHZ2xq1bt9CyZUul20hEREREpJccJbc//fQTlixZgh9//BGWlpYYOXIk9u3bh8GDByM6OlrpNhIRERER6SVHwxIiIiJQv359AICNjQ1evHgBAOjevTvq1q2L+fPnK9dCU2WsQepKx+FAeCIiIsrHcnTm1s3NDZGRkQCAUqVK4cSJEwCA27dvQwgmP0RERESUN3J05rZp06bYsWMHqlevjoCAAAwdOhSbNm3CmTNn0LFjR6XbSGRcnPqFiIjorZWj5HbJkiXSbXYHDBgAZ2dnHDt2DG3btsUXX3yhaAOJiIiIiPSV7eQ2KSkJU6dORWBgIEqUKAEA6NKlC7p06aJ444iIiIi08Bc2ykS2x9yam5tjxowZSEpKyo32EBERERHlWI6GJTRr1gyHDh2Ch4eHws2htxZnZSAiIqJ8IEfJbcuWLTF69GhcunQJNWvWhK2trezxtm3bKtI4IiIiIqLsyFFy279/fwDArFmztB5TqVRITk42rFVERERERDmQo+Q2daYEIiIiIqL8JFvJ7cuXLxEcHIzWrVsDAMaMGQONRvOmMnNzTJo0CdbW1sq2koiIiIhID9lKbletWoU//vhDSm7nz5+PSpUqwcbGBgBw7do1uLm5ISgoSPmWEhERERFlIVtTgf3yyy/4/PPPZWXr1q3DgQMHcODAAXz//ffYuHGjog0kIiIiItJXtpLbsLAw+Pj4SMvW1tYwM3tTRe3atXHlyhXlWkdERERElA3ZGpYQFRUlG2P79OlT2eMpKSmyx4mIiIiIjClbZ25LlCiB0NDQDB+/ePGidEteIiIiIiJjy1Zy++GHH2L8+PF49eqV1mMvX77ExIkT0apVK8UaR0RERESUHdkalvD1119jw4YNKFeuHAYOHIiyZcsCAK5fv4758+cjKSkJX3/9da40lIiIiIgoK9lKbl1dXXHs2DH069cPo0ePhhACwOu7kjVv3hw//fQTXF1dc6WhADB9+nSMGTMGQ4YMwZw5cwAAr169wrBhw7B+/XpoNBr4+/vnejuISId1KuXr7CqUr5OIiExatu9Q5unpid27dyMyMhJhYWEAgDJlysDJyUnxxqV1+vRpLF68GFWqVJGVDx06FH/88Qc2btwIBwcHDBw4EB07dsTRo0dztT1ERERElP/k6Pa7AODk5ITatWsr2ZYMxcbGolu3bvj5558xefJkqTw6OhrLli3DunXr0LRpUwDAihUrUKFCBZw4cQJ169Y1SvuIiIiIKH/IcXJrTAMGDECrVq3g5+cnS27Pnj2LxMRE+Pn5SWXly5dHqVKlcPz48QyTW41GI5uyLCYmBgBw8NRp2NraZtoWBzs7+PpUlpWduRSK6NjYLLfDs0QJeJV8M5tEEixwCIFZrgcAvtgGBzyWlh/DC6FoLn/S8RNa66kRiCZYLiu7isZ4gPJZxnTBLfhgn6zsyNkQaBISdDz7C9lSeRxCcVyTlmNRCCfxcZYxAaAB1iLtDZwjHjzAzbsRWjHSs8Vz1MUGWdk5tEIkMpnB47/XrFRRN3h7eMgeCs4iXqpq+BPOuCctP0NJnMeHOuOk16ye/Bi9eecOIh4+yjKmk6MDqleoICs7ceEC4uJf6ni2fDu8cRylcFFafgVbHMVnWcYEgDrYADs8l5bvP36Ca7du6YyTlhXi0BBrZWWX0BxP4JV5wOMnUMylCCqULi0rPnjqNJKTk7Nsb+Wy3nB1dpaWo1+8wJnQy1muBwCNYQFzJErLt+CL26iZ5XoOeAJfbJWVnUEHROs8BuSvmSfOwgtnpGWD+ohnzxB646bOOGmpkZizPuL4Cbg4O8Hnv2svUmXcR8iV9/JCcVcXaTk2Ph4nL1zMZI03GtSoDmsrK2n5TR+ROdsCNqhbtaqs7NzVq4iMis5gjTevWylchDeOyx7NcR8RFYXzV69lssYbxukj5LzdS6FUsWLS8iuNBkdDzunV3jpVq8CuQAFpWd5HZMzK0hINa9aQlV26cQNPnkVmsMab174YrqECDskePYhAJMMiy7iVsQ+ueNM+7T4i433cGMtz1kdcCtXOI9AB0XDJYI03stVHpOtzfCtXgkOaZZ15hA6Z9hEZfLalUrqPOHjqdJbrAW9Bcrt+/XqEhITg9GntDXr06BEsLS3h6OgoK3d1dcWjRxm/+adNm4aJEydqlWs0GqjNM39J0nao0nqJiXilx/y+SclJsmUBFV6hYJbrAUAK1OmWLbTX1dEGc9hplSXCWq+4ibIU878QCQkZbKu8vvSdioCZ3tsq0k3ikZSc8l/MzNc3h/abJRE2mcf9b1sSk7QTpZzvG7Ve+0aXxKRkvY6lxMRErTJ9900SLGXLhuyb5JS07dWvjlR6HYcaDRKTkrSLEzRI0rHP0ktJTpEvpwi9Xl/g9fszrSRY6vU6WeOFVpkGNjncNwb0EdL7RjtOWrrfN3rum0Rd+yaj41AuOUW+/4TIxr5JNxQ7SbatGTM3V2uVJWbaf795DRKh3ffneN+k6NdeXXKnj5BLSve+EQLZ2DfynSPvI7InMTFJz32j47MKdlrvJ11S0n1WafcRGe/jHPcRuvZNVp9VaWKkb0OG66V77VJS5PtGZx6hQ6Z9RBb7Vuk+Qt97KeTr5PbevXsYMmQI9u3bB2tr7YM3p8aMGYOgoCBpOSYmBiVLloSVlZXO5DUtKwvtb4JWFhZZrgcA5mr5y62C0PlBqIsZktMtJ2qvq6MNamifUbbAK73iWkB7yjcry4w6C3l9asjfvCqk6L2tKsg7VnO12X+vb+brWyFOq8wCLzOP+99rZqHjQy/n+yZZr32ji4W5Wq9jyULXcWhpmUHCJ29L+o7KkH2jNkvb3ozr0L1v9DgOraxgoeMLp5WlFczVWSe3Zmp5Mm5mptLr9QVevz/TMkeCXq+TFbTPjFnhZQZxs9o3BvQR0vtGO05a6d+rQDb2jYWufZN1QgG8PnbSUqmysW/SXbtoLtvWjOlqm0Wm/feb18AC2h+qOd43Zvq1V5fc6SPkzNO9b1Qq3Sd2dFGl2znyPiJjuveNuZ77RsdnFWJhrseZW7N0x792H5HxPs5xH6Fr32T1WZUmRvo2ZLheutfOzEy+b3TmETpk2kdksW+V7iOs9D0ORfqvWfnItm3b0KFDB6jVbzYwOTkZKpUKZmZm2LNnD/z8/PD8+XPZ2Vt3d3d89dVXGDp0qF5xYmJi4ODggOjoaNjb2yu9GboZ68pypeNkdPW6MeK8ra9ZRnGMha9bzvCYzn4cU2Os/pOyz9TeO29rHCMf0/rma/n6zG2zZs1w6dIlWVlAQADKly+PUaNGoWTJkrCwsEBwcDA6deoE4PWcuxEREahXr15eNJmIiIiI8lC+Tm4LFiyIypXlg65tbW3h7Owslffu3RtBQUFwcnKCvb09Bg0ahHr16nGmBCIiIqJ3UL5ObvUxe/ZsmJmZoVOnTrKbOBARERHRu+etS24PHjwoW7a2tsaCBQuwYMGCvGkQEREREeUbb11yS0RE+RQvXCOifMAs66cQEREREb0deOaWiIjoXfCWTwNFpC+euSUiIiIik8HkloiIiIhMBoclEBERkTJ4USHlAzxzS0REREQmg8ktEREREZkMJrdEREREZDKY3BIRERGRyWByS0REREQmg8ktEREREZkMJrdEREREZDKY3BIRERGRyWByS0REREQmg8ktEREREZkMJrdEREREZDKY3BIRERGRyWByS0REREQmg8ktEREREZkMJrdEREREZDKY3BIRERGRyWByS0REREQmwzyvG0BERPROW6dStr6uQtn6iN4yPHNLRERERCaDZ26J6O3Cs1xERJQJnrklIiIiIpPB5JaIiIiITAaTWyIiIiIyGUxuiYiIiMhkMLklIiIiIpPB5JaIiIiITAaTWyIiIiIyGUxuiYiIiMhk5Ovkdtq0aahVqxYKFiwIFxcXtG/fHtevX5c959WrVxgwYACcnZ1hZ2eHTp064fHjx3nUYiIiIiLKS/k6uT106BAGDBiAEydOYN++fUhMTMQHH3yAuLg46TlDhw7Fzp07sXHjRhw6dAgPHjxAx44d87DVRERERJRX8vXtd3fv3i1bXrlyJVxcXHD27Fk0atQI0dHRWLZsGdatW4emTZsCAFasWIEKFSrgxIkTqFu3bl40m4iIiIjySL4+c5tedHQ0AMDJyQkAcPbsWSQmJsLPz096Tvny5VGqVCkcP348T9pIRERERHknX5+5TSslJQVfffUVGjRogMqVKwMAHj16BEtLSzg6Osqe6+rqikePHmVYl0ajgUajkZZjYmIAAAdPnYatrW2m7XCws4OvT2VZ2ZlLoYiOjc1yGzxLlIBXyRLSchIscAiBWa4HAL7YBge8GUv8GF4IRXP5k46f0FpPjUA0wXJZ2VU0xgOUzzKmC27BB/tkZUfOhkCTkKDj2V/IlsrjEIrjmrQci0I4iY+zjAkADbAW1mmWIx48wM27EVox0rPFc9TFBlnZObRCJEpksAak16xUUTd4e3jIHgrOIl6qavgTzrgnLT9DSZzHhzrjpNesnvzXhZt37iDiYcbHbionRwdUr1BBVnbiwgXExb/U8Wz5dnjjOErhorT8CrY4is+yjAkAdbABdnguLd9//ATXbt3SGSctK8ShIdbKyi6hOZ7AK/OAx0+gmEsRVChdWlZ8EIFIhkWW7a2MfXDFLWk5Gq44g/ZaMXRpDAuYI1FavgVf3EbNLGM64Al8sVVWdgYdEK0zjvw188RZeOGMtGxQH/HsGUJv3NQZJy01EnPWRxw/ARdnJ/iULSsrPoLPoEHm/SiQjT5Cx+vWoEZ1WFtZSctv+ojM2RawQd2qVWVl565eRWRUdAZrvHndSuEivCE/aZLjPiIqCuevXkvzjIzraYbFsuWbqIcIVMk84PETuvsIfIw4FMqyvXr3ETr2TR0UkvcRKI9raJxlzEz7iCzeO8VwDRVwSPZojvuIFy9wJvSyzjjpNcbynPURl0K18wh0QDRcslw3W31EutfNt3IlOKRZ1plH6JBpH5FB/5lKZx+RYR4hV97LC8Vd37wmsfHxOHjqdJbrAW9RcjtgwACEhobiyJEjBtc1bdo0TJw4Uatco9FAbZ75S5K2Q5XWS0zEqzTJckaSkpNkywIqvELBLNcDgBSo0y1baK+row3msNMqS4S1XnETZSnmfyESEjLYVnl96TsVATO9t1Wk+0EhKTnlv5iZr28O7TdLImwyj/vftiQmJWs9lPN9o9Zr3+iSmJSs17GUmJioVabvvkmCpWzZkH2TnJK2vfrVkUqv41CjQWJSknYx7LS2Q5eUdMdhdvaNgEq2nARLvV4na7zQKtPAJof7xoA+QnrfaMdJS/f7Rs99k6hr39jq1Wa9+wgdr5sQ8uUk2bZmzNxcrVWWmGn//aY9idDu+3O8b1LSt1f/904irPTcNzr6CD33jd59hK59k76P0PVZpSfpOMzivaPzsyqnfUSK0Hvf5LiP0LlvsvisShMjfRsyXC/d65aSIn/j6MwjdMi0j8jifaezj8jws0ouOUX+uSyEkJ2YzMxbkdwOHDgQv//+O/7++2+UKPHmLJybmxsSEhIQFRUlO3v7+PFjuLm5ZVjfmDFjEBQUJC3HxMSgZMmSsLKy0pm8pmVlof1N0MrCIsv1AMBcLX+5VRA6Pwh1MUNyuuVE7XV1tEEN7TPKFnilV1wLvNIqs7LMqLOQ16eG/M2rQore26pCimzZXG323+ub+fpWiNMqs8DLzOP+95pZ6PjQy/m+SdZr3+hiYa7W61iy0HUcWloiSUeSnv51S99RGbJv1GZp25txHbr3jR7HoZUVLHR84bRCLMz1OCtjlu44zM6+UUH+QWCOBL1eJytonz23wssM9mtW+8aAPkJ632jHSSv9exXIxr6x0LVvtPe1PnEzPA51vG4qeU6Rpo/InK7+yyLT/vtNeyyg/aGa431jlr69+tWT2g799o2OPgJxeiV8evcRuvZN+j5C12eVDpn2EVm8d3R+VuW0jzBT6b1vctxH6Nw3WXxWpYmRvg0ZrpfudTMzk79xdOYROmTaR2TxvtPZR2SYR6SLayb/XFapVLDS87NUJUT678D5hxACgwYNwtatW3Hw4EF4e3vLHo+OjkaRIkXw66+/olOnTgCA69evo3z58jh+/LjeF5TFxMTAwcEB0dHRsLe3V3w7dFqnyvo52dVVx65UOo6uGMaK87a+ZhnFMRZTe914TDOOsZjSsWasOKZ2rDFO9mPkIn3ztXx95nbAgAFYt24dtm/fjoIFC0rjaB0cHGBjYwMHBwf07t0bQUFBcHJygr29PQYNGoR69epxpgQiIiKid1C+Tm4XLlwIAGjSpImsfMWKFejVqxcAYPbs2TAzM0OnTp2g0Wjg7++Pn376ycgtJSIiIqL8IF8nt/qMmLC2tsaCBQuwYMECI7SIiIiIiPKzt2qeWyIiIiKizDC5JSIiIiKTweSWiIiIiEwGk1siIiIiMhlMbomIiIjIZOTr2RKIiIi0mNrNIohIUTxzS0REREQmg8ktEREREZkMJrdEREREZDKY3BIRERGRyWByS0REREQmg8ktEREREZkMJrdEREREZDKY3BIRERGRyWByS0REREQmg8ktEREREZkMJrdEREREZDKY3BIRERGRyWByS0REREQmg8ktEREREZkMJrdEREREZDKY3BIRERGRyWByS0REREQmg8ktEREREZkMJrdEREREZDKY3BIRERGRyWByS0REREQmg8ktEREREZkMJrdEREREZDKY3BIRERGRyWByS0REREQmg8ktEREREZkM87xuANE7a51K+Tq7CuXrJCIieovwzC0RERERmQwmt0RERERkMkwmuV2wYAE8PDxgbW2NOnXq4NSpU3ndJCIiIiIyMpNIbn/77TcEBQVhwoQJCAkJQdWqVeHv748nT57kddOIiIiIyIhMIrmdNWsW+vbti4CAAFSsWBGLFi1CgQIFsHz58rxuGhEREREZ0Vs/W0JCQgLOnj2LMWPGSGVmZmbw8/PD8ePHda6j0Wig0Wik5ejoaADAnwcOooCtbabx7G1tUaNSRVlZyOUriImLy7Kt7sWKwbNE8dcL8UASzHEE3bNcDwCq43c44Km0/AQeuIL35U/6K1hrPXX8Z3gPa2Vl19EAD1E2y5hFcAeVcEBWdvzQ39AkJmo/OT5AtlgWR1AMN6XlWDjiDDpkGRMA6uI3WMfESMv3Hj5E+L1/tGKkZ4so1MJWWdkFfIDnKJ7xSv+9ZiVdXVDa3f11Wfzrfw4i83ipqmAvnHBfWo5EcVzEBzrjyMQHoAlWyIrCUQv3UDnLmIVwH1WxV1Z2Gh0Ql0GctErjFErisrT8CgVwAp9kGRMAfLEVdogC/ts/D548xY07d3TGScsKcaiHDbKyy3gfT+GRecC/glG0sDPKeXm9KYsHDuMzJMMiy/ZWxAG44I60HI0iOIfWWjF0aRhvDnMkScu3UR13US3LmPZ4ihr4XVYWgtaI0WPfuOM8PHFOWs5RH/HfvnkSGYkrYeE646SlRmLO+oi/glHEqRAqlSnzpiweOI6PoUHm/SiQjT5Cx+tWN74ArFPfqADuoRLCUTvLmJn2EVnsn5IIRWmclj2c7T7iv30TGRWFizfebHtm+ydHfcRfwSjkYI+q5crJik/Hd0AcHLNsr959hI7XzDfe8XUf8Z8H8MYNNMwyZqZ9RBb7pihuoByOyh7OUR8RE4PoFy9w7uo1nXHSa4g1Oesjjp/QziPiWyMGRbJcN1t9RLrXrXqF8nB487bRnUfokGkfkUH/mUqrjwBw/Nx53XlEOmU9PFDM5c1rEhsfj79Pvh5yKkQWMwOJt9z9+/cFAHHs2DFZ+YgRI0Tt2rV1rjNhwgQBgH/84x//+Mc//vGPf2/Z37179zLNDd/6M7c5MWbMGAQFBUnLKSkpiIyMhLOzM1SqXJh7NIdiYmJQsmRJ3Lt3D/b29ozzDsYxpW1hHMYxVgzGYRxjxjGlbTFmnJwQQuDFixcoVqxYps9765PbwoULQ61W4/Hjx7Lyx48fw83NTec6VlZWsLKykpU5OjrmVhMNZm9vb5QDjHHybxxT2hbGYRxjxWAcxjFmHFPaFmPGyS4HB4csn/PWX1BmaWmJmjVrIjj4zbiPlJQUBAcHo169ennYMiIiIiIytrf+zC0ABAUFoWfPnvD19UXt2rUxZ84cxMXFISBAv8H+RERERGQaTCK5/eSTT/D06VOMHz8ejx49QrVq1bB79264urrmddMMYmVlhQkTJmgNoWCcdyeOKW0L4zCOsWIwDuMYM44pbYsx4+QmlRBZzadARERERPR2eOvH3BIRERERpWJyS0REREQmg8ktEREREZkMJrdEREREZDKY3BJRromKisLSpUsxZswYREZGAgBCQkJw//79PG4ZUfb17NkTf//9d143g4iyYBJTgVH23Lx5EwcOHMCTJ0+QkpIie2z8+PF51CpKFRcXB1tb27xuhsEuXrwIPz8/ODg44M6dO+jbty+cnJywZcsWREREYPXq1XndRL3FxMRId+qJiYnJ9Ln58Y4+pIzo6Gj4+fnB3d0dAQEB6NmzJ4oXL54rsU6fPp1hPz1r1qxciUnZk5SUhIMHDyI8PBxdu3ZFwYIF8eDBA9jb28POzi6vm/dO41Rg75iff/4Z/fr1Q+HCheHm5gaVSiU9plKpEBISkitxz549i6tXrwIAKlasiBo1auRKnLCwMISHh6NRo0awsbGBEEK2jUpISUlBWFiYzg+dRo0aGVy/nZ0dPv74YwQGBqJhw4YG15dX/Pz8UKNGDcyYMQMFCxbEhQsX4OXlhWPHjqFr1664c+dOXjdRb2q1Gg8fPoSLiwvMzMx0HlOpx1pycnIetJDSS0hI0PkeLVWqlEH1Pn36FGvWrMGqVatw5coV+Pn5oXfv3mjXrh0sLCwMqjvV1KlTMXbsWJQrVw6urq5a/fT+/fsViWNsq1evxieffKI1f2pCQgLWr1+PHj16KBbrypUriIiIQEJCgqy8bdu2itR/9+5dtGjRAhEREdBoNLhx4wa8vLwwZMgQaDQaLFq0yKD6s/oSnZYSX6j/+ecf7NixQ+dr9jZ+mWJymw89fvwYw4cPR3BwMJ48eYL0u8iQD093d3f0798fo0aNMrSZenny5Am6dOmCgwcPwtHREcDrn6rff/99rF+/HkWKFFEkzrNnz/DJJ59g//79UKlUuHnzJry8vBAYGIhChQph5syZisQ5ceIEunbtirt372rtF6USm23btmHlypX4888/4eHhgcDAQPTo0QPFihUzuO70pk2bBldXVwQGBsrKly9fjqdPnxp0nDg4OCAkJASlS5eWJbd3795FuXLl8OrVK0Obr2XTpk3YsGGDzg7akC9uhw4dQoMGDWBubo5Dhw5l+tzGjRvnOI4uuf0hDQDPnz/HsmXLpC+gFSpUQGBgIJycnBSLAeTe/knr5s2bCAwMxLFjx2TlufHlIyQkBCtWrMDSpUthZ2eHzz77DP3794e3t7dB9bq6uuK7775Dr169lGmonnL7WEv7JTGtZ8+ewcXFRZF9c+vWLXTo0AGXLl2CSqWS+unULwhK7f/27dujYMGCWLZsGZydnaX+7eDBg+jbty9u3rxpUP0ZfYlOS6ljOjg4GG3btoWXlxeuXbuGypUr486dOxBCoEaNGm/nlylB+U6LFi1ExYoVxU8//SS2bt0qtm3bJvszRMGCBUV4eLhCLc3axx9/LHx9fcWVK1ekssuXLwtfX1/RpUsXxeJ0795d+Pv7i3v37gk7OztpG3fv3i0qVqyoWJyqVauKzp07iytXrojnz5+LqKgo2Z+Snjx5ImbOnCl8fHyEubm5aNWqldi8ebNITExULIa7u7s4evSoVvmJEyeEh4eHQXUXKVJEhISECCGEbJ/s3btXlChRwqC6dZk7d66ws7MTAwcOFJaWluKLL74Qfn5+wsHBQXz99deKx8tt4eHhokqVKkKlUgkzMzOhUqmk/5uZmSkW59ChQ8LBwUGULFlSdOjQQXTo0EGUKlVK2Nvbi0OHDikWx1j7p379+qJRo0bizz//FOfOnRPnz5+X/SnlwYMHYvr06aJcuXLC1tZW9OjRQzRr1kyYm5uLWbNmGVS3m5ubuHHjhkItzZqxjjWVSiWePHmiVX7+/HlRqFAhRWK0bt1atGvXTjx9+lTY2dmJK1euiMOHD4vatWuLv//+W5EYQgjh5OQkrl27JoSQ92+3b98WNjY2Btd/8OBBvf8MVatWLTF+/HghxJttefHihWjbtq346aefDK4/LzC5zYfs7OzEuXPncqXuwMBAsXDhwlypWxd7e3tx6tQprfKTJ08KBwcHxeK4urpKH1xpO5rw8HBha2urWJwCBQqImzdvKlafvubNmyesrKyESqUSRYoUEePGjRNxcXEG12tlZSVu3bqlVR4eHi6srKwMqrt3796iffv2IiEhQdjZ2Ylbt26Ju3fviurVq4shQ4YYVLcu5cqVE+vWrRNCyI+BcePGiQEDBiga6/nz52LPnj1izZo1YtWqVbI/pRjrQ7py5cqib9++IikpSSpLSkoSn3/+uahcubJicYy1fwoUKCCuXr2qWH1pJSQkiE2bNolWrVoJCwsLUbNmTbFw4UIRHR0tPWfLli3C0dHRoDjfffddrrxHMpLbx1q1atVE9erVhZmZmfDx8RHVq1eX/qpUqSIKFiwoOnfurMCWCOHs7CwuXLgghHj9+ZOagAYHB4tq1aopEkMIIRwdHcXly5eFEPLj+fDhw8LFxUWxOMZgZ2cnwsLChBCvtys0NFQI8fpLh7u7ex62LOd4QVk+VLJkSa2fvJVSpkwZjBs3DidOnICPj4/WGLHBgwcrGi8lJUXnODQLCwutsXCGiIuLQ4ECBbTKIyMjFb0/dp06dRAWFoYyZcooVmdGHj9+jFWrVmHlypW4e/cuPvroI/Tu3Rv//PMPvvvuO5w4cQJ79+41KEbJkiVx9OhReHp6ysqPHj1q8DCImTNn4qOPPoKLiwtevnyJxo0b49GjR6hXrx6mTJliUN26REREoH79+gAAGxsbvHjxAgDQvXt31K1bF/Pnz1ckzs6dO9GtWzfExsbC3t5eazykUuMGjx8/jv3796Nw4cIwMzODmZkZGjZsiGnTpmHw4ME4d+6cInHCwsKwadMmqNVqqUytViMoKEjRi/6MtX8qVqyIf//9V5G60itatChSUlLw6aef4tSpU6hWrZrWc95//31pCFZODR8+HK1atULp0qVRsWJFrT50y5YtBtWfXm4fa+3btwcAnD9/Hv7+/rKLrSwtLeHh4YFOnToZFCNVcnIyChYsCAAoXLgwHjx4gHLlysHd3R3Xr19XJAYAfPDBB5gzZw6WLFkC4PV7PzY2FhMmTMCHH36oWJxUhw8fxuLFi3Hr1i1s3LgRxYsXx5o1a+Dp6WnwtRm2trbSUJSiRYsiPDwclSpVAoBcey/lurzOrknbnj17xAcffCBu376teN0eHh4Z/nl6eioer23btqJRo0bi/v37Utk///wjGjduLNq3b69YnJYtW4qxY8cKIYR0ljA5OVl07txZdOrUSbE4W7ZsERUrVhQrVqwQZ86cERcuXJD9KWHz5s2idevWwsLCQlStWlX8+OOP4vnz57LnhIWFCQsLC4Njfffdd8LZ2VksX75c3LlzR9y5c0csW7ZMODs7i6lTpxpcvxCvz2QsWLBAfPfdd2Lfvn2K1KmLp6enNAyiZs2aYtGiRUKI1+8npX7yFEIIb29vMWTIEEXOnGfG0dFROqvu5eUl9u/fL4R4ve+V+NkzVf369cXWrVu1yrdu3Srq1KmjWBxj7Z/g4GBRr149ceDAAfHvv/+K6Oho2Z8hVq9eLV6+fKlQSzM2YMAAYWVlJVq0aCF69uwpevXqJftTmrGOtZUrV+b669ewYUPpeP70009FixYtxJEjR0SPHj1EpUqVFItz7949UbFiRVGhQgVhbm4u6tatK5ydnUW5cuXE48ePFYsjhBCbNm0SNjY2ok+fPsLKyko6S/zjjz+Kli1bGlx/u3btxJIlS4QQQgwbNkyUKVNGTJ48WdSoUUM0a9bM4PrzApPbfMjR0VFYWloKMzMzYWdnJwoVKiT7e5tERESIatWqCQsLC+Hl5SW8vLyEhYWFqF69urh3755icS5duiRcXFxEixYthKWlpfjoo49EhQoVhKurq/RzixJSx6Kl/Usdo6bU2DR7e3vx+eef6xzOkSo+Pl58++23BsdKSUkRI0eOFNbW1tL4ugIFCoiJEycaXLex9e7dW3pN5s+fL2xsbISfn59wdHQUgYGBisUpUKCAUcat5+aHdNovZOvXrxelSpUS33//vTh8+LA4fPiw+P7774WHh4dYv369AlvymrH2T/rxoql/Sr5Hc5udnZ34/fffjRbPWAmhMezevVts3rxZCCHEzZs3Rbly5YRKpRKFCxcWwcHBisZKTEwUa9asESNGjBD9+vUTP//8s4iPj1c0hhCvh3WkDnlKOwQiJCREuLq6Glx/eHi4dHImNjZWfPHFF8LHx0d07NhR3Llzx+D68wJnS8iHVq1alenjPXv2NFJLlCGEwF9//YVr164BeH0ltp+fn+JxoqOjMX/+fFy4cAGxsbGoUaMGBgwYgKJFiyoW4+7du5k+7u7ubnCMixcvokqVKjof27Ztm/QTn5JiY2Nx9epV2NjYwNvbO8dDOebNm4fPP/8c1tbWmDdvXqbPzY0hMCkpKTA3fz3aav369Th27Bi8vb3xxRdfwNLSUpE4HTt2RJcuXfDxxx8rUl9G9uzZg7i4OHTs2BFhYWFo3bo1bty4AWdnZ/z2229o2rRpjutOvRI7q+5fydkFjLV/cnM2i7i4OEyfPl2aySb90Kpbt27luO603N3dsWfPHpQvX16R+rKSm8daWsnJyZg9e3aGM2ak3uhFaZGRkShUqJCi00Iacz7yAgUK4MqVK/Dw8JDNPHPr1i1UrFgxV2aeedsxuX3HJCcnY+XKlRl2zkpO+ZGYmAgbGxucP38elStXVqxeU1e8eHEcOXJEaxzs5s2b0aNHD8TFxeVRy7Lm6emJM2fOwNnZWav9aalUKsUSAWNbtmwZJk2ahICAAJ3j1pWcois9pT6ks/qSlpYSX9hMxaeffopDhw6he/fuKFq0qNZ+GDJkiCJxVqxYgd27d2PFihU6ryUwhtxICMePH4+lS5di2LBhGDt2LL755hvcuXMH27Ztw/jx4xX/wpubjDkfuZeXF5YsWQI/Pz9Zcrt69WpMnz4dV65cUSRObs0NnReY3OZzr1690vp2a8iEzQMHDsTKlSvRqlUrnZ3z7Nmzc1y3Ll5eXti6dSuqVq2qaL3A6zOclStXhpmZGS5evJjpczM6E5pTuTkf5IQJE7B27VocPXoUbm5uAIDffvsNgYGBWLlyJTp37mxQ/R07dsTKlSthb2+Pjh07ZvpcpS9cUVpW+z0tpY4BM7OM71qu5JnO6OhoJCcna801GxkZCXNz87fyTmhRUVE4deqUzg9QJSfwB4D4+Hid71FDjgNHR0f88ccfaNCggaHNy1T16tURHh4OIQQ8PDy0vkDl1s12clvp0qUxb948tGrVCgULFsT58+elshMnTmDdunU5qjerfiwtpfo0Y89HvnbtWixfvhzNmzfHn3/+ibt372Lo0KEYN24cBg0aZFD9N27cQO/evY0yN7SxcLaEfCguLg6jRo3Chg0b8OzZM63HDTnQ1q9fjw0bNuTK1Zy6fPPNN/j666+xZs0axSeEr1atGh49egQXFxdUq1Ytw59ZlXxzGmOC8IkTJyIyMhJ+fn74+++/sXv3bvTp0wdr1qxR5IpiBwcHqb0ODg4G15eX0u73rM4wKfnzujF06dIFbdq0Qf/+/WXlGzZswI4dO/Dnn38qGi+3J/A31iwTT58+RUBAAHbt2qXzcUOOg0KFCinej+mSG0OPMmOs4RaPHj2Cj48PgNdnPqOjowEArVu3xrhx43Jcb170Y+3bt0f79u2lO9atXLkS48aNg7+/PwIDA9G2bVtpCI6hRo8ejZSUFDRr1gzx8fFo1KgRrKysMHz4cIMTWwAICAiAubk5fv/9d50nvd5KeTLSlzLVv39/UaFCBekKyeXLl4v//e9/okSJEmLt2rUG1V20aFFx/fp1hVqatWrVqgk7OzthZWUlypYtK5vfsHr16gbVfefOHZGSkiL9P7M/pRhr7lEhhOjatavw9vYWBQoUMPjmHbqkpKSIu3fv5soFEKn1b9iwQfTr10906tRJukFA6p8S0u7jrVu3itKlS4tFixZJF0stWrRIeHt765wNIL8rVKiQ7OYnqa5evSqcnJwUi2OsCfyNNctE165dRYMGDcTp06eFra2t2Lt3r1izZo0oV66cwRdprVmzRnz00Ue5vg3G1qVLF1G0aFExcuRIMXv2bDFnzhzZn1LKli0rTpw4IYQQokGDBmLatGlCCCHWr18vihQpolicvJJb85Gn0mg04vLly+LkyZPixYsXitWbm3ND5xWeuc2Hdu7cidWrV6NJkyYICAjAe++9hzJlysDd3R2//PILunXrluO6hw0bhrlz52L+/PlG+XaWm2cg0o4FNNa4wNyaD3LHjh1aZR07dsThw4fx6aefQqVSSc9R6kyaEAJlypTB5cuXDb5dqC5fffUVFi9ejPfffx+urq65cryl3e+dO3fGvHnzZL9KVKlSBSVLlsS4ceMUPRaDg4MzPMu1fPlyRWJoNBokJSVplScmJuLly5eKxABejxP19PREcHAwPD09cerUKTx79gzDhg3DDz/8oFic+/fvY/Dgwbk+hnT//v3Yvn07fH19YWZmBnd3dzRv3hz29vaYNm0aWrVqleO6Z86cifDwcLi6uub6cIGoqChs2rQJ4eHhGDFiBJycnBASEgJXV1cUL15csTgAsGvXLqMMt+jQoQOCg4NRp04dDBo0CJ999hmWLVuGiIgIDB06NFdj5xZjzEeeytLSEhUrVlSkrrRyc27ovMLkNh+KjIyEl5cXgNfja1OvIG3YsCH69etnUN1HjhzBgQMHsGvXLlSqVCnXJwefMGGCovVlZNWqVShcuLD0wTVy5EgsWbIEFStWxK+//qpY8ptbE4RnlngtX75cSpiUHGJhZmYGb29vPHv2LFeS2zVr1mDLli1GGwJz6dIlnRexeXp6KnbBBfB62MikSZPg6+ubqz/h1a5dG0uWLMGPP/4oK1+0aBFq1qypWBxj3SzC398fZ86ckfq23BIXFwcXFxcAr4cRPH36FGXLloWPj4/ByaexhgtcvHgRfn5+cHBwwJ07d9C3b184OTlhy5YtiIiIUPTmGoDxhltMnz5d+v8nn3yCUqVK4fjx4/D29kabNm1yXG+NGjUQHByMQoUKoXr16pm+J5X6ArJlyxasWLECe/bsQcWKFdG/f3989tlnsht41K9fHxUqVMhR/bl9bURMTIz0/++++w4jR47E1KlTdV4k+zaO72dymw95eXnh9u3bKFWqFMqXL48NGzagdu3a2Llzp8F3vnF0dESHDh2UaWg+MnXqVCxcuBDA6w/r+fPnY86cOfj9998xdOhQxZL2ypUr48KFC/D09ESdOnUwY8YMWFpaYsmSJQZ9aBtrHGd606dPx4gRI7Bw4ULFZ7RwcHDI9UQmrQoVKmDatGlYunSpNK1UQkICpk2bluMPGF0WLVqElStXonv37orVqcvkyZPh5+eHCxcuoFmzZgBenzE+ffq0YmeCAOPd0alVq1YYMWIErly5kquzTJQrVw7Xr1+Hh4cHqlatisWLF8PDwwOLFi0yeFpAY31ZDwoKQq9evTBjxgxp3wDAhx9+iK5duyoe73//+x/Gjx+PVatWGXV2hnr16qFevXoG19OuXTtp+kJjfQEJCAhAly5dcPToUdSqVUvnc4oVK4ZvvvkmR/Xn9rURjo6Osi8BQgipn0lb9rZeUMbZEvKh2bNnQ61WY/Dgwfjrr7/Qpk0bCCGQmJiIWbNmKTbdTG7JzvQxSs1rWKBAAVy7dg2lSpXCqFGj8PDhQ6xevRqXL19GkyZN8PTpU0XiGGs+SGMpVKgQ4uPjkZSUBEtLS9jY2MgeN2T/rFq1Crt378by5cu16s0Np06dkt4rqVfEX7x4ESqVCjt37kTt2rUViePs7IxTp06hdOnSitSXmfPnz+P777/H+fPnYWNjgypVqmDMmDGKnml/7733MGzYMLRv3x5du3bF8+fPMXbsWCxZsgRnz55FaGioInGMNcvE2rVrkZSUhF69euHs2bNo0aIFIiMjYWlpiZUrV+KTTz4xOEZuT5nk4OCAkJAQlC5dWjb10927d1GuXDnF5zU15uwMDx48wJEjR3S+fm/TVGB5MR+5krKaDzotQ+aGzitMbt8Cd+/exdmzZ1GmTBnFp7TKDWlvQvHs2TNMnjwZ/v7+0jf048ePY8+ePRg3bpxi46xcXFywZ88eVK9eHdWrV0dQUBC6d++O8PBwVK1aFbGxsYrE0UXp+SAHDx6MMmXKaHX08+fPR1hYGObMmaNIHCB3bxjy8uVLdOjQAUePHjXadEZxcXH45ZdfZDcM6dq1q6KTrY8aNQp2dnYGXd2dn5jaF7b04uPjpS++hQsXNqguY02ZlLY/S5vc7tu3D4GBgbh3754icVJNnDgx08eVOmO9cuVK6YYdzs7OWjNmKDn3dW5/AXmb5yN/FzC5zWdSUlKwcuVKbNmyBXfu3IFKpYKnpyc++ugjdO/eXZEEatOmTRneIUbphKNTp054//33MXDgQFn5/Pnz8ddff2Hbtm2KxOnWrRuuXbuG6tWr49dff0VERAScnZ2xY8cOfP3114qdfTKG4sWLY8eOHVrjKkNCQtC2bVv8888/edSy7Pn4449x4MABfPTRRzovKDPWT7xKGzJkCFavXo0qVaqgSpUqWkn7rFmzFIkTEhICCwsLaeqk7du3Y8WKFahYsSK+/fZbxe7opUtuTOBvCho0aABzc3OMHj1a53hrpebz7tOnD549e4YNGzbAyckJFy9ehFqtRvv27dGoUSNFv+AaU8mSJfHll19izJgxmZ7JN4SxvoDk9nzkaT1+/BjDhw+XLmJNn7YZuk27d++GnZ2ddDOKBQsW4Oeff0bFihWxYMECFCpUyKD68wKT23xECIE2bdrgzz//RNWqVVG+fHkIIXD16lVcunQJbdu2NTgZnDdvHr755hv06tULS5YsQUBAAMLDw3H69GkMGDAAU6ZMUWZj/mNnZ4fz58+jTJkysvKwsDBUq1ZNsTOqUVFRGDt2LO7du4d+/fqhRYsWAF53QJaWljke95SeMeaDtLa2RmhoqM7XrHLlyor/JBkeHo4VK1YgPDwcc+fOhYuLC3bt2oVSpUqhUqVKOa7X1tYWe/bsyfW796R18+ZNHDhwQOe+GT9+vCIx3n///QwfU6lUit3lr1atWhg9ejQ6deok3WazY8eOOH36NFq1avVWJjhxcXE4dOiQzi/WhvwkHRQUhP/973+wtbVFUFBQps815MuHra0tzp49m+u3xY2OjsZHH32EM2fO4MWLFyhWrBgePXqEevXq4c8//8yV274aY3YGYwzpMdYXEAAYNGgQDhw4kCvzkafVsmVLREREYODAgTq3qV27dgbV7+Pjg++++w4ffvghLl26BF9fXwwbNgwHDhxA+fLlsWLFCoPqzwu8oCwfWblyJf7++28EBwdrfYDu378f7du3x+rVqw2a7Pynn37CkiVL8Omnn2LlypUYOXIkvLy8MH78+Fy5r7ezszO2b9+OYcOGycq3b98OZ2dnxeI4Ojpi/vz5WuVZ/dyWXX369Mn09ptKKFOmDHbv3q11tnvXrl2KX6B16NAhtGzZEg0aNMDff/+NKVOmwMXFBRcuXMCyZcuwadOmHNddsmRJo15l+/PPP6Nfv34oXLgw3NzctH7yVCq5PXDggCL1ZOXGjRuoVq0aAGDjxo1o3Lgx1q1bh6NHj6JLly4GJbfZuRLbzs4OlSpVwpdffmnQhS3nzp3Dhx9+iPj4eMTFxcHJyQn//vsvChQoABcXF4OS23PnziExMVH6f0ZevHiR4xiA8aZMcnBwwL59+3DkyBFcvHgRsbGxqFGjBvz8/HIlnrFmZ+jduzc2btyI0aNHK1KfLufPnzfKFxAA+PHHH9GtWzfUrVsX9+/fx6+//mpwoqnLkSNHcPjwYak/UNrt27elKcY2b96MNm3aYOrUqQgJCTHabDdKY3Kbj/z666/4+uuvdZ4Zatq0KUaPHo1ffvnFoOQ2IiIC9evXBwDY2NhInX337t1Rt25dnQmiISZOnIg+ffrg4MGDqFOnDgDg5MmT2L17N37++WdFY0VFRWHZsmW4evUqAKBSpUoIDAxU9EpTY8wHGRQUhIEDB+Lp06fSeMfg4GDMnDlT8bN1o0ePxuTJkxEUFCS7Krtp06YGHwszZ87EyJEjsWjRInh4eBjY0qxNnjwZU6ZMwahRo3I9ljEIIaSzz3/99Rdat24N4PWXBkMTrOxcia3RaLBo0SIcPXpU53zM+ho6dCjatGmDRYsWwcHBASdOnICFhQU+++wzgy+SPXDgAGbPno2hQ4dm+OXjxYsX0i86OWXsKZMaNmwIX19fWFlZ5eoQEWPNzjBt2jS0bt0au3fv1vn6KTGkJze/gOTFfOTA6/d8bv7Ibmlpifj4eACv+5rUHMPJyUk2Zdhbxai3jKBMubq6inPnzmX4eEhIiHB1dTUohqenpwgJCRFCCFGzZk2xaNEiIYQQe/bsEYUKFTKo7oycOHFCdO3aVborWdeuXaW71Cjl9OnTwsnJSRQvXly6A1aJEiWEs7OzOHv2rGJxPDw8dN41Smk//fSTKF68uHS3KE9PT7Fq1SrF49ja2opbt24JIYSws7MT4eHhQgghbt++LaysrAyq29HRUVhaWgozMzNhZ2cnChUqJPtTWsGCBaX257bTp0+LESNGiE8++SRX7rwmhBDvv/++6NGjh1i9erWwsLAQN2/eFEIIcfDgQeHu7q5YHH1cvnxZFChQwKA6HBwcxLVr16T/p76PTpw4IcqVK2dwG62trTN8j8TGxooGDRoYHCf93dtS/1LLlJKcnCwmTZokihUrJtRqtXRcjx07VixdulSxOKns7e1FWFiYEELeD9y5c8fgfiCt//3vf0KlUony5cuLxo0biyZNmkh/77//viIxgoODRb169cSBAwfEv//+K6Kjo2V/hkjd/1n9KXksCPH68/mDDz4Qt2/fVrTeVG3atBH+/v5i0qRJwsLCQvzzzz9SXG9v71yJmdt45jYfiYyMhKura4aPu7q64vnz5wbFaNq0KXbs2IHq1asjICAAQ4cOxaZNm3DmzJksf57MqTp16uCXX37JlbpTDR06FG3btsXPP/8s3c87KSkJffr0wVdffYW///5bkTjGmg+yX79+6NevH54+fQobGxvY2dnlShxHR0c8fPhQ64rfc+fOGTzOzthjQjt37oy9e/fiyy+/zNU469evR48ePeDv74+9e/figw8+wI0bN/D48WNF55CeM2cOunXrhm3btuGbb76RxmBv2rRJ+vXFWMqVK6d1gU52WVhYSBcRubi4ICIiAhUqVICDg4MiV/+vWbMG3bt3h6Ojo+ysWWxsLFq0aIEnT57g4MGDBsUw1pCUyZMnY9WqVZgxYwb69u0rlVeuXBlz5sxB7969FY1nZWWl8wzdjRs3UKRIEcXizJw5E8uXL0evXr0UqzO91KEbuTFna17NR/7JJ58gPj4epUuXRoECBbTOeBs6pHD+/Pno378/Nm3ahIULF0p9/65duwz+tSOv8IKyfEStVuPRo0cZdiaPHz9GsWLFDH5zpqSkSAng+vXrcezYMXh7e0tTtCgt9YKlW7duYc6cOYpdsJSWjY0Nzp07pzXO6sqVK/D19ZV+csmJ9He8CQsLM8p8kMYwfPhwnDx5Ehs3bkTZsmUREhKCx48fo0ePHujRo8dbNaPBtGnTMGvWLLRq1UrnT55KzaFZpUoVfPHFFxgwYIA0TZOnpye++OILFC1aVPFx3um9evUKarVaa/sMcebMmQxnUFHqBigffPABevXqha5du6Jv3764ePEiBg8ejDVr1uD58+c4efKkwTGWLl2KIUOG4I8//kCTJk0QFxeHFi1a4NGjRzh06BCKFSumwJbkvjJlymDx4sVo1qyZbCqwa9euoV69egaf5EjPWLMzuLm54fDhw7lyR8RUmc3feunSJa1rGbLr+PHjePbsmTRMCABWr16NCRMmIC4uDu3bt8ePP/4o3VRCCbk5ZaOpYnKbj5iZmaFly5YZvik0Gg127979Vt0tJP0FS1evXoWXlxemT5+OM2fOGHTBUlqurq5Ys2YNPvjgA1n5nj170KNHDzx+/DjHdWcnWclpMpgXt48EXs8FOWDAAKxcuRLJyckwNzdHcnIyunbtipUrV0KtVhsc48mTJzpnL1B6zmZdt95NpeQcmra2trh8+TI8PDzg7OyMgwcPwsfHB1evXkXTpk3x8OFDReIAxrmCPasz0UpdKZ165f/777+PJ0+eoEePHtIX6+XLlyt2FfuMGTMwZcoUbN++HePHj8f9+/dx6NAhlChRQpH6Dx8+jMWLF+PWrVvYuHEjihcvjjVr1sDT01OxmUFsbGxw7do1uLu7y5LbK1euoHbt2orP222s2RmmTZuGhw8fYt68eYrUp48XL17g119/xdKlS3H27FmDPz9btGiB999/Xxrbf+nSJdSoUQO9evVChQoV8P333+OLL77At99+q0Drc09MTIw0RjyrcbW8/S4ZRJ9vX4ZcTJbKGBdepcrNC5bS+uSTT9C7d2/88MMP0k+2R48exfDhw9GlSxeD6jbG2ct27drhwYMHKFSokFHvbGNpaYmff/4Z48aNQ2hoKGJjY1G9enVFzqycPXsWPXv2xNWrV7UuhsiNWzrevn1b0foyUqhQIelCzOLFiyM0NBQ+Pj6Iiooy6BeC9C5evIhmzZrB0dExV69gnzp1KmbPni2diZ47d67sTLRSfH19pf+7uLhg9+7ditWd1siRIxEZGYlmzZrBw8MDBw8eVCyx3bx5M7p3745u3bohJCQEGo0GwOvkcOrUqfjzzz8ViVOxYkUcPnwY7u7usvJNmzahevXqisRIy1izM5w6dQr79+/H77//jkqVKmn9+qDUrwQA8Pfff2PZsmXYvHkzihUrho4dO2LBggUG13vhwgVMnjxZWl6/fj3q1KkjXSBdsmRJTJgwIdeS21evXmn9upKT5LNQoUJ4+PAhXFxctG7Fm0qJoRx5hcltPmKMueTOnDkDf39/2NjYSLcjnTVrFqZMmYK9e/eiRo0aisa7dOkS1q1bp1Xu4uKi6BWtP/zwA1QqFXr06IGkpCQIIWBpaYn+/fsrOnevl5cXTp8+rTWNWVRUFGrUqJHjs4MTJkyAmZkZatWqhd69e+PTTz+VfRnIbaVKlVLszj2pAgMDUbZsWSxbtkznTRxyU2oynRsxGzVqhH379sHHxwedO3fGkCFDsH//fuzbt09rnJ8hgoKCEBAQkOtXsIeHh6NVq1YAXn/ZiYuLg0qlwtChQ9G0aVPFhllMmDABgYGBWgmbUtJfM2BhYYHChQtrzcRgSAI1efJkLFq0CD169MD69eul8gYNGsgSHkONHz8ePXv2xP3795GSkoItW7bg+vXrWL16NX7//XfF4qTXsGHDXJ2X2tHRMdeu7QCAR48eYeXKlVi2bBliYmLw8ccfQ6PRYNu2bdJUV4Z6/vy57NqY1F8nU9WqVUvxO8jFxcVh1KhR2LBhA549e6b1eE6Sz/3798PJyQlA5mPJL126lO268wMmt+8YY114lSo3L1hKy9LSEnPnzsW0adMQHh4OAChdujQWLlwIT09PPHr0SJE4d+7c0dmRaDQag+8cdujQIaxYsQLDhw9HUFAQPvroI/Tu3RvvvfeeQfWml9Uk92kZMjXPrVu3sHnzZq2bUeSm1atX4/vvv8fNmzcBAGXLlsWIESPQvXt3xWLMnz9fupHGN998AwsLCxw7dgydOnXC2LFjFYtz+vRpLF68WKu8ePHiih3PgPHORG/fvh1TpkxB48aN0bt3b3Tq1EnRcYnpf3n69NNPFas71fXr19GoUSOdsaOiohSL065dO+zcuROTJk2Cra0txo8fjxo1amDnzp1o3ry5IjGyMzRAqfHquXkCp02bNvj777+lG5y0aNECarUaixYtUjSOq6srbt++jZIlSyIhIQEhISGyL4AvXrxQdDw88PrXiAMHDmDhwoXo3r07FixYgPv372Px4sWYPn16jups3Lixzv8D2kM5DB2nnCfyapoGyhvW1tbi6tWrWuWXL18WNjY2iscbNmyYaNiwoXj48KEoWLCguHnzpjhy5Ijw8vIS3377rcH1v3r1SowePVrUrFlT1K9fX2zdulUIIcTy5ctFsWLFRMmSJcX06dMNjrN9+3axfft2oVKpxOrVq6Xl7du3iy1btogBAwaIsmXLGhxHiNfTFi1fvlw0atRIqFQq4e3tLaZPny4ePnyoSP1pp99p0qSJsLe3FwUKFJCmarO1tRX29vYGT83Trl07sWnTJkXarI+ZM2eKAgUKiJEjR0r7ZsSIEaJAgQJi1qxZRmuHUooUKSJN25d2eqa9e/eKEiVKKBbn008/FTNnzhRCCDFp0iRRpEgR0adPH+Hu7i7at2+vWBwhXk9nOGjQIFG4cGHh6OgovvzyS3Hq1ClFY+QmT09PsW/fPiGEfJ+sWrVKVKhQQbE49+7dy/Cx48ePKxLDw8NDrz9PT09F4gkhRHx8vIiLi5OW79y5I2bPni327NljcN1qtVoMHTpU3LhxQ1Zubm4uLl++bHD9qb788ktRr1498ffff4ugoCDh7OwsNBqN9PjatWuFr6+vYvGEEKJkyZLiwIEDQgghfY4KIcTq1atFy5YtFYtz6NAh0aNHD2Frayu8vb3FqFGj3qr3Z1pMbt8xLi4uOjuS3bt3CxcXF8XjaTQa0bdvX2FhYSFUKpWwsLAQZmZm4rPPPhNJSUkG1z9y5Ejh4OAgOnXqJIoWLSrMzc1F3759hY+Pj/j1118ViSGEfH7L9HMaWlpairJly4qdO3cqEiutmzdviq+//lqULFlSWFhYiDZt2iha/8yZM0WbNm1EZGSkVBYZGSnatWsnfvjhB4Pqfvr0qfjwww/Ft99+KzZt2iT7QrB9+3ZDm67Fw8ND5zynK1euFB4eHorFadasmVixYoXBc2ZmpXfv3qJ9+/YiISFB2NnZiVu3bom7d++K6tWriyFDhigW59mzZ+L+/ftCiNfzq06bNk20adNGBAUFiQcPHigWJ62EhASxefNm0bp1a2FhYSF8fHzEnDlzRFRUVK7EU8rUqVNFxYoVxYkTJ0TBggXF4cOHxdq1a0WRIkXEvHnzFItToUIF8ezZM63yI0eOCAcHB8XiGFvz5s3FwoULhRBCPH/+XLi4uIgSJUoIa2tr8dNPPxlU9/Hjx0WfPn1EwYIFRe3atcWPP/4onj59qnhy+/TpU/Hee+8JlUolChYsKLZs2SJ7vGnTpuLrr79WLJ4Qr+cjv3v3rhBCiOLFi4uTJ08KIYS4deuWsLW1Najuhw8fimnTpokyZcoIFxcXMXDgQMVfs7zA5PYdM2jQIFGiRAmxfv16ERERISIiIsSvv/4qSpQooegHZnJyspg+fbqoX7++8PX1FYGBgeKPP/4Qv/32m9Y3a0N4enpKidKlS5eESqUSAQEBIiUlRbEYaXl4eIinT5/mSt0ZiY2NFYsXLxZOTk6KTw5erFgxERoaqlV+6dIlUbRoUYPq3rFjh3BwcDDKJOdCCGFlZSWd0Ujrxo0bik5EP3jwYOHm5iZsbGzERx99JLZt2yYSEhIUqz9VVFSU8PPzE46OjkKtVktfcBo1aiRiY2MVj5fWy5cvxQ8//GDwTWMyotFoxPr168UHH3wgzM3NRaNGjUSZMmVEwYIFxfr163MlphJSUlLE5MmTha2trXQsW1tbi7FjxyoaJyAgQNSsWVPExMRIZYcOHRL29va5+iuERqMR165dE4mJiblSv7Ozs9Tf/Pzzz6JKlSoiOTlZbNiwQZQvX16RGLGxsWLZsmWiQYMG0smUOXPmyF5LJURFRek8efLs2TPZmVwl+Pj4iIMHDwohXn+5HjZsmBBCiLlz54rixYvnuN7WrVsLe3t78emnn4rff/9d2h4mt/TW0Wg0YvDgwdKdo1QqlbCyshJfffWVePXqlWJxJk2aJMzMzMQHH3wg2rVrJ6ytrUVAQIBi9adKezcVIV4Pu7h48aLicVq2bCk7qzRt2jTx/Plzafnff/9V9GdJIV5/mPXs2VPY2dkJe3t70adPH8V+kkxlZ2cn/dyV1v79+4WdnZ1Bdbu7u4sBAwaIR48eGVSPvipVqiSmTJmiVf6///1PVK5cWdFYycnJYs+ePaJnz57C3t5eFCpUSPTt21f6AFLSkSNHxIIFC8R3330n/SSuhLRDeurVq5drQ3rSOnPmjBgwYIBwcnISRYsWFaNGjZJ9IZk3b16u/IKkNI1GIy5fvixOnjwpXrx4oXj9ycnJokOHDqJx48bi1atX0vtxzpw5iscSQoi4uDgRGBgo1Gq17I5oAwcOFNOmTVMsjo2NjXQGsnPnztLQtIiIiFwZFnft2jUxYsQI4ebmJqytrRX/5ctYZs2aJebOnSuEEGLfvn3C2tpaWFlZSYl7ThlrKEdeYHL7joqLixMXL14UFy9elI2BUkqZMmWkW/sK8foNaWlpKZKTkxWNY2ZmJp48eSItp/58qzSVSiUeP34sLae/1eujR48UORt5//59MWXKFOHt7S1UKpVo0KCBWL58ea6dqevevbvw8PAQmzdvFvfu3RP37t0TmzZtEp6enqJHjx4G1W1nZyfd0tMYNm3aJNRqtXQbyUmTJgl/f39hbm6u9dOhkl6+fCk2bNggqlatmitnpHOLsYb0pKpcubIwNzcXH374odi6davO+p8+fSpUKpWicZWQ/hbLuv46d+4sBg0aJHbs2KFITI1GI/z8/ET9+vWFnZ2d+PHHHxWpV5fBgweLmjVrisOHDwtbW1upb9u2bZuoVq2aYnF8fHzE3LlzRUREhLC3txfHjh0TQrz+0pNbvxIIIURSUpLYunXrW5vcpnfnzh2xefNmceHCBYPqMdZQjrzAmzi8I/SZfsXc3Bxubm5o3rw52rRpY1A8KysrhIWFoWTJklKZtbU1wsLCFJtzEtC+8cXOnTvRtGlTrUnHDZ0/0czMDI8ePYKLiwsAyCZWB5S5e1zLli3x119/oXDhwujRowcCAwNRrlw5g9qdlfj4eAwfPhzLly9HYmIigNfHQe/evfH9998bNHl7z5498d5776FPnz5KNTdLZ8+exezZs6U5nCtUqIBhw4blytygwOuph9avX4+1a9ciJCQEtWvXxokTJxSpe/DgwShTpozWlerz589HWFiYwXeN8vLywpw5c9C2bVuEhoaiSpUq6NWrF5YtW5YrU6j973//Q2BgoKKzpBhLQEBAls9JSUnBkydPcOjQIQwfPhyTJk3KVoyLFy9qlb148QKffvopWrVqhX79+knlSt8Axd3dHb/99hvq1q0r69vCwsJQo0aNLCf519emTZvQtWtXJCcno2nTpti3bx+A1zd3+Pvvv7Fr1y5F4piSlJQUrFy5Elu2bMGdO3egUqng6emJjz76CN27d1fkvRoXF4fffvsNy5cvx6lTp5CcnIxZs2YhMDDQqFNSKonJ7TvCGJ1zWrpuJVywYEFcvHgx0ztJZZc+2wUYPgWNMZLbtm3bonfv3mjdurUidwbLjri4ONkUakrckWjKlCmYM2dOrt8O19hiYmKwefNmrFu3DgcPHoSXlxe6deuGbt26oXTp0orFKV68OHbs2IGaNWvKykNCQtC2bVuDp56ztLTE7du3pWTTxsYGp06dgo+Pj0H1vut+//139O/fHxEREdlaz8zMDCqVSnbDk7TLqf/PjUn1CxQogNDQUHh5ecn6tgsXLqBRo0aIjo5WLNajR4/w8OFDVKtWTUrMTp06BQcHh1z/Mv+2EUKgTZs2+PPPP1G1alWUL18eQghcvXoVly5dQtu2bbFt2zZFY16/fh3Lli3DmjVrEBUVhebNm2PHjh2KxjAGJrekJaedc1q6biWs66yqknekyU3pk/X0iboSyW1eCgsLQ3h4OBo1agQbGxvpQ9QQxrodblopKSkICwvTebtfXfOT5oSNjQ0KFSqETz75BN26dZPdeUtJ1tbWCA0N1ZonOCwsDJUrV5bm2s2prI5pJQQFBeF///sfbG1ts5xf2ZA5lfOTqKgoBAYGZrtvu3v3rt7PVfpGGI0aNULnzp0xaNAg2XEwaNAg3Lx50+C7yel744a35fPAWFasWIEhQ4Zg+/bteP/992WP7d+/H+3bt8f8+fMVuXNpesnJydi5cyeWL1/+Via3vIkDaWnYsKHBH9i6biX82WefGVRnXhJCoFevXlKy/urVK3z55ZdSop56G863zbNnz/Dxxx/jwIEDUKlUuHnzJry8vNC7d28UKlQIM2fOzHHdxrodbqoTJ06ga9euuHv3bq7e7nfHjh1o1qwZzMzMFKkvI2XKlMHu3bu1JlDftWuX9IuBIbI6plMZknCcO3dOGu5y7ty5DJ9nzLvX5TZHR8ccvWa5dec2fUydOhUtW7bElStXkJSUhLlz5+LKlSs4duwYDh06ZHD9uXFr93fBr7/+iq+//lorsQVe38J+9OjR+OWXX3IluVWr1Wjfvr1RbwevJJ65JdKDsYY/GFuPHj3w5MkTLF26FBUqVJB+jtyzZw+CgoJw+fLlvG6i3qpVq4ayZcti4sSJKFq0qFbCpPQH7NOnT3H9+nUAQLly5WRDcJSwfPlyDBw4ECNGjEDTpk0BAMHBwZg5cybmzJmDvn37GlS/qR7TpuTKlSuIiIhAQkKCrLxt27aKxwoPD8f06dNx4cIFxMbGokaNGhg1ahSHqeQhNzc37N69G9WqVdP5+Llz59CyZUtF71hoKpjcEr3D3NzcsGfPHlStWlU21u7WrVuoUqUKYmNjs1VfXv4MbWtriwsXLuT67X7j4+MxcOBArF69Whr6oFar0aNHD/z4448oUKCAYrEWLlyIKVOm4MGDBwAADw8PfPvtt7lypobyj1u3bqFDhw64dOmS1rhbAIr9CqHvhWL29vaKxKPssbS0xN27d1G0aFGdjz948ACenp5v7S+HuYnDEojeYXFxcTqTscjISNl4aX3p+zN0bqhTpw7CwsJyPbkdOnQoDh06hJ07d6JBgwYAgCNHjmDw4MEYNmwYFi5cqFisfv36oV+/fnj69ClsbGxgZ2enWN154cyZM9iwYYPOs5Ecb/nGkCFD4OnpieDgYHh6euLUqVN49uwZhg0bhh9++EGxOI6OjpkOCcmtC9hIP8nJyTA3zzhNU6vVSEpKMmKL3h48c0v0Dvvwww9Rs2ZN/O9//5MuJHF3d0eXLl2QkpKCTZs25XUTM5V2+qTw8HCMHTsWI0aM0Dk7g1LTJxUuXBibNm1CkyZNZOUHDhzAxx9/jKdPnyoSx9SsX78ePXr0gL+/P/bu3YsPPvgAN27cwOPHj9GhQwcOf0ijcOHC2L9/P6pUqQIHBwecOnUK5cqVw/79+zFs2DDFvjimHU8rhMCHH36IpUuXak3X1rhxY0XiUfboujA7LY1Gg927d/PLhw48c0v0DpsxYwaaNWuGM2fOICEhASNHjsTly5cRGRmJo0eP5qhOY86pnDqdUNrv6IGBgVrPU/LsU3x8PFxdXbXKXVxcEB8fr0gM4PUMHMOHD0dwcDCePHmidZHc2/aBNnXqVMyePRsDBgxAwYIFMXfuXHh6euKLL77I8GfXd1VycrI0v2jhwoXx4MEDlCtXDu7u7tI4byWkT1rVajXq1q2ryAWLZDhdF2anxyFKujG5JXqHVa5cGTdu3MD8+fNRsGBBxMbGomPHjhgwYECOEw59LtxKSUnBzZs3sXTpUoPmVNZ3Roa4uLgc1a9LvXr1MGHCBKxevRrW1tYAgJcvX2LixImoV6+eYnF69eqFiIgIjBs3TucFcm+b8PBwtGrVCsDrsYRxcXFQqVQYOnQomjZtiokTJ+ZxC/OPypUr48KFC/D09ESdOnUwY8YMWFpaYsmSJUw83yH8NSPnmNwSvaMSExPRokULLFq0CN98841i9WanQ06dUzmnyW1W0ydpNBosWLAAM2bMUOyK4rlz58Lf3x8lSpRA1apVAQAXLlyAtbU19uzZo0gM4PU43sOHD2d4pfTbplChQnjx4gWA1zeoCA0NhY+PD6KiohQ9420Kxo4dK30hmzhxItq0aYP33nsPzs7OWL9+fR63jij/Y3JL9I6ysLDQectPY1JiTmWNRoNvv/0W+/btg6WlJUaOHIn27dtjxYoV+Oabb6BWqzF06FCFWvz6rNrNmzfxyy+/4Nq1awCATz/9FN26dYONjY1icUqWLKk1FOFt1qhRI+zbtw8+Pj7o3LkzhgwZgv3792Pfvn1o1qxZXjcvX/H395f+7+3tjWvXriEyMhKFChXK9TP4b/svBEQALygjeqcNHToUVlZWmD59el43JcdGjRqFxYsXw8/PD8eOHcPTp08REBCAEydO4Ouvv0bnzp2NfjtjJezduxczZ87E4sWL4eHhkdfNMVhkZCRevXqFYsWKISUlBTNmzMCxY8fg7e2NsWPHolChQnndxDxnzPHquuLpuoskwJks6O3DM7dE77CkpCQsX74cf/31F2rWrKn1ofY23BJ148aNWL16Ndq2bYvQ0FBUqVIFSUlJuHDhgmJnoXbs2IGWLVvCwsIiy1tRKjXB/ieffIL4+HiULl0aBQoU0Jr9ITIyUpE4xuLk5CT938zMDKNHj87D1uRPxhyvrive23wXSaK0eOaW6B1069YteHh4ZPpzsEqlwv79+43YqpyxtLTE7du3pemLbGxscOrUKUXvrGRmZoZHjx7BxcUl09vuKjkrw6pVqzJ9XJ8rqfMDMzOzLL9kqFQqzteZTanj1SMiIvK6KUT5Ds/cEr2DvL298fDhQxw4cADA67OE8+bN0znFVX6XnJwMS0tLadnc3Fzxmx2k3oks/f9z09uSvGZl69atGT52/PhxzJs3z2ivqSlRYrw6kanimVuid1DaM5HA69trnj9//q2cZij9ROe5NW7w5cuXCA4ORuvWrQEAY8aMkd320tzcHJMmTZKmB1PSq1evtO7o9TbfEvX69esYPXo0du7ciW7dumHSpElZznxBRKQvnrklorf6qvz0Zzhza9zgqlWr8Mcff0jJ7fz581GpUiVphoRr167Bzc0NQUFBisSLi4vDqFGjsGHDBjx79kzr8bftJg4A8ODBA0yYMAGrVq2Cv78/zp8/j8qVK+d1s4jIxDC5JXoHqVQqrXGQb+sUQMaa6PyXX37ByJEjZWXr1q2TznavXbsWCxYsUCy5HTlyJA4cOICFCxeie/fuWLBgAe7fv4/Fixe/dbNbREdHY+rUqfjxxx9RrVo1BAcH47333svrZhGRiWJyS/QOEkKgV69e0k/5r169wpdffskpgDIRFhYmu0jN2tpadnFZ7dq1MWDAAMXi7dy5E6tXr0aTJk0QEBCA9957D2XKlIG7uzt++eUXdOvWTbFYuWnGjBn47rvv4Obmhl9//RXt2rXL6yYRkYnjmFuid1BAQIBez+PtH9+wsbHB+fPnUa5cOZ2PX7t2DdWqVcOrV68UiWdnZ4crV66gVKlSKFGiBLZs2YLatWvj9u3b8PHxQWxsrCJxcpuZmRlsbGzg5+eX6XzD/CJFRErhmVuidxCT1uwrUaIEQkNDM0xuL168iBIlSigWz8vLC7dv30apUqVQvnx5bNiwAbVr18bOnTvh6OioWJzc1qNHj7d2yAsRvZ145paISA9DhgzBX3/9hbNnz2rNiPDy5Uv4+vrCz88Pc+fOVSTe7NmzoVarMXjwYPz1119o06YNhBBITEzErFmzMGTIEEXiEBGZGia3RER6ePz4MapVqwZLS0sMHDgQZcuWBfB6Wqv58+cjKSkJ586dy7W5gu/evYuzZ8+iTJkyqFKlSq7EICIyBUxuiYj0dPv2bfTr1w/79u2Tpk9TqVRo3rw5fvrpJ8XmCU5MTESLFi2waNEieHt7K1InEdG7gsktEVE2RUZGIiwsDABQpkwZODk5KR6jSJEiOHbsGJNbIqJsYnJLRJQPDR06FFZWVm/dnLZERHmNsyUQEeVDSUlJWL58Of766y/UrFlTaw7iWbNm5VHLiIjyNya3RET5yK1bt+Dh4YHQ0FDUqFEDAHDjxg3Zczi1FhFRxjgsgYgoH1Gr1Xj48CFcXFwAAJ988gnmzZuXa7MwEBGZGrOsn0JERMaS/nzDrl27EBcXl0etISJ6+zC5JSLKx/jjGhFR9jC5JSLKR1QqldaYWo6xJSLSHy8oIyLKR4QQ6NWrF6ysrAAAr169wpdffqk1W8KWLVvyonlERPkek1sionykZ8+esuXPPvssj1pCRPR24mwJRERERGQyOOaWiIiIiEwGk1siIiIiMhlMbomIiIjIZDC5JSIyYU2aNMFXX32V180gIjIaJrdEREb29OlT9OvXD6VKlYKVlRXc3Nzg7++Po0ePAng9r+22bdvytpGZ6NWrF9q3b5/XzSAi0olTgRERGVmnTp2QkJCAVatWwcvLC48fP0ZwcDCePXuW100jInrr8cwtEZERRUVF4fDhw/juu+/w/vvvw93dHbVr18aYMWPQtm1beHh4AAA6dOgAlUolLes6W/rVV1+hSZMm0nJcXBx69OgBOzs7FC1aFDNnztSKr9FoMHz4cBQvXhy2traoU6cODh48KD2+cuVKODo6Ys+ePahQoQLs7OzQokULPHz4EADw7bffYtWqVdi+fbt0N7W06xMR5TUmt0RERmRnZwc7Ozts27YNGo1G6/HTp08DAFasWIGHDx9Ky/oYMWIEDh06hO3bt2Pv3r04ePAgQkJCZM8ZOHAgjh8/jvXr1+PixYvo3LkzWrRogZs3b0rPiY+Pxw8//IA1a9bg77//RkREBIYPHw4AGD58OD7++GMp4X348CHq16+fk5eCiChXMLklIjIic3NzrFy5EqtWrYKjoyMaNGiAr7/+GhcvXgQAFClSBADg6OgINzc3aTkrsbGxWLZsGX744Qc0a9YMPj4+WLVqFZKSkqTnREREYMWKFdi4cSPee+89lC5dGsOHD0fDhg2xYsUK6XmJiYlYtGgRfH19UaNGDQwcOBDBwcEAXifnNjY20lhhNzc3WFpaKvXyEBEZjMktEZGRderUCQ8ePMCOHTvQokULHDx4EDVq1MDKlStzXGd4eDgSEhJQp04dqczJyQnlypWTli9duoTk5GSULVtWOoNsZ2eHQ4cOITw8XHpegQIFULp0aWm5aNGiePLkSY7bRkRkTLygjIgoD1hbW6N58+Zo3rw5xo0bhz59+mDChAno1auXzuebmZkh/d3SExMTsxUzNjYWarUaZ8+ehVqtlj1mZ2cn/d/CwkL2mEql0opNRJRf8cwtEVE+ULFiRcTFxQF4nVwmJyfLHi9SpIh0UVeq8+fPS/8vXbo0LCwscPLkSans+fPnuHHjhrRcvXp1JCcn48mTJyhTpozsz83NTe+2WlpaarWPiCi/YHJLRGREz549Q9OmTbF27VpcvHgRt2/fxsaNGzFjxgy0a9cOAODh4YHg4GA8evQIz58/BwA0bdoUZ86cwerVq3Hz5k1MmDABoaGhUr12dnbo3bs3RowYgf379yM0NBS9evWCmdmbbr5s2bLo1q0bevTogS1btuD27ds4deoUpk2bhj/++EPvbfDw8MDFixdx/fp1/Pvvv9k+g0xElJuY3BIRGZGdnR3q1KmD2bNno1GjRqhcuTLGjRuHvn37Yv78+QCAmTNnYt++fShZsiSqV68OAPD398e4ceMwcuRI1KpVCy9evECPHj1kdX///fd477330KZNG/j5+aFhw4aoWbOm7DkrVqxAjx49MGzYMJQrVw7t27fH6dOnUapUKb23oW/fvihXrhx8fX1RpEgR6eYTRET5gUpwIBURERERmQieuSUiIiIik8HkloiIiIhMBpNbIiIiIjIZTG6JiIiIyGQwuSUiIiIik8HkloiIiIhMBpNbIiIiIjIZTG6JiIiIyGQwuSUiIiIik8HkloiIiIhMBpNbIiIiIjIZTG6JiIiIyGT8H+OKLB2SsldBAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create a Figure\n", + "fig = plt.figure(figsize=(8,3))\n", + "\n", + "# Create a bar plot of name vs grade\n", + "plt.bar(x=df_students.Name, height=df_students.Grade, color='orange')\n", + "\n", + "# Customize the chart\n", + "plt.title('Student Grades')\n", + "plt.xlabel('Student')\n", + "plt.ylabel('Grade')\n", + "plt.grid(color='#95a5a6', linestyle='--', linewidth=2, axis='y', alpha=0.7)\n", + "plt.xticks(rotation=90)\n", + "\n", + "# Show the figure\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "A figure can contain multiple subplots, each on its own *axis*.\n", + "\n", + "For example, the following code creates a figure with two subplots: one is a bar chart showing student grades, and the other is a pie chart comparing the number of passing grades to non-passing grades." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_2980\\2786848323.py:7: UserWarning: set_ticklabels() should only be used with a fixed number of ticks, i.e. after set_ticks() or using a FixedLocator.\n", + " ax[0].set_xticklabels(df_students.Name, rotation=90)\n", + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_2980\\2786848323.py:19: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + " fig.show()\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAygAAAG/CAYAAACzCPMjAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAACU9klEQVR4nOzdd1xT1/8/8FfYe29Ehrhw771xFfeoq4qi1lpH3W0/bdW60LZa96wFR6171bZa9957K4jgAhQEBGSf3x/8zJeYsAM3wOv5eOSh3Nxz7yshQN4595wjE0IIEBERERERaQAtqQMQERERERF9wAKFiIiIiIg0BgsUIiIiIiLSGCxQiIiIiIhIY7BAISIiIiIijcEChYiIiIiINAYLFCIiIiIi0hgsUIiIiIiISGOwQCEiIiIiIo3BAoWIiApMJpNh5syZUscgIqJShAUKEVEJdfv2bfTp0weurq4wMDCAs7Mz2rdvj2XLlinsN2/ePOzdu1eakGqwZcsWLF68OM/7u7m5QSaTQSaTQUtLCxYWFqhRowY+//xzXLx4sVBZSvpzSURUEsiEEELqEERElD/nzp1DmzZtUL58efj6+sLBwQHPnj3DhQsXEBwcjKCgIPm+JiYm6NOnDwIDA9WeQyaTYcaMGUXai9KlSxfcuXMHT58+zdP+bm5usLS0xOTJkwEA7969w/3797Fjxw6Eh4dj4sSJWLRoUYGyFOVzSUREmXSkDkBERPk3d+5cmJub4/Lly7CwsFC4LzIyUppQGsTZ2RmfffaZwrYFCxZg4MCB+PXXX1GxYkWMHj1aonRERJQTXuJFRFQCBQcHo1q1akrFCQDY2dnJ/y+TyZCQkIANGzbIL3saOnQoAGDo0KFwc3NTaj9z5kzIZDKFbcnJyZg4cSJsbW1hamqKbt264fnz5yqzvXjxAn5+frC3t4e+vj6qVauG33//XWGfEydOQCaTYfv27Zg7dy7KlSsHAwMDtGvXTqH3p3Xr1vj7778RGhoqz68qc14YGhpi06ZNsLKywty5c5H1AoJffvkFTZs2hbW1NQwNDVGvXj3s3LlToX1Oz2VoaCi+/PJLVK5cGYaGhrC2tkbfvn3z3OtDRET/hz0oREQlkKurK86fP487d+6gevXq2e63adMmjBgxAg0bNsTnn38OAKhQoUK+zzdixAhs3rwZAwcORNOmTXHs2DH4+Pgo7RcREYHGjRtDJpNh7NixsLW1xb///ovhw4cjLi4OEyZMUNh//vz50NLSwpQpUxAbG4uffvoJgwYNko8V+e677xAbG4vnz5/j119/BZB5mVVBmZiYoGfPnli/fj3u3buHatWqAQCWLFmCbt26YdCgQUhJScHWrVvRt29fHDhwQP44c3ouL1++jHPnzqF///4oV64cnj59ilWrVqF169a4d+8ejIyMCpyZiKjMEUREVOL8999/QltbW2hra4smTZqIadOmiUOHDomUlBSlfY2NjYWvr6/Sdl9fX+Hq6qq0fcaMGSLrn4cbN24IAOLLL79U2G/gwIECgJgxY4Z82/Dhw4Wjo6N48+aNwr79+/cX5ubmIjExUQghxPHjxwUAUbVqVZGcnCzfb8mSJQKAuH37tnybj4+PypzZcXV1FT4+Ptne/+uvvwoAYt++ffJtH3J9kJKSIqpXry7atm2rsD275/Lj9kIIcf78eQFAbNy4Mc/ZiYhICF7iRURUArVv3x7nz59Ht27dcPPmTfz000/o2LEjnJ2dsX//frWe659//gEAjB8/XmH7x70hQgjs2rULXbt2hRACb968kd86duyI2NhYXLt2TaHNsGHDoKenJ/+6RYsWAIAnT56o9TFk9aEH5t27d/JthoaG8v+/ffsWsbGxaNGihVLe7GRtn5qaiqioKHh6esLCwiLPxyAioky8xIuIqIRq0KABdu/ejZSUFNy8eRN79uzBr7/+ij59+uDGjRvw8vJSy3lCQ0OhpaWldGlY5cqVFb5+/fo1YmJisHbtWqxdu1blsT4ewF++fHmFry0tLQFkFglFJT4+HgBgamoq33bgwAHMmTMHN27cQHJysnz7x2NxsvP+/Xv4+/sjICAAL168UBjfEhsbq6bkRERlAwsUIqISTk9PDw0aNECDBg1QqVIlDBs2DDt27MCMGTNybJfdm+/09PQC5cjIyAAAfPbZZ/D19VW5T82aNRW+1tbWVrmfKMIZ8O/cuQMA8PT0BACcPn0a3bp1Q8uWLbFy5Uo4OjpCV1cXAQEB2LJlS56OOW7cOAQEBGDChAlo0qQJzM3NIZPJ0L9/f/nzQkREecMChYioFKlfvz4A4NWrV/Jt2RUilpaWiImJUdoeGhqq8LWrqysyMjIQHBys0Gvy8OFDhf0+zPCVnp4Ob2/vgj4EJXntxciL+Ph47NmzBy4uLqhatSoAYNeuXTAwMMChQ4egr68v3zcgICDPWXbu3AlfX18sXLhQvi0pKUnl80tERDnjGBQiohLo+PHjKnsZPowXyVpIGBsbq3yjXKFCBcTGxuLWrVvyba9evcKePXsU9uvcuTMAYOnSpQrbP17dXVtbG71798auXbvkvRRZvX79OucHlQ1jY2O1XCb1/v17DB48GNHR0fjuu+/kxYa2tjZkMplCz9HTp09Vrhif3XOpra2t9P1YtmxZgXujiIjKMvagEBGVQOPGjUNiYiJ69uyJKlWqICUlBefOncO2bdvg5uaGYcOGyfetV68ejhw5gkWLFsHJyQnu7u5o1KgR+vfvj6+//ho9e/bE+PHjkZiYiFWrVqFSpUoKA7tr166NAQMGYOXKlYiNjUXTpk1x9OhRhfVKPpg/fz6OHz+ORo0aYeTIkfDy8kJ0dDSuXbuGI0eOIDo6Ot+PtV69eti2bRsmTZqEBg0awMTEBF27ds2xzYsXL7B582YAmb0m9+7dk68kP3nyZIwaNUq+r4+PDxYtWoROnTph4MCBiIyMxIoVK+Dp6alQvOX0XHbp0gWbNm2Cubk5vLy8cP78eRw5cgTW1tb5frxERGWelFOIERFRwfz777/Cz89PVKlSRZiYmAg9PT3h6ekpxo0bJyIiIhT2ffDggWjZsqUwNDQUABSmyf3vv/9E9erVhZ6enqhcubLYvHmz0jTDQgjx/v17MX78eGFtbS2MjY1F165dxbNnz5SmGRZCiIiICDFmzBjh4uIidHV1hYODg2jXrp1Yu3atfJ8P0wzv2LFDoW1ISIgAIAICAuTb4uPjxcCBA4WFhYUAkOuUw66urgKAACBkMpkwMzMT1apVEyNHjhQXL15U2Wb9+vWiYsWKQl9fX1SpUkUEBASofB6yey7fvn0rhg0bJmxsbISJiYno2LGjePDggXB1dVU5LTEREWVPJkQRjkQkIiIiIiLKB45BISIiIiIijcEChYiIiIiINAYLFCIiIiIi0hgsUIg0zNChQ+Hm5iZ1DCIi0hCBgYGQyWR4+vSp1FEk17p1a7Ru3VrqGFTEWKAQZRESEoKxY8eiUqVKMDIygpGREby8vDBmzBil6UaJiKj0+VAMfLgZGBigUqVKGDt2LCIiIqSOJ5lbt25h2LBhcHd3h4GBAUxMTFC7dm1MmzYNT548kToelTJcB4Xo/ztw4AD69esHHR0dDBo0CLVq1YKWlhYePHiA3bt3Y9WqVQgJCYGrq6vUUYmIqIjNmjUL7u7uSEpKwpkzZ7Bq1Sr8888/uHPnDoyMjIo1y+DBg9G/f3/o6+sX63k/WLduHUaPHg0bGxsMGjQIVapUQVpaGu7cuYONGzdi8eLFeP/+PbS1tSXJR6UPCxQiAMHBwejfvz9cXV1x9OhRODo6Kty/YMECrFy5Elpa2Xc6JiQkwNjYuKijEhFRMejcuTPq168PABgxYgSsra2xaNEi7Nu3DwMGDCjWLNra2pK9+T937hxGjx6NZs2a4cCBAzA1NVW4f+HChZg7d26ux0lMTCz2wo5KLl7iRQTgp59+QkJCAgICApSKEwDQ0dHB+PHj4eLiAiBznIiJiQmCg4PxySefwNTUFIMGDQIAnD59Gn379kX58uWhr68PFxcXTJw4Ee/fv1c67t69e1G9enUYGBigevXq2LNnj8p8GRkZWLx4MapVqwYDAwPY29tj1KhRePv2rcJ+V65cQceOHWFjYwNDQ0O4u7vDz8+vsE8PEVGZ17ZtWwCZlwIDwC+//IKmTZvC2toahoaGqFevHnbu3KnU7vDhw2jevDksLCxgYmKCypUr43//+5/CPsuWLUO1atVgZGQES0tL1K9fH1u2bJHfr2oMipubG7p06YIzZ86gYcOGMDAwgIeHBzZu3KiU4datW2jVqhUMDQ1Rrlw5zJkzBwEBAXka1/Ljjz9CJpPhjz/+UCpOAMDAwACzZ89WKKBat26N6tWr4+rVq2jZsiWMjIzkj3nfvn3w8fGBk5MT9PX1UaFCBcyePRvp6elKx167di0qVKgAQ0NDNGzYEKdPn1aZMTk5GTNmzICnp6f87+60adOQnJyssF9evhekGdiDQoTMy7s8PT3RqFGjPLdJS0tDx44d0bx5c/zyyy/yT4Z27NiBxMREjB49GtbW1rh06RKWLVuG58+fY8eOHfL2//33H3r37g0vLy/4+/sjKioKw4YNQ7ly5ZTONWrUKAQGBmLYsGEYP348QkJCsHz5cly/fh1nz56Frq4uIiMj0aFDB9ja2uKbb76BhYUFnj59it27dxf+CSIiKuOCg4MBANbW1gCAJUuWoFu3bhg0aBBSUlKwdetW9O3bFwcOHICPjw8A4O7du+jSpQtq1qyJWbNmQV9fH0FBQTh79qz8uOvWrcP48ePRp08ffPXVV0hKSsKtW7dw8eJFDBw4MMdMQUFB6NOnD4YPHw5fX1/8/vvvGDp0KOrVq4dq1aoBAF68eIE2bdpAJpPh22+/hbGxMX777bc8XS6WmJiIY8eOoXXr1ir/NuUkKioKnTt3Rv/+/fHZZ5/B3t4eQGaxZWJigkmTJsHExATHjh3D9OnTERcXh59//lnefv369Rg1ahSaNm2KCRMm4MmTJ+jWrRusrKzkHxYCmR/gdevWDWfOnMHnn3+OqlWr4vbt2/j111/x6NEj7N27F0DevhekQaReyp5IarGxsQKA6NGjh9J9b9++Fa9fv5bfEhMThRBC+Pr6CgDim2++UWrzYZ+s/P39hUwmE6GhofJttWvXFo6OjiImJka+7b///hMAhKurq3zb6dOnBQDxxx9/KBzz4MGDCtv37NkjAIjLly/n7wkgIiK5gIAAAUAcOXJEvH79Wjx79kxs3bpVWFtbC0NDQ/H8+XMhhPLv+pSUFFG9enXRtm1b+bZff/1VABCvX7/O9nzdu3cX1apVy1OmkJAQ+TZXV1cBQJw6dUq+LTIyUujr64vJkyfLt40bN07IZDJx/fp1+baoqChhZWWldMyP3bx5UwAQEyZMULovKipK4e9jcnKy/L5WrVoJAGL16tVK7VT9jRw1apQwMjISSUlJQojM59LOzk7Url1b4bhr164VAESrVq3k2zZt2iS0tLTE6dOnFY65evVqAUCcPXtWCJG37wVpDl7iRWVeXFwcAMDExETpvtatW8PW1lZ+W7FihcL9o0ePVmpjaGgo/39CQgLevHmDpk2bQgiB69evAwBevXqFGzduwNfXF+bm5vL927dvDy8vL4Xj7dixA+bm5mjfvj3evHkjv9WrVw8mJiY4fvw4AMDCwgJAZm9QampqAZ4JIiL6wNvbG7a2tnBxcUH//v1hYmKCPXv2wNnZGYDi7/q3b98iNjYWLVq0wLVr1+TbP/xe3rdvHzIyMlSex8LCAs+fP8fly5fzndHLywstWrSQf21ra4vKlSsrzKp18OBBNGnSBLVr15Zvs7Kykl+WnJOc/j56eHgo/H3cv3+/wv36+voYNmyYUrusz9u7d+/w5s0btGjRAomJiXjw4AGAzMuVIyMj8cUXX0BPT0++/9ChQxX+ZgKZfyOrVq2KKlWqKPyN/HBJ3sd/I3P6XpDmYIFCZd6Ha2rj4+OV7luzZg0OHz6MzZs3K92no6Ojsss7LCwMQ4cOhZWVFUxMTGBra4tWrVoBAGJjYwEAoaGhAICKFSsqta9cubLC148fP0ZsbCzs7OwU/hjY2toiPj4ekZGRAIBWrVqhd+/e+PHHH2FjY4Pu3bsjICBA6RpcIiLK3YoVK3D48GEcP34c9+7dw5MnT9CxY0f5/QcOHEDjxo1hYGAAKysr2NraYtWqVfLf8wDQr18/NGvWDCNGjIC9vT369++P7du3K7xB/vrrr2FiYoKGDRuiYsWKGDNmTJ4vOypfvrzSNktLS4XxiaGhofD09FTaT9W2j+X093Hfvn04fPgwfvnlF5VtnZ2dFYqLD+7evYuePXvC3NwcZmZmsLW1xWeffQYg97+Rurq68PDwUNj2+PFj3L17V+nvY6VKlQBA/jcyL98L0hwcg0Jlnrm5ORwdHXHnzh2l+z6MSVE1iFBfX19pVq/09HS0b98e0dHR+Prrr1GlShUYGxvjxYsXGDp0aIF+EWZkZMDOzg5//PGHyvttbW0BADKZDDt37sSFCxfw119/4dChQ/Dz88PChQtx4cIFlZ+AERGRag0bNpTP4vWx06dPo1u3bmjZsiVWrlwJR0dH6OrqIiAgQGFwu6GhIU6dOoXjx4/j77//xsGDB7Ft2za0bdsW//33H7S1tVG1alU8fPgQBw4cwMGDB7Fr1y6sXLkS06dPx48//phjxuxm9hJCFPyBZ+Hp6QkdHR2Vfx8/fPCmo6P6rWTWnpIPYmJi0KpVK5iZmWHWrFmoUKECDAwMcO3aNXz99dcF/htZo0YNLFq0SOX9H8ar5OV7QZqDBQoRAB8fH/z222+4dOkSGjZsWODj3L59G48ePcKGDRswZMgQ+fbDhw8r7PdhLZXHjx8rHePhw4cKX1eoUAFHjhxBs2bNVP7C/1jjxo3RuHFjzJ07F1u2bMGgQYOwdetWjBgxoiAPiYiIPrJr1y4YGBjg0KFDCoPNAwIClPbV0tJCu3bt0K5dOyxatAjz5s3Dd999h+PHj8Pb2xsAYGxsjH79+qFfv35ISUlBr169MHfuXHz77bcwMDAoVFZXV1cEBQUpbVe17WPGxsZo3bo1Tp48iRcvXsgvbyuoEydOICoqCrt370bLli3l2z/MjJY1M5D5N/LDpVoAkJqaipCQENSqVUu+rUKFCrh58ybatWsHmUyW4/nz8r0gzcBLvIgATJs2DUZGRvDz81O5UnBeP4368AlM1v2FEFiyZInCfo6OjqhduzY2bNigcDnA4cOHce/ePYV9P/30U6Snp2P27NlK50tLS0NMTAyAzGugP8754ZpjXuZFRKQ+2trakMlkClPjPn36VD5j1AfR0dFKbT/+vRwVFaVwv56eHry8vCCEUMt4wo4dO+L8+fO4ceOGQq7seuU/Nn36dKSnp+Ozzz5TealXfnprVP2NTElJwcqVKxX2q1+/PmxtbbF69WqkpKTItwcGBsr/5n3w6aef4sWLF1i3bp3S+d6/f4+EhAQAeftekOZgDwoRMq9z3bJlCwYMGIDKlSvLV5IXQiAkJARbtmyBlpZWrtMsVqlSBRUqVMCUKVPw4sULmJmZYdeuXUrrlQCAv78/fHx80Lx5c/j5+SE6Olo+F37WPwKtWrXCqFGj4O/vjxs3bqBDhw7Q1dXF48ePsWPHDixZsgR9+vTBhg0bsHLlSvTs2RMVKlTAu3fvsG7dOpiZmeGTTz5R+3NGRFRW+fj4YNGiRejUqRMGDhyIyMhIrFixAp6enrh165Z8v1mzZuHUqVPw8fGBq6srIiMjsXLlSpQrVw7NmzcHAHTo0AEODg5o1qwZ7O3tcf/+fSxfvhw+Pj4q1x3Jr2nTpmHz5s1o3749xo0bJ59muHz58oiOjs6116FFixZYvnw5xo0bh4oVK8pXkk9JScGjR4/wxx9/QE9PDw4ODrlmadq0KSwtLeHr64vx48dDJpNh06ZNSkWOrq4u5syZg1GjRqFt27bo168fQkJCEBAQoDQGZfDgwdi+fTu++OILHD9+HM2aNUN6ejoePHiA7du349ChQ6hfv36evhekQSSaPYxIIwUFBYnRo0cLT09PYWBgIAwNDUWVKlXEF198IW7cuCHfz9fXVxgbG6s8xr1794S3t7cwMTERNjY2YuTIkfKpGgMCAhT23bVrl6hatarQ19cXXl5eYvfu3cLX11dhmuEP1q5dK+rVqycMDQ2FqampqFGjhpg2bZp4+fKlEEKIa9euiQEDBojy5csLfX19YWdnJ7p06SKuXLmitueHiKi0+zClb25Ttq9fv15UrFhR6OvriypVqoiAgAAxY8YMkfWt1dGjR0X37t2Fk5OT0NPTE05OTmLAgAHi0aNH8n3WrFkjWrZsKaytrYW+vr6oUKGCmDp1qoiNjVXK9PE0wz4+Pkq5WrVqpTANrxBCXL9+XbRo0ULo6+uLcuXKCX9/f7F06VIBQISHh+fpebl+/boYMmSIKF++vNDT0xPGxsaiZs2aYvLkySIoKEgpQ3ZTJ589e1Y0btxYGBoaCicnJzFt2jRx6NAhAUAcP35cYd+VK1cKd3d3oa+vL+rXry9OnTql8vGlpKSIBQsWiGrVqgl9fX1haWkp6tWrJ3788Uf585iX7wVpDpkQahpJRUREREQlwoQJE7BmzRrEx8dzgDhpHI5BISIiIirF3r9/r/B1VFQUNm3ahObNm7M4IY3EMShEREREpViTJk3QunVrVK1aFREREVi/fj3i4uLwww8/SB2NSCUWKERERESl2CeffIKdO3di7dq1kMlkqFu3LtavX68w1S+RJuEYFCIiIiIi0hgcg0JERERERBqDBQoREREREWmMEjkGJSMjAy9fvoSpqWmuCwwREZH6CCHw7t07ODk5QUuLn3EREZH6lcgC5eXLl3BxcZE6BhFRmfXs2TOUK1dO6hhERFQK5btAOXXqFH7++WdcvXoVr169wp49e9CjRw/5/UIIzJgxA+vWrUNMTAyaNWuGVatWoWLFivJ9oqOjMW7cOPz111/Q0tJC7969sWTJEpiYmOQpg6mpKYDMP5BmZmb5fQhERFRAcXFxcHFxkf8eJiIiUrd8FygJCQmoVasW/Pz80KtXL6X7f/rpJyxduhQbNmyAu7s7fvjhB3Ts2BH37t2DgYEBAGDQoEF49eoVDh8+jNTUVAwbNgyff/45tmzZkqcMHy7rMjMzY4FCRCQBXl5LRERFpVDTDMtkMoUeFCEEnJycMHnyZEyZMgUAEBsbC3t7ewQGBqJ///64f/8+vLy8cPnyZdSvXx8AcPDgQXzyySd4/vw5nJyccj1vXFwczM3NERsbywKFiKgY8fcvEREVNbWOcAwJCUF4eDi8vb3l28zNzdGoUSOcP38eAHD+/HlYWFjIixMA8Pb2hpaWFi5evKjyuMnJyYiLi1O4ERERERFR6aPWAiU8PBwAYG9vr7Dd3t5efl94eDjs7OwU7tfR0YGVlZV8n4/5+/vD3NxcfuMAeSIiIiKi0qlEzOL17bffYtKkSfKvPwzSJCIiIiIqLCEE0tLSkJ6eLnWUEk1bWxs6OjqFHqeo1gLFwcEBABAREQFHR0f59oiICNSuXVu+T2RkpEK7tLQ0REdHy9t/TF9fH/r6+uqMSkRERESElJQUvHr1ComJiVJHKRWMjIzg6OgIPT29Ah9DrQWKu7s7HBwccPToUXlBEhcXh4sXL2L06NEAgCZNmiAmJgZXr15FvXr1AADHjh1DRkYGGjVqpM44RERERETZysjIQEhICLS1teHk5AQ9PT3OUlhAQgikpKTg9evXCAkJQcWKFQu8oG++C5T4+HgEBQXJvw4JCcGNGzdgZWWF8uXLY8KECZgzZw4qVqwon2bYyclJPtNX1apV0alTJ4wcORKrV69Gamoqxo4di/79++dpBi8iIiIiInVISUlBRkYGXFxcYGRkJHWcEs/Q0BC6uroIDQ1FSkqKfImR/Mp3gXLlyhW0adNG/vWHsSG+vr4IDAzEtGnTkJCQgM8//xwxMTFo3rw5Dh48qBDwjz/+wNixY9GuXTv5Qo1Lly4t0AMgIiIiIiqMgn7ST8rU8VwWah0UqXAefiIiafD3LxGVJklJSQgJCYG7u3uBP+0nRep4TlkuEhERERGRxigR0wwTERERERUnt2/+LrZzPZ3vU2znCgwMxIQJExATE1Ns58wvFiglxZZ8zigxsMRduUdEREREeTR06FBs2LBBafvjx4/h6ekpQSL1YYFCRERERFQCderUCQEBAQrbbG1tJUqjPhyDQkRERERUAunr68PBwUHhtmTJEtSoUQPGxsZwcXHBl19+ifj4+GyPcfPmTbRp0wampqYwMzNDvXr1cOXKFfn9Z86cQYsWLWBoaAgXFxeMHz8eCQkJRfq4WKAQEREREZUSWlpaWLp0Ke7evYsNGzbg2LFjmDZtWrb7Dxo0COXKlcPly5dx9epVfPPNN9DV1QUABAcHo1OnTujduzdu3bqFbdu24cyZMxg7dmyRPgZe4kVEREREVAIdOHAAJiYm8q87d+6MHTt2yL92c3PDnDlz8MUXX2DlypUqjxEWFoapU6eiSpUqAICKFSvK7/P398egQYMwYcIE+X1Lly5Fq1atsGrVqiKbmpkFChERERFRCdSmTRusWrVK/rWxsTGOHDkCf39/PHjwAHFxcUhLS0NSUhISExNhZGSkdIxJkyZhxIgR2LRpE7y9vdG3b19UqFABQOblX7du3cIff/wh318IgYyMDISEhKBq1apF8rh4iRcRERERUQlkbGwMT09P+S05ORldunRBzZo1sWvXLly9ehUrVqwAAKSkpKg8xsyZM3H37l34+Pjg2LFj8PLywp49ewAA8fHxGDVqFG7cuCG/3bx5E48fP5YXMUWBPShERERERKXA1atXkZGRgYULF0JLK7MfYvv27bm2q1SpEipVqoSJEydiwIABCAgIQM+ePVG3bl3cu3ev2KctZg8KEREREVEp4OnpidTUVCxbtgxPnjzBpk2bsHr16mz3f//+PcaOHYsTJ04gNDQUZ8+exeXLl+WXbn399dc4d+4cxo4dixs3buDx48fYt28fB8kTERERERW34lzdXV1q1aqFRYsWYcGCBfj222/RsmVL+Pv7Y8iQISr319bWRlRUFIYMGYKIiAjY2NigV69e+PHHHwEANWvWxMmTJ/Hdd9+hRYsWEEKgQoUK6NevX5E+DpkQosQtOR4XFwdzc3PExsbCzMxM6jjFgyvJE5EGKJO/f4mo1EpKSkJISAjc3d2LbEaqskYdzykv8SIiIiIiIo3BAoWIiIiIiDQGCxQiIiIiItIYLFCIiIiIiEhjsEAhIiIiIiKNwWmGiYiIiEqp6IQURMQl4U18MuKT0hCfnIbElHS8T01HcmoGUtLTkZoukJqeAR0tGfR1tKGvowV9XS3o62jDIMu/Zga6sDMzgJ2ZPswMdKV+aFSKsUAhIiIiKoGEEAiLTsTD8Hd4GpWAV7FJiIxLRkRcEsLjkhD5LhkpaRlFcm4DXS3YmRrA3kwfdqYGsDXVRzlLQ1S0N0UlexM4mhsWyXmpbGCBQkRERKThIuKS8CD8HR6Fv8PDiHd4FPEOQZHxSExJlyRPUmoGwqITERadqPJ+U30deNqboJKdKSram6CivSm8HM1ga6pfzEmpJGKBQkRERKRBhBB4HBmPiyHRuBQSjcsh0QiPS5I6Vr68S07D9bAYXA+LUdjuZm2E+m5WaOBmiQZuVvCwNZEmIGk0FihERESk8U6dOoWff/4ZV69exatXr7Bnzx706NFDfv/QoUOxYcMGhTYdO3bEwYMHizlp/mVkCNx9GYeLIVG4GBKNK0+j8TYxVepYReJpVCKeRiVi59XnAAAbEz3Ud7VCfTdLNK1gAy8nM4kTZjHTvBjPFZuv3WUyWY73z5gxAzNnzixEIGmxQCEiIiKNl5CQgFq1asHPzw+9evVSuU+nTp0QEBAg/1pfX3MvJ0pOS8fZoDf4724EjtyPwJv4FKkjSeJNfAoO3g3HwbvhAABnC0O097KHd1V7NPKwgq42J5xV5dWrV/L/b9u2DdOnT8fDhw/l20xM/q9nSgiB9PR06OiUnLf9JScpERERlVmdO3dG586dc9xHX18fDg4OxZQo/2Lfp+L4g0j8dy8cJx++RoJE40c02YuY9wg89xSB557CzEAHrSvbob2XPVpXtoUpZw6Ty/o6Nzc3h0wmk287ceIE2rRpg3/++Qfff/89bt++jf/++w+BgYGIiYnB3r175W0nTJiAGzdu4MSJEwCAjIwMLFiwAGvXrkV4eDgqVaqEH374AX369CnOh8cChYiIiEqHEydOwM7ODpaWlmjbti3mzJkDa2trSTMlpabj3zuvsPvaC1x4EoXUdCFpnpIkLikN+2++xP6bL6GnrYWWlWzQp54L2lW1Y89KHnzzzTf45Zdf4OHhAUtLyzy18ff3x+bNm7F69WpUrFgRp06dwmeffQZbW1u0atWqiBP/HxYoREREVOJ16tQJvXr1gru7O4KDg/G///0PnTt3xvnz56GtrV3see68iMW2y8+w78YLxCWlFfv5S5uU9AwcuR+JI/cjYWOihx61ndGvgQsq2ptKHU1jzZo1C+3bt8/z/snJyZg3bx6OHDmCJk2aAAA8PDxw5swZrFmzhgUKERERUX70799f/v8aNWqgZs2aqFChAk6cOIF27doVS4bY96nYd+MFtl1+hrsv44rlnGXRm/gU/HYmBL+dCUEtFwt8Wr8cutVy4iVgH6lfv36+9g8KCkJiYqJSUZOSkoI6deqoM1quWKAQERFRqePh4QEbGxsEBQUVeYHyIDwOa089wd+3XiG5iBZGJNVuPovBzWcxmHPgPnrXc8bnLSqgvLWR1LE0grGxscLXWlpaEELxEsPU1P+bLS4+Ph4A8Pfff8PZ2Vlhv+KecIIFChEREZU6z58/R1RUFBwdHYvsHJdCorHqRBCOP3xdZOegvHmfmo7NF8Lw56Vn6FTdAaNbVUB152KcJrgEsLW1xZ07dxS23bhxA7q6mT1PXl5e0NfXR1hYWLFezqUKCxQiIiLSePHx8QgKCpJ/HRISghs3bsDKygpWVlb48ccf0bt3bzg4OCA4OBjTpk2Dp6cnOnbsqNYcQggcuR+J1SeDcTX0rVqPTYWXniHw961X+PvWKzTztMaolhXQspKt1LE0Qtu2bfHzzz9j48aNaNKkCTZv3ow7d+7IL98yNTXFlClTMHHiRGRkZKB58+aIjY3F2bNnYWZmBl9f32LLygKFiIiINN6VK1fQpk0b+deTJk0CAPj6+mLVqlW4desWNmzYgJiYGDg5OaFDhw6YPXu22i5NSc8Q2Hv9BVafDMbjyHi1HJOK1tmgKJwNioKXoxnGtPHEJzUccl3gsDTr2LEjfvjhB0ybNg1JSUnw8/PDkCFDcPv2bfk+s2fPhq2tLfz9/fHkyRNYWFigbt26+N///lesWWXi44vRSoC4uDiYm5sjNjYWZmYatOJoUdqSzx+ogSXu20pEJUCZ/P1LZd6RexGYf/ABgliYlGjVnc0wtWMVtMrSo5KUlISQkBC4u7vDwMBAwnSlhzqeU/agEBEREalw63kM5v59HxdDoqWOQmpw50UcfH+/hCYe1vj2kyqoWc5C6kiUDRYoRERERFk8f5uInw89xP6bL1HyrjOh3Jx/EoXuK86iR21nTGzjJnUcUoEFChERERGAuKRULD8WhMBzT5HC6YJLNSGAPddf4MbTSMxv74CMDFaimoQFChEREZV5B269xI9/3cPrd8lSR6FilJKWgbikNIRGJcJFSwcmXOxRI7BAISIiojLrWXQipu+7w7VMyriU9HQ8eZMAKyM9OJgbQEdbS+pIZRoLFCIiIipzhBDYcO4pfjr0EIkp6VLHIYlkXtkl8GGwUXRiCuKS0uBkYQALIz1Js5VU6pggmAUKERERlSkhbxIwbedNXH7KhRbLupikDKSmC4i0FMh0M9fMScvIQFh0ImISU+FkYQg9Hfam5EdiYiIAyFeoLwgWKERERFRmbDj3FP7/3kdSKgfBE/A+TeDok3h00dOGpRUg09ED/v9ijrHxKXiXkAh7M32YGbI3JTdCCCQmJiIyMhIWFhbQ1tYu8LFYoBAREVGpF/s+FV/vvIWDd8OljkIaZvf9BABAO4906GrLACgujh3+AjDW14aFoW6ZXok+rywsLODg4FCoY7BAISIiolLtethbjPvzOp6/fS91FNJAAsCu+wn4+3EiLA20oJVNDeJqZYQfulSDu61xseYrSXR1dQvVc/IBCxQiIiIqlYQQWHf6CX4+9BCp6VzngnKWlCbwKj77CRNevHuHnmsv4YcuXhjUyLUYk5U9LFCIiIio1HmbkILJO27i2INIqaNQKZKUmoHv9tzBuaAo+PeuATOum1IkWKAQERFRqXL3ZSxGbriCl7FJUkehUurv26/wMOIdfvdtgPLWRlLHKXU4bxoRERGVGkfvR+DT1edZnFCRC4qMR4+VZ3EpJFrqKKUOCxQiIiIqFX47/QQjN15BAhdepGISnZCCz367iJ1Xn0sdpVThJV5EhbUln1MODuRATSIidUrPEJix/w42XwiTOgqVQSnpGZiy4yaCX8djWsfKnIpYDdiDQkRERCXWu6RUDAu8zOKEJLfqRDC+/OMa3rMHr9DUXqCkp6fjhx9+gLu7OwwNDVGhQgXMnj0bQvzfp8ZCCEyfPh2Ojo4wNDSEt7c3Hj9+rO4oREREVIqFxyahz6rzOPXotdRRiAAA/94Jx4B1FxD7PlXqKCWa2guUBQsWYNWqVVi+fDnu37+PBQsW4KeffsKyZcvk+/z0009YunQpVq9ejYsXL8LY2BgdO3ZEUhIHtBEREVHunr9NxKdrzuNhxDupoxApuPEsBgPXXUB0QorUUUostRco586dQ/fu3eHj4wM3Nzf06dMHHTp0wKVLlwBk9p4sXrwY33//Pbp3746aNWti48aNePnyJfbu3avuOERERFTKhEUlot+aCwiLTpQ6CpFKd1/Gof/a84h8xw/fC0LtBUrTpk1x9OhRPHr0CABw8+ZNnDlzBp07dwYAhISEIDw8HN7e3vI25ubmaNSoEc6fP6/ymMnJyYiLi1O4ERERUdnz5HU8Pl1zHi9i3ksdhShHjyLi0X/NBbyK5Ws1v9ReoHzzzTfo378/qlSpAl1dXdSpUwcTJkzAoEGDAADh4eEAAHt7e4V29vb28vs+5u/vD3Nzc/nNxcVF3bGJiIhIwwVFvkO/tRcQHsdPpalkePImAZ+uOY9n7O3LF7UXKNu3b8cff/yBLVu24Nq1a9iwYQN++eUXbNiwocDH/PbbbxEbGyu/PXv2TI2JiYiISNM9CI9D/7UX8PpdstRRiPLlWfR7fLrmPELeJEgdpcRQe4EydepUeS9KjRo1MHjwYEycOBH+/v4AAAcHBwBARESEQruIiAj5fR/T19eHmZmZwo2IiIjKhscR7zBg7QW8ieegYyqZXsUmYdA6Xu6VV2ovUBITE6GlpXhYbW1tZGRkAADc3d3h4OCAo0ePyu+Pi4vDxYsX0aRJE3XHISIiohIsPDYJvr9fwttETttKJdvL//9ajuVrOVdqL1C6du2KuXPn4u+//8bTp0+xZ88eLFq0CD179gQAyGQyTJgwAXPmzMH+/ftx+/ZtDBkyBE5OTujRo4e64xAREVEJFfs+Fb6/X8LLWI45odLhUUQ8hm+4jKRULuaYEx11H3DZsmX44Ycf8OWXXyIyMhJOTk4YNWoUpk+fLt9n2rRpSEhIwOeff46YmBg0b94cBw8ehIGBgbrjEBERUQmUlJqOkRuvcJ0TKnWuhL7F2C3XsGZwfWhryaSOo5FkIusS7yVEXFwczM3NERsbW3bGo2zJ5wt4YIn7tpZc/N5QGVImf/9SscvIEPjyj2s4eFf17J5EpcGn9cvhpz61pI6hkdR+iRcRERFRYUzff4fFCZV62688x08HH0gdQyOxQCEiIiKNsfpkMDZfCJM6BlGxWHkiGLuuPpc6hsZhgUJEREQa4fTj1/xEmcqc/+25jTsvYqWOoVFYoBAREZHknr9NxPg/ryODw/SojElOy8CoTVfxNoHr/HzAAoWIiIgklZSajtGbr3GtEyqzXsS8x7g/ryOdFToAFihEREQksen77uA2L3GhMu5M0Bv8dIiXOAIsUIiIiEhCWy6GYfsVDhImAoA1J5/gn9uvpI4hORYoREREJImbz2Iw86+7Uscg0ihTd9zEk9fxUseQFAsUIiIiKnaJKWkYv/U6UtIypI5CpFESUtIxcfvNMj0ehQUKERERFbt5/9xHaFSi1DGINNLNZzFYcTxI6hiSYYFCRERExer049f44yIXYyTKybJjj8vs+ig6Ugcg0ghbZPnbf2DZ7XYlIiqMuKRUTNt5C4K/RolylJouMHHbDfw1rjkMdLWljlOs2INCRERExWbm/rt4FZskdQyiEuFxZDx+PvRQ6hjFjgUKERERFYtDd8Ox+9oLqWMQlSi/nw3B+eAoqWMUKxYoREREVOTeJqTguz23pY5BVOIIAUzbdRNJqelSRyk2LFCIiIioyP106CHexKdIHYOoRHoW/R7Ljj2WOkaxYYFCRERERerOi1hsu8xZu4gKY92pEASXkQUcWaAQERFRkRFCYMb+uyjDa84RqUVKegam77sjdYxiwQKFiIiIisye6y9wNfSt1DGISoWzQVH49/YrqWMUORYoREREVCTik9Mw/98HUscgKlXm/Xu/1A+YZ4FCRERERWLZ0ceIfJcsdQyiUuVZ9Hv8dvqJ1DGKFAsUIiIiUruQNwkIOPtU6hhEpdLKE8F4XYqLfxYoREREpHa/HHqIlPQMqWMQlUqJKelYfTJY6hhFRkfqAERUgmyR5W//gZy2h6gsuvcyDv/cKf0DeYmk9MfFUIxq5QE7UwOpo6gde1CIiIhIrRYdfgTBzyeIilRSagZWHi+dvSgsUIiIiEhtbj2PwZH7EVLHICoT/rwUhoi4JKljqB0LFCIiIlKbpUeDpI5AVGYkp2VgxfHS9zPHAoWIiIjU4v6rOBx9wN4TouK09fIzvIp9L3UMtWKBQkRERGqx/FgQx54QFbOUUtiLwgKFiIiICi00KgH/cuYuIknsvPocMYkpUsdQGxYoREREVGibzocig70nRJJISs3AtsvPpI6hNixQiIiIqFCSUtOx4+pzqWMQlWmbLoQio5R8SsAChYiIiApl7/UXiH2fKnUMojLt+dv3pWaKbxYoREREVCgbz4dKHYGIUHp+FlmgEBERUYFdDY3GvVdxUscgIgBngt4gKDJe6hiFxgKFiIiICmzDudLxiS1RabHx/FOpIxQaCxQiIiIqkNfvknHwTrjUMYgoi93XXuB9SrrUMQqFBQoREREVyP6bL5GSniF1DCLKIj45rcQPlmeBQkRERAXy182XUkcgIhX2l/CfTRYoRERElG/PohNx41mM1DGISIWTD1+X6Km/WaAQERFRvh249UrqCESUjZT0DBwqwePDdKQOQEREarBFlvd9B5aOlYZJWry8i0iz7b/5Ep82cJE6RoGwB4WIiIjyJfh1PNc+IdJw559E4fW7ZKljFAgLFCIiIsoX9p4Qab70DIG/b5XMn1Ve4kVEpCnyc5kWwEu1SDJ/c/wJUYlw8G44hjZzlzpGvrEHhYiIiPLsRcx7PI6MlzoGEeXBtdAYJKakSR0j31igEBERUZ6defxa6ghElEcp6Rm48CRK6hj5xku8iKTEmZeIqIQ5E1Ty3uwQlWWnHr1B2yr2UsfIF/agEBERUZ4IIXAu6I3UMYgoH06VwF7PIilQXrx4gc8++wzW1tYwNDREjRo1cOXKFfn9QghMnz4djo6OMDQ0hLe3Nx4/flwUUYiIiEhN7r6MQ1RCitQxiCgfnrxOwIuY91LHyBe1Fyhv375Fs2bNoKuri3///Rf37t3DwoULYWlpKd/np59+wtKlS7F69WpcvHgRxsbG6NixI5KSktQdh4iIiNTkDHtPiEqk049KVi+K2segLFiwAC4uLggICJBvc3f/v+nNhBBYvHgxvv/+e3Tv3h0AsHHjRtjb22Pv3r3o37+/uiMRERGRGpx5zAKFqCQ6/fgN+jcsL3WMPFN7D8r+/ftRv3599O3bF3Z2dqhTpw7WrVsnvz8kJATh4eHw9vaWbzM3N0ejRo1w/vx5lcdMTk5GXFycwo2IiIiKT0paBi4/jZY6BhEVwMWQkvWzq/YC5cmTJ1i1ahUqVqyIQ4cOYfTo0Rg/fjw2bNgAAAgPDwcA2NsrziZgb28vv+9j/v7+MDc3l99cXFzUHZuIiIhy8CA8DslpGVLHIKICeBOfjFexJWccitoLlIyMDNStWxfz5s1DnTp18Pnnn2PkyJFYvXp1gY/57bffIjY2Vn579uyZGhMTERFRbm6/iJU6AhEVwq3nJednWO0FiqOjI7y8vBS2Va1aFWFhYQAABwcHAEBERITCPhEREfL7Pqavrw8zMzOFGxERERWfOyxQiEq022W5QGnWrBkePnyosO3Ro0dwdXUFkDlg3sHBAUePHpXfHxcXh4sXL6JJkybqjkNERERqwB4UopLt5vMYqSPkmdpn8Zo4cSKaNm2KefPm4dNPP8WlS5ewdu1arF27FgAgk8kwYcIEzJkzBxUrVoS7uzt++OEHODk5oUePHuqOQ0RERIWUkpaBR+HxUscgokIoSb2gai9QGjRogD179uDbb7/FrFmz4O7ujsWLF2PQoEHyfaZNm4aEhAR8/vnniImJQfPmzXHw4EEYGBioOw4REREV0sPwd0hJ5wB5opLsbWIqnkUnwsXKSOoouVJ7gQIAXbp0QZcuXbK9XyaTYdasWZg1a1ZRnJ6IiIjUiJd3EZUOt57HlogCRe1jUIiIiKh0ufOSBQpRafAwvGSsJcgChYiIiHL09E2C1BGISA1CoxOljpAnLFCIiIgoR2El5E0NEeWspPwss0AhIiKibKWlZ+BVbJLUMYhIDcKiWKAQERFRCfcqNgnpGULqGESkBlEJKUhITpM6Rq5YoBAREVG2SsolIUSUN6EloBeFBQoRERFl6xkLFKJSpSR86MAChYiIiLL17K3mv5khorwLi9b8WflYoBAREVG2nkW/lzoCEanRyxjNn/SCBQoRERFlKyohWeoIRKRGse9TpY6QKxYoRERElK2S8GaGiPIuJjFF6gi5YoFCRERE2Yp7r/lTkhJR3pWEDx1YoBAREVG24pI0/80MEeUdCxQiIiIq0d4lsQeFqDSJLQG9ojpSB6BSaossf/sP5CrFRESaJj45javIE5UycexBISIiopKqJLyRIaL8SUnPQGKKZveisEAhIiIilUrCtepElH+afukmL/EiIlInXt5IpUhKWobUEYioCKSma/bPNntQiIiISCVZPuttIioZMjS7PmGBQkRERKrJwAqFqDRKF5rde89LvIiIiEgl9qCUHZa6afiq3GOpY1AxMRYNARhLHSNbLFCIiIiIyri5rtfxyfNfpY5BxUXWA4Ct1CmyxUu8iIiISCX2oJQNuloCHeJ2Sh2DipOWZpcAZbcHpTAz7XCWHiIiKgM4BqVs+Nb1AXRePZM6BhUnmWYXKJqdjoiIiCTDHpSyoX/qXqkjUHHT0uw+ChYoREREpJKuNiuU0m648zMYvbktdQwqbvqmUifIkWaXT6QevCSNiIgKwERfV+oIVMS+1PtH6ghU3GRagL6Z1ClyxB4UIiIiUsnMkJ9jlmYdbKJh/eqk1DGouOmbafz1myxQiIiISCUjPR3oaGn2GxkquP9ZHJY6AknBwFzqBLniRyNERKrk59JIXhZJpZiZoS6iE1KkjkFqVs00Aa6v/pU6BkmhBBQo7EEhIiKibFkacRxKaTTH8Qxk6Sw8yyQWKERERFSSWZvoSx2B1MxOPxW1I/ZIHYOkwgKFiIiISjJrYz2pI5CazSt/BbLkOKljkFSMbaROkCuOQSlOnO6XiIhKGBv2oJQqhtrpaPN2l9QxSEoW5aVOkCv2oBAREVG2XKwMpY5AavS9631ox7+UOgZJycJV6gS5YoFCRERE2SpvZSx1BFKj3kkce1LmsUAhIiKikszNxkjqCKQmY1yewiD6vtQxSGq8xIuIiIhKMlf2oJQaI7UPSB2BpKZjAJjYSZ0iVyxQiIiIKFuGetqwM+VA+ZKuq91rWISfkzoGSc3cBZDlc9ImCbBAISIiohy5WbMXpaT72uw/qSOQJrDU/PEnAAsUIiIiyoWrNcehlGR1zePh/PKQ1DFIE9hWkTpBnrBAISIiohy52bAHpSSbZXcSsow0qWOQJnCoKXWCPGGBQkRERDnycjSTOgIVkLNBMqpF7JU6BmkKRxYoREREVArUcrGQOgIV0DyXS5ClJEgdgzSBjgFgU0nqFHnCAoWIiIhyZGWsh3KWXFG+pDHWSUfz6F1SxyBNYecFaGlLnSJPWKAQERFRrtiLUvL8WP4OtBMipY5BmsKhhtQJ8owFChEREeWqVjlzqSNQPshkAt0S2XtCWZSQ8ScACxQiIiLKg1rlLKSOQPkwqfwT6MUESR2DNIljHakT5JmO1AGIlGzJ5wqnA0XR5CAiIrnqzubQkgEZ/JVbIviK/VJHIE2ibwY41ZY6RZ6xB4WIiIhyZayvg4p2plLHoDzo6xAOs8jLUscgTVK+SYkZIA8UQ4Eyf/58yGQyTJgwQb4tKSkJY8aMgbW1NUxMTNC7d29EREQUdRQiIiIqhCYVrKWOQHkw2fig1BFI07i3kDpBvhRpgXL58mWsWbMGNWsqDsqZOHEi/vrrL+zYsQMnT57Ey5cv0atXr6KMQkRERIXUqpKt1BEoF00sY2H/8ojUMUjTuLFAAQDEx8dj0KBBWLduHSwtLeXbY2NjsX79eixatAht27ZFvXr1EBAQgHPnzuHChQtFFYeIiIgKqbGHNfR0eHW4JptpcwIykSF1DNIkBhaAQ8mZwQsowgJlzJgx8PHxgbe3t8L2q1evIjU1VWF7lSpVUL58eZw/f17lsZKTkxEXF6dwIyIiouJlqKeNBm6Wue9IkvAwSkKlVxwcTx9xaw5olawPFook7datW3Ht2jX4+/sr3RceHg49PT1YWFgobLe3t0d4eLjK4/n7+8Pc3Fx+c3FxKYrYRERElAte5qW55jpfgCztvdQxSNOUsMu7gCIoUJ49e4avvvoKf/zxBwwMDNRyzG+//RaxsbHy27Nnz9RyXCIiIsqflixQNJK5bhoaveHCjKRC5U5SJ8g3tRcoV69eRWRkJOrWrQsdHR3o6Ojg5MmTWLp0KXR0dGBvb4+UlBTExMQotIuIiICDg4PKY+rr68PMzEzhRkRERMWvioMZHMzU8wEkqc9s15vQeh8ldQzSNA41AUs3qVPkm9oLlHbt2uH27du4ceOG/Fa/fn0MGjRI/n9dXV0cPXpU3ubhw4cICwtDkyZN1B2HiIiI1KxlJRupI1AW2rIMdH63W+oYpImqdpM6QYGofSV5U1NTVK9eXWGbsbExrK2t5duHDx+OSZMmwcrKCmZmZhg3bhyaNGmCxo0bqzsOERERqdknNRyx/cpzqWPQ//e1axB0w0OkjkGayIsFSp79+uuv0NLSQu/evZGcnIyOHTti5cqVUkQhIiKifGruaQMbEz28iU+ROgoBGJS+V+oIpIlsKgO2laVOUSDFUqCcOHFC4WsDAwOsWLECK1asKI7TExERkRrpaGvBp4YjNpwPlTpKmTfE6SWMX9+QOgZpoqpdpU5QYCVrUmQiIiLSCN1qO0sdgQCMM/hH6gikqUro5V0ACxQiIiIqgHqulnCxMpQ6RpnW2uotbF4elzoGaSKbSoBjLalTFJgkY1CIqJC2yPK3/0BRNDmIqEzrXssZy48HSR2jzPrB+hhkifz9TirUHSJ1gkJhDwoREREVSI86TlJHKLOqmCTC4+UBqWOQJtLWA2oNlDpFobBAISIiogLxtDNFdWcuniyFOU7nIEtPljoGaaLKnwDG1lKnKBRe4kVEmo2XsxFptCGN3TBt1y2pY5QptnqpqBvJhRkpG/V8pU5QaOxBISIiogLrVtsJVsZ6UscoU2aXvwatpBipY5AmsnAFPNpInaLQWKAQERFRgRnoaqN/AxepY5QZ+loZ8I7dJXUM0lR1BwOyfF55oIF4iRcRlV68PIyoWAxu4oq1p54gLYM/Q0XtW9eH0Hn1XOoYpIm09YA6g6VOoRbsQSEiIqJCcTQ3RMdqDlLHKBP6peyROgJpqlr9AdPS8XPIAoWIiIgKbWgzN6kjlHqflwuDYdQdqWOQJpJpAU2/kjqF2rBAISIiokJr4GbFKYeL2Be6f0sdgTRVlS6AjafUKdSGBQoRERGpxRetKkgdodTqbPsGVq9OSx2DNFXziVInUCsWKERERKQWPjUcUcXBVOoYpdI35kekjkCayr0l4FxX6hRqxQKFiIiI1EImk2Fi+0pSxyh1aprFo/zLf6WOQZqqlPWeACxQiIiISI06VnNADWdzqWOUKrMdTkOWkSp1DNJEzvWACm2lTqF2LFCIiIhIrSa2ryh1hFLDQT8FNSP2Sh2DNJX3TKkTFAkWKERERKRWbavYo055C6ljlArzyl+BLPmd1DFIE1Vomzn+pBRigUJERERqN4ljUQrNUDsdrd7ukjoGaSQZ0G6G1CGKDAsUIiIiUrsWFW3RtIK11DFKtOmu96Ad/0rqGKSJan4KONWWOkWRYYFCRERERWJmt2rQ0ZJJHaPE6pW0W+oIpIl0DIF206VOUaRYoBAREVGRqGRviqFN3aSOUSKNKx8C/eiHUscgTdTkS8C8nNQpihQLFCIiIioyE9pXgp2pvtQxSpwRsr+kjkCayNwFaD5J6hRFjgUKERERFRkTfR1851NV6hglSg/7SJhHXJA6BmmiT34B9E2kTlHkWKAQERFRkepe2xmN3K2kjlFiTDU5JHUE0kRe3YHKnaROUSxYoBAREVGRm92jOgfM50F983dwevmf1DFI0+ibA51/kjpFsWGBQkREREWukr0p/Jq7Sx1D482yOwGZSJc6Bmka7xmAqYPUKYoNCxQiIiIqFpPaV0IFW2OpY2is8oZJqBq+X+oYpGlcGgP1/aROUaxYoBAREVGxMNDVxsJPa0Obl3qpNLfcJchSE6SOQZpEWx/ouhiQla2fGRYoREREVGxqu1jgi1YeUsfQOMY66WgWtUvqGKRp2v8I2JW9WfBYoBAREVGxmuBdCdWdzaSOoVFmu96CVuJrqWOQJqnYAWg8WuoUkmCBQkRERMVKV1sLS/rXgaGuttRRNIJMJtAlYbfUMUiTmNgDPVZJnUIyOlIHIKIyYEs+r50dKIomBxFpjAq2Jvi+S1V8t+eO1FEkN7l8MPQigqWOQRpDBvRcDRjbSB1EMuxBISIiIkkMauQKnxqOUseQnK/gzF2URZMxQIW2UqeQFAsUIiIikszPfWuisr2p1DEk09/xFUwjr0gdgzSFY22g3QypU0iOl3hR6ZKfS4l4GRERkeSM9HSwZnA9dFt+BnFJaVLHKXYTDA8Cb6VOQRrB2BbotxnQ0ZM6ieTYg0JERESScrMxxpIBdVDWlkdpbhUL+1dHpY5BmkBLF/h0E2DhInUSjcAChYiIiCTXprIdJneoLHWMYjXd+hhkIkPqGKQJfBYCrk2kTqExWKAQERGRRhjTxhOdqztIHaNYVDB6j4qv/pI6BmmChp8D9XylTqFRWKAQERGRxvilb60yMWh+nvMFyNKSpI5BUnNvBXT0lzqFxmGBQkRERBrDWF8HgX4N4GRuIHWUImOpm4YGb3ZJHYOkZuUB9A0EtDln1cdYoBAREZFGcTQ3xMbhjWBlXDpnM5rtegNa76OljkFSMnUEBu8BjKykTqKRWKAQERGRxvG0M0HA0AYw1tOWOopa6WoJdIxj70mZZmiZWZxYukmdRGOxQCEiIiKNVMvFAqsH14Oedul5u/J1+UfQjQuVOgZJRc8EGLQTsKsqdRKNVnp+4omIiKjUaVHRFr98WqvUrJEyMG2v1BFIKtr6QP8/gHL1pU6i8VigEBERkUbrVssJM7tVkzpGoQ11eg6jNzeljkFSkGkDfdYDHq2lTlIisEAhIiIijTekiRtmda8GWQnuSRlr8I/UEUgKMm2g+wqgalepk5QYLFCIiIioRBjSxA0LetcskZd7tbOOhvXLk1LHoOKmpQv0+R2oPUDqJCUKCxQiIiIqMT6t74Il/etAp4RVKd9ZHoUMQuoYVJx0DIEBfwLVekidpMRRe4Hi7++PBg0awNTUFHZ2dujRowcePnyosE9SUhLGjBkDa2trmJiYoHfv3oiIiFB3FCIiIiqFutZywqrP6kFPp2R8zlrVJBHur/6WOgYVJz1T4LOdQMX2UicpkdT+k33y5EmMGTMGFy5cwOHDh5GamooOHTogISFBvs/EiRPx119/YceOHTh58iRevnyJXr16qTsKERERlVLtveyx3rc+DHU1f52UuU5nIEtPkToGFRcDC2DIPsCtudRJSiwddR/w4MGDCl8HBgbCzs4OV69eRcuWLREbG4v169djy5YtaNu2LQAgICAAVatWxYULF9C4cWN1RyIiIqJSqEVFW2zwa4jPN11BTGKq1HFUstVLRZ2IPVLHoOJi4gB8tgtwqC51khKtyPtGY2NjAQBWVlYAgKtXryI1NRXe3t7yfapUqYLy5cvj/PnzKo+RnJyMuLg4hRsRERFRQ3cr7PmyGTxsjaWOotLc8lchS46VOgYVB4eawMhjLE7UoEgLlIyMDEyYMAHNmjVD9eqZ36zw8HDo6enBwsJCYV97e3uEh4erPI6/vz/Mzc3lNxcXl6KMTURERCWIu40x9nzZDM09baSOokBfKwNtY3dJHYOKQ9WugN8hwNxZ6iSlQpEWKGPGjMGdO3ewdevWQh3n22+/RWxsrPz27NkzNSUkIiKi0sDcUBeBwxpgcGNXqaPIfe96HzrvXkgdg4pai8nAp5sAPSOpk5Qaah+D8sHYsWNx4MABnDp1CuXKlZNvd3BwQEpKCmJiYhR6USIiIuDg4KDyWPr6+tDX1y+qqERERFQK6GhrYXaP6qhob4JZf91DWoa00/r2TeHYk1JNWx/otgyo1U/qJKWO2ntQhBAYO3Ys9uzZg2PHjsHd3V3h/nr16kFXVxdHjx6Vb3v48CHCwsLQpEkTdcchIiKiMmZIEzcEDmsIc0NdyTKMdgmFQdQ9yc5PRczUERh6gMVJEVF7D8qYMWOwZcsW7Nu3D6ampvJxJebm5jA0NIS5uTmGDx+OSZMmwcrKCmZmZhg3bhyaNGnCGbyIiIhILZpXtME/X7XAhK3Xcfnp22I//+faB4r9nFRMKnYAeqwCjDVrzFNpovYelFWrViE2NhatW7eGo6Oj/LZt2zb5Pr/++iu6dOmC3r17o2XLlnBwcMDu3bvVHYWIiIjKMGcLQ2z9vAnGt6uI4lx4vovtG1iGny2+E1Lx0NIFOswBBm5ncVLE1N6DIkTu13saGBhgxYoVWLFihbpPT0RERCSnrSXDpPaV0LSCNSZuu4FXsUlFfs5p5v8B74r8NFScLN2BPr8DznWlTlImFPk6KERERERSa+xhjX+/aoEOXvZFep7aZvFweXkw9x2p5KjeGxh1isVJMWKBQkRERGWChZEe1g6pj9k9qsNIT7tIzjHb4RRkGWlFcmwqZoaWQM81mT0nBmZSpylTWKAQERFRmTK4sSv+m9gSbavYqfW4jgYpqB6+V63HJIlU6QJ8eRGo1V/qJGUSCxQiIiIqc8pZGuH3oQ2wfGAd2JqqZ621eS6XIUuJV8uxSCIm9kDfQKD/H4Bp0V4OSNljgUJERERlVpeaTjgyqRUGNCwPWSFm+jLWzkDL6J3qC0bFTAbU9wPGXgaq9ZQ6TJnHAoWIiIjKNHNDXfj3qoHto5rA086kQMeY7noH2gkRak5GxcK5HjD8P6DLr4CBudRpCCxQiIiIiAAADdys8O9XLTCzqxesjfXy3E4mE+jxnuu5lTgW5YHe64ERRwGXhlKnoSzUvg4KERERUUmlq62Foc3c0ae+C9aeDMZvZ0KQmJKeY5uvXEKgH/momBJSoembAy0mAY1HAzrqGX9E6sUChais2ZLPi6wH5r74KhFRaWOir4NJHSpjcBM3LDn6CFsvPUNahurfh36yv4o5HRWIlk7mOJNW3wDG1gU+jJubG0JDQ5W2f/nll1yEXE1YoBARERFlw9ZUH3N61MDw5h74+dAD/HM7XOH+3vYRMIu4KFE6yhNtPaBmP6D5RMC6QqEPd/nyZaSn/1+v2p07d9C+fXv07du30MemTCxQiIiIiHLhbmOMlYPq4f6rOKw+GYwDt14hPUNgsskhIFbqdKSSrhFQ1xdoOg4wd1bbYW1tbRW+nj9/PipUqIBWrVqp7RxlHQsUIiIiojyq6miGJf3rYEqHythz/i4cb56VOhJ9TN8caDgCaPwlYGxTpKdKSUnB5s2bMWnSJMgKM081KWCBQkRERJRPLlZGGO/TAGhzC7iyHrj0GxAfnntDKjqWbkC9YUD9YcU2XfDevXsRExODoUOHFsv5ygoWKEREREQFZWQFtJwKNP0KuLcXuLYReHoGACcYKRZaOkDlzpmFSYW2KNRqmwWwfv16dO7cGU5OTsV63tKOBQoRERFRYenoATU/zby9fQpc/wO4+ScQ+0zqZKWTuUvm+JK6gwFTB0kihIaG4siRI9i9m2vgqBsLFCIiIiJ1snQD2n4HtP4WeHIcuL4ZePA3kJ4sdbKSzcAcqOwDVO8FVGgHaEm73nhAQADs7Ozg4+MjaY7SiAUKERERUVHQ0gI822XekmKBR/8BD/4Cgo4CKfFSpysZPhQl1XoCHq0ze6o0QEZGBgICAuDr6wsdHb6dVjc+o0RERERFzcAcqNk385aWDDw5ATw4ADz8F0h4LXU6zWJsB1RsD3j10KiiJKsjR44gLCwMfn5+UkcplVigEBERERUnHX2gUsfMW0YG8PwSEHwcCD0LPL8MpCVJnbB46ZkArs0yixGP1oC9l9SJctWhQwcIwYkQigoLFCIiIiKpaGkB5Rtn3gAgLQV4cRUIPQM8PQs8uwSkJkibUd30zQHHmoBb88yCxLk+oM23pPR/+GogIiIi0hQ6eoBrk8xby6lAeioQfhuIuANE3AXC7wCRd4H3b6VOmjcG5oBjLcCxNuBUO/NfK49inw6YShYWKERERESaSlsXcK6becsq9kVmwRJxB4h+AsQ+z7zFvQBSE4s3o45h5sxllm6AlTtg6Z75fxvPzGKEKJ9YoBARERGVNObOmbdKHZTvS4jKXH8l9jnw7hWQFAMkvwOS4///v+8yZxFLjsscsC/T+v83WZb/a2f+q2uY2QtiYAYYWGQuTGlkAxjbAMa2gEV5wMSePSKkVixQiIiIiEoTY+vMm1NtqZMQFYi0K9wQERERERFlwQKFiIiIiIg0BgsUIiIiIiLSGCxQiIiIiIhIY7BAISIiIiIijcEChYiIiIiINAYLFCIiIiIi0hgsUIiIiIiISGOwQCEiIiIiIo3BAoWIiIiIiDQGCxQiIiIiItIYLFCIiIiIiEhjsEAhIiIiIiKNwQKFiIiIiIg0BgsUIiIiIiLSGCxQiIiIiIhIY7BAISIiIiIijcEChYiIiIiINAYLFCIiIiIi0hgsUIiIiIiISGOwQCEiIiIiIo2hI3UA0nBbZHnfd6AouhxEREREVCawB4WIiIiIiDQGCxQiIiIiItIYLFCIiIiIiEhjsEAhIiIiIiKNIWmBsmLFCri5ucHAwACNGjXCpUuXpIxDREREREQSk6xA2bZtGyZNmoQZM2bg2rVrqFWrFjp27IjIyEipIhERERERkcQkK1AWLVqEkSNHYtiwYfDy8sLq1athZGSE33//XapIREREREQkMUnWQUlJScHVq1fx7bffyrdpaWnB29sb58+fV9o/OTkZycnJ8q9jY2MBAHFxcQUPkZjP/bOeq6BtpThncbZl3qJtW9LyZm1b0vLmt21JzpvvU2a2FYLrHhERUdGQCQn+yrx8+RLOzs44d+4cmjRpIt8+bdo0nDx5EhcvXlTYf+bMmfjxxx+LOyYREWXj2bNnKFeunNQxiIioFCoRK8l/++23mDRpkvzrjIwMREdHw9raGjJZPlY6z0VcXBxcXFzw7NkzmJmZFUtbKc5ZlvIWpi3zMq/U55Qqb06EEHj37h2cnJzUdkwiIqKsJClQbGxsoK2tjYiICIXtERERcHBwUNpfX18f+vr6CtssLCyKLJ+ZmVmB/6AXtK0U5yxM25KWtzBtmbdo2zJv0bYtzDmzY25urtbjERERZSXJIHk9PT3Uq1cPR48elW/LyMjA0aNHFS75IiIiIiKiskWyS7wmTZoEX19f1K9fHw0bNsTixYuRkJCAYcOGSRWJiIiIiIgkJlmB0q9fP7x+/RrTp09HeHg4ateujYMHD8Le3l6qSNDX18eMGTOULicryrZSnLMwbUta3sK0Zd6ibcu8Rdu2MOckIiKSkiSzeBEREREREaki2UKNREREREREH2OBQkREREREGoMFChERERERaQwWKEREREREpDFKxErymujx48c4fvw4IiMjkZGRoXDf9OnTJUpVNBISEmBsbFys54yJicHOnTsRHByMqVOnwsrKCteuXYO9vT2cnZ2LNQv9H19fXwwfPhwtW7YsUPvLly9n+3OzaNEidUQkIiKiEo4FSgGsW7cOo0ePho2NDRwcHCCTyeT3yWSyUleg2Nvb49NPP4Wfnx+aN29e5Oe7desWvL29YW5ujqdPn2LkyJGwsrLC7t27ERYWho0bN6r1fHFxcfKVtuPi4nLcV90rcpc0sbGx8Pb2hqurK4YNGwZfX988F4zz5s3D999/j8qVK8Pe3l7p56Yobdy4Ef369VOacjclJQVbt27FkCFDcmx/7949hIWFISUlRWF7t27dcmyXlpaGEydOIDg4GAMHDoSpqSlevnwJMzMzmJiYFOzBEBERlXKcZrgAXF1d8eWXX+Lrr78u9LGuXr2K+/fvAwC8vLxQt27dPLULCgpCcHAwWrZsCUNDQwgh8vQmLyMjA0FBQSo/wc7uU/G9e/ciMDAQ//zzD9zc3ODn54chQ4bAyckpT1n9/f1hb28PPz8/he2///47Xr9+rfQ8ent7o27duvjpp59gamqKmzdvwsPDA+fOncPAgQPx9OnTPJ03r7S1tfHq1SvY2dlBS0tL5fP44flNT0/P9XgFfTP79u1brF+/Xv56qFq1Kvz8/GBlZZWPR5N/KSkpKl8P5cuXV7n/69evsWnTJmzYsAH37t2Dt7c3hg8fju7du0NXVzfb89jb22PBggUYOnRoofIW5PnN+j3OKioqCnZ2dtl+X588eYKePXvi9u3bkMlk+PDr8sNrJKfXQ2hoKDp16oSwsDAkJyfj0aNH8PDwwFdffYXk5GSsXr1aYf/ciuOsciqUnz9/jv3796t8jthLRUREJYIo48LDw8Vnn30mHB0dhba2ttDS0lK4qWJqaiqCg4MLdd6IiAjRpk0bIZPJhKWlpbC0tBQymUy0bdtWREZGZtvuzZs3ol27dkImkwktLS15jmHDholJkybleM7z588Ld3d3oaWlJWQymcItu8eaVWRkpFi4cKGoUaOG0NHRET4+PmLXrl0iNTU1x3aurq7i7NmzStsvXLgg3NzclLabmZmJoKAgIYQQJiYm8sf49OlToa+vn2vOD3bs2CH69u0rGjVqJOrUqaNwy+rEiRPyx3DixIkcbzkJDg4WNWvWlD+fWZ/b3J7fkydPCnNzc+Hi4iJ69uwpevbsKcqXLy/MzMzEyZMn1fZYs3r06JFo3ry50ms+r68HIYS4evWqGDt2rDAwMBA2NjZiwoQJ4tGjRyr3dXBwyPa+vCjM8yuTyVT+XN24cUNYWlpm265Lly6ie/fu4vXr18LExETcu3dPnD59WjRs2FCcOnUqx3N2795dfPbZZyI5OVnhdXz8+HHh6empMuPH34v8fm+OHDkijIyMRPXq1YWOjo6oXbu2sLCwEObm5qJNmzY55iUiItIUZb5A6dSpk/Dy8hIrV64Ue/bsEXv37lW4qeLn5ydWrVpVqPN++umnon79+uLevXvybXfv3hX169cX/fv3z7bd4MGDRceOHcWzZ88U3vQcPHhQeHl55XjOWrVqib59+4p79+6Jt2/fipiYGIVbfixdulTo6+sLmUwmbG1txQ8//CASEhJU7quvry+ePHmitD04OFhlwWFrayuuXbsmhFAsUP777z9Rrly5POVbsmSJMDExEWPHjhV6enpi1KhRwtvbW5ibm4v//e9/eX2Y+VKYN7PVq1cXI0eOFGlpafJtaWlp4vPPPxfVq1fPsW1BH2vTpk1Fy5YtxT///COuX78ubty4oXDLzcuXL8X8+fNF5cqVhbGxsRgyZIho166d0NHREYsWLVLaf8GCBeKrr77K9bjZKcjzW7t2bVGnTh2hpaUlatSooVC41axZU5iamoq+fftme05ra2tx8+ZNIURm4fzgwQMhhBBHjx4VtWvXzjGvlZWVfP+sr+OQkBBhaGiotH9uxXFeCuUGDRqI6dOnK5zz3bt3olu3bmLlypU55iUiItIUZb5AMTExEdevX89Xm3nz5gkbGxvh6+srfvnlF7FkyRKFW16YmZmJS5cuKW2/ePGiMDc3z7advb29/M1j1jc9wcHBwtjYOMdzGhkZicePH+cpnyrh4eFiwYIFomrVqsLIyEgMGjRIHDt2TGzcuFFUq1ZNtG/fXmU7T09PsWnTJqXtGzduFO7u7krbhw8fLnr06CFSUlKEiYmJePLkiQgNDRV16tTJ8xvcypUriy1btgghFJ+nH374QYwZMybHtm/fvhWHDh0SmzZtEhs2bFC45aQwb2YNDAzk+2f14MEDYWBgkGPbgj5WIyMjcf/+/RyP/bGUlBSxc+dO4ePjI3R1dUW9evXEqlWrRGxsrHyf3bt3CwsLC6W26enpolOnTsLDw0N06dJF3lP04Zabgjy/M2fOFDNnzhQymUxMmTJF/vXMmTPFvHnzxJYtW0RycnK257SwsJAX1x4eHuLYsWNCCCGCgoJUFhkft717964QQvH7cvr0aWFnZ5fr4y0IExMTee+jhYWFuHPnjhAis6fI1dW1SM5JRESkbmV+kLyLi4v8uvK8Wrt2LUxMTHDy5EmcPHlS4T6ZTIbx48fneoyMjAyV1+vr6uoqjQXIKiEhAUZGRkrbo6OjlQYAf6xRo0YICgqCp6dnrvmy2r17NwICAnDo0CF4eXnhyy+/xGeffQYLCwv5Pk2bNkXVqlVVth85ciQmTJiA1NRUtG3bFgBw9OhRTJs2DZMnT1baf+HChejTpw/s7Ozw/v17tGrVCuHh4WjSpAnmzp2bp8xhYWFo2rQpAMDQ0BDv3r0DAAwePBiNGzfG8uXLVbb766+/MGjQIMTHx8PMzExpIHdOg6nT09NhamoKALCxscHLly9RuXJluLq64uHDhznmrVu3Lu7fv4/KlSsrbL9//z5q1apVJI/Vy8sLb968yfHYH3N0dERGRgYGDBiAS5cuoXbt2kr7tGnTRuG18cH48eNx/PhxtGnTBtbW1vkeGF+Q53fGjBkAADc3N/Tr1w8GBgb5Omf16tVx8+ZNuLu7o1GjRvjpp5+gp6eHtWvXwsPDI8e2HTp0wOLFi7F27VoAma+f+Ph4zJgxA5988kmu5z59+jTWrFmDJ0+eYMeOHXB2dsamTZvg7u6e7WQVxsbG8nEnjo6OCA4ORrVq1QAg399rIiIiyUhdIUnt0KFDokOHDiIkJKRYz9utWzfRsmVL8eLFC/m258+fi1atWokePXpk265z587i+++/F0IIee9Cenq66Nu3r+jdu3eO59y9e7fw8vISAQEB4sqVK+LmzZsKt+yYmZmJzz//XGWPzweJiYli5syZKu/LyMgQ06ZNEwYGBvJr6Y2MjMSPP/6YY97Tp0+LFStWiAULFojDhw/nuO/H3N3d5ZeJ1atXT6xevVoIkfn9zmnMQcWKFcVXX32V7eVqOWnevLnYs2ePEEKIAQMGiE6dOokzZ86IIUOGiGrVqintn/W537p1qyhfvrz4+eefxenTp8Xp06fFzz//LNzc3MTWrVuL5LEePXpUNGnSRBw/fly8efNGxMbGKtxU2bhxo3j//n1eng4lJiYm4sCBAwVqK0T+n191OHjwoNi1a5cQQojHjx+LypUrC5lMJmxsbMTRo0dzbPvs2TPh5eUlqlatKnR0dETjxo2FtbW1qFy5soiIiMix7c6dO4WhoaEYMWKE0NfXl/e+LFu2THTu3Dnbdt27dxdr164VQggxefJk4enpKebMmSPq1q0r2rVrl5+HTkREJJkyX6BYWFgIPT09oaWlJUxMTOQD1j/cikpYWJioXbu20NXVFR4eHsLDw0Po6uqKOnXqiGfPnmXb7vbt28LOzk506tRJ6OnpiT59+oiqVasKe3t7+aUd2fl4YHzWwcY5DbzNqXj58IYxL969eycuXbokbt++LZKSkvLcriCGDx8uL5iWL18uDA0Nhbe3t7CwsBB+fn7ZtjMyMirwBAj5fTP78WDv7G65DQAv6GP9eJB5QQbJ50f58uXzfUlZVoUpFtLS0sTPP/8sGjRoIOzt7Qv1cx4VFSUyMjLytG9qaqrYtGmTmDp1qhg9erRYt26dSExMzLVd7dq15ZcUZr087Nq1a8Le3j7bdsHBwfKf1/j4eDFq1ChRo0YN0atXL/H06dM8ZSYiIpJamZ9meMOGDTne7+vrq7QtPT0dgYGBOHr0qMrpWY8dO5ancwshcOTIETx48ABA5rSy3t7eubaLjY3F8uXLcfPmTcTHx6Nu3boYM2YMHB0dc2wXGhqa4/2urq4qtzs7O+PMmTNwd3dX2L5r1y4MGTIECQkJuWbOzdKlS/H555/DwMAAS5cuzXHfvF5Cl5GRAR2dzKsYt27dinPnzqFixYoYNWoU9PT0VLbr1asX+vfvj08//TT/D0KF6OhoWFpaqrycKbfvR1bZfW+Agj/Wjy9P/FirVq2UtiUkJGD+/PnZvvafPHmS7fECAgJw8OBBBAQEqLxMsSByen6zmj59On777TdMnjwZ33//Pb777js8ffoUe/fuxfTp0/P0msqvwixwamRkhHv37sHNzU1hqu0nT57Ay8sLSUlJak5LRESkOcp8gVIQY8eORWBgIHx8fODo6Kj05ujXX3/NsX1qaioMDQ1x48YNVK9evSijqsWMGTOwefNmnD17Fg4ODgCAbdu2wc/PD4GBgejbt69Sm169eiEwMBBmZmbo1atXjsffvXs33N3dceXKFVhbWysVQlnJZLIc3wQX1vr16zFr1iwMGzYMNWrUUBonlNNaG7GxsUhPT1datyQ6Oho6OjqlYpHHAQMG4OTJkxg8eLDK1/5XX32Vbds6deogODgYQgi4ubkpPbfXrl0rkswAUKFCBSxduhQ+Pj4wNTXFjRs35NsuXLiALVu2yPfN7fWa1e7du7O9z8TEpMALnHp4eGDt2rXw9vZWKFA2btyI+fPn4969ezm2z+/aNkRERJqkzA+SzyopKUlpYTNVbyq3bt2K7du352mgqyq6urooX758nhb9AzJXVq9evTq0tLRw69atHPetWbNmrsfL70J3P/74I6Kjo+Ht7Y1Tp07h4MGDGDFiBDZt2oTevXurbGNubi5/82pubp5rppCQEJX/z4/cnpussnueRo4cCQCYNWuW0n25LdTYv39/dO3aFV9++aXC9u3bt2P//v34559/cs1V0EUeY2JicOnSJZVvSnNbJT0xMVHlOVU9R//++y/+/vtvNGvWLMdjqtKjR498t8mqML034eHhqFGjBoDMwiE2NhYA0KVLF/zwww8K++bl9ZoXmzdvRmBgINq2bZvvBU5HjhyJr776Cr///jtkMhlevnyJ8+fPY8qUKUp5s3r06BGGDx+Oc+fOKWwX+VholIiISGplvgclISEBX3/9NbZv346oqCil+1X9QXdycsKJEydQqVKlAp93/fr12L17NzZt2pTrSuFaWloIDw9XWOlc1bcttzcghVkVGwAGDRqEy5cv48WLF9iyZQu6d++e28OEEALPnj2Dra0tDA0Nc92/MLI+N7ld8lMUb9SsrKxw9uxZpdnMHjx4gGbNmql8fX1QmO9NbjOPRUdHq2z3+vVrDBs2DP/++6/K+1Wd093dHf/880+2M7YVpcL03lSuXBkbN25Eo0aN0Lx5c3Tp0gXffPMNtm3bhnHjxiEyMrLIcr9+/RqbNm1CYGAg7t+/j44dO8LPzw/dunWTX5b3MSEE5s2bB39/fyQmJgIA9PX1MWXKFMyePTvbczVr1gw6Ojr45ptvVD5Huc0IR0REpAnKfIEyZswYHD9+HLNnz8bgwYOxYsUKvHjxAmvWrMH8+fMxaNAgpTYLFy7EkydPsHz58nxPlfpBnTp1EBQUhNTUVLi6uipdq571cpfQ0FCUL18eMpmswONIAKBr167Q1tbGb7/9Bnd3d1y6dAlRUVGYPHkyfvnlF7Ro0UK+7/79+5Xap6amYuLEiejQoYPCJ/o5fbqfkZEBAwMD3L17FxUrVswx+wdCCOzcuRPHjx9X+Ul5dpfVZH1url+/jilTpmDq1Klo0qQJAOD8+fNYuHAhfvrpp0J/mq+KsbExLly4IP+k/oPbt2+jUaNG8jeaquTne/OxSpUq4ZNPPsG8efPyNbZj0KBBCA0NxeLFi9G6dWvs2bMHERERmDNnDhYuXAgfHx+lNps3b8a+ffuwYcOGAo0jiYmJwc6dOxEcHIypU6fCysoK165dg729PZydnXNsa2FhUeDem2+++QZmZmb43//+h23btuGzzz6Dm5sbwsLCMHHiRMyfPz/fxyyIZcuWYerUqUhJSYGNjQ2++OILfPPNN9k+lykpKQgKCkJ8fDy8vLxgYmKS4/GNjY1x9epVVKlSpSjiExERFYsyX6CUL18eGzduROvWrWFmZoZr167B09MTmzZtwp9//qnyspyePXvi+PHjsLKyQrVq1ZSupc/puvQPfvzxxxzv/7B+gzrZ2Njg2LFjqFmzJszNzXHp0iVUrlwZx44dw+TJk3H9+nX5vlpaWnk6Zl4uG6lWrRrWr1+Pxo0b5+mYX331FdasWYM2bdrA3t5eqQgMCAjI9RgNGzbEzJkzlS7D++eff/DDDz/g6tWr2bY9evRotpcR/f7779m2a9OmDapXr45ly5YpbB8zZgxu3bqF06dPZ9s2P9+bjxkbG+P27du5rsvxMUdHR+zbtw8NGzaEmZkZrly5gkqVKmH//v346aefcObMGaU2hRlHcuvWLXh7e8Pc3BxPnz7Fw4cP4eHhge+//x5hYWHYuHFjjnnV2Xtz/vx5nD9/HhUrVkTXrl0V7qtbty6OHj0KS0tL1KlTJ8cPIfIybiYiIgIbNmxAYGAgQkND0bNnTwwfPhzPnz/HggUL4OTkhP/++6/QjwkAGjRogF9//TXfY16IiIg0SZkfgxIdHS1/Y2dmZia/HKZ58+YYPXq0yjYWFhbo2bNnoc5b0AJkw4YNsLGxkX+6PW3aNKxduxZeXl74888/c+xByc9CdzktFplf8+fPx9SpU7Fq1ao8TQqwadMm7N69u8BjfIDMXgtVg+3d3d1zHGD8448/YtasWahfv77KS2RyMmfOHHh7e+PmzZto164dgMxi5/Lly7m+AS3MIo8dO3bElStX8l2gJCQkwM7ODgBgaWmJ169fo1KlSqhRo0a2b7wL0/M0adIkDB06FD/99JP8sQLAJ598goEDB+bafvbs2Zg+fXqBe2+yatKkibxn7WPdu3eXL3pamMeb3wVO8zuxxAdxcXHy/y9YsADTpk3DvHnzVE7yUBomaiAiotKvzBcoHh4eCAkJQfny5VGlShVs374dDRs2xF9//aVyNWwgb5/gF5V58+Zh1apVADI/BV6+fDkWL16MAwcOYOLEiTn23hRmVezCGDJkCBITE1GrVi3o6ekpjUX5eIyEubl5ofNUrVoV/v7++O233+TT7KakpMDf3z/HT+BXr16NwMBADB48ON/nbNasGc6fP4+ff/4Z27dvh6GhIWrWrIn169fnenlbYb43Pj4+mDp1Ku7du5evmccqV66Mhw8fws3NDbVq1cKaNWvg5uaG1atXZztldWF69i5fvow1a9YobXd2dkZ4eHiu7RcuXIjg4GDY29sXaBawly9f4syZMyp7xrJOM5z1MRbm8Q4bNgz9+/fH2bNn0aBBA5X7ODk54bvvvgOQ/4klPrCwsFAopIUQ8gI56zYOkiciopKizF/i9euvv0JbWxvjx4/HkSNH0LVrVwghkJqaikWLFuU48Da/8rJewwfZDWw2MjLCgwcPUL58eXz99dd49eoVNm7ciLt376J169Z4/fp1tsc8dOgQEhIS0KtXLwQFBaFLly549OgRrK2tsW3bNrRt21Zlu/Hjx8PT01NprYjly5cjKCgIixcvzvGx5HetmQ0bNuDgwYP4/fffCzyw/tKlS/Lv5YfZqG7dugWZTIa//voLDRs2VNnO2toaly5dQoUKFQp03oIq6PcGyPlyvJzelG7evBlpaWkYOnQorl69ik6dOiE6Ohp6enoIDAxEv379sj1uQaaxtbOzw6FDh1CnTh2FqXMPHz4MPz8/PHv2LNu2QOEuiwwMDJSvCWNtba00kUBuU1cX5PHeunUr29ni9u7dq7ZxULmtZ5OVqrVtiIiINE2ZL1A+FhoaiqtXr8LT0zPHKXt37tyJ7du3q5yeNbtPcrO+UY+KisKcOXPQsWNHhUHchw4dwg8//ICJEyeqPEbWN3l16tTBpEmTMHjwYAQHB6NWrVqIj4/P1+PNy0J3zs7O2L9/P+rVq6f0OLt164bnz5/n65y5ef/+PXr27ImzZ88War2MhIQE/PHHHwoLYQ4cODDHxfO+/vprmJiY5DiVa3auXbsGXV1d+SD5ffv2ISAgAF5eXpg5c2a2CyZmJ6+LEKpLYmKivPi1sbFRuU9hprEdMWIEoqKisH37dlhZWeHWrVvQ1tZGjx490LJly1wL3cJwcXHBF198gW+//TbP46uAwj3e4ljglIiIqDQq05d4ZWRkIDAwELt378bTp08hk8ng7u6OPn36KM3ElNXSpUvx3XffYejQodi3bx+GDRuG4OBgXL58GWPGjMm2Xdaegt69e2PWrFkYO3asfNv48eOxfPlyHDlyJNsCpX379hgxYgTq1KmDR48eycdp3L17F25ubvl8BpDrFMdAZjGl6pITMzMzvHnzJk/nCQ4ORkBAAIKDg7FkyRLY2dnh33//Rfny5VGtWjWFfX19fXH16lV89tlnKgfJ55WxsTE+//zzfLVJSkrC2rVrceTIEdSsWVOpOFq0aFG2bUeNGoVvvvkGNWrUwJMnT9CvXz/06tULO3bsQGJiYr7fgOfle6NORkZGqFu3bo77DBs2DDo6Ojhw4EC+x+gsXLgQffr0gZ2dHd6/f49WrVohPDwcTZo0wdy5c/N0jILOApaYmIj+/fvnqzgBCvd4R4wYAW9v72wXOM1JREQEpkyZIp+s4ePPkbIrjA4ePAgTExP5IPkVK1Zg3bp18PLywooVK2BpaZnn/ERERFIpsz0oQgh07doV//zzD2rVqoUqVapACIH79+/j9u3b6NatG/bu3auybZUqVTBjxgwMGDBA4VKV6dOnIzo6GsuXL8/1/CYmJrhx4wY8PT0VtgcFBaF27drZ9oTExMTg+++/x7NnzzB69Gh06tQJQOblLXp6evLr2VUp6EJ31atXxxdffKFQTAGZU6auWrUq11WtT548ic6dO6NZs2Y4deoU7t+/Dw8PD8yfPx9XrlzBzp07FfY3NjbGoUOHCj0T0ePHj7Odqnj69Okq27Rp0ybb48lkMhw7dizb+83NzXHt2jVUqFABCxYswLFjx3Do0CGcPXsW/fv3V7qEKT+Dok1MTFCtWjV88cUXKovFhIQEnDx5UmWPXtZL8yZNmoTZs2fD2NgYkyZNyvGcqooxdUxje+bMGdy6dQvx8fGoW7cuvL2989SuMLOATZs2DVZWVvjmm2/ylbWwj3fcuHE4fvx4nhc4/aBz584ICwvD2LFjVRZG2a1BVKNGDSxYsACffPIJbt++jfr162Py5Mk4fvw4qlSpIun4OSIiorwqsz0ogYGBOHXqFI4ePar0pvTYsWPo0aMHNm7cqHIV7rCwMDRt2hQAYGhoiHfv3gEABg8ejMaNG+epQLG2tsa+ffswefJkhe379u2DtbV1tu0sLCxUHj+36/OBzE90c1roLjuTJk3C2LFj8fr1a/lYiKNHj2LhwoV56hX45ptvMGfOHEyaNElh9qa2bduqfCwuLi6Fnm1o3bp1GD16NGxsbODg4KA05iC7AuX48eMFPqcQQl4IHTlyBF26dAGQ+XhU9TTlZ1B0cnIyVq9ejbNnzyqtUXP9+nV88sknSExMREJCAqysrPDmzRsYGRnBzs5OoUC5fv06UlNT5f/PzofX9Me8vLzy3GuWnebNm6N+/frQ19fPV49EYWYB8/f3R5cuXXDw4EGVEwlk1zNW2Me7bNkyDBo0CI0bN8aLFy/w559/5mmB0zNnzuD06dOoXbt2vs4XEhICLy8vAJmXknXt2hXz5s3DtWvXCjUrHhERUbESZVT79u2Fv79/tvfPnTtXdOjQQeV97u7u4tq1a0IIIerVqydWr14thBDi0KFDwtLSMk/nDwgIENra2qJLly5i9uzZYvbs2aJLly5CR0dHBAQE5Nj27du34pdffhHDhw8Xw4cPF4sWLRIxMTG5ntPc3FycOXMmT/k+tnLlSuHs7CxkMpmQyWTC3d1dbNiwIU9tjY2NxZMnT4QQQpiYmIjg4GAhhBAhISFCX19faf8DBw6Ijh07ipCQkAJlFUKI8uXLi/nz5xe4fUG0adNGDBkyRGzcuFHo6uqKx48fCyGEOHHihHB1dS308e/evSuMjIyUtrdq1UqMHDlSpKeny5/fsLAw0bJlS7Fr1y6l/RctWpTjeeLi4kTTpk1V3nf06FHRpEkTcfz4cfHmzRsRGxurcMtJenq6mDVrlnBychLa2try18H3338vfvvttxzbCiGEmZmZCAoKEkIovo6ePn2q8nWU1ezZs4VMJhNVqlQRrVq1Eq1bt5bf2rRpk227/D7effv2Kd127twpXFxcxPDhwxW256Rq1ary3zH5YWlpKe7evSuEEKJZs2ZizZo1QojMnzVDQ8N8H4+IiEgKZbZAsbe3F9evX8/2/mvXrgl7e3uV9w0fPlzMnDlTCCHE8uXLhaGhofD29hYWFhbCz88vzxkuXLggBg4cKOrUqSPq1KkjBg4cKC5cuJBjm8uXLwsrKyvh7OwsevbsKXr27CnKlSsnrK2txdWrV3Ns6+bmJu7du5fnfKpERkaKd+/e5auNs7OzOHv2rBBC8Y3l7t27hYeHh9L+FhYWQk9PT2hpaQkTExNhaWmpcMsLU1NT+Xny6/Lly2Lq1KmiX79+8uf4wy0nN2/eFNWrVxdmZmby14cQQowdO1YMGDCgQFmySktLEzdu3FDabm5uLh48eCD//4fv8YULF0TlypWV9jcwMMi2uIyPjxfNmjVT2U4IIS9QtbS0FG4ftuXkxx9/FB4eHmLz5s3C0NBQ/v3ZunWraNy4cY5thRDC1tZW/qY96+vov//+E+XKlcuxrYWFRa6Fvyr5fbwf9s/tlttzdejQIdGhQ4d8F+ldu3YVHTt2FLNmzRK6urri+fPn8uNVrFgxX8ciIiKSSpkdg6Knp4fQ0NBs13t4+fIl3N3dkZycrHRfRkYGMjIyoKOTeYXc1q1bce7cOVSsWFE+lWlRadGiBTw9PbFu3Tr5+dPS0jBixAg8efIEp06dyrbt5s2bsW/fPrUsdJcfU6ZMwcWLF7Fjxw5UqlQJ165dQ0REBIYMGYIhQ4YoTQ+b32mJVRk+fDgaNGiAL774Il9Zt27diiFDhqBjx47477//0KFDBzx69AgRERHo2bNnga7hT0pKgra2ttJlRR+7cuVKtjPD5bS+ja2trfz1V6lSJSxbtgwdO3bEgwcPUK9ePaXZonbu3InBgwdj27ZtCmukxMfHo1OnToiMjMSJEyfg5OSkdK7cprTNaRpbT09PrFmzBu3atVMYu/XgwQM0adIEb9++zfHYhZkFzMHBAadPn851PZqP5fR4b9++rTQuS10sLS2RmJiItLQ0GBkZKb12spuGPCwsDF9++SWePXuG8ePHY/jw4QCAiRMnIj09HUuXLi2SvEREROpUZgsUbW1thIeHw9bWVuX9ERERcHJyKtKFzT7MbPXkyRMsXrw4x5mtPjA0NMT169eVBu3eu3cP9evXR2JiosL2OnXqKFznHxQUBCFErtP31q1bF0ePHoWlpaXSMT6W27S/KSkpGDNmDAIDA5Geng4dHR2kp6dj4MCBCAwMhLa2do7tC8Lf3x+LFi2Cj4+PyjEHH6/p8kHNmjUxatQojBkzRv4m2t3dHaNGjYKjo2OuY30KOstUYQqjDh06YOjQoRg4cCBGjhyJW7duYfz48di0aRPevn2LixcvKrX57bff8NVXX+Hvv/9G69atkZCQgE6dOiE8PBwnT55UWZwUlqGhIR48eABXV1eFAuXevXto2LBhrlNkx8bGok+fPrhy5QrevXsHJycn+Sxg//zzT47TR/v7++PVq1eFfoP+7t07/Pnnn/jtt99w9epVlb8fzp8/j6ioKPkYJADYuHEjZsyYgYSEBPTo0QPLli2Tr1avijqKdCIiopKqzA6SF0Jg6NCh2b5JUNVzklVMTAzWr1+P+/fvAwCqVasGPz+/PK8A/fHMVnPmzIGdnR1u3ryJ9evXK81s9YGZmRnCwsKUCpRnz54pDBz+oKCLwXXv3h0vX76EpaVloReU09PTw7p16/DDDz/gzp07iI+PR506dXL9NDsyMlLlDFw5rU/zwdq1a2FiYoKTJ08qfQouk8myLVCCg4Ph4+Mjz52QkACZTIaJEyeibdu2ORYot27dQrt27WBhYYGnT59i5MiRsLKywu7du3OdZWrevHn49ddf5YXRkiVLFAqjnMybN08+qH3u3LkYMmQIRo8ejYoVK+L3339X2WbEiBGIjo5G9+7dsW/fPkyfPh0vX77MU3Fy+vRprFmzBk+ePMGOHTvg7OyMTZs2wd3dPceZ17y8vHD69Gm4uroqbN+5cyfq1KmT4zmBzIkEDh8+XKBZwC5duoRjx47hwIEDqFatmlLBmlMPFQCcOnUK69evx65du+Dk5IRevXphxYoVKvf98ccf0aZNG3mBcvv2bQwfPhxDhw5F1apV8fPPP8PJyQkzZ87M9nz5KUDi4uLkk0rExcXluG9hJ58gIiIqDmW2QMnLGwBVM3gBmZfidOzYEYaGhvIVyRctWoS5c+fiv//+y3UtCSD/M1t90K9fPwwfPhy//PKLfCaxs2fPYsqUKejfv7/S/jmtrp2TGTNmQEtLCw0aNMDw4cPlUyoXRvny5XNcefuDq1evwtfXF/fv31da/yG3xfE+CAkJKVBGS0tL+Zt9Z2dn3LlzBzVq1EBMTIxS79THJk2ahGHDhhVolqnCFEb169eX/9/Ozg4HDx7M9XECmVPvRkdHo127dnBzc8OJEydQrly5HNvs2rULgwcPxqBBg3Dt2jV5IR8bG4t58+bhn3/+ybbt9OnT4evrixcvXiAjIwO7d+/Gw4cPsXHjRhw4cCBPmYHMWcDyOwW1hYVFrlM5fyw8PByBgYFYv3494uLi8OmnnyI5ORl79+6Vz5Slys2bNzFnzhz511u3bkWjRo2wbt06AJmzus2YMSPHAiWrpKQkpUv+shYalpaWePXqFezs7GBhYaGyt1PkYWFJIiIiTVFmC5TCrAcwceJEdOvWTeU4kAkTJuQ4DuSD27dvY8uWLUrb7ezscpzW9JdffoFMJsOQIUOQlpYGIQT09PTw5Zdf5rrYnYeHBy5fvqw0jXFMTAzq1q2rtA7KyZMnERAQgClTpmDSpEno06cPhg8fjhYtWuT6+HJbYyOrj6d49fPzQ6VKlbB+/fpCLdT4wYciJy/HadmyJQ4fPowaNWqgb9+++Oqrr3Ds2DEcPnwY7dq1y7Ht5cuXsWbNGqXtzs7OCA8Pz7FtYQqjGTNmwM/PT6lnIjsfv1HX1dWFjY0NvvrqK4XtqnoV5syZg9WrV2PIkCHYunWrfHuzZs0U3pSr0r17d/z111+YNWsWjI2NMX36dNStWxd//fUX2rdvr7JNfi7Jyq5XDMj/z3vXrl1x6tQp+Pj4YPHixejUqRO0tbWxevXqXNu+ffsW9vb28q8/9JZ+0KBBA6U1cT6WkJCAr7/+Gtu3b0dUVJTS/VkLjWPHjskX9cxpmuzbt2/nmp2IiEgTlNkCpTCuXLmiUJwAgI6ODqZNm6bwaXZOLCws8OrVK7i7uytsv379eo5jFfT09LBkyRL4+/sjODgYAFChQgWsWrUK7u7uOb4Rfvr0qcpPUJOTk/H8+XOl7S1atECLFi2wbNkybN++HYGBgWjVqhU8PT0xfPhw+Pr6ylfI/tjHa2xcu3YNaWlpqFy5MgDg0aNH0NbWRr169ZTaPnnyBLt27VJaxDK/Nm7ciJ9//hmPHz8GAFSqVAlTp07F4MGDs22zfPlyJCUlAQC+++476Orq4ty5c+jduze+//77HM+nr6+v8hKbR48eZTvW6YOcCqMPa89kZ9++fZg7dy5atWqF4cOHo3fv3jmOb/j4MsQBAwbkePysHj58iJYtW6o8ZkxMTI5tnz9/jhYtWuDw4cNK9124cAGNGzdW2v7rr7/mKVdOl+0BwPv37yGEkE8OERoaij179sDLywsdOnRQ2v/ff//F+PHj5ZfK5Ye9vT1CQkLg4uKClJQUXLt2TaEH7N27d7lOmDBt2jQcP34cq1atwuDBg7FixQq8ePECa9aswfz58xX2zToxwceTFHw8ZqaoBvUTERGplUSzh5VodnZ24tChQ0rbDx48KOzs7PJ0jMmTJ4vmzZuLV69eCVNTU/H48WNx5swZ4eHhoTBF7QdJSUnim2++EfXq1RNNmzYVe/bsEUII8fvvvwsnJyfh4uKS7bofH9ZdkMlkYuPGjQprMezevVuMGTNGVKpUKU+5Hz9+LP73v/8JFxcXoaurK7p27Zprm4ULF4quXbuK6Oho+bbo6GjRvXt38csvvyjt3717d7Fz58485cnpnEZGRmLatGnyxzp16lRhZGSU6zogBTV8+HDRo0cPkZKSIkxMTMSTJ09EaGioqFOnjvjqq69ybBsVFSVevHghhMhcL8Tf31907dpVTJo0Sbx8+TLXc1+7dk2MGzdO2NjYCAsLC/HFF1+IS5cuqeNhKXB3dxeHDx8WQihO9bthwwZRtWrVHNtWrVpVREVFKW0/c+aMMDc3V3vWrNq3by9WrVolhMhcR8jOzk6UK1dOGBgYiJUrVyrtf/78eTFixAhhamoqGjZsKJYtWyZev34tdHR05OuMZOeLL74QTZo0EadOnRKTJk0S1tbWIjk5WX7/5s2bRf369XM8houLizh+/LgQQsh/PwghxMaNG0Xnzp1zfbwnT54UQ4YMEcbGxqJixYri66+/LpLXAxERUVFggVIA48aNE+XKlRNbt24VYWFhIiwsTPz555+iXLlyub4R/SA5OVmMHDlS6OrqCplMJnR1dYWWlpb47LPPRFpamtL+06ZNE+bm5qJ3797C0dFR6OjoiJEjR4oaNWqIP//8U2WbD7KuvfDxegx6enqiUqVK4q+//srz44+Pjxdr1qwRVlZWua7nIIQQTk5O4s6dO0rbb9++LRwdHZW2v379WnzyySdi5syZYufOnUoL3+WFm5ubyrU+AgMDhZubW7bt2rVrJwICAnJddFCVmJgY+Xo42tra8iKuZcuWIj4+Pt/He//+vfjll1+yXY9HlZSUFLFr1y7RpUsXoaurK2rUqCEWL16cp4U882LevHnCy8tLXLhwQZiamorTp0+LzZs3C1tbW7F06dIc2w4bNkzUq1dPxMXFybedPHlSmJmZ5atoTE5OFg8ePBCpqal5bmNtbS1/Da5bt07UrFlTpKeni+3bt4sqVapk2y4+Pl6sX79eNGvWTP4zunjxYoXH8LHXr1+LFi1aCJlMJkxNTcXu3bsV7m/btq343//+l2NeY2NjERoaKoTIXEfo4sWLQgghnjx5IoyNjVW2efXqlfD39xeenp7Czs5OjB07Nk8FFRERkaZhgVIAycnJYvz48fLFBGUymdDX1xcTJkwQSUlJObZNT08X8+fPF02bNhX169cXfn5+4u+//xbbtm0Tjx49yradu7u7/M357du3hUwmE8OGDRMZGRl5zu3m5iZev36d5/0/dvLkSeHr6ytMTEyEmZmZGDFihDh//nyu7UxMTOSfBmd17NgxYWJiorR9//79wtzcvEAL3H2gr68v/9Q5q0ePHuW46vj48eOFg4ODMDQ0FH369BF79+4VKSkpeTrnB2fOnBErVqwQCxYskPc2ZCdrz1iTJk3y1TOmSnJysti6davo0KGD0NHRES1bthSenp7C1NRUbN26NV+PQ5WMjAwxZ84cYWxsLP+eGBgYiO+//z7Xtunp6aJnz56iVatWIikpSf79X7x4cZ7OnZCQIPz8/IS2trbCSvRjx44V/v7+ObY1NDSUv+Hv27evvJcyLCwszyusP3jwQEydOlU4ODgIAwODXHsPY2JiVH5wEBUVpdCjokqNGjXEiRMnhBCZRfPkyZOFEEIsWbJEODs7K+3fpUsXYWZmJgYMGCAOHDggPy8LFCIiKolYoBRCQkKCuHXrlrh165ZISEjIU5tZs2YJLS0t0aFDB9G9e3dhYGAghg0blmu7rKtCC5G5GvitW7fydM7OnTsrfILu7+8v3r59K//6zZs32V6e8+LFCzF37lxRsWJFIZPJRLNmzcTvv/+erx6BwYMHCzc3N7Fr1y7x7Nkz8ezZM7Fz507h7u4uhgwZorS/q6urGDNmjAgPD8/zOT5WrVo1MXfuXKXts2fPFtWrV8+xbXp6ujh06JDw9fUVZmZmwtLSUowcOVL+hlGdCtMzltWVK1fEmDFjhJWVlXB0dBRff/21QoG2dOnSPF9+mBfJycni7t274uLFi+Ldu3f5auft7S2aNm0qTExMxLJly/Lcdvz48aJevXri9OnTwtjYWF6g7N27V9SuXTvHtjVq1BBLliwRYWFhwszMTJw7d04Ikfm85aeHSggh0tLSxJ49e/J0eWNBLVq0SCxZskQIIcThw4eFgYGB0NfXl/fgfExbW1tMnDhR6UMOFihERFQSldmFGgsiL9OU6ujowMHBAe3bt0fXrl2V7q9YsSKmTJmCUaNGAQCOHDkCHx8fvH//HlpaWtke9+OFJU1NTXHr1i2lQfaqaGlpITw8HHZ2dgAypyi9ceMGPDw8AGS/KGXnzp1x5MgR2NjYYMiQIfDz85MPcs+PxMRETJkyBb///jtSU1MBZD5Pw4cPx88//6y0wJ6pqSlu3LiBChUq5PtcH+zatQv9+vWDt7c3mjVrBiBzOuajR49i+/bt6NmzZ56Ok5SUhL/++gtz587F7du3c5ymdfz48fD09FQarL18+XIEBQWpXOncw8MDixcvRrdu3XDnzh3UrFkTQ4cOxfr16/M8e1mNGjXw4MEDdOjQASNHjkTXrl2VFr988+YN7OzslNaUyauCvvZv3bqltN+7d+8wYMAA+Pj4YPTo0fLtua1v4+rqim3btqFx48YKCz0GBQWhbt26Oa4BsnPnTgwcOBDp6elo27atfKC+v78/Tp06hX///TfXxyel0NBQXL16FZ6eniqfpwsXLmD9+vXYtm0bqlatisGDB6N///5wdHTEzZs3c5wWmYiISNOwQMmHYcOG5bpPRkYGIiMjcfLkSUyZMgWzZs1SuF9fXx9BQUFwcXGRbzMwMEBQUFCOa1BoaWmhc+fO8tmZ/vrrL7Rt21bpzb2qqWE/LlCyvrkDsi9QunXrhuHDh6NLly5qWe09ISFBYeax7Fb+9vX1RYsWLTBixIhCne/q1av49ddf5YtpVq1aFZMnT87TooBA5joYW7duxebNm3Ht2jU0bNgQFy5cyHZ/Z2dn7N+/X2lmsmvXrqFbt24qZ0rT09NDSEiIfOY2Q0NDXLp0CTVq1Mjrw8Ts2bPh5+eX4+xvhVXQ176WlhZkMpnCejZZv/7w/7ys0WFkZIQ7d+7Aw8ND4TV88+ZNtGzZErGxsTm2Dw8Px6tXr1C7dm158Xfp0iWYm5sXqPAuKhkZGQgMDMTu3bvx9OlTyGQyuLu7o0+fPhg8eHCOhWtCQgK2bduG33//HZcuXUJ6ejoWLVoEPz+/Qq9jREREVFxYoBSRAwcO4Msvv0RYWJjC9o97QoC89Ybk5Q0ioHq9h4IWKOoWFBSE4OBgtGzZEoaGhvI3ph+bO3cuFi9eDB8fH9SoUUNpStacppMtrLi4OOzatQtbtmzBiRMn4OHhgUGDBmHQoEG59ugYGBjgzp07StMjBwUFoXr16vLpi7MqTM+Ypsr62g8NDc1zu9zWcWnZsiX69u2LcePGKTxP48aNw+PHj1UuUJnXxRlzW0m+uAgh0LVrV/zzzz+oVasWqlSpAiEE7t+/j9u3b6Nbt27Yu3dvno718OFDrF+/Hps2bUJMTAzat2+P/fv3F+0DICIiUgOug1JEmjdvrnJNFCEEhg4dqrBORVJSEr744guFHoWP3zAVZmFJmUymVAgUdvHD/IiKisKnn36K48ePQyaT4fHjx/Dw8MDw4cNhaWmJhQsXKuz/22+/wcTEBCdPnsTJkyeVcue1QMnIyEBQUBAiIyOVLm1StZYHkLmGhaWlJfr9v/buPybq+o8D+JM7PDkJBmGEjexwd1ILkGnT/pBUME9cmrkZK+lAt1YO0AEF169luUBvtQBBpKHFVdOxys1bASGY/QDnULoCQiQYbPFDxo0Wxw8B/f7hlxvH/eCU+xwHPh9/Hfe5z/vzvvmZu9fn/X69XnFxyM7OdrivDQDI5XKUl5db9JooKyszBYPTTb8frN0LgOX9kJaWhsOHD8Pb23vGppjTG2EKbeq972jzSEdkZWUhNjYWTU1NGB8fR25uLpqamlBTU2Nxn0ya3vPF3X3xxRf4+eefUVVVhU2bNpkdq66uxs6dO6HVaqFSqWYcKzQ0FBqNBtnZ2dDpdDh16pRQ0yYiInIqrqC42GxWQu7VTNvDRkdHUV5eLtgKikqlwo0bN1BcXIwnnnjCtHpTUVGBtLQ0NDY2Ov2aly5dwssvv4yOjg5Mv8XtbSea7BhvLx/IllOnTiE5ORlvvvmmqbliVVUVPvnkE+Tk5ODVV1+1OOde74dNmzbh7Nmz8PPzs/ghO5WHhweqq6vv4lsIr6mpCZ2dnbh586bZ+zt27Jjx3L///htHjhyBXq/H4OAgVq9ejczMzLvaEufOtmzZgujoaKjVaqvHs7KycPHiRVRUVLh4ZkRERK7DAOU+MBdB0VRBQUGoqKjAqlWrzLaXtbW1ISIiAoODg06/ZmRkJFauXIkPPvgAy5Yts1gxmunJel9fH65duwbgzpPomTrBTyosLMRHH32Erq4uAIBMJsOhQ4cceuK90LW1teGFF17An3/+aZGHAsBm0Ggv+X0qX19f50x0DgUFBaG8vByRkZFWj9fX1yM2NhY9PT2unRgREZELMUAhwfn4+ODq1atQKBRmAUpdXR2USiX6+/udvmXJ29sber3eIh9kJkNDQ0hOToZWqzVtCxOLxVCpVDh27BiWLFni0Dh9fX2QSqV44IEH7ur6C9lkdbHi4mKEhITg8uXL6O/vR3p6Oj7++GNERUVZPW8y0d4WR5Ps5wOJRIKOjg4sW7bM6vGuri6EhIRgdHTUxTMjIiJyHeagkOCioqKg1Wpx+PBhAHeemN+6dQsajca0Pam+vt5Ugri+vn7W11y3bh1aW1vvOkBJTU3FxYsXodPpTOWJf/31Vxw4cADp6ekoLCx0aBxHV1ycpa6uDqWlpVa3TrlLAnhtbS2qq6uxdOlSiEQiiEQirF+/HtnZ2Thw4IDNf/cLFy6YXt++fRvbtm1DcXGxoFXL5srExAQ8PW3/tywWizE+Pu7CGREREbkeAxQSnEajQUxMDOrq6nDz5k1kZGSgsbERBoMBv/32GwDzH6FTX9+NqT03UlJSkJ6ejp6eHquVwGz13Pj222/xzTffYOPGjab3tm3bBqlUihdffNFugNLb24s33ngDVVVVuHHjhkXui1BP+M+cOQOVSgWlUokff/wRW7ZsQUtLC3p7ex3u9+IKExMTplK3S5cuRVdXF0JDQ/HYY4+ZttNZs2HDBrO/xWIxnn76aZuFB+Yza0U0puLKCRER3Q8YoJDgwsLC0NLSgvz8fPj4+GBwcBC7du1CUlKS2VaW2TbCnOxvMTUw2Ldvn8UY9rYDDQ0N4eGHH7Z4PzAwEENDQ3bnlpiYiM7OTrz33ntW816EkpWVhU8//RRJSUnw8fFBbm4uQkJC8Nprr9ncKjQXwsLCoNfrERISgnXr1kGj0UAikeCzzz5bkMHGvUhISJjxM8xnIiKihY45KCSosbExbN26FSdOnIBCobD72dk2wnS054bRaLTZWTsmJgYBAQHQarXw8vICAAwPDyMhIQEGgwHnz5+3Oa6Pjw9++eUXmwnOQvH29kZjYyNkMhkCAgLw008/ITw8HH/99Reio6PR3d3t0vnYUlFRAaPRiF27duH69evYvn07WlpaEBAQgDNnziAmJsahcab38SEiIqKFhSsoJKhFixaZbb2y526qiE02A5waoMzUc2N0dBQFBQXQaDQ2qyDl5uZCqVQiODgYq1atAgDo9Xp4eXnNWNr10UcftdjW5Qr+/v7477//ANzpZt/Q0IDw8HAMDAzMuOrjSkql0vRaoVCgubkZBoMB/v7+d73a5Mo+PkRERORaDFBIcPHx8Th58iSOHDnitDFtNcIcHR3FoUOHUFlZCYlEgoyMDOzcuROff/453nnnHYjFYqSmptocNywsDNevX8fXX3+N5uZmAMBLL72EPXv2QCqV2p1TTk4O1Go1ioqKIJPJZvX97sYzzzyDyspKhIeHY/fu3Th48CCqq6tNPV3m2my37k0/39FmlkRERDQ/cYsXCS4lJQVarRYKhQJr1qyx+GHpzE7nmZmZKCoqwubNm1FTU4O+vj7s3bsXly5dwttvv43du3dDLBY77XpT+fv7Y2hoCOPj41iyZIlFYr7BYBDkugaDASMjI3jkkUdM1dFqamqgUCjw7rvvwt/fX5DrOmq2W/fmuo8PERERuRYDFBJMW1sbZDKZ3af4zu50vmLFCuTk5GDHjh1oaGhAREQEEhMTcfLkSZvbgs6dO4fY2FgsWrQI586dszu+vW7nJSUlds91JAH6fje5da+zs3Oup0JERERzhAEKCUYsFqO7uxuBgYEAgLi4OOTl5VmtkuUsEokE7e3tph4ZUqkUly9fRnh4uM1zRCIRenp6EBgYCJFIZPNz7tYMcKYGhsCdOc+nvhkDAwPYt28ft2sRERHdx5iDQoKZHvuWlZXBaDQKes2JiQlIJBLT356enjN2c5/sGD/99WyMjIxYNEz09fV1ytiTzp49a/NYbW0t8vLynPZ9XMXPz4/BCRER0X2OAQq5jCsW66Y3unM0oXp4eBhVVVV47rnnAABvvfWWWVM8T09PfPjhh6bSw9YYjUZkZmaitLQU/f39Fsedvfry/PPPW7x37do1qNVq6HQ67NmzxyyXg4iIiGg+YIBCgvHw8LDYgiR0edjpeR7x8fEOnVdSUoLvv//eFKDk5+fjySefNFXuam5uRlBQENLS0myOkZGRgQsXLqCwsBCvvPIKCgoK8M8//6CoqMipFcys6erqwvvvv4+SkhIolUr8/vvvCAsLE/SaREREREJgDgoJRiQSITY21rSaodPpEB0d7ZblYaOiopCRkWEqcTu9GeBXX32FgoIC1NbW2hxj+fLl0Gq12LhxI3x9fXH16lXI5XJ8+eWXOH36NH744Qenz/vff/9FVlYWjh07hsjISBw9ehRRUVFOvw4RERGRq3AFhQRzr6sZc6G1tdUskd7Ly8ssYX7t2rVISkqyO4bBYDAFNL6+vqaywuvXr8f+/fudPmeNRoOjR48iKCgIp0+ftrrli4iIiGi+YYBCgplPfSkGBgbMck76+vrMjt+6dcvsuDUrVqxAe3s7li9fjscffxylpaVYu3YtdDod/Pz8nD5ntVoNqVQKuVyOkpISm2WO3WGFioiIiMhRDFCIAAQHB6OhoQGhoaFWj//xxx8IDg62O8bevXuh1+uxYcMGqNVqbN++Hfn5+RgbG3NqM8pJKpVK8JweIiIiIldjDgoRgIMHD+L8+fO4cuWKRaWu4eFhPPXUU9i8eTNyc3MdHrOjowNXrlyBXC5HRESEs6dMREREtCAxQCEC0Nvbi8jISEgkEiQnJ2PlypUA7pTtzc/Px/j4OOrr6202mRwbG8PWrVtx4sQJKBQKV06diIiIaEFhgEL0f+3t7di/fz8qKytNPVs8PDzw7LPP4vjx46YEeFseeugh1NTUMEAhIiIimgUGKETTGAwGtLa2AgDkcjkefPBBh85LTU3F4sWLBe95QkRERLSQMUAhcpKUlBRotVooFAqsWbPGot+LEInyRERERAsNq3gRzVJbWxtkMhkaGhqwevVqAEBLS4vZZ1hti4iIiMgxXEEhmiWxWIzu7m4EBgYCAOLi4pCXl2czoZ6IiIiIbBPN/BEismd6jF9WVgaj0ThHsyEiIiKa3xigEDkZFyWJiIiI7h0DFKJZ8vDwsMgxYc4JERER0b1hkjzRLN2+fRuJiYlYvHgxAGBkZASvv/66RRWv7777bi6mR0RERDSvMEAhmqWEhASzv+Pj4+doJkRERETzH6t4ERERERGR22AOChERERERuQ0GKERERERE5DYYoBARERERkdtggEJERERERG6DAQoREREREbkNBihEREREROQ2GKAQEREREZHbYIBCRERERERu43+ZTgHKsJ1YzwAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create a figure for 2 subplots (1 row, 2 columns)\n", + "fig, ax = plt.subplots(1, 2, figsize = (10,4))\n", + "\n", + "# Create a bar plot of name vs grade on the first axis\n", + "ax[0].bar(x=df_students.Name, height=df_students.Grade, color='orange')\n", + "ax[0].set_title('Grades')\n", + "ax[0].set_xticklabels(df_students.Name, rotation=90)\n", + "\n", + "# Create a pie chart of pass counts on the second axis\n", + "pass_counts = df_students['Pass'].value_counts()\n", + "ax[1].pie(pass_counts, labels=pass_counts)\n", + "ax[1].set_title('Passing Grades')\n", + "ax[1].legend(pass_counts.keys().tolist())\n", + "\n", + "# Add a title to the Figure\n", + "fig.suptitle('Student Data')\n", + "\n", + "# Show the figure\n", + "fig.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Until now, you've used methods of the `Matplotlib.pyplot` object to plot charts. However, Matplotlib is so foundational to graphics in Python that many packages, including Pandas, provide methods that abstract the underlying Matplotlib functions and simplify plotting. For example, the DataFrame provides its own methods for plotting data as shown in the following example, which plots a bar chart of study hours." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAgAAAAGqCAYAAAB9F/zvAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABdfElEQVR4nO3dd1gU1/s28HvpvSrNBgTsKNbEaOwRiWKLJpaIiprErtjztTfURIMtdkU00Ri7xmis2CsW7IKNRFEjCgECKpz3D1/2xwIqMzsbJHN/rmuvy52dfea4u8w+e+ac52iEEAJERESkKkaF3QAiIiL69zEBICIiUiEmAERERCrEBICIiEiFmAAQERGpEBMAIiIiFWICQEREpEImhd2A3LKysnD//n3Y2tpCo9EUdnOIiIiKDCEE/v77b3h4eMDI6M2/8d+5BOD+/fsoVapUYTeDiIioyIqPj0fJkiXfuM87lwDY2toCeNV4Ozu7Qm4NERFR0ZGcnIxSpUppv0vf5J1LALK7/e3s7JgAEBERyVCQS+gcBEhERKRCTACIiIhUiAkAERGRCr1zYwCIiOjtMjMz8eLFi8JuBhUCU1NTGBsb6x2HCQARUREihEBCQgKePXtW2E2hQuTg4AA3Nze96uUwASAiKkKyv/xdXFxgZWXFgmkqI4RAWloaHj16BABwd3eXHYsJABFREZGZman98nd2di7s5lAhsbS0BAA8evQILi4usi8HcBAgEVERkX3N38rKqpBbQoUt+zOgzzgQyQnAoUOHEBQUBA8PD2g0GmzZsiXPPlevXkWrVq1gb28Pa2tr1KpVC/fu3ZPdSCIi+j/s9iclPgOSE4DU1FRUrVoVCxYsyPfxuLg41KtXD+XLl8fBgwdx8eJFjB07FhYWFno3loiIiJQheQxAYGAgAgMDX/v4//73P3zyySeYOXOmdtt7770nr3VEREQSNWzYEP7+/ggPDy/sprzTFB0EmJWVhV9//RUjRoxAQEAAzp07By8vL4wePRpt2rTJ9zkZGRnIyMjQ3k9OTlaySURE/3maiRP/1eOJ8eMlP+fx48cYN24cfv31Vzx8+BCOjo6oWrUqxo0bh7p160Kj0WDz5s2v/a4wpAkTJmDLli04f/68zvY7d+7Ay8sL586dg7+//7/eLkNTNAF49OgRUlJSMH36dEyZMgUzZszArl270K5dOxw4cAANGjTI85ywsDBM/Jc/vEWRlD9wOX+cRESG9Omnn+L58+dYtWoVvL298fDhQ+zbtw9Pnjwp7KYVuhcvXsDU1PRfP66iswCysrIAAK1bt8aQIUPg7++PUaNGoWXLlli0aFG+zxk9ejSSkpK0t/j4eCWbREREhezZs2c4fPgwZsyYgUaNGqFMmTKoXbs2Ro8ejVatWsHT0xMA0LZtW2g0Gu397t275+kRGDx4MBo2bKi9n5qaiuDgYNjY2MDd3R2zZs3S2X/SpEmoXLlynjb5+/tj7Nixkv8vUVFRqF27NszNzeHu7o5Ro0bh5cuX2sc9PT3zXHrw9/fHhAkTtPc1Gg0WLlyIVq1awdraGlOnTsXTp0/RpUsXFC9eHJaWlvD19cXKlSslt08KRROAYsWKwcTEBBUrVtTZXqFChdfOAjA3N9cu/cslgImI/ntsbGxgY2ODLVu26FzyzXb69GkAwMqVK/HgwQPt/YIYPnw4oqKisHXrVvz+++84ePAgoqOjtY+HhITg6tWrOjHPnTuHixcvokePHpL+H3/++Sc++eQT1KpVCxcuXMDChQuxfPlyTJkyRVIc4NVlh7Zt2yImJgYhISEYO3Ysrly5gt9++w1Xr17FwoULUaxYMclxpVD0EoCZmRlq1aqF69ev62y/ceMGypQpo+ShiIioiDAxMUFERAR69+6NRYsWoXr16mjQoAE6duyIKlWqoHjx4gD+r7xtQaWkpGD58uVYs2YNmjRpAgBYtWoVSpYsqd2nZMmSCAgIwMqVK1GrVi0ArxKNBg0awNvbW7tfTEwMbGxsdOILIXTu//DDDyhVqhTmz58PjUaD8uXL4/79+xg5ciTGjRsHI6OC/6bu3LmzTgJy7949VKtWDTVr1gQAbS+IIUnuAUhJScH58+e1gyVu376N8+fPa3/hDx8+HD///DOWLl2K2NhYzJ8/H9u3b0ffvn0VbTgRERUdn376Ke7fv49t27ahefPmOHjwIKpXr46IiAjZMePi4vD8+XO8//772m1OTk4oV66czn69e/fG2rVrkZ6ejufPn+Onn35CSEiIzj7lypXTfrdl33bu3Kmzz9WrV1GnTh2dOfh169ZFSkoK/vjjD0ltz/6iz9anTx+sW7cO/v7+GDFiBI4dOyYpnhySE4AzZ86gWrVqqFatGgAgNDQU1apVw7hx4wC8uoazaNEizJw5E35+fli2bBk2btyIevXqKdtyIiIqUiwsLPDxxx9j7NixOHbsGLp3747xbxi0bGRklOdXuJzKd0FBQTA3N8fmzZuxfft2vHjxAu3bt9fZx8zMDD4+Pjo3OT3XBW2ztbW1zv3AwEDcvXsXQ4YMwf3799GkSRMMGzZM8vEltVXqExo2bAghRJ5bziwuJCQEN2/exD///IPz58+jdevWSraZiIj+AypWrIjU1FQAr5a4zczM1Hm8ePHiePDggc62nFP13nvvPZiamuLkyZPabU+fPsWNGzd0nmNiYoJu3bph5cqVWLlyJTp27Kitpy9FhQoVcPz4cZ0v+KNHj8LW1lZ72SF3m5OTk3H79u0CxS9evDi6deuGNWvWIDw8HEuWLJHcRim4FgARERnUkydP0LhxY6xZswYXL17E7du38csvv2DmzJnaH4ienp7Yt28fEhIS8PTpUwBA48aNcebMGURGRuLmzZsYP348Ll26pI1rY2ODnj17Yvjw4di/fz8uXbqE7t2753stvlevXti/fz927dqVp/u/oPr27Yv4+HgMGDAA165dw9atWzF+/HiEhoZqj9m4cWOsXr0ahw8fRkxMDLp161agxXrGjRuHrVu3IjY2FpcvX8aOHTtQoUIFWe0sKK4GSEREBmVjY4P3338f33//PeLi4vDixQuUKlUKvXv3xjfffAMAmDVrFkJDQ7F06VKUKFECd+7cQUBAAMaOHYsRI0YgPT0dISEhCA4ORkxMjDb2t99+i5SUFAQFBcHW1hZDhw5FUlJSnjb4+vriww8/RGJios6YASlKlCiBnTt3Yvjw4ahatSqcnJzQs2dPjBkzRrvP6NGjcfv2bbRs2RL29vaYPHlygXoAzMzMMHr0aNy5cweWlpb46KOPsG7dOlntLCiNyH2xopAlJyfD3t4eSUlJnBKYAwsBkZL4eVJeQV9TfV7P9PR03L59G15eXlxfRSIhBHx9fdG3b1+EhoYWdnP09rrPgpTvUPYAEBHRf9rjx4+xbt06JCQkSJ77/1/GBICIiP7TXFxcUKxYMSxZsgSOjo6F3Zx3BhMAIiL6T3vHrnS/MzgLgIiISIWYABARFTH8RUtKfAaYABARFRHZS8ampaUVckuosGV/BvRZRphjAIiIighjY2M4ODjg0aNHAAArKyuduvT03yeEQFpaGh49egQHB4cCFRl6HSYARERFSPZqedlJAKmT1JUT88MEgIioCNFoNHB3d4eLi4ushXGo6DM1NdXrl382JgBEREWQsbGxIl8CpF4cBEhERKRCTACIiIhUiAkAERGRCjEBICIiUiEmAERERCrEBICIiEiFmAAQERGpEOsAEL3jNBMnFnhfMX68AVtCRP8l7AEgIiJSISYAREREKsQEgIiISIWYABAREakQEwAiIiIVkpwAHDp0CEFBQfDw8IBGo8GWLVteu+/XX38NjUaD8PBwPZpIRERESpOcAKSmpqJq1apYsGDBG/fbvHkzTpw4AQ8PD9mNIyIiIsOQXAcgMDAQgYGBb9znzz//xIABA7B79260aNHijftmZGQgIyNDez85OVlqk4iIiEgixccAZGVloWvXrhg+fDgqVar01v3DwsJgb2+vvZUqVUrpJhEREVEuiicAM2bMgImJCQYOHFig/UePHo2kpCTtLT4+XukmERERUS6KlgI+e/Ys5syZg+joaGg0mgI9x9zcHObm5ko2g4iIiN5C0R6Aw4cP49GjRyhdujRMTExgYmKCu3fvYujQofD09FTyUERERKQHRXsAunbtiqZNm+psCwgIQNeuXdGjRw8lD0VERER6kJwApKSkIDY2Vnv/9u3bOH/+PJycnFC6dGk4Ozvr7G9qago3NzeUK1dO/9YS0TuLqxYSFS2SE4AzZ86gUaNG2vuhoaEAgG7duiEiIkKxhhEREZHhSE4AGjZsCCFEgfe/c+eO1EMQERGRgXEtACIiIhViAkBERKRCTACIiIhUiAkAERGRCjEBICIiUiEmAERERCrEBICIiEiFmAAQERGpEBMAIiIiFWICQEREpEJMAIiIiFSICQAREZEKMQEgIiJSISYAREREKsQEgIiISIWYABAREakQEwAiIiIVYgJARESkQkwAiIiIVIgJABERkQqZFHYDiIiIiirNxIkF3leMH2/AlkjHHgAiIiIVYgJARESkQkwAiIiIVIgJABERkQoxASAiIlIhyQnAoUOHEBQUBA8PD2g0GmzZskX72IsXLzBy5Ej4+fnB2toaHh4eCA4Oxv3795VsMxEREelJcgKQmpqKqlWrYsGCBXkeS0tLQ3R0NMaOHYvo6Ghs2rQJ169fR6tWrRRpLBERESlDch2AwMBABAYG5vuYvb099uzZo7Nt/vz5qF27Nu7du4fSpUvneU5GRgYyMjK095OTk6U2iYiIiCQyeCGgpKQkaDQaODg45Pt4WFgYJkoopEBERCRHUSraU9C26tNOgw4CTE9Px8iRI9GpUyfY2dnlu8/o0aORlJSkvcXHxxuySURERAQD9gC8ePECn332GYQQWLhw4Wv3Mzc3h7m5uaGaQURERPkwSAKQ/eV/9+5d7N+//7W//omIiKhwKJ4AZH/537x5EwcOHICzs7PShyAiIiI9SU4AUlJSEBsbq71/+/ZtnD9/Hk5OTnB3d0f79u0RHR2NHTt2IDMzEwkJCQAAJycnmJmZKddyIiIikk1yAnDmzBk0atRIez80NBQA0K1bN0yYMAHbtm0DAPj7++s878CBA2jYsKH8lhIREZFiJCcADRs2hBDitY+/6TEiIiJ6N3AtACIiIhUyeCGgd92/UWyB9Mf3iYhIWewBICIiUiEmAERERCrEBICIiEiFmAAQERGpEBMAIiIiFWICQEREpEJMAIiIiFSICQAREZEKMQEgIiJSISYAREREKsQEgIiISIWYABAREakQEwAiIiIVYgJARESkQkwAiIiIVIgJABERkQoxASAiIlIhJgBEREQqxASAiIhIhZgAEBERqRATACIiIhViAkBERKRCTACIiIhUSHICcOjQIQQFBcHDwwMajQZbtmzReVwIgXHjxsHd3R2WlpZo2rQpbt68qVR7iYiISAGSE4DU1FRUrVoVCxYsyPfxmTNnYu7cuVi0aBFOnjwJa2trBAQEID09Xe/GEhERkTJMpD4hMDAQgYGB+T4mhEB4eDjGjBmD1q1bAwAiIyPh6uqKLVu2oGPHjvq1loiIiBSh6BiA27dvIyEhAU2bNtVus7e3x/vvv4/jx4/n+5yMjAwkJyfr3IiIiMiwJPcAvElCQgIAwNXVVWe7q6ur9rHcwsLCMHHixALF1xRwPzF+fIH2IyKid1NBz/cAz/lyFfosgNGjRyMpKUl7i4+PL+wmERER/ecpmgC4ubkBAB4+fKiz/eHDh9rHcjM3N4ednZ3OjYiIiAxL0QTAy8sLbm5u2Ldvn3ZbcnIyTp48iTp16ih5KCIiItKD5DEAKSkpiI2N1d6/ffs2zp8/DycnJ5QuXRqDBw/GlClT4OvrCy8vL4wdOxYeHh5o06aNku0mIiIiPUhOAM6cOYNGjRpp74eGhgIAunXrhoiICIwYMQKpqan48ssv8ezZM9SrVw+7du2ChYWFcq0mIiIivUhOABo2bAghxGsf12g0mDRpEiZNmqRXw4iIiMhwCn0WABEREf37mAAQERGpEBMAIiIiFWICQEREpEJMAIiIiFSICQAREZEKMQEgIiJSIUVXA6SihattERGpF3sAiIiIVIgJABERkQoxASAiIlIhjgEwAF5bLxoK+j7xPSo8/FtSHl9TysYeACIiIhViAkBERKRCTACIiIhUiAkAERGRCjEBICIiUiEmAERERCrEBICIiEiFmAAQERGpEAsBESmIxYWIqKhgDwAREZEKMQEgIiJSISYAREREKsQEgIiISIWYABAREamQ4glAZmYmxo4dCy8vL1haWuK9997D5MmTIYRQ+lBEREQkk+LTAGfMmIGFCxdi1apVqFSpEs6cOYMePXrA3t4eAwcOVPpwREREJIPiCcCxY8fQunVrtGjRAgDg6emJtWvX4tSpU/nun5GRgYyMDO395ORkpZtEREREuSieAHz44YdYsmQJbty4gbJly+LChQs4cuQIZs+ene/+YWFhmFjA4ilEREooKgWbiko7qWhSPAEYNWoUkpOTUb58eRgbGyMzMxNTp05Fly5d8t1/9OjRCA0N1d5PTk5GqVKllG4WERER5aB4ArB+/Xr8+OOP+Omnn1CpUiWcP38egwcPhoeHB7p165Znf3Nzc5ibmyvdDCIiInoDxROA4cOHY9SoUejYsSMAwM/PD3fv3kVYWFi+CQARERH9+xSfBpiWlgYjI92wxsbGyMrKUvpQREREJJPiPQBBQUGYOnUqSpcujUqVKuHcuXOYPXs2QkJClD4UERERyaR4AjBv3jyMHTsWffv2xaNHj+Dh4YGvvvoK48aNU/pQREREJJPiCYCtrS3Cw8MRHh6udGgiIiJSCNcCICIiUiEmAERERCrEBICIiEiFmAAQERGpEBMAIiIiFWICQEREpEJMAIiIiFSICQAREZEKMQEgIiJSISYAREREKsQEgIiISIWYABAREakQEwAiIiIVYgJARESkQkwAiIiIVIgJABERkQoxASAiIlIhJgBEREQqxASAiIhIhZgAEBERqRATACIiIhViAkBERKRCTACIiIhUiAkAERGRCjEBICIiUiEmAERERCpkkATgzz//xBdffAFnZ2dYWlrCz88PZ86cMcShiIiISAYTpQM+ffoUdevWRaNGjfDbb7+hePHiuHnzJhwdHZU+FBEREcmkeAIwY8YMlCpVCitXrtRu8/Lyeu3+GRkZyMjI0N5PTk5WuklERESUi+IJwLZt2xAQEIAOHTogKioKJUqUQN++fdG7d+989w8LC8PEiROVbgYREf1LNBLO4WL8eAO2hKRQfAzArVu3sHDhQvj6+mL37t3o06cPBg4ciFWrVuW7/+jRo5GUlKS9xcfHK90kIiIiykXxHoCsrCzUrFkT06ZNAwBUq1YNly5dwqJFi9CtW7c8+5ubm8Pc3FzpZhAREdEbKN4D4O7ujooVK+psq1ChAu7du6f0oYiIiEgmxROAunXr4vr16zrbbty4gTJlyih9KCIiIpJJ8QRgyJAhOHHiBKZNm4bY2Fj89NNPWLJkCfr166f0oYiIiEgmxROAWrVqYfPmzVi7di0qV66MyZMnIzw8HF26dFH6UERERCST4oMAAaBly5Zo2bKlIUITERGRArgWABERkQoxASAiIlIhJgBEREQqxASAiIhIhZgAEBERqRATACIiIhViAkBERKRCTACIiIhUiAkAERGRCjEBICIiUiEmAERERCrEBICIiEiFmAAQERGpEBMAIiIiFWICQEREpEJMAIiIiFSICQAREZEKMQEgIiJSISYAREREKsQEgIiISIWYABAREakQEwAiIiIVYgJARESkQkwAiIiIVIgJABERkQoZPAGYPn06NBoNBg8ebOhDERERUQEZNAE4ffo0Fi9ejCpVqhjyMERERCSRwRKAlJQUdOnSBUuXLoWjo6OhDkNEREQyGCwB6NevH1q0aIGmTZu+cb+MjAwkJyfr3IiIiMiwTAwRdN26dYiOjsbp06ffum9YWBgmTpxoiGYQERHRayjeAxAfH49Bgwbhxx9/hIWFxVv3Hz16NJKSkrS3+Ph4pZtEREREuSjeA3D27Fk8evQI1atX127LzMzEoUOHMH/+fGRkZMDY2Fj7mLm5OczNzZVuBhEREb2B4glAkyZNEBMTo7OtR48eKF++PEaOHKnz5U9ERESFQ/EEwNbWFpUrV9bZZm1tDWdn5zzbiYiIqHCwEiAREZEKGWQWQG4HDx78Nw5DREREBcQeACIiIhViAkBERKRCTACIiIhUiAkAERGRCjEBICIiUiEmAERERCrEBICIiEiFmAAQERGpEBMAIiIiFWICQEREpEJMAIiIiFSICQAREZEKMQEgIiJSISYAREREKsQEgIiISIWYABAREakQEwAiIiIVYgJARESkQkwAiIiIVIgJABERkQoxASAiIlIhJgBEREQqxASAiIhIhZgAEBERqRATACIiIhViAkBERKRCiicAYWFhqFWrFmxtbeHi4oI2bdrg+vXrSh+GiIiI9KB4AhAVFYV+/frhxIkT2LNnD168eIFmzZohNTVV6UMRERGRTCZKB9y1a5fO/YiICLi4uODs2bOoX79+nv0zMjKQkZGhvZ+cnKx0k4iIiCgXg48BSEpKAgA4OTnl+3hYWBjs7e21t1KlShm6SURERKpn0AQgKysLgwcPRt26dVG5cuV89xk9ejSSkpK0t/j4eEM2iYiIiGCASwA59evXD5cuXcKRI0deu4+5uTnMzc0N2QwiIiLKxWAJQP/+/bFjxw4cOnQIJUuWNNRhiIiISAbFEwAhBAYMGIDNmzfj4MGD8PLyUvoQREREpCfFE4B+/frhp59+wtatW2Fra4uEhAQAgL29PSwtLZU+HBEREcmg+CDAhQsXIikpCQ0bNoS7u7v29vPPPyt9KCIiIpLJIJcAiIiI6N3GtQCIiIhUiAkAERGRCjEBICIiUiEmAERERCrEBICIiEiFmAAQERGpEBMAIiIiFWICQEREpEJMAIiIiFSICQAREZEKMQEgIiJSIcXXAiB100ycWOB9xfjxBmwJERG9CXsAiIiIVIgJABERkQoxASAiIlIhJgBEREQqxASAiIhIhZgAEBERqRATACIiIhViAkBERKRCTACIiIhUiAkAERGRCjEBICIiUiEmAERERCrEBICIiEiFmAAQERGpkMESgAULFsDT0xMWFhZ4//33cerUKUMdioiIiCQySALw888/IzQ0FOPHj0d0dDSqVq2KgIAAPHr0yBCHIyIiIolMDBF09uzZ6N27N3r06AEAWLRoEX799VesWLECo0aN0tk3IyMDGRkZ2vtJSUkAgOTk5LyB09MLdPx8n/s6hRhTUlw1x5QQV80xJcVVc0wJcdUcU1JcxlQ2poS4uWNm3xdCvP3JQmEZGRnC2NhYbN68WWd7cHCwaNWqVZ79x48fLwDwxhtvvPHGG28K3eLj49/6fa14D8Bff/2FzMxMuLq66mx3dXXFtWvX8uw/evRohIaGau9nZWUhMTERzs7O0Gg0bzxWcnIySpUqhfj4eNjZ2SnSfjXHNFRcxlRnTEPFZUzG5Gf09TGFEPj777/h4eHx1pgGuQQghbm5OczNzXW2OTg4SIphZ2en6AdC7TENFZcx1RnTUHEZkzHf9biFFdPe3r5AsRQfBFisWDEYGxvj4cOHOtsfPnwINzc3pQ9HREREMiieAJiZmaFGjRrYt2+fdltWVhb27duHOnXqKH04IiIiksEglwBCQ0PRrVs31KxZE7Vr10Z4eDhSU1O1swKUYm5ujvHjx+e5hMCY71ZcxlRnTEPFZUzGVFJRaashYmqEKMhcAenmz5+Pb7/9FgkJCfD398fcuXPx/vvvG+JQREREJJHBEgAiIiJ6d3EtACIiIhViAkBERKRCTACIiIhUiAkAERGRChV6JcDCdvPmTRw4cACPHj1CVlaWzmPjxo0rpFYVbampqbC2ti7sZrzVs2fPsGHDBsTFxWH48OFwcnJCdHQ0XF1dUaJEicJuHhUh3bp1Q8+ePVG/fn1F454+ffq156fZs2creixSH1UnAEuXLkWfPn1QrFgxuLm56aw9oNFomADI5Orqis8++wwhISGoV69eYTcnXxcvXkTTpk1hb2+PO3fuoHfv3nBycsKmTZtw7949REZGFnYTkZycrC35+bZVxAxRGpUKLikpCU2bNkWZMmXQo0cPdOvWTe8kctq0aRgzZgzKlSsHV1fXPOend1FkZCQ+//zzPHPVnz9/jnXr1iE4OFhW3CtXruDevXt4/vy5zvZWrVrJbuvLly9x8OBBxMXFoXPnzrC1tcX9+/dhZ2cHGxsb2XGLElVPAyxTpgz69u2LkSNHGvQ4Z8+exdWrVwEAFStWRPXq1fWOGRsbi7i4ONSvXx+WlpYQQuh1UsjKykJsbGy+vzSk/qrZsmULIiIisHPnTnh6eiIkJATBwcEFWpziTcLCwuDq6oqQkBCd7StWrMDjx48lvY9NmzZF9erVMXPmTNja2uLChQvw9vbGsWPH0LlzZ9y5c0evtirB2NgYDx48gIuLC4yMjPJ9f7Pf98zMTL2OpfQJ9unTp1i+fLn2c1+hQgWEhITAyclJr3YawvPnz/P93JcuXVpSnMePH2P16tVYtWoVrly5gqZNm6Jnz55o3bo1TE1NJbfL1dUVM2bMQPfu3SU/Vwol3/ucn9mcnjx5AhcXF8mf01u3bqFt27aIiYmBRqPRLnGb/bcg93N/9+5dNG/eHPfu3UNGRgZu3LgBb29vDBo0CBkZGVi0aFGB4khZ3ldOkv7HH39g27Zt+b4/ivQA6bf4778vISFBfPHFF8Ld3V0YGxsLIyMjnZsUtra2Ii4uzkAtFeLhw4eiUaNGQqPRCEdHR+Ho6Cg0Go1o3LixePTokayYf/31l2jSpInQaDTCyMhI2/4ePXqI0NBQWTGPHz8uvLy8hJGRkdBoNDo3qa9pTo8ePRKzZs0Sfn5+wsTERLRo0UJs3LhRvHjxQla8MmXKiKNHj+bZfuLECeHp6Skplp2dnYiNjRVCCGFjY6N9He/cuSPMzc1ltS+3X375RXTo0EG8//77olq1ajq3gjh48KD2tTp48OAbb3LFxcWJKlWqaN/rnO+73Pc+KipK2Nvbi1KlSom2bduKtm3bitKlSws7OzsRFRUlu636vp653bhxQ9SrVy/POUTfz70QQpw9e1b0799fWFhYiGLFionBgweLGzduSIrh5uYm+TlSGOK912g0+Z7bzp8/LxwdHSXHa9mypWjdurV4/PixsLGxEVeuXBGHDx8WtWvXFocOHZLVRiGEaN26tfjiiy9ERkaGzt//gQMHhI+PT4Hj5Hy9XneT+3nau3evsLKyEpUrVxYmJibC399fODg4CHt7e9GoUSPJ8fJT5BKA5s2bi4oVK4offvhBbN68WWzZskXnJkVISIhYuHChgVoqxGeffSZq1qwprly5ot12+fJlUbNmTdGxY0dZMbt27SoCAgJEfHy8zgd3165domLFirJiVq1aVXTo0EFcuXJFPH36VDx79kznpoS5c+cKc3NzodFoRPHixcXYsWNFamqqpBjm5ubi1q1bebbHxcVJ/tIuXry4iI6OFkLoJgC///67KFmypKRY+ZkzZ46wsbER/fv3F2ZmZuKrr74STZs2Ffb29uKbb77RO75SDHGCrVy5sujdu7d4+fKldtvLly/Fl19+KSpXriwrpiFezw8//FDUr19f7Ny5U5w7d06cP39e5ybX/fv3xfTp00W5cuWEtbW1CA4OFk2aNBEmJiZi9uzZBY4zY8YMMWjQINnteBsl33t/f39RrVo1YWRkJPz8/HSSsypVqghbW1vRoUMHyW10dnYWFy5cEEK8StqvXbsmhBBi3759wt/fX3K8bE5OTtpYOf/+b9++LSwtLQsc522JuT5Jeq1atcS4ceN02vj333+LVq1aiR9++EFyvPwUuQTAxsZGnDt3TpFY06ZNE8WKFRPdunUT3333nZgzZ47OTV92dnbi1KlTebafPHlS2Nvby4rp6uqqPTnl/ODGxcUJa2trWTGtrKzEzZs3ZT33TRISEsSMGTNEhQoVhJWVlejSpYvYv3+/iIyMFJUqVRIff/yxpHg+Pj5i9erVebZHRkYKLy8vSbF69uwp2rRpI54/fy5sbGzErVu3xN27d0W1atUUOemWK1dO/PTTT0II3fdp7Nixol+/frJiPn36VOzevVusXr1arFq1SucmlyFOsBYWFto4OV27dk1YWFjIimmI19PKykpcvXpV1nNze/78udiwYYNo0aKFMDU1FTVq1BALFy4USUlJ2n02bdokHBwcChwzMzNTNG/eXHh7e4uWLVtqe1Oyb/pS8r2fMGGCmDBhgtBoNGLYsGHa+xMmTBDTpk0TP/30k8jIyJDcRgcHB23S7+3tLfbv3y+EECI2NlbSF3V+cS9fviyE0P08HT58WLi4uMiOqyQbGxttL6WDg4O4dOmSEOJVb0qZMmUUOUaRGwRYqlQp7XUgfS1ZsgQ2NjaIiopCVFSUzmMajQYDBw7UK35WVla+1/5MTU3zXG8sqNTUVFhZWeXZnpiYKHuRiPfffx+xsbHw8fGR9fzcNm3ahJUrV2L37t2oWLEi+vbtiy+++AIODg7afT788ENUqFBBUtzevXtj8ODBePHiBRo3bgwA2LdvH0aMGIGhQ4dKijVr1iy0b98eLi4u+Oeff9CgQQMkJCSgTp06mDp1qqRY+bl37x4+/PBDAIClpSX+/vtvAEDXrl3xwQcfYP78+ZLibd++HV26dEFKSgrs7OzyDAiTO7gqMzMTtra2AF4t5X3//n2UK1cOZcqUwfXr12XFrF69Oq5evYpy5crpbL969SqqVq0qK6bSryfwajzOX3/9Jas9ubm7uyMrKwudOnXCqVOn4O/vn2efRo0a6fwNvM3AgQNx4MABNGrUCM7OzooP/FPyvR8/fjwAwNPTE59//jksLCwUaWPlypVx4cIFeHl54f3338fMmTNhZmaGJUuWwNvbW3bcZs2aITw8HEuWLAHw6m8oJSUF48ePxyeffCI77uHDh7F48WLcunULv/zyC0qUKIHVq1fDy8tL8oBoa2tr7XV/d3d3xMXFoVKlSgCg2Oe2yPUA7N69WzRr1kzcvn27sJvyVq1atRL169cXf/75p3bbH3/8IRo0aCDatGkjK2ZgYKAYM2aMEEJof7lmZmaKDh06iE8//VRWzE2bNomKFSuKlStXijNnzogLFy7o3KSys7MTX375Zb69H9nS0tLEhAkTJMXNysoSI0aMEBYWFtrra1ZWVmLixImS25jt8OHDYsGCBWLGjBliz549suPk5uXlpb3EUKNGDbFo0SIhxKvPr5xrob6+vmLQoEGSL5u8Tb169cTmzZuFEEJ06tRJNG/eXBw5ckQEBweLSpUqFThOzs/LunXrROnSpcW3334rDh8+LA4fPiy+/fZb4enpKdatWyernUq/nkK8+qVbp04dceDAAfHXX3+JpKQknZsUkZGR4p9//pHVjtexsbERO3bsUDRmTkq994a0a9cusXHjRiGEEDdv3hTlypUTGo1GFCtWTOzbt0923Pj4eFGxYkVRoUIFYWJiIj744APh7OwsypUrJx4+fCgr5oYNG4SlpaXo1auXMDc31/YqzJs3TwQGBkqO17p1a7FkyRIhhBBDhw4VPj4+YsqUKaJ69eqiSZMmstqYW5FLABwcHISZmZkwMjISNjY22sF12bd3yb1794S/v78wNTUV3t7ewtvbW5iamopq1aqJ+Ph4WTFjYmKEi4uLaN68uTAzMxPt27cXFSpUEK6urtruIqlyD/zLOShIzuCVNyUN2Sccffz999/i1KlTIiYmRqSnp+sdzxB69uypTXDmz58vLC0tRdOmTYWDg4MICQmRHM/KysogA1aVOsHmHkj2upvcwWVKv57Zbc5vEJcSgwCVULp0acUuUeTHEF+uL1++FN9++62oVauWcHV1Ncj5+cmTJyIrK0vvOC9evBCrV68Ww4cPF3369BFLly4VaWlpsuP5+/trL8flvKwQHR0tXF1dJceLi4vTnktTUlLEV199Jfz8/ES7du3EnTt3ZLczpyI3DXDVqlVvfLxbt24FjpWZmYmIiAjs27cv32lA+/fvl9XGnIQQ2Lt3L65duwbg1XSopk2b6hUzKSkJ8+fPx4ULF5CSkoLq1aujX79+cHd3lxXv7t27b3y8TJkykuKVKFECR44cgZeXl872jRs3Ijg4GKmpqZLbqIS5c+fiyy+/hIWFBebOnfvGfZW4/JOVlQUTk1dX2datW4djx47B19cXX331FczMzCTFa9euHTp27IjPPvtMr3YVRGJiIhwdHSV1Ob/tM5ST1M8ToPzrCSDPZb/cGjRoUOBYqampmD59+mvPJbdu3ZLcvpUrV2LXrl1YuXJlvpf9DEHOe5/TuHHjsGzZMgwdOhRjxozB//73P9y5cwdbtmzBuHHj9P67UoohipVZWVnhypUr8PT01JlafOvWLVSsWBHp6emKHk8JRS4BUFL//v0RERGBFi1awN3dPc+H/vvvv5cd+8WLF7C0tMT58+dRuXJlfZtapIwfPx5r1qzB0aNH4ebmBgD4+eefERISgoiICHTo0KHAsdq1a4eIiAjY2dmhXbt2b9x306ZNb3zcy8sLZ86cgbOzc57kJCeNRiPrhG1Iy5cvx6RJk9CjRw/4+fnlGVsid75+UlISMjMz88zPT0xMhImJCQsMFVCnTp0QFRWFrl275nsuGTRokOSY1apVQ1xcHIQQ8PT0zPOeR0dH69VmQ3jvvfcwd+5ctGjRAra2tjh//rx224kTJ/DTTz+9Ncbb/s5zetvf/OvY2NgoXqzM29sbS5YsQdOmTXUSgMjISEyfPh1XrlyRFVepOhX5KXKDAHNKT0/PUxxByglr3bp1WL9+vV6DPl7H1NQUpUuX1rtAC/Cqal3lypVhZGSEixcvvnHfKlWqyD6OUgVBJk6ciMTERDRt2hSHDh3Crl270KtXL6xevRqffvqppFj29vbak6m9vb2k5+Z2+/btfP+tlLe9NzlJfZ969+4NAJg0aVKex/QpBNSxY0cEBQWhb9++OtvXr1+Pbdu2YefOnbLiAsoXF3r27BlOnTqV78lQ7iBIAEhLS8u3nVLeo99++w2//vor6tatK7sdubVp00axWPkxRK9FQkIC/Pz8ALz6kk1KSgIAtGzZEmPHji1QDH3/zgtizZo1iIiIQOPGjRUrVta7d28MGjQIK1asgEajwf3793H8+HEMGzaswP/3nG7cuIGePXvi2LFjOtuFQsW/soMVKSkpKaJfv36iePHi+RZdkMLd3V1cv37dQC0VYtmyZeKTTz4RT5480SuORqPRDkx507VWudctDVEQRAghOnfuLHx9fYWVlZXkGg25ZWVlibt37+p1jc7Qco+deNPtXeHo6KhTpyLb1atXhZOTk6yYhvg8bdu2Tdja2gqNRiPs7e2Fg4OD9ib32vKjR49EixYtFHmPPD09830d32UdO3YU7u7uYsSIEeL7778X4eHhOjc5ypYtK06cOCGEEKJu3boiLCxMCCHEunXrRPHixRVru1KULFaWlZUlpkyZIqytrbWfeQsLC+2gbakMVacipyKXAPTt21dUqFBBO+JyxYoVYvLkyaJkyZJizZo1kmJ99913om/fvooMKMmPv7+/sLGxEebm5qJs2bKyq5fduXNH28Y7d+688SaHEgVBtm7dmue2YcMGUapUKdGzZ0+d7XJkZmYKU1NTxSqjZWVlifXr14s+ffqITz/9VJE51jnfh82bN4v33ntPLFq0SDs6ftGiRcLX11eRgZBKsbKyEhcvXsyz/eLFi7LnWRuiuJAhZkF07txZ1K1bV5w+fVpYW1uL33//XaxevVqUK1dO8uj71atXi/bt2ys+S+Pp06di6dKlYtSoUdofEmfPnhV//PGH3rHt7e3FkSNH9I6T08iRI8XUqVOFEK++9E1MTISPj48wMzMTI0eOVPRYSlOiWJkQQmRkZIjLly+LkydPir///lt2e5SsU/E6RW4MQOnSpREZGYmGDRvCzs4O0dHR8PHxwerVq7F27VpJXZZt27bFgQMH4OTkhEqVKuW5xib3+lK2iRMnvvHx7Lmzha1YsWLYv38/qlSpAnt7e5w6dQrlypXD/v37MXToUJw7d+6tMYyMCraytD5dV5UqVcLy5cvxwQcfyHp+ToMGDcLixYvRqFGjPAutAK8GYOmjdu3amDBhQp7LSzt37sTYsWNx9uxZyTH37dv32u7aFStWyGpno0aNULlyZcybN09ne79+/XDx4kUcPnxYckwlPk+5WVtbIyYmRq+537m5u7tj69atqF27Nuzs7HDmzBmULVsW27Ztw8yZM3HkyJECxzLE9frcC1Zdv34d3t7eGDNmjCILVnl5eWHnzp2S63FIcfz4cRw/fhy+vr4ICgoq0HOqV6+Offv2wdHREdWqVXvjgER9x0E8fPgQq1atQkREBO7evYu2bduiZ8+e+OOPPzBjxgx4eHjg999/1+sYctWqVQvff/+9QRdUK3JjABITE7UnATs7OyQmJgIA6tWrhz59+kiK5eDggLZt2yrexmyG+IJftWoVihUrhhYtWgAARowYgSVLlqBixYpYu3atrBHWShQEkVvYSIrp06dj+PDhWLhwod4DK1evXo1NmzYZZPwHAMTExOQ70NDLy0vWYKCJEydi0qRJqFmzZr6DzOSaMmUKmjZtigsXLqBJkyYAXiUap0+fln3iM0RxoYCAAJw5c0bRBCA1NVW7aI2joyMeP36MsmXLws/PT/IXiyGu14eGhqJ79+7aBauyffLJJ+jcubPe8SdPnoxx48Zh1apVBptlUKdOHdSpU0fSc1q3bq0tamaocRBKFStTcpAyoLu40IwZMzBixAhMmzYt34G/SgzQLXIJgLe3N27fvo3SpUujfPnyWL9+PWrXro3t27dLqrIF6P8rrzBMmzYNCxcuBPAqu54/fz7Cw8OxY8cODBkyRFavhaGqbSktODgYaWlpqFq1KszMzGBpaanzeHYyWBD29vYG/b9VqFABYWFhWLZsmXaK2vPnzxEWFibrF9eiRYsQERGBrl27KtrOunXr4vjx4/j222+xfv16WFpaokqVKli+fDl8fX1lxTTE56lFixYYPnw4rly5otgsiHLlyuH69evw9PRE1apVsXjxYnh6emLRokWSp9QaItk/ffo0Fi9enGd7iRIlkJCQoHf8WbNmIS4uDq6urorOMrh//z6OHDmSb09VQaYB5nwtDdVL2qNHD3Ts2BFHjx5FrVq18t3Hw8MD//vf/94YR8lBysCrH6U5k3shhDYxz7lNqUGARe4SwPfffw9jY2MMHDgQe/fuRVBQEIQQePHiBWbPni1ruo2SpMyhlfKFlc3KygrXrl1D6dKlMXLkSDx48ACRkZG4fPkyGjZsiMePH0uOuXv3bqSmpqJdu3aIjY1Fy5YtcePGDTg7O+Pnn3/Wlt0tqIEDB8LHxyfPH/v8+fMRGxuL8PBwyW0ElK0BsWrVKuzatQsrVqzIk0go4dSpU9rPZvZo8osXL0Kj0WD79u2oXbu2pHjOzs44deoU3nvvPcXbqjSlP0/Amy8xyT0ZrlmzBi9fvkT37t1x9uxZNG/eHImJiTAzM0NERAQ+//xzyTGVnLLl4uKC3bt3o1q1ajrTyvbs2YOQkBDEx8dLjpmTIS5RRkREaOsy5C5frM/0WqWnwl28ePG1szy2bNli8BkYr/O22hQ5SalT8TpFLgHI7e7duzh79ix8fHxkTYHbsGED1q9fn+80IDkZcM4vqSdPnmDKlCkICAjQdoMdP34cu3fvxtixYzFkyBDJ8XOeFKpVq4bQ0FB07doVcXFxqFq1KlJSUiTHzI8+BUFKlCiBbdu2oUaNGjrbo6Oj0apVK/zxxx+KtFEf//zzD9q2bYujR48abI51amoqfvzxR50iUJ07d5ZVgGTkyJGwsbGRNZ3oTaKjo2FqaqqdurV161asXLkSFStWxIQJE2QV2MmPvgVm/g1paWna5LpYsWKSnmuIKVu9evXCkydPsH79ejg5OeHixYswNjZGmzZtUL9+fdmJtCGVKlUKX3/9NUaPHl3gcUFvYqipcO9qsbJ/W5G6BJCVlYWIiAhs2rQJd+7cgUajgZeXF9q3b689gUkxd+5c/O9//0P37t2xdetW9OjRA3FxcTh9+jT69esnq405f4V++umnmDRpEvr376/dNnDgQMyfPx979+6VlQB8/PHH6NWrF6pVq4YbN25or2FfvnwZnp6estqcn9yFYaR48uRJvt1hdnZ2ei9iERcXh5UrVyIuLg5z5syBi4sLfvvtN5QuXVq7UEZBdOvWDWfPnsUXX3yR7yBAJVhbW+PLL79UJFZ6ejqWLFmCvXv3okqVKnkSltmzZ8uK+9VXX2HUqFHw8/PDrVu38Pnnn6Ndu3b45ZdfkJaWptiXjD6fp3+LlZUVqlevLuu5PXr0gImJCXbs2KHYGA1DL1gFvKqtsGHDBsTFxWH48OFwcnJCdHQ0XF1dUaJECcnx0tLS0LFjR0W+/AHDvK7Aq+SqadOmry1WJsfDhw8xbNgw7UDd3L+tpSYru3btgo2NjXYQ4IIFC7B06VJUrFgRCxYsgKOjo6x25lRkegCEEAgKCsLOnTtRtWpVlC9fHkIIXL16FTExMWjVqhW2bNkiKWb58uUxfvx4dOrUSaeLbdy4cUhMTJS1wlhONjY2OH/+fJ5V9mJjY+Hv7y/r1/qzZ88wZswYxMfHo0+fPmjevDmAV911ZmZmb71mlR+lC4JUrlwZX3/9tU7iAwDz5s3DwoULZVfEioqKQmBgIOrWrYtDhw7h6tWr8Pb2xvTp03HmzBls2LChwLGsra2xe/dug46wvXnzJg4cOJDvazpu3DhJsRo1avTaxzQajeyy1fb29oiOjsZ7772HGTNmYP/+/di9ezeOHj2Kjh07FribWcpgKBsbG1SqVAlff/21pOumqampiIqKyre3rqAlZkNDQzF58mRYW1sjNDT0jftKSaqsra1x9uxZlC9fvsDPKagjR47g4sWL2rLf+pYSz2aIWQYjRoyAk5MTRo0apUgbDfm6DhgwAAcOHNC7WFm2wMBA3Lt3D/379883WWndurWkeH5+fpgxYwY++eQTxMTEoGbNmhg6dCgOHDiA8uXLKzKGrcj0AERERODQoUPYt29fnpPh/v370aZNG0RGRkqqCGaIJUZzcnZ2xtatW/MsVbt161Y4OzvLiung4JBvu952Pe9NevXq9cYyplKFhoaif//+ePz4sc6yvbNmzdLrF+WoUaMwZcoUhIaG6oyKbty4seT3qlSpUgYtc7t06VL06dMHxYoVg5ubW55roVITgAMHDijdRACvEuvs5GTv3r1o2bIlgFevj5TeGimDoTIyMrBo0SIcPXoU27ZtK1D8c+fO4ZNPPkFaWhpSU1Ph5OSEv/76C1ZWVnBxcSlwAnDu3Dm8ePFC++/XyT4XFJSSSwvnVq9ePdSsWRPm5uaK9lQZYpZBWFgYWrZsiV27duU7WFNqT5UhX9d58+ahS5cu+OCDD/Dnn39i7dq1kr+kczpy5AgOHz6c71LQcty+fRsVK1YE8OrSRFBQEKZNm4bo6GjlZi8ZtMqAgj7++GNtVan8TJ06VTRr1kxSTEMsMZrTypUrhbGxsWjZsqWYPHmymDx5smjZsqUwMTERK1eulB336dOn4rvvvhM9e/YUPXv2FLNnzxbPnj2THc8QBUF++OEHUaJECW1FLC8vL+1KWXJZW1uLW7duCSF0V9u6ffu2MDc3lxRrx44dIiAgwGDLSpcuXVpMnz7dILGV1KhRIxEcHCwiIyOFqampuHnzphBCiIMHD4oyZcoY7LiXL18WVlZWBd6/QYMGonfv3iIzM1P73t+7d0/Ur19fu6JdQc2ePfuNjycnJ4sPP/xQUkwllxbOlpmZKSZNmiQ8PDyEsbGx9vM+ZswYsWzZMlkxc7Kzs9OuIJrz7+nOnTuS/56yTZ48WWg0GlG+fHnRoEED0bBhQ+2tUaNGkuMp+boaulhZhQoVtN8nSnB0dBSXL18WQryqqrh48WIhxKvzndwiXbkVmQTA1dVVnDt37rWPy1ly0RBLjOZ24sQJ0blzZ231v86dO2tLZcpx+vRp4eTkJEqUKKGtWleyZEnh7Owszp49KyumIcuYPnr0SK9qWDmVKFFCHD16VAihe8LatGmT8Pb2lhTL0MtK29raKr587+nTp8Xw4cPF559/rkjlQiFeLd1cuXJlYWdnp/1bEEKI/v37i06dOinR7Hy9fPlSUjlTe3t7ce3aNe2/sz+vJ06cEOXKlZN0bAsLi9cmoykpKaJu3bqSYxpiaeGJEycKb29vsWbNGmFpaan9PK1bt0588MEHsmLmVLx4ce0XVs6/p99//12ULFlSVkwHBwe9ftzkpuTr+ralqvUtqb57927RrFkzxX5UBAUFiYCAADFp0iRhamqqrf64e/du4evrq8gxiswYADMzM9y9e/e183Pv378PLy8vZGRkFDimIZYYNbSPPvoIPj4+WLp0qbbdL1++RK9evXDr1i0cOnRIcsw1a9Zg69atBi0IooRhw4bh5MmT+OWXX1C2bFlER0fj4cOHCA4ORnBwsKRpS0pOKcxPz549UatWLXz99dd6xcm2bt06BAcHIyAgAL///juaNWuGGzdu4OHDh2jbtq3iNS3S09NhbGycpwu3oM6cOfPa2TVyalUUL15c+7dZtmxZzJs3DwEBAbh27Rpq1KghadT2hg0b0LVrV/z888869QNSUlLQvHlzPHr0CAcPHpS0MIySSwtn8/HxweLFi9GkSROdMUrXrl1DnTp18PTpU8kxczLELAM3NzccPnxYdg2J3N70usbExOQZZ1SYHB0dkZaWhpcvX8LKyirP347Uad/37t1D3759ER8fj4EDB6Jnz54AgCFDhiAzM/OtS5oXRJFJAIyNjZGQkIDixYvn+/jDhw/h4eGhzApJCsoetX7r1i2Eh4fLHrWezdLSEufOncszKObKlSuoWbMm0tLSChQnd4nN2NhYvcqY/hvlO58/f45+/fohIiICmZmZMDExQWZmJjp37oyIiAgYGxvLimsIYWFhmD17Nlq0aJHvtVCp66JXqVIFX331Ffr166f9MvDy8sJXX30Fd3d3vcaAKD0S3BDJSrNmzdC9e3d07twZvXv3xsWLFzFw4ECsXr0aT58+xcmTJyXFW7ZsGQYNGoRff/0VDRs2RGpqKpo3b46EhARERUXptSqcUiwtLXHt2jWUKVNGJwG4cuUKateurfeU36SkJLRv3x5nzpzB33//DQ8PD+0sg507d8qarhoWFoYHDx4o8uWUn7///htr167FsmXLcPbsWcnn++PHj+PJkyfasS4AEBkZifHjxyM1NRVt2rTBvHnztJUIpTD0jwpDKDKDAIUQ6N69+2vfGCm//HN69uwZli9fjqtXrwJ4VW8+JCREkapOuUetT5kyBS4uLrhw4QKWL18uadR6Njs7O9y7dy9PAhAfH68zkOdtlC500bp1a9y/fx+Ojo4GK6JhZmaGpUuXYuzYsbh06RJSUlJQrVo1vX5tPHr0KN9R+vosqwwAS5YsgY2NDaKiovL8itFoNJITgLi4OG35ZzMzM6SmpkKj0WDIkCFo3Lix7ATg4sWLaNKkCRwcHHDnzh307t0bTk5O2LRpk+yR4NOmTcP333+vTVbmzJmjk6zIMW3aNO3AvKlTpyI4OBh9+vSBr6+vrHUQevXqhcTERLRu3Rpbt27FuHHjcP/+fb2+/A8fPozFixfj1q1b+OWXX1CiRAmsXr0aXl5esmabVKxYEYcPH85T3nvDhg2oVq2arDbmZG9vjz179ig6y+DUqVPYv38/duzYoej6KocOHcLy5cuxceNGeHh4oF27dliwYIHkOBMnTkSjRo20CUBMTAx69uyJ7t27o0KFCvj222/h4eGBCRMmSI6txBd8cnKydnByzrLA+VFkELMiFxL+Bd27dy/QTQpDXE/P6YMPPhCzZs0SQuheYzt58qQoUaKErJgDBgwQJUuWFOvWrRP37t0T9+7dE2vXrhUlSpQQAwcO1LvN+tBoNKJ27dpi8eLFIjk5uVDb8jZnzpwRlSpVyndp5Xdpud5sJUqU0K7a5+fnJ3766SchhBDHjh0TdnZ2suM2adJEDB8+XAih+xk9evSo7EGAVlZW2uugTk5O2nZfuXJFuLm5yW6rIYwcOVIYGRkJb29vce/ePdlxslcn7dWrlzA3N9e+jvPmzROBgYGyYm7ZskXY29uL6dOnCysrK/Htt9+KXr16CTMzM/H777/LbqshKXl+fvDggQgLCxM+Pj7CxcVF9O/fX5iYmGgHxsnh5uYmTp8+rb3/zTffiLp162rvr1+/XlSoUEF2/Gz//POPrAGLRkZGeZZ+V3JcSW5FpgfAEHX7hwwZglatWuV7PX3w4MGyrqfnFBMTg59++inPdhcXF9lTW7777jtoNBoEBwfj5cuXEELAzMwMffv2lV0cxNvbG6dPn84zNfHZs2eoXr16gesAREVFYeXKlRg2bBhCQ0PRvn179OzZEx999JGsdgF461ztnKRMMQoJCUHZsmWxfPlygxUCyib+/1U2fY5Rv3597NmzB35+fujQoQMGDRqE/fv3Y8+ePXlqhUthiHrzjo6O2l/rJUqUwKVLl+Dn54dnz54V+BJVbuPHj0dISIisxa5yy12nwNTUFMWKFctTRlzKr9UpU6Zg0aJFCA4Oxrp167Tb69atiylTpshqZ+vWrbF9+3ZMmjQJ1tbWGDduHKpXr47t27fj448/lhVTSte81F4qQLnzdFBQEA4dOoQWLVogPDwczZs3h7GxMRYtWqRX3KdPn8LV1VV7P7uXNlutWrVkl1hOTU3FyJEjsX79ejx58iTP4wW5XLF//35t0aw3Tf2NiYmR1cY8FEkjiigLC4t811u+fPmyItMslBy1nltqaqq4ePGiuHjxokhNTRXfffed5FkQ2TQajTbrzCkhIUGYmppKjpeSkiJWrFgh6tevLzQajfD19RXTp08XDx48kBwr5zSihg0bCjs7O2FlZaWdVWFtbS3s7OwkTzGysbHRTnkzlFWrVonKlSsLc3NzYW5uLvz8/ERkZKSsWE+ePBF//vmnEOLV9LCwsDARFBQkQkNDRWJiouw2GmIkeKdOnbQ9X5MmTRLFixcXvXr1EmXKlBFt2rSRFbNq1arC2NhYNG7cWPz4448iPT1dVhwhDNObaGlpqe31yPk6xsXFyZ5SFx8f/9rHjh8/Liump6dngW5eXl6y4qelpYnU1FTt/Tt37ojvv/9e7N69W1IcY2NjMWTIEHHjxg2d7fr2AJQuXVpERUUJIYTIyMgQlpaWYu/evdrHL168KHsWUN++fUWFChW0vUErVqwQkydPFiVLlhRr1qyR3eZsycnJYvHixaJWrVqK9QCoOgFwcXHJ94O5a9cu4eLionf8oUOHinr16okHDx4IW1tbcfPmTXHkyBHh7e2tM+WqINLT08WoUaNEjRo1xIcffig2b94shBBixYoVwsPDQ5QqVUryvPPsOa8ajUZERkbqzIPdtGmT6NevnyhbtqykmLndvHlTfPPNN6JUqVLC1NRUBAUFyY41a9YsERQUpPOFl5iYKFq3bi2+++47SbFat24tNmzYILstbzNr1ixhZWUlRowYoX1Nhw8fLqysrN46D/3f1LNnT9GmTRvx/PlzYWNjI27duiXu3r0rqlWrJgYNGiQr5puSlfv378tua3R0tBgwYIAoVqyYcHBwEF9//bU4deqU7HhK8vLyEnv27BFC6CYAq1atkt2lXKFCBfHkyZM8248cOSLs7e1lt9WQPv74Y7Fw4UIhxKt6JS4uLqJkyZLCwsJC/PDDDwWOc/z4cdGrVy9ha2srateuLebNmyceP36sdwLw9ddfizp16ohDhw6J0NBQ4ezsLDIyMrSPr1mzRtSsWVNW7FKlSokDBw4IIYT2fC+EEJGRkbIvAwkhRFRUlAgODhbW1tbC19dXjBw5UrHPvaoTgNddTy9ZsqTsk19OGRkZonfv3sLU1FRoNBphamoqjIyMxBdffCFevnwpKdaIESOEvb29+PTTT4W7u7swMTERvXv3Fn5+fmLt2rWS4wmhO8c293VwMzMzUbZsWbF9+3bJcXNLSUkRixcvFk5OTnplrh4eHuLSpUt5tsfExAh3d3dJsR4/fiw++eQTMWHCBLFhw4Y8BUL05enpme9c84iICOHp6Sk5XpMmTcTKlStlF5V5nWfPnmlrXxgbG2sTtfr164uUlBTFjvPPP//o1UuV0/Pnz8XGjRtFy5YthampqfDz8xPh4eF6FcPS17Rp00TFihXFiRMnhK2trTh8+LBYs2aNKF68uJg7d66smD169BA1atTQGU8TFRUl7OzsFE0iMzIyxLVr18SLFy/0juXs7Kz9G126dKmoUqWKyMzMFOvXrxfly5eXHC8lJUUsX75c1K1bV3v+DA8Plz3G6PHjx+Kjjz4SGo1G2Nraik2bNuk83rhxY/HNN9/Iim1tbS3u3r0rhHjV+3vy5EkhhBC3bt0S1tbWkmIZYvxDflSdAGRkZIiBAwdqC8JoNBphbm4uBg8erFcXY2Zmppg+fbr48MMPRc2aNUVISIj49ddfxc8//5ynS6ugvLy8tF9MMTExQqPRiB49eoisrCzZ7czm6ekpHj9+rHec3KKiokS3bt2EjY2NsLOzE7169ZLddSnEq19W2Rl2Tvv37xc2NjaSYm3btk3Y29srWggkJ3Nz83wvMdy4cUNWl/DAgQOFm5ubsLS0FO3btxdbtmwRz58/17ud2Y4cOSIWLFggZsyYof0lK1XOXqo6deoo0kuVn4yMDLFu3TrRrFkzYWJiIurXry98fHyEra2tWLdund7x5cjKyhJTpkwR1tbW2s+RhYWFGDNmjOyYmZmZom3btqJBgwYiPT1d+zkPDw9XpM2pqakiJCREGBsb61Qa7N+//xurrr6JpaWl9kuwQ4cO2p7Oe/fu6X1Z9dq1a2L48OHCzc1NWFhY6NWb+OzZs3x/ND158kSnR0AKPz8/cfDgQSHEq4R96NChQggh5syZI2nQd8uWLYWdnZ3o1KmT2LFjh7adTAAMJPf1dH1NmjRJGBkZiWbNmonWrVsLCwsL0aNHD71i5qwEJcSr8QvZo6vlCgwM1PnVFBYWJp4+faq9/9dff0nuvvzzzz/F1KlTha+vr9BoNKJu3bpixYoVivya7Nq1q/D09BQbN24U8fHxIj4+XmzYsEF4eXmJ4OBgSbHKlCkj+vXrJxISEvRuV34qVaokpk6dmmf75MmTReXKlWXFzMzMFLt37xbdunUTdnZ2wtHRUfTu3Vt70ilshuilyunMmTOiX79+wsnJSbi7u4uRI0fqJFlz585V5NKdPjIyMsTly5fFyZMnFamAmZGRIZo2bSo+/PBDYWNjI+bNm6dAK18ZOHCgqFGjhjh8+LCwtrbWJgBbtmwR/v7+smL6+fmJOXPmiHv37gk7Oztx7NgxIcSr906J3h8hXlWR3Lx5s14JgCHMnj1bzJkzRwghxJ49e4SFhYUwNzfX9loUlKHGP+SnyBQCUtLbVisDABMTE7i5ueHjjz9GUFCQpPi+vr4YNmwYvvrqKwCvFllp0aIF/vnnH9nLZOYuhGRra4uLFy/mWc9aCiMjIyQkJMDFxQXAq3ml58+fh7e3NwDpxZUCAwOxd+9eFCtWDMHBwQgJCUG5cuVkty+3tLQ0DBs2DCtWrNAu6GJiYoKePXvi22+/lVS4xNbWFufPn8d7772nWPty2rhxIz7//HM0bdoUdevWBQAcPXoU+/btw/r169G2bVu94qenp2P79u2YOnUqYmJiZBfAGjhwIHx8fPKM+J4/fz5iY2MlVYPz9vZGeHg4WrVqhUuXLqFKlSro3r07li9frvcsCz8/P1y7dg3NmjVD7969ERQUlKfw019//QUXF5c8NR0MSelzycWLF/Ns+/vvv9GpUye0aNECffr00W7Xt1ZFmTJl8PPPP+ODDz7QKTQUGxuL6tWrv3Ueen42bNiAzp07IzMzE40bN8aePXsAvCoQdOjQIfz22296tbkouXv3Ls6ePQsfHx9J79WJEyewfPly/Pzzz6hQoQK6du2Kjh07wt3dHRcuXNAuEKQEVSYAPXr0eOs+WVlZePToEaKiojBs2DBMmjSpwPHNzc0RGxuLUqVKabdZWFggNjYWJUuWlNVmIyMjBAYGagshbd++HY0bN87zpSdl6lLuBCDnSQCQngC0atUKPXv2RMuWLQ1alS81NRVxcXEAgPfee09WxbJu3brho48+Qq9evZRuntbZs2fx/fffa4tMVahQAUOHDtW7iEtCQgLWrVuHNWvWIDo6GrVr18aJEydkxSpRogS2bduGGjVq6GyPjo5Gq1at8McffxQ4lpmZGW7fvq2tHmhpaYlTp07Bz89PVttymjx5MkJCQmRVJjQkpc8lRkZG0Gg0OmvJ57yf/W+NRqN31VMrKytcunQJ3t7eOn/7Fy5cQP369ZGUlCQrbkJCAh48eAB/f39t4nfq1CnY29sr+oPgXZKVlYWIiAhs2rQJd+7cgUajgZeXF9q3b4+uXbvKSoBTU1Px888/Y8WKFTh16hQyMzMxe/ZshISESCr69iaqTACk2LFjB/r27Yt79+4V+Dn5lS3W9xd7QU40gLR5uEonAP+W2NhYxMXFoX79+rC0tNSeEKWYOnUqwsPDFSvVa2jJycnYuHEjfvrpJxw8eBDe3t7o0qULunTpolcvhoWFBS5dugQfHx+d7bGxsahcuTLS09MLHMsQvVT/JQU5l9y9e7fA8fStiVC/fn106NABAwYM0HmvBgwYgJs3b2LXrl0FjlWQnhBAfiXAd5kQAkFBQdi5cyeqVq2K8uXLQwiBq1evIiYmBq1atcKWLVv0Osb169exfPlyrF69Gs+ePcPHH39c4KW036TIFAIqLNlrcUsh8ilbnJ6ejq+//lrn16qUPwZDFELSaDR5vjgNWRBHX0+ePMFnn32GAwcOQKPR4ObNm/D29kbPnj3h6OiIWbNmFTjWsmXLFC3Vm5+srCzExsbmW2q4fv36kmK5urrC0dERn3/+OcLCwiR/Jl/Hx8cHu3btyrOoym+//aZNBAsq9+c+v888UPDPfWhoKCZPngxra+u3FoSSus58YSjIuUSJQkcFNW3aNAQGBuLKlSt4+fIl5syZgytXruDYsWNvXdwoNyVKpxdVEREROHToEPbt24dGjRrpPLZ//360adMGkZGRCA4Oln2McuXKYebMmQgLC8P27dtllb/OD3sADMAQv9YN4W2XFTIyMrBr1653pgcgODgYjx49wrJly1ChQgVtb8Xu3bsRGhqKy5cvF3YTtU6cOIHOnTvj7t27yP0nJqf7Nrvin9wxJK+zYsUK9O/fH8OHD0fjxo0BAPv27cOsWbMQHh6O3r17FziW0p/7Ro0aYfPmzXBwcMhzYs1Jo9Fg//79BYpZFF25ciXfVRVzrmQoV1xcHKZPn44LFy5o1wIYOXKkIpdt1KJZs2Zo3LgxRo0ale/j06ZNQ1RUFHbv3v0vt+ztmACoWFFJVLK5ublh9+7dqFq1qs7lilu3bqFKlSp6r46mJH9/f5QtWxYTJ06Eu7t7np4Vub+YHj9+jOvXrwN49avgdatjSrFw4UJMnToV9+/fBwB4enpiwoQJev1iIf3dunULbdu2RUxMTJ5xAEDBSsvmp6CD+xRZbEYF3NzcsGvXLvj7++f7+Llz5xAYGCi7tLYhMQGgIsPW1hbR0dHw9fXVSQDOnDmDgICAfOtv5/RvdilbW1vjwoULea6ty5WWlob+/fsjMjJSeznB2NgYwcHBmDdvHqysrPQ+xuPHj2FpaQkbGxu9Y5H+smc6LFu2DF5eXjh16hSePHmCoUOH4rvvvpO9xkb2QMPXUWqQoVqYmZnh7t27r13p8v79+/Dy8pK9Yq0hcQwAFRkfffQRIiMjMXnyZACvfgllZWVh5syZb+wiznbu3Dnt9MFz584ZtK3vv/8+YmNjFUsAhgwZgqioKGzfvl07rfDIkSMYOHAghg4dioULF+p9DCV6EwzpzJkzWL9+fb7d4f/FwWXHjx/H/v37UaxYMRgZGcHIyAj16tVDWFgYBg4cKPsznHORGSEEPvnkEyxbtuydm2FRVGRmZmoXk8uPsbExXr58+S+2qOCYAFCRMXPmTDRp0gRnzpzB8+fPMWLECFy+fBmJiYk4evToW5+f88T3ppW25Mo5h3vAgAEYOnQoEhIS8p1lIHUO98aNG7FhwwY0bNhQu+2TTz6BpaUlPvvsM9kJwMOHDzFs2DDs27cPjx49yjNe4V35Fbhu3ToEBwcjICAAv//+O5o1a4YbN27g4cOHetdUeFdlZmZqp3sVK1YM9+/fR7ly5VCmTBntZSA5GjRooHPf2NgYH3zwgeRBn/RKfoO+c3oXf/lnYwJARUblypVx48YNzJ8/H7a2tkhJSUG7du3Qr1+/13a/5WbIIlDZ855zfomGhITk2U9O92paWprOMqbZXFxcZC+xCwDdu3fHvXv3MHbs2HzHKrwrpk2bhu+//x79+vWDra0t5syZAy8vL3z11VcFfu+LmsqVK+PChQvw8vLC+++/j5kzZ8LMzAxLlizhl/U7pFu3bm/d510dT8MxAFQkvHjxAs2bN8eiRYvg6+srO44hi0AVdA53amqq5GpeTZo0gbOzMyIjI2FhYQEA+Oeff9CtWzckJiZi7969kuJls7W1xeHDh187gOldYW1tjcuXL8PT0xPOzs44ePAg/Pz8cPXqVTRu3BgPHjwo7CYqbvfu3UhNTUW7du1w8+ZNBAUF4caNG3B2dsa6devQpEkTRY6Tu/4HqQd7AKhIMDU1zbdMqlRSZjRkF24paALwtjncGRkZWLBgAWbOnCl5RPCcOXMQEBCAkiVLomrVqgCACxcuwMLCQq/pRaVKlcrT7f8ucnR0xN9//w3gVfXCS5cuwc/PD8+ePdOrB+RdFhAQoP23r68vrl27hsTERDg6OireU/Ou9vyQYTEBoCLjiy++wPLlyzF9+vR/5XhyikBlZGRgwoQJ2LNnD8zMzDBixAi0adMGK1euxP/+9z8YGxtjyJAhkttSuXJl3Lx5Ez/++COuXbsGAOjUqRO6dOkCS0tLyfGyhYeHY9SoUVi8eDE8PT1lxzG0+vXrY8+ePfDz80OHDh0waNAg7N+/X1sf4b/E0GuV5I6vb8EmKrp4CYCKjAEDBiAyMhK+vr6oUaNGnhPWu1ANbuTIkVi8eDGaNm2KY8eO4fHjx+jRowdOnDiBb775Bh06dDDoOglSOTo6Ii0tDS9fvoSVlVWewYqJiYmF1DJdiYmJSE9Ph4eHh3bmx7Fjx+Dr64sxY8bA0dGxsJuoGEOvVVLU6n+Q4TABoHferVu34Onp+cZfeu9KNTglV8Tbtm0bAgMDYWpq+ta633Krwq1ateqNjxdkgBMVHjlrlRBlYwJA7zxjY2M8ePBAu2jR559/jrlz5+Y7Kr6wKbkiXs7Fmt5UAvi/XLTlbUVrgFf//3d1nrWhPXv2DCEhIeyuJ1k4BoDeeblz1N9++w2pqamF1Jo3y8zMhJmZmfa+iYmJ7Mp6ORcQ+jfWuE9PT89TYKewy8Fu3rz5tY8dP34cc+fO/Vdem3eVg4MDv/xJNiYAVOS8y51WSq+I988//2Dfvn1o2bIlAGD06NE6hUVMTEwwadIk7dRAqVJTUzFy5EisX78+31LKhd2z0Lp16zzbrl+/jlGjRmH79u3o0qWLpOvfRPR/mADQO68oLVuc+5r5F198oVe8VatW4ddff9UmAPPnz0elSpW0I/+vXbsGNze3t65t8DojRozAgQMHsHDhQnTt2hULFizAn3/+icWLF/9rsy0K6v79+xg/fjxWrVqFgIAAnD9/HpUrVy7sZhEVWRwDQO+8ty1bnO2/2BX60UcfYcSIEdqpXrmLtqxZswYLFizA8ePHZcUvXbo0IiMj0bBhQ9jZ2SE6Oho+Pj5YvXo11q5di507dyr2f5ErKSkJ06ZNw7x58+Dv748ZM2bIXgiHiP4PewDonaf0r+qiJDY2VmcAoYWFhc6AwNq1a6Nfv36y4ycmJmqTCTs7O+20v3r16qFPnz6y4ypl5syZmDFjBtzc3LB27dp8LwkQkTxMAOidp+b5yM+ePdO55v/48WOdx7OysvRabMTb2xu3b99G6dKlUb58eaxfvx61a9fG9u3b4eDgIDuuUkaNGgVLS0v4+Phg1apVr522+F/s/SEyNCYARO+wkiVL4tKlSyhXrly+j1+8eBElS5aUHb9Hjx64cOECGjRogFGjRiEoKAjz58/Hixcv3onCSsHBwe/seA+ioo5jAIjeYYMGDcLevXtx9uzZPCP9//nnH9SsWRNNmzbFnDlzFDne3bt3cfbsWfj4+EhespiIihYmAETvsIcPH8Lf3x9mZmbo378/ypYtC+DVVLj58+fj5cuXOHfunKyiSEqtsEhERRMTAKJ33O3bt9GnTx/s2bNHWwNBo9Hg448/xg8//KDXMq7FixfX1tQnInVhAkBURCQmJiI2NhYA4OPjAycnJ71jDhkyBObm5u/cnH8iMjwmAEQqVhRWWCQiw+AsACIVyl5h8dKlS6hevToA4MaNGzr7cPQ90X8bewCIVKgorbBIRIbx+jVGieg/qyitsEhEhsEEgIje6RUWicgwmAAQqVBRWmGRiAyDgwCJVEgIge7du2tXWExPT8fXX3+tihUWiegVJgBEKqTmFRaJ6BXOAiAiIlIhjgEgIiJSISYAREREKsQEgIiISIWYABAREakQEwAiIiIVYgJApBLdu3eHRqPJs/Tvli1bWASISIWYABCpiIWFBWbMmIGnT58WdlOIqJAxASBSkaZNm8LNzQ1hYWH5Pv7kyRN06tQJJUqUgJWVFfz8/LB27VqdfRo2bIgBAwZg8ODBcHR0hKurK5YuXYrU1FT06NEDtra28PHxwW+//abzvEuXLiEwMBA2NjZwdXVF165d8ddffxns/0pEb8YEgEhFjI2NMW3aNMybNw9//PFHnsfT09NRo0YN/Prrr7h06RK+/PJLdO3aFadOndLZb9WqVShWrBhOnTqFAQMGoE+fPujQoQM+/PBDREdHo1mzZujatSvS0tIAAM+ePUPjxo1RrVo1nDlzBrt27cLDhw/x2Wef/Sv/byLKi5UAiVSie/fuePbsGbZs2YI6deqgYsWKWL58ObZs2YK2bdu+dkXAli1bonz58vjuu+8AvOoByMzMxOHDhwEAmZmZsLe3R7t27RAZGQkASEhIgLu7O44fP44PPvgAU6ZMweHDh7F7925t3D/++AOlSpXC9evXUbZsWQP/74koN64FQKRCM2bMQOPGjTFs2DCd7ZmZmZg2bRrWr1+PP//8E8+fP0dGRgasrKx09qtSpYr238bGxnB2doafn592m6urKwDg0aNHAIALFy7gwIEDsLGxydOWuLg4JgBEhYAJAJEK1a9fHwEBARg9ejS6d++u3f7tt99izpw5CA8Ph5+fH6ytrTF48GA8f/5c5/mmpqY69zUajc627FkFWVlZAICUlBQEBQVhxowZedri7u6u1H+LiCRgAkCkUtOnT4e/vz/KlSun3Xb06FG0bt1auzpgVlYWbty4gYoVK+p1rOrVq2Pjxo3w9PSEiQlPO0TvAg4CJFIpPz8/dOnSBXPnztVu8/X1xZ49e3Ds2DFcvXoVX331FR4+fKj3sfr164fExER06tQJp0+fRlxcHHbv3o0ePXogMzNT7/hEJB0TACIVmzRpkrabHgDGjBmD6tWrIyAgAA0bNoSbmxvatGmj93E8PDxw9OhRZGZmolmzZvDz88PgwYPh4OAAIyOehogKA2cBEBERqRBTbyIiIhViAkBERKRCTACIiIhUiAkAERGRCjEBICIiUiEmAERERCrEBICIiEiFmAAQERGpEBMAIiIiFWICQEREpEJMAIiIiFTo/wGZh6rvaGmr2wAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df_students.plot.bar(x='Name', y='StudyHours', color='teal', figsize=(6,4))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Getting started with statistical analysis\n", + "\n", + "Now that you know how to use Python to manipulate and visualize data, you can start analyzing it.\n", + "\n", + "A lot of data science is rooted in *statistics*, so we'll explore some basic statistical techniques.\n", + "\n", + "> **Note**: This section is not intended to teach you statistics; that's much too big a topic for this notebook. It will, however, introduce you to some statistical concepts and techniques that data scientists use as they explore data in preparation for machine learning modeling.\n", + "\n", + "### Descriptive statistics and data distribution\n", + "\n", + "When examining a *variable* (for example, a sample of student grades), data scientists are particularly interested in its *distribution* (in other words, how all the different grade values are spread across the sample). The starting point for this exploration is often to visualize the data as a histogram and see how frequently each value for the variable occurs.\n", + "\n", + "\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_2980\\4182697007.py:16: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + " fig.show()\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA04AAAGJCAYAAAC90mOkAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA45UlEQVR4nO3deXwV1f3/8feFkBsguQkISVgCiYIssgeV4BKUJSxSIq3SFBuWoKCgQVwqVEXk0QbkCwUVWbSEWkUQK6gIhjRssimrLCqLLGFJggrkkiiXmDu/P/x56zXLJJckNyGv5+Mxj3bOnJn5DD22vHtmzrUYhmEIAAAAAFCkGt4uAAAAAAAqO4ITAAAAAJggOAEAAACACYITAAAAAJggOAEAAACACYITAAAAAJggOAEAAACACYITAAAAAJggOAEAAACACYITAOCaMXz4cIWHh1fIvcLDwzV8+HDX/uLFi2WxWLRz584KuX+PHj3Uo0ePCrkXAIDgBADVwi9/qf9l8/PzU+PGjRUTE6OXX35Zly5d8vjaW7du1QsvvKCLFy+WXcGSXnjhBbea69Spo2bNmmngwIFKTk6Ww+Eok/t8+eWXeuGFF3TixIkyuV5Zqsy1AUB14+PtAgAAFefFF19URESE8vLylJmZqQ0bNmj8+PGaNWuWPvzwQ3Xo0KHU19y6daumTJmi4cOHKygoqMxrnjdvnvz9/eVwOHTmzBmlpKRo5MiRmj17tlatWqWwsDBX39dff11Op7NU1//yyy81ZcoU9ejRo1SzVYcOHVKNGuX7/z8WV9vatWvL9d4AAHcEJwCoRvr166euXbu69idOnKh169bpnnvu0e9+9zt99dVXql27thcrLOgPf/iDGjRo4Np//vnn9fbbbys+Pl733Xeftm/f7jpWq1atcq3FMAxdvnxZtWvXltVqLdd7mfH19fXq/QGguuFVPQCo5u6++24999xzOnnypN566y1X+759+zR8+HBdf/318vPzU2hoqEaOHKnvv//e1eeFF17QU089JUmKiIhwvVb3y6tlycnJuvvuuxUcHCyr1aq2bdtq3rx5V13z0KFDNWrUKH322WdKTU11tRf2jdPSpUsVGRmpgIAA2Ww2tW/fXnPmzJH08yuM9913nyTprrvuctW/YcMGST9/x3TPPfcoJSVFXbt2Ve3atbVgwQLXsV9/4/SLH374QaNHj9Z1110nm82m+Ph4Xbhwwa2PxWLRCy+8UODcX1/TrLbCvnE6d+6cEhISFBISIj8/P3Xs2FH/+te/3PqcOHFCFotF//d//6eFCxfqhhtukNVq1c0336wdO3YU+ucNAGDGCQAg6c9//rMmTZqktWvX6sEHH5Qkpaam6tixYxoxYoRCQ0N18OBBLVy4UAcPHtT27dtlsVg0ePBgHT58WO+8847+8Y9/uGaGGjZsKOnn1+xuuukm/e53v5OPj48++ugjPfLII3I6nRo7duxV17xw4UKtXbtWvXv3LrRPamqq4uLi1LNnT02fPl2S9NVXX2nLli1KTEzUnXfeqccee0wvv/yyJk2apDZt2kiS61+ln1/Ji4uL0+jRo/Xggw+qVatWxdY1btw4BQUF6YUXXtChQ4c0b948nTx5Uhs2bJDFYinx85Wktl/78ccf1aNHDx09elTjxo1TRESEli9fruHDh+vixYtKTEx0679kyRJdunRJo0ePlsVi0UsvvaTBgwfr2LFj5T5zBwBVEcEJAKCmTZsqMDBQ33zzjavtkUce0RNPPOHWr1u3boqLi9PmzZt1xx13qEOHDurSpYveeecdxcbGFpjt2bhxo9urf+PGjVPfvn01a9asqw5O7dq1kyS3mn/r448/ls1mU0pKimrWrFng+PXXX6877rhDL7/8snr37l3oKnVHjx7VJ598opiYmBLV5evrq7S0NFf4aN68uZ5++ml99NFH+t3vfleia5S0tl9buHChvvrqK7311lsaOnSoJGnMmDGKjo7Ws88+q5EjRyogIMDVPz09XUeOHFG9evUkSa1atdKgQYOUkpKie+65p8R1AkB1wat6AABJkr+/v9vqer8OPJcvX9Z3332nbt26SZJ2795domv++hrZ2dn67rvvFB0drWPHjik7O/uq65VU7IqAQUFBys3NdXudr7QiIiJKHJok6aGHHnKbsXn44Yfl4+Oj1atXe1xDSaxevVqhoaGKi4tztdWqVUuPPfaYcnJytHHjRrf+Q4YMcYUmSbrjjjskSceOHSvXOgGgqiI4AQAkSTk5OW4zEufPn1diYqJCQkJUu3ZtNWzYUBEREZJU4tCzZcsW9erVS3Xr1lVQUJAaNmyoSZMmleoaxdUrya3m33rkkUd04403ql+/fmratKlGjhypTz75pFT3+eWZS6ply5Zu+/7+/mrUqFG5Lyl+8uRJtWzZssBKf7+82nfy5Em39mbNmrnt/xKifvs9FgDgZ7yqBwDQ6dOnlZ2drRYtWrja7r//fm3dulVPPfWUOnXqJH9/fzmdTvXt27dES35/88036tmzp1q3bq1Zs2YpLCxMvr6+Wr16tf7xj3+Uetnw3zpw4IAkudX8W8HBwdq7d69SUlK0Zs0arVmzRsnJyYqPjy+waEJRKnKVwfz8/Aq7V2GvLko/rxwIACiI4AQA0L///W9Jcr2SduHCBaWlpWnKlCl6/vnnXf2OHDlS4NyiFjz46KOP5HA49OGHH7rNbqxfv75cai6Kr6+vBg4cqIEDB8rpdOqRRx7RggUL9Nxzz6lFixalWrChJI4cOaK77rrLtZ+Tk6OMjAz179/f1VavXr0CPxh85coVZWRkuLWVprbmzZtr3759cjqdbrNOX3/9tes4AMBzvKoHANXcunXrNHXqVEVERLgWFfhlNuK3sw+zZ88ucH7dunUlqUAQKOwa2dnZSk5OvuqalyxZojfeeENRUVHq2bNnkf1+vXS6JNWoUcP1I78Oh6PY+j21cOFC5eXlufbnzZunn376Sf369XO13XDDDdq0aVOB834741Sa2vr376/MzEwtW7bM1fbTTz/plVdekb+/v6Kjoz15HADA/8eMEwBUI2vWrNHXX3+tn376SVlZWVq3bp1SU1PVvHlzffjhh/Lz85Mk2Ww23XnnnXrppZeUl5enJk2aaO3atTp+/HiBa0ZGRkqS/vrXv+qPf/yjatWqpYEDB6pPnz6u2Z7Ro0crJydHr7/+uoKDgwvMrBTnvffek7+/v65cuaIzZ84oJSVFW7ZsUceOHbV8+fJizx01apTOnz+vu+++W02bNtXJkyf1yiuvqFOnTq5vfzp16qSaNWtq+vTpys7OltVqdf32lCeuXLminj176v7779ehQ4f02muv6fbbb3dbUW/UqFEaM2aMfv/736t379764osvlJKS4vZDv6Wt7aGHHtKCBQs0fPhw7dq1S+Hh4Xrvvfe0ZcsWzZ49u9hvwQAAJWAAAK55ycnJhiTX5uvra4SGhhq9e/c25syZY9jt9gLnnD592rj33nuNoKAgIzAw0LjvvvuMs2fPGpKMyZMnu/WdOnWq0aRJE6NGjRqGJOP48eOGYRjGhx9+aHTo0MHw8/MzwsPDjenTpxuLFi1y61OUyZMnu9Xs5+dnNG3a1LjnnnuMRYsWGZcvXy5wzrBhw4zmzZu79t977z2jT58+RnBwsOHr62s0a9bMGD16tJGRkeF23uuvv25cf/31Rs2aNQ1Jxvr16w3DMIzmzZsbAwYMKLS+5s2bG8OGDSvwZ7xx40bjoYceMurVq2f4+/sbQ4cONb7//nu3c/Pz842//OUvRoMGDYw6deoYMTExxtGjRwtcs7jaoqOjjejoaLe+WVlZxogRI4wGDRoYvr6+Rvv27Y3k5GS3PsePHzckGTNmzCjwTIX9ZwsA+JnFMPgKFAAAAACKwzdOAAAAAGCC4AQAAAAAJghOAAAAAGCC4AQAAAAAJghOAAAAAGCC4AQAAAAAJqrdD+A6nU6dPXtWAQEBslgs3i4HAAAAgJcYhqFLly6pcePGqlGj+Dmlaheczp49q7CwMG+XAQAAAKCSOHXqlJo2bVpsn2oXnAICAiT9/Idjs9m8XA0AAAAAb7Hb7QoLC3NlhOJUu+D0y+t5NpuN4AQAAACgRJ/wsDgEAAAAAJggOAEAAACACYITAAAAAJggOAEAAACACYITAAAAAJggOAEAAACACYITAAAAAJioNMFp2rRpslgsGj9+fLH9li9frtatW8vPz0/t27fX6tWrK6ZAAAAAANVWpQhOO3bs0IIFC9ShQ4di+23dulVxcXFKSEjQnj17FBsbq9jYWB04cKCCKgUAAABQHXk9OOXk5Gjo0KF6/fXXVa9evWL7zpkzR3379tVTTz2lNm3aaOrUqerSpYteffXVCqoWAAAAQHXk9eA0duxYDRgwQL169TLtu23btgL9YmJitG3btiLPcTgcstvtbhsAAAAAlIaPN2++dOlS7d69Wzt27ChR/8zMTIWEhLi1hYSEKDMzs8hzkpKSNGXKlKuqEwCqsvBnPvZ2CahiTkwb4O0SAKDS8dqM06lTp5SYmKi3335bfn5+5XafiRMnKjs727WdOnWq3O4FAAAA4NrktRmnXbt26dy5c+rSpYurLT8/X5s2bdKrr74qh8OhmjVrup0TGhqqrKwst7asrCyFhoYWeR+r1Sqr1Vq2xQMAAACoVrw249SzZ0/t379fe/fudW1du3bV0KFDtXfv3gKhSZKioqKUlpbm1paamqqoqKiKKhsAAABANeS1GaeAgAC1a9fOra1u3bq67rrrXO3x8fFq0qSJkpKSJEmJiYmKjo7WzJkzNWDAAC1dulQ7d+7UwoULK7x+AAAAANWH11fVK056eroyMjJc+927d9eSJUu0cOFCdezYUe+9955WrlxZIIABAAAAQFmyGIZheLuIimS32xUYGKjs7GzZbDZvlwMA5Y5V9VBarKoHoLooTTao1DNOAAAAAFAZEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwATBCQAAAABMEJwAAAAAwIRXg9O8efPUoUMH2Ww22Ww2RUVFac2aNUX2X7x4sSwWi9vm5+dXgRUDAAAAqI58vHnzpk2batq0aWrZsqUMw9C//vUvDRo0SHv27NFNN91U6Dk2m02HDh1y7VsslooqFwAAAEA15dXgNHDgQLf9v/3tb5o3b562b99eZHCyWCwKDQ2tiPIAAAAAQFIl+sYpPz9fS5cuVW5urqKioorsl5OTo+bNmyssLEyDBg3SwYMHi72uw+GQ3W532wAAAACgNLwenPbv3y9/f39ZrVaNGTNGK1asUNu2bQvt26pVKy1atEgffPCB3nrrLTmdTnXv3l2nT58u8vpJSUkKDAx0bWFhYeX1KAAAAACuURbDMAxvFnDlyhWlp6crOztb7733nt544w1t3LixyPD0a3l5eWrTpo3i4uI0derUQvs4HA45HA7Xvt1uV1hYmLKzs2Wz2crsOQCgsgp/5mNvl4Aq5sS0Ad4uAQAqhN1uV2BgYImygVe/cZIkX19ftWjRQpIUGRmpHTt2aM6cOVqwYIHpubVq1VLnzp119OjRIvtYrVZZrdYyqxcAAABA9eP1V/V+y+l0us0QFSc/P1/79+9Xo0aNyrkqAAAAANWZV2ecJk6cqH79+qlZs2a6dOmSlixZog0bNiglJUWSFB8fryZNmigpKUmS9OKLL6pbt25q0aKFLl68qBkzZujkyZMaNWqUNx8DAAAAwDXOq8Hp3Llzio+PV0ZGhgIDA9WhQwelpKSod+/ekqT09HTVqPG/SbELFy7owQcfVGZmpurVq6fIyEht3bq1RN9DAQAAAICnvL44REUrzQdgAHAtYHEIlBaLQwCoLkqTDSrdN04AAAAAUNkQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADABMEJAAAAAEwQnAAAAADAhFeD07x589ShQwfZbDbZbDZFRUVpzZo1xZ6zfPlytW7dWn5+fmrfvr1Wr15dQdUCAAAAqK68GpyaNm2qadOmadeuXdq5c6fuvvtuDRo0SAcPHiy0/9atWxUXF6eEhATt2bNHsbGxio2N1YEDByq4cgAAAADVicUwDMPbRfxa/fr1NWPGDCUkJBQ4NmTIEOXm5mrVqlWutm7duqlTp06aP39+ia5vt9sVGBio7Oxs2Wy2MqsbACqr8Gc+9nYJqGJOTBvg7RIAoEKUJhtUmm+c8vPztXTpUuXm5ioqKqrQPtu2bVOvXr3c2mJiYrRt27Yir+twOGS32902AAAAACgNH28XsH//fkVFReny5cvy9/fXihUr1LZt20L7ZmZmKiQkxK0tJCREmZmZRV4/KSlJU6ZMKdOaAVROzKwAZYN/lorGbBxQfXl9xqlVq1bau3evPvvsMz388MMaNmyYvvzyyzK7/sSJE5Wdne3aTp06VWbXBgAAAFA9eH3GydfXVy1atJAkRUZGaseOHZozZ44WLFhQoG9oaKiysrLc2rKyshQaGlrk9a1Wq6xWa9kWDQAAAKBa8fqM0285nU45HI5Cj0VFRSktLc2tLTU1tchvogAAAACgLHh1xmnixInq16+fmjVrpkuXLmnJkiXasGGDUlJSJEnx8fFq0qSJkpKSJEmJiYmKjo7WzJkzNWDAAC1dulQ7d+7UwoULvfkYAAAAAK5xXg1O586dU3x8vDIyMhQYGKgOHTooJSVFvXv3liSlp6erRo3/TYp1795dS5Ys0bPPPqtJkyapZcuWWrlypdq1a+etRwAAAABQDVS633Eqb/yOE3DtYiUwAOWNVfWAa0uV/B0nAAAAAKisCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmvBqckpKSdPPNNysgIEDBwcGKjY3VoUOHij1n8eLFslgsbpufn18FVQwAAACgOvIoOB07dqxMbr5x40aNHTtW27dvV2pqqvLy8tSnTx/l5uYWe57NZlNGRoZrO3nyZJnUAwAAAACF8fHkpBYtWig6OloJCQn6wx/+4PGMzyeffOK2v3jxYgUHB2vXrl268847izzPYrEoNDTUo3sCAAAAQGl5NOO0e/dudejQQRMmTFBoaKhGjx6tzz///KqLyc7OliTVr1+/2H45OTlq3ry5wsLCNGjQIB08eLDIvg6HQ3a73W0DAAAAgNLwKDh16tRJc+bM0dmzZ7Vo0SJlZGTo9ttvV7t27TRr1ix9++23pb6m0+nU+PHjddttt6ldu3ZF9mvVqpUWLVqkDz74QG+99ZacTqe6d++u06dPF9o/KSlJgYGBri0sLKzUtQEAAACo3iyGYRhXexGHw6HXXntNEydO1JUrV+Tr66v7779f06dPV6NGjUp0jYcfflhr1qzR5s2b1bRp0xLfOy8vT23atFFcXJymTp1aaG0Oh8O1b7fbFRYWpuzsbNlsthLfB0DlF/7Mx94uAcA17sS0Ad4uAUAZstvtCgwMLFE2uKpV9Xbu3KlHHnlEjRo10qxZs/Tkk0/qm2++UWpqqs6ePatBgwaV6Drjxo3TqlWrtH79+lKFJkmqVauWOnfurKNHjxZ63Gq1ymazuW0AAAAAUBoeLQ4xa9YsJScn69ChQ+rfv7/efPNN9e/fXzVq/JzDIiIitHjxYoWHhxd7HcMw9Oijj2rFihXasGGDIiIiSl1Lfn6+9u/fr/79+3vyKAAAAABgyqPgNG/ePI0cOVLDhw8v8lW84OBg/fOf/yz2OmPHjtWSJUv0wQcfKCAgQJmZmZKkwMBA1a5dW5IUHx+vJk2aKCkpSZL04osvqlu3bmrRooUuXryoGTNm6OTJkxo1apQnjwIAAAAApjwKTkeOHDHt4+vrq2HDhhXbZ968eZKkHj16uLUnJydr+PDhkqT09HTXTJYkXbhwQQ8++KAyMzNVr149RUZGauvWrWrbtm3pHgIAAAAASsijxSGSk5Pl7++v++67z619+fLl+uGHH0wDkzeV5gMwAFULi0MAKG8sDgFcW8p9cYikpCQ1aNCgQHtwcLD+/ve/e3JJAAAAAKi0PApO6enphS7k0Lx5c6Wnp191UQAAAABQmXgUnIKDg7Vv374C7V988YWuu+66qy4KAAAAACoTj4JTXFycHnvsMa1fv175+fnKz8/XunXrlJiYqD/+8Y9lXSMAAAAAeJVHq+pNnTpVJ06cUM+ePeXj8/MlnE6n4uPj+cYJAAAAwDXHo+Dk6+urZcuWaerUqfriiy9Uu3ZttW/fXs2bNy/r+gAAAADA6zwKTr+48cYbdeONN5ZVLQAAAABQKXkUnPLz87V48WKlpaXp3LlzcjqdbsfXrVtXJsUBAAAAQGXgUXBKTEzU4sWLNWDAALVr104Wi6Ws6wIAAACASsOj4LR06VK9++676t+/f1nXAwAAAACVjkfLkfv6+qpFixZlXQsAAAAAVEoeBacnnnhCc+bMkWEYZV0PAAAAAFQ6Hr2qt3nzZq1fv15r1qzRTTfdpFq1arkdf//998ukOAAAAACoDDwKTkFBQbr33nvLuhYAAAAAqJQ8Ck7JycllXQcAAAAAVFoefeMkST/99JP++9//asGCBbp06ZIk6ezZs8rJySmz4gAAAACgMvBoxunkyZPq27ev0tPT5XA41Lt3bwUEBGj69OlyOByaP39+WdcJAAAAAF7j0YxTYmKiunbtqgsXLqh27dqu9nvvvVdpaWllVhwAAAAAVAYezTh9+umn2rp1q3x9fd3aw8PDdebMmTIpDAAAAAAqC49mnJxOp/Lz8wu0nz59WgEBAVddFAAAAABUJh4Fpz59+mj27NmufYvFopycHE2ePFn9+/cvq9oAAAAAoFLw6FW9mTNnKiYmRm3bttXly5f1pz/9SUeOHFGDBg30zjvvlHWNAAAAAOBVHgWnpk2b6osvvtDSpUu1b98+5eTkKCEhQUOHDnVbLAIAAAAArgUeBSdJ8vHx0QMPPFCWtQAAAABApeRRcHrzzTeLPR4fH+9RMQAAAABQGXkUnBITE9328/Ly9MMPP8jX11d16tQhOAEAAAC4pni0qt6FCxfctpycHB06dEi33357qRaHSEpK0s0336yAgAAFBwcrNjZWhw4dMj1v+fLlat26tfz8/NS+fXutXr3ak8cAAAAAgBLxKDgVpmXLlpo2bVqB2ajibNy4UWPHjtX27duVmpqqvLw89enTR7m5uUWes3XrVsXFxSkhIUF79uxRbGysYmNjdeDAgbJ4DAAAAAAowGIYhlFWF9u7d6/uvPNO2e12j87/9ttvFRwcrI0bN+rOO+8stM+QIUOUm5urVatWudq6deumTp06af78+ab3sNvtCgwMVHZ2tmw2m0d1Aqicwp/52NslALjGnZg2wNslAChDpckGHn3j9OGHH7rtG4ahjIwMvfrqq7rttts8uaQkKTs7W5JUv379Ivts27ZNEyZMcGuLiYnRypUrC+3vcDjkcDhc+56GOgAAAADVl0fBKTY21m3fYrGoYcOGuvvuuzVz5kyPCnE6nRo/frxuu+02tWvXrsh+mZmZCgkJcWsLCQlRZmZmof2TkpI0ZcoUj2oCKiNmVQDAe/jv4MIxE4fqwKPg5HQ6y7oOjR07VgcOHNDmzZvL9LoTJ050m6Gy2+0KCwsr03sAAAAAuLZ5/AO4ZWncuHFatWqVNm3apKZNmxbbNzQ0VFlZWW5tWVlZCg0NLbS/1WqV1Wots1oBAAAAVD8eBafffmNUnFmzZhV5zDAMPfroo1qxYoU2bNigiIgI0+tFRUUpLS1N48ePd7WlpqYqKiqqxDUBAAAAQGl4FJz27NmjPXv2KC8vT61atZIkHT58WDVr1lSXLl1c/SwWS7HXGTt2rJYsWaIPPvhAAQEBru+UAgMDVbt2bUlSfHy8mjRpoqSkJEk///hudHS0Zs6cqQEDBmjp0qXauXOnFi5c6MmjAAAAAIApj4LTwIEDFRAQoH/961+qV6+epJ9/FHfEiBG644479MQTT5ToOvPmzZMk9ejRw609OTlZw4cPlySlp6erRo3//dxU9+7dtWTJEj377LOaNGmSWrZsqZUrVxa7oAQAAAAAXA2PfsepSZMmWrt2rW666Sa39gMHDqhPnz46e/ZsmRVY1vgdJ1R1rOgEAKhsWFUPVVVpskGNYo8Wc4Nvv/22QPu3336rS5cueXJJAAAAAKi0PApO9957r0aMGKH3339fp0+f1unTp/Wf//xHCQkJGjx4cFnXCAAAAABe5dE3TvPnz9eTTz6pP/3pT8rLy/v5Qj4+SkhI0IwZM8q0QAAAAADwNo+CU506dfTaa69pxowZ+uabbyRJN9xwg+rWrVumxQEAAABAZeDRq3q/yMjIUEZGhlq2bKm6devKg3UmAAAAAKDS8yg4ff/99+rZs6duvPFG9e/fXxkZGZKkhISEEi9FDgAAAABVhUfB6fHHH1etWrWUnp6uOnXquNqHDBmiTz75pMyKAwAAAIDKwKNvnNauXauUlBQ1bdrUrb1ly5Y6efJkmRQGAAAAAJWFRzNOubm5bjNNvzh//rysVutVFwUAAAAAlYlHwemOO+7Qm2++6dq3WCxyOp166aWXdNddd5VZcQAAAABQGXj0qt5LL72knj17aufOnbpy5YqefvppHTx4UOfPn9eWLVvKukYAAAAA8CqPZpzatWunw4cP6/bbb9egQYOUm5urwYMHa8+ePbrhhhvKukYAAAAA8KpSzzjl5eWpb9++mj9/vv7617+WR00AAAAAUKmUesapVq1a2rdvX3nUAgAAAACVkkev6j3wwAP65z//Wda1AAAAAECl5NHiED/99JMWLVqk//73v4qMjFTdunXdjs+aNatMigMAAACAyqBUwenYsWMKDw/XgQMH1KVLF0nS4cOH3fpYLJayqw4AAAAAKoFSBaeWLVsqIyND69evlyQNGTJEL7/8skJCQsqlOAAAAACoDEr1jZNhGG77a9asUW5ubpkWBAAAAACVjUeLQ/zit0EKAAAAAK5FpQpOFoulwDdMfNMEAAAA4FpXqm+cDMPQ8OHDZbVaJUmXL1/WmDFjCqyq9/7775ddhQAAAADgZaUKTsOGDXPbf+CBB8q0GAAAAACojEoVnJKTk8urDgAAAACotK5qcQgAAAAAqA4ITgAAAABgwqvBadOmTRo4cKAaN24si8WilStXFtt/w4YNrpX9fr1lZmZWTMEAAAAAqiWvBqfc3Fx17NhRc+fOLdV5hw4dUkZGhmsLDg4upwoBAAAAoJSLQ5S1fv36qV+/fqU+Lzg4WEFBQWVfEAAAAAAUokp+49SpUyc1atRIvXv31pYtW4rt63A4ZLfb3TYAAAAAKI0qFZwaNWqk+fPn6z//+Y/+85//KCwsTD169NDu3buLPCcpKUmBgYGuLSwsrAIrBgAAAHAtsBiGYXi7CEmyWCxasWKFYmNjS3VedHS0mjVrpn//+9+FHnc4HHI4HK59u92usLAwZWdny2azXU3JgFeEP/Oxt0sAAMDNiWkDvF0C4BG73a7AwMASZQOvfuNUFm655RZt3ry5yONWq1VWq7UCKwIAAABwralSr+oVZu/evWrUqJG3ywAAAABwDfPqjFNOTo6OHj3q2j9+/Lj27t2r+vXrq1mzZpo4caLOnDmjN998U5I0e/ZsRURE6KabbtLly5f1xhtvaN26dVq7dq23HgEAAABANeDV4LRz507dddddrv0JEyZIkoYNG6bFixcrIyND6enpruNXrlzRE088oTNnzqhOnTrq0KGD/vvf/7pdAwAAAADKWqVZHKKilOYDMKAyYnEIAEBlw+IQqKpKkw2q/DdOAAAAAFDeCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmCE4AAAAAYILgBAAAAAAmvBqcNm3apIEDB6px48ayWCxauXKl6TkbNmxQly5dZLVa1aJFCy1evLjc6wQAAABQvXk1OOXm5qpjx46aO3duifofP35cAwYM0F133aW9e/dq/PjxGjVqlFJSUsq5UgAAAADVmY83b96vXz/169evxP3nz5+viIgIzZw5U5LUpk0bbd68Wf/4xz8UExNTXmUCAAAAqOaq1DdO27ZtU69evdzaYmJitG3btiLPcTgcstvtbhsAAAAAlIZXZ5xKKzMzUyEhIW5tISEhstvt+vHHH1W7du0C5yQlJWnKlCkVVaJHwp/52NslAAAAeIy/y6C0Tkwb4O0SSq1KzTh5YuLEicrOznZtp06d8nZJAAAAAKqYKjXjFBoaqqysLLe2rKws2Wy2QmebJMlqtcpqtVZEeQAAAACuUVVqxikqKkppaWlubampqYqKivJSRQAAAACqA68Gp5ycHO3du1d79+6V9PNy43v37lV6erqkn1+zi4+Pd/UfM2aMjh07pqefflpff/21XnvtNb377rt6/PHHvVE+AAAAgGrCq8Fp586d6ty5szp37ixJmjBhgjp37qznn39ekpSRkeEKUZIUERGhjz/+WKmpqerYsaNmzpypN954g6XIAQAAAJQri2EYhreLqEh2u12BgYHKzs6WzWbzdjmSWIkGAAAA1UtlWVWvNNmgSn3jBAAAAADeQHACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABOVIjjNnTtX4eHh8vPz06233qrPP/+8yL6LFy+WxWJx2/z8/CqwWgAAAADVjdeD07JlyzRhwgRNnjxZu3fvVseOHRUTE6Nz584VeY7NZlNGRoZrO3nyZAVWDAAAAKC68XpwmjVrlh588EGNGDFCbdu21fz581WnTh0tWrSoyHMsFotCQ0NdW0hISAVWDAAAAKC68WpwunLlinbt2qVevXq52mrUqKFevXpp27ZtRZ6Xk5Oj5s2bKywsTIMGDdLBgweL7OtwOGS32902AAAAACgNrwan7777Tvn5+QVmjEJCQpSZmVnoOa1atdKiRYv0wQcf6K233pLT6VT37t11+vTpQvsnJSUpMDDQtYWFhZX5cwAAAAC4tnn9Vb3SioqKUnx8vDp16qTo6Gi9//77atiwoRYsWFBo/4kTJyo7O9u1nTp1qoIrBgAAAFDV+Xjz5g0aNFDNmjWVlZXl1p6VlaXQ0NASXaNWrVrq3Lmzjh49Wuhxq9Uqq9V61bUCAAAAqL68OuPk6+uryMhIpaWludqcTqfS0tIUFRVVomvk5+dr//79atSoUXmVCQAAAKCa8+qMkyRNmDBBw4YNU9euXXXLLbdo9uzZys3N1YgRIyRJ8fHxatKkiZKSkiRJL774orp166YWLVro4sWLmjFjhk6ePKlRo0Z58zEAAAAAXMO8HpyGDBmib7/9Vs8//7wyMzPVqVMnffLJJ64FI9LT01Wjxv8mxi5cuKAHH3xQmZmZqlevniIjI7V161a1bdvWW48AAAAA4BpnMQzD8HYRFclutyswMFDZ2dmy2WzeLkeSFP7Mx94uAQAAAKgwJ6YN8HYJkkqXDarcqnoAAAAAUNEITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgguAEAAAAACYITgAAAABgolIEp7lz5yo8PFx+fn669dZb9fnnnxfbf/ny5WrdurX8/PzUvn17rV69uoIqBQAAAFAdeT04LVu2TBMmTNDkyZO1e/dudezYUTExMTp37lyh/bdu3aq4uDglJCRoz549io2NVWxsrA4cOFDBlQMAAACoLiyGYRjeLODWW2/VzTffrFdffVWS5HQ6FRYWpkcffVTPPPNMgf5DhgxRbm6uVq1a5Wrr1q2bOnXqpPnz55vez263KzAwUNnZ2bLZbGX3IFch/JmPvV0CAAAAUGFOTBvg7RIklS4b+FRQTYW6cuWKdu3apYkTJ7raatSooV69emnbtm2FnrNt2zZNmDDBrS0mJkYrV64stL/D4ZDD4XDtZ2dnS/r5D6mycDp+8HYJAAAAQIWpLH8X/6WOkswleTU4fffdd8rPz1dISIhbe0hIiL7++utCz8nMzCy0f2ZmZqH9k5KSNGXKlALtYWFhHlYNAAAA4GoEzvZ2Be4uXbqkwMDAYvt4NThVhIkTJ7rNUDmdTp0/f17XXXedLBZLia5ht9sVFhamU6dOVZrX+1D1Ma5QHhhXKA+MK5QHxhXKQ2nHlWEYunTpkho3bmza16vBqUGDBqpZs6aysrLc2rOyshQaGlroOaGhoaXqb7VaZbVa3dqCgoI8qtdms/EPNsoc4wrlgXGF8sC4QnlgXKE8lGZcmc00/cKrq+r5+voqMjJSaWlprjan06m0tDRFRUUVek5UVJRbf0lKTU0tsj8AAAAAXC2vv6o3YcIEDRs2TF27dtUtt9yi2bNnKzc3VyNGjJAkxcfHq0mTJkpKSpIkJSYmKjo6WjNnztSAAQO0dOlS7dy5UwsXLvTmYwAAAAC4hnk9OA0ZMkTffvutnn/+eWVmZqpTp0765JNPXAtApKenq0aN/02Mde/eXUuWLNGzzz6rSZMmqWXLllq5cqXatWtXbjVarVZNnjy5wCt/wNVgXKE8MK5QHhhXKA+MK5SH8hxXXv8dJwAAAACo7Lz6jRMAAAAAVAUEJwAAAAAwQXACAAAAABMEJwAAAAAwQXAqgblz5yo8PFx+fn669dZb9fnnn3u7JFQRSUlJuvnmmxUQEKDg4GDFxsbq0KFDbn0uX76ssWPH6rrrrpO/v79+//vfF/iRZ6A406ZNk8Vi0fjx411tjCt44syZM3rggQd03XXXqXbt2mrfvr127tzpOm4Yhp5//nk1atRItWvXVq9evXTkyBEvVozKLj8/X88995wiIiJUu3Zt3XDDDZo6dap+vTYZ4wpmNm3apIEDB6px48ayWCxauXKl2/GSjKHz589r6NChstlsCgoKUkJCgnJyckpVB8HJxLJlyzRhwgRNnjxZu3fvVseOHRUTE6Nz5855uzRUARs3btTYsWO1fft2paamKi8vT3369FFubq6rz+OPP66PPvpIy5cv18aNG3X27FkNHjzYi1WjKtmxY4cWLFigDh06uLUzrlBaFy5c0G233aZatWppzZo1+vLLLzVz5kzVq1fP1eell17Syy+/rPnz5+uzzz5T3bp1FRMTo8uXL3uxclRm06dP17x58/Tqq6/qq6++0vTp0/XSSy/plVdecfVhXMFMbm6uOnbsqLlz5xZ6vCRjaOjQoTp48KBSU1O1atUqbdq0SQ899FDpCjFQrFtuucUYO3asaz8/P99o3LixkZSU5MWqUFWdO3fOkGRs3LjRMAzDuHjxolGrVi1j+fLlrj5fffWVIcnYtm2bt8pEFXHp0iWjZcuWRmpqqhEdHW0kJiYahsG4gmf+8pe/GLfffnuRx51OpxEaGmrMmDHD1Xbx4kXDarUa77zzTkWUiCpowIABxsiRI93aBg8ebAwdOtQwDMYVSk+SsWLFCtd+ScbQl19+aUgyduzY4eqzZs0aw2KxGGfOnCnxvZlxKsaVK1e0a9cu9erVy9VWo0YN9erVS9u2bfNiZaiqsrOzJUn169eXJO3atUt5eXluY6x169Zq1qwZYwymxo4dqwEDBriNH4lxBc98+OGH6tq1q+677z4FBwerc+fOev31113Hjx8/rszMTLdxFRgYqFtvvZVxhSJ1795daWlpOnz4sCTpiy++0ObNm9WvXz9JjCtcvZKMoW3btikoKEhdu3Z19enVq5dq1Kihzz77rMT38im7sq893333nfLz8xUSEuLWHhISoq+//tpLVaGqcjqdGj9+vG677Ta1a9dOkpSZmSlfX18FBQW59Q0JCVFmZqYXqkRVsXTpUu3evVs7duwocIxxBU8cO3ZM8+bN04QJEzRp0iTt2LFDjz32mHx9fTVs2DDX2CnsfxMZVyjKM888I7vdrtatW6tmzZrKz8/X3/72Nw0dOlSSGFe4aiUZQ5mZmQoODnY77uPjo/r165dqnBGcgAoyduxYHThwQJs3b/Z2KajiTp06pcTERKWmpsrPz8/b5eAa4XQ61bVrV/3973+XJHXu3FkHDhzQ/PnzNWzYMC9Xh6rq3Xff1dtvv60lS5bopptu0t69ezV+/Hg1btyYcYUqh1f1itGgQQPVrFmzwEpUWVlZCg0N9VJVqIrGjRunVatWaf369WratKmrPTQ0VFeuXNHFixfd+jPGUJxdu3bp3Llz6tKli3x8fOTj46ONGzfq5Zdflo+Pj0JCQhhXKLVGjRqpbdu2bm1t2rRRenq6JLnGDv+biNJ46qmn9Mwzz+iPf/yj2rdvrz//+c96/PHHlZSUJIlxhatXkjEUGhpaYGG3n376SefPny/VOCM4FcPX11eRkZFKS0tztTmdTqWlpSkqKsqLlaGqMAxD48aN04oVK7Ru3TpFRES4HY+MjFStWrXcxtihQ4eUnp7OGEORevbsqf3792vv3r2urWvXrho6dKjr3zOuUFq33XZbgZ9LOHz4sJo3by5JioiIUGhoqNu4stvt+uyzzxhXKNIPP/ygGjXc/7pZs2ZNOZ1OSYwrXL2SjKGoqChdvHhRu3btcvVZt26dnE6nbr311pLf7KqXtrjGLV261LBarcbixYuNL7/80njooYeMoKAgIzMz09uloQp4+OGHjcDAQGPDhg1GRkaGa/vhhx9cfcaMGWM0a9bMWLdunbFz504jKirKiIqK8mLVqIp+vaqeYTCuUHqff/654ePjY/ztb38zjhw5Yrz99ttGnTp1jLfeesvVZ9q0aUZQUJDxwQcfGPv27TMGDRpkREREGD/++KMXK0dlNmzYMKNJkybGqlWrjOPHjxvvv/++0aBBA+Ppp5929WFcwcylS5eMPXv2GHv27DEkGbNmzTL27NljnDx50jCMko2hvn37Gp07dzY+++wzY/PmzUbLli2NuLi4UtVBcCqBV155xWjWrJnh6+tr3HLLLcb27du9XRKqCEmFbsnJya4+P/74o/HII48Y9erVM+rUqWPce++9RkZGhveKRpX02+DEuIInPvroI6Ndu3aG1Wo1WrdubSxcuNDtuNPpNJ577jkjJCTEsFqtRs+ePY1Dhw55qVpUBXa73UhMTDSaNWtm+Pn5Gddff73x17/+1XA4HK4+jCuYWb9+faF/nxo2bJhhGCUbQ99//70RFxdn+Pv7GzabzRgxYoRx6dKlUtVhMYxf/XQzAAAAAKAAvnECAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAAAAABMEJwAAAAAwQXACAFQ7PXr00Pjx471dBgCgCiE4AQCqlIEDB6pv376FHvv0009lsVi0b9++Cq4KAHCtIzgBAKqUhIQEpaam6vTp0wWOJScnq2vXrurQoYMXKgMAXMsITgCAKuWee+5Rw4YNtXjxYrf2nJwcLV++XLGxsYqLi1OTJk1Up04dtW/fXu+8806x17RYLFq5cqVbW1BQkNs9Tp06pfvvv19BQUGqX7++Bg0apBMnTpTNQwEAKj2CEwCgSvHx8VF8fLwWL14swzBc7cuXL1d+fr4eeOABRUZG6uOPP9aBAwf00EMP6c9//rM+//xzj++Zl5enmJgYBQQE6NNPP9WWLVvk7++vvn376sqVK2XxWACASo7gBACockaOHKlvvvlGGzdudLUlJyfr97//vZo3b64nn3xSnTp10vXXX69HH31Uffv21bvvvuvx/ZYtWyan06k33nhD7du3V5s2bZScnKz09HRt2LChDJ4IAFDZEZwAAFVO69at1b17dy1atEiSdPToUX366adKSEhQfn6+pk6dqvbt26t+/fry9/dXSkqK0tPTPb7fF198oaNHjyogIED+/v7y9/dX/fr1dfnyZX3zzTdl9VgAgErMx9sFAADgiYSEBD366KOaO3eukpOTdcMNNyg6OlrTp0/XnDlzNHv2bLVv315169bV+PHji32lzmKxuL32J/38et4vcnJyFBkZqbfffrvAuQ0bNiy7hwIAVFoEJwBAlXT//fcrMTFRS5Ys0ZtvvqmHH35YFotFW7Zs0aBBg/TAAw9IkpxOpw4fPqy2bdsWea2GDRsqIyPDtX/kyBH98MMPrv0uXbpo2bJlCg4Ols1mK7+HAgBUWryqBwCokvz9/TVkyBBNnDhRGRkZGj58uCSpZcuWSk1N1datW/XVV19p9OjRysrKKvZad999t1599VXt2bNHO3fu1JgxY1SrVi3X8aFDh6pBgwYaNGiQPv30Ux0/flwbNmzQY489Vuiy6ACAaw/BCQBQZSUkJOjChQuKiYlR48aNJUnPPvusunTpopiYGPXo0UOhoaGKjY0t9jozZ85UWFiY7rjjDv3pT3/Sk08+qTp16riO16lTR5s2bVKzZs00ePBgtWnTRgkJCbp8+TIzUABQTViM377UDQAAAABww4wTAAAAAJggOAEAAACACYITAAAAAJggOAEAAACACYITAAAAAJggOAEAAACACYITAAAAAJggOAEAAACACYITAAAAAJggOAEAAACACYITAAAAAJj4f6LcqYkcUhKRAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Get the variable to examine\n", + "var_data = df_students['Grade']\n", + "\n", + "# Create a Figure\n", + "fig = plt.figure(figsize=(10,4))\n", + "\n", + "# Plot a histogram\n", + "plt.hist(var_data)\n", + "\n", + "# Add titles and labels\n", + "plt.title('Data Distribution')\n", + "plt.xlabel('Value')\n", + "plt.ylabel('Frequency')\n", + "\n", + "# Show the figure\n", + "fig.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The histogram for grades is a symmetric shape, where the most frequently occurring grades tend to be in the middle of the range (around 50), with fewer grades at the extreme ends of the scale.\n", + "\n", + "#### Measures of central tendency\n", + "\n", + "To understand the distribution better, we can examine so-called *measures of central tendency*, which is a fancy way of describing statistics that represent the \"middle\" of the data. The goal of this analysis is to try to find a \"typical\" value. Common ways to define the middle of the data include:\n", + "\n", + "- The *mean*: A simple average based on adding together all of the values in the sample set and then dividing the total by the number of samples.\n", + "- The *median*: The value in the middle of the range of all of the sample values.\n", + "- The *mode*: The most commonly occurring value in the sample set\\*.\n", + "\n", + "Let's calculate these values, along with the minimum and maximum values for comparison, and show them on the histogram.\n", + "\n", + "> \\*Of course, in some sample sets, there might be a tie for the most common value. In those cases, the dataset is described as *bimodal* or even *multimodal*." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Minimum:3.00\n", + "Mean:49.18\n", + "Median:49.50\n", + "Mode:50.00\n", + "Maximum:97.00\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_2980\\2664441753.py:36: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + " fig.show()\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA04AAAGJCAYAAAC90mOkAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABI7ElEQVR4nO3dd3hUZeL+/3tSZtImAwRSSEITpEgTEA3qgoLSRJBdVMQNKGIDBWNZQdfGxw3ql+biUlSIriIuu4gVMQsGC6iAoGKhQ4AkIC0zCSSBmfP7w5+zjpRJQpKTybxf1zWXe555zpl79Ijn3lPGYhiGIQAAAADAGYWYHQAAAAAAajuKEwAAAAD4QXECAAAAAD8oTgAAAADgB8UJAAAAAPygOAEAAACAHxQnAAAAAPCD4gQAAAAAflCcAAAAAMAPihMAoM4YNWqUmjVrViOf1axZM40aNcq7nJWVJYvFonXr1tXI5/fq1Uu9evWqkc8CAFCcACAo/HpQ/+srIiJCjRs3Vt++ffX888/L5XJVeturV6/WE088oaNHj1ZdYElPPPGET+aoqCg1adJEgwYN0oIFC1RaWloln/PDDz/oiSee0K5du6pke1WpNmcDgGATZnYAAEDNeeqpp9S8eXOdOHFCBQUFysnJ0YQJEzRt2jS988476tixY4W3uXr1aj355JMaNWqU6tWrV+WZZ8+erZiYGJWWlmrfvn1avny5br31Vs2YMUPvvfeeUlNTvXNffPFFeTyeCm3/hx9+0JNPPqlevXpV6GzV5s2bFRJSvf//49myffTRR9X62QAAXxQnAAgi/fv3V7du3bzLEydO1MqVK3XNNdfo2muv1Y8//qjIyEgTE57qT3/6kxo2bOhdfuyxx/T6668rPT1dw4YN0xdffOF9Lzw8vFqzGIahkpISRUZGymazVetn+WO1Wk39fAAINlyqBwBB7sorr9Rf//pX7d69W6+99pp3/Ntvv9WoUaPUokULRUREKDExUbfeeqsOHTrknfPEE0/owQcflCQ1b97ce1ndr5eWLViwQFdeeaXi4+Nls9nUrl07zZ49+5wzjxgxQrfddpu+/PJLZWdne8dPd4/TokWL1LVrV9ntdsXGxqpDhw6aOXOmpF8uYRw2bJgk6YorrvDmz8nJkfTLfUzXXHONli9frm7duikyMlJz5871vvfbe5x+dezYMd1xxx2Ki4tTbGys0tPTdeTIEZ85FotFTzzxxCnr/nab/rKd7h6nAwcOaPTo0UpISFBERIQ6deqkV155xWfOrl27ZLFY9P/+3//TvHnzdN5558lms+miiy7S2rVrT/v3GwDAGScAgKQ///nPmjRpkj766CONGTNGkpSdna0dO3bolltuUWJior7//nvNmzdP33//vb744gtZLBYNHTpUW7Zs0RtvvKHp06d7zww1atRI0i+X2V1wwQW69tprFRYWpnfffVd33323PB6Pxo4de86Z582bp48++khXXXXVaedkZ2dr+PDh6t27t5555hlJ0o8//qjPP/9c48eP1x/+8Afde++9ev755zVp0iS1bdtWkrx/lX65JG/48OG64447NGbMGLVu3fqsucaNG6d69erpiSee0ObNmzV79mzt3r1bOTk5slgs5f5+5cn2W8ePH1evXr20bds2jRs3Ts2bN9fixYs1atQoHT16VOPHj/eZv3DhQrlcLt1xxx2yWCx69tlnNXToUO3YsaPaz9wBQCCiOAEAlJKSIofDoe3bt3vH7r77bt1///0+8y655BINHz5cn332mS6//HJ17NhRXbp00RtvvKEhQ4accrZn1apVPpf+jRs3Tv369dO0adPOuTi1b99eknwy/97777+v2NhYLV++XKGhoae836JFC11++eV6/vnnddVVV532KXXbtm3Thx9+qL59+5Yrl9Vq1YoVK7zlo2nTpnrooYf07rvv6tprry3XNsqb7bfmzZunH3/8Ua+99ppGjBghSbrzzjvVs2dPPfroo7r11ltlt9u983Nzc7V161bVr19fktS6dWsNHjxYy5cv1zXXXFPunAAQLLhUDwAgSYqJifF5ut5vC09JSYkOHjyoSy65RJL09ddfl2ubv91GYWGhDh48qJ49e2rHjh0qLCw857ySzvpEwHr16qm4uNjncr6Kat68eblLkyTdfvvtPmds7rrrLoWFhemDDz6odIby+OCDD5SYmKjhw4d7x8LDw3XvvfeqqKhIq1at8pl/ww03eEuTJF1++eWSpB07dlRrTgAIVBQnAIAkqaioyOeMxOHDhzV+/HglJCQoMjJSjRo1UvPmzSWp3KXn888/V58+fRQdHa169eqpUaNGmjRpUoW2cba8knwy/97dd9+t888/X/3791dKSopuvfVWffjhhxX6nF+/c3m1atXKZzkmJkZJSUnV/kjx3bt3q1WrVqc86e/XS/t2797tM96kSROf5V9L1O/vxwIA/IJL9QAA2rt3rwoLC9WyZUvv2PXXX6/Vq1frwQcfVOfOnRUTEyOPx6N+/fqV65Hf27dvV+/evdWmTRtNmzZNqampslqt+uCDDzR9+vQKPzb89zZt2iRJPpl/Lz4+Xhs3btTy5cu1bNkyLVu2TAsWLFB6evopD004k5p8yqDb7a6xzzrdpYvSL08OBACciuIEANA///lPSfJeknbkyBGtWLFCTz75pB577DHvvK1bt56y7pkeePDuu++qtLRU77zzjs/ZjY8//rhaMp+J1WrVoEGDNGjQIHk8Ht19992aO3eu/vrXv6ply5YVemBDeWzdulVXXHGFd7moqEj5+fkaMGCAd6x+/fqn/GBwWVmZ8vPzfcYqkq1p06b69ttv5fF4fM46/fTTT973AQCVx6V6ABDkVq5cqcmTJ6t58+behwr8ejbi92cfZsyYccr60dHRknRKETjdNgoLC7VgwYJzzrxw4UK99NJLSktLU+/evc8477ePTpekkJAQ74/8lpaWnjV/Zc2bN08nTpzwLs+ePVsnT55U//79vWPnnXeePvnkk1PW+/0Zp4pkGzBggAoKCvTmm296x06ePKm///3viomJUc+ePSvzdQAA/z/OOAFAEFm2bJl++uknnTx5Uvv379fKlSuVnZ2tpk2b6p133lFERIQkKTY2Vn/4wx/07LPP6sSJE0pOTtZHH32knTt3nrLNrl27SpIeeeQR3XjjjQoPD9egQYN09dVXe8/23HHHHSoqKtKLL76o+Pj4U86snM2///1vxcTEqKysTPv27dPy5cv1+eefq1OnTlq8ePFZ173tttt0+PBhXXnllUpJSdHu3bv197//XZ07d/be+9O5c2eFhobqmWeeUWFhoWw2m/e3pyqjrKxMvXv31vXXX6/NmzfrH//4hy677DKfJ+rddtttuvPOO/XHP/5RV111lb755hstX77c54d+K5rt9ttv19y5czVq1CitX79ezZo107///W99/vnnmjFjxlnvBQMAlIMBAKjzFixYYEjyvqxWq5GYmGhcddVVxsyZMw2n03nKOnv37jWuu+46o169eobD4TCGDRtm5OXlGZKMxx9/3Gfu5MmTjeTkZCMkJMSQZOzcudMwDMN45513jI4dOxoRERFGs2bNjGeeecaYP3++z5wzefzxx30yR0REGCkpKcY111xjzJ8/3ygpKTllnZEjRxpNmzb1Lv/73/82rr76aiM+Pt6wWq1GkyZNjDvuuMPIz8/3We/FF180WrRoYYSGhhqSjI8//tgwDMNo2rSpMXDgwNPma9q0qTFy5MhT/h6vWrXKuP3224369esbMTExxogRI4xDhw75rOt2u42//OUvRsOGDY2oqCijb9++xrZt207Z5tmy9ezZ0+jZs6fP3P379xu33HKL0bBhQ8NqtRodOnQwFixY4DNn586dhiTjueeeO+U7ne6fLQDgFxbD4C5QAAAAADgb7nECAAAAAD8oTgAAAADgB8UJAAAAAPygOAEAAACAHxQnAAAAAPCD4gQAAAAAfgTdD+B6PB7l5eXJbrfLYrGYHQcAAACASQzDkMvlUuPGjRUScvZzSkFXnPLy8pSammp2DAAAAAC1xJ49e5SSknLWOUFXnOx2u6Rf/ubExsaanAYAAACAWZxOp1JTU70d4WyCrjj9enlebGwsxQkAAABAuW7hCbriVNvk5eXJ7XYrNDRUjRs3NjsOANQ56yWVSaq3fr3alpVJVqvUtetv3rFK6mpmRAAIKoF6/EtxMtmiRYvkcrlkt9uVkZFhdhwAqHMGS9onKW/wYGnfPik5Wdq79zfvJEvaa2ZEAAgqgXr8y+PIAQAAAMAPihMAAAAA+EFxAgAAAAA/KE4AAAAA4AfFCQAAAAD8qDXFacqUKbJYLJowYcJZ5y1evFht2rRRRESEOnTooA8++KBmAgIAAAAIWrWiOK1du1Zz585Vx44dzzpv9erVGj58uEaPHq0NGzZoyJAhGjJkiDZt2lRDSQEAAAAEI9OLU1FRkUaMGKEXX3xR9evXP+vcmTNnql+/fnrwwQfVtm1bTZ48WV26dNGsWbNqKC0AAACAYGR6cRo7dqwGDhyoPn36+J27Zs2aU+b17dtXa9asOeM6paWlcjqdPi8AAAAAqIgwMz980aJF+vrrr7V27dpyzS8oKFBCQoLPWEJCggoKCs64TmZmpp588slzylmdxo4da3YEAHVcs4ffNzuCqUKsoUq1WHTliOcVWuaWIan44fcVbZ0ui0UyDKm4LLj/Hv3erikDzY4AoA4L1ONf04rTnj17NH78eGVnZysiIqLaPmfixInKyMjwLjudTqWmplbb51WUzWYzOwIA1GkhZW5J0nGLTfrNH7nFZVEmJQKA4Baox7+mFaf169frwIED6tKli3fM7Xbrk08+0axZs1RaWqrQ0FCfdRITE7V//36fsf379ysxMfGMn2Oz2QL2Hw4AAACA2sG0e5x69+6t7777Ths3bvS+unXrphEjRmjjxo2nlCZJSktL04oVK3zGsrOzlZaWVlOxAQAAAAQh08442e12tW/f3mcsOjpacXFx3vH09HQlJycrMzNTkjR+/Hj17NlTU6dO1cCBA7Vo0SKtW7dO8+bNq/H8VWXNmjUqLS2VzWajAAJANXBe1lyeiDCNW/SSGv60Vy5rlF7ufp1GX/aW7BHH5CqJ0sufXWd2TAAIGoF6/GvqwyH8yc3NVUjI/06K9ejRQwsXLtSjjz6qSZMmqVWrVlq6dOkpBSyQrFmzRi6XS3a7PaB2HAAIFM7Lm8vtiNSdI19XSl6e8mPi9HL363Tb5UuV5Dik/MI4ihMA1KBAPf6tVcUpJyfnrMuSNGzYMA0bNqxmAgEAAACAasHvOAEAAABAbUdxAgAAAAA/KE4AAAAA4AfFCQAAAAD8oDgBAAAAgB8UJwAAAADwg+IEAAAAAH7Uqt9xCkZJSUlyOByKiooyOwoA1EnWfU65j5bom/Pb64DsOhTlkCRt2nee8o821KFih8kJASC4BOrxr8UwDMPsEDXJ6XTK4XCosLBQsbGxZscBgGrX7OH3zY6AALNrykCzIwBAjahIN+BSPQAAAADwg+IEAAAAAH5QnAAAAADADx4OYbI33nhDx44dU1RUlIYPH252HACocw6kd5M72qolo25U0pbdOhTl0Jg/PqYX059SXHShDhU7NObVx8yOCQBBI1CPfylOJsvPz5fL5ZLdbjc7CgDUSWXJsXI7ItVpyyal5OUpPyZOktQ+ebuSHIeUXxhnckIACC6BevzLpXoAAAAA4AfFCQAAAAD8oDgBAAAAgB8UJwAAAADwg+IEAAAAAH5QnAAAAADAD4oTAAAAAPhBcQIAAAAAP/gBXJOlpaWptLRUNpvN7CgAUCfFfrpTnogwzek/Qg1/2iuXNUqS9NKnQ2SPOCZXSZTJCQEguATq8a/FMAzD7BA1yel0yuFwqLCwULGxsWbHAYBq1+zh982OgACza8pAsyMAQI2oSDfgUj0AAAAA8IPiBAAAAAB+mFqcZs+erY4dOyo2NlaxsbFKS0vTsmXLzjg/KytLFovF5xUREVGDiateaWmp9wUAqHoea6g8tjBFGqWKKT2m6NJjkqRo6zHF2I4p2nrM5IQAEFwC9fjX1IdDpKSkaMqUKWrVqpUMw9Arr7yiwYMHa8OGDbrgggtOu05sbKw2b97sXbZYLDUVt1q88MILcrlcstvtysjIMDsOANQ5eff3lNsRqT3JyUrJy1N+TJzSxr6i/95/l5Ich5RfGKe0zFfMjgkAQSNQj39NLU6DBg3yWX766ac1e/ZsffHFF2csThaLRYmJiTURDwAAAAAk1aJ7nNxutxYtWqTi4mKlpaWdcV5RUZGaNm2q1NRUDR48WN9///1Zt1taWiqn0+nzAgAAAICKML04fffdd4qJiZHNZtOdd96pt956S+3atTvt3NatW2v+/Pl6++239dprr8nj8ahHjx7au3fvGbefmZkph8PhfaWmplbXVwEAAABQR5lenFq3bq2NGzfqyy+/1F133aWRI0fqhx9+OO3ctLQ0paenq3PnzurZs6eWLFmiRo0aae7cuWfc/sSJE1VYWOh97dmzp7q+CgAAAIA6ytR7nCTJarWqZcuWkqSuXbtq7dq1mjlz5lnL0K/Cw8N14YUXatu2bWecY7PZAu5XiQEAAADULqafcfo9j8dT7kcTut1ufffdd0pKSqrmVAAAAACCmalnnCZOnKj+/furSZMmcrlcWrhwoXJycrR8+XJJUnp6upKTk5WZmSlJeuqpp3TJJZeoZcuWOnr0qJ577jnt3r1bt912m5lfAwAAAEAdZ2pxOnDggNLT05Wfny+Hw6GOHTtq+fLluuqqqyRJubm5Cgn530mxI0eOaMyYMSooKFD9+vXVtWtXrV69+owPkwAAAACAqmBqcXr55ZfP+n5OTo7P8vTp0zV9+vRqTAQAAAAApzL94RDB7sYbb5Tb7VZoaKjZUQCgTmr06jopNESjb3pS0QVHVRYaLkka8+pfZQ09oTJ3uMkJASC4BOrxL8XJZI0bNzY7AgDUabZ9v/zw+ebQJCn5fw8T2rSvpVmRACCoBerxb617qh4AAAAA1DYUJwAAAADwg0v1TLZlyxadOHFC4eHhOv/8882OAwB1zrE28TLCQ3T12lVy7PpZJWFWrWzZXVe2+UoR4WUqOWHVyp+6mx0TAIJGoB7/UpxM9t5778nlcslutysjI8PsOABQ5xy+rr3cjkg989C1SsnLU35MnNJadtfT172gJMch5RfGKS2T4gQANSVQj3+5VA8AAAAA/KA4AQAAAIAfFCcAAAAA8IPiBAAAAAB+UJwAAAAAwA+KEwAAAAD4QXECAAAAAD8oTgAAAADgB8XJZFar1fsCAFQ9S6lblpITKoqKlssaqWPWSEnSsdJIuUoidaw00uSEABBcAvX412IYhmF2iJrkdDrlcDhUWFio2NhYs+MAQLVr9vD7ZkdAgNk1ZaDZEQCgRlSkG3DGCQAAAAD8oDgBAAAAgB8UJwAAAADwI8zsAMHuo48+UklJiSIiInT11VebHQcA6pwj/dvIExWup6dOVvyPuSqMiFHmFbdqYv/5ckQVqfBYjDKX3Wp2TAAIGoF6/EtxMtmmTZvkcrlkt9sDascBgEBR3Lmx3I5IDf30A6Xk5Sk/Jk6ZV9yqazuvUpLjkPIL4yhOAFCDAvX4l0v1AAAAAMAPihMAAAAA+EFxAgAAAAA/KE4AAAAA4AfFCQAAAAD8MLU4zZ49Wx07dlRsbKxiY2OVlpamZcuWnXWdxYsXq02bNoqIiFCHDh30wQcf1FBaAAAAAMHK1OKUkpKiKVOmaP369Vq3bp2uvPJKDR48WN9///1p569evVrDhw/X6NGjtWHDBg0ZMkRDhgzRpk2bajg5AAAAgGBianEaNGiQBgwYoFatWun888/X008/rZiYGH3xxRennT9z5kz169dPDz74oNq2bavJkyerS5cumjVrVg0nBwAAABBMas0P4Lrdbi1evFjFxcVKS0s77Zw1a9YoIyPDZ6xv375aunTpGbdbWlqq0tJS77LT6aySvFWlVatW3l9OBgBUvcifDsgTadVH3Xsq4cdcFUbYJUkf/3SRHJEuFR63m5wQAIJLoB7/ml6cvvvuO6WlpamkpEQxMTF666231K5du9POLSgoUEJCgs9YQkKCCgoKzrj9zMxMPfnkk1WauSoNGjTI7AhAndHs4ffNjoBaKO6tXy7nfqr1CKn1/8YnvTXOpES1H/8undmuKQPNjgAEvEA9/jX9qXqtW7fWxo0b9eWXX+quu+7SyJEj9cMPP1TZ9idOnKjCwkLva8+ePVW2bQAAAADBwfQzTlarVS1btpQkde3aVWvXrtXMmTM1d+7cU+YmJiZq//79PmP79+9XYmLiGbdvs9lks9mqNjQAAACAoGL6Gaff83g8Pvck/VZaWppWrFjhM5adnX3Ge6IAAAAAoCqYesZp4sSJ6t+/v5o0aSKXy6WFCxcqJydHy5cvlySlp6crOTlZmZmZkqTx48erZ8+emjp1qgYOHKhFixZp3bp1mjdvnplf45zMmzdPRUVFiomJ0e233252HACoc/LHXSq33aYvL++hxjv36OeY+rp25Ay9M26CGtmP6GdXfV07a4bZMQEgaATq8a+pxenAgQNKT09Xfn6+HA6HOnbsqOXLl+uqq66SJOXm5iok5H8nxXr06KGFCxfq0Ucf1aRJk9SqVSstXbpU7du3N+srnLOioiK5XC6zYwBAneW22+R2RCrh0AElFR3yjjeyH1GS49BZ1gQAVIdAPf41tTi9/PLLZ30/JyfnlLFhw4Zp2LBh1ZQIAAAAAE5V6+5xAgAAAIDahuIEAAAAAH5QnAAAAADAD4oTAAAAAPhBcQIAAAAAPyhOAAAAAOAHxQkAAAAA/DD1d5wgXXXVVTpx4oTCw8PNjgIAdVL9D36SxxqqydeNVb3tBToebpMkZX5wiyKtpTpeZjM5IQAEl0A9/qU4maxDhw5mRwCAOi36mzxJ0vKYTlKnTt7xd77pZU4gAAhygXr8y6V6AAAAAOAHxQkAAAAA/OBSPZMdPHhQHo9HISEhatiwodlxAKDOOdEwWkaIRS0Ldst2qEjukFDtiEtRi4Z7FRriltsTqh0HU8yOCQBBI1CPfylOJnv11Vflcrlkt9uVkZFhdhwAqHP2j7lYbkekvkpOVkpenvJj4pQ29hW9PuYRJTkOKb8wTmmZr5gdEwCCRqAe/3KpHgAAAAD4QXECAAAAAD8oTgAAAADgB8UJAAAAAPygOAEAAACAHxQnAAAAAPCD4gQAAAAAflCcAAAAAMAPihMAAAAA+GExDMMwO0RNcjqdcjgcKiwsVGxsrNlx5HK5ZBiGLBaL7Ha72XGAgNbs4ffNjoBa6KTdJlksincelNVZIndIiH6OaaBG9sMKtXjkNkL0s6uB2TERIHZNGWh2BCDg1abj34p0g7AayoQzMHtnAYC6LsxVKkk6rBgpNsY7TlkCAHME6vEvl+oBAAAAgB+mFqfMzExddNFFstvtio+P15AhQ7R58+azrpOVlSWLxeLzioiIqKHEAAAAAIJRpS7V27Fjh1q0aHHOH75q1SqNHTtWF110kU6ePKlJkybp6quv1g8//KDo6OgzrhcbG+tTsCwWyzlnMcv69etVVlYmq9Wqrl27mh0HAOocV/dUGdYwjXxvkRpsydMxa6Te6NxPw7t/qCjrcR0ri9QbX/UzOyYABI1APf6tVHFq2bKlevbsqdGjR+tPf/pTpc/4fPjhhz7LWVlZio+P1/r16/WHP/zhjOtZLBYlJiZW6jNrm1WrVsnlcslutwfUjgMAgaKwdyu5HZG6/46XlZKXp/yYOL3RuZ/u7f2GkhyHlF8YR3ECgBoUqMe/lbpU7+uvv1bHjh2VkZGhxMRE3XHHHfrqq6/OOUxhYaEkqUGDs9+wW1RUpKZNmyo1NVWDBw/W999/f8a5paWlcjqdPi8AAAAAqIhKFafOnTtr5syZysvL0/z585Wfn6/LLrtM7du317Rp0/Tzzz9XeJsej0cTJkzQpZdeqvbt259xXuvWrTV//ny9/fbbeu211+TxeNSjRw/t3bv3tPMzMzPlcDi8r9TU1ApnAwAAABDczunhEGFhYRo6dKgWL16sZ555Rtu2bdMDDzyg1NRUpaenKz8/v9zbGjt2rDZt2qRFixaddV5aWprS09PVuXNn9ezZU0uWLFGjRo00d+7c086fOHGiCgsLva89e/ZU6DsCAAAAwDkVp3Xr1unuu+9WUlKSpk2bpgceeEDbt29Xdna28vLyNHjw4HJtZ9y4cXrvvff08ccfKyUlpUIZwsPDdeGFF2rbtm2nfd9msyk2NtbnBQAAAAAVUamHQ0ybNk0LFizQ5s2bNWDAAL366qsaMGCAQkJ+6WHNmzdXVlaWmjVrdtbtGIahe+65R2+99ZZycnLUvHnzCmdxu9367rvvNGDAgMp8FQAAAADwq1LFafbs2br11ls1atQoJSUlnXZOfHy8Xn755bNuZ+zYsVq4cKHefvtt2e12FRQUSJIcDociIyMlSenp6UpOTlZmZqYk6amnntIll1yili1b6ujRo3ruuee0e/du3XbbbZX5KgAAAADgV6WK09atW/3OsVqtGjly5FnnzJ49W5LUq1cvn/EFCxZo1KhRkqTc3FzvmSxJOnLkiMaMGaOCggLVr19fXbt21erVq9WuXbuKfQkAAAAAKKdKFacFCxYoJiZGw4YN8xlfvHixjh075rcw/cowDL9zcnJyfJanT5+u6dOnlzsrAAAAAJyrSj0cIjMzUw0bNjxlPD4+Xn/729/OOVQwiYuLU6NGjRQXF2d2FACok8IOFit8v0vbmrTQlrgm2tkgWZK082Cytuxvop0Hk01OCADBJVCPfy1GeU77/E5ERIR++umnUx7+sGvXLrVt21bHjx+vqnxVzul0yuFwqLCwkCfsAXVMs4ffNzsCgDpu15SBZkcAUIUq0g0qdcYpPj5e33777Snj33zzTcA1RwAAAADwp1LFafjw4br33nv18ccfy+12y+12a+XKlRo/frxuvPHGqs4IAAAAAKaq1MMhJk+erF27dql3794KC/tlEx6PR+np6dzjBAAAAKDOqVRxslqtevPNNzV58mR98803ioyMVIcOHdS0adOqzlfnLVmyRMeOHVNUVJSGDh1qdhwAqHN+vqGzPNFWZU24XUk/7tbhqFhNGPSgZtzwnBpEO3W4OFYT3nzQ7JgAEDQC9fi3UsXpV+eff77OP//8qsoSlHbt2iWXyyW73W52FACok0pbNJDbEalLv/lKKXl5yo/55V7ci1tsUpLjkPILuTcXAGpSoB7/Vqo4ud1uZWVlacWKFTpw4IA8Ho/P+ytXrqyScAAAAABQG1SqOI0fP15ZWVkaOHCg2rdvL4vFUtW5AAAAAKDWqFRxWrRokf71r39pwIABVZ0HAAAAAGqdSj2O3Gq1qmXLllWdBQAAAABqpUoVp/vvv18zZ86UYRhVnQcAAAAAap1KXar32Wef6eOPP9ayZct0wQUXKDw83Of9JUuWVEk4AAAAAKgNKlWc6tWrp+uuu66qswAAAABArVSp4rRgwYKqzgEAAAAAtValfwD35MmTysnJ0fbt23XTTTfJbrcrLy9PsbGxiomJqcqMdVqXLl1UWloqm81mdhQAqJNivtojT0SY/tn7j2r0Y65ctmhJ0qKv+soeUSxXSbTJCQEguATq8a/FqMQTHnbv3q1+/fopNzdXpaWl2rJli1q0aKHx48ertLRUc+bMqY6sVcLpdMrhcKiwsFCxsbFmxwFQhZo9/L7ZEQDUcbumDDQ7AoAqVJFuUKmn6o0fP17dunXTkSNHFBkZ6R2/7rrrtGLFispsEgAAAABqrUpdqvfpp59q9erVslqtPuPNmjXTvn37qiQYAAAAANQWlTrj5PF45Ha7Txnfu3ev7Hb7OYcCAAAAgNqkUmecrr76as2YMUPz5s2TJFksFhUVFenxxx/XgAEDqjRgXTdt2jS5XC7Z7XZlZGSYHQcA6py9E6+U2xGpPcnJSsnLU35MnNLGvqI1E0cqyXFI+YVxSst8xeyYABA0AvX4t1LFaerUqerbt6/atWunkpIS3XTTTdq6dasaNmyoN954o6ozAgAAAICpKlWcUlJS9M0332jRokX69ttvVVRUpNGjR2vEiBE+D4sAAAAAgLqg0r/jFBYWpptvvrkqswAAAABArVSp4vTqq6+e9f309PRKhQEAAACA2qhSxWn8+PE+yydOnNCxY8dktVoVFRVFcQIAAABQp1TqceRHjhzxeRUVFWnz5s267LLLKvRwiMzMTF100UWy2+2Kj4/XkCFDtHnzZr/rLV68WG3atFFERIQ6dOigDz74oDJfAwAAAADKpVLF6XRatWqlKVOmnHI26mxWrVqlsWPH6osvvlB2drZOnDihq6++WsXFxWdcZ/Xq1Ro+fLhGjx6tDRs2aMiQIRoyZIg2bdpUFV8DAAAAAE5R6YdDnHZjYWHKy8sr9/wPP/zQZzkrK0vx8fFav369/vCHP5x2nZkzZ6pfv3568MEHJUmTJ09Wdna2Zs2apTlz5lQ+PAAAAACcQaWK0zvvvOOzbBiG8vPzNWvWLF166aWVDlNYWChJatCgwRnnrFmz5pQfyurbt6+WLl162vmlpaUqLS31LjudzkrnAwAAABCcKlWchgwZ4rNssVjUqFEjXXnllZo6dWqlgng8Hk2YMEGXXnqp2rdvf8Z5BQUFSkhI8BlLSEhQQUHBaednZmbqySefrFSmmjB06FCdPHlSYWFVevIPdVizh983OwIQUBq+uVFGaIjuvXGSYvYcUllYuCTpvjfvlzX0hMrc4SYnRCDhz+DT2zVloNkREEAC9fi3Umk9Hk9V59DYsWO1adMmffbZZ1W63YkTJ/qcoXI6nUpNTa3SzzgXzZo1MzsCANRpETsOS5K+Dm8mtWjmHf9iR0dzAgFAkAvU499aUfPGjRun9957T5988olSUlLOOjcxMVH79+/3Gdu/f78SExNPO99ms8lms1VZVgAAAADBp1LF6ff3GJ3NtGnTzvieYRi655579NZbbyknJ0fNmzf3u720tDStWLFCEyZM8I5lZ2crLS2t3JkAAAAAoCIqVZw2bNigDRs26MSJE2rdurUkacuWLQoNDVWXLl288ywWy1m3M3bsWC1cuFBvv/227Ha79z4lh8OhyMhISVJ6erqSk5OVmZkp6Zcf3+3Zs6emTp2qgQMHatGiRVq3bp3mzZtXma9iul27dnmv8QzU05YAUJuVtGggIzREl/6wznuP0xdNOuqSFt9673Hisj0AqDmBevxbqeI0aNAg2e12vfLKK6pfv76kX34U95ZbbtHll1+u+++/v1zbmT17tiSpV69ePuMLFizQqFGjJEm5ubkKCfnfz0316NFDCxcu1KOPPqpJkyapVatWWrp06VkfKFGbLVmyRC6XS3a7vUJn8gAA5XPwhs5yOyL1fPJQpeTlKT8mTmljX9H0G6YqyXFI+YVxSst8xeyYABA0AvX4t1LFaerUqfroo4+8pUmS6tevr//7v//T1VdfXe7iZBiG3zk5OTmnjA0bNkzDhg0rd14AAAAAOBch/qecyul06ueffz5l/Oeff5bL5TrnUAAAAABQm1SqOF133XW65ZZbtGTJEu3du1d79+7Vf/7zH40ePVpDhw6t6owAAAAAYKpKXao3Z84cPfDAA7rpppt04sSJXzYUFqbRo0frueeeq9KAAAAAAGC2ShWnqKgo/eMf/9Bzzz2n7du3S5LOO+88RUdHV2k4AAAAAKgNKnWp3q/y8/OVn5+vVq1aKTo6ulwPewAAAACAQFOp4nTo0CH17t1b559/vgYMGKD8/HxJ0ujRo8v9RD0AAAAACBSVKk733XefwsPDlZubq6ioKO/4DTfcoA8//LDKwgEAAABAbVCpe5w++ugjLV++XCkpKT7jrVq10u7du6skGAAAAADUFpUqTsXFxT5nmn51+PBh2Wy2cw4VTALp15IBIBClZK6UJF3253k+42mZr5gRBwCCXqAe/1bqUr3LL79cr776qnfZYrHI4/Ho2Wef1RVXXFFl4QAAAACgNqjUGadnn31WvXv31rp161RWVqaHHnpI33//vQ4fPqzPP/+8qjMCAAAAgKkqdcapffv22rJliy677DINHjxYxcXFGjp0qDZs2KDzzjuvqjMCAAAAgKkqfMbpxIkT6tevn+bMmaNHHnmkOjIFlZycHJWWlspms6lXr15mxwGAOudo71byRIRp4osz1OjHXLls0Zp52U0a33uh7BHFcpVEa+aKm8yOCQBBI1CPfytcnMLDw/Xtt99WR5ag9PXXX8vlcslutwfUjgMAgaKoe6rcjkj9+cb/KCUvT/kxcZp52U26sftyJTkOKb8wjuIEADUoUI9/K3Wp3s0336yXX365qrMAAAAAQK1UqYdDnDx5UvPnz9d///tfde3aVdHR0T7vT5s2rUrCAQAAAEBtUKHitGPHDjVr1kybNm1Sly5dJElbtmzxmWOxWKouHQAAAADUAhUqTq1atVJ+fr4+/vhjSdINN9yg559/XgkJCdUSDgAAAABqgwrd42QYhs/ysmXLVFxcXKWBAAAAAKC2qdTDIX71+yIFAAAAAHVRhYqTxWI55R4m7mkCAAAAUNdV6B4nwzA0atQo2Ww2SVJJSYnuvPPOU56qt2TJkqpLCAAAAAAmq1BxGjlypM/yzTffXKVhglGzZs107NgxRUVFmR0FAOok247D8kRb9Xmn7kqy7tbhqFhJ0pc72qtBtFOHi2NNTggAwSVQj38tRpDdqOR0OuVwOFRYWKjYWP5jicDT7OH3zY4AAICPXVMGmh0BqJSKdINzejgEAAAAAAQDihMAAAAA+GFqcfrkk080aNAgNW7cWBaLRUuXLj3r/JycHO+T/X77KigoqJnAAAAAAIJShR4OUdWKi4vVqVMn3XrrrRo6dGi519u8ebPPNYjx8fHVEa9GvPLKKyouLlZ0dPQpD98AAJy7gjEXyxNj00dDBqjx1lwdjK6nm4b/TQvHTFLDmKM6WFRPN734N7NjAkDQCNTjX1OLU//+/dW/f/8KrxcfH6969epVfSATHDp0SC6XSyUlJWZHAYA66WTDaLkdkWqZu0Mph/JkLy2WJDVvuE9JjkOyRxSbnBAAgkugHv8G5D1OnTt3VlJSkq666ip9/vnnZ51bWloqp9Pp8wIAAACAigio4pSUlKQ5c+boP//5j/7zn/8oNTVVvXr10tdff33GdTIzM+VwOLyv1NTUGkwMAAAAoC4w9VK9imrdurVat27tXe7Ro4e2b9+u6dOn65///Odp15k4caIyMjK8y06nk/IEAAAAoEICqjidTvfu3fXZZ5+d8X2bzSabzVaDiQAAAADUNQF1qd7pbNy4UUlJSWbHAAAAAFCHmXrGqaioSNu2bfMu79y5Uxs3blSDBg3UpEkTTZw4Ufv27dOrr74qSZoxY4aaN2+uCy64QCUlJXrppZe0cuVKffTRR2Z9BQAAAABBwNTitG7dOl1xxRXe5V/vRRo5cqSysrKUn5+v3Nxc7/tlZWW6//77tW/fPkVFRaljx47673//67MNAAAAAKhqphanXr16yTCMM76flZXls/zQQw/poYcequZUAAAAAOAr4B8OEeh69uypsrIyWa1Ws6MAQJ3kWLFVhjVMUweNVoMteTpmjZQkPb9iuKKsx3WsLNLkhAAQXAL1+NdinO2UTx3kdDrlcDhUWFio2NhYs+MAFdbs4ffNjgAAgI9dUwaaHQGolIp0g4B/qh4AAAAAVDeKEwAAAAD4wT1OJnO5XDIMQxaLRXa73ew4AFDnnLTbJItF8c6DsjpL5A4J0c8xDdTIflihFo/cRoh+djUwOyYABI1APf6lOJnsxRdflMvlkt1u9z6OHQBQdQrGXSq3I1JfJCcrJS9P+TFxShv7it4Zd5+SHIeUXxintMxXzI4JAEEjUI9/uVQPAAAAAPygOAEAAACAHxQnAAAAAPCD4gQAAAAAflCcAAAAAMAPihMAAAAA+EFxAgAAAAA/KE4AAAAA4AfFCQAAAAD8CDM7QLBLT0+Xx+NRSAgdFgCqQ8KLX8oIseimEZmyHSqSOyRUkjTixacVGuKW2xNqckIACC6BevxLcTJZw4YNzY4AAHVa+MFiSVJuSJzUKM47vuNgilmRACCoBerxb2DVPAAAAAAwAcUJAAAAAPzgUj2Tfffddzpx4oTCw8PVoUMHs+MAQJ1T3KmxPNZQ/enj91Rve4GOh9v0TrteurZTjiKtpTpeZtM73/QyOyYABI1APf6lOJksOztbLpdLdrs9oHYcAAgURwa0kdsRqb/e218peXnKj4nTO+16aeKABUpyHFJ+YRzFCQBqUKAe/3KpHgAAAAD4QXECAAAAAD8oTgAAAADgB8UJAAAAAPwwtTh98sknGjRokBo3biyLxaKlS5f6XScnJ0ddunSRzWZTy5YtlZWVVe05AQAAAAQ3U4tTcXGxOnXqpBdeeKFc83fu3KmBAwfqiiuu0MaNGzVhwgTddtttWr58eTUnBQAAABDMTH0cef/+/dW/f/9yz58zZ46aN2+uqVOnSpLatm2rzz77TNOnT1ffvn2rKyYAAACAIBdQ9zitWbNGffr08Rnr27ev1qxZc8Z1SktL5XQ6fV4AAAAAUBEB9QO4BQUFSkhI8BlLSEiQ0+nU8ePHFRkZeco6mZmZevLJJ2sqYoXFxMSowFmig4VuNXv4fbPjAECdE+oqlSTtj4tXqLNUP8fUlyT97PL9K4DK4xgGFTHI5lZzh10xMTFmR6mQgCpOlTFx4kRlZGR4l51Op1JTU01M5Ov222/nDxsAqEZJsz6XJP1xwP/5jF87a4YJaQAA75a2066MgWbHqLCAKk6JiYnav3+/z9j+/fsVGxt72rNNkmSz2WSz2WoiHgAAAIA6KqDucUpLS9OKFSt8xrKzs5WWlmZSIgAAAADBwNTiVFRUpI0bN2rjxo2Sfnnc+MaNG5Wbmyvpl8vs0tPTvfPvvPNO7dixQw899JB++ukn/eMf/9C//vUv3XfffWbEBwAAABAkTL1Ub926dbriiiu8y7/eizRy5EhlZWUpPz/fW6IkqXnz5nr//fd13333aebMmUpJSdFLL70U0I8if/fdd9XLulNlRqhWn2hmdhwAqHMOXddenkir/v74/Ur4MVeFEXZN6jdOf7tulhyRLhUet2vSW+PMjgkAQaNH+C4tXrxYERERGjRokNlxys3U4tSrVy8ZhnHG97Oysk67zoYNG6oxVc3aunWrmoe6VGyESyfMTgMAdc/xNvFyOyJ19VerlJKXp/yYOEnSFW3WKslxSPmFcSYnBIDgkhJaqB9+OCi73W52lAoJqHucAAAAAMAMFCcAAAAA8IPiBAAAAAB+UJwAAAAAwA+KEwAAAAD4QXECAAAAAD8oTgAAAADgB8UJAAAAAPww9QdwIbVv316vfLpVpUao2VEAoE6K3pgnT1S4llw+QPE/5qowIkaS9M7GnnJEFanwWIzJCQEguOw42UDp3RsrIiLC7CgVYjEMwzA7RE1yOp1yOBwqLCxUbGys2XEkSc0eft/sCAAAAECN2TVloNkRJFWsG3CpHgAAAAD4QXECAAAAAD8oTgAAAADgBw+HMNmsWbM0IuKIjhlWvVXa3uw4AFDn7MvoKXesTT90uEDJuXt1ICZOvcfM0YqMOxUfe0gHnHHqPW2O2TEBIGhcZ9ukzMxvZbfbNW7cOLPjlBtnnExWVlYmq8WjcIvb7CgAUCcZtlAZEeGKOVYse9lxRZUdlyRF2Y7LHnFcUbbjJicEgOASbnGrrKxMZWVlZkepEIoTAAAAAPhBcQIAAAAAPyhOAAAAAOAHxQkAAAAA/KA4AQAAAIAfFCcAAAAA8IPiBAAAAAB+UJwAAAAAwI8wswMEu2uuuUa3Z32pk3RYAKgWDd7aJCM8RH8Zdr8cu35WSZhVkvTIW2MVEV6mkhNWkxMCQHBZXdZUc0d0Vnh4uNlRKoTiZLLzzz9fuzxbzY4BAHVW1E8HJEmfR7SW2rT2jq/8qbtZkQAgqO311NMFF1xgdowK4zQHAAAAAPhRK4rTCy+8oGbNmikiIkIXX3yxvvrqqzPOzcrKksVi8XlFRETUYFoAAAAAwcb0S/XefPNNZWRkaM6cObr44os1Y8YM9e3bV5s3b1Z8fPxp14mNjdXmzZu9yxaLpabiVrm8vDw1CimSx7DokBFtdhwAqHNKk2Ol0BB13PmjoguOqiw0XJsSW6p98jZZQ0+ozB2uTftamh0TAIJGnKVYe/bsUWhoqBo3bmx2nHKzGIZhmBng4osv1kUXXaRZs2ZJkjwej1JTU3XPPffo4YcfPmV+VlaWJkyYoKNHj1bq85xOpxwOhwoLCxUbG3su0avEtGnT5HK5VGyE618lncyOAwB1zt6JV8rtiNSe5GSl5OUpPyZOaWNf0ZqJI5XkOKT8wjilZb5idkwACBrXR3yjaMsJ2e12ZWRkmJqlIt3A1Ev1ysrKtH79evXp08c7FhISoj59+mjNmjVnXK+oqEhNmzZVamqqBg8erO+///6Mc0tLS+V0On1eAAAAAFARphangwcPyu12KyEhwWc8ISFBBQUFp12ndevWmj9/vt5++2299tpr8ng86tGjh/bu3Xva+ZmZmXI4HN5XampqlX8PAAAAAHVbrXg4REWkpaUpPT1dnTt3Vs+ePbVkyRI1atRIc+fOPe38iRMnqrCw0Pvas2dPDScGAAAAEOhMfThEw4YNFRoaqv379/uM79+/X4mJieXaRnh4uC688EJt27bttO/bbDbZbLZzzgoAAAAgeJl6xslqtapr165asWKFd8zj8WjFihVKS0sr1zbcbre+++47JSUlVVdMAAAAAEHO9MeRZ2RkaOTIkerWrZu6d++uGTNmqLi4WLfccoskKT09XcnJycrMzJQkPfXUU7rkkkvUsmVLHT16VM8995x2796t2267zcyvAQAAAKAOM7043XDDDfr555/12GOPqaCgQJ07d9aHH37ofWBEbm6uQkL+d2LsyJEjGjNmjAoKClS/fn117dpVq1evVrt27cz6CgAAAADqONOLkySNGzdO48aNO+17OTk5PsvTp0/X9OnTayAVAAAAAPwi4J6qBwAAAAA1zWIYhmF2iJpUkV8HrgmlpaVq//hyGZJOKtTsOABQ53isoZLFouiSYoWWuWVIKrZFKdp6TBaLZBhScVmU2TEBIGiEya3vn+wrSaY//boi3aBWXKoXzGw2m05QmACg2oSUuSVJxy026Tf/faYsAYA5TirU9MJUGVyqBwAAAAB+UJwAAAAAwA8u1TPZmjVr1Dlsn04oVN+fTDQ7DgDUOc7LmssTEaZxi15Sw5/2ymWN0svdr9Poy96SPeKYXCVRevmz68yOCQBB44KwAuXk5MhmsyktLc3sOOVGcTLZmjVrdGG4S8VGOMUJAKqB8/LmcjsidefI15WSl6f8mDi93P063Xb5UiU5Dim/MI7iBAA16IKw/Vq1aq/sdntAFScu1QMAAAAAPyhOAAAAAOAHxQkAAAAA/KA4AQAAAIAfFCcAAAAA8IPiBAAAAAB+UJwAAAAAwA+KEwAAAAD4wQ/gmiwpKUnbCz0qMfhHAQDVwbrPKffREn1zfnsdkF2HohySpE37zlP+0YY6VOwwOSEABJdDnii1bmpXVFSU2VEqxGIYhmF2iJrkdDrlcDhUWFio2NhYs+NIkpo9/L7ZEQAAAIAas2vKQLMjSKpYN+BSPQAAAADwg+IEAAAAAH5QnAAAAADAD55IYLI33nhDA237VGKEaUVZK7PjAECdcyC9m9zRVi0ZdaOStuzWoSiHxvzxMb2Y/pTiogt1qNihMa8+ZnZMAAgava1b9fLLLysqKkrDhw83O065UZxMlp+fr/iQYhUb4WZHAYA6qSw5Vm5HpDpt2aSUvDzlx8RJktonb1eS45DyC+NMTggAwSUu5Jj27i2U3W43O0qFcKkeAAAAAPhBcQIAAAAAPyhOAAAAAOAHxQkAAAAA/KgVxemFF15Qs2bNFBERoYsvvlhfffXVWecvXrxYbdq0UUREhDp06KAPPvighpICAAAACEamF6c333xTGRkZevzxx/X111+rU6dO6tu3rw4cOHDa+atXr9bw4cM1evRobdiwQUOGDNGQIUO0adOmGk4OAAAAIFiYXpymTZumMWPG6JZbblG7du00Z84cRUVFaf78+aedP3PmTPXr108PPvig2rZtq8mTJ6tLly6aNWtWDScHAAAAECxM/R2nsrIyrV+/XhMnTvSOhYSEqE+fPlqzZs1p11mzZo0yMjJ8xvr27aulS5eedn5paalKS0u9y4WFhZIkp9N5jumrRklJiUpKSlQqtzylx8yOAwB1juF0SpYTcnk8ckpyGR55So/J5fQo2iK5nB7+/AWAGlRqKVGoTig8PNz0Y/JfP98wDL9zTS1OBw8elNvtVkJCgs94QkKCfvrpp9OuU1BQcNr5BQUFp52fmZmpJ5988pTx1NTUSqYGAASUGb/8pd2vy8VHpBnXq/WMXweOSLq+hkMBQPB6/jf/+5FHHjEtx2+5XC45HI6zzjG1ONWEiRMn+pyh8ng8Onz4sOLi4mSxWMq1DafTqdTUVO3Zs0exsbHVFRVBhv0K1YH9CtWB/QrVgf0K1aGi+5VhGHK5XGrcuLHfuaYWp4YNGyo0NFT79+/3Gd+/f78SExNPu05iYmKF5ttsNtlsNp+xevXqVSpvbGws/2KjyrFfoTqwX6E6sF+hOrBfoTpUZL/yd6bpV6Y+HMJqtapr165asWKFd8zj8WjFihVKS0s77TppaWk+8yUpOzv7jPMBAAAA4FyZfqleRkaGRo4cqW7duql79+6aMWOGiouLdcstt0iS0tPTlZycrMzMTEnS+PHj1bNnT02dOlUDBw7UokWLtG7dOs2bN8/MrwEAAACgDjO9ON1www36+eef9dhjj6mgoECdO3fWhx9+6H0ARG5urkJC/ndirEePHlq4cKEeffRRTZo0Sa1atdLSpUvVvn37astos9n0+OOPn3LJH3Au2K9QHdivUB3Yr1Ad2K9QHapzv7IY5Xn2HgAAAAAEMdN/ABcAAAAAajuKEwAAAAD4QXECAAAAAD8oTgAAAADgB8WpHF544QU1a9ZMERERuvjii/XVV1+ZHQkBIjMzUxdddJHsdrvi4+M1ZMgQbd682WdOSUmJxo4dq7i4OMXExOiPf/zjKT/yDJzNlClTZLFYNGHCBO8Y+xUqY9++fbr55psVFxenyMhIdejQQevWrfO+bxiGHnvsMSUlJSkyMlJ9+vTR1q1bTUyM2s7tduuvf/2rmjdvrsjISJ133nmaPHmyfvtsMvYr+PPJJ59o0KBBaty4sSwWi5YuXerzfnn2ocOHD2vEiBGKjY1VvXr1NHr0aBUVFVUoB8XJjzfffFMZGRl6/PHH9fXXX6tTp07q27evDhw4YHY0BIBVq1Zp7Nix+uKLL5Sdna0TJ07o6quvVnFxsXfOfffdp3fffVeLFy/WqlWrlJeXp6FDh5qYGoFk7dq1mjt3rjp27Ogzzn6Fijpy5IguvfRShYeHa9myZfrhhx80depU1a9f3zvn2Wef1fPPP685c+boyy+/VHR0tPr27auSkhITk6M2e+aZZzR79mzNmjVLP/74o5555hk9++yz+vvf/+6dw34Ff4qLi9WpUye98MILp32/PPvQiBEj9P333ys7O1vvvfeePvnkE91+++0VC2LgrLp3726MHTvWu+x2u43GjRsbmZmZJqZCoDpw4IAhyVi1apVhGIZx9OhRIzw83Fi8eLF3zo8//mhIMtasWWNWTAQIl8tltGrVysjOzjZ69uxpjB8/3jAM9itUzl/+8hfjsssuO+P7Ho/HSExMNJ577jnv2NGjRw2bzWa88cYbNRERAWjgwIHGrbfe6jM2dOhQY8SIEYZhsF+h4iQZb731lne5PPvQDz/8YEgy1q5d652zbNkyw2KxGPv27Sv3Z3PG6SzKysq0fv169enTxzsWEhKiPn36aM2aNSYmQ6AqLCyUJDVo0ECStH79ep04ccJnH2vTpo2aNGnCPga/xo4dq4EDB/rsPxL7FSrnnXfeUbdu3TRs2DDFx8frwgsv1Isvvuh9f+fOnSooKPDZrxwOhy6++GL2K5xRjx49tGLFCm3ZskWS9M033+izzz5T//79JbFf4dyVZx9as2aN6tWrp27dunnn9OnTRyEhIfryyy/L/VlhVRe77jl48KDcbrcSEhJ8xhMSEvTTTz+ZlAqByuPxaMKECbr00kvVvn17SVJBQYGsVqvq1avnMzchIUEFBQUmpESgWLRokb7++mutXbv2lPfYr1AZO3bs0OzZs5WRkaFJkyZp7dq1uvfee2W1WjVy5EjvvnO6/yayX+FMHn74YTmdTrVp00ahoaFyu916+umnNWLECEliv8I5K88+VFBQoPj4eJ/3w8LC1KBBgwrtZxQnoIaMHTtWmzZt0meffWZ2FAS4PXv2aPz48crOzlZERITZcVBHeDwedevWTX/7298kSRdeeKE2bdqkOXPmaOTIkSanQ6D617/+pddff10LFy7UBRdcoI0bN2rChAlq3Lgx+xUCDpfqnUXDhg0VGhp6ypOo9u/fr8TERJNSIRCNGzdO7733nj7++GOlpKR4xxMTE1VWVqajR4/6zGcfw9msX79eBw4cUJcuXRQWFqawsDCtWrVKzz//vMLCwpSQkMB+hQpLSkpSu3btfMbatm2r3NxcSfLuO/w3ERXx4IMP6uGHH9aNN96oDh066M9//rPuu+8+ZWZmSmK/wrkrzz6UmJh4yoPdTp48qcOHD1doP6M4nYXValXXrl21YsUK75jH49GKFSuUlpZmYjIECsMwNG7cOL311ltauXKlmjdv7vN+165dFR4e7rOPbd68Wbm5uexjOKPevXvru+++08aNG72vbt26acSIEd7/zX6Firr00ktP+bmELVu2qGnTppKk5s2bKzEx0We/cjqd+vLLL9mvcEbHjh1TSIjv4WZoaKg8Ho8k9iucu/LsQ2lpaTp69KjWr1/vnbNy5Up5PB5dfPHF5f+wc360RR23aNEiw2azGVlZWcYPP/xg3H777Ua9evWMgoICs6MhANx1112Gw+EwcnJyjPz8fO/r2LFj3jl33nmn0aRJE2PlypXGunXrjLS0NCMtLc3E1AhEv32qnmGwX6HivvrqKyMsLMx4+umnja1btxqvv/66ERUVZbz22mveOVOmTDHq1atnvP3228a3335rDB482GjevLlx/PhxE5OjNhs5cqSRnJxsvPfee8bOnTuNJUuWGA0bNjQeeugh7xz2K/jjcrmMDRs2GBs2bDAkGdOmTTM2bNhg7N692zCM8u1D/fr1My688ELjyy+/ND777DOjVatWxvDhwyuUg+JUDn//+9+NJk2aGFar1ejevbvxxRdfmB0JAULSaV8LFizwzjl+/Lhx9913G/Xr1zeioqKM6667zsjPzzcvNALS74sT+xUq49133zXat29v2Gw2o02bNsa8efN83vd4PMZf//pXIyEhwbDZbEbv3r2NzZs3m5QWgcDpdBrjx483mjRpYkRERBgtWrQwHnnkEaO0tNQ7h/0K/nz88cenPZ4aOXKkYRjl24cOHTpkDB8+3IiJiTFiY2ONW265xXC5XBXKYTGM3/x0MwAAAADgFNzjBAAAAAB+UJwAAAAAwA+KEwAAAAD4QXECAAAAAD8oTgAAAADgB8UJAAAAAPygOAEAAACAHxQnAAAAAPCD4gQACDq9evXShAkTzI4BAAggFCcAQEAZNGiQ+vXrd9r3Pv30U1ksFn377bc1nAoAUNdRnAAAAWX06NHKzs7W3r17T3lvwYIF6tatmzp27GhCMgBAXUZxAgAElGuuuUaNGjVSVlaWz3hRUZEWL16sIUOGaPjw4UpOTlZUVJQ6dOigN95446zbtFgsWrp0qc9YvXr1fD5jz549uv7661WvXj01aNBAgwcP1q5du6rmSwEAaj2KEwAgoISFhSk9PV1ZWVkyDMM7vnjxYrndbt18883q2rWr3n//fW3atEm33367/vznP+urr76q9GeeOHFCffv2ld1u16effqrPP/9cMTEx6tevn8rKyqriawEAajmKEwAg4Nx6663avn27Vq1a5R1bsGCB/vjHP6pp06Z64IEH1LlzZ7Vo0UL33HOP+vXrp3/961+V/rw333xTHo9HL730kjp06KC2bdtqwYIFys3NVU5OThV8IwBAbUdxAgAEnDZt2qhHjx6aP3++JGnbtm369NNPNXr0aLndbk2ePFkdOnRQgwYNFBMTo+XLlys3N7fSn/fNN99o27ZtstvtiomJUUxMjBo0aKCSkhJt3769qr4WAKAWCzM7AAAAlTF69Gjdc889euGFF7RgwQKdd9556tmzp5555hnNnDlTM2bMUIcOHRQdHa0JEyac9ZI6i8Xic9mf9Mvleb8qKipS165d9frrr5+ybqNGjaruSwEAai2KEwAgIF1//fUaP368Fi5cqFdffVV33XWXLBaLPv/8cw0ePFg333yzJMnj8WjLli1q167dGbfVqFEj5efne5e3bt2qY8eOeZe7dOmiN998U/Hx8YqNja2+LwUAqLW4VA8AEJBiYmJ0ww03aOLEicrPz9eoUaMkSa1atVJ2drZWr16tH3/8UXfccYf2799/1m1deeWVmjVrljZs2KB169bpzjvvVHh4uPf9ESNGqGHDhho8eLA+/fRT7dy5Uzk5Obr33ntP+1h0AEDdQ3ECAASs0aNH68iRI+rbt68aN24sSXr00UfVpUsX9e3bV7169VJiYqKGDBly1u1MnTpVqampuvzyy3XTTTfpgQceUFRUlPf9qKgoffLJJ2rSpImGDh2qtm3bavTo0SopKeEMFAAECYvx+4u6AQAAAAA+OOMEAAAAAH5QnAAAAADAD4oTAAAAAPhBcQIAAAAAPyhOAAAAAOAHxQkAAAAA/KA4AQAAAIAfFCcAAAAA8IPiBAAAAAB+UJwAAAAAwA+KEwAAAAD48f8BZAhruTsbbz4AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Get the variable to examine\n", + "var = df_students['Grade']\n", + "\n", + "# Get statistics\n", + "min_val = var.min()\n", + "max_val = var.max()\n", + "mean_val = var.mean()\n", + "med_val = var.median()\n", + "mod_val = var.mode()[0]\n", + "\n", + "print('Minimum:{:.2f}\\nMean:{:.2f}\\nMedian:{:.2f}\\nMode:{:.2f}\\nMaximum:{:.2f}\\n'.format(min_val,\n", + " mean_val,\n", + " med_val,\n", + " mod_val,\n", + " max_val))\n", + "\n", + "# Create a Figure\n", + "fig = plt.figure(figsize=(10,4))\n", + "\n", + "# Plot a histogram\n", + "plt.hist(var)\n", + "\n", + "# Add lines for the statistics\n", + "plt.axvline(x=min_val, color = 'gray', linestyle='dashed', linewidth = 2)\n", + "plt.axvline(x=mean_val, color = 'cyan', linestyle='dashed', linewidth = 2)\n", + "plt.axvline(x=med_val, color = 'red', linestyle='dashed', linewidth = 2)\n", + "plt.axvline(x=mod_val, color = 'yellow', linestyle='dashed', linewidth = 2)\n", + "plt.axvline(x=max_val, color = 'gray', linestyle='dashed', linewidth = 2)\n", + "\n", + "# Add titles and labels\n", + "plt.title('Data Distribution')\n", + "plt.xlabel('Value')\n", + "plt.ylabel('Frequency')\n", + "\n", + "# Show the figure\n", + "fig.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "For the grade data, the mean, median, and mode all seem to be more or less in the middle of the minimum and maximum, at around 50.\n", + "\n", + "Another way to visualize the distribution of a variable is to use a *box* plot (sometimes called a *box-and-whiskers* plot). Let's create one for the grade data." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_2980\\4088679524.py:14: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + " fig.show()\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAz8AAAF2CAYAAABAnSbOAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAjwElEQVR4nO3de5xXBZ3/8fcgwgzCDF5iRpLLZNRgeQlslbS8YWh5W1lLf1iiKZRQXtos2sBLF1ZrlXANxS20Vau1x6NW2wR9YOIjRbJxqy0BMVEpnHHLmBGUAZ3v7w9/fn+OkIF+hxHO8/l4nAd8zznfcz4D//DifM/5VpVKpVIAAAB2cL16egAAAIBtQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQxA8AAFAI4gcAACgE8QMAABSC+AEAAApB/ADwpjJx4sQMHz58m5xr+PDhmThxYvn1DTfckKqqqvzyl7/cJuc//PDDc/jhh2+TcwEgfgC2Gy//w/zlpbq6OoMHD864ceMye/bsPPvss6/72Pfff38uueSSrFmzpnIDJ7nkkku6zNyvX78MHTo0xx9/fObNm5eOjo6KnOfhhx/OJZdckscff7wix6ukN/NsAEXTu6cHAGDrXHbZZWlsbMzGjRvT0tKSe+65J+eff36uvPLK3Hbbbdlvv/22+pj3339/Lr300kycODEDBw6s+Mxz5sxJ//7909HRkT/+8Y9ZsGBBzjrrrMyaNSs/+clPMmTIkPK+119/fTo7O7fq+A8//HAuvfTSHH744Vt11Wj58uXp1at7/x/wtWa78847u/XcAHQlfgC2M8cee2wOPPDA8utp06bl7rvvznHHHZcTTjghS5cuTU1NTQ9OuKl/+Id/yB577FF+PWPGjNx88835+Mc/nlNOOSUPPPBAedvOO+/crbOUSqWsX78+NTU16du3b7ee62/p06dPj54foGh87A1gB3DkkUdm+vTpeeKJJ3LTTTeV1//mN7/JxIkT87a3vS3V1dVpaGjIWWedlT//+c/lfS655JJ87nOfS5I0NjaWP6L28se05s2blyOPPDKDBg1K3759s88++2TOnDlveOYJEybk7LPPzpIlS3LXXXeV12/unp/vf//7GT16dAYMGJDa2trsu++++eY3v5nkpY8DnnLKKUmSI444ojz/Pffck+Sl+3qOO+64LFiwIAceeGBqampy3XXXlbe98p6flz333HOZPHlydt9999TW1ubjH/94/vKXv3TZp6qqKpdccskm733lMf/WbJu75+fpp5/OJz7xidTX16e6ujr7779/brzxxi77PP7446mqqso3vvGNzJ07N3vvvXf69u2b9773vXnwwQc3++cNgCs/ADuMj33sY/niF7+YO++8M+ecc06S5K677spjjz2WM888Mw0NDfnd736XuXPn5ne/+10eeOCBVFVV5eSTT84jjzyS733ve7nqqqvKV2je8pa3JHnpI2vvete7csIJJ6R37965/fbbc+6556azszNTpkx5wzPPnTs3d955Z44++ujN7nPXXXfltNNOy1FHHZXLL788SbJ06dLcd999Oe+88/KBD3wgn/nMZzJ79ux88YtfzMiRI5Ok/Gvy0sfbTjvttEyePDnnnHNO3vnOd77mXFOnTs3AgQNzySWXZPny5ZkzZ06eeOKJ3HPPPamqqtrin29LZnul559/PocffngeffTRTJ06NY2Njbn11lszceLErFmzJuedd16X/W+55ZY8++yzmTx5cqqqqnLFFVfk5JNPzmOPPdbtV9AAtkfiB2AHsddee6Wuri6///3vy+vOPffcfPazn+2y38EHH5zTTjstP//5z/P+978/++23X0aNGpXvfe97Oemkkza56rJo0aIuH6ObOnVqjjnmmFx55ZVvOH7e/e53J0mXmV/tv/7rv1JbW5sFCxZkp5122mT72972trz//e/P7Nmzc/TRR2/26WmPPvpo5s+fn3Hjxm3RXH369MnChQvLATFs2LBcdNFFuf3223PCCSds0TG2dLZXmjt3bpYuXZqbbropEyZMSJJ88pOfzGGHHZYvfelLOeusszJgwIDy/k8++WRWrFiRXXfdNUnyzne+MyeeeGIWLFiQ4447bovnBCgKH3sD2IH079+/y1PfXhkt69evz5/+9KccfPDBSZKHHnpoi475ymO0tbXlT3/6Uw477LA89thjaWtre8PzJnnNJ9UNHDgw69at6/LRuK3V2Ni4xeGTJJMmTepy5eRTn/pUevfunZ/+9Keve4Yt8dOf/jQNDQ057bTTyut23nnnfOYzn8natWuzaNGiLvt/9KMfLYdPkrz//e9Pkjz22GPdOifA9kr8AOxA1q5d2+XKwDPPPJPzzjsv9fX1qampyVve8pY0NjYmyRaHy3333ZexY8dml112ycCBA/OWt7wlX/ziF7fqGK81b5IuM7/aueeem3e84x059thjs9dee+Wss87K/Pnzt+o8L//MW2rEiBFdXvfv3z977rlntz+u+oknnsiIESM2eQLdyx+Te+KJJ7qsHzp0aJfXL4fQq+9PAuAlPvYGsIP4wx/+kLa2trz97W8vr/vIRz6S+++/P5/73OdywAEHpH///uns7MwxxxyzRY+T/v3vf5+jjjoqTU1NufLKKzNkyJD06dMnP/3pT3PVVVdt9SOpX+23v/1tknSZ+dUGDRqUX/3qV1mwYEHuuOOO3HHHHZk3b14+/vGPb/IggL9mWz797sUXX9xm59rcxwCTl55oB8CmxA/ADuLf//3fk6T88a6//OUvWbhwYS699NLMmDGjvN+KFSs2ee9fu4n/9ttvT0dHR2677bYuVxl+9rOfdcvMf02fPn1y/PHH5/jjj09nZ2fOPffcXHfddZk+fXre/va3b9VDCLbEihUrcsQRR5Rfr127Nk899VQ+9KEPldftuuuum3wp7IYNG/LUU091Wbc1sw0bNiy/+c1v0tnZ2eXqz7Jly8rbAXj9fOwNYAdw991358tf/nIaGxvLN8q/fFXg1VcBZs2atcn7d9lllyTZ5B/zmztGW1tb5s2b94ZnvuWWW/Jv//ZvGTNmTI466qi/ut8rH8udJL169Sp/kWtHR8drzv96zZ07Nxs3biy/njNnTl544YUce+yx5XV777137r333k3e9+orP1sz24c+9KG0tLTkBz/4QXndCy+8kKuvvjr9+/fPYYcd9np+HAD+H1d+ALYzd9xxR5YtW5YXXnghra2tufvuu3PXXXdl2LBhue2221JdXZ0kqa2tzQc+8IFcccUV2bhxY9761rfmzjvvzMqVKzc55ujRo5Mk//RP/5RTTz01O++8c44//vh88IMfLF91mTx5ctauXZvrr78+gwYN2uQKx2v54Q9/mP79+2fDhg354x//mAULFuS+++7L/vvvn1tvvfU133v22WfnmWeeyZFHHpm99torTzzxRK6++uoccMAB5XthDjjggOy00065/PLL09bWlr59+5a/m+j12LBhQ4466qh85CMfyfLly/Otb30rhx56aJcnvZ199tn55Cc/mfHjx+foo4/Or3/96yxYsKDLl7lu7WyTJk3Kddddl4kTJ6a5uTnDhw/PD3/4w9x3332ZNWvWa94bBcAWKAGwXZg3b14pSXnp06dPqaGhoXT00UeXvvnNb5ba29s3ec8f/vCH0t///d+XBg4cWKqrqyudcsoppdWrV5eSlC6++OIu+375y18uvfWtby316tWrlKS0cuXKUqlUKt12222l/fbbr1RdXV0aPnx46fLLLy995zvf6bLPX3PxxRd3mbm6urq01157lY477rjSd77zndL69es3ec8ZZ5xRGjZsWPn1D3/4w9IHP/jB0qBBg0p9+vQpDR06tDR58uTSU0891eV9119/feltb3tbaaeddiolKf3sZz8rlUql0rBhw0of/vCHNzvfsGHDSmecccYmf8aLFi0qTZo0qbTrrruW+vfvX5owYULpz3/+c5f3vvjii6XPf/7zpT322KPUr1+/0rhx40qPPvroJsd8rdkOO+yw0mGHHdZl39bW1tKZZ55Z2mOPPUp9+vQp7bvvvqV58+Z12WflypWlJKWvf/3rm/xMm/u7BeAlVaWSuyIBAIAdn3t+AACAQhA/AABAIYgfAACgEMQPAABQCOIHAAAoBPEDAAAUwnb5JaednZ1ZvXp1BgwYkKqqqp4eBwAA6CGlUinPPvtsBg8enF69XvvaznYZP6tXr86QIUN6egwAAOBNYtWqVdlrr71ec5+tjp977703X//619Pc3JynnnoqP/rRj3LSSSeVt5dKpVx88cW5/vrrs2bNmhxyyCGZM2dORowYUd7nmWeeyac//encfvvt6dWrV8aPH59vfvOb6d+//xbNMGDAgPIPWFtbu7U/AgAAsINob2/PkCFDyo3wWrY6ftatW5f9998/Z511Vk4++eRNtl9xxRWZPXt2brzxxjQ2Nmb69OkZN25cHn744VRXVydJJkyYkKeeeip33XVXNm7cmDPPPDOTJk3KLbfcskUzvPxRt9raWvEDAABs0e0wVaVSqfRGTvDKKz+lUimDBw/OZz/72fzjP/5jkqStrS319fW54YYbcuqpp2bp0qXZZ5998uCDD+bAAw9MksyfPz8f+tCH8oc//CGDBw/+m+dtb29PXV1d2traxA8AABTY1rRBRZ/2tnLlyrS0tGTs2LHldXV1dTnooIOyePHiJMnixYszcODAcvgkydixY9OrV68sWbJks8ft6OhIe3t7lwUAAGBrVDR+WlpakiT19fVd1tfX15e3tbS0ZNCgQV229+7dO7vttlt5n1ebOXNm6urqyouHHQAAAFtru/ien2nTpqWtra28rFq1qqdHAgAAtjMVjZ+GhoYkSWtra5f1ra2t5W0NDQ15+umnu2x/4YUX8swzz5T3ebW+ffuWH27gIQcAAMDrUdH4aWxsTENDQxYuXFhe197eniVLlmTMmDFJkjFjxmTNmjVpbm4u73P33Xens7MzBx10UCXHAQAAKNvqR12vXbs2jz76aPn1ypUr86tf/Sq77bZbhg4dmvPPPz9f+cpXMmLEiPKjrgcPHlx+ItzIkSNzzDHH5Jxzzsm1116bjRs3ZurUqTn11FO36ElvAAAAr8dWx88vf/nLHHHEEeXXF154YZLkjDPOyA033JCLLroo69aty6RJk7JmzZoceuihmT9/fvk7fpLk5ptvztSpU3PUUUeVv+R09uzZFfhxAAAANu8Nfc9PT/E9PwAAQNKD3/MDAADwZrXVH3sDgM157rnnsmzZsm16zueffz6PP/54hg8fnpqamm167qampvTr12+bnhOAN0b8AFARy5Yty+jRo3t6jG2mubk5o0aN6ukxANgK4geAimhqauryNQbbwtKlS3P66afnpptuysiRI7fpuZuamrbp+QB448QPABXRr1+/HrsSMnLkSFdhAPibPPAAAAAoBPEDAAAUgvgBAAAKQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQxA8AAFAI4gcAACgE8QMAABSC+AEAAApB/AAAAIUgfgAAgEIQPwAAQCGIHwAAoBDEDwAAUAjiBwAAKATxAwAAFIL4AQAACkH8AAAAhSB+AACAQhA/AABAIYgfAACgEMQPAABQCOIHAAAoBPEDAAAUgvgBAAAKQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQxA8AAFAI4gcAACgE8QMAABSC+AEAAApB/AAAAIUgfgAAgEIQPwAAQCGIHwAAoBDEDwAAUAjiBwAAKATxAwAAFIL4AQAACqHi8fPiiy9m+vTpaWxsTE1NTfbee+98+ctfTqlUKu9TKpUyY8aM7LnnnqmpqcnYsWOzYsWKSo8CAABQVvH4ufzyyzNnzpz867/+a5YuXZrLL788V1xxRa6++uryPldccUVmz56da6+9NkuWLMkuu+yScePGZf369ZUeBwAAIEnSu9IHvP/++3PiiSfmwx/+cJJk+PDh+d73vpdf/OIXSV666jNr1qx86Utfyoknnpgk+e53v5v6+vr8+Mc/zqmnnlrpkQAAACp/5ed973tfFi5cmEceeSRJ8utf/zo///nPc+yxxyZJVq5cmZaWlowdO7b8nrq6uhx00EFZvHhxpccBAABI0g1Xfr7whS+kvb09TU1N2WmnnfLiiy/mq1/9aiZMmJAkaWlpSZLU19d3eV99fX1526t1dHSko6Oj/Lq9vb3SYwMAADu4il/5+Y//+I/cfPPNueWWW/LQQw/lxhtvzDe+8Y3ceOONr/uYM2fOTF1dXXkZMmRIBScGAACKoOLx87nPfS5f+MIXcuqpp2bffffNxz72sVxwwQWZOXNmkqShoSFJ0tra2uV9ra2t5W2vNm3atLS1tZWXVatWVXpsAABgB1fx+HnuuefSq1fXw+60007p7OxMkjQ2NqahoSELFy4sb29vb8+SJUsyZsyYzR6zb9++qa2t7bIAAABsjYrf83P88cfnq1/9aoYOHZp3vetd+e///u9ceeWVOeuss5IkVVVVOf/88/OVr3wlI0aMSGNjY6ZPn57BgwfnpJNOqvQ4AAAASbohfq6++upMnz495557bp5++ukMHjw4kydPzowZM8r7XHTRRVm3bl0mTZqUNWvW5NBDD838+fNTXV1d6XEAAACSJFWlUqnU00Nsrfb29tTV1aWtrc1H4AAK7KGHHsro0aPT3NycUaNG9fQ4APSArWmDit/zAwAA8GYkfgAAgEIQPwAAQCGIHwAAoBDEDwAAUAjiBwAAKATxAwAAFIL4AQAACkH8AAAAhSB+AACAQhA/AABAIYgfAACgEMQPAABQCOIHAAAoBPEDAAAUgvgBAAAKQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQxA8AAFAI4gcAACgE8QMAABSC+AEAAApB/AAAAIUgfgAAgEIQPwAAQCGIHwAAoBDEDwAAUAjiBwAAKATxAwAAFIL4AQAACkH8AAAAhSB+AACAQhA/AABAIYgfAACgEMQPAABQCOIHAAAoBPEDAAAUgvgBAAAKQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQevf0AABU3ooVK/Lss8/29BjdbunSpV1+3ZENGDAgI0aM6OkxALZr4gdgB7NixYq84x3v6OkxtqnTTz+9p0fYJh555BEBBPAGiB+AHczLV3xuuummjBw5soen6V7PP/98Hn/88QwfPjw1NTU9PU63Wbp0aU4//fRCXM0D6E7iB2AHNXLkyIwaNaqnx+h2hxxySE+PAMB2wgMPAACAQuiW+PnjH/+Y008/Pbvvvntqamqy77775pe//GV5e6lUyowZM7LnnnumpqYmY8eOzYoVK7pjFAAAgCTdED9/+ctfcsghh2TnnXfOHXfckYcffjj/8i//kl133bW8zxVXXJHZs2fn2muvzZIlS7LLLrtk3LhxWb9+faXHAQAASNIN9/xcfvnlGTJkSObNm1de19jYWP59qVTKrFmz8qUvfSknnnhikuS73/1u6uvr8+Mf/zinnnpqpUcCAACo/JWf2267LQceeGBOOeWUDBo0KO95z3ty/fXXl7evXLkyLS0tGTt2bHldXV1dDjrooCxevHizx+zo6Eh7e3uXBQAAYGtUPH4ee+yxzJkzJyNGjMiCBQvyqU99Kp/5zGdy4403JklaWlqSJPX19V3eV19fX972ajNnzkxdXV15GTJkSKXHBgAAdnAVj5/Ozs6MGjUqX/va1/Ke97wnkyZNyjnnnJNrr732dR9z2rRpaWtrKy+rVq2q4MQAAEARVDx+9txzz+yzzz5d1o0cOTJPPvlkkqShoSFJ0tra2mWf1tbW8rZX69u3b2pra7ssAAAAW6Pi8XPIIYdk+fLlXdY98sgjGTZsWJKXHn7Q0NCQhQsXlre3t7dnyZIlGTNmTKXHAQAASNINT3u74IIL8r73vS9f+9rX8pGPfCS/+MUvMnfu3MydOzdJUlVVlfPPPz9f+cpXMmLEiDQ2Nmb69OkZPHhwTjrppEqPAwAAkKQb4ue9731vfvSjH2XatGm57LLL0tjYmFmzZmXChAnlfS666KKsW7cukyZNypo1a3LooYdm/vz5qa6urvQ4AAAASbohfpLkuOOOy3HHHfdXt1dVVeWyyy7LZZdd1h2nBwAA2ETF7/kBAAB4MxI/AABAIYgfAACgEMQPAABQCOIHAAAoBPEDAAAUgvgBAAAKQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQxA8AAFAI4gcAACgE8QMAABSC+AEAAApB/AAAAIUgfgAAgEIQPwAAQCGIHwAAoBDEDwAAUAjiBwAAKATxAwAAFIL4AQAACkH8AAAAhdC7pwcAoPIa+lelZs0jyWr/x7UjqFnzSBr6V/X0GADbPfEDsAOaPLpPRt47Obm3pyehEkbmpb9TAN4Y8QOwA7queUM+OuOGjGxq6ulRqICly5blun/5PzmhpwcB2M6JH4AdUMvaUp4f+I5k8AE9PQoV8HxLZ1rWlnp6DIDtng+DAwAAhSB+AACAQhA/AABAIYgfAACgEMQPAABQCOIHAAAoBPEDAAAUgvgBAAAKQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQxA8AAFAI4gcAACgE8QMAABSC+AEAAApB/AAAAIUgfgAAgEIQPwAAQCGIHwAAoBDEDwAAUAjdHj///M//nKqqqpx//vnldevXr8+UKVOy++67p3///hk/fnxaW1u7exQAAKDAujV+HnzwwVx33XXZb7/9uqy/4IILcvvtt+fWW2/NokWLsnr16px88sndOQoAAFBw3RY/a9euzYQJE3L99ddn1113La9va2vLt7/97Vx55ZU58sgjM3r06MybNy/3339/Hnjgge4aBwAAKLhui58pU6bkwx/+cMaOHdtlfXNzczZu3NhlfVNTU4YOHZrFixdv9lgdHR1pb2/vsgAAAGyN3t1x0O9///t56KGH8uCDD26yraWlJX369MnAgQO7rK+vr09LS8tmjzdz5sxceuml3TEqAABQEBW/8rNq1aqcd955ufnmm1NdXV2RY06bNi1tbW3lZdWqVRU5LgAAUBwVj5/m5uY8/fTTGTVqVHr37p3evXtn0aJFmT17dnr37p36+vps2LAha9as6fK+1tbWNDQ0bPaYffv2TW1tbZcFAABga1T8Y29HHXVU/ud//qfLujPPPDNNTU35/Oc/nyFDhmTnnXfOwoULM378+CTJ8uXL8+STT2bMmDGVHgcAACBJN8TPgAED8u53v7vLul122SW77757ef0nPvGJXHjhhdltt91SW1ubT3/60xkzZkwOPvjgSo8DAACQpJseePC3XHXVVenVq1fGjx+fjo6OjBs3Lt/61rd6YhQAAKAgtkn83HPPPV1eV1dX55prrsk111yzLU4PAADQfd/zAwAA8GYifgAAgEIQPwAAQCH0yAMPAOg+zz33XJLkoYce6uFJut/zzz+fxx9/PMOHD09NTU1Pj9Ntli5d2tMjAOwQxA/ADmbZsmVJknPOOaeHJ6HSBgwY0NMjAGzXxA/ADuakk05KkjQ1NaVfv349O0w3W7p0aU4//fTcdNNNGTlyZE+P060GDBiQESNG9PQYANs18QOwg9ljjz1y9tln9/QY29TIkSMzatSonh4DgDc5DzwAAAAKQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQxA8AAFAI4gcAACgE8QMAABSC+AEAAApB/AAAAIUgfgAAgEIQPwAAQCGIHwAAoBDEDwAAUAjiBwAAKATxAwAAFIL4AQAACkH8AAAAhSB+AACAQhA/AABAIYgfAACgEMQPAABQCOIHAAAoBPEDAAAUgvgBAAAKQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQxA8AAFAI4gcAACgE8QMAABSC+AEAAApB/AAAAIUgfgAAgEIQPwAAQCGIHwAAoBDEDwAAUAjiBwAAKATxAwAAFIL4AQAACqHi8TNz5sy8973vzYABAzJo0KCcdNJJWb58eZd91q9fnylTpmT33XdP//79M378+LS2tlZ6FAAAgLKKx8+iRYsyZcqUPPDAA7nrrruycePGfPCDH8y6devK+1xwwQW5/fbbc+utt2bRokVZvXp1Tj755EqPAgAAUNa70gecP39+l9c33HBDBg0alObm5nzgAx9IW1tbvv3tb+eWW27JkUcemSSZN29eRo4cmQceeCAHH3xwpUcCAADo/nt+2trakiS77bZbkqS5uTkbN27M2LFjy/s0NTVl6NChWbx4cXePAwAAFFTFr/y8UmdnZ84///wccsghefe7350kaWlpSZ8+fTJw4MAu+9bX16elpWWzx+no6EhHR0f5dXt7e7fNDAAA7Ji69crPlClT8tvf/jbf//7339BxZs6cmbq6uvIyZMiQCk0IAAAURbfFz9SpU/OTn/wkP/vZz7LXXnuV1zc0NGTDhg1Zs2ZNl/1bW1vT0NCw2WNNmzYtbW1t5WXVqlXdNTYAALCDqnj8lEqlTJ06NT/60Y9y9913p7Gxscv20aNHZ+edd87ChQvL65YvX54nn3wyY8aM2ewx+/btm9ra2i4LAADA1qj4PT9TpkzJLbfckv/8z//MgAEDyvfx1NXVpaamJnV1dfnEJz6RCy+8MLvttltqa2vz6U9/OmPGjPGkNwAAoNtUPH7mzJmTJDn88MO7rJ83b14mTpyYJLnqqqvSq1evjB8/Ph0dHRk3bly+9a1vVXoUAACAsorHT6lU+pv7VFdX55prrsk111xT6dMDAABsVrd/zw8AAMCbgfgBAAAKQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQxA8AAFAI4gcAACgE8QMAABSC+AEAAApB/AAAAIUgfgAAgEIQPwAAQCGIHwAAoBDEDwAAUAjiBwAAKATxAwAAFIL4AQAACkH8AAAAhSB+AACAQhA/AABAIYgfAACgEMQPAABQCOIHAAAoBPEDAAAUgvgBAAAKQfwAAACFIH4AAIBCED8AAEAhiB8AAKAQxA8AAFAI4gcAACgE8QMAABSC+AEAAApB/AAAAIUgfgAAgEIQPwAAQCGIHwAAoBDEDwAAUAjiBwAAKATxAwAAFIL4AQAACkH8AAAAhdC7pwcAYMfw3HPPZdmyZdv0nEuXLu3y67bU1NSUfv36bfPzAvD6iR8AKmLZsmUZPXp0j5z79NNP3+bnbG5uzqhRo7b5eQF4/cQPABXR1NSU5ubmbXrO559/Po8//niGDx+empqabXrupqambXo+AN64qlKpVOrpIbZWe3t76urq0tbWltra2p4eBwAA6CFb0wYeeAAAABSC+AEAAAqhR+PnmmuuyfDhw1NdXZ2DDjoov/jFL3pyHAAAYAfWY/Hzgx/8IBdeeGEuvvjiPPTQQ9l///0zbty4PP300z01EgAAsAPrsfi58sorc8455+TMM8/MPvvsk2uvvTb9+vXLd77znZ4aCQAA2IH1SPxs2LAhzc3NGTt27P8fpFevjB07NosXL95k/46OjrS3t3dZAAAAtkaPxM+f/vSnvPjii6mvr++yvr6+Pi0tLZvsP3PmzNTV1ZWXIUOGbKtRAQCAHcR28bS3adOmpa2trbysWrWqp0cCAAC2M7174qR77LFHdtppp7S2tnZZ39ramoaGhk3279u3b/r27butxgMAAHZAPXLlp0+fPhk9enQWLlxYXtfZ2ZmFCxdmzJgxPTESAACwg+uRKz9JcuGFF+aMM87IgQcemL/7u7/LrFmzsm7dupx55pl/872lUilJPPgAAAAK7uUmeLkRXkuPxc9HP/rR/O///m9mzJiRlpaWHHDAAZk/f/4mD0HYnGeffTZJPPgAAABI8lIj1NXVveY+VaUtSaQ3mc7OzqxevToDBgxIVVVVT48DQA9pb2/PkCFDsmrVqtTW1vb0OAD0gFKplGeffTaDBw9Or16vfVfPdhk/AJC8FD91dXVpa2sTPwD8TdvFo64BAADeKPEDAAAUgvgBYLvVt2/fXHzxxb4LDoAt4p4fAACgEFz5AQAACkH8AAAAhSB+AACAQhA/AABAIYgfALY79957b44//vgMHjw4VVVV+fGPf9zTIwGwHRA/AGx31q1bl/333z/XXHNNT48CwHakd08PAABb69hjj82xxx7b02MAsJ1x5QcAACgE8QMAABSC+AEAAApB/AAAAIUgfgAAgELwtDcAtjtr167No48+Wn69cuXK/OpXv8puu+2WoUOH9uBkALyZVZVKpVJPDwEAW+Oee+7JEUccscn6M844IzfccMO2HwiA7YL4AQAACsE9PwAAQCGIHwAAoBDEDwAAUAjiBwAAKATxAwAAFIL4AQAACkH8AAAAhSB+AACAQhA/AABAIYgfAACgEMQPAABQCOIHAAAohP8LpY7qJ+k8P0gAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Get the variable to examine\n", + "var = df_students['Grade']\n", + "\n", + "# Create a Figure\n", + "fig = plt.figure(figsize=(10,4))\n", + "\n", + "# Plot a histogram\n", + "plt.boxplot(var)\n", + "\n", + "# Add titles and labels\n", + "plt.title('Data Distribution')\n", + "\n", + "# Show the figure\n", + "fig.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The box plot shows the distribution of the grade values in a format different from the histogram. The *box* part of the plot shows where the inner two *quartiles* of the data reside. In this case, half of the grades are between approximately 36 and 63. The *whiskers* extending from the box show the outer two quartiles, so the other half of the grades in this case are between 0 and 36 or 63 and 100. The line in the box indicates the *median* value.\n", + "\n", + "For learning, it's useful to combine histograms and box plots, with the box plot's orientation changed to align it with the histogram. (In some ways, it's helpful to think of the histogram as a \"front elevation\" view of the distribution, and the box plot as a \"plan\" view of the distribution from above.)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Minimum:3.00\n", + "Mean:49.18\n", + "Median:49.50\n", + "Mode:50.00\n", + "Maximum:97.00\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_2980\\1918122812.py:40: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + " fig.show()\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0EAAAGbCAYAAAACx5u5AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA+tklEQVR4nO3dd3xUZcL28WvSJm2S0EIIIRAVBaUooC6LLigoTZbiWhAklBXUsAZZG7gKPD5K8ZFVlKWtBn0VUXzUBVxElhJEEWmKSFU6SUBBMkMghcz9/uHLvI4gJEPCyeT8vp9PPjrn3HPOFb1xzuUp4zDGGAEAAACATYRYHQAAAAAALiZKEAAAAABboQQBAAAAsBVKEAAAAABboQQBAAAAsBVKEAAAAABboQQBAAAAsBVKEAAAAABboQQBAAAAsBVKEACg0g0cOFCNGjW6KPtq1KiRBg4c6Hs9e/ZsORwOrVu37qLsv0OHDurQocNF2RcAIDCUIACw0OkD9NM/kZGRSk5OVufOnTVlyhR5PJ6At/35559r7NixOnbsWMUFljR27Fi/zNHR0UpNTVWPHj2UlZWloqKiCtnPli1bNHbsWO3Zs6dCtleRqnI2AMD5hVkdAAAg/dd//ZfS0tJUUlKivLw8rVixQiNGjNDkyZM1f/58tWjRotzb/PzzzzVu3DgNHDhQCQkJFZ552rRpio2NVVFRkQ4ePKjFixdr8ODBevHFF7Vw4UI1aNDAN3bWrFnyer3l2v6WLVs0btw4dejQoVxnkbZv366QkMr9f3znyvbJJ59U6r4BABeOEgQAVUDXrl3Vpk0b3+tRo0Zp2bJluu222/THP/5RW7duVVRUlIUJz/SnP/1JtWvX9r1++umn9dZbb2nAgAG644479MUXX/jWhYeHV2oWY4wKCwsVFRUlp9NZqfs6n4iICEv3DwA4Py6HA4Aq6uabb9ZTTz2lvXv36s033/Qt37RpkwYOHKhLLrlEkZGRSkpK0uDBg3XkyBHfmLFjx+rRRx+VJKWlpfkuXTt9+VZWVpZuvvlmJSYmyul06sorr9S0adMuOHO/fv305z//WWvWrNGSJUt8y892T9DcuXPVunVruVwuxcXFqXnz5nrppZck/XyZ4B133CFJuummm3z5V6xYIenn+35uu+02LV68WG3atFFUVJRmzJjhW/fLe4JOO3HihIYNG6ZatWopLi5OAwYM0E8//eQ3xuFwaOzYsWe895fbPF+2s90TdPjwYQ0ZMkR169ZVZGSkWrZsqddff91vzJ49e+RwOPQ///M/mjlzpi699FI5nU5de+21Wrt27Vn/eQMAAsOZIACowu69916NHj1an3zyie677z5J0pIlS7Rr1y4NGjRISUlJ+vbbbzVz5kx9++23+uKLL+RwONSnTx/t2LFDb7/9tv7+97/7ztjUqVNH0s+Xsl111VX64x//qLCwMC1YsEAPPvigvF6vMjIyLjjzzJkz9cknn+iWW24565glS5aob9++6tixoyZOnChJ2rp1qz777DNlZmbqD3/4gx566CFNmTJFo0ePVtOmTSXJ91fp58ve+vbtq2HDhum+++7TFVdccc5cw4cPV0JCgsaOHavt27dr2rRp2rt3r1asWCGHw1Hm368s2X7p5MmT6tChg7777jsNHz5caWlpmjdvngYOHKhjx44pMzPTb/ycOXPk8Xg0bNgwORwOTZo0SX369NGuXbsq/YwaANgFJQgAqrCUlBTFx8fr+++/9y178MEH9de//tVv3O9+9zv17dtXq1at0o033qgWLVqoVatWevvtt9WrV68zzsJkZ2f7XV43fPhwdenSRZMnT77gEtSsWTNJ8sv8ax999JHi4uK0ePFihYaGnrH+kksu0Y033qgpU6bolltuOevT1r777jt9/PHH6ty5c5lyRUREaOnSpb4i0bBhQz322GNasGCB/vjHP5ZpG2XN9kszZ87U1q1b9eabb6pfv36SpPvvv1/t27fX3/72Nw0ePFgul8s3ft++fdq5c6dq1KghSbriiivUs2dPLV68WLfddluZcwIAfhuXwwFAFRcbG+v3lLhflpfCwkL9+OOP+t3vfidJ2rBhQ5m2+ctt5Ofn68cff1T79u21a9cu5efnX3BeSed8sl1CQoIKCgr8Lpkrr7S0tDIXIEkaOnSo35mUBx54QGFhYfr3v/8dcIay+Pe//62kpCT17dvXtyw8PFwPPfSQjh8/ruzsbL/xd911l68ASdKNN94oSdq1a1el5gQAO6EEAUAVd/z4cb8zBUePHlVmZqbq1q2rqKgo1alTR2lpaZJU5gLz2WefqVOnToqJiVFCQoLq1Kmj0aNHl2sb58oryS/zrz344IO6/PLL1bVrV6WkpGjw4MH6+OOPy7Wf079zWTVu3NjvdWxsrOrVq1fpj7neu3evGjdufMYT605fPrd3716/5ampqX6vTxeiX9+/BAAIHJfDAUAVduDAAeXn5+uyyy7zLbvzzjv1+eef69FHH9XVV1+t2NhYeb1edenSpUyPof7+++/VsWNHNWnSRJMnT1aDBg0UERGhf//73/r73/9e7kdZ/9rmzZslyS/zryUmJuqrr77S4sWLtWjRIi1atEhZWVkaMGDAGQ8M+C0X82l5paWlF21fZ7s8UPr5CXgAgIpBCQKAKuz//J//I0m+y75++uknLV26VOPGjdPTTz/tG7dz584z3vtbN/svWLBARUVFmj9/vt9Zh+XLl1dK5t8SERGhHj16qEePHvJ6vXrwwQc1Y8YMPfXUU7rsssvK9bCCsti5c6duuukm3+vjx48rNzdX3bp18y2rUaPGGV8uW1xcrNzcXL9l5cnWsGFDbdq0SV6v1+9s0LZt23zrAQAXF5fDAUAVtWzZMj3zzDNKS0vz3VB/+izBr88KvPjii2e8PyYmRpLOOKg/2zby8/OVlZV1wZnnzJmjf/7zn2rbtq06duz4m+N++ThvSQoJCfF9IWxRUdE58wdq5syZKikp8b2eNm2aTp06pa5du/qWXXrppVq5cuUZ7/v1maDyZOvWrZvy8vL0zjvv+JadOnVKL7/8smJjY9W+fftAfh0AwAXgTBAAVAGLFi3Stm3bdOrUKR06dEjLli3TkiVL1LBhQ82fP1+RkZGSpLi4OP3hD3/QpEmTVFJSovr16+uTTz7R7t27z9hm69atJUlPPvmk7r77boWHh6tHjx669dZbfWdhhg0bpuPHj2vWrFlKTEw844zHubz33nuKjY1VcXGxDh48qMWLF+uzzz5Ty5YtNW/evHO+989//rOOHj2qm2++WSkpKdq7d69efvllXX311b57Za6++mqFhoZq4sSJys/Pl9Pp9H23USCKi4vVsWNH3Xnnndq+fbv+8Y9/6IYbbvB7Mtyf//xn3X///br99tt1yy236Ouvv9bixYv9vhS2vNmGDh2qGTNmaODAgVq/fr0aNWqk9957T5999plefPHFc947BQCoJAYAYJmsrCwjyfcTERFhkpKSzC233GJeeukl43a7z3jPgQMHTO/evU1CQoKJj483d9xxh8nJyTGSzJgxY/zGPvPMM6Z+/fomJCTESDK7d+82xhgzf/5806JFCxMZGWkaNWpkJk6caF577TW/Mb9lzJgxfpkjIyNNSkqKue2228xrr71mCgsLz3hPenq6adiwoe/1e++9Z2699VaTmJhoIiIiTGpqqhk2bJjJzc31e9+sWbPMJZdcYkJDQ40ks3z5cmOMMQ0bNjTdu3c/a76GDRua9PT0M/4ZZ2dnm6FDh5oaNWqY2NhY069fP3PkyBG/95aWlprHH3/c1K5d20RHR5vOnTub77777oxtnitb+/btTfv27f3GHjp0yAwaNMjUrl3bREREmObNm5usrCy/Mbt37zaSzPPPP3/G73S2f7cAgMA5jOFOSwAAAAD2wT1BAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVsKsDnAhvF6vcnJy5HK55HA4rI4DAAAAwCLGGHk8HiUnJysk5NzneoK6BOXk5KhBgwZWxwAAAABQRezfv18pKSnnHBPUJcjlckn6+ReNi4uzNMsrr7wij8cjl8ul4cOHW5oFAKqrJpJyJW1v0kRJublSvXrStm2/WFNP0jYrIwKArVSlY2C3260GDRr4OsK5VJkSNGHCBI0aNUqZmZl68cUXy/Se05fAxcXFWV6CIiMjVVJSosjISMuzAEB1dfriBldIiOIkKSREiov7xZoQSfw3GAAulqp4DFyW22SqxIMR1q5dqxkzZqhFixZWRwEAAABQzVlego4fP65+/fpp1qxZqlGjhtVxAAAAAFRzlpegjIwMde/eXZ06dTrv2KKiIrndbr8fAAAAACgPS+8Jmjt3rjZs2KC1a9eWafz48eM1bty4Sk4FAFVXoyc+sjqCpfJG3SzFR6nUGElSbn6h2j7xkVaPKlS9+P/3ery9/xn92p4J3a2OAABVjmVngvbv36/MzEy99dZbioyMLNN7Ro0apfz8fN/P/v37KzklAAAAgOrGYcz/+99pF9mHH36o3r17KzQ01LestLRUDodDISEhKioq8lt3Nm63W/Hx8crPz68yT6MAgMpk9zNBKD/OBAGwi/J0A8suh+vYsaO++eYbv2WDBg1SkyZN9Pjjj5+3AAEAAABAICwrQS6XS82aNfNbFhMTo1q1ap2xHAAAAAAqiuVPhwMAAACAi8nSp8P92ooVK6yOELAVK1aoqKhITqdTHTp0sDoOAFRLxzo2ljcyTKNmvag6W/fJ44zRSzfco8yOc+SKLJCnMEYvLb3H6pgAYBvBegxcpUpQMNuwYYM8Ho9cLldQTQAACCbHr2ug0vgo3Xv3/yolJ0e5sbX00g336O7rFqte/BHl5teiBAHARRSsx8BcDgcAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFEgQAAADAVihBAAAAAGyFL0utII0aNdKJEycUHR1tdRQAqLacu47KGxOhz1pep3oRe3U0Ok6StGZXM9WMcetoQZzFCQHAXoL1GNhhjDFWhwiU2+1WfHy88vPzFRfHBx+A6q/REx9ZHQFBZs+E7lZHAICLojzdgMvhAAAAANgKJQgAAACArVCCAAAAANgKD0aoIK+//roKCgoUExOj9PR0q+MAQLWUd9/18sY69UmvbkreuU8/xiTonr7Pac59o1U79ph+PJ6ge2Y9Z3VMALCNYD0GpgRVkCNHjsjj8aiwsNDqKABQbZ2qHaPS+Chdtm+XUo7kyFVUIElKq31Q9eKPyBVZYHFCALCXYD0G5nI4AAAAALZCCQIAAABgK5QgAAAAALZCCQIAAABgK5QgAAAAALZCCQIAAABgK5QgAAAAALZiaQmaNm2aWrRoobi4OMXFxalt27ZatGiRlZEAAAAAVHMBfVnqrl27dMkll1zwzlNSUjRhwgQ1btxYxhi9/vrr6tmzpzZu3Kirrrrqgrd/MbVv317FxcWKiIiwOgoAVFvxS3fKRITphR5DVHNHjk5EREmSpiztq+iIkzpRHGVxQgCwl2A9BnYYY0x53xQSEqL27dtryJAh+tOf/qTIyMgKC1SzZk09//zzGjJkyHnHut1uxcfHKz8/X3FxcRWWAQCqqkZPfGR1BASZPRO6Wx0BAC6K8nSDgC6H27Bhg1q0aKGRI0cqKSlJw4YN05dffhlQ2NNKS0s1d+5cFRQUqG3btmcdU1RUJLfb7fcDAAAAAOUR0Jmg006dOqX58+dr9uzZ+vjjj3X55Zdr8ODBuvfee1WnTp0ybeObb75R27ZtVVhYqNjYWM2ZM0fdunU769ixY8dq3LhxZyznTBBQ/XDGA0Bl4ywZUL2U50zQBZWg04qKivSPf/xDo0aN8l0TeOedd2rixImqV6/eOd9bXFysffv2KT8/X++9957++c9/Kjs7W1deeeVZ91NUVOR77Xa71aBBgypRgjwej4wxcjgccrlclmYBqgNKEM7mlMspORxKdP+oCHehSkNC9ENsTdVxHVWow6tSE6IfPDWtjokgQQkCLlxVOgYuTwkK6MEIp61bt06vvfaa5s6dq5iYGD3yyCMaMmSIDhw4oHHjxqlnz57nvUwuIiJCl112mSSpdevWWrt2rV566SXNmDHjjLFOp1NOp/NCIleaWbNmyePxyOVyaeTIkVbHAYBqKW94O5XGR+mL+vWVkpOj3NhaapvxuuYPf1j14o8oN7+W2o5/3eqYAGAbwXoMHFAJmjx5srKysrR9+3Z169ZNb7zxhrp166aQkJ9vMUpLS9Ps2bPVqFGjcm/b6/X6ne0BAAAAgIoUUAmaNm2aBg8erIEDB/7m5W6JiYl69dVXz7mdUaNGqWvXrkpNTZXH49GcOXO0YsUKLV68OJBYAAAAAHBeAZWgnTt3nndMRESE0tPTzznm8OHDGjBggHJzcxUfH68WLVpo8eLFuuWWWwKJBQAAAADnFVAJysrKUmxsrO644w6/5fPmzdOJEyfOW35OO9+ZIgAAAACoaAF9T9D48eNVu3btM5YnJibqueeeu+BQAAAAAFBZAipB+/btU1pa2hnLGzZsqH379l1wKAAAAACoLAGVoMTERG3atOmM5V9//bVq1ap1waEAAAAAoLIEVIL69u2rhx56SMuXL1dpaalKS0u1bNkyZWZm6u67767ojAAAAABQYQJ6MMIzzzyjPXv2qGPHjgoL+3kTXq9XAwYM4J4gAAAAAFWawxhjAn3zjh079PXXXysqKkrNmzdXw4YNKzLbebndbsXHxys/P19xcXEXdd+/9uOPP8rr9SokJOSsD40AUD6NnvjI6giogkpqx8iEOHRZ3l45jxxXaUiodtVK0SW1Dyg0pFSl3lDt+jHF6pgIEnsmdLc6AhD0qtIxcHm6QUBngk67/PLLdfnll1/IJqoNq/+lA4AdhP9YIEnaF1JLqvP/70Gl+ACANYL1GDigElRaWqrZs2dr6dKlOnz4sLxer9/6ZcuWVUg4AAAAAKhoAZWgzMxMzZ49W927d1ezZs3kcDgqOhcAAAAAVIqAStDcuXP17rvvqlu3bhWdJ2h98803KikpUXh4uJo3b251HAColgpaJssbEao/LV+ohO/zdDLcqflXdtAfW65QVESRThY7Nf/rDlbHBADbCNZj4IBKUEREhC677LKKzhLUlixZIo/HI5fLFVQTAACCyU/dmqg0PkpPPdRVKTk5yo2tpflXdtCoblmqF39Eufm1KEEAcBEF6zFwQN8T9Ne//lUvvfSSLuDBcgAAAABgiYDOBK1atUrLly/XokWLdNVVVyk8PNxv/fvvv18h4QAAAACgogVUghISEtS7d++KzgIAAAAAlS6gEpSVlVXROQAAAADgogjoniBJOnXqlP7zn/9oxowZ8ng8kqScnBwdP368wsIBAAAAQEUL6EzQ3r171aVLF+3bt09FRUW65ZZb5HK5NHHiRBUVFWn69OkVnRMAAAAAKkRAZ4IyMzPVpk0b/fTTT4qKivIt7927t5YuXVph4QAAAACgogV0JujTTz/V559/roiICL/ljRo10sGDByskGAAAAABUhoBKkNfrVWlp6RnLDxw4IJfLdcGhglFsbKzfXwEAFS/UUyRJOlQrUaHuIv0QW0OS9IPH/68AgIsjWI+BHSaAbzy96667FB8fr5kzZ8rlcmnTpk2qU6eOevbsqdTU1Iv29Di32634+Hjl5+crLi7uouwTwMXR6ImPrI4AoJrbM6G71REAVKDydIOAzgS98MIL6ty5s6688koVFhbqnnvu0c6dO1W7dm29/fbbAYUGAAAAgIshoAcjpKSk6Ouvv9bo0aP18MMP65prrtGECRO0ceNGJSYmlnk748eP17XXXiuXy6XExET16tVL27dvDyQSAAAAAJRJQGeCJCksLEz9+/e/oJ1nZ2crIyND1157rU6dOqXRo0fr1ltv1ZYtWxQTE3NB2wYAAACAswmoBL3xxhvnXD9gwIAybefjjz/2ez179mwlJiZq/fr1+sMf/hBINMssWLBAhYWFioyMVI8ePayOAwDV0pHezeSNitDLY/6qulv3KT/SpdFdhuu53q8oPsqj/JMujf5guNUxAcA2gvUYOKASlJmZ6fe6pKREJ06cUEREhKKjo8tcgn4tPz9fklSzZs2zri8qKlJRUZHvtdvtDmg/lWHnzp3yeDy2fToeAFwMJ5skqjQ+Srd+ma2UnBzlxtaSJN3UZK3qxR9Rbn4tixMCgL0E6zFwQCXop59+OmPZzp079cADD+jRRx8NKIjX69WIESPUrl07NWvW7Kxjxo8fr3HjxgW0faAq4gloAGAd/ht8djw1D3YQ0IMRzqZx48aaMGHCGWeJyiojI0ObN2/W3Llzf3PMqFGjlJ+f7/vZv39/oHEBAAAA2FTAD0Y468bCwpSTk1Pu9w0fPlwLFy7UypUrlZKS8pvjnE6nnE7nhUQEAAAAYHMBlaD58+f7vTbGKDc3V6+88oratWtX5u0YY/SXv/xFH3zwgVasWKG0tLRA4gAAAABAmQVUgnr16uX32uFwqE6dOrr55pv1wgsvlHk7GRkZmjNnjv71r3/J5XIpLy9PkhQfH6+oqKhAogEAAADAOQVUgrxeb4XsfNq0aZKkDh06+C3PysrSwIEDK2QfAAAAAPBLFXpPUHkZY6zcPQAAAAAbCqgEjRw5ssxjJ0+eHMguAAAAAKBSBFSCNm7cqI0bN6qkpERXXHGFJGnHjh0KDQ1Vq1atfOMcDkfFpAwCzZo1831bLgCgcsR8lSNvdLjev7GbErfuU35krCRp/lftFR99XPknYi1OCAD2EqzHwA4TwDVpkydP1ooVK/T666+rRo0akn7+AtVBgwbpxhtv1F//+tcKD3o2brdb8fHxys/PV1xc3EXZJ1CR+KI+AEBVw5elIliVpxsE9GWpL7zwgsaPH+8rQJJUo0YN/fd//3e5ng4HAAAAABdbQCXI7Xbrhx9+OGP5Dz/8II/Hc8GhAAAAAKCyBFSCevfurUGDBun999/XgQMHdODAAf3v//6vhgwZoj59+lR0RgAAAACoMAE9GGH69Ol65JFHdM8996ikpOTnDYWFaciQIXr++ecrNGCweOWVV+TxeORyuTR8+HCr4wBAtXRwZHuVxjm1pflVqr/vgA7H1lLH+6Zr6cj7lRh3RIfdtdRx8nSrYwKAbQTrMXBAJSg6Olr/+Mc/9Pzzz+v777+XJF166aWKiYmp0HDBpLi42PcDAKgcxhkqExmu2BMFchWf1PHik5KkaOdJuSJP6njRSYsTAoC9BOsxcECXw52Wm5ur3NxcNW7cWDExMXz5KQAAAIAqL6ASdOTIEXXs2FGXX365unXrptzcXEnSkCFDLtrjsQEAAAAgEAGVoIcffljh4eHat2+foqOjfcvvuusuffzxxxUWDgAAAAAqWkD3BH3yySdavHixUlJS/JY3btxYe/furZBgAAAAAFAZAjoTVFBQ4HcG6LSjR4/K6XRecCgAAAAAqCwBlaAbb7xRb7zxhu+1w+GQ1+vVpEmTdNNNN1VYOAAAAACoaAFdDjdp0iR17NhR69atU3FxsR577DF9++23Onr0qD777LOKzggAAAAAFSagM0HNmjXTjh07dMMNN6hnz54qKChQnz59tHHjRl166aUVnREAAAAAKky5zwSVlJSoS5cumj59up588snKyBSUbrvtNpWUlCg8PNzqKABQbdX8YLNMeIgev+Ovit/zgwrDIiRJT36QocjwYhWWRFicEADsJViPgctdgsLDw7Vp06bKyBLULr/8cqsjAEC1F73tsCTps8grpCZX+JYv23adVZEAwNaC9Rg4oMvh+vfvr1dffbWiswAAAABApQvowQinTp3Sa6+9pv/85z9q3bq1YmJi/NZPnjy5QsIBAAAAQEUrVwnatWuXGjVqpM2bN6tVq1aSpB07dviNcTgcFZcuiOTk5Ki0tFShoaFKTk62Og4AVEtF9eOk0BC12L1VMXnHVBwars1Jl6lZ/e8UEVqi4tJwbT54mdUxAcA2gvUYuFwlqHHjxsrNzdXy5cslSXfddZemTJmiunXrVkq4YDJ37lx5PB65XC6NHDnS6jgAUC39MKCNSuOjtLb+nUrJyVFubC21zXhdswY8o3rxR5SbX0ttx79udUwAsI1gPQYu1z1Bxhi/14sWLVJBQUHAO1+5cqV69Oih5ORkORwOffjhhwFvCwAAAADKIqAHI5z261JUXgUFBWrZsqWmTp16QdsBAAAAgLIq1+VwDofjjHt+LuQeoK5du6pr164Bvx8AAAAAyqtcJcgYo4EDB8rpdEqSCgsLdf/995/xdLj333+/4hL+QlFRkYqKinyv3W53pewHAAAAQPVVrhKUnp7u97p///4VGuZ8xo8fr3Hjxl3UfZZXnrtQjZ74yOoYAAAAAeE4BuVxZ2ShYoLw4dDlKkFZWVmVlaNMRo0a5ffUCbfbrQYNGliYCAAAAECwCejLUq3idDp9l+IBAAAAQCAu6OlwAAAAABBsLD0TdPz4cX333Xe+17t379ZXX32lmjVrKjU11cJkAAAAAKorh7nQL/u5ACtWrNBNN910xvL09HTNnj37vO93u92Kj49Xfn6+4uLiKiFh2RUVFanZmMUykk4p1NIsAFBdeSNCJYdDMYUFCi0ulZFU4IxWTMQJORySMVJBcbTVMQHANsJUqm/HdZYky29bKU83sPRMUIcOHS74C1erCqfTqRLKDwBUqpDiUknSSYdT+sVnLcUHAKxxSqGWl59AcE8QAAAAAFuhBAEAAACwlaB6RHZVtnr1al0ddlAlCtW3p5KsjgMA1ZL7hjR5I8M0fO4/VXvbAXkiovXqdb015IYP5Io8IU9htF5d1dvqmABgG1eF5WnFihVyOp1q27at1XHKjBJUQVavXq1rwj0qMOGUIACoJO4b01QaH6X7099SSk6OcmNr6dXreuvPN36oevFHlJtfixIEABfRVWGHlJ19QC6XK6hKEJfDAQAAALAVShAAAAAAW6EEAQAAALAVShAAAAAAW6EEAQAAALAVShAAAAAAW6EEAQAAALAVShAAAAAAW+HLUitIvXr19H2+V4WGf6QAUFkiDrpVeqxQX1/eTIfl0pHoeEnS5oOXKvdYbR0piLc4IQDYyxFvtK5o6FJ0dLTVUcrFYYwxVocIlNvtVnx8vPLz8xUXF2d1HDV64iOrIwAAAAAX1Z4J3a2OIKl83YDL4QAAAADYCiUIAAAAgK1QggAAAADYCnfxV5C3335b3Z0HVWjCtLS4sdVxAKBaOjygjUpjIvT+wLtVb8deHYmO1323P61ZA/5LtWLydaQgXve98bTVMQHANjpG7NSrr76q6Oho9e3b1+o4ZUYJqiC5ublKDClQgQm3OgoAVFvF9eNUGh+lljs2KyUnR7mxtSRJzep/r3rxR5SbX8vihABgL7VCTujAgXy5XC6ro5QLl8MBAAAAsBVKEAAAAABboQQBAAAAsBVKEAAAAABbqRIlaOrUqWrUqJEiIyN1/fXX68svv7Q6EgAAAIBqyvIS9M4772jkyJEaM2aMNmzYoJYtW6pz5846fPiw1dEAAAAAVEOWl6DJkyfrvvvu06BBg3TllVdq+vTpio6O1muvvWZ1NAAAAADVkKXfE1RcXKz169dr1KhRvmUhISHq1KmTVq9efcb4oqIiFRUV+V7n5+dLktxud+WHPY/CwkIVFhaqSKXyFp2wOg4AVEvG7ZYcJfJ4vXJL8hivvEUn5HF7FeOQPG4v/w0GgIuoyFGoUJUoPDzc8mPy0/s3xpx3rMOUZVQlycnJUf369fX555+rbdu2vuWPPfaYsrOztWbNGr/xY8eO1bhx4y52TAAAAABBYv/+/UpJSTnnGEvPBJXXqFGjNHLkSN9rr9ero0ePqlatWnI4HGXahtvtVoMGDbR//37FxcVVVlTYDPMKlYF5hcrAvEJlYF6hogUyp4wx8ng8Sk5OPu9YS0tQ7dq1FRoaqkOHDvktP3TokJKSks4Y73Q65XQ6/ZYlJCQEtO+4uDj+kKLCMa9QGZhXqAzMK1QG5hUqWnnnVHx8fJnGWfpghIiICLVu3VpLly71LfN6vVq6dKnf5XEAAAAAUFEsvxxu5MiRSk9PV5s2bXTdddfpxRdfVEFBgQYNGmR1NAAAAADVkOUl6K677tIPP/ygp59+Wnl5ebr66qv18ccfq27dupWyP6fTqTFjxpxxWR1wIZhXqAzMK1QG5hUqA/MKFa2y55SlT4cDAAAAgIvN8i9LBQAAAICLiRIEAAAAwFYoQQAAAABshRIEAAAAwFZsVYKmTp2qRo0aKTIyUtdff72+/PJLqyMhiIwfP17XXnutXC6XEhMT1atXL23fvt1vTGFhoTIyMlSrVi3Fxsbq9ttvP+PLgIFzmTBhghwOh0aMGOFbxrxCIA4ePKj+/furVq1aioqKUvPmzbVu3TrfemOMnn76adWrV09RUVHq1KmTdu7caWFiVHWlpaV66qmnlJaWpqioKF166aV65pln9MtnbDGvcD4rV65Ujx49lJycLIfDoQ8//NBvfVnm0NGjR9WvXz/FxcUpISFBQ4YM0fHjx8uVwzYl6J133tHIkSM1ZswYbdiwQS1btlTnzp11+PBhq6MhSGRnZysjI0NffPGFlixZopKSEt16660qKCjwjXn44Ye1YMECzZs3T9nZ2crJyVGfPn0sTI1gsnbtWs2YMUMtWrTwW868Qnn99NNPateuncLDw7Vo0SJt2bJFL7zwgmrUqOEbM2nSJE2ZMkXTp0/XmjVrFBMTo86dO6uwsNDC5KjKJk6cqGnTpumVV17R1q1bNXHiRE2aNEkvv/yybwzzCudTUFCgli1baurUqWddX5Y51K9fP3377bdasmSJFi5cqJUrV2ro0KHlC2Js4rrrrjMZGRm+16WlpSY5OdmMHz/ewlQIZocPHzaSTHZ2tjHGmGPHjpnw8HAzb94835itW7caSWb16tVWxUSQ8Hg8pnHjxmbJkiWmffv2JjMz0xjDvEJgHn/8cXPDDTf85nqv12uSkpLM888/71t27Ngx43Q6zdtvv30xIiIIde/e3QwePNhvWZ8+fUy/fv2MMcwrlJ8k88EHH/hel2UObdmyxUgya9eu9Y1ZtGiRcTgc5uDBg2Xety3OBBUXF2v9+vXq1KmTb1lISIg6deqk1atXW5gMwSw/P1+SVLNmTUnS+vXrVVJS4jfPmjRpotTUVOYZzisjI0Pdu3f3mz8S8wqBmT9/vtq0aaM77rhDiYmJuuaaazRr1izf+t27dysvL89vXsXHx+v6669nXuE3/f73v9fSpUu1Y8cOSdLXX3+tVatWqWvXrpKYV7hwZZlDq1evVkJCgtq0aeMb06lTJ4WEhGjNmjVl3ldYxcWuun788UeVlpaqbt26fsvr1q2rbdu2WZQKwczr9WrEiBFq166dmjVrJknKy8tTRESEEhIS/MbWrVtXeXl5FqREsJg7d642bNigtWvXnrGOeYVA7Nq1S9OmTdPIkSM1evRorV27Vg899JAiIiKUnp7umztn+1xkXuG3PPHEE3K73WrSpIlCQ0NVWlqqZ599Vv369ZMk5hUuWFnmUF5enhITE/3Wh4WFqWbNmuWaZ7YoQUBFy8jI0ObNm7Vq1SqroyDI7d+/X5mZmVqyZIkiIyOtjoNqwuv1qk2bNnruueckSddcc402b96s6dOnKz093eJ0CFbvvvuu3nrrLc2ZM0dXXXWVvvrqK40YMULJycnMKwQdW1wOV7t2bYWGhp7xNKVDhw4pKSnJolQIVsOHD9fChQu1fPlypaSk+JYnJSWpuLhYx44d8xvPPMO5rF+/XocPH1arVq0UFhamsLAwZWdna8qUKQoLC1PdunWZVyi3evXq6corr/Rb1rRpU+3bt0+SfHOHz0WUx6OPPqonnnhCd999t5o3b657771XDz/8sMaPHy+JeYULV5Y5lJSUdMaDzU6dOqWjR4+Wa57ZogRFRESodevWWrp0qW+Z1+vV0qVL1bZtWwuTIZgYYzR8+HB98MEHWrZsmdLS0vzWt27dWuHh4X7zbPv27dq3bx/zDL+pY8eO+uabb/TVV1/5ftq0aaN+/fr5/p55hfJq167dGY/w37Fjhxo2bChJSktLU1JSkt+8crvdWrNmDfMKv+nEiRMKCfE/dAwNDZXX65XEvMKFK8scatu2rY4dO6b169f7xixbtkxer1fXX3992Xd2wY91CBJz5841TqfTzJ4922zZssUMHTrUJCQkmLy8PKujIUg88MADJj4+3qxYscLk5ub6fk6cOOEbc//995vU1FSzbNkys27dOtO2bVvTtm1bC1MjGP3y6XDGMK9Qfl9++aUJCwszzz77rNm5c6d56623THR0tHnzzTd9YyZMmGASEhLMv/71L7Np0ybTs2dPk5aWZk6ePGlhclRl6enppn79+mbhwoVm9+7d5v333ze1a9c2jz32mG8M8wrn4/F4zMaNG83GjRuNJDN58mSzceNGs3fvXmNM2eZQly5dzDXXXGPWrFljVq1aZRo3bmz69u1brhy2KUHGGPPyyy+b1NRUExERYa677jrzxRdfWB0JQUTSWX+ysrJ8Y06ePGkefPBBU6NGDRMdHW169+5tcnNzrQuNoPTrEsS8QiAWLFhgmjVrZpxOp2nSpImZOXOm33qv12ueeuopU7duXeN0Ok3Hjh3N9u3bLUqLYOB2u01mZqZJTU01kZGR5pJLLjFPPvmkKSoq8o1hXuF8li9fftbjqfT0dGNM2ebQkSNHTN++fU1sbKyJi4szgwYNMh6Pp1w5HMb84mt+AQAAAKCas8U9QQAAAABwGiUIAAAAgK1QggAAAADYCiUIAAAAgK1QggAAAADYSpjVAS6E1+tVTk6OXC6XHA6H1XEAAAAAWMQYI4/Ho+Tk5DO+2PfXgroE5eTkqEGDBlbHAAAAAFBF7N+/XykpKeccE9QlyOVySfr5F42Li7M4DQAAAACruN1uNWjQwNcRziWoS9DpS+Di4uIoQQAAAADKdJsMD0YAAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCuUIAAAAAC2QgkCAAAAYCthVgcAgGCyc+dOeTweq2MAVYrL5VLjxo2tjgEAZUYJAoAy2rlzpy6//HKrY0BSUqxDw1pHaMb6YuUdN1bHgaQdO3ZQhAAEDUoQAJTR6TNAb775ppo2bWpxGnuLOrZDTVcO011Pz9bJBIqplbZu3ar+/ftzhhRAUKEEAUA5NW3aVK1atbI6hr3lhEgrpaZNmkjJV1udBgAQZHgwAgAAAABboQRVkBMnTmjDhg06ceKE1VEAAACAiyJYj4EpQRVk27Ztat26tbZt22Z1FAAAAOCiCNZjYEoQAAAAAFuxtAStXLlSPXr0UHJyshwOhz788EMr4wAAAACwAUtLUEFBgVq2bKmpU6daGQMAAACAjVj6iOyuXbuqa9euVkYAAAAAYDNB9T1BRUVFKioq8r12u90WpvF38uRJST9/aRyA6un0n+/Tf94B8PkH2F2wfjYGVQkaP368xo0bZ3WMs9qzZ48kqX///tYGAVDp9uzZo3bt2lkdA6gS+PwDIAXfZ2NQlaBRo0Zp5MiRvtdut1sNGjSwMNH/16hRI0nSm2++qaZNm1obBkCl2Lp1q/r37+/78w6Azz/A7oL1szGoSpDT6ZTT6bQ6xllFRUVJkpo2bapWrVpZnAZAZTr95x0An38AfhZsn418TxAAAAAAW7H0TNDx48f13Xff+V7v3r1bX331lWrWrKnU1FQLkwEAAACoriwtQevWrdNNN93ke336fp/09HTNnj3bolQAAAAAqjNLS1CHDh1kjLEyQoVp0qSJ1q9fryZNmlgdBQAAALgogvUYOKgejFCVRUdHc0MoAAAAbCVYj4F5MAIAAAAAW+FMEACU0YkTJyRJGzZssDgJoo7tUFNJW7dt08k8r9VxbO30t8UDQDChBAFAGW3btk2SdN9991mcBEmxDg1rHaEZL9yjvOPV497SYOdyuayOAABlRgkCgDLq1auXpJ9vAo2OjrY2DCRJf7Q6ACT9XIAaN25sdQwAKDOHCeLHs7ndbsXHxys/P19xcXFWxwEAAABgkfJ0Ax6MAAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbIUSBAAAAMBWKEEAAAAAbCXM6gAXwhgjSXK73RYnAQAAAGCl053gdEc4l6AuQR6PR5LUoEEDi5MAAAAAqAo8Ho/i4+PPOcZhylKVqiiv16ucnBy5XC45HI4yvcftdqtBgwbav3+/4uLiKjkh7IJ5hcrAvEJlYF6hMjCvUNECmVPGGHk8HiUnJysk5Nx3/QT1maCQkBClpKQE9N64uDj+kKLCMa9QGZhXqAzMK1QG5hUqWnnn1PnOAJ3GgxEAAAAA2AolCAAAAICt2K4EOZ1OjRkzRk6n0+ooqEaYV6gMzCtUBuYVKgPzChWtsudUUD8YAQAAAADKy3ZnggAAAADYGyUIAAAAgK1QggAAAADYCiUIAAAAgK3YqgRNnTpVjRo1UmRkpK6//np9+eWXVkdCEBk/fryuvfZauVwuJSYmqlevXtq+fbvfmMLCQmVkZKhWrVqKjY3V7bffrkOHDlmUGMFowoQJcjgcGjFihG8Z8wqBOHjwoPr3769atWopKipKzZs317p163zrjTF6+umnVa9ePUVFRalTp07auXOnhYlR1ZWWluqpp55SWlqaoqKidOmll+qZZ57RL5+xxbzC+axcuVI9evRQcnKyHA6HPvzwQ7/1ZZlDR48eVb9+/RQXF6eEhAQNGTJEx48fL1cO25Sgd955RyNHjtSYMWO0YcMGtWzZUp07d9bhw4etjoYgkZ2drYyMDH3xxRdasmSJSkpKdOutt6qgoMA35uGHH9aCBQs0b948ZWdnKycnR3369LEwNYLJ2rVrNWPGDLVo0cJvOfMK5fXTTz+pXbt2Cg8P16JFi7Rlyxa98MILqlGjhm/MpEmTNGXKFE2fPl1r1qxRTEyMOnfurMLCQguToyqbOHGipk2bpldeeUVbt27VxIkTNWnSJL388su+McwrnE9BQYFatmypqVOnnnV9WeZQv3799O2332rJkiVauHChVq5cqaFDh5YviLGJ6667zmRkZPhel5aWmuTkZDN+/HgLUyGYHT582Egy2dnZxhhjjh07ZsLDw828efN8Y7Zu3WokmdWrV1sVE0HC4/GYxo0bmyVLlpj27dubzMxMYwzzCoF5/PHHzQ033PCb671er0lKSjLPP/+8b9mxY8eM0+k0b7/99sWIiCDUvXt3M3jwYL9lffr0Mf369TPGMK9QfpLMBx984Htdljm0ZcsWI8msXbvWN2bRokXG4XCYgwcPlnnftjgTVFxcrPXr16tTp06+ZSEhIerUqZNWr15tYTIEs/z8fElSzZo1JUnr169XSUmJ3zxr0qSJUlNTmWc4r4yMDHXv3t1v/kjMKwRm/vz5atOmje644w4lJibqmmuu0axZs3zrd+/erby8PL95FR8fr+uvv555hd/0+9//XkuXLtWOHTskSV9//bVWrVqlrl27SmJe4cKVZQ6tXr1aCQkJatOmjW9Mp06dFBISojVr1pR5X2EVF7vq+vHHH1VaWqq6dev6La9bt662bdtmUSoEM6/XqxEjRqhdu3Zq1qyZJCkvL08RERFKSEjwG1u3bl3l5eVZkBLBYu7cudqwYYPWrl17xjrmFQKxa9cuTZs2TSNHjtTo0aO1du1aPfTQQ4qIiFB6erpv7pztc5F5hd/yxBNPyO12q0mTJgoNDVVpaameffZZ9evXT5KYV7hgZZlDeXl5SkxM9FsfFhammjVrlmue2aIEARUtIyNDmzdv1qpVq6yOgiC3f/9+ZWZmasmSJYqMjLQ6DqoJr9erNm3a6LnnnpMkXXPNNdq8ebOmT5+u9PR0i9MhWL377rt66623NGfOHF111VX66quvNGLECCUnJzOvEHRscTlc7dq1FRoaesbTlA4dOqSkpCSLUiFYDR8+XAsXLtTy5cuVkpLiW56UlKTi4mIdO3bMbzzzDOeyfv16HT58WK1atVJYWJjCwsKUnZ2tKVOmKCwsTHXr1mVeodzq1aunK6+80m9Z06ZNtW/fPknyzR0+F1Eejz76qJ544gndfffdat68ue699149/PDDGj9+vCTmFS5cWeZQUlLSGQ82O3XqlI4ePVqueWaLEhQREaHWrVtr6dKlvmVer1dLly5V27ZtLUyGYGKM0fDhw/XBBx9o2bJlSktL81vfunVrhYeH+82z7du3a9++fcwz/KaOHTvqm2++0VdffeX7adOmjfr16+f7e+YVyqtdu3ZnPMJ/x44datiwoSQpLS1NSUlJfvPK7XZrzZo1zCv8phMnTigkxP/QMTQ0VF6vVxLzCheuLHOobdu2OnbsmNavX+8bs2zZMnm9Xl1//fVl39kFP9YhSMydO9c4nU4ze/Zss2XLFjN06FCTkJBg8vLyrI6GIPHAAw+Y+Ph4s2LFCpObm+v7OXHihG/M/fffb1JTU82yZcvMunXrTNu2bU3btm0tTI1g9MunwxnDvEL5ffnllyYsLMw8++yzZufOneatt94y0dHR5s033/SNmTBhgklISDD/+te/zKZNm0zPnj1NWlqaOXnypIXJUZWlp6eb+vXrm4ULF5rdu3eb999/39SuXds89thjvjHMK5yPx+MxGzduNBs3bjSSzOTJk83GjRvN3r17jTFlm0NdunQx11xzjVmzZo1ZtWqVady4senbt2+5ctimBBljzMsvv2xSU1NNRESEue6668wXX3xhdSQEEUln/cnKyvKNOXnypHnwwQdNjRo1THR0tOndu7fJzc21LjSC0q9LEPMKgViwYIFp1qyZcTqdpkmTJmbmzJl+671er3nqqadM3bp1jdPpNB07djTbt2+3KC2CgdvtNpmZmSY1NdVERkaaSy65xDz55JOmqKjIN4Z5hfNZvnz5WY+n0tPTjTFlm0NHjhwxffv2NbGxsSYuLs4MGjTIeDyecuVwGPOLr/kFAAAAgGrOFvcEAQAAAMBplCAAAAAAtkIJAgAAAGArlCAAAAAAtkIJAgAAAGArlCAAAAAAtkIJAgAAAGArlCAAQFDr0KGDRowYYXUMAEAQoQQBACzTo0cPdenS5azrPv30UzkcDm3atOkipwIAVHeUIACAZYYMGaIlS5bowIEDZ6zLyspSmzZt1KJFCwuSAQCqM0oQAMAyt912m+rUqaPZs2f7LT9+/LjmzZunXr16qW/fvqpfv76io6PVvHlzvf322+fcpsPh0Icffui3LCEhwW8f+/fv15133qmEhATVrFlTPXv21J49eyrmlwIAVHmUIACAZcLCwjRgwADNnj1bxhjf8nnz5qm0tFT9+/dX69at9dFHH2nz5s0aOnSo7r33Xn355ZcB77OkpESdO3eWy+XSp59+qs8++0yxsbHq0qWLiouLK+LXAgBUcZQgAIClBg8erO+//17Z2dm+ZVlZWbr99tvVsGFDPfLII7r66qt1ySWX6C9/+Yu6dOmid999N+D9vfPOO/J6vfrnP/+p5s2bq2nTpsrKytK+ffu0YsWKCviNAABVHSUIAGCpJk2a6Pe//71ee+01SdJ3332nTz/9VEOGDFFpaameeeYZNW/eXDVr1lRsbKwWL16sffv2Bby/r7/+Wt99951cLpdiY2MVGxurmjVrqrCwUN9//31F/VoAgCoszOoAAAAMGTJEf/nLXzR16lRlZWXp0ksvVfv27TVx4kS99NJLevHFF9W8eXPFxMRoxIgR57xszeFw+F1aJ/18Cdxpx48fV+vWrfXWW2+d8d46depU3C8FAKiyKEEAAMvdeeedyszM1Jw5c/TGG2/ogQcekMPh0GeffaaePXuqf//+kiSv16sdO3boyiuv/M1t1alTR7m5ub7XO3fu1IkTJ3yvW7VqpXfeeUeJiYmKi4urvF8KAFBlcTkcAMBysbGxuuuuuzRq1Cjl5uZq4MCBkqTGjRtryZIl+vzzz7V161YNGzZMhw4dOue2br75Zr3yyivauHGj1q1bp/vvv1/h4eG+9f369VPt2rXVs2dPffrpp9q9e7dWrFihhx566KyP6gYAVD+UIABAlTBkyBD99NNP6ty5s5KTkyVJf/vb39SqVSt17txZHTp0UFJSknr16nXO7bzwwgtq0KCBbrzxRt1zzz165JFHFB0d7VsfHR2tlStXKjU1VX369FHTpk01ZMgQFRYWcmYIAGzCYX594TQAAAAAVGOcCQIAAABgK5QgAAAAALZCCQIAAABgK5QgAAAAALZCCQIAAABgK5QgAAAAALZCCQIAAABgK5QgAAAAALZCCQIAAABgK5QgAAAAALZCCQIAAABgK5QgAAAAALbyfwF25FlFzp8i2QAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create a function that we can re-use\n", + "def show_distribution(var_data):\n", + " from matplotlib import pyplot as plt\n", + "\n", + " # Get statistics\n", + " min_val = var_data.min()\n", + " max_val = var_data.max()\n", + " mean_val = var_data.mean()\n", + " med_val = var_data.median()\n", + " mod_val = var_data.mode()[0]\n", + "\n", + " print('Minimum:{:.2f}\\nMean:{:.2f}\\nMedian:{:.2f}\\nMode:{:.2f}\\nMaximum:{:.2f}\\n'.format(min_val,\n", + " mean_val,\n", + " med_val,\n", + " mod_val,\n", + " max_val))\n", + "\n", + " # Create a figure for 2 subplots (2 rows, 1 column)\n", + " fig, ax = plt.subplots(2, 1, figsize = (10,4))\n", + "\n", + " # Plot the histogram \n", + " ax[0].hist(var_data)\n", + " ax[0].set_ylabel('Frequency')\n", + "\n", + " # Add lines for the mean, median, and mode\n", + " ax[0].axvline(x=min_val, color = 'gray', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=mean_val, color = 'cyan', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=med_val, color = 'red', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=mod_val, color = 'yellow', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=max_val, color = 'gray', linestyle='dashed', linewidth = 2)\n", + "\n", + " # Plot the boxplot \n", + " ax[1].boxplot(var_data, vert=False)\n", + " ax[1].set_xlabel('Value')\n", + "\n", + " # Add a title to the Figure\n", + " fig.suptitle('Data Distribution')\n", + "\n", + " # Show the figure\n", + " fig.show()\n", + "\n", + "# Get the variable to examine\n", + "col = df_students['Grade']\n", + "# Call the function\n", + "show_distribution(col)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "All of the measurements of central tendency are right in the middle of the data distribution, which is symmetric with values becoming progressively lower in both directions from the middle.\n", + "\n", + "To explore this distribution in more detail, you need to understand that statistics is fundamentally about taking *samples* of data and using probability functions to extrapolate information about the full *population* of data.\n", + "\n", + "What does this mean? *Samples* refer to the data we have on hand, such as information about these 22 students' study habits and grades. The *population* refers to all possible data we could collect, such as every student's grades and study habits across every educational institution throughout the history of time. Usually, we're interested in the population, but it's simply not practical to collect all of that data. Instead, we need to try estimate what the population is like from the small amount of data (samples) that we have.\n", + "\n", + "If we have enough samples, we can calculate something called a *probability density function*, which estimates the distribution of grades for the full population.\n", + "\n", + "The **pyplot** class from Matplotlib provides a helpful plot function to show this density." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA2gAAAF2CAYAAAAbVbv/AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB+OElEQVR4nO3deVxU1f/H8dcMOyqgIpug4oo7ioqomSWJZhmtaotltpmZRat+c6m+v6xMM8u0VetbltliZmYSmlbihvu+byC4oKAg69zfH+AUiTt4Wd7Px2MeMOeeufOe6wh85tx7jsUwDAMRERERERExndXsACIiIiIiIlJABZqIiIiIiEgZoQJNRERERESkjFCBJiIiIiIiUkaoQBMRERERESkjVKCJiIiIiIiUESrQREREREREyggVaCIiIiIiImWECjQREREREZEyQgWaiIhIJbF3714sFgvTp083O4qIiJyDCjQRESlTpk+fjsVisd9cXV0JCAggKiqKSZMmcfLkycve99KlSxkzZgwnTpwoucDAmDFjimR2d3enTp063HzzzUybNo3s7OwSfb6SNG/ePMaMGWN2DBERKaQCTUREyqRXXnmF//3vf0yZMoWhQ4cC8NRTT9GyZUvWr19/WftcunQpL7/8cokXaGdMmTKF//3vf7z77rs89NBDpKam8uCDD9KhQwcOHDhQKs95KerWrcvp06e577777G3z5s3j5ZdfNjGViIj8k6PZAURERIrTq1cv2rVrZ78/fPhwFi5cyE033USfPn3YsmULbm5uJiY82x133IG3t7f9/qhRo/jyyy8ZMGAAd955J8uWLTMxHfYRSRERKbs0giYiIuXG9ddfz8iRI9m3bx9ffPGFvX39+vU88MAD1K9fH1dXV/z8/HjwwQc5duyYvc+YMWN47rnnAAgODrafjrh3714Apk2bxvXXX4+Pjw8uLi40a9aMKVOmXHHme+65h4ceeojly5cTGxtbZNvy5cvp2bMnnp6euLu7c+211/LXX38V6XPm9MmdO3fywAMP4OXlhaenJwMHDiQzM7NI39jYWLp06YKXlxdVq1alSZMmjBgxwr7939egPfDAA0yePBmgyCmahmFQr149brnllrNeT1ZWFp6enjz66KNXfGxERORsGkETEZFy5b777mPEiBEsWLCAhx9+GCgoTHbv3s3AgQPx8/Nj06ZNfPjhh2zatIlly5ZhsVi47bbb2L59O1999RVvv/22faSrVq1aQMHpic2bN6dPnz44Ojry008/8fjjj2Oz2RgyZMgVZ/7www9ZsGABN9xwAwALFy6kV69ehIWFMXr0aKxWq71I/OOPP+jQoUORfdx1110EBwczduxYVq9ezccff4yPjw9vvPEGAJs2beKmm26iVatWvPLKK7i4uLBz586zCr5/evTRR0lKSiI2Npb//e9/9naLxcK9997Lm2++SWpqKjVq1LBv++mnn0hPT+fee++9omMiIiLnYIiIiJQh06ZNMwBj5cqV5+zj6elptGnTxn4/MzPzrD5fffWVARhLliyxt40bN84AjD179pzVv7h9REVFGfXr179g5tGjRxuAceTIkWK3Hz9+3ACMW2+91TAMw7DZbEajRo2MqKgow2azFckQHBxs3HDDDWft+8EHHyyyz1tvvdWoWbOm/f7bb7993gyGYRh79uwxAGPatGn2tiFDhhjF/Tmwbds2AzCmTJlSpL1Pnz5GvXr1iuQWEZGSo1McRUSk3KlatWqR2Rz/eS1aVlYWR48epWPHjgCsXr36ovb5z32kpaVx9OhRrr32Wnbv3k1aWtoV5wXsmdeuXcuOHTu4++67OXbsGEePHuXo0aNkZGTQvXt3lixZgs1mK7KPxx57rMj9a665hmPHjpGeng6Al5cXAD/++ONZj70cjRs3Jjw8nC+//NLelpqayi+//MI999yDxWK54ucQEZGzqUATEZFy59SpU1SrVs1+PzU1lWHDhuHr64ubmxu1atUiODgY4KKLq7/++ovIyEiqVKmCl5cXtWrVsl+/daUF2qlTpwDsmXfs2AHA/fffT61atYrcPv74Y7Kzs896zjp16hS5X716dQCOHz8OQN++fencuTMPPfQQvr6+9OvXj2+++eaKirUBAwbw119/sW/fPgBmzZpFbm5ukVkgRUSkZOkaNBERKVcOHjxIWloaDRs2tLfdddddLF26lOeee47Q0FCqVq2KzWajZ8+eF1Wg7Nq1i+7duxMSEsKECRMICgrC2dmZefPm8fbbb1/xiNTGjRsB7JnP7G/cuHGEhoYW+5gzo25nODg4FNvPMAygYARwyZIlLFq0iJ9//pn58+czc+ZMrr/+ehYsWHDOx59Pv379ePrpp/nyyy8ZMWIEX3zxBe3ataNJkyaXvC8REbk4KtBERKRcOTOZRVRUFFAwghQXF8fLL7/MqFGj7P3OjFL907lOy/vpp5/Izs5mzpw5RUaqFi1aVCqZGzRoAICHhweRkZEl8hwAVquV7t270717dyZMmMBrr73Gf/7zHxYtWnTO5znfqYo1atSgd+/efPnll9xzzz389ddfTJw4scTyiojI2XSKo4iIlBsLFy7k1VdfJTg4mHvuuQf4e2TpzEjSGcUVElWqVAE4a6Hq4vaRlpbGtGnTrjjzjBkz+Pjjj4mIiKB79+4AhIWF0aBBA9566y376Y//dOTIkUt+ntTU1LPazozOZWdnn/Nx5zomZ9x3331s3ryZ5557DgcHB/r163fJ2URE5OJpBE1ERMqkX375ha1bt5KXl0dKSgoLFy4kNjaWunXrMmfOHPuCyx4eHnTt2pU333yT3NxcateuzYIFC9izZ89Z+wwLCwPgP//5D/369cPJyYmbb76ZHj164OzszM0338yjjz7KqVOn+Oijj/Dx8eHQoUMXnfnbb7+latWq5OTkkJiYyK+//spff/1F69atmTVrlr2f1Wrl448/plevXjRv3pyBAwdSu3ZtEhMTWbRoER4eHvz000+XdLxeeeUVlixZQu/evalbty6HDx/m/fffJzAwkC5dupzzcWeOyZNPPklUVNRZRVjv3r2pWbMms2bNolevXvj4+FxSLhERuTQq0EREpEw6c7qis7MzNWrUoGXLlkycOJGBAwcWmSAECkaphg4dyuTJkzEMgx49evDLL78QEBBQpF/79u159dVXmTp1KvPnz8dms7Fnzx6aNGnCt99+y0svvcSzzz6Ln58fgwcPplatWjz44IMXnXnw4MEAuLq64u3tTWhoKJ9++il33303Li4uRfp269aN+Ph4Xn31Vd577z1OnTqFn58f4eHhl7UIdJ8+fdi7dy+ffvopR48exdvbm2uvvZaXX34ZT0/Pcz7utttuY+jQoXz99dd88cUXGIZRpEBzdnamb9++vP/++5ocRETkKrAY/z4nREREROQfnn76aT755BOSk5Nxd3c3O46ISIWma9BERETknLKysvjiiy+4/fbbVZyJiFwFOsVRREREznL48GF+++03vv32W44dO8awYcPMjiQiUimoQBMREZGzbN68mXvuuQcfHx8mTZp0zvXaRESkZOkaNBERERERkTJC16CJiIiIiIiUESrQREREREREyghdg1aKbDYbSUlJVKtWDYvFYnYcERERERExiWEYnDx5koCAAKzWc4+TqUArRUlJSQQFBZkdQ0REREREyogDBw4QGBh4zu0q0EpRtWrVgIJ/BA8PD5PTiIiIiIiIWdLT0wkKCrLXCOeiAq0UnTmt0cPDQwWaiIiIiIhc8NInFWgiIiIlLAFwSkjAOSeHEK9d0LQB4AyEmZxMRETKOhVoIiIiJewWYNkttxCYmAhJVsAG1AYOmhtMRETKPE2zLyIiIiIiUkaoQBMRERERESkjVKCJiIiIiIiUESrQREREREREyggVaCIiIiIiImWECjQREREREZEyQgWaiIiIiIhIGaECTUREREREpIzQQtUiIiKXKSU9i4R9x9l6KJ29xzJJz8olMyef4/eG2fsYBlhMzCgiIuWL6SNokydPpl69eri6uhIeHs6KFSvO23/WrFmEhITg6upKy5YtmTdvXpHt33//PT169KBmzZpYLBbWrl1bZPvevXuxWCzF3mbNmmXvV9z2r7/+usRet4iIlE+H07N4b+EOek/6g/DX4nj8y9VMWriTOeuS+H3bEVbsSaXmGwu54d53afb8t3SYNI0Wo7/h1skfM/G37SSdOG32SxARkTLM1BG0mTNnEhMTw9SpUwkPD2fixIlERUWxbds2fHx8zuq/dOlS+vfvz9ixY7npppuYMWMG0dHRrF69mhYtWgCQkZFBly5duOuuu3j44YfP2kdQUBCHDh0q0vbhhx8ybtw4evXqVaR92rRp9OzZ037fy8urBF61iIiURzsPn+KduB38suEQeTYDAIsFmvl70DzAgwa1qlK9ijPuzg6czsnnRGYuu46cYvOhdDYkprHmQD5rDuxgUtwObmjmy7DujWkW4GHyqxIRkbLGYhiGYdaTh4eH0759e9577z0AbDYbQUFBDB06lBdffPGs/n379iUjI4O5c+fa2zp27EhoaChTp04t0nfv3r0EBwezZs0aQkNDz5ujTZs2tG3blk8++cTeZrFY+OGHH4iOjr7s15eeno6npydpaWl4eOiXsIhIeXT0VDZv/LKV71YfpLAuI6xudfq2C+L6pj54V3W54D6OZ+SwcOthvll1gOV7Uu3tvVv581Lvpvh7upVWfBERKSMutjYw7RTHnJwcEhISiIyM/DuM1UpkZCTx8fHFPiY+Pr5If4CoqKhz9r8YCQkJrF27lkGDBp21bciQIXh7e9OhQwc+/fRTLlTLZmdnk56eXuQmIiLlk2EYfLPqAN3HL2ZWQkFxdkMzX35+sgvfDe7EXe2DLqo4A6hexZnbwwKZ+WgEsU935ebWAVgs8PP6Q0SOX8wnf+7BZjPt81IRESlDTDvF8ejRo+Tn5+Pr61uk3dfXl61btxb7mOTk5GL7JycnX3aOTz75hKZNm9KpU6ci7a+88grXX3897u7uLFiwgMcff5xTp07x5JNPnnNfY8eO5eWXX77sLCIiUjakZeby/Hfr+HVTClBwGuN/b21B2zrVL+rxE4DmEybgkZ5ORLc10K0N4AHE0Mi3Gu/2b8Pgaxsw8seNJOw7zqtzNxO3JYUJd4Xi5+laaq9LRETKvko9i+Pp06eZMWMGI0eOPGvbP9vatGlDRkYG48aNO2+BNnz4cGJiYuz309PTCQoKKtnQIiJSqjYmpvHo/xJIPHEaJwcLz/RowkNdgnF0uPiTTiYAyyZMIDAxER61AnOA2sDfvyOaBXgw69EIvlq5n//O3cLSXcfo+c4SJt/dls4NvUv6ZYmISDlh2imO3t7eODg4kJKSUqQ9JSUFPz+/Yh/j5+d3Sf0v5NtvvyUzM5MBAwZcsG94eDgHDx4kOzv7nH1cXFzw8PAochMRkfJj4dYU7vognsQTp6lb053vBnfisWsbXFJxdimsVgv3hNdl7pNdaFHbgxOZuQz4dAWfLd17wdPqRUSkYjKtQHN2diYsLIy4uDh7m81mIy4ujoiIiGIfExERUaQ/QGxs7Dn7X8gnn3xCnz59qFWr1gX7rl27lurVq+PicnHXG4iISPnyefxeHvpsFZk5+XRp6M2cJ7rQKtDrqjx3g1pV+faxTtzWpjb5NoPRczbx2rwtKtJERCohU09xjImJ4f7776ddu3Z06NCBiRMnkpGRwcCBAwEYMGAAtWvXZuzYsQAMGzaMa6+9lvHjx9O7d2++/vprVq1axYcffmjfZ2pqKvv37ycpKQmAbdu2AQWjb/8cadu5cydLliw5ax01gJ9++omUlBQ6duyIq6srsbGxvPbaazz77LOldixERMQ87y3cwVsLtgPQt10Q/721BU6lNGp2Lq5ODoy/qzWN/arx+i9b+eiPPaSfzuO121riYNVS1yIilYWpBVrfvn05cuQIo0aNIjk5mdDQUObPn2+fCGT//v1YrX//guzUqRMzZszgpZdeYsSIETRq1IjZs2fb10ADmDNnjr3AA+jXrx8Ao0ePZsyYMfb2Tz/9lMDAQHr06HFWLicnJyZPnszTTz+NYRg0bNiQCRMmFLuumoiIlG/vxu1gfGxBcRZzQ2OGXt8Qi8WcgshisfDYtQ2oUcWZF79bz8xVBziVncfEfqFXvWAUERFzmLoOWkWnddBERMq2f46cPd+zCY93a1gi+w0ElgUGFkwSkmQFfxsFk4QcvOh9/LLhEE9+vYbcfINbQgOYcFeoRtJERMqxMr8OmoiIiJm+WLavVIqzktKrpT8f3BeGo9XCj2uTeGn2Rl2TJiJSCahAExGRSmfBpmRG/bgRgGHdG5W54uyM60N8ebtvKBYLfLViP6//Uvw6oSIiUnGoQBMRkUolYd9xhn61BpsB/doH8VRkI7MjndfNrQMYe2tLAD5Yspv/LdtnciIRESlNKtBERKTSSDxxmkc+X0V2no3rQ3z4b3SLUpkQpC2wp21btnbsCPtrAR0LWy9Pvw51eC6qCQBj5mxi8fYjJZJTRETKHk0SUoo0SYiISNmRlZvPHVOXsjExnWb+Hnw7OAJ3Z1MnM74khmHw7Kz1fLf6INVcHPnu8U409q1mdiwREblImiRERESkkGEYjPh+AxsT06lRxZkPB4SVq+IMCqbgf+22FnSoV4OT2Xk89Nkq0jJzzY4lIiIlTAWaiIhUeJ8t3cv3axJxsFp47+42BFZ3NzvSZXFxdOCD+8IIrO7G/tRMYr5Zi82mE2FERCoSFWgiIlKhbUxM4//mbQFgxI1N6dTA2+REV6Z6FWem3huGs6OVuK2HmbJ4l9mRRESkBKlAExGRCisjO4+hXxUs9hzV3JcHO9e7Ks/bB/ijTx+2RkTAcj8gorC1ZLSo7cmrtzQHYPyCbfy542iJ7VtERMylAk1ERCqsUT9uYs/RDPw9XXnj9lalMmNjcVYDwatXE7JsGdQ5AiwrbC05fdvXoW+7IGwGPDVzLUdPZZfo/kVExBwq0EREpEKavSaR71YfxGqBd/q1wcvd2exIJe7lW5rT2LcqR09l88K369HEzCIi5Z8KNBERqXAOpGbynx82APBk90Z0CK5hcqLS4erkwDv92tivR9Mi1iIi5Z8KNBERqVBsNoPnv11PRk4+7etV54nrGpodqVQ19ffgxZ4hAPzfz1vYnnLS5EQiInIlVKCJiEiF8uWK/cTvPoark5Vxd7TG0aHi/6ob2Lke1zauRXaejSe/WkNWbr7ZkURE5DJV/N9aIiJSaRxIzWRs4ZT6L/QMoZ53FZMTXR0Wi4W37mxNzSrObE0+yaS4HWZHEhGRy6QCTUREKgSbzeCF79aTmZNPh3o1uD+intmRrqpa1Vz4v1tbAvDBkt1sOJhmciIREbkcKtBERKRCmLFiP0t3FZza+OYdrbBar86U+mVJzxZ+3NTKn3ybwXPfriMnz2Z2JBERuUQq0EREpNxLSc/ijV+2ApXr1MbivNynuf1Ux/cW7TQ7joiIXCIVaCIiUu69OnczJ7PzaB3kxYAycGpjDLApJob40aNh203A6MLW0lezqguv3NICgPcX7WRTkk51FBEpTyyGVrUsNenp6Xh6epKWloaHh4fZcUREKqTF249w/6crsFrgp6FdaB7gaXakMmHwFwn8sjGZFrU9+HFIFxwq4SmfIiJlycXWBhpBExGRcisrN5+RszcCMLBzsIqzf3jllhZ4uDqyMTGdz+P3mh1HREQukgo0EREpt95buJP9qZn4e7ry9A2NzY5TptSq5sILvQoWsB6/YDvJaVkmJxIRkYuhAk1ERMqlnYdP8cGSXQCMvrk5VV0cTU70t5NA+smTnExPh5NJQHph69XVv30d2tTx4lR2Hq/O3XzVn19ERC6dCjQRESl3DMPg1bmbyc03uD7Eh6jmvmZHKqIpkN60KdU8PeFUEOBZ2Hp1Wa0W/i+6JQ5WCz9vOMSibYevegYREbk0KtBERKTcWbTtMIu3H8HJwcLIm5phsWgCjHNpFuDBwE71ABj140ZO5+SbG0hERM5LBZqIiJQrOXk2Xp27BYAHOwcTXInXPLtYT9/QGH9PVw6knubdhTvMjiMiIuehAk1ERMqVz5buZc/RDLyruvDE9Q3NjlMuVHFxZEyf5gB89Mdudh85ZXIiERE5FxVoIiJSbhw5mc2kuIIRoOd7NqGaq5PJicqPHs186dakFrn5hiYMEREpw0wv0CZPnky9evVwdXUlPDycFStWnLf/rFmzCAkJwdXVlZYtWzJv3rwi27///nt69OhBzZo1sVgsrF279qx9dOvWDYvFUuT22GOPFemzf/9+evfujbu7Oz4+Pjz33HPk5eVd8esVEZHL99av2ziZnUerQE/uaBtodpxyxWIpuF7P0Wph0bYjLNqqCUNERMoiUwu0mTNnEhMTw+jRo1m9ejWtW7cmKiqKw4eL/6WxdOlS+vfvz6BBg1izZg3R0dFER0ezceNGe5+MjAy6dOnCG2+8cd7nfvjhhzl06JD99uabb9q35efn07t3b3Jycli6dCmfffYZ06dPZ9SoUSXzwkVE5JJtOJjGNwkHgIJp9a1WTQxyqRrUqsrAzvUAeHXuZnLybOYGEhGRs1gMwzDMevLw8HDat2/Pe++9B4DNZiMoKIihQ4fy4osvntW/b9++ZGRkMHfuXHtbx44dCQ0NZerUqUX67t27l+DgYNasWUNoaGiRbd26dSM0NJSJEycWm+uXX37hpptuIikpCV/fgqmbp06dygsvvMCRI0dwdna+qNeXnp6Op6cnaWlpeHh4XNRjRETkbIZh0P+jZSzbnUp0aAAT+7UxO9J5BQLLAgMJTEyEJCv424DawEGTk8HJrFyue2sxR09lM+LGEB7p2sDsSCIilcLF1gamjaDl5OSQkJBAZGTk32GsViIjI4mPjy/2MfHx8UX6A0RFRZ2z//l8+eWXeHt706JFC4YPH05mZmaR52nZsqW9ODvzPOnp6WzatOmSn0tERK7M79uOsGx3Ks6OVp7rGWJ2nHKtmqsTz/dsAsCkuJ0cPpllciIREfknR7Oe+OjRo+Tn5xcpggB8fX3ZunVrsY9JTk4utn9ycvIlPffdd99N3bp1CQgIYP369bzwwgts27aN77///rzPc2bbuWRnZ5OdnW2/n56efkm5RETkbPk2g7G/FEyrP7BzPWp7uZmcqPy7o20gXy7bx7qDaYybv41xd7Y2O5KIiBQyrUAz0yOPPGL/vmXLlvj7+9O9e3d27dpFgwaXf6rH2LFjefnll0siooiIFPou4SDbU07h6ebE49eWj2n1fwRSf/yRUzk5hJzYBf4NgIs7Pf5qsFotjO7TnNveX8qshIPcF1GXVoFeZscSERFMPMXR29sbBwcHUlJSirSnpKTg5+dX7GP8/Pwuqf/FCg8PB2Dnzp3nfZ4z285l+PDhpKWl2W8HDhy4olwiIpXd6Zx8JsRuB2Do9Q3xdC8f0+qHAa3CwgiJiICm9wIRha1lR9s61bmtTW0A/u/nLZh4SbqIiPyDaQWas7MzYWFhxMXF2dtsNhtxcXFEREQU+5iIiIgi/QFiY2PP2f9inZmK39/f3/48GzZsKDKbZGxsLB4eHjRr1uyc+3FxccHDw6PITURELt+nf+0hOT2LwOpu3BdR1+w4Fc6zUU1wcbSyfE8qv23RtPsiImWBqdPsx8TE8NFHH/HZZ5+xZcsWBg8eTEZGBgMHDgRgwIABDB8+3N5/2LBhzJ8/n/Hjx7N161bGjBnDqlWreOKJJ+x9UlNTWbt2LZs3FyzCuW3bNtauXWu/dmzXrl28+uqrJCQksHfvXubMmcOAAQPo2rUrrVq1AqBHjx40a9aM++67j3Xr1vHrr7/y0ksvMWTIEFxcXK7W4RERqdRSM3KY+vsuAJ7t0QQXRweTE1U8AV5uPHRNMABj520hN1/T7ouImM3Ua9D69u3LkSNHGDVqFMnJyYSGhjJ//nz7hBz79+/Hav27huzUqRMzZszgpZdeYsSIETRq1IjZs2fTokULe585c+bYCzyAfv36ATB69GjGjBmDs7Mzv/32GxMnTiQjI4OgoCBuv/12XnrpJftjHBwcmDt3LoMHDyYiIoIqVapw//3388orr5T2IRERkULvLtzByew8mgd40Kd1gNlxLslcwGvuXNxOnyas7gbo0BJwA24yOdnZHru2AV+vOMDuoxl8tWI/AyLqmR1JRKRSM3UdtIpO66CJiFyefccyiJywmNx8gy8GhdOlkbfZkS5JWV4HrTj/W7aPkbM3UqOKM78/1w0P1/JxrZ+ISHlS5tdBExEROZe3Y7eTm29wTSPvcleclUf92wfRoFYVUjNymFJ4WqmIiJhDBZqIiJQp21NO8uO6JABe0KLUV4Wjg5URNzYF4JM/93DweKbJiUREKi8VaCIiUqZMWLAdw4BeLfxoUdvT7DiVxvUhPkTUr0lOno23ft1mdhwRkUpLBZqIiJQZGw6mMX9TMhYLPH1DY7PjVCoWi4X/9C4YRZu9NokNB9NMTiQiUjmpQBMRkTJjfGzByE10aG0a+1YzOU3l06K2J9GhBTNmvvnrVpPTiIhUTirQRESkTFi1N5Xftx3BwWrhqchGZseptJ7p0QQnBwt/7DjK0p1HzY4jIlLpqEATERHTGYbBuMLrnu5qF0jdmlVMTlR5BdVw557wugC8MX8rWo1HROTqUoEmIiKm+2vnMZbvScXZwcrQ6zV6ZrYh1zXE3dmBdQfTmL8x2ew4IiKVigo0ERExlWEYvLWgYPTs7vA6BHi5mZzoylUFMqtW5VS1anDaEahW2Fo+1KrmwkPX1Adg3IJt5OXbTE4kIlJ5qEATERFTxW05zNoDJ3BzcmDIdQ3NjlMitgKNt26lano61M8G0gtby4+HrwmmRhVndh/JYFbCQbPjiIhUGirQRETENDbb36NnD3SuR61qLiYnkjOquTrZC+aJv20nKzff5EQiIpWDCjQRETHNvI2H2Jp8kmoujjzatb7ZceRf7u1Yh9pebqSkZzN96V6z44iIVAoq0ERExBT5NoO3Y7cD8NA19fFydzY5kfybi6MDMYULhr+/aCdpmbkmJxIRqfhUoImIiCl+3nCIXUcy8HRz4sEu9cyOU6KeA+Y/9xzLH3oIfm8PPFTYWv5Et6lNE99qpGflMXXJLrPjiIhUeCrQRETkqrPZDN6N2wHAoC7BVHN1MjlRyfoKaPHVV4R/8gk0WQ18Utha/jhYLTwX1QSAaX/tISU9y+REIiIVmwo0ERG56n7ZmMyOw6eo5urI/Z3qmR1HLqB7Ux/a1a1OVq6NSYWFtYiIlA4VaCIiclXZbIb9j/wHOwfj6VaxRs8qIovl71G0mSsPcCA10+REIiIVlwo0ERG5qhZsTmZbSsHMjQ92DjY7jlyk8Po1uaaRN3k2g4m/aRRNRKS0qEATEZGrxmYzeCduJwADO9fD012jZ+XJMz0KRtF+WHOQnYdPmZxGRKRiUoEmIiJXTeyWFLYcSqeqiyMPdtHoWXkTGuTFDc18sRnw9m/bzY4jIlIhqUATEZGrwjD+vvbs/k51te5ZOfVMj8ZYLPDz+kNsSkozO46ISIWjAk1ERK6KuC2H2ZSUjruzAw91qW92HLlMIX4e3NQqAMC+0LiIiJQcFWgiIlLqDMPgncLRswER9aheRaNn5dnTkY2wWuC3LYdZvf+42XFERCoUFWgiIlLqFm07zIbENNycHHj4mop/7VlvYEvv3iTccQfsaAzcUdhaMdSvVZXb2wYCMGGBRtFEREqSo9kBRESkYisYPSuYuXFARF1qVnUxOVHp+wDggw/MjlGqnuzeiNlrE/lz51Hidx0jokFNsyOJiFQIGkETEZFStXj7EdYdOIGrk5WHrtG1ZxVFUA13+neoA8BbC7ZhGIbJiUREKgYVaCIiUmr+ee3ZveF1qVWt4o+eVSZDrmuIi6OVhH3H+X37EbPjiIhUCCrQRESk1Py58yhr9p/AxdHKI9dq9Kyi8fVw5f5O9QAYr1E0EZESoQJNRERKhWEYvPNbwejZ3eF18KnmanKiq6cdsK5dO1ICA2FzFSCwsLXieezaBlRxdmBjYjq/bko2O46ISLlneoE2efJk6tWrh6urK+Hh4axYseK8/WfNmkVISAiurq60bNmSefPmFdn+/fff06NHD2rWrInFYmHt2rVFtqempjJ06FCaNGmCm5sbderU4cknnyQtrehimxaL5azb119/XSKvWUSkMli66xir9h3H2dHKY9c2MDvOVZUM1ExOxjcxEapnAYmFrRVPjSrODOpSMDPn+AXbybdpFE1E5EqYWqDNnDmTmJgYRo8ezerVq2ndujVRUVEcPny42P5Lly6lf//+DBo0iDVr1hAdHU10dDQbN26098nIyKBLly688cYbxe4jKSmJpKQk3nrrLTZu3Mj06dOZP38+gwYNOqvvtGnTOHTokP0WHR1dIq9bRKSiKzJ61qEOvh6VZ/SsMhp0TX083ZzYcfgUc9Ylmh1HRKRcsxgmnjAeHh5O+/btee+99wCw2WwEBQUxdOhQXnzxxbP69+3bl4yMDObOnWtv69ixI6GhoUydOrVI37179xIcHMyaNWsIDQ09b45Zs2Zx7733kpGRgaNjwcoDFouFH3744YqKsvT0dDw9PUlLS8PDw+Oy9yMiUt7E7zpG/4+W4exgZfHz3fD3dDM70lUVCCwLDCQwMRGSrOBvA2oDB01OVnomL9rJuF+3UbemO7/FXIuTg+kn6YiIlCkXWxuY9tMzJyeHhIQEIiMj/w5jtRIZGUl8fHyxj4mPjy/SHyAqKuqc/S/WmYN0pjg7Y8iQIXh7e9OhQwc+/fTTC178nJ2dTXp6epGbiEhl9E5cweLFfdsHVbrirLIa2Lke3lWd2Xcsk28TKm4hKiJS2kwr0I4ePUp+fj6+vr5F2n19fUlOLv48/eTk5Evqf7E5Xn31VR555JEi7a+88grffPMNsbGx3H777Tz++OO8++67593X2LFj8fT0tN+CgoIuO5eISHm1fPcxlu1OxcnBwuBulevas8rM3dmRwd0aAjApbgdZufkmJxIRKZ8q9fkH6enp9O7dm2bNmjFmzJgi20aOHEnnzp1p06YNL7zwAs8//zzjxo077/6GDx9OWlqa/XbgwIFSTC8iUjZNWlhw7dmd7YII8NLoWWVyT3gd/DxcOZSWxVcr9psdR0SkXDKtQPP29sbBwYGUlJQi7SkpKfj5+RX7GD8/v0vqfz4nT56kZ8+eVKtWjR9++AEnJ6fz9g8PD+fgwYNkZ2efs4+LiwseHh5FbiIilcmqvan8tfMYTg4WHtfoWaXj6uTA0O4Fo2iTF+0iMyfP5EQiIuWPaQWas7MzYWFhxMXF2dtsNhtxcXFEREQU+5iIiIgi/QFiY2PP2f9c0tPT6dGjB87OzsyZMwdX1wvPLrZ27VqqV6+Oi4vLJT2XiEhl8k5cwejZHWGBBFZ3NzmNmOGudkHUqeHO0VPZfLZ0n9lxRETKHccLdyk9MTEx3H///bRr144OHTowceJEMjIyGDhwIAADBgygdu3ajB07FoBhw4Zx7bXXMn78eHr37s3XX3/NqlWr+PDDD+37TE1NZf/+/SQlJQGwbds2oGD0zc/Pz16cZWZm8sUXXxSZzKNWrVo4ODjw008/kZKSQseOHXF1dSU2NpbXXnuNZ5999moeHhGRciVh33H+2HEUR6uFxwuvRZLKx8nBylORjYj5Zh1TF+/ino518HA9/1kqIiLyN1MLtL59+3LkyBFGjRpFcnIyoaGhzJ8/3z4RyP79+7Fa/x7k69SpEzNmzOCll15ixIgRNGrUiNmzZ9OiRQt7nzlz5tgLPIB+/foBMHr0aMaMGcPq1atZvnw5AA0bFv0DYs+ePdSrVw8nJycmT57M008/jWEYNGzYkAkTJvDwww+X2rEQESnvJhWOnt3WtjZBNSr36NmbwI433yQxM5Pw3WvAvw1QeY7JLaG1ef/3Xew8fIpP/tjD0zc0NjuSiEi5Yeo6aBWd1kETkcpi7YETRE/+CwerhUXPdKNOzcpTjEjx5m04xONfrqaqiyN/PH8d1as4mx1JRMRUZX4dNBERqTje+a1g3bNb29RWcSYA9GzuRzN/D05l5zF1yS6z44iIlBsq0ERE5IqsP3iCRduOYLXAkOt07ZkUsFotPBtVcGrjZ0v3cjg9y+REIiLlgwo0ERG5ImeuPYsOrU2wdxWT05QN24Ad27axZ9Mm2P0LsKmwtXK5rokPbet4kZVrY/KinWbHEREpF1SgiYjIZduYmMZvWw4XjJ5dr9GzM7oDbt27E9yiBbjdBLQobK1cLBYLz/ZoAsCMFfs5eDzT5EQiImWfCjQREblsZ9Y9u7l1AA1qVTU5jZRFnRp606lBTXLzDd6N0yiaiMiFqEATEZHLsikpjdjNKVgsMFSjZ3IezxSOon27+iB7jmaYnEZEpGxTgSYiIpflzGjITa0CaOhTzeQ0UpaF1a3O9SE+5NsMJhbO+CkiIsVTgSYiIpdsy6F05m9K1uiZXLSYwsWq56xLYlvySZPTiIiUXSrQRETkkr23sGD07MYW/jT21eiZXFiL2p7c2NIPw4AJsZVvRksRkYulAk1ERC7J9pSTzNt4CICh3TV6Jhcv5obGWC3w66YU1h88YXYcEZEySQWaiIhckklxOzAM6NXCjxA/D7PjSDnS0Kca0aG1ARi/QNeiiYgURwWaiIhctB0pJ/l5Q+Ho2fWNTE4j5dGwyEY4Wi0s3n6ElXtTzY4jIlLmqEATEZGL9t6inRgG9GjmS7MAjZ7Jpatbswp3tgsCYNyv2zAMw+REIiJliwo0ERG5KLuOnOKndUkAPNldo2fnsxKwrlxJyoEDYE0ADhS2CsCT3Rvi7GhlxZ5U/tx51Ow4IiJligo0ERG5KO8t3InNgMimPrSo7Wl2nDLNHwjw98c3MBB8Q4HAwlYB8Pd0497wugC8pVE0EZEiVKCJiMgF7T5yih/XJgIwrHtjk9NIRTC4WwPcnBxYdzCN37YcNjuOiEiZoQJNREQuaPKiXdgMuD7Eh5aBGj2TK1ermgsDO9cDYPyCbdhsGkUTEQEVaCIicgH7jmUwu3D0TNeeXZwPgdgPPyR+wgRYci8wobBV/umRrvWp5uLI1uS/ZwcVEansVKCJiMh5vbdwJ/k2g2sb1yI0yMvsOOXCK0DTV14h4plnoNFXwDOFrfJPXu7OPNy1PgBvx24nL99mciIREfOpQBMRkXPadyyD79cUXnsWqdEzKXkDO9ejursTu49m8EPhe01EpDJTgSYiIuc0Ka5g9Kxr41q0rVPd7DhSAVVzdWJwtwYAvBO3g5w8jaKJSOWmAk1ERIq168gpflhzEICYGzRzo5Se+zrWw6eaCwePn2bmyv1mxxERMZUKNBERKdY7v+2wr3uma8+kNLk5O/DE9Q0BeHfhTrJy801OJCJiHhVoIiJylu0pJ/lpfRIAT0Vq9ExKX9/2QdT2cuPwyWymL91rdhwREdOoQBMRkbNM/G07hgE9m/vRorbWPZPS5+LoYD+V9v1FO0nLzDU5kYiIOVSgiYhIEZuS0pi3IRmLBZ7WtWdyFUW3qU0T32qkZ+UxZfEus+OIiJhCBZqIiBQx8bcdAPRu6U8Tv2omp5HKxMFq4bmoJgBM+2sPyWlZJicSEbn6LqtA2717d0nnEBGRMmD9wRPEbk7BatG1Z1eiMZDYuDF7mzWDZA+gWWGrXEj3pj60q1ud7Dwb78RtNzuOiMhVd1kFWsOGDbnuuuv44osvyMq6sk+3Jk+eTL169XB1dSU8PJwVK1act/+sWbMICQnB1dWVli1bMm/evCLbv//+e3r06EHNmjWxWCysXbv2rH1kZWUxZMgQatasSdWqVbn99ttJSUkp0mf//v307t0bd3d3fHx8eO6558jLy7ui1yoiUtZNiC34gzg6tDYNfaqanKb8WgiEL1xIvU2boM1xYFNhq1yIxWLhxV4hAHyz6iC7jpwyOZGIyNV1WQXa6tWradWqFTExMfj5+fHoo49esLAqzsyZM4mJiWH06NGsXr2a1q1bExUVxeHDh4vtv3TpUvr378+gQYNYs2YN0dHRREdHs3HjRnufjIwMunTpwhtvvHHO53366af56aefmDVrFosXLyYpKYnbbrvNvj0/P5/evXuTk5PD0qVL+eyzz5g+fTqjRo265NcoIlJeJOw7zu/bjuBgtfBk90Zmx5FKrF29GkQ29SHfZvDWr9vMjiMiclVZDMMwLvfBeXl5zJkzh+nTpzN//nwaN27Mgw8+yH333UetWrUu+Pjw8HDat2/Pe++9B4DNZiMoKIihQ4fy4osvntW/b9++ZGRkMHfuXHtbx44dCQ0NZerUqUX67t27l+DgYNasWUNoaKi9PS0tjVq1ajFjxgzuuOMOALZu3UrTpk2Jj4+nY8eO/PLLL9x0000kJSXh6+sLwNSpU3nhhRc4cuQIzs7OF3V80tPT8fT0JC0tDQ8Pj4t6jIiIWe79eDl/7jzKXe0CefOO1mbHkUpuW/JJer6zBMOA2UM6ay0+ESn3LrY2uKJJQhwdHbntttuYNWsWb7zxBjt37uTZZ58lKCiIAQMGcOjQoXM+Nicnh4SEBCIjI/8OY7USGRlJfHx8sY+Jj48v0h8gKirqnP2Lk5CQQG5ubpH9hISEUKdOHft+4uPjadmypb04O/M86enpbNq06aKfS0SkvFi++xh/7jyKk4OFoddr9EzM18SvGre1CQTgjV+2cgWfJ4uIlCtXVKCtWrWKxx9/HH9/fyZMmMCzzz7Lrl27iI2NJSkpiVtuueWcjz169Cj5+flFiiAAX19fkpOTi31McnLyJfU/1z6cnZ3x8vI6537O9Txntp1LdnY26enpRW4iImWdYRiML7z27K52QQTVcDc5Ufl3D7DwnntYHxUFf9UDogpb5VI8fUMjnB2sxO8+xpIdR82OIyJyVVxWgTZhwgRatmxJp06dSEpK4vPPP2ffvn3897//JTg4mGuuuYbp06ezevXqks5bpo0dOxZPT0/7LSgoyOxIIiIX9MeOo6zYk4qzg5Uh1zU0O06FsBhovHgxrRYsgPoHgAWFrXIpAqu7c19EXaBgFM1m0yiaiFR8l1WgTZkyhbvvvpt9+/Yxe/ZsbrrpJqzWorvy8fHhk08+Oec+vL29cXBwOGv2xJSUFPz8/Ip9jJ+f3yX1P9c+cnJyOHHixDn3c67nObPtXIYPH05aWpr9duDAgYvOJSJiBpvNYFzhJAz3dqxLgJebyYlEihpyXUOquTiy+VA6P61PMjuOiEipu6wCLTY2lhdeeAF/f/8i7YZhsH//fgCcnZ25//77z7kPZ2dnwsLCiIuLs7fZbDbi4uKIiIgo9jERERFF+p/Jcq7+xQkLC8PJyanIfrZt28b+/fvt+4mIiGDDhg1FZpOMjY3Fw8ODZs2anXPfLi4ueHh4FLmJiJRlv2xMZkNiGlWcHRhyXQOz44icpUYVZx7pWh+A8Qu2k5NnMzmRiEjpuqwCrUGDBhw9eva54KmpqQQHB1/0fmJiYvjoo4/47LPP2LJlC4MHDyYjI4OBAwcCMGDAAIYPH27vP2zYMObPn8/48ePZunUrY8aMYdWqVTzxxBNFMqxdu5bNmzcDBcXX2rVr7deOeXp6MmjQIGJiYli0aBEJCQkMHDiQiIgIOnbsCECPHj1o1qwZ9913H+vWrePXX3/lpZdeYsiQIbi4uFz6ARMRKYPy8m2MX1AwevbQNfWpWVU/36RserBLMN5VXdifmsnMlfvNjiMiUqouq0A710xKp06dwtXV9aL307dvX9566y1GjRpFaGgoa9euZf78+fYJOfbv319kJshOnToxY8YMPvzwQ1q3bs23337L7NmzadGihb3PnDlzaNOmDb179wagX79+tGnTpsg0/G+//TY33XQTt99+O127dsXPz4/vv//evt3BwYG5c+fi4OBAREQE9957LwMGDOCVV1656NcmIlLWfZtwkN1HM6hRxZmHrrn4D9dErrYqLo482b3g+sh34nZwKjvP5EQiIqXnktZBi4mJAeCdd97h4Ycfxt3975m+8vPzWb58OQ4ODvz1118ln7Qc0jpoIlJWZeXm023c7ySnZzHypmYM6qICrSQFAssCAwlMTIQkK/jbgNrAQZOTlV85eTZ6vL2YvccyefL6hsT0aGJ2JBGRS3KxtYHjpex0zZo1QMEI2oYNG4os2Ozs7Ezr1q159tlnLzOyiIhcLZ/H7yU5PYvaXm7cE17H7DgiF+TsaOXFXiE89sVqPvxjN3eH18XP8+LP2hERKS8uqUBbtGgRAAMHDuSdd97RqJCISDmUnpXL+7/vAmBYZCNcnRxMTiRycaKa+9G+XnVW7j3O+AXbGHdna7MjiYiUuMu6Bm3atGkqzkREyqmPluzmRGYuDX2qclub2mbHEbloFouFETc2BeDb1QfZnJRuciIRkZJ30SNot912G9OnT8fDw4PbbrvtvH3/OeGGiIiUHUdOZvPJn3sAeLZHExwdLutzOrmAh4GNDz/MgbQ0IratAf82gKfZsSqENnWqc3PrAH5al8Rr87bwv0EdsFgsZscSESkxF12geXp62n8Aenrql4yISHn03sIdZObk0zrIi6jmvmbHqbBGA4webXaMCuv5qCb8ujGZP3ceZfH2I3Rr4mN2JBGREnNJszjKpdEsjiJSluw5msENExaTZzOY8VA4nRp6mx1J5LK9Nm8LHy7ZTWPfqsx78hqNBotImXextcFl/TQ7ffo0mZmZ9vv79u1j4sSJLFiw4HJ2JyIiV8Ebv2wlz2ZwXZNaKs6k3BvSrSFe7k5sTznFtwlavkBEKo7LKtBuueUWPv/8cwBOnDhBhw4dGD9+PLfccgtTpkwp0YAiInLlVu5NZf6mZKwWGF44yYJIeebp7sST1zcCYHzsdjK0eLWIVBCXVaCtXr2aa665BoBvv/0WPz8/9u3bx+eff86kSZNKNKCIiFwZwzD4789bAOjbvg6NfauZnKjiCwQOBgaCxQKHHABLYauUpHs71qVuTXeOnMzmwyW7zY4jIlIiLqtAy8zMpFq1gl/wCxYs4LbbbsNqtdKxY0f27dtXogFFROTKzF1/iHUHTuDu7MDTNzQyO45IiXF2tPJizxAAPlyym5T0LJMTiYhcucsq0Bo2bMjs2bM5cOAAv/76Kz169ADg8OHDmgxDRKQMyc7L581ftwLw2LUN8KnmanIikZLVs4UfYXWrczo3n/ELtpkdR0Tkil1WgTZq1CieffZZ6tWrR3h4OBEREUDBaFqbNm1KNKCIiFy+/8Xv40DqaXyqufDQNcFmxxEpcRaLhf/0LriuclbCQTYmppmcSETkylxWgXbHHXewf/9+Vq1axfz58+3t3bt35+233y6xcCIicvlOZOYwKW4HULAotbvzRS99KVKutK1TnVtCAzAMePmnTWgFIREpzy570RA/Pz/atGmD1fr3Ljp06EBISEiJBBMRkSvz7sKdpGflEeJXjdvDNEGFVGwv9grBzcmBlXuPM3f9IbPjiIhctssq0DIyMhg5ciSdOnWiYcOG1K9fv8hNRETMte9YBp/H7wVgxI1NcbBazA0kUsr8Pd0Y3K0BAGPnbeF0Tr7JiURELs9lne/y0EMPsXjxYu677z78/f2xWPSLX0SkLPm/n7eQm29wTSNvujauZXYckavika71mbnyAIknTjN18S6evqGx2ZFERC7ZZRVov/zyCz///DOdO3cu6TwiInKF/txxlAWbU3CwWhh1UzOz44hcNa5ODvynd1Me/3I1Uxfv4q72QdT2cjM7lojIJbmsUxyrV69OjRo1SjqLiIhcobx8Gy//tAmA+zrWpZEWpZZKplcLP8KDa5CdZ+O1eVvMjiMicskuq0B79dVXGTVqFJmZmSWdR0RErsAXy/ax4/Apqrs78XSkTu8yyxdA0hdfsG7+fEgZD8wvbJXSZrFYGH1zc6wW+Hn9IZbvPmZ2JBGRS2IxLmMu2jZt2rBr1y4Mw6BevXo4OTkV2b569eoSC1iepaen4+npSVpamhbwFpFSl5qRQ7dxi0jPyuO/0S24t2NdsyOJmOY/P2zgy+X7aebvwU9Du2iiHBEx3cXWBpd1DVp0dPTl5hIRkVIyfsE20rPyaOrvQf8OdcyOI2KqmBsa89O6JDYfSmfmygPcHa7/EyJSPlzWCJpcHI2gicjVsjkpnZve/QObATMf6Uh4/ZpmRxIx3ad/7uGVuZupUcWZRc92w9PN6cIPEhEpJRdbG1z2QtUnTpzg448/Zvjw4aSmpgIFpzYmJiZe7i5FROQyGIbByz9twmZA71b+Ks7KgN+BFb//zrpff4W1E4FfC1vlarovoi4NfaqSmpHDhAXbzI4jInJRLusUx/Xr1xMZGYmnpyd79+7l4YcfpkaNGnz//ffs37+fzz//vKRziojIOcxdf4jle1JxcbQyvFeI2XEEuBdYdu+9BCYmQpIVsAG1gYPmBqtknBysvNynOfd8vJz/LdvHne2CaFHb0+xYIiLndVkjaDExMTzwwAPs2LEDV1dXe/uNN97IkiVLSiyciIic38msXF6duxmAx7s1JLC6u8mJRMqWzg29ubl1ADYDXpq9EZtNV3aISNl2WQXaypUrefTRR89qr127NsnJyVccSkRELs7bsTs4fDKbejXdefTa+mbHESmTXurdlKoujqw9cIKZqw6YHUdE5Lwuq0BzcXEhPT39rPbt27dTq1atKw4lIiIXtikpjelL9wDwyi0tcHVyMDmRSNnk6+HK0zcUrAv4xvytpGbkmJxIROTcLqtA69OnD6+88gq5ublAwaKQ+/fv54UXXuD2228v0YAiInI2m80oOF2rcGKQro314ZjI+dwfUZcQv2qcyMzljV+2mh1HROScLqtAGz9+PKdOnaJWrVqcPn2aa6+9loYNG1KtWjX+7//+r6QziojIv8xcdYA1+09Q1cWRUTc1MzuOSJnn6GDlv9EtgIL/Pwn7jpucSESkeJdVoHl6ehIbG8vPP//MpEmTeOKJJ5g3bx6LFy+mSpUql7y/yZMnU69ePVxdXQkPD2fFihXn7T9r1ixCQkJwdXWlZcuWzJs3r8h2wzAYNWoU/v7+uLm5ERkZyY4dO+zbf//9dywWS7G3lStXArB3795ity9btuySX5+ISEk6diqb1wtHAJ6+oTG+Hq4XeISIALSrV4M7wwIBGDl7I3n5NpMTiYic7ZILNJvNxqeffspNN93Eo48+ypQpU/jzzz9JSkricta8njlzJjExMYwePZrVq1fTunVroqKiOHz4cLH9ly5dSv/+/Rk0aBBr1qwhOjqa6OhoNm7caO/z5ptvMmnSJKZOncry5cupUqUKUVFRZGVlAdCpUycOHTpU5PbQQw8RHBxMu3btijzfb7/9VqRfWFjYJb9GEZGS9PovW0k7nUtTfw/uj6hrdhyRcuXFXiF4ujmx+VA6/1u2z+w4IiJnsRiXUFUZhsHNN9/MvHnzaN26NSEhIRiGwZYtW9iwYQN9+vRh9uzZlxQgPDyc9u3b89577wEFBWBQUBBDhw7lxRdfPKt/3759ycjIYO7cufa2jh07EhoaytSpUzEMg4CAAJ555hmeffZZANLS0vD19WX69On069fvrH3m5uZSu3Zthg4dysiRI4GCEbTg4GDWrFlDaGjoJb2mMy52tXARkYu1fPcx+n5YMJL/3eBOhNWtbnIiKU4gsCww8O910Py1DlpZ8sWyfbw0eyNVXRz5LeZa/Dw1Ci0ipe9ia4NLGkGbPn06S5YsIS4ujjVr1vDVV1/x9ddfs27dOn777TcWLlx4SYtU5+TkkJCQQGRk5N+BrFYiIyOJj48v9jHx8fFF+gNERUXZ++/Zs4fk5OQifTw9PQkPDz/nPufMmcOxY8cYOHDgWdv69OmDj48PXbp0Yc6cOed9PdnZ2aSnpxe5iYiUlKzcfF78fgMA/TsEqTgTuUz9O9QhNMiLU9l5jPxx42WdASQiUlouqUD76quvGDFiBNddd91Z266//npefPFFvvzyy4ve39GjR8nPz8fX17dIu6+v7znXU0tOTj5v/zNfL2Wfn3zyCVFRUQQGBtrbqlatyvjx45k1axY///wzXbp0ITo6+rxF2tixY/H09LTfgoKCztlXRORSvRO3gz1HM/D1cOHFXk3NjiPncRAIPHgQDAP88wEDjZ6VHQ5WC6/f3hJHq4XYzSnM36g1XEWk7LikAm39+vX07NnznNt79erFunXrrjjU1XTw4EF+/fVXBg0aVKTd29ubmJgY+ymYr7/+Ovfeey/jxo07576GDx9OWlqa/XbggBbDFJGSsTExjQ+X7Abg1Vta4OnmZHIikfItxM+Dwd0aADBqzibSTueanEhEpMAlFWipqalnjUz9k6+vL8ePX/y0td7e3jg4OJCSklKkPSUlBT8/v2If4+fnd97+Z75e7D6nTZtGzZo16dOnzwXzhoeHs3PnznNud3FxwcPDo8hNRORK5ebbeP7b9eTbDHq38qdH8+J/PorIpRlyXUPq16rCkZN/z4wqImK2SyrQ8vPzcXR0POd2BwcH8vLyLnp/zs7OhIWFERcXZ2+z2WzExcURERFR7GMiIiKK9AeIjY219w8ODsbPz69In/T0dJYvX37WPg3DYNq0aQwYMAAnpwt/Gr127Vr8/f0v+vWJiJSEj/7YzeZD6Xi5OzHm5uZmxxGpMFydHBh7a0sAvlqxn2W7j5mcSEQEzl1tFcMwDB544AFcXFyK3Z6dnX3JAWJiYrj//vtp164dHTp0YOLEiWRkZNgn7BgwYAC1a9dm7NixAAwbNoxrr72W8ePH07t3b77++mtWrVrFhx9+CIDFYuGpp57iv//9L40aNSI4OJiRI0cSEBBAdHR0kedeuHAhe/bs4aGHHjor12effYazszNt2rQB4Pvvv+fTTz/l448/vuTXKCJyuXYdOcXE3wrWcRzZuxm1qhX/81fKlpeB8JdfxjMtjYg+a6BbG8ATGG1yMvm38Po16d+hDl+t2M+I7zcwb9g1uDo5mB1LRCqxSyrQ7r///gv2GTBgwCUF6Nu3L0eOHGHUqFEkJycTGhrK/Pnz7adS7t+/H6v174G+Tp06MWPGDF566SVGjBhBo0aNmD17Ni1atLD3ef7558nIyOCRRx7hxIkTdOnShfnz5+PqWnQa3U8++YROnToREhJSbLZXX32Vffv24ejoSEhICDNnzuSOO+64pNcnInK5bDaD4d9tICfPRtfGtbitbW2zI8lF+ggY9NFHBdPsP2cFfqdgmn0VaGXRi71CiNuSwu6jGUxetJNnejQxO5KIVGKXtA6aXBqtgyYiV+LTP/fwytzNuDs7sODprgRWdzc7klwkrYNW/szfeIjHvliNo9XC3Ce7EOKn39siUrJKZR00ERG5OnYePsUb8wsmLRh+Y1MVZyKlrGcLf3o08yXPZvDcrPXk5tvMjiQilZQKNBGRMiYv38Yz36wlO8/GNY28uTe8jtmRRCqFV6MLlrDYkJjGB4t3mR1HRCopFWgiImXM+7/vYt3BNKq5OvLmHa2wWCxmRxKpFHw9XHm5T8FMqe/E7WBzUrrJiUSkMlKBJiJShmxMTGNSXMGsja/c0hx/TzeTE4lULreEBtCjmS+5+QbPzlpHTp5OdRSRq0sFmohIGZGVm0/MN2vJsxn0auFHdKhmbRS52iwWC/93a0uquzux+VA67y3aaXYkEalkVKCJiJQRb87fxvaUU3hXdea/0S10aqOISWpVc+HV6ILleyYv2snGxDSTE4lIZaICTUSkDFi07TCf/rUHgDdub0XNqlqQWsRMN7UKoHdLf/JtBs98s47svHyzI4lIJaECTUTEZIdPZvHsN+sAeKBTPbo39TU5kVypa4Ht117L+h49YHcQ0KOwVcqTV6Nb4F3VmW0pJ5kQu93sOCJSSWih6lKkhapF5EJsNoP7p63gjx1HCfGrxuwhnXF1cjA7logU+nVTMo/+LwGLBb58KJxODbzNjiQi5ZQWqhYRKQc+/nM3f+w4iquTlXf7t1FxJlLGRDX3o3+HIAwDYmau40RmjtmRRKSCU4EmImKSDQfTGPfrNgBG3tSMRr7VTE4kIsUZeVMz6ntXITk9ixE/bEAnH4lIaVKBJiJigrTTuQyZsZrcfIOezf24u0MdsyOJyDm4OzsysV8ojlYL8zYkMyvhoNmRRKQCU4EmInKVGUbBArj7UzMJrO7G67e31JT6Fcz1wPLrr2dv8+awpjrQvLBVyqtWgV4806MJAGPmbGLv0QyTE4lIRaUCTUTkKvvoj93Ebk7B2cHK+/e0xcvd2exIUsK2A7W3b6fe5s3glw5sLmyV8uyRrvXpWL8GmTn5DJu5ltx8m9mRRKQCUoEmInIVrdybyhvzC647G3VzM1oFepkbSEQumoPVwoS7QvFwdWTdgROMX6CiW0RKngo0EZGr5MjJbIZ8uZp8m0F0aAD3hOu6M5HyJsDLjTdubwXA1MW7WLg1xeREIlLRqEATEbkK8vJtPPnVGg6fzKaRT1X+71ZddyZSXvVq6c8DneoBEPPNOhJPnDY3kIhUKCrQRESugv+bt4X43ceo4uzAlHvbUsXF0exIInIFht8YQutAT05k5vLEjNXk5Ol6NBEpGSrQRERK2TerDjDtr70ATOgbSkMfrXcmUt65ODrw3t1t8XB1ZM3+E7wxf6vZkUSkglCBJiJSihL2HeelHzYC8HRkY6Ka+5mcSERKSlANd966szUAn/y5h/kbk01OJCIVgQo0EZFSkpyWxWNfJJCTb6Nncz+GXt/Q7EgiUsJ6NPfjoS7BADz37Tr2HdP6aCJyZVSgiYiUgqzcfB793yqOnMymiW81xt/VGqtVk4KIVEQv9AqhbR0vTmbl8ej/EsjIzjM7koiUYyrQRERKmM1m8PTMtaw7mIaXuxMfDWinSUEqmVHAllGjiB8/Hnb0B8YXtkpF5ORgZfI9bfGu6sLW5JM89+06DMMwO5aIlFMWQz9BSk16ejqenp6kpaXh4eFhdhwRuUrG/rKFDxbvxsnBwv8GhdOxfk2zI4nIVbBqbyr9P1pGbr7Bc1FNGHKdTmsWkb9dbG2gETQRkRI0Y/l+Pli8G4A372il4kykEmlXrwYv92kBwFsLtmkRaxG5LCrQRERKyO/bDjPyx79nbLy1TaDJiUTkars7vA73hNfBMGDYV2vZdeSU2ZFEpJxRgSYiUgI2JaXxxIw15NsMbmtbmye769SmyuwQkHToECkHD0LKWuBgYatUBqNvbk77etU5mZ3Hw5+vIj0r1+xIIlKOqEATEblC+45lcP+nKzmVnUfH+jV4/bZWWCyasbEyaw/Y2rfHNygIbGFAUGGrVAbOjlbevycMf09Xdh/JYMiXq8nNt5kdS0TKiTJRoE2ePJl69erh6upKeHg4K1asOG//WbNmERISgqurKy1btmTevHlFthuGwahRo/D398fNzY3IyEh27NhRpE+9evWwWCxFbq+//nqRPuvXr+eaa67B1dWVoKAg3nzzzZJ5wSJSYRxOz+LeT5Zz9FQ2Tf09+HBAO5wdy8SPVhExUa1qLnw0oB3uzg78seMoI2dv1MyOInJRTP8rYubMmcTExDB69GhWr15N69atiYqK4vDhw8X2X7p0Kf3792fQoEGsWbOG6OhooqOj2bhxo73Pm2++yaRJk5g6dSrLly+nSpUqREVFkZWVVWRfr7zyCocOHbLfhg4dat+Wnp5Ojx49qFu3LgkJCYwbN44xY8bw4Ycfls6BEJFyJy0zlwGfruBA6mnq1nTnswfb4+HqZHYsESkjWtT25N3+bbBa4OuVB5haOIGQiMj5mD7Nfnh4OO3bt+e9994DwGazERQUxNChQ3nxxRfP6t+3b18yMjKYO3euva1jx46EhoYydepUDMMgICCAZ555hmeffRaAtLQ0fH19mT59Ov369QMKRtCeeuopnnrqqWJzTZkyhf/85z8kJyfj7OwMwIsvvsjs2bPZunXrRb02TbMvUnGdzsnnvk+Ws2rfcWpVc+G7xzpRp6a72bGkjAgElgUGEpiYCElW8LcBtSm4Fk0qm+l/7WHMT5sBmHx3W3q38jc5kYiYoVxMs5+Tk0NCQgKRkZH2NqvVSmRkJPHx8cU+Jj4+vkh/gKioKHv/PXv2kJycXKSPp6cn4eHhZ+3z9ddfp2bNmrRp04Zx48aRl5dX5Hm6du1qL87OPM+2bds4fvx4sdmys7NJT08vchORiic338aQGatZte841Vwd+fzBDirOROScHugczMDO9QB4+pu1JOxLNTeQiJRpphZoR48eJT8/H19f3yLtvr6+JCcnF/uY5OTk8/Y/8/VC+3zyySf5+uuvWbRoEY8++iivvfYazz///AWf55/P8W9jx47F09PTfgsKCjrnaxeR8ikv38awr9ewcOthXBytfPpAe5r6a4RcRM7vpd7NiGzqQ06ejQenr2J7ykmzI4lIGWX6NWhmiYmJoVu3brRq1YrHHnuM8ePH8+6775KdnX3Z+xw+fDhpaWn224EDB0owsYiYLS/fxtPfrGPehmScHCxMvTeM9vVqmB1LRMoBB6uFSf3b0KaOF2mncxnwyQoOHs80O5aIlEGmFmje3t44ODiQkpJSpD0lJQU/P79iH+Pn53fe/me+Xso+oeBauLy8PPbu3Xve5/nnc/ybi4sLHh4eRW4iUjHk2wye+3Y9P61LwsnBwpR7wrguxMfsWCJSjrg7OzLtgfY08qlKcnoWAz5ZwbFTl//BsIhUTKYWaM7OzoSFhREXF2dvs9lsxMXFERERUexjIiIiivQHiI2NtfcPDg7Gz8+vSJ/09HSWL19+zn0CrF27FqvVio+Pj/15lixZQm7u34tLxsbG0qRJE6pXr37pL1ZEyi2bzeCF79bzw5pEHK0W3u3flshmvhd+oIjIv3i5O/P5oA7U9nJj99EMBk4vWENRROQM009xjImJ4aOPPuKzzz5jy5YtDB48mIyMDAYOHAjAgAEDGD58uL3/sGHDmD9/PuPHj2fr1q2MGTOGVatW8cQTTwBgsVh46qmn+O9//8ucOXPYsGEDAwYMICAggOjoaKBgApCJEyeybt06du/ezZdffsnTTz/Nvffeay++7r77bpydnRk0aBCbNm1i5syZvPPOO8TExFzdAyQiprLZDEb8sIFvEw7aT1Hq2eLco/EiIhfi7+nG54M6UKOKM+sPpvHwZ6vIys03O5aIlBGOZgfo27cvR44cYdSoUSQnJxMaGsr8+fPtE3Ls378fq/XvOrJTp07MmDGDl156iREjRtCoUSNmz55NixYt7H2ef/55MjIyeOSRRzhx4gRdunRh/vz5uLq6AgWnIn799deMGTOG7OxsgoODefrpp4sUX56enixYsIAhQ4YQFhaGt7c3o0aN4pFHHrlKR0ZEzJaXb+P579bz/epErBZ4u28oN7bU9NhyYXHA6bg49uTlEXx6P1CHMvArV8qQBrWqMn1ge/p/uIz43cd45H8JfHhfGK5ODmZHExGTmb4OWkWmddBEyq+cPBtPz1zLzxsO4WC1MOGu1twSWtvsWCJSwazcm8qAT1ZwOjef7iE+TLk3DGdH009wEpFSUC7WQRMRKYuycvN57IsEft5wCGcHK+/f01bFmYiUivb1avDJ/e1wcbQSt/UwQ79aTW6+zexYImIiFWgiIv+QkZ3Hg9NX2tc5++j+dkQ11zVnIlJ6OjX05qMB7XB2sPLrphSemrlWRZpIJaYT4kVECqVl5vLgZytJ2HecKs4OfPJAezrWr2l2LCmHZgD+M2bgnplJeNM10LkN4A7cbXIyKau6Nq7F1Pva8uj/Evh5/SFy82y8e3cbXBx1TZpIZaNr0EqRrkETKT+STpzm/k9XsOPwKTxcHfl8UDihQV5mx5JyKhBYFhhIYGIiJFnB3wbUBg6anEzKurgtKQz+cjU5eTa6Nq7FB/eG4easIk2kItA1aCIiF2l7yklue38pOw6fws/DlW8ei1BxJiKm6N7Ul0/vb4+bkwNLth/hgWkrtE6aSCWjAk1EKrUVe1K5Y8pSktOzaOhTle8f70SIn0a8RcQ8XRp58/mgDlR1cWT5nlTu/Xg5aZm5ZscSkatEBZqIVFrzNx7i3k+Wk56VR7u61fn2sQgCvNzMjiUiQvt6NZjxcDhe7k6sPXCCfh8t43B6ltmxROQqUIEmIpXS5/F77dd59GjmyxcPhePl7mx2LBERu1aBXnz9SEe8q7qw5VA6t76/lJ2HT5kdS0RKmQo0EalU8vJtjJmziVE/bsIw4O7wOky5NwxXJ12ELyJlT4ifB98P7kSwdxUST5zmjqlLSdiXanYsESlFKtBEpNJIz8pl0GermL50LwDPRTXh/6Jb4GC1mBtMROQ86tR059vCyYtOZOZy90fL+XVTstmxRKSUqEATkUrhQGomd0xZyuLtR3B1sjL13rYMua4hFouKMxEp+2pWdeGrhzsS2dSH7Dwbg79I4PP4vWbHEpFSoAJNRCq8hH2pRE/+i+0pp/D1cGHWo53o2cLf7FgiIpfEzdmBqfeG0b9DHWwGjPpxE6N+3Ehuvs3saCJSglSgiUiFNntNIv0/XM6xjBxa1PbgxyFdaBnoaXYsqeD8gGN+fqTUrg3HXSlYpNrP5FRSETg6WHnt1hY837MJFgt8Hr+PB6at4ERmjtnRRKSEWAzDMMwOUVFd7GrhIlLy8vJtvDF/Kx/9sQeAqOa+vN03FHdnR5OTiYiUjAWbknlq5loyc/KpV9Odj+9vT0OfqmbHEpFzuNjaQCNoIlLhpGbkMODTFfbi7PFuDZhyT5iKMxGpUHo09+O7wZ2o7eXG3mOZ3Pr+XyzadtjsWCJyhVSgiUiFsjExjZvf/ZOlu47h7uzA+/e05fmeIVg1U6OIVEBN/T348YnOtK9XnZNZeTw4fSUTf9uOzaYTpETKKxVoIlJhfL/6ILdPWUriidMEe1dh9pDO3NhSk4GISMXmXdWFLx4Kp3+HOhgGTPxtBwOnr+R4hq5LEymPVKCJSLmXW7j4dMw368jOs3F9iA+zh3SmsW81s6NJJfUoEPvooyTceScsaQrcWdgqUjpcHB0Ye1tL3rqzNS6OVhZvP8JN7/7JugMnzI4mIpdIk4SUIk0SIlL6Dqdn8cRXa1ixJxWAJ7s34qnujXRKo5gqEFgWGEhgYiIkWcHfRsFMjgdNTiaVweakdAZ/mcC+Y5k4O1gZ3acZd3eoo3UfRUymSUJEpMJbuvMoN076kxV7Uqnq4shHA9oRc0NjFWciUqk1C/BgzhNd6NHMl5x8G//5YSNDv1pD2ulcs6OJyEVQgSYi5U6+zeCd33ZwzyfLOXoqmxC/avz4RGduaOZrdjQRkTLB082JD+4LY3ivEBysFuauP8SN7/xBwr5Us6OJyAWoQBORcuXoqWwemLaCt3/bjmFA33ZB/PB4ZxrU0to/IiL/ZLFYePTaBsx6LIKgGm4knjjNXR8sY1LcDvI1y6NImaUCTUTKjRV7Uuk96Q/+2HEUNycHxt/ZmjfuaIWbs4PZ0UREyqy2darz85PXcEtoAPk2gwmx2+n/4TIST5w2O5qIFEMFmoiUeTabwZTfd9H/o2WkpGfT0KcqPz7RmdvDAs2OJiJSLni4OvFOvzZMuKs1VZwdWLE3lV4TlzB7TSKaL06kbFGBJiJl2rFT2Tz0+SremL+VfJtBdGgAP2oKfRGRy3Jb20DmDbuG1kFepGfl8dTMtTz2RQJHT2WbHU1ECqlAE5Ey688dR+n1zh8s3HoYZ0crY29rydt9Q6ni4mh2NBGRcqtuzSp891gEz9zQGEerhV83pdDj7SXM33jI7Ggiggo0ESmDcvJsjP1lC/d9upzDJwtPaRzSmf5ax0dEpEQ4OlgZ2r0RPz7RmRC/aqRm5PDYF6t56us1pGVqOn4RM+ljaBEpU/Ydy+DJr9aw7mAaAHeH12Fk72aaCETKlf7Axv79STx+nPBt68C/NVDd7FgiZ2ke4MmPT3RmUtwOpvy+i9lrk1i66xiv3dqSSC1dImKKMjGCNnnyZOrVq4erqyvh4eGsWLHivP1nzZpFSEgIrq6utGzZknnz5hXZbhgGo0aNwt/fHzc3NyIjI9mxY4d9+969exk0aBDBwcG4ubnRoEEDRo8eTU5OTpE+FovlrNuyZctK9sWLiN33qw9y4zt/sO5gGp5uTky9ty2v3dpSxZmUO+OAnuPGEf7xx9BtJfBxYatI2ePi6MBzUSF8N7gT9b2rcPhkwbW/Q2as5shJXZsmcrWZXqDNnDmTmJgYRo8ezerVq2ndujVRUVEcPny42P5Lly6lf//+DBo0iDVr1hAdHU10dDQbN26093nzzTeZNGkSU6dOZfny5VSpUoWoqCiysrIA2Lp1KzabjQ8++IBNmzbx9ttvM3XqVEaMGHHW8/32228cOnTIfgsLCyudAyFSiZ3MyuWpr9cQ8806MnLy6RBcg1+GXUPPFv5mRxMRqTTa1KnOvGHX8Oi19XGwWvh5/SEiJyxm1qoDmulR5CqyGCb/jwsPD6d9+/a89957ANhsNoKCghg6dCgvvvjiWf379u1LRkYGc+fOtbd17NiR0NBQpk6dimEYBAQE8Mwzz/Dss88CkJaWhq+vL9OnT6dfv37F5hg3bhxTpkxh9+7dQMEIWnBwMGvWrCE0NPSyXlt6ejqenp6kpaXh4eFxWfsQqehW7z/OU1+vZX9qJlYLPBXZmCHXNcTBqmvNRETMsjExjRe+W8+mpHQAujT05rVbW1KnprvJyUTKr4utDUwdQcvJySEhIYHIyEh7m9VqJTIykvj4+GIfEx8fX6Q/QFRUlL3/nj17SE5OLtLH09OT8PDwc+4TCoq4GjVqnNXep08ffHx86NKlC3PmzLmk1yci55abb2P8gm3cMWUp+1Mzqe3lxjePRvBk90YqzkRETNaitic/DunMi71CcHG08ufOo/SYuJiPluwmL99mdjyRCs3UAu3o0aPk5+fj61v0IlRfX1+Sk5OLfUxycvJ5+5/5ein73LlzJ++++y6PPvqova1q1aqMHz+eWbNm8fPPP9OlSxeio6PPW6RlZ2eTnp5e5CYiZ9t5+CS3vb+UdxfuxGZAdGgA84ZdQ7t6Z39IIlIehQDbQ0I45eEBu10Aj8JWkfLD0cHKY9c2YP5TXelYvwZZuTb+b94Wbpn8F2v2Hzc7nkiFVelncUxMTKRnz57ceeedPPzww/Z2b29vYmJi7Pfbt29PUlIS48aNo0+fPsXua+zYsbz88sulnlmkvLLZDD6L38vrv2wlO8+Gp5sT/3drC25qFWB2NJESdQpwP3WKqidPgpsVyClsFSl/gr2r8NXDHZm58gCvzdvCpqR0bpuylH7t6/BCzyZ4uTubHVGkQjF1BM3b2xsHBwdSUlKKtKekpODn51fsY/z8/M7b/8zXi9lnUlIS1113HZ06deLDDz+8YN7w8HB27tx5zu3Dhw8nLS3Nfjtw4MAF9ylSWRxKO82AT1fw8k+byc6zcU0jb359qquKMxGRcsBisdCvQx0WPtuNO8ICMQz4asV+rh9fMImIzaZJRERKiqkFmrOzM2FhYcTFxdnbbDYbcXFxREREFPuYiIiIIv0BYmNj7f2Dg4Px8/Mr0ic9PZ3ly5cX2WdiYiLdunUjLCyMadOmYbVe+FCsXbsWf/9zzyrn4uKCh4dHkZuIwJx1SUS9vYQ/dx7F1cnKK7c05/MHO+Dn6Wp2NBERuQTeVV14687WfPNoBI19q5KakcNz366n74fxbE3WpR0iJcH0UxxjYmK4//77adeuHR06dGDixIlkZGQwcOBAAAYMGEDt2rUZO3YsAMOGDePaa69l/Pjx9O7dm6+//ppVq1bZR8AsFgtPPfUU//3vf2nUqBHBwcGMHDmSgIAAoqOjgb+Ls7p16/LWW29x5MgRe54zo2yfffYZzs7OtGnTBoDvv/+eTz/9lI8//vhqHRqRci81I4dRP25k7vpDALQO9GRC31Aa1KpqcjIREbkSHYJr8POT1zDtrz1M/G0HK/cep/ekPxnUJZhh3RtRxcX0PzFFyi3T//f07duXI0eOMGrUKJKTkwkNDWX+/Pn2ST72799fZHSrU6dOzJgxg5deeokRI0bQqFEjZs+eTYsWLex9nn/+eTIyMnjkkUc4ceIEXbp0Yf78+bi6FnxaHxsby86dO9m5cyeBgYFF8vxz1YFXX32Vffv24ejoSEhICDNnzuSOO+4ozcMhUmHM23CIkbM3ciwjBwerhaHXN2TIdQ1xcjB9+UURESkBTg5WHunagJtaBfDKT5uZvymZD5fsZs7aJF7sFcItoQFYLJqVV+RSmb4OWkWmddCkMjp6KpvRP27i5w0Fo2ZNfKsx7s5WtAr0MjeYyFUUCCwLDCQwMRGSrOBvA2oDB01OJlJ6Fm09zOg5m9ifmglAWN3qjLm5OS0DPU1OJlI2XGxtYPoImohUDIZhMHf9IUbP2URqRg6OVguPd2vAkOsb4uLoYHY8EREpZdeF+BDRoCaf/LmH9xbuJGHfcfpM/pO7woJ4rmcTvKu6mB1RpFxQgSYiV+zwySxGzt7Ir5sKZk9t6u/BuDta0aK2PjUVEalMXJ0cGHJdQ25vG8jrv2xh9tokZq46wLwNh3iyeyPu71QPZ0ed6i5yPvofIiKXzTAMvks4SI+3l/DrphQcrRaeimzEj0M6qzgTEanE/DxdmdivDd8NjqBlbU9OZufxf/O20POdJSzadtjseCJlmq5BK0W6Bk0qsj1HM/jPDxtYuusYAM0DPBh3R2uaBei9LjIX8Jo7F7fTpwmruwE6tATcgJtMTiZy9dlsBt8mHOTNX7dy9FQOANc1qcWIG5vSyLeayelErp6LrQ1UoJUiFWhSEeXk2fhg8S7eXbSTnDwbLo5WhkU24uFr6muGRhEROaf0rFzejdvBtL/2kmczsFqgb/s6PH1DI3yqaV1MqfhUoJUBKtCkolmxJ5URP2xg5+FTAFzTyJv/i25JnZruJicTEZHyYveRU7wxf6v9umV3Zwce7dqAh7sG4+6s6RGk4lKBVgaoQJOK4kRmDq//spWvVx4AwLuqMyNvakaf1lrjRkRELs+KPan837wtrDtwAgCfai7E3NCYO9sF4WDV7xapeFSglQEq0KS8y7cZfL1yP2/9uo3jmbkA9O8QxAs9Q/BydzY5nUjZlQA4JSTgnJNDiNcuaNoAcAbCTE4mUracWaLlzV+3ciD1NACNfasyvFdTujWppQ8BpUJRgVYGqECT8mzV3lRGz9nEpqR0oOAX5n+jW9IhuIbJyUTKPi1ULXJpsvPy+V/8Pt5duJO00wUfCIYH1+C5qCa0q6ffO1IxqEArA1SgSXmUkp7F679s5Yc1iQBUc3Uk5obG3NexLo6aBETkoqhAE7k8aZm5vLdoB58t3UdOvg2Abk1q8WyPJlq+Rcq9i60NdCWmiACQlZvPtL/28t7CHWTk5GOxwF1hQTzXswneVV3MjiciIpWAp7sT/+ndjAc6B/Nu3A5mJRzk921H+H3bEXq18CPmhsaaml8qPI2glSKNoEl5YLMZzF6byPgF20k8UXD+f2iQFy/3aU7rIC9zw4mUUxpBEykZe49mMPG37fy4LgnDAIsFokNr81RkI+rWrGJ2PJFLolMcywAVaFLW/bHjCGPnbWXzoYLrzPw9XXmmRxNua1Mbq2bQErlsKtBESta25JO8Hbud+ZuSAXC0WohuU5vB3RrQoFZVk9OJXByd4igi57QxMY035m/ljx1HAajm4sjj1zVkYOd6uDo5mJxORESkqCZ+1Zh6XxgbDqbx1oJtLN5+hG8TDvLd6oPc2NKfId0a0ixAH4ZLxaACTaQS2ZSUxsTfdhC7uWBxUCcHC/d1rMcT1zekRhVNmy8iImVby0BPPnuwA2sPnOC9hTv5bUsKP68/xM/rD9E9xIch1zekbZ3qZscUuSIq0EQqgS2H0pn423Z+3VRQmFkscEvrAGJuaEKdmu4mpxMREbk0oUFefHx/O7YcSuf933fx8/ok4rYeJm7rYTo1qMkjXetzbWOtoyblk65BK0W6Bk3MtuFgGlMW72TehoJz9i0WuLlVAE92b0RDH52zL1JadA2ayNW152gGU37fyferE8mzFfxp29CnKg92Dua2trV1+r6UCZokpAxQgSZmMAyDxduP8MHi3cTvPgYUFGY3tvTnqe6NND2xyFWgAk3EHAePZzLtr73MXHmAU9l5AFR3d+Ke8LoMiKiLj4eryQmlMlOBVgaoQJOrKSfPxk/rkvjoj91sTT4JgIPVQp/WATx2bQOa+KkwE7laTgLGyZNYDINqllNQrSpgAfT/UORqOJmVy8yVB5i+dC8HjxcsIePkYKFXC3/uDq9DeHANnf4oV50KtDJABZpcDclpWXy1Yj9frdjP4ZPZAFRxdqBfhzo82CWY2l5uJicUERExR77NYMGmZD75cw+r9h23t9evVYW7O9Th9raBVNckWXKVqEArA1SgSWmx2QyW7jrGF8v2EbslhfzC8+1rVXNhYOd63NOhLp7uTianFBERKTs2HExjxop9/Lg2icycfACcHaz0aunH7W0D6dzQGwetASqlSAVaGaACTUragdRMvl+dyPdrDrLvWKa9vUNwDe7rWJeo5n44O1pNTCgiIlK2ncrO48e1icxYvp9NSen29lrVXLildQDRbWrTPMBDp0BKiVOBVgaoQJOSkJ6Vyy8bDvFdQiIr9qba26u6OHJb29rc27EujTXxh0iZMgFoPmECHunpRHRbA93aAB5AjMnJROSf1h88wTerDjB3/SFOZOba2xv5VOWW0AB6tvCjoY9+x0rJUIFWBqhAk8t1IjOHBZtTmL8xmT92HCE3v+C/qcUCnRt4c3tYbaKa++HurKUMRcoizeIoUr7k5NlYvP0Is9ckErslhZw8m31bg1pViGruR88WfrSs7amRNblsKtDKABVocin2H8tk8fbDLNicQvyuY/Z1XKDgk7xb29bm1ja18ffUpB8iZZ0KNJHyK+10LvM3HmLehmSW7jpq/5AUIMDTletCfOjauBadGtSkmquu95aLpwKtDFCBJudzOiefZXuOsXjbERZvP8KeoxlFtof4VePGlv70auGntctEyhkVaCIVQ3pWLou2HubXTcks2nqE07n59m2OVgtt61Sna2NvujauRTN/DxwddB24nJsKtDJABZr8U3pWLgn7jrNyTyor96ay7mBakVMoHK0WwupWp1sTH3q28CPYu4qJaUXkSqhAE6l4snLz+XPHUZbsOMKS7UfY+4/JuqBgiZu2davTvl4N2terQWiQF27ODiallbLoYmsDXcAiUgpy8mxsTznJpqQ0NiSmkbDvBFuT0/n3xyG1vdzo2rgW3ZroVAkREZGyzNXJgchmvkQ28wUKL03YcYQ/th8hfvcxTmbl8ceOo/yx4yhQsDB2U38PWtT2pGXhrbFvNc22LBekAk3kChiGwaG0LHYdOcXOw6fYnnKSjYnpbEs+SU6+7az+9Wq62z9Zax9cg3o13XWxsYiISDlUp6Y799Wsy30d65JvM9iecpKVe1NZubfgbJnk9CzWH0xj/cE0+2OcHCw08atGY99qNPSpSiOfgq91arhrDTaxKxMF2uTJkxk3bhzJycm0bt2ad999lw4dOpyz/6xZsxg5ciR79+6lUaNGvPHGG9x444327YZhMHr0aD766CNOnDhB586dmTJlCo0aNbL3SU1NZejQofz0009YrVZuv/123nnnHapWrWrvs379eoYMGcLKlSupVasWQ4cO5fnnny+dgyBlVm6+jeS0LA4eP03iidMcPJ7J3qMZ7DqSwa4jp+yLXf6bh6sjLQM9aRHgSatAL9rXq46Ph+tVTi8iIiKlzcFaMFrW1N+DARH1MAyDg8dPs+7gCTYmprMxseCMmrTTuYX304s83tnBSv1aVQj2rkJgdTeCargXfK3uTu3qbpq1uZIx/V975syZxMTEMHXqVMLDw5k4cSJRUVFs27YNHx+fs/ovXbqU/v37M3bsWG666SZmzJhBdHQ0q1evpkWLFgC8+eabTJo0ic8++4zg4GBGjhxJVFQUmzdvxtW14A/ke+65h0OHDhEbG0tubi4DBw7kkUceYcaMGUDBOaI9evQgMjKSqVOnsmHDBh588EG8vLx45JFHrt4BklJhGAYZOfmknsrhyKlsjp65ncyxf3/kZDaJJ06Tkp6F7TxXajpaLdSt6U5Dn6o09KlK84CC0xgCq7tpdExERKQSslgsBNVwJ6iGOze1CgCwF22bktLYkXKKnUdOsSPlFLuOnCI7z8bW5JNsTT5Z7P5qVnGmVjUXalVzwaeaa+HXgvveVV3wcnfCy90JTzcn3Jwc9PdHOWf6JCHh4eG0b9+e9957DwCbzUZQUBBDhw7lxRdfPKt/3759ycjIYO7cufa2jh07EhoaytSpUzEMg4CAAJ555hmeffZZANLS0vD19WX69On069ePLVu20KxZM1auXEm7du0AmD9/PjfeeCMHDx4kICCAKVOm8J///Ifk5GScnZ0BePHFF5k9ezZbt269qNemSUIujWEY5NkM8vIN8my2wq9Fv8+32cjKtZGVm09Wro3Tuflk5eZzOjef7MKvZ9pP5+STnpXLyaw80k8Xfi28fzIr97xF1785O1qp7eVGbS83+ydbZwqyOjXccdKsTSLyD5okREQuls1mkHjiNDsOn2TfsUwOHj/NgdTCr8czOZmVd0n7c3Kw4OnmjKebI55uBUVbVVcn3J0ccHMuuJ353t3ZEfczbc4OODtYcXK0Fnx1sOLkYMHJwYqzY8F9RweLfZtOybx05WKSkJycHBISEhg+fLi9zWq1EhkZSXx8fLGPiY+PJyYmpkhbVFQUs2fPBmDPnj0kJycTGRlp3+7p6Ul4eDjx8fH069eP+Ph4vLy87MUZQGRkJFarleXLl3PrrbcSHx9P165d7cXZmed54403OH78ONWrVz8rW3Z2NtnZ2fb76enpZ/UxQ8K+47w2bwuGYWAAhgEGBd/8fd8o+Fq47UzdXmRbYXvBY4ve//c+ONe2wkw2m0Fuvo18m0GuzSC/8Ha1uTpZ8a7qYr/VquZc5L6/lyuBXm54V3XBqh9EInKR2gJ72rblVFAQIfv3gH8wUMvsWCJSBlmtf4+2FSftdC5JJ05z+GTB2T2HT2YVfs3mSHrBWT9pp3NJO51Lns0gN9+wnw1UqrktBad2Wi1nbgWv5cz3DlYLFosFh8L7FoulsH/RftZ/jPZZLBYs9u//9bVwi8WCvc+Zjf98zN/f/73t6Rsa07mhd2kchlJhaoF29OhR8vPz8fX1LdLu6+t7zlGq5OTkYvsnJyfbt59pO1+ff58+6ejoSI0aNYr0CQ4OPmsfZ7YVV6CNHTuWl19++dwv2CTppwumdy+vnBwK/kM7Wa04OFhwcbTi5uSAq/1mxdXJ4aw2NycHqrk64eHmiIerE9VcHfFwc8LD9cx9J1ydrDoNQERK3ByAOXPMjiEiFcCZUbCm/ufvZxgGmTn5nDidS1pmrr1oSz+dy6nsPE7n5pOZk0dmTsFZRgX3C74/056bbyM33yj8aiMn7+/7ef/6IN1mgC3f4O+P38uu1IwcsyNcEtOvQatIhg8fXmR0Lz09naCgIBMTFWhe24Op97YFLPZPFs58QmGxnPm0oWDDWdv+8Rj+dd9i+ef3nHv/he1nWAo/VXG0Wv8uvgqHys8UYY6FbWc+cRERERGRc7NYLFRxcaSKiyO1vdxKfP82m0GurbBgyyso4PINo6BQsxnYCr/PtxkY//jeZhScRVXQ1yjsS5Hv4e+zrQq+L/x65oyuMyEKz8oq2EbRr8X0P7OtdZBniR+P0mRqgebt7Y2DgwMpKSlF2lNSUvDz8yv2MX5+fuftf+ZrSkoK/v7+RfqEhoba+xw+fLjIPvLy8khNTS2yn+Ke55/P8W8uLi64uLic8/WaxaeaKz1bXOBjFxERERGRc7BaLbhYHXBxBMren7sViqkzGzg7OxMWFkZcXJy9zWazERcXR0RERLGPiYiIKNIfIDY21t4/ODgYPz+/In3S09NZvny5vU9ERAQnTpwgISHB3mfhwoXYbDbCw8PtfZYsWUJubm6R52nSpEmxpzeKiIiIiIhcKdOnnouJieGjjz7is88+Y8uWLQwePJiMjAwGDhwIwIABA4pMIjJs2DDmz5/P+PHj2bp1K2PGjGHVqlU88cQTQMHw7lNPPcV///tf5syZw4YNGxgwYAABAQFER0cD0LRpU3r27MnDDz/MihUr+Ouvv3jiiSfo168fAQEFU6HefffdODs7M2jQIDZt2sTMmTN55513zpqgRERE5N/6AH/06cPWiAhY7gdEFLaKiIicn+nXoPXt25cjR44watQokpOTCQ0NZf78+fYJOfbv34/V+ncd2alTJ2bMmMFLL73EiBEjaNSoEbNnz7avgQbw/PPPk5GRwSOPPMKJEyfo0qUL8+fPt6+BBvDll1/yxBNP0L17d/tC1ZMmTbJv9/T0ZMGCBQwZMoSwsDC8vb0ZNWqU1kATEZELWg0Er15dMM1+HSuQQsE0+yIiIudn+jpoFZnWQRMRqZy0DpqIiPzbxdYGpp/iKCIiIiIiIgVUoImIiIiIiJQRKtBERERERETKCBVoIiIiIiIiZYQKNBERERERkTJCBZqIiIiIiEgZYfo6aBXZmRUM0tPTTU4iIiJXkw04abORDnDSgCpnWvX7QESksjpTE1xolTMVaKXo5MmTAAQFBZmcRERErrZmZ75pcuYX8SHA05wwIiJSZpw8eRJPz3P/PtBC1aXIZrORlJREtWrVsFgsF+yfnp5OUFAQBw4c0MLWV5GOuzl03K8+HXNz6LibQ8f96tMxN4eOuzku57gbhsHJkycJCAjAaj33lWYaQStFVquVwMDAS36ch4eH/oOZQMfdHDruV5+OuTl03M2h43716ZibQ8fdHJd63M83cnaGJgkREREREREpI1SgiYiIiIiIlBEq0MoQFxcXRo8ejYuLi9lRKhUdd3PouF99Oubm0HE3h4771adjbg4dd3OU5nHXJCEiIiIiIiJlhEbQREREREREyggVaCIiIiIiImWECjQREREREZEyQgWaiIiIiIhIGaECrYyoV68eFoulyO31118v0mf9+vVcc801uLq6EhQUxJtvvmlS2oph7969DBo0iODgYNzc3GjQoAGjR48mJyenSJ9//7tYLBaWLVtmYvLyb/LkydSrVw9XV1fCw8NZsWKF2ZEqlLFjx9K+fXuqVauGj48P0dHRbNu2rUifbt26nfW+fuyxx0xKXP6NGTPmrOMZEhJi356VlcWQIUOoWbMmVatW5fbbbyclJcXExBVDcb87LRYLQ4YMAfQ+LylLlizh5ptvJiAgAIvFwuzZs4tsNwyDUaNG4e/vj5ubG5GRkezYsaNIn9TUVO655x48PDzw8vJi0KBBnDp16iq+ivLlfMc8NzeXF154gZYtW1KlShUCAgIYMGAASUlJRfZxMX9bSlEXeq8/8MADZx3Tnj17FulTEu91FWhlyCuvvMKhQ4fst6FDh9q3paen06NHD+rWrUtCQgLjxo1jzJgxfPjhhyYmLt+2bt2KzWbjgw8+YNOmTbz99ttMnTqVESNGnNX3t99+K/JvExYWZkLiimHmzJnExMQwevRoVq9eTevWrYmKiuLw4cNmR6swFi9ezJAhQ1i2bBmxsbHk5ubSo0cPMjIyivR7+OGHi7yv9aHPlWnevHmR4/nnn3/atz399NP89NNPzJo1i8WLF5OUlMRtt91mYtqKYeXKlUWOeWxsLAB33nmnvY/e51cuIyOD1q1bM3ny5GK3v/nmm0yaNImpU6eyfPlyqlSpQlRUFFlZWfY+99xzD5s2bSI2Npa5c+eyZMkSHnnkkav1Esqd8x3zzMxMVq9ezciRI1m9ejXff/8927Zto0+fPmf1Pd/flnK2C73XAXr27FnkmH711VdFtpfIe92QMqFu3brG22+/fc7t77//vlG9enUjOzvb3vbCCy8YTZo0uQrpKo8333zTCA4Ott/fs2ePARhr1qwxL1QF06FDB2PIkCH2+/n5+UZAQIAxduxYE1NVbIcPHzYAY/Hixfa2a6+91hg2bJh5oSqY0aNHG61bty5224kTJwwnJydj1qxZ9rYtW7YYgBEfH3+VElYOw4YNMxo0aGDYbDbDMPQ+Lw2A8cMPP9jv22w2w8/Pzxg3bpy97cSJE4aLi4vx1VdfGYZhGJs3bzYAY+XKlfY+v/zyi2GxWIzExMSrlr28+vcxL86KFSsMwNi3b5+97UJ/W8r5FXfc77//fuOWW24552NK6r2uEbQy5PXXX6dmzZq0adOGcePGkZeXZ98WHx9P165dcXZ2trdFRUWxbds2jh8/bkbcCiktLY0aNWqc1d6nTx98fHzo0qULc+bMMSFZxZCTk0NCQgKRkZH2NqvVSmRkJPHx8SYmq9jS0tIAznpvf/nll3h7e9OiRQuGDx9OZmamGfEqjB07dhAQEED9+vW555572L9/PwAJCQnk5uYWed+HhIRQp04dve9LUE5ODl988QUPPvggFovF3q73eenas2cPycnJRd7fnp6ehIeH29/f8fHxeHl50a5dO3ufyMhIrFYry5cvv+qZK6K0tDQsFgteXl5F2s/3t6Vcnt9//x0fHx+aNGnC4MGDOXbsmH1bSb3XHUs0sVy2J598krZt21KjRg2WLl3K8OHDOXToEBMmTAAgOTmZ4ODgIo/x9fW1b6tevfpVz1zR7Ny5k3fffZe33nrL3la1alXGjx9P586dsVqtfPfdd0RHRzN79uxiTyWQ8zt69Cj5+fn29+4Zvr6+bN261aRUFZvNZuOpp56ic+fOtGjRwt5+9913U7duXQICAli/fj0vvPAC27Zt4/vvvzcxbfkVHh7O9OnTadKkCYcOHeLll1/mmmuuYePGjSQnJ+Ps7HzWH06+vr4kJyebE7gCmj17NidOnOCBBx6wt+l9XvrOvIeL+7l+ZltycjI+Pj5Ftjs6OlKjRg39HygBWVlZvPDCC/Tv3x8PDw97+4X+tpRL17NnT2677TaCg4PZtWsXI0aMoFevXsTHx+Pg4FBi73UVaKXoxRdf5I033jhvny1bthASEkJMTIy9rVWrVjg7O/Poo48yduxYXFxcSjtqhXIpx/2MxMREevbsyZ133snDDz9sb/f29i7yb9O+fXuSkpIYN26cCjQpF4YMGcLGjRuLXA8FFDkfvmXLlvj7+9O9e3d27dpFgwYNrnbMcq9Xr17271u1akV4eDh169blm2++wc3NzcRklccnn3xCr169CAgIsLfpfS4VXW5uLnfddReGYTBlypQi2/S3Zcnr16+f/fuWLVvSqlUrGjRowO+//0737t1L7HlUoJWiZ555psgnecWpX79+se3h4eHk5eWxd+9emjRpgp+f31kzfp257+fnVyJ5K4pLPe5JSUlcd911dOrU6aImXQkPD7dfiC6XxtvbGwcHh2Lfy3ofl7wnnnjCfoFyYGDgefuGh4cDBSPJ+sP1ynl5edG4cWN27tzJDTfcQE5ODidOnCgyiqb3fcnZt28fv/322wVHxvQ+L3ln3sMpKSn4+/vb21NSUggNDbX3+fdEUHl5eaSmpur/wBU4U5zt27ePhQsXFhk9K86//7aUK1e/fn28vb3ZuXMn3bt3L7H3ugq0UlSrVi1q1ap1WY9du3YtVqvVPkwaERHBf/7zH3Jzc3FycgIgNjaWJk2a6PTGf7mU456YmMh1111HWFgY06ZNw2q98GWZa9euLfJLSC6es7MzYWFhxMXFER0dDRScghcXF8cTTzxhbrgKxDAMhg4dyg8//MDvv/9+1unRxVm7di2A3tsl5NSpU+zatYv77ruPsLAwnJyciIuL4/bbbwdg27Zt7N+/n4iICJOTVgzTpk3Dx8eH3r17n7ef3uclLzg4GD8/P+Li4uwFWXp6OsuXL2fw4MFAwd8wJ06cICEhwT4L8sKFC7HZbPaiWS7NmeJsx44dLFq0iJo1a17wMf/+21Ku3MGDBzl27Jj9Z0qJvdcvbT4TKQ1Lly413n77bWPt2rXGrl27jC+++MKoVauWMWDAAHufEydOGL6+vsZ9991nbNy40fj6668Nd3d344MPPjAxefl28OBBo2HDhkb37t2NgwcPGocOHbLfzpg+fboxY8YMY8uWLcaWLVuM//u//zOsVqvx6aefmpi8fPv6668NFxcXY/r06cbmzZuNRx55xPDy8jKSk5PNjlZhDB482PD09DR+//33Iu/rzMxMwzAMY+fOncYrr7xirFq1ytizZ4/x448/GvXr1ze6du1qcvLy65lnnjF+//13Y8+ePcZff/1lREZGGt7e3sbhw4cNwzCMxx57zKhTp46xcOFCY9WqVUZERIQRERFhcuqKIT8/36hTp47xwgsvFGnX+7zknDx50lizZo2xZs0aAzAmTJhgrFmzxj5j4Ouvv254eXkZP/74o7F+/XrjlltuMYKDg43Tp0/b99GzZ0+jTZs2xvLly40///zTaNSokdG/f3+zXlKZd75jnpOTY/Tp08cIDAw01q5dW+Tn/JnZvi/mb0s52/mO+8mTJ41nn33WiI+PN/bs2WP89ttvRtu2bY1GjRoZWVlZ9n2UxHtdBVoZkJCQYISHhxuenp6Gq6ur0bRpU+O1114r8o9tGIaxbt06o0uXLoaLi4tRu3Zt4/XXXzcpccUwbdo0Ayj2dsb06dONpk2bGu7u7oaHh4fRoUOHIlNly+V59913jTp16hjOzs5Ghw4djGXLlpkdqUI51/t62rRphmEYxv79+42uXbsaNWrUMFxcXIyGDRsazz33nJGWlmZu8HKsb9++hr+/v+Hs7GzUrl3b6Nu3r7Fz50779tOnTxuPP/64Ub16dcPd3d249dZbi3wYJJfv119/NQBj27ZtRdr1Pi85ixYtKvZnyv33328YRsFU+yNHjjR8fX0NFxcXo3v37mf9exw7dszo37+/UbVqVcPDw8MYOHCgcfLkSRNeTflwvmN+Zgmg4m6LFi0yDOPi/7aUos533DMzM40ePXoYtWrVMpycnIy6desaDz/88FkfMJfEe91iGIZxiaN5IiIiIiIiUgq0DpqIiIiIiEgZoQJNRERERESkjFCBJiIiIiIiUkaoQBMRERERESkjVKCJiIiIiIiUESrQREREREREyggVaCIiIiIiImWECjQREREREZEyQgWaiIiIiIhIGaECTUREREREpIxQgSYiIiIiIlJGqEATEREREREpI/4fMWh5hNDAflsAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "def show_density(var_data):\n", + " from matplotlib import pyplot as plt\n", + "\n", + " fig = plt.figure(figsize=(10,4))\n", + "\n", + " # Plot density\n", + " var_data.plot.density()\n", + "\n", + " # Add titles and labels\n", + " plt.title('Data Density')\n", + "\n", + " # Show the mean, median, and mode\n", + " plt.axvline(x=var_data.mean(), color = 'cyan', linestyle='dashed', linewidth = 2)\n", + " plt.axvline(x=var_data.median(), color = 'red', linestyle='dashed', linewidth = 2)\n", + " plt.axvline(x=var_data.mode()[0], color = 'yellow', linestyle='dashed', linewidth = 2)\n", + "\n", + " # Show the figure\n", + " plt.show()\n", + "\n", + "# Get the density of Grade\n", + "col = df_students['Grade']\n", + "show_density(col)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As expected from the histogram of the sample, the density shows the characteristic \"bell curve\" of what statisticians call a *normal* distribution with the mean and mode at the center and symmetric tails.\n", + "\n", + "## Summary\n", + "\n", + "Well done! There were a number of new concepts in here, so let's summarize. \n", + "\n", + "Here, we:\n", + "\n", + "1. Made graphs with Matplotlib.\n", + "2. Learned how to customize these graphs.\n", + "3. Calculated basic statistics, such as medians.\n", + "4. Looked at the spread of data using box plots and histograms.\n", + "5. Learned about samples versus populations.\n", + "6. Estimated what the population of grades might look like from a sample of grades.\n", + "\n", + "In our next notebook, we'll look at spotting unusual data and finding relationships between data.\n", + "\n", + "## Further Reading\n", + "\n", + "To learn more about the Python packages you explored in this notebook, see the following documentation:\n", + "\n", + "- [NumPy](https://numpy.org/doc/stable/)\n", + "- [Pandas](https://pandas.pydata.org/pandas-docs/stable/)\n", + "- [Matplotlib](https://matplotlib.org/contents.html)" + ] + } + ], + "metadata": { + "kernel_info": { + "name": "conda-env-azureml_py38-py" + }, + "kernelspec": { + "display_name": "Python 3", + "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.12.5" + }, + "nteract": { + "version": "nteract-front-end@1.0.0" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/2-Regression/2-Data/03-real-world-data.ipynb b/2-Regression/2-Data/03-real-world-data.ipynb new file mode 100644 index 0000000000..99449094c9 --- /dev/null +++ b/2-Regression/2-Data/03-real-world-data.ipynb @@ -0,0 +1,620 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exploring data with Python - real world data\n", + "\n", + "In the last notebook, we looked at grades for our student data and investigated the data visually with histograms and box plots. Now we'll look into more complex cases, describe the data more fully, and discuss how to make basic comparisons between data.\n", + "\n", + "### Real world data distributions\n", + "\n", + "Previously, we looked at grades for our student data and estimated from this sample what the full population of grades might look like. Let's refresh our memory and take a look at this data again.\n", + "\n", + "Run the following code to print out the data and make a histogram plus box plot that shows the grades for our sample of students." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "from matplotlib import pyplot as plt\n", + "\n", + "# Load data from a text file\n", + "!wget https://raw.githubusercontent.com/MicrosoftDocs/mslearn-introduction-to-machine-learning/main/Data/ml-basics/grades.csv\n", + "df_students = pd.read_csv('grades.csv',delimiter=',',header='infer')\n", + "\n", + "# Remove any rows with missing data\n", + "df_students = df_students.dropna(axis=0, how='any')\n", + "\n", + "# Calculate who passed, assuming '60' is the grade needed to pass\n", + "passes = pd.Series(df_students['Grade'] >= 60)\n", + "\n", + "# Save who passed to the Pandas dataframe\n", + "df_students = pd.concat([df_students, passes.rename(\"Pass\")], axis=1)\n", + "\n", + "\n", + "# Print the result out into this notebook\n", + "print(df_students)\n", + "\n", + "\n", + "# Create a function that we can re-use\n", + "def show_distribution(var_data):\n", + " '''\n", + " This function will make a distribution (graph) and display it\n", + " '''\n", + "\n", + " # Get statistics\n", + " min_val = var_data.min()\n", + " max_val = var_data.max()\n", + " mean_val = var_data.mean()\n", + " med_val = var_data.median()\n", + " mod_val = var_data.mode()[0]\n", + "\n", + " print('Minimum:{:.2f}\\nMean:{:.2f}\\nMedian:{:.2f}\\nMode:{:.2f}\\nMaximum:{:.2f}\\n'.format(min_val,\n", + " mean_val,\n", + " med_val,\n", + " mod_val,\n", + " max_val))\n", + "\n", + " # Create a figure for 2 subplots (2 rows, 1 column)\n", + " fig, ax = plt.subplots(2, 1, figsize = (10,4))\n", + "\n", + " # Plot the histogram \n", + " ax[0].hist(var_data)\n", + " ax[0].set_ylabel('Frequency')\n", + "\n", + " # Add lines for the mean, median, and mode\n", + " ax[0].axvline(x=min_val, color = 'gray', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=mean_val, color = 'cyan', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=med_val, color = 'red', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=mod_val, color = 'yellow', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=max_val, color = 'gray', linestyle='dashed', linewidth = 2)\n", + "\n", + " # Plot the boxplot \n", + " ax[1].boxplot(var_data, vert=False)\n", + " ax[1].set_xlabel('Value')\n", + "\n", + " # Add a title to the Figure\n", + " fig.suptitle('Data Distribution')\n", + "\n", + " # Show the figure\n", + " fig.show()\n", + "\n", + "\n", + "show_distribution(df_students['Grade'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As you might recall, our data had the mean and mode at the center, with data spread symmetrically from there.\n", + "\n", + "Now let's take a look at the distribution of the study hours data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# Get the variable to examine\n", + "col = df_students['StudyHours']\n", + "# Call the function\n", + "show_distribution(col)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The distribution of the study time data is significantly different from that of the grades.\n", + "\n", + "Note that the whiskers of the box plot only begin at around 6.0, indicating that the vast majority of the first quarter of the data is above this value. The minimum is marked with an **o**, indicating that it is statistically an *outlier*: a value that lies significantly outside the range of the rest of the distribution.\n", + "\n", + "Outliers can occur for many reasons. Maybe a student meant to record \"10\" hours of study time, but entered \"1\" and missed the \"0\". Or maybe the student was abnormally lazy when it comes to studying! Either way, it's a statistical anomaly that doesn't represent a typical student. Let's see what the distribution looks like without it." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# Get the variable to examine\n", + "# We will only get students who have studied more than one hour\n", + "col = df_students[df_students.StudyHours>1]['StudyHours']\n", + "\n", + "# Call the function\n", + "show_distribution(col)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "For learning purposes, we've just treated the value **1** as a true outlier here and excluded it. In the real world, it would be unusual to exclude data at the extremes without more justification when our sample size is so small. This is because the smaller our sample size, the more likely it is that our sampling is a bad representation of the whole population. (Here, the population means grades for all students, not just our 22.) For example, if we sampled study time for another 1,000 students, we might find that it's actually quite common to not study much!\n", + "\n", + "When we have more data available, our sample becomes more reliable. This makes it easier to consider outliers as being values that fall below or above percentiles within which most of the data lie. For example, the following code uses the Pandas **quantile** function to exclude observations below the 0.01th percentile (the value above which 99% of the data reside)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# calculate the 0.01th percentile\n", + "q01 = df_students.StudyHours.quantile(0.01)\n", + "# Get the variable to examine\n", + "col = df_students[df_students.StudyHours>q01]['StudyHours']\n", + "# Call the function\n", + "show_distribution(col)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **Tip**: You can also eliminate outliers at the upper end of the distribution by defining a threshold at a high percentile value. For example, you could use the **quantile** function to find the 0.99 percentile, below which 99% of the data reside.\n", + "\n", + "With the outliers removed, the box plot shows all data within the four quartiles. Note that the distribution is not symmetric like it is for the grade data. There are some students with very high study times of around 16 hours, but the bulk of the data is between 7 and 13 hours. The few extremely high values pull the mean towards the higher end of the scale.\n", + "\n", + "Let's look at the density for this distribution." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def show_density(var_data):\n", + " fig = plt.figure(figsize=(10,4))\n", + "\n", + " # Plot density\n", + " var_data.plot.density()\n", + "\n", + " # Add titles and labels\n", + " plt.title('Data Density')\n", + "\n", + " # Show the mean, median, and mode\n", + " plt.axvline(x=var_data.mean(), color = 'cyan', linestyle='dashed', linewidth = 2)\n", + " plt.axvline(x=var_data.median(), color = 'red', linestyle='dashed', linewidth = 2)\n", + " plt.axvline(x=var_data.mode()[0], color = 'yellow', linestyle='dashed', linewidth = 2)\n", + "\n", + " # Show the figure\n", + " plt.show()\n", + "\n", + "# Get the density of StudyHours\n", + "show_density(col)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This kind of distribution is called *right skewed*. The mass of the data is on the left side of the distribution, creating a long tail to the right because of the values at the extreme high end, which pull the mean to the right.\n", + "\n", + "#### Measures of variance\n", + "\n", + "So now we have a good idea where the middle of the grade and study hours data distributions are. However, there's another aspect of the distributions we should examine: how much variability is there in the data?\n", + "\n", + "Typical statistics that measure variability in the data include:\n", + "\n", + "- **Range**: The difference between the maximum and minimum. There's no built-in function for this, but it's easy to calculate using the **min** and **max** functions.\n", + "- **Variance**: The average of the squared difference from the mean. You can use the built-in **var** function to find this.\n", + "- **Standard Deviation**: The square root of the variance. You can use the built-in **std** function to find this." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "for col_name in ['Grade','StudyHours']:\n", + " col = df_students[col_name]\n", + " rng = col.max() - col.min()\n", + " var = col.var()\n", + " std = col.std()\n", + " print('\\n{}:\\n - Range: {:.2f}\\n - Variance: {:.2f}\\n - Std.Dev: {:.2f}'.format(col_name, rng, var, std))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Of these statistics, the standard deviation is generally the most useful. It provides a measure of variance in the data on the same scale as the data itself (so grade points for the Grade distribution and hours for the StudyHours distribution). The higher the standard deviation, the more variance there is when comparing values in the distribution to the distribution mean; in other words, the data is more spread out.\n", + "\n", + "When working with a *normal* distribution, the standard deviation works with the particular characteristics of a normal distribution to provide even greater insight. Run the following cell to see the relationship between standard deviations and the data in the normal distribution." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import scipy.stats as stats\n", + "\n", + "# Get the Grade column\n", + "col = df_students['Grade']\n", + "\n", + "# get the density\n", + "density = stats.gaussian_kde(col)\n", + "\n", + "# Plot the density\n", + "col.plot.density()\n", + "\n", + "# Get the mean and standard deviation\n", + "s = col.std()\n", + "m = col.mean()\n", + "\n", + "# Annotate 1 stdev\n", + "x1 = [m-s, m+s]\n", + "y1 = density(x1)\n", + "plt.plot(x1,y1, color='magenta')\n", + "plt.annotate('1 std (68.26%)', (x1[1],y1[1]))\n", + "\n", + "# Annotate 2 stdevs\n", + "x2 = [m-(s*2), m+(s*2)]\n", + "y2 = density(x2)\n", + "plt.plot(x2,y2, color='green')\n", + "plt.annotate('2 std (95.45%)', (x2[1],y2[1]))\n", + "\n", + "# Annotate 3 stdevs\n", + "x3 = [m-(s*3), m+(s*3)]\n", + "y3 = density(x3)\n", + "plt.plot(x3,y3, color='orange')\n", + "plt.annotate('3 std (99.73%)', (x3[1],y3[1]))\n", + "\n", + "# Show the location of the mean\n", + "plt.axvline(col.mean(), color='cyan', linestyle='dashed', linewidth=1)\n", + "\n", + "plt.axis('off')\n", + "\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The horizontal lines show the percentage of data within one, two, and three standard deviations of the mean (plus or minus).\n", + "\n", + "In any normal distribution:\n", + "- Approximately 68.26% of values fall within one standard deviation from the mean.\n", + "- Approximately 95.45% of values fall within two standard deviations from the mean.\n", + "- Approximately 99.73% of values fall within three standard deviations from the mean.\n", + "\n", + "So, because we know that the mean grade is 49.18, the standard deviation is 21.74, and distribution of grades is approximately normal, we can calculate that 68.26% of students should achieve a grade between 27.44 and 70.92.\n", + "\n", + "The descriptive statistics we've used to understand the distribution of the student data variables are the basis of statistical analysis. Because they're such an important part of exploring your data, there's a built-in `describe` method of the DataFrame object that returns the main descriptive statistics for all numeric columns." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df_students.describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Comparing data\n", + "\n", + "Now that you know something about the statistical distribution of the data in your dataset, you're ready to examine your data to identify any apparent relationships between variables.\n", + "\n", + "First of all, let's get rid of any rows that contain outliers so that we have a sample that is representative of a typical class of students. We identified that the StudyHours column contains some outliers with extremely low values, so we'll remove those rows." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df_sample = df_students[df_students['StudyHours']>1]\n", + "df_sample" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Comparing numeric and categorical variables\n", + "\n", + "The data includes two *numeric* variables (**StudyHours** and **Grade**) and two *categorical* variables (**Name** and **Pass**). Let's start by comparing the numeric **StudyHours** column to the categorical **Pass** column to see if there's an apparent relationship between the number of hours studied and a passing grade.\n", + "\n", + "To make this comparison, let's create box plots showing the distribution of StudyHours for each possible Pass value (true and false)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df_sample.boxplot(column='StudyHours', by='Pass', figsize=(8,5))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Comparing the StudyHours distributions, it's immediately apparent (if not particularly surprising) that students who passed the course tended to study for more hours than students who didn't. So if you wanted to predict whether or not a student is likely to pass the course, the amount of time they spend studying may be a good predictive indicator.\n", + "\n", + "### Comparing numeric variables\n", + "\n", + "Now let's compare two numeric variables. We'll start by creating a bar chart that shows both grade and study hours." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Create a bar plot of name vs grade and study hours\n", + "df_sample.plot(x='Name', y=['Grade','StudyHours'], kind='bar', figsize=(8,5))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The chart shows bars for both grade and study hours for each student, but it's not easy to compare because the values are on different scales. A grade is measured in grade points (and ranges from 3 to 97), and study time is measured in hours (and ranges from 1 to 16).\n", + "\n", + "A common technique when dealing with numeric data in different scales is to *normalize* the data so that the values retain their proportional distribution but are measured on the same scale. To accomplish this, we'll use a technique called *MinMax* scaling that distributes the values proportionally on a scale of 0 to 1. You could write the code to apply this transformation, but the **Scikit-Learn** library provides a scaler to do it for you." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.preprocessing import MinMaxScaler\n", + "\n", + "# Get a scaler object\n", + "scaler = MinMaxScaler()\n", + "\n", + "# Create a new dataframe for the scaled values\n", + "df_normalized = df_sample[['Name', 'Grade', 'StudyHours']].copy()\n", + "\n", + "# Normalize the numeric columns\n", + "df_normalized[['Grade','StudyHours']] = scaler.fit_transform(df_normalized[['Grade','StudyHours']])\n", + "\n", + "# Plot the normalized values\n", + "df_normalized.plot(x='Name', y=['Grade','StudyHours'], kind='bar', figsize=(8,5))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "With the data normalized, it's easier to see an apparent relationship between grade and study time. It's not an exact match, but it definitely seems like students with higher grades tend to have studied more.\n", + "\n", + "So there seems to be a correlation between study time and grade. In fact, there's a statistical *correlation* measurement we can use to quantify the relationship between these columns." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df_normalized.Grade.corr(df_normalized.StudyHours)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The correlation statistic is a value between -1 and 1 that indicates the strength of a relationship. Values above 0 indicate a *positive* correlation (high values of one variable tend to coincide with high values of the other), while values below 0 indicate a *negative* correlation (high values of one variable tend to coincide with low values of the other). In this case, the correlation value is close to 1, showing a strongly positive correlation between study time and grade.\n", + "\n", + "> **Note**: Data scientists often quote the maxim \"*correlation* is not *causation*.\" In other words, as tempting as it might be, you shouldn't interpret the statistical correlation as explaining *why* one of the values is high. In the case of the student data, the statistics demonstrate that students with high grades tend to also have high amounts of study time, but this is not the same as proving that they achieved high grades *because* they studied a lot. You could equally use the statistic as evidence to support the nonsensical conclusion that the students studied a lot *because* their grades were going to be high.\n", + "\n", + "Another way to visualize the apparent correlation between two numeric columns is to use a *scatter* plot." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Create a scatter plot\n", + "df_sample.plot.scatter(title='Study Time vs Grade', x='StudyHours', y='Grade')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Again, it looks like there's a discernible pattern in which the students who studied the most hours are also the students who got the highest grades.\n", + "\n", + "We can see this more clearly by adding a *regression* line (or a *line of best fit*) to the plot that shows the general trend in the data. To do this, we'll use a statistical technique called *least squares regression*.\n", + "\n", + "Remember when you were learning how to solve linear equations in school, and recall that the *slope-intercept* form of a linear equation looks like this: \n", + "\n", + "$ y = mx + b $\n", + "\n", + "In this equation, *y* and *x* are the coordinate variables, *m* is the slope of the line, and *b* is the y-intercept (where the line goes through the Y-axis).\n", + "\n", + "In the case of our scatter plot for our student data, we already have our values for *x* (*StudyHours*) and *y* (*Grade*), so we just need to calculate the intercept and slope of the straight line that lies closest to those points. Then, we can form a linear equation that calculates a new *y* value on that line for each of our *x* (*StudyHours*) values. To avoid confusion, we'll call this new *y* value *f(x)* (because it's the output from a linear equation ***f***unction based on *x*). The difference between the original *y* (*Grade*) value and the *f(x)* value is the *error* between our regression line and the actual *Grade* achieved by the student. Our goal is to calculate the slope and intercept for a line with the lowest overall error.\n", + "\n", + "Specifically, we define the overall error by taking the error for each point, squaring it, and adding all the squared errors together. The line of best fit is the line that gives us the lowest value for the sum of the squared errors, hence the name *least squares regression*.\n", + "\n", + "Fortunately, you don't need to code the regression calculation yourself. The **SciPy** package includes a **stats** class that provides a **linregress** method to do the hard work for you. This returns (among other things) the coefficients you need for the slope equation: slope (*m*) and intercept (*b*) based on a given pair of variable samples you want to compare." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "from scipy import stats\n", + "\n", + "#\n", + "df_regression = df_sample[['Grade', 'StudyHours']].copy()\n", + "\n", + "# Get the regression slope and intercept\n", + "m, b, r, p, se = stats.linregress(df_regression['StudyHours'], df_regression['Grade'])\n", + "print('slope: {:.4f}\\ny-intercept: {:.4f}'.format(m,b))\n", + "print('so...\\n f(x) = {:.4f}x + {:.4f}'.format(m,b))\n", + "\n", + "# Use the function (mx + b) to calculate f(x) for each x (StudyHours) value\n", + "df_regression['fx'] = (m * df_regression['StudyHours']) + b\n", + "\n", + "# Calculate the error between f(x) and the actual y (Grade) value\n", + "df_regression['error'] = df_regression['fx'] - df_regression['Grade']\n", + "\n", + "# Create a scatter plot of Grade vs StudyHours\n", + "df_regression.plot.scatter(x='StudyHours', y='Grade')\n", + "\n", + "# Plot the regression line\n", + "plt.plot(df_regression['StudyHours'],df_regression['fx'], color='cyan')\n", + "\n", + "# Display the plot\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note that this time, the code plotted two distinct things: the scatter plot of the sample study hours and grades is plotted as before, and then a line of best fit based on the least squares regression coefficients is plotted.\n", + "\n", + "The slope and intercept coefficients calculated for the regression line are shown above the plot.\n", + "\n", + "The line is based on the ***f*(x)** values calculated for each **StudyHours** value. Run the following cell to see a table that includes the following values:\n", + "\n", + "- The **StudyHours** for each student\n", + "- The **Grade** achieved by each student\n", + "- The ***f(x)*** value calculated using the regression line coefficients\n", + "- The *error* between the calculated ***f(x)*** value and the actual **Grade** value\n", + "\n", + "Some of the errors, particularly at the extreme ends, are quite large (up to more than 17.5 grade points). But, in general, the line is pretty close to the actual grades." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Show the original x,y values, the f(x) value, and the error\n", + "df_regression[['StudyHours', 'Grade', 'fx', 'error']]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using the regression coefficients for prediction\n", + "\n", + "Now that you have the regression coefficients for the study time and grade relationship, you can use them in a function to estimate the expected grade for a given amount of study." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "# Define a function based on our regression coefficients\n", + "def f(x):\n", + " m = 6.3134\n", + " b = -17.9164\n", + " return m*x + b\n", + "\n", + "study_time = 14\n", + "\n", + "# Get f(x) for study time\n", + "prediction = f(study_time)\n", + "\n", + "# Grade can't be less than 0 or more than 100\n", + "expected_grade = max(0,min(100,prediction))\n", + "\n", + "#Print the estimated grade\n", + "print ('Studying for {} hours per week may result in a grade of {:.0f}'.format(study_time, expected_grade))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "So by applying statistics to sample data, you've determined a relationship between study time and grade and encapsulated that relationship in a general function that can be used to predict a grade for a given amount of study time.\n", + "\n", + "This technique is, in fact, the basic premise of machine learning. You can take a set of sample data that includes one or more *features* (in this case, the number of hours studied) and a known *label* value (in this case, the grade achieved) and use the sample data to derive a function that calculates predicted label values for any given set of features.\n", + "\n", + "## Summary\n", + "\n", + "Here we've looked at:\n", + "\n", + "1. What an outlier is and how to remove them\n", + "2. How data can be skewed\n", + "3. How to look at the spread of data\n", + "4. Basic ways to compare variables, such as grades and study time \n", + "\n", + "## Further Reading\n", + "\n", + "To learn more about the Python packages you explored in this notebook, see the following documentation:\n", + "\n", + "- [NumPy](https://numpy.org/doc/stable/)\n", + "- [Pandas](https://pandas.pydata.org/pandas-docs/stable/)\n", + "- [Matplotlib](https://matplotlib.org/contents.html)\n" + ] + } + ], + "metadata": { + "kernel_info": { + "name": "conda-env-azureml_py38-py" + }, + "kernelspec": { + "display_name": "azureml_py38", + "language": "python", + "name": "conda-env-azureml_py38-py" + }, + "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.7.9" + }, + "nteract": { + "version": "nteract-front-end@1.0.0" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/2-Regression/2-Data/grades.csv b/2-Regression/2-Data/grades.csv new file mode 100644 index 0000000000..f159dc8019 --- /dev/null +++ b/2-Regression/2-Data/grades.csv @@ -0,0 +1,25 @@ +Name,StudyHours,Grade +Dan,10,50 +Joann,11.5,50 +Pedro,9,47 +Rosie,16,97 +Ethan,9.25,49 +Vicky,1,3 +Frederic,11.5,53 +Jimmie,9,42 +Rhonda,8.5,26 +Giovanni,14.5,74 +Francesca,15.5,82 +Rajab,13.75,62 +Naiyana,9,37 +Kian,8,15 +Jenny,15.5,70 +Jakeem,8,27 +Helena,9,36 +Ismat,6,35 +Anila,10,48 +Skye,12,52 +Daniel,12.5,63 +Aisha,12,64 +Bill,8, +Ted,, diff --git a/2-Regression/2-Data/notebook.ipynb b/2-Regression/2-Data/notebook.ipynb index c9b9925ba2..a5748716da 100644 --- a/2-Regression/2-Data/notebook.ipynb +++ b/2-Regression/2-Data/notebook.ipynb @@ -1,5 +1,493 @@ { + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Imports" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "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", + "
City NameTypePackageVarietySub VarietyGradeDateLow PriceHigh PriceMostly Low...Unit of SaleQualityConditionAppearanceStorageCropRepackTrans ModeUnnamed: 24Unnamed: 25
70BALTIMORENaN1 1/9 bushel cartonsPIE TYPENaNNaN9/24/1615.015.015.0...NaNNaNNaNNaNNaNNaNNNaNNaNNaN
71BALTIMORENaN1 1/9 bushel cartonsPIE TYPENaNNaN9/24/1618.018.018.0...NaNNaNNaNNaNNaNNaNNNaNNaNNaN
72BALTIMORENaN1 1/9 bushel cartonsPIE TYPENaNNaN10/1/1618.018.018.0...NaNNaNNaNNaNNaNNaNNNaNNaNNaN
73BALTIMORENaN1 1/9 bushel cartonsPIE TYPENaNNaN10/1/1617.017.017.0...NaNNaNNaNNaNNaNNaNNNaNNaNNaN
74BALTIMORENaN1 1/9 bushel cartonsPIE TYPENaNNaN10/8/1615.015.015.0...NaNNaNNaNNaNNaNNaNNNaNNaNNaN
\n", + "

5 rows × 26 columns

\n", + "
" + ], + "text/plain": [ + " City Name Type Package Variety Sub Variety Grade \\\n", + "70 BALTIMORE NaN 1 1/9 bushel cartons PIE TYPE NaN NaN \n", + "71 BALTIMORE NaN 1 1/9 bushel cartons PIE TYPE NaN NaN \n", + "72 BALTIMORE NaN 1 1/9 bushel cartons PIE TYPE NaN NaN \n", + "73 BALTIMORE NaN 1 1/9 bushel cartons PIE TYPE NaN NaN \n", + "74 BALTIMORE NaN 1 1/9 bushel cartons PIE TYPE NaN NaN \n", + "\n", + " Date Low Price High Price Mostly Low ... Unit of Sale Quality \\\n", + "70 9/24/16 15.0 15.0 15.0 ... NaN NaN \n", + "71 9/24/16 18.0 18.0 18.0 ... NaN NaN \n", + "72 10/1/16 18.0 18.0 18.0 ... NaN NaN \n", + "73 10/1/16 17.0 17.0 17.0 ... NaN NaN \n", + "74 10/8/16 15.0 15.0 15.0 ... NaN NaN \n", + "\n", + " Condition Appearance Storage Crop Repack Trans Mode Unnamed: 24 \\\n", + "70 NaN NaN NaN NaN N NaN NaN \n", + "71 NaN NaN NaN NaN N NaN NaN \n", + "72 NaN NaN NaN NaN N NaN NaN \n", + "73 NaN NaN NaN NaN N NaN NaN \n", + "74 NaN NaN NaN NaN N NaN NaN \n", + "\n", + " Unnamed: 25 \n", + "70 NaN \n", + "71 NaN \n", + "72 NaN \n", + "73 NaN \n", + "74 NaN \n", + "\n", + "[5 rows x 26 columns]" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "pumpkins = pd.read_csv(\"../data/US-pumpkins.csv\")\n", + "\n", + "#filters out any non-bushel Package\n", + "pumpkins = pumpkins[pumpkins['Package'].str.contains('bushel', case=True, regex=True)]\n", + "#prints first few rows of the dataset\n", + "pumpkins.head()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "City Name 0\n", + "Type 406\n", + "Package 0\n", + "Variety 0\n", + "Sub Variety 167\n", + "Grade 415\n", + "Date 0\n", + "Low Price 0\n", + "High Price 0\n", + "Mostly Low 24\n", + "Mostly High 24\n", + "Origin 0\n", + "Origin District 396\n", + "Item Size 114\n", + "Color 145\n", + "Environment 415\n", + "Unit of Sale 404\n", + "Quality 415\n", + "Condition 415\n", + "Appearance 415\n", + "Storage 415\n", + "Crop 415\n", + "Repack 0\n", + "Trans Mode 415\n", + "Unnamed: 24 415\n", + "Unnamed: 25 391\n", + "dtype: int64" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#How many cells in each column are empty\n", + "pumpkins.isnull().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "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", + "
PackageDateLow PriceHigh Price
701 1/9 bushel cartons9/24/1615.015.0
711 1/9 bushel cartons9/24/1618.018.0
721 1/9 bushel cartons10/1/1618.018.0
731 1/9 bushel cartons10/1/1617.017.0
741 1/9 bushel cartons10/8/1615.015.0
\n", + "
" + ], + "text/plain": [ + " Package Date Low Price High Price\n", + "70 1 1/9 bushel cartons 9/24/16 15.0 15.0\n", + "71 1 1/9 bushel cartons 9/24/16 18.0 18.0\n", + "72 1 1/9 bushel cartons 10/1/16 18.0 18.0\n", + "73 1 1/9 bushel cartons 10/1/16 17.0 17.0\n", + "74 1 1/9 bushel cartons 10/8/16 15.0 15.0" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_columns = ['Package', 'Month', 'Low Price','High Price','Date']\n", + "\n", + "pumpkins = pumpkins.drop([c for c in pumpkins.columns if c not in new_columns], axis=1)\n", + "\n", + "pumpkins.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Month Package Price\n", + "70 9 1 1/9 bushel cartons 13.50\n", + "71 9 1 1/9 bushel cartons 16.20\n", + "72 10 1 1/9 bushel cartons 16.20\n", + "73 10 1 1/9 bushel cartons 15.30\n", + "74 10 1 1/9 bushel cartons 13.50\n", + "... ... ... ...\n", + "1738 9 1/2 bushel cartons 30.00\n", + "1739 9 1/2 bushel cartons 28.75\n", + "1740 9 1/2 bushel cartons 25.75\n", + "1741 9 1/2 bushel cartons 24.00\n", + "1742 9 1/2 bushel cartons 24.00\n", + "\n", + "[415 rows x 3 columns]\n" + ] + } + ], + "source": [ + "price = (pumpkins['Low Price']+ pumpkins['High Price'])/2\n", + "\n", + "month = pd.DatetimeIndex(pumpkins['Date']).month\n", + "\n", + "refined_data = pd.DataFrame({'Month': month, 'Package': pumpkins['Package'], 'Price': price})\n", + "\n", + "refined_data.loc[refined_data['Package'].str.contains('1 1/9'), 'Price'] = price/(1+ 1/9)\n", + "\n", + "refined_data.loc[refined_data['Package'].str.contains('1/2'), 'Price'] = price/(1/2)\n", + "\n", + "print(refined_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiwAAAGdCAYAAAAxCSikAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA9WklEQVR4nO3deXxU9b3/8fckkIUlg0GySYAgLg0YFCs0lkUEC2gRqL1XvCqLV6wLrUBLJf5AoEqjcOuCIFi8XlR663IVqxWxiE2QmoIsKWIsigYCkkWJzGRPSM7vD27mMslMck4ySc6E1/PxmMfDOfM93/l8z/ecM28mZ44OwzAMAQAA2FhIRxcAAADQHAILAACwPQILAACwPQILAACwPQILAACwPQILAACwPQILAACwPQILAACwvS4dXUCg1NXV6cSJE+rZs6ccDkdHlwMAAEwwDEMlJSVKSEhQSIj/71E6TWA5ceKEEhMTO7oMAADQAseOHVPfvn39vt5pAkvPnj0lnRlwVFRUB1cDAADMcLvdSkxM9HyO+9NpAkv9n4GioqIILAAABJnmLufgolsAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7nebGcZ1dRXWtfrslR0dOlmtA72568PpkRYaFmlq3tPK05r+yX3nfVajfeZF64uYr1COic0x9bZ2h3bnFKiqpVEzPCA1PilZoCP8vKQDobByGYRhWVtixY4dWrVqlvXv3Kj8/X5s3b9bUqVMlSTU1NVq8eLG2bNmir776Sk6nU+PHj9ejjz6qhISEJvtdu3atVq1apYKCAg0dOlRPP/20hg8fbrout9stp9Mpl8vV6e50O+fFj7Utp6jR8uuSY7RhxlVNrnvjmg914Li70fKUvlF6a+6ogNXYEbYezNfyt3OU76r0LIt3Rmjp5GRNHBLfgZUBAMwy+/lt+U9CZWVlGjp0qNauXdvotfLycu3bt09LlizRvn379MYbb+jQoUO68cYbm+zzlVde0YIFC7R06VLt27dPQ4cO1YQJE1RU1PhD+lzjL6xI0racIs158WO/6/oLK5J04LhbN675MCA1doStB/N1z6Z9XmFFkgpclbpn0z5tPZjfQZUBANqC5W9YvFZ2OLy+YfHl448/1vDhw3X06FH169fPZ5sRI0boqquu0po1ayRJdXV1SkxM1M9//nMtWrTIVC2d8RuWiupafe+hrc22++w3Exv9eai08rSGLHuv2XUPLpsQdH8eqq0zNPKxDxqFlXoOSXHOCO184Fr+PAQANtdm37BY5XK55HA41KtXL5+vV1dXa+/evRo/fvz/FRUSovHjxysrK8tvv1VVVXK73V6Pzua3W3Ja3G7+K/tNrWu2nZ3szi32G1YkyZCU76rU7tzi9isKANCm2jSwVFZW6oEHHtAtt9ziNzV9++23qq2tVWxsrNfy2NhYFRQU+O07PT1dTqfT80hMTAxo7XZw5GR5i9vlfVdhal2z7eykqMR/WGlJOwCA/bVZYKmpqdG//uu/yjAMrVu3LuD9p6WlyeVyeR7Hjh0L+Ht0tAG9u7W4Xb/zIk2ta7adncT0jAhoOwCA/bVJYKkPK0ePHtW2bdua/JvU+eefr9DQUBUWFnotLywsVFxcnN/1wsPDFRUV5fXobB68PrnF7Z64+QpT65ptZyfDk6IV74yQv6tTHDrza6HhSdHtWRYAoA0FPLDUh5UvvvhC77//vnr37t1k+7CwMF155ZXavn27Z1ldXZ22b9+u1NTUQJcXVCLDQnVdckyTba5LjvF5P5YeEV2U0rfpEJfSNyroLriVpNAQh5ZOPhPSGoaW+udLJydzwS0AdCKWA0tpaamys7OVnZ0tScrNzVV2drby8vJUU1Ojn/70p9qzZ4/+8Ic/qLa2VgUFBSooKFB1dbWnj3Hjxnl+ESRJCxYs0IYNG/TCCy/os88+0z333KOysjLNnj279SMMchtmXOU3tDR3H5a35o7yG1qC/T4sE4fEa91twxTn9P6zT5wzQutuG8Z9WACgk7H8s+aMjAyNHTu20fKZM2dq2bJlSkpK8rneX//6V11zzTWSpAEDBmjWrFlatmyZ5/U1a9Z4bhx3+eWXa/Xq1RoxYoTpujrjz5rPxp1ufeNOtwAQ3Mx+frfqPix20tkDCwAAnZFt7sMCAADQWgQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABgewQWAABge5YDy44dOzR58mQlJCTI4XDozTff9Hr9jTfe0I9+9CP17t1bDodD2dnZzfa5ceNGORwOr0dERITV0gAAQCdlObCUlZVp6NChWrt2rd/XR44cqccee8xSv1FRUcrPz/c8jh49arU0AADQSXWxusKkSZM0adIkv6/ffvvtkqQjR45Y6tfhcCguLs5qOQAA4Bxgm2tYSktL1b9/fyUmJmrKlCn69NNPm2xfVVUlt9vt9QAAAJ2TLQLLJZdcoueff15/+tOftGnTJtXV1enqq6/W8ePH/a6Tnp4up9PpeSQmJrZjxQAAoD3ZIrCkpqZqxowZuvzyyzVmzBi98cYb6tOnj5599lm/66Slpcnlcnkex44da8eKAQBAe7J8DUt76Nq1q6644godPnzYb5vw8HCFh4e3Y1UAAKCj2OIbloZqa2v1ySefKD4+vqNLAQAANmD5G5bS0lKvbz5yc3OVnZ2t6Oho9evXT8XFxcrLy9OJEyckSYcOHZIkxcXFeX4FNGPGDF1wwQVKT0+XJP3mN7/RD37wAw0aNEinTp3SqlWrdPToUd15552tHiAAAAh+lgPLnj17NHbsWM/zBQsWSJJmzpypjRs36q233tLs2bM9r0+fPl2StHTpUi1btkySlJeXp5CQ//ty57vvvtOcOXNUUFCg8847T1deeaU++ugjJScnt2hQAACgc3EYhmF0dBGB4Ha75XQ65XK5FBUV1dHlAAAAE8x+ftvyGhYAAICzEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtEVgAAIDtdenoAuysts7Q7txiFZVUKqZnhIYnRSs0xNFm71daeVrzX9mvvO8q1O+8SD1x8xXqEXFmigpOVerHT++Qu/K0oiK66M8/H624XhGm+j1cUKpJqzNVUyd1DZHe/cUYDYrr0aIaq0/X6aWsIzpaXK7+0d10e+oAhXVpfe5t6bZuapshuLXVvuYqr9EdG3frhKtSCc4IPT9ruJzduvpsm1tUpolPZaqq1lB4qENb7x+jpJjura63vc8tgWBlu1nRVvNsRTDOx7nIYRiGYWWFHTt2aNWqVdq7d6/y8/O1efNmTZ061fP6G2+8ofXr12vv3r0qLi7W/v37dfnllzfb72uvvaYlS5boyJEjuuiii/TYY4/p+uuvN12X2+2W0+mUy+VSVFSUlSH5tPVgvpa/naN8V6VnWbwzQksnJ2vikPhW99/QjWs+1IHj7kbLU/pG6YvCUlXU1DV6LbJriD57eFKT/SYteke+JtghKffRGyzVmL4lRxs+zFXdWR2GOKQ5o5KUdn2ypb7O1tJt3dQ2e2vuqBbXg47XVvvamFUf6OjJikbL+/eOVObCa72WDUx7x+v9z67jq3TvY8dKve19bgkEK9vNiraaZyuCcT46G7Of35ZjbFlZmYYOHaq1a9f6fX3kyJF67LHHTPf50Ucf6ZZbbtG///u/a//+/Zo6daqmTp2qgwcPWi0vILYezNc9m/Z57cCSVOCq1D2b9mnrwfyAvp+/D15JOnDc7TOsSFJFTZ2+t+Rdv/36CyuSZPzv62alb8nRsztyG53A6wzp2R25St+SY7qvs7V0Wze3zW5c82GL6kHHa6t9zd+HriQdPVmhMas+8Dz3F1bq6xiY9n/HjpV62/vcEghWtpsVbTXPVgTjfJzLLAeWSZMm6ZFHHtG0adN8vn777bfroYce0vjx4033+dRTT2nixIlauHChvve97+nhhx/WsGHDtGbNGqvltVptnaHlb+f4/KCvX7b87RzV+jubWVRaedrvB68ZFTV1KjhV2Wj54YJSv2GlnvG/7ZpTfbpOGz7MbbLNhg9zVX3ad7Dyp6Xb2sw2O3DcrdLK05bqQcdrq33NVV7j90O33tGTFXKV1yi3qMxvWKlXZ5z5c5GVetv73BIIVrabFW01z1YE43yc62xx0W1WVlajgDNhwgRlZWX5Xaeqqkput9vrEQi7c4sbpe2zGZLyXZXanVsckPeb/8r+Vvfx46d3NFo2aXWmqXXNtHsp64ipE/hLWUdMvWe9lm5rs9ssENsW7aut9rU7Nu423W7iU+aOnYlPZVqqt73PLYFgZbtZ0VbzbEUwzse5zhaBpaCgQLGxsV7LYmNjVVBQ4Hed9PR0OZ1OzyMxMTEgtRSV+N+BW9KuOXnfNf2vFzPcPr5J8PNXpBa1O1pcbqovs+3qtXRbm91mgdi2aF9tta+daOKDqWG7qlpz/6KuqjUs1dve55ZAsLLdrGirebYiGOfjXGeLwNISaWlpcrlcnsexY8cC0m9MT3O/vDHbrjn9zotsdR9RPn4V09XkzJpp1z+6m6m+zLar19JtbXabBWLbon211b6W4DS3ryU4IxQeau7XIeGhDkv1tve5JRCsbDcr2mqerQjG+TjX2SKwxMXFqbCw0GtZYWGh4uLi/K4THh6uqKgor0cgDE+KVrwzQv5OWQ6duYJ8eFJ0QN7viZuvaHUff/756EbL3v3FGFPrmml3e+oANfcLvxDHmXZWtHRbm91mgdi2aF9tta89P2u46XZb7zd37Gy9f4yletv73BIIVrabFW01z1YE43yc62wRWFJTU7V9+3avZdu2bVNqamq71xIa4tDSyWd+TtdwR65/vnRycsB+o98jootS+rY8bEV2DfF5P5ZBcT38Hoj1HP/brjlhXUI0Z1RSk23mjEqyfO+Elm5rM9sspW8U92MJQm21rzm7dVX/3k1/49a/d6Sc3boqKaa7qQ/TpJjulupt73NLIFjZbla01TxbEYzzca6zvDeUlpYqOztb2dnZkqTc3FxlZ2crLy9PklRcXKzs7Gzl5Jz5SdqhQ4eUnZ3tdT3KjBkzlJaW5nl+//33a+vWrfrd736nf/7zn1q2bJn27NmjuXPntmZsLTZxSLzW3TZMcQ2+5oxzRmjdbcMC/tv8t+aO8vsBnNI3SpF+/m7T3H1Ych+9ocl/PVi5D0va9cn62eikRifyEIf0s9Etv2dCS7d1c9uM+7AEr7ba1zIXXuv3w7fh/US+Sr/Bb2hpeB8WK/W297klEKxsNyvaap6tCMb5OJdZvnFcRkaGxo4d22j5zJkztXHjRm3cuFGzZ89u9PrSpUu1bNkySdI111yjAQMGaOPGjZ7XX3vtNS1evNhz47iVK1d26I3jJO506wt3ukV74U639sKdbtFWzH5+Ww4sdtUWgQUAALStNrvTLQAAQHsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANsjsAAAANuzHFh27NihyZMnKyEhQQ6HQ2+++abX64Zh6KGHHlJ8fLwiIyM1fvx4ffHFF032uWzZMjkcDq/HpZdearU0AADQSVkOLGVlZRo6dKjWrl3r8/WVK1dq9erVWr9+vXbt2qXu3btrwoQJqqysbLLfwYMHKz8/3/PYuXOn1dIAAEAn1cXqCpMmTdKkSZN8vmYYhp588kktXrxYU6ZMkSS9+OKLio2N1Ztvvqnp06f7L6RLF8XFxVktBwAAnAMCeg1Lbm6uCgoKNH78eM8yp9OpESNGKCsrq8l1v/jiCyUkJGjgwIG69dZblZeX12T7qqoqud1urwcAAOicAhpYCgoKJEmxsbFey2NjYz2v+TJixAht3LhRW7du1bp165Sbm6tRo0appKTE7zrp6elyOp2eR2JiYmAGAQAAbMcWvxKaNGmS/uVf/kUpKSmaMGGCtmzZolOnTunVV1/1u05aWppcLpfncezYsXasGAAAtKeABpb6a1AKCwu9lhcWFlq6PqVXr166+OKLdfjwYb9twsPDFRUV5fUAAACdU0ADS1JSkuLi4rR9+3bPMrfbrV27dik1NdV0P6Wlpfryyy8VHx8fyPIAAECQshxYSktLlZ2drezsbElnLrTNzs5WXl6eHA6H5s2bp0ceeURvvfWWPvnkE82YMUMJCQmaOnWqp49x48ZpzZo1nue/+tWvlJmZqSNHjuijjz7StGnTFBoaqltuuaXVAwQAAMHP8s+a9+zZo7Fjx3qeL1iwQJI0c+ZMbdy4Ub/+9a9VVlamu+66S6dOndLIkSO1detWRUREeNb58ssv9e2333qeHz9+XLfccotOnjypPn36aOTIkfr73/+uPn36tGZsAACgk3AYhmF0dBGB4Ha75XQ65XK5uJ4FAIAgYfbz2xa/EgIAAGgKgQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANgegQUAANhel44uwM5KK09r/iv7lfddhfqdF6knbr5CPSIab7LaOkO7c4tVVFKpmJ4RGp4UrdAQR0Dft7i0WhOfylRFTZ0iu4Zo6/1j1O/8bqZq+STPpanr/+Zp8+bdP1SfqHBNWp2psqpahTikoQnd1e/8Hsr8olgllacVFdFFf/75aMX1ivDqv6K6Vr/dkqMjJ8s1oHc3PXh9siLDQls81nqu8hrdsXG3TrgqleCM0POzhsvZrWuLtpWvOYI1ed+Wm9rfrPokz6Ubn9kpQ5JD0lv3jtRl/Zw+2xaXVmv67z9SUUm1YnqG6eW7rlZ0jzCfba0cg3/edUxzNx/wPF8zLUU/HpHY6noPnSjR9U/vUK0hhTqkLT8frUsSevps+/fPT2r683/3PH/5jh/oBxf3bvW5pPp0nV7KOqKjxeXqH91Nt6cOUFiXwPy79OviCs85o3t4qN79xRhdEB3Z6n6tbDc741zU9hyGYRhWVtixY4dWrVqlvXv3Kj8/X5s3b9bUqVM9rxuGoaVLl2rDhg06deqUfvjDH2rdunW66KKLmux37dq1WrVqlQoKCjR06FA9/fTTGj58uOm63G63nE6nXC6XoqKirAzJpxvXfKgDx92Nlqf0jdJbc0d5nm89mK/lb+co31XpWRbvjNDSycmaOCQ+YO/rS5cQ6fBvb2iyltaK7Bqizx6eJEma8+LH2pZT1KjNdckx2jDjqha/x5hVH+joyYpGy/v3jlTmwmv9rmd2jmDNoAff0em6xssb7m9WDVj0jt/Xjjzq3e9Vj2zTN6XVjdr16RGmjxdf57XMyjFopYaOaBvvjGjxuSR9S442fJirurPO6CEOac6oJKVdn9zs+k25+P9tUXVt44+KsFCHPl9xfYv7tbLd7IxzUeuY/fy2HL3Lyso0dOhQrV271ufrK1eu1OrVq7V+/Xrt2rVL3bt314QJE1RZ6f9D9JVXXtGCBQu0dOlS7du3T0OHDtWECRNUVNT4w7E9NBUaDhx368Y1H0o6c6K8Z9O+RgGhwFWpezbt09aD+QF7X19O1535cGmqltaqqKnT95a86zesSNK2nCLNefHjFvXvL6xI0tGTFRqz6gOfr5mdI1jjL6xI3vubVU19MDV83V9YkaRvSqt11SPbPM+tHINWauioti09l6RvydGzO7zDiiTVGdKzO3KVviWnyfWb4i+sSFJ1raGL/9+WFvVrZbvZGeei9mM5sEyaNEmPPPKIpk2b1ug1wzD05JNPavHixZoyZYpSUlL04osv6sSJE3rzzTf99vn4449rzpw5mj17tpKTk7V+/Xp169ZNzz//vNXyWq208nSzoeHAcbdc5TVa/naOfB3G9cuWv52j2oZnkFa8ry+n66TcojK/tQRCRU2d37BSb1tOkSqqay316yqv8RtW6h09WSFXeY3XMrNzVFp52lI957q8b8v9hpV6p+vOtLPikzyX6XbFpdV+w0q9b0qrVVxardo6w/Qx+Oddx0zV8OddxyzVe+hEiam2h06U6O+fnzTV9mxmziXVp+u04cPcJvvZ8GGuqpubXB++Lq7wG1Y8719r6Ovipo/jhqxsNzvjXNS+AnrRbW5urgoKCjR+/HjPMqfTqREjRigrK8vnOtXV1dq7d6/XOiEhIRo/frzfdSSpqqpKbrfb6xEI81/Zb6rdHRt3N/lthqEz/1ranVsc0Pf1ZeJTmQH/ZqUlfmvxX3F3bNzdonZmt1Vrtum5aOJTmQFtV+/GZ3aabjf99x+Zajv99x9pd26x6WPw7GtWmjJ38wFL9V7/9A5Tba9/eofXNStWNHcueSnrSKNvVhqqM860s2rSanNzbbZdPSvbzc44F7WvgAaWgoICSVJsbKzX8tjYWM9rDX377beqra21tI4kpaeny+l0eh6Jib4vmrMq7ztz/1I4YTIgFJWYa2f2fX2pauZfQO3lyElr//I2uw0btjO7rVqzTc9FFTXm/gVutl09s3unIamopOlvV+oVlVSbPrbMtju7DrPtzB56gThE/Y3jaLG5485su7OVVZn71tRsu3rtud3aEuei9hW0P2tOS0uTy+XyPI4dM/eVb3P6nWfuqvcEZ0TzjSTF9DTXzuz7+hIe2vJfJAXSgN7WfkVidhs2bGd2W7Vmm56LIruaOx2YbVfP7N7pkBTT0/evgBqK6Rlm+tgy2+7sOsy2M3voBeIQ9TeO/tHmjjuz7c7WPdzcLwDNtqvXntutLXEual8BDSxxcXGSpMLCQq/lhYWFntcaOv/88xUaGmppHUkKDw9XVFSU1yMQnrj5ClPtnp81XPHOCL8nN4fOXOE/PCk6oO/ry9b7xzRZS3t50OIvEZ6fZe5XYA3bmd1Wrdmm56Kt948JaLt6b9070nS7l++62lTbl++6WsOTok0fg2umpZjqd820FEv1bvn5aFNtt/x8tF6+4wem2jbU3Lnk9tQBau6XzyGOM+2sevcX5ubabLt6VrabnXEual8BDSxJSUmKi4vT9u3bPcvcbrd27dql1NRUn+uEhYXpyiuv9Fqnrq5O27dv97tOW+oR0UUpfZsOPyl9o+Ts1lVLJ5/5gG54rqh/vnRysul7KJh5X1+6hEhJMd391hIIkV1DdF1yTJNtrkuOsXw/Fme3rurfu+l/efTvHdnofixm54h7IFjT7/xuau6WHV1CZPl+LP7uW+KrXXSPMPXxc6+Ven16hCm6R5hCQxymj0F/91lp6McjEi3Va/Z+IZck9NQPLu5tqu3ZzJxLwrqEaM6opCb7mTMqqUX3Y7kgOlJhzXzNERbqsHw/Fivbzc44F7Uvy3twaWmpsrOzlZ2dLenMhbbZ2dnKy8uTw+HQvHnz9Mgjj+itt97SJ598ohkzZighIcHrXi3jxo3TmjVrPM8XLFigDRs26IUXXtBnn32me+65R2VlZZo9e3arB9gSb80d5XcnPPt39ROHxGvdbcMU1+BPFnHOCK27bZjl+7A09b6+nH1fDH+1tFb9fVg2zLjKb2hpzX1YMhde6ze0NHUfFrNzBGsO//YGv6GlNfdhae6eGme//vHi6/yGlob3YbFyDFqpoaPaxrfwXJJ2fbJ+Njqp0TctIQ7pZ6Nbdx+Wz1dc7ze0tOY+LFa2m51xLmo/lm8cl5GRobFjxzZaPnPmTG3cuNFz47jf//73OnXqlEaOHKlnnnlGF198saftgAEDNGvWLC1btsyzbM2aNZ4bx11++eVavXq1RowYYbquQN84TuJOt9zp9tzFnW6t18udbluGO93C7Oe35cBiV20RWAAAQNtqszvdAgAAtDcCCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsD0CCwAAsL02CSwlJSWaN2+e+vfvr8jISF199dX6+OOP/bbPyMiQw+Fo9CgoKGiL8gAAQJDp0had3nnnnTp48KBeeuklJSQkaNOmTRo/frxycnJ0wQUX+F3v0KFDioqK8jyPiYlpi/IAAECQCfg3LBUVFXr99de1cuVKjR49WoMGDdKyZcs0aNAgrVu3rsl1Y2JiFBcX53mEhPAXKwAA0AaB5fTp06qtrVVERITX8sjISO3cubPJdS+//HLFx8fruuuu09/+9rcm21ZVVcntdns9AABA5xTwwNKzZ0+lpqbq4Ycf1okTJ1RbW6tNmzYpKytL+fn5PteJj4/X+vXr9frrr+v1119XYmKirrnmGu3bt8/v+6Snp8vpdHoeiYmJgR4KAACwCYdhGEagO/3yyy91xx13aMeOHQoNDdWwYcN08cUXa+/evfrss89M9TFmzBj169dPL730ks/Xq6qqVFVV5XnudruVmJgol8vldR0MAACwL7fbLafT2eznd5tcJHLhhRcqMzNTpaWlOnbsmHbv3q2amhoNHDjQdB/Dhw/X4cOH/b4eHh6uqKgorwcAAOic2vSq1u7duys+Pl7fffed3nvvPU2ZMsX0utnZ2YqPj2/D6gAAQLBok581v/feezIMQ5dccokOHz6shQsX6tJLL9Xs2bMlSWlpafr666/14osvSpKefPJJJSUlafDgwaqsrNRzzz2nDz74QH/5y1/aojwAABBk2iSwuFwupaWl6fjx44qOjtZNN92kFStWqGvXrpKk/Px85eXledpXV1frl7/8pb7++mt169ZNKSkpev/99zV27Ni2KA8AAASZNrnotiOYvWgHAADYR4dedAsAABBIBBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7BBYAAGB7XTq6ADRWfbpOL2Ud0dHicvWP7qbbUwdIUqNl1afrNP+V/cr7rkL9zovUEzdfoR4Rjae0orpWv92So9xvyxXZNUQ/So5VXFSk/llYomPf/V9/37irNGl1psqqatU9PFTv/mKMLoiO9NvfkZPlGtC7mx68PlmRYaGN2n3jrtK0Z3aquKxG0d27avO9I9UnKtznmF3lNbpj426dcFUqwRmh52cNl7NbV5/b5cjJckmGLu/bSwnnddPwpGiFhjisb+gGfG33sC6tz/SlladNzZMk1dYZ2p1brKKSSsX0jPA5tkDW6a+v5t6jpTXszPlGt7242/N804zhGpncx2e/fXtFypChr09Vet4jNMThc/tYqae4tFrTf/+RikqqFdMzTC/fdbWie4T5bJtbVKaJT2WqqtZQeKhDW+8fo6SY7j7bmj0uJGnvV9/ppt9/5Hn++l1X68qB5zW7/Zpj5Zizysy+aad+24qVfc3K2KzsP4FgpTa7zJHDMAwj0J2WlJRoyZIl2rx5s4qKinTFFVfoqaee0lVXXeV3nYyMDC1YsECffvqpEhMTtXjxYs2aNcv0e7rdbjmdTrlcLkVFRQVgFB0jfUuONnyYq7qzZsUhyewkpfSN0ltzR3mez3nxY23LKWpxPWGhDn2+4vpm+7suOUYbZvzf/KYse0/uytON2kVFdNGBZRO8lo1Z9YGOnqxo1LZ/70hlLrxWku/tUi/eGaGlk5M1cUi86XE15Kv/EIc0Z1SS0q5PbnG/N675UAeOuxstbzhPkrT1YL6Wv52jfFelZ1nDsQWyTn99DbkgSge/dvt9j5bWMGDRO35fO/LoDU3OsXTmOOgWFqqy6lrPsnhnhIZcEKXtnxWZqueqR7bpm9LqRn336RGmjxdf57VsYNo7PmsJcUhfpd/gtczscSE1vx1aysoxZ5WZfdNO/bYVK/u+lbFZ2X8CwUpt7TFHZj+/2ySw3HzzzTp48KDWrVunhIQEbdq0SU888YRycnJ0wQUXNGqfm5urIUOG6O6779add96p7du3a968eXrnnXc0YYK5A60zBJb0LTl6dkduq/up/zBsbVipVx9amuuv/uDyd+Ksd/YJ1F9Yqde/d6QmDo5rdrs4JK27bViLDqDmtvvPRrcstPgLK/XODi1bD+brnk37GgXT+n/DrLttmPbnfRewOlu6r6X0jWpyTP5qaOpDui2dXY+/sFLv7NDiL6zUOzu0mD0uJHPboSWhxcoxZ5WZfbMlx11b9dtWrJwnrIzNyv4TCFZqa685Mvv5HfBrWCoqKvT6669r5cqVGj16tAYNGqRly5Zp0KBBWrdunc911q9fr6SkJP3ud7/T9773Pc2dO1c//elP9cQTTwS6PNuqPl2nDR+2PqxI0oHjbn3jrgpIWJGk6lpDhwtKm+1vW06R8r4tb/LEKUnuytP6xl0lV3lNk2FFko6erDC1XQxJy9/OUW1TnzI+mNnuGz7MVfXpOkv9llaebvKDXTozT6WVp1VbZ2j52zk+v0WrX7b0TwcDVmdr9rXmxuSrhp0537TovQKhvp7i0uomw4okfVNareLSauUWlTUZViSpzjjz56KK6lpTx0VFda32fvWdqZrNtqv3jbvK9DFnlZl9syXHXVv121asnCesjM3K/hMIVmqz4xwFPLCcPn1atbW1ioiI8FoeGRmpnTt3+lwnKytL48eP91o2YcIEZWVl+X2fqqoqud1ur0cweynrSLMnSSumPeN7W7fUpNWZptpNfMpcu2nP7NQdG3c331AyvV3yXZXanVtsrvH/MrPd64wz7ayY/8p+0+125xZ7fd3akCGpsKQ6YHUGel9rroazr1lpb/X1TD/repGmTP/9R6b34YlPZeq3W3JMtf3tlhyva1aaYrZdPbPHekvOCWb2zZYcd23Vb1uxcp6wMjYr+08gWKnNjnMU8MDSs2dPpaam6uGHH9aJEydUW1urTZs2KSsrS/n5+T7XKSgoUGxsrNey2NhYud1uVVT4/hd4enq6nE6n55GYmBjoobSro8XlAe2vuKwmoP3VmPyCocJkw+KyGp1o4mBoqaISa32a3e5W5yfvu6a/OTq7ndWam2KmzkDva+3dv1VHi8tVVNL0tyv1ikqqVVVrLs1V1Rr/ewF488y2awmzx3pLzglm902r+3Bb9dtWrJwnrIytvfcfK7XZcY7a5GfNL730kgzD0AUXXKDw8HCtXr1at9xyi0JCAvd2aWlpcrlcnsexY8cC1ndH6B/dLaD9RXfv2nwjC7qanLpIkw2ju3dVgjOi+YYWxfS01qfZ7W51fvqd1/jXVf7aWa25KWbqDPS+1t79W9U/uptievr+FVBDMT3DFB5q7tcP4aEODehtbqxm27WE2WO9JecEs/um1X24rfptK1bOE1bG1t77j5Xa7DhHbRJYLrzwQmVmZqq0tFTHjh3T7t27VVNTo4EDB/psHxcXp8LCQq9lhYWFioqKUmSk7xN/eHi4oqKivB7B7PbUAQrkr8Q23zsycJ1JevcXY0y123q/uXab7x2p52cNN9XW7HaJd575uZ0VZrZ7iEOen5ab9cTNV5huNzwpWvHOCPkrwyEptmdYwOoM9L7WXA2bZpib57ZQX8/Ld11tqv3Ld11teh/eev8YPWjyIucHr0/W6yZrMNuuntljvSXnBDP7ZkuOu7bqt61YOU9YGZuV/ScQrNRmxzlq0xvHde/eXfHx8fruu+/03nvvacqUKT7bpaamavv27V7Ltm3bptTU1LYsz1bCuoRozqikgPSV0jdKfaLCdV1yTED6Cwt1aFBcj2b7uy45Rv3O76YoP/cYqRcV0UV9osLl7NZV/Xs3/U1E/96RpraLQ9LSycmW7w1gZrvPGZVk+T4nPSK6KKVv0yE6pW+UekR0UWiIQ0snnzkhNay+/vnyKUMCVmdr9rXmxuSrhrPvs9Le6uuJ7hGmPn7utVKvT48wRfcIU1JMd1MfTkkx3RUZFmrquIgMCzV9nxWr92PpExVu+pizysy+2ZLjrq36bStWzhNWxmZl/wkEK7XZcY7aJLC899572rp1q3Jzc7Vt2zaNHTtWl156qWbPni3pzJ9zZsyY4Wl/991366uvvtKvf/1r/fOf/9QzzzyjV199VfPnz2+L8mwr7fpk/Wx0UqOTpZXd4eyfym6YcVWrQ8vZ92Fpqr+zf3p3YNkEvyfQhj+vzFx4rd/QUn8fFn/bpV68M6JVP6/z13+Io+U/aZakt+aO8vsB3/A+LBOHxGvdbcMU1+DPZHFnjS2QdTbVV0rfKL/v8dbcUS2qobmf6h559IYm51g6cxx0b3DijndG6LrkGFP1fLz4Or+hpeF9WL5Kv8FvLQ3vw2L2uJDMbYeWsHLMWWVm37RTv23FyvFnZWxW9p9AsFKb3eaoTe7D8uqrryotLU3Hjx9XdHS0brrpJq1YsUJOp1OSNGvWLB05ckQZGRmedTIyMjR//nzl5OSob9++WrJkyTl54ziJO91yp1vudMudbluGO922Pe50G/g56tAbx3WEzhRYAAA4V3TYjeMAAAACjcACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsj8ACAABsL+CBpba2VkuWLFFSUpIiIyN14YUX6uGHH5ZhGH7XycjIkMPhaPQoKCgIdHkAACAIdQl0h4899pjWrVunF154QYMHD9aePXs0e/ZsOZ1O/eIXv2hy3UOHDikqKsrzPCYmJtDlAQCAIBTwwPLRRx9pypQpuuGGGyRJAwYM0B//+Eft3r272XVjYmLUq1evQJcEAACCXMD/JHT11Vdr+/bt+vzzzyVJ//jHP7Rz505NmjSp2XUvv/xyxcfH67rrrtPf/va3JttWVVXJ7XZ7PQAAQOcU8G9YFi1aJLfbrUsvvVShoaGqra3VihUrdOutt/pdJz4+XuvXr9f3v/99VVVV6bnnntM111yjXbt2adiwYT7XSU9P1/LlywNdPgAAsCGH0dTVsC3w8ssva+HChVq1apUGDx6s7OxszZs3T48//rhmzpxpup8xY8aoX79+eumll3y+XlVVpaqqKs9zt9utxMREuVwur+tgAACAfbndbjmdzmY/vwP+DcvChQu1aNEiTZ8+XZJ02WWX6ejRo0pPT7cUWIYPH66dO3f6fT08PFzh4eGtrhcAANhfwK9hKS8vV0iId7ehoaGqq6uz1E92drbi4+MDWRoAAAhSAf+GZfLkyVqxYoX69eunwYMHa//+/Xr88cd1xx13eNqkpaXp66+/1osvvihJevLJJ5WUlKTBgwersrJSzz33nD744AP95S9/CXR5AAAgCAU8sDz99NNasmSJ7r33XhUVFSkhIUE/+9nP9NBDD3na5OfnKy8vz/O8urpav/zlL/X111+rW7duSklJ0fvvv6+xY8cGujwAABCEAn7RbUcxe9EOAACwD7Of3/y/hAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO0RWAAAgO116egCEHxq6wztzi1WUUmlYnpGaHhStEJDHC1uByAwOObQmQU8sNTW1mrZsmXatGmTCgoKlJCQoFmzZmnx4sVyOPwfOBkZGVqwYIE+/fRTJSYmavHixZo1a1agy0MrbT2Yr+Vv5yjfVelZFu+M0NLJyZo4JN5yOwCBwTGHzi7gfxJ67LHHtG7dOq1Zs0afffaZHnvsMa1cuVJPP/2033Vyc3N1ww03aOzYscrOzta8efN055136r333gt0eWiFrQfzdc+mfV4nREkqcFXqnk37tPVgvqV2AAKDYw7nAodhGEYgO/zxj3+s2NhY/ed//qdn2U033aTIyEht2rTJ5zoPPPCA3nnnHR08eNCzbPr06Tp16pS2bt1q6n3dbrecTqdcLpeioqJaNwg0UltnaORjHzQ6IdZzSIpzRihz4ViNWfXXZtvtfOBavqoGAsDssckxB7sy+/kd8G9Yrr76am3fvl2ff/65JOkf//iHdu7cqUmTJvldJysrS+PHj/daNmHCBGVlZfldp6qqSm632+uBtrM7t9jvCVGSDEn5rkq9lHXEVLvducWBLxI4B5k9NjnmEOwCfg3LokWL5Ha7demllyo0NFS1tbVasWKFbr31Vr/rFBQUKDY21mtZbGys3G63KioqFBkZ2Wid9PR0LV++PNDlw4+iEv8nxLMdLS4PaH8Ammb2WOKYQ7AL+Dcsr776qv7whz/ov//7v7Vv3z698MIL+o//+A+98MILAX2ftLQ0uVwuz+PYsWMB7R/eYnpGmGrXP7pbQPsD0DSzxxLHHIJdwL9hWbhwoRYtWqTp06dLki677DIdPXpU6enpmjlzps914uLiVFhY6LWssLBQUVFRPr9dkaTw8HCFh4cHtnj4NTwpWvHOCBW4KuXroqf6v5PfnjpAz+3Mbbbd8KToti0YOEeYPTY55hDsAv4NS3l5uUJCvLsNDQ1VXV2d33VSU1O1fft2r2Xbtm1TampqoMtDC4WGOLR0crKkMyfAs9U/Xzo5WWFdQky14+I/IDDMHpsccwh2AQ8skydP1ooVK/TOO+/oyJEj2rx5sx5//HFNmzbN0yYtLU0zZszwPL/77rv11Vdf6de//rX++c9/6plnntGrr76q+fPnB7o8tMLEIfFad9swxTm9v1qOc0Zo3W3DPPd6MNsOQGBwzOFcEPCfNZeUlGjJkiXavHmzioqKlJCQoFtuuUUPPfSQwsLCJEmzZs3SkSNHlJGR4VkvIyND8+fPV05Ojvr27aslS5ZYunEcP2tuP9zpFrAnjjkEI7Of3wEPLB2FwAIAQPDpsPuwAAAABBqBBQAA2B6BBQAA2B6BBQAA2B6BBQAA2B6BBQAA2B6BBQAA2B6BBQAA2B6BBQAA2F7A/2/NHaX+hr1ut7uDKwEAAGbVf243d+P9ThNYSkpKJEmJiYkdXAkAALCqpKRETqfT7+ud5v8lVFdXpxMnTqhnz55yOMz9z77cbrcSExN17NixTvn/H+rM42Nswaszj68zj03q3ONjbB3HMAyVlJQoISFBISH+r1TpNN+whISEqG/fvi1aNyoqypaTGCideXyMLXh15vF15rFJnXt8jK1jNPXNSj0uugUAALZHYAEAALZ3TgeW8PBwLV26VOHh4R1dSpvozONjbMGrM4+vM49N6tzjY2z212kuugUAAJ3XOf0NCwAACA4EFgAAYHsEFgAAYHsEFgAAYHvnRGDZsWOHJk+erISEBDkcDr355pterxuGoYceekjx8fGKjIzU+PHj9cUXX3RMsRY1N7ZZs2bJ4XB4PSZOnNgxxVqUnp6uq666Sj179lRMTIymTp2qQ4cOebWprKzUfffdp969e6tHjx666aabVFhY2EEVW2NmfNdcc02j+bv77rs7qGLz1q1bp5SUFM+NqlJTU/Xuu+96Xg/meZOaH1+wzpsvjz76qBwOh+bNm+dZFuzzV8/X2IJ57pYtW9ao9ksvvdTzerDP2zkRWMrKyjR06FCtXbvW5+srV67U6tWrtX79eu3atUvdu3fXhAkTVFlZ2c6VWtfc2CRp4sSJys/P9zz++Mc/tmOFLZeZman77rtPf//737Vt2zbV1NToRz/6kcrKyjxt5s+fr7fffluvvfaaMjMzdeLECf3kJz/pwKrNMzM+SZozZ47X/K1cubKDKjavb9++evTRR7V3717t2bNH1157raZMmaJPP/1UUnDPm9T8+KTgnLeGPv74Yz377LNKSUnxWh7s8yf5H5sU3HM3ePBgr9p37tzpeS3o5804x0gyNm/e7HleV1dnxMXFGatWrfIsO3XqlBEeHm788Y9/7IAKW67h2AzDMGbOnGlMmTKlQ+oJtKKiIkOSkZmZaRjGmXnq2rWr8dprr3nafPbZZ4YkIysrq6PKbLGG4zMMwxgzZoxx//33d1xRAXTeeecZzz33XKebt3r14zOMzjFvJSUlxkUXXWRs27bNazydYf78jc0wgnvuli5dagwdOtTna51h3s6Jb1iakpubq4KCAo0fP96zzOl0asSIEcrKyurAygInIyNDMTExuuSSS3TPPffo5MmTHV1Si7hcLklSdHS0JGnv3r2qqanxmrtLL71U/fr1C8q5azi+en/4wx90/vnna8iQIUpLS1N5eXlHlNditbW1evnll1VWVqbU1NRON28Nx1cv2Oftvvvu0w033OA1T1LnOO78ja1eMM/dF198oYSEBA0cOFC33nqr8vLyJHWOees0//PDliooKJAkxcbGei2PjY31vBbMJk6cqJ/85CdKSkrSl19+qQcffFCTJk1SVlaWQkNDO7o80+rq6jRv3jz98Ic/1JAhQySdmbuwsDD16tXLq20wzp2v8UnSv/3bv6l///5KSEjQgQMH9MADD+jQoUN64403OrBacz755BOlpqaqsrJSPXr00ObNm5WcnKzs7OxOMW/+xicF97xJ0ssvv6x9+/bp448/bvRasB93TY1NCu65GzFihDZu3KhLLrlE+fn5Wr58uUaNGqWDBw8G/bxJBJZOb/r06Z7/vuyyy5SSkqILL7xQGRkZGjduXAdWZs19992ngwcPev09tjPxN7677rrL89+XXXaZ4uPjNW7cOH355Ze68MIL27tMSy655BJlZ2fL5XLpf/7nfzRz5kxlZmZ2dFkB4298ycnJQT1vx44d0/33369t27YpIiKio8sJKDNjC+a5mzRpkue/U1JSNGLECPXv31+vvvqqIiMjO7CywDjn/yQUFxcnSY2ulC4sLPS81pkMHDhQ559/vg4fPtzRpZg2d+5c/fnPf9Zf//pX9e3b17M8Li5O1dXVOnXqlFf7YJs7f+PzZcSIEZIUFPMXFhamQYMG6corr1R6erqGDh2qp556qtPMm7/x+RJM87Z3714VFRVp2LBh6tKli7p06aLMzEytXr1aXbp0UWxsbNDOX3Njq62tbbROMM1dQ7169dLFF1+sw4cPd4rj7pwPLElJSYqLi9P27ds9y9xut3bt2uX19+jO4vjx4zp58qTi4+M7upRmGYahuXPnavPmzfrggw+UlJTk9fqVV16prl27es3doUOHlJeXFxRz19z4fMnOzpakoJi/hurq6lRVVRX08+ZP/fh8CaZ5GzdunD755BNlZ2d7Ht///vd16623ev47WOevubH5+jN5MM1dQ6Wlpfryyy8VHx/fOY67jr7qtz2UlJQY+/fvN/bv329IMh5//HFj//79xtGjRw3DMIxHH33U6NWrl/GnP/3JOHDggDFlyhQjKSnJqKio6ODKm9fU2EpKSoxf/epXRlZWlpGbm2u8//77xrBhw4yLLrrIqKys7OjSm3XPPfcYTqfTyMjIMPLz8z2P8vJyT5u7777b6Nevn/HBBx8Ye/bsMVJTU43U1NQOrNq85sZ3+PBh4ze/+Y2xZ88eIzc31/jTn/5kDBw40Bg9enQHV968RYsWGZmZmUZubq5x4MABY9GiRYbD4TD+8pe/GIYR3PNmGE2PL5jnzZ+Gv5wJ9vk729ljC/a5++Uvf2lkZGQYubm5xt/+9jdj/Pjxxvnnn28UFRUZhhH883ZOBJa//vWvhqRGj5kzZxqGceanzUuWLDFiY2ON8PBwY9y4ccahQ4c6tmiTmhpbeXm58aMf/cjo06eP0bVrV6N///7GnDlzjIKCgo4u2xRf45Jk/Nd//ZenTUVFhXHvvfca5513ntGtWzdj2rRpRn5+fscVbUFz48vLyzNGjx5tREdHG+Hh4cagQYOMhQsXGi6Xq2MLN+GOO+4w+vfvb4SFhRl9+vQxxo0b5wkrhhHc82YYTY8vmOfNn4aBJdjn72xnjy3Y5+7mm2824uPjjbCwMOOCCy4wbr75ZuPw4cOe14N93hyGYRjt930OAACAdef8NSwAAMD+CCwAAMD2CCwAAMD2CCwAAMD2CCwAAMD2CCwAAMD2CCwAAMD2CCwAAMD2CCwAAMD2CCwAAMD2CCwAAMD2CCwAAMD2/j9AhLmOJqoU+QAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#scatter plot\n", + "import matplotlib.pyplot as plt\n", + "\n", + "price = refined_data.Price\n", + "month = refined_data.Month\n", + "\n", + "plt.scatter(price, month)\n", + "plt.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, 'Pumpkin price')" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjIAAAG0CAYAAAAozc0BAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAkQUlEQVR4nO3dfVSUdf7/8dcAOuINKBp3ifc3Zd6m5dfMezdvWtNyy1xNCK1TBy2hMu3ONS1Su7Ets3O20txyLU9qpaUVKSZqhYYeizU1TV1ANwlQSARmfn/0a06sgIzNcF0feD7OmXOYz3XN8M6rU0+vuWbG4Xa73QIAADBQgNUDAAAAXCpCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGCrJ6AH9zuVzKyspSkyZN5HA4rB4HAABUg9vt1pkzZxQdHa2AgMrPu9T6kMnKylJMTIzVYwAAgEtw/PhxtWzZstLttT5kmjRpIunXP4iQkBCLpwEAANVRUFCgmJgYz//HK1PrQ+a3l5NCQkIIGQAADHOxy0K42BcAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLGCrB4A8LU2szdaPYJPHH3mRqtHAADb44wMAAAwFmdkAPgNZ8cA+BtnZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEsDZnk5GRdc801atKkicLDwzVu3DgdOHCg3D6DBw+Ww+Eod7vnnnssmhgAANiJpSGTmpqqhIQE7dq1S59++qlKSkp0ww03qLCwsNx+d911l7Kzsz23RYsWWTQxAACwkyArf/mmTZvK3V+xYoXCw8O1e/duDRw40LPesGFDRUZG1vR4AADA5iwNmf+Vn58vSQoLCyu3/vbbb+utt95SZGSkxowZo8cff1wNGzas8DmKi4tVXFzsuV9QUOC/gQHAEG1mb7R6BJ84+syNVo8Am7FNyLhcLs2cOVP9+/dX165dPet//etf1bp1a0VHR2vfvn16+OGHdeDAAa1du7bC50lOTta8efNqamwAAGAh24RMQkKC9u/fr+3bt5dbv/vuuz0/d+vWTVFRURo2bJgOHz6s9u3bX/A8c+bMUVJSkud+QUGBYmJi/Dc4AACwjC1CZvr06dqwYYO2bdumli1bVrlv3759JUmHDh2qMGScTqecTqdf5gQAAPZiaci43W7NmDFD69at09atW9W2bduLPiYjI0OSFBUV5efpAACA3VkaMgkJCVq1apXef/99NWnSRDk5OZKk0NBQBQcH6/Dhw1q1apVGjx6t5s2ba9++fUpMTNTAgQPVvXt3K0cHAAA2YGnILFu2TNKvH3r3e8uXL1dcXJzq16+vzz77TEuWLFFhYaFiYmI0fvx4PfbYYxZMCwAA7Mbyl5aqEhMTo9TU1BqaBgAAmMYWF/vWBrXhMxr4fAYAgGn40kgAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsS0MmOTlZ11xzjZo0aaLw8HCNGzdOBw4cKLfPuXPnlJCQoObNm6tx48YaP368Tp48adHEAADATiwNmdTUVCUkJGjXrl369NNPVVJSohtuuEGFhYWefRITE/Xhhx9qzZo1Sk1NVVZWlm655RYLpwYAAHYRZOUv37RpU7n7K1asUHh4uHbv3q2BAwcqPz9fr7/+ulatWqWhQ4dKkpYvX64rr7xSu3bt0v/93/9ZMTYAALAJW10jk5+fL0kKCwuTJO3evVslJSUaPny4Z58rrrhCrVq10s6dOyt8juLiYhUUFJS7AQCA2sk2IeNyuTRz5kz1799fXbt2lSTl5OSofv36atq0abl9IyIilJOTU+HzJCcnKzQ01HOLiYnx9+gAAMAitgmZhIQE7d+/X6tXr/5DzzNnzhzl5+d7bsePH/fRhAAAwG4svUbmN9OnT9eGDRu0bds2tWzZ0rMeGRmp8+fPKy8vr9xZmZMnTyoyMrLC53I6nXI6nf4eGQAA2IClZ2TcbremT5+udevW6fPPP1fbtm3Lbe/du7fq1aunlJQUz9qBAwd07Ngx9evXr6bHBQAANmPpGZmEhAStWrVK77//vpo0aeK57iU0NFTBwcEKDQ3V1KlTlZSUpLCwMIWEhGjGjBnq168f71gCAADWhsyyZcskSYMHDy63vnz5csXFxUmSXnjhBQUEBGj8+PEqLi7WiBEj9Morr9TwpAAAwI4sDRm3233RfRo0aKClS5dq6dKlNTARAAAwiW3etQQAAOAtQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxrrkkDl06JA2b96sX375RVL1PhMGAADAl7wOmdOnT2v48OHq1KmTRo8erezsbEnS1KlT9cADD/h8QAAAgMp4HTKJiYkKCgrSsWPH1LBhQ8/6hAkTtGnTJp8OBwAAUBWvv6Lgk08+0ebNm9WyZcty6x07dtSPP/7os8EAAAAuxuszMoWFheXOxPwmNzdXTqfTJ0MBAABUh9chM2DAAK1cudJz3+FwyOVyadGiRRoyZIhPhwMAAKiK1y8tLVq0SMOGDVN6errOnz+vWbNm6dtvv1Vubq7S0tL8MSMAAECFvD4j07VrV33//fe6/vrrNXbsWBUWFuqWW27RN998o/bt2/tjRgAAgAp5fUZGkkJDQ/Xoo4/6ehYAAACveH1GZvny5VqzZs0F62vWrNGbb77pk6EAAACqw+uQSU5OVosWLS5YDw8P19NPP+2ToQAAAKrD65A5duyY2rZte8F669atdezYMZ8MBQAAUB1eh0x4eLj27dt3wfrevXvVvHlznwwFAABQHV6HzMSJE3Xfffdpy5YtKisrU1lZmT7//HPdf//9uv322/0xIwAAQIW8ftfS/PnzdfToUQ0bNkxBQb8+3OVyacqUKVwjAwAAapTXIVO/fn298847mj9/vvbu3avg4GB169ZNrVu39sd8AAAAlbqkz5GRpE6dOqlTp06+nAUAAMAr1QqZpKQkzZ8/X40aNVJSUlKV+z7//PM+GQwAAOBiqhUy33zzjUpKSiRJe/bskcPhqHC/ytYBAAD8oVohs2XLFs/PW7du9dcsAAAAXvHq7dclJSUKCgrS/v37/TUPAABAtXkVMvXq1VOrVq1UVlbmr3kAAACqzesPxHv00Uf1yCOPKDc31x/zAAAAVJvXb79++eWXdejQIUVHR6t169Zq1KhRue179uzx2XAAAABV8Tpkxo0b54cxAAAAvOd1yMydO9cfcwAAAHjtkj/ZNz09XZmZmZKkLl26qHfv3j4bCgAAoDq8DpkTJ05o4sSJSktLU9OmTSVJeXl5uu6667R69Wq1bNnS1zMCAABUyOt3LU2bNk0lJSXKzMxUbm6ucnNzlZmZKZfLpWnTpvljRgAAgAp5fUYmNTVVO3bsUOfOnT1rnTt31ksvvaQBAwb4dDgAAICqeH1GJiYmxvO9S79XVlam6OhonwwFAABQHV6HzOLFizVjxgylp6d71tLT03X//ffr2Wef9elwAAAAVfH6paW4uDgVFRWpb9++Cgr69eGlpaUKCgpSfHy84uPjPfvy6b8AAMCfvA6ZJUuW+GEMAAAA73kdMrGxsf6YAwAAwGteXyMDAABgF4QMAAAwFiEDAACMRcgAAABjETIAAMBYXr9rqbCwUM8884xSUlJ06tQpuVyuctt/+OEHnw0HAABQFa9DZtq0aUpNTdUdd9yhqKgoORwOf8wFAABwUV6HzMcff6yNGzeqf//+/pgHAACg2rwOmWbNmiksLMwfswAAUCe0mb3R6hH+sKPP3Gj1CJIu4WLf+fPn64knnlBRUdEf/uXbtm3TmDFjFB0dLYfDofXr15fbHhcXJ4fDUe42cuTIP/x7AQBA7eD1GZnnnntOhw8fVkREhNq0aaN69eqV275nz55qP1dhYaF69Oih+Ph43XLLLRXuM3LkSC1fvtxz3+l0ejsyAACopbwOmXHjxvnsl48aNUqjRo2qch+n06nIyEif/U4AAFB7eB0yc+fO9cccldq6davCw8PVrFkzDR06VAsWLFDz5s0r3b+4uFjFxcWe+wUFBTUxJgAAsICtPxBv5MiRWrlypVJSUrRw4UKlpqZq1KhRKisrq/QxycnJCg0N9dxiYmJqcGIAAFCTqnVGJiwsTN9//71atGihZs2aVfnZMbm5uT4b7vbbb/f83K1bN3Xv3l3t27fX1q1bNWzYsAofM2fOHCUlJXnuFxQUEDMAANRS1QqZF154QU2aNPH8bNWH4LVr104tWrTQoUOHKg0Zp9PJBcEAANQR1QqZ2NhYz89xcXGV7vfLL7/84YGqcuLECZ0+fVpRUVF+/T0AAMAMXl8jc99991W4XlhYqNGjR3v1XGfPnlVGRoYyMjIkSUeOHFFGRoaOHTums2fP6qGHHtKuXbt09OhRpaSkaOzYserQoYNGjBjh7dgAAKAW8jpkNm7ceME7lwoLCzVy5EiVlpZ69Vzp6enq1auXevXqJUlKSkpSr1699MQTTygwMFD79u3TTTfdpE6dOmnq1Knq3bu3vvjiC146AgAAki7h7deffPKJBgwYoGbNmmnmzJk6c+aMRowYoaCgIH388cdePdfgwYPldrsr3b5582ZvxwMAAHWI1yHTvn17bdq0SUOGDFFAQID+9a9/yel0auPGjWrUqJE/ZgQAAKiQ1yEjSd27d9eGDRv0pz/9SX379tWGDRsUHBzs69kAAACqVK2Q6dWrV4VvuXY6ncrKylL//v09a9581xIAAMAfUa2Q8eX3KwEAAPhKtUKmpr9fCQAAoDou6RoZ6de3TmdmZkqSunTpot69e/tsKAAAgOrwOmROnDihiRMnKi0tTU2bNpUk5eXl6brrrtPq1avVsmVLX88IAABQIa8/EG/atGkqKSlRZmamcnNzlZubq8zMTLlcLk2bNs0fMwIAAFTI6zMyqamp2rFjhzp37uxZ69y5s1566SUNGDDAp8MBAABUxeszMjExMSopKblgvaysTNHR0T4ZCgAAoDq8DpnFixdrxowZSk9P96ylp6fr/vvv17PPPuvT4QAAAKri9UtLcXFxKioqUt++fRUU9OvDS0tLFRQUpPj4eMXHx3v2zc3N9d2kAAAA/8PrkFmyZIkfxgAAAPCe1yETGxvrjzkAAAC8dskfiHfq1CmdOnVKLper3Hr37t3/8FAAAADV4XXI7N69W7GxscrMzJTb7S63zeFwqKyszGfDAQAAVMXrkImPj1enTp30+uuvKyIiosJvxQYAAKgJXofMDz/8oPfee08dOnTwxzwAAADV5vXnyAwbNkx79+71xywAAABe8fqMzGuvvabY2Fjt379fXbt2Vb169cptv+mmm3w2HAAAQFW8DpmdO3cqLS1NH3/88QXbuNgXAADUJK9fWpoxY4YmT56s7OxsuVyucjciBgAA1CSvQ+b06dNKTExURESEP+YBAACoNq9D5pZbbtGWLVv8MQsAAIBXvL5GplOnTpozZ462b9+ubt26XXCx73333eez4QAAAKpySe9aaty4sVJTU5Wamlpum8PhIGQAAECN8Tpkjhw54o85AAAAvOb1NTIAAAB2cUnftVSVN95445KHAQAA8IbXIfPzzz+Xu19SUqL9+/crLy9PQ4cO9dlgAAAAF+N1yKxbt+6CNZfLpXvvvVft27f3yVAAAADV4ZNrZAICApSUlKQXXnjBF08HAABQLT672Pfw4cMqLS311dMBAABclNcvLSUlJZW773a7lZ2drY0bNyo2NtZngwEAAFyM1yHzzTfflLsfEBCgyy67TM8999xF39EEAADgS16HDN+zBAAA7KLa18i4XC4tXLhQ/fv31zXXXKPZs2frl19+8edsAAAAVap2yDz11FN65JFH1LhxY11++eV68cUXlZCQ4M/ZAAAAqlTtkFm5cqVeeeUVbd68WevXr9eHH36ot99+Wy6Xy5/zAQAAVKraIXPs2DGNHj3ac3/48OFyOBzKysryy2AAAAAXU+2QKS0tVYMGDcqt1atXTyUlJT4fCgAAoDqq/a4lt9utuLg4OZ1Oz9q5c+d0zz33qFGjRp61tWvX+nZCAACASlQ7ZCr6sLvJkyf7dBgAAABvVDtkli9f7s85AAAAvOaz71oCAACoaYQMAAAwFiEDAACMRcgAAABjETIAAMBYhAwAADAWIQMAAIxlachs27ZNY8aMUXR0tBwOh9avX19uu9vt1hNPPKGoqCgFBwdr+PDhOnjwoDXDAgAA27E0ZAoLC9WjRw8tXbq0wu2LFi3S3//+d7366qv68ssv1ahRI40YMULnzp2r4UkBAIAdVfuTff1h1KhRGjVqVIXb3G63lixZoscee0xjx46VJK1cuVIRERFav369br/99pocFQAA2JBtr5E5cuSIcnJyNHz4cM9aaGio+vbtq507d1b6uOLiYhUUFJS7AQCA2sm2IZOTkyNJioiIKLceERHh2VaR5ORkhYaGem4xMTF+nRMAAFjHtiFzqebMmaP8/HzP7fjx41aPBAAA/MS2IRMZGSlJOnnyZLn1kydPerZVxOl0KiQkpNwNAADUTrYNmbZt2yoyMlIpKSmetYKCAn355Zfq16+fhZMBAAC7sPRdS2fPntWhQ4c8948cOaKMjAyFhYWpVatWmjlzphYsWKCOHTuqbdu2evzxxxUdHa1x48ZZNzQAALANS0MmPT1dQ4YM8dxPSkqSJMXGxmrFihWaNWuWCgsLdffddysvL0/XX3+9Nm3apAYNGlg1MgAAsBFLQ2bw4MFyu92Vbnc4HHryySf15JNP1uBUAADAFLa9RgYAAOBiCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsW4fM3/72NzkcjnK3K664wuqxAACATQRZPcDFXHXVVfrss88894OCbD8yAACoIbavgqCgIEVGRlo9BgAAsCFbv7QkSQcPHlR0dLTatWunSZMm6dixY1XuX1xcrIKCgnI3AABQO9k6ZPr27asVK1Zo06ZNWrZsmY4cOaIBAwbozJkzlT4mOTlZoaGhnltMTEwNTgwAAGqSrUNm1KhRuvXWW9W9e3eNGDFCH330kfLy8vTuu+9W+pg5c+YoPz/fczt+/HgNTgwAAGqS7a+R+b2mTZuqU6dOOnToUKX7OJ1OOZ3OGpwKAABYxdZnZP7X2bNndfjwYUVFRVk9CgAAsAFbh8yDDz6o1NRUHT16VDt27NDNN9+swMBATZw40erRAACADdj6paUTJ05o4sSJOn36tC677DJdf/312rVrly677DKrRwMAADZg65BZvXq11SMAAAAbs/VLSwAAAFUhZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsQgZAABgLEIGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCwjQmbp0qVq06aNGjRooL59++qrr76yeiQAAGADtg+Zd955R0lJSZo7d6727NmjHj16aMSIETp16pTVowEAAIvZPmSef/553XXXXbrzzjvVpUsXvfrqq2rYsKHeeOMNq0cDAAAWC7J6gKqcP39eu3fv1pw5czxrAQEBGj58uHbu3FnhY4qLi1VcXOy5n5+fL0kqKCjw66yu4iK/Pn9N8PefUU2pDcdCqh3Hg2NhHxwLe6kNx8Pfx+K353e73VXuZ+uQ+emnn1RWVqaIiIhy6xEREfr3v/9d4WOSk5M1b968C9ZjYmL8MmNtErrE6gnwexwP++BY2AfHwj5q6licOXNGoaGhlW63dchcijlz5igpKclz3+VyKTc3V82bN5fD4bBwsj+moKBAMTExOn78uEJCQqwep07jWNgHx8I+OBb2UVuOhdvt1pkzZxQdHV3lfrYOmRYtWigwMFAnT54st37y5ElFRkZW+Bin0ymn01lurWnTpv4ascaFhIQY/S9mbcKxsA+OhX1wLOyjNhyLqs7E/MbWF/vWr19fvXv3VkpKimfN5XIpJSVF/fr1s3AyAABgB7Y+IyNJSUlJio2NVZ8+fXTttddqyZIlKiws1J133mn1aAAAwGK2D5kJEybov//9r5544gnl5OSoZ8+e2rRp0wUXANd2TqdTc+fOveBlM9Q8joV9cCzsg2NhH3XtWDjcF3tfEwAAgE3Z+hoZAACAqhAyAADAWIQMAAAwFiEDAACMRcgAAABj2f7t14DVsrOztWzZMm3fvl3Z2dkKCAhQu3btNG7cOMXFxSkwMNDqEQGgzuKMjE29/PLLmjJlilavXi1J+uc//6kuXbroiiuu0COPPKLS0lKLJ6wb0tPTdeWVV+qjjz5SSUmJDh48qN69e6tRo0Z68MEHNXDgQJ05c8bqMQGgziJkbGjBggV65JFHVFRUpMTERC1cuFCJiYmaNGmSYmNj9dprr2n+/PlWj1knzJw5U4mJiUpPT9cXX3yhFStW6Pvvv9fq1av1ww8/qKioSI899pjVY9YZ58+f17vvvqvExERNnDhREydOVGJiotasWaPz589bPR5+5+TJk3ryySetHqNOOXHihM6ePXvBeklJibZt22bBRDXEDdtp3769+7333nO73W53RkaGOzAw0P3WW295tq9du9bdoUMHq8arU4KDg92HDx/23C8rK3PXq1fPnZOT43a73e5PPvnEHR0dbdV4dcrBgwfd7dq1czdo0MA9aNAg92233ea+7bbb3IMGDXI3aNDA3aFDB/fBgwetHhP/X0ZGhjsgIMDqMeqErKws9zXXXOMOCAhwBwYGuu+44w73mTNnPNtzcnJq9bHgGhkbysrKUp8+fSRJPXr0UEBAgHr27OnZfvXVVysrK8ui6eqW8PBwZWdnq127dpJ+/VtmaWmp5xtlO3bsqNzcXCtHrDPuvfdedevWTd98880F3+hbUFCgKVOmKCEhQZs3b7Zowrpl3759VW4/cOBADU2C2bNnKyAgQF9++aXy8vI0e/ZsDRkyRJ988omaNWsmSXLX4g/xJ2RsKDIyUt99951atWqlgwcPqqysTN99952uuuoqSdK3336r8PBwi6esG8aNG6d77rlHixcvltPp1Pz58zVo0CAFBwdL+vU/1pdffrnFU9YNaWlp+uqrry6IGEkKCQnR/Pnz1bdvXwsmq5t69uwph8NR4f8gf1t3OBwWTFb3fPbZZ1q3bp3nL8BpaWm69dZbNXToUKWkpEhSrT4WhIwNTZo0SVOmTNHYsWOVkpKiWbNm6cEHH9Tp06flcDj01FNP6S9/+YvVY9YJCxYsUHZ2tsaMGaOysjL169dPb731lme7w+FQcnKyhRPWHU2bNtXRo0fVtWvXCrcfPXpUTZs2rdmh6rCwsDAtWrRIw4YNq3D7t99+qzFjxtTwVHVTfn6+58yL9OuXRq5du1a33nqrhgwZUu6/WbURIWND8+bNU3BwsHbu3Km77rpLs2fPVo8ePTRr1iwVFRVpzJgxXOxbQxo3bqx33nlH586dU2lpqRo3blxu+w033GDRZHXPtGnTNGXKFD3++OMaNmyYIiIiJP36cl9KSooWLFigGTNmWDxl3dG7d29lZWWpdevWFW7Py8ur1S9n2Em7du20b98+dezY0bMWFBSkNWvW6NZbb9Wf//xnC6fzP779GoAxFi5cqBdffFE5OTmeU+Vut1uRkZGaOXOmZs2aZfGEdce6detUWFioyZMnV7j9559/1gcffKDY2Nganqzuefjhh5WRkVHh9WGlpaUaP368PvzwQ7lcLgum8z9CBoBxjhw5opycHEm/XlPWtm1biycCrFNaWqqioqIKrx/7bft//vOfSs+emY7PkQFgnLZt26pfv37q16+fJ2KOHz+u+Ph4iyfDbzgeNScoKKjSiJF+/XTyefPm1eBENYszMgBqhb179+rqq69WWVmZ1aNAHA87qe3Hgot9ARjhgw8+qHL7Dz/8UEOTQOJ42EldPxackQFghICAgEo/t+Q3Doej1v6t0244HvZR148F18gAMEJUVJTWrl0rl8tV4W3Pnj1Wj1incDzso64fC0IGgBF69+6t3bt3V7r9Yn8jhW9xPOyjrh8LrpEBYISHHnpIhYWFlW7v0KGDtmzZUoMT1W0cD/uo68eCa2QAAICxeGkJAAAYi5ABAADGImQAAICxCBkAAGAsQgZAneRwOLR+/XqrxwDwBxEyAGpUXFycHA6H7rnnngu2JSQkyOFwKC4uzme/729/+5t69uzps+cDYC+EDIAaFxMTo9WrV+uXX37xrJ07d06rVq1Sq1atLJwMgGkIGQA17uqrr1ZMTIzWrl3rWVu7dq1atWqlXr16edaKi4t13333KTw8XA0aNND111+vr7/+2rN969atcjgcSklJUZ8+fdSwYUNdd911OnDggCRpxYoVmjdvnvbu3SuHwyGHw6EVK1Z4Hv/TTz/p5ptvVsOGDdWxY8eLfvkeAPshZABYIj4+XsuXL/fcf+ONN3TnnXeW22fWrFl677339Oabb2rPnj3q0KGDRowYodzc3HL7Pfroo3ruueeUnp6uoKAgxcfHS5ImTJigBx54QFdddZWys7OVnZ2tCRMmeB43b9483Xbbbdq3b59Gjx6tSZMmXfDcAOyNkAFgicmTJ2v79u368ccf9eOPPyotLU2TJ0/2bC8sLNSyZcu0ePFijRo1Sl26dNE//vEPBQcH6/XXXy/3XE899ZQGDRqkLl26aPbs2dqxY4fOnTun4OBgNW7cWEFBQYqMjFRkZKSCg4M9j4uLi9PEiRPVoUMHPf300zp79qy++uqrGvszAPDH8V1LACxx2WWX6cYbb9SKFSvkdrt14403qkWLFp7thw8fVklJifr37+9Zq1evnq699lplZmaWe67u3bt7fo6KipIknTp16qLX2/z+cY0aNVJISIhOnTr1h/65ANQsQgaAZeLj4zV9+nRJ0tKlSy/5eerVq+f52eFwSJJcLpdXj/vtsdV5HAD74KUlAJYZOXKkzp8/r5KSEo0YMaLctvbt26t+/fpKS0vzrJWUlOjrr79Wly5dqv076tevr7KyMp/NDMBeOCMDwDKBgYGel4kCAwPLbWvUqJHuvfdePfTQQwoLC1OrVq20aNEiFRUVaerUqdX+HW3atNGRI0eUkZGhli1bqkmTJnI6nT795wBgHUIGgKVCQkIq3fbMM8/I5XLpjjvu0JkzZ9SnTx9t3rxZzZo1q/bzjx8/XmvXrtWQIUOUl5en5cuX+/QD9wBYy+F2u91WDwEAAHApuEYGAAAYi5ABAADGImQAAICxCBkAAGAsQgYAABiLkAEAAMYiZAAAgLEIGQAAYCxCBgAAGIuQAQAAxiJkAACAsf4ftsbMeeXmLcAAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#bar graph\n", + "refined_data.groupby(['Month'])['Price'].mean().plot(kind='bar')\n", + "\n", + "plt.ylabel(\"Pumpkin price\")" + ] + } + ], "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, "language_info": { "codemirror_mode": { "name": "ipython", @@ -10,24 +498,10 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.3-final" + "version": "3.12.5" }, - "orig_nbformat": 2, - "kernelspec": { - "name": "python3", - "display_name": "Python 3", - "language": "python" - } + "orig_nbformat": 2 }, "nbformat": 4, - "nbformat_minor": 2, - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ] -} \ No newline at end of file + "nbformat_minor": 2 +} From f8d7246fb275828e4cb026f90e0baee57a1f3b06 Mon Sep 17 00:00:00 2001 From: githubtemp5 Date: Sun, 18 Aug 2024 22:13:20 +0100 Subject: [PATCH 5/6] flights data task --- .../2-Data/01 - Flights Challenge.ipynb | 1201 + .../2-Data/01 - Flights Solution.ipynb | 1490 + 2-Regression/2-Data/flights.csv | 271941 +++++++++++++++ 3 files changed, 274632 insertions(+) create mode 100644 2-Regression/2-Data/01 - Flights Challenge.ipynb create mode 100644 2-Regression/2-Data/01 - Flights Solution.ipynb create mode 100644 2-Regression/2-Data/flights.csv diff --git a/2-Regression/2-Data/01 - Flights Challenge.ipynb b/2-Regression/2-Data/01 - Flights Challenge.ipynb new file mode 100644 index 0000000000..17a653b82e --- /dev/null +++ b/2-Regression/2-Data/01 - Flights Challenge.ipynb @@ -0,0 +1,1201 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Flights Data Exploration Challenge\n", + "\n", + "In this challenge, you'll explore a real-world dataset containing flights data from the US Department of Transportation.\n", + "\n", + "Let's start by loading and viewing the data." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "removing any null rows" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(271940, 20)\n", + "(269179, 20)\n", + "Year int64\n", + "Month int64\n", + "DayofMonth int64\n", + "DayOfWeek int64\n", + "Carrier object\n", + "OriginAirportID int64\n", + "OriginAirportName object\n", + "OriginCity object\n", + "OriginState object\n", + "DestAirportID int64\n", + "DestAirportName object\n", + "DestCity object\n", + "DestState object\n", + "CRSDepTime int64\n", + "DepDelay int64\n", + "DepDel15 float64\n", + "CRSArrTime int64\n", + "ArrDelay int64\n", + "ArrDel15 int64\n", + "Cancelled int64\n", + "dtype: object\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "from matplotlib import pyplot as plt\n", + "\n", + "df_flights = pd.read_csv('flights.csv')\n", + "df_flights = pd.DataFrame(df_flights)\n", + "\n", + "print(df_flights.shape)\n", + "df_flights = df_flights.dropna(axis=0, how='any')\n", + "print(df_flights.shape)\n", + "\n", + "print(df_flights.dtypes)\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "skim checking the data and dropping any outliers" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(12, 20)\n", + " Year Month DayofMonth DayOfWeek Carrier OriginAirportID \\\n", + "6537 2013 6 17 1 MQ 10821 \n", + "14320 2013 6 30 7 MQ 12451 \n", + "32883 2013 4 1 1 AA 13871 \n", + "95648 2013 4 19 5 HA 12892 \n", + "121919 2013 4 17 3 AA 14492 \n", + "180503 2013 4 3 3 AA 10397 \n", + "214288 2013 6 7 5 MQ 13931 \n", + "221784 2013 5 31 5 MQ 10693 \n", + "241527 2013 10 18 5 AA 14679 \n", + "251813 2013 7 2 2 AA 12889 \n", + "253058 2013 6 28 5 AA 11278 \n", + "255631 2013 6 17 1 AA 14771 \n", + "\n", + " OriginAirportName OriginCity \\\n", + "6537 Baltimore/Washington International Thurgood Ma... Baltimore \n", + "14320 Jacksonville International Jacksonville \n", + "32883 Eppley Airfield Omaha \n", + "95648 Los Angeles International Los Angeles \n", + "121919 Raleigh-Durham International Raleigh/Durham \n", + "180503 Hartsfield-Jackson Atlanta International Atlanta \n", + "214288 Norfolk International Norfolk \n", + "221784 Nashville International Nashville \n", + "241527 San Diego International San Diego \n", + "251813 McCarran International Las Vegas \n", + "253058 Ronald Reagan Washington National Washington \n", + "255631 San Francisco International San Francisco \n", + "\n", + " OriginState DestAirportID DestAirportName \\\n", + "6537 MD 13930 Chicago O'Hare International \n", + "14320 FL 13303 Miami International \n", + "32883 NE 11298 Dallas/Fort Worth International \n", + "95648 CA 12173 Honolulu International \n", + "121919 NC 13930 Chicago O'Hare International \n", + "180503 GA 13303 Miami International \n", + "214288 VA 13303 Miami International \n", + "221784 TN 13930 Chicago O'Hare International \n", + "241527 CA 13930 Chicago O'Hare International \n", + "251813 NV 11298 Dallas/Fort Worth International \n", + "253058 DC 11298 Dallas/Fort Worth International \n", + "255631 CA 11298 Dallas/Fort Worth International \n", + "\n", + " DestCity DestState CRSDepTime DepDelay DepDel15 \\\n", + "6537 Chicago IL 2010 1172 1.0 \n", + "14320 Miami FL 1540 977 1.0 \n", + "32883 Dallas/Fort Worth TX 840 1320 1.0 \n", + "95648 Honolulu HI 1040 1158 1.0 \n", + "121919 Chicago IL 1425 1305 1.0 \n", + "180503 Miami FL 755 1425 1.0 \n", + "214288 Miami FL 1900 1091 1.0 \n", + "221784 Chicago IL 1905 914 1.0 \n", + "241527 Chicago IL 930 1281 1.0 \n", + "251813 Dallas/Fort Worth TX 805 1386 1.0 \n", + "253058 Dallas/Fort Worth TX 1745 970 1.0 \n", + "255631 Dallas/Fort Worth TX 905 1366 1.0 \n", + "\n", + " CRSArrTime ArrDelay ArrDel15 Cancelled \n", + "6537 2125 1175 1 0 \n", + "14320 1705 977 1 0 \n", + "32883 1045 1301 1 0 \n", + "95648 1310 1172 1 0 \n", + "121919 1535 1440 1 0 \n", + "180503 950 1429 1 0 \n", + "214288 2125 1114 1 0 \n", + "221784 2045 907 1 0 \n", + "241527 1525 1267 1 0 \n", + "251813 1250 1394 1 0 \n", + "253058 2005 960 1 0 \n", + "255631 1435 1348 1 0 \n", + "(269179, 20)\n" + ] + }, + { + "data": { + "text/plain": [ + "(269167, 20)" + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mindelay = -900\n", + "maxdelay = 900\n", + "\n", + "outliers = df_flights.query(f'(DepDelay>{maxdelay} | DepDelay < {mindelay}) | (ArrDelay > {maxdelay} | ArrDelay < {mindelay})')\n", + "print(outliers.shape)\n", + "print(outliers)\n", + "\n", + "print(df_flights.shape)\n", + "df_flights = df_flights.drop(outliers.index)\n", + "df_flights.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "summary and visualisation of data" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 97, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Minimum:-63.00\n", + "Mean:10.40\n", + "Median:-1.00\n", + "Mode:-3.00\n", + "Maximum:865.00\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_12428\\3811281340.py:40: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + " fig.show()\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAlUAAAHgCAYAAACM6ZjpAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABWvUlEQVR4nO3deXjVZN7/8c/p3tINKG2ptLSyCMgmRbGKglIpqyI8jiIqKOJWRhDFER0BdRTFEUFFUGYE/SGizLgign3KIkrZCoiAIALK1oKCdAG6nvv3B09jD22hlNBD6ft1XbnkJPdJvkkg+ZjcyXEYY4wAAABwVjzcXQAAAMCFgFAFAABgA0IVAACADQhVAAAANiBUAQAA2IBQBQAAYANCFQAAgA0IVQAAADYgVAEAANiAUAWg1hoyZIhiY2OrZVmxsbEaMmSI9XnWrFlyOBxau3ZttSy/a9eu6tq1a7UsC6itCFUAyig54ZcMfn5+ioqKUlJSkl577TXl5ORUed4rVqzQ+PHjdeTIEfsKljR+/HiXmgMCAhQTE6O+fftq5syZys/Pt2U5W7Zs0fjx4/XLL7/YMj87nc+1AbWBl7sLAHD+evbZZxUXF6fCwkJlZmZq6dKlGjlypCZNmqTPP/9cbdu2PeN5rlixQs8884yGDBmi0NBQ22ueNm2aAgMDlZ+fr3379mnRokW65557NHnyZM2fP1/R0dFW2xkzZsjpdJ7R/Lds2aJnnnlGXbt2PaOrXNu2bZOHx7n9/9hT1fb111+f02UDIFQBOIWePXuqY8eO1ucxY8Zo8eLF6tOnj2688Ub9+OOP8vf3d2OFZf3P//yPwsLCrM9jx47V+++/r7vuuku33HKLVq5caU3z9vY+p7UYY5SXlyd/f3/5+vqe02Wdjo+Pj1uXD9QG3P4DcEauv/56Pf300/r11181e/Zsa/zGjRs1ZMgQXXzxxfLz81NkZKTuueceHTp0yGozfvx4jR49WpIUFxdn3aoruV01c+ZMXX/99QoPD5evr69atWqladOmnXXNgwYN0r333qtVq1YpJSXFGl9en6q5c+cqPj5eQUFBCg4OVps2bTRlyhRJJ26L3nLLLZKk6667zqp/6dKlkk70m+rTp48WLVqkjh07yt/fX2+99ZY1rXSfqhLHjh3T/fffr/r16ys4OFh33XWX/vjjD5c2DodD48ePL/Pd0vM8XW3l9ak6ePCghg4dqoiICPn5+aldu3Z69913Xdr88ssvcjgc+uc//6m3335bTZo0ka+vry6//HKtWbOm3O0N1FZcqQJwxu688049+eST+vrrrzVs2DBJUkpKinbu3Km7775bkZGR2rx5s95++21t3rxZK1eulMPhUP/+/fXTTz/pgw8+0KuvvmpdUWrQoIGkE7fuLr30Ut14443y8vLSF198oYceekhOp1PJyclnXfPbb7+tr7/+WjfccEO5bVJSUjRw4EB169ZNL730kiTpxx9/1HfffacRI0bo2muv1cMPP6zXXntNTz75pFq2bClJ1n+lE7f5Bg4cqPvvv1/Dhg3TJZdccsq6hg8frtDQUI0fP17btm3TtGnT9Ouvv2rp0qVyOByVXr/K1Fba8ePH1bVrV/38888aPny44uLiNG/ePA0ZMkRHjhzRiBEjXNrPmTNHOTk5uv/+++VwODRx4kT1799fO3fuPOdX/IAawwDASWbOnGkkmTVr1lTYJiQkxFx22WXW52PHjpVp88EHHxhJ5ptvvrHGvfzyy0aS2bVrV5n25c0jKSnJXHzxxaetedy4cUaS+e2338qd/scffxhJ5uabb7bGDR482DRu3Nj6PGLECBMcHGyKiooqXM68efOMJLNkyZIy0xo3bmwkmYULF5Y7bfDgwdbnkm0cHx9vCgoKrPETJ040ksxnn31mjZNkxo0bd9p5nqq2Ll26mC5dulifJ0+ebCSZ2bNnW+MKCgpMQkKCCQwMNNnZ2cYYY3bt2mUkmfr165vDhw9bbT/77DMjyXzxxRdllgXUVtz+A1AlgYGBLk8Blu5blZeXp99//11XXnmlJGndunWVmmfpeWRlZen3339Xly5dtHPnTmVlZZ11vZJO+eRiaGiojh496nKL8EzFxcUpKSmp0u3vu+8+lys9Dz74oLy8vLRgwYIq11AZCxYsUGRkpAYOHGiN8/b21sMPP6zc3FwtW7bMpf2tt96qunXrWp+vueYaSdLOnTvPaZ1ATUKoAlAlubm5CgoKsj4fPnxYI0aMUEREhPz9/dWgQQPFxcVJUqUD0XfffafExETVqVNHoaGhatCggZ588skzmsep6pXkUvPJHnroITVv3lw9e/ZUo0aNdM8992jhwoVntJySda6sZs2auXwODAxUw4YNz/lrEX799Vc1a9aszBOJJbcLf/31V5fxMTExLp9LAtbJ/b+A2ow+VQDO2N69e5WVlaWmTZta4/7yl79oxYoVGj16tNq3b6/AwEA5nU716NGjUq8t2LFjh7p166YWLVpo0qRJio6Olo+PjxYsWKBXX331jF99cLJNmzZJkkvNJwsPD9eGDRu0aNEiffXVV/rqq680c+ZM3XXXXWU6cFekOp+GLC4urrZleXp6ljveGFNtNQDnO0IVgDP2//7f/5Mk6zbXH3/8odTUVD3zzDMaO3as1W779u1lvltR5+svvvhC+fn5+vzzz12uiixZsuSc1FwRHx8f9e3bV3379pXT6dRDDz2kt956S08//bSaNm16Rp3HK2P79u267rrrrM+5ubnKyMhQr169rHF169Yt87LUgoICZWRkuIw7k9oaN26sjRs3yul0ulyt2rp1qzUdwJnh9h+AM7J48WI999xziouL06BBgyT9eRXj5KsWkydPLvP9OnXqSFKZkFDePLKysjRz5syzrnnOnDn617/+pYSEBHXr1q3CdqVf/yBJHh4e1gtOS97IXlH9VfX222+rsLDQ+jxt2jQVFRWpZ8+e1rgmTZrom2++KfO9k69UnUltvXr1UmZmpj788ENrXFFRkV5//XUFBgaqS5cuVVkdoFbjShWACn311VfaunWrioqKdODAAS1evFgpKSlq3LixPv/8c/n5+UmSgoODde2112rixIkqLCzURRddpK+//lq7du0qM8/4+HhJ0lNPPaXbbrtN3t7e6tu3r7p3725dJbr//vuVm5urGTNmKDw8vMwVmVP5z3/+o8DAQBUUFFhvVP/uu+/Url07zZs375Tfvffee3X48GFdf/31atSokX799Ve9/vrrat++vdXXqH379vL09NRLL72krKws+fr6Wu/WqoqCggJ169ZNf/nLX7Rt2za9+eab6ty5s2688UaXuh544AENGDBAN9xwg77//nstWrTI5SWnZ1rbfffdp7feektDhgxRenq6YmNj9Z///EffffedJk+efMq+ZwAq4OanDwGch0oe9y8ZfHx8TGRkpLnhhhvMlClTrMftS9u7d6+5+eabTWhoqAkJCTG33HKL2b9/f7mvA3juuefMRRddZDw8PFxer/D555+btm3bGj8/PxMbG2teeukl884771T4CobSSl6pUDL4+fmZRo0amT59+ph33nnH5OXllfnOya9U+M9//mO6d+9uwsPDjY+Pj4mJiTH333+/ycjIcPnejBkzzMUXX2w8PT1dXmHQuHFj07t373Lrq+iVCsuWLTP33XefqVu3rgkMDDSDBg0yhw4dcvlucXGx+dvf/mbCwsJMQECASUpKMj///HOZeZ6qtpNfqWCMMQcOHDB33323CQsLMz4+PqZNmzZm5syZLm1KXqnw8ssvl1mn8vYtUJs5jKGXIQAAwNmiTxUAAIANCFUAAAA2IFQBAADYgFAFAABgA0IVAACADQhVAAAANiBUAQAA2IBQBQAAYANCFQAAgA0IVQAAADYgVAEAANiAUAUAAGADQhUAAIANCFUAAAA2IFQBAADYgFAFAABgA0IVAACADQhVAAAANiBUAQAA2IBQBQAAYANCFQAAgA0IVQAAADYgVAEAANiAUAUAAGADQhUAAIANCFUAAAA2IFQBAADYgFAFAABgA0IVAACADQhVAAAANiBUAQAA2MDL3QXUJk6nU/v371dQUJAcDoe7ywEAAJVgjFFOTo6ioqLk4VHx9ShCVTXav3+/oqOj3V0GAACogj179qhRo0YVTidUVaOgoCBJJ3ZKcHCwbfN94403lJOTo6CgIA0fPty2+Z5eC0kZ0j5J3RpKW7eWHquGkrZWYzUAgNrrXJ4Ls7OzFR0dbZ3HK0KoqkYlt/yCg4NtDVV+fn4qLCyUn5+frfM9vf+7BJotycND+r9le5SaWp3VAABqr+o4F56u6w4d1QEAAGxAqAIAALABoQoAAMAG9Km6AHTo0EH5+fny9fWt5iUPk9IWSlmShvUoPVZZkkKquRoAQO3lvnPhnxzGGOO2pdcy2dnZCgkJUVZWVjV3KAcAAFVV2fM3V6ouELFPfOnuEqrklxd7u7sEAABsQZ8qAAAAGxCqAAAAbMDtvwvApEmTdLd/jo4ab32U167alps2ZrAahhyS9koZLesrIfldSdLeMderOMRfnlnH1WjC4mqrBwBQe02aNMl6o/qoUaPcUgNXqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbMAb1S8A/fv31+1vr5BTjmpd7iMfPqq2h3+S8qSNfZtb48M+3CDj6SFHsbNa6wEA1F79+/dXUVGRvLzcF20IVReA2NhY7XdurvblrtzZVivV9sSHmD/H++08XO21AABqt9jYWHeXwO0/AAAAOxCqAAAAbMDtvwvAL7/8oiiPLDnlUKYzuNqWe+XFG//sU/VTc62MOXErMO/ielafKm4FAgCqwy+//GL1qXLXrUBC1QXg448/VpJvjo4ab32U167alvvqra+oYcghaa+U0bK+EpLflST9fmt7FYf4yzPruBpNWFxt9QAAaq+PP/5YOTk5CgoK0qhRo9xSA7f/AAAAbECoAgAAsIFbQ9WECRN0+eWXKygoSOHh4erXr5+2bdvm0iYvL0/JycmqX7++AgMDNWDAAB04cMClze7du9W7d28FBAQoPDxco0ePVlFRkUubpUuXqkOHDvL19VXTpk01a9asMvVMnTpVsbGx8vPzU6dOnbR69eozrgUAANRObg1Vy5YtU3JyslauXKmUlBQVFhaqe/fuOnr0qNXmkUce0RdffKF58+Zp2bJl2r9/v/r3729NLy4uVu/evVVQUKAVK1bo3Xff1axZszR27Firza5du9S7d29dd9112rBhg0aOHKl7771XixYtstp8+OGHGjVqlMaNG6d169apXbt2SkpK0sGDBytdCwAAqL3c2lF94cKFLp9nzZql8PBwpaen69prr1VWVpb+/e9/a86cObr++uslSTNnzlTLli21cuVKXXnllfr666+1ZcsW/e///q8iIiLUvn17Pffcc/rb3/6m8ePHy8fHR9OnT1dcXJxeeeUVSVLLli317bff6tVXX1VSUpIkadKkSRo2bJjuvvtuSdL06dP15Zdf6p133tETTzxRqVoAAEDtdV71qcrKypIk1atXT5KUnp6uwsJCJSYmWm1atGihmJgYpaWlSZLS0tLUpk0bRUREWG2SkpKUnZ2tzZs3W21Kz6OkTck8CgoKlJ6e7tLGw8NDiYmJVpvK1HKy/Px8ZWdnuwwAAODCdN6EKqfTqZEjR+rqq69W69atJUmZmZny8fFRaGioS9uIiAhlZmZabUoHqpLpJdNO1SY7O1vHjx/X77//ruLi4nLblJ7H6Wo52YQJExQSEmIN0dHRldwaAACgpjlvQlVycrI2bdqkuXPnursU24wZM0ZZWVnWsGfPHneXBAAAzpHz4uWfw4cP1/z58/XNN9+oUaNG1vjIyEgVFBToyJEjLleIDhw4oMjISKvNyU/plTyRV7rNyU/pHThwQMHBwfL395enp6c8PT3LbVN6Hqer5WS+vr7y9fU9gy0BAABqKreGKmOM/vrXv+qTTz7R0qVLFRcX5zI9Pj5e3t7eSk1N1YABAyRJ27Zt0+7du5WQkCBJSkhI0PPPP6+DBw8qPDxckpSSkqLg4GC1atXKarNgwQKXeaekpFjz8PHxUXx8vFJTU9WvXz9JJ25Hpqamavjw4ZWuxV1GjRql2Ce+rPblJkx4988PyX/+kbeoAwCqm7veol6aW0NVcnKy5syZo88++0xBQUFW36SQkBD5+/srJCREQ4cO1ahRo1SvXj0FBwfrr3/9qxISEqyn7bp3765WrVrpzjvv1MSJE5WZmam///3vSk5Otq4SPfDAA3rjjTf0+OOP65577tHixYv10Ucf6csv/wwio0aN0uDBg9WxY0ddccUVmjx5so4ePWo9DViZWgAAQO3l1lA1bdo0SVLXrl1dxs+cOVNDhgyRJL366qvy8PDQgAEDlJ+fr6SkJL355ptWW09PT82fP18PPvigEhISVKdOHQ0ePFjPPvus1SYuLk5ffvmlHnnkEU2ZMkWNGjXSv/71L+t1CpJ066236rffftPYsWOVmZmp9u3ba+HChS6d109XCwAAqL0cxhjj7iJqi+zsbIWEhCgrK0vBwcG2ztsdt//s8MuLvd1dAgAAp1TZ8/d50VEdZ2fp0qW63HuPCo2nNhRFVdtyR3Sbo2sPpUtZ0jf/L15TOt8uSTrSrZmcfl7yyCtSaOr2aqsHAFB7LV26VPn5+fL19S1zB6y6EKouAOvWrVNrrxwdNd7VGqpuu2KRGoYckvZKUY/9boWq3CuiVRziL8+s44QqAEC1WLdunXJychQUFOS2UHXevKcKAACgJiNUAQAA2IBQBQAAYANCFQAAgA0IVQAAADYgVAEAANiAUAUAAGADQhUAAIANePnnBSA2NlYLN/yqPFO9u3PVztZKOLZRjt+kVTGtrfG+Ow/LWcdHHkcLqrUeAEDtFRsbq2PHjikgIMBtNfDbf9WI3/4ri9/+AwCc7yp7/q7S7b+dO3dWuTAAAIALUZVCVdOmTXXddddp9uzZysvLs7smAACAGqdKoWrdunVq27atRo0apcjISN1///1avXq13bUBAADUGGfVp6qoqEiff/65Zs2apYULF6p58+a65557dOedd6pBgwZ21nlBOFd9qt59912t35mpPOOthQWX2Dbf05kz7Em1L94mHZA23HGJbh/4giQpc1gnOQN95ZGbr8gZq045D/pUAQDs8O677+ro0aOqU6eOBg8ebOu8z2mfqhJeXl7q37+/5s2bp5deekk///yzHnvsMUVHR+uuu+5SRkbG2cwelXTo0CHV9chTsEf13oqNC9ungOb5CojLV9zhfdb4orA6KowIUlFYnWqtBwBQex06dEi//fabDh065LYazipUrV27Vg899JAaNmyoSZMm6bHHHtOOHTuUkpKi/fv366abbrKrTgAAgPNalV5sNGnSJM2cOVPbtm1Tr1699N5776lXr17y8DiR0eLi4jRr1izFxsbaWSsAAMB5q0qhatq0abrnnns0ZMgQNWzYsNw24eHh+ve//31WxQEAANQUVQpV27dvP20bHx8f2zuKAQAAnK+q1Kdq5syZmjdvXpnx8+bN07vvvnvWRQEAANQ0VQpVEyZMUFhYWJnx4eHheuGFF866KAAAgJqmSqFq9+7diouLKzO+cePG2r17d6Xn880336hv376KioqSw+HQp59+6jJ9yJAhcjgcLkOPHj1c2hw+fFiDBg1ScHCwQkNDNXToUOXm5rq02bhxo6655hr5+fkpOjpaEydOLFPLvHnz1KJFC/n5+alNmzZasGCBy3RjjMaOHauGDRvK399fiYmJlboNCgAAaocqharw8HBt3LixzPjvv/9e9evXr/R8jh49qnbt2mnq1KkVtunRo4cyMjKs4YMPPnCZPmjQIG3evFkpKSmaP3++vvnmG913333W9OzsbHXv3l2NGzdWenq6Xn75ZY0fP15vv/221WbFihUaOHCghg4dqvXr16tfv37q16+fNm3aZLWZOHGiXnvtNU2fPl2rVq1SnTp1lJSUxM/0AAAASVXsqD5w4EA9/PDDCgoK0rXXXitJWrZsmUaMGKHbbrut0vPp2bOnevbseco2vr6+ioyMLHfajz/+qIULF2rNmjXq2LGjJOn1119Xr1699M9//lNRUVF6//33VVBQoHfeeUc+Pj669NJLtWHDBk2aNMkKX1OmTFGPHj00evRoSdJzzz2nlJQUvfHGG5o+fbqMMZo8ebL+/ve/W+/eeu+99xQREaFPP/20wnXOz89Xfn6+9Tk7O7vS2+ZMdOnSRWM/2aBC43lO5l+R11IHqvPv62VypO+uvswaH5K6XcbHS46ComqtBwBQe3Xp0kUFBQXy8fFxWw1VulL13HPPqVOnTurWrZv8/f3l7++v7t276/rrr7e9T9XSpUsVHh6uSy65RA8++KDLm1LT0tIUGhpqBSpJSkxMlIeHh1atWmW1ufbaa102clJSkrZt26Y//vjDapOYmOiy3KSkJKWlpUmSdu3apczMTJc2ISEh6tSpk9WmPBMmTFBISIg1REdHn8WWqFh8fLw2F0Xqp+Lq/WmgD1b3UPLOMRr+2xh90P7P27JBq/co+NtdClq9p1rrAQDUXvHx8UpISFB8fLzbaqhSqPLx8dGHH36orVu36v3339fHH3+sHTt2WFeD7NKjRw+99957Sk1N1UsvvaRly5apZ8+eKi4uliRlZmYqPDzc5TteXl6qV6+eMjMzrTYREREubUo+n65N6emlv1dem/KMGTNGWVlZ1rBnDyEDAIALVZVu/5Vo3ry5mjdvblctZZS+rdamTRu1bdtWTZo00dKlS9WtW7dztly7+Pr6ytfX191lAACAalClUFVcXKxZs2YpNTVVBw8elNPpdJm+ePFiW4o72cUXX6ywsDD9/PPP6tatmyIjI3Xw4EGXNkVFRTp8+LDVDysyMlIHDhxwaVPy+XRtSk8vGVf6DfIHDhxQ+/bt7VvBKsrJyVGACmQkHVf13UtuEHRY4ccPS0XSwdx6+i2wniSpKMhXcjgkY+SVk3+auQAAcPZycnJkjJHD4VBQUJBbaqhSqBoxYoRmzZql3r17q3Xr1nI4HHbXVa69e/fq0KFDVrBJSEjQkSNHlJ6ebt1DXbx4sZxOpzp16mS1eeqpp1RYWChvb29JUkpKii655BLVrVvXapOamqqRI0day0pJSVFCQoKkE79lGBkZqdTUVCtEZWdna9WqVXrwwQerY9VPacaMGbrVP0dHjbc+ymtXbcv9fPgjahhySNorZbSsr4TkEy9+zRx+tYpD/OWZdVyNJpybgA0AQGkzZsxQTk6OgoKCNGrUKLfUUKVQNXfuXH300Ufq1avXWS08NzdXP//8s/V5165d2rBhg+rVq6d69erpmWee0YABAxQZGakdO3bo8ccfV9OmTZWUlCRJatmypXr06KFhw4Zp+vTpKiws1PDhw3XbbbcpKipKknT77bfrmWee0dChQ/W3v/1NmzZt0pQpU/Tqq69ayx0xYoS6dOmiV155Rb1799bcuXO1du1a67ULDodDI0eO1D/+8Q81a9ZMcXFxevrppxUVFaV+/fqd1TYAAAAXhiqFKh8fHzVt2vSsF7527Vpdd9111ueSZDl48GBNmzZNGzdu1LvvvqsjR44oKipK3bt313PPPefST+n999/X8OHD1a1bN3l4eGjAgAF67bXXrOkhISH6+uuvlZycrPj4eIWFhWns2LEu77K66qqrNGfOHP3973/Xk08+qWbNmunTTz9V69atrTaPP/64jh49qvvuu09HjhxR586dtXDhQvn5+Z31dgAAADVflULVo48+qilTpuiNN944q1t/Xbt2lTGmwumLFi067Tzq1aunOXPmnLJN27ZttXz58lO2ueWWW3TLLbdUON3hcOjZZ5/Vs88+e9qaAABA7VOlUPXtt99qyZIl+uqrr3TppZdafZVKfPzxx7YUBwAAUFNUKVSFhobq5ptvtrsWAACAGqtKoWrmzJl21wEAAFCjVemN6tKJ90H97//+r9566y3l5ORIkvbv36/c3FzbigMAAKgpqnSl6tdff1WPHj20e/du5efn64YbblBQUJBeeukl5efna/r06XbXCQAAcF6r0pWqESNGqGPHjvrjjz/k7+9vjb/55puVmppqW3EAAAA1RZWuVC1fvlwrVqwo8+PJsbGx2rdvny2FofLuuusuJb6yVE5Vz5vtSwya8bxic/bLFEq/3hZljY+YsUrGwyGHs+LXZQAAYKe77rpLTqdTHh5V7tl01qoUqpxOp4qLi8uM37t3r9t+b6c2CwsL0xHjf/qGNtv5eyPtVKMTH+r/Od7796PVXgsAoHYLCwtzdwlVu/3XvXt3TZ482frscDiUm5urcePGnfVP1wAAANREVbpS9corrygpKUmtWrVSXl6ebr/9dm3fvl1hYWH64IMP7K4RAADgvFelUNWoUSN9//33mjt3rjZu3Kjc3FwNHTpUgwYNcum4jurxww8/qJnnbyqWh3YW1z/9F2xyY7ulSvh9o3RMSvuurT5v1VWSdLRdlJw+nvIoKFad7/dXWz0AgNrrhx9+UGFhoby9vdWmTRu31FClUCVJXl5euuOOO+ysBVWUkpKizj45Omq8qzVUjek1Uw1DDkl7pa7/SLdC1R+9Wqg4xF+eWccJVQCAapGSkqKcnBwFBQXVrFD13nvvnXL6XXfdVaViAAAAaqoqhaoRI0a4fC4sLNSxY8fk4+OjgIAAQhUAAKh1qvT03x9//OEy5Obmatu2bercuTMd1QEAQK1k2xuymjVrphdffLHMVSwAAIDawNbXjnp5eWn/fjomAwCA2qdKfao+//xzl8/GGGVkZOiNN97Q1VdfbUthAAAANUmVQlW/fv1cPjscDjVo0EDXX3+9XnnlFTvqAgAAqFGq/Nt/AAAA+FOVX/6J80dgYKAys/N03HhX63J/y6mr+kePSAel3wLrWuM9c/Jd/gsAwLkWGBjo8l93cBhjzJl+adSoUZVuO2nSpDOd/QUrOztbISEhysrKUnBwsK3zjn3iS1vnV11+ebG3u0sAAOCUKnv+rtKVqvXr12v9+vUqLCzUJZdcIkn66aef5OnpqQ4dOljtHA5HVWYPAABQ41TplQp9+/bVtddeq71792rdunVat26d9uzZo+uuu059+vTRkiVLtGTJEi1evPiU8/nmm2/Ut29fRUVFyeFw6NNPP3WZbozR2LFj1bBhQ/n7+ysxMVHbt293aXP48GENGjRIwcHBCg0N1dChQ5Wbm+vSZuPGjbrmmmvk5+en6OhoTZw4sUwt8+bNU4sWLeTn56c2bdpowYIFZ1wLAACovaoUql555RVNmDBBdev+2Y+mbt26+sc//nFGT/8dPXpU7dq109SpU8udPnHiRL322muaPn26Vq1apTp16igpKUl5eXlWm0GDBmnz5s1KSUnR/Pnz9c033+i+++6zpmdnZ6t79+5q3Lix0tPT9fLLL2v8+PF6++23rTYrVqzQwIEDNXToUK1fv179+vVTv379tGnTpjOqBQAA1F5V6lMVFBSkL774Ql27dnUZv2TJEt14443Kyck580IcDn3yySfW6xqMMYqKitKjjz6qxx57TJKUlZWliIgIzZo1S7fddpt+/PFHtWrVSmvWrFHHjh0lSQsXLlSvXr20d+9eRUVFadq0aXrqqaeUmZkpHx8fSdITTzyhTz/9VFu3bpUk3XrrrTp69Kjmz59v1XPllVeqffv2mj59eqVqKU9+fr7y8//srJ2dna3o6Gjb+1R98cUX+u+aXSownlpRGGvbfE/nhZvfUOfs9TKHpe8mXKYnewyXJB26ubWc/j7yOF6g+p9sOuU86FMFALDDF198oby8PPn5+alv3762zruyfaqqdKXq5ptv1t13362PP/5Ye/fu1d69e/Xf//5XQ4cOVf/+/atcdGm7du1SZmamEhMTrXEhISHq1KmT0tLSJElpaWkKDQ21ApUkJSYmysPDQ6tWrbLaXHvttVagkqSkpCRt27ZNf/zxh9Wm9HJK2pQspzK1lGfChAkKCQmxhujo6KpujlPavn274jz/UCPPrHMy/4pc12KNYm44oMZXH9B1O9ZY44+3CNextg11vEV4tdYDAKi9tm/fri1btri1a06VQtX06dPVs2dP3X777WrcuLEaN26s22+/XT169NCbb75pS2GZmZmSpIiICJfxERER1rTMzEyFh7ueuL28vFSvXj2XNuXNo/QyKmpTevrpainPmDFjlJWVZQ179uw5zVoDAICaqkpP/wUEBOjNN9/Uyy+/rB07dkiSmjRpojp16thaXE3n6+srX19fd5cBAACqwVn9oHJGRoYyMjLUrFkz1alTR1XonlWhyMhISdKBAwdcxh84cMCaFhkZqYMHD7pMLyoq0uHDh13alDeP0suoqE3p6aerBQAA1G5VClWHDh1St27d1Lx5c/Xq1UsZGRmSpKFDh+rRRx+1pbC4uDhFRkYqNTXVGpedna1Vq1YpISFBkpSQkKAjR44oPT3darN48WI5nU516tTJavPNN9+osLDQapOSkqJLLrnEenoxISHBZTklbUqWU5laAABA7ValUPXII4/I29tbu3fvVkBAgDX+1ltv1cKFCys9n9zcXG3YsEEbNmyQdKJD+IYNG7R79245HA6NHDlS//jHP/T555/rhx9+0F133aWoqCjrCcGWLVuqR48eGjZsmFavXq3vvvtOw4cP12233aaoqChJ0u233y4fHx8NHTpUmzdv1ocffqgpU6a4vBV+xIgRWrhwoV555RVt3bpV48eP19q1azV8+Imn2SpTCwAAqN2q1Kfq66+/1qJFi9SoUSOX8c2aNdOvv/5a6fmsXbtW1113nfW5JOgMHjxYs2bN0uOPP66jR4/qvvvu05EjR9S5c2ctXLhQfn5+1nfef/99DR8+XN26dZOHh4cGDBig1157zZoeEhKir7/+WsnJyYqPj1dYWJjGjh3r8i6rq666SnPmzNHf//53Pfnkk2rWrJk+/fRTtW7d2mpTmVoAAEDtVaVQdfToUZcrVCUOHz58Rh2zu3btesp+WA6HQ88++6yeffbZCtvUq1dPc+bMOeVy2rZtq+XLl5+yzS233KJbbrnlrGoBAAC1V5Vu/11zzTV67733rM8Oh0NOp1MTJ050ufIEAABQW1TpStXEiRPVrVs3rV27VgUFBXr88ce1efNmHT58WN99953dNeI0WrdurXeXb1e+8azW5X6+oYuuPZIu/SF90yreGl9nw345A7zlcazwFN8GAMA+rVu3tt6o7i5V+pka6cTPtLzxxhv6/vvvlZubqw4dOig5OVkNGza0u8YLRmVfc18VsU98aev8qgs/UwMAON9V9vx9xleqCgsL1aNHD02fPl1PPfXUWRUJAABwoTjjPlXe3t7auHHjuagFAACgxqpSR/U77rhD//73v+2uBQAAoMaqUkf1oqIivfPOO/rf//1fxcfHl/nNv0mTJtlSHCrnjTfe0CC/P3TM+OiT/Nan/4JNUkc9oDj/fTL7pV+uukjdhk2XJO0b1UXFwb7yzM7XRZOWVVs9AIDa64033lBOTo6CgoKsl3dXtzMKVTt37lRsbKw2bdqkDh06SJJ++uknlzYOh8O+6lApBQUF8nE4Vajial1ugO9xeQQZqY4UUHDcGm98PWX8vGXyi6q1HgBA7VVQUGAN7nJGoapZs2bKyMjQkiVLJJ34WZrXXntNERER56Q4AACAmuKM+lSd/PaFr776SkePHrW1IAAAgJqoSh3VS1TxFVcAAAAXnDMKVQ6Ho0yfKfpQAQAAnGGfKmOMhgwZYv1ocl5enh544IEyT/99/PHH9lUIAABQA5xRqBo8eLDL5zvuuMPWYgAAAGqqMwpVM2fOPFd1AAAA1Ghn1VEdAAAAJ1Tpjeo4v/Tp00f3zVqlomrOyE99kqyOh7ZIx6W1Sa2s8fU+2STj7SFHobNa6wEA1F59+vRRYWGhvL293VYDoeoC0Lx5c/3i3F7ty1289Qot1hUnPjT9c3zA1oPVXgsAoHZr3ry5u0vg9h8AAIAdCFUAAAA24PbfBWD//v1q4JErp3HokKlz+i/YpPVFP6vFkV1SgbR1T5w2RZ64B5h/UbDk6SEVO+W7L7va6gEA1F779+9XcXGxPD09FRUV5ZYaCFUXgLlz56qPb46OGm99lNeu2pY7467n1DDkkLRXymhZXwnJ70qSfruro4pD/OWZdVyNJiyutnoAALXX3LlzlZOTo6CgII0aNcotNXD7DwAAwAbndagaP3689XuDJUOLFi2s6Xl5eUpOTlb9+vUVGBioAQMG6MCBAy7z2L17t3r37q2AgACFh4dr9OjRKioqcmmzdOlSdejQQb6+vmratKlmzZpVppapU6cqNjZWfn5+6tSpk1avXn1O1hkAANRM53WokqRLL71UGRkZ1vDtt99a0x555BF98cUXmjdvnpYtW6b9+/erf//+1vTi4mL17t1bBQUFWrFihd59913NmjVLY8eOtdrs2rVLvXv31nXXXacNGzZo5MiRuvfee7Vo0SKrzYcffqhRo0Zp3LhxWrdundq1a6ekpCQdPMirAwAAwAnnfajy8vJSZGSkNYSFhUmSsrKy9O9//1uTJk3S9ddfr/j4eM2cOVMrVqzQypUrJUlff/21tmzZotmzZ6t9+/bq2bOnnnvuOU2dOlUFBQWSpOnTpysuLk6vvPKKWrZsqeHDh+t//ud/9Oqrr1o1TJo0ScOGDdPdd9+tVq1aafr06QoICNA777xzytrz8/OVnZ3tMgAAgAvTeR+qtm/frqioKF188cUaNGiQdu/eLUlKT09XYWGhEhMTrbYtWrRQTEyM0tLSJElpaWlq06aNIiIirDZJSUnKzs7W5s2brTal51HSpmQeBQUFSk9Pd2nj4eGhxMREq01FJkyYoJCQEGuIjo4+iy0BAADOZ+d1qOrUqZNmzZqlhQsXatq0adq1a5euueYa5eTkKDMzUz4+PgoNDXX5TkREhDIzMyVJmZmZLoGqZHrJtFO1yc7O1vHjx/X777+ruLi43DYl86jImDFjlJWVZQ179uw5420AAABqhvP6lQo9e/a0/ty2bVt16tRJjRs31kcffSR/f383VlY5vr6+8vX1dXcZAACgGpzXV6pOFhoaqubNm+vnn39WZGSkCgoKdOTIEZc2Bw4cUGRkpCQpMjKyzNOAJZ9P1yY4OFj+/v4KCwuTp6dnuW1K5gEAAFCjQlVubq527Nihhg0bKj4+Xt7e3kpNTbWmb9u2Tbt371ZCQoIkKSEhQT/88IPLU3opKSkKDg5Wq1atrDal51HSpmQePj4+io+Pd2njdDqVmppqtQEAAHAYY4y7i6jIY489pr59+6px48bav3+/xo0bpw0bNmjLli1q0KCBHnzwQS1YsECzZs1ScHCw/vrXv0qSVqxYIenEKxXat2+vqKgoTZw4UZmZmbrzzjt177336oUXXpB04pUKrVu3VnJysu655x4tXrxYDz/8sL788kslJSVJOvFKhcGDB+utt97SFVdcocmTJ+ujjz7S1q1by/S1OpXs7GyFhIQoKytLwcHBtm2n/Px8tR63SEZSkTxtm+/p1PE5pjoFxyQ5dDTfX0d9AyRJTh9PyeGQjJFHQfEp5/HLi72roVIAwIUuPz/f+rPdXW8qe/4+r/tU7d27VwMHDtShQ4fUoEEDde7cWStXrlSDBg0kSa+++qo8PDw0YMAA5efnKykpSW+++ab1fU9PT82fP18PPvigEhISVKdOHQ0ePFjPPvus1SYuLk5ffvmlHnnkEU2ZMkWNGjXSv/71LytQSdKtt96q3377TWPHjlVmZqbat2+vhQsXnlGgOpd8fX1VWI1hqsTRggAdVcD/FfHn+NMFKQAA7HY+9GE+r69UXWjO1ZUqSYp94ktb51dduFIFADjfVfb8XaP6VAEAAJyvzuvbf6ictLQ0tffap0J5anNR9T2ROLTzJ7r20DopW/rmkw769xU3S5KyO8fJ6eclj7wiBX+7q9rqAQDUXmlpacrPz5evr6/bHiQjVF0A0tLSdJl3jo4a72oNVfde86kahhyS9krNn9z9Z6i6Jk7FIf7yzDpOqAIAVIu0tDTl5OQoKCjIbaGK238AAAA2IFQBAADYgFAFAABgA0IVAACADeioDreqie/X4t1aAIDycKUKAADABoQqAAAAGxCqAAAAbECfqgtAw4YNtSPLqTxTvbtz074m8t+ZJ/0mbYpsYo332Zet4iN58jxaUK31AABqr4YNGyokJEQBAQFuq4EfVK5G/KDyhYGO6gBQu/CDygAAANWIUAUAAGADQhUAAIAN6Kh+Afjggw/U23ef8oyXUguaVdtyZ9z1rC7P3yz9Jq1JvlTDBoyVJB28q6OK6/jI82iBwt9bW231AABqrw8++EDHjh1TQECABg4c6JYaCFUXgIyMDIV7HNVR412ty2190Q6FhhyV9kqtM3dY4wsuClZxiL88s45Xaz0AgNorIyNDOTk5CgoKclsN3P4DAACwAaEKAADABoQqAAAAGxCqAAAAbECoOkNTp05VbGys/Pz81KlTJ61evdrdJQEAgPMAT/+dgQ8//FCjRo3S9OnT1alTJ02ePFlJSUnatm2bwsPD3V0eqklN/EkgfloHAM49rlSdgUmTJmnYsGG6++671apVK02fPl0BAQF655133F0aAABwM65UVVJBQYHS09M1ZswYa5yHh4cSExOVlpZW7nfy8/OVn59vfc7KypJ04ocZ7ZSXl6e8vDzlq1jO/GO2zvtUcrKdquOQlCPlGKe1bJOdLTkKZbKPV2s9qFjMI/PcXcIZ2/RMkrtLAFCDlJwLvb29bT/PlszPGHPqhgaVsm/fPiPJrFixwmX86NGjzRVXXFHud8aNG2ckMTAwMDAwMFwAw549e06ZFbhSdQ6NGTNGo0aNsj47nU4dPnxY9evXl8PhcGNl9snOzlZ0dLT27Nmj4OBgd5dTK7EP3I99cH5gP7jfhboPjDHKyclRVFTUKdsRqiopLCxMnp6eOnDggMv4AwcOKDIystzv+Pr6ytfX12VcaGjouSrRrYKDgy+of0A1EfvA/dgH5wf2g/tdiPsgJCTktG3oqF5JPj4+io+PV2pqqjXO6XQqNTVVCQkJbqwMAACcD7hSdQZGjRqlwYMHq2PHjrriiis0efJkHT16VHfffbe7SwMAAG5GqDoDt956q3777TeNHTtWmZmZat++vRYuXKiIiAh3l+Y2vr6+GjduXJnbnKg+7AP3Yx+cH9gP7lfb94HDmNM9HwgAAIDToU8VAACADQhVAAAANiBUAQAA2IBQBQAAYANCFQAAgA0IVTgrU6dOVWxsrPz8/NSpUyetXr3a3SVdECZMmKDLL79cQUFBCg8PV79+/bRt2zaXNnl5eUpOTlb9+vUVGBioAQMGlHnj/+7du9W7d28FBAQoPDxco0ePVlFRUXWuygXjxRdflMPh0MiRI61x7INzb9++fbrjjjtUv359+fv7q02bNlq7dq013RijsWPHqmHDhvL391diYqK2b9/uMo/Dhw9r0KBBCg4OVmhoqIYOHarc3NzqXpUaq7i4WE8//bTi4uLk7++vJk2a6LnnnnP5cWH2w/+x4beGUUvNnTvX+Pj4mHfeecds3rzZDBs2zISGhpoDBw64u7QaLykpycycOdNs2rTJbNiwwfTq1cvExMSY3Nxcq80DDzxgoqOjTWpqqlm7dq258sorzVVXXWVNLyoqMq1btzaJiYlm/fr1ZsGCBSYsLMyMGTPGHatUo61evdrExsaatm3bmhEjRljj2Qfn1uHDh03jxo3NkCFDzKpVq8zOnTvNokWLzM8//2y1efHFF01ISIj59NNPzffff29uvPFGExcXZ44fP2616dGjh2nXrp1ZuXKlWb58uWnatKkZOHCgO1apRnr++edN/fr1zfz5882uXbvMvHnzTGBgoJkyZYrVhv1wAqEKVXbFFVeY5ORk63NxcbGJiooyEyZMcGNVF6aDBw8aSWbZsmXGGGOOHDlivL29zbx586w2P/74o5Fk0tLSjDHGLFiwwHh4eJjMzEyrzbRp00xwcLDJz8+v3hWowXJyckyzZs1MSkqK6dKlixWq2Afn3t/+9jfTuXPnCqc7nU4TGRlpXn75ZWvckSNHjK+vr/nggw+MMcZs2bLFSDJr1qyx2nz11VfG4XCYffv2nbviLyC9e/c299xzj8u4/v37m0GDBhlj2A+lcfsPVVJQUKD09HQlJiZa4zw8PJSYmKi0tDQ3VnZhysrKkiTVq1dPkpSenq7CwkKX7d+iRQvFxMRY2z8tLU1t2rRxeeN/UlKSsrOztXnz5mqsvmZLTk5W7969Xba1xD6oDp9//rk6duyoW265ReHh4brssss0Y8YMa/quXbuUmZnpsg9CQkLUqVMnl30QGhqqjh07Wm0SExPl4eGhVatWVd/K1GBXXXWVUlNT9dNPP0mSvv/+e3377bfq2bOnJPZDafxMDark999/V3FxcZmf6ImIiNDWrVvdVNWFyel0auTIkbr66qvVunVrSVJmZqZ8fHwUGhrq0jYiIkKZmZlWm/L2T8k0nN7cuXO1bt06rVmzpsw09sG5t3PnTk2bNk2jRo3Sk08+qTVr1ujhhx+Wj4+PBg8ebG3D8rZx6X0QHh7uMt3Ly0v16tVjH1TSE088oezsbLVo0UKenp4qLi7W888/r0GDBkkS+6EUQhVwnktOTtamTZv07bffuruUWmXPnj0aMWKEUlJS5Ofn5+5yaiWn06mOHTvqhRdekCRddtll2rRpk6ZPn67Bgwe7ubra46OPPtL777+vOXPm6NJLL9WGDRs0cuRIRUVFsR9Owu0/VElYWJg8PT3LPOl04MABRUZGuqmqC8/w4cM1f/58LVmyRI0aNbLGR0ZGqqCgQEeOHHFpX3r7R0ZGlrt/Sqbh1NLT03Xw4EF16NBBXl5e8vLy0rJly/Taa6/Jy8tLERER7INzrGHDhmrVqpXLuJYtW2r37t2S/tyGpzoORUZG6uDBgy7Ti4qKdPjwYfZBJY0ePVpPPPGEbrvtNrVp00Z33nmnHnnkEU2YMEES+6E0QhWqxMfHR/Hx8UpNTbXGOZ1OpaamKiEhwY2VXRiMMRo+fLg++eQTLV68WHFxcS7T4+Pj5e3t7bL9t23bpt27d1vbPyEhQT/88IPLgSwlJUXBwcFlTlQoq1u3bvrhhx+0YcMGa+jYsaMGDRpk/Zl9cG5dffXVZV4l8tNPP6lx48aSpLi4OEVGRrrsg+zsbK1atcplHxw5ckTp6elWm8WLF8vpdKpTp07VsBY137Fjx+Th4RoXPD095XQ6JbEfXLi7pzxqrrlz5xpfX18za9Yss2XLFnPfffeZ0NBQlyedUDUPPvigCQkJMUuXLjUZGRnWcOzYMavNAw88YGJiYszixYvN2rVrTUJCgklISLCmlzzO3717d7NhwwazcOFC06BBAx7nPwuln/4zhn1wrq1evdp4eXmZ559/3mzfvt28//77JiAgwMyePdtq8+KLL5rQ0FDz2WefmY0bN5qbbrqp3Ef5L7vsMrNq1Srz7bffmmbNml1wj/KfS4MHDzYXXXSR9UqFjz/+2ISFhZnHH3/casN+OIFQhbPy+uuvm5iYGOPj42OuuOIKs3LlSneXdEGQVO4wc+ZMq83x48fNQw89ZOrWrWsCAgLMzTffbDIyMlzm88svv5iePXsaf39/ExYWZh599FFTWFhYzWtz4Tg5VLEPzr0vvvjCtG7d2vj6+poWLVqYt99+22W60+k0Tz/9tImIiDC+vr6mW7duZtu2bS5tDh06ZAYOHGgCAwNNcHCwufvuu01OTk51rkaNlp2dbUaMGGFiYmKMn5+fufjii81TTz3l8loQ9sMJDmNKvRIVAAAAVUKfKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbODl7gJqE6fTqf379ysoKEgOh8Pd5QAAgEowxignJ0dRUVHy8Kj4ehShqhrt379f0dHR7i4DAABUwZ49e9SoUaMKpxOqqlFQUJCkEzslODjYzdUAAIDKyM7OVnR0tHUerwihqhqV3PILDg4mVAEAUMOcrusOHdUBAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAZe7i4ANdf27duVk5NTZnxQUJCaNWvmhooAAHAfQhWqZPv27WrevLkiAx26P95Hb6UXKDPXWNN/+uknghUAoFbh9h+qpOQK1b8nP6/xXX21+LM5Sk9P1+zZs12mAwBQW3ClCmclLi5O2iO1bNFCimrv7nIAAHAbrlQBAADYgFAFAABgA0IVyjh27JjWrVunY8eO1ehlAABQnQhVKGPr1q2Kj4/X1q1ba/QyAACoToQqAAAAG/D0Xw1XXFys5cuXKyMjQw0bNtQ111wjT0/PCsdX9L2rrrpKKSkpGjdunDIyMiRJubm556Rmh8Nh/Tk+Pv6cLAPw8PCQp6enCgsLK9Xe19dXHh4eysvLkzF/vnOt5N/Tyfz9/VVUVKTi4mIZY+Tl5SU/Pz95e3vLz89PERERatSokQYMGKBGjRpJkjIzM5WRkaG1a9dq8+bNKi4uVkFBgY4fP666desqISFBYWFhcjgcOnz4sDIzMxUYGKi2bdvqjz/+0J49eyRJDRs21NatW7V//355eHioW7duuuGGG9SpUyc99thjWrx4sQoLC9WpUyfdfffdcjqdmjNnjnJyctSgQQMdO3ZMubm5MsbI4XAoKChI7du3V0REhA4dOqS6detqxYoV2rx5syTp0ksvVb169eR0OvXjjz/q+PHjCgwMVL9+/ax1O3jwYLnHmsooKCjQm2++qR07dqhJkyZ66KGH5OPjI+nPY9WePXu0atUqOZ1OSVJwcLD279+v6OhoXX/99brmmmu0YsUK7dmzR2lpadq/f7+CgoJ05513qlu3buXWVN5xcPny5Vq6dKmcTqfq16+vBg0a6NChQ2rQoIEuuugiXXXVVVqxYoXLsbW4uFivv/66li9frmPHjik+Pl6JiYnq2rWrJGn58uXat2+fMjMzdfjwYXl4eKhr16665pprrOVJsrZdybYsb1mnOo5fc8011vIq+k5llbdtVqxYoX379um3336ztkfJMpcuXWqtR9euXV3WvTL1h4eHS6r636PTnfOqjUGlLVu2zPTp08c0bNjQSDKffPLJGX0/KyvLSDJZWVm21PPf//7XxMbGGknWEBsba0aPHl3u+P/+978Vfq+i4fLLLy932enp6UaS2ZL6gTHjgo3Zt95lfHp6ernfq8wyGRgYau5Q+lhTGaNHjzZeXl4u8/Dy8jKjR48+o2OVh4dHhdOCg4PL1FTevE81j9K1nTxvh8NR4XLDw8MrnFdF36toWac7joeHh5sGDRqc1f6oaN4n11J6mcHBwZVa9zM5D51J3RWdC890vU+lsudvQtUZWLBggXnqqafMxx9/bCT3hqr//ve/xuFwmL59+5q0tDSTk5Nj0tLSTMeOHY0k07FjR5fxffv2NQ6Hw4wePdrle7Nnz3b5i9i5c2fz7LPPuowrL1hVJVS5+2DPwFCThsqc4CsaoqKizJVXXlnutNIn8tOd1Cs71KtXz0gyEyZMsI41lTmhjR492kgyERERZsaMGSYjI8PMmDHDREREWPNu0qSJkVTmxO3p6Wkkmbp165app2nTpubyyy83kkxgYKA1vvQJ/eTj4Mnbonnz5i6f4+LijCQTEhJiJJnZs2ebQYMGubS5/PLLzahRo8qtSZJp27atSUhIKDP+L3/5i8t2LNk3Jdth9uzZpzyO5+TkmAkTJljfnTBhQplj/5kElPLOESXrfdlll5kZM2aYnj17umyzFi1amNTUVJOammpatGhxylpK119Sd+fOnU3nzp2Nw+E4o79HFZ0Lz3S9T4dQdY5J7gtVRUVFJjY21vTt29cUFxe7jG/cuLGJiIgwcXFxpqioyJpWXFxs+vTpY7y8vEyfPn1McXGxKSoqMtHR0dY/4F69epm4uDizevVqI8lcffXV1j+MnJwclxrONFS5+wTFwHA+Dh4eHsbX17fC6aVPWqVDlsPhMB4eHsbf39/4+PiUmWfjxo1NTExMucs7OazVr1+/zLIkWXWdfOVDkunRo4dxOBzGz8/PWn7J8aOgoMD07du3zDHoZPn5+cbLy8tERESYwsJCl2l5eXlWnZ6eniYiIsLExMQYf39/4+/vb8LDw01sbKx1JaRkHUrqLigoMMXFxaZv376mcePGJjw83DgcDhMbG2vy8/Ndjp8lx1N/f3/Tq1cv4+/vbwICAkxMTIzp06eP6dOnj/H397fqiI2NNX369DGxsbHG09PTeHh4GIfDYQICAkxBQUGZ+ku2be/evU1xcbEpKCgw/v7+1rYtmXefPn1MYWGh6d27t3E4HMbf39/k5eW5bMvyjuOlzwkl9Zbe9iXb4XT7o7xzS+n5xsTEuJxbStbD4XCY8PBwa3zJdyIiIoy/v3+ZWkrXX1BQ4LK80rVW5u9RRefCM13vyiBUnWPS6UNVXl6eycrKsoY9e/ZUaqeczpIlS4wkk5aWVu74t99+20gyS5YscZn+xhtvGElm6tSpLu0lmTvvvNOsWLHCSDKvvfaakWTGjRtnTe/SpYtJT0+3hpL/e1m/YJZLqPr222+NdOL/rEq3d/fJi4Ghpg9Nmzat0vdKrthUNHTt2vWU09u1a2ckmUsuucQa179/f+vPt912m8u4JUuWWMeSk49Bpb366qtGkpkxY0aFx7iS4bHHHnP5XHKMu+WWW1xqLBlKlltSx6hRo6xpJcstOX6WXtbUqVNd5pOWlmbNQ5J59NFHjSTrWHryULLck+svmffJ00rmV3p66XmXty1PPo6ffE4ob9tXZn+cPJ/Sn0u2S+lzS3nrUXp8SduTl1u6/vLOZaVrPV3dFZ0Lz3S9K6OyoYqO6ufQhAkT9Mwzz9g+35KO5K1bty53fJ8+fVw+l/D393f5b+npjz322ImfnJGs1xyUrn3ZsmXldirfv3+/2pf6/Msvv0iS7rjjjjNZJQCn4eFRtYe1e/furTVr1lQ43ZTqlF+e/Px8SSc6q2/btk2SdOTIEWt6x44dNXfuXGtcRkZGhceg0nbs2CHpz+NVaSd/7+KLL3b5XPKdOnXqSDrR0b2875ccI0t/v2S5JdNKL6vk2FiidevWLtunZD4ntzt5ueWtd3nH3dJ1nXx8Lml78rasqN3J9ZZeTnnreqr6T25fsqyK9mvJepQeX3q/lreN/f39yz2XlV726f4eVXQuLG9e1YVXKpxDY8aMUVZWljWUPLlztho2bChJ2rRpU7nj58+f7/K5xPHjx13+W3r6P//5T2t+LVq0kCSNGzfOmt6lSxelp6dbQ8kPJ0dFRbksIzY2VpI0e/Zsl/YAzk7JU29n6ssvvzzl9NJP45bH19dXkqwnASUpNDTU+vPatWtdxjVs2NA6lpx8DCqtSZMmkv48XpV28vd27tzp8rnkO0ePHpUk60nBk79fUkfp75cst7waS46NJTZt2uRynC2Zz8ntTl5ueetd3nG3dF0nH59L2p5cZ0XtTq639HIqsz9Onk95yyx9bilvPUqPL71fy9vGx48fL/dcVnrZp6u7onNhefOqNmd9TayWkuhTJdGnioHhbAb6VNGnij5V9KmCcW+oMsb1iYcVK1aY7Oxss2LFCpen/0qPL++pixUrVpR5+u+qq65y6Usl8fQfA4M7hrN9+q9Tp07lTjuXT/+98MILVX7676233jL79u0zb7311lk//dekSZNKP/1XchysytN/t99+u0ubyy+/3IwcObLCp//atGlT7lOZJX3DTvX036mO49nZ2eaFF16wvvvCCy+UOfZX5em/0ueI0k//vfXWW+U+/ZeSkmJSUlJcnv4rr5bS9ZfUffXVV1tP/53J36OKzoU8/VcD5OTkmPXr15v169cbSWbSpElm/fr15tdff63U96vjPVVxcXHlvqcqLi6O91QxMDCc86H0saYyeE9V5Zd1uuN4ee+pOtP9UdG87XhP1Zmch86k7orOhe54T5XDmNP0UoRl6dKluu6668qMHzx4sGbNmnXa72dnZyskJERZWVkKDg62paZz9Ub1/fv3a9myZbr22mvLXe66desUHx+vLakfqOU390v3LZOi2lvj09PT1aFDh3K/e7o+HIAdeKM6b1Tnjeq8Ud0ulT1/E6qq0bkIVedCZYLR2YSqyi4DAIDzQWXP3zz9hzJatGih9PR06ynAmroMAACqE++pQhkBAQHn/OpRdSwDAIDqxJUqAAAAGxCqAAAAbMDtP1TJsWPHJJ34SZuWkn7culXHM088GQQAQG1EqEKVlPw+4EN/e1bfx/vorVduV2bunw+SBgUFuas0AADcglCFKunXr5+kE0/xBQQE6MZS04KCgtSsWTO31AUAgLvwnqpqVFPeUwUAAP7Ee6oAAACqEaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGxAqAIAALABoQoAAMAGhCoAAAAbEKoAAABsQKgCAACwAaEKAADABoQqAAAAGxCqAAAAbECoAgAAsAGhCgAAwAaEKgAAABsQqgAAAGzg5e4CahNjjCQpOzvbzZUAAIDKKjlvl5zHK0KoqkY5OTmSpOjoaDdXAgAAzlROTo5CQkIqnO4wp4tdsI3T6dT+/fsVFBQkh8Ph7nJskZ2drejoaO3Zs0fBwcHuLqdWYh+4H/vg/MB+cL8LdR8YY5STk6OoqCh5eFTcc4orVdXIw8NDjRo1cncZ50RwcPAF9Q+oJmIfuB/74PzAfnC/C3EfnOoKVQk6qgMAANiAUAUAAGADQhXOiq+vr8aNGydfX193l1JrsQ/cj31wfmA/uF9t3wd0VAcAALABV6oAAABsQKgCAACwAaEKAADABoQqAAAAGxCqcFamTp2q2NhY+fn5qVOnTlq9erW7S7ogTJgwQZdffrmCgoIUHh6ufv36adu2bS5t8vLylJycrPr16yswMFADBgzQgQMHXNrs3r1bvXv3VkBAgMLDwzV69GgVFRVV56pcMF588UU5HA6NHDnSGsc+OPf27dunO+64Q/Xr15e/v7/atGmjtWvXWtONMRo7dqwaNmwof39/JSYmavv27S7zOHz4sAYNGqTg4GCFhoZq6NChys3Nre5VqbGKi4v19NNPKy4uTv7+/mrSpImee+45l9/BYz/8HwNU0dy5c42Pj4955513zObNm82wYcNMaGioOXDggLtLq/GSkpLMzJkzzaZNm8yGDRtMr169TExMjMnNzbXaPPDAAyY6OtqkpqaatWvXmiuvvNJcddVV1vSioiLTunVrk5iYaNavX28WLFhgwsLCzJgxY9yxSjXa6tWrTWxsrGnbtq0ZMWKENZ59cG4dPnzYNG7c2AwZMsSsWrXK7Ny50yxatMj8/PPPVpsXX3zRhISEmE8//dR8//335sYbbzRxcXHm+PHjVpsePXqYdu3amZUrV5rly5ebpk2bmoEDB7pjlWqk559/3tSvX9/Mnz/f7Nq1y8ybN88EBgaaKVOmWG3YDycQqlBlV1xxhUlOTrY+FxcXm6ioKDNhwgQ3VnVhOnjwoJFkli1bZowx5siRI8bb29vMmzfPavPjjz8aSSYtLc0YY8yCBQuMh4eHyczMtNpMmzbNBAcHm/z8/OpdgRosJyfHNGvWzKSkpJguXbpYoYp9cO797W9/M507d65wutPpNJGRkebll1+2xh05csT4+vqaDz74wBhjzJYtW4wks2bNGqvNV199ZRwOh9m3b9+5K/4C0rt3b3PPPfe4jOvfv78ZNGiQMYb9UBq3/1AlBQUFSk9PV2JiojXOw8NDiYmJSktLc2NlF6asrCxJUr169SRJ6enpKiwsdNn+LVq0UExMjLX909LS1KZNG0VERFhtkpKSlJ2drc2bN1dj9TVbcnKyevfu7bKtJfZBdfj888/VsWNH3XLLLQoPD9dll12mGTNmWNN37dqlzMxMl30QEhKiTp06ueyD0NBQdezY0WqTmJgoDw8PrVq1qvpWpga76qqrlJqaqp9++kmS9P333+vbb79Vz549JbEfSuMHlVElv//+u4qLi11OFpIUERGhrVu3uqmqC5PT6dTIkSN19dVXq3Xr1pKkzMxM+fj4KDQ01KVtRESEMjMzrTbl7Z+SaTi9uXPnat26dVqzZk2ZaeyDc2/nzp2aNm2aRo0apSeffFJr1qzRww8/LB8fHw0ePNjahuVt49L7IDw83GW6l5eX6tWrxz6opCeeeELZ2dlq0aKFPD09VVxcrOeff16DBg2SJPZDKYQq4DyXnJysTZs26dtvv3V3KbXKnj17NGLECKWkpMjPz8/d5dRKTqdTHTt21AsvvCBJuuyyy7Rp0yZNnz5dgwcPdnN1tcdHH32k999/X3PmzNGll16qDRs2aOTIkYqKimI/nITbf6iSsLAweXp6lnnS6cCBA4qMjHRTVRee4cOHa/78+VqyZIkaNWpkjY+MjFRBQYGOHDni0r709o+MjCx3/5RMw6mlp6fr4MGD6tChg7y8vOTl5aVly5bptddek5eXlyIiItgH51jDhg3VqlUrl3EtW7bU7t27Jf25DU91HIqMjNTBgwddphcVFenw4cPsg0oaPXq0nnjiCd12221q06aN7rzzTj3yyCOaMGGCJPZDaYQqVImPj4/i4+OVmppqjXM6nUpNTVVCQoIbK7swGGM0fPhwffLJJ1q8eLHi4uJcpsfHx8vb29tl+2/btk27d++2tn9CQoJ++OEHlwNZSkqKgoODy5yoUFa3bt30ww8/aMOGDdbQsWNHDRo0yPoz++Dcuvrqq8u8SuSnn35S48aNJUlxcXGKjIx02QfZ2dlatWqVyz44cuSI0tPTrTaLFy+W0+lUp06dqmEtar5jx47Jw8M1Lnh6esrpdEpiP7hwd0951Fxz5841vr6+ZtasWWbLli3mvvvuM6GhoS5POqFqHnzwQRMSEmKWLl1qMjIyrOHYsWNWmwceeMDExMSYxYsXm7Vr15qEhASTkJBgTS95nL979+5mw4YNZuHChaZBgwY8zn8WSj/9Zwz74FxbvXq18fLyMs8//7zZvn27ef/9901AQICZPXu21ebFF180oaGh5rPPPjMbN240N910U7mP8l922WVm1apV5ttvvzXNmjW74B7lP5cGDx5sLrroIuuVCh9//LEJCwszjz/+uNWG/XACoQpn5fXXXzcxMTHGx8fHXHHFFWblypXuLumCIKncYebMmVab48ePm4ceesjUrVvXBAQEmJtvvtlkZGS4zOeXX34xPXv2NP7+/iYsLMw8+uijprCwsJrX5sJxcqhiH5x7X3zxhWndurXx9fU1LVq0MG+//bbLdKfTaZ5++mkTERFhfH19Tbdu3cy2bdtc2hw6dMgMHDjQBAYGmuDgYHP33XebnJyc6lyNGi07O9uMGDHCxMTEGD8/P3PxxRebp556yuW1IOyHExzGlHolKgAAAKqEPlUAAAA2IFQBAADYgFAFAABgA0IVAACADQhVAAAANiBUAQAA2IBQBQAAYANCFQAAgA0IVQBwlrp27aqRI0e6uwwAbkaoAlCr9e3bVz169Ch32vLly+VwOLRx48ZqrgpATUSoAlCrDR06VCkpKdq7d2+ZaTNnzlTHjh3Vtm1bN1QGoKYhVAGo1fr06aMGDRpo1qxZLuNzc3M1b9489evXTwMHDtRFF12kgIAAtWnTRh988MEp5+lwOPTpp5+6jAsNDXVZxp49e/SXv/xFoaGhqlevnm666Sb98ssv9qwUALcgVAGo1by8vHTXXXdp1qxZKv378vPmzVNxcbHuuOMOxcfH68svv9SmTZt033336c4779Tq1aurvMzCwkIlJSUpKChIy5cv13fffafAwED16NFDBQUFdqwWADcgVAGo9e655x7t2LFDy5Yts8bNnDlTAwYMUOPGjfXYY4+pffv2uvjii/XXv/5VPXr00EcffVTl5X344YdyOp3617/+pTZt2qhly5aaOXOmdu/eraVLl9qwRgDcgVAFoNZr0aKFrrrqKr3zzjuSpJ9//lnLly/X0KFDVVxcrOeee05t2rRRvXr1FBgYqEWLFmn37t1VXt7333+vn3/+WUFBQQoMDFRgYKDq1aunvLw87dixw67VAlDNvNxdAACcD4YOHaq//vWvmjp1qmbOnKkmTZqoS5cueumllzRlyhRNnjxZbdq0UZ06dTRy5MhT3qZzOBwutxKlE7f8SuTm5io+Pl7vv/9+me82aNDAvpUCUK0IVQAg6S9/+YtGjBihOXPm6L333tODDz4oh8Oh7777TjfddJPuuOMOSZLT6dRPP/2kVq1aVTivBg0aKCMjw/q8fft2HTt2zPrcoUMHffjhhwoPD1dwcPC5WykA1YrbfwAgKTAwULfeeqvGjBmjjIwMDRkyRJLUrFkzpaSkaMWKFfrxxx91//3368CBA6ec1/XXX6833nhD69ev19q1a/XAAw/I29vbmj5o0CCFhYXppptu0vLly7Vr1y4tXbpUDz/8cLmvdgBQMxCqAOD/DB06VH/88YeSkpIUFRUlSfr73/+uDh06KCkpSV27dlVkZKT69et3yvm88sorio6O1jXXXKPbb79djz32mAICAqzpAQEB+uabbxQTE6P+/furZcuWGjp0qPLy8rhyBdRgDnPyjX8AAACcMa5UAQAA2IBQBQAAYANCFQAAgA0IVQAAADYgVAEAANiAUAUAAGADQhUAAIANCFUAAAA2IFQBAADYgFAFAABgA0IVAACADf4/yCazQKrkfM0AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1cAAAF2CAYAAACCrWJKAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABQP0lEQVR4nO3deXxU1f3/8fdMVgIkLIGERJYISBSQKEsIUlGJBqRi1FakVhaXWrVKG6UKVRBtv3EpiC0UflQFN8RiLW6IxqDFQoSyichSRSAQSMIiCQTIMnN+f4QZMmQCJExyZ8jr+XhMJ3PuuTOfuUzjvHPOPddmjDECAAAAAJwTu9UFAAAAAMD5gHAFAAAAAD5AuAIAAAAAHyBcAQAAAIAPEK4AAAAAwAcIVwAAAADgA4QrAAAAAPABwhUAAAAA+ADhCgAAAAB8gHAFAICf27Fjh2w2m+bNm2d1KQCA0yBcAQB8Yt68ebLZbO5beHi44uLilJaWpr/85S86fPhwnZ97xYoVevLJJ3Xo0CHfFSzpySef9Kg5IiJCHTp00A033KC5c+eqtLTUp6/nS4sXL9aTTz5pdRkAgCoIVwAAn3rqqaf0+uuva9asWXrwwQclSb/97W/Vs2dPbdiwoU7PuWLFCk2ZMsXn4cpl1qxZev311/XXv/5Vd999tw4ePKg777xT/fr1065du+rlNWujY8eOOnbsmO644w532+LFizVlyhQLqwIAnCrY6gIAAOeXoUOHqk+fPu7HEyZM0NKlS/XTn/5Uw4cP1+bNm9WkSRMLK6zuZz/7maKjo92PJ02apDfffFOjRo3Sz3/+c3311VcWVif3SCAAwL8xcgUAqHfXXHONnnjiCe3cuVNvvPGGu33Dhg0aM2aMLrzwQoWHhys2NlZ33nmnDhw44O7z5JNPavz48ZKkhIQE9xS+HTt2SJLmzp2ra665Rm3btlVYWJguueQSzZo165xrvv3223X33Xdr5cqVysrK8ti2cuVKDRkyRFFRUYqIiNCgQYO0fPlyjz6uKYfff/+9xowZoxYtWigqKkpjx47V0aNHPfpmZWVp4MCBatGihZo1a6Zu3bpp4sSJ7u2nnnM1ZswYzZw5U5I8pjUaY9SpUyfdeOON1d7P8ePHFRUVpXvvvfecjw0AwDtGrgAADeKOO+7QxIkT9emnn+qee+6RVBkqfvjhB40dO1axsbH69ttvNWfOHH377bf66quvZLPZdPPNN+t///uf3nrrLb3wwgvuEaY2bdpIqpzS1717dw0fPlzBwcH64IMPdP/998vpdOqBBx4455rnzJmjTz/9VNdee60kaenSpRo6dKh69+6tyZMny263uwPel19+qX79+nk8x6233qqEhARlZmZq7dq1eumll9S2bVs9++yzkqRvv/1WP/3pT3XppZfqqaeeUlhYmL7//vtqYa2qe++9V3v27FFWVpZef/11d7vNZtMvf/lLPffcczp48KBatWrl3vbBBx+ouLhYv/zlL8/pmAAATsMAAOADc+fONZLMf//73xr7REVFmcsuu8z9+OjRo9X6vPXWW0aSWbZsmbvt+eefN5LM9u3bq/X39hxpaWnmwgsvPGPNkydPNpLMvn37vG7/8ccfjSRz0003GWOMcTqdpmvXriYtLc04nU6PGhISEsy1115b7bnvvPNOj+e86aabTOvWrd2PX3jhhdPWYIwx27dvN5LM3Llz3W0PPPCA8faf8a1btxpJZtasWR7tw4cPN506dfKoGwDgW0wLBAA0mGbNmnmsGlj13Kvjx49r//796t+/vyRp7dq1Z/WcVZ+jqKhI+/fv16BBg/TDDz+oqKjonOuV5K55/fr1+u677/SLX/xCBw4c0P79+7V//36VlJRo8ODBWrZsmZxOp8dz/PrXv/Z4/JOf/EQHDhxQcXGxJKlFixaSpPfee6/avnVx0UUXKTk5WW+++aa77eDBg/r44491++23y2aznfNrAAC8I1wBABrMkSNH1Lx5c/fjgwcPaty4cYqJiVGTJk3Upk0bJSQkSNJZB6Ply5crNTVVTZs2VYsWLdSmTRv3+UrnGq6OHDkiSe6av/vuO0nS6NGj1aZNG4/bSy+9pNLS0mqv2aFDB4/HLVu2lCT9+OOPkqQRI0boiiuu0N13362YmBjddttt+sc//nFOQWvUqFFavny5du7cKUlauHChysvLPVYbBAD4HudcAQAaxO7du1VUVKQuXbq422699VatWLFC48ePV1JSkpo1ayan06khQ4acVbjYtm2bBg8erMTERE2bNk3t27dXaGioFi9erBdeeOGcR4I2btwoSe6aXc/3/PPPKykpyes+rtEul6CgIK/9jDGSKkfeli1bps8//1wfffSRlixZorffflvXXHONPv300xr3P53bbrtNv/vd7/Tmm29q4sSJeuONN9SnTx9169at1s8FADh7hCsAQINwLbyQlpYmqXLkJjs7W1OmTNGkSZPc/VyjQ1XVNJXtgw8+UGlpqd5//32PEaLPP/+8Xmru3LmzJCkyMlKpqak+eQ1JstvtGjx4sAYPHqxp06bp//7v//SHP/xBn3/+eY2vc7rpfa1atdKwYcP05ptv6vbbb9fy5cs1ffp0n9ULAPCOaYEAgHq3dOlSPf3000pISNDtt98u6eSIjmsEx8VbCGjatKkkVbuIsLfnKCoq0ty5c8+55vnz5+ull15SSkqKBg8eLEnq3bu3OnfurD//+c/uKYNV7du3r9avc/DgwWptrlGx0tLSGver6Zi43HHHHdq0aZPGjx+voKAg3XbbbbWuDQBQO4xcAQB86uOPP9aWLVtUUVGhgoICLV26VFlZWerYsaPef/9998VwIyMjdeWVV+q5555TeXm54uPj9emnn2r79u3VnrN3796SpD/84Q+67bbbFBISohtuuEHXXXedQkNDdcMNN+jee+/VkSNH9Pe//11t27bV3r17z7rmd955R82aNVNZWZny8vL0ySefaPny5erVq5cWLlzo7me32/XSSy9p6NCh6t69u8aOHav4+Hjl5eXp888/V2RkpD744INaHa+nnnpKy5Yt07Bhw9SxY0cVFhbqb3/7my644AINHDiwxv1cx+Shhx5SWlpatQA1bNgwtW7dWgsXLtTQoUPVtm3bWtUFAKg9whUAwKdcU/xCQ0PVqlUr9ezZU9OnT9fYsWM9FrOQKkeHHnzwQc2cOVPGGF133XX6+OOPFRcX59Gvb9++evrppzV79mwtWbJETqdT27dvV7du3fTOO+/o8ccf1yOPPKLY2Fjdd999atOmje68886zrvm+++6TJIWHhys6OlpJSUl65ZVX9Itf/EJhYWEefa+66irl5OTo6aef1owZM3TkyBHFxsYqOTm5ThfoHT58uHbs2KFXXnlF+/fvV3R0tAYNGqQpU6YoKiqqxv1uvvlmPfjgg1qwYIHeeOMNGWM8wlVoaKhGjBihv/3tbyxkAQANxGZOnY8BAADOC7/73e/08ssvKz8/XxEREVaXAwDnPc65AgDgPHT8+HG98cYbuuWWWwhWANBAmBYIAMB5pLCwUJ999pneeecdHThwQOPGjbO6JABoNAhXAACcRzZt2qTbb79dbdu21V/+8pcar8cFAPA9zrkCAAAAAB/gnCsAAAAA8AHCFQAAAAD4AOdceeF0OrVnzx41b95cNpvN6nIAAAAAWMQYo8OHDysuLk52++nHpghXXuzZs0ft27e3ugwAAAAAfmLXrl264IILTtuHcOVF8+bNJVUewMjISIurAQAAAGCV4uJitW/f3p0RTodw5YVrKmBkZCThCgAAAMBZnS5EuAIQoNZIWzZIZZLKL5V699YaVT4MldTb2uIAAEAjRLgCEKBulBLzpN2S+sdLu3frRkl5kuJV2QwAANCQWIodAAAAAHyAcAUAAAAAPkC4AgAAAAAfsDxczZw5U506dVJ4eLiSk5O1atWq0/ZfuHChEhMTFR4erp49e2rx4sXV+mzevFnDhw9XVFSUmjZtqr59+yo3N7e+3gIAAAAAWBuu3n77bWVkZGjy5Mlau3atevXqpbS0NBUWFnrtv2LFCo0cOVJ33XWX1q1bp/T0dKWnp2vjxo3uPtu2bdPAgQOVmJioL774Qhs2bNATTzyh8PDwhnpbAAAAABohmzHGWPXiycnJ6tu3r2bMmCFJcjqdat++vR588EE99thj1fqPGDFCJSUl+vDDD91t/fv3V1JSkmbPni1Juu222xQSEqLXX3+9znUVFxcrKipKRUVFXOcK8FsXSPJcLfBEC6sFAgAAn6lNNrBs5KqsrExr1qxRamrqyWLsdqWmpionJ8frPjk5OR79JSktLc3d3+l06qOPPtJFF12ktLQ0tW3bVsnJyVq0aFG9vQ8AAAAAkCwMV/v375fD4VBMTIxHe0xMjPLz873uk5+ff9r+hYWFOnLkiJ555hkNGTJEn376qW666SbdfPPN+ve//11jLaWlpSouLva4AQAAAEBtnFcXEXY6nZKkG2+8Ub/73e8kSUlJSVqxYoVmz56tQYMGed0vMzNTU6ZMabA6AZy7o2UORYRaXQUAAMBJlo1cRUdHKygoSAUFBR7tBQUFio2N9bpPbGzsaftHR0crODhYl1xyiUefiy+++LSrBU6YMEFFRUXu265du+rylgA0oL5//Iv6PTZPywvXS5s3S5I2Syo6cQ8AANDQLAtXoaGh6t27t7Kzs91tTqdT2dnZSklJ8bpPSkqKR39JysrKcvcPDQ1V3759tXXrVo8+//vf/9SxY8caawkLC1NkZKTHDYB/KymLUKGilW9aS82bS5KaS4o8cQ8AANDQLJ0WmJGRodGjR6tPnz7q16+fpk+frpKSEo0dO1aSNGrUKMXHxyszM1OSNG7cOA0aNEhTp07VsGHDtGDBAq1evVpz5sxxP+f48eM1YsQIXXnllbr66qu1ZMkSffDBB/riiy+seIsA6pnTugVPAQAAPFgarkaMGKF9+/Zp0qRJys/PV1JSkpYsWeJetCI3N1d2+8nBtQEDBmj+/Pl6/PHHNXHiRHXt2lWLFi1Sjx493H1uuukmzZ49W5mZmXrooYfUrVs3/fOf/9TAgQMb/P0BqB9VryBBtgIAAP7C0utc+SuucwX4t9IKh55bcq+uPLBWFzVprna7b5QyMjRNUrEqpwZmWFwjAAA4P9QmGxCuvCBcAf7t8PFyHSltp3ZRB7iIMAAAqFcBcRFhAKirsgqn1SUAAABUQ7gCEHDKHIQrAADgfwhXAAIOI1cAAMAfEa4ABBzCFQAA8EeEKwABp5RwBQAA/BDhCkDA4ZwrAADgjwhXAAJOaTnhCgAA+B/CFYCAw8gVAADwR8FWFwAAtVVW4dTGvM5q8sNxBR+wq9nll0uSLpfUXlIbS6sDAACNFeEKQMApq3DqgfmTJEl9O7XUwvcHSJLet7IoAADQ6DEtEEDAKXM43D8f5/wrAADgJwhXAAJO1etcHSt3nKYnAABAwyFcAQg4HuGqjHAFAAD8A+dcAQg4pRVO/X3UU+pb+q3s+23S8Kul99/XcEn7VLmgBedfAQCAhka4AhBwyhxO9YjfphZRJdJuSWvXSpLWSsqTFG9lcQAAoNFiWiCAgFN1WiAAAIC/IFwBCDiEKwAA4I8IVwACDuEKAAD4I8IVgIBT5iBcAQAA/0O4AhBwGLkCAAD+iHAFIOBUOI3VJQAAAFRDuAIQcJynhCuiFgAA8AeEKwABx2GIUwAAwP9wEWEAAcfhNHrpy3RdeWCtVCwNGPcLhUjKkFQsKdLi+gAAQONEuAIQcJzG6OX/3KSXdZMkadNTae5wBQAAYBWmBQIIOI5TzrligQsAAOAPCFcAAs6pl7k6dYELAAAAKzAtEEDAcRqjpqFH1bTsqCSbHEXFUkS0Dqty5UCbpObWlggAABohwhWAgONwGn328H1qF3VA2i05+sRJeXm6WFKepHhJuy2uEQAAND5MCwQQcJwsxQ4AAPwQ4QpAwDk1XJG1AACAPyBcAQg4p64WCAAA4A8IVwACjtN55j4AAAANjXAFIOA4Tp0WaFEdAAAAVRGuAAQcpgUCAAB/5BfhaubMmerUqZPCw8OVnJysVatWnbb/woULlZiYqPDwcPXs2VOLFy/22D5mzBjZbDaP25AhQ+rzLQBoQNVWCyRrAQAAP2B5uHr77beVkZGhyZMna+3aterVq5fS0tJUWFjotf+KFSs0cuRI3XXXXVq3bp3S09OVnp6ujRs3evQbMmSI9u7d67699dZbDfF2ADSAU0euyFYAAMAfWB6upk2bpnvuuUdjx47VJZdcotmzZysiIkKvvPKK1/4vvviihgwZovHjx+viiy/W008/rcsvv1wzZszw6BcWFqbY2Fj3rWXLlg3xdgA0gOrTAolXAADAesFWvnhZWZnWrFmjCRMmuNvsdrtSU1OVk5PjdZ+cnBxlZGR4tKWlpWnRokUebV988YXatm2rli1b6pprrtEf//hHtW7d2ufvAUDDcxqje157QomHtktl0tg5w9Vd0nuSyiSFWlwfAABonCwNV/v375fD4VBMTIxHe0xMjLZs2eJ1n/z8fK/98/Pz3Y+HDBmim2++WQkJCdq2bZsmTpyooUOHKicnR0FBQdWes7S0VKWlpe7HxcXF5/K2ANQzp5E25nXRRnWRJP2sey9JUm8riwIAAI2epeGqvtx2223un3v27KlLL71UnTt31hdffKHBgwdX65+ZmakpU6Y0ZIkAzoHzlGmBrB4IAAD8gaXnXEVHRysoKEgFBQUe7QUFBYqNjfW6T2xsbK36S9KFF16o6Ohoff/99163T5gwQUVFRe7brl27avlOADSkU69zRbgCAAD+wNJwFRoaqt69eys7O9vd5nQ6lZ2drZSUFK/7pKSkePSXpKysrBr7S9Lu3bt14MABtWvXzuv2sLAwRUZGetwA+C+H0+iaxFX6fZt5+n2zeWqR/Ykk6UNJC0/cAwAANDTLpwVmZGRo9OjR6tOnj/r166fp06erpKREY8eOlSSNGjVK8fHxyszMlCSNGzdOgwYN0tSpUzVs2DAtWLBAq1ev1pw5cyRJR44c0ZQpU3TLLbcoNjZW27Zt0+9//3t16dJFaWlplr1PAL7jdBr96aaZahd1QNotHe+zXLrvl/q1pDxJ8ZJ2W1wjAABofCwPVyNGjNC+ffs0adIk5efnKykpSUuWLHEvWpGbmyu7/eQA24ABAzR//nw9/vjjmjhxorp27apFixapR48ekqSgoCBt2LBBr776qg4dOqS4uDhdd911evrppxUWFmbJewTgW6dOC2QldgAA4A9sxpz6LQXFxcWKiopSUVERUwQBP9Tnj5/pgwdvc49cHevdTk0K9ugCMXIFAAB8qzbZwPKLCANAbTmr/U2IvxEBAADrEa4ABBxWBwQAAP6IcAUg4Jx6nSuiFgAA8AeEKwABp9qCFgAAAH6AcAUg4FQ754qsBQAA/ADhCkDAcTo9H5OtAACAP7D8OlcAUFsOY3S0tImch20yJVJFkwhJUjNJzU/cAwAANDTCFYCA43AaDZ42W1d0aa3l3x/QE29eorskbbG6MAAA0KgxLRBAQKm6UmBIUOWvMMep8wQBAAAsQLgCEFCqrhQY6g5XVlUDAABwEuEKQECpegHhkGBGrgAAgP/gnCsAAcW1DPuEoa/ohtIN+k1iuY7OTpWueUnjJf0oqaWk560sEgAANEqEKwABxTVyNTzp32oXdUBxu6XD4z+UJL0lKU9SvAhXAACg4TEtEEBAYQYgAADwV4QrAAGl6oIWLl6aAAAAGhzhCkBAcZKkAACAnyJcAQgoVa9zBQAA4E8IVwACimtaoK1KmxGBCwAAWI9wBSCgOLyNXJGtAACAHyBcAQgorBYIAAD8FeEKQEA5OS3w5MRABq4AAIA/4CLCAAKKa1rgl9/303XHv9GPu8u057KBSpE0TNJBSa2sLBAAADRahCsAAcW1FPufPhqnQ1d30R/XbdaNd8cpRdL/s7Y0AADQyDEtEEBAcY1cBdltCrLbPNoAAACsRLgCEFBcQcpuOxmuuLAwAADwB4QrAAHFFaSqjlxVOAhXAADAepxzBSCguGYAzh1zvy6y/aCf32q055au0qjN6iMpX1KspNUW1ggAABonwhWAgOKaFtiq2UHZm1cotEKKLDogqTJY5VlYGwAAaNyYFgggoDjd17kCAADwL4QrAAHF28qArGcBAAD8AeEKQEBxsuw6AADwU4QrAAHF4R6mYmIgAADwL4QrAAHFNS2warRiLAsAAPgDwhWAgOK+YDADVwAAwM8QrgAEFIfTSyNDVwAAwA8QrgAEFKYFAgAAf+UX4WrmzJnq1KmTwsPDlZycrFWrVp22/8KFC5WYmKjw8HD17NlTixcvrrHvr3/9a9lsNk2fPt3HVQOwgmta4Btf3a/8rF/qrTev099/eq8k6TlJfz9xDwAA0NAsD1dvv/22MjIyNHnyZK1du1a9evVSWlqaCgsLvfZfsWKFRo4cqbvuukvr1q1Tenq60tPTtXHjxmp9//Wvf+mrr75SXFxcfb8NAA3EFa5WbEtTbpcXNeHHh/RZ0mBJ0i8k3X3iHgAAoKFZHq6mTZume+65R2PHjtUll1yi2bNnKyIiQq+88orX/i+++KKGDBmi8ePH6+KLL9bTTz+tyy+/XDNmzPDol5eXpwcffFBvvvmmQkJCGuKtAGgArmmBQXabgk78BnNwFWEAAOAHLA1XZWVlWrNmjVJTU91tdrtdqampysnJ8bpPTk6OR39JSktL8+jvdDp1xx13aPz48erevXv9FA/AEq6Rq8pwVfkrrMJBuAIAANYLtvLF9+/fL4fDoZiYGI/2mJgYbdmyxes++fn5Xvvn5+e7Hz/77LMKDg7WQw89dFZ1lJaWqrS01P24uLj4bN8CgAbmWi0wLipXUfk7dLV9k44WJkiStkqqUOUvtm5WFQgAABotS8NVfVizZo1efPFFrV27Vjbb2V0IJzMzU1OmTKnnygD4gvPEtMBHh/5GrZoWam47qaB7tDRtjAZLypMUL2m3lUUCAIBGydJpgdHR0QoKClJBQYFHe0FBgWJjY73uExsbe9r+X375pQoLC9WhQwcFBwcrODhYO3fu1MMPP6xOnTp5fc4JEyaoqKjIfdu1a9e5vzkA9YLzqwAAgL+yNFyFhoaqd+/eys7Odrc5nU5lZ2crJSXF6z4pKSke/SUpKyvL3f+OO+7Qhg0btH79evctLi5O48eP1yeffOL1OcPCwhQZGelxA+CfvF3nigtdAQAAf2D5tMCMjAyNHj1affr0Ub9+/TR9+nSVlJRo7NixkqRRo0YpPj5emZmZkqRx48Zp0KBBmjp1qoYNG6YFCxZo9erVmjNnjiSpdevWat26tcdrhISEKDY2Vt26cRYGEOicjFwBAAA/ZXm4GjFihPbt26dJkyYpPz9fSUlJWrJkiXvRitzcXNntJwfYBgwYoPnz5+vxxx/XxIkT1bVrVy1atEg9evSw6i0AaECukauqQ1eGoSsAAOAHbMbwZ+BTFRcXKyoqSkVFRUwRBPzMS1/+oD9+tFnrJ92pFhGF0m4p/5LWii3erwvEghYAAMC3apMNLL+IMADUhrdpgfyFCAAA+APCFYCA4vSWpIzEIDwAALAa4QpAQHF4TVc1hC4AAIAGRLgCEFBcFxE+9RrhNYUuAACAhmL5aoEAUBuuiwjP+vwtPdSzmX4+M0eFo1tpmdPov5IckoIsrRAAADRWhCsAAcU1clVS1lb22Iv1rfZJzSpDVzuLawMAAI0b0wIBBBTXyFWQ3SZ7lbmBDgfTAgEAgLUIVwACisNZeW+32RRsrxKuWC0QAABYjGmBAAKK6zpXfTr+Q/aV32pGm71annWZKpyDNUfSEUnNJP3KyiIBAECjRLgCEFBcqwIOvGi2FF6gn7aXej+5RU7n83pKUp6keBGuAABAw2NaIICA4gpXp6zErgqns+GLAQAAqIJwBSCgmBrOrSJbAQAAqxGuAASUmhauYOQKAABYjXAFIKC4Vgs8dVqgk9UCAQCAxQhXAAKK6yLCp6qooR0AAKChEK4ABBT3tMBThq4chCsAAGAxwhWAgFLTyBWnXAEAAKsRrgAEFNfIle2UoSsWtAAAAFarU7j64YcffF0HAJwV1/S/omMJ0o4IHdsRpu2t4uU0RhdJukTSRZZWCAAAGqs6hasuXbro6quv1htvvKHjx4/7uiYAqJFrVcCsTfOlTiUatnKJfjHy/1ThMFoq6VtJSy2tEAAANFZ1Cldr167VpZdeqoyMDMXGxuree+/VqlWrfF0bAFTjGrmy2yunBQbZKu9ruv4VAABAQ6lTuEpKStKLL76oPXv26JVXXtHevXs1cOBA9ejRQ9OmTdO+fft8XScASDp5nStXqAo6EbJYLRAAAFjtnBa0CA4O1s0336yFCxfq2Wef1ffff69HHnlE7du316hRo7R3715f1QkAkiRzYoQq6MRvL8IVAADwF+cUrlavXq37779f7dq107Rp0/TII49o27ZtysrK0p49e3TjjTf6qk4AkHRy+l//C8dJG9rp9YR0Tf/geTmcRrdLSpN0u6UVAgCAxiq4LjtNmzZNc+fO1datW3X99dfrtdde0/XXXy+7vTKrJSQkaN68eerUqZMvawUA9whV2+ZfSZfmq1UrKTl3o75xGv1bUp6keEsrBAAAjVWdwtWsWbN05513asyYMWrXrp3XPm3bttXLL798TsUBwKmcNSxcwbRAAABgtTqFq6ysLHXo0ME9UuVijNGuXbvUoUMHhYaGavTo0T4pEgBcagpRrBYIAACsVqdzrjp37qz9+/dXaz948KASEhLOuSgAqInT6frJ5tHOyBUAALBancKVqeEvxEeOHFF4ePg5FQQAp+MaobLZTmknXAEAAIvValpgRkaGJMlms2nSpEmKiIhwb3M4HFq5cqWSkpJ8WiAAVFVTiKogXAEAAIvVKlytW7dOUuXI1TfffKPQ0FD3ttDQUPXq1UuPPPKIbysEgCpqWtDCSbgCAAAWq1W4+vzzzyVJY8eO1YsvvqjIyMh6KQoAasLIFQAA8Fd1Wi1w7ty5vq4DAM6KK1ydcspVjSNaAAAADeWsw9XNN9+sefPmKTIyUjfffPNp+7777rvnXBgAeOPKUAXFd6jD/5bph20leq9XT0U5jO6RVCQpysoCAQBAo3XW4SoqKkq2E8tzRUXx1QWANVyrBeYd+r06pDyrv+xcp0UD9+hxYzTZ4toAAEDjdtbhqupUQKYFArCKa+EK+4l5gfYTP3DOFQAAsFqdrnN17NgxHT161P14586dmj59uj799NM6FTFz5kx16tRJ4eHhSk5O1qpVq07bf+HChUpMTFR4eLh69uypxYsXe2x/8sknlZiYqKZNm6ply5ZKTU3VypUr61QbAP/iGrkKOhGqgk/cc50rAABgtTqFqxtvvFGvvfaaJOnQoUPq16+fpk6dqhtvvFGzZs2q1XO9/fbbysjI0OTJk7V27Vr16tVLaWlpKiws9Np/xYoVGjlypO666y6tW7dO6enpSk9P18aNG919LrroIs2YMUPffPON/vOf/6hTp0667rrrtG/fvrq8XQB+xBWiXCNWQYQrAADgJ2zG1H6JrejoaP373/9W9+7d9dJLL+mvf/2r1q1bp3/+85+aNGmSNm/efNbPlZycrL59+2rGjBmSJKfTqfbt2+vBBx/UY489Vq3/iBEjVFJSog8//NDd1r9/fyUlJWn27NleX6O4uFhRUVH67LPPNHjw4DPW5OpfVFTEcvOAnxmQma09Rcf1vz/+SqHBe6Td0t6LW2vBuys09dqLlCcpXtJuqwsFAADnhdpkgzqNXB09elTNmzeXJH366ae6+eabZbfb1b9/f+3cufOsn6esrExr1qxRamrqyYLsdqWmpionJ8frPjk5OR79JSktLa3G/mVlZZozZ46ioqLUq1evs64NgH9yTQu0nbIWOyNXAADAanUKV126dNGiRYu0a9cuffLJJ7ruuuskSYWFhbUa6dm/f78cDodiYmI82mNiYpSfn+91n/z8/LPq/+GHH6pZs2YKDw/XCy+8oKysLEVHR3t9ztLSUhUXF3vcAPgnh7OGdq5zBQAALFancDVp0iQ98sgj6tSpk5KTk5WSkiKpchTrsssu82mBdXX11Vdr/fr1WrFihYYMGaJbb721xvO4MjMzFRUV5b61b9++gasFcLZqulgwI1cAAMBqdQpXP/vZz5Sbm6vVq1dryZIl7vbBgwfrhRdeOOvniY6OVlBQkAoKCjzaCwoKFBsb63Wf2NjYs+rftGlTdenSRf3799fLL7+s4OBgvfzyy16fc8KECSoqKnLfdu3addbvAUDDcoUoWw3tAAAAVqlTuJIqQ85ll10mu/3kU/Tr10+JiYln/RyhoaHq3bu3srOz3W1Op1PZ2dnu0bBTpaSkePSXpKysrBr7V33e0tJSr9vCwsIUGRnpcQPgn5w1hCjCFQAAsNpZX0S4qpKSEj3zzDPKzs5WYWGhnE7PkyB++OGHs36ujIwMjR49Wn369FG/fv00ffp0lZSUaOzYsZKkUaNGKT4+XpmZmZKkcePGadCgQZo6daqGDRumBQsWaPXq1ZozZ467tj/96U8aPny42rVrp/3792vmzJnKy8vTz3/+87q8XQB+hGmBAADAX9UpXN19993697//rTvuuEPt2rWT7dRlu2phxIgR2rdvnyZNmqT8/HwlJSVpyZIl7kUrcnNzPUbHBgwYoPnz5+vxxx/XxIkT1bVrVy1atEg9evSQJAUFBWnLli169dVXtX//frVu3Vp9+/bVl19+qe7du9e5TgD+wb1wxSm/dioIVwAAwGJ1us5VixYt9NFHH+mKK66oj5osx3WuAP910R8+VpnDqW3/9ysF2U9e52r63KV682eXcp0rAADgU/V+nauWLVuqVatWdSoOAM5FTUuuM3IFAACsVqdpgU8//bQmTZqkV199VREREb6uCQBq5Dq3qvj4XLX8br1WbjmoF26IUjtj9IakUklhllYIAAAaqzqFq6lTp2rbtm2KiYlRp06dFBIS4rF97dq1PikOAKqqulKg0zlI6nWdNh7erq86bNINTqOrrCsNAACgbuEqPT3dx2UAwJlVnRIYZK9c0SL4xH1NS7QDAAA0lDqFq8mTJ/u6DgA4o6rLrdtPhCrXfcUpl4QAAABoaHUKV5J06NAhvfPOO9q2bZvGjx+vVq1aae3atYqJiVF8fLwvawQASZ7XuAqxL5O+XqMeeYfUP7e5HBdfqy908pyrq6wpEQAANGJ1ClcbNmxQamqqoqKitGPHDt1zzz1q1aqV3n33XeXm5uq1117zdZ0A4DFyFR4yWuqVp8taSy+Maa2J1w7WLyWWYgcAAJap01LsGRkZGjNmjL777juFh4e726+//notW7bMZ8UBQFWO05xX5eCUKwAAYLE6hav//ve/uvfee6u1x8fHKz8//5yLAgBvTheuWNACAABYrU7hKiwsTMXFxdXa//e//6lNmzbnXBQAeFN1tUCbzXMbC1oAAACr1SlcDR8+XE899ZTKy8slSTabTbm5uXr00Ud1yy23+LRAAHBx5SfX8uvetgEAAFilTuFq6tSpOnLkiNq0aaNjx45p0KBB6tKli5o3b64//elPvq4RACSdHLmyewlXjFwBAACr1Wm1wKioKGVlZWn58uX6+uuvdeTIEV1++eVKTU31dX0A4OY4sWpF0KlzAsWCFgAAwHq1DldOp1Pz5s3Tu+++qx07dshmsykhIUGxsbEyxsjm5UsPAPiCa+QqyMvIlYORKwAAYLFaTQs0xmj48OG6++67lZeXp549e6p79+7auXOnxowZo5tuuqm+6gQA92qB3sNVQ1cDAADgqVYjV/PmzdOyZcuUnZ2tq6++2mPb0qVLlZ6ertdee02jRo3yaZEAIElORq4AAIAfq9XI1VtvvaWJEydWC1aSdM011+ixxx7Tm2++6bPiAKCqihMnVtltNkm7JRl9VbZfKQ+8KofTnGip3AIAANDQahWuNmzYoCFDhtS4fejQofr666/PuSgA8ObkyNXJNtco1ukuMAwAANAQahWuDh48qJiYmBq3x8TE6McffzznogDAG1eACraf/NXlDleGcAUAAKxVq3DlcDgUHFzzaVpBQUGqqKg456IAwJuT17k62eZalt3BWuwAAMBitVrQwhijMWPGKCwszOv20tJSnxQFAN64Vwu02SRNkXKWqMs+h8b9p6sWXD9WUyQVSYqSNNnCOgEAQONUq3A1evToM/ZhpUAA9cUVrux2m6S/Syl5arpbuu3rH/TmkDH6u6Q8SfEiXAEAgIZXq3A1d+7c+qoDAM7I6T7nyttS7EwLBAAA1qrVOVcAYCX3OVe26uGqgnAFAAAsRrgCEDBcAcrbRYSdhCsAAGAxwhWAgOE8Tbhi5AoAAFiNcAUgYDhON3LFda4AAIDFCFcAAoYrQAVxzhUAAPBDhCsAAaPCYyl2T8a4/gcAAMAahCsAAcPzIsLVEa0AAICVanWdKwCwkmtaYHCQTdIgacNSmf3Syg7dJElXOIyKgm2KtrBGAADQeBGuAAQMh7PyvvI6V29Kl0rGafTbGxZLkv52vFzRzcKsKxAAADRqTAsEEDC8LcVut9sUElT5uKzCaUldAAAAEuEKQABxL2hxyjlXoUGVv8rKHYQrAABgHcIVgIDhcJ1zdcpqgSHBlb/KGLkCAABWIlwBCBie0wKvkXY0lVY21UvzHpUk/bJFE3Wv3AIAANDg/CJczZw5U506dVJ4eLiSk5O1atWq0/ZfuHChEhMTFR4erp49e2rx4sXubeXl5Xr00UfVs2dPNW3aVHFxcRo1apT27NlT328DQD1zeFzn6n9Sp6NS/FF1OLBbkrQjyK5NlVsAAAAanOXh6u2331ZGRoYmT56stWvXqlevXkpLS1NhYaHX/itWrNDIkSN11113ad26dUpPT1d6ero2btwoSTp69KjWrl2rJ554QmvXrtW7776rrVu3avjw4Q35tgDUg5PXufJsd52CxXWuAACAlSwPV9OmTdM999yjsWPH6pJLLtHs2bMVERGhV155xWv/F198UUOGDNH48eN18cUX6+mnn9bll1+uGTNmSJKioqKUlZWlW2+9Vd26dVP//v01Y8YMrVmzRrm5uQ351gD4mOucqyD7qb+6XOmKeAUAAKxjabgqKyvTmjVrlJqa6m6z2+1KTU1VTk6O131ycnI8+ktSWlpajf0lqaioSDabTS1atPC6vbS0VMXFxR43AP7HPXJ1ym8u10AW0QoAAFjJ0nC1f/9+ORwOxcTEeLTHxMQoPz/f6z75+fm16n/8+HE9+uijGjlypCIjI732yczMVFRUlPvWvn37OrwbAPXN23WuJKYFAgAA/2D5tMD6VF5erltvvVXGGM2aNavGfhMmTFBRUZH7tmvXrgasEsDZquk6V26kKwAAYKFgK188OjpaQUFBKigo8GgvKChQbGys131iY2PPqr8rWO3cuVNLly6tcdRKksLCwhQWFlbHdwGgoThruM7VyZEr0hUAALCOpSNXoaGh6t27t7Kzs91tTqdT2dnZSklJ8bpPSkqKR39JysrK8ujvClbfffedPvvsM7Vu3bp+3gCABuW5FHtVNYxkAQAANCBLR64kKSMjQ6NHj1afPn3Ur18/TZ8+XSUlJRo7dqwkadSoUYqPj1dmZqYkady4cRo0aJCmTp2qYcOGacGCBVq9erXmzJkjqTJY/exnP9PatWv14YcfyuFwuM/HatWqlUJDQ615owDOmXu1wFOmBboXtGDgCgAAWMjycDVixAjt27dPkyZNUn5+vpKSkrRkyRL3ohW5ubmyV1l2ecCAAZo/f74ef/xxTZw4UV27dtWiRYvUo0cPSVJeXp7ef/99SVJSUpLHa33++ee66qqrGuR9AfA9h6PqghaTpJws6Yj0yS3dJEk/zf1RSV3bqJmFNQIAgMbLZgx/6z1VcXGxoqKiVFRUdNpztQA0rCkffKu5y3fo/qs66/dDEt3t4xd+rYVrduv3Q7rp/qu6WFghAAA439QmG5zXqwUCOL/UtBR7aHDlr7KyCmeD1wQAAOBCuAIQMFznXJ26FHvIiasKlzsIVwAAwDqWn3MFAGfL4TFytVcq2CM5pFbFJZKkA0F27ZYUJKmdZVUCAIDGipErAAHDM1z1lWL6SM4+Gvu7WyVJf7siQe0rtwAAADQ4whWAgOGa9XfqOVdc5QoAAPgDwhWAgOGs4TpXLix+CgAArES4AhAwXNMC7aeOXJ0IW0QrAABgJcIVgIDhClfB9homApKuAACAhQhXAAJGzSNXlfdkKwAAYCXCFYCA4ajhnCvXI865AgAAViJcAQgYzhqmBXLOFQAA8AeEKwABo6KmaYEn7hm4AgAAViJcAQgY7qXYT/nN5R65Il0BAAALEa4ABIwKhytc2SVlS9s/kI59oD3vfCBJuvD11dpYuQUAAKDBBVtdAACcrQqnU5IUYrdJ6iYldKt83OaY9MFeOfYeVncL6wMAAI0bI1cAAkb5iZGr4FPmBUaEBEmSyiqcqnA4G7wuAAAAiXAFIIC4Rq6CgzwXtIgIC3L/fLTc0aA1AQAAuDAtEEDAcJ1zFWK3S5ovrfxcOiqF7rlKwfaWKurZTn93Su0k/cLSSgEAQGNEuAIQMModVUeufi8l50m7JdsdH6vJ3S9rx/WJeiQiRPEiXAEAgIbHtEAAAaOihosIS1LTUP5WBAAArEW4AhAwKmpY0EKSIkKDqrUBAAA0JMIVgIDhXtDCy8hV1UUtAAAArEC4AhAw3AtaeBu5CmFaIAAAsBbhCkDA8FzQwhMjVwAAwGqEKwABw7WgReVS7J6ahjFyBQAArEW4AhAwTi5oUX3kqmVESEOXAwAA4IFwBSBglJ9mQYsWTUIbuhwAAAAPhCsAAcHhNDKVA1cnlmKPlQpCpAMhUmysWkSEKOhwqZoeLVOspZUCAIDGinAFICC4FrOQXNMCV0sxZVKvMmn1arWICFW7Gct184L1Wm1dmQAAoBEjXAEICK7FLCTvC1q4zrkqOlrWYDUBAABURbgCEBAcjpPhytuCFi1OhKsfj5Y3WE0AAABVEa4ABATXYhZSDQtaRFQuaHGIkSsAAGARwhWAgOBeht1uk81mk3SvtOZCKetC6d571aJJiA7c1EPbbr5U91SZQggAANBQCFcAAoJrQYuTUwI/knpvly7eLn30kaKahOhYYlsdvbSdPrKuTAAA0IgRrgAEBNeCFsFeFrOQKpdnt9sqg5fTMHIFAAAaHuEKQECoqDZyVZ07XDEtEAAAWMDycDVz5kx16tRJ4eHhSk5O1qpVq07bf+HChUpMTFR4eLh69uypxYsXe2x/9913dd1116l169ay2Wxav359PVYPoKGUO04/ciVJQScWunAwcgUAACxgabh6++23lZGRocmTJ2vt2rXq1auX0tLSVFhY6LX/ihUrNHLkSN11111at26d0tPTlZ6ero0bN7r7lJSUaODAgXr22Wcb6m0AaAAVJ1YLDDntyFXlfZWFBQEAABqMzRjr/sSbnJysvn37asaMGZIkp9Op9u3b68EHH9Rjjz1Wrf+IESNUUlKiDz/80N3Wv39/JSUlafbs2R59d+zYoYSEBK1bt05JSUm1qqu4uFhRUVEqKipSZGRk7d8YAJ9bs/NH3TJrhdq3aqIvf3+NpAsk5Um7JfWPl3bvVtTxchWHh6j5sXIVNwmxuGIAAHA+qE02sGzkqqysTGvWrFFqaurJYux2paamKicnx+s+OTk5Hv0lKS0trcb+Z6u0tFTFxcUeNwD+xXXOVcjppgVyzhUAALCQZeFq//79cjgciomJ8WiPiYlRfn6+133y8/Nr1f9sZWZmKioqyn1r3779OT0fAN9zuFYLPN20QM65AgAAFrJ8QQt/MGHCBBUVFblvu3btsrokAKcoPxGugs5i5MrByBUAALBAsFUvHB0draCgIBUUFHi0FxQUKDY21us+sbGxtep/tsLCwhQWFnZOzwGgfrmnBbpHrkZKKz+RfpQ0Mk2SdKvTaN5/c2U/Wq5jKZ3UJDTImmIBAECjZNnIVWhoqHr37q3s7Gx3m9PpVHZ2tlJSUrzuk5KS4tFfkrKysmrsD+D8cXIpdle4el5K3iAN2SA9/7wk6S8hdnX6aLNafrxFuQePWlQpAABorCwbuZKkjIwMjR49Wn369FG/fv00ffp0lZSUaOzYsZKkUaNGKT4+XpmZmZKkcePGadCgQZo6daqGDRumBQsWaPXq1ZozZ477OQ8ePKjc3Fzt2bNHkrR161ZJlaNe5zrCBcA6rqXYg4Nq/puQzWZTx9YR2phXrJ0HStQttnlDlQcAAGDtOVcjRozQn//8Z02aNElJSUlav369lixZ4l60Ijc3V3v37nX3HzBggObPn685c+aoV69eeuedd7Ro0SL16NHD3ef999/XZZddpmHDhkmSbrvtNl122WXVlmoHEFgqToxcne46V5LUsVVTSWLkCgAANDhLr3Plr7jOFeB/Fq7epfHvbNCgi9ro1Tv71djv2SVbNOuLbRqV0lFP3dijxn4AAABnIyCucwUAtVHhPHXkKlE6EiT9L0hKTHS1aMq1FykvY5B2HmDkCgAANCzCFYCA4FotMMi9oMURqZlTinBKR464WnQsyC4TFsS0QAAA0OAIVwACQoX7IsJn92tr949Hud4VAABoUIQrAAGhtKJy5Cos+My/tmyyqdxhtOfQsfouCwAAwI1wBSAgHC93SJLCgs98YWDX1MEf9pfUa00AAABVEa4ABATXyFV4yJl/bQWfWPRiy97ieq0JAACgKsIVgIDgGrkKDznzyFXIiZGrzYQrAADQgAhXAALC8fITI1dnMS3QtejFlvzD9VoTAABAVYQrAAGh1D1ydTbTAiv7fF94RKUVjnqtCwAAwIVwBSAgHK9wLWhx5l9bQTYpMjxYFU6jbYUsagEAABpGsNUFAMDZKHVNC3SfczVbWvMf6Zik2QNdLTomqYnNptfaRWrV9oPavLdYl8RFWlEyAABoZAhXAAKCa+TqZLj6qdT7px59qj5aXSVcAQAANASmBQIICO4FLc7inCtJ6n5itGrdrkP1VRIAAIAHwhWAgOC+iPBZLMUuSckJrSVJX+86pKNlFfVWFwAAgAvTAgEEBNdFhE8uaLFG2rJBKpNUfqnUu7fWqPJhqKTLWzVRu6hw7S06rrU7D2lg12hrCgcAAI0GI1cAAkL1iwjfKCXeKbW6U7rxRleLBpy4t9lsSk5oJUlauf1Ag9cLAAAaH8IVgIBQm4sIu/S/sHJq4MofDtZLTQAAAFURrgAEhNpcRNgl+US4Ws95VwAAoAEQrgAEBNc5V+FnuaCFJHVqHaEOrSJU5nDq8y376qs0AAAASYQrAAHA4TQqc5y6oMWZ2Ww2De0ZK0n6cMOeeqkNAADAhXAFwO+VnriAsFS7kStJSk+KlyR9uqlAeYeO+bQuAACAqghXAPyeazELqfbh6uJ2kUq5sLUcTqPXVuzwcWUAAAAnEa4A+D3XMuwhQTYF2W213v/unyRIkuavylXx8XKf1gYAAOBCuALg945Vu8ZV7Vzdra26tG2mw8cr9LfPt/myNAAAADfCFQC/d+ho5WhTi4iQOu1vt9v02JBESdIr/9muXQeP+qw2AAAAF8IVAL9XdKxMktSiSWiV1s3S4d1S5G5p82ZXi4pO3J9q8MVtdUWX1ipzOPXMki31XTIAAGiECFcA/N6PJd5GrppLzeOlyHipeXNXiyJP3J/KZrPpD9dfIptN+mjDXq3Ytr++ywYAAI0M4QqA3zt0zBWuQs/Q8/QuiYvU7ckdJEnjF27QYRa3AAAAPkS4AuD3io66pgXW7Zyrqh4berEuaNlEeYeO6ZGFX6vc4TzzTgAAAGeBcAXA7/14YkGLlh7TAqdJOWnSJ2nStGmuFj154r4mzcKCNe3WJIUE2fTJtwV6cP4691LvAAAA54JwBcDvuaYFRnlMC5wmpXwqdf/UI1xN0enDlST1S2il2b/srdAgu5Z8m69fvrRSB0vK6qN0AADQiBCuAPi9Qz6cFugy+OIYzRvbV83Dg7V654/62awVLNEOAADOCeEKgN9zXeeqZVPfhStJGtAlWu/eN0BxUeH6YX+Jhv3lSz31wSZ99cMBOZzGp68FAADOf4QrAH5vb9FxSVJ0szCfP3fXmOZ69/4rdOkFUSo+XqFXlm/XbXO+Ur8/faZnl2zR3qJjPn9NAABwfgq2ugAAOJ0fS8q0/0ipJKlzm2b18hqxUeH61/1XKGtTgT7dlK/szYU6UFKmWV9s05xlP+i6S2J07SUxuvKiNvUS8AAAwPmBcAXAr31XeESSFN+iiZqG1d+vrCC7TUN6xGpIj1iVO5zK3lyoeSu266sfDurjjfn6eGO+JOmClk106QVR6hEfpUvjW6hHfOQ5X38LAACcH/xiWuDMmTPVqVMnhYeHKzk5WatWrTpt/4ULFyoxMVHh4eHq2bOnFi9e7LHdGKNJkyapXbt2atKkiVJTU/Xdd9/V51sAUE/+V3BYknRRTP2MWnkTEmTXkB6xWvCrFC1+6Cd64OrO6h4XKUna/eMxLf4mX88t2apfvrxSSU9l6SfPLdXYuav05Pvf6uX/bFfWpgJtzT+sQ0fLZAznbgEA0FhYPnL19ttvKyMjQ7Nnz1ZycrKmT5+utLQ0bd26VW3btq3Wf8WKFRo5cqQyMzP105/+VPPnz1d6errWrl2rHj16SJKee+45/eUvf9Grr76qhIQEPfHEE0pLS9OmTZsUHh7e0G8RwDnI+eGAJKlbbKQlr39JXKQuiYvU+LREFR0r17d5RdqQV6Rv8or0ze4i5R48ql0Hj2nXwWOS9lXbP9huU+tmobqgZYTat2yiDq0i1DYyXJFNQhTVJESR4cGKbBKiyPAQRTYJVlhwUMO/SQAA4BM2Y/GfVZOTk9W3b1/NmDFDkuR0OtW+fXs9+OCDeuyxx6r1HzFihEpKSvThhx+62/r376+kpCTNnj1bxhjFxcXp4Ycf1iOPPCJJKioqUkxMjObNm6fbbrvtjDUVFxcrKipKRUVFioy05gsdAOm7gsMa+uKXqnAaffTQQHWPi6qy9QJJedJuSf3jpd27XS2KV2VzQzh0tEyb9hRrx4Gj2nmwRLsOHtXOA0e16+BRFR+vqPXzhQbZ1Sw8WE3DgtQsLETNw4LVLDxYEaFBCrLbFGSzKcTdJ1jNwoIUFly5LSTIpiC7/cS9TcFVfg4Jsnv0Ca7WVuWx3a7gE212m012m2S32WSzSTabrR6OIgAA/qs22cDSkauysjKtWbNGEyZMcLfZ7XalpqYqJyfH6z45OTnKyMjwaEtLS9OiRYskSdu3b1d+fr5SU1Pd26OiopScnKycnByv4aq0tFSlpaXux8XFxefytnxqwrsb9F3BkbPuX5ekXJd8XbfXqcM+DfAiDfdeardTnV6jIY6x6vaZqa0Kp9HOAyWqcBr1S2h1SrCSpMulLUcrB4suv9zVovaS2tR7dSe1iAjVgC7RGtCl+rbSCocOlpRp3+FS7Tp4TLkHjyr34FEdOFKq4uPlKj5WceK+XIdLK2SMVOZw6mBJmQ6WSJL/rVRoOxG0gk6ErVPDl71KILOd6GevEspc2cx9L1uVn13bbJU/2yrbXI9dr6dT2k6X92yqeePp96v9TqeLnTXtdvp9zo8ge368CwBWiGvRRH8ZeZnVZdSKpeFq//79cjgciomJ8WiPiYnRli1bvO6Tn5/vtX9+fr57u6utpj6nyszM1JQpU+r0Hurbpr2H9fWuQ1aXAVimb6eWmvmLy71seV9KVOXtJ+4WvxIWHKR2UU3ULqqJLr2gxWn7Op1Gh0srVFJaoSOu2/GT9yVlFXI4jZzGqKzCqSOlDh0pLVdJqUNlDqcqHE5VOIwqnEYVzqo/myrbnCceV/7scBqVO8yJ+8ptZ7q+lzGSwxg56hTLAQA4exceLbO6hFqz/JwrfzBhwgSP0bDi4mK1b9/ewopOemxI5XketVGXP3bW5S+Ldfmrat1ep377S6f/6/Zpdqr3Xfz1GFe+Tu12qvW/o6T4lk3UsXXT2u0YoOx2m6JOnIdlJWOMO2SVO5wykoyzMlA5T9yM0YmfK0Oh+2djZKr87HTKvY8rs7lGPY379dyv7H5sTty7XsuostG4txt3P+eZRlHPuLnmDmd86nN46TON/jZEdG2YkwII4QDqLiI08KKKpRVHR0crKChIBQUFHu0FBQWKjY31uk9sbOxp+7vuCwoK1K5dO48+SUlJXp8zLCxMYWH+ee2alM6trS4BQCNis1WegxUSJIWHsLgGAAC1YelS7KGhoerdu7eys7PdbU6nU9nZ2UpJSfG6T0pKikd/ScrKynL3T0hIUGxsrEef4uJirVy5ssbnBAAAAIBzZfl1rjIyMvT3v/9dr776qjZv3qz77rtPJSUlGjt2rCRp1KhRHgtejBs3TkuWLNHUqVO1ZcsWPfnkk1q9erV+85vfSKr8q+tvf/tb/fGPf9T777+vb775RqNGjVJcXJzS09OteIsA6sVwaUsr6ctW0vDhrhalnLgHAABoaJZPZBwxYoT27dunSZMmKT8/X0lJSVqyZIl7QYrc3FzZ7Scz4IABAzR//nw9/vjjmjhxorp27apFixa5r3ElSb///e9VUlKiX/3qVzp06JAGDhyoJUuWcI0r4LyyVkr8UWomae1aV4t7KXYAAICGZvl1rvwR17kCAoF/XOcKAACc32qTDSyfFggAAAAA5wPCFQAAAAD4AOEKAAAAAHyAcAUAAAAAPkC4AgAAAAAfIFwBAAAAgA9Yfp0rf+Ranb64uNjiSgDUzFl5d1iS0ykVF7ta5JTE/3sBAIAvuDLB2VzBinDlxeHDhyVJ7du3t7gSAGdnrxQVVfWRomruDAAAUGuHDx9WVNTpv2FwEWEvnE6n9uzZo+bNm8tms1ldzlkrLi5W+/bttWvXLi5+3IA47tbh2FuHY28djr11OPbW4dhbh2NfOWJ1+PBhxcXFyW4//VlVjFx5YbfbdcEFF1hdRp1FRkY22g+/lTju1uHYW4djbx2OvXU49tbh2FunsR/7M41YubCgBQAAAAD4AOEKAAAAAHyAcHUeCQsL0+TJkxUWFmZ1KY0Kx906HHvrcOytw7G3DsfeOhx763Dsa4cFLQAAAADABxi5AgAAAAAfIFwBAAAAgA8QrgAAAADABwhXAAAAAOADhKsA1KlTJ9lsNo/bM88849Fnw4YN+slPfqLw8HC1b99ezz33XLXnWbhwoRITExUeHq6ePXtq8eLFDfUWAtKOHTt01113KSEhQU2aNFHnzp01efJklZWVefQ59d/GZrPpq6++8ngujr1vzJw5U506dVJ4eLiSk5O1atUqq0sKaJmZmerbt6+aN2+utm3bKj09XVu3bvXoc9VVV1X7fP/617/26JObm6thw4YpIiJCbdu21fjx41VRUdGQbyXgPPnkk9WOa2Jionv78ePH9cADD6h169Zq1qyZbrnlFhUUFHg8B8e9brz9N9Vms+mBBx6QxGfel5YtW6YbbrhBcXFxstlsWrRokcd2Y4wmTZqkdu3aqUmTJkpNTdV3333n0efgwYO6/fbbFRkZqRYtWuiuu+7SkSNHPPqczXegxuZ0x768vFyPPvqoevbsqaZNmyouLk6jRo3Snj17PJ7DV98/z3sGAadjx47mqaeeMnv37nXfjhw54t5eVFRkYmJizO233242btxo3nrrLdOkSRPz//7f/3P3Wb58uQkKCjLPPfec2bRpk3n88cdNSEiI+eabb6x4SwHh448/NmPGjDGffPKJ2bZtm3nvvfdM27ZtzcMPP+zus337diPJfPbZZx7/PmVlZe4+HHvfWLBggQkNDTWvvPKK+fbbb80999xjWrRoYQoKCqwuLWClpaWZuXPnmo0bN5r169eb66+/3nTo0MHj98ugQYPMPffc4/H5Lioqcm+vqKgwPXr0MKmpqWbdunVm8eLFJjo62kyYMMGKtxQwJk+ebLp37+5xXPft2+fe/utf/9q0b9/eZGdnm9WrV5v+/fubAQMGuLdz3OuusLDQ47hnZWUZSebzzz83xvCZ96XFixebP/zhD+bdd981ksy//vUvj+3PPPOMiYqKMosWLTJff/21GT58uElISDDHjh1z9xkyZIjp1auX+eqrr8yXX35punTpYkaOHOnefjbfgRqj0x37Q4cOmdTUVPP222+bLVu2mJycHNOvXz/Tu3dvj+fwxffPxoBwFYA6duxoXnjhhRq3/+1vfzMtW7Y0paWl7rZHH33UdOvWzf341ltvNcOGDfPYLzk52dx7770+r/d89txzz5mEhAT3Y1e4WrduXY37cOx9o1+/fuaBBx5wP3Y4HCYuLs5kZmZaWNX5pbCw0Egy//73v91tgwYNMuPGjatxn8WLFxu73W7y8/PdbbNmzTKRkZEev5PgafLkyaZXr15etx06dMiEhISYhQsXuts2b95sJJmcnBxjDMfdl8aNG2c6d+5snE6nMYbPfH059Qu+0+k0sbGx5vnnn3e3HTp0yISFhZm33nrLGGPMpk2bjCTz3//+193n448/NjabzeTl5Rljzu47UGPnLdieatWqVUaS2blzp7vNF98/GwOmBQaoZ555Rq1bt9Zll12m559/3mP6QU5Ojq688kqFhoa629LS0rR161b9+OOP7j6pqakez5mWlqacnJyGeQPniaKiIrVq1apa+/Dhw9W2bVsNHDhQ77//vsc2jv25Kysr05o1azyOo91uV2pqKsfRh4qKiiSp2mf8zTffVHR0tHr06KEJEybo6NGj7m05OTnq2bOnYmJi3G1paWkqLi7Wt99+2zCFB6jvvvtOcXFxuvDCC3X77bcrNzdXkrRmzRqVl5d7fN4TExPVoUMH9+ed4+4bZWVleuONN3TnnXfKZrO52/nM17/t27crPz/f43MeFRWl5ORkj895ixYt1KdPH3ef1NRU2e12rVy50t3nTN+BcGZFRUWy2Wxq0aKFR/u5fv9sDIKtLgC199BDD+nyyy9Xq1attGLFCk2YMEF79+7VtGnTJEn5+flKSEjw2Mf1Sz8/P18tW7ZUfn6+x38IXH3y8/Mb5k2cB77//nv99a9/1Z///Gd3W7NmzTR16lRdccUVstvt+uc//6n09HQtWrRIw4cPlySOvQ/s379fDofD63HcsmWLRVWdX5xOp37729/qiiuuUI8ePdztv/jFL9SxY0fFxcVpw4YNevTRR7V161a9++67kmr+fLu2wbvk5GTNmzdP3bp10969ezVlyhT95Cc/0caNG5Wfn6/Q0NBqX3Kq/t7guPvGokWLdOjQIY0ZM8bdxme+YbiO1en++5ifn6+2bdt6bA8ODlarVq08+pzpOxBO7/jx43r00Uc1cuRIRUZGutt98f2zMSBc+YnHHntMzz777Gn7bN68WYmJicrIyHC3XXrppQoNDdW9996rzMxMhYWF1Xep553aHHuXvLw8DRkyRD//+c91zz33uNujo6M9/n369u2rPXv26Pnnn3eHKyAQPPDAA9q4caP+85//eLT/6le/cv/cs2dPtWvXToMHD9a2bdvUuXPnhi7zvDF06FD3z5deeqmSk5PVsWNH/eMf/1CTJk0srKxxefnllzV06FDFxcW52/jMozEpLy/XrbfeKmOMZs2a5bGN759nh3DlJx5++GGPv5R5c+GFF3ptT05OVkVFhXbs2KFu3bopNja22ipSrsexsbHue299XNsbk9oe+z179ujqq6/WgAEDNGfOnDM+f3JysrKystyPOfbnLjo6WkFBQRzHevKb3/xGH374oZYtW6YLLrjgtH2Tk5MlVY7kdu7cWbGxsdVWbTz19w/OrEWLFrrooov0/fff69prr1VZWZkOHTrkMXpV9fPOcT93O3fu1GeffeYekaoJn/n64TpWBQUFateunbu9oKBASUlJ7j6FhYUe+1VUVOjgwYNn/H5T9TXgnStY7dy5U0uXLvUYtfKmLt8/GwPOufITbdq0UWJi4mlvVeewVrV+/XrZ7Xb3UHlKSoqWLVum8vJyd5+srCx169bNPSSbkpKi7Oxsj+fJyspSSkpKPb1D/1WbY5+Xl6errrpKvXv31ty5c2W3n/n/QuvXr/f4DwXH/tyFhoaqd+/eHsfR6XQqOzub43gOjDH6zW9+o3/9619aunRptekd3qxfv16S3J/xlJQUffPNNx5fgLKyshQZGalLLrmkXuo+Hx05ckTbtm1Tu3bt1Lt3b4WEhHh83rdu3arc3Fz3553jfu7mzp2rtm3batiwYaftx2e+fiQkJCg2Ntbjc15cXKyVK1d6fM4PHTqkNWvWuPssXbpUTqfTHXrP5jsQqnMFq++++06fffaZWrdufcZ96vL9s1GwekUN1M6KFSvMCy+8YNavX2+2bdtm3njjDdOmTRszatQod59Dhw6ZmJgYc8cdd5iNGzeaBQsWmIiIiGpLsQcHB5s///nPZvPmzWby5MksB34Gu3fvNl26dDGDBw82u3fv9liK1GXevHlm/vz5ZvPmzWbz5s3mT3/6k7Hb7eaVV15x9+HY+8aCBQtMWFiYmTdvntm0aZP51a9+ZVq0aOGxYhdq57777jNRUVHmiy++8Ph8Hz161BhjzPfff2+eeuops3r1arN9+3bz3nvvmQsvvNBceeWV7udwLUt93XXXmfXr15slS5aYNm3asCz1GTz88MPmiy++MNu3bzfLly83qampJjo62hQWFhpjKpdi79Chg1m6dKlZvXq1SUlJMSkpKe79Oe7nxuFwmA4dOphHH33Uo53PvG8dPnzYrFu3zqxbt85IMtOmTTPr1q1zr0j3zDPPmBYtWpj33nvPbNiwwdx4441el2K/7LLLzMqVK81//vMf07VrV4+l2M/mO1BjdLpjX1ZWZoYPH24uuOACs379eo/f/66V/3z1/bMxIFwFmDVr1pjk5GQTFRVlwsPDzcUXX2z+7//+zxw/ftyj39dff20GDhxowsLCTHx8vHnmmWeqPdc//vEPc9FFF5nQ0FDTvXt389FHHzXU2whIc+fONZK83lzmzZtnLr74YhMREWEiIyNNv379PJZPduHY+8Zf//pX06FDBxMaGmr69etnvvrqK6tLCmg1fb7nzp1rjDEmNzfXXHnllaZVq1YmLCzMdOnSxYwfP97jmj/GGLNjxw4zdOhQ06RJExMdHW0efvhhU15ebsE7ChwjRoww7dq1M6GhoSY+Pt6MGDHCfP/99+7tx44dM/fff79p2bKliYiIMDfddJPHH3aM4bifi08++cRIMlu3bvVo5zPvW59//rnX3zGjR482xlQux/7EE0+YmJgYExYWZgYPHlzt3+TAgQNm5MiRplmzZiYyMtKMHTvWHD582KPP2XwHamxOd+xdl5HxdnNd782X3z/PdzZjjGmAATIAAAAAOK9xzhUAAAAA+ADhCgAAAAB8gHAFAAAAAD5AuAIAAAAAHyBcAQAAAIAPEK4AAAAAwAcIVwAAAADgA4QrAAAAAPABwhUAAAAA+ADhCgAAAAB8gHAFAAAAAD5AuAIAAAAAH/j/m1RYNmboLTMAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Minimum:-75.00\n", + "Mean:6.51\n", + "Median:-3.00\n", + "Mode:-7.00\n", + "Maximum:852.00\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_12428\\3811281340.py:40: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + " fig.show()\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAlUAAAHgCAYAAACM6ZjpAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABWAElEQVR4nO3deVxU9f4/8NewzADCDCrCgLKpGJqoCUm4lCVXNDS3ummUaORSUBg3S63MrhVmV9PUNO2K9nUr7i1Tc+NiriAq7ua+obJoIgyLrPP5/eFvTgygAh4Yltfz8TgPmfP5nM+8z3y6M6975pwzCiGEABERERE9EjNTF0BERETUGDBUEREREcmAoYqIiIhIBgxVRERERDJgqCIiIiKSAUMVERERkQwYqoiIiIhkwFBFREREJAOGKiIiIiIZMFQRUZM1ZswYeHh41MlzeXh4YMyYMdLjFStWQKFQ4NChQ3Xy/H379kXfvn3r5LmImiqGKiKqwPCBb1isrKzg4uKCoKAgfPPNN8jJyanx2AkJCZgxYwaysrLkKxjAjBkzjGq2sbGBm5sbBg8ejJiYGBQWFsryPH/88QdmzJiBK1euyDKenOpzbURNgYWpCyCi+uuf//wnPD09UVxcjPT0dOzcuROTJk3C3LlzsWHDBnTp0qXaYyYkJODTTz/FmDFjYG9vL3vNixcvhq2tLQoLC3Hjxg1s27YNr7/+OubNm4dNmzbB1dVV6rts2TLo9fpqjf/HH3/g008/Rd++fat1lOvs2bMwM6vd/x/7oNq2b99eq89NRAxVRPQAAwcOhJ+fn/R46tSp2LFjBwYNGoQXXngBp0+fhrW1tQkrrOjFF1+Eg4OD9Hj69OlYvXo1Ro8ejZdeegn79++X2iwtLWu1FiEECgoKYG1tDZVKVavP9TBKpdKkz0/UFPDrPyKqlueeew4ff/wxrl69ilWrVknrjx8/jjFjxqBt27awsrKCVqvF66+/jtu3b0t9ZsyYgcmTJwMAPD09pa/qDF9XxcTE4LnnnoOjoyNUKhU6deqExYsXP3LNISEheOONN5CUlIS4uDhpfWXnVK1btw6+vr6ws7ODWq2Gj48P5s+fD+De16IvvfQSAODZZ5+V6t+5cyeAe+dNDRo0CNu2bYOfnx+sra3x3XffSW1lz6kyyM/Px4QJE9CyZUuo1WqMHj0ad+7cMeqjUCgwY8aMCtuWHfNhtVV2TtXNmzcRFhYGJycnWFlZoWvXrli5cqVRnytXrkChUOBf//oXli5dinbt2kGlUuHJJ5/EwYMHK329iZoqHqkiomp77bXXMG3aNGzfvh3jxo0DAMTFxeHSpUsYO3YstFotTp06haVLl+LUqVPYv38/FAoFhg8fjnPnzmHt2rX4+uuvpSNKrVq1AnDvq7vHH38cL7zwAiwsLLBx40a89dZb0Ov1CA8Pf+Saly5diu3bt+Nvf/tbpX3i4uIwatQo9OvXD19++SUA4PTp09i3bx8iIyPx9NNP45133sE333yDadOmoWPHjgAg/Qvc+5pv1KhRmDBhAsaNG4fHHnvsgXVFRETA3t4eM2bMwNmzZ7F48WJcvXoVO3fuhEKhqPL+VaW2su7evYu+ffviwoULiIiIgKenJ2JjYzFmzBhkZWUhMjLSqP+aNWuQk5ODCRMmQKFQYPbs2Rg+fDguXbpU60f8iBoMQURUTkxMjAAgDh48eN8+Go1GPPHEE9Lj/Pz8Cn3Wrl0rAIjdu3dL67766isBQFy+fLlC/8rGCAoKEm3btn1ozZ988okAIG7dulVp+507dwQAMWzYMGldaGiocHd3lx5HRkYKtVotSkpK7vs8sbGxAoD4/fffK7S5u7sLAGLr1q2VtoWGhkqPDa+xr6+vKCoqktbPnj1bABC//vqrtA6A+OSTTx465oNqe+aZZ8QzzzwjPZ43b54AIFatWiWtKyoqEgEBAcLW1lbodDohhBCXL18WAETLli1FZmam1PfXX38VAMTGjRsrPBdRU8Wv/4ioRmxtbY2uAix7blVBQQH+/PNPPPXUUwCAw4cPV2nMsmNkZ2fjzz//xDPPPINLly4hOzv7kesF8MArF+3t7ZGXl2f0FWF1eXp6IigoqMr9x48fb3Sk580334SFhQU2b95c4xqqYvPmzdBqtRg1apS0ztLSEu+88w5yc3Oxa9cuo/4vv/wymjdvLj3u06cPAODSpUu1WidRQ8JQRUQ1kpubCzs7O+lxZmYmIiMj4eTkBGtra7Rq1Qqenp4AUOVAtG/fPgQGBqJZs2awt7dHq1atMG3atGqN8aB6ARjVXN5bb72FDh06YODAgWjTpg1ef/11bN26tVrPY9jnqvLy8jJ6bGtrC2dn51q/LcLVq1fh5eVV4YpEw9eFV69eNVrv5uZm9NgQsMqf/0XUlPGcKiKqtuvXryM7Oxvt27eX1v39739HQkICJk+ejG7dusHW1hZ6vR4DBgyo0m0LLl68iH79+sHb2xtz586Fq6srlEolNm/ejK+//rratz4o7+TJkwBgVHN5jo6OOHr0KLZt24YtW7Zgy5YtiImJwejRoyucwH0/dXk1ZGlpaZ09l7m5eaXrhRB1VgNRfcdQRUTV9n//938AIH3NdefOHcTHx+PTTz/F9OnTpX7nz5+vsO39Tr7euHEjCgsLsWHDBqOjIr///nut1Hw/SqUSgwcPxuDBg6HX6/HWW2/hu+++w8cff4z27dtX6+Txqjh//jyeffZZ6XFubi7S0tLw/PPPS+uaN29e4WapRUVFSEtLM1pXndrc3d1x/Phx6PV6o6NVZ86ckdqJqHr49R8RVcuOHTswc+ZMeHp6IiQkBMBfRzHKH7WYN29ehe2bNWsGABVCQmVjZGdnIyYm5pFrXrNmDb7//nsEBASgX79+9+1X9vYPAGBmZibd4NRwR/b71V9TS5cuRXFxsfR48eLFKCkpwcCBA6V17dq1w+7duytsV/5IVXVqe/7555Geno4ff/xRWldSUoIFCxbA1tYWzzzzTE12h6hJ45EqIrqvLVu24MyZMygpKUFGRgZ27NiBuLg4uLu7Y8OGDbCysgIAqNVqPP3005g9ezaKi4vRunVrbN++HZcvX64wpq+vLwDgww8/xMiRI2FpaYnBgwejf//+0lGiCRMmIDc3F8uWLYOjo2OFIzIP8p///Ae2trYoKiqS7qi+b98+dO3aFbGxsQ/c9o033kBmZiaee+45tGnTBlevXsWCBQvQrVs36Vyjbt26wdzcHF9++SWys7OhUqmke2vVRFFREfr164e///3vOHv2LL799lv07t0bL7zwglFdEydOxIgRI/C3v/0Nx44dw7Zt24xuclrd2saPH4/vvvsOY8aMQXJyMjw8PPCf//wH+/btw7x58x547hkR3YeJrz4konrIcLm/YVEqlUKr1Yq//e1vYv78+dLl9mVdv35dDBs2TNjb2wuNRiNeeuklkZqaWuntAGbOnClat24tzMzMjG6vsGHDBtGlSxdhZWUlPDw8xJdffimWL19+31swlGW4pYJhsbKyEm3atBGDBg0Sy5cvFwUFBRW2KX9Lhf/85z+if//+wtHRUSiVSuHm5iYmTJgg0tLSjLZbtmyZaNu2rTA3Nze6hYG7u7sIDg6utL773VJh165dYvz48aJ58+bC1tZWhISEiNu3bxttW1paKj744APh4OAgbGxsRFBQkLhw4UKFMR9UW/lbKgghREZGhhg7dqxwcHAQSqVS+Pj4iJiYGKM+hlsqfPXVVxX2qbK5JWrKFELwLEMiIiKiR8VzqoiIiIhkwFBFREREJAOGKiIiIiIZMFQRERERyYChioiIiEgGDFVEREREMmCoIiIiIpIBQxURERGRDBiqiIiIiGTAUEVEREQkA4YqIiIiIhkwVBERERHJgKGKiIiISAYMVUREREQyYKgiIiIikgFDFREREZEMGKqIiIiIZMBQRURERCQDhioiIiIiGTBUEREREcmAoYqIiIhIBgxVRERERDJgqCIiIiKSAUMVERERkQwYqoiIiIhkwFBFREREJAOGKiIiIiIZMFQRERERyYChioiIiEgGDFVEREREMmCoIiIiIpKBhakLaEr0ej1SU1NhZ2cHhUJh6nKIiIioCoQQyMnJgYuLC8zM7n88iqGqDqWmpsLV1dXUZRAREVENXLt2DW3atLlvO0NVHbKzswNwb1LUarVs4y5cuBA5OTmws7NDRESEbONWnzeANOAGgH7OwJkzZdfCGcAZ0xVHRESNWG1+Fup0Ori6ukqf4/fDUFWHDF/5qdVqWUOVlZUViouLYWVlJeu41ff/D4nqAJiZAf+/FrMyraasjoiIGq+6+Cx82Kk7PFGdiIiISAYMVUREREQyYKgiIiIikgHPqWoEunfvjsLCQqhUKhNXMg5I3ApkAxg3oOxaZAPQmKosIiJq9OrDZ6FCCCFM9uxNjE6ng0ajQXZ2tolPKCciIqKqqurnN49UNRIeU34zdQk1cmVWsKlLICIikgXPqSIiIiKSAUMVERERkQz49V8jMHfuXIy1zkGesMRPBV1NVkfi1FA4a24D14G0ji0REL4SAHB96nMo1VjDPPsu2kTvMFl9RETUeM2dO1e6o3pUVJRJauCRKiIiIiIZMFQRERERyYChioiIiEgGDFVEREREMmCoIiIiIpIBQxURERGRDBiqiIiIiGRg0lAVHR2NJ598EnZ2dnB0dMTQoUNx9uxZoz4FBQUIDw9Hy5YtYWtrixEjRiAjI8OoT0pKCoKDg2FjYwNHR0dMnjwZJSUlRn127tyJ7t27Q6VSoX379lixYkWFehYtWgQPDw9YWVnB398fBw4cqHYtRERE1DSZNFTt2rUL4eHh2L9/P+Li4lBcXIz+/fsjLy9P6vPuu+9i48aNiI2Nxa5du5Camorhw4dL7aWlpQgODkZRURESEhKwcuVKrFixAtOnT5f6XL58GcHBwXj22Wdx9OhRTJo0CW+88Qa2bdsm9fnxxx8RFRWFTz75BIcPH0bXrl0RFBSEmzdvVrkWIiIiaroUQghh6iIMbt26BUdHR+zatQtPP/00srOz0apVK6xZswYvvvgiAODMmTPo2LEjEhMT8dRTT2HLli0YNGgQUlNT4eTkBABYsmQJPvjgA9y6dQtKpRIffPABfvvtN5w8eVJ6rpEjRyIrKwtbt24FAPj7++PJJ5/EwoULAQB6vR6urq54++23MWXKlCrVUl5hYSEKCwulxzqdDq6urg/9levqunLlCl5ZmgA9FEjXyzdudT3V9ji6ZJ4DCoDj5zpgv1sXAEBB2xYQ5mZQlOphdSnTaBv+oDIREcnhypUrKCkpgYWFBTw8PGQdW6fTQaPRPPTzu16dU5WdnQ0AaNGiBQAgOTkZxcXFCAwMlPp4e3vDzc0NiYmJAIDExET4+PhIgQoAgoKCoNPpcOrUKalP2TEMfQxjFBUVITk52aiPmZkZAgMDpT5VqaW86OhoaDQaaXF1da3ZC/MQHh4eSNVrTBqoAGD/pS5YmvUilha8KAUqALC6lAnr839WCFRERERy8fDwQPv27WUPVNVRb0KVXq/HpEmT0KtXL3Tu3BkAkJ6eDqVSCXt7e6O+Tk5OSE9Pl/qUDVSGdkPbg/rodDrcvXsXf/75J0pLSyvtU3aMh9VS3tSpU5GdnS0t165dq+KrQURERA1NvflB5fDwcJw8eRJ79+41dSmyUalUUKlUpi6DiIiI6kC9CFURERHYtGkTdu/ejTZt2kjrtVotioqKkJWVZXSEKCMjA1qtVupT/io9wxV5ZfuUv0ovIyMDarUa1tbWMDc3h7m5eaV9yo7xsFpM5cqVK3Axy26Q51QRERHJoTbPqaoqk379J4RAREQEfvnlF+zYsQOenp5G7b6+vrC0tER8fLy07uzZs0hJSUFAQAAAICAgACdOnDC6Si8uLg5qtRqdOnWS+pQdw9DHMIZSqYSvr69RH71ej/j4eKlPVWoxlZ9//hlBqvN4WnnZpHV8/fIcTJuyAtPeWIGvN86R1v/5cjfcDPPHny93M11xRETUqP38889YvXo1fv75Z5PVYNIjVeHh4VizZg1+/fVX2NnZSecmaTQaWFtbQ6PRICwsDFFRUWjRogXUajXefvttBAQESFfb9e/fH506dcJrr72G2bNnIz09HR999BHCw8Olr94mTpyIhQsX4v3338frr7+OHTt24KeffsJvv/0m1RIVFYXQ0FD4+fmhR48emDdvHvLy8jB27FippofVQkRERE2XSUPV4sWLAQB9+/Y1Wh8TE4MxY8YAAL7++muYmZlhxIgRKCwsRFBQEL799lupr7m5OTZt2oQ333wTAQEBaNasGUJDQ/HPf/5T6uPp6YnffvsN7777LubPn482bdrg+++/R1BQkNTn5Zdfxq1btzB9+nSkp6ejW7du2Lp1q9HJ6w+rhYiIiJouk4aqqtwiy8rKCosWLcKiRYvu28fd3R2bN29+4Dh9+/bFkSNHHtgnIiICERERj1QLERERNU315pYKRERERA0ZQxURERGRDBiqiIiIiGTAUEVEREQkA4YqIiIiIhkwVBERERHJQCGqcl8DkoVOp4NGo0F2djbUanl/TsZjym8P71QPXZkVbOoSiIiIHqiqn988UkVEREQkA4YqIiIiIhkwVBERERHJwKQ/U0Py2LlzJ560vIZiYY6jJS4mqyOy3xo8fTsZyAZ2/58v5vd+BQCQ1c8LeisLmBWUwD7+vMnqIyKixmvnzp0oLCyESqWq8JvCdYWhqhE4fPgwOlvkIE9YmjRUjeyxDc6a28B1wOW9P6VQldvDFaUaa5hn32WoIiKiWnH48GHk5OTAzs7OZKGKX/8RERERyYChioiIiEgGDFVEREREMmCoIiIiIpIBQxURERGRDBiqiIiIiGTAUEVEREQkA4YqIiIiIhnw5p+NgIeHB7YevYoCYdrpTLrUGQH5x6G4BSS5dZbWqy5lQt9MCbO8IhNWR0REjZmHhwfy8/NhY2NjshoUQghhsmdvYnQ6HTQaDbKzs6FWq2Ud22PKb7KOV1euzAo2dQlEREQPVNXP7xp9/Xfp0qUaF0ZERETUGNUoVLVv3x7PPvssVq1ahYKCArlrIiIiImpwahSqDh8+jC5duiAqKgparRYTJkzAgQMH5K6NiIiIqMGoUajq1q0b5s+fj9TUVCxfvhxpaWno3bs3OnfujLlz5+LWrVtVGmf37t0YPHgwXFxcoFAosH79eqP2MWPGQKFQGC0DBgww6pOZmYmQkBCo1WrY29sjLCwMubm5Rn2OHz+OPn36wMrKCq6urpg9e3aFWmJjY+Ht7Q0rKyv4+Phg8+bNRu1CCEyfPh3Ozs6wtrZGYGAgzp8/X6X9rG0rV67EUNVJDFCeNWkda8ZNwx+vj8AfwSOwZu00aX36OH+kvvs00sf5m7A6IiJqzFauXIlvv/0WK1euNFkNj3RLBQsLCwwfPhyxsbH48ssvceHCBbz33ntwdXXF6NGjkZaW9sDt8/Ly0LVrVyxatOi+fQYMGIC0tDRpWbt2rVF7SEgITp06hbi4OGzatAm7d+/G+PHjpXadTof+/fvD3d0dycnJ+OqrrzBjxgwsXbpU6pOQkIBRo0YhLCwMR44cwdChQzF06FCcPHlS6jN79mx88803WLJkCZKSktCsWTMEBQXVi68/b9++jeZmBVCbmbYWT4cbsOlQCBvPQnhm3pDWlzg0Q7GTHUocmpmwOiIiasxu376NW7du4fbt2yar4ZFC1aFDh/DWW2/B2dkZc+fOxXvvvYeLFy8iLi4OqampGDJkyAO3HzhwID777DMMGzbsvn1UKhW0Wq20NG/eXGo7ffo0tm7diu+//x7+/v7o3bs3FixYgHXr1iE1NRUAsHr1ahQVFWH58uV4/PHHMXLkSLzzzjuYO3euNM78+fMxYMAATJ48GR07dsTMmTPRvXt3LFy4EMC9o1Tz5s3DRx99hCFDhqBLly744YcfkJqaWuHoGhERETVNNQpVc+fOhY+PD3r27InU1FT88MMPuHr1Kj777DN4enqiT58+WLFiBQ4fPvzIBe7cuROOjo547LHH8Oabbxol0MTERNjb28PPz09aFxgYCDMzMyQlJUl9nn76aSiVSqlPUFAQzp49izt37kh9AgMDjZ43KCgIiYmJAIDLly8jPT3dqI9Go4G/v7/UpzKFhYXQ6XRGCxERETVONQpVixcvxiuvvIKrV69i/fr1GDRoEMzMjIdydHTEv//970cqbsCAAfjhhx8QHx+PL7/8Ert27cLAgQNRWloKAEhPT4ejo6PRNhYWFmjRogXS09OlPk5OTkZ9DI8f1qdse9ntKutTmejoaGg0GmlxdXWt1v4TERFRw1GjW3BX5QRtpVKJ0NDQmgwvGTlypPS3j48PunTpgnbt2mHnzp3o16/fI41dF6ZOnYqoqCjpsU6nY7AiIiJqpGp0pComJgaxsbEV1sfGxtbqWfdt27aFg4MDLly4AADQarW4efOmUZ+SkhJkZmZCq9VKfTIyMoz6GB4/rE/Z9rLbVdanMiqVCmq12mghIiKixqlGoSo6OhoODg4V1js6OuKLL7545KLu5/r167h9+zacnZ0BAAEBAcjKykJycrLUZ8eOHdDr9fD395f67N69G8XFxVKfuLg4PPbYY9JJ7wEBAYiPjzd6rri4OAQEBAAAPD09odVqjfrodDokJSVJfYiIiKhpq1GoSklJgaenZ4X17u7uSElJqfI4ubm5OHr0KI4ePQrg3gnhR48eRUpKCnJzczF58mTs378fV65cQXx8PIYMGYL27dsjKCgIANCxY0cMGDAA48aNw4EDB7Bv3z5ERERg5MiRcHFxAQC88sorUCqVCAsLw6lTp/Djjz9i/vz5Rl/LRUZGYuvWrZgzZw7OnDmDGTNm4NChQ4iIiAAAKBQKTJo0CZ999hk2bNiAEydOYPTo0XBxccHQoUNr8hISERFRI1Ojc6ocHR1x/PhxeHh4GK0/duwYWrZsWeVxDh06hGeffVZ6bAg6oaGhWLx4MY4fP46VK1ciKysLLi4u6N+/P2bOnAmVSiVts3r1akRERKBfv34wMzPDiBEj8M0330jtGo0G27dvR3h4OHx9feHg4IDp06cb3cuqZ8+eWLNmDT766CNMmzYNXl5eWL9+PTp37iz1ef/995GXl4fx48cjKysLvXv3xtatW2FlZVXl/SUiIqLGSyGEENXd6IMPPsCPP/6ImJgYPP300wCAXbt24fXXX8eLL76If/3rX7IX2hhU9Veuqys5ORnTfzmKYmGOc6WtZBu3ukb12Irefx6ByAH2xT2Btd3u3f0+p4crhNICiqIS2B24ZrTNlVnBpiiViIgameTkZBQVFUGpVMLX11fWsav6+V2jUFVUVITXXnsNsbGxsLC4d7BLr9dj9OjRWLJkidE9oegvtRWqAMBjym+yjldXGKqIiKi+q+rnd42+/lMqlfjxxx8xc+ZMHDt2DNbW1vDx8YG7u3uNCyYiIiJqyGoUqgw6dOiADh06yFULERERUYNVo1BVWlqKFStWID4+Hjdv3oRerzdq37FjhyzFUdXk5OTABkUQAO7CdF+9trLLhOPdTKAEuJnbArdsWwAASuxUgEIBCAGLnEKT1UdERI1XTk4OhBBQKBSws7MzSQ01ClWRkZFYsWIFgoOD0blzZygUCrnrompYtmwZXrbOQZ6wxE8FXU1Wx4aId+GsuQ1cB9I6tkRA+L0bwaZH9EKpxhrm2XfRJpqBm4iI5Lds2TLk5OTAzs7O6LZJdalGoWrdunX46aef8Pzzz8tdDxEREVGDVKObfyqVSrRv317uWoiIiIgarBqFqn/84x+YP38+anA3BiIiIqJGqUZf/+3duxe///47tmzZgscffxyWlpZG7T///LMsxRERERE1FDUKVfb29hg2bJjctRARERE1WDUKVTExMXLXQURERNSg1eicKgAoKSnB//73P3z33XfIyckBAKSmpiI3N1e24oiIiIgaihodqbp69SoGDBiAlJQUFBYW4m9/+xvs7Ozw5ZdforCwEEuWLJG7TiIiIqJ6rUZHqiIjI+Hn54c7d+7A2tpaWj9s2DDEx8fLVhwRERFRQ1GjI1V79uxBQkIClErjn0Tx8PDAjRs3ZCmMqm706NEInLMTepj2zvYhyz6HR04qRDFwdaSLtN5pWRKEmQIKPW/BQUREtWP06NHQ6/UwM6vxmU2PrEahSq/Xo7S0tML669evm+z3dpoyBwcHZAnrh3esZZf+bINLaHPvQcu/1lv+mWeagoiIqMlwcHAwdQk1+/qvf//+mDdvnvRYoVAgNzcXn3zyCX+6hoiIiJqkGh2pmjNnDoKCgtCpUycUFBTglVdewfnz5+Hg4IC1a9fKXSMRERFRvVejUNWmTRscO3YM69atw/Hjx5Gbm4uwsDCEhIQYnbhOdePEiRPwMr+FUpjhUmnLh29QS17ouhMBfx4H8oHEfV2woVNfAEBeVxfoleYwKypFs2OpJquPiIgarxMnTqC4uBiWlpbw8fExSQ01ClUAYGFhgVdffVXOWqiG4uLi0FuZgzxhadJQNfX5GDhrbgPXgb6fJUuh6s7z3ijVWMM8+y5DFRER1Yq4uDjk5OTAzs6uYYWqH3744YHto0ePrlExRERERA1VjUJVZGSk0ePi4mLk5+dDqVTCxsaGoYqIiIianBpd/Xfnzh2jJTc3F2fPnkXv3r15ojoRERE1SbLdIcvLywuzZs2qcBSLiIiIqCmQ9bajFhYWSE3lichERETU9NTonKoNGzYYPRZCIC0tDQsXLkSvXr1kKYyIiIioIanRkaqhQ4caLcOHD8eMGTPQpUsXLF++vMrj7N69G4MHD4aLiwsUCgXWr19v1C6EwPTp0+Hs7Axra2sEBgbi/PnzRn0yMzMREhICtVoNe3t7hIWFITc316jP8ePH0adPH1hZWcHV1RWzZ8+uUEtsbCy8vb1hZWUFHx8fbN68udq1EBERUdNVo1Cl1+uNltLSUqSnp2PNmjVwdnau8jh5eXno2rUrFi1aVGn77Nmz8c0332DJkiVISkpCs2bNEBQUhIKCAqlPSEgITp06hbi4OGzatAm7d+/G+PHjpXadTof+/fvD3d0dycnJ+OqrrzBjxgwsXbpU6pOQkIBRo0YhLCwMR44ckcLiyZMnq1ULERERNV01vvmnHAYOHIiBAwdW2iaEwLx58/DRRx9hyJAhAO7dH8vJyQnr16/HyJEjcfr0aWzduhUHDx6En58fAGDBggV4/vnn8a9//QsuLi5YvXo1ioqKsHz5ciiVSjz++OM4evQo5s6dK4Wv+fPnY8CAAZg8eTIAYObMmYiLi8PChQuxZMmSKtVSmcLCQhQWFkqPdTqdPC9cOba2tkjXFeCusKyV8avqVk5ztMzLAm4Ct2ybS+vNcwqN/iUiIpKbra2t0b+mUKNQFRUVVeW+c+fOrclT4PLly0hPT0dgYKC0TqPRwN/fH4mJiRg5ciQSExNhb28vBSoACAwMhJmZGZKSkjBs2DAkJibi6aefhlKplPoEBQXhyy+/xJ07d9C8eXMkJiZW2KegoCDp68iq1FKZ6OhofPrppzXa/+oYP348PKb8VuvP8zAvLJz314PQv/50XrivzmshIqKmpey3VKZSo1B15MgRHDlyBMXFxXjssccAAOfOnYO5uTm6d+8u9VMoFDUuLD09HQDg5ORktN7JyUlqS09Ph6Ojo1G7hYUFWrRoYdTH09OzwhiGtubNmyM9Pf2hz/OwWiozdepUo7Cm0+ng6ur6gL0mIiKihqpGoWrw4MGws7PDypUr0bz5va957ty5g7Fjx6JPnz74xz/+IWuRDZVKpYJKpTJ1GURERFQHanSi+pw5cxAdHS0FKgBo3rw5PvvsM8yZM0eWwrRaLQAgIyPDaH1GRobUptVqcfPmTaP2kpISZGZmGvWpbIyyz3G/PmXbH1YLERERNW01ClU6nQ63bt2qsP7WrVvIycl55KIAwNPTE1qtFvHx8UbPm5SUhICAAABAQEAAsrKykJycLPXZsWMH9Ho9/P39pT67d+9GcXGx1CcuLg6PPfaYFAoDAgKMnsfQx/A8VanFlDZu3Ii+yovoaXnFpHV8MWwhdvcLw64nwvDF1oXS+tvDOuPWK91xe1hnE1ZHRESN2caNGxEbG4uNGzearIYaff03bNgwjB07FnPmzEGPHj0AAElJSZg8eTKGDx9e5XFyc3Nx4cIF6fHly5dx9OhRtGjRAm5ubpg0aRI+++wzeHl5wdPTEx9//DFcXFwwdOhQAEDHjh0xYMAAjBs3DkuWLEFxcTEiIiIwcuRIuLi4AABeeeUVfPrppwgLC8MHH3yAkydPYv78+fj666+l542MjMQzzzyDOXPmIDg4GOvWrcOhQ4ek2y4oFIqH1mJK58+fh6d5DvKEJVD88P615Vnvg3DW3AauA8qLB6X1d70dUaqxhnn2XdMVR0REjdr58+eRk5MDOzs7k9VQo1C1ZMkSvPfee3jllVekI0AWFhYICwvDV199VeVxDh06hGeffVZ6bDipOzQ0FCtWrMD777+PvLw8jB8/HllZWejduze2bt0KKysraZvVq1cjIiIC/fr1g5mZGUaMGIFvvvlGatdoNNi+fTvCw8Ph6+sLBwcHTJ8+3egqgZ49e2LNmjX46KOPMG3aNHh5eWH9+vXo3PmvIytVqYWIiIiaLoUQQtR047y8PFy8eBEA0K5dOzRr1ky2whojnU4HjUaD7OxsqNVq2cadO3cucnLuHan6qaCrbONWV+LUUOlIVVrHlggIXwkAuD71OelIVZvoHUbbXJkVbIpSiYiokTF8FtrZ2VXr1k9VUdXP70f6QeW0tDSkpaXBy8sLzZo1wyPkMyIiIqIGrUah6vbt2+jXrx86dOiA559/HmlpaQCAsLAw3k6BiIiImqQahap3330XlpaWSElJgY2NjbT+5ZdfxtatW2UrjoiIiKihqNGJ6tu3b8e2bdvQpk0bo/VeXl64evWqLIURERERNSQ1OlKVl5dndITKIDMzk3cQJyIioiapRqGqT58++OGHH6THCoUCer0es2fPNrpFAhEREVFTUaOv/2bPno1+/frh0KFDKCoqwvvvv49Tp04hMzMT+/btk7tGeojOnTtj5Z7zKBTmJq1jw9Fn8HRWMnAH2N3JV1rf7Ggq9DaWMMs34Z1JiYioUevcuTMKCgpMev/IGt+nKjs7GwsXLsSxY8eQm5uL7t27Izw8HM7OznLX2GjU1n2qAMBjym+yjldXeJ8qIiKq76r6+V3tI1XFxcUYMGAAlixZgg8//PCRiiQiIiJqLKp9TpWlpSWOHz9eG7UQERERNVg1OlH91Vdfxb///W+5ayEiIiJqsGp0onpJSQmWL1+O//3vf/D19a3wm39z586VpTiqmoULFyLE6g7yhRK/FHZ++Aa1JD5qIjytb0CkAld6tka/cUsAADeinkGpWgVzXSFaz91lsvqIiKjxWrhwofTbfxERESapoVqh6tKlS/Dw8MDJkyfRvXt3AMC5c+eM+igUCvmqoyopKiqCUqFHMUpNWoeN6i7M7ATQDLApuiutFypzCCtLiMISE1ZHRESNWVFRkbSYSrVClZeXF9LS0vD7778DuPezNN988w2cnJxqpTgiIiKihqJa51SVv/vCli1bkJeXJ2tBRERERA1RjU5UN6jhLa6IiIiIGp1qhSqFQlHhnCmeQ0VERERUzXOqhBAYM2aM9KPJBQUFmDhxYoWr/37++Wf5KiQiIiJqAKoVqkJDQ40ev/rqq7IWQ0RERNRQVStUxcTE1FYdRERERA3aI52oTkRERET31OiO6lS/DBo0CONXJKHExBn5w1/C4Xf7D+AucCiok7S+xS8nISzNoCjWm7A6IiJqzAYNGoTi4mJYWlqarAaGqkagQ4cOuKI/b+oysONMD+xAj3sP2v+13ubMTdMURERETUaHDh1MXQK//iMiIiKSA0MVERERkQzqdaiaMWOGdMNRw+Lt7S21FxQUIDw8HC1btoStrS1GjBiBjIwMozFSUlIQHBwMGxsbODo6YvLkySgpMf5h3507d6J79+5QqVRo3749VqxYUaGWRYsWwcPDA1ZWVvD398eBAwdqZZ9rIjU1Fa3MctFSYdqfDOrc+gJebBaHFy3j0Dn9grS+sLUahW72KGytNmF1RETUmKWmpuLatWtITU01WQ31/pyqxx9/HP/73/+kxxYWf5X87rvv4rfffkNsbCw0Gg0iIiIwfPhw7Nu3DwBQWlqK4OBgaLVaJCQkIC0tDaNHj4alpSW++OILAMDly5cRHByMiRMnYvXq1YiPj8cbb7wBZ2dnBAUFAQB+/PFHREVFYcmSJfD398e8efMQFBSEs2fPwtHRsQ5fjcqtW7cOg1Q5yBOW+Kmgq8nqWDZ6Jpw1t4HrQFrHlggIXwkAuDXaD6Uaa5hn30Wb6B0mq4+IiBqvdevWIScnB3Z2doiKijJJDfX6SBVwL0RptVppcXBwAABkZ2fj3//+N+bOnYvnnnsOvr6+iImJQUJCAvbv3w8A2L59O/744w+sWrUK3bp1w8CBAzFz5kwsWrQIRUVFAIAlS5bA09MTc+bMQceOHREREYEXX3wRX3/9tVTD3LlzMW7cOIwdOxadOnXCkiVLYGNjg+XLl9f9C0JERET1Ur0PVefPn4eLiwvatm2LkJAQpKSkAACSk5NRXFyMwMBAqa+3tzfc3NyQmJgIAEhMTISPjw+cnJykPkFBQdDpdDh16pTUp+wYhj6GMYqKipCcnGzUx8zMDIGBgVKf+yksLIROpzNaiIiIqHGq16HK398fK1aswNatW7F48WJcvnwZffr0QU5ODtLT06FUKmFvb2+0jZOTE9LT0wEA6enpRoHK0G5oe1AfnU6Hu3fv4s8//0RpaWmlfQxj3E90dDQ0Go20uLq6Vvs1ICIiooahXp9TNXDgQOnvLl26wN/fH+7u7vjpp59gbW1twsqqZurUqUbf6+p0OgYrIiKiRqpeH6kqz97eHh06dMCFCxeg1WpRVFSErKwsoz4ZGRnQarUAAK1WW+FqQMPjh/VRq9WwtraGg4MDzM3NK+1jGON+VCoV1Gq10UJERESNU4MKVbm5ubh48SKcnZ3h6+sLS0tLxMfHS+1nz55FSkoKAgICAAABAQE4ceIEbt78647ecXFxUKvV6NSpk9Sn7BiGPoYxlEolfH19jfro9XrEx8dLfYiIiIjqdah67733sGvXLly5cgUJCQkYNmwYzM3NMWrUKGg0GoSFhSEqKgq///47kpOTMXbsWAQEBOCpp54CAPTv3x+dOnXCa6+9hmPHjmHbtm346KOPEB4eDpVKBQCYOHEiLl26hPfffx9nzpzBt99+i59++gnvvvuuVEdUVBSWLVuGlStX4vTp03jzzTeRl5eHsWPHmuR1ISIiovqnXp9Tdf36dYwaNQq3b99Gq1at0Lt3b+zfvx+tWrUCAHz99dcwMzPDiBEjUFhYiKCgIHz77bfS9ubm5ti0aRPefPNNBAQEoFmzZggNDcU///lPqY+npyd+++03vPvuu5g/fz7atGmD77//XrpHFQC8/PLLuHXrFqZPn4709HR069YNW7durXDyOlWfx5TfTF1CtV2ZFWzqEoiIqB6q16Fq3bp1D2y3srLCokWLsGjRovv2cXd3x+bNmx84Tt++fXHkyJEH9omIiEBERMQD+xAREVHTpRBCCFMX0VTodDpoNBpkZ2fLetJ6YWEhOn+yDQJACcxlG7e6minz0awoH4ACeYXWyFPZAAD0SnNAoQCEgFlRqcnqkwuPVBER1T+FhYXS34ZTfORS1c/ven2kiqpGpVKh2IRhyiCvyAZ5uBekUOa/58YQpIiIqH6TO0jVRL0+UZ2IiIiooWCoIiIiIpIBv/5rBBITE9HN4gaKYY5TJQ++IWltCuv9C56+fRjQAbt/6Y5/9xgGAND19oTeygJmBSVQ771ssvqIiKjxSkxMRGFhIVQqlcnuI8lQ1QgkJibiCcsc5AlLk4aqN/qsh7PmNnAd6DAt5a9Q1ccTpRprmGffZagiIqJakZiYiJycHNjZ2ZksVPHrPyIiIiIZMFQRERERyYChioiIiEgGDFVEREREMmCoIiIiIpIBQxURERGRDBiqiIiIiGTAUEVEREQkA978sxFwdnbGxWw9CoRpp/PkjXawvlQA3AJOattJ65U3dCjNKoB5XpEJqyMiosbM2dkZGo0GNjY2JqtBIYQQJnv2Jkan00Gj0SA7OxtqtVrWsT2m/CbreHR/V2YFm7oEIiKqQ1X9/ObXf0REREQyYKgiIiIikgFDFREREZEMeKJ6I7B27VoEq26gQFggvsjLZHUsG/1PPFl4CrgFHAx/HONGTAcA3Bzth9JmSpjnFcHxh0Mmq4+IiBqvtWvXIj8/HzY2Nhg1apRJamCoagTS0tLgaJaHPGFp0jo6t74Ie00ecB3onH5RWl/UWo1SjTXMs++asDoiImrM0tLSkJOTAzs7O5PVwK//iIiIiGTAUEVEREQkA4YqIiIiIhkwVBERERHJgCeqV9OiRYvw1VdfIT09HV27dsWCBQvQo0cPU5dFdagh3r2ed4EnIqp9PFJVDT/++COioqLwySef4PDhw+jatSuCgoJw8+ZNU5dGREREJsZQVQ1z587FuHHjMHbsWHTq1AlLliyBjY0Nli9fburSiIiIyMT49V8VFRUVITk5GVOnTpXWmZmZITAwEImJiZVuU1hYiMLCQulxdnY2gHs/zCingoICFBQUoBCl0Bfmyzp2deTo9GimAJAD5Ai9VIvQ6QBFMYTurknra8rc3o01dQnVdvLTIFOXQEQNiOGz0NLSUvbPWcN4QogHdxRUJTdu3BAAREJCgtH6yZMnix49elS6zSeffCIAcOHChQsXLlwawXLt2rUHZgUeqapFU6dORVRUlPRYr9cjMzMTLVu2hEKhMGFltU+n08HV1RXXrl2DWq02dTlNEufA9DgH9QPnwfQa+hwIIZCTkwMXF5cH9mOoqiIHBweYm5sjIyPDaH1GRga0Wm2l26hUKqhUKqN19vb2tVVivaRWqxvk/4AaE86B6XEO6gfOg+k15DnQaDQP7cMT1atIqVTC19cX8fHx0jq9Xo/4+HgEBASYsDIiIiKqD3ikqhqioqIQGhoKPz8/9OjRA/PmzUNeXh7Gjh1r6tKIiIjIxBiqquHll1/GrVu3MH36dKSnp6Nbt27YunUrnJycTF1avaNSqfDJJ59U+PqT6g7nwPQ4B/UD58H0msocKIR42PWBRERERPQwPKeKiIiISAYMVUREREQyYKgiIiIikgFDFREREZEMGKqIiIiIZMBQRbJbtGgRPDw8YGVlBX9/fxw4cMDUJTUa0dHRePLJJ2FnZwdHR0cMHToUZ8+eNepTUFCA8PBwtGzZEra2thgxYkSFXwJISUlBcHAwbGxs4OjoiMmTJ6OkpKQud6XRmDVrFhQKBSZNmiSt4xzUjRs3buDVV19Fy5YtYW1tDR8fHxw6dEhqF0Jg+vTpcHZ2hrW1NQIDA3H+/HmjMTIzMxESEgK1Wg17e3uEhYUhNze3rnelQSotLcXHH38MT09PWFtbo127dpg5c6bRjw43uTmQ4beGiSTr1q0TSqVSLF++XJw6dUqMGzdO2Nvbi4yMDFOX1igEBQWJmJgYcfLkSXH06FHx/PPPCzc3N5Gbmyv1mThxonB1dRXx8fHi0KFD4qmnnhI9e/aU2ktKSkTnzp1FYGCgOHLkiNi8ebNwcHAQU6dONcUuNWgHDhwQHh4eokuXLiIyMlJazzmofZmZmcLd3V2MGTNGJCUliUuXLolt27aJCxcuSH1mzZolNBqNWL9+vTh27Jh44YUXhKenp7h7967UZ8CAAaJr165i//79Ys+ePaJ9+/Zi1KhRptilBufzzz8XLVu2FJs2bRKXL18WsbGxwtbWVsyfP1/q09TmgKGKZNWjRw8RHh4uPS4tLRUuLi4iOjrahFU1Xjdv3hQAxK5du4QQQmRlZQlLS0sRGxsr9Tl9+rQAIBITE4UQQmzevFmYmZmJ9PR0qc/ixYuFWq0WhYWFdbsDDVhOTo7w8vIScXFx4plnnpFCFeegbnzwwQeid+/e923X6/VCq9WKr776SlqXlZUlVCqVWLt2rRBCiD/++EMAEAcPHpT6bNmyRSgUCnHjxo3aK76RCA4OFq+//rrRuuHDh4uQkBAhRNOcA379R7IpKipCcnIyAgMDpXVmZmYIDAxEYmKiCStrvLKzswEALVq0AAAkJyejuLjYaA68vb3h5uYmzUFiYiJ8fHyMfgkgKCgIOp0Op06dqsPqG7bw8HAEBwcbvdYA56CubNiwAX5+fnjppZfg6OiIJ554AsuWLZPaL1++jPT0dKN50Gg08Pf3N5oHe3t7+Pn5SX0CAwNhZmaGpKSkutuZBqpnz56Ij4/HuXPnAADHjh3D3r17MXDgQABNcw74MzUkmz///BOlpaUVfrbHyckJZ86cMVFVjZder8ekSZPQq1cvdO7cGQCQnp4OpVIJe3t7o75OTk5IT0+X+lQ2R4Y2erh169bh8OHDOHjwYIU2zkHduHTpEhYvXoyoqChMmzYNBw8exDvvvAOlUonQ0FDpdazsdS47D46OjkbtFhYWaNGiBeehCqZMmQKdTgdvb2+Ym5ujtLQUn3/+OUJCQgCgSc4BQxVRAxUeHo6TJ09i7969pi6lSbl27RoiIyMRFxcHKysrU5fTZOn1evj5+eGLL74AADzxxBM4efIklixZgtDQUBNX1zT89NNPWL16NdasWYPHH38cR48exaRJk+Di4tJk54Bf/5FsHBwcYG5uXuEqp4yMDGi1WhNV1ThFRERg06ZN+P3339GmTRtpvVarRVFREbKysoz6l50DrVZb6RwZ2ujBkpOTcfPmTXTv3h0WFhawsLDArl278M0338DCwgJOTk6cgzrg7OyMTp06Ga3r2LEjUlJSAPz1Oj7o/Uir1eLmzZtG7SUlJcjMzOQ8VMHkyZMxZcoUjBw5Ej4+Pnjttdfw7rvvIjo6GkDTnAOGKpKNUqmEr68v4uPjpXV6vR7x8fEICAgwYWWNhxACERER+OWXX7Bjxw54enoatfv6+sLS0tJoDs6ePYuUlBRpDgICAnDixAmjN7K4uDio1eoKH1JUUb9+/XDixAkcPXpUWvz8/BASEiL9zTmofb169apwO5Fz587B3d0dAODp6QmtVms0DzqdDklJSUbzkJWVheTkZKnPjh07oNfr4e/vXwd70bDl5+fDzMw4Rpibm0Ov1wNoonNg6jPlqXFZt26dUKlUYsWKFeKPP/4Q48ePF/b29kZXOVHNvfnmm0Kj0YidO3eKtLQ0acnPz5f6TJw4Ubi5uYkdO3aIQ4cOiYCAABEQECC1Gy7n79+/vzh69KjYunWraNWqFS/nfwRlr/4TgnNQFw4cOCAsLCzE559/Ls6fPy9Wr14tbGxsxKpVq6Q+s2bNEvb29uLXX38Vx48fF0OGDKn0cv4nnnhCJCUlib179wovL68Gezl/XQsNDRWtW7eWbqnw888/CwcHB/H+++9LfZraHDBUkewWLFgg3NzchFKpFD169BD79+83dUmNBoBKl5iYGKnP3bt3xVtvvSWaN28ubGxsxLBhw0RaWprROFeuXBEDBw4U1tbWwsHBQfzjH/8QxcXFdbw3jUf5UMU5qBsbN24UnTt3FiqVSnh7e4ulS5catev1evHxxx8LJycnoVKpRL9+/cTZs2eN+ty+fVuMGjVK2NraCrVaLcaOHStycnLqcjcaLJ1OJyIjI4Wbm5uwsrISbdu2FR9++KHRbUGa2hwohChz61MiIiIiqhGeU0VEREQkA4YqIiIiIhkwVBERERHJgKGKiIiISAYMVUREREQyYKgiIiIikgFDFREREZEMGKqIiIiIZMBQRURERCQDhioiIiIiGViYuoCmRK/XIzU1FXZ2dlAoFKYuh4iIiKpACIGcnBy4uLjAzOz+x6MYqupQamoqXF1dTV0GERER1cC1a9fQpk2b+7YzVNUhOzs7APcmRa1Wm7gaIiIiqgqdTgdXV1fpc/x+GKrqkOErP7VazVBFRETUwDzs1B2eqE5EREQkA4YqIiIiIhkwVBERERHJgKGKiIiISAYMVUREREQyYKgiIiIikgFDFREREZEMGKqIiIiIZMBQRURERCQDhioiIiIiGTBUEREREcmAoYqIiIhIBgxVRERERDJgqCIiIiKSAUMVERERkQwYqoiIiIhkwFBFREREJAOGKiIiIiIZMFQRERERyYChioiIiEgGDFVEREREMmCoIiIiIpIBQxURERGRDBiqiIiIiGTAUEVEREQkA4YqIiIiIhkwVBERERHJgKGKiIiISAYMVUREREQyYKgiIiIikgFDFREREZEMGKqIiIiIZMBQRURERCQDhioiIiIiGTBUEREREcmAoYqIiIhIBgxVRERERDJgqCIiIiKSAUMVERERkQwYqoiIiIhkwFBFREREJAOGKiIiIiIZMFQRERERyYChioiIiEgGDFVEREREMmCoIiIiIpIBQxURERGRDBiqiIiIiGTAUEVEREQkA4YqIiIiIhkwVBERERHJgKGKiIiISAYMVUREREQyYKgiIiIikgFDFREREZEMGKqIiIiIZMBQRURERCQDhioiIiIiGTBUEREREcmAoYqIiIhIBgxVRERERDJgqCIiIiKSAUMVERERkQwYqoiIiIhkwFBFREREJAOGKiIiIiIZMFQRERERycDC1AVQ43D+/Hnk5OQ8tJ+dnR28vLzqoCIiIqK6xVBFj+z8+fPo0KEDAEBrq8AEXyW+Sy5Ceq6otP+5c+cYrIiIqNFhqKJHZjhCtWrVKnR3NkfH3RPw8vQVuGvfwajf6dOn8eqrr1bpiBYREVFDw1BFsunYsSM6as2A3UBHb2/ApZupSyIiIqozPFGdiIiISAYMVUREREQyYKgiAEB+fj4OHz6M/Px8U5dSqfpeHxEREUMVAQDOnDkDX19fnDlzxtSlVKq+10dERMRQRURERCQDXv3XwJWWlmLPnj1IS0uDs7Mz/Pz8EBUVhc2bNyMzMxN3796t1ni+vr4QovL7S5mKQqGQ/vb19TVhJUR/sbS0hF6vh16vBwCYmZmhtLRU+tvW1hZ6vR7m5uawtrZGhw4dYGFhgYKCAqhUKmRlZUEIgcLCQlhbW8Pe3h5t2rTB7t27UVBQAHd3d7i5uSE1NRVWVlbo2rUrzp8/j4KCArRt2xaurq7YsmUL7ty5g8LCQpiZmcHV1RX9+vXDH3/8gby8PPTq1Qs+Pj7Yu3cv9Ho9WrRoAa1WC61WCwC4efMm7O3tsWHDBly4cAH5+flo3rw50tPT4eLiAq1Wi9zcXNy9exc9evRASkoKLl68iGbNmuGFF15AdnY2WrVqhdatW8Pf3x+LFy/Gnj17YGdnh9deew3PPfccABi9R/Xp0wfm5ubS61j+PczQXna9o6OjVK+zszP8/f3x3Xff4eLFi2jXrh3eeustKJVKo/kxbH/jxg2kpqbiyJEjSElJgbu7O0JDQ9G3b1/s2bMH8fHxOHjwIPLz8+Hp6YnQ0FA899xzUo2V1QcA8fHx+L//+z/k5uaid+/eePvtt6FUKlFaWoqdO3di586d0Ov1aNmyJZycnNC6dWv07NkTCQkJle5r+fHeeustJCUlSX3vt21Vld+Pmo5XnXmZMGGC0T6UfY6ioiJ8++23Vepbk/2r7vayEVRlu3btEoMGDRLOzs4CgPjll1+qtX12drYAILKzs2Wp57///a/w8PAQAGRfqiM5OVkAEMnJyULcOCLEJ+p7/z6oXxXVxr5x4cKlbhYbGxvRqlUro3UeHh7iv//9733fwzw8PMTkyZOr9d5mYWEhJk+eLNt7o0ajEf/9738rHcfR0VFYW1tX2MbMzEwMGTJEODo6PrDOyvZVrVZXaR/v9zo+TGX7UZPxHvV1NTzH5MmTKzz//frWdP+qs31VVPXzm6GqGjZv3iw+/PBD8fPPPwvAtKHqv//9r1AoFGLw4MEiMTFRBAcHy/6GWFW1Fark3h8uXJry4uLiYvTBY2trKwAIhUJRo/EM25UPGNOmTRMLFiwQzZo1k9ZFR0eLnJwckZiYKAYPHiwUCoWYPHmy0XuYod3Pz08AEH5+fiI6OlooFArRu3dv0bt3b2k8pVIpAIjvv/9eLFu2TDg5OQkAYvLkydJ7o2Ecw2JnZycACAcHhwr70rZtW9GpU6dK97FsfdHR0Uav34IFC8SmTZtEly5djLbz9vYWAMRTTz0lunbtKq3XaDQCgFi1apXRvgIQLVq0EAsWLBBTp041Gis4OFgoFAppHw3bGl7HqgShsvuxatUqAUA4OTkJhUJR5fHKjmN4He43L2+++aZQKBTS48jISOk5DH2dnJzEsmXLxPfff2+0bdm+Ndm/8v+dyRWsGKpqGWC6UFVSUiI8PDzE4MGDRWlpqcjPz6+VN2FbW9sq1VMbocrUH0BcuNSHpWzg6dev3337tW7dutL1lpaWUuhRKBTCzc1NODk5VQhCZmZm0r8uLi7S+vJHmVq2bCmNlZ2dbXS0wcrKSgQHBwtPT09RWFgoPDw8hKWlpQDuHTUoKSkRQghRWloqBg0aJCwsLMSgQYNEaWlphfc2Jycn4e7ubvQ+d/fuXaFQKIS5ubnIz88XgwcPFp6enqKkpEQUFxcLJycnYWFhIdzc3MSgQYOEu7u7VGtwcLAoLi4WgwYNEubm5tL+GuouKiqS6rKxsZHarK2tRVFRkVSbYUylUik9txBCFBUVGb2mbm5uUt2GNnNzc+Hu7i4GDRokvUaurq4CgDA3NxcFBQXS/g8aNEg8//zzUp2G+svuc2lpqdHjqnxWlH1cnfHKbldUVPTAeSk7t4WFhdK8FBYWGvUtu7+DBw+u0Lcm+1dWVbavDoaqWgY8PFQVFBSI7Oxsabl27VqVJuVhfv/9dwFAJCYmCiGECA8Pr7U39eTk5Icuhv/ns3fv3geGqr179wrg3v/TetiYpv4w48KlPizt27eX/m7btq0sYy5dulT6u0OHDg/sWzZgARB9+/aV/v7666/Fs88+a9S+cOFCqQ2A+OCDD6S233//XXovMPRbtGhRpe9tZWs0vM8ZxjSMlZCQYDTud999J7UvWrTIqC7DGIbnLb8YxjCMWVmboTYAYsqUKfdtK/+c5dvKv0Zln6fse3vZWiIjI43qK19v2df2QZ8V5R9Xdbyy25Ufo/y8lJ9bw7x8/fXXFfqWH6ts35rsX3kP2746qhqqeKJ6LYqOjsann34q+7hpaWkAgM6dOwO494PGtaU6J4ZfuXIFvTwff2A7ALz66quPWhZRk2Bm9tcF2nfu3JFlzEGDBkl/t2jR4oF9y98XTpS5iOXixYtwcXExare2tpbaACAsLAxffvklgL/et8r2M/xrYOhTtkbD+5xhTEM/Q5/Ktik/rmGM8uvLP6+hX2VtZesPCwvDrFmzKm0r/5zl28q/RuWfx7Bt2dfacMFR+THv9xz326/yj6s6Xtn2jRs3GvUtPy/l59YwLw/b38r6Vnf/ynvY9rWBoaoWTZ06FVFRUdJjnU4HV1fXRx7X2dkZAHDy5Ek89dRT8PLywvbt2x953MokJyc/tI/hh5I9PDwe2M/QvmrVKnTs2PGBfXmVHxGkKwsBoHnz5rIEq02bNkl/Z2ZmPrCvjY0NsrKypMdlr8Rt164dNmzYYNTf8OHfrl07AMC///1vqc3wvlW2X/mrkw19ytZoeJ8zjGnod/LkyftuU35cwxj3uxq67Hvq/drK1m/Yr8rayj9n+bbyr1H55zFsWzZUGQJK+X0u//hB+1W2FsPjqo5Xtr38GOXn5dSpU0b7aZiXh+3vU089VaFvdfevvIdtXyse+ZhYEwXwnCoDnlPFhUvtLDyniudUATyniudUNQFA/bn6LyEhgVf/ceHC5YGLi4uLFAqA2rv6b8qUKWL+/PlGV/998cUXQqfTiYSEhEqv/ktISJDay17998UXX0hX//Xq1Usaz3Cl2LJly8R3331Xpav/DPt7v6v/OnbsWOk+lq3viy++kNqaNWsm5s+fL3799dcHXv1Xtq3s1X9l9xW4d/Xf/Pnzjc5DAyq/+q/s61idq+MSEhIqvfqvKuOVHcfwOvTq1avKV/8ZnsPQ18nJSXz33Xdi2bJlRtuW7VuT/Sv/3xmv/qvHcnJyxJEjR8SRI0cEADF37lxx5MgRcfXq1Sptz/tU8T5VXLg0paWy+1R5eno+8D5Vnp6eTeY+VYZ9rcl9qsq+jg9TlftUVWW8R31dDc9RlftUPer+VWf7qqjq57dCiHp2++x6bOfOnXj22WcrrA8NDcWKFSseur1Op4NGo0F2djbUarUsNcl9R3UA1b6j+uHDh+Hr64vk5GR015oBS58Bxu8CXLrdv1/37lUev+x5HET1Be+ozjuq847qTeeO6lX9/GaoqkO1EarkUtPAU2HbWghVj7otERHRo6jq5zd/UJkAAN7e3khOToa3t7epS6lUfa+PiIiIt1QgAPcuna7PR4Dqe31EREQ8UkVEREQkA4YqIiIiIhnw6z96ZIafsjh8+DCs29qiI4DTZ87gbrreqN/p06dNUB0REVHdYKiiR3bmzBkAwLhx46C1VWCCrxLfzXkF6bmVX1hqZ2dXl+URERHVCYYqemRDhw4FcO8KPRsbGwDAC/fpa2dnBy8vr7opjIiIqA7xPlV1qD7fp4qIiIgqx/tUEREREdUhhioiIiIiGTBUEREREcmAoYqIiIhIBgxVRERERDJgqCIiIiKSAUMVERERkQwYqoiIiIhkwFBFREREJAOGKiIiIiIZMFQRERERyYChioiIiEgGDFVEREREMmCoIiIiIpIBQxURERGRDBiqiIiIiGTAUEVEREQkA4YqIiIiIhkwVBERERHJgKGKiIiISAYMVUREREQyYKgiIiIikgFDFREREZEMGKqIiIiIZMBQRURERCQDhioiIiIiGTBUEREREcmAoYqIiIhIBgxVRERERDJgqCIiIiKSAUMVERERkQwYqoiIiIhkwFBFREREJAOGKiIiIiIZMFQRERERyYChioiIiEgGDFVEREREMmCoIiIiIpIBQxURERGRDBiqiIiIiGTAUEVEREQkA4YqIiIiIhkwVBERERHJgKGKiIiISAYMVUREREQyYKgiIiIikgFDFREREZEMGKqIiIiIZMBQRURERCQDhioiIiIiGTBUEREREcmAoYqIiIhIBgxVRERERDJgqCIiIiKSAUMVERERkQwYqoiIiIhkwFBFREREJAOGKiIiIiIZMFQRERERyYChioiIiEgGDFVEREREMmCoIiIiIpIBQxURERGRDBiqiIiIiGTAUEVEREQkA4YqIiIiIhkwVBERERHJgKGKiIiISAYWpi6gKRFCAAB0Op2JKyEiIqKqMnxuGz7H74ehqg7l5OQAAFxdXU1cCREREVVXTk4ONBrNfdsV4mGxi2Sj1+uRmpoKOzs7KBQKU5dTq3Q6HVxdXXHt2jWo1WpTl9MkcQ5Mj3NQP3AeTK+hz4EQAjk5OXBxcYGZ2f3PnOKRqjpkZmaGNm3amLqMOqVWqxvk/4AaE86B6XEO6gfOg+k15Dl40BEqA56oTkRERCQDhioiIiIiGTBUUa1QqVT45JNPoFKpTF1Kk8U5MD3OQf3AeTC9pjIHPFGdiIiISAY8UkVEREQkA4YqIiIiIhkwVBERERHJgKGKiIiISAYMVSS7RYsWwcPDA1ZWVvD398eBAwdMXVKjER0djSeffBJ2dnZwdHTE0KFDcfbsWaM+BQUFCA8PR8uWLWFra4sRI0YgIyPDqE9KSgqCg4NhY2MDR0dHTJ48GSUlJXW5K43GrFmzoFAoMGnSJGkd56Bu3LhxA6+++ipatmwJa2tr+Pj44NChQ1K7EALTp0+Hs7MzrK2tERgYiPPnzxuNkZmZiZCQEKjVatjb2yMsLAy5ubl1vSsNUmlpKT7++GN4enrC2toa7dq1w8yZM41+H6/JzYEgktG6deuEUqkUy5cvF6dOnRLjxo0T9vb2IiMjw9SlNQpBQUEiJiZGnDx5Uhw9elQ8//zzws3NTeTm5kp9Jk6cKFxdXUV8fLw4dOiQeOqpp0TPnj2l9pKSEtG5c2cRGBgojhw5IjZv3iwcHBzE1KlTTbFLDdqBAweEh4eH6NKli4iMjJTWcw5qX2ZmpnB3dxdjxowRSUlJ4tKlS2Lbtm3iwoULUp9Zs2YJjUYj1q9fL44dOyZeeOEF4enpKe7evSv1GTBggOjatavYv3+/2LNnj2jfvr0YNWqUKXapwfn8889Fy5YtxaZNm8Tly5dFbGyssLW1FfPnz5f6NLU5YKgiWfXo0UOEh4dLj0tLS4WLi4uIjo42YVWN182bNwUAsWvXLiGEEFlZWcLS0lLExsZKfU6fPi0AiMTERCGEEJs3bxZmZmYiPT1d6rN48WKhVqtFYWFh3e5AA5aTkyO8vLxEXFyceOaZZ6RQxTmoGx988IHo3bv3fdv1er3QarXiq6++ktZlZWUJlUol1q5dK4QQ4o8//hAAxMGDB6U+W7ZsEQqFQty4caP2im8kgoODxeuvv260bvjw4SIkJEQI0TTngF//kWyKioqQnJyMwMBAaZ2ZmRkCAwORmJhowsoar+zsbABAixYtAADJyckoLi42mgNvb2+4ublJc5CYmAgfHx84OTlJfYKCgqDT6XDq1Kk6rL5hCw8PR3BwsNFrDXAO6sqGDRvg5+eHl156CY6OjnjiiSewbNkyqf3y5ctIT083mgeNRgN/f3+jebC3t4efn5/UJzAwEGZmZkhKSqq7nWmgevbsifj4eJw7dw4AcOzYMezduxcDBw4E0DTngD+oTLL5888/UVpaavRBAQBOTk44c+aMiapqvPR6PSZNmoRevXqhc+fOAID09HQolUrY29sb9XVyckJ6errUp7I5MrTRw61btw6HDx/GwYMHK7RxDurGpUuXsHjxYkRFRWHatGk4ePAg3nnnHSiVSoSGhkqvY2Wvc9l5cHR0NGq3sLBAixYtOA9VMGXKFOh0Onh7e8Pc3BylpaX4/PPPERISAgBNcg4YqogaqPDwcJw8eRJ79+41dSlNyrVr1xAZGYm4uDhYWVmZupwmS6/Xw8/PD1988QUA4IknnsDJkyexZMkShIaGmri6puGnn37C6tWrsWbNGjz++OM4evQoJk2aBBcXlyY7B/z6j2Tj4OAAc3PzClc5ZWRkQKvVmqiqxikiIgKbNm3C77//jjZt2kjrtVotioqKkJWVZdS/7BxotdpK58jQRg+WnJyMmzdvonv37rCwsICFhQV27dqFb775BhYWFnBycuIc1AFnZ2d06tTJaF3Hjh2RkpIC4K/X8UHvR1qtFjdv3jRqLykpQWZmJuehCiZPnowpU6Zg5MiR8PHxwWuvvYZ3330X0dHRAJrmHDBUkWyUSiV8fX0RHx8vrdPr9YiPj0dAQIAJK2s8hBCIiIjAL7/8gh07dsDT09Oo3dfXF5aWlkZzcPbsWaSkpEhzEBAQgBMnThi9kcXFxUGtVlf4kKKK+vXrhxMnTuDo0aPS4ufnh5CQEOlvzkHt69WrV4XbiZw7dw7u7u4AAE9PT2i1WqN50Ol0SEpKMpqHrKwsJCcnS3127NgBvV4Pf3//OtiLhi0/Px9mZsYxwtzcHHq9HkATnQNTnylPjcu6deuESqUSK1asEH/88YcYP368sLe3N7rKiWruzTffFBqNRuzcuVOkpaVJS35+vtRn4sSJws3NTezYsUMcOnRIBAQEiICAAKndcDl///79xdGjR8XWrVtFq1ateDn/Iyh79Z8QnIO6cODAAWFhYSE+//xzcf78ebF69WphY2MjVq1aJfWZNWuWsLe3F7/++qs4fvy4GDJkSKWX8z/xxBMiKSlJ7N27V3h5eTXYy/nrWmhoqGjdurV0S4Wff/5ZODg4iPfff1/q09TmgKGKZLdgwQLh5uYmlEql6NGjh9i/f7+pS2o0AFS6xMTESH3u3r0r3nrrLdG8eXNhY2Mjhg0bJtLS0ozGuXLlihg4cKCwtrYWDg4O4h//+IcoLi6u471pPMqHKs5B3di4caPo3LmzUKlUwtvbWyxdutSoXa/Xi48//lg4OTkJlUol+vXrJ86ePWvU5/bt22LUqFHC1tZWqNVqMXbsWJGTk1OXu9Fg6XQ6ERkZKdzc3ISVlZVo27at+PDDD41uC9LU5kAhRJlbnxIRERFRjfCcKiIiIiIZMFQRERERyYChioiIiEgGDFVEREREMmCoIiIiIpIBQxURERGRDBiqiIiIiGTAUEVEREQkA4YqIqJH1LdvX0yaNMnUZRCRiTFUEVGTNnjwYAwYMKDStj179kChUOD48eN1XBURNUQMVUTUpIWFhSEuLg7Xr1+v0BYTEwM/Pz906dLFBJURUUPDUEVETdqgQYPQqlUrrFixwmh9bm4uYmNjMXToUIwaNQqtW7eGjY0NfHx8sHbt2geOqVAosH79eqN19vb2Rs9x7do1/P3vf4e9vT1atGiBIUOG4MqVK/LsFBGZBEMVETVpFhYWGD16NFasWIGyvy8fGxuL0tJSvPrqq/D19cVvv/2GkydPYvz48Xjttddw4MCBGj9ncXExgoKCYGdnhz179mDfvn2wtbXFgAEDUFRUJMduEZEJMFQRUZP3+uuv4+LFi9i1a5e0LiYmBiNGjIC7uzvee+89dOvWDW3btsXbb7+NAQMG4Keffqrx8/3444/Q6/X4/vvv4ePjg44dOyImJgYpKSnYuXOnDHtERKbAUEVETZ63tzd69uyJ5cuXAwAuXLiAPXv2ICwsDKWlpZg5cyZ8fHzQokUL2NraYtu2bUhJSanx8x07dgwXLlyAnZ0dbG1tYWtrixYtWqCgoAAXL16Ua7eIqI5ZmLoAIqL6ICwsDG+//TYWLVqEmJgYtGvXDs888wy+/PJLzJ8/H/PmzYOPjw+aNWuGSZMmPfBrOoVCYfRVInDvKz+D3Nxc+Pr6YvXq1RW2bdWqlXw7RUR1iqGKiAjA3//+d0RGRmLNmjX44Ycf8Oabb0KhUGDfvn0YMmQIXn31VQCAXq/HuXPn0KlTp/uO1apVK6SlpUmPz58/j/z8fOlx9+7d8eOPP8LR0RFqtbr2doqI6hS//iMiAmBra4uXX34ZU6dORVpaGsaMGQMA8PLyQlxcHBISEnD69GlMmDABGRkZDxzrueeew8KFC3HkyBEcOnQIEydOhKWlpdQeEhICBwcHDBkyBHv27MHly5exc+dOvPPOO5Xe2oGIGgaGKiKi/y8sLAx37txBUFAQXFxcAAAfffQRunfvjqCgIPTt2xdarRZDhw594Dhz5syBq6sr+vTpg1deeQXvvfcebGxspHYbGxvs3r0bbm5uGD58ODp27IiwsDAUFBTwyBVRA6YQ5b/4JyIiIqJq45EqIiIiIhkwVBERERHJgKGKiIiISAYMVUREREQyYKgiIiIikgFDFREREZEMGKqIiIiIZMBQRURERCQDhioiIiIiGTBUEREREcmAoYqIiIhIBv8Ph0v2h4w4d0wAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA18AAAF2CAYAAACReiK+AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABZ9klEQVR4nO3de1yUZcL/8e8MMAOogIiA4AkPaaZJeUA6WcmGZpnVbmqWZmbWlmtRrdmWZj27WK3mtrq5Plv67KZZ9mutzCzCWneVNE+Zpa6ZRxQUCRCQ49y/P3BGJ0A5zEGGz/v1mhdwzXXfc913E86X62QyDMMQAAAAAMCtzN5uAAAAAAA0B4QvAAAAAPAAwhcAAAAAeADhCwAAAAA8gPAFAAAAAB5A+AIAAAAADyB8AQAAAIAHEL4AAAAAwAMIXwAAAADgAYQvAAB8wIEDB2QymbRkyRJvNwUAUAvCFwDAY5YsWSKTyeR4BAYGKiYmRsnJyXrttdd06tSpBp97w4YNev7555WXl+e6Bkt6/vnnndocHBysjh076tZbb9XixYtVWlrq0tdzpdWrV+v555/3djMAAGcQvgAAHvfCCy/oH//4h15//XVNmTJFkvTYY4+pT58+2rFjR4POuWHDBs2aNcvl4cvu9ddf1z/+8Q/9+c9/1gMPPKDc3Fzdf//9GjhwoA4fPuyW16yPTp066fTp07r33nsdZatXr9asWbO82CoAwLn8vd0AAEDzM2zYMPXv39/x8/Tp07V27VrdcsstGjFihHbt2qWgoCAvtrC6X/7yl4qIiHD8PGPGDC1dulTjxo3Tr371K3311VdebJ0cPYkAgIsXPV8AgIvCjTfeqOeee04HDx7UW2+95SjfsWOH7rvvPnXp0kWBgYGKjo7W/fffr5MnTzrqPP/883rqqackSXFxcY4hggcOHJAkLV68WDfeeKMiIyNltVrVq1cvvf76641u89ixY/XAAw9o48aNSktLc3pu48aNGjp0qEJDQxUcHKzBgwdr/fr1TnXsQxp/+OEH3XfffQoLC1NoaKgmTJig4uJip7ppaWm65pprFBYWppYtW6pHjx565plnHM//fM7XfffdpwULFkiS07BJwzDUuXNn3XbbbdWup6SkRKGhoZo8eXKj7w0AoDp6vgAAF417771XzzzzjD777DNNmjRJUlXo+PHHHzVhwgRFR0fru+++06JFi/Tdd9/pq6++kslk0h133KH//ve/evvtt/Xqq686eqjatm0rqWrI4GWXXaYRI0bI399fH330kX7961/LZrPpkUceaXSbFy1apM8++0y/+MUvJElr167VsGHD1K9fP82cOVNms9kRAP/9739r4MCBTue46667FBcXp9TUVG3dulV/+9vfFBkZqZdeekmS9N133+mWW27R5ZdfrhdeeEFWq1U//PBDtTB3rsmTJ+vo0aNKS0vTP/7xD0e5yWTSPffco5dfflm5ubkKDw93PPfRRx+poKBA99xzT6PuCQCgFgYAAB6yePFiQ5Lx9ddf11onNDTUuOKKKxw/FxcXV6vz9ttvG5KMdevWOcpeeeUVQ5Kxf//+avVrOkdycrLRpUuXC7Z55syZhiTjxIkTNT7/008/GZKM22+/3TAMw7DZbEb37t2N5ORkw2azObUhLi7O+MUvflHt3Pfff7/TOW+//XajTZs2jp9fffXV87bBMAxj//79hiRj8eLFjrJHHnnEqOmf+j179hiSjNdff92pfMSIEUbnzp2d2g0AcB2GHQIALiotW7Z0WvXw3LlfJSUlysnJ0aBBgyRJW7durdM5zz1Hfn6+cnJyNHjwYP3444/Kz89vdHslOdq8fft27d27V3fffbdOnjypnJwc5eTkqKioSEOGDNG6detks9mczvHQQw85/Xzttdfq5MmTKigokCSFhYVJkj744INqxzbEJZdcooSEBC1dutRRlpubq08++URjx46VyWRq9GsAAKojfAEALiqFhYVq1aqV4+fc3FxNnTpVUVFRCgoKUtu2bRUXFydJdQ5O69evV1JSklq0aKGwsDC1bdvWMV+qseGrsLBQkhxt3rt3ryRp/Pjxatu2rdPjb3/7m0pLS6u9ZseOHZ1+bt26tSTpp59+kiSNGjVKV199tR544AFFRUVp9OjRevfddxsVxMaNG6f169fr4MGDkqQVK1aovLzcabVEAIBrMecLAHDROHLkiPLz89WtWzdH2V133aUNGzboqaeeUnx8vFq2bCmbzaahQ4fWKXzs27dPQ4YMUc+ePTV37lx16NBBFotFq1ev1quvvtronqSdO3dKkqPN9vO98sorio+Pr/EYe2+ZnZ+fX431DMOQVNVzt27dOn3xxRf6+OOPtWbNGr3zzju68cYb9dlnn9V6/PmMHj1ajz/+uJYuXapnnnlGb731lvr3768ePXrU+1wAgLohfAEALhr2hSGSk5MlVfX8pKena9asWZoxY4ajnr136Vy1DZX76KOPVFpaqg8//NCph+mLL75wS5u7du0qSQoJCVFSUpJLXkOSzGazhgwZoiFDhmju3Ln6wx/+oN/97nf64osvan2d8w0fDA8P1/Dhw7V06VKNHTtW69ev17x581zWXgBAdQw7BABcFNauXasXX3xRcXFxGjt2rKSzPUL2HiC7mkJCixYtJKnaJss1nSM/P1+LFy9udJuXLVumv/3tb0pMTNSQIUMkSf369VPXrl31xz/+0TEk8VwnTpyo9+vk5uZWK7P3qpWWltZ6XG33xO7ee+/V999/r6eeekp+fn4aPXp0vdsGAKg7er4AAB73ySefaPfu3aqoqFB2drbWrl2rtLQ0derUSR9++KFjs+CQkBBdd911evnll1VeXq7Y2Fh99tln2r9/f7Vz9uvXT5L0u9/9TqNHj1ZAQIBuvfVW3XTTTbJYLLr11ls1efJkFRYW6n//938VGRmpY8eO1bnN7733nlq2bKmysjJlZmbq008/1fr169W3b1+tWLHCUc9sNutvf/ubhg0bpssuu0wTJkxQbGysMjMz9cUXXygkJEQfffRRve7XCy+8oHXr1mn48OHq1KmTjh8/rr/85S9q3769rrnmmlqPs9+T3/zmN0pOTq4WsIYPH642bdpoxYoVGjZsmCIjI+vVLgBA/RC+AAAeZx9CaLFYFB4erj59+mjevHmaMGGC02IbUlXv0pQpU7RgwQIZhqGbbrpJn3zyiWJiYpzqDRgwQC+++KIWLlyoNWvWyGazaf/+/erRo4fee+89Pfvss3ryyScVHR2thx9+WG3bttX9999f5zY//PDDkqTAwEBFREQoPj5eb775pu6++25ZrVanutdff70yMjL04osvav78+SosLFR0dLQSEhIatIHxiBEjdODAAb355pvKyclRRESEBg8erFmzZik0NLTW4+644w5NmTJFy5cv11tvvSXDMJzCl8Vi0ahRo/SXv/yFhTYAwANMxs/HcgAAgGbj8ccf1xtvvKGsrCwFBwd7uzkA4NOY8wUAQDNVUlKit956S3feeSfBCwA8gGGHAAA0M8ePH9fnn3+u9957TydPntTUqVO93SQAaBYIXwAANDPff/+9xo4dq8jISL322mu17kcGAHAt5nwBAAAAgAcw5wsAAAAAPIDwBQAAAAAewJyvBrLZbDp69KhatWolk8nk7eYAAAAA8BLDMHTq1CnFxMTIbD5P/5ZxEZg/f77RqVMnw2q1GgMHDjQ2btx43vrvvvuu0aNHD8NqtRq9e/c2Pv74Y6fnZ86cafTo0cMIDg42wsLCjCFDhhhfffWVU52TJ08ad999t9GqVSsjNDTUuP/++41Tp07Vuc2HDx82JPHgwYMHDx48ePDgwYOHIck4fPjweTOE1xfceOeddzRu3DgtXLhQCQkJmjdvnlasWKE9e/YoMjKyWv0NGzbouuuuU2pqqm655RYtW7ZML730krZu3arevXtLkpYtW6bIyEh16dJFp0+f1quvvqoVK1bohx9+UNu2bSVJw4YN07Fjx/TXv/5V5eXlmjBhggYMGKBly5bVqd35+fkKCwvT4cOHFRIS4robAgAAAKBJKSgoUIcOHZSXl6fQ0NBa63k9fCUkJGjAgAGaP3++pKrhfB06dNCUKVP09NNPV6s/atQoFRUVadWqVY6yQYMGKT4+XgsXLqzxNQoKChQaGqrPP/9cQ4YM0a5du9SrVy99/fXX6t+/vyRpzZo1uvnmm3XkyBHFxMRcsN32c+bn5xO+AAAAgGasrtnAqwtulJWVacuWLUpKSnKUmc1mJSUlKSMjo8ZjMjIynOpLUnJycq31y8rKtGjRIoWGhqpv376Oc4SFhTmClyQlJSXJbDZr48aNNZ6ntLRUBQUFTg8ATckWSRnSrrekjAxpyxZ7ibZ4uWUAAKB58OqCGzk5OaqsrFRUVJRTeVRUlHbv3l3jMVlZWTXWz8rKcipbtWqVRo8ereLiYrVr105paWmKiIhwnOPnQxr9/f0VHh5e7Tx2qampmjVrVr2uD8DF5DZJmVKYWeplk2JjdduRI8qUFCvpiJdbBwAAfJ/PLjV/ww03aPv27dqwYYOGDh2qu+66S8ePH2/w+aZPn678/HzH4/Dhwy5sLQAAAABf59XwFRERIT8/P2VnZzuVZ2dnKzo6usZjoqOj61S/RYsW6tatmwYNGqQ33nhD/v7+euONNxzn+HkQq6ioUG5ubq2va7VaFRIS4vQAAAAAgLryaviyWCzq16+f0tPTHWU2m03p6elKTEys8ZjExESn+pKUlpZWa/1zz1taWuo4R15enrZsOTvTY+3atbLZbEpISGjo5QAAAABArby+yXJKSorGjx+v/v37a+DAgZo3b56Kioo0YcIESdK4ceMUGxur1NRUSdLUqVM1ePBgzZkzR8OHD9fy5cu1efNmLVq0SJJUVFSk3//+9xoxYoTatWunnJwcLViwQJmZmfrVr34lSbr00ks1dOhQTZo0SQsXLlR5ebkeffRRjR49uk4rHQIAAABAfXk9fI0aNUonTpzQjBkzlJWVpfj4eK1Zs8axqMahQ4ecdom+6qqrtGzZMj377LN65pln1L17d61cudKxx5efn592796t//u//1NOTo7atGmjAQMG6N///rcuu+wyx3mWLl2qRx99VEOGDJHZbNadd96p1157zbMXDwAAAKDZ8Po+X00V+3wBTU17SZnSMbMUU7XaYXtWOwQAAC7QJPb5AgAAAIDmgvAFAAAAAB5A+ALg8/JPl+un4nJJEuOsAQCAt3h9wQ0AcLcv9xzXM+/Pl8kkzb+1u67P7yKZTNqlqjBm8nYDAQBAs0D4AuDzcgrLVFQWLEnamhuk689MhG3lzUYBAIBmh2GHAHxeblGp43v78EMAAABPI3wB8Hm5RWcDV25xmRdbAgAAmjOGHQLweT8VlWniNf9Uq8BiXZt5WHp+iBQSorkpKSqQFCIpxduNBAAAPo/wBcDn5RaVaeaIlWoXelKVmWap/X+k2FjNTUlxbLJM+AIAAO7GsEMAPo+hhgAA4GJA+ALg83KLCF8AAMD7CF8AfFqlzVAePV8AAOAiQPgC4NOKyipkM7zdCgAAAMIXAB9XUlbp7SYAAABIInwB8HHFZ8KXycvtAAAAIHwB8Gmny8+ELxPxCwAAeBfhC4BPc/R8kb0AAICXsckyAJ9Wcqbna9/xS5RfHK2w3Ufk16eLwjvH6kpJHSS19WoLAQBAc0H4AuDTTp/p+Zq95mW1bWnV57uylfq3PhozsKM+9HLbAABA88KwQwA+rfhMz1dQgFnBFr+qMlZABAAAXkD4AuDT7EvNB1v8z4av0gpvNgkAADRThC8APu20o+fLT0H28FVOzxcAAPA85nwB8Gn2IYa/vj5FrVvk6dfBB1XySCfpko4a8eGHOqGqBTeY/wUAANyN8AXAp9l7vtqH71Jo0HFV9jTLb883UmGOtkrKlBTr1RYCAIDmgmGHAHyafal5k9joCwAAeBfhC4BPKy6rWlyDTZYBAIC3Eb4A+LTTZTZJhC8AAOB9hC8APu10+ZmeL4YdAgAALyN8AfBpp8+sdkjPFwAA8DbCFwCfdtqx4AYAAIB3Eb4A+LTSCvucL+IXAADwLsIXAJ9WZg9fXm4HAAAAmywD8Gn2nq9j+Q8rvEWJvvrgc+25tpumjOynFEkFkkK82kIAANBcEL4A+DR7z9fJokfVwhqsBw9dJV0lPfr4zUrxctsAAEDzwrBDAD6ttKJqwQ2rv1nWgLO/8soqbd5qEgAAaKYIXwB8mr3ny+pvltX/7K88+3BEAAAATyF8AfBppY7wVSSLX6Ha6qRalharLDdfp1Q15+uUV1sIAACai4sifC1YsECdO3dWYGCgEhIStGnTpvPWX7FihXr27KnAwED16dNHq1evdjxXXl6uadOmqU+fPmrRooViYmI0btw4HT161OkcnTt3lslkcnrMnj3bLdcHwHvsPV+xrfvJZArTV1MmaOe8uxTWv68ulRQq6VKvthAAADQXXg9f77zzjlJSUjRz5kxt3bpVffv2VXJyso4fP15j/Q0bNmjMmDGaOHGitm3bppEjR2rkyJHauXOnJKm4uFhbt27Vc889p61bt+r999/Xnj17NGLEiGrneuGFF3Ts2DHHY8qUKW69VgCeVWkzVGEzJEkmFpsHAABeZjIMw/BmAxISEjRgwADNnz9fkmSz2dShQwdNmTJFTz/9dLX6o0aNUlFRkVatWuUoGzRokOLj47Vw4cIaX+Prr7/WwIEDdfDgQXXs2FFSVc/XY489pscee6xB7S4oKFBoaKjy8/MVEsJC1cDF6HRZpS6dsUaS9GPqZJlNmarMNMuvvU3l0TGKO5apTEmxko54taUAAKApq2s28GrPV1lZmbZs2aKkpCRHmdlsVlJSkjIyMmo8JiMjw6m+JCUnJ9daX5Ly8/NlMpkUFhbmVD579my1adNGV1xxhV555RVVVFQ0/GIAXHTKzllU4+f9Xoa8+ncnAADQDHl1n6+cnBxVVlYqKirKqTwqKkq7d++u8ZisrKwa62dlZdVYv6SkRNOmTdOYMWOcUuhvfvMbXXnllQoPD9eGDRs0ffp0HTt2THPnzq3xPKWlpSotLXX8XFBQUKdrBOA99mXmzTWMOCR6AQAAT/PpTZbLy8t11113yTAMvf76607PpaSc3V718ssvl8Vi0eTJk5Wamiqr1VrtXKmpqZo1a5bb2wzAdewrHVr8zTJV7/oCAADwKK8OO4yIiJCfn5+ys7OdyrOzsxUdHV3jMdHR0XWqbw9eBw8eVFpa2gXnZSUkJKiiokIHDhyo8fnp06crPz/f8Th8+PAFrg6At51dZt6v2nNkLwAA4GleDV8Wi0X9+vVTenq6o8xmsyk9PV2JiYk1HpOYmOhUX5LS0tKc6tuD1969e/X555+rTZs2F2zL9u3bZTabFRkZWePzVqtVISEhTg8AF7eyc3q+fs7Law0BAIBmyOvDDlNSUjR+/Hj1799fAwcO1Lx581RUVKQJEyZIksaNG6fY2FilpqZKkqZOnarBgwdrzpw5Gj58uJYvX67Nmzdr0aJFkqqC1y9/+Utt3bpVq1atUmVlpWM+WHh4uCwWizIyMrRx40bdcMMNatWqlTIyMvT444/rnnvuUevWrb1zIwC4XFnlmfDldzZ82YcfEr0AAICneT18jRo1SidOnNCMGTOUlZWl+Ph4rVmzxrGoxqFDh2Q2n/3gdNVVV2nZsmV69tln9cwzz6h79+5auXKlevfuLUnKzMzUhx9+KEmKj493eq0vvvhC119/vaxWq5YvX67nn39epaWliouL0+OPP+40DwxA01daXrXghjWghk5+0hcAAPAwr+/z1VSxzxdw8fv33hO6941N6hndSmseayGpTP/3Rro++DJQ46+/RO0njlCZJIukfl5uKwAAaLrqmg283vMFAO5SWn5mwY0AP9nj1bchwdoae0S/6NpTt3mxbQAAoPnx6oIbAOBO9jlf1nPmfFnPLL5h3wMMAADAUwhfAHyWPWCdO+fLvuy8fRl6AAAAT2HYIQCf5Vhq3s8saZWk0xpy6gtl7Q5VR8tBrRraU6clBUm6xYvtBAAAzQPhC4DPcmyyHGCW9JCkTCVeb9bVY23K/3ekLnvh18qUFCvpiBfbCQAAmgeGHQLwWc49X85Y5hUAAHga4QuAz3JssuxP+AIAAN5H+ALgs8orqiJWQA09X6QvAADgaYQvAD6r/EzPV03hyyB9AQAADyN8AfBZ5TUMOzSd+WqQvQAAgIcRvgD4rDJHz5ep2nNkLwAA4GmELwA+63zDDklfAADA0whfAHyWfal55nwBAICLAeELgM8qr6wKWFX7fLWU1ErGaT+dsgSp2BJ0pqTqGQAAAHfz93YDAMBdnOd87ZYk7Qku0LDH/622raxnSgAAADyDni8APqvcPuzwnNUOrWe+Ly2v9EqbAABA80X4AuCzalpwwxrgJ0kqPRPMAAAAPIXwBcBn2ed8WWvq+aqwyWCzLwAA4EHM+QLgs8qcer6ekvSTWm/artmftFF+YEs9YQxTgcmk1pJe8WZDAQBAs0D4AuCznIcdvi0pU+ZLzRq9w6ZjLduov8mko5JiRfgCAADux7BDAD6r3Gm1w+oYdQgAADyJ8AXAZ5VXnLvPV5VzYxgbLQMAAE8ifAHwWY6eL/+af9XR8wUAADyJ8AXAZ5XVsNQ8AACAt/CJBIDPYs4XAAC4mBC+APgs+z5fllp6vpjzBQAAPInwBcBnlVWcf9ghPV8AAMCTCF8AfFbZBRbcAAAA8CQ2WQbgkwzD+Nmcr+GScqW9O/XVle30Y6VV/QpK1KpNC4V7taUAAKC5IHwB8EmVNsMxrLBqztdfq364TvrLI5u07r8nNOfAT7qzTQuvtREAADQvjMUB4JPsi21I1ed8Wc8MQyw9MycMAADAEwhfAHySfb6XJFn8awtflR5tEwAAaN4IXwB8Uvk54cvf7LzPlz2MldHzBQAAPIg5XwB8kj18WfzMMplMkvpLypK+/0kzH26p+ywhuuWZb/WipGhJm73YVgAA0DwQvgD4pPKKqjlfVSsdSlKWpEyptVmhucVq27JSBRY/5XuthQAAoLlh2CEAn1SXPb7YZBkAAHgS4QuATzq7x9d5wpenGgMAACDCFwAfde6cr9oYdH0BAAAPuijC14IFC9S5c2cFBgYqISFBmzZtOm/9FStWqGfPngoMDFSfPn20evVqx3Pl5eWaNm2a+vTpoxYtWigmJkbjxo3T0aNHnc6Rm5ursWPHKiQkRGFhYZo4caIKCwvdcn0APO9sz5fpAjUBAAA8w+vh65133lFKSopmzpyprVu3qm/fvkpOTtbx48drrL9hwwaNGTNGEydO1LZt2zRy5EiNHDlSO3fulCQVFxdr69ateu6557R161a9//772rNnj0aMGOF0nrFjx+q7775TWlqaVq1apXXr1unBBx90+/UC8Az7BsoMOwQAABcLk+HlcTcJCQkaMGCA5s+fL0my2Wzq0KGDpkyZoqeffrpa/VGjRqmoqEirVq1ylA0aNEjx8fFauHBhja/x9ddfa+DAgTp48KA6duyoXbt2qVevXvr666/Vv39/SdKaNWt0880368iRI4qJiblguwsKChQaGqr8/HyFhIQ05NIBuNG//ntC49/cpF7tQrR66rWS2kvKlI6ZpRibjrVso25ZR1XcwqJYSUe83F4AANB01TUbeLXnq6ysTFu2bFFSUpKjzGw2KykpSRkZGTUek5GR4VRfkpKTk2utL0n5+fkymUwKCwtznCMsLMwRvCQpKSlJZrNZGzdurPEcpaWlKigocHoAuHiVV1x4tUMAAABP8uqnkpycHFVWVioqKsqpPCoqSllZWTUek5WVVa/6JSUlmjZtmsaMGeNIoVlZWYqMjHSq5+/vr/Dw8FrPk5qaqtDQUMejQ4cOdbpGAN5xdsGN2ud8seAGAADwJJ/eZLm8vFx33XWXDMPQ66+/3qhzTZ8+XSkpKY6fCwoKCGDARays2lLzL0sqln7cpu9nddXCzcd06YYDevimHgr2WisBAEBz4tXwFRERIT8/P2VnZzuVZ2dnKzo6usZjoqOj61TfHrwOHjyotWvXOo29jI6OrragR0VFhXJzc2t9XavVKqvVWudrA+Bd5ZVVvVpnw9fdVV+ulk5GntCHxZvU8/tsPXBTD+80EAAANDteHXZosVjUr18/paenO8psNpvS09OVmJhY4zGJiYlO9SUpLS3Nqb49eO3du1eff/652rRpU+0ceXl52rJli6Ns7dq1stlsSkhIcMWlAfAyx7DDGuZ8Wf39JEllZ+aFAQAAeILXhx2mpKRo/Pjx6t+/vwYOHKh58+apqKhIEyZMkCSNGzdOsbGxSk1NlSRNnTpVgwcP1pw5czR8+HAtX75cmzdv1qJFiyRVBa9f/vKX2rp1q1atWqXKykrHPK7w8HBZLBZdeumlGjp0qCZNmqSFCxeqvLxcjz76qEaPHl2nlQ4BXPzOt8myPZCVEr4AAIAHeT18jRo1SidOnNCMGTOUlZWl+Ph4rVmzxrGoxqFDh2Q2n/3wdNVVV2nZsmV69tln9cwzz6h79+5auXKlevfuLUnKzMzUhx9+KEmKj493eq0vvvhC119/vSRp6dKlevTRRzVkyBCZzWbdeeedeu2119x/wQA8oqzi55ss75FUIf14SK0OhavLySM63rGPvlPVL0IGHwIAAHfz+j5fTRX7fAEXt9e/3KeX1uzWr/q11yu/6qua9vnqmHlEFSGB7PMFAAAapUns8wUA7mIfdnjefb740xMAAPAgwhcAn3S+OV92BukLAAB4EOELgE86u89X7ZssAwAAeBLhC4BPKq/4+T5fAAAA3sWnEgA+qayyUhLhCwAAXDz4VALAJ9l7vmraZFmSTIxGBAAAHkb4AuCTyi8w58sk0hcAAPAswhcAn3R2wY1afs2RvQAAgIcRvgD4pPILhC+yFwAA8DTCFwCfVF55Zs6XI3x9LemwZN4iHT6sh6cuVPT89fro8E/62mutBAAAzYm/txsAAO7g2GTZseBGu6ovUe0lSUXhP8o/65TCSirtzwAAALgVPV8AfFJZxfmHHdpDmX1JegAAAHcjfAHwSRda7dB6JnyVlts81iYAANC8MewQgE+yz/kKcAw7XCSpUFq3Vdp8pYZuP6G1I8fo3dbBOizpQW81FAAANBuELwA+yTHnyzHs8AVJmVJ3szR4qW5vHanJf56hJaFBShPhCwAAuB/DDgH4pAvt88VS8wAAwNMIXwB80oXmfJlIXwAAwMMIXwB8UnnFmTlftfR8AQAAeBqfSgD4pLJq+3w5o+cLAAB4GuELgE8qv8A+XyZmfQEAAA8jfAHwSWUXmvPlycYAAACI8AXAR1Vfav5nSF8AAMDDCF8AfE6lzZCtar0NlpoHAAAXjQaFrx9//NHV7QAAl7H3eknnLrhxiaReUlaI1KuXCjp2kX9OkcLzT+sSr7QSAAA0Nw0KX926ddMNN9ygt956SyUlJa5uEwA0Stk54etsz9daSd9JV/wkffedvvjL24r+342684PvtNYrrQQAAM1Ng8LX1q1bdfnllyslJUXR0dGaPHmyNm3a5Oq2AUCD2Fc6lGpfcCPQ30+SVHJOXQAAAHdqUPiKj4/Xn/70Jx09elRvvvmmjh07pmuuuUa9e/fW3LlzdeLECVe3EwDqrLzSvsGySaZaNvQKDDgTvsorPdYuAADQvDVqwQ1/f3/dcccdWrFihV566SX98MMPevLJJ9WhQweNGzdOx44dc1U7AaDOyivPv8eXJAVZqp4jfAEAAE9pVPjavHmzfv3rX6tdu3aaO3eunnzySe3bt09paWk6evSobrvtNle1EwDqrKzG8DVWUrK0vrOUnKw+v31EJ0bFa8MtvTTWG40EAADNjn9DDpo7d64WL16sPXv26Oabb9bf//533XzzzTKbqz7oxMXFacmSJercubMr2woAdVJzz9e/JGVKXczSZwcVGt1OpV3CVRwapH95pZUAAKC5aVD4ev3113X//ffrvvvuU7t27WqsExkZqTfeeKNRjQOAhiivqJrzZallsQ1JMrHTFwAA8LAGha+0tDR17NjR0dNlZxiGDh8+rI4dO8pisWj8+PEuaSQA1Idj2KF/7SOra1mHAwAAwG0aNOera9euysnJqVaem5uruLi4RjcKABqjrOLCC24QvgAAgKc1KHwZhlFjeWFhoQIDAxvVIABorLqsdug07LCW32kAAACuVK9hhykpKZIkk8mkGTNmKDg42PFcZWWlNm7cqPj4eJc2EADqyx6+zjvn69zs5e4GAQAAqJ7ha9u2bZKqer6+/fZbWSwWx3MWi0V9+/bVk08+6doWAkA91aXn61yGIbH+BgAAcLd6ha8vvvhCkjRhwgT96U9/UkhIiFsaBQCNUVZZ1Zd1/mGHZ4ceGiJ9AQAA92vQnK/Fixe7LHgtWLBAnTt3VmBgoBISErRp06bz1l+xYoV69uypwMBA9enTR6tXr3Z6/v3339dNN92kNm3ayGQyafv27dXOcf3118tkMjk9HnroIZdcDwDvKz+z4IblPKsdSmeHHjLlCwAAeEKde77uuOMOLVmyRCEhIbrjjjvOW/f999+v0znfeecdpaSkaOHChUpISNC8efOUnJysPXv2KDIyslr9DRs2aMyYMUpNTdUtt9yiZcuWaeTIkdq6dat69+4tSSoqKtI111yju+66S5MmTar1tSdNmqQXXnjB8fO589cANG01DzucJClf2rNNevwKKTRUkduPqsAk3dk3RgphsSAAAOBedQ5foaGhMp35M3FoaKhLXnzu3LmaNGmSJkyYIElauHChPv74Y7355pt6+umnq9X/05/+pKFDh+qpp56SJL344otKS0vT/PnztXDhQknSvffeK0k6cODAeV87ODhY0dHRLrkOABcXx4Ib/ucOJZxZ9eX6Mw9J3V75QgdOFuu+DmGELwAA4HZ1Dl+LFy+u8fuGKisr05YtWzR9+nRHmdlsVlJSkjIyMmo8JiMjw7Hiol1ycrJWrlxZ79dfunSp3nrrLUVHR+vWW2/Vc889d97er9LSUpWWljp+LigoqPdrAvCMusz5kqTAAD9JUkl5pdvbBAAAUK8FN+xOnz4twzAcYeXgwYP65z//qV69eummm26q0zlycnJUWVmpqKgop/KoqCjt3r27xmOysrJqrJ+VlVWv9t99993q1KmTYmJitGPHDk2bNk179uw573DJ1NRUzZo1q16vA8A76rraoT18nS4jfAEAAPdrUPi67bbbdMcdd+ihhx5SXl6eBg4cKIvFopycHM2dO1cPP/ywq9vpUg8++KDj+z59+qhdu3YaMmSI9u3bp65du9Z4zPTp05163QoKCtShQwe3txVA/dkX3LhQ+Aqy93ydqQ8AAOBODVrtcOvWrbr22mslSe+9956io6N18OBB/f3vf9drr71Wp3NERETIz89P2dnZTuXZ2dm1zsWKjo6uV/26SkhIkCT98MMPtdaxWq0KCQlxegC4ONW8yXJ7SSbpmF/VMoft2+vDsVfq4OzhmnBp9QV+AAAAXK1B4au4uFitWrWSJH322We64447ZDabNWjQIB08eLBO57BYLOrXr5/S09MdZTabTenp6UpMTKzxmMTERKf6kpSWllZr/bqyL0ffrl27Rp0HwMWhrnO+7NGMpeYBAIAnNGjYYbdu3bRy5Urdfvvt+vTTT/X4449Lko4fP16vHqGUlBSNHz9e/fv318CBAzVv3jwVFRU5Vj8cN26cYmNjlZqaKkmaOnWqBg8erDlz5mj48OFavny5Nm/erEWLFjnOmZubq0OHDuno0aOSpD179kiq6jWLjo7Wvn37tGzZMt18881q06aNduzYoccff1zXXXedLr/88obcDgAXGcecr7ru8+XuBgEAAKiBPV8zZszQk08+qc6dOyshIcHR8/TZZ5/piiuuqPN5Ro0apT/+8Y+aMWOG4uPjtX37dq1Zs8axqMahQ4d07NgxR/2rrrpKy5Yt06JFi9S3b1+99957WrlypWOPL0n68MMPdcUVV2j48OGSpNGjR+uKK65wLEVvsVj0+eef66abblLPnj31xBNP6M4779RHH33UkFsB4CJUVsc5X/btMwy6vgAAgAeYjAZ+6sjKytKxY8fUt29fmc1VH3A2bdqkkJAQ9ezZ06WNvBgVFBQoNDRU+fn5zP8CLjLT3tuhdzYf1lPJPfTIDd3OlLaXlCkdM0sxNik2VqF796sgKEAhJeXKDwzwZpMBAEATVtds0KBhh9LZYXznGjhwYENPBwAuU+ZYcOMCnfv2YYd0fAEAAA9oUPgqKirS7NmzlZ6eruPHj8tmc16m+ccff3RJ4wCgIezDDi0XmvPl+I70BQAA3K9B4euBBx7Qv/71L917771q166dY94EAFwMSusavhxzvtzeJAAAgIaFr08++UQff/yxrr76ale3BwAara7DDllqHgAAeFKDVjts3bq1wsPDXd0WAHCJsopKSXXp+ar6SvYCAACe0KDw9eKLL2rGjBkqLi52dXsAoNFqnvP1lqQ1UvYcac0a6a239MShPEW+sVEJa/d6pZ0AAKB5adCwwzlz5mjfvn2KiopS586dFRDgvETz1q1bXdI4AGgIx7BDp/B1fdWX+GRHyYDvsxW0N0etSio81zgAANBsNSh8jRw50sXNAADXsfd8WS8w5ysowE+SVFpe6fY2AQAANCh8zZw509XtAACXqetS84EBVc+fJnwBAAAPaPAmy3l5eXrvvfe0b98+PfXUUwoPD9fWrVsVFRWl2NhYV7YRAOql5vD1paRSafsuKftSyWrVt5f11+nuETpubfCvQgAAgDpr0CeOHTt2KCkpSaGhoTpw4IAmTZqk8PBwvf/++zp06JD+/ve/u7qdAFBnNc/5ukdSphRllq6wSbGxmn7wkI5PTNBPBSVeaScAAGheGrTaYUpKiu677z7t3btXgYGBjvKbb75Z69atc1njAKAh7JssB1xony/7UvOsNQ8AADygQeHr66+/1uTJk6uVx8bGKisrq9GNAoDGcAw7vOAmy1Xpy5Ahm40EBgAA3KtB4ctqtaqgoKBa+X//+1+1bdu20Y0CgIYyDMMx7NBax02WJamkgkU3AACAezUofI0YMUIvvPCCysvLJUkmk0mHDh3StGnTdOedd7q0gQBQHxU2wzGM8EKrHZ6TvXS6jPAFAADcq0Hha86cOSosLFTbtm11+vRpDR48WN26dVOrVq30+9//3tVtBIA6sw85lC4cvs7t+mK5eQAA4G4NWu0wNDRUaWlpWr9+vb755hsVFhbqyiuvVFJSkqvbBwD14hS+LjDn61xFpYQvAADgXvUOXzabTUuWLNH777+vAwcOyGQyKS4uTtHR0TIMQ6ZzJ1EAgIfZ53uZTZJ/fcJXWYW7mgQAACCpnsMODcPQiBEj9MADDygzM1N9+vTRZZddpoMHD+q+++7T7bff7q52AkCd1LzB8oUVlRK+AACAe9Wr52vJkiVat26d0tPTdcMNNzg9t3btWo0cOVJ///vfNW7cOJc2EgDqyrHBcj16vSSGHQIAAPer16eTt99+W88880y14CVJN954o55++mktXbrUZY0DgPo62/Pl97NnjkgypHaVVbsqHzmiI5LueWOj2qeuVTHDDgEAgJvVK3zt2LFDQ4cOrfX5YcOG6Ztvvml0owCgoezh60J7fNm1tFYNAGDYIQAAcLd6ha/c3FxFRUXV+nxUVJR++umnRjcKABrKMeywjuEr2HImfLHPFwAAcLN6ha/Kykr5+9c+TczPz08VFfz1GID3OIYd1nHOVwtr1fBEer4AAIC71WvBDcMwdN9998lqtdb4fGlpqUsaBQANVftqh7Mk5UtfbpM+vEIKDdWsmTP1Rd8Y5QVbVFRC+AIAAO5Vr/A1fvz4C9ZhpUMA3lRaa/j6X0mZUg+z9OqXUmys/nfmTGV2Dpdf6yAVpe31dFMBAEAzU6/wtXjxYne1AwBcosFLzbPaIQAAcLP6fToBgIscmywDAICLFeELgE9pcPhitUMAAOBmhC8APqWsoipE0fMFAAAuNoQvAD7FPufLWs85X8X0fAEAADcjfAHwKcz5AgAAFyvCFwCfYg9fAfVd7ZDwBQAA3IzwBcCnlFY2rOeruLxSNpvhjiYBAABIquc+XwBwsat92OFgSTnSj3ukm3pIEREaLOm4zdCGH3NlGNLp8kq1sPJrEQAAuAefMgD4FEf4qjbscGnVl6slfXq2xDBJXd/dLpuqNlomfAEAAHdh2CEAn1LfBTdMJpNaWKoCV1EpKx4CAAD38Xr4WrBggTp37qzAwEAlJCRo06ZN562/YsUK9ezZU4GBgerTp49Wr17t9Pz777+vm266SW3atJHJZNL27durnaOkpESPPPKI2rRpo5YtW+rOO+9Udna2Ky8LgJc4lpqvx5yvYKufJBbdAAAA7uXV8PXOO+8oJSVFM2fO1NatW9W3b18lJyfr+PHjNdbfsGGDxowZo4kTJ2rbtm0aOXKkRo4cqZ07dzrqFBUV6ZprrtFLL71U6+s+/vjj+uijj7RixQr961//0tGjR3XHHXe4/PoAeF5Dlpo/2/NF+AIAAO5jMgzDa8t7JSQkaMCAAZo/f74kyWazqUOHDpoyZYqefvrpavVHjRqloqIirVq1ylE2aNAgxcfHa+HChU51Dxw4oLi4OG3btk3x8fGO8vz8fLVt21bLli3TL3/5S0nS7t27demllyojI0ODBg2qU9sLCgoUGhqq/Px8hYSE1PfSAbjJA//3tT7fdVyz7+ij0QM7nvPMjZKypW1HpXtipKgo3bh2rbIlZR/OU8sF67X4vgG6oWekl1oOAACaqrpmA6/1fJWVlWnLli1KSko62xizWUlJScrIyKjxmIyMDKf6kpScnFxr/Zps2bJF5eXlTufp2bOnOnbsWK/zALg4ldba8/VfSd9L0QXS999L//2vvUTFrYMkVS24AQAA4C5eW9YrJydHlZWVioqKciqPiorS7t27azwmKyurxvpZWVl1ft2srCxZLBaFhYXV6zylpaUqLS11/FxQUFDn1wTgOQ0ZdmgymSQx7BAAALiX1xfcaCpSU1MVGhrqeHTo0MHbTQJQA/uCG9WXmq/dmezFaocAAMCtvBa+IiIi5OfnV22VwezsbEVHR9d4THR0dL3q13aOsrIy5eXl1es806dPV35+vuNx+PDhOr8mAM9pSM+X2RG+6PkCAADu47XwZbFY1K9fP6WnpzvKbDab0tPTlZiYWOMxiYmJTvUlKS0trdb6NenXr58CAgKczrNnzx4dOnTovOexWq0KCQlxegC4+DRo2KGq0tcpwhcAAHAjr835kqSUlBSNHz9e/fv318CBAzVv3jwVFRVpwoQJkqRx48YpNjZWqampkqSpU6dq8ODBmjNnjoYPH67ly5dr8+bNWrRokeOcubm5OnTokI4ePSqpKlhJVT1e0dHRCg0N1cSJE5WSkqLw8HCFhIRoypQpSkxMrPNKhwAuXg3Z58t8ZtxhfnG5W9oEAAAgeTl8jRo1SidOnNCMGTOUlZWl+Ph4rVmzxrGoxqFDh2Q2n/0AddVVV2nZsmV69tln9cwzz6h79+5auXKlevfu7ajz4YcfOsKbJI0ePVqSNHPmTD3//POSpFdffVVms1l33nmnSktLlZycrL/85S8euGIA7ubo+fLzq/Mx9jlfeafL3NEkAAAASV7e56spY58v4OLU78U0nSwq06ePXace0a3Oeaa9pEzpmFmKsUmxsWp/5IgyJbUpq1TLGWs0qEu4lj9Y92HMAAAAUhPY5wsA3KFhS81Xfc0/zZwvAADgPl4ddggArlZaWVv4miGpUNq7VZpzpdSypb1EP50q1T8kFZxmzhcAAHAfwhcAn2EYhqPnq/qCGw9WfbnuzONsiQ7YDP1DUl4xc74AAID7MOwQgM8oPRO8pPqtdhgaFCBJKiqrVHml7QK1AQAAGobwBcBnlJRXOr4PDKj7aochZ8KXxNBDAADgPgw7BOAz7D1ffmaTAvx+/relY5IqpewcqTxC8vPTsXbtVHmmfiurv06VVij/dLnatLR6uukAAKAZIHwB8Bn2nq/AGoccDpCUKdnMUoeqpeYHnFlqPlZSp6AAnSqtUB49XwAAwE0YdgjAZ5SUV/V81WfIoV1YcNXQw3zCFwAAcBPCFwCfYe/5qs9iG3b2RTeY8wUAANyF8AXAZziGHTag58sevuj5AgAA7kL4AuAz7AtuWBsRvvKKCV8AAMA9CF8AfMbZnq+GDzuk5wsAALgL4QuAzyix93w1ZM4XC24AAAA3I3wB8BnM+QIAABczwhcAn1Hq2OerEeGLOV8AAMBNCF8AfIZ9wQ3mfAEAgIuRv7cbAACucv5hh+mSKqTTh6SdHSV/f3uJ/CWVEr4AAICbEb4A+IyS8vMtuNGj6kuXy35eIkk60sIiScotKpNhGDKZTG5qJQAAaK4YdgjAZzRmwY2IllZJUlmlTQWnK1zaLgAAAInwBcCHlFRUha+GbLIcGOCnkMCqwQAnCktc2i4AAACJYYcAfEhp+fkW3FgmqVhav03adYUUHKxld9+tYknBku6WFNHKqoKSCp04VaZukZ5rNwAAaB4IXwB8hn2T5ZqXmv+tpEypi1m6xibFxuq3d9+tTEmxqgpfbVta9eOJIp0oLPVcowEAQLPBsEMAPsM+58vagKXmJaltq6p5XydOEb4AAIDrEb4A+IzTZVXhK9hS/zlf0tlFN3Lo+QIAAG5A+ALgM4rLqlYpDApo2Ihqer4AAIA7Eb4A+IziRvZ8Eb4AAIA7Eb4A+IzT5a4JXww7BAAA7kD4AuAz7D1fQQ0NXy3p+QIAAO5D+ALgM84uuNG4OV8ni8pksxkuaxcAAIBE+ALgIwzDcCy40dBhh+EtLDKZpEqboZ+Ky1zZPAAAAMIXAN9QWmGTvbOq5mGH0ZJipZ8CpdhYKTraXqLoMzUC/MxqHWyRJDZaBgAALtewsTkAcJGxDzmUpKCAmsLX5qovvSQdcSpx0ralVblFZTpxqlQ9o2uoAAAA0ED0fAHwCfaVDgP8TArwa/ivtsiQqnlfWfklLmkXAACAHeELgE9wrHRYY69X3cWGBUmSjhG+AACAixG+APiExq50aBdzJnwdzTvd6DYBAACcizlfAHzChVc6nCwpV1q3U/pzbyk8XJP/+lflSgqX9NcztdqFBkqSMglfAADAxQhfAHxCcfmFNlj+WFKm1N0svbdbio21lyj2nFr2YYeELwAA4GoMOwTgE84OO2zcnK9zhx0aBhstAwAA17kowteCBQvUuXNnBQYGKiEhQZs2bTpv/RUrVqhnz54KDAxUnz59tHr1aqfnDcPQjBkz1K5dOwUFBSkpKUl79+51qtO5c2eZTCanx+zZs11+bQA8w7HgRiPnfLULC5TZJJWU23TiFHt9AQAA1/F6+HrnnXeUkpKimTNnauvWrerbt6+Sk5N1/PjxGutv2LBBY8aM0cSJE7Vt2zaNHDlSI0eO1M6dOx11Xn75Zb322mtauHChNm7cqBYtWig5OVklJc6rl73wwgs6duyY4zFlyhS3XisA97HP+WrRyJ4vq7+f2rcOliT9mFPU6HYBAADYeT18zZ07V5MmTdKECRPUq1cvLVy4UMHBwXrzzTdrrP+nP/1JQ4cO1VNPPaVLL71UL774oq688krNnz9fUlWv17x58/Tss8/qtttu0+WXX66///3vOnr0qFauXOl0rlatWik6OtrxaNGihbsvF4CbnCqpCl+tAhs/lTUuoup3wY8nCF8AAMB1vBq+ysrKtGXLFiUlJTnKzGazkpKSlJGRUeMxGRkZTvUlKTk52VF///79ysrKcqoTGhqqhISEauecPXu22rRpoyuuuEKvvPKKKioqam1raWmpCgoKnB4ALh6FpVX//7a0BjT6XF3a2sNXYaPPBQAAYOfV1Q5zcnJUWVmpqKgop/KoqCjt3r27xmOysrJqrJ+VleV43l5WWx1J+s1vfqMrr7xS4eHh2rBhg6ZPn65jx45p7ty5Nb5uamqqZs2aVb8LBOAxhWd6vlq6oOerS9uWkqT9DDsEAAAu1GyXmk9JSXF8f/nll8tisWjy5MlKTU2V1WqtVn/69OlOxxQUFKhDhw4eaSuAC7P3fLWyNv7XWlf7sEPCFwAAcCGvDjuMiIiQn5+fsrOzncqzs7MVHR1d4zHR0dHnrW//Wp9zSlJCQoIqKip04MCBGp+3Wq0KCQlxegC4eJxyYc9X3Jlhh4dyi1VWYWv0+QAAACQvhy+LxaJ+/fopPT3dUWaz2ZSenq7ExMQaj0lMTHSqL0lpaWmO+nFxcYqOjnaqU1BQoI0bN9Z6Tknavn27zGazIiMjG3NJALyksLRcktSy1p6vMZImSnuulCZOlMaMsZdozM9qRocEKtjip0qboUO5xe5rNAAAaFa8PuwwJSVF48ePV//+/TVw4EDNmzdPRUVFmjBhgiRp3Lhxio2NVWpqqiRp6tSpGjx4sObMmaPhw4dr+fLl2rx5sxYtWiRJMplMeuyxx/Q///M/6t69u+Li4vTcc88pJiZGI0eOlFS1aMfGjRt1ww03qFWrVsrIyNDjjz+ue+65R61bt/bKfQDQOI4FN2rt+Xql6sv1Zx5nS6oxmUyKi2ih744WaH9OkbpFtnRdQwEAQLPl9fA1atQonThxQjNmzFBWVpbi4+O1Zs0ax4IZhw4dktl8toPuqquu0rJly/Tss8/qmWeeUffu3bVy5Ur17t3bUee3v/2tioqK9OCDDyovL0/XXHON1qxZo8DAQElVQwiXL1+u559/XqWlpYqLi9Pjjz/uNKcLQNNiX3DDFXO+pKpFN747WqC9x0/pF72iLnwAAADABZgMwzC83YimqKCgQKGhocrPz2f+F3AR6P8/acopLNOax65Vz+jG/z/5ly9/0Mtr9uiWy9tp/t1XuqCFAADAV9U1G3h9k2UAcAXHghsu6vnqHRMqSfruKHv6AQAA1yB8AWjyyipsKj2zKmGrWjdZ7ikpRPrRKoWESD172kvUs4bal8VU/dVqf06RYz4ZAABAYxC+ADR554ajFla/2mpJOiUFVUinTkmFhfYSFdZQu01Lq6JDquaJ7jpG7xcAAGg8wheAJi//9Nll5v39XPdrrXdsVe/Xzsx8l50TAAA0X4QvAE3eT8VlkqTQoNqGHDZML+Z9AQAAFyJ8AWjy8ourer5at3Bt+OodQ88XAABwHcIXgCbP3vPVOtji0vP27RAmSfpv9ikW3QAAAI1G+ALQ5OWd6fly9bDDqJBAxYYFyWZIOw7nufTcAACg+SF8AWjy8tzU8yVJV3ZqLUnacvAnl58bAAA0L4QvAE3eT/Y5X8Gu7fmSpH4dwyRJWw4RvgAAQOMQvgA0eXlnlpoPdWPP17ZDebLZDJefHwAANB/+3m4AADTW2WGH5+v5WijptHT4W+ndPlJQkL1EQec56tJ2IQoMMCv/dLn2nShU96hWrms4AABoVghfAJq8uq12eEvVl4G/kgY6lZxXgJ9ZV3RorYwfT+qr/bmELwAA0GAMOwTQ5B0vKJUkRbS0uuX8V3drI0lavzfHLecHAADNA+ELQJNWaTN0sqiq5ysyxF3hK0KStH5fjsorbW55DQAA4PsYdgigScstKlOlzZDJJLVpcb5hh1sklUm79kl5XSWLRVv69VOZJIukfuc58vL2YWrTwqKTRWXa+GOuruke4dJrAAAAzQPhC0CTdvxUiSSpTQur/P3O15l/m6RMKcws9bJJsbG67cgRZUqKlXTkPEf6mU266bIovb3psD7+9hjhCwAANAjDDgE0acdPVc33atvKPUMO7W69PEaStOqboyouq3DrawEAAN9E+ALQpJ04s9hGpJvD16AubdSpTbBOlVZoxebz9ZMBAADUjPAFoEmzDzt0d/gym0164NoukqTX0veqsJTeLwAAUD+ELwBNWmZeVfhqF3a+rZJdY/SADuoS0UIni8q08Mt9bn89AADgWwhfAJq0Iz8VS5I6tHZ/+ArwM+u3Q3tKkv66bp/2ZJ1y+2sCAADfQfgC0KQdzq0KX+1bB3vk9ZIvi1LSpVEqrzT05IpvVMG+XwAAoI4IXwCarEqbocy805KkDuHu7/mSJJPJpD/c3lshgf76NjNfi/79o0deFwAANH2ELwBN1vFTJSqvNORvNqldqGfClyRFhgRq5q2XSZLmpe3V3myGHwIAgAsjfAFosg7kVA05jAkLkp/Z5NHXvuPKWN3Qo63KKm166r0dDD8EAAAXRPgC0GTtPV7V49Q9smUdau+SlC+1PCzl50u7dtlLtKsBr20ymfSHO/qoldVf2w/n6en3v5XNZjTgTAAAoLkgfAFosv57Zrhf96hWdajdSlKI1CpGCgmRWrWyl6guR9ekXWiQXvlVX/mZTXpvyxFNfWe7itj/CwAA1ILwBaDJ+m92oSTpkqi69Hy5x9De0Zp7V1UA++ibo7ptwXpHKAQAADgX4QtAk2SzGY59ti6pU8+X+9wWH6u3Jw1SZCurfjheqFv//B8tXr+fYYgAAMAJ4QtAk/RjTpHyT5crMMCsHtF1CV9zJT0vfXmb9Pzz0ty59hLNdUF7BsaFa/XUa3XdJW1VWmHTrI++171vbtT+nCIXnB0AAPgCk2EY/Gm2AQoKChQaGqr8/HyFhIR4uzlAs/Pu14f12/+3QwPjwvXu5MQ6HNFeUqZ0zCzF2KTYWLU/ckSZkmIlHXFRuwzD0FtfHdTvV+9SSblNJpM0rHe0HhrcVZe3D3PRqwAAgItJXbMBPV8AmqRNB3IlSVd2bO3lljgzmUy6N7GzPv7NtbqxZ6QMQ1r9bZZGzF+vMYu+0r/+e0L8zQsAgObJ39sNAID6stkMfbnnuCTp2u4RXm5Nzbq2bak37xug3VkFWrTuR324/agyfjypjB9Pqmd0K92b2EnXdW+rDuHB3m4qAADwEMIXgCZn2+GflFNYplZWfw3oHO7t5pxXz+gQzb0rXk/c1ENv/me/3t50SLuzTul3/9wpSeoQHqTrL4nUsD7RGtg5XP5+DEgAAMBXEb4ANDnvfH1YkpTUK0oW/6YRVmLDgvTcLb005cZuWrbpkNbuOq7th/N0OPe0/vHVQf3jq4Nq08Kimy6LUvJl0RrUpY0CA/y83WwAAOBChC8ATcrRvNP6YPtRSdLYhI5ebk39hQVb9Ovru+nX13dTYWmFNv54Up9+l6XPvs/WyaIyvb3psN7edFiBAWZd3TVCV3QMU0xYkCJaWhXewuL42lRCJwAAOOui+Nd7wYIF6ty5swIDA5WQkKBNmzadt/6KFSvUs2dPBQYGqk+fPlq9erXT84ZhaMaMGWrXrp2CgoKUlJSkvXv3OtXJzc3V2LFjFRISorCwME2cOFGFhYUuvzYArmOzGZrxwU6VVtg0oHNr9et0cS22UV8trf4acmmUXv5lX339uyS9NTFBdyd0VHRIoErKbUrffVx//Oy/Snn3G417c5Nu+fN/NCg1XT2e+0Q3/PFL/XrpFv3x0z1asfmwNvyQo30nClVSXuntywIAALXwes/XO++8o5SUFC1cuFAJCQmaN2+ekpOTtWfPHkVGRlarv2HDBo0ZM0apqam65ZZbtGzZMo0cOVJbt25V7969JUkvv/yyXnvtNf3f//2f4uLi9Nxzzyk5OVnff/+9AgMDJUljx47VsWPHlJaWpvLyck2YMEEPPvigli1b5tHrB1A3pRWVem7lTn2+67gsfmY9P+IymUwmbzfLZQL8zLqme4Su6R4hY6ShXcdOad3eE/rheKGO5Z/WycIynSwqU25RmSpthvbnFNW6h1hMaKCjt6xNy6resratrIpoaVVLq7+sAWYF+vspMMCswAA/WQPMamn1V1CAn0/dUwAALjZe3+crISFBAwYM0Pz58yVJNptNHTp00JQpU/T0009Xqz9q1CgVFRVp1apVjrJBgwYpPj5eCxculGEYiomJ0RNPPKEnn3xSkpSfn6+oqCgtWbJEo0eP1q5du9SrVy99/fXX6t+/vyRpzZo1uvnmm3XkyBHFxMRcsN3s8wW4X2lFpQ7nFmv9Dyf1xn/261Buscwm6dVR8botPraeZ/PMPl/uZrMZyikq1Z6sU9p97JQOnCzSodxiHc07reyCUhWWVjT43AF+JoUGBSgs2KLWwQEKDbIo2HJOSPOv+hoY4CeTqaotFTZDAX5mWf3NCrb4q1WgvwID/ORnlswmk8wmk/zMJplMkp/JJLPZdKZc8nN8b5LZXPW86Ux9s+nM8WbTmeOqfvY7p361c5+pDwCAp9U1G3i156usrExbtmzR9OnTHWVms1lJSUnKyMio8ZiMjAylpKQ4lSUnJ2vlypWSpP379ysrK0tJSUmO50NDQ5WQkKCMjAyNHj1aGRkZCgsLcwQvSUpKSpLZbNbGjRt1++23V3vd0tJSlZaWOn4uKCho0DW7WmlFpcb+78bz1qlLur5QBq/bOepQxwUncUVbjDqcpU7Xc8HXqcs5Gv/3j7rd+wv8N3bFfz+55r1ksxk6WVSmUyXOQSKipUWv/LKvbuhZvVf8wq6U1EE6tF8aFCe1bWsvUdsGnM1bzGaTIlsFKrJVoK7t7txywzD0U3G59ucUKbugRCcLS3WisEw5haU6XlCqnMJSnS6rVGlFpUrKbSqpqFRJedX3klReaSinsEw5hWXeuDSXsQc7kyOsVd03p7B3bvgzSyZVhThJOje+ndsT6BTrTNW/ra2uyamuqVqZ02kvcI6azlW9vJYXdxNPxF1Pdch65lp8478JcLH4Ra8oTR7c1dvNqDOvhq+cnBxVVlYqKirKqTwqKkq7d++u8ZisrKwa62dlZTmet5edr87PhzT6+/srPDzcUefnUlNTNWvWrDpemecYhrT54E/ebgbgNoEBZl3ePkzDekdr1IAOCrY09NfWh1VfEiRlOJX4DJPJpPAWFoW3sNTrOMMwVFRWqfzT5covLldecZl+Ki5X3umyqpBWXqnS8kqVVNiqvpbbZDMM+ftVhZeKSkMlFZUqKq3UqZJylVZUPW8zDFXaqs5faTPOlOlMuSHD0Dnl9jpV4dtmGKo0nH+21fHvFDZDslUaqlvUBwA0ZZdEt/J2E+rF63O+morp06c79bgVFBSoQ4cOXmxRlQA/sxbe0++C9eryh7YLVanLX+vq8te2C52mbm1t/AXVra2Nv2ZXXc8F79uFX6YO96Tx7ahLWy50X82mqlUBI1paFBoUwDwkNzOZTGpp9VdLq79iw4K83ZxaGcaZwHYmrNlscoQ0w3ZueVVQq3R8f06wOyfoOYc/x6uc83rnvHZNZWd+ODfiOR9j/PyUNdY1LviaRrWyc3+o9XgvZk9vx14vz6jw6vV7+dK9pFleNM5o3zrY202oF6+Gr4iICPn5+Sk7O9upPDs7W9HR0TUeEx0dfd769q/Z2dlq166dU534+HhHnePHjzudo6KiQrm5ubW+rtVqldVqrfvFeYif2aShvWtuMwD4EpOpamigmUFVAIAmyqtLzVssFvXr10/p6emOMpvNpvT0dCUmJtZ4TGJiolN9SUpLS3PUj4uLU3R0tFOdgoICbdy40VEnMTFReXl52rJli6PO2rVrZbPZlJCQ4LLrAwAAAAA7rw87TElJ0fjx49W/f38NHDhQ8+bNU1FRkSZMmCBJGjdunGJjY5WamipJmjp1qgYPHqw5c+Zo+PDhWr58uTZv3qxFixZJqvrL6GOPPab/+Z//Uffu3R1LzcfExGjkyJGSpEsvvVRDhw7VpEmTtHDhQpWXl+vRRx/V6NGj67TSIYCmaISkE9LG/dJjVQtujPjwQ51Q1YIbvjb/CwAAXHy8Hr5GjRqlEydOaMaMGcrKylJ8fLzWrFnjWDDj0KFDMpvPdtBdddVVWrZsmZ599lk988wz6t69u1auXOnY40uSfvvb36qoqEgPPvig8vLydM0112jNmjWOPb4kaenSpXr00Uc1ZMgQmc1m3XnnnXrttdc8d+EAPGyrpEypo1n6KluKjbWXqL6L1gMAADSE1/f5aqrY5wtoanxjny8AAHDxqWs28OqcLwAAAABoLghfAAAAAOABhC8AAAAA8ADCFwAAAAB4AOELAAAAADyA8AUAAAAAHuD1fb6aKvsK/QUFBV5uCYC6sVV9OXVmdw2bTbYz///aJPF/MgAAaCh7JrjQLl6ErwY6deqUJKlDhw5ebgmA+jnzS/HYMSk0tOpbSaHeaxAAAPARp06dUmho7Z8q2GS5gWw2m44ePapWrVrJZDJ5uzkNVlBQoA4dOujw4cNsFu1h3Hvv4d57D/fee7j33sO99x7uvfc0t3tvGIZOnTqlmJgYmc21z+yi56uBzGaz2rdv7+1muExISEiz+B/jYsS99x7uvfdw772He+893Hvv4d57T3O69+fr8bJjwQ0AAAAA8ADCFwAAAAB4AOGrmbNarZo5c6asVqu3m9LscO+9h3vvPdx77+Heew/33nu4997Dva8ZC24AAAAAgAfQ8wUAAAAAHkD4AgAAAAAPIHwBAAAAgAcQvgAAAADAAwhfzUTnzp1lMpmcHrNnz3aqs2PHDl177bUKDAxUhw4d9PLLL1c7z4oVK9SzZ08FBgaqT58+Wr16tacuoUk6cOCAJk6cqLi4OAUFBalr166aOXOmysrKnOr8/L+NyWTSV1995XQu7r1rLFiwQJ07d1ZgYKASEhK0adMmbzepyUtNTdWAAQPUqlUrRUZGauTIkdqzZ49Tneuvv77ae/yhhx5yqnPo0CENHz5cwcHBioyM1FNPPaWKigpPXkqT8/zzz1e7rz179nQ8X1JSokceeURt2rRRy5Ytdeeddyo7O9vpHNz3hqnp31WTyaRHHnlEEu95V1q3bp1uvfVWxcTEyGQyaeXKlU7PG4ahGTNmqF27dgoKClJSUpL27t3rVCc3N1djx45VSEiIwsLCNHHiRBUWFjrVqcvnoObmfPe+vLxc06ZNU58+fdSiRQvFxMRo3LhxOnr0qNM5XPUZ1GcYaBY6depkvPDCC8axY8ccj8LCQsfz+fn5RlRUlDF27Fhj586dxttvv20EBQUZf/3rXx111q9fb/j5+Rkvv/yy8f333xvPPvusERAQYHz77bfeuKQm4ZNPPjHuu+8+49NPPzX27dtnfPDBB0ZkZKTxxBNPOOrs37/fkGR8/vnnTv99ysrKHHW4966xfPlyw2KxGG+++abx3XffGZMmTTLCwsKM7OxsbzetSUtOTjYWL15s7Ny509i+fbtx8803Gx07dnT6HTN48GBj0qRJTu/x/Px8x/MVFRVG7969jaSkJGPbtm3G6tWrjYiICGP69OneuKQmY+bMmcZll13mdF9PnDjheP6hhx4yOnToYKSnpxubN282Bg0aZFx11VWO57nvDXf8+HGn+56WlmZIMr744gvDMHjPu9Lq1auN3/3ud8b7779vSDL++c9/Oj0/e/ZsIzQ01Fi5cqXxzTffGCNGjDDi4uKM06dPO+oMHTrU6Nu3r/HVV18Z//73v41u3boZY8aMcTxfl89BzdH57n1eXp6RlJRkvPPOO8bu3buNjIwMY+DAgUa/fv2czuGKz6C+hPDVTHTq1Ml49dVXa33+L3/5i9G6dWujtLTUUTZt2jSjR48ejp/vuusuY/jw4U7HJSQkGJMnT3Z5e33Zyy+/bMTFxTl+toevbdu21XoM9941Bg4caDzyyCOOnysrK42YmBgjNTXVi63yPcePHzckGf/6178cZYMHDzamTp1a6zGrV682zGazkZWV5Sh7/fXXjZCQEKffS3A2c+ZMo2/fvjU+l5eXZwQEBBgrVqxwlO3atcuQZGRkZBiGwX13palTpxpdu3Y1bDabYRi8593l5wHAZrMZ0dHRxiuvvOIoy8vLM6xWq/H2228bhmEY33//vSHJ+Prrrx11PvnkE8NkMhmZmZmGYdTtc1BzV1Pw/blNmzYZkoyDBw86ylzxGdSXMOywGZk9e7batGmjK664Qq+88orT0IaMjAxdd911slgsjrLk5GTt2bNHP/30k6NOUlKS0zmTk5OVkZHhmQvwEfn5+QoPD69WPmLECEVGRuqaa67Rhx9+6PQc977xysrKtGXLFqf7aDablZSUxH10sfz8fEmq9j5funSpIiIi1Lt3b02fPl3FxcWO5zIyMtSnTx9FRUU5ypKTk1VQUKDvvvvOMw1vovbu3auYmBh16dJFY8eO1aFDhyRJW7ZsUXl5udN7vmfPnurYsaPjPc99d42ysjK99dZbuv/++2UymRzlvOfdb//+/crKynJ6n4eGhiohIcHpfR4WFqb+/fs76iQlJclsNmvjxo2OOhf6HIQLy8/Pl8lkUlhYmFN5Yz+D+hJ/bzcAnvGb3/xGV155pcLDw7VhwwZNnz5dx44d09y5cyVJWVlZiouLczrG/g9CVlaWWrduraysLKd/JOx1srKyPHMRPuCHH37Qn//8Z/3xj390lLVs2VJz5szR1VdfLbPZrP/3//6fRo4cqZUrV2rEiBGSxL13gZycHFVWVtZ4H3fv3u2lVvkem82mxx57TFdffbV69+7tKL/77rvVqVMnxcTEaMeOHZo2bZr27Nmj999/X1Lt73H7c6hZQkKClixZoh49eujYsWOaNWuWrr32Wu3cuVNZWVmyWCzVPgSd+7uD++4aK1euVF5enu677z5HGe95z7Dfq/P9G5mVlaXIyEin5/39/RUeHu5U50Kfg3B+JSUlmjZtmsaMGaOQkBBHuSs+g/oSwlcT9vTTT+ull146b51du3apZ8+eSklJcZRdfvnlslgsmjx5slJTU2W1Wt3dVJ9Tn3tvl5mZqaFDh+pXv/qVJk2a5CiPiIhw+u8zYMAAHT16VK+88oojfAFNxSOPPKKdO3fqP//5j1P5gw8+6Pi+T58+ateunYYMGaJ9+/apa9eunm6mzxg2bJjj+8svv1wJCQnq1KmT3n33XQUFBXmxZc3LG2+8oWHDhikmJsZRxnsezUl5ebnuuusuGYah119/3ek5PoM6I3w1YU888YTTX9lq0qVLlxrLExISVFFRoQMHDqhHjx6Kjo6utgKW/efo6GjH15rq2J9vTup7748ePaobbrhBV111lRYtWnTB8yckJCgtLc3xM/e+8SIiIuTn58d9dKNHH31Uq1at0rp169S+ffvz1k1ISJBU1RvctWtXRUdHV1t58ue/g3BhYWFhuuSSS/TDDz/oF7/4hcrKypSXl+fU+3Xue5773ngHDx7U559/7ujRqg3vefew36vs7Gy1a9fOUZ6dna34+HhHnePHjzsdV1FRodzc3At+xjn3NVAze/A6ePCg1q5d69TrVZOGfAb1Jcz5asLatm2rnj17nvdx7vjZc23fvl1ms9nRDZ+YmKh169apvLzcUSctLU09evRwdPcmJiYqPT3d6TxpaWlKTEx00xVevOpz7zMzM3X99derX79+Wrx4sczmC/9vt337dqd/RLj3jWexWNSvXz+n+2iz2ZSens59bCTDMPToo4/qn//8p9auXVtt+EhNtm/fLkmO93liYqK+/fZbpw9IaWlpCgkJUa9evdzSbl9UWFioffv2qV27durXr58CAgKc3vN79uzRoUOHHO957nvjLV68WJGRkRo+fPh56/Ged4+4uDhFR0c7vc8LCgq0ceNGp/d5Xl6etmzZ4qizdu1a2Ww2Ryiuy+cgVGcPXnv37tXnn3+uNm3aXPCYhnwG9SneXvED7rdhwwbj1VdfNbZv327s27fPeOutt4y2bdsa48aNc9TJy8szoqKijHvvvdfYuXOnsXz5ciM4OLjaUvP+/v7GH//4R2PXrl3GzJkzWe78Ao4cOWJ069bNGDJkiHHkyBGnZVbtlixZYixbtszYtWuXsWvXLuP3v/+9YTabjTfffNNRh3vvGsuXLzesVquxZMkS4/vvvzcefPBBIywszGm1MdTfww8/bISGhhpffvml03u8uLjYMAzD+OGHH4wXXnjB2Lx5s7F//37jgw8+MLp06WJcd911jnPYl92+6aabjO3btxtr1qwx2rZty7LbF/DEE08YX375pbF//35j/fr1RlJSkhEREWEcP37cMIyqpeY7duxorF271ti8ebORmJhoJCYmOo7nvjdOZWWl0bFjR2PatGlO5bznXevUqVPGtm3bjG3bthmSjLlz5xrbtm1zrKg3e/ZsIywszPjggw+MHTt2GLfddluNS81fccUVxsaNG43//Oc/Rvfu3Z2Wmq/L56Dm6Hz3vqyszBgxYoTRvn17Y/v27U6//+0rF7rqM6gvIXw1A1u2bDESEhKM0NBQIzAw0Lj00kuNP/zhD0ZJSYlTvW+++ca45pprDKvVasTGxhqzZ8+udq53333XuOSSSwyLxWJcdtllxscff+ypy2iSFi9ebEiq8WG3ZMkS49JLLzWCg4ONkJAQY+DAgU5LQ9tx713jz3/+s9GxY0fDYrEYAwcONL766itvN6nJq+09vnjxYsMwDOPQoUPGddddZ4SHhxtWq9Xo1q2b8dRTTznteWQYhnHgwAFj2LBhRlBQkBEREWE88cQTRnl5uReuqOkYNWqU0a5dO8NisRixsbHGqFGjjB9++MHx/OnTp41f//rXRuvWrY3g4GDj9ttvd/rjj2Fw3xvj008/NSQZe/bscSrnPe9aX3zxRY2/Y8aPH28YRtVy888995wRFRVlWK1WY8iQIdX+m5w8edIYM2aM0bJlSyMkJMSYMGGCcerUKac6dfkc1Nyc797bt8qp6WHf786Vn0F9hckwDMMDHWwAAAAA0Kwx5wsAAAAAPIDwBQAAAAAeQPgCAAAAAA8gfAEAAACABxC+AAAAAMADCF8AAAAA4AGELwAAAADwAMIXAAAAAHgA4QsAAAAAPIDwBQAAAAAeQPgCAAAAAA8gfAEAAACAB/x/5KssrTYT5g4AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "def show_distribution(var_data):\n", + " '''\n", + " This function will make a distribution (graph) and display it\n", + " '''\n", + "\n", + " # Get statistics\n", + " min_val = var_data.min()\n", + " max_val = var_data.max()\n", + " mean_val = var_data.mean()\n", + " med_val = var_data.median()\n", + " mod_val = var_data.mode()[0]\n", + "\n", + " print('Minimum:{:.2f}\\nMean:{:.2f}\\nMedian:{:.2f}\\nMode:{:.2f}\\nMaximum:{:.2f}\\n'.format(min_val,\n", + " mean_val,\n", + " med_val,\n", + " mod_val,\n", + " max_val))\n", + "\n", + " # Create a figure for 2 subplots (2 rows, 1 column)\n", + " fig, ax = plt.subplots(2, 1)\n", + " # Plot the histogram \n", + " ax[0].hist(var_data)\n", + " ax[0].set_ylabel('Frequency')\n", + "\n", + " # Add lines for the mean, median, and mode\n", + " ax[0].axvline(x=min_val, color = 'gray', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=mean_val, color = 'cyan', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=med_val, color = 'red', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=mod_val, color = 'yellow', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=max_val, color = 'gray', linestyle='dashed', linewidth = 2)\n", + "\n", + " # Plot the boxplot \n", + " ax[1].boxplot(var_data, vert=False)\n", + " ax[1].set_xlabel('Value')\n", + "\n", + " # Add a title to the Figure\n", + " fig.suptitle('Data Distribution')\n", + "\n", + " # Show the figure\n", + " fig.show()\n", + "\n", + "\n", + "\n", + "def show_density(var_data):\n", + " fig = plt.figure(figsize=(10,4))\n", + "\n", + " # Plot density\n", + " var_data.plot.density()\n", + "\n", + " # Add titles and labels\n", + " plt.title('Data Density')\n", + "\n", + " # Show the mean, median, and mode\n", + " plt.axvline(x=var_data.mean(), color = 'cyan', linestyle='dashed', linewidth = 2)\n", + " plt.axvline(x=var_data.median(), color = 'red', linestyle='dashed', linewidth = 2)\n", + " plt.axvline(x=var_data.mode()[0], color = 'yellow', linestyle='dashed', linewidth = 2)\n", + "\n", + " # Show the figure\n", + " plt.show()\n", + "\n", + "show_distribution(df_flights.DepDelay)\n", + "show_density(df_flights.DepDelay)\n", + "\n", + "\n", + "show_distribution(df_flights.ArrDelay)\n", + "show_density(df_flights.ArrDelay)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "delays grouped by Carrier" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " DepDelay\n", + "Carrier \n", + "AS 0.713122\n", + "HA 0.719233\n", + "US 4.955968\n", + "DL 7.144951\n", + "OO 7.748681\n", + "YV 8.953606\n", + "9E 9.940683\n", + "FL 10.621714\n", + "F9 10.897595\n", + "AA 11.955309\n", + "UA 12.360214\n", + "WN 12.678309\n", + "B6 12.749757\n", + "VX 14.136106\n", + "EV 14.414058\n", + "MQ 14.972730\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", + "
ArrDelay
Carrier
AS-0.129887
HA0.820458
DL2.420039
US4.040999
UA4.885221
9E5.256995
OO6.153706
AA7.063615
FL7.662590
YV8.033918
WN8.114542
VX9.464629
B69.875243
EV10.388515
F911.469873
MQ13.335253
\n", + "
" + ], + "text/plain": [ + " ArrDelay\n", + "Carrier \n", + "AS -0.129887\n", + "HA 0.820458\n", + "DL 2.420039\n", + "US 4.040999\n", + "UA 4.885221\n", + "9E 5.256995\n", + "OO 6.153706\n", + "AA 7.063615\n", + "FL 7.662590\n", + "YV 8.033918\n", + "WN 8.114542\n", + "VX 9.464629\n", + "B6 9.875243\n", + "EV 10.388515\n", + "F9 11.469873\n", + "MQ 13.335253" + ] + }, + "execution_count": 110, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "print(df_flights.groupby(df_flights.Carrier)[[\"DepDelay\"]].mean().sort_values(\"DepDelay\"))\n", + "df_flights.groupby(df_flights.Carrier)[[\"ArrDelay\"]].mean().sort_values(\"ArrDelay\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Delays grouped by day of the week" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "metadata": {}, + "outputs": [ + { + "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", + "
ArrDelay
DayOfWeek
62.152108
24.293584
74.972470
16.784885
37.022472
58.478716
410.827256
\n", + "
" + ], + "text/plain": [ + " ArrDelay\n", + "DayOfWeek \n", + "6 2.152108\n", + "2 4.293584\n", + "7 4.972470\n", + "1 6.784885\n", + "3 7.022472\n", + "5 8.478716\n", + "4 10.827256" + ] + }, + "execution_count": 106, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_flights.groupby(df_flights.DayOfWeek)[[\"ArrDelay\"]].mean().sort_values(\"ArrDelay\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Departure delay grouped by airport" + ] + }, + { + "cell_type": "code", + "execution_count": 120, + "metadata": {}, + "outputs": [ + { + "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", + "
DepDelay
OriginAirportID
102992.221925
138302.305410
129544.321770
153764.672694
148694.990350
......
1247814.047801
1161814.203831
1129814.492855
1323216.083384
1393016.656477
\n", + "

70 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " DepDelay\n", + "OriginAirportID \n", + "10299 2.221925\n", + "13830 2.305410\n", + "12954 4.321770\n", + "15376 4.672694\n", + "14869 4.990350\n", + "... ...\n", + "12478 14.047801\n", + "11618 14.203831\n", + "11298 14.492855\n", + "13232 16.083384\n", + "13930 16.656477\n", + "\n", + "[70 rows x 1 columns]" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "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", + "
YearMonthDayofMonthDayOfWeekCarrierOriginAirportIDOriginAirportNameOriginCityOriginStateDestAirportIDDestAirportNameDestCityDestStateCRSDepTimeDepDelayDepDel15CRSArrTimeArrDelayArrDel15Cancelled
320137221OO13930Chicago O'Hare InternationalChicagoIL11042Cleveland-Hopkins InternationalClevelandOH804351.010273310
820131082AA13930Chicago O'Hare InternationalChicagoIL11298Dallas/Fort Worth InternationalDallas/Fort WorthTX101080.01240-1000
4720137254MQ13930Chicago O'Hare InternationalChicagoIL12451Jacksonville InternationalJacksonvilleFL1245-10.01605700
14820135175AA13930Chicago O'Hare InternationalChicagoIL15016Lambert-St. Louis InternationalSt. LouisMO1720-10.01830100
14920135293AA13930Chicago O'Hare InternationalChicagoIL11298Dallas/Fort Worth InternationalDallas/Fort WorthTX740-60.01010-2100
...............................................................
27183720136123AA13930Chicago O'Hare InternationalChicagoIL15016Lambert-St. Louis InternationalSt. LouisMO120530.01310600
27185220134217EV13930Chicago O'Hare InternationalChicagoIL11057Charlotte Douglas InternationalCharlotteNC1110-70.01403-600
27186120139264UA13930Chicago O'Hare InternationalChicagoIL11292Denver InternationalDenverCO545-50.0720-1100
2719192013561MQ13930Chicago O'Hare InternationalChicagoIL10693Nashville InternationalNashvilleTN165500.01820-400
271933201310292US13930Chicago O'Hare InternationalChicagoIL14100Philadelphia InternationalPhiladelphiaPA1345-60.01645-1100
\n", + "

12660 rows × 20 columns

\n", + "
" + ], + "text/plain": [ + " Year Month DayofMonth DayOfWeek Carrier OriginAirportID \\\n", + "3 2013 7 22 1 OO 13930 \n", + "8 2013 10 8 2 AA 13930 \n", + "47 2013 7 25 4 MQ 13930 \n", + "148 2013 5 17 5 AA 13930 \n", + "149 2013 5 29 3 AA 13930 \n", + "... ... ... ... ... ... ... \n", + "271837 2013 6 12 3 AA 13930 \n", + "271852 2013 4 21 7 EV 13930 \n", + "271861 2013 9 26 4 UA 13930 \n", + "271919 2013 5 6 1 MQ 13930 \n", + "271933 2013 10 29 2 US 13930 \n", + "\n", + " OriginAirportName OriginCity OriginState DestAirportID \\\n", + "3 Chicago O'Hare International Chicago IL 11042 \n", + "8 Chicago O'Hare International Chicago IL 11298 \n", + "47 Chicago O'Hare International Chicago IL 12451 \n", + "148 Chicago O'Hare International Chicago IL 15016 \n", + "149 Chicago O'Hare International Chicago IL 11298 \n", + "... ... ... ... ... \n", + "271837 Chicago O'Hare International Chicago IL 15016 \n", + "271852 Chicago O'Hare International Chicago IL 11057 \n", + "271861 Chicago O'Hare International Chicago IL 11292 \n", + "271919 Chicago O'Hare International Chicago IL 10693 \n", + "271933 Chicago O'Hare International Chicago IL 14100 \n", + "\n", + " DestAirportName DestCity DestState \\\n", + "3 Cleveland-Hopkins International Cleveland OH \n", + "8 Dallas/Fort Worth International Dallas/Fort Worth TX \n", + "47 Jacksonville International Jacksonville FL \n", + "148 Lambert-St. Louis International St. Louis MO \n", + "149 Dallas/Fort Worth International Dallas/Fort Worth TX \n", + "... ... ... ... \n", + "271837 Lambert-St. Louis International St. Louis MO \n", + "271852 Charlotte Douglas International Charlotte NC \n", + "271861 Denver International Denver CO \n", + "271919 Nashville International Nashville TN \n", + "271933 Philadelphia International Philadelphia PA \n", + "\n", + " CRSDepTime DepDelay DepDel15 CRSArrTime ArrDelay ArrDel15 \\\n", + "3 804 35 1.0 1027 33 1 \n", + "8 1010 8 0.0 1240 -10 0 \n", + "47 1245 -1 0.0 1605 7 0 \n", + "148 1720 -1 0.0 1830 1 0 \n", + "149 740 -6 0.0 1010 -21 0 \n", + "... ... ... ... ... ... ... \n", + "271837 1205 3 0.0 1310 6 0 \n", + "271852 1110 -7 0.0 1403 -6 0 \n", + "271861 545 -5 0.0 720 -11 0 \n", + "271919 1655 0 0.0 1820 -4 0 \n", + "271933 1345 -6 0.0 1645 -11 0 \n", + "\n", + " Cancelled \n", + "3 0 \n", + "8 0 \n", + "47 0 \n", + "148 0 \n", + "149 0 \n", + "... ... \n", + "271837 0 \n", + "271852 0 \n", + "271861 0 \n", + "271919 0 \n", + "271933 0 \n", + "\n", + "[12660 rows x 20 columns]" + ] + }, + "execution_count": 120, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "display(df_flights.groupby(df_flights.OriginAirportID)[[\"DepDelay\"]].mean().sort_values(\"DepDelay\"))\n", + "\n", + "df_flights.query(\"OriginAirportID == 13930\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Answers:\n", + "\n", + "mean(departure time): 10.40\n", + "mean(arrival time): 6.51\n", + "\n", + "flights with AS carrier seems to have the least delay infact arriving early by 0.13 minute\n", + "flights with MQ carrier has the most delay of 13.34 minutes\n", + "\n", + "flights on a Saturday tend to have less delays on average(2.152108), whereas flights on a Thursday have the most delays(10.827256). So there isn't much noticable difference\n", + "\n", + "Chicago O'Hare International is the aiport with the highert departure delay" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The dataset contains observations of US domestic flights in 2013, and consists of the following fields:\n", + "\n", + "- **Year**: The year of the flight (all records are from 2013)\n", + "- **Month**: The month of the flight\n", + "- **DayofMonth**: The day of the month on which the flight departed\n", + "- **DayOfWeek**: The day of the week on which the flight departed - from 1 (Monday) to 7 (Sunday)\n", + "- **Carrier**: The two-letter abbreviation for the airline.\n", + "- **OriginAirportID**: A unique numeric identifier for the departure aiport\n", + "- **OriginAirportName**: The full name of the departure airport\n", + "- **OriginCity**: The departure airport city\n", + "- **OriginState**: The departure airport state\n", + "- **DestAirportID**: A unique numeric identifier for the destination aiport\n", + "- **DestAirportName**: The full name of the destination airport\n", + "- **DestCity**: The destination airport city\n", + "- **DestState**: The destination airport state\n", + "- **CRSDepTime**: The scheduled departure time\n", + "- **DepDelay**: The number of minutes departure was delayed (flight that left ahead of schedule have a negative value)\n", + "- **DelDelay15**: A binary indicator that departure was delayed by more than 15 minutes (and therefore considered \"late\")\n", + "- **CRSArrTime**: The scheduled arrival time\n", + "- **ArrDelay**: The number of minutes arrival was delayed (flight that arrived ahead of schedule have a negative value)\n", + "- **ArrDelay15**: A binary indicator that arrival was delayed by more than 15 minutes (and therefore considered \"late\")\n", + "- **Cancelled**: A binary indicator that the flight was cancelled\n", + "\n", + "Your challenge is to explore the flight data to analyze possible factors that affect delays in departure or arrival of a flight.\n", + "\n", + "1. Start by cleaning the data.\n", + " - Identify any null or missing data, and impute appropriate replacement values.\n", + " - Identify and eliminate any outliers in the **DepDelay** and **ArrDelay** columns.\n", + "2. Explore the cleaned data.\n", + " - View summary statistics for the numeric fields in the dataset.\n", + " - Determine the distribution of the **DepDelay** and **ArrDelay** columns.\n", + " - Use statistics, aggregate functions, and visualizations to answer the following questions:\n", + " - *What are the average (mean) departure and arrival delays?*\n", + " - *How do the carriers compare in terms of arrival delay performance?*\n", + " - *Is there a noticable difference in arrival delays for different days of the week?*\n", + " - *Which departure airport has the highest average departure delay?*\n", + " - *Do **late** departures tend to result in longer arrival delays than on-time departures?*\n", + " - *Which route (from origin airport to destination airport) has the most **late** arrivals?*\n", + " - *Which route has the highest average arrival delay?*\n", + " \n", + "Add markdown and code cells as required to create your solution.\n", + "\n", + "> **Note**: There is no single \"correct\" solution. A sample solution is provided in [01 - Flights Challenge.ipynb](01%20-%20Flights%20Solution.ipynb)." + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code to explore the data" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.12.5" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/2-Regression/2-Data/01 - Flights Solution.ipynb b/2-Regression/2-Data/01 - Flights Solution.ipynb new file mode 100644 index 0000000000..7543edd250 --- /dev/null +++ b/2-Regression/2-Data/01 - Flights Solution.ipynb @@ -0,0 +1,1490 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Flights Data Exploration Challenge\n", + "\n", + "In this challge, you'll explore a real-world dataset containing flights data from the US Department of Transportation.\n", + "\n", + "Let's start by loading and viewing the data." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "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", + "
YearMonthDayofMonthDayOfWeekCarrierOriginAirportIDOriginAirportNameOriginCityOriginStateDestAirportIDDestAirportNameDestCityDestStateCRSDepTimeDepDelayDepDel15CRSArrTimeArrDelayArrDel15Cancelled
020139161DL15304Tampa InternationalTampaFL12478John F. Kennedy InternationalNew YorkNY153940.018241300
120139231WN14122Pittsburgh InternationalPittsburghPA13232Chicago Midway InternationalChicagoIL71030.07402210
22013976AS14747Seattle/Tacoma InternationalSeattleWA11278Ronald Reagan Washington NationalWashingtonDC810-30.01614-700
320137221OO13930Chicago O'Hare InternationalChicagoIL11042Cleveland-Hopkins InternationalClevelandOH804351.010273310
420135164DL13931Norfolk InternationalNorfolkVA10397Hartsfield-Jackson Atlanta InternationalAtlantaGA545-10.0728-900
\n", + "
" + ], + "text/plain": [ + " Year Month DayofMonth DayOfWeek Carrier OriginAirportID \\\n", + "0 2013 9 16 1 DL 15304 \n", + "1 2013 9 23 1 WN 14122 \n", + "2 2013 9 7 6 AS 14747 \n", + "3 2013 7 22 1 OO 13930 \n", + "4 2013 5 16 4 DL 13931 \n", + "\n", + " OriginAirportName OriginCity OriginState DestAirportID \\\n", + "0 Tampa International Tampa FL 12478 \n", + "1 Pittsburgh International Pittsburgh PA 13232 \n", + "2 Seattle/Tacoma International Seattle WA 11278 \n", + "3 Chicago O'Hare International Chicago IL 11042 \n", + "4 Norfolk International Norfolk VA 10397 \n", + "\n", + " DestAirportName DestCity DestState CRSDepTime \\\n", + "0 John F. Kennedy International New York NY 1539 \n", + "1 Chicago Midway International Chicago IL 710 \n", + "2 Ronald Reagan Washington National Washington DC 810 \n", + "3 Cleveland-Hopkins International Cleveland OH 804 \n", + "4 Hartsfield-Jackson Atlanta International Atlanta GA 545 \n", + "\n", + " DepDelay DepDel15 CRSArrTime ArrDelay ArrDel15 Cancelled \n", + "0 4 0.0 1824 13 0 0 \n", + "1 3 0.0 740 22 1 0 \n", + "2 -3 0.0 1614 -7 0 0 \n", + "3 35 1.0 1027 33 1 0 \n", + "4 -1 0.0 728 -9 0 0 " + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "df_flights = pd.read_csv('data/flights.csv')\n", + "df_flights.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The dataset contains observations of US domestic flights in 2013, and consists of the following fields:\n", + "\n", + "- **Year**: The year of the flight (all records are from 2013)\n", + "- **Month**: The month of the flight\n", + "- **DayofMonth**: The day of the month on which the flight departed\n", + "- **DayOfWeek**: The day of the week on which the flight departed - from 1 (Monday) to 7 (Sunday)\n", + "- **Carrier**: The two-letter abbreviation for the airline.\n", + "- **OriginAirportID**: A unique numeric identifier for the departure aiport\n", + "- **OriginAirportName**: The full name of the departure airport\n", + "- **OriginCity**: The departure airport city\n", + "- **OriginState**: The departure airport state\n", + "- **DestAirportID**: A unique numeric identifier for the destination aiport\n", + "- **DestAirportName**: The full name of the destination airport\n", + "- **DestCity**: The destination airport city\n", + "- **DestState**: The destination airport state\n", + "- **CRSDepTime**: The scheduled departure time\n", + "- **DepDelay**: The number of minutes departure was delayed (flight that left ahead of schedule have a negative value)\n", + "- **DelDelay15**: A binary indicator that departure was delayed by more than 15 minutes (and therefore considered \"late\")\n", + "- **CRSArrTime**: The scheduled arrival time\n", + "- **ArrDelay**: The number of minutes arrival was delayed (flight that arrived ahead of schedule have a negative value)\n", + "- **ArrDelay15**: A binary indicator that arrival was delayed by more than 15 minutes (and therefore considered \"late\")\n", + "- **Cancelled**: A binary indicator that the flight was cancelled\n", + "\n", + "Your challenge is to explore the flight data to analyze possible factors that affect delays in departure or arrival of a flight.\n", + "\n", + "1. Start by cleaning the data.\n", + " - Identify any null or missing data, and impute appropriate replacement values.\n", + " - Identify and eliminate any outliers in the **DepDelay** and **ArrDelay** columns.\n", + "2. Explore the cleaned data.\n", + " - View summary statistics for the numeric fields in the dataset.\n", + " - Determine the distribution of the **DepDelay** and **ArrDelay** columns.\n", + " - Use statistics, aggregate functions, and visualizations to answer the following questions:\n", + " - *What are the average (mean) departure and arrival delays?*\n", + " - *How do the carriers compare in terms of arrival delay performance?*\n", + " - *Are some days of the week more prone to arrival days than others?*\n", + " - *Which departure airport has the highest average departure delay?*\n", + " - *Do **late** departures tend to result in longer arrival delays than on-time departures?*\n", + " - *Which route (from origin airport to destination airport) has the most **late** arrivals?*\n", + " - *Which route has the highest average arrival delay?*\n", + " \n", + "Add markdown and code cells as requried to create your solution.\n", + "\n", + "> **Note**: There is no single \"correct\" solution. A sample solution is provided in [01 - Flights Challenge.ipynb](01%20-%20Flights%20Solution.ipynb)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Clean missing values\n", + "\n", + "Find how many null values there are for each column." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Year 0\n", + "Month 0\n", + "DayofMonth 0\n", + "DayOfWeek 0\n", + "Carrier 0\n", + "OriginAirportID 0\n", + "OriginAirportName 0\n", + "OriginCity 0\n", + "OriginState 0\n", + "DestAirportID 0\n", + "DestAirportName 0\n", + "DestCity 0\n", + "DestState 0\n", + "CRSDepTime 0\n", + "DepDelay 0\n", + "DepDel15 2761\n", + "CRSArrTime 0\n", + "ArrDelay 0\n", + "ArrDel15 0\n", + "Cancelled 0\n", + "dtype: int64" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_flights.isnull().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Hmm, looks like there are some null \"late departure\" indicators. Departures are considered late if the delay is 15 minutes or more, so let's see the delays for the ones with a null late indicator:" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "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", + "
DepDelayDepDel15
1710NaN
3590NaN
4290NaN
5450NaN
5540NaN
.........
2714100NaN
2716070NaN
2716340NaN
2716710NaN
2718850NaN
\n", + "

2761 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " DepDelay DepDel15\n", + "171 0 NaN\n", + "359 0 NaN\n", + "429 0 NaN\n", + "545 0 NaN\n", + "554 0 NaN\n", + "... ... ...\n", + "271410 0 NaN\n", + "271607 0 NaN\n", + "271634 0 NaN\n", + "271671 0 NaN\n", + "271885 0 NaN\n", + "\n", + "[2761 rows x 2 columns]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_flights[df_flights.isnull().any(axis=1)][['DepDelay','DepDel15']]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can't see them all in this display, but it looks like they may all have delay of 0. Let's check by looking at the summary statistics for these records:" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 2761.0\n", + "mean 0.0\n", + "std 0.0\n", + "min 0.0\n", + "25% 0.0\n", + "50% 0.0\n", + "75% 0.0\n", + "max 0.0\n", + "Name: DepDelay, dtype: float64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_flights[df_flights.isnull().any(axis=1)].DepDelay.describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The min, max, and mean are all 0; so it seems that none of these were actually *late* departures. Let's replace the missing **DepDel15** indicator with a 0 and confirm there are no more missing values." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Year 0\n", + "Month 0\n", + "DayofMonth 0\n", + "DayOfWeek 0\n", + "Carrier 0\n", + "OriginAirportID 0\n", + "OriginAirportName 0\n", + "OriginCity 0\n", + "OriginState 0\n", + "DestAirportID 0\n", + "DestAirportName 0\n", + "DestCity 0\n", + "DestState 0\n", + "CRSDepTime 0\n", + "DepDelay 0\n", + "DepDel15 0\n", + "CRSArrTime 0\n", + "ArrDelay 0\n", + "ArrDel15 0\n", + "Cancelled 0\n", + "dtype: int64" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_flights.DepDel15 = df_flights.DepDel15.fillna(0)\n", + "df_flights.isnull().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Clean outliers\n", + "\n", + "View the distribution and summary statistics for the **DepDelay** and **ArrDelay** columns." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DepDelay \n", + "Minimum:-63.00\n", + "Mean:10.35\n", + "Median:-1.00\n", + "Mode:-3.00\n", + "Maximum:1425.00\n", + "\n", + "ArrDelay \n", + "Minimum:-75.00\n", + "Mean:6.50\n", + "Median:-3.00\n", + "Mode:0.00\n", + "Maximum:1440.00\n", + "\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAncAAAEjCAYAAABQPSceAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nO3de7xdZX3g/8/3XDgJEMgVEsjlxGptCFBNgjBeWkcdQImg6FQYW9FSGHFgtLavSkynmM7rN2LHaNFXf2YStRUr8YJUSdTh0mDbTAcwSeWiqKQVJCRIJNyMlGj9zh9r7cPeJycn+yR7n33OOp/367VeZz3PWut5nvXk2Wt/sy57RWYiSZKkaujqdAMkSZLUOgZ3kiRJFWJwJ0mSVCEGd5IkSRVicCdJklQhBneSJEkVYnAnSaMkIjIint/pdkiqNoM7SZUREQ9ExDMR8XREPBER/xgR74yIwz7WRcRfRcS+suynI+LeiPhgRBzbirZLUqsY3Emqmtdn5hRgAXA18D7gUy0q+8/KsmcB7wDOAP5PRBzVovIl6bAZ3EmqpMx8MjNvBN4CXBQRJ0dEX0R8OCJ+FBE/jog1ETEZICJeGRE7IuL9EfGT8izgWw9Q9r9m5reAc4EZFIEeZTm/GxH3RcTjEXFTRCwYqoyIOCci/ikinoqIhyLiA3XLvhYRVwxa/+6IeOPh9ouk6jO4k1RpmXknsAN4BcWZvF8FXgQ8HzgR+JO61WcDM8v8i4C1EfHCYcp+GrilLJuIOA94P3A+xdm9fwDWH2DzvcDbgKnAOcBlEfGGctlngN+urRgRv1626WtN7rakCczgTtJEsBOYDlwK/H5m7ikDs/8BXDBo3f+Wmc9m5t9RBFO/1WTZAO8EPpiZ92XmL8ryXzTU2bvM/GZm3pOZv8zMuymCwN8sF98I/GpEvKBM/w7whczcN5KdljQxGdxJmghOBHqAI4Gt5cMWTwD/m+IMW83jmbm3Lv0gcEITZe8p5xcA19SVvweIcp0GEXF6RNwWEbsj4kmKwHAmFJd9gS8Av10+DHIh8NkR7bGkCcvgTlKlRcRpFMHVV4BngMWZObWcjs3Mo+tWnzbo4Yj5FGfmDlT20cBrKC6/AjwE/Oe68qdm5uTM/MchNr+O4gzdvMw8FlhDEQjWfAZ4K/Bq4GeZ+X9Hst+SJi6DO0mVFBHHRMRy4PPAX2fmXcA64KMRcVy5zokRcdagTVdFxBER8QpgOfClIcrui4ilFAHj48BflovWACsiYnG53rER8R8P0MQpwJ7M/NeIeAnwn+oXlsHcL4HVeNZO0ggY3Emqmg0R8TTFWbSVwEd47mnW9wHbgdsj4ingVqD+gYlHKIK1ncDngHdm5vfqlv9RWfZjwLXAVuCltUu5mfk3wIeAz5fl3wu89gDtfBfwp2V5fwJ8cYh1rgVOAf66+d2XNNFFZna6DZLUcRHxSoozfHM73ZaaiHgbcGlmvrzTbZE0fnjmTpLGoIg4kuLs3tpOt0XS+GJwJ0ljTHkf4G7gxxQPXkhS07wsK0mSVCGeuZMkSaoQgztJkqQKMbiTJEmqEIM7SZKkCjG4kyRJqhCDO0mSpAoxuJMkSaoQgztJkqQKMbiTJEmqEIM7SZKkCjG4kyRJqhCDO0mSpAoxuJMkSaoQgztJkqQK6el0A8aKmTNnZn9/f9vK37lzJwAnnHBCC0vdWv5dOkRKkiSNpvZ81w9t69atP8nMWUMtM7gr9ff3s2XLlraVv2rVKgCuuuqqFpYa5d8tQ6QkSdJoas93/dAi4sEDLfOyrCRJUoV45m6ULFmypPWF/v2vFX9/o/hzSetrkCRJTWrLd/0hiMzsdBvGhGXLlmU7L8tKkiS1SkRszcxlQy3zzN0o6r/ya51uQss8cPU5nW6CJEkagvfcjZKdO3cyI/a2tMzz+m7jvL7bBtLPnngMz554TEvrkCRJzdm5c+fAE7OdZHA3StatW8e5k+5raZnXrFrNNatWD6QfueIVPHLFK1pahyRJas66detYt25dp5thcCdJklQlBneSJEkVYnAnSZJUIQZ3kiRJFWJwJ0mSVCEGd5IkSRXijxiPkksuuYTXf3xzS8t891V/0JCe/fF/aGn5kiSpeZdcMjZeBGpwN0pOOOEEHsujWlrmV5/99w3pvoefamn5kiSpeSeccEKnmwB4WVaSJKlSDO5GyYYNG3hp7wMtLfPW097Jrae9cyD92BtP4bE3ntLSOiRJUnM2bNjAhg0bOt0Mg7vRsm3bNl7Y85OWlvn8N+3g+W/aMZD+6enz+enp81tahyRJas62bdvYtm1bp5thcCdJklQlBneSJEkVYnAnSZJUIQZ3kiRJFWJwJ0mSVCFtC+4iYl5E3BYR342I70TEu8v86RFxS0TcX/6dVuZHRHwsIrZHxN0RsaSurIvK9e+PiIvq8pdGxD3lNh+LiBiujk6aM2cOP/nlkS0t85m7juCZu44YSB+x40mO2PFkS+uQJEnNmTNnDnPmzOl0M4jMbE/BEXOAOZm5LSKmAFuBNwBvB/Zk5tURcSUwLTPfFxGvA64AXgecDlyTmadHxHRgC7AMyLKcpZn5eETcCfxX4A7g68DHMvMbEfFnQ9UxXHuXLVuWW7ZsaX1H1Om/8mttLX80PXD1OZ1ugiRJE1ZEbM3MZUMta+rMXUSM+JdxM3NXZm4r558G7gNOBM4DPlOu9hmKgI8y/9os3A5MLQPEs4BbMnNPZj4O3AKcXS47JjNvzyJCvXZQWUPVIUmSVGnNXpb9/yPizoh4V0QcO9JKIqIfeDHFGbbjM3NXuegR4Phy/kTgobrNdpR5w+XvGCKfYeoY3K5LI2JLRGzZvXv3SHdLkiRpzGkquMvMVwBvBeYBWyPiuoj4D81sGxFHA18G3pOZDW+2L8+4tee6cBN1ZObazFyWmctmzZrVzmawatUq3jG5tZd9H7h6OQ9cvXwg/eDV5/Cgl0slSeqIVatWsWrVqk43o/kHKjLzfuCPgfcBvwl8LCK+FxHnH2ibiOilCOw+l5k3lNk/Li+p1u7Le7TMf5gieKyZW+YNlz93iPzh6pAkSaq0Zu+5OzUiPkpx39yrgNdn5qJy/qMH2CaATwH3ZeZH6hbdCNSeeL0I+Gpd/tvKp2bPAJ4sL63eBJwZEdPKp17PBG4qlz0VEWeUdb1tUFlD1SFJklRpPU2u93Hgk8D7M/OZWmZm7oyIPz7ANi8Dfge4JyK+Xea9H7ga+GJEXAw8CPxWuezrFE/Kbgd+BryjrGNPRPx34Fvlen+amXvK+XcBfwVMBr5RTgxThyRJUqU1G9ydAzyTmf8GEBFdwKTM/FlmfnaoDTJzMxAHKO/VQ6yfwH85QFmfBj49RP4W4OQh8h8bqg5JkqSqa/aeu1spzo7VHFnmSZIkaQxpNriblJk/rSXK+da+bkGSJEmHrdnLsnsjYkntR4kjYinwzEG2UZ3ly5ez4oZ7WlrmDde8siE9/Ya7W1q+JElq3vLlyw++0ihoNrh7D/CliNhJcR/dbOAtbWtVBS1dupQffOmRlpb53l1/2JCecudDB1hTkiS129KlSzvdBKDJ4C4zvxURvwa8sMz6fmb+vH3NkiRJ0qFo9swdwGlAf7nNkoggM69tS6sqaOvWrfxq925+8G+texPGR+Z8GHjuDN7TLyl+69kzeJIkjb6tW7cCnT+D11RwFxGfBX4F+Dbwb2V2AgZ3Tdq4cSMvOwJ+8Ezrgrvz3/1NAN57ZRHc7Tn/VMDgTpKkTti4cSMwToI7YBlwUvlbdJIkSRqjmv0plHspHqKQJEnSGNbsmbuZwHcj4k7g2VpmZp7bllZJkiTpkDQb3H2gnY2QJElSazT7Uyh/FxELgBdk5q0RcSTQ3d6mSZIkaaSauucuIi4Brgf+V5l1IvCVdjVKkiRJhyaaeQA2Ir4NvAS4IzNfXObdk5mntLl9o2bZsmW5ZcuWttbRf+XX2lr+aHrg6nM63QRJkiasiNiamcuGWtbs07LPZua+ugJ7KH7nTpIkSWNIs8Hd30XE+4HJEfEfgC8BG9rXLEmSJB2KZoO7K4HdwD3Afwa+DvxxuxpVRWvXruX1fd9taZn3XXg+9114/kB61+UvZ9flL29pHZIkqTlr165l7dq1nW5G00/L/hJYV046BLt27WJms6F0kyb/enmlfH3xZ9/cY1tbgSRJatquXbs63QSg+XfL/pAh7rHLzOe1vEWSJEk6ZCN5t2zNJOA/AtNb3xxJkiQdjqYuFGbmY3XTw5n554C/hSFJkjTGNHtZdkldsoviTF6zZ/0kSZI0SpoN0FbXzf8CeAD4rZa3RpIkSYel2adl/327G1J1S5YsYf2dP2ppmdu/PLchffQdrS1fkiQ1b8mSJQdfaRQ0+/qx9w63PDM/0rIWdYivHxsZXz8mSVLnDPf6sZE8LXsacGOZfj1wJ3D/4TdPkiRJrdJscDcXWJKZTwNExAeAr2Xmb7erYVWzc+dOZsReHsujWlbmeX23AfDVZ4ur5s+eeAwAfQ8/1bI6JElSc3bu3AnACSec0NF2NPvOhOOBfXXpfWXeAUXEpyPi0Yi4ty5vekTcEhH3l3+nlfkRER+LiO0RcXf907kRcVG5/v0RcVFd/tKIuKfc5mMREcPV0Wnr1q3j3En3tbTMa1at5ppVzz3r8sgVr+CRK17R0jokSVJz1q1bx7p1nX+ZV7PB3bXAnRHxgfKs3R3AZw6yzV8BZw/KuxL428x8AfC3ZRrgtcALyulS4BNQBGrAVcDpwEuAq+qCtU8Al9Rtd/ZB6pAkSaq8Zn/E+P8D3gE8Xk7vyMz/cZBt/h7YMyj7PJ4LCj8DvKEu/9os3A5MjYg5wFnALZm5JzMfB24Bzi6XHZOZt2fxRMi1g8oaqg5JkqTKG8mr7I8EnsrMa4AdEbHwEOo7PjNrb9V9hOcu7Z4IPFS33o4yb7j8HUPkD1fHfiLi0ojYEhFbdu/efQi7I0mSNLY0FdxFxFXA+4AVZVYv8NeHU3F5xu3gv8PSxjoyc21mLsvMZbNmzWpnUyRJkkZFs2fu3gicC+wFyMydwJRDqO/H5SVVyr+PlvkPA/Pq1ptb5g2XP3eI/OHqkCRJqrxmg7t99WfBIuJQf8/jRqD2xOtFwFfr8t9WPjV7BvBkeWn1JuDMiJhWPkhxJnBTueypiDijfEr2bYPKGqoOSZKkymv2d+6+GBH/i+JBh0uA3wWGfdY3ItYDrwRmRsQOiqdery7Luhh4kOfeT/t14HXAduBnFA9vkJl7IuK/A98q1/vTzKw9pPEuiidyJwPfKCeGqaOjLrnkEl7/8c0tLfPdV/1BQ3r2x/+hpeVLkqTmXXLJJZ1uAtDE68fKM2NzgV+jOHMWFGfPbml/80aPrx8bGV8/JklS5xzW68cyMyPi65l5CsVPkUiSJGmMavaeu20RcVpbW1JxGzZs4KW9D7S0zFtPeye3nvbOgfRjbzyFx954SkvrkCRJzdmwYQMbNmzodDOaDu5OB26PiH8uXw92T0Tc3c6GVc22bdt4Yc9PWlrm89+0g+e/6bmf+/vp6fP56enzW1qHJElqzrZt29i2bVunmzH8ZdmImJ+ZP6J4U4QkSZLGuIPdc/cVYElmPhgRX87MN41GoyRJknRoDnZZNurmn9fOhkiSJOnwHSy4ywPMS5IkaQw62GXZX4+IpyjO4E0u5ynTmZnHtLV1kiRJGpFhg7vM7B6thlTdnDlzuOfhJ1ta5jN3HdGQPmJHa8uXJEnNmzNnTqebADTxhoqJwjdUjIxvqJAkqXOGe0NFs79zJ0mSpHHA4E6SJKlCDO5GyapVq3jH5NZe9n3g6uU8cPXygfSDV5/Dg14ulSSpI1atWsWqVas63QyDO0mSpCoxuJMkSaoQgztJkqQKMbiTJEmqEIM7SZKkCjG4kyRJqpCDvVtWLbJ8+XJW3HBPS8u84ZpXNqSn33B3S8uXJEnNW758+cFXGgUGd6Nk6dKl/OBLj7S0zPfu+sOG9JQ7H2pp+ZIkqXlLly7tdBMAL8tKkiRVisHdKNm6dSu/2r27pWV+ZM6H+cicDw+kn37JPJ5+ybyW1iFJkpqzdetWtm7d2ulmGNyNlo0bN/KyIx5saZnnv/ubnP/ubw6k95x/KnvOP7WldUiSpOZs3LiRjRs3droZBneSJElVYnAnSZJUIQZ3kiRJFVLZn0KJiLOBa4Bu4JOZeXWHm1Qp/Vd+rdNNaJkHrj6n002QJKllKnnmLiK6gb8AXgucBFwYESd1tlWSJEntV8ngDngJsD0z/yUz9wGfB87rcJskSZLaLjKz021ouYh4M3B2Zv5emf4d4PTMvHzQepcCl5bJFwLfH9WGts5M4CedbsQYYn80sj8a2R+N7I/92SeN7I9GY6U/FmTmrKEWVPaeu2Zk5lpgbafbcbgiYktmLut0O8YK+6OR/dHI/mhkf+zPPmlkfzQaD/1R1cuyDwP1r2qYW+ZJkiRVWlWDu28BL4iIhRFxBHABcGOH2yRJktR2lbwsm5m/iIjLgZsofgrl05n5nQ43q53G/aXlFrM/GtkfjeyPRvbH/uyTRvZHozHfH5V8oEKSJGmiquplWUmSpAnJ4E6SJKlCDO7GsYg4OyK+HxHbI+LKTrdnNETEvIi4LSK+GxHfiYh3l/nTI+KWiLi//DutzI+I+FjZR3dHxJLO7kF7RER3RPxTRGws0wsj4o5yv79QPlhERPSV6e3l8v5OtrtdImJqRFwfEd+LiPsi4t9N5DESEb9ffl7ujYj1ETFpIo2RiPh0RDwaEffW5Y14PETEReX690fERZ3Yl1Y4QH/8z/LzcndE/E1ETK1btqLsj+9HxFl1+ZX5DhqqT+qW/UFEZETMLNNjf4xkptM4nCgeFPln4HnAEcBdwEmdbtco7PccYEk5PwX4AcUr5v4MuLLMvxL4UDn/OuAbQABnAHd0eh/a1C/vBa4DNpbpLwIXlPNrgMvK+XcBa8r5C4AvdLrtbeqPzwC/V84fAUydqGMEOBH4ITC5bmy8fSKNEeA3gCXAvXV5IxoPwHTgX8q/08r5aZ3etxb2x5lATzn/obr+OKn8fukDFpbfO91V+w4aqk/K/HkUD2c+CMwcL2PEM3fj14R8xVpm7srMbeX808B9FF9e51F8oVP+fUM5fx5wbRZuB6ZGxJxRbnZbRcRc4Bzgk2U6gFcB15erDO6PWj9dD7y6XL8yIuJYigP1pwAyc19mPsEEHiMUv4wwOSJ6gCOBXUygMZKZfw/sGZQ90vFwFnBLZu7JzMeBW4Cz29/61huqPzLz5sz8RZm8neL3YaHoj89n5rOZ+UNgO8X3T6W+gw4wRgA+CvwRUP/06ZgfIwZ349eJwEN16R1l3oRRXi56MXAHcHxm7ioXPQIcX85PhH76c4qDzy/L9AzgiboDdf0+D/RHufzJcv0qWQjsBv6yvFT9yYg4igk6RjLzYeDDwI8ogronga1M7DECIx8PlR4ng/wuxZkpmMD9ERHnAQ9n5l2DFo35PjG407gUEUcDXwbek5lP1S/L4vz4hPiNn4hYDjyamVs73ZYxpIfi8sonMvPFwF6Ky24DJtgYmUZxpmEhcAJwFOP0jFO7TKTxcDARsRL4BfC5TrelkyLiSOD9wJ90ui2HwuBu/Jqwr1iLiF6KwO5zmXlDmf3j2qW08u+jZX7V++llwLkR8QDFZZFXAddQXCao/Uh5/T4P9Ee5/FjgsdFs8CjYAezIzDvK9PUUwd5EHSOvAX6Ymbsz8+fADRTjZiKPERj5eKj6OCEi3g4sB95aBrwwcfvjVyj+Q3RXeXydC2yLiNmMgz4xuBu/JuQr1sp7fz4F3JeZH6lbdCNQezLpIuCrdflvK59uOgN4su5SzLiXmSsyc25m9lOMgU2Z+VbgNuDN5WqD+6PWT28u16/UGYvMfAR4KCJeWGa9GvguE3SMUFyOPSMijiw/P7X+mLBjpDTS8XATcGZETCvPhp5Z5lVCRJxNcXvHuZn5s7pFNwIXlE9RLwReANxJxb+DMvOezDwuM/vL4+sOiof5HmE8jJFOPMXh1JqJ4omdH1A8sbSy0+0ZpX1+OcXlk7uBb5fT6yjuCfpb4H7gVmB6uX4Af1H20T3Ask7vQxv75pU897Ts8ygOwNuBLwF9Zf6kMr29XP68Tre7TX3xImBLOU6+QvHk2oQdI8Aq4HvAvcBnKZ58nDBjBFhPcb/hzym+pC8+lPFAcS/a9nJ6R6f3q8X9sZ3ifrHacXVN3fory/74PvDauvzKfAcN1SeDlj/Ac0/Ljvkx4uvHJEmSKsTLspIkSRVicCdJklQhBneSJEkV0nPwVSaGmTNnZn9/f6ebIUmSdFBbt279SWbOGmqZwV2pv7+fLVu2dLoZkiRJBxURDx5omZdlJUmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO7GsenTp8MHjiUiBqbp06d3ulmSJKmDejrdAB26xx9/HDiGzBzIi4jONUiSJHWcZ+4kSZIqxOBOkiSpQiob3EXEpyPi0Yi4t9NtWb9+PSeffDLd3d2cfPLJXHHFFQ3p9evXN6zX1dXVcB9dRHDqqacecv2Dy3Jy6unpaUu5Q43dkdQ7adIk5s2bt99n40Cfq3nz5g1sO2/ePNavX8/69euZMWPGkHUPlT9jxoyGeuo/h729vQ3r9vb20tXVxbx58wbaOWPGjIb97u7u5qyzzuLkk09u6JPe3l6OPvroYcuq7XOzx4xmjjm18ru6upg0adJAnfV9MWPGjCH7vb4vatuOtP5m1m/19gfri1aU22qt3OeDlduuulrdzmbWOZx9GW7bQyl3TPVrZlZyAn4DWALc28z6S5cuzXa47rrrcuHChblp06bct29frly5Mnt6enLlypW5b9++3LRpUy5cuDAvv/zyXLhwYa5cuTJ7e3sTyEmTJuV73vOeBBLIU045paFsIPOqY/bPG5R2cjqcqaura8j52hQROX/+/P3yhkt3d3c3pHt7ewfGfW9vb1577bUDn43rrrtuyM/VrFmzcs6cOXnzzTfnzTffnLNnz85jjjkmJ02alBGRfX192dXVlZMnT96vzVOmTMnjjjsuL7zwwuzu7s4pU6bkddddN/B5XblyZc6aNSuPOuqo7Orqype+9KXZ3d2dRx11VE6ZMiWnTp2as2fPzte85jUD+/aWt7wlP/jBDw6kFy5cmD09PXnZZZflzJkzs6+vL4FcsmRJzp49O6dPn95QVm2fZ82albNmzTroMWOofhl8zLn22mtz9uzZOXXq1Jw5c2auXr06Z82alZMnT87u7u5csWJFrlixIru7u/PYY49t6Pf6Y1J/f3+uXr16IN1s/c20t9XbH6wv5syZc9DxNdpauc8HK3fw+BoL/dDM/rd6X4ar81D+Pdr1bzgcYEseKAY60IIqTEA/HQ7uFi9enJs2bWpIr169OhcvXjyQt2nTpuzr68tNmzbl4sWLE8hzzz23IX300Ucn7B+4Gdw5He4UEdnV1ZVdXV1DBmG1oAuKwGv27NkN66xevTr7+vr22/bcc8/N7u7u/QLCadOmDZRZq7sW3NXGee3zUfsMDPW56u/vb/hsbdq0aaDc448/Pnt7e3P16tW5adOm7O7ubggoN23aNFD26tWrs7e3NxcvXjzwea2VXwtq+vr6cvXq1dnf35+9vb0DdUdEdnd352WXXTbQzuOPP35gn1evXp2ZObDdZZddlhExUH99WbXta/Ue7JgxVL8MPubU5uvLrLWlVmat/P7+/oZ+rz8m1cqrTzdTfzPtbfX2ByqrNl9f1qGW22qt3OeDlTt4fLWqrsPRzP63el+Gq/NQ/j3a9W84HAzuDrj8UmALsGX+/PmH2c1D6+rqyn379jWk9+7dm11dXQN5+/btSyD37ds38KWwe/fuhvSBpqGCOyendk6Dx+TevXuHXG/37t2HVUfts1H/Wan/HA3+bNU+R/DcmcK9e/c25Nemffv2DZRda399mbVAt3557XNbK7++3CeeeGKgnfVB7t69ewfaW1uvvv76smrb1+o+2DFjqH4ZfMypzdf2pb59tTJr5devM/iYVCuvPt1M/c20t9XbH6is2nx9WYdabqu1cp8PVm79v3Mr6zoczex/q/dluDoP5d+jXf+Gw2GY4K6y99w1IzPXZuayzFw2a9asttSxaNEiNm/e3JBes2YNixYtGsjbvHkzfX19bN68eSD/4osvbkgfffTRtTbXB6dDamYdqaZ2X1jt3rB63d3d9Pb2DqR7e3s57rjjGtZZs2YNfX19+2178cUX093dTVdX42Fm2rRpA2XW6u7t7R24Jw0YGPf1n4F6ixYtYv78+Q2frc2bNw+Ue9xxx9Hb28uaNWvYvHkz3d3ddHd3N6xbK3vNmjX09vayaNGigc/rokWLWLBgAfPnzx/YvzVr1jB//nx6e3tZsGABmzdvHrjHbsWKFQPtPO644wb2ec2aNQAD261YsYKIGKi/vqza9vPnz2fBggUN+zrUMWOofqmtX+uX2nxtXwAWLFgw0De1fV6zZg0LFixo6Pf6Y1KtvPp0M/U3095Wb3+gsmrz9WUdarmt1sp9Pli59WOhlXUdjmb2v9X7Mlydh/Lv0a5/w0N2oKivChNj4LKs99w5jffJe+6858577trLe+685+5Q4GXZzgV3mcU/+uLFi7OrqysXL16cl19+eUO69o9fW2/wFyHsH9hlNhfc1fKcnOqnwcFVq6ahxu5I6u3r68u5c+fu99k40Odq7ty5A9vOnTt34MA8ffr0IeseKn/69On7fYnUPoc9PT0N6/b09GRE5Ny5cwfaOX369Ib97urqykTDxo8AAAk4SURBVDPPPHPgftnasp6enjzqqKOGLau2z80eM5o55tTKrwW8tTrr+2L69OlD9nt9X9S2HWn9zazf6u0P1hetKLfVWrnPByu3XXW1up3NrHM4+zLctodS7mj3K8MEd1Esr56IWA+8EpgJ/Bi4KjM/daD1ly1bllu2bBml1o1MRDDUv1NEkFcdAx94srl1K/pvLUnSRBMRWzNz2VDLKvv6scy8sNNtaJVWBGUGdpIkTQwT+oEKSZKkqjG4kyRJqpDKXpadSOp/gmLatGkdbIkkSeo0g7txrHYfXX6gs+2QJEljh5dlJUmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCDO4kSZIqxOBOkiSpQgzuJEmSKsTgTpIkqUIM7iRJkirE4E6SJKlCIjM73YYxISJ2Aw92uh2HaCbwk043YgyxPxrZH43sj0b2x/7sk0b2R6Ox0h8LMnPWUAsM7iogIrZk5rJOt2OssD8a2R+N7I9G9sf+7JNG9kej8dAfXpaVJEmqEIM7SZKkCjG4q4a1nW7AGGN/NLI/GtkfjeyP/dknjeyPRmO+P7znTpIkqUI8cydJklQhBnfjWEScHRHfj4jtEXFlp9szGiJiXkTcFhHfjYjvRMS7y/zpEXFLRNxf/p1W5kdEfKzso7sjYkln96A9IqI7Iv4pIjaW6YURcUe531+IiCPK/L4yvb1c3t/JdrdLREyNiOsj4nsRcV9E/LuJPEYi4vfLz8u9EbE+IiZNpDESEZ+OiEcj4t66vBGPh4i4qFz//oi4qBP70goH6I//WX5e7o6Iv4mIqXXLVpT98f2IOKsuvzLfQUP1Sd2yP4iIjIiZZXrsj5HMdBqHE9AN/DPwPOAI4C7gpE63axT2ew6wpJyfAvwAOAn4M+DKMv9K4EPl/OuAbwABnAHc0el9aFO/vBe4DthYpr8IXFDOrwEuK+ffBawp5y8AvtDptrepPz4D/F45fwQwdaKOEeBE4IfA5Lqx8faJNEaA3wCWAPfW5Y1oPADTgX8p/04r56d1et9a2B9nAj3l/Ifq+uOk8vulD1hYfu90V+07aKg+KfPnATdR/A7uzPEyRjxzN369BNiemf+SmfuAzwPndbhNbZeZuzJzWzn/NHAfxZfXeRRf6JR/31DOnwdcm4XbgakRMWeUm91WETEXOAf4ZJkO4FXA9eUqg/uj1k/XA68u16+MiDiW4kD9KYDM3JeZTzCBxwjQA0yOiB7gSGAXE2iMZObfA3sGZY90PJwF3JKZezLzceAW4Oz2t771huqPzLw5M39RJm8H5pbz5wGfz8xnM/OHwHaK759KfQcdYIwAfBT4I6D+AYUxP0YM7savE4GH6tI7yrwJo7xc9GLgDuD4zNxVLnoEOL6cnwj99OcUB59flukZwBN1B+r6fR7oj3L5k+X6VbIQ2A38ZXmp+pMRcRQTdIxk5sPAh4EfUQR1TwJbmdhjBEY+Hio9Tgb5XYozUzCB+yMizgMezsy7Bi0a831icKdxKSKOBr4MvCczn6pflsX58QnxGHhELAcezcytnW7LGNJDcXnlE5n5YmAvxWW3ARNsjEyjONOwEDgBOIpxesapXSbSeDiYiFgJ/AL4XKfb0kkRcSTwfuBPOt2WQ2FwN349THEvQM3cMq/yIqKXIrD7XGbeUGb/uHYprfz7aJlf9X56GXBuRDxAcVnkVcA1FJcJesp16vd5oD/K5ccCj41mg0fBDmBHZt5Rpq+nCPYm6hh5DfDDzNydmT8HbqAYNxN5jMDIx0PVxwkR8XZgOfDWMuCFidsfv0LxH6K7yuPrXGBbRMxmHPSJwd349S3gBeUTb0dQ3Ph8Y4fb1HblvT+fAu7LzI/ULboRqD2ZdBHw1br8t5VPN50BPFl3KWbcy8wVmTk3M/spxsCmzHwrcBvw5nK1wf1R66c3l+tX6oxFZj4CPBQRLyyzXg18lwk6Rigux54REUeWn59af0zYMVIa6Xi4CTgzIqaVZ0PPLPMqISLOpri949zM/FndohuBC8qnqBcCLwDupOLfQZl5T2Yel5n95fF1B8XDfI8wHsZIJ57icGrNRPHEzg8onlha2en2jNI+v5zi8sndwLfL6XUU9wT9LXA/cCswvVw/gL8o++geYFmn96GNffNKnnta9nkUB+DtwJeAvjJ/UpneXi5/Xqfb3aa+eBGwpRwnX6F4cm3CjhFgFfA94F7gsxRPPk6YMQKsp7jf8OcUX9IXH8p4oLgXbXs5vaPT+9Xi/thOcb9Y7bi6pm79lWV/fB94bV1+Zb6DhuqTQcsf4LmnZcf8GPENFZIkSRXiZVlJkqQKMbiTJEmqEIM7SZKkCjG4kyRJqhCDO0mSpAoxuJOkJkTEbRFx1qC890TEJw6w/jcjYtnotE6SnmNwJ0nNWU/xQ631LijzJWnMMLiTpOZcD5xT/ho/EdFP8a7WCyNiS0R8JyJWDbVhRPy0bv7NEfFX5fysiPhyRHyrnF7W7p2QVH0Gd5LUhMzcQ/HGhteWWRcAX6T4Zf5lwKnAb0bEqSMo9hrgo5l5GvAm4JMtbLKkCarn4KtIkkq1S7NfLf9eDPxWRFxKcTydA5xE8dqzZrwGOKl45SsAx0TE0Zn502G2kaRhGdxJUvO+Cnw0IpYARwJ7gD8ETsvMx8vLrZOG2K7+PY/1y7uAMzLzX9vUXkkTkJdlJalJ5Rm124BPU5zFOwbYCzwZEcfz3CXbwX4cEYsiogt4Y13+zcAVtUREvKgtDZc0oRjcSdLIrAd+HVifmXcB/wR8D7gO+D8H2OZKYCPwj8Cuuvz/CiyLiLsj4rvAO9vWakkTRmTmwdeSJEnSuOCZO0mSpAoxuJMkSaoQgztJkqQKMbiTJEmqEIM7SZKkCjG4kyRJqhCDO0mSpAoxuJMkSaqQ/wcwY/yaVxVaJgAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAncAAAEjCAYAAABQPSceAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nO3de5xdZXno8d8zkzAhBMmVyUAuE5HakKAlBOXU1trqCagBtPX0gLRESkMbTzja9nwUpKcx7TketY33HilRFKxELdpKUiugwdOmrWCSAkEUiRUlhEuUmyI1Xp7zx1p7ZmeyM9mTmT17Zs3v+/msT9Z+11rvetY77977yXrX2isyE0mSJFVDR7sDkCRJ0sgxuZMkSaoQkztJkqQKMbmTJEmqEJM7SZKkCjG5kyRJqhCTO0lqkYh4SUTsaXcckiYWkztJlRYRX4qIxyOi6wi2vT8inomI70fEExHxLxHx+xHhZ6ekMcsPKEmVFRG9wC8DCZw7yHqdA15Pqnt5TmYeCywE3g68GfjwSMcqSSPF5E5SlV0EfBn4KLCqVhgRH42ID0bE5yLiaeBXy7N0b46Iu4CnByR4ZOaTmXkj8F+BVRGxtKyrKyL+IiK+ExGPRMRVEXF0o2Ai4vKI+GZ5JvCeiHh1WX5URDwWEafWrXt8RPwwIuaMbJNIqjqTO0lVdhHw8XI6KyK665a9FvjfwLHAtrLsAuCVwPTM/EmjCjPzdmAPxRlBKM7m/RzwC8BzgBOBPzlEPN8stzsOWA/8dUT0ZOZ+4BPAb9WtewHwxczc1/TRShImd5IqKiJ+iWIo9VOZuYMisXpt3Sqfzcx/zsyfZeZ/lGXvy8wHMvOZw1S/F5gZEQFcCvxBZj6Wmd8H3gac32ijzPybzNxb7vOTwH3AC8rF1wIXlHUC/DbwsaEdtSSZ3EmqrlXAzZn53fL19dQNzQIPNNimUVkjJwKPAXOAqcCO8oaLJ4DPl+UHiYiLIuKOunWXArMBMvM24IfASyLi5ynOAt7YZDyS1GfS4VeRpPGlvObtN4HOiHi4LO4CpkfE88vX2WDTRmUD6z6DIrnbBnwXeAZYkpkPHma7hcBG4KXAv2bmTyPiDiDqVruWYmj2YeCGujOKktQ0kztJVfQq4KfAqcD+uvJPUVyHN2QR8SzgxcB7gb/OzF1l+Ubg3RGxNjMfjYgTgaWZedOAKo6hSB73ldtdTHHmrt5fA3cC36cYlpWkIXNYVlIVrQI+kpnfycyHaxPwAeBChvYf280R8X2KIdsrgXcBF9ctfzOwG/hyRDwFfAF47sBKMvMeYAPwr8AjFInnPw9Y5wFgJ0US+E9DiFGS+kTmYUchJEmjJCKuAfZm5h+3OxZJ45PDspI0RpQ/uvzrwGntjUTSeOawrCSNARHxZ8DdwJ9n5rfaHY+k8cthWUmSpArxzJ0kSVKFmNxJkiRViMmdJElShZjcSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFmNxJkiRViMmdJElShZjcSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFmNxJkiRVyKR2BzBWzJ49O3t7e1tW/969ewE44YQTWrODHTvg9HK2nDm9NXuSJEkNtPy7vs6OHTu+m5lzGi2LzGx5AOPB8uXLc/v27S2rf/369QCsW7euNTuIgPJPGeWMf1lJkkZPy7/r60TEjsxc3miZw7KSJEkV4rDsKFm2bFlrd7B6NfzjP8GLf5nVrd2TJElqoOXf9U1yWLbU6mFZSZKkkTLYsKxn7kZR7+V/3+4QRsz9b39lu0OQJEkNeM3dKNm7dy+z4umW1b/04d2c13UrS0/czY9OfBY/OvFZLduXJEk62N69e/vumG0nz9yNko0bN3LuFPjIMw3PoA7blmvfeNDdsgsrdKZQkqSxbuPGjcDo3C07GM/cSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFmNxJkiRViMmdJElShfhTKKNk9erVnPP+bS2rf+Wq93DSugf45uz5zOWfWrYfSZLU2OrVY+MBoCZ3o+SEE07ge3lMy+q/e+5zuPtHz4EHoYunWrYfSZLU2AknnNDuEACHZSVJkirFM3ejZPPmzfzi5O/wLz/ubUn9b/v8+3nB//wqt89bwu9xNQCz/nZXS/YlSZIOtnnzZgDOOeectsbhmbtRsnPnTp476bstq/+1d97Ec35jD6994U384IUL+MELF7RsX5Ik6WA7d+5k586d7Q7D5E6SJKlKTO4kSZIqxOROkiSpQkzuJEmSKqRlyV1EzI+IWyPinoj4akS8oSyfGRG3RMR95b8zyvKIiPdFxO6IuCsiltXVtapc/76IWFVXfnpE7Cq3eV9ExGD7kCRJqrpWnrn7CfBHmXkKcCbw3yLiFOBy4IuZeTLwxfI1wMuBk8vpUuCDUCRqwDrghcALgHV1ydoHgdV1251dlh9qH23T09PDd382tWX17+o+iWfuPIpde07iqD1PctSeJ1u2L0mSdLCenh56enraHQaRmaOzo4jPAh8op5dk5kMR0QN8KTOfGxF/Vc5vKte/F3hJbcrM3yvL/wr4Ujndmpk/X5ZfUFuvtu3AfQwW3/Lly3P79u0jfdgH6L3871ta/2i6/+2vbHcIkiRNWBGxIzOXN1rW1Jm7iDh1mAH0AqcBtwHdmflQuehhoLucPxF4oG6zPWXZYOV7GpQzyD4kSZIqrdlh2f8bEbdHxOsj4rih7CAipgGfBt6YmQc89DSL04YtPXU42D4i4tKI2B4R2/ft29fKMCRJkkZFU48fy8xfjoiTgd8BdkTE7cBHMvOWwbaLiMkUid3HM/MzZfEjEdFTN2T6aFn+IDC/bvN5ZdmDFEOz9eVfKsvnNVh/sH0MPK6roXhW1/Lly1uaZK5fv56Lj4aPPNPwDOqw3f+OlX0pbJQzCys0DCxJ0li3fv16ANatW9fWOJq+oSIz7wP+GHgz8CvA+yLi6xHx643WL+9c/TDwtcx8V92iG4HaHa+rgM/WlV9U3jV7JvBkObR6E7AiImaUN1KsAG4qlz0VEWeW+7poQF2N9iFJklRpTZ25i4jnARcDrwRuAc7JzJ0RcQLwr8BnGmz2IuC3gV0RcUdZ9hbg7cCnIuIS4NvAb5bLPge8AtgN/LDcH5n5WET8GfCVcr0/zczHyvnXAx8Fjgb+oZwYZB+SJEmV1lRyB7wf+BDwlsx8plaYmXsj4o8bbZCZ24A4RH0vbbB+Av/tEHVdA1zToHw7sLRB+fca7UOSJKnqmk3uXgk8k5k/BYiIDmBKZv4wMz/WsugkSZI0JM1ec/cFiqHPmqllmSRJksaQZpO7KZn5g9qLcr51j1uQJEnSEWl2WPbpiFiWmTuheKYr8MxhtlGdlStXcsVndrWs/ivOWssZ772br8xfykzuatl+JElSYytXrmx3CECTjx+LiDOATwB7KW6SmAv818zc0drwRo+PHxsaHz8mSVL7DPb4sWZ/xPgrEfHzQO35rPdm5o9HKkBJkiSNjGaHZQHOAHrLbZZFBJl5XUuiqqAdO3bwc537+MZP57Sk/gvu+DxnvLwYlr2a1QAce/sDh9lKkiSNlB07igHN008/va1xNPsjxh8DTgLuAH5aFidgctekLVu28KKj4BvPtCa5+z83fQA+D7/Ol3g77wdM7iRJGk1btmwBxklyBywHTslmLtCTJElS2zT7Uyh3U9xEIUmSpDGs2TN3s4F7IuJ24Ee1wsw8tyVRSZIk6Yg0m9y9tZVBSJIkaWQ0+1Mo/y8iFgInZ+YXImIq0Nna0CRJkjRUTV1zFxGrgRuAvyqLTgT+rlVBSZIk6cg0+4SKO4AXALdl5mll2a7MPLXF8Y0an1AxND6hQpKk9hnsCRXN3i37o8zcX1fhJIrfuZMkSdIY0mxy9/8i4i3A0RHxn4G/ATa3LixJkiQdiWbvlr0cuATYBfwe8DngQ60Kqoquvvpqzul6ks0/OqUl9W/+6Bt4zk0PsHvWfJZTPP6k5wPbWrIvSZJ0sKuvvhqASy+9tK1xNHu37M+AjeWkI/DQQw8xu9nzpEfg1Ee+Cc+HU/km+zmudTuSJEkNPfTQQ+0OAWj+2bLfosE1dpn57BGPSJIkSUdsKM+WrZkC/Bdg5siHI0mSpOFoaqAwM79XNz2Yme8B/C0MSZKkMabZYdlldS87KM7kNXvWT5IkSaOk2QRtQ938T4D7gd8c8WgkSZI0LM3eLfurrQ6k6pYtW8am27/Tsvqvf/5ZvODTX+X2eUuYRuv2I0mSGlu2bNnhVxoFzT5+7A8HW56Z7xqxiNrEx48NjY8fkySpfQZ7/NhQ7pY9A7ixfH0OcDtw3/DDkyRJ0khpNrmbByzLzO8DRMRbgb/PzN9qVWBVs3fvXmbF03wvj2lJ/Usf3s1JCx/gm7Pns4PitHDXg0+1ZF+SJOlge/fuBeCEE05oaxzNJnfdwP661/vLskOKiGuAlcCjmbm0LJsJfBLopbwpIzMfj4gA3gu8Avgh8LrM3Fluswr447La/5WZ15blpwMfBY6meBzaGzIzD7WPJo+zZTZu3Mi5U+AjzzQ8gzpsW659Y9/PTEc5s7BCw8CSJI11GzcWD/Jat25dW+No9oFY1wG3R8Rby7N2twHXHmabjwJnDyi7HPhiZp4MfLF8DfBy4ORyuhT4IPQlg+uAFwIvANZFxIxymw8Cq+u2O/sw+5AkSaq8Zn/E+H8DFwOPl9PFmfm2w2zzj8BjA4rPoz8pvBZ4VV35dVn4MjA9InqAs4BbMvOx8uzbLcDZ5bJnZeaXs7gj5LoBdTXahyRJUuUN5VH2U4GnMvO9wJ6IWHQE++vOzNpTdR+mf2j3ROCBuvX2lGWDle9pUD7YPg4SEZdGxPaI2L5v374jOBxJkqSxpankLiLWAW8GriiLJgN/PZwdl2fcDv87LC3cR2ZenZnLM3P5nDlzWhmKJEnSqGj2zN2rgXOBpwEycy9w7BHs75FySJXy30fL8geB+XXrzSvLBiuf16B8sH1IkiRVXrPJ3f76s2ARcaS/53EjsKqcXwV8tq78oiicCTxZDq3eBKyIiBnljRQrgJvKZU9FxJnlnbYXDair0T4kSZIqr9mfQvlURPwVxY0Oq4HfATYOtkFEbAJeAsyOiD0Ud72+vazrEuDb9D+f9nMUP4Oym+KnUC4GyMzHIuLPgK+U6/1pZtZu0ng9/T+F8g/lxCD7aKvVq1dzzvu3taz+lavew0nrit+5m8s/tWw/kiSpsdWrV7c7BKCJx4+VZ8bmAT9PceYsKM6e3dL68EaPjx8bGh8/JklS+wzr8WPlDwN/LjNPpfgpEkmSJI1RzV5ztzMizmhpJBW3efNmfnHy/S2r/22ffz9fOOP3edur38/3Xn0q33v1qS3blyRJOtjmzZvZvHlzu8No+pq7FwK/FRH3U9wxGxQn9Z7XqsCqZufOnTx3EvzLj3tbUv9r77wJfgOewx4uZAEAs/52V0v2JUmSDrZz504AzjnnnLbGMWhyFxELMvM7FE+KkCRJ0hh3uDN3fwcsy8xvR8SnM/M3RiMoSZIkHZnDXXMXdfPPbmUgkiRJGr7DJXd5iHlJkiSNQYcbln1+RDxFcQbv6HIe+m+oeFZLo5MkSdKQDJrcZWbnaAVSdT09Pex68MmW1b+r+ySec+cD7J41n6No3X4kSVJjPT097Q4BaOIJFROFT6gYGp9QIUlS+wz2hIpmf8RYkiRJ44DJnSRJUoU0+4QKDdP69eu5+Gj4yDMNz6AO2/3vWNl3P3OUMwsrNAwsSdJYt379egDWrVvX1jg8cydJklQhJneSJEkVYnInSZJUISZ3kiRJFWJyJ0mSVCEmd5IkSRXiT6GMkpUrV3LFZ3a1rP4rzlrLGe+9m6/MX8pM7mrZfiRJUmMrV65sdwiAjx/r4+PHhsbHj0mS1D4+fkySJGmCcFh2lOzYsYOf69zHN346pyX1X3DH5znj5cWw7NWsBuDY2x9oyb4kSdLBduzYAcDpp5/e1jhM7kbJli1beNFR8I1nWpPc/Z+bPgCfh1/nS7yd9wMmd5IkjaYtW7YA7U/uHJaVJEmqEJM7SZKkCnFYVkfEO38lSRqbKnvmLiLOjoh7I2J3RFze7ngkSZJGQyWTu4joBP4SeDlwCnBBRJzS3qgkSZJar5LJHfACYHdm/ntm7gc+AZzX5pgkSZJarpJPqIiI1wBnZ+bvlq9/G3hhZq4dsN6lwKXly+cC945qoK0xG/huu4MYI2yLfrZFP9uin23Rz7boZ1v0G8ttsTAzG/6+2oS+oSIzrwaubnccIykith/qcSQTjW3Rz7boZ1v0sy362Rb9bIt+47Utqjos+yAwv+71vLJMkiSp0qqa3H0FODkiFkXEUcD5wI1tjkmSJKnlKjksm5k/iYi1wE1AJ3BNZn61zWGNlkoNMw+TbdHPtuhnW/SzLfrZFv1si37jsi0qeUOFJEnSRFXVYVlJkqQJyeROkiSpQkzuKmSiPXItIuZHxK0RcU9EfDUi3lCWz4yIWyLivvLfGWV5RMT7yva5KyKWtfcIRlZEdEbEv0XElvL1ooi4rTzeT5Y3FxERXeXr3eXy3nbG3QoRMT0iboiIr0fE1yLiP03EfhERf1C+N+6OiE0RMWUi9YuIuCYiHo2Iu+vKhtwPImJVuf59EbGqHccyXIdoiz8v3yN3RcTfRsT0umVXlG1xb0ScVVc+7r9nGrVF3bI/ioiMiNnl6/HZLzLTqQITxY0j3wSeDRwF3Amc0u64WnzMPcCycv5Y4BsUj5t7J3B5WX458I5y/hXAPwABnAnc1u5jGOH2+EPgemBL+fpTwPnl/FXAmnL+9cBV5fz5wCfbHXsL2uJa4HfL+aOA6ROtXwAnAt8Cjq7rD6+bSP0CeDGwDLi7rmxI/QCYCfx7+e+Mcn5Gu49thNpiBTCpnH9HXVucUn6HdAGLyu+Wzqp8zzRqi7J8PsWNmN8GZo/nfuGZu+qYcI9cy8yHMnNnOf994GsUX2jnUXy5U/77qnL+POC6LHwZmB4RPaMcdktExDzglcCHytcB/BpwQ7nKwHaotc8NwEvL9SshIo6j+PD+MEBm7s/MJ5iA/YLiFxGOjohJwFTgISZQv8jMfwQeG1A81H5wFnBLZj6WmY8DtwBntz76kdWoLTLz5sz8SfnyyxS/CQtFW3wiM3+Umd8CdlN8x1Tie+YQ/QLg3cCbgPo7TcdlvzC5q44TgQfqXu8pyyaEcgjpNOA2oDszHyoXPQx0l/NVbqP3UHwo/ax8PQt4ou6Du/5Y+9qhXP5kuX5VLAL2AR8ph6k/FBHHMMH6RWY+CPwF8B2KpO5JYAcTt1/UDLUfVLJ/NPA7FGeoYAK2RUScBzyYmXcOWDQu28LkTuNeREwDPg28MTOfql+WxfnzSv/eT0SsBB7NzB3tjmWMmEQx5PLBzDwNeJpi+K3PBOkXMyjOOiwCTgCOYQydWRgLJkI/aEZEXAn8BPh4u2Nph4iYCrwF+JN2xzJSTO6qY0I+ci0iJlMkdh/PzM+UxY/UhtXKfx8ty6vaRi8Czo2I+ymGSX4NeC/F8EHth8rrj7WvHcrlxwHfG82AW2wPsCczbytf30CR7E20fvEy4FuZuS8zfwx8hqKvTNR+UTPUflDV/gFARLwOWAlcWCa7MPHa4iSK/wTdWX6OzgN2RsRcxmlbmNxVx4R75Fp5PdCHga9l5rvqFt0I1O5cWgV8tq78ovLupzOBJ+uGZ8atzLwiM+dlZi/F331rZl4I3Aq8plxtYDvU2uc15fqVOXuRmQ8DD0TEc8uilwL3MMH6BcVw7JkRMbV8r9TaYUL2izpD7Qc3ASsiYkZ5NnRFWTbuRcTZFJdznJuZP6xbdCNwfnkH9SLgZOB2Kvo9k5m7MvP4zOwtP0f3UNys9zDjtV+0+44Op5GbKO7q+QbF3UxXtjueUTjeX6IYUrkLuKOcXkFxndAXgfuALwAzy/UD+MuyfXYBy9t9DC1ok5fQf7fssyk+kHcDfwN0leVTyte7y+XPbnfcLWiHXwC2l33j7yjuZptw/QJYD3wduBv4GMXdjxOmXwCbKK43/DHFF/YlR9IPKK5H211OF7f7uEawLXZTXDdW+/y8qm79K8u2uBd4eV35uP+eadQWA5bfT//dsuOyX/j4MUmSpApxWFaSJKlCTO4kSZIqxOROkiSpQiYdfpWJYfbs2dnb29vuMCRJkg5rx44d383MOY2WmdyVent72b59e7vDkCRJOqyI+PahljksK0mSVCEmd5IkSRVicidJklQhJneSJEkVYnInSZJUISZ3kiRJFWJyJ0mSVCEmd5IkSRVicidJklQhJneSJEkVYnInSZJUISZ3kiRJFWJyJ0mSVCEmd5IkSRVicidJklQhJneSJEkVYnInSZJUISZ3kiRJFWJyJ0mSVCEmd5IkSRVicidJklQhJneSJEkVYnInSZJUISZ3kiRJFWJyJ0mSVCEmd5IkSRVicidJklQhJneSJEkVYnInSZJUISZ3kiRJFWJyJ0mSVCEmd5IkSRVicidJklQhJneSJEkVYnInSZJUISZ3kiRJFWJyJ0mSVCEmd5IkSRVicidJklQhJneSJEkVYnJXATNnziQi4K3HEREHTDNnzmx3eJIkaRSZ3FXA448/TmYCkJkHTI8//nibo5MkSaPJ5E6SJKlCTO4kSZIqpLLJXURcExGPRsTd7Y5l06ZNLF26lM7OTiZPnnzQdXGHm1ppqLE4OTWaOjo6iAimTJky5G2nTZtGZ2fnAa/nz59PZ2cnS5cuZdOmTQe9j5YuXcpll13G0qVL6ejoYMqUKXR0dDBr1qy+99iUKVO47LLL+radP3/+IeOun84666yD9jdr1qwDYpw1axaXXXbZQXXOmjXrgNif97znHbCP2rHOnz+/4TEe7vOjme1q6x+qXTo6Oujo6Dhg+8suu6zvb1eL93BxNfqbHG79dtQzUnWPtpGOe+B7YP78+aPaFkM5nuEe+3C2H+q2Q31/jpqB12hVZQJeDCwD7m5m/dNPPz1b4frrr89Fixbl1q1bc968eQkc0TSYvuXrnnXoZYfYzsmp2amzs7NheUTkkiVLEsjjjjtuSHV2dHT01fGmN70pL7jgggRy6tSped111+XWrVtz0aJFuXbt2r730f79+/PKK6/MSZMm5ate9apctGhRbtiwIY899tiMiJw5c2Zec801uWHDhpw0aVKuWLEi58yZk1OnTs2IyGnTpuXUqVMPiOO0007L7u7unDJlSgJ56qmn9u1vzZo1GRHZ0dGRb3rTm/Kd73xnRkRGRE6dOjW7u7vzne98Z06fPj0jIo877ri87rrrcvny5Qnky172sty4cWMee+yxCeTSpUuzp6cn586de8AxXn/99YN+flx33XU5d+7c7OnpOeR2tfWvvPLK7O3tPaBdjjnmmJw9e3auWbMmOzs7+9puxYoVOWnSpLzwwgtz4cKFuWbNmgPatlFcA2Pbv3//oMcxmFbWM2fOnJwzZ86w6x5tI9Um9fXNmTMn586dmzfffHPefPPN2dPTk3PmzBmVthjK8Qz32Iez/VC3Her7c6QB2/NQOdChFlRhAnppc3K3ZMmS3Lp1a2YOL5kaTN9ykzunYU61ZGvgVEvspk2bdsA6c+fOzc7Ozuzq6so1a9b01dHZ2dk3RcRB9c+YMaOvzo6Ojuzu7s4lS5bkkiVLcs2aNTl58uRcsmRJZmZu3bo1u7q6+t5HtffVhg0bDiifPHlydnd359atW/u23bBhQ0ZE9vb2HrC8t7f3gP3X3qe9vb05Y8aMBPrq7erqyu7u7tywYUNfvXPnzk0gJ0+e3Ldeb29vzp07N3t7e3PJkiUZEXnuuef2HVctUazVXR9n/fyhPj9q84NtV1unfrvJkyf3xdXb29vXLrW2i4i+Y6ttU7+8UVwDY6sZbP1DaWU99cc8nLpH20i1SX19vb29B9RZ6++j0RZDOZ7hHvtwth/qtkN9f440TO4OufxSYDuwfcGCBcNs5sY6Ojpy//79mdnaZCozD5ncOTm1aqpP9J544olh19XR0dFXT0dHR2Zm7t+/P4G+91HtffX0008fUF6rZ//+/X3b1tapP0NYWz5w37XyWjI6sN6nn366r9767Wvr1c7u1SYg9+3b1/d6//79fce2f//+A+Ksnz/U50dtfrDt6o+jPv5aDBFxQLvU2rZ2bLVt6pc3imtgbDWDrX8orayn9jcZbt2jbaTapL6+Wt8fWN9otMVQjme4xz6c7Ye67VDfnyONQZK7yl5z14zMvDozl2fm8jlz5rRkH4sXL2bbtm3DrudQf8Di73tk20oDdXQ0/kjo7OwEYNq0aQesc/zxx9PZ2UlXVxdXXHFFXx2dnZ19U0T/daO1bWfMmNFXZ0dHB93d3SxevJjFixdzxRVXMHnyZBYvXgzAtm3b6OrqOuB9tHjxYq666qoDyidPnkx3dzfbtm3r2/aqq64iIliwYAGTJ0/m+OOPZ9u2bSxYsOCA/dfepwsWLGD69Ol9+wXo6uqiu7ubq666qq/e448/vm+ftfUWLlzI8ccfz4IFC1i8eDERwSWXXNJ3XNu2betro23bth0QZ/18vfrPj9r8YNvV1qnfrnbcCxYsYOHChX3tUmu7iOg7tto29csbxTUwtprB1j+UVtazcOFCFixYMOy6R9tItUl9fQsXLjygzlp/H422GMrxDPfYh7P9ULcd6vtzVA2WNIz3iTEwLOs1d05VmbzmzmvuDhWb19yNLK+585q7ZuCwbPuSu8yiAyxZsiQ7Ojpy0qRJQ/5SPZy+dYaY3NWWOzkNd6oNZXZ1dQ1522OOOeaAYc5jjjkm582b13ctXO3Dsf59tGTJkly7dm3ftW1dXV19iV3tPdbV1ZVr167t27bRf67qrwesTStWrDhofzNnzjwgxpkzZ+batWsPqnPmzJkHxH7qqacesI/asc6bN6/hMR7u86OZ7WrrH6pdaolp/fZr167t+9vV4j1cXI3+JsNJPlpVz0jVPdpGOu6B74F58+aNalsM5XiGe+zD2X6o2w71/TmSGCS5i2J59UTEJuAlwGzgEWBdZn74UOsvX748t2/fPkrRHV5E0Ozfpm/dtx4Hb33yiOoZyv4kSVJ7RcSOzFzeaNmk0YdaD7MAAAihSURBVA5mtGTmBe2OYThGO9EysZMkqRom9A0VkiRJVWNyJ0mSVCEmdxVR+7mJgY9SmjFjRpsjkyRJo6my19xNJPXXy+Vb2xeHJElqP8/cSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFmNxJkiRViMmdJElShZjcSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFmNxJkiRViMmdJElShZjcSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFmNxJkiRViMmdJElShZjcSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFmNxJkiRViMmdJElShZjcSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFmNxJkiRViMmdJElShZjcSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFmNxJkiRViMmdJElShZjcSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFRGa2O4YxISL2Ad9udxwjYDbw3XYHMUbYFv1si362RT/bop9t0c+26DeW22JhZs5ptMDkrmIiYntmLm93HGOBbdHPtuhnW/SzLfrZFv1si37jtS0clpUkSaoQkztJkqQKMbmrnqvbHcAYYlv0sy362Rb9bIt+tkU/26LfuGwLr7mTJEmqEM/cSZIkVYjJXYVExNkRcW9E7I6Iy9sdT6tFxPyIuDUi7omIr0bEG8rymRFxS0TcV/47oyyPiHhf2T53RcSy9h7ByIqIzoj4t4jYUr5eFBG3lcf7yYg4qizvKl/vLpf3tjPuVoiI6RFxQ0R8PSK+FhH/aSL2i4j4g/K9cXdEbIqIKROpX0TENRHxaETcXVc25H4QEavK9e+LiFXtOJbhOkRb/Hn5HrkrIv42IqbXLbuibIt7I+KsuvJx/z3TqC3qlv1RRGREzC5fj89+kZlOFZiATuCbwLOBo4A7gVPaHVeLj7kHWFbOHwt8AzgFeCdweVl+OfCOcv4VwD8AAZwJ3NbuYxjh9vhD4HpgS/n6U8D55fxVwJpy/vXAVeX8+cAn2x17C9riWuB3y/mjgOkTrV8AJwLfAo6u6w+vm0j9AngxsAy4u65sSP0AmAn8e/nvjHJ+RruPbYTaYgUwqZx/R11bnFJ+h3QBi8rvls6qfM80aouyfD5wE8Vv3s4ez/3CM3fV8QJgd2b+e2buBz4BnNfmmFoqMx/KzJ3l/PeBr1F8oZ1H8eVO+e+ryvnzgOuy8GVgekT0jHLYLRER84BXAh8qXwfwa8AN5SoD26HWPjcALy3Xr4SIOI7iw/vDAJm5PzOfYAL2C2AScHRETAKmAg8xgfpFZv4j8NiA4qH2g7OAWzLzscx8HLgFOLv10Y+sRm2RmTdn5k/Kl18G5pXz5wGfyMwfZea3gN0U3zGV+J45RL8AeDfwJqD+ZoRx2S9M7qrjROCButd7yrIJoRxCOg24DejOzIfKRQ8D3eV8ldvoPRQfSj8rX88Cnqj74K4/1r52KJc/Wa5fFYuAfcBHymHqD0XEMUywfpGZDwJ/AXyHIql7EtjBxO0XNUPtB5XsHw38DsUZKpiAbRER5wEPZuadAxaNy7YwudO4FxHTgE8Db8zMp+qXZXH+vNK3hEfESuDRzNzR7ljGiEkUQy4fzMzTgKcpht/6TJB+MYPirMMi4ATgGMbQmYWxYCL0g2ZExJXAT4CPtzuWdoiIqcBbgD9pdywjxeSuOh6kuF6gZl5ZVmkRMZkisft4Zn6mLH6kNqxW/vtoWV7VNnoRcG5E3E8xTPJrwHsphg8mlevUH2tfO5TLjwO+N5oBt9geYE9m3la+voEi2Zto/eJlwLcyc19m/hj4DEVfmaj9omao/aCq/QOAiHgdsBK4sEx2YeK1xUkU/wm6s/wcnQfsjIi5jNO2MLmrjq8AJ5d3wh1FcUH0jW2OqaXK64E+DHwtM99Vt+hGoHbn0irgs3XlF5V3P50JPFk3PDNuZeYVmTkvM3sp/u5bM/NC4FbgNeVqA9uh1j6vKdevzNmLzHwYeCAinlsWvRS4hwnWLyiGY8+MiKnle6XWDhOyX9QZaj+4CVgRETPKs6EryrJxLyLOpric49zM/GHdohuB88s7qBcBJwO3U9HvmczclZnHZ2Zv+Tm6h+JmvYcZr/2i3Xd0OI3cRHFXzzco7ma6st3xjMLx/hLFkMpdwB3l9AqK64S+CNwHfAGYWa4fwF+W7bMLWN7uY2hBm7yE/rtln03xgbwb+BugqyyfUr7eXS5/drvjbkE7/AKwvewbf0dxN9uE6xfAeuDrwN3Axyjufpww/QLYRHG94Y8pvrAvOZJ+QHE92u5yurjdxzWCbbGb4rqx2ufnVXXrX1m2xb3Ay+vKx/33TKO2GLD8fvrvlh2X/cInVEiSJFWIw7KSJEkVYnInSZJUISZ3kiRJFWJyJ0mSVCEmd5IkSRVicidJTYiIWyPirAFlb4yIDx5i/S9FxPLRiU6S+pncSVJzNlH8aGu988tySRozTO4kqTk3AK8sf5mfiOileGbrBRGxPSK+GhHrG20YET+om39NRHy0nJ8TEZ+OiK+U04tafRCSqs/kTpKakJmPUTy54eVl0fnApyh+pX858DzgVyLieUOo9r3AuzPzDOA3gA+NYMiSJqhJh19FklSqDc1+tvz3EuA3I+JSis/THuAUiseeNeNlwCnFo18BeFZETMvMHwyyjSQNyuROkpr3WeDdEbEMmAo8BvwP4IzMfLwcbp3SYLv65zzWL+8AzszM/2hRvJImIIdlJalJ5Rm1W4FrKM7iPQt4GngyIrrpH7Id6JGIWBwRHcCr68pvBi6rvYiIX2hJ4JImFJM7SRqaTcDzgU2ZeSfwb8DXgeuBfz7ENpcDW4B/AR6qK//vwPKIuCsi7gF+v2VRS5owIjMPv5YkSZLGBc/cSZIkVYjJnSRJUoWY3EmSJFWIyZ0kSVKFmNxJkiRViMmdJElShZjcSZIkVYjJnSRJUoX8f4Sudzd7lDdNAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Function to show summary stats and distribution for a column\n", + "def show_distribution(var_data):\n", + " from matplotlib import pyplot as plt\n", + "\n", + " # Get statistics\n", + " min_val = var_data.min()\n", + " max_val = var_data.max()\n", + " mean_val = var_data.mean()\n", + " med_val = var_data.median()\n", + " mod_val = var_data.mode()[0]\n", + "\n", + " print(var_data.name,'\\nMinimum:{:.2f}\\nMean:{:.2f}\\nMedian:{:.2f}\\nMode:{:.2f}\\nMaximum:{:.2f}\\n'.format(min_val,\n", + " mean_val,\n", + " med_val,\n", + " mod_val,\n", + " max_val))\n", + "\n", + " # Create a figure for 2 subplots (2 rows, 1 column)\n", + " fig, ax = plt.subplots(2, 1, figsize = (10,4))\n", + "\n", + " # Plot the histogram \n", + " ax[0].hist(var_data)\n", + " ax[0].set_ylabel('Frequency')\n", + "\n", + " # Add lines for the mean, median, and mode\n", + " ax[0].axvline(x=min_val, color = 'gray', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=mean_val, color = 'cyan', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=med_val, color = 'red', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=mod_val, color = 'yellow', linestyle='dashed', linewidth = 2)\n", + " ax[0].axvline(x=max_val, color = 'gray', linestyle='dashed', linewidth = 2)\n", + "\n", + " # Plot the boxplot \n", + " ax[1].boxplot(var_data, vert=False)\n", + " ax[1].set_xlabel('Value')\n", + "\n", + " # Add a title to the Figure\n", + " fig.suptitle(var_data.name)\n", + "\n", + " # Show the figure\n", + " fig.show()\n", + "\n", + "# Call the function for each delay field\n", + "delayFields = ['DepDelay','ArrDelay']\n", + "for col in delayFields:\n", + " show_distribution(df_flights[col])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are a outliers at the lower and upper ends of both variables - particularly at the upper end.\n", + "\n", + "Let's trim the data so that we include only rows where the values for these fields are within the 1st and 90th percentile." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DepDelay \n", + "Minimum:-11.00\n", + "Mean:-0.92\n", + "Median:-2.00\n", + "Mode:-3.00\n", + "Maximum:16.00\n", + "\n", + "ArrDelay \n", + "Minimum:-32.00\n", + "Mean:-5.03\n", + "Median:-6.00\n", + "Mode:0.00\n", + "Maximum:37.00\n", + "\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnAAAAEjCAYAAACy4TxnAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAdVUlEQVR4nO3df9hcZX3n8fdHKCoKCIXFENBYRVv8RUMEr6otXa1ECSK0UrBWtmWJboGtu9utYHcL6e4q9lqLFquWVBa0BaRVKgQLRS5b+lNIkPJDSs3WUPKDHxoqaC0s+t0/5kQew/MkE3LmOXNm3q/rmuuZuefM/Xyfk2HOh/uec+5UFZIkSeqPp3RdgCRJknaMAU6SJKlnDHCSJEk9Y4CTJEnqGQOcJElSzxjgJEmSesYAJ0ktSlJJXtB1HZImmwFOUq8kWZfk20keTvLPSf46yTuT7PTnWZKLkjza9P1wktuTvC/JXm3ULkltMcBJ6qNjqmoP4LnAucC7gY+31PdvNn3vB/wC8Ergr5I8o6X+JWmnGeAk9VZVfaOqrgR+Fjg5yUuSPDXJ/07yT0nuS/KxJE8HSHJkkvVJ3pPka81o3s/N0fe/VtVNwJuAH2QQ5mj6+cUkdyZ5MMm1SZ47Wx9Jjk7ypSQPJbknyTkznrs6yRlbbX9rkuN2dr9ImnwGOEm9V1U3AuuB1zAYkXshcCjwAmAh8OszNn82sG/TfjJwQZIXbaPvh4Hrmr5JcizwHuB4BqN0fwFcOsfLvwW8HXgWcDTwH5K8uXnuYuBtWzZM8vKmpquH/LMlTTEDnKRJsRHYB1gO/Keq2tyEr/cCJ2617X+vqkeq6s8ZBKYThuwb4J3A+6rqzqp6rOn/0NlG4arqz6rqtqr6blXdyiDo/UTz9JXAC5Mc3Dz+eeBTVfXojvzRkqaTAU7SpFgI7ArsDqxpTnD4Z+AaBiNlWzxYVd+a8fhu4IAh+t7c3H8u8KEZ/W8G0mzzfZIckeQLSR5I8g0G4W9fGEzRAp8C3tacgHES8Mkd+oslTS0DnKTeS/IKBgHqj4FvAy+uqmc1t72q6pkzNt97qxMSnsNghG2uvp8JvI7BVCnAPcA7ZvT/rKp6elX99Swvv4TBSNtBVbUX8DEGYW+Li4GfA14L/EtV/c2O/N2SppcBTlJvJdkzyTLgMuD3q+rvgJXAeUn+TbPNwiRHbfXSFUl2S/IaYBnwh7P0/dQkhzEIhQ8C/6d56mPAWUle3Gy3V5K3zFHiHsDmqvrXJIcDb535ZBPYvgt8AEffJO0AA5ykProqycMMRsN+DfgtHj9L9N3AWuBvkzwEfB6YeZLCvQwC2UbgD4B3VtXfz3j+V5u+vw58AlgD/NiWadequgJ4P3BZ0//twBvmqPOXgN9o+vt14PJZtvkE8FLg94f/8yVNu1RV1zVI0rxIciSDkboDu65liyRvB5ZX1au7rkVSfzgCJ0kdSbI7g1G6C7quRVK/GOAkqQPN9/IeAO5jcLKDJA3NKVRJkqSecQROkiSpZwxwkiRJPWOAkyRJ6hkDnCRJUs8Y4CRJknrGACdJktQzBjhJkqSeMcBJkiT1jAFOkiSpZwxwkiRJPWOAkyRJ6hkDnCRJUs8Y4CRJknrGACdJktQzu3ZdwHzbd999a9GiRSPrf+PGjQAccMABI/sdmkZrmp+HtdBV09dhLfRFq5VJUi/M57F+zZo1X6uq/bZuT1WN/JePkyVLltTq1atH1v+KFSsAOPvss0f2OzSN0vxs4b/XNH219N9+i5VJUi/M57E+yZqqWrJ1u1OokiRJPTN1U6ijtnjx4q5L0EQ6tcWuWuyLViuTpF4Yh2O9U6iSJEljaq4pVEfgNBUWnXl11yW0Zt25R3ddgiSpY34HrmUbN2783tkpUltesnAtL1m4tp3O1qx5/EzUNrrj8TNRJWkajMOx3hG4lq1cuRLwLFS1a9UZ7wJg0Zmrdr6zJc1IfEtfn9gyrj9dX8aQNM3G4VjvCJwkSVLPGOAkSZJ6xgAnSZLUMwY4SZKknjHASZIk9YwBTpIkqWe8jEjLTm15mSIJYNn5H2yvs5ZXInFdE0nTZhyO9Qa4lh1wwAFdl6AJdPuGF7TX2WGHtdcX0G5vkjT+xuFY7xSqJElSzxjgWnbVVVdx1VVXdV2GJsx7jzuf9x53fjudLV8+uLVkeXOTpGkxDsd6A1zLbr75Zm6++eauy9CEeesR1/LWI65tp7OVKwe3lqxsbpI0LcbhWG+AkyRJ6hkDnCRJUs8Y4CRJknrGACdJktQzBjhJkqSe8UK+LVuwYEHXJWgC3bb++e11tnhxe30B7fYmSeNvHI71qaqua5hXS5YsqdUtLyWk8bfozKu7LqE16849uusSJEnzJMmaqlqydftQU6hJXtp+SZIkSXoyhv0O3EeS3Jjkl5LsNdKKJEmStE1DBbiqeg3wc8BBwJoklyT5qZFW1lMrVqxgxYoVXZehCbPu3GWsO3dZO50lg1tL0twkaVqMw7F+6LNQq+orwH8D3g38BPDbSf4+yfGjKk6SJElPNOx34F6W5DzgTuDfAsdU1Y8098/bzmt3SfKlJKuax89L8sUka5N8KsluTftTm8drm+cXzejjrKb9riRHzWhf2rStTXLmDv7tkiRJvTTsCNz5wM3Ay6vqtKq6GaCqNjIYlduWX2YQ/LZ4P3BeVb0AeBA4pWk/BXiwaT+v2Y4khwAnAi8GljL4Pt4uSXYBfgd4A3AIcFKzrSRJ0kQbNsAdDVxSVd8GSPKUJLsDVNUn53pRkgOb1/5e8zgMRu3+qNnkYuDNzf1jm8c0z7+22f5Y4LKqeqSqvgqsBQ5vbmur6h+r6lHgsmZbSZKkiTZsgPs88PQZj3dv2rbng8CvAt9tHv8g8M9V9VjzeD2wsLm/ELgHoHn+G83232vf6jVztT9BkuVJVidZ/cADDwxRtiRJ0vgaNsA9raq+ueVBc3/3bb0gyTLg/qpasxP1taKqLqiqJVW1ZL/99uu6HEmSpJ0y7FJa30qyeMt335IcBnx7O695FfCmJG8EngbsCXwIeFaSXZtRtgOBDc32GxhcpmR9kl2BvYCvz2jfYuZr5mrvzLJlLV3qQZrhrM+c3l5nv/u77fUFtNubJI2/cTjWD7WUVpJXMPiO2UYGl3x6NvCzw46uJTkS+JWqWpbkD4FPV9VlST4G3FpVH0lyGvDSqnpnkhOB46vqhCQvBi5h8J23A4DrgYObOv4BeC2D4HYT8NaqumNbtbiU1nRyKS1JUh/NtZTWUCNwVXVTkh8GXtQ03VVV/+9J1vJu4LIk/xP4EvDxpv3jwCeTrAU2MzjzlKq6I8nlwJeBx4DTquo7zR91OnAtsAtw4fbCmyRJ0iQYejH7JD8GLGJG6KuqT4ymrNEZ9QjcmjWDQcnDDjtsZL9DO67vI3AnHX4NAJfeuHTn+7ql6evQne8L4OHDB99k2OPGe7az5RM5miipj+bzWL9TI3BJPgk8H7gF+E7TXEDvAtyorVq1CjDAqV3vO/7DQDsB7n3XNn21FOA2H/8y4MkFOEnqo3E41g97EsMS4JAadrhOkiRJIzPsZURuZ3DigiRJkjo27AjcvsCXk9wIPLKlsareNJKqJEmSNKdhA9w5oyxC0nTq+8klM3lChqT5NOxlRP48yXOBg6vq8806qLuMtjRJkiTNZqjvwCU5lcEC81suur4Q+ONRFSVJkqS5DbsSwy0MVkL4YlX9aNN2W1W9dMT1tc6VGKbTJE3VaTw5hSppFOa6DtywZ6E+UlWPzuhsVwbXgZMkSdI8GzbA/XmS9wBPT/JTwB8CV42uLEmSJM1l2LNQzwROAW4D3gF8Dvi9URXVZxdccAEAy5cv77iSdjj1OB6uOv2XATjmwx/a+b4uavr6dzvfF8Cm018NwIIP/2Ur/UnSuBuHY/2wZ6F+F1jZ3LQNmzZt6roETaCXHvh/2+vrvvb6Anj0wL1a7U+Sxt04HOuHXQv1q8zynbeq+qHWK5IkSdI27chaqFs8DXgLsE/75UiSJGl7hjqJoaq+PuO2oao+CHjOvCRJUgeGnUJdPOPhUxiMyA07eidJkqQWDRvCPjDj/mPAOuCE1quRJEnSdg17FupPjrqQSbF48eLtbyTtoEu+eFR7fb28vb4AnvnFf2q1P0kad+NwrB92Ka3/vK3nq+q3WqtoxFxKa8d4HThpOC6lJWkU5lpKa0fOQn0FcGXz+BjgRuAr7ZQnSZKkYQ0b4A4EFlfVwwBJzgGurqq3jaqwvtq4cSMABxxwQMeVaJK8ZOFaAG7f8IKd7+vepq9n73xfAI8s3BOAp254qJX+JGncjcOxfti1UPcHHp3x+NGmTVtZuXIlK1e6YIXateqMd7HqjHe109fF72LVxe30BXDvGa/h3jNe01p/kjTuxuFYP+wI3CeAG5Nc0Tx+M3DxaEqSJEnStgx7Fur/SvInwJb/zf6FqvrS6MqSJEnSXIadQgXYHXioqj4ErE/yvG1tnOSgJF9I8uUkdyT55aZ9nyTXJflK83Pvpj1JfjvJ2iS3zrx4cJKTm+2/kuTkGe2HJbmtec1vJ8kO/fWSJEk9NFSAS3I28G7grKbpB4Df387LHgP+S1UdArwSOC3JIcCZwPVVdTBwffMY4A3Awc1tOfDR5nfvA5wNHAEcDpy9JfQ125w643VLh/l7JEmS+mzYEbjjgDcB3wKoqo3AHtt6QVVtqqqbm/sPA3cCC4Fjefz7cxcz+D4dTfsnauBvgWclWQAcBVxXVZur6kHgOmBp89yeVfW3NbiY3Sdm9CVJkjSxhg1wjzYhqQCSPGNHfkmSRcCPAl8E9q+qTc1T9/L42awLgXtmvGx907at9vWztM/2+5cnWZ1k9QMPPLAjpUuSJI2dYc9CvTzJ7zIYFTsV+EVgqPNnkzwT+DTwrqp6aObX1Kqqkmx/KYidVFUXABfAYCWGUf6uU089dZTda0otO/+D7fV1cnt9ATz7/L9otT9JGnfjcKzfboBrTgz4FPDDwEPAi4Bfr6rrhnjtDzAIb39QVZ9pmu9LsqCqNjXToPc37RuAg2a8/MCmbQNw5Fbtf9a0HzjL9p3yAr4ahTYu4Pu9vlq6gO8WXsBX0rQZh2P9dqdQm6nTz1XVdVX1X6vqV4YMbwE+Dty51VqpVwJbziQ9GfjsjPa3N2ejvhL4RjPVei3w+iR7NycvvB64tnnuoSSvbH7X22f0JUmSNLGGnUK9OckrquqmHej7VcDPA7cluaVpew9wLoMp2VOAu4ETmuc+B7wRWAv8C/ALAFW1Ocn/ALb87t+oqs3N/V8CLgKeDvxJc+vUVVddBcAxxxzTcSWaJO897nwA3nPFGTvf1zVNX0t3vi+Arx/3UgB+8IrbWulPksbdOBzrhw1wRwBvS7KOwZmoYTA497K5XlBVf9lsN5vXzrJ9AafN0deFwIWztK8GXrK94ufTzTffDBjg1K63HnEt0E6Ae+vfNX21FOC+ecRzAAOcpOkxDsf6bQa4JM+pqn9icCkPSZIkjYHtjcD9MbC4qu5O8umq+un5KEqSJElz295JDDOnQH9olIVIkiRpONsbgas57kuSZlh05tVdl9CKdece3XUJkoawvQD38iQPMRiJe3pzHx4/iWHPkVYnSZKkJ9hmgKuqXearkEmxYMGCrkvQBLpt/fPb62v/9voC2G39N1rtT5LG3Tgc6zO4esf0WLJkSa1evbrrMnpjUqaFJA3HKVRpvCRZU1VLtm4fdjF7SZIkjQkDnCRJUs8Y4Fq2YsUKVqxY0XUZmjDrzl3GunOXtdPX+5ex7v3t9AVw97lHc7fTbpKmyDgc6w1wkiRJPTPsWqjaQX75X5IkjYoBTpI0kSbpf6Q9O1hbcwpVkiSpZwxwkiRJPeMUqiTpeyZp2nGSTMq/i1PB7THAtWzZsmWc9Znbui5DE+asz5zeXl9HtdcXwD6fubXV/iRp3C1b1t6lmJ4sl9IagUn5PyVJkjS7+RpNdCktSZKkCWGAa9maNWt44S4PdF2GJsxJh1/DSYdf005ft1zDSbe00xfAw4cfxMOHH9Raf5I07l64ywOsWbOm0xr8DlzLVq1axat2g3/49n5dl6IJ8r7jPwzApTcu3fm+rm36OnTn+wLYfPzLANjjxnta6U+Sxt2rdrubVavu5rDDDuusBkfgJEmSesYAJ0mS1DMGOEmSpJ7pfYBLsjTJXUnWJjmz63okSZJGrdcBLskuwO8AbwAOAU5Kcki3VUmSJI1WrwMccDiwtqr+saoeBS4Dju24JkmSpJHq9UoMSX4GWFpV/755/PPAEVV1+lbbLQeWNw9fBNw1r4XunH2Br3VdxBRyv3fD/d4N9/v8c593o4/7/blV9YRrk03FdeCq6gLggq7reDKSrJ5tCQ2Nlvu9G+73brjf55/7vBuTtN/7PoW6AZh5CfgDmzZJkqSJ1fcAdxNwcJLnJdkNOBG4suOaJEmSRqrXU6hV9ViS04FrgV2AC6vqjo7Lalsvp34ngPu9G+73brjf55/7vBsTs997fRKDJEnSNOr7FKokSdLUMcBJkiT1jAFuDCV5S5I7knw3yZKtnjurWTbsriRHdVXjpEtyTpINSW5pbm/suqZJ5pJ43UiyLsltzXt8ddf1TKokFya5P8ntM9r2SXJdkq80P/fussZJNMd+n5jPdgPceLodOB64YWZjs0zYicCLgaXAR5rlxDQa51XVoc3tc10XM6lcEq9zP9m8xyfi2lhj6iIGn9kznQlcX1UHA9c3j9Wui3jifocJ+Ww3wI2hqrqzqmZbLeJY4LKqeqSqvgqsZbCcmNRnLomniVZVNwCbt2o+Fri4uX8x8OZ5LWoKzLHfJ4YBrl8WAvfMeLy+adNonJ7k1mYY3umN0fF93Z0C/jTJmmbJQc2f/atqU3P/XmD/LouZMhPx2W6A60iSzye5fZabIw/zZDv/Bh8Fng8cCmwCPtBpsdJovLqqFjOYvj4tyY93XdA0qsH1vLym1/yYmM/2Xl/It8+q6nVP4mUuHdaiYf8NkqwEVo24nGnm+7ojVbWh+Xl/kisYTGffsO1XqSX3JVlQVZuSLADu77qgaVBV92253/fPdkfg+uVK4MQkT03yPOBg4MaOa5pIzQfqFscxOLFEo+GSeB1I8owke2y5D7we3+fz6Urg5Ob+ycBnO6xlakzSZ7sjcGMoyXHA+cB+wNVJbqmqo6rqjiSXA18GHgNOq6rvdFnrBPvNJIcymNZYB7yj23Im15QsiTeO9geuSAKDY8ElVXVNtyVNpiSXAkcC+yZZD5wNnAtcnuQU4G7ghO4qnExz7PcjJ+Wz3aW0JEmSesYpVEmSpJ4xwEmSJPWMAU6SJKlnpu4khn333bcWLVrUdRmSJEnbtWbNmq9V1X5bt09dgFu0aBGrV7tmsyRJGn9J7p6t3SlUSZKknjHASZIk9YwBTpIkqWcMcJIkST1jgJMkSeoZA5wkSVLPGOAkSZJ6xgAnSZLUMwY4SZKknjHASZIk9YwBTpIkqWcMcJIkST1jgJMkSeoZA5wkSVLPGOAkSZJ6xgAnSZLUMwY4SZKknjHASZIk9YwBTpIkqWcMcJIkST1jgJMkSeoZA5wkSVLPGOAkSZJ6xgAnSZLUMwY4SZKknjHASZIk9YwBTpIkqWcMcJIkST1jgJMkSeoZA5wkSVLPGOAkSZJ6xgAnSZLUMwY4SZKknjHASZIk9YwBTpIkqWcMcJIkST1jgJMkSeoZA5wkSVLPGOAkSZJ6xgAnSZLUM7t2XYA0jvbZZx8efPDBrssYmTp7T7Lioa7LGJm9996bzZs3d12GJI2MAU6axYMPPkhVdV3G6Jyz10T/fUm6LkGSRsopVEmSpJ4xwEmSJPVMrwNckguT3J/k9q5rmcnpG0nStrRxnEjyhJt99aemndXrAAdcBCztughJkubTXKHhyYSJSe9rHGtqQ69PYqiqG5Is6roOSZK6MPNkpJ0NEZPe1zjWtDN6HeCGlWQ5sBzgOc95znz9znn5PZJm53+DkibZVAS4qroAuABgyZIl83LthEm+RMM08ODff/43qHHmZ4x21lQEOEmSJlGbQXDS+xrHmnZG309ikCRp6sw1wvxkRp4nva9xrKkNvQ5wSS4F/gZ4UZL1SU7puiZJkuZDVT3hZl/9qWln9XoKtapO6rqG2fjdG0nStnic0M7q9QicJEnSNDLASZIk9Uyvp1ClURqHs4xGpc7ec6L/vr333rvrEiRppAxw0iym4fspdU7XFUiSniynUCVJknrGACdJktQzBjhJkqSeMcBJkiT1jAFOkiSpZwxwkiRJPWOAkyRJ6hkDnCRJUs8Y4CRJknrGACdJktQzBjhJkqSeMcBJkiT1jAFOkiSpZwxwkiRJPWOAkyRJ6hkDnCRJUs8Y4CRJknrGACdJktQzBjhJkqSeMcBJkiT1jAFOkiSpZwxwkiRJPWOAkyRJ6hkDnCRJUs8Y4CRJknrGACdJktQzBjhJkqSeMcBJkiT1jAFOkiSpZwxwkiRJPWOAkyRJ6hkDnCRJUs8Y4CRJknrGACdJktQzBjhJkqSeMcBJkiT1jAFOkiSpZwxwkiRJPWOAkyRJ6hkDnCRJUs+kqrquYV4leQC4u+s6dsC+wNe6LmIKud+74X7vhvt9/rnPu9HH/f7cqtpv68apC3B9k2R1VS3puo5p437vhvu9G+73+ec+78Yk7XenUCVJknrGACdJktQzBrjxd0HXBUwp93s33O/dcL/PP/d5NyZmv/sdOEmSpJ5xBE6SJKlnDHBjKMlbktyR5LtJlmz13FlJ1ia5K8lRXdU46ZKck2RDklua2xu7rmmSJVnavKfXJjmz63qmRZJ1SW5r3uOru65nUiW5MMn9SW6f0bZPkuuSfKX5uXeXNU6iOfb7xHy2G+DG0+3A8cANMxuTHAKcCLwYWAp8JMku81/e1Divqg5tbp/ruphJ1byHfwd4A3AIcFLzXtf8+MnmPT4Rl1YYUxcx+Mye6Uzg+qo6GLi+eax2XcQT9ztMyGe7AW4MVdWdVXXXLE8dC1xWVY9U1VeBtcDh81ud1LrDgbVV9Y9V9ShwGYP3ujQRquoGYPNWzccCFzf3LwbePK9FTYE59vvEMMD1y0LgnhmP1zdtGo3Tk9zaDMM7vTE6vq+7U8CfJlmTZHnXxUyZ/atqU3P/XmD/LouZMhPx2W6A60iSzye5fZabIw/zZDv/Bh8Fng8cCmwCPtBpsdJovLqqFjOYvj4tyY93XdA0qsHlILwkxPyYmM/2XbsuYFpV1euexMs2AAfNeHxg06YnYdh/gyQrgVUjLmea+b7uSFVtaH7en+QKBtPZN2z7VWrJfUkWVNWmJAuA+7suaBpU1X1b7vf9s90RuH65EjgxyVOTPA84GLix45omUvOBusVxDE4s0WjcBByc5HlJdmNwos6VHdc08ZI8I8keW+4Dr8f3+Xy6Eji5uX8y8NkOa5kak/TZ7gjcGEpyHHA+sB9wdZJbquqoqrojyeXAl4HHgNOq6jtd1jrBfjPJoQymNdYB7+i2nMlVVY8lOR24FtgFuLCq7ui4rGmwP3BFEhgcCy6pqmu6LWkyJbkUOBLYN8l64GzgXODyJKcAdwMndFfhZJpjvx85KZ/trsQgSZLUM06hSpIk9YwBTpIkqWcMcJIkST1jgJMkSeoZA5wkSVLPGOAkaYYkX0hy1FZt70ry0Tm2/7MkLgQvaV4Z4CTp+13K4GLCM53YtEvSWDDASdL3+yPg6GZVCJIsAg4ATkqyOskdSVbM9sIk35xx/2eSXNTc3y/Jp5Pc1NxeNeo/QtJkM8BJ0gxVtZnBEnVvaJpOBC4Hfq2qlgAvA34iyct2oNsPAedV1SuAnwZ+r8WSJU0hl9KSpCfaMo362ebnKcAJSZYz+NxcABwC3Dpkf68DDmmWrQLYM8kzq+qb23iNJM3JACdJT/RZ4Lwki4Hdgc3ArwCvqKoHm6nRp83yuplrE858/inAK6vqX0dUr6Qp4xSqJG2lGRn7AnAhg9G4PYFvAd9Isj+PT69u7b4kP5LkKcBxM9r/FDhjy4NmMW1JetIMcJI0u0uBlwOXVtXfAV8C/h64BPirOV5zJrAK+Gtg04z2/wgsSXJrki8D7xxZ1ZKmQqpq+1tJkiRpbDgCJ0mS1DMGOEmSpJ4xwEmSJPWMAU6SJKlnDHCSJEk9Y4CTJEnqGQOcJElSzxjgJEmSeub/A42MuWjFomRIAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnMAAAEjCAYAAABZ1odkAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nO3de7hddX3n8ffHIOANAckgJGCwUi0CIkSgo06plyFKBKHWAlqpdWB8KgzMtE8F6SOmjoiPU0GxdQrKgIog9ZqkCqLSai8QkshNkBIrSEi4aLiqA4N+54+9IjvJyTn7hJy99sp5v55nP2ev32+tdb7nm3P2+ub3W5dUFZIkSeqmp7QdgCRJkjadxZwkSVKHWcxJkiR1mMWcJElSh1nMSZIkdZjFnCRJUodZzEnSk5DkkCQr245D0vRlMSep85L8Q5L7k2yzCdvenuQXSR5O8kCSf0nyziR+PkrqBD+sJHVakjnAK4ECDh9nvRnrLW/Vt/iGqnoW8DzgLODdwKc2d6ySNBUs5iR13duAq4ELgePWNia5MMknknwtyc+A321G4d6d5AbgZ+sVdFTVg1W1EPgD4Lgkezf72ibJ/0ry4yT3JPnfSZ42VjBJTk3yw2ak7+YkRzbtWydZk2SfvnX/Q5KfJ5m5eVMiaTqxmJPUdW8DLm5ehybZua/vWOADwLOAf2rajgEOA7avqsfH2mFVLQFW0hvxg95o3W8C+wEvAGYB791IPD9stns2sAD4bJJdquox4FLgrX3rHgN8q6ruG/inlaT1WMxJ6qwkr6A3NXpZVS2jV0gd27fKV6vqn6vqV1X1f5u2j1XVnVX1iwl2vwrYMUmAE4D/XlVrquph4Ezg6LE2qqq/q6pVzff8PHAbcGDTfRFwTLNPgD8EPjO5n1qS1mUxJ6nLjgO+UVU/aZY/R99UK3DnGNuM1TaWWcAaYCbwdGBZc4HEA8DlTfsGkrwtyXV96+4N7ARQVdcAPwcOSfIieqN8CweMR5LGtNXEq0jS6GnOWXszMCPJ3U3zNsD2SV7SLNcYm47Vtv6+X0avmPsn4CfAL4AXV9VdE2z3POB84NXAv1bVL5NcB6RvtYvoTbXeDXyhb8RQkjaJxZykrnoj8EtgH+CxvvbL6J1HN2lJtgP+E/BR4LNVdWPTfj5wdpITq+reJLOAvavqivV28Qx6xeJ9zXZvpzcy1++zwPXAw/SmWSXpSXGaVVJXHQf8n6r6cVXdvfYFfBx4C5P7z+qiJA/Tm4I9HfgI8Pa+/ncDK4CrkzwEfBN44fo7qaqbgb8C/hW4h16h+c/rrXMnsJxe0ffdScQoSWNK1YQzDpKkzSjJBcCqqvqLtmOR1H1Os0rSEDU3OT4KeGm7kUjaUjjNKklDkuT9wE3Ah6vqR23HI2nL4DSrJElShzkyJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR22VdsBDNtOO+1Uc+bMmbL9r1q1CoBdd911yr6HNJKWLet9PeCADbuarxv2tGk0o5I0+oZ5rF+2bNlPqmrmeOukqqY8kFEyd+7cWrp06ZTtf8GCBQCcccYZU/Y9pJGU9L6O8ZnS9DBanzajGZWk0TfMY32SZVU1d7x1nGaVJEnqsGk3zTrV9t9//7ZDkNpx/PEb7xpiGIMbzagkjb5RO9Y7zSpJkjSiBplmdWRO6pg5p/592yFsNrefdVjbIUhS53nO3Ga2atWqX1/lIk0ne9+9gr3vXjFm36OztuPRWdsNOaKJLOOJK1olaXCjdqy3mNvMzj//fM4///y2w5CGbvFFp7D4olPG7Lv7pFdy90mvHHJEE5nbvCRpckbtWG8xJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHeZNgzez48d5pJG0JZt/3Dkb7Xvuud8dYiSD8kkwkjbNqB3rLeY2s1133bXtEKRW3PTcF2y0b5u7HhpiJIM6oO0AJHXUqB3rLeYktcZHk0nSk+c5c5vZokWLWLRoUdthSEN35uXncubl547Z99Mj9+GnR+4z5IjGd+aR53LmkWPHK0njGbVjvcXcZrZ8+XKWL1/edhjS0B17/RUce/0VY/Y9ctDuPHLQ7kOOaHzHHnQFxx40drySNJ5RO9ZbzEmSJHWYxZwkSVKHWcxJkiR1mMWcJElSh1nMSZIkdZj3mdvMdtlll7ZDkFpx486/sdG+rVc+OMRIBnPjyo3HK0njGbVjfaqq7RiGau7cubV0qY/xUXdtSTfa3ZJ402BJUyHJsqqaO946A02zJhmtu31KkiQJGPycub9JsiTJnyR59pRGJEmSpIENVMxV1SuBtwC7AcuSfC7JawfZNsmMJN9LsrhZ3iPJNUlWJPl8kq2b9m2a5RVN/5y+fZzWtN+a5NC+9nlN24okpw78U0+hBQsWsGDBgrbDkIbu9g/N5/YPzR+z746zDuOOEZuGvP2s+dx+1tjxStJ4Ru1YP/DVrFV1G/AXwLuB3wE+luQHSY6aYNOTgVv6lj8EnF1VLwDuB97RtL8DuL9pP7tZjyR7AUcDLwbm0RslnJFkBvDXwOuAvYBjmnUlSZKmjUHPmds3ydn0irJXAW+oqt9q3p89znazgcOATzbLabb5QrPKRcAbm/dHNMs0/a9u1j8CuLSqHq2qHwErgAOb14qq+veqegy4tFlXkiRp2hh0ZO5cYDnwkqp6V1UtB6iqVfRG6zbmHODPgV81y88BHqiqx5vllcCs5v0s4M5mv48DDzbr/7p9vW021r6BJCckWZpk6X333TfxTytJktQRgxZzhwGfq6pfACR5SpKnA1TVZ8baIMl84N6qWrZZIn0Squq8qppbVXNnzpzZdjiSJEmbzaA3Df4m8BrgkWb56cA3gP84zjYvBw5P8npgW2A74KPA9km2akbfZgN3NevfRe8Ci5VJtgKeDfy0r32t/m021i6tw3uzSZK2VIOOzG1bVWsLOZr3Tx9vg6o6rapmV9UcehcwfLuq3gJcBbypWe044KvN+4XNMk3/t6t3R+OFwNHN1a57AHsCS4BrgT2bq2O3br7HwgF/HkmSpC3CoCNzP0uy/9pz5ZIcAPxiE7/nu4FLk/xP4HvAp5r2TwGfSbICWEOvOKOqvp/kMuBm4HHgXVX1yyaOE4ErgBnABVX1/U2MabOZP99bHWh6Ou3QEzfat+OXbhhiJIM57Usbj1eSxjNqx/qBHueV5GX0rhZdBQR4LvAHo3A+3GT5OK/pyWlWTTUf5yVpKgzyOK+BRuaq6tokLwJe2DTdWlX/78kGKEmSpCdn0GlWgJcBc5pt9k9CVX16SqLqsGXLeoOVBxxwQMuRSMN1zHWXA3DJfvM26Hv4wN61Ss9acucGfW055sAm3iUbxitJ4xm1Y/1AxVySzwC/AVwH/LJpLsBibj2LFy8GRucfWBqWD17xcWDsYm7NUfsCo1XMffCoJl6LOUmTNGrH+kFH5uYCe9UgJ9hJkiRpaAa9NclN9C56kCRJ0ggZdGRuJ+DmJEuAR9c2VtXhUxKVJEmSBjJoMfe+qQxCkiRJm2bQW5P8Y5LnAXtW1Teb57LOmNrQJEmSNJGBzplLcjzwBeBvm6ZZwFemKihJkiQNZtAnQFwHHAhcU1UvbdpurKp9pji+zc4nQExPPgFCU80nQEiaCoM8AWLQq1kfrarH+na8Fb37zEmSJKlFgxZz/5jkPcDTkrwW+Dtg0dSFJUmSpEEMWsydCtwH3Aj8V+BrwF9MVVBddt5553Heeee1HYY0dIsuPJlFF548Zt/qE1/B6hNfMeSIxrfoxJNZdOLY8UrSeEbtWD/o1ay/As5vXhrH6tWr2w5BasU+9/xwo32PzX72ECMZzD6zNx6vJI1n1I71gz6b9UeMcY5cVT1/s0ckSZKkgU3m2axrbQv8PrDj5g9HkiRJkzHQOXNV9dO+111VdQ7gdfiSJEktG3Sadf++xafQG6kbdFRPkrZ4W8q9DL1fntQ9gxZkf9X3/nHgduDNmz0aSZIkTcqgV7P+7lQHsqXYf//9J15J2gJ97iWHbrTvmdf8eIiRDOZz12w8Xkkaz6gd6wd9nNf/GK+/qj6y2SKaYj7Oa3raUqbApKnmNKs0WgZ5nNdkrmZ9GbCwWX4DsAS4bdPDkyRJ0pM1aDE3G9i/qh4GSPI+4O+r6q1TFVhXrVq1CoBdd9215Uik4dr77hUA3PTcF2zQ9+is7QDY5q6HhhrTePae1cR714bxStJ4Ru1YP+jjvHYGHutbfqxp03rOP/98zj/fB2Vo+ll80SksvuiUMfvuPumV3H3SK4cc0fgWn3QKi08aO15JGs+oHesHHZn7NLAkyZeb5TcCF01NSJIkSRrUoDcN/gDwduD+5vX2qjpzvG2S7JbkqiQ3J/l+kpOb9h2TXJnktubrDk17knwsyYokN/Tf2y7Jcc36tyU5rq/9gCQ3Ntt8LEkmnwJJkqTuGnSaFeDpwENV9VFgZZI9Jlj/ceBPq2ov4GDgXUn2Ak4FvlVVewLfapYBXgfs2bxOAD4BveIPOAM4CDgQOGNtAdisc3zfdvMm8fNIkiR13kDFXJIzgHcDpzVNTwU+O942VbW6qpY37x8GbgFmAUfwxBTtRfSmbGnaP109VwPbJ9kFOBS4sqrWVNX9wJXAvKZvu6q6unr3V/l0374kSZKmhUFH5o4EDgd+BlBVq4BnDfpNkswBXgpcA+xcVaubrrt54kKKWcCdfZutbNrGa185RvtY3/+EJEuTLL3vvvsGDVuSJGnkDVrMPdaMfhVAkmcM+g2SPBP4InBKVa1zX4L+fU6lqjqvquZW1dyZM2dO9beTJEkamkGvZr0syd/Sm/o8HvhjYMJrcpM8lV4hd3FVfalpvifJLlW1upkqvbdpvwvYrW/z2U3bXcAh67X/Q9M+e4z1W3X88ce3HYLUivnHnbPRvuee+90hRjKY+eduPF5JGs+oHesnLOaaK0Q/D7wIeAh4IfDeqrpygO0+Bdyy3uO+FgLHAWc1X7/a135ikkvpXezwYFPwXQGc2XfRw38GTquqNUkeSnIwvenbtwHnDvJDT6VRuYGgNGxj3Sx4rVG6WfBa3ixY0qYatWP9hMVcVVWSr1XVPvQuPhjUy4E/BG5Mcl3T9h56RdxlSd4B3AG8uen7GvB6YAXwc3q3QqEp2t4PXNus95dVtaZ5/yfAhcDTgK83L0mSpGlj0GnW5UleVlXXTrxqT1X9E7Cx+769eoz1C3jXRvZ1AXDBGO1Lgb0HjWkYFi1aBMAb3vCGliPZPHxAvQZ15uW9gfH3zDtpg76fHrkPAM/58o1DjWk8Zx7ZxPvlDeOVpPGM2rF+0AsgDgKuTvLD5oa+Nya5YSoD66rly5ezfPnytsOQhu7Y66/g2OuvGLPvkYN255GDdh9yROM79qArOPagseOVpPGM2rF+3JG5JLtX1Y/p3etNkiRJI2aiadavAPtX1R1JvlhVvzeMoCRJkjSYiaZZ+895e/5UBiJJkqTJm6iYq428lyRJ0giYaJr1JUkeojdC97TmPc1yVdV2UxqdJEmSxjVuMVdVM4YVyJZil112aTsEqRU37vwbG+3beuWDQ4xkMDeu3Hi8kjSeUTvWp3d7t+lj7ty5tXTp0rbD6AzvMyepq24/67C2Q5CetCTLqmrueOsMep85SZIkjSCLOUmSpA6zmNvMFixYwIIFC9oOQxq62z80n9s/NH/MvjvOOow7RmzK6/az5nP7WWPHK0njGbVjvcWcJElSh1nMSZIkdZjFnCRJUodZzEmSJHWYxZwkSVKHWcxJkiR12ETPZtUkzZ/vrQ40PZ126Ikb7dvxSzcMMZLBnPaljccrSeMZtWO9j/OaAj4CS5La5+O8tCUY5HFejsxJkrZIW9J/rC1MNR7PmdvMli1bxm/OuK/tMKShO+a6yznmusvH7Hv4wN14+MDdhhzR+I458HKOOXDseCVpPMuWLWPZsmVth/FrjsxtZosXL+blW8O//WJm26FIQ/XBKz4OwCX7zdugb81R+wLwrCV3DjWm8XzwqCbeJRvGK0njWbx4MQAHHHBAy5H0ODInSZLUYRZzkiRJHeY0qyRJI25LuZjDCzmmRudH5pLMS3JrkhVJTm07HkmSpGHq9MhckhnAXwOvBVYC1yZZWFU3txuZJEla35Yywvj2p7Udwbq6PjJ3ILCiqv69qh4DLgWOaDkmSZKkoen0EyCSvAmYV1X/pVn+Q+CgqjpxvfVOAE5oFl8I3DrUQCdnJ+AnbQcx4szRYMzTxMzRYMzTxMzRYMzTxNbP0fOqatz7nXV6mnVQVXUecF7bcQwiydKJHtsx3ZmjwZiniZmjwZiniZmjwZiniW1Kjro+zXoX0H9b+dlNmyRJ0rTQ9WLuWmDPJHsk2Ro4GljYckySJElD0+lp1qp6PMmJwBXADOCCqvp+y2E9WZ2YDm6ZORqMeZqYORqMeZqYORqMeZrYpHPU6QsgJEmSpruuT7NKkiRNaxZzkiRJHWYxNwKSvD/JDUmuS/KNJLs27UnyseZRZTck2b/tWNuU5MNJftDk4stJtu/rO63J061JDm0zzjYl+f0k30/yqyRz1+szR318FODYklyQ5N4kN/W17ZjkyiS3NV93aDPGtiXZLclVSW5u/t5ObtrNUyPJtkmWJLm+ydGCpn2PJNc0f3efby5enNaSzEjyvSSLm+VJ58hibjR8uKr2rar9gMXAe5v21wF7Nq8TgE+0FN+ouBLYu6r2Bf4NOA0gyV70rmR+MTAP+JvmUW/T0U3AUcB3+hvN0br6HgX4OmAv4JgmR4IL6f2O9DsV+FZV7Ql8q1mezh4H/rSq9gIOBt7V/P6Ypyc8Cryqql4C7AfMS3Iw8CHg7Kp6AXA/8I4WYxwVJwO39C1POkcWcyOgqh7qW3wGsPaqlCOAT1fP1cD2SXYZeoAjoqq+UVWPN4tX07uvIPTydGlVPVpVPwJW0HvU27RTVbdU1VhPODFH6/JRgBtRVd8B1qzXfARwUfP+IuCNQw1qxFTV6qpa3rx/mN6BeBbm6dea49YjzeJTm1cBrwK+0LRP6xwBJJkNHAZ8slkOm5Aji7kRkeQDSe4E3sITI3OzgDv7VlvZtAn+GPh68948Tcwcrct8TM7OVbW6eX83sHObwYySJHOAlwLXYJ7W0UwfXgfcS29m5YfAA33/KffvDs4B/hz4VbP8HDYhRxZzQ5Lkm0luGuN1BEBVnV5VuwEXAyeOv7ct10R5atY5nd40x8XtRdqeQXIkTZXq3c/Ke1oBSZ4JfBE4Zb0ZFvMEVNUvm9OHZtMbDX9RyyGNlCTzgXuratmT3VenbxrcJVX1mgFXvRj4GnAG0/BxZRPlKckfAfOBV9cTN0mcVnmaxO9Sv2mVowGYj8m5J8kuVbW6OdXj3rYDaluSp9Ir5C6uqi81zeZpDFX1QJKrgN+md7rQVs3I03T/u3s5cHiS1wPbAtsBH2UTcuTI3AhIsmff4hHAD5r3C4G3NVe1Hgw82DeEP+0kmUdvOPrwqvp5X9dC4Ogk2yTZg94FI0vaiHGEmaN1+SjAyVkIHNe8Pw74aouxtK45r+lTwC1V9ZG+LvPUSDJz7R0HkjwNeC29cwuvAt7UrDatc1RVp1XV7KqaQ+8z6NtV9RY2IUc+AWIEJPki8EJ6c+Z3AO+sqruaD4yP07uy7OfA26tqaXuRtivJCmAb4KdN09VV9c6m73R659E9Tm/K4+tj72XLluRI4FxgJvAAcF1VHdr0maM+zf+Gz+GJRwF+oOWQRkKSS4BDgJ2Ae+jNEnwFuAzYnd5n1Jurav2LJKaNJK8AvgvcyBPnOr2H3nlz5glIsi+9k/dn0Bs4uqyq/jLJ8+ldcLQj8D3grVX1aHuRjoYkhwB/VlXzNyVHFnOSJEkd5jSrJElSh1nMSZIkdZjFnCRJUodNu1uT7LTTTjVnzpy2w5AkSZrQsmXLflJVM8dbZ9oVc3PmzGHp0ml7QagkSeqQJHdMtI7TrJIkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYVu1HYA03e24447cf//9bYexWdQZ25EFD7UdxlDssMMOrFmzpu0wJMliTmrb/fffT1W1Hcbm8b5nbzk/ywSStB2CJAFOs0qSJHWaxZwkSVKHdXqaNckFwHzg3qrau+141koybaaaJEntGet4M9YpAGvXGa/vyWzbtf1OZUxt6PrI3IXAvLaDkCRpFGzsXM4k4/Y9mW27tt+pjKktnR6Zq6rvJJnTdhySJI2S8UagBh2dmuy2XdvvVMY0bJ0u5gaV5ATgBIDdd999WN9zKN9HUnv8O5c0CqZFMVdV5wHnAcydO3coE9ttz5+rOywIusu/c7XNzw/BNCnmJEmaTsYr8iYqADd1267tdypjGrauXwAhSZIaGxstrqpx+57Mtl3b71TG1JZOj8wluQQ4BNgpyUrgjKr6VLtRSZLUnvEKi4mKjk3dtmv7ncqY2tDpYq6qjmk7hrGM4j+0JGnL4/FG4DSrJElSp1nMSZIkdVinp1mlLcWoXRm1qeqM7baYn2UiO+ywQ9shSBJgMSe1bks756Xe13YEkjS9OM0qSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR1mMSdJktRhFnOSJEkdZjEnSZLUYRZzkiRJHWYxJ0mS1GEWc5IkSR2Wqmo7hqFKch9wR9txjGMn4CdtBzHizNFgzNPEzNFgzNPEzNFgzNPE1s/R86pq5ngbTLtibtQlWVpVc9uOY5SZo8GYp4mZo8GYp4mZo8GYp4ltSo6cZpUkSeowizlJkqQOs5gbPee1HUAHmKPBmKeJmaPBmKeJmaPBmKeJTTpHnjMnSZLUYY7MSZIkdZjF3AhI8v4kNyS5Lsk3kuzatCfJx5KsaPr3bzvWNiX5cJIfNLn4cpLt+/pOa/J0a5JD24yzTUl+P8n3k/wqydz1+sxRnyTzmlysSHJq2/GMiiQXJLk3yU19bTsmuTLJbc3XHdqMsW1JdktyVZKbm7+3k5t289RIsm2SJUmub3K0oGnfI8k1zd/d55Ns3XasbUsyI8n3kixuliedI4u50fDhqtq3qvYDFgPvbdpfB+zZvE4APtFSfKPiSmDvqtoX+DfgNIAkewFHAy8G5gF/k2RGa1G26ybgKOA7/Y3maF3Nz/7X9P7G9gKOaXIkuJDe70i/U4FvVdWewLea5ensceBPq2ov4GDgXc3vj3l6wqPAq6rqJcB+wLwkBwMfAs6uqhcA9wPvaDHGUXEycEvf8qRzZDE3Aqrqob7FZwBrT2Q8Avh09VwNbJ9kl6EHOCKq6htV9XizeDUwu3l/BHBpVT1aVT8CVgAHthFj26rqlqq6dYwuc7SuA4EVVfXvVfUYcCm9HE17VfUdYM16zUcAFzXvLwLeONSgRkxVra6q5c37h+kdiGdhnn6tOW490iw+tXkV8CrgC037tM4RQJLZwGHAJ5vlsAk5spgbEUk+kORO4C08MTI3C7izb7WVTZvgj4GvN+/N08TM0brMx+TsXFWrm/d3Azu3GcwoSTIHeClwDeZpHc304XXAvfRmVn4IPND3n3L/7uAc4M+BXzXLz2ETcmQxNyRJvpnkpjFeRwBU1elVtRtwMXBiu9G2Z6I8NeucTm+a4+L2Im3PIDmSpkr1boHgbRCAJM8Evgicst4Mi3kCquqXzelDs+mNhr+o5ZBGSpL5wL1VtezJ7murzRCPBlBVrxlw1YuBrwFnAHcBu/X1zW7atlgT5SnJHwHzgVfXE/fVmVZ5msTvUr9plaMBmI/JuSfJLlW1ujnV4962A2pbkqfSK+QurqovNc3maQxV9UCSq4Dfpne60FbNyNN0/7t7OXB4ktcD2wLbAR9lE3LkyNwISLJn3+IRwA+a9wuBtzVXtR4MPNg3hD/tJJlHbzj68Kr6eV/XQuDoJNsk2YPeBSNL2ohxhJmjdV0L7NlcNbY1vYtDFrYc0yhbCBzXvD8O+GqLsbSuOa/pU8AtVfWRvi7z1Egyc+0dB5I8DXgtvXMLrwLe1Kw2rXNUVadV1eyqmkPvM+jbVfUWNiFH3jR4BCT5IvBCenPmdwDvrKq7mg+Mj9O7suznwNuraml7kbYryQpgG+CnTdPVVfXOpu90eufRPU5vyuPrY+9ly5bkSOBcYCbwAHBdVR3a9JmjPs3/hs8BZgAXVNUHWg5pJCS5BDgE2Am4h94swVeAy4Dd6X1Gvbmq1r9IYtpI8grgu8CNPHGu03vonTdnnoAk+9I7eX8GvYGjy6rqL5M8n94FRzsC3wPeWlWPthfpaEhyCPBnVTV/U3JkMSdJktRhTrNKkiR1mMWcJElSh1nMSZIkdZjFnCRJUodZzEmSJHWYxZwk9UlyVZJD12s7JcknNrL+PySZO5zoJGlDFnOStK5L6N3As9/RTbskjRyLOUla1xeAw5onQ6x9kPquwDFJlib5fpIFY22Y5JG+929KcmHzfmaSLya5tnm9fKp/CEnTh8WcJPVp7onYQIoAAAEwSURBVNi/BHhd03Q0vbv6n15Vc4F9gd9p7nA/qI8CZ1fVy4DfAz65GUOWNM1t1XYAkjSC1k61frX5+g7gzUlOoPe5uQuwF3DDgPt7DbBX7wl9AGyX5JlV9cg420jSQCzmJGlDXwXOTrI/8HRgDfBnwMuq6v5m+nTbMbbrfz5if/9TgIOr6v9OUbySpjGnWSVpPc2I2VXABfRG6bYDfgY8mGRnnpiCXd89SX4ryVOAI/vavwGctHYhyX5TErikacliTpLGdgnwEuCSqroe+B7wA+BzwD9vZJtTgcXAvwCr+9r/GzA3yQ1JbgbeOWVRS5p2UlUTryVJkqSR5MicJElSh1nMSZIkdZjFnCRJUodZzEmSJHWYxZwkSVKHWcxJkiR1mMWcJElSh1nMSZIkddj/B9ZK4Z+tHFiTAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Trim outliers for ArrDelay based on 1% and 90% percentiles\n", + "ArrDelay_01pcntile = df_flights.ArrDelay.quantile(0.01)\n", + "ArrDelay_90pcntile = df_flights.ArrDelay.quantile(0.90)\n", + "df_flights = df_flights[df_flights.ArrDelay < ArrDelay_90pcntile]\n", + "df_flights = df_flights[df_flights.ArrDelay > ArrDelay_01pcntile]\n", + "\n", + "# Trim outliers for DepDelay based on 1% and 90% percentiles\n", + "DepDelay_01pcntile = df_flights.DepDelay.quantile(0.01)\n", + "DepDelay_90pcntile = df_flights.DepDelay.quantile(0.90)\n", + "df_flights = df_flights[df_flights.DepDelay < DepDelay_90pcntile]\n", + "df_flights = df_flights[df_flights.DepDelay > DepDelay_01pcntile]\n", + "\n", + "# View the revised distributions\n", + "for col in delayFields:\n", + " show_distribution(df_flights[col])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "That looks a bit better.\n", + "\n", + "### Explore the data\n", + "\n", + "Let's start with an overall view of the summary statistics for the numeric columns." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "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", + "
YearMonthDayofMonthDayOfWeekOriginAirportIDDestAirportIDCRSDepTimeDepDelayDepDel15CRSArrTimeArrDelayArrDel15Cancelled
count214397.0214397.000000214397.000000214397.000000214397.000000214397.000000214397.000000214397.000000214397.000000214397.000000214397.000000214397.000000214397.000000
mean2013.07.01836815.7947033.90273712757.82766112726.2761471278.223879-0.9216920.0181161461.406596-5.0302760.0686020.013228
std0.02.0063988.8591181.9977441510.0586291506.251757469.4402625.7085940.133371485.67645711.4242800.2527760.114249
min2013.04.0000001.0000001.00000010140.00000010140.0000001.000000-11.0000000.0000001.000000-32.0000000.0000000.000000
25%2013.05.0000008.0000002.00000011292.00000011292.000000850.000000-5.0000000.0000001054.000000-13.0000000.0000000.000000
50%2013.07.00000016.0000004.00000012892.00000012892.0000001235.000000-2.0000000.0000001445.000000-6.0000000.0000000.000000
75%2013.09.00000023.0000006.00000014100.00000014057.0000001655.0000001.0000000.0000001845.0000002.0000000.0000000.000000
max2013.010.00000031.0000007.00000015376.00000015376.0000002359.00000016.0000001.0000002359.00000037.0000001.0000001.000000
\n", + "
" + ], + "text/plain": [ + " Year Month DayofMonth DayOfWeek OriginAirportID \\\n", + "count 214397.0 214397.000000 214397.000000 214397.000000 214397.000000 \n", + "mean 2013.0 7.018368 15.794703 3.902737 12757.827661 \n", + "std 0.0 2.006398 8.859118 1.997744 1510.058629 \n", + "min 2013.0 4.000000 1.000000 1.000000 10140.000000 \n", + "25% 2013.0 5.000000 8.000000 2.000000 11292.000000 \n", + "50% 2013.0 7.000000 16.000000 4.000000 12892.000000 \n", + "75% 2013.0 9.000000 23.000000 6.000000 14100.000000 \n", + "max 2013.0 10.000000 31.000000 7.000000 15376.000000 \n", + "\n", + " DestAirportID CRSDepTime DepDelay DepDel15 \\\n", + "count 214397.000000 214397.000000 214397.000000 214397.000000 \n", + "mean 12726.276147 1278.223879 -0.921692 0.018116 \n", + "std 1506.251757 469.440262 5.708594 0.133371 \n", + "min 10140.000000 1.000000 -11.000000 0.000000 \n", + "25% 11292.000000 850.000000 -5.000000 0.000000 \n", + "50% 12892.000000 1235.000000 -2.000000 0.000000 \n", + "75% 14057.000000 1655.000000 1.000000 0.000000 \n", + "max 15376.000000 2359.000000 16.000000 1.000000 \n", + "\n", + " CRSArrTime ArrDelay ArrDel15 Cancelled \n", + "count 214397.000000 214397.000000 214397.000000 214397.000000 \n", + "mean 1461.406596 -5.030276 0.068602 0.013228 \n", + "std 485.676457 11.424280 0.252776 0.114249 \n", + "min 1.000000 -32.000000 0.000000 0.000000 \n", + "25% 1054.000000 -13.000000 0.000000 0.000000 \n", + "50% 1445.000000 -6.000000 0.000000 0.000000 \n", + "75% 1845.000000 2.000000 0.000000 0.000000 \n", + "max 2359.000000 37.000000 1.000000 1.000000 " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_flights.describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### What are the mean departure and arrival delays?" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "DepDelay -0.921692\n", + "ArrDelay -5.030276\n", + "dtype: float64" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_flights[delayFields].mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### How do the carriers compare in terms of arrival delay performance?" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAfcAAAILCAYAAAD1zdXYAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nO3de7xUdb3/8fdnI4JuSAUNVBSstBRRTnDy2E8LUyGRJP2RRoIiFiFWx3PSEMuAw/HC0Y5dvJ1SxMsJNX55JLzhhV2ZpmlHEbymUFpqKmpsEi/sz++PtQbX3sxebPaetRbzXa/n4zEP+H5nZn3mu2bNvGetWXu+5u4CAADhaCj6AQAAgNoi3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7kBGzMzN7CNFP44imdkIM3sh5fq6WkdmdpuZnVj04wA2hXBH8MxslZm9ZWbNZva6md1iZrsV/bgqzGySmd1b9OOod2a2s5ldaWYvmtkaM3vSzGabWWOtarj7Ee5+da2WB2SFcEdZfM7de0naWdLLkn5U8OPJjJltVfRjyJuZ9ZF0v6RtJB3o7r0lHS5pe0kf7sTytmrTNjPr9PtlGZ8TFItwR6m4+zpJCyXtU+kzs+3M7Boze8XM/mhm3zGzBjPrY2YvmNnn4tv1MrM/mNkJcXu+mV1uZnfGe4q/NLOB1eqm1Nhb0uWSDoyPLLzRzv33MLNfxXXuMrNLzOy6+LpB8eHtk83sT5LuiZf9nbjWX+Pa28W33+hQeXx047D4/7PMbKGZ3RDX+72Z7Z+47S5m9v/isaw0s28krtsmXi+vm9njkv6xA0/LaDN7zsxeNbML4se+tZmtNrMhiWV/0Mz+bmY7VVnGv0paI2mCu6+SJHd/3t3/2d2Xxff/gZk9b2Z/M7OHzezgxLIrY77OzP4maZKZNZnZOWb2G0l/l/ShuO/LiftNNrMn4vHekXz+4+fkVDN7RtIzHVgPQM0Q7igVM9tW0nGSfpvo/pGk7SR9SNKnJZ0g6SR3Xy1psqSfmNkHJV0k6RF3vyZx3+MlzZG0o6RHJP13O6Xbq/GEpKmS7nf3Xu6+fTv3/6mkByX1lTRL0sQqt/m0pL0ljZI0Kb4cEtfsJenidpZdzVhJP5PUJ679P2bWPd57/YWkRyXtKulQSaeZ2aj4fjMV7Sl/OH4cHfl++mhJwyV9PK472d3fkXS9pAmJ242XdLe7v1JlGYdJ+rm7t6TU+Z2koYkx/czMerYZ80JFe/uV53GipCmSekv6Y3JhZjZW0lmSjpG0k6RfS1rQpubnJR2gxIdJIBfuzoVL0BdJqyQ1S3pD0ruS/iJpSHxdN0nvSNoncfuvSmpKtH8k6TFJf5bUN9E/X9L1iXYvSesl7Ra3XdJHNlVDUQjfm/L4d5f0nqRtE33XSbou/v+guNaHEtffLWlaov3ReOxbSRoh6YUq6+iw+P+zJP02cV2DpBclHawoqP7U5r4zJF0V//85SZ9NXDelba029/U2t5+mKMBVqSXJ4vZDko5tZznPSJq6mdvF65L2T4z5V22ub5L0b1X6vhz//zZJJ7dZT3+XNDAxts8Uvf1zKeeFPXeUxec92ivuKelrkn5pZv0V7XF3V+u9sj8q2iut+LGkfSXNd/fX2iz3+cp/3L1Z0mpJu7S5TUdqpNlF0mp3/3u1uu307VKl3laS+nWwZnJcLZJeiJc5UNIuZvZG5aJo77Wy3F3aPI5We7ubqhXffpe47gOKwnKEmX1M0QelRe0s4zVF51O0y8xOjw+hvxk/7u0UPTfVHkdaX8VAST9IrIfVkkytn9e0+wOZIdxRKu6+3t1/rmgP+yBJryrao01+V767or10mVk3ReF+jaRptvGfbW04697Meik65PuXNrdJraFoDy/Ni5L6xF8pbFQ3ObzE//9Spd57ik4mXCtpw7LiMbb9Hjs5rgZJA+JlPi9ppbtvn7j0dvfRiceafGy7b2Jsbceyu1qvv6sVHZqfKGmhR+dMVHOXpKPbO+kt/n79W5KOlbRD/EHvTUVhXFHteUh7bp6X9NU262Ibd7+vg/cHMkO4o1QsMlbSDpKecPf1km6UdI6Z9Y5PiPpXRYe9pWiv1BV9936BpGviMKwYbWYHmdnWir57/627t9pb60CNlyUNiJexEXf/o6JD0rPiE80OlPS5TQx1gaR/iU/E6yXpXEk3uPt7kp6W1NPMjjSz7pK+I6lHm/sPM7NjLDrL+zRJbys6T+FBSWvMbHp88lw3M9vXzConzt0oaYaZ7WBmAyR9fROPU5LOiG+/m6R/lnRD4rrrFH0nP0HRB6z2/KekD0i6unJSm5ntamb/aWb7KfrO/D1Jr0jaysy+G9++Ky5XNNbBcb3tzOwLXVwmUBOEO8riF2bWLOlvks6RdKK7r4iv+7qivdnnJN2r6GSreWY2TFEInxAH9FxFQX9mYrk/VXQS2WpJw9T6BLCkqjXi6+6RtELSS2b2ajv3P17SgYoOP/+7ogB8O2W88yRdK+lXklZKWhc/Brn7m4q+275C0dGDtYoOuyfdrOjEw9cV7TUf4+7vxuthjKIT01YqOipxhaJD3JI0W9Gh9ZWSlsSPYVNulvSwohMSb5F0ZeWK+IPS7xWt91+3twCPTn78pKIjJA+Y2RpF5x28KekPku6QdLuiDzZ/jNdHlw6Zu/tNiraJ6+Mz7JdLOqIrywRqpXKiCoDNZGbzFZ0s9p0Cat8g6Ul3n5nBsmdJ+oi7t/dBJVdmNk/SX4pYz0C94ocVgDoQH/ZerWiPeKSiP9s6v9AHlQMzG6ToT83+odhHAtQXDssD9aG/oj/Dapb0Q0mnuPv/FvqIMmZmcxQd6r7A3VcW/XiAesJheQAAAsOeOwAAgSHcAQAIDOEOAEBgCHcAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABIZwBwAgMIQ7gJoyMzezjxT9OIAyI9yBOmNmq8zsLTNbY2ZvmNl9ZjbVzLr8ejaz+Wb2TrzsNWa23MzOM7PtavHYAeSDcAfq0+fcvbekgZLOlzRd0pU1WvZ/xMveSdJJkv5J0m/MrLFGyweQMcIdqGPu/qa7L5J0nKQTzWxfM+thZhea2Z/M7GUzu9zMtpEkMxthZi+Y2Vlm9mp8FOD4dpa9zt1/J+koSX0VBb3i5Uw2syfM7HUzu8PMBlZbhpkdaWb/a2Z/M7PnzWxW4rpbzOzrbW6/zMyO7up6AcqOcAcC4O4PSnpB0sGK9uT3kjRU0kck7Srpu4mb95e0Y9x/oqQfm9lHU5a9RtKd8bJlZmMlnSXpGEV797+WtKCdu6+VdIKk7SUdKekUM/t8fN3VkiZUbmhm+8eP6ZYODhtAOwh3IBx/kdRH0hRJ/+Luq+NgPlfSF9vc9mx3f9vdf6koTI/t4LIlaaqk89z9CXd/L17+0Gp77+7e5O6PuXuLuy9T9CHg0/HViyTtZWZ7xu2Jkm5w93c2Z9AANka4A+HYVdJWkraV9HB8st0bkm5XtIdd8bq7r020/yhplw4se3X8/4GSfpBY/mpJFt+mFTM7wMyWmtkrZvamog8GO0rRYX9JN0iaEJ8MOF7StZs1YgBVEe5AAMzsHxWF6/9IekvSYHffPr5s5+69Ejffoc3Jcbsr2jNvb9m9JB2m6PC7JD0v6auJ5W/v7tu4+31V7v5TRXvou7n7dpIuV/RBoOJqScdLOlTS3939/s0ZN4DqCHegjpnZB8xsjKTrJV3n7o9K+omki8zsg/FtdjWzUW3uOtvMtjazgyWNkfSzKsvuYWbDFH1geF3SVfFVl0uaYWaD49ttZ2ZfaOch9pa02t3XmdknJH0peWUc5i2Svif22oGaIdyB+vQLM1ujaC/625L+U++fzT5d0h8k/dbM/ibpLknJE+ZeUhTWf5H035KmuvuTieu/FS/7NUnXSHpY0icrh/Ld/SZJcyVdHy9/uaQj2nmc0yT9W7y870q6scptrpE0RNJ1HR8+gDTm7kU/BgA5MbMRivbwBxT9WCrM7ARJU9z9oKIfCxAK9twBFMbMtlW0d//joh8LEBLCHUAh4vMAXpH0sqIT7wDUCIflAQAIDHvuAAAEhnAHACAwWxX9AJJ23HFHHzRoUKfuu3btWjU25jdpVd71qBlWzTKMkZrh1KPmllnz4YcfftXdd6p6pbtvMZdhw4Z5Zy1durTT962HetQMq2YZxkjNcOpRc8usKekhbydPOSwPAEBgCHcAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABIZwBwAgMFvUfO6dYWYb9UUz4YVRj5ph1SzDGCWpZ8+eevvttze0e/TooXXr1mVaswzrtgxjpGZtatb1nntyxUyePLlqf1b1OtJf65pf//rXc6+5zz775F6zI/21rrnrrrtmXrPo53KnnXbKpWYl2Pv166errrpK/fr109tvv62ePXtmVjM5no9+9KNV+7OsOXDgwMxrFv0a6d+/f+41v/Wtb+VesyP9ta55zjnn1LxmXYd7hbtr4sSJmX/KStZbunRpbvUqNY855pjca15yySW51yxi3V533XW5bj9FPJc33nhjLjUrwf7SSy9p0KBBeumllzYEfNbcXZdffnnu63b+/PnBv/8sWLAg95pHHHFEKd5/PvnJT9a8Zt2H+9y5c1PbIbjkkktS21k4+OCDU9uh2HvvvVPbtVbEc/nhD384tZ2Fpqam1HYWDjjggNR2FoYMGZLaDsFee+2V2s7C/PnzU9uhWLx4cWq7K+o+3KdPn57aDsGpp56a2s7Cr3/969R2KJ544onUdq0V8Vw+++yzqe0sjBgxIrWdhQceeCC1nYXHHnsstR2Cp59+OrWdhUmTJqW2QzFmzJjUdlfUfbhL0XcU1157babfj7Std8ghh+RWr1Lz5z//ee41Tz311NxrFrFuJ0yYkOv2U8Rzeeyxx+ZSs0ePHnr55ZfVv39/rVq1Sv3799fLL7+sHj16ZF7bzDR16tTc1+2kSZOCf/8ZP3587jVvu+22Urz/3HfffTWvaXl+t7Apw4cP94ceemiz7sPZqtSsp5plGKPE2fKh1KPmll3TzB529+HVrqv7PXd3b3USRNZPRt71qBlWzTKMUZLWrVvXqmbWwS6VY92WYYzUrI26D3cAANAa4Q4AQGAIdwAAAkO4AwAQGMIdAIDAEO4AAASmJuFuZvPM7K9mtjzRN8vM/mxmj8SX0bWoBQAA0tVqytf5ki6WdE2b/ovc/cIa1aiKH5GgZr3VLINRo0bpzjvvlLvLzHT44YfrjjvuyLRmGbafMoyxqJpF2OKnfHX3X0laXYtlbY7kikn+Jm+oUy5OmzYt95oDBgzIvWZH+mtdMzkdaZ4/PRmiUaNGacmSJZo6dap+8YtfaOrUqVqyZIlGjRqVWc3kc9a7d++q/VnWbGxszLxm0a+RImrOnDkzl5pFyHrK8qy/c/+amS2LD9vvkFURd9c3v/nN4Kdc/MIXvpB7zWuvvbYUUy7edtttQe4ZFOHOO+/UKaecoksvvVS9evXSpZdeqlNOOUV33nln5rXdXYsWLcp9+1m8eHHw7z9F1BwxYkTwr0v3bKYsr9Vh+WoukzRHksf/fk/S5LY3MrMpkqZIUr9+/TZ7asgxY8aoqalJzc3Nampq0pgxY7R48eJMp5hM1kv2ZWXatGmtak6bNk2XXnpppjUHDBjQquaAAQP0wgsvZD51Z97rtmfPnq1q9uzZU+vWrcuk5iGHHJJ6/dKlS4Oo6e4aPXp0q/U6evRoXXbZZZk+l717925Vs3fv3lqzZk2mNRsbG1vVbGxs1Nq1a4N6/ymi5syZM1vVnDlzpmbPnh3M67Ji8uTJrcY5efJkzZs3rzbjrPyebVcvkgZJWr651yUvw4YN882h6IODu7svXbp0o75ay7seNcOrWTFw+uLMaxRV08z8lFNOcff31+spp5ziZpZZzTJsP2UYY1E1k/J6ndRinJIe8nbyNLM9dzPb2d1fjJtHS1qedvsu1tKYMWM2+QmslvXyZmaaNm1abmOs1KzssedZM29mtmGPHV13+OGH67LLLpMkjR49WtOmTdNll12mkSNHZl7bzDbssefFzDbssedVL29F1Zw5c2au73lFMDNNnjy55uOsyZSvZrZA0ghJO0p6WdLMuD1U0SeRVZK+mgj7qpjylZplqClJg868RavOPzLzOkXV5Gz5MOqVqWZFnq+TLX7KV3cf7+47u3t3dx/g7le6+0R3H+Lu+7n7UZsK9i7UznWavrzrUTO8mmVwxx13qKWlRUuXLlVLS0vmwS6VY/spwxiLqlmELMfJL9QBABAYwh0AgMAQ7gAABIZwBwAgMIQ7AACBIdwBAAgM4Q4AQGCy/G35XPAjEtSst5pl0LdvX61e/f5EkX369NFrr72Wac0ybD9lGGNRNYuwxU/5WpTkijnooIOq9mdVryP9ta45YcKE3GuWZcrXvGqWQSXYBw8erAULFmjw4MFavXq1+vbtm1nN5HPWr1+/qv1Z1uzRo0fmNcvyGinjlK9ZTOdd1+Fe4e6aM2dObp/skr8olBd318knn5x7zbJM+Zp3zZBVgn358uXq37+/li9fviHgs+buuv7663Pffm6//fbg33+Y8jUb7tlM51334X7ccceltkMwa9as1HYW9tlnn9R2KJJ7XNXa6Jxbb701tZ2FPffcM7WdhZ122im1jc5ZuHBhajsUP/zhD1PbXVH34X7DDTektkNQRLg//vjjqe1QvP3226ltdM7o0aNT21l45plnUttZeOWVV1Lb6Jxx48altkPxjW98I7XdFXV/Qp0UfUdx0EEH6d57782tXt7MTBMmTGDK10BqhqxPnz5asWKF9t13X33nO9/RvvvuqxUrVqhPnz6Z1zYz9evXTy+//HLmtZI1e/TokdsHw7K8Rso05WsW03nXdbhXppOU1CrYs/qOJlmvbX9WkjWvu+663Gsmgz2vmm37Q6pZBq+99pr69u2rFStWaPz48ZKyP1s++Vwmgz2v7ScZ7KG+/xRRc/bs2bnULEJynJdeemmr/lqo+8PyTLlIzXqrWQavvfZaq/Wa9Z/BSeXYfsowxqJqFoEpXwEAQIcR7gAABIZwBwAgMIQ7AACBIdwBAAgM4Q4AQGDq+u/cJWZlomb91SyDXr16ae3atRvajY2Nam5uzrQm2082WK/ZYVa4diRXzKRJk6r2Z1WvI/21rvnlL38595rJmbxCnn2qe/fuudQsg0qwDxo0SNdee60GDRqktWvXqlevXpnVTD5n/fv3r9qfZc08ZoUrQtGvyxkzZuRSswjJ8XzpS1+q2t8VdR3uFe6uE088MfhZmY4//vjcay5cuLAUs08tWbIkyD2DIlSCfeXKlRowYIBWrly5IeCz5u5asGBB0LPCFaGo1+XIkSODXq9SNM6vfOUrzArX1rnnnpvaDsGFF16Y2s7CHnvskdoORds5xrOcc7xM7rrrrtR2Fvbaa6/UdhbynBXOzDZcDjnkkFbt0PZqkz+1Xa0dirPPPju13RV1H+5nnXVWajsEp59+emo7CytXrkxth6Ltz6Lm8TOpZXDYYYeltrPw9NNPp7azkOescJWfJ3V3DZy+uFU7tL3bCRMmpLZDMWfOnNR2V9T9CXVS9Il20qRJuc0eVNQMSV/+8pdznxWub9++uQZeUeu2e/fuevfdd3OvHaLGxkatWrVKe+yxh+bMmaM99thDq1atUmNjY+a1zUz9+/fXSy+9lHmtZM08Z4UrQlGvyxkzZpRiVrgvfelLzAqXlJxVZ/78+a36s67Xtj8ryZpXXHFF7jWTwR7y7FPJYA9tLyhvzc3N6tWrl1atWqWJEydKyv5s+eRzmQz2kGaFK0LRr8vzzjsvl5pFSI7zpz/9aav+Wqj7w/LMykTNeqtZBs3Nza3Wa9Z/Biex/WSF9ZodZoUDAAAdRrgDABAYwh0AgMAQ7gAABIZwBwAgMIQ7AACBIdwBAAhMXf+IjVSOqQHLMuViWWqWQUNDQ6v1aGZqaWnJtCbbTzZYr9lhytd2JFfMuHHjqvbXu+RYxowZU7U/y5pFTJ/Zkf5a12zv/9h8lWDv2bOnLr74YvXs2VPuroaG7N5uks/ZbrvtVrU/y5rJsYW0/RT9ujzttNNyqVmE5HhGjhxZtb8r6jrcK9xdp556apCf7CrcXd/85jdzn3KxiOkzi5ha8p577gl6+8lTJdjfeustDR48WG+99daGgM+j9jXXXJP79nP33XcHvf0U9bocO3Zs0OtVisY5Y8YMpnxtK88Z04qacnHq1Kmp7SwUMX1mEbbbbrvUNjqnqakptZ2FwYMHp7azsP3226e20TmXX355ajsUJ510Umq7K+o+3POc67yoKReL2NCLmD6zCG+++WZqG50zYsSI1HYWVqxYkdrOwhtvvJHaRucUsUNThKuuuiq13RV1f0KdFO1Rjxs3LuipAc1MY8aMyX3K1yKmz8xb5chL6If/8mJmWrdunbbZZhtdeOGFOuKII7Ru3bpcnlsz02677abnn38+81rJmg0NDZmfMFikol6Xp512WtDv61I0zpEjR9Z8nHW95558M164cGHV/nqXHMvixYur9mdZM8/pMzenv9Y12/s/Nl9LS8uGgP/a1762IdizDL/kc5YM9ry2n+TYQtp+in5dfv/738+lZhGS41myZEnV/q6o63CXyjE1YFmmXCxLzTJoaWlptV7z2Ktl+8kG6zU7TPkKAAA6jHAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACU/c/YlOG2YPKMitTWWqWwX777afHHntsQ3vIkCFatmxZpjXZfrLBes0Os8K1I7liRo8eXbW/3iXHMmHChKr9WdZsbGzMvWZH+uu1ZhlUgv2oo47STTfdpKOOOkqPPfaY9ttvv8xqJp+zHXfcsWp/ljU70l+Pin5dTpo0KZeaRUiO54QTTqja3xV1He4V7q4zzjgjyE92Fe6uk08+OfdZmRYvXlyKWeHyrhmySrDffPPN2n777XXzzTdvCPisubt+9rOfsf3UWFGvyxNPPDHo9SpF4zzppJOYFa6tr3zlK6ntEMyaNSu1nYWdd945tQ2kufLKK1PbWfjQhz6U2s7C1ltvndpG55x77rmp7VDMmTMntd0VdR/uP/nJT1LbISgi3F988cXUNpDm5JNPTm1n4bnnnkttZ+Gdd95JbaNzzjrrrNR2KM4+++zUdlfU/Ql1UvQdxejRo4OePcjMNGHChNxnhWtsbNTatWtzrZm30L7LK9qQIUO0aNEijR07VieddJLGjh2rRYsWaciQIZnXNjPtuOOOevXVVzOvlawZuqJel5MmTQr6fV2KxnnCCSfUfJx1He7uvmGju/XWW1v1hyI5xuuuu65Vfx41k8GeV822/SHVLINly5Zpv/3206JFi7Ro0SJJ2Z8tn3wuk8HO9tM1Rb8u58+fn0vNIiTHec0117Tqr4W6PyxfhtmDyjIrU1lqlsGyZctardes/wxOYvvJCus1O8wKBwAAOoxwBwAgMIQ7AACBIdwBAAgM4Q4AQGAIdwAAAlOTcDezeWb2VzNbnujrY2Z3mtkz8b871KIWAABIV6sfsZkv6WJJ1yT6zpR0t7ufb2Znxu3pNaq3Qeg/IiGVZ8rFstQsg7I8l2XYfliv2dnip3x1919JWt2me6ykq+P/Xy3p87WolZRcMUOHDq3aX++SY5k8eXLV/ixr9u7dO/eaHemv15plUFl/DQ0NuuCCC9TQ0NCqP8uaHe2v15p5K3q95vWeV4TkeEaOHFm1vyuy/M69n7tXZht5SVK/rAq5uy666KIgP9lVuLsmTpyY+5SLixYtCn76zDJM2Zm3hoYGrV+/XsOHD9f69es3BHzW2H6yUdR6zfs9rwjurhkzZtR8nLn8try7u5lVfeRmNkXSFEnq16+fmpqaNmvZQ4cOVVNTk5qbm9XU1KShQ4fqkUce2ezldEYeNaTo02tyjJMnT9a8efMyrd+7d+9WNXv37q01a9ZkPuZkzWRfaDXzqlFUzblz57Zar3PnztUZZ5wR5HNZhu0n7zEW8Z6XlFedkSNHthrnyJEjtWTJktrUr/yebVcvkgZJWp5oPyVp5/j/O0t6alPLGDZsmG8OSR4NwX3p0qUb9WVp4PTFmddwL2aM1Axn+ymipiRvaGhw9/fXa0NDQ3DPZRm2n7KtV/f6WreSHvJ28jTLPfdFkk6UdH78781ZFTKzDXvsoTIzTZ48OfcpXyt77HnWzFto3+VtCVpaWtStWzfNnTtXhx56qFpaWnKpy/aTjaLWa97veUUwM40cObLm46zVn8ItkHS/pI+a2QtmdrKiUD/czJ6RdFjcrilPfEeRDPZkf71LjmXevHlV+7OsmQz2vGp2pL9ea5ZBZf21tLTojDPO2BDsoT2XZdh+il6veb3nFSE5niVLllTt74panS0/3t13dvfu7j7A3a9099fc/VB339PdD3P3tmfT10TlEETIUwMWMUZqoivK8lyWYfthvWYny3HyC3UAAASGcAcAIDCEOwAAgSHcAQAIDOEOAEBgCHcAAAKTy8/PZqkMsweVYYxSecZZBt26dWv1wzWV35oHOoL3gq6r6z335AbwiU98omp/vUuO5aCDDqraH4IyzLBVFpVg79Wrly677DL16tVrwy/WAZuS9WxpZVHX4V7h7po7d27Qn+zcXXPmzAl6jFI5ZtgKXSXY16xZo4997GNas2bNhoAHOso9m9nSyqLuD8sfffTRG7Vvuummgh5NNo477riN2jfccEMmtTry6TiEF9umxhnCGIv0y1/+cqP2sGHDMqlVxHNZlu2nqHGedNJJG7WvuuqqTGoVIY/1Wvd77m2DPLRgl7RRkGcV7NLGswQOnL642gyAdW9T40TXfPrTn05t11IRz2VZtp+i3gvaBnlIwS7ls/3UfbhL0aeg6dOnB/2djJnp7LPPDnqMUjTOQw45JPhxhqyhoUHNzc3q3bu3nnzySfXu3VvNzc1qaAji7QY5MTOdd955vBd0Ul0flnf3DU/8gw8+2Ko/FMkx3nvvva36Q5IcZzBbzXQAABn1SURBVNt+1Jf169erW7duam5u1imnnCKJs+XRccn3gixmSyuLuv8oXYbZg8owRqk84yyD9evXt3ouCXZsDt4Luq7uwx0AALRGuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACExd/4iNVI6pAcswRqk84ywDnkugWHW95558A/nUpz5Vtb/eJcdy2GGHVe0PAVO+hqPynJmZzj///FZtAPmo63CvcHfNnj076D0Dd9e3v/3toMcoMeVrKMxMLS0tOuCAA9TS0kKwAzmr+3AfP358ajsEJ554Ymob2NLcdtttqW2gGjNrdalMIpW8oGPqPtwXLFiQ2g7B1VdfndoGtjRHHHFEahuopixTTueh7sNdij7tzZw5M+hPdWamc845J+gxSkz5Ggp3V0NDgx544AE1NDTwpgzkrK7DPfmG8atf/apqf71LjuWuu+6q2h+C9sYT2jjLoPKcubvOPPPMVm0A+ajrcJfKMTVgGcYolWecZcBzCRSr7sMdAAC0RrgDABAYwh0AgMAQ7gAABIZwBwAgMIQ7AACBYVa4OlCGMSIsbLNAsep6zz35BrL//vtX7a93ybF85jOfqdoPbEmS2+bMmTOr9gPIVl2He4W76/vf/37QewburrPPPjvoMSIs7q4RI0awzQIFqPtwHzVqVGo7BBMnTkxt17tNzQSF+rNw4cLUNoBs1X2433HHHantEFx77bWp7Xq3qZmgUH/GjRuX2gaQrboPdyna8zvttNOC3sszM82ZMyfoMSIsZqampia2WaAAdR3uyb26Rx99tGp/vUuO5Z577qnaD2xJktvm7Nmzq/YDyFZdh7tUjtmnyjBGhIVtFihW3Yc7AABojXAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABIZwBwAgMFsV/QA6a1OTUYTyc5dlGSfC0JFJYthmgezV7Z57WaYJTRtjSONEGDb1umSbBfJRt+EOAACqI9wBAAgM4Q4AQGAIdwAAAkO4AwAQGMIdAIDAEO4AAASGcAcAIDCEOwAAgcn852fNbJWkNZLWS3rP3YdnXRMAgDLL67flD3H3V3OqBQBAqXFYHgCAwOSx5+6SlpiZS/ovd/9x8kozmyJpiiT169dPTU1NnS7UlfvWQz1qhlWzDGOkZjj1Qqp56t1rtfbd9q8fdOYtVfsbu0uXHNpY88cjZTDOtjM21foiadf43w9KelTSp9q77bBhw7yzBk5f3On71kM9aoZVswxjpGY49UKrmbbcpUuXdup+XdHZ5Up6yNvJ08wPy7v7n+N//yrpJkmfyLomAABllmm4m1mjmfWu/F/SSEnLs6wJAEDZZf2dez9JN5lZpdZP3f32jGsCAFBqmYa7uz8naf8sawAAgNb4UzgAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABIZwBwAgMIQ7AACBIdwBAAgM4Q4AQGAIdwAAAkO4AwAQGMIdAIDAEO4AAASGcAcAIDCEOwAAgSHcAQAIDOEOAEBgtir6AQCh2n/2Er351rvtXj/ozFvavW67bbrr0Zkjc6vZ2XrIThHbD8JBuAMZefOtd7Xq/COrXtfU1KQRI0a0e9+0N+4sana2HrJTxPaDcHBYHgCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABIZwBwAgMIQ7AACBYeKYFMzKBACoR4R7CmZlAgDUIw7LAwAQGMIdAIDAEO4AAASGcAcAIDCEOwAAgSHcAQAIDOEOAEBgCHcAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIFhVjgAQGE6O7U202qnI9wBAIXp7NTaTKudjsPyAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABCbzcDezz5rZU2b2BzM7M+t6AACUXabhbmbdJF0i6QhJ+0gab2b7ZFkTAICyy3rP/ROS/uDuz7n7O5KulzQ245oAAJRa1hPH7Crp+UT7BUkHJG9gZlMkTZGkfv36qampqdPFunLfzV1mc3PzJuvl+Xi64tS712pt+5MytTtBQ2N36ZJDG+ui5qbqZVFTKmb76WzNLLatrJbL9pPN9lPEe4GU/zbbe+8zNeTqlG+Jr27vflJTU51sP+6e2UXSOElXJNoTJV3c3u2HDRvmnTVw+uJO37czy1y6dGmn79tZWSxzU8tNG2dXHk/eNTd1v7xrZrX9FPFcpgllm2X7Cee9oIiaWW0/kh7ydvI068Pyf5a0W6I9IO4DAAAZyTrcfydpTzPbw8y2lvRFSYsyrgkAQKll+p27u79nZl+TdIekbpLmufuKLGsCAFB2WZ9QJ3e/VdKtWdcBAAARfqEOAIDAEO4AAASGcAcAIDCEOwAAgSHcAQAIDOEOAEBgCHcAAAJDuAMAEBjCHQCAwGT+C3W1sv/sJXrzrfQ589qbMm+7bbrr0Zkjs3hYNbepcYYwRoSFbRbY8tRNuL/51rtadf6R7V7f1NSkESNGVL2uvTeXLVHaOEMZI8LCNgtseTgsDwBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABIZwBwAgMIQ7AACBIdwBAAgM4Q4AQGAIdwAAAkO4AwAQGMIdAIDA1M3EMUXovfeZGnL1me3f4Oq0+0pS+xPdIHxFbD+drcn2uuUpy/tPUdts6sRFt7c/k2G9INxTrHni/E7NdiUx4xWK2X46W5PtdctTlvefIrbZtBlGB515S+r19YLD8gAABIZwBwAgMIQ7AACBIdwBAAgM4Q4AQGAIdwAAAkO4AwAQGMIdAIDAEO4AAASGcAcAIDCEOwAAgSHcAQAIDOEOAEBgmBUOhUy5mHfNTdbLoCayw9S22WC9ZqOI9x/CHYVMuZh3zbR6WdVEdpjaNhus12wU8f7DYXkAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABKZuJo4py6xezMqEelOGbbao95/USUNub/+67bbp3ql6RenMOOttjHmrm3Avy6xezMqEelOGbbaI95+0eoPOvCX1+npSlnHmjcPyAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABCazcDezWWb2ZzN7JL6MzqoWAAB4X9Y/P3uRu1+YcQ0AAJDAYXkAAAKTdbh/zcyWmdk8M9sh41oAAEBdPCxvZndJ6l/lqm9LukzSHEke//s9SZOrLGOKpCmS1K9fPzU1NbVbL+265ubmTt83TWenXGzs3vma7d0vqzEWVbMz6zaL9SqFtf3kvV6lcmyzRWw/nX08WSy3iDFmudy8a+a+/bh75hdJgyQt39Tthg0b5u0ZOH1xu9e5uy9durTT9+2MLJa5qeVmNcYiaqYp4vkKZfspomYZttmybD9leC8oomZW24+kh7ydPM3ybPmdE82jJS3PqhYAAHhflmfL/4eZDVV0WH6VpK9mWAsAAMQyC3d3n5jVsgEAQPv4UzgAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACk+XPz9Zc6mxXUrszXm23TfcMHk12OjOrV1fHWETNvJVl+ylCGbbZsmw/ZXgvKELu2097M8oUcUmbFW5T8p49KJTZiqhZTM0yjJGa4dSj5pZZU0XMCgcAAIpBuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABIZwBwAgMIQ7AACBIdwBAAgM4Q4AQGAIdwAAAkO4AwAQGMIdAIDAEO4AAASGcAcAIDCEOwAAgSHcAQAIDOEOAEBgCHcAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABIZwBwAgMIQ7AACBIdwBAAgM4Q4AQGAIdwAAAkO4AwAQGMIdAIDAEO4AAASGcAcAIDCEOwAAgSHcAQAIDOEOAEBgCHcAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwXQp3M/uCma0wsxYzG97muhlm9gcze8rMRnXtYQIAgI7aqov3Xy7pGEn/lew0s30kfVHSYEm7SLrLzPZy9/VdrAcAADahS3vu7v6Euz9V5aqxkq5397fdfaWkP0j6RFdqAQCAjsnqO/ddJT2faL8Q9wEAgIxt8rC8md0lqX+Vq77t7jd39QGY2RRJUySpX79+ampq6vSyunLfeqhHzbBqlmGM1AynHjXrq+Ymw93dD+vEcv8sabdEe0DcV235P5b0Y0kaPny4jxgxohPlJN1+izp933qoR82wapZhjNQMpx41665mVoflF0n6opn1MLM9JO0p6cGMagEAgISu/inc0Wb2gqQDJd1iZndIkruvkHSjpMcl3S7pVM6UBwAgH136Uzh3v0nSTe1cd46kc7qyfAAAsPn4hToAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACY+5e9GPYYPjw4f7QQw916LZmlnp9FuMqQ81N1SuiZgjrtSw12X6omWW9ImpuyevVzB529+HVrqvbPXd3b3VZunRpq3bWNdvWC6XmptZrETWzUHRNtp/8amah6JpsP/nVzEIeNes23AEAQHWEOwAAgSHcAQAIDOEOAEBgCHcAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYAh3AAACQ7gDABAYwh0AgMAQ7gAABIZwBwAgMIQ7AACBMXcv+jFsYGavSPpjJ+++o6RXa/hwtrR61AyrZhnGSM1w6lFzy6w50N13qnbFFhXuXWFmD7n78FDrUTOsmmUYIzXDqUfN+qvJYXkAAAJDuAMAEJiQwv3HgdejZlg1yzBGaoZTj5p1VjOY79wBAEAkpD13AACgOg13M/tnM1tuZivM7LS4b76ZrTSzR+LLfTWs93kzczP7WJv+oXH/Z2tVK62umTWY2Q/jsT9mZr8zsz1qVGt9vN4eNbPfm9knE9ftbmZLzOwJM3vczAbVuOaKuO43zawhvm6EmS2uRZ12alYuZ5rZTDM7r83thprZExnVHGRmW5vZVfHz+KiZjahFrQ7UzWq9NrdpTzKzi9v0PWJm19eonpvZdYn2Vmb2SnJs8etnmZk9Gb9mxnWx5gAzu9nMnjGzZ83sB2a2dXzdQWb2YFzrSTOb0pVaiZqDzGx5m75ZZnZ6/P/KuM+vRb1N1TSzfzKzB+Ln8gkzm1WDekvNbFSbvtPM7Lb4vaGyjj9sZs+Z2Qe6UOuiSmbE7TvM7IpE+3tm9q/x9vX1RP/FZjaps3XjZZiZ3WtmRyT6vpAy/su6Uk/uXlcXSftKWi5pW0lbSbpL0kckzZc0LqOaN0j6taTZbfrnxv1X51FX0nhJCyU1xO0BknaoUa3mxP9HSfplot0k6fD4/70kbZtBzQ/Gz2VlrCMkLc5gnTZX6dtL0nNt+s6X9N0Ma54q6arE2B+uPK8ZjzWX9SppkqSLE+29JT0m6c+SGmtRT9IjkraJ20fE7cVxe39Jf5C0R9zeQ9KzkoZ1sp5JelDSSXG7m6QrJV0gqb+kP0n6eHzdjvHzeWQNxjlI0vI2fbMknZ4Y92/isVmNnst2a0p6StL+iXWwTw3qTam8FhJ9v5X0KUmXSjor7rtd0vgu1hon6cb4/w3x83R/4vr7Jf2TpJfj7WfruP9iSZNqMNZ9JT0hqaei99JnJH21vfF3pVY97rnvLekBd/+7u78n6ZeSjsmqmJn1knSQpJMlfTHRb5K+oOhN7HAz65lD3Z0lvejuLZLk7i+4++u1rBv7gKTX48exj6St3P3OuGazu/+91gXd/a+KXuRfi9dtbtz9aUmvm9kBie5jJS3IsOw+ku6J6/9V0huScv3b2pyNl3StpCWSxtZombdKOjKx/OTzdbqkc919pSTF/54r6ZudrPUZSevc/ap4eesl/YukyfEy57v77+PrXpX0LUlndrLW5hgv6QeKPlwcmEO9D0p6UYrWgbs/XoNlLpR0ZGIPfZCkXRTt2Jwl6Stm9i1F70NdfU3ep/fX02BFO4przGwHM+uhKF9WS3pF0t2STuxivVbcfbmkX0iaLum7kq6R9DO1P/5Oq8dwXy7pYDPra2bbShotabf4ugsShyD/u0b1xkq6PQ6A18xsWNz/SUkr3f1ZRXu2R7Zz/1rWvVHS5+Lxfc/M/qGG9baJl/ukpCskzYn795L0hpn93Mz+18wuMLNuNay7gbs/p2hv4INZLD+2jbU+VH1c3L9A8YcoM/snSavd/ZkMat4U9z0q6aj4sOoekobp/e24VqrVzUqr9Srp39pcf5yk6xWt5/E1qnm9pC/GH6z3k/RA4rrBivbKkh5S9KGqMzZanrv/TVGofridWoM7WatD4nEfpigsarle01wk6Skzu8nMvlqLnRp3X63oqEjlcPUXFe1du7u/oego2nmKjnZ1tdZfJL1nZrsreg+/X9F2c6CiD9ePSXonvvlcSadn8H43W9KXFI33P9LG35UidRfu7v6EopW+RNFhmkckrY+vPsPdh8aX42tUcryiNxHF/47fRH+tbLR8d39B0kclzZDUIuluMzu0RvXeitfbxyR9VtI18R70VpIOVrQn9I+SPqToaEW9eiuxjQx19xvi/hskjbPoO/8vqrZ77cmaR8d98yS9oCgEvq9oj2J9ewuoYd2stFqvivZKJElmNlzSq+7+J0V7Q/9gZn26WtDdlyk6hDxe0V58iNp7g3dJYyQtdfe3JP0/SZ+vURC1W9Pd/01RCC5RFFC316CelPhwrY1ff0coOkze2Q9mbd2nKNgr4X5/ov2byo3inY0HFI2zZtx9raL3m2vd/e24O238nVJ34S5J7n6luw9z908pOnz8dBZ14jegz0i6wsxWSTpD0rHxC+j/Svpu3P8jSZ81s94Z1zV3f9vdb3P3MxQdZvx8LWomufv9ir433ElRAD3i7s/FX4P8j6SP17qmJJnZhxQF3F+zWH4ad39e0kpJn1b03N6Qfo8u13vP3f8lDsOxkrZXRtvxFmC8pI/F2/Kzir72+b81WvYiSRdq4zfDxxUdDUkapujDVGdstLz4xK7dJa1qp9aKTtZKek3SDm36+ij6HfLxkg6L1+vDkvoqet/Isqbc/Vl3v0zSoZL2N7O+Nah5s6RDzezjis7peViSzGyMpO0UnQd0QXy0tqt+oyjIhyg6EvxbRXvun1QU/EnnKjqEXuuvClviS0XV8XdFXYa7mX0w/nd3Rd+3/zSjUuMUfboa6O6D3H03RQHwbUnL3H23uH+gok/Otdo7aq/uwWa2ixSdOa/oUGRnJ9ppl0Vn53dT9CL/naTtzawyOcFnFL3R1brmTpIuV3QSVlE/vrBA0WHH5+KjJJkxs23NrDH+/+GS3qvR95dblHg7PVbSkHhbHqToK6daHemap+gkzMfa9F8oaUb8/WXle8zTFJ0A1xl3S9rWzE6Il9dN0vcUnch7gaRJZjY0vq6voqOL/9HJWhu4e7OkF83sM/Gy+yg6svaIoiNquyfW66mqwXpNqXmvmR2ZOCdmT0Ufxt+oUc2lip7PBXHdbST9p6RT4+f3ZkXvvV11n6KjHqvj8wZWK/pwfaDahLu7P6no/e5zNajbrmrjr8VC6+6i6ESDxxV9b3lo3DdfUQA+krhs3cU6SyV9tk3fNyRdJWlqm/6jJN1Wo/G1V3elok/oy+PLPEk9a1RzfWK9ParEmb6SDpe0TNH3UfO7ul6r1FwR1zxd7/8lwAhJbyk6clC5HFjjcT4i6fzEdTtKerftc1uDmtXOWh+k6MzjJxT9lcDAWtZMqZvVeq16tryiIyG/bXNdN0kvSdo5g7EtTrSPibfZpxV9j/p/ujjG3RR9v/2MoiMQP5LUI77uU4o+CD8ZP6+n1PB53Cd+T6hss8crOtHr+ja366PoRLAeWdSM+6+P1+cjio6CjKrhOD+v6CuBj8XtcyXNTVzfW9JzkvbsYp1ukv4m6d8TffMlPRX/f5ASfy2g6C8vWlSDs+UTy5yl+C8e2ht/Vy/8Qh2A4Fn0d+AHKAqjdzZ1e6DeEe4AAASmLr9zBwAA7SPcAQAIDOEOAEBgCHcAAAJDuAMlYGb9zex6i2Yze9jMbjWzvbqwvFvNbPtaPkYAtcPZ8kDg4h8duU/R7IWXx337S/qAu6dOThHf1zyerKhtezMeQzePJlsBkAP23IHwHSLp3UqwS5K7Pyrpf83sbjP7vUXzyo+VNszn/ZSZXaP3J2pKtnczs1VmtmN8+wkWzWX+iJn9V+X3zc2sOZ7g6FHlM2MZgBjhDoRvX208a5kkrZN0tLt/XNEHgO+1+WnRS919sKKfON7QdvcNP3lsZnsrmvHt/3g0Ycx6Rb+gJkmNiqZn3t/d781iYACq26roBwCgMCbpXDP7lKKf19xVUr/4uj+6+28Tt23brjhU0SQpv4s/F2yj9yf+Wa9ozgUAOSPcgfCtUDQZUVvHK5r5b5i7vxvPLlaZn3ttm9u2bVeYou/yZ1S5bh3fswPF4LA8EL57JPUwsymVDjPbT9JASX+Ng/2QuL257pY0LjFTYx8z68xyANQQ4Q4EzqM/iTla0dzfz5rZCknnSbpV0nAze0zSCYpmNNvcZT8u6TuSlpjZMkl3Stq5Zg8eQKfwp3AAAASGPXcAAAJDuAMAEBjCHQCAwBDuAAAEhnAHACAwhDsAAIEh3AEACAzhDgBAYP4/uo7rEgzjxuUAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAfcAAAILCAYAAAD1zdXYAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzdf3hU5Zk//vedHyQ0YSvBbmg1EFr72WJIul38bD8GWkkVoq4N1rUtrr+LuIQSbcXvxpR2tfWDyGVDL9Sa7CdStP4IFrdUQFOIIbGlae1q3QXSuMIWNG6BLgZqk5qQkPv7x8zEmZCckMx5noc5835d11zwnMmc+zxnzsw955z7PEdUFURERBQcKa4XgIiIiPzF5E5ERBQwTO5EREQBw+ROREQUMEzuREREAcPkTkREFDBM7kSGiIiKyHmul8MlEZknIm97PJ9Q60hEGkTkRtfLQTQaJncKPBE5KCLviUiXiBwTkedFJM/1ckWIyE0issv1ciQ6EfmwiKwXkUMi8icReV1Evi0iWX7FUNXLVPVxv+ZHZAqTOyWLz6tqNoAPAzgC4CHHy2OMiKS5XgbbRCQHwC8BTARwoapOAjAfwFkAPjaO+aUNaYuIjPv7MhnfE3KLyZ2Siqr2AHgWwPmRaSLyQRH5oYj8j4i8KSLfFJEUEckRkbdF5PPhv8sWkf0ickO4/ZiI1IpIY3hP8SURmT5cXI8YMwHUArgwfGTh+AivnyEiPwvHeVFEvi8iT4afyw8f3l4sIm8B2Bme9zfDsf4Qjv3B8N+fcqg8fHTjkvD/7xGRZ0XkmXC834jIJ6P+9iMi8q/hvhwQkduinpsYXi/HROS3AP73abwtl4vI70TkqIg8EF72CSLSKSKFUfP+SxH5s4h8aJh53AHgTwCuU9WDAKCqHap6u6ruDr9+nYh0iMi7IvKqiHwmat6RPj8pIu8CuElEWkRklYj8AsCfAXw0PO2WqNd9RUTaw/3dHv3+h9+Tr4rIPgD7TmM9EPmGyZ2Sioh8AMCXAfwqavJDAD4I4KMALgJwA4CbVbUTwFcA1InIXwL4HoB/V9UfRr32WgD3AjgbwL8DeGqE0CPFaAewFMAvVTVbVc8a4fVPA/g1gCkA7gFw/TB/cxGAmQBKAdwUfpSEY2YDeHiEeQ9nIYBNAHLCsX8iIunhvdetAP4DwDkALgbwNREpDb/uboT2lD8WXo7TOT/9BQAXAPibcNyvqOoJABsBXBf1d9cAaFLV/xlmHpcA+LGqDnjE+TcAfx3Vp00ikjmkz88itLcfeR+vB3ArgEkA3oyemYgsBPANAFcB+BCAnwOoHxLzSgCfRtSPSSIrVJUPPgL9AHAQQBeA4wD6APweQGH4uVQAJwCcH/X3/wigJar9EIA9AP4bwJSo6Y8B2BjVzgZwEkBeuK0AzhstBkJJeJfH8k8D0A/gA1HTngTwZPj/+eFYH416vgnAsqj2X4X7ngZgHoC3h1lHl4T/fw+AX0U9lwLgEIDPIJSo3hry2ioAG8L//x2AS6Oeu3VorCGv1SF/vwyhBI5ILAASbr8C4EsjzGcfgKVj3C6OAfhkVJ9/NuT5FgDfGWbaLeH/NwBYPGQ9/RnA9Ki+fc719s9Hcj64507J4koN7RVnAlgO4CURmYrQHnc6YvfK3kRorzTi/wGYBeAxVX1nyHw7Iv9R1S4AnQA+MuRvTieGl48A6FTVPw8Xd4RpHxkmXhqA3NOMGd2vAQBvh+c5HcBHROR45IHQ3mtkvh8Zshwxe7ujxQr//UfCcV9GKFnOE5FPIPRDacsI83gHoXqKEYnIneFD6H8ML/cHEXpvhlsOr2kR0wGsi1oPnQAEse+r1+uJjGFyp6SiqidV9ccI7WHPBXAUoT3a6HPl0xDaS4eIpCKU3H8IYJmcetnWYNW9iGQjdMj390P+xjMGQnt4Xg4ByAmfUjglbnT3ov7/+2Hi9SNUTNgNYHBe4T4OPY8d3a8UAOeG59kB4ICqnhX1mKSql0cta/SyTRulb0P7Mg2x6+9xhA7NXw/gWQ3VTAznRQBfGKnoLXx+/Z8AfAnA5PAPvT8ilIwjhnsfvN6bDgD/OGRdTFTV1tN8PZExTO6UVCRkIYDJANpV9SSAHwFYJSKTwgVRdyB02BsI7ZUqQufeHwDww3AyjLhcROaKyASEzr3/SlVj9tZOI8YRAOeG53EKVX0ToUPS94QLzS4E8PlRuloP4OvhQrxsAPcBeEZV+wG8ASBTRP5ORNIBfBNAxpDXzxaRqyRU5f01AL0I1Sn8GsCfRKQyXDyXKiKzRCRSOPcjAFUiMllEzgVQMcpyAsD/F/77PAC3A3gm6rknETonfx1CP7BGshbAXwB4PFLUJiLniMhaESlC6Jx5P4D/AZAmIv8c/vt41CLU14JwvA+KyBfjnCeRL5jcKVlsFZEuAO8CWAXgRlVtCz9XgdDe7O8A7EKo2OoHIjIboSR8QzhBr0Eo0d8VNd+nESoi6wQwG7EFYNGGjRF+bieANgCHReToCK+/FsCFCB1+/r8IJcBej/7+AMATAH4G4ACAnvAyQFX/iNC57UcROnrQjdBh92jPIVR4eAyhvearVLUvvB6uQKgw7QBCRyUeRegQNwB8G6FD6wcA7Agvw2ieA/AqQgWJzwNYH3ki/EPpNwit95+PNAMNFT8WI3SE5GUR+RNCdQd/BLAfwHYAP0Xoh82b4fUR1yFzVd2M0DaxMVxhvxfAZfHMk8gvkUIVIhojEXkMoWKxbzqI/QyA11X1bgPzvgfAeao60g8Vq0TkBwB+72I9EyUqDqxAlADCh707EdojXoDQZVv3O10oC0QkH6FLzT7ldkmIEgsPyxMlhqkIXYbVBeBBAOWq+prTJTJMRO5F6FD3A6p6wPXyECUSHpYnIiIKGO65ExERBQyTOxERUcAwuRMREQUMkzsREVHAMLkTEREFDJM7ERFRwDC5ExERBQyTOxERUcAwuRMREQUMkzsREVHAMLkTEREFDJM7ERFRwDC5ExERBQyTOxERUcAwuRMREQUMkzsREVHAMLkTUVxEZJ6IvO16OYjofUzuRAEgIi0ickxEMsbx2oMi8p6I/ElEjotIq4gsFRF+PxAlKH54iRKciOQD+AwABVDm8XepQ9ppUc3Pq+okANMB3A+gEsB6v5eViOxgcidKfDcA+BWAxwDcGJkoIo+JSI2IvCAi3QBKwnvplSKyG0D3kAQPVf2jqm4B8GUAN4rIrPC8MkTkuyLylogcEZFaEZk43MKIyF0i8l/hIwG/FZEvhKdPEJFOESmM+tu/FJE/i8iH/F0lRMmNyZ0o8d0A4Knwo1REcqOe+wcAqwBMArArPO0aAH8H4CxV7R9uhqr6awBvI3REAAjtzf8vAH8N4DwA5wD45xGW57/Cr/sggG8DeFJEPqyqJwBsBHBd1N9eA6BJVf/ntHtLRKNicidKYCIyF6FD6T9S1VcRSqz/EPUnz6nqL1R1QFV7wtMeVNUOVX1vlNn/HkCOiAiAWwF8XVU7VfVPAO4DsGi4F6nqJlX9fTjmMwD2Afjb8NOPA7gmPE8AuB7AE2PrNRGNhsmdKLHdCGCHqh4Nt59G1KF5AB3DvGa4acM5B0AngA8B+ACAV8MFd8cB/DQ8/RQicoOI/HvU384CcDYAqOrLAP4MYJ6IfAKhowBbTnN5iOg0pY3+J0R0Jgqf8/4SgFQRORyenAHgLBH5ZLitw7x0uGlD5/2/EUruuwAcBfAegAJV/e9RXjcdQB2AiwH8UlVPisi/A5CoP3scoUPzhwE8G3VEgYh8wuROlLiuBHASQCGAE1HTf4TQefgxE5G/APBZAOsAPKmqe8LT6wB8T0SWq+ofROQcALNUdfuQWWQh9OPhf8KvuxmhPfdoTwL4DwB/QuiwPBH5jIfliRLXjQA2qOpbqno48gDwMIBrMbYf71tF5E8IHbJfCWAtgJujnq8EsB/Ar0TkXQAvAviroTNR1d8CqAbwSwBHEPrh8Yshf9MB4DcI/Qj4+RiWkYhOk6iOeoSOiMhXIvIDAL9X1W+6XhaiIOJheSKyKjzozlUAPuV2SYiCi4flicgaEbkXwF4AD6jqAdfLQxRUPCxPREQUMNxzJyIiChjfkruIpIrIayKyLdyeISIvi8h+EXlGRCb4FYuIiIhG5ttheRG5A8AFAP5CVa8QkR8B+LGqbhSRWgD/oao1XvM4++yzNT8/f1zxu7u7kZWVNa7XJkI8xgxWzGToI2MGJx5jnpkxX3311aOqOvxNl1Q17geAcwE0AfgcgG0IjUZ1FEBa+PkLAWwfbT6zZ8/W8Wpubh73axMhHmMGK2Yy9JExgxOPMc/MmABe0RHyqS977iLyLIDVCN156k4ANwH4laqeF34+D0CDqg4dqQoicitCN6VAbm7u7I0bN45rGbq6upCdnT2u1yZCPMYMVsxk6CNjBiceY56ZMUtKSl5V1QuGfXKkrH+6DwBXAHgk/P95CO25nw1gf9Tf5AHYO9q8uOfOmMkSMxn6yJjBiceYZ2ZMeOy5+zGIzRwAZSJyOYBMAH+B0LjUZ4lImobuF30uAM8bThAREZE/4q6WV9UqVT1XVfMRur/zTlW9FkAzgKvDf3YjgOfijUVERESjM3mdeyWAO0RkP4ApANYbjEVERERhvo4tr6otAFrC//8dgL/1c/5EREQ0Oo5QR0REFDBM7kRERAHD5E5ERBQwTO5EREQBw+ROREQUMEzuREREAcPkTkREFDBM7kREREEz0qDzLh7juXFMYWGhAhh8FBYWjnkeYxEdK/IwbcGCBSoiCkBFRBcsWGA8ZlpaWkwf09LSjMd0sW7z8vJi4uXl5RmNZ3t7VVXNysqKiZmVlWU8ZoTNm3C46GdOTk5MzJycHKPxXHxGIt89kYeIGI/59NNPa0FBgaakpGhBQYE+/fTTxmO6WLfLly/XjIwMBaAZGRm6fPnyMb0eHjeOcZ7Qox9jTe6RL8qysjLdvHmzlpWVGf3CjH7T/+mf/snKRrBgwQIFoOXl5bp161YtLy9XAEYTfCSxT548Wevq6nTy5MnGE3z0ulyxYoWVdRtJ7MXFxbpp0yYtLi42muBtb6+q7ye8/Px8feKJJzQ/P99qgreV3F30M5LYCwoKtL6+XgsKCowmeBffP5HEnpmZqQ8//LBmZmYaT/BPP/20zpgxQ3fu3KmNjY26c+dOnTFjhtEEH/3D5f7774/5QWPK8uXLNS0tTaurq7WhoUGrq6s1LS1tTAk+sMk98kWp+v6XSOQL04ToNzsSz8aHq7y8PCZmeXm50Q9XJLFHx4wkeJMxba/bSGKPjhlJ8Kbi2dxeIzHz8/NjYkYSnw22kruLfkYSe3TMSII3Fc/FZyQzMzMmZiTBm1JQUKA7d+6Miblz587BdW1C9A+WSMxIgjclIyNDq6urY2JWV1drRkbGac/DK7kn/Dn39evXe7b99thjj3m2/aaqWL16dcy01atXh36ZGfTSSy95tk149NFHPdsmPPvss55tv9neXgHgxRdf9GwHhYt+vvDCC55tv9n+/gGAlpYWz7bf2tvbMXfu3Jhpc+fORXt7u9G4DQ0Nnm2/9fb2YunSpTHTli5dit7eXl/mn/DJffHixZ5tv910002ebb+JCKqqqmKmVVVVQUSMxr3ooos82ybccsstnm0Trr76as+232xvrwBwySWXeLaDwkU/L7/8cs+232x//wDAvHnzPNt+mzlzJnbt2hUzbdeuXZg5c6bRuJdddpln228ZGRmora2NmVZbW4uMjAxf5p/Qyb2wsBBbtmzBwoULcfz4cSxcuBBbtmxBYWGh0bgigoaGBuMJFgDmz5+PmpoaLFu2DF1dXVi2bBlqamowf/58YzHT0tJw7Ngx5OTkYP/+/cjJycGxY8eQlubrTQSHJSLYtm2blXWbl5eH1tZWzJkzB0ePHsWcOXPQ2tqKvLw8I/FcbK9ZWVk4ePAgZsyYgbfffhszZszAwYMHkZWVZSymCy76mZOTg7a2NsyaNQuHDx/GrFmz0NbWhpycHGMxAbvfPyKCnp4eTJw4EW1tbZg4cSJ6enqMxl65ciUWL16M5uZm9Pf3o7m5GYsXL8bKlSuNxQRCR0lTUlLw8ssvIyUlxfjR0SVLlqCyshJr165FT08P1q5di8rKSixZssSfACMdr3fxGE+1vO0K2ehYMHy+K8JFtbyLfrqImZKSEhMvJSXFaDwXVyG4qHaOsFktnwzbbDL0UTX+KvLxcNHPeK/WQVDPuZeWlqK7uxvl5eXYunUrysvL0d3djdLSUiPxon+tRh8qN/0Levv27RgYGEBzczMGBgawfft2o/FSU1MBANnZ2aipqUF2dnbMdBMi6zAlJQUPPPAAUlJSYqabMG3aNAwMDKC4uBibNm1CcXExBgYGMG3aNGPx+vv7Y+L19/cbiwcARUVFUFWUlZVh8+bNKCsrg6qiqKjIWEwXXG6z6enpWLduHdLT02Omm4oHAN/85jeHnW4y5qpVq6zErK+vx/PPP4+GhgY0NjaioaEBzz//POrr643FtP1eAqH81dHREZO/Ojo6/MtfI2V9F4+x7rnbriSHg2rVaDYrj7Ozs2NiZmdnG6/Kjew1R2JG9qpNxrRdLW8zXiSm7Qr9aEHfZtPT02NipqenB65a3nZMV9XyNt9LVX/yF4K6564OKsmffPJJz3ZQuKiW37Fjh2fbBNvV8rbjAW4q9F1wsc02Nzd7tv22ceNGz7YJ27Zt82z7zVW1vO330nT+Sujk7qKS/LrrrvNsB4WLavkFCxZ4tk2wXS1vOx7gpkLfBRfbbElJiWfbb4sWLfJsm3DFFVd4tv3mqlre9ntpOn8ldHJ3UUkOhN6UHTt2WKlWdSElJQVdXV2YNGkSXn/9dUyaNAldXV2D58FNGRgYQGpqKl555RWkpqZiYGDAaDzb1fK24wHuriixzdU229fXhwkTJmD37t2YMGEC+vr6jMYDQt8/TU1NVr9/RAStra1WYrqqlrf9XhrPXyMdr3fxGE+1vO2xwaNjwfC5p4hkGWc5GWLa3l5VdbDqOPIYywhY48VtNhjxXMV0cQ8GF/00WS3vPKFHP8aa3P0Ym3csIm+AzfGHXYyz7HJs+fT0dF23bt1gMYvJdesiZoStQjMX49m72GZt3ydA1f549tFJ4O6777aShKJj2Lrng4v7abjoJ8eW9+DH2LxjEUns0fFMjz/sqnLUxdjytqtVXcSMsFlFbrta3tU26+JKBJvj2UcnmyBXy7u6n4btfnJseQ+mx+Ydju3xh11VjiZD5bGrmLbZrpZ3tc26uBLB9nj2Lvpo+54Pqm7up2G7nxxb3oPpsXmHY3v8YVeVo8lQeewqpm22q+VdbbMurkSwPZ69iz7avueDq/tp2O4nx5b3YHxs3mGo2h1/2EXlqKux5V1UHruIaZOLankX26yLKxFcjdsvImhpabFeLW/rng+uroIC7PaTY8uPIicnJ6b4IScnZ8zzGIvoWDB8TibCRYW1i34mQ0wXVeS2x89XZbV8UOK5imn7e13VTT/jvSoAQS2os10JHP0mLFu2zMpG4KLaOXLpVG5urm7YsEFzc3MVMHsJVfS6/NrXvhbIqlwXVeSRL8mCggKtr6/XgoICa1+WqnYLByOPVatWWdl+XFbLV1VVWeljdIzvfOc7gfxcqr7fT5tXQrFa3rtjViuBo99sm9WqtqudI4k9OmYkwZuMaXvd2q7KdVVFHpl/JGYkwdtgO7lHx7Tx2WS1vP9cVcvbvhKK1fKjsF0J/OCDD3q2TXAxNnhLS4tn24ThiktMUrVbleuqivyFF17wbAeF7THQAfvV8i7ubfGTn/zEs+0325/LCNtXQrFafhS2K4Fvu+02z7YJLsYGnzdvnmfbhOE2dJNsV+W6qiK//PLLPdtBYXsMdMB+tbyLe1tceeWVnm2/uaqWt30llPGrvUbapXfxGO8596EPG+fchz5Msd1H1VOHK408bJ1zt7VuI+f2hj5MnnOPHgUPCA2iY+Oc+9CH6XPuy5cvH9yOMjIyjI0aGeFi+4mccx/6sHHO3VYfk+Fzqeqmn8uXL1cR0dTUVAWgqampKiK+nXNP6D33N954Y0zTE1FbW9uYpvthpMNCJgcHcmGkgXlMDdizevVq9PX1ITs7GwCQnZ2Nvr6+Uw5B+snFe1lRUYHa2lrcd999aGhowH333Yfa2lpUVFQYiznSXp3Jvb2cnJwxTafTc+jQoTFNpxGMlPVdPMZTUGez8AuOClqys7NjYmZnZxuPGblcKhIzcjmVyZipqakxMSO/aE3GtL39uCiOtFn0pWp/WGjVUD8zMzNjYmZmZhpftzaHvHX1/eMipovPie1+sqBuFLYLv1wU7bgYCnbHjh2ebROampo82ybY3n5cFEfaLvpyMSw04KYI1PZwsN///vc92yY89thjnm0TXHxObPeTBXWjsF345aJox8VQsAsWLPBsm3DxxRd7tk2wvf24KI60XfTlYlhowE0RqO3hYL/61a96tk246aabPNsmuPic2O4nh5/1kJGRgSNHjmDq1Kk4ePAgpk6diiNHjhj/EhERtLa2WhmiMCUlBV1dXZg0aRJef/11TJo0CV1dXUhJMfvWDQwMIDU1Fa+88gpSU1MxMDBgNB4AnDx5EmlpaXjttdeQlpaGkydPGo1ne/txMRSsiyFSXQwLLSLo6enBxIkT0dbWhokTJ6Knp8foZ9TFkLdAqK8//vGPrQ8/29DQYCWmi89JhM1+mv6ciBq+dnAsLrjgAn3llVfG9Jrh3gSTfbIdjzGDFTM7Oxvd3d2D7aysLHR1dRmLB+CUH2cpKSnGfziVlpaisbERqgoRwfz587F9+3ajMZNh+0mGPgJuPicu+llUVIQ9e/YMtgsLC7F79+7Tfr2IvKqqFwz3XELvuU+bNg0AUFxcjE2bNqG4uDhmut+i3/wbbrhh2Ol+s91H4P3+pKenY926dUhPT4+ZbjImgJiqahsxbfWztLQU3d3dKC8vx9atW1FeXo7u7m6UlpYaiReJOTAwEBNzYGDAaMz6+nrs27cPTU1NaGxsRFNTE/bt24f6+npjMSPv3eTJk1FXV4fJkyfHTDfB9vYTPd9LL7102OkmYy5atMhKTBefk+j+RB+ON9nPiooKtLe3o7q6Gg0NDaiurkZ7e7t/V5WMVGnn4jGeavlkqFa12cdIzPT09JiYkeuzTcZ0sW5t9tPFsJouYroaZnfy5MkxMSdPnhyo7cfVZ8R2TFfDz9ruJ6vlR2G7WvXee+/1bJtgu48A0Nzc7Nk2wUUlsM1+qtofVtNFTFfD7Lq4qsT258RFodk3vvENz7bfXGyzAHDfffd5tv1m/KqSkbK+iwf33IePyT13czG55+4/7rkH6/vHdkzuufuz5+48oUc/xprcI/c5Ly4u1k2bNg0mPVP3O4+82QD0hhtuiGmbYruPqu/3Mz09XdetWxczZKrpmAC0oqLCyrq13U8Xt7J0EdPFrW3T0tIGE3xdXd1gYk9LSzMW0/b2E/2ZuPTSS61+RgDookWLrMR0ectXAHrTTTdZ6afpW74mfLW87UrgZKlWZUwzXFSuu1iv9fX1WLVqFdrb2zFz5kysXLkS11xzjdGYybD9JEMfgVDBcEdHx2A7Ly8Pb731ltGYLvo5ZcoUdHZ2DrZzcnLwzjvvnPbrA10tPzAwEFNJPjAwYKVaPvquRTaqVVNTU7F27VqkpqYajxkZ+zw/Px9PPPEE8vPzY6ab4OJKhMi8U1JS8MADDwyOHWAqZnZ2NgYGBmLW68DAgJX1avPKBwC45pprsHfvXjQ1NWHv3r3GE3tmZiYAIDc3Fxs2bEBubm7MdBNcVstfddVVw043GXPZsmVWYlZUVODQoUMxVeSHDh2ydm+Cz372s8NO91tRURE6OztRVlaGzZs3o6ysDJ2dnSgqKvInwEi79C4ePOc+fEwXY67bHo/c1bq1OYa+q/Vqu34iWiSmaYDd+wREYvKcu/9c3ZvAxbqNdwx9sFreP08++aRn2wQXY67bHo8ccHMlgu0x9F2sVxdXPrjgYmx52+v261//umfbhAcffNCz7TdX9yYYenTJ9NEmwPAY+iNlfRcP7rkPH5N77uZics/dLO65+xvPxWfEdkzuufuz5x53QgaQCeDXAP4DQBuAb4enzwDwMoD9AJ4BMGG0eY23Wn7ow0a1/NCHKS5iZmVlDRsvKyvLWMxkWLfJsl5VQ5XAGRkZCkAzMjLGVAE8HpFYQx82EoKtdZsMnxHV0LYjIjGxRMToNuSin4WFhYM7GNH/FhYWjmW5jR6W7wXwOVX9JIC/BnCpiPwfAGsAfE9VzwNwDIDvoy0cOnRoTNMT0Ug3oTB5c4roMZ1PZzqdno9+9KNjmp6oKioqUFtbi/vuuw8NDQ247777UFtba7QgaqQrDkxeiTDSzZtM39Qp6N54441Qcgqvx5SUFKgq3njjDcdL5q/I3T0jV89E/vXtrp8jZf3xPAB8AMBvAHwawFEAaeHpFwLYPtrrx3NY3ubAFXB06IaD2JiLGRkYIxIzssdgKl68h+HGE9P2e+nqsKqLQWyys7NjYmZnZwfu+8d2TA5i488gNr5c5y4iqQBeBXAegO8DeADArzS01w4RyQPQoKqzhnntrQBuBYDc3NzZGzduPO24JSUlqKurw3nnnYeuri5kZ2dj//79WLJkiZHClpKSEtxyyy249tprB+M99dRTePTRR40V0pSUlGDTpk04++yzB2MePXoUX/ziF43GXLduHYqKigZj7t69G7fffrvRmP/wD/+AJUuWDMasq6vD008/bTTm/fffj09/+tODMV9++WXcddddxrafzZs346yzzhqMd/z4cXzhC18I3HvZ0NCAzMzMwZg9PT247LLLjMa0+V0QiVlTU4NPfOITgzFff/11lJeXG9t+PvvZz+Lb3/72YLy7774bP/vZz4z28corr8Ttt98+GHPdunX4yU9+YjTm1q1bkZ2dPRizq6sLn//8543GvPTSS1FZWTkYc82aNfjpT396Rn9OSkpKRrzO3e8997MANAOYC2B/1PQ8AHtHez333IePyT13czG55+4/7rkH6/vHdkzuuZ+BN45R1ePh5H4hgLNEJC381LkA/tvPWACQloA/rs4AACAASURBVJaGY8eOIScnB/v370dOTg6OHTuGtLS00V8cBxHBU089ZXwgECB0br21tRVz5szB0aNHMWfOHLS2tho95w4AfX19mDBhAnbv3o0JEyagr6/PaLwIEUFdXZ2VdQtg8Nzeyy+/PHhuz5TCwkJs2bIFCxcuxPHjx7Fw4UJs2bIFhYWFxmIC9t/LJUuWoLKyEmvXrkVPTw/Wrl2LyspKLFmyxFhMF98FKSkp6OrqwqRJk/D6669j0qRJ6OrqMn7OXURw9913W/uMRGKuW7fOSsz58+ejpqYGy5YtQ1dXF5YtW4aamhrMnz/feGwRwZo1a6z00/TnJO7D8iLyIQB9qnpcRCYC2IFQMd2NAP5VVTeKSC2A3ar6iNe8xjP8bDIM/zg06YhIzBCmJiTLMJe2Y8Y73OR4uFivpaWlaGxsDJ37E8H8+fOxfft2ozGTYftJhj4CyfM5SU9PR39//2A7LS1tTD++TQ8/+2EAzSKyG8C/AWhU1W0AKgHcISL7AUwB4OPV+SGR4R4nT56Muro6TJ48OWa636Lf/EWLFg073W9TpkyBqqKgoAD19fUoKCiAqmLKlCnGYtoelnXovK+44ophp/vN9vZTUVGBd999N2ZYzXfffdfKsJo2hy+ur6/Hvn370NTUhMbGRjQ1NWHfvn2or683FjOyjWZmZuLhhx8eHHbW5F607ZjR79l111037HSTMa+88korMUtLS9HZ2Yny8nJs3boV5eXl6OzsRGlpqbGY0f35yle+Mux0v2VnZ6O/vz9mOOr+/n7/hqMe6Xi9iwfPuQ8fM3KrzEjMgoIC4zFtDu4Sieli3drcflydi7Y9CJKrW75mZmbGxMzMzDS+/diM6eozYjtmspxzB+If1ApBHn72pZde8mz77Rvf+IZn24QXXnjBs22C7WFZAQw75KRpNrcfV8Nq2h6+uL29HXPnzo2ZNnfuXLS3txuN62L4Wdsx77nnHs+2Cbfddptn22+qitWrV8dMW716tfFD5GvWrPFsm2B0OOqRsr6LB/fch4/JPXdzMbnn7j/uuQfr+8d2TO65c8/dabX8v/zLv1ipqMzJyUFbWxtmzZqFw4cPY9asWWhra0NOTo7RuAMDA0hNTcUrr7xyyj3ITRIRVFdXW1m3trcfF1XkQGiUtrS0NLz22mtIS0szfv/4lStXYvHixWhubkZ/fz+am5uxePFirFy50lhMEUFPTw8mTpyItrY2TJw4ET09PcbPR9uOGYm7fv16VssbICJ44oknrPQzKysLBw8exIwZM/D2229jxowZOHjwILKysnyZvy+D2PiF1fKMGfSYyVIFXFFRgbq6OvT29iIjIwNLlizBQw89ZDRmMmw/ydBHIFRsFj3cdVZWFrq6uozGTMR1a7pa3hmX1aq2KkcjlZPRFZXR002I7s/dd9897HSTMT/3uc9Zj1lVVWU8ZlFRETo7O1FWVobNmzejrKwMnZ2dKCoqMhIPcFNFXl9fj+effx4NDQ1obGxEQ0MDnn/+eaPV8q6v8Fi1atWw003F+9KXvmQ83tB52/pcFhUVobu7O+Zz0t3dbfRz4qKfxr/bRzpe7+IxnnPuyXDOK1luvxr0mICbEepsn4t2dc496HUiyfAZiczfxeckEb/bEdRz7oD9alXblaOA4YrKETz77LOebROuv/56z7YJTz75pGfbb+vXr/dsm2D7M+KqWt7FFR7btm3zbPutsrLSs22Ci8+li8+Ji36yWn7kXy3cczcU00U/gx4T3HM3FhPccw9UTO65n/Y8RtxzN1tWblikWnXoeREb1aq2RCoqh8b0q6LSi81+JkPMyNjyQ+OZHFvexWdk5cqV+PKXv4ysrCy8+eabmD59Orq7u7Fu3TpjMYHQFR5B3n5cxbMdM/I5iQy7LSJQVeP3YACC9d2e0IflJ0yYMKbpRC4dP358TNP9EPpxf/rT/eYiEVFiu+iiiwC8v41G/o1MD4qMjIwxTR+rhE7uvb29yM3NhaqiubkZqorc3FzjI35FxzOtu7sb+fn5MTHz8/NjLhMxxWY/XcWM7BVEYppMRh0dHSguLo6JV1xcjI6ODmMxI2yu11WrVuGZZ57BgQMH0NTUhAMHDuCZZ56JqSg3JRm22aD3sa6uDtXV1TExq6urUVdXZzy2zX52dnYO3iskErOgoCDmUtl4JHRyB+wXC7koaHFRUGe70AwArrnmGs+2CQ0NDZ5tv7koVHz00Uc9235zVVDnYt3a/py4KOj9+7//e8+231wN0/yJT3zCs22C0aHFRzoZ7+IxnoK63NxcVX2/ICE3NzdwBS0sqDMXMzKkZSSmiBjdfoqLi2PiFRcXB269uiqoC/o2mwx9VHU3TLOLdRvv0OII6qVwGRkZOHLkCKZOnYqDBw9i6tSpOHLkiG/nLEYiIqipqQnEEIVeRAQ7duywPszl3XffbS2mqiIlJQUvv/zyYAGPKXl5eWhtbcWcOXNw9OhRzJkzB62trcjLyzMWM0JEsG3bNivr1cXwsxEigpaWFuvbrM3Pic2hYKNjVlVVWYnpaphmINTPa6+9NhBDi3P42THiUIyMGY9p06bFnGPPy8vDW2+9ZSwe4Ga9FhUVYc+ePYPtwsJC7N6922jMZNh+kqGPAJCeno7+/v7BdlpaGvr6+ozGTMR1G9jhZ20PzRr9RixYsGDY6SZ0dXXFFF3YTOzf+c53hp1uMqaL4Wf/8R//0UrMt956K+a9tJnYbb2XpaWl2LNnD8rLy7F161aUl5djz549KC0tNRbT9lDCQ+d90003GY8ZPd+rrrrKeLyh846+FM30sKz9/f0x3+v9/f3WhtyOPtdusp+RoaBzc3OxYcMG5ObmxkyPV0In90gl+YEDB3DuuefiwIEDVirJVRVVVVVWq1VdUFV85jOfsV6V+61vfct6zEWLFgX6/bT5XjY2NqK8vByPPPIIsrOz8cgjj6C8vByNjY3GY6sqFixYYH37ufHGG61Wy1dUVFjv44MPPmj1CiHb3+tAqJ81NTVW+hm52uvw4cPIz8/H4cOHfb3aK6GTO2C/kvzmm2/2bPtNRAYfJSUlMW2Tvyp/8pOfeLZNcDH84/e+9z3Ptp+S5b1UVaxevTpm2urVq41/Ybq4wuO+++7zbPvt61//umfbhIsvvtizbYKLK4QuvPBCz7YJRq/2GqnSzsVjPNXyNivJ4aCiMtr0ym1W4rjoZ7LEjAjyeykiWl5eHhOzvLx88MoEE5Jh+0mGPkbmnyxXCMV7tReCWi3vqpJcRLB69erAj74lIvj5z39uvSr33nvvtR5z48aNgX4/bb6X8+fPR01NDZYtW4auri4sW7YMNTU1mD9/vvHYrq7wePzxx61Wyz/00EPW+3jbbbclxRVC5eXlVvpp+movVsuPkYuKyoj8u57Hwfv/zkqsRKwcTZSYQPDfS17hEYx4jHlmxwxstXxkxaSnp2PdunVIT0+PmW4qHgBcccUVw04Pguj+fO1rXxt2usmYM2fOtB7zuuuusxLThchhukiFvukvrKKiInR3d6OsrAybN29GWVkZuru7UVRUZCxm9Hu2YsWKYacHIabt99JFTNtXQQGx79k555wz7HRTMU3lr4RO7kBoxZw4cQJFRUU4ceLE4AoySVWxYsWKQFdXA6F+Lly40HpV7iOPPGI95uLFiwP/ftqyZ88elJWV4bnnnsNZZ52F5557DmVlZTHXvZuiqrjiiiusbz+2YwaZ62r5J5980tp7aTJ/JXxyb25u9mz7bbgxj4OotrbWs23CnDlzPNsm3HPPPZ7tROeqQn/9+vWebRNsj6FvO6aL99LV9uOiWj76iOFwbROM5q+RKu1cPMZTLZ+enq6q71cbpqenB6paNVqQK6yTJWaErffSRUwAWlZWpqrvr9eysrLAvZfcfsxAElXLx5u/4FEtn+bfzwQ3+vr6rJ8jDdo52ZG46GeyxAyywsJCbNmyBZMmTUJ3d/dgMV30CGemcPtJfJFq+aHr1Va1vE0m81dCH5ZPSxv+t8lI04nIvKqqKqSnpw8Om9zV1YX09PSYYWGJkt1IP1b8+hGT0Mm9v78fkydPjqnknDx5cswNB0yIjhdkLvqZLDGDbNWqVdi+fXvMet2+fTtWrVplPDa3n8QXKaiLXq82C+psvZem+5nQyR0AXnrpJc+2377whS94toPiu9/9rmfbhL/5m7/xbJuwceNGzzaNXXt7O+bOnRszbe7cuWhvbzca10VBXdALMl1xUVBXUFDg2TbBZD8TPrlfdNFFnm2/bd682bMdFHfeeadn24Tf/OY3nm0TFi1a5NmmsZs5cyZ27doVM23Xrl3Gq49vueUWz7YJTO5mXHLJJZ5tE9ra2jzbJpjsZ0In97S0NBw7dgw5OTnYv38/cnJycOzYMePn3EUElZWVgS+kERE89dRT1oe5XLJkifWYTU1NgX8/bVm5ciUWL16M5uZm9Pf3o7m5GYsXL8bKlSuNxxYRbNu2zfr2s379em4/PnE9/OwNN9wQiGF2OfzsGHH4Wcb0g8330kXMadOmoaOjY7Cdl5dn9d71Edx+EjNmsryXHH52BJEVIyK4//77Y9qmRK4htDn8owu2+xn9nn3sYx8bdrrJmDfccIOVmMmgqKgIHR0dMcPPdnR0GB1+FkiOoVmTQWZmJgAgNzcXGzZsQG5ubsx0E6I/85MnTx52ut+mTZsGACguLsamTZtQXFwcMz1eCZ3cgdDKHxgYwKc//WkMDAzwiznBqSoeffRR69XON998M7+YfeJy+FlKfL29vcjNzcXhw4eRn5+Pw4cPIzc3F729vcZjqyp+/OMfW/ku6OjoQHFxMX7xi1/g7LPPxi9+8QsUFxfHHPGKR8In94aGBs+2n1wNxWjT0D7Z7OenPvUpz7YJ9957r2ebxsfm8LOjbbNBiZlMWlpaPNsmTJ8+3bNtwrPPPuvZjkfCJ/fLLrvMs+2n6KH9plduO2W4vyAY2ieb/Xzttdc82yZ861vf8mzT+CxevNiz7afRttmgxEwm8+bN82yb8Oabb3q2Tbj66qs92/FI+OSuqkhJScHLL7+MlJQUfrASnIjglltusV7tvGHDBu5x+SQy/OzChQtx/PhxLFy4EFu2bLEy/CwlvoyMDBw5cgRTp07FwYMHMXXqVBw5cgQZGRnGY4sIrrrqKivfBXl5eWhtbcWcOXNw9OhRzJkzB62trcjLy/Nl/gk9TquqQkSgqrjrrrtiplNiibyXAPBf//VfMdNtxPzhD39oJWYy2L17NzIzM7FlyxZs2bIFQOgLe/fu3Y6XjBJBT08PMjMzceTIEdx8880AQttPT0+PsZjR3wXHjh2LmW7KW2+9BRFBa2srWltbY6b7IRB77qxWTXzRv5Sjq0VN/4Lm9uO/oqIi9Pb2xlTL9/b2Gq+Wp+Do6emJ+VyaTOzAyN8zNq7WSU9Px7p16wbv5e5XzIRP7hQsqorHH3+cSTaBsVqeEpXt+wSkp6fjxIkTKCoqwokTJwYTvB8S9rD8aL9umBwSz6xZs05p792710gsbj9mDVct/6EPfcjR0lCiOJ29VlOfzdTU1FPaJ0+eNBIrorm5+ZT20PsyjFfC7rmzWjV4hiZyU4kd4PZjms1qeQoOl1frDE3kphM7AJSUlHi245GwyZ2CSURw4403snI9gbFanhJV9JgFNvT19WHChAnYvXs3JkyYgL6+Pt/mnbCH5SlYoqtVo6tFuRedeHbv3o0pU6bEVMvn5OSwWp7OWNHfP0Onm47Z19eH22+/3feY3HOnMwYr14OhoqIC7777Lqqrq9HQ0IDq6mq8++67qKiocL1oRCMK2r0JmNyJyFd1dXVYs2YN7rjjDmRmZuKOO+7AmjVrUFdX53rRiJIGD8uTc6xcD5be3l4sXbo0ZtrSpUuxYsUKR0tENDIX3z82YnLPnZxj5XqwZGRkoLa2NmZabW2tleFDicYqqPcmiHvPXUTyAPwQQC4ABfD/VHWdiOQAeAZAPoCDAL6kqsdGmg8RBcOSJUuwYsWKU/bUly9f7miJiJKPH3vu/QBWqOr5AP4PgK+KyPkA7gLQpKofB9AUbhNRwG3YsGFM04nIf3End1U9pKq/Cf//TwDaAZwDYCGAx8N/9jiAK+ONRURnvu7ubuTn58dUAefn56O7u9v1ohElDV8L6kQkH8CnALwMIFdVD4WfOozQYfvhXnMrgFsBIDc3Fy0tLeOOH89rEyEeYwYrZpD7eO+996KlpQVdXV1oaWnBvffei+uvv95a/CCvW1fxGDPBYg49sT/eB4BsAK8CuCrcPj7k+WOjzWP27Nk6XtMrt437tYkQjzGDFTPIfQSg+fn5qqra3Nysqqr5+fka+roxL8jr1lU8xjwzYwJ4RUfIp75Uy4tIOoB/BfCUqv44PPmIiHw4/PyHAfzBj1hEdGbLysrCwYMHMWPGDLz99tuYMWMGDh48iKysLNeLRpQ04k7uErpgbz2AdlVdG/XUFgA3hv9/I4Dn4o1FRGe+rq4uAMDBgwdx/fXX4+DBgzHTicg8P/bc5wC4HsDnROTfw4/LAdwPYL6I7ANwSbhNRAE3ZcoUAEBBQQHq6+tRUFAQM52IzIu7oE5VdwEYabidi+OdPxElls7OThQUFGDv3r1oaWnB3r17MWvWLLS1tbleNKKkwRHqiMh3L7zwgmebiMxicici311++eWebSIyi8mdiHyVk5ODtrY2zJo1C4cPHx48JJ+Tk+N60YiSBu8KR0S+euedd5Camoq2tjZcc801AICUlBS88847jpeMKHlwz52IfFVUVISBgQGUlZVh8+bNKCsrw8DAAIqKilwvGlHSYHInIl/t2bMHZWVleO6553DWWWfhueeeQ1lZGfbs2eN60YiSBpM7Eflu/fr1nm0iMovJnYh8t3jxYs82EZnFgjoi8lVhYSG2bNmClJQUqCpEBKqKwsJC14tGlDS4505EvrrooosAIHI3yMF/I9OJyDwmdyLyVV1dHaqrq6GqaG5uhqqiuroadXV1rheNKGkwuRORr3p7e7F06dKYaUuXLkVvb6+jJSJKPkzuROSrjIwM1NbWxkyrra1FRkaGoyUiSj4sqCMiXy1ZsgSVlZUAgPPPPx9r165FZWXlKXvzRGQOkzsR+eqhhx7Cww8/jBUrVpwynYjs4GF5IvJVSkroayUzMxMPP/wwMjMzY6YTkXn8tBGRr1QVmZmZeO+991BQUID33nsPmZmZg5fEEZF5TO5E5LuWlhbPNhGZxeRORL6bN2+eZ5uIzGJyJyJfiQh6enowceJEtLW1YeLEiejp6YGIuF40oqTBanki8tXAwABSUlLQ09OD5cuXAwgl/IGBAcdLRpQ8uOdORL4bGBiIGX6WiZ3ILiZ3IiKigOFheSLyzemcV+clcUTmcc+diHyjqjGP6ZXbTplGROYxuRMREQUMkzsREVHAMLkTEREFDJM7ERFRwDC5ExERBQyTOxERUcAwuRMREQUMkzsREVHAMLkTEREFDJM7ERFRwDC5ExERBQyTOxERUcAwuRMREQUMkzsREVHAMLkTEREFDJM7ERFRwDC5ExERBQyTOxERUcAwuRMREQUMkzsREVHAMLkTEREFDJM7ERFRwDC5ExERBYwvyV1EfiAifxCRvVHTckSkUUT2hf+d7EcsIiIi8ubXnvtjAC4dMu0uAE2q+nEATeE2ERERGeZLclfVnwHoHDJ5IYDHw/9/HMCVfsQiIiIib2kG552rqofC/z8MIHe4PxKRWwHcCgC5ubloaWkZd8B4XpsI8RgzWDGToY+MGZx4jJlgMVXVlweAfAB7o9rHhzx/bLR5zJ49W8dreuW2cb82EeIxZrBiJkMfGTM48RjzzIwJ4BUdIZ+arJY/IiIfBoDwv38wGIuIiIjCTCb3LQBuDP//RgDPGYxFREREYX5dClcP4JcA/kpE3haRxQDuBzBfRPYBuCTcJiIiIsN8KahT1WtGeOpiP+ZPREREp48j1BEREQUMkzsREVHAMLkTEREFDJM7ERFRwDC5ExERBQyTOxERUcAwuRMREQUMkzsREVHAMLkTEREFDJM7ERFRwDC5ExERBQyTOxERUcAwuRMREQUMkzsREVHAMLkTEREFDJM7ERFRwDC5ExERBQyTOxERUcCkuV4AoqD65Ld34I/v9Y34fP5dz4/43AcnpuM/7l5gYrGIKAkwuRMZ8sf3+nDw/r8b9rmWlhbMmzdvxNd6JX4iotHwsDwREVHAMLkTEREFDJM7ERFRwDC5ExERBQyTOxERUcAwuRMREQUMkzsREVHAMLkTEREFDAexOcOMd1QzjmhGREQRTO5nmPGOasYRzYiIKIKH5YmIiAKGyZ2IiChgmNyJiIgChsmdiIgoYFhQRxQgvNqC4pEs208y9JPJnShAeLUFxSNZtp9k6CcPyxMREQUMkzsREVHAMLkTEREFDJM7ERFRwLCgjoji4qLy2HbM0eKZiEnB4WL7YXInori4qDy2HdMrnqmYFBwuth8eliciIgoYJnciIqKAYXInIiIKGJ5z9zDeoh0gsYpokmEoRiI6M/H7xwwmdw/jLdoBEquIJhmGYiSiMxO/f8zgYXkiIqKAMZ7cReRSEflPEdkvIneZjkdERJTsjCZ3EUkF8H0AlwE4H8A1InK+yZhERETJzvSe+98C2K+qv1PVEwA2AlhoOCYREVFSM11Qdw6Ajqj22wA+Hf0HInIrgFsBIDc3Fy0tLcPO6KtN3ej2Hr1vxAKLrHTg+xdnneYixxppebq6ukZ8brTXmoo53nguYo72fvr9XnL7Cdb24yKm1+tMxBzvZwRws80m0nvpIqbt7QeqauwB4GoAj0a1rwfw8Eh/P3v2bB3J9MptIz6nqtrc3Dzu147ndV7xXMQcb7xkicntJzjvpYuY3H6C8166iGlq+wHwio6QT00flv9vAHlR7XPD04iIiMgQ08n93wB8XERmiMgEAIsAbDEck4iIKKkZPeeuqv0ishzAdgCpAH6gqm0mYxIRESU74yPUqeoLAF4wHYeIiIhCOPwskSGTZt6Fwsc9xm163Ou1ADDy/Z+JiLwwuRMZ8qf2+5Pi3gREdObh2PJEREQBw+ROREQUMEzuREREAcPkTkREFDBM7kRERAHD5E5ERBQwTO5EREQBw+ROREQUMEzuREREAcMR6ogoLuMdZpdD7BKZw+RORHEZ7zC7HGKXyBweliciIgoYJnciIqKAYXInIiIKGCZ3IiKigGFB3RmGlcdERGbZ/p4dNZ6BmEzuZxhWHhMRmWX7e9YrnqmYPCxPREQUMEzuREREAcPkTkREFDA8504UIMlSkJkMBVEuJMv2kwyY3IkCJFkKMpOhIMqFZNl+kgEPyxMREQUMkzsREVHAMLkTEREFDJM7ERFRwLCgjoiInGGFvhlM7kRE5Awr9M3gYXkiIqKAYXInIiIKGCZ3IiKigGFyJyIiChgW1HkYbxVn6LVAolRyslqV4uVZ3PTT4Z/74MR0Q0tDREzuHsZbxQkkViUnq1UpHl5jruff9bzn80RkBg/LExERBQyTOxERUcAwuRMREQUMkzsREVHAsKCOnLBdoT9qPAMxgfFVkQOsJCei+DC5kxO2K/S94pmKySpyInKFh+WJiIgChsmdiIgoYJjciYiIAiZhzrm7KogiInIhWYa/diXoQyYnTHJ3URBFRORKsgx/7UIyFLvGdVheRL4oIm0iMiAiFwx5rkpE9ovIf4pIaXyLSURERKcr3j33vQCuAvAv0RNF5HwAiwAUAPgIgBdF5H+p6sk44xEREdEo4tpzV9V2Vf3PYZ5aCGCjqvaq6gEA+wH8bTyxiIiI6PSYqpY/B0BHVPvt8DQiIiIybNTD8iLyIoCpwzy1UlWfi3cBRORWALcCQG5uLlpaWkb8W6/nurq6xv1aLyO9brR4LmKON16yxHSx/Yx3eUzM10UfXcw3SNsPv3+Cs81a335UNe4HgBYAF0S1qwBURbW3A7hwtPnMnj1bRzK9ctuIz6mqNjc3j/u143mdVzwXMccbL1liuth+vJiY52jztd1HV/MNyvbD75/gbLOmth8Ar+gI+dTUYfktABaJSIaIzADwcQC/NhSLiIiIosR7KdwXRORtABcCeF5EtgOAqrYB+BGA3wL4KYCvKivliYiIrIjrUjhV3Qxg8wjPrQKwKp75ExER0dhxbHkiIqKASZjhZ5NJ0Mc8JiJKNqMOCezzdzuT+xkmGcY8JiJKJqN9b5v4budheSIiooBhciciIgoYJnciIqKA4Tl3ooBJloJM2/20XRDlSrJsP0HH5E4UIMlSkGm7ny4KolxIlu0nGfCwPBERUcAwuRMREQUMkzsREVHAMLkTEREFDAvqiIjIKVbo+4/JnYiInGGFvhk8LE9ERBQwTO5EREQBw+ROREQUMEzuREREAcOCulGMp4oTSLxKThfVqqyQJSIyg8ndQ7JUcbroZ7KsWyIiF3hYnoiIKGCY3ImIiAKGyZ2IiChgEuqcu2cBFsAiLPLE7YeIkkXCJPfRCqxYhEVeuP0QUTLhYXkiIqKAYXInIiIKGCZ3IiKigGFyJyIiChgmdyIiooBhciciIgoYJnciIqKAYXInIiIKGCZ3IiKigGFyJyIiCpiEGX6WiCjZeN4PYYR7IQC8HwIxuRMRnZG87nXAeyHQaHhYnoiIKGCY3ImIiAKGyZ2IiChgmNyJiIgChsmdiIgoYJjciYiIAobJnYiIKGCY3ImIiAKGyZ2IiChgmNyJiIgChsmdiIgoYOJK7iLygIi8LiK7RWSziJwV9VyViOwXkf8UkdL4F5WIiIhOR7x77o0AZqlqEYA3AFQBgIicD2ARgAIAlwJ4RERS44xFREREpyGu5K6qO1S1P9z8FYBzw/9fCGCjqvaq6gEA+wH8bTyxiIiI6PT4ec79KwAawv8/B0BH1HNvh6cRERGRYaPez11EXgQwdZinVqrqc+G/WQmgH8BTY10AEbkVSlvIewAAF/NJREFUwK0AkJubi5aWlrHOYlA8r02EeIwZrJhB7GNJSckp02RNbLu5udnoMgDBXLeu4zFmgsVU1bgeAG4C8EsAH4iaVgWgKqq9HcCFo81r9uzZOl7TK7eN+7WJEI8xgxUzGfqoqtrc3Gw9ZjKs22ToI2OODsArOkI+jbda/lIA/wSgTFX/HPXUFgCLRCRDRGYA+DiAX8cTi4iIiE7PqIflR/EwgAwAjSICAL9S1aWq2iYiPwLwW4QO139VVU/GGYuIEkT4+yBGaEeDiGyIt1r+PFXNU9W/Dj+WRj23SlU/pqp/paoNXvMhouCIJPb09HSsW7cO6enpMdOJyDyOUEdEvktPT8eJEydQVFSEEydODCZ4IrKDyZ2IfDe0It5GhTwRvY/JnYh8N/SSuOEukSMic+ItqCMiOkVfXx/PsRM5xD13IvJVXl7emKYTkf+Y3InIVx0dHSguLoaqorm5GaqK4uJidHR0jP5iIvIFkzsR+e7ZZ5/1bBORWUzuROS7q6++2rNNRGYxuRORr/Ly8tDa2oo5c+bg6NGjmDNnDlpbW3nOncgiVssTka/eeustiAhaW1vR2toaM52I7OCeOxH5KjMzE0DoFs4bNmxAbm5uzHQiMo/JnYh81dvbi9zcXBw+fBj5+fk4fPgwcnNz0dvb63rRiJIGkzsR+a6lpcWzTURmMbkTke/mzZvn2SYis5jcichXGRkZOHLkCKZOnYqDBw9i6tSpOHLkCDIyMlwvGlHSYLU8Efmqp6cHIoIjR47g5ptvjplORHZwz52IfDVlyhQAQEFBAerr61FQUBAznYjMY3InIl91dnaioKAAe/fuxdSpU7F3714UFBSgs7PT9aIRJQ0mdyLy3QsvvODZJiKzmNyJyHeXX365Z5uIzGJBHRH5KicnB21tbRCRU6YTkR3ccyciX11wwQVjmk5E/mNyJyJfNTY2ory8HKqK5uZmqCrKy8vR2NjoetGIkgaTOxH5SlWxevXqmGmrV6+GqjpaIqLkw+RORL4SEVRVVcVMq6qqOuUcPBGZw4I6IvLV/PnzUVNTAyBUJb9s2TLU1NRgwYIFjpeMKHkwuRORr7Zv345p06ahpqZmMMnn5eVh+/btjpeMKHnwsDwR+aqiogKHDh1CdXU1GhoaUF1djUOHDqGiosL1ohElDSZ3IvJVXV0d1qxZgzvuuAOZmZm44447sGbNGtTV1bleNKKkweRORL7q7e3F0qVLY6YtXboUvb29jpaIKPkwuRORrzIyMlBbWxszrba2lvdzJ7KIBXVE5KslS5agsrISAHD++edj7dq1qKysPGVvnojMYXInIl899NBDAIBvfOMb6O3tRUZGBpYuXTo4nYjM42F5IvLdQw89hJ6eHjQ3N6Onp4eJncgyJnciIqKA4WF5IiJKWsMNiyxr3v9/ot4TgXvuRESUtFQ15hG5k2HkkaiY3InIdxUVFcjMzERJSQkyMzM5Oh2d8UQEIoKSkpLB/ycyHpYnIl9VVFSgtrYWa9aswfnnn4/f/va3g5fGsbCOzkTRiTyyzUamJ+reO/fcichXHH6WEpWq4vvf/37CJvRoTO5ElkQO9YkI3lxzRUw70Q8BRuPws5SIPvOZz3i2Ew2TO5ElXkU7QdhTiODws5SIfv7zn3u2Ew3PuRORrzj8LCUqEYk5557ImNyJLCotLUVjYyNUFSKC+fPnY/v27a4Xy1cPPfQQXnrpJaxYsWJwWmFhIYvp6IwV+TwCiEnsiXxEjYfliSwpLS3Fjh07sHTpUmzduhVLly7Fjh07UFpa6nrRfFVRUYH29nZUV1ejoaEB1dXVaG9v5+VwdMaKrnkpLi4ednqiYXInsqSxsRHl5eV45JFHkJ2djUceeQTl5eVobGx0vWi+YrU8JSpVxapVqxJ6jz2CyZ3IElXF6tWrY6atXr06EF8k0VgtT4noi1/8omc70TC5E1kiIqiqqoqZVlVVldCH/obDanlKRJs2bfJsJ5q4CupE5F4ACwEMAPgDgJtU9fcS+rZaB+ByAH8OT/9NvAtLlMjmz5+PmpoaAMDll1+OZcuWoaamBgsWLHC8ZP5itTwlKhFBcXExWltbXS9K3OKtln9AVb8FACJyG4B/BrAUwGUAPh5+fBpATfhfoqS1fft2FBUVoaamZjDJFxYWBrJa/o033sCdd94Zc1UAq+XpTBVdLR+d2BP5lFlch+VV9d2oZhaAyJpYCOCHGvIrAGeJyIfjiUWU6Orr69HV1YWdO3eisbERO3fuRFdXF+rr610vmq/q6+uxb98+NDU1obGxEU1NTdi3b1/g+knBEX1qLPpIWiKfMov7nLuIrBKRDgDXIrTnDgDnAOiI+rO3w9OIktaqVauwfv16lJSUIC0tDSUlJVi/fj1WrVrletF8lSz9pOBRVVRVVSX0HnvEqIflReRFAFOHeWqlqj6nqisBrBSRKgDLAdw9lgUQkVsB3AoAubm5aGlpGcvLY8Tz2kSIx5iJHbO9vR0nT55ES0sLurq60NLSgpMnT6K9vd1af23ESZZ+uo6ZDH20GXPBggUx2+yCBQuwY8cOI/FLSkpOmSZr3v9/c3Nz/EGGjm893geAaQD2hv//LwCuiXruPwF8eLR5zJ49W8dreuW2cb82EeIxZuLHLCgo0J07d6qqanNzs6qq7ty5UwsKCozHVrW3XpOlny5jJkMfbcZE6JSyqr6/zUZPMy0Sc6wAvKIj5NN4q+U/rqr7ws2FAF4P/38LgOUishGhQro/quqheGIRJbqVK1fiy1/+MrKysvDmm29i+vTp6O7uxrp161wvmq9WrlyJK6+8Eu+99x76+vqQnp6OiRMnnnJ5HNGZxvY59uzsbHR3dw+2s7Ky0NXV5cu84z3nfr+I7BWR3QAWALg9PP0FAL8DsB9AHYBlccYhCpRELtQZTWtrK7q6ujBlyhSkpKRgypQp6OrqCsTlRUR+iST2/Px8PPHEE8jPz0d3dzeys7N9mX+81fJ/r6qzVLVIVT+vqv8dnq6q+lVV/ZiqFqrqK74sLVECW7VqFZ555hkcOHAATU1NOHDgAJ555pnAFZrV1dXhgQcewKFDh9DU1IRDhw7hgQce4PCzdMbTqNsxmxZJ7AcOHMC5556LAwcODCZ4P3CEOiJL2tvbMXfu3Jhpc+fORXt7u6MlMoPDz1IiuvPOOz3bJrz44oue7XgwuRNZMnPmTOzatStm2q5duzBz5kxHS2QGh5+lRPTd737Xs/3/t3fvUVaV9xnHvw+4vGEsXhvToJA0VlTQiF1RE61REa1m0IQYp9bUFjUd7MVUTUPosiattxhMUxVsF1Fq2oqprWVkqUjJNKteYzQwDOKlIAm0tmJ0VkoiicCvf7zvgc1hZpQ5+8wwm+ez1lnMfvdhP+fd55z927ezdzOcccYZfQ43wsXdbIDMmDGDqVOn0tHRwcaNG+no6GDq1KnMmDFjsF9aqWqXn7311lvZsGHDlsvPXnbZZYP90sz6JIk77rhjQM6JGTFiBKtXr2bMmDGsXbuWMWPGsHr1akaMGFHK9Bu9/KyZvUutra3A1vudjx07luuvv35Le1XcdtttzJ8/n6uuumpL26hRo3z5WdtpReHys/fff/827c2yfv16hg0bxurVq7n44ouBtHKxs5wtb2Y7oLW1la6uLhYvXkxXV1flCjvApEmTWLNmDW1tbTz44IO0tbWxZs0aJk2aNNgvzaxHxS314kppM7fgx48fT0TQ0tLCAw88QEtLCxHB+PHjS5m+i7uZlWrRokW0tbUxa9Ys9tlnH2bNmkVbWxuLFi0a7Jdm1qeI4Nxzzx2Qs+WXLVtGS0sL8+fPZ+TIkcyfP5+WlhaWLVtWTkBvV7cZjMeOXKGOfPWg3h7NsCtkvlPeYGQ2w2BkFvX3ilQ7arDmbXd3d0Rs7Wd3d3el3ktnVmf5U8udM2dORGz9zM6ZM6epywIg1q1bt03munXrdiiTPq5QN2S33Os7UvttYu3R7Mz6vKpkvtN8HYzMZhiMzMEwGJ9ZSUyfPn2btunTpzdtF+eu8vnx8qe5381LL720z+FmmDp1ap/DjRiyxd3Mdk4TJ05k9uzZTJs2jfXr1zNt2jRmz57NxIkTB/ulmfVJEgsWLBiQs+XHjRtHe3s7kydPpru7m8mTJ9Pe3s64ceNKmb7PljezUi1cuJBJkyZx5513Mnv2bCRx5plnsnDhwsF+aWY9ith6tvzMmTO3aW+Wzs5Oxo8fT3t7O+3t7UAq+J2dnaVM31vuZla6hQsXsnnzZjo6Oti8ebMLu+30ejoU0GydnZ3bZJZV2MHF3czMrHJc3M3MzCrGxd3MzKxiXNzNzMwqxsXdzMysYlzczczMKsbF3czMrGJc3M3MzCrGxd3MzKxiXNzNzMwqxsXdzMysYlzczczMKsbF3czMrGJc3M3MzCrGxd3MzKxiNBD3rH23JK0DftjP/34g8HqJL2dny3NmtTJ3hT46szp5ztw5Mw+LiIN6GrFTFfdGSPp+RBxf1TxnVitzV+ijM6uT58yhl+nd8mZmZhXj4m5mZlYxVSruf1vxPGdWK3NX6KMzq5PnzCGWWZlj7mZmZpZUacvdzMzMGKLFXdIfS+qStFzSlbltrqRXJC3JjydKzDtPUkg6oq792Nx+VllZfeVKGibpr3Pfl0l6RtKYkrI25fm2VNJzkk4qjDtU0qOSVkh6XtLokjOX59yrJA3L406VtKCMnF4ya48vSvpzSTfWPe9YSSualDla0u6S7s7v41JJp5aR9S5ymzVf19cNXyLp9rq2JZLmlZQXkv6+MLybpHXFvuXvT6ekF/J3ZkqDme+XNF/Sy5JWSvqGpN3zuI9J+l7OekHS5Y1kFTJHS+qqa7tO0tX571q/byoj750yJZ0g6en8Xq6QdF0JeR2SJtW1XSnp4bxsqM3jD0paJWnfBrK+XqsZeXihpDmF4ZmS/iR/vv6w0H67pEv6m5unIUmPSTq70PbpPvo/u5E8ImJIPYCjgS5gb2A34N+AXwXmAlOalHkf8B/Al+vab87tfzcQuUArcD8wLA+/H9ivpKz1hb8nAd8tDP87MDH/vQ+wdxMyD87vZa2vpwILmjBP1/fQdjiwqq7tJuDaJmZeAdxd6Puztfe1yX0dkPkKXALcXhgeCywD/gsYUUYesATYKw+fnYcX5OFjgP8ExuThMcBKYEI/8wR8D/jdPDwc+CZwC/Be4EfAcXncgfn9PKeEfo4GuurargOuLvT78dw3lfRe9poJvAgcU5gHR5aQd3ntu1Boewo4BZgFfCm3PQK0Npg1Bfh2/ntYfp+eLIx/EjgB+N/8+dk9t98OXFJCX48GVgB7kpalLwOf663/jWQNxS33scDTEfGziNgIfBf4ZLPCJO0DfAyYClxYaBfwadJCbKKkPQcg9xDg1YjYDBARayPizTJzs32BN/PrOBLYLSIW5cz1EfGzsgMj4jXSl/wP8rwdMBHxEvCmpI8Umi8A7m1i7JHAd3L+a0A3MKC/rR1grcC3gEeBySVN8yHgnML0i+/X1cANEfEKQP73BuCqfmadBmyIiLvz9DYBnwd+L09zbkQ8l8e9DnwB+GI/s3ZEK/AN0srFiQOQdzDwKqR5EBHPlzDN+4FzClvoo4H3kTZsvgRcJukLpOVQo9/JJ9g6n44ibSj+n6T9JO1Bqi9vAOuAxcDvNJi3jYjoAh4E/hS4FrgH+Cd673+/DcXi3gWcLOkASXsDvwmMyuNuKeyC/IeS8iYDj+QC8GNJE3L7ScArEbGStGV7Ti//v8zcbwOfyP2bKenDJebtlaf7AjAH+IvcfjjQLelfJP1A0i2ShpeYu0VErCJtDRzcjOlne2nbXdWfye33kleiJJ0AvBERLzch84HcthRoybtVxwAT2Po5LktPuc2yzXwFvlI3/jPAPNJ8bi0pcx5wYV6xHg88XRh3FGmrrOj7pJWq/thuehHxE1JR/WAvWUf1M+tdyf0+g1Qsypyvffk68KKkByR9royNmoh4g7RXpLa7+kLS1nVERDdpL9qNpL1djWb9N7BR0qGkZfiTpM/NiaSV62XAL/LTbwaubsLy7svAb5H6+9W++t9IyJAr7hGxgjTTHyXtplkCbMqjr4mIY/PjopIiW0kLEfK/re/QXpbtph8Ra4FfA6YDm4HFkk4vKe+tPN+OAM4C7slb0LsBJ5O2hH4d+ABpb8VQ9VbhM3JsRNyX2+8Dpigd87+Qcrfai5nn57a7gLWkIvBXpC2KTb1NoMTcZtlmvpK2SgCQdDzwekT8iLQ19GFJ+zcaGBGdpF3IraSt+CrqbQEfwLlAR0S8BfwzcF5JhajXzIj4CqkIPkoqUI+UkAeFlWu2//6dTdpN3t8Vs3pPkAp7rbg/WRh+vPakvLHxNKmfpYmIn5KWN9+KiJ/n5r763y9DrrgDRMQ3I2JCRJxC2n38UjNy8gLoNGCOpNXANcAF+Qv0KeDa3H4bcJak9zQ5VxHx84h4OCKuIe1mPK+MzKKIeJJ03PAgUgFaEhGr8mGQfwWOKzsTQNIHSAXutWZMvy8RsQZ4BfgN0nt7X9//o+G8jRHx+VwMJwMjadLneCfQChyRP8srSYd9PlXStNuBr7H9wvB50t6Qogmklan+2G56+cSuQ4HVvWQt72dW0Y+B/era9iddh7wVOCPP12eBA0jLjWZmEhErI2I2cDpwjKQDSsicD5wu6TjSOT3PAkg6F/gl0nlAt+S9tY16nFTIx5H2BD9F2nI/iVT4i24g7UIv+1Dh5vyo6bH/jRiSxV3SwfnfQ0nH2/+xSVFTSGtXh0XE6IgYRSoAM4DOiBiV2w8jrTmXtXXUW+7Jkt4H6cx50q7I/t5op1dKZ+cPJ33JnwFGSqrdnOA00oKu7MyDgDtJJ2EN1sUX7iXtdlyV95I0jaS9JY3If08ENpZ0/HKnkj+nFwDj8md5NOmQU1l7uu4inYS5rK79a8D0fPyydhzzStIJcP2xGNhb0mfz9IYDM0kn8t4CXCLp2DzuANLexa/2M2uLiFgPvCrptDzt/Ul71paQ9qgdWpivV1DCfO0j8zFJ5xTOifkQaWW8u6TMDtL7eW/O3Qu4Fbgiv7/zScveRj1B2uvxRj5v4A3SyvWJ1BX3iHiBtLz7RAm5veqp/2VMdMg9SCcaPE86bnl6bptLKoBLCo/dG8zpAM6qa/sj4G7g9+vaW4CHS+pfb7mvkNbQu/LjLmDPkjI3FebbUgpn+gITgU7S8ai5jc7XHjKX58yr2fpLgFOBt0h7DmqPE0vu5xLgpsK4A4G369/bEjJ7Omt9NOnM4xWkXwkcVmZmH7nNmq89ni1P2hPyVN244cD/AIc0oW8LCsOfzJ/Zl0jHUT/aYB9HkY5vv0zaA3EbsEcedwppRfiF/L62lfg+HpmXCbXP7EWkE73m1T1vf9KJYHs0IzO3z8vzcwlpL8ikEvt5HumQwBF5+Abg5sL49wCrgA81mDMc+Anwl4W2ucCL+e/RFH4tQPrlxWZKOFu+MM3ryL946K3/jT58hTozqzyl34F/hFSMfvFOzzcb6lzczczMKmZIHnM3MzOz3rm4m5mZVYyLu5mZWcW4uJuZmVWMi7vZLkDSeyXNU7qb2bOSHpJ0eAPTe0jSyDJfo5mVx2fLm1VcvujIE6S7F96Z244B9o2IPm9Okf+vIt+sqH54B17D8Eg3WzGzAeAtd7Pq+zjwdq2wA0TEUuAHkhZLek7pvvKTYcv9vF+UdA9bb9RUHB4labWkA/Pzf1vpXuZLJP1N7frmktbnGxwtZWDuWGZmmYu7WfUdzfZ3LQPYAJwfEceRVgBm1l1adFZEHEW6xPGW4YjYcsljSWNJd3z7aKQbxmwiXUENYATp9szHRMRjzeiYmfVst8F+AWY2aATcIOkU0uU1fwX45TzuhxHxVOG59cM1p5NukvJMXi/Yi603/tlEuueCmQ0wF3ez6ltOuhlRvYtId/6bEBFv57uL1e7P/dO659YP14h0LH96D+M2+Di72eDwbnmz6vsOsIeky2sNksYDhwGv5cL+8Ty8oxYDUwp3atxfUn+mY2YlcnE3q7hIP4k5n3Tv75WSlgM3Ag8Bx0taBnyWdEezHZ3288CfAY9K6gQWAYeU9uLNrF/8UzgzM7OK8Za7mZlZxbi4m5mZVYyLu5mZWcW4uJuZmVWMi7uZmVnFuLibmZlVjIu7mZlZxbi4m5mZVcz/A+ofa81TdQ4BAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "for col in delayFields:\n", + " df_flights.boxplot(column=col, by='Carrier', figsize=(8,8))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Are some days of the week more prone to arrival days than others?" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAfcAAAILCAYAAAD1zdXYAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nO3debzt93zv8dc7A42EGBJHEuSosYZryEaFclxBjDFcSokoeqjSam8fFbQVV3uLq1U1lFQiSQ0xNTWkgnCOIKYTREJ4GBKSCBFBJKKIz/3j+1uss7P3OSfZe+2113e/no/Hepy9pt/3u9/7rP1ev2GvX6oKSZLUj52mPQFJkrS8LHdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlru0HUkqyS2mPY9pSrIhyXnbuL+rjJI8Msm5SS5NcucVHLerHDU9lrtmRpJzklw+/ML9YZITk9xk2vMaSfLkJB+f9jxm2ZDhFcPP+NIkZyd5Y5JbLeMYt03yniQ/TvKTJJuSHDjvYS8HnlVVewAHJ3n/vGV8bZHbHrdc85SWwnLXrHnY8At3H+B7wKumPJ+JSbLLtOcwJZ8cfsZ7AgcBlwOnJbn9Uhec5ObAJ4AzgJsB+wInAB9Mco+xh+4PfGn4+hTgwCQ7D8vYB9gVuPO8224xPFaaOstdM6mqfga8E7jt6LYkeyY5Lsn3k3wryV8n2SnJ9ZOcl+Rhw+P2SPL1JE8arh+T5HVJPjSsyX00yf4LjbuNMX4HeB1wj2GN80eLPP9mSU4Zxjk5yWuSvGm4b/2wWfapSb4NfGRY9l8PY104jL3n8PgrbSoftm4cNHx9RJJ3JnnbMN7nktxx7LH7JnnX8L2cneRPx+7bbcjlh0m+DNx1B34sD07yzSQXJfl/w9yvkeTiJHcYW/YNk/w0yd7bWlhVXVFV36iqZwIfBY4YW8Y7knx3WPs+JcnthtvvmuR7o9IdbntUktOHq0fQ3jy8oKourqqfVNW/AP8OvDTJNZNcCuwMnJ7kG8BnaWV+p2EZvwdsAr4677ZvVNV3hv8jRyW5IMn5Sf5u3nyekuSsIdsPbOP/2r3Sdg1s2FZO0kIsd82kJNcCfh/41NjNr6Kt7f02cB/gScAfVtXFwFOAf0tyQ+AVwBeq6rix5z4BeDGwF/AF4M2LDL3YGGcBz2BY66yq6y7y/LcAnwFuQCuaQxd4zH2A3wEeCDx5uNx3GHMP4NWLLHshhwDvAK4/jP2fSXZNshPwXuB0YD/gfsBzkjxweN4LgZsPlwcCh+3AWI8E5oC7DOM+pap+DhwPPHHscY8HPlxV378K38d/0Ap05P3ALYEbAp9j+HlV1WeBHwAPGHvsocDoZ31/Wh7zvR24J7DTsNUA4I5VdfPhe/g0cO/h9nsDHwM+Pu+20Vr7McAvaWvydx7m8jSAJIcAzwceBew9LOet8yeT5ODh9kdX1eYFE5G2paq8eJmJC3AOcCnwI+AXwHeAOwz37Qz8HLjt2OOfDmweu/4q2ubY84EbjN1+DHD82PU9gCuAmwzXi/aLeptj0Er449uY/01pv/SvNXbbm4A3DV+vH8b67bH7Pww8c+z6rYfvfRdgA3DeAhkdNHx9BPCpsft2Ai6gleTdgW/Pe+7zgDcOX38TOHjsvo3zx5r33Jr3+GfSCpzRWECG61uAxy6ynAUzBA4GfrHIc647jL/ncP25wJuHr68P/BTYZ7j+y/F5ji3jNsMy9hv/mY/dfwRwwvD16bQ3FgfPu+0wYB3w38BuY899PLBp+Pr9wFPn/Ux+Cuw/Nu7zgG8Bt5/2a87L7F5cc9eseUS1teLfAp4FfDTJjWhr3LvSfimOfIu2VjpyJHB74Jiq+sG85Z47+qKqLgUupu2PHbcjY2zLvsDFVfXThcZd5LZ9FxhvF1qJ7Ijx7+tXwHnDMvcH9k3yo9GFtkY5Wu6+8+YxPoftjjU8ft9h3E/TCmxDktvQ3ii9ZwfnP7If7WdCkp2TvCTJN5JcQntDA+3nA+0N08OS7A48FvhYVV0w3HcR7XiN+fYBfgX8cJHxTwHuleT6wN5V9TXgVNq++OvT/l+dQst1V+CCsVxfT9vCwHD/K8fuuxgIW/8feg7w9qo6c0eCkRZiuWsmVdsf+x+0Nex70X5p/4L2y3PkprS1dIZ9nkfSNs8+M1f+c6NfH3WfZA/aGt935j1mm2PQ1rq25QLg+sMuhSuNO/7tjX39nQXG+yXtYMLLgF8va/ge5+/HHv++dgJuPCzzXODsqrru2OXaVfXgsbmOz+2m2/ne5n8vN2Xr/I6lbZo/FHhntWMmropH0jZhA/wBbbP/QbRdJOuH2wNQVecDn6Rt+j6Utj995GTgMQss/7G0XSo/XeA+huXtCfwR7YA8quoS2vf4R8B3qupsWq7/Dew1lut1qup2w3LOBZ4+L/fdqurUsbEeAzwiyZ9tLxRpUdPedODFy45e2HqTc2i/4H8J3G647U20I5+vTSvErwBPG+77G9qa1s60NdRTgZ2H+44BLqG9SbgGbZ/8J8bG/fUm2u2McfAwx2ts43v4FPCyYZx7AD/mypvldxl7/NOAr9GO7N6DdhDh6PF70taIH0JbW3zhkMf4Zvlf0EpuF+AvhvntOuTwOdom7N2G67cH7jo896W0g9iuR3tD8EW2v1n+w8PjbzLksnHs/pvQ1lK/Bdx7G8t5MsNm+WFON6PtTrmU3+yCeSbtuIjrALsDr+XKm9GfQNsFcwlb7wa5JW23zt/T3sBdG3g27Y3SPRf6mY/ddirtTdWfjt32quG2N4/d9m7glcP8dqIdt3Cf4b5HAmfym/+zewKPmT8u7c3RN4E/nvbrzstsXlxz16x573A08yW0X9CHVdXoT5ZGv6S/STvY6S3A0UkOoBXbk6rqClpxFXD42HLfQivHi4ED2PoAsHELjjHc9xHan099N8lFizz/CbRS/wHwd8DbaGt6izmatuZ5CnA28LNhDlTVj2lF9wba1oPLaJvdx72bduDhD2lrsY+qql8MOTyUdrT32bStEm+glQ3Ai2hFfDbwQbZe+13Mu4HTaMV7InDU6I6qOpf2ZqL4zRr4Yu4x9jPeTCvJu1bVGcP9xw1zOx/4MlsfVDlyAu3N1wk1tjZebXP6vYA70t7oXAA8GnhgVX1iO/P6KG3z+vhnGXxsuG38T+CeRHvz9mVa7u9k2BVQVSfQ/v8dP+xSOBN40PyBqurbtIMcD0/ytO3MS7qS0QEu0pqV5BjaWulfT2HstwFfqaoXTmDZR9DWPhd7o7KikhxN23y9IjkPf8b29Ko6eSXGk1aTtfohGdJUJLkrbevA2bQ/kToEeMlUJ7UCkqyn7R5YkY9yTfJo2laCj6zEeNJqY7lLK+tGtL/ZvgFtE/ofV9XnpzulyUryYuDPgX+odtDZpMfbTPtwo0Or/YWAtOa4WV6SpM54QJ0kSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWu6RllaSS3GLa85DWMstdmjFJzklyeZKfJPlRklOTPCPJkl/PSY5J8vNh2T9JcmaSf0iy53LMXdLKsNyl2fSwqro2sD/wEuC5wFHLtOyXDcveG/hD4HeBTyTZfZmWL2nCLHdphlXVj6vqPcDvA4cluX2SayZ5eZJvJ/lektcl2Q0gyYYk5yV5fpKLhq0AT1hk2T+rqs8CDwduQCt6huU8JclZSX6Y5ANJ9l9oGUkekuTzSS5Jcm6SI8buOzHJs+c9/otJHrnUXKS1znKXOlBVnwHOA36PtiZ/K+BOwC2A/YC/HXv4jYC9htsPA45McuttLPsnwIeGZZPkEOD5wKNoa/cfA966yNMvA54EXBd4CPDHSR4x3Hcs8MTRA5PccZjTiTv4bUtahOUu9eM7wPWBjcCfV9XFQzH/X+Bx8x77N1X131X1UVqZPnYHlw3wDOAfquqsqvrlsPw7LbT2XlWbq+qMqvpVVX2R9ibgPsPd7wFuleSWw/VDgbdV1c+vyjct6cosd6kf+wG7ANcCThsOtvsRcBJtDXvkh1V12dj1bwH77sCyLx6+3h945djyLwYyPGYrSe6eZFOS7yf5Me2NwV7QNvsDbwOeOBwM+Hjg36/SdyxpQZa71IEkd6WV638ClwO3q6rrDpc9q2qPsYdfb97BcTelrZkvtuw9gINom98BzgWePrb861bVblV16gJPfwttDf0mVbUn8DraG4GRY4EnAPcDflpVn7wq37ekhVnu0gxLcp0kDwWOB95UVacD/wa8IskNh8fsl+SB8576oiTXSPJ7wEOBdyyw7GsmOYD2huGHwBuHu14HPC/J7YbH7ZnkMYtM8drAxVX1syR3A/5g/M6hzH8F/COutUvLxnKXZtN7k/yEthb9AuCf+M3R7M8Fvg58KsklwMnA+AFz36WV9XeANwPPqKqvjN3/V8OyfwAcB5wGHDjalF9VJwAvBY4fln8m8KBF5vlM4P8My/tb4O0LPOY44A7Am3b825e0Lamqac9B0gpJsoG2hn/jac9lJMmTgI1Vda9pz0XqhWvukqYmybVoa/dHTnsuUk8sd0lTMRwH8H3ge7QD7yQtEzfLS5LUGdfcJUnqjOUuSVJndpn2BMbttddetX79+qnO4bLLLmP33T35lTk05tCYgxmMmEOzGnI47bTTLqqqvRe6b1WV+/r169myZctU57B582Y2bNgw1TmsBubQmENjDmYwYg7NasghybcWu8/N8pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjqzqk75Ok1JrnRbVU1hJtNlDo05NOZgBiPm0MxKDq65s/APa1u398ocGnNozMEMRsyhmaUcLPcxVcWmTZtW5buwlWQOjTk05mAGI+bQzEIOlrskSZ2x3CVJ6owH1I1ZjftNpsEcGnNozMEMRsyhmYUcXHNn8SMdV/P+lEkwh8YcGnMwgxFzaGYpB8t9UFVbHSSxGn9YK8EcGnNozMEMRsyhmZUcLHdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ1ZlnJPcnSSC5OcOXbbEUnOT/KF4fLg5RhLkiRt23J9Qt0xwKuB4+bd/oqqevkyjTFRs3Iav0kzh8YcGnMwgxFzaGYlh2VZc6+qU4CLl2NZ0zBLp/GbJHNozKExBzMYMYdmlnKY9D73ZyX54rDZ/noTHmvJZuE0fivBHBpzaMzBDEbMoZmFHCZ54ph/BV4M1PDvPwJPmf+gJBuBjQDr1q1j8+bNE5zStm3evJlLL710qzlMcz7TYg6NOTTmYAYj5tDMQg5ZrnceSdYD76uq21+V+8bNzc3Vli1blmU+V8Vok0pVsXnzZjZs2LDVbWuFOTTm0JiDGYyYQ7PackhyWlXNLXTfxNbck+xTVRcMVx8JnLmtx68Gq3G/yTSYQ2MOjTmYwYg5NLOQw7KUe5K3AhuAvZKcB7wQ2JDkTrTN8ucAT1+OsSahqmbmCMhJMofGHBpzMIMRc2hmKYflOlr+8VW1T1XtWlU3rqqjqurQqrpDVf2Pqnr42Fr8qjQrp/GbNHNozKExBzMYMYdmVnLwE+okSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOT/Gz5mTIrH0wwaebQmENjDmYwYg7NrOTgmjuzdRq/STKHxhwaczCDEXNoZikHy33MLJzGbyWYQ2MOjTmYwYg5NLOQg+UuSVJnLHdJkjrjAXVjVuN+k2kwh8YcGnMwgxFzaGYhB9fcWfxIx9W8P2USzKExh8YczGDEHJpZysFyH8zKafwmzRwac2jMwQxGzKGZlRwsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnfFDbAazcqafSTOHxhwaczCDEXNoZiUH19yZrTP9TJI5NObQmIMZjJhDM0s5WO5jZuFMPyvBHBpzaMzBDEbMoZmFHCx3SZI6Y7lLktQZD6gbsxr3m0yDOTTm0JiDGYyYQzMLObjmzmyd6WeSzKExh8YczGDEHJpZysFyH8zKmX4mzRwac2jMwQxGzKGZlRwsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjJ9QN5iV0/hNmjk05iBtzddEMys5uObObJ3Gb5LMoTEHaWu+JppZysFyHzMLp/FbCebQmIO0NV8TzSzk4GZ5aY1brrWO1fyLbkeYg3rimru0xo0+H3tbl/2f+77tPmbWLUcGPeSgPrjmPmY17jeZBnNozEHamq+JZhZycM2d2TqN3ySZQ2MO0tZ8TTSzlIPlPpiV0/hNmjk05iBtzddEMys5WO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjrjh9gMZuVMP5NmDo05SFvzNdHMSg6uuTNbZ/qZJHNozEHamq+JZpZysNzHzMKZflaCOTTmIG3N10QzCzlY7pIkdcZylySpMx5QN2Y17jeZBnNozEHamq+JZhZycM2d2TrTzySZQ2MO0tZ8TTSzlIPlPpiVM/1Mmjk05iBtzddEMys5WO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjqzLOWe5OgkFyY5c+y26yf5UJKvDf9ebznGkiRJ27Zca+7HAAfPu+1w4MNVdUvgw8N1SZI0YctS7lV1CnDxvJsPAY4dvj4WeMRyjCVJkrZtkvvc11XVBcPX3wXWTXAsSZI0WJETx1RVJVnwM/qSbAQ2Aqxbt47NmzdPdC73ve99l7yMTZs2LcNMpsscGnPYcZN+bc6CtZCBr4lm1nOYZLl/L8k+VXVBkn2ACxd6UFUdCRwJMDc3Vxs2bJjglLb/Af/rDz+Rc17ykInOYTUwh8YcdtBJJzLp1+aqt0Yy8DXRzHoOk9ws/x7gsOHrw4B3T3AsSZI0WK4/hXsr8Eng1knOS/JU4CXA/ZN8DThouC5JkiZsWTbLV9XjF7nrfsuxfEmStOP8hDpJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmd2mfQASc4BfgJcAfyyquYmPaYkSWvZxMt9cN+qumiFxpIkaU1zs7wkSZ1ZiTX3Aj6YpIDXV9WR43cm2QhsBFi3bh2bN29egSlt22qYw2pgDo05NOZgBiPm0KzmHFai3O9VVecnuSHwoSRfqapTRncOZX8kwNzcXG3YsGEFprQNJ53I1OewGphDYw6NOZjBiDk0qzyHiW+Wr6rzh38vBE4A7jbpMSVJWssmWu5Jdk9y7dHXwAOAMyc5piRJa92kN8uvA05IMhrrLVV10oTHlCRpTZtouVfVN4E7TnIMSZK0Nf8UTpKkzljukiR1xnKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmd2mfYEJE3WHV/0QX58+S+WvJz1h594tZ+75267cvoLH7DkOSzFcuSwlAxgdeSgtcFylzr348t/wTkveciSlrF582Y2bNhwtZ+/1FJcDkvNYakZwOrIQWuDm+UlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjpjuUuS1BnLXZKkznR3VjhP6+gpPkfMQboyf0c2vefQXbl7WkdP8TliDtKV+Tuy6T0HN8tLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUmYmXe5KDk3w1ydeTHD7p8SRJWusmWu5JdgZeAzwIuC3w+CS3neSYkiStdZNec78b8PWq+mZV/Rw4HjhkwmNKkrSmTfrEMfsB545dPw+4+/gDkmwENgKsW7eOzZs3L3nQpSzj0ksvnfoclsNSx1+OHKadwXLMwRwac+jnd8NS52AOzarPoaomdgH+F/CGseuHAq9e7PEHHHBALdX+z33fkp6/adOmqc9hNYy/1BymncFyzcEcGnPo43fDcszBHJrVkAOwpRbp00lvlj8fuMnY9RsPt0mSpAmZdLl/FrhlkpsluQbwOOA9Ex5TkqQ1baL73Kvql0meBXwA2Bk4uqq+NMkxJUla6yZ9QB1V9V/Af016HEmS1PgJdZIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktSZVNW05/Brc3NztWXLliUt4w7H3mGZZrM0Zxx2xtTGNoPGHBpzaMyhMYemhxySnFZVcwveWVWr5nLAAQfUUu3/3Pct6fmbNm2a+hxWw/hLzWHaGSzXHMyhMYc+fjcsxxzMoVkNOQBbapE+dbO8JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjpjuUuS1BnLXZKkzkys3JMckeT8JF8YLg+e1FiSJOk3dpnw8l9RVS+f8BiSJGmMm+UlSerMpMv9WUm+mOToJNeb8FiSJAlIVV39JycnAzda4K4XAJ8CLgIKeDGwT1U9ZYFlbAQ2Aqxbt+6A448//mrPB+DJJ122pOcvh913hdfcb/epjW8GjTk05tCYQ2MOTQ853Pe+9z2tquYWum9J5b6jkqwH3ldVt9/W4+bm5mrLli0Tn8+2rD/8RM55yUOmOofVwBwac2jMwQxGzKFZDTkkWbTcJ3m0/D5jVx8JnDmpsSRJ0m9M8mj5lyW5E22z/DnA0yc4liRJGkys3Kvq0EktW5IkLc4/hZMkqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOWuyRJnbHcJUnqjOUuSVJnLHdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdWZJ5Z7kMUm+lORXSebm3fe8JF9P8tUkD1zaNCVJ0o7aZYnPPxN4FPD68RuT3BZ4HHA7YF/g5CS3qqorljieJEnajiWtuVfVWVX11QXuOgQ4vqr+u6rOBr4O3G0pY0mSpB0zqX3u+wHnjl0/b7hNkiRN2HY3yyc5GbjRAne9oKrevdQJJNkIbARYt24dmzdvXuoil2w1zGE1MIfGHBpzMIMRc2hWcw7bLfeqOuhqLPd84CZj12883LbQ8o8EjgSYm5urDRs2XI3hltFJJzL1OawG5tCYQ2MOZjBiDs0qz2FSm+XfAzwuyTWT3Ay4JfCZCY0lSZLGLPVP4R6Z5DzgHsCJST4AUFVfAt4OfBk4CfgTj5SXJGllLOlP4arqBOCERe77e+Dvl7J8SZJ01fkJdZIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHUmVTXtOfza3NxcbdmyZaJjJFnyMlZTZleXOTTmsDwZgDmMmMPsZwCzkUOS06pqbqH71tyae1Vt87Jp06btPqYH5tCYw/YzMIcdz8Ac+sgAZj+HNVfukiT1znKXJKkzlrskSZ2x3CVJ6ozlLklSZyx3SZI6Y7lLktQZy12SpM5Y7pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd0mSOmO5S5LUGctdkqTOWO6SJHXGcpckqTOpqmnP4deSfB/41pSnsRdw0ZTnsBqYQ2MOjTmYwYg5NKshh/2rau+F7lhV5b4aJNlSVXPTnse0mUNjDo05mMGIOTSrPQc3y0uS1BnLXZKkzljuV3bktCewSphDYw6NOZjBiDk0qzoH97lLktQZ19wlSeqM5T5IcnSSC5OcOe25TFOSmyTZlOTLSb6U5M+mPaeVluS3knwmyelDBi+a9pymKcnOST6f5H3Tnsu0JPuKt0MAAAX+SURBVDknyRlJvpBky7TnMy1JrpvknUm+kuSsJPeY9pxWWpJbD/8PRpdLkjxn2vOaz83ygyT3Bi4Fjquq2097PtOSZB9gn6r6XJJrA6cBj6iqL095aismSYDdq+rSJLsCHwf+rKo+NeWpTUWSvwDmgOtU1UOnPZ9pSHIOMFdV0/675qlKcizwsap6Q5JrANeqqh9Ne17TkmRn4Hzg7lU17c9o2Ypr7oOqOgW4eNrzmLaquqCqPjd8/RPgLGC/6c5qZVVz6XB11+GyJt8FJ7kx8BDgDdOei6YryZ7AvYGjAKrq52u52Af3A76x2oodLHdtQ5L1wJ2BT093Jitv2BT9BeBC4ENVteYyGPwz8FfAr6Y9kSkr4INJTkuycdqTmZKbAd8H3jjspnlDkt2nPakpexzw1mlPYiGWuxaUZA/gXcBzquqSac9npVXVFVV1J+DGwN2SrLldNUkeClxYVadNey6rwL2q6i7Ag4A/GXbjrTW7AHcB/rWq7gxcBhw+3SlNz7Bb4uHAO6Y9l4VY7rqSYT/zu4A3V9V/THs+0zRsdtwEHDztuUzBPYGHD/ubjwf+Z5I3TXdK01FV5w//XgicANxtujOaivOA88a2Yr2TVvZr1YOAz1XV96Y9kYVY7trKcDDZUcBZVfVP057PNCTZO8l1h693A+4PfGW6s1p5VfW8qrpxVa2nbX78SFU9ccrTWnFJdh8OLmXYDP0AYM39VU1VfRc4N8mth5vuB6yZA20X8HhW6SZ5aJtZBCR5K7AB2CvJecALq+qo6c5qKu4JHAqcMexzBnh+Vf3XFOe00vYBjh2OhN0JeHtVrdk/AxPrgBPa+152Ad5SVSdNd0pT82zgzcMm6W8Cfzjl+UzF8Cbv/sDTpz2XxfincJIkdcbN8pIkdcZylySpM5a7JEmdsdwlSeqM5S5JUmcsd2nGJLliOBvVl4Yz1/3vJFf7tZzkXsNZ8L4yXDaO3bd3kk8PHzf6wiT/PHbf65OcPHb92Un+5WqMf0SSv7y685d0Zf6duzR7Lh8+GpckNwTeAlwHeOFVXVCSGw3Pf8RwJsC9gA8kOb+qTqR9UMkZVfW0JHPAa8eefkdg5yQ7V9UVwIHAu5f0nUlaFq65SzNs+DjUjcCz0qxP8rEknxsuBwIkOS7JI0bPS/LmJIcAfwIcM3YmwItoJ4o5PMmdgJcBhwwfaPRV4FZJdhvOEHY58AXgDsNiDwQ+keTmSU4aTrLysSS3GcbcO8m7knx2uNxz/veT5I+SvH/4ZEBJV5PlLs24qvomsDNwQ9pZ7O4/nOTk94HRZvKjgCfDr0/deSBwInA7YP6JYbYAt6uqLwB/C7ytqu40nAL488Bdgd+lnS3wU8CBSfajfSjWucCRwLOr6gDgL/nN2v4rgVdU1V2BRzPvNLJJngU8lLYV4fKl5iKtZW6Wl/qyK/DqYa37CuBWAFX10SSvTbI3rVjfVVW/HD5S9ao4lfbGYDfgk8DXgOfTTgV66nA2wQOBd4wt+5rDvwcBtx27/TrD4wGeBJxLK/ZfXNVJSdqa5S7NuCS/TSvyC2n73b9H2x++E/CzsYceBzyRdhKY0WeCfxk4gK33lR8AfGmR4T4BPAP4LeA1tFK/7fDvqcOYPxodEzDPTsDvVtX4nBjK/gxgdIrds7fzLUvaDjfLSzNsWBN/HfDqaieK2BO4oKp+RTsB0M5jDz8GeA5AVY3O5vUa4MnDmj5JbgC8lLavfSGfpG2S37uqLhzG/D5wCPCJqroEODvJY4blJckdh+d+kHbikdHcx98AfJ52Eo73JNn3KgchaSuWuzR7dhv9KRxwMq00XzTc91rgsCSnA7cBLhs9aTjv9FnAG8duu4C2Nv9vSb5CW/s+uqreu9DAVfVDWpmPr9l/kra///Th+hOApw5z+BKt+AH+FJhL8sUkX6ZtARhf9sdp++hPHI7al3Q1eVY4aY1Ici3a5u+7VNWPpz0fSZPjmru0BiQ5iLbW/iqLXeqfa+6SJHXGNXdJkjpjuUuS1BnLXZKkzljukiR1xnKXJKkzlrskSZ35/8PpK/aIauroAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAfcAAAILCAYAAAD1zdXYAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nO3de7gkVX3v//eXmcEQEIiKIwJhiBoQkUsYMXjLEFC5hVuCQQkMqFwiohI0gJiD+Xk0coxwUPGCykXRjIISCIiiZHZUFA3ITRF+gkAAUTSoCBqB4Xv+WNVYs+npPdB7T/de9X49Tz+z1+ruqlWf3bO/XVWrqyMzkSRJ9Vht1AOQJEnTy+IuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzu0hQiIiPimaMexyhFxKKIuGPA/VVlFBF7R8TtEXFfRGyzCtdbVY4aHYu7Zo2IuDUiftP8wf15RFwUERuNelw9EXFQRHx91OOYzZoMlzW/4/si4paIOCMi/nga17F5RFwQEb+MiF9FxNKIeMGkh/0z8PrMXAvYOSIunrSMH6ygb7/pGqc0DIu7Zpu/aP7grg/8BHj/iMczYyJi7qjHMCLfbH7H6wA7Ab8BroyILYZdcEQ8A7gMuA7YBHg6cB5wSURs33roxsD3mp+/CrwgIuY0y1gfmAdsM6nvmc1jpZGzuGtWysz/Ac4FNu/1RcQ6EfGJiPhpRNwWEW+LiNUi4kkRcUdE/EXzuLUi4qaIOLBpnxkRH46ILzd7cv8RERv3W++AdTwb+DCwfbPH+YsVPH+TiPhqs56vRMSpEXF2c9+C5rDsayLiv4B/b5b9tmZddzfrXqd5/KMOlTdHN3Zqfn57RJwbEZ9p1vediNiq9dinR8Tnmm25JSLe0LpvjSaXn0fE9cDzVuLXsmtE/DAifhYR72nGvnpE3BMRz20t+6kR8euIWG/QwjJzWWbenJmvA/4DeHtrGedExI+bve+vRsRzmv7nRcRPekW36dsnIq5pmm+nvHk4PjPvycxfZeb7gE8CJ0bEEyLiPmAOcE1E3Az8J6WYb90s48XAUuDGSX03Z+aPmtfIxyPiroi4MyL+96TxvDoivt9k+6UBr7UXRTk1sGhQTlI/FnfNShHx+8BfA5e3ut9P2dv7I+DPgAOBgzPzHuDVwEcj4qnAycDVmfmJ1nP3B94BPAW4GvjUCla9onV8HzicZq8zM9ddwfM/DXwbeDKl0BzQ5zF/BjwbeDlwUHPboVnnWsAHVrDsfvYEzgGe1Kz7XyNiXkSsBvwbcA2wAbAj8KaIeHnzvBOAZzS3lwOLV2JdewMLgT9p1vvqzHwAWAL8TetxrwQuzcyfPobt+DylgPZcDDwLeCrwHZrfV2b+J/DfwMtajz0A6P2uX0rJY7LPAi8EVmuOGgBslZnPaLbhW8BLmv6XAF8Dvj6pr7fXfibwEGVPfptmLK8FiIg9gbcC+wDrNcv5l8mDiYidm/6/zMyJvolIg2SmN2+z4gbcCtwH/AJ4EPgR8NzmvjnAA8DmrccfBky02u+nHI69E3hyq/9MYEmrvRawDNioaSflD/XAdVCK8NcHjP8PKX/0f7/VdzZwdvPzgmZdf9S6/1Lgda32ps22zwUWAXf0yWin5ue3A5e37lsNuItSJJ8P/Nek5x4HnNH8/ENg59Z9h05e16Tn5qTHv45SwOmtC4imfQXwihUsp2+GwM7Agyt4zrrN+tdp2scAn2p+fhLwa2D9pv1Qe5ytZWzWLGOD9u+8df/bgfOan6+hvLHYeVLfYmA+8FtgjdZzXwksbX6+GHjNpN/Jr4GNW+s9DrgN2GLU/+e8zd6be+6abfbKslf8e8Drgf+IiKdR9rjnUf4o9txG2SvtOQ3YAjgzM/970nJv7/2QmfcB91DOx7atzDoGeTpwT2b+ut96V9D39D7rm0spIiujvV0PA3c0y9wYeHpE/KJ3o+xR9pb79EnjaI9hynU1j396s95vUQrYoojYjPJG6YKVHH/PBpTfCRExJyLeHRE3R8S9lDc0UH4/UN4w/UVErAm8AvhaZt7V3PczynyNydYHHgZ+voL1fxV4UUQ8CVgvM38AfINyLv5JlNfVVym5zgPuauX6EcoRBpr7T2nddw8QLP8aehPw2cz87soEI/VjcdeslOV87Ocpe9gvovzRfpDyx7PnDyl76TTnPE+jHJ59XTz640aPzLqPiLUoe3w/mvSYgeug7HUNchfwpOaUwqPW29681s8/6rO+hyiTCe8HHllWs42Tz2O3t2s1YMNmmbcDt2Tmuq3bEzNz19ZY22P7wym2bfK2/CHL53cW5dD8AcC5WeZMPBZ7Uw5hA7yKcth/J8opkgVNfwBk5p3ANymHvg+gnE/v+Qqwb5/lv4JySuXXfe6jWd46wCGUCXlk5r2UbTwE+FFm3kLJ9bfAU1q5rp2Zz2mWcztw2KTc18jMb7TWtS+wV0S8capQpBUa9aEDb95W9sbyh5yD8gf+IeA5Td/ZlJnPT6QUxBuA1zb3/QNlT2sOZQ/1G8Cc5r4zgXspbxJWp5yTv6y13kcO0U6xjp2bMa4+YBsuB/5Ps57tgV/y6MPyc1uPfy3wA8rM7rUokwh7j1+Hske8G2Vv8YQmj/Zh+QcpRW4u8HfN+OY1OXyHcgh7jaa9BfC85rknUiax/QHlDcG1TH1Y/tLm8Rs1uRzaun8jyl7qbcBLBiznIJrD8s2YNqGcTrmP352CeR1lXsTawJrAB3n0YfT9Kadg7mX50yDPopzWeSflDdwTgSMpb5Re2O933ur7BuVN1Rtafe9v+j7V6jsfOKUZ32qUeQt/1ty3N/BdfveaXQfYd/J6KW+Ofgj87aj/33mbnTf33DXb/Fszm/leyh/oxZnZ+8hS74/0DymTnT4NnB4R21IK24GZuYxSuBI4trXcT1OK4z3Atiw/Aayt7zqa+/6d8vGpH0fEz1bw/P0pRf2/gf8NfIayp7cip1P2PL8K3AL8TzMGMvOXlEL3McrRg/sph93bzqdMPPw5ZS92n8x8sMlhd8ps71soRyU+Rik2AP9IKcS3AJew/N7vipwPXEkpvBcBH+/dkZm3U95MJL/bA1+R7Vu/4wlKkXxeZl7X3P+JZmx3Atez/KTKnvMob77Oy9beeJbD6S8CtqK80bkL+Evg5Zl52RTj+g/K4fX2tQy+1vS1PwJ3IOXN2/WU3M+lORWQmedRXn9LmlMK3wV2mbyizPwvyiTHYyPitVOMS3qU3gQXqbMi4kzKXunbRrDuzwA3ZOYJM7Dst1P2Plf0RmWViojTKYevV0nOzcfYDsvMr6yK9UnjpKsXyZBGIiKeRzk6cAvlI1J7Au8e6aBWgYhYQDk9sEou5RoRf0k5SvDvq2J90rixuEur1tMon9l+MuUQ+t9m5lWjHdLMioh3AEcB/5Rl0tlMr2+CcnGjA7J8QkDqHA/LS5JUGSfUSZJUGYu7JEmVsbhLklQZi7skSZWxuEuSVBmLuyRJlbG4S5JUGYu7JEmVsbhLklQZi7skSZWxuEuSVBmLuyRJlbG4S5JUGYu7JEmVsbhLklQZi7skSZWxuEsaSkQsiog7Rj0OSb9jcZcqEBETEfHziHjC43jurRHxm4j4VUT8IiK+ERGHR4R/H6RZyv+80iwXEQuAFwMJ7DHgcXMmtee2mn+RmU8ENgbeDRwDfHy6xypp1bC4S7PfgcDlwJnA4l5nRJwZER+KiC9ExP3ADs1e+jERcS1w/6QCT2b+MjMvAP4aWBwRWzTLekJE/HNE/FdE/CQiPhwRa/QbTEQcGxE3N0cCro+IvZv+1SPinoh4buuxT42IX0fEetMbidRtFndp9jsQ+FRze3lEzG/d9yrgncATga83fa8EdgPWzcyH+i0wM78N3EE5IgBlb/6Pga2BZwIbAP9rBeO5uXneOsA/AmdHxPqZ+QCwBPib1mNfCVyamT9d6a2VNCWLuzSLRcSLKIfSP5uZV1IK66taDzk/My/LzIcz83+avvdl5u2Z+ZspFv8j4EkREcChwFGZeU9m/gp4F7Bfvydl5jmZ+aNmnZ8BfgBs19x9FvDKZpkABwCffGxbLWkqFndpdlsMXJKZP2van6Z1aB64vc9z+vX1swFwD7Ae8PvAlc2Eu18AX2z6HyUiDoyIq1uP3QJ4CkBmfgv4NbAoIjajHAW4YCXHI2klzZ36IZLGUXPO+xXAnIj4cdP9BGDdiNiqaWefp/brm7zs51GK+9eBnwG/AZ6TmXdO8byNgY8COwLfzMxlEXE1EK2HnUU5NP9j4NzWEQVJ08TiLs1eewHLgOcCD7T6P0s5D/+YRcTawEuAU4CzM/O6pv+jwMkR8frMvDsiNgC2yMwvTVrEmpQ3Dz9tnncwZc+97WzgGuBXlMPykqaZh+Wl2WsxcEZm/ldm/rh3Az4A7M9je/P+bxHxK8oh++OBk4CDW/cfA9wEXB4R9wJfATadvJDMvB54L/BN4CeUNx6XTXrM7cB3KG8CvvYYxihpJUXmlEfoJGlaRcTpwI8y822jHotUIw/LS1qlmovu7ANsM9qRSPXysLykVSYi3gF8F3hPZt4y6vFItfKwvCRJlXHPXZKkykxbcY+IORFxVURc2LQ3iYhvRcRNEfGZiFh9utYlSZJWbNoOy0fE3wELgbUzc/eI+Czw+cxcEhEfBq7JzA8NWsZTnvKUXLBgwbSM5/G6//77WXPNNUc6hnFgDoU5FOZgBj3mUIxDDldeeeXPMrPvlSKnZbZ8RGxI+SKKdwJ/11w3+s/53TWuzwLeDgws7gsWLOCKK66YjiE9bhMTEyxatGikYxgH5lCYQ2EOZtBjDsU45BARt63wvunYc4+Ic4F/onzz1JuBg4DLM/OZzf0bARdn5uQrVRERh1K+lIL58+dvu2TJkqHHM4z77ruPtdZaa6RjGAfmUJhDYQ5m0GMOxTjksMMOO1yZmQv73Tf0nntE7A7cnZlXRsSix/r8zDwNOA1g4cKFOep3QuPwbmwcmENhDoU5mEGPORTjnsN0HJZ/IbBHROwK/B6wNuW61OtGxNzm+6I3BAZ+4YQkSZoeQ8+Wz8zjMnPDzFxA+X7nf8/M/YGlwF81D1sMnD/suiRJ0tRm8nPux1Am190EPBn4+AyuS5IkNab12vKZOQFMND//ENhuOpcvSZKm5hXqJEmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKTOtFbGaz8i21y5uu77qfTcyhMIfCHMygxxyK2ZKDe+4s/8s67rjj+vZ3gTkU7e193ete17e/C9rbe/TRR/ftr117W//+7/++b38X9LZ33rx5nHLKKcybN2+5/q5ob+8JJ5zQt39cWNxbMpOXvexlY/kubFUyhyIz2Xfffc0hk913373TOWQmu+yyS6czmDdvHg888ABbbrklDzzwwCMFvosyk0WLFo3168Hi3jj77LMHtrvCHIr3ve99A9td8bGPfWxguwvOPPPMge2uWLp06cB2V5x77rkD2+Mixumdx8KFC/OKK65Y5evtHVLJTCYmJli0aNFyfV1hDoU5FOZgBj0R8cieey+H1VdfnQcffLBzOcD4vB4i4srMXNjvPvfcWyKCSy65ZCzPn6xK5lBEBOecc445RHDhhRd2OoeI4OKLL+50Bg8++CCrr74611577SOFvasigomJibF+Pbjn3pgtMyBnmjkU5lCYgxn0mEMxTjm45z6F2TQDcia1t/dtb3tb3/4ucIZ00d7eN73pTX37a9fe1le/+tV9+7ugt71z5szhpJNOYs6cOcv1d8Vs+tSAxb1lNsyAXBUykx133NEcnCENlBz23HPPTueQmRxwwAGdzmDOnDk89NBDbLPNNjz00EOPFPiumS2fGrC4N2bLDMiZtmTJkoHtrnCGdPHhD394YLsLTjzxxIHtrrj00ksHtrtitnxqwHPujN8MyFExh8IcCnMwg56IeGTPvZfD3LlzWbZsWedyGKdPDXjOfSXNhhmQq0JEcOmll5qDM6SBksP555/f6Rwigk9+8pOdzmDZsmXMnTuXq6666pHC3kWz5VMD7rk3xmkG5CiZQ2EOhTmYQY85FOOUg3vuU2j/so488si+/V3Q297VVluN97znPay22mrL9XdFe3sPO+ywvv1d4Axpr6/fM5tmic+k2VQrLO4tmck+++zTyXejPautthrLli1j4cKFLFu27JEC30WZyX777dfp14MzpAuvrz97ZomvCrOhVnT3L/ckp5566sB2V1xyySUD211x8sknD2x3hTOkvb5+z2yZJT7TZkut8Jw7zojtiYhH9tx7OcyZM4eHH364czmArwdnSPta6Bm3WeKjMm6vB8+5r6SI4POf//xYnj9ZVR5++GHmzJnDFVdc8Uhh76qIYMmSJZ1+PThDuvD6+rNnlviqMBtqhXvujXGaATlK5lCYQ2EOZtBjDsU45eCe+xS8pnrhtcSL9va+9rWv7dvfBV5XffltPeigg/r2d4GfpClmUw4W9xavqV54LfEiM9l///3Nweuqk5ksXry40xn4SZpituQwnqMaAa+pXngt8eKf//mfB7a7wuuqw7ve9a6B7a7wkzTFbMnBc+6M3wzIUTGHwhwKczCDHj9JU4xbDoPOuc9d1YMZZ+N43mQUzKEwh8IczADKJ2nMYfbk4GF5SZIqY3FvyUyWLl3aqcNM/ZhDYQ6FOZhBjzkUsyEHi3vDiWTFueeeO7DdFf/wD/8wsN0V73jHOwa2u8DLzxYXXnjhwHZXzJYJlk6ow0kzPeZQmENhDmbQYw7FuOXgRWxWUkRw/vnnz4rJEjMpIpiYmDCHCD760Y+aQwRnnHFGp3Pw8rNFRPCNb3zDHCI466yzxjoH99wb43RJwVEyh8IcCnMwgx5zKMYpB/fcp9D+Zb3qVa/q298F7e19xSte0be/C3w9FO3t3X333fv2187XQtHe3gMPPLBvfxe0t/d1r3td3/5xYXFvyUwOOeSQTr4bbctM/vZv/9YcfD0AJYejjz660zn4Wigyk4MPPtgcMtl3333HOgeLe8PZ0cUxxxwzsN0Vvh6Kww8/fGC7C3wtFH5yonjf+943sD0uPOfO+M2AHBVzKMyhMAcz6DGHYtxy8Jz7SnJ2dBERfOhDHzIHXw9AyeG9731vp3PwtVD4yYkiIjjnnHPGOgf33BvjNANylMyhMIfCHMygxxyKccrBPfcptH9ZL3vZy/r2d4Ezg4v29u600059+7ugvb377bdf3/7atbd1n3326dvfBe3tPfroo/v2d8Fs+j9hcW/JTI477rhOvhttc2ZwkZkcf/zx5pDJYYcd1ukcMpMjjzyy0xlAyWH33Xc3h1nwf8Li3jj44IMHtrvCmcHF4sWLB7a74q1vfevAdhccddRRA9td4TX2i9nyf8Jz7ozfDMhRMYfCHApzMIMecyjGLYdB59znTsPCfw/4KvCEZnnnZuYJEbEJsAR4MnAlcEBmPjDs+mbSOJ43GQVzKMyhMAcz6DGHYjbkMB2H5X8L/HlmbgVsDewcEX8KnAicnJnPBH4OvGYa1iVJkqYwdHHP4r6mOa+5JfDnQO/LwM8C9hp2XTMtM1m6dGmnDjP1Yw6FORTmYAY95lDMhhyGPiwPEBFzKIfenwmcCtwM/CIzH2oecgewwQqeeyhwKMD8+fOZmJiYjiE9ZrvuuisTExPcd999TExMsOuuu/KFL3xhZOMZlb322mu5HPbaay/+9V//1Rw6msN22223XA7bbbcd3/72tzuVw8KFC5fLYOHChVxxxRWdygDKR+DaORx99NG8973v7VwOBx100HI5HHTQQZx55pnjl0NmTtsNWBdYCrwIuKnVvxHw3amev+222+YoUI40ZGbm0qVLH9XXFeZQmENhDmbQYw7FuOUAXJErqKfT+lG4zPxFU9y3B9aNiN6RgQ2BO6dzXTMhInjPe94zKyZLzKSI4JRTTjEHcwBKDsccc0ync4gI3vKWt3Q6Ayg5XHjhheYQwVlnnTXWOQz9UbiIWA94MDN/ERFrAJdQJtMtBj6XmUsi4sPAtZn5wUHL8vKzo2cOhTkU5mAGPeZQjFMOM3352fWBpRFxLfCfwJcz80LgGODvIuImysfhPj4N65oR7V/Wrrvu2re/C2bTpRVnkpcjLvx/sfy2/tVf/VXf/i5ob+9hhx3Wt78L2tu7xx579O0fF9MxW/7azNwmM7fMzC0y8/9r+n+Ymdtl5jMzc9/M/O3ww51Zmclb3vKWTr4bbctZcGnFVSG9HDHg/wsoGRxxxBGdzgBKDvvtt585ZHLUUUeNdQ5efrZxyCGHDGx3xWy5tOJM83LEhf8v4M1vfvPAdlecfPLJA9tdccQRRwxsjwsvP8v4XVJwVMyhMIfCHMygxxyKccvBr3xdSc6WLyKCj3zkI+YQwT/90z+Zg/8viAhOPfXUTmcAJYclS5aYQwQnn3zyWOfgnntjnGZAjpI5FOZQmIMZ9JhDMU45uOc+hfYva7vttuvb3wXt7d1nn3369ndBe3u32Wabvv1d0N7ezTffvG9/7drbuvPOO/ft74L29u6+++59+7ugvb177bVX3/5xYXFvyUxOPPHETr4bbctMjjzySHPI5KSTTjKHTE499dRO55CZHHPMMZ3OAEoORx99tDlk8sY3vnGsc7C4N/bee++B7a446qijBra7YrfddhvY7ooXv/jFA9td8JrXvGZguysOP/zwge2ueMMb3jCwPS485874zYAcFXMozKEwBzPoMYdi3HIYdM59Wr4VrhbjeN5kFMyhMIfCHMygxxyK2ZCDh+UlSaqMxb0lM1m6dGmnDjP1Yw6FORTmYAY95lDMhhws7o3nP//5A9tdMVsurTjTfD0UTqhb/uOQ/dpd8Y53vGNguyv233//ge1x4YQ6xm+SxKiYQ2EOhTmYQY85FOOWgxPqVlJEsOmmm3LjjTeOeigjFRHsscce7LDDDqMeykj5eigigs0335zrr79+1EMZmYjgGc94BjfffPOohzJSEcGBBx7o34YIFi1aNNY5uOfeGKdLCo6SORTmUJiDGfSYQzFOOXj52Sm0f1kLFizo298F7e3ddddd+/Z3QXt7N9tss779XdDe3g033LBvf+3a27rlllv27e+C9vYedNBBffu7oL29W2+9dd/+cWFxb8lMzjjjjE6+G23LTN7ylreYQyYf+tCHzCGTT37yk53OITM55ZRTOp0BlBwWL15sDpmcfPLJY52Dxb3Rflfer90VhxxyyMB2V2y//fYD213R/sKYfu0ueOlLXzqw3RXvete7Bra7YpdddhnYHhcW98a11147sN0VH/3oRwe2u+Kb3/zmwHZXTJ5E18VJdV/+8pcHtrvirW9968B2V1x88cUD2+PC2fItEcGCBQu49dZbRz2UkYoIdt1117GeCboqRASbbbYZN9xww6iHMlIRwYYbbsgdd9wx6qGMTESw5ZZbdvZNf09EcNBBB/m3IYKtt96aq6++etRDWSFnyzfGaQbkKJlDYQ6FOZhBjzkU45SDs+Wn0P5lbbzxxn37u6C9vdttt13f/i5ob+/aa6/dt78rMnO5S2127Y95+3fevjJd114L7e199rOf3be/C9rbu8UWW/TtHxcW95bM5Mwzz+zcH7DJMpMTTzzRHDI5//zzO5+DymvhpJNO6vxrITP54Ac/aA6ZvP/97x/rHCzujec+97kD212x9957D2x3Rftz3f3aNYmIKW877LDDlI+p1W677Taw3RUvfOELB7a7YvJ8g3Gdf2Bxb1x33XUD211x3nnnDWx3xeTJYzVPJusdbh902/iYC6d8TK0uuuiige2uuOyyywa2u2Lp0qUD2+PC2fItEcHGG2/MbbfdNuqhjFTNe2GPhTmox9dCYQ7FbMjBPXeWn+nYLuw1741IkuplcW90fVZwWzuHLjMH9fhaKMyhmA05dK64O3FosBe/+MUD213RpQl1Guz5z3/+wHZXzJbLrs60l7/85QPb46Jzxd2JQ4N97WtfG9juii5NqNNg3/rWtwa2u2K2XHZ1pn3pS18a2B4XTqjTo0QEm2++eSevI94WEay99trce++9ox6KRiwi2HTTTbnxxhtHPZSRmg2XXV0VIoKtttqKa665ZtRDWaHO7blrxdpHJdqFvfajFZO1t7dd2LuWg5b/nbcLe9deC+3tbRf2LufQLuzjmIPFXY9ozyfYeuut+/Z3hRMs1eNrYXZddnUmtbd3k0026ds/LizuepTM5OSTT+7kHzFJKzYbLru6KmQmp59++ljnYHHXcro2I9ZPT6hnOl4LNb8eZstlV2faVlttNbA9LizuWk7XZsT66Qn1TMdroebXw2y57OpMmzyJblwn1TlbXo/ijFhJ/UQEW2yxBd/97ndHPZSRigg22WQTbrnlllEPZYXcc9cjnBErqZ/234B2Ye/a34b29rYL+zjmYHHXcpwZLGmy9lyCbbbZpm9/V8yWv5EWd0nSSslMTjrppLEtaPodz7l31HS84/Y/uNQdu+2226PaNX+3/Wz/G+mee0c5S1zSYzG5kNdc2GH2/410z12StFIigm222Yarrrpq1EPRFNxzlyQN1N4LbRf2Ue+dasUs7pKkKc2WWeIqLO6SJFXGc+6SpEfM9lniKtxzlyQ9YrbPElcxdHGPiI0iYmlEXB8R34uINzb9T4qIL0fED5p//2D44UqSpKlMx577Q8DRmbk58KfAERGxOXAscGlmPgu4tGlLkqQZNnRxz8y7MvM7zc+/Ar4PbADsCZzVPOwsYK9h1yVJkqY2rRPqImIBsA3wLWB+Zt7V3PVjYP4KnnMocCjA/PnzmZiYmM4hPS7jMIZxYA6FORTmYAY95lCMcw7TVtwjYi3gc8CbMvPe9ozLzMyI6DvLIjNPA04DWLhwYS5atGi6hvT4fPEiRj6GcWAOhTkU5mAGPeZQjHkO0zJbPiLmUQr7pzLz8033TyJi/eb+9YG7p2NdkiRpsOmYLR/Ax4HvZ+ZJrbsuABY3Py8Gzh92XZIkaWrTcVj+hcABwHURcXXT91bg3cBnI+I1wG3AK6ZhXZIkaQpDF/fM/Dqwoksa7Tjs8iVJ0mPjFeokSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkhONIbIAABPeSURBVKTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKTEtxj4jTI+LuiPhuq+9JEfHliPhB8+8fTMe6JEnSYNO1534msPOkvmOBSzPzWcClTVuSJM2waSnumflV4J5J3XsCZzU/nwXsNR3rkiRJg82dwWXPz8y7mp9/DMzv96CIOBQ4FGD+/PlMTEzM4JBWzjiMYRyYQ2EOhTmYQY85FOOcw0wW90dkZkZEruC+04DTABYuXJiLFi1aFUNasS9exMjHMA7MoTCHwhzMoMccijHPYSZny/8kItYHaP69ewbXJUmSGjNZ3C8AFjc/LwbOn8F1SZKkxnR9FO5fgG8Cm0bEHRHxGuDdwEsj4gfATk1bkiTNsGk5556Zr1zBXTtOx/IlSdLK8wp1kiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmXmjnoAkmbWVv94Cb/8zYNDL2fBsRc97ueus8Y8rjnhZUOPQdLKsbhLlfvlbx7k1nfvNtQyJiYmWLRo0eN+/jBvDCQ9dh6WlySpMhZ3SZIqY3GXJKkyFndJkipT3YS66ZgZPOzkH2cGjwdniavNvw3qkuqK+7Azg4edFQzODB4XzhJXm38b1CUelpckqTIWd0mSKmNxlySpMtWdc5cTySRpKrVPsLS4V8iJZJI0WO0TLD0sL0lSZWa8uEfEzhFxY0TcFBHHzvT6JEnquhkt7hExBzgV2AXYHHhlRGw+k+uUJKnrZnrPfTvgpsz8YWY+ACwB9pzhdUqS1GkzPaFuA+D2VvsO4PntB0TEocChAPPnz2diYmLolQ6zjPvuu2/kY5gOw65/OnIYdQbTMQZzKMyhnr8NR1x6P/cP+WGaYSeCrTkPTt1xzeEGMQ2qfj1k5ozdgL8CPtZqHwB8YEWP33bbbXNYGx9z4VDPX7p06cjHMA7rHzaHUWcwXWMwh8Ic6vjbMB1jMIdiHHIArsgV1NOZPix/J7BRq71h0ydJkmbITBf3/wSeFRGbRMTqwH7ABTO8TkmSOm1Gz7ln5kMR8XrgS8Ac4PTM/N5MrlOSpK6b8SvUZeYXgC/M9HokSVLhFeokSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyswd9QCkmfLEZx/Lc886dvgFnTXMGAB2G34MQzCH3himIYchMihjgFHnoG6wuKtav/r+u7n13cP9IZ2YmGDRokWP+/kLjr1oqPVPB3Mohs1h2AxgPHJQN3hYXpKkyljcJUmqjMVdkqTKWNwlSapMdRPqnBHr7GhJmkrttaK64u6MWGdHS9JUaq8VHpaXJKkyFndJkipjcZckqTIWd0mSKlPdhDpJ0orVPktchcVdkjqk9lniKjwsL0lSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmWGKu4RsW9EfC8iHo6IhZPuOy4iboqIGyPi5cMNU5Ikraxhvzjmu8A+wEfanRGxObAf8Bzg6cBXIuKPM3PZkOuTJElTGGrPPTO/n5k39rlrT2BJZv42M28BbgK2G2ZdkiRp5czUOfcNgNtb7TuaPkmSNMOmPCwfEV8BntbnruMz8/xhBxARhwKHAsyfP5+JiYlhFznUMu67776Rj2E6DLv+6chh1BlMxxjMoTCHev42DDsGcyjGPofMHPoGTAALW+3jgONa7S8B20+1nG233TaHtfExFw71/KVLl458DOOw/mFzGHUG0zUGcyjMoY6/DdMxBnMoxiEH4IpcQT2dqcPyFwD7RcQTImIT4FnAt2doXZIkqWXYj8LtHRF3ANsDF0XElwAy83vAZ4HrgS8CR6Qz5SVJWiWG+ihcZp4HnLeC+94JvHOY5UuSpMfOK9RJklQZi7skSZWxuEuSVBmLuyRJlbG4S5JUGYu7JEmVGfZb4aSxtuDYi4ZfyBcf/zLWWWPe8OufBuZQDJ3DEBnA+OSg+lncVa1b373b0MtYcOxF07KcUTKHYtjx15CBusPD8pIkVcbiLklSZSzukiRVxuIuSVJlqpxQ54xYZ0dL0lRqrhXVFXdnxDo7WpKmUnut8LC8JEmVsbhLklQZi7skSZWxuEuSVJnqJtRJkgareZa4Cou7JHVI7bPEVXhYXpKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMpY3CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSarMUMU9It4TETdExLURcV5ErNu677iIuCkiboyIlw8/VEmStDKG3XP/MrBFZm4J/P/AcQARsTmwH/AcYGfggxExZ8h1SZKklTBUcc/MSzLzoaZ5ObBh8/OewJLM/G1m3gLcBGw3zLokSdLKmc5z7q8GLm5+3gC4vXXfHU2fJEmaYXOnekBEfAV4Wp+7js/M85vHHA88BHzqsQ4gIg4FDgWYP38+ExMTj3UR024cxjAOzKEwh8IczKDHHIpxzmHK4p6ZOw26PyIOAnYHdszMbLrvBDZqPWzDpq/f8k8DTgNYuHBhLlq0aMpBz6gvXsTIxzAOzKEwh8IczKDHHIoxz2HY2fI7A38P7JGZv27ddQGwX0Q8ISI2AZ4FfHuYdUmSpJUz5Z77FD4APAH4ckQAXJ6Zh2fm9yLis8D1lMP1R2TmsiHXJUmSVsJQxT0znzngvncC7xxm+ZIk6bHzCnWSJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlhiruEfGOiLg2Iq6OiEsi4ulNf0TE+yLipub+P5me4UqSpKkMu+f+nszcMjO3Bi4E/lfTvwvwrOZ2KPChIdcjSZJW0lDFPTPvbTXXBLL5eU/gE1lcDqwbEesPsy5JkrRy5g67gIh4J3Ag8Etgh6Z7A+D21sPuaPruGnZ9kiRpsCmLe0R8BXhan7uOz8zzM/N44PiIOA54PXDCYxlARBxKOXTP/PnzmZiYeCxPnxHjMIZxYA6FORTmYAY95lCMcw5TFvfM3Gkll/Up4AuU4n4nsFHrvg2bvn7LPw04DWDhwoW5aNGilVzdDPniRYx8DOPAHApzKMzBDHrMoRjzHIadLf+sVnNP4Ibm5wuAA5tZ838K/DIzPSQvSdIqMOw593dHxKbAw8BtwOFN/xeAXYGbgF8DBw+5HkmStJKGKu6Z+Zcr6E/giGGWLUmSHh+vUCdJUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFUmyqfWxsPChQvziiuumNF1RMTQyxinzB4vcyjMYXoyAHPoMYfZnwHMjhwi4srMXNjvvs7tuWfmwNvSpUunfEwNzKEwh6kzMIeVz8Ac6sgAZn8OnSvukiTVzuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSzukiRVxuIuSVJlLO6SJFXG4i5JUmUs7pIkVcbiLklSZSIzRz2GR0TET4HbRjyMpwA/G/EYxoE5FOZQmIMZ9JhDMQ45bJyZ6/W7Y6yK+ziIiCsyc+GoxzFq5lCYQ2EOZtBjDsW45+BheUmSKmNxlySpMhb3Rztt1AMYE+ZQmENhDmbQYw7FWOfgOXdJkirjnrskSZWxuDci4vSIuDsivjvqsYxSRGwUEUsj4vqI+F5EvHHUY1rVIuL3IuLbEXFNk8E/jnpMoxQRcyLiqoi4cNRjGZWIuDUirouIqyPiilGPZ1QiYt2IODciboiI70fE9qMe06oWEZs2r4Pe7d6IeNOoxzWZh+UbEfES4D7gE5m5xajHMyoRsT6wfmZ+JyKeCFwJ7JWZ1494aKtMRASwZmbeFxHzgK8Db8zMy0c8tJGIiL8DFgJrZ+buox7PKETErcDCzBz155pHKiLOAr6WmR+LiNWB38/MX4x6XKMSEXOAO4HnZ+aor9GyHPfcG5n5VeCeUY9j1DLzrsz8TvPzr4DvAxuMdlSrVhb3Nc15za2T74IjYkNgN+Bjox6LRisi1gFeAnwcIDMf6HJhb+wI3DxuhR0s7hogIhYA2wDfGu1IVr3mUPTVwN3AlzOzcxk0/i/w98DDox7IiCVwSURcGRGHjnowI7IJ8FPgjOY0zcciYs1RD2rE9gP+ZdSD6Mfirr4iYi3gc8CbMvPeUY9nVcvMZZm5NbAhsF1EdO5UTUTsDtydmVeOeixj4EWZ+SfALsARzWm8rpkL/AnwoczcBrgfOHa0Qxqd5rTEHsA5ox5LPxZ3PUpznvlzwKcy8/OjHs8oNYcdlwI7j3osI/BCYI/mfPMS4M8j4uzRDmk0MvPO5t+7gfOA7UY7opG4A7ijdRTrXEqx76pdgO9k5k9GPZB+LO5aTjOZ7OPA9zPzpFGPZxQiYr2IWLf5eQ3gpcANox3VqpeZx2Xmhpm5gHL48d8z829GPKxVLiLWbCaX0hyGfhnQuU/VZOaPgdsjYtOma0egMxNt+3glY3pIHsphFgER8S/AIuApEXEHcEJmfny0oxqJFwIHANc155wB3pqZXxjhmFa19YGzmpmwqwGfzczOfgxMzAfOK+97mQt8OjO/ONohjcyRwKeaQ9I/BA4e8XhGonmT91LgsFGPZUX8KJwkSZXxsLwkSZWxuEuSVBmLuyRJlbG4S5JUGYu7JEmVsbhLs0xELGu+jep7zTfXHR0Rj/v/ckS8qPkWvBua26Gt+9aLiG81lxs9ISL+b+u+j0TEV1rtIyPifY9j/W+PiDc/3vFLejQ/5y7NPr9pLo1LRDwV+DSwNnDCY11QRDytef5ezTcBPgX4UkTcmZkXUS5Ucl1mvjYiFgIfbD19K2BORMzJzGXAC4Dzh9oySdPCPXdpFmsuh3oo8PooFkTE1yLiO83tBQAR8YmI2Kv3vIj4VETsCRwBnNn6JsCfUb4o5tiI2Br4P8CezQWNbgT+OCLWaL4h7DfA1cBzm8W+ALgsIp4REV9svmTlaxGxWbPO9SLicxHxn83thZO3JyIOiYiLmysDSnqcLO7SLJeZPwTmAE+lfIvdS5svOflroHeY/OPAQfDIV3e+ALgIeA4w+YthrgCek5lXA/8L+Exmbt18BfBVwPOAP6V8W+DlwAsiYgPKRbFuB04DjszMbYE387u9/VOAkzPzecBfMulrZCPi9cDulKMIvxk2F6nLPCwv1WUe8IFmr3sZ8McAmfkfEfHBiFiPUlg/l5kPNZdUfSy+QXljsAbwTeAHwFspXwX6jebbBF8AnNNa9hOaf3cCNm/1r908HuBA4HZKYX/wsQ5K0vIs7tIsFxF/RCnkd1POu/+Ecj58NeB/Wg/9BPA3lC+B6V0T/HpgW5Y/V74t8L0VrO4y4HDg94BTKUV98+bfbzTr/EVvTsAkqwF/mpntMdEU++uA3lfs3jLFJkuagoflpVms2RP/MPCBLF8UsQ5wV2Y+TPkCoDmth58JvAkgM3vf5nUqcFCzp09EPBk4kXKuvZ9vUg7Jr5eZdzfr/CmwJ3BZZt4L3BIR+zbLi4jYqnnuJZQvHumNvf0G4CrKl3BcEBFPf8xBSFqOxV2afdbofRQO+AqlaP5jc98HgcURcQ2wGXB/70nN905/Hzij1XcXZW/+oxFxA2Xv+/TM/Ld+K87Mn1OKeXvP/puU8/3XNO39gdc0Y/gepfADvAFYGBHXRsT1lCMA7WV/nXKO/qJm1r6kx8lvhZM6IiJ+n3L4+08y85ejHo+kmeOeu9QBEbETZa/9/RZ2qX7uuUuSVBn33CVJqozFXZKkyljcJUmqjMVdkqTKWNwlSaqMxV2SpMr8P86/TRtmLw+5AAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "for col in delayFields:\n", + " df_flights.boxplot(column=col, by='DayOfWeek', figsize=(8,8))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Which departure airport has the highest average departure delay?" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "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", + "
DepDelay
OriginAirportName
Chicago Midway International2.365960
Dallas Love Field2.148798
William P Hobby1.561927
Metropolitan Oakland International0.964853
Denver International0.807272
......
Memphis International-2.962737
Tucson International-2.989154
Ted Stevens Anchorage International-3.149758
Richmond International-3.198073
Long Beach Airport-3.447844
\n", + "

70 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " DepDelay\n", + "OriginAirportName \n", + "Chicago Midway International 2.365960\n", + "Dallas Love Field 2.148798\n", + "William P Hobby 1.561927\n", + "Metropolitan Oakland International 0.964853\n", + "Denver International 0.807272\n", + "... ...\n", + "Memphis International -2.962737\n", + "Tucson International -2.989154\n", + "Ted Stevens Anchorage International -3.149758\n", + "Richmond International -3.198073\n", + "Long Beach Airport -3.447844\n", + "\n", + "[70 rows x 1 columns]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAsEAAAPBCAYAAAAfxnfAAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzde7hsR10n/G/lAgdIwiUkogY4yXAfAyQGBOGFRJSgkWAQZuQuEQODOFzmZQZEBGHmNQqiCA4QLgGEEQfkJiAGNTEgSi6EcAsYDMkYBBKikwtyTer9Y62d06d3793Ve/c5+yT1+TxPP+fs7uqqWrVqVf96da1apdYaAADoyV5bXQEAANjdBMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0Z5+tKPS2t71t3b59+1YUDQBAR84999xv1FoPmn5+S4Lg7du355xzztmKogEA6Egp5ZJZz5sOAQBAdwTBAAB0RxAMAEB3tmROMABA7773ve/l0ksvzbe//e2trsqNwrZt23LIIYdk3333bUovCAYA2AKXXnpp9t9//2zfvj2llK2uzg1arTVXXHFFLr300hx66KFN7zEdAgBgC3z729/OgQceKABeglJKDjzwwIXOqguCAQC2iAB4eRZtS9MhAAA6tffee+fwww/P9773veyzzz554hOfmGc/+9nZa6+NnSfdvn179t9//yTJtddem0c+8pH59V//9Wzbtm3d9+2333655pprNlTmRgmCAQD2ANuf98Gl5nfxycfNTXOzm90sn/rUp5Ikl112WR772Mfmqquuym/+5m9uuNzTTz89t73tbXPNNdfkpJNOylOf+tS85S1v2XB+u4rpEAAA5OCDD84pp5ySV7/61am15tprr81zn/vc3Oc+98k973nPvO51r0uSnHHGGXnQgx6U4447Lne9613ztKc9Ldddd92q/Pbbb7+89rWvzXvf+978y7/8S5LkZS972fX5vehFL1r1nmuuuSYPechDcuSRR+bwww/P+973viTJb/zGb+T3f//3r0/3ghe8IK985Ss3tb3OBAMAkCQ57LDDcu211+ayyy7L+973vtzylrfM2Wefne985zt5wAMekIc+9KFJkrPOOiuf//znc8c73jEPe9jD8u53vzuPetSjVuV3wAEH5NBDD82FF16YK6+8MhdeeGHOOuus1Fpz/PHH58wzz8yDHvSg69Nv27Yt73nPe3LAAQfkG9/4Ru53v/vl+OOPz4knnphHPvKRedaznpXrrrsu73jHO3LWWWdtalsFwQAArHLaaafl05/+dN71rnclyfVB7E1ucpPc9773zWGHHZYkecxjHpOPfexjM4PgZFi+bCW/0047LUcccUSS4azvhRdeuFMQXGvNr/3ar+XMM8/MXnvtla985Sv5+te/nu3bt+fAAw/Meeedl69//es54ogjcuCBB25q+wTBAAAkSS666KLsvffeOfjgg1Nrzate9aoce+yxO6U544wzVq3EsNbKDFdffXUuvvji3OUud0mtNc9//vPz1Kc+dc3y3/72t+fyyy/Pueeem3333Tfbt2+/ftmzpzzlKXnzm9+cr33taznxxBM3uaXmBAMAkOTyyy/P0572tDzjGc9IKSXHHntsXvOa1+R73/tekuQf/uEf8s1vfjPJMB3iy1/+cq677rr8yZ/8SR74wAeuyu+aa67J05/+9Pzcz/1cbn3rW+fYY4/Nm970putXgfjKV76Syy67bKf3XHnllTn44IOz77775vTTT88ll1xy/WsnnHBCPvzhD+fss89eFZhvhDPBAACd+ta3vpV73/ve1y+R9oQnPCHPec5zkgxnXi+++OIceeSRqbXmoIMOynvf+94kyX3uc5884xnPyJe+9KUcc8wxOeGEE67P85hjjkmtNdddd11OOOGEvPCFL0ySPPShD80FF1yQ+9///kmGC+fe9ra35eCDD77+vY973OPy8Ic/PIcffniOOuqo3O1ud7v+tZvc5CY55phjcqtb3Sp77733pre9rMzT2J2OOuqoes455+z2cgEA9hQXXHBB7n73u291NRZ2xhln5OUvf3k+8IEP7NZyr7vuuhx55JF55zvfmTvf+c4z08xq01LKubXWo6bTmg4BAMAe7fOf/3zudKc75SEPeciaAfCiTIcAAKDZ0UcfnaOPPnq3lnmPe9wjF1100VLzdCYYAIDuCIIBALbIVlybdWO1aFsKggEAtsC2bdtyxRVXCISXoNaaK664Itu2bWt+jznBAABb4JBDDsmll16ayy+/fKurcqOwbdu2HHLIIc3pBcEAAFtg3333zaGHHrrV1eiW6RAAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0Z0tXh9j+vA+ueu7ik4/bgpoAANATZ4IBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6M4+W12BFtuf98FVz1188nFbUBMAAG4MnAkGAKA7gmAAALojCAYAoDuCYAAAuiMIBgCgO4JgAAC6IwgGAKA7gmAAALojCAYAoDuCYAAAurPpILiUcvtSyumllM+XUj5XSnnmMioGAAC7yj5LyOP7Sf5LrfWTpZT9k5xbSvlIrfXzS8gbAACWbtNngmutX621fnL8/9VJLkjyw5vNFwAAdpWlzgkupWxPckSSTywzXwAAWKalBcGllP2S/GmSZ9Var5rx+kmllHNKKedcfvnlyyoWAAAWtpQguJSyb4YA+O211nfPSlNrPaXWelSt9aiDDjpoGcUCAMCGLGN1iJLkjUkuqLW+YvNVAgCAXWsZZ4IfkOQJSX6ilPKp8fEzS8gXAAB2iU0vkVZr/ViSsoS6AADAbuGOcQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB39tnqCizL9ud9cNVzF5983BbUBACAPZ0zwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3lhIEl1LeVEq5rJTy2WXkBwAAu9KyzgS/OcnDlpQXAADsUksJgmutZyb5l2XkBQAAu5o5wQAAdGe3BcGllJNKKeeUUs65/PLLd1exAACwym4Lgmutp9Raj6q1HnXQQQftrmIBAGAV0yEAAOjOPsvIpJTyx0mOTnLbUsqlSV5Ua33jMvJetu3P++Cq5y4++bgtqAkAAFtlKUFwrfUxy8gHAAB2B9MhAADojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDu7LPVFdhTbX/eB3f6++KTj9uimgAAsGyC4E2YDpQTwTIAwA2B6RAAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0Z5+trkAPtj/vg6ueu/jk47agJgAAJM4EAwDQIUEwAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0J19troCDLY/74Ornrv45OO2oCYAADd+zgQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQnX2WkUkp5WFJXplk7yRvqLWevIx8WW378z646rmLTz5uC2oCAHDDtekzwaWUvZP8YZKfTnKPJI8ppdxjs/kCAMCusozpEPdN8qVa60W11u8meUeSRywhXwAA2CWWEQT/cJJ/mvj70vE5AADYI5Va6+YyKOVRSR5Wa33K+PcTkvxYrfUZU+lOSnJSktzhDnf40UsuuWRT5bK21nnDG023p+Y1K5222PPzmpVOW+z5ec1Kpy32/LxmpdMWuyavWen21LxmpdtT85qVbl6aUsq5tdajptMs40zwV5LcfuLvQ8bndlJrPaXWelSt9aiDDjpoCcUCAMDGLCMIPjvJnUsph5ZSbpLkF5K8fwn5AgDALrHpJdJqrd8vpTwjyV9kWCLtTbXWz226ZgAAsIssZZ3gWuuHknxoGXkBAMCu5o5xAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB39tnqCrB8F5983FZXAQBgj+ZMMAAA3REEAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQHTfL6JibagAAvXImGACA7giCAQDojiAYAIDumBPMXOYOAwA3Ns4EAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3bFEGkthGTUA4IbEmWAAALojCAYAoDumQ7BbmTYBAOwJnAkGAKA7gmAAALpjOgR7HFMmAIBdzZlgAAC6IwgGAKA7gmAAALojCAYAoDuCYAAAuiMIBgCgO4JgAAC6IwgGAKA7bpbBDZabagAAGyUI5kZNoAwAzGI6BAAA3REEAwDQHUEwAADdMScYYu4wAPRGEAwLaAmWBdQAsOczHQIAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOJdJgi1hKDQC2jjPBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdGefra4AsLaLTz5uq6sAADdKzgQDANAdQTAAAN0RBAMA0B1zguFGwNxhAFiMM8EAAHRHEAwAQHc2FQSXUh5dSvlcKeW6UspRy6oUAADsSpudE/zZJI9M8rol1AXYhcwbBoAdNhUE11ovSJJSynJqAwAAu4E5wQAAdGfumeBSyl8mud2Ml15Qa31fa0GllJOSnJQkd7jDHZorCAAAyzY3CK61/uQyCqq1npLklCQ56qij6jLyBACAjTAdAgCA7mx2ibQTSimXJrl/kg+WUv5iOdUCAIBdZ7OrQ7wnyXuWVBcAANgtTIcAAKA7m71ZBnAj03JTDTfeAOCGzplgAAC640wwsMs4YwzAnsqZYAAAuuNMMLDlnDEGYHdzJhgAgO4IggEA6I4gGACA7pgTDNwgmDcMwDI5EwwAQHcEwQAAdEcQDABAd8wJBm5UzB0GoIUzwQAAdEcQDABAdwTBAAB0x5xgoDut84bNLwa48RIEA2yCQBnghsl0CAAAuiMIBgCgO4JgAAC6Y04wwG5g7jDAnsWZYAAAuiMIBgCgO4JgAAC6IwgGAKA7gmAAALojCAYAoDuCYAAAuiMIBgCgO4JgAAC6IwgGAKA7gmAAALojCAYAoDuCYAAAuiMIBgCgO4JgAAC6IwgGAKA7gmAAALojCAYAoDuCYAAAuiMIBgCgO4JgAAC6s89WVwCAHS4++bitrgJAF5wJBgCgO4JgAAC6IwgGAKA75gQD3MCYNwywec4EAwDQHUEwAADdEQQDANAdQTAAAN1xYRzAjZQL6ADW5kwwAADdEQQDANAdQTAAAN0xJxigY+YNA70SBAMwl2AZuLExHQIAgO4IggEA6I4gGACA7giCAQDojgvjAFgKF88BNySCYAB2K8EysCcwHQIAgO4IggEA6I7pEADskVqmTbROrTAFA5jmTDAAAN1xJhgA4mwx9MaZYAAAuiMIBgCgO4JgAAC6IwgGAKA7LowDgAW4gA5uHJwJBgCgO4JgAAC6IwgGAKA7gmAAALojCAYAoDuCYAAAumOJNABYMsuowZ5PEAwAW0SwDFvHdAgAALojCAYAoDuCYAAAumNOMADswcwbhl3DmWAAALojCAYAoDuCYAAAuiMIBgCgO4JgAAC6IwgGAKA7mwqCSykvK6V8oZTy6VLKe0opt1pWxQAAYFfZ7JngjyT5kVrrPZP8Q5Lnb75KAACwa20qCK61nlZr/f74598nOWTzVQIAgF1rmXOCT0zy50vMDwAAdom5t00upfxlktvNeOkFtdb3jWlekOT7Sd6+Tj4nJTkpSe5whztsqLIAALAMc4PgWutPrvd6KeUXk/xskofUWus6+ZyS5JQkOeqoo9ZMBwAAu9rcIHg9pZSHJfmvSR5ca/235VQJAAB2rU0FwUleneSmST5SSkmSv6+1Pm3TtQIAFnLxycdtdRXgBmVTQXCt9U7LqggAsOsJlmHgjnEAAHRns9MhAIAbGWeL6YEzwQAAdEcQDABAdwTBAAB0RxAMAEB3XBgHAGyIC+i4IRMEAwC7jECZPZXpEAAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAd9wsAwDYcm6qwe4mCAYAbhAEyiyT6RAAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAd/bZ6goAACzTxScft9VV4AbAmWAAALrjTDAA0CVnjPsmCAYAWINA+cbLdAgAALojCAYAoDuCYAAAuiMIBgCgO4JgAAC6IwgGAKA7gmAAALojCAYAoDuCYAAAuiMIBgCgO4JgAAC6IwgGAKA7gmAAALojCAYAoDuCYAAAuiMIBgCgO4JgAAC6IwgGAKA7+2x1BQAAbuguPvm4ra4CC3ImGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7lgnGABgN7CW8J7FmWAAALojCAYAoDuCYAAAuiMIBgCgO4JgAAC6IwgGAKA7lkgDANiDWEpt9xAEAwDcwAiUN08QDABwIyVYXps5wQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0RxAMAEB3BMEAAHRHEAwAQHcEwQAAdEcQDABAdwTBAAB0Z5+trgAAAFvr4pOP2+oq7HbOBAMA0B1BMAAA3REEAwDQnU3NCS6lvDTJI5Jcl+SyJL9Ya/3nZVQMAIA9x41t3vBmzwS/rNZ6z1rrvZN8IMlvLKFOAACwS20qCK61XjXx5y2S1M1VBwAAdr1NL5FWSvkfSZ6Y5Mokx2y6RgAA3GDdUKZNzD0TXEr5y1LKZ2c8HpEktdYX1Fpvn+TtSZ6xTj4nlVLOKaWcc/nlly9vCwAAYEFzzwTXWn+yMa+3J/lQkhetkc8pSU5JkqOOOsq0CQAAtsym5gSXUu488ecjknxhc9UBAIBdb7Nzgk8updw1wxJplyR52uarBAAAu9amguBa688vqyIAALC7uGMcAADdEQQDANAdQTAAAN0RBAMA0B1BMAAA3REEAwDQHUEwAADdEQQDANAdQTAAAN0RBAMA0J1N3TYZAAAWdfHJx211FZwJBgCgP4JgAAC6IwgGAKA7gmAAALrjwjgAAPZIu/ICOmeCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDozj5bXQEAANioi08+bkPvcyYYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6I4gGACA7giCAQDojiAYAIDuCIIBAOiOIBgAgO4IggEA6E6pte7+Qku5PMklU0/fNsk35ry1Jc1W5LUVZe6peW1FmT3ktRVl7ql5bUWZe2peW1FmD3ltRZl7al5bUeaemtdWlLmn5rUVZW4mrzvWWg9albLWukc8kpyzjDRbkdcNvf7aYs/P64Zef22hLW5Ied3Q668ttIW2mJ+u1mo6BAAA/REEAwDQnT0pCD5lSWm2Iq+tKHNPzWsryuwhr60oc0/NayvK3FPz2ooye8hrK8rcU/PaijL31Ly2osw9Na+tKHPZ9d+aC+MAAGAr7UlnggEAYLcQBAMA0B1BMOxmpZQHtDwHrK2UsvdW1wFuDEopj255bk+1mc/U3T4nuJTyyPVer7W+u5RydZI1K1ZrPWAqz99N8qZa6+dmlPecOeW9YsF0fzanbseXUl41J81/HvP6zBrpypCs3nOdtlhJM90WD0jy4iR3TLLPRLrDWuo+5tFa/7npSilHrvX6mOaTC+Q1t73GvOaW2dIPx7zm9otSym3mpPmXnSpbyidrrUeu99x6fXp8vXVfNvXrMW1J8rgkh9VaX1JKuUOS29Vazxpfn9sXF9jfre3fsi9b+2vLsdt0vC2r77fWfSyzZbxoHceWmVfLMdK6v5uO8THtRUn+NMmptdbPr3pDe79YZv038/k23ceaj90x/QOT3LnWemop5aAk+9Vavzy+1jRGLbktWvJqbYuWdp27jQseby1lLu0zdZG6zbNoXvM+kxrHstY+1jL2LP0zdS37zEuwCzx8nddqknfXWvdPklLKS5N8NckfZWigxyX5wRnvuyDJKaWUfZKcmuSPa61Xjq/t31iv1nQvb0hzTmNePzsvwUpbLOCNSZ6d5Nwk10691lL3pL3+Lel+d53XapKfWCCvue21QJlz++H4/5b2P3d8T1kjr8OSpJRy/yQ/nuSgqQ+IA5JMn9Var08n7ftykf7zP5Ncl6F9XpLk6gxBxn2S5r7Yur9b278lv9b+OrfNFjjeltX3W+uetPX/1vovktddM/SB949/PzzJWQuW2bq/W4/xJLlXkl9I8oZSyl5J3pTkHbXWq8bXW9u2ZTtb69/8+bZAveYqpbwoyVEZtuHUJPsmeVuSlbNhTWNUY5lLGzsXaIuWMlu2cZHjraXMRT9TH5DkHkn+ZPz70Uk+P5VmIaWUHxnz3DajvHnv/ekkP5Pkh0spfzDx0gFJvj/xd8tY1trHWo7xXfGZOtMevTpEKeX8Wuu95j038dpdkzw5yWOS/G2S19daT9/1Nd19SikHZ6Kz11r/z9Trn6i1/thurxhzlVIenOToJE9L8tqJl65O8me11gtnvGe39emVb86llPNqrUeMz613vK3bF28MetjGeUopZyY5rtZ69fj3/kk+WGt90NbWbIfx2PpfSW6V5F1JXlpr/dKCeWzJdi6jj5VSPpXkiCSfnDh2Pz155vyG4MZ+vJVS/j7JA2ut3x//3jfJR2ut99tgfi/K8JlyjyQfSvLTST5Wa31U4/vvleTeGU56/MbES1cnOb3W+q8bqdfuspHP1GlbcSb4eqWU45L8++zc6V8ykeSbpZTHJXlHhuj/MUm+uUZeeye52/j4RpLzkzynlPLUWusvlFK2JfmlGeWdOJXPuunWOZW/km7y57qDkvy3TH1Lq7X+xOR7Sin3S/KqJHdPcpMM32C+OTnVoZRyfIZvYz+U5LIM0x0uGOs56fRSyssyfEv9zkSZn5zI685JfmtGvQ6byGeR+remW/WNtdb61kXzammvBcuc1w/n9ouJdLdOcuepNGeO//5NKeVjSe5Za/3N6brOqPu6fXpM07ovW+r/vbHMOr7noAxnhqfr1dQXW9p+TDe3/VvyW6Afzm2zBbZxKX2/NZ8xbct40dpfW46lH0jy3Ym/vzs+N12v1jJbjreWbdw7yXEZviRuz7C/3p7k/8kQENxlTNfatq3b2dpf1023QB9radfv1lprKWXl2L3FdH0m8ltzjFqwzKWNnQt8vrWWue42LnK8tZTZOg4nuXWGs5QrP+fvNz43WdYidXtUhl9Ezqu1PrmU8gMZfgFoyqvWen4p5bNJjq21vmXWtk9r/Ext6WNNn+PL/EydqTbeX3nZjwxR+1uT/FOSFyX5TJI3TqXZnuR9GQKAy5O8N8n2GXn9XpIvJXldkvtOvfbF8d93Jnlpkn9M8qQkpyV55Yy81k2X4eBc8zGV12kZDv4Lkjw4w891vz2jzHOS3CnJeRk6wpOT/NZUmvOTHJihs0JtUEMAACAASURBVCfJMdPtNT5/+ozHX0+l+ViShyT59FjvFyd5yYy8Wus/N924j09P8vUMP9d9Lcm7NpjX3PZqLbOlH7b2nyRPGd//r2O535pu+zHd3zUcH7+X5MKs06cX3Jct9X9chp+Cv5LkfyT5YpJHz8hrbl9cYH+3tn/Lvmztr3PbrGUbl9n3W+u+wHjROt615PWCsT1ePD4+leT5G+xjrfu7pV4XZZj+9eMz3v8HG+gXc7dzgfq3fL619rGWdv1/M4wVFyX55SR/l+Q/z8irdYxa5r5syau1LVrade42tvaJBcpsHYefnOSSJG9O8pYkX07ypE3U7azx33MzBNclyRc20Pc/muQms8rYwFjW2sdajvGlfaauuU0bfeNmH0k+PfXvfhl+FthIXk9Ocos1Xrvl+O95U+Xtm+TvZ6RvStdYr3Mn8xr/f/aszjAj3XlrpDk/yV4r/99kvT4z/dwG6z833diR91qpc4YzLB/ZYF5z26u1zNZ+2NIvxvK2JfnU+PfdMswBnM7rNRmCzSckeeTKY9E+veC+bO3/d0vyK+Pj7muUP7cvLrC/W9u/ZV8u2l/XbLOWbVxm32+te2v/X2B/tx5LRyZ55vg4Yo16tRwjrfu7ZRsfOON9D9jIPmrdzgXqPzfdAn2sdV/+VJKXZZin+lNrbF/rGLXMfdmSV2tbtLTr3G1csE+0lNk0Do/P3y7JI8bH7TbZX/9nhilAT8tw0uS8DBeKLjomvjXJ2UlemOQ5K481+s+8say1j7Uc40v7TF3rsZXTIb41/vtvpZQfSnJFxoveNnCV5JuTnFCGq2Nrhjkx7xnTrlxM9L3x3/87ns7/WpKDZ2TflK7xVP5KXl8df0755ySzrnr8t1LKTZJ8qpTyOxkuBpxevu7/llL2S3JmkreXUi7LjKkhpZRbZvi2tjKP7W8yfCOdvKjqO+OFJBeWUp6R4czffjPq1Vr/lnTfqrVeV0r5finlgAw/ed1+g3m1tFdrmWv2wzXqtV6/+Hat9dullJRSblpr/cI4p3fatrGcyZ+3anZcUJIkj6+1njr5plLKX9VaH7LJfTmv/988Q1+uSW424/WVPOb1xdb93dr+Lfm19teWNms63hrLXGbdk7b+37q/18yr7HyF9sXjIyuv1akrtBvLbN3fLdv4BxmC1kmvmvHcum274HY299eGdIv2sTXbtZTy27XW/5bkIzOem9Q6Ri1zX7bk1doWLWW2bOMix1tLmeuOKWX16gr/NP77Q6WUH6oT0xUXqVut9enjf19bSvlwkgNqrZ/eQF7/OD72yvoXNLaMZa19rOUYX+Zn6mwtkfKueGT4xnGrJD+f4aD4aoaLGZLhJ5M1H2t8Gzotw9mzJyf5cJI/nErzlAxzbx6c4Sejy5I8bUZerelaTuX/bJJbJvmRDKfyz01y/Iy87jjuxAMyBLCvSHKnqTS3GMvZZ2yH/5zkwBl5/WmS38xw9eRhY37T34Lvk+EAPSTDTxrvTnK/GXm11n9uusz5xrpgXnPbq7XM9frhov0iyXvGvF6cYTB/X5IPLXhcbMswSJ0/lneb8bE9Ez9zbWBfttT/NzJ8837x2IfOT/LrM/Ka2xcX2N+t7d+yL1v769w2a9nGZfb91rovMF60jmNr5pXhp9qLxn9X/r/y90Ub7GOt+3u9et0/yX/JEEg8Z+Lx4sw+e7hu287Yzsm/L9pg/eemW6CPtbTrJ2e879Mznmsao5a8L1vyam2Llnadu43z+sQGylx3TMnsaYorj+mpGi1jyt3Gf4+c9djIdo7p98uwtN5ar7eMZa19rGUc2/Rn6rzHHrE6RCnlpkm21Z3PcE2+fvNa67+t8/4vZPjpto5/75Xkc7XWu++SCg9lnFNrPapMXIFbJq6q3yqllE/VWu8977mtVErZntXfWLe8zHn9cMHyHpxh8PlwrfW7U68dkuGM1cryRR9N8sxa66WllGcmeVaGC0S+kh1LxFyVYWWIV2+2buvU+YtJ7lVr/fb4980y/Aw165v3IvluT8P+bm3/reg/y3JDq3sppSS5fd0FV+lv9HgrS7gifBkW6K9LG1dm5P2fkjw9wwmPf5x4af8kf1trffw6711zjNpAPXbZNm6mzGVuY2uZu0Mp5fW11l8upZw+4+Va17jAb538fiTDUrQrZ4m/keSJdY116sf3bM/8z9Rl9rENfabOzXcrg+BSyo9nOMN1/bSMuvMV0/fPcOHDfrXWO5RhOY+n1h0/Aayk+0CSX6m1XjL+fcckr661PnwizU0zfJObLm/6qtLWdGcm+ckkb8iOb4e/WCeWkyrDlZm/PCOv6Stsp29wsZJu8mr1Ryb57Qw/I5XxUevqKyn/Lslza60fm8j75bXW+0+kuUuS584ob9aqDy31b033wzPKnL5idG5eLe21YJnr9sMxTWu/2DvDPKnJNNPL2H0kw3JOfzQ+9fgkj6u1/tREml+ttb5qentmbF/rvpxb/3FAPaHW+n/Hv2+V4VeE6bxa++Lcth/TzW3/lvwW6Idz22yBbVxK32/NZ0zbMl609teWvD5Taz18uh4z6tVaZsvx1lKvO66M+XPq1bqPVtaiP7TW+tIydbOYRerfkm6BPrZmu5Zh+tutM6xM8LyJt11dV09XWcmvZYxa5r5sGXua2mKBMtfdxkWOt5YyFxiHb57hV4s71FpPKsOqEnettX5go3VbzwJ9/+NJXlDH5TdLKUcn+f9qrT8+I8+Wz9SWPtb0Ob6sz9S1bNmc4FLKHyX5dxmuwF25qUPNMEF7xe8nOTbj4uV1WM7jQRN5rNytZf8kF5RSVgar+2bnxdyT4TT6lRl+DvhO1taa7gkZ5q88I8PNKW6f4UCfzuujSf4yq29cMWm9G1ys+J0kD6+1XrBOPslwduSt4+CYDFdVPmkqzTsznEF5/Zx6tdZ/brpSym8n+Y8ZFgaf3N/TQVFLmS3t1VRmYz9cqde6/aKU8qsZftb5enYsLVaTTK/VeVDdeb7vm0spz5pMUGt9VeOH7SL7cl6/vjLJ58YBpWa40OasMi6iXnfMxZ/bF1v3d2v7N+bX2l9b2qz1eFtW32+te9LW/1vHsZa8PllKuU+t9ew59Wo5RlqPt5Z63bSUckpWHyPTZ8Fa23byZjEvzdTNYhapf2O6RfrYzHYdz0hemWH50JQd6+zuV0rZb0aw0DpGLXNftvTFprZoKbNxG5uPt8btbB2HT83QDivB5VfG935gIk3LmNJ0176WvEa3qBPrz9dazygzltlr/Ext7WNzj/FlfqauqS5xbsUijwxLdpQ5aT4x/nvexHPnT/z/wes9pvL6bGO9mtI15vWpxnSfaEjzt415HTr+e0CGnyquf24izcyrVjdR/7npMiy3ddMl5TW3vVrLbOmHrf0iwzJ9q+axzUj3Vxm+qe49Ph6f5K+m0vxRko9n+GB+1fj4gxl5te7Llvo/ab3HIn1xgf3d2v4t+7K1v85tswWOt6X0/da6j2lbxovW8a4lry9kuHvUP2ZYAuozmT3ftKWPte7vlnqdn+Q/ZTjp8aMrj030i0+O/878vFmw/i2fb619rKVdH55hjuY3M8xlvi7DlMDpdK1j1DL3ZUterW3R0q5zt3HB462lzNZxeGVFhPX6WMuYcur4+GCGE11/Oj7+JckHFt3ODHNvX5jhC+X2JL+e5D0z0rWMZa19rOUYX9pn6lqPrVwd4rMZlgr56jpp/mk8G1bLcGeVZ2bokEmGhZJX/l9KuV2GwbBmWALka1N5fbyUcnit9TNz6tWUrvFU/gdKKT9Ta/3QnDLn3uAiyTmllD/JsFbyZJrpqx//NMPE+KsmnntXhg+IFX9WSnl6ho4/mdf0z2et9W9Jd1GGpXHWOyvVmldLe7WW2dIPk7Z+8U8ZznjMc2KGoPb3xr//NsOFlZOOSnKPOh7h62jdl3PrX2t9Sxmu1r3L+NQXa63fm5G0pS+27u/W9m/Jr7W/trRZ6/G2rL7fWvekrf+3jncteR3bUKfWMlv3d0u9vl9rfU1DvVrbtuVmMa31b0nX2sda2vW/J7lfkr+stR5RSjkmQyAwrXWMWua+bMmrtS2a4obM38ZFjreWMlvH4e+W4VqLlT7277J6XJhbt1rrk8f3n5bhc+Kr498/mGG1rOa8RidmuBh6pb0/Oj43rWUsa+1jLcf4Mj9TZ9qyOcFlmH947wzTFiYb4PiJNLdN8soMc29LhhUgnllrvWIqr6dkuLL9r8d0D86wLNibJtJ8PsNqDl8ey1uZc3TPqbxa030hM07lT9atlHJ1hqtev5sdS5XUunrO1+lZrdad5yieukaaE8fX75bhjja/k2Fu0ooDMswRvv7OO6WUL6+R1/RcnNb6z01XSvnTDHe2+avsvL93Wu6uMa+57dVaZks/HNPN7RellDcmuWuGb+eTeb1iRn3XVUp5Z4bF7tf9gFlgX7bU/+gMC7hfPL5++wxngKenMKzbF8c0rfu7tf1b9mVrf53bZi3b2FrmMus+pm0ZL1rHsdZj6V4Z7sSWDGuknj+jXi19rHV/t2zjizOsNLBu4LFAv3hchp96j8xwHDwqw+oo79xg/ed9vrX2sZZ2XblQ+/wM6xtfV2bc8rx1jFryvmzJq7UtWtp17jZu4HibV2brOPxTGc6y3iNDPPOADNcSnbHBul1QJxYAKFOLAiyS15j+lkmuq+Otw2e83jKWtfaxlmN8aZ+pa9nKIPjBs56vE2d3F8jrixnuGnTF+PeBST5eJ65qL8PFcrPK2+nCigXSfaLW+mOL1nVXKaU8IsnPJTk+4xzq0dVJ3lFr/fiWVGxUSnnSrOdr460ad1WZrf2wpV+U4T7us9LsdDvHUsphGb7c3S/DGYG/S/LsWutFE2maPmBaNdb/3CSPrbV+cfz7Lkn+uNb6o7PeO6e8pv29QPvv9v6zLFvU95vGsca8npnh4pqVs0QnJDmlTl242djHljnuNwUeC+Z5twx3/ioZfk69YOr11v66zO1sade/zDD+/1aS22b4cnCfOnVh0wJj1NL25ZL74twyW7dxmWUumN+BGcb+kuGmId/YSD5jXq/OcEvhPx6f+o9JvlRr/dUF87lPhrvJrawRfGWSE2ut506la/lMXVr7L/Mzdc0ytioITpIy3Od65aKDs2qtl43P/9da6++UNW6aMeNs0seTHF3HZTPK8JPuGTMGgLlnM+alKzsWvf4PGeaerPuTfBnuib5yMd8ZdeIq0Ik0c29wURqXACml3L/W+neztmsizb4Z5tJdX68kr6szfvpuqf8C29nyU/vcvFraa5Ey1+qHM9K19p/9kqTWes0ar/99kj/MjoHrF5L86uSXqgU+YBbZl+vWv0ws9zfnuda+2Lq/W9u/ZV+29MO5bda6jQuUuZS6j+ma+n/j2duWsefTSe5fa/3m+PctMtymdPrilNYy5+7vRY7xFuu1bSnlgFrrVWXnm2Zcr64+s9zaX9dNt2Afm3fs3iLDTR32yrDCxS2TvG267hPp1x2jWsps2cYF6r9IW7SWOW8cbjreWsqcN6aUUu5Whxs9TN80I2MdF44bJtKeMJH2zDreKGyRvMZj/FdqrR8d/35gkv+5xjHeOq7Pa/9FPsc3/Zm6pto4OXzZjwxB5CUZfnZ6a4afSh41vvaz479PmvWYyGNlkfS3Zli0+cVjo34yyZunyntmhrk9Lxkfnxkbabpe66bLYoten5zhZ4MTx8dHMnVDjTFdyw0uPpJhjss+4+MXM/s2tL+TYQrEvmPZl2e4+9hkmjeM7f4T4+PUJG+YkVdr/eemy7Cu5yUZOvqZ4/5+0AbzmtterWVmnX64aP/JsCD5eWN+l2SYKvPvZ+Q166Kijd4Cu3VfttT/TWN+R4+P1yd504y85vbFBfZ3a/u37MvW/jq3zVq2cZl9v7XuC4wXreNdS16fybA26srf2zJxe9gF+1jr/m6p1xNnPRbdRxkvJErDTUEWqP/cdAv0sZZ2/e0Z75v1XOsYtcx92ZJXa1u0tOvcbZzXJzZQ5rpjSoZfTpLlxg17Z8YNlDaY16xbpc+6AcvRmT+WtfaxlmN8l3+mzk2wqx4Zruw9eOLvg7LjftRvnnj+Sevk8aL1HtONlGEZkJW/b7FGwzWla9zGT2e8D/pEp51V5qorOKefa0kz+VyGnyzfmOGMwPTVp7PuqjTzPu2N9Z+bbuy8d534+y6ZcUVtY16tbTG3zPX64aL9IsNqDsdM/H10hmk503n9doY1PbdnuLDyv2b4GfM2SW4zprk6ww0yrkry7Qzzzq9q3G8brf9NM3ypfPf4eHZmXAnc2F9b93dr+7fsy9b+OrfNFuhjS+n7rXVfoP1bx7uWvJ4z7qcXj49PJXnWBvtY6/5uqderJh6vzxC4vmvRfZThLPeqdl6j7VvrPzfdgn1sXru23jGudYxa5r5syau1LVrade42Lni8tZS57piS5NHjv4c19LFF6va+DGsObyqvDMvRvm5sqwdnWJXoFVl9B7qWsay1j7Uc40v7TF3rsZWrQ+xVd/5J4YrsuG/05Cn4Z2b4hrVKXT0vZL1T5iU7r0V37fjchtKN8+ROzRCsvD5DZ3lerfW0qaS3yrBsSTIEpLN8q5TywLrzDS6+NZXmilLK47PjdP9jMrTZtH3Hf49L8s5a65WlrKr+taWUf1dr/cexvMOy9hqCLfVvSbdvHeeaJkmt9R/Gn5A2kldLe7WWuV4/nNTSL5rWWsxwZiFJnjr1/C9kmP5zWK31+vu3l2EHPiLDfKdprftybv1rrd/JMPDNu+igpS+27u/W9m/Nr6W/trRZ6/HWUuYy65609f/W8W7NvEop987wQf6KUsoZSR44vufJtdbzZuTVUmbr/p67jXVq3mMZbu7yjhl5Jeu37R9mGL9TSvm7OnFjoRla69+SrrWPrdmuZeKOceNP2ivp98twhfy01jFqmfuyJa/Wtmgps3UbW4+3ljLnjSnPz7Ae8Lsy9rU5Wut26wxru5+VYXm8JKuuHWnJa+UCyhdNPX9Ehs+klYvVWsay1vZvGceW9pk64z1JtvBmGUk+XEr5i+w8obtluZJVytQt/0ops275d2qST5RSVubL/FyGM6XTWtOdWGt9ZSnl2CQHZrh5xh9luOJzxW8lOa8MFzmVDHNfnrcqp2Eu0VvGOTIlQ4f9xenysmMJkJrhG9KTZ+T1Z2VYueJbSf5TGZb5+fZUmudmWJ7korG8O66RV2v9W9KdU0p5Q5K3jX8/Lsk5G8yrpb1ay2zthy394qJSyguz811rVk3Mr7UeOiP/NdXhq+57y3CRwHRbtO7LNetfSvlMZsy9nyh/el5YS19s3d+t7d+SX2t/bWmz1uNtWX2/te5JW/9vHcfWy+sNGYKrczNs/99mmAs888rxxjJb93frMT7pm0lmHVvz2nYyINs2p4zW+reka+1j67Xr/0ry52m/Y1zTGDWnzEW2sTWv1rZoKbNlGxc53lrKnDemXFGG5cwOK6W8f+q900HrInV74RrPN+dVhhUlXlNr/d9z8kraxrLWPtZyjM/Na6z/42uts770zbXVF8b9fCYmwtdxQncp5bIM3+hLhg6307f7OvvCuLm3/CvDpPSVsxkfXeNsRlO6Ml4wVEp5ZYbJ5u8ppZxXaz1iKt0PZucJ9dPrF0+mPWDcvqvWStOiDBd4XFlrvbYMt2k8YLrcMtzKcmX1jC+OZwFn5dVU/3npxvJ+JRPtmmHi/apyFyhz3fZqLXOtfjgjv3X7RSnl1hnmOE2W9+Ja67/OyKvllqor9sqwbvCDZ52lWmBfzqx/2XH1dsmwFM3PTL6vbuwq7kX299z2X2BftvadpjZrsay+v8hYMaaf1/+bxrv18hrHj/tmuMPVj4/1+1qGmxs8fUY+LWNn0/E2bxvLjjuGJsPPvHdP8r9rrasChvXatgzLih2d4Tj76/H/1wfG08HkAuNF83bOs86xe/Mk36s7LsC6a4bj95K6eo3dRceope3LRfriPPPKbN3GBT+bW8eomWNKGS4mOzJDMPeU6ffW1Rc8LzQWrKclrzIusdeQ19yxbJE+NqZf7xhv3ZerYq9WWxoEr6WssQzHirp6maVZ6yGeX2u9V2m88rc13UT+pyb54QxnHu6VYRA+o9b6o6XxStBSyuNrrW8rpTxnjXSvKIuvlPHENfJ6aynlJ2qtf13WuOXiyqC5QP0XuuJ1PS15tbRXa3kL1GuhftGY58zbcNad11o8deIt38+wdu/r644VVFr35aL9+pO11pn7YNG+uLss0F/ntlnrNi6r7y+ST+N40TreLXQsleEnyPtlCASemOEn4sPG15Z2jCxSr7LzCirfzxD4XTrxemu/uDjDTTFmTRepdRNLrs2yQB+b266llDOT/FKt9cJSyp0yLKn49gzr0J496wvBnLotc1+21H+3jinL/Mwa82sah8e0e2dYMWJVELzRupVS7pfhDPrdk9wkQxzyzST3XSSvUsrJSb6R5E+y87SKhT/f5tkVn+OllJdnWBbt3XXBoHa3T4copXys1vrAMiziPFnZkmHAOWA6yG2w3inz/5XkZzNM6F5VXnbMFWlNl1JKyXBzjoMyXD38b2VY+2/l54/nJDkpye/OqOvk/JqVuS37r5Eu2XGHvFk/Jc9yn4n/b8uw5uUnM1zV+uAMZzoevkZ5Kwdsa/3npiul/O9a638oa/zkXnf81N5SZkt7paXMln44/j23X5RSfr/W+qypM1OT5U2v7Tv3bnB1vCPQOlr3ZXO/bjC3L7bu79b2b8yvtb+2tFnr8basvt9a96St/7fu77l5lVIem+Hs770zLAN5dpJPJHng1NmklmOk9XhrOsYzvOlvys5LV104lb6pbWut22e8vpMF+mtLutY+1rIvb11rXdnuJ2VY1/tXxzOP52b86XuBMWqZ+7Kl/k1t0VJm4zY2H2+N29k6DqcOv8z++xnpViwyFqx4dYZ5r+/M8LnyxAwXqy2a138c//2VqXQrX3RbPlNb+1jL2LPoZ+pTM2zz90sp387qvrimPfJM8KLKgqffl1TmZ2qth89Js63W+u2G5x5Qp+azTD9XSnl0nbhz0VrPzajDrTLcLONhE88dWmv98lS6Wc+11n/N50opP1hr/WppvwnJ3PzntdeiZW5WKeVHa63nlva1fefeDa60r8XbtC/n1H/ybMHbkzw2O/8cPH3WYM2+uOy2XyS/Bfrm3DZrPd6W1fdb6z4+P3e8aLVeXuOH/xeTvDbD+qP/sGj+G9U4Jv6HJC/LsCZrybAO7XNrre+ael9z2+5OGx3Tp9Jfv453KeVvk7ys1vre8e/rfyFddIza3ZbUFs3buOw+scBn6msy/IL8zux8xnXyjPEiY8HKnQIn+8H1UwOWtZ0tY9kGPgfXG3t2X3+tc5br2FWPJH/U8twSy/urJT/3lgx35FmvzFnL1mzoudb3zUizb4b5SfPymrV81TLr37qO5dLaoqXM1n7Y0i8yBKnTaWY9d3qSf03yFxnu7vf+JO+fStO6bmbrvlyz/llg7etdsL9b279lX26mv04v87Nb+/4ix3djma3j2Jp5Zfhp9cgkz8hwVu/cJB9I8oIkP7FIH9vA/m7ZxtYlujY0dq7R9q31n/vcAv1pvWP3bUlenmE5w68nufn4/K3WaIvWMWqZ+7Ilr9a2aGnXudu44PG20X05axw+dcbjTZuo25kZpkG8NcM9Ap6dnZdmWzevleM4ySNnPWa8t2Usa+1jLcf4unkludv475GzHrPabPqxlatD7PSzQCllnyQL3Z51rVPlK2qtx5dStiW5eZLbjmeMV85wHZDhG9lKXk3pJvxYkseVUi7J8I1u5fT7PUsptxvfc7NSyhFTed18osz7Z/i58aCy8/yYAzJ8AKWU8tMZLnT44VLKH0yl+f6cNrn+YpHxtbtlaPdblp3nMB2QiauiF6h/U7rRTyX5b1PP/fTKcy15tbTXImWO1u2HC/aLJ2W4deOkX5zx3Itn1HXaQbXWUyf+fnMp5VkT9Wrdl3PrX2s9pqE+i/bFlrZP2seBNfNboL/ObbPWbVxW318kn8bxonW8m5tXrfXaDFOpPpnk1WWYevDoJM/KcNODhcoczTveFjnG1126asF91Kq1v66ZboE+1tKuv5xhGdHtSR5aa/238fl7ZAiOp607Ri15X87Na9HPt3llztvGDfaJ9fZl0zi8oq4zzW2DdXtChuPiGRkC4Nsn+fkF8npwGqdzjFrG9Xl9bJFjfN5n6kamkOxkK+YEPz/Jr2XYOStXA5Yk301yylTauyR5TZIfqLX+SCnlnkmOr7X+9zHJyyfe//rMuOoyw1yRZyX5oQxnMlY6w1UZ5tMsmm7Fsets5rEZdtQh2XnN1aszbPuKm2RYz3Gf7Dw/5qokjxr//88Z5ksdP9ZrMq9nzyh7cuCbvljkrhnmaN0qO3f6qzMMpovWf266Mnsdy2TY3smfQlrKbGmvpjIX6Idz+0Up5TEZphAcWnZe/mb/7Fif8Xq17aeceetmtu7LRfv1eub2xdb93dr+jfm19teWNms93pbV91vrnrT1/9b9PTevcbz98YnHTTIsXfWq7Hzsthwjrcdb0zE+mrV01Z9PvN7UtmWNC7dW1OECrtb+2pKutY/Nbdda67cy3BVsus4fz7CvVurVOkYtc1+29MWmtmgps3Ebm4+3xu1sGodL2wWAi4wFK+9bmVL1rQxTQlfKe1JLXrXWF43/rgrOxy+9K/9v+Uxt7WMtY09TXrXWk8Z/V53IKWvfh2BnLaeLd8Uja9yicCrN32RYnue8iec+u0baVbf9m3p91S1DN5NuIv3BSe6w8ph67ecb87hjQ5p9F6jTD2Q4MH82Ez8XTrzedIekBeq/ZroMi3Nvz/BBdceJx8y7uLSUOa+9FimzpR/O6xdj3kdnuDr1wROPI5PsMyP93LvBjXm+P8Ntry9L8t7p/rXgvlyoX2+0L25gf6/b/gvuKslk7wAAIABJREFUy9b+OrfNWo+3ZfX91rqv9I1l7e/18spwBvgPMnwBW/OuVIuUucDxNncbx3SPzI4bvJyw6D4aX/9ydtwm+doMV8lfMf7/yxusf8vnW2sf2/Sxu4Exapn7siWv1rZYs8xFtnHB461lX647piR5+Pjvk2Y9NlG3lb6702MjeY3pb5XklzLcavmfJ56fO5ZtoI/dcVn9deJ9JcNiAG9M8vWWbd7qdYJvneTOmfjZoNZ65sTrZ9da71N2nuj9qVrrvWfktebSThNpfiTDz0ST5b11I+lKKcdnOAX/QxmClDsmuaDWOv3TyXEZfi6ZzOslU2kOynCbv+l0k1eq3jnDwtfT9drp6v7ScLHI+DPVL80o78QZbTG3/gumO3gqzf9ZNK+W9lqkzHn9cCJdU/9ZRCk77gZXF1zOaHz/IvtyKfVv7Ytj2pb93dT+Lfk1Hm9z22zBbVxK318gn6b+3ziOLXQszdNY5tz9vV69yrAU2A/U1RfVPDDJV+t4166p11r6xeuTvKfW+qHx759O8nO11qdOpWsdL+Z9vi3Sx5Y+9syzrH3ZkteCbdE8Xqyn9XhrKXORcXgq320ZAuTpiwJbx4IDJ/7clmG60m1qrb/Rmlcp5WYZPoMem+EOcftnuKHJmbXW69ao99xxfZ5ljj1lWCrusRnqfZsMq1y8v7YsjrDIt4RlPjJMXfhMhguETs9wOv+vp9L8eYb1VFcu1HhUkj+feP02E4/zM9xC8PrnpvJ60VjO1zNMRv9aZt9nvjXd+RnuFHfe+PcxSd44lea1GSas/9OY72em04zpTstwAF2Q4dvOm7J6svnHMnzD+XSGgPvFSV6yRr3m3ef8nUlemuQfM3wTPS3JK2fk1Vr/ueky/FR0YYb501/OsC7n5zaY19z2ai2zpR+29osM66ieneSaDD+ZrTrDu87xsNKPXpbkqTNef2qSk2c837ovW/v1ypm1383aZ9bm9sUF9ndr+7fsy9b+OrfNWrZxmX2/te4LjBet+7vpWGrswy3HSOv+XrNeGS7OO3zGew5P8mcb2Udjus/Me26B+rd8vrX2saZ92biPmsao/5+99473bLoa/99rBjMYoycRbRAleo8aJUEiHhG9M0FIEUEQIgyP6DUSoj+IOjrRGaO3YWYYJZgRvSRPMNGH9ftj7XPv/uzPPues87mfcfP9PdbrdV73nnPWZ+119l577bZKl9vSQ8tbF556rf1Gr0w0KNOlhwPuQMwO+sJQJ2lduHkroT/GSwtzeH0Z2zldL/A2qYK2R5d5ZcyjxyppAUcGfu4I7TR7Ff/Zb+qkI3XjCo0xGBgb7hfDAh3HOAsCtwMfAK+GjjJ/9H4SvcdY6TUxU94AwoQQMxnIedt78R4Nf8dhDhrQPtkcn/wdgmWbyQptgRf+f6QE54n0Wcp/cj8g8+zxhK9pgQcztLz81+LhWDQ0oFVbX94yPXLolQvMtu0bwOOYMhlO5iiNVg/czTGbvgeKbwM7ocm0Y5spUIO29PB/GqaYhofrZuBPFfJaKosN2ttb/5629MprbZ15vrGbsu/l3Sv/nvZu0pc8l1PGvO1dylcVf+Qnsl65uAU4GDv2HYZFwbilQ/4945tbpzvqdRHML+ZWzNHpTvITUq+O6mZbemg1qYu6eq39Rq9MNCjTo1PWAs7AJp1XYouBGTqV1/AujoawIrAHrdEhKmlhCZvGA78G5gnPJubKCu88uswrYx49VkkLO4W/FxtHB9Xxn7v6MzrER2qxNBGRQWrZTRZNcP6uqt8Vy1Y0QJOc9aq6QIPyPlTVz0VkiliavrcwT8pO8d4RkSFYiJKLxFI9v5/gfBj+fiAiX8fszObK0Po0/H09HF28hu1mx/CxWI7s50TkF9iiYEiGlifPeVHeO+GY6g3MtjkFL/8evE9V9Z8iMkBEBqjqKBE5uVNa4W9VfXnL9MghOOVCVZ8XkYFqnvXnicjjwIEJWuxAUWSD+2G4H6ShJyd0Pw+mE23fGP7WtqWD/3WBbxbli8j5wIQMLY8setvbW/8eek37W1Wdeftbt2Tfy3vMf5X8e/WYty8BEOpkiOZTNXvKdLd3BV+zlPEHTJ/jK/ytq9ttsN2yqzHnpbvDs0749+C5ZcxRryOxXb+z6M1CmQWnjupmW3poeevCVabjG5v0N0+ZlTpFRF4BXsIc/X+tqpNFZJL2RvOIoQlvcVSEYizZ0ktLVZcVi3CxDXC7iPwDmElEvqqqb2bKc+l1p4y5dE8NrbmwHextgJNFZBTmyDiNquaii7RBf06CXxFL5HANcJuI/AtIA+lPEpGbsVR+d/axvEdDeWdhu23/xoyuO8X7IebUtDewHWY4ntrs3BBoHYc5mShwdobWESIyM7Av5nk9lPbID3thoU1+iR27rIsdu7SAqu4nrXnOz9T2POdnitk4/Q5zvhqCZcBLwcu/B8+zaPDS8tSXt0yPHIJPLj4Qy9Q0VkSOBV4nCtlUgFZng/tQRBbW3ixQQI/N3IcZfG9bevh/HnPwLL5/3vAsBY8setvbW/8eel559dSZq785y+wm7+CTf68eq6UlIhdjO0yfYUeTQ0XkFFU9roMyve1dxdejIrKbqp6V8LkrrREGCqitW7GUtqeq6naZ33fCvwfPK2Oeep2iqqfX8A5OHeUss5u601sXnjI939ikv3nKrNMpV2D2qlsBn4nItZSHd3XzpvXhLWtpqeoz2OLvUBFZAZtQPiIir6jqagk9jy7zyphHj1XSChPjm7HNv0FYMIDpgVdF5A5V3bamfv4zMsaJZQWZGbhZVT+Jns+AfdTW2Hb/DVj2s3v7WN4wYKiqju8GnrPMQcBgVX23r7T6A7z8l+GJ7eYX6QyLRcNFqvrPdirNyqz4faMyy+QwgzeMjFyIZdN5EwsBs3egdZqqPh/e7wbcparPiYhgdlibYQp1Z1V9TMwZ51TgCHoH9BWxle+vNDjt9AVS/qU3tvTMWArahwPqysDDqrp2B2V00t6l9d9BW37h/a1bst9t3vuqxyQ4I4vIdpge/g12lLl0xW9qy/T2t8zvvort1n5Cax+ZDrNjf6Pit6V1KyL3YskDXLw00BcdfWcJrWHkdc8IbIf1aizFNWDh3RK8Sh3VpMwEp0+6sxOomDc0+sYm/a0vbRl0/trYJHPDQGcX4EZV/XcT3sQyig4r5kJi8XaLnfOLc9/a8DsFWFPbHVZrdVknMlbBR0e0xE4cNlGH82h/R4cYiNkH9exIa4mXYVhlnQJsp6q5xAie8ubGjO7j8nKerKV4UpJHvPirSa5qEVkNsy+LaeU8tHfL4MXe6osA+2X4WreErxb+Yr5CZ9gsU17O+7SW/yZ4Hqij5amvhuW55NArPxXlPAksp6qfisi22Ap4fcwj91BVXTPgLYm19ZLhp08Cx6vqExmaTdoyy7+UpKaMcNJ0l5Wy2BSa6AEHLU9/q62zJt/YLdlv0Ndc8u+RV6fumQAsiznR/FFVR0uUkreDMmvb28nXOvT2kQmqWnpa6JSLC7DkQtfRmtL2xATPqy8q8RrKWGW9isikzGerZqIreKFbbenkv0lddEVfNOm3ZWWKyI4VRaiqXlhCb1osLvA2wAaqOkcT3kTkEmzyeUO4fxaLXTwDlkVtOy+t/oJuj+OdQr+ZQ4jIntgW/JuYhyHYJG7pBG8t7Ajhe5iR9JbRu8HYMd036PV6zNqBiMgxgc5T9NpMFXZfTfDuAL6GZVK5tKrziciFWHSLsQmtVACvBe7BnADL7Lkqbb5UtSfotEQh5UrgWuBdbBfl4zIkL/8ePLFsOsdgdlJC+aLBU6anvlxlNpDDWvkRkdUxr+ZUkRcD0RRVLeygNgIuCCvo28WOegr8J8kfBebA25al/MeT3LDLtlK4fVhbM3IVUGt/2KC9vfXvacsm/a2uzlw2lt2S/Qa8F/xXyr9X33loYfXwIuYUc3fYnWmzCXb2EVd7e/hS1VGYt34lNKjbF8I1gNYg/jEtr7x68LwyVluv6vSPcegod5nd1J3466K2TM83NulvNWWulOIH2BjL2JadBIdx4AbMXKHFjt3J26LFBDjAB6p6Qvj9PZ18pwecuswlY/j0mJdW56ANvOi6eWG2hrPX4LyIHe9sA8yYeX8Zljt9d8xeJxuSJOA+S/AerCmzFg/bkh+OeROPxjKp5ALgPw3tnv4ZvLEOnDZP2QrcbJ7x6H024Ugf+K/FC+39zS7Rqq0vb5keOWwgF89gKSS/gnnQzh7Txmyy5sI8jd8Eloi/29u+Hbalh/8tMdOM8zElOQnYvBNZbNDe3vr3tKVXXmvrzNvfuiX7Xt4DrkdfePVdJS1sQrhl8kzIB7/3yJi3vV19vFttlOAPwZz/+iqvdeObV8Y89ToDFtnizHC/MLBRBq9SR02ltvTQ8taFp15rv7Fhf/N+pwDbYxtylwFLTy15BZ5K7uOkFU83odWQN48u88qYR4+5aPXl6k/HuJex3ZgqWFrzXsgFLK6qSwGIyDn02jLmYCIWtqR0t8yLp2ZTc56Y9/zWWFalwbSmJwQ7xv4aZsxdBTeIyIZabe95vYj8jBqbLyfcLyJLaeZ4PQEv/x68N1X1aQdvHlqe+vKW6ZFD8MnPu6p6U8X7Q7DTjIFYIO8J0HPaMdHBQw68benh/7fAShp2f8Nx1e2YU0cMHln0tre3/j30vPLqqTNvf+uW7Ht5B5/8e/VdJS01r/79gcujZ4p5ondSpre9vX3cA666DWZIFxI81MU85Xcs+mkAL/8ePK+Meer1POxko3BkehXbXb0hwavTUU3K7Kbu9NaFp0zPNzbpb5Vlisg0WIriXwMPYhsHzzro9oW3ySKyiKr+DXrrSSzSQxxFq5KWiGyvqn8RsyluA01MgfDpMq+Mefq4l1bHZh/9ZhMcJq2LAn+lVehPjHDmwZyEikgH9wB7qeor4X1Llrj0PinvSmAZzJwhLu+XTfFCZW+DZWO7F7hMVe8hAbFwHctik/OY1sYJ3mRgxoDzKfkjhkqbr3BMUcDxWIeMEa+KaD2FmZBMCmUW5aXHWF7+a/FE5BSsM16T4FxFBE5atfXlLdMjhwHPIxdHYxPcqxKcxyKcaYCZNMpkI+ZsIFriHFEFDdrSw/8TxaIy3BexPZdKaFXKYsDxtre3/j1t6ZXX2jrz2lh2S/a9vAdcj77w6jsPraOxVMKX0WormzpdeWTM297ePj4/sLCq3h6OlafRJJRmA7m4H/itmpkFIrI2cKRGHvIN+PeMb14Z89Tro6q6orRmV22z2/boqAZldlN3euvCU68ePdykv5WWKSI/xyJb3IElengx8x0xrdoNC6dO+R62+fZ77IQRYAXgIGyOdJOHlojsrqpniMihOV5U9bCEN48u88qYV/d4aGXNPlJ9l4P+3Al+KVzThSsH52HOGFuE++3Ds/XC/TIiUuwUCxYf7j3yCvO6cNVBJZ6IvAi8A1wK/ISwIyIiy0Nb44yoKyxMNL6nSQrQDM5vVPWyClJx7NnRyb1iQoSICGZHnQtlk8IIB44XbyiW9GT9HF9eWp76alimRw7BJz/fCn9XTMrrce5Qs1lvSeWoqm2hw8QcRU7H0sMuKSJLAxur6hERTpO29PBfG2PaKYvgb29v/XvojajhyVVnDb7RVSZd4j3izSP/te3dgNZW4e/Po2eKJTNqVCaO9vbyJRZt5SfYzu1CwDyYXel3EtQRNTwVMGMxAQZQ1bvCArUR/x68hjLmqddPwiJAA/2FyO+81uqoBmV2RXc2rAtPmZ5vHOEoy1PmqVhUjjWA1aU3lHt2MwI4Tcwx938wx7bcDnMtb6p6c9j42h8LKwcW031TNZ8SFy1VPSP8PawKLwKPLqut/wa6xyuvK2KWAc13dbWLthXeC5vZX+TAa7MZyT1zljeqG3jAXZgzxigsdvGo+D6h9YyTv8cdOI/WvF8Nv41TW1alkrqo5d+DF3CO72KZnvqqLbOBHHrkYiCwt6f+nW00GgtR9nj0LJcxztuWlfxHuEXa5BMpT5tcJ4tN2ttb/5629PY3T51VfqO3zG7zHvAr5b9he9f2JScdbx+pbW8vX9iuz3RJH0mzYzaRi6uxOK/DwnUwcHVT/hvgeWWsti2xjaHRwNvARZg/zdoZWrU6qptt2YB/b11Ulun5xoYyUVkm5rBVepX8ZmHgKMy+9mJgvU54c/Lu/c7zsLTFLVeGnkeXucZBpx7z0hoJzNVJPeUCGE91UAtwPL9YEOQq+KeIbC8iA8O1PZbxpJPyPhcLzNwnPFVdW1XXCde60f/raBTOJdB6VkTmc7B4h4hsJpLNCFbA7SLyaxGZV0RmK67o/Q7AGBG5VER2FpGvVdB6TETKvFob8e/BCzirl71vWiaO+vKU6ZVDp1x8Rnt2qb7ADKqa2rjn7DC9bVkr/wH3KlXdB8vJfk0JWqUsNmxvb/172tLb32rrjPr+1jXZb8g71Mh/k/auowUgIjOIyMEicma4X1hENmpaZgO97+IL+Fhb48NOA61hIhvW7Y+BObFdrSuBOcKzRvw3+E6vjHnGrtuwBezO2EnOiqp6V4ZWrY7qZls2kEVvXVSW6fnGJjJRV6aq/r3qKvnNc9gC6wAslfIfROQZEdm0qS4QkTlF5DgRuVFE7iyupt+J2Y7/NVx3YDu+LeZ5DXSZdxz06LFKWiJyvYhch/XVp0TkFhG5rrg8TPSnTXBtTEYxe69TgVUx5XY/sKeqvtxBeddi8VhvS8pLbeRceM4y7w60Hk5oldkEf4ZlBWtsExzhLYZ5U26ARbEYhWVUuS8IFSLyDLYafTHwVWZH6uW/Fk9ETsdCxoxMcFIbUQ+t2vrylumRw4BXKxcichLmAJLaTj4W3mft1VO8gHsT8AtgpKouLyKbA7uo6vcTvrxtWcq/iKwCHA38L5at6UJMqQzAHINuTmh5bIK97e2tf09beuW1ts4a9LeuyL6X94Dr0RdefeehdRnmdLWjmmnODMD9qrpsQsvTR7zt7eHrWMw0bUdgTyxKz1Oq+tuEVmXdisiFqrqDiOylqqdQAQ3494xvXhnz1GuRvGBBVT08THy+li6k63RUwzK7qTu9deGp19pvbNjfXN/pATGztuHAD7D6OEctSdLXgQdUdf6GvN0avvPXmJnXTsDbqnpA0+9M6A4A7tUkY5xTl3llzNPH68bUtaq+Q5MY9znoT5vg2piMYSWVDmBtTl9OuIp2e8S+4Hngdx4kjWL8VuC44kCqpUB8BjhJzEZsHcym+kR67Wo28NDCyb8TbzC2ix/b8uRsRGtpeeqrQZm1chjAIxfFpODwpLyi/BMoh9TO6edY8PPFRORVzIlr+8zvvG1Zxf8fMYeKmTETn++r6oNhQXUJtojqZdQni9729ta/h55XXmvrzNvfnGV2k3ev/Lv0mJPWQqq6lYhsE37zQcnujadMV3s7+foNlnHrCSxM5o3k08vW1e0KYRLy4zDhafk2bXUA9MqrZ3zzypinXk/DYtiui+mfydhudnriUaejmpTZNd3ZoC48ZXq+0d3fnGV64VRMRg9S1Q97mFN9TUQO7oC32VX1nLCAGw2MFpFHovdNaMWwMBaWLAWPLnPJmLOPV9IqJrkisgDwuqp+FO6nx5Kb1IN2wfakLxd27NsE/6WKd0MxJ4nZyMftnR4LMl1XhgvPye/8wHeLb8UiA6Q4RXzB34X7eYGV03qiIg5k/N25K1PmGsDw8P+cwAKd8t8Erxt15qmvqSGH3ZSLBnzNWFeXDdoyyz+RnT1JvGIydlt1sji16r8bsuOtsybf2C3Zb8C7S/498urUPfcHWo+F+4WwRCod95G69u52H6+qW8yx6GnMkWwituAsrol9kdcqvIYyVlmvUdvE9tHjOq2vbralk/9GOqUb+qJpv+2ijvL0S68ueDD8vQXbXV4OeKEpLWzR9F7092/AZt343opv7Fofx0KPThfdTwc84vrt1PzIGqZXxTLIvBTul8FyQtf97uXMs92BN7DjzazywqIlPAtMCvfLYrFaU1qVeMDyVVdCazfgkUIoQ8e+I1Pm6cCfCBMQYNa0AbHjgP0JzlFBmOPJyyTaFXhZXRwKXA/8Ldx/HTOXSPny8l+LByyC2RoV/C8NHNwhrdr68pbplUOP/GArz3OAm8L94pgJQ06Ol8SSU+xYXMn7fTLXLsCyHbZlKf9EyVVIEq2k9x5ZbNje3vr3tKVXXmvrzPON3ZR9L+8N9IVX33lo1TpdNegj3vb28LU6dqT8N3p1X9uktYFcnJ6r7w75r8VrIGOeen0IcyQqJsNzkl/AunRUl9vSQ8tbF556rf1Gr0w0KNMri566aMLbRtgJ3pKY6eMY4L86oeW58Okyr4x5+riXVk5WXIvAjiqiGxfWaecl4/1O+Y7m7MArGVrPAXPUlDcmCEudt30lHr2RIB7AYts9Gn7zKWbT09Iw1Hgvh2e1q3iC92wVToO6H4utwmJa40vwPPx7vLS90Q48tFy7Hp4yq+SwqfwAN2ET23HhfpqS+jo0yNCbmFfuG8AVCc7FmEI9IVzPYnZYjwD7d9CWpfxjNlnFLsCU8H9x/2mGVq0sNmhvb/172rKJvFbWmecbuyn7Xt698u+R14Z9aXZsp2kjSnStp8wG7e35Rndmqqq6BYaGv7WnaA34r8VrIGOeet0Os1l9BYsd+yywRYaWV0d1sy09tLx14anX2m+sk4kOyvTKYq4uOuathN9fNZB996ZewPfoMq+Mefq4l9ZtWAjR4v6HOCf7/WkTjKq+nJiWFUGOx2B2Hzm7s08yz17AYtdVwaeq+m5S3udN8VR1HQARuQoTkifC/ZK0x+T7WFU/KWhJxnu5KFNEBhbvxDJ1pbx540AiIrNiK77BEd9xnvZPVFVFpKCVxsJsyr8HbwZVfTip11y0Aw8tT325y6yQw5YyHfIzh6peLiIHBrpTRCRHa3NsN+FxVR0uIl/F0n/HMA8mX/8GEAtm/lfg21j/ODbgeduylH9VHVjymzLwyKK3vb3176HnlVdPnXn7W7dk38s7+OTfre/qaEUOnUXWqfnEvP3/rhb3ulGZ3v7m+EZvNqm6ur0Ym9znxh0liYfs5N+D55WxynoNTkyTsJ3U7wT+N9F8Zi+vjupqWzpoucc3R5meb2zS3zxlemUxVxdpuY14y8A+wMlOWk38VMCny9wy5ujjXlp7ABeJyB8x+X8ZO2GthX5NmyyWeU1FZFos68rT0MhIvoADsVSoD1GeHWmCiGwLDBSRhTE7sPsztLx4i2qU+UVVnxSRbyY4o0XkICyJx3qY9/L1GVp/wGJUfkVEfo9NklKD9hGYg9K8InIRdvwyPCUkIrtidTkPtgpcBdu1joX5chE5A5hFLOD8j8k7lHj59+D9Iyi2QuA3J5/K0UPLU1/eMkvlMAGPXLwvIrNH5a1CPt3mh2rpaKeIyFAs2Pq8Cc5XaB0EPsUSZ3woIvFzb1t65doDI6iXRW97e+vfQ88rr54683yjt8xu8g4++fe2t4fWadjO0HhsgFkSC8w/s4j8VFVvbVCmt709fI0SkeOoySZFTd2q6kbhr2fc8fLvwRuBT8Yq6zXokj+pZYp7poZ/r47qZlt6aI3AVxeeMj3f2KS/ecr0yqKnLprwloN4hlon++s0oAs+XeaVMU8fd9FS1ReAVURkSLj3Z1/1bBdPjQsLwXQRdiT8FrYT1ubA5aT1MBb9YDgWImQnYKcEZwbsmOiRcB0BDMrQ8uJdgg2ca4frLOCSBGcAZpMzErgC2K3iGxbDIgL8AvhmCY7nSPIJbAd4bET3qgzeesBxWIrl9Upoufj34GG7KbdjO/avYumm5+9DmZ76qi3TK4ceucAmCvdhnfQ+zJxhmQyt04BZsNXrc8DjwHkJzu+wdJiHhutR4BDMUe6iBNfTli65btDnKmWxQXt769/Tlk36m6fOPP2tK7LfhHeP/Ddpbwetq4AlovvFA48L0uqX4Okjbr3v4GtU5rozg1dZtzTz8/DKqxfPI2Oeej0e2AyqEybh11Fda0uvLDrrorZMzzfWyUQHZXplMa6LR8P/g/uiCzJlvNSUFpFvCiV+KgHPo8tcMubs401o/QA7DTmkuFz11aRyu3kBq3ueOWl5sgvl7KP68mwwsDe2krk6/J8K816Z3+WeXVj3jLwjR+7ZI+HvWIKiASYkOMdkfpd75uW/9hnB+54o2kHxrANatfXlLdMrhx65AAZhpytLYLtl01Iz0cQyUy1d8m4lbNdhLyz4fQ7H25YuufZcHlls0N7e+ve0pVc2a+usQX/riux7eQ/PPfrCq8c8tHJ2noU9+dgmZTZobw9fA6vk1Fu3NPPz8PJf+6yBjHnqdTJ2lPwJkZd/5ncuHdXltvTQ8taFp15rv7Fhf+vaXKUb8hq193uZazIwpel3YqHbiusszLnvigyeR5d5ZczTx720/gxcgJlBHIptBp7jqu+p1ZCOhs55nbc9c9I6EsshPxflDg2u8prwhRmcL1U0jpNWzmM39cgfiAV9B5tszwaMw7wni+8bRiYlIjYhnwU7XrobuBa40cFXzpmqI/5zeCU4Y7pBK66vpmV2Uy4ays7cWKrrbxdXBmcgFrlgvuJy8uVty0b9rYks9rG9vc88bemV1/FNv7FTee0L7yVy1yb/fZDhHK3LME/utcJ1GnA5NkA90pB+N/maiO3mZ0+COpCLq4ClovslaXdY7bO+6JKMdTpWfuH67ouuiz7guPpbCb2ZsdPoR8N1AjBz9P56zHExe3XKW4ft7dk0nAW42UmvK2NqSR/30hqf/B0C3OOpoy/cJlhEVsUG/zlFZJ/o1VCsEmLchbBoEB+LyNpYOI4LVPWdhGyRWu/A6JkCC4rI94ENgblF5A9JeT0G3V68CH9t4HwsXJBgtkw7qerdYkHltwUWkNbUfTNhWbkKGgdiSQqmF5H36LXl+QRLlAAW/u1X2GRoTITzHpbkoAVU9Ufh3xGHPAZVAAAgAElEQVQiMgrrnDeF8n6K2QQtKCLjE77ui/jy8l+LJ5ZwYQnMfnDTCGcokeOek5anvlxleuXQIxdiKarnDnwtF/E1FDv+agEROQbYCgu7Uxj5K7ZoKXD2xFa0bwYcCThLh/fetmwk1zVQK4sN2ttb/5629Mqrp85c/a1bsu/lPeDWyn8DfefqSwF2xurtV+H+Pixh0afAOs4+4m3vJnwtA2wNnCPmHHYucKmqvhdoues2QKmfRwP+PXheGfPU60Bgeu11oF0F25wBm+xMDs9dOqrLbemRRW9d1Jbp+caG/c09V8Fk70kskgHADljkn6LfH08NdCCvU5PW+0CPjbxTl3llzKPHGo2pWMY5gA/EEt/8E9sUrYX+cIybDpulT0Nr9pX3MMPoGK4EVhSRb2CVcy3mybthjKTVDg2vYSuzjbFOVsBkzIShKV4BJwDrq+qzACKyCGYnvAJm6P46ZksUe19OxpxLCr6PAo4SkaNUNZ7Ax992CnCKiOypqqdWfCeBjwtVdYfw2yKbyoVYp7wYmxAfhWVb6uFLW7Miufh34i2K2XjNgsVIjHF2a0LLU18NyvTKoUcuNsAmCvNguwExzkEZ/jbBBtys93OAvQLOP0vee9uyqVyXglMWve3trX8PPa+81tZZg/7WLdn38u6Vf1d7N+hLqDljngrcii3EnlXVT8Prf4uIp0xXezfkazJ2dHuWWPrUi7FMmVdg6b/ddRtgvIicTW+klu0iPK+81uI1kDFPvR6D2akW0WIuwSZjgzGfggPCc6+O6lpbemg1qAtPmZ5vbCITTeYqC6nqZtH9YSIytrjRKH2viEyH2cIWfamIeNVUXqugES0RuZ7eqBEDMLv/yyMUjy5zyZizjzcdU28QkVmwk6HHwrfkHMTbQMLW8RcOIjK/WlrkKpzHVHV5EdkP+EhVTxWRx9W8YFPcJbGGi8OCXRC9nzZS3FVlevHGq+rSdc+8ICJzY5ldehYm2hrWDDEP1WEJzgUJzmOqunx0PxCLq7d4gjcQC0Qd03qpE949ICKrquoDXaTnqa/aMj1yGPBq5UJENlPVKx20bsJs4ko9WMV28dfT1hBUZbi1bemVay/UyaK3vRvUf7flx1Nntf3NWVZXeQ80K+W/SXs7aK1NcuqFOR6n/c3TR1zt7eRrIOYMMxxrpwsxB6Y1gSNVdRFPORG9wcBPMfMksJOZ0zWkYm3CfwM8j04vrVcReRxYqdATxfgoIoIdB6+R4Ht1VNfassGY6qkLz7zB9Y1ecJb5ALCfqt4b7lcHjlfVVRO8H2D2qy9gfWkBYHf1hVebahAWkQVMwcIfvpLB84yp7vp39PHGbSkigzD/rFxEijbozxBpg0TkTNqFPg7l9WnY1t+J3tXHtCkhsRiqa2OT4BuxoNX3YobSBawsIiPorXCx4rQlBmQDvEczuwaPJnxtiq3UvxLoFLSGJnhHY8d6VcfjF2LpSscmOBeE9+kRA6G8tmNEEfkFZjP8Jr1x+XqO2jvg34P3vFiolmG0tvePm9Ly1FeDMj1yCD65uEEs/E1KK857DuZZO1ZE7qA8pN9E4C4R+WuCE6+K3W3p5N8FdbIYwNXe+Ou/ll4Dea2tM+c3dk32vbwHXI/8u9rbSavq1CsGT5mu9nby9Rzm0HacqsZhpq4QkWIi667bMNk9KVxl4JXXWjyvjFFdrwOShfIBoRyVEC4qAa+O6lpbemg1qAtPmbXf2KS/OcvcA7hALH42wL+weUsKJwDrqOrzgY+FsPjvPZPghrxVQgPZH535eQ48et0lY84+7qU1A7Av5jezm4jMJyJrquoNdR/UnzvB47AV0RiiwNOqOibCWRwTrgdU9RIRWQDYUlWPSWg9QW/ygWUkJB9Q1fUinGewI5i0vH8mtLx4g7DQHsVK+x4sleLHEc7zWArDXOzEmNazWISA0uNxEXkaWFxrGkwcx4iBr2+l31SC5+G/Fk9E7sfqKK3XKxM8D63a+vKW6ZHDgFcrFyJyMxbKJcVpCUguIjnliKqeH+EcWoJzWELL25YuufaARxYbtLe3/j1t2UReK+usQX/riux7eQ+4Hn3h1WMeWq5TL2cf8ba3h68h6ogH2kAuVscWR+nOVDxZ8/LvGd+8MlZar4HGyhpsf6PfzAw8pKqLJc+9Oqqbbemh5a0LT73WfmPD/uYpcwFVnSQW9x1Vfa94ltB6RFVXiu4FeDh55ubNwbtX9r0bCB5d5pUxTx/30ros4OyoqkuGSfH9qrps1XcXxPrlIuMp3gdaDxc0McNpod1b/SEnLRdewK2LDnGfk85NwJAanJHAXE56lZEHsN2TaRx0vPzX4pHJ7d0HWrX15S3TK4ceuSATSqpGdpYsk50GdLxt6ZZrB61aWWzQ3t7697SlV15r68zb37ol+17eA65HX3j1nYfWubTGRD8bOLeTMhu0t4evwdhGxGmBx3NL+PLKRW3q2wb81+I1kLHSesWyg91IFDkGm8TfCPw6g+/SUV1uSw8tb1146rX2Gxv2N0+Z3mg4p4e22RnbKb4hyO+mwKZNeevWdwLPUxNlJeB5dJlXxjx93EvLlXY7d/WnOcT1IvIzLKRXfNwbe3MvjDmxpLa+OdOEWTAniTHAv7GYjzF4M7q48KQiOkTC12XANQmtq5IyPcfjcwBPicjDCc7GCV+eIwbXUXsD/j14N4jIhqp6I9XgoeWpL2+ZtXIYwCMX94vIUhp5mOfAIztiKST3xzxyY9lPjxq9bemVfw94ZNHb3t7699Dzyqunzlz9zVlmN3kHn/x729tD66fYZLN4djc2cKfgKdPb3h6+LsQmrhsAh2MmabkdL2/delLfevn34HllrLReVfVEEfkAuFd603//GzhaVU/P8O/SUVVlNvxGLy1vXXjK9Hxjk/5WWqY4o+FEMBgzwypscN8GpsfMPRWroya81YGX1pvq23n26DKvjHn6uJeWO+12Cv1pDjEp81i19ejpXixM1EmYkAzHbKAOqaA7DBiqquOT56NKyktt0bx4Y4BtNbGTU9UVIpzzSmildrCe4/G1SnBabHmcRwzeo3Yv/7V4IjIZC7D9MRZaqey4xUOrtr68ZXrkMODVyoWIPAV8A5gUyizKS4+NPbJzKxaf9deYSdBOwNuqekBCy9uWLrn2gEcWG7S3t/49bemV19o6a9DfuiL7Xt4DrkdfePWYqy8lv1kfcwJaL3nu6SPe9vZ8Y+EENl5VlxZLaXuPqq6S0PLKxdFY6KvSyVoD/j3jm1fGvG05U3gxOYNf4Hh1VDfb0kPLWxeeeq39xob9rbRMEfkhFu1nYyzmbwGTsXB9jVPTN+Gtr7SiiftawNeomSw7dZlXxjx93EtrPeBgbMP0Vizt9s6qeleujJbf9tck2AMiMkZVVxCRJ1R1qfhZ+H8xVX1GRJbP/V472+Xy8tbV6BDdAnFEHvgSpg6IyPy555p4FntkJ5L9nueS2JN9CV/C1AQRWRezhfw6Njgeg8U+FeD36QD5RYOIPKyqK4vI3Vgc4zcw07jGzp6BXtcWiv+p4NVR/y9Df3yj+KPhLAicAqyC7Vo+AOytqhOnFm81/OQmyQV0OvHuWv03oSUis2P1KsCDqvoPTxn9kSxj06r3iWL9WCwI+nNiHt2vYnH7CtgXi1HXYiRdkALWldYg17nyTgx8ufAiKI0OIRZTs3R1oWG7X8yhrwpv6bDyyuGUeYyWHjFIayzAXHkbN+S/Fq9sgRLhPNaAVm19BVq1ZXrl0CMXIjJbuC3dgUmgNrIItsoGeF0srM5rWCYlAl/etmwq16XgkcUG7e2tf09beuW1ts68/a1bsu/lPZTp0RdefefpSydgmTgfwGxlHwB+o6otSXqcfcTb3q4+HuBMEZkV+B22Czck/F/w5a7bcL9OGW4D/mvxGshYN/uuS0d1uS09tLx14anX2m9s2N+azFW2FYtkFcO7mK3qtdGzi4E/AUVSq62xSCvfaiqvVeClparDnfQ8uswrYx495h5TRWQa4DM1R9HxwLewMI7/mZNgWgMtp1DYxBSwF5Yd5JdY8PN1icKOqOpu4W+p8qI1yHUVePEKSO3k7qHXTi6d0JTBRnUIqtqUryIVYw5qs9YE8PLvwcstUApQrE29tGrrq0GZXjn01P+Y8BspoZXuTFXJTgFHiHl474vlcx9Ka3ILb1s2lZ9ScMqit7299e+h55XX2jpr0N+6Jfte3sEn/17+PbQ0Ok68RkReTSfADcr0tnctXyJyMpYM4CZV/RcwmvY+Bs3qtqD9A9rt8A/Hz38tXgMZ61rfxa+jutmWtbQa1IWnTM83NpGJJnOVQVgCjJHhfjPsCH8ZEVlHVYtsizOo6oXR7/4ilgeBhrzVQSNaYjGyd6Fd9oudYI8u88qYR/e4aInIbtgJ1b9F5L+B/bBkGcuJyLmaRBLLwX+0OUQdNFyp/Z8BMQPx+TTYnH4J/2+BWBKAX6pqVbzSL+FLmKogIhMxm/QCjsMGGaD/9Gs4FVwtXGAT4vuxdM7jVPXzst/W0P0ztumyDhYBY3PMvGKXPjM9lUFEtgBuVtXJInIwsDxwxNQ0CfwSekFEHgRWV9XPwv002ObGGkTJqkTkGCyG8KXYZG4rYFasb6HtToVfCIjISMzJdFsiJ1NV3as/+PGCiEzA6ngmzCl2flX9h1iItEdUdYlaGv+Jk+AGR71dt2fxQsmW/rvYCuwI7SD+ajdARP4L2/GaTlUXEJFlgcO13cv2S/iCQUQuV9Uty46DEpvgh1V15S+UwS/hS4igP/WrF0Tk6/ROiH8IzJkxEfPSKhzsir9DsN3mNbvI8lSBiOc1gCOwSdUhqvqtfmbt/wSIOaSvrCFLWTjFe1hVF5Uoy63knewK0E7t2fsK4nQy/U+DpG7HqeoyuXdV0J8h0qrAddTrtWeZSnATFoLs4nC/NbaL8AbwP1QfpUxNGAGsDNwFoKpjgzH+l9D/UKyqPcdB94nIH7EIEe8XD7/c2fkSvijoZ/1aCSIiWIz21TBP8MWxDHKN01pH8GH4+0GYXP8TmKsvfH6BUITD/AFwpqr+VUSO6E+G/o/BsZgvzl3YEf63gSPFwtbdXiCp6gL9w14tFD4o74jIktg85iv9yI8XpheR5YABwHTh/yLZRy5EXRv8R+4Ee6GbjgOB3gBgc1W93IH7mKoun3smUTSLLxpE5EFVXSVZIZVGrQjfPERV38u9/yKhEzOA4BgzryYh8f6TQUSO0fZQZy3PpKGneti1Qr+gqCBiXrsLq+rtwfxmGq0IzfSfCFV1FgavD1X1c7EQdothu4KfJnizd+PUp1t0InoDi6PZ/7+BiNyG2ciPBR7EPMG7kV3rd5j9/Xcw5yUFzlbV31X+sPPyvq9JXGIR2UNV/9wBrRswx/H1MFOID7GdyGUqf/gldA1EZC5sAwrsKP616N3+qnps+H8LVR0ZvTtSVQ+K7ruqCzwgIrsCV2ILy/8hOJmq6hlTudw+mW6WjJM9UOMvZjT6axIsFiv1XODi4NwQv/NGAcjG+4zwDms6URaRR1V1xRr2EUuluJuqPhzuV8IU5jLR0cKcWPSKYZTn2Uba03Xmcquvginob2LZxgYC76dHfyJyDnAH8BvMOP+XWEayPSKci7HYs58Bj2ADyimqelxCaxEsw81X1VIRLg1srKpHJHgLAHtmvnPjBG9jbIUMMFpVrycBjxlAWG1vHMoaA7yFZcZpa+u6MqU95/jCwKKa5BwXS8V9JPB1Vf2+WErvVVX1nARvGaA4Pr1HVcdleMotoDoKryciS2G7X7NhcvM2sJOqPpnBLXP6aVrmbljUgNlUdaFQZ39W1e9EOKtj2YXeF5HtsYH5FG0PF+eyZRSRq4BzsIlo1ubT4dxR4NXWWdBPa2L2evdh/eQTVd0uofUcNhk7L/Cm0Tt3CMcqOpnv9OiLidigdp6qPpWh0SQKgwtEZK/A/2TMpnY5LJrErRHOtJhjaE+fxGTn0xq+euKDisgZwNLYRO9BLGrFA5qERJKG3vYiMkhDfHURGYTJ0EeaxFwXkdVo13VtO9B1eGIpaA9W1TvD/f7AOqr6/XDvHruCHvseZn/6XJiQLRXXfcA7AcuqN6GKtqctA96StCezuiDBycb1j3VPg/FtILbbPYzWek3H8YHAVxOcl6L3rrEt4Hp11Ny0p9y+O7zr0fmp/s/cu3VBHdTpRBGZV1VfLvntRplx0KvXK+s/4JSabkpvdIgsaDdtp7VL6fmaXlgA5N9j6fouxbL+FJPy+auuhuUcGq6LseOyE8L1N+AvGfyjMWeQebFBcjZssE/xVgSewDxAJwHjgZWwQNJbBpz7Mc/FLbEJ6WbAZhlannSdj4Y6exxTEMOBozK0Zgj1+kj4ze+BwQnO2PB3u1AX0wLjM7RGYyvbOBVhWxpDYBw22V4HC7q9FrBWgnMUNjn/cbhuA47M0DoJ+CM2AVm+uBKcx8PfXYHDwv85/mvLxMwN9i++K9RfW2pIzPxlS0IqRqxzP5Hg7AU8iTkWHB7kY8/o/U/Ds/eDvBTXpFgWsVTK54f2ezT8v1SJfN+PDZzF/dpYzvQU78/YxO9lrD88AZzTYd8diw1UsVykdTEem7gsE2T259giJKU1PvxdAzPh+QGZNKvAd4GLgBewPrpoBmckFkXmBSyKzK2Ygm5cZ4Q0qNjibv+43yR4gu2+XYLpsiOBRcK7M8PfUZnrTi+dDvXFTNgC/H5sovgTLIlQ8b7Qp8eGa6lwHY1lG+tELoq+sQHmOb8ESTpZbEJ1PuZNvi420J+d4atW92OL9/WxBcHN2IL4/Oj9TlVXhv9c6tuU/wtDnZ6GTdpOBf6Q+V0tHpYl7UFM1/0eW7RMF72vHbuKNiUaq6get3bFFnUPYRshM/ehLQ/FZPnN0I5vAFdkaO0bXb/FFi3nJjje8e3GwM9hUf0cmuDsiYXHmoDpuSdIxgecY5tXR2Hj/IvAX4Hrw3Vd9P7x3P8l925d4OiTlToR0yXDMr8bDryQqwtq9Lqn/gPeGGBmMuMINiZODH8/C/T+Gf6f1EldlNZRN4l12EgDsF29V4GXgnC3dd6S3xaD06nAH9Irwb0bmCm6nwm4O0NzUuaamOAMxAJcExqxTJHU5tkOeJ7c6kVu7PHRs8c99DO0JmAT35GEySqZPNvYkU7agXMTAQ//47Fsf3Ed5jqGZ8LwBGardyuwUlovTcqM6rUy57inLkJ5M0b3MybtNTO2g3EJrYP7bBHOD7EB78fYbtfS4f/ngB9m+Mrxmns2Pvk7BNup7kR+HorrAlsQpPVaTCIPAXaJnyV4BY2jsCx6lXId6nAPbDJ/P6asp01oFd84LXZU3rjOMAW/KjZJWaKQu5p6WQfTY+9gg+yqHdZvJR0c/S3BXyvQex+bgH4jrf+Sttu06qqQsVOAH+Xoe+XV+V2DsInJAcC12GSsso1K6HwNWAHzLl+O3sX32sAzCe7ThM2aGppevK9geuO8Mnwqxi7ghvA3njRkx62E5qLYgufv2CR7neS9py2fwMbvYsL8VeA2Z7vdlTxzjW9k9HwG53mSRWEGxzW2xThU6CjgWWBQRXmP5f7P3Sfv+qRTqNGJwIbYomrh6NmBoW3nKfsOKvS6p/4D3oOZNkjHkbOADaP77wNnNKmDuqtfHePCEcRwrCGuxHZ61gDuBJZ1HJEUdmCemHhfBT6J7j8Jz1pAHYbrqvqZWGDskzR4g5aAJ882+HKrfyAi02HG98cCr2MKqAXCMc+vaT8uim1Jz8BWreOAu4N9Z84m+B9iObg10N48lJvCKcE05dYK/gFmAYpjjJkzdFCHDQ+2y3oLZgLxiJjj33MluHVlenOOvy+WkabAWwWLBhKD0OugQvi/J85hkJV3gW0Cja9gR1RDRGSI2nHR4cB6qvpiRGe8iNyJDfRx4HWAicGWsYg9uT02GKbQTaef0SJyEOaUsB6WrSs1bZksIgcGfr4tZns+bYbWq+F4ez3gmHAM3SbXYLZygd4O2CS10Bc7YRMWr3OHp872wgaDq1V1QpCxUTU8vYntglwHLIstMhfwHOF66ETF1uqLqMzhodwTQn2tie2mLdKLKqur6n3hZjV6679JnFSAMWLpvhcADhRL45uarnwmIgup6guhvAWJ+oy0Jk8o+o7Saw4xVEROwhziFsbk4AHspGMnVX0nZVTMblDT55FO3ADYGZgHq6ei3MnAQcnPnsQmzTk96MKLvlHC3+mwuKebi4hqe3SL0rFLVTcKf90OV0E2FgvXP7BxYB8R2V1Vtw5onrYsbOaniMhQzCxtXgcLM2B1HYNrfANuEpH1NTHLSOBl2nVzCt6xDXw6aiKm33JjB1i84PewNp8+/E+4b3HgaqgL6qBSJ6rqjSLyMVavm2AnBSsD39bETDWAR6976h9ggohsCwwUM6n7JbaxEcMqGvJBBH5vCvLRPejmjLrhCmUMdlS9LckKCgsoDjVHJMCvsAabxlHeb7HOPiJcY4GDMngzYDmoi6PMhYGNMnilx/aY8nwv/P0cm4AU9+9laI3KXOnu5/xYZxmKHQGdCCyUoTUOO3ZfGdvdWAFYwVE/bXWIKebbsSx0rwL3kjFHwVbIr2Ar1TL+t8F2Hf4H242aBGydoTVz+LbCFOAESnbaHd+UK3OrBGe9wPfb2CThRWDtDK3lsWPEd8PfvwFLJzj7ZGTsVxla/4VN2t8PPH0OTAjvJlR8z1OZZ7NiJx+PhesUYNYM3u+wBcFmmCJ8HfjvDut1AHbUPhK4IvwvCc7XQn2sGe7nA3Ys6W+bEnYisIn5+hm8q4GnsInpXMm7Yhdp11Afa2GD0lvA7jV1NgY4OVdnzrr4W6jb3K7JAeGv5wi3lk5079EXEzEb6tUy9P4Q/b9CkNkXsb4ylsT8qKFcLA/MEu5nz/SR72Anfndh/e5Fkl1IRzm/DHwPdOKvEF2rY/rl2Axem6la9O56bCIyCovzegu9iYmuy+C78Jz8145dWAaymaP7WYBNMrROwnTPGVhIr/jdsw3b8rRQzh6B5uOYDXpa5hP0mn5NwPrlLxKc3Pj2jQytH2F6s21MxfTNPkHu78V0RfFsn4RObmwbVlL/tToK28R7PtRr9jS6QXu7dYGDVk4n7pHBWxNbEF1HYj6Z4NXqdU/9R/VaZ7p5CzYfGxau3wK3ZGgtn7kWwjE37E/HuAW1Jl+2BCc1iZyGpDXqwfHYjsBiWEe7jxA4XTOG0yKyArZzBHac9HgG5zJsYNxRzWB+hkBv2QSvbVeICu/9voKI7KWqpziejVHVFUpobK+qfylzuNDWnamBwDGq+msxT/kBWuL9LyLPA4ur6ie59xHeXJjdNJjn8hsZnCuxXZTzw6MdgGVUddMIp4lTg6dMV85xsQDoiwa8ZzWJFBBwlqdXxu4pkbFxmD3k7WoOlOsA26vqLuHdf2m7E8H8wPXagcNSpvxBmLLxrNanOojFNl1YVc8TcyYdoqqTEpy2ExWJHJmmAk+eExVEZEtNoslIu/d3rdOjhC3AbvAe6A3RBpFCxOKaEstEmZ4oQNudkb5dgnd3gjcI60dg/SjbholczIGZBEzK4TYFiRxwg4POeA3OPWKOXJthi4K9VHWSiKxVRU9VRyf0s/iqOlqcqcUTepVjl4iMzYxRbXFSRWQ4cLmqvk8CQQbmUqczZ/LbYZh9cluUnqC7CpgCvKmqU6L3A4ELNHE6LSlnEmYy9kTaX8ThKJ+hVzm2JTxWOdrtVFLm+bnnNWX9RFXPTJ4draq/aUrLUVZ8KjEI2zkuTjBVO4i5XdYOufp30JoNWxQVuuVuzA/ofxO8B7GJb2GzvCS24JoZ+KlWnBz0a4g0qfFWF5G7MYeYs+ndvdpZk7Av4RhlRWxCvGq43tGQpSXC83gsFhPv0iDMDb7vDo085suehed1dZGLKJBTciOw1d7VtB6V/m847jrDK6QSwq05vvMa4Ceq+lYFjqsuSpR5yzMRGY1lrjojaqMnVXXJ8L/bKz/gxxEk7tLEIzbg1HoIS96jdXI6WY5kbBywnNqR4ji1yCKbYI5KR2KLMTDZ/g22C3BNoOFKKBOV6fKqrgJpEFFA8qZM/1bVFpOUIIsrYo5ui4iZaoxU1dUTvNKQhNH97NhO2eqBz3uw3e5/Jr+7DdhCw9G5WJi9S1V1gwhnHHbEPobouF5VxyS0PHwdA9yRU8RN2rHhItYb2WVmWgeZ0ZiH9rtNJxXhWwoYjJ1GjVHVdUVkXVW9U0qyfGqSfc4rFx5I+uUAbEf4D6q6aHg/Hjt2/UBENsJ2IbfB7IO3SORiAeB1Vf0o3E+P1fGLDfjJbaAUoOlCK/ymbhLWttCSTKjOOj0sImepRckp3eTx6tcSfRjj9UxkROReYF2t30i5Gzup6zQrYOOwqiKyJ9ZH3qTXJETrFradgojcCFykqheF+z9hmxbuzIWdfGcNvXtVdQ1pNVeCismy1ITtLNF9RcKxM4o+5uTvKiyk24RwvzhmWrg/ZlmwbNlv+80mWEpSVCZoO2BK6xfA3pi90WYZctNjxygzh+s1bGc4Li8W5J6VDuZ4FIPLRlQqwr6IhSWZEZgjDLCFjdlQYO4MrdK6ELM93hZYQESui342E722rjEUK9L9omcKLKgh5l+DFdnjocyRtCZsSG0BZwGeEZFHaJ14bxzqYgacdQF8KCJrqOq9AGIhWT5McGZQ1YdFWtKKT4n+3wfzhs/lO1dsF5ZA/2hsp/ii8GgvEVlNo7iNAX6nqiPFdqe+g4V2OR2IMzI9hsnov8J3zgK8ISJvYuH0ignUO0FB3A1cJCJvEepXVa8Jux37YrZgYGYAW2pruLUiocym2BHVX8L9NpiMp3A98BHWLzoaQPAl+Sjgj1gCmZHYZGZHeu1QY/gRNtl4DEBVXxOzPwRARL6GyUkRFD2WnxkSWpdidVroiO2w6B/fTfDm0Mh2VFX/JWafHcMUVT297ONE5PuYL8PcIvKH6MHc7/YAACAASURBVNVQWmURzLnuajH7uU9pHTiatOOM4e9M1MNZhIUiVth4sdCI6WnJudjJy5bhfgfMSWvTpjs3qtpiQywi82KmJmDHsXeStzNW2u2LK+WiIYyhd7drCmaCFE8oVFU/CP9vikVNGYPZxf4soTWS3nTNYGPJSHpPm4DSReD7qjpUfX4PMS3P2PWoiJyIxTcG89ofE9Fw6WEN9pc1PHr1a1zvObw4idNELEHQdbSONelkbSJwl4jcROtYEy8AqyZXs9LeP+tgL2wx1ha7VxpkAW0AmwHXicjnWNi7d5pMgAMUfWVRTDaLucN/0T7PqgVVXSP8re2DYrbHF2IRShCRf2An62lYvonAnJijOFgK6cnYOHEWsIM4T+Sw6BkTovdPhcXaxGSe0Ab96Ri3mvamqDxMLH5hS+BwVf272PFo2VHGmdju6WQs5Mv9wImaN+guFeQERmDhduYVkYuwXaWdM3jxcdJgbIJQOOrtjtkrfx1TBEUrvIdNDlKoqov7sR3wOWhVOpOxrf8WUIeDhFg61FyHTdOgDsYcqGKByw1YVTtGTevip8D5YYdKsIl+etRU6dSgqj8JE46DNTj8VMCGwLLFzoKInI/ZtqWT4Dgj01maz8h0GxYi6JZAa31MoZ2H2c8VE+YfYhPSvbGJ2szYqrXgfxw2aSwFDcevInKCtsa1vl5Eco6i8/R150KTWJAO/OelN2nDeSLyOGYnFsMnqqoiUrTljMn72GkpHhBzTktzqep/R/dHiMhWGdY+F5H5ip00sePatD9cHyZAbScq4d/XsEF1Y6LJRuBr74TWidjpVNsRbpN2VDvFGYjZQNYllKlbKBawkKrGGwuHicjYwNP+qnqslMTb1STObgZewSaBqOqh4e/wmt8UUCcXhOe1cbkdOlHCovQDbIF7WvQuzTo1TbxbqaqfiJ1EplC7CJT2mMl3YTtgqZmVZ+zaE7MjvSzc34ZNhAuI9XB8Etaih6Vkp74AVb1KVX8S/q+czHvGogheCNcAqhd5k8I1XbhyUDW5GqqqOzTgC6odvZpkAa2EZOd8V+AazMTzMBGZTRvExi3mS2HnfHkN5h5iJ8V/7SOfdSfqZ2I2wKMC/trYpDZePILNe+LF4/Ui8oiqriQixYR2JHYidzatTucpTBCR07GNELA2f0rM9KrNbDGG/pwEl3qri2nuQ7Ed4AHh0RTgVG0N7j8fZsfyHGbc/goWSiQHLo9FVb1VLFB+YSO6l2ZsRFW1ZRUsZp98S3h3iljK24OSQbkMim3/troIE4+/Y4NoKUiz48b4uH8wtuvyGgl4Byw1O7ev0mp7+1Z4dwoWPWJPVT3VQWss5kk7NNznolb8HOtoi4nIq5hS3D6h83log9rc4TiiVuDzEE49WW8VkeNVdfeAXzyPF1C1NmMicoMGL/AMzCiRfb3YcW1uwuDxqq7jIz0K63lF+5GY19v78lCvs4gl4fgxpjCBHpu680VkM1W9sobFW0Vka6Cw0d2c0CcT+C1wr5hZjWCTqJ8kOKUnKoGvcSLyJLCB1tv9vYzFIK2yPXO1o0aRaWrK9Hq/V528NIm+QzJZHoB5s6emR4OwheEwWgfRNGlLpVwEWnthTpmFbvuLiJyZ0zNSndThZMzZ7D3gaVV9NPxmOdrr7G0R2VhVrws4P8QcitrAsQg8HfOsLybdO4RnuyakaseuoFNKbUYb6OFGEUHEkThEHLbiuU2ukt948KomV/+U1pOblH5uYVfsPv+VZPdZVV8P/zfaICiBeOe8+PuDcKU7515wRcXygpSYhtB6KjFjMQEGUNW7ShaxQ5LNiPmw0J0Fn1BzIhfBzliUol+F+/uwHeRPsRP2UujPSfANIjILcBymKJVeJbc3tgO7kgZHCLFQOqeLyN7FLoiqfi9MmJfAVhn7AkuKyP9iGYTiHcpSQY6ZEjtKuRjz5G1zHqiAlrAvYbDaFAtUXQfXV9RFwdemWEDur0BPbux44uE+bkwnEyJyCebNSfLcm4Fry8D7XYGvU0VkP1W9IvrNqU6FOTvWydYAVMxW7PB4FyRMFL4r9U4Nd4jIZphNUNkE5CjM7GNU4P3b5AeTLbGjqeNV9R0xh7v9EpzXReQAWlejb4aVc48JgqMtU8iZjRSwNybXEwOd+bFdnxSqjuRdoI6jsAh2wI6AK02ZVPV4sTBr72FHd4eo6m3Fewl2sMAwydi5Jf13N0wJFiYFA7DQdrsTfauq3ixmz1jYu/8qXeh6drFCH59XRKbTalvG2iNc/O0Idmz8R2zXLz46jiectQvFAFUnLwuJyMqYfaLnCDmeLE8BLtH2k5hrsQndGMrDSdXKRYBdgG8VelrM9voBzAyhB8Tsi9fGJsE3YrFG78WSx6Cq54rILVh/jHeS38AiEsWwB2bC9Eesvl4mf2rjWQSupK2+JneK2aKnUDt2Sc2xcbFJgi3m2zZKik0S78ZHoHkh5oE/lt5dOiXUawSxnuyxFafVLG1OzH4zHWtSR1QPXtXk6t+0ntx44KVwle4+d6DT26DhzrkXLgAeFpGrw/0mWLSkTsFzKuEN27kvthnxAlZfCwA/C+N6sbFQdyJX3H9IbzKZFCodhPvVMa6HicRbPayY10sHptABbtXEGSy8mwebOK+GHU3MrqqzRO+9zmBrYZOXH2ChOy7FApJ/lODFNkADseOXw1U1Plo6HlPKpZOwMClZRVXvz9VFhPc8FjXg6QyZGG8Bbfesb3uWvF8U+KuqfiN5PhLLKLMtdly/HbZTsleCNw5rr7fC/ZxY5INlIpyswkxX3mJOS3fTO5HZDnOE+G5uEhRDZkEzGdtNm4LttmcVkzgiSAS8yqNXMQ/2ngk8tho9HBv051PV5wOeqy0juuemC4/k/SAsQgpYcP+cDXupV7UXRGSoqr4nJQ4vqWLqBkhDZ04nTW/qT09K2AuwI/9SW8YGuqe2HQOeOzKNY6FY4LWdvEjD6DvhN9MFfMUiP3ySvO9xYO0rBB28kvY6qQ3GkiCkzmBPEDJcqTmffhXLuLZeBe0Rqjqi4n2d08/8mIPytNgCZ2bgtEIHBJzHMMe7OGbyFdruaFkrP1LjyCkih6nqoWKmcBlSbRsbpQ6TEc7TWFSgRvpEgq24RmY4YjGJL8Mm8ntgC7G3VfWA5Le1eGL2+mdg5hU9kytsk2Y3VT2ZLkNTnV5D6+fYwjN23N1GVU+r/mUpveXpHbeyUbEa0BqFjfWli+LA72FE0UywiA5tZqqJzns2M8/KzVtUoxTxAS9NJV8g1u6e92eItHuxjnUPlvRgcvSuVFFKaxSAX2JKejVsd+v+6HpCO/QgDbQHYivV3YDvZSZOlWFfAk4xCfsMO2Ism4S1RXnI8HOfOjyjJe+t3hI2TdqDtb8BHKjtO8SPq4XwGq9mszwtNvlbJcFr8UIOE/txyTOXwsy1fUG/bDAooJMJUaBfmvM9wkmPXn+ExZLOHb3OqBWnCJ62FGdIvPDcs8PeJ6/qQOMGVd2oSjGJM4KENDOtaMLj0rTXRXqEOx6bFC2N2WufgzkerhXhZHcPVXXzhFZXJudioRj3weJw7yYWPH5RzUQqqaHTdKHomex4o+9sSPvkY3dVvSnCORMza2txXM58R+3OWvjWnbBdIgi7XOkkR0I4NDEzt3Uw+9CnVXUxSiCnR6N3lZF8vCAi38HkL979H67RUXIDWqWhMTsB8YWqHAn8UoNJQAPagsVDXzx6NkZVV5DWcKiPaKtZQy1eGHs2x04c2iZXInKyqv5KSqKyaGs0lia4rvHZA+IMd1dDo6sbFpFeWQI7mak8UY9+NxAzj8iZNbo2Gpz8PYMtNtNFYJ0PWL+aQ+yArU42A44Ty1pyj6ruTasNSwrxu2GY4fTedR1RnMctAXd6zKxgK2yXqM3mT81pLzYQ/7qItBiIq//42HNs/6hYDONraBW+qwLPi4Vvm1laj7uGkjh3NODLm4HrZrHjxNgRIc2S5820VGrX2ckkN6xKF6a1ze+O3h8T+J1Aq41TyyQYx9FrmIyejR29zSe2c7y7qqYe5pVtGWAnLPFFDDunz8R/JOk5kq8E9WWncjmIeGVQLDPa8xoim0TPdwcW0Ch2poici01s07ZMHTmnqKqK2XP+SVXPEZHU+3pzencPhxe7h5nvKBxQZtDeCAPpN3h0z3mYAi9s/1/FdFt2ElwxEWsaQaE0OkSEUxt9J8CJWOKL4sRjIWywjB2e1wB2Dgupj+md3KZOm8dSsbMWJjsPYrt7xY7T8JJdrkfFzM3Owur431jfrYKsS7n4ohoVu89lEQrGq2ox+V2YmpjJTvmpPDYOk5h3VfWchPYuWPzldHe0ymGymBTOhDkfPZyUmYZnrLUVp3eseT3I9muE6AJN8NR8QfZXi92dMy0pjuiPz7xrjBuNtR6d7oWBIr1xw8M8o8wJsAwuxnRxYWfcwzKd2RcXesVjGnIxtkv/GXaaPlRETlHV4xK8SjOlgON1Hn03Xmw3gf6OEzwXZsu6JqZUXlKz8/2M1ugLPT/BTAVy6VfryvIet1yO2SzdHPBH53bPxBk7UHwxaGuP7aXmGCsM6Jtg3upxKLXJWAzUlnSETr52xTLhFDtmQzDbvD9HOILZQq9Ea5KIqxNaozDll1WY0ro7XeyeQ2982bguvDFQd8VsmObBJomrYLbisS3as1gmpMqkC+I4ehWRh7BB8TrNxC+O8ErbUnpD4q1J60R8JuBzbY/x6d1h76Y5wXXYgufasomfg4YrhmjYvVsx/b4wCRof162IPJXuTpaUPRrr38OxPvAW7ScXrt1DEVkV20keoqrZhY9H90iD+ORlEzFtHkapbNdprKouK+3Rdx7Eksnkou+07dwF3fBw8mz+3G+13RTFc1riOUGbE9thfV7Nln8YJUkdkt8NKNH7xalY8XcIcJOqrpngHYvpsIvDo62xNitO3WaRit3mhJZHfiqPjYMcr5JOHsR2+R/NjFsPAPtpq8Pk8aq6qjRPHBJH95kCvKiJrbhYfOZ7MN+BU7FF12EaHBCb4ImFvfwH7TbzcVziTTETwNpkOyKygrbHB99IVW8o0eVRkeVmbBXlHYfJbLHw3x14WVX3bUhHgHk1yYXQDRAzn1LNmFlF+mM7bBPxN1i88LY41tSYKYnI2ZhJUXwi8Zmq7prQOhqbK1xFSSr5UtAO0vp148KOzB7CJinLY3ZrU7O8MeHv+OjZIxm8DXCk48RSJM5eg3M0lhr6x+G6jSjtc8AZAKzexe9c1YGT4+vIPpT5hANnrdyV4AhmO1tHazS2UHk8evZkji9s52RsuF+MkJI7wrkJm8DUlVmbEhl4KPyN+RqX4AzEBpOycubHVscPJHW1PPnU1iNJ0gjXfMcQz/c62vI0LGrJFdgkLE13WaQOj6+XsZ2qBTFHrYn0hjyKr4lV7Rq9m5Dcn4MtCOr496T+9KaEfQgbkEtlEYfuwUy4pgceC/cLYRPIHP/jk79DsIUnRClbc1eG1gPAGtH96thCEWyh8CjmSPMTYCloTY8d8DYN1+nYjs7O2ETtBswONsVfBnOY/AV2xJ6jdQo2idkmerZpgns8dpLYxlN4vyu2wHkAm3xuXIJ3qrfO6O3jD2LhxgZhE+yU5mNlz7C+cSsWyei69Mr8zjV21cj8uIp3bfob27CI02k/TpI2OepLG2Mnp19rwtPUuqjRKQHnvPBdF2I7pqXpdbFd6yWj+20KOZhK/A/Adj+vCNfuOFOEe9q2j7ytiI2rL4ZrHLBCgjMBm7iOJIzxOfkj6Ddst3ooNv4/Uye3Jc9GZa47Pd/Un+YQf8B2DovMPKNF5G4NTgJTAVzHLap6i4isFnYMSm0s8YVcK4tB2xMmR52hvMQZqQF4XkQOot0uMsarjI0rzbPNPCYiK6nqIxW/GR12gRZW1dvFbCAHJjgq5gG9VJZIL3hjoH6kqh+JCGIpdp8RcwKMj+g+wDy476B1BdnisKeqJ4rIXVQfvb4sZhKh4RhnL3rDTBV0Pgu7KllQM7N5JfA+ugwvgjnwHUl6A5jXQuBrtLTazZ+LKbICTsZCFl6MKbetsYndY8C56veE/lBEFlbV55LvWZj2JCoXAA+IyBtUHLWrOT6eGN2/RGI+or07uX8WkZup2D1U1ZcTWUzjWXp0z6H44pNDRXhJej3fV8eOGYu4sVtgSVdSKI0Oof7oO3FEmjexRRLA29jEvgekPqxZTOsDYP3oXmk1bdkdW8xMEZHcCdqvgCVU9W0xp7OLaD0lK8AVAi5ALqrR2Rm8gSKysqoWSY9WolffvQAcgvXHnDd7Cq6xS6rtKweIyFdV9c3kN9lwWeoIVRlO2g7BohIVUYEOV9Vzw/sy/4C2fin5sGXvYrvU10Z4c2LyM4yS8c2jW9RMnKbFjuC3Af4kIrdpssMYYHPgChEpTuh2pFUui53/I7C+eTN2erq3WmSbRhDG5dPD1VeoHZsbwrnAz1T1HgCx5FHn0Roi7Qx6J8h3h3E/ZxPsMVP6TEQW0lbn0bZ4wdowAU0M/TYJ1t64hUOwY8kR2LH1wKrf9QGOCIp+X3qPUdKg9rU2ltEE0RVyDV8MWo9N8IVYpIYNiCI1ZPCuxY6Lbqc6uHQVX7Fd4e70HsuUwbeA7UTk79jxU07J7YbtJs2G1e/cmDdzmkLa02m9MVBfCZ3sGuA2EfkXtvqH3oFvDPmBseA7HmxeDFfxLnWA2wPbwZobs+m8ldaA9QWMlYpMfGGi/LmIzKxJlJAMjKh5X4A3gLkLpN5ufmNtPco/MxyTHRAWaQWduhiih2Axjo+gNY30gfTGhCzgHOy4LJsVTxqk/gyTv+2wTIuHi8h88aQmgtqFDw7do6q3iUULqIxPHqB0IqYhZrGI/BTb4Z0S7v+M6YUWqJvsBH30pIi8g01K3sV2zlYmJMnRBmG1qLGtb0JL6+3KP1HVtwPuRIlidSd0amN1R7hFyMsrReQGMpF8AuwKnBvGN8EmAbuIRes4ErOVHO1c6NbKj9TbVx4H/FVE9qXXHneF8LzN5lUcoSqx0GfLFc/Cb+7HJkrQLIHEYOykbmS43wzbwV1GRNZR1aKv145vIpJNNJRuZKnqp2I+Eoot1jahPUZzITtbY+PIS8D6aiG5YlhfVfcXkR9hY8SmtEY5coOYaUvbPEAdkQ4yUDs2N4TPiglw4OlesRwOMZ/FKQoAIvISSazeoF+PUouAUbXRsB8wSlpDR7bpCHE4+JZBf0aHOAHrYEOwjnMvdqSXiyf3RfJVaWMpDSIUiNl3Ho1tzffEoFXVy+LfiM8m2Bupoc3GL/MNLr7icmvozZ97rpGdn5hTxcrYMVJh85jLbf8M8A1sslo2oV4Qm9SthqUongRsr6ovVvC4FjbZv0nbjeqrvq1QSMVWXyEXQu8i8jca8rw7aZ6XeazxboaIXIudDtxG60S5LktXWZlt9qW5Z05atXbzYjaFJ2HHeWC7Kfuo6iqxjIo52RTQE0NUW+22l8SUYWH/+yRmUpKmRn9AVSuTyjT4xtOxifS6qvpNMQfLW7XdW30ObOHzXewY8xZsAlvrlZwpszZKSeY3ZSEVn8VMowrb6lkxe95FE7wXsKP9ezB9MiF61yj6jliCjz1p36WLvei9Yc3Ox+oxDhN1QtJH7tB2G/meZ2LpyC+NXm8d36d9KewyHkD7bmosizNgk9H51BHFIwzO5AbjLsurx77y+5h95pKYHpsAHK0ZhyKpCFUZ4dwfnn0S7qfD/EvaFtZSkkwpev8gZhb4WbifBpPJNTBZWzw894xvccSewdhGy2MaRXYJdbEVtnC4C3PEvlWjCE/SvpP9FWwR+DFAMiY9qeafcjYW5u7mPujX2RP+twBmU9VDOqBVOzY3pHcytmC4BKubrbA5y18C3cdE5Ejg2KTv7quqBye02sb/kjIHUe88WhvNpAz60xziAayi3qzF7ANIScrPAjKTirooBoNUNU3Xmpa5CRZL8xKxI/Si8x+gmRi0jh0N8EdquEFENlTVNDpDXF4bX9jgm0V38HaEJqkoxXbU42cfq6UYLd5PU0J7g7rC1JksQ0QuLPjS3vS0LXyFQewo2ge+IjNY5dFaGDifxALou9LLOne7rqI9qkGu/FWw3aFvYt66A4H3tT3EmDeAuQfOweJWVp00bIdNDk/D6uRBYHuxHeRfFEiq2pLcRUIM0fiZqj5Je+rsHDwu5pl8PRUe2qHOJmhvKtGZsIXvQxHat1R1ebGY5ajqvySTHldtt3a7HDPSIO2wOKKUSEVKW7HINPF3Hk17EpgRmZ8uju0WrYlF6VkUsz39EQ2i7wS4BpON68nsxAc4D3hIWoP3n5vBW7oYRKGn/ovF82DMyWyOMMAWC9ShtCaWSZPZ1CVJuAhb1P2AyAEtw39tFI90Z0rMGTPdmao8EWo4dn2oZlo3RWxX/y3MVj3Gv4nWSB1V4ElB/jzWltcGPn8IjJdwWqrhVFQcyZSAWbENsaJ+ZsQmfp+JRY4qwDO+7Rnfi52aXJqg7Yi19e65SVWAJjvZN4QNnA+Bn4Zx4aOa32Qhs4A+WcyxsfEkWM28rja1eAMoJvXpZuBymAysC3w/niOFvrshcHDym9pTXzGTuw3oXVh/N+i69MS9NJpJHXzhk2CxwM1gA/DcYfejB9TjzdcMmth7Qb2N5fcItrMVsD1mY/QBtmtyHzYpziZhgJ7VUmkoL+w4eVYsP/x1hEgNGVJ7AQeJyCf0Tpw1nRSFQS32qH0YcxDqBJZIvmUgdtQWw2ixY/DpxTJB/QwbLFugWKGKyFdIQrtF9PdJ7iFkoVI73m3C13lYhz4JO7IZTj69bxbU7A0LcxFvetna6Baqen6YdC0SHj1bsoP9R2yHayRmJrBj9JsYfowFML8KU1b3hGeNQR1282GhUpaCtS07YQSvYBP6TmB6rM9W2ZGC1X3slf9+5tmnQV4Kk5s5yZtYLIhN9lcJuA9gk8aJNEs7vAm2o1jlrX4FZqZVyHhsiNzynap6nthR77fCo+wCHDtS/jT8/RybPBUpzyt9AzLwkdpRaCmoz7YezIZ1Vg2RKMTMkgpZ2x0zhfk6raG23sP6Q1GW28whwOxq4fL20l6793SAXkhVtxI7TUNVPxBpNQgP4Ak9Nxiz545DncXt2GTs6iQMXBV4UpC/EK4CCtvddFPnt9juf0syJXpPicBC4o0NslEs2o4MGx23S2v0oIPCxNib+fJ9oGUzQ1W3qcAvcOKTzOWJkiCl8xRV/Y2YXfC7YeL+PrYoaAzRHAlsLFqRDudq0iC1uAfUZ3s7UMwH5+PAw/SYA2kKHlON67HFRNbELYKq9O+V8IWbQ0hvtqPBWOOOwz5+acwIvivHQ5lyc5nU2lYhUhL+JdpJHIcdoWTjSGprGJZh9B4nropNMh9R1Q2TMmtDeU1tEJGXVXXe8H98DPQNbMUPiZCKyIHYgmB6zImlwPkESyTR4wAoFtJqF2yCIphCPVsTARQL3XYCNsC9he1QP62qS0Q4F2OyU0yiNwLG07tzNbABX0Xw9Z6jGely4PkUwq7Qfli8w2woNTGb3fMx+zLBdnV20vYkHkVorTh4fKPA6h3wX5v9T8zkI7f7mWamysUQfVFVcyl+uwKSDwvWU3/hfjta7Z03Bw5W1ZHJ7x4E/kRvjOytgT1V9Vs0gDBh3UJLMpAFnE0C/W9gE45LNMpAlsGvW1gTFupPYI6Ct2d2oZp8w7ahvFspCVMk0elMzbMdsT5c1PcWWASbOIbonp0O5iX8P6hmrnMLZtP4Gna0vVCEcz92vH5fOClYCGuHlRNapaHnOuBri4zc9TwLk/B5VPXlcD8MRxi4mjILE71i4jGA3t3quklnSqs2mVJ4PhdmDgU2Tr6WvB+AmfikqbjT8uLkFgOxRfXl2hpT3J3mWEQOweSvmEhuAozU9pCc3Ur8MCq6nYKZ+52gqs92QGs8VmeFDf6M2NyiI5vgsNDakXaTp1j3H4BtgBRmf8OxqCfHJrQ8ZpTjPbyG3e4L6PVv+hc2Xtb2gf60Cb4KOFSDXV8QoBGaZGTqYnljsN22V8P9Wvx/7J15/G1T/f+f73svrumiUOapovhSyqwMpRIVMnQRkUqJi6JBhXyLVN/IVGROlJAyXGSeh3vNQoY0CamkzLx/f7zW/px19ll7n7X355zP5/p9v+/H4zw+n7PPOmuvc87ea73X+/16v15wZPlGDK/1sBh4J3X6PEqBpZxg9145vxXoyDmvCTxe3k0Fp3M1hNl7a3jPt9x9i3LUM3HCHrEDy+AATrznD+6+ZPT5685Z5vQ8OHYsR2Nhk7EhWpDfZmYbILzvJ6I2VwEfKBwGU/HJ+ShKP8M7+LHKcZnZmu5+Q1jU1kVRicvQb3uIl7CTGePekaCrHg79FtEr9UyCFvhUrZsTtmuBDNfrtsXEZ4oen152zsN38R5UGPVXBOP5uPfify9BTlaM0zrD3fvCTxLj78tNbCr0LGwyUtj7i/fiMGOYQ5JDtMG4shhUwtxzBZ3q688ikYfNSu1WQA6PAZd6QrghNUlbwAKaUt2V5t1Y2bNQqrGWpSS0nRtFmbYBXgvs573crFkbaxO/+LrI+XgBZa6ucvdL68aeMjM7GEU8H6SbOz3G1HZx45qi7SOYz1J/b6ETJb3M3e8pvT43KhBb0t0/ZS1V9qL+cjhoN0Jp3bcgZ38ddL9dUeqrkmc3arN4OE/BFnM1wkH/qdRXSgW0/D1m4SsHYVahoFaY9zLTfAcFuWIxpTu8l6M/Z9OWU6MSB7JeAh5JfKfZMscmfP0q3sGxz4loN5eP2iQLE9v4M2a2rJdqoywRxMvsKwuD36C/6xC0rSsy66WsiwlzXeD1L3H3chahaFcL1TDBxC5194szxzdS4Gtme3qGRPZ4YoKX96iwxd3vMrO2adAc2xX4pZl9EEV3DkZUYV1m/VkM7sm4Cb+CIr8LAfehi+ZI4FOexlFWUnlRrwDVMxGZSKNX8kd+QwAAIABJREFUQ/g2gGlmto67f7lm8jK0mKrT5qD58ywwJZjZ9uj7Pby0o9sUOIhO4U/VzvtFd3/SzCaYCOsvN4HxY1uYyFFAabHXufuzFuHHwmeuKjY6OoxzGsIX7hHGtyEV+FPrVggs+vpDcOT2RHRNM8NnWxVhLN3dTy11lcNuMVu883f3+03FkGX7GIp2fA45BEugyuqyLei9GMsUpjzH+qr/ea8E9+kkYBAu2MdC4f8y/jJ+fw4FUS6Dyq4o0vdV9Btciu55rJsN5HE6Czdm9hrvFJoV7S40sy8hzGFRKFLgFddCVIqnIz7hZPYoWMETm2PPIfjPv9C1nYINTaOzsd6g2FiXG7nop84Nr2+MruN9KVGbZdpWiE2jR/HToqyRmf2LznfxAipyLbcvosP3JI4VdgJK/ReFWFX43HXKG6vUsch5fopSNXvUJpfFY1fgFAuFcYTIVKnNiYhCcKvwfPtwbKMwxo3RGrWYdVOITaGXEjKLCstUoPYtYFF33zhsNNbykpJcaFvllOaorY2Yu+8TNsWFs3+s94opJTdtdENFIINJyUXH+Xq0sXO6IRuFPZbjAAf7C/oOCozvHOhaiy1LYTLTfkE3NKs41iY7mcLg9/zWDWyyZ8CkPAN/bnlQjRuAc0xZgL7wF+9mt9mbUn1J1WDH5YEWhh+j3dP6CMt0+pDPuRZKm98ELFTR5jZUYBST398Z/X9rxnnuRZPzASj9P1+f9ucgyrIDUCHMucAFpTY9ghoVx+4gEh5BDlJBqr9e3SN6z8MIs51FCB7OaYRJANGCXVlq8wByXJLE9lG73yC88xHhGjkc4anjNl9Dzub+4XELwkfPDZwWtTsEwQkuQNCJXxPI6EmQ2fcZ1+5IhehutAu+M/pebwCWTrxnaeSElI8vGz7nM2gyvQZYqtTmhMT9ccIorv0ZREIkyHlq+h38Gjlql6NF/SJqSP5L712eSFQgXC8HhO/076G/J5AiYfK+DH83R5P4fATSdALRPeHejH6X2VLff59xFtf+w9H/xfOHatrFj4eie+/9CE5xK3LiVxzFb7ghchhvQ47IO2ra3lx8b6iYF0riIuHYWejevAhhN9ejJHzSYHy/BBbu0+bgzL5mlp5PRAGI+Ngt8e8e/k8R6VcKV5SOLYQc9WPD/XdCfM8RNu/h/yWQ4/O2Pp9jCoImQK+4zm1V13n4fxXkOD8S/haPLYAFSu+7F0GTHkTz8cj8VGp3IcIp3x59ppRYxi6hj3+g+/1ZEuIDaLO0fNtrOuqnr7BROP40ikC+gDaBTwP/Soz9D0jkpYCU7Vxq01eMpXRd/zn0dyKqWzibSEyFDOGHjO9gBRTAeDAeE+IL77l3G/S7Kgry7NHves3oay/kuC6CAoWvQQWM5d+oEEh6LlyX/0r0dQcwd/R87vI1i+bTvn5DxVj/mNNuPCPBOyGi9mnh+VUMhhy6yxLRz7nQTv94U5Xhh0pv6cdicHi/c7r7CiFStDZyYL4UUva3I4fuxFL7zcO/B5jwQPOhaFdsR9C7O0wdgwoOYM/jpMTzhQwKe8ndPaRWj3QVl5QlXP+IlLSSu/fIPoxunL1QJG8+FNWLx3eQiVewiADt6u5FEUlcqb851cVGy9alqxPXxbTQVwozOcUT9Gzu/vsiPdP7knexW5jopWL7DNpMFOnwq1H0GhhJc1V+l96Lo9oPuMaERzaUgvpU1fsrLDsCZN2FLI6gGnH6cy8UGVrNQ5rPVGR2jJnt5e7fL3VZzFWbIDzeU9apR7oJ3QdZDCpWQ7jv7suY9ZcbzblHXFmf6cB0E83PVMQtfqC7Hxm3DenyA+jNlMTwqt+gheMaFI3awSJOVO+GTtRxZMf2LeR41DF95Nr8wL2mYrKkcIvXZ2eaRoxfCKlpD+9dLj6vSdJ6bWAh64aVTSHNR1/JQRsyhN8G/m1mByFM/0zgbWZ2grt/O/WFeH1k6smQOSuyDVNRoVzx3tvN7C7gfV5R5GdmS4brNBfWtKC7/zx8z7j7S2aW+u37ZhJCVvW7KGi0jJm9FTFglOEQOfjbumzoiHkek1I//mLQNdBPjKWwc8KjsCsSbQZRmLg8qm+Zn+6i4qfRfJVtVs9vP5LRamEvIKaP/eisP44CO3oS/UZhLv0wiuz3DJPu++xlerNluX5DyrLeM55iGc+hivzyYjdoa5S6oQ+LgbuflNNJuMjOC87a2xFG99OoIv9EAJOK0IIe8TS6UjkfQKppM1pM5AfTS430pUS7vmbC4xYFaXd7EFpI2NNhUt0eeFdIXZRT9/sCFwQnrFJcxLvFJ+qqu2ei3fmkMNZiMYjtoTCOlBP8BHlqTYXVKQTWVaGmXjsLWLX0WbvSXe7+vElJ8FIU+bjPu9PMTeh7cPFWrkpnMtrTq8UYqvooikPnpkPJ9CYUwbiw1LbfYvUxYKN4DC5S+u0R1rI8L+RQEBUMKl+lw6DytcS5awn3w4auVrnQzDZ098usgrbMOzRXcyDHfSpyun9A94Ja2PFoYzAjNaZgTYQkcjbWIMfyeDM73QMTwyhs/34NTHCtjyKYQyxGdFUY98HAwZZXZ7A/9Sp7s6NrYBLdsLJ/oShu2ebyEk41sj0RPG5eBLFZyt3/ZqoZuRk5ef2svMDvjAIZ30ffwXWUfmMX08ASZja7J2AmaJOzqosK6yzvpolK2X+CU1hsHNYkPa/lOKUHIMjBFWGstyU28yDmh37426xNm/UX1wFtJGLazKeJNhehfZN76WSrYOoxs83MbGFvoDBZc54CmrSWu4+G2QM0jxRBCOg4hEVQoo3wBogj+w2ptcPMJnnEswyaSxEMdX96/ZAT6Q/VKETJLiThN1iv8NHIcMiEdI0HRdrP3X3rqkhWIoI1KsuNfkb2JVRccydyWi8gLYtZaabCtLXRpLwiSqFfiy6g66Km3ya9sN2NLpANqZ/IeyY8z+Qm7jP+xdCO+Dk63JpbmUDqm3soLoxsG2Bb4BPu/lczWxLtFmP7JtodTw6fqXzOuou5K2pgZrujBfAxOrtHp1u6Eeolkf/d8NqoUwh8s6kKNzX2kckmRFNWBOYrOU9TKOE6TfKoP0SpMUORlk8XG6aw6E1EBYQ5tDWg7+rxcK63mDIhtWIMFXYV8M7gcF6MnIBtKPHlWn2B5mypidRFOdeDffZ6CqKFow1icT8dFf7OnRh/nbNTWD+M5XqokDJFA+fA2WZ2ChImuAAVWN1Vc76nPCFa0NVpJuVXuC7udvcVwvvqrvNt0Hd2s5ndguadi9tEXjLvp7rsDGa2grvfC5xp3VRRxTlmRv/X4nO9Q3N2kneoFxcA/lnx+eo4aF8Im4R/mNkDxXlcFGkp5zRlXecMYypnnFL2MHCtKXMV8wn/D92OdY5jszfaIC5nZtciCEhqQ5DjlL7o3RkZSM/hffG3DTZtMffziLgOsGE0ByT5i+NOLLMoMbRdnxJTj5ntGObOKjrU1swcwAMhELc0FdLQ/cybZ3Nz7QE6jEtluwlYtbS2FRRvPZzJLrrEK+n8Bim6xAJiNjsJvyEzM1Br40GRtoi7P2oDVjLJOG+uqECRLsVrCnX6nOtsws2A2AqSk6QFloCK18qUTUt5d6HZEsBH3f07pfdtjrBbT4Xn8yNVn182GP85wLnlqLcp9foRd2/Mf2glCrA+bWsrgE2VvWt4Hzon62YeGLGws+9Rm+rTVzLK5e4HVl3LUZtiAf4w2u1+iO4iqKcRU8PIBilEPTf1QIFlSvWeXzg2UbtLEZatVh7SBkjDZ6EyPWxG5nQJQnSpI1lvgeZUhFP9StxHXf+J40kKIjN7FEGpqhhbuuA0Jgnm6yqcnaLNvago6Pc0lBs1s4+4+1lm9goRrVTchN6N3SFoTjqbCnqxJhYcgN29BtJRaj8BZReOQZulE1Fxa3batLSRnR1lYf5T+py1VHBmdpxLiS2VdXJ33zDlHJcazQx9fR1RY91rishfiCj4XkLMK79JjH9ulPLt4lgP18NUtKj/BG36i9T+T9z9zYnvoKt7dK9MCuOqGX6XSEW/uWfkXqm7p6K+lkFZreXDmO4D3lqz2cM6apvT47XMzI5HmaovoYDMHmhzu2vp/YejQtpfUhKxMbMprkr+OH0ff8ba6y+sg4e5+0eqvqeorwOj912CihJj8aDtPFLYi9r2ZeoJ32uRta2kQ80xEwPD1ZSyQl4qNu7Tx+c8QK7MbEWPlCBHY8E3WBHhxLsCS9G6cCKde+AlNIcel/KnrKLYfBBjzbVxo0gbawtRjh5RAQ8pN9N2dn9UZV+IJbwMHBEvotZcga5uTA+4+xtyXwvO+VZoMl4UOMfdv1Bqk+KnzKGV+ZS7Hxv+v88rKMJSr1VM/E+hgrXPu9Lch6KoZV+qk36TeVggN/JS6iXRbjLiVAUVZT0XvXYBAvVfgSIO1/Trb1BmGemu8gYpXJ83lTdNlimvbDU0fC3GfyuCCX0fRf/vtl4u0DvQ4vpKeD4RFTAVXMYvx+ONu0eFWV3RYKuhIMpZ/Et9Fc5OJeH+aDbpFtENNhhTpdPXpJ+ov6vQdXET3ddFT+TRJNayE2IiuAhtXNYFPlaeSxqcfwQL6N38rNlUcDV9v4IYSoqob7z5GfnOzOxuYCV3dzP7FHJc343S2id7idu3zzmroGDFSXOzMZjZ5xOH50YZyNe6+zwV75snnOvf0bHiPirSvzEvetc1HdqXqULfBRzlaarQWgfFBAXZj27u94PieTa066qB6XTlO5vZee6+qXXL04/89RLlaGKMhrIePRR74fUJwDzejc2uWieTPM6WpkFMHetLh5pjVeNo2EejzVGDfusCS39CfOPlYISHNl3QR6vI6Hp38O9NwBfojYoPTENhPOAQZYepfNFnk3A3NXd/wMwmuopATgyLeYE7yy3UaapAV2e/MbNvIhL+AqNlSNnrsvB8XlQhui2avM8GlnH3xSv6TKmd5fzO8YWbVEwLE0oKh3wYqpj9aejnowg/NxMVI6yPCr2+YM2UfqqsDpqAqZjxWwhz90g41xJhMt7P3V909w8EJ3l9lKL9rpn9gVDIVN6Nhg3IvvRy0La5GXPSXbcER/3n6P7YCqWstwhtiwKOs8mQVyaz8CTTpqH75pzgAC+LIgNlSxZohvGnrqM6q6MgqqMe6zHPS6EtSx4ePmWNxhPG1MSJWsKDMEJ07PXeDXtKYaFTfc0A/omweF/yDkzhRlOxXisL81kKC5iightZD6xGGjr0ezZK6W+J8OFnoOswFVl+oZhXUeHY6WHu/22YI3rMKiA8bZyZms8wUosQ5vdpaBNyBok6BVMG5FS0acfM/gbs4O53t7iPcqlCYwcllvEecVDc/RnkBO9Xd0Kvwd+6+6bhb1b63tLiOjNLbX6KPufLCKo1xcwO9+6saW1RYsluMbMf05lvtiP4AdacDjXH+kpDN7TG81GVBWd3TsQ0VBbvmIigm7nnqys2L+xMBAv8MdW1EqOy8YBD/BKlRs5GKeAxCX1bH1GB4BB3FeqE4wshjNzAFbhMBUY/RrimQgp1FXSD7eLu/zazZ1E056so8uVm9lDVDtnMTkCLWoGJ3A1RmHw8apNSzxs5ZmbfRxfznt6tNPN95EyVo4xdqfBw7LYQcex5rWLc8eL3XbT7G7HI6atKD7qHiH0Y/7yIR7YQOZkS+n3W3acl3l+ktDZGtFavjyNFZnYxotT5AppgdwSe8P7Y0tR5+qa7KqIn8WfdObSrjHaH17/l7l8xpbF2QgU+GyLqo9m8Rboux0yysocg53ikQNPdf9ayv5vcffXgtG2AICS/9cDE4g2rna2CA9XSePi3oyhbCg+f6rtNJLgJf+tLaHH4RHBEaqM9ZrYg8GTkEMav9RDztzVLYwHX8xoVUCvBukKUt1IaOt4ohs3XR1HE+RGU2bgtev0GRJf1GHJQ3h7Ncfd6L7QoBeG5xQckBFQ612uQM78dwpse7hWFiWG+2K/YiJkwqt9y97VT7TPOvRbwI3SNb+LpNHUl5Myai2VU4m9N9SOVlghGxJHIpLhOtPZshxz9LyFYYhe8MIypuDavBfZI+SMmKM1udKS+rwaOdhUv34si8b9G8McbvQ80rZ9ZNyznBVoEjMzsIVSDNAEVJsZY6q71tOHYRhhBXEw6I4wgTSPOlpHRtSGrt8I4OMEAJgLxLdAENhk5F2c0XcgannMpNBnOjqK+86ELucBcVmJWU68F5/iL9GIUY3Wkae5+eOl9qWPlqNND0Wt7ou9pbrRr/RlSYKlygudGUaD3oInqEuCbHjERpC7W+GIzFSYdjCqti/Tvkmiy/oqXMM4mdaTv09GC3xLY2yVBOpLaqXI8wmtZTl/FZ56Mqo8LGdHfIaiLl9pNRNyNbywdfx2dQsKb3P1xK1VjW0deOZYnrsR015n1SXeFce7hvTRhcZtktBthOffzTvVy6rdOYvwajD8rKm6SQY2/10YFmqW+jkbUWR9Fk/u/EbVXdpV31FclPtoy8fBWTVFn6Nqbo+GYLqTz260Sft9bPZ2mvhVRMe2C8LUPWoA8mWofDkER+INQBHFBtBju4O7TQx+NlSgzPkN8D8dYwMdL7SphXdZcGnrF0P5jwL7u/vPotTXQnLUQwo0eFI5/AEE9ppb6qoXwDMpMCmpbIGaOo7xGKju0TwUZsoILUfuy4/oWFAj6ByQd10oHxTqKbFuggFYRIZ2KiuD2KrWvxN9G91HXZgf9Zgt7ItJtfWp2TDCYt4ZzHuliXMqS321j1qFDLWAQlXSoY2WjWU/79DsDBVGu8I7a6V3uvpJlwC5D+2LuWRFh03syutbBiO+BirnPKbUZnK/ooyS5Hs0DTczbImzX3kM+12RUqb0SCTJ4aoQDUq+hqvhPILqc9VDa/9sZ7+sR20Dp+Pmi5/MDm5XaLIucgDvRDv6LaLGN20wELq/5HI3IuFH067/CY66afpdFO+G/IeqxX6NFbE5g3dAmi3y9we85EaXxTkWR/V9Er91f8777S8+3Rk7kyUh7/GFgy8T7bgh/L0KUV28DHiy1WQdtOu4nIbAQtftvJPtc9/lu6vP691EWYd7o2BS0sB4eHbsdWICI2JwKkvMG333ttY8gHh9E0Yd9UMHVpLa/deL8SwMrj+L9lcT8iP6o6n33Rf8vVfdoMaZC3CIWfugRUwjHZ0bX2z3huy6O3YIwmluFe23N6DPGfe9f9xjUbxWdb16UPbko3BffA/5U035utDaci3iR14teK+bCG9HGe0tUdDbaMd4R3xPhHukRnBjAeV5B818sKpAUfgjtz0GBjaXD46to49DknOvVPRLtjw/f+5dRxHpvSms0Qawk41itKEjp+NKoOPN3qLCzOG5kiusgx+nPqHbAwj15danNoWi+nA3h058Ati+1uTNcE8lH4ryTgDXQnPcA8HLL68PQRuFr4fkSwOqDvg5bjq1YB+O5pBAnylpPyJh7yBAjGthnGqcvcm2UirgN4WfeOcRzTQoX/N9QenNmuOAPRengot3LdE9I8cT0YqLfGfEFEP4vFrKpyBH8J5GiFnL+Lk30lZokKpXpkCP/TSIFrui1S6lQqENpwxMR9unE6PEDYO2W3+9E4LsZ7bIUgTL6WQ+l8v6I+Hb/SslBR1XIOyTeuz0lZTPkJC4cPV+ItOrUpih6ulL4HYsCk7jNvQhOsTCSoX4tKnQp91WoHj1LterR94t7A6X0VkV8oMXrv4NeFZ3we/wuev48vZNJpYOe+RvUXfuLodTzFeEzHAZcGY4t2uZ8od91COpC4Xf8H1o4m6Wx9qipxd9d6T0TUvfboB7h+3otHWd2TUqqi1HbeAFaBKVnnyk+U/Tab6veN+CxH0FQz0o9Qptnw3XwzuK6rbv+wnW8Cdrk3oYEI4rXCsjEgSgrsDcVjlqi3/NqXpuKNsQnoU3xw8A2iXYrI4aXWqWxAX6/C4Tvciaadw6jpBgX2i0FvCf8PyfRBrnFOftujtAmeNno+TLlay4cvzTcsxPDY3tK6yDKEJ4U+tyFaG0Or++NAgzLRMeWRZuqvUptlyk9N+CNpWOVCpSl73Mp5JjfTWKjG66DQ8I9+Pfw9xC01iZVaTO++2MQnPG30e9/8zCvsQZjOx5tTu8Iv9kRwA/He1yjeYxHYdzvkXN4BlKseikcXxXaUwLV2HdQFGIZ78WHfpegWOfNCwwKCp1HTZyufyEULiBs0KMoDRkXOjxNia8wWKNiNhffaFVBwr+BO0MKqostwAdLxl30+7KZrdu/5egLs0zVp39Ak8QXXEprD3vARUa2G+Jp3ZkOrvMdBFxnqe0E707XPkni9/AOx+1TCJOasr5cr6GvnMKsAi4R03s5SkWFbjQrlfp+2czi4/f44PHsddf+N4Fj3L1Ls93M9kAQmx1Lx3PUpEC/+SpmtgpyfH6MIvfrtRh/HQfqeWZ2HGk8/KAKVVKWy98KUSGTi25yAzrqia9E7cpCLSPXhZn9oG4w3oCtgbxi4S8j2MLRwOlmlsSGm9mGod3qSMzkcO+oQRb2DTqfJcmkUGOLVb3gGRzrppqLlZFTFBeMtcJY1lmAee2Ksmp3IqadFyvafhKtp69BRcmLo4Kid5faZVGFekQnVmN7oQLlh+hEXD+daFcpCmIq+tsPpcYPRTj3VAFUE3Gds4iUVN3dzewMIjEiOmJOKQXK4n0xJenznmaG+TjCE+9LDR1qQ1vDRTV2axjHP0xiHbOC7Y5+r+cRPPMiBLtqbMFH2crd/xmeL4Bgse+L2uwGnFZqM9Xdj0712WociXV0qBYmmeKkTm/hw8CoL8L5GuFDG/S7Kdr1LYFu8CmIEP9XUf9ZQgaWUczWYFw7po67qjo/ibA8vzPd8ccjeMQjqEiwLSfpMWhxOZNuxzsuZht1YZaZHYZ4du9CeK9zke59FT56QzpY63vc/dJEm++gRa2oEt4GRTi/GF4vf2cnoOjPI8COHpF7Wx+uV8vkN80xU4Hp2e5+Sun49sDWHjB+uTitJlZ37Vui4Ch6X4pe7wH6q0mNYJtNHKt/dklzj5r6p4yPtoZ4+NGamW3k7peE/yfR4W+9H9FN9RRemmoqDkBRVVCE9RthIa+jzBqhnquaJwrzTGGOis/UQ+UVvVYUs01FkaT9UWr//vD6K3SkoZ0S7rqhc54a2wlewkNaEOiouj/j+9LM7vEKOq5BW9govIjutY1REdieFW1vQxuHG72D1eyiLQzHaqlCo3a5uP85UFYPtJ4mRVBqPuPLKKt3Pmn1xj1Cu741O9YRIyoXgk0B9nH3FaP3HILWkmfR9zY/yhKsUXGOgdGM9TMzuxFtam8Oc17r4vwQcHq+37HxMMugc81pM+pxjLUTPNZmZve7+5uavjagc+cKGcTFbKC0z397t6xuk/MmKUxMOvRvc/cXzWxbFFF7L8K37u/u70z0FVMGXenuv060OTExDC8vNlH7Lsej9NoM5Gj+1BPV0sERXR8toh8I/XwCuCC16OaYmX2EqHLZ3c+JXsv+zqwP12vF613tzGx7d/+JVRQueYcGrmAxeJZEtNs7PKBfAS70XiWeoVjdBJV6zcyudfe+VFwmZaHpaCP1LlQscXt5kc/op0tNrabdnHRYNx703mxD0e7t7j6jdGxT71bHqzvP/Side350bALaoC7i7u9PvOcstBEsHNWPAat4C87nqM9Kx7VBHzGVlyHY2Q5eQdQf2k9FkIM3hGNDc85D/wsAS3ik6GVmx7r7p/rdv6Ht8cD33P2e0Ywjc6wjTmzYIN1U5YiZ2Y3uvoZ1CiQnIWhNmcv2Fnd/h3UX+Kbuyyw2HKsQsAmv9eXUz/2965zQaIPcRIzIEMygUKCcG/EJPxa1ic93Gh2BlGJsg85aF+fdDgVjVkX3+JaIRvXMFn2lCqMbO/QmtcJK8wT/eEafM9Ba9YfwfCm0IV41anMnqv/w8HwiClKtmOqzjY05HGIc7B4z26EiYnZv207D7uyT1HO9VkIT4r6Cs1vW1W47rhEKE2AZiyhMgJe8k07bFDjFRYHzG5OYRbmvg9EuuaAM2sMEpfhKafy1Ffplx8NHIeMa/l4OXB6idu9DC+nRCH7S2FzUZFVqPNnfmfeJ+vd7PVgh85uCTIwsKMHJXcO6o90XeG+0+0FgmglGcDtSzbo4tcHoZ5andFWWhB55O4rIlO2WEPHqUZMqtcuR5u5rYcG7z8yW9Bp6Rnd/FqWg+9lxYX65C8BEDbcnkOUEo+v3QhMbyTmmFPgvEFY8JckMsJy7x5LpB4ZIYGMrO65mVuu49rFjESb38tD3+ojFIknl5QlY12id3JSZso8fQvP0DODxsPnaO5zzU6Hpxt5LMdglZ44gONeb2V/R9ZqtJNjCRqAP7v6SldL1JbsybHjnNLONkJhNT8ACeMaUWr8tzF+PkobjvdaVbZnmHfnpLlU5qxCwQd8RdMNkDkRR/y5r8HuvYmb/Shw3ggPuHbjfu7wkB2+9nNfHl9ZqQ9nFGD4SQxn/iuoQRoZOB5o2ELPA/+3upwUH8d1hXJshiEuTvl6PsrNzmtnb6DjvU4C5WgxvLRSxPx0VpA6Ce3g/4JoQ4DCU2fpUqc104Gdm9qPw/NOk5bRb2/+GSHBWxKxFvzlcr5XQhPB69u4q3MQHINzVJDqTbxcUwOopTGYiDFSBgdywWOzM7LcepD+jvrIog0yqLscArwvnWRkVjf131GaoMq5mNmdwXBqZ9cGktvjONqE3hdgl29vWzGw1r5E3zXj/2xAH8nsRbOM3KBp/U+b7+ypdWT01T8+GqaK9e0sKnxyzBmpqGX0ti5zWbdEkvgOSu87mCjXxqF6EoCXbozToXjXtr0fp3WvC83VQcWolH29NXwPjoLUBUHk1PF8t33l0rIiO7oKiwPtbWvGrb9TMBN/ZG22QRvDXnqEk2NSsW1Uxhrf04OZDZHMXutXbflwED6J2S9FLFXqUuz9YaneDi+LyIlSU9xfEwLNc1Ob1jTn6AAAgAElEQVROOgI2q1gQsPG09PDAYVlVlvk7HoTmrM+asgPnIzq/2vlrmGbiHH6/u/++dHxndI9mO8LB9/g48nVupuO0Pg2clAgy9OtvIrARCjitjL6v01tuluN+F0RFwCDmibJOwwTk+Babk0vQdT044QyfBarzxuKBHMPdw+PdA+gvSfGSaDc7HWq2csXrE6jidx+U4l2PCtoa8pkH6ihMNkXUMX9FN3zx+nrA+Ym+siiDECZx9dI57yq1uQrdgJcSMWZUfGcro0KH+9AEvAaCIWR95w1/xweAN9e8nv2doUKUU9COeX+0UB4/yvG9BRUePECCfmgU/U5BePBjW75/XkTV9DBhEzHo36Z0vi0QI8ZT1NBJ9eljUvTb9TxGMbY3Iaqy6TSk6qLD/LEpKso8gwQbSOk9RVT/92hjdiuCQ7QZe4oJpedYZl+jpvJqeL4UBeWMxLE7EYvGxUgRFLqZTV6PiqZ+izZHxfe/PsK5xn1dP6zPM4rvYWJ5nA3f/7PEsRw2nJuK7zzMJ1Y1jtRvNYDP/anS87XQOvFHuhlDDqi4zg9Fc/bNiAM855zJ+ZJMesw+fX8gvP+N0bEvhet38ZbfUdbnatjnHMjBfgL43Cj7Wgxlit5VPAY93n6PcYVDWAbedFDm7pcRpIgHZH2lDUNU5WS0WBXSvTt6J1Xzejq7q22p311lMQ8Ad5uwqxPN7I2IM/E6EMNBiATM693p8FtQurlsBwO3mrByI6pfiXZzuftNpXRdmWR9XGVca+wxrynKavidre3uK4co04Fm9j0EP2hkZrY0uiamopToUsA7vBQhaNjnXGiBWMKV/n0d8Lx3UsG5/ZSVrlb1FtCKqL9KNalS00PJKKDrYzeh8V5pZke4++414/oJ2txd7e49sCnrFct4DXJGbjQzPD89Hqdc70C/S3EsmXJ199tRenhKeJ5KE+faQ2b2NbqFDNoqyO2M0t5no7FfHY4N1KxTAFWG3kwhysBE9g0UGb3G3W8O0fvfRa+/Dy3qi9Od8n4a8RHHdqtJlvfX1MN3xsw8E+JTYz0ZBM9jw7nFxLJyHHKE/w0MhHUo03ZFEJzCZkdsIZPohpP9i8C0UrpebkTr0k2Am9kWGb/jOyqOH48i612Z4Sbm7heY2fMIHrUZiuyvjhzDtnPs4mGeeBr9TquidfXiph2ZiiA3QevS0ihAdU7de/r09220hpaZVq4ys5+7+9aJeVaNBgg/Gjc4hPXiTaeiNGB50pklzbqlDQvslnt3imoGsK2HArUAGzjdEzKA4QKbinCOB7r7kaXXa5kHonZzIazNe8Ohi1CVebIa1EJRSM3n7Kv6ZVK7+hyimlnVzLZE2M2NozbLAI96wNyZCo9eV3bszGx1L6XnrabQKKRL5mnrCJjZ4Wgz0g+TmtNXUZxyA4pcPomw0G8otTPkRC7r7t8w4VtfHzYS16PF/AxUzPE7Ew3cMm0+X3TOn6EJegcXZGUupGhUqVyX6KOR0lVmn5VqUqV2WQV0fc41kpJNpUxLbTdA8IZ3IjzercBVHtQew8ao0nwI6fFobHOgKP7SdNcjNIbdhFTwgXRLwh7QZNE14Wbn9ZKCl5ktjKL1z0XHamFdlldMlV0A1cTM7CMewdkq2ow5fCfHRgPxsUjm28z2dfdDq34Hr2DnCBv3Kd5dcPh01MdcdDOVlNfKYjO8Lp0NVGozHJ8zCbEws6Wq7r+K36+wvr+jmU33dLHqjV7BLNHUzOydyLm8DjH9PNfnLXV93e6CqrwPbRq+CpxaN/dV9HMKygpcgO6xu9qOKerzPlT01uObmNkiLvrH5Dw7yPl1PJ3gLLzpq9kqcGddxxK7q18BJ3gJq2wZlcuh3VZeqiJNHYteq6u6TR1/CnjEIznNEFk5FqU1/oFSQdt5N8/iLShS+kJ4PjtwrZdkh00Y3J5Co3iCCZGYXdGO+2bkNB7u7o0LpQa5qIWI2hEIv3QUmsyPc/evl9odg3a+G7r7m4MjcrG7r2aiPlsVXQc/dffrzOwhr6CBazC2oio8dgSbSq++gjYKL9G9QDbWto/6TFHgpI6NerMSX+v9nODQZiLaAG6ArrdnPWKVsEymiUGbmU1H92G5HuF7lW8a7niORdjys0vHNwfe6+6fiY7dSyJi5io2LbCMleZRIZX14Ttv49DZEDH9wzTrSBl3mYci5Iq5HHTvnufui4R2H3T3X1f9Di6qzYFRPY4MInMzXHrP4rGTbGaHufue1isRXYyrMeY/13KDVH36KDYNhiAHL6J7ZDTz6x2u7OThqE7onKrNQ59+XqGzuRrU3H8h4gnODqaEoNdUdz+tb+PcPsfZCV7fQ6GTKc16xavJCbZuOMcV5Wilif/3FTra6tsBEwsHa0i7q0aUKFU72/DaDcghuwNd7Cuh1MV8wGe8lFIx0cxM8CBKUnot5dikCmn6FhoVfZmoZFZFEI0Zs9K1EzY3kz1RIGUdSp+kQ2rigd2CDpfq/EgxK6uArWI81yHn/Npw7uVQVmL1tn32OV8Bv1jS3T9pguYsn7hHLkVFjwVP81RgJ3cvk/yPerNiZs8gbLWh6O4DxUuUKvzDuOZG6d2rUSr9cUpmDQs+B2FWw5naoI+ko1BYE4fBzGZ4IrsVXrvbu/lZRx0xy3Vucxy6Ur8/RBHLDZAYy5Yo+/WJnAh16w80IDMVpsVZu8ej11JBlBHzPOaanL56AjOZfeZuhiuzIBboCvttCEI/J6NIcyzC8L14Pmlyj+QGqcbawry5GLAMqiWYiHyV5P06lmaielwF1QnFG4c9TBCO3dDYf4Xw1p9Da8rt7v7hQY1jPDHBuXjTgZjlK1Pl9ncImnCKHck0M1vHu0nHP4N+yGKCvBpReRW2PdpdTUP0YyPdl8cWHKP9iTDUBIL88PrGCFi/mHWrQU2hhM+NI8OFA1wRLf4LgjUUbAhvQfi6fdGO9+Iw4fzDlQbbBHiXqYL6GO9OczxhZh/yjpjIh5GUdZe5VIA+iiJ+f0CRpDLrw2wmerTNgCNdHL6tdnOWwWwRtV0AOaVxlOgqM1sN+KMHqIiZ7UAQITGzA7yX0eLFEEX00H4huivNnyJIWptSylsD3zdh/pZo8znRtTMd4dJPQxjcj7fsK8dORNG+Am/4Z0TQX4a1pNSkesblfWj4Mu3N/ZuM2B2oWGolFHX9p5ldn7gWF0A4/FEzTTSw68zsv9w9h8Ktyr4b/hrCCu4yir7qKJfK9FuXm2A1/WBdCwFfpJeDdkNUwAZ9lOo81JiUnd0aq8P056jijZuZ2dYISncF+k2PMLN93P0XkO/k5jh+TRzmBvakibY03gw/mWh3Lp0sSDmNfreZ7UlHYe94jzKWJVu5cIABXKps5ehocY9sgbJQRTBrKmLYGLEhfSeDsE8g9dGH3P0ZM3stQa1vFrCiQD624to7FWWVr0dz01fQdb2Zu7eig6yycaVIswy86QDPlaVM1aC/SjiHmX3OA6bXzFb0UdKIhH5qCfJNPLBvRU5qnH5/GrjcI4xfbrQ4FXGyDt3abUgucmWUurkfFSVMRw7WBHffLnrfcmjDsCi6mP+IYA8PhNfLAPiF0WT3PHQD4U0SvF9EFfKbIEWvn3hC7KOfmTgK9wF+5CVKuVK7XdBmZXHgNkTrcr1L4GIm8B53/7uZvQvheXdHv8eb3X3LUl+tyNCtBuuW+VlfG8ZtJOhoBmmWCb8IG8drM45NRhN6OVU9VCymmc2LnPIvINz2HKXX+0adhjCme9BC/zAD4Kq1UdJXFfdQOVMRNoffc/d3RcdyYV1ZYg2hbVLoo2m02zIx/bOimdntSFb48fB8IaRY2oieLrqek46fu+9lZhu6+2WW5gNvW0+xFNoMr0VnM7xHOcNSlwWxXoW9R9x9WkXb21Em+h/h+WtQcX6P+E4xl2Ucm+WgNGbV9SfjOa6UmdkSwEfd/TvWLRQzEfFZL+mjwEdX2bhFgq2DKyowPYua0uldeNMBWi0LQEubHyiifPNFx3cGisK2U4l0zEdhtQT5rorx283sp16tL58dLQ52twm/ekZ4vg0SHynwShu4+1uCg/JnRJP1sonY+o64IxcP5ZpVCxai5Mkyd/8Bqkwt7BFTIVMby2G2ADnAqyHncQNThfq3wmsTo2jvNohG5yzgLEuIGHiCDD3n2mzjAFsvfu/R8HfJEFkeiuoR8IKp+LGIdi9Hb+QGtPCVx5g6diqiCXwf2uhtRyciOHAzs88hOM7bEbvLCWhx7bIhO7tVMKaNE8dGY6ONhOwD/NzMTqKbi30HJNHbOVF+xCxHrKGf0Md3aWbnmdgOvoOoKx3BIuJz1kWox9MmeDdc50nSIhi15h0M8fdKTt6vTXUdIErBy0iLuTiK8jc97yOo0LGf1WVB3hI5TsejIsEq+x4SPTkTzcFbAt+saDu3mS3r7g+FvpehI2pEOJaE0mR8nmHb0YT6EzRvPo2EoVare9NYWbiftkKbrEXpsE3EQjEvm9mfhuEAw/jCIY6mAm9qZj140wFYrjJVruXCOQahrALwrJmt690E+SlxiNXN7ADS1dd/QWm9D9FZrEA3Roqc/+NIeajQq78WRWZeRDf7Vajz58zsEQ8E1u7uZtbjiMc75cLpjHbKTwAvFg68mS2PHPZHyr+RVUBDUOS4qf0tOGiFs7YlHUcxtufC58SkvX5vGCOIjm5S2Ly9m27Vm557LOzGnyFSdLL29Eb9rK5YKknBNSA7gF74xUgazszWQoWUC1m3RPQUhFsr2xvcfSsz+7CrOOenJJzSAdpkRJc1o25TbmZrIqf9zYiiaSLwH8+EWZnZxe7+3vD/l9394OK1CgcYRu+0FpGvwiaaoD6xJGxSlCY5GG0iV0fQr4+Hw3cDa3gaR50TMSvmj0dD+78gZze2WoU678aAzo74nAHuSwUKXIqHoM3reaQx/aehCPUmRBHqcl/jYNNNwhYFnGAbVGvS1iodP3ffP/wddVrdMrHW1skUTgJ2MrOH6M2CZCvsufspIRBRbMq28Gop7L2AK8I5Da2tny61GQg95hBsDQ/1JzAC+5h9PAcUsmtboLqfN6FN0zLuvnjULFYINKR89y9GCWNN2Xg6wX3xpgM+3xTkeLw3OtZq1wrg7qeb5DiLHdUXvQPnmN9UGT0BmFJOG7V0vD8DnBwcQEMR6I8n2lXyFbr77WZ2Fyqy6ouTc+Efv0fakfq3mS0cHBgDiv8JzxeKG2fslKejdPfvzOwNCAt0GrCpSSktxlqfgKAhW4fnH0MY1GR6ro/thhbTFczszwRmi0S7P4Uo0S+BS8ysUJADLTxXmtnf0Mbk6vCZ30DaMT+fThXwZFS0cB8d+eOBWRF5M7PJ5Z209UrCDvK8F4dFpoBfTPNu+EVfTs+SFQvcP0ME8K8IMjMUc/fvmtm6hGsrRCzm8ZIaGcr4fBThnYvo55vIt/g+2QptrvvZIK6fGVEfoMhnYQ40YiMJzu7+/do1iJj9d5jrPo82GVPo3ajPXTjAYQxXhGxi+ZzrU8/XHrddm6joysT5fErUpG+EejzM3fcxs4/Q4ds+1t17OFzN7FLvLTrtOUaG42eDoerLxVrnZAobOU7ufnfIHkyG6kCEu083FfYWLDD3ei+tVxGQesbMFkWR+EVyPljZbLD1S7X1J+Nkj6N7/quo4NiDvzRi7p4KhAzFxpMdohZv6g34S8fSzGyFEAVMRmncfaaNkouwz/lrCfIto/razK5Gqnkv9Gn3RrQol1N/Badn7aLn7gdGfRVULcXfeYALPeB4rRsDdBBSqtst7FpneITVSl0fo71mwuI5AW2UPuo1FCwm3Nx8YfxF5HpNgiqVu/8nHHsTcpxqIQfhWvqsu+8SHcsu2Mv8fI1YQ0ZruYutZeKcTZjss4D/Ak5CDvTX3P1Hde+r6KuvBHm4tt+BGC3eFBa2M73EVWwd7PMI9aE1wNhaQ9q2ij56rp9Z1frNA6HNRIQH/X6fvs5BzntMq/V2d9+81C6Lr93MTkWsIbfRCSC4R8wPliEnPCta2PDOhdTf1qez+ZmC6O16aP6Ck1vp+Nk4UPVZdwajsKdTkf0+/XwIBXcWRU7ZUsBvPWIyKbXv2hwBXZsjS9Nj/tjds0SiSucaWP2Staw/GaaZihc/ijILp6PMyiU+ShrQtjaekeB+eNOBmg2usGZvlO5O3ehFevlYhB0d2A7DzKahaOfTwHFh4Uspv+RUXz8MXGtmv6K7oj1WSyKcb39Uub8BSmdPiNofSL712ynH39WGCJeHu79g4ijs6svyoCGVZt0ULOcCvwnPP48gOqeV2p/q7h8LYypwc6eiSCHufkP5HO5+f85YwsapvHE5jlCwF9rcYYIANHKCzez16DPOaap+jhe/uqr+VhYttgtad4p9ShhH2Y60XmaPp1CE6EfAQu7+R3cvsJlXEaKUZpaNIy9ZjrrT5kh8YCaAu//FlMYr2zNho3abmR2KoDRNsJjLhvvQov9HzDNYJiqun8ZmYjI5YLT99LG+ETMXBnAqmnfqLFehbrbCAQ79329ilynbOxCutG7ezolQj5lZtyBFj0XRw08jWNuidEf9/0WnfqVsb6fj+K2SiIov7hX0mk3N8rHWM4ElEHOAobqcv5rZY8An3X0GeXYQylL9xt3fZqop2b5ibMnNETDyXXgelCbXBla/5C3rT4Zp7n4YcJiJDrVgglrUzL6IZNaz1s1B2Xg6wR+nHm86aBtIYY131NU29ur08g7AUWZ2P0rzT/fRM1/s7O6Hm5RfXoucr1PphY0Ui2Fc1FDGfj4YHhPoTkWXbU53v9TMLETrDgg31Ndr3lNlqaKT46LX7zCz76ICuzcQPld4T9l2BU4JixFoQqwl2U9YTMHySaSyZ8DmnqZg6YoQhGhVK65F68bATkC79L+UmuUW7PWzWBL2e3Sc0n/RKwk7CIsX2xml86UW24cQJCDGMj6NIAXHAauZ2fu9V1lwJ5ROSyoJ9rEcCfIXQpquSCP2pNmDfQz9hp9DztASKEWcazHfZVYhV+b108Y+hCLkrczyhHr6zQOFXWtmR6IoUbxRnxn6nQic7XmFdreY2Y/p5mtPpeHvQowIPTUBYW7fFc1NiyH6rXGnxXL3eWEke/YomtcKRoBFonaHA4eb2e7ufkS/fnMcPwZD1VdYLtb6EhR5vyiM873ofjsR1RnlbgZfdPcnzWyCmU1w98vN7LCKtn03R5ZgyjCzp4A7PYGL72MDq18K18VVwElFhnJWMRfe/FvAt0wQt6kIxz6mbCzjSpE2llakKKM03GzA1e6+Zsv++qaXTQwCGyNHZD6UipqOBAsa6YvbgJRfSn3O5e7P1Lx+HZKx/AWqBv4zcIi7L1/1nszz9ghJmJgEpqGJ+wQX20WRhlrO3U9N9DMCDTGzPcMOM3cMWRQsZvZl5CzOiaAShVP3AsLdxVjl3HPHMJKXEFbxLO+Wl+0rRd3wnPu6+6GlY8t4L8Z1IGZme7hYPOJjcyRSqjd7r2rgzS71vLtRNPwwYBN3/114/cuoqGJjr5FVrRlbX3UnM/sC4oTeCEGCdkYKfkeU+no3kp9ulIkYjeVcPy37He180lSop05Qpi+VmknQZIt+Ebdwnt3oloY+OnEtXo5oDW+i+7r4kDWg3xoPszT9YCzAU1svUXawzOy3VDh+1l2k9ka0kR0VVZ8FwRXrhhWl5oaReTs6VqyN2ZA4M/sN4pk/BAWVHgdWc/e1E23PRPCcVMF00eZ8RO9WXLfroyDAMojPv2f9qulrkCqmOyGWm7VQcOFqJP9+btO+/n+18cQE1+JNh3C+m9x9dZPG+mdRYc1NTc8XpZd/ghbiON37Q6+QUA1O3gZoAl3LSxyDGeetVX4pRYd6zCOog6ky/3iEV13SxDH8aXf/bOmcq6Fo+fwofTQF+I4nUv81464UkgBSQhKtzMz+4O5LNmhf3rDU4jHN7OA2Dm9bs7QU9fbliGiD/lIOSqXS12gt1yEKi+37PBSkmJgzLnLJSRcb13cjaMRmiDh9deQU/4MWluNghXYboUJaC2O6JNHXyWiB+TthgUHFHq3GNp4WImKNi2asQ724NYrmFTYFOVKrD2MeMKn1vQ1FB+NocUoOeXbE4PEKYofoqYewGs7n0qZ5Elo7hoKnb2MhYHEUghc6iqrtVjh1FY5VYT0OVp3jZ+L0reusDZVjFtbaxB99Kd0wyo2A9wM35/4mJkXL59C9vT26Vk9LXYd1m6OozUWInu+x8Px1KGo+FTmdWQqPISDzbXf/Qk77XAt+y9Yo276AhwzC/9n4wiFq8aZDsGNNGMWvIpWSeYDGoHW608sxhvZpSullE/XWn0LEYQ0U5v+aR0o1Dayf8kuTi/ow9Dl+BSOsEe8qN3L3our532SqzJjZee4eYzV/BLwnvPYutPMuhCSOJc0E0MaaUtE1pWDZz6RotIy7H2Qi9l7EW5COW54q00PAe6xGijrzXCsgKMd8pWjQFKLN56DMmmOQPw9cY2YPhrbLAJ8Nn/tkABckZyekhnUdsOFoop6emcYOTm+P41tqsyOACd+6JXJEFmUIc6uV8MKJsTRWqbPBFGDmUC82mgeCE/EtYFF339jEHrSWux8fNTubXnafVORyE+CHCAJmwDJm9mmPIDHB+fhRVRCDBvRb42TbAoeHB8A14RjQis5sQVSjk3L8HqMDDemnzJZruVjrbZHf8Mvw/NpwbCIdtqBKszSGuvgxvx7mof3c/dLo9QMyxr9E4QAHezwc+7sl6EKrzIWHX6d/yzwzwYDegn6zq9F9Nixu+FeljWckuEh/xDvsYUamelK/qWMN+vuISxChrs1tCE+0NMK6nAus6O4faHG+b7j716PnE4FTPFJla9BXoYzUT83rEmAr79ZXP8Pd31fTd1dKtZSSOwqpPh0Qng+MBaRpJLhF/8cQSMdDlHIBxATRmHTcBGlJyXD+EkYiT4OgH8IkT70ZclBiJ+pp9Fte13T8fc63I9okvoNu3OXTCJfWg2uz7ir0+7wbFlIsWoaUCV9EGMVR8UVaBVetmT1M9QbFE5Gp7VG68b+QDPg1CGZ1fZtx9RnzE0hp8XTgRkobP28h3GGZiokZ/UwETnX3bStebzQPmOBAJyKHZJUQfb3Vu1liprmwrvQ5di+wqXfUKZcDzi87vCGyvLsnaLLM7GU60WajGx7V+jocD6u69ktt6qLiA4OGmNm33f2LlsCTj7WFa3glFBFuev0fjZRLi8/wESQEtg9wXu7GO/R1DAoknEl3hqMNJvgctCm/B/HpXxUCLLOUhfV0CXe/o2/jAdt4RoKfN7MJiBf2cwhvOs8Qz3cWvSpUv6BlcZO7n5UxmbwSogabA0e4+xEWSKtb2BIWyPSD0/BzoG1ffzRhbd2EjZ5GukhwQe/VV+/HzVoeU1MhiRSf7YLu/reKXTx0FqVh2iBJx9fxhBqTu8eRj3Pp0A+llNayzIX9OtfM1hqGY5Y438mIz7rvJjGyyir0YaTtrJ6rtgxTmkAnjZi63w5DEcYfInny37cc05vQglnQtgE91fGvR6nfqSj6dT6i+hqNLPtACjBDBGsJM5vd09SLjeYBNPf83IT/LqKv5TqKHelEPgv7eOLY04UDHOwhtCkr2wKItegmup2PD/kY8pa2MTNbHEVQiyji1Yib+0+ldlk8zX02VE2U2frZB8zsS8CX6TiQPWZmh7n7nlVZtDZZkEQfLyPV1TLuP0cQZzfk+Bbf/ykIp+80L/SfjFhT4nu/rRLf5uEzvBllfy83s4neLUwxLmbSWfgQuv9nAI+b2bXuXgvtHLSNpxM8Dd2MeyC86QY0r/Dva8NKB2dOJi+aqH52pCMxmaLmybGdgdPCorAB4tbsRyFUZbuihWIxlMq8CN3EZXvFIgJxExasNnXgveD9pkISN5vZJz3gjk0E8AcDbxqGQ9TABkk63leGkwHSDwW71cx2Y/QUgbl2qZn9DyVVPy8VMVleFfqgrVLdyd2fDOOagJgf9glj28QTilLuvqCZrYg+5zdNtQ73eaDTa2BnIkf6OCpo28IiPR2pg82BnOErzOxAd6+iuepnuYqJOVZHvdh0HviPCfJVjGvNol2YU7dFsIY4uzEvHRn72G4xswtQ4MCRKMnNxXoQRdjawONmFTsR+Cn6bCCc64lo0xRbrbJZn0BDEfEeJDRkOqp5mMc68LTy+aDDBd1UCruxeS/3eF9BnODs/iI8Rnv+USvxFWaikXwnmp/mRwXuw1TabGLzuYrad0FZ7f3N7H9PJNhb4E1b2vJIbWZ+urXOn0bUWG0tRyZxJ+RwftPdHw7OTnaVKIB1i3IcjrB116IFZVXvI8SQMpdyVw6MYj+E17wSTUrvpDuCk3Oub5qquAshiWKCnYAwgWXbFjgh7BIXRZW7w5L2bWI/QLrmC5vZNwmk4y372pNeNaby9zpI+iEYEEVgAzuePFW/HG7WQVslV23IjOyM8IjXIF7NB5K9qP0UlAZdCkWz56Pd5ugldz+mX6Pg/G6CHOCl6VyXbS2lmJjkS82wSurFFvPA3gi+s5yZXYto9Arc8HXIUV+Qbr72pxHHd9kmI7hRkeJ/AmWOPkgUYQup/qWAN7r7b0zFU7N0BDiyhdw9Ln47ySRKULZanubMQMMgJW2/6lK7O9fdP1zVyAP/b/iN5kRMPvdVtR+0ufsDIYL6MlKQvBVFr4HsaHGW2WCFkt6PnN7D3X0QNIqDtElmtghaI/Ybt1G4+7g8UMHJ/NHzBVAF9rDOt9aA+7sx/L0BOWtzAA8MYdyX1zwuS7SfAzmSX0F8vl8Hvl5qsyzwa7QYPI5S78tWnH9BtInYFKUox+La2AwtaH8B3jCW12Wfca2AnIbPAW9u2UeRXp8DsXysAsyRaHcPomG7Dy3sdwJ3jGLst4a/d4S/syFBl2F9V7dlHjsTFRiO5e/4NbQp/ghiiXkURalBOL7fo43KFuVHoq87ED/ptih63zkPoAoAACAASURBVHZMByDWmkWA1xSPUptTUFHLfwMrDfg7mRuYd0B9zYOYZ0bbzySUuVgJCV6k2iwFvCf8P+doPgMKitwMPBievxG4dCyvzVGM/VK0eZkYHtunxl537Y/TuGeGv6dmtv9gmBMfDs/fCvxqyGO8Cjm2pwCHog3y7aU2t6BCwVvD978TcHDL812JGHBujY7dNd7X2BC+162K+TM8XxZBSMZ0HONZGNfDSZk6NoDz7OvuhwacTwpL1EOnk9lvX5lEG2MauHDOvlKWZnZDGHMhUPBRVBCyRni9rzT0kIZfYMyWQ5PIm1D0+wh3P2pY58y1AId4Hd2YzZ4imox+bvE+FHlWQUPkLeiHQn8DoQhscL7rgX28W9Xvu+6+VqldX/qhYZqVuGrN7CTqC+OS8BHrw7mdMY5Uga57t5TzK3RgBvEYG0fgrAGlYoM+V0IZh0La9m+INqoVZtn6S9V+EmVQXuPuy4X59ofeK82dpRZqKmReHQU4iiLBHl7aWdHCfHEEoutzFC3fo25+Kl/742FmdhdiATkIQY+6zHv5i2egzOAVY/Ubhe/2cRQ42Atle472KENko5RPL52v4EmPC9dbFZEHyM+3gYXRPPGqK+Qcto0nJrgx3rSlFSnflEJQa/M8mcSB0cCZ2beAQ72bqeHz7l5OyedgSefybvLun5hZPAHlSEPHY8sp6sm1O4FdXLuzh01ysI0X5EGbme2OfsvHiNgJgMbE8MBvTGIMZTWsGM+4B6Ie6sGhtrSCIvBrdCgC2yj/5dpnUIHcfOi7+jsqWirbAUMcQ5dZDVetSTL47+6eGmNdnyOc20Al53Y/c/dlMtoMkkJyGPj6Y4G93f1yADNbH2GcewQI+pnlYcV3IzitAO7+O0sX7uZCgZ53ybQXY5jEcNakgVvYHFduHHOu/bEZaY/tin6PMlwR0sVgL7r7UyUc8lB/oyjw8CyS6U7ZaOXTYxskTv9Q4IM+zlLJKTPV1XyS3o3usOpU0uMYx0jw+9Gk2YU39SCH+GqwjEjFwGjgKiLnKfGBY1HktAdLamZFhOaLqBihIFbfBhFotxKDMLPbUVFPOfqcq+M+y5uZPYAYIp4cQF85Ub9d0KZpEtpMnT6eEZu2ZpGq3ywwlpkodf53E1ftGXS4at/s7o05q83sRoRV/ZWPgmIsvK92PpnVzfqoljXsq1KxLGrTRfUYnNaZXlIss0y10OC8/BMVPu2OMib3uPv44RUzrR+OdBjX/iDNzD7h3RzQVe2OR9CPLyEnfg8Eldl1CGMqlPGSFl9nIYj3GIJNJKPFDc47MKEkE9vCwHiHB2kmgZer6fUbclmFBmLjWRg3PaTbi4loT1fB1kDNMoQJWvabE6kYJA3cRItkZ03FAXNE44mlLHcyFV2VpSxn0OFcBfh01L8TAf2jfnMW5qyinjozs5+7+9aJiae1FOeA7Y+kq9gbW2bU78fAj81seeQM32EqEDquiLQ1McsTHxi1VaXZi8hNkWY3s2vcfV3rrUYfZrpuYhTx2gbJXp+Fsjm3te3U3f9Yikw1kkSHcWPJyIYKZNpDJphYkWXaHtGRtbG7ECVcXQTsSjP7CirM2gg5rb9OtCvYDP4ZIBt/Renhsn0JfRd3ornxAnc/ruX4x9qOI/A9A7j7HWb2U4QfhyFd+wO0F0N0ussSa83uqIjqeQTnuwhBKYZhm/ZvInP3R8KavIi7V0WLc/satVCSdZiwbjHxOv+SbrhZY7q1Idhc7v7F8R7EmDvB1os3LSoWlwzwiEHjTYdFqZJT1V6mgduQ9jRwpyHaqaICeCeColawvjdsjvMVW4OF+ddm9llUpR7faE1SbAXZevbEM8b2EGJ0OJ/uz9gGOzkXgpws6e6fMmEZl3f380rtJqJivBUQvvJ2YG+T2tVHG572JIL4QHh+P4JjDNQJJjPN7u7rhr9jSXvXlKs2x3I5t/vZeLBkwGBZQ3ZG6eKz0TxxdTjWxuoUywrrcVoRXWXZcqFAu7uENkYcX0uIb8yi1o/veRjX/iAtFh2ajMY4k9Ja48Ld78cYsAlEMIgi0luwhsxJ6Tszsw8iX2N2RN33VlRw2EbFsUsoKQogNBFKiqElzyD598JacQ4Pwc4zsw+4+wXjOYgxh0OY2bFh4U9Fs7wljjT33LPT4fe7z92z5QwTfVVqqw/LzGxjNDkAXJKCjlgk1RwweSsjDr5/Rm0mIpqlpemO8P5Pqa++KcnQrm96/9VuZrZ/6nibXX/Ymc9ARUMrBaf4Oo8KH8zs+2hDcBnCBt8UvXafuy/f8JwDK7bIONdEdG9k8VjbgAoOM86zH/ABtKFYEljV3d3EVXtynDa0bk7xwp4C7nT3x6N2C6LizfegKPbFSKSgEWymyXwSIkTPuvsrIQ2+AuINbzyf5UIF+vQxmW4Z3RNGM7eGPtdLHfeSiIMJV4i7PzGa84W+UvCygRdrD8NMCnufA850ifpsCXzC3TcOr2df+7OCmdn8SNHy/eH5UDK6mWPpW4BpAyzYs4zi9gZ9rePu1/Y7Nh4WsoBzIxakFxinor0x3wG6+6fC36YqKqOy4BCejOiPDCmw7ejuV7XssjJSMawb1qV1X+YiLttZwDvC5HYsoj/7KZoAC/s18BxasOo4TXNSko0jzHVms2g162hTXCVbzt23MZH+4+7PmPUwzt+BODT/0/t2Vm9xzkrxgUGbSz1sKioIrTXrLjgsrsW2BYf9xtWEq/YTqNK+2KyvjxalZUwS5qeGPnM5t5MWzRXz0j/yWdhVwDtDdPNiROu1Tctx5EIF6uxkumV034wo5lqb13D2hntlf+T0TQjHXka1ED3Rsn5QIGsuvjErWi3fc8Nrf1aw/wDxujJ0kYwayynAHGTB3iCFko6gVyk3dWzMbYyzgJU2rmkQG9tCkO8B7/VAsB0iKKfTUjaZ+qr2gd+wlk/GXUg1b0G1VPPiXoOxzV2YzWxDd7+sImrWFnc0S1Wz2nDkOl8IKbXCIV2OkjSyu59oZguY1MhirOZV3q5Ark58YBh2rZkdSS8DRhnuNA1BQUZdcJhjHpQIS8fuTzSdhAqGHoMRR+oUYA3gKpPwTc1pPBen2GausLBx+gQqvjnU2uM6B8EaMkgZXUI/I9E3BMlaDBXfvhsVHq0DrObuD4f2ywLHmNleiQzESdRDgZqKb8xy5hk40gbX/phbaX6dgGhFf168Xs4AjLHlsIbcbWbbItjJGxEE8rqW5xu1UJKJtWZtYCHrrtOYwiwiABM2s9sBy7j7QWa2BMJUj3r+aGLj5gTb2BeCzOaRwoy73x9Sf40tpG9/5O4rpF4f0g3bV7oxWCHVvAPVUs0Xmtl73f3iinPlLszroXR9mdoG2uOOHptVHOBgw5Dr3B/JhS5hZqehBf3jcQMTO8Q0YHF0j6wJXE9L9Tx3nxlSzMuj6Pqo4EAZVsAs4shcD70eAyw4HLAtUTjAwR4Px/5uZi8SOfaRzY0iyK8ls1gnniuCo11gI2+KYRcls7DIbRfOBy0XNlcBJoilpy18aZAyuoXVRd8+BmzkUSG1uz9kZtujyHjZCV7Q3X9ukpwvxhinmR8BHkGR/1el2WBwpONp8fz6EvCIu/+p3MjGgXufvALMcsHedBoW7FlecXuuzY42tJPortP4F8MNfjSxo1H2b0P0Xf0b6ResVvemQdt4RoLHuhDkFjP7MfCT8Hw7WnIHh3TvfRbxHMdmDahVGp63VroxWI5U8w3AOSbmihfphRz8GVHtlLFE6xJBI9y9wMl+o4jIRG3bQiRmqWpWj+Q6B9jnJSbKojXRdz/Ne5lRpqHJ4AZ338DMVkAp3UZmET9oWPzfzhjwg/aDO0XRiYEVHA7YrjDxf58Znn8kHJsb+Kd3i8/Mi36vnRD1VBvs3tbAd4Ar0DVxhJnt4+6/SDTfE93357j73SEK2ogxxAYrljFIGd3C6qJvsyXuF9z9iYrARhYUyGZRKFamnUsHR/p8n7aznJU2gwsiOeeUDYx7v4H1LcD0UsGeidXnSMSDm2sDKwoP3+eVZnaStxRYGgNbw4VfvxXA3f9hqtsaUxtPJzgLbzpA+wyKLhQKcVejnUhbWwClQG6iO937IYbDcJBFxu0SV9gjev4wmthj+x8U9bizYhNyGAm6NDTJHkZv5PcsejFGv6Ad1GQKs1A1q5nVpkPbbGhMPJ2gdCvAW8wM78anP+fuz5kZJmq8e8PE2tR+hIq2ivMeQocf9FiGGBUws03opd4qIlNFdOIP4TF7eMwqthtyfIuCoVOQpKejxRcT7/beaEN9Mio2+kfL8+2H0vuPh74XAn6D7qMuKxa46PlDRPd8phXf//Jos1VgYT9IQziDuw8jvVoXfXuh5n2p13KhQLMUFKuhDRJHOmYWNiSHIOz1QShgsyAwwcx2cPfppbfM6e6XmpkF5+4AU1HaMIV/NkPF5T10eSY+5u8Ci6LAzVHI+V2Dhpvhwlk1s1Pd/WOl85yKMiBN7SQzS8H4hkZA0MBeDFn1YnO6EPU1SkOx8aBIa1MIMmpzsSUciYi2X0Hp4LrJtJ99reqFIe28PoZSnp9DmLgl0CLdZSamhtRFH6eL/oi0yKui1a9L4ZHc/U4zWzo61wrIyZnPunHBU4gcnybm7ju1ed8Q7RX0ff4ULcLPDqDPWJ1vMkr7FtXFhf3JVCH9S+ASM/sHStk2tXHhBzWzHyJ6wA1Q1GRLIufKE4WGITMxj88Cwhrh3vgFCScUwMy+A2yBNhL/5e7/HuUpJ5TgD09S2uTaAPHpxfdvktFetcCQmtkBwPnNhz9wq4u+xZHn2IzEvNMACjSrQbGa2KhxpONkRwJfQeISlwEbu/sNYW0pYAWxDZJ7P9c+CHw/3Cs/A6a7qOZAdHrHIKjaxgi6djKwnbs/1/J8K8ZPgqPYtnbpC9H/k5HP8FJF27G2HyBa1YXN7JtojSgr4A7dxoMiLUl9U9iwAPAhKvVD4EE0ES6D5E37sS3U9dlTvexRQYLlF7MNzELar7DJwFaI2uXrUZuTEP7vQhIpaDP7nbu/saL/B9z9DeH/D6Nd8ofoRJJAEc4z3L1xYYD1UT4aDwsT8lQ0Gd6DHOKLo4lwtP0vARzm7h8x8UveHm9Qwj0zH5p8G23czOwu4K0BCnEvUmW8qnjNWyibZZ63oNwq/s6DaLzeWWr3UwTfeRmxHEwBDnf37wxjXLnWLzVuZq+ge+clGL3YR3CqV0YLPwj/f4e77xu1ebu7z6iaQ9vMnWZ2H7Cyd0R45gjnbZN1mGXNMoqwzexwlJ2cJaBYORbu71fQ53ojghe1xZGOuVlE02hmv3X3N0evpVRSV0M81vOjyPF8wLfd/cYhj3M25ORuA6yLKEp3sRLNpJk95C3xySbM+leAOVE2FPQ7voCCF60UXRPnucnd2zAMDdzC2vpu9DkvHY9N6HjAIbLwpkOw7wEbeJAxNFXkn09/yrGkWX31cmG5xWx156nDFz+PnPqD3f12AO+tsj8skS56ODyqUtC3mNkny+kfU7HWiBSyu58LnGtma7n79Q0+Vp31Uz4ac3P3exEObX8z2walxr+NMJyDsD+hjRIo2rVs+M2uA64FrvcWqkHBTkep5b+hKPbVACYKvWEWpBUR82fMbFEU2Vwk0e4t7v4vM9sO3YtfQtfYuDrB9EmNu/tAcYjuvk9wvAv4xQ/d/ZelNgPHp6Nr+SYzOyc83wyxKYyLhY314u5+VHh+I4IvAHzR3c+sfHN1n7lF2LMUFCvTFqNThPpqtDj9Xc6ypbIdN4d//42KxyaiNXaoTrC7v2jiYnbkpG4G7AJMNrO3wYgK6/Pxc28g/uXuB5vZt4EfezvFxh4LkK3CJqCI8nyD6Hu0ZmY/QMGyo8ZzHOPhBDfFmw7KnvZuHe+H6GAy21gOd2BuMVud1eGLJwEroUWrIOiOsbkTkPPd9TunUtEl2xMVzm1Hx+l9B3KYN0+039zM7kaT2HQU0drL3X+SaNvP+ikfjbmZ2WJoot0cabnvhdI4bfs7gm46oLcidSTc/R0hq7A6orjZAzjVzP4KXOvun21yLh8/ftDzApzjO+izOWk1r9lClGUz4Miw2Iy1alrKxiQ1bt2y0fFF/ykzew5tcvdz90uj9+RAnnLObcgRvBAoIvQ7uXuZUnEsbV90rxU2B8Isz42Koho7wWQWYc+CUKwce3hI8LuxsgLaEhdUQgnaYmZT0Jq7GMo6XhKefx7R2J02rAGaRKq2QVzhV6B5bOvw8qOoxqawv0bPU2w4teYSwBkkO8KMMA5D6+jDdBhlxttmAF811bqcgxziVmQFo7HxcIKz8KZDsFvM7ALEPegIJnBzgWVtkfLK4Q7MKmars4wJ7sGS4xuD8V9C4iBbx28wAdD3pbdoacPw9zFgbTPbADnZAOe7+2UVY3ivu+9rZpuH822BCP3bOMF/C1H6Aiy/JWNXPNljZnYlwq//HFUiF5H22c3sNd6OXSG+0V8CTo8zI65K4yvM7Ga0yVoHZRFaFb74OPCDeocn9ywTy8JkT/Mb/whdM7cj/t2lEI3PeNuYsJR4DWF8iHKthBb4GLbyjuj/EchTi3O7mV3g4vgdtFx9W5vd3f8YPb8mZLeeNDFztLHaIuzSprTH3L1p0eFY2sJWw/Th48+yUmueX1R5KgpAXI8isF9Bjt3m7j602oZgOyAs8KcL2FBhPhzRr5lmtloU9W5tPkAhq0Gbu58MnByi1R8Bvm1i3EpCMYdl44EJzsKbDuG8J9a87E3TD8Gp/Se6QXZH1cv3uPt+UZulkBLW7Ch6OB8it3+gt8dG5z7P3VszUJjZxeim/gLCY+4IPOHuX2zZ393uvqKJgu4X7j7dzG5391Va9LUsKjZaG016D6Mig3GJdpjZ7+kskCns50D5KU2E62uj6PDzCCd7I4JE/HWQ5xq25eAwK943yQeEt25rFfNF43liQGP5tLv/qE+bGe7euHjGzE5GEfhRL7iDsLo1wMwedPflWvR5ObqfqkR/dqx7f1isZ0kzs0dRDUWSnDkj6/eqMIskiMPm8FFgSW9ffNb0/HH9z5zApFFA1Pqd614kQf4IYp5qje8OWbbPAAUj0RVI42CYHPGNzMxWR5H2DwO/dfdhoQHS5x8HJ/h04LIKvOlG7r7NmA6opZkqVD+B8GMGXFT+TKHdwLTtoz6Tevamgpl/BBzt1ujCfxA53s9H7Wa4+9stFC2FYze7e6s0jJkdgtLZz6I0/vzAee6+Rpv+Qp+VykevdqvBeRsigb8V4cuvGnbEdlhWhcNMRdWsnkrt/6xkFZCnz7TcdN6LCqp+zygX3EGYSTzmisT68GlgfXef2qLPgRUSzmpmZjPdfdwlcIdt5c85lp/bovofd1/OJNjxQ3d/d5+3tj3fUqnjbQJBITA1G2KsALFMvezuu7Qf4WAsBBI3Rz7KGcAv3f2fYz6OcXCCX4fwHy+QwJsOK9plZosjpoai8ORqJFLQo0qT2d80dz88dSxg7WJt+wKPk9S2b3HuE8oRKTM7CmFxJwP3IdqY6ejzTnD37aK2N7j7mmZ2EaIp+QuK4DaOskR9vgZ4yiUkMhcwpc1vaWbzoe+u2LleicQ4ZkVVsVYWbn7oiJgUv80x6HpZAEWD10a0To+iNOD1NZCUWcrM7Ldk4DCtgkrN3ccVtzbo+WKQFiKbhRU4v++22TANcsEdhJnqKgoISgHReDvCBm/m3Sp+/+utKiDy/5uZFP4KPn6jw6AwdEETE5Xk6sCNxXcdR6aHdM5V6OD0r/ZQ+N6in56MbNss7aAtbGzP8oTwzZiOY6yd4JETd+NN7x724m5mlyBqq8Lx2B6l2Tdq2V/PTrSYkAJGa2NER9WlbY9orsqynqM2M7vH3d9iZpMRA8fCwSE1RHn0X1HbTdGivgRa6KcAB7h7WQoy99w7pI7npL4TfZ2FMHzxznUVd9+i+l2vLkstXFWRjbBp3AoVKy7TAEM3rmZmZwJ7uHstntsyqdTG2gY9XwzbzGxPdz+s5XvXRaneE0Pmah4vKUCOtZnZhnT4Uke1PtirWwmu1kZRl/B/lmlmdqO7rxGt75OAmWG+qo1GewN2iOh805DSXFF/sDmiSDuiRV8zga3c/cHwfFkU8Br37EHIpm8LLOvu3zCzJYHXu3sjsZ5Rj2O8nOCxNivx+VUdy+hnKvrh1iXQTQWbF3jF3d9tYoDo0rYP710IVehn79xrUudAR7EsdqLapI5GuYjGN+dkRBM3090bq5EN6nealS1EFnbzUAwXsLNHu/tbTbzIa0eP2RFV2vWIHWLMq2ebmHWL4VTiMKP2xQJzAyqofBI5PUOpDci1V9t1aGZ/cPclW7xvf5SJW97d32SiszvT3dfp89ZXjZnZA7x6leD+z8bZrKb+J8rKTEb30e1ok7UycIu7r9XifHcAa7n7f8LzuVEWsA0m+N2IVeWhMK6lEANMI5n1YZiZHYMo8jZ09//X3n2Hu1qV6R//3gdQioIoYgOkqIOoFEGl6Q8dcURHFBURkFHBNjIK9lHHsY4FRbGOHZURHBgEK4gioICAHKRbUMDeQJr0cv/+WCuc7Jxdkuwkb05yf65rXyd5k7x59j57JytrPet5Hippbcr4aJDVMRbUZNvkUbtS0vNYVox+T+buTz6f0ynL0+swsxLDdZRSLdB7b/v5tDbA7V//7VxCb2ntEhYzdwyLZXU25/NqSom6ntmeUWpLpTTWV/o5F3CjpB1tn1rPtQOD6dI2TvYDPl9TP0TZANhKb/kCcCqlbNV/2P5NIxH27wM93n+2UmrL5dY3YFCvF6My68aoLuxGKa/YKtH3B0lzVqxYQXVV7k5j2KgnxsKc3Qtdq0NI+iql8+IF9frDgbf1+Xxi2T4K6uW+/r5dWkw/mJJWB6Vb4s3zPWaEHmP7kXXSENtXqVTTGqlpmgl+IGXpfzvKG+3plOXagQ8y5pt57Tehf6El9DqjMycvsEtY0m9tr99rXHOcaxVKW+aeu07VXKgvUSppiNJT/gX95kQtlqQ3UPItb5/ltsVW6VgLYMLynR/EPM1w2pblDqT8DZ7jWglCpVvZXKXURmqUrxeDsIiZ4LNsP7r1WrKYWadxpS47wamUQ3wdZfd8K/dzaF0VY3KoVkha6FiX53o1pWLTjAY2vazUqtQa/q3rvpyasvgsSsWJt41DCo1KI5ztgR/X156eV8oHYSpmglVKqry7cyl2keecL8+sp9723T+lduhYQr+z5vBCg9wu9P1pqG0JnBrTZvRX1J462N1CpTg6tpuuGbs+sFTS/p0DO0reVs8k/WfHdWBiKiJ02wxnvXp905rycxploNlzq+1BG8brxSBoZmONGTdRNgr140hJnwLuobILfl/GYyZ+kLrtBDd2jXqiOd2mIlbnq1RiaNXG35tlK8M9sf3B+oGslZLUTwObTwFPBJD0OOC9lFSOLSklSHtOVRyCj1AG+utK+i9KTG8ZdRDTNBN8KiX35JYBnW+keWaStgY+z7IZ0quAfXtJvF/oTdR2Xx+KNLME0W3Ar91/1Y27Uj6xbsjM+rKNDRDr5oePUXrWt/KYWnH1s/HhNW1XV6WkvPzUDdSgHTTNU2pPs+yorstf21BmBLarX1fb3mzowc5j0K8X40zSzsws9fjdhkNqhEpb3H+j5EQ/UqVRz362d2k4tGiA5qic0uK2CioqG9Lb6/H+APhvj6iOcSe1VYBQqRz1V9tvq9fHZm+DpE0pe4gEnNhE3v40DYK/BDyU0nKxVWql7446kk5rYvPIirCEXpe+97S9/4J3Xv6xx1NmDZfSlhdl++A5HzQCknYCjqbkhd3ZPMO1y94iz31XyuBjp8Weq2nqsRlO/X3ejjLrsR2lxvQFbriF7aBfL2L0JL3e9kGaoyOcO2pWa/ZGPc+zffkIwo0xM09q1w7An1qpXQN8vs4W6q3LK1M6KXY9SSXpQmBL27ep1AJ/ie0ftG4bhxQfSYfZ3mehY8M2FekQ1a/q1xLKznVYRAoAI2qrqjlaYrYtoY/Fm7KkrShVM3anvHn0+3NYz3Zf7YGHQaVu6cHAxpSZwWHkJq9OSQ9of96HUPITH8jMGfFFD7qH7GxJL/bszXCWtl3/NKUE1nWUjninAx+0fdUog53HoF8vxso8q0IAeALKh1FWbmBmm/I52b4UeKImuFFP9GSu1K5r621P6zFlYl7uaKGuUi5yf8pmvGNmfdDcjgBOkXQFZWP5D+s5H0SZZBoHnTnUK1Fqgo/UNA2CL7Y9I09V0u6LOF+3eWaL1dNObZW6su8G7m97F0mbUcqtfG7AcbUGanvWrysorZjlxfVTP13SI1q7bMfAmcB7gH/xgJZNOl44V6JU7+hM9ziK0jXuM8zcKTzuDgSOkbQ3szTDabvfBpQGCJdQ6lr/jlKGaFwM+vVirLTecCW9k1Lt5jDK7NPewP0aDG1gXOuee4G2xyvKREOM3H1mex+yfYGkDevVvjdGz0WlWs6BlJJshwOPst1TZRrb/yXpRMrf8glt711LKLnBjZH0RuBNwGp171QrCf8WykrMaOOZonSI2ZpbTFzLyZrXdijwZttbqBT2/klnLuaAnusOyifM/Wz/sh671PbGfZyrNTBcmdLG9VLKDHvTbVzv7QG2vK7nbM81u41Swum2jvsstT3yT8WDoi6a4aiMMh7GsprID6dUA/mR7XmrnQzbFL1ejG1HqcWS9PX5bm9tfNQiK+vEZOo1tWsAz7cO8BpgD8r+n4+Oc9rjYkl6j+3ZZtpHauJngiXtAjwFeICkj7TdtCZ97PydK7+spTPPbFDUfQ3LdWwfWT9tUXOChjWT+EzgucBJNZf3K9B3vdKBf6IehEEPgOs5f1032+1I+V06Fejc/fsNSS+nLIO1p9s0XtqmGy7F2OctyF5nJy6UdDVlie4ayu/Boymts0du0K8XK4Dr66z9Vyi/i3vSlgO9gtsO+C1lafhM5nhtyiA35tBVPyLRhwAAH+5JREFUalc9ti2lpOJDKateKwHX95hW9Gvgr5RJrBuA/dorlUzKikSdBLq6NQCuEybPAC4HPj7qzcgTPwgG/kDJCduVmb+41wGv6uN8TXXs+gy1hiWA7fMlHQ50DoKvl3Qv6kC9/nEO5dOk7WOBY2sO3dMpSzjrqnSCOcb2CT2c7s/Ay4AHUTaffa5zdnRSqJRI251lqTNfkHRUxwea59d/X9d2zJTc5BWepFeybAb4VpaVR/s85f+/KYN+vRh3ewEfrl+mlKrbq9GIBue+wM6Ugf1ewLeAI2xf1H6njg87yxnWxEaMvW5Tu6BUD3ouJY1tG0oqw0N6fL6D2i5PWsOadkdSfn7XSNqS8jN7D6V82yeAF40ymGlKh1iFMujfwPbPm46nV63SU2prmjFbqZM6w/hRytLyhZR802fb7qtmYR9xrk0Z4O1h+x97eNz/UgZDPwR2oZRZO2A4UTZL0s+BLVrlcyStBpzrPpqLrKgkfZBaG9j2H5uOp5OkVWzfWi+vDaw/qr+hGLxagWVPSmfCt9v+WNttz5/zgSycUxyTrcvUrrNtbyPp/FbqnmZpcLXA8+xJyd8d586Ui9bxM/oAcIft10taQnkfHGnq4zTMBLc8mdLS9S7ARvUTyDs8ZgXx53GFpE1YNsP7bMqGlhlsn6NSt/cfKMt/P2+9mY9C3d3/aXpPcN+slbcs6XPAWYOObTEGXK3hD5T6wK0aknelbA7rfM7tWb5e8pf6eL6xY3vWzUhj5LuSdqX87JcCf5F0uu2Jmg2WdCizlw9b4WtWw52D36dSBsAbsqxA/50yyI35dJPaBdygUvP8XEkHUd6blyzwmE4bAEfVCbsTgeOAswa1IXuMtKclPYFagcP2HVK/2ZT9m6ZB8NsouYYnA9g+V9JGTQbUo/0pA8tNJf2eWsOy804qnezaPUTSNZTaq38Zfph9u3OgXvOYm4xlNouu1tCWT34NcJGk79brO9Mx6Jd0GLAJcG7b85nSUjqGby3b19b8vy/ZfqukSZwJ/mbb5VUpy5R/aCiWgVKp9fxw4NuU2d8L57jfIbYP1MzOl3dagSZKojn7UAa9/0ZJm1qf0vSpa7bfB7xP0t0p3d72BT4p6afA8ZRa8n8eaNTN+L6kIykfFNYGvg8g6X6UChEjNU3pEGfY3rYjneD8UU+9L5YWqGEp6VuUDSGtT647UWayNqLMfB82ijh7VTfvtTbktNrA3gAz2lE3ZhDVGnpZdq0vfJtN4CzACqFWK3kS8EVKpZUfr4ivF72qS5Kn2t6+6VgWq1avab2mtP8dzXhNkbS17aWa2fnyTrZPGW6kEXNTKXO6C/Ak2//UdDyLVasC7UEp33ak7d/X41sB69r+zijjmaaZ4Isk7QWsJOnBwCspG3H6IunewItZfrl6oMuIkp5n+3/UUctSc9ewXBl4aOsTo0rd4C8Bj6G0chzLQbDtlZqOYQGLrtbQ47LrhZSNPWOXLzsl3gF8hzIg/LFKN7FLGo5pFB4MrNt0EINgu6vlaNutTU/3Ar5l++b57h/RSaWL3NtYPl2u643Mkja1/bO6r6fTSW64a+qg1Imdr8xyvLNC0khM0yD4FcCbKQOYIyhvcO9cxPm+RtnE9T2G28xg9fpvt7tF1+9YMvlLPfY3SSPLDZ5Ai67WoLm7C91ZC7ltSfbuwMWSzmLmoDtLsyPg0ijjqLbrl9Lj8uaKQMs6x7XatP4JeEOjQTXnacCHJP2A0vjn+EmtUBMD9zlKGsRS+h8PvBp4CaVDaSdT8mdjwKYmHWLQZqvMMKTneZ/tN0ja3R0drOa4/yeoCfb10LMo3bheB3zTi+vmFougmU0yllPrB8+6JNt2nyzNjkDdL/AKll/pyYeQCVY3Je1CWa7dEfiu7ZGWbIoVj6QzbT9mQOdatVU5aL5jMRgTPwhWl12D+jjvuyjlnb7dV2DdP88FwObAUnfZrUrSsygv4FDKUB2d3NLFk/RwYDPKBiJgMNUaJO0I7Gl7/47j9wEeVa+eNeYbGyeKpPMoszsXAHe0jk/ih5BaAu7BzPy9/kFzETWrDoSfDLwQeJztdRoOKcacpPdSGmR8lZkrd+f0ca6p6FY5LqYhHaKrrkF9OAB4k6RbWFbZYBgbuI4HrgLuptJnu2W5DWOSVqLUMdwUOHrAcUw1ldaqO1EGwd+mzBadSp/VGuomgL0oNZUvY1njjNbtz6HUND2Z8n/9UUmvs/1//X0H0aObbM/bRGES1OoXBwDrUSqRbAv8iClcelXpFrgH5e/8ZOCzwHMaDClWHK1Z4G3ajvWUwiDpvsADgNXq+0NrrLImy9IiV3jzpAUCMOrNx9MwE7wSy7oGbc4cXYPGnaSv2X56N/cDXmH7NyMIa2rUP9wtgJ/Y3qLO0v6P7Z17OMdDKL+HewJXUPIOX2t7uTSJOhO5c2v2t27E/J7tLRb/3cRC6ibaBwMnsMiZnXFWf68fBZxhe0tJmwLvtt1ZanHiSTqC8jd5XDbHxajV6kEvoAyk2zvTXgd8wfZXZ3vciqYtLbC18tnarL83gO1/H2k8kz4Ibqd5ugb1eb5dgcfVqyfb/uZ891/kc60B3FgLSj8E2JTyYn1rx/1+AGxFqTvbKg+UXMZFknSW7UdLWgo8nvLC9NM6697tOe6gbKbcz/Yv67FLZ9tBLOkC1+Yh9foS4Lz2YzE8kt5Dqf35K5alQ9j9NUcZW1rWifJc4DG2b5Z0ke2HNR3bqNXX2Jts3z7fa2xEJ0lrAW9l2XjgFEpJ0mv6ONezbE/8Sq5m6ajXRNrHNKRDdNU1qI9zvpcyg/LleugASTvYfuNizjuPHwCPrfl7JwA/pizd7d1xv7cM6fmn3dmS7kFplrEU+Dtl2bgXz6T0lz9J0vGUMjFzpeccL+k7lDQe6uOO6znq6NfuwMa2R168fcR+V3+vj6V0ybsK+HXDMTWl29fYiE6fp5S1bKXP7AMcSnnN74ntoyU9FXgYM/P03zGAOMeJ6pjptHple3rvsrf4ICZ9JlgzuwZ9xXN0DerjvOcDW9q+o15fibJUPpR8ltYnJEmvAFazfdBcFSqyoWq4JG0IrGm7rw5idcbp6ZQPZU+g5BUfY/uEjvs9E9ihXv2h7WP7jTl6I+lY4CXT9LdTK5OsxZTOfvbyGhvRbrbfk35/dyR9kpID/HhKXvqzKe/j+w0k2DEhaWvKh4e16qGrgX1HnXI2DTPBz6OkBRwAvFLL2vEOohPZPYBWs4S15rvjAEjSdpRZidYfw3INJrKhangkbU5bySxJD+onT8v29cDhwOF11ml3Sm3WE9rqtsLMWeKXSLqJsjz/Ztsn9v2NRDfuAfxM0o+ZkjrNrcoXkn5DKbM4bbp6jY2YxY2SdrR9KtzZPOPGPs+1fa0Zf77tt0s6mAlcBaxNaraoqST0kzoyCBM/CHaXXYP68B7gJ5JOogxWHgcMKxUCyiD+jZQZw4tUOlidNMv93gw8qnNDFZBB8CJI+jxlY+VFtOWI0lHVoVe2rwI+Xb+wPWdTlLra8HBKCs7DF/O8saC3Nh1AgwZVQWdFcyDdvcZGdPpX4It1QCfK5Njz53/InFqD5xsk3R+4ktJieKLUFet3A/e3vYtKe+jtbH9ulHFM/CB4WGwfIelklqUdvMH2n4b4lPdpn4WyfamkH85yvyUdS7hX0kCezQTa1vZmTQZg+3bgPEkfbTKOSVc/bHyql02PE2ayc+TmUGfCT2m7finwyuYiihWF7XMps5qtleXrKfs4+kmZ+2bN038/cA7l7/GzAwl0vHyBkjf95nr9F5TqLCMdBE98TvCwSDrR9j8udGyAz9dVAW1J76fMWLY2VO0BXGD79cOIa1pI+hxwsO2Lm44lhm/SSw1KevVcN1HSbe45yniaJOkQ2wdqWcvyGSY5BSYWpw5696fU9/0aZdV1f+A1wPndlDVd4Px3BVZtKlVgGCStbPu2tso0d1aJaCIHPzPBPZK0KiVpfZ2az9le0PoBQ3i+XYCnAA+Q1F68f01gub72tl9XN1S1OsZ92vaiKmEEUDav/UjSnyg5oq2c8pEW9o6RWRu4SNKklhqcM+0G+PDIohgPrTqlH2g0ilgRHUZpZvUj4MWUWU0Bu9XZ4b7USgkbsmz/yUC6k46Js4BHAtdLuhf1g6ekbYGRD/YzCO7dSym5Y/enLFW0XAssqu7wHP5AKZy9K6U0V8t1wKvmeMxS4Frb35O0uqS7275uCLFNk89Ryt7MaKMbE2uiSw3afnvTMYyLukFnIltix9Bt3KrdLumzwB+BDWzf1O8JJR0GbELp4Hh7PWz67E46hloTh68Gvg5sIuk04N6UShijDSbpEP2R9ArbI8nNrDmKh9neq4v7vhh4CXBP25tIejDwyWGlaUwLST+yvV3TcUQzJO0I7Gl7/wXvHCskSZcxezrEcs1sImD5lMRBNHuQ9FNgM0/o4EzS74AP1qtLgLtSBsY3A7fb/uBcjx2GzAT37/c17aDdNZT824HWFq0djNaXdJcuivfvDzwaOLM+9hJJ6w4ynin1E0mHA99gZsmsiWhlGcuTtBWwF6WE3WXAxHdxmnLbtF1elfL/PjW50dGXLSRdWy8LWK1eX0wJ1guB+1JmlSfRSsDdWL4KzeoNxJJB8CLsB2zHshI6O1HSEDaS9A7bh831wD5dBpwm6evMzFHs/NR0s+1bWvWQJa3MlO72HrDVKIPfJ7UdW3SJtBgvKu1y96xfV1B2K8v24xsNbEgkbWT7soWOTQPbV3YcOkSlTfp/NhFPjD/bw6gjvQ5wcd2PMIk1yv84Tt3vMgju3yrAQ23/Ge6sefcl4DGU9puDHgT/qn4tYf5NLadIehPlE+nOwMsps5fRp5qOcqXt1zYdSwzdz4AfAv9s+5cAkubKvZ8ER1M2qbT7P2DrBmJplKT2n8MSysxw3iNj1N7WdABDNlZ1yPMH3r/1WgPg6i/A+rb/JmngLUd72Mjy75RZ6gsom/i+zWTWGByZmo6yw8L3jAnwTEp9z5MkHQ98hTF70R4ESZsCDwPW6kjrWpOSCjCNDm67fBtwOfCcZkKJaTUFGzTHan9SNsb1SdInKK1Fj6qHngX8Dngd8M1BL5/Wzm+vp7xx3fkmZfsJg3yemJ2k/6aUwDuKmekoSYeYQJLWAJ5OSYt4AmWV5xjbJzQa2IBIejrwDErVma+33XQd8BXbpzcSWMSUqx9K3wesS/kAvpj84lhABsF9Ukm6fRbQmiE8DTh6WDs6JZ1AyU98LfAySkvGv9p+Q7396ZTZ6Y/X62dSSo5A6WZ31PJnjW5JOnSWw7a978iDiZGq9cB3B/aYpCorNc3nDbbf3XQs46C2vH0r8Lh66BTgHZPUqCDGn6RfAk+z/dOmY5kGGQSvICQttb21pPNbDRpaHVfq5dOA59r+bb1+LmXZYQ3g0El6846IwZB0lu1HNx3HOJB0NGVn/hfroX2ALWx3VgGKGBpJp9lO+t2IJCe4Tw0sWbTyjP8o6amUJhrt5Xvu0hoAV6fW3c5X1qXdWARJ6wEfZdnM/w+BA2z/rrmoIhbtNEkfo6wytaf5nDP3QybWJraf1Xb97XUyIWKUzpb0v8CxpBzn0GUQ3L+DGO2Sxbvqct1rKIOxNZnZMW7t9jvb/re2q/cmFutQ4HDKsjjA8+qxnRuLKGLxtqz/tpcsMiUPetrcKGlH26cC1M2wNzYcU0yfNYEbSDnOkUg6RJ/GbclC0peBk21/puP4S4GdbO/ZTGSTQdK5trdc6FhMhrp6cqPtO2rt4E2B42wPvPJLjAdJW1A2QK5VD10FPN/2+c1FFRHDlEFwnyR9mNLVZahLFpI+yjzNLmy/st5v3bZYWkuZW1NaEj6jo5xb9EjSiZSZ3yPqoT2BFybXejLVJgmPpaywnAb8GLjF9t6NBjZg2Qy2PElrAti+VtKBtg9pOqaYfJJeb/ugud7zW+/1MVhJh+jfqJYszm67/HbKG9Zyaqvm7SU9gVJGDeBbtr8/4Him1b6UNJQPUf6fTwde2GhEMUyyfYOk/YBP1DenScwP/TxlM1irHu4+lA97U7sZzPa1bVdfDWQQHKPQSq08e957xUBlJngFIukntrdqOo6ISSfpJ5Ruix8C9rN9kaQLbD+i4dAGKmk+85P0W9vrNx1HRAxHZoJ71PCSRT6xjJik/5znZtt+58iCiVE6EHgjpUHGRZI2Bk5qOKZhyGaw+eU1N0ZK0neB3W1fXa+vTWlg80/NRjaZMgjuXZYspsv1sxxbg9Ka+l5ABsETqLYuPaXt+qXAJObkvQz4Us0NhroZrMF4Rk7Sdcw+2BWw2ojDibh3awAMYPuquucnhiDpEGOu4wV6dUoeMqSV4shJujtwAGUAfCRwcM3Fjgkh6RDbB0r6BrOv9OzaQFgDJ2kD279pu37nZrDmooqIuil3t9bfp6QHUlakHtlsZJMpM8F9qmWTXgtsSNvP0fZA62vavvsgzxe9k3RPygaZvSndpB5p+6pmo4ohOaz++4FGoxi+Y4FHQumU1tEkIiKa82bgVEmnUCa7Hgu8pNmQJldmgvsk6Tzgk8BS4PbWcdtLGwsqBk7S+yk75T8NfNz23xsOKWLR2jfZZsNtxHiRtA6wbb16hu0rmoxnkmUQ3CdJS21v3XQcMVyS7qDUXr6NmcvjSUeZYJIuY/Z0iI0bCGfgJJ3TWl5tvxwRzZP0AOCBzFxl/kFzEU2upEP0qC6NA3xD0suBY5jZLONvjQQWQ2F7SdMxRCO2abu8KqVd9j3nuO+KaAtJ11I3f9XLkA93EY2S9D5gD+Ai4I562EAGwUOQmeAetc0QaZabPSkzRRExU1Z/ImLYJP0c2Nz2zQveORYtM8E9sr1R0zFExHBJak8PWEKZGc7rZUQM26XAKrStMMfw5EW9T5J2B463fZ2k/6DstH6n7Z80HFpELN7BbZdvAy5nWWvhiIhhuQE4V9KJzEy1nMQ65Y1LOkSfJJ1ve3NJOwLvAt4P/KftxzQcWkRERKyAJM3arMb2F0cdyzTIILhPrbJCkt4DXGD78JQaipgMtYPaW4HH1UOnAO+wfU1zUUVExCBlENwnSd8Efg/sTEmFuBE4y/YWjQYWEYsm6WjgQkpzFIB9gC1sP7O5qCJiUkk60vZzJF3A7OUZN28grImXQXCfJK0OPJkyC3yJpPsBj7B9QsOhRcQiSTrX9pYLHYuIGARJ97P9x9omeTm2fz3qmKZBaqD2yfYNtr8KXCNpA8puzp81HFZEDMaNNd8fAEk7UFZ7IiKGYQ1JO9j+dfsXsB4pYjA0GQT3SdKuki4BLqPkC14GHNdsVBExIC8DPi7pckmXAx8DXtpsSBExwQ4Brp3l+LX1thiCDIL7905Kb+9f1NrBTwTOaDakiBgE2+fV/P7NKYXrtwKe0HBYETG57mP7gs6D9diGow9nOmQQ3L9bbV8JLJG0xPZJzGy1GhErONvX2m7Nzry60WAiYpLdY57bVhtZFFMmg+D+XS3pbpR+3l+W9GHg+oZjiojhma1VekTEIJwt6cWdByW9CFjaQDxTIdUheiRpbdtXSVqDslFmCbA3sBbw5To7HBETRtJvbG/QdBwRMXkk3Qc4BriFZYPebYC7ALvZ/lNTsU2yDIJ7JOkvwBXAacDpwGm2f9FsVBExCJKuY5YanZRZ4NVsZ5d2RAyNpMcDD69XL7L9/SbjmXQZBPdB0kOA7du+7k3ZFHea7YOajC0iIiIiFpZB8CJJ2gR4CnAA8ADbSWCPiIiIGHMZBPdIUmv2dztgfeBSyizwGcA5tm9pMLyIiIiI6EIGwT2SdAdwDvAh4BjbNzQcUkRERET0KIPgHkm6L8tygR9NaWd4DvAj4Ee2L20wvIiIiIjoQgbBiyRpdWBf4EBgI9srNRxSRERERCwg5X56JGktSj5wazZ4K+AS4BuUsmkRERERMeYyE9wjSX+lpj5QBr0/tn1js1FFRERERC8yE9y7DwHH2f5J04FERERERH8yCO7dr4ADJG0BnAccB5xg+6pmw4qIiIiIbiUdYhEkbQU8GXgSsBLwPeB422c1GlhEREREzCuD4AGRtCawM/BPtl/SdDwRERERMbclTQewopK0uqS3SPp0PXQf4OYMgCMiIiLGXwbB/TsUuJlSJg3g98C7mgsnIiIiIrqVQXD/NrF9EHArQG2frGZDioiIiIhuZBDcv1skrQYYQNImlJnhiIiIiBhzKZHWv7cCxwPrS/oysAPwgkYjioiIiIiupDpEHyQtAZ4NnAhsS0mDOMP2FY0GFhERERFdySC4T5LOtr1N03FERERERO8yCO6TpPcCVwD/C1zfOm77b40FFRERERFdySC4T5Ium+WwbW888mAiIiIioicZBEdERETE1El1iD5JWgX4V+Bx9dDJwKds39pYUBERERHRlcwE90nSZ4FVgC/WQ/sAt9t+UXNRRUREREQ3Mgjuk6TzbG+x0LGIiIiIGD/pGNe/22uXOAAkbQzc3mA8EREREdGl5AT373XASZIupTTLeCDwwmZDioiIiIhuJB1iESTdFfiHevXntm9uMp6IiIiI6E4GwX2StBLwVGBD2mbUbX+wqZgiIiIiojtJh+jfN4CbgAuAOxqOJSIiIiJ6kEFw/9azvXnTQURERERE71Idon/HSXpS00FERERERO8yE9y/M4BjJC0BbqVUiLDtNZsNKyIiIiIWko1xfZJ0GfB04ALnhxgRERGxQkk6RP9+C1yYAXBERETEiifpEP27FDhZ0nHAnfWBUyItIiIiYvxlENy/y+rXXepXRERERKwgkhMcEREREVMnM8E9knSI7QMlfQNY7hOE7V0bCCsiIiIiepBBcO8Oq/9+oNEoIiIiIqJvGQT3yPbSenFL2x9uv03SAcApo48qIiIiInqREmn9e/4sx14w6iAiIiIioneZCe6RpD2BvYCNJH297aa7A39rJqqIiIiI6EUGwb07HfgjsA5wcNvx64DzG4koIiIiInqSEmkRERERMXUyE9wjSdcxS2k0QIBtrznikCIiIiKiR5kJjoiIiIipk5ngRZK0LrBq67rt3zQYTkRERER0ISXS+iRpV0mXAJdRagNfDhzXaFARERER0ZUMgvv3TmBb4Be2NwL+ETij2ZAiIiIiohsZBPfvVttXAkskLbF9ErBN00FFRERExMKSE9y/qyXdDfgB8GVJfwGubzimiIiIiOhCqkP0SdIawI2U2fS9gbWAL9fZ4YiIiIgYYxkED4CkdYArnR9mRERExAohOcE9krStpJMlfVXSVpIuBC4E/izpyU3HFxERERELy0xwjySdDbyJkv7waWAX22dI2hQ4wvZWjQYYEREREQvKTHDvVrZ9gu2jgD/ZPgPA9s8ajisiIiIiupRBcO/uaLt8Y8dtmVaPiIiIWAEkHaJHkm6nlEITsBpwQ+smYFXbqzQVW0RERER0J4PgiIiIiJg6SYeIiIiIiKmTQXBERERETJ0MgiMiIiJi6mQQHBFTR9J6kr4m6RJJv5L0YUl3meV+95f0f12c79uS7tHF/VaW9FdJ7+04/llJm/X2XXRH0k6Stm+7/jZJN0hat+3Y34fx3BER4yyD4IiYKpIEfBU41vaDgYcAdwP+q+N+K9v+g+1nL3RO20+xfXUXT78z8Atg9xpH6/Evsn3xLLGu1MU55yRpZWAnYPuOm64AXrOYc0dErOgyCI6IafME4CbbhwLYvh14FbCvpJdL+rqk7wMnStqwtkZH0uqSjpR0saRjJJ0paZt62+WS1qn3/6mkz0i6SNIJklZre+49gQ8DvwG2ax2srdhb5/q7pIMlnQdsV899kKQLJJ0l6UH1fhtK+r6k8yWdKGmDevwLkj4p6UzgSOBlwKsknSvpsfUpPw/sIemenT8cScdKWlrjf0nb8b9Len89/j1Jj65xXypp13qflep9flzjeuli/7MiIoYlg+CImDYPA5a2H7B9LWVgujLwSODZtv9fx+NeDlxlezPgLcDWc5z/wcDHbT8MuBp4FoCkVYEnAt8AjqAMiGezBnCm7S1sn1qPXWP7EcDHgEPqsY8CX7S9OfBl4CNt51gP2N72M4FPAh+yvaXtH9bb/04ZCB8wy/Pva3trYBvglZLu1RbX9+v3dR3wLsrM9m7AO+p99quxPgp4FPBiSRvN8X1GRDQqg+CIiJm+a/tvsxzfEfgKgO0LgfPnePxlts+tl5cCG9bL/wycZPtG4GjgGXOkO9xeb293RNu/rRnk7YDD6+XDanwtR9UZ7vl8BHi+pLt3HH9lnYU+A1ifMqgHuAU4vl6+ADjF9q31cut7fBLwL5LOBc4E7tX2+IiIsbJy0wFERIzYxcCMPF9JawIbALdROkIuxs1tl2+ndJaEMvO7o6TL6/V7UVIzvtvx+JtmGcB6jstzWfB7sH21pMOB/VvHJO1Ema3ezvYNkk4GVq033+pl3ZXuoH6ftu+oucdQOme+wvZ3uogxIqJRmQmOiGlzIrC6pH+BOzefHQx8gWVt0GdzGvCc+pjNgEd0+4R1kP1YYAPbG9rekDL4nCslotMebf/+qF4+HXhuvbw38MPOB1XXAZ2zvS0fBF7KsgmRtSgpHzdI2hTYtsv4Wr4D/KukVQAkPUTSGj2eIyJiJDIIjoipUmczd6NUaLiEUq3hJuBNCzz0E8C9JV1MyYe9CLimy6fdjZJP2z5L/DXgaZLu2sXj15Z0PiWH91X12CuAF9bj+zB7fi+UHOTdOjbGAWD7CuAYoBXD8cDKkn4KvJeSEtGLz1Jm2s+pGwo/RVYcI2JMadnqVkREzKXOGK9i+yZJmwDfA/7B9i1Dft7LgW3qgDUiIgYkn9AjIrqzOnBSXeoX8PJhD4AjImJ4MhMcEREREVMnOcERERERMXUyCI6IiIiIqZNBcERERERMnQyCIyIiImLqZBAcEREREVMng+CIiIiImDr/Hx48n5yrMpQkAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "departure_airport_group = df_flights.groupby(df_flights.OriginAirportName)\n", + "\n", + "mean_departure_delays = pd.DataFrame(departure_airport_group['DepDelay'].mean()).sort_values('DepDelay', ascending=False)\n", + "mean_departure_delays.plot(kind = \"bar\", figsize=(12,12))\n", + "mean_departure_delays" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Do *late* departures tend to result in longer arrival delays than on-time departures?" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAt0AAAL6CAYAAADqnup8AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzdf7jmZV0v+vdnGJwhNcm0UfnheI5Wg4hWk8cf7L3XhDKKJda2trNL0bik0ZxTsk8BTqXWnmDybN2FwWxoDMxCjXIzigloszIkM+koCpNFioAKaoQ5yowC9/njeYYW4/x61lr3rGeteb2ua10+35/353nW45f3uuf+3t9qrQUAAOhn0VwXAAAAC53QDQAAnQndAADQmdANAACdCd0AANCZ0A0AAJ0J3cAhrapaVT1xruuYS1U1UVW372P7IfMZVdUbquodc10HsPAI3cBYqKpbquqeqtpeVf9aVVdW1TFzXdcuVfXyqrp2ruuYz4af4X3D3/H2qvpcVf1hVX3/LJ1/+fAPhF3nv7Oq3ldVz53BOS+qqs9U1f1V9fLdtu3+frZX1cRM3wewMAndwDj5idbaw5I8NsmdSc6f43q6qarFc13DHPmb4e/4EUmek+SeJNdX1fGz2MaRwzaemuSaJO/ZPTCP4JNJXp3k7/ey/W9aaw+b8jM5zXaABU7oBsZOa21HksuTHLdrXVU9oqreXlVfqarPV9WvVdWiqnpkVd1eVT8x3O9hVXVzVb1suHxJVW2qqmuq6utV9VdV9fg9tbuPNlYk2ZTkmcPezLv3cvwTqurDw3Y+WFW/v2uowpRe2NOr6tYkfzk8968N2/rysO1HDPf/jiEfw38NeM7w9Ruq6vKqetewvb+vqqdO2fdxVfVnw/fyuar6v6dsO2L4ufxrVd2U5EcP4NdySlV9tqq+WlVvGtb+kKq6q6qeMuXc31dV36yqR+/rZK21+1pr/9xae3WSv0ryhinneEZVXVdVd1fVJ6f2HlfVZFWdW1Ufq6p/q6orquqRe2njjtba7w7PvbGqFu3vs9nDOX6/tfahJDsO4DMC2CuhGxg7VfVdSf5Lko9OWX1+Br2j/0eS/5TkZUle0Vq7K8nPJ7m4qr4vyVuSfKK19vYpx/5skt9K8qgkn0jyx3tpem9tbEuyNv/eq3nkXo7/kyQfS/K9GQS9l+5hn/+UZEWS1UlePvxZNWzzYUneupdz78mpSf40ySOHbf/vqjp8GC7fm0Ev7VFJTkryy1W1enjc65P8n8Of1UlOO4C2fjLJyiQ/PGz351tr30ryziQ/N2W/NUk+1Fr7ygjv48+T/IckqaqjklyZ5L8P39f/k+TPdgvxL8vgd/7YJPcm+b0DOP/3JfmBA/hsRvVDwz9E/rGqfv0Q/hcMYD+EbmCc/O9hL/LXkjw3yZuSpKoOS/KSJOe01r7eWrslyf/IMNS21q7OIHx+KMkpSX5ht/Ne2Vr7cGttZ5L1GfRYP2i8+P7a2J+qOjaDHuPfaK19q7V2bZIte9j1Da21b7TW7sngj4E3t9Y+21rbnuScJC8ZIbhd31q7vLX27SRvTrI0yTOGdTy6tfabw1o+m+Ti4ftLkp9JsqG1dldr7bbsP7Qmycbh/rcm+Z8ZhOskuTTJmqqq4fJLk/zRAda/yxczCNjJIMC/v7X2/tba/a21a5J8PIPf6y5/1Fr7dGvtG0l+PcnPDH9/+zp/hm3s77MZxYeTHJ9BoP/PGXwmvzKN8wCHAKEbGCcvGvYiL03ymiR/VVWPyaCH+vAkn5+y7+cz6Knc5aIMAtAlrbV/2e28t+16MQy3dyV53G77HEgb+/K4JHe11r65p3b3su5xe2hvcZJlB9jm1Pd1f5Lbh+d8fJLHDYdn3D38Q+Z1U877uN3qmFrDftsa7v+4Ybt/m+SbSSaq6geTPDF7/mNjX47K4HeSYe0/vVvtJ2bQq723Wg7P4Pe3r/Nn2Mb+PpsDNvxj6XPDPw4+leQ3k7x41PMAhwahGxg7w/G+f57kvgwC11eTfDuDwLTLsUm+kDzQS31RkrcneXV95/R2D/RqV9XDMujx/OJu++yzjSRtP2V/Kckjh0NjvqPdqW9vyusv7qG9ezO4ifQbSR441/A97j5Oeur7WpTk6OE5b0vyudbakVN+Ht5a29Vb/KXdajt2P+9t9/dybB78+V2aQQ/1S5NcPhyTP4qfTPLXw9e3ZdCTPbX2h7bWzttHLd/O4Pe3r/N/Oclnsv/PZiZaktrvXsAhSegGxk4NnJrke5Jsa63dl+TdSTZU1cOHN0KemWTXfMqvyyDw/HwGQ1Levttwg1Oq6sSqekgGY7s/OhxW8YADaOPOJEcPz/EdWmufz2AYxBuGNxg+M8lP7OetXpbktcMbMB+W5LeTvKu1dm+Sf0yytKpeUFWHJ/m1JEt2O/5HquqnhsNRfjnJzgzGwX8syder6qzhTZOHVdXxVbXrhsl3Jzmnqr6nqo5Osm4/dSbJrwz3PybJLyV515Rt78gg2P5cBn/47NewpidU1flJJpK8ccq5fqKqVg/3WTq8qfToKYf/XFUdN/wD5zczCPr37aGNZVX1mgzGsJ8z/NeA/X02u5/jIVW1NIMwffiwnl03ZD6/qpYNX/9gBkNdrjiQ9w8ceoRuYJy8t6q2J/m3JBuSnNZau3G4bV0Gvb+fTXJtBjcOvq2qfiSDcPyyYfDamEEAP3vKef8kg+B1V5IfyYNv/Jtqj20Mt/1lkhuT3FFVe+tV/dkkz0zyLxncCPiuDILw3rwtg/HPH07yuQxmyFiXJK21r2UwVd0fZNDb/o0Mho9MdUUGN5z+awa9zD/VWvv28HP48SRPG573q8PzPGJ43BszGJbxuSRX58DGYF+R5PoMbkS9MsnmXRuGf8D8fQaf+1/v8eh/98wpv+PJJN+d5EeHwzN2nevUDP6Q+koGPdO/kgf/9+qPklyS5I4MhiLtPvvI3VX1jSSfymAs+E+31t42PP/+PpvdXZ3BtIbPyuBfU+5J8h+H205KcsOwrfdncMPmb+/n/QOHqGptf/9iCjB/VdUlSW5vrf3aHLT9riT/0Fp7fYdzvyHJE1tre/sD4qCqqrcl+WLvz7mqJpO8o7X2Bz3bAZhtpjYCmCXDIQp3ZdCDenIGPbbn7fOgBaCqlif5qSQ/NLeVAIwvw0sAZs9jMhgysT2Dafhe1Vr7/+a0os6q6reSfDrJm1prn5vregDGleElAADQmZ5uAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AbgAVU1UVW3z3UdAAuN0A0wZqpqsqr+taqWTOPYW6rqnqr6elXdXVXXVdXaqnK9B5hDLsIAY6Sqlif5D0lakhfuY7/DdltePGXxJ1prD0/y+CTnJTkryebZrhWAAyd0A4yXlyX5aJJLkpy2a2VVXVJVF1bV+6vqG0lWDXu1z6qqG5J8Y7fgndba11prW5L8lySnVdXxw3Mtqar/t6purao7q2pTVR2xp2Kq6uyq+udhz/lNVfWTw/UPqaq7quopU/b9vqr6ZlU9enY/EoD5T+gGGC8vS/LHw5/VVbVsyrb/mmRDkocnuXa4bk2SFyQ5srV2755O2Fr7WJLbM+hBTwa939+f5GlJnpjkqCS/sZd6/nl43COSvDHJO6rqsa21byV5Z5Kfm7LvmiQfaq195YDfLcAhQugGGBNVdWIGQ0Le3Vq7PoPA+1+n7HJFa+0jrbX7W2s7hut+r7V2W2vtnv2c/otJHllVleSMJK9trd3VWvt6kt9O8pI9HdRa+9PW2heHbb4ryT8lefpw86VJ1gzPmSQvTfJHo71rgEOD0A0wPk5LcnVr7avD5T/JlCEmSW7bwzF7WrcnRyW5K8mjk3xXkuuHN1reneQDw/XfoapeVlWfmLLv8UkelSSttb9N8s0kE1X1gxn0mm85wHoADimL978LAL0Nx1T/TJLDquqO4eolSY6sqqcOl9seDt3Tut3P/aMZhO5rk3w1yT1Jntxa+8J+jnt8kouTnJTkb1pr91XVJ5LUlN0uzWCIyR1JLp/SAw/AFEI3wHh4UZL7kjwlybemrH93BuO8R1ZV353kPyb53STvaK19arj+4iRvqarXtNa+XFVHJTm+tXbVbqd4aAah/ivD416RQU/3VO9I8skkX89geAkAe2B4CcB4OC3JH7bWbm2t3bHrJ8lbk/xsRuskeW9VfT2DoSfrk7w5ySumbD8ryc1JPlpV/5bkg0l+YPeTtNZuSvI/kvxNkjsz+IPgI7vtc1uSv88gnP/1CDUCHFKqtf3+yyQA7FVVvS3JF1trvzbXtQCMK8NLAJi24cN8firJD81tJQDjzfASAKalqn4ryaeTvKm19rm5rgdgnBleAgAAnenpBgCAzoRuAADobNZupKyqw5J8PMkXWms/XlVPSPLOJN+b5PokL22tfWtf53jUox7Vli9fPlslQXff+MY38tCHPnSuywBYsFxnmU+uv/76r7bW9viE39mcveSXkmxL8t3D5Y1J3tJae2dVbUpyepIL93WC5cuX5+Mf//gslgR9TU5OZmJiYq7LAFiwXGeZT6rq83vbNivDS6rq6CQvSPIHw+VK8mNJLh/ucmkGT1sDAIBDzmyN6f6fSX41yf3D5e9Ncndr7d7h8u1JjpqltgAAYF6Z8fCSqvrxJF9urV1fVRPTOP6MJGckybJlyzI5OTnTkuCg2b59u+8sQEeusywUszGm+9lJXlhVpyRZmsGY7t9NcmRVLR72dh+d5At7Ori1dlGSi5Jk5cqVzbgt5hNjDQH6cp1loZjx8JLW2jmttaNba8uTvCTJX7bWfjbJ1iQvHu52WpIrZtoWAADMRz3n6T4ryZlVdXMGY7w3d2wLAADG1mxOGZjW2mSSyeHrzyZ5+myeHwAA5iNPpAQAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOFs91ATAfVdV3rGutzUElAAuT6ywLjZ5uGNGe/kOwr/UAjGbq9fRXf/VX97ge5huhG6aptZatW7fqeQHopLWW5z//+a6zLAhCNwAwdi655JJ9LsN8I3QDAGPn5S9/+T6XYb4RumGaqiqrVq0yxhCgk6rKX/zFX7jOsiAI3TCivY0tNOYQYHZMvZ7+zu/8zh7Xw3wjdMM0tNYedCOl/xAAzC7XWRYaoRsAADrzcByYBg9tAOhr0aJFD7quVlXuv//+OawIZkZPN4zIw3EA+toVuJcuXZq3vvWtWbp0aVprWbRIbGH+8u2FafJwHIA+dgXue+65J09+8pNzzz33PBC8Yb4SugGAsTM5ObnPZZhvhG4AYOxMTEzscxnmG6EbpsnDcQD6qKrs2LEjRxxxRG688cYcccQR2bFjh+st85rZS2BErTWzlwB0dP/992fRokXZsWNHXvOa1yQxewnzn55umAYPbQDo6/7773/QdVbgZr7T0w3ToKcbABiFnm4YkXm6AYBRCd0wTebpBgAOlOElAMBBcTD/RVCHCONGTzcAcFDsuvF8lJ/Hn/W+aR0H40ZPN0yTMdwAwIHS0w0j2lsPip4VAGBvhG6YBvN0AwCjELoBAKAzY7phGjwcBwAYhZ5uGJGH4wAAoxK6YZo8HAcAOFBCNwAAdCZ0AwBAZ26khGkyhhsAOFB6umFEHo4DAIxK6IZp8HAcAGAUhpfANJinGwAYhZ5uGJF5ugGAUQndME3m6QYADpTQDQAAnQndAADQmRspYZqM4QYADpSebhiReboBgFEJ3TAN5ukGAEYhdAMAQGfGdMM0eDgOADAKPd0wIg/HAQBGJXTDNHk4DgBwoIRuAADoTOgGAIDO3EgJ02QMNwBwoPR0w4g8HAcAGJXQDdPg4TgAwCgML4FpME83ADAKPd0wIvN0AwCjErphmszTDQAcKKEbAAA6E7oBAKAzN1LCNBnDDQAcKD3dMCLzdAMAoxK6YRrM0w0AjELoBgCAzmY8pruqlib5cJIlw/Nd3lp7fVU9Ick7k3xvkuuTvLS19q2ZtgfjwMNxAIBRzEZP984kP9Zae2qSpyV5XlU9I8nGJG9prT0xyb8mOX0W2oI55+E4AMCoZhy628D24eLhw5+W5MeSXD5cf2mSF820LRgnHo4DAByoWZkysKoOy2AIyROT/H6Sf05yd2vt3uEutyc5ai/HnpHkjCRZtmxZJicnZ6Mk6G5ycjLbt29/0HfW9xdg9rm2shDUbPbSVdWRSd6T5NeTXDIcWpKqOibJX7TWjt/X8StXrmwf//jHZ60e6GHXMJLWWiYnJzMxMfGgdQDMnuVnX5lbznvBXJcBB6Sqrm+trdzTtll9OE5r7e6q2prkmUmOrKrFw97uo5N8YTbbgrlmDDcAcKBmPKa7qh497OFOVR2R5LlJtiXZmuTFw91OS3LFTNuCceDhOADAqGZj9pLHJtlaVTck+bsk17TW3pfkrCRnVtXNGUwbuHkW2oKx4OE4AMAoZjy8pLV2Q5If2sP6zyZ5+kzPDwAA892sjumGQ4WH4wAAo/AYeBiRh+MAAKMSumGaPBwHADhQQjcAAHQmdAMAQGdupIRpMoYbADhQerphRB6OAwCMSuiGafBwHABgFIaXwDSYpxsAGIWebhiReboBgFEJ3TBN5ukGAA6U0A0AAJ0J3QAA0JkbKWGajOEGAA6Unm4YkXm6AYBRCd0wDebpBgBGIXQDAEBnxnTDNHg4DgAwCj3dMCIPxwEARiV0wzR5OA4AcKCEbgAA6EzoBgCAztxICdNkDDcAcKD0dMOIPBwHABiV0A3T4OE4AMAoDC+BaTBPNwAwCj3dMCLzdAMAoxK6YZrM0w0AHCihGwAAOhO6AQCgMzdSwjQZww0AHCg93TAi83QDAKMSumEazNMNAIxC6AYAgM6M6YZp8HAcAGAUerphRB6OAwCMSuiGafJwHADgQAndAADQmdANAACduZESpskYbgDgQOnphhF5OA4AMCqhG6bBw3EAgFEYXgLTYJ5uAGAUerphRObpBgBGJXTDNJmnGwA4UEI3AAB0JnQDAEBnbqSEaTKGGwA4UHq6YUTm6QYARiV0wzSYpxsAGIXQDQAAnRnTDdPg4TgAwCj0dMOIPBwHABiV0A3T5OE4AMCBEroBAKAzoRsAADpzIyVMkzHcAMCB0tMNI/JwHABgVEI3TIOH4wAAoxC6AQCgM6EbAAA6E7oBAKAzs5fA0MGcjcQYcAA4tOjphqFdN0SO8vP4s943reMAgEOL0A0AAJ0J3QAA0JnQDQAAnQndAADQmdANAACdCd0AANCZ0A0AAJ0J3QAA0JnQDQAAnQndAADQmdANAACdCd0AANDZjEN3VR1TVVur6qaqurGqfmm4/pFVdU1V/dPwf79n5uUCAMD8Mxs93fcm+W+tteOSPCPJL1bVcUnOTvKh1tqTknxouAwAAIecGYfu1tqXWmt/P3z99STbkhyV5NQklw53uzTJi2baFgAAzEeLZ/NkVbU8yQ8l+dsky1prXxpuuiPJsr0cc0aSM5Jk2bJlmZycnM2SoDvfWYC+XGdZCGYtdFfVw5L8WZJfbq39W1U9sK211qqq7em41tpFSS5KkpUrV7aJiYnZKgn6+8CV8Z0F6Mh1lgViVmYvqarDMwjcf9xa+/Ph6jur6rHD7Y9N8uXZaAsAAOab2Zi9pJJsTrKttfbmKZu2JDlt+Pq0JFfMtC0AAJiPZmN4ybOTvDTJp6rqE8N1r0tyXpJ3V9XpST6f5GdmoS0AAJh3Zhy6W2vXJqm9bD5ppucHAID5zhMpAQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoLPFc10AADD/PPWNV+dr93z7oLS1/Owru7fxiCMOzydff3L3djh0Cd0AwMi+ds+3c8t5L+jezuTkZCYmJrq3czCCPYc2w0sAAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoLNZCd1V9baq+nJVfXrKukdW1TVV9U/D//2e2WgLAADmm9nq6b4kyfN2W3d2kg+11p6U5EPDZQAAOOTMSuhurX04yV27rT41yaXD15cmedFstAUAAPNNzzHdy1prXxq+viPJso5tAQDA2Fp8MBpprbWqanvaVlVnJDkjSZYtW5bJycmDURLMGt9Z4FD08BVn5ymXHqSRo5fuf5eZeviKZHLyof0b4pDVM3TfWVWPba19qaoem+TLe9qptXZRkouSZOXKlW1iYqJjSTDLPnBlfGeBQ9HXzz4vt5z3gu7tTE5OHpTr7PKzr8zEaf3b4dDVc3jJliSnDV+fluSKjm0BAMDYmq0pAy9L8jdJfqCqbq+q05Ocl+S5VfVPSZ4zXAYAgEPOrAwvaa2t2cumk2bj/AAAMJ95IiUAAHQmdAMAQGdCNwAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHQmdAMAQGdCNwAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHQmdAMAQGdCNwAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHQmdAMAQGdCNwAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHQmdAMAQGdCNwAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHQmdAMAQGdCNwAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHQmdAMAQGdCNwAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHQmdAMAQGdCNwAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHQmdAMAQGdCNwAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHS2eK4LAADmp+VnX3lwGvpA/3YeccTh3dvg0CZ0AwAju+W8FxyUdpaffeVBawt6MrwEAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADpbPNcFQA9PfePV+do93z4obS0/+8rubTziiMPzydef3L0dAKAPoZsF6Wv3fDu3nPeC7u1MTk5mYmKiezsHI9gDAP0YXgIAAJ0J3QAA0JnQDQAAnXUP3VX1vKr6TFXdXFVn924PAADGTdfQXVWHJfn9JM9PclySNVV1XM82AQBg3PTu6X56kptba59trX0ryTuTnNq5TQAAGCu9pww8KsltU5ZvT/J/Td2hqs5IckaSLFu2LJOTk51L4lBxML5L27dvP2jfWf/fAA5Vrn8sBHM+T3dr7aIkFyXJypUr28GY85hDwAeuPCjzZx+seboP1vsBGDuufywQvYeXfCHJMVOWjx6uAwCAQ0bv0P13SZ5UVU+oqockeUmSLZ3bBACAsdJ1eElr7d6qek2Sq5IcluRtrbUbe7YJAADjpvuY7tba+5O8v3c7AAAwrjyREgAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6E7oBAKAzoRsAADoTugEAoDOhGwAAOhO6AQCgM6EbAAA6WzzXBUAPD19xdp5y6dkHp7FL+zfx8BVJ8oL+DQEAXQjdLEhf33Zebjmvf0idnJzMxMRE93aWn31l9zYAgH4MLwEAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOZhS6q+qnq+rGqrq/qlbutu2cqrq5qj5TVatnViYAAMxfi2d4/KeT/FSS/zV1ZVUdl+QlSZ6c5HFJPlhV399au2+G7QEAwLwzo57u1tq21tpn9rDp1CTvbK3tbK19LsnNSZ4+k7YAAGC+6jWm+6gkt01Zvn24DgAADjn7HV5SVR9M8pg9bFrfWrtipgVU1RlJzkiSZcuWZXJycqanhCQ5KN+l7du3H7TvrP9vAIcq1z8Wgv2G7tbac6Zx3i8kOWbK8tHDdXs6/0VJLkqSlStXtomJiWk0B7v5wJU5GN+lycnJg9LOwXo/AGPH9Y8Fotfwki1JXlJVS6rqCUmelORjndoCAICxNtMpAwyA5ucAABMySURBVH+yqm5P8swkV1bVVUnSWrsxybuT3JTkA0l+0cwlAAAcqmY0ZWBr7T1J3rOXbRuSbJjJ+QEAYCHwREoAAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM4Wz3UB0Mvys688OA19oH87jzji8O5tAAD9CN0sSLec94KD0s7ys688aG0BAPOX4SUAANCZ0A0AAJ0J3QAA0JnQDQAAnQndAADQmdANAACdCd0AANCZ0A0AAJ0J3QAA0JnQDQAAnQndAADQmdANAACdCd0AANCZ0A0AAJ0J3QAA0JnQDQAAnQndAADQmdANAACdCd0AANCZ0A0AAJ0J3QAA0JnQDQAAnQndAADQmdANAACdLZ7rAgCAQ0NVTe+4jaMf01qbVlvQi55uAOCgaK2N/LN169ZpHQfjRugGAIDOhG4AAOhM6AYAgM7cSAkAjJ2lS5dm586dDywvWbIkO3bsmMOKYGb0dAMAY2VX4F62bFn+8A//MMuWLcvOnTuzdOnSuS4Npk3oBgDGyq7Afccdd2T58uW54447HgjeMF8J3QDA2JmcnNznMsw3QjcAMHYmJib2uQzzjdANAIyVJUuW5M4778xjHvOY3HLLLXnMYx6TO++8M0uWLJnr0mDazF4CAIyVHTt2ZOnSpbnzzjvzile8IonZS5j/9HQDAGNnx44dD3oMvMDNfCd0AwBAZ0I3ADB21q1bl6VLl2bVqlVZunRp1q1bN9clwYwY0w0AjJV169Zl06ZN2bhxY4477rjcdNNNOeuss5Ik559//hxXB9OjpxsAGCsXX3xxNm7cmDPPPDNLly7NmWeemY0bN+biiy+e69Jg2oRuAGCs7Ny5M2vXrn3QurVr13oiJfOa0A0AjJUlS5Zk06ZND1q3adMm83QzrxnTDQCMlVe+8pUPjOE+7rjj8uY3vzlnnXXWd/R+w3widAMAY2XXzZKve93rsnPnzixZsiRr1651EyXzmuElAMDYOf/887Njx45s3bo1O3bsELiZ9/R0AwBj59hjj81tt932wPIxxxyTW2+9dQ4rgpnR0w0AjJVdgftZz3pW/vRP/zTPetazctttt+XYY4+d69Jg2oRuAGCs7ArcH/nIR/KoRz0qH/nIRx4I3jBfCd0AwNi5/PLL97kM843QDQCMnRe/+MX7XIb5RugGAMbKMccck+uuuy7Pfvaz89WvfjXPfvazc9111+WYY46Z69Jg2sxeAgCMlVtvvTXHHntsrrvuulx33XVJzF7C/KenGwAYO7feemtaa9m6dWtaawI3896MQndVvamq/qGqbqiq91TVkVO2nVNVN1fVZ6pq9cxLBQCA+WmmPd3XJDm+tXZCkn9Mck6SVNVxSV6S5MlJnpfkgqo6bIZtAQCHiGOPPTZVlVWrVqWqzNHNvDej0N1au7q1du9w8aNJjh6+PjXJO1trO1trn0tyc5Knz6QtAODQ4OE4LESzOab755P8xfD1UUmmzmB/+3AdAMA+eTgOC9F+Zy+pqg8mecweNq1vrV0x3Gd9knuT/PGoBVTVGUnOSJJly5ZlcnJy1FPAnPKdBZh9r33tazM5OZnt27dncnIyr33ta3Pddde55jJv7Td0t9aes6/tVfXyJD+e5KTWWhuu/kKSqZNpHj1ct6fzX5TkoiRZuXJlm5iY2G/RMDY+cGV8ZwFm31ve8pZ85CMfyeTkZCYmJvLsZz87SVxzmbdmOnvJ85L8apIXtta+OWXTliQvqaolVfWEJE9K8rGZtAUAHBo8HIeFaKYPx3lrkiVJrqmqJPloa21ta+3Gqnp3kpsyGHbyi621+2bYFgBwCPBwHBaiGYXu1toT97FtQ5INMzk/AHBo2hWwdw0vgfnOEykBgLFzwgknPGie7hNOOGGuS4IZEboBgLFywgkn5FOf+lRe+MIX5j3veU9e+MIX5lOf+pTgzbwmdAMAY2VX4L7iiity5JFH5oorrnggeMN8JXQDAGNn8+bN+1yG+UboBgDGzumnn77PZZhvhG4AYKw85SlPyZYtW3Lqqafm7rvvzqmnnpotW7bkKU95ylyXBtM203m6AQBm1Q033JATTjghW7ZsyZYtW5IMgvgNN9wwx5XB9OnpBgDGzg033JDWWrZu3ZrWmsDNvCd0AwBAZ0I3ADB2Lrvsshx//PE56aSTcvzxx+eyyy6b65JgRozpBgDGymWXXZb169dn8+bNue+++3LYYYc9MHvJmjVr5rg6mB493QDAWNmwYUM2b96cVatWZfHixVm1alU2b96cDRs2zHVpMG1CNwAwVrZt25YTTzzxQetOPPHEbNu2bY4qgpkTugGAsbJixYpce+21D1p37bXXZsWKFXNUEcyc0A0AjJX169fn9NNPz9atW3Pvvfdm69atOf3007N+/fq5Lg2mzY2UAMBY2XWz5Lp167Jt27asWLEiGzZscBMl85rQDQCMnTVr1mTNmjWZnJzMxMTEXJcDM2Z4CQAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHQmdAMAQGdCNwAAdCZ0AwBAZ0I3AAB0JnQDAGNn9erVWbRoUVatWpVFixZl9erVc10SzIjQDQCMldWrV+fqq6/O2rVr8973vjdr167N1VdfLXgzry2e6wIAAKa65ppr8qpXvSoXXHBBJicnc8EFFyRJNm3aNMeVwfTp6QYAxkprLeeee+6D1p177rlprc1RRTBzQjcAMFaqKuecc86D1p1zzjmpqjmqCGbO8BIAYKw897nPzYUXXpgkOeWUU/LqV786F154YU4++eQ5rgymT+gGAMbKVVddldWrV2fTpk258MILU1U5+eSTc9VVV811aTBtQjcAMHZ2BezJyclMTEzMbTEwC4zpBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AYOysXr06ixYtyqpVq7Jo0aKsXr16rkuCGRG6AYCxsnr16lx99dVZu3Zt3vve92bt2rW5+uqrBW/mtcVzXQAAwFTXXHNNXvWqV+WCCy7I5ORkLrjggiTJpk2b5rgymD493QDAWGmt5dxzz33QunPPPTettTmqCGZO6AYAxkpV5ZxzznnQunPOOSdVNUcVwcwZXgIAjJXnPve5ufDCC5Mkp5xySl796lfnwgsvzMknnzzHlcH0Cd0AwFi56qqrsnr16mzatCkXXnhhqionn3xyrrrqqrkuDaZN6AYAxs6ugD05OZmJiYm5LQZmgTHdAADQmdANAIyddevWZenSpVm1alWWLl2adevWzXVJMCOGlwAAY2XdunXZtGlTNm7cmOOOOy433XRTzjrrrCTJ+eefP8fVwfTo6QYAxsrFF1+cjRs35swzz8zSpUtz5plnZuPGjbn44ovnujSYNqEbABgrO3fuzNq1ax+0bu3atdm5c+ccVQQzJ3QDAGNlyZIl3/HI902bNmXJkiVzVBHMnDHdAMBYeeUrX/nAGO7jjjsub37zm3PWWWd9R+83zCdCNwAwVnbdLPm6170uO3fuzJIlS7J27Vo3UTKvGV4CAIyd888/Pzt27MjWrVuzY8cOgZt5T+gGAMaOebpZaAwvAQDGinm6WYj0dAMAY8U83SxEQjcAMFbM081CJHQDAGPFPN0sRMZ0AwBjxTzdLERCNwAwVszTzUJkeAkAMHbM081CI3QDAEBnQjcAMHYuu+yyHH/88TnppJNy/PHH57LLLpvrkmBGjOkGAMbKZZddlvXr12fz5s257777cthhh+X0009PkqxZs2aOq4Pp0dMNAIyVDRs2ZPPmzVm1alUWL16cVatWZfPmzdmwYcNclwbTJnQDAGNl27ZtOfHEEx+07sQTT8y2bdvmqCKYOaEbABgrK1asyLXXXvugdddee21WrFgxRxXBzAndAMBYWb9+fU4//fRs3bo19957b7Zu3ZrTTz8969evn+vSYNrcSAkAjJVdN0uuW7cu27Zty4oVK7JhwwY3UTKvCd0AwNhZs2ZN1qxZk8nJyUxMTMx1OTBjMxpeUlW/VVU3VNUnqurqqnrccH1V1e9V1c3D7T88O+UCAMD8M9Mx3W9qrZ3QWntakvcl+Y3h+ucnedLw54wkF86wHQAAmLdmFLpba/82ZfGhSdrw9alJ3t4GPprkyKp67EzaAgCA+WrGY7qrakOSlyX5WpJVw9VHJbltym63D9d9aQ/Hn5FBb3iWLVuWycnJmZYEB5XvLEA/27dvd51lQdhv6K6qDyZ5zB42rW+tXdFaW59kfVWdk+Q1SV4/SgGttYuSXJQkK1eubG6WYF75wJVu8AHoyI2ULBT7Dd2ttecc4Ln+OMn7MwjdX0hyzJRtRw/XAQDAIWems5c8acriqUn+Yfh6S5KXDWcxeUaSr7XWvmNoCQAAHApmOqb7vKr6gST3J/l8krXD9e9PckqSm5N8M8krZtgOAADMWzMK3a21/7yX9S3JL87k3AAAsFDMdJ5uAABgP4RuAADoTOgGAIDOhG4AAOhM6AYAgM6EbgAA6EzoBgCAzoRuAADoTOgGAIDOhG4AAOhM6AYAgM4Wz3UBMC6qanrHbRz9mNbatNoCAOYnPd0w1Fob+Wfr1q3TOg4AOLQI3QAA0JnQDQAAnQndAADQmdANAACdCd0AANCZ0A0AAJ0J3QAA0JnQDQAAnQndAADQmdANAACdCd0AANCZ0A0AAJ0J3QAA0JnQDQAAnQndAADQmdANAACdCd0AANCZ0A0AAJ0J3QAA0JnQDQAAnQndAADQmdANAACdCd0AANCZ0A0AAJ0J3QAA0JnQDQAAnQndAADQmdANAACdVWttrmt4QFV9Jcnn57oOGMGjknx1rosAWMBcZ5lPHt9ae/SeNoxV6Ib5pqo+3lpbOdd1ACxUrrMsFIaXAABAZ0I3AAB0JnTDzFw01wUALHCusywIxnQDAEBneroBAKAzoRsOQFU9r6o+U1U3V9XZe9i+pKreNdz+t1W1/OBXCTA/VdXbqurLVfXpvWyvqvq94TX2hqr64YNdI8yU0A37UVWHJfn9JM9PclySNVV13G67nZ7kX1trT0zyliQbD26VAPPaJUmet4/tz0/ypOHPGUkuPAg1wawSumH/np7k5tbaZ1tr30ryziSn7rbPqUkuHb6+PMlJVVUHsUaAeau19uEkd+1jl1OTvL0NfDTJkVX12INTHcwOoRv276gkt01Zvn24bo/7tNbuTfK1JN97UKoDWPgO5DoMY03oBgCAzoRu2L8vJDlmyvLRw3V73KeqFid5RJJ/OSjVASx8B3IdhrEmdMP+/V2SJ1XVE6rqIUlekmTLbvtsSXLa8PWLk/xlMwk+wGzZkuRlw1lMnpHka621L811UTCKxXNdAIy71tq9VfWaJFclOSzJ21prN1bVbyb5eGttS5LNSf6oqm7O4Gagl8xdxQDzS1VdlmQiyaOq6vYkr09yeJK01jYleX+SU5LcnOSbSV4xN5XC9HkiJQAAdGZ4CQAAdCZ0AwBAZ0I3AAB0JnQDAEBnQjcAAHQmdAOMkaq6r6o+UVU3VtUnq+q/VdW0r9VVdUtVfWr4c1NV/feqWnoAx22f8voDVXV3Vb1vt30uqarPDev9RFU9bbp1Aix05ukGGC/3tNaeliRV9X1J/iTJd2cwb/F0rWqtfbWqHpbkoiT/K//+MKcD8aYk35XkF/aw7Vdaa5fPoDaAQ4KeboAx1Vr7cpIzkrxm+CS+w6rqTVX1d1V1Q1X9QpJU1URVfbiqrqyqz1TVpj31jrfWtidZm+RFVfXI4bG/MuV8b9xLHR9K/v/27h/E5ziO4/jzpS7JWYiSxfkXJqW7STLdZJDFIoPLYLBdySzZWC5RyiAZWc9yAyXUMZgMLEoxKCzK9TZ8P3RdR3dX3/zOPR/L7/f7fj6fd5/v9vq9+3z78rW3G5WkNcDQLUkDrKre0r0JdRswQff661FgFDiXZKRNHQMuAAeB3cDJP9T7ArwD9iYZB/a2tYeAw0mOLnOLV1pgv55k/TLXStKaYeiWpNVjHDiT5BXwDNhCF5oBnlfV26qaA+4DR/5SJ/PqjQMvgVlg/7x6S3GprRkFNgMXl7FWktYUz3RL0gBLsguYAz7SheULVTW9YM4xoBYsXfj719xNwE7gTat3tapurWRvVfWhff2e5A4wuZI6krQW2OmWpAGVZCtwE5iqqgKmgfNJhtr4viQb2/SxJCPtLPcp4Mki9YaBG8DDqvrc6p1t10myoz28udT9bW+fAU4Ar1d4q5L037PTLUmDZUM7PjIE/ADuAtfa2G26LvVsC7qf6MIuwAtgCtgDzAAP5tWcafPXteuXAarqUZIDwNNumG/Aabqu+m9JHtMdIxlO8h6YaN32e+2PQYBXdA9pSpIWka55IklardrxksmqOv6v9yJJWpzHSyRJkqSe2emWJEmSemanW5IkSeqZoVuSJEnqmaFbkiRJ6pmhW5IkSeqZoVuSJEnqmaFbkiRJ6tlPkrCDQ9LnKrEAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "df_flights.boxplot(column='ArrDelay', by='DepDel15', figsize=(12,12))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Which route (from origin airport to destination airport) has the most **late** arrivals?" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "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", + "
ArrDel15
Route
San Francisco International > Los Angeles International90
Los Angeles International > San Francisco International69
LaGuardia > Hartsfield-Jackson Atlanta International68
Los Angeles International > John F. Kennedy International52
LaGuardia > Charlotte Douglas International51
......
Logan International > Austin - Bergstrom International0
Logan International > Memphis International0
Logan International > Port Columbus International0
San Diego International > Cincinnati/Northern Kentucky International0
Louis Armstrong New Orleans International > San Francisco International0
\n", + "

2479 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " ArrDel15\n", + "Route \n", + "San Francisco International > Los Angeles Inter... 90\n", + "Los Angeles International > San Francisco Inter... 69\n", + "LaGuardia > Hartsfield-Jackson Atlanta Internat... 68\n", + "Los Angeles International > John F. Kennedy Int... 52\n", + "LaGuardia > Charlotte Douglas International 51\n", + "... ...\n", + "Logan International > Austin - Bergstrom Intern... 0\n", + "Logan International > Memphis International 0\n", + "Logan International > Port Columbus International 0\n", + "San Diego International > Cincinnati/Northern K... 0\n", + "Louis Armstrong New Orleans International > San... 0\n", + "\n", + "[2479 rows x 1 columns]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Add a routes column\n", + "routes = pd.Series(df_flights['OriginAirportName'] + ' > ' + df_flights['DestAirportName'])\n", + "df_flights = pd.concat([df_flights, routes.rename(\"Route\")], axis=1)\n", + "\n", + "# Group by routes\n", + "route_group = df_flights.groupby(df_flights.Route)\n", + "pd.DataFrame(route_group['ArrDel15'].sum()).sort_values('ArrDel15', ascending=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Which route has the highest average arrival delay?" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "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", + "
ArrDelay
Route
Louis Armstrong New Orleans International > Ronald Reagan Washington National24.500000
Cleveland-Hopkins International > Palm Beach International18.000000
John F. Kennedy International > Louisville International-Standiford Field18.000000
Cleveland-Hopkins International > Philadelphia International12.800000
Memphis International > Denver International9.758621
......
Lambert-St. Louis International > Cleveland-Hopkins International-20.000000
Eppley Airfield > LaGuardia-20.750000
Denver International > Kahului Airport-22.666667
Jacksonville International > Chicago Midway International-24.125000
Indianapolis International > Logan International-26.000000
\n", + "

2479 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " ArrDelay\n", + "Route \n", + "Louis Armstrong New Orleans International > Ron... 24.500000\n", + "Cleveland-Hopkins International > Palm Beach In... 18.000000\n", + "John F. Kennedy International > Louisville Inte... 18.000000\n", + "Cleveland-Hopkins International > Philadelphia ... 12.800000\n", + "Memphis International > Denver International 9.758621\n", + "... ...\n", + "Lambert-St. Louis International > Cleveland-Hop... -20.000000\n", + "Eppley Airfield > LaGuardia -20.750000\n", + "Denver International > Kahului Airport -22.666667\n", + "Jacksonville International > Chicago Midway Int... -24.125000\n", + "Indianapolis International > Logan International -26.000000\n", + "\n", + "[2479 rows x 1 columns]" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.DataFrame(route_group['ArrDelay'].mean()).sort_values('ArrDelay', ascending=False)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.6 - AzureML", + "language": "python", + "name": "python3-azureml" + }, + "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.6.9" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/2-Regression/2-Data/flights.csv b/2-Regression/2-Data/flights.csv new file mode 100644 index 0000000000..6af453e209 --- /dev/null +++ b/2-Regression/2-Data/flights.csv @@ -0,0 +1,271941 @@ +Year,Month,DayofMonth,DayOfWeek,Carrier,OriginAirportID,OriginAirportName,OriginCity,OriginState,DestAirportID,DestAirportName,DestCity,DestState,CRSDepTime,DepDelay,DepDel15,CRSArrTime,ArrDelay,ArrDel15,Cancelled +2013,9,16,1,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1539,4,0,1824,13,0,0 +2013,9,23,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,710,3,0,740,22,1,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-3,0,1614,-7,0,0 +2013,7,22,1,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,804,35,1,1027,33,1,0 +2013,5,16,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-1,0,728,-9,0,0 +2013,7,28,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1710,87,1,2035,183,1,0 +2013,10,6,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,630,-1,0,1210,-3,0,0 +2013,7,28,7,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2218,4,0,2301,15,1,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,8,0,1240,-10,0,0 +2013,5,12,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1759,40,1,2107,10,0,0 +2013,6,9,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1404,3,0,1507,-8,0,0 +2013,7,21,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,10,0,1110,-4,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2020,1,0,2155,-4,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,95,1,2245,90,1,0 +2013,10,20,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1330,-11,0,1628,-15,0,0 +2013,4,14,7,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,-7,0,2010,26,1,0 +2013,10,31,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1630,28,1,1830,26,1,0 +2013,10,11,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,1403,-11,0,0 +2013,8,3,6,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,4,0,626,-5,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-5,0,1302,1,0,0 +2013,9,23,1,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,0,0,1055,-16,0,0 +2013,9,17,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1702,5,0,2023,-12,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1403,-2,0,1539,-14,0,0 +2013,4,19,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,-8,0,1510,0,0,0 +2013,8,24,6,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-20,0,1212,-16,0,0 +2013,7,17,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2010,-4,0,2125,-4,0,0 +2013,10,19,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1138,47,1,1336,54,1,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1435,1,0,1657,-6,0,0 +2013,7,18,4,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,2000,29,1,2222,25,1,0 +2013,4,9,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1155,-2,0,1320,1,0,0 +2013,5,16,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-4,0,1054,-5,0,0 +2013,7,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1206,7,0,1333,9,0,0 +2013,6,13,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,957,2,0,1325,0,0,0 +2013,10,28,1,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1445,-3,0,1551,8,0,0 +2013,8,13,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,11,0,1525,8,0,0 +2013,9,22,7,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-5,0,445,-20,0,0 +2013,4,29,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1005,-7,0,1120,-9,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,8,0,1409,23,1,0 +2013,6,9,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,730,-4,0,859,-9,0,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,850,17,1,935,34,1,0 +2013,7,1,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,1,0,810,-9,0,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1048,137,1,1920,151,1,0 +2013,4,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1252,-2,0,1414,-5,0,0 +2013,5,11,6,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2151,-4,0,2359,2,0,0 +2013,10,5,6,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1400,2,0,1610,-10,0,0 +2013,9,7,6,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-3,0,1545,-3,0,0 +2013,6,2,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-3,0,1115,-6,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1245,-1,0,1605,7,0,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-7,0,1832,-17,0,0 +2013,5,6,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1120,0,0,1245,-2,0,0 +2013,6,29,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,9,0,1828,5,0,0 +2013,8,12,1,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1001,16,1,1130,15,1,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1753,-1,0,1843,-3,0,0 +2013,7,1,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,846,3,0,0 +2013,5,6,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,88,1,1801,87,1,0 +2013,10,19,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1920,43,1,2245,20,1,0 +2013,9,7,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-13,0,840,-22,0,0 +2013,9,4,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1615,-9,0,2007,-23,0,0 +2013,9,11,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,-9,0,833,-17,0,0 +2013,8,19,1,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1010,-3,0,1325,-18,0,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-6,0,1050,-23,0,0 +2013,5,6,1,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1405,-3,0,1645,-25,0,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1340,-8,0,1452,-14,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1815,1,0,2046,19,1,0 +2013,4,14,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,6,0,1645,14,0,0 +2013,9,23,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,852,-5,0,1019,-13,0,0 +2013,5,5,7,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1805,-2,0,1846,0,0,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,940,0,0,1100,-3,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1930,108,1,2200,105,1,0 +2013,5,6,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2055,0,0,2220,-5,0,0 +2013,10,18,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,-1,0,2110,-3,0,0 +2013,7,7,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,0,0,1405,15,1,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1105,0,0,1640,-20,0,0 +2013,8,3,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,748,58,1,1030,44,1,0 +2013,9,16,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,7,0,1155,8,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,-2,0,1025,-14,0,0 +2013,9,23,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1538,-4,0,1644,5,0,0 +2013,8,23,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1720,-6,0,1841,-16,0,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,959,-3,0,1450,-9,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,825,3,0,1355,-12,0,0 +2013,5,4,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1145,1,0,1404,-17,0,0 +2013,7,9,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-3,0,1610,-10,0,0 +2013,7,10,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-5,0,1122,1,0,0 +2013,6,20,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1845,7,0,2030,-26,0,0 +2013,8,27,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1905,-12,0,0 +2013,7,17,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-4,0,1715,5,0,0 +2013,9,8,7,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1524,-5,0,1651,-13,0,0 +2013,9,12,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,18,1,1354,39,1,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2107,-5,0,2314,-21,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1400,1,0,1825,-14,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,8,0,1115,-1,0,0 +2013,6,7,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1528,-2,0,1814,-16,0,0 +2013,7,16,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,18,1,1720,14,0,0 +2013,8,30,5,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,10,0,1119,18,1,0 +2013,6,27,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,160,1,2130,158,1,0 +2013,6,27,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1220,-17,0,0 +2013,9,26,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,25,1,1620,16,1,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1800,9,0,1905,11,0,0 +2013,5,4,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-10,0,1205,-5,0,0 +2013,4,26,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1214,-4,0,1305,-7,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,-1,0,1904,-26,0,0 +2013,8,1,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1035,-3,0,1105,-7,0,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1425,19,1,2020,28,1,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1320,26,1,1540,12,0,0 +2013,5,6,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,750,-10,0,0 +2013,10,30,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,2,0,1450,-8,0,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,-5,0,959,26,1,0 +2013,10,29,2,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1715,13,0,1950,16,1,0 +2013,8,10,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,832,-5,0,932,-18,0,0 +2013,4,21,7,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1005,-1,0,1330,-20,0,0 +2013,5,29,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1501,-2,0,1552,-17,0,0 +2013,4,13,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-3,0,1040,-6,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,-4,0,940,-4,0,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1558,-9,0,1909,-6,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,852,-4,0,1035,-12,0,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-4,0,1311,0,0,0 +2013,8,10,6,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1856,5,0,2104,-2,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1228,98,1,1749,120,1,0 +2013,5,10,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1415,0,0,1920,-7,0,0 +2013,8,14,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1850,-4,0,2138,-8,0,0 +2013,4,25,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,705,25,1,951,28,1,0 +2013,6,20,4,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,640,-4,0,1441,21,1,0 +2013,9,8,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1039,-8,0,1633,1,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,845,3,0,922,4,0,0 +2013,5,9,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1530,32,1,1732,5,0,0 +2013,8,4,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1454,7,0,1629,-1,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,1,0,2217,-2,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,-3,0,1236,-35,0,0 +2013,6,21,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1835,0,0,1955,3,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1715,8,0,2305,7,0,0 +2013,5,8,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1940,49,1,2156,46,1,0 +2013,7,30,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-4,0,905,-6,0,0 +2013,7,24,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1945,-4,0,2055,-7,0,0 +2013,4,5,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1045,12,0,1322,-10,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,935,9,0,1207,-36,0,0 +2013,7,14,7,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1130,142,1,1838,138,1,0 +2013,9,19,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,720,-3,0,934,-19,0,0 +2013,8,6,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,1012,-3,0,0 +2013,4,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,-3,0,1801,-13,0,0 +2013,9,1,7,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1650,-5,0,2140,-14,0,0 +2013,6,17,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-1,0,1347,15,1,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,920,2,0,1235,-9,0,0 +2013,4,10,3,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1544,280,1,1744,310,1,0 +2013,8,21,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,0,0,1719,1,0,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,-5,0,2236,1,0,0 +2013,9,12,4,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1320,1,0,1515,0,1,1 +2013,8,1,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-8,0,1010,-9,0,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1106,-2,0,1403,-11,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,-1,0,1830,1,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-6,0,1010,-21,0,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,650,-5,0,931,-21,0,0 +2013,5,13,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,715,5,0,1000,18,1,0 +2013,10,6,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,190,1,2000,189,1,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,-4,0,1612,17,1,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,-1,0,27,-11,0,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,755,21,1,1045,12,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1435,16,1,1609,22,1,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1559,208,1,1732,278,1,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-2,0,1815,-6,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,900,0,0,1015,-14,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,745,-3,0,1210,-20,0,0 +2013,4,6,6,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1600,-1,0,1850,-16,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1720,-5,0,1950,-3,0,0 +2013,5,12,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1725,-5,0,1849,-12,0,0 +2013,9,19,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,51,1,2050,72,1,0 +2013,8,12,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1310,8,0,1410,6,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,2,0,1521,4,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-7,0,957,-7,0,0 +2013,8,28,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,0,0,1912,2,0,0 +2013,10,10,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-4,0,1007,-7,0,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1740,120,1,1932,109,1,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,835,0,,945,0,1,1 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1305,18,1,1400,10,0,0 +2013,7,4,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1932,0,0,2228,-4,0,0 +2013,5,30,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-6,0,2203,-5,0,0 +2013,4,15,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2005,-9,0,2140,-7,0,0 +2013,5,16,4,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1425,6,0,1530,3,0,0 +2013,5,5,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,929,-10,0,1043,-24,0,0 +2013,7,4,4,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,1029,-6,0,1153,-6,0,0 +2013,7,2,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-9,0,919,-2,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,0,0,2214,-8,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1645,9,0,2200,4,0,0 +2013,9,22,7,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1845,26,1,1950,29,1,0 +2013,5,11,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,26,1,2042,12,0,0 +2013,10,14,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1340,-3,0,1505,-3,0,0 +2013,4,22,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-5,0,1055,0,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1315,0,0,1405,3,0,0 +2013,10,31,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1010,34,1,1143,42,1,0 +2013,10,7,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-2,0,740,-17,0,0 +2013,4,18,4,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1705,89,1,1837,83,1,0 +2013,8,25,7,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,750,58,1,915,48,1,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,925,-2,0,1100,-13,0,0 +2013,10,5,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-9,0,845,-19,0,0 +2013,8,11,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-7,0,1845,-20,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1750,-3,0,2000,-16,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1105,-5,0,1325,5,0,0 +2013,6,15,6,EV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1717,1,0,1904,1,0,0 +2013,10,27,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1015,-3,0,1340,-19,0,0 +2013,10,4,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1822,-10,0,2003,-12,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1740,45,1,1955,29,1,0 +2013,5,21,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-5,0,1000,0,0,0 +2013,4,9,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1652,29,1,1800,43,1,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,0,0,1231,-6,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2120,2,0,2330,-21,0,0 +2013,10,8,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1459,2,0,1645,-18,0,0 +2013,7,15,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,34,1,1555,33,1,0 +2013,9,13,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,859,-1,0,1017,-10,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,3,0,1355,-6,0,0 +2013,6,9,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-6,0,1034,-30,0,0 +2013,10,4,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,-6,0,1953,35,1,0 +2013,4,1,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1110,-10,0,1440,15,1,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1120,2,0,1320,5,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,601,-5,0,1030,-5,0,0 +2013,5,6,1,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,5,0,557,-8,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,-2,0,1029,-15,0,0 +2013,8,27,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,-12,0,719,-19,0,0 +2013,5,5,7,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1805,-6,0,1948,-1,0,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2105,-9,0,2244,-27,0,0 +2013,5,27,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2010,7,0,2100,-1,0,0 +2013,9,11,3,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,1746,-3,0,1915,-12,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1125,2,0,1449,-15,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2041,-2,0,2155,-10,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1702,41,1,1939,42,1,0 +2013,8,27,2,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1010,-2,0,1150,-11,0,0 +2013,6,20,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-3,0,2358,13,0,0 +2013,4,21,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,50,1,2128,53,1,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,835,-2,0,1215,-10,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,545,-5,0,719,-17,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1822,18,1,2155,-26,0,0 +2013,10,16,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2259,1,0,608,-20,0,0 +2013,8,23,5,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1500,55,1,1635,52,1,0 +2013,5,20,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1020,-7,0,1110,-9,0,0 +2013,5,31,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,635,-7,0,750,-21,0,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,835,-2,0,1235,22,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,2,0,2236,-17,0,0 +2013,10,1,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,959,-6,0,1058,3,0,0 +2013,7,21,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,6,0,1645,1,0,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2030,0,0,2155,-8,0,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1755,126,1,2000,140,1,0 +2013,6,3,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,-3,0,845,-10,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,67,1,1725,60,1,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1953,0,0,2008,-12,0,0 +2013,8,4,7,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1543,-3,0,1831,17,1,0 +2013,4,21,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1107,-8,0,0 +2013,10,31,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,955,-12,0,1243,-17,0,0 +2013,10,10,4,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2035,93,1,2204,75,1,0 +2013,5,16,4,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,716,33,1,916,8,0,0 +2013,9,7,6,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1244,10,0,1539,-17,0,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1040,-2,0,1250,-16,0,0 +2013,5,23,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1430,90,1,1733,87,1,0 +2013,4,13,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1522,0,0,1830,22,1,0 +2013,4,29,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-7,0,1855,-20,0,0 +2013,9,24,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-2,0,1812,-19,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1140,0,0,1310,-12,0,0 +2013,9,18,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2052,-1,0,2257,-6,0,0 +2013,8,12,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1000,1,0,1315,-2,0,0 +2013,7,1,1,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,-7,0,826,-24,0,0 +2013,5,25,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1145,4,0,1245,11,0,0 +2013,9,19,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2006,12,0,2321,14,0,0 +2013,10,25,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1825,-6,0,1925,-7,0,0 +2013,7,10,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,-11,0,1125,-15,0,0 +2013,10,5,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1345,-4,0,1445,-8,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1020,11,0,1345,22,1,0 +2013,7,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,16,1,1559,1,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2114,1,0,2358,-6,0,0 +2013,9,8,7,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1500,1,0,1758,-18,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2110,80,1,2252,93,1,0 +2013,8,18,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1450,18,1,1610,18,1,0 +2013,10,16,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1920,-4,0,2302,-20,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1340,-3,0,1451,-11,0,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,700,-4,0,920,-14,0,0 +2013,8,29,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1426,16,1,1558,-1,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1315,-4,0,1512,-12,0,0 +2013,10,27,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1847,-1,0,2003,-7,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2045,37,1,2250,36,1,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-4,0,1738,-13,0,0 +2013,4,22,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,1,0,616,-11,0,0 +2013,7,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1834,-5,0,1934,11,0,0 +2013,8,27,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2320,14,0,629,1,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,940,21,1,1045,15,1,0 +2013,10,28,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1145,17,1,1235,14,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,-6,0,915,-10,0,0 +2013,9,19,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1455,-4,0,1750,-10,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-3,0,2149,3,0,0 +2013,9,21,6,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-9,0,1230,-12,0,0 +2013,7,13,6,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,-5,0,1520,-4,0,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1905,16,1,55,26,1,0 +2013,5,16,4,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1925,2,0,2030,-4,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,25,1,1300,23,1,0 +2013,7,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2206,-6,0,2350,-29,0,0 +2013,6,4,2,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,-10,0,1415,-9,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,-2,0,1725,-16,0,0 +2013,9,22,7,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,2,0,1955,12,0,0 +2013,7,9,2,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1353,62,1,1520,59,1,0 +2013,10,22,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,14,0,2155,9,0,0 +2013,6,30,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,5,0,1915,-24,0,0 +2013,5,21,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2010,35,1,2304,31,1,0 +2013,5,30,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1821,-6,0,2041,-18,0,0 +2013,8,23,5,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1025,14,0,1029,11,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,9,0,1630,3,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,900,22,1,1655,0,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1250,-6,0,1405,-24,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,18,1,1525,8,0,0 +2013,7,8,1,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,5,0,1625,15,1,0 +2013,4,28,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,3,0,955,-7,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1345,0,0,1500,-3,0,0 +2013,4,28,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1705,-2,0,1750,-3,0,0 +2013,10,14,1,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1510,4,0,1735,-3,0,0 +2013,7,23,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-12,0,759,-27,0,0 +2013,8,8,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1341,10,0,1443,-1,0,0 +2013,8,12,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-1,0,1510,-1,0,0 +2013,4,3,3,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,0,0,804,-11,0,0 +2013,7,9,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,526,11,0,1049,5,0,0 +2013,7,6,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1550,13,0,1610,-2,0,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1140,-6,0,1325,-15,0,0 +2013,4,28,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1122,-1,0,1257,-5,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1127,32,1,1219,30,1,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,25,1,1610,34,1,0 +2013,8,2,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,3,0,1040,3,0,0 +2013,9,5,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,0,0,900,-9,0,0 +2013,5,17,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,810,1,0,0 +2013,5,31,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1436,74,1,1605,56,1,0 +2013,4,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1300,10,0,1609,10,0,0 +2013,7,13,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-11,0,1854,-6,0,0 +2013,6,15,6,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1255,-4,0,1840,-2,0,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1615,48,1,1706,40,1,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1845,25,1,2200,20,1,0 +2013,7,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1035,-7,0,1200,-13,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1535,-7,0,1800,-7,0,0 +2013,5,12,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-4,0,1019,-11,0,0 +2013,10,24,4,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1930,-2,0,2056,-4,0,0 +2013,9,7,6,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-2,0,1351,-4,0,0 +2013,10,26,6,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,54,1,700,43,1,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,20,1,1630,-2,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2344,2,0,752,-1,0,0 +2013,6,13,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1625,3,0,1841,1,0,0 +2013,7,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-4,0,818,-13,0,0 +2013,6,19,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1412,6,0,1705,-26,0,0 +2013,6,3,1,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2213,52,1,2300,44,1,0 +2013,6,24,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,206,1,2355,193,1,0 +2013,6,17,1,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1500,1,0,1609,0,0,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,-6,0,848,-11,0,0 +2013,8,22,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,2,0,1232,11,0,0 +2013,10,9,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,646,-13,0,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1355,-3,0,1520,-6,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2030,31,1,2200,31,1,0 +2013,8,18,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,0,0,2045,14,0,0 +2013,6,7,5,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,-5,0,931,5,0,0 +2013,7,29,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,630,-5,0,930,-23,0,0 +2013,9,5,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1940,21,1,2040,25,1,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,7,0,2230,7,0,0 +2013,10,9,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,620,3,0,1230,-2,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1345,-4,0,1515,-16,0,0 +2013,10,20,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,925,-1,0,1135,-23,0,0 +2013,10,10,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,619,58,1,819,32,1,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1805,-2,0,0 +2013,7,7,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,210,1,29,204,1,0 +2013,6,7,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,106,1,1655,103,1,0 +2013,5,29,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-9,0,519,-16,0,0 +2013,5,22,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1719,0,,1738,0,1,1 +2013,8,10,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1415,-13,0,0 +2013,8,23,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-5,0,1400,-1,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,935,0,0,1100,-2,0,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,-2,0,1623,-10,0,0 +2013,9,30,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-9,0,2020,-18,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-5,0,1114,-4,0,0 +2013,4,2,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1723,-4,0,1813,-11,0,0 +2013,4,29,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1245,-3,0,1400,-13,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1530,54,1,1709,46,1,0 +2013,8,8,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2015,27,1,2020,18,1,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,926,-5,0,1455,-22,0,0 +2013,9,23,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,635,-2,0,750,-2,0,0 +2013,10,30,3,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,815,-1,0,1019,-4,0,0 +2013,5,4,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-2,0,1505,-1,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,24,1,1700,16,1,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,625,29,1,1035,31,1,0 +2013,8,31,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,-2,0,1525,0,0,0 +2013,4,8,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1450,26,1,1615,39,1,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,20,1,2055,16,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1058,-3,0,1208,-7,0,0 +2013,5,19,7,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,4,0,1600,-3,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1855,4,0,2123,25,1,0 +2013,4,17,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1122,4,0,1305,3,0,0 +2013,5,16,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,624,38,1,827,23,1,0 +2013,10,6,7,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1730,-7,0,1946,-19,0,0 +2013,4,5,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1935,-3,0,2120,-11,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1935,-5,0,2330,-12,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,5,0,1825,5,0,0 +2013,7,10,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2105,59,1,2225,52,1,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,735,2,0,1000,-19,0,0 +2013,9,15,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,10,0,1659,3,0,0 +2013,5,10,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,600,34,1,715,26,1,0 +2013,4,17,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-6,0,725,2,0,0 +2013,5,8,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,736,-10,0,839,-15,0,0 +2013,9,18,3,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1959,-11,0,2117,-7,0,0 +2013,9,7,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,0,0,1010,3,0,0 +2013,9,17,2,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1925,-4,0,2032,-20,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1025,-5,0,1130,-6,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1255,28,1,1615,19,1,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,847,-3,0,1325,-32,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1655,-4,0,1750,-13,0,0 +2013,7,10,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,3,0,1612,-9,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-1,0,1826,-7,0,0 +2013,9,24,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1225,0,0,1540,-12,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1355,0,0,1645,-26,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-4,0,2010,-9,0,0 +2013,4,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1025,-2,0,1300,-18,0,0 +2013,5,6,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-7,0,753,10,0,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,650,-2,0,931,-8,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1000,-2,0,1039,4,0,0 +2013,8,29,4,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2333,25,1,500,24,1,0 +2013,6,9,7,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,2,0,1519,1,0,0 +2013,9,15,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2000,14,0,2300,-4,0,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,610,-7,0,934,-24,0,0 +2013,4,30,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1455,0,0,1610,-6,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,844,21,1,1003,19,1,0 +2013,7,12,5,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1620,24,1,1800,42,1,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,-4,0,1905,-11,0,0 +2013,6,8,6,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,8,0,2055,3,0,0 +2013,8,1,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11042,Cleveland-Hopkins International,Cleveland,OH,2327,32,1,646,34,1,0 +2013,7,13,6,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1415,1,0,2220,-10,0,0 +2013,4,9,2,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1810,0,0,2025,-10,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,2,0,2130,-11,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,7,0,1850,-9,0,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,700,-7,0,950,-33,0,0 +2013,6,28,5,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,12954,Long Beach Airport,Long Beach,CA,106,14,0,720,23,1,0 +2013,8,31,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-8,0,1022,-4,0,0 +2013,8,29,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,858,-10,0,959,-15,0,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,5,0,1035,-5,0,0 +2013,7,3,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1935,0,,2125,0,1,1 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1800,-6,0,1918,-17,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,30,1,1729,47,1,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1935,-4,0,20,-13,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,3,0,2100,9,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,940,0,0,1100,-10,0,0 +2013,8,21,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1020,-8,0,1129,-12,0,0 +2013,9,27,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,935,-3,0,1153,-3,0,0 +2013,5,29,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,-2,0,1630,-5,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1135,27,1,1300,27,1,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,2,0,2320,-18,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,-4,0,1504,-15,0,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1550,48,1,1905,69,1,0 +2013,7,14,7,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,30,1,1625,18,1,0 +2013,5,12,7,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1327,66,1,1545,46,1,0 +2013,10,17,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,40,1,1455,45,1,0 +2013,7,6,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1133,-2,0,1341,-28,0,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,920,-8,0,1035,-10,0,0 +2013,10,24,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1550,8,0,1825,3,0,0 +2013,4,1,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,2,0,1930,-1,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,34,1,1502,41,1,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1250,-2,0,1607,14,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,944,0,0,1205,-13,0,0 +2013,10,19,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,0,0,904,7,0,0 +2013,7,23,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,0,0,805,-3,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-5,0,1355,-12,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2055,98,1,2230,113,1,0 +2013,10,5,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,10,0,1334,9,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,0,0,6,0,0,0 +2013,4,20,6,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1725,0,0,2246,-10,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-2,0,1743,-8,0,0 +2013,8,13,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,46,1,1315,48,1,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,54,1,2110,55,1,0 +2013,9,21,6,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1320,-3,0,1510,-14,0,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1215,-4,0,1411,-23,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,16,1,1810,17,1,0 +2013,5,29,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1825,29,1,2115,19,1,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1330,17,1,1430,15,1,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,745,8,0,1320,-9,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1755,4,0,2020,1,0,0 +2013,7,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1735,6,0,1830,-9,0,0 +2013,6,17,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,605,0,0,745,10,0,0 +2013,6,26,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1130,140,1,1216,133,1,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1150,43,1,1330,33,1,0 +2013,9,20,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1205,5,0,1435,0,0,0 +2013,9,23,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2155,-7,0,546,-15,0,0 +2013,6,21,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,17,1,1846,-1,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-3,0,1940,-10,0,0 +2013,6,8,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-6,0,925,-4,0,0 +2013,4,21,7,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-6,0,1124,3,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1310,72,1,1755,67,1,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1735,24,1,2235,3,0,0 +2013,9,24,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1824,-3,0,1958,-9,0,0 +2013,8,24,6,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,830,-5,0,950,-8,0,0 +2013,9,1,7,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1410,-5,0,1534,-13,0,0 +2013,5,22,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1855,164,1,2215,159,1,0 +2013,9,28,6,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1829,16,1,1939,2,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2244,1,0,15,-6,0,0 +2013,7,1,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1445,42,1,1710,31,1,0 +2013,9,7,6,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1438,-1,0,1620,-9,0,0 +2013,8,1,4,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,6,0,707,9,0,0 +2013,8,29,4,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-1,0,1230,-7,0,0 +2013,4,13,6,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-3,0,1820,-3,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1905,155,1,2230,135,1,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,855,6,0,950,-3,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,630,-1,0,807,-17,0,0 +2013,8,26,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1215,-1,0,1315,-3,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,0,0,800,1,0,0 +2013,8,1,4,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,-9,0,1508,-5,0,0 +2013,8,12,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1845,21,1,2110,20,1,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,1,0,2205,12,0,0 +2013,10,18,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,700,1,0,750,-5,0,0 +2013,4,15,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-5,0,930,-2,0,0 +2013,7,5,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1450,-1,0,1555,-9,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1200,-2,0,1320,-6,0,0 +2013,5,27,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-11,0,1241,-12,0,0 +2013,4,5,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-3,0,1146,-31,0,0 +2013,5,7,2,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-5,0,1630,-8,0,0 +2013,4,2,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1630,1,0,1700,-2,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-3,0,1435,7,0,0 +2013,5,29,3,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1937,-1,0,2110,1,0,0 +2013,7,29,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,605,-6,0,751,-10,0,0 +2013,7,15,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,-8,0,720,-16,0,0 +2013,8,9,5,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,188,1,2022,238,1,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1115,25,1,1455,14,0,0 +2013,10,7,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1230,-2,0,1435,-2,0,0 +2013,10,20,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,24,1,2115,13,0,0 +2013,8,29,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1529,-5,0,1815,1,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,810,-7,0,919,-9,0,0 +2013,8,15,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1654,-2,0,1740,-13,0,0 +2013,8,21,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1006,-1,0,1225,-4,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-6,0,1828,-20,0,0 +2013,4,8,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2340,-3,0,608,-19,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1610,9,0,1715,3,0,0 +2013,8,28,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1815,-3,0,1915,-5,0,0 +2013,10,13,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,924,11,0,1112,39,1,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,740,-6,0,902,-10,0,0 +2013,4,30,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,58,1,2050,45,1,0 +2013,9,24,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,735,-5,0,1258,-19,0,0 +2013,10,5,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1130,7,0,1135,0,0,0 +2013,4,2,2,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1015,59,1,1455,48,1,0 +2013,5,16,4,9E,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1932,3,0,2122,-4,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2100,12,0,2240,-11,0,0 +2013,9,11,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,-6,0,1112,-9,0,0 +2013,6,8,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1320,17,1,1442,14,0,0 +2013,6,29,6,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,27,1,1702,23,1,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2210,0,0,48,-1,0,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1200,1,0,1355,7,0,0 +2013,4,8,1,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-4,0,2033,0,0,0 +2013,7,13,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,0,0,628,16,1,0 +2013,5,10,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,803,-2,0,952,9,0,0 +2013,8,28,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,9,0,1943,14,0,0 +2013,7,4,4,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1612,1,0,1848,-3,0,0 +2013,8,13,2,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-1,0,1122,0,0,0 +2013,7,31,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-15,0,922,-25,0,0 +2013,5,11,6,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1305,15,1,0 +2013,4,13,6,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,,809,0,1,1 +2013,7,27,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-4,0,623,-18,0,0 +2013,7,5,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,730,-12,0,845,-13,0,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-1,0,1400,-6,0,0 +2013,10,21,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1058,-6,0,1132,-6,0,0 +2013,10,27,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,7,0,1805,0,0,0 +2013,5,29,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,-4,0,750,-23,0,0 +2013,10,2,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,830,-6,0,1126,-8,0,0 +2013,10,3,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1605,29,1,1650,31,1,0 +2013,5,8,3,EV,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,0,,1524,0,1,1 +2013,10,30,3,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1735,-4,0,2019,-21,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1502,6,0,1700,-4,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,914,-7,0,1031,-12,0,0 +2013,8,1,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,538,-9,0,655,-15,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,828,5,0,936,-10,0,0 +2013,10,9,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1435,-4,0,1600,-10,0,0 +2013,6,9,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2055,-2,0,2120,-10,0,0 +2013,5,3,5,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-6,0,840,-29,0,0 +2013,8,24,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,2,0,1400,0,0,0 +2013,4,21,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,850,45,1,1010,31,1,0 +2013,8,3,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1930,-3,0,2050,-13,0,0 +2013,9,13,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-2,0,2031,23,1,0 +2013,6,4,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1602,-3,0,1744,-2,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,752,43,1,845,31,1,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1050,1,0,1525,-12,0,0 +2013,8,22,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1300,0,,1505,0,1,1 +2013,7,10,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,0,0,756,-2,0,0 +2013,6,18,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1739,0,,1950,0,1,1 +2013,7,10,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1748,81,1,2035,108,1,0 +2013,4,30,2,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,805,-7,0,1010,-27,0,0 +2013,5,20,1,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,4,0,902,-7,0,0 +2013,6,28,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,-6,0,950,-14,0,0 +2013,5,9,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,-1,0,1135,-7,0,0 +2013,7,8,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,1,0,1824,-14,0,0 +2013,10,11,5,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,0,0,1130,-19,0,0 +2013,10,21,1,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1902,-6,0,2011,-18,0,0 +2013,8,13,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,830,-16,0,0 +2013,8,11,7,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1000,-2,0,1555,-17,0,0 +2013,10,23,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11042,Cleveland-Hopkins International,Cleveland,OH,1110,13,0,1434,-7,0,0 +2013,4,22,1,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1057,-6,0,1448,-18,0,0 +2013,10,26,6,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1335,8,0,1615,-7,0,0 +2013,4,6,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-5,0,804,-14,0,0 +2013,9,28,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,920,-1,0,1045,10,0,0 +2013,4,4,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,11,0,1400,7,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-1,0,1255,-7,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1635,23,1,1900,6,0,0 +2013,6,23,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,-2,0,2238,12,0,0 +2013,7,8,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1720,-2,0,1900,-11,0,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1944,-2,0,2245,-1,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,743,-2,0,846,-1,0,0 +2013,6,4,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-2,0,1607,-11,0,0 +2013,6,5,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-8,0,1324,-10,0,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1105,-1,0,1430,-13,0,0 +2013,6,21,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1435,11,0,1635,-3,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,825,4,0,1030,7,0,0 +2013,5,21,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1530,7,0,1555,4,0,0 +2013,4,20,6,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1650,5,0,1910,10,0,0 +2013,5,12,7,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1011,-6,0,1159,-13,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1600,48,1,1830,66,1,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1131,-1,0,1408,0,0,0 +2013,6,24,1,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,742,-4,0,838,2,0,0 +2013,9,24,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1015,-3,0,1120,-2,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,15,1,931,0,0,0 +2013,10,3,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1417,-4,0,1523,-6,0,0 +2013,4,11,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,15,1,1812,13,0,0 +2013,7,31,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1350,0,0,1550,-24,0,0 +2013,5,26,7,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,0,0,1545,-6,0,0 +2013,6,30,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,14,0,1940,14,0,0 +2013,8,11,7,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-4,0,1225,-7,0,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1726,-2,0,1905,-5,0,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1009,44,1,1437,39,1,0 +2013,8,3,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,1508,-2,0,0 +2013,5,6,1,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,850,-6,0,950,0,0,0 +2013,7,12,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,29,1,1925,19,1,0 +2013,5,23,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,89,1,2018,65,1,0 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1110,1,0,1638,-17,0,0 +2013,10,21,1,9E,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-5,0,1331,-7,0,0 +2013,5,20,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1140,57,1,1455,52,1,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-4,0,1016,-8,0,0 +2013,8,21,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1605,3,0,1805,-10,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,944,0,0,1109,-1,0,0 +2013,4,15,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1545,10,0,1952,25,1,0 +2013,9,1,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1455,1,0,1740,2,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,204,1,1515,208,1,0 +2013,8,23,5,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,17,1,1950,5,0,0 +2013,9,6,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1919,-9,0,2119,-25,0,0 +2013,5,17,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,90,1,1848,72,1,0 +2013,9,25,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-9,0,1030,-4,0,0 +2013,10,15,2,9E,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1200,-8,0,1349,-13,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1116,-2,0,1336,-19,0,0 +2013,9,13,5,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-5,0,922,-15,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1307,-4,0,1629,-10,0,0 +2013,9,13,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,912,12,0,1115,15,1,0 +2013,8,30,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1315,245,1,1605,0,1,1 +2013,8,4,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2236,-9,0,44,-22,0,0 +2013,4,27,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-6,0,2134,-11,0,0 +2013,8,16,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,0,0,1415,-6,0,0 +2013,10,15,2,OO,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,-1,0,1414,16,1,0 +2013,4,22,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1157,52,1,1334,44,1,0 +2013,10,25,5,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1940,-7,0,2059,-7,0,0 +2013,5,3,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-3,0,1352,6,0,0 +2013,10,1,2,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,2001,-10,0,2113,-5,0,0 +2013,9,14,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-6,0,840,-4,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,-1,0,1543,-2,0,0 +2013,4,30,2,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2340,-9,0,710,1,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,920,6,0,1050,-4,0,0 +2013,4,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1855,19,1,2005,22,1,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1640,10,0,2320,9,0,0 +2013,5,5,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1115,17,1,1215,14,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,22,1,1300,12,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1538,1,0,1705,-4,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,-3,0,1141,-27,0,0 +2013,6,28,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-10,0,1237,-20,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,10,0,1809,15,1,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1455,5,0,1600,7,0,0 +2013,6,6,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,109,1,1459,108,1,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1840,67,1,2010,69,1,0 +2013,5,29,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,-2,0,1733,-9,0,0 +2013,5,25,6,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1055,-2,0,1310,-7,0,0 +2013,5,8,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-7,0,1450,-8,0,0 +2013,5,22,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-9,0,1424,-18,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1105,0,,1430,0,1,1 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2200,34,1,2258,16,1,0 +2013,4,4,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-8,0,724,-21,0,0 +2013,6,7,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-6,0,1733,-23,0,0 +2013,9,25,3,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1614,-6,0,1909,-2,0,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,635,-6,0,820,-10,0,0 +2013,7,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1650,0,,1805,0,1,1 +2013,9,27,5,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1336,-2,0,1647,-16,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,745,-1,0,919,-13,0,0 +2013,4,22,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,42,1,753,33,1,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1925,20,1,2155,20,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1725,0,0,1953,-27,0,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,745,0,,905,0,1,1 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,28,1,1313,26,1,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,21,1,1701,58,1,0 +2013,5,12,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,2,0,1250,-6,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,700,-2,0,830,-2,0,0 +2013,4,19,5,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,717,-6,0,737,-22,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,900,1,0,1027,19,1,0 +2013,9,19,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,747,-2,0,901,-9,0,0 +2013,9,30,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,1,0,619,12,0,0 +2013,7,28,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1544,-6,0,1735,-16,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,22,1,2345,19,1,0 +2013,6,18,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2205,-7,0,2323,-18,0,0 +2013,9,12,4,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,820,3,0,1405,-3,0,0 +2013,4,17,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1415,164,1,2011,204,1,0 +2013,6,19,3,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,705,-1,0,720,-3,0,0 +2013,9,21,6,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,10,0,550,0,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1207,3,0,1349,11,0,0 +2013,4,14,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2020,-3,0,2125,-9,0,0 +2013,6,27,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,950,-3,0,1240,-10,0,0 +2013,8,24,6,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,810,0,0,1620,-2,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,-2,0,2040,0,0,0 +2013,8,25,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1301,-10,0,1550,-23,0,0 +2013,9,4,3,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1805,-10,0,2105,-10,0,0 +2013,7,3,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,1,0,1230,-2,0,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1450,6,0,1645,8,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1355,15,1,1610,9,0,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,111,1,0,619,-4,0,0 +2013,8,20,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,740,-2,0,1540,-2,0,0 +2013,7,27,6,OO,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1643,0,0,1729,5,0,0 +2013,8,15,4,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1317,-6,0,1505,2,0,0 +2013,5,27,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-4,0,1530,-2,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1454,4,0,1712,0,0,0 +2013,5,10,5,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1435,-4,0,1720,-11,0,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1845,18,1,2154,19,1,0 +2013,7,16,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1540,48,1,1810,27,1,0 +2013,10,25,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-3,0,1904,-11,0,0 +2013,7,21,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,36,1,607,49,1,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1738,27,1,1836,11,0,0 +2013,9,19,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-9,0,1349,-5,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,2032,10,0,2,-8,0,0 +2013,5,28,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-7,0,1220,-6,0,0 +2013,7,31,3,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1917,0,0,2054,0,0,0 +2013,7,22,1,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1725,28,1,1730,28,1,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,8,0,1650,-15,0,0 +2013,6,21,5,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,1,0,1710,-5,0,0 +2013,8,12,1,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1945,12,0,2244,8,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,6,0,55,0,0,0 +2013,8,20,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1125,7,0,1245,3,0,0 +2013,7,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1505,-2,0,1755,1,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1255,-4,0,1845,88,1,0 +2013,7,2,2,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-1,0,1220,15,1,0 +2013,10,4,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,920,-9,0,1025,-13,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,5,0,1110,-8,0,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2150,-1,0,25,-12,0,0 +2013,4,26,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,26,1,2357,27,1,0 +2013,4,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,3,0,1525,-2,0,0 +2013,8,18,7,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,730,-3,0,1020,-11,0,0 +2013,10,18,5,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-12,0,1100,1,0,0 +2013,6,2,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,720,-5,0,928,-17,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1600,2,0,1830,4,0,0 +2013,10,8,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,-9,0,2235,-19,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,-3,0,1145,-6,0,0 +2013,5,28,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,9,0,1930,10,0,0 +2013,4,21,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,914,-10,0,1130,-17,0,0 +2013,6,30,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1220,62,1,1315,60,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1100,165,1,1322,135,1,0 +2013,5,3,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1445,0,0,1640,-8,0,0 +2013,10,25,5,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,720,-5,0,755,-2,0,0 +2013,7,25,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,515,-6,0,855,-12,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,826,-1,0,919,-6,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,747,-4,0,914,-7,0,0 +2013,5,15,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,800,-4,0,925,11,0,0 +2013,6,5,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1440,-3,0,1628,-17,0,0 +2013,5,12,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1250,-3,0,1425,-45,0,0 +2013,7,31,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-1,0,955,-24,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1510,15,1,1725,9,0,0 +2013,5,24,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,751,-11,0,0 +2013,9,29,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1703,-2,0,1830,-8,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1633,49,1,1945,46,1,0 +2013,5,22,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,645,-8,0,808,-11,0,0 +2013,9,15,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1247,-2,0,1637,-1,0,0 +2013,8,14,3,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-2,0,1019,3,0,0 +2013,5,22,3,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,0,0,1950,6,0,0 +2013,9,11,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-7,0,1308,-15,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1007,-8,0,1150,-10,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,855,-2,0,1040,-9,0,0 +2013,5,20,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,640,0,0,740,-5,0,0 +2013,8,5,1,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1653,-7,0,1757,-10,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1610,-3,0,1820,-15,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2110,42,1,2215,32,1,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1900,30,1,2113,28,1,0 +2013,8,7,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-7,0,1014,-11,0,0 +2013,8,27,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1657,-7,0,1824,-11,0,0 +2013,9,18,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,815,-1,0,930,-5,0,0 +2013,5,28,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,853,-7,0,1027,5,0,0 +2013,9,8,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,940,-3,0,1010,-11,0,0 +2013,5,28,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1946,-6,0,2300,-32,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,26,1,1312,28,1,0 +2013,7,9,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1315,-1,0,1435,-20,0,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1230,98,1,1555,96,1,0 +2013,6,22,6,YV,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1700,-7,0,1844,11,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,805,0,0,1145,-12,0,0 +2013,4,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1400,30,1,1515,22,1,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2155,-2,0,2345,-12,0,0 +2013,7,20,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1525,-5,0,1859,33,1,0 +2013,5,4,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1642,-7,0,1930,-13,0,0 +2013,8,19,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,815,-5,0,930,-12,0,0 +2013,7,24,3,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,820,16,1,1026,17,1,0 +2013,4,20,6,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1023,-6,0,1315,-14,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,25,1,652,28,1,0 +2013,10,29,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-5,0,2020,5,0,0 +2013,9,12,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,755,-1,0,855,0,0,0 +2013,9,21,6,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-3,0,1021,-34,0,0 +2013,5,9,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1300,-2,0,1415,10,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1535,-7,0,1735,-9,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1350,8,0,1535,4,0,0 +2013,5,25,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,87,1,1934,60,1,0 +2013,6,5,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1956,4,0,2115,-1,0,0 +2013,9,6,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1239,5,0,1749,8,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1410,11,0,1840,3,0,0 +2013,10,5,6,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,630,4,0,945,3,0,0 +2013,7,14,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,2010,-2,0,2105,-19,0,0 +2013,5,12,7,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1857,-16,0,2208,-2,0,0 +2013,4,15,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1730,3,0,1905,-7,0,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,920,0,0,1112,-8,0,0 +2013,8,17,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,6,0,1821,5,0,0 +2013,7,14,7,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1245,6,0,1425,-11,0,0 +2013,7,5,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,-3,0,1033,-5,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1225,8,0,1430,-12,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,700,-1,0,825,3,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2130,32,1,2250,27,1,0 +2013,8,20,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-1,0,1455,8,0,0 +2013,6,13,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-9,0,955,-16,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,600,3,0,1420,-25,0,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-6,0,1328,-8,0,0 +2013,5,16,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1935,11,0,2328,9,0,0 +2013,7,22,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1425,-3,0,1615,-4,0,0 +2013,4,26,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,-1,0,1311,59,1,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-3,0,2327,-11,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,-3,0,2100,-19,0,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-4,0,1729,10,0,0 +2013,9,27,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,812,-6,0,0 +2013,8,8,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,738,-11,0,855,-25,0,0 +2013,5,16,4,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1104,-11,0,1414,-35,0,0 +2013,7,16,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1305,-2,0,1525,2,0,0 +2013,7,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,730,37,1,1257,21,1,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,715,-2,0,810,-6,0,0 +2013,7,17,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1015,64,1,1140,75,1,0 +2013,7,2,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,720,-1,0,919,-3,0,0 +2013,4,1,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,752,-9,0,940,2,0,0 +2013,8,4,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1657,-5,0,1746,-2,0,0 +2013,10,1,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-5,0,1304,-7,0,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,31,1,2300,30,1,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1824,32,1,2135,15,1,0 +2013,6,16,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-6,0,840,-12,0,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,2,0,2215,-17,0,0 +2013,6,18,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-5,0,747,-3,0,0 +2013,4,19,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-2,0,917,-12,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,730,-5,0,1040,-19,0,0 +2013,9,18,3,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-6,0,855,-16,0,0 +2013,9,15,7,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1801,-9,0,2027,-21,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-1,0,1227,-23,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,2,0,1845,-15,0,0 +2013,6,1,6,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1141,-4,0,1437,-7,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1430,20,1,1550,8,0,0 +2013,5,23,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1246,56,1,1430,56,1,0 +2013,7,8,1,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,119,1,629,138,1,0 +2013,10,31,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,0,0,2034,-5,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1001,-4,0,1300,-13,0,0 +2013,4,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1500,18,1,1610,9,0,0 +2013,8,19,1,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2300,-4,0,615,-14,0,0 +2013,4,29,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,853,-4,0,1025,-1,0,0 +2013,4,28,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2038,-4,0,2200,6,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,620,1,0,1230,-24,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1001,-2,0,1227,-13,0,0 +2013,4,12,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,0,0,1530,-3,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-4,0,1504,-19,0,0 +2013,4,16,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-7,0,1855,9,0,0 +2013,7,30,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1820,-1,0,2005,22,1,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,3,0,1150,0,0,0 +2013,9,7,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1840,-5,0,1957,-1,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1155,8,0,1300,6,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1445,-1,0,1635,-18,0,0 +2013,10,29,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,6,0,1316,11,0,0 +2013,4,6,6,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1245,-4,0,1403,-1,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,42,1,1453,85,1,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,11,0,2249,-4,0,0 +2013,4,24,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,-2,0,937,8,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1555,11,0,1755,6,0,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,15,1,1659,18,1,0 +2013,8,10,6,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-7,0,1017,-9,0,0 +2013,7,22,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1635,10,0,1805,-3,0,0 +2013,4,8,1,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1155,0,0,1455,-9,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,725,-10,0,1045,1,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-3,0,1505,-15,0,0 +2013,6,26,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,630,-3,0,825,16,1,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-6,0,859,-13,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1950,41,1,2325,39,1,0 +2013,9,28,6,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-10,0,1750,-32,0,0 +2013,6,4,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-7,0,1120,-7,0,0 +2013,4,1,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1030,-6,0,1150,-23,0,0 +2013,10,27,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,9,0,2020,11,0,0 +2013,4,12,5,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1530,42,1,1849,49,1,0 +2013,7,17,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,933,-3,0,1332,-16,0,0 +2013,6,15,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1118,-2,0,1214,9,0,0 +2013,7,26,5,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,14,0,2133,10,0,0 +2013,9,25,3,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,113,1,1524,106,1,0 +2013,9,22,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,34,1,2056,16,1,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1550,7,0,1855,9,0,0 +2013,5,10,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1845,62,1,2015,56,1,0 +2013,4,26,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-5,0,1438,27,1,0 +2013,6,19,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,635,-5,0,745,-4,0,0 +2013,7,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,12,0,1549,-1,0,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,19,1,1100,-7,0,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,700,-3,0,831,9,0,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,903,-7,0,1029,-6,0,0 +2013,6,16,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1723,20,1,1847,24,1,0 +2013,7,16,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1805,-3,0,1930,-18,0,0 +2013,6,27,4,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1743,10,0,2034,18,1,0 +2013,4,18,4,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1955,25,1,2115,51,1,0 +2013,5,22,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1205,8,0,1315,10,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,36,1,1535,34,1,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-8,0,1033,-6,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1230,25,1,1340,22,1,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,8,0,1533,2,0,0 +2013,5,12,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,815,-10,0,0 +2013,4,26,5,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,-3,0,1555,-5,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-5,0,1235,-9,0,0 +2013,8,12,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,-3,0,2022,-11,0,0 +2013,6,4,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1542,-2,0,1736,-12,0,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,920,-1,0,1430,-2,0,0 +2013,6,22,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-7,0,2003,5,0,0 +2013,5,25,6,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,918,0,0,1215,-11,0,0 +2013,5,23,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-17,0,906,6,0,0 +2013,8,26,1,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1344,-3,0,1641,0,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,605,-2,0,725,-4,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1429,-6,0,1655,-21,0,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1020,0,0,1200,9,0,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,635,0,,830,0,1,1 +2013,7,28,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,945,-5,0,1415,-21,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1645,129,1,1827,133,1,0 +2013,6,23,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2007,0,,2213,0,1,1 +2013,6,7,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1815,-2,0,1849,1,0,0 +2013,6,3,1,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,-1,0,832,42,1,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1240,-2,0,1340,-10,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,900,3,0,1033,11,0,0 +2013,4,22,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,0,,909,0,1,1 +2013,9,8,7,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-6,0,2056,-18,0,0 +2013,7,18,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-7,0,1821,-11,0,0 +2013,7,14,7,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-7,0,1229,-1,0,0 +2013,4,24,3,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1555,93,1,1800,88,1,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-5,0,1252,-21,0,0 +2013,4,12,5,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1830,-1,0,2030,-11,0,0 +2013,8,4,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,730,0,0,850,-4,0,0 +2013,4,29,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1519,-4,0,1639,-11,0,0 +2013,7,21,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1659,5,0,2021,7,0,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1950,27,1,2207,23,1,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,745,-3,0,845,-8,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1238,-5,0,1805,-13,0,0 +2013,4,30,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,-4,0,2333,-33,0,0 +2013,7,10,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-8,0,815,-14,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2005,-6,0,2208,-8,0,0 +2013,4,23,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,700,-6,0,906,-12,0,0 +2013,5,2,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,35,1,2125,30,1,0 +2013,6,22,6,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1730,77,1,1941,77,1,0 +2013,8,17,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1924,9,0,2237,3,0,0 +2013,5,31,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-6,0,1934,-26,0,0 +2013,5,25,6,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,6,0,2300,-17,0,0 +2013,8,25,7,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1223,-1,0,1438,-25,0,0 +2013,4,9,2,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,620,-1,0,730,-4,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1552,-5,0,1946,-23,0,0 +2013,10,19,6,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1410,-10,0,1610,-31,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,856,0,0,1721,-22,0,0 +2013,9,2,1,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1743,47,1,1855,46,1,0 +2013,6,10,1,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,130,1,2125,125,1,0 +2013,10,22,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,-5,0,2328,-8,0,0 +2013,4,14,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-1,0,1255,-4,0,0 +2013,4,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,0,0,1820,2,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,68,1,2233,58,1,0 +2013,4,4,4,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1744,-9,0,2109,-10,0,0 +2013,4,15,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,0,0,2025,1,0,0 +2013,5,12,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,600,-5,0,720,-10,0,0 +2013,5,11,6,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1020,4,0,1140,-13,0,0 +2013,5,2,4,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,1,0,830,-12,0,0 +2013,6,13,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,0,,2119,0,1,1 +2013,4,30,2,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,905,-7,0,1101,-26,0,0 +2013,6,20,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,735,-6,0,911,-2,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1855,97,1,2020,100,1,0 +2013,5,5,7,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,-10,0,1014,-12,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1525,14,0,1855,-3,0,0 +2013,6,29,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,9,0,1440,6,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1445,3,0,1550,2,0,0 +2013,6,24,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2230,39,1,425,19,1,0 +2013,7,18,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1030,7,0,1205,0,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2100,24,1,2230,11,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,920,14,0,1225,11,0,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-7,0,2307,-24,0,0 +2013,5,28,2,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,33,1,1937,14,0,0 +2013,10,5,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1742,-7,0,2149,-13,0,0 +2013,4,25,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1950,-3,0,2209,-6,0,0 +2013,5,22,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,-3,0,1735,-7,0,0 +2013,9,4,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-4,0,1346,-6,0,0 +2013,4,10,3,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1605,-2,0,1924,-19,0,0 +2013,6,8,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1146,-3,0,1438,-22,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-2,0,1826,-8,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-6,0,1236,-26,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,20,1,1540,19,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1240,5,0,1403,5,0,0 +2013,6,4,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,820,-8,0,935,1,0,0 +2013,4,2,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,910,0,0,1110,-10,0,0 +2013,7,12,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,805,-1,0,820,-13,0,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-3,0,1640,2,0,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1850,12,0,2110,11,0,0 +2013,4,29,1,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1536,-3,0,1845,-10,0,0 +2013,5,8,3,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,630,-4,0,840,-13,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1929,0,0,2358,-10,0,0 +2013,9,8,7,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1150,0,0,1340,-14,0,0 +2013,9,12,4,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,361,1,2135,347,1,0 +2013,6,5,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,851,-7,0,1138,-17,0,0 +2013,6,17,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,2,0,1710,14,0,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,901,5,0,1143,32,1,0 +2013,4,16,2,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1310,14,0,1510,8,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1510,4,0,1630,-7,0,0 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1255,12,0,1610,4,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,12,0,1445,-2,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1750,200,1,2022,198,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1650,0,0,1900,-20,0,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2020,0,0,2140,-4,0,0 +2013,10,27,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-6,0,802,-4,0,0 +2013,8,31,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1115,-2,0,1315,-12,0,0 +2013,9,13,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1500,0,0,1800,-13,0,0 +2013,5,24,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,836,-5,0,900,-12,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,845,-4,0,1029,8,0,0 +2013,10,2,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1509,204,1,1731,197,1,0 +2013,5,28,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1320,1,0,1528,-7,0,0 +2013,5,30,4,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1315,1,0,1616,-3,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-5,0,1745,-8,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-1,0,1158,-7,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1020,14,0,1110,17,1,0 +2013,4,24,3,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1000,-2,0,1225,-8,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,740,-2,0,1125,-14,0,0 +2013,5,30,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-5,0,1025,-5,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,1,0,1705,-6,0,0 +2013,7,19,5,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,600,-3,0,745,-9,0,0 +2013,9,26,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1240,7,0,1335,21,1,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1247,-3,0,1359,-11,0,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,13,0,1700,11,0,0 +2013,7,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,14,0,810,-3,0,0 +2013,10,5,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-4,0,1110,-3,0,0 +2013,8,30,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1313,-3,0,1645,-16,0,0 +2013,7,1,1,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1150,203,1,1443,234,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,-6,0,2245,2,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,-8,0,1150,0,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,0,0,930,-2,0,0 +2013,7,27,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,748,-6,0,1030,-26,0,0 +2013,9,10,2,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1259,-3,0,1748,-2,0,0 +2013,6,17,1,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,147,1,739,142,1,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1205,-5,0,1318,-11,0,0 +2013,7,20,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-5,0,1119,-7,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,45,1,2330,23,1,0 +2013,7,1,1,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,747,-1,0,1215,-1,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1035,7,0,1310,-8,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1125,0,0,1335,2,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,9,0,1737,15,1,0 +2013,9,25,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,854,12,0,0 +2013,6,8,6,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1632,-4,0,1752,-10,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,-1,0,2324,-14,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,2,0,1713,0,0,0 +2013,9,18,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-5,0,1403,-5,0,0 +2013,4,4,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-1,0,2215,-9,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1050,7,0,1150,-3,0,0 +2013,6,30,7,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1725,-7,0,2015,-12,0,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1155,-3,0,1305,-6,0,0 +2013,6,24,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1020,-4,0,1228,-9,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,20,1,2225,18,1,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,6,0,2310,-21,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1635,1,0,1805,-9,0,0 +2013,4,5,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,0,0,940,-7,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1315,5,0,1540,-4,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-5,0,1320,-11,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1255,34,1,1345,38,1,0 +2013,9,29,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1500,-3,0,1724,-23,0,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,0,0,2344,0,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,2,0,1505,-4,0,0 +2013,5,23,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2330,-9,0,730,1,0,0 +2013,6,3,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,655,-2,0,920,-7,0,0 +2013,8,15,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1636,-1,0,1856,-13,0,0 +2013,4,9,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2000,1,0,2100,-9,0,0 +2013,6,23,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,5,0,1710,-44,0,0 +2013,6,28,5,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1845,-3,0,2017,0,0,0 +2013,9,7,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-6,0,1750,-9,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1850,57,1,1953,50,1,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-1,0,2342,-3,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,950,-9,0,1024,-3,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1045,4,0,1250,-6,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1850,-3,0,2207,-1,0,0 +2013,9,7,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,-6,0,1631,-31,0,0 +2013,8,6,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1900,-2,0,2025,-1,0,0 +2013,9,17,2,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1428,-5,0,1605,-6,0,0 +2013,7,1,1,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,8,0,1020,-7,0,0 +2013,9,24,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1816,-7,0,1925,-19,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,0,0,1050,-1,0,0 +2013,9,3,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,-5,0,1904,-16,0,0 +2013,9,23,1,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,850,89,1,1025,81,1,0 +2013,8,19,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1555,6,0,1715,12,0,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1653,-2,0,1805,0,0,0 +2013,10,17,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1446,96,1,1706,101,1,0 +2013,5,29,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-4,0,1847,-16,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,19,1,1200,22,1,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1921,-3,0,2013,-15,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,0,0,1210,-16,0,0 +2013,6,1,6,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1335,-15,0,1556,-22,0,0 +2013,8,29,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,5,0,1048,-5,0,0 +2013,4,29,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2200,1,0,2355,-11,0,0 +2013,5,27,1,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,2,0,10,5,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,614,-2,0,1055,-8,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,742,18,1,1052,26,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2145,2,0,2245,0,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1804,32,1,2126,117,1,0 +2013,6,30,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1933,10,0,2100,26,1,0 +2013,8,10,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1455,-2,0,1602,-13,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,9,0,2340,-8,0,0 +2013,10,12,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,900,-3,0,1235,2,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,1,0,2340,-5,0,0 +2013,5,21,2,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,14,0,832,11,0,0 +2013,8,15,4,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2250,-7,0,18,-21,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,41,1,1005,25,1,0 +2013,9,8,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,1005,-3,0,1544,5,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1349,1,0,1440,-9,0,0 +2013,5,28,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,837,-3,0,1031,-15,0,0 +2013,7,23,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,-6,0,1912,8,0,0 +2013,6,28,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1755,31,1,1948,15,1,0 +2013,5,8,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1425,77,1,1445,74,1,0 +2013,7,10,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1047,-7,0,1505,-15,0,0 +2013,9,1,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,920,2,0,1025,6,0,0 +2013,6,26,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1118,75,1,1230,78,1,0 +2013,4,24,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,840,-10,0,0 +2013,10,31,4,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1825,-6,0,2105,16,1,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,4,0,1710,39,1,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-5,0,2152,-6,0,0 +2013,6,25,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,-3,0,842,-4,0,0 +2013,7,31,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,-3,0,1945,-7,0,0 +2013,10,9,3,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-3,0,1630,1,0,0 +2013,4,6,6,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,742,-12,0,1045,-21,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-6,0,1019,-4,0,0 +2013,6,10,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1011,-4,0,1153,-3,0,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-7,0,2004,-17,0,0 +2013,9,20,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1334,-31,0,0 +2013,6,6,4,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,0,0,1620,2,0,0 +2013,9,30,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,910,-5,0,1025,-4,0,0 +2013,6,3,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-2,0,1505,0,0,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1545,-2,0,1648,-3,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2210,27,1,2327,36,1,0 +2013,6,24,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1653,1,0,1744,0,0,0 +2013,9,5,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-6,0,853,-14,0,0 +2013,9,28,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,920,-1,0,1040,1,0,0 +2013,5,8,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-10,0,1320,-26,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1750,-5,0,1934,-5,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,839,1,0,1450,-11,0,0 +2013,10,11,5,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1905,4,0,2131,-30,0,0 +2013,8,9,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,2,0,1825,-6,0,0 +2013,4,27,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1400,-2,0,1500,-4,0,0 +2013,6,1,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1840,-3,0,2000,-13,0,0 +2013,4,2,2,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1135,7,0,1745,-14,0,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,758,-5,0,922,-3,0,0 +2013,8,24,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1900,-13,0,2135,-13,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2145,23,1,2305,20,1,0 +2013,5,4,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-1,0,1711,-6,0,0 +2013,6,28,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1710,26,1,1840,39,1,0 +2013,10,23,3,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1010,-8,0,1225,-10,0,0 +2013,8,19,1,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,25,1,1945,16,1,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1201,-1,0,1317,-17,0,0 +2013,8,25,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,940,0,0,1110,-33,0,0 +2013,5,6,1,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,820,224,1,1045,204,1,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2030,-4,0,2253,-20,0,0 +2013,4,2,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,635,5,0,831,4,0,0 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,-4,0,2044,4,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1355,-2,0,1842,-2,0,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,625,-4,0,820,-4,0,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,-1,0,1917,2,0,0 +2013,4,29,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1935,101,1,2035,108,1,0 +2013,8,3,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1145,-1,0,1255,-15,0,0 +2013,6,27,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,190,1,855,176,1,0 +2013,10,18,5,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,-5,0,1255,-11,0,0 +2013,9,7,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,0,0,1329,-9,0,0 +2013,9,10,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-5,0,1203,18,1,0 +2013,10,19,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1251,-1,0,0 +2013,9,19,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1859,11,0,2049,17,1,0 +2013,8,7,3,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,829,-2,0,1004,8,0,0 +2013,10,21,1,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,751,1,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1233,12,0,1729,9,0,0 +2013,8,16,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,909,-6,0,1152,-9,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,0,0,1820,11,0,0 +2013,7,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,845,-1,0,1215,-4,0,0 +2013,6,5,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-3,0,1517,-7,0,0 +2013,5,30,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,715,-11,0,1218,-26,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,-1,0,1450,-10,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-6,0,2320,-18,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,640,-3,0,856,-25,0,0 +2013,10,19,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,625,0,0,745,-8,0,0 +2013,6,23,7,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1720,14,0,1900,13,0,0 +2013,6,17,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1055,7,0,1214,-8,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1033,-2,0,1311,-7,0,0 +2013,7,19,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,745,2,0,1610,-9,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2140,-4,0,10,-5,0,0 +2013,6,15,6,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,758,-12,0,0 +2013,4,21,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,840,8,0,1055,26,1,0 +2013,5,5,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-5,0,2140,-14,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1444,45,1,1606,73,1,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,5,0,1850,3,0,0 +2013,9,25,3,AA,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1840,-14,0,2010,13,0,0 +2013,7,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,30,-5,0,547,-20,0,0 +2013,8,5,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2135,1,0,2325,-28,0,0 +2013,8,26,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,-4,0,1030,-15,0,0 +2013,10,20,7,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-6,0,912,4,0,0 +2013,4,26,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,729,0,0,854,11,0,0 +2013,8,26,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2205,-9,0,2257,-16,0,0 +2013,6,29,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,5,0,1050,18,1,0 +2013,6,6,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2115,29,1,2210,43,1,0 +2013,10,15,2,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,710,-2,0,1439,-19,0,0 +2013,8,18,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,-7,0,1811,-13,0,0 +2013,5,13,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-1,0,1811,-2,0,0 +2013,7,27,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-1,0,900,-15,0,0 +2013,6,3,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-1,0,1840,-16,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1858,-1,0,2028,-11,0,0 +2013,4,9,2,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,725,203,1,900,189,1,0 +2013,7,30,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1625,20,1,1806,19,1,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,0,0,2111,-38,0,0 +2013,9,15,7,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,-4,0,2140,-24,0,0 +2013,9,23,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-3,0,1315,-10,0,0 +2013,10,11,5,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,23,1,1524,17,1,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1751,-2,0,2229,-12,0,0 +2013,6,2,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-4,0,905,-6,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-8,0,24,6,0,0 +2013,7,22,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1925,1,0,2040,-5,0,0 +2013,8,2,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,-9,0,927,-6,0,0 +2013,4,19,5,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1025,0,0,1325,-14,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1410,4,0,1550,2,0,0 +2013,9,2,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,0,0,1234,-20,0,0 +2013,6,15,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-2,0,607,-17,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,-4,0,1555,-8,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1600,2,0,1705,3,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1348,0,0,1505,-21,0,0 +2013,4,19,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,545,-8,0,707,-8,0,0 +2013,5,30,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-7,0,1245,-16,0,0 +2013,8,27,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1415,-9,0,1758,7,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-4,0,1813,0,0,0 +2013,8,7,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,71,1,1630,87,1,0 +2013,8,3,6,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,900,-2,0,1220,-6,0,0 +2013,6,1,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1821,-5,0,2015,-19,0,0 +2013,8,24,6,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,955,-4,0,1445,-11,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1420,2,0,1525,-2,0,0 +2013,7,15,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-2,0,1409,0,0,0 +2013,7,27,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1400,3,0,1545,34,1,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,-5,0,1710,-11,0,0 +2013,4,1,1,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1030,2,0,1130,0,0,0 +2013,10,31,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,11,0,1559,-19,0,0 +2013,5,25,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,11,0,1911,0,0,0 +2013,8,14,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1820,-6,0,2052,-17,0,0 +2013,5,12,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1437,-7,0,1615,-21,0,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1821,-2,0,2102,-7,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,0,0,1620,-9,0,0 +2013,6,21,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1810,13,0,1925,8,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1305,-3,0,1412,-10,0,0 +2013,8,18,7,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,27,1,1423,11,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1005,20,1,1127,11,0,0 +2013,4,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,921,-1,0,1044,-12,0,0 +2013,9,1,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,630,-10,0,726,-10,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1100,-2,0,1200,0,1,1 +2013,5,14,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-6,0,839,4,0,0 +2013,10,29,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,-6,0,2247,-8,0,0 +2013,8,25,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,-5,0,720,1,0,0 +2013,8,16,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1710,-5,0,1923,15,1,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,21,1,1320,10,0,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,700,1,0,925,-21,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,-2,0,1618,-17,0,0 +2013,9,13,5,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1456,-1,0,1637,2,0,0 +2013,7,7,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,930,-10,0,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,740,7,0,1010,2,0,0 +2013,5,17,5,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1238,-10,0,1459,-13,0,0 +2013,4,6,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1919,-10,0,2206,-18,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,555,0,0,1148,0,0,0 +2013,7,11,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,904,-11,0,0 +2013,6,9,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,30,1,1633,27,1,0 +2013,5,2,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-5,0,1349,-11,0,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,40,1,345,28,1,0 +2013,9,6,5,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1820,52,1,2109,39,1,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-2,0,2326,-5,0,0 +2013,8,7,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-1,0,1415,13,0,0 +2013,7,28,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-3,0,1516,-3,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1025,3,0,1115,-5,0,0 +2013,10,6,7,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,2015,27,1,2155,16,1,0 +2013,6,1,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,2003,-8,0,0 +2013,8,21,3,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,-4,0,1844,-10,0,0 +2013,7,25,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,-8,0,1135,15,1,0 +2013,10,2,3,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,835,-3,0,1110,-9,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,72,1,1920,72,1,0 +2013,10,21,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-5,0,2104,-14,0,0 +2013,6,6,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1040,15,1,1200,10,0,0 +2013,8,2,5,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1755,5,0,2030,-5,0,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1421,68,1,1753,47,1,0 +2013,5,7,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1840,2,0,2055,-1,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,5,0,2051,10,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,2,0,922,-12,0,0 +2013,7,1,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2115,10,0,2348,-9,0,0 +2013,10,9,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,-6,0,1142,-4,0,0 +2013,4,11,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,840,4,0,1038,-19,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1939,-4,0,2234,-51,0,0 +2013,7,16,2,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,919,-8,0,1100,-10,0,0 +2013,6,19,3,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,809,-10,0,0 +2013,6,27,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1425,-1,0,1817,12,0,0 +2013,7,4,4,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,2029,-16,0,2115,-21,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1900,8,0,1955,1,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-2,0,949,0,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-1,0,1615,-10,0,0 +2013,4,5,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1945,-3,0,2009,-19,0,0 +2013,6,11,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-6,0,840,-6,0,0 +2013,4,19,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-4,0,1100,13,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1310,-2,0,1446,-1,0,0 +2013,7,4,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,8,0,2050,-1,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1859,26,1,2344,7,0,0 +2013,6,6,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,628,-20,0,0 +2013,4,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,81,1,1405,78,1,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1917,27,1,2105,32,1,0 +2013,6,25,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1335,-4,0,1500,-11,0,0 +2013,4,26,5,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,940,-3,0,1235,-34,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-3,0,1132,-6,0,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1030,-6,0,1203,-2,0,0 +2013,7,31,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,800,6,0,0 +2013,5,28,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-4,0,1255,-21,0,0 +2013,7,30,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-2,0,1254,-9,0,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1020,18,1,1140,16,1,0 +2013,4,7,7,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-4,0,1005,-11,0,0 +2013,7,2,2,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-2,0,1220,-24,0,0 +2013,8,8,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,4,0,1010,12,0,0 +2013,9,4,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-12,0,2125,13,0,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,2,0,1350,-14,0,0 +2013,4,3,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,-1,0,1517,3,0,0 +2013,10,19,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1513,-3,0,1625,-2,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2103,5,0,2233,14,0,0 +2013,4,17,3,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-9,0,1105,-33,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,5,0,1944,-10,0,0 +2013,6,3,1,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1835,69,1,2120,52,1,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1340,6,0,2200,10,0,0 +2013,4,5,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-3,0,1509,9,0,0 +2013,6,12,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-3,0,901,-9,0,0 +2013,9,20,5,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1215,1,0,1435,1,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1614,5,0,1712,-1,0,0 +2013,7,5,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1730,-9,0,1848,-12,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,841,-7,0,1004,-4,0,0 +2013,7,28,7,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-7,0,855,14,0,0 +2013,6,7,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2138,-8,0,2230,-20,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2000,1,0,2242,17,1,0 +2013,10,26,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-4,0,710,0,0,0 +2013,10,14,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,32,1,1450,28,1,0 +2013,5,19,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1420,-1,0,1505,-2,0,0 +2013,5,21,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-3,0,1515,-18,0,0 +2013,9,3,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,3,0,1015,-7,0,0 +2013,4,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1910,-7,0,2134,-11,0,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2059,50,1,2240,79,1,0 +2013,7,26,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1245,-7,0,1415,-17,0,0 +2013,4,26,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,820,-6,0,1047,15,1,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2045,120,1,2330,109,1,0 +2013,6,13,4,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2015,5,0,2300,0,0,0 +2013,9,3,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,505,-1,0,752,5,0,0 +2013,7,17,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1528,-2,0,1721,8,0,0 +2013,6,1,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,740,2,0,910,-3,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1225,-4,0,1500,-3,0,0 +2013,9,16,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,4,0,2100,-2,0,0 +2013,6,5,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,0,0,2205,27,1,0 +2013,8,10,6,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,-2,0,1240,-14,0,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,951,84,1,1350,87,1,0 +2013,5,17,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,59,1,1705,47,1,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1820,-2,0,2021,-4,0,0 +2013,6,21,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,78,1,2056,68,1,0 +2013,7,3,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1655,-3,0,1805,-17,0,0 +2013,10,24,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-2,0,1335,0,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1205,0,0,1322,-7,0,0 +2013,8,24,6,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-2,0,918,-21,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-1,0,1035,-3,0,0 +2013,5,31,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,600,0,0,725,-4,0,0 +2013,7,10,3,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,831,-3,0,1025,-4,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,-2,0,2100,-4,0,0 +2013,4,23,2,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1326,151,1,1455,152,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,0,0,1223,-15,0,0 +2013,5,16,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,935,-8,0,1041,-19,0,0 +2013,5,10,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,725,-4,0,935,-6,0,0 +2013,5,15,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-4,0,1300,-11,0,0 +2013,7,14,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,840,15,1,1000,5,0,0 +2013,6,5,3,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1110,-5,0,1414,-42,0,0 +2013,8,25,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,845,-6,0,1025,-13,0,0 +2013,7,28,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,915,0,0,1035,10,0,0 +2013,4,26,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1615,-7,0,1822,-16,0,0 +2013,7,15,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1655,58,1,1819,54,1,0 +2013,9,9,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1750,-5,0,2045,-7,0,0 +2013,10,21,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1816,-8,0,1925,-17,0,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1310,-3,0,1400,-4,0,0 +2013,4,18,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,78,1,1955,88,1,0 +2013,6,8,6,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1037,-5,0,1201,-19,0,0 +2013,8,8,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,820,3,0,1335,-7,0,0 +2013,10,14,1,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-1,0,913,-11,0,0 +2013,5,6,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-3,0,1230,-11,0,0 +2013,4,8,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-10,0,1805,12,0,0 +2013,4,23,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1330,32,1,1610,47,1,0 +2013,9,5,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1136,40,1,1312,29,1,0 +2013,5,1,3,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,906,-9,0,1007,-19,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1255,15,1,1345,13,0,0 +2013,7,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,755,-2,0,1125,-14,0,0 +2013,7,6,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1407,3,0,2100,-10,0,0 +2013,7,11,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,3,0,1816,1,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-2,0,2251,9,0,0 +2013,6,16,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2000,-6,0,2137,-2,0,0 +2013,5,1,3,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1450,6,0,1615,1,0,0 +2013,4,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2109,-5,0,2303,-4,0,0 +2013,5,12,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1737,-5,0,1849,-5,0,0 +2013,4,16,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1325,-8,0,1650,-24,0,0 +2013,8,5,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,14,0,2150,1,0,0 +2013,4,27,6,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,820,-6,0,1000,-13,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,0,0,14,7,0,0 +2013,8,1,4,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1121,54,1,1445,52,1,0 +2013,5,30,4,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2040,1,0,2247,15,1,0 +2013,5,2,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,2050,-4,0,2309,-9,0,0 +2013,4,28,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1530,2,0,1805,29,1,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1345,9,0,1510,-6,0,0 +2013,9,12,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1935,176,1,2150,171,1,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-7,0,1055,-13,0,0 +2013,6,3,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-6,0,1425,-17,0,0 +2013,8,2,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,18,1,900,12,0,0 +2013,5,18,6,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1530,-3,0,1646,8,0,0 +2013,7,28,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1210,23,1,1435,32,1,0 +2013,6,7,5,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,650,0,,1108,0,1,1 +2013,10,19,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1230,-6,0,1508,-24,0,0 +2013,6,27,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,148,1,1946,186,1,0 +2013,10,13,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1106,-2,0,1130,6,0,0 +2013,4,18,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,-5,0,2129,30,1,0 +2013,10,9,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,3,0,1645,-7,0,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,97,1,2249,87,1,0 +2013,6,19,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1150,9,0,1343,-2,0,0 +2013,5,22,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1225,0,,1516,0,1,1 +2013,7,24,3,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2200,-1,0,550,-11,0,0 +2013,10,25,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1230,4,0,1410,12,0,0 +2013,9,30,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1303,-5,0,1448,-2,0,0 +2013,8,25,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,-6,0,2105,-4,0,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1210,0,0,1315,23,1,0 +2013,4,10,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1500,0,0,1738,1,0,0 +2013,6,9,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,45,1,1319,30,1,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,800,-5,0,1050,-16,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,13,0,1529,43,1,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1955,-3,0,2151,13,0,0 +2013,8,1,4,OO,14307,Theodore Francis Green State,Providence,RI,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-4,0,2033,-11,0,0 +2013,6,3,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,825,-2,0,1104,-17,0,0 +2013,10,13,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1538,5,0,2120,-14,0,0 +2013,6,21,5,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1354,-4,0,1450,-5,0,0 +2013,8,5,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1814,4,0,2105,-4,0,0 +2013,6,20,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2030,4,0,2140,1,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,22,1,1505,11,0,0 +2013,5,19,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,10,0,1955,-5,0,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,835,-5,0,1055,-3,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,3,0,1107,-7,0,0 +2013,8,5,1,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1705,0,0,2020,-13,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1835,0,0,2050,-2,0,0 +2013,7,31,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1530,40,1,1648,20,1,0 +2013,5,14,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2150,-5,0,2305,3,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1255,59,1,1340,58,1,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-7,0,1100,27,1,0 +2013,6,12,3,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,17,1,2147,-3,0,0 +2013,10,3,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-6,0,2031,8,0,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1119,22,1,1358,12,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1020,-3,0,1200,-14,0,0 +2013,5,14,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,620,-5,0,902,-10,0,0 +2013,8,16,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1155,0,0,1315,-7,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,2,0,930,2,0,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1815,-3,0,1957,-13,0,0 +2013,4,22,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,855,32,1,1230,42,1,0 +2013,8,10,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-2,0,1237,5,0,0 +2013,7,3,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,610,0,0,755,-23,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,-1,0,855,5,0,0 +2013,10,9,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,955,0,,1140,0,1,1 +2013,7,27,6,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,806,-5,0,938,-17,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1709,-8,0,1856,-21,0,0 +2013,9,22,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,-6,0,1338,2,0,0 +2013,6,17,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,0,0,825,-10,0,0 +2013,7,19,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-7,0,1509,-12,0,0 +2013,8,8,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1315,-9,0,1342,-10,0,0 +2013,4,10,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,29,1,1717,7,0,0 +2013,6,28,5,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1111,23,1,1305,18,1,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,34,1,2000,26,1,0 +2013,8,13,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,-9,0,1525,3,0,0 +2013,7,26,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2210,-10,0,2356,-19,0,0 +2013,5,21,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1010,-6,0,1125,-11,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1811,7,0,2125,-33,0,0 +2013,10,11,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,840,-1,0,955,-6,0,0 +2013,4,6,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1200,-5,0,1450,18,1,0 +2013,8,23,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1350,-5,0,1504,-1,0,0 +2013,8,17,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,20,1,1811,22,1,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,700,22,1,845,2,0,0 +2013,7,1,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,0,0,745,-16,0,0 +2013,8,28,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1200,-2,0,1310,0,0,0 +2013,4,3,3,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1110,5,0,1334,3,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,33,1,922,14,0,0 +2013,7,17,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,1,0,1122,-17,0,0 +2013,4,30,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,839,-6,0,950,-4,0,0 +2013,4,12,5,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1210,5,0,1455,-9,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,0,0,1843,-15,0,0 +2013,4,3,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1812,-11,0,0 +2013,5,25,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,754,-6,0,830,-5,0,0 +2013,5,13,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2133,8,0,2246,2,0,0 +2013,6,3,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,14,0,2113,1,0,0 +2013,10,10,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,0,0,1738,-8,0,0 +2013,10,28,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1759,-2,0,2102,25,1,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,718,-5,0,1135,-21,0,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1852,-9,0,2011,-20,0,0 +2013,4,5,5,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,2,0,2036,4,0,0 +2013,10,20,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1027,-4,0,1153,-11,0,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1235,1,0,1550,-13,0,0 +2013,7,7,7,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,725,0,0,948,-6,0,0 +2013,4,19,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1330,8,0,1413,8,0,0 +2013,8,17,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2010,5,0,2125,1,0,0 +2013,10,12,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1140,8,0,1255,0,0,0 +2013,8,29,4,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-6,0,1852,-22,0,0 +2013,9,23,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1315,9,0,1550,7,0,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,2,0,2145,-17,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,1,0,1747,-22,0,0 +2013,8,30,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2316,43,1,707,25,1,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-4,0,832,-11,0,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1455,-2,0,1615,-12,0,0 +2013,4,28,7,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1805,4,0,1943,8,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1910,-6,0,2045,-9,0,0 +2013,6,6,4,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-3,0,2055,-31,0,0 +2013,5,23,4,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,21,1,1231,10,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,820,11,0,1015,-4,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,0,,1110,0,1,1 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-5,0,1237,-14,0,0 +2013,9,30,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-5,0,1134,-12,0,0 +2013,10,6,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-3,0,608,15,1,0 +2013,9,6,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1120,-4,0,1220,-14,0,0 +2013,6,29,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1737,138,1,1903,120,1,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-1,0,1252,-1,0,0 +2013,7,19,5,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,1400,15,1,1620,-6,0,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1940,-6,0,2252,-29,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,755,-16,0,1045,1,0,0 +2013,5,12,7,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2130,-5,0,512,13,0,0 +2013,8,12,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,847,84,1,1015,83,1,0 +2013,8,21,3,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-3,0,1232,21,1,0 +2013,10,20,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1312,-3,0,1618,-24,0,0 +2013,6,4,2,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,835,-8,0,1035,-14,0,0 +2013,9,4,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-9,0,1029,-22,0,0 +2013,4,12,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,2005,48,1,2200,46,1,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1820,4,0,2025,-8,0,0 +2013,5,9,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-5,0,2110,-6,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,755,2,0,917,-1,0,0 +2013,10,27,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1016,56,1,1114,46,1,0 +2013,8,2,5,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1857,-6,0,2121,-26,0,0 +2013,6,28,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,930,-2,0,935,-3,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,15,1,1628,0,0,0 +2013,5,27,1,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1700,-6,0,1830,-14,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1359,2,0,1443,1,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1435,7,0,1825,-4,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1455,-9,0,2320,-8,0,0 +2013,6,9,7,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,-9,0,1315,-11,0,0 +2013,4,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1006,-10,0,1118,-11,0,0 +2013,10,23,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,950,-2,0,1050,-4,0,0 +2013,10,9,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1615,-4,0,1739,6,0,0 +2013,9,3,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-6,0,1350,4,0,0 +2013,10,30,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,1120,-24,0,0 +2013,7,8,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-5,0,1810,-8,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2145,11,0,2313,8,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,815,20,1,1053,39,1,0 +2013,10,25,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,4,0,2000,-7,0,0 +2013,10,26,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,0,0,2130,-2,0,0 +2013,5,14,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,-11,0,2115,-20,0,0 +2013,8,25,7,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1750,-2,0,1940,-8,0,0 +2013,4,20,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1833,-8,0,1935,-17,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1210,25,1,1320,7,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1520,0,0,2302,-4,0,0 +2013,8,6,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,35,1,1235,28,1,0 +2013,7,15,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1601,-7,0,1722,-14,0,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1116,-2,0,1456,-25,0,0 +2013,9,6,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,-6,0,1347,-12,0,0 +2013,4,4,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1820,0,0,1945,2,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1744,43,1,1905,27,1,0 +2013,4,25,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,-9,0,2025,-6,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,15,1,2349,13,0,0 +2013,5,13,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1105,-3,0,1315,9,0,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1712,0,0,1844,-12,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-3,0,1646,-7,0,0 +2013,4,15,1,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1358,69,1,1633,65,1,0 +2013,7,16,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,10,0,2029,10,0,0 +2013,9,21,6,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1150,-8,0,1722,-20,0,0 +2013,9,9,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,1,0,2215,4,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,1,0,31,-5,0,0 +2013,10,12,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-5,0,25,-19,0,0 +2013,9,9,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,911,-3,0,1119,-21,0,0 +2013,5,14,2,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1555,-1,0,1813,-15,0,0 +2013,10,6,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1345,7,0,1505,8,0,0 +2013,6,2,7,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-6,0,1012,-5,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,800,-9,0,937,-8,0,0 +2013,10,16,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,5,0,1415,-10,0,0 +2013,9,20,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1930,-3,0,2125,-3,0,0 +2013,7,8,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,930,-7,0,1327,-19,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-1,0,1356,-10,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,-2,0,850,-7,0,0 +2013,5,20,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1945,25,1,2125,8,0,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,29,1,2205,15,1,0 +2013,4,14,7,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1318,-9,0,1608,-17,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,-2,0,2304,-25,0,0 +2013,9,21,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-7,0,1047,-10,0,0 +2013,9,26,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,850,0,0,1028,19,1,0 +2013,4,6,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,2,0,1805,-4,0,0 +2013,5,28,2,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1355,-4,0,1535,-7,0,0 +2013,9,15,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1525,41,1,1840,35,1,0 +2013,6,26,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,0,0,840,-1,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,4,0,939,-6,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-3,0,1328,-10,0,0 +2013,7,26,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1051,-2,0,1435,1,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1951,13,0,2128,-7,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2055,20,1,2230,-1,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,730,-1,0,835,-12,0,0 +2013,4,2,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,710,3,0,830,-3,0,0 +2013,9,7,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,8,0,759,4,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,851,-2,0,1033,-14,0,0 +2013,9,22,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,10,0,1320,18,1,0 +2013,7,6,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1047,-9,0,1505,-21,0,0 +2013,5,26,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-7,0,2340,-9,0,0 +2013,7,11,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1415,7,0,1550,15,1,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,940,11,0,1415,11,0,0 +2013,10,27,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1520,-8,0,1750,-19,0,0 +2013,10,15,2,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,655,12,0,905,-8,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,610,2,0,820,-24,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,2,0,1027,7,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,3,0,1250,17,1,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,-3,0,1101,-16,0,0 +2013,5,17,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,844,-10,0,0 +2013,5,7,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,839,-7,0,1423,1,0,0 +2013,4,29,1,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1329,30,1,1416,26,1,0 +2013,6,1,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,1,0,1903,-3,0,0 +2013,9,7,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1236,103,1,1823,89,1,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-1,0,2200,9,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-1,0,1450,-12,0,0 +2013,10,25,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,910,-10,0,1010,-17,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,3,0,2055,7,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,745,0,0,1500,-15,0,0 +2013,7,12,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,-6,0,1025,-11,0,0 +2013,8,2,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,-2,0,1748,-14,0,0 +2013,10,16,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2147,-6,0,530,-28,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1535,28,1,2040,32,1,0 +2013,6,24,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-1,0,925,-5,0,0 +2013,5,7,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1315,-1,0,1430,0,0,0 +2013,9,26,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,710,-1,0,945,-7,0,0 +2013,10,27,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,1,0,1820,11,0,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-2,0,2003,-9,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,0,0,1435,-4,0,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,17,1,1837,7,0,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2040,20,1,2150,11,0,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1020,33,1,1541,32,1,0 +2013,5,28,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1915,-1,0,2035,-2,0,0 +2013,4,7,7,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1510,-1,0,1809,-14,0,0 +2013,10,28,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1815,34,1,1947,31,1,0 +2013,6,9,7,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1905,3,0,1940,-4,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1005,-2,0,1120,-9,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,59,1,1240,64,1,0 +2013,9,18,3,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-6,0,1540,3,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,4,0,1250,-2,0,0 +2013,10,18,5,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,-8,0,1018,1,0,0 +2013,10,31,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,930,0,0,1000,3,0,0 +2013,5,24,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-2,0,5,23,1,0 +2013,4,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,942,-2,0,1018,-17,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1052,-2,0,1408,-3,0,0 +2013,7,29,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,20,1,543,5,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2005,34,1,2145,28,1,0 +2013,5,17,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1953,44,1,2214,41,1,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1345,19,1,1440,13,0,0 +2013,7,21,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1904,64,1,2101,50,1,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1910,-4,0,2245,-27,0,0 +2013,6,9,7,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,910,-2,0,1144,3,0,0 +2013,10,28,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,755,-1,0,1350,-33,0,0 +2013,6,16,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,810,5,0,1000,-4,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,925,-6,0,1200,-36,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1810,7,0,2030,40,1,0 +2013,7,20,6,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1802,-2,0,2023,-11,0,0 +2013,9,3,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,755,-1,0,935,-3,0,0 +2013,8,15,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1320,-1,0,1520,-5,0,0 +2013,5,16,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1730,22,1,1855,18,1,0 +2013,5,18,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,820,23,1,930,21,1,0 +2013,7,27,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,755,-4,0,1055,-20,0,0 +2013,8,9,5,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1433,-4,0,1546,-14,0,0 +2013,9,22,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1001,-1,0,1055,-15,0,0 +2013,4,15,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,620,6,0,736,-2,0,0 +2013,5,24,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1617,13,0,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,730,5,0,1103,6,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-6,0,1349,-14,0,0 +2013,10,14,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,20,1,2139,29,1,0 +2013,10,20,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1710,-5,0,2130,-18,0,0 +2013,6,23,7,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1527,8,0,1916,21,1,0 +2013,10,23,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,649,-8,0,0 +2013,7,23,2,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,857,-7,0,1004,-12,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1357,-6,0,1553,-11,0,0 +2013,7,30,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-10,0,1119,-8,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,-1,0,735,-5,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1855,20,1,2215,11,0,0 +2013,10,18,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1020,-4,0,1309,-10,0,0 +2013,4,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,5,0,750,1,0,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,22,1,1528,18,1,0 +2013,8,22,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,957,-3,0,1255,-8,0,0 +2013,9,23,1,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1852,-11,0,2030,-17,0,0 +2013,5,13,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1437,-4,0,1621,-48,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1640,0,0,1914,-19,0,0 +2013,8,6,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1115,-1,0,1240,-3,0,0 +2013,9,19,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,715,-8,0,1015,6,0,0 +2013,5,12,7,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,805,-2,0,1115,19,1,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2042,-1,0,2309,-24,0,0 +2013,5,31,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,81,1,2210,96,1,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1755,17,1,1925,64,1,0 +2013,10,18,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-3,0,1826,-3,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1325,-2,0,1450,-5,0,0 +2013,6,10,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,620,2,0,1225,-5,0,0 +2013,8,8,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1301,-6,0,1502,-13,0,0 +2013,7,24,3,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,615,-3,0,1500,1,0,0 +2013,7,15,1,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,6,0,1925,-10,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2000,4,0,2130,-4,0,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,18,1,1715,12,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,-1,0,942,-6,0,0 +2013,5,13,1,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1714,-2,0,1923,-7,0,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1648,-2,0,1820,5,0,0 +2013,9,3,2,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1600,-2,0,1650,-20,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,-4,0,1515,1,0,0 +2013,6,3,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,835,-9,0,1128,-20,0,0 +2013,4,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,930,-6,0,1125,-7,0,0 +2013,6,9,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,813,0,0,1014,-7,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,11,0,1640,6,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1915,43,1,35,74,1,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,-5,0,2300,-12,0,0 +2013,5,1,3,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1055,-5,0,1140,-6,0,0 +2013,6,5,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1820,0,0,2200,-26,0,0 +2013,7,24,3,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1726,-4,0,1936,-8,0,0 +2013,9,13,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,830,-5,0,941,-11,0,0 +2013,9,13,5,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,4,0,1245,1,0,0 +2013,7,13,6,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-1,0,934,-9,0,0 +2013,7,26,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,1,0,1631,-2,0,0 +2013,5,21,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,600,-4,0,735,-4,0,0 +2013,7,15,1,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,10,0,2139,8,0,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1940,24,1,2255,16,1,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1325,49,1,1445,40,1,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1020,-5,0,1309,-5,0,0 +2013,9,30,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1803,27,1,2044,15,1,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,-4,0,2307,-3,0,0 +2013,4,12,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,1922,-25,0,0 +2013,4,28,7,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1445,-20,0,1753,-27,0,0 +2013,7,17,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-7,0,2118,-2,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,650,21,1,820,14,0,0 +2013,10,7,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1145,212,1,1705,221,1,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1737,14,0,2058,4,0,0 +2013,4,13,6,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,815,30,1,1040,14,0,0 +2013,6,21,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,9,0,919,16,1,0 +2013,6,13,4,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-1,0,1023,7,0,0 +2013,10,8,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1202,-5,0,1518,-3,0,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,-3,0,1335,-17,0,0 +2013,4,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1445,19,1,1610,27,1,0 +2013,10,22,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,721,0,,809,0,1,1 +2013,7,7,7,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,835,-7,0,1031,-7,0,0 +2013,10,7,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1215,12,0,1400,3,0,0 +2013,5,30,4,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,44,1,1809,48,1,0 +2013,6,3,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,740,4,0,1010,-2,0,0 +2013,10,18,5,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1113,-6,0,1326,-1,0,0 +2013,10,21,1,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1120,34,1,1510,15,1,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1200,158,1,1415,167,1,0 +2013,10,28,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1020,-3,0,1342,-2,0,0 +2013,7,19,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,11,0,1319,-3,0,0 +2013,7,19,5,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,15,1,2033,18,1,0 +2013,5,15,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,-1,0,1435,-17,0,0 +2013,7,8,1,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1611,106,1,1925,111,1,0 +2013,5,6,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,800,-5,0,905,7,0,0 +2013,4,11,4,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1820,36,1,2000,32,1,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1241,3,0,1830,44,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,-1,0,2200,5,0,0 +2013,6,8,6,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1023,-10,0,1304,-18,0,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,7,0,2222,19,1,0 +2013,5,7,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,625,-6,0,920,-13,0,0 +2013,10,27,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-13,0,457,-49,0,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,730,-2,0,835,-4,0,0 +2013,5,15,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2045,33,1,2200,34,1,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,845,-1,0,1219,-7,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2035,5,0,2240,-3,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,927,-4,0,1021,-18,0,0 +2013,10,24,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,850,-4,0,1027,-1,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,740,36,1,1125,25,1,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2112,13,0,2233,1,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1330,12,0,1939,10,0,0 +2013,4,15,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2135,-4,0,2157,-11,0,0 +2013,7,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1525,1,0,1645,0,0,0 +2013,9,8,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,3,0,1245,-1,0,0 +2013,9,24,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-5,0,1336,-9,0,0 +2013,8,8,4,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1810,-7,0,2357,-17,0,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-6,0,2240,-6,0,0 +2013,5,24,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,0,0,1800,42,1,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,720,67,1,855,52,1,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1105,-3,0,1325,-28,0,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-6,0,1859,-31,0,0 +2013,4,18,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,650,-5,0,0 +2013,8,27,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,900,-2,0,958,-6,0,0 +2013,5,29,3,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1630,-1,0,1921,-4,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,6,0,1725,-13,0,0 +2013,7,17,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1842,35,1,2009,18,1,0 +2013,5,4,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,645,-3,0,810,-4,0,0 +2013,10,10,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1501,-2,0,1645,-10,0,0 +2013,8,24,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,-1,0,2305,-23,0,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,0,,1235,0,1,1 +2013,9,21,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1740,44,1,1933,24,1,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,33,1,1850,20,1,0 +2013,10,6,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,-1,0,1638,-2,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1955,-5,0,2110,-14,0,0 +2013,9,14,6,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1600,-1,0,2353,-13,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1622,-3,0,1749,35,1,0 +2013,5,8,3,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,3,0,1340,-10,0,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1440,10,0,1640,-23,0,0 +2013,8,28,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-2,0,1211,1,0,0 +2013,7,10,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,825,20,1,1547,35,1,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,705,-4,0,810,-11,0,0 +2013,4,11,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,-5,0,1219,-20,0,0 +2013,10,25,5,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,-2,0,1335,4,0,0 +2013,7,15,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1130,-3,0,1256,-5,0,0 +2013,4,11,4,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,1219,-4,0,1703,-11,0,0 +2013,6,24,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-4,0,1054,-6,0,0 +2013,4,13,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1955,-7,0,2242,-21,0,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1640,62,1,1850,107,1,0 +2013,9,11,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1520,3,0,1534,4,0,0 +2013,8,5,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,2,0,1748,-7,0,0 +2013,4,13,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,940,0,0,1224,-17,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,2,0,1235,-1,0,0 +2013,7,20,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1059,-6,0,1208,-4,0,0 +2013,8,1,4,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2130,-1,0,2328,3,0,0 +2013,5,29,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,-1,0,2025,-3,0,0 +2013,4,26,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-2,0,1005,-16,0,0 +2013,5,28,2,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-2,0,1908,-4,0,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,23,1,1835,25,1,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1040,-4,0,1310,-6,0,0 +2013,9,30,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1515,-7,0,1813,-13,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1810,20,1,1930,4,0,0 +2013,9,30,1,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1816,4,0,2028,-33,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,88,1,2020,87,1,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1527,-2,0,1801,-10,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1025,1,0,1115,3,0,0 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,3,0,830,-12,0,0 +2013,4,21,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1513,1,0,1643,25,1,0 +2013,4,17,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-7,0,1510,-3,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,-4,0,2330,7,0,0 +2013,7,19,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,805,-2,0,915,-7,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,0,0,915,-9,0,0 +2013,9,3,2,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1522,-5,0,1840,-5,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,5,0,950,2,0,0 +2013,9,21,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,104,1,1650,89,1,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,14,0,1910,1,0,0 +2013,6,7,5,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1515,73,1,1845,84,1,0 +2013,4,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1859,-3,0,2233,-21,0,0 +2013,5,5,7,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-8,0,1049,-5,0,0 +2013,5,9,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,-3,0,558,2,0,0 +2013,5,1,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1905,1,0,2020,-4,0,0 +2013,7,4,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1110,-8,0,1240,-20,0,0 +2013,9,22,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,22,1,2052,21,1,0 +2013,4,19,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1040,43,1,1140,41,1,0 +2013,4,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2225,0,0,2324,0,0,0 +2013,5,10,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,108,1,1425,99,1,0 +2013,8,5,1,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1928,-7,0,2103,-5,0,0 +2013,5,30,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,0,0,1430,13,0,0 +2013,6,13,4,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1705,8,0,1830,2,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,7,0,1105,-33,0,0 +2013,8,24,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-6,0,1115,-14,0,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,754,0,0,911,-18,0,0 +2013,9,29,7,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,4,0,1615,-29,0,0 +2013,8,24,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,715,-4,0,1010,-17,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,2,0,1354,-12,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,811,-2,0,1014,-15,0,0 +2013,8,17,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,935,-2,0,1055,-9,0,0 +2013,9,4,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1459,14,0,2001,11,0,0 +2013,5,1,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1125,30,1,1225,38,1,0 +2013,7,1,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1139,102,1,1429,158,1,0 +2013,9,7,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2035,-6,0,2159,-10,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1930,174,1,2130,151,1,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1030,-5,0,1248,2,0,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1040,4,0,1230,-2,0,0 +2013,6,2,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,830,-5,0,1113,-15,0,0 +2013,5,30,4,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,700,-11,0,945,-3,0,0 +2013,6,14,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1559,-7,0,1628,-9,0,0 +2013,6,30,7,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1815,153,1,1945,144,1,0 +2013,8,10,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,905,-3,0,1140,-1,0,0 +2013,6,9,7,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1600,-10,0,2205,-11,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1820,-1,0,2014,-10,0,0 +2013,10,9,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2025,-4,0,2314,-10,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,28,1,1339,21,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,18,1,1050,14,0,0 +2013,6,19,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-5,0,820,6,0,0 +2013,5,21,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,815,-6,0,1034,-6,0,0 +2013,8,21,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,-3,0,1350,18,1,0 +2013,9,26,4,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,835,-3,0,1007,-1,0,0 +2013,4,27,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1525,-5,0,1625,-11,0,0 +2013,7,18,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1415,-6,0,1550,4,0,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1700,7,0,1951,-23,0,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2210,10,0,25,-6,0,0 +2013,8,1,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1350,4,0,1550,-18,0,0 +2013,9,24,2,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-10,0,1253,-17,0,0 +2013,6,27,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,63,1,1924,81,1,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1045,4,0,1250,-11,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,726,-5,0,859,11,0,0 +2013,4,26,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,827,19,1,1148,12,0,0 +2013,9,5,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,640,-4,0,815,-11,0,0 +2013,7,29,1,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1100,-2,0,1320,-16,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1615,64,1,1935,59,1,0 +2013,7,14,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1115,-3,0,1310,-16,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1005,3,0,1105,6,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-5,0,920,-12,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,1,0,1332,19,1,0 +2013,9,27,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,605,80,1,710,78,1,0 +2013,8,8,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,12,0,1310,8,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,750,5,0,905,-4,0,0 +2013,9,30,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-6,0,1013,-19,0,0 +2013,10,18,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1035,0,0,1150,-3,0,0 +2013,10,8,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2225,-3,0,607,20,1,0 +2013,6,21,5,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1039,-1,0,1636,-24,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1237,-1,0,1351,-25,0,0 +2013,4,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1942,15,1,2159,20,1,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1555,-7,0,1729,-3,0,0 +2013,8,23,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1411,-5,0,1537,12,0,0 +2013,10,26,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,705,-6,0,905,-12,0,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-8,0,749,-6,0,0 +2013,5,27,1,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,945,55,1,1115,53,1,0 +2013,8,7,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,755,2,0,837,7,0,0 +2013,8,13,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1800,-11,0,0 +2013,10,6,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1059,-2,0,1312,13,0,0 +2013,9,15,7,9E,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-3,0,2029,-11,0,0 +2013,8,20,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,30,1,2131,14,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,4,0,1933,-9,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,845,-1,0,1040,15,1,0 +2013,9,12,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,103,1,1815,91,1,0 +2013,4,4,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,504,-5,0,712,-15,0,0 +2013,4,1,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-4,0,1217,-13,0,0 +2013,9,15,7,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2108,-5,0,2328,-40,0,0 +2013,8,17,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,43,1,2033,38,1,0 +2013,5,19,7,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1125,-5,0,1400,-10,0,0 +2013,8,19,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1140,51,1,1235,49,1,0 +2013,4,12,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1959,27,1,2244,14,0,0 +2013,9,19,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-1,0,1723,11,0,0 +2013,5,16,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1743,60,1,2115,51,1,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1800,-3,0,2108,-23,0,0 +2013,5,15,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-8,0,907,-14,0,0 +2013,9,23,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,0,,1810,0,1,1 +2013,7,20,6,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,753,-8,0,855,18,1,0 +2013,8,11,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,37,1,1655,23,1,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,-9,0,2250,-3,0,0 +2013,10,22,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-5,0,2137,1,0,0 +2013,5,19,7,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1725,79,1,2020,105,1,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,21,1,1925,13,0,0 +2013,10,23,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-5,0,1120,-18,0,0 +2013,7,6,6,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1530,16,1,1920,13,0,0 +2013,8,5,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1230,-6,0,1441,-13,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1621,48,1,1815,27,1,0 +2013,8,12,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,600,-2,0,800,-11,0,0 +2013,7,2,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1121,-3,0,1209,-4,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,18,1,2344,1,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1335,1,0,1743,-8,0,0 +2013,4,29,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2130,-5,0,2353,-14,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,905,-2,0,1317,-27,0,0 +2013,7,9,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1306,55,1,1633,43,1,0 +2013,9,6,5,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,840,-1,0,0 +2013,5,24,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,11,0,655,5,0,0 +2013,7,10,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,23,1,1155,14,0,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,830,-2,0,955,-8,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-4,0,1040,-21,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1445,64,1,1550,91,1,0 +2013,6,2,7,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1850,133,1,2135,118,1,0 +2013,4,17,3,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1305,-10,0,0 +2013,6,25,2,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,39,1,2355,31,1,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1742,1,0,1908,-11,0,0 +2013,8,5,1,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1025,11,0,1210,17,1,0 +2013,6,10,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,810,-3,0,925,-4,0,0 +2013,5,17,5,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1515,-6,0,1736,-23,0,0 +2013,5,27,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1412,27,1,1635,13,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,20,1,1253,69,1,0 +2013,8,12,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1300,0,0,1525,2,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,849,20,1,1634,21,1,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,715,0,0,1005,11,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,28,1,2315,23,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2200,-3,0,2306,-7,0,0 +2013,4,10,3,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,35,1,2125,12,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1427,30,1,1913,47,1,0 +2013,4,19,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,821,26,1,929,44,1,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2045,8,0,2255,14,0,0 +2013,6,30,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,605,3,0,739,7,0,0 +2013,5,7,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,33,1,1704,28,1,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1753,20,1,2117,21,1,0 +2013,6,11,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,850,1,0,0 +2013,5,6,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1910,0,0,2035,-6,0,0 +2013,8,10,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1125,2,0,1246,6,0,0 +2013,6,19,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,736,-7,0,826,-10,0,0 +2013,8,6,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1320,-10,0,1554,1,0,0 +2013,5,31,5,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1714,9,0,1834,7,0,0 +2013,5,29,3,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2245,86,1,713,87,1,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,2,0,2056,-2,0,0 +2013,9,12,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1745,-5,0,1900,-17,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-2,0,1810,-11,0,0 +2013,5,5,7,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2225,0,0,645,-32,0,0 +2013,7,30,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-6,0,1025,-12,0,0 +2013,4,28,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1400,55,1,1532,41,1,0 +2013,9,18,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1210,-1,0,1325,-8,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2040,0,0,2145,-10,0,0 +2013,10,4,5,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1737,-11,0,1917,-24,0,0 +2013,10,28,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,730,-15,0,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-6,0,1011,-1,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,0,0,2356,15,1,0 +2013,6,9,7,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1712,4,0,1825,3,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1615,4,0,1825,3,0,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,60,1,2117,52,1,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-8,0,1028,-49,0,0 +2013,5,28,2,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,745,-4,0,1037,-20,0,0 +2013,5,10,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1425,4,0,1631,-7,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1708,-6,0,1856,-21,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-4,0,1505,-8,0,0 +2013,7,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2145,-2,0,2225,-4,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,-2,0,1136,-21,0,0 +2013,5,14,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,755,-1,0,900,-8,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,745,0,0,1040,1,0,0 +2013,5,2,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,710,-4,0,850,-5,0,0 +2013,10,28,1,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,2,0,1551,1,0,0 +2013,9,3,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,650,-3,0,830,-6,0,0 +2013,4,5,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,4,0,2109,-4,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1950,0,0,2305,5,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1810,35,1,2008,28,1,0 +2013,6,16,7,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-3,0,715,-7,0,0 +2013,4,5,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1143,-19,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-5,0,1610,-17,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1700,0,0,1915,14,0,0 +2013,8,17,6,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,-1,0,1735,7,0,0 +2013,9,26,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1112,-4,0,1233,-11,0,0 +2013,10,22,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,903,143,1,1046,143,1,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1910,54,1,2050,34,1,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1300,-3,0,1540,-15,0,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,-6,0,2247,-20,0,0 +2013,8,21,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1025,29,1,1215,32,1,0 +2013,4,17,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,0,,1830,0,1,1 +2013,8,11,7,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,0,0,1028,-4,0,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1749,55,1,1838,86,1,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2050,28,1,2315,26,1,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2105,-4,0,2232,-13,0,0 +2013,9,10,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,-6,0,650,-8,0,0 +2013,7,31,3,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,600,-3,0,835,-4,0,0 +2013,6,8,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1227,20,1,1406,6,0,0 +2013,6,20,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,-3,0,1311,0,0,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,835,-4,0,1105,-18,0,0 +2013,4,18,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,21,1,2315,11,0,0 +2013,8,6,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,177,1,725,174,1,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1641,-3,0,1719,5,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-3,0,2200,-17,0,0 +2013,6,15,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,841,-4,0,1155,-8,0,0 +2013,8,1,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,4,0,1945,-1,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-1,0,1105,24,1,0 +2013,4,20,6,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,-3,0,2240,-17,0,0 +2013,8,1,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,127,1,0,800,-3,0,0 +2013,6,21,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-6,0,855,-26,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,-3,0,1435,-7,0,0 +2013,4,9,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-1,0,2145,-23,0,0 +2013,5,27,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1711,0,0,2211,-15,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,11,0,943,-15,0,0 +2013,5,5,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1420,-2,0,1550,16,1,0 +2013,10,13,7,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,815,-8,0,933,1,0,0 +2013,7,20,6,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2338,77,1,717,59,1,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,20,1,1623,16,1,0 +2013,6,12,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,-1,0,1725,16,1,0 +2013,10,24,4,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1110,15,1,1250,12,0,0 +2013,8,2,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,-4,0,2245,-9,0,0 +2013,4,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,97,1,1535,94,1,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,8,0,1600,0,0,0 +2013,10,15,2,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2157,0,0,600,-5,0,0 +2013,7,22,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1753,26,1,1900,24,1,0 +2013,7,6,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1740,-4,0,1845,-15,0,0 +2013,5,31,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,81,1,2140,73,1,0 +2013,6,10,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,605,-1,0,720,5,0,0 +2013,4,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-7,0,2125,0,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1335,-5,0,1440,-12,0,0 +2013,6,17,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,829,22,1,1004,12,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-1,0,1623,18,1,0 +2013,7,7,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1205,47,1,1324,45,1,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1425,9,0,1635,17,1,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1455,6,0,1600,5,0,0 +2013,6,11,2,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,656,-20,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,84,1,1958,64,1,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1627,-11,0,1822,-3,0,0 +2013,6,12,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,33,1,2025,26,1,0 +2013,5,15,3,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1140,-6,0,1258,-11,0,0 +2013,7,31,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,3,0,759,4,0,0 +2013,7,9,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,201,1,1946,201,1,0 +2013,7,22,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1641,89,1,1941,105,1,0 +2013,8,21,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-8,0,1014,0,0,0 +2013,9,14,6,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1155,5,0,1630,-5,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,12,0,1924,-5,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,754,-12,0,0 +2013,7,11,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1900,55,1,2110,42,1,0 +2013,8,24,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2010,1,0,2115,1,0,0 +2013,5,1,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,-1,0,2115,18,1,0 +2013,5,29,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1010,2,0,1520,-8,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,941,-4,0,1124,-8,0,0 +2013,4,29,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,850,-16,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,35,1,1518,42,1,0 +2013,10,10,4,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,735,-5,0,1340,-11,0,0 +2013,4,12,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,41,1,2138,35,1,0 +2013,8,25,7,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1809,24,1,2125,31,1,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,730,2,0,915,-15,0,0 +2013,6,26,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,42,1,2300,81,1,0 +2013,9,22,7,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-6,0,1218,-14,0,0 +2013,7,30,2,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1716,-5,0,1720,-15,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,38,1,1355,17,1,0 +2013,10,20,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-2,0,1822,-4,0,0 +2013,7,2,2,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,1,0,2310,-39,0,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-5,0,1951,-31,0,0 +2013,4,5,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,625,0,0,845,-8,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,29,1,1949,7,0,0 +2013,5,1,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1705,-3,0,2030,-8,0,0 +2013,5,6,1,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1820,29,1,2133,-14,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2335,-4,0,624,21,1,0 +2013,7,12,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1259,10,0,1321,0,0,0 +2013,5,8,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1105,-5,0,1913,11,0,0 +2013,5,6,1,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1135,7,0,1320,-9,0,0 +2013,4,27,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,-4,0,1835,-7,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-2,0,1100,-10,0,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,15,1,1901,0,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,2000,91,1,2320,89,1,0 +2013,6,11,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,-4,0,1510,-26,0,0 +2013,4,24,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1300,0,0,1613,3,0,0 +2013,7,26,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,6,0,2317,-7,0,0 +2013,4,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,630,-1,0,735,-7,0,0 +2013,8,5,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,2,0,1457,9,0,0 +2013,8,10,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,0,0,834,-4,0,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1047,-1,0,1827,8,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1931,-6,0,2359,-16,0,0 +2013,6,21,5,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,945,4,0,1040,9,0,0 +2013,8,14,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1555,-9,0,24,-31,0,0 +2013,4,21,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,47,1,2109,40,1,0 +2013,5,25,6,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,930,-6,0,1800,-35,0,0 +2013,5,21,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,600,0,0,1428,-7,0,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,19,1,2337,8,0,0 +2013,8,22,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-5,0,2025,-2,0,0 +2013,10,16,3,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,114,1,1715,115,1,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1311,-2,0,1616,-8,0,0 +2013,8,7,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,10,0,1401,5,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,17,1,2120,11,0,0 +2013,7,25,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,0,0,715,4,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,820,-5,0,915,-14,0,0 +2013,7,15,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,5,0,1645,-6,0,0 +2013,9,16,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1105,0,0,1244,-10,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,0,0,2335,7,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1200,5,0,1520,8,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,46,1,1953,124,1,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1730,0,0,2020,-27,0,0 +2013,9,29,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,13,0,1355,-6,0,0 +2013,10,9,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1036,3,0,1300,9,0,0 +2013,8,3,6,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,925,-2,0,1110,15,1,0 +2013,10,10,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,-5,0,1955,-13,0,0 +2013,10,31,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,-2,0,1255,-1,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-5,0,815,-20,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,0,0,2055,-11,0,0 +2013,6,21,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,2,0,1356,3,0,0 +2013,9,23,1,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1850,-4,0,2200,30,1,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1530,20,1,1847,-2,0,0 +2013,8,2,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,6,0,1040,14,0,0 +2013,9,29,7,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,2,0,2043,-6,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1900,11,0,2000,3,0,0 +2013,4,11,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1522,-8,0,0 +2013,8,10,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-5,0,752,-18,0,0 +2013,8,15,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,4,0,2128,4,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,-3,0,1503,-7,0,0 +2013,8,24,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,8,0,1936,13,0,0 +2013,10,28,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,845,12,0,1156,19,1,0 +2013,10,21,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1400,-4,0,1435,-9,0,0 +2013,5,8,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,35,1,738,23,1,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,750,-5,0,1010,-12,0,0 +2013,6,26,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,0,0,1311,-6,0,0 +2013,8,28,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,1,0,1535,13,0,0 +2013,6,10,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,742,-4,0,900,0,0,0 +2013,4,26,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1735,-7,0,1920,-16,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-5,0,1522,-15,0,0 +2013,6,3,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-6,0,2215,-21,0,0 +2013,9,16,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-8,0,1356,-10,0,0 +2013,6,19,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,830,-4,0,1157,-10,0,0 +2013,4,22,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1925,21,1,2105,-1,0,0 +2013,9,1,7,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,-6,0,1900,-17,0,0 +2013,5,10,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,1,0,645,-12,0,0 +2013,10,3,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-4,0,2132,-6,0,0 +2013,4,29,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1630,-5,0,1750,-20,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-5,0,858,1,0,0 +2013,8,21,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,625,-5,0,724,-17,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,725,0,0,1050,-3,0,0 +2013,4,12,5,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1715,15,1,1921,3,0,0 +2013,6,25,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,36,1,1750,21,1,0 +2013,8,6,2,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2150,13,0,2233,21,1,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1415,-5,0,1639,6,0,0 +2013,10,21,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1845,-1,0,2109,-11,0,0 +2013,4,16,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,9,0,726,4,0,0 +2013,10,17,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,941,1,0,1054,-14,0,0 +2013,10,24,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1438,0,0,1959,4,0,0 +2013,10,15,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1610,-5,0,1811,-15,0,0 +2013,7,14,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,-4,0,2049,-8,0,0 +2013,7,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,-4,0,2305,-6,0,0 +2013,9,7,6,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,6,0,1551,0,0,0 +2013,6,19,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1805,-2,0,2120,-5,0,0 +2013,8,28,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1040,-3,0,1155,-6,0,0 +2013,5,7,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1010,37,1,1125,21,1,0 +2013,7,31,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1811,-1,0,0 +2013,8,9,5,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,955,-2,0,1130,-9,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-6,0,1055,-17,0,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-4,0,1030,-2,0,0 +2013,4,5,5,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,-3,0,2135,-6,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1620,3,0,1746,-22,0,0 +2013,10,4,5,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-8,0,1930,-5,0,0 +2013,5,2,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2300,-8,0,815,-39,0,0 +2013,5,14,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,955,-1,0,1130,-7,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,15,1,1643,37,1,0 +2013,7,2,2,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,2129,13,0,2303,2,0,0 +2013,9,16,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1624,30,1,1734,19,1,0 +2013,9,14,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1849,118,1,2137,102,1,0 +2013,8,24,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,815,338,1,920,323,1,0 +2013,7,15,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,100,1,1024,101,1,0 +2013,10,11,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2039,-6,0,2200,3,0,0 +2013,8,10,6,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1450,-8,0,1711,-22,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1715,-2,0,2059,-10,0,0 +2013,7,31,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,1,0,1800,2,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1335,-1,0,1435,1,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,804,-3,0,932,-12,0,0 +2013,5,30,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,945,-5,0,1055,-9,0,0 +2013,9,21,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1525,15,1,1635,1,0,0 +2013,9,29,7,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1950,114,1,2255,102,1,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1259,18,1,1616,-4,0,0 +2013,9,20,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,3,0,1907,-21,0,0 +2013,7,9,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2200,28,1,2315,27,1,0 +2013,4,6,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,725,-1,0,937,-16,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1155,1,0,1320,-10,0,0 +2013,9,13,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1230,0,0,1354,-1,0,0 +2013,10,31,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1745,-2,0,1855,-7,0,0 +2013,10,18,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,7,0,1610,11,0,0 +2013,7,23,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1730,-8,0,1941,-18,0,0 +2013,8,7,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2040,0,0,2232,5,0,0 +2013,9,19,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1655,37,1,1800,23,1,0 +2013,6,28,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2114,17,1,2242,18,1,0 +2013,4,25,4,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1911,32,1,2136,12,0,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1118,-6,0,1301,-28,0,0 +2013,8,2,5,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1415,0,0,2215,13,0,0 +2013,6,6,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,915,-5,0,1515,-21,0,0 +2013,5,10,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1256,-6,0,1336,5,0,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1800,8,0,2130,-5,0,0 +2013,7,7,7,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-2,0,1522,-3,0,0 +2013,9,20,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1250,87,1,1410,103,1,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,733,5,0,1102,16,1,0 +2013,6,5,3,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-9,0,1615,-41,0,0 +2013,4,22,1,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1459,0,,1637,0,1,1 +2013,6,9,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,-4,0,1106,-12,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1640,46,1,2315,42,1,0 +2013,7,8,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,16,1,735,10,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-3,0,945,-10,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,-2,0,2356,-13,0,0 +2013,9,21,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2217,-1,0,604,-15,0,0 +2013,4,18,4,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1401,0,,1711,0,1,1 +2013,8,10,6,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-1,0,1620,-20,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,3,0,1750,-18,0,0 +2013,9,28,6,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2020,-6,0,2130,-14,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1910,4,0,2045,9,0,0 +2013,6,8,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-5,0,930,-6,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1210,5,0,1435,-5,0,0 +2013,10,24,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,650,43,1,830,45,1,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,-1,0,1153,-8,0,0 +2013,4,18,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,9,0,1717,-9,0,0 +2013,6,12,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,845,53,1,1230,40,1,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1150,12,0,1310,10,0,0 +2013,7,21,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,915,2,0,1035,-4,0,0 +2013,6,14,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2000,86,1,2140,122,1,0 +2013,5,22,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1830,128,1,2015,118,1,0 +2013,9,6,5,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1030,38,1,1311,23,1,0 +2013,5,26,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1920,-4,0,2118,-4,0,0 +2013,9,25,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2245,44,1,635,30,1,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1113,8,0,1155,8,0,0 +2013,6,15,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,17,1,1735,6,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-1,0,1743,-10,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1840,7,0,2110,1,0,0 +2013,6,3,1,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,7,0,500,-12,0,0 +2013,9,2,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,900,-4,0,1130,-20,0,0 +2013,4,11,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-9,0,836,-13,0,0 +2013,6,3,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-2,0,1250,-17,0,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,4,0,1925,-4,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1805,-1,0,2005,-19,0,0 +2013,5,7,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1645,1,0,1750,-18,0,0 +2013,8,21,3,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,5,0,1124,-30,0,0 +2013,7,24,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-3,0,2110,23,1,0 +2013,4,23,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,74,1,1215,73,1,0 +2013,4,6,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,0,0,1643,-17,0,0 +2013,4,2,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2155,-1,0,15,6,0,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,17,1,2246,18,1,0 +2013,10,13,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1605,-4,0,1710,-2,0,0 +2013,8,14,3,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-2,0,711,1,0,0 +2013,7,23,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-2,0,1410,-2,0,0 +2013,10,24,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,755,-2,0,910,-7,0,0 +2013,10,17,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,3,0,1451,14,0,0 +2013,7,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2010,-7,0,2050,-18,0,0 +2013,6,17,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,950,-3,0,1204,-10,0,0 +2013,7,31,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,27,1,1325,33,1,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1614,-6,0,24,-13,0,0 +2013,4,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,855,-7,0,1338,-23,0,0 +2013,4,27,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,612,-2,0,935,-45,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-4,0,1001,-10,0,0 +2013,4,29,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-6,0,1545,-12,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1145,-7,0,1311,-16,0,0 +2013,7,15,1,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,630,-2,0,800,-18,0,0 +2013,6,12,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,39,1,1945,32,1,0 +2013,8,9,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,-2,0,1910,4,0,0 +2013,6,15,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1932,-34,0,0 +2013,8,16,5,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-3,0,1800,8,0,0 +2013,8,9,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-1,0,1800,-7,0,0 +2013,7,3,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,-1,0,1925,-20,0,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1800,-3,0,2045,-8,0,0 +2013,6,8,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1705,28,1,2350,34,1,0 +2013,9,7,6,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1232,-6,0,2100,63,1,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1555,154,1,1916,165,1,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,955,0,0,1248,-4,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,10,0,940,8,0,0 +2013,9,1,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1400,-7,0,1434,-3,0,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1143,-7,0,1427,-6,0,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1302,1,0,1719,-32,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,44,1,1807,39,1,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,20,1,1110,15,1,0 +2013,7,7,7,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,38,1,1116,32,1,0 +2013,9,14,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,826,-4,0,1018,1,0,0 +2013,6,16,7,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-8,0,820,9,0,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1145,27,1,1322,8,0,0 +2013,8,4,7,EV,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1735,-4,0,1823,1,0,0 +2013,10,20,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1650,8,0,1840,0,0,0 +2013,7,23,2,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,610,-5,0,717,-14,0,0 +2013,9,26,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,745,-12,0,817,-5,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1127,63,1,1344,45,1,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,10,0,2115,9,0,0 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1435,-6,0,1709,-6,0,0 +2013,9,24,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1500,-4,0,1800,-20,0,0 +2013,10,27,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1015,-3,0,1135,-8,0,0 +2013,6,14,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1725,50,1,1830,43,1,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2159,0,0,2351,0,0,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-5,0,1110,9,0,0 +2013,8,2,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,-3,0,706,10,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,5,0,1535,-7,0,0 +2013,9,6,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,805,-3,0,910,1,0,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,13,0,2240,13,0,0 +2013,7,19,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,10,0,1859,1,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,-7,0,1148,27,1,0 +2013,10,17,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-4,0,1704,2,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,11,0,1305,12,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1845,-2,0,1950,-6,0,0 +2013,8,18,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-5,0,1918,-3,0,0 +2013,4,5,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1130,1,0,1300,-9,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,6,0,1618,-2,0,0 +2013,10,7,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,76,1,2127,55,1,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1838,15,1,2017,-17,0,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,2359,2,0,539,-29,0,0 +2013,7,21,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1904,27,1,2056,12,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2254,1,0,29,-17,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,8,0,2320,5,0,0 +2013,7,12,5,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,630,8,0,900,1,0,0 +2013,5,31,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1832,-1,0,2235,-19,0,0 +2013,7,13,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1510,20,1,1800,-3,0,0 +2013,6,3,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,-3,0,1105,5,0,0 +2013,8,6,2,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1120,29,1,1302,26,1,0 +2013,9,13,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1600,-4,0,1805,-18,0,0 +2013,10,24,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-6,0,1125,9,0,0 +2013,9,9,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,7,0,1235,3,0,0 +2013,9,16,1,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,0,0,907,14,0,0 +2013,7,5,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-5,0,900,-27,0,0 +2013,5,24,5,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,46,1,2039,39,1,0 +2013,8,16,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,50,1,1517,64,1,0 +2013,9,19,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1113,-5,0,1448,-13,0,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1225,24,1,1529,21,1,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1905,31,1,2130,35,1,0 +2013,7,11,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,1,0,1928,-6,0,0 +2013,4,11,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1122,-7,0,1427,-5,0,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,620,-2,0,730,-7,0,0 +2013,9,24,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1315,4,0,1644,5,0,0 +2013,9,22,7,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2055,-2,0,605,-6,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1849,-4,0,2037,16,1,0 +2013,4,21,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,925,4,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1503,11,0,1631,20,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1333,-4,0,1448,-22,0,0 +2013,10,31,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1840,9,0,2025,3,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,0,0,1555,-2,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1432,95,1,1549,78,1,0 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-2,0,1130,-4,0,0 +2013,9,14,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,518,-8,0,645,-4,0,0 +2013,5,4,6,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-4,0,1010,-22,0,0 +2013,8,1,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1300,-5,0,2104,-9,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,-3,0,1608,-5,0,0 +2013,4,22,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1347,12,0,1558,8,0,0 +2013,6,5,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,13,0,1100,29,1,0 +2013,10,6,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1115,-8,0,1415,-26,0,0 +2013,9,9,1,9E,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1206,-2,0,1505,-11,0,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1857,26,1,2022,15,1,0 +2013,6,14,5,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1400,-7,0,1605,-6,0,0 +2013,7,14,7,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1410,6,0,1610,-12,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,9,0,2005,27,1,0 +2013,8,28,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1318,-3,0,1505,1,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,20,1,2346,10,0,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1710,61,1,2300,59,1,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,2200,100,1,511,122,1,0 +2013,7,28,7,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,752,-4,0,1549,-35,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1636,-1,0,1920,-11,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,0,0,1401,4,0,0 +2013,5,10,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,800,60,1,1310,80,1,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-6,0,1353,-19,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,711,-6,0,1016,-15,0,0 +2013,6,18,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1605,4,0,1803,6,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-8,0,1412,-9,0,0 +2013,10,14,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1908,73,1,2023,76,1,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1035,0,0,1250,-2,0,0 +2013,7,31,3,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,-2,0,1830,8,0,0 +2013,5,19,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,2140,-2,0,2235,-11,0,0 +2013,8,10,6,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-2,0,1015,-17,0,0 +2013,7,28,7,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1021,5,0,1155,-8,0,0 +2013,8,3,6,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1208,4,0,1822,-2,0,0 +2013,10,29,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1318,-3,0,1625,-20,0,0 +2013,4,12,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-6,0,1245,-2,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,910,13,0,1140,-6,0,0 +2013,7,19,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,810,-8,0,925,-18,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,-6,0,2103,-16,0,0 +2013,7,2,2,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1029,-3,0,1600,13,0,0 +2013,8,13,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1820,35,1,1845,42,1,0 +2013,7,2,2,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1525,-3,0,1757,5,0,0 +2013,8,14,3,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,-2,0,950,-10,0,0 +2013,8,14,3,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1545,56,1,1650,51,1,0 +2013,10,26,6,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,-1,0,1809,1,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,-1,0,1906,-19,0,0 +2013,6,20,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,3,0,1140,-12,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,903,-3,0,1029,-4,0,0 +2013,4,7,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1130,10,0,1318,-5,0,0 +2013,7,2,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,1,0,1230,-5,0,0 +2013,6,10,1,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,910,1,0,1305,-2,0,0 +2013,7,6,6,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,1,0,1920,8,0,0 +2013,6,22,6,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1520,-5,0,1700,-3,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,600,-1,0,755,-3,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,6,0,1242,8,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,750,-1,0,1015,0,0,0 +2013,8,21,3,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1150,-11,0,1443,-24,0,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1000,1,0,1225,14,0,0 +2013,8,29,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1105,19,1,1228,-1,0,0 +2013,6,7,5,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,642,-2,0,800,-15,0,0 +2013,9,13,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1930,23,1,2245,17,1,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-3,0,1709,-1,0,0 +2013,4,1,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,841,-8,0,957,-13,0,0 +2013,6,30,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1127,0,0,1217,-6,0,0 +2013,7,1,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1645,173,1,1935,176,1,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1340,16,1,1440,8,0,0 +2013,10,9,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,0,0,1135,-16,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2105,5,0,2325,1,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2155,7,0,2320,10,0,0 +2013,7,3,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1850,85,1,2138,84,1,0 +2013,9,27,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-2,0,1950,-2,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1950,15,1,2205,1,0,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,605,136,1,900,132,1,0 +2013,9,16,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,-4,0,1750,-15,0,0 +2013,10,19,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1010,-1,0,1145,-10,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,32,1,1631,18,1,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,920,7,0,1715,-12,0,0 +2013,8,28,3,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1328,-3,0,1530,42,1,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1850,27,1,2100,5,0,0 +2013,9,12,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,-6,0,1026,15,1,0 +2013,4,30,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1153,2,0,1300,-14,0,0 +2013,4,29,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,600,-10,0,720,-11,0,0 +2013,9,23,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1950,19,1,2110,24,1,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1730,-3,0,1928,-16,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,910,-2,0,1130,-12,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,930,1,0,1230,-8,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,24,1,2014,16,1,0 +2013,4,30,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-3,0,1912,-30,0,0 +2013,8,19,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-2,0,1535,-10,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1931,11,0,2200,7,0,0 +2013,7,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,700,-3,0,815,-5,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,0,0,2025,-3,0,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2025,-4,0,2122,-10,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,5,0,2140,1,0,0 +2013,9,14,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,5,0,1242,6,0,0 +2013,7,15,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1237,-8,0,1805,-17,0,0 +2013,7,30,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,2,0,753,3,0,0 +2013,5,25,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1016,-1,0,1043,-7,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1443,-3,0,1534,-11,0,0 +2013,5,19,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-5,0,954,-11,0,0 +2013,9,9,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,940,-5,0,1155,-18,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1105,3,0,1210,-6,0,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,2,0,1648,4,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1440,25,1,2015,-2,0,0 +2013,8,22,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,0,,1630,0,1,1 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1053,2,0,0 +2013,10,16,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,-5,0,2140,47,1,0 +2013,8,16,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,-1,0,1643,-6,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1100,-4,0,1245,-9,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,1,0,908,2,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,900,-3,0,1048,-19,0,0 +2013,4,26,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-3,0,1900,-6,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1105,-5,0,1335,-13,0,0 +2013,9,27,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,826,-6,0,1048,-15,0,0 +2013,6,18,2,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2254,6,0,609,7,0,0 +2013,8,18,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1315,-1,0,1437,7,0,0 +2013,5,13,1,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,10,0,1726,11,0,0 +2013,4,30,2,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1025,20,1,1325,-1,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,843,-1,0,1531,14,0,0 +2013,10,28,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,10,0,835,20,1,0 +2013,7,2,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2025,0,,2125,0,1,1 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-7,0,1718,-14,0,0 +2013,5,19,7,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,925,-2,0,1037,5,0,0 +2013,6,23,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,26,1,1900,20,1,0 +2013,10,13,7,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1836,0,0,1959,13,0,0 +2013,5,27,1,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,914,-5,0,0 +2013,5,15,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1630,76,1,1755,69,1,0 +2013,4,19,5,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1625,-6,0,2150,-10,0,0 +2013,4,11,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-1,0,2134,49,1,0 +2013,6,7,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1552,6,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1720,3,0,2110,-8,0,0 +2013,10,16,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,655,0,0,950,-6,0,0 +2013,7,11,4,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,9,0,1720,5,0,0 +2013,6,4,2,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2040,-8,0,2339,-22,0,0 +2013,4,26,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-2,0,1641,-7,0,0 +2013,6,29,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1545,31,1,1710,27,1,0 +2013,7,11,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1345,14,0,1505,8,0,0 +2013,5,3,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,900,-4,0,1215,-11,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,600,-4,0,920,-15,0,0 +2013,9,23,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1750,0,0,1915,-1,0,0 +2013,8,25,7,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-4,0,1025,-46,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1736,-5,0,1817,-14,0,0 +2013,8,12,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1209,-5,0,1331,5,0,0 +2013,10,30,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1035,-6,0,1136,1,0,0 +2013,7,5,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,0,0,1100,8,0,0 +2013,7,1,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,705,-6,0,835,-9,0,0 +2013,9,19,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-4,0,1040,-8,0,0 +2013,4,5,5,9E,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-7,0,822,-21,0,0 +2013,5,27,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1105,-6,0,1415,-3,0,0 +2013,4,12,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1626,49,1,1817,36,1,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1123,-1,0,1443,-8,0,0 +2013,6,5,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,-6,0,2040,-3,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,903,-4,0,1023,-20,0,0 +2013,5,8,3,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-3,0,1300,3,0,0 +2013,8,14,3,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1743,7,0,2018,3,0,0 +2013,4,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,853,11,0,1202,19,1,0 +2013,6,11,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2045,1,0,2155,-1,0,0 +2013,5,26,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-7,0,1023,-22,0,0 +2013,8,6,2,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,0,0,739,-10,0,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2105,21,1,2255,10,0,0 +2013,4,9,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1839,-3,0,2015,-26,0,0 +2013,10,14,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1925,111,1,2055,98,1,0 +2013,7,30,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1440,-7,0,1629,-13,0,0 +2013,4,27,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1810,-4,0,1925,-9,0,0 +2013,9,25,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-9,0,1450,-22,0,0 +2013,6,13,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,37,1,2041,25,1,0 +2013,7,21,7,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1232,0,0,1451,-20,0,0 +2013,7,9,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1820,0,0,1958,10,0,0 +2013,9,30,1,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,555,-4,0,835,4,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1227,1,0,1836,6,0,0 +2013,5,10,5,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-1,0,1420,5,0,0 +2013,4,11,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,620,0,0,725,41,1,0 +2013,9,22,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1435,-7,0,1450,-10,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1052,0,0,1223,-8,0,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1109,5,0,1413,3,0,0 +2013,10,11,5,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1031,7,0,1305,-11,0,0 +2013,5,7,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1533,-1,0,1830,-3,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,27,1,2235,10,0,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1545,15,1,2127,11,0,0 +2013,7,6,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1225,163,1,1417,159,1,0 +2013,6,28,5,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-1,0,650,-17,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1051,-3,0,1237,-16,0,0 +2013,10,11,5,EV,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1315,44,1,1513,27,1,0 +2013,10,15,2,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1547,7,0,1818,12,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2035,38,1,2330,49,1,0 +2013,8,6,2,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1620,-7,0,1843,-5,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1254,-3,0,1454,-10,0,0 +2013,5,8,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1239,-5,0,1450,-9,0,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,2026,-4,0,2249,-3,0,0 +2013,10,13,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,67,1,1835,40,1,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-5,0,1936,-18,0,0 +2013,6,10,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1335,53,1,1554,109,1,0 +2013,7,29,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,17,1,851,10,0,0 +2013,8,12,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,520,-1,0,1132,-9,0,0 +2013,9,6,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-10,0,1433,-5,0,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1305,14,0,1430,11,0,0 +2013,4,27,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,555,-1,0,832,-9,0,0 +2013,7,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,625,0,0,725,-7,0,0 +2013,4,24,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1157,154,1,1316,140,1,0 +2013,5,11,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,5,0,1455,0,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,85,1,1924,76,1,0 +2013,5,1,3,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1101,32,1,1434,50,1,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1945,-1,0,2123,-3,0,0 +2013,6,14,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1334,42,1,1442,38,1,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-3,0,1138,-1,0,0 +2013,5,13,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1330,9,0,1450,3,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,605,-1,0,720,6,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2302,8,0,25,21,1,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1810,18,1,1943,16,1,0 +2013,9,19,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2120,-13,0,2351,-21,0,0 +2013,9,18,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,950,2,0,1150,7,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,6,0,1035,6,0,0 +2013,6,23,7,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,815,-6,0,1000,-6,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,4,0,910,0,0,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1433,-7,0,1545,-1,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1629,143,1,1750,120,1,0 +2013,10,20,7,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1505,50,1,1815,50,1,0 +2013,7,19,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,5,0,1445,-8,0,0 +2013,4,12,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1011,-7,0,0 +2013,5,9,4,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1816,-7,0,2100,-10,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1410,42,1,1550,33,1,0 +2013,6,21,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1335,2,0,1510,1,0,0 +2013,9,8,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1710,21,1,2045,-6,0,0 +2013,9,19,4,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,730,-9,0,948,-18,0,0 +2013,9,21,6,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1230,-2,0,1450,2,0,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,850,7,0,1015,1,0,0 +2013,8,16,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-4,0,905,-10,0,0 +2013,4,21,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1036,9,0,1337,16,1,0 +2013,9,24,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,915,-1,0,1125,-3,0,0 +2013,6,27,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1200,2,0,1325,-2,0,0 +2013,9,15,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1930,15,1,2040,66,1,0 +2013,8,26,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1317,-9,0,1610,-19,0,0 +2013,5,6,1,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1415,15,1,1655,-13,0,0 +2013,8,7,3,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,615,-7,0,755,-11,0,0 +2013,7,24,3,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,-6,0,608,-22,0,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2021,-3,0,2115,-4,0,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,2000,177,1,2244,203,1,0 +2013,8,30,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,625,-5,0,915,-31,0,0 +2013,4,12,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2155,12,0,2320,4,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1310,14,0,1430,3,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,-4,0,1442,-27,0,0 +2013,8,29,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,23,1,2240,18,1,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,905,31,1,1128,16,1,0 +2013,10,22,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2339,-6,0,805,-18,0,0 +2013,5,30,4,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,2,0,1545,-6,0,0 +2013,4,30,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,1,0,1059,2,0,0 +2013,10,5,6,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-3,0,1450,-19,0,0 +2013,5,7,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,96,1,1109,82,1,0 +2013,8,7,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,610,-8,0,715,-9,0,0 +2013,10,21,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,735,-3,0,905,-12,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1300,20,1,2129,13,0,0 +2013,7,12,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-7,0,817,-2,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,-4,0,2329,-20,0,0 +2013,10,22,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-7,0,541,-7,0,0 +2013,9,12,4,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,181,1,1756,189,1,0 +2013,7,10,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,0,0,1839,16,1,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1820,66,1,2000,80,1,0 +2013,6,14,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-6,0,1405,-28,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,184,1,1905,185,1,0 +2013,4,7,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,3,0,1610,7,0,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,128,1,1920,135,1,0 +2013,6,11,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,-8,0,1650,20,1,0 +2013,8,19,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,11,0,1057,4,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,10,0,1132,0,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1830,-2,0,2220,2,0,0 +2013,4,10,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,730,-6,0,1032,-47,0,0 +2013,9,19,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,-6,0,1904,0,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1435,7,0,1530,3,0,0 +2013,9,9,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,545,-3,0,649,-9,0,0 +2013,4,26,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-2,0,2022,7,0,0 +2013,9,21,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1702,-11,0,1817,0,0,0 +2013,5,17,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1453,64,1,1607,59,1,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1459,-2,0,1827,-13,0,0 +2013,5,17,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-5,0,1618,-7,0,0 +2013,4,23,2,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,720,9,0,1235,2,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,-2,0,1103,-16,0,0 +2013,5,18,6,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,14,0,1830,2,0,0 +2013,9,30,1,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-10,0,913,0,0,0 +2013,8,23,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1935,0,0,2035,2,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,2040,-4,0,2355,-6,0,0 +2013,10,6,7,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1748,-5,0,2121,-8,0,0 +2013,6,2,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1002,32,1,1338,15,1,0 +2013,7,6,6,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,-2,0,2055,-19,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1150,-1,0,1310,-4,0,0 +2013,7,9,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1850,3,0,1940,0,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,25,1,1530,16,1,0 +2013,5,10,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1710,18,1,1830,16,1,0 +2013,5,19,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,6,0,1916,18,1,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1305,-5,0,1442,-11,0,0 +2013,10,27,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2030,42,1,2145,36,1,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,959,-1,0,1225,-5,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,755,8,0,1040,9,0,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,725,-4,0,900,0,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2155,0,0,2310,-3,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,-1,0,1235,-2,0,0 +2013,8,7,3,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1655,2,0,1950,28,1,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,745,-6,0,915,-10,0,0 +2013,7,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2020,29,1,2115,18,1,0 +2013,4,24,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1659,172,1,1838,182,1,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-7,0,831,-16,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,645,-4,0,820,-3,0,0 +2013,6,15,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,702,-8,0,829,-12,0,0 +2013,7,1,1,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,-5,0,1930,-29,0,0 +2013,7,12,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,-1,0,1917,46,1,0 +2013,4,12,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1815,13,0,1950,11,0,0 +2013,8,1,4,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1555,36,1,1904,48,1,0 +2013,4,10,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-3,0,1859,3,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,-5,0,2344,-21,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,34,1,1930,49,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1240,-4,0,1420,-23,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,810,-7,0,1100,-4,0,0 +2013,9,24,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1049,-8,0,1209,-14,0,0 +2013,8,5,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1341,-5,0,1456,-17,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1635,6,0,2345,11,0,0 +2013,5,25,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,11,0,1229,10,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,0,0,1303,-13,0,0 +2013,10,24,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,-7,0,1638,-34,0,0 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1355,47,1,1510,33,1,0 +2013,5,23,4,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1402,20,1,1455,10,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1015,-5,0,1305,-22,0,0 +2013,10,4,5,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,810,4,0,950,-21,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2024,24,1,2330,16,1,0 +2013,9,3,2,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,2,0,1854,10,0,0 +2013,9,18,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,740,-4,0,1015,-22,0,0 +2013,6,19,3,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,810,-5,0,1200,-8,0,0 +2013,5,10,5,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,820,-3,0,930,-8,0,0 +2013,4,24,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,821,-9,0,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,34,1,1451,27,1,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,-5,0,1053,-7,0,0 +2013,7,5,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1935,-9,0,2143,-25,0,0 +2013,8,4,7,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1150,-1,0,1810,-18,0,0 +2013,9,3,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,1,0,1405,-9,0,0 +2013,9,9,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,-3,0,1304,-13,0,0 +2013,8,14,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,0,,1200,0,1,1 +2013,8,8,4,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,615,7,0,1225,-10,0,0 +2013,7,10,3,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,730,3,0,840,-1,0,0 +2013,9,26,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1959,3,0,2111,-1,0,0 +2013,10,13,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1457,-5,0,1656,13,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,-5,0,1201,-3,0,0 +2013,10,24,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1610,-2,0,0 +2013,4,23,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,52,1,2000,68,1,0 +2013,4,27,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1553,-1,0,1823,0,0,0 +2013,6,29,6,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-1,0,1250,-3,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,6,0,2357,11,0,0 +2013,8,23,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,-4,0,920,-20,0,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1103,-5,0,1150,3,0,0 +2013,10,28,1,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1310,19,1,1517,-14,0,0 +2013,7,3,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-10,0,1555,1,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,5,0,1105,-2,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1515,-7,0,2148,-22,0,0 +2013,9,22,7,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,820,6,0,938,10,0,0 +2013,5,7,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1345,-1,0,1505,-11,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2109,39,1,2210,18,1,0 +2013,5,22,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1624,-3,0,42,-4,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1337,-16,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-6,0,1115,-15,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,-2,0,1426,-29,0,0 +2013,8,11,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1150,-6,0,1455,-5,0,0 +2013,5,16,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-5,0,2050,5,0,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,655,-1,0,825,-11,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2145,23,1,2350,42,1,0 +2013,9,22,7,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1342,0,0,1642,-10,0,0 +2013,4,15,1,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,7,0,810,-14,0,0 +2013,6,18,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,24,1,1526,28,1,0 +2013,7,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1840,1,0,2145,15,1,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1702,10,0,1815,0,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,-1,0,1820,-1,0,0 +2013,4,28,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,9,0,1135,14,0,0 +2013,4,7,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,-10,0,2049,-24,0,0 +2013,8,17,6,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,0,0,2139,-5,0,0 +2013,7,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,10,0,826,-6,0,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1104,-1,0,1344,-18,0,0 +2013,4,16,2,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,950,-3,0,1245,-9,0,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1005,54,1,1135,42,1,0 +2013,9,11,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,-10,0,1312,-23,0,0 +2013,10,3,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-6,0,1559,4,0,0 +2013,5,29,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1925,146,1,2039,134,1,0 +2013,4,30,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,0,,833,0,1,1 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1335,14,0,1620,2,0,0 +2013,7,27,6,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1415,0,0,1555,-11,0,0 +2013,5,17,5,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,600,-1,0,840,-10,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1655,8,0,2000,31,1,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1345,6,0,1500,4,0,0 +2013,5,15,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1400,-3,0,1414,-16,0,0 +2013,8,2,5,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,928,61,1,958,83,1,0 +2013,6,28,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-2,0,1410,17,1,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,19,1,1100,12,0,0 +2013,7,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,740,-1,0,1140,-1,0,0 +2013,7,26,5,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1708,184,1,1837,181,1,0 +2013,4,5,5,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-4,0,1539,13,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,2130,0,0,2315,-6,0,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2030,17,1,2224,19,1,0 +2013,9,23,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,28,1,1730,29,1,0 +2013,9,30,1,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1355,26,1,1900,28,1,0 +2013,6,12,3,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-9,0,904,-15,0,0 +2013,5,26,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-1,0,1320,-24,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1900,-4,0,2154,20,1,0 +2013,10,8,2,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-1,0,1943,7,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1958,1,0,2123,-21,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2145,1,0,2326,-13,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1022,-4,0,1410,-24,0,0 +2013,9,27,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1731,5,0,1915,-26,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,1,0,1330,-3,0,0 +2013,6,27,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,830,-5,0,850,-16,0,0 +2013,7,26,5,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,0,0,1115,4,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1040,-1,0,1140,-5,0,0 +2013,4,30,2,OO,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,263,1,1556,268,1,0 +2013,4,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-4,0,1017,-13,0,0 +2013,7,30,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-3,0,1100,-1,0,0 +2013,5,23,4,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,703,18,1,0 +2013,7,2,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1127,4,0,1253,2,0,0 +2013,7,26,5,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,-8,0,1352,-9,0,0 +2013,7,18,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1950,72,1,2130,60,1,0 +2013,8,9,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,1,0,1850,0,0,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1727,-3,0,1806,-23,0,0 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1115,12,0,1328,12,0,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-4,0,913,2,0,0 +2013,10,4,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,159,1,1745,156,1,0 +2013,8,10,6,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1650,23,1,2140,8,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,-5,0,2126,2,0,0 +2013,4,4,4,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1132,-8,0,1511,-7,0,0 +2013,6,22,6,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1923,-1,0,2034,-16,0,0 +2013,8,2,5,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1708,-6,0,1810,5,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2145,-1,0,2342,-20,0,0 +2013,8,1,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1845,72,1,1945,64,1,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1915,51,1,2253,35,1,0 +2013,5,26,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-10,0,1108,-20,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1612,-3,0,2159,-21,0,0 +2013,10,3,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,725,-2,0,930,16,1,0 +2013,7,29,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1819,46,1,2118,25,1,0 +2013,4,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,736,-10,0,1112,-23,0,0 +2013,5,25,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,3,0,1810,56,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1235,-2,0,1330,1,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,1,0,755,-2,0,0 +2013,8,9,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1500,14,0,1510,1,0,0 +2013,6,26,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,18,1,1745,16,1,0 +2013,10,5,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-5,0,1056,-12,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2105,-5,0,2232,-16,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1725,-1,0,2047,-10,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1150,14,0,1315,2,0,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1948,-2,0,2219,-21,0,0 +2013,6,3,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,810,-8,0,1020,-11,0,0 +2013,4,25,4,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1740,15,1,1935,5,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,8,0,1645,0,0,0 +2013,7,1,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,56,1,1721,67,1,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-2,0,900,-12,0,0 +2013,8,20,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1524,-5,0,1635,-4,0,0 +2013,4,28,7,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1239,-6,0,1405,-13,0,0 +2013,5,1,3,EV,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-8,0,1925,-23,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1945,-4,0,2235,-1,0,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,815,25,1,930,22,1,0 +2013,10,4,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,8,0,1910,7,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,857,-4,0,1300,-21,0,0 +2013,10,9,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1055,4,0,1921,0,0,0 +2013,10,3,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,13,0,1715,5,0,0 +2013,7,4,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,4,0,1240,-8,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,0,0,1845,-9,0,0 +2013,7,12,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,59,1,1914,52,1,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1645,16,1,1905,14,0,0 +2013,5,26,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-2,0,1940,-11,0,0 +2013,8,12,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,0,0,1820,-7,0,0 +2013,10,7,1,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1419,18,1,1600,-9,0,0 +2013,5,21,2,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,945,-15,0,1740,23,1,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-7,0,905,-20,0,0 +2013,5,2,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,720,-8,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1126,-2,0,1350,-9,0,0 +2013,7,13,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-6,0,840,-30,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,20,1,1610,14,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-5,0,1441,-18,0,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2159,-8,0,2326,-40,0,0 +2013,4,16,2,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,-6,0,1712,-21,0,0 +2013,5,12,7,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1040,16,1,1235,12,0,0 +2013,5,15,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-2,0,1355,-3,0,0 +2013,9,22,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,3,0,1420,2,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1220,-1,0,1525,-4,0,0 +2013,8,24,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1025,8,0,1430,-3,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,2,0,1332,5,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1020,-1,0,1435,29,1,0 +2013,6,10,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,705,-3,0,810,-15,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,1,0,2040,5,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-4,0,1504,-6,0,0 +2013,4,8,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1735,-4,0,2105,-12,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,56,1,1640,71,1,0 +2013,7,11,4,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,823,-1,0,1014,-11,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,941,-2,0,1152,-13,0,0 +2013,4,24,3,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1620,-2,0,2031,-32,0,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,4,0,942,14,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-6,0,1259,-15,0,0 +2013,6,1,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-6,0,1023,-7,0,0 +2013,5,31,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1700,-1,0,1858,-13,0,0 +2013,5,26,7,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,3,0,1757,-16,0,0 +2013,7,5,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-9,0,2140,15,1,0 +2013,6,10,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,6,0,2256,8,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,940,-2,0,1215,-9,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1400,-7,0,1450,-8,0,0 +2013,6,23,7,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,855,59,1,1006,39,1,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,-2,0,1802,1,0,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1625,-3,0,36,-25,0,0 +2013,10,25,5,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1046,-3,0,1437,-17,0,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,600,-3,0,904,-18,0,0 +2013,4,29,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-6,0,2040,-12,0,0 +2013,7,21,7,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,720,-7,0,1445,-22,0,0 +2013,4,2,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1025,-3,0,1614,-16,0,0 +2013,10,16,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1440,-5,0,2022,-29,0,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1915,12,0,2253,-5,0,0 +2013,8,21,3,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1826,7,0,2059,-7,0,0 +2013,8,18,7,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1830,0,0,2025,-3,0,0 +2013,7,30,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1135,7,0,1350,-4,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1435,-4,0,1613,-35,0,0 +2013,5,8,3,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,8,0,1105,25,1,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2100,13,0,2236,1,0,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1238,3,0,1828,-23,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,815,2,0,1119,0,0,0 +2013,8,22,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-5,0,1315,-9,0,0 +2013,7,18,4,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1350,-4,0,1910,-8,0,0 +2013,8,2,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-4,0,1305,-7,0,0 +2013,9,10,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,725,8,0,925,5,0,0 +2013,7,2,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,-6,0,1409,-19,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,-3,0,1328,-1,0,0 +2013,5,10,5,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,-6,0,1915,-23,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,-2,0,1133,-2,0,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1255,0,0,1620,4,0,0 +2013,10,21,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,28,1,1930,15,1,0 +2013,9,16,1,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1649,-5,0,1814,-24,0,0 +2013,4,15,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,1,0,2110,30,1,0 +2013,7,8,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,58,1,2047,50,1,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1810,0,,1915,0,1,1 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2245,171,1,2357,146,1,0 +2013,7,26,5,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1020,-4,0,1129,-4,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,104,1,1535,136,1,0 +2013,6,17,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1807,97,1,1955,115,1,0 +2013,5,8,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,32,1,920,26,1,0 +2013,7,6,6,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,550,0,0,749,-3,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1000,-6,0,1116,-11,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-1,0,1105,-2,0,0 +2013,5,13,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,545,-1,0,905,9,0,0 +2013,10,13,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,0,0,2215,1,0,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1500,9,0,1605,1,0,0 +2013,5,25,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,726,-5,0,1020,-8,0,0 +2013,10,25,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1935,-6,0,2108,-16,0,0 +2013,7,23,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,273,1,1459,367,1,0 +2013,6,23,7,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,0,0,2103,9,0,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1300,33,1,2129,0,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1000,21,1,1435,17,1,0 +2013,10,3,4,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1115,-6,0,1407,-14,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,950,11,0,1243,24,1,0 +2013,6,23,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-6,0,1355,-30,0,0 +2013,9,26,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,-2,0,1729,-12,0,0 +2013,4,21,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2245,13,0,640,-22,0,0 +2013,8,6,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1502,-5,0,1608,9,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1205,-4,0,1325,-12,0,0 +2013,8,30,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,550,1,0,909,-2,0,0 +2013,8,9,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1850,59,1,2025,47,1,0 +2013,9,18,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-8,0,1024,-19,0,0 +2013,10,31,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-6,0,1649,11,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2044,58,1,2232,46,1,0 +2013,7,2,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1755,12,0,1935,6,0,0 +2013,6,1,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,955,6,0,1215,21,1,0 +2013,9,20,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1345,-2,0,1425,1,0,0 +2013,9,29,7,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-3,0,803,-16,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1131,-1,0,1257,-1,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1330,-8,0,1539,-26,0,0 +2013,4,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1630,-5,0,1945,-12,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1124,0,0,1227,-7,0,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1600,43,1,1705,47,1,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1640,8,0,1820,19,1,0 +2013,5,3,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-6,0,1923,-9,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1805,42,1,2038,27,1,0 +2013,7,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1545,15,1,1705,15,1,0 +2013,6,6,4,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-2,0,2140,1,0,0 +2013,8,8,4,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1325,2,0,1505,21,1,0 +2013,7,19,5,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1645,-1,0,1825,10,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1514,46,1,1900,27,1,0 +2013,7,12,5,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,122,1,1950,113,1,0 +2013,8,5,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1426,-4,0,1615,-13,0,0 +2013,4,11,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1215,6,0,1310,9,0,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,2,0,1820,-18,0,0 +2013,9,24,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,17,1,1800,7,0,0 +2013,9,11,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-7,0,1214,2,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,901,2,0,1124,-5,0,0 +2013,5,31,5,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1845,-2,0,2130,-9,0,0 +2013,10,5,6,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,0,0,1605,-22,0,0 +2013,8,21,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-2,0,1440,24,1,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1920,4,0,2020,0,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1450,10,0,1615,6,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1130,-16,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,735,-6,0,1205,7,0,0 +2013,9,27,5,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1242,0,0,1642,0,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1440,13,0,1715,10,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,956,0,0,0 +2013,8,25,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1310,-4,0,1435,-10,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,955,-3,0,1600,-8,0,0 +2013,6,28,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1838,76,1,1953,89,1,0 +2013,7,21,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,650,-1,0,800,-11,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,-5,0,905,-3,0,0 +2013,7,8,1,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,-3,0,2050,14,0,0 +2013,5,24,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1600,116,1,1725,107,1,0 +2013,5,1,3,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1945,-2,0,2110,-20,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1730,0,0,2017,-3,0,0 +2013,4,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,600,-5,0,815,-6,0,0 +2013,6,23,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1330,-6,0,1500,-11,0,0 +2013,6,26,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,0,0,550,-3,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2200,98,1,2255,78,1,0 +2013,8,20,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,6,0,1315,7,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1935,-6,0,2130,-13,0,0 +2013,4,7,7,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1350,18,1,1522,15,1,0 +2013,6,25,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,39,1,2025,25,1,0 +2013,5,24,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1415,10,0,1813,-2,0,0 +2013,4,11,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,145,1,2145,160,1,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1005,13,0,1535,-10,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,4,0,1240,3,0,0 +2013,8,19,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1005,-10,0,1130,-28,0,0 +2013,6,14,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-2,0,1323,0,0,0 +2013,5,31,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,7,0,1600,-2,0,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1242,3,0,1349,5,0,0 +2013,10,30,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1705,6,0,1825,6,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1548,-5,0,1804,1,0,0 +2013,6,5,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-4,0,1506,-12,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,-1,0,2330,-10,0,0 +2013,4,23,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2327,-2,0,540,-16,0,0 +2013,7,15,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-5,0,906,-14,0,0 +2013,6,17,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1415,-3,0,1549,-10,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1440,14,0,1617,5,0,0 +2013,4,4,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1345,98,1,1620,85,1,0 +2013,8,26,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1910,0,0,2240,9,0,0 +2013,4,9,2,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1910,43,1,2115,42,1,0 +2013,4,30,2,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1734,26,1,2015,17,1,0 +2013,9,11,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-3,0,1517,-11,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,45,1,1810,40,1,0 +2013,5,9,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,2,0,1923,2,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1421,-4,0,1901,-20,0,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1055,12,0,1210,6,0,0 +2013,7,31,3,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-7,0,1230,-6,0,0 +2013,9,23,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1124,0,0,1453,-16,0,0 +2013,5,10,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,2100,-5,0,2335,-18,0,0 +2013,10,24,4,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,710,-4,0,1010,-3,0,0 +2013,8,11,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1225,5,0,1535,5,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,935,-3,0,1315,-14,0,0 +2013,9,14,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-5,0,1430,-23,0,0 +2013,8,12,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1220,14,0,1445,26,1,0 +2013,6,26,3,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1244,5,0,1505,-9,0,0 +2013,6,13,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1130,141,1,1451,155,1,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,39,1,1240,41,1,0 +2013,6,20,4,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1913,-7,0,2031,-16,0,0 +2013,7,19,5,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,850,4,0,1200,-5,0,0 +2013,4,18,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,2,0,2035,-20,0,0 +2013,5,28,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-5,0,1100,-7,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,-3,0,1933,-13,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1400,-2,0,1525,-15,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1555,0,0,1950,-12,0,0 +2013,5,20,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2055,35,1,2225,6,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1845,0,0,2140,-5,0,0 +2013,6,21,5,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,820,-5,0,1624,26,1,0 +2013,5,2,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1153,-7,0,1420,-6,0,0 +2013,7,8,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,0,0,1305,4,0,0 +2013,10,23,3,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1715,6,0,1950,2,0,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1245,23,1,1425,15,1,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1036,-1,0,1602,-9,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1205,-4,0,1345,8,0,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1605,2,0,1715,-4,0,0 +2013,4,25,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1634,-1,0,0 +2013,8,4,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,847,-19,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1850,-3,0,2210,-22,0,0 +2013,10,28,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-2,0,2210,10,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,-4,0,900,-7,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1210,-1,0,1315,-14,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2149,-6,0,2331,-2,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-6,0,1440,-14,0,0 +2013,4,16,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,33,1,1424,15,1,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,942,-1,0,1205,-4,0,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1000,2,0,1230,1,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1615,1,0,30,-12,0,0 +2013,7,31,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-12,0,638,-15,0,0 +2013,5,8,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,740,-6,0,915,-8,0,0 +2013,9,2,1,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1920,-7,0,2107,-13,0,0 +2013,5,16,4,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1538,-2,0,0 +2013,9,29,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,-1,0,1000,-6,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1120,11,0,1325,7,0,0 +2013,7,1,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,58,1,950,42,1,0 +2013,8,26,1,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1700,32,1,1825,16,1,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-7,0,1835,-27,0,0 +2013,10,25,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1709,-6,0,1830,13,0,0 +2013,9,21,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,846,-8,0,0 +2013,7,16,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1650,-6,0,1740,29,1,0 +2013,10,26,6,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1520,10,0,1730,-6,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1420,23,1,1850,19,1,0 +2013,4,10,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1158,21,1,1440,34,1,0 +2013,6,4,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1239,-9,0,1406,4,0,0 +2013,6,6,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,71,1,2015,61,1,0 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,655,17,1,1526,11,0,0 +2013,6,26,3,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,910,0,0,1040,-15,0,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1450,-6,0,1745,-18,0,0 +2013,10,22,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,0,0,1824,-8,0,0 +2013,9,6,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2008,1,0,2322,9,0,0 +2013,8,13,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1710,26,1,1955,-7,0,0 +2013,8,29,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,744,-5,0,820,-3,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1815,17,1,1948,48,1,0 +2013,8,21,3,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,-7,0,1303,-10,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2050,80,1,2254,77,1,0 +2013,10,21,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,17,1,1601,10,0,0 +2013,10,25,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1130,69,1,1224,67,1,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-5,0,1156,9,0,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1046,-2,0,1615,0,0,0 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1115,-3,0,1458,-4,0,0 +2013,9,15,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1930,-5,0,2210,-10,0,0 +2013,10,18,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-3,0,1436,-11,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,276,1,2214,264,1,0 +2013,5,8,3,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-2,0,1350,-19,0,0 +2013,6,6,4,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1705,-5,0,1930,-27,0,0 +2013,6,10,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,640,-4,0,802,-10,0,0 +2013,5,14,2,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1349,-6,0,1641,-21,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1920,67,1,2359,46,1,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1405,19,1,1535,1,0,0 +2013,6,16,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2155,-4,0,2305,-6,0,0 +2013,4,20,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1615,-5,0,1822,-31,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2105,120,1,2240,109,1,0 +2013,10,8,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1110,-2,0,1200,-5,0,0 +2013,4,14,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-1,0,1845,-8,0,0 +2013,4,9,2,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1650,124,1,2058,127,1,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1209,-1,0,1531,-11,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1405,-3,0,1658,-15,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1410,-2,0,1556,-5,0,0 +2013,5,4,6,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-4,0,1340,-14,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1215,0,0,1317,-6,0,0 +2013,5,8,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1120,1,0,1254,-4,0,0 +2013,10,1,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1350,-3,0,1404,-5,0,0 +2013,6,30,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-5,0,940,-4,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-6,0,1946,-21,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1040,1,0,1410,-1,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1203,31,1,1433,15,1,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1840,22,1,2115,14,0,0 +2013,4,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-7,0,704,-10,0,0 +2013,10,12,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2004,29,1,2114,21,1,0 +2013,7,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-3,0,1227,-16,0,0 +2013,9,13,5,DL,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1825,-5,0,2005,11,0,0 +2013,6,10,1,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,2035,3,0,2330,10,0,0 +2013,9,23,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1115,29,1,1300,18,1,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,941,-3,0,1334,-2,0,0 +2013,9,6,5,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1420,9,0,1605,-9,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1945,-2,0,2108,-10,0,0 +2013,7,9,2,OO,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-5,0,2019,-14,0,0 +2013,9,28,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1300,-4,0,1355,-1,0,0 +2013,4,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1940,-3,0,2156,-2,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1945,41,1,2128,16,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1720,-4,0,1748,-20,0,0 +2013,5,27,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,52,1,1535,28,1,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,-7,0,2224,-32,0,0 +2013,7,25,4,OO,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1659,318,1,1827,312,1,0 +2013,9,14,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,700,-5,0,815,-19,0,0 +2013,8,5,1,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,2030,-6,0,2325,-17,0,0 +2013,9,25,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,1,0,810,-8,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,40,1,1630,84,1,0 +2013,8,22,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,7,0,1900,1,0,0 +2013,6,10,1,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,810,-2,0,1025,0,0,0 +2013,6,1,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1205,54,1,1305,56,1,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2045,-8,0,17,-32,0,0 +2013,6,19,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-4,0,831,-21,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,735,-4,0,901,-4,0,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-5,0,828,-1,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,-2,0,1153,-5,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1300,0,,2105,0,1,1 +2013,8,18,7,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1420,8,0,1605,10,0,0 +2013,9,19,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1812,-19,0,0 +2013,5,19,7,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,800,-4,0,1056,-40,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2328,-10,0,535,-28,0,0 +2013,4,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1200,-3,0,1300,-8,0,0 +2013,5,26,7,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,7,0,1210,-4,0,0 +2013,5,17,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1451,2,0,1549,-15,0,0 +2013,8,3,6,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-5,0,2033,8,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,843,-3,0,1035,-11,0,0 +2013,5,23,4,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1550,7,0,1700,1,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,44,1,1915,40,1,0 +2013,5,23,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,4,0,1700,9,0,0 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1010,1,0,1200,-23,0,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,2235,-4,0,602,-6,0,0 +2013,9,23,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,8,0,1045,13,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1105,-1,0,1235,-5,0,0 +2013,5,28,2,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1830,-5,0,1955,-5,0,0 +2013,7,12,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,10,0,2202,9,0,0 +2013,10,19,6,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,710,3,0,725,9,0,0 +2013,7,22,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,954,-6,0,1028,-4,0,0 +2013,9,15,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2110,12,0,2235,12,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,830,5,0,1105,6,0,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1637,15,1,1814,4,0,0 +2013,6,3,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,-3,0,2009,32,1,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1530,15,1,1700,-1,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2200,31,1,2310,34,1,0 +2013,8,10,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,-2,0,1255,-7,0,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-7,0,1359,-10,0,0 +2013,8,1,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,26,1,2145,18,1,0 +2013,10,15,2,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1655,75,1,1823,76,1,0 +2013,6,29,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-8,0,846,-13,0,0 +2013,10,3,4,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,820,-20,0,0 +2013,4,16,2,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1000,52,1,1316,72,1,0 +2013,6,7,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,20,1,1330,18,1,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1700,24,1,1810,19,1,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,-2,0,2310,-8,0,0 +2013,10,28,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1159,-3,0,1447,-3,0,0 +2013,5,13,1,EV,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,36,1,1925,15,1,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1124,-1,0,1212,8,0,0 +2013,4,4,4,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,645,-2,0,755,-8,0,0 +2013,5,1,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1450,-2,0,2250,15,1,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1420,-2,0,1652,-16,0,0 +2013,4,5,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,805,-2,0,935,-11,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,22,1,1830,9,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2023,20,1,2245,19,1,0 +2013,7,10,3,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,0,,2041,0,1,1 +2013,8,20,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-7,0,1422,-18,0,0 +2013,10,17,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1822,-1,0,2003,-6,0,0 +2013,8,18,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,47,1,1856,41,1,0 +2013,7,28,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-7,0,1020,-7,0,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,600,3,0,1115,2,0,0 +2013,9,18,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1435,0,0,1450,-9,0,0 +2013,6,28,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2155,246,1,2300,241,1,0 +2013,6,28,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-3,0,1215,-16,0,0 +2013,9,7,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-7,0,1310,-17,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2145,-16,0,2358,-18,0,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2110,7,0,2349,-12,0,0 +2013,10,12,6,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,80,1,2235,71,1,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1125,-5,0,1310,-2,0,0 +2013,8,27,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,550,-4,0,805,-2,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,5,0,2210,-23,0,0 +2013,4,15,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,810,0,0,1015,-7,0,0 +2013,10,15,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1235,-6,0,1441,-3,0,0 +2013,9,3,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2056,-6,0,0 +2013,9,9,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,645,9,0,740,37,1,0 +2013,8,17,6,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1004,-7,0,0 +2013,5,7,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,0,0,2010,-15,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-6,0,2025,7,0,0 +2013,8,2,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,7,0,900,1,0,0 +2013,8,23,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,740,-5,0,855,-12,0,0 +2013,9,25,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1145,-8,0,1309,-17,0,0 +2013,4,20,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1445,0,0,1550,-3,0,0 +2013,7,3,3,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1735,14,0,2145,-9,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1205,5,0,1755,-5,0,0 +2013,5,8,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1345,3,0,1445,-1,0,0 +2013,9,3,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,804,0,0,922,-18,0,0 +2013,9,24,2,OO,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1205,-2,0,1436,5,0,0 +2013,7,8,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,949,78,1,1130,74,1,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2120,-3,0,2310,-5,0,0 +2013,6,23,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-3,0,2220,6,0,0 +2013,8,16,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1415,-4,0,2240,4,0,0 +2013,8,24,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1459,9,0,2005,-4,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,900,-4,0,1025,12,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1430,4,0,1710,-22,0,0 +2013,9,1,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,-6,0,1720,-6,0,0 +2013,8,15,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,710,-7,0,916,-28,0,0 +2013,7,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-3,0,1718,-26,0,0 +2013,8,17,6,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1415,-5,0,2215,13,0,0 +2013,8,31,6,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1200,-1,0,1410,0,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1600,164,1,1920,148,1,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-3,0,910,-5,0,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-3,0,936,1,0,0 +2013,4,17,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,800,-2,0,950,-14,0,0 +2013,6,29,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-6,0,2252,-6,0,0 +2013,7,3,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1818,61,1,2100,36,1,0 +2013,5,25,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,0,0,1014,13,0,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1930,12,0,2101,-6,0,0 +2013,6,30,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2300,-1,0,112,-10,0,0 +2013,7,11,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1444,-1,0,1709,3,0,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1435,64,1,1805,54,1,0 +2013,5,10,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,950,1,0,1100,-5,0,0 +2013,4,22,1,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1210,-5,0,1344,-2,0,0 +2013,6,4,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1645,12,0,2025,-5,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,-1,0,1900,-14,0,0 +2013,8,3,6,DL,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,830,-5,0,1115,-15,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1820,-3,0,2007,-20,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-2,0,1249,5,0,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1420,3,0,1814,-3,0,0 +2013,4,4,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1935,0,0,2046,0,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1840,2,0,1940,-3,0,0 +2013,10,30,3,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-8,0,1010,-16,0,0 +2013,7,15,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1323,37,1,1613,32,1,0 +2013,9,10,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1705,-10,0,1823,-12,0,0 +2013,8,13,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-2,0,1729,2,0,0 +2013,10,4,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-8,0,1239,-7,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,823,6,0,1440,-8,0,0 +2013,7,17,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1400,9,0,1735,-5,0,0 +2013,9,5,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,845,-8,0,1045,-32,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1700,25,1,1855,23,1,0 +2013,5,30,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1000,7,0,1105,14,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,635,-3,0,755,16,1,0 +2013,7,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1010,2,0,1110,0,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-2,0,1003,-14,0,0 +2013,6,2,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1325,0,0,1646,-2,0,0 +2013,7,1,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1428,-3,0,1814,3,0,0 +2013,9,6,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1530,10,0,1650,3,0,0 +2013,4,23,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-7,0,1050,-1,0,0 +2013,5,26,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1330,-6,0,1706,-20,0,0 +2013,6,9,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,36,1,2059,31,1,0 +2013,4,2,2,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,750,-3,0,920,-16,0,0 +2013,9,21,6,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1238,-1,0,1524,-28,0,0 +2013,7,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,2,0,810,-2,0,0 +2013,10,18,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1516,-5,0,2324,-20,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1133,29,1,1451,17,1,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-7,0,1315,-9,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1220,6,0,1325,8,0,0 +2013,6,29,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1224,8,0,1350,12,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1840,0,0,2110,-15,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-1,0,1809,-8,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1924,-3,0,2240,-21,0,0 +2013,5,21,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2255,-3,0,2359,-9,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-3,0,1830,-19,0,0 +2013,8,14,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,13,0,1315,-4,0,0 +2013,9,15,7,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,-1,0,2000,0,0,0 +2013,5,12,7,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,800,-2,0,1023,5,0,0 +2013,9,10,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-5,0,759,-6,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,625,-5,0,735,-13,0,0 +2013,6,12,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,-1,0,2105,-1,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,6,0,1720,2,0,0 +2013,8,6,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1501,28,1,0 +2013,8,16,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,-6,0,2126,-22,0,0 +2013,5,26,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,930,1,0,1055,-12,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,-3,0,2330,0,0,0 +2013,6,11,2,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1725,0,0,2040,-31,0,0 +2013,7,19,5,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,925,-1,0,1112,-5,0,0 +2013,8,8,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1415,49,1,1550,0,1,1 +2013,4,7,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1604,126,1,2354,104,1,0 +2013,10,25,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,620,-1,0,750,4,0,0 +2013,7,13,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,935,4,0,1100,-2,0,0 +2013,10,20,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1740,-4,0,1900,3,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,-3,0,2319,-9,0,0 +2013,5,16,4,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,0,0,1529,-10,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,940,4,0,1151,-17,0,0 +2013,4,23,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1645,-5,0,1842,-9,0,0 +2013,4,13,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-4,0,1329,-2,0,0 +2013,6,4,2,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,1,0,555,-10,0,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1459,1,0,1802,-26,0,0 +2013,5,25,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-7,0,1223,-7,0,0 +2013,8,30,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,6,0,1340,-2,0,0 +2013,6,11,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2326,-2,0,547,-14,0,0 +2013,7,29,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-4,0,1330,-17,0,0 +2013,10,25,5,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1926,-7,0,2113,-17,0,0 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,27,1,725,14,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,-8,0,2145,20,1,0 +2013,10,21,1,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1010,26,1,1310,27,1,0 +2013,4,12,5,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,24,1,1855,18,1,0 +2013,10,6,7,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,-3,0,1836,30,1,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1045,-3,0,1335,-9,0,0 +2013,4,12,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,7,0,1423,0,0,0 +2013,8,18,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1319,-9,0,1650,-24,0,0 +2013,8,9,5,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,35,1,2126,62,1,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,845,54,1,1330,66,1,0 +2013,9,4,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1005,-5,0,1230,-4,0,0 +2013,9,16,1,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1642,0,0,1837,3,0,0 +2013,7,23,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,3,0,2345,11,0,0 +2013,8,30,5,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,2,0,2202,-13,0,0 +2013,5,5,7,EV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1647,1,0,0 +2013,7,8,1,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,845,-5,0,952,-15,0,0 +2013,4,9,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1127,0,0,1325,-4,0,0 +2013,6,1,6,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,15,1,1805,40,1,0 +2013,7,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,825,0,0,1120,-12,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,930,-5,0,1155,11,0,0 +2013,4,14,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-8,0,1922,-17,0,0 +2013,8,29,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-1,0,901,-8,0,0 +2013,9,1,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1206,-11,0,2025,-12,0,0 +2013,4,19,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,935,28,1,1030,19,1,0 +2013,9,7,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1605,0,0,1725,-5,0,0 +2013,7,4,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,849,-4,0,1005,-12,0,0 +2013,8,7,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-6,0,2025,6,0,0 +2013,10,5,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,17,1,1625,9,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2130,3,0,2350,-1,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-3,0,2316,-15,0,0 +2013,9,18,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1739,-5,0,1858,-11,0,0 +2013,4,9,2,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,850,-1,0,1110,-12,0,0 +2013,5,19,7,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1725,-8,0,1907,3,0,0 +2013,8,6,2,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1430,5,0,1718,-4,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1530,31,1,1800,8,0,0 +2013,6,12,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1228,0,0,1405,-12,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2055,-2,0,2324,-24,0,0 +2013,6,7,5,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,712,-5,0,850,-23,0,0 +2013,9,22,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2134,-5,0,2206,2,0,0 +2013,10,14,1,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1935,-8,0,2013,-13,0,0 +2013,9,30,1,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1210,26,1,2025,20,1,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,121,1,1627,95,1,0 +2013,6,26,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1245,58,1,1820,60,1,0 +2013,6,18,2,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,-2,0,1445,-10,0,0 +2013,6,22,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1235,-2,0,1705,-1,0,0 +2013,7,31,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1145,0,,1155,0,1,1 +2013,7,3,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-6,0,1030,-24,0,0 +2013,7,23,2,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,90,1,1740,154,1,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,-10,0,1335,-28,0,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1403,0,,1547,0,1,1 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1945,-4,0,2200,-1,0,0 +2013,5,30,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-4,0,2315,6,0,0 +2013,9,26,4,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,2015,-7,0,2155,-11,0,0 +2013,10,10,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1035,14,0,1155,9,0,0 +2013,10,12,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-7,0,1510,-7,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,730,0,0,900,-5,0,0 +2013,5,1,3,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,645,-3,0,805,-15,0,0 +2013,10,13,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-5,0,910,-4,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2258,11,0,509,-4,0,0 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2015,47,1,2300,52,1,0 +2013,7,29,1,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,12,0,1914,16,1,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1720,3,0,1855,-8,0,0 +2013,7,9,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1400,96,1,1605,96,1,0 +2013,7,5,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-4,0,855,-31,0,0 +2013,10,7,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1456,63,1,1802,88,1,0 +2013,9,19,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1625,-3,0,1844,-2,0,0 +2013,8,7,3,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1735,-1,0,2030,29,1,0 +2013,9,5,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-7,0,1425,-10,0,0 +2013,8,23,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,8,0,920,0,0,0 +2013,9,14,6,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1337,-14,0,1550,-19,0,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,930,-6,0,1115,1,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1815,-10,0,1920,-2,0,0 +2013,8,25,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-7,0,2101,-7,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,80,1,1712,0,1,1 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,10,0,1835,4,0,0 +2013,5,12,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1815,-5,0,1945,-6,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1330,0,0,1455,-4,0,0 +2013,7,9,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,842,20,1,0 +2013,8,9,5,HA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1355,3,0,2205,6,0,0 +2013,6,3,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1245,8,0,1553,-12,0,0 +2013,10,24,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1145,-6,0,1403,-3,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,3,0,925,5,0,0 +2013,8,3,6,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1005,-2,0,1110,-4,0,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,932,3,0,1236,16,1,0 +2013,10,12,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1420,-2,0,1545,-13,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2140,8,0,2237,7,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-4,0,1325,-7,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1005,19,1,1525,1,0,0 +2013,9,25,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1925,15,1,2055,3,0,0 +2013,6,1,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1825,-4,0,2043,-1,0,0 +2013,4,20,6,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1000,-4,0,1310,-21,0,0 +2013,7,8,1,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,0,0,1415,-4,0,0 +2013,4,7,7,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1935,-1,0,2102,-7,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,0,0,1013,-28,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1750,44,1,2150,24,1,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,118,1,1529,112,1,0 +2013,6,12,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1820,0,0,2200,-4,0,0 +2013,8,4,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,807,0,0,1631,-6,0,0 +2013,7,13,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-4,0,1720,-15,0,0 +2013,8,15,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-1,0,1623,-8,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2244,-6,0,21,-16,0,0 +2013,9,13,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,740,-1,0,855,-9,0,0 +2013,9,12,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,50,1,1840,107,1,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,-4,0,1039,-9,0,0 +2013,9,27,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,-3,0,1240,2,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1048,-5,0,1925,-30,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-4,0,958,-27,0,0 +2013,5,24,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2236,1,0,715,-39,0,0 +2013,4,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,-1,0,1140,13,0,0 +2013,8,22,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1335,28,1,1415,18,1,0 +2013,6,14,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1852,-2,0,1958,-15,0,0 +2013,8,1,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,60,1,2030,47,1,0 +2013,5,10,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-4,0,1435,2,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,1,0,1850,-3,0,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,-9,0,2032,15,1,0 +2013,5,31,5,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1635,54,1,1720,58,1,0 +2013,7,28,7,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,16,1,1545,-1,0,0 +2013,5,9,4,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1825,0,0,2009,17,1,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1130,1,0,1245,1,0,0 +2013,6,2,7,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1445,0,,1612,0,1,1 +2013,7,12,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,934,-4,0,1020,-13,0,0 +2013,6,7,5,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,-5,0,1653,0,1,1 +2013,10,1,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,7,0,834,-9,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,758,0,0,1011,7,0,0 +2013,9,20,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-5,0,1551,-11,0,0 +2013,9,7,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1440,-1,0,1540,1,0,0 +2013,9,29,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-6,0,1940,-7,0,0 +2013,6,9,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1120,-4,0,1444,-19,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2100,0,,2240,0,1,1 +2013,6,7,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1451,-9,0,2333,13,0,0 +2013,9,24,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1316,-8,0,1402,-13,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,730,-4,0,903,-14,0,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,0,,1059,0,1,1 +2013,4,15,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1218,-6,0,1330,-13,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,-3,0,1815,10,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1655,3,0,2130,-12,0,0 +2013,6,24,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,24,1,1911,22,1,0 +2013,6,3,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-7,0,2130,-46,0,0 +2013,6,21,5,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1722,-7,0,2044,-4,0,0 +2013,8,15,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,25,1,1840,23,1,0 +2013,4,10,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,715,-13,0,913,-6,0,0 +2013,10,31,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-1,0,940,1,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,-1,0,1520,-16,0,0 +2013,5,4,6,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1010,-4,0,1130,-6,0,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,11,0,1810,-6,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1820,-1,0,2025,-8,0,0 +2013,5,28,2,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1635,3,0,1740,-6,0,0 +2013,4,2,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1126,2,0,1403,-5,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-7,0,1448,-12,0,0 +2013,5,27,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,630,-9,0,1041,4,0,0 +2013,10,7,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-4,0,1755,1,0,0 +2013,4,14,7,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,612,-4,0,740,-12,0,0 +2013,4,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2110,-3,0,40,-17,0,0 +2013,5,8,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1105,39,1,1230,24,1,0 +2013,4,30,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1436,0,0,1642,2,0,0 +2013,7,31,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,2025,20,1,2125,12,0,0 +2013,9,16,1,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-5,0,910,-34,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,0,0,1605,17,1,0 +2013,8,1,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,7,0,10,7,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,56,1,2010,50,1,0 +2013,7,2,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,820,-4,0,935,-22,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,0,0,1448,8,0,0 +2013,5,19,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-3,0,735,14,0,0 +2013,9,15,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,2,0,1056,-9,0,0 +2013,9,19,4,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,8,0,1925,-6,0,0 +2013,8,2,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1340,0,,1555,0,1,1 +2013,8,16,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2033,51,1,2120,54,1,0 +2013,5,23,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1602,-4,0,1608,-1,0,0 +2013,7,27,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1040,-9,0,1832,-24,0,0 +2013,5,17,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1625,11,0,1740,19,1,0 +2013,9,21,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1758,151,1,2132,146,1,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1745,28,1,2029,47,1,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,-2,0,1320,2,0,0 +2013,10,12,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,-3,0,1045,14,0,0 +2013,5,12,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1807,6,0,2028,0,0,0 +2013,8,2,5,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1450,17,1,1645,96,1,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-5,0,1017,-7,0,0 +2013,9,3,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,130,1,1520,128,1,0 +2013,5,2,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,806,-5,0,900,-13,0,0 +2013,6,16,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1135,1,0,1300,12,0,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2020,52,1,2325,51,1,0 +2013,9,25,3,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1350,5,0,2155,-9,0,0 +2013,6,23,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-4,0,1700,1,0,0 +2013,10,7,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,3,0,1020,3,0,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1725,32,1,1935,32,1,0 +2013,9,28,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,4,0,1939,0,0,0 +2013,7,28,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,34,1,1810,31,1,0 +2013,10,2,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,8,0,2020,1,0,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,720,-1,0,1020,-3,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,725,-3,0,820,-8,0,0 +2013,6,8,6,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,0,0,645,5,0,0 +2013,10,17,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-10,0,1215,-15,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1121,-2,0,1306,-1,0,0 +2013,6,2,7,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1230,3,0,1525,-6,0,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2150,-4,0,54,-23,0,0 +2013,9,16,1,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,634,7,0,715,3,0,0 +2013,9,5,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,700,-1,0,800,0,0,0 +2013,6,23,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-4,0,1412,-5,0,0 +2013,6,16,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-2,0,2005,-4,0,0 +2013,6,27,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1735,51,1,1850,45,1,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1908,0,0,2114,-33,0,0 +2013,4,5,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,810,-2,0,925,-6,0,0 +2013,7,6,6,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,69,1,1115,50,1,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-5,0,1522,0,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,8,0,1747,39,1,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2015,-1,0,2145,1,0,0 +2013,5,15,3,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,810,-4,0,1005,-8,0,0 +2013,4,22,1,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1215,-3,0,1350,-11,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2259,-3,0,107,-9,0,0 +2013,7,2,2,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,0,0,1510,2,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,-2,0,1611,-12,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-1,0,1251,-4,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,0,0,1154,-2,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2155,-4,0,2300,-11,0,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1850,-2,0,2100,-19,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-7,0,1535,-30,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,2,0,1723,-8,0,0 +2013,5,5,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2230,9,0,625,28,1,0 +2013,7,27,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,158,1,1401,151,1,0 +2013,4,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1145,23,1,1300,19,1,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1724,86,1,1929,114,1,0 +2013,9,24,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,907,-2,0,1100,-5,0,0 +2013,5,11,6,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,35,1,813,22,1,0 +2013,7,11,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,12,0,1409,16,1,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1005,28,1,1240,25,1,0 +2013,10,28,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1427,-2,0,1805,4,0,0 +2013,7,23,2,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1620,-5,0,1843,5,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,745,-4,0,915,-16,0,0 +2013,9,20,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1735,0,0,2059,-1,0,0 +2013,7,30,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,-3,0,10,-25,0,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1640,35,1,1924,18,1,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,605,0,0,730,-10,0,0 +2013,6,4,2,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2050,4,0,2255,-8,0,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,13,0,1850,14,0,0 +2013,8,15,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1914,5,0,2105,5,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1921,39,1,2051,22,1,0 +2013,5,12,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,749,-3,0,905,-13,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,156,1,1505,161,1,0 +2013,7,17,3,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,810,6,0,930,26,1,0 +2013,8,27,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-1,0,1320,-22,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,750,-5,0,843,-11,0,0 +2013,7,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1323,22,1,1724,18,1,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-3,0,1230,-6,0,0 +2013,6,24,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1500,-5,0,1535,4,0,0 +2013,7,3,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,21,1,1630,26,1,0 +2013,5,21,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,3,0,1945,2,0,0 +2013,8,24,6,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2145,-6,0,540,-14,0,0 +2013,7,15,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,18,1,1938,-39,0,0 +2013,9,5,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-5,0,1205,-5,0,0 +2013,7,7,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-11,0,925,-14,0,0 +2013,10,9,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-5,0,2115,-15,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,13796,Metropolitan Oakland International,Oakland,CA,1942,55,1,2308,47,1,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1500,25,1,1725,9,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1635,55,1,1956,31,1,0 +2013,5,24,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,850,0,0,950,-3,0,0 +2013,9,29,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,0,0,1140,4,0,0 +2013,9,26,4,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-8,0,1551,-22,0,0 +2013,10,26,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,-14,0,1815,-20,0,0 +2013,9,14,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1410,0,0,1535,-5,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,10,0,1200,-4,0,0 +2013,5,1,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,-5,0,2151,2,0,0 +2013,8,6,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,-2,0,1510,11,0,0 +2013,6,17,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,700,-3,0,802,-13,0,0 +2013,7,29,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1010,-3,0,1023,-16,0,0 +2013,8,16,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1050,8,0,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1735,42,1,2145,21,1,0 +2013,8,29,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,750,1,0,900,-7,0,0 +2013,6,8,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,800,-3,0,1156,-16,0,0 +2013,7,7,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1225,-6,0,1335,2,0,0 +2013,4,6,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,710,5,0,1005,11,0,0 +2013,7,15,1,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,850,0,0,1105,-18,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,905,-1,0,1315,2,0,0 +2013,9,15,7,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,1,0,1935,1,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1257,9,0,1722,20,1,0 +2013,7,16,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,2,0,1741,0,0,0 +2013,8,13,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-5,0,857,-14,0,0 +2013,10,8,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1520,6,0,1641,-4,0,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-6,0,2206,-15,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1510,-2,0,1525,-16,0,0 +2013,8,23,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1520,-5,0,1710,11,0,0 +2013,6,23,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1320,0,0,1325,-8,0,0 +2013,10,17,4,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1615,-11,0,1921,-10,0,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1530,22,1,1705,10,0,0 +2013,6,6,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1800,-3,0,1935,-5,0,0 +2013,7,2,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1540,85,1,1800,75,1,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1055,-3,0,1206,0,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1035,18,1,1130,-1,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,-3,0,1128,-18,0,0 +2013,9,8,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,650,-1,0,710,7,0,0 +2013,10,1,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,-2,0,2015,-12,0,0 +2013,8,15,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-3,0,1938,-23,0,0 +2013,5,19,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1235,10,0,1400,4,0,0 +2013,9,29,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,800,-3,0,905,-25,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,0,0,2235,-7,0,0 +2013,6,3,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1734,-6,0,2105,-22,0,0 +2013,9,2,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1829,249,1,2108,247,1,0 +2013,4,5,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1710,-3,0,1828,-3,0,0 +2013,7,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1445,-1,0,1605,-8,0,0 +2013,9,8,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1246,17,1,1512,2,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,920,-4,0,1235,5,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,-4,0,2115,-11,0,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-1,0,2100,-9,0,0 +2013,10,6,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-11,0,842,-15,0,0 +2013,9,13,5,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1050,-2,0,1325,-25,0,0 +2013,10,4,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1254,0,,1631,0,1,1 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,0,0,850,10,0,0 +2013,9,18,3,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1809,-7,0,2029,44,1,0 +2013,4,5,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,610,-2,0,725,-2,0,0 +2013,8,18,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-5,0,955,-15,0,0 +2013,7,8,1,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,-1,0,1235,-21,0,0 +2013,10,5,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1400,-10,0,1434,-9,0,0 +2013,10,29,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,35,1,1335,30,1,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1305,-8,0,1500,-29,0,0 +2013,4,19,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,748,0,0,1052,-14,0,0 +2013,10,13,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,741,107,1,1520,113,1,0 +2013,6,21,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,-15,0,2255,-15,0,0 +2013,4,22,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-4,0,1719,15,1,0 +2013,10,8,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-7,0,1130,-17,0,0 +2013,10,11,5,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,735,-8,0,1559,11,0,0 +2013,6,14,5,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2025,20,1,1203,-12,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,-2,0,2340,4,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,18,1,1015,30,1,0 +2013,8,19,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-4,0,910,-6,0,0 +2013,8,10,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1545,9,0,1715,6,0,0 +2013,7,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,0,1514,-12,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2005,-2,0,2130,0,0,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1530,-2,0,1547,-13,0,0 +2013,8,9,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1716,6,0,2341,-1,0,0 +2013,7,25,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,-4,0,1855,-11,0,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1505,2,0,1740,11,0,0 +2013,8,23,5,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,-7,0,1716,-7,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1620,19,1,2000,3,0,0 +2013,4,13,6,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,645,-10,0,846,-16,0,0 +2013,10,2,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1025,16,1,1305,6,0,0 +2013,4,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2130,4,0,2350,-3,0,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1558,-6,0,1938,-14,0,0 +2013,10,16,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1709,-5,0,1840,-17,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1145,5,0,1800,14,0,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,745,1,0,845,-2,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2000,6,0,2139,40,1,0 +2013,8,8,4,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,17,1,1556,15,1,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,900,1,0,1035,-12,0,0 +2013,7,16,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,17,1,1445,20,1,0 +2013,6,25,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,739,32,1,838,30,1,0 +2013,10,25,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,800,-3,0,945,-5,0,0 +2013,8,29,4,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2000,-5,0,2220,-14,0,0 +2013,5,26,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2227,6,0,652,-9,0,0 +2013,8,31,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-5,0,1553,-6,0,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,-5,0,2049,2,0,0 +2013,4,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1705,0,0,1837,-3,0,0 +2013,8,14,3,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1710,-10,0,1823,-3,0,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,1117,-11,0,0 +2013,7,27,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,630,-5,0,855,4,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1522,6,0,1722,3,0,0 +2013,6,28,5,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1542,-3,0,1803,15,1,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2255,-4,0,16,19,1,0 +2013,8,7,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,6,0,1740,-6,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,-5,0,1705,-15,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1754,-5,0,2025,-29,0,0 +2013,8,28,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1115,61,1,1240,55,1,0 +2013,6,2,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,827,-21,0,0 +2013,4,15,1,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,-4,0,1849,1,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-4,0,2140,0,0,0 +2013,10,28,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-7,0,1434,-12,0,0 +2013,10,24,4,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,834,1,0,1120,-13,0,0 +2013,8,30,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,823,-8,0,0 +2013,9,30,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,759,9,0,1100,-9,0,0 +2013,4,30,2,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2016,-10,0,2159,-22,0,0 +2013,4,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1352,-7,0,1409,-8,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,854,-3,0,1014,-4,0,0 +2013,6,26,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,930,4,0,1055,-12,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1000,-7,0,1330,-14,0,0 +2013,8,4,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1945,-4,0,2245,-3,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,27,1,1409,34,1,0 +2013,8,23,5,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1305,-6,0,1526,-30,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1100,11,0,1530,15,1,0 +2013,4,5,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-7,0,730,-17,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,812,9,0,1038,-1,0,0 +2013,8,1,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,-3,0,1223,-4,0,0 +2013,9,10,2,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1150,0,0,1245,-7,0,0 +2013,4,23,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-5,0,1515,9,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1556,-2,0,2207,-21,0,0 +2013,7,15,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,645,-5,0,940,-5,0,0 +2013,7,9,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-1,0,820,-12,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,605,6,0,845,-12,0,0 +2013,6,18,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-7,0,1316,-6,0,0 +2013,9,9,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-3,0,1105,-30,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2050,23,1,2304,46,1,0 +2013,7,20,6,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1655,-5,0,1815,-20,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,-3,0,2145,-9,0,0 +2013,7,3,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1450,-6,0,1627,-4,0,0 +2013,8,12,1,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-1,0,1430,-17,0,0 +2013,7,8,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1702,93,1,2003,58,1,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,2050,37,1,0 +2013,6,26,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1525,-4,0,1858,3,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-5,0,1046,8,0,0 +2013,5,1,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1320,-3,0,1940,-20,0,0 +2013,7,28,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1507,0,0,1553,-11,0,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1113,0,,1253,0,1,1 +2013,6,23,7,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1942,111,1,2234,125,1,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1155,9,0,1300,18,1,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,141,1,1235,127,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,1,0,1922,-4,0,0 +2013,6,27,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-2,0,1227,2,0,0 +2013,8,3,6,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2357,1,0,554,-13,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,655,-4,0,1225,-10,0,0 +2013,7,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1708,-5,0,1840,-12,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,855,100,1,1656,130,1,0 +2013,9,4,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1756,-10,0,2112,-23,0,0 +2013,8,30,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,72,1,2018,53,1,0 +2013,4,14,7,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1155,14,0,1343,47,1,0 +2013,6,19,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,44,1,1810,34,1,0 +2013,8,5,1,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,8,0,2025,0,0,0 +2013,7,22,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,4,0,1840,-11,0,0 +2013,8,5,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-1,0,900,-10,0,0 +2013,8,9,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1005,10,0,1145,-1,0,0 +2013,8,16,5,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1740,1,0,1850,-1,0,0 +2013,4,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1135,-6,0,1318,-2,0,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1500,17,1,2010,-2,0,0 +2013,7,2,2,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,32,1,2149,36,1,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1235,-4,0,1833,-14,0,0 +2013,5,18,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1414,29,1,1600,13,0,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2051,0,0,2358,-26,0,0 +2013,10,9,3,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1157,-4,0,1500,-18,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,-2,0,1120,-15,0,0 +2013,8,26,1,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,920,1,0,1215,4,0,0 +2013,8,11,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,1,0,1922,30,1,0 +2013,10,13,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2213,-6,0,602,-44,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,9,0,2100,11,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,-1,0,2325,-1,0,0 +2013,7,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,6,0,1835,1,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-4,0,2200,-10,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1015,-2,0,1230,-4,0,0 +2013,6,1,6,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1220,0,,1345,0,1,1 +2013,10,23,3,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1129,12,0,1504,18,1,0 +2013,9,16,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,14,0,1548,18,1,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,0,,1850,0,1,1 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,945,1,0,1120,-7,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1445,-2,0,1550,-5,0,0 +2013,7,13,6,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,545,-6,0,651,-12,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1004,-1,0,1223,29,1,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,5,0,1546,-13,0,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1346,-3,0,1535,-5,0,0 +2013,10,1,2,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1045,-1,0,1325,8,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,845,-3,0,1101,-25,0,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2210,1,0,30,-8,0,0 +2013,10,20,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,-10,0,12,-13,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1750,5,0,1929,-6,0,0 +2013,4,16,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,-10,0,2150,-19,0,0 +2013,9,17,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,14,0,1555,34,1,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,-2,0,1505,-10,0,0 +2013,5,22,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1010,0,0,1220,-2,0,0 +2013,9,14,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,829,-6,0,1006,8,0,0 +2013,10,22,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-6,0,1125,-15,0,0 +2013,7,31,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1330,-7,0,1709,-21,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1557,0,0,1735,-8,0,0 +2013,9,13,5,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-15,0,758,-8,0,0 +2013,8,27,2,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-5,0,2110,-62,0,0 +2013,10,29,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,11,0,1805,-4,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,73,1,1332,49,1,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,840,1,0,1040,25,1,0 +2013,8,31,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1355,12,0,1458,6,0,0 +2013,6,10,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1425,-2,0,1615,-13,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1203,-3,0,1422,-24,0,0 +2013,4,6,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-5,0,1430,-6,0,0 +2013,7,3,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,17,1,1235,19,1,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-3,0,2215,-23,0,0 +2013,5,10,5,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1016,-18,0,0 +2013,7,19,5,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-2,0,1857,-1,0,0 +2013,10,15,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,645,0,0,815,-16,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1520,1,0,1800,-4,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1805,3,0,2240,-10,0,0 +2013,5,17,5,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-5,0,920,-2,0,0 +2013,5,8,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1633,-1,0,1748,4,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-5,0,1006,22,1,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1246,-10,0,1400,-24,0,0 +2013,5,25,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-1,0,1321,-4,0,0 +2013,8,11,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,62,1,820,67,1,0 +2013,10,21,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-1,0,1950,26,1,0 +2013,4,9,2,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-5,0,1910,-14,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1942,-2,0,2100,-23,0,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,-2,0,938,-1,0,0 +2013,9,22,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,-3,0,1037,-6,0,0 +2013,5,16,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,2,0,1845,3,0,0 +2013,6,16,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-1,0,1315,5,0,0 +2013,5,18,6,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,642,1,0,901,-7,0,0 +2013,9,15,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1025,-3,0,1140,-2,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2050,1,0,2215,-14,0,0 +2013,10,24,4,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1845,57,1,2123,36,1,0 +2013,6,26,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,2,0,1012,-15,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1359,2,0,1442,-11,0,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,950,2,0,1040,41,1,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1755,34,1,2026,11,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1605,6,0,1740,-4,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2100,31,1,2355,19,1,0 +2013,5,9,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,835,-2,0,1159,8,0,0 +2013,4,23,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,703,-5,0,1021,0,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,27,1,2220,19,1,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,825,6,0,1145,-2,0,0 +2013,7,3,3,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2055,135,1,2230,96,1,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-6,0,1800,-15,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,5,0,1055,-6,0,0 +2013,7,23,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,3,0,1938,12,0,0 +2013,5,10,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,57,1,2310,51,1,0 +2013,4,11,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,4,0,1750,1,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1310,17,1,1630,63,1,0 +2013,4,6,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-5,0,801,-2,0,0 +2013,7,23,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1955,29,1,2229,30,1,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,705,0,0,840,4,0,0 +2013,4,5,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2015,-9,0,2032,-10,0,0 +2013,7,29,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,0,0,2130,-15,0,0 +2013,5,3,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,1,0,2125,-39,0,0 +2013,8,26,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1345,-14,0,1430,-22,0,0 +2013,9,20,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,19,1,1730,22,1,0 +2013,6,2,7,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-6,0,1752,-11,0,0 +2013,6,19,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1345,1,0,1717,5,0,0 +2013,10,10,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1111,14,0,1353,33,1,0 +2013,5,2,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-2,0,1815,-10,0,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1635,-2,0,1755,-14,0,0 +2013,9,6,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1710,10,0,1755,9,0,0 +2013,9,20,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,9,0,1205,10,0,0 +2013,7,9,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-10,0,1643,3,0,0 +2013,6,3,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,17,1,1300,3,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,0,0,1405,-11,0,0 +2013,10,4,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,545,-8,0,723,-8,0,0 +2013,5,9,4,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2015,-5,0,2255,-10,0,0 +2013,5,4,6,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,754,-1,0,1300,-3,0,0 +2013,7,15,1,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-13,0,1245,11,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,700,13,0,848,1,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1455,8,0,1945,5,0,0 +2013,5,5,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-3,0,1750,-8,0,0 +2013,9,4,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1610,0,0,1701,12,0,0 +2013,9,12,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,1032,-8,0,0 +2013,7,13,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1350,5,0,1640,1,0,0 +2013,6,22,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1650,9,0,1755,10,0,0 +2013,10,28,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1115,-3,0,1941,-10,0,0 +2013,4,25,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1945,25,1,2240,55,1,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1930,78,1,2304,42,1,0 +2013,4,11,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1758,3,0,2039,9,0,0 +2013,10,19,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,859,-11,0,0 +2013,5,3,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,203,1,1630,198,1,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1010,52,1,1323,60,1,0 +2013,7,18,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-2,0,1230,-4,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1710,34,1,2300,41,1,0 +2013,10,22,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,0,0,1226,1,0,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1205,21,1,1325,11,0,0 +2013,8,27,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1421,-5,0,1557,15,1,0 +2013,6,12,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,12,0,1010,5,0,0 +2013,6,10,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1515,403,1,1800,396,1,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-3,0,935,-20,0,0 +2013,6,6,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,30,1,1858,16,1,0 +2013,10,29,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,-2,0,1740,0,0,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1940,85,1,100,73,1,0 +2013,10,18,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1010,-10,0,1124,-7,0,0 +2013,9,7,6,AA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,810,-4,0,1545,13,0,0 +2013,5,18,6,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,11,0,1435,12,0,0 +2013,6,19,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1131,-6,0,1333,-9,0,0 +2013,6,16,7,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1110,-6,0,1938,-23,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1248,-2,0,1448,5,0,0 +2013,10,9,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1400,20,1,1500,19,1,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1454,-2,0,1738,6,0,0 +2013,7,18,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,12,0,1914,15,1,0 +2013,10,30,3,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2015,-3,0,1155,-17,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,820,0,0,959,-5,0,0 +2013,10,29,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-1,0,1535,1,0,0 +2013,8,31,6,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-5,0,1005,-3,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,1,0,1233,-3,0,0 +2013,5,17,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2005,28,1,2145,16,1,0 +2013,7,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1625,0,0,1922,15,1,0 +2013,7,24,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-10,0,2326,-7,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,62,1,1340,44,1,0 +2013,6,2,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1120,6,0,1445,7,0,0 +2013,5,27,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-8,0,1114,-18,0,0 +2013,6,3,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-6,0,1507,-6,0,0 +2013,8,14,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1345,-10,0,1524,-16,0,0 +2013,7,3,3,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1755,-1,0,2255,-4,0,0 +2013,10,2,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-2,0,1522,-2,0,0 +2013,7,14,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-6,0,1017,-4,0,0 +2013,6,20,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1205,-3,0,1459,-4,0,0 +2013,4,28,7,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2355,-3,0,557,-6,0,0 +2013,7,20,6,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-7,0,900,-11,0,0 +2013,10,7,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-1,0,1558,-5,0,0 +2013,5,12,7,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-2,0,1837,6,0,0 +2013,6,16,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2325,4,0,525,-10,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,0,0,1500,-34,0,0 +2013,6,8,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,-6,0,720,-11,0,0 +2013,8,4,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,840,-2,0,1032,-11,0,0 +2013,9,26,4,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-2,0,1400,-16,0,0 +2013,8,14,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1903,91,1,1925,96,1,0 +2013,5,26,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-8,0,1116,-15,0,0 +2013,7,26,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,835,-1,0,935,-3,0,0 +2013,8,17,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-2,0,1055,-15,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,2,0,907,9,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-4,0,1314,-10,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,-1,0,2355,20,1,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1205,0,0,1315,-11,0,0 +2013,6,17,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,8,0,2102,-1,0,0 +2013,7,3,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1530,6,0,1810,1,0,0 +2013,10,22,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1550,5,0,1710,-1,0,0 +2013,5,29,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1400,13,0,1450,9,0,0 +2013,6,29,6,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,92,1,1348,86,1,0 +2013,7,18,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,37,1,2029,56,1,0 +2013,10,21,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-2,0,718,-14,0,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1246,33,1,1410,29,1,0 +2013,10,7,1,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1854,-11,0,2136,-5,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,-5,0,1933,-5,0,0 +2013,9,6,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,0,0,1336,-15,0,0 +2013,9,13,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2005,43,1,2125,40,1,0 +2013,6,15,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1845,14,0,1945,5,0,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-6,0,1229,-14,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,26,1,1930,27,1,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,845,28,1,1630,46,1,0 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1310,7,0,1630,-9,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1816,56,1,2109,58,1,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-3,0,1103,-6,0,0 +2013,5,27,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,740,-6,0,905,3,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1925,-1,0,2136,-30,0,0 +2013,7,9,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-2,0,627,-12,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,7,0,2217,6,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,35,1,2352,66,1,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2211,-8,0,15,-38,0,0 +2013,8,3,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,-4,0,1315,-10,0,0 +2013,7,22,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,2000,75,1,2115,67,1,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,9,0,1640,-2,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1345,17,1,1545,16,1,0 +2013,8,5,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,-2,0,2215,-2,0,0 +2013,4,29,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,600,-1,0,730,-8,0,0 +2013,4,28,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1825,-2,0,2133,-9,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-4,0,1225,-6,0,0 +2013,9,7,6,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,822,-4,0,1151,-48,0,0 +2013,4,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1925,0,0,2245,-8,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-6,0,951,-46,0,0 +2013,7,16,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,4,0,1650,-10,0,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2155,72,1,2300,70,1,0 +2013,8,14,3,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,610,0,0,740,-13,0,0 +2013,4,19,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,216,1,930,230,1,0 +2013,10,8,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-6,0,750,-16,0,0 +2013,6,9,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1300,-8,0,1421,9,0,0 +2013,6,14,5,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,805,-4,0,926,-14,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-2,0,2103,-14,0,0 +2013,7,5,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,-6,0,1755,-11,0,0 +2013,10,11,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1015,-2,0,1140,-14,0,0 +2013,7,29,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,28,1,1937,34,1,0 +2013,6,4,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,15,1,2213,50,1,0 +2013,10,17,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,1,0,1810,-6,0,0 +2013,8,30,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,6,0,1216,-10,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1935,44,1,2145,30,1,0 +2013,10,8,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,29,1,1335,32,1,0 +2013,9,5,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-10,0,1007,-16,0,0 +2013,7,12,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2214,-5,0,558,1,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,6,0,2105,7,0,0 +2013,10,5,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,0,0,1640,-1,0,0 +2013,7,26,5,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1820,4,0,2025,4,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,2001,38,1,2350,21,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1910,29,1,2245,24,1,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1650,22,1,1815,24,1,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2035,21,1,2235,5,0,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,53,1,1750,64,1,0 +2013,10,15,2,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-6,0,1520,-13,0,0 +2013,5,31,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1130,-1,0,1230,-10,0,0 +2013,10,2,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,-5,0,930,-10,0,0 +2013,9,11,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1749,36,1,1924,52,1,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1323,-3,0,1507,-17,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1250,7,0,1505,-1,0,0 +2013,5,22,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,705,-3,0,1036,13,0,0 +2013,9,18,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,-8,0,1314,-18,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1900,-2,0,1955,-7,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1910,34,1,2010,30,1,0 +2013,8,4,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-9,0,2354,-15,0,0 +2013,5,29,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1430,-1,0,1635,-14,0,0 +2013,6,22,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,-9,0,1715,-11,0,0 +2013,4,12,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-2,0,2256,-10,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1427,3,0,0 +2013,10,29,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-8,0,1001,-18,0,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,1325,-11,0,0 +2013,10,22,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1020,-1,0,1250,-5,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,14,0,33,4,0,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,855,0,,1105,0,1,1 +2013,6,4,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1655,-5,0,1705,-9,0,0 +2013,6,17,1,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,-6,0,1758,-9,0,0 +2013,4,16,2,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,815,-1,0,1620,-36,0,0 +2013,5,14,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1608,-9,0,1813,-15,0,0 +2013,5,13,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,-2,0,1945,-12,0,0 +2013,10,20,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1129,-3,0,1400,13,0,0 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1515,-3,0,1915,5,0,0 +2013,5,22,3,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1142,53,1,1348,44,1,0 +2013,10,29,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,610,0,0,700,1,0,0 +2013,5,21,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2036,139,1,2221,122,1,0 +2013,9,24,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-7,0,1200,-9,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1655,16,1,1755,3,0,0 +2013,5,3,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,6,0,1741,-8,0,0 +2013,6,8,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,625,-2,0,920,6,0,0 +2013,6,1,6,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,725,-5,0,1015,-31,0,0 +2013,5,16,4,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1930,-2,0,2155,-2,0,0 +2013,5,3,5,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1329,-1,0,0 +2013,9,30,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-5,0,1119,-13,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-3,0,1920,-5,0,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1155,-3,0,1340,-13,0,0 +2013,5,28,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-6,0,1633,-8,0,0 +2013,5,12,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1202,18,1,1333,8,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1000,-3,0,1332,-23,0,0 +2013,9,20,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1509,18,1,1635,11,0,0 +2013,5,29,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1715,-2,0,1925,-22,0,0 +2013,7,19,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,-3,0,1850,-6,0,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1704,-3,0,2012,-18,0,0 +2013,6,5,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-8,0,711,-14,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,58,1,1904,129,1,0 +2013,8,29,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1235,4,0,1350,-3,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1050,12,0,1236,13,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-3,0,1225,-13,0,0 +2013,8,17,6,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,-5,0,941,-1,0,0 +2013,9,2,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1905,10,0,2145,8,0,0 +2013,5,2,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,812,-13,0,0 +2013,8,11,7,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1845,-11,0,2105,-20,0,0 +2013,5,1,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,645,0,0,735,-4,0,0 +2013,8,25,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,840,-5,0,1033,-21,0,0 +2013,7,8,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,829,-7,0,1004,-5,0,0 +2013,6,27,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1530,7,0,1706,0,1,1 +2013,4,5,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,0,0,2015,-14,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,740,-5,0,1121,2,0,0 +2013,9,13,5,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1415,-1,0,1515,-14,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,106,1,1453,102,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,2,0,1750,-18,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1107,-5,0,1946,-13,0,0 +2013,4,1,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1000,0,0,1358,-19,0,0 +2013,10,14,1,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,10,0,751,-7,0,0 +2013,8,8,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,-3,0,1624,124,1,0 +2013,10,22,2,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,-3,0,2112,-14,0,0 +2013,9,25,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1944,9,0,2108,-1,0,0 +2013,6,3,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1705,2,0,1820,-7,0,0 +2013,6,10,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,-3,0,2305,-8,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,15,1,1410,18,1,0 +2013,10,20,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,10,0,1900,-2,0,0 +2013,5,24,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1255,11,0,1504,-4,0,0 +2013,10,9,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,712,-8,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,909,-4,0,1023,-9,0,0 +2013,10,28,1,EV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,820,-1,0,1020,7,0,0 +2013,8,2,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,-5,0,1935,-14,0,0 +2013,8,19,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-3,0,29,5,0,0 +2013,5,22,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1005,0,0,1131,11,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1945,22,1,2050,16,1,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2048,3,0,2230,-12,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1415,-4,0,1549,-18,0,0 +2013,6,8,6,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,-2,0,1425,-25,0,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1859,23,1,2040,8,0,0 +2013,6,19,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,-7,0,1902,-15,0,0 +2013,4,23,2,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,555,-10,0,701,-12,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,-4,0,2350,-14,0,0 +2013,10,25,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-2,0,618,-1,0,0 +2013,7,20,6,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1555,-1,0,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2050,-1,0,2327,-16,0,0 +2013,5,31,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1800,0,0,1925,-4,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1530,-2,0,2359,-16,0,0 +2013,5,8,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1450,-1,0,2250,4,0,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2150,9,0,25,10,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,925,4,0,1055,-5,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,24,1,1335,30,1,0 +2013,6,22,6,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1600,-16,0,0 +2013,7,18,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,0,,1905,0,1,1 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1025,1,0,1252,-31,0,0 +2013,8,17,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,740,-14,0,0 +2013,9,2,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1231,-5,0,1359,-23,0,0 +2013,10,14,1,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,805,0,0,1010,14,0,0 +2013,9,24,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2055,-15,0,15,-39,0,0 +2013,10,26,6,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,832,3,0,1124,11,0,0 +2013,7,4,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,645,-8,0,933,-14,0,0 +2013,10,29,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-8,0,916,-20,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-1,0,2349,-6,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1730,10,0,2108,-2,0,0 +2013,10,12,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1410,-2,0,1645,2,0,0 +2013,9,26,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,5,0,1600,-23,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1358,1,0,1635,30,1,0 +2013,8,12,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1632,20,1,1725,46,1,0 +2013,10,29,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1325,-3,0,1520,-9,0,0 +2013,7,31,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,-7,0,2012,-17,0,0 +2013,7,22,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,820,-4,0,1035,-25,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2149,-5,0,2337,0,0,0 +2013,9,28,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1340,10,0,1935,-1,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1309,-5,0,1705,-16,0,0 +2013,8,28,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,715,-2,0,840,-8,0,0 +2013,10,12,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-11,0,1610,-17,0,0 +2013,4,25,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-9,0,1800,-17,0,0 +2013,4,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-5,0,1017,-18,0,0 +2013,6,28,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,-2,0,706,3,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1635,30,1,2215,17,1,0 +2013,4,10,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1716,24,1,1936,160,1,0 +2013,6,17,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,0,0,905,-6,0,0 +2013,8,9,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,9,0,2226,-11,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-7,0,2323,1,0,0 +2013,9,22,7,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1740,26,1,2035,12,0,0 +2013,9,17,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1745,-4,0,2003,-8,0,0 +2013,7,31,3,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1230,0,0,1350,-9,0,0 +2013,5,11,6,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,14,0,1340,-6,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,19,1,1520,13,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,743,-9,0,1617,-29,0,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,0,0,2050,-15,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2200,21,1,2301,17,1,0 +2013,5,3,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-8,0,2113,-10,0,0 +2013,6,12,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1630,9,0,1915,-3,0,0 +2013,8,18,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,1,0,2108,3,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,9,0,1911,17,1,0 +2013,10,10,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1035,-3,0,1149,17,1,0 +2013,4,18,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1800,104,1,2001,100,1,0 +2013,4,29,1,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,955,71,1,1108,84,1,0 +2013,8,18,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1324,-1,0,1338,-5,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-2,0,1153,-20,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-6,0,1250,1,0,0 +2013,10,19,6,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1658,48,1,1826,53,1,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,719,-1,0,1602,-21,0,0 +2013,9,26,4,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,-5,0,1125,-9,0,0 +2013,5,28,2,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,5,0,1445,0,0,0 +2013,8,27,2,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1308,42,1,2102,43,1,0 +2013,8,22,4,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-2,0,1145,14,0,0 +2013,9,20,5,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1740,39,1,1850,38,1,0 +2013,6,7,5,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1733,36,1,2105,24,1,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-5,0,1045,-15,0,0 +2013,8,12,1,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,855,-5,0,1110,-3,0,0 +2013,8,12,1,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1307,-6,0,0 +2013,8,26,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1915,-2,0,2205,0,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1115,-4,0,1305,-7,0,0 +2013,4,20,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-8,0,847,-14,0,0 +2013,5,30,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-6,0,1633,-10,0,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,158,1,2325,152,1,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,840,22,1,1110,19,1,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,67,1,1645,53,1,0 +2013,5,12,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1450,11,0,1800,20,1,0 +2013,8,14,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1459,-5,0,1827,-51,0,0 +2013,6,15,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1616,13,0,15,-14,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1550,-2,0,1735,-4,0,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1706,11,0,1800,6,0,0 +2013,5,19,7,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,730,-3,0,837,3,0,0 +2013,9,2,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1345,15,1,1620,18,1,0 +2013,7,7,7,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1121,11,0,1305,5,0,0 +2013,4,1,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-3,0,1905,-6,0,0 +2013,5,3,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,756,-20,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,-7,0,1405,-10,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,139,1,2325,117,1,0 +2013,4,26,5,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1857,2,0,2208,8,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,27,1,1207,8,0,0 +2013,9,24,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1755,2,0,1901,-5,0,0 +2013,8,8,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,-3,0,1748,-4,0,0 +2013,7,18,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,-4,0,1655,1,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1100,7,0,1310,12,0,0 +2013,4,19,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1055,33,1,1429,21,1,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2110,-2,0,2235,-6,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1211,-8,0,1330,-15,0,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,724,-6,0,836,-9,0,0 +2013,6,30,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1855,28,1,1920,15,1,0 +2013,4,26,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1100,-2,0,1200,-5,0,0 +2013,4,20,6,EV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1844,-6,0,2056,-12,0,0 +2013,4,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,-5,0,1214,-9,0,0 +2013,9,28,6,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1348,-5,0,1418,0,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2245,33,1,16,30,1,0 +2013,7,14,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2050,-1,0,2205,-3,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1024,-6,0,1214,-3,0,0 +2013,6,7,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1305,19,1,1455,26,1,0 +2013,9,3,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2335,-6,0,549,-14,0,0 +2013,4,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1955,0,0,2100,-2,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1030,-2,0,1645,37,1,0 +2013,7,7,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,849,-8,0,926,-7,0,0 +2013,8,3,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1356,82,1,1640,80,1,0 +2013,5,27,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-3,0,1300,-8,0,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,17,1,2253,22,1,0 +2013,10,24,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1850,55,1,2205,81,1,0 +2013,7,21,7,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1238,145,1,1540,138,1,0 +2013,7,8,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-1,0,1235,-4,0,0 +2013,5,31,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1114,-3,0,1224,11,0,0 +2013,8,28,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1855,3,0,2000,2,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1330,2,0,1815,4,0,0 +2013,5,16,4,OO,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1755,2,0,1955,17,1,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,-2,0,1640,1,0,0 +2013,8,21,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-4,0,1757,-7,0,0 +2013,4,24,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1615,-4,0,1805,7,0,0 +2013,9,17,2,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1245,6,0,1600,2,0,0 +2013,5,5,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,731,-5,0,1030,-20,0,0 +2013,8,6,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,615,-3,0,745,-12,0,0 +2013,5,17,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,650,-2,0,750,-13,0,0 +2013,4,22,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1108,9,0,1412,2,0,0 +2013,6,23,7,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1525,163,1,1615,164,1,0 +2013,4,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1405,4,0,2010,3,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1445,27,1,1650,15,1,0 +2013,5,14,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,-5,0,2054,-1,0,0 +2013,5,17,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-4,0,1311,-14,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,1,0,1102,0,0,0 +2013,8,4,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1242,-5,0,1603,-17,0,0 +2013,7,30,2,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,-6,0,915,7,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,23,1,852,8,0,0 +2013,10,27,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,-3,0,1205,-15,0,0 +2013,6,8,6,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,813,-5,0,929,-12,0,0 +2013,10,9,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1608,-6,0,1725,-21,0,0 +2013,5,9,4,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1705,-5,0,1927,3,0,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1420,11,0,1945,-2,0,0 +2013,4,1,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,75,1,1507,71,1,0 +2013,5,18,6,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1217,12,0,1414,-4,0,0 +2013,4,28,7,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1531,-4,0,1725,16,1,0 +2013,6,17,1,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-10,0,2005,-16,0,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,635,1,0,745,-11,0,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1420,0,,1638,0,1,1 +2013,7,14,7,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1909,27,1,2104,10,0,0 +2013,4,30,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-6,0,855,2,0,0 +2013,9,4,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1920,16,1,2050,5,0,0 +2013,5,16,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1015,-2,0,1255,8,0,0 +2013,9,4,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1620,-8,0,1754,-8,0,0 +2013,9,10,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2055,-12,0,15,-31,0,0 +2013,7,25,4,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-5,0,2205,-3,0,0 +2013,6,24,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-2,0,1938,-6,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1758,-1,0,1933,-26,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1325,-3,0,1450,-12,0,0 +2013,5,29,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1035,6,0,1145,2,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2035,142,1,5,127,1,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,700,-3,0,832,-17,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1101,4,0,1403,-11,0,0 +2013,8,15,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1900,8,0,2025,31,1,0 +2013,9,24,2,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1040,0,0,1640,-10,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1925,-2,0,2110,4,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2135,4,0,10,-10,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1255,-7,0,1550,-30,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1700,169,1,1822,194,1,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-4,0,2359,-3,0,0 +2013,4,12,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1205,-1,0,1325,-10,0,0 +2013,5,16,4,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1733,-2,0,39,2,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-3,0,1735,-9,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1050,4,0,1200,8,0,0 +2013,9,4,3,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1135,-6,0,1325,-1,0,0 +2013,4,21,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1457,-13,0,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,16,1,1829,1,0,0 +2013,7,23,2,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1310,37,1,1610,26,1,0 +2013,9,18,3,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,717,-5,0,1535,-13,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1335,-5,0,1501,-20,0,0 +2013,10,23,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-9,0,1119,-7,0,0 +2013,9,23,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-1,0,745,3,0,0 +2013,5,3,5,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,-2,0,2015,-5,0,0 +2013,7,30,2,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1420,473,1,2227,494,1,0 +2013,6,22,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,-10,0,1201,4,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-3,0,1615,-1,0,0 +2013,5,27,1,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2015,1,0,2315,11,0,0 +2013,7,11,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1208,19,1,1446,16,1,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,605,-1,0,720,3,0,0 +2013,9,14,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1135,1,0,1430,21,1,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,43,1,1501,32,1,0 +2013,9,12,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1231,212,1,1423,217,1,0 +2013,7,19,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1046,-11,0,1110,-19,0,0 +2013,8,11,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,66,1,2250,67,1,0 +2013,7,30,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1032,-6,0,1336,-20,0,0 +2013,9,17,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,37,1,1250,63,1,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1810,17,1,2355,-10,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-2,0,1725,-14,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1910,12,0,2045,3,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1850,-5,0,2310,-18,0,0 +2013,8,13,2,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1656,14,0,1932,9,0,0 +2013,6,23,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1543,-2,0,2359,-14,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,750,7,0,905,5,0,0 +2013,9,28,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-7,0,549,-20,0,0 +2013,7,25,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1748,104,1,2035,100,1,0 +2013,9,27,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-3,0,1355,-9,0,0 +2013,7,10,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,82,1,2105,78,1,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,3,0,1135,17,1,0 +2013,10,28,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,2,0,1506,6,0,0 +2013,9,26,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1441,13,0,1604,11,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1605,7,0,1805,1,0,0 +2013,10,13,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1127,5,0,1224,35,1,0 +2013,10,2,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-7,0,1327,-7,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1750,-3,0,1837,-6,0,0 +2013,6,12,3,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1855,-6,0,1952,-8,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,-3,0,2320,-15,0,0 +2013,9,4,3,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1115,1,0,1340,8,0,0 +2013,5,22,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,2,0,1330,-2,0,0 +2013,6,19,3,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,925,-8,0,1750,-11,0,0 +2013,7,8,1,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2035,31,1,2335,17,1,0 +2013,10,23,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-7,0,1509,7,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2145,-3,0,2355,-5,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1400,-4,0,1515,-6,0,0 +2013,7,30,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-4,0,1358,-6,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1805,-4,0,2037,-15,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,0,0,1046,-8,0,0 +2013,9,23,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1015,-8,0,1120,-12,0,0 +2013,8,29,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1915,0,0,2205,4,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,2,0,1620,-2,0,0 +2013,10,1,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1440,-6,0,1731,-1,0,0 +2013,7,22,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1620,114,1,1912,125,1,0 +2013,6,24,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1040,5,0,1429,-7,0,0 +2013,5,3,5,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,605,3,0,843,-12,0,0 +2013,9,18,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1320,-14,0,1515,4,0,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,87,1,1130,81,1,0 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,805,0,0,1030,-7,0,0 +2013,6,28,5,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2320,1,0,649,-6,0,0 +2013,7,9,2,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,908,-2,0,1400,-2,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1203,-2,0,1330,-11,0,0 +2013,8,13,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,2,0,1040,-8,0,0 +2013,9,1,7,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,849,-4,0,1118,-2,0,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1200,17,1,1520,12,0,0 +2013,7,13,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-9,0,1951,-7,0,0 +2013,7,27,6,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1945,15,1,2035,6,0,0 +2013,10,16,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2329,-4,0,507,3,0,0 +2013,6,25,2,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-6,0,639,7,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2328,0,0,535,-18,0,0 +2013,6,4,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1830,10,0,2015,-1,0,0 +2013,6,6,4,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1015,-1,0,1145,-12,0,0 +2013,5,5,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,736,-1,0,1249,-15,0,0 +2013,10,11,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-11,0,2015,-28,0,0 +2013,6,26,3,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2342,40,1,510,33,1,0 +2013,10,17,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-5,0,2103,-8,0,0 +2013,9,25,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,605,-3,0,710,-10,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1855,11,0,2225,1,0,0 +2013,7,14,7,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-2,0,1843,-2,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,2,0,5,-11,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1300,-5,0,1540,-25,0,0 +2013,9,20,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1840,-4,0,2120,-1,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,-7,0,1140,-13,0,0 +2013,10,21,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,709,-5,0,1520,-12,0,0 +2013,9,9,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1435,-5,0,1605,-27,0,0 +2013,5,5,7,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,0,0,1345,-11,0,0 +2013,10,19,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,-2,0,1530,-5,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,30,1,1800,23,1,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-5,0,2335,-10,0,0 +2013,8,26,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,44,1,1524,37,1,0 +2013,4,5,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1345,-3,0,1434,-16,0,0 +2013,10,12,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,14,0,840,-12,0,0 +2013,8,28,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1520,-1,0,2040,20,1,0 +2013,10,30,3,OO,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,850,9,0,1044,12,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,855,5,0,1005,11,0,0 +2013,5,31,5,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,950,3,0,1245,11,0,0 +2013,9,22,7,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1009,-6,0,1120,0,0,0 +2013,8,5,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1800,51,1,1820,55,1,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1032,-11,0,1109,-16,0,0 +2013,7,15,1,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2202,-4,0,2344,-25,0,0 +2013,4,8,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,609,5,0,744,21,1,0 +2013,8,27,2,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1930,-10,0,2246,-23,0,0 +2013,8,6,2,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1805,5,0,2014,17,1,0 +2013,7,16,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,700,-8,0,807,2,0,0 +2013,7,10,3,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1824,0,,2148,0,1,1 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,625,1,0,920,-9,0,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,10,0,1320,0,0,0 +2013,4,5,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1314,6,0,1432,-3,0,0 +2013,5,9,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-6,0,1959,-16,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,16,1,2320,15,1,0 +2013,6,13,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,22,1,1335,10,0,0 +2013,8,10,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,730,-2,0,1105,-9,0,0 +2013,7,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,0,0,848,6,0,0 +2013,10,13,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1642,1,0,1925,-8,0,0 +2013,5,27,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1755,3,0,2351,7,0,0 +2013,9,4,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1055,-11,0,1216,-17,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1549,-6,0,1825,-39,0,0 +2013,8,29,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1740,-1,0,1850,-6,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1930,14,0,2102,12,0,0 +2013,4,19,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,500,0,0,642,-26,0,0 +2013,7,14,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,905,-4,0,1020,-5,0,0 +2013,5,4,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,-4,0,1735,-8,0,0 +2013,6,4,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,-2,0,946,-2,0,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,-6,0,2137,-11,0,0 +2013,9,27,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-5,0,959,-17,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2125,18,1,2225,12,0,0 +2013,8,28,3,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-8,0,1623,-9,0,0 +2013,6,20,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1544,3,0,1930,-5,0,0 +2013,8,12,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,15,1,1630,41,1,0 +2013,4,2,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1315,-4,0,1612,4,0,0 +2013,5,28,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,906,-5,0,1253,9,0,0 +2013,4,19,5,UA,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1716,-2,0,1850,-3,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,700,1,0,825,2,0,0 +2013,10,30,3,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-5,0,1005,3,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,-1,0,1624,-9,0,0 +2013,6,9,7,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1357,-12,0,1630,-8,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1503,78,1,1733,52,1,0 +2013,8,9,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1250,25,1,1605,22,1,0 +2013,7,17,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-11,0,1030,-16,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2150,69,1,2355,68,1,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1340,9,0,1840,3,0,0 +2013,10,25,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,-1,0,1312,-2,0,0 +2013,5,30,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,6,0,2213,60,1,0 +2013,4,7,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1727,110,1,115,97,1,0 +2013,6,28,5,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,843,0,0,1022,-11,0,0 +2013,7,20,6,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,730,-3,0,1040,-23,0,0 +2013,7,6,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1403,-9,0,1611,-32,0,0 +2013,8,23,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1510,0,0,1621,-7,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,13,0,2220,4,0,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,90,1,1209,82,1,0 +2013,6,3,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,0,0,1140,-10,0,0 +2013,4,15,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,18,1,2255,11,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-6,0,1635,-5,0,0 +2013,8,2,5,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,730,-11,0,1021,-15,0,0 +2013,4,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-6,0,1424,-8,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,6,0,1605,-4,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1813,30,1,2004,-10,0,0 +2013,10,15,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,-10,0,1300,-21,0,0 +2013,9,4,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1710,-7,0,1941,4,0,0 +2013,4,1,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,925,37,1,930,38,1,0 +2013,8,8,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-13,0,1940,-10,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1525,-1,0,1630,1,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,645,-1,0,835,-6,0,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1940,42,1,2030,32,1,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2024,-3,0,2330,-9,0,0 +2013,5,25,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,815,-6,0,1025,-6,0,0 +2013,4,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1550,0,0,1710,-6,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,557,18,1,931,11,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1750,399,1,1958,384,1,0 +2013,9,23,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2118,-7,0,547,-23,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,14,0,25,7,0,0 +2013,5,3,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1715,0,0,1830,2,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1740,68,1,1850,63,1,0 +2013,7,21,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,220,1,2152,199,1,0 +2013,6,17,1,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-1,0,940,-10,0,0 +2013,7,23,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1725,-3,0,1845,2,0,0 +2013,10,5,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1224,-1,0,1338,-16,0,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,12,0,1026,-5,0,0 +2013,7,31,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-5,0,1032,28,1,0 +2013,5,13,1,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2150,-5,0,620,-11,0,0 +2013,10,31,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-7,0,1024,27,1,0 +2013,4,3,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,5,0,1005,-1,0,0 +2013,9,22,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1620,58,1,2020,60,1,0 +2013,4,22,1,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1225,-5,0,1346,-11,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,31,1,1442,28,1,0 +2013,4,12,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,1004,3,0,0 +2013,7,18,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1744,26,1,2009,23,1,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1700,-4,0,1830,-9,0,0 +2013,10,26,6,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1715,0,0,1910,-17,0,0 +2013,7,29,1,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,700,6,0,1045,3,0,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1525,-2,0,1810,-13,0,0 +2013,5,27,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1503,-3,0,1645,9,0,0 +2013,10,23,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,4,0,1106,6,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2154,-5,0,2328,-10,0,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1550,5,0,2125,-9,0,0 +2013,7,27,6,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,740,11,0,850,9,0,0 +2013,7,6,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,740,2,0,1138,-8,0,0 +2013,4,15,1,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1748,-10,0,2000,-16,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,5,0,2155,2,0,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,-6,0,1055,15,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1936,19,1,2056,-4,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2101,0,0,2359,-4,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,0,2250,-14,0,0 +2013,9,8,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,-3,0,1033,-8,0,0 +2013,10,19,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,810,-6,0,910,-3,0,0 +2013,5,27,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-3,0,1755,-11,0,0 +2013,10,6,7,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1845,37,1,2110,10,0,0 +2013,5,30,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,916,38,1,1130,33,1,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1850,1,0,2205,-7,0,0 +2013,7,1,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,47,1,1810,40,1,0 +2013,4,19,5,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1500,-2,0,1810,5,0,0 +2013,5,2,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,12,0,1539,18,1,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1920,-3,0,2050,-14,0,0 +2013,7,15,1,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,724,3,0,931,-14,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1940,61,1,2258,93,1,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1234,1,0,1849,-24,0,0 +2013,6,2,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1945,0,,2045,0,1,1 +2013,6,2,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-7,0,2252,-15,0,0 +2013,7,13,6,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,624,-2,0,1448,4,0,0 +2013,5,29,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,0,0,2255,-8,0,0 +2013,9,5,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,19,1,1730,19,1,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,33,1,2210,9,0,0 +2013,8,8,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,5,0,810,5,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,-4,0,857,-14,0,0 +2013,9,29,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1002,-3,0,1135,1,0,0 +2013,6,15,6,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-1,0,1810,-17,0,0 +2013,6,30,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1239,-3,0,1534,10,0,0 +2013,9,21,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,913,10,0,1200,30,1,0 +2013,7,9,2,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1151,15,1,1339,8,0,0 +2013,10,10,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-4,0,1958,-4,0,0 +2013,10,28,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,603,-7,0,830,-7,0,0 +2013,9,23,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,-8,0,1401,-39,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,1,0,1250,-9,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,-1,0,1905,-8,0,0 +2013,9,28,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1025,-4,0,1455,-2,0,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,12,0,2008,26,1,0 +2013,9,25,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1246,3,0,1410,2,0,0 +2013,4,10,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,0,0,1410,1,0,0 +2013,4,1,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,13,0,1045,9,0,0 +2013,7,6,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2350,8,0,711,3,0,0 +2013,5,12,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1908,-8,0,2048,1,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-6,0,1901,10,0,0 +2013,9,28,6,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2115,-5,0,520,12,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,730,-3,0,903,-8,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,0,0,1047,3,0,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1623,38,1,1803,27,1,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1405,248,1,1657,243,1,0 +2013,6,27,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,0,,1325,0,1,1 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1415,0,0,1658,-2,0,0 +2013,6,8,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1925,7,0,2000,-6,0,0 +2013,5,30,4,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,630,0,0,1230,11,0,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,0,0,2206,-19,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1955,24,1,2144,35,1,0 +2013,8,7,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-6,0,955,7,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2145,29,1,2255,15,1,0 +2013,5,5,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,845,0,,1030,0,1,1 +2013,5,19,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,93,1,1700,87,1,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1140,5,0,1330,-17,0,0 +2013,4,12,5,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,11,0,733,2,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,2,0,1636,0,0,0 +2013,9,21,6,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1432,9,0,1609,5,0,0 +2013,4,9,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1455,1,0,1648,-13,0,0 +2013,8,26,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-10,0,1140,-6,0,0 +2013,6,23,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1825,51,1,2005,70,1,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-7,0,2056,-24,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1815,0,0,2130,14,0,0 +2013,9,25,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-6,0,1305,-5,0,0 +2013,4,19,5,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-7,0,627,-9,0,0 +2013,9,12,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,52,1,2129,31,1,0 +2013,4,12,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,1,0,1741,3,0,0 +2013,8,8,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1117,-2,0,1635,-14,0,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1015,5,0,1615,17,1,0 +2013,6,7,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1045,-2,0,1150,-18,0,0 +2013,10,27,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1005,20,1,1155,10,0,0 +2013,4,17,3,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,2040,-5,0,2330,-16,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,31,1,30,17,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,-1,0,1008,-1,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1340,-1,0,1533,-6,0,0 +2013,7,24,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,3,0,1422,0,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,-5,0,1040,-21,0,0 +2013,7,1,1,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1850,21,1,2045,3,0,0 +2013,4,5,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1410,-4,0,1828,-6,0,0 +2013,7,21,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,3,0,1033,-2,0,0 +2013,5,19,7,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1745,206,1,2031,215,1,0 +2013,8,16,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,930,2,0,1155,7,0,0 +2013,9,22,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,-6,0,2221,-8,0,0 +2013,5,1,3,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,840,-2,0,1435,-29,0,0 +2013,9,13,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,824,4,0,1020,-13,0,0 +2013,5,4,6,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-5,0,1115,18,1,0 +2013,7,22,1,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,-11,0,2357,-20,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1215,-1,0,1346,-4,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,2003,5,0,2352,-8,0,0 +2013,4,10,3,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-11,0,930,-7,0,0 +2013,6,25,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,0,0,1446,-2,0,0 +2013,8,18,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-4,0,1410,4,0,0 +2013,4,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,-1,0,1152,-17,0,0 +2013,8,20,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1506,-6,0,1557,-19,0,0 +2013,7,31,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-1,0,1024,-1,0,0 +2013,10,26,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1700,-4,0,1954,-10,0,0 +2013,6,17,1,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1817,-4,0,2108,31,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2210,-1,0,2359,-6,0,0 +2013,9,19,4,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1457,3,0,1812,-3,0,0 +2013,7,7,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-5,0,635,-10,0,0 +2013,5,24,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,0,0,959,-4,0,0 +2013,8,5,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1400,34,1,1735,26,1,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,-1,0,2213,-9,0,0 +2013,10,11,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1420,0,,1550,0,1,1 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1922,7,0,2230,19,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1932,-1,0,2056,-5,0,0 +2013,8,7,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,3,0,755,-11,0,0 +2013,9,3,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1316,-5,0,1402,-7,0,0 +2013,4,29,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,640,-6,0,925,-7,0,0 +2013,9,27,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1355,-8,0,2112,6,0,0 +2013,5,25,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,835,0,0,955,3,0,0 +2013,4,6,6,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,2,0,1515,1,0,0 +2013,9,2,1,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,-10,0,1319,-27,0,0 +2013,8,30,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1711,-9,0,2104,-22,0,0 +2013,6,24,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,950,1,0,0 +2013,8,11,7,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1150,0,0,1400,-3,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,850,-1,0,1108,-13,0,0 +2013,10,10,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,2,0,1024,-26,0,0 +2013,4,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,-5,0,1254,7,0,0 +2013,9,15,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,750,-7,0,1112,-12,0,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2325,-5,0,520,-9,0,0 +2013,5,3,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-2,0,1456,24,1,0 +2013,4,1,1,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1911,-4,0,2136,-6,0,0 +2013,5,17,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,-3,0,1820,-15,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,740,0,0,1000,-3,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1950,-4,0,32,-8,0,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-5,0,1003,-18,0,0 +2013,9,2,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1129,-7,0,1228,-15,0,0 +2013,10,8,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,638,-1,0,1225,-30,0,0 +2013,5,30,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2255,2,0,2348,7,0,0 +2013,4,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1820,238,1,1935,229,1,0 +2013,8,5,1,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1306,18,1,1633,6,0,0 +2013,8,26,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1107,-5,0,1450,-12,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1715,32,1,1840,19,1,0 +2013,6,8,6,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-5,0,705,-32,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2030,128,1,2135,125,1,0 +2013,8,16,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,-2,0,1905,-17,0,0 +2013,10,31,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,16,1,1820,-5,0,0 +2013,7,30,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,725,-15,0,0 +2013,5,16,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,4,0,1805,-5,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,-1,0,1042,-14,0,0 +2013,8,14,3,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1850,86,1,2030,82,1,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,820,0,0,935,4,0,0 +2013,9,26,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,-2,0,1140,-6,0,0 +2013,9,10,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1855,53,1,2215,64,1,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,1,0,1136,-5,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2236,-5,0,11,-19,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-1,0,2050,-3,0,0 +2013,5,7,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1045,-4,0,1834,8,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1635,19,1,1755,19,1,0 +2013,5,17,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1700,0,0,1820,14,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,104,1,2123,107,1,0 +2013,4,22,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1905,21,1,2107,51,1,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1715,-5,0,1755,-15,0,0 +2013,5,30,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,925,2,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,808,-3,0,929,-9,0,0 +2013,7,30,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1510,-6,0,1642,-3,0,0 +2013,9,6,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-10,0,1622,-16,0,0 +2013,10,10,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1451,1,0,1601,-1,0,0 +2013,7,18,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,15,1,1639,7,0,0 +2013,6,13,4,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,190,1,2135,184,1,0 +2013,10,12,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,33,1,1113,20,1,0 +2013,9,25,3,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,16,1,1643,-6,0,0 +2013,9,9,1,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-8,0,1024,-12,0,0 +2013,8,6,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1526,-4,0,1825,-10,0,0 +2013,8,1,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-4,0,912,0,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2303,-2,0,12,-1,0,0 +2013,5,16,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,133,1,825,126,1,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,-5,0,1451,5,0,0 +2013,10,18,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1710,84,1,1949,67,1,0 +2013,4,16,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,650,-3,0,815,1,0,0 +2013,9,3,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-4,0,1247,-18,0,0 +2013,7,25,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1330,2,0,1340,-5,0,0 +2013,9,22,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1200,6,0,1310,0,0,0 +2013,6,23,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,730,0,0,0 +2013,8,10,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,935,-5,0,0 +2013,6,3,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,10,0,2016,-10,0,0 +2013,5,13,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-4,0,633,-21,0,0 +2013,6,11,2,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,1,0,1255,-4,0,0 +2013,8,8,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-4,0,1155,2,0,0 +2013,6,6,4,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1200,101,1,1624,79,1,0 +2013,8,30,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-2,0,1903,-8,0,0 +2013,7,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1452,211,1,1619,203,1,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2155,-10,0,15,3,0,0 +2013,4,12,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,755,-6,0,1007,-23,0,0 +2013,9,8,7,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,805,-8,0,1115,-4,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1610,0,,44,0,1,1 +2013,8,13,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1525,36,1,1627,44,1,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,630,1,0,755,-7,0,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,20,86,1,618,55,1,0 +2013,10,17,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,817,-8,0,1127,-3,0,0 +2013,9,17,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-1,0,906,-29,0,0 +2013,10,12,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-8,0,1230,-5,0,0 +2013,4,26,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-8,0,1225,-22,0,0 +2013,9,8,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,655,-5,0,830,-16,0,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-5,0,904,7,0,0 +2013,9,6,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,0,0,1245,-4,0,0 +2013,4,18,4,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-4,0,1029,8,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1710,2,0,1835,36,1,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2200,0,0,2325,-11,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1059,-5,0,1520,-13,0,0 +2013,8,26,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1030,4,0,1400,-5,0,0 +2013,4,28,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,0,0,1958,-39,0,0 +2013,6,27,4,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1651,10,0,1900,47,1,0 +2013,9,30,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-8,0,2100,-9,0,0 +2013,7,16,2,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-8,0,805,-4,0,0 +2013,9,22,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,52,1,1310,40,1,0 +2013,5,23,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1210,31,1,1230,43,1,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,6,0,1440,1,0,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-1,0,1634,21,1,0 +2013,7,18,4,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,705,-9,0,832,-22,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,903,191,1,1738,177,1,0 +2013,7,10,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,29,1,957,28,1,0 +2013,6,12,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,20,1,2305,13,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1225,10,0,1655,-18,0,0 +2013,9,5,4,9E,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,855,-8,0,1058,-24,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1510,17,1,1850,1,0,0 +2013,8,29,4,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1635,26,1,1855,-4,0,0 +2013,9,20,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,3,0,1825,1,0,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1015,-3,0,1038,-15,0,0 +2013,4,4,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1800,-4,0,1935,-20,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,5,0,1220,-5,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,726,-6,0,1048,-42,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1750,1,0,1850,5,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,8,0,2259,8,0,0 +2013,5,10,5,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,720,-1,0,845,-14,0,0 +2013,9,9,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1945,84,1,2110,80,1,0 +2013,7,24,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-4,0,651,4,0,0 +2013,10,29,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1005,-4,0,1232,0,0,0 +2013,9,4,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,95,1,2214,110,1,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-9,0,803,-17,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1015,2,0,1105,-3,0,0 +2013,5,7,2,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1159,316,1,1427,304,1,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,15,1,2325,46,1,0 +2013,8,21,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1950,-8,0,2145,-27,0,0 +2013,9,26,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1650,0,0,1743,9,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,65,1,2204,33,1,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,831,-5,0,1029,-30,0,0 +2013,6,27,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,12,0,1145,4,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-7,0,1748,-18,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2050,25,1,2235,9,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-4,0,1042,25,1,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,30,1,1235,19,1,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,835,6,0,1000,-12,0,0 +2013,9,3,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1922,-5,0,2230,-18,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1917,1,0,2033,-12,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1655,101,1,1750,92,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1925,-1,0,2340,-9,0,0 +2013,10,11,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1542,5,0,1814,-20,0,0 +2013,4,29,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,-1,0,1530,-21,0,0 +2013,5,5,7,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1540,-1,0,1640,-25,0,0 +2013,5,20,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,262,1,1953,257,1,0 +2013,6,19,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,37,1,2150,1,0,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,-7,0,2213,-3,0,0 +2013,5,17,5,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1930,1,0,2215,-14,0,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1707,28,1,2257,15,1,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1020,17,1,1140,22,1,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-6,0,1843,-12,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,900,-5,0,1155,-6,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2115,3,0,2232,-20,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1200,7,0,1325,-6,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,847,1,0,1150,22,1,0 +2013,5,30,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1348,13,0,1558,-3,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1055,-1,0,1219,-11,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,-5,0,1135,-9,0,0 +2013,5,28,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,1,0,1015,5,0,0 +2013,4,6,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-14,0,1531,-12,0,0 +2013,5,11,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,4,0,2204,8,0,0 +2013,8,21,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,8,0,2015,28,1,0 +2013,6,9,7,OO,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1446,-10,0,1613,-5,0,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1351,27,1,2233,19,1,0 +2013,5,21,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,138,1,1535,143,1,0 +2013,5,8,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1721,6,0,1811,2,0,0 +2013,5,18,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1941,1,0,2125,-10,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2040,5,0,2155,1,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1329,-4,0,1651,-25,0,0 +2013,8,7,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,739,-4,0,845,4,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,10,0,2105,-2,0,0 +2013,6,17,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1448,2,0,1740,-1,0,0 +2013,5,2,4,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,7,0,500,10,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2009,-4,0,2204,-9,0,0 +2013,5,5,7,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2217,-3,0,620,-14,0,0 +2013,7,29,1,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1425,1,0,2235,-20,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1725,22,1,1815,29,1,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1455,-7,0,1740,-9,0,0 +2013,9,4,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-4,0,2126,-3,0,0 +2013,4,20,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1845,-5,0,2300,-22,0,0 +2013,4,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2015,-7,0,2123,-13,0,0 +2013,4,24,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1519,-14,0,0 +2013,8,6,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-2,0,840,-28,0,0 +2013,10,19,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1635,-26,0,0 +2013,8,12,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-9,0,1358,-9,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,-1,0,2156,-5,0,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1850,27,1,2120,19,1,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1550,14,0,1805,-6,0,0 +2013,8,9,5,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1130,-3,0,1838,-5,0,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1209,28,1,1531,30,1,0 +2013,6,30,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-7,0,1213,-7,0,0 +2013,6,5,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-10,0,2101,-17,0,0 +2013,7,28,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,740,-3,0,912,-25,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,2,0,2215,-16,0,0 +2013,4,14,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2300,-5,0,815,-24,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1605,1,0,2143,2,0,0 +2013,8,25,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1905,12,0,2001,6,0,0 +2013,10,13,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2125,-3,0,2230,-20,0,0 +2013,4,4,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2045,118,1,2320,131,1,0 +2013,10,15,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1610,-7,0,2012,-12,0,0 +2013,4,5,5,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1157,0,,1305,0,1,1 +2013,4,20,6,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,724,-13,0,0 +2013,7,16,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,925,5,0,945,-6,0,0 +2013,7,25,4,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,0,0,1130,-8,0,0 +2013,10,3,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,730,-5,0,841,-1,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1943,136,1,2131,126,1,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,41,1,2135,44,1,0 +2013,8,18,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1540,-2,0,1554,-7,0,0 +2013,7,24,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,-2,0,1810,0,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-1,0,1210,-1,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1235,-3,0,1400,-4,0,0 +2013,4,19,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1235,13,0,1400,0,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1510,-2,0,2357,-18,0,0 +2013,4,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,-1,0,1656,-2,0,0 +2013,4,3,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2105,0,0,2220,-5,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,-4,0,2027,-2,0,0 +2013,4,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2200,10,0,2312,57,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,10,0,2019,5,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,0,0,1555,-4,0,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1607,14,0,1720,14,0,0 +2013,7,31,3,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,630,21,1,900,14,0,0 +2013,5,4,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,735,-1,0,830,-22,0,0 +2013,6,4,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,2001,14,0,2210,2,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1200,33,1,1505,32,1,0 +2013,6,29,6,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,605,-4,0,757,-31,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,20,1,2155,2,0,0 +2013,9,23,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,848,-9,0,955,-10,0,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,19,1,949,21,1,0 +2013,9,15,7,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,800,-7,0,1017,-21,0,0 +2013,5,4,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,735,-2,0,825,-8,0,0 +2013,9,8,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-3,0,2235,-5,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,-3,0,2359,7,0,0 +2013,8,22,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,220,-14,0,635,-16,0,0 +2013,10,7,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,913,-2,0,1037,38,1,0 +2013,10,25,5,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1755,-1,0,1915,-11,0,0 +2013,10,15,2,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1329,-4,0,1813,-23,0,0 +2013,7,11,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,186,1,1740,208,1,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,850,-4,0,1112,-3,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2023,-3,0,2244,-4,0,0 +2013,10,18,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,-7,0,1546,-9,0,0 +2013,5,12,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2018,113,1,2115,92,1,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1925,-4,0,2302,-8,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,16,1,1655,8,0,0 +2013,9,15,7,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-4,0,900,-15,0,0 +2013,8,14,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-10,0,1025,-2,0,0 +2013,5,8,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1420,74,1,1858,100,1,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,5,0,2110,1,0,0 +2013,7,13,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1613,-2,0,2234,-5,0,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,-1,0,1150,-3,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1415,3,0,1605,-8,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-6,0,1631,-21,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,944,5,0,1020,0,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,720,-2,0,900,-9,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,23,1,1310,22,1,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-6,0,1153,-11,0,0 +2013,10,15,2,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1336,5,0,1647,-13,0,0 +2013,8,21,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2321,-5,0,510,-25,0,0 +2013,9,3,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1245,16,1,1410,10,0,0 +2013,5,28,2,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1459,1,0,1635,11,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1305,32,1,1420,32,1,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1405,20,1,1750,27,1,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1600,27,1,1705,28,1,0 +2013,9,24,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,175,1,710,190,1,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,-7,0,5,-21,0,0 +2013,4,23,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,901,-23,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2030,12,0,2155,2,0,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-5,0,1704,24,1,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,13,0,819,14,0,0 +2013,4,5,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2140,37,1,2255,26,1,0 +2013,5,5,7,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1230,0,0,1510,-5,0,0 +2013,9,28,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1125,-4,0,1240,-7,0,0 +2013,10,7,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1403,-8,0,1653,-15,0,0 +2013,6,12,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,615,0,0,900,-6,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1525,9,0,1740,6,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1312,-1,0,1710,-10,0,0 +2013,6,15,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1859,-11,0,1956,2,0,0 +2013,9,19,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,710,-1,0,1000,16,1,0 +2013,8,25,7,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2359,-9,0,828,-16,0,0 +2013,10,9,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1640,20,1,1900,18,1,0 +2013,4,16,2,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-2,0,919,25,1,0 +2013,5,7,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1608,-8,0,1921,-16,0,0 +2013,5,9,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,855,-3,0,927,6,0,0 +2013,4,14,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,30,1,2030,26,1,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1130,7,0,1555,6,0,0 +2013,6,12,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,20,1,2122,15,1,0 +2013,7,9,2,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1109,9,0,1339,0,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1228,17,1,1503,-8,0,0 +2013,4,23,2,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,545,1,0,709,-3,0,0 +2013,6,13,4,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-16,0,1027,-1,0,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,51,1,1600,89,1,0 +2013,5,5,7,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-9,0,1523,-2,0,0 +2013,9,4,3,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,800,-6,0,850,-19,0,0 +2013,10,23,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1109,-9,0,1353,-13,0,0 +2013,9,30,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,635,3,0,755,-6,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,915,0,0,1140,-6,0,0 +2013,7,12,5,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,190,1,1420,199,1,0 +2013,6,3,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,20,-4,0,815,-17,0,0 +2013,5,10,5,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1630,-3,0,1902,-27,0,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2125,5,0,2235,3,0,0 +2013,6,15,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-5,0,1030,-7,0,0 +2013,9,10,2,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-12,0,1021,-29,0,0 +2013,7,22,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,142,1,646,136,1,0 +2013,6,4,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,725,130,1,1117,111,1,0 +2013,6,10,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-8,0,152,-12,0,0 +2013,4,2,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,730,-4,0,929,-21,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1645,0,0,1813,2,0,0 +2013,4,15,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,-9,0,2014,-21,0,0 +2013,9,19,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-3,0,1044,1,0,0 +2013,5,3,5,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1455,42,1,1745,45,1,0 +2013,5,23,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1513,5,0,2204,6,0,0 +2013,4,29,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1635,-4,0,1840,-29,0,0 +2013,4,28,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,1,0,2010,-14,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1314,-7,0,1632,-25,0,0 +2013,5,31,5,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1717,31,1,1840,20,1,0 +2013,4,15,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-1,0,1005,-17,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1855,31,1,2212,-3,0,0 +2013,9,26,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1725,5,0,1910,-25,0,0 +2013,9,20,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,1,0,2000,-11,0,0 +2013,10,9,3,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,905,-5,0,1150,-5,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,64,1,1055,86,1,0 +2013,9,3,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,22,1,1455,19,1,0 +2013,6,27,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,118,1,1959,161,1,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2245,57,1,737,17,1,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1540,38,1,1650,30,1,0 +2013,4,9,2,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,630,-7,0,805,-11,0,0 +2013,10,17,4,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1223,-6,0,1819,-36,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,-3,0,2206,-13,0,0 +2013,7,3,3,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,2000,129,1,2203,153,1,0 +2013,8,25,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1250,-4,0,1534,-14,0,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,610,-6,0,756,-9,0,0 +2013,10,4,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2045,-9,0,2150,-19,0,0 +2013,7,24,3,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,-3,0,1930,6,0,0 +2013,9,7,6,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1230,1,0,1450,-21,0,0 +2013,8,14,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1504,2,0,1806,44,1,0 +2013,5,21,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1540,172,1,1625,163,1,0 +2013,8,25,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-7,0,1618,-15,0,0 +2013,9,3,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,730,40,1,955,43,1,0 +2013,9,5,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1818,-6,0,1959,-23,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,0,0,1035,-8,0,0 +2013,6,26,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1907,129,1,2229,138,1,0 +2013,6,22,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1855,-2,0,1945,-6,0,0 +2013,9,8,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,0,0,1935,-8,0,0 +2013,10,27,7,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,950,-4,0,1302,-20,0,0 +2013,5,1,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,619,1,0,937,-3,0,0 +2013,10,13,7,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1115,43,1,1650,31,1,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2045,110,1,2354,94,1,0 +2013,10,5,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,-2,0,1540,-12,0,0 +2013,9,6,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-3,0,1105,-1,0,0 +2013,9,19,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,920,-1,0,1308,14,0,0 +2013,5,17,5,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,805,796,1,1045,787,1,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1520,-2,0,1636,2,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2019,32,1,2332,4,0,0 +2013,6,4,2,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,615,0,,749,0,1,1 +2013,5,2,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1539,187,1,1844,184,1,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1745,20,1,30,8,0,0 +2013,6,3,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1654,47,1,1928,45,1,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,655,-2,0,1200,-18,0,0 +2013,7,27,6,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,-1,0,1017,-6,0,0 +2013,5,31,5,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1910,14,0,2050,10,0,0 +2013,4,24,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-4,0,1150,-7,0,0 +2013,10,13,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,-7,0,1246,-14,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,900,-6,0,1200,-5,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1045,2,0,1152,-7,0,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,-6,0,1235,4,0,0 +2013,5,25,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1230,0,0,1309,5,0,0 +2013,8,12,1,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1519,0,0,1625,-9,0,0 +2013,6,24,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,635,-4,0,801,-18,0,0 +2013,5,10,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,0,0,1135,-4,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1050,1,0,1225,-7,0,0 +2013,6,22,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1112,-9,0,1225,-10,0,0 +2013,10,12,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1604,-6,0,1915,-21,0,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1211,-5,0,1402,-4,0,0 +2013,8,31,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,915,11,0,1035,24,1,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1350,75,1,1837,83,1,0 +2013,5,16,4,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1040,-7,0,1349,-12,0,0 +2013,10,8,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,739,-9,0,0 +2013,6,6,4,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,39,1,1541,27,1,0 +2013,5,8,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-3,0,1634,33,1,0 +2013,10,30,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,6,0,1605,-1,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,-7,0,1411,10,0,0 +2013,4,8,1,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,920,2,0,1055,15,1,0 +2013,5,22,3,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,956,6,0,1803,19,1,0 +2013,8,11,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,0,0,2152,7,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,8,0,1651,-1,0,0 +2013,5,23,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,725,52,1,905,90,1,0 +2013,6,30,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,14,0,1336,5,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,32,1,1350,31,1,0 +2013,7,21,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,0,0,1739,54,1,0 +2013,4,7,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1755,4,0,1925,-3,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2155,9,0,2245,9,0,0 +2013,9,24,2,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,700,0,0,801,-3,0,0 +2013,6,16,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,24,1,2025,20,1,0 +2013,7,13,6,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-5,0,808,-3,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1452,15,1,1559,26,1,0 +2013,7,6,6,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,4,0,2120,-8,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1915,-3,0,2151,-15,0,0 +2013,9,17,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1746,-1,0,1932,-10,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1055,-3,0,1201,2,0,0 +2013,4,23,2,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1734,41,1,2015,37,1,0 +2013,6,26,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1255,16,1,1410,13,0,0 +2013,9,12,4,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,0,0,1605,2,0,0 +2013,8,21,3,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1927,-4,0,2004,-19,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,830,5,0,1141,-1,0,0 +2013,6,1,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,-2,0,1309,8,0,0 +2013,6,9,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,43,1,2116,36,1,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,3,0,2040,1,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,845,78,1,1055,77,1,0 +2013,10,14,1,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1353,-10,0,1648,-14,0,0 +2013,4,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1630,34,1,1815,35,1,0 +2013,7,19,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,73,1,1600,85,1,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1120,-3,0,1309,-4,0,0 +2013,8,18,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1705,16,1,1825,9,0,0 +2013,7,5,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,0,,810,0,1,1 +2013,5,25,6,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,554,211,1,713,201,1,0 +2013,10,2,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1100,-6,0,1205,-24,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1010,2,0,1430,4,0,0 +2013,10,22,2,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,825,-2,0,1020,-7,0,0 +2013,7,3,3,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,547,-7,0,735,-17,0,0 +2013,5,2,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1303,-8,0,1428,-9,0,0 +2013,9,1,7,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,730,1,0,1600,19,1,0 +2013,7,11,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-5,0,1216,-21,0,0 +2013,9,3,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1640,-9,0,2005,-10,0,0 +2013,5,22,3,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1600,28,1,1846,-3,0,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,755,1,0,0 +2013,8,30,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1945,-6,0,2244,-12,0,0 +2013,7,1,1,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,5,0,1645,-3,0,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1850,14,0,40,12,0,0 +2013,8,9,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1610,-5,0,1718,-11,0,0 +2013,10,19,6,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,900,0,0,1041,-6,0,0 +2013,6,7,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,640,-2,0,755,0,0,0 +2013,5,3,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,-5,0,1610,-11,0,0 +2013,9,26,4,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,-9,0,1955,-4,0,0 +2013,5,5,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,-7,0,1225,-21,0,0 +2013,8,25,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1725,-6,0,1857,-7,0,0 +2013,5,6,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1900,4,0,2010,-5,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1145,14,0,1325,-1,0,0 +2013,6,11,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,711,-5,0,1055,-15,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,54,1,2336,40,1,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,-10,0,40,-21,0,0 +2013,7,16,2,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1015,-3,0,1145,-15,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,45,1,2025,36,1,0 +2013,5,2,4,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1110,24,1,1328,14,0,0 +2013,7,20,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-6,0,1710,17,1,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1915,49,1,2020,39,1,0 +2013,9,9,1,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,920,-5,0,1043,-4,0,0 +2013,4,24,3,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1335,0,0,1950,-19,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1910,-2,0,2044,-13,0,0 +2013,5,16,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-6,0,1356,-3,0,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-8,0,2152,-13,0,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2020,64,1,2233,47,1,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,810,112,1,1045,116,1,0 +2013,5,29,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-7,0,1728,6,0,0 +2013,7,30,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-1,0,920,-4,0,0 +2013,6,15,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,13,0,1823,-3,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1805,-6,0,2003,-16,0,0 +2013,4,27,6,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1926,47,1,2153,41,1,0 +2013,7,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1650,3,0,1810,-2,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,-4,0,2327,-8,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,10,0,1850,9,0,0 +2013,9,13,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,-3,0,850,-2,0,0 +2013,4,29,1,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2119,20,1,2330,13,0,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1109,-1,0,1413,-6,0,0 +2013,10,4,5,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1014,-4,0,1313,-10,0,0 +2013,8,5,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-7,0,659,-8,0,0 +2013,6,1,6,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1555,-2,0,1733,-1,0,0 +2013,5,8,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,9,0,2210,0,0,0 +2013,7,2,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,4,0,1125,2,0,0 +2013,10,25,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,-1,0,1818,4,0,0 +2013,4,8,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-9,0,2213,41,1,0 +2013,7,12,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1705,63,1,1842,72,1,0 +2013,7,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1330,-2,0,1624,25,1,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,9,0,1150,13,0,0 +2013,6,1,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1505,-8,0,1731,-25,0,0 +2013,8,28,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1943,24,1,2123,35,1,0 +2013,5,6,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-5,0,1240,0,0,0 +2013,6,24,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,18,1,1920,16,1,0 +2013,6,7,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,655,0,0,1526,-6,0,0 +2013,8,5,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,1,0,955,2,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1254,15,1,1516,5,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1548,-6,0,1828,-17,0,0 +2013,8,3,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,759,-2,0,1105,24,1,0 +2013,6,21,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,720,-1,0,953,3,0,0 +2013,8,4,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2130,-3,0,2255,-8,0,0 +2013,5,2,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,11,0,1655,13,0,0 +2013,7,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1739,-4,0,1840,-11,0,0 +2013,4,1,1,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1640,-1,0,1920,-3,0,0 +2013,6,10,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,830,-18,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1520,72,1,1740,64,1,0 +2013,8,23,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,605,0,0,710,-19,0,0 +2013,5,6,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1350,15,1,1520,16,1,0 +2013,9,13,5,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,730,-5,0,1009,-16,0,0 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,-1,0,745,4,0,0 +2013,9,9,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,110,1,1510,116,1,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1200,-2,0,1320,-6,0,0 +2013,6,10,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1801,58,1,1912,58,1,0 +2013,6,11,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,2,0,2133,1,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,815,-2,0,939,-5,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2007,43,1,2206,68,1,0 +2013,5,25,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1840,-2,0,1945,-12,0,0 +2013,8,25,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,8,0,2055,7,0,0 +2013,8,21,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,0,,1031,0,1,1 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1312,-6,0,1547,-7,0,0 +2013,5,4,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1905,-5,0,2200,-32,0,0 +2013,7,29,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-4,0,828,6,0,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,2016,-8,0,100,-11,0,0 +2013,7,1,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,635,-1,0,745,10,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1615,3,0,2345,-1,0,0 +2013,9,30,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,-2,0,1634,-23,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-3,0,1532,-15,0,0 +2013,7,15,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1438,-8,0,1547,-19,0,0 +2013,8,9,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,-8,0,1240,-13,0,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,825,16,1,950,18,1,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1405,50,1,1615,42,1,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-7,0,1837,-14,0,0 +2013,5,16,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,-2,0,1645,-2,0,0 +2013,9,17,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,940,-4,0,1035,-5,0,0 +2013,7,28,7,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,828,-10,0,1020,-2,0,0 +2013,8,6,2,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,-3,0,1133,2,0,0 +2013,5,29,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1720,-6,0,2137,-6,0,0 +2013,5,5,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,800,-4,0,905,-5,0,0 +2013,10,25,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1144,-4,0,1429,-15,0,0 +2013,8,17,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1247,3,0,0 +2013,5,7,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2030,-6,0,2205,-8,0,0 +2013,9,7,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,937,-8,0,1218,-11,0,0 +2013,8,25,7,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1239,-8,0,2033,-16,0,0 +2013,10,30,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1035,26,1,1155,32,1,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2115,48,1,30,46,1,0 +2013,10,16,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1554,6,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,37,1,2100,40,1,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1029,-6,0,1244,-26,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1545,31,1,1747,4,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,0,,1440,0,1,1 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,950,17,1,1520,0,0,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1430,119,1,1545,108,1,0 +2013,10,3,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-7,0,1257,-10,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1535,0,0,1620,-5,0,0 +2013,4,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1330,21,1,1459,22,1,0 +2013,5,29,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1352,-13,0,1649,3,0,0 +2013,4,8,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-6,0,1930,-11,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1614,18,1,1800,5,0,0 +2013,5,23,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1853,12,0,2100,7,0,0 +2013,7,19,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1635,12,0,1815,19,1,0 +2013,8,3,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1735,3,0,1921,-15,0,0 +2013,4,30,2,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1409,-12,0,1520,-17,0,0 +2013,7,10,3,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1740,9,0,1905,71,1,0 +2013,10,14,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,-5,0,2355,-4,0,0 +2013,4,20,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,42,1,1534,50,1,0 +2013,8,16,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2025,0,0,2058,0,0,0 +2013,5,9,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,-3,0,853,-8,0,0 +2013,8,7,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2115,120,1,25,120,1,0 +2013,9,29,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1500,-4,0,1632,-10,0,0 +2013,7,9,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1030,3,0,1205,-1,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1750,5,0,2150,-4,0,0 +2013,4,22,1,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1350,-5,0,1620,2,0,0 +2013,9,26,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,750,-4,0,851,15,1,0 +2013,10,10,4,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-5,0,1050,-17,0,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,630,-5,0,730,-16,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-2,0,1115,-10,0,0 +2013,9,3,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2258,0,0,702,0,0,0 +2013,6,1,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-8,0,1255,-23,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1538,-5,0,1644,-10,0,0 +2013,9,13,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,12,0,1330,7,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-7,0,913,-25,0,0 +2013,5,7,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-6,0,2020,-23,0,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,0,0,1005,8,0,0 +2013,4,28,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1710,-2,0,1845,13,0,0 +2013,7,18,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-7,0,542,-13,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,925,-3,0,1150,-14,0,0 +2013,4,11,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-5,0,912,-9,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1354,-2,0,1630,-10,0,0 +2013,8,25,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,34,1,2310,26,1,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,14,0,1113,13,0,0 +2013,8,28,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-4,0,1808,2,0,0 +2013,5,26,7,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,830,11,0,1050,-2,0,0 +2013,10,1,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,700,-8,0,825,-17,0,0 +2013,6,24,1,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1505,-2,0,1645,-12,0,0 +2013,10,13,7,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1825,-8,0,2040,2,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,700,-2,0,1200,-17,0,0 +2013,6,1,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,1,0,25,-3,0,0 +2013,9,21,6,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1820,-15,0,2109,-31,0,0 +2013,10,29,2,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,1900,4,0,2130,-18,0,0 +2013,4,3,3,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1225,-3,0,1402,-3,0,0 +2013,9,3,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-11,0,1730,-24,0,0 +2013,8,12,1,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,12,0,1835,21,1,0 +2013,4,11,4,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1748,29,1,2000,24,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1955,28,1,2128,24,1,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,4,0,2250,3,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,31,1,1539,61,1,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1804,0,0,1904,-7,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1510,2,0,1749,-4,0,0 +2013,9,9,1,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-8,0,1634,-12,0,0 +2013,9,8,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,555,-1,0,1355,4,0,0 +2013,6,15,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1335,-4,0,1540,-3,0,0 +2013,8,28,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,82,1,2115,73,1,0 +2013,6,12,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1238,-3,0,1428,-4,0,0 +2013,7,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,2005,0,0,2129,-5,0,0 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,855,-5,0,1210,2,0,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,5,0,1144,4,0,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,805,-7,0,919,-17,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1827,-3,0,1943,10,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,-6,0,820,-14,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1425,1,0,1954,-10,0,0 +2013,7,4,4,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-7,0,1643,-10,0,0 +2013,7,5,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1508,-7,0,1554,-10,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1125,0,0,1430,-13,0,0 +2013,6,1,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1815,-2,0,1940,-11,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1748,-8,0,2102,-33,0,0 +2013,5,8,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,645,-5,0,910,-10,0,0 +2013,4,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-3,0,1509,-16,0,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,-2,0,1311,0,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,900,80,1,1045,101,1,0 +2013,8,29,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-2,0,1735,-9,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1655,9,0,2110,-13,0,0 +2013,10,10,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1725,-3,0,2057,-12,0,0 +2013,6,18,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,750,-1,0,1035,-6,0,0 +2013,8,11,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,38,1,1812,29,1,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1415,-2,0,1605,-16,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,55,1,1338,31,1,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1536,2,0,1812,-3,0,0 +2013,9,15,7,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,28,1,1555,25,1,0 +2013,10,17,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-2,0,1755,-21,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1756,-1,0,1914,-14,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1715,-1,0,1855,-11,0,0 +2013,4,28,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1745,38,1,1910,80,1,0 +2013,9,25,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1235,0,0,1420,-21,0,0 +2013,10,15,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1112,48,1,1402,47,1,0 +2013,4,2,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,600,-2,0,815,-22,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2010,-3,0,2325,-3,0,0 +2013,10,12,6,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1559,-9,0,1710,-12,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,950,-5,0,1122,-12,0,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1735,6,0,2250,1,0,0 +2013,7,25,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1009,-4,0,1256,-2,0,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1948,62,1,2333,31,1,0 +2013,10,27,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2000,74,1,2125,66,1,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,630,5,0,750,-3,0,0 +2013,9,4,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,0,0,825,-17,0,0 +2013,7,2,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,620,-8,0,755,-1,0,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1326,-8,0,1621,-20,0,0 +2013,8,24,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1404,-6,0,2156,-9,0,0 +2013,9,13,5,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1116,-13,0,1439,-16,0,0 +2013,9,25,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,-2,0,30,-9,0,0 +2013,10,4,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,835,13,0,1010,0,0,0 +2013,5,3,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1220,6,0,1500,-44,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,9,0,1925,-1,0,0 +2013,4,28,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1300,35,1,1423,31,1,0 +2013,4,23,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,920,-1,0,1045,-7,0,0 +2013,8,1,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-8,0,804,-5,0,0 +2013,6,20,4,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,-1,0,1400,-12,0,0 +2013,6,28,5,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,-1,0,44,0,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,815,9,0,1008,9,0,0 +2013,7,19,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1247,16,1,1542,4,0,0 +2013,9,3,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-9,0,1355,-10,0,0 +2013,5,4,6,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1800,-4,0,2014,-21,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,-5,0,1409,-15,0,0 +2013,7,18,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,957,-7,0,1255,0,0,0 +2013,5,24,5,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,57,1,1914,49,1,0 +2013,5,11,6,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1713,-5,0,1922,22,1,0 +2013,7,16,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,0,0,1305,3,0,0 +2013,9,29,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,800,-3,0,917,-7,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1100,2,0,1450,-17,0,0 +2013,6,5,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1407,0,0,1815,-5,0,0 +2013,10,11,5,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2210,-6,0,844,3,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1505,9,0,1835,8,0,0 +2013,8,31,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1540,0,0,1639,-10,0,0 +2013,9,28,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,835,-6,0,925,-7,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,736,-2,0,930,9,0,0 +2013,6,8,6,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1225,-6,0,1335,-15,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-2,0,1701,-16,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1540,-1,0,1930,-10,0,0 +2013,8,6,2,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,2,0,2033,-2,0,0 +2013,5,16,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,620,-4,0,1445,-30,0,0 +2013,8,4,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1607,-5,0,1653,-14,0,0 +2013,6,11,2,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1928,-5,0,2103,-9,0,0 +2013,6,17,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1822,-7,0,1934,-19,0,0 +2013,4,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1050,-4,0,1339,-6,0,0 +2013,4,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14570,Reno/Tahoe International,Reno,NV,905,0,0,955,7,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1305,7,0,1435,28,1,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,32,1,2125,26,1,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,0,0,1720,-8,0,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2030,169,1,2307,171,1,0 +2013,5,27,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,822,-9,0,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-2,0,1010,-5,0,0 +2013,8,20,2,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1030,23,1,1341,7,0,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1115,16,1,1240,16,1,0 +2013,4,24,3,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1808,1,0,2105,-1,0,0 +2013,8,28,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-2,0,2205,0,0,0 +2013,5,19,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1752,11,0,2020,22,1,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2110,1,0,2225,-3,0,0 +2013,7,16,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,6,0,1020,28,1,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,-4,0,5,-12,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1225,25,1,1705,6,0,0 +2013,10,3,4,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1110,-2,0,1648,-14,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,12,0,1320,20,1,0 +2013,9,5,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,913,-5,0,1200,2,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1550,48,1,1655,35,1,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1500,9,0,2339,-12,0,0 +2013,8,8,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2000,61,1,2315,58,1,0 +2013,8,24,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,-12,0,1310,-16,0,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1130,35,1,1410,26,1,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1300,-5,0,1426,-6,0,0 +2013,9,12,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1510,83,1,1620,75,1,0 +2013,8,9,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-6,0,1645,1,0,0 +2013,9,16,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-7,0,923,-22,0,0 +2013,8,4,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1500,58,1,1740,45,1,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1622,32,1,1927,-8,0,0 +2013,9,9,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-3,0,617,-7,0,0 +2013,7,8,1,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1600,0,,1734,0,1,1 +2013,10,9,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1618,15,1,1709,20,1,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,-1,0,1929,14,0,0 +2013,6,15,6,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1115,-6,0,1420,8,0,0 +2013,5,26,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1945,-4,0,2110,-14,0,0 +2013,8,6,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-4,0,1031,-3,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1200,-1,0,1350,-5,0,0 +2013,4,13,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,10,0,1439,13,0,0 +2013,9,17,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,710,-6,0,1025,4,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1400,-1,0,1515,-2,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1927,0,0,2041,-20,0,0 +2013,10,2,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-3,0,1939,-20,0,0 +2013,7,15,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,14,0,1236,-4,0,0 +2013,5,10,5,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,959,0,0,1110,-2,0,0 +2013,4,23,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1624,-4,0,44,-28,0,0 +2013,9,17,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,-4,0,2245,-4,0,0 +2013,8,24,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-8,0,1535,-9,0,0 +2013,6,3,1,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,845,-1,0,955,-9,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-4,0,1343,14,0,0 +2013,5,27,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1020,10,0,1301,-8,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1205,-2,0,1645,-16,0,0 +2013,4,1,1,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,739,-9,0,954,-12,0,0 +2013,5,14,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1405,-4,0,1620,-21,0,0 +2013,7,28,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1255,0,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1640,26,1,2000,20,1,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2135,-9,0,2242,-8,0,0 +2013,7,10,3,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,20,1,2248,93,1,0 +2013,10,18,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1000,24,1,1605,5,0,0 +2013,8,2,5,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,735,47,1,1340,38,1,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1915,-3,0,56,3,0,0 +2013,10,7,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1545,18,1,1800,15,1,0 +2013,4,8,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-1,0,1220,14,0,0 +2013,5,7,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,-2,0,2025,3,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,0,,2040,0,1,1 +2013,6,7,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,819,0,0,930,-3,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,540,2,0,908,0,0,0 +2013,4,6,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,905,-2,0,1205,-1,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,-4,0,12,-13,0,0 +2013,10,22,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,-5,0,2230,-11,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,10,0,1745,9,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1100,18,1,1235,2,0,0 +2013,10,25,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1350,-5,0,2010,1,0,0 +2013,8,11,7,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,-8,0,1725,-13,0,0 +2013,8,11,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1751,-2,0,2058,9,0,0 +2013,9,27,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1448,0,,1522,0,1,1 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-6,0,1520,-11,0,0 +2013,7,27,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,815,-7,0,930,-6,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1300,-10,0,1625,-15,0,0 +2013,4,4,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,4,0,1529,11,0,0 +2013,10,14,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1335,3,0,1455,1,0,0 +2013,6,17,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,835,396,1,937,402,1,0 +2013,9,18,3,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1822,0,0,2021,-16,0,0 +2013,4,7,7,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-10,0,802,-11,0,0 +2013,8,12,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,645,-2,0,1455,-8,0,0 +2013,4,16,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1530,0,0,1836,-8,0,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,605,2,0,734,-12,0,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2211,23,1,2330,34,1,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1725,-2,0,2000,-7,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1056,1,0,1232,-15,0,0 +2013,10,10,4,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1800,29,1,2118,13,0,0 +2013,10,15,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1220,-1,0,1549,-16,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,900,8,0,1100,6,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2059,47,1,2219,24,1,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1326,-2,0,1607,-11,0,0 +2013,5,8,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1725,0,0,1950,-3,0,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,815,-2,0,905,-7,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,84,1,1305,69,1,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1725,9,0,1856,4,0,0 +2013,8,17,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1739,5,0,1833,-3,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,17,1,1620,6,0,0 +2013,7,25,4,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,2033,69,1,2142,67,1,0 +2013,6,17,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,755,-1,0,915,-8,0,0 +2013,4,30,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-8,0,1755,-18,0,0 +2013,8,16,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1605,27,1,1700,22,1,0 +2013,8,7,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,815,-7,0,0 +2013,8,9,5,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1915,-3,0,2010,28,1,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,830,-5,0,1630,-4,0,0 +2013,7,1,1,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2100,-3,0,521,16,1,0 +2013,8,25,7,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-13,0,1130,-9,0,0 +2013,4,29,1,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,840,-3,0,1021,20,1,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,-2,0,1445,-17,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,34,1,2329,21,1,0 +2013,10,15,2,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1931,-2,0,2305,-23,0,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1932,-7,0,2301,-1,0,0 +2013,7,21,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,755,-9,0,1057,-26,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2100,-5,0,2225,-2,0,0 +2013,4,11,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,41,1,1549,56,1,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1635,17,1,1944,-26,0,0 +2013,4,20,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,850,-4,0,1025,19,1,0 +2013,7,8,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1022,1,0,1152,-14,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1459,-5,0,1637,-18,0,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,742,-3,0,945,-11,0,0 +2013,10,22,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1710,-4,0,2005,-18,0,0 +2013,10,28,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1630,-8,0,1810,16,1,0 +2013,9,26,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,12,0,2000,2,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1936,6,0,2040,-1,0,0 +2013,9,17,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1714,-8,0,2057,-12,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1250,-4,0,1620,-26,0,0 +2013,7,24,3,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,44,1,2027,31,1,0 +2013,10,14,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,600,-6,0,800,-2,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1815,16,1,1905,0,0,0 +2013,7,14,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-5,0,1209,-12,0,0 +2013,9,14,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,0,0,708,-4,0,0 +2013,4,23,2,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-8,0,947,1,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,-4,0,20,-12,0,0 +2013,4,24,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,13,0,1245,1,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1123,0,0,1251,-15,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,845,-2,0,1350,-3,0,0 +2013,10,4,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-6,0,2130,-3,0,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,724,-4,0,1050,20,1,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2115,71,1,2335,65,1,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,80,1,1710,64,1,0 +2013,5,12,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1130,-9,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,-6,0,1208,-30,0,0 +2013,9,23,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,19,1,1500,4,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,812,2,0,1053,-30,0,0 +2013,5,17,5,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,900,-9,0,0 +2013,6,1,6,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,620,-5,0,723,-19,0,0 +2013,6,24,1,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1730,3,0,2055,-4,0,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-3,0,1054,-14,0,0 +2013,9,17,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-9,0,2226,-10,0,0 +2013,10,20,7,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,900,-8,0,1024,-13,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1105,-9,0,1355,-20,0,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,635,-10,0,800,-29,0,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2035,-2,0,2145,4,0,0 +2013,6,18,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,-11,0,1639,-25,0,0 +2013,4,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,921,-6,0,1044,-8,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1816,6,0,2303,7,0,0 +2013,5,8,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2202,-5,0,2253,-15,0,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,-3,0,1000,-7,0,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2050,8,0,2308,14,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,0,0,922,7,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1815,-3,0,1940,15,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1940,-2,0,2207,-15,0,0 +2013,8,19,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-5,0,1024,-10,0,0 +2013,5,21,2,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,93,1,608,108,1,0 +2013,9,22,7,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-4,0,1253,-7,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1006,-3,0,1635,-11,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,0,0,900,1,0,0 +2013,7,26,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1355,-3,0,1450,-11,0,0 +2013,8,29,4,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1002,3,0,1309,8,0,0 +2013,8,26,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-9,0,2100,45,1,0 +2013,8,21,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2040,-2,0,2235,-13,0,0 +2013,4,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2030,-4,0,2225,-7,0,0 +2013,10,12,6,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,752,-8,0,907,-2,0,0 +2013,10,13,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-5,0,1130,-20,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1605,6,0,2125,13,0,0 +2013,4,20,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1035,-3,0,1200,-12,0,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1036,-3,0,1213,-11,0,0 +2013,5,14,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,-4,0,1840,-29,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1116,-5,0,1209,-8,0,0 +2013,6,28,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,-5,0,1619,-2,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2040,16,1,2155,5,0,0 +2013,5,7,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1925,-6,0,2219,-19,0,0 +2013,4,5,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,801,0,0,1006,-20,0,0 +2013,7,31,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1418,14,0,1749,1,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1435,10,0,1530,9,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,745,-2,0,1135,-11,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1249,25,1,1441,19,1,0 +2013,8,4,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,820,0,0,940,5,0,0 +2013,8,17,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-8,0,558,-3,0,0 +2013,7,9,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1449,-3,0,1614,-7,0,0 +2013,9,4,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-7,0,1617,-5,0,0 +2013,8,21,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-9,0,1826,2,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1120,-7,0,1341,-6,0,0 +2013,5,30,4,EV,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1400,-4,0,1907,1,0,0 +2013,7,22,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-1,0,655,-7,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,94,1,1700,89,1,0 +2013,4,2,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,752,-14,0,0 +2013,8,24,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-6,0,810,-10,0,0 +2013,6,26,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,605,0,,735,0,1,1 +2013,4,16,2,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-4,0,2202,-12,0,0 +2013,4,5,5,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1942,-11,0,2332,-26,0,0 +2013,7,17,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1535,-1,0,1653,-13,0,0 +2013,4,8,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-5,0,1705,-25,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1436,82,1,1846,58,1,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,930,0,0,1205,-12,0,0 +2013,4,15,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2040,-3,0,2200,-15,0,0 +2013,4,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2105,23,1,2205,1,0,0 +2013,6,4,2,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1905,-1,0,2020,-4,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2304,15,1,715,13,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1036,41,1,1242,25,1,0 +2013,10,10,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1016,3,0,1311,-8,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-7,0,1941,2,0,0 +2013,6,2,7,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-3,0,1300,-28,0,0 +2013,4,21,7,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,605,-5,0,929,7,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,44,1,1855,30,1,0 +2013,7,8,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,65,1,1715,83,1,0 +2013,6,16,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2055,-7,0,2346,-13,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1901,-7,0,1,-14,0,0 +2013,7,3,3,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,906,16,1,1437,18,1,0 +2013,9,5,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1620,-1,0,1805,11,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-5,0,1016,-13,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2010,-1,0,2220,-13,0,0 +2013,10,18,5,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1650,-8,0,1930,-13,0,0 +2013,5,28,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1340,25,1,1503,45,1,0 +2013,9,19,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2115,2,0,535,-11,0,0 +2013,4,9,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1005,-4,0,1305,-1,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1011,-3,0,1148,-19,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1322,-2,0,1617,-9,0,0 +2013,7,5,5,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-11,0,1627,-21,0,0 +2013,7,25,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,27,10,0,633,10,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,3,0,1635,-11,0,0 +2013,5,2,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,600,2,0,720,-10,0,0 +2013,9,17,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,700,0,0,815,-1,0,0 +2013,6,12,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,0,0,1439,-27,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,-5,0,1708,-7,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,18,1,1125,62,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-3,0,1054,0,0,0 +2013,10,1,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,815,-21,0,0 +2013,6,10,1,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,-4,0,1041,0,0,0 +2013,7,19,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,640,21,1,752,12,0,0 +2013,10,27,7,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,-4,0,1250,-33,0,0 +2013,8,13,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,852,19,1,1205,19,1,0 +2013,6,2,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,-6,0,2055,-7,0,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1855,20,1,2025,31,1,0 +2013,7,16,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,0,0,1956,-8,0,0 +2013,9,9,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,1949,-11,0,0 +2013,6,8,6,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,4,0,1936,-8,0,0 +2013,10,7,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1956,61,1,2155,41,1,0 +2013,8,8,4,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1705,-3,0,2105,-24,0,0 +2013,10,12,6,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1400,1,0,1549,8,0,0 +2013,5,30,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,7,0,1540,-10,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,-4,0,1923,-11,0,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1610,11,0,1800,-11,0,0 +2013,8,17,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,79,1,2135,63,1,0 +2013,8,8,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-5,0,1252,-17,0,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-2,0,2355,-3,0,0 +2013,7,3,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1415,0,0,1540,-6,0,0 +2013,10,27,7,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1208,-7,0,1330,-11,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1329,5,0,1618,-13,0,0 +2013,5,9,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,6,0,940,11,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1015,12,0,1450,7,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1803,48,1,1838,61,1,0 +2013,10,10,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,8,0,2010,-43,0,0 +2013,9,27,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,-2,0,1802,-2,0,0 +2013,4,19,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1346,-5,0,1621,7,0,0 +2013,9,3,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1349,1,0,0 +2013,5,31,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,5,0,1105,4,0,0 +2013,10,2,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-5,0,1555,-17,0,0 +2013,8,14,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1335,0,0,1435,-1,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,745,1,0,1050,-17,0,0 +2013,6,26,3,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-8,0,1601,-18,0,0 +2013,7,21,7,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,755,-13,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,-1,0,1755,-4,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,2,0,1807,-7,0,0 +2013,10,29,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,500,75,1,615,66,1,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,730,29,1,1040,43,1,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,-1,0,1708,-25,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1025,0,,1210,0,1,1 +2013,8,2,5,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,-3,0,2200,7,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,-2,0,1055,-21,0,0 +2013,8,28,3,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1800,-9,0,2045,-18,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1905,-1,0,2053,-2,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,4,0,1605,-8,0,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,959,0,,1125,0,1,1 +2013,6,12,3,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,35,1,2350,21,1,0 +2013,10,9,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1735,0,0,1840,-1,0,0 +2013,4,29,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,-7,0,2315,-1,0,0 +2013,5,5,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1055,-2,0,1230,6,0,0 +2013,8,24,6,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,0,0,1850,3,0,0 +2013,5,19,7,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1118,1,0,1249,-3,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,-4,0,1045,-3,0,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1720,10,0,2020,27,1,0 +2013,8,27,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1215,4,0,1512,8,0,0 +2013,4,3,3,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-9,0,1854,-10,0,0 +2013,7,13,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,-5,0,1210,-35,0,0 +2013,7,15,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,1,0,2035,-4,0,0 +2013,8,1,4,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1241,3,0,1821,7,0,0 +2013,7,5,5,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,1745,-7,0,1853,-3,0,0 +2013,8,8,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-1,0,2100,-18,0,0 +2013,8,3,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-8,0,842,-12,0,0 +2013,8,3,6,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1555,-1,0,2340,15,1,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2005,0,0,2125,-8,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-2,0,745,-13,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2130,9,0,2230,7,0,0 +2013,7,17,3,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1735,34,1,1915,26,1,0 +2013,8,5,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-6,0,1329,-15,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,1,0,941,6,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2042,6,0,2312,-12,0,0 +2013,8,5,1,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1743,5,0,2014,6,0,0 +2013,10,2,3,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1333,-5,0,1435,-1,0,0 +2013,9,23,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,815,-1,0,1000,-8,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1045,25,1,1410,32,1,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1700,26,1,1930,-4,0,0 +2013,5,2,4,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,805,-4,0,0 +2013,7,15,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,10,0,1455,1,0,0 +2013,4,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,0,0,2010,-6,0,0 +2013,6,13,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,-6,0,1922,-15,0,0 +2013,6,3,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1344,-3,0,1635,-19,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2110,-2,0,2355,-19,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,-2,0,1854,-15,0,0 +2013,8,27,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,545,-9,0,815,-22,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1205,13,0,2040,29,1,0 +2013,6,19,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-8,0,913,7,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,24,1,1725,15,1,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1905,98,1,2041,100,1,0 +2013,4,6,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-3,0,1202,5,0,0 +2013,9,6,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1338,-4,0,1551,-3,0,0 +2013,8,20,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2005,0,0,2103,-5,0,0 +2013,7,6,6,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1355,-3,0,1450,-8,0,0 +2013,6,6,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,849,-6,0,0 +2013,4,14,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1012,-4,0,1318,-1,0,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1618,-8,0,1709,-14,0,0 +2013,9,22,7,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-6,0,1524,-2,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1240,3,0,1420,-2,0,0 +2013,7,12,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,53,1,530,57,1,0 +2013,6,16,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,0,0,1630,-11,0,0 +2013,8,29,4,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,3,0,1545,-16,0,0 +2013,10,15,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,5,0,1638,-11,0,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,925,-6,0,1210,-20,0,0 +2013,8,27,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,935,-4,0,1005,-5,0,0 +2013,9,20,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1858,3,0,2026,4,0,0 +2013,10,10,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-4,0,920,-27,0,0 +2013,7,14,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,0,0,2102,9,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1738,1,0,1822,-17,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,16,1,1415,18,1,0 +2013,6,10,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,702,-10,0,829,-20,0,0 +2013,4,19,5,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,615,-4,0,750,-7,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1845,61,1,2000,51,1,0 +2013,8,26,1,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1353,-7,0,1520,-23,0,0 +2013,6,14,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,0,0,1635,8,0,0 +2013,5,9,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,804,5,0,950,-8,0,0 +2013,6,27,4,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2205,-1,0,2317,39,1,0 +2013,5,13,1,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-1,0,1757,-18,0,0 +2013,7,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1420,1,0,1650,-7,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,16,1,2040,19,1,0 +2013,8,2,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1005,-10,0,1130,-9,0,0 +2013,4,6,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-4,0,925,-7,0,0 +2013,9,8,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1100,-8,0,1225,-9,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1505,28,1,1720,22,1,0 +2013,6,21,5,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1325,5,0,1525,-10,0,0 +2013,10,19,6,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1224,-4,0,1714,0,0,0 +2013,7,7,7,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,-2,0,1330,-6,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,-8,0,19,-14,0,0 +2013,6,3,1,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2010,10,0,2220,2,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,-2,0,2025,36,1,0 +2013,10,17,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1333,-8,0,1435,-9,0,0 +2013,6,22,6,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,3,0,1850,-1,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,930,-1,0,1150,13,0,0 +2013,9,21,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,158,1,755,141,1,0 +2013,5,1,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2016,-3,0,2041,-8,0,0 +2013,6,1,6,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,820,-7,0,1035,-20,0,0 +2013,6,14,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1836,29,1,2000,26,1,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1805,6,0,2040,3,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2049,103,1,10,81,1,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1753,115,1,1906,120,1,0 +2013,8,18,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1415,0,,1550,0,1,1 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,41,1,1115,41,1,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,2002,0,0,2203,-6,0,0 +2013,5,14,2,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-3,0,1411,-22,0,0 +2013,8,20,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,855,0,0,1210,-1,0,0 +2013,4,8,1,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,-3,0,1806,-19,0,0 +2013,7,10,3,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1716,41,1,1844,45,1,0 +2013,4,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1835,62,1,2054,40,1,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1020,0,0,1122,-9,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,634,-5,0,910,-30,0,0 +2013,8,21,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-9,0,937,22,1,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1030,0,0,1220,-7,0,0 +2013,5,20,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,8,0,1330,0,0,0 +2013,10,24,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2100,26,1,2205,20,1,0 +2013,9,17,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,957,1,0,1053,11,0,0 +2013,6,20,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,630,-9,0,800,-13,0,0 +2013,9,5,4,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1530,1,0,1745,-11,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,955,-2,0,1202,9,0,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,930,3,0,1045,-9,0,0 +2013,9,12,4,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1748,8,0,2030,2,0,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,81,1,1335,64,1,0 +2013,6,6,4,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,28,1,2230,22,1,0 +2013,4,11,4,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,709,-7,0,808,-9,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,-2,0,730,-4,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1955,22,1,2105,12,0,0 +2013,10,16,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1945,-3,0,2100,-10,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2050,14,0,2222,-2,0,0 +2013,8,13,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1350,0,0,1430,4,0,0 +2013,6,19,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1445,0,0,1450,-4,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1220,6,0,1335,14,0,0 +2013,10,14,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,9,0,1450,9,0,0 +2013,4,4,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-5,0,1105,-3,0,0 +2013,7,6,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,3,0,2003,-3,0,0 +2013,5,11,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1708,-5,0,2113,-15,0,0 +2013,6,7,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,29,1,2135,82,1,0 +2013,5,8,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,-2,0,911,1,0,0 +2013,6,24,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1730,-6,0,1941,0,0,0 +2013,8,11,7,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1119,-5,0,1437,-4,0,0 +2013,7,26,5,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1015,-6,0,1315,-22,0,0 +2013,6,10,1,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1000,123,1,1208,124,1,0 +2013,6,28,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,810,-1,0,1200,-1,0,0 +2013,6,30,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1550,44,1,1830,46,1,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,5,0,1915,-1,0,0 +2013,5,23,4,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,600,0,0,720,-9,0,0 +2013,5,13,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,830,-1,0,1120,-8,0,0 +2013,6,6,4,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,-2,0,1454,-3,0,0 +2013,5,28,2,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2340,26,1,725,28,1,0 +2013,6,29,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,44,1,1155,34,1,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1340,26,1,1505,22,1,0 +2013,10,8,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,-2,0,1640,-10,0,0 +2013,8,21,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-6,0,1115,-9,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1631,22,1,1855,-2,0,0 +2013,8,22,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1841,-4,0,2300,-12,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2030,45,1,2155,40,1,0 +2013,4,8,1,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,-3,0,2110,-15,0,0 +2013,6,12,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1135,-5,0,1316,-8,0,0 +2013,6,13,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1150,-1,0,1337,0,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,820,-3,0,930,-13,0,0 +2013,9,28,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-5,0,1524,-10,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,953,-2,0,1044,2,0,0 +2013,5,18,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,755,5,0,1010,5,0,0 +2013,9,26,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-6,0,1344,-11,0,0 +2013,9,24,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,0,0,1909,-10,0,0 +2013,4,14,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1659,6,0,1900,-12,0,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,610,-3,0,820,-15,0,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2105,1,0,2215,-1,0,0 +2013,5,25,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1205,-2,0,1309,-6,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,21,1,1925,15,1,0 +2013,7,6,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1131,0,0,1320,-3,0,0 +2013,8,29,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-7,0,2215,-16,0,0 +2013,10,25,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-7,0,1845,0,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1325,0,0,1520,-8,0,0 +2013,6,27,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1420,0,0,1545,-7,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1920,-1,0,2316,-18,0,0 +2013,6,8,6,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1155,-2,0,1440,3,0,0 +2013,9,27,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-7,0,1626,-16,0,0 +2013,10,19,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,820,4,0,1030,17,1,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,9,0,125,15,1,0 +2013,8,16,5,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1055,-5,0,1330,-15,0,0 +2013,4,18,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1850,54,1,1920,44,1,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,-1,0,1624,-12,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2015,116,1,2315,117,1,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1839,13,0,2356,10,0,0 +2013,7,22,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1520,11,0,1705,0,1,1 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2305,-9,0,2309,-11,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1922,-1,0,2129,-6,0,0 +2013,6,12,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,830,-3,0,920,-6,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1200,-2,0,1424,-7,0,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-3,0,1440,8,0,0 +2013,4,21,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-12,0,2122,-22,0,0 +2013,9,28,6,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1355,7,0,1535,10,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-5,0,1831,-5,0,0 +2013,10,23,3,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,8,0,2215,-10,0,0 +2013,9,19,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1520,-14,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1245,13,0,1435,4,0,0 +2013,8,4,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-8,0,1445,-15,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,126,1,1300,129,1,0 +2013,6,18,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,8,0,1714,32,1,0 +2013,4,16,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,0,0,2045,-5,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2035,4,0,2201,-12,0,0 +2013,4,30,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,841,-6,0,1133,2,0,0 +2013,5,18,6,EV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,11,0,1636,16,1,0 +2013,8,9,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,13,0,1620,10,0,0 +2013,5,26,7,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,730,-2,0,1000,-18,0,0 +2013,4,28,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2130,-1,0,2353,6,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1550,14,0,1645,-1,0,0 +2013,10,1,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,0,0,1351,-6,0,0 +2013,6,14,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,2,0,942,-10,0,0 +2013,7,11,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,642,-10,0,724,-12,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2000,-2,0,20,-2,0,0 +2013,7,10,3,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,743,-6,0,847,-18,0,0 +2013,7,22,1,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,545,24,1,657,8,0,0 +2013,5,29,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,845,-5,0,1015,-21,0,0 +2013,8,26,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,830,-5,0,1205,12,0,0 +2013,4,28,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1530,4,0,1840,-15,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1849,1,0,2145,-21,0,0 +2013,4,22,1,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,2040,58,1,2330,37,1,0 +2013,5,14,2,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-10,0,2058,-9,0,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-6,0,1552,-11,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-3,0,1409,9,0,0 +2013,5,20,1,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-4,0,1045,-16,0,0 +2013,8,23,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2020,17,1,2302,8,0,0 +2013,10,10,4,WN,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-1,0,1445,6,0,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,11,0,1355,17,1,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1043,-5,0,1229,-10,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,930,-2,0,1650,-5,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,-2,0,1730,-12,0,0 +2013,8,6,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-5,0,1619,-12,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1031,1,0,1250,10,0,0 +2013,9,7,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1935,-5,0,2157,-13,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2040,1,0,2250,-16,0,0 +2013,7,9,2,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,81,1,910,74,1,0 +2013,10,10,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1915,-6,0,2058,-6,0,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2020,29,1,2335,6,0,0 +2013,10,24,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1540,51,1,1650,38,1,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1238,7,0,1504,-5,0,0 +2013,10,18,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1545,-1,0,1605,-9,0,0 +2013,7,26,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1845,-9,0,2047,18,1,0 +2013,6,20,4,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,1005,-10,0,1300,-18,0,0 +2013,9,23,1,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2020,-8,0,2343,-15,0,0 +2013,7,18,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1300,-2,0,1820,-9,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1900,42,1,2050,46,1,0 +2013,4,29,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,11,0,1440,-1,0,0 +2013,10,24,4,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1433,6,0,1917,-7,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1010,-6,0,1120,-17,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1455,4,0,1940,5,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1540,-3,0,1557,-15,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,15,1,1530,12,0,0 +2013,8,4,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1939,59,1,2152,66,1,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1000,0,0,1315,-8,0,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,830,-5,0,842,-22,0,0 +2013,6,24,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,53,1,1940,56,1,0 +2013,8,1,4,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1524,-3,0,1637,-16,0,0 +2013,6,25,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1848,22,1,1949,66,1,0 +2013,6,4,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-1,0,820,-5,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1000,-5,0,1225,26,1,0 +2013,5,8,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1845,-7,0,2300,-21,0,0 +2013,5,30,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1125,32,1,1400,46,1,0 +2013,6,27,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,18,1,2200,11,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,-1,0,1000,-10,0,0 +2013,6,7,5,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-7,0,1128,-31,0,0 +2013,6,24,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1425,-8,0,1630,3,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,1332,0,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1150,12,0,1255,24,1,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,6,0,2326,-9,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,12,0,1300,5,0,0 +2013,8,3,6,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,930,3,0,0 +2013,5,2,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1700,-6,0,1804,0,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,855,-6,0,1016,-8,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1920,-1,0,2116,-15,0,0 +2013,8,8,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1830,-2,0,1935,-4,0,0 +2013,8,8,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-5,0,648,-5,0,0 +2013,9,23,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1620,61,1,1710,73,1,0 +2013,10,29,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,-4,0,1601,-2,0,0 +2013,5,1,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,935,-2,0,1030,-5,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,13,0,1740,1,0,0 +2013,8,12,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1100,-13,0,1524,-1,0,0 +2013,4,2,2,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1935,49,1,2157,53,1,0 +2013,10,16,3,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2349,10,0,704,-12,0,0 +2013,7,8,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,-11,0,2338,-12,0,0 +2013,9,7,6,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1120,21,1,1300,9,0,0 +2013,10,30,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1008,-6,0,0 +2013,10,27,7,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,945,1,0,1338,20,1,0 +2013,7,7,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,4,0,1115,10,0,0 +2013,5,18,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-4,0,1857,-4,0,0 +2013,9,16,1,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,4,0,559,-9,0,0 +2013,10,21,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-5,0,2059,-4,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1359,2,0,1636,-28,0,0 +2013,8,28,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,520,-2,0,607,-9,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,850,-2,0,1010,6,0,0 +2013,6,1,6,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1351,2,0,1604,-6,0,0 +2013,8,25,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1440,-10,0,1531,-6,0,0 +2013,4,14,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,920,3,0,1015,-10,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1555,39,1,1910,58,1,0 +2013,7,9,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,805,-12,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2045,18,1,2350,31,1,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,945,2,0,1235,0,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,625,-1,0,810,3,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2040,55,1,2230,59,1,0 +2013,8,7,3,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,4,0,1848,0,0,0 +2013,9,14,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2035,0,0,2150,5,0,0 +2013,5,10,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,28,1,1546,30,1,0 +2013,7,12,5,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,0,0,1410,-5,0,0 +2013,5,4,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,-5,0,1013,-5,0,0 +2013,10,18,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1345,-6,0,1640,-10,0,0 +2013,10,8,2,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2222,-7,0,611,-22,0,0 +2013,7,1,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-4,0,1415,5,0,0 +2013,8,12,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1245,17,1,1405,15,1,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1415,45,1,1905,20,1,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,639,-6,0,814,4,0,0 +2013,10,16,3,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1340,11,0,1635,0,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,10,0,2300,-3,0,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,17,1,1225,23,1,0 +2013,10,15,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1735,3,0,1905,-3,0,0 +2013,4,19,5,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1954,155,1,2157,166,1,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,1,0,1440,0,0,0 +2013,6,7,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,-2,0,1053,81,1,0 +2013,8,9,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,9,0,813,29,1,0 +2013,7,3,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,952,1,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2200,85,1,2335,58,1,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1915,-4,0,2130,-10,0,0 +2013,4,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1520,0,0,1714,-14,0,0 +2013,7,8,1,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,809,6,0,917,9,0,0 +2013,5,16,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1105,155,1,1359,142,1,0 +2013,4,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,949,-10,0,1318,-4,0,0 +2013,10,30,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1825,0,0,2223,5,0,0 +2013,7,6,6,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,10,0,1855,-7,0,0 +2013,5,23,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1900,-4,0,2005,-6,0,0 +2013,7,8,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,530,0,0,633,-6,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,94,1,1905,80,1,0 +2013,6,27,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1850,-3,0,2005,-10,0,0 +2013,6,25,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,7,0,1425,12,0,0 +2013,5,3,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-1,0,2015,-10,0,0 +2013,6,6,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1225,25,1,1349,13,0,0 +2013,8,4,7,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,14,0,1104,3,0,0 +2013,7,11,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,-2,0,820,-12,0,0 +2013,6,20,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1915,0,0,2244,10,0,0 +2013,8,20,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,600,-3,0,734,-29,0,0 +2013,8,22,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1310,10,0,1440,1,0,0 +2013,6,28,5,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,72,1,1722,61,1,0 +2013,5,22,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,600,-5,0,735,-6,0,0 +2013,6,25,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-5,0,1143,-6,0,0 +2013,7,31,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,0,0,855,-9,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,0,,1932,0,1,1 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,815,-5,0,935,-10,0,0 +2013,4,1,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1137,0,,1330,0,1,1 +2013,7,18,4,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,722,-2,0,1021,-11,0,0 +2013,5,26,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1212,-5,0,1407,-12,0,0 +2013,8,20,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1447,15,1,1600,18,1,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,835,11,0,1125,-5,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,-10,0,1115,-20,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,41,1,2210,53,1,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,-5,0,1420,8,0,0 +2013,7,9,2,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1800,32,1,2035,13,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1116,-8,0,1245,-34,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-3,0,912,-1,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1710,48,1,1830,54,1,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,4,0,949,3,0,0 +2013,10,31,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1335,88,1,1450,86,1,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1615,21,1,1824,39,1,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,2,0,1716,-8,0,0 +2013,5,17,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1825,15,1,2134,4,0,0 +2013,4,20,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1055,1,0,1205,-6,0,0 +2013,9,19,4,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1030,-6,0,1404,-17,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,2,0,1854,-4,0,0 +2013,10,23,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1610,-1,0,1705,-7,0,0 +2013,5,14,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-7,0,949,-22,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,925,-2,0,1155,0,0,0 +2013,10,5,6,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,-7,0,2055,-10,0,0 +2013,8,17,6,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-7,0,1130,-45,0,0 +2013,4,18,4,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1000,-5,0,1319,-16,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1955,30,1,2115,37,1,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1940,5,0,2200,3,0,0 +2013,8,21,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,8,0,2030,0,0,0 +2013,7,17,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,825,-2,0,1005,-6,0,0 +2013,10,16,3,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,810,5,0,1119,-24,0,0 +2013,8,11,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1602,-4,0,1700,-5,0,0 +2013,7,27,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,3,0,901,-10,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,28,1,1129,10,0,0 +2013,8,25,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,-8,0,1623,7,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,-3,0,2333,1,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,8,0,1220,2,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1930,-2,0,2054,-9,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,-2,0,1311,0,0,0 +2013,8,1,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-4,0,736,-7,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,-2,0,2357,11,0,0 +2013,10,13,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1610,-2,0,0 +2013,8,2,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,8,0,1320,9,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1910,-1,0,2050,-14,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1955,7,0,2130,-1,0,0 +2013,8,22,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,826,-14,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,845,1,0,1105,-6,0,0 +2013,4,5,5,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-12,0,1238,-13,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2020,11,0,2145,-3,0,0 +2013,9,21,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1620,9,0,1730,7,0,0 +2013,10,30,3,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2223,24,1,606,17,1,0 +2013,4,29,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2015,-3,0,2130,-5,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,644,-4,0,810,-3,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,715,-3,0,1123,-11,0,0 +2013,4,3,3,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,635,-1,0,856,-20,0,0 +2013,4,19,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2104,39,1,2210,31,1,0 +2013,6,7,5,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2055,24,1,2259,12,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2220,-3,0,2320,2,0,0 +2013,8,27,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,915,0,0,1025,2,0,0 +2013,6,27,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-5,0,1710,2,0,0 +2013,10,16,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,22,1,1600,-9,0,0 +2013,5,23,4,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1508,-9,0,1641,-11,0,0 +2013,10,14,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-8,0,1606,0,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,70,1,2255,76,1,0 +2013,5,25,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1616,-15,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,3,0,1150,25,1,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1346,1,0,1535,-10,0,0 +2013,9,12,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,2,0,1035,-9,0,0 +2013,9,6,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,18,1,1544,12,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2255,-3,0,42,-14,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-6,0,1725,-15,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1820,31,1,2325,-2,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1236,4,0,1835,25,1,0 +2013,6,13,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1433,-1,0,1558,-15,0,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,55,1,2240,62,1,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,15,1,1830,15,1,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1825,16,1,2050,8,0,0 +2013,4,4,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,0,0,1746,1,0,0 +2013,7,7,7,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,0,,900,0,1,1 +2013,4,20,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2330,-4,0,730,-47,0,0 +2013,5,3,5,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1700,120,1,1834,131,1,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,130,1,1145,151,1,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,68,1,1106,75,1,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-4,0,910,3,0,0 +2013,9,8,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1925,-5,0,2048,-8,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,945,2,0,1105,0,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,9,0,1045,-1,0,0 +2013,6,27,4,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,26,1,1529,17,1,0 +2013,7,7,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1116,3,0,0 +2013,5,26,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1415,-5,0,2020,-12,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1500,-4,0,1835,-11,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1030,-5,0,1302,4,0,0 +2013,10,30,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,7,0,1455,2,0,0 +2013,6,15,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,820,-3,0,1220,-2,0,0 +2013,8,21,3,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-3,0,750,-20,0,0 +2013,8,12,1,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1130,0,0,1305,-13,0,0 +2013,9,29,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,26,1,1645,24,1,0 +2013,8,4,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1505,-3,0,1555,3,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,14,0,1935,4,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,650,6,0,1145,3,0,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1405,149,1,1756,154,1,0 +2013,4,1,1,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1755,-4,0,2020,1,0,0 +2013,5,21,2,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1705,-5,0,1805,21,1,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,810,1,0,925,2,0,0 +2013,6,27,4,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,-7,0,1848,14,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-4,0,1339,-27,0,0 +2013,9,23,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,-1,0,2159,-12,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1200,1,0,1805,-7,0,0 +2013,8,24,6,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1122,-3,0,1403,-7,0,0 +2013,6,9,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1756,1,0,1912,-1,0,0 +2013,6,28,5,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,745,7,0,850,2,0,0 +2013,5,17,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1705,-8,0,1927,-1,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1800,12,0,2030,-2,0,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,8,0,1544,-2,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1536,56,1,1820,43,1,0 +2013,6,20,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,855,0,0,1055,0,0,0 +2013,4,16,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1253,-1,0,1613,3,0,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,0,0,900,-2,0,0 +2013,9,3,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,3,0,1435,0,0,0 +2013,5,19,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,700,5,0,815,0,0,0 +2013,7,22,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1843,83,1,2023,73,1,0 +2013,8,21,3,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1940,-5,0,2248,8,0,0 +2013,5,28,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1045,61,1,1201,56,1,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1020,0,,1315,0,1,1 +2013,5,10,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,19,1,2225,75,1,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1710,-4,0,2135,-6,0,0 +2013,10,14,1,9E,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1550,-1,0,1816,7,0,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1715,167,1,1927,184,1,0 +2013,8,18,7,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1830,9,0,2125,-3,0,0 +2013,8,27,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1950,15,1,2225,0,0,0 +2013,4,2,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1650,3,0,1725,-2,0,0 +2013,5,19,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1320,-2,0,1425,-10,0,0 +2013,8,5,1,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1921,-1,0,2110,0,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-1,0,1747,-20,0,0 +2013,10,2,3,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,830,-5,0,1314,-9,0,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1141,-3,0,1348,-18,0,0 +2013,6,1,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1025,-4,0,1204,-14,0,0 +2013,9,18,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1205,18,1,1310,10,0,0 +2013,8,18,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2025,9,0,2205,-3,0,0 +2013,8,4,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,630,-3,0,812,-21,0,0 +2013,4,13,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,-5,0,1115,-29,0,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1525,-2,0,1805,-16,0,0 +2013,9,12,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,0,,1915,0,1,1 +2013,5,29,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1740,-9,0,2025,-16,0,0 +2013,10,28,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-1,0,1436,-3,0,0 +2013,7,22,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1940,-3,0,2034,-7,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2110,30,1,2300,15,1,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,-1,0,2310,-21,0,0 +2013,5,14,2,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,-6,0,1810,6,0,0 +2013,5,6,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,800,-6,0,1032,0,0,0 +2013,7,16,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1415,0,0,1530,-8,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,65,1,1545,77,1,0 +2013,9,30,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-2,0,1334,-14,0,0 +2013,5,18,6,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,915,-2,0,1135,7,0,0 +2013,9,7,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-11,0,1315,-41,0,0 +2013,7,5,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,750,-10,0,855,-13,0,0 +2013,9,16,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,715,0,0,840,-12,0,0 +2013,8,1,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2022,9,0,12,3,0,0 +2013,4,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1855,16,1,2127,18,1,0 +2013,6,11,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,851,-5,0,1116,-19,0,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1220,12,0,1705,-2,0,0 +2013,9,22,7,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-3,0,1416,-10,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-2,0,1006,-2,0,0 +2013,10,18,5,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,66,1,1515,65,1,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1920,5,0,2235,6,0,0 +2013,8,16,5,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1000,0,0,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2225,17,1,703,-18,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,38,1,2335,36,1,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1500,5,0,1620,11,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,10,0,1934,40,1,0 +2013,6,12,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2014,1,0,2122,-16,0,0 +2013,5,8,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-6,0,937,-13,0,0 +2013,4,30,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,748,-7,0,1013,-27,0,0 +2013,4,3,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1030,-1,0,1235,-14,0,0 +2013,9,19,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1330,38,1,1530,42,1,0 +2013,9,30,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,-4,0,1457,-6,0,0 +2013,4,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,945,-3,0,1100,-3,0,0 +2013,8,22,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1125,37,1,1420,23,1,0 +2013,9,11,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1007,-5,0,1304,-10,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1920,-1,0,2114,-20,0,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1910,5,0,2238,-32,0,0 +2013,9,16,1,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,619,-4,0,734,-18,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,910,-3,0,1015,-3,0,0 +2013,5,5,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,4,0,747,2,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,940,4,0,1100,-3,0,0 +2013,6,2,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,131,1,1530,145,1,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1735,5,0,1851,16,1,0 +2013,7,29,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,-15,0,1912,-26,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-2,0,915,-14,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,2,0,1335,-2,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,625,0,0,900,1,0,0 +2013,8,18,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,17,1,1935,1,0,0 +2013,6,6,4,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-9,0,2033,8,0,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,0,0,2159,46,1,0 +2013,6,26,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,39,1,2017,64,1,0 +2013,4,23,2,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1020,49,1,1251,76,1,0 +2013,10,13,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1739,20,1,2029,12,0,0 +2013,10,31,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,605,-7,0,745,38,1,0 +2013,9,29,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1655,-1,0,1755,-5,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,845,-6,0,1000,-12,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,855,9,0,1010,4,0,0 +2013,8,2,5,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,700,-1,0,1311,-28,0,0 +2013,5,16,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,810,8,0,950,-1,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,12,0,2214,5,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1205,-2,0,1310,11,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1510,4,0,1643,-29,0,0 +2013,8,17,6,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1917,3,0,2255,-10,0,0 +2013,4,3,3,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,14,0,2041,7,0,0 +2013,10,28,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1554,-6,0,0 +2013,8,2,5,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-3,0,1826,-2,0,0 +2013,9,24,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-6,0,2057,-3,0,0 +2013,4,14,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,720,-1,0,825,-8,0,0 +2013,6,2,7,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-5,0,2000,-8,0,0 +2013,4,3,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,33,1,1955,25,1,0 +2013,7,25,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,55,1,649,82,1,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1940,-2,0,2153,-25,0,0 +2013,5,21,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1110,33,1,1235,13,0,0 +2013,9,2,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1752,63,1,1930,48,1,0 +2013,10,1,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1256,-11,0,1602,-32,0,0 +2013,9,6,5,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-8,0,928,-16,0,0 +2013,4,17,3,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,704,95,1,832,107,1,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-1,0,1125,-22,0,0 +2013,4,18,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,0,0,1250,-2,0,0 +2013,7,23,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2120,5,0,2240,3,0,0 +2013,6,23,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,9,0,1809,14,0,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1555,-2,0,17,-16,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2050,31,1,2355,6,0,0 +2013,7,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1215,0,0,1315,-5,0,0 +2013,9,5,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1900,3,0,2025,1,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1235,10,0,1550,17,1,0 +2013,10,14,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,805,-4,0,1102,-13,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1155,-4,0,1807,-5,0,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,635,-4,0,925,-13,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,904,-9,0,1213,-12,0,0 +2013,9,28,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-5,0,1055,-6,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2108,4,0,2212,-1,0,0 +2013,8,9,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,38,1,1630,35,1,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-8,0,2215,-16,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2009,-2,0,2132,-14,0,0 +2013,8,14,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,103,1,2105,93,1,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1155,0,0,1510,-13,0,0 +2013,7,25,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,7,0,1348,-6,0,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1750,157,1,2115,154,1,0 +2013,9,27,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,0,0,825,-1,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,822,-2,0,944,4,0,0 +2013,8,15,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,-7,0,2128,-31,0,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1340,-2,0,1709,18,1,0 +2013,6,24,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1357,11,0,1706,-1,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1910,-2,0,2015,-3,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,950,4,0,1115,6,0,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,1,0,1725,-5,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2211,-3,0,3,2,0,0 +2013,10,27,7,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,925,-13,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,-6,0,1724,-13,0,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,9,0,1600,0,0,0 +2013,8,16,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,-4,0,2105,2,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,189,1,2034,187,1,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1000,91,1,1125,108,1,0 +2013,7,1,1,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,37,1,1907,39,1,0 +2013,8,17,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,3,0,1305,8,0,0 +2013,5,29,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,840,-1,0,1053,-3,0,0 +2013,5,31,5,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1115,2,0,1315,-4,0,0 +2013,5,21,2,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1210,2,0,1455,3,0,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-1,0,1525,-1,0,0 +2013,8,4,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1445,17,1,1905,23,1,0 +2013,5,2,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1400,-4,0,1730,-25,0,0 +2013,7,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-1,0,810,-5,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1421,4,0,1820,-10,0,0 +2013,8,13,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-3,0,859,8,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1335,12,0,1520,8,0,0 +2013,4,1,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1546,1,0,1910,27,1,0 +2013,9,24,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-5,0,1309,-8,0,0 +2013,6,6,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1818,-7,0,2324,-33,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,3,0,1310,13,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,605,-2,0,920,-7,0,0 +2013,6,11,2,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-9,0,740,-24,0,0 +2013,5,11,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,705,-1,0,1036,-15,0,0 +2013,10,9,3,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1701,-12,0,1920,10,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,1,0,2150,7,0,0 +2013,7,17,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,180,1,2056,195,1,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1015,-8,0,1128,-7,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1537,3,0,1740,-8,0,0 +2013,6,7,5,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,31,1,2335,27,1,0 +2013,10,28,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-4,0,1940,-19,0,0 +2013,9,18,3,EV,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,710,-6,0,846,-16,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,5,0,1725,-12,0,0 +2013,9,4,3,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-7,0,1621,-20,0,0 +2013,4,1,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1705,-6,0,1945,-2,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2055,128,1,2355,162,1,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1126,-2,0,1411,-36,0,0 +2013,10,13,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1015,12,0,1225,17,1,0 +2013,6,25,2,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1439,-2,0,1701,-20,0,0 +2013,7,29,1,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,955,32,1,1600,12,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,34,1,1255,28,1,0 +2013,7,5,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1800,-8,0,1905,-19,0,0 +2013,5,5,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,839,-11,0,0 +2013,6,25,2,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,-6,0,1010,-15,0,0 +2013,4,20,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-8,0,1949,-24,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1440,11,0,1635,-9,0,0 +2013,6,7,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-3,0,1448,-13,0,0 +2013,9,1,7,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,0,0,2100,-20,0,0 +2013,4,13,6,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1505,-8,0,2345,-7,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1540,-7,0,1616,-1,0,0 +2013,4,8,1,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1620,-4,0,1916,-8,0,0 +2013,9,29,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,650,-2,0,920,6,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,6,0,1030,9,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,-1,0,955,-18,0,0 +2013,10,12,6,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1835,-7,0,1955,-35,0,0 +2013,5,19,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1633,0,0,1926,3,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,745,-2,0,915,24,1,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1155,22,1,1410,20,1,0 +2013,9,10,2,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1436,30,1,1623,30,1,0 +2013,10,17,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,524,1,1355,510,1,0 +2013,4,19,5,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,925,31,1,1129,24,1,0 +2013,4,8,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-6,0,1759,-8,0,0 +2013,8,8,4,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1111,49,1,1847,52,1,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1735,0,0,2015,-4,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1435,283,1,2140,274,1,0 +2013,4,13,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-8,0,632,-16,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,-5,0,914,-12,0,0 +2013,6,15,6,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1500,0,0,1609,-8,0,0 +2013,7,6,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,5,0,1315,8,0,0 +2013,5,11,6,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-8,0,1435,-7,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,-2,0,935,7,0,0 +2013,6,9,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-2,0,751,-4,0,0 +2013,8,6,2,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,12,0,1830,10,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,905,0,0,1030,-7,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1927,2,0,2318,-18,0,0 +2013,8,28,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,857,-11,0,0 +2013,7,24,3,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,840,27,1,1205,26,1,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1417,-5,0,1443,-7,0,0 +2013,5,13,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-6,0,1019,-23,0,0 +2013,9,8,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1630,6,0,1805,-5,0,0 +2013,6,14,5,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,2020,6,0,2110,4,0,0 +2013,8,17,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,715,-7,0,1003,-24,0,0 +2013,8,4,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-3,0,905,-24,0,0 +2013,10,3,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-11,0,837,-12,0,0 +2013,6,6,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,32,1,1545,35,1,0 +2013,5,28,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1730,-1,0,2014,-2,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1305,2,0,1640,73,1,0 +2013,7,19,5,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1740,29,1,2015,-8,0,0 +2013,10,9,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1119,-2,0,1250,4,0,0 +2013,10,13,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1235,-4,0,1345,-7,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1105,-2,0,1325,-6,0,0 +2013,10,11,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1840,0,0,1912,17,1,0 +2013,4,8,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,2050,0,,10,0,1,1 +2013,7,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1251,8,0,1629,1,0,0 +2013,7,17,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1615,5,0,1755,6,0,0 +2013,4,18,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,700,0,,721,0,1,1 +2013,9,5,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-4,0,1500,-16,0,0 +2013,6,14,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1835,12,0,1945,6,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,910,-2,0,1035,-13,0,0 +2013,10,20,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1425,-3,0,1530,-3,0,0 +2013,8,14,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1905,-5,0,1915,-9,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1215,-5,0,1324,-10,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1213,-2,0,1434,-7,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1800,-1,0,1936,-21,0,0 +2013,5,10,5,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,846,-5,0,1035,3,0,0 +2013,8,7,3,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,13,0,1600,19,1,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,7,0,1151,-1,0,0 +2013,5,1,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1035,-5,0,1144,-6,0,0 +2013,6,2,7,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,830,3,0,1110,-2,0,0 +2013,5,26,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,700,2,0,940,-38,0,0 +2013,8,15,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1605,-4,0,1640,-17,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1355,5,0,1715,-9,0,0 +2013,4,15,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2115,0,0,2356,-11,0,0 +2013,4,2,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,-6,0,2140,1,0,0 +2013,8,26,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-1,0,1645,-1,0,0 +2013,6,27,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-8,0,913,-8,0,0 +2013,6,24,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,55,1,1255,52,1,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1500,-1,0,1820,-9,0,0 +2013,7,14,7,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1930,-1,0,2142,-10,0,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-5,0,1834,-5,0,0 +2013,9,15,7,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2145,17,1,610,-2,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,940,-6,0,1327,-7,0,0 +2013,7,21,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-4,0,2359,4,0,0 +2013,7,19,5,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,810,-8,0,950,-10,0,0 +2013,6,26,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,47,1,2105,30,1,0 +2013,6,22,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,8,0,1715,-14,0,0 +2013,6,10,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,925,-6,0,1110,-15,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1855,18,1,2146,-20,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1132,101,1,1615,106,1,0 +2013,5,23,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1059,-1,0,1340,12,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1615,-2,0,2135,-7,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-11,0,941,-13,0,0 +2013,10,9,3,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1010,-2,0,1225,0,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1754,1,0,1907,21,1,0 +2013,5,29,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1859,14,0,2210,5,0,0 +2013,6,9,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2025,92,1,2130,83,1,0 +2013,6,20,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,-1,0,1515,-2,0,0 +2013,9,16,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1135,-3,0,1150,8,0,0 +2013,9,5,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,930,-17,0,0 +2013,9,24,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,-9,0,1521,-12,0,0 +2013,4,30,2,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-2,0,1955,-29,0,0 +2013,5,19,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,7,0,1042,10,0,0 +2013,5,19,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,9,0,1821,10,0,0 +2013,8,1,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,1,0,1015,1,0,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1135,19,1,1435,-4,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,3,0,917,6,0,0 +2013,10,12,6,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,704,3,0,822,17,1,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1625,64,1,1803,61,1,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2210,17,1,2337,3,0,0 +2013,5,15,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1414,-4,0,1652,-8,0,0 +2013,8,12,1,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1230,108,1,1401,108,1,0 +2013,10,9,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1253,2,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1525,7,0,1625,3,0,0 +2013,4,21,7,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-8,0,920,-17,0,0 +2013,5,6,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,905,24,1,1201,8,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,-8,0,1134,-11,0,0 +2013,7,26,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,19,1,2259,38,1,0 +2013,9,29,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,20,1,1550,10,0,0 +2013,6,22,6,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1410,-3,0,1631,-10,0,0 +2013,9,8,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,0,0,2035,8,0,0 +2013,6,30,7,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,1,0,915,-15,0,0 +2013,10,31,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,719,-16,0,0 +2013,7,17,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,0,0,1623,6,0,0 +2013,4,29,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1010,-2,0,1605,1,0,0 +2013,6,28,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,720,-4,0,926,-2,0,0 +2013,8,21,3,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,-1,0,2035,-17,0,0 +2013,6,1,6,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1200,-1,0,1428,-14,0,0 +2013,8,25,7,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1106,-5,0,1331,-26,0,0 +2013,10,14,1,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1251,15,1,1429,8,0,0 +2013,5,3,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,7,0,1635,-4,0,0 +2013,4,22,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2230,-6,0,607,-13,0,0 +2013,8,9,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,830,73,1,1028,65,1,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1837,-3,0,1950,-10,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1800,-7,0,2010,-14,0,0 +2013,4,18,4,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,78,1,955,145,1,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2020,67,1,2245,71,1,0 +2013,9,21,6,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,-5,0,1029,-6,0,0 +2013,10,27,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,810,-2,0,910,-6,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1720,129,1,2045,127,1,0 +2013,10,25,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1710,-7,0,2200,-12,0,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,13,0,1705,4,0,0 +2013,5,15,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,645,-7,0,844,-5,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,832,-8,0,1032,-11,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,830,-2,0,1700,18,1,0 +2013,8,28,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,-11,0,1359,-13,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,735,-1,0,940,6,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,12,0,830,-8,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,4,0,1745,-18,0,0 +2013,5,14,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1940,-3,0,2247,-16,0,0 +2013,6,28,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1216,-5,0,1424,-3,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,8,0,905,2,0,0 +2013,8,3,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-3,0,821,-16,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,2,0,1255,-13,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,625,-2,0,1025,-2,0,0 +2013,7,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1730,-2,0,1922,-6,0,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1200,9,0,1750,6,0,0 +2013,9,24,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-7,0,1650,0,0,0 +2013,4,30,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1958,-6,0,2240,4,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1245,30,1,1415,26,1,0 +2013,8,15,4,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,-2,0,2033,-14,0,0 +2013,4,24,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2051,-6,0,2124,-6,0,0 +2013,5,22,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1021,16,1,1304,21,1,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1425,-1,0,1510,4,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2030,-1,0,2155,-5,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,-8,0,816,-27,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,900,-4,0,1025,-11,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,13,0,1130,6,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1730,10,0,1925,0,0,0 +2013,10,27,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,16,1,2252,2,0,0 +2013,8,28,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,740,-5,0,855,-8,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,-3,0,1922,-25,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1750,0,0,1905,1,0,0 +2013,7,21,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,824,-10,0,0 +2013,7,7,7,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1520,-8,0,1636,61,1,0 +2013,5,25,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1205,-2,0,1730,-6,0,0 +2013,4,12,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1312,-8,0,1424,-13,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2055,1,0,2327,-18,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,955,4,0,1119,-3,0,0 +2013,6,15,6,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1410,-3,0,1728,-19,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,58,1,1920,56,1,0 +2013,7,12,5,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-4,0,914,-8,0,0 +2013,7,21,7,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,835,83,1,1000,83,1,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,4,0,1130,4,0,0 +2013,7,30,2,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1914,-7,0,2059,-23,0,0 +2013,6,25,2,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1039,-7,0,1119,-1,0,0 +2013,6,12,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1600,8,0,1632,19,1,0 +2013,6,4,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-6,0,1033,-14,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1900,16,1,35,-5,0,0 +2013,5,4,6,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1409,-5,0,1525,-20,0,0 +2013,10,11,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,703,-1,0,933,1,0,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2005,-1,0,2225,-1,0,0 +2013,8,15,4,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,915,-4,0,1047,-14,0,0 +2013,8,13,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-6,0,2013,3,0,0 +2013,9,16,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1119,1,0,0 +2013,10,30,3,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1010,-11,0,1158,-22,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,-2,0,1320,5,0,0 +2013,4,1,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1730,0,,1858,0,1,1 +2013,8,19,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1655,-8,0,1926,-2,0,0 +2013,6,3,1,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,363,1,720,348,1,0 +2013,9,15,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,3,0,1408,14,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,-7,0,2028,-7,0,0 +2013,10,26,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1430,4,0,1650,17,1,0 +2013,10,30,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-5,0,2115,-4,0,0 +2013,7,2,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2105,0,,2230,0,1,1 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1348,0,0,1505,-23,0,0 +2013,6,8,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1215,2,0,1430,-11,0,0 +2013,5,29,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1951,-1,0,2101,-5,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1004,29,1,1240,30,1,0 +2013,9,2,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1910,24,1,2045,13,0,0 +2013,6,18,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2109,34,1,2221,19,1,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1745,-4,0,1941,-6,0,0 +2013,9,4,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,659,-7,0,742,-9,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,42,1,920,46,1,0 +2013,10,14,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1840,5,0,2025,6,0,0 +2013,4,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2018,4,0,2334,-15,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,41,1,2211,51,1,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,8,0,2323,-23,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1426,69,1,1530,63,1,0 +2013,6,1,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1152,-2,0,1308,-5,0,0 +2013,9,8,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-3,0,1925,-10,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,40,1,1326,36,1,0 +2013,4,26,5,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1942,1,0,29,-1,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,78,1,930,60,1,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,0,,1750,0,1,1 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-3,0,1613,-1,0,0 +2013,6,24,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1541,27,1,1654,28,1,0 +2013,10,9,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1320,30,1,1505,21,1,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1305,15,1,1442,18,1,0 +2013,7,21,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1940,-6,0,2034,-8,0,0 +2013,10,14,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,855,8,0,1000,11,0,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,16,1,2215,10,0,0 +2013,10,3,4,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-6,0,2143,-7,0,0 +2013,7,5,5,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1133,-6,0,1300,-14,0,0 +2013,8,25,7,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,1,0,1845,1,0,0 +2013,7,22,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-8,0,627,-14,0,0 +2013,7,16,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,137,1,1325,140,1,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,23,1,2105,21,1,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,644,-5,0,855,-14,0,0 +2013,4,20,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-9,0,1324,-10,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-1,0,1723,-19,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1015,1,0,1315,2,0,0 +2013,7,11,4,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,-3,0,1415,-9,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1920,0,,2225,0,1,1 +2013,9,5,4,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,837,-17,0,0 +2013,7,14,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,124,1,930,126,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,750,-3,0,1010,-4,0,0 +2013,4,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,137,1,830,156,1,0 +2013,8,9,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1800,-8,0,1848,-5,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1916,38,1,2214,44,1,0 +2013,7,16,2,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,40,1,805,47,1,0 +2013,8,28,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1755,-4,0,1840,-6,0,0 +2013,6,13,4,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1740,47,1,2020,32,1,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1450,-1,0,1600,-18,0,0 +2013,8,22,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1437,-4,0,1658,4,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-2,0,1615,2,0,0 +2013,9,9,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,845,-11,0,1045,-31,0,0 +2013,10,2,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,-3,0,1101,-37,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-9,0,1508,-11,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,-3,0,1535,-7,0,0 +2013,4,15,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,610,-5,0,620,-8,0,0 +2013,7,16,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,-8,0,1028,-17,0,0 +2013,7,24,3,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-10,0,1829,-24,0,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,940,10,0,1030,11,0,0 +2013,10,6,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,753,-4,0,1012,-24,0,0 +2013,7,27,6,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,7,0,920,-13,0,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1745,15,1,1920,26,1,0 +2013,6,13,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,1,0,1430,-5,0,0 +2013,4,7,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,904,-14,0,0 +2013,6,28,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,4,0,1550,35,1,0 +2013,7,18,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1612,16,1,1810,-11,0,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,8,0,1344,9,0,0 +2013,8,31,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,7,0,1420,-2,0,0 +2013,8,23,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1405,-5,0,1547,-9,0,0 +2013,7,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1918,133,1,2050,129,1,0 +2013,7,16,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,210,1,1240,211,1,0 +2013,4,8,1,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,835,-4,0,1055,-12,0,0 +2013,4,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,942,0,0,1551,0,0,0 +2013,4,8,1,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1245,2,0,1345,-17,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,2,0,1250,-13,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,852,2,0,1015,12,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1611,41,1,1933,46,1,0 +2013,5,17,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,54,1,1022,39,1,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2045,-3,0,2155,-6,0,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,737,9,0,1046,6,0,0 +2013,5,6,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1819,0,0,1904,-12,0,0 +2013,7,24,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1505,-2,0,1635,-10,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,852,-1,0,1054,-29,0,0 +2013,9,17,2,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-12,0,2035,-21,0,0 +2013,6,28,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,630,-5,0,735,2,0,0 +2013,9,2,1,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,827,-5,0,900,-9,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1825,14,0,2131,62,1,0 +2013,9,10,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2339,0,0,805,-12,0,0 +2013,6,10,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,903,0,0,1035,-1,0,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-5,0,1445,-16,0,0 +2013,6,30,7,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,727,0,,831,0,1,1 +2013,9,18,3,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-7,0,2056,-15,0,0 +2013,4,27,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,2,0,1015,7,0,0 +2013,5,18,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,635,-5,0,805,-21,0,0 +2013,6,4,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,831,-19,0,0 +2013,9,9,1,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,644,1,0,1507,-3,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,1050,-2,0,1755,-9,0,0 +2013,4,11,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,755,3,0,1007,12,0,0 +2013,6,23,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1340,-2,0,1428,-2,0,0 +2013,4,13,6,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-6,0,825,-18,0,0 +2013,8,13,2,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,615,0,0,1500,1,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1559,10,0,1740,-7,0,0 +2013,8,18,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1303,-6,0,1425,0,0,0 +2013,10,29,2,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1530,-1,0,1700,11,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1330,-4,0,1455,-13,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2130,-1,0,2338,-20,0,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2040,-2,0,2305,-7,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,38,1,1750,28,1,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2240,11,0,9,14,0,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-10,0,937,-4,0,0 +2013,9,15,7,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,810,-1,0,1120,-7,0,0 +2013,5,4,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1246,-1,0,1530,-12,0,0 +2013,6,25,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,505,-4,0,751,-16,0,0 +2013,6,4,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-2,0,2040,-17,0,0 +2013,8,29,4,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,3,0,1955,-11,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,79,1,1110,84,1,0 +2013,4,14,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2045,11,0,2110,18,1,0 +2013,8,13,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,-2,0,509,-16,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1315,-3,0,1517,-11,0,0 +2013,8,31,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1230,-9,0,1548,-28,0,0 +2013,4,17,3,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-5,0,545,-19,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,800,9,0,910,23,1,0 +2013,6,18,2,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1112,-5,0,1520,15,1,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1234,28,1,1830,29,1,0 +2013,4,15,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2240,5,0,715,-36,0,0 +2013,9,19,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1837,82,1,2057,82,1,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1220,-8,0,1509,-15,0,0 +2013,9,7,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-12,0,1205,-16,0,0 +2013,9,27,5,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1900,-1,0,2131,-13,0,0 +2013,9,10,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1955,12,0,2209,19,1,0 +2013,6,18,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1340,80,1,1405,76,1,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1445,-2,0,1610,-13,0,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,31,1,2320,33,1,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1341,-3,0,1528,-19,0,0 +2013,7,5,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-6,0,1535,-14,0,0 +2013,5,30,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1052,-4,0,1410,-4,0,0 +2013,9,23,1,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1645,6,0,1820,-13,0,0 +2013,8,15,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1130,-2,0,1725,-15,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2040,6,0,2125,3,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1550,3,0,1710,-7,0,0 +2013,10,20,7,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,-2,0,2110,-8,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,42,1,2005,35,1,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,32,1,1227,28,1,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1110,-14,0,0 +2013,5,14,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,902,2,0,1100,-5,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1814,0,0,2043,-22,0,0 +2013,6,19,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,0,0,800,0,0,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,6,0,1814,-3,0,0 +2013,8,18,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-3,0,1005,-11,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1735,2,0,1915,0,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,725,11,0,1050,6,0,0 +2013,10,5,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1535,-3,0,1840,-13,0,0 +2013,6,30,7,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-3,0,1009,-12,0,0 +2013,8,13,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,0,,642,0,1,1 +2013,4,21,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1825,-2,0,2115,3,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,2002,22,1,2203,6,0,0 +2013,8,7,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1211,25,1,1528,28,1,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,-5,0,1107,-4,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-8,0,803,-1,0,0 +2013,7,29,1,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,920,134,1,1133,151,1,0 +2013,5,2,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,-5,0,1207,12,0,0 +2013,10,7,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,1,0,1805,3,0,0 +2013,5,24,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,40,1,2315,81,1,0 +2013,7,20,6,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1430,3,0,1600,16,1,0 +2013,7,24,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,3,0,1600,-5,0,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,743,14,0,1103,18,1,0 +2013,6,25,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-5,0,1439,15,1,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1803,256,1,1922,270,1,0 +2013,10,3,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1159,33,1,1309,26,1,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,96,1,2159,98,1,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1244,17,1,1450,26,1,0 +2013,7,16,2,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,60,1,2027,54,1,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1726,104,1,1932,100,1,0 +2013,6,6,4,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,730,-3,0,835,-1,0,0 +2013,8,27,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1603,28,1,1658,30,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1627,43,1,1822,18,1,0 +2013,8,2,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,5,0,1405,-3,0,0 +2013,9,11,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1955,-4,0,2115,-11,0,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,649,18,1,810,12,0,0 +2013,10,20,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,1000,1,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,56,1,1735,40,1,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-5,0,2153,-8,0,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,-2,0,1703,-19,0,0 +2013,6,16,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1320,-3,0,2155,-31,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1635,-2,0,1815,-24,0,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1141,0,0,1255,-7,0,0 +2013,9,8,7,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1703,3,0,1928,10,0,0 +2013,6,22,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,812,-3,0,941,-2,0,0 +2013,4,24,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1515,-7,0,1646,-9,0,0 +2013,10,20,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,9,0,1830,8,0,0 +2013,8,10,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1930,21,1,2230,4,0,0 +2013,9,23,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1317,-1,0,1440,-3,0,0 +2013,8,2,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1825,25,1,2005,53,1,0 +2013,5,27,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,15,1,1906,10,0,0 +2013,4,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,-2,0,1025,7,0,0 +2013,10,29,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,905,-2,0,1505,-3,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,-1,0,1740,-5,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1755,3,0,1905,3,0,0 +2013,4,7,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1545,1,0,1827,-23,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2255,12,0,2355,5,0,0 +2013,9,6,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-9,0,1939,-10,0,0 +2013,4,7,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-3,0,1720,-8,0,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,835,2,0,920,8,0,0 +2013,5,26,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1810,-2,0,1945,-18,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,13,0,1445,18,1,0 +2013,5,31,5,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2049,-1,0,2259,13,0,0 +2013,10,26,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,0,0,1730,-11,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,915,-2,0,1250,-6,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,20,1,1300,7,0,0 +2013,8,30,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,6,0,1830,15,1,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1615,13,0,1820,-1,0,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,820,0,0,1130,-9,0,0 +2013,6,17,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,1172,1,2125,1175,1,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1735,-3,0,1927,-12,0,0 +2013,4,16,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1836,-9,0,2004,-23,0,0 +2013,10,16,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,-6,0,1600,-12,0,0 +2013,9,15,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1314,-5,0,1436,-9,0,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1820,41,1,1910,36,1,0 +2013,7,17,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,642,-5,0,724,-4,0,0 +2013,5,9,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,7,0,1342,-8,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-3,0,1251,1,0,0 +2013,4,24,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,25,1,1719,40,1,0 +2013,6,11,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1245,2,0,1420,-11,0,0 +2013,10,18,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1735,47,1,2057,44,1,0 +2013,9,22,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-4,0,1036,-8,0,0 +2013,6,12,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1056,1,0,1240,-8,0,0 +2013,9,11,3,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,640,-2,0,800,-12,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1742,-9,0,2025,-11,0,0 +2013,6,13,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-1,0,814,-6,0,0 +2013,9,27,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1702,-13,0,2059,12,0,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1228,2,0,1512,-17,0,0 +2013,8,2,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,0,0,1117,-7,0,0 +2013,8,6,2,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1932,2,0,815,4,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,6,0,1530,-1,0,0 +2013,4,27,6,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,835,19,1,1050,-14,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1745,0,0,2250,-2,0,0 +2013,6,12,3,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1754,14,0,2117,21,1,0 +2013,10,22,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1800,-1,0,1920,5,0,0 +2013,4,15,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1901,80,1,2056,98,1,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,825,-2,0,1148,-12,0,0 +2013,6,16,7,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-7,0,1305,-32,0,0 +2013,9,6,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,730,-2,0,900,-10,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1510,43,1,1630,38,1,0 +2013,6,29,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-5,0,1340,-10,0,0 +2013,4,9,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1330,-2,0,2145,13,0,0 +2013,8,6,2,EV,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-4,0,1322,13,0,0 +2013,6,25,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-4,0,2020,1,0,0 +2013,8,24,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-3,0,1210,-2,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-3,0,2030,-4,0,0 +2013,4,20,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,956,12,0,1236,6,0,0 +2013,4,8,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,35,1,2110,21,1,0 +2013,8,5,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,550,2,0,715,-2,0,0 +2013,6,22,6,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1313,-6,0,1441,6,0,0 +2013,9,16,1,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1811,1,0,2027,-19,0,0 +2013,10,6,7,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1045,-10,0,1609,4,0,0 +2013,8,5,1,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,0,0,1039,0,0,0 +2013,9,17,2,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,10,0,1545,8,0,0 +2013,4,7,7,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1655,-1,0,1825,-1,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1855,18,1,2215,8,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1340,-2,0,1710,-10,0,0 +2013,7,4,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1210,-4,0,1309,-6,0,0 +2013,4,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1604,5,0,1725,12,0,0 +2013,9,24,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1731,-3,0,1917,-13,0,0 +2013,5,14,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-8,0,1250,-24,0,0 +2013,9,24,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1050,0,0,1140,-5,0,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-5,0,951,-7,0,0 +2013,5,29,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1348,29,1,1619,16,1,0 +2013,7,3,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1524,-6,0,1637,-26,0,0 +2013,10,17,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1615,-6,0,2350,-29,0,0 +2013,10,6,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,715,1,0,905,-20,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1050,-11,0,1459,-17,0,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1850,33,1,2130,14,0,0 +2013,8,17,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1640,-9,0,1755,-23,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1355,25,1,1712,-2,0,0 +2013,10,31,4,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1930,1,0,2233,-17,0,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,720,0,0,850,-7,0,0 +2013,8,23,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1705,3,0,1940,19,1,0 +2013,10,16,3,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,832,-4,0,1000,-10,0,0 +2013,9,15,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-6,0,1910,-19,0,0 +2013,4,22,1,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,740,24,1,825,20,1,0 +2013,10,28,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1555,6,0,1918,-2,0,0 +2013,4,12,5,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1723,101,1,2000,80,1,0 +2013,9,6,5,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,739,-5,0,953,-6,0,0 +2013,5,20,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1510,-1,0,1835,-21,0,0 +2013,8,26,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1920,-2,0,2045,-3,0,0 +2013,5,3,5,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1145,12,0,1250,12,0,0 +2013,5,31,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,707,-9,0,819,-19,0,0 +2013,10,10,4,OO,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-5,0,1330,-5,0,0 +2013,4,24,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1415,37,1,1950,11,0,0 +2013,6,16,7,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,752,56,1,924,48,1,0 +2013,6,29,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1905,8,0,2219,-5,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1955,-2,0,2320,-27,0,0 +2013,7,29,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-2,0,1501,10,0,0 +2013,5,17,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,-5,0,1442,-16,0,0 +2013,5,31,5,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1220,-7,0,1700,6,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1245,3,0,1450,-5,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1735,103,1,1840,107,1,0 +2013,5,1,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1350,31,1,1635,19,1,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1340,12,0,1800,14,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,6,0,2030,5,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,0,0,1054,15,1,0 +2013,10,13,7,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1646,3,0,2048,-8,0,0 +2013,9,15,7,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1755,91,1,2335,71,1,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2206,-5,0,2343,3,0,0 +2013,7,21,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,933,6,0,1215,33,1,0 +2013,5,10,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2020,31,1,2125,22,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,0,0,1400,-8,0,0 +2013,7,6,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,4,0,2035,-19,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1845,-10,0,2305,-20,0,0 +2013,10,1,2,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,802,-9,0,1128,-11,0,0 +2013,4,3,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1800,-2,0,1833,-25,0,0 +2013,9,15,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1745,4,0,2007,31,1,0 +2013,5,21,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,8,0,1105,19,1,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,21,1,1925,3,0,0 +2013,4,28,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,2059,82,1,2344,64,1,0 +2013,6,20,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1725,0,0,1843,-5,0,0 +2013,5,11,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1119,8,0,1308,10,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1935,44,1,2247,23,1,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,750,-4,0,1025,-1,0,0 +2013,8,27,2,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,-6,0,2120,-22,0,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,600,-1,0,705,-9,0,0 +2013,6,7,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,36,1,2113,71,1,0 +2013,6,29,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,79,1,2056,128,1,0 +2013,7,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1729,-1,0,1750,-14,0,0 +2013,7,24,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,2,0,1555,-4,0,0 +2013,6,25,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1730,8,0,1825,3,0,0 +2013,7,22,1,EV,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-2,0,1530,-11,0,0 +2013,7,22,1,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,801,-5,0,1036,-23,0,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,16,1,1350,18,1,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,0,0,930,-1,0,0 +2013,10,22,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,-2,0,1045,-13,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1608,-8,0,0 +2013,7,3,3,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1542,3,0,1803,-1,0,0 +2013,4,13,6,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1430,23,1,1600,23,1,0 +2013,8,7,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,17,1,2254,25,1,0 +2013,10,19,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1849,36,1,2030,13,0,0 +2013,6,30,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1336,48,1,1540,52,1,0 +2013,8,4,7,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1925,8,0,2221,-3,0,0 +2013,9,24,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,-3,0,1015,0,0,0 +2013,6,2,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,0,0,1625,56,1,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,905,-3,0,1140,-9,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1026,5,0,1040,0,0,0 +2013,10,16,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,2,0,1143,0,0,0 +2013,5,22,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,900,-3,0,1219,3,0,0 +2013,6,23,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-4,0,2157,-3,0,0 +2013,7,9,2,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1502,15,1,1655,-5,0,0 +2013,4,17,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,645,-4,0,805,-5,0,0 +2013,4,12,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1305,6,0,1620,2,0,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1720,0,,2010,0,1,1 +2013,10,4,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1835,18,1,2015,18,1,0 +2013,10,14,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1430,-14,0,1605,-26,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,34,1,1118,26,1,0 +2013,8,20,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,828,-4,0,1109,-7,0,0 +2013,10,6,7,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,5,0,1515,-3,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,4,0,1540,1,0,0 +2013,5,8,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,-6,0,1638,-9,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,28,1,1355,29,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-1,0,1420,-14,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,-5,0,1426,-31,0,0 +2013,4,7,7,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,657,-2,0,1223,-16,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2115,-1,0,2350,-15,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-7,0,1627,3,0,0 +2013,10,7,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2140,-11,0,2346,-17,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1850,18,1,1945,28,1,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1630,14,0,1740,11,0,0 +2013,7,13,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2010,-5,0,2115,-10,0,0 +2013,6,8,6,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,-2,0,2315,-15,0,0 +2013,4,15,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1853,0,0,0 +2013,9,2,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-5,0,956,4,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2020,0,,2130,0,1,1 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1805,-5,0,2125,-22,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,715,0,0,1045,-2,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1725,-1,0,1850,-5,0,0 +2013,5,7,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1235,2,0,1330,0,0,0 +2013,6,7,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1512,-6,0,2054,-7,0,0 +2013,7,8,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,3,0,1647,52,1,0 +2013,6,20,4,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,38,1,1600,29,1,0 +2013,5,5,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,935,-1,0,1035,-1,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,-5,0,1630,-15,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1440,-4,0,1538,-27,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1430,10,0,1742,15,1,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,750,10,0,1015,15,1,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,548,1,0,857,-11,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,1,0,1230,13,0,0 +2013,8,30,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1215,-4,0,1335,-7,0,0 +2013,6,24,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,9,0,1118,-6,0,0 +2013,10,3,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-8,0,1928,-12,0,0 +2013,7,5,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-13,0,1755,-12,0,0 +2013,6,2,7,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,63,1,2140,57,1,0 +2013,7,23,2,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-6,0,2035,-14,0,0 +2013,6,1,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1100,-1,0,1105,-6,0,0 +2013,10,4,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1749,-4,0,2004,3,0,0 +2013,4,26,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,725,0,0,1114,-9,0,0 +2013,8,29,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,1253,-13,0,0 +2013,8,19,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,-9,0,1743,-9,0,0 +2013,9,9,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1735,-8,0,1850,-13,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1505,26,1,1650,26,1,0 +2013,7,21,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1501,7,0,1830,-7,0,0 +2013,4,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1501,-8,0,1557,-1,0,0 +2013,10,8,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1115,-4,0,1634,-8,0,0 +2013,5,10,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1500,-3,0,2055,36,1,0 +2013,10,21,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-7,0,1445,-13,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-4,0,1802,-8,0,0 +2013,4,18,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,26,1,1830,9,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,953,-4,0,1209,-1,0,0 +2013,6,25,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,48,1,2115,40,1,0 +2013,8,21,3,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-3,0,626,-4,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,820,6,0,1335,-4,0,0 +2013,7,7,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2005,59,1,2228,63,1,0 +2013,5,19,7,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1515,214,1,1750,204,1,0 +2013,9,16,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,715,0,0,1432,2,0,0 +2013,6,5,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,-4,0,945,-16,0,0 +2013,6,29,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1927,0,0,2154,0,0,0 +2013,9,9,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,6,0,1955,17,1,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1440,15,1,1540,23,1,0 +2013,6,30,7,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,850,-3,0,1105,-13,0,0 +2013,5,10,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,0,0,2110,10,0,0 +2013,6,1,6,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1121,0,0,1254,-4,0,0 +2013,8,16,5,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,31,1,827,48,1,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1500,2,0,1642,16,1,0 +2013,8,4,7,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1830,37,1,1950,35,1,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,720,2,0,1157,24,1,0 +2013,8,11,7,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,636,-6,0,822,-6,0,0 +2013,6,29,6,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,1,0,1210,6,0,0 +2013,8,8,4,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1748,-6,0,2114,11,0,0 +2013,4,26,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1925,257,1,2105,232,1,0 +2013,8,11,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-13,0,906,-31,0,0 +2013,5,27,1,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,-1,0,1600,-4,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1600,-7,0,1713,-16,0,0 +2013,7,11,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,30,-1,0,814,8,0,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-4,0,1740,-18,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1245,-5,0,1413,-17,0,0 +2013,5,22,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,840,11,0,1055,31,1,0 +2013,5,9,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1320,-3,0,1614,0,0,0 +2013,8,5,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-8,0,1556,-13,0,0 +2013,6,18,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,68,1,650,67,1,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,848,-10,0,915,-10,0,0 +2013,5,10,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1835,0,0,2126,-16,0,0 +2013,9,2,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,610,-4,0,655,-15,0,0 +2013,6,19,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,-3,0,1055,-15,0,0 +2013,8,9,5,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,225,1,10,221,1,0 +2013,7,25,4,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1200,430,1,1932,410,1,0 +2013,10,4,5,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,635,-7,0,800,-16,0,0 +2013,5,21,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2005,14,0,2050,12,0,0 +2013,8,5,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,11,0,1550,-11,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,40,1,1717,42,1,0 +2013,8,19,1,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1740,185,1,1900,184,1,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1820,15,1,2105,6,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,0,0,910,21,1,0 +2013,5,2,4,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1535,-5,0,1817,-2,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1115,-1,0,1320,-1,0,0 +2013,6,14,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,-5,0,1155,-13,0,0 +2013,10,25,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-3,0,1408,-9,0,0 +2013,6,2,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1855,53,1,2200,40,1,0 +2013,5,16,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-12,0,645,-14,0,0 +2013,6,5,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-10,0,1215,-6,0,0 +2013,5,2,4,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1056,-6,0,1300,-2,0,0 +2013,10,9,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1140,-4,0,1303,22,1,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1140,88,1,1322,83,1,0 +2013,9,13,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-1,0,1155,-3,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,-7,0,1055,-7,0,0 +2013,7,18,4,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-12,0,1634,-19,0,0 +2013,9,15,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-2,0,1320,-26,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,4,0,2005,-4,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,829,4,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,5,0,1631,9,0,0 +2013,5,7,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,7,0,1034,-22,0,0 +2013,4,11,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,6,0,1318,32,1,0 +2013,4,9,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1450,-1,0,1753,-15,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1531,-12,0,0 +2013,6,9,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1155,-9,0,1449,-23,0,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1933,-6,0,2245,-18,0,0 +2013,7,10,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1650,3,0,2010,11,0,0 +2013,6,30,7,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,-4,0,2255,-13,0,0 +2013,4,4,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1731,-6,0,1922,-16,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,851,-2,0,1330,-24,0,0 +2013,10,11,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1355,-12,0,1455,-24,0,0 +2013,7,11,4,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-1,0,1238,-23,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1919,22,1,2257,13,0,0 +2013,8,8,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-7,0,957,30,1,0 +2013,7,8,1,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1640,141,1,1849,137,1,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-2,0,1936,-8,0,0 +2013,5,31,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,740,1,0,850,-8,0,0 +2013,6,3,1,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1730,3,0,1930,3,0,0 +2013,10,17,4,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2015,-10,0,2145,-6,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,945,1,0,1505,-13,0,0 +2013,10,8,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1430,-7,0,1551,-8,0,0 +2013,9,2,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1556,6,0,1727,-3,0,0 +2013,10,17,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,815,232,1,1000,227,1,0 +2013,6,6,4,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,34,1,1231,31,1,0 +2013,4,20,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1330,-19,0,1559,-6,0,0 +2013,4,28,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-5,0,913,1,0,0 +2013,9,13,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-8,0,819,-10,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-5,0,1026,-12,0,0 +2013,7,4,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1100,-6,0,1211,-15,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-5,0,2249,-17,0,0 +2013,9,9,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2039,-10,0,2200,-18,0,0 +2013,4,6,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,830,-9,0,935,-14,0,0 +2013,10,2,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-8,0,1130,-9,0,0 +2013,9,26,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,37,1,2135,43,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1145,-1,0,1500,-1,0,0 +2013,7,9,2,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,2100,43,1,2250,43,1,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,2,0,2137,-10,0,0 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,955,3,0,1250,28,1,0 +2013,10,25,5,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1300,-4,0,1625,-19,0,0 +2013,8,6,2,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-11,0,1300,-14,0,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1256,5,0,1619,6,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,950,22,1,1245,18,1,0 +2013,6,11,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,5,0,726,1,0,0 +2013,4,27,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,-1,0,1656,10,0,0 +2013,7,19,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-5,0,1400,18,1,0 +2013,9,28,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1020,-4,0,1140,5,0,0 +2013,6,27,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1015,-3,0,1148,-9,0,0 +2013,8,8,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,1,0,542,-3,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1755,3,0,1947,-6,0,0 +2013,6,12,3,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1642,-6,0,1907,-9,0,0 +2013,5,17,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1507,-2,0,1607,-2,0,0 +2013,6,14,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1640,-4,0,1915,-2,0,0 +2013,10,10,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-3,0,1116,-13,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,939,2,0,1053,-1,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1433,6,0,1605,-4,0,0 +2013,6,29,6,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,12,0,803,11,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,-2,0,2217,6,0,0 +2013,8,31,6,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1500,29,1,1805,25,1,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,-3,0,1105,-8,0,0 +2013,5,17,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,610,-3,0,903,-5,0,0 +2013,5,5,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1452,-4,0,1759,-20,0,0 +2013,6,25,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1130,-1,0,1655,-15,0,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,-6,0,1240,-2,0,0 +2013,9,18,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2051,-7,0,2140,-12,0,0 +2013,6,29,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,600,3,0,852,-11,0,0 +2013,9,10,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1540,0,0,1646,-13,0,0 +2013,7,13,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-5,0,1901,-15,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1540,36,1,1635,41,1,0 +2013,10,28,1,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1535,-7,0,1847,-12,0,0 +2013,10,27,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-6,0,2132,4,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,730,-3,0,1051,-17,0,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,2000,19,1,2359,17,1,0 +2013,7,31,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2315,14,0,715,-9,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1035,-2,0,1200,1,0,0 +2013,8,13,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1515,307,1,1650,348,1,0 +2013,6,29,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,31,1,1532,31,1,0 +2013,7,30,2,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,845,0,0,1105,9,0,0 +2013,9,7,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,0,0,920,-9,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1000,-5,0,1100,-5,0,0 +2013,5,18,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,630,2,0,750,-12,0,0 +2013,8,13,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1548,-5,0,1714,5,0,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2100,-1,0,2215,-4,0,0 +2013,9,13,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,930,-2,0,1305,-18,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1547,21,1,1905,86,1,0 +2013,10,29,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,805,0,0,840,3,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1740,97,1,2320,94,1,0 +2013,4,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2040,-1,0,2307,-26,0,0 +2013,5,22,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,7,0,1240,7,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,545,9,0,719,1,0,0 +2013,7,30,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-5,0,1853,-14,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,6,0,2308,7,0,0 +2013,7,16,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-7,0,1022,6,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1715,-2,0,2235,-12,0,0 +2013,8,5,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,-3,0,1255,4,0,0 +2013,6,27,4,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1431,-7,0,1627,-16,0,0 +2013,7,16,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1745,-4,0,2030,21,1,0 +2013,10,21,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-9,0,1718,-16,0,0 +2013,7,24,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,-3,0,1619,0,0,0 +2013,9,29,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,815,-5,0,1052,10,0,0 +2013,8,10,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1730,-2,0,2042,-34,0,0 +2013,6,2,7,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-4,0,553,-4,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,625,0,0,715,-19,0,0 +2013,9,11,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,-4,0,1445,-12,0,0 +2013,6,7,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2035,-7,0,2145,-13,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,-3,0,55,9,0,0 +2013,7,6,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-6,0,1356,-18,0,0 +2013,9,14,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,804,8,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,40,1,2056,13,0,0 +2013,5,19,7,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-10,0,1757,-10,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2040,32,1,2155,46,1,0 +2013,9,29,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1840,0,0,1910,-6,0,0 +2013,6,29,6,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1348,16,1,1643,18,1,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1745,20,1,1902,9,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1555,7,0,2040,-16,0,0 +2013,7,16,2,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1430,8,0,1611,-3,0,0 +2013,4,10,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,2030,0,,2105,0,1,1 +2013,8,30,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,0,0,1005,4,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,620,-6,0,1050,6,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1925,13,0,2110,-3,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2155,10,0,2308,-7,0,0 +2013,9,25,3,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1652,-10,0,1800,-2,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,3,0,1235,-9,0,0 +2013,10,25,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,27,1,1854,34,1,0 +2013,7,28,7,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,-9,0,1051,-23,0,0 +2013,8,2,5,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,0,0,1345,7,0,0 +2013,8,6,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,615,50,1,755,43,1,0 +2013,8,26,1,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1441,-5,0,1650,-12,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1250,-3,0,1650,-16,0,0 +2013,10,1,2,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1105,-4,0,1225,-6,0,0 +2013,5,24,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,10,0,1412,11,0,0 +2013,6,28,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2050,63,1,2230,50,1,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1210,7,0,1315,7,0,0 +2013,4,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,0,0,1441,-18,0,0 +2013,6,11,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,1,0,636,-5,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,3,0,947,-4,0,0 +2013,5,4,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1004,1,0,0 +2013,5,4,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1405,13,0,1648,9,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,42,1,10,24,1,0 +2013,10,24,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,28,1,1025,24,1,0 +2013,8,4,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,915,3,0,1644,13,0,0 +2013,6,22,6,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1210,-2,0,1505,-28,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,0,0,1027,-13,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2105,60,1,2310,57,1,0 +2013,8,6,2,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-1,0,1854,-1,0,0 +2013,10,6,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-10,0,1507,-18,0,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1640,-3,0,1952,-21,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,800,-6,0,1240,-5,0,0 +2013,4,23,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,-3,0,1700,-25,0,0 +2013,6,13,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2000,4,0,2137,17,1,0 +2013,9,5,4,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1805,-7,0,2114,-25,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,815,0,0,1034,-13,0,0 +2013,7,22,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,45,1,1649,0,1,1 +2013,9,11,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,-2,0,2258,-15,0,0 +2013,9,2,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-5,0,1357,6,0,0 +2013,4,25,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,0,0,940,-19,0,0 +2013,8,6,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,535,-2,0,850,-24,0,0 +2013,6,18,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-4,0,1105,-17,0,0 +2013,9,8,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1547,-13,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2155,-1,0,2310,-8,0,0 +2013,9,19,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1635,73,1,1800,73,1,0 +2013,9,23,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-3,0,1500,-15,0,0 +2013,8,29,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,2,0,1530,18,1,0 +2013,10,8,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,-11,0,1352,-5,0,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1815,41,1,2015,18,1,0 +2013,9,1,7,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1101,-5,0,1259,-16,0,0 +2013,6,20,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,5,0,1320,0,0,0 +2013,6,13,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1517,-8,0,1650,6,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,717,-4,0,1159,-12,0,0 +2013,6,3,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,4,0,1441,6,0,0 +2013,9,1,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1730,-4,0,1825,-5,0,0 +2013,5,20,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,2135,86,1,2255,85,1,0 +2013,8,9,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1842,-4,0,2207,-6,0,0 +2013,7,29,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-9,0,1020,-23,0,0 +2013,6,15,6,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1550,104,1,1835,99,1,0 +2013,7,21,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2114,61,1,2229,57,1,0 +2013,6,7,5,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,1310,1,0,1724,-29,0,0 +2013,8,21,3,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,702,-3,0,1316,-12,0,0 +2013,9,17,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,900,4,0,1505,-12,0,0 +2013,9,17,2,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1500,-6,0,1718,1,0,0 +2013,10,25,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1645,15,1,1825,13,0,0 +2013,9,19,4,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1220,0,,1415,0,1,1 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1225,12,0,1450,13,0,0 +2013,8,17,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1410,0,0,1635,-13,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,922,49,1,1529,68,1,0 +2013,4,30,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1523,-7,0,2000,-13,0,0 +2013,7,28,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,2,0,2205,2,0,0 +2013,6,2,7,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,1,0,1716,4,0,0 +2013,7,28,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1910,-3,0,1915,-8,0,0 +2013,10,12,6,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1435,12,0,1641,3,0,0 +2013,8,5,1,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1307,-1,0,0 +2013,10,21,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1716,18,1,1840,11,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,955,3,0,1200,-2,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1625,10,0,2210,10,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1804,-4,0,1944,16,1,0 +2013,9,25,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,-8,0,1900,-8,0,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2100,11,0,2235,3,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1715,-1,0,1938,33,1,0 +2013,10,10,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1455,-4,0,1620,-13,0,0 +2013,10,4,5,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1715,-5,0,1813,-14,0,0 +2013,7,24,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,655,-2,0,820,-10,0,0 +2013,6,17,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-3,0,1006,-4,0,0 +2013,8,13,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-3,0,659,40,1,0 +2013,8,16,5,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-4,0,1635,-14,0,0 +2013,7,4,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-8,0,1545,-1,0,0 +2013,8,15,4,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,-11,0,1623,-25,0,0 +2013,7,29,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,0,,1133,0,1,1 +2013,4,16,2,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1548,-6,0,1820,-27,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,2,0,1446,11,0,0 +2013,6,18,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-8,0,1815,-18,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,625,42,1,920,27,1,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1430,-3,0,1550,-1,0,0 +2013,7,15,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-6,0,1647,-23,0,0 +2013,4,29,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-9,0,1608,-9,0,0 +2013,8,26,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2116,23,1,2249,24,1,0 +2013,4,4,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,0,0,755,-9,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,-3,0,100,-8,0,0 +2013,4,18,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-1,0,1040,-12,0,0 +2013,8,7,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,803,-9,0,920,-16,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1435,96,1,1611,79,1,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-2,0,1041,3,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1425,92,1,1605,87,1,0 +2013,10,23,3,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1852,-7,0,2117,-16,0,0 +2013,6,24,1,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,0,,1940,0,1,1 +2013,9,27,5,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-8,0,1552,-17,0,0 +2013,10,16,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,920,-7,0,1049,-1,0,0 +2013,8,23,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,9,0,2030,9,0,0 +2013,6,3,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-8,0,1010,-9,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2049,7,0,2220,-4,0,0 +2013,8,17,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,6,0,1910,2,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1755,7,0,2034,2,0,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1253,7,0,1615,-8,0,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,76,1,2240,63,1,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1210,-2,0,1301,-4,0,0 +2013,7,19,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,805,-3,0,1014,-29,0,0 +2013,4,10,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1944,75,1,2229,0,1,1 +2013,5,16,4,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,600,-2,0,720,-12,0,0 +2013,5,14,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,1,0,1815,-12,0,0 +2013,8,17,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,808,-9,0,925,-17,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1840,11,0,2052,6,0,0 +2013,7,10,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,645,-4,0,1435,-16,0,0 +2013,10,21,1,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,-7,0,2057,-37,0,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1935,58,1,2123,26,1,0 +2013,5,7,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,35,1,2105,15,1,0 +2013,9,30,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1849,-7,0,1912,-15,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2200,14,0,2306,8,0,0 +2013,8,9,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1455,13,0,1605,16,1,0 +2013,9,29,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,6,0,2015,-3,0,0 +2013,7,19,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,705,-3,0,835,-11,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,27,1,1755,25,1,0 +2013,8,12,1,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2043,54,1,2208,47,1,0 +2013,6,13,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-3,0,728,-9,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1547,-3,0,2129,-6,0,0 +2013,8,15,4,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1215,-1,0,1406,-6,0,0 +2013,7,14,7,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1930,40,1,2232,9,0,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2015,90,1,2309,83,1,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1401,-4,0,1515,-32,0,0 +2013,10,27,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13244,Memphis International,Memphis,TN,1652,13,0,1805,9,0,0 +2013,8,27,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-5,0,2005,-9,0,0 +2013,4,8,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2215,-6,0,640,-8,0,0 +2013,5,20,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-7,0,1805,-7,0,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1559,-3,0,1745,-28,0,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2240,14,0,635,5,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1103,14,0,1414,19,1,0 +2013,6,25,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-13,0,717,-9,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,728,-3,0,1305,15,1,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,835,0,0,1100,11,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1410,4,0,1615,-1,0,0 +2013,4,21,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-9,0,2035,-3,0,0 +2013,10,7,1,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1826,42,1,2018,25,1,0 +2013,8,26,1,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1005,3,0,1310,2,0,0 +2013,10,19,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,830,-8,0,1025,-19,0,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1546,71,1,1720,70,1,0 +2013,7,12,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1619,-8,0,2042,-24,0,0 +2013,9,19,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1720,-3,0,1851,-12,0,0 +2013,4,2,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-6,0,805,-4,0,0 +2013,8,30,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,22,1,939,30,1,0 +2013,5,2,4,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,-7,0,1455,-13,0,0 +2013,10,16,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1054,2,0,0 +2013,7,19,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,10,0,800,-2,0,0 +2013,10,17,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1640,15,1,1900,1,0,0 +2013,8,28,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1225,11,0,1555,13,0,0 +2013,6,28,5,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,840,-4,0,1111,-13,0,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,950,0,0,1149,-15,0,0 +2013,4,1,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,248,1,1815,228,1,0 +2013,10,17,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,705,-3,0,910,-6,0,0 +2013,10,17,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1512,1,0,1650,-6,0,0 +2013,6,28,5,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1235,-2,0,1639,-3,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1127,45,1,1344,22,1,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1220,-5,0,1430,-9,0,0 +2013,10,27,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1548,0,0,1815,-3,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1029,-2,0,1349,-21,0,0 +2013,8,2,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,-8,0,2149,-15,0,0 +2013,8,30,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,925,-1,0,1045,-2,0,0 +2013,6,3,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1450,-6,0,1757,-6,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,2,0,1131,-3,0,0 +2013,5,16,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1555,0,0,1730,-20,0,0 +2013,8,8,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-1,0,1545,1,0,0 +2013,9,29,7,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-6,0,1836,-17,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,28,1,2105,23,1,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,925,-1,0,1150,0,0,0 +2013,9,29,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1623,-5,0,1916,0,0,0 +2013,8,18,7,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1224,-4,0,1335,1,0,0 +2013,8,6,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-1,0,1855,-14,0,0 +2013,5,10,5,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-4,0,1640,-6,0,0 +2013,9,20,5,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1952,3,0,2223,-5,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,5,0,1938,30,1,0 +2013,5,17,5,OO,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1221,-2,0,1400,-7,0,0 +2013,10,7,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1525,4,0,1635,2,0,0 +2013,6,19,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,4,0,2159,8,0,0 +2013,9,17,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,630,-1,0,735,-8,0,0 +2013,10,22,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1535,-9,0,1833,-30,0,0 +2013,10,31,4,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1735,19,1,1900,8,0,0 +2013,4,14,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,700,8,0,1542,-22,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,46,1,1708,66,1,0 +2013,8,24,6,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-9,0,803,-20,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1821,5,0,1957,-9,0,0 +2013,4,22,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,2100,-5,0,2335,-16,0,0 +2013,7,31,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1621,7,0,1820,20,1,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1520,-6,0,1958,-16,0,0 +2013,5,31,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1646,-4,0,1814,-7,0,0 +2013,5,7,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-5,0,1207,-1,0,0 +2013,4,21,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-5,0,955,-7,0,0 +2013,10,7,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,800,-2,0,1055,-4,0,0 +2013,4,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1017,-5,0,1158,-11,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,840,17,1,1200,16,1,0 +2013,5,1,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-9,0,1332,-2,0,0 +2013,6,8,6,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,0,,1204,0,1,1 +2013,5,11,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1639,3,0,1831,-1,0,0 +2013,7,2,2,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1357,-6,0,1630,4,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1531,1,0,1915,-5,0,0 +2013,4,2,2,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,-6,0,1215,-27,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,0,0,1154,-3,0,0 +2013,6,22,6,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-1,0,1130,24,1,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1800,21,1,30,4,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1130,26,1,1223,26,1,0 +2013,10,16,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,605,-8,0,750,-3,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1255,5,0,1720,10,0,0 +2013,6,28,5,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,5,0,1415,31,1,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1205,-3,0,1305,-1,0,0 +2013,7,25,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1531,36,1,1658,27,1,0 +2013,8,20,2,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1145,-9,0,1320,-25,0,0 +2013,6,28,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1555,31,1,1755,85,1,0 +2013,5,10,5,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1056,-4,0,1300,-6,0,0 +2013,5,17,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,722,-6,0,1008,-7,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,-1,0,1005,-20,0,0 +2013,6,9,7,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-3,0,1355,4,0,0 +2013,7,10,3,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,0,0,1035,-6,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1015,-3,0,1330,-8,0,0 +2013,8,9,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-4,0,2152,-5,0,0 +2013,7,31,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-4,0,2103,-2,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,-4,0,1605,-6,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,925,0,0,1320,-8,0,0 +2013,5,31,5,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1053,-6,0,1217,-5,0,0 +2013,6,10,1,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,4,0,2020,-7,0,0 +2013,8,2,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,929,1,0,1650,-13,0,0 +2013,9,15,7,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1105,-15,0,1201,-28,0,0 +2013,9,1,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,950,-5,0,1050,-9,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,734,-3,0,925,-9,0,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,-3,0,2015,-3,0,0 +2013,7,16,2,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-5,0,900,-5,0,0 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,602,6,0,726,-3,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2020,-6,0,2202,-5,0,0 +2013,7,22,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-1,0,1730,-14,0,0 +2013,7,11,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,29,1,1905,26,1,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1315,-7,0,1513,-20,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1412,0,0,1550,-7,0,0 +2013,7,9,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1740,66,1,2108,72,1,0 +2013,8,16,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,43,1,1615,54,1,0 +2013,10,28,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1956,-8,0,2112,-13,0,0 +2013,9,13,5,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1330,-4,0,1526,-6,0,0 +2013,4,7,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,7,0,1555,-1,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,16,1,2101,18,1,0 +2013,6,29,6,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1555,2,0,2359,-17,0,0 +2013,10,29,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,-1,0,1124,-3,0,0 +2013,8,28,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,24,1,2053,15,1,0 +2013,9,3,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1908,1,0,2120,-24,0,0 +2013,9,19,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,850,77,1,1240,67,1,0 +2013,8,20,2,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-5,0,1145,5,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-3,0,1128,-17,0,0 +2013,4,11,4,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,830,-5,0,1115,-38,0,0 +2013,9,24,2,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1909,-9,0,2050,-7,0,0 +2013,9,20,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-2,0,808,-15,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,8,0,1256,-1,0,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1940,62,1,2147,53,1,0 +2013,9,18,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-4,0,1917,-6,0,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,48,1,2305,42,1,0 +2013,4,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,820,-2,0,925,-12,0,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,700,0,0,820,0,0,0 +2013,6,13,4,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1210,4,0,1435,2,0,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2240,0,0,3,-3,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,3,0,2025,-21,0,0 +2013,7,23,2,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-5,0,1923,-6,0,0 +2013,8,24,6,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,-5,0,1941,-19,0,0 +2013,7,26,5,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1730,-2,0,1825,-6,0,0 +2013,7,17,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1730,-2,0,1945,-5,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1925,75,1,2110,52,1,0 +2013,9,22,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,709,6,0,912,-5,0,0 +2013,7,25,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1730,21,1,1900,9,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,845,-2,0,1104,-3,0,0 +2013,9,15,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1100,-6,0,1345,-6,0,0 +2013,9,8,7,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,837,-14,0,0 +2013,8,14,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-2,0,1035,-13,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-7,0,1300,-10,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1810,15,1,2042,3,0,0 +2013,6,26,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,28,1,815,24,1,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-5,0,948,-6,0,0 +2013,6,13,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1310,18,1,1830,12,0,0 +2013,8,29,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,0,0,1120,6,0,0 +2013,10,16,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2040,15,1,2225,19,1,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,915,4,0,1635,-11,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,41,1,2341,47,1,0 +2013,7,6,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,620,-5,0,827,-11,0,0 +2013,9,20,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,21,1,1800,14,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,629,-2,0,806,-12,0,0 +2013,5,5,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,844,-4,0,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,-5,0,1655,-10,0,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,-5,0,1025,7,0,0 +2013,9,23,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,734,-6,0,907,-15,0,0 +2013,8,20,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1110,-7,0,1213,-1,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,1,0,2335,-7,0,0 +2013,7,7,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,9,0,1810,5,0,0 +2013,9,2,1,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,-2,0,1935,-4,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,2125,-1,0,2325,-23,0,0 +2013,8,11,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,800,0,0,925,1,0,0 +2013,10,20,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,5,0,1717,-9,0,0 +2013,4,21,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,754,-8,0,1048,-20,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,844,-1,0,1000,-18,0,0 +2013,6,27,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,710,-1,0,855,-21,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1315,-4,0,1723,-19,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,1,0,2059,-6,0,0 +2013,4,1,1,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1125,-3,0,1735,-17,0,0 +2013,5,6,1,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,2015,32,1,2213,24,1,0 +2013,7,31,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,7,0,2258,-1,0,0 +2013,6,9,7,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1805,22,1,2117,18,1,0 +2013,10,21,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1505,60,1,2110,57,1,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1120,0,,1410,0,1,1 +2013,7,15,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,835,0,0,940,-4,0,0 +2013,8,19,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1910,-6,0,2240,-1,0,0 +2013,6,23,7,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,52,1,621,64,1,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1430,1,0,1515,-4,0,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2040,-6,0,2231,-29,0,0 +2013,6,20,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1334,-16,0,0 +2013,10,29,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,829,-4,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,-7,0,2250,-12,0,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2245,-7,0,115,8,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,1,0,2335,-9,0,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,840,-2,0,1007,-6,0,0 +2013,10,11,5,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,710,0,0,1117,-17,0,0 +2013,6,27,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1235,20,1,1450,15,1,0 +2013,10,25,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1044,16,1,1324,-2,0,0 +2013,7,17,3,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1355,-4,0,1520,-19,0,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1359,-7,0,1714,-32,0,0 +2013,9,27,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,3,0,1246,5,0,0 +2013,6,6,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-2,0,1940,-16,0,0 +2013,5,20,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-2,0,1546,1,0,0 +2013,4,4,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,8,0,715,11,0,0 +2013,4,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,600,-1,0,1155,-3,0,0 +2013,6,1,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,239,1,1820,227,1,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,810,-2,0,1110,-11,0,0 +2013,6,10,1,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,745,-17,0,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,-1,0,2250,1,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,855,-5,0,1150,-21,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2145,113,1,15,107,1,0 +2013,4,25,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,9,0,1505,5,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2025,-2,0,2202,-23,0,0 +2013,10,9,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,840,-5,0,1135,-6,0,0 +2013,4,14,7,OO,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,751,27,1,1010,34,1,0 +2013,7,9,2,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1330,22,1,1705,13,0,0 +2013,9,26,4,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,-2,0,1840,-24,0,0 +2013,5,14,2,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,627,-12,0,922,-14,0,0 +2013,4,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2030,0,0,2259,33,1,0 +2013,9,21,6,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,1,0,1025,-14,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1045,2,0,1150,-5,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,805,0,0,1000,11,0,0 +2013,5,5,7,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-8,0,955,3,0,0 +2013,4,12,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,0,0,1535,2,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1415,15,1,1744,3,0,0 +2013,4,18,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,842,-4,0,1015,-19,0,0 +2013,8,11,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,17,1,2030,19,1,0 +2013,5,13,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-9,0,714,-16,0,0 +2013,6,12,3,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,11,0,1435,-13,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,6,0,1818,19,1,0 +2013,4,19,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1950,0,,2104,0,1,1 +2013,5,19,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-9,0,929,-1,0,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,4,0,1631,-5,0,0 +2013,4,12,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1310,3,0,1410,8,0,0 +2013,6,22,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1645,30,1,1940,9,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-2,0,935,7,0,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1632,133,1,1824,153,1,0 +2013,10,11,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-1,0,910,-14,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,745,5,0,1120,11,0,0 +2013,5,18,6,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2321,0,0,310,-2,0,0 +2013,5,10,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1039,-8,0,1414,-24,0,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,820,3,0,1212,-3,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1459,120,1,1620,114,1,0 +2013,4,24,3,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,-5,0,1737,-21,0,0 +2013,10,3,4,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,710,-2,0,725,-9,0,0 +2013,10,6,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1709,-10,0,1759,-7,0,0 +2013,8,3,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2325,-1,0,525,-19,0,0 +2013,4,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1013,-7,0,1415,-1,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,-1,0,1520,-22,0,0 +2013,5,6,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,43,1,1755,36,1,0 +2013,5,8,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1407,24,1,1815,-2,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1856,31,1,2142,6,0,0 +2013,10,10,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-3,0,805,-9,0,0 +2013,8,11,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1200,14,0,1415,-2,0,0 +2013,8,3,6,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1910,-10,0,2043,-3,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,-6,0,1925,-14,0,0 +2013,4,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,0,0,1603,4,0,0 +2013,5,10,5,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,730,3,0,1045,-6,0,0 +2013,5,8,3,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-6,0,2209,-14,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1030,7,0,1205,13,0,0 +2013,9,4,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,908,-9,0,1202,-7,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1530,-2,0,1635,-3,0,0 +2013,10,2,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2210,-6,0,2328,-16,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1629,-8,0,101,-16,0,0 +2013,9,14,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,700,-3,0,755,-7,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,-6,0,1800,-12,0,0 +2013,8,20,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-9,0,920,-13,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,153,1,1525,203,1,0 +2013,8,28,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-6,0,1202,-16,0,0 +2013,4,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,-3,0,1227,14,0,0 +2013,7,31,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,700,-7,0,816,-15,0,0 +2013,10,11,5,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1415,-7,0,1515,-7,0,0 +2013,4,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,957,98,1,1052,87,1,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-6,0,1837,5,0,0 +2013,8,6,2,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1055,0,0,1345,0,0,0 +2013,6,5,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,815,-7,0,1030,-33,0,0 +2013,4,2,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1340,-2,0,1450,-9,0,0 +2013,5,9,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1355,10,0,1450,-2,0,0 +2013,5,21,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,650,-4,0,834,0,0,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1929,17,1,2157,19,1,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,650,-1,0,940,-5,0,0 +2013,7,9,2,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,20,1,1740,66,1,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-4,0,1102,-3,0,0 +2013,5,1,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1612,-4,0,1834,-17,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,7,0,2055,3,0,0 +2013,10,12,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,600,-7,0,905,-19,0,0 +2013,5,6,1,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1238,8,0,1630,22,1,0 +2013,9,17,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-7,0,1515,-3,0,0 +2013,7,21,7,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1525,-5,0,1747,2,0,0 +2013,10,22,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,500,-1,0,615,-12,0,0 +2013,10,15,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,-8,0,911,-3,0,0 +2013,9,16,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-2,0,1617,-8,0,0 +2013,8,30,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,929,1,0,1129,-8,0,0 +2013,4,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,840,-4,0,1115,-16,0,0 +2013,7,13,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,815,7,0,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1010,-4,0,1117,-9,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1552,3,0,1805,-3,0,0 +2013,10,8,2,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-2,0,712,-12,0,0 +2013,5,10,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,612,-2,0,943,-41,0,0 +2013,7,1,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-8,0,1143,-7,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1302,15,1,1542,10,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,25,1,2145,30,1,0 +2013,7,21,7,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1527,20,1,1823,11,0,0 +2013,6,21,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1005,-21,0,0 +2013,8,11,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1818,9,0,2149,1,0,0 +2013,6,8,6,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-5,0,1655,-15,0,0 +2013,4,27,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,841,20,1,0 +2013,4,1,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1141,-6,0,1855,-16,0,0 +2013,4,25,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,832,4,0,0 +2013,5,2,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,851,49,1,1153,46,1,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,635,-2,0,740,-7,0,0 +2013,10,28,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-2,0,1654,-5,0,0 +2013,4,18,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-6,0,1115,24,1,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1425,-1,0,1510,8,0,0 +2013,6,28,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,849,-6,0,926,-8,0,0 +2013,5,6,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,913,-2,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,0,0,1530,3,0,0 +2013,9,28,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-4,0,915,-9,0,0 +2013,9,3,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1458,-5,0,1757,-7,0,0 +2013,9,1,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,649,-3,0,1109,-6,0,0 +2013,4,14,7,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2130,-6,0,512,-20,0,0 +2013,9,15,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1210,-5,0,1500,-22,0,0 +2013,6,29,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2015,18,1,2140,33,1,0 +2013,8,22,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1052,104,1,1213,91,1,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1439,11,0,1738,17,1,0 +2013,8,6,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1933,45,1,2125,36,1,0 +2013,5,2,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-5,0,1828,-2,0,0 +2013,4,1,1,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,900,-5,0,1455,-29,0,0 +2013,6,6,4,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,5,0,2159,1,0,0 +2013,8,11,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1630,19,1,1820,1,0,0 +2013,5,2,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1840,0,0,2005,23,1,0 +2013,4,7,7,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,610,-1,0,900,-11,0,0 +2013,4,24,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-9,0,1349,-17,0,0 +2013,8,23,5,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,-3,0,1749,-13,0,0 +2013,9,11,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,74,1,1810,54,1,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,931,-7,0,1022,-27,0,0 +2013,10,1,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-3,0,1705,-6,0,0 +2013,6,22,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,3,0,1617,-14,0,0 +2013,7,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,747,5,0,947,-14,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2055,-1,0,2155,4,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,8,0,2220,15,1,0 +2013,5,6,1,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,830,-11,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-1,0,824,-4,0,0 +2013,5,11,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,855,-1,0,1230,-18,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1608,0,0,1726,7,0,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,730,1,0,1010,-15,0,0 +2013,8,1,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1337,-1,0,1556,-24,0,0 +2013,7,3,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1948,36,1,2125,25,1,0 +2013,8,24,6,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1815,98,1,2025,95,1,0 +2013,5,17,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,3,0,1835,9,0,0 +2013,8,17,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-5,0,749,-11,0,0 +2013,6,7,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1744,-3,0,1955,-23,0,0 +2013,5,2,4,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-4,0,920,28,1,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,9,0,1535,12,0,0 +2013,7,12,5,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,755,3,0,1130,-1,0,0 +2013,7,16,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1640,53,1,1755,25,1,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1550,33,1,1745,38,1,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1810,0,0,2047,-21,0,0 +2013,5,1,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,1012,6,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,51,1,1445,58,1,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,8,0,2127,-5,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,705,-3,0,920,-19,0,0 +2013,8,26,1,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1045,0,0,1320,-4,0,0 +2013,6,29,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-12,0,2048,-14,0,0 +2013,4,4,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2015,-5,0,503,-31,0,0 +2013,6,26,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1417,232,1,1610,316,1,0 +2013,10,17,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,2,0,1743,-4,0,0 +2013,7,21,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1038,3,0,1144,5,0,0 +2013,7,22,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,201,1,1015,187,1,0 +2013,8,5,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2215,26,1,700,6,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1540,62,1,1745,71,1,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2015,3,0,2145,-8,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1240,1,0,1345,-13,0,0 +2013,8,6,2,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1105,-7,0,1505,-11,0,0 +2013,10,15,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,855,7,0,1233,-6,0,0 +2013,9,26,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-4,0,1110,8,0,0 +2013,4,30,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,618,-3,0,935,-13,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,82,1,2059,60,1,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,6,0,1810,55,1,0 +2013,4,6,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,810,-2,0,940,-12,0,0 +2013,10,12,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-3,0,1254,-3,0,0 +2013,8,21,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1240,11,0,1350,5,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1725,2,0,1855,-2,0,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,650,-3,0,840,-23,0,0 +2013,4,10,3,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1455,13,0,1805,13,0,0 +2013,10,17,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2031,42,1,2255,55,1,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1102,15,1,1154,6,0,0 +2013,8,12,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-4,0,641,-17,0,0 +2013,4,2,2,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-11,0,1610,-21,0,0 +2013,6,18,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1115,45,1,1230,53,1,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1315,-4,0,1540,1,0,0 +2013,4,10,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-7,0,852,-25,0,0 +2013,4,21,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1919,109,1,2135,100,1,0 +2013,7,22,1,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1823,0,,2140,0,1,1 +2013,4,28,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1705,8,0,2030,9,0,0 +2013,10,16,3,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,630,-3,0,929,-8,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2257,-7,0,713,6,0,0 +2013,6,11,2,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,0,0,2017,-2,0,0 +2013,5,15,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,600,-4,0,835,-18,0,0 +2013,5,8,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1820,233,1,2127,209,1,0 +2013,5,19,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1054,28,1,1245,27,1,0 +2013,5,31,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,2,0,2059,-10,0,0 +2013,4,11,4,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1220,2,0,1305,8,0,0 +2013,10,15,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1205,-11,0,1329,-25,0,0 +2013,9,14,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,641,7,0,937,-12,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1655,7,0,1805,10,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1410,-2,0,1445,-12,0,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1405,22,1,1525,7,0,0 +2013,7,12,5,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,127,1,1345,99,1,0 +2013,8,9,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1720,35,1,1850,63,1,0 +2013,7,22,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,1,0,1524,-3,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1545,-3,0,1840,-24,0,0 +2013,8,13,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1900,20,1,2020,7,0,0 +2013,5,8,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-9,0,1153,-15,0,0 +2013,4,18,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1345,-11,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,0,0,2255,-9,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1650,-3,0,1740,7,0,0 +2013,6,30,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,75,1,1435,75,1,0 +2013,6,25,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1440,101,1,1654,101,1,0 +2013,5,25,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1405,13,0,1555,-4,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1530,5,0,1709,-6,0,0 +2013,5,9,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,856,2,0,1105,-22,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,810,5,0,1013,-11,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1415,-2,0,1611,0,0,0 +2013,7,25,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,-4,0,1610,-11,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1220,-2,0,1355,-13,0,0 +2013,9,18,3,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,700,-4,0,930,7,0,0 +2013,10,14,1,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-5,0,1836,-7,0,0 +2013,7,13,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,-1,0,1721,-1,0,0 +2013,10,22,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,-6,0,2205,-19,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1330,-4,0,1428,-20,0,0 +2013,8,10,6,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1915,-1,0,2159,0,0,0 +2013,10,15,2,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1433,9,0,1917,-10,0,0 +2013,4,7,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,0,0,1113,-5,0,0 +2013,10,25,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,635,0,0,755,-2,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,3,0,1540,-1,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1000,58,1,1606,68,1,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,0,0,1020,-4,0,0 +2013,7,20,6,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-6,0,709,-25,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,38,1,5,22,1,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-3,0,2005,-3,0,0 +2013,5,15,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2050,40,1,2205,31,1,0 +2013,4,15,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,10,0,2010,8,0,0 +2013,6,19,3,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,5,0,1022,3,0,0 +2013,9,1,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,606,-2,0,1200,-18,0,0 +2013,8,31,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1000,-1,0,1304,-39,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,-2,0,1615,9,0,0 +2013,10,21,1,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-2,0,1735,-17,0,0 +2013,7,7,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1535,-3,0,1814,-13,0,0 +2013,7,14,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,1,0,1745,3,0,0 +2013,6,20,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,-1,0,1205,-8,0,0 +2013,4,14,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1757,-6,0,1855,-10,0,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1025,0,0,1135,-8,0,0 +2013,4,19,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-2,0,1203,-29,0,0 +2013,9,20,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,540,-3,0,1145,-7,0,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,630,2,0,946,17,1,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1630,1,0,1850,-11,0,0 +2013,10,23,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1424,-5,0,1630,-8,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,-2,0,1315,6,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,5,0,2055,-2,0,0 +2013,9,9,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1305,78,1,1715,81,1,0 +2013,5,21,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,4,0,1517,-15,0,0 +2013,4,19,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,700,-4,0,0 +2013,8,18,7,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2058,8,0,2225,2,0,0 +2013,7,19,5,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1705,-4,0,2105,28,1,0 +2013,9,18,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1015,-2,0,1120,-6,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1840,5,0,2230,-6,0,0 +2013,8,1,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1335,32,1,1500,22,1,0 +2013,5,13,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1225,0,0,1359,11,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1310,0,0,1605,5,0,0 +2013,10,20,7,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1646,31,1,2048,0,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-5,0,1837,-4,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2004,30,1,2114,1,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,945,17,1,1045,9,0,0 +2013,6,3,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,65,1,1633,48,1,0 +2013,5,21,2,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,0,0,1858,15,1,0 +2013,5,13,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,-2,0,1135,-14,0,0 +2013,4,26,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-11,0,1410,-17,0,0 +2013,6,1,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,-2,0,1340,-16,0,0 +2013,9,19,4,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-8,0,1622,-12,0,0 +2013,10,22,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1255,0,0,1350,4,0,0 +2013,10,22,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-4,0,1740,-13,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,-2,0,1323,7,0,0 +2013,4,25,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,925,-10,0,0 +2013,7,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1500,3,0,1825,-8,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,724,-1,0,838,9,0,0 +2013,7,17,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1010,-2,0,1125,-10,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1648,-2,0,1801,-15,0,0 +2013,5,9,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-7,0,2128,-16,0,0 +2013,4,19,5,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1058,-3,0,1420,11,0,0 +2013,10,22,2,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,1010,-9,0,1235,0,0,0 +2013,8,6,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-3,0,1345,-7,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,924,-10,0,0 +2013,10,8,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1004,29,1,1352,17,1,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1911,-1,0,2249,15,1,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2125,0,0,2250,-2,0,0 +2013,4,5,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,629,-2,0,825,4,0,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1640,8,0,15,-6,0,0 +2013,10,29,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,715,-1,0,825,-3,0,0 +2013,4,20,6,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,910,-16,0,1145,-11,0,0 +2013,4,24,3,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1735,15,1,1909,26,1,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,759,8,0,937,-4,0,0 +2013,8,24,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,945,-6,0,1050,-11,0,0 +2013,5,18,6,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1109,-5,0,1828,-9,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1659,23,1,1941,-5,0,0 +2013,5,28,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-1,0,1418,-5,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1205,128,1,1333,142,1,0 +2013,4,26,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,7,0,950,-2,0,0 +2013,8,1,4,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1935,25,1,2252,19,1,0 +2013,7,29,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1025,-9,0,1210,-19,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,-6,0,720,10,0,0 +2013,9,5,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,615,-5,0,729,-6,0,0 +2013,8,19,1,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,905,-4,0,1125,-7,0,0 +2013,7,20,6,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,116,1,1459,111,1,0 +2013,7,9,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-1,0,1955,78,1,0 +2013,10,8,2,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,809,-4,0,904,-12,0,0 +2013,8,21,3,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1544,-3,0,1807,-21,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,-6,0,2145,-10,0,0 +2013,4,19,5,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1910,16,1,2050,22,1,0 +2013,6,10,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,635,-1,0,1453,70,1,0 +2013,6,25,2,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1705,7,0,1835,19,1,0 +2013,8,22,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-5,0,940,-12,0,0 +2013,6,6,4,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,12,0,1520,5,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,835,-2,0,1125,-35,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1449,-2,0,2214,6,0,0 +2013,6,18,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,2005,3,0,2106,5,0,0 +2013,4,6,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1745,0,0,1905,-13,0,0 +2013,4,12,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1205,64,1,1805,54,1,0 +2013,6,18,2,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1920,145,1,2029,138,1,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2015,5,0,2105,4,0,0 +2013,4,13,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,800,-4,0,955,-12,0,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,-1,0,2025,1,0,0 +2013,5,18,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,805,-4,0,1043,-5,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-11,0,1344,-32,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,8,0,1621,9,0,0 +2013,5,21,2,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,605,1,0,741,-1,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1848,13,0,2120,-16,0,0 +2013,5,13,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1940,0,0,55,9,0,0 +2013,7,11,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,53,1,1804,51,1,0 +2013,5,1,3,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2028,-4,0,2150,-20,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1850,39,1,1955,52,1,0 +2013,6,30,7,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1340,-12,0,0 +2013,5,8,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1955,-4,0,2125,-25,0,0 +2013,8,28,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,755,-8,0,903,-23,0,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1325,-4,0,1630,-1,0,0 +2013,5,9,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-1,0,720,10,0,0 +2013,10,15,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1845,-4,0,2101,-1,0,0 +2013,7,3,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1220,-6,0,1420,12,0,0 +2013,6,28,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1743,29,1,2144,36,1,0 +2013,8,15,4,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1319,-6,0,1353,-22,0,0 +2013,10,14,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1840,-10,0,2029,-14,0,0 +2013,4,24,3,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,2,0,1841,-18,0,0 +2013,6,10,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-6,0,1058,-8,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2145,-2,0,2332,-10,0,0 +2013,8,4,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,5,0,1650,-4,0,0 +2013,6,21,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1021,-5,0,1309,-13,0,0 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,834,-4,0,1105,-10,0,0 +2013,7,19,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,-5,0,1755,-40,0,0 +2013,10,28,1,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1535,6,0,1805,-3,0,0 +2013,5,29,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1630,17,1,1750,43,1,0 +2013,5,31,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-9,0,855,-18,0,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-4,0,1210,-5,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1911,-5,0,2047,-27,0,0 +2013,4,29,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1714,41,1,1838,44,1,0 +2013,7,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-6,0,928,2,0,0 +2013,4,12,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,-4,0,1942,-1,0,0 +2013,8,28,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1500,100,1,1625,141,1,0 +2013,6,15,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1655,-3,0,1910,-9,0,0 +2013,9,11,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1550,-8,0,1705,-7,0,0 +2013,6,22,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-6,0,1952,8,0,0 +2013,8,6,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,15,1,1050,9,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1105,0,0,1236,30,1,0 +2013,8,14,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-6,0,1558,-3,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,0,0,2155,-7,0,0 +2013,6,22,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1510,-14,0,0 +2013,10,29,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,0,0,1425,21,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,940,0,0,1140,-7,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1930,-1,0,2341,2,0,0 +2013,10,7,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1504,13,0,1727,-2,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1140,5,0,1403,-11,0,0 +2013,6,8,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-13,0,1725,-23,0,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1040,382,1,1307,369,1,0 +2013,8,12,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,857,-2,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1050,-1,0,1148,-9,0,0 +2013,8,16,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1932,44,1,2048,27,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,0,0,1355,-9,0,0 +2013,5,21,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,57,1,2105,71,1,0 +2013,7,15,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,-3,0,745,-4,0,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,805,27,1,1000,20,1,0 +2013,6,10,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1440,-1,0,1656,21,1,0 +2013,9,20,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1005,-8,0,1230,-3,0,0 +2013,9,21,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,610,-2,0,707,-9,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1440,-2,0,1659,-21,0,0 +2013,5,1,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1754,-13,0,1934,-13,0,0 +2013,4,15,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,4,0,1425,-2,0,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,0,1729,-3,0,0 +2013,9,6,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,751,-2,0,920,-16,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,3,0,801,29,1,0 +2013,5,15,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,3,0,1945,10,0,0 +2013,5,7,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,730,-5,0,852,-14,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1659,-6,0,1953,-9,0,0 +2013,8,13,2,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-7,0,1235,3,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1750,10,0,1928,10,0,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,932,11,0,1025,16,1,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-3,0,1305,-9,0,0 +2013,7,28,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,-4,0,903,-15,0,0 +2013,7,29,1,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1318,104,1,1554,107,1,0 +2013,8,7,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1900,-3,0,2130,5,0,0 +2013,6,4,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,720,-15,0,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1732,0,0,1853,-7,0,0 +2013,9,23,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1730,2,0,1931,-6,0,0 +2013,7,29,1,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,-6,0,1205,-2,0,0 +2013,10,23,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,920,-4,0,1122,-3,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,625,-4,0,750,-17,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,-2,0,1626,2,0,0 +2013,7,6,6,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,945,-4,0,1209,-27,0,0 +2013,10,31,4,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,945,4,0,1050,-7,0,0 +2013,6,7,5,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1300,-6,0,2115,54,1,0 +2013,7,20,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,13,0,735,6,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1520,12,0,1710,15,1,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-2,0,2356,-20,0,0 +2013,9,13,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2011,-1,0,2111,-15,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2020,7,0,100,2,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,-5,0,1806,-15,0,0 +2013,9,17,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2050,-2,0,500,-11,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1250,0,0,1350,-12,0,0 +2013,6,3,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,14,0,1820,-9,0,0 +2013,9,16,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1007,-7,0,1155,-17,0,0 +2013,7,15,1,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1159,-9,0,1314,-8,0,0 +2013,4,8,1,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,725,107,1,852,153,1,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,21,1,2344,19,1,0 +2013,7,26,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-4,0,623,-6,0,0 +2013,8,22,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,0,0,858,-7,0,0 +2013,6,26,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,0,0,1351,-6,0,0 +2013,9,11,3,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1500,77,1,1718,79,1,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1817,21,1,2052,6,0,0 +2013,8,23,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1257,42,1,2109,41,1,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,7,0,1755,5,0,0 +2013,5,12,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1856,-7,0,1920,-17,0,0 +2013,7,18,4,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1341,238,1,1450,229,1,0 +2013,8,20,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,955,0,0,1105,-6,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,4,0,1055,-5,0,0 +2013,8,25,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,705,-6,0,930,-17,0,0 +2013,6,25,2,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,545,0,,552,0,1,1 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,45,-3,0,611,-9,0,0 +2013,6,25,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,921,212,1,1040,216,1,0 +2013,7,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,-1,0,1415,-15,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1124,-3,0,1212,-4,0,0 +2013,7,26,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-5,0,1100,-10,0,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,-3,0,1910,-3,0,0 +2013,9,9,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,733,-2,0,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,-7,0,1955,-9,0,0 +2013,9,3,2,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,-4,0,1920,-20,0,0 +2013,7,8,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1344,-5,0,1601,2,0,0 +2013,7,30,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,923,-5,0,1105,-18,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,900,4,0,1250,-4,0,0 +2013,5,11,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,8,0,1830,10,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,625,-11,0,807,10,0,0 +2013,6,24,1,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,100,1,1040,90,1,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,1,0,2205,6,0,0 +2013,4,7,7,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,3,0,2054,-2,0,0 +2013,9,15,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1736,3,0,2011,-5,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,920,18,1,1220,71,1,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1328,-8,0,1724,-13,0,0 +2013,8,6,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,57,1,1755,39,1,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,-2,0,1034,-1,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1529,-1,0,1715,-4,0,0 +2013,7,21,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1125,0,0,1329,-14,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1755,43,1,2140,43,1,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-5,0,2048,-16,0,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,817,-3,0,1053,-19,0,0 +2013,6,30,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1259,42,1,1429,26,1,0 +2013,5,9,4,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-6,0,1128,1,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,830,38,1,1105,42,1,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,6,0,1245,3,0,0 +2013,9,24,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1506,-1,0,1553,-3,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2034,-2,0,2149,-23,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,615,-4,0,740,-15,0,0 +2013,8,27,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1236,-20,0,0 +2013,7,15,1,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1307,-5,0,1800,-20,0,0 +2013,9,12,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-5,0,740,-19,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1319,9,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1800,11,0,2012,6,0,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1025,2,0,1130,1,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1720,0,0,1830,-6,0,0 +2013,6,13,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,10,0,2016,89,1,0 +2013,8,8,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1850,-12,0,2037,-12,0,0 +2013,5,25,6,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1600,-5,0,1903,-25,0,0 +2013,10,22,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1325,-2,0,1515,-10,0,0 +2013,10,27,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-7,0,850,-14,0,0 +2013,8,8,4,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1932,-4,0,815,-35,0,0 +2013,5,13,1,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2028,-3,0,2150,-23,0,0 +2013,6,21,5,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,27,1,846,20,1,0 +2013,9,11,3,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1808,-7,0,2056,-12,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2200,116,1,2310,119,1,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1355,17,1,1625,12,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,17,1,2322,16,1,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2205,-2,0,2355,-5,0,0 +2013,9,26,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-7,0,1230,-22,0,0 +2013,8,10,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1700,57,1,1805,63,1,0 +2013,6,4,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-5,0,1827,-18,0,0 +2013,10,31,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1655,-6,0,1816,-19,0,0 +2013,4,29,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,-3,0,1330,-10,0,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1105,-1,0,1555,6,0,0 +2013,7,2,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,-1,0,1811,10,0,0 +2013,7,4,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1115,-6,0,1406,-24,0,0 +2013,8,27,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1505,0,0,1711,4,0,0 +2013,9,24,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1047,-6,0,1214,0,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1110,-6,0,1953,9,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,18,1,1631,17,1,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,-1,0,1925,-21,0,0 +2013,4,29,1,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1245,-6,0,1403,-9,0,0 +2013,8,28,3,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,614,-7,0,748,-24,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,10,0,1000,1,0,0 +2013,7,12,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-4,0,2030,-11,0,0 +2013,10,9,3,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1255,9,0,1648,-1,0,0 +2013,8,23,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,946,-6,0,1007,-2,0,0 +2013,9,16,1,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,824,-9,0,933,-12,0,0 +2013,6,1,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,4,0,900,-1,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-5,0,1740,4,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1450,-3,0,1647,-14,0,0 +2013,9,14,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-6,0,1633,-17,0,0 +2013,7,5,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-9,0,654,-1,0,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,-7,0,1107,-18,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1750,1,0,1929,-3,0,0 +2013,8,22,4,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-4,0,809,-7,0,0 +2013,10,22,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,1,0,958,1,0,0 +2013,6,19,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-3,0,1855,-3,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2020,-1,0,2110,-5,0,0 +2013,6,7,5,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1550,59,1,1805,30,1,0 +2013,7,16,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-3,0,1225,-6,0,0 +2013,5,28,2,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,10,0,1920,1,0,0 +2013,6,25,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1850,32,1,2014,28,1,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2235,3,0,2345,13,0,0 +2013,4,3,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-5,0,1335,-5,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,-2,0,1255,1,0,0 +2013,4,10,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,-10,0,835,-24,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,-2,0,1010,-4,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,-1,0,2305,-7,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2153,11,0,2332,-8,0,0 +2013,9,29,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-4,0,1230,-4,0,0 +2013,9,17,2,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1346,16,1,1948,-10,0,0 +2013,10,17,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2156,29,1,2308,26,1,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-2,0,1155,-6,0,0 +2013,6,13,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,0,,1211,0,1,1 +2013,8,31,6,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,625,-2,0,950,-4,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1105,-3,0,1430,-4,0,0 +2013,7,8,1,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-3,0,1415,-2,0,0 +2013,5,13,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1725,-2,0,1748,-14,0,0 +2013,8,18,7,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,0,0,1730,0,0,0 +2013,5,7,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,0,0,1005,-5,0,0 +2013,8,19,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-7,0,854,19,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1900,6,0,2325,17,1,0 +2013,7,3,3,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1243,9,0,1545,14,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1448,-5,0,1610,-12,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1840,1,0,2006,-9,0,0 +2013,6,26,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-8,0,810,-18,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,825,0,0,1105,-16,0,0 +2013,9,19,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,70,1,1823,72,1,0 +2013,10,6,7,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-6,0,1857,-10,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,-2,0,1735,-5,0,0 +2013,6,22,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1124,0,0,1643,-24,0,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1252,50,1,1450,44,1,0 +2013,10,31,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1335,-3,0,1450,-14,0,0 +2013,6,14,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2046,-10,0,2154,-12,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1505,46,1,1650,47,1,0 +2013,8,24,6,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1657,-10,0,1819,-12,0,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1525,38,1,1830,25,1,0 +2013,8,31,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1137,-2,0,1338,-21,0,0 +2013,9,26,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1010,43,1,1135,42,1,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,603,-5,0,907,1,0,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1505,-6,0,1846,-10,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,14,0,1905,22,1,0 +2013,7,25,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,20,1,1906,30,1,0 +2013,7,11,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1525,92,1,1757,89,1,0 +2013,9,15,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1257,-5,0,1559,6,0,0 +2013,10,6,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,1355,0,0,1600,-33,0,0 +2013,6,21,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-9,0,1152,-26,0,0 +2013,9,27,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1038,5,0,1436,8,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,900,3,0,1033,19,1,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-2,0,1305,9,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,7,0,1755,3,0,0 +2013,4,28,7,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1330,8,0,1905,28,1,0 +2013,9,14,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,0,0,1415,-11,0,0 +2013,5,13,1,EV,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,1720,-8,0,1846,-17,0,0 +2013,9,9,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,-1,0,1600,-39,0,0 +2013,7,9,2,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-4,0,1306,-14,0,0 +2013,9,14,6,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1059,-4,0,1904,4,0,0 +2013,10,9,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,0,0,805,4,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,722,-6,0,1130,-22,0,0 +2013,6,4,2,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1930,15,1,2323,42,1,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-3,0,919,-7,0,0 +2013,9,3,2,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1405,1,0,1605,-10,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,2,0,1909,0,0,0 +2013,6,24,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1211,-7,0,1405,-12,0,0 +2013,7,31,3,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,840,13,0,1015,5,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,1,0,1536,-2,0,0 +2013,10,21,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-7,0,1335,-15,0,0 +2013,9,2,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,8,0,1355,20,1,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,740,-3,0,855,-1,0,0 +2013,10,12,6,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1750,17,1,1925,22,1,0 +2013,10,25,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,12,0,728,16,1,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1041,7,0,1600,-9,0,0 +2013,7,23,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-8,0,2042,-13,0,0 +2013,9,8,7,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,34,1,1735,35,1,0 +2013,5,11,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,47,1,2018,109,1,0 +2013,7,1,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,30,1,1805,22,1,0 +2013,4,19,5,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,822,36,1,1029,39,1,0 +2013,4,12,5,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,600,-2,0,715,-3,0,0 +2013,6,20,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,605,-4,0,736,-11,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2150,7,0,2255,0,0,0 +2013,10,17,4,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,640,-7,0,1110,-19,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,-1,0,1820,-17,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,5,0,1255,2,0,0 +2013,9,30,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,735,-3,0,835,-8,0,0 +2013,5,25,6,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1200,-8,0,1412,-19,0,0 +2013,5,1,3,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,248,1,1008,268,1,0 +2013,8,20,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1420,-8,0,1554,0,0,0 +2013,9,20,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1415,-5,0,1600,-13,0,0 +2013,7,18,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1810,98,1,1925,88,1,0 +2013,10,1,2,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1450,-6,0,1620,-15,0,0 +2013,10,2,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-6,0,1045,-9,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1055,-10,0,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1730,-1,0,2245,6,0,0 +2013,7,9,2,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-4,0,1205,-14,0,0 +2013,8,16,5,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1528,4,0,1624,11,0,0 +2013,5,20,1,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,-6,0,743,1,0,0 +2013,6,6,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2037,-5,0,2201,-16,0,0 +2013,5,27,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-8,0,1450,-12,0,0 +2013,10,3,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-1,0,1556,-9,0,0 +2013,6,5,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,8,0,1505,6,0,0 +2013,10,16,3,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1424,74,1,1600,74,1,0 +2013,7,5,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,549,-4,0,912,10,0,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-7,0,1036,-19,0,0 +2013,6,22,6,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1635,47,1,1825,47,1,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1331,-7,0,2145,-20,0,0 +2013,7,4,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,13,0,1225,5,0,0 +2013,8,27,2,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,-8,0,945,-3,0,0 +2013,10,30,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,830,-5,0,935,4,0,0 +2013,10,6,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-4,0,2042,8,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1920,-1,0,2205,-10,0,0 +2013,7,27,6,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-2,0,748,-8,0,0 +2013,8,18,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1415,-3,0,1551,0,0,0 +2013,8,8,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-2,0,1117,6,0,0 +2013,10,17,4,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,900,-2,0,1230,-8,0,0 +2013,6,26,3,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,8,0,2010,1,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1715,5,0,1850,-11,0,0 +2013,6,15,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,9,0,1255,-2,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,5,0,1617,-6,0,0 +2013,5,3,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,12,0,1210,-4,0,0 +2013,5,13,1,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1107,14,0,1112,14,0,0 +2013,8,31,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,908,60,1,1427,52,1,0 +2013,5,14,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1410,5,0,1505,7,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-3,0,1510,-2,0,0 +2013,4,23,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,904,-12,0,0 +2013,4,8,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1200,41,1,1420,65,1,0 +2013,4,15,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,-4,0,810,-17,0,0 +2013,9,1,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,-4,0,2009,4,0,0 +2013,10,12,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1632,9,0,1758,3,0,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1020,10,0,1140,3,0,0 +2013,10,5,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,40,1,1720,37,1,0 +2013,4,30,2,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1325,-3,0,1445,-5,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1700,-1,0,1830,-4,0,0 +2013,4,30,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,-5,0,1454,0,0,0 +2013,10,27,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1415,4,0,1520,0,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-3,0,2356,0,0,0 +2013,6,30,7,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1737,80,1,2047,93,1,0 +2013,4,25,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,946,14,0,1120,18,1,0 +2013,10,10,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,33,1,1255,25,1,0 +2013,8,12,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,737,-4,0,1033,-18,0,0 +2013,8,17,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,1,0,1140,-12,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,1,0,1745,14,0,0 +2013,9,28,6,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,830,-1,0,1655,-10,0,0 +2013,9,11,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,24,1,2020,29,1,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1120,-1,0,1305,-7,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,2,0,1050,-7,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,925,3,0,1035,-2,0,0 +2013,5,5,7,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-1,0,1615,12,0,0 +2013,5,13,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,-4,0,1202,-5,0,0 +2013,4,28,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1651,18,1,2015,-1,0,0 +2013,8,4,7,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,-1,0,1959,0,0,0 +2013,9,15,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1310,11,0,1425,12,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1945,87,1,2150,88,1,0 +2013,4,13,6,FL,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1731,-8,0,1824,-13,0,0 +2013,9,20,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1425,6,0,1612,-6,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1325,-1,0,1711,6,0,0 +2013,8,6,2,OO,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1512,0,0,1701,-3,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1830,6,0,2300,-7,0,0 +2013,10,19,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1425,-10,0,0 +2013,6,29,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,6,0,1220,7,0,0 +2013,4,24,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,18,1,1215,9,0,0 +2013,9,24,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1713,42,1,1820,36,1,0 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2021,-2,0,2200,-5,0,0 +2013,9,20,5,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,620,186,1,653,176,1,0 +2013,4,15,1,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,600,-5,0,720,6,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-1,0,1150,-7,0,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,-4,0,1355,-9,0,0 +2013,7,18,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2320,13,0,517,25,1,0 +2013,8,22,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1636,11,0,1856,9,0,0 +2013,5,5,7,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,5,0,900,-14,0,0 +2013,10,30,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1543,9,0,1808,0,0,0 +2013,10,12,6,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,745,-5,0,1058,-7,0,0 +2013,7,14,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,630,-11,0,726,-25,0,0 +2013,5,29,3,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1140,-2,0,2017,-17,0,0 +2013,7,8,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-4,0,715,-11,0,0 +2013,9,8,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1632,-6,0,1840,-25,0,0 +2013,10,9,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,630,-7,0,730,-6,0,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1815,0,0,2020,-11,0,0 +2013,4,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-8,0,2118,-25,0,0 +2013,7,12,5,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-4,0,1927,-4,0,0 +2013,9,1,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,845,-5,0,1000,-11,0,0 +2013,10,30,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-4,0,1417,0,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1840,-3,0,2100,-12,0,0 +2013,9,17,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-3,0,1410,-5,0,0 +2013,7,10,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-6,0,1600,-19,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,1,0,1709,14,0,0 +2013,7,13,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-10,0,913,-1,0,0 +2013,10,1,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,-2,0,1230,-7,0,0 +2013,6,22,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,725,0,0,820,9,0,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,-3,0,945,-15,0,0 +2013,4,24,3,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,-6,0,1600,-11,0,0 +2013,5,31,5,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,928,-2,0,0 +2013,5,24,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-8,0,2033,2,0,0 +2013,8,21,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1247,10,0,1542,2,0,0 +2013,8,10,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-3,0,950,-1,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1355,19,1,1630,4,0,0 +2013,9,12,4,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,55,1,2047,85,1,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1625,6,0,2310,-15,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2115,-1,0,2242,1,0,0 +2013,5,18,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1722,-9,0,0 +2013,10,26,6,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1230,6,0,1525,-1,0,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,836,-5,0,858,-9,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1855,6,0,2025,2,0,0 +2013,10,4,5,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1759,9,0,2000,17,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,13,0,1130,-8,0,0 +2013,8,21,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,605,81,1,723,76,1,0 +2013,6,16,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,835,-3,0,1215,-14,0,0 +2013,6,5,3,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-2,0,911,3,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,18,1,1729,22,1,0 +2013,10,3,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1259,-8,0,1522,-1,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,757,5,0,925,-9,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1355,21,1,1925,9,0,0 +2013,5,9,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-3,0,1622,13,0,0 +2013,6,17,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-3,0,2025,1,0,0 +2013,7,14,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2359,-4,0,523,-19,0,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1130,11,0,1555,3,0,0 +2013,5,23,4,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1943,-52,0,2315,-10,0,0 +2013,10,10,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1035,7,0,1136,-7,0,0 +2013,6,10,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,5,0,1315,-8,0,0 +2013,4,2,2,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1430,8,0,1809,-2,0,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1645,0,0,1921,22,1,0 +2013,8,21,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1733,-6,0,1903,1,0,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1935,28,1,2325,4,0,0 +2013,6,20,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,910,-7,0,1105,-25,0,0 +2013,5,30,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,7,0,1500,-4,0,0 +2013,9,4,3,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-6,0,803,-25,0,0 +2013,9,13,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1445,-4,0,1550,-4,0,0 +2013,9,3,2,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1140,-6,0,1410,-9,0,0 +2013,7,25,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,27,1,1913,65,1,0 +2013,8,4,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1122,-6,0,1220,0,0,0 +2013,10,31,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,6,0,1050,9,0,0 +2013,4,23,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1730,-7,0,2320,-24,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,6,0,1255,-3,0,0 +2013,10,3,4,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1120,-1,0,1340,-11,0,0 +2013,8,23,5,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,-7,0,1759,-18,0,0 +2013,4,29,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1148,-2,0,1630,-7,0,0 +2013,7,25,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,16,1,1622,13,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-1,0,1630,7,0,0 +2013,8,26,1,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1120,0,0,1445,-13,0,0 +2013,9,18,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1340,-8,0,1520,-6,0,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,21,1,1822,31,1,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,2045,63,1,2240,63,1,0 +2013,6,29,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,715,-1,0,835,-7,0,0 +2013,6,8,6,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,617,-6,0,903,-21,0,0 +2013,7,6,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,9,0,1500,1,0,0 +2013,9,14,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,946,9,0,1323,-12,0,0 +2013,10,31,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,945,124,1,1137,131,1,0 +2013,9,12,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,-5,0,1215,-18,0,0 +2013,4,29,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-9,0,1950,0,0,0 +2013,8,26,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,949,-6,0,1103,-4,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1435,7,0,1657,19,1,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,800,15,1,1250,-6,0,0 +2013,7,25,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1540,34,1,1630,35,1,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,630,2,0,1235,-4,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-5,0,1807,-2,0,0 +2013,6,15,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2000,-8,0,2252,-25,0,0 +2013,7,11,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-6,0,1231,-11,0,0 +2013,4,1,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1005,-13,0,0 +2013,9,23,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1105,5,0,1420,7,0,0 +2013,6,26,3,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,0,,902,0,1,1 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,6,0,1145,-4,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,630,2,0,855,-12,0,0 +2013,9,20,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1220,46,1,1318,46,1,0 +2013,10,14,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1915,-5,0,2131,11,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1614,0,0,1944,8,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1925,43,1,2202,33,1,0 +2013,7,16,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,1,0,733,-8,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-2,0,952,-5,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1440,-5,0,1820,-6,0,0 +2013,7,8,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1825,12,0,2110,18,1,0 +2013,8,15,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,959,-4,0,1255,-27,0,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,605,24,1,1429,3,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,820,-2,0,925,-13,0,0 +2013,8,26,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,-2,0,2205,-5,0,0 +2013,6,7,5,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-7,0,1749,3,0,0 +2013,6,20,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-7,0,1549,-18,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2050,68,1,2340,51,1,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,835,-4,0,839,-11,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-6,0,908,6,0,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1905,1,0,10,-13,0,0 +2013,9,21,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-4,0,1900,-11,0,0 +2013,10,23,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-9,0,1516,-8,0,0 +2013,9,17,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,14,0,1535,12,0,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-6,0,1451,-16,0,0 +2013,10,13,7,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,732,-5,0,954,-10,0,0 +2013,4,22,1,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1018,11,0,0 +2013,7,2,2,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1200,16,1,1500,16,1,0 +2013,5,14,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1111,-7,0,1325,-14,0,0 +2013,6,12,3,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1435,-5,0,1603,-17,0,0 +2013,6,25,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,-3,0,952,-23,0,0 +2013,8,15,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,-1,0,1920,-12,0,0 +2013,6,22,6,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-6,0,1348,-18,0,0 +2013,9,12,4,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-4,0,1022,-12,0,0 +2013,5,1,3,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,-2,0,1435,-5,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2041,-1,0,2307,-10,0,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1957,-6,0,2013,-5,0,0 +2013,6,25,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,33,1,1907,49,1,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,1,0,2357,-3,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,-1,0,1823,-12,0,0 +2013,10,23,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1436,-7,0,1625,-24,0,0 +2013,6,11,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1725,-5,0,1855,-3,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1522,0,0,1722,-11,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-3,0,2152,-9,0,0 +2013,8,22,4,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,710,38,1,1305,50,1,0 +2013,10,31,4,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,-7,0,1334,-14,0,0 +2013,5,25,6,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1027,27,1,1328,22,1,0 +2013,8,5,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,2,0,1610,-7,0,0 +2013,10,22,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-4,0,1210,-7,0,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1254,-2,0,2058,-1,0,0 +2013,5,18,6,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1950,-4,0,2110,-4,0,0 +2013,4,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1155,4,0,1325,-1,0,0 +2013,8,9,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2125,145,1,2305,140,1,0 +2013,5,12,7,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,700,-5,0,1525,7,0,0 +2013,6,15,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,750,-7,0,935,-12,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,-2,0,2205,-6,0,0 +2013,10,28,1,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,608,-5,0,723,2,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1034,-2,0,1535,-19,0,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,840,12,0,1012,-11,0,0 +2013,4,8,1,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,-6,0,946,-10,0,0 +2013,4,3,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,839,1,0,0 +2013,5,7,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,6,0,809,3,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1444,6,0,1925,-16,0,0 +2013,10,12,6,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-3,0,850,12,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,-5,0,2243,-8,0,0 +2013,9,29,7,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1855,9,0,2030,-12,0,0 +2013,5,1,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,850,-3,0,1010,2,0,0 +2013,9,22,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-1,0,756,-8,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1035,0,0,1130,3,0,0 +2013,8,7,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,32,1,2225,33,1,0 +2013,5,17,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1251,-4,0,1521,-6,0,0 +2013,10,17,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1820,1,0,2230,-21,0,0 +2013,8,2,5,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,736,-2,0,1532,-29,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,1,0,2214,-8,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1510,4,0,1846,-24,0,0 +2013,4,11,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,117,1,1945,114,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,-4,0,1350,-13,0,0 +2013,10,12,6,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1825,-5,0,1945,-16,0,0 +2013,5,13,1,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,0,0,2115,-29,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1730,1,0,1855,-13,0,0 +2013,8,29,4,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1033,46,1,1355,54,1,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,843,-6,0,1255,-3,0,0 +2013,7,31,3,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1506,-8,0,1743,0,0,0 +2013,9,12,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,2046,1,0,2257,-30,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-8,0,1026,-13,0,0 +2013,5,22,3,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,14,0,1210,-7,0,0 +2013,10,10,4,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,2,0,1250,-5,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2140,41,1,2300,39,1,0 +2013,6,27,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,0,0,843,-1,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1056,45,1,1226,36,1,0 +2013,10,19,6,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-4,0,748,-6,0,0 +2013,6,7,5,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,4,0,2254,8,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,39,1,1400,24,1,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-13,0,1610,-4,0,0 +2013,5,16,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,813,-3,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2019,-2,0,2225,6,0,0 +2013,4,10,3,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1140,43,1,1320,25,1,0 +2013,8,16,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-2,0,1755,-7,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2059,36,1,2358,9,0,0 +2013,9,25,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1125,-4,0,1420,-20,0,0 +2013,9,13,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,600,-4,0,708,-14,0,0 +2013,6,22,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1810,11,0,1930,10,0,0 +2013,8,7,3,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,640,-4,0,1441,3,0,0 +2013,5,8,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1915,21,1,1940,6,0,0 +2013,4,26,5,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,54,1,2058,49,1,0 +2013,6,12,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-13,0,1747,-11,0,0 +2013,6,23,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,15,1,1748,11,0,0 +2013,5,5,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1843,-6,0,1942,-12,0,0 +2013,5,20,1,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-8,0,500,11,0,0 +2013,6,29,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,640,0,0,750,-6,0,0 +2013,7,28,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-2,0,927,-7,0,0 +2013,4,27,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-5,0,1820,-13,0,0 +2013,7,14,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-3,0,1338,3,0,0 +2013,4,7,7,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1735,-8,0,2041,-11,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,800,0,0,0 +2013,9,28,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2100,-4,0,2350,-5,0,0 +2013,8,6,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2259,2,0,133,-1,0,0 +2013,6,11,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-7,0,935,-36,0,0 +2013,10,3,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1950,1,0,2115,-1,0,0 +2013,5,10,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,0,0,1554,-4,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,11,0,1925,19,1,0 +2013,10,13,7,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1835,-10,0,2154,-27,0,0 +2013,7,13,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1425,0,0,1610,-17,0,0 +2013,6,13,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1534,-6,0,1852,30,1,0 +2013,9,8,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1200,-4,0,1305,0,0,0 +2013,9,18,3,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,945,-7,0,1336,-42,0,0 +2013,7,5,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1809,22,1,2142,-2,0,0 +2013,5,26,7,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1720,-5,0,1835,6,0,0 +2013,5,16,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-2,0,1152,-8,0,0 +2013,6,11,2,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,600,-6,0,749,-10,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1110,93,1,1237,91,1,0 +2013,7,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,900,1,0,1010,45,1,0 +2013,6,19,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1019,93,1,1150,83,1,0 +2013,7,27,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-1,0,1845,11,0,0 +2013,4,2,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,0,0,725,5,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1030,-3,0,1200,-10,0,0 +2013,8,7,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1200,-2,0,1341,-5,0,0 +2013,6,19,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,15,1,1150,11,0,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-4,0,1808,-12,0,0 +2013,9,24,2,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-4,0,820,-9,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,905,-2,0,1113,-6,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1930,-1,0,2055,-6,0,0 +2013,4,24,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,-4,0,1553,27,1,0 +2013,10,4,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1005,-3,0,1155,13,0,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,830,1,0,925,9,0,0 +2013,10,26,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-4,0,831,-14,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1450,3,0,2020,11,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1355,-2,0,1731,1,0,0 +2013,7,26,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1835,19,1,2140,22,1,0 +2013,4,4,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1005,-7,0,1120,-13,0,0 +2013,8,1,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,2150,-5,0,202,-4,0,0 +2013,9,23,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-6,0,1029,-21,0,0 +2013,6,23,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,943,-7,0,1119,-15,0,0 +2013,9,10,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1215,0,0,1348,-10,0,0 +2013,9,27,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,0,,1241,0,1,1 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1725,10,0,2110,5,0,0 +2013,6,14,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-6,0,1054,-4,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1930,2,0,5,-6,0,0 +2013,6,15,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,905,-3,0,1201,34,1,0 +2013,10,14,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-6,0,910,-14,0,0 +2013,4,5,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1321,-5,0,1444,-4,0,0 +2013,4,30,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,636,-5,0,1455,4,0,0 +2013,10,30,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1635,12,0,27,-7,0,0 +2013,7,6,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1104,-5,0,1450,-16,0,0 +2013,10,2,3,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2345,-13,0,547,-13,0,0 +2013,9,28,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,854,-12,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1610,0,,1735,0,1,1 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1958,-2,0,2117,-12,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-2,0,645,-7,0,0 +2013,5,27,1,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-7,0,1059,-24,0,0 +2013,6,28,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1745,295,1,145,305,1,0 +2013,8,9,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1331,6,0,1406,11,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1340,0,0,1600,-21,0,0 +2013,6,6,4,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-5,0,955,8,0,0 +2013,5,28,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1636,4,0,1926,0,0,0 +2013,10,13,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,5,0,1315,15,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,825,-1,0,1200,-5,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2155,24,1,2315,11,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,940,-3,0,1225,49,1,0 +2013,9,18,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,852,8,0,1030,2,0,0 +2013,4,28,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1943,19,1,0 +2013,4,12,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1801,-3,0,1921,-4,0,0 +2013,8,21,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-10,0,1355,-7,0,0 +2013,5,29,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1515,-5,0,1800,1,0,0 +2013,6,18,2,OO,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2112,-3,0,2316,-10,0,0 +2013,8,15,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-2,0,830,-20,0,0 +2013,10,18,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,800,-5,0,920,-6,0,0 +2013,8,9,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,-3,0,929,3,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,10,0,645,15,1,0 +2013,6,11,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,20,1,1943,15,1,0 +2013,5,19,7,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1050,48,1,1215,55,1,0 +2013,9,18,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-6,0,1430,-4,0,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,13,0,710,4,0,0 +2013,9,10,2,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,-10,0,2206,-14,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,9,0,930,-3,0,0 +2013,7,4,4,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1425,-5,0,1710,-8,0,0 +2013,5,2,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1103,-4,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,-6,0,626,5,0,0 +2013,5,31,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,14,0,1755,12,0,0 +2013,5,3,5,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1454,22,1,1749,-1,0,0 +2013,10,9,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1305,-4,0,2106,-2,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,625,75,1,920,71,1,0 +2013,4,18,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1040,18,1,1210,14,0,0 +2013,6,21,5,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,6,0,2115,8,0,0 +2013,9,17,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1225,6,0,1325,7,0,0 +2013,10,12,6,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1050,-3,0,1325,0,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,4,0,1118,-9,0,0 +2013,4,6,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-1,0,1030,-6,0,0 +2013,7,3,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,840,0,0,1032,16,1,0 +2013,10,16,3,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1816,-10,0,2028,32,1,0 +2013,7,5,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1400,-5,0,1636,-22,0,0 +2013,6,19,3,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-7,0,912,11,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1548,27,1,1831,16,1,0 +2013,7,15,1,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,-2,0,1416,-5,0,0 +2013,10,3,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-2,0,759,-19,0,0 +2013,4,30,2,EV,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1657,-3,0,1917,-17,0,0 +2013,7,15,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-3,0,1415,-8,0,0 +2013,8,13,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-7,0,705,-7,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,5,0,756,-7,0,0 +2013,6,16,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1620,-6,0,1912,-14,0,0 +2013,9,26,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1450,-4,0,1613,-13,0,0 +2013,6,6,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1957,8,0,2126,-1,0,0 +2013,7,18,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2035,41,1,2052,35,1,0 +2013,8,26,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-5,0,1451,4,0,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2130,43,1,2328,19,1,0 +2013,7,24,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1300,23,1,1540,24,1,0 +2013,6,15,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2313,3,0,34,-3,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,4,0,1745,-9,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1437,4,0,1552,9,0,0 +2013,8,6,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1601,14,0,1733,-6,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,19,1,2338,0,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,10,0,2050,5,0,0 +2013,8,15,4,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,-4,0,1740,-17,0,0 +2013,10,18,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-8,0,2020,2,0,0 +2013,7,29,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,-5,0,1815,-18,0,0 +2013,4,24,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-4,0,1253,6,0,0 +2013,5,20,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1149,0,,1310,0,1,1 +2013,6,4,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,-1,0,1450,-1,0,0 +2013,6,14,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1210,0,,1350,0,1,1 +2013,4,8,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,30,-2,0,454,-24,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1125,20,1,1645,17,1,0 +2013,4,8,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,905,5,0,1035,-2,0,0 +2013,7,19,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,6,0,1815,-1,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1305,10,0,1550,5,0,0 +2013,9,28,6,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,1,0,1520,4,0,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1300,41,1,1529,38,1,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1004,2,0,1223,-1,0,0 +2013,10,3,4,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1840,-4,0,2020,3,0,0 +2013,9,24,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-3,0,2103,-5,0,0 +2013,4,6,6,EV,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1448,18,1,1556,10,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1757,-1,0,1956,-8,0,0 +2013,6,30,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1435,233,1,1740,213,1,0 +2013,10,25,5,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1610,30,1,1720,21,1,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,46,1,2355,34,1,0 +2013,7,24,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-4,0,1415,6,0,0 +2013,10,4,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,701,-3,0,930,-2,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1110,1,0,1320,-7,0,0 +2013,6,18,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,3,0,1335,13,0,0 +2013,6,7,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1555,15,1,1651,18,1,0 +2013,8,31,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1030,1,0,1345,-5,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,1,0,2124,-6,0,0 +2013,7,29,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-4,0,1447,-7,0,0 +2013,9,9,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1100,-4,0,1235,-1,0,0 +2013,5,5,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,930,10,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,1,0,5,-14,0,0 +2013,7,2,2,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,915,-1,0,935,-4,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1115,-5,0,1220,-6,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,1,0,1200,-10,0,0 +2013,6,13,4,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1914,115,1,2059,108,1,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,-1,0,1525,-7,0,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,615,-2,0,835,-10,0,0 +2013,6,4,2,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1155,-2,0,1515,3,0,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,855,-5,0,1210,-2,0,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1715,10,0,1941,-4,0,0 +2013,4,7,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1515,-23,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1555,1,0,1720,-4,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,820,3,0,930,1,0,0 +2013,9,12,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,-3,0,2050,-7,0,0 +2013,5,26,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-2,0,1315,28,1,0 +2013,6,30,7,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,649,29,1,1033,30,1,0 +2013,6,13,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,751,-2,0,813,-6,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,24,1,1740,20,1,0 +2013,9,2,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1710,-1,0,1755,13,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,935,-3,0,1210,-7,0,0 +2013,5,28,2,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,3,0,1940,1,0,0 +2013,8,18,7,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-3,0,1035,-23,0,0 +2013,10,7,1,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,7,0,1425,33,1,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1615,34,1,1710,49,1,0 +2013,7,22,1,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,92,1,1643,97,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,1,0,1115,8,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-2,0,1245,-7,0,0 +2013,10,9,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,0,0,2221,7,0,0 +2013,4,8,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-6,0,902,20,1,0 +2013,8,18,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-5,0,1828,-15,0,0 +2013,9,6,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-6,0,1235,-2,0,0 +2013,6,5,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,15,1,1901,6,0,0 +2013,5,26,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,855,-3,0,1100,-17,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,713,-4,0,1045,6,0,0 +2013,7,26,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1336,-1,0,1711,-6,0,0 +2013,6,20,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-5,0,725,-21,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2100,-3,0,2300,22,1,0 +2013,6,8,6,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,-3,0,1701,20,1,0 +2013,7,20,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1205,-3,0,1335,-13,0,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,837,5,0,1149,12,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1940,-3,0,2210,-1,0,0 +2013,5,1,3,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-4,0,1925,-11,0,0 +2013,7,4,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1800,-7,0,2017,-34,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,955,-1,0,1300,-14,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,630,-2,0,914,-13,0,0 +2013,4,23,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1010,61,1,1125,73,1,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2215,-3,0,2358,-15,0,0 +2013,8,10,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,74,1,2131,60,1,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1415,0,0,1542,-3,0,0 +2013,4,30,2,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1220,1,0,1455,-11,0,0 +2013,5,27,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1330,2,0,1430,-2,0,0 +2013,10,1,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,635,-4,0,810,-15,0,0 +2013,8,28,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1026,-6,0,1153,-14,0,0 +2013,4,2,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,30,-4,0,451,-21,0,0 +2013,10,24,4,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,2150,8,0,2305,10,0,0 +2013,9,13,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,740,92,1,750,88,1,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,705,-2,0,1058,3,0,0 +2013,7,21,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2245,27,1,2325,29,1,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1649,1,0,1930,-15,0,0 +2013,10,26,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-4,0,1547,-11,0,0 +2013,6,19,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,655,-1,0,840,-9,0,0 +2013,6,12,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-6,0,1217,-12,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,640,-6,0,1023,-16,0,0 +2013,5,28,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,18,1,2051,5,0,0 +2013,7,7,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,910,-2,0,1015,-11,0,0 +2013,8,11,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-10,0,2159,-9,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1530,12,0,1819,0,0,0 +2013,9,5,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,33,1,825,46,1,0 +2013,6,22,6,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-5,0,1930,-29,0,0 +2013,9,2,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,750,6,0,1007,-4,0,0 +2013,4,8,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-5,0,1245,-10,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2155,13,0,45,4,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1305,11,0,1535,-8,0,0 +2013,4,22,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1750,22,1,1820,15,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,819,-3,0,924,-9,0,0 +2013,4,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2051,-6,0,2124,-5,0,0 +2013,4,13,6,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1734,37,1,2030,18,1,0 +2013,5,23,4,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,15,1,2305,6,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2209,-7,0,2358,-12,0,0 +2013,6,22,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,645,0,0,755,-8,0,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,526,7,0,1050,4,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1939,22,1,2110,11,0,0 +2013,8,4,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,6,0,1630,10,0,0 +2013,4,12,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-6,0,1445,10,0,0 +2013,6,30,7,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,947,4,0,1207,-12,0,0 +2013,10,8,2,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-6,0,1230,-19,0,0 +2013,8,14,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,0,0,900,-17,0,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,-7,0,1158,-12,0,0 +2013,6,3,1,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,705,-5,0,925,-23,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,925,4,0,1400,1,0,0 +2013,8,9,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1123,12,0,1937,17,1,0 +2013,8,6,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1530,4,0,0 +2013,6,19,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,935,4,0,950,-12,0,0 +2013,7,5,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,-8,0,2050,-15,0,0 +2013,6,8,6,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,745,0,,1045,0,1,1 +2013,6,30,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,909,-8,0,1059,-17,0,0 +2013,10,10,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,825,0,0,920,-3,0,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,-5,0,345,-7,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1335,-2,0,1640,-17,0,0 +2013,8,7,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-6,0,853,-13,0,0 +2013,10,22,2,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-4,0,1013,14,0,0 +2013,4,30,2,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1405,4,0,1715,-20,0,0 +2013,6,10,1,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1910,-9,0,2155,-13,0,0 +2013,6,19,3,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,57,1,2005,49,1,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1006,-3,0,1154,-17,0,0 +2013,5,18,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1125,0,0,1200,1,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,0,0,804,-4,0,0 +2013,7,8,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,1028,-4,0,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-4,0,932,-21,0,0 +2013,10,7,1,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-1,0,1125,-3,0,0 +2013,8,9,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-5,0,1821,-21,0,0 +2013,6,9,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,-7,0,1733,-24,0,0 +2013,7,4,4,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,-2,0,2039,-11,0,0 +2013,8,23,5,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1756,-3,0,2039,-5,0,0 +2013,6,18,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,49,1,1850,29,1,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,35,1,1855,29,1,0 +2013,8,28,3,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1905,18,1,2030,18,1,0 +2013,5,6,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-7,0,1345,-9,0,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-5,0,850,16,1,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,23,1,2040,16,1,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1110,0,0,1643,-7,0,0 +2013,10,29,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1055,15,1,1610,24,1,0 +2013,7,20,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,80,1,1809,78,1,0 +2013,8,25,7,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-3,0,912,-27,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,39,1,853,53,1,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1654,-3,0,1756,-10,0,0 +2013,9,20,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-6,0,916,-6,0,0 +2013,5,8,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1402,6,0,1955,9,0,0 +2013,9,16,1,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1329,-7,0,1400,-20,0,0 +2013,7,15,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2048,5,0,2151,2,0,0 +2013,4,20,6,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1554,-7,0,1731,-14,0,0 +2013,9,8,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-7,0,1534,-23,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1524,54,1,1655,42,1,0 +2013,7,6,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-3,0,1820,39,1,0 +2013,6,22,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,5,0,1423,21,1,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2150,89,1,20,81,1,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1533,-3,0,1845,-18,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1530,-4,0,1715,-10,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,-1,0,2059,-31,0,0 +2013,5,21,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,3,0,1830,-12,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,-2,0,1210,-4,0,0 +2013,4,21,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-1,0,1904,-2,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1820,-11,0,2020,-8,0,0 +2013,6,4,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1049,-11,0,0 +2013,10,20,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,820,-4,0,1115,-24,0,0 +2013,6,7,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1110,20,1,1245,1,0,0 +2013,5,29,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1345,83,1,1505,81,1,0 +2013,8,12,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1258,-17,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,12,0,2030,7,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,935,-6,0,1205,-16,0,0 +2013,9,5,4,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,915,-6,0,1150,12,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,39,1,1940,41,1,0 +2013,8,1,4,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,830,-5,0,950,-15,0,0 +2013,7,15,1,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,8,0,2033,-12,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1225,0,0,1502,-10,0,0 +2013,4,28,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,58,1,1809,53,1,0 +2013,8,29,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1725,22,1,1800,11,0,0 +2013,8,16,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2042,33,1,2319,33,1,0 +2013,5,12,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,835,-23,0,0 +2013,8,19,1,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1432,-6,0,1654,-13,0,0 +2013,6,9,7,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,30,1,1335,17,1,0 +2013,9,26,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,5,0,1314,1,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1605,-6,0,1655,-4,0,0 +2013,7,10,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1250,-13,0,1707,-10,0,0 +2013,9,16,1,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1740,-4,0,2045,-14,0,0 +2013,10,26,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,1,0,1010,-1,0,0 +2013,5,3,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1705,-3,0,1910,-23,0,0 +2013,4,11,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1420,59,1,1812,66,1,0 +2013,5,27,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1550,-2,0,1605,-10,0,0 +2013,10,19,6,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1625,9,0,1930,-25,0,0 +2013,8,28,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,46,1,1642,47,1,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1551,318,1,1839,336,1,0 +2013,5,9,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,-5,0,2135,1,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,22,1,1911,16,1,0 +2013,9,24,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,732,-4,0,853,-9,0,0 +2013,10,29,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1825,-2,0,2118,2,0,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1235,1,0,1440,-23,0,0 +2013,4,18,4,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,3,0,2300,26,1,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1057,2,0,1354,7,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1015,-2,0,1330,-9,0,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,-2,0,1348,-7,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,0,0,2205,-6,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2055,11,0,2235,-8,0,0 +2013,9,3,2,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-6,0,925,-21,0,0 +2013,9,29,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1805,18,1,1940,21,1,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1120,79,1,1320,77,1,0 +2013,5,20,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-9,0,1758,-7,0,0 +2013,8,16,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,855,-8,0,955,-11,0,0 +2013,10,17,4,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-4,0,847,-15,0,0 +2013,6,18,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,4,0,2059,2,0,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1430,11,0,1520,5,0,0 +2013,4,12,5,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,730,0,0,915,-13,0,0 +2013,5,7,2,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,-7,0,1130,8,0,0 +2013,6,11,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,2,0,1255,7,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2043,2,0,2302,-4,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2145,11,0,2340,29,1,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,17,1,1055,0,0,0 +2013,8,3,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,-2,0,919,-12,0,0 +2013,8,5,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,5,0,2053,7,0,0 +2013,5,10,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-7,0,1142,-13,0,0 +2013,5,3,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,610,1,0,705,-9,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,755,-3,0,1105,-15,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,927,-2,0,1309,-11,0,0 +2013,6,4,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-7,0,1542,-2,0,0 +2013,7,23,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,5,0,2013,15,1,0 +2013,7,24,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-3,0,838,-1,0,0 +2013,4,24,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,4,0,1955,2,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2010,-5,0,2135,-10,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2021,1,0,2200,28,1,0 +2013,5,8,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1525,48,1,1720,42,1,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2200,21,1,2310,21,1,0 +2013,10,22,2,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1650,-6,0,1939,-12,0,0 +2013,7,25,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,9,0,1914,33,1,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-2,0,845,-12,0,0 +2013,5,12,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1925,4,0,2304,-30,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,730,-3,0,1040,-11,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1914,38,1,2040,31,1,0 +2013,8,6,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1920,-2,0,2030,-13,0,0 +2013,6,12,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-2,0,2110,-6,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,-3,0,2054,-11,0,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,816,-6,0,1624,5,0,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,2000,12,0,2318,-18,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1612,0,0,1703,-9,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,805,1,0,1105,-11,0,0 +2013,7,12,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,705,-9,0,816,-20,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1425,-5,0,1602,-15,0,0 +2013,10,5,6,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1135,-7,0,1355,-5,0,0 +2013,8,22,4,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,122,1,1112,108,1,0 +2013,9,17,2,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1010,2,0,1150,-2,0,0 +2013,9,18,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1544,-5,0,1650,-10,0,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,0,0,2057,40,1,0 +2013,6,15,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1007,2,0,1412,-10,0,0 +2013,8,8,4,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,630,-3,0,920,-3,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2150,31,1,45,25,1,0 +2013,9,6,5,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,700,46,1,742,22,1,0 +2013,9,4,3,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,835,-17,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1100,6,0,1530,1,0,0 +2013,7,21,7,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1115,-7,0,1350,-25,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1550,33,1,1850,38,1,0 +2013,4,19,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,17,1,1440,42,1,0 +2013,4,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1140,-2,0,1315,0,0,0 +2013,4,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1524,0,0,1649,-5,0,0 +2013,6,17,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2147,46,1,2254,57,1,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2040,-4,0,2300,-15,0,0 +2013,5,9,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,-2,0,630,-12,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,-4,0,1348,-6,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1636,-7,0,2142,-40,0,0 +2013,9,12,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1749,10,0,1927,30,1,0 +2013,8,2,5,EV,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-11,0,1010,-21,0,0 +2013,6,14,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,-7,0,10,-3,0,0 +2013,5,21,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,630,-3,0,1125,0,0,0 +2013,4,18,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,-2,0,1934,-20,0,0 +2013,5,16,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-4,0,1912,-8,0,0 +2013,6,22,6,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,78,1,2058,47,1,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1235,0,0,1405,-9,0,0 +2013,4,10,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1700,1,0,1820,-13,0,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1710,11,0,1915,13,0,0 +2013,5,2,4,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,7,0,1115,-12,0,0 +2013,8,11,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-1,0,1329,-15,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2238,1,0,20,-2,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1550,-2,0,1947,-15,0,0 +2013,7,5,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-7,0,1100,-9,0,0 +2013,9,30,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2020,-9,0,2130,-14,0,0 +2013,9,19,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,655,-4,0,825,-16,0,0 +2013,4,9,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1715,-7,0,2000,-9,0,0 +2013,5,8,3,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1040,9,0,1250,2,0,0 +2013,5,7,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,630,-3,0,725,-3,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-7,0,945,-12,0,0 +2013,9,24,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-5,0,2105,-15,0,0 +2013,6,21,5,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,904,-3,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,713,-3,0,1152,-3,0,0 +2013,7,9,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-11,0,1333,-25,0,0 +2013,6,3,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,0,,1505,0,1,1 +2013,6,2,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1405,5,0,1555,-2,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,19,1,1346,31,1,0 +2013,7,21,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,955,5,0,1115,-3,0,0 +2013,9,17,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1405,-4,0,1505,-16,0,0 +2013,8,13,2,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2132,2,0,2344,-3,0,0 +2013,10,18,5,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1225,0,0,1446,9,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1505,168,1,1720,229,1,0 +2013,6,28,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1504,21,1,1630,20,1,0 +2013,4,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1312,-2,0,1435,-3,0,0 +2013,10,21,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,845,52,1,1035,36,1,0 +2013,7,29,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-2,0,1040,3,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,846,-5,0,1638,9,0,0 +2013,4,10,3,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2030,31,1,2209,63,1,0 +2013,5,31,5,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,859,-3,0,1048,-8,0,0 +2013,5,14,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1312,85,1,2136,81,1,0 +2013,4,1,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1200,-4,0,1426,9,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1630,-1,0,1857,-2,0,0 +2013,5,23,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2048,4,0,2303,-4,0,0 +2013,8,16,5,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,725,10,0,925,10,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,900,-3,0,1250,-20,0,0 +2013,4,6,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,-4,0,1642,-18,0,0 +2013,7,25,4,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1430,-2,0,1718,12,0,0 +2013,8,10,6,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-12,0,1809,-12,0,0 +2013,5,27,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-15,0,2308,-2,0,0 +2013,7,2,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1015,-3,0,1025,-9,0,0 +2013,4,25,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2125,12,0,2225,11,0,0 +2013,10,6,7,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1811,-6,0,1931,-12,0,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1945,19,1,2239,14,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-5,0,1102,4,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,-2,0,1130,-21,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1006,1,0,1326,-13,0,0 +2013,7,9,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-8,0,2226,-7,0,0 +2013,8,29,4,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,-6,0,957,-12,0,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,953,-2,0,1216,-5,0,0 +2013,10,25,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1030,4,0,1230,-5,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,18,1,2346,14,0,0 +2013,4,17,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-4,0,1204,11,0,0 +2013,5,14,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1107,-3,0,1445,-22,0,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,913,1,0,1048,-1,0,0 +2013,5,18,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,700,14,0,830,-1,0,0 +2013,6,3,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,945,0,0,1105,-7,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1905,4,0,2328,-2,0,0 +2013,7,29,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,926,-1,0,1119,-4,0,0 +2013,7,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1830,-1,0,1940,-2,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-2,0,910,-20,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,-1,0,1140,17,1,0 +2013,10,26,6,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,845,-3,0,945,-6,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1215,53,1,1930,35,1,0 +2013,10,18,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1455,-2,0,1729,5,0,0 +2013,9,14,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1205,-2,0,1310,0,0,0 +2013,10,23,3,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,955,-4,0,1203,-21,0,0 +2013,5,17,5,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-4,0,1015,-5,0,0 +2013,5,24,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,630,5,0,755,-12,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1655,26,1,1820,27,1,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,925,0,0,1100,-9,0,0 +2013,10,24,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,828,-8,0,1047,-20,0,0 +2013,4,23,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-5,0,1824,-16,0,0 +2013,6,4,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,59,1,1930,74,1,0 +2013,6,21,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1002,-7,0,1239,2,0,0 +2013,7,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1138,-2,0,1519,4,0,0 +2013,10,1,2,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1000,0,0,1110,-12,0,0 +2013,6,18,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-6,0,1035,-3,0,0 +2013,7,11,4,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,730,1,0,840,19,1,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,845,-2,0,1438,-11,0,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-2,0,1931,-6,0,0 +2013,4,25,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1600,-9,0,1622,-10,0,0 +2013,10,15,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,2,0,1905,2,0,0 +2013,6,20,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,1,0,1640,0,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1800,-4,0,2350,0,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,2,0,1820,-2,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,0,0,1643,3,0,0 +2013,7,7,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-6,0,1303,1,0,0 +2013,6,21,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1100,2,0,1245,-5,0,0 +2013,6,22,6,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1703,13,0,1830,0,0,0 +2013,6,26,3,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,26,1,1455,38,1,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,945,-1,0,1120,-18,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,630,2,0,847,-9,0,0 +2013,4,18,4,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1650,44,1,1845,23,1,0 +2013,9,28,6,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-10,0,1245,-5,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1632,-1,0,59,10,0,0 +2013,5,13,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,955,-4,0,1139,-25,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1958,2,0,2117,-21,0,0 +2013,10,18,5,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1910,-6,0,2235,-19,0,0 +2013,4,6,6,WN,12191,William P Hobby,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1100,-3,0,1510,-7,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1515,37,1,2043,21,1,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1942,6,0,2213,24,1,0 +2013,5,5,7,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,920,0,0,1050,-8,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1810,-8,0,2240,-8,0,0 +2013,7,13,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1015,-4,0,1620,-12,0,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1000,-2,0,1318,13,0,0 +2013,9,25,3,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2156,-5,0,2247,-15,0,0 +2013,8,29,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2000,25,1,2005,38,1,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,7,0,1805,6,0,0 +2013,6,4,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1010,111,1,1520,95,1,0 +2013,5,19,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,740,6,0,825,-6,0,0 +2013,10,19,6,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2140,-5,0,605,-19,0,0 +2013,6,26,3,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,2215,64,1,639,41,1,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,78,1,2237,58,1,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1014,8,0,1321,5,0,0 +2013,6,15,6,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,0,,1730,0,1,1 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,62,1,1825,61,1,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,-1,0,1355,-3,0,0 +2013,9,28,6,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,759,-7,0,1057,-24,0,0 +2013,7,22,1,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-1,0,713,-19,0,0 +2013,9,20,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,3,0,1100,40,1,0 +2013,7,4,4,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,720,-2,0,1444,10,0,0 +2013,9,10,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,-2,0,1848,-23,0,0 +2013,9,9,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,14,0,1615,14,0,0 +2013,6,4,2,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-5,0,1545,0,0,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1715,-4,0,1847,-29,0,0 +2013,10,12,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,0,0,1335,3,0,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,920,14,0,1235,0,0,0 +2013,7,24,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1110,0,0,1240,-6,0,0 +2013,4,16,2,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1015,-5,0,1130,5,0,0 +2013,6,28,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-4,0,855,-15,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,-1,0,1130,-13,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,733,-3,0,847,0,0,0 +2013,7,31,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,97,1,1800,74,1,0 +2013,4,16,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,1528,0,0,1759,-24,0,0 +2013,7,20,6,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-1,0,857,-5,0,0 +2013,9,2,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1035,3,0,1240,11,0,0 +2013,5,17,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,705,-1,0,718,-4,0,0 +2013,10,23,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-2,0,1946,-11,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1325,34,1,1745,23,1,0 +2013,9,14,6,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1435,12,0,1732,5,0,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1120,-1,0,1339,-9,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,-1,0,1505,-1,0,0 +2013,4,5,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,10,0,1500,2,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,-2,0,1740,-20,0,0 +2013,6,20,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,13,0,2008,12,0,0 +2013,9,22,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-5,0,1039,-10,0,0 +2013,8,29,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-6,0,830,-6,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,-3,0,745,-7,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,1,0,1311,-8,0,0 +2013,4,28,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-5,0,1010,-21,0,0 +2013,8,7,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,-4,0,1335,-10,0,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-3,0,913,-13,0,0 +2013,7,31,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,-2,0,2200,-18,0,0 +2013,5,30,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,815,-5,0,1024,-9,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,0,0,1040,8,0,0 +2013,6,8,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1820,18,1,1925,5,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,625,9,0,740,0,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,119,1,2155,115,1,0 +2013,6,1,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1649,0,0,1726,0,0,0 +2013,5,6,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1020,-5,0,1218,-4,0,0 +2013,9,3,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1920,50,1,2035,53,1,0 +2013,4,25,4,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1710,24,1,2002,57,1,0 +2013,10,26,6,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1509,-5,0,1627,-16,0,0 +2013,10,2,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,-5,0,2115,-26,0,0 +2013,5,24,5,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1140,12,0,1258,14,0,0 +2013,7,23,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1400,-3,0,1440,-5,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1420,-1,0,1555,-7,0,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2030,-1,0,2224,5,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1645,9,0,1805,9,0,0 +2013,7,31,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1940,22,1,2035,17,1,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1945,134,1,2110,128,1,0 +2013,7,7,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,3,0,1518,-10,0,0 +2013,8,25,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1540,-9,0,0 +2013,8,18,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1025,3,0,1245,3,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-6,0,840,10,0,0 +2013,10,20,7,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1014,-9,0,1313,-15,0,0 +2013,8,29,4,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1930,-2,0,25,-1,0,0 +2013,8,28,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,20,1,1735,34,1,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-2,0,924,-20,0,0 +2013,5,4,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1050,-1,0,1205,-6,0,0 +2013,5,29,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,705,135,1,903,134,1,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1355,-1,0,1541,-4,0,0 +2013,4,17,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,6,0,1345,-1,0,0 +2013,4,20,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,4,0,1447,7,0,0 +2013,9,24,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1930,0,0,2159,43,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2140,193,1,2320,192,1,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1800,11,0,1915,-10,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2055,16,1,2155,14,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1205,2,0,1402,-4,0,0 +2013,5,16,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-4,0,920,4,0,0 +2013,6,22,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1526,0,0,1639,-12,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-2,0,1102,-7,0,0 +2013,7,7,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1810,-4,0,1925,-12,0,0 +2013,10,27,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,1,0,1000,-5,0,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,0,0,917,-19,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2155,36,1,25,38,1,0 +2013,8,19,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,0,0,1525,5,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2105,-3,0,2250,-3,0,0 +2013,10,16,3,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1500,76,1,1758,46,1,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,955,-2,0,1119,6,0,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,835,0,0,1105,13,0,0 +2013,7,20,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-1,0,1850,-8,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-2,0,2103,-14,0,0 +2013,10,25,5,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1101,9,0,1230,2,0,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1420,0,0,1625,23,1,0 +2013,4,7,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1129,-21,0,0 +2013,6,11,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,13,0,1150,10,0,0 +2013,9,19,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1253,-7,0,1355,-5,0,0 +2013,9,17,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1745,-6,0,2005,10,0,0 +2013,7,12,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1459,-8,0,1649,-12,0,0 +2013,8,20,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,2001,-6,0,2024,-15,0,0 +2013,8,2,5,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1040,0,0,1559,-26,0,0 +2013,6,27,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,6,0,2035,-1,0,0 +2013,5,27,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-8,0,704,-9,0,0 +2013,4,6,6,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1305,6,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,10,0,1819,10,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,22,1,1706,20,1,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-4,0,1350,-4,0,0 +2013,4,17,3,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1845,0,0,2059,1,0,0 +2013,4,20,6,UA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1520,113,1,1753,130,1,0 +2013,8,12,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1709,-5,0,1954,-15,0,0 +2013,8,23,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,2013,28,1,2220,28,1,0 +2013,7,5,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,3,0,1237,2,0,0 +2013,4,17,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,140,1,1849,153,1,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2127,16,1,2305,-10,0,0 +2013,6,9,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,18,1,937,11,0,0 +2013,4,15,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-3,0,1100,-11,0,0 +2013,8,26,1,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1027,1,0,1124,6,0,0 +2013,8,8,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,725,-13,0,0 +2013,5,9,4,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,838,-1,0,1008,-13,0,0 +2013,6,8,6,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,735,-10,0,0 +2013,7,23,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,809,-10,0,0 +2013,8,27,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,-2,0,1822,-4,0,0 +2013,4,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2000,13,0,2125,9,0,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-6,0,1520,5,0,0 +2013,8,27,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1640,16,1,1715,29,1,0 +2013,8,30,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1720,-2,0,1841,-10,0,0 +2013,4,29,1,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1659,-10,0,1906,-23,0,0 +2013,4,23,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1815,200,1,1955,179,1,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,600,-9,0,750,-23,0,0 +2013,8,13,2,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,15,1,1639,2,0,0 +2013,4,21,7,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1630,50,1,1815,44,1,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2050,51,1,2302,45,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1200,-1,0,1413,-10,0,0 +2013,7,4,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1510,-8,0,1745,-24,0,0 +2013,8,9,5,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-10,0,1027,-12,0,0 +2013,6,26,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,800,-3,0,1005,-8,0,0 +2013,6,21,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1358,11,0,1542,7,0,0 +2013,10,17,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,735,-7,0,907,-19,0,0 +2013,9,1,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1015,6,0,1345,-8,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-8,0,1310,-27,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1215,-7,0,1409,-18,0,0 +2013,4,5,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2117,132,1,2358,132,1,0 +2013,10,27,7,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,2015,-5,0,2155,-5,0,0 +2013,6,1,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1625,164,1,1800,174,1,0 +2013,5,12,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,810,3,0,0 +2013,10,9,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,-5,0,1726,-1,0,0 +2013,9,11,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,-10,0,2050,-14,0,0 +2013,9,24,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,-9,0,1145,-11,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,756,197,1,1106,237,1,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,942,0,0,1101,-15,0,0 +2013,8,12,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,910,-7,0,1105,-21,0,0 +2013,4,28,7,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1945,-7,0,2135,-18,0,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,610,-3,0,730,-16,0,0 +2013,5,13,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,7,0,1455,-3,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,841,-3,0,1054,-36,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,0,0,1410,-1,0,0 +2013,6,13,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1405,-3,0,1455,-4,0,0 +2013,10,10,4,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,2,0,803,23,1,0 +2013,6,16,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,1008,-17,0,0 +2013,7,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2110,47,1,2329,43,1,0 +2013,4,2,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1431,-3,0,1643,-10,0,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,0,0,2100,-7,0,0 +2013,6,21,5,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1950,156,1,2228,137,1,0 +2013,7,16,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,-7,0,1315,-18,0,0 +2013,7,4,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1840,-4,0,2130,-9,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1045,-2,0,1156,-14,0,0 +2013,7,3,3,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,31,1,1905,12,0,0 +2013,8,11,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2000,4,0,2125,7,0,0 +2013,7,10,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,1015,7,0,0 +2013,10,16,3,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1640,3,0,1805,-12,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,92,1,2025,81,1,0 +2013,8,5,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,16,1,1038,-3,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1755,11,0,2005,-4,0,0 +2013,4,12,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-5,0,1801,-13,0,0 +2013,8,3,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,952,-9,0,1119,-4,0,0 +2013,7,12,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1537,62,1,1900,70,1,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1840,-2,0,1940,-6,0,0 +2013,9,16,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1640,-5,0,1920,-13,0,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,3,0,1320,1,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1957,14,0,2142,21,1,0 +2013,10,2,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2204,-5,0,15,-26,0,0 +2013,5,24,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,625,16,1,800,4,0,0 +2013,7,10,3,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-2,0,1420,-6,0,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,2200,5,0,513,-8,0,0 +2013,10,10,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,840,0,0,1025,-6,0,0 +2013,10,3,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-4,0,1755,-22,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1817,1,0,2004,10,0,0 +2013,5,9,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-4,0,1712,-7,0,0 +2013,8,24,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1550,7,0,1655,4,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,630,-1,0,910,3,0,0 +2013,6,4,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1925,-4,0,2304,-26,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1635,-3,0,1938,-49,0,0 +2013,6,12,3,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,700,-8,0,1246,-10,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1245,-1,0,1520,-18,0,0 +2013,10,10,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1355,-4,0,1455,-24,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2110,97,1,2215,91,1,0 +2013,6,13,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,40,1,1135,67,1,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,655,-6,0,809,-15,0,0 +2013,4,12,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1310,249,1,1600,235,1,0 +2013,6,27,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1530,12,0,1815,22,1,0 +2013,5,22,3,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,18,1,1846,28,1,0 +2013,6,16,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1250,7,0,1405,1,0,0 +2013,8,7,3,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,925,0,0,1132,-3,0,0 +2013,5,20,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,620,1,0,715,-7,0,0 +2013,10,15,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-6,0,1835,1,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1021,4,0,1342,13,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-3,0,1945,19,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,0,0,1835,-2,0,0 +2013,9,11,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1655,58,1,1840,37,1,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2035,24,1,2145,31,1,0 +2013,7,20,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2042,15,1,454,3,0,0 +2013,10,6,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1055,-12,0,1350,-16,0,0 +2013,8,28,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,12,0,1911,16,1,0 +2013,7,22,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1856,5,0,2017,2,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1036,-3,0,1240,6,0,0 +2013,6,22,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,-3,0,1325,5,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1030,0,0,1133,0,0,0 +2013,7,30,2,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,834,-3,0,1032,-4,0,0 +2013,7,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,4,0,2205,1,0,0 +2013,6,15,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-4,0,1335,-21,0,0 +2013,8,17,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,845,-2,0,1023,-1,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,7,0,903,6,0,0 +2013,9,2,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1205,43,1,1335,41,1,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1959,4,0,2159,2,0,0 +2013,6,22,6,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,846,20,1,1141,22,1,0 +2013,4,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,837,-2,0,940,-1,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2114,176,1,2211,164,1,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,755,-5,0,1105,-20,0,0 +2013,9,19,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,825,6,0,1146,-5,0,0 +2013,9,20,5,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,915,11,0,1135,14,0,0 +2013,6,22,6,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,0,0,2213,5,0,0 +2013,4,21,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1025,13,0,1304,-6,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1010,27,1,1220,25,1,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2055,51,1,2221,25,1,0 +2013,8,16,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,930,-2,0,1235,7,0,0 +2013,9,9,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,1,0,1218,15,1,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,1,0,1005,13,0,0 +2013,7,30,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2020,76,1,2151,69,1,0 +2013,4,24,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1131,7,0,1633,1,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-3,0,1120,-25,0,0 +2013,7,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-5,0,1556,-10,0,0 +2013,6,21,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1655,2,0,1822,-11,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1135,16,1,1340,11,0,0 +2013,7,10,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1524,142,1,1645,185,1,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,812,-1,0,914,-5,0,0 +2013,6,2,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,610,-4,0,615,-3,0,0 +2013,10,5,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-4,0,600,-26,0,0 +2013,9,4,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,-5,0,2025,-7,0,0 +2013,6,3,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1120,108,1,1514,95,1,0 +2013,7,3,3,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,704,-15,0,1030,-15,0,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-4,0,949,9,0,0 +2013,10,13,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,3,0,1540,-4,0,0 +2013,5,28,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1150,1,0,1225,-3,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1750,20,1,2310,13,0,0 +2013,9,23,1,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,-1,0,1845,-3,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2156,-3,0,34,-21,0,0 +2013,8,7,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1725,-1,0,2005,0,0,0 +2013,10,12,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,655,-10,0,828,-18,0,0 +2013,9,30,1,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,905,-2,0,1105,-7,0,0 +2013,9,5,4,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1552,1,0,1842,31,1,0 +2013,8,2,5,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,705,34,1,720,25,1,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2045,-5,0,2313,-30,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-3,0,1428,-5,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,18,1,2120,49,1,0 +2013,9,19,4,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,26,1,1227,43,1,0 +2013,7,16,2,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-2,0,2135,-1,0,0 +2013,4,14,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,1906,8,0,0 +2013,6,9,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,24,1,1552,20,1,0 +2013,10,30,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-9,0,1005,-12,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1910,58,1,2235,33,1,0 +2013,7,18,4,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1332,1,0,1438,-6,0,0 +2013,5,23,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1729,83,1,2044,99,1,0 +2013,7,13,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,89,1,1548,89,1,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-4,0,1230,-2,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1323,-4,0,1500,-1,0,0 +2013,5,11,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,1,0,1208,-16,0,0 +2013,9,26,4,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1525,-4,0,1720,-18,0,0 +2013,6,11,2,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1553,-5,0,2140,-16,0,0 +2013,5,11,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1042,-6,0,1211,-14,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1500,30,1,1630,19,1,0 +2013,4,6,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1930,-2,0,2020,-8,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1515,0,0,1605,-1,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1359,22,1,1636,-3,0,0 +2013,6,9,7,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,0,0,2050,10,0,0 +2013,10,13,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,-6,0,1255,-9,0,0 +2013,7,6,6,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,1,0,1955,-3,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,-4,0,1530,-12,0,0 +2013,6,15,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,835,-30,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2105,-7,0,2225,-8,0,0 +2013,10,31,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,4,0,1840,-8,0,0 +2013,5,23,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,2,0,1338,0,1,1 +2013,10,9,3,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,2150,0,0,2305,0,0,0 +2013,8,16,5,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,807,-6,0,0 +2013,5,30,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,840,-5,0,1038,-11,0,0 +2013,5,30,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1615,4,0,1752,10,0,0 +2013,5,9,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1730,12,0,1923,10,0,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1329,-5,0,1652,-17,0,0 +2013,8,1,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,23,1,1905,8,0,0 +2013,8,22,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2015,64,1,2105,68,1,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1725,-4,0,2047,-17,0,0 +2013,6,30,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,97,1,2254,88,1,0 +2013,8,17,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2130,-3,0,2240,5,0,0 +2013,10,23,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,719,0,0,1014,2,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,43,1,2240,28,1,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1309,-5,0,1440,-8,0,0 +2013,9,23,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-2,0,924,-4,0,0 +2013,7,17,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1627,-9,0,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1641,-12,0,1821,-14,0,0 +2013,9,29,7,9E,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1100,-8,0,1244,-16,0,0 +2013,8,14,3,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1555,-10,0,2340,-4,0,0 +2013,4,11,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1030,57,1,1150,42,1,0 +2013,5,20,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,-4,0,1945,-4,0,0 +2013,8,29,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1910,19,1,2025,12,0,0 +2013,9,7,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1726,-12,0,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1017,4,0,1239,-2,0,0 +2013,10,13,7,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,740,25,1,1245,33,1,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,7,0,1624,11,0,0 +2013,6,6,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,17,1,2035,12,0,0 +2013,4,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-8,0,907,-10,0,0 +2013,5,13,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,0,,1214,0,1,1 +2013,8,14,3,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1700,67,1,1845,72,1,0 +2013,8,23,5,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,620,-1,0,730,13,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,1,0,955,5,0,0 +2013,4,16,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-6,0,722,-5,0,0 +2013,8,5,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1415,-1,0,1540,-7,0,0 +2013,7,25,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1100,-4,0,1200,10,0,0 +2013,7,26,5,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1745,-3,0,2030,5,0,0 +2013,6,1,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,17,1,1825,31,1,0 +2013,8,14,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1859,-6,0,2147,43,1,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1218,10,0,1324,19,1,0 +2013,6,24,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1156,-4,0,1402,-15,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,905,-5,0,1607,-3,0,0 +2013,8,5,1,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1820,-2,0,2025,-1,0,0 +2013,4,4,4,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1519,6,0,2002,-35,0,0 +2013,8,11,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1800,27,1,1850,28,1,0 +2013,7,3,3,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,-1,0,1730,16,1,0 +2013,9,14,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,0,0,1640,-11,0,0 +2013,6,19,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1200,22,1,1805,25,1,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,8,0,1115,-10,0,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1910,10,0,2125,6,0,0 +2013,4,6,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,700,0,0,1015,-8,0,0 +2013,6,21,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,833,-21,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1740,33,1,1857,23,1,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,-4,0,2055,-19,0,0 +2013,9,19,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1700,-1,0,2027,-21,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,13,0,1515,15,1,0 +2013,6,6,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1104,8,0,1124,6,0,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1934,-2,0,2226,-48,0,0 +2013,7,22,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1050,-9,0,0 +2013,6,24,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-7,0,905,-11,0,0 +2013,7,18,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1730,23,1,1950,10,0,0 +2013,7,20,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,-4,0,717,-14,0,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-1,0,1300,13,0,0 +2013,6,1,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1020,-3,0,1220,-23,0,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-4,0,1829,38,1,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,710,-1,0,1010,0,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1154,-5,0,1340,-31,0,0 +2013,10,22,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-6,0,1006,-14,0,0 +2013,9,19,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,39,1,2013,32,1,0 +2013,7,29,1,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,810,178,1,1025,191,1,0 +2013,5,10,5,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,713,11,0,1445,10,0,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1330,-3,0,1455,3,0,0 +2013,10,7,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,826,17,1,1053,11,0,0 +2013,4,14,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,14,0,1910,18,1,0 +2013,5,13,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1152,-7,0,1308,2,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1810,17,1,2215,17,1,0 +2013,7,22,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2000,7,0,2115,0,0,0 +2013,8,6,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,150,1,1627,165,1,0 +2013,4,15,1,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,850,0,0,950,9,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,2125,4,0,50,-3,0,0 +2013,4,5,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-7,0,830,-14,0,0 +2013,6,25,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1645,13,0,1842,-5,0,0 +2013,4,6,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,618,-8,0,718,-7,0,0 +2013,10,2,3,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1758,0,0,1845,11,0,0 +2013,5,13,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-3,0,1329,-34,0,0 +2013,6,16,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-8,0,1759,-17,0,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,1155,-23,0,0 +2013,10,28,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,834,0,0,1034,3,0,0 +2013,5,13,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1542,-11,0,1656,-13,0,0 +2013,8,28,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,550,-8,0,758,-11,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,830,-7,0,950,-9,0,0 +2013,8,24,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1455,12,0,1555,0,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,-5,0,2115,-10,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,-4,0,1805,-3,0,0 +2013,5,9,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-6,0,851,-19,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,945,1,0,1207,-14,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-1,0,2111,-31,0,0 +2013,6,10,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1929,85,1,2229,52,1,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1334,-3,0,1432,-8,0,0 +2013,4,10,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,820,0,0,930,-6,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,40,1,2123,27,1,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-4,0,1759,-6,0,0 +2013,8,11,7,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,640,-5,0,1140,-21,0,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,642,-4,0,940,-14,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,-3,0,1758,11,0,0 +2013,10,2,3,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1035,-1,0,1305,3,0,0 +2013,6,27,4,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1840,91,1,2103,86,1,0 +2013,7,26,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,-6,0,1729,-16,0,0 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1446,5,0,1714,6,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,830,-3,0,1235,-2,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1121,-1,0,1305,3,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,-1,0,2059,-10,0,0 +2013,9,28,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-1,0,1655,-12,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-2,0,2249,-7,0,0 +2013,5,9,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1629,96,1,1814,92,1,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1450,1,0,1610,-1,0,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,640,-10,0,808,-30,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,0,0,2000,-12,0,0 +2013,5,23,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,223,1,1538,258,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,4,0,1328,7,0,0 +2013,7,14,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2140,8,0,2255,2,0,0 +2013,10,27,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,8,0,2126,13,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,-3,0,1658,-4,0,0 +2013,4,1,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,62,1,1715,53,1,0 +2013,6,10,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1949,82,1,2059,70,1,0 +2013,7,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2007,31,1,2259,25,1,0 +2013,5,8,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1505,-2,0,1554,-10,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2027,22,1,19,6,0,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,740,184,1,837,162,1,0 +2013,5,26,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,845,5,0,1257,1,0,0 +2013,4,11,4,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,945,228,1,1245,243,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1432,-1,0,1554,-9,0,0 +2013,4,11,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-5,0,2153,28,1,0 +2013,4,6,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-7,0,1700,-12,0,0 +2013,8,30,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1324,-6,0,1457,-20,0,0 +2013,5,19,7,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,630,-3,0,1454,9,0,0 +2013,8,19,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1556,2,0,1818,-14,0,0 +2013,7,21,7,DL,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2213,12,0,620,-3,0,0 +2013,4,2,2,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,930,0,0,1240,-5,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1805,35,1,2320,34,1,0 +2013,10,27,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1711,-7,0,2344,-24,0,0 +2013,8,18,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,730,-10,0,845,-23,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,810,8,0,1125,2,0,0 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,15,1,1640,-1,0,0 +2013,4,26,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,515,-3,0,802,-13,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,536,-8,0,806,-18,0,0 +2013,9,7,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1350,-6,0,1512,-20,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,853,1,0,1254,-7,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,2,0,1206,-17,0,0 +2013,10,1,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-7,0,1620,-20,0,0 +2013,8,8,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,19,1,1635,2,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1055,1,0,1200,-14,0,0 +2013,5,4,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-1,0,1213,33,1,0 +2013,6,5,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1007,-8,0,1153,-23,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2205,147,1,2335,136,1,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1735,26,1,2000,30,1,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,-1,0,1710,3,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,-3,0,1230,2,0,0 +2013,6,23,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,4,0,900,-5,0,0 +2013,6,15,6,9E,12339,Indianapolis International,Indianapolis,IN,10721,Logan International,Boston,MA,1330,-6,0,1545,-26,0,0 +2013,9,6,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1210,-4,0,1400,-35,0,0 +2013,9,6,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1142,5,0,1300,9,0,0 +2013,8,23,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,836,64,1,1022,52,1,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,2,0,2155,-20,0,0 +2013,10,13,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,920,3,0,1210,6,0,0 +2013,6,20,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1103,-2,0,1640,-23,0,0 +2013,8,10,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-1,0,619,-13,0,0 +2013,9,16,1,9E,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,625,-1,0,748,-12,0,0 +2013,7,25,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,618,-9,0,1452,-18,0,0 +2013,4,3,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1345,6,0,1510,10,0,0 +2013,7,9,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,805,2,0,850,-8,0,0 +2013,10,13,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1350,10,0,1510,6,0,0 +2013,7,28,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-6,0,642,-2,0,0 +2013,10,25,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,726,-9,0,0 +2013,5,2,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,104,1,1412,112,1,0 +2013,10,23,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-2,0,1848,-4,0,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1740,-2,0,1919,-2,0,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1956,19,1,2145,6,0,0 +2013,10,2,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1251,-12,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,7,0,1415,5,0,0 +2013,8,19,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1210,-4,0,1655,-2,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1410,13,0,1500,20,1,0 +2013,7,28,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,0,0,2025,1,0,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1615,-2,0,1833,-22,0,0 +2013,8,25,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1400,2,0,1425,-12,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,4,0,1735,0,0,0 +2013,4,8,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,740,42,1,935,16,1,0 +2013,8,19,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2045,25,1,2210,20,1,0 +2013,7,14,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1435,19,1,1635,5,0,0 +2013,10,31,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1415,-6,0,1550,-13,0,0 +2013,4,7,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-8,0,830,-11,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1330,13,0,1845,6,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,6,0,2005,-16,0,0 +2013,9,15,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,-2,0,2035,-13,0,0 +2013,7,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2022,64,1,12,54,1,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1355,0,0,1650,-22,0,0 +2013,10,21,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,915,0,0,1050,-6,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1905,-2,0,2342,-16,0,0 +2013,5,3,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,955,-3,0,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2040,48,1,2320,36,1,0 +2013,10,19,6,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1511,-13,0,1705,-8,0,0 +2013,4,9,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-18,0,835,-10,0,0 +2013,5,27,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1602,-3,0,1855,-4,0,0 +2013,10,30,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1515,-7,0,1645,-12,0,0 +2013,7,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2000,15,1,2158,23,1,0 +2013,8,1,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1650,13,0,1814,7,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,-2,0,1630,1,0,0 +2013,5,16,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,715,-2,0,830,-3,0,0 +2013,5,4,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,3,0,1340,-3,0,0 +2013,8,1,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,17,1,2230,3,0,0 +2013,10,7,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1520,3,0,1645,0,0,0 +2013,7,25,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,20,1,2014,11,0,0 +2013,7,15,1,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1703,-9,0,1810,-13,0,0 +2013,8,16,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1741,12,0,2035,-1,0,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,730,-4,0,1037,-12,0,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1520,17,1,1650,28,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1540,69,1,1809,96,1,0 +2013,10,26,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1335,-10,0,1441,3,0,0 +2013,9,20,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1615,36,1,1745,22,1,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1100,15,1,1658,-15,0,0 +2013,5,4,6,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2200,-3,0,853,-16,0,0 +2013,10,13,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1330,-5,0,1510,-7,0,0 +2013,5,15,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,0,0,730,-11,0,0 +2013,8,7,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-7,0,1105,-19,0,0 +2013,4,8,1,WN,15376,Tucson International,Tucson,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1720,-2,0,1925,-4,0,0 +2013,5,1,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1100,-3,0,1923,12,0,0 +2013,10,21,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1001,-4,0,1125,-10,0,0 +2013,9,19,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,739,-6,0,941,-19,0,0 +2013,7,14,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,0,0,1006,-20,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,107,1,1440,114,1,0 +2013,4,10,3,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1840,231,1,2110,218,1,0 +2013,4,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,-6,0,1225,-6,0,0 +2013,7,17,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,2,0,835,17,1,0 +2013,5,3,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,76,1,2045,60,1,0 +2013,9,17,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1955,-5,0,2250,-4,0,0 +2013,8,27,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,-1,0,951,9,0,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,918,-5,0,1204,1,0,0 +2013,7,29,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2320,107,1,510,87,1,0 +2013,6,26,3,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,1515,1,0,2105,-4,0,0 +2013,10,7,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,16,1,1725,18,1,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-5,0,949,1,0,0 +2013,9,2,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,14,0,1705,10,0,0 +2013,7,16,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,24,1,1843,27,1,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,1,0,2204,-14,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2055,3,0,2205,5,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2040,-2,0,2155,5,0,0 +2013,9,16,1,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1344,-8,0,1554,-15,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1140,7,0,1725,10,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,730,-2,0,1142,-5,0,0 +2013,5,5,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1510,0,0,1725,-7,0,0 +2013,9,2,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-6,0,1854,-19,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,-2,0,1803,3,0,0 +2013,10,5,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,6,0,1025,8,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,-3,0,1040,11,0,0 +2013,7,17,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1101,-1,0,1206,-15,0,0 +2013,10,30,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-6,0,1855,3,0,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1510,-4,0,2048,2,0,0 +2013,7,19,5,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2040,11,0,2142,37,1,0 +2013,10,7,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1425,0,0,1721,-13,0,0 +2013,5,31,5,9E,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1012,12,0,1313,21,1,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,930,56,1,1530,40,1,0 +2013,9,6,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,533,66,1,632,85,1,0 +2013,9,27,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-2,0,733,-2,0,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1950,19,1,2145,10,0,0 +2013,7,4,4,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,755,-3,0,1040,-9,0,0 +2013,9,30,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1145,-4,0,1240,-11,0,0 +2013,10,19,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,-3,0,1303,-5,0,0 +2013,6,1,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,600,0,0,955,4,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,954,-6,0,1117,5,0,0 +2013,10,15,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1330,-6,0,2155,-31,0,0 +2013,10,25,5,EV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,959,-3,0,1135,-5,0,0 +2013,9,23,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-8,0,754,-13,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1155,0,0,1410,-10,0,0 +2013,9,23,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,-6,0,2132,-13,0,0 +2013,6,14,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,5,0,1010,11,0,0 +2013,7,2,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,949,-5,0,1103,-6,0,0 +2013,7,30,2,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,3,0,1210,-5,0,0 +2013,6,13,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1137,8,0,1229,13,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,849,13,0,1517,54,1,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-7,0,2004,-2,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1700,19,1,1915,8,0,0 +2013,7,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,-7,0,1033,-7,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1945,16,1,2345,-2,0,0 +2013,6,27,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,900,22,1,1201,19,1,0 +2013,6,1,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,36,1,2025,18,1,0 +2013,4,1,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1910,-1,0,2015,-8,0,0 +2013,5,25,6,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2120,11,0,2229,6,0,0 +2013,5,1,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1924,18,1,2246,27,1,0 +2013,8,8,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-3,0,1940,-3,0,0 +2013,9,22,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1539,6,0,1716,16,1,0 +2013,9,28,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,-5,0,2227,-15,0,0 +2013,9,1,7,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-3,0,1314,-21,0,0 +2013,8,21,3,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1019,4,0,1440,2,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1438,15,1,1628,25,1,0 +2013,5,29,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1935,47,1,2309,69,1,0 +2013,8,23,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,-3,0,2320,-5,0,0 +2013,4,17,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,-8,0,1419,-18,0,0 +2013,6,30,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,901,-13,0,1024,-8,0,0 +2013,6,27,4,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-8,0,1210,-9,0,0 +2013,5,27,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1453,-10,0,1539,-14,0,0 +2013,8,10,6,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1445,45,1,1550,40,1,0 +2013,7,30,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-12,0,741,1,0,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1506,-2,0,1613,-2,0,0 +2013,5,29,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-1,0,1709,3,0,0 +2013,5,19,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-5,0,656,2,0,0 +2013,10,4,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1005,118,1,1306,102,1,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1220,-2,0,1425,0,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-4,0,2200,-6,0,0 +2013,10,18,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,8,0,1420,0,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1726,-1,0,1818,9,0,0 +2013,7,9,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-3,0,1258,-15,0,0 +2013,8,4,7,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,0,0,1615,-5,0,0 +2013,4,28,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2122,11,0,10,27,1,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1630,87,1,1910,93,1,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,740,-1,0,855,-8,0,0 +2013,6,24,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,2,0,1210,20,1,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1925,39,1,2250,17,1,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1200,6,0,1320,-5,0,0 +2013,9,30,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1355,-4,0,1611,-20,0,0 +2013,7,29,1,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1954,-3,0,2103,-4,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1346,-4,0,1517,-15,0,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,645,0,,805,0,1,1 +2013,8,5,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,14,0,1630,27,1,0 +2013,4,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,850,0,0,1015,-4,0,0 +2013,5,29,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-3,0,2138,-4,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1340,3,0,1503,-9,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2010,7,0,2105,-2,0,0 +2013,5,3,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1115,-9,0,1219,-2,0,0 +2013,8,15,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,0,0,1635,12,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1920,64,1,25,46,1,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1050,-4,0,1459,-10,0,0 +2013,5,12,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-2,0,2220,-53,0,0 +2013,10,4,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,-2,0,2050,63,1,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,11,0,1205,-4,0,0 +2013,9,23,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1817,3,0,2151,-13,0,0 +2013,4,15,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1310,1,0,1405,5,0,0 +2013,4,21,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,9,0,2245,-21,0,0 +2013,7,10,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,10,0,1340,13,0,0 +2013,4,7,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1315,176,1,2126,148,1,0 +2013,6,21,5,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1932,-6,0,30,-12,0,0 +2013,7,15,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1305,32,1,1616,50,1,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1245,0,0,1440,0,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2115,166,1,5,181,1,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,3,0,1758,8,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-3,0,754,10,0,0 +2013,5,1,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,954,0,0,1215,16,1,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1456,-1,0,1622,-14,0,0 +2013,6,27,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,625,-3,0,738,-5,0,0 +2013,7,16,2,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1134,97,1,1306,89,1,0 +2013,9,21,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1434,23,1,1609,15,1,0 +2013,6,5,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1510,39,1,1605,42,1,0 +2013,8,4,7,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2225,-1,0,630,-19,0,0 +2013,8,28,3,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-4,0,1907,-14,0,0 +2013,10,1,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-4,0,1014,-18,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1605,-4,0,1750,-11,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1725,10,0,1850,7,0,0 +2013,9,15,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1007,-9,0,1304,-23,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,700,0,0,1155,-12,0,0 +2013,10,7,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1659,-3,0,2213,-12,0,0 +2013,4,5,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,730,21,1,1026,-7,0,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,813,3,0,1005,-24,0,0 +2013,5,16,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,36,1,951,67,1,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2155,19,1,2340,5,0,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,-2,0,1035,-7,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1150,57,1,1410,44,1,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1035,-1,0,1400,-7,0,0 +2013,8,1,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,816,-2,0,1416,-15,0,0 +2013,9,19,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1905,13,0,2005,34,1,0 +2013,7,22,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1810,28,1,1932,17,1,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2039,2,0,2316,9,0,0 +2013,6,28,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,948,127,1,1040,123,1,0 +2013,9,14,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-5,0,927,-14,0,0 +2013,5,24,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,828,6,0,0 +2013,6,13,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,9,0,2017,-4,0,0 +2013,10,1,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,87,1,1757,82,1,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1049,18,1,1308,10,0,0 +2013,7,22,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1639,-1,0,1750,-10,0,0 +2013,4,12,5,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,915,-5,0,1205,-16,0,0 +2013,9,6,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1620,25,1,1730,21,1,0 +2013,4,21,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1635,53,1,1851,60,1,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2055,13,0,2205,25,1,0 +2013,9,12,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1015,-4,0,1120,-7,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1220,10,0,1340,-17,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1510,10,0,1843,15,1,0 +2013,7,11,4,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,943,-3,0,1416,-6,0,0 +2013,9,23,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,630,-5,0,831,-20,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,-2,0,730,-9,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2110,-1,0,2351,-1,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1320,14,0,1640,7,0,0 +2013,4,11,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2126,0,,2239,0,1,1 +2013,6,9,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,72,1,1655,65,1,0 +2013,8,5,1,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-7,0,1223,-6,0,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2116,33,1,2248,7,0,0 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,2040,68,1,2220,74,1,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1115,-1,0,1302,-8,0,0 +2013,6,27,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1355,0,,1514,0,1,1 +2013,9,21,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,1006,-3,0,0 +2013,5,2,4,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,-2,0,1357,20,1,0 +2013,10,25,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1915,79,1,2145,69,1,0 +2013,4,22,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1243,1,0,1330,-2,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1129,39,1,1252,25,1,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1150,4,0,1325,-14,0,0 +2013,9,17,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-9,0,1215,-27,0,0 +2013,10,2,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,-1,0,1404,4,0,0 +2013,7,6,6,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,800,-6,0,935,-22,0,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1355,-5,0,1715,-27,0,0 +2013,6,29,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,84,1,1820,93,1,0 +2013,5,11,6,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,904,-6,0,1049,-28,0,0 +2013,4,6,6,YV,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-9,0,1654,-13,0,0 +2013,4,29,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-4,0,1520,-11,0,0 +2013,5,2,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1646,141,1,1814,142,1,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,14,0,1440,6,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,-7,0,830,-5,0,0 +2013,9,4,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2125,2,0,146,-3,0,0 +2013,8,28,3,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-12,0,711,-21,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,-2,0,1615,-30,0,0 +2013,7,20,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,805,-13,0,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1725,39,1,1830,45,1,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,750,-3,0,927,7,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2109,-6,0,2234,-6,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,-2,0,1225,9,0,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1750,4,0,2323,-8,0,0 +2013,5,16,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,17,1,1722,12,0,0 +2013,7,24,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1625,-6,0,1720,-23,0,0 +2013,5,17,5,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1000,-1,0,1220,-11,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2114,31,1,2221,23,1,0 +2013,5,4,6,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,0,0,830,-9,0,0 +2013,5,22,3,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-3,0,733,-19,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,0,0,1922,-8,0,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1020,-5,0,1435,-26,0,0 +2013,9,27,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,4,0,924,-16,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1210,13,0,1325,16,1,0 +2013,5,9,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2010,-6,0,2254,1,0,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,735,-3,0,925,6,0,0 +2013,8,18,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,-10,0,928,-11,0,0 +2013,7,29,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-3,0,1538,-10,0,0 +2013,4,29,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1730,78,1,1835,100,1,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2115,24,1,2353,4,0,0 +2013,6,1,6,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,959,-8,0,1259,0,0,0 +2013,9,6,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-7,0,844,-14,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1512,-3,0,1754,2,0,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1235,-1,0,1845,-31,0,0 +2013,9,14,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-5,0,1320,-9,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1758,119,1,2044,100,1,0 +2013,9,13,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1337,-8,0,1505,-14,0,0 +2013,8,28,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,34,1,1950,28,1,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,-3,0,925,-22,0,0 +2013,9,5,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1455,11,0,1810,9,0,0 +2013,7,6,6,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1835,-8,0,2155,-32,0,0 +2013,7,21,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,-1,0,1902,45,1,0 +2013,9,7,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1610,-6,0,1718,5,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-3,0,952,5,0,0 +2013,7,21,7,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1805,1,0,1925,-14,0,0 +2013,4,14,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,3,0,806,7,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1100,-3,0,1255,-15,0,0 +2013,8,12,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1835,211,1,2035,223,1,0 +2013,9,20,5,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1240,6,0,1610,-4,0,0 +2013,5,11,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1430,-7,0,1545,-11,0,0 +2013,9,19,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,715,-5,0,846,25,1,0 +2013,9,11,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,945,-3,0,1135,-24,0,0 +2013,6,8,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,925,4,0,1220,4,0,0 +2013,5,23,4,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1204,22,1,1704,59,1,0 +2013,7,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1355,-7,0,1505,-13,0,0 +2013,7,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,2025,-5,0,2345,1,0,0 +2013,5,23,4,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2115,737,1,2220,745,1,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-4,0,1844,-16,0,0 +2013,7,3,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1943,85,1,2211,80,1,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,53,1,1232,44,1,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1335,37,1,1620,44,1,0 +2013,4,16,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,951,-7,0,1035,-10,0,0 +2013,10,10,4,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1919,-5,0,2234,-23,0,0 +2013,9,6,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1333,-2,0,1418,-3,0,0 +2013,5,11,6,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1205,4,0,1805,8,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,28,1,2241,17,1,0 +2013,8,11,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2005,-7,0,2210,-18,0,0 +2013,5,8,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,600,-4,0,715,-10,0,0 +2013,4,11,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,646,-6,0,812,-13,0,0 +2013,7,18,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,125,1,2030,115,1,0 +2013,9,1,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1450,22,1,1610,14,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,740,-1,0,1305,-14,0,0 +2013,9,23,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-1,0,808,-7,0,0 +2013,6,22,6,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1215,-1,0,1427,-35,0,0 +2013,8,12,1,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,-5,0,1230,-16,0,0 +2013,5,1,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-1,0,1945,-3,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-1,0,1256,-19,0,0 +2013,8,2,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,-2,0,750,-7,0,0 +2013,9,3,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,-5,0,1630,-21,0,0 +2013,5,19,7,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,650,3,0,810,5,0,0 +2013,4,29,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1750,-3,0,1900,-9,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1655,-2,0,1955,-11,0,0 +2013,9,25,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-9,0,845,-22,0,0 +2013,9,29,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,755,-3,0,920,-8,0,0 +2013,10,22,2,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1355,-9,0,1506,-12,0,0 +2013,7,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,15,1,2320,3,0,0 +2013,7,6,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,932,-20,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,57,1,2150,56,1,0 +2013,9,3,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1630,-6,0,1730,-6,0,0 +2013,5,8,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-5,0,1912,-10,0,0 +2013,7,27,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,10,0,1940,-10,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,546,-1,0,716,-5,0,0 +2013,5,16,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1425,-3,0,1512,-11,0,0 +2013,10,13,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1058,2,0,1132,4,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1755,201,1,1935,191,1,0 +2013,6,17,1,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,810,-6,0,1100,-8,0,0 +2013,7,30,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1355,13,0,1714,8,0,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2010,3,0,2210,-3,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1055,-5,0,1115,-6,0,0 +2013,9,12,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,610,-7,0,930,-1,0,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1330,0,,1525,0,1,1 +2013,6,18,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,830,36,1,955,30,1,0 +2013,7,21,7,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,71,1,900,59,1,0 +2013,5,12,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,0,0,1919,6,0,0 +2013,6,3,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-3,0,1019,-4,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-1,0,1355,-15,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1815,-3,0,2008,-5,0,0 +2013,10,18,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,540,495,1,637,500,1,0 +2013,7,15,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1814,-4,0,2105,-10,0,0 +2013,6,15,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-9,0,1155,-8,0,0 +2013,8,26,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1935,4,0,2020,-9,0,0 +2013,7,10,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2010,-1,0,2136,-3,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,750,2,0,900,9,0,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,0,0,913,-20,0,0 +2013,10,9,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,840,3,0,0 +2013,10,25,5,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-1,0,2202,6,0,0 +2013,6,12,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1505,-1,0,1620,-14,0,0 +2013,5,11,6,EV,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,835,2,0,937,-3,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,718,-8,0,1026,-17,0,0 +2013,8,5,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1048,-11,0,1422,-16,0,0 +2013,6,12,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,723,-3,0,820,6,0,0 +2013,7,6,6,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,-2,0,1345,-7,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1020,0,0,1430,-10,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,10,0,1610,8,0,0 +2013,4,12,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,63,1,1355,64,1,0 +2013,10,26,6,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1805,-1,0,1959,-11,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,710,166,1,1548,153,1,0 +2013,9,4,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1417,2,0,0 +2013,8,23,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1701,-3,0,1747,-6,0,0 +2013,6,9,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,83,1,2030,82,1,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1750,5,0,1910,-6,0,0 +2013,10,14,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1239,-7,0,1400,20,1,0 +2013,8,12,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1320,19,1,1520,25,1,0 +2013,4,15,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,0,0,1035,-4,0,0 +2013,9,20,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1822,16,1,1924,4,0,0 +2013,9,2,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1635,2,0,1735,-7,0,0 +2013,8,20,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1415,-10,0,1819,-16,0,0 +2013,7,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,850,-4,0,923,-2,0,0 +2013,6,1,6,YV,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,-14,0,2058,-15,0,0 +2013,9,2,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,541,592,1,857,617,1,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,-1,0,2210,-6,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-3,0,900,-16,0,0 +2013,7,21,7,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,29,1,1025,32,1,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,-4,0,1515,-16,0,0 +2013,8,9,5,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1904,116,1,2150,120,1,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1227,20,1,1836,13,0,0 +2013,9,11,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-1,0,1350,-6,0,0 +2013,10,3,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,1,0,1604,0,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,19,1,1520,29,1,0 +2013,9,29,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,1527,-21,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,17,1,1900,21,1,0 +2013,6,13,4,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1236,-1,0,1335,10,0,0 +2013,4,12,5,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,-11,0,2125,38,1,0 +2013,6,30,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,945,42,1,1105,53,1,0 +2013,7,29,1,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1116,3,0,1439,0,0,0 +2013,10,12,6,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,700,-9,0,856,-6,0,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1205,36,1,1650,26,1,0 +2013,8,25,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1229,-8,0,1535,-1,0,0 +2013,4,27,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,750,-3,0,1038,-5,0,0 +2013,7,17,3,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,77,1,1330,82,1,0 +2013,10,27,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,913,-4,0,1132,-10,0,0 +2013,6,18,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1300,123,1,1445,124,1,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1510,11,0,1740,7,0,0 +2013,5,5,7,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,705,-3,0,1010,-14,0,0 +2013,8,23,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1627,3,0,2002,0,0,0 +2013,8,9,5,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1109,8,0,1145,13,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1553,7,0,1750,-10,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1525,18,1,1630,15,1,0 +2013,7,16,2,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,6,0,1400,-2,0,0 +2013,4,22,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1620,-4,0,1805,-37,0,0 +2013,6,17,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,0,0,1700,-1,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1035,9,0,1200,8,0,0 +2013,9,26,4,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1920,-7,0,2105,-6,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1900,19,1,2026,15,1,0 +2013,5,25,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1550,130,1,1730,117,1,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-4,0,850,6,0,0 +2013,4,4,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,645,0,0,1235,-10,0,0 +2013,9,16,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,6,0,1350,4,0,0 +2013,5,3,5,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1520,36,1,1700,51,1,0 +2013,5,11,6,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1330,1,0,1500,-5,0,0 +2013,5,26,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,6,0,1432,-14,0,0 +2013,6,26,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1750,0,0,1845,7,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1538,43,1,1644,59,1,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2220,6,0,2320,7,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,835,3,0,940,-4,0,0 +2013,10,23,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,655,9,0,725,3,0,0 +2013,5,3,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,936,21,1,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,11,0,1825,7,0,0 +2013,10,19,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,900,0,0,1235,-16,0,0 +2013,10,30,3,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,600,-6,0,1140,-31,0,0 +2013,10,21,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,855,12,0,1550,1,0,0 +2013,7,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,720,-2,0,750,-10,0,0 +2013,10,25,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,5,0,1320,-3,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1540,11,0,2300,28,1,0 +2013,5,3,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,655,-2,0,0 +2013,6,10,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1645,56,1,2025,65,1,0 +2013,5,12,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,-7,0,2050,-13,0,0 +2013,9,12,4,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,18,1,1630,0,1,1 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,920,2,0,1210,-27,0,0 +2013,10,29,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1430,-3,0,1635,-28,0,0 +2013,10,18,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,732,-6,0,903,-14,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,56,1,1550,38,1,0 +2013,10,28,1,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1225,-4,0,2044,14,0,0 +2013,6,4,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1829,-5,0,2035,7,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2100,-3,0,2236,-23,0,0 +2013,8,6,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1809,0,0,2020,0,0,0 +2013,10,26,6,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,648,-10,0,0 +2013,5,13,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,925,0,0,1040,-3,0,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1354,-1,0,1558,-7,0,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1825,37,1,1935,43,1,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,740,-4,0,931,-9,0,0 +2013,7,24,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,36,1,1645,27,1,0 +2013,10,27,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,919,-5,0,1015,2,0,0 +2013,6,9,7,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1500,2,0,2055,2,0,0 +2013,8,30,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,15,1,930,11,0,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,81,1,1330,127,1,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1336,2,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,530,-4,0,810,9,0,0 +2013,7,5,5,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1227,-5,0,1455,5,0,0 +2013,9,6,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-4,0,2013,-18,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,-1,0,2000,-7,0,0 +2013,5,18,6,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,631,-9,0,756,-26,0,0 +2013,8,9,5,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1249,86,1,1534,88,1,0 +2013,5,22,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1220,-2,0,1400,-12,0,0 +2013,7,11,4,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1710,-4,0,1945,-1,0,0 +2013,6,11,2,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,3,0,2120,-37,0,0 +2013,9,15,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1635,32,1,1900,33,1,0 +2013,6,28,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,42,1,1835,23,1,0 +2013,10,22,2,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2345,-9,0,547,-40,0,0 +2013,7,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,727,-5,0,839,-8,0,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,116,1,1350,105,1,0 +2013,4,19,5,9E,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1930,0,,2146,0,1,1 +2013,6,29,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1505,-1,0,1602,-7,0,0 +2013,6,3,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-15,0,1926,-12,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,824,15,1,1035,-5,0,0 +2013,9,24,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,-5,0,1616,-14,0,0 +2013,9,15,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-6,0,1634,-16,0,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,-6,0,1438,-14,0,0 +2013,5,19,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-7,0,1314,-8,0,0 +2013,8,15,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,-9,0,905,-10,0,0 +2013,4,19,5,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1420,29,1,1647,80,1,0 +2013,10,31,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1715,-2,0,2235,-10,0,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,6,0,1102,-9,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,-5,0,2041,-9,0,0 +2013,9,11,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,720,-2,0,845,-11,0,0 +2013,7,26,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1350,56,1,1550,50,1,0 +2013,8,23,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-9,0,1250,-12,0,0 +2013,8,25,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2320,-5,0,828,-20,0,0 +2013,4,8,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,930,0,0,1103,-18,0,0 +2013,8,22,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,957,-3,0,1202,-5,0,0 +2013,4,12,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11618,Newark Liberty International,Newark,NJ,953,0,,1115,0,1,1 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-2,0,2019,-4,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1035,-2,0,1200,0,0,0 +2013,4,29,1,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1735,-12,0,1822,-15,0,0 +2013,5,1,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1957,-1,0,2107,-12,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,935,-5,0,1221,15,1,0 +2013,9,12,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1040,-2,0,1155,-3,0,0 +2013,8,1,4,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,545,-6,0,905,-17,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,-4,0,1059,-14,0,0 +2013,9,18,3,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,820,8,0,1405,-8,0,0 +2013,9,8,7,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1110,-3,0,1235,1,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1557,144,1,1737,184,1,0 +2013,5,27,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1405,-1,0,1435,-7,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2155,18,1,15,15,1,0 +2013,10,31,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,545,-3,0,855,-37,0,0 +2013,4,5,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,22,1,930,23,1,0 +2013,5,27,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,758,-14,0,0 +2013,7,11,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1905,0,0,2100,-6,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1640,50,1,2000,89,1,0 +2013,9,17,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,600,-9,0,808,0,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1525,-3,0,1655,-19,0,0 +2013,8,8,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,-1,0,919,0,0,0 +2013,8,9,5,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1510,-2,0,1900,6,0,0 +2013,9,7,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1120,-11,0,1308,2,0,0 +2013,9,16,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,-4,0,1312,11,0,0 +2013,9,19,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-7,0,1728,-9,0,0 +2013,6,23,7,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-4,0,910,-9,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,705,3,0,1058,-1,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,10,0,1634,0,0,0 +2013,4,17,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2311,-2,0,646,-10,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-5,0,1950,-21,0,0 +2013,5,29,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-1,0,810,-3,0,0 +2013,6,25,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1410,0,0,1646,80,1,0 +2013,7,10,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,12,0,805,7,0,0 +2013,6,29,6,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,822,-18,0,0 +2013,8,24,6,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1125,0,0,1420,-7,0,0 +2013,5,12,7,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1358,-6,0,1704,-31,0,0 +2013,4,17,3,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,700,11,0,946,8,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,-5,0,2059,-3,0,0 +2013,4,21,7,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1528,-9,0,1825,-9,0,0 +2013,4,11,4,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1820,11,0,2030,-13,0,0 +2013,9,29,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-2,0,2009,-6,0,0 +2013,6,8,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1135,-4,0,1245,-2,0,0 +2013,9,2,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-4,0,1405,-27,0,0 +2013,7,9,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,640,-4,0,1140,0,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1054,-2,0,1158,-8,0,0 +2013,8,22,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1324,144,1,1437,146,1,0 +2013,4,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1910,-1,0,2015,-5,0,0 +2013,9,26,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,10,0,2350,-5,0,0 +2013,6,6,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,645,10,0,938,3,0,0 +2013,4,21,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1815,35,1,1920,26,1,0 +2013,7,14,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1905,0,,2015,0,1,1 +2013,6,29,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,615,16,1,750,13,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2118,-5,0,2359,-42,0,0 +2013,6,29,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,123,1,1458,115,1,0 +2013,9,21,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,650,3,0,918,22,1,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1055,0,,1215,0,1,1 +2013,6,11,2,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-12,0,1050,-27,0,0 +2013,6,13,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,-3,0,725,-10,0,0 +2013,5,6,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2320,-8,0,706,-1,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1659,-1,0,1851,-47,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1742,9,0,1914,-11,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,753,-6,0,848,-6,0,0 +2013,4,29,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1545,0,0,1827,-11,0,0 +2013,7,15,1,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1655,29,1,1810,17,1,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,3,0,1409,16,1,0 +2013,10,17,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1934,-13,0,2149,-13,0,0 +2013,9,23,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,4,0,1014,-15,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1843,13,0,2200,37,1,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2025,30,1,2135,22,1,0 +2013,10,5,6,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1205,4,0,1730,4,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1624,80,1,1816,76,1,0 +2013,6,13,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,4,0,2145,10,0,0 +2013,9,7,6,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1405,12,0,1800,7,0,0 +2013,8,30,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13244,Memphis International,Memphis,TN,1655,0,0,1800,4,0,0 +2013,10,26,6,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-4,0,2250,1,0,0 +2013,5,27,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1020,-3,0,1205,-10,0,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,1,0,1455,-13,0,0 +2013,6,4,2,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1910,-4,0,2155,-14,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-1,0,1653,-16,0,0 +2013,8,19,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-6,0,707,-16,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1655,46,1,2230,55,1,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1936,-1,0,2056,-2,0,0 +2013,8,9,5,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,735,-5,0,855,-16,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1955,-4,0,2157,-16,0,0 +2013,8,9,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2113,141,1,2235,125,1,0 +2013,10,1,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,2,0,2035,1,0,0 +2013,7,6,6,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1625,1,0,1815,-7,0,0 +2013,4,9,2,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1655,3,0,1848,-2,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,620,0,0,740,-8,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1301,12,0,1434,29,1,0 +2013,9,24,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1620,27,1,2020,9,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,10,0,6,-9,0,0 +2013,6,8,6,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1645,-6,0,1810,-12,0,0 +2013,9,15,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,825,-3,0,1000,-8,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,610,-5,0,905,-10,0,0 +2013,9,5,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,26,1,2031,1,0,0 +2013,6,29,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,-11,0,2340,6,0,0 +2013,5,17,5,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-1,0,1045,-16,0,0 +2013,4,24,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2001,-14,0,2136,-17,0,0 +2013,9,11,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,755,-5,0,1022,-15,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1225,34,1,1330,22,1,0 +2013,7,9,2,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-2,0,1105,-7,0,0 +2013,6,16,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,600,-1,0,700,-1,0,0 +2013,6,13,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-4,0,1524,4,0,0 +2013,8,19,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-6,0,955,-7,0,0 +2013,5,19,7,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1740,68,1,1846,48,1,0 +2013,7,13,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,740,-24,0,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1451,54,1,1605,44,1,0 +2013,6,8,6,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,643,-11,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-3,0,900,-11,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1115,4,0,1510,-7,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,2000,2,0,30,17,1,0 +2013,6,13,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1025,-2,0,1355,-5,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1500,8,0,1615,1,0,0 +2013,8,10,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1942,-3,0,2106,1,0,0 +2013,8,21,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1305,21,1,1555,21,1,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1700,0,,1820,0,1,1 +2013,6,27,4,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,0,,1923,0,1,1 +2013,10,16,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1857,19,1,2000,19,1,0 +2013,7,25,4,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,-11,0,1357,-3,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,17,1,1805,14,0,0 +2013,8,3,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,805,-15,0,0 +2013,10,15,2,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1400,33,1,1955,3,0,0 +2013,5,15,3,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1125,-3,0,1336,4,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2055,6,0,2351,11,0,0 +2013,8,17,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1920,-5,0,2020,1,0,0 +2013,10,10,4,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,900,8,0,1157,-6,0,0 +2013,4,1,1,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1030,-4,0,1134,-11,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1521,17,1,1807,5,0,0 +2013,4,2,2,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,1,0,840,-3,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1335,-5,0,1815,-9,0,0 +2013,9,4,3,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-11,0,1508,-23,0,0 +2013,5,15,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,-4,0,825,-15,0,0 +2013,5,30,4,US,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-9,0,1857,-4,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,-1,0,847,-11,0,0 +2013,4,28,7,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,-7,0,1854,8,0,0 +2013,5,15,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-11,0,1719,8,0,0 +2013,6,3,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,1125,9,0,0 +2013,5,10,5,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,130,1,1535,136,1,0 +2013,7,10,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,76,1,1620,70,1,0 +2013,6,16,7,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1358,-12,0,1545,-17,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2302,-2,0,25,-7,0,0 +2013,8,20,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1650,12,0,1814,6,0,0 +2013,4,20,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2000,5,0,2129,21,1,0 +2013,8,29,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,615,5,0,740,-9,0,0 +2013,9,6,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-3,0,1635,-7,0,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2210,-3,0,2355,-2,0,0 +2013,9,18,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1917,75,1,2044,66,1,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2250,17,1,444,-6,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1351,3,0,1519,2,0,0 +2013,8,20,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-5,0,2350,-16,0,0 +2013,4,16,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-9,0,1557,-13,0,0 +2013,6,9,7,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2150,0,0,620,-35,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,102,1,1720,99,1,0 +2013,7,17,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1955,45,1,2229,45,1,0 +2013,5,14,2,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1115,1,0,1250,-10,0,0 +2013,8,1,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1900,-5,0,2135,-3,0,0 +2013,4,24,3,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,752,0,0,1547,1,0,0 +2013,5,17,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1050,-2,0,1145,-1,0,0 +2013,10,11,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-9,0,1654,-6,0,0 +2013,5,7,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1025,-1,0,1130,-10,0,0 +2013,7,18,4,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-11,0,1950,-20,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,-5,0,2123,0,0,0 +2013,6,25,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1955,39,1,2229,43,1,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-7,0,2200,-7,0,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1500,-3,0,1715,-10,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1425,11,0,1950,25,1,0 +2013,4,14,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,-8,0,1900,-26,0,0 +2013,10,3,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1735,0,,1841,0,1,1 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,20,1,2205,10,0,0 +2013,6,4,2,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,23,1,1600,36,1,0 +2013,9,10,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1313,-5,0,1920,-6,0,0 +2013,5,15,3,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,2,0,1914,4,0,0 +2013,6,23,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,9,0,1306,16,1,0 +2013,4,15,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,5,0,2135,4,0,0 +2013,4,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,751,3,0,852,-2,0,0 +2013,4,21,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,1,0,2124,2,0,0 +2013,9,1,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1725,1,0,1925,9,0,0 +2013,8,16,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,0,0,1625,19,1,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,600,24,1,705,19,1,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2148,0,0,100,-33,0,0 +2013,5,27,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,725,-2,0,1030,-4,0,0 +2013,10,10,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,25,3,0,806,4,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,844,-5,0,956,-12,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2158,22,1,2358,31,1,0 +2013,10,16,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,707,0,0,1028,-1,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1845,66,1,1955,60,1,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,23,1,2240,20,1,0 +2013,9,19,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1635,-11,0,0 +2013,7,31,3,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,-1,0,1553,-10,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,-2,0,1545,-15,0,0 +2013,5,8,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1612,77,1,1834,67,1,0 +2013,4,29,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2155,-3,0,2315,-6,0,0 +2013,5,31,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-8,0,1609,-13,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,0,,2115,0,1,1 +2013,10,23,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1000,-2,0,1205,-5,0,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1135,23,1,1250,22,1,0 +2013,6,10,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1735,9,0,2020,10,0,0 +2013,7,11,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1602,-15,0,0 +2013,4,1,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,610,-8,0,944,-2,0,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,843,-4,0,1111,-23,0,0 +2013,6,8,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,-6,0,1415,-15,0,0 +2013,9,3,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1945,0,0,2055,-2,0,0 +2013,7,12,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,0,0,1320,-3,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2040,-5,0,2206,-9,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,8,0,1245,0,0,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1738,7,0,1959,-12,0,0 +2013,10,31,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1650,-8,0,1839,6,0,0 +2013,8,9,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,847,-9,0,0 +2013,7,14,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,810,-6,0,0 +2013,5,12,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,950,3,0,1130,-11,0,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1915,19,1,2150,10,0,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1515,1,0,1640,-10,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1801,-3,0,1902,23,1,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-1,0,908,-9,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1849,0,0,1951,-9,0,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,906,-6,0,1753,-7,0,0 +2013,8,21,3,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1600,21,1,1901,57,1,0 +2013,10,22,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-4,0,1315,-13,0,0 +2013,9,9,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-7,0,1317,-7,0,0 +2013,5,22,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-6,0,1635,-13,0,0 +2013,6,1,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1210,28,1,1525,21,1,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1340,-3,0,1615,-9,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,833,39,1,1055,27,1,0 +2013,5,15,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,6,0,1230,5,0,0 +2013,9,11,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,0,0,1555,-6,0,0 +2013,10,13,7,WN,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1645,17,1,1905,28,1,0 +2013,4,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1230,-5,0,1354,9,0,0 +2013,4,7,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-10,0,1304,-12,0,0 +2013,10,22,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,727,-10,0,0 +2013,8,31,6,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1003,10,0,1135,-3,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1828,1,0,2303,24,1,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,9,0,1720,-4,0,0 +2013,7,23,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1615,11,0,1715,7,0,0 +2013,10,28,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1810,-5,0,1923,-10,0,0 +2013,7,23,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-5,0,859,-16,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2005,32,1,2154,19,1,0 +2013,9,24,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-3,0,1241,-13,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1850,-1,0,2025,7,0,0 +2013,4,11,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,-2,0,2203,38,1,0 +2013,7,6,6,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,942,-2,0,1134,0,0,0 +2013,10,19,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,0,0,750,-11,0,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,10,0,955,8,0,0 +2013,5,20,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,62,1,1840,97,1,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1755,3,0,2027,19,1,0 +2013,8,6,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-5,0,810,-15,0,0 +2013,5,7,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-8,0,1905,0,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,955,21,1,1510,6,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1435,4,0,1540,-4,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,1,0,1701,7,0,0 +2013,7,1,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-7,0,1740,-13,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,625,-2,0,740,-5,0,0 +2013,9,26,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1541,0,0,1641,9,0,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1615,3,0,1742,22,1,0 +2013,7,15,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,9,0,1655,18,1,0 +2013,10,26,6,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1100,5,0,1636,1,0,0 +2013,6,20,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,1145,0,0,0 +2013,5,24,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-5,0,1205,-13,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1929,46,1,2209,19,1,0 +2013,4,28,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-2,0,1248,-11,0,0 +2013,10,22,2,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1128,12,0,1359,-4,0,0 +2013,10,1,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1610,-2,0,1625,-3,0,0 +2013,7,28,7,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,730,11,0,941,16,1,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1115,2,0,1325,-1,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1655,25,1,1940,42,1,0 +2013,7,28,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-6,0,1530,-4,0,0 +2013,10,21,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1810,-6,0,2125,-25,0,0 +2013,6,11,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,2025,-37,0,0 +2013,8,3,6,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,2150,4,0,2251,-12,0,0 +2013,7,13,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,-2,0,1923,-5,0,0 +2013,4,18,4,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,644,-8,0,902,-14,0,0 +2013,9,21,6,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1010,24,1,1100,31,1,0 +2013,6,2,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-6,0,914,-26,0,0 +2013,8,7,3,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1524,3,0,1845,-12,0,0 +2013,8,21,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,-2,0,2135,-6,0,0 +2013,7,1,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1744,1,0,2009,-10,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,700,-4,0,1008,-13,0,0 +2013,5,23,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,137,1,2055,131,1,0 +2013,8,23,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,0,0,2140,4,0,0 +2013,7,21,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1940,305,1,2035,288,1,0 +2013,7,14,7,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-6,0,842,-19,0,0 +2013,5,7,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-2,0,1015,-35,0,0 +2013,8,11,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1855,13,0,2050,8,0,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1205,5,0,1450,1,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1345,0,0,1440,-12,0,0 +2013,5,25,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1210,-8,0,1306,-13,0,0 +2013,7,9,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,-8,0,1934,1,0,0 +2013,9,18,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,919,-11,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2204,15,1,2323,-4,0,0 +2013,4,24,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1229,9,0,0 +2013,4,9,2,EV,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,818,240,1,1114,273,1,0 +2013,5,22,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,600,7,0,720,-2,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,0,0,1720,-5,0,0 +2013,7,13,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,20,1,830,33,1,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1135,34,1,1420,29,1,0 +2013,7,15,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-1,0,1305,-17,0,0 +2013,6,20,4,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,833,0,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1945,-7,0,2124,-23,0,0 +2013,8,4,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,6,0,1855,-1,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1430,34,1,1535,40,1,0 +2013,8,15,4,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1352,-3,0,1404,-19,0,0 +2013,10,24,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,720,-1,0,935,8,0,0 +2013,10,24,4,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-9,0,2104,-17,0,0 +2013,10,18,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,650,-4,0,820,-6,0,0 +2013,5,13,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-7,0,847,-11,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1620,0,0,1810,-4,0,0 +2013,4,21,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1450,13,0,1732,28,1,0 +2013,4,20,6,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,930,9,0,1255,1,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,10,0,1910,-2,0,0 +2013,4,8,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,0,0,850,-5,0,0 +2013,9,18,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-4,0,1045,-10,0,0 +2013,4,23,2,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1033,0,0,1406,2,0,0 +2013,7,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1235,0,,1355,0,1,1 +2013,5,21,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1457,7,0,1751,3,0,0 +2013,7,3,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,725,-17,0,0 +2013,8,29,4,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,-4,0,1125,-6,0,0 +2013,6,22,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,4,0,2204,39,1,0 +2013,10,10,4,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,12,0,940,19,1,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2250,23,1,2356,18,1,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1045,-5,0,1221,-13,0,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,-2,0,2218,-16,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,11,0,1425,-3,0,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,840,13,0,1704,7,0,0 +2013,8,18,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,929,-7,0,1032,-17,0,0 +2013,6,19,3,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,-2,0,1200,-6,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1143,-5,0,2023,-31,0,0 +2013,9,27,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1000,5,0,1133,4,0,0 +2013,9,19,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1100,50,1,1235,36,1,0 +2013,8,27,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,5,0,1511,2,0,0 +2013,5,2,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2135,-2,0,2319,-8,0,0 +2013,4,18,4,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,620,-2,0,750,-9,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2149,-2,0,2329,-7,0,0 +2013,7,9,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1525,-5,0,1635,0,0,0 +2013,7,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,5,0,1353,28,1,0 +2013,9,14,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1040,-5,0,1240,-12,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,29,1,1415,12,0,0 +2013,6,25,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,39,1,2140,39,1,0 +2013,9,10,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,-9,0,1635,-14,0,0 +2013,6,25,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-6,0,808,-23,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,0,0,1605,1,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-7,0,2017,-30,0,0 +2013,7,1,1,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1340,35,1,1800,33,1,0 +2013,8,6,2,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1600,155,1,1901,151,1,0 +2013,4,6,6,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2051,-4,0,2204,-13,0,0 +2013,5,19,7,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,-1,0,1846,37,1,0 +2013,10,23,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1905,-7,0,2027,-6,0,0 +2013,9,29,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1952,-3,0,2007,-7,0,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2131,-3,0,600,-34,0,0 +2013,10,21,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1144,14,0,0 +2013,7,23,2,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-6,0,1222,10,0,0 +2013,5,9,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-2,0,1008,-12,0,0 +2013,7,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1403,3,0,1708,6,0,0 +2013,8,22,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1055,162,1,1205,166,1,0 +2013,6,27,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,-1,0,725,0,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1720,147,1,1748,142,1,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1540,10,0,1800,1,0,0 +2013,8,28,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2035,2,0,2125,-3,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1443,31,1,1925,8,0,0 +2013,7,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,12,0,1155,6,0,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1110,2,0,1413,14,0,0 +2013,10,9,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,635,1,0,755,-5,0,0 +2013,5,13,1,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,845,-2,0,1105,-24,0,0 +2013,6,22,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,121,1,1807,127,1,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1205,-2,0,1345,0,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,16,1,957,8,0,0 +2013,6,29,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,600,0,,605,0,1,1 +2013,8,28,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1447,187,1,1600,191,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1458,-2,0,1624,-15,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,12,0,2357,10,0,0 +2013,10,9,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1707,48,1,1925,42,1,0 +2013,6,8,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,10,0,1515,5,0,0 +2013,7,2,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,2,0,1505,12,0,0 +2013,7,19,5,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1400,-1,0,1525,2,0,0 +2013,5,21,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-4,0,930,0,0,0 +2013,4,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1550,7,0,1725,9,0,0 +2013,7,21,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-5,0,1048,-15,0,0 +2013,8,30,5,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-9,0,1525,-34,0,0 +2013,5,23,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1715,6,0,2045,6,0,0 +2013,7,24,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,4,0,839,-2,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2105,13,0,2225,-5,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1051,-7,0,1157,-18,0,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1855,-1,0,1949,-1,0,0 +2013,10,21,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1956,57,1,2103,50,1,0 +2013,5,27,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1755,-2,0,2016,-9,0,0 +2013,10,11,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1515,-4,0,1620,-13,0,0 +2013,8,9,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,800,-3,0,910,-10,0,0 +2013,9,27,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,0,0,2050,7,0,0 +2013,4,28,7,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1852,-3,0,2031,-20,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,154,1,1158,127,1,0 +2013,6,18,2,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,88,1,1925,75,1,0 +2013,10,21,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1440,49,1,1545,48,1,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,95,1,1052,107,1,0 +2013,5,21,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,935,-1,0,1110,-5,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1330,11,0,1455,5,0,0 +2013,10,6,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,80,1,2130,49,1,0 +2013,10,7,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1900,25,1,2045,16,1,0 +2013,4,17,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1635,-1,0,1750,13,0,0 +2013,8,14,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,0,0,1015,-6,0,0 +2013,4,22,1,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,-1,0,1805,9,0,0 +2013,9,17,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,710,0,0,1508,4,0,0 +2013,6,13,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1300,15,1,1550,3,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1311,-4,0,1436,-6,0,0 +2013,10,26,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-4,0,1046,-1,0,0 +2013,4,12,5,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1500,64,1,1640,92,1,0 +2013,8,27,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,2,0,2049,-23,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1340,10,0,1445,6,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1800,57,1,2030,38,1,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1459,-1,0,1620,-14,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2251,0,0,30,-10,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1630,8,0,1755,0,0,0 +2013,6,4,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1111,82,1,1325,73,1,0 +2013,9,9,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1131,-5,0,1233,-21,0,0 +2013,4,24,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,-9,0,915,-8,0,0 +2013,5,24,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1520,55,1,1801,59,1,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,12,0,1430,-8,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1720,-2,0,1748,25,1,0 +2013,5,2,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2015,19,1,2110,20,1,0 +2013,4,30,2,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,-9,0,1337,3,0,0 +2013,6,29,6,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,92,1,1724,85,1,0 +2013,8,14,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1000,-1,0,1005,-2,0,0 +2013,7,18,4,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2005,67,1,2234,40,1,0 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,715,-5,0,915,-6,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,-1,0,955,-1,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,-5,0,1900,-7,0,0 +2013,5,24,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1121,11,0,1221,6,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2015,39,1,2130,30,1,0 +2013,8,19,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,915,-5,0,1155,-2,0,0 +2013,6,8,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1911,18,1,2229,-12,0,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,13,0,1500,-5,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-9,0,1027,-3,0,0 +2013,10,28,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-2,0,930,11,0,0 +2013,5,20,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,0,0,1826,-9,0,0 +2013,8,29,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,5,0,1250,5,0,0 +2013,4,20,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,838,17,1,946,11,0,0 +2013,6,10,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1751,34,1,2045,44,1,0 +2013,6,2,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-2,0,2016,-8,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,750,-5,0,1225,-6,0,0 +2013,4,6,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1710,2,0,1835,2,0,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,21,1,959,17,1,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1655,-4,0,1814,-8,0,0 +2013,6,16,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,-8,0,2116,-17,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1245,1,0,1425,-4,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,0,0,2354,-17,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,750,35,1,910,27,1,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-6,0,1133,-6,0,0 +2013,5,9,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,2,0,2126,9,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,645,8,0,949,-2,0,0 +2013,8,16,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,935,-1,0,950,11,0,0 +2013,10,26,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1221,-5,0,1312,4,0,0 +2013,8,3,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,2,0,1300,-1,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2000,-4,0,2050,-18,0,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,91,1,2307,86,1,0 +2013,9,4,3,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,950,-4,0,1240,-6,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1515,20,1,1715,3,0,0 +2013,10,21,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-10,0,821,-11,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1529,22,1,1812,4,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,1,0,1005,-6,0,0 +2013,10,16,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,632,-4,0,810,4,0,0 +2013,9,10,2,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,755,2,0,1022,-13,0,0 +2013,6,26,3,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1730,140,1,1825,134,1,0 +2013,6,3,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,635,-2,0,837,-4,0,0 +2013,4,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,-6,0,1400,2,0,0 +2013,5,9,4,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1855,96,1,2222,76,1,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1810,25,1,2330,24,1,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,7,0,1525,-9,0,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1317,2,0,1610,18,1,0 +2013,4,13,6,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,755,-4,0,1000,-20,0,0 +2013,4,22,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1215,28,1,1325,11,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,835,6,0,1005,10,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1825,56,1,2035,66,1,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1615,63,1,1800,59,1,0 +2013,4,1,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,61,1,724,56,1,0 +2013,8,19,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-5,0,1830,3,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1954,0,0,2310,-18,0,0 +2013,5,5,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,3,0,1706,3,0,0 +2013,8,13,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1029,8,0,1305,2,0,0 +2013,8,23,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1105,3,0,1145,-1,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2015,0,0,2229,-20,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,805,-3,0,925,-7,0,0 +2013,5,20,1,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,-2,0,1945,110,1,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,0,0,1820,-5,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,-2,0,1743,-20,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,3,0,1000,-4,0,0 +2013,6,19,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,730,2,0,0 +2013,6,9,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-11,0,1545,-17,0,0 +2013,6,13,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1847,330,1,2151,311,1,0 +2013,7,28,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2130,0,,2245,0,1,1 +2013,4,27,6,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1238,21,1,1834,11,0,0 +2013,4,7,7,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,940,-4,0,1800,-23,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1842,4,0,2314,-36,0,0 +2013,4,18,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,172,1,1410,211,1,0 +2013,5,11,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1010,-3,0,1135,0,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,15,1,1550,10,0,0 +2013,6,24,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,11,0,1215,9,0,0 +2013,6,22,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1559,321,1,2027,309,1,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1801,0,0,1902,-13,0,0 +2013,6,30,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1900,7,0,2135,10,0,0 +2013,6,10,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,855,15,1,1106,6,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1025,51,1,1240,60,1,0 +2013,5,6,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-8,0,1006,-15,0,0 +2013,4,17,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,655,-5,0,918,-13,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,2,0,1909,-5,0,0 +2013,5,5,7,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1930,1,0,2143,-7,0,0 +2013,5,15,3,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1408,-2,0,0 +2013,9,3,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-2,0,1200,-12,0,0 +2013,10,3,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,-1,0,1815,-9,0,0 +2013,5,4,6,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1435,-3,0,1630,-16,0,0 +2013,10,30,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,725,-6,0,820,-12,0,0 +2013,5,15,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1320,1,0,1345,2,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,61,1,1110,58,1,0 +2013,9,27,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1325,13,0,1445,13,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2100,-1,0,2337,-8,0,0 +2013,10,26,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1315,-6,0,1435,-7,0,0 +2013,4,6,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,7,0,1200,2,0,0 +2013,6,2,7,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1344,187,1,1549,177,1,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,-2,0,1153,-10,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1410,2,0,1745,-16,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,32,1,1430,30,1,0 +2013,8,1,4,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,2105,-5,0,2355,-12,0,0 +2013,10,31,4,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1010,56,1,1510,48,1,0 +2013,7,29,1,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1520,20,1,1800,20,1,0 +2013,10,22,2,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1800,-6,0,2015,-11,0,0 +2013,9,17,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1956,-8,0,2341,-27,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,955,18,1,1200,15,1,0 +2013,6,19,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1805,22,1,1905,9,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1155,12,0,1320,9,0,0 +2013,8,10,6,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,1,0,1124,-11,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-8,0,1148,-19,0,0 +2013,10,11,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1845,-5,0,2101,-8,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1425,1,0,1510,15,1,0 +2013,7,28,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,750,-14,0,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,4,0,830,-10,0,0 +2013,6,3,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,1253,7,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,840,1,0,933,-4,0,0 +2013,5,14,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-2,0,1435,-26,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,715,-6,0,844,-14,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1235,-3,0,1428,-21,0,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1517,8,0,1757,21,1,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-2,0,1625,-4,0,0 +2013,6,19,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,705,-4,0,730,23,1,0 +2013,4,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1020,1,0,1335,-6,0,0 +2013,8,9,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,22,1,1815,56,1,0 +2013,10,18,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,1,0,816,3,0,0 +2013,8,13,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,749,2,0,1041,-12,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2255,13,0,5,3,0,0 +2013,9,5,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,12,0,1728,-2,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1010,-4,0,1130,-3,0,0 +2013,10,9,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,905,-6,0,1505,-17,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1435,-1,0,1705,3,0,0 +2013,8,9,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,801,1,0,900,-3,0,0 +2013,10,9,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1605,28,1,1835,17,1,0 +2013,6,17,1,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1948,30,1,2058,40,1,0 +2013,9,27,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1535,-9,0,1707,-14,0,0 +2013,6,5,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,37,1,1028,35,1,0 +2013,8,30,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2030,63,1,2110,54,1,0 +2013,4,6,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1745,85,1,2035,82,1,0 +2013,10,14,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-5,0,1538,-7,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2200,7,0,2335,4,0,0 +2013,9,27,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1235,9,0,1355,15,1,0 +2013,9,8,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1159,-5,0,1524,-4,0,0 +2013,6,1,6,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1815,93,1,2050,104,1,0 +2013,4,29,1,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1445,1,0,1705,-9,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,725,-1,0,1156,-10,0,0 +2013,5,17,5,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2331,-9,0,521,-10,0,0 +2013,4,2,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,13,0,1250,4,0,0 +2013,8,12,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,27,1,1755,43,1,0 +2013,10,24,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1045,1,0,1300,9,0,0 +2013,4,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1655,19,1,1750,24,1,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-5,0,1631,-3,0,0 +2013,6,17,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,902,-3,0,1116,-13,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,53,1,908,47,1,0 +2013,7,20,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1655,36,1,2002,40,1,0 +2013,6,11,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,955,-7,0,1122,-3,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1830,2,0,1935,-6,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1900,-2,0,2010,1,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1518,38,1,1740,26,1,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1750,13,0,1915,6,0,0 +2013,5,25,6,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,-7,0,1730,-15,0,0 +2013,9,17,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1015,-12,0,1340,0,0,0 +2013,8,19,1,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1935,-1,0,2045,3,0,0 +2013,7,22,1,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1200,-2,0,1520,-11,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,840,10,0,1115,16,1,0 +2013,4,10,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1917,62,1,2048,61,1,0 +2013,5,21,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-5,0,2357,-7,0,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,817,-5,0,959,-5,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1420,8,0,1920,-2,0,0 +2013,7,22,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,3,0,29,-1,0,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1130,-10,0,1430,-9,0,0 +2013,4,17,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,600,-10,0,852,-28,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1928,-8,0,2258,-32,0,0 +2013,5,17,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1600,11,0,1920,13,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1800,36,1,1901,33,1,0 +2013,7,28,7,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1631,0,,1745,0,1,1 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,605,-7,0,1222,-15,0,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-4,0,1950,-23,0,0 +2013,4,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,2132,24,1,2308,58,1,0 +2013,9,4,3,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,630,2,0,1235,-5,0,0 +2013,8,3,6,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1351,0,0,1456,4,0,0 +2013,7,9,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1800,61,1,2000,99,1,0 +2013,7,7,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,0,0,2052,62,1,0 +2013,9,8,7,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1134,-6,0,1343,-5,0,0 +2013,5,15,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,655,-7,0,1515,-6,0,0 +2013,4,5,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,10,0,1745,6,0,0 +2013,8,10,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1345,-7,0,1430,-8,0,0 +2013,7,25,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,-5,0,2135,-14,0,0 +2013,7,7,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,149,1,1843,151,1,0 +2013,4,12,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-4,0,1710,-6,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2000,17,1,2205,11,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,62,1,30,48,1,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,36,1,2255,27,1,0 +2013,10,3,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1850,-8,0,2321,-34,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,66,1,2035,192,1,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,3,0,1815,-21,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,4,0,1720,-8,0,0 +2013,6,13,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1259,9,0,1419,-2,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1520,0,0,1730,-5,0,0 +2013,10,11,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,759,-6,0,934,-25,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1815,20,1,1952,23,1,0 +2013,4,11,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,19,1,1846,21,1,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1105,-2,0,1229,-6,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,1016,10,0,0 +2013,10,11,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,2,0,1816,2,0,0 +2013,9,26,4,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,-7,0,1224,-11,0,0 +2013,4,14,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1345,14,0,1731,0,0,0 +2013,6,6,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1136,-2,0,1235,-1,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,941,-8,0,1116,-19,0,0 +2013,7,18,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,705,-1,0,840,-2,0,0 +2013,5,2,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-7,0,2110,-2,0,0 +2013,9,9,1,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,-10,0,1922,-6,0,0 +2013,4,23,2,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,45,77,1,622,92,1,0 +2013,6,10,1,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1715,3,0,1945,2,0,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1310,44,1,1630,28,1,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,605,-2,0,942,-16,0,0 +2013,10,24,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1919,14,0,2026,0,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,907,82,1,1310,66,1,0 +2013,7,17,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2057,-2,0,450,-13,0,0 +2013,7,27,6,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1910,13,0,2234,1,0,0 +2013,9,8,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1320,29,1,1450,26,1,0 +2013,8,22,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-3,0,1627,-10,0,0 +2013,4,11,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,6,0,1857,14,0,0 +2013,10,3,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,5,0,1334,28,1,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,170,1,2040,172,1,0 +2013,6,11,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1227,-8,0,1433,-26,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,900,-3,0,1039,-7,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,33,1,2145,42,1,0 +2013,6,10,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1435,116,1,1710,106,1,0 +2013,5,3,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1302,-2,0,1435,-13,0,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-4,0,1105,-34,0,0 +2013,6,12,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-3,0,808,37,1,0 +2013,4,18,4,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,605,-4,0,855,-7,0,0 +2013,5,14,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,-4,0,1050,-50,0,0 +2013,8,12,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,715,82,1,830,78,1,0 +2013,8,25,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,959,-5,0,1225,-17,0,0 +2013,6,20,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-3,0,1717,-7,0,0 +2013,10,29,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,825,-2,0,1041,-13,0,0 +2013,6,2,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1745,-7,0,1905,-8,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,550,-4,0,913,-1,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,2009,-3,0,100,-4,0,0 +2013,5,23,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-5,0,912,-14,0,0 +2013,7,4,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-2,0,945,-2,0,0 +2013,7,4,4,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1045,-3,0,1605,-13,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2130,-3,0,2240,-18,0,0 +2013,8,12,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,915,3,0,1025,1,0,0 +2013,9,20,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,-5,0,1808,-10,0,0 +2013,8,12,1,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,725,-7,0,948,-7,0,0 +2013,10,16,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2045,-5,0,2318,-3,0,0 +2013,6,14,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,750,-6,0,950,9,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,15,1,1034,-1,0,0 +2013,4,16,2,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2040,40,1,500,33,1,0 +2013,4,18,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1344,0,,1604,0,1,1 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1135,7,0,1700,-7,0,0 +2013,9,3,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-13,0,1119,-17,0,0 +2013,6,27,4,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,830,0,0,935,6,0,0 +2013,10,23,3,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,10,0,457,5,0,0 +2013,5,7,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1514,1,0,1709,-8,0,0 +2013,6,13,4,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,0,0,1408,34,1,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1635,10,0,2045,1,0,0 +2013,8,12,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,-1,0,2305,5,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1928,1,0,2048,11,0,0 +2013,10,28,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,821,1,0,1013,-7,0,0 +2013,8,2,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1334,57,1,1650,50,1,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1000,0,0,1405,14,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1426,4,0,1518,-12,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-3,0,1810,-4,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1302,41,1,1532,35,1,0 +2013,4,29,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1040,0,,1150,0,1,1 +2013,4,17,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,35,1,1805,65,1,0 +2013,10,11,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,125,1,1217,125,1,0 +2013,10,30,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1100,-10,0,1205,-16,0,0 +2013,5,26,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1240,-3,0,1410,-7,0,0 +2013,10,16,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,931,-3,0,1005,-4,0,0 +2013,8,30,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,20,1,1535,21,1,0 +2013,5,11,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1315,14,0,1714,38,1,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,745,11,0,1040,3,0,0 +2013,7,25,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,0,,1445,0,1,1 +2013,10,7,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2107,11,0,2323,12,0,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1855,11,0,2049,31,1,0 +2013,7,31,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1850,4,0,2020,12,0,0 +2013,7,6,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,846,-8,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-8,0,2123,-11,0,0 +2013,10,1,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-11,0,1120,-31,0,0 +2013,7,4,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-4,0,1709,-4,0,0 +2013,5,13,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-5,0,2255,-18,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,73,1,1729,55,1,0 +2013,6,5,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-9,0,1610,-12,0,0 +2013,5,8,3,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,8,0,1905,19,1,0 +2013,9,25,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,841,3,0,0 +2013,4,16,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,705,-9,0,1109,-11,0,0 +2013,7,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1511,-7,0,1600,-8,0,0 +2013,8,7,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1004,17,1,1218,30,1,0 +2013,8,9,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,705,-3,0,820,4,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,919,-1,0,1052,20,1,0 +2013,5,7,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-6,0,851,-11,0,0 +2013,9,6,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2105,-8,0,2335,-19,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-2,0,1305,-12,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1050,1,0,1145,7,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,904,-2,0,1021,-21,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,746,-1,0,1040,-18,0,0 +2013,10,20,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1908,-4,0,2015,-7,0,0 +2013,10,24,4,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1008,-2,0,1709,2,0,0 +2013,5,6,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1954,0,0,2146,27,1,0 +2013,6,14,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,624,-1,0,755,-12,0,0 +2013,4,23,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2259,-1,0,609,-19,0,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2005,-3,0,2103,-9,0,0 +2013,8,22,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1530,24,1,1745,-3,0,0 +2013,5,17,5,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1159,59,1,1427,45,1,0 +2013,5,26,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-6,0,1730,-23,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,183,1,2130,188,1,0 +2013,9,11,3,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1054,2,0,1135,22,1,0 +2013,6,9,7,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,700,-4,0,945,-1,0,0 +2013,4,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,959,-4,0,1657,-13,0,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1035,9,0,1335,7,0,0 +2013,5,25,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-1,0,1640,-40,0,0 +2013,10,6,7,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,835,-4,0,1028,-24,0,0 +2013,9,29,7,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1509,-2,0,1620,-5,0,0 +2013,8,9,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1559,0,0,1828,27,1,0 +2013,8,10,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-7,0,1052,-17,0,0 +2013,5,16,4,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,-3,0,1828,-13,0,0 +2013,7,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,855,-3,0,1015,-2,0,0 +2013,7,1,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1016,-6,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,650,-4,0,0 +2013,10,9,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,929,-15,0,1056,-26,0,0 +2013,7,21,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1405,-5,0,1610,-10,0,0 +2013,6,26,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,0,,1425,0,1,1 +2013,8,17,6,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-5,0,918,-25,0,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-5,0,806,-9,0,0 +2013,7,23,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1512,61,1,1835,110,1,0 +2013,7,28,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-10,0,1107,-6,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,600,-4,0,715,-11,0,0 +2013,4,29,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,955,15,1,1215,12,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2155,120,1,2315,138,1,0 +2013,8,11,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2130,-4,0,2235,-11,0,0 +2013,8,24,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-6,0,2045,-34,0,0 +2013,8,2,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-6,0,1338,2,0,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,2,0,1145,0,0,0 +2013,8,22,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,6,0,1827,17,1,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1555,-2,0,1705,0,0,0 +2013,6,19,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,116,1,810,116,1,0 +2013,9,1,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2247,2,0,443,-3,0,0 +2013,5,30,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,108,1,1445,135,1,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1456,-4,0,1613,-24,0,0 +2013,6,21,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,615,-3,0,856,-6,0,0 +2013,5,1,3,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,839,0,0,0 +2013,5,28,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1135,0,0,1259,-5,0,0 +2013,8,20,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,-1,0,1308,-2,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,26,1,1400,34,1,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1115,1,0,1304,-14,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,20,1,2200,19,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,840,-4,0,1023,-11,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2335,-2,0,624,-24,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-3,0,2202,-2,0,0 +2013,7,7,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1437,26,1,1538,161,1,0 +2013,6,25,2,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,1950,221,1,42,220,1,0 +2013,6,15,6,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-2,0,830,-14,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1240,-5,0,1430,-5,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1415,-1,0,1611,-6,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1352,-3,0,1733,-3,0,0 +2013,9,5,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1826,-7,0,1953,8,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,-4,0,2044,-18,0,0 +2013,8,12,1,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,51,1,1143,42,1,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1349,6,0,1911,-16,0,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1515,83,1,1724,74,1,0 +2013,5,30,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1750,135,1,1905,114,1,0 +2013,8,11,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,730,-2,0,1051,-9,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,-5,0,957,-24,0,0 +2013,6,9,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,2,0,2045,-18,0,0 +2013,6,27,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-7,0,1048,12,0,0 +2013,7,23,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-6,0,1423,-12,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1959,-2,0,2134,-16,0,0 +2013,4,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1120,1,0,1235,-2,0,0 +2013,5,27,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1955,-8,0,2143,-31,0,0 +2013,5,4,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,725,-5,0,820,-10,0,0 +2013,6,17,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,9,0,1355,8,0,0 +2013,6,23,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2300,9,0,8,22,1,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,810,-1,0,852,-3,0,0 +2013,10,21,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,-4,0,1940,-22,0,0 +2013,8,29,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1316,-9,0,1436,-2,0,0 +2013,5,7,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,639,-2,0,809,-4,0,0 +2013,8,19,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,0,0,1114,-3,0,0 +2013,10,4,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-7,0,1221,-22,0,0 +2013,5,15,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1037,8,0,1330,-3,0,0 +2013,4,26,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1307,-1,0,1447,-18,0,0 +2013,7,4,4,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1325,-6,0,1600,-20,0,0 +2013,5,1,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-4,0,1225,-6,0,0 +2013,4,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1330,1,0,1848,-16,0,0 +2013,7,14,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,-2,0,1935,13,0,0 +2013,6,1,6,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,17,1,611,12,0,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1220,13,0,1455,-7,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2150,5,0,2245,-3,0,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-4,0,2020,-14,0,0 +2013,9,8,7,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,18,1,2105,31,1,0 +2013,8,3,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,-3,0,1754,-19,0,0 +2013,4,5,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1750,-2,0,1905,-11,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,900,-6,0,1039,-11,0,0 +2013,7,4,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-9,0,908,-27,0,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1520,-2,0,1714,-19,0,0 +2013,5,14,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1121,-12,0,1322,-17,0,0 +2013,7,26,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,814,11,0,1058,16,1,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-7,0,2150,-5,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,840,9,0,1030,25,1,0 +2013,5,8,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-6,0,1015,7,0,0 +2013,5,30,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,800,-6,0,1013,-29,0,0 +2013,5,14,2,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,700,18,1,827,2,0,0 +2013,10,27,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,835,-5,0,955,-7,0,0 +2013,8,8,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,611,8,0,822,8,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,745,4,0,1015,-3,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1820,-7,0,2013,-14,0,0 +2013,4,21,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-4,0,739,-6,0,0 +2013,10,31,4,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1054,6,0,1320,0,0,0 +2013,7,30,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-7,0,1555,-3,0,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1525,34,1,1750,4,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,109,1,1724,94,1,0 +2013,4,3,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1115,-2,0,1235,-10,0,0 +2013,6,22,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,51,1,1412,29,1,0 +2013,6,23,7,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1835,-3,0,1940,6,0,0 +2013,8,13,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,-4,0,847,-8,0,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-9,0,2311,-14,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-7,0,1305,-26,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,1,0,1540,-16,0,0 +2013,9,21,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-5,0,1700,-17,0,0 +2013,4,27,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1205,-3,0,1314,-7,0,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1019,-4,0,1542,7,0,0 +2013,7,16,2,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,-5,0,1315,-11,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1315,0,0,1603,6,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1725,16,1,128,3,0,0 +2013,8,22,4,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-3,0,2200,-5,0,0 +2013,5,6,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-5,0,1535,-9,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1810,9,0,1950,-11,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,45,1,1647,38,1,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,0,,1735,0,1,1 +2013,9,18,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1510,-4,0,1735,-9,0,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-3,0,2303,-8,0,0 +2013,6,26,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-3,0,1003,-10,0,0 +2013,7,7,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,945,0,0,1210,-10,0,0 +2013,9,26,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,1,0,1015,-12,0,0 +2013,4,18,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,0,,1133,0,1,1 +2013,9,7,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,11,0,940,-32,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1450,17,1,1745,15,1,0 +2013,7,2,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-11,0,755,-14,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,840,-3,0,1030,4,0,0 +2013,6,14,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,-1,0,930,-7,0,0 +2013,6,20,4,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2350,2,0,548,1,0,0 +2013,6,8,6,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-1,0,952,-3,0,0 +2013,7,4,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1303,-10,0,1407,-14,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,9,0,930,16,1,0 +2013,5,3,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,1943,-13,0,0 +2013,7,5,5,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-5,0,900,-18,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,7,0,1246,5,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1620,48,1,2105,87,1,0 +2013,10,22,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-5,0,1315,-5,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,745,7,0,1135,6,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2100,18,1,2230,11,0,0 +2013,10,30,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,32,1,2015,40,1,0 +2013,4,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2254,-2,0,646,-16,0,0 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-5,0,1155,-16,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1325,25,1,1450,24,1,0 +2013,8,24,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,19,1,815,30,1,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1635,21,1,1927,9,0,0 +2013,8,22,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1450,9,0,1535,0,0,0 +2013,4,25,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,5,0,1437,2,0,0 +2013,7,1,1,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,1,0,721,-8,0,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1950,19,1,2055,26,1,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1106,44,1,1405,49,1,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-5,0,1954,-15,0,0 +2013,9,28,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1633,-14,0,0 +2013,7,4,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,0,0,1255,-7,0,0 +2013,5,24,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,14,0,2125,8,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1550,3,0,1655,2,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1410,22,1,1425,16,1,0 +2013,5,18,6,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2308,26,1,714,32,1,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,-2,0,2007,-18,0,0 +2013,9,24,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,940,17,1,1004,6,0,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,-6,0,1735,-9,0,0 +2013,4,16,2,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1050,-4,0,1525,-8,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1335,1,0,1640,97,1,0 +2013,8,6,2,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1117,8,0,1230,7,0,0 +2013,9,22,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,10,0,1303,4,0,0 +2013,10,6,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,12,0,1600,11,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1345,-1,0,1520,-12,0,0 +2013,4,4,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,0,,1320,0,1,1 +2013,4,21,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,21,1,1328,23,1,0 +2013,6,25,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1515,19,1,1800,13,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1117,15,1,1324,21,1,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,3,0,1040,41,1,0 +2013,4,28,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2205,1,0,2330,19,1,0 +2013,9,23,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1130,-6,0,1242,3,0,0 +2013,5,15,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-2,0,931,1,0,0 +2013,5,18,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,640,-1,0,805,-10,0,0 +2013,5,25,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1955,-7,0,2155,-20,0,0 +2013,9,8,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-6,0,836,-18,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2035,42,1,2217,39,1,0 +2013,10,19,6,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1635,6,0,2042,-11,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,0,0,2252,20,1,0 +2013,4,4,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-1,0,1130,-2,0,0 +2013,7,5,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-5,0,2025,-6,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2359,-6,0,654,-19,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,45,1,1026,36,1,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1435,1,0,1600,-3,0,0 +2013,7,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2146,139,1,2205,122,1,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,11,0,2218,-1,0,0 +2013,10,10,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-3,0,1302,5,0,0 +2013,6,6,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-6,0,1113,-26,0,0 +2013,7,24,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1150,6,0,1810,-7,0,0 +2013,5,26,7,FL,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1440,-4,0,1752,-8,0,0 +2013,6,27,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,0,,1525,0,1,1 +2013,7,1,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,117,1,1639,90,1,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,14,0,2202,17,1,0 +2013,9,16,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,1,0,810,2,0,0 +2013,5,30,4,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1650,-5,0,2042,-18,0,0 +2013,9,2,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,818,6,0,1119,-11,0,0 +2013,4,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,-4,0,1749,-14,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1238,0,0,1338,2,0,0 +2013,4,1,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-2,0,1357,-8,0,0 +2013,4,26,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-8,0,1422,17,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2010,61,1,2310,58,1,0 +2013,5,28,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,-1,0,2010,-4,0,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2005,-6,0,2305,-17,0,0 +2013,4,18,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-4,0,2213,4,0,0 +2013,6,28,5,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1206,-5,0,1449,-9,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1750,25,1,1927,-6,0,0 +2013,6,8,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1720,1,0,2315,-1,0,0 +2013,8,27,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1435,1,0,1610,0,0,0 +2013,9,5,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-11,0,1725,-17,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1110,-5,0,1220,-27,0,0 +2013,10,25,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1521,-2,0,1819,-15,0,0 +2013,5,25,6,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,9,0,1625,-14,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-3,0,1006,-18,0,0 +2013,10,7,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,900,-3,0,1035,-8,0,0 +2013,7,13,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,54,1,855,49,1,0 +2013,6,1,6,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,739,-5,0,1035,11,0,0 +2013,4,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-2,0,2125,-11,0,0 +2013,5,14,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1254,-6,0,1532,-21,0,0 +2013,4,9,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-12,0,1125,-24,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1515,-6,0,1715,-12,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2242,-8,0,32,-27,0,0 +2013,10,27,7,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,-13,0,1345,-30,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,925,14,0,1100,29,1,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1240,33,1,1615,34,1,0 +2013,5,28,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,0,0,1825,-18,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1530,2,0,1633,-9,0,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1819,63,1,2118,91,1,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,735,-2,0,925,-9,0,0 +2013,7,6,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,2,0,850,-5,0,0 +2013,8,22,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,37,1,2145,32,1,0 +2013,4,11,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13232,Chicago Midway International,Chicago,IL,1015,2,0,1610,-17,0,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1722,3,0,2013,95,1,0 +2013,6,27,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1115,-2,0,1337,-14,0,0 +2013,10,28,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,8,0,1202,-6,0,0 +2013,4,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1300,-8,0,1643,-11,0,0 +2013,4,23,2,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1345,6,0,1608,-9,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-4,0,1311,-18,0,0 +2013,9,26,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1655,22,1,1810,20,1,0 +2013,5,3,5,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,-4,0,1055,17,1,0 +2013,10,2,3,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1329,4,0,1400,-1,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,1,0,2115,-16,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,70,1,1959,88,1,0 +2013,8,26,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1415,10,0,1550,27,1,0 +2013,7,7,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-5,0,755,-13,0,0 +2013,6,3,1,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-6,0,1940,-12,0,0 +2013,5,15,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1350,-7,0,1509,-6,0,0 +2013,9,10,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-6,0,1408,-10,0,0 +2013,9,29,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1859,-4,0,2156,-31,0,0 +2013,4,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,15,1,1000,2,0,0 +2013,10,13,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2225,-18,0,700,-10,0,0 +2013,8,15,4,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,-3,0,1420,-21,0,0 +2013,10,20,7,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1150,-7,0,1230,-5,0,0 +2013,7,26,5,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1625,-12,0,2010,-18,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,850,-3,0,1721,-18,0,0 +2013,10,9,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,5,0,2150,5,0,0 +2013,7,1,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1843,-16,0,2052,-6,0,0 +2013,6,16,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1824,-26,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2045,-1,0,2150,-5,0,0 +2013,9,15,7,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,-9,0,1335,-7,0,0 +2013,4,13,6,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,802,1,0,0 +2013,7,15,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1145,16,1,1305,6,0,0 +2013,8,14,3,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1325,22,1,1510,20,1,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2055,34,1,2234,16,1,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,-6,0,943,-9,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-7,0,2150,-11,0,0 +2013,7,10,3,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-10,0,1153,-25,0,0 +2013,10,28,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1403,10,0,1700,-2,0,0 +2013,4,21,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1050,4,0,1210,-2,0,0 +2013,10,4,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,1,0,1350,-1,0,0 +2013,6,8,6,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,0,0,1538,9,0,0 +2013,7,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-9,0,858,0,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,812,-5,0,909,0,0,0 +2013,4,29,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-2,0,934,13,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,-2,0,2348,0,0,0 +2013,9,25,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,5,0,731,0,0,0 +2013,7,3,3,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,845,-6,0,1054,4,0,0 +2013,5,3,5,DL,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,630,-4,0,810,-33,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1230,24,1,1400,13,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1825,17,1,45,25,1,0 +2013,10,9,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,6,0,2003,20,1,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1937,129,1,2130,110,1,0 +2013,8,14,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-1,0,855,-9,0,0 +2013,8,20,2,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,805,-4,0,919,-5,0,0 +2013,7,8,1,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1033,5,0,1259,2,0,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,845,12,0,1018,12,0,0 +2013,5,5,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1345,-2,0,1445,-3,0,0 +2013,9,11,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,52,1,1130,30,1,0 +2013,7,7,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1218,38,1,1335,34,1,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,-1,0,1605,-12,0,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-2,0,626,-7,0,0 +2013,8,27,2,FL,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,-2,0,950,-15,0,0 +2013,9,11,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1600,-5,0,1629,-8,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,-3,0,1527,-9,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1310,-3,0,1636,-8,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1754,-4,0,2013,-17,0,0 +2013,9,15,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1050,-3,0,1155,19,1,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,-5,0,2030,-12,0,0 +2013,7,29,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-5,0,1512,31,1,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,-2,0,1610,5,0,0 +2013,9,23,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1520,58,1,1534,51,1,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,840,-1,0,1640,-16,0,0 +2013,9,14,6,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1046,23,1,1300,8,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,6,0,1635,0,0,0 +2013,8,17,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,5,0,1656,-12,0,0 +2013,6,21,5,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,814,-1,0,1000,-5,0,0 +2013,7,18,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-3,0,1928,11,0,0 +2013,9,5,4,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1436,-7,0,1621,-6,0,0 +2013,6,14,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,530,0,0,616,3,0,0 +2013,4,27,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,801,-9,0,934,-13,0,0 +2013,7,3,3,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1930,14,0,2103,15,1,0 +2013,6,1,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1750,9,0,1915,1,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1635,74,1,1922,68,1,0 +2013,8,10,6,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1547,-16,0,1830,5,0,0 +2013,9,15,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2025,-6,0,2140,-19,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1230,3,0,1655,-9,0,0 +2013,10,15,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1531,42,1,1816,25,1,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1545,-1,0,1825,-16,0,0 +2013,8,9,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1215,53,1,1835,53,1,0 +2013,5,31,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-6,0,1415,-9,0,0 +2013,6,20,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1710,11,0,1840,-3,0,0 +2013,8,3,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2227,-7,0,611,-36,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,-1,0,1504,22,1,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1845,-6,0,2019,-16,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,98,1,1735,110,1,0 +2013,9,20,5,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,837,-8,0,1045,20,1,0 +2013,9,9,1,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1835,-4,0,2120,8,0,0 +2013,5,13,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1904,-7,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,721,-6,0,1031,-11,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1418,-2,0,1524,0,0,0 +2013,10,23,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-2,0,750,-9,0,0 +2013,10,9,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,721,-8,0,1000,-14,0,0 +2013,8,28,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1329,244,1,1444,248,1,0 +2013,5,9,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,12,0,2020,-3,0,0 +2013,7,27,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1330,-2,0,1925,-14,0,0 +2013,8,28,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-2,0,1530,-7,0,0 +2013,8,9,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,0,,1415,0,1,1 +2013,8,31,6,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,822,8,0,1108,-18,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-4,0,1808,3,0,0 +2013,5,13,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1602,-2,0,1744,6,0,0 +2013,7,14,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-3,0,910,-9,0,0 +2013,6,13,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1540,70,1,1630,77,1,0 +2013,7,29,1,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1334,-4,0,1600,-13,0,0 +2013,6,4,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,-1,0,1905,-14,0,0 +2013,6,22,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-3,0,1019,-2,0,0 +2013,4,12,5,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,36,1,859,36,1,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,-1,0,1101,9,0,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,834,-1,0,1018,27,1,0 +2013,6,17,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,38,1,1830,36,1,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,600,-1,0,1401,-15,0,0 +2013,7,13,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,910,-8,0,1025,-5,0,0 +2013,9,15,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-6,0,1010,3,0,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,2,0,1150,18,1,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,824,3,0,1035,-10,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2206,3,0,2329,-13,0,0 +2013,4,14,7,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,815,-6,0,1047,-3,0,0 +2013,9,17,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1310,9,0,1420,3,0,0 +2013,8,12,1,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1420,20,1,1714,13,0,0 +2013,7,24,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1729,6,0,1859,48,1,0 +2013,10,6,7,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1805,-5,0,2124,-40,0,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,30,1,1735,-5,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1950,-1,0,2115,-4,0,0 +2013,10,25,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-4,0,1726,0,0,0 +2013,7,8,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,34,1,2142,26,1,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1640,3,0,1825,14,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,30,1,1435,27,1,0 +2013,8,26,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1707,-2,0,2221,2,0,0 +2013,10,21,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1550,-5,0,1735,-1,0,0 +2013,4,22,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-2,0,1015,21,1,0 +2013,4,4,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1450,33,1,1615,28,1,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,-4,0,2257,-2,0,0 +2013,5,12,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-10,0,1400,-29,0,0 +2013,10,10,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1305,24,1,1355,22,1,0 +2013,6,12,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-2,0,1845,-12,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1320,-3,0,1809,-30,0,0 +2013,10,5,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1240,1,0,1415,-3,0,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,270,1,1659,292,1,0 +2013,5,20,1,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1140,2,0,1253,14,0,0 +2013,8,29,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,96,1,1830,91,1,0 +2013,6,8,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1905,-7,0,2052,-22,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1605,13,0,1700,9,0,0 +2013,10,10,4,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-1,0,1005,10,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,-5,0,1536,25,1,0 +2013,5,9,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,128,1,2115,123,1,0 +2013,4,16,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,6,0,1040,3,0,0 +2013,4,9,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2009,-4,0,2139,-9,0,0 +2013,6,28,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,815,-14,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1035,-5,0,1555,-10,0,0 +2013,6,17,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1822,49,1,2140,56,1,0 +2013,10,18,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1308,7,0,1750,-13,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2100,21,1,2230,15,1,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,620,-2,0,935,-7,0,0 +2013,5,29,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-5,0,1340,-15,0,0 +2013,7,4,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-3,0,607,-4,0,0 +2013,6,26,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1007,-9,0,1318,-5,0,0 +2013,6,2,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1245,-3,0,1446,-10,0,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,0,0,1055,-12,0,0 +2013,4,18,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,211,1,715,268,1,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1042,-3,0,1616,-11,0,0 +2013,6,3,1,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1640,0,0,1950,-12,0,0 +2013,8,18,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,705,-5,0,1015,-1,0,0 +2013,4,10,3,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,2125,18,1,2350,46,1,0 +2013,5,4,6,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,2,0,1340,-7,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1510,-3,0,1702,-13,0,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,855,0,0,1445,-2,0,0 +2013,10,23,3,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1335,-2,0,1500,-1,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1750,0,0,2000,14,0,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,810,1,0,1025,-9,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1246,-2,0,1556,-12,0,0 +2013,10,27,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-3,0,1910,-18,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,825,13,0,1055,16,1,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,955,20,1,1230,23,1,0 +2013,4,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,3,0,1510,-12,0,0 +2013,8,20,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,-5,0,1004,-6,0,0 +2013,10,11,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,724,7,0,856,81,1,0 +2013,6,6,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1008,-2,0,1152,-10,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,68,1,1855,66,1,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,12,0,1150,12,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1505,-2,0,1720,2,0,0 +2013,6,7,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1112,21,1,1455,27,1,0 +2013,5,29,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1810,0,0,1935,-9,0,0 +2013,8,9,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-8,0,1010,-13,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,910,-4,0,1045,-13,0,0 +2013,5,8,3,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-3,0,1633,5,0,0 +2013,9,22,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,19,1,1900,21,1,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1730,32,1,2330,-11,0,0 +2013,9,24,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1028,-12,0,0 +2013,9,11,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1516,3,0,1750,-1,0,0 +2013,6,26,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1346,43,1,1519,56,1,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,-1,0,1004,16,1,0 +2013,5,23,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,855,-3,0,914,10,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,235,1,2130,234,1,0 +2013,9,18,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1450,6,0,1505,6,0,0 +2013,4,21,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,1,0,1320,0,0,0 +2013,7,13,6,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-5,0,707,-10,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,605,-4,0,726,-11,0,0 +2013,8,22,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1905,118,1,2035,114,1,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2030,16,1,2245,8,0,0 +2013,9,11,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-6,0,1248,-19,0,0 +2013,5,30,4,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1733,-6,0,1910,25,1,0 +2013,8,11,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,13,0,1135,10,0,0 +2013,10,26,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-6,0,1410,-11,0,0 +2013,7,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,3,0,1118,-10,0,0 +2013,7,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,13,0,2249,8,0,0 +2013,5,19,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,37,1,1900,34,1,0 +2013,5,28,2,EV,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1050,0,0,1303,28,1,0 +2013,5,2,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,224,1,1558,233,1,0 +2013,7,29,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-7,0,1105,-6,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2155,7,0,2300,0,0,0 +2013,10,31,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,540,5,0,1200,15,1,0 +2013,9,7,6,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,854,-1,0,1213,-43,0,0 +2013,8,6,2,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1730,0,0,1950,15,1,0 +2013,4,19,5,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1217,-2,0,1304,-5,0,0 +2013,7,30,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1400,-2,0,1605,-1,0,0 +2013,5,24,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,849,-3,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,829,-2,0,1007,-20,0,0 +2013,6,23,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,15,1,2125,4,0,0 +2013,4,23,2,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1341,37,1,1524,29,1,0 +2013,9,3,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1433,-6,0,1944,-5,0,0 +2013,7,21,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-6,0,1446,-21,0,0 +2013,5,13,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-5,0,2040,-23,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1320,-5,0,1445,-2,0,0 +2013,4,6,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,-4,0,1325,-19,0,0 +2013,6,20,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1735,39,1,2015,36,1,0 +2013,9,11,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1850,-2,0,2000,-2,0,0 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1445,2,0,1720,-13,0,0 +2013,4,3,3,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1120,-2,0,1355,2,0,0 +2013,4,30,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,-4,0,2020,-9,0,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1627,1,0,13,-9,0,0 +2013,6,1,6,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-3,0,1759,-15,0,0 +2013,8,27,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1225,-30,0,0 +2013,10,13,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1502,-6,0,1524,-8,0,0 +2013,7,29,1,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-6,0,935,1,0,0 +2013,10,30,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-6,0,1952,1,0,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1305,-2,0,1625,-14,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,600,-3,0,700,-8,0,0 +2013,4,15,1,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,835,3,0,1235,-5,0,0 +2013,5,8,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-8,0,1015,-21,0,0 +2013,10,9,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-8,0,1415,-12,0,0 +2013,8,4,7,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-7,0,1025,-12,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1414,-15,0,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,632,18,1,758,8,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,1,0,1555,-12,0,0 +2013,7,29,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2105,6,0,2220,17,1,0 +2013,8,6,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,945,0,0,1301,0,0,0 +2013,7,14,7,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1830,0,0,1950,-8,0,0 +2013,4,18,4,FL,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,800,114,1,940,180,1,0 +2013,6,9,7,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1120,-6,0,1248,-13,0,0 +2013,10,19,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1130,-1,0,2009,0,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1542,361,1,1716,386,1,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-5,0,1200,-12,0,0 +2013,8,28,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1144,-7,0,1403,18,1,0 +2013,9,20,5,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1245,5,0,2110,-30,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2000,-4,0,2208,-15,0,0 +2013,10,16,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,6,0,2000,9,0,0 +2013,4,1,1,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1446,24,1,1614,21,1,0 +2013,9,21,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-1,0,1319,-5,0,0 +2013,4,21,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,722,-8,0,807,0,0,0 +2013,8,20,2,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1155,13,0,1435,6,0,0 +2013,8,28,3,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1226,0,0,1501,12,0,0 +2013,4,29,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-9,0,918,4,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-7,0,1305,-27,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,72,1,1830,60,1,0 +2013,5,21,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,859,-7,0,1009,16,1,0 +2013,6,3,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-3,0,2143,-13,0,0 +2013,9,18,3,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-9,0,1626,-37,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1025,10,0,1325,-4,0,0 +2013,4,4,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1920,63,1,2220,57,1,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1600,-6,0,1905,10,0,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,11,0,2140,-16,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2000,-8,0,2245,-30,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1350,7,0,1455,-8,0,0 +2013,4,9,2,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2118,106,1,2346,99,1,0 +2013,5,2,4,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2258,-5,0,720,-7,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1136,-4,0,1307,-7,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1420,40,1,1525,32,1,0 +2013,6,2,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1800,17,1,1855,12,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2025,-6,0,2315,-8,0,0 +2013,8,24,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-10,0,1004,-23,0,0 +2013,5,5,7,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,610,-5,0,1433,0,0,0 +2013,8,25,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1310,215,1,1423,206,1,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-2,0,1010,-32,0,0 +2013,5,26,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-5,0,729,-13,0,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,840,-6,0,1706,7,0,0 +2013,5,20,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,615,0,0,725,-10,0,0 +2013,10,22,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1550,-7,0,1745,-13,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1355,3,0,1546,9,0,0 +2013,5,13,1,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1635,-7,0,1830,-11,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2040,1,0,2350,-1,0,0 +2013,8,21,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,58,1,1230,55,1,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,625,-1,0,715,-6,0,0 +2013,10,4,5,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1435,1,0,1645,-22,0,0 +2013,7,31,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1305,27,1,1616,25,1,0 +2013,6,9,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-9,0,2014,1,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1051,-2,0,1137,-15,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1155,-1,0,2035,-12,0,0 +2013,10,27,7,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2005,191,1,2130,199,1,0 +2013,10,19,6,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1725,0,0,1845,17,1,0 +2013,4,24,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,8,0,1615,-1,0,0 +2013,10,28,1,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-6,0,1300,-11,0,0 +2013,7,14,7,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,725,-7,0,911,-13,0,0 +2013,10,6,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1826,-6,0,2210,-14,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,45,1,2210,41,1,0 +2013,4,10,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,-9,0,720,-15,0,0 +2013,8,20,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1420,0,0,1530,-11,0,0 +2013,10,11,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1355,16,1,1625,-1,0,0 +2013,8,16,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,0,0,1959,-9,0,0 +2013,8,22,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-11,0,2256,-10,0,0 +2013,8,20,2,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2015,27,1,2105,16,1,0 +2013,4,16,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-5,0,2135,-4,0,0 +2013,9,29,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1807,-5,0,2119,-2,0,0 +2013,4,12,5,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-9,0,1315,-10,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,17,1,817,-1,0,0 +2013,6,15,6,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,4,0,2215,-11,0,0 +2013,4,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-5,0,1336,-16,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,16,1,2359,45,1,0 +2013,4,21,7,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1731,-10,0,1905,-8,0,0 +2013,9,29,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1725,-1,0,1910,-19,0,0 +2013,4,6,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,-12,0,1556,-10,0,0 +2013,6,10,1,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1103,0,,1403,0,1,1 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1616,4,0,1757,-24,0,0 +2013,10,28,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1448,-7,0,1655,-19,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,710,-5,0,1010,87,1,0 +2013,4,2,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1152,1,0,1755,9,0,0 +2013,4,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,10,0,1344,2,0,0 +2013,10,1,2,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,633,14,0,830,-11,0,0 +2013,8,26,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,706,-2,0,922,-5,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1920,-4,0,2355,-44,0,0 +2013,8,9,5,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,835,-8,0,952,-22,0,0 +2013,5,18,6,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1231,3,0,1437,-1,0,0 +2013,4,23,2,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1935,-4,0,2256,-29,0,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1955,-4,0,2150,-16,0,0 +2013,8,4,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1535,7,0,2100,2,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,-4,0,1153,-12,0,0 +2013,9,16,1,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1728,1,0,1807,14,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1445,68,1,1650,64,1,0 +2013,5,17,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-7,0,1945,-1,0,0 +2013,4,22,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-4,0,2315,-16,0,0 +2013,10,16,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,11,0,1335,-1,0,0 +2013,6,7,5,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1659,0,0,1959,-53,0,0 +2013,6,5,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1200,-4,0,1345,-22,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,-9,0,1647,-7,0,0 +2013,7,8,1,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-4,0,1608,-7,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1735,26,1,2325,7,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,602,36,1,1149,15,1,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,148,1,2020,122,1,0 +2013,7,21,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1820,44,1,1915,35,1,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,28,1,1440,17,1,0 +2013,6,5,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,0,0,1730,-7,0,0 +2013,6,13,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-1,0,1105,4,0,0 +2013,7,26,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1355,0,0,1500,-9,0,0 +2013,5,18,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1507,-5,0,1638,-19,0,0 +2013,10,10,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1317,19,1,1445,30,1,0 +2013,8,29,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,-8,0,725,-14,0,0 +2013,6,2,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,58,1,1825,45,1,0 +2013,7,5,5,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-1,0,803,-12,0,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1930,-6,0,2152,-17,0,0 +2013,7,2,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,848,-1,0,922,-2,0,0 +2013,10,9,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,-2,0,1453,-2,0,0 +2013,8,30,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,140,1,2112,131,1,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1910,1,0,2015,0,0,0 +2013,10,16,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1225,-1,0,1325,-2,0,0 +2013,4,26,5,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,716,-8,0,918,-12,0,0 +2013,7,10,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-7,0,1415,-24,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,0,,1150,0,1,1 +2013,6,1,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1740,41,1,2105,32,1,0 +2013,7,11,4,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,849,16,1,1115,22,1,0 +2013,8,8,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1005,62,1,1144,73,1,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,13,0,2350,-6,0,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,842,-5,0,953,-5,0,0 +2013,4,23,2,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1810,72,1,2055,67,1,0 +2013,10,5,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,915,-5,0,1155,-19,0,0 +2013,9,6,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,10,0,2103,27,1,0 +2013,8,1,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,615,-1,0,900,3,0,0 +2013,4,5,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,2,0,1800,1,0,0 +2013,10,20,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,-2,0,505,0,0,0 +2013,6,10,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1415,3,0,1555,-31,0,0 +2013,5,30,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1712,-10,0,2014,-39,0,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1525,-1,0,1810,-8,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2211,29,1,2318,46,1,0 +2013,6,15,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,950,-5,0,1007,3,0,0 +2013,7,8,1,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,-1,0,1319,-2,0,0 +2013,6,7,5,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,720,0,0,921,-12,0,0 +2013,5,5,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2200,91,1,5,90,1,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,0,0,2139,-8,0,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,855,3,0,1025,-14,0,0 +2013,7,21,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-6,0,1451,-9,0,0 +2013,10,21,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,-6,0,2058,-17,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1840,19,1,1945,8,0,0 +2013,5,23,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-7,0,635,-15,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1145,213,1,1325,199,1,0 +2013,8,8,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2240,5,0,454,9,0,0 +2013,4,5,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,0,0,820,10,0,0 +2013,5,1,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1705,28,1,1820,66,1,0 +2013,4,17,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2150,0,,2305,0,1,1 +2013,6,19,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,13,0,2105,-4,0,0 +2013,8,27,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,224,1,2050,219,1,0 +2013,4,3,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2316,-10,0,652,-7,0,0 +2013,10,22,2,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1715,-8,0,1937,-25,0,0 +2013,7,19,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-1,0,1430,-1,0,0 +2013,5,29,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,930,-2,0,946,-2,0,0 +2013,9,18,3,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,650,-4,0,810,-14,0,0 +2013,8,24,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,855,-1,0,1220,-9,0,0 +2013,10,22,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,530,-1,0,853,-13,0,0 +2013,5,9,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2125,-2,0,2225,-7,0,0 +2013,7,19,5,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,732,0,0,1046,-1,0,0 +2013,6,30,7,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1425,-5,0,1603,-20,0,0 +2013,5,29,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1135,20,1,1300,16,1,0 +2013,8,22,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,615,-1,0,1436,-3,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,830,-5,0,945,-8,0,0 +2013,5,11,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,700,-6,0,900,-3,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,1,0,1200,-2,0,0 +2013,5,13,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,1,0,1610,-4,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,80,1,1925,89,1,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,-2,0,2209,7,0,0 +2013,9,1,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-5,0,2253,-19,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1515,9,0,1608,-3,0,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1200,1,0,1420,-8,0,0 +2013,10,29,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,830,-9,0,1126,-8,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1538,-3,0,1856,-19,0,0 +2013,10,27,7,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1225,8,0,2019,38,1,0 +2013,7,23,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1305,0,0,1525,-9,0,0 +2013,6,12,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-9,0,1512,-13,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,905,-7,0,1140,-35,0,0 +2013,8,15,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,2,0,615,-11,0,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1105,23,1,1210,17,1,0 +2013,10,15,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,810,14,0,936,7,0,0 +2013,8,13,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,79,1,1845,71,1,0 +2013,8,17,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1709,4,0,1954,-3,0,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1030,-5,0,1305,-26,0,0 +2013,6,14,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1510,5,0,1605,19,1,0 +2013,5,27,1,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,715,1,0,1500,-5,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1935,173,1,2155,167,1,0 +2013,8,5,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1330,63,1,1458,55,1,0 +2013,6,30,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1710,-10,0,1945,-4,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1824,-7,0,2129,-66,0,0 +2013,9,30,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1945,1,0,2112,-1,0,0 +2013,7,29,1,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,31,1,1815,21,1,0 +2013,4,3,3,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1859,-6,0,2049,-2,0,0 +2013,4,5,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1540,25,1,1655,22,1,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,-1,0,943,-12,0,0 +2013,5,16,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1635,5,0,1824,-9,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,932,1,0,1216,5,0,0 +2013,10,15,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,4,0,1516,4,0,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,905,-4,0,1154,36,1,0 +2013,5,25,6,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,756,-11,0,0 +2013,7,3,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1725,230,1,1835,224,1,0 +2013,7,6,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1239,-7,0,1454,-9,0,0 +2013,10,28,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1437,54,1,1609,33,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1411,-1,0,1620,-12,0,0 +2013,10,12,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,17,1,1300,14,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1445,44,1,1550,58,1,0 +2013,5,17,5,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1205,25,1,1325,16,1,0 +2013,8,21,3,EV,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,854,-9,0,1010,4,0,0 +2013,8,4,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,-3,0,544,-14,0,0 +2013,8,18,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1029,-4,0,1152,3,0,0 +2013,7,26,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,755,-5,0,1011,-2,0,0 +2013,6,15,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1525,1,0,1640,-1,0,0 +2013,5,7,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-7,0,2355,-18,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,13,0,1435,9,0,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1035,1,0,1830,7,0,0 +2013,8,27,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1055,5,0,1210,-4,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,-2,0,1755,-9,0,0 +2013,10,10,4,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1824,43,1,2207,82,1,0 +2013,4,18,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,54,1,1545,50,1,0 +2013,10,31,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,600,-8,0,900,-11,0,0 +2013,6,30,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-10,0,1230,-11,0,0 +2013,7,25,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,-4,0,2050,-19,0,0 +2013,5,10,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1204,71,1,1529,62,1,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2146,-1,0,2347,-20,0,0 +2013,10,1,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1555,13,0,1850,10,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1626,1,0,1750,-6,0,0 +2013,9,18,3,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1728,12,0,2014,27,1,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-6,0,1151,-6,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,28,1,1836,57,1,0 +2013,8,21,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2145,-6,0,2246,-17,0,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,953,2,0,1316,-11,0,0 +2013,6,10,1,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,4,0,1722,-7,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1214,17,1,1701,28,1,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1840,36,1,2230,23,1,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1830,-4,0,2146,-14,0,0 +2013,6,18,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,14,0,915,12,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1840,84,1,2055,73,1,0 +2013,5,2,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1910,-13,0,2040,-15,0,0 +2013,9,3,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1123,-1,0,1514,5,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1140,1,0,2006,13,0,0 +2013,4,12,5,WN,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,920,-3,0,1250,-3,0,0 +2013,8,2,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,7,0,700,4,0,0 +2013,4,28,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,47,1,2025,80,1,0 +2013,8,17,6,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1832,10,0,2010,30,1,0 +2013,5,27,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,-6,0,2033,-5,0,0 +2013,7,6,6,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,2,0,1017,-6,0,0 +2013,6,1,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,805,-5,0,935,-17,0,0 +2013,5,4,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,1251,4,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1700,284,1,1912,322,1,0 +2013,10,27,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-5,0,1242,-18,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1639,-4,0,2003,-26,0,0 +2013,6,1,6,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1652,9,0,1905,-8,0,0 +2013,10,22,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1938,-10,0,2142,-37,0,0 +2013,4,22,1,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,601,-6,0,930,-7,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1500,0,0,1610,-7,0,0 +2013,4,21,7,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,823,-8,0,1124,-21,0,0 +2013,6,8,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1210,-4,0,1335,-16,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,620,-7,0,747,-14,0,0 +2013,7,20,6,EV,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1425,7,0,1737,4,0,0 +2013,10,28,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,-3,0,1308,-1,0,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1150,57,1,1255,50,1,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,1,0,1250,0,0,0 +2013,4,16,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,0,,1700,0,1,1 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1935,56,1,2220,75,1,0 +2013,6,11,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1221,7,0,2057,-6,0,0 +2013,4,28,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,805,-8,0,1111,-21,0,0 +2013,4,11,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,64,1,1148,81,1,0 +2013,9,12,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1410,-6,0,0 +2013,10,6,7,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1536,-10,0,1756,-17,0,0 +2013,5,13,1,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-6,0,1204,3,0,0 +2013,10,29,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1511,244,1,1532,242,1,0 +2013,6,22,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,605,-2,0,805,-11,0,0 +2013,5,2,4,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2123,-3,0,555,12,0,0 +2013,7,9,2,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,6,0,2211,4,0,0 +2013,10,16,3,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,-5,0,2010,-7,0,0 +2013,8,27,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,931,-6,0,1021,-6,0,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1530,-1,0,1805,14,0,0 +2013,7,30,2,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2142,-10,0,2259,-26,0,0 +2013,7,11,4,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1520,47,1,1800,16,1,0 +2013,7,25,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1918,198,1,2229,186,1,0 +2013,8,31,6,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1425,9,0,1535,2,0,0 +2013,7,29,1,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1455,0,0,1800,-12,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1114,1,0,1303,-7,0,0 +2013,9,12,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,800,0,0,847,1,0,0 +2013,4,27,6,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1210,-12,0,1346,-6,0,0 +2013,10,28,1,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,-5,0,1957,-2,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,1,0,1641,-4,0,0 +2013,5,21,2,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1720,70,1,1920,95,1,0 +2013,8,15,4,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1249,4,0,1534,10,0,0 +2013,10,26,6,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1003,-1,0,1423,-5,0,0 +2013,4,24,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1050,14,0,0 +2013,7,9,2,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1215,-5,0,1333,-19,0,0 +2013,9,13,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1320,8,0,1520,31,1,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,720,-1,0,905,-11,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-4,0,928,-2,0,0 +2013,8,1,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,0,0,1620,2,0,0 +2013,8,27,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1640,-8,0,2005,9,0,0 +2013,4,26,5,EV,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,100,1,1400,87,1,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1020,12,0,1340,35,1,0 +2013,4,29,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,715,-1,0,850,-4,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,-3,0,1739,-8,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,36,1,908,83,1,0 +2013,5,29,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,735,-3,0,835,-2,0,0 +2013,6,24,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1941,84,1,2108,90,1,0 +2013,10,20,7,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,34,1,925,11,0,0 +2013,5,10,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2135,-1,0,2155,48,1,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1601,19,1,10,-1,0,0 +2013,7,11,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-1,0,1305,9,0,0 +2013,4,18,4,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,700,5,0,946,2,0,0 +2013,4,30,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2225,4,0,2351,0,0,0 +2013,7,19,5,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1200,14,0,1250,6,0,0 +2013,10,16,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2018,-10,0,2030,20,1,0 +2013,9,15,7,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1445,5,0,1902,2,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-7,0,1830,38,1,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1024,74,1,1600,59,1,0 +2013,7,1,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1305,29,1,1410,15,1,0 +2013,4,7,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1150,-2,0,1325,-8,0,0 +2013,6,30,7,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1128,6,0,1359,-19,0,0 +2013,10,1,2,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-1,0,1220,-10,0,0 +2013,6,21,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1900,25,1,2025,19,1,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,955,0,0,1250,-6,0,0 +2013,10,7,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1227,5,0,1605,6,0,0 +2013,4,25,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,949,-8,0,1209,-6,0,0 +2013,4,13,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1750,56,1,1845,45,1,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,-6,0,1158,-17,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,2,0,1100,-2,0,0 +2013,8,2,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1815,-8,0,1932,-22,0,0 +2013,6,2,7,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,0,0,2244,-9,0,0 +2013,10,16,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,2,0,920,-5,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1910,-3,0,2245,-26,0,0 +2013,4,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1610,100,1,2005,94,1,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,0,0,2025,-1,0,0 +2013,4,4,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,915,-2,0,1510,-2,0,0 +2013,6,21,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,-3,0,1221,-10,0,0 +2013,4,27,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-6,0,2000,-24,0,0 +2013,5,18,6,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1330,17,1,1413,6,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,-3,0,2247,-5,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1910,-5,0,2239,-26,0,0 +2013,9,18,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1120,-6,0,1320,3,0,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,846,-3,0,1218,-16,0,0 +2013,9,10,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,-4,0,1106,1,0,0 +2013,10,26,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,905,-1,0,939,2,0,0 +2013,4,2,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1825,28,1,2005,7,0,0 +2013,7,11,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1639,7,0,1750,36,1,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,-1,0,1004,8,0,0 +2013,4,16,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1922,13,0,2230,11,0,0 +2013,8,2,5,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1723,50,1,2014,56,1,0 +2013,9,7,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-8,0,1905,-23,0,0 +2013,7,10,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,4,0,1130,-4,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,-1,0,2042,-12,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,-5,0,2150,-3,0,0 +2013,6,10,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,8,0,1834,-2,0,0 +2013,4,8,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1735,95,1,1920,105,1,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,820,-5,0,1057,-29,0,0 +2013,7,21,7,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,-5,0,2047,-6,0,0 +2013,7,20,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-9,0,1323,-4,0,0 +2013,6,9,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1215,10,0,1305,14,0,0 +2013,5,21,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1449,26,1,1623,53,1,0 +2013,4,30,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,605,-3,0,720,-14,0,0 +2013,7,25,4,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1320,-6,0,1516,-9,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,745,-3,0,915,-6,0,0 +2013,9,20,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1653,-1,0,1749,10,0,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1725,6,0,1855,11,0,0 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1520,2,0,2025,-1,0,0 +2013,10,5,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-4,0,1227,-5,0,0 +2013,4,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1510,-4,0,1604,-11,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,711,-2,0,950,-9,0,0 +2013,6,26,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-3,0,1810,-18,0,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1930,37,1,2155,134,1,0 +2013,4,1,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,700,20,1,1032,18,1,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1810,33,1,1935,28,1,0 +2013,4,16,2,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-7,0,1021,-16,0,0 +2013,7,26,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,-3,0,1839,-12,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1500,-1,0,1820,-13,0,0 +2013,7,27,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1243,-3,0,1611,4,0,0 +2013,8,10,6,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1750,5,0,1910,-17,0,0 +2013,9,11,3,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,937,-6,0,1214,11,0,0 +2013,7,7,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1324,55,1,1457,39,1,0 +2013,9,1,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1636,-3,0,1856,-24,0,0 +2013,4,5,5,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,741,62,1,900,56,1,0 +2013,9,4,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,940,-5,0,1010,-13,0,0 +2013,9,4,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-4,0,2046,-12,0,0 +2013,10,2,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1540,-4,0,1715,-11,0,0 +2013,4,25,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-5,0,855,-4,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1520,3,0,1610,18,1,0 +2013,9,14,6,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,31,1,1118,27,1,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1236,-20,0,0 +2013,4,23,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,14,0,1610,14,0,0 +2013,10,15,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,900,8,0,1020,6,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1805,27,1,1920,21,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-3,0,1435,-24,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-7,0,1242,12,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1815,2,0,2050,-14,0,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,-7,0,1513,-22,0,0 +2013,6,18,2,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2217,70,1,620,62,1,0 +2013,4,10,3,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1645,7,0,2028,-5,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1637,8,0,1755,-13,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,-2,0,2040,-15,0,0 +2013,7,21,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,703,12,0,950,-3,0,0 +2013,5,1,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-5,0,1435,-2,0,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,-2,0,1710,-36,0,0 +2013,6,10,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,4,0,1835,-3,0,0 +2013,10,24,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-3,0,1720,-17,0,0 +2013,6,21,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,36,1,2025,15,1,0 +2013,8,31,6,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1406,-9,0,1535,-21,0,0 +2013,7,7,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1355,-7,0,1739,21,1,0 +2013,9,14,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1000,-4,0,1405,-11,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,1003,-5,0,0 +2013,6,28,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,15,1,1630,9,0,0 +2013,10,7,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,0,,1355,0,1,1 +2013,8,29,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1818,48,1,1959,36,1,0 +2013,9,16,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,650,0,0,800,-5,0,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1330,31,1,1532,35,1,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1500,2,0,1820,-9,0,0 +2013,8,1,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,2,0,1010,-3,0,0 +2013,9,18,3,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,6,0,1945,5,0,0 +2013,9,14,6,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1655,64,1,2225,62,1,0 +2013,7,8,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,5,0,10,-4,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,14,0,1440,2,0,0 +2013,5,17,5,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,2,0,1920,0,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1149,7,0,2029,-20,0,0 +2013,9,3,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-9,0,1636,-2,0,0 +2013,6,10,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,801,-4,0,0 +2013,5,9,4,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,600,-5,0,812,-4,0,0 +2013,6,19,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,22,1,1714,4,0,0 +2013,4,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-8,0,730,-17,0,0 +2013,5,18,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1436,-6,0,1654,-14,0,0 +2013,5,18,6,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2011,-10,0,2137,-19,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,750,26,1,927,14,0,0 +2013,7,11,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,2,0,853,3,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,0,0,1627,-1,0,0 +2013,8,22,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,1135,6,0,0 +2013,4,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1127,-4,0,1231,-25,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,855,1,0,1245,3,0,0 +2013,10,27,7,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-2,0,1130,5,0,0 +2013,6,10,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,14,0,1608,10,0,0 +2013,10,10,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1919,7,0,2105,29,1,0 +2013,7,2,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,50,1,1630,46,1,0 +2013,6,7,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1925,173,1,2219,166,1,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,0,0,1210,-10,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1930,-1,0,2025,-7,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-4,0,1402,-10,0,0 +2013,8,26,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,1,0,1007,5,0,0 +2013,4,16,2,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,745,-10,0,1040,-2,0,0 +2013,10,25,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,-6,0,1048,-9,0,0 +2013,10,3,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-1,0,1245,-2,0,0 +2013,8,5,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1059,-7,0,1430,-24,0,0 +2013,10,6,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1817,1,0,2118,-8,0,0 +2013,8,26,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,-9,0,1659,-28,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1330,-3,0,1810,-9,0,0 +2013,5,15,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,605,-9,0,735,5,0,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,-4,0,1909,-22,0,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2029,-3,0,2331,-36,0,0 +2013,6,30,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1720,54,1,1900,37,1,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1905,17,1,2301,17,1,0 +2013,6,14,5,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1216,4,0,1426,-10,0,0 +2013,10,9,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,-1,0,2035,-11,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1900,34,1,2225,40,1,0 +2013,10,9,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-4,0,2202,10,0,0 +2013,7,11,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,2026,-11,0,2328,-20,0,0 +2013,6,13,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1505,0,0,1917,1,0,0 +2013,8,30,5,VX,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,50,-6,0,625,6,0,0 +2013,7,12,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,19,1,1545,35,1,0 +2013,10,24,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-10,0,2030,-18,0,0 +2013,8,25,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,905,-8,0,1115,-28,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1140,-2,0,1245,-17,0,0 +2013,9,9,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1835,-6,0,2000,-8,0,0 +2013,10,11,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1855,-5,0,2145,-16,0,0 +2013,4,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1514,-7,0,1727,-4,0,0 +2013,5,15,3,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1110,-2,0,1345,-16,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,740,44,1,840,45,1,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,7,0,1911,7,0,0 +2013,5,23,4,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,0,0,1817,-3,0,0 +2013,6,30,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1404,104,1,1624,86,1,0 +2013,4,20,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1119,19,1,1415,-17,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,206,1,2222,185,1,0 +2013,4,27,6,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,725,-5,0,940,14,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2210,2,0,1,4,0,0 +2013,6,24,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1707,-4,0,1839,-8,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,805,7,0,940,7,0,0 +2013,6,25,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,855,-2,0,1015,-8,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2049,16,1,2214,6,0,0 +2013,7,13,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,2,0,1111,5,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,7,0,2115,1,0,0 +2013,5,7,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,705,0,,918,0,1,1 +2013,5,25,6,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,752,-3,0,808,-14,0,0 +2013,9,15,7,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1048,52,1,1433,39,1,0 +2013,8,26,1,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-7,0,1545,-10,0,0 +2013,10,17,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-1,0,1218,-8,0,0 +2013,7,31,3,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2005,36,1,1130,9,0,0 +2013,7,29,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1645,-1,0,1850,27,1,0 +2013,5,3,5,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1935,16,1,2046,8,0,0 +2013,7,31,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1454,-2,0,1629,-9,0,0 +2013,9,9,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,1,0,1225,-18,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1235,43,1,1620,33,1,0 +2013,6,17,1,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1828,11,0,2000,10,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,0,0,2235,-14,0,0 +2013,8,9,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,0,0,715,17,1,0 +2013,6,9,7,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1922,28,1,2110,18,1,0 +2013,10,10,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,825,-5,0,1053,-1,0,0 +2013,5,31,5,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,2035,66,1,2330,69,1,0 +2013,9,23,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-5,0,753,-10,0,0 +2013,10,21,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1525,-5,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,75,1,2340,73,1,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2059,3,0,2358,61,1,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1938,3,0,2125,6,0,0 +2013,9,3,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1845,-3,0,2005,-6,0,0 +2013,7,17,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,0,,1550,0,1,1 +2013,5,16,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,800,-24,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,910,19,1,1225,4,0,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1323,220,1,1411,235,1,0 +2013,8,21,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1254,-4,0,1614,-15,0,0 +2013,6,9,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,-7,0,1440,-12,0,0 +2013,8,8,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,608,-14,0,719,-12,0,0 +2013,5,22,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-2,0,800,8,0,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1410,-7,0,1734,-16,0,0 +2013,5,19,7,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,44,1,814,30,1,0 +2013,7,18,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1120,-3,0,1426,6,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2050,16,1,2205,8,0,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1540,12,0,1820,16,1,0 +2013,6,13,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-3,0,904,-5,0,0 +2013,5,14,2,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1435,-7,0,1710,-30,0,0 +2013,4,26,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-5,0,828,-9,0,0 +2013,7,18,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,3,0,2046,-1,0,0 +2013,9,6,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1435,-12,0,1600,-17,0,0 +2013,8,26,1,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,752,-3,0,919,-16,0,0 +2013,9,22,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,6,0,1829,2,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,2,0,1623,1,0,0 +2013,8,13,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,1117,1,0,0 +2013,8,13,2,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1719,147,1,1854,130,1,0 +2013,9,12,4,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,30,1,2205,24,1,0 +2013,6,2,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1611,128,1,1846,119,1,0 +2013,10,10,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,2,0,1305,-6,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,37,1,2242,26,1,0 +2013,5,9,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,10,0,2300,-3,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,-3,0,2253,-23,0,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1658,11,0,1834,7,0,0 +2013,10,4,5,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,630,-4,0,751,-23,0,0 +2013,7,21,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,4,0,2233,15,1,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1400,-2,0,1520,-27,0,0 +2013,7,19,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,-10,0,840,-7,0,0 +2013,5,29,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-4,0,840,-11,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,-9,0,828,-3,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1750,-2,0,2005,-6,0,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1115,-1,0,1251,-14,0,0 +2013,9,8,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1336,-5,0,1557,-37,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2005,-3,0,45,-19,0,0 +2013,10,10,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1741,-11,0,1848,-26,0,0 +2013,8,17,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1627,42,1,2032,56,1,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1455,14,0,1700,-11,0,0 +2013,5,28,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,5,0,1115,-3,0,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1845,-1,0,2000,9,0,0 +2013,10,7,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,0,0,1547,0,0,0 +2013,4,17,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,820,1,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,1125,-7,0,0 +2013,10,11,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,915,-3,0,1230,-24,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,57,1,1742,54,1,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,815,80,1,1057,71,1,0 +2013,8,19,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1700,1,0,1910,6,0,0 +2013,10,22,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1840,1,0,1940,-3,0,0 +2013,5,18,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1331,-1,0,1650,-15,0,0 +2013,7,26,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,833,-9,0,1041,-14,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2132,-9,0,2255,-18,0,0 +2013,7,21,7,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,10,0,1150,2,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,550,-2,0,845,-14,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1226,114,1,1359,117,1,0 +2013,8,17,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1535,-1,0,1650,-12,0,0 +2013,10,7,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,905,-1,0,1035,-7,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,2,0,745,-6,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1608,-1,0,1839,-6,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2045,39,1,2345,14,0,0 +2013,5,24,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,850,-22,0,0 +2013,10,19,6,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,-8,0,2253,-1,0,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1530,7,0,1810,-5,0,0 +2013,10,16,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,-6,0,2155,-12,0,0 +2013,5,16,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1256,40,1,1336,29,1,0 +2013,9,1,7,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,955,-6,0,1121,-19,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,1520,-7,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,2,0,2055,7,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1725,13,0,1815,21,1,0 +2013,9,26,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-2,0,2055,-19,0,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-3,0,1846,-23,0,0 +2013,9,7,6,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,820,-4,0,1118,-15,0,0 +2013,5,9,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2035,4,0,2045,-1,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,3,0,1415,22,1,0 +2013,7,14,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1305,0,0,1435,-2,0,0 +2013,7,18,4,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,635,-5,0,930,-9,0,0 +2013,10,7,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,5,0,1050,17,1,0 +2013,10,20,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,58,1,2005,40,1,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1505,9,0,1640,-6,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-3,0,1111,-14,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,20,1,1815,20,1,0 +2013,6,27,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,8,0,1350,14,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2245,24,1,737,26,1,0 +2013,10,1,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1850,6,0,2005,2,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1750,-9,0,2333,-11,0,0 +2013,9,8,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,733,-21,0,0 +2013,7,13,6,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,-3,0,1550,2,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1850,11,0,1940,6,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1411,4,0,1620,-6,0,0 +2013,4,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-2,0,2052,-7,0,0 +2013,7,17,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1235,104,1,2110,89,1,0 +2013,4,14,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2050,3,0,2337,18,1,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1755,0,0,1855,-5,0,0 +2013,4,25,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1712,14,0,1954,-7,0,0 +2013,6,7,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,812,-4,0,1007,-20,0,0 +2013,5,15,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,-7,0,1255,-11,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,-1,0,1110,-15,0,0 +2013,6,12,3,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2010,0,0,2254,2,0,0 +2013,4,7,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1747,0,0,1909,-16,0,0 +2013,7,3,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-2,0,1358,48,1,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1525,19,1,1842,8,0,0 +2013,9,16,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-2,0,1030,-4,0,0 +2013,5,25,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-2,0,2104,-13,0,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1735,-1,0,1926,-13,0,0 +2013,8,6,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,838,-9,0,953,-22,0,0 +2013,8,29,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,545,-5,0,704,0,0,0 +2013,4,14,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1710,2,0,1745,2,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,0,0,1247,6,0,0 +2013,6,9,7,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1603,1,0,0 +2013,8,24,6,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1150,-3,0,1316,0,0,0 +2013,10,16,3,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1305,16,1,1601,13,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2059,9,0,2257,-13,0,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1949,3,0,2224,-6,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,845,14,0,1604,22,1,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,846,-1,0,1730,-20,0,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1355,5,0,1615,9,0,0 +2013,9,25,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,1610,-7,0,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-6,0,1639,-27,0,0 +2013,10,24,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,12,0,1226,20,1,0 +2013,4,25,4,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1300,-5,0,1450,-9,0,0 +2013,8,8,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1718,16,1,1940,11,0,0 +2013,9,18,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,3,0,1610,-1,0,0 +2013,8,6,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1015,0,0,1807,-2,0,0 +2013,9,19,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1105,-10,0,1244,3,0,0 +2013,5,2,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1735,16,1,1905,16,1,0 +2013,8,21,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,655,-5,0,1524,-2,0,0 +2013,8,21,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-9,0,1010,-5,0,0 +2013,6,18,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,4,0,602,-9,0,0 +2013,5,22,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1910,17,1,55,17,1,0 +2013,5,20,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1121,0,0,1420,5,0,0 +2013,9,10,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1732,0,0,1853,-9,0,0 +2013,7,9,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,819,0,0,0 +2013,4,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1250,3,0,1420,-7,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,-1,0,1049,-10,0,0 +2013,7,14,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1627,72,1,2032,53,1,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,910,11,0,1140,3,0,0 +2013,6,18,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,901,20,1,1020,24,1,0 +2013,6,10,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1023,-15,0,1343,-24,0,0 +2013,6,8,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,1,0,1116,-8,0,0 +2013,8,10,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1200,-1,0,1320,-5,0,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1035,2,0,1310,-7,0,0 +2013,9,29,7,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-4,0,1115,-27,0,0 +2013,4,27,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1700,3,0,1930,-16,0,0 +2013,7,20,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,-6,0,2210,-18,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1211,-5,0,1330,-1,0,0 +2013,7,24,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1135,24,1,1422,42,1,0 +2013,6,10,1,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1005,5,0,1130,-5,0,0 +2013,6,18,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,0,0,1145,-6,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,2,0,2100,36,1,0 +2013,10,30,3,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-1,0,920,-7,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1955,17,1,2220,7,0,0 +2013,5,2,4,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1435,0,0,1615,-15,0,0 +2013,7,8,1,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,735,-7,0,954,-41,0,0 +2013,4,1,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,0,0,854,4,0,0 +2013,9,8,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,925,8,0,1450,14,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1400,55,1,1716,70,1,0 +2013,4,3,3,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1827,-10,0,0 +2013,6,10,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1150,1,0,1255,1,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,912,-14,0,1047,-16,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1500,-6,0,1835,-17,0,0 +2013,10,27,7,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1531,-9,0,1641,-21,0,0 +2013,8,29,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2007,1,0,2105,-9,0,0 +2013,7,5,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2130,-1,0,2359,-14,0,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,915,12,0,1020,2,0,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1153,-1,0,1802,-23,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1612,20,1,1739,22,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1613,-6,0,1722,-22,0,0 +2013,5,2,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1440,-7,0,1628,-23,0,0 +2013,8,25,7,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,715,-4,0,750,-13,0,0 +2013,6,29,6,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1245,21,1,1610,5,0,0 +2013,10,25,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1832,-1,0,2056,-6,0,0 +2013,6,6,4,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,-3,0,1853,-8,0,0 +2013,7,20,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,935,3,0,0 +2013,5,11,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1855,16,1,2020,4,0,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1440,0,0,1925,-1,0,0 +2013,10,11,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,550,-1,0,720,-2,0,0 +2013,9,29,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,31,1,920,28,1,0 +2013,5,29,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-8,0,1016,-7,0,0 +2013,9,19,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,-2,0,2153,-7,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,-1,0,1813,-10,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,-4,0,1555,-13,0,0 +2013,6,8,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-8,0,754,-9,0,0 +2013,5,8,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2130,0,0,2250,0,0,0 +2013,6,21,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,801,-1,0,1100,-15,0,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1510,-3,0,1742,1,0,0 +2013,8,7,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,0,0,905,-9,0,0 +2013,4,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1800,59,1,1920,47,1,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1905,71,1,2145,82,1,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,800,-2,0,1035,2,0,0 +2013,10,4,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1815,-4,0,2135,-34,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,-3,0,1550,-5,0,0 +2013,4,30,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,17,1,2025,24,1,0 +2013,5,19,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,825,-5,0,1104,-16,0,0 +2013,6,12,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1120,-2,0,1145,-9,0,0 +2013,8,12,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,839,0,0,1045,2,0,0 +2013,4,26,5,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1323,-5,0,1421,-15,0,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1712,31,1,1957,45,1,0 +2013,10,8,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2025,-1,0,2145,-11,0,0 +2013,8,30,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,820,-1,0,915,-5,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,839,12,0,1034,9,0,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1540,-1,0,1616,9,0,0 +2013,4,7,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2302,-2,0,2351,-1,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2040,0,0,2207,-11,0,0 +2013,9,12,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-7,0,1230,-5,0,0 +2013,10,16,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-7,0,1810,-6,0,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-2,0,1827,-19,0,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-6,0,1746,-12,0,0 +2013,5,17,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,720,-18,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1355,17,1,1622,7,0,0 +2013,10,23,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,4,0,915,-6,0,0 +2013,9,11,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,935,21,1,950,9,0,0 +2013,9,18,3,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,707,-7,0,1028,-20,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,20,1,1928,16,1,0 +2013,7,8,1,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-2,0,758,-7,0,0 +2013,8,10,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1730,-1,0,2045,-6,0,0 +2013,8,16,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,955,-1,0,1110,-5,0,0 +2013,7,12,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2050,41,1,2330,28,1,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1240,-2,0,1345,10,0,0 +2013,6,8,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,605,-6,0,901,-9,0,0 +2013,5,9,4,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,705,-3,0,1005,-21,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1311,-6,0,1624,50,1,0 +2013,10,16,3,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-4,0,1010,1,0,0 +2013,8,16,5,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1500,4,0,1722,-6,0,0 +2013,8,4,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1620,-15,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-5,0,2351,-17,0,0 +2013,10,21,1,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1230,15,1,1415,6,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1540,-3,0,1845,-4,0,0 +2013,5,26,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1708,-9,0,2111,-16,0,0 +2013,7,22,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-1,0,1345,62,1,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,5,0,1908,18,1,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,10,0,930,16,1,0 +2013,9,8,7,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,-5,0,1440,-17,0,0 +2013,7,22,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,0,,1315,0,1,1 +2013,5,30,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,88,1,618,69,1,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1301,-8,0,1412,-19,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,810,109,1,950,100,1,0 +2013,8,9,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1220,-7,0,1425,-4,0,0 +2013,6,14,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1655,4,0,1805,74,1,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,4,0,1740,-5,0,0 +2013,7,29,1,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,905,-5,0,1115,5,0,0 +2013,10,18,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1501,-7,0,1645,-14,0,0 +2013,9,24,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1210,-4,0,1355,-9,0,0 +2013,6,10,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1807,2,0,1938,-8,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1630,12,0,1815,6,0,0 +2013,5,12,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,720,-2,0,805,-13,0,0 +2013,8,20,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-2,0,2203,-1,0,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,752,7,0,932,26,1,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1650,0,0,1805,-3,0,0 +2013,9,8,7,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,700,-9,0,1111,-23,0,0 +2013,4,16,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,123,1,1930,116,1,0 +2013,5,8,3,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,241,1,1723,236,1,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1020,-4,0,1159,-5,0,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2059,163,1,2220,148,1,0 +2013,6,16,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1340,24,1,1430,22,1,0 +2013,7,30,2,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,4,0,2135,-15,0,0 +2013,7,15,1,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,3,0,718,1,0,0 +2013,4,16,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1444,35,1,1735,21,1,0 +2013,10,13,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1807,-1,0,2119,1,0,0 +2013,4,20,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,30,-6,0,454,-30,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,54,1,2145,69,1,0 +2013,7,27,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1055,-1,0,1220,-9,0,0 +2013,8,17,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1456,42,1,1615,41,1,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1250,-3,0,1702,-28,0,0 +2013,6,8,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,923,-4,0,0 +2013,10,17,4,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2104,-2,0,2359,-9,0,0 +2013,6,1,6,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,747,-4,0,840,-14,0,0 +2013,7,12,5,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1920,50,1,2045,75,1,0 +2013,5,31,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,630,-12,0,805,-13,0,0 +2013,6,12,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,14,0,2233,12,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1748,-8,0,2031,-13,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1905,11,0,2135,20,1,0 +2013,9,18,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1351,-8,0,1508,-20,0,0 +2013,9,7,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1200,1,0,1445,-3,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2114,-2,0,2355,-31,0,0 +2013,7,10,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,1,0,1650,-1,0,0 +2013,7,26,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,724,-5,0,1020,-3,0,0 +2013,4,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1713,0,0,2128,1,0,0 +2013,7,5,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1049,-5,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1116,-5,0,1553,-30,0,0 +2013,7,12,5,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-7,0,1638,20,1,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,845,-1,0,950,-1,0,0 +2013,6,29,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1920,-4,0,2048,-16,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1910,7,0,2015,-7,0,0 +2013,9,25,3,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1610,0,0,1945,-8,0,0 +2013,6,4,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-7,0,1021,-4,0,0 +2013,5,28,2,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,50,1,1925,36,1,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,13,0,1600,43,1,0 +2013,9,6,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,700,-10,0,831,-5,0,0 +2013,9,27,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1730,30,1,1835,26,1,0 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-1,0,1826,9,0,0 +2013,7,26,5,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1325,2,0,1450,-2,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,92,1,2319,75,1,0 +2013,6,8,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2050,132,1,2137,120,1,0 +2013,7,26,5,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-9,0,1538,2,0,0 +2013,6,3,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,922,-10,0,1235,-27,0,0 +2013,5,22,3,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1110,-6,0,1414,-2,0,0 +2013,4,30,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1610,-2,0,1740,-9,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1615,15,1,1855,-10,0,0 +2013,5,2,4,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,928,-1,0,1512,-14,0,0 +2013,6,15,6,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,7,0,1405,1,0,0 +2013,10,11,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1459,-1,0,1844,-16,0,0 +2013,7,10,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-4,0,1012,16,1,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,10,0,2151,10,0,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1000,18,1,1150,13,0,0 +2013,7,17,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-14,0,1235,-20,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1830,-7,0,2015,9,0,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1955,11,0,2220,-4,0,0 +2013,5,11,6,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1100,-4,0,1440,1,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,5,0,2145,-3,0,0 +2013,4,12,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,920,-9,0,1034,-16,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1151,39,1,1312,30,1,0 +2013,8,31,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,-2,0,1838,-15,0,0 +2013,8,12,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1835,-11,0,2150,-25,0,0 +2013,7,29,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1210,0,0,1655,-2,0,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-3,0,805,2,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,-5,0,1311,-20,0,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-3,0,1017,-6,0,0 +2013,7,4,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1102,-7,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1120,-2,0,1225,-10,0,0 +2013,9,9,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2225,-5,0,2325,-11,0,0 +2013,5,21,2,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,0,0,1205,28,1,0 +2013,8,6,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,20,1,1017,17,1,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,-4,0,1005,-17,0,0 +2013,8,23,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,13,0,1355,13,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1505,9,0,1610,9,0,0 +2013,8,23,5,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1425,-6,0,1615,-11,0,0 +2013,7,11,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,2035,122,1,2335,117,1,0 +2013,6,9,7,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1157,-1,0,1302,-7,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1243,-1,0,1720,-2,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1650,-1,0,2030,-5,0,0 +2013,6,11,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,-7,0,1535,-5,0,0 +2013,9,14,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,1,0,1415,-8,0,0 +2013,5,30,4,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,0,0,2200,5,0,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1010,-4,0,1117,-12,0,0 +2013,7,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-4,0,904,-3,0,0 +2013,4,3,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-7,0,520,-23,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1350,-6,0,2110,-22,0,0 +2013,7,30,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,0,0,1515,-3,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,842,1,0,1130,-3,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1340,4,0,1454,6,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1100,0,0,1155,-15,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1510,0,0,1835,1,0,0 +2013,4,3,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-6,0,1540,-5,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1020,0,0,1215,-2,0,0 +2013,6,22,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,610,7,0,715,-17,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,915,7,0,1140,3,0,0 +2013,9,9,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1123,0,0,1514,-9,0,0 +2013,9,13,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,85,1,2231,76,1,0 +2013,10,14,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1632,-21,0,0 +2013,6,23,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2120,200,1,2340,182,1,0 +2013,10,13,7,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1500,-1,0,1602,2,0,0 +2013,8,8,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,0,0,1927,-13,0,0 +2013,5,15,3,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,620,-4,0,834,-5,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,10,0,5,15,1,0 +2013,5,29,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,815,-3,0,1111,-16,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,5,0,2330,24,1,0 +2013,5,7,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,-9,0,1558,-4,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,-4,0,2332,-17,0,0 +2013,7,16,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1049,2,0,0 +2013,9,6,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1500,-4,0,1545,0,0,0 +2013,9,13,5,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1125,-20,0,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1145,0,0,1840,-5,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,1,0,1515,-7,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,3,0,2148,59,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,15,1,2312,15,1,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,-2,0,1636,-19,0,0 +2013,6,13,4,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1650,25,1,1840,20,1,0 +2013,9,11,3,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1720,-6,0,1843,-2,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1530,4,0,1705,39,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1655,11,0,2025,6,0,0 +2013,4,2,2,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1629,-4,0,1939,14,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,15,1,1755,24,1,0 +2013,4,18,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,923,10,0,1044,4,0,0 +2013,4,12,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,904,-6,0,0 +2013,6,26,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1940,-1,0,2035,-11,0,0 +2013,5,6,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1520,110,1,1625,97,1,0 +2013,7,9,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-5,0,1013,-1,0,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1250,2,0,1605,7,0,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,915,3,0,1710,-11,0,0 +2013,8,27,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-3,0,1945,-29,0,0 +2013,10,19,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1540,0,0,1742,19,1,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,0,0,855,-9,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1311,16,1,1605,-2,0,0 +2013,7,15,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1511,30,1,1845,12,0,0 +2013,6,5,3,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,-3,0,2230,0,0,0 +2013,9,17,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,956,13,0,0 +2013,8,11,7,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1835,-3,0,2018,4,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1745,19,1,1905,118,1,0 +2013,9,1,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1229,14,0,1404,-2,0,0 +2013,5,1,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,705,-4,0,915,-5,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,-6,0,1950,3,0,0 +2013,6,19,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,14,0,1803,6,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1410,3,0,1510,0,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2114,-8,0,2230,-14,0,0 +2013,5,6,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,27,1,1700,25,1,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-8,0,731,-8,0,0 +2013,8,30,5,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,-5,0,1224,1,0,0 +2013,7,28,7,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1515,244,1,1845,222,1,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,-4,0,2213,4,0,0 +2013,8,26,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1950,23,1,2135,23,1,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-4,0,2132,-10,0,0 +2013,4,24,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1310,42,1,1600,28,1,0 +2013,9,16,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1157,-5,0,1332,-17,0,0 +2013,7,15,1,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,955,2,0,1130,-4,0,0 +2013,5,18,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-7,0,1040,-20,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1420,110,1,1550,104,1,0 +2013,7,20,6,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2310,47,1,730,26,1,0 +2013,4,22,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,715,2,0,830,-5,0,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,735,-2,0,910,-13,0,0 +2013,10,28,1,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,759,-18,0,0 +2013,9,14,6,9E,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,955,-4,0,1132,-13,0,0 +2013,8,13,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1740,27,1,1855,22,1,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,630,-5,0,916,16,1,0 +2013,10,18,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,710,-8,0,835,-10,0,0 +2013,10,9,3,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-2,0,810,-13,0,0 +2013,10,10,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1603,-1,0,1900,-9,0,0 +2013,5,4,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,-1,0,1130,-4,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,-3,0,1955,-5,0,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1058,-6,0,1459,-39,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1130,264,1,1245,259,1,0 +2013,4,5,5,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1450,-17,0,0 +2013,9,16,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,0,,1326,0,1,1 +2013,10,9,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,904,1,0,0 +2013,9,11,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,24,1,1834,26,1,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,945,0,0,1045,-11,0,0 +2013,8,27,2,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,625,4,0,836,-23,0,0 +2013,7,22,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-2,0,1325,-11,0,0 +2013,9,3,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,-2,0,1550,-6,0,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,755,0,0,920,3,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1235,13,0,1320,7,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1705,100,1,1805,97,1,0 +2013,6,18,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,60,1,2025,44,1,0 +2013,8,27,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1114,-12,0,0 +2013,4,11,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-1,0,1630,-9,0,0 +2013,10,19,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,603,1,0,1220,-7,0,0 +2013,4,27,6,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1533,-8,0,1754,-23,0,0 +2013,9,21,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1159,53,1,1453,79,1,0 +2013,6,6,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1950,7,0,2101,19,1,0 +2013,4,21,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,89,1,1931,65,1,0 +2013,6,21,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1517,22,1,2025,0,0,0 +2013,7,18,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1020,-1,0,1206,-15,0,0 +2013,7,28,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2030,-1,0,2155,-8,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,-3,0,1444,-17,0,0 +2013,7,31,3,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1336,-3,0,1711,-1,0,0 +2013,5,9,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,2030,-2,0,2210,0,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1750,46,1,55,41,1,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1535,9,0,1815,-30,0,0 +2013,8,22,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1730,14,0,1835,-5,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1455,-5,0,1635,-10,0,0 +2013,8,6,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1650,49,1,1830,39,1,0 +2013,9,26,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1014,-8,0,1451,-18,0,0 +2013,6,19,3,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,28,1,2000,24,1,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2145,-2,0,520,-13,0,0 +2013,8,2,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-2,0,1302,-5,0,0 +2013,9,7,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1215,-1,0,1903,10,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1025,-2,0,1214,-16,0,0 +2013,10,11,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1500,65,1,1656,62,1,0 +2013,10,13,7,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-2,0,735,-3,0,0 +2013,8,18,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1025,-1,0,1115,-6,0,0 +2013,9,8,7,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1848,40,1,2029,38,1,0 +2013,10,17,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,1955,3,0,2005,-4,0,0 +2013,5,28,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,-5,0,1435,-12,0,0 +2013,8,18,7,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1445,-3,0,2250,10,0,0 +2013,5,18,6,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1246,-9,0,1530,-3,0,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1731,1,0,2353,-21,0,0 +2013,6,13,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1835,-9,0,2354,-30,0,0 +2013,8,25,7,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1435,-1,0,1655,-40,0,0 +2013,9,13,5,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2010,-10,0,2239,-18,0,0 +2013,4,15,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,260,1,2220,210,1,0 +2013,10,30,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1720,-3,0,2335,-20,0,0 +2013,7,22,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1846,0,,2038,0,1,1 +2013,7,10,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,139,1,2104,153,1,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1725,-7,0,1833,-11,0,0 +2013,7,13,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1520,-3,0,1720,6,0,0 +2013,7,28,7,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1730,227,1,1950,229,1,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,9,0,57,15,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1447,-3,0,1555,-24,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,-3,0,2210,-21,0,0 +2013,6,20,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,1,0,1905,-6,0,0 +2013,7,16,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,630,-1,0,800,-8,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,3,0,2118,12,0,0 +2013,10,18,5,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1755,18,1,1915,3,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1754,-2,0,2013,2,0,0 +2013,10,4,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1025,5,0,1345,7,0,0 +2013,9,3,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1044,4,0,1225,-16,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1530,125,1,1700,126,1,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1320,53,1,1625,50,1,0 +2013,4,1,1,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1245,10,0,1545,16,1,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,0,0,9,-1,0,0 +2013,9,24,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,825,0,0,920,0,0,0 +2013,4,18,4,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1445,41,1,1520,35,1,0 +2013,10,4,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1230,-1,0,1545,-13,0,0 +2013,8,18,7,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1605,1,0,1925,-33,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-2,0,1440,-22,0,0 +2013,6,19,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1120,5,0,1350,-1,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2140,7,0,35,-14,0,0 +2013,10,31,4,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1259,10,0,1606,8,0,0 +2013,8,14,3,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1940,88,1,2240,82,1,0 +2013,9,26,4,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1007,-4,0,1122,-10,0,0 +2013,10,16,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,655,-3,0,725,-8,0,0 +2013,6,11,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1312,-7,0,1552,25,1,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-7,0,1259,-19,0,0 +2013,8,13,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,185,1,1658,187,1,0 +2013,5,16,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1350,-4,0,1655,-16,0,0 +2013,5,16,4,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1120,-5,0,1408,-20,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,900,11,0,1015,8,0,0 +2013,6,18,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1426,-7,0,1729,9,0,0 +2013,9,10,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1109,-7,0,1213,-10,0,0 +2013,4,12,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,7,0,2209,2,0,0 +2013,7,31,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-6,0,924,-17,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1433,-5,0,1603,-5,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1420,19,1,2205,17,1,0 +2013,7,18,4,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,-2,0,835,-17,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1459,-3,0,1806,-34,0,0 +2013,6,29,6,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,920,-5,0,1211,-2,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1051,-3,0,1119,-1,0,0 +2013,8,9,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,-4,0,1130,-21,0,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,830,1,0,1040,54,1,0 +2013,7,26,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1258,-5,0,1425,32,1,0 +2013,4,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,0,0,1450,-5,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1810,1,0,2030,-24,0,0 +2013,8,18,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,13,0,1655,11,0,0 +2013,7,17,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1110,-5,0,1413,-15,0,0 +2013,5,9,4,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1825,19,1,2145,14,0,0 +2013,9,7,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1629,1,0,1923,-23,0,0 +2013,8,14,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2000,-1,0,2158,4,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,-3,0,2028,-20,0,0 +2013,9,10,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-5,0,1317,-24,0,0 +2013,4,9,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,-4,0,1516,-6,0,0 +2013,5,16,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1734,115,1,2105,96,1,0 +2013,6,7,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,60,1,2030,54,1,0 +2013,8,15,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,5,0,1505,-1,0,0 +2013,7,18,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1745,268,1,2145,259,1,0 +2013,4,20,6,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,0,0,1730,-7,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,4,0,1231,-7,0,0 +2013,6,24,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2018,-2,0,2119,-8,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,-5,0,1945,-8,0,0 +2013,8,18,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,746,-3,0,1324,-23,0,0 +2013,6,13,4,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1858,96,1,2024,127,1,0 +2013,6,5,3,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1204,-1,0,1345,3,0,0 +2013,4,12,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,601,-5,0,900,-4,0,0 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1003,-4,0,1319,-13,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2253,3,0,725,-35,0,0 +2013,9,26,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1120,7,0,1225,5,0,0 +2013,7,23,2,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-11,0,1125,1,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,655,-3,0,815,-28,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,3,0,1140,6,0,0 +2013,10,24,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,0,0,1150,-2,0,0 +2013,6,19,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,0,0,1435,-4,0,0 +2013,8,27,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1853,-7,0,2151,-21,0,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1756,77,1,1916,124,1,0 +2013,5,7,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2136,-2,0,2325,-10,0,0 +2013,8,23,5,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2132,0,0,2344,-10,0,0 +2013,7,13,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-3,0,1217,-10,0,0 +2013,9,20,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,3,0,920,-6,0,0 +2013,4,3,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,752,-2,0,940,-3,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,52,1,2234,37,1,0 +2013,7,19,5,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1420,-5,0,1714,19,1,0 +2013,8,8,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,55,9,0,603,6,0,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1605,22,1,1747,11,0,0 +2013,8,1,4,DL,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2213,22,1,620,15,1,0 +2013,8,12,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1600,14,0,1725,21,1,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,953,-5,0,1209,-24,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2040,3,0,2310,5,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-7,0,1809,-22,0,0 +2013,4,11,4,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,815,-4,0,1007,-8,0,0 +2013,4,4,4,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1152,76,1,1305,63,1,0 +2013,4,9,2,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1729,-6,0,1928,8,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,615,-4,0,740,-11,0,0 +2013,8,21,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,848,0,0,1048,-4,0,0 +2013,6,10,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1236,91,1,1404,103,1,0 +2013,10,26,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,600,-2,0,840,-11,0,0 +2013,4,5,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,640,-11,0,739,-27,0,0 +2013,9,13,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-5,0,1557,3,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2000,1,0,2203,8,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1215,4,0,1650,5,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1650,16,1,1805,-13,0,0 +2013,6,27,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,-2,0,940,-12,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,7,0,1050,18,1,0 +2013,5,28,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1920,-1,0,2050,-2,0,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,940,10,0,0 +2013,9,18,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,925,2,0,1025,-6,0,0 +2013,9,21,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-1,0,1044,6,0,0 +2013,8,17,6,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1250,6,0,1635,-8,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,0,0,1507,1,0,0 +2013,5,10,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1710,144,1,1845,147,1,0 +2013,10,25,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,4,0,1850,-4,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1749,9,0,1911,25,1,0 +2013,6,2,7,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1240,61,1,1506,49,1,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1156,-5,0,1438,-10,0,0 +2013,10,15,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1359,46,1,2205,10,0,0 +2013,10,30,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-6,0,1214,-15,0,0 +2013,4,24,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1235,1,0,1400,0,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1015,9,0,1305,-8,0,0 +2013,8,21,3,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1624,1,0,1806,-14,0,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,23,1,1715,14,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1635,11,0,1745,6,0,0 +2013,8,12,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-8,0,1329,-25,0,0 +2013,5,31,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1155,2,0,1310,4,0,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,18,1,1332,61,1,0 +2013,5,8,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,10,0,1719,6,0,0 +2013,7,25,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,805,29,1,850,26,1,0 +2013,6,5,3,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1133,15,1,1904,-6,0,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,2,0,2217,-2,0,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,22,1,2145,20,1,0 +2013,6,12,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2155,0,,115,0,1,1 +2013,5,16,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2013,-4,0,2030,-14,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1738,1,0,1829,-2,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,,755,0,1,1 +2013,5,17,5,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1450,29,1,1615,23,1,0 +2013,6,26,3,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,220,1,1600,238,1,0 +2013,4,23,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1655,7,0,1731,1,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,2,0,1210,3,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,1,0,1005,13,0,0 +2013,6,29,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,0,0,2256,-6,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1010,0,0,1355,-5,0,0 +2013,10,2,3,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1745,-3,0,1940,-20,0,0 +2013,5,20,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1017,-4,0,1304,12,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,8,0,1910,-4,0,0 +2013,6,7,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,24,1,1631,32,1,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1541,-2,0,1828,-14,0,0 +2013,5,22,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,1,0,920,1,0,0 +2013,8,13,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1505,-6,0,1840,-13,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1050,3,0,1140,-1,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,-1,0,1208,-29,0,0 +2013,6,29,6,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,615,-3,0,855,-14,0,0 +2013,10,8,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,747,-2,0,901,-17,0,0 +2013,5,9,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,925,-3,0,1040,-8,0,0 +2013,4,18,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,48,1,1435,27,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,941,-1,0,1112,1,0,0 +2013,6,19,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,-3,0,1853,-11,0,0 +2013,10,9,3,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,-2,0,2110,14,0,0 +2013,5,23,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,19,1,1816,45,1,0 +2013,10,2,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1725,-6,0,2057,-22,0,0 +2013,10,27,7,9E,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1429,1,0,1623,-16,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1231,-3,0,1335,-22,0,0 +2013,6,30,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2045,32,1,2135,31,1,0 +2013,4,26,5,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,3,0,540,15,1,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,9,0,1800,-10,0,0 +2013,8,30,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,90,1,1650,140,1,0 +2013,4,28,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1228,35,1,1532,21,1,0 +2013,4,13,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1732,20,1,1923,3,0,0 +2013,7,15,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1155,-4,0,1255,-8,0,0 +2013,4,1,1,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,952,23,1,1230,29,1,0 +2013,7,31,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1728,7,0,2110,-2,0,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1700,-4,0,2011,11,0,0 +2013,10,30,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,705,-4,0,824,-15,0,0 +2013,9,22,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,-1,0,1653,-19,0,0 +2013,10,2,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,829,-2,0,1026,-16,0,0 +2013,7,19,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,119,1,1955,119,1,0 +2013,4,7,7,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,0,0,1100,-10,0,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,640,-5,0,810,-21,0,0 +2013,10,22,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-2,0,1459,-10,0,0 +2013,5,10,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1109,4,0,0 +2013,4,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2252,-6,0,15,-8,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,810,0,0,1020,-3,0,0 +2013,9,11,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1055,-6,0,0 +2013,10,27,7,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1357,12,0,1609,4,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1130,0,,1230,0,1,1 +2013,7,28,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-1,0,1420,2,0,0 +2013,10,20,7,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1806,3,0,2029,-11,0,0 +2013,9,3,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2045,-6,0,2319,15,1,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1205,-4,0,1310,-6,0,0 +2013,10,31,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,752,0,0,907,-5,0,0 +2013,7,3,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-4,0,1649,-8,0,0 +2013,10,8,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,-2,0,1537,-10,0,0 +2013,4,12,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,-5,0,1950,-2,0,0 +2013,6,25,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,144,1,2215,151,1,0 +2013,8,21,3,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1505,24,1,1810,41,1,0 +2013,6,19,3,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1850,-12,0,2116,-26,0,0 +2013,10,19,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,730,-4,0,843,-2,0,0 +2013,9,20,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-1,0,935,9,0,0 +2013,7,18,4,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-3,0,810,-16,0,0 +2013,6,5,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2011,2,0,2328,-6,0,0 +2013,4,29,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-4,0,1240,2,0,0 +2013,8,13,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,53,1,1220,53,1,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,5,0,1535,1,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1210,-1,0,1530,6,0,0 +2013,10,30,3,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1515,-2,0,1745,15,1,0 +2013,7,21,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,-7,0,1350,-8,0,0 +2013,4,14,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-4,0,1912,2,0,0 +2013,9,8,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,912,-1,0,1026,15,1,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1050,2,0,1200,4,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1000,-6,0,1610,4,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-3,0,2335,-18,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,745,-2,0,930,3,0,0 +2013,5,17,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1305,11,0,1600,11,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,759,-7,0,1103,-44,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1420,21,1,1900,-22,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,-4,0,2025,-1,0,0 +2013,8,6,2,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1740,-6,0,2045,-6,0,0 +2013,5,5,7,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,-7,0,2145,-22,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,43,1,1654,55,1,0 +2013,5,30,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,-7,0,1240,-15,0,0 +2013,4,12,5,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-3,0,825,2,0,0 +2013,5,15,3,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-7,0,1642,-22,0,0 +2013,10,30,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1920,3,0,2010,2,0,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,920,-8,0,1227,-24,0,0 +2013,10,25,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1115,3,0,1407,-7,0,0 +2013,4,15,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-5,0,1752,-11,0,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1700,123,1,1820,123,1,0 +2013,6,28,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1404,3,0,0 +2013,9,25,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1455,2,0,1710,-13,0,0 +2013,7,28,7,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-5,0,1142,-14,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,929,11,0,1214,9,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2234,-1,0,44,-7,0,0 +2013,10,10,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2016,-4,0,2145,6,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-5,0,1620,-17,0,0 +2013,5,25,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,-6,0,1904,-10,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,13,0,1355,14,0,0 +2013,5,21,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,1355,12,0,1519,5,0,0 +2013,8,21,3,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,-4,0,1930,-24,0,0 +2013,10,31,4,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,635,-9,0,840,17,1,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-3,0,952,-18,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1249,39,1,1729,9,0,0 +2013,5,28,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,1,0,800,-11,0,0 +2013,7,7,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,0,0,655,-8,0,0 +2013,6,13,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1814,-12,0,1935,-4,0,0 +2013,8,29,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-3,0,1125,-12,0,0 +2013,10,3,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,454,-2,0,925,-5,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,-4,0,1841,13,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,820,-4,0,1125,-13,0,0 +2013,7,28,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1355,-10,0,1538,-12,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2010,65,1,2110,50,1,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1625,64,1,1834,69,1,0 +2013,8,7,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1910,69,1,2023,79,1,0 +2013,6,24,1,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-4,0,1745,-2,0,0 +2013,5,17,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1202,-7,0,1450,-19,0,0 +2013,5,30,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1355,3,0,1659,-1,0,0 +2013,9,14,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-7,0,1334,-38,0,0 +2013,8,20,2,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1003,-6,0,1455,-6,0,0 +2013,7,9,2,HA,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1405,-3,0,2210,-5,0,0 +2013,5,2,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1429,-3,0,1733,-13,0,0 +2013,10,6,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1010,-9,0,1125,-21,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1454,0,0,1603,-13,0,0 +2013,9,25,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,55,1,1845,62,1,0 +2013,10,8,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-15,0,2049,-16,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1915,-4,0,2038,-24,0,0 +2013,8,26,1,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1155,-10,0,1430,-17,0,0 +2013,4,18,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2135,193,1,2157,193,1,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1415,18,1,2241,11,0,0 +2013,8,28,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-3,0,1045,-9,0,0 +2013,7,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1708,-3,0,2305,13,0,0 +2013,6,3,1,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,5,0,1300,5,0,0 +2013,8,5,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-3,0,1524,-20,0,0 +2013,4,2,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,641,-6,0,816,-24,0,0 +2013,5,27,1,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1935,-12,0,2044,-9,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-2,0,2302,-20,0,0 +2013,10,5,6,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,905,-9,0,1219,-7,0,0 +2013,10,26,6,EV,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1631,-7,0,1942,-22,0,0 +2013,9,6,5,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2200,-2,0,2321,-8,0,0 +2013,8,8,4,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,930,7,0,1340,-12,0,0 +2013,8,21,3,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,811,-2,0,952,-7,0,0 +2013,4,30,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1320,0,0,1440,21,1,0 +2013,6,20,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-9,0,1412,20,1,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1136,-6,0,0 +2013,9,6,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-2,0,1015,-10,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,0,0,2359,-5,0,0 +2013,8,26,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1400,158,1,1515,160,1,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,5,0,1145,-10,0,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1611,0,0,1731,-19,0,0 +2013,8,2,5,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,42,1,920,43,1,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1419,0,0,1605,-9,0,0 +2013,6,8,6,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1859,-5,0,2210,-1,0,0 +2013,9,22,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-8,0,1220,-16,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1530,46,1,2348,13,0,0 +2013,6,22,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,-6,0,1618,-11,0,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-1,0,935,1,0,0 +2013,8,30,5,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-4,0,909,-9,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,2,0,1232,-3,0,0 +2013,5,13,1,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,1834,-3,0,1900,-14,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2155,2,0,2315,3,0,0 +2013,8,10,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,16,1,2157,17,1,0 +2013,7,1,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,19,1,2033,18,1,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,720,6,0,1000,-20,0,0 +2013,10,15,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,-3,0,1519,-9,0,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,817,-8,0,1359,-19,0,0 +2013,5,18,6,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,940,-12,0,1339,-20,0,0 +2013,4,3,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,-1,0,1530,-14,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1610,0,0,1715,2,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1936,138,1,2040,127,1,0 +2013,6,23,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-4,0,1240,3,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-4,0,2056,-3,0,0 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,910,-4,0,1040,-9,0,0 +2013,4,16,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1516,-27,0,0 +2013,4,2,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2145,11,0,2315,9,0,0 +2013,9,13,5,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1810,-6,0,2055,-18,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1225,-3,0,1330,-13,0,0 +2013,7,2,2,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1905,9,0,1940,-5,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1000,0,0,1715,-9,0,0 +2013,4,10,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1127,26,1,1345,7,0,0 +2013,10,26,6,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-7,0,750,-15,0,0 +2013,4,21,7,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,825,6,0,1615,-8,0,0 +2013,9,23,1,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1505,-5,0,1834,-13,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1133,-2,0,1309,-11,0,0 +2013,4,11,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,735,106,1,800,89,1,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1650,233,1,1910,215,1,0 +2013,4,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1255,10,0,1525,2,0,0 +2013,8,17,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1828,-1,0,2105,-2,0,0 +2013,4,19,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,700,85,1,814,91,1,0 +2013,8,31,6,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1921,-2,0,2337,-10,0,0 +2013,5,5,7,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,835,-7,0,900,-11,0,0 +2013,7,26,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,45,1,2243,44,1,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1610,0,0,1740,-12,0,0 +2013,9,5,4,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,0,0,1925,-5,0,0 +2013,10,19,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,735,-6,0,850,-18,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1125,24,1,1515,9,0,0 +2013,4,4,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-3,0,1945,9,0,0 +2013,10,7,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,645,0,0,655,0,0,0 +2013,7,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2205,-6,0,2256,-8,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2132,14,0,25,13,0,0 +2013,10,14,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1740,-14,0,2015,-4,0,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1320,-2,0,1435,-2,0,0 +2013,7,21,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,-7,0,646,-13,0,0 +2013,7,19,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-10,0,1619,-15,0,0 +2013,5,10,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,1,0,1913,-11,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2100,21,1,2236,5,0,0 +2013,6,1,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,715,-6,0,845,8,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,-1,0,2209,-3,0,0 +2013,10,22,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1310,-6,0,1325,-7,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1248,-1,0,1532,1,0,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,-1,0,1600,-9,0,0 +2013,6,12,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-3,0,1210,-2,0,0 +2013,6,17,1,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1111,13,0,1323,-4,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2135,-1,0,2315,-3,0,0 +2013,9,13,5,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,-2,0,2020,-19,0,0 +2013,9,2,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,-3,0,1550,-3,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1500,-2,0,1615,5,0,0 +2013,4,25,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-4,0,1209,-10,0,0 +2013,8,30,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,855,-5,0,1152,-50,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,24,1,1230,13,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,-2,0,1805,-13,0,0 +2013,4,17,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,710,-3,0,1540,-11,0,0 +2013,5,25,6,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,4,0,1518,-1,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1615,32,1,1720,34,1,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-2,0,1740,22,1,0 +2013,9,28,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,903,-4,0,1150,-11,0,0 +2013,7,29,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,-9,0,830,-7,0,0 +2013,4,4,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1745,3,0,2019,5,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-2,0,945,-5,0,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,935,6,0,1025,6,0,0 +2013,5,29,3,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,-7,0,1425,0,0,0 +2013,4,13,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1855,-3,0,2134,-30,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2209,-1,0,2252,6,0,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,725,36,1,804,24,1,0 +2013,10,1,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,6,0,1054,11,0,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,645,-2,0,805,-6,0,0 +2013,6,3,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1525,149,1,1715,141,1,0 +2013,8,30,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1515,-7,0,1620,-14,0,0 +2013,9,9,1,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,0,0,1125,-8,0,0 +2013,4,15,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1455,4,0,1620,9,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1808,-2,0,1956,-14,0,0 +2013,10,17,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,2,0,1740,-4,0,0 +2013,5,26,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-3,0,1828,-13,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,700,-1,0,814,1,0,0 +2013,8,8,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,119,1,1255,111,1,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1330,-4,0,1614,-16,0,0 +2013,4,29,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1450,-10,0,1554,-9,0,0 +2013,7,6,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,0,0,1212,-20,0,0 +2013,4,6,6,UA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,1749,10,0,2336,-7,0,0 +2013,5,7,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,925,-5,0,1240,-41,0,0 +2013,8,14,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,700,-8,0,840,-9,0,0 +2013,9,2,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-2,0,1800,-2,0,0 +2013,9,7,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,920,295,1,1107,290,1,0 +2013,10,27,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,637,8,0,815,-1,0,0 +2013,10,5,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-6,0,840,-11,0,0 +2013,10,3,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,840,-5,0,1100,-17,0,0 +2013,9,8,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-10,0,1120,-17,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-5,0,851,-2,0,0 +2013,8,29,4,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1449,-5,0,1601,-8,0,0 +2013,7,8,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1635,24,1,1649,16,1,0 +2013,8,20,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1710,6,0,1955,-17,0,0 +2013,5,29,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1505,-10,0,1731,-7,0,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-2,0,930,-4,0,0 +2013,4,22,1,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1620,-7,0,1800,-17,0,0 +2013,5,23,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,190,1,2126,167,1,0 +2013,7,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,74,1,2133,67,1,0 +2013,9,14,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,-7,0,1848,-47,0,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1610,-2,0,1705,-4,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,910,-2,0,1437,15,1,0 +2013,8,11,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,904,29,1,1157,20,1,0 +2013,7,26,5,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,645,-1,0,750,-8,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,850,6,0,1721,-5,0,0 +2013,5,28,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,2,0,1645,-1,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-3,0,1917,-13,0,0 +2013,4,4,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1118,4,0,0 +2013,8,24,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,114,1,1154,129,1,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1510,-6,0,2048,-19,0,0 +2013,10,23,3,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,630,-10,0,840,-25,0,0 +2013,7,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,-2,0,1135,0,0,0 +2013,9,24,2,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1040,-3,0,1125,-10,0,0 +2013,9,18,3,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1200,-6,0,1259,-1,0,0 +2013,10,24,4,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-3,0,603,-10,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,915,15,1,1134,2,0,0 +2013,9,30,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1540,42,1,1705,41,1,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,620,2,0,1140,-5,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1540,1,0,1847,1,0,0 +2013,6,12,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1227,-3,0,1433,-6,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1351,6,0,1658,3,0,0 +2013,7,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,0,0,1450,-9,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,-2,0,2000,-11,0,0 +2013,6,15,6,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,700,-8,0,949,0,0,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,810,12,0,956,14,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1850,6,0,2130,-8,0,0 +2013,6,20,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,940,0,0,1050,-1,0,0 +2013,6,16,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,27,1,1105,23,1,0 +2013,7,9,2,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,30,-11,0,835,-9,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1255,-5,0,1726,-3,0,0 +2013,4,26,5,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1110,-3,0,1205,4,0,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1225,-4,0,1505,-4,0,0 +2013,5,23,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1710,85,1,1925,89,1,0 +2013,6,8,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,825,-6,0,1005,-6,0,0 +2013,4,15,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1640,21,1,1745,14,0,0 +2013,6,19,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,6,0,1520,8,0,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,11,0,2225,-4,0,0 +2013,8,25,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2150,5,0,2257,-13,0,0 +2013,9,12,4,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2015,0,,2144,0,1,1 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1755,12,0,1923,28,1,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,840,-23,0,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1510,-1,0,1940,-15,0,0 +2013,6,4,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1540,0,0,1855,3,0,0 +2013,4,16,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,745,-10,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,-2,0,2117,-18,0,0 +2013,9,14,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1355,-15,0,1440,-23,0,0 +2013,9,10,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2009,-10,0,2135,-29,0,0 +2013,8,23,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1530,3,0,1555,19,1,0 +2013,9,29,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-9,0,2158,2,0,0 +2013,5,19,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-4,0,1250,-7,0,0 +2013,9,20,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-9,0,1420,-12,0,0 +2013,9,5,4,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,9,0,1630,22,1,0 +2013,9,17,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-3,0,1334,-4,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-4,0,1431,-7,0,0 +2013,4,19,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1355,4,0,2015,20,1,0 +2013,6,27,4,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,632,10,0,849,-3,0,0 +2013,5,11,6,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,84,1,1355,140,1,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1208,-9,0,1502,-17,0,0 +2013,7,8,1,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,635,-1,0,930,-3,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,4,0,1505,-3,0,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,811,6,0,1031,-9,0,0 +2013,5,7,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,935,0,0,1055,-15,0,0 +2013,8,23,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1500,20,1,2330,8,0,0 +2013,6,20,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1831,32,1,2358,19,1,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,-1,0,2336,-18,0,0 +2013,8,15,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1528,0,0,1642,15,1,0 +2013,5,9,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-3,0,1336,-14,0,0 +2013,7,12,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,0,0,2057,5,0,0 +2013,8,23,5,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1034,4,0,1420,-6,0,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2145,27,1,2230,22,1,0 +2013,7,12,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-11,0,1918,-16,0,0 +2013,5,24,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,7,0,1754,-9,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,11,0,1245,4,0,0 +2013,8,5,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1350,0,0,1735,-5,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1715,-1,0,2003,-18,0,0 +2013,10,19,6,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1925,15,1,2215,6,0,0 +2013,5,11,6,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,630,0,0,1452,15,1,0 +2013,10,10,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,0,0,1500,-4,0,0 +2013,7,13,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,645,7,0,759,7,0,0 +2013,5,25,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,605,4,0,823,-10,0,0 +2013,4,19,5,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,700,-1,0,1255,-18,0,0 +2013,9,2,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1226,-5,0,1422,40,1,0 +2013,8,16,5,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1035,10,0,1515,-6,0,0 +2013,5,26,7,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1030,-5,0,1215,-26,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1430,4,0,1611,1,0,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1359,-1,0,1714,-26,0,0 +2013,6,7,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-4,0,801,3,0,0 +2013,4,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1135,-6,0,1515,-17,0,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2210,11,0,2339,11,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1659,-1,0,1928,-43,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1905,15,1,2020,-3,0,0 +2013,4,28,7,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,-2,0,1240,-3,0,0 +2013,5,21,2,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1535,-4,0,1745,57,1,0 +2013,9,19,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-12,0,1850,11,0,0 +2013,9,21,6,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,4,0,2134,6,0,0 +2013,10,2,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1400,-1,0,1635,-9,0,0 +2013,5,17,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1750,23,1,1900,15,1,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1720,132,1,1925,128,1,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,2110,-5,0,2324,-27,0,0 +2013,5,14,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-5,0,820,-4,0,0 +2013,7,18,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,12,0,2155,14,0,0 +2013,6,5,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1300,-3,0,1348,0,0,0 +2013,10,5,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,1,0,1828,4,0,0 +2013,5,17,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1605,-6,0,1656,-12,0,0 +2013,8,5,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-5,0,859,-9,0,0 +2013,8,3,6,EV,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,34,1,1454,26,1,0 +2013,6,28,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,33,1,2223,35,1,0 +2013,4,4,4,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,-1,0,1900,5,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,6,0,1212,-2,0,0 +2013,4,22,1,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1029,-4,0,1322,6,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,6,0,1847,5,0,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1610,-9,0,1752,-8,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-4,0,1331,-30,0,0 +2013,5,17,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1800,54,1,1832,63,1,0 +2013,9,19,4,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,730,123,1,1110,147,1,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1253,4,0,1622,7,0,0 +2013,8,10,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,628,-3,0,805,1,0,0 +2013,6,13,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1340,57,1,1507,49,1,0 +2013,10,10,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,-8,0,1627,-16,0,0 +2013,7,9,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,940,0,,1050,0,1,1 +2013,6,19,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-5,0,2102,-15,0,0 +2013,5,3,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-9,0,1930,-24,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,119,1,1808,114,1,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1459,-8,0,1844,-19,0,0 +2013,6,2,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-1,0,820,-17,0,0 +2013,7,20,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1225,176,1,1417,190,1,0 +2013,10,7,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1235,2,0,1418,-1,0,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-3,0,830,-21,0,0 +2013,10,25,5,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1930,-1,0,2240,9,0,0 +2013,6,14,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,11,0,1815,-1,0,0 +2013,8,31,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,-6,0,1621,-5,0,0 +2013,6,18,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1314,7,0,1439,42,1,0 +2013,8,6,2,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1243,8,0,1545,6,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1259,7,0,1709,-9,0,0 +2013,9,3,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,66,1,810,60,1,0 +2013,9,6,5,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,725,-2,0,925,-19,0,0 +2013,9,10,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,11,0,2155,11,0,0 +2013,6,12,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1120,12,0,1226,11,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,745,-6,0,1022,-12,0,0 +2013,9,22,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,-3,0,1528,-9,0,0 +2013,10,2,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,606,6,0,855,-8,0,0 +2013,5,11,6,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1155,1,0,1405,-10,0,0 +2013,5,7,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-12,0,1515,-11,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1050,54,1,1236,36,1,0 +2013,7,19,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,-2,0,1513,-4,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,5,0,1339,-3,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1635,27,1,1820,84,1,0 +2013,10,14,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1315,-1,0,1415,5,0,0 +2013,4,23,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-2,0,819,7,0,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1340,19,1,1620,29,1,0 +2013,6,6,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,600,-3,0,720,-4,0,0 +2013,10,8,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,-6,0,1946,-26,0,0 +2013,10,31,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,-5,0,1351,-16,0,0 +2013,9,2,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-10,0,1015,-1,0,0 +2013,9,9,1,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1145,-6,0,1407,-15,0,0 +2013,6,26,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1150,0,,1320,0,1,1 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1540,13,0,1809,-2,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,5,0,1600,-23,0,0 +2013,10,29,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1415,-1,0,1520,-7,0,0 +2013,5,1,3,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,730,0,0,1345,-15,0,0 +2013,8,26,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-8,0,1425,-19,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,710,-5,0,1120,-14,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-1,0,859,-16,0,0 +2013,8,14,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1315,33,1,1410,25,1,0 +2013,6,22,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,1,0,2105,5,0,0 +2013,10,17,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1225,98,1,1350,90,1,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,224,1,1827,250,1,0 +2013,8,19,1,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,-8,0,1845,-31,0,0 +2013,7,16,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1457,-5,0,1709,-14,0,0 +2013,4,23,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,-1,0,1541,44,1,0 +2013,6,12,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-4,0,900,-12,0,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1529,-3,0,1830,-29,0,0 +2013,9,11,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-1,0,1103,7,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1955,27,1,2131,13,0,0 +2013,8,28,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-6,0,910,-35,0,0 +2013,5,9,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,725,3,0,1115,17,1,0 +2013,4,4,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,809,12,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-7,0,1311,0,0,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,700,-6,0,1112,-18,0,0 +2013,6,14,5,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1840,1,0,2045,44,1,0 +2013,5,19,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1100,-1,0,1230,-4,0,0 +2013,4,19,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-7,0,800,-1,0,0 +2013,8,1,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,9,0,1540,5,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,848,-2,0,1107,14,0,0 +2013,4,20,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,806,-12,0,1000,-13,0,0 +2013,9,19,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,-1,0,1645,-7,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1102,-4,0,1230,-24,0,0 +2013,10,22,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-4,0,1302,-7,0,0 +2013,7,14,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1018,-1,0,0 +2013,7,3,3,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,1515,1,0,2105,13,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-4,0,1347,-8,0,0 +2013,8,3,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1545,-5,0,1603,-2,0,0 +2013,6,10,1,EV,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,902,-1,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1545,-3,0,1720,1,0,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1730,-5,0,2059,-16,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-1,0,1725,-4,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2140,-2,0,2319,-2,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,630,18,1,750,15,1,0 +2013,8,9,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1938,49,1,130,34,1,0 +2013,8,8,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-8,0,1535,-20,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,955,23,1,1750,26,1,0 +2013,8,21,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1310,-4,0,1423,-2,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1410,-6,0,1630,-17,0,0 +2013,10,21,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,93,1,1330,91,1,0 +2013,5,21,2,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,8,0,2027,13,0,0 +2013,4,30,2,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1329,-7,0,1416,-14,0,0 +2013,4,21,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1310,-6,0,1356,-11,0,0 +2013,9,22,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1117,-3,0,1316,-7,0,0 +2013,5,6,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1955,-7,0,2108,-8,0,0 +2013,7,6,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1150,-3,0,1455,-17,0,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1218,-1,0,1731,-8,0,0 +2013,10,1,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2149,-7,0,2200,-6,0,0 +2013,8,13,2,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,-1,0,1915,-13,0,0 +2013,8,15,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1640,-7,0,1800,4,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,910,24,1,1047,4,0,0 +2013,8,3,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,-5,0,910,-18,0,0 +2013,4,29,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,2120,22,1,2125,15,1,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1005,-5,0,1302,-6,0,0 +2013,8,5,1,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1245,0,0,1530,-4,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,4,0,2140,3,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,745,-3,0,915,-19,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,758,-4,0,924,-11,0,0 +2013,4,16,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1708,-10,0,1932,3,0,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1358,-5,0,1540,-8,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2100,19,1,2235,7,0,0 +2013,8,14,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1910,-6,0,2105,-12,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1246,17,1,1832,20,1,0 +2013,7,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,39,1,1735,41,1,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1717,39,1,1905,48,1,0 +2013,7,25,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-8,0,1210,-7,0,0 +2013,5,28,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1250,23,1,1535,7,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1000,-1,0,1245,-20,0,0 +2013,6,3,1,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-3,0,1128,25,1,0 +2013,10,10,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1725,-11,0,1810,-14,0,0 +2013,9,25,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,-3,0,1050,3,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1150,10,0,1310,6,0,0 +2013,8,4,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2250,0,0,139,-7,0,0 +2013,8,27,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,850,-1,0,935,-9,0,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,,1630,0,1,1 +2013,10,5,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-5,0,609,23,1,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,29,1,2240,16,1,0 +2013,8,6,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1314,-3,0,1640,-6,0,0 +2013,9,13,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,830,3,0,0 +2013,10,9,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-5,0,1904,-7,0,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,3,0,1735,19,1,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,655,-5,0,1200,-10,0,0 +2013,4,21,7,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1058,-11,0,1104,-19,0,0 +2013,9,26,4,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1730,31,1,2005,39,1,0 +2013,6,12,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,845,0,,1125,0,1,1 +2013,6,27,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1930,20,1,2142,36,1,0 +2013,4,15,1,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,845,50,1,1235,43,1,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2115,3,0,25,-15,0,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1713,-9,0,2008,-36,0,0 +2013,4,9,2,WN,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1300,-5,0,1510,-11,0,0 +2013,4,21,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1009,-12,0,1135,-19,0,0 +2013,10,2,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-7,0,2020,-8,0,0 +2013,7,8,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-7,0,1147,-16,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,705,9,0,840,10,0,0 +2013,9,28,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,831,-8,0,1023,-17,0,0 +2013,8,23,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1800,-6,0,1905,11,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1600,-5,0,1741,-9,0,0 +2013,8,20,2,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-1,0,1120,-5,0,0 +2013,8,15,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-7,0,1340,-16,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1541,64,1,2029,42,1,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1357,136,1,1706,112,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2150,13,0,2305,3,0,0 +2013,7,20,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-3,0,1841,7,0,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1735,-2,0,1830,-9,0,0 +2013,9,30,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1345,-1,0,1638,-4,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2020,-12,0,2359,-17,0,0 +2013,4,18,4,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1700,-1,0,1830,-9,0,0 +2013,7,21,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,904,28,1,1157,29,1,0 +2013,9,6,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1010,0,0,1112,-10,0,0 +2013,8,13,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-4,0,745,-12,0,0 +2013,10,8,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1741,-5,0,1848,-15,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1850,12,0,2327,9,0,0 +2013,9,20,5,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1010,-5,0,1310,2,0,0 +2013,5,11,6,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,815,-3,0,1018,-10,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2220,22,1,110,13,0,0 +2013,6,1,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1928,-5,0,2229,-51,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1618,121,1,59,103,1,0 +2013,4,4,4,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-4,0,910,-6,0,0 +2013,4,9,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1235,-5,0,1511,-20,0,0 +2013,8,5,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,600,-7,0,850,-30,0,0 +2013,6,25,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-10,0,806,-7,0,0 +2013,5,1,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2115,0,0,2302,-10,0,0 +2013,8,1,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,15,1,2049,4,0,0 +2013,6,26,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1505,-10,0,1925,10,0,0 +2013,9,16,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,-5,0,2328,-37,0,0 +2013,10,29,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1608,35,1,1725,20,1,0 +2013,5,14,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1852,-15,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,830,-5,0,1120,-17,0,0 +2013,10,16,3,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,12,0,2225,-5,0,0 +2013,7,24,3,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-5,0,1045,-18,0,0 +2013,9,29,7,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1400,31,1,1700,22,1,0 +2013,4,12,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,12,0,2040,9,0,0 +2013,4,13,6,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2100,-2,0,2340,-14,0,0 +2013,4,25,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,510,-4,0,648,4,0,0 +2013,8,13,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,109,1,1900,117,1,0 +2013,7,1,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,705,9,0,1015,22,1,0 +2013,7,8,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,-6,0,1135,-20,0,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1230,3,0,1755,-6,0,0 +2013,4,25,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-2,0,1355,-11,0,0 +2013,10,31,4,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1340,-4,0,1657,-7,0,0 +2013,6,4,2,YV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1000,6,0,1137,-11,0,0 +2013,8,26,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-9,0,1200,-4,0,0 +2013,5,20,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,735,6,0,835,1,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,840,5,0,945,-2,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1959,-2,0,2126,-17,0,0 +2013,4,14,7,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1637,-3,0,1920,-7,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1340,0,,1950,0,1,1 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1729,-1,0,1905,-3,0,0 +2013,9,19,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,222,1,1810,224,1,0 +2013,6,24,1,FL,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1908,28,1,2213,22,1,0 +2013,4,11,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1823,136,1,2025,155,1,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1614,5,0,1905,15,1,0 +2013,7,3,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,720,-6,0,1204,-28,0,0 +2013,10,31,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1156,17,1,2000,1,0,0 +2013,6,10,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1945,39,1,2138,39,1,0 +2013,5,30,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1349,-17,0,1641,-22,0,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,925,0,,1134,0,1,1 +2013,4,28,7,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,2045,-7,0,2330,-27,0,0 +2013,10,24,4,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,704,-2,0,825,-7,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,12,0,1955,26,1,0 +2013,4,12,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,705,0,,858,0,1,1 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1245,-5,0,1613,-9,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,850,-1,0,950,-9,0,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,935,2,0,1130,0,0,0 +2013,9,20,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1200,8,0,1330,14,0,0 +2013,10,5,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,31,1,1805,28,1,0 +2013,10,18,5,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1555,-3,0,1625,-7,0,0 +2013,8,27,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-6,0,739,0,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,0,0,1440,-1,0,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1355,16,1,1610,-4,0,0 +2013,9,17,2,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1551,-2,0,1720,-7,0,0 +2013,5,15,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1825,-8,0,2019,-17,0,0 +2013,10,27,7,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1326,19,1,2136,11,0,0 +2013,5,21,2,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-2,0,952,25,1,0 +2013,6,9,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,-1,0,1705,10,0,0 +2013,9,15,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-3,0,2059,-10,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1205,10,0,1310,13,0,0 +2013,6,5,3,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,2000,-2,0,2020,2,0,0 +2013,5,15,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,705,-8,0,1452,2,0,0 +2013,9,14,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,0,0,1934,-8,0,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,51,1,1932,56,1,0 +2013,10,23,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,9,0,1700,23,1,0 +2013,5,21,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,90,1,1900,81,1,0 +2013,7,4,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1409,-4,0,2029,3,0,0 +2013,7,9,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1355,7,0,1520,10,0,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1105,28,1,1335,23,1,0 +2013,7,15,1,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1855,-1,0,2130,-30,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1035,-4,0,1201,-6,0,0 +2013,8,9,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,805,0,0,1014,6,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1840,55,1,1958,66,1,0 +2013,6,26,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1940,41,1,2235,51,1,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,0,0,1925,-5,0,0 +2013,7,12,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1815,23,1,2110,16,1,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1515,2,0,1825,-2,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1549,1,0,1739,-6,0,0 +2013,7,25,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-8,0,900,-33,0,0 +2013,4,20,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1325,0,0,1425,-15,0,0 +2013,9,23,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,907,-3,0,1100,-4,0,0 +2013,6,12,3,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-3,0,2000,-8,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-3,0,1235,-16,0,0 +2013,4,16,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1436,-4,0,1755,-6,0,0 +2013,7,16,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-3,0,510,-2,0,0 +2013,9,26,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-5,0,1225,-37,0,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,-2,0,957,4,0,0 +2013,8,3,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,600,-7,0,840,-12,0,0 +2013,9,25,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,23,1,2025,3,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,840,38,1,1105,39,1,0 +2013,6,7,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,600,2,0,720,-2,0,0 +2013,7,12,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1510,0,0,1655,0,0,0 +2013,8,5,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,-4,0,1030,-5,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1900,18,1,2100,15,1,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2059,-1,0,2250,-11,0,0 +2013,10,22,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-1,0,2215,-23,0,0 +2013,4,22,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-1,0,935,8,0,0 +2013,5,13,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,855,5,0,900,-1,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2257,1,0,2302,-1,0,0 +2013,8,9,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-8,0,629,-13,0,0 +2013,4,6,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-4,0,1535,-19,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1036,-4,0,1242,-21,0,0 +2013,4,25,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1352,38,1,1602,12,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,635,0,0,740,-5,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,-2,0,1041,-6,0,0 +2013,10,10,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1426,87,1,1658,86,1,0 +2013,4,11,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1812,-8,0,2100,-12,0,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,10,0,1140,23,1,0 +2013,7,16,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-3,0,2140,21,1,0 +2013,8,30,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-1,0,1446,-14,0,0 +2013,9,1,7,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-6,0,1538,-21,0,0 +2013,6,8,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1320,6,0,1530,12,0,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1540,4,0,1655,8,0,0 +2013,8,19,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,735,1,0,825,-6,0,0 +2013,4,4,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,3,0,1455,-6,0,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1738,-6,0,1853,-15,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1715,1,0,2059,-5,0,0 +2013,8,29,4,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,0,0,1440,-11,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,6,0,2214,0,0,0 +2013,5,9,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-4,0,1117,-17,0,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,810,-6,0,920,0,0,0 +2013,10,1,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-1,0,1540,-10,0,0 +2013,8,1,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,535,-1,0,650,-6,0,0 +2013,7,24,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,14,0,2035,44,1,0 +2013,5,29,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1050,-3,0,1354,-19,0,0 +2013,8,10,6,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,28,1,2147,18,1,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,17,1,1330,12,0,0 +2013,7,2,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,46,1,1825,48,1,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,945,-9,0,1120,-26,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1810,6,0,1915,-11,0,0 +2013,10,4,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,5,0,1905,18,1,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1725,-2,0,1845,-15,0,0 +2013,9,6,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-4,0,1810,-7,0,0 +2013,4,23,2,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1826,-6,0,2048,-11,0,0 +2013,10,2,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1610,3,0,1725,0,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1315,31,1,1618,25,1,0 +2013,9,24,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1130,0,0,1717,-17,0,0 +2013,6,19,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,640,-3,0,745,-8,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,2155,16,1,2335,16,1,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-1,0,950,-2,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1229,-5,0,1343,-24,0,0 +2013,4,25,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1523,-4,0,2000,-22,0,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1015,48,1,1249,24,1,0 +2013,6,6,4,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,66,1,1640,66,1,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1330,10,0,1705,9,0,0 +2013,8,30,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-1,0,825,7,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,850,-2,0,1220,2,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,7,0,2232,0,0,0 +2013,9,10,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,706,-7,0,830,1,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1505,16,1,1820,9,0,0 +2013,7,26,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1730,5,0,1848,11,0,0 +2013,4,2,2,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,745,-10,0,1054,-17,0,0 +2013,4,18,4,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1935,29,1,2102,20,1,0 +2013,4,27,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1605,-8,0,1810,-5,0,0 +2013,4,5,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,700,-7,0,808,-5,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,820,1,0,1156,-18,0,0 +2013,7,6,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-8,0,1658,-6,0,0 +2013,5,21,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1710,15,1,1730,3,0,0 +2013,5,4,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,-10,0,1405,-23,0,0 +2013,10,11,5,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1355,-9,0,1957,-27,0,0 +2013,9,20,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-4,0,603,-27,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1921,26,1,2013,16,1,0 +2013,10,10,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1204,-3,0,1459,-22,0,0 +2013,6,7,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1357,24,1,1710,14,0,0 +2013,10,13,7,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1455,-8,0,1615,-4,0,0 +2013,8,7,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1245,1,0,1425,-6,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,853,10,0,1115,5,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,5,0,1025,-3,0,0 +2013,5,14,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,76,1,1510,77,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1711,0,0,1844,34,1,0 +2013,4,2,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,806,-4,0,932,-1,0,0 +2013,6,5,3,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2245,0,0,600,-4,0,0 +2013,8,19,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2041,-5,0,2129,-8,0,0 +2013,7,4,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1123,-1,0,1724,-7,0,0 +2013,10,26,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1817,-7,0,0 +2013,9,3,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1011,-6,0,1132,-6,0,0 +2013,7,18,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1803,-2,0,2133,5,0,0 +2013,5,21,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-5,0,1912,2,0,0 +2013,4,13,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1910,-7,0,2057,-20,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,-1,0,1240,-2,0,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-3,0,1832,-8,0,0 +2013,4,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1756,-3,0,1856,-3,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,917,-4,0,1515,31,1,0 +2013,7,20,6,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-2,0,825,-15,0,0 +2013,10,12,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,50,1,1703,55,1,0 +2013,10,21,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,852,4,0,1130,-2,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1655,13,0,2000,-2,0,0 +2013,8,12,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,0,,2135,0,1,1 +2013,10,15,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,13,0,1740,8,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-3,0,1555,-22,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1307,-3,0,1634,-15,0,0 +2013,8,25,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-9,0,1005,-16,0,0 +2013,5,28,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2005,91,1,2151,80,1,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-1,0,1349,-31,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1808,260,1,2007,251,1,0 +2013,6,13,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,168,1,1856,171,1,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1610,9,0,2157,-27,0,0 +2013,9,14,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1215,-3,0,1330,-4,0,0 +2013,6,15,6,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,-1,0,1605,0,0,0 +2013,7,6,6,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1438,-18,0,1620,-19,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1645,24,1,1905,58,1,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,13,0,1545,-5,0,0 +2013,10,2,3,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,4,0,1733,14,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-2,0,2037,-4,0,0 +2013,9,12,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-1,0,1857,-11,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1205,-1,0,1347,-11,0,0 +2013,6,1,6,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,12,0,2200,-6,0,0 +2013,7,16,2,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1234,1,0,2103,15,1,0 +2013,4,4,4,OO,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1741,10,0,2110,13,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,-3,0,626,-6,0,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,77,1,1940,77,1,0 +2013,6,9,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-7,0,1329,-11,0,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,40,1,1925,24,1,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,720,-8,0,846,6,0,0 +2013,9,23,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1640,-18,0,0 +2013,8,9,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,89,1,2130,83,1,0 +2013,8,8,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1857,68,1,2103,91,1,0 +2013,7,27,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,-2,0,2055,-4,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1105,0,0,1410,1,0,0 +2013,4,6,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1325,-8,0,1650,-19,0,0 +2013,10,14,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,620,-12,0,747,-23,0,0 +2013,7,24,3,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1455,-3,0,1715,74,1,0 +2013,8,23,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,755,-21,0,0 +2013,8,9,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,-7,0,1855,100,1,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1100,14,0,1205,13,0,0 +2013,7,19,5,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,16,1,1535,14,0,0 +2013,5,25,6,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1529,-2,0,1647,-11,0,0 +2013,4,14,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1800,136,1,1915,130,1,0 +2013,8,22,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1925,87,1,2158,102,1,0 +2013,8,7,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1650,-2,0,2010,-5,0,0 +2013,8,22,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1835,156,1,2000,151,1,0 +2013,8,24,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,-4,0,1215,-9,0,0 +2013,10,21,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1505,11,0,1625,3,0,0 +2013,8,6,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1505,-11,0,0 +2013,6,12,3,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1735,10,0,1915,-5,0,0 +2013,9,8,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,920,69,1,1025,55,1,0 +2013,4,25,4,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1208,-11,0,1746,-17,0,0 +2013,7,8,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,5,0,1305,2,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,925,-3,0,1105,-14,0,0 +2013,9,11,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,1,0,1820,8,0,0 +2013,7,28,7,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,137,1,2120,134,1,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1450,9,0,1659,0,0,0 +2013,8,26,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,0,0,1749,-14,0,0 +2013,7,3,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,948,-3,0,1154,-8,0,0 +2013,9,11,3,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-4,0,1812,-6,0,0 +2013,6,6,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-4,0,1646,-17,0,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,954,12,0,1340,4,0,0 +2013,10,30,3,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-7,0,541,-14,0,0 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1600,-1,0,1749,-13,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2145,-5,0,2343,-17,0,0 +2013,8,8,4,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1228,83,1,1730,108,1,0 +2013,8,2,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1946,158,1,2129,153,1,0 +2013,7,1,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,8,0,2040,8,0,0 +2013,5,31,5,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,715,21,1,1500,16,1,0 +2013,7,3,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-10,0,850,-8,0,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,710,-6,0,850,3,0,0 +2013,8,25,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-11,0,1225,-28,0,0 +2013,6,28,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1525,2,0,1650,3,0,0 +2013,6,11,2,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,24,1,2125,11,0,0 +2013,5,20,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,534,-12,0,622,-15,0,0 +2013,10,20,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1345,1,0,1455,-8,0,0 +2013,5,21,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,49,1,2150,47,1,0 +2013,10,17,4,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,920,4,0,1155,-9,0,0 +2013,7,22,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,23,1,800,12,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1127,59,1,1246,38,1,0 +2013,4,23,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1541,3,0,1915,2,0,0 +2013,6,29,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1355,35,1,1505,32,1,0 +2013,7,31,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,710,-4,0,829,-20,0,0 +2013,10,11,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,740,-1,0,1029,-14,0,0 +2013,10,4,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,-9,0,1150,3,0,0 +2013,7,21,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1729,-2,0,2025,1,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1310,0,0,1627,23,1,0 +2013,8,25,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1131,10,0,1322,3,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,900,3,0,1043,-2,0,0 +2013,7,13,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,735,0,,850,0,1,1 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1500,0,,1700,0,1,1 +2013,9,1,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,822,7,0,1701,49,1,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1136,1,0,1354,-16,0,0 +2013,9,6,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1855,0,0,2225,4,0,0 +2013,7,12,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1235,8,0,1417,3,0,0 +2013,4,19,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1840,12,0,1930,13,0,0 +2013,5,9,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,49,1,1805,33,1,0 +2013,5,3,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,-1,0,1100,-19,0,0 +2013,6,28,5,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,61,1,1238,42,1,0 +2013,10,12,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1035,5,0,1130,-2,0,0 +2013,10,13,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1640,-1,0,2005,-2,0,0 +2013,5,5,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1645,-3,0,1824,-1,0,0 +2013,8,27,2,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,47,1,845,20,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2151,-2,0,2306,-9,0,0 +2013,5,23,4,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1016,-2,0,1550,6,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1955,39,1,2151,57,1,0 +2013,9,18,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-2,0,1444,-4,0,0 +2013,5,14,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1710,-1,0,1925,-5,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,-2,0,2346,-3,0,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,0,0,1150,2,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-4,0,1409,-40,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1309,61,1,1544,68,1,0 +2013,4,21,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,939,-6,0,1249,-26,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1732,-5,0,2232,-29,0,0 +2013,8,31,6,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1035,8,0,1325,5,0,0 +2013,4,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1332,19,1,1548,16,1,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1821,3,0,1957,4,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1745,70,1,1930,60,1,0 +2013,10,11,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-4,0,2129,-7,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,745,-2,0,905,-16,0,0 +2013,8,29,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1520,2,0,1820,-8,0,0 +2013,10,3,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-10,0,1012,-17,0,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,851,-13,0,0 +2013,9,1,7,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,21,1,2210,25,1,0 +2013,8,17,6,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,735,4,0,950,3,0,0 +2013,5,29,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,727,-6,0,812,-16,0,0 +2013,7,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,66,1,1521,52,1,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,-2,0,1650,-3,0,0 +2013,9,24,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-5,0,1508,-8,0,0 +2013,5,24,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-2,0,1027,-2,0,0 +2013,8,2,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1334,-1,0,1600,-2,0,0 +2013,4,8,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1723,5,0,1840,5,0,0 +2013,7,20,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-5,0,1225,-8,0,0 +2013,8,15,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1800,8,0,2035,11,0,0 +2013,9,28,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1811,-11,0,1831,-22,0,0 +2013,10,18,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,645,-1,0,1504,-22,0,0 +2013,9,23,1,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1114,106,1,1311,107,1,0 +2013,6,28,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,-2,0,1631,0,0,0 +2013,8,7,3,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,30,1,618,26,1,0 +2013,10,12,6,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,835,-3,0,940,0,0,0 +2013,9,23,1,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,621,0,0,755,-12,0,0 +2013,10,25,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1047,8,0,1630,5,0,0 +2013,5,27,1,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,625,197,1,934,187,1,0 +2013,8,5,1,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,0,0,1720,-4,0,0 +2013,5,11,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1715,0,0,1842,-27,0,0 +2013,7,6,6,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,730,-5,0,825,-14,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1355,22,1,1520,12,0,0 +2013,5,6,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1505,-4,0,1643,-33,0,0 +2013,5,19,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,0,0,1826,-3,0,0 +2013,7,10,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-4,0,925,-20,0,0 +2013,5,5,7,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1650,80,1,1835,68,1,0 +2013,5,23,4,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1405,12,0,2000,-4,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1130,0,0,1515,-9,0,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1525,-2,0,1655,-6,0,0 +2013,5,5,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1025,0,0,1215,-3,0,0 +2013,10,20,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1050,5,0,1315,-8,0,0 +2013,5,5,7,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1720,-6,0,2243,30,1,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1955,5,0,2110,-11,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,14,0,908,35,1,0 +2013,4,28,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1800,-4,0,2005,-14,0,0 +2013,7,12,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1029,-5,0,1305,-7,0,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1700,2,0,2140,-16,0,0 +2013,7,27,6,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1416,3,0,1603,0,0,0 +2013,6,8,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,705,-8,0,1115,-10,0,0 +2013,5,22,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,17,1,1831,59,1,0 +2013,6,5,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1409,-9,0,1619,-19,0,0 +2013,10,16,3,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1645,14,0,1820,-1,0,0 +2013,6,21,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2115,0,,2220,0,1,1 +2013,4,8,1,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,2035,-5,0,2330,-7,0,0 +2013,8,6,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1014,-4,0,1207,-13,0,0 +2013,5,9,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1325,2,0,1425,-9,0,0 +2013,7,13,6,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1800,17,1,2030,10,0,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-7,0,840,4,0,0 +2013,10,9,3,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1050,4,0,1315,5,0,0 +2013,9,12,4,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,28,1,1740,30,1,0 +2013,8,29,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1825,-12,0,1850,-16,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1505,0,0,1615,0,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-1,0,2151,-5,0,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1550,65,1,2125,92,1,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1300,-5,0,1619,-14,0,0 +2013,7,3,3,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1456,113,1,1636,112,1,0 +2013,6,18,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-3,0,1601,-12,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,10,0,2226,-16,0,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2020,-6,0,2322,-20,0,0 +2013,10,29,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1436,-8,0,1621,3,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,645,1,0,752,2,0,0 +2013,8,7,3,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,-5,0,1055,-3,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1617,4,0,1817,-8,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,925,0,0,1040,-1,0,0 +2013,9,5,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,-12,0,845,-3,0,0 +2013,9,10,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,16,1,2050,25,1,0 +2013,9,15,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,146,1,2155,143,1,0 +2013,10,7,1,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,950,6,0,1205,-2,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-2,0,2115,-14,0,0 +2013,6,2,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-9,0,1249,-17,0,0 +2013,8,1,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1548,-7,0,1638,-5,0,0 +2013,7,31,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,-6,0,1048,2,0,0 +2013,10,24,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1925,0,0,2050,-14,0,0 +2013,7,3,3,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1500,-1,0,1722,-20,0,0 +2013,10,5,6,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,16,1,1555,19,1,0 +2013,8,26,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1950,-1,0,2105,-5,0,0 +2013,6,25,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1655,7,0,1834,-1,0,0 +2013,5,5,7,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-6,0,1210,-14,0,0 +2013,6,16,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-3,0,1750,-23,0,0 +2013,5,13,1,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1326,-8,0,1830,-6,0,0 +2013,9,28,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-7,0,1025,-9,0,0 +2013,9,13,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1243,-4,0,1557,-2,0,0 +2013,6,24,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-4,0,845,-17,0,0 +2013,10,4,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1740,29,1,1905,19,1,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1215,2,0,1650,18,1,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1105,-7,0,1420,-7,0,0 +2013,9,15,7,OO,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1617,7,0,1830,-1,0,0 +2013,6,3,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1840,-2,0,1915,-8,0,0 +2013,6,5,3,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1245,10,0,1415,11,0,0 +2013,7,16,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,955,-7,0,1115,-6,0,0 +2013,5,2,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,800,63,1,913,42,1,0 +2013,8,11,7,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,3,0,1314,-12,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2113,8,0,2240,3,0,0 +2013,6,12,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1510,-2,0,1815,-9,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,959,22,1,1342,17,1,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,930,0,0,1104,9,0,0 +2013,5,29,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-5,0,959,-9,0,0 +2013,4,23,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1326,24,1,1834,12,0,0 +2013,6,2,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,535,-9,0,746,-11,0,0 +2013,10,1,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-1,0,828,-8,0,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1700,73,1,2045,58,1,0 +2013,7,10,3,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,850,0,,1031,0,1,1 +2013,9,8,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1350,21,1,1430,20,1,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1915,58,1,2153,124,1,0 +2013,4,27,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1215,-2,0,1420,-3,0,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1850,58,1,2350,81,1,0 +2013,10,24,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-6,0,1428,-11,0,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1212,-6,0,1716,-7,0,0 +2013,8,6,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,0,0,1230,-10,0,0 +2013,7,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,-10,0,1210,-8,0,0 +2013,4,24,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1025,-9,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1211,1,0,1335,-6,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,945,118,1,1120,111,1,0 +2013,4,22,1,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2120,0,,25,0,1,1 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1910,15,1,2020,30,1,0 +2013,8,18,7,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1705,43,1,1950,43,1,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,0,0,1017,16,1,0 +2013,8,25,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1942,-7,0,2111,-15,0,0 +2013,9,6,5,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1530,7,0,1745,-3,0,0 +2013,8,21,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1720,-4,0,1855,-22,0,0 +2013,10,5,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1110,4,0,1230,4,0,0 +2013,7,2,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-10,0,1829,-34,0,0 +2013,7,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2005,19,1,2215,15,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,7,0,1750,-22,0,0 +2013,5,5,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1800,-1,0,1925,-4,0,0 +2013,4,24,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,17,1,1046,22,1,0 +2013,6,6,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,35,1,2125,41,1,0 +2013,7,9,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-1,0,1215,-8,0,0 +2013,9,23,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,-4,0,1531,8,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2114,19,1,2254,-1,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,920,0,0,1350,-25,0,0 +2013,6,29,6,DL,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,732,-2,0,1016,5,0,0 +2013,9,26,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,32,1,900,18,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,15,1,1949,-9,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-5,0,1300,3,0,0 +2013,5,9,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1513,11,0,2204,7,0,0 +2013,4,17,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1210,5,0,1515,0,0,0 +2013,9,8,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,3,0,617,-8,0,0 +2013,10,23,3,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2008,-6,0,2015,12,0,0 +2013,6,8,6,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1646,-3,0,1938,-5,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1030,3,0,1240,0,0,0 +2013,10,28,1,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1521,-2,0,1835,-7,0,0 +2013,9,2,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1149,11,0,1358,3,0,0 +2013,10,18,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-15,0,2215,-22,0,0 +2013,7,12,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,2115,8,0,2225,7,0,0 +2013,4,19,5,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,50,1,608,36,1,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1215,51,1,1745,33,1,0 +2013,4,20,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,936,-9,0,1112,-15,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,6,0,1415,17,1,0 +2013,4,14,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,1600,-2,0,1705,12,0,0 +2013,5,28,2,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,835,7,0,1105,5,0,0 +2013,7,9,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,640,-5,0,835,-14,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1226,-30,0,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1130,-1,0,1500,4,0,0 +2013,4,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2040,2,0,2205,1,0,0 +2013,10,15,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-4,0,929,-15,0,0 +2013,4,4,4,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1139,11,0,1325,18,1,0 +2013,9,8,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-5,0,925,-8,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,15,1,1722,17,1,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1055,24,1,1535,29,1,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,-8,0,2115,-34,0,0 +2013,7,29,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1456,1,0,1641,-7,0,0 +2013,4,13,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-1,0,1117,11,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-7,0,2045,-11,0,0 +2013,4,29,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,900,-5,0,1025,-18,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1700,59,1,1915,61,1,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1854,137,1,2259,145,1,0 +2013,8,20,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,835,-5,0,853,-21,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1738,-1,0,1853,-14,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,0,0,1333,11,0,0 +2013,8,8,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,5,0,1250,17,1,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1945,5,0,2258,10,0,0 +2013,9,25,3,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1127,-5,0,1315,2,0,0 +2013,7,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1504,-2,0,1720,3,0,0 +2013,6,14,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,12,0,1945,17,1,0 +2013,10,9,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1912,20,1,2024,25,1,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1655,15,1,1856,2,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1355,8,0,1830,-4,0,0 +2013,7,15,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1735,8,0,2015,13,0,0 +2013,5,25,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1252,49,1,1645,41,1,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1155,-5,0,1700,-20,0,0 +2013,6,13,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,82,1,1920,102,1,0 +2013,6,23,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1558,0,0,1703,22,1,0 +2013,9,13,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1820,100,1,2000,100,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,910,-6,0,1114,-3,0,0 +2013,10,17,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-3,0,846,-15,0,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,855,-7,0,1527,-17,0,0 +2013,4,17,3,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1440,-1,0,1744,-16,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,831,0,0,952,-11,0,0 +2013,9,8,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1915,-5,0,2044,4,0,0 +2013,5,14,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,805,-14,0,0 +2013,5,13,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,759,-5,0,1405,-5,0,0 +2013,7,28,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-2,0,620,-14,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,5,0,1024,-4,0,0 +2013,7,30,2,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-5,0,1115,-14,0,0 +2013,9,12,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,1,0,2013,116,1,0 +2013,10,16,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,-6,0,2040,-13,0,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1220,-2,0,1415,-8,0,0 +2013,10,14,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1945,3,0,2112,-6,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1804,1,0,2015,18,1,0 +2013,9,20,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,0,,730,0,1,1 +2013,4,28,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,-3,0,1825,-7,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,951,-2,0,1104,-12,0,0 +2013,5,13,1,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1345,-6,0,1601,-18,0,0 +2013,6,20,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,1,0,1444,-2,0,0 +2013,8,16,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,8,0,2215,-11,0,0 +2013,8,12,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2020,43,1,2140,36,1,0 +2013,9,12,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,38,1,1836,27,1,0 +2013,6,27,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2128,-7,0,2200,-3,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1830,71,1,2100,55,1,0 +2013,5,8,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,26,1,1515,25,1,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1530,6,0,1810,-6,0,0 +2013,5,21,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1750,13,0,1820,1,0,0 +2013,5,14,2,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-5,0,1128,-15,0,0 +2013,8,30,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1500,-2,0,1735,-23,0,0 +2013,7,16,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,950,2,0,1205,-4,0,0 +2013,5,3,5,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,706,-19,0,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2155,19,1,2345,3,0,0 +2013,5,22,3,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,848,-5,0,935,-17,0,0 +2013,4,9,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,-7,0,2240,-63,0,0 +2013,6,7,5,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,615,-3,0,715,-8,0,0 +2013,5,23,4,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,750,-2,0,1210,10,0,0 +2013,5,29,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,920,-4,0,1050,-25,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2203,164,1,630,155,1,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1345,32,1,1500,24,1,0 +2013,6,2,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2126,-1,0,547,-22,0,0 +2013,4,11,4,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,730,-2,0,1023,3,0,0 +2013,4,7,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,940,3,0,1229,1,0,0 +2013,10,7,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1204,7,0,1457,-10,0,0 +2013,7,9,2,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2047,104,1,2208,100,1,0 +2013,4,22,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,720,-8,0,1109,-14,0,0 +2013,6,10,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,4,0,2046,7,0,0 +2013,9,26,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,0,0,1740,17,1,0 +2013,8,3,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1730,-6,0,2045,-20,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,905,5,0,1610,12,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,935,-11,0,1107,-8,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1045,103,1,1215,103,1,0 +2013,4,16,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-5,0,2052,-7,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,-1,0,1256,-3,0,0 +2013,6,12,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1205,-1,0,1335,-6,0,0 +2013,6,26,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,4,0,2015,6,0,0 +2013,7,10,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,0,,1729,0,1,1 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-1,0,1145,-3,0,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,20,1,2110,10,0,0 +2013,7,13,6,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,825,25,1,1050,9,0,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1455,18,1,1810,44,1,0 +2013,4,7,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,72,1,1650,62,1,0 +2013,5,30,4,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1840,10,0,2215,-4,0,0 +2013,4,27,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1925,-2,0,2045,-12,0,0 +2013,10,11,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,138,1,1240,128,1,0 +2013,8,27,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,604,-1,0,845,10,0,0 +2013,8,11,7,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,810,-5,0,1200,-19,0,0 +2013,4,7,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,-5,0,1019,-16,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,715,-2,0,850,-9,0,0 +2013,7,28,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,820,-2,0,0 +2013,7,13,6,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-4,0,626,-7,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1730,-4,0,1935,-1,0,0 +2013,4,24,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1440,-1,0,1805,0,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,-1,0,1330,-10,0,0 +2013,4,14,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-2,0,830,-3,0,0 +2013,7,10,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-5,0,655,-4,0,0 +2013,8,13,2,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-8,0,1404,-18,0,0 +2013,9,21,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,3,0,1655,-1,0,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2225,-4,0,2356,-14,0,0 +2013,4,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,750,2,0,1145,-7,0,0 +2013,10,19,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-4,0,1815,11,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1405,-4,0,1645,-8,0,0 +2013,8,12,1,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,13,0,1340,1,0,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,710,-2,0,820,-12,0,0 +2013,6,13,4,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1220,82,1,1416,99,1,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,900,-6,0,1425,-42,0,0 +2013,4,27,6,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1200,-10,0,1457,-19,0,0 +2013,9,6,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1745,-6,0,1925,-10,0,0 +2013,10,9,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-5,0,1356,-4,0,0 +2013,8,23,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,742,-1,0,929,-15,0,0 +2013,10,4,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1450,-12,0,1850,-15,0,0 +2013,8,5,1,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1659,10,0,1853,17,1,0 +2013,4,8,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1438,-13,0,1606,-24,0,0 +2013,4,1,1,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1305,-17,0,1443,-23,0,0 +2013,4,29,1,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-5,0,2010,-25,0,0 +2013,6,14,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1130,72,1,1655,62,1,0 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2327,0,0,720,-21,0,0 +2013,10,29,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-7,0,1830,3,0,0 +2013,4,7,7,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1755,7,0,2109,-1,0,0 +2013,10,31,4,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,17,1,1350,9,0,0 +2013,6,3,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,10,0,1954,-11,0,0 +2013,5,12,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,-4,0,1420,-6,0,0 +2013,10,13,7,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,6,0,1550,18,1,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1137,84,1,1349,73,1,0 +2013,10,14,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1605,-8,0,1810,-16,0,0 +2013,7,31,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1420,17,1,1600,19,1,0 +2013,7,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1405,46,1,1812,39,1,0 +2013,8,10,6,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,8,0,1853,6,0,0 +2013,6,11,2,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,2005,-3,0,48,6,0,0 +2013,9,30,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1405,0,,1715,0,1,1 +2013,9,12,4,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,-9,0,2132,-6,0,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,745,-4,0,1020,2,0,0 +2013,9,26,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,10,0,2018,10,0,0 +2013,4,26,5,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1146,6,0,1440,-7,0,0 +2013,8,20,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,1,0,1100,-20,0,0 +2013,5,31,5,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1100,-1,0,1250,-17,0,0 +2013,7,17,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,930,-5,0,1234,-23,0,0 +2013,7,15,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,0,0,1922,1,0,0 +2013,9,27,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1007,-5,0,1304,-10,0,0 +2013,10,16,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1710,16,1,1851,4,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1646,-2,0,1910,-7,0,0 +2013,9,16,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1523,-10,0,1642,-6,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,0,0,1045,-4,0,0 +2013,5,27,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,-9,0,2054,40,1,0 +2013,7,17,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,6,0,2151,-1,0,0 +2013,9,6,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,0,0,1436,11,0,0 +2013,9,4,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,0,0,2201,2,0,0 +2013,4,22,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,858,-2,0,1003,-6,0,0 +2013,6,8,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,745,15,1,830,3,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1235,-5,0,1330,-8,0,0 +2013,8,31,6,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,-2,0,830,-3,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1540,21,1,2300,30,1,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1650,38,1,1805,39,1,0 +2013,10,31,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,905,-1,0,1026,-22,0,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1940,67,1,2240,61,1,0 +2013,9,30,1,9E,12953,LaGuardia,New York,NY,12451,Jacksonville International,Jacksonville,FL,745,-5,0,1024,-25,0,0 +2013,8,9,5,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,-12,0,1914,-22,0,0 +2013,7,1,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1608,91,1,1951,103,1,0 +2013,10,17,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1330,-4,0,1500,-6,0,0 +2013,9,2,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-1,0,1615,-10,0,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,710,3,0,1230,4,0,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,745,-3,0,1040,-13,0,0 +2013,7,3,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,24,1,1850,-19,0,0 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-1,0,1705,-35,0,0 +2013,10,26,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,550,-4,0,751,-17,0,0 +2013,5,2,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,2,0,807,-18,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2010,-1,0,2147,-9,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2010,0,0,2312,-11,0,0 +2013,7,25,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1925,-8,0,1959,-7,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,55,1,1835,46,1,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,-3,0,737,-8,0,0 +2013,7,31,3,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1813,-5,0,2054,-4,0,0 +2013,5,7,2,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,-5,0,1749,-52,0,0 +2013,5,23,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,0,,1906,0,1,1 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,0,0,1316,-7,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2245,9,0,2347,8,0,0 +2013,10,4,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2140,11,0,2219,5,0,0 +2013,9,14,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,291,1,1505,0,1,1 +2013,8,15,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,655,9,0,830,2,0,0 +2013,4,14,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1235,57,1,1400,53,1,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-7,0,759,-5,0,0 +2013,7,16,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-4,0,2030,-9,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1450,-1,0,1635,-15,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1630,1,0,1930,-14,0,0 +2013,5,10,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1017,-1,0,1318,-9,0,0 +2013,4,30,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,645,-3,0,830,-3,0,0 +2013,4,29,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-7,0,1756,2,0,0 +2013,9,11,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1240,-1,0,1345,16,1,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,910,-1,0,1155,9,0,0 +2013,9,5,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-8,0,1242,-14,0,0 +2013,7,28,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,720,-5,0,1007,-14,0,0 +2013,10,2,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1134,-10,0,1405,-16,0,0 +2013,7,24,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1150,-13,0,1315,-32,0,0 +2013,10,6,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,37,1,2113,131,1,0 +2013,7,8,1,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1744,97,1,2026,71,1,0 +2013,5,28,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,22,1,1935,17,1,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,120,1,1914,102,1,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,1,0,1430,-15,0,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1415,13,0,1525,15,1,0 +2013,5,8,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1020,-3,0,1205,-12,0,0 +2013,10,19,6,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1740,-4,0,2035,-11,0,0 +2013,10,4,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2210,-15,0,625,-13,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,915,25,1,1130,16,1,0 +2013,7,23,2,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1650,49,1,1820,38,1,0 +2013,10,11,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,629,30,1,1153,2,0,0 +2013,5,8,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,60,1,2310,57,1,0 +2013,7,15,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1635,-5,0,1833,-27,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1440,39,1,1550,29,1,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1130,86,1,1515,69,1,0 +2013,5,17,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,52,1,1935,40,1,0 +2013,9,27,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,29,1,1525,26,1,0 +2013,10,27,7,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1725,-6,0,1908,-13,0,0 +2013,9,3,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-5,0,2132,-1,0,0 +2013,9,3,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1657,9,0,1903,15,1,0 +2013,4,5,5,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-4,0,2200,-14,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1715,-6,0,2024,-38,0,0 +2013,10,7,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,800,-3,0,1625,-9,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-5,0,900,-11,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,92,1,2207,84,1,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,652,42,1,954,7,0,0 +2013,5,15,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1650,3,0,1910,-15,0,0 +2013,4,13,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,650,-4,0,820,-11,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1755,69,1,2040,100,1,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,0,0,1114,1,0,0 +2013,6,22,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1335,24,1,1945,8,0,0 +2013,10,6,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,17,1,457,8,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,0,0,1131,4,0,0 +2013,5,28,2,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,845,9,0,1105,1,0,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2210,2,0,45,0,0,0 +2013,4,1,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,610,60,1,743,50,1,0 +2013,5,20,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1412,37,1,2059,38,1,0 +2013,9,5,4,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1007,0,0,1040,-1,0,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,10,0,2200,5,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,849,-3,0,1017,-22,0,0 +2013,4,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1335,11,0,1425,4,0,0 +2013,10,10,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1115,-4,0,1715,-19,0,0 +2013,10,3,4,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-1,0,740,-3,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-2,0,1350,6,0,0 +2013,8,8,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1731,-8,0,1821,-13,0,0 +2013,10,3,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1049,27,1,1158,20,1,0 +2013,8,28,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,-1,0,1920,-1,0,0 +2013,5,6,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,850,0,0,1010,9,0,0 +2013,4,1,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1400,-13,0,1525,-1,0,0 +2013,4,3,3,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,-3,0,1711,-1,0,0 +2013,7,7,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,15,1,1100,17,1,0 +2013,5,26,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,19,1,2031,3,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,745,-2,0,1020,-8,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,22,1,1710,29,1,0 +2013,8,10,6,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1640,0,0,1815,-11,0,0 +2013,5,24,5,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1121,-5,0,1249,-6,0,0 +2013,7,24,3,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-1,0,1945,-2,0,0 +2013,6,18,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-6,0,2319,-20,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,745,-1,0,900,-16,0,0 +2013,10,9,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,-5,0,1642,-4,0,0 +2013,10,16,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1020,-2,0,1605,-38,0,0 +2013,6,23,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,648,-8,0,0 +2013,10,15,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,29,1,1755,21,1,0 +2013,5,9,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,605,-4,0,740,-12,0,0 +2013,10,12,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,1,0,1826,-22,0,0 +2013,6,8,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,-9,0,520,-2,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-1,0,1126,-14,0,0 +2013,10,30,3,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1632,-14,0,1800,33,1,0 +2013,7,21,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,4,0,1900,1,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1245,-4,0,1410,-9,0,0 +2013,4,6,6,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1845,0,0,1945,-9,0,0 +2013,6,21,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,11,0,1755,-2,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-1,0,2021,19,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,-1,0,1533,-17,0,0 +2013,5,28,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,835,2,0,1018,8,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,1,0,1545,-4,0,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,0,0,1315,-14,0,0 +2013,5,3,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,832,-9,0,925,-12,0,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1247,-4,0,1449,-23,0,0 +2013,5,14,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-9,0,1000,-5,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1330,0,0,1515,-9,0,0 +2013,10,14,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1514,-7,0,1600,-12,0,0 +2013,6,24,1,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,930,20,1,1123,14,0,0 +2013,8,15,4,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,8,0,2249,-9,0,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-1,0,1313,20,1,0 +2013,8,30,5,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1217,6,0,1314,2,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,-2,0,1327,-17,0,0 +2013,6,10,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-1,0,2149,5,0,0 +2013,10,6,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1625,2,0,1750,1,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1748,2,0,2102,-33,0,0 +2013,7,24,3,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1020,-5,0,1301,-17,0,0 +2013,5,16,4,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1823,-7,0,2100,-5,0,0 +2013,7,5,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,0,0,1255,-7,0,0 +2013,5,1,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1630,-5,0,55,-19,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2020,87,1,2105,92,1,0 +2013,10,29,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1825,2,0,1955,-14,0,0 +2013,7,5,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1946,-6,0,2140,-15,0,0 +2013,8,25,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1246,0,0,1810,-17,0,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1740,10,0,2100,-13,0,0 +2013,7,3,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,919,37,1,0 +2013,8,11,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1315,0,0,1520,-10,0,0 +2013,9,15,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1933,-13,0,2045,10,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,840,-6,0,1102,-9,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1015,-6,0,1348,-23,0,0 +2013,4,3,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-6,0,1832,-13,0,0 +2013,10,9,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1925,-2,0,2055,1,0,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,37,1,2150,14,0,0 +2013,9,27,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1352,-4,0,1624,-19,0,0 +2013,8,22,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-12,0,1430,-12,0,0 +2013,4,6,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-4,0,845,-6,0,0 +2013,5,16,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1934,-3,0,2022,-10,0,0 +2013,6,6,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,34,1,948,30,1,0 +2013,5,23,4,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-9,0,1215,-2,0,0 +2013,6,17,1,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-10,0,1022,-27,0,0 +2013,4,25,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1809,0,,2156,0,1,1 +2013,10,27,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1500,30,1,1815,13,0,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1820,82,1,1925,71,1,0 +2013,7,23,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,7,0,1641,-1,0,0 +2013,6,6,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-9,0,1054,-16,0,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,915,10,0,1738,-2,0,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1805,5,0,2028,23,1,0 +2013,10,31,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1735,-10,0,2305,-11,0,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1235,47,1,1529,46,1,0 +2013,6,19,3,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,-4,0,2212,-8,0,0 +2013,8,4,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2140,0,0,2255,-4,0,0 +2013,5,21,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,28,1,2240,17,1,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1115,120,1,1305,153,1,0 +2013,8,23,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,10,0,1707,6,0,0 +2013,8,17,6,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-8,0,2055,-43,0,0 +2013,4,14,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2055,17,1,2250,18,1,0 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,12,0,1705,1,0,0 +2013,7,3,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-3,0,2054,-5,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,745,-4,0,1040,-2,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1240,-3,0,1502,-31,0,0 +2013,10,4,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,820,1,0,1050,-11,0,0 +2013,4,28,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-6,0,1125,-14,0,0 +2013,6,18,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,117,1,2322,115,1,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2305,-6,0,2333,-19,0,0 +2013,8,26,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,610,-2,0,910,5,0,0 +2013,9,9,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,5,0,1750,0,0,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,29,1,1915,26,1,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1145,10,0,1315,8,0,0 +2013,5,31,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,905,0,0,1201,-4,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,800,0,0,1117,-22,0,0 +2013,7,16,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-5,0,1938,-6,0,0 +2013,4,21,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,29,1,1510,22,1,0 +2013,10,14,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,4,0,2105,4,0,0 +2013,4,20,6,YV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1935,-5,0,2237,-18,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,-1,0,955,-6,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1939,21,1,2234,-4,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1144,7,0,1508,-14,0,0 +2013,6,20,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1515,-1,0,1630,-8,0,0 +2013,7,28,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1816,0,0,2159,-6,0,0 +2013,7,12,5,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1213,9,0,1508,14,0,0 +2013,9,29,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-6,0,1849,-20,0,0 +2013,4,6,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,718,17,1,915,2,0,0 +2013,8,15,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,720,-2,0,1025,-14,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1655,19,1,2016,-2,0,0 +2013,10,14,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,-1,0,1215,-12,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1205,16,1,1345,22,1,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1425,16,1,1510,12,0,0 +2013,5,30,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-3,0,1820,41,1,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,956,-1,0,1148,-10,0,0 +2013,7,15,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-12,0,1540,1,0,0 +2013,9,27,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-7,0,1025,-26,0,0 +2013,4,9,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-6,0,925,-13,0,0 +2013,7,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,-3,0,1654,-2,0,0 +2013,6,17,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,17,1,900,5,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1515,58,1,2206,40,1,0 +2013,7,6,6,OO,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,0,0,2018,-10,0,0 +2013,8,2,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,7,0,715,18,1,0 +2013,9,6,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1143,0,0,1256,5,0,0 +2013,7,12,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-5,0,2135,-23,0,0 +2013,9,30,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1220,-2,0,1359,-9,0,0 +2013,6,11,2,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,-4,0,1820,-18,0,0 +2013,9,13,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1053,52,1,1239,46,1,0 +2013,9,8,7,OO,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1632,-3,0,1745,-10,0,0 +2013,10,6,7,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1157,303,1,1500,294,1,0 +2013,7,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-1,0,845,-20,0,0 +2013,5,5,7,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1940,-5,0,2127,-12,0,0 +2013,9,17,2,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1655,-3,0,1930,-13,0,0 +2013,6,30,7,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,2,0,810,-3,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-7,0,1032,-11,0,0 +2013,7,23,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,838,-2,0,1100,-10,0,0 +2013,7,9,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-4,0,2025,9,0,0 +2013,4,6,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1700,16,1,1732,24,1,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1517,-2,0,1651,-3,0,0 +2013,5,4,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,-3,0,1050,-7,0,0 +2013,5,8,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,630,-3,0,645,-18,0,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1306,-9,0,1540,-23,0,0 +2013,9,22,7,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,11,0,1955,10,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1445,3,0,1650,-5,0,0 +2013,9,12,4,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1139,88,1,1300,0,1,1 +2013,9,24,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,60,1,1531,55,1,0 +2013,10,18,5,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1008,-5,0,1155,-16,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2125,0,,2250,0,1,1 +2013,7,9,2,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1210,22,1,1500,7,0,0 +2013,6,7,5,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,625,-8,0,1428,-7,0,0 +2013,8,20,2,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,920,-12,0,1041,-14,0,0 +2013,4,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,720,-3,0,940,-8,0,0 +2013,7,7,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1725,0,,1850,0,1,1 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-4,0,1312,12,0,0 +2013,6,5,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,-9,0,2225,-8,0,0 +2013,4,9,2,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1502,-8,0,1611,-18,0,0 +2013,10,24,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1400,-6,0,1545,0,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,84,1,1131,87,1,0 +2013,10,31,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1201,-9,0,1327,-17,0,0 +2013,8,19,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1605,5,0,1725,5,0,0 +2013,5,10,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1435,-3,0,1525,-4,0,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1612,31,1,1800,28,1,0 +2013,6,23,7,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1907,170,1,44,140,1,0 +2013,8,8,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,-2,0,2115,-13,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2055,21,1,2150,13,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1830,8,0,2010,20,1,0 +2013,5,27,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2130,-2,0,2353,17,1,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1743,-3,0,1920,1,0,0 +2013,4,16,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-6,0,1045,-19,0,0 +2013,5,3,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,-4,0,1840,-20,0,0 +2013,10,1,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-8,0,2031,-17,0,0 +2013,8,27,2,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1512,14,0,1834,9,0,0 +2013,5,16,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,67,1,2140,101,1,0 +2013,6,27,4,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2006,-4,0,2202,2,0,0 +2013,5,2,4,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1755,41,1,2007,36,1,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,835,-3,0,940,-3,0,0 +2013,9,16,1,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1456,1,0,1636,10,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2200,10,0,2255,8,0,0 +2013,4,15,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1946,-5,0,2023,-2,0,0 +2013,8,18,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-1,0,710,-7,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2100,-4,0,2240,-3,0,0 +2013,10,24,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2110,-2,0,2233,-9,0,0 +2013,5,24,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1653,-2,0,1738,-1,0,0 +2013,7,20,6,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1040,-7,0,1215,-17,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,8,0,1100,15,1,0 +2013,7,22,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1845,0,,2030,0,1,1 +2013,9,1,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1736,-11,0,2005,-6,0,0 +2013,4,19,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,93,1,2035,88,1,0 +2013,4,13,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1430,-1,0,1600,-11,0,0 +2013,4,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-4,0,844,-9,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1810,12,0,2029,25,1,0 +2013,4,19,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1547,-5,0,1719,-12,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1655,34,1,1915,35,1,0 +2013,5,2,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1609,-4,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2159,-4,0,2356,-19,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1910,6,0,2100,2,0,0 +2013,8,2,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,48,1,1645,45,1,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,930,13,0,1115,15,1,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,27,1,2214,6,0,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1955,-10,0,2106,-19,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,745,3,0,1050,-15,0,0 +2013,4,22,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,34,1,1245,34,1,0 +2013,6,20,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,615,2,0,1140,-26,0,0 +2013,6,14,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,3,0,2005,0,0,0 +2013,6,15,6,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1219,-5,0,1357,-11,0,0 +2013,10,17,4,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-4,0,1808,10,0,0 +2013,10,21,1,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,22,1,1909,17,1,0 +2013,5,2,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,5,0,1905,-1,0,0 +2013,7,29,1,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1257,283,1,1435,258,1,0 +2013,6,14,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2050,33,1,2215,31,1,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,712,3,0,935,-19,0,0 +2013,7,28,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1325,-1,0,1345,-4,0,0 +2013,6,14,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,-4,0,840,-7,0,0 +2013,5,18,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1925,3,0,2120,-9,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2010,-3,0,2220,-13,0,0 +2013,5,19,7,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,732,-6,0,845,-19,0,0 +2013,8,29,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1240,-1,0,1545,0,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2240,182,1,2340,182,1,0 +2013,5,18,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1859,-5,0,2233,-6,0,0 +2013,6,22,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,6,0,706,3,0,0 +2013,10,17,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-6,0,1533,11,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,600,-4,0,918,-17,0,0 +2013,9,27,5,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1929,-5,0,2100,-5,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1440,-6,0,1755,-16,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,948,-6,0,1104,-9,0,0 +2013,10,15,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,705,-7,0,959,-5,0,0 +2013,6,26,3,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1527,2,0,1742,40,1,0 +2013,10,16,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,41,1,1702,45,1,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,58,1,2102,64,1,0 +2013,10,15,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2254,3,0,2359,-8,0,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1110,5,0,1205,-12,0,0 +2013,7,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1615,1,0,1710,-6,0,0 +2013,8,7,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,755,-6,0,1009,-2,0,0 +2013,10,10,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,23,1,1850,21,1,0 +2013,4,13,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,18,1,1805,11,0,0 +2013,10,6,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2000,242,1,2200,238,1,0 +2013,8,20,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,36,1,1845,30,1,0 +2013,10,4,5,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1221,-3,0,1340,-10,0,0 +2013,5,24,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,59,0,0,559,-11,0,0 +2013,6,9,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,70,1,1740,53,1,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,722,65,1,1559,84,1,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1630,9,0,2325,14,0,0 +2013,7,25,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-3,0,1447,5,0,0 +2013,9,16,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,705,-8,0,1014,-6,0,0 +2013,9,22,7,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1220,-6,0,1437,-17,0,0 +2013,4,13,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1510,-5,0,1710,-14,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2145,-4,0,3,-8,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,-5,0,1246,-14,0,0 +2013,7,21,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-6,0,1424,-27,0,0 +2013,8,23,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,0,0,1538,0,0,0 +2013,7,14,7,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1740,6,0,2028,-41,0,0 +2013,10,18,5,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,806,-4,0,937,-14,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2210,-8,0,2355,-15,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,38,1,1308,16,1,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,-1,0,2000,14,0,0 +2013,7,8,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1655,67,1,1710,100,1,0 +2013,5,12,7,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1815,185,1,2122,155,1,0 +2013,5,30,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,845,-4,0,1012,-6,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1920,-3,0,2020,-2,0,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1650,19,1,1743,8,0,0 +2013,7,2,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1625,5,0,1958,-44,0,0 +2013,10,11,5,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1710,6,0,1840,4,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,-8,0,2327,-7,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-1,0,1427,17,1,0 +2013,5,27,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,838,-15,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,850,3,0,1130,-8,0,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1720,12,0,1925,8,0,0 +2013,6,25,2,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,550,-5,0,724,-10,0,0 +2013,4,16,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1513,0,0,1627,15,1,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1735,7,0,2300,9,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,8,0,2128,22,1,0 +2013,9,29,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1110,-10,0,1430,-47,0,0 +2013,7,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,16,1,1735,21,1,0 +2013,10,19,6,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,27,1,1520,20,1,0 +2013,8,13,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,55,1,1829,64,1,0 +2013,6,19,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,0,0,2305,13,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,8,0,1740,6,0,0 +2013,4,28,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1330,6,0,1425,-2,0,0 +2013,5,23,4,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1231,10,0,1524,4,0,0 +2013,7,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,-3,0,1028,5,0,0 +2013,4,14,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1815,48,1,2015,36,1,0 +2013,6,2,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1040,-2,0,1155,-10,0,0 +2013,7,27,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,-2,0,1720,-8,0,0 +2013,8,22,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-2,0,2126,-1,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1745,-1,0,1925,-9,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1754,44,1,1912,52,1,0 +2013,7,6,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,730,-3,0,1049,-5,0,0 +2013,6,23,7,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,0,0,1631,-11,0,0 +2013,8,27,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2110,-5,0,2302,-18,0,0 +2013,7,26,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,900,6,0,1005,-1,0,0 +2013,8,20,2,DL,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,5,0,1836,17,1,0 +2013,6,18,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2120,7,0,2240,2,0,0 +2013,5,11,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1651,27,1,1725,27,1,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,-3,0,1250,-22,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,730,-7,0,915,-15,0,0 +2013,8,1,4,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,804,-4,0,959,-8,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,945,18,1,1046,29,1,0 +2013,9,3,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1725,-2,0,2008,-6,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,-4,0,1636,-3,0,0 +2013,4,22,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1650,-1,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1730,29,1,2010,102,1,0 +2013,6,28,5,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,46,-3,0,606,-11,0,0 +2013,10,31,4,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,815,-3,0,945,16,1,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,835,5,0,1030,7,0,0 +2013,4,4,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1820,-2,0,1956,-22,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1959,0,0,2207,-9,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,755,1,0,1020,0,0,0 +2013,4,4,4,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-5,0,1011,-2,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1640,-1,0,2120,-24,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,15,1,1310,5,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-8,0,925,6,0,0 +2013,4,22,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1330,35,1,1455,35,1,0 +2013,4,18,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,2,0,1604,62,1,0 +2013,6,9,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-6,0,1655,2,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-5,0,1952,46,1,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1359,-4,0,1411,-22,0,0 +2013,6,24,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-4,0,930,4,0,0 +2013,5,26,7,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1118,0,0,1352,-13,0,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,5,0,1740,-9,0,0 +2013,10,12,6,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1939,1,0,2235,5,0,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1915,-4,0,2110,9,0,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1928,90,1,2131,72,1,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1347,-1,0,1531,-1,0,0 +2013,8,25,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-6,0,1235,2,0,0 +2013,5,31,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,8,0,619,-1,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1005,58,1,1115,42,1,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1415,-5,0,1635,-12,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,2,0,1019,14,0,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,800,0,0,1040,3,0,0 +2013,4,20,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,12,0,1228,-12,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2125,26,1,2335,21,1,0 +2013,9,7,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-10,0,1113,7,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2115,35,1,5,25,1,0 +2013,5,10,5,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1230,-6,0,1331,-12,0,0 +2013,5,22,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1200,47,1,1326,43,1,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-6,0,1115,-9,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1425,-4,0,1606,4,0,0 +2013,4,6,6,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1335,-9,0,1355,-14,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1045,1,0,1145,-4,0,0 +2013,7,8,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,-2,0,2025,-9,0,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1215,-2,0,1350,-16,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1940,10,0,2045,7,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1620,48,1,1940,32,1,0 +2013,9,3,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-11,0,1405,-17,0,0 +2013,8,6,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-3,0,750,-14,0,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,118,1,1924,115,1,0 +2013,6,18,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,3,0,2220,-5,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2045,13,0,2301,6,0,0 +2013,7,12,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2010,23,1,2136,19,1,0 +2013,6,30,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2018,5,0,2339,-10,0,0 +2013,7,2,2,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,740,0,0,920,-14,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,-3,0,2321,-11,0,0 +2013,8,8,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,550,-9,0,747,-12,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1735,11,0,5,10,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1305,1,0,1438,-6,0,0 +2013,8,3,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1150,9,0,1310,10,0,0 +2013,6,19,3,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,157,1,2113,145,1,0 +2013,6,18,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1016,11,0,1100,29,1,0 +2013,9,18,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1800,18,1,2005,3,0,0 +2013,5,30,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,1,0,1335,-1,0,0 +2013,8,16,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-7,0,900,7,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1054,16,1,1838,13,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,3,0,1030,2,0,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,8,0,1349,5,0,0 +2013,4,18,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,520,112,1,625,146,1,0 +2013,7,4,4,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1630,-5,0,2159,-10,0,0 +2013,9,29,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1920,-6,0,2218,-16,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,700,0,0,820,10,0,0 +2013,8,12,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,950,0,0,1120,0,0,0 +2013,9,3,2,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,1,0,2014,-4,0,0 +2013,6,26,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-6,0,1332,-13,0,0 +2013,7,14,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1910,-1,0,2035,3,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,25,1,1615,56,1,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,0,0,1440,-7,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1720,-1,0,1925,-15,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1310,0,0,1525,-6,0,0 +2013,10,28,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1359,-6,0,1645,-19,0,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,947,10,0,1151,13,0,0 +2013,8,22,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-4,0,1122,-12,0,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1000,1,0,1607,11,0,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,630,5,0,804,-11,0,0 +2013,6,27,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1925,47,1,2115,51,1,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,1,0,1001,-20,0,0 +2013,9,19,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1540,10,0,1807,17,1,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-7,0,2340,-7,0,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1825,5,0,2035,8,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,905,4,0,1439,-14,0,0 +2013,7,25,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-14,0,1843,-39,0,0 +2013,6,17,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,1,0,2102,-7,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1615,0,,1855,0,1,1 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1840,18,1,1930,26,1,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1144,3,0,1550,-6,0,0 +2013,9,6,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1310,0,0,1325,-8,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2114,13,0,2231,2,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,-7,0,1712,-21,0,0 +2013,8,7,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1741,69,1,1903,90,1,0 +2013,6,17,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1245,14,0,1344,18,1,0 +2013,8,31,6,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1455,-5,0,1709,-27,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2200,9,0,2305,34,1,0 +2013,4,20,6,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1645,6,0,2206,-2,0,0 +2013,8,16,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1406,-11,0,1845,-43,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1810,62,1,1935,49,1,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2145,-2,0,2245,-10,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1344,18,1,1458,1,0,0 +2013,10,28,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1559,-8,0,0 +2013,10,23,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1609,-10,0,1732,-23,0,0 +2013,8,26,1,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,2,0,1529,8,0,0 +2013,8,17,6,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1716,-8,0,2259,-16,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1006,-3,0,1230,-24,0,0 +2013,5,14,2,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,842,102,1,1022,78,1,0 +2013,9,30,1,EV,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,552,1,0,840,-4,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,800,-4,0,910,-7,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,810,0,0,1005,2,0,0 +2013,10,6,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1920,5,0,2040,4,0,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1645,-5,0,1709,-12,0,0 +2013,5,1,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1050,-4,0,1310,5,0,0 +2013,5,10,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2020,-4,0,2135,-3,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2020,48,1,2225,58,1,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1900,12,0,2040,1,0,0 +2013,9,8,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-4,0,1725,-6,0,0 +2013,6,13,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1120,147,1,1327,156,1,0 +2013,8,15,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1201,-3,0,1334,4,0,0 +2013,7,25,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1005,1,0,1125,7,0,0 +2013,8,24,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1601,7,0,0 +2013,8,31,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,613,-5,0,831,-16,0,0 +2013,8,27,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-3,0,2129,-10,0,0 +2013,7,17,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,850,12,0,1135,-1,0,0 +2013,8,15,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,630,-3,0,725,0,0,0 +2013,10,14,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,-1,0,1822,-6,0,0 +2013,6,27,4,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1353,15,1,1800,5,0,0 +2013,5,10,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,49,1,40,43,1,0 +2013,6,11,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,3,0,2025,3,0,0 +2013,8,12,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2120,6,0,2230,-3,0,0 +2013,5,7,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1750,1,0,1935,-8,0,0 +2013,10,9,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,800,-5,0,855,0,0,0 +2013,8,6,2,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,-2,0,1255,-6,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1150,13,0,1629,-1,0,0 +2013,9,26,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,0,0,1515,-2,0,0 +2013,5,2,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-2,0,907,-6,0,0 +2013,8,8,4,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1659,4,0,1853,15,1,0 +2013,5,23,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1333,223,1,1559,229,1,0 +2013,6,24,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2338,-3,0,657,-10,0,0 +2013,4,11,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1213,77,1,1313,93,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1859,8,0,2012,8,0,0 +2013,8,22,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,142,1,1735,158,1,0 +2013,4,11,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,11,0,1610,6,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,805,9,0,929,15,1,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1725,-3,0,2015,-12,0,0 +2013,4,11,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1548,78,1,1645,77,1,0 +2013,7,29,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,835,-6,0,1215,0,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,-4,0,1235,-10,0,0 +2013,8,6,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,-8,0,1900,-22,0,0 +2013,8,27,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1025,64,1,1140,64,1,0 +2013,6,24,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1720,169,1,1848,154,1,0 +2013,6,4,2,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2200,2,0,853,3,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,615,0,0,845,-23,0,0 +2013,5,19,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1845,113,1,2111,108,1,0 +2013,4,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,-9,0,900,-6,0,0 +2013,6,29,6,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,-11,0,500,-16,0,0 +2013,6,1,6,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1109,-4,0,1603,-7,0,0 +2013,5,22,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,14,0,1130,0,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,57,1,1725,51,1,0 +2013,4,1,1,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1050,-2,0,1402,-2,0,0 +2013,10,17,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-3,0,820,-16,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1030,-4,0,1135,-11,0,0 +2013,10,22,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-7,0,1530,13,0,0 +2013,10,7,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,805,-10,0,1034,-21,0,0 +2013,9,20,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,842,-4,0,1100,-2,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,4,0,1815,8,0,0 +2013,7,26,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,700,-6,0,1000,-15,0,0 +2013,6,15,6,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1710,0,0,1940,-25,0,0 +2013,10,30,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-1,0,905,-1,0,0 +2013,9,7,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-3,0,1240,11,0,0 +2013,5,27,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,16,1,1450,98,1,0 +2013,7,29,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1831,6,0,0 +2013,4,9,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-3,0,712,-2,0,0 +2013,8,1,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,156,1,1820,136,1,0 +2013,5,1,3,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,13,0,1705,11,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,6,0,2126,4,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1935,5,0,50,-1,0,0 +2013,9,25,3,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1500,0,0,2020,-14,0,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2122,28,1,2344,18,1,0 +2013,7,26,5,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,545,-5,0,831,-13,0,0 +2013,7,20,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2035,9,0,2206,8,0,0 +2013,9,4,3,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-8,0,1521,-19,0,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,1125,8,0,0 +2013,9,28,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,2,0,1638,-1,0,0 +2013,6,21,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1750,10,0,1905,1,0,0 +2013,10,9,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,7,0,1515,0,0,0 +2013,9,25,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1510,-4,0,1735,-8,0,0 +2013,6,28,5,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1000,-3,0,1225,1,0,0 +2013,9,17,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-5,0,1805,0,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1700,122,1,1839,138,1,0 +2013,10,13,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,26,1,2005,33,1,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,27,1,2310,29,1,0 +2013,4,10,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,623,-2,0,810,-27,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,855,-5,0,918,-5,0,0 +2013,5,31,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2125,-4,0,2259,-28,0,0 +2013,9,28,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1004,1,0,1320,-27,0,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1055,-2,0,1325,-21,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1640,269,1,1800,293,1,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1040,-3,0,1401,-17,0,0 +2013,5,10,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1048,9,0,1420,16,1,0 +2013,7,25,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1135,-6,0,1405,-17,0,0 +2013,4,2,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,810,5,0,1050,0,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1653,-5,0,1739,-11,0,0 +2013,10,16,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,7,0,1435,-4,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1740,0,0,2100,9,0,0 +2013,9,3,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-4,0,920,-4,0,0 +2013,6,11,2,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1416,107,1,1525,99,1,0 +2013,7,16,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1448,1,0,1744,10,0,0 +2013,4,14,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,847,-9,0,1130,18,1,0 +2013,5,5,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1111,-3,0,1405,12,0,0 +2013,9,5,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-10,0,1812,-4,0,0 +2013,7,4,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,900,-6,0,1040,-3,0,0 +2013,6,28,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,50,1,2020,54,1,0 +2013,7,14,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-7,0,2111,-19,0,0 +2013,8,21,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1440,-2,0,1605,-22,0,0 +2013,5,12,7,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,-6,0,1831,-9,0,0 +2013,10,15,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1015,-11,0,1143,-12,0,0 +2013,5,12,7,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1810,26,1,2010,1,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1254,-3,0,1519,-6,0,0 +2013,9,5,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-9,0,2145,-7,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1815,11,0,2135,8,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2015,6,0,2308,-7,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1540,7,0,1700,-6,0,0 +2013,7,22,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,47,1,1534,86,1,0 +2013,10,24,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1940,-8,0,2229,-35,0,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,5,0,922,13,0,0 +2013,7,19,5,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,0,0,1455,-3,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1015,-6,0,1447,-3,0,0 +2013,7,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1136,-5,0,1300,-4,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-4,0,1826,-10,0,0 +2013,5,6,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1219,-1,0,1355,-5,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,855,-4,0,1002,-21,0,0 +2013,8,17,6,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1720,-1,0,2055,-6,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-4,0,1740,-30,0,0 +2013,10,15,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-9,0,1051,-11,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,3,0,1145,-2,0,0 +2013,4,6,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-12,0,2055,-20,0,0 +2013,8,4,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-8,0,1710,-14,0,0 +2013,5,21,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2039,55,1,2225,43,1,0 +2013,7,17,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-4,0,746,-3,0,0 +2013,8,9,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-11,0,1329,-11,0,0 +2013,6,27,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,835,3,0,1440,9,0,0 +2013,6,4,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-5,0,1523,-2,0,0 +2013,8,8,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2110,77,1,2258,57,1,0 +2013,6,9,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,-5,0,1826,-9,0,0 +2013,4,3,3,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,7,0,1615,0,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1650,20,1,1748,15,1,0 +2013,7,4,4,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2101,5,0,2334,0,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1730,-2,0,1837,-26,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,66,1,2325,52,1,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1650,-3,0,1805,-12,0,0 +2013,6,25,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,2,0,1237,-2,0,0 +2013,6,21,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1045,0,0,1918,-4,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1020,4,0,1135,24,1,0 +2013,6,14,5,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1001,16,1,1120,6,0,0 +2013,5,10,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,4,0,1855,7,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2010,0,0,2225,-16,0,0 +2013,9,20,5,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1409,-12,0,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,650,0,0,931,7,0,0 +2013,7,18,4,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,600,-7,0,814,-24,0,0 +2013,4,28,7,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,-1,0,1400,-11,0,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1515,11,0,1625,16,1,0 +2013,10,2,3,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1700,-5,0,1915,0,0,0 +2013,6,12,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,830,-14,0,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-9,0,1422,-21,0,0 +2013,10,28,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1345,-8,0,1640,-17,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1555,21,1,1810,10,0,0 +2013,4,22,1,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1046,4,0,1347,9,0,0 +2013,4,17,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,-5,0,1328,1,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1020,-3,0,1430,13,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,-2,0,1659,-9,0,0 +2013,4,11,4,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1456,11,0,1656,11,0,0 +2013,5,1,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-3,0,750,-15,0,0 +2013,7,21,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1100,0,0,1359,-26,0,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1135,9,0,1415,-4,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1250,-5,0,1605,-2,0,0 +2013,8,8,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1540,12,0,1858,67,1,0 +2013,7,31,3,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,-3,0,1357,13,0,0 +2013,8,13,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-3,0,857,-6,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,0,0,735,-1,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,745,10,0,931,24,1,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1710,-8,0,1810,-20,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,47,1,2250,34,1,0 +2013,8,30,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,8,0,1917,6,0,0 +2013,4,17,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-6,0,840,-15,0,0 +2013,6,19,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1200,-2,0,1500,5,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,605,-8,0,906,0,0,0 +2013,7,31,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1515,25,1,1815,10,0,0 +2013,4,20,6,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2105,-1,0,2242,-2,0,0 +2013,10,3,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1439,-2,0,1619,-3,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,-4,0,1624,-8,0,0 +2013,7,2,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1210,14,0,1330,21,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,730,-4,0,922,-8,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,-3,0,915,-10,0,0 +2013,6,6,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,801,-4,0,1635,-37,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2145,17,1,2245,3,0,0 +2013,8,12,1,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,-6,0,1623,-7,0,0 +2013,6,4,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,-3,0,2245,-10,0,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1735,16,1,1835,10,0,0 +2013,4,1,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,905,-3,0,1025,-5,0,0 +2013,4,27,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,745,1,0,1010,-13,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2029,84,1,2248,62,1,0 +2013,10,17,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1035,2,0,1136,1,0,0 +2013,7,17,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-10,0,1734,-12,0,0 +2013,7,7,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-9,0,1542,26,1,0 +2013,6,27,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1300,21,1,1505,3,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2055,-5,0,2355,-5,0,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,3,0,2148,3,0,0 +2013,8,25,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,754,28,1,1330,33,1,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1440,34,1,1550,25,1,0 +2013,7,4,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-8,0,1110,-8,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,26,1,1823,21,1,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,33,1,1530,99,1,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1645,0,0,1910,-2,0,0 +2013,5,27,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2055,-1,0,2259,-19,0,0 +2013,7,2,2,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,625,-2,0,805,-12,0,0 +2013,5,9,4,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1238,5,0,1459,2,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1818,-2,0,2055,-25,0,0 +2013,6,11,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,26,1,1610,13,0,0 +2013,6,23,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-2,0,733,-7,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2109,27,1,2234,11,0,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1537,7,0,1734,9,0,0 +2013,4,5,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,-3,0,1150,-2,0,0 +2013,4,28,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,10,0,1735,-3,0,0 +2013,9,3,2,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,0,0,1910,-16,0,0 +2013,7,19,5,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,56,1,2010,52,1,0 +2013,10,27,7,YV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,807,0,0,952,-8,0,0 +2013,4,14,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,2,0,2030,-11,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1155,0,0,1336,-9,0,0 +2013,10,30,3,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,925,-4,0,1124,-2,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1525,57,1,1705,46,1,0 +2013,6,3,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-1,0,850,-16,0,0 +2013,9,23,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,-6,0,1045,-5,0,0 +2013,8,29,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1940,31,1,1959,33,1,0 +2013,8,2,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,829,-1,0,1010,2,0,0 +2013,9,6,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,6,0,2105,1,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1510,-2,0,1635,-4,0,0 +2013,4,14,7,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1335,-1,0,1541,-19,0,0 +2013,4,15,1,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1803,-7,0,2004,-11,0,0 +2013,9,14,6,9E,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,830,-4,0,1224,-26,0,0 +2013,6,15,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-2,0,2104,-5,0,0 +2013,4,9,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1829,127,1,2143,124,1,0 +2013,9,6,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1507,-1,0,1729,-27,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-1,0,834,11,0,0 +2013,7,11,4,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1930,18,1,2246,20,1,0 +2013,4,23,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,2015,-15,0,0 +2013,7,20,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,19,1,1810,52,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,-7,0,859,-14,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1050,0,0,1325,-8,0,0 +2013,9,8,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1350,17,1,1450,8,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,1,0,915,-17,0,0 +2013,6,5,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-7,0,1805,-9,0,0 +2013,4,29,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,600,-4,0,755,-25,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1000,-2,0,1435,11,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,900,13,0,1035,5,0,0 +2013,6,3,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,1,0,2155,7,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2210,-2,0,2300,-4,0,0 +2013,8,25,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-6,0,922,-8,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2155,108,1,2255,113,1,0 +2013,6,8,6,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,830,-3,0,1126,-36,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,1,0,1629,1,0,0 +2013,10,25,5,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,804,-5,0,903,-10,0,0 +2013,9,22,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1620,-2,0,1657,-1,0,0 +2013,10,21,1,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-4,0,1315,-15,0,0 +2013,5,21,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,23,1,608,18,1,0 +2013,9,29,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1925,28,1,2252,19,1,0 +2013,7,20,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,18,1,1820,26,1,0 +2013,9,10,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1720,20,1,1845,3,0,0 +2013,6,30,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,19,1,2250,16,1,0 +2013,10,4,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1906,-8,0,1954,-6,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2030,9,0,2159,-1,0,0 +2013,5,30,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1817,104,1,1900,122,1,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1955,11,0,2210,33,1,0 +2013,4,26,5,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,935,-7,0,1050,-10,0,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1656,26,1,2001,-2,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,21,1,1330,0,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-1,0,1505,-11,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2005,-1,0,2125,17,1,0 +2013,9,9,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1340,-2,0,1520,-11,0,0 +2013,10,10,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,3,0,1950,0,0,0 +2013,5,4,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,500,15,1,643,-3,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1340,-2,0,1445,18,1,0 +2013,6,5,3,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-6,0,1633,23,1,0 +2013,6,21,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-1,0,1408,9,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1210,12,0,1500,21,1,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,615,0,0,855,1,0,0 +2013,8,11,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1828,5,0,2105,-3,0,0 +2013,6,5,3,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,815,-3,0,1011,4,0,0 +2013,7,15,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,1,0,750,-9,0,0 +2013,7,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1620,-1,0,1912,9,0,0 +2013,10,16,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,729,-8,0,812,7,0,0 +2013,6,14,5,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,13,0,2010,13,0,0 +2013,4,16,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,-8,0,1130,-10,0,0 +2013,6,27,4,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,915,1,0,1020,-9,0,0 +2013,5,5,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,715,-2,0,1000,16,1,0 +2013,4,9,2,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,703,-5,0,1452,-17,0,0 +2013,4,29,1,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1635,24,1,1805,21,1,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,-3,0,1943,-9,0,0 +2013,6,23,7,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1108,-4,0,1259,-22,0,0 +2013,5,25,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,615,-3,0,738,-8,0,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1034,-5,0,1243,-17,0,0 +2013,10,25,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,945,-5,0,1129,-17,0,0 +2013,8,21,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,819,-13,0,946,-11,0,0 +2013,10,2,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-8,0,848,17,1,0 +2013,7,21,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,936,-5,0,1200,-16,0,0 +2013,5,14,2,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-5,0,2025,-27,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2239,3,0,631,22,1,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-4,0,750,-7,0,0 +2013,6,23,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1545,-2,0,1650,-9,0,0 +2013,4,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,-6,0,1805,-31,0,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1345,-3,0,1543,-21,0,0 +2013,4,1,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1015,-6,0,1212,4,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,3,0,1333,-11,0,0 +2013,4,21,7,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2025,50,1,2105,58,1,0 +2013,4,16,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,600,-2,0,750,-1,0,0 +2013,4,2,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,606,9,0,800,-5,0,0 +2013,7,12,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,1,0,2128,16,1,0 +2013,6,20,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,-1,0,940,-13,0,0 +2013,9,26,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1349,-16,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1710,13,0,1915,4,0,0 +2013,4,14,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,-7,0,1906,-26,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1759,-1,0,1853,-4,0,0 +2013,5,21,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,206,1,2100,214,1,0 +2013,10,30,3,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1251,-2,0,1429,-8,0,0 +2013,4,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2155,-7,0,2228,-12,0,0 +2013,9,21,6,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1440,-5,0,1720,-16,0,0 +2013,4,17,3,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1815,34,1,2143,33,1,0 +2013,4,8,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,1028,-15,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,15,1,1006,-13,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1937,-3,0,2250,27,1,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1730,9,0,1837,7,0,0 +2013,7,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,1,0,725,-7,0,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1755,-8,0,1919,-33,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1535,18,1,1635,11,0,0 +2013,10,12,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,800,-5,0,1020,-8,0,0 +2013,6,27,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,800,0,0,832,6,0,0 +2013,6,16,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1945,69,1,2202,67,1,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,0,0,1745,0,0,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,43,1,1700,49,1,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,32,1,2226,19,1,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2115,57,1,2330,57,1,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,730,-6,0,1010,-10,0,0 +2013,10,24,4,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1650,49,1,2145,47,1,0 +2013,7,18,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,1,0,850,4,0,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,845,-4,0,1036,-16,0,0 +2013,9,23,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,12,0,1942,6,0,0 +2013,7,13,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,3,0,2049,-12,0,0 +2013,10,24,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-5,0,1025,9,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1704,17,1,2012,-1,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,-1,0,745,-6,0,0 +2013,7,27,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1800,16,1,1925,4,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,614,-1,0,1055,-8,0,0 +2013,4,24,3,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1125,0,0,1337,8,0,0 +2013,6,24,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,11,0,744,10,0,0 +2013,4,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1340,32,1,1707,12,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-5,0,911,-9,0,0 +2013,8,31,6,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2045,-1,0,2337,-13,0,0 +2013,10,30,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,2000,56,1,2145,49,1,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,920,0,0,1015,-7,0,0 +2013,4,5,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1228,16,1,1532,37,1,0 +2013,5,7,2,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1026,-5,0,1125,-15,0,0 +2013,8,24,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1530,-6,0,0 +2013,4,29,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-7,0,1309,12,0,0 +2013,7,3,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,83,1,1657,93,1,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-6,0,1536,-15,0,0 +2013,6,10,1,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-3,0,705,-11,0,0 +2013,4,16,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,745,-3,0,805,11,0,0 +2013,8,14,3,FL,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1210,0,0,1425,-1,0,0 +2013,8,23,5,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1745,36,1,2020,36,1,0 +2013,5,11,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-9,0,1210,-13,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-3,0,1105,7,0,0 +2013,9,23,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,175,1,947,177,1,0 +2013,5,15,3,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,540,0,0,828,1,0,0 +2013,8,24,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,51,1,1530,54,1,0 +2013,5,20,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1410,9,0,1755,51,1,0 +2013,8,18,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1024,-17,0,1815,-13,0,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1249,-3,0,1648,-1,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1105,0,0,1410,-16,0,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,4,0,1150,-14,0,0 +2013,5,31,5,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-14,0,1330,-3,0,0 +2013,9,9,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,615,-1,0,705,-9,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,2,0,1932,-2,0,0 +2013,5,14,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1337,0,0,1412,-2,0,0 +2013,5,14,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,-6,0,1315,-12,0,0 +2013,6,25,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,12,0,1729,14,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,-7,0,1253,-21,0,0 +2013,6,21,5,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1823,-10,0,1927,31,1,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1652,-4,0,2016,-10,0,0 +2013,7,10,3,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1239,99,1,1734,111,1,0 +2013,7,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,725,-2,0,1020,2,0,0 +2013,5,4,6,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,919,0,0,1725,-26,0,0 +2013,10,8,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-3,0,940,-9,0,0 +2013,5,19,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1955,6,0,2125,1,0,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1630,28,1,1950,9,0,0 +2013,5,13,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,10,0,1406,8,0,0 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,1105,-7,0,0 +2013,10,25,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,19,1,2100,25,1,0 +2013,10,3,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1455,-6,0,1640,16,1,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1030,18,1,1610,0,0,0 +2013,9,19,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1230,2,0,1420,-4,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,-6,0,1531,-25,0,0 +2013,8,12,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,63,1,2050,53,1,0 +2013,6,26,3,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,5,0,2147,-15,0,0 +2013,5,4,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1010,-4,0,1155,-19,0,0 +2013,6,17,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-12,0,1340,-11,0,0 +2013,5,16,4,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1810,16,1,2020,14,0,0 +2013,7,8,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-7,0,935,-6,0,0 +2013,9,16,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1556,21,1,1809,17,1,0 +2013,10,16,3,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1210,30,1,1310,20,1,0 +2013,6,24,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,53,1,2300,51,1,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,640,-3,0,1005,6,0,0 +2013,5,10,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1705,-9,0,1927,-4,0,0 +2013,9,15,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,-1,0,815,-14,0,0 +2013,8,15,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-9,0,2256,-12,0,0 +2013,8,13,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,12,0,1935,16,1,0 +2013,7,25,4,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,0,0,1940,-11,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,9,0,2200,-2,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,3,0,1840,33,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,819,-5,0,925,-9,0,0 +2013,10,19,6,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,915,80,1,1048,64,1,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,-6,0,2330,6,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1300,8,0,1430,7,0,0 +2013,4,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1215,4,0,1330,-1,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,837,0,0,1029,6,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1536,-7,0,1812,-15,0,0 +2013,10,7,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,-2,0,1106,-1,0,0 +2013,4,5,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1300,28,1,1431,13,0,0 +2013,6,18,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1020,-8,0,1226,-11,0,0 +2013,10,15,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1745,7,0,2010,20,1,0 +2013,5,17,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,22,1,1755,16,1,0 +2013,7,26,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-2,0,1420,-3,0,0 +2013,6,26,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,925,4,0,1210,2,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1920,89,1,2225,68,1,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,-4,0,2156,-5,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,730,19,1,923,24,1,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,59,1,1405,47,1,0 +2013,9,6,5,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1040,-5,0,1150,-5,0,0 +2013,4,26,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-7,0,1850,-15,0,0 +2013,4,15,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-4,0,1147,-7,0,0 +2013,8,11,7,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,-3,0,1155,-8,0,0 +2013,10,4,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,-5,0,1831,3,0,0 +2013,6,4,2,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,0,0,2021,0,0,0 +2013,9,15,7,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,20,1,1416,5,0,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,1,0,1057,2,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,755,-1,0,1125,-12,0,0 +2013,4,3,3,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,831,-10,0,1035,-33,0,0 +2013,4,9,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-2,0,839,-5,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1105,-2,0,1435,-17,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,12,0,1235,8,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1921,-2,0,2104,2,0,0 +2013,8,15,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1742,-8,0,1955,-24,0,0 +2013,10,18,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-6,0,908,-24,0,0 +2013,10,16,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,7,0,1106,19,1,0 +2013,5,22,3,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1334,-1,0,1443,-7,0,0 +2013,9,4,3,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1635,32,1,1945,57,1,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,955,19,1,1217,4,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,-1,0,1632,-12,0,0 +2013,8,9,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1820,38,1,1915,23,1,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,-3,0,1230,-11,0,0 +2013,7,26,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,8,0,1835,13,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1459,-1,0,1957,-10,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,90,1,2155,182,1,0 +2013,9,2,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,-8,0,1415,12,0,0 +2013,8,12,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1535,-5,0,1814,-13,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2010,-6,0,2121,-16,0,0 +2013,5,5,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1200,-8,0,1420,-20,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1500,30,1,1835,22,1,0 +2013,7,12,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1536,-4,0,2044,-21,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1347,6,0,1417,1,0,0 +2013,8,31,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1259,-3,0,1539,0,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2057,-4,0,2359,-3,0,0 +2013,4,3,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1651,-6,0,1725,-6,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2117,69,1,2253,47,1,0 +2013,10,9,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1030,0,0,1305,-1,0,0 +2013,8,15,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1725,16,1,1834,1,0,0 +2013,4,12,5,B6,14635,Southwest Florida International,Fort Myers,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,40,1,2327,27,1,0 +2013,10,12,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1350,-3,0,1535,-13,0,0 +2013,10,23,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,2,0,1740,3,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,940,-4,0,1120,-21,0,0 +2013,9,23,1,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1140,-2,0,1355,-3,0,0 +2013,6,27,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,645,1,0,835,-2,0,0 +2013,9,5,4,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,955,-4,0,1445,5,0,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1525,7,0,1720,1,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,935,26,1,1220,-11,0,0 +2013,7,10,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1254,16,1,1613,-27,0,0 +2013,7,26,5,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2050,33,1,2310,25,1,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1959,-7,0,2303,-33,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,4,0,1942,10,0,0 +2013,7,4,4,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,-10,0,1841,-1,0,0 +2013,7,31,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,1,0,900,-3,0,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2055,41,1,2234,20,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1215,-2,0,1402,-5,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,635,-3,0,1110,8,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1130,-2,0,1255,-8,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1553,58,1,1728,81,1,0 +2013,5,23,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,625,14,0,900,64,1,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,915,3,0,1200,8,0,0 +2013,7,23,2,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,0,0,820,-16,0,0 +2013,4,12,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1825,-4,0,2011,10,0,0 +2013,7,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,6,0,2104,-4,0,0 +2013,5,22,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1215,10,0,1430,1,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2045,3,0,2310,-15,0,0 +2013,4,4,4,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,37,1,1815,21,1,0 +2013,10,9,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1817,-8,0,2118,-30,0,0 +2013,9,4,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1731,-2,0,2018,-25,0,0 +2013,7,11,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1717,1,0,1838,2,0,0 +2013,5,9,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,38,1,1910,25,1,0 +2013,4,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2135,53,1,5,39,1,0 +2013,8,4,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,18,1,2118,28,1,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1947,12,0,2345,9,0,0 +2013,8,10,6,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,625,-2,0,915,-14,0,0 +2013,10,2,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2110,-11,0,2210,-18,0,0 +2013,8,26,1,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1705,0,0,1850,-14,0,0 +2013,9,3,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1858,-3,0,2026,2,0,0 +2013,5,9,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-7,0,1409,-1,0,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-4,0,1045,-13,0,0 +2013,5,17,5,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1110,-8,0,1400,-14,0,0 +2013,6,6,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1345,21,1,1425,18,1,0 +2013,8,1,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1209,2,0,1329,-2,0,0 +2013,9,22,7,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1736,4,0,1855,42,1,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,1,0,2110,-15,0,0 +2013,10,3,4,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2315,-5,0,730,-19,0,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-4,0,2303,-9,0,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,10,0,1140,7,0,0 +2013,8,7,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1214,-6,0,1355,9,0,0 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,90,1,1152,82,1,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,945,6,0,1040,14,0,0 +2013,4,25,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1417,-8,0,1615,-13,0,0 +2013,5,6,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,27,1,2030,17,1,0 +2013,10,26,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,633,24,1,742,19,1,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1020,-2,0,1606,-13,0,0 +2013,6,7,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1010,0,0,1315,-31,0,0 +2013,4,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,841,-5,0,1050,5,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1415,-2,0,1658,-11,0,0 +2013,5,27,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-3,0,951,-14,0,0 +2013,10,4,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1440,-2,0,1525,-6,0,0 +2013,4,27,6,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-3,0,1625,-4,0,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,1,0,1625,-21,0,0 +2013,8,9,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1248,86,1,2118,66,1,0 +2013,10,4,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,-14,0,2241,-2,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1045,7,0,1210,-4,0,0 +2013,7,21,7,EV,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1209,0,0,1340,18,1,0 +2013,9,24,2,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,1010,-9,0,1250,-17,0,0 +2013,10,27,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1705,21,1,2015,7,0,0 +2013,7,24,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,605,-10,0,807,-13,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,-8,0,2359,-28,0,0 +2013,10,13,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1500,-7,0,1815,-16,0,0 +2013,9,12,4,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-5,0,1035,-7,0,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,932,19,1,1258,19,1,0 +2013,9,24,2,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1030,-8,0,1313,-24,0,0 +2013,4,22,1,EV,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,918,-10,0,1014,-2,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1555,0,0,1815,-10,0,0 +2013,9,24,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,925,0,0,1450,-12,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,2,0,1547,-5,0,0 +2013,8,14,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,1,0,1735,-8,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1705,9,0,2045,0,0,0 +2013,10,5,6,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1415,1,0,1600,-22,0,0 +2013,7,29,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,930,0,0,935,-1,0,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,824,13,0,1106,19,1,0 +2013,6,14,5,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,615,-7,0,653,4,0,0 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,850,1,0,1543,-11,0,0 +2013,4,18,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-11,0,1121,-7,0,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,-5,0,2105,-17,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1523,3,0,1716,6,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1156,-4,0,1441,-13,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1019,-1,0,1128,4,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1815,2,0,1949,3,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,700,-5,0,830,0,0,0 +2013,8,16,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-11,0,1050,-17,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,19,1,1750,-8,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,-2,0,1525,-12,0,0 +2013,8,6,2,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,16,1,1810,-1,0,0 +2013,8,5,1,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1830,-3,0,2125,-19,0,0 +2013,9,8,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1624,11,0,1734,7,0,0 +2013,10,15,2,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1559,2,0,1908,-48,0,0 +2013,7,6,6,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1605,-4,0,1906,0,0,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1310,-1,0,1430,-11,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2055,12,0,2200,9,0,0 +2013,4,19,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1310,0,0,1515,12,0,0 +2013,7,1,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-5,0,1017,-8,0,0 +2013,7,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,380,1,1632,383,1,0 +2013,10,10,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-10,0,940,1,0,0 +2013,6,13,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,76,1,1356,71,1,0 +2013,7,13,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1109,34,1,1230,46,1,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,-8,0,1449,-15,0,0 +2013,9,5,4,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-10,0,821,-27,0,0 +2013,7,4,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,-2,0,1635,-5,0,0 +2013,10,26,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1725,1,0,1850,-19,0,0 +2013,8,19,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,27,1,2120,31,1,0 +2013,9,10,2,YV,14100,Philadelphia International,Philadelphia,PA,14730,Louisville International-Standiford Field,Louisville,KY,2045,-9,0,2246,-19,0,0 +2013,10,24,4,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1410,-5,0,2240,1,0,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,1,0,2009,-1,0,0 +2013,5,27,1,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,-11,0,2101,-40,0,0 +2013,6,12,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1503,-7,0,1605,-7,0,0 +2013,5,26,7,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-12,0,952,-18,0,0 +2013,9,4,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-5,0,1459,6,0,0 +2013,7,5,5,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1000,10,0,1145,-11,0,0 +2013,4,17,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1920,-6,0,2119,12,0,0 +2013,4,16,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1735,-2,0,2057,-7,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1715,15,1,2255,10,0,0 +2013,6,11,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1852,51,1,2018,49,1,0 +2013,7,24,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,-5,0,2140,15,1,0 +2013,5,5,7,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,5,0,2010,-6,0,0 +2013,6,7,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1600,1,0,1715,22,1,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1228,1,0,1437,5,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,805,7,0,1030,2,0,0 +2013,5,27,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,925,-20,0,0 +2013,4,13,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1530,-3,0,1650,-26,0,0 +2013,6,6,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-3,0,1200,-12,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,24,1,1051,8,0,0 +2013,5,7,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-4,0,2050,-29,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,915,10,0,1040,20,1,0 +2013,7,17,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1015,10,0,1216,21,1,0 +2013,8,27,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-2,0,736,-12,0,0 +2013,10,23,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1705,7,0,1825,3,0,0 +2013,9,23,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,2020,-6,0,2249,-15,0,0 +2013,9,13,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1011,4,0,1210,-5,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2003,0,0,2141,-24,0,0 +2013,10,27,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1700,11,0,1800,10,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1940,-3,0,2150,-19,0,0 +2013,9,30,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,-2,0,555,10,0,0 +2013,9,6,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1635,96,1,1735,93,1,0 +2013,9,29,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,900,-9,0,920,-16,0,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2110,1,0,2315,-3,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1705,30,1,2255,13,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,910,13,0,1155,18,1,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,-3,0,735,-6,0,0 +2013,6,17,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-6,0,955,-9,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2205,24,1,2356,12,0,0 +2013,4,29,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1505,31,1,1735,31,1,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,-4,0,1925,-8,0,0 +2013,4,7,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1336,-18,0,1458,-25,0,0 +2013,10,16,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-4,0,1007,-4,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1929,-5,0,2106,3,0,0 +2013,5,21,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,0,2135,2,0,0 +2013,10,21,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,-5,0,1210,1,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1154,-4,0,1257,-14,0,0 +2013,10,7,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-4,0,1800,-1,0,0 +2013,7,21,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,1000,-3,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1705,15,1,2000,9,0,0 +2013,8,21,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,940,-6,0,1010,-12,0,0 +2013,7,29,1,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2030,22,1,2206,-20,0,0 +2013,8,24,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1625,4,0,1843,8,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,2,0,1205,-2,0,0 +2013,7,9,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1117,-4,0,1635,-17,0,0 +2013,5,22,3,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1415,7,0,1815,2,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,18,1,1430,6,0,0 +2013,7,18,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,72,1,1720,62,1,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1805,13,0,2050,4,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1828,-30,0,0 +2013,4,16,2,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1915,-7,0,2035,-12,0,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1827,99,1,2019,87,1,0 +2013,4,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-5,0,1000,4,0,0 +2013,4,9,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1719,-9,0,1915,-17,0,0 +2013,6,6,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,21,1,800,31,1,0 +2013,8,7,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1014,122,1,1135,137,1,0 +2013,9,13,5,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,800,-3,0,1230,-16,0,0 +2013,7,12,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-2,0,1020,18,1,0 +2013,10,9,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1121,-3,0,1220,-15,0,0 +2013,9,28,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,-10,0,1830,15,1,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,64,1,1357,53,1,0 +2013,9,24,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1559,176,1,1644,178,1,0 +2013,7,26,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,27,1,2035,31,1,0 +2013,6,6,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1240,21,1,1410,21,1,0 +2013,5,5,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,-1,0,2351,-8,0,0 +2013,5,12,7,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,-3,0,1515,-18,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1305,-7,0,1438,-18,0,0 +2013,7,25,4,HA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2200,-2,0,610,0,0,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,-2,0,1115,-10,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1750,-1,0,2000,-18,0,0 +2013,4,26,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1500,2,0,1705,-6,0,0 +2013,9,22,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1455,-5,0,1620,-1,0,0 +2013,4,3,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,-6,0,5,-9,0,0 +2013,7,22,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,57,1,1028,51,1,0 +2013,6,30,7,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,815,-8,0,1000,-28,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,-7,0,810,-9,0,0 +2013,5,7,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1019,-6,0,1141,-11,0,0 +2013,5,13,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-5,0,2250,-7,0,0 +2013,5,12,7,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,-4,0,931,5,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,905,10,0,1145,-22,0,0 +2013,5,4,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1710,-1,0,2331,-4,0,0 +2013,9,16,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1545,1,0,1709,0,0,0 +2013,10,2,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2039,-7,0,2204,-23,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,923,-14,0,0 +2013,10,18,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-2,0,735,-1,0,0 +2013,10,24,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1548,8,0,1911,-4,0,0 +2013,10,9,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,-5,0,1730,-20,0,0 +2013,9,19,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1220,0,,1350,0,1,1 +2013,8,5,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1725,-3,0,1850,-10,0,0 +2013,7,5,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,5,0,1255,10,0,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,-4,0,1735,-7,0,0 +2013,5,17,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,37,1,1012,32,1,0 +2013,10,16,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-7,0,659,-16,0,0 +2013,8,18,7,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-1,0,1213,-5,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,905,1,0,1035,-4,0,0 +2013,9,7,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,855,5,0,1000,-4,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1135,19,1,1430,4,0,0 +2013,6,30,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1540,977,1,1705,977,1,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,3,0,907,4,0,0 +2013,6,8,6,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1230,0,0,2102,-1,0,0 +2013,6,10,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,94,1,1735,95,1,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1635,0,0,2000,-5,0,0 +2013,4,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1858,70,1,2159,67,1,0 +2013,6,24,1,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,840,6,0,1130,79,1,0 +2013,5,1,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,0,0,1900,1,0,0 +2013,6,18,2,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-3,0,1205,-7,0,0 +2013,10,10,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,759,-7,0,934,-31,0,0 +2013,8,23,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,66,1,1919,100,1,0 +2013,9,3,2,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1635,10,0,1855,-14,0,0 +2013,10,30,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-7,0,850,-17,0,0 +2013,6,18,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,829,-17,0,0 +2013,8,15,4,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,-7,0,1644,-25,0,0 +2013,5,4,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1730,-3,0,1845,-13,0,0 +2013,9,25,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-2,0,1515,-22,0,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,822,-1,0,1138,-32,0,0 +2013,5,18,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,27,1,1050,9,0,0 +2013,9,10,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-6,0,1304,-28,0,0 +2013,6,20,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,0,0,1130,-22,0,0 +2013,6,19,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1435,29,1,1625,25,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,0,0,2159,-16,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,18,1,1927,11,0,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-3,0,845,-14,0,0 +2013,9,7,6,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-2,0,1413,2,0,0 +2013,10,25,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1800,25,1,2045,19,1,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,755,-1,0,1010,14,0,0 +2013,9,22,7,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,1630,-3,0,1910,-10,0,0 +2013,9,5,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-6,0,1630,-12,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2105,116,1,2210,109,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2210,18,1,25,-7,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-6,0,1116,-7,0,0 +2013,6,24,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1405,8,0,2054,2,0,0 +2013,10,5,6,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1120,-6,0,1320,-12,0,0 +2013,9,6,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,39,36,1,501,30,1,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1902,59,1,2309,51,1,0 +2013,8,2,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,95,1,908,86,1,0 +2013,9,3,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,825,0,0,945,-3,0,0 +2013,8,14,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,-2,0,847,-10,0,0 +2013,10,29,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1509,-3,0,1629,-13,0,0 +2013,7,13,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,-5,0,1645,-14,0,0 +2013,10,5,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1140,33,1,1305,44,1,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,600,-1,0,715,-23,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1320,6,0,1800,-1,0,0 +2013,8,24,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1445,-2,0,1555,5,0,0 +2013,4,12,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,720,-7,0,1003,14,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2105,-1,0,2239,-10,0,0 +2013,4,17,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,10,0,935,11,0,0 +2013,5,14,2,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1245,1,0,1350,1,0,0 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,0,0,1100,-13,0,0 +2013,6,1,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1401,-2,0,2233,4,0,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1040,-1,0,1410,5,0,0 +2013,10,11,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1325,24,1,1355,12,0,0 +2013,5,27,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,-1,0,558,-14,0,0 +2013,4,5,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,-6,0,935,-14,0,0 +2013,5,17,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1306,0,0,1818,-15,0,0 +2013,9,9,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2040,49,1,2210,33,1,0 +2013,4,29,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1638,-3,0,1851,-4,0,0 +2013,7,7,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2100,44,1,2336,26,1,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1312,108,1,1411,98,1,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1741,3,0,2037,8,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,60,1,1849,49,1,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1055,-4,0,1310,-11,0,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,657,0,0,920,6,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,905,4,0,1050,8,0,0 +2013,7,5,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,945,-6,0,1235,-7,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1750,38,1,1903,34,1,0 +2013,6,25,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,48,1,1240,38,1,0 +2013,9,18,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2025,-1,0,2255,-2,0,0 +2013,10,14,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,-4,0,2259,-9,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-1,0,2238,-12,0,0 +2013,5,25,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,550,7,0,746,-10,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1450,11,0,1755,14,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1100,-3,0,1530,-1,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1835,-2,0,1950,-5,0,0 +2013,4,5,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1150,7,0,1305,0,0,0 +2013,10,14,1,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1312,18,1,1624,0,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1445,3,0,1715,-16,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,844,-2,0,1321,-10,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1042,13,0,1215,10,0,0 +2013,9,17,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-8,0,1557,-7,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1750,-5,0,1905,-8,0,0 +2013,6,16,7,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1117,-4,0,1455,-17,0,0 +2013,8,7,3,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1910,-1,0,2132,-1,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1525,-2,0,1740,-20,0,0 +2013,9,18,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2110,20,1,2225,13,0,0 +2013,10,2,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1221,-7,0,1925,-18,0,0 +2013,8,22,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,600,-8,0,729,-9,0,0 +2013,9,28,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,5,0,1420,-2,0,0 +2013,8,13,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2100,102,1,2305,86,1,0 +2013,9,11,3,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1050,-5,0,1250,-11,0,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1320,0,0,1620,-6,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2005,-3,0,2339,-5,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1940,0,0,2215,-11,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2250,-3,0,32,-16,0,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1738,41,1,1944,45,1,0 +2013,7,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,136,1,855,137,1,0 +2013,9,7,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,829,-9,0,1006,-12,0,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1148,35,1,1700,28,1,0 +2013,8,20,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,-5,0,1706,7,0,0 +2013,9,16,1,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1631,13,0,1945,-2,0,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,0,0,928,-6,0,0 +2013,6,5,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,14,0,1101,27,1,0 +2013,4,18,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1752,159,1,2011,186,1,0 +2013,10,3,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-1,0,1650,-10,0,0 +2013,8,20,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1502,-4,0,1701,-12,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1710,99,1,1846,90,1,0 +2013,4,29,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2050,0,0,2110,-5,0,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-3,0,848,-3,0,0 +2013,10,21,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,816,-6,0,932,1,0,0 +2013,5,12,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,813,-17,0,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1101,190,1,1535,210,1,0 +2013,5,21,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1047,33,1,1235,24,1,0 +2013,6,22,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,15,1,1646,1,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1205,-5,0,1610,-7,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1146,-7,0,1300,-12,0,0 +2013,5,29,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1950,-3,0,2139,-11,0,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,955,4,0,1230,-7,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2020,11,0,2135,10,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1500,0,0,1605,-3,0,0 +2013,7,18,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,25,1,1324,14,0,0 +2013,4,28,7,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1548,18,1,1820,29,1,0 +2013,8,1,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,15,1,921,10,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,750,-3,0,955,-4,0,0 +2013,5,10,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,920,3,0,1230,-7,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1410,-6,0,1725,-13,0,0 +2013,5,9,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1929,-4,0,2109,-18,0,0 +2013,10,20,7,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,750,439,1,1024,414,1,0 +2013,9,18,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-5,0,1905,10,0,0 +2013,9,11,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1405,-2,0,1505,-12,0,0 +2013,7,23,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1400,26,1,1735,7,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1920,15,1,2235,26,1,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,10,0,2240,17,1,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1330,-2,0,1545,-19,0,0 +2013,6,2,7,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,-4,0,2135,-6,0,0 +2013,5,22,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1305,-3,0,1601,2,0,0 +2013,4,4,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1512,137,1,1843,134,1,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-5,0,1115,-7,0,0 +2013,8,4,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,3,0,1532,-2,0,0 +2013,9,20,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,50,1,2055,44,1,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1610,0,0,0 +2013,10,6,7,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,14,0,1008,17,1,0 +2013,9,25,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1235,-8,0,1529,-12,0,0 +2013,10,18,5,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1530,0,0,1848,0,0,0 +2013,6,4,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,27,1,1445,19,1,0 +2013,4,15,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,45,1,1620,28,1,0 +2013,8,27,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,700,19,1,937,-1,0,0 +2013,8,22,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1049,108,1,1231,97,1,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2215,15,1,2359,10,0,0 +2013,4,23,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1930,0,,2239,0,1,1 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-4,0,901,-11,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1255,30,1,1415,26,1,0 +2013,10,12,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1815,1,0,2135,-31,0,0 +2013,6,3,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,17,1,1515,3,0,0 +2013,4,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2005,3,0,2130,0,0,0 +2013,9,27,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2110,22,1,519,0,0,0 +2013,4,5,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,-8,0,1915,-3,0,0 +2013,5,7,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-3,0,1115,-1,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,725,-5,0,1050,-6,0,0 +2013,7,23,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-6,0,1216,-12,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-5,0,2055,-9,0,0 +2013,6,19,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,929,0,0,1241,-20,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1710,62,1,1953,83,1,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1734,0,0,1948,-14,0,0 +2013,6,6,4,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1620,5,0,1827,-2,0,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,-9,0,1650,-24,0,0 +2013,9,5,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-1,0,1945,1,0,0 +2013,10,27,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1246,12,0,1516,-2,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2149,-4,0,600,-14,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-3,0,1151,9,0,0 +2013,10,24,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1900,4,0,2154,16,1,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2015,6,0,2215,4,0,0 +2013,6,4,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1121,-9,0,0 +2013,10,6,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,918,-3,0,1048,-6,0,0 +2013,5,31,5,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2205,-2,0,2252,-11,0,0 +2013,8,1,4,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1535,22,1,1755,25,1,0 +2013,5,23,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1630,12,0,1755,8,0,0 +2013,8,2,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1800,0,0,1848,4,0,0 +2013,9,16,1,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-10,0,801,-10,0,0 +2013,4,21,7,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-8,0,1703,3,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-1,0,1015,6,0,0 +2013,7,14,7,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-4,0,1908,-2,0,0 +2013,4,21,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,-2,0,1922,-12,0,0 +2013,9,3,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1145,13,0,1456,-10,0,0 +2013,8,28,3,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1840,1,0,2000,5,0,0 +2013,4,25,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,0,0,2350,3,0,0 +2013,5,27,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,-3,0,2333,-17,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1645,-12,0,0 +2013,4,18,4,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1858,124,1,2130,140,1,0 +2013,7,11,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1015,-6,0,1219,4,0,0 +2013,4,5,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2217,3,0,629,-14,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1250,1,0,1620,-3,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-7,0,935,-4,0,0 +2013,5,16,4,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,810,0,0,1145,-4,0,0 +2013,6,16,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,15,1,2152,16,1,0 +2013,5,25,6,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1036,-1,0,1401,-3,0,0 +2013,7,6,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-3,0,910,5,0,0 +2013,8,3,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1755,2,0,1925,-11,0,0 +2013,7,16,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,918,-5,0,1130,-10,0,0 +2013,6,3,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1825,78,1,2127,66,1,0 +2013,6,8,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2135,0,0,600,-11,0,0 +2013,8,28,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,0,,2125,0,1,1 +2013,9,12,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1305,-6,0,1415,-22,0,0 +2013,6,24,1,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1450,27,1,1620,19,1,0 +2013,4,12,5,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1623,23,1,2012,27,1,0 +2013,4,10,3,DL,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,1831,26,1,2059,35,1,0 +2013,5,12,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1206,23,1,1327,17,1,0 +2013,4,15,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-1,0,1815,15,1,0 +2013,5,1,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-4,0,700,-15,0,0 +2013,7,10,3,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1845,-3,0,2140,36,1,0 +2013,8,5,1,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2350,76,1,800,64,1,0 +2013,6,16,7,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1800,8,0,0 +2013,7,26,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2050,0,0,2205,-4,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1650,-1,0,1810,-4,0,0 +2013,7,15,1,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1455,5,0,1600,-2,0,0 +2013,10,12,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1210,29,1,1220,11,0,0 +2013,6,3,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2117,24,1,2349,32,1,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1050,7,0,1820,-3,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,-2,0,1045,-14,0,0 +2013,6,27,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1510,25,1,1815,5,0,0 +2013,9,10,2,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,620,-10,0,841,-32,0,0 +2013,5,17,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,0,0,1833,-1,0,0 +2013,9,18,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,-1,0,1545,-7,0,0 +2013,6,20,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1306,83,1,2135,62,1,0 +2013,6,12,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-4,0,1837,-9,0,0 +2013,4,22,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-3,0,1520,0,0,0 +2013,10,17,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1655,6,0,1834,21,1,0 +2013,4,23,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,700,3,0,810,-2,0,0 +2013,8,5,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,-2,0,955,-9,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-4,0,1136,-14,0,0 +2013,4,30,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1148,-2,0,1430,0,0,0 +2013,8,26,1,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1459,-9,0,1746,-25,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,5,0,1715,0,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2030,91,1,2135,85,1,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1520,-5,0,1912,-18,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1710,77,1,2025,68,1,0 +2013,8,12,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,1,0,750,-8,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,13,0,2135,-1,0,0 +2013,8,15,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1215,1,0,1335,-1,0,0 +2013,8,30,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-3,0,1140,-2,0,0 +2013,10,6,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2005,-3,0,2130,-21,0,0 +2013,5,26,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1155,1,0,1305,-6,0,0 +2013,6,4,2,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,705,-1,0,720,1,0,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,620,-1,0,710,-5,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1755,6,0,1905,-9,0,0 +2013,9,4,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1450,5,0,1550,5,0,0 +2013,6,9,7,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-6,0,1109,1,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,164,1,2051,169,1,0 +2013,9,22,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1735,-6,0,1906,-8,0,0 +2013,7,12,5,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1353,-5,0,1400,-11,0,0 +2013,10,16,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2115,3,0,2235,-5,0,0 +2013,4,11,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1135,1,0,1920,-9,0,0 +2013,5,3,5,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1610,42,1,1749,36,1,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,3,0,1150,6,0,0 +2013,7,4,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,48,1,1306,36,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2150,95,1,2337,92,1,0 +2013,10,16,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1945,0,0,40,10,0,0 +2013,7,13,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,720,0,0,845,-5,0,0 +2013,4,22,1,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,0,0,1806,-11,0,0 +2013,4,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1500,-2,0,1608,-13,0,0 +2013,5,10,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,840,9,0,0 +2013,4,15,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,16,1,1922,15,1,0 +2013,7,25,4,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1745,-5,0,2036,-9,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,804,-6,0,939,-22,0,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1920,7,0,2302,7,0,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,710,25,1,810,17,1,0 +2013,4,11,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-3,0,604,-16,0,0 +2013,5,13,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,21,1,1951,13,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,1259,1,0,1657,-13,0,0 +2013,5,2,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-1,0,740,-13,0,0 +2013,9,23,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,2011,-4,0,2255,-13,0,0 +2013,10,12,6,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,59,101,1,557,120,1,0 +2013,10,13,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,800,-5,0,1553,-11,0,0 +2013,7,22,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,800,0,0,900,-2,0,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1300,13,0,1610,11,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,18,1,1850,26,1,0 +2013,5,21,2,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1941,-2,0,2309,-14,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-2,0,1745,13,0,0 +2013,7,30,2,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,5,0,1127,-7,0,0 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1907,-4,0,2003,-12,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-3,0,1627,54,1,0 +2013,6,27,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,8,0,845,-11,0,0 +2013,5,18,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1708,-6,0,2113,-7,0,0 +2013,10,18,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-5,0,808,-8,0,0 +2013,4,18,4,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1650,0,,2058,0,1,1 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,-5,0,1038,-14,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,13,0,1830,8,0,0 +2013,9,28,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1535,-1,0,1635,-11,0,0 +2013,8,2,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1225,4,0,1353,-2,0,0 +2013,6,25,2,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,722,-2,0,1021,-10,0,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1534,130,1,1718,120,1,0 +2013,7,18,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,-6,0,813,-16,0,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1945,-2,0,2105,-7,0,0 +2013,6,23,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1947,-8,0,2344,-13,0,0 +2013,9,5,4,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1845,-2,0,2030,-5,0,0 +2013,9,12,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1445,-6,0,1830,8,0,0 +2013,4,6,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-4,0,1508,0,0,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1435,6,0,1600,3,0,0 +2013,10,10,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-7,0,1320,-22,0,0 +2013,8,29,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,709,-7,0,1141,-2,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1440,0,,1625,0,1,1 +2013,4,12,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,815,-1,0,1227,-17,0,0 +2013,6,25,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1900,0,,2025,0,1,1 +2013,5,11,6,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,1,0,2255,6,0,0 +2013,5,16,4,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-5,0,825,-9,0,0 +2013,5,30,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1122,0,0,1234,-2,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2305,-4,0,2359,-13,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,46,1,1310,45,1,0 +2013,4,2,2,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1729,12,0,2044,-8,0,0 +2013,6,10,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,-5,0,1820,-16,0,0 +2013,8,8,4,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,10,0,928,-1,0,0 +2013,5,4,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1857,13,0,0 +2013,7,13,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-4,0,1759,-9,0,0 +2013,6,26,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,1122,-9,0,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,805,12,0,946,17,1,0 +2013,8,12,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,0,0,1515,-5,0,0 +2013,6,17,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1452,27,1,1619,66,1,0 +2013,6,22,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1925,9,0,2035,-1,0,0 +2013,6,19,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-11,0,1100,-10,0,0 +2013,7,24,3,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,922,-3,0,1046,-9,0,0 +2013,10,20,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1720,-1,0,1845,4,0,0 +2013,6,6,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-2,0,1022,-3,0,0 +2013,7,30,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,841,-4,0,1411,-6,0,0 +2013,10,14,1,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1430,22,1,1653,30,1,0 +2013,4,29,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1243,-11,0,1415,-13,0,0 +2013,5,19,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,78,1,2025,104,1,0 +2013,6,13,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,149,1,1856,143,1,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,945,-1,0,1230,-14,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1746,9,0,1955,0,0,0 +2013,9,19,4,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,12,0,1415,2,0,0 +2013,9,18,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1010,24,1,1314,17,1,0 +2013,10,21,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1315,5,0,1510,-4,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,811,7,0,1015,8,0,0 +2013,9,17,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,700,-4,0,930,10,0,0 +2013,7,16,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,705,-3,0,835,8,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1430,1,0,1611,-15,0,0 +2013,10,24,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,7,0,1555,-3,0,0 +2013,10,15,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,-12,0,2053,-6,0,0 +2013,10,10,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1030,-1,0,1150,-10,0,0 +2013,5,13,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,-1,0,2135,-13,0,0 +2013,8,5,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,610,0,0,755,5,0,0 +2013,9,6,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-5,0,1416,-5,0,0 +2013,5,18,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1659,11,0,1945,0,0,0 +2013,8,19,1,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-6,0,1215,-26,0,0 +2013,10,5,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,82,1,1630,100,1,0 +2013,4,15,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,30,1,1941,21,1,0 +2013,4,26,5,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,740,-5,0,1000,23,1,0 +2013,9,15,7,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1455,-2,0,1730,-16,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1315,2,0,1840,1,0,0 +2013,7,6,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,6,0,1610,3,0,0 +2013,9,24,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-8,0,1348,-12,0,0 +2013,9,26,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1246,-2,0,1355,-8,0,0 +2013,7,29,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,1359,-23,0,0 +2013,9,25,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1645,-1,0,1925,-12,0,0 +2013,10,17,4,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-3,0,1930,-7,0,0 +2013,8,10,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1425,4,0,1815,-2,0,0 +2013,7,21,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,157,1,1655,157,1,0 +2013,5,28,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,-1,0,1030,-13,0,0 +2013,4,17,3,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1230,-2,0,1605,-4,0,0 +2013,9,23,1,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,3,0,2020,-1,0,0 +2013,9,15,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1835,-1,0,1935,-8,0,0 +2013,9,14,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1940,7,0,2100,6,0,0 +2013,6,3,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-4,0,1039,-6,0,0 +2013,7,16,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,6,0,1520,7,0,0 +2013,9,2,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1205,1,0,1315,-8,0,0 +2013,9,11,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,-7,0,722,-21,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-5,0,1343,-13,0,0 +2013,10,9,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1645,53,1,1752,39,1,0 +2013,5,2,4,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,0,,1630,0,1,1 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1605,0,0,1750,5,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2115,-5,0,2235,-7,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,3,0,1050,-5,0,0 +2013,7,5,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-3,0,2354,2,0,0 +2013,6,29,6,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-4,0,1022,-6,0,0 +2013,6,22,6,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,810,20,1,950,14,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1050,2,0,1800,-14,0,0 +2013,6,9,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1010,-1,0,1125,-3,0,0 +2013,6,28,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-1,0,900,-6,0,0 +2013,4,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,2007,-5,0,2150,-19,0,0 +2013,4,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1825,-1,0,1945,-11,0,0 +2013,5,10,5,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,730,18,1,1345,25,1,0 +2013,8,27,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,16,1,2040,3,0,0 +2013,8,26,1,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,930,131,1,1810,112,1,0 +2013,5,27,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,121,1,1820,114,1,0 +2013,4,19,5,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1539,-1,0,1644,-7,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,2055,-2,0,2340,-19,0,0 +2013,10,11,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1735,-1,0,1905,-11,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1550,162,1,1905,158,1,0 +2013,8,13,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-7,0,1538,-13,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-6,0,1615,-18,0,0 +2013,7,22,1,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,25,1,1940,40,1,0 +2013,8,21,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,14,0,1650,-5,0,0 +2013,9,3,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1010,-2,0,1244,-7,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1605,8,0,1742,32,1,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1435,120,1,1640,136,1,0 +2013,9,22,7,YV,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1210,-6,0,1330,-14,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2035,1,0,2245,-11,0,0 +2013,8,29,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,4,0,1920,15,1,0 +2013,9,17,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1150,-3,0,1500,-4,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,3,0,1610,50,1,0 +2013,6,19,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-2,0,1225,-10,0,0 +2013,5,27,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,925,15,1,1235,13,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,955,-4,0,1305,-11,0,0 +2013,6,29,6,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1140,-8,0,1311,-1,0,0 +2013,4,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1254,-1,0,1611,11,0,0 +2013,5,13,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,0,,1559,0,1,1 +2013,6,14,5,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1547,10,0,1704,15,1,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,2,0,1350,-2,0,0 +2013,7,19,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-3,0,1341,-7,0,0 +2013,6,24,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,800,-8,0,1040,-4,0,0 +2013,6,16,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1226,-3,0,1317,2,0,0 +2013,5,21,2,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1415,-4,0,1718,0,0,0 +2013,5,14,2,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,815,0,0,1320,-7,0,0 +2013,10,23,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1955,21,1,2125,13,0,0 +2013,7,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,805,-6,0,923,-10,0,0 +2013,5,28,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1651,-4,0,2015,-5,0,0 +2013,5,1,3,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,22,1,1735,-4,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,55,1,2030,51,1,0 +2013,7,1,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1059,-13,0,1433,3,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,730,-1,0,834,0,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1905,-1,0,2113,-24,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,49,1,1631,28,1,0 +2013,5,4,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1425,39,1,1545,42,1,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1103,1,0,1450,-1,0,0 +2013,6,28,5,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2210,0,,2300,0,1,1 +2013,9,26,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1717,5,0,1958,-6,0,0 +2013,9,16,1,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2225,-11,0,700,-20,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1945,188,1,1955,182,1,0 +2013,10,11,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1049,-5,0,1622,-4,0,0 +2013,7,12,5,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1105,-8,0,1505,16,1,0 +2013,4,19,5,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1535,-4,0,1755,-15,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,-7,0,1115,-21,0,0 +2013,7,15,1,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-3,0,1459,-10,0,0 +2013,10,27,7,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1459,22,1,1645,15,1,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,65,1,2309,51,1,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1315,-3,0,1508,-9,0,0 +2013,4,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1541,6,0,1921,9,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,2013,-3,0,2140,-2,0,0 +2013,4,8,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2105,-5,0,2240,-17,0,0 +2013,9,26,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-6,0,2031,-10,0,0 +2013,9,27,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,700,-7,0,818,-12,0,0 +2013,9,14,6,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-10,0,1602,-20,0,0 +2013,7,22,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1053,82,1,1210,108,1,0 +2013,6,26,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-6,0,533,2,0,0 +2013,7,16,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2257,-13,0,704,-35,0,0 +2013,6,2,7,9E,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,847,-7,0,1037,-17,0,0 +2013,6,3,1,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1920,13,0,2025,13,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,38,1,2327,40,1,0 +2013,7,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1500,-4,0,1655,-8,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1640,-4,0,1920,-6,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1810,40,1,2305,35,1,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,1117,-2,0,0 +2013,4,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1455,-2,0,1704,-9,0,0 +2013,4,9,2,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1326,-3,0,1413,1,0,0 +2013,5,6,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1454,-5,0,0 +2013,9,14,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-4,0,1006,-13,0,0 +2013,4,29,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,612,-3,0,644,-2,0,0 +2013,6,5,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,15,1,1540,0,0,0 +2013,4,4,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-6,0,1022,6,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1015,-4,0,1126,-10,0,0 +2013,7,17,3,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1115,-8,0,1330,-4,0,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1135,25,1,1430,13,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1330,6,0,1550,6,0,0 +2013,4,25,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,52,1,1825,43,1,0 +2013,5,2,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-12,0,705,-38,0,0 +2013,8,21,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-6,0,1100,-9,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2120,4,0,2310,2,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1529,12,0,1719,1,0,0 +2013,5,6,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1135,0,0,1315,-8,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,815,-3,0,1141,-17,0,0 +2013,5,21,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1242,-1,0,1939,29,1,0 +2013,10,31,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1020,35,1,1342,29,1,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1733,-2,0,1916,-17,0,0 +2013,9,8,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-4,0,2132,-2,0,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1735,45,1,2325,22,1,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1700,-3,0,1915,-9,0,0 +2013,4,13,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1545,-6,0,1904,-23,0,0 +2013,10,21,1,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2158,4,0,2255,-11,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1021,-4,0,1249,4,0,0 +2013,10,4,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,63,1,1620,50,1,0 +2013,6,3,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-3,0,2205,-26,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-6,0,1452,-10,0,0 +2013,10,26,6,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,5,0,810,21,1,0 +2013,9,8,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-3,0,1633,6,0,0 +2013,9,22,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1030,-4,0,1120,-14,0,0 +2013,8,31,6,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,700,-10,0,1039,-16,0,0 +2013,7,11,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,725,-10,0,1020,-17,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,0,0,1410,18,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1056,-2,0,1226,-16,0,0 +2013,10,15,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1525,12,0,1645,4,0,0 +2013,10,25,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,-8,0,1545,1,0,0 +2013,8,25,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1817,44,1,2104,38,1,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,-5,0,1948,-30,0,0 +2013,9,20,5,EV,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1910,5,0,2054,0,0,0 +2013,6,27,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-7,0,2034,0,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1320,0,0,1625,-1,0,0 +2013,9,24,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1435,-6,0,1645,-3,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,600,-2,0,710,-4,0,0 +2013,4,13,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-2,0,830,-15,0,0 +2013,10,18,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1645,4,0,1855,-1,0,0 +2013,8,6,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1109,-8,0,1228,-11,0,0 +2013,4,15,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-3,0,1019,1,0,0 +2013,8,7,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1715,46,1,2305,33,1,0 +2013,10,15,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,715,23,1,903,10,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-2,0,1306,-17,0,0 +2013,9,1,7,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,2,0,1840,-12,0,0 +2013,6,29,6,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-13,0,1857,9,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,7,0,1250,6,0,0 +2013,5,20,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1910,0,0,2126,16,1,0 +2013,4,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1410,4,0,0 +2013,8,7,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-6,0,711,-12,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,700,-5,0,826,-20,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1355,25,1,1659,7,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,850,2,0,1415,-17,0,0 +2013,4,8,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,755,-7,0,1007,-24,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1731,-1,0,2353,-25,0,0 +2013,10,20,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-9,0,150,-6,0,0 +2013,6,18,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1108,-10,0,1213,-11,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,6,0,1445,17,1,0 +2013,7,2,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,4,0,2145,1,0,0 +2013,5,17,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1955,-2,0,2110,23,1,0 +2013,5,5,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1928,-4,0,2216,-13,0,0 +2013,8,27,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1650,-2,0,1743,-9,0,0 +2013,6,16,7,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1640,-10,0,2024,-14,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2040,-2,0,2315,3,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1315,2,0,1625,-2,0,0 +2013,8,2,5,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,555,125,1,830,106,1,0 +2013,5,22,3,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1127,5,0,1341,-6,0,0 +2013,6,8,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1055,-2,0,1220,-20,0,0 +2013,10,29,2,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,610,-12,0,826,-15,0,0 +2013,6,26,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-3,0,1040,-12,0,0 +2013,7,5,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1013,16,1,1304,5,0,0 +2013,9,23,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-4,0,1302,-3,0,0 +2013,10,31,4,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,824,-3,0,1038,-4,0,0 +2013,6,18,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1811,114,1,2002,124,1,0 +2013,5,27,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1302,-1,0,1627,-34,0,0 +2013,5,25,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-10,0,1340,-17,0,0 +2013,4,5,5,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1715,20,1,1900,10,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1556,-4,0,1925,-16,0,0 +2013,4,24,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1510,20,1,2345,4,0,0 +2013,6,4,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,905,-3,0,1201,-24,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,755,-6,0,1053,-4,0,0 +2013,5,25,6,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1330,2,0,1452,-4,0,0 +2013,7,8,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1953,107,1,2130,79,1,0 +2013,9,26,4,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,-2,0,1920,-4,0,0 +2013,4,15,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,1,0,750,-1,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1215,-8,0,1919,-6,0,0 +2013,8,22,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,100,1,1947,83,1,0 +2013,9,5,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1055,10,0,1205,15,1,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1240,3,0,1455,11,0,0 +2013,7,17,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-7,0,2300,-9,0,0 +2013,6,19,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,815,-5,0,935,-10,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,600,-1,0,1110,0,0,0 +2013,8,8,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,5,0,2110,-13,0,0 +2013,6,20,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1102,-5,0,1300,-6,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1450,12,0,1610,11,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1335,16,1,1520,16,1,0 +2013,6,7,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,949,-12,0,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,-1,0,1724,5,0,0 +2013,4,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-5,0,922,-12,0,0 +2013,4,3,3,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1105,-7,0,1229,-13,0,0 +2013,4,9,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1155,-9,0,1233,-7,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-1,0,1105,-10,0,0 +2013,9,12,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1245,3,0,1525,-3,0,0 +2013,5,21,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,-3,0,1300,-7,0,0 +2013,6,16,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-1,0,1519,-13,0,0 +2013,8,18,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,3,0,1810,-1,0,0 +2013,9,3,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,635,-4,0,745,-25,0,0 +2013,9,23,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-6,0,1915,-23,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1200,2,0,1643,-21,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-7,0,956,-18,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,57,1,1605,55,1,0 +2013,5,16,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1504,0,0,1627,3,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-4,0,2332,-3,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1030,38,1,1420,26,1,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1430,-4,0,1520,8,0,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1510,-8,0,1648,-5,0,0 +2013,4,23,2,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1447,15,1,1756,21,1,0 +2013,9,2,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1130,10,0,1245,25,1,0 +2013,6,10,1,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1850,56,1,2045,44,1,0 +2013,7,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1005,1,0,1245,-9,0,0 +2013,7,5,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1650,-3,0,1918,5,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2045,-5,0,2232,-19,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1257,5,0,1703,-3,0,0 +2013,10,29,2,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,-2,0,1116,9,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2005,-7,0,2229,20,1,0 +2013,5,21,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1225,156,1,1600,166,1,0 +2013,5,20,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1545,82,1,1705,84,1,0 +2013,10,29,2,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1209,-5,0,1346,-14,0,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1840,-2,0,2017,-17,0,0 +2013,10,26,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,9,0,1155,0,0,0 +2013,8,1,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-6,0,1442,-6,0,0 +2013,4,9,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,-10,0,1135,-2,0,0 +2013,4,21,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1254,-9,0,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1320,3,0,1425,-3,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,2,0,1420,-10,0,0 +2013,10,7,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1214,-2,0,1327,-5,0,0 +2013,9,13,5,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1455,15,1,1720,10,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,2,0,1131,-14,0,0 +2013,7,30,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-8,0,955,-26,0,0 +2013,6,1,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,800,-1,0,930,-12,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,800,-3,0,1035,-4,0,0 +2013,10,15,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,715,-8,0,847,-2,0,0 +2013,7,27,6,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1805,56,1,2030,49,1,0 +2013,5,22,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,2145,-6,0,144,-11,0,0 +2013,10,7,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1452,4,0,1757,71,1,0 +2013,4,3,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1643,20,1,1908,-3,0,0 +2013,6,29,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2220,3,0,605,13,0,0 +2013,7,24,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-2,0,1545,-5,0,0 +2013,6,1,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1505,-2,0,0 +2013,5,15,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1440,0,0,1628,21,1,0 +2013,5,29,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,2,0,2210,-3,0,0 +2013,7,1,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,803,-2,0,950,-24,0,0 +2013,5,15,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1710,3,0,1820,65,1,0 +2013,7,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,3,0,1800,12,0,0 +2013,7,16,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-5,0,739,-4,0,0 +2013,7,2,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,14,0,1838,7,0,0 +2013,6,18,2,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,44,1,925,33,1,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-10,0,925,-15,0,0 +2013,10,4,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,900,23,1,1230,30,1,0 +2013,4,18,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1435,3,0,1525,-2,0,0 +2013,7,10,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2135,90,1,7,89,1,0 +2013,10,23,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,926,64,1,1140,78,1,0 +2013,6,13,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1830,40,1,1925,32,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,79,1,1429,76,1,0 +2013,7,26,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-10,0,2010,9,0,0 +2013,5,24,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1602,3,0,1920,16,1,0 +2013,10,12,6,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1235,-1,0,1550,0,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,928,0,0,1309,2,0,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1800,32,1,2101,41,1,0 +2013,6,11,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1531,18,1,1708,-5,0,0 +2013,4,22,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,625,2,0,810,1,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,844,1,0,1646,3,0,0 +2013,4,30,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,-7,0,2303,-10,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,4,0,938,-3,0,0 +2013,8,3,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1445,18,1,1846,41,1,0 +2013,4,9,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,830,1,0,930,-6,0,0 +2013,8,3,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-7,0,1427,-15,0,0 +2013,10,1,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,730,-5,0,1041,-36,0,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1639,0,0,2030,2,0,0 +2013,10,18,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1040,-2,0,1615,-12,0,0 +2013,9,15,7,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1030,-36,0,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-2,0,2159,3,0,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1615,4,0,44,-12,0,0 +2013,4,14,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1905,10,0,2020,8,0,0 +2013,10,24,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1227,-6,0,1836,-10,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,5,0,2020,-6,0,0 +2013,8,23,5,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1845,-3,0,2014,-29,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,-2,0,1815,-23,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,54,1,2000,44,1,0 +2013,10,19,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1415,28,1,1550,22,1,0 +2013,4,28,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1630,15,1,1747,28,1,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-3,0,1055,-24,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,647,8,0,924,15,1,0 +2013,6,4,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,8,0,2201,-13,0,0 +2013,4,17,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-1,0,925,-19,0,0 +2013,4,7,7,OO,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,730,-4,0,1132,-2,0,0 +2013,4,7,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,85,1,1550,73,1,0 +2013,6,20,4,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-6,0,1339,-11,0,0 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1940,0,0,2305,5,0,0 +2013,6,17,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,16,1,1655,4,0,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1700,23,1,1930,-4,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,600,0,0,820,7,0,0 +2013,10,6,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,-3,0,1335,-11,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,600,-3,0,703,-13,0,0 +2013,5,1,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,940,15,1,1026,6,0,0 +2013,5,7,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,600,0,0,725,6,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,36,1,1950,17,1,0 +2013,10,9,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,959,-2,0,1132,-10,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,0,0,1555,-2,0,0 +2013,9,6,5,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,710,-1,0,840,-10,0,0 +2013,10,10,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1605,-6,0,1810,-6,0,0 +2013,9,17,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-5,0,1340,-21,0,0 +2013,5,28,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,0,0,1810,-2,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,625,3,0,931,57,1,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,77,1,5,62,1,0 +2013,5,21,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-7,0,655,-10,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-1,0,1810,4,0,0 +2013,4,10,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1640,-4,0,1730,-16,0,0 +2013,8,19,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,7,0,1031,-5,0,0 +2013,8,27,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,841,174,1,936,177,1,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,855,5,0,1635,7,0,0 +2013,7,6,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1230,-2,0,1345,-16,0,0 +2013,8,12,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,737,-4,0,927,0,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,51,1,2250,172,1,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-6,0,1621,4,0,0 +2013,10,10,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-4,0,1625,-2,0,0 +2013,4,27,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,825,-6,0,1050,-16,0,0 +2013,9,11,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1430,-1,0,1840,3,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,755,1,0,910,8,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1510,-4,0,1610,-2,0,0 +2013,7,22,1,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-5,0,2245,-13,0,0 +2013,8,19,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1355,3,0,1955,-9,0,0 +2013,5,11,6,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1935,10,0,2100,21,1,0 +2013,7,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,0,0,1155,-8,0,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,27,1,22,4,0,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,8,0,1409,-9,0,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1121,-4,0,1240,-23,0,0 +2013,8,4,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,5,0,2214,-1,0,0 +2013,9,13,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1700,-3,0,1950,-21,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,22,1,2105,26,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,-7,0,2016,-11,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,740,-8,0,1101,-5,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-2,0,926,8,0,0 +2013,9,22,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2055,91,1,2227,86,1,0 +2013,4,3,3,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,840,82,1,1055,49,1,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1730,-6,0,1858,10,0,0 +2013,5,24,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2013,1,0,2030,-7,0,0 +2013,5,2,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,-2,0,2210,-11,0,0 +2013,4,19,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1945,-1,0,2009,0,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2105,4,0,2215,-9,0,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1705,6,0,1850,1,0,0 +2013,10,25,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,0,0,1436,6,0,0 +2013,9,8,7,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,-5,0,2000,-26,0,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,-4,0,2132,23,1,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1825,1,0,1945,-6,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1935,-2,0,2047,-6,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1145,9,0,1340,3,0,0 +2013,7,23,2,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1723,3,0,2018,-13,0,0 +2013,4,3,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1300,-4,0,1503,-17,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2125,16,1,2359,2,0,0 +2013,4,24,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1950,236,1,2150,223,1,0 +2013,7,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1506,-4,0,1553,-18,0,0 +2013,6,12,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,850,-5,0,1018,-13,0,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,2,0,1155,-1,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,905,1,0,1030,2,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-10,0,2312,-24,0,0 +2013,8,14,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,8,0,619,-11,0,0 +2013,8,8,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,805,-1,0,910,-4,0,0 +2013,5,6,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1723,-7,0,1943,-45,0,0 +2013,4,18,4,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,850,1,0,1120,-1,0,0 +2013,8,21,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-6,0,1055,-18,0,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-5,0,2050,5,0,0 +2013,5,13,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,3,0,1916,10,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1645,6,0,2207,18,1,0 +2013,7,23,2,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,27,1,2044,31,1,0 +2013,7,11,4,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,121,1,2051,126,1,0 +2013,6,2,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,68,1,2140,58,1,0 +2013,9,27,5,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-3,0,2052,-5,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,2055,36,1,20,37,1,0 +2013,8,9,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1345,85,1,1520,71,1,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-2,0,1840,-24,0,0 +2013,10,14,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1443,9,0,1811,15,1,0 +2013,9,6,5,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,750,-4,0,957,-19,0,0 +2013,8,16,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,750,21,1,1130,-13,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,18,1,1905,-5,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,0,0,1120,-24,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,10,0,1635,23,1,0 +2013,9,12,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,805,-5,0,1412,-22,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,0,0,1520,-12,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1220,11,0,1325,10,0,0 +2013,8,23,5,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,714,-12,0,1046,-13,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2035,3,0,2155,0,0,0 +2013,7,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1605,4,0,1756,21,1,0 +2013,7,20,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,3,0,1225,-3,0,0 +2013,7,15,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1503,-7,0,1617,-31,0,0 +2013,8,30,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-8,0,1430,-6,0,0 +2013,6,4,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1020,-4,0,1150,3,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2100,-1,0,2215,-11,0,0 +2013,7,6,6,DL,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2213,80,1,618,74,1,0 +2013,8,27,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,747,-5,0,828,-7,0,0 +2013,8,4,7,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,0,0,604,-9,0,0 +2013,7,23,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,2025,0,0,2125,-7,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1804,-1,0,1956,-24,0,0 +2013,10,19,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1350,17,1,1510,9,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,2,0,1035,4,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,34,1,1750,86,1,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1145,12,0,1735,7,0,0 +2013,9,15,7,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1355,18,1,1511,29,1,0 +2013,9,14,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1123,-6,0,1513,1,0,0 +2013,7,26,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1445,28,1,1450,27,1,0 +2013,7,1,1,EV,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1409,180,1,1910,186,1,0 +2013,9,13,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,815,14,0,945,68,1,0 +2013,5,28,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,952,3,0,1230,-7,0,0 +2013,7,15,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,31,1,2214,36,1,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1240,-4,0,1515,-42,0,0 +2013,5,23,4,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,-1,0,2159,52,1,0 +2013,9,7,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,64,1,1801,65,1,0 +2013,8,25,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1026,-8,0,1316,-6,0,0 +2013,10,15,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1617,-3,0,1755,-9,0,0 +2013,8,17,6,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1115,0,0,1240,-2,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1550,10,0,1655,9,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1145,92,1,1240,104,1,0 +2013,5,9,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,705,284,1,903,291,1,0 +2013,8,15,4,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,44,1,1625,26,1,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1005,-4,0,1438,-18,0,0 +2013,7,15,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1624,8,0,1819,0,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1551,-4,0,1724,-7,0,0 +2013,9,3,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,715,-3,0,901,2,0,0 +2013,6,8,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,900,6,0,1020,11,0,0 +2013,10,20,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1158,-6,0,1340,-7,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,835,0,0,1105,-16,0,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-2,0,720,14,0,0 +2013,6,14,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-7,0,853,-16,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,-1,0,904,-13,0,0 +2013,10,17,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,730,-1,0,845,11,0,0 +2013,5,3,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,552,59,1,636,63,1,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2000,20,1,2100,9,0,0 +2013,9,15,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,9,0,940,-8,0,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1606,49,1,1909,41,1,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1752,-7,0,2047,3,0,0 +2013,10,25,5,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1119,-7,0,1213,-10,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,0,0,1324,-15,0,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,840,1,0,1050,43,1,0 +2013,10,28,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,705,0,,841,0,1,1 +2013,5,22,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-8,0,847,5,0,0 +2013,9,2,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-5,0,2101,-7,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2035,1,0,2145,-15,0,0 +2013,10,18,5,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,15,1,1026,20,1,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,10,0,1608,17,1,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1703,31,1,1845,19,1,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,28,1,1535,23,1,0 +2013,8,30,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,720,2,0,955,-2,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1505,-2,0,1829,-15,0,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1821,2,0,2134,-12,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,-7,0,2110,-15,0,0 +2013,10,29,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,-1,0,20,9,0,0 +2013,6,24,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,25,1,1909,23,1,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1416,-3,0,2259,-33,0,0 +2013,7,7,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1038,7,0,1144,2,0,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1915,-4,0,2147,13,0,0 +2013,9,3,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-7,0,2058,-11,0,0 +2013,10,4,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1540,5,0,1635,0,0,0 +2013,7,6,6,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1410,-3,0,1631,4,0,0 +2013,9,8,7,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,11,0,2105,2,0,0 +2013,6,26,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,34,1,2209,25,1,0 +2013,10,15,2,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,2017,-13,0,2115,-21,0,0 +2013,7,25,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,745,16,1,1610,7,0,0 +2013,7,19,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-4,0,1122,-7,0,0 +2013,8,19,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-9,0,1838,-16,0,0 +2013,5,6,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,-5,0,1805,15,1,0 +2013,4,17,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1935,-1,0,2035,-3,0,0 +2013,10,17,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1220,2,0,1310,0,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1250,-1,0,1355,-4,0,0 +2013,9,6,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1332,-12,0,1415,-24,0,0 +2013,8,4,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1340,-7,0,1405,-10,0,0 +2013,8,15,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-4,0,1110,6,0,0 +2013,8,9,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,923,-2,0,1045,12,0,0 +2013,5,20,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1940,10,0,2030,-4,0,0 +2013,6,30,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1119,-6,0,0 +2013,8,13,2,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,0,,1923,0,1,1 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1500,13,0,2257,11,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1540,3,0,1630,0,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,0,0,1339,-16,0,0 +2013,10,3,4,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1614,18,1,1909,0,0,0 +2013,8,6,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1420,-1,0,1545,-9,0,0 +2013,8,11,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1435,-9,0,1603,-27,0,0 +2013,7,16,2,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,51,1,1623,45,1,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1959,-1,0,2157,-21,0,0 +2013,10,20,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-5,0,845,-10,0,0 +2013,10,16,3,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-6,0,1218,4,0,0 +2013,9,3,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-2,0,1227,-15,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,-1,0,1623,-7,0,0 +2013,9,2,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1309,76,1,1522,74,1,0 +2013,6,14,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,-3,0,2128,-13,0,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2030,-6,0,2225,-2,0,0 +2013,7,30,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,11,0,1839,-14,0,0 +2013,6,9,7,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1940,-4,0,2130,20,1,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1450,2,0,1610,-2,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1004,7,0,1320,38,1,0 +2013,6,25,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,925,0,0,1035,3,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,925,0,0,1425,-6,0,0 +2013,6,13,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1325,-1,0,1345,-6,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1205,-1,0,1310,-12,0,0 +2013,6,20,4,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,2,0,1521,-12,0,0 +2013,10,29,2,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1902,-13,0,2011,16,1,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2100,29,1,15,42,1,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1455,29,1,1624,35,1,0 +2013,5,17,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,837,-5,0,857,-8,0,0 +2013,8,29,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1000,-5,0,1205,-24,0,0 +2013,5,23,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1759,20,1,2129,33,1,0 +2013,4,18,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1417,23,1,1615,41,1,0 +2013,10,15,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-16,0,1628,-20,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2100,25,1,2200,22,1,0 +2013,5,2,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-2,0,808,-7,0,0 +2013,4,4,4,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-3,0,916,-26,0,0 +2013,5,16,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1620,-6,0,1842,-15,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,16,1,30,11,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1645,0,0,1850,-22,0,0 +2013,8,16,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,811,-3,0,928,-4,0,0 +2013,6,9,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,836,-3,0,901,-13,0,0 +2013,10,28,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1704,-12,0,1804,-18,0,0 +2013,4,16,2,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-7,0,715,-17,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,-3,0,1915,-18,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1555,-1,0,1812,-20,0,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,658,-2,0,915,-12,0,0 +2013,7,13,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,910,-9,0,1505,-12,0,0 +2013,7,26,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,10,0,1947,17,1,0 +2013,6,18,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1215,17,1,1330,10,0,0 +2013,8,21,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1600,5,0,1825,2,0,0 +2013,4,28,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,800,26,1,900,9,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,630,-1,0,725,-5,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,114,1,1605,98,1,0 +2013,4,1,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,759,-9,0,1405,-32,0,0 +2013,5,31,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-10,0,807,-10,0,0 +2013,5,1,3,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1835,1,0,2120,-12,0,0 +2013,5,15,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1744,-8,0,1835,-2,0,0 +2013,10,28,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-4,0,1950,-2,0,0 +2013,8,15,4,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1436,-6,0,1645,-7,0,0 +2013,5,2,4,UA,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,2120,-15,0,2245,-33,0,0 +2013,5,2,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,19,1,1610,6,0,0 +2013,6,20,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,825,-1,0,1230,2,0,0 +2013,6,3,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-6,0,2241,-7,0,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,-1,0,1825,-5,0,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,44,1,1100,44,1,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1000,-6,0,1150,-16,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1605,20,1,1815,20,1,0 +2013,7,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,-3,0,2210,0,0,0 +2013,7,2,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,0,0,809,8,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1450,-5,0,1635,-17,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1853,4,0,2018,-4,0,0 +2013,4,13,6,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,853,-4,0,1120,-9,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,73,1,2200,43,1,0 +2013,10,23,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,800,-2,0,925,-3,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1405,62,1,1459,63,1,0 +2013,6,1,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,-2,0,1905,-5,0,0 +2013,9,24,2,AA,10529,Bradley International,Hartford,CT,12892,Los Angeles International,Los Angeles,CA,920,-1,0,1235,-25,0,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,905,97,1,1734,90,1,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1447,-5,0,1639,-5,0,0 +2013,6,18,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,18,1,1219,11,0,0 +2013,10,13,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,915,-6,0,1045,-2,0,0 +2013,9,16,1,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1740,1,0,2010,-1,0,0 +2013,7,20,6,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-7,0,707,-16,0,0 +2013,7,21,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1349,-6,0,1519,-25,0,0 +2013,10,22,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1211,-6,0,1454,-23,0,0 +2013,7,22,1,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1505,26,1,1650,26,1,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1935,3,0,2047,-10,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,739,-5,0,1017,0,0,0 +2013,10,7,1,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,0,0,1132,3,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1246,4,0,1556,-9,0,0 +2013,5,8,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-1,0,1230,14,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2015,1,0,2105,-6,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,-1,0,1655,-9,0,0 +2013,6,25,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,812,-1,0,1118,-4,0,0 +2013,10,2,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1430,-5,0,1715,-17,0,0 +2013,8,12,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,941,-4,0,1129,1,0,0 +2013,4,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,823,-3,0,1105,6,0,0 +2013,10,21,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1800,-5,0,2005,-7,0,0 +2013,8,6,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,2,0,1755,-2,0,0 +2013,6,5,3,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1630,-2,0,1921,9,0,0 +2013,4,13,6,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1410,-5,0,1740,-9,0,0 +2013,10,6,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,840,0,0,950,-7,0,0 +2013,5,13,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1829,-10,0,0 +2013,9,15,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,824,-7,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1330,42,1,1525,28,1,0 +2013,9,29,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1115,-5,0,1240,-20,0,0 +2013,8,13,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1149,-4,0,1700,-11,0,0 +2013,5,22,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1812,1,0,2000,-8,0,0 +2013,9,7,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1200,5,0,1305,6,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1215,7,0,1430,54,1,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1010,-4,0,1132,-16,0,0 +2013,7,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1935,4,0,2145,3,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,705,-5,0,830,-11,0,0 +2013,10,12,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,7,0,1655,1,0,0 +2013,6,12,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1647,8,0,1829,9,0,0 +2013,7,13,6,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,-2,0,1445,18,1,0 +2013,9,15,7,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2100,32,1,2357,17,1,0 +2013,6,9,7,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1542,-4,0,1803,-6,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1320,-1,0,1620,17,1,0 +2013,5,20,1,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,625,2,0,925,-31,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-2,0,1030,-17,0,0 +2013,9,18,3,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1440,-6,0,1655,-3,0,0 +2013,8,7,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-5,0,835,0,0,0 +2013,6,30,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1015,-1,0,1155,-4,0,0 +2013,8,20,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1305,-16,0,1414,-9,0,0 +2013,5,4,6,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,7,0,1720,3,0,0 +2013,5,24,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,600,-3,0,716,-16,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1520,69,1,1754,174,1,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1345,13,0,1510,13,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,953,-4,0,1209,-16,0,0 +2013,5,1,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1925,-2,0,2055,-12,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2257,-10,0,720,-44,0,0 +2013,9,13,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,0,0,1305,-4,0,0 +2013,8,27,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,23,1,1747,11,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,846,-1,0,1125,-6,0,0 +2013,10,6,7,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,6,0,2127,55,1,0 +2013,8,20,2,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,915,-4,0,935,-10,0,0 +2013,9,18,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,-4,0,1830,-14,0,0 +2013,6,19,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-4,0,1843,-17,0,0 +2013,4,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-6,0,2307,-25,0,0 +2013,10,11,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,905,3,0,1055,-10,0,0 +2013,7,11,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,1,0,745,-6,0,0 +2013,10,24,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,1,0,1839,-1,0,0 +2013,5,29,3,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,938,-13,0,1204,-21,0,0 +2013,6,10,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1515,25,1,1640,23,1,0 +2013,8,4,7,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,6,0,2055,-3,0,0 +2013,5,5,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1250,-2,0,1355,-4,0,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,723,-4,0,805,-10,0,0 +2013,4,17,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1922,17,1,2230,9,0,0 +2013,6,21,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,3,0,1100,-2,0,0 +2013,9,19,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-14,0,930,-4,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1420,-2,0,1545,-3,0,0 +2013,4,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,835,-2,0,940,-11,0,0 +2013,6,18,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,18,1,1858,34,1,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,855,-3,0,1015,-8,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,0,0,2059,-10,0,0 +2013,6,17,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1525,-5,0,1645,-11,0,0 +2013,9,22,7,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1910,17,1,2045,16,1,0 +2013,4,26,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1455,-2,0,1555,-15,0,0 +2013,10,13,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,610,-16,0,655,-29,0,0 +2013,7,2,2,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1120,-10,0,1418,-17,0,0 +2013,4,9,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1110,0,0,1400,8,0,0 +2013,5,23,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,910,-8,0,1110,27,1,0 +2013,10,6,7,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1030,20,1,1243,14,0,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2200,3,0,620,-18,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,820,0,0,935,-11,0,0 +2013,9,5,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2135,4,0,530,12,0,0 +2013,4,17,3,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1800,0,0,2032,5,0,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1955,73,1,2326,63,1,0 +2013,6,24,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-3,0,1356,-16,0,0 +2013,10,31,4,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1340,405,1,1655,423,1,0 +2013,4,25,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1318,0,0,1420,-7,0,0 +2013,4,18,4,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1405,0,,1419,0,1,1 +2013,8,29,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1835,-3,0,2102,-15,0,0 +2013,6,5,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-6,0,1500,-17,0,0 +2013,8,11,7,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1605,62,1,1700,60,1,0 +2013,9,19,4,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,2,0,735,-5,0,0 +2013,6,13,4,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1449,116,1,1636,104,1,0 +2013,10,2,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-7,0,1550,-6,0,0 +2013,4,19,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-1,0,1120,-14,0,0 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,4,0,1030,7,0,0 +2013,10,29,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-1,0,710,10,0,0 +2013,7,3,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1005,-6,0,1152,-18,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,604,4,0,728,-12,0,0 +2013,4,1,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-4,0,1240,-29,0,0 +2013,7,28,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1825,179,1,4,151,1,0 +2013,9,29,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1529,-4,0,1815,3,0,0 +2013,7,29,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1219,-1,0,1320,-9,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,40,1,2030,28,1,0 +2013,9,2,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1803,12,0,1852,16,1,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1551,-4,0,1704,-32,0,0 +2013,9,8,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-7,0,1410,2,0,0 +2013,8,30,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-3,0,1350,-22,0,0 +2013,7,16,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,77,1,1555,94,1,0 +2013,8,31,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,-5,0,1646,-6,0,0 +2013,10,11,5,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,955,-4,0,1240,-4,0,0 +2013,5,1,3,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2045,14,0,2318,24,1,0 +2013,10,17,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-3,0,1825,-22,0,0 +2013,8,22,4,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1715,1,0,1854,7,0,0 +2013,8,2,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-7,0,1326,11,0,0 +2013,10,25,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1048,-2,0,1829,-13,0,0 +2013,4,30,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1730,1,0,1910,-11,0,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,0,0,1807,-8,0,0 +2013,7,9,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,4,0,620,-4,0,0 +2013,8,22,4,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,720,0,0,845,-24,0,0 +2013,8,22,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1814,-9,0,2014,-1,0,0 +2013,6,30,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1955,0,0,2110,-10,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,49,1,2330,34,1,0 +2013,7,24,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,0,0,802,-5,0,0 +2013,7,17,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2202,10,0,2359,0,0,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,1,0,1620,-24,0,0 +2013,9,21,6,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1251,-1,0,1644,29,1,0 +2013,4,6,6,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-3,0,1303,-1,0,0 +2013,9,1,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-16,0,1940,-21,0,0 +2013,8,4,7,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,-2,0,1905,2,0,0 +2013,7,23,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,935,-4,0,1100,-9,0,0 +2013,8,24,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,20,1,2015,4,0,0 +2013,10,14,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1015,14,0,1225,22,1,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2130,-7,0,2311,-12,0,0 +2013,10,10,4,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1400,56,1,1700,70,1,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,943,-1,0,1254,-28,0,0 +2013,8,6,2,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,1,0,1543,1,0,0 +2013,10,23,3,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1611,-11,0,1900,-22,0,0 +2013,8,10,6,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1445,-9,0,1650,-27,0,0 +2013,4,24,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1600,29,1,1725,22,1,0 +2013,7,6,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1006,-10,0,0 +2013,7,23,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-4,0,855,-13,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1350,0,0,1500,-1,0,0 +2013,7,17,3,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,835,-5,0,952,-2,0,0 +2013,6,29,6,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2010,16,1,2200,2,0,0 +2013,9,29,7,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,4,0,1028,18,1,0 +2013,9,16,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,955,0,0,1105,0,0,0 +2013,5,23,4,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-13,0,812,-14,0,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,845,-2,0,1050,-18,0,0 +2013,10,8,2,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,-2,0,1605,-14,0,0 +2013,5,1,3,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1825,72,1,2145,45,1,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1020,10,0,1730,0,0,0 +2013,4,15,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1825,-4,0,2050,-16,0,0 +2013,6,22,6,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1120,24,1,1250,-8,0,0 +2013,10,13,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,17,1,1953,-7,0,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1006,-2,0,1241,-10,0,0 +2013,6,24,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2054,126,1,2314,98,1,0 +2013,9,11,3,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1743,65,1,2102,79,1,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2115,1,0,2254,-20,0,0 +2013,9,6,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,720,-3,0,1143,6,0,0 +2013,10,16,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1349,7,0,1628,20,1,0 +2013,7,8,1,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1511,0,0,1852,-12,0,0 +2013,9,22,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1920,26,1,2045,-2,0,0 +2013,10,9,3,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-8,0,2037,16,1,0 +2013,6,24,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,1205,-20,0,0 +2013,8,13,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,-4,0,745,-2,0,0 +2013,4,12,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2140,5,0,2255,-8,0,0 +2013,8,1,4,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1255,77,1,1600,143,1,0 +2013,9,17,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1900,-5,0,2010,-10,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,61,1,1354,59,1,0 +2013,7,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1602,36,1,1918,22,1,0 +2013,8,14,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1120,0,0,1355,-4,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1741,3,0,1825,4,0,0 +2013,6,19,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,-3,0,642,-1,0,0 +2013,5,5,7,F9,14635,Southwest Florida International,Fort Myers,FL,11292,Denver International,Denver,CO,839,1,0,1040,8,0,0 +2013,5,13,1,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1250,0,0,2114,4,0,0 +2013,6,4,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1550,-6,0,1748,-13,0,0 +2013,7,5,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-6,0,1006,1,0,0 +2013,5,31,5,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,720,5,0,1035,3,0,0 +2013,9,2,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1830,111,1,1936,109,1,0 +2013,4,21,7,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,710,2,0,915,5,0,0 +2013,8,1,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-3,0,1317,3,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-3,0,2155,-16,0,0 +2013,9,6,5,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,-7,0,950,8,0,0 +2013,6,30,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,0,0,1755,-8,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1730,-1,0,2014,10,0,0 +2013,7,14,7,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,-6,0,1903,-8,0,0 +2013,7,18,4,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1045,0,0,1155,-8,0,0 +2013,4,15,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,731,-5,0,932,-1,0,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,900,-8,0,1025,-11,0,0 +2013,10,2,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-11,0,1655,-18,0,0 +2013,9,26,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1515,-6,0,1703,8,0,0 +2013,8,20,2,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,0,0,1341,-17,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,5,0,2110,-13,0,0 +2013,4,1,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1915,-8,0,2105,-18,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1910,16,1,2010,14,0,0 +2013,8,2,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,819,30,1,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,7,0,1929,8,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,-8,0,2150,-32,0,0 +2013,9,23,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1245,25,1,1400,20,1,0 +2013,8,21,3,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1036,-8,0,1224,-30,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1415,-3,0,1603,2,0,0 +2013,7,28,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1848,9,0,2100,-10,0,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,730,0,0,1037,3,0,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1905,32,1,2220,30,1,0 +2013,7,14,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,-10,0,2125,-41,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1645,-4,0,1855,17,1,0 +2013,9,18,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-9,0,928,9,0,0 +2013,5,15,3,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1015,0,0,1145,-10,0,0 +2013,8,7,3,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,42,1,1949,31,1,0 +2013,4,30,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2051,1,0,2124,4,0,0 +2013,9,27,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-4,0,1242,13,0,0 +2013,8,31,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1415,-2,0,1520,8,0,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,1,0,1608,-19,0,0 +2013,8,10,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1228,-5,0,1454,1,0,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2140,58,1,2255,63,1,0 +2013,8,7,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,645,-12,0,813,-18,0,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,735,-11,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,3,0,2340,-8,0,0 +2013,8,23,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-13,0,1412,6,0,0 +2013,4,30,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1823,-4,0,2054,-18,0,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1037,-4,0,1556,-24,0,0 +2013,7,7,7,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,722,19,1,1021,9,0,0 +2013,5,11,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,-2,0,2356,-8,0,0 +2013,8,24,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-8,0,835,-19,0,0 +2013,4,22,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,1,0,1535,23,1,0 +2013,4,3,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1545,2,0,1700,-5,0,0 +2013,5,26,7,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,0,0,1255,2,0,0 +2013,5,23,4,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1250,0,,1535,0,1,1 +2013,7,10,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1546,127,1,1729,154,1,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2045,16,1,2330,14,0,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1402,-8,0,1752,-25,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2151,4,0,2334,1,0,0 +2013,4,11,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,4,0,1552,5,0,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1559,-3,0,1908,-17,0,0 +2013,5,28,2,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1505,3,0,1735,4,0,0 +2013,6,11,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,51,1,1715,72,1,0 +2013,6,15,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,650,-5,0,1007,-12,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1600,-5,0,28,-3,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,828,4,0,1056,-16,0,0 +2013,9,26,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2030,26,1,2155,5,0,0 +2013,6,20,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1755,-8,0,1935,-14,0,0 +2013,7,31,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1359,-3,0,1452,1,0,0 +2013,7,29,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1800,0,0,1855,-7,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1515,2,0,1638,5,0,0 +2013,5,22,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,855,1,0,1455,15,1,0 +2013,5,28,2,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,837,-5,0,1013,-16,0,0 +2013,5,19,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,-3,0,820,-23,0,0 +2013,8,1,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1000,1,0,1245,25,1,0 +2013,5,4,6,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1125,12,0,1455,2,0,0 +2013,9,2,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,18,1,1830,16,1,0 +2013,7,9,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,25,1,807,15,1,0 +2013,7,2,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,19,1,1010,21,1,0 +2013,9,12,4,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-6,0,1240,4,0,0 +2013,5,29,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1424,8,0,1531,1,0,0 +2013,8,4,7,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,3,0,1217,-13,0,0 +2013,5,27,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1210,0,0,1431,3,0,0 +2013,10,25,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-6,0,1723,1,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,940,3,0,1110,-5,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2105,-3,0,2215,-11,0,0 +2013,9,4,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,755,-7,0,1045,-15,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,0,0,1247,-4,0,0 +2013,10,3,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-1,0,956,-6,0,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,-1,0,1303,8,0,0 +2013,9,11,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1753,-4,0,2104,-5,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,630,-3,0,755,-11,0,0 +2013,6,16,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,955,199,1,1158,186,1,0 +2013,7,27,6,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1221,27,1,1949,20,1,0 +2013,9,17,2,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,940,3,0,1729,2,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1255,5,0,1515,-9,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2025,14,0,2150,7,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1325,44,1,1435,40,1,0 +2013,9,30,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-5,0,2105,-12,0,0 +2013,5,11,6,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,610,-4,0,750,0,0,0 +2013,5,30,4,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,838,-6,0,1008,-5,0,0 +2013,4,3,3,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1820,16,1,2135,11,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2021,52,1,2226,32,1,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1530,1,0,1805,4,0,0 +2013,7,3,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1944,40,1,2129,36,1,0 +2013,9,2,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1346,-7,0,1541,-5,0,0 +2013,9,7,6,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,815,-6,0,945,-16,0,0 +2013,7,24,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,14,0,1645,1,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,5,0,1538,-11,0,0 +2013,8,10,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,84,1,1609,83,1,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,58,1,2000,50,1,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,830,3,0,1110,37,1,0 +2013,7,31,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-2,0,2230,5,0,0 +2013,10,10,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1240,32,1,1340,28,1,0 +2013,5,27,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-4,0,1520,-4,0,0 +2013,10,24,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1855,-2,0,2035,-15,0,0 +2013,6,3,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,75,1,2044,65,1,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1435,1,0,1805,-4,0,0 +2013,6,17,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,0,,1210,0,1,1 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1313,0,0,1550,-2,0,0 +2013,6,25,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,11,0,1346,33,1,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2230,1,0,425,-2,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1450,-3,0,1610,-7,0,0 +2013,9,6,5,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2240,-7,0,635,-14,0,0 +2013,8,26,1,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,-3,0,1630,-33,0,0 +2013,10,21,1,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1930,-7,0,2132,-6,0,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1950,-5,0,2101,-14,0,0 +2013,7,15,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-8,0,1105,-27,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-4,0,1312,-1,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2232,-3,0,716,-11,0,0 +2013,5,31,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-7,0,1925,-16,0,0 +2013,9,21,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,908,69,1,1038,79,1,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2110,20,1,2315,16,1,0 +2013,8,17,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1828,-6,0,2031,-27,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,954,-8,0,1117,-6,0,0 +2013,8,22,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1527,97,1,1541,134,1,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1139,0,0,1254,-11,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1750,13,0,2045,44,1,0 +2013,7,11,4,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-6,0,936,-11,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,836,18,1,858,13,0,0 +2013,10,26,6,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1450,2,0,1610,7,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1305,2,0,1730,-2,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1630,-4,0,1749,-9,0,0 +2013,7,5,5,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,21,1,1720,11,0,0 +2013,4,15,1,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1020,-13,0,1325,-7,0,0 +2013,7,13,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-4,0,734,-9,0,0 +2013,9,3,2,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,98,1,1821,80,1,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,840,39,1,1050,25,1,0 +2013,8,22,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,91,1,1218,104,1,0 +2013,5,22,3,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,750,0,0,1210,0,0,0 +2013,4,16,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-1,0,1054,9,0,0 +2013,5,10,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,0,0,1605,-1,0,0 +2013,6,20,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,-2,0,1203,-10,0,0 +2013,8,14,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1253,-5,0,1457,3,0,0 +2013,10,22,2,OO,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,0,0,1414,13,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2105,11,0,2337,2,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,209,1,2135,209,1,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1354,-5,0,1448,-13,0,0 +2013,10,26,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,830,0,0,945,0,0,0 +2013,7,17,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,2051,5,0,2306,-18,0,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1031,-1,0,1250,-5,0,0 +2013,6,26,3,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-1,0,803,24,1,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,2,0,1050,13,0,0 +2013,5,17,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1835,-12,0,2225,-16,0,0 +2013,7,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,14,0,1538,55,1,0 +2013,4,1,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,23,1,1624,29,1,0 +2013,5,13,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,4,0,1839,-13,0,0 +2013,10,12,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1354,-10,0,0 +2013,4,10,3,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1410,-7,0,1618,1,0,0 +2013,7,12,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,-6,0,957,-2,0,0 +2013,7,28,7,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,625,-4,0,836,4,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,850,15,1,1104,5,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-2,0,720,4,0,0 +2013,5,1,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,856,0,1,1 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,-4,0,2220,-24,0,0 +2013,6,3,1,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,28,1,2021,24,1,0 +2013,9,22,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1238,8,0,0 +2013,9,24,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-9,0,1220,1,0,0 +2013,5,26,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,-9,0,1214,-6,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,-3,0,1915,-10,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2016,-3,0,2041,-16,0,0 +2013,9,14,6,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-5,0,916,-16,0,0 +2013,5,15,3,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,645,-2,0,825,-11,0,0 +2013,9,6,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1325,-5,0,1420,-5,0,0 +2013,10,19,6,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,-2,0,1605,-12,0,0 +2013,6,13,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1345,213,1,1724,218,1,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1019,-6,0,1200,-6,0,0 +2013,9,26,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-2,0,2214,-3,0,0 +2013,10,14,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,822,38,1,0 +2013,10,25,5,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1010,-1,0,1542,-3,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1200,0,0,1320,0,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,-2,0,1042,-10,0,0 +2013,10,17,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,630,11,0,745,-3,0,0 +2013,7,16,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,27,1,2230,30,1,0 +2013,7,22,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,828,5,0,1009,4,0,0 +2013,10,30,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,1955,-3,0,2005,-12,0,0 +2013,9,2,1,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-11,0,915,-12,0,0 +2013,4,10,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,208,1,701,216,1,0 +2013,4,18,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,17,1,37,21,1,0 +2013,6,25,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1745,12,0,1835,24,1,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1723,-1,0,2245,24,1,0 +2013,7,30,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-2,0,1523,36,1,0 +2013,4,10,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,915,-6,0,1029,-14,0,0 +2013,9,17,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,955,-2,0,1110,-11,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1730,1,0,1950,17,1,0 +2013,6,10,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-6,0,608,-14,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,640,-1,0,950,-10,0,0 +2013,6,16,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-7,0,1220,-5,0,0 +2013,7,9,2,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1440,94,1,2245,100,1,0 +2013,8,13,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,650,6,0,1015,-9,0,0 +2013,4,21,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,4,0,1836,12,0,0 +2013,5,3,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-5,0,1904,-19,0,0 +2013,8,7,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1034,0,0,1400,-11,0,0 +2013,7,12,5,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,-3,0,1910,-15,0,0 +2013,10,23,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1720,20,1,1845,16,1,0 +2013,7,12,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,810,0,0,930,-2,0,0 +2013,9,17,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1315,78,1,1435,98,1,0 +2013,6,9,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-1,0,1223,-8,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,715,-3,0,840,-10,0,0 +2013,8,6,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2021,-6,0,2151,-8,0,0 +2013,4,7,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,720,4,0,940,1,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,1,0,1152,-1,0,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1955,52,1,2145,72,1,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,6,0,2115,-22,0,0 +2013,10,6,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-8,0,940,-14,0,0 +2013,8,6,2,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,-5,0,1340,1,0,0 +2013,10,2,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1428,-15,0,0 +2013,4,1,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,504,0,0,712,-10,0,0 +2013,8,3,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,750,-3,0,1205,-5,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,20,1,2148,18,1,0 +2013,7,18,4,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-1,0,1230,-11,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1250,29,1,1851,11,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2150,3,0,2315,2,0,0 +2013,10,19,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,37,1,1420,33,1,0 +2013,5,24,5,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,-3,0,2125,2,0,0 +2013,8,15,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1020,-1,0,1225,-2,0,0 +2013,8,29,4,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1106,-1,0,1233,-13,0,0 +2013,7,17,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1804,16,1,2029,6,0,0 +2013,9,26,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1150,-2,0,1425,-5,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1618,28,1,59,-2,0,0 +2013,7,21,7,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1714,46,1,2053,32,1,0 +2013,8,15,4,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1702,-1,0,1925,15,1,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-1,0,2158,-20,0,0 +2013,6,7,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1554,-8,0,1745,-1,0,0 +2013,9,7,6,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1555,1,0,1815,7,0,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2104,-3,0,2347,-10,0,0 +2013,8,28,3,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1640,-9,0,1955,12,0,0 +2013,7,11,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1034,-4,0,1206,2,0,0 +2013,8,21,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1915,5,0,2117,13,0,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1835,-5,0,1945,-7,0,0 +2013,4,9,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1901,0,,1925,0,1,1 +2013,7,12,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,835,-13,0,958,-5,0,0 +2013,7,15,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-11,0,2035,-17,0,0 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,650,-3,0,1008,-7,0,0 +2013,5,29,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,1,0,1226,17,1,0 +2013,8,15,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1157,-3,0,1332,-15,0,0 +2013,6,26,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1015,0,0,1205,6,0,0 +2013,7,13,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1625,12,0,1735,13,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1450,14,0,2015,2,0,0 +2013,7,17,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1419,8,0,1559,1,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,1,0,1500,-5,0,0 +2013,8,8,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-4,0,656,-2,0,0 +2013,9,26,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,3,0,857,6,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2155,-5,0,2300,-9,0,0 +2013,5,9,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,2,0,1828,1,0,0 +2013,6,16,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,6,0,1657,-13,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2159,25,1,2358,19,1,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1140,1,0,1250,-4,0,0 +2013,5,17,5,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1500,12,0,1700,15,1,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1840,-3,0,2356,-12,0,0 +2013,9,29,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-1,0,935,10,0,0 +2013,6,13,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1156,-10,0,0 +2013,8,23,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2325,-1,0,525,-3,0,0 +2013,10,6,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1330,19,1,1440,13,0,0 +2013,4,5,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1015,-2,0,1526,6,0,0 +2013,6,13,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,930,5,0,1409,23,1,0 +2013,10,30,3,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1659,-6,0,2035,2,0,0 +2013,9,4,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,-2,0,1250,-11,0,0 +2013,9,17,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,615,0,0,810,-3,0,0 +2013,8,29,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,640,-3,0,750,-6,0,0 +2013,10,10,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,12,0,2335,4,0,0 +2013,7,23,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,600,-2,0,705,-11,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1741,0,0,1909,-7,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2010,51,1,2310,47,1,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,29,1,1027,11,0,0 +2013,10,29,2,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1348,-9,0,1510,-14,0,0 +2013,5,11,6,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1730,13,0,1830,-10,0,0 +2013,6,24,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,800,-9,0,935,-13,0,0 +2013,8,25,7,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,935,27,1,1145,21,1,0 +2013,7,21,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,630,-3,0,856,0,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1041,5,0,1335,-14,0,0 +2013,5,6,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1650,0,0,1805,-20,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,810,2,0,1040,15,1,0 +2013,6,13,4,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,1,0,930,1,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,7,0,2110,-13,0,0 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2035,14,0,2210,2,0,0 +2013,10,27,7,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,645,-1,0,935,-5,0,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1950,-4,0,2134,8,0,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1058,23,1,1348,3,0,0 +2013,7,22,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1409,-1,0,1548,16,1,0 +2013,9,10,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,20,1,1420,20,1,0 +2013,10,30,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,853,-8,0,1005,-16,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,-2,0,1820,-18,0,0 +2013,6,30,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,0,0,1200,-7,0,0 +2013,5,15,3,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,845,2,0,1235,-7,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,-1,0,1830,-13,0,0 +2013,10,29,2,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,23,1,1913,30,1,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1325,2,0,1636,10,0,0 +2013,5,22,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2105,1,0,2232,-7,0,0 +2013,10,24,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-2,0,802,-9,0,0 +2013,9,12,4,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,119,1,1022,109,1,0 +2013,8,14,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-4,0,1120,-10,0,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2021,-4,0,2225,-8,0,0 +2013,5,20,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,-5,0,1046,-11,0,0 +2013,7,22,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,2,0,1524,1,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1510,-3,0,1520,-20,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,-1,0,1402,-8,0,0 +2013,5,8,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,750,-5,0,1124,-3,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,3,0,1500,2,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1800,0,,2120,0,1,1 +2013,4,28,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1100,58,1,1200,52,1,0 +2013,4,28,7,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-6,0,1105,-45,0,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1526,-5,0,1703,-35,0,0 +2013,8,29,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1645,-2,0,1803,1,0,0 +2013,10,31,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-3,0,1133,33,1,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1405,12,0,1515,4,0,0 +2013,8,13,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1454,-1,0,2032,-23,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1512,-4,0,1614,5,0,0 +2013,8,22,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-2,0,2010,-8,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1630,8,0,1735,-1,0,0 +2013,6,15,6,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,640,4,0,920,-24,0,0 +2013,9,6,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,855,-3,0,1210,-4,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-6,0,1027,-20,0,0 +2013,6,2,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,0,0,1850,4,0,0 +2013,9,3,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1823,1,0,2003,-6,0,0 +2013,4,25,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-2,0,830,-12,0,0 +2013,6,25,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-1,0,1955,-27,0,0 +2013,4,24,3,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-1,0,1340,0,0,0 +2013,6,10,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-10,0,1000,-12,0,0 +2013,7,15,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,0,0,1917,-2,0,0 +2013,4,18,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1000,15,1,1105,11,0,0 +2013,8,31,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1542,1,0,0 +2013,5,5,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,852,114,1,1030,109,1,0 +2013,8,1,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1459,0,,1649,0,1,1 +2013,9,4,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,725,0,0,730,21,1,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2110,32,1,2225,27,1,0 +2013,7,5,5,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1524,-3,0,1633,-9,0,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1509,26,1,1729,28,1,0 +2013,9,22,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,715,0,0,1106,4,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1735,-5,0,1915,22,1,0 +2013,9,28,6,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,829,-9,0,1122,-3,0,0 +2013,9,19,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,3,0,1354,-3,0,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-5,0,1250,91,1,0 +2013,10,13,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1127,-10,0,1338,5,0,0 +2013,6,25,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,3,0,1200,1,0,0 +2013,9,27,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,3,0,1348,0,0,0 +2013,9,4,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2030,-11,0,2106,-10,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,630,-3,0,730,-2,0,0 +2013,7,1,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,14,0,1435,24,1,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1255,5,0,1606,-31,0,0 +2013,4,24,3,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,-7,0,1845,-9,0,0 +2013,8,3,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-2,0,2000,-1,0,0 +2013,10,17,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,745,-3,0,1100,-17,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-3,0,2135,-10,0,0 +2013,7,7,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-4,0,1508,-14,0,0 +2013,10,17,4,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1119,-5,0,1213,-7,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1433,11,0,1605,-6,0,0 +2013,6,22,6,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1859,-2,0,1947,-13,0,0 +2013,6,23,7,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1221,-2,0,1436,-13,0,0 +2013,7,30,2,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1015,-1,0,1145,-2,0,0 +2013,7,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1417,13,0,1732,-3,0,0 +2013,4,12,5,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1150,29,1,1529,30,1,0 +2013,9,30,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1855,3,0,2225,-9,0,0 +2013,5,27,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,946,-7,0,1129,2,0,0 +2013,4,15,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,-2,0,1330,1,0,0 +2013,6,20,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-7,0,810,-13,0,0 +2013,9,16,1,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1330,12,0,1645,3,0,0 +2013,7,1,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,545,-5,0,857,-24,0,0 +2013,10,5,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,622,-8,0,753,-30,0,0 +2013,6,14,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1935,0,,1950,0,1,1 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,-1,0,1750,-5,0,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1100,3,0,1155,-10,0,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-4,0,21,-25,0,0 +2013,4,19,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,2,0,2132,0,0,0 +2013,7,28,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,932,-12,0,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,8,0,1745,8,0,0 +2013,7,10,3,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-7,0,955,-32,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,942,-3,0,1056,-18,0,0 +2013,4,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1217,-4,0,1402,-10,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1425,18,1,1949,1,0,0 +2013,5,16,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,930,-9,0,1120,-28,0,0 +2013,9,15,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,2,0,1435,-9,0,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1050,9,0,1330,7,0,0 +2013,9,6,5,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1845,5,0,1910,4,0,0 +2013,7,11,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1258,-1,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,-4,0,2130,-29,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-6,0,1830,-8,0,0 +2013,6,5,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,828,96,1,1344,69,1,0 +2013,4,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2015,-3,0,2117,-16,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2125,-4,0,2359,-17,0,0 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2008,-3,0,2248,-10,0,0 +2013,4,30,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1254,-2,0,1418,-17,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,-3,0,1035,-13,0,0 +2013,5,22,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1955,0,0,2125,-5,0,0 +2013,4,9,2,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,650,0,0,855,-24,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1528,-1,0,1644,-5,0,0 +2013,10,1,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1955,14,0,2240,9,0,0 +2013,4,5,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1325,-2,0,1435,-7,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,-2,0,1755,-2,0,0 +2013,10,23,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-1,0,925,-1,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1735,12,0,1835,25,1,0 +2013,6,17,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1511,-4,0,1600,-10,0,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,-1,0,1025,-9,0,0 +2013,6,28,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1455,82,1,1605,96,1,0 +2013,9,26,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1930,69,1,2015,62,1,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,-3,0,1809,9,0,0 +2013,10,6,7,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2135,-6,0,555,8,0,0 +2013,7,4,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1130,6,0,1245,-9,0,0 +2013,10,21,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,825,-3,0,920,-10,0,0 +2013,7,2,2,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1020,29,1,1318,21,1,0 +2013,5,4,6,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,800,-5,0,940,-12,0,0 +2013,6,3,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,186,1,2115,172,1,0 +2013,5,29,3,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2003,59,1,2347,44,1,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,-4,0,1802,-16,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,11,0,1655,3,0,0 +2013,6,19,3,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1255,-6,0,1503,-17,0,0 +2013,4,4,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,929,36,1,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-6,0,1030,-11,0,0 +2013,8,24,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,-7,0,1401,-17,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1749,-5,0,1927,-10,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1545,11,0,1730,-8,0,0 +2013,6,11,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,955,-10,0,1310,-17,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1155,1,0,1300,-5,0,0 +2013,7,8,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1009,5,0,1143,-17,0,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,3,0,1522,-10,0,0 +2013,4,4,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,-3,0,1635,-18,0,0 +2013,5,15,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-6,0,2357,-6,0,0 +2013,10,7,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,0,0,2005,-9,0,0 +2013,8,22,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1427,-1,0,1945,-17,0,0 +2013,9,25,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1200,-5,0,1309,-16,0,0 +2013,6,26,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1525,1,0,1655,-10,0,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,645,-3,0,929,-9,0,0 +2013,4,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2225,-1,0,2351,28,1,0 +2013,5,9,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1235,0,0,1408,-10,0,0 +2013,10,16,3,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1008,-10,0,1155,-10,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1310,0,0,1435,-16,0,0 +2013,7,31,3,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-3,0,1124,-14,0,0 +2013,6,26,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1351,-7,0,2110,-7,0,0 +2013,8,25,7,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1547,0,0,1930,17,1,0 +2013,6,29,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2325,13,0,500,14,0,0 +2013,9,13,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-2,0,1451,11,0,0 +2013,9,5,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1740,6,0,1910,4,0,0 +2013,5,3,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1056,-6,0,0 +2013,6,28,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,36,1,2058,41,1,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1715,3,0,1840,-6,0,0 +2013,9,11,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1640,-4,0,1920,-7,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,650,-3,0,816,-10,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1455,13,0,1648,10,0,0 +2013,7,7,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,645,-1,0,933,3,0,0 +2013,6,24,1,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,815,-2,0,1053,2,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,538,16,1,811,7,0,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,-1,0,2029,6,0,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1135,34,1,1725,17,1,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,2,0,1645,0,0,0 +2013,6,3,1,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,29,1,2010,-2,0,0 +2013,10,18,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1915,-9,0,2102,-5,0,0 +2013,8,20,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1448,2,0,1744,2,0,0 +2013,8,21,3,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-9,0,715,-12,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-2,0,808,13,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,0,0,2112,-5,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,1,0,1651,-13,0,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1910,-1,0,2155,-7,0,0 +2013,9,8,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,54,1,1615,39,1,0 +2013,5,22,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,1355,120,1,1519,140,1,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,810,-1,0,950,-8,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1415,-2,0,1603,-8,0,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-5,0,925,-14,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-2,0,1745,1,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1930,0,0,2105,-14,0,0 +2013,10,23,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1355,13,0,1520,8,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1608,-1,0,0 +2013,4,9,2,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,645,-4,0,820,-9,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1010,50,1,1230,28,1,0 +2013,10,21,1,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1410,-5,0,1611,-30,0,0 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1600,40,1,1734,32,1,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,14307,Theodore Francis Green State,Providence,RI,2205,-13,0,2319,8,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1220,-4,0,1452,5,0,0 +2013,4,11,4,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,2,0,759,-1,0,0 +2013,5,5,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2039,19,1,2225,-6,0,0 +2013,4,26,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-4,0,1340,21,1,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1124,-6,0,1720,-47,0,0 +2013,7,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1305,3,0,1405,0,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,14,0,1730,5,0,0 +2013,10,17,4,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1437,-9,0,1643,-11,0,0 +2013,4,2,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2030,27,1,2215,21,1,0 +2013,8,3,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1310,14,0,1500,3,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,916,-4,0,1123,0,0,0 +2013,9,8,7,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1755,2,0,1915,-7,0,0 +2013,10,3,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-4,0,1250,-9,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,650,34,1,1025,12,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,0,0,2107,-7,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,3,0,1638,11,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1440,20,1,1634,12,0,0 +2013,7,18,4,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1612,-8,0,1847,-16,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2010,40,1,2230,17,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1957,16,1,2127,6,0,0 +2013,4,19,5,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1731,40,1,1900,51,1,0 +2013,5,2,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-8,0,847,-17,0,0 +2013,5,31,5,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1949,0,0,2240,-6,0,0 +2013,8,25,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,2,0,1012,1,0,0 +2013,4,14,7,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,905,55,1,1215,41,1,0 +2013,8,23,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1354,13,0,1516,23,1,0 +2013,10,1,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,640,-7,0,910,-18,0,0 +2013,6,20,4,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,830,-5,0,957,-6,0,0 +2013,5,30,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,843,-2,0,1048,-4,0,0 +2013,5,14,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,615,-9,0,826,-30,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1219,0,0,1250,-5,0,0 +2013,6,1,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1210,2,0,1505,-9,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,3,0,2023,-12,0,0 +2013,9,29,7,YV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,756,-5,0,913,3,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,1,0,2056,-17,0,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,700,-3,0,815,-8,0,0 +2013,4,20,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1140,-1,0,1235,-14,0,0 +2013,9,28,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,739,48,1,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,828,6,0,1031,32,1,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,3,0,1050,19,1,0 +2013,6,26,3,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1348,6,0,1644,-3,0,0 +2013,6,15,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,-2,0,1809,17,1,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1252,2,0,1405,-8,0,0 +2013,8,7,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,750,-4,0,1542,-25,0,0 +2013,6,6,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-6,0,2130,-44,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,939,-3,0,1123,-17,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,8,0,2220,12,0,0 +2013,10,10,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,900,9,0,1020,-5,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,1,0,1830,-1,0,0 +2013,7,8,1,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,121,1,2130,116,1,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-4,0,908,2,0,0 +2013,9,12,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1558,-7,0,1855,-2,0,0 +2013,10,19,6,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1410,24,1,1645,14,0,0 +2013,8,1,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,84,1,1620,105,1,0 +2013,4,28,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-8,0,700,-15,0,0 +2013,6,25,2,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1005,-3,0,1130,-9,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,705,-1,0,910,-4,0,0 +2013,8,18,7,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1525,17,1,1720,-2,0,0 +2013,4,11,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,0,,1629,0,1,1 +2013,8,24,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1750,-1,0,1942,7,0,0 +2013,7,20,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-8,0,2359,-2,0,0 +2013,10,11,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1845,-2,0,2034,-6,0,0 +2013,8,21,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-3,0,1427,-9,0,0 +2013,9,25,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2359,20,1,549,5,0,0 +2013,8,29,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,0,0,1536,6,0,0 +2013,7,30,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-3,0,756,0,0,0 +2013,4,29,1,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1540,-5,0,1648,-19,0,0 +2013,5,24,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1744,-5,0,2006,-1,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,849,-3,0,1517,17,1,0 +2013,6,20,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1605,8,0,1703,11,0,0 +2013,10,22,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-2,0,1015,-9,0,0 +2013,5,19,7,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1851,-3,0,2015,-7,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-1,0,908,-6,0,0 +2013,7,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1530,-1,0,1745,-9,0,0 +2013,8,7,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-8,0,1010,-13,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-3,0,1513,-12,0,0 +2013,5,28,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1939,0,,2204,0,1,1 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,8,0,2357,11,0,0 +2013,9,29,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,835,-4,0,1025,-19,0,0 +2013,6,1,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,0,0,1630,7,0,0 +2013,4,23,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,56,1,918,84,1,0 +2013,6,28,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,432,1,2113,411,1,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,14,0,2237,-1,0,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-9,0,1423,-6,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1545,1,0,1705,-6,0,0 +2013,6,26,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,911,-9,0,1043,-5,0,0 +2013,4,1,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,6,0,2015,9,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2033,26,1,2203,29,1,0 +2013,7,26,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,-5,0,700,-9,0,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1530,-6,0,1805,9,0,0 +2013,7,25,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1535,-4,0,1653,-21,0,0 +2013,8,13,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,24,1,1432,11,0,0 +2013,10,9,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1145,-6,0,1309,15,1,0 +2013,9,6,5,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,2015,-9,0,2038,-1,0,0 +2013,7,25,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,831,12,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1940,-1,0,2105,1,0,0 +2013,5,31,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1011,2,0,1028,-1,0,0 +2013,4,20,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1120,-2,0,1511,-25,0,0 +2013,9,8,7,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,-2,0,1930,-11,0,0 +2013,5,28,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1826,-8,0,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1705,-8,0,2045,-27,0,0 +2013,6,30,7,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,-8,0,840,-16,0,0 +2013,8,20,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,530,20,1,840,15,1,0 +2013,7,3,3,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1251,1,0,1405,-14,0,0 +2013,4,25,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-7,0,1258,-9,0,0 +2013,10,26,6,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,-4,0,1335,-17,0,0 +2013,7,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1543,59,1,1658,48,1,0 +2013,4,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,801,-2,0,1126,-3,0,0 +2013,6,12,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-1,0,1915,-10,0,0 +2013,4,21,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1428,3,0,1936,-9,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,5,0,1835,-6,0,0 +2013,6,12,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,-7,0,950,-19,0,0 +2013,5,22,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,14,0,1240,9,0,0 +2013,6,26,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1415,5,0,1545,-20,0,0 +2013,7,14,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,211,7,0,559,17,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1921,-1,0,2051,-17,0,0 +2013,10,23,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-1,0,756,1,0,0 +2013,9,5,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1805,11,0,2355,12,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-7,0,1445,-23,0,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1425,26,1,1610,0,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,-4,0,1810,-27,0,0 +2013,7,2,2,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,545,-12,0,656,-16,0,0 +2013,4,5,5,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,-1,0,2025,0,0,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1125,5,0,1420,-8,0,0 +2013,7,19,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-1,0,1320,-5,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-3,0,2346,-23,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,910,-1,0,1052,-14,0,0 +2013,8,30,5,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1740,-5,0,2048,-3,0,0 +2013,5,22,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-6,0,1103,-18,0,0 +2013,4,25,4,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,-6,0,1320,12,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1845,-1,0,2320,-7,0,0 +2013,6,21,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1239,-9,0,0 +2013,7,9,2,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1026,6,0,1200,1,0,0 +2013,8,17,6,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1327,-6,0,1449,-15,0,0 +2013,4,3,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1008,7,0,1135,8,0,0 +2013,9,5,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-7,0,1631,-21,0,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,-5,0,1750,-11,0,0 +2013,5,24,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1521,40,1,1606,39,1,0 +2013,4,22,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,12,0,1233,6,0,0 +2013,5,23,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,64,1,1130,48,1,0 +2013,10,27,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1011,-7,0,1049,-11,0,0 +2013,10,4,5,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,-3,0,1345,-32,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,2,0,1055,0,0,0 +2013,6,20,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,702,2,0,805,15,1,0 +2013,4,25,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1855,12,0,2130,-9,0,0 +2013,4,20,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,27,1,2110,16,1,0 +2013,7,26,5,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,625,-1,0,750,-17,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,-6,0,1118,6,0,0 +2013,6,13,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1005,-1,0,1438,-1,0,0 +2013,9,27,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1530,2,0,1555,2,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1830,5,0,2000,4,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,2,0,1355,-8,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1939,23,1,2140,26,1,0 +2013,9,20,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-3,0,1230,-4,0,0 +2013,4,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1400,-3,0,1714,7,0,0 +2013,9,21,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,192,1,1634,190,1,0 +2013,5,22,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,16,1,1619,10,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,630,-6,0,940,-10,0,0 +2013,4,6,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-7,0,2025,1,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1155,-4,0,1300,-3,0,0 +2013,9,10,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-8,0,913,-19,0,0 +2013,10,25,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1545,-2,0,1650,5,0,0 +2013,6,15,6,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,810,-6,0,1100,-15,0,0 +2013,4,17,3,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,-3,0,1711,-7,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1150,-3,0,1255,15,1,0 +2013,10,24,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-1,0,2052,1,0,0 +2013,7,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1440,26,1,1825,21,1,0 +2013,5,1,3,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1110,-3,0,1259,16,1,0 +2013,8,5,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2004,9,0,2120,-13,0,0 +2013,10,23,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,3,0,1215,-5,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,928,10,0,1114,10,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,950,-4,0,1122,-16,0,0 +2013,7,18,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,745,-3,0,1000,-2,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1214,133,1,1959,98,1,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1001,-3,0,1541,-5,0,0 +2013,4,1,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-10,0,1555,-9,0,0 +2013,8,30,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1210,-2,0,1500,-11,0,0 +2013,8,25,7,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-1,0,750,-19,0,0 +2013,7,30,2,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,655,-5,0,1010,11,0,0 +2013,10,29,2,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1705,-4,0,2005,14,0,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1006,-6,0,1630,20,1,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,-5,0,1521,-4,0,0 +2013,6,22,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,800,-1,0,955,-10,0,0 +2013,5,24,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-3,0,1154,-8,0,0 +2013,9,21,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,946,-1,0,1323,-12,0,0 +2013,10,11,5,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,830,75,1,1655,102,1,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1017,41,1,1228,13,0,0 +2013,7,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,852,-1,0,1022,3,0,0 +2013,6,20,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,0,0,850,-13,0,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1307,6,0,1605,-4,0,0 +2013,9,4,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,38,1,1526,42,1,0 +2013,4,26,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,8,0,830,26,1,0 +2013,6,4,2,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1355,92,1,1520,78,1,0 +2013,5,4,6,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,-3,0,1831,-54,0,0 +2013,5,31,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,-5,0,1700,-2,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1052,-3,0,1154,-24,0,0 +2013,6,25,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-4,0,635,-9,0,0 +2013,4,22,1,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1845,22,1,2019,44,1,0 +2013,4,15,1,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1940,65,1,115,83,1,0 +2013,4,16,2,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1932,-3,0,2020,-4,0,0 +2013,5,5,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1505,5,0,1620,7,0,0 +2013,8,24,6,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1545,5,0,1845,43,1,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-4,0,1003,-16,0,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2055,12,0,2200,5,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1035,-4,0,1505,-6,0,0 +2013,10,9,3,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1845,-6,0,2039,-12,0,0 +2013,8,18,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,-7,0,1445,-16,0,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-11,0,1030,-4,0,0 +2013,7,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2021,0,0,2151,10,0,0 +2013,5,4,6,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1840,-1,0,1951,-10,0,0 +2013,8,21,3,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,-2,0,1000,-31,0,0 +2013,8,6,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1705,6,0,1950,-15,0,0 +2013,7,11,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1130,-4,0,1725,-9,0,0 +2013,7,2,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-9,0,1553,-7,0,0 +2013,8,23,5,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,655,-3,0,810,5,0,0 +2013,4,6,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,36,1,1720,19,1,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,811,16,1,1359,-5,0,0 +2013,4,15,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,515,0,0,643,-2,0,0 +2013,5,13,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,630,2,0,735,3,0,0 +2013,10,31,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-4,0,1500,-27,0,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-6,0,905,-4,0,0 +2013,4,5,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1213,30,1,1505,20,1,0 +2013,5,18,6,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1715,-8,0,2038,-18,0,0 +2013,8,1,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,14,0,1938,30,1,0 +2013,6,17,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-4,0,1016,2,0,0 +2013,5,26,7,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,-4,0,1603,-1,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,2,0,1040,-13,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,810,-1,0,936,-20,0,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,-2,0,1710,-11,0,0 +2013,5,24,5,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,930,15,1,1231,-2,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1605,34,1,2355,28,1,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,76,1,2040,59,1,0 +2013,10,10,4,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,804,-4,0,903,9,0,0 +2013,5,4,6,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,1831,2,0,2054,-39,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1727,4,0,1837,-16,0,0 +2013,6,9,7,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,58,1,2014,68,1,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1950,-3,0,2145,-7,0,0 +2013,4,12,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-6,0,1015,-4,0,0 +2013,10,12,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-3,0,1220,-7,0,0 +2013,4,24,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,-9,0,947,-14,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1452,-2,0,1747,-12,0,0 +2013,9,28,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,820,13,0,1100,3,0,0 +2013,4,7,7,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1450,-2,0,1830,8,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,0,0,1522,1,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1535,2,0,1655,7,0,0 +2013,9,22,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1628,0,0,1855,-12,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1359,12,0,2229,11,0,0 +2013,9,22,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,0,0,2000,2,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,738,-2,0,921,-8,0,0 +2013,9,5,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1500,-5,0,1723,-17,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1520,215,1,1715,197,1,0 +2013,10,1,2,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1735,13,0,2305,14,0,0 +2013,10,22,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1605,-3,0,1810,-9,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,53,1,1555,60,1,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1455,-1,0,1745,-10,0,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1245,0,0,1425,-4,0,0 +2013,9,16,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1230,-7,0,1405,-11,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1310,21,1,1440,9,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,-1,0,1040,-11,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2206,-3,0,2329,-17,0,0 +2013,8,7,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1330,2,0,1410,-1,0,0 +2013,9,3,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,715,-2,0,1000,-6,0,0 +2013,7,9,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1515,15,1,1630,7,0,0 +2013,5,12,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-4,0,1016,-15,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,-6,0,2327,-2,0,0 +2013,5,30,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,0,0,810,-6,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1030,21,1,1235,30,1,0 +2013,5,9,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,17,1,1920,14,0,0 +2013,9,25,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,835,-10,0,1205,-23,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1935,9,0,2150,9,0,0 +2013,4,19,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1625,27,1,1918,25,1,0 +2013,5,30,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,7,0,1215,18,1,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-2,0,1329,-13,0,0 +2013,4,29,1,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,22,1,1545,20,1,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2135,33,1,2325,17,1,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1252,4,0,1750,-4,0,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1950,-5,0,2110,6,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-5,0,1023,-5,0,0 +2013,4,4,4,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1125,11,0,1355,10,0,0 +2013,8,2,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,-2,0,1405,-10,0,0 +2013,7,17,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1053,129,1,1210,117,1,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,16,1,1054,35,1,0 +2013,10,17,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1450,35,1,1500,34,1,0 +2013,5,20,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1750,9,0,1815,39,1,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1810,2,0,2200,0,0,0 +2013,9,26,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,550,-7,0,729,-11,0,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,0,0,1127,-4,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1820,-3,0,1940,-13,0,0 +2013,10,22,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1111,2,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1615,-3,0,1832,-8,0,0 +2013,8,18,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,21,1,939,29,1,0 +2013,8,13,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-5,0,1634,37,1,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1935,25,1,2225,28,1,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,14,0,1320,3,0,0 +2013,7,4,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1410,-2,0,1617,-3,0,0 +2013,9,18,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1035,-4,0,1830,-9,0,0 +2013,5,10,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1254,12,0,1354,10,0,0 +2013,9,22,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1258,-1,0,1426,-24,0,0 +2013,10,16,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1524,-3,0,0 +2013,6,24,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1150,54,1,1320,52,1,0 +2013,10,18,5,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1145,18,1,1320,12,0,0 +2013,7,14,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1515,18,1,1800,15,1,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,945,2,0,1050,-7,0,0 +2013,4,10,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1444,-2,0,1735,-16,0,0 +2013,9,26,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-6,0,906,-1,0,0 +2013,10,12,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,900,9,0,1115,-1,0,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1710,18,1,2000,6,0,0 +2013,9,3,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,-1,0,1310,-2,0,0 +2013,8,17,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1319,-9,0,1826,-14,0,0 +2013,5,7,2,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-3,0,550,-1,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,6,0,1905,-4,0,0 +2013,4,4,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,846,3,0,1030,-18,0,0 +2013,6,22,6,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1700,-1,0,1837,-9,0,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,-2,0,2255,3,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,810,28,1,1125,15,1,0 +2013,6,25,2,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1649,-4,0,1800,-11,0,0 +2013,10,11,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1020,24,1,1258,54,1,0 +2013,5,20,1,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2009,-2,0,2148,-9,0,0 +2013,4,8,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1310,-8,0,1356,-1,0,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1840,-1,0,2128,-13,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,24,1,1240,21,1,0 +2013,10,3,4,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1158,-4,0,1402,0,0,0 +2013,5,26,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1615,-2,0,1740,-8,0,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1645,21,1,1755,8,0,0 +2013,7,23,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2239,0,0,633,-12,0,0 +2013,6,30,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1203,34,1,1444,17,1,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,910,5,0,1050,-5,0,0 +2013,10,13,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,925,14,0,1200,13,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,818,1,0,920,27,1,0 +2013,8,29,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,828,1,0,0 +2013,10,9,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-1,0,1005,-4,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,610,-2,0,910,-8,0,0 +2013,9,26,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1407,13,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1115,-4,0,1300,-7,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,935,4,0,1059,5,0,0 +2013,4,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1352,-1,0,1537,0,0,0 +2013,6,24,1,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1805,39,1,2045,41,1,0 +2013,10,10,4,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1102,-4,0,1415,0,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,26,1,940,20,1,0 +2013,5,14,2,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1340,-4,0,1724,-11,0,0 +2013,10,15,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,0,0,540,0,0,0 +2013,8,9,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,171,1,2220,140,1,0 +2013,5,31,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,7,0,723,23,1,0 +2013,9,23,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-8,0,2025,-5,0,0 +2013,9,22,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,2,0,2029,-9,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1430,-1,0,1620,0,0,0 +2013,5,10,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-4,0,1951,-3,0,0 +2013,6,21,5,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1105,-7,0,1505,9,0,0 +2013,4,1,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,125,-1,0,759,1,0,0 +2013,4,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2025,-3,0,2255,-1,0,0 +2013,10,4,5,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2204,1,0,15,-19,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1940,-3,0,2252,-9,0,0 +2013,8,3,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,915,4,0,1025,-4,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2038,66,1,2207,43,1,0 +2013,7,25,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,-3,0,2045,-21,0,0 +2013,10,26,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1105,4,0,1205,4,0,0 +2013,5,1,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2359,-5,0,609,-19,0,0 +2013,6,19,3,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1631,-8,0,1953,-17,0,0 +2013,7,29,1,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1159,103,1,1753,92,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1240,-1,0,1459,8,0,0 +2013,8,31,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-6,0,1642,-6,0,0 +2013,9,8,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1200,17,1,1328,4,0,0 +2013,5,23,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,18,1,1605,16,1,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,-4,0,1530,-28,0,0 +2013,6,10,1,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-6,0,711,-21,0,0 +2013,4,19,5,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,6,0,2300,5,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,-4,0,1149,-11,0,0 +2013,8,26,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-7,0,1346,-15,0,0 +2013,10,11,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,11,0,1246,-11,0,0 +2013,5,2,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1414,13,0,1600,-3,0,0 +2013,4,30,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1133,2,0,1425,-10,0,0 +2013,4,17,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1940,-6,0,2122,-6,0,0 +2013,9,29,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-6,0,2020,-2,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-3,0,1201,-6,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,935,-3,0,1050,-6,0,0 +2013,5,1,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1450,-5,0,1810,-21,0,0 +2013,9,23,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1220,12,0,1350,13,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1530,2,0,1655,2,0,0 +2013,4,15,1,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1815,-8,0,1948,-24,0,0 +2013,5,28,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-6,0,1913,-21,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1420,-1,0,1510,-11,0,0 +2013,9,10,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,-10,0,1806,-20,0,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,755,-6,0,905,-14,0,0 +2013,9,30,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,-3,0,2034,-12,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,0,0,1912,-3,0,0 +2013,9,3,2,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,758,-11,0,0 +2013,9,12,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2142,0,,2252,0,1,1 +2013,6,6,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1221,1,0,1509,-9,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1458,19,1,1628,17,1,0 +2013,9,13,5,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1525,-2,0,1530,-15,0,0 +2013,10,13,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,8,0,1809,6,0,0 +2013,6,11,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2125,-2,0,2345,5,0,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1252,-6,0,1420,5,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1423,18,1,1713,1,0,0 +2013,5,19,7,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-3,0,713,-26,0,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1515,155,1,1726,183,1,0 +2013,4,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,838,-6,0,938,-10,0,0 +2013,7,20,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-3,0,1702,1,0,0 +2013,8,19,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1007,-5,0,1454,-20,0,0 +2013,4,13,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,708,-6,0,858,-17,0,0 +2013,7,1,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,10,0,2030,16,1,0 +2013,7,29,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-7,0,1007,-24,0,0 +2013,10,2,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10693,Nashville International,Nashville,TN,755,-4,0,825,-15,0,0 +2013,10,27,7,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-22,0,1215,-22,0,0 +2013,10,30,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,600,-4,0,703,-8,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1341,22,1,1450,12,0,0 +2013,9,18,3,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,10,0,1705,13,0,0 +2013,4,5,5,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,6,0,910,-8,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1723,3,0,2013,40,1,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,1000,2,0,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1352,-5,0,1549,-22,0,0 +2013,6,19,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,945,0,0,1105,1,0,0 +2013,7,11,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,2,0,1706,2,0,0 +2013,5,13,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-6,0,1409,-7,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1700,7,0,1800,-2,0,0 +2013,10,3,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,800,-6,0,1625,-18,0,0 +2013,8,23,5,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1615,12,0,1805,2,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,853,-1,0,1423,-5,0,0 +2013,6,25,2,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1719,0,,1817,0,1,1 +2013,5,14,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,1,0,2032,-20,0,0 +2013,8,22,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,7,0,1727,11,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-7,0,2005,-5,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,915,0,0,1200,-6,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1208,0,0,1405,-2,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1953,-4,0,2308,-21,0,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2020,41,1,2145,45,1,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1710,5,0,1940,1,0,0 +2013,6,1,6,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1125,-6,0,1336,-5,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1053,6,0,1239,-3,0,0 +2013,8,3,6,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,-3,0,745,-15,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1948,-4,0,2101,-14,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1410,44,1,1647,32,1,0 +2013,5,9,4,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,825,-10,0,1119,-21,0,0 +2013,10,1,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1850,-4,0,2205,-16,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1855,-2,0,2015,-7,0,0 +2013,7,3,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1504,15,1,1624,11,0,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,-3,0,1023,-11,0,0 +2013,7,6,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-12,0,1017,-19,0,0 +2013,10,21,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1205,-2,0,1250,-12,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2055,-7,0,2305,-10,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,-6,0,1350,3,0,0 +2013,8,29,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1935,3,0,2020,-10,0,0 +2013,4,25,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-4,0,938,-24,0,0 +2013,8,26,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,0,0,809,8,0,0 +2013,10,29,2,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1859,-6,0,2123,-20,0,0 +2013,8,5,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-6,0,1627,-10,0,0 +2013,10,21,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,1,0,935,5,0,0 +2013,9,11,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2015,14,0,2105,36,1,0 +2013,9,11,3,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,0,0,1035,-5,0,0 +2013,5,8,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1810,0,,2025,0,1,1 +2013,9,7,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,920,-1,0,1315,-12,0,0 +2013,4,18,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-10,0,758,-13,0,0 +2013,6,14,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-2,0,2126,-4,0,0 +2013,7,26,5,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1415,-8,0,1544,-3,0,0 +2013,5,1,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1812,-10,0,2002,-17,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1021,-5,0,1306,-1,0,0 +2013,7,16,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-6,0,1418,-7,0,0 +2013,9,4,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-6,0,1806,0,0,0 +2013,5,19,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,930,-1,0,1245,-13,0,0 +2013,6,8,6,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1235,7,0,1421,3,0,0 +2013,7,3,3,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1645,-1,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1425,9,0,1552,4,0,0 +2013,8,17,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,750,-1,0,1150,9,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1700,57,1,1800,55,1,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1746,-3,0,1932,-12,0,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,800,0,0,1050,0,0,0 +2013,7,8,1,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1850,51,1,2025,47,1,0 +2013,7,6,6,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1644,126,1,2023,133,1,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,8,0,1301,21,1,0 +2013,4,22,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-4,0,1130,11,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,825,-1,0,935,-18,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,46,1,2140,54,1,0 +2013,8,21,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-1,0,730,-11,0,0 +2013,6,7,5,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1432,-3,0,1925,2,0,0 +2013,4,12,5,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1155,16,1,1344,27,1,0 +2013,6,7,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,927,28,1,1104,39,1,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1757,34,1,1919,5,0,0 +2013,7,26,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-6,0,606,-22,0,0 +2013,7,7,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-5,0,920,-17,0,0 +2013,8,10,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1426,6,0,1620,-9,0,0 +2013,4,29,1,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,427,1,1509,425,1,0 +2013,7,4,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-4,0,944,-21,0,0 +2013,8,9,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-6,0,1130,4,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,815,0,0,1015,-7,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1128,-2,0,1312,18,1,0 +2013,4,13,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-2,0,902,3,0,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,12,0,930,1,0,0 +2013,7,7,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,807,-13,0,0 +2013,6,6,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1320,-5,0,1435,-6,0,0 +2013,5,23,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1745,209,1,2043,191,1,0 +2013,7,19,5,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-1,0,2045,5,0,0 +2013,9,5,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1735,4,0,1944,-6,0,0 +2013,8,8,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2030,0,0,2115,18,1,0 +2013,7,18,4,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1659,11,0,1853,6,0,0 +2013,7,2,2,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-9,0,929,-9,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1758,1,0,2011,10,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1658,-7,0,2259,-24,0,0 +2013,6,10,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2300,-7,0,707,-12,0,0 +2013,5,24,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1840,-3,0,2005,-9,0,0 +2013,6,3,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,2020,-6,0,2118,-13,0,0 +2013,6,7,5,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,117,1,1905,132,1,0 +2013,5,17,5,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1710,11,0,2045,-6,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,-3,0,1045,-20,0,0 +2013,4,3,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,25,-7,0,511,-12,0,0 +2013,8,11,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,958,-3,0,1145,-2,0,0 +2013,6,24,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1515,2,0,1800,-2,0,0 +2013,6,26,3,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,-1,0,2034,-20,0,0 +2013,4,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,705,22,1,755,16,1,0 +2013,7,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1034,-2,0,1231,-14,0,0 +2013,10,26,6,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,829,-2,0,1013,8,0,0 +2013,10,21,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-2,0,1210,0,0,0 +2013,4,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-3,0,2240,-7,0,0 +2013,6,4,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1501,61,1,1820,66,1,0 +2013,7,12,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,4,0,1940,-15,0,0 +2013,6,24,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-7,0,642,-14,0,0 +2013,10,11,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1158,10,0,1402,16,1,0 +2013,8,12,1,FL,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,3,0,1605,1,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1957,55,1,2126,44,1,0 +2013,7,18,4,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-6,0,1113,2,0,0 +2013,8,24,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-10,0,1854,22,1,0 +2013,6,8,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,38,1,904,37,1,0 +2013,4,10,3,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1150,-1,0,1332,-4,0,0 +2013,5,5,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1108,-11,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,858,-9,0,1159,-19,0,0 +2013,7,6,6,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1759,0,0,2058,-60,0,0 +2013,6,17,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,0,,1815,0,1,1 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,8,0,1754,9,0,0 +2013,5,21,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,620,1,0,715,-5,0,0 +2013,9,25,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1010,1,0,1130,-1,0,0 +2013,8,27,2,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1200,-7,0,1300,-19,0,0 +2013,10,14,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-6,0,843,-9,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,715,-2,0,920,-7,0,0 +2013,5,3,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1059,6,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,4,0,2050,-4,0,0 +2013,6,5,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1339,-1,0,2050,26,1,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,1,0,2152,-6,0,0 +2013,10,13,7,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,4,0,1957,9,0,0 +2013,7,14,7,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,0,0,1016,-16,0,0 +2013,5,22,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,16,1,1818,19,1,0 +2013,7,18,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,645,12,0,758,8,0,0 +2013,8,22,4,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-4,0,1619,-13,0,0 +2013,8,21,3,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1045,-4,0,1320,1,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1352,-3,0,1534,-12,0,0 +2013,6,23,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,843,3,0,1210,-1,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,-5,0,2214,5,0,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,6,0,810,-16,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1005,23,1,1145,43,1,0 +2013,4,13,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1033,-1,0,1318,14,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1345,-2,0,1711,-8,0,0 +2013,7,21,7,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,8,0,1820,9,0,0 +2013,8,22,4,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,640,-5,0,746,0,0,0 +2013,9,2,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1552,74,1,1651,54,1,0 +2013,9,3,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,855,-6,0,955,-20,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1336,17,1,2204,-14,0,0 +2013,10,11,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-3,0,1221,-4,0,0 +2013,5,26,7,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-7,0,815,20,1,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1140,29,1,1335,3,0,0 +2013,6,22,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1130,-10,0,1520,-5,0,0 +2013,7,16,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1316,-6,0,2148,-24,0,0 +2013,6,25,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,605,-4,0,635,4,0,0 +2013,8,25,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,5,0,2010,-8,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1725,61,1,2000,37,1,0 +2013,6,28,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,954,-6,0,1338,-12,0,0 +2013,9,2,1,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1535,11,0,1725,10,0,0 +2013,4,6,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,-3,0,1831,-24,0,0 +2013,9,18,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,700,-3,0,822,1,0,0 +2013,10,31,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,745,-3,0,919,4,0,0 +2013,5,12,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1455,-3,0,1610,-14,0,0 +2013,5,24,5,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,18,1,1723,24,1,0 +2013,7,27,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1255,4,0,1504,-3,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,30,1,910,13,0,0 +2013,5,21,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,135,1,1857,136,1,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,-4,0,955,-4,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2150,-1,0,2335,-3,0,0 +2013,10,8,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,600,-12,0,900,-26,0,0 +2013,9,22,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,1,0,1814,-8,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1318,3,0,1619,-26,0,0 +2013,9,27,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,925,0,0,1325,2,0,0 +2013,10,9,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1250,13,0,1410,11,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,735,5,0,1155,7,0,0 +2013,10,10,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,56,1,1905,47,1,0 +2013,8,21,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1603,13,0,1853,16,1,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2155,0,0,2345,-7,0,0 +2013,6,2,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2236,-3,0,715,-11,0,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1947,3,0,2250,9,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,706,-2,0,1026,-3,0,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1420,25,1,1545,2,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1605,78,1,2240,59,1,0 +2013,4,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,2000,12,0,2320,11,0,0 +2013,4,24,3,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1715,13,0,2235,-12,0,0 +2013,9,6,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-6,0,1055,-39,0,0 +2013,7,3,3,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,20,1,1213,12,0,0 +2013,10,15,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-4,0,1000,-1,0,0 +2013,9,7,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1935,-6,0,2105,-13,0,0 +2013,10,10,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,-4,0,1155,-17,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,3,0,1850,5,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2130,-3,0,2347,-25,0,0 +2013,5,6,1,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,835,-7,0,1107,0,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,0,0,1739,-3,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,700,-4,0,920,-15,0,0 +2013,7,16,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1115,6,0,1250,-3,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1520,-2,0,1700,-24,0,0 +2013,10,29,2,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1630,-15,0,1804,-27,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,935,6,0,1110,-1,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1935,-2,0,2130,-20,0,0 +2013,7,5,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-16,0,1608,-18,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,847,-1,0,1158,-6,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1900,24,1,2212,4,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,29,1,2359,29,1,0 +2013,5,10,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1348,-5,0,1608,-10,0,0 +2013,4,11,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1854,128,1,13,99,1,0 +2013,5,30,4,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-9,0,2027,-10,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,15,1,2054,38,1,0 +2013,6,20,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1215,1,0,1400,-3,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,-3,0,2009,22,1,0 +2013,10,20,7,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-2,0,735,-8,0,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2100,156,1,2315,139,1,0 +2013,10,14,1,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,-7,0,2034,-3,0,0 +2013,9,12,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,845,-4,0,1116,-22,0,0 +2013,10,15,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1420,-1,0,1530,-6,0,0 +2013,7,14,7,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-4,0,2038,-1,0,0 +2013,5,11,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1530,0,0,1705,-22,0,0 +2013,4,18,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2230,1,0,643,-2,0,0 +2013,4,13,6,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1050,-1,0,1855,-24,0,0 +2013,9,6,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1740,-7,0,1810,-20,0,0 +2013,7,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1435,-5,0,1625,-19,0,0 +2013,6,19,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1814,1,0,1935,2,0,0 +2013,8,5,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1823,6,0,2112,-6,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2005,23,1,2154,22,1,0 +2013,6,24,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,940,4,0,1100,0,0,0 +2013,6,11,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-4,0,2135,4,0,0 +2013,10,30,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,635,-4,0,820,-11,0,0 +2013,6,14,5,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1858,42,1,2024,44,1,0 +2013,7,29,1,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2010,12,0,2240,8,0,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,-4,0,1330,-5,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1430,-2,0,1556,4,0,0 +2013,8,10,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-3,0,2034,-4,0,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,61,1,1420,51,1,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2153,-7,0,2241,-20,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,-1,0,1105,-8,0,0 +2013,10,21,1,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1510,75,1,1830,76,1,0 +2013,6,4,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1810,0,0,2125,-10,0,0 +2013,4,12,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,15,1,1629,22,1,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,-5,0,1905,-13,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,700,1,0,840,-3,0,0 +2013,4,7,7,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-2,0,1745,-2,0,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,-3,0,1215,-6,0,0 +2013,6,9,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,-3,0,1632,-5,0,0 +2013,10,2,3,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-5,0,2004,-9,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,842,-1,0,1131,19,1,0 +2013,6,22,6,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,16,1,1955,11,0,0 +2013,6,19,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1225,-2,0,1350,-4,0,0 +2013,7,3,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,89,1,2231,77,1,0 +2013,9,14,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1255,2,0,1540,-4,0,0 +2013,4,26,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-2,0,1202,-2,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,834,-20,0,0 +2013,10,24,4,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1311,6,0,2105,-11,0,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,-6,0,2137,-15,0,0 +2013,5,17,5,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1500,-6,0,1759,-8,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,800,-6,0,910,-11,0,0 +2013,9,8,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,846,-1,0,1210,-14,0,0 +2013,5,14,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-3,0,2210,-9,0,0 +2013,9,28,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,16,1,920,5,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,1,0,1522,-18,0,0 +2013,9,19,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1835,82,1,2003,73,1,0 +2013,10,26,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1220,-5,0,1400,32,1,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,919,-1,0,1058,-1,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1940,124,1,2205,116,1,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,-4,0,2308,-23,0,0 +2013,7,14,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,-2,0,1840,0,0,0 +2013,5,28,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-7,0,1434,-10,0,0 +2013,5,10,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-5,0,1358,11,0,0 +2013,4,28,7,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1205,-1,0,1325,-24,0,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-7,0,1039,7,0,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1625,28,1,1806,16,1,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1255,4,0,1410,4,0,0 +2013,4,30,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2005,50,1,2010,38,1,0 +2013,5,8,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,35,1,1110,57,1,0 +2013,7,17,3,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,57,1,2128,52,1,0 +2013,9,2,1,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,511,1,1620,497,1,0 +2013,6,12,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,41,1,1024,30,1,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2135,-1,0,5,17,1,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,835,1,0,925,7,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,810,-3,0,934,-15,0,0 +2013,7,17,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-3,0,1828,25,1,0 +2013,10,8,2,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,-4,0,1018,-15,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1258,-1,0,1425,-9,0,0 +2013,6,10,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1230,33,1,1558,14,0,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1605,9,0,1715,8,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1253,-2,0,1425,12,0,0 +2013,8,7,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,-7,0,1340,-4,0,0 +2013,9,2,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1540,117,1,1826,103,1,0 +2013,6,22,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1755,132,1,2013,105,1,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,814,31,1,1003,23,1,0 +2013,8,22,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1320,79,1,1415,78,1,0 +2013,10,21,1,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-2,0,825,0,0,0 +2013,4,9,2,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1830,-3,0,2115,-11,0,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-4,0,2320,-29,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1320,37,1,1630,33,1,0 +2013,4,14,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1855,-4,0,2101,-5,0,0 +2013,9,29,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,835,42,1,945,34,1,0 +2013,7,1,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,23,1,1849,23,1,0 +2013,9,2,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,700,2,0,829,-9,0,0 +2013,4,13,6,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-5,0,1155,-11,0,0 +2013,5,5,7,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,1,0,2325,9,0,0 +2013,4,30,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,18,1,1930,14,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,838,-3,0,857,-3,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1616,-7,0,1746,-7,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-3,0,922,1,0,0 +2013,9,26,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1415,0,0,1505,-5,0,0 +2013,9,11,3,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1154,10,0,2025,38,1,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,934,-7,0,1202,-36,0,0 +2013,7,17,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-5,0,1940,-18,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2005,22,1,2255,10,0,0 +2013,5,30,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1730,13,0,1910,24,1,0 +2013,8,10,6,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,917,-4,0,1129,-2,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,630,-5,0,930,-7,0,0 +2013,9,17,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,2000,-12,0,2344,-20,0,0 +2013,8,30,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,-3,0,940,-8,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1558,23,1,20,17,1,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1345,0,0,1450,-1,0,0 +2013,6,13,4,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,2020,-1,0,2110,-11,0,0 +2013,4,27,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,34,-7,0,502,-34,0,0 +2013,6,2,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1145,-1,0,1350,1,0,0 +2013,10,30,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-13,0,505,-33,0,0 +2013,6,27,4,OO,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,750,-1,0,950,-4,0,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,-1,0,1025,-11,0,0 +2013,9,27,5,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-3,0,2014,-15,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,647,9,0,809,10,0,0 +2013,6,10,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1810,11,0,1935,7,0,0 +2013,5,22,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-4,0,1759,-1,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,0,,1930,0,1,1 +2013,8,23,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1836,-12,0,2030,-24,0,0 +2013,6,22,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,7,0,2020,-2,0,0 +2013,10,8,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,22,1,1705,0,0,0 +2013,9,6,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,905,-2,0,1025,-22,0,0 +2013,5,5,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,-2,0,1727,-17,0,0 +2013,9,3,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,848,14,0,0 +2013,9,5,4,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,959,-6,0,1318,4,0,0 +2013,7,29,1,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,22,1,2057,13,0,0 +2013,7,24,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1535,63,1,1920,48,1,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1025,29,1,1204,22,1,0 +2013,5,14,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1905,-11,0,2105,-40,0,0 +2013,9,6,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-13,0,2050,-13,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1610,7,0,1745,30,1,0 +2013,10,21,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1308,-7,0,1554,1,0,0 +2013,6,2,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1025,261,1,1304,256,1,0 +2013,10,21,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1145,-8,0,1245,-14,0,0 +2013,4,17,3,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1829,0,,2143,0,1,1 +2013,10,2,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,-3,0,859,-8,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,-4,0,2131,-11,0,0 +2013,6,19,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,7,0,1801,20,1,0 +2013,4,18,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1700,-1,0,2015,-2,0,0 +2013,9,20,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-3,0,1230,-8,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,705,-1,0,855,-4,0,0 +2013,6,2,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1745,2,0,1855,5,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1959,66,1,2129,80,1,0 +2013,7,14,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1420,0,0,1657,-1,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1200,-3,0,1255,-10,0,0 +2013,10,26,6,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,705,-4,0,840,3,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1455,309,1,1550,369,1,0 +2013,8,5,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1910,19,1,2015,11,0,0 +2013,5,14,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-8,0,1435,-22,0,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1025,27,1,1200,20,1,0 +2013,8,25,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1225,215,1,1335,224,1,0 +2013,7,24,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,5,0,1949,1,0,0 +2013,4,5,5,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1526,5,0,1610,11,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1133,7,0,1309,32,1,0 +2013,7,20,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,1,0,1821,12,0,0 +2013,7,24,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,620,59,1,755,68,1,0 +2013,6,20,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,831,-5,0,1459,-4,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1415,13,0,1635,-6,0,0 +2013,10,30,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,3,0,1532,12,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,915,-1,0,1145,-8,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,-1,0,1535,-16,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2040,17,1,25,15,1,0 +2013,5,18,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1341,-5,0,1535,-16,0,0 +2013,6,29,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1825,-2,0,1956,-19,0,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-3,0,1611,-27,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-5,0,1108,-7,0,0 +2013,10,6,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-9,0,1900,-21,0,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,0,0,1832,-9,0,0 +2013,9,16,1,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,-9,0,1552,0,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1855,28,1,2120,26,1,0 +2013,9,5,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1935,-6,0,2250,-45,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1530,8,0,2225,-9,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,910,-1,0,1040,-4,0,0 +2013,9,2,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,951,-9,0,1047,-4,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1859,11,0,2127,1,0,0 +2013,7,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1656,-1,0,1755,3,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,39,1,100,23,1,0 +2013,9,30,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,1,0,1500,-17,0,0 +2013,8,15,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1735,-1,0,1800,-15,0,0 +2013,10,14,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,3,0,1715,12,0,0 +2013,5,27,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-9,0,655,-9,0,0 +2013,10,26,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,30,1,930,20,1,0 +2013,10,22,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1915,-7,0,2058,-23,0,0 +2013,6,1,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,645,-1,0,755,-1,0,0 +2013,5,19,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1950,188,1,2243,196,1,0 +2013,8,7,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,16,1,1455,-10,0,0 +2013,10,30,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-4,0,1604,8,0,0 +2013,5,18,6,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,735,14,0,1051,-5,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,650,0,0,745,17,1,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1815,53,1,1905,39,1,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1740,23,1,2305,27,1,0 +2013,10,3,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,800,1,0,955,5,0,0 +2013,7,24,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-4,0,2118,-11,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-5,0,2335,-4,0,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,919,6,0,1039,25,1,0 +2013,8,14,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,4,0,935,-3,0,0 +2013,5,14,2,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-4,0,815,-4,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,705,-4,0,1031,-16,0,0 +2013,5,9,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,2006,-3,0,2152,-25,0,0 +2013,4,7,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1635,0,0,1740,-5,0,0 +2013,10,11,5,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-5,0,2030,-12,0,0 +2013,5,11,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,700,5,0,1250,2,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2215,82,1,2346,72,1,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,34,1,1240,28,1,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,6,0,2340,6,0,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,-1,0,1150,-14,0,0 +2013,5,17,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-2,0,1248,-29,0,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,17,1,1845,3,0,0 +2013,7,11,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,118,1,1341,121,1,0 +2013,10,18,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1724,23,1,1940,10,0,0 +2013,4,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,8,0,2015,5,0,0 +2013,8,20,2,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,610,-5,0,738,-20,0,0 +2013,10,20,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,-3,0,1255,-12,0,0 +2013,10,9,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,640,3,0,820,-9,0,0 +2013,10,21,1,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-7,0,1945,-13,0,0 +2013,6,6,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-4,0,2354,-10,0,0 +2013,6,3,1,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,6,0,1645,2,0,0 +2013,9,30,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,22,1,1720,25,1,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,701,5,0,945,3,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,0,0,1906,-1,0,0 +2013,4,23,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1015,-1,0,1315,-4,0,0 +2013,9,5,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,-6,0,1518,1,0,0 +2013,6,24,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,15,1,1150,21,1,0 +2013,5,20,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,17,1,1411,7,0,0 +2013,4,26,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-6,0,641,-10,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,742,-4,0,1351,-26,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1935,0,0,55,4,0,0 +2013,6,8,6,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1136,-5,0,1301,-4,0,0 +2013,6,8,6,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1110,-1,0,1455,-19,0,0 +2013,10,21,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1635,14,0,1745,7,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1855,0,,2023,0,1,1 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,91,1,2210,107,1,0 +2013,8,21,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,840,-4,0,1116,-12,0,0 +2013,8,21,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,9,0,2103,6,0,0 +2013,10,15,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1410,-4,0,1650,-19,0,0 +2013,4,6,6,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,-2,0,1910,72,1,0 +2013,4,28,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,17,1,1940,23,1,0 +2013,5,5,7,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1245,10,0,1525,-24,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1014,18,1,1138,18,1,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1020,-6,0,1218,-11,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,25,1,2300,12,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2220,1,0,2315,-12,0,0 +2013,8,2,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-6,0,1825,-12,0,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,2,0,800,6,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1240,5,0,1515,-30,0,0 +2013,10,14,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,958,41,1,1045,53,1,0 +2013,4,23,2,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1403,4,0,1653,13,0,0 +2013,7,7,7,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-11,0,525,-11,0,0 +2013,10,24,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,840,-2,0,955,-4,0,0 +2013,4,11,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-12,0,1258,-3,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,810,0,0,1245,-3,0,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1315,46,1,1610,46,1,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,27,1,2236,29,1,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1540,52,1,1830,40,1,0 +2013,4,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1059,-3,0,1117,-12,0,0 +2013,5,23,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1455,97,1,1600,85,1,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1610,-1,0,1715,-8,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,63,1,1459,61,1,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,12,0,1910,4,0,0 +2013,5,3,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1945,-1,0,2120,-12,0,0 +2013,7,20,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1728,-5,0,1802,-3,0,0 +2013,10,29,2,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1406,-8,0,1540,-17,0,0 +2013,9,11,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-2,0,1244,-7,0,0 +2013,8,6,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-2,0,745,-10,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,0,,1550,0,1,1 +2013,9,30,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,820,-9,0,1015,0,0,0 +2013,10,11,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,720,1,0,845,-9,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1305,-4,0,1737,-22,0,0 +2013,4,4,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1140,-2,0,1202,-12,0,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-5,0,2058,-4,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2245,-3,0,2347,-11,0,0 +2013,4,22,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1355,0,0,1450,-6,0,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,30,1,758,43,1,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,47,1,1553,46,1,0 +2013,5,24,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-4,0,848,-8,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,-1,0,1055,-2,0,0 +2013,5,30,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1850,2,0,2045,11,0,0 +2013,9,24,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1635,-3,0,1951,-20,0,0 +2013,8,21,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-1,0,1510,2,0,0 +2013,4,22,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2015,74,1,2304,75,1,0 +2013,10,1,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,730,71,1,955,66,1,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1700,-1,0,1830,13,0,0 +2013,6,6,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1328,37,1,1439,42,1,0 +2013,6,2,7,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1455,71,1,1732,58,1,0 +2013,8,13,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,0,,1645,0,1,1 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1249,4,0,1652,3,0,0 +2013,5,21,2,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,1,0,1655,-16,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2003,48,1,2134,43,1,0 +2013,9,12,4,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1918,116,1,2159,236,1,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,850,17,1,1112,-4,0,0 +2013,7,3,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1609,74,1,1928,39,1,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1915,-5,0,2222,-23,0,0 +2013,10,12,6,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,3,0,2212,-6,0,0 +2013,7,19,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2117,48,1,2247,49,1,0 +2013,10,14,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-7,0,600,-7,0,0 +2013,10,17,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1447,11,0,1620,8,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1010,-3,0,1155,-11,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,821,0,0,1054,-13,0,0 +2013,4,22,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,3,0,1855,15,1,0 +2013,9,23,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1735,9,0,1933,-6,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,725,-1,0,906,-1,0,0 +2013,10,11,5,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,40,0,0,502,-18,0,0 +2013,8,14,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,950,-2,0,1309,-15,0,0 +2013,5,19,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1425,2,0,1635,1,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-4,0,1805,-11,0,0 +2013,5,30,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-6,0,2102,-17,0,0 +2013,6,17,1,9E,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-4,0,1716,15,1,0 +2013,9,27,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-5,0,833,-5,0,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,126,1,1933,130,1,0 +2013,4,8,1,FL,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-4,0,1950,-12,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,710,-4,0,845,-5,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1440,-5,0,1750,-30,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1727,-13,0,2024,-29,0,0 +2013,7,14,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,21,1,1100,24,1,0 +2013,7,3,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1525,-4,0,1637,-7,0,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,-2,0,1415,-12,0,0 +2013,4,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1706,-2,0,2323,-19,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-3,0,1448,-10,0,0 +2013,8,1,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-1,0,949,9,0,0 +2013,9,18,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1244,-4,0,1725,1,0,0 +2013,8,30,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2040,-4,0,2248,-17,0,0 +2013,5,17,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,35,1,2305,40,1,0 +2013,8,21,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-3,0,1227,1,0,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,915,16,1,1134,9,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1325,0,0,1850,17,1,0 +2013,6,16,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,729,-9,0,0 +2013,10,10,4,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1440,48,1,1820,28,1,0 +2013,8,17,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,855,-2,0,1230,-12,0,0 +2013,6,14,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1645,-2,0,1945,11,0,0 +2013,5,4,6,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,1,0,1430,0,0,0 +2013,8,5,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1225,-3,0,1310,-7,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1655,3,0,1800,7,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,846,-5,0,925,-14,0,0 +2013,4,2,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,810,-4,0,1113,-2,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,39,1,929,48,1,0 +2013,7,21,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-6,0,602,-10,0,0 +2013,8,19,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,-4,0,2322,5,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-11,0,1008,-27,0,0 +2013,10,31,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1538,141,1,1645,133,1,0 +2013,4,28,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,0,0,2030,-5,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1425,15,1,1550,15,1,0 +2013,9,8,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-6,0,1344,-13,0,0 +2013,9,2,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-8,0,952,-29,0,0 +2013,5,25,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,30,1,745,27,1,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,845,3,0,1055,-19,0,0 +2013,10,10,4,9E,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,0,0,1301,-18,0,0 +2013,9,27,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1140,0,0,1445,-1,0,0 +2013,6,29,6,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,0,0,830,12,0,0 +2013,4,26,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-1,0,808,20,1,0 +2013,7,15,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,-9,0,1140,15,1,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1350,-3,0,2050,3,0,0 +2013,6,24,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1735,6,0,2008,-3,0,0 +2013,4,19,5,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,125,1,1634,108,1,0 +2013,5,23,4,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,600,-3,0,821,-14,0,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1510,-1,0,1622,-2,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,57,1,2320,70,1,0 +2013,6,16,7,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,-6,0,1845,5,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-4,0,1336,-13,0,0 +2013,8,22,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1543,20,1,1910,9,0,0 +2013,8,7,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,1,0,1338,-1,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,2036,168,1,2307,151,1,0 +2013,8,14,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,630,0,0,837,-3,0,0 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,959,-2,0,1255,-2,0,0 +2013,9,3,2,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1800,-1,0,1950,-7,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,3,0,1355,-15,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2150,39,1,15,41,1,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,-2,0,1028,-20,0,0 +2013,5,18,6,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1725,2,0,2040,-28,0,0 +2013,4,17,3,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,10,0,810,-18,0,0 +2013,4,18,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1908,77,1,1929,80,1,0 +2013,9,17,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,6,0,556,5,0,0 +2013,8,16,5,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1350,0,0,1623,1,0,0 +2013,10,14,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1345,-2,0,1529,-11,0,0 +2013,7,13,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,745,-9,0,900,-13,0,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,835,-7,0,1105,-10,0,0 +2013,9,26,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,32,1,2040,27,1,0 +2013,7,9,2,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1427,29,1,2233,39,1,0 +2013,7,31,3,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1055,0,0,1918,-10,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1329,-4,0,1801,-20,0,0 +2013,7,13,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,24,1,2302,13,0,0 +2013,7,28,7,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,-2,0,1615,-14,0,0 +2013,7,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1005,-2,0,1227,-3,0,0 +2013,7,18,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,1,0,1800,1,0,0 +2013,9,3,2,AA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,810,-11,0,1545,14,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,9,0,2330,-4,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,825,15,1,1025,10,0,0 +2013,10,1,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1835,1,0,2015,-1,0,0 +2013,9,17,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1317,78,1,1536,62,1,0 +2013,4,1,1,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1235,8,0,1430,15,1,0 +2013,6,12,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1852,-3,0,1942,-9,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1645,-2,0,1824,-15,0,0 +2013,4,9,2,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,5,0,2148,-4,0,0 +2013,8,21,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1525,19,1,1645,19,1,0 +2013,5,6,1,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1207,-6,0,1340,-24,0,0 +2013,8,5,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1957,-4,0,2125,-16,0,0 +2013,4,11,4,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,654,-2,0,1036,4,0,0 +2013,6,18,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,54,1,815,68,1,0 +2013,10,15,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-9,0,2210,7,0,0 +2013,10,8,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2259,-4,0,608,-12,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,-6,0,2215,-19,0,0 +2013,6,30,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1115,-1,0,1240,9,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2040,270,1,2205,273,1,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1601,-3,0,1919,18,1,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,20,1,1855,11,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,-3,0,1349,-9,0,0 +2013,5,26,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1630,-1,0,1835,-13,0,0 +2013,7,16,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,958,-8,0,1230,-13,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1708,-5,0,2305,-15,0,0 +2013,6,10,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,72,1,825,83,1,0 +2013,5,24,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1545,-2,0,1715,-12,0,0 +2013,8,10,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,-1,0,2045,-4,0,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1855,10,0,2110,12,0,0 +2013,9,3,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,18,1,1702,14,0,0 +2013,5,17,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,2,0,1327,-10,0,0 +2013,4,4,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2145,14,0,2315,6,0,0 +2013,9,18,3,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1110,3,0,1359,31,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1256,-3,0,1423,-15,0,0 +2013,8,26,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1501,-1,0,1550,-1,0,0 +2013,7,15,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1750,-9,0,1910,-11,0,0 +2013,10,4,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,605,-7,0,1035,-8,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1115,-3,0,1236,3,0,0 +2013,9,8,7,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,914,-7,0,1130,-12,0,0 +2013,4,26,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-2,0,2305,-9,0,0 +2013,9,2,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,730,8,0,1538,16,1,0 +2013,10,30,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-4,0,1557,-4,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2039,-5,0,2303,43,1,0 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,-6,0,2056,-13,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1400,2,0,1625,-8,0,0 +2013,9,4,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,900,0,0,1641,13,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,955,10,0,1630,-5,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1415,2,0,1525,-7,0,0 +2013,7,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1910,4,0,2105,3,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2040,-1,0,2155,-24,0,0 +2013,9,29,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-2,0,2059,-2,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,18,1,1136,1,0,0 +2013,10,9,3,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,-3,0,1343,-5,0,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1000,0,,1125,0,1,1 +2013,6,13,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1640,70,1,1751,77,1,0 +2013,10,14,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1245,-11,0,1430,-3,0,0 +2013,4,1,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-7,0,1023,1,0,0 +2013,10,22,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1135,0,0,1355,-9,0,0 +2013,6,25,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1006,-2,0,1628,-5,0,0 +2013,7,6,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,845,17,1,1055,2,0,0 +2013,9,29,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,950,-7,0,1133,-12,0,0 +2013,8,9,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,70,1,2220,67,1,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,841,-4,0,1054,2,0,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-3,0,843,-26,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1017,-1,0,1124,-12,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1750,-4,0,1850,28,1,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,-6,0,1717,-8,0,0 +2013,10,31,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,855,-10,0,1028,-12,0,0 +2013,9,29,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-6,0,1254,-4,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-2,0,1623,-14,0,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1140,29,1,1315,14,0,0 +2013,10,4,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-4,0,650,-4,0,0 +2013,7,22,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1935,-9,0,2058,-16,0,0 +2013,7,26,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,28,1,1405,41,1,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1007,-3,0,1629,4,0,0 +2013,5,4,6,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1120,0,0,1235,1,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,950,1,0,1122,-5,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,841,4,0,1442,-24,0,0 +2013,10,7,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,709,-6,0,902,-17,0,0 +2013,8,9,5,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1815,113,1,2125,104,1,0 +2013,7,8,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1450,5,0,0 +2013,9,22,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,927,-7,0,1434,-15,0,0 +2013,5,29,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2044,0,0,2350,-13,0,0 +2013,5,6,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-10,0,2006,0,0,0 +2013,4,3,3,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2130,-3,0,610,-21,0,0 +2013,4,18,4,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,40,1,1950,37,1,0 +2013,5,12,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-5,0,2312,-14,0,0 +2013,6,19,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,-6,0,930,-9,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,1,0,1120,-3,0,0 +2013,8,23,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-13,0,1317,-17,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1025,-2,0,1310,18,1,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,0,0,1015,-3,0,0 +2013,9,2,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,640,-5,0,810,-33,0,0 +2013,6,21,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,5,0,1950,-4,0,0 +2013,5,29,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1745,1,0,2022,20,1,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,-2,0,2145,-1,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,13,0,1505,8,0,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2110,-2,0,2252,-7,0,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1328,-4,0,1455,-19,0,0 +2013,6,17,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,927,183,1,1040,180,1,0 +2013,9,11,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-8,0,821,-17,0,0 +2013,9,24,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1910,-8,0,2009,-9,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,600,-2,0,720,-4,0,0 +2013,4,4,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1900,-5,0,2012,-4,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-2,0,1627,-6,0,0 +2013,9,8,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,755,3,0,935,-12,0,0 +2013,8,9,5,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,625,-7,0,808,-17,0,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2115,6,0,2347,-7,0,0 +2013,9,11,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1340,-3,0,1440,-8,0,0 +2013,5,13,1,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,9,0,2039,-25,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1925,8,0,2110,-6,0,0 +2013,4,24,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1106,0,0,1209,0,0,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1428,-3,0,1654,-20,0,0 +2013,9,4,3,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1304,-2,0,2131,28,1,0 +2013,10,6,7,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-9,0,1911,-9,0,0 +2013,10,1,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,0,0,1357,-6,0,0 +2013,6,19,3,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,1307,-23,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-1,0,859,-11,0,0 +2013,5,9,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1915,15,1,2155,15,1,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,-4,0,50,-13,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1012,-4,0,1159,4,0,0 +2013,7,7,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-2,0,834,5,0,0 +2013,5,22,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2015,-3,0,2037,-13,0,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-5,0,1643,35,1,0 +2013,5,6,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-9,0,1054,-17,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1040,0,0,1335,-10,0,0 +2013,4,28,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,10,0,1440,27,1,0 +2013,5,9,4,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,900,-24,0,0 +2013,5,10,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-5,0,1031,-12,0,0 +2013,6,27,4,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1905,0,,2108,0,1,1 +2013,8,7,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,9,0,1205,17,1,0 +2013,8,14,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-11,0,909,0,0,0 +2013,7,20,6,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1245,-1,0,1324,-5,0,0 +2013,7,23,2,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-5,0,2125,-11,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,-3,0,1025,-19,0,0 +2013,8,21,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,0,,1620,0,1,1 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1019,3,0,1200,11,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1730,3,0,2205,1,0,0 +2013,7,12,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1145,-6,0,1300,-33,0,0 +2013,5,2,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,900,-2,0,1230,-14,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1745,69,1,1939,56,1,0 +2013,9,25,3,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1248,-9,0,1641,-13,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,-3,0,1013,-21,0,0 +2013,7,16,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,222,1,1815,230,1,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,6,0,1625,2,0,0 +2013,6,7,5,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,2,0,1736,-15,0,0 +2013,4,15,1,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1430,-11,0,1611,7,0,0 +2013,4,10,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1053,-4,0,1131,-1,0,0 +2013,6,8,6,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1750,-3,0,1958,35,1,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1246,1,0,1415,-6,0,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,645,-10,0,908,-16,0,0 +2013,6,18,2,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,17,1,1805,7,0,0 +2013,5,18,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,940,35,1,1100,28,1,0 +2013,4,15,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-3,0,1905,-1,0,0 +2013,6,3,1,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1925,3,0,2221,-8,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1802,20,1,2020,-1,0,0 +2013,7,4,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-10,0,1222,-27,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-3,0,954,-12,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,910,-4,0,1156,-5,0,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1525,-6,0,1712,2,0,0 +2013,8,4,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,4,0,2028,2,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1715,72,1,1828,61,1,0 +2013,4,12,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,747,-9,0,0 +2013,7,15,1,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1040,-3,0,1208,-21,0,0 +2013,7,8,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,2,0,1709,2,0,0 +2013,6,14,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,81,1,1645,92,1,0 +2013,7,22,1,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1925,-2,0,2133,-13,0,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1755,-1,0,1855,-1,0,0 +2013,10,5,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,800,-3,0,1046,-15,0,0 +2013,6,3,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,804,-2,0,950,-13,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,726,-4,0,905,2,0,0 +2013,5,7,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,825,-2,0,850,-9,0,0 +2013,8,5,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1530,-1,0,1740,-6,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,910,-3,0,1114,1,0,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,715,-3,0,900,-8,0,0 +2013,5,16,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,848,-3,0,950,-16,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,12,0,1230,4,0,0 +2013,8,25,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,808,-6,0,1108,4,0,0 +2013,6,23,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,540,0,0,804,-21,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,814,-7,0,958,-40,0,0 +2013,8,22,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1030,-2,0,1400,20,1,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,835,-1,0,945,-17,0,0 +2013,9,30,1,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1805,0,,1923,0,1,1 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1518,0,0,1721,-8,0,0 +2013,7,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1920,-4,0,2050,-1,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,955,-3,0,1601,-9,0,0 +2013,6,27,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,17,1,2110,22,1,0 +2013,7,1,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,8,0,929,11,0,0 +2013,4,27,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,1035,-11,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1754,29,1,2013,6,0,0 +2013,4,3,3,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1400,48,1,1535,37,1,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1315,15,1,1535,14,0,0 +2013,6,24,1,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,0,0,550,8,0,0 +2013,8,16,5,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2015,12,0,2105,0,0,0 +2013,7,8,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-4,0,1116,-2,0,0 +2013,4,12,5,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,845,-6,0,1001,-4,0,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1115,-1,0,1202,4,0,0 +2013,4,4,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1141,-3,0,1311,8,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,630,-3,0,910,-8,0,0 +2013,7,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2157,-5,0,2250,-6,0,0 +2013,10,15,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1905,16,1,2017,28,1,0 +2013,8,10,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-12,0,1317,1,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,920,5,0,1020,0,0,0 +2013,4,8,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,930,24,1,1100,17,1,0 +2013,7,6,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1133,-2,0,1341,-12,0,0 +2013,7,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1708,-6,0,1840,4,0,0 +2013,9,9,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1036,-8,0,1131,-17,0,0 +2013,5,12,7,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1425,3,0,1720,-15,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1605,14,0,1725,11,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1017,-1,0,1510,-5,0,0 +2013,6,10,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-2,0,1805,-26,0,0 +2013,10,2,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-5,0,1410,-2,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,534,-4,0,858,-8,0,0 +2013,10,3,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,620,-3,0,747,-17,0,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1048,-3,0,0 +2013,8,10,6,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1735,2,0,1825,-5,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,10,0,1655,14,0,0 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1620,47,1,1923,27,1,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,-2,0,1903,-12,0,0 +2013,4,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,710,-3,0,815,-1,0,0 +2013,10,16,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,-6,0,1347,-14,0,0 +2013,4,24,3,DL,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,800,-4,0,1052,-8,0,0 +2013,7,29,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,9,0,1415,7,0,0 +2013,7,9,2,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1625,9,0,2114,-6,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,-3,0,1445,-14,0,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1046,17,1,1205,7,0,0 +2013,10,7,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1700,0,0,2017,-3,0,0 +2013,10,11,5,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,555,-3,0,1420,-20,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,930,-2,0,1035,-10,0,0 +2013,10,18,5,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-6,0,1930,7,0,0 +2013,6,5,3,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1725,13,0,2155,3,0,0 +2013,9,6,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1125,-2,0,1259,-2,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,14,0,1846,15,1,0 +2013,10,7,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1905,-17,0,1954,-22,0,0 +2013,10,22,2,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,955,-10,0,1203,-19,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,745,-4,0,1050,-13,0,0 +2013,4,30,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-7,0,2040,4,0,0 +2013,8,11,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1225,26,1,1335,30,1,0 +2013,7,8,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,3,0,2205,-11,0,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,-2,0,1832,-5,0,0 +2013,8,18,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,-2,0,1426,-19,0,0 +2013,4,11,4,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1056,-5,0,1300,-7,0,0 +2013,6,7,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,59,1,2250,50,1,0 +2013,9,14,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-2,0,1940,-19,0,0 +2013,5,16,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1730,12,0,1930,-3,0,0 +2013,5,18,6,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-8,0,1213,3,0,0 +2013,6,17,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,0,0,1652,43,1,0 +2013,6,7,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2340,-5,0,609,-6,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1317,-2,0,1527,-4,0,0 +2013,9,4,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1804,100,1,2259,99,1,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,835,52,1,1055,51,1,0 +2013,9,20,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1238,12,0,1429,0,0,0 +2013,5,8,3,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1828,-9,0,2006,-22,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1345,-3,0,1608,-29,0,0 +2013,7,2,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,1040,-11,0,0 +2013,10,17,4,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1709,-7,0,1750,-14,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,600,-2,0,917,-3,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1535,0,0,1700,-10,0,0 +2013,10,26,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1950,-5,0,2215,-26,0,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1530,5,0,1803,16,1,0 +2013,8,25,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,1,0,1531,5,0,0 +2013,9,2,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1114,-4,0,1244,1,0,0 +2013,8,17,6,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,816,-4,0,1029,-2,0,0 +2013,4,5,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1645,33,1,1725,16,1,0 +2013,10,31,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-6,0,915,-26,0,0 +2013,7,20,6,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,846,-1,0,0 +2013,5,10,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-1,0,1210,-9,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,-2,0,1929,-7,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,-2,0,1211,-2,0,0 +2013,4,5,5,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-6,0,1607,-8,0,0 +2013,8,4,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-6,0,2250,0,0,0 +2013,4,16,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,625,1,0,748,3,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,34,1,1810,34,1,0 +2013,10,28,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1723,-10,0,1900,-21,0,0 +2013,7,10,3,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-12,0,1645,-19,0,0 +2013,9,27,5,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1700,2,0,1845,-5,0,0 +2013,8,28,3,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,953,-5,0,1522,1,0,0 +2013,8,13,2,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,914,55,1,1056,38,1,0 +2013,6,14,5,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-12,0,2015,-19,0,0 +2013,4,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1519,-2,0,1815,-9,0,0 +2013,9,29,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-3,0,1230,-7,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1800,2,0,35,-12,0,0 +2013,7,2,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2005,-4,0,2020,3,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-3,0,1805,-8,0,0 +2013,8,28,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1257,-4,0,1458,69,1,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,620,-5,0,750,-5,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,-1,0,1616,-18,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1155,-8,0,1551,-23,0,0 +2013,6,26,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1115,1,0,1310,29,1,0 +2013,4,21,7,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,739,-1,0,845,-10,0,0 +2013,10,8,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,-6,0,2130,-14,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,755,7,0,1130,2,0,0 +2013,9,12,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1459,121,1,1814,186,1,0 +2013,5,2,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1955,176,1,2210,161,1,0 +2013,6,17,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,24,1,1927,9,0,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1459,-1,0,1801,-21,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,-1,0,921,4,0,0 +2013,6,24,1,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1742,-8,0,1919,-15,0,0 +2013,10,28,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1224,-2,0,1441,-8,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,840,0,0,1005,-17,0,0 +2013,10,15,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,6,0,2126,-2,0,0 +2013,10,2,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,-11,0,1400,-26,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,725,25,1,853,11,0,0 +2013,7,9,2,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,185,1,2041,173,1,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1035,-7,0,1203,-12,0,0 +2013,6,18,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-7,0,1635,-2,0,0 +2013,5,9,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-14,0,700,-21,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1405,0,0,1620,-6,0,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1905,29,1,2240,22,1,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1100,-1,0,1220,-8,0,0 +2013,5,14,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-7,0,851,-20,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,840,-1,0,1018,-3,0,0 +2013,5,1,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,1,0,1145,-2,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,605,0,0,734,-17,0,0 +2013,7,5,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-5,0,1345,-11,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1949,15,1,2133,21,1,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,548,-5,0,857,-29,0,0 +2013,4,20,6,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,915,16,1,1155,2,0,0 +2013,7,12,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,0,0,1130,-5,0,0 +2013,5,15,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,22,1,2018,13,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,800,15,1,1109,14,0,0 +2013,8,3,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,8,0,1645,6,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1120,-4,0,1206,-17,0,0 +2013,10,22,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1106,61,1,1235,48,1,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1505,-3,0,1725,-9,0,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,615,-4,0,730,-10,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,610,-3,0,900,-3,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2210,19,1,1,15,1,0 +2013,8,27,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2316,0,0,707,9,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,10,0,1750,-7,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1120,-1,0,1325,13,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1425,102,1,1510,103,1,0 +2013,9,3,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1420,6,0,1600,-2,0,0 +2013,8,5,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1530,3,0,1800,3,0,0 +2013,4,3,3,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1310,5,0,1345,-4,0,0 +2013,9,29,7,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1303,4,0,1413,2,0,0 +2013,5,2,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,915,-5,0,1515,-7,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-2,0,2010,-19,0,0 +2013,6,28,5,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-3,0,1510,8,0,0 +2013,5,31,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,5,0,930,-24,0,0 +2013,7,17,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-13,0,935,-15,0,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2020,-3,0,2245,2,0,0 +2013,4,17,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1213,0,,1313,0,1,1 +2013,9,29,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2119,-4,0,2229,-10,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-10,0,859,-14,0,0 +2013,7,29,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1130,1,0,1414,-2,0,0 +2013,6,16,7,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1932,39,1,2034,54,1,0 +2013,10,23,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1645,17,1,1750,9,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1325,2,0,1450,-2,0,0 +2013,5,24,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,1145,-13,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,15,1,1305,10,0,0 +2013,6,9,7,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1150,22,1,1810,-3,0,0 +2013,9,18,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1610,-10,0,24,0,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1422,-2,0,1552,-5,0,0 +2013,9,29,7,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,925,-1,0,1804,-10,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,5,0,2215,-3,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,729,-2,0,901,1,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,915,-4,0,1305,-12,0,0 +2013,6,2,7,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,710,0,0,740,-2,0,0 +2013,5,12,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-6,0,1535,9,0,0 +2013,4,12,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,16,1,1140,50,1,0 +2013,9,11,3,YV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1219,14,0,1351,11,0,0 +2013,8,9,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2005,2,0,2115,7,0,0 +2013,10,6,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1613,-8,0,1812,-40,0,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,950,-6,0,1235,-9,0,0 +2013,10,22,2,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,-6,0,1235,-13,0,0 +2013,8,31,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,45,1,1640,31,1,0 +2013,7,31,3,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,812,-5,0,1350,-10,0,0 +2013,9,12,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,-9,0,1434,-24,0,0 +2013,8,24,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1622,-6,0,1730,-9,0,0 +2013,10,23,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,10,0,1930,16,1,0 +2013,6,6,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,1,0,1730,-2,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,610,0,0,725,-15,0,0 +2013,5,16,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,-5,0,1510,4,0,0 +2013,9,5,4,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,6,0,1355,3,0,0 +2013,7,15,1,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,916,-20,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,11,0,1030,-21,0,0 +2013,5,15,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,730,0,0,1013,-14,0,0 +2013,10,15,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-8,0,1617,-9,0,0 +2013,7,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,-2,0,2205,-11,0,0 +2013,9,17,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-8,0,1200,-15,0,0 +2013,6,8,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-2,0,1555,-4,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,627,71,1,800,92,1,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,8,0,2110,19,1,0 +2013,4,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2150,62,1,2300,58,1,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1855,13,0,2204,12,0,0 +2013,7,19,5,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1525,-5,0,1747,-1,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,815,-7,0,1109,-28,0,0 +2013,10,3,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,29,1,1847,25,1,0 +2013,9,23,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,-8,0,755,-20,0,0 +2013,10,30,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,-1,0,1514,3,0,0 +2013,8,17,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,928,-5,0,1059,-12,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,730,3,0,1300,0,0,0 +2013,5,8,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,1,0,1130,4,0,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,955,69,1,1139,63,1,0 +2013,8,2,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,-1,0,730,-9,0,0 +2013,9,26,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,-6,0,1459,-8,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1550,5,0,1725,-3,0,0 +2013,7,13,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-15,0,1026,-23,0,0 +2013,10,9,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,2007,0,0,2354,8,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,805,98,1,1020,88,1,0 +2013,9,10,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,844,5,0,1040,4,0,0 +2013,5,2,4,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1239,188,1,1702,172,1,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,6,0,915,4,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1755,0,0,1910,-6,0,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1920,36,1,2235,27,1,0 +2013,8,7,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-11,0,833,-7,0,0 +2013,8,2,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,4,0,848,2,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1810,-2,0,1833,-14,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-2,0,912,19,1,0 +2013,9,14,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1305,-2,0,1624,3,0,0 +2013,8,23,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1639,19,1,1919,16,1,0 +2013,7,5,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,926,-20,0,0 +2013,9,10,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,23,1,1044,7,0,0 +2013,6,21,5,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,-1,0,1710,11,0,0 +2013,9,12,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2141,77,1,2234,59,1,0 +2013,4,21,7,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-3,0,930,-3,0,0 +2013,5,17,5,9E,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1116,-7,0,1523,-16,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1450,-3,0,2215,2,0,0 +2013,5,22,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2030,12,0,2145,10,0,0 +2013,6,4,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-4,0,1414,-15,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,930,16,1,1025,21,1,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-2,0,945,2,0,0 +2013,4,5,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1910,-10,0,2139,-2,0,0 +2013,9,13,5,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1635,103,1,1740,100,1,0 +2013,5,25,6,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,845,7,0,1145,2,0,0 +2013,8,18,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,1,0,1110,-9,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1130,0,,1345,0,1,1 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,3,0,1800,1,0,0 +2013,5,22,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1133,32,1,1420,24,1,0 +2013,8,11,7,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1505,5,0,1749,-7,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,706,-9,0,1001,13,0,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,-9,0,1208,-35,0,0 +2013,10,27,7,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1655,162,1,1816,175,1,0 +2013,7,30,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,0,,1655,0,1,1 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,740,-9,0,1042,-13,0,0 +2013,5,12,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,0,0,1910,-40,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,-1,0,1810,-7,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1535,2,0,1640,-5,0,0 +2013,9,19,4,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2111,-8,0,507,-23,0,0 +2013,6,20,4,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,958,-1,0,1228,3,0,0 +2013,9,29,7,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1020,5,0,1535,1,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,-3,0,2248,-4,0,0 +2013,10,5,6,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1630,10,0,1850,13,0,0 +2013,5,15,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,850,-1,0,0 +2013,5,8,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2005,11,0,2050,-2,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1950,-1,0,2110,-9,0,0 +2013,9,26,4,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-12,0,1419,-25,0,0 +2013,6,2,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2130,20,1,2250,18,1,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,19,1,2240,13,0,0 +2013,8,10,6,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1035,12,0,1515,30,1,0 +2013,6,23,7,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1115,-16,0,1300,-12,0,0 +2013,5,30,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,2040,-5,0,2130,11,0,0 +2013,7,16,2,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,4,0,1526,-4,0,0 +2013,8,23,5,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-11,0,1220,-20,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2020,-2,0,2335,-2,0,0 +2013,4,12,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,802,-1,0,1408,-15,0,0 +2013,4,1,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,800,-5,0,1036,-13,0,0 +2013,10,26,6,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1500,-12,0,2256,-10,0,0 +2013,8,6,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-5,0,849,6,0,0 +2013,6,6,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1150,-7,0,1305,2,0,0 +2013,8,30,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-6,0,846,23,1,0 +2013,8,22,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,0,0,1155,-2,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2150,5,0,2310,3,0,0 +2013,7,1,1,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,640,-5,0,747,9,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,925,-4,0,1053,-14,0,0 +2013,7,23,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,78,1,1718,133,1,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,36,1,1758,38,1,0 +2013,6,2,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,41,1,805,30,1,0 +2013,8,3,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1947,-2,0,2130,-15,0,0 +2013,6,7,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,30,1,1630,16,1,0 +2013,10,18,5,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1119,-1,0,1213,-10,0,0 +2013,10,17,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1203,0,0,1412,8,0,0 +2013,10,8,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1715,63,1,1932,65,1,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,700,-7,0,835,-1,0,0 +2013,10,15,2,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2155,0,0,605,-32,0,0 +2013,5,27,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,4,0,2049,-8,0,0 +2013,4,14,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1144,0,0,1359,23,1,0 +2013,7,10,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-3,0,1239,-9,0,0 +2013,4,7,7,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,1,0,720,-10,0,0 +2013,9,10,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,745,-5,0,924,-8,0,0 +2013,8,1,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,19,1,2055,9,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,-3,0,1449,-15,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2115,34,1,5,34,1,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,-1,0,1735,3,0,0 +2013,10,12,6,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,1,0,825,2,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-1,0,1045,3,0,0 +2013,6,21,5,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1824,-3,0,2129,-19,0,0 +2013,10,14,1,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1235,-11,0,1359,18,1,0 +2013,4,18,4,EV,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1654,0,,1822,0,1,1 +2013,4,21,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-2,0,1135,-11,0,0 +2013,8,1,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,-2,0,1116,-9,0,0 +2013,5,16,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,9,0,1125,1,0,0 +2013,5,12,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-6,0,1558,-8,0,0 +2013,10,17,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1221,8,0,1925,-2,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,-3,0,1505,-1,0,0 +2013,9,10,2,EV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1215,-4,0,1407,1,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1510,-3,0,1605,-2,0,0 +2013,7,15,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1950,-3,0,2100,-14,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1200,8,0,1405,-1,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1012,-3,0,1425,-14,0,0 +2013,7,5,5,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,89,1,1258,93,1,0 +2013,7,20,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-1,0,903,9,0,0 +2013,9,15,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1540,21,1,2110,31,1,0 +2013,5,29,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1705,22,1,1825,15,1,0 +2013,8,24,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1340,1,0,1430,4,0,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-8,0,2001,10,0,0 +2013,6,26,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,805,-4,0,923,-14,0,0 +2013,10,3,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1102,-5,0,1857,-11,0,0 +2013,8,23,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-6,0,1730,-16,0,0 +2013,10,10,4,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,0,0,1020,10,0,0 +2013,4,26,5,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,700,0,0,1005,-6,0,0 +2013,7,21,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2035,96,1,2045,96,1,0 +2013,10,20,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1805,-4,0,1950,-16,0,0 +2013,9,18,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1125,-5,0,1221,-18,0,0 +2013,8,23,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1710,-2,0,1946,1,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2145,18,1,5,15,1,0 +2013,4,23,2,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1431,20,1,1544,40,1,0 +2013,7,12,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1821,-10,0,2219,7,0,0 +2013,8,25,7,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,0,0,2102,-30,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1905,85,1,2125,64,1,0 +2013,4,21,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1630,3,0,1800,-10,0,0 +2013,6,14,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,958,-4,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-4,0,2234,-15,0,0 +2013,7,5,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1321,0,0,2200,-21,0,0 +2013,8,11,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,816,-4,0,1100,0,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1758,-5,0,2044,2,0,0 +2013,8,17,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-8,0,1400,-15,0,0 +2013,10,10,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,63,1,1843,61,1,0 +2013,6,21,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1320,13,0,1410,15,1,0 +2013,5,26,7,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,-4,0,1515,-10,0,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1632,2,0,1956,-6,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2140,-2,0,2355,-7,0,0 +2013,5,14,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,9,0,1800,0,0,0 +2013,6,11,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,0,0,2058,-7,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1359,6,0,1559,-1,0,0 +2013,4,19,5,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1225,9,0,1330,-1,0,0 +2013,10,5,6,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1345,10,0,1510,2,0,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1050,9,0,1515,-1,0,0 +2013,7,4,4,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,-2,0,2320,-24,0,0 +2013,6,30,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1845,-2,0,2026,10,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,1,0,1445,-10,0,0 +2013,6,17,1,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,721,-3,0,911,-3,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,5,0,2300,1,0,0 +2013,4,18,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2210,215,1,56,195,1,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1330,-2,0,2120,7,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2150,-4,0,2337,-15,0,0 +2013,7,15,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,-2,0,1015,-8,0,0 +2013,6,27,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2017,-3,0,2250,-39,0,0 +2013,5,24,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,830,2,0,955,5,0,0 +2013,8,6,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,-8,0,1901,-1,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1045,-1,0,1420,-13,0,0 +2013,9,6,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1210,-11,0,1328,-13,0,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1342,0,,1714,0,1,1 +2013,8,30,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,915,-3,0,1042,-8,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1645,36,1,2017,27,1,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1825,1,0,2056,3,0,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1045,-5,0,1602,2,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1325,23,1,1610,14,0,0 +2013,10,8,2,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1015,0,,1321,0,1,1 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1635,-7,0,1844,-14,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,-6,0,2104,-21,0,0 +2013,8,5,1,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1234,25,1,1541,13,0,0 +2013,6,23,7,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,269,1,2245,245,1,0 +2013,8,29,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,-3,0,1620,-7,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,0,,1930,0,1,1 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1754,7,0,1907,3,0,0 +2013,8,22,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,13,0,2115,24,1,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,2,0,1100,8,0,0 +2013,8,27,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1836,-12,0,2030,-14,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,15,1,923,-1,0,0 +2013,8,8,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1645,20,1,1750,4,0,0 +2013,4,4,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1620,-6,0,1657,-9,0,0 +2013,5,16,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1049,-6,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,930,-1,0,1400,-18,0,0 +2013,8,1,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1823,-4,0,2112,-16,0,0 +2013,4,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,810,-12,0,941,-15,0,0 +2013,5,31,5,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1140,-2,0,2017,-11,0,0 +2013,8,15,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1230,-2,0,1351,1,0,0 +2013,7,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1351,68,1,1459,81,1,0 +2013,7,2,2,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1134,-4,0,1455,-3,0,0 +2013,5,8,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,28,1,1201,27,1,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-8,0,1529,28,1,0 +2013,5,23,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1135,9,0,1623,21,1,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1905,12,0,2240,15,1,0 +2013,8,13,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,-10,0,1810,-17,0,0 +2013,9,8,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,8,0,844,7,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1825,2,0,2005,24,1,0 +2013,8,21,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-2,0,1233,-9,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,69,1,1831,73,1,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,0,0,930,-6,0,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1607,-4,0,1901,-7,0,0 +2013,9,16,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1929,-7,0,2336,-16,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2110,-3,0,2225,-11,0,0 +2013,8,21,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,33,1,1902,34,1,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,-1,0,2307,-17,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1635,70,1,1735,72,1,0 +2013,10,1,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,0,0,1930,-3,0,0 +2013,6,23,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,36,1,935,42,1,0 +2013,7,5,5,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,800,-3,0,1018,-2,0,0 +2013,9,24,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1740,39,1,1855,35,1,0 +2013,8,23,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-7,0,1440,0,0,0 +2013,4,8,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1800,75,1,2235,73,1,0 +2013,8,5,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,-8,0,1619,-6,0,0 +2013,5,2,4,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,1100,19,1,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,3,0,1800,-2,0,0 +2013,7,19,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,550,-10,0,747,-24,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,945,-2,0,1235,-4,0,0 +2013,10,17,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,8,0,1500,1,0,0 +2013,10,20,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1938,0,0,2058,8,0,0 +2013,4,16,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1535,-1,0,1648,-3,0,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1744,-1,0,2025,-9,0,0 +2013,8,2,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1415,-2,0,1551,-10,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1350,0,0,1450,0,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1025,1,0,1210,-16,0,0 +2013,8,23,5,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1445,4,0,1722,-23,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,708,-3,0,1005,-24,0,0 +2013,7,13,6,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1100,-1,0,1335,1,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1405,-8,0,1724,-15,0,0 +2013,10,14,1,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,2,0,2050,-6,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,-1,0,2035,1,0,0 +2013,4,25,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,2050,-2,0,2245,-15,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-3,0,915,-4,0,0 +2013,5,28,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,850,-1,0,1110,10,0,0 +2013,8,17,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1335,-4,0,1419,-18,0,0 +2013,6,27,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1330,10,0,1500,7,0,0 +2013,10,1,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-4,0,805,-26,0,0 +2013,7,15,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,71,1,1639,62,1,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-1,0,1225,-11,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,910,6,0,1442,-8,0,0 +2013,9,11,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-11,0,1225,-23,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,1,0,2100,2,0,0 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,80,1,1305,71,1,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2145,69,1,37,63,1,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1050,11,0,1150,16,1,0 +2013,10,8,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,-7,0,1614,-8,0,0 +2013,4,20,6,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-1,0,1630,-6,0,0 +2013,10,2,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,-4,0,2129,-11,0,0 +2013,10,28,1,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1045,-5,0,1309,-9,0,0 +2013,7,26,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-1,0,1434,-11,0,0 +2013,5,16,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,642,-1,0,909,-15,0,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,2055,31,1,2245,25,1,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,737,90,1,944,92,1,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,3,0,1404,18,1,0 +2013,4,26,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1750,9,0,1815,6,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,32,1,2155,22,1,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-1,0,957,1,0,0 +2013,7,1,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-5,0,937,3,0,0 +2013,4,2,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1146,-5,0,1444,-16,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-5,0,2140,-14,0,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,1,0,1440,-11,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,2010,1,0,2238,6,0,0 +2013,4,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1345,7,0,1945,-5,0,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1130,0,,1304,0,1,1 +2013,9,8,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2035,-6,0,2211,-45,0,0 +2013,9,23,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-6,0,1630,-4,0,0 +2013,8,7,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1100,7,0,1524,20,1,0 +2013,10,23,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-6,0,1544,-15,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2054,46,1,2358,49,1,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,830,3,0,1404,-12,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,0,0,1120,1,0,0 +2013,10,7,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1915,38,1,2102,26,1,0 +2013,4,25,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,-2,0,1931,19,1,0 +2013,8,6,2,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1442,29,1,1615,37,1,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,905,12,0,1205,-2,0,0 +2013,4,26,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1745,-3,0,1905,1,0,0 +2013,5,20,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,-4,0,825,-6,0,0 +2013,7,31,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,3,0,1500,-12,0,0 +2013,7,22,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1305,45,1,1616,36,1,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,13796,Metropolitan Oakland International,Oakland,CA,1942,11,0,2308,23,1,0 +2013,7,25,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1115,-8,0,1350,4,0,0 +2013,9,25,3,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,-3,0,2110,-17,0,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2015,18,1,2309,9,0,0 +2013,6,19,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,914,-3,0,1037,-9,0,0 +2013,8,24,6,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1218,-2,0,1426,-6,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2140,16,1,2300,6,0,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,31,1,1850,20,1,0 +2013,5,20,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,814,-5,0,1036,-29,0,0 +2013,4,3,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1600,-4,0,1931,-3,0,0 +2013,9,14,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,910,-4,0,1715,1,0,0 +2013,5,12,7,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1250,0,0,2114,-7,0,0 +2013,6,3,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,1,0,1855,-20,0,0 +2013,7,28,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,829,-3,0,1020,-20,0,0 +2013,7,5,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-6,0,1311,-11,0,0 +2013,4,11,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,57,1,1650,51,1,0 +2013,7,10,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,720,3,0,917,-14,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,107,1,1302,86,1,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,10,0,2358,7,0,0 +2013,10,5,6,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1550,8,0,1725,-11,0,0 +2013,5,17,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1844,-4,0,2028,-31,0,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,23,1,1041,-7,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-3,0,1640,2,0,0 +2013,4,19,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-6,0,900,-7,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2145,14,0,2325,27,1,0 +2013,6,10,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1255,82,1,2145,108,1,0 +2013,4,29,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1359,-4,0,1518,-26,0,0 +2013,8,18,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,0,0,1750,-16,0,0 +2013,8,3,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1745,23,1,1850,28,1,0 +2013,4,20,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,-4,0,2000,-12,0,0 +2013,8,27,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-4,0,1628,-19,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,0,0,1409,-17,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1839,1,0,2040,-17,0,0 +2013,7,16,2,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,8,0,1330,3,0,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1907,0,,2003,0,1,1 +2013,6,13,4,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,828,17,1,1128,4,0,0 +2013,10,2,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1533,-4,0,1643,12,0,0 +2013,8,10,6,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,16,1,1409,20,1,0 +2013,9,25,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,22,1,1843,21,1,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-4,0,925,-9,0,0 +2013,10,4,5,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1655,190,1,2031,181,1,0 +2013,6,15,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,74,1,925,68,1,0 +2013,10,1,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,843,-3,0,1111,-22,0,0 +2013,5,21,2,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1000,-13,0,1208,-2,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,810,13,0,930,3,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,740,-10,0,836,-20,0,0 +2013,7,11,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,43,1,759,68,1,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1640,2,0,15,-4,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,-2,0,1207,-26,0,0 +2013,8,16,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,845,-6,0,1420,-19,0,0 +2013,5,14,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1736,82,1,2009,72,1,0 +2013,10,12,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,-6,0,2031,-16,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,39,1,1930,33,1,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1320,2,0,1805,-13,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,278,1,2210,263,1,0 +2013,6,5,3,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-8,0,1410,-20,0,0 +2013,9,23,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-3,0,1346,-16,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1840,18,1,2245,19,1,0 +2013,5,19,7,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,819,-3,0,945,-22,0,0 +2013,6,22,6,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1035,9,0,1130,8,0,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1805,10,0,1955,4,0,0 +2013,5,11,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,815,-8,0,1110,-18,0,0 +2013,8,9,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,93,1,1220,85,1,0 +2013,4,10,3,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1500,-5,0,1810,12,0,0 +2013,4,21,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1925,-1,0,2153,-4,0,0 +2013,7,26,5,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,600,-1,0,705,2,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,-5,0,1635,-17,0,0 +2013,10,2,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1127,-14,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1235,-3,0,1330,5,0,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,629,-5,0,1330,-5,0,0 +2013,8,17,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,32,1,1435,18,1,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,70,1,2250,65,1,0 +2013,8,21,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,-8,0,40,20,1,0 +2013,5,29,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1143,34,1,1457,5,0,0 +2013,10,30,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,35,1,1815,61,1,0 +2013,10,30,3,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1148,-7,0,1343,10,0,0 +2013,5,31,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1305,-2,0,2120,-6,0,0 +2013,9,25,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-3,0,755,-7,0,0 +2013,7,14,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,13,0,1720,27,1,0 +2013,6,27,4,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1212,65,1,1258,82,1,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2100,-4,0,2210,-9,0,0 +2013,7,22,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,949,-14,0,1103,-21,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,945,23,1,1105,19,1,0 +2013,4,27,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,925,-10,0,0 +2013,10,18,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,930,-1,0,1116,-29,0,0 +2013,9,8,7,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,0,0,947,-9,0,0 +2013,7,25,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1702,29,1,2003,36,1,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1745,47,1,1939,32,1,0 +2013,4,30,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1656,-7,0,1835,-22,0,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,615,86,1,835,85,1,0 +2013,8,24,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-6,0,1543,-6,0,0 +2013,7,26,5,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2300,-4,0,704,-8,0,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1840,65,1,2149,100,1,0 +2013,6,28,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1931,49,1,2320,55,1,0 +2013,7,30,2,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1415,0,0,2220,1,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1505,3,0,1715,2,0,0 +2013,8,8,4,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1000,-6,0,1225,20,1,0 +2013,10,18,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2006,-11,0,2315,-18,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1751,18,1,1926,28,1,0 +2013,4,23,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1455,8,0,1515,15,1,0 +2013,7,18,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1726,0,,2006,0,1,1 +2013,7,7,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,11,0,900,2,0,0 +2013,7,27,6,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,735,-10,0,930,6,0,0 +2013,4,11,4,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-4,0,2213,11,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,13,0,1625,7,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1050,10,0,1515,-12,0,0 +2013,6,30,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,-1,0,1055,8,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1841,76,1,2011,67,1,0 +2013,8,27,2,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,3,0,1725,-1,0,0 +2013,6,21,5,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1550,4,0,1740,10,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,48,1,2223,56,1,0 +2013,4,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-6,0,1446,-21,0,0 +2013,10,5,6,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1305,6,0,1525,12,0,0 +2013,9,2,1,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2040,0,,2259,0,1,1 +2013,7,8,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1612,4,0,1810,-20,0,0 +2013,5,13,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1810,-6,0,2005,-10,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1057,1,0,1344,-8,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-4,0,1630,-10,0,0 +2013,5,18,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1210,-15,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2105,21,1,2255,18,1,0 +2013,10,8,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1210,-5,0,1415,-23,0,0 +2013,10,9,3,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1048,-4,0,1336,-17,0,0 +2013,10,21,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1110,-5,0,1204,1,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-4,0,2110,-17,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1635,7,0,1805,18,1,0 +2013,4,12,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,700,-1,0,959,-19,0,0 +2013,8,14,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-7,0,2108,-1,0,0 +2013,5,22,3,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1940,25,1,2110,15,1,0 +2013,9,15,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1320,4,0,1645,3,0,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1715,5,0,2015,-12,0,0 +2013,5,6,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1740,-8,0,1805,-17,0,0 +2013,6,30,7,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,49,1,1545,44,1,0 +2013,8,31,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,637,1,0,933,-32,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,-4,0,2145,18,1,0 +2013,10,25,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,915,-11,0,1048,-10,0,0 +2013,6,24,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1854,159,1,2015,143,1,0 +2013,10,28,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1009,-3,0,1258,-18,0,0 +2013,10,12,6,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,800,-2,0,1018,-7,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1448,-1,0,1610,-5,0,0 +2013,10,7,1,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,915,-2,0,1115,-14,0,0 +2013,6,19,3,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1552,-3,0,1649,-9,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,607,-5,0,1203,-4,0,0 +2013,8,18,7,EV,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,851,-4,0,1007,1,0,0 +2013,9,29,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1915,-9,0,2245,-6,0,0 +2013,5,23,4,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,834,0,,1018,0,1,1 +2013,8,12,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1448,-2,0,1744,-13,0,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,720,-4,0,1025,0,0,0 +2013,9,8,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-1,0,1140,7,0,0 +2013,9,16,1,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,935,1,0,1420,-2,0,0 +2013,6,23,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1248,120,1,1419,133,1,0 +2013,7,26,5,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,-1,0,941,6,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,-1,0,1715,-7,0,0 +2013,9,19,4,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,912,-2,0,1233,-16,0,0 +2013,8,23,5,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2210,-3,0,2300,-7,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1129,0,0,1316,-5,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1200,15,1,1344,1,0,0 +2013,8,16,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,1,0,945,-21,0,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,726,-4,0,905,-7,0,0 +2013,4,5,5,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1640,-5,0,2020,2,0,0 +2013,9,2,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,901,-10,0,951,-6,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1458,6,0,1624,-5,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,18,1,2000,16,1,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1935,63,1,2255,52,1,0 +2013,6,25,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,759,-17,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,11,0,1217,-2,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,-1,0,1050,-14,0,0 +2013,6,1,6,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2229,8,0,655,5,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2030,30,1,2235,48,1,0 +2013,9,6,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2040,60,1,2205,51,1,0 +2013,5,18,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1830,-4,0,2045,21,1,0 +2013,5,31,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-6,0,1110,-16,0,0 +2013,6,25,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1145,4,0,1300,-2,0,0 +2013,7,27,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,955,-3,0,1100,-10,0,0 +2013,5,17,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,800,-1,0,920,-9,0,0 +2013,10,7,1,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,13,0,2219,14,0,0 +2013,5,17,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,129,1,1235,124,1,0 +2013,6,7,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1045,8,0,1918,35,1,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,719,2,0,1137,-7,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1140,80,1,1319,76,1,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1345,2,0,1510,2,0,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,10,0,1254,12,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,8,0,1609,1,0,0 +2013,7,29,1,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,2030,-8,0,2211,-34,0,0 +2013,7,11,4,VX,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,800,-3,0,1610,-15,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,-4,0,1105,-6,0,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1450,452,1,1659,461,1,0 +2013,8,26,1,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-5,0,1806,-9,0,0 +2013,4,5,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1757,-5,0,1930,-18,0,0 +2013,5,10,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1135,-5,0,1305,5,0,0 +2013,7,26,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1202,18,1,1326,11,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,-4,0,2320,-7,0,0 +2013,5,6,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-12,0,953,-28,0,0 +2013,9,3,2,OO,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1440,1,0,1704,6,0,0 +2013,5,18,6,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1830,-5,0,2000,-20,0,0 +2013,7,14,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1450,-8,0,1609,-46,0,0 +2013,6,24,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,-1,0,909,-6,0,0 +2013,8,19,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,30,1,2135,24,1,0 +2013,5,4,6,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,745,-6,0,910,0,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1115,-3,0,1458,-10,0,0 +2013,7,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,6,0,1809,7,0,0 +2013,6,6,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,753,-7,0,930,-8,0,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,0,0,1310,2,0,0 +2013,4,13,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-7,0,1255,-8,0,0 +2013,7,29,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,0,0,1546,9,0,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1820,41,1,2105,36,1,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1530,-3,0,1634,-13,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1830,6,0,1921,3,0,0 +2013,7,27,6,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1108,29,1,1259,13,0,0 +2013,9,5,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,78,1,1536,73,1,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1803,36,1,2117,11,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,-3,0,1845,-3,0,0 +2013,7,3,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,-1,0,1200,-3,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,58,1,1905,39,1,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,-3,0,2300,-8,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-1,0,1118,-12,0,0 +2013,7,10,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2029,2,0,453,-4,0,0 +2013,8,6,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,3,0,1220,-7,0,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-1,0,930,-3,0,0 +2013,8,4,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,820,2,0,915,22,1,0 +2013,10,26,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,535,-2,0,935,-12,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-4,0,1655,-15,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1553,146,1,1754,150,1,0 +2013,6,30,7,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1835,83,1,2155,89,1,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1720,137,1,1925,122,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1655,10,0,1814,-4,0,0 +2013,4,16,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2055,44,1,2228,38,1,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1815,10,0,2113,-5,0,0 +2013,6,23,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1543,-6,0,1615,-6,0,0 +2013,8,28,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1414,37,1,1614,101,1,0 +2013,8,1,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,6,0,2235,0,0,0 +2013,7,17,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,1,0,1620,-12,0,0 +2013,4,30,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1315,-4,0,2122,-20,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1130,0,0,1725,-26,0,0 +2013,4,9,2,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1010,36,1,1545,53,1,0 +2013,4,29,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,4,0,2110,-4,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1855,20,1,2055,15,1,0 +2013,9,12,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1750,94,1,2002,90,1,0 +2013,10,23,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,0,0,1553,1,0,0 +2013,6,30,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,700,-8,0,858,-26,0,0 +2013,9,2,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1615,27,1,1829,39,1,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1750,10,0,1911,2,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1245,-2,0,1435,-27,0,0 +2013,5,29,3,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1248,31,1,1604,4,0,0 +2013,6,6,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,610,-7,0,906,-14,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,851,-4,0,1255,-16,0,0 +2013,5,21,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1634,7,0,1955,1,0,0 +2013,10,21,1,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1815,6,0,2058,-8,0,0 +2013,5,8,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,710,-8,0,905,-24,0,0 +2013,10,17,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1725,-2,0,2012,11,0,0 +2013,10,28,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1945,-6,0,2105,-15,0,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2205,6,0,2349,-9,0,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,15,1,1933,5,0,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,88,1,1831,103,1,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,2,0,1215,24,1,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,57,1,1915,40,1,0 +2013,10,26,6,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1232,6,0,2100,13,0,0 +2013,8,20,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,5,0,1612,-8,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,-5,0,1439,-2,0,0 +2013,10,10,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1030,3,0,1143,-3,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1510,8,0,1830,-12,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,-4,0,1113,-16,0,0 +2013,5,1,3,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,700,6,0,800,-3,0,0 +2013,9,20,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-2,0,805,-13,0,0 +2013,4,10,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,208,1,2230,190,1,0 +2013,6,12,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-4,0,1914,-5,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1412,6,0,1653,1,0,0 +2013,10,24,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-7,0,1105,-27,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1740,-1,0,1850,6,0,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1308,1,0,1435,-4,0,0 +2013,9,18,3,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2015,-2,0,2145,7,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,900,-1,0,1015,2,0,0 +2013,8,27,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2113,-8,0,2307,-27,0,0 +2013,4,4,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1310,-4,0,1410,1,0,0 +2013,10,29,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,515,-8,0,633,-13,0,0 +2013,6,18,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,4,0,1055,-11,0,0 +2013,9,30,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,750,0,0,800,-7,0,0 +2013,4,21,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2015,30,1,2220,22,1,0 +2013,10,18,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1000,-4,0,1200,-5,0,0 +2013,4,20,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,800,-3,0,905,-10,0,0 +2013,7,16,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-9,0,2105,23,1,0 +2013,4,20,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-9,0,1909,-13,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,820,1,0,1130,-15,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1105,-1,0,1330,-9,0,0 +2013,8,5,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,518,-2,0,554,1,0,0 +2013,10,5,6,EV,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,550,2,0,838,-7,0,0 +2013,6,11,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1525,0,0,1940,-7,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1530,5,0,1730,-15,0,0 +2013,10,11,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1055,4,0,1155,9,0,0 +2013,8,29,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,2,0,1510,0,0,0 +2013,4,14,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1843,-1,0,2138,-4,0,0 +2013,9,6,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,13,0,1705,11,0,0 +2013,4,14,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,945,85,1,1129,87,1,0 +2013,4,18,4,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-6,0,1140,-3,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1050,7,0,1810,17,1,0 +2013,5,22,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,-2,0,940,-5,0,0 +2013,6,13,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1208,-7,0,1330,29,1,0 +2013,6,29,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,1,0,1914,2,0,0 +2013,5,24,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,945,-4,0,1053,-6,0,0 +2013,4,14,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,-3,0,935,-11,0,0 +2013,5,17,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1240,14,0,0 +2013,5,2,4,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1638,-3,0,1900,-20,0,0 +2013,10,21,1,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-9,0,717,-11,0,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-9,0,1647,-22,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1450,44,1,1810,31,1,0 +2013,5,20,1,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,837,0,0,1143,19,1,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2256,-4,0,2303,-12,0,0 +2013,4,22,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1839,5,0,2015,-1,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1625,0,0,1817,-9,0,0 +2013,5,29,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1651,0,0,2008,-7,0,0 +2013,8,25,7,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1100,-4,0,1155,-17,0,0 +2013,10,29,2,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1710,-6,0,2300,-18,0,0 +2013,9,25,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,2,0,2133,6,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1405,-3,0,1615,-21,0,0 +2013,6,1,6,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1216,0,0,1302,-6,0,0 +2013,10,2,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-8,0,1310,-23,0,0 +2013,4,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,607,-3,0,905,-5,0,0 +2013,10,29,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,1,0,1649,-7,0,0 +2013,4,23,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1118,26,1,1306,38,1,0 +2013,5,24,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-8,0,1831,-7,0,0 +2013,10,17,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,-5,0,1410,-7,0,0 +2013,8,11,7,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1910,-6,0,1955,-11,0,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1001,-2,0,1149,-12,0,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,10,0,855,24,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,23,1,1817,4,0,0 +2013,10,23,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-6,0,920,-23,0,0 +2013,9,24,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1935,-8,0,2150,-25,0,0 +2013,8,5,1,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-2,0,2050,-9,0,0 +2013,9,29,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,856,-13,0,1038,-3,0,0 +2013,8,13,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1355,101,1,1432,94,1,0 +2013,4,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2007,10,0,2309,6,0,0 +2013,7,15,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-1,0,1902,-6,0,0 +2013,10,1,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,-7,0,1525,0,0,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1015,0,,1217,0,1,1 +2013,10,20,7,EV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,950,-8,0,1152,-4,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1621,89,1,1742,67,1,0 +2013,4,18,4,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1120,141,1,1333,190,1,0 +2013,9,8,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1123,7,0,1514,5,0,0 +2013,5,27,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,935,-5,0,1145,15,1,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1835,78,1,1940,85,1,0 +2013,10,20,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-7,0,1552,-15,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,-6,0,1525,1,0,0 +2013,8,4,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1645,4,0,1734,5,0,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1510,17,1,1735,12,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,-1,0,1807,-16,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1145,79,1,1513,139,1,0 +2013,4,29,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,635,-4,0,831,-10,0,0 +2013,7,24,3,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1815,87,1,2057,72,1,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1740,-1,0,2100,-2,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,4,0,1548,-18,0,0 +2013,4,25,4,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-10,0,908,-10,0,0 +2013,7,15,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,-8,0,1048,-17,0,0 +2013,5,26,7,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,-2,0,2000,-6,0,0 +2013,10,7,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1445,-4,0,1905,-25,0,0 +2013,4,6,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1055,-3,0,1210,-21,0,0 +2013,7,26,5,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-3,0,1455,-5,0,0 +2013,4,27,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,-6,0,1910,-3,0,0 +2013,7,26,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-5,0,1035,1,0,0 +2013,5,2,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1730,-4,0,2014,-4,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,-7,0,1100,-12,0,0 +2013,6,16,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,11,0,1737,23,1,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1900,6,0,2115,4,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-2,0,1524,7,0,0 +2013,4,18,4,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-14,0,714,-14,0,0 +2013,5,19,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1100,-8,0,1350,-15,0,0 +2013,5,9,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-2,0,1644,3,0,0 +2013,4,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1502,-5,0,1555,-14,0,0 +2013,9,17,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1615,-6,0,1747,-27,0,0 +2013,8,5,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,2045,-4,0,2140,-10,0,0 +2013,4,13,6,OO,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-11,0,2034,-24,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,715,0,0,847,-22,0,0 +2013,6,23,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,16,1,1550,16,1,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,36,1,2354,15,1,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-3,0,2003,-7,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,940,-20,0,0 +2013,7,12,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,824,6,0,1144,2,0,0 +2013,10,2,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,294,1,1336,293,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1640,12,0,1808,31,1,0 +2013,6,14,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1120,9,0,1155,8,0,0 +2013,5,5,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2142,-5,0,557,20,1,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,3,0,1758,-7,0,0 +2013,5,2,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1914,171,1,2025,166,1,0 +2013,10,25,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1245,-9,0,1458,-10,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,30,-4,0,835,-23,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,810,-1,0,1005,-9,0,0 +2013,7,20,6,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1724,31,1,1834,30,1,0 +2013,5,5,7,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1015,47,1,1130,61,1,0 +2013,10,4,5,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1210,-2,0,1310,-7,0,0 +2013,9,19,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1359,9,0,1919,-8,0,0 +2013,7,27,6,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,828,-8,0,1645,-17,0,0 +2013,5,22,3,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-7,0,1106,-4,0,0 +2013,7,15,1,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1239,22,1,1734,32,1,0 +2013,7,1,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1735,26,1,1916,3,0,0 +2013,10,22,2,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,-4,0,1018,-17,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,940,-1,0,1100,-8,0,0 +2013,7,12,5,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1213,-5,0,1425,-32,0,0 +2013,4,3,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1230,-22,0,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,11,0,1155,7,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1505,32,1,1610,25,1,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,7,0,1000,6,0,0 +2013,4,28,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1125,-2,0,1225,-19,0,0 +2013,6,5,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-3,0,1315,-6,0,0 +2013,9,4,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,930,-4,0,1111,-16,0,0 +2013,7,22,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2105,0,0,2220,28,1,0 +2013,7,18,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,225,1,1550,231,1,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-4,0,2159,2,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,-5,0,1730,-14,0,0 +2013,8,8,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,905,-2,0,1220,-11,0,0 +2013,9,17,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,708,-21,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1900,9,0,2225,7,0,0 +2013,7,31,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,-2,0,1535,21,1,0 +2013,8,31,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1830,42,1,2010,15,1,0 +2013,5,29,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-7,0,1340,-6,0,0 +2013,10,9,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1605,0,0,1725,-9,0,0 +2013,6,5,3,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1120,-11,0,1356,-27,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,16,1,1106,22,1,0 +2013,7,20,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,1,0,1401,-19,0,0 +2013,10,10,4,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1331,-4,0,1650,24,1,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,11,0,900,23,1,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,700,-5,0,932,-19,0,0 +2013,10,7,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-7,0,1445,-11,0,0 +2013,5,20,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2112,-3,0,2243,0,1,1 +2013,10,31,4,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1050,-1,0,1420,-12,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,951,0,,1242,0,1,1 +2013,10,26,6,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1210,-1,0,1320,-4,0,0 +2013,6,17,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,-4,0,1055,1,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1115,-1,0,1311,4,0,0 +2013,9,16,1,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1725,1,0,1845,-12,0,0 +2013,7,20,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,-1,0,1025,-12,0,0 +2013,8,28,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,755,28,1,930,22,1,0 +2013,7,26,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,610,-1,0,615,-4,0,0 +2013,6,11,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,1410,-14,0,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1210,43,1,1530,14,0,0 +2013,7,6,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,720,-5,0,958,-17,0,0 +2013,5,29,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-2,0,1040,-29,0,0 +2013,8,7,3,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,12954,Long Beach Airport,Long Beach,CA,106,-2,0,720,9,0,0 +2013,6,24,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2115,114,1,2349,105,1,0 +2013,7,24,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-3,0,1048,-5,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,950,-1,0,1127,-12,0,0 +2013,9,8,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-2,0,2150,-1,0,0 +2013,9,12,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1150,11,0,1220,7,0,0 +2013,8,21,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1539,-4,0,1639,-3,0,0 +2013,5,2,4,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1945,-4,0,2100,-9,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1948,0,0,2124,-7,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,35,1,2245,18,1,0 +2013,7,14,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1355,25,1,2114,37,1,0 +2013,6,5,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,600,22,1,700,16,1,0 +2013,8,16,5,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,635,-4,0,830,-4,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-5,0,905,-6,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,905,-4,0,1112,5,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,730,10,0,950,9,0,0 +2013,4,27,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1855,-11,0,2153,-11,0,0 +2013,4,24,3,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1143,69,1,1520,70,1,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,0,0,1948,0,0,0 +2013,9,27,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-5,0,543,-12,0,0 +2013,10,22,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,88,1,1520,92,1,0 +2013,6,12,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,1,0,835,6,0,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,-3,0,1021,0,0,0 +2013,8,13,2,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,945,7,0,1246,10,0,0 +2013,5,6,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1635,-9,0,2040,-12,0,0 +2013,10,4,5,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2345,1,0,547,15,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,2005,67,1,2335,66,1,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1242,0,0,1812,-11,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1545,-11,0,1650,-20,0,0 +2013,4,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1109,-3,0,1650,-1,0,0 +2013,4,2,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1845,-10,0,2300,-23,0,0 +2013,8,24,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1739,6,0,1819,18,1,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,9,0,2255,0,0,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2010,-6,0,2109,-12,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1929,1,0,2233,-20,0,0 +2013,9,1,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,-5,0,1315,-10,0,0 +2013,10,12,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,815,-2,0,1104,-17,0,0 +2013,5,11,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1213,-3,0,1404,-9,0,0 +2013,9,28,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,-4,0,1250,-18,0,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2155,13,0,2325,10,0,0 +2013,6,8,6,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1810,1,0,2130,0,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1945,4,0,2128,-13,0,0 +2013,8,17,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,-5,0,1240,5,0,0 +2013,4,11,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,-1,0,1650,-6,0,0 +2013,6,19,3,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1142,-7,0,1402,-21,0,0 +2013,10,28,1,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1035,-1,0,1310,0,0,0 +2013,4,28,7,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1806,7,0,2007,-2,0,0 +2013,4,29,1,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1655,99,1,1923,104,1,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,840,-7,0,1101,-6,0,0 +2013,8,31,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,930,-8,0,1121,1,0,0 +2013,7,28,7,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,650,-6,0,956,-10,0,0 +2013,5,7,2,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1100,-2,0,1450,17,1,0 +2013,6,2,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1315,-7,0,1440,-18,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-3,0,1120,-41,0,0 +2013,5,19,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1130,5,0,1250,-6,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,12,0,1100,7,0,0 +2013,8,18,7,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1849,-1,0,2159,-3,0,0 +2013,9,30,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,900,-6,0,1015,-1,0,0 +2013,7,22,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,930,2,0,1055,-7,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1740,-4,0,1957,-12,0,0 +2013,9,26,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1435,-7,0,1450,-20,0,0 +2013,7,5,5,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-4,0,1440,-10,0,0 +2013,4,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-3,0,900,-3,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,39,1,1920,33,1,0 +2013,10,23,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-6,0,1021,-16,0,0 +2013,9,16,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1118,-11,0,1225,-16,0,0 +2013,9,30,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1015,-8,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1100,1,0,1205,-4,0,0 +2013,10,3,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1053,103,1,1228,100,1,0 +2013,5,30,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-4,0,1850,6,0,0 +2013,4,16,2,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,740,-2,0,1000,-3,0,0 +2013,9,18,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,14,0,1130,-5,0,0 +2013,6,29,6,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2053,16,1,500,22,1,0 +2013,9,17,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1436,-10,0,1613,6,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1338,-3,0,1446,-21,0,0 +2013,10,25,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1436,-2,0,1621,-9,0,0 +2013,9,10,2,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,830,-10,0,1018,-28,0,0 +2013,8,6,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,636,2,0,904,7,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,840,0,0,1230,-3,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2125,86,1,2305,80,1,0 +2013,10,14,1,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1448,-13,0,1806,-22,0,0 +2013,10,20,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1449,7,0,1559,6,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1526,4,0,1757,-12,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2040,46,1,2145,42,1,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1550,14,0,1820,2,0,0 +2013,9,8,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-2,0,1659,24,1,0 +2013,6,15,6,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-2,0,1622,6,0,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1538,-1,0,1632,-15,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,-4,0,1255,11,0,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-4,0,1025,-12,0,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,13,0,1140,13,0,0 +2013,5,15,3,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2120,-4,0,2345,-11,0,0 +2013,8,29,4,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2225,2,0,630,-4,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,2005,0,0,2335,-8,0,0 +2013,4,13,6,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1120,20,1,1250,3,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-1,0,1651,-11,0,0 +2013,10,4,5,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1240,0,0,1640,-3,0,0 +2013,6,8,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,805,-15,0,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-7,0,918,-20,0,0 +2013,8,29,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-2,0,1455,-11,0,0 +2013,5,25,6,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1050,-6,0,1215,16,1,0 +2013,5,17,5,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1028,9,0,1338,-12,0,0 +2013,5,20,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,140,1,1135,146,1,0 +2013,6,7,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,10,0,1150,64,1,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,-8,0,1145,-12,0,0 +2013,8,14,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,955,3,0,1110,-13,0,0 +2013,10,10,4,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1530,-5,0,1710,-1,0,0 +2013,8,14,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-5,0,1128,-11,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1119,-2,0,1213,-9,0,0 +2013,6,21,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,32,1,1830,25,1,0 +2013,7,17,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-6,0,2058,18,1,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2135,-4,0,2355,-17,0,0 +2013,8,1,4,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,745,-5,0,950,-3,0,0 +2013,5,13,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,2,0,1155,-10,0,0 +2013,10,19,6,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1245,68,1,1410,66,1,0 +2013,10,14,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1228,-3,0,1303,-2,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1245,1,0,1714,-12,0,0 +2013,8,20,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,828,-3,0,0 +2013,9,12,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,16,1,1634,53,1,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1530,4,0,2015,3,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,-2,0,1825,-1,0,0 +2013,10,8,2,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,600,3,0,1200,-7,0,0 +2013,6,21,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-1,0,1045,-9,0,0 +2013,7,22,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1340,-6,0,1450,2,0,0 +2013,4,18,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-5,0,1302,-1,0,0 +2013,10,19,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1935,33,1,2326,2,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,63,1,1815,58,1,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1155,14,0,1455,12,0,0 +2013,8,16,5,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1650,-5,0,1925,-19,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2005,-1,0,2043,-14,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,10,0,1435,15,1,0 +2013,6,23,7,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,22,1,2027,20,1,0 +2013,7,7,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,8,0,858,-8,0,0 +2013,8,30,5,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1510,237,1,1920,211,1,0 +2013,5,18,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,605,-3,0,729,-7,0,0 +2013,8,29,4,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1424,-10,0,0 +2013,8,31,6,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1659,-4,0,2004,-26,0,0 +2013,5,21,2,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1715,9,0,1900,-12,0,0 +2013,4,29,1,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1635,29,1,1820,39,1,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,0,0,1605,13,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,2,0,1045,1,0,0 +2013,8,28,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1843,69,1,2041,68,1,0 +2013,7,11,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-3,0,659,-1,0,0 +2013,5,16,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-1,0,1554,8,0,0 +2013,10,21,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,-9,0,1815,-23,0,0 +2013,4,29,1,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,16,1,2015,7,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2020,-3,0,2305,-2,0,0 +2013,7,22,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-1,0,915,26,1,0 +2013,4,7,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1310,-6,0,1701,-21,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1810,-2,0,2000,-22,0,0 +2013,4,5,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,730,62,1,930,52,1,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,-5,0,1159,-28,0,0 +2013,7,30,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1544,-5,0,1816,-31,0,0 +2013,4,5,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-2,0,1327,-22,0,0 +2013,4,25,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-6,0,1205,-16,0,0 +2013,5,15,3,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1530,-9,0,1644,67,1,0 +2013,9,12,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,725,1,0,955,-1,0,0 +2013,8,30,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,0,0,1415,-5,0,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,-7,0,1502,2,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1205,-3,0,1310,-5,0,0 +2013,7,21,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-8,0,1310,-20,0,0 +2013,7,22,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1630,1,0,1915,-4,0,0 +2013,10,10,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1705,4,0,1802,-5,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1920,-1,0,2235,-6,0,0 +2013,5,9,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1149,-8,0,1237,-12,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,820,9,0,1020,15,1,0 +2013,7,24,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-3,0,1345,-11,0,0 +2013,4,6,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1705,-4,0,1944,24,1,0 +2013,4,5,5,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-7,0,2059,-22,0,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1055,-3,0,1145,-11,0,0 +2013,5,13,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,-2,0,1610,-13,0,0 +2013,8,26,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2100,8,0,2305,-6,0,0 +2013,8,11,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,1,0,1302,-13,0,0 +2013,10,21,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2205,-4,0,616,-16,0,0 +2013,4,16,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,805,-9,0,1421,-17,0,0 +2013,10,19,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,802,42,1,933,35,1,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,932,-4,0,1144,-18,0,0 +2013,5,7,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,605,-2,0,730,-4,0,0 +2013,7,28,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-3,0,1008,-20,0,0 +2013,4,22,1,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,940,-3,0,1105,4,0,0 +2013,6,18,2,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,0,,1940,0,1,1 +2013,8,19,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1306,0,0,1352,-4,0,0 +2013,6,7,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1045,9,0,1255,-3,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-4,0,1405,-10,0,0 +2013,6,1,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2115,76,1,2309,76,1,0 +2013,9,1,7,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,832,-1,0,1026,-11,0,0 +2013,9,21,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-5,0,2355,1,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1045,23,1,1205,20,1,0 +2013,7,30,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1950,4,0,2109,-3,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1009,137,1,1153,133,1,0 +2013,10,10,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1705,1,0,1710,-2,0,0 +2013,4,22,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1221,6,0,1333,32,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1820,2,0,1954,0,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,14,0,1120,-10,0,0 +2013,6,27,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1029,-25,0,0 +2013,6,26,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,39,1,930,34,1,0 +2013,8,3,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,954,-8,0,1245,-10,0,0 +2013,9,29,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,77,1,1250,63,1,0 +2013,10,23,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1747,-3,0,1945,0,0,0 +2013,10,28,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,834,-3,0,1120,-21,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,16,1,1225,10,0,0 +2013,7,3,3,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1750,36,1,1915,38,1,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,5,0,1535,8,0,0 +2013,9,18,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,6,0,1910,9,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1823,0,0,2115,25,1,0 +2013,6,18,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-2,0,2055,-5,0,0 +2013,8,20,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,8,0,1938,-39,0,0 +2013,8,17,6,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-4,0,2002,-11,0,0 +2013,10,30,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1255,40,1,1425,26,1,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,2,0,1905,-31,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2000,-1,0,2300,3,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1935,-1,0,55,-2,0,0 +2013,5,17,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-7,0,1410,-16,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,27,1,4,24,1,0 +2013,4,19,5,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1830,5,0,1905,-1,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1415,2,0,1510,-16,0,0 +2013,5,5,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1710,-1,0,1730,-14,0,0 +2013,6,14,5,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1823,81,1,2140,89,1,0 +2013,6,23,7,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1653,3,0,1849,-2,0,0 +2013,7,23,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1348,8,0,1510,10,0,0 +2013,5,29,3,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1840,2,0,2215,-3,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,3,0,1040,10,0,0 +2013,7,18,4,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1725,25,1,2015,15,1,0 +2013,5,9,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1022,81,1,1220,70,1,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-5,0,855,-6,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1820,120,1,1940,117,1,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,-1,0,920,-8,0,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,845,0,0,1438,-26,0,0 +2013,7,8,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,-1,0,1445,0,0,0 +2013,8,14,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1600,-2,0,1725,-6,0,0 +2013,5,23,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,55,1,910,89,1,0 +2013,7,31,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,635,1,0,745,-3,0,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1000,7,0,1755,30,1,0 +2013,8,1,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,2025,75,1,2340,62,1,0 +2013,8,15,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-7,0,916,-2,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2220,10,0,2320,24,1,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1612,-5,0,44,-21,0,0 +2013,7,15,1,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-1,0,707,0,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-1,0,1004,-22,0,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1507,250,1,1723,242,1,0 +2013,4,17,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,48,1,1820,47,1,0 +2013,5,22,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-1,0,1225,-17,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,-2,0,1830,-5,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,13,0,2320,1,0,0 +2013,10,27,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,910,-3,0,1644,-4,0,0 +2013,6,2,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,21,1,1435,24,1,0 +2013,9,6,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,-8,0,910,-36,0,0 +2013,9,11,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1655,-1,0,1930,19,1,0 +2013,6,13,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1730,57,1,1945,37,1,0 +2013,8,11,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1420,12,0,1535,4,0,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,8,0,2303,-6,0,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1829,2,0,2125,-5,0,0 +2013,6,30,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-4,0,1340,-17,0,0 +2013,7,11,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1946,-4,0,2129,5,0,0 +2013,8,30,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1428,5,0,1647,0,0,0 +2013,6,4,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-5,0,2055,-22,0,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1948,5,0,2331,-1,0,0 +2013,5,19,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,-7,0,945,-16,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-4,0,1949,15,1,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1615,20,1,1710,8,0,0 +2013,8,29,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-5,0,2207,3,0,0 +2013,7,29,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,745,-1,0,930,-9,0,0 +2013,5,1,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,725,-3,0,1045,12,0,0 +2013,5,13,1,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1425,-1,0,1720,12,0,0 +2013,4,2,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1933,-7,0,2142,-15,0,0 +2013,7,28,7,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-7,0,1455,3,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,917,-4,0,1152,-22,0,0 +2013,7,24,3,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,-4,0,1303,-8,0,0 +2013,7,31,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,2,0,1540,11,0,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,4,0,2218,-8,0,0 +2013,7,2,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,1414,-5,0,0 +2013,8,6,2,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,556,10,0,809,2,0,0 +2013,9,7,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1316,-2,0,1519,3,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1230,7,0,1755,-3,0,0 +2013,6,29,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1003,-1,0,1210,-11,0,0 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-2,0,1405,4,0,0 +2013,8,3,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-7,0,1947,9,0,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1835,-2,0,2048,2,0,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1200,7,0,1449,-23,0,0 +2013,10,30,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,910,-8,0,1055,-10,0,0 +2013,6,22,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,6,0,1639,49,1,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-1,0,1650,-6,0,0 +2013,9,30,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1320,-3,0,1604,-1,0,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1145,22,1,1412,2,0,0 +2013,7,8,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1442,-3,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1306,12,0,1534,5,0,0 +2013,5,15,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1230,3,0,1525,-14,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,118,1,2155,106,1,0 +2013,4,17,3,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1605,-6,0,1924,1,0,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1950,156,1,2200,149,1,0 +2013,4,14,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-1,0,659,-12,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,35,1,2127,25,1,0 +2013,4,28,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1437,8,0,1616,20,1,0 +2013,4,26,5,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,845,-6,0,1130,-16,0,0 +2013,6,24,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-11,0,2010,-19,0,0 +2013,7,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2210,2,0,2315,-1,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1630,-4,0,1825,-7,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-2,0,1437,-13,0,0 +2013,6,13,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,-1,0,1215,17,1,0 +2013,7,28,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,0,0,1846,-21,0,0 +2013,4,26,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2155,11,0,2315,21,1,0 +2013,5,5,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1210,-3,0,1453,-22,0,0 +2013,5,29,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2105,-9,0,2115,2,0,0 +2013,5,15,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1627,-6,0,1916,7,0,0 +2013,5,9,4,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1110,267,1,1500,302,1,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1015,28,1,1152,29,1,0 +2013,7,28,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1255,-9,0,1440,-12,0,0 +2013,10,3,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,10,0,1435,6,0,0 +2013,4,11,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-2,0,1700,-20,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1803,-8,0,1937,-6,0,0 +2013,9,7,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,0,0,2125,-11,0,0 +2013,9,10,2,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1011,25,1,1025,17,1,0 +2013,10,19,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1845,-10,0,2034,-21,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,950,-6,0,1115,-11,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,950,4,0,1205,3,0,0 +2013,9,19,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1839,11,0,2141,12,0,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1945,0,,2055,0,1,1 +2013,6,11,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-4,0,1320,0,0,0 +2013,9,14,6,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1037,-5,0,1139,-2,0,0 +2013,5,26,7,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1400,2,0,2250,-21,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,712,-3,0,1033,-33,0,0 +2013,7,28,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,920,-2,0,1035,9,0,0 +2013,7,15,1,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,18,1,1615,10,0,0 +2013,6,19,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,96,1,1755,85,1,0 +2013,4,23,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,-3,0,825,-3,0,0 +2013,7,2,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,535,0,0,850,-5,0,0 +2013,8,13,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,12,0,2145,36,1,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,0,0,652,-17,0,0 +2013,4,29,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1725,3,0,2032,56,1,0 +2013,10,8,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-7,0,1242,-5,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1625,-1,0,1638,-8,0,0 +2013,6,5,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,-5,0,1040,-1,0,0 +2013,9,6,5,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1755,-4,0,2237,15,1,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,27,1,1530,14,0,0 +2013,10,3,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-5,0,1609,-27,0,0 +2013,4,15,1,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,645,5,0,1505,-7,0,0 +2013,8,26,1,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,741,-13,0,0 +2013,7,4,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,81,1,1654,66,1,0 +2013,8,26,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,710,3,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1745,-5,0,2036,27,1,0 +2013,6,28,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,915,-7,0,1209,-11,0,0 +2013,5,2,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,920,-5,0,1103,-24,0,0 +2013,9,3,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1215,6,0,1535,-6,0,0 +2013,7,23,2,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1708,0,,1837,0,1,1 +2013,7,16,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-6,0,2249,1,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1735,-3,0,1910,-1,0,0 +2013,4,28,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1655,-13,0,1950,-17,0,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,2020,3,0,2300,-4,0,0 +2013,9,6,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1420,-1,0,2015,1,0,0 +2013,8,3,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,16,1,1102,25,1,0 +2013,9,15,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1411,-8,0,1537,5,0,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,3,0,1914,0,0,0 +2013,7,1,1,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-3,0,825,-1,0,0 +2013,5,24,5,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,8,0,1435,-7,0,0 +2013,5,12,7,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,625,-1,0,934,-12,0,0 +2013,8,3,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,96,1,1739,86,1,0 +2013,9,21,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,1516,3,0,0 +2013,10,16,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-5,0,1500,-17,0,0 +2013,5,15,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,610,-3,0,834,5,0,0 +2013,8,9,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-2,0,1420,8,0,0 +2013,9,20,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,3,0,1845,-1,0,0 +2013,9,6,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1825,15,1,1925,14,0,0 +2013,10,25,5,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1245,8,0,1525,-7,0,0 +2013,5,9,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,0,0,950,-1,0,0 +2013,7,10,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,16,1,1645,35,1,0 +2013,7,20,6,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-1,0,1025,54,1,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,707,-11,0,954,7,0,0 +2013,5,24,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1225,0,0,1246,-8,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1105,8,0,1210,7,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1825,41,1,1950,47,1,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,-1,0,2337,3,0,0 +2013,6,6,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-3,0,1752,-7,0,0 +2013,8,11,7,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,730,-6,0,1020,-30,0,0 +2013,9,26,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-7,0,1458,-14,0,0 +2013,10,13,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2147,2,0,2235,1,0,0 +2013,4,21,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1245,-3,0,1459,1,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,32,1,2140,33,1,0 +2013,4,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,855,0,0,1055,-6,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1700,-2,0,1820,-2,0,0 +2013,10,16,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1105,9,0,1320,-6,0,0 +2013,6,18,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,15,1,1020,18,1,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1710,57,1,1925,60,1,0 +2013,10,21,1,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,19,1,1735,3,0,0 +2013,7,31,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,607,-7,0,726,-4,0,0 +2013,4,2,2,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1555,-13,0,1846,-15,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,825,6,0,1005,10,0,0 +2013,9,5,4,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,940,-7,0,1205,-17,0,0 +2013,8,18,7,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1840,13,0,2045,16,1,0 +2013,5,17,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-5,0,1212,-11,0,0 +2013,6,15,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,935,1,0,1028,21,1,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1558,8,0,1730,-2,0,0 +2013,6,21,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,261,1,1602,245,1,0 +2013,4,28,7,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1025,-6,0,1320,-7,0,0 +2013,5,24,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,5,0,1844,3,0,0 +2013,7,23,2,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,46,1,1305,80,1,0 +2013,5,13,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1450,5,0,1738,-33,0,0 +2013,8,3,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1830,3,0,1940,39,1,0 +2013,10,15,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1027,-6,0,1131,-9,0,0 +2013,4,1,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-5,0,810,-18,0,0 +2013,4,7,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-8,0,1427,-3,0,0 +2013,10,16,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1006,-7,0,1214,-2,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1521,-7,0,1819,26,1,0 +2013,8,15,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1714,-4,0,2140,-5,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2200,-1,0,2255,-18,0,0 +2013,6,22,6,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2142,-1,0,608,-10,0,0 +2013,4,12,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-5,0,920,12,0,0 +2013,9,22,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,925,-1,0,1450,-21,0,0 +2013,6,14,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,612,-4,0,1142,-21,0,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1601,26,1,11,8,0,0 +2013,4,3,3,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1454,-2,0,1605,-6,0,0 +2013,8,18,7,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,2,0,735,4,0,0 +2013,5,25,6,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1030,95,1,1146,82,1,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,0,0,1525,-3,0,0 +2013,5,25,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1451,7,0,1539,9,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,18,1,1932,37,1,0 +2013,10,5,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1540,-5,0,1950,-5,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1705,14,0,1940,14,0,0 +2013,4,10,3,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,908,-8,0,1210,-17,0,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,-4,0,1525,-21,0,0 +2013,8,30,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,60,1,2215,87,1,0 +2013,7,14,7,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,-2,0,2202,-32,0,0 +2013,7,14,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1850,-1,0,2056,29,1,0 +2013,7,22,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1109,38,1,1450,20,1,0 +2013,5,6,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,850,-5,0,1020,-15,0,0 +2013,4,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-7,0,819,-15,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1230,10,0,1410,0,0,0 +2013,7,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1655,-1,0,1755,-7,0,0 +2013,6,22,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,934,1,0,1205,-9,0,0 +2013,9,26,4,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,28,1,1805,31,1,0 +2013,4,7,7,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1150,-7,0,1435,-17,0,0 +2013,5,29,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-4,0,1500,-4,0,0 +2013,9,27,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1215,-5,0,1450,12,0,0 +2013,9,24,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,600,-15,0,708,-22,0,0 +2013,7,9,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1131,292,1,1237,289,1,0 +2013,6,12,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,751,2,0,1023,2,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,18,1,1920,11,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,750,-8,0,851,-7,0,0 +2013,8,18,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1531,164,1,1708,212,1,0 +2013,6,19,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,1,0,1839,-2,0,0 +2013,10,19,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,711,-5,0,851,-20,0,0 +2013,5,5,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1142,-2,0,1353,-12,0,0 +2013,7,27,6,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,-5,0,1733,-31,0,0 +2013,5,25,6,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1340,-6,0,1507,-28,0,0 +2013,9,5,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-15,0,2145,-7,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,810,2,0,1140,-1,0,0 +2013,4,17,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-5,0,1205,9,0,0 +2013,9,30,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,11,0,1855,9,0,0 +2013,8,2,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-2,0,2010,-18,0,0 +2013,7,25,4,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1734,-1,0,2022,-3,0,0 +2013,9,2,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-7,0,1535,14,0,0 +2013,8,29,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-4,0,2133,-1,0,0 +2013,9,6,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1352,2,0,1958,14,0,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1420,0,0,1721,-13,0,0 +2013,8,9,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,808,-5,0,1021,4,0,0 +2013,6,6,4,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1140,-7,0,1258,-13,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1055,0,0,1305,-10,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1525,0,0,1710,-11,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1919,11,0,2359,-13,0,0 +2013,6,17,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,-4,0,1857,2,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,625,-4,0,1135,-6,0,0 +2013,6,12,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,717,-5,0,902,-19,0,0 +2013,10,1,2,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1735,-5,0,1750,-12,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1305,10,0,1440,9,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,810,-3,0,1027,-30,0,0 +2013,7,4,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,755,-3,0,1400,-7,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1130,2,0,1235,-4,0,0 +2013,7,18,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,0,0,820,9,0,0 +2013,8,30,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,732,-4,0,853,-17,0,0 +2013,6,17,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1711,113,1,2023,128,1,0 +2013,8,11,7,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1835,-8,0,2050,-19,0,0 +2013,6,8,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,3,0,1250,-21,0,0 +2013,9,26,4,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1017,61,1,1245,57,1,0 +2013,9,30,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,720,1,0,1006,-8,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1050,106,1,1435,96,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1250,-3,0,1350,-10,0,0 +2013,5,30,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1415,8,0,1950,-9,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1925,23,1,2225,10,0,0 +2013,8,13,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,620,6,0,730,52,1,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,844,-3,0,1031,-18,0,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,1527,-22,0,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1155,40,1,1310,30,1,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1615,116,1,47,72,1,0 +2013,4,21,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1745,-2,0,2053,2,0,0 +2013,6,20,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,900,-7,0,1040,-20,0,0 +2013,6,29,6,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1020,-8,0,1140,-1,0,0 +2013,6,28,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,745,-11,0,0 +2013,4,26,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,850,-2,0,1000,8,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,600,2,0,715,-6,0,0 +2013,10,3,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1805,-3,0,1948,8,0,0 +2013,5,6,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,600,-1,0,810,-7,0,0 +2013,7,29,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-8,0,912,-21,0,0 +2013,6,11,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,812,0,0,1118,4,0,0 +2013,10,21,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1328,29,1,1413,25,1,0 +2013,8,29,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,830,-3,0,1010,-1,0,0 +2013,6,16,7,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,14,0,1930,13,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,847,-1,0,1015,-13,0,0 +2013,5,16,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,50,1,1720,25,1,0 +2013,6,3,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1935,-7,0,2028,-10,0,0 +2013,5,27,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,71,1,1513,61,1,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1835,44,1,2159,29,1,0 +2013,4,22,1,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,840,584,1,1435,551,1,0 +2013,6,22,6,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,545,-3,0,650,10,0,0 +2013,10,27,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1115,34,1,1633,12,0,0 +2013,5,23,4,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,725,5,0,920,43,1,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1455,40,1,1940,35,1,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-2,0,955,9,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1945,38,1,2104,39,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1905,8,0,2017,-9,0,0 +2013,5,6,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1010,-2,0,1143,25,1,0 +2013,5,15,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,119,1,1837,106,1,0 +2013,4,25,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2015,-2,0,2250,-15,0,0 +2013,8,16,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1550,-8,0,1810,-16,0,0 +2013,6,16,7,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,2340,-4,0,701,-23,0,0 +2013,7,6,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-2,0,1050,-6,0,0 +2013,6,9,7,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,6,0,1820,16,1,0 +2013,4,6,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-5,0,1941,-23,0,0 +2013,6,16,7,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,-2,0,1935,-2,0,0 +2013,7,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-7,0,1055,-13,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-6,0,1000,9,0,0 +2013,10,17,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,0,0,1553,18,1,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,0,0,1315,-17,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1410,42,1,1425,40,1,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1548,22,1,1645,4,0,0 +2013,7,24,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,61,1,2300,54,1,0 +2013,4,6,6,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,16,1,2120,12,0,0 +2013,10,9,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1255,-5,0,1531,-11,0,0 +2013,9,4,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1935,-7,0,2158,10,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1854,-4,0,30,-2,0,0 +2013,9,2,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,42,1,1815,48,1,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,814,-7,0,1037,-5,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1547,164,1,1745,143,1,0 +2013,8,5,1,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1525,-1,0,1615,1,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,1,0,1410,-6,0,0 +2013,6,21,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1135,101,1,1210,103,1,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,1120,-24,0,0 +2013,8,1,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1940,2,0,2050,3,0,0 +2013,10,20,7,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1215,-7,0,1500,-14,0,0 +2013,9,28,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1750,-9,0,1930,-26,0,0 +2013,5,7,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,610,-3,0,848,12,0,0 +2013,5,7,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1105,-4,0,1333,-7,0,0 +2013,9,20,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,7,0,1700,11,0,0 +2013,8,1,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,949,6,0,1103,19,1,0 +2013,10,2,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,-1,0,1500,56,1,0 +2013,8,4,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-7,0,1634,-19,0,0 +2013,5,29,3,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,3,0,2034,-12,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,2000,14,0,2120,16,1,0 +2013,10,10,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,1,0,1202,-3,0,0 +2013,7,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,930,-4,0,1150,-11,0,0 +2013,6,2,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2020,101,1,2245,96,1,0 +2013,6,25,2,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-8,0,918,-8,0,0 +2013,9,7,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,23,1,1940,45,1,0 +2013,8,14,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1606,60,1,1909,80,1,0 +2013,4,16,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,0,,2310,0,1,1 +2013,5,30,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1305,4,0,1455,-10,0,0 +2013,5,7,2,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1750,-3,0,2044,-5,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,-8,0,734,-23,0,0 +2013,9,7,6,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-9,0,821,-25,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1251,30,1,1516,26,1,0 +2013,4,21,7,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1915,76,1,2155,70,1,0 +2013,5,11,6,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-11,0,1612,-5,0,0 +2013,6,3,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-2,0,840,-18,0,0 +2013,7,27,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1220,15,1,1350,8,0,0 +2013,8,17,6,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-3,0,816,-10,0,0 +2013,6,20,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,-2,0,1028,0,0,0 +2013,4,12,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1133,1,0,1425,-3,0,0 +2013,7,30,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-5,0,2132,-26,0,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,-4,0,1418,-11,0,0 +2013,10,12,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,0,0,1055,-9,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2036,83,1,2145,76,1,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1045,-8,0,1418,-16,0,0 +2013,4,15,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,-1,0,1200,-11,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1530,18,1,1730,4,0,0 +2013,6,26,3,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1700,16,1,1905,15,1,0 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2005,-5,0,2342,-5,0,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,-5,0,1406,-18,0,0 +2013,9,17,2,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-13,0,1630,-18,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2146,65,1,16,80,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,900,14,0,1255,15,1,0 +2013,6,10,1,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,828,0,0,1022,-6,0,0 +2013,5,23,4,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1500,-10,0,1759,-9,0,0 +2013,10,1,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-3,0,1755,-27,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1415,11,0,1435,-9,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,814,-3,0,915,-12,0,0 +2013,7,27,6,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1845,-8,0,2140,-29,0,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,2015,7,0,2211,15,1,0 +2013,7,9,2,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,67,1,1642,109,1,0 +2013,7,14,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1650,4,0,1805,-2,0,0 +2013,5,30,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-6,0,1008,-9,0,0 +2013,5,14,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,0,0,1550,-6,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1634,-3,0,1814,-7,0,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1505,-6,0,1831,-3,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1950,60,1,2207,62,1,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1026,-9,0,1130,-24,0,0 +2013,10,26,6,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,1,0,1400,-13,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,-7,0,1210,-11,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,3,0,1535,-8,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1955,-3,0,2125,-13,0,0 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,3,0,1235,-3,0,0 +2013,7,30,2,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,19,1,10,18,1,0 +2013,8,25,7,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-4,0,939,-14,0,0 +2013,9,9,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1242,-1,0,1458,8,0,0 +2013,4,15,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-3,0,835,-3,0,0 +2013,9,13,5,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,715,-3,0,927,-17,0,0 +2013,7,25,4,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,23,1,1826,67,1,0 +2013,5,21,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1830,219,1,1905,222,1,0 +2013,6,22,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,10,0,1505,-5,0,0 +2013,5,5,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1350,4,0,1520,10,0,0 +2013,4,7,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1050,-5,0,1223,4,0,0 +2013,4,18,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1310,-8,0,1510,71,1,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,11,0,1034,10,0,0 +2013,4,24,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,845,0,0,1045,28,1,0 +2013,4,24,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-2,0,825,-23,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,820,30,1,915,24,1,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2035,35,1,2200,7,0,0 +2013,5,19,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1052,-7,0,1214,-23,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,15,1,1808,0,0,0 +2013,9,1,7,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-1,0,2359,11,0,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1630,28,1,1950,16,1,0 +2013,6,3,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1805,1,0,1957,-8,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,2000,-4,0,2204,-18,0,0 +2013,10,19,6,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,710,0,0,1005,-7,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,940,-2,0,1006,-8,0,0 +2013,8,4,7,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,636,16,1,850,8,0,0 +2013,6,16,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,35,1,2250,24,1,0 +2013,10,12,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1037,-5,0,1324,-17,0,0 +2013,7,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1920,10,0,2050,-17,0,0 +2013,9,6,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-8,0,1735,2,0,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2150,2,0,25,-22,0,0 +2013,4,1,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1359,-5,0,1522,7,0,0 +2013,10,19,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1815,-1,0,2055,-14,0,0 +2013,10,5,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,742,-6,0,838,-11,0,0 +2013,10,14,1,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2015,2,0,1155,11,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-3,0,1249,-10,0,0 +2013,8,5,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,10,0,2155,5,0,0 +2013,6,25,2,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1743,-6,0,2017,-16,0,0 +2013,10,24,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-2,0,805,-2,0,0 +2013,7,14,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1925,798,1,2000,818,1,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1940,7,0,2235,10,0,0 +2013,5,20,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,2005,20,1,2255,8,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1546,0,0,1729,-3,0,0 +2013,5,31,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,750,1,0,1145,1,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,810,1,0,916,4,0,0 +2013,4,4,4,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-4,0,1802,5,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1320,7,0,1620,11,0,0 +2013,5,19,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1725,-5,0,1851,-18,0,0 +2013,8,8,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,732,-2,0,911,-5,0,0 +2013,7,13,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,14,0,1815,-14,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,-1,0,2130,-5,0,0 +2013,8,29,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1040,-2,0,1150,-7,0,0 +2013,9,4,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,-2,0,1705,1,0,0 +2013,7,17,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,7,0,1235,0,0,0 +2013,8,29,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2035,0,0,2305,-9,0,0 +2013,6,11,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-4,0,649,15,1,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,840,13,0,1145,39,1,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-6,0,1619,-18,0,0 +2013,9,17,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,4,0,1620,1,0,0 +2013,6,24,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-6,0,2151,-8,0,0 +2013,6,18,2,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2215,-1,0,631,-19,0,0 +2013,8,10,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1543,31,1,2359,18,1,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1308,7,0,1440,6,0,0 +2013,7,8,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,38,25,1,554,27,1,0 +2013,9,29,7,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-3,0,500,-16,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1900,59,1,2035,55,1,0 +2013,5,7,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,76,1,1555,70,1,0 +2013,7,2,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1503,-1,0,1617,-24,0,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1559,-4,0,1745,-29,0,0 +2013,10,5,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1355,-7,0,1618,-16,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1935,173,1,2045,148,1,0 +2013,7,18,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,-1,0,1214,-8,0,0 +2013,6,26,3,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,50,1,1821,84,1,0 +2013,7,31,3,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1031,4,0,1415,13,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2200,43,1,2320,46,1,0 +2013,10,7,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,11,0,1413,-1,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2258,-3,0,44,-6,0,0 +2013,6,7,5,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1405,1,0,1645,1,0,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,825,-1,0,940,-7,0,0 +2013,9,3,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1619,36,1,1745,34,1,0 +2013,10,1,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1735,-1,0,1825,-8,0,0 +2013,5,28,2,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,24,1,2345,13,0,0 +2013,5,11,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1423,19,1,1629,-3,0,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1845,-4,0,2217,-28,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2120,-3,0,2224,-5,0,0 +2013,9,12,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,600,-3,0,725,-6,0,0 +2013,6,21,5,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,40,1,1845,21,1,0 +2013,6,1,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2155,-2,0,15,21,1,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1500,-1,0,1825,11,0,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1515,43,1,1915,31,1,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,-2,0,1355,-9,0,0 +2013,8,2,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-13,0,1034,-22,0,0 +2013,7,23,2,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1501,6,0,1738,10,0,0 +2013,5,14,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1232,-6,0,1809,-16,0,0 +2013,8,29,4,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-5,0,803,-1,0,0 +2013,7,18,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1910,9,0,2035,2,0,0 +2013,5,11,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-2,0,1409,2,0,0 +2013,7,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1650,-1,0,1925,-16,0,0 +2013,6,20,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,42,1,2215,21,1,0 +2013,9,10,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,-5,0,1729,-19,0,0 +2013,5,31,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1230,7,0,1520,1,0,0 +2013,4,5,5,EV,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1302,-8,0,0 +2013,9,25,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-3,0,2114,-17,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1732,10,0,1939,27,1,0 +2013,6,29,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,745,-6,0,840,-8,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,718,-3,0,1135,-20,0,0 +2013,6,22,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1320,2,0,1440,-3,0,0 +2013,4,28,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-1,0,1232,-9,0,0 +2013,8,25,7,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1437,-7,0,1829,-14,0,0 +2013,9,15,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-6,0,1247,-19,0,0 +2013,7,4,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1130,122,1,1400,109,1,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1510,-3,0,1825,-31,0,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-6,0,1055,18,1,0 +2013,7,31,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1751,0,0,1944,-8,0,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,14,0,1300,7,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,705,1,0,850,13,0,0 +2013,8,28,3,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1410,16,1,1535,0,0,0 +2013,8,10,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,855,-5,0,1054,-8,0,0 +2013,10,28,1,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-5,0,1222,-12,0,0 +2013,8,30,5,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,0,0,1235,-10,0,0 +2013,10,9,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,735,-2,0,1050,-14,0,0 +2013,6,13,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-8,0,1345,-11,0,0 +2013,8,16,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2210,17,1,2356,-15,0,0 +2013,7,25,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1800,7,0,2015,4,0,0 +2013,8,31,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1530,-1,0,1635,-8,0,0 +2013,10,23,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,-2,0,2140,-25,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,6,0,1914,4,0,0 +2013,6,5,3,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1217,-9,0,1758,-21,0,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,-5,0,1209,-4,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2125,0,0,2305,-9,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,-1,0,2019,-10,0,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1955,8,0,2310,-25,0,0 +2013,4,11,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,2155,19,1,2340,17,1,0 +2013,10,9,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,28,1,2145,44,1,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,650,-2,0,750,-11,0,0 +2013,5,14,2,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,959,-6,0,1110,-2,0,0 +2013,7,28,7,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2010,-4,0,2136,4,0,0 +2013,4,5,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1619,5,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,859,-3,0,1110,-13,0,0 +2013,7,9,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-7,0,1420,2,0,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,845,26,1,1106,11,0,0 +2013,6,6,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2045,79,1,2320,70,1,0 +2013,7,12,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,54,1,1740,35,1,0 +2013,9,17,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1740,-1,0,1845,-7,0,0 +2013,10,8,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1516,-10,0,2324,31,1,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,0,0,1445,-6,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1116,2,0,1303,-6,0,0 +2013,4,26,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,-1,0,1335,-5,0,0 +2013,10,16,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,0,,825,0,1,1 +2013,6,29,6,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,0,0,1625,-11,0,0 +2013,10,16,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,2000,94,1,2349,70,1,0 +2013,7,31,3,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,835,0,0,1115,-3,0,0 +2013,7,30,2,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1230,29,1,1407,14,0,0 +2013,9,10,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,1,0,1753,-11,0,0 +2013,10,23,3,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1553,154,1,1848,143,1,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,710,-4,0,932,-9,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,745,2,0,900,-10,0,0 +2013,5,19,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1800,34,1,1940,46,1,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,840,1,0,1020,2,0,0 +2013,6,26,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,822,-2,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,,710,0,1,1 +2013,4,17,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2120,0,,30,0,1,1 +2013,4,9,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,-8,0,940,-11,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,-5,0,2243,6,0,0 +2013,6,29,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1349,5,0,1504,-5,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1850,2,0,2020,-9,0,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,2010,-5,0,2346,-20,0,0 +2013,10,7,1,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-2,0,1524,-8,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,815,-7,0,1000,-14,0,0 +2013,4,20,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-4,0,1744,4,0,0 +2013,9,9,1,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1736,-4,0,2011,-21,0,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-4,0,833,3,0,0 +2013,10,13,7,EV,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-5,0,1813,-21,0,0 +2013,7,15,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1129,-7,0,1329,-24,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,-5,0,1020,-5,0,0 +2013,8,21,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1355,22,1,1411,5,0,0 +2013,9,30,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1203,-2,0,1808,-9,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-5,0,1947,29,1,0 +2013,8,28,3,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,-1,0,1935,-8,0,0 +2013,4,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1918,6,0,2301,2,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1315,27,1,2156,17,1,0 +2013,8,28,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,7,0,1411,-2,0,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,900,11,0,1425,13,0,0 +2013,8,10,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1725,52,1,1941,51,1,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1420,-1,0,1753,-6,0,0 +2013,10,13,7,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1613,18,1,1717,16,1,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,705,-4,0,855,-17,0,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2050,86,1,2211,106,1,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,2,0,1925,0,0,0 +2013,9,15,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1850,-5,0,2052,-6,0,0 +2013,9,21,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1114,54,1,1250,38,1,0 +2013,5,27,1,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,620,-2,0,1135,-11,0,0 +2013,8,1,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,645,-7,0,758,-14,0,0 +2013,6,22,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,726,-4,0,1015,-15,0,0 +2013,10,18,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1245,-3,0,1415,0,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,-2,0,1125,23,1,0 +2013,5,4,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,910,0,,1045,0,1,1 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,815,-3,0,1706,-27,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1410,2,0,1630,-1,0,0 +2013,6,14,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,2,0,2049,-10,0,0 +2013,6,27,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1745,279,1,2030,277,1,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,1335,-8,0,0 +2013,6,24,1,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1410,24,1,1553,18,1,0 +2013,9,11,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,900,10,0,1505,-9,0,0 +2013,7,23,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,610,-7,0,739,-14,0,0 +2013,5,28,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,714,-4,0,830,-19,0,0 +2013,8,18,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2045,-3,0,2150,-23,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1540,20,1,1820,16,1,0 +2013,10,22,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-5,0,1252,1,0,0 +2013,6,2,7,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1905,12,0,2020,1,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2130,0,,2250,0,1,1 +2013,7,18,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1442,16,1,1626,2,0,0 +2013,7,18,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,0,,833,0,1,1 +2013,5,3,5,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,4,0,1855,5,0,0 +2013,4,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-2,0,707,12,0,0 +2013,9,27,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1048,-2,0,1829,8,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,-2,0,1235,-3,0,0 +2013,7,7,7,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1430,-3,0,1555,-13,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1529,38,1,1715,25,1,0 +2013,7,22,1,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2245,-6,0,654,-16,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1654,66,1,1928,62,1,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,556,-3,0,900,-4,0,0 +2013,10,5,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1304,-1,0,1343,-4,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1055,87,1,1115,138,1,0 +2013,6,27,4,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1003,15,1,1141,12,0,0 +2013,8,27,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1809,90,1,2100,71,1,0 +2013,10,12,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,839,6,0,1130,4,0,0 +2013,8,17,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1010,5,0,1055,1,0,0 +2013,7,22,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-9,0,2014,8,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,925,-3,0,1152,-13,0,0 +2013,6,23,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-6,0,1428,-4,0,0 +2013,7,26,5,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,1100,8,0,1655,-14,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-1,0,1212,-14,0,0 +2013,6,5,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-3,0,1530,0,0,0 +2013,9,2,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1123,41,1,1336,24,1,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1315,-2,0,1659,-11,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1230,52,1,1435,44,1,0 +2013,7,29,1,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,732,-7,0,1046,-12,0,0 +2013,5,24,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,849,3,0,930,-1,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,82,1,2330,102,1,0 +2013,5,30,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,704,-6,0,1040,-28,0,0 +2013,5,2,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,0,,1848,0,1,1 +2013,6,12,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1226,-1,0,1450,-8,0,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-5,0,1917,-30,0,0 +2013,8,7,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,0,0,1857,-11,0,0 +2013,5,26,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1904,-17,0,0 +2013,8,15,4,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,645,37,1,805,29,1,0 +2013,7,25,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,11,0,1254,11,0,0 +2013,5,20,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2145,15,1,2305,7,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,2,0,1620,38,1,0 +2013,4,30,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,4,0,1635,0,0,0 +2013,8,31,6,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,755,16,1,1035,3,0,0 +2013,8,12,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1320,-8,0,1459,-6,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2150,30,1,2305,16,1,0 +2013,5,13,1,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1300,-2,0,1840,21,1,0 +2013,7,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,0,0,1556,22,1,0 +2013,8,28,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,818,-10,0,1119,-16,0,0 +2013,5,1,3,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1753,-5,0,1838,-20,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1459,7,0,1802,-13,0,0 +2013,9,9,1,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1410,39,1,1607,16,1,0 +2013,6,18,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,14,0,905,5,0,0 +2013,10,15,2,EV,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,757,4,0,857,14,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,550,-2,0,1432,-18,0,0 +2013,10,27,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1940,-7,0,2240,-22,0,0 +2013,4,16,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,1320,100,1,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2020,30,1,2235,28,1,0 +2013,5,27,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1610,0,0,1722,-8,0,0 +2013,5,3,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2020,21,1,2200,3,0,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1306,20,1,1514,18,1,0 +2013,6,20,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,225,1,1605,206,1,0 +2013,7,21,7,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,741,-7,0,952,-14,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1456,17,1,1704,-1,0,0 +2013,6,18,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-11,0,955,-11,0,0 +2013,5,8,3,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,755,-3,0,1155,-18,0,0 +2013,5,6,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-4,0,1720,-7,0,0 +2013,10,18,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-9,0,1947,-11,0,0 +2013,7,28,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-3,0,733,-3,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2244,12,0,15,3,0,0 +2013,6,3,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1348,-4,0,1558,-22,0,0 +2013,4,6,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1910,-3,0,2030,-6,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1730,24,1,2000,20,1,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,2,0,1005,4,0,0 +2013,6,28,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1312,67,1,1604,69,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,0,0,1509,-18,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1730,3,0,2040,-8,0,0 +2013,8,31,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1400,2,0,1500,-3,0,0 +2013,9,12,4,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1824,-8,0,2026,-2,0,0 +2013,6,10,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,34,1,1735,23,1,0 +2013,4,6,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,925,-2,0,935,-5,0,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,903,14,0,1738,28,1,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,-1,0,957,-10,0,0 +2013,4,4,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,55,-4,0,540,-15,0,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1835,-10,0,2008,-28,0,0 +2013,6,7,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,30,1,843,73,1,0 +2013,10,16,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2205,-5,0,2316,13,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1859,15,1,2010,6,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2030,34,1,2315,20,1,0 +2013,7,8,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2300,5,0,704,13,0,0 +2013,8,6,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,17,1,1718,13,0,0 +2013,5,17,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,2,0,835,-3,0,0 +2013,10,17,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,740,-3,0,0 +2013,6,25,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,-1,0,2345,-7,0,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1700,-8,0,2050,-32,0,0 +2013,9,25,3,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-10,0,1621,-13,0,0 +2013,8,21,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1204,-1,0,1341,13,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,14,0,2314,6,0,0 +2013,6,8,6,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2340,74,1,725,62,1,0 +2013,6,11,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,-2,0,1740,9,0,0 +2013,9,30,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-5,0,805,-23,0,0 +2013,6,7,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1629,-4,0,1739,-16,0,0 +2013,4,7,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,-3,0,1409,-5,0,0 +2013,6,11,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-2,0,1010,-20,0,0 +2013,10,3,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1750,35,1,1913,23,1,0 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,23,1,1558,-16,0,0 +2013,10,6,7,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,6,0,1440,6,0,0 +2013,4,26,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-1,0,1838,-18,0,0 +2013,7,11,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,3,0,1930,-6,0,0 +2013,5,7,2,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2202,-2,0,2338,-4,0,0 +2013,4,7,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-16,0,2040,-31,0,0 +2013,6,29,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,954,32,1,1244,20,1,0 +2013,8,28,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,-2,0,1847,0,0,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1358,15,1,1736,11,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,0,0,1023,-6,0,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1406,-8,0,1540,-5,0,0 +2013,6,24,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,934,0,0,1206,-6,0,0 +2013,6,9,7,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,4,0,2056,7,0,0 +2013,5,29,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-1,0,1130,14,0,0 +2013,4,4,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-12,0,1530,-21,0,0 +2013,6,5,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,11,0,810,-12,0,0 +2013,10,8,2,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1445,-1,0,1630,-12,0,0 +2013,5,3,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,944,-3,0,1058,-12,0,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,720,12,0,941,-4,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,540,-1,0,825,-7,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,910,-1,0,1030,-11,0,0 +2013,4,10,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-1,0,2031,4,0,0 +2013,7,24,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,-3,0,1911,24,1,0 +2013,6,10,1,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,-4,0,604,6,0,0 +2013,7,8,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1715,1,0,1840,-13,0,0 +2013,8,29,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1657,24,1,2029,12,0,0 +2013,10,6,7,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1440,10,0,1649,7,0,0 +2013,6,8,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-10,0,2153,-15,0,0 +2013,6,26,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1002,12,0,1140,1,0,0 +2013,8,15,4,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1705,25,1,2004,-16,0,0 +2013,9,7,6,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1905,-4,0,1940,-17,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-1,0,1150,-12,0,0 +2013,8,10,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1642,-1,0,0 +2013,5,27,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,0,0,2315,7,0,0 +2013,7,24,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1346,33,1,1540,27,1,0 +2013,6,29,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,0,0,2238,3,0,0 +2013,10,17,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1605,-1,0,1819,-13,0,0 +2013,9,28,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1000,-7,0,1158,-8,0,0 +2013,6,10,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1205,-3,0,1440,4,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1925,80,1,2230,75,1,0 +2013,6,2,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,215,1,2016,211,1,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1430,19,1,2030,14,0,0 +2013,5,22,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1640,27,1,2000,23,1,0 +2013,6,24,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-1,0,1210,1,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,750,-6,0,851,-1,0,0 +2013,6,14,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,1,0,744,-10,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,24,1,453,11,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,725,-5,0,820,-9,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1423,27,1,1553,13,0,0 +2013,4,24,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,10,0,1905,17,1,0 +2013,9,12,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1412,18,1,1600,27,1,0 +2013,4,23,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,0,0,1421,-8,0,0 +2013,4,25,4,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1815,-3,0,2103,-5,0,0 +2013,9,26,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1436,-4,0,1808,-9,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,715,10,0,850,-12,0,0 +2013,6,13,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,700,0,,735,0,1,1 +2013,6,15,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,22,1,1828,32,1,0 +2013,8,15,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1530,-9,0,1810,-14,0,0 +2013,10,9,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,-6,0,1115,-2,0,0 +2013,8,7,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,840,0,0,1115,-1,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,1,0,1704,19,1,0 +2013,4,28,7,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1615,-3,0,1734,4,0,0 +2013,5,7,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,-9,0,1140,-11,0,0 +2013,5,5,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1515,-2,0,1555,1,0,0 +2013,6,5,3,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-13,0,2033,-15,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1446,-1,0,1717,17,1,0 +2013,9,24,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-5,0,1133,19,1,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,-6,0,1450,-6,0,0 +2013,8,16,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-7,0,2101,8,0,0 +2013,8,6,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,830,-3,0,1000,-16,0,0 +2013,6,11,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1120,2,0,1315,-3,0,0 +2013,4,4,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,813,-14,0,0 +2013,10,8,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,830,8,0,1010,-1,0,0 +2013,7,17,3,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,811,8,0,1051,3,0,0 +2013,6,23,7,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,925,-9,0,1036,-30,0,0 +2013,7,26,5,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2202,-5,0,2359,-12,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,16,1,1825,-1,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1548,24,1,1723,13,0,0 +2013,6,9,7,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1642,-5,0,1907,10,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1906,18,1,2050,5,0,0 +2013,6,26,3,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1930,148,1,2112,128,1,0 +2013,5,30,4,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,-5,0,1210,13,0,0 +2013,4,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,800,-8,0,1105,-12,0,0 +2013,6,26,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-3,0,1202,-18,0,0 +2013,9,8,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1835,-3,0,2052,0,0,0 +2013,9,27,5,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-11,0,500,2,0,0 +2013,4,16,2,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,605,-2,0,750,14,0,0 +2013,10,30,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1456,10,0,1645,35,1,0 +2013,6,10,1,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1345,-8,0,1601,6,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,9,0,5,4,0,0 +2013,4,3,3,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1051,21,1,1225,15,1,0 +2013,5,1,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-8,0,1345,-8,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1345,283,1,1435,299,1,0 +2013,9,29,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1310,-6,0,1600,-17,0,0 +2013,6,28,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,630,-2,0,750,-9,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,10,0,1118,2,0,0 +2013,6,14,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,45,1,1525,34,1,0 +2013,10,13,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,846,-8,0,938,-4,0,0 +2013,10,9,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,30,1,1303,21,1,0 +2013,10,17,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1918,10,0,2110,4,0,0 +2013,8,7,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,6,0,1950,-3,0,0 +2013,5,16,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2015,4,0,2110,14,0,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,534,-6,0,911,-9,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,11,0,2215,-4,0,0 +2013,8,3,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-11,0,837,-24,0,0 +2013,8,17,6,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,825,-7,0,1015,-23,0,0 +2013,4,10,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1205,-6,0,1532,40,1,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,-3,0,1526,-13,0,0 +2013,6,11,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,73,1,1446,68,1,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-8,0,1242,-17,0,0 +2013,5,16,4,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,1,0,930,-5,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1603,-5,0,2017,-33,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,605,-5,0,900,-8,0,0 +2013,5,3,5,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1655,50,1,1800,48,1,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,2,0,1520,-2,0,0 +2013,4,9,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1009,-9,0,1200,-25,0,0 +2013,10,20,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1430,2,0,1551,1,0,0 +2013,7,18,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1300,-7,0,1417,-15,0,0 +2013,8,8,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1750,57,1,1905,47,1,0 +2013,9,3,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2125,16,1,2220,3,0,0 +2013,10,19,6,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1255,-4,0,1510,-13,0,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1140,-2,0,1314,-5,0,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1240,-4,0,1356,-23,0,0 +2013,8,26,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-9,0,1309,-12,0,0 +2013,4,7,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,0,0,1841,-8,0,0 +2013,6,22,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2005,-7,0,2210,-16,0,0 +2013,5,4,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,720,1,0,1025,-9,0,0 +2013,4,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1625,88,1,1740,85,1,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1031,1,0,1646,-5,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2020,25,1,2120,18,1,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-4,0,1104,-14,0,0 +2013,7,5,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-9,0,1655,-22,0,0 +2013,7,3,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2055,-4,0,2225,-6,0,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,855,6,0,1010,-7,0,0 +2013,4,15,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1300,-10,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1935,-1,0,2138,15,1,0 +2013,8,10,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-3,0,2154,-7,0,0 +2013,4,5,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1641,-6,0,1817,-25,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,24,1,1102,13,0,0 +2013,7,27,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1448,-8,0,1744,-21,0,0 +2013,7,27,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-3,0,1005,-29,0,0 +2013,4,10,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1636,-5,0,1955,-21,0,0 +2013,8,10,6,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,0,0,1908,4,0,0 +2013,9,21,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1620,10,0,1710,9,0,0 +2013,10,7,1,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1030,20,1,1614,92,1,0 +2013,10,23,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1128,-10,0,1230,-26,0,0 +2013,7,10,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1310,0,,1509,0,1,1 +2013,7,6,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,28,1,2056,26,1,0 +2013,5,15,3,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,813,13,0,1054,-12,0,0 +2013,6,8,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1350,-4,0,1402,-8,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2100,-3,0,2243,-12,0,0 +2013,6,18,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1555,29,1,0 +2013,4,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2006,9,0,2059,11,0,0 +2013,8,6,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1109,13,0,1620,12,0,0 +2013,7,4,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,50,1,1519,44,1,0 +2013,7,24,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1117,27,1,1335,35,1,0 +2013,4,2,2,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,5,0,1930,1,0,0 +2013,8,5,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1100,-9,0,1229,5,0,0 +2013,6,15,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1100,4,0,1220,6,0,0 +2013,10,21,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1540,-10,0,2336,-2,0,0 +2013,7,29,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1115,-1,0,1125,-1,0,0 +2013,6,22,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,830,-5,0,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,750,-4,0,934,-14,0,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,800,-7,0,0 +2013,10,9,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,630,27,1,745,12,0,0 +2013,9,23,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-10,0,2041,-15,0,0 +2013,6,16,7,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2006,7,0,2202,25,1,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-6,0,2227,-18,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1740,-6,0,1905,-15,0,0 +2013,8,31,6,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1145,7,0,1455,7,0,0 +2013,6,16,7,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,-1,0,1430,0,0,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,630,20,1,1225,25,1,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,820,-17,0,0 +2013,6,13,4,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,60,1,2213,47,1,0 +2013,7,15,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,27,1,1825,19,1,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,842,21,1,1131,42,1,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1945,-5,0,2252,-32,0,0 +2013,9,18,3,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-2,0,1645,-17,0,0 +2013,4,19,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2326,162,1,520,141,1,0 +2013,6,19,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1141,1,0,1416,-6,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1742,-4,0,1925,-19,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1350,-3,0,1605,-20,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,-6,0,1320,-15,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-7,0,805,-1,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1450,32,1,1815,29,1,0 +2013,10,5,6,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,800,-3,0,1310,-27,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,2,0,1008,-16,0,0 +2013,9,12,4,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,122,1,2000,115,1,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1215,16,1,1330,0,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,727,-11,0,900,34,1,0 +2013,6,3,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2003,4,0,2139,-6,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,954,-3,0,1132,-4,0,0 +2013,8,30,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1622,1,0,1743,-3,0,0 +2013,10,14,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,2,0,740,1,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,-1,0,1852,-13,0,0 +2013,4,13,6,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1717,76,1,2039,72,1,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1940,17,1,2220,26,1,0 +2013,10,22,2,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1820,5,0,1950,-11,0,0 +2013,5,10,5,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,830,-4,0,1128,-30,0,0 +2013,8,11,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1525,-6,0,1627,-11,0,0 +2013,6,12,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,938,-3,0,1035,-4,0,0 +2013,8,7,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,615,-6,0,645,-9,0,0 +2013,8,8,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1540,14,0,1649,-2,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1935,2,0,2140,5,0,0 +2013,4,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-3,0,1619,-3,0,0 +2013,6,15,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,2,0,1715,-4,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1915,-4,0,2245,-18,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,4,0,1920,4,0,0 +2013,8,3,6,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1705,64,1,1843,47,1,0 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,3,0,1325,-1,0,0 +2013,5,31,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,855,5,0,910,1,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,29,1,1720,28,1,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,10,0,1420,9,0,0 +2013,6,3,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-4,0,1341,-18,0,0 +2013,10,30,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1730,-7,0,1912,-19,0,0 +2013,8,24,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,-2,0,1506,-1,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1545,7,0,2200,18,1,0 +2013,4,4,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,815,2,0,1034,7,0,0 +2013,4,24,3,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,229,1,1832,210,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1959,-3,0,2129,-7,0,0 +2013,7,4,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,935,0,0,1050,-13,0,0 +2013,7,27,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-3,0,1623,-9,0,0 +2013,6,15,6,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,845,-5,0,1135,-23,0,0 +2013,6,25,2,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2010,147,1,2302,130,1,0 +2013,6,28,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,12,0,2340,31,1,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1046,-2,0,1148,-12,0,0 +2013,6,14,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-8,0,2010,-18,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,725,50,1,830,40,1,0 +2013,6,23,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1708,-6,0,1931,-13,0,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1930,-6,0,2136,-23,0,0 +2013,9,17,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1915,-2,0,2226,3,0,0 +2013,10,26,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,545,-3,0,901,-5,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,830,4,0,1105,1,0,0 +2013,8,27,2,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2055,33,1,2314,15,1,0 +2013,6,15,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1625,1,0,1745,-3,0,0 +2013,10,3,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,0,0,815,-2,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-5,0,1126,-11,0,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1325,1,0,1440,-7,0,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,835,-6,0,1202,-19,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,13,0,2205,7,0,0 +2013,7,5,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,757,153,1,935,134,1,0 +2013,7,4,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2205,-7,0,2330,-20,0,0 +2013,10,25,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1225,31,1,1325,24,1,0 +2013,10,3,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,47,1,1557,44,1,0 +2013,4,23,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-5,0,1245,7,0,0 +2013,7,11,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,23,1,1330,18,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,77,1,1354,79,1,0 +2013,6,5,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,-3,0,1912,-11,0,0 +2013,4,29,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-4,0,1914,4,0,0 +2013,7,24,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-4,0,1455,3,0,0 +2013,10,6,7,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-8,0,1917,-14,0,0 +2013,4,30,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,717,-2,0,945,-11,0,0 +2013,10,17,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1220,1,0,1405,-11,0,0 +2013,9,30,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-15,0,2125,-26,0,0 +2013,5,31,5,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1650,0,0,1813,-3,0,0 +2013,9,13,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,1,0,1900,65,1,0 +2013,5,13,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-4,0,955,-2,0,0 +2013,5,22,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-1,0,1600,-21,0,0 +2013,8,12,1,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1708,11,0,1953,20,1,0 +2013,6,3,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1825,5,0,1935,-2,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,31,1,1550,15,1,0 +2013,6,18,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1805,3,0,1840,28,1,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1410,1,0,1745,13,0,0 +2013,9,23,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,-5,0,1955,0,0,0 +2013,6,5,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,21,1,1920,11,0,0 +2013,7,25,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,29,1,1610,33,1,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2200,-2,0,2305,1,0,0 +2013,10,14,1,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1929,-10,0,2100,-17,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,-4,0,920,-17,0,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,-3,0,1750,-14,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1835,2,0,2059,36,1,0 +2013,8,24,6,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1020,-5,0,1300,-17,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1939,-4,0,2140,11,0,0 +2013,10,22,2,OO,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1128,-7,0,1250,-7,0,0 +2013,10,12,6,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1018,2,0,1128,15,1,0 +2013,8,15,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1429,-1,0,1714,-22,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2005,41,1,2235,35,1,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-4,0,1219,16,1,0 +2013,9,28,6,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,830,-6,0,950,-15,0,0 +2013,4,4,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1645,0,0,1725,-9,0,0 +2013,4,12,5,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,1535,-5,0,1757,-4,0,0 +2013,6,9,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,730,2,0,900,21,1,0 +2013,10,15,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-4,0,940,-10,0,0 +2013,8,19,1,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,16,1,750,-10,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,731,-4,0,828,5,0,0 +2013,10,23,3,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1700,-5,0,1915,-16,0,0 +2013,5,23,4,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,810,-3,0,1041,-9,0,0 +2013,7,11,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,33,1,801,16,1,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1630,15,1,1950,9,0,0 +2013,8,12,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,800,-2,0,1027,5,0,0 +2013,10,10,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1245,-3,0,2120,1,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,700,-2,0,905,-31,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,1,0,1345,-10,0,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1000,-1,0,1408,-12,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,-2,0,1405,-1,0,0 +2013,8,19,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,941,-4,0,1040,-20,0,0 +2013,10,24,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1115,1,0,1715,-1,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,7,0,1625,0,0,0 +2013,8,11,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,615,-4,0,900,-11,0,0 +2013,10,5,6,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1415,7,0,2205,28,1,0 +2013,5,29,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,620,2,0,1216,-10,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1030,10,0,1800,-10,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1738,1,0,2041,-4,0,0 +2013,10,17,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,935,5,0,952,7,0,0 +2013,9,14,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,-3,0,1111,-23,0,0 +2013,6,9,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1445,21,1,1620,13,0,0 +2013,6,10,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2140,5,0,2359,-10,0,0 +2013,10,18,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1606,47,1,1833,37,1,0 +2013,5,6,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1636,-8,0,0 +2013,4,15,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,0,0,1224,-14,0,0 +2013,9,11,3,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1030,-2,0,1404,-8,0,0 +2013,10,4,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1053,-10,0,1239,-18,0,0 +2013,9,30,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-7,0,1306,-15,0,0 +2013,6,1,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,540,-5,0,751,11,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,1,0,1235,-11,0,0 +2013,4,21,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1530,-4,0,1805,60,1,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,-6,0,1915,-6,0,0 +2013,6,25,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1210,-4,0,1320,-11,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-1,0,1430,-3,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-4,0,1055,-10,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,11,0,1315,8,0,0 +2013,10,15,2,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,31,1,704,20,1,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,943,3,0,1333,3,0,0 +2013,6,13,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-8,0,904,6,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,15,1,2210,6,0,0 +2013,10,17,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,641,1,0,805,18,1,0 +2013,8,31,6,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1257,-4,0,1429,-12,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,730,-1,0,939,-17,0,0 +2013,8,12,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-8,0,1220,-22,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2115,-3,0,2245,0,0,0 +2013,9,3,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1334,-1,0,1727,-3,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-2,0,817,-7,0,0 +2013,8,3,6,9E,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,0,0,1714,5,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1420,22,1,1751,26,1,0 +2013,9,17,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,-1,0,1015,2,0,0 +2013,8,9,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,700,-5,0,815,-11,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1835,-4,0,2352,6,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,826,-2,0,934,-6,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,915,-1,0,1635,-9,0,0 +2013,6,4,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,610,-5,0,804,-20,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,900,-1,0,1030,-14,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,600,-4,0,734,-24,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1844,10,0,1943,-2,0,0 +2013,7,16,2,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,-2,0,2345,11,0,0 +2013,10,25,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-6,0,1244,-11,0,0 +2013,10,18,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2200,-1,0,2305,10,0,0 +2013,6,11,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1935,20,1,2105,20,1,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2050,29,1,2225,29,1,0 +2013,6,6,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,10,0,2008,21,1,0 +2013,5,31,5,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1151,-7,0,1259,-12,0,0 +2013,9,4,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,630,-4,0,952,-19,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1255,3,0,1600,18,1,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1558,-5,0,2005,-32,0,0 +2013,5,6,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,7,0,1650,10,0,0 +2013,8,18,7,9E,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,1415,-6,0,1557,-16,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,13,0,1000,8,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1035,10,0,1300,4,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1623,1,0,100,-32,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2110,-2,0,2225,-9,0,0 +2013,9,12,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1324,81,1,1436,83,1,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,950,-4,0,1024,-3,0,0 +2013,6,23,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,-9,0,2028,-19,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1454,-1,0,1650,-17,0,0 +2013,10,7,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1016,4,0,1230,-1,0,0 +2013,6,24,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,1,0,1130,5,0,0 +2013,6,11,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-4,0,1045,0,0,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1651,3,0,1753,-10,0,0 +2013,4,16,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1631,13,0,1920,15,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,20,1,1810,30,1,0 +2013,8,6,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1809,4,0,1917,1,0,0 +2013,9,20,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,831,-2,0,1020,-12,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1520,-10,0,2041,4,0,0 +2013,7,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1210,-5,0,1704,3,0,0 +2013,10,18,5,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,935,-6,0,1037,-22,0,0 +2013,4,17,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1740,0,0,1905,0,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,89,1,2110,63,1,0 +2013,9,24,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-1,0,1010,9,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,13,0,1720,-9,0,0 +2013,8,17,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1005,-7,0,1125,-10,0,0 +2013,7,13,6,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,905,9,0,1019,-4,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,7,0,1855,4,0,0 +2013,8,30,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,750,66,1,925,43,1,0 +2013,6,9,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-2,0,1311,-12,0,0 +2013,5,6,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-2,0,841,2,0,0 +2013,6,7,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1823,15,1,2114,9,0,0 +2013,6,21,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1337,66,1,1440,97,1,0 +2013,5,15,3,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1757,-2,0,2000,24,1,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,29,1,2226,12,0,0 +2013,7,21,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,9,0,1305,-4,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,800,-2,0,920,-4,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1320,4,0,1640,-1,0,0 +2013,4,15,1,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1350,33,1,1555,31,1,0 +2013,9,23,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-3,0,2025,-3,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2145,61,1,2315,76,1,0 +2013,4,25,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1540,-3,0,1715,-12,0,0 +2013,6,20,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-7,0,905,-4,0,0 +2013,4,27,6,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-5,0,912,2,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-3,0,1428,-3,0,0 +2013,7,12,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1447,0,0,1600,16,1,0 +2013,6,10,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1850,24,1,2035,19,1,0 +2013,5,26,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2205,-3,0,2252,-6,0,0 +2013,10,4,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1340,35,1,1503,38,1,0 +2013,7,3,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,910,-11,0,0 +2013,4,29,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1047,18,1,1359,21,1,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2149,-4,0,2303,-18,0,0 +2013,7,9,2,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1215,8,0,1513,6,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1936,-2,0,2125,-30,0,0 +2013,7,3,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-6,0,1845,-17,0,0 +2013,9,6,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1440,4,0,1530,0,0,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1410,26,1,1553,7,0,0 +2013,6,14,5,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1400,106,1,1550,110,1,0 +2013,8,27,2,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,10,0,1843,16,1,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1350,-3,0,1904,2,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,0,0,2237,6,0,0 +2013,8,10,6,OO,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1450,-1,0,1716,-6,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1355,27,1,1915,23,1,0 +2013,7,14,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1025,-1,0,1153,16,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,8,0,925,3,0,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1155,-6,0,1300,-14,0,0 +2013,4,30,2,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1800,13,0,1955,5,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,-1,0,1624,-14,0,0 +2013,4,4,4,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,9,0,1905,8,0,0 +2013,9,4,3,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1308,-6,0,2037,-15,0,0 +2013,4,23,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1020,1,0,1105,-7,0,0 +2013,5,10,5,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,951,-15,0,0 +2013,6,13,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,26,1,1911,85,1,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1610,14,0,2125,10,0,0 +2013,8,18,7,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,810,-2,0,1029,-10,0,0 +2013,4,7,7,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1815,-13,0,2047,-13,0,0 +2013,5,31,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1235,-4,0,1325,-13,0,0 +2013,8,30,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,836,-15,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2100,-1,0,2305,0,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,-4,0,941,5,0,0 +2013,5,27,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,622,-10,0,750,-24,0,0 +2013,10,1,2,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,702,-2,0,802,-10,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1350,31,1,1349,31,1,0 +2013,4,5,5,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1950,-4,0,2155,-19,0,0 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,2025,0,0,2345,-5,0,0 +2013,4,17,3,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1820,34,1,2131,-2,0,0 +2013,8,1,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,8,0,2035,14,0,0 +2013,10,3,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2035,0,0,2150,-5,0,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,600,0,0,805,-1,0,0 +2013,8,30,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-8,0,1532,-6,0,0 +2013,5,14,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,7,0,1132,-8,0,0 +2013,5,23,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,0,0,1011,-17,0,0 +2013,10,23,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-6,0,1745,-23,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,6,0,1340,-12,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1520,-2,0,1812,19,1,0 +2013,7,7,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-4,0,2130,-14,0,0 +2013,6,24,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,942,-4,0,1059,2,0,0 +2013,9,18,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1008,-7,0,1334,-5,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1000,-2,0,1105,-2,0,0 +2013,8,1,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1050,-9,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1400,38,1,1620,16,1,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1025,7,0,1500,0,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1840,10,0,2315,6,0,0 +2013,4,10,3,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1230,-5,0,1627,-23,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,3,0,1705,5,0,0 +2013,9,13,5,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,755,0,0,1035,21,1,0 +2013,9,9,1,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,725,-8,0,1116,-8,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1535,0,0,1900,-4,0,0 +2013,8,8,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-1,0,1028,-19,0,0 +2013,6,15,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,28,1,2220,30,1,0 +2013,7,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1708,-2,0,1840,-14,0,0 +2013,8,13,2,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-2,0,645,8,0,0 +2013,8,6,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1935,24,1,1955,36,1,0 +2013,7,6,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,910,15,1,1037,5,0,0 +2013,4,13,6,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,651,-12,0,0 +2013,9,24,2,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1936,-7,0,2140,-22,0,0 +2013,4,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,720,-4,0,1000,-9,0,0 +2013,8,22,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,170,1,2005,145,1,0 +2013,5,9,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,-3,0,1026,-15,0,0 +2013,5,30,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,-8,0,755,-22,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-8,0,1220,-10,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1205,0,0,1311,4,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,16,1,1925,25,1,0 +2013,7,28,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,18,1,1348,14,0,0 +2013,8,4,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,0,0,1010,-6,0,0 +2013,9,22,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,935,-4,0,1124,-8,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1755,21,1,1915,13,0,0 +2013,7,21,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,70,1,2125,52,1,0 +2013,8,11,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-3,0,2101,-3,0,0 +2013,5,16,4,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1405,-1,0,2000,-10,0,0 +2013,8,26,1,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-8,0,1023,-2,0,0 +2013,7,8,1,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,35,1,500,37,1,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1440,-2,0,1820,-1,0,0 +2013,4,10,3,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,600,-3,0,820,-15,0,0 +2013,9,29,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-6,0,1116,-13,0,0 +2013,7,8,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,30,1,1902,31,1,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-5,0,755,-11,0,0 +2013,7,18,4,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1805,-3,0,2040,3,0,0 +2013,8,4,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,3,0,1559,-6,0,0 +2013,8,15,4,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,830,6,0,1630,-12,0,0 +2013,5,8,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,-3,0,750,-17,0,0 +2013,10,28,1,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,630,35,1,715,46,1,0 +2013,5,7,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1100,-7,0,1307,-26,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1720,21,1,2025,18,1,0 +2013,4,26,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1430,-3,0,1600,-2,0,0 +2013,8,10,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1600,26,1,1750,6,0,0 +2013,7,11,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1326,15,1,1448,2,0,0 +2013,7,5,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,725,6,0,740,5,0,0 +2013,9,8,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1620,20,1,1743,5,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1345,8,0,1615,-1,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-1,0,1845,1,0,0 +2013,9,30,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-1,0,1310,3,0,0 +2013,8,23,5,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1420,30,1,2230,35,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,900,7,0,1250,6,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,3,0,2307,0,0,0 +2013,5,15,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-7,0,1340,1,0,0 +2013,9,20,5,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-1,0,820,9,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1130,16,1,1315,16,1,0 +2013,7,23,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,610,46,1,625,42,1,0 +2013,8,4,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1504,-2,0,1730,12,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-9,0,2325,-6,0,0 +2013,6,2,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,0,0,1505,-18,0,0 +2013,4,10,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,620,-2,0,805,-14,0,0 +2013,7,28,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,0,0,840,-14,0,0 +2013,9,3,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1115,-4,0,1220,-20,0,0 +2013,4,24,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,35,1,1755,33,1,0 +2013,10,6,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,-2,0,1045,-2,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,-2,0,1520,-17,0,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-5,0,2115,-14,0,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1850,9,0,1940,6,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2110,19,1,2310,-24,0,0 +2013,7,3,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,-4,0,1345,-5,0,0 +2013,4,10,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-1,0,1253,24,1,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2250,-4,0,2355,4,0,0 +2013,10,26,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,18,1,1120,14,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1102,19,1,1247,10,0,0 +2013,4,24,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1019,-6,0,0 +2013,7,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1330,17,1,1445,15,1,0 +2013,6,12,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,755,1,0,1310,-4,0,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,948,-4,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1510,-5,0,1830,-1,0,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1910,34,1,2101,6,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1805,-3,0,1950,-1,0,0 +2013,6,10,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1908,-7,0,1925,-23,0,0 +2013,9,1,7,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1630,3,0,1805,-19,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,5,0,2155,1,0,0 +2013,9,23,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1355,5,0,1455,-6,0,0 +2013,10,13,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,42,1,1533,32,1,0 +2013,9,9,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1935,-6,0,2158,9,0,0 +2013,8,20,2,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,715,-2,0,725,-2,0,0 +2013,9,20,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1725,-1,0,1845,9,0,0 +2013,5,8,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,59,1,1805,13,0,0 +2013,10,23,3,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-3,0,1030,-8,0,0 +2013,9,6,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-9,0,2126,-28,0,0 +2013,4,27,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1831,10,0,0 +2013,10,14,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-2,0,1355,4,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1027,0,0,1343,-15,0,0 +2013,9,22,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,1,0,1831,-10,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,7,0,1635,-16,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1530,-5,0,1835,-13,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-3,0,1226,-16,0,0 +2013,10,8,2,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1215,0,0,1440,4,0,0 +2013,10,16,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1306,-7,0,1514,-2,0,0 +2013,5,2,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1414,9,0,1652,-6,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,9,0,2235,32,1,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1825,0,0,2355,-9,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,17,1,2135,49,1,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,729,24,1,0 +2013,9,2,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1345,348,1,1529,398,1,0 +2013,10,10,4,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-2,0,2104,-5,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2205,-5,0,2300,7,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,-1,0,1542,-2,0,0 +2013,5,20,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1215,2,0,1425,-13,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1930,149,1,2105,137,1,0 +2013,7,30,2,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1035,-4,0,1245,-7,0,0 +2013,10,1,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-6,0,2145,-6,0,0 +2013,7,17,3,OO,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,933,-7,0,1244,-5,0,0 +2013,9,25,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,900,-2,0,1155,13,0,0 +2013,8,29,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,13,0,2101,14,0,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1510,-4,0,1636,-6,0,0 +2013,10,24,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,829,-8,0,913,-9,0,0 +2013,9,18,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,950,-2,0,1135,-10,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-2,0,1353,-30,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,-7,0,1504,-17,0,0 +2013,9,27,5,9E,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,725,-2,0,916,-12,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1525,-2,0,1740,-5,0,0 +2013,5,16,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,1,0,1856,14,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,0,0,722,-1,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,-2,0,1245,-8,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,17,1,2350,12,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1430,5,0,1608,8,0,0 +2013,10,14,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1239,1,0,1510,-15,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2149,16,1,2330,15,1,0 +2013,5,18,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-2,0,845,-12,0,0 +2013,5,10,5,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1515,0,0,1645,-13,0,0 +2013,9,18,3,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1622,-9,0,1915,-23,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2004,12,0,2249,-18,0,0 +2013,9,3,2,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1010,-6,0,1322,-6,0,0 +2013,10,26,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,844,-7,0,1130,0,0,0 +2013,10,2,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,705,-6,0,953,-25,0,0 +2013,9,13,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1426,28,1,1658,39,1,0 +2013,5,20,1,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1608,-1,0,1815,-15,0,0 +2013,9,23,1,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,0,0,1054,1,0,0 +2013,7,22,1,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,815,9,0,1000,1,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,-4,0,2104,-4,0,0 +2013,10,23,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1135,33,1,1250,33,1,0 +2013,6,24,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1115,-4,0,1250,-14,0,0 +2013,6,13,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-3,0,2017,-12,0,0 +2013,5,22,3,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,145,-5,0,659,-24,0,0 +2013,6,9,7,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1028,-3,0,1338,-12,0,0 +2013,4,13,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-6,0,2032,-21,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1459,70,1,1905,115,1,0 +2013,8,22,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,1150,-4,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2231,0,0,432,7,0,0 +2013,10,14,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,2,0,1045,-5,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,932,44,1,1208,30,1,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,5,0,1257,17,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1805,32,1,1900,21,1,0 +2013,8,23,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,809,5,0,957,2,0,0 +2013,6,29,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,2,0,1640,-1,0,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,920,0,0,1030,-4,0,0 +2013,7,12,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,142,1,1955,143,1,0 +2013,9,30,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1210,-3,0,1506,-6,0,0 +2013,7,3,3,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,5,0,1340,25,1,0 +2013,10,25,5,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,69,1,1230,44,1,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,700,10,0,1200,-7,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,850,-7,0,1144,-37,0,0 +2013,6,24,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,530,25,1,806,23,1,0 +2013,6,3,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1534,6,0,1633,0,0,0 +2013,4,27,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1905,-2,0,2109,-16,0,0 +2013,10,23,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,42,1,1314,42,1,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,15,1,1300,11,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1430,-7,0,1545,-8,0,0 +2013,4,29,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,29,1,1534,21,1,0 +2013,7,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,1,0,1224,-11,0,0 +2013,8,4,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,3,0,1040,-4,0,0 +2013,10,4,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-5,0,532,3,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1900,40,1,2135,28,1,0 +2013,4,6,6,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1216,-5,0,1402,-26,0,0 +2013,9,18,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-8,0,1245,-11,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2003,4,0,2143,-2,0,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,0,0,1334,0,0,0 +2013,6,22,6,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1354,-1,0,1450,-6,0,0 +2013,8,6,2,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-10,0,505,-10,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1320,0,0,1450,-8,0,0 +2013,5,6,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1025,-3,0,1100,-3,0,0 +2013,6,8,6,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-1,0,616,3,0,0 +2013,8,28,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,81,1,1840,60,1,0 +2013,5,14,2,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1947,-10,0,2120,-11,0,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1535,0,0,1735,4,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2010,-8,0,2121,-19,0,0 +2013,4,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,-2,0,1115,-8,0,0 +2013,4,20,6,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,-3,0,1354,-2,0,0 +2013,7,2,2,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-3,0,1755,28,1,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1325,64,1,1435,53,1,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,3,0,2319,-11,0,0 +2013,6,5,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,7,0,2115,22,1,0 +2013,6,20,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-2,0,1543,-4,0,0 +2013,7,7,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1009,-10,0,1307,-26,0,0 +2013,6,5,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,15,1,1430,0,0,0 +2013,4,5,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1210,0,0,1340,2,0,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1400,-4,0,1650,-15,0,0 +2013,4,26,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-2,0,2105,1,0,0 +2013,4,8,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,530,-8,0,618,-16,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,0,0,1940,-11,0,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,0,,1050,0,1,1 +2013,5,19,7,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1338,-14,0,1706,19,1,0 +2013,8,10,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1510,19,1,1800,19,1,0 +2013,5,3,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1625,74,1,1740,68,1,0 +2013,5,5,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,910,-4,0,1030,-7,0,0 +2013,4,1,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,-10,0,1849,-24,0,0 +2013,6,16,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-5,0,2110,-23,0,0 +2013,6,1,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1810,1,0,1925,-5,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1619,-4,0,38,2,0,0 +2013,5,11,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-4,0,1724,-11,0,0 +2013,9,26,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-2,0,945,-16,0,0 +2013,4,1,1,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,1400,0,0,1550,-2,0,0 +2013,4,8,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1239,-6,0,1405,-4,0,0 +2013,4,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,945,-1,0,1045,-9,0,0 +2013,8,27,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1144,-7,0,1305,-8,0,0 +2013,10,27,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,28,1,1501,10,0,0 +2013,5,15,3,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1110,0,0,1251,-12,0,0 +2013,5,10,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1436,105,1,1654,98,1,0 +2013,5,7,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1855,-4,0,2025,-18,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2055,124,1,2300,117,1,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1315,-4,0,1454,11,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-7,0,1121,-11,0,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1815,81,1,2020,117,1,0 +2013,8,28,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,0,1252,-14,0,0 +2013,5,15,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1804,3,0,2159,-6,0,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2130,-6,0,535,-27,0,0 +2013,8,2,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1215,-7,0,0 +2013,10,30,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1008,-7,0,1305,-20,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,-4,0,1058,23,1,0 +2013,9,20,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,3,0,1905,-27,0,0 +2013,5,25,6,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1700,6,0,1814,6,0,0 +2013,9,29,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1225,-1,0,1330,-3,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1748,0,,2202,0,1,1 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1640,0,0,1825,-2,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1650,0,,1900,0,1,1 +2013,10,15,2,AA,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,1050,-1,0,1755,-29,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,-3,0,2220,-17,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,3,0,915,-9,0,0 +2013,4,2,2,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1030,2,0,1835,-16,0,0 +2013,10,20,7,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,-6,0,1607,-9,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1033,-11,0,1349,-13,0,0 +2013,9,20,5,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1150,-3,0,1450,0,0,0 +2013,5,22,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,42,1,1850,36,1,0 +2013,5,2,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,36,1,1140,33,1,0 +2013,7,8,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,4,0,1410,0,0,0 +2013,5,27,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1400,-2,0,1515,-8,0,0 +2013,5,25,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1636,14,0,1835,4,0,0 +2013,5,10,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11278,Ronald Reagan Washington National,Washington,DC,1100,20,1,1424,27,1,0 +2013,10,12,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,615,-4,0,828,-23,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1530,-7,0,1850,-25,0,0 +2013,10,16,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1410,33,1,1540,21,1,0 +2013,9,30,1,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1345,3,0,1700,-8,0,0 +2013,9,16,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,43,1,1602,61,1,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2225,65,1,135,59,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-1,0,1015,-6,0,0 +2013,5,29,3,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,17,1,1815,13,0,0 +2013,10,12,6,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-8,0,821,21,1,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,625,-1,0,725,-1,0,0 +2013,4,27,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,6,0,759,1,0,0 +2013,10,21,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1207,-7,0,0 +2013,7,8,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,-3,0,1920,-5,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,-2,0,1531,-3,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-3,0,1105,6,0,0 +2013,4,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1359,-7,0,1800,-12,0,0 +2013,4,24,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1220,4,0,1410,-12,0,0 +2013,10,8,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,900,-5,0,1712,-17,0,0 +2013,9,30,1,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1735,0,0,1900,1,0,0 +2013,9,20,5,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1545,26,1,1753,32,1,0 +2013,9,10,2,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,2,0,759,7,0,0 +2013,8,29,4,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1731,7,0,1953,-20,0,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1440,28,1,2046,30,1,0 +2013,8,10,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1606,-2,0,2022,-28,0,0 +2013,4,23,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-5,0,700,-11,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1859,0,0,2330,-15,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-1,0,800,-4,0,0 +2013,5,23,4,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,2035,15,1,2205,3,0,0 +2013,8,15,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,20,0,0,815,-8,0,0 +2013,4,26,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,640,0,0,921,6,0,0 +2013,5,5,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,724,-9,0,0 +2013,10,9,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1849,-5,0,2027,16,1,0 +2013,4,4,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1650,-3,0,1745,-11,0,0 +2013,6,4,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1633,1,0,1926,-6,0,0 +2013,4,20,6,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1850,0,,2340,0,1,1 +2013,5,14,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,0,0,1609,-6,0,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1543,-2,0,1713,1,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,650,-2,0,840,-7,0,0 +2013,4,20,6,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-1,0,1300,32,1,0 +2013,5,19,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1705,12,0,1805,5,0,0 +2013,10,30,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1944,97,1,2055,90,1,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1550,-1,0,2035,-29,0,0 +2013,4,1,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,0,0,1246,-9,0,0 +2013,9,9,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1727,89,1,2039,82,1,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,13,0,2259,-7,0,0 +2013,5,31,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1131,-5,0,1445,-8,0,0 +2013,4,6,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,753,-4,0,1025,10,0,0 +2013,4,9,2,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1840,6,0,1955,1,0,0 +2013,4,7,7,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,605,-4,0,743,-14,0,0 +2013,4,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-2,0,1749,-12,0,0 +2013,7,1,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,910,7,0,1230,8,0,0 +2013,7,9,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1100,-2,0,1432,-3,0,0 +2013,7,7,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-4,0,2103,-6,0,0 +2013,7,1,1,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1435,-3,0,1643,16,1,0 +2013,5,7,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,905,-4,0,1035,-15,0,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1623,14,0,1805,16,1,0 +2013,5,22,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,710,-1,0,815,-10,0,0 +2013,8,8,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1410,-2,0,1532,4,0,0 +2013,7,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,835,0,0,1105,-10,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1455,-8,0,2025,-1,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1930,100,1,2054,98,1,0 +2013,8,4,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,101,1,1650,92,1,0 +2013,9,8,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1320,-5,0,1435,-10,0,0 +2013,9,16,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,925,-8,0,0 +2013,4,3,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1030,-3,0,1130,-23,0,0 +2013,9,24,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1851,26,1,1941,33,1,0 +2013,5,26,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2109,-3,0,2229,-3,0,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,925,18,1,1135,11,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,905,-1,0,1220,-18,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1135,25,1,1729,14,0,0 +2013,9,29,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,15,1,1530,-13,0,0 +2013,10,18,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,-3,0,2139,-5,0,0 +2013,7,6,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,51,1,2030,44,1,0 +2013,10,29,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-14,0,1055,-9,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,855,29,1,1025,34,1,0 +2013,8,24,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,630,-1,0,815,-14,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1840,-5,0,2356,-8,0,0 +2013,5,11,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,5,0,2200,8,0,0 +2013,10,2,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,750,-3,0,1025,-3,0,0 +2013,9,6,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-5,0,1617,7,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,850,2,0,0 +2013,4,2,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,1,0,850,-8,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,-4,0,2148,-11,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-2,0,1915,-15,0,0 +2013,8,8,4,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,4,0,1010,0,0,0 +2013,7,27,6,FL,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,830,-5,0,1008,-21,0,0 +2013,7,11,4,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2210,-2,0,2300,-5,0,0 +2013,10,4,5,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1640,13,0,1955,1,0,0 +2013,10,28,1,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1925,-7,0,2112,-12,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1400,13,0,1625,3,0,0 +2013,8,16,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,59,-2,0,914,2,0,0 +2013,8,15,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,12,0,2213,3,0,0 +2013,7,9,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2055,0,0,2230,-5,0,0 +2013,9,10,2,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,4,0,1012,-6,0,0 +2013,7,6,6,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1858,6,0,1954,-10,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1345,0,0,1615,-11,0,0 +2013,5,7,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,945,-5,0,1020,-27,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,930,3,0,1130,7,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,5,0,2305,1,0,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2200,10,0,613,10,0,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,-2,0,1051,-31,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1055,18,1,0 +2013,8,14,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1429,-3,0,1620,-2,0,0 +2013,9,19,4,UA,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1333,2,0,1503,-13,0,0 +2013,6,11,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,0,0,2102,3,0,0 +2013,7,20,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,826,-8,0,1005,-8,0,0 +2013,4,12,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1433,70,1,1600,62,1,0 +2013,8,9,5,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-5,0,1420,-3,0,0 +2013,9,20,5,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1119,8,0,1828,7,0,0 +2013,7,23,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,7,0,820,0,0,0 +2013,4,12,5,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1300,79,1,1846,55,1,0 +2013,4,29,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1254,1,0,1420,46,1,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-5,0,1510,-5,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1155,0,0,1320,-13,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1050,-1,0,1240,-32,0,0 +2013,4,5,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,700,-7,0,1017,1,0,0 +2013,9,11,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,10,0,1655,9,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,749,-3,0,1101,-14,0,0 +2013,8,12,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-10,0,837,-6,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-2,0,1349,23,1,0 +2013,6,27,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1906,5,0,2200,-14,0,0 +2013,7,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,645,0,0,950,-1,0,0 +2013,7,5,5,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,-6,0,1110,-16,0,0 +2013,8,23,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1236,-16,0,0 +2013,5,18,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,7,0,1239,5,0,0 +2013,7,4,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1725,-5,0,1850,-17,0,0 +2013,8,4,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1201,25,1,1445,30,1,0 +2013,6,11,2,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-7,0,1300,8,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,-8,0,2155,-5,0,0 +2013,6,14,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2145,4,0,2225,1,0,0 +2013,5,4,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-20,0,1139,-33,0,0 +2013,9,14,6,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,824,100,1,901,88,1,0 +2013,8,22,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,20,1,745,11,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1550,19,1,1810,58,1,0 +2013,8,25,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,-4,0,1940,-6,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1427,2,0,1623,9,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1730,2,0,2000,-9,0,0 +2013,8,14,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1610,18,1,2125,15,1,0 +2013,4,26,5,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,198,1,2005,181,1,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-2,0,1938,30,1,0 +2013,10,4,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1130,41,1,1255,29,1,0 +2013,4,4,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1247,10,0,1809,-2,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1425,1,0,1645,-23,0,0 +2013,9,2,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,826,-2,0,1018,-8,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,915,0,0,1305,7,0,0 +2013,10,14,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2005,-7,0,2050,-5,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,3,0,1130,-10,0,0 +2013,8,25,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1150,0,0,1220,3,0,0 +2013,6,14,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1123,-6,0,1249,-12,0,0 +2013,5,25,6,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1008,-3,0,1538,-13,0,0 +2013,7,7,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1859,0,,2038,0,1,1 +2013,10,4,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-4,0,1425,-10,0,0 +2013,9,30,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-5,0,819,6,0,0 +2013,4,25,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1920,-5,0,2035,-14,0,0 +2013,10,26,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-4,0,1156,7,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,-6,0,1712,-13,0,0 +2013,5,29,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,-8,0,2128,-10,0,0 +2013,5,28,2,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2035,-8,0,2250,-19,0,0 +2013,5,29,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,0,0,1840,-4,0,0 +2013,4,28,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,601,-7,0,935,-36,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1106,6,0,1440,20,1,0 +2013,5,25,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,29,-9,0,604,-13,0,0 +2013,6,11,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,3,0,1825,1,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1758,54,1,2030,34,1,0 +2013,10,26,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2353,8,0,702,-18,0,0 +2013,5,26,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,-1,0,911,-10,0,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1625,12,0,1740,-5,0,0 +2013,5,3,5,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1012,-4,0,1137,-12,0,0 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,0,0,1228,-4,0,0 +2013,10,19,6,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1805,-7,0,2327,-5,0,0 +2013,7,9,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,730,0,0,925,-3,0,0 +2013,5,9,4,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,735,-2,0,1010,-13,0,0 +2013,4,11,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-6,0,1407,-36,0,0 +2013,5,19,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,4,0,2015,7,0,0 +2013,6,19,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2010,-2,0,2156,-20,0,0 +2013,5,31,5,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1238,-1,0,1459,-7,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,-1,0,1845,-12,0,0 +2013,8,1,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,21,1,1309,5,0,0 +2013,4,4,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,830,-4,0,940,-12,0,0 +2013,5,3,5,UA,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1432,40,1,1650,24,1,0 +2013,8,25,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-2,0,1110,4,0,0 +2013,4,17,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,915,-2,0,1649,-6,0,0 +2013,10,7,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-4,0,1930,-8,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1350,0,0,1535,-11,0,0 +2013,10,24,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1131,11,0,0 +2013,5,1,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1415,0,0,1920,-8,0,0 +2013,4,17,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1535,23,1,1835,15,1,0 +2013,8,18,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1128,-7,0,1921,9,0,0 +2013,7,31,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,737,-3,0,920,-26,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,640,113,1,945,127,1,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1840,28,1,2055,24,1,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,3,0,1245,-10,0,0 +2013,7,17,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,23,1,1823,19,1,0 +2013,10,29,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,-8,0,1314,-14,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1143,10,0,1418,-3,0,0 +2013,8,16,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,830,-2,0,1015,-14,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1245,-2,0,1500,-10,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,740,-1,0,1002,-9,0,0 +2013,10,1,2,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1845,-1,0,2035,-22,0,0 +2013,6,6,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,-6,0,1619,-5,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,0,0,1845,-6,0,0 +2013,8,8,4,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1124,-5,0,0 +2013,5,9,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1250,-1,0,1405,-11,0,0 +2013,7,22,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-2,0,1025,21,1,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,-5,0,1607,-11,0,0 +2013,6,28,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,915,0,0,1115,3,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1000,10,0,1200,16,1,0 +2013,7,8,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,24,1,1909,13,0,0 +2013,8,21,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,806,23,1,1400,12,0,0 +2013,9,24,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,0,0,1445,-17,0,0 +2013,4,21,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,-5,0,1639,-4,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1300,10,0,1350,10,0,0 +2013,4,26,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,755,2,0,900,9,0,0 +2013,7,13,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,28,1,1830,-12,0,0 +2013,5,14,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1110,-6,0,1324,-10,0,0 +2013,5,9,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-1,0,1330,7,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1715,1,0,1912,-20,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1450,24,1,1810,22,1,0 +2013,8,8,4,YV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1605,0,,1732,0,1,1 +2013,4,2,2,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,1225,-3,0,1320,-3,0,0 +2013,7,15,1,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,711,16,1,805,13,0,0 +2013,8,6,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-12,0,1743,-1,0,0 +2013,10,26,6,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-5,0,1350,17,1,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-2,0,1435,-9,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,2012,-4,0,2250,2,0,0 +2013,9,25,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1057,-2,0,0 +2013,4,26,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,-1,0,715,4,0,0 +2013,4,30,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,0,0,855,-8,0,0 +2013,8,28,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1525,-3,0,1859,7,0,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,830,-3,0,945,-1,0,0 +2013,10,25,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,850,1,0,0 +2013,8,2,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1110,7,0,1235,5,0,0 +2013,8,20,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,810,-3,0,930,-4,0,0 +2013,7,9,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1611,0,0,1940,25,1,0 +2013,10,13,7,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-6,0,1425,-4,0,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1825,0,0,2043,-6,0,0 +2013,7,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,1,0,1545,-5,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1711,7,0,1950,26,1,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,0,0,1330,-17,0,0 +2013,6,27,4,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1730,30,1,1825,37,1,0 +2013,7,4,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1010,7,0,1125,1,0,0 +2013,10,11,5,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,43,1,1550,40,1,0 +2013,9,24,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,930,69,1,1134,52,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1106,11,0,1222,14,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,745,-3,0,1040,-14,0,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,143,1,10,120,1,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1745,23,1,1954,-7,0,0 +2013,7,15,1,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,14,0,1330,17,1,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1340,19,1,1445,13,0,0 +2013,6,17,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,817,-1,0,930,19,1,0 +2013,7,6,6,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,745,-7,0,919,-17,0,0 +2013,4,11,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,83,1,1911,73,1,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,-4,0,1911,-9,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,925,-4,0,1124,-13,0,0 +2013,5,8,3,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1514,-8,0,1850,-10,0,0 +2013,4,11,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1343,-2,0,0 +2013,5,18,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,830,-7,0,1015,-5,0,0 +2013,8,3,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1629,-2,0,1932,-14,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1742,42,1,1854,43,1,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1157,18,1,1651,18,1,0 +2013,9,13,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2010,-5,0,2133,-8,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1315,0,0,1645,-12,0,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1235,-3,0,1450,-5,0,0 +2013,6,19,3,EV,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,96,1,1322,80,1,0 +2013,4,28,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1700,-12,0,2124,-33,0,0 +2013,4,25,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1622,-5,0,1746,-8,0,0 +2013,7,1,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1047,-1,0,1259,8,0,0 +2013,6,20,4,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-4,0,1529,-15,0,0 +2013,7,24,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,945,-1,0,1130,1,0,0 +2013,6,20,4,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1055,3,0,1345,-4,0,0 +2013,9,6,5,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1705,-8,0,2021,-35,0,0 +2013,10,16,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,725,-3,0,830,-12,0,0 +2013,7,6,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1030,1,0,1155,6,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1040,4,0,1230,-3,0,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2003,-2,0,145,0,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1016,5,0,1333,-10,0,0 +2013,9,11,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-9,0,1001,-22,0,0 +2013,7,25,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1910,11,0,2035,12,0,0 +2013,6,13,4,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1710,31,1,1930,27,1,0 +2013,8,29,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,18,1,1829,16,1,0 +2013,5,20,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1155,3,0,1305,2,0,0 +2013,8,16,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,-3,0,1805,-9,0,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,900,6,0,1125,-14,0,0 +2013,5,2,4,VX,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,945,-6,0,1800,-1,0,0 +2013,10,5,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1845,3,0,2010,1,0,0 +2013,10,13,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1539,-1,0,1741,-13,0,0 +2013,6,1,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1516,-6,0,1803,-14,0,0 +2013,6,28,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,1,0,2255,-8,0,0 +2013,5,26,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,740,-3,0,845,-9,0,0 +2013,10,1,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1510,-4,0,1920,-10,0,0 +2013,8,2,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,915,-10,0,1155,-3,0,0 +2013,9,18,3,US,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-7,0,910,-1,0,0 +2013,7,9,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-1,0,830,-4,0,0 +2013,4,18,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,645,0,,920,0,1,1 +2013,7,29,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,710,-4,0,815,-18,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,39,1,2245,36,1,0 +2013,9,29,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1735,21,1,1905,18,1,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1541,-3,0,1654,1,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,1,0,1805,-3,0,0 +2013,7,13,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1440,-1,0,1645,-10,0,0 +2013,10,28,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,755,-2,0,855,-7,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,950,-3,0,1110,-6,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1455,15,1,1825,21,1,0 +2013,7,14,7,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,810,0,0,1335,-12,0,0 +2013,8,10,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1945,0,0,2105,-4,0,0 +2013,7,16,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-7,0,1155,-12,0,0 +2013,7,7,7,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1940,6,0,50,9,0,0 +2013,10,1,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1348,-9,0,1545,-24,0,0 +2013,9,19,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,2,0,2035,-6,0,0 +2013,8,5,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-7,0,1252,-7,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,-5,0,2259,-12,0,0 +2013,8,3,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,-5,0,1015,-16,0,0 +2013,7,19,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,-11,0,1304,-10,0,0 +2013,5,7,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,21,1,1018,14,0,0 +2013,6,28,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1606,58,1,1744,79,1,0 +2013,5,6,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-4,0,1335,-37,0,0 +2013,6,23,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1641,-7,0,0 +2013,10,28,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1416,-2,0,1700,-9,0,0 +2013,7,5,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,8,0,1955,0,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1135,-2,0,1225,4,0,0 +2013,8,28,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,920,15,1,1255,13,0,0 +2013,5,13,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-6,0,751,-12,0,0 +2013,5,20,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,-3,0,1405,-22,0,0 +2013,8,1,4,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1000,-4,0,1255,-28,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1200,9,0,1505,10,0,0 +2013,10,25,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-3,0,1320,-4,0,0 +2013,7,22,1,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1010,-3,0,1245,-18,0,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,836,-6,0,1030,-19,0,0 +2013,10,4,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1455,15,1,1815,20,1,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1220,-1,0,1355,13,0,0 +2013,9,6,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-4,0,1535,-6,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,-4,0,1650,-14,0,0 +2013,5,9,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1050,-2,0,1359,-9,0,0 +2013,9,29,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1150,7,0,1500,14,0,0 +2013,8,19,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-3,0,2058,-6,0,0 +2013,5,12,7,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1510,33,1,1709,22,1,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1210,-2,0,1358,-20,0,0 +2013,8,2,5,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,2000,41,1,2141,20,1,0 +2013,7,2,2,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1035,14,0,1223,8,0,0 +2013,6,20,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1435,3,0,1555,-4,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,-5,0,2135,0,0,0 +2013,6,17,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-6,0,2155,-13,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,-4,0,1914,-19,0,0 +2013,7,18,4,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1931,15,1,2103,10,0,0 +2013,8,10,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1335,12,0,1455,1,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1455,1,0,1740,-1,0,0 +2013,6,14,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1113,-1,0,1155,0,0,0 +2013,6,23,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,7,0,2005,-12,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,953,0,0,1209,-21,0,0 +2013,6,21,5,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1401,111,1,1433,122,1,0 +2013,7,7,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-3,0,1212,-4,0,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-5,0,1930,-15,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1120,-4,0,1310,-5,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,739,1,0,913,-14,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,850,-1,0,1230,-7,0,0 +2013,9,1,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,15,1,1310,-1,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1325,-1,0,1830,1,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2030,131,1,2235,139,1,0 +2013,8,7,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-2,0,1911,-5,0,0 +2013,8,29,4,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1125,1,0,1210,2,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1427,6,0,0 +2013,4,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1700,-3,0,1950,-14,0,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1055,-6,0,1430,-4,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1534,0,0,1728,-29,0,0 +2013,10,9,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,7,0,2135,5,0,0 +2013,8,20,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,-6,0,1412,-22,0,0 +2013,7,9,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1103,7,0,1415,8,0,0 +2013,8,1,4,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1144,-5,0,1400,2,0,0 +2013,7,30,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1920,-2,0,2110,-15,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2100,-1,0,2236,-16,0,0 +2013,7,1,1,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1343,-3,0,1540,0,0,0 +2013,9,16,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,16,1,1150,20,1,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,703,-5,0,938,-7,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1738,12,0,2051,-11,0,0 +2013,8,27,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,9,0,2106,-7,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,-1,0,1145,0,0,0 +2013,8,22,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1655,35,1,1735,35,1,0 +2013,8,16,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,731,-5,0,1040,-25,0,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1220,79,1,1340,78,1,0 +2013,10,30,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1915,21,1,25,8,0,0 +2013,8,30,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1913,-5,0,2125,-4,0,0 +2013,4,26,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,14,0,2240,6,0,0 +2013,8,10,6,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,0,0,1629,-10,0,0 +2013,8,13,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-8,0,1511,-28,0,0 +2013,4,20,6,F9,11292,Denver International,Denver,CO,14635,Southwest Florida International,Fort Myers,FL,1130,-7,0,1704,-12,0,0 +2013,9,29,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-7,0,843,-9,0,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-5,0,933,-16,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1148,-2,0,1427,-15,0,0 +2013,4,19,5,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,1020,-1,0,1809,-20,0,0 +2013,10,29,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1940,23,1,1955,33,1,0 +2013,5,26,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1150,2,0,1315,-9,0,0 +2013,7,29,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1046,-1,0,1350,6,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,0,0,2327,0,0,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1040,0,0,1400,10,0,0 +2013,6,22,6,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,916,-11,0,1128,-8,0,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-2,0,1305,-18,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1235,-1,0,1405,12,0,0 +2013,6,20,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,-5,0,539,-3,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1540,-3,0,1845,-22,0,0 +2013,4,4,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1345,-6,0,1910,8,0,0 +2013,6,30,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1245,12,0,1424,4,0,0 +2013,9,17,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,805,-6,0,1510,-4,0,0 +2013,10,18,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1305,19,1,2106,5,0,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,901,-17,0,0 +2013,9,10,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,833,-6,0,1002,-1,0,0 +2013,9,23,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1240,1,0,1400,-7,0,0 +2013,8,23,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1205,26,1,1325,30,1,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1700,10,0,1818,15,1,0 +2013,8,3,6,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1855,119,1,2025,112,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1430,-4,0,1455,-1,0,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1210,39,1,1304,40,1,0 +2013,5,6,1,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,715,15,1,1500,20,1,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1230,-5,0,1341,9,0,0 +2013,9,26,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1508,21,1,1624,15,1,0 +2013,4,18,4,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1830,14,0,2150,1,0,0 +2013,10,20,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-6,0,1105,-6,0,0 +2013,7,11,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,0,0,2354,-8,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1930,-4,0,2214,-33,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1010,-4,0,1125,-5,0,0 +2013,5,12,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-2,0,1345,-11,0,0 +2013,10,24,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-1,0,1902,-2,0,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,850,1,0,1026,-3,0,0 +2013,7,31,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1530,-1,0,1630,-8,0,0 +2013,7,25,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,910,1,0,1305,-5,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1105,10,0,1820,0,0,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1100,-5,0,1218,46,1,0 +2013,10,5,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,24,1,1325,14,0,0 +2013,6,20,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,0,0,1505,-2,0,0 +2013,9,8,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,32,1,1735,26,1,0 +2013,6,2,7,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2315,-4,0,707,-23,0,0 +2013,4,17,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1824,-10,0,0 +2013,6,15,6,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1257,-8,0,1605,-3,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,13,0,1355,16,1,0 +2013,10,17,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,4,0,1615,2,0,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1620,43,1,1730,34,1,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1722,-10,0,1829,-5,0,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-4,0,1936,-19,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1340,22,1,1504,10,0,0 +2013,9,6,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-4,0,1310,-3,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,2135,7,0,2250,6,0,0 +2013,4,15,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1730,-3,0,1919,20,1,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-1,0,1010,-9,0,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1131,-3,0,1446,-45,0,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,615,-2,0,1225,-10,0,0 +2013,9,13,5,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1530,-5,0,1715,14,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1800,-2,0,1925,0,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,930,-6,0,1105,-16,0,0 +2013,4,21,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,14,0,1635,14,0,0 +2013,10,9,3,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,715,-6,0,841,-17,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,2,0,1940,-18,0,0 +2013,9,3,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-2,0,835,-11,0,0 +2013,10,31,4,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,-5,0,1435,-5,0,0 +2013,4,16,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1017,0,0,1135,0,0,0 +2013,6,22,6,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,26,1,2125,12,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1355,-3,0,1530,-1,0,0 +2013,8,27,2,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2338,-7,0,717,-5,0,0 +2013,5,2,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,955,4,0,1115,-2,0,0 +2013,6,16,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,725,-2,0,1021,-15,0,0 +2013,8,19,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1512,-4,0,1749,-27,0,0 +2013,9,15,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,955,-3,0,1117,10,0,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1547,-2,0,1720,10,0,0 +2013,5,26,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1109,3,0,1908,-20,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2107,2,0,2314,-1,0,0 +2013,5,8,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,14,0,1405,12,0,0 +2013,6,13,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1740,0,,1925,0,1,1 +2013,9,26,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-9,0,1005,-32,0,0 +2013,5,19,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1455,7,0,1610,0,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,21,1,1120,16,1,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,-6,0,2348,-4,0,0 +2013,5,16,4,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,-2,0,1349,-4,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1420,2,0,1525,-2,0,0 +2013,7,26,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-6,0,1341,-8,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,820,0,0,915,-5,0,0 +2013,10,26,6,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-2,0,1024,-1,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,61,1,2310,65,1,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-6,0,2320,4,0,0 +2013,6,16,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,700,-1,0,858,-9,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,630,-3,0,730,-11,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1735,-3,0,1914,-13,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-4,0,1905,-16,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1410,0,0,1655,-11,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,12,0,1605,9,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1317,-5,0,1527,2,0,0 +2013,7,25,4,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,650,-1,0,808,-2,0,0 +2013,7,13,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1755,-2,0,1925,42,1,0 +2013,4,19,5,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,625,-5,0,0 +2013,5,13,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1755,-1,0,2030,-24,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,15,1,1505,36,1,0 +2013,9,12,4,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1835,46,1,1950,33,1,0 +2013,4,21,7,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1137,-6,0,1427,-2,0,0 +2013,8,27,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1020,-2,0,1140,-11,0,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1932,-3,0,2112,-26,0,0 +2013,5,3,5,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1312,57,1,1442,50,1,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1700,6,0,1753,7,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-3,0,1006,-2,0,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1222,9,0,1545,-18,0,0 +2013,5,13,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,9,0,1705,-2,0,0 +2013,4,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,3,0,2250,-10,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1410,-1,0,1536,-7,0,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,-4,0,930,-8,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1055,0,0,1411,2,0,0 +2013,8,24,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,-14,0,1844,-18,0,0 +2013,10,30,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1930,20,1,2030,16,1,0 +2013,8,6,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1443,9,0,1655,6,0,0 +2013,8,15,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1945,40,1,2235,33,1,0 +2013,6,12,3,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,152,1,550,147,1,0 +2013,5,31,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1745,1,0,1925,4,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1740,5,0,1850,6,0,0 +2013,6,22,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-1,0,1759,-13,0,0 +2013,5,1,3,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2146,-5,0,604,-8,0,0 +2013,5,7,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,11,0,1300,8,0,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,941,1,0,1259,-3,0,0 +2013,8,5,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1230,42,1,1355,40,1,0 +2013,9,27,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1935,-4,0,2229,-4,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2140,-5,0,515,-11,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2035,2,0,2234,-24,0,0 +2013,9,19,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,172,1,2055,194,1,0 +2013,7,22,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-7,0,808,-3,0,0 +2013,9,29,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1116,-6,0,1300,-18,0,0 +2013,6,8,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1225,-57,0,0 +2013,7,22,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,815,-5,0,930,2,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1533,0,0,1725,-12,0,0 +2013,8,23,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1750,24,1,1905,27,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,15,1,2356,38,1,0 +2013,10,16,3,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1445,14,0,1630,1,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1925,22,1,2155,15,1,0 +2013,8,29,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1557,-7,0,1702,-1,0,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,650,8,0,812,-15,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,23,1,2010,25,1,0 +2013,9,6,5,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1320,-9,0,1415,-1,0,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,845,4,0,950,2,0,0 +2013,8,28,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1658,-8,0,1815,-20,0,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,22,1,2350,31,1,0 +2013,5,16,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1045,-6,0,1333,0,0,0 +2013,6,18,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,703,-9,0,1003,-13,0,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,805,-2,0,1102,-2,0,0 +2013,9,2,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,2,0,2131,-6,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1412,-7,0,1754,-20,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,706,7,0,1026,-23,0,0 +2013,9,5,4,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1900,6,0,1959,1,0,0 +2013,4,11,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-10,0,1510,-11,0,0 +2013,5,27,1,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-4,0,1239,35,1,0 +2013,8,31,6,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2329,42,1,757,52,1,0 +2013,9,13,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1740,-6,0,2015,-6,0,0 +2013,6,2,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,953,-5,0,1517,-15,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-3,0,1349,9,0,0 +2013,7,18,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-9,0,2150,-14,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1040,-7,0,1241,-21,0,0 +2013,6,4,2,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,-4,0,1716,-15,0,0 +2013,4,17,3,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-3,0,1518,-16,0,0 +2013,9,18,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1400,-20,0,0 +2013,6,1,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,25,1,1820,75,1,0 +2013,10,16,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1541,0,0,1855,3,0,0 +2013,7,12,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,840,-7,0,1014,-11,0,0 +2013,4,18,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,938,96,1,1040,90,1,0 +2013,10,31,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-6,0,2015,-3,0,0 +2013,9,28,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-3,0,1650,3,0,0 +2013,5,3,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,42,1,1930,59,1,0 +2013,8,19,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,811,-3,0,919,-7,0,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,635,19,1,950,14,0,0 +2013,7,20,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1747,0,,2004,0,1,1 +2013,8,2,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1523,0,0,1826,2,0,0 +2013,5,25,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2045,138,1,2209,138,1,0 +2013,7,24,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1755,44,1,2120,48,1,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,955,14,0,1630,20,1,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,-5,0,1005,0,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,725,0,0,805,-10,0,0 +2013,8,27,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,9,0,1055,-26,0,0 +2013,8,1,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-5,0,1020,-19,0,0 +2013,5,31,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1450,12,0,2320,10,0,0 +2013,10,16,3,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-5,0,2137,-2,0,0 +2013,8,13,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-3,0,1105,4,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,845,3,0,1110,0,0,0 +2013,7,13,6,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,-1,0,915,-17,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,22,1,1927,17,1,0 +2013,6,24,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,50,1,1953,38,1,0 +2013,4,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-12,0,1418,-14,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1555,14,0,1911,-3,0,0 +2013,5,30,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1658,-3,0,1848,-10,0,0 +2013,8,21,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,635,-6,0,740,3,0,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-9,0,1122,-24,0,0 +2013,8,3,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2000,-5,0,2125,-8,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1630,9,0,1945,5,0,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,925,-8,0,1050,-17,0,0 +2013,4,29,1,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,831,-3,0,1038,-16,0,0 +2013,4,30,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-4,0,2140,-12,0,0 +2013,9,24,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1109,-7,0,1359,-13,0,0 +2013,5,13,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1255,-6,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,-5,0,2220,-5,0,0 +2013,6,3,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-5,0,1220,-19,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1600,20,1,2325,58,1,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1744,4,0,2100,5,0,0 +2013,5,30,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,-4,0,1050,-10,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2110,-2,0,2355,5,0,0 +2013,6,1,6,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1350,15,1,1625,95,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,736,-2,0,856,-9,0,0 +2013,10,11,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,859,-5,0,1047,2,0,0 +2013,5,22,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,46,1,1942,44,1,0 +2013,4,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-8,0,813,4,0,0 +2013,9,27,5,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1450,7,0,1700,12,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,740,-5,0,913,-19,0,0 +2013,10,17,4,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,645,-5,0,800,-10,0,0 +2013,7,19,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-2,0,840,-21,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,-3,0,1814,-23,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1559,-2,0,1743,-19,0,0 +2013,5,22,3,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-5,0,1045,-12,0,0 +2013,9,29,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,6,0,2058,1,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2210,75,1,2312,145,1,0 +2013,10,18,5,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,-2,0,2104,4,0,0 +2013,8,1,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1005,-5,0,1152,-19,0,0 +2013,10,26,6,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1150,3,0,1430,-17,0,0 +2013,7,4,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-9,0,751,-10,0,0 +2013,4,11,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,905,-7,0,1112,-14,0,0 +2013,10,8,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,144,1,2120,116,1,0 +2013,6,6,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,930,0,0,1055,-5,0,0 +2013,10,16,3,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1619,1,0,1742,-5,0,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2210,-3,0,2300,-14,0,0 +2013,5,12,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,0,0,2045,-1,0,0 +2013,7,17,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,9,0,815,-3,0,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1530,3,0,1623,-3,0,0 +2013,9,7,6,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-10,0,1008,-20,0,0 +2013,9,8,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,721,-11,0,0 +2013,7,11,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1835,4,0,2140,7,0,0 +2013,5,30,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1032,-8,0,1145,-19,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2055,9,0,2235,-2,0,0 +2013,6,14,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,705,4,0,810,9,0,0 +2013,6,27,4,DL,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,935,20,1,1759,54,1,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,-2,0,1101,6,0,0 +2013,5,3,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1005,-5,0,1115,7,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,740,-4,0,931,-6,0,0 +2013,7,17,3,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-2,0,2010,37,1,0 +2013,10,30,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,700,-3,0,832,-5,0,0 +2013,5,9,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1920,8,0,2017,-5,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,-2,0,1445,-15,0,0 +2013,7,23,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,-5,0,1253,-11,0,0 +2013,9,11,3,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2000,20,1,2220,23,1,0 +2013,5,14,2,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,630,-7,0,915,-14,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1935,12,0,2110,31,1,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,830,2,0,1005,-12,0,0 +2013,10,5,6,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,1010,-1,0,1250,7,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,900,-5,0,1321,-5,0,0 +2013,6,18,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1318,30,1,1425,59,1,0 +2013,5,5,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,0,0,1715,5,0,0 +2013,6,27,4,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1525,100,1,1817,112,1,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1727,-3,0,1740,-20,0,0 +2013,8,25,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1135,-3,0,1254,-9,0,0 +2013,7,27,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,97,1,2251,94,1,0 +2013,5,18,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,0,0,2055,-23,0,0 +2013,9,16,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-5,0,1915,-9,0,0 +2013,6,16,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2035,0,0,2305,-5,0,0 +2013,4,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1840,-5,0,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,750,0,,1008,0,1,1 +2013,8,26,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,-5,0,1536,0,0,0 +2013,6,14,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,40,1,1250,44,1,0 +2013,10,8,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1630,-3,0,1820,-22,0,0 +2013,7,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,43,1,2025,43,1,0 +2013,6,21,5,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1716,7,0,1855,-6,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,-2,0,1303,-12,0,0 +2013,4,21,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1346,-11,0,0 +2013,8,21,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,915,-3,0,1046,7,0,0 +2013,9,19,4,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,955,-8,0,1116,-17,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2135,38,1,516,28,1,0 +2013,5,14,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,10,0,1335,-4,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1230,15,1,1320,5,0,0 +2013,5,29,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2115,8,0,530,-1,0,0 +2013,4,24,3,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1922,-5,0,2059,-12,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,956,-3,0,1129,-7,0,0 +2013,8,23,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1315,65,1,1435,60,1,0 +2013,7,3,3,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,545,-10,0,627,-4,0,0 +2013,7,26,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1401,40,1,1451,33,1,0 +2013,9,7,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-5,0,855,-7,0,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,845,14,0,1208,-1,0,0 +2013,6,14,5,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1134,-4,0,1455,-14,0,0 +2013,8,14,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-3,0,1530,-15,0,0 +2013,6,6,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,-2,0,1901,18,1,0 +2013,6,12,3,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1409,4,0,1645,-12,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1755,13,0,2005,7,0,0 +2013,5,8,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-4,0,1345,-20,0,0 +2013,9,3,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-2,0,2059,8,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,54,1,2140,47,1,0 +2013,10,16,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1735,0,0,1905,-18,0,0 +2013,5,22,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,-3,0,1429,-15,0,0 +2013,8,18,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2210,-3,0,37,-15,0,0 +2013,9,30,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1810,-8,0,1840,-20,0,0 +2013,4,22,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,545,-7,0,709,-17,0,0 +2013,9,18,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1615,-6,0,1849,-11,0,0 +2013,5,24,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,81,1,1407,69,1,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1736,-7,0,1949,-21,0,0 +2013,7,19,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1235,-30,0,0 +2013,10,2,3,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1725,0,0,1955,-19,0,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1542,-3,0,1651,29,1,0 +2013,10,24,4,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1515,-1,0,1829,-1,0,0 +2013,4,10,3,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1829,0,,2143,0,1,1 +2013,5,3,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1058,-4,0,1944,-7,0,0 +2013,4,21,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,840,2,0,1148,9,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1600,31,1,1705,25,1,0 +2013,5,29,3,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1629,10,0,1927,-14,0,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1948,-1,0,2125,-5,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1810,32,1,2054,15,1,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,820,6,0,955,-11,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1113,-3,0,1153,-2,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1055,-5,0,1411,9,0,0 +2013,8,30,5,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,730,-1,0,755,-9,0,0 +2013,5,21,2,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,905,14,0,1035,3,0,0 +2013,8,6,2,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,710,-4,0,830,-18,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1200,-3,0,1329,-10,0,0 +2013,6,21,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-3,0,851,-11,0,0 +2013,4,24,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1515,10,0,1555,-2,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1540,13,0,1930,-7,0,0 +2013,8,22,4,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-2,0,900,-36,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1905,1,0,2033,2,0,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,19,1,1420,11,0,0 +2013,6,4,2,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1210,-5,0,1451,5,0,0 +2013,8,18,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1035,-2,0,1145,-15,0,0 +2013,9,7,6,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,925,-3,0,1110,-12,0,0 +2013,7,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,830,0,0,1145,-6,0,0 +2013,8,3,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,-4,0,941,-7,0,0 +2013,6,20,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,900,2,0,1428,-7,0,0 +2013,10,3,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,23,1,1810,12,0,0 +2013,7,24,3,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1650,-3,0,1830,-14,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,850,14,0,1125,11,0,0 +2013,5,4,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,87,1,1618,87,1,0 +2013,5,7,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,800,1,0,940,-4,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2119,9,0,2225,5,0,0 +2013,5,14,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1854,-14,0,2020,-17,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1835,8,0,2000,4,0,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-1,0,720,5,0,0 +2013,4,23,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1118,-12,0,1300,-5,0,0 +2013,7,17,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,1205,-4,0,0 +2013,6,1,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,0,0,753,7,0,0 +2013,5,24,5,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,27,1,925,25,1,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,24,1,1620,43,1,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1440,16,1,1715,22,1,0 +2013,7,31,3,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,-5,0,1740,-20,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,11,0,2123,17,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,0,0,1629,-4,0,0 +2013,7,21,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1555,7,0,1715,10,0,0 +2013,7,9,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1510,11,0,1655,11,0,0 +2013,5,16,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1320,-4,0,2059,-4,0,0 +2013,5,15,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,955,0,0,1100,-3,0,0 +2013,6,10,1,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1629,29,1,1939,-7,0,0 +2013,4,28,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1310,4,0,1500,-9,0,0 +2013,10,26,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1545,-2,0,1825,-19,0,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1045,-2,0,1140,0,0,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-6,0,905,0,0,0 +2013,5,24,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,-3,0,835,-13,0,0 +2013,8,8,4,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,133,1,2140,112,1,0 +2013,7,25,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,8,0,1937,22,1,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,-2,0,2355,-16,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-5,0,1135,0,0,0 +2013,7,22,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,645,-6,0,1455,-26,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1613,1,0,1810,11,0,0 +2013,6,3,1,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,-1,0,1224,-11,0,0 +2013,7,5,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,398,1,1255,388,1,0 +2013,7,2,2,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1700,9,0,1852,11,0,0 +2013,5,3,5,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1129,0,0,1410,1,0,0 +2013,8,16,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1924,5,0,44,-16,0,0 +2013,4,7,7,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1430,-10,0,1809,-15,0,0 +2013,4,24,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,1612,-6,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,3,0,1838,-7,0,0 +2013,7,24,3,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,920,-1,0,1105,-1,0,0 +2013,5,8,3,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-5,0,1040,-18,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,909,26,1,1026,5,0,0 +2013,8,16,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,3,0,613,2,0,0 +2013,7,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,30,1,2133,32,1,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1800,2,0,1935,-14,0,0 +2013,4,12,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2330,-7,0,501,-12,0,0 +2013,10,13,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1201,-4,0,1327,8,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1755,15,1,2040,14,0,0 +2013,9,25,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,20,1,901,16,1,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,14,0,1830,11,0,0 +2013,4,24,3,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1020,-4,0,1251,19,1,0 +2013,5,24,5,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,69,1,2200,55,1,0 +2013,8,18,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1529,-2,0,1731,-15,0,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-5,0,2303,-9,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,713,-6,0,951,-26,0,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1752,-2,0,2306,8,0,0 +2013,6,29,6,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1206,11,0,1305,7,0,0 +2013,9,23,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1532,0,0,1740,6,0,0 +2013,10,13,7,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,69,1,2025,86,1,0 +2013,5,31,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,730,-3,0,1010,-12,0,0 +2013,9,18,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-3,0,930,-13,0,0 +2013,8,9,5,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,838,-3,0,1108,-24,0,0 +2013,10,17,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-3,0,1156,-16,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2100,7,0,2243,-5,0,0 +2013,6,11,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,710,-1,0,855,0,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,21,1,1115,27,1,0 +2013,7,25,4,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,-12,0,710,-23,0,0 +2013,10,28,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1940,53,1,2240,42,1,0 +2013,10,11,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-4,0,1220,-8,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-4,0,747,-7,0,0 +2013,7,24,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,-1,0,725,-13,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2145,-8,0,2350,1,0,0 +2013,7,9,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,957,-6,0,1208,-29,0,0 +2013,8,29,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1750,-5,0,1905,-2,0,0 +2013,4,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1415,-1,0,1633,-17,0,0 +2013,7,5,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1255,1,0,1402,-11,0,0 +2013,6,2,7,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-6,0,903,13,0,0 +2013,6,6,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-2,0,1554,-9,0,0 +2013,4,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1750,17,1,1935,7,0,0 +2013,4,13,6,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,8,0,1117,-5,0,0 +2013,9,16,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1750,-6,0,2025,-20,0,0 +2013,10,14,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,935,2,0,1055,18,1,0 +2013,8,25,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,-7,0,2036,-22,0,0 +2013,8,21,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,915,0,0,1042,16,1,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,650,1,0,835,2,0,0 +2013,8,9,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1752,-16,0,0 +2013,8,1,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-2,0,745,13,0,0 +2013,6,5,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-11,0,1208,-5,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2255,-3,0,639,-16,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,22,1,1708,9,0,0 +2013,5,5,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,24,1,1900,8,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1050,-2,0,1823,-18,0,0 +2013,4,22,1,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-3,0,829,-1,0,0 +2013,8,2,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-1,0,1255,-11,0,0 +2013,8,3,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1750,5,0,2314,-9,0,0 +2013,7,12,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1626,74,1,1829,61,1,0 +2013,9,23,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,755,-13,0,1035,-9,0,0 +2013,4,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1400,10,0,1945,16,1,0 +2013,10,20,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-3,0,1725,-11,0,0 +2013,8,13,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2100,0,0,510,-10,0,0 +2013,10,29,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,-5,0,1546,-18,0,0 +2013,8,6,2,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2225,-7,0,630,-4,0,0 +2013,6,17,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1433,44,1,1558,34,1,0 +2013,7,16,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1742,22,1,1846,23,1,0 +2013,7,18,4,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1210,-5,0,1545,-50,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,1,0,1202,-10,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1750,-1,0,2055,-17,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,-1,0,2137,-7,0,0 +2013,5,11,6,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,905,-3,0,1020,-14,0,0 +2013,10,1,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-9,0,950,-27,0,0 +2013,4,11,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1250,8,0,0 +2013,8,31,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1445,4,0,1535,-7,0,0 +2013,10,12,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1740,27,1,1920,21,1,0 +2013,7,2,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1040,22,1,1425,28,1,0 +2013,10,24,4,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1530,53,1,1710,43,1,0 +2013,4,23,2,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2105,39,1,514,21,1,0 +2013,5,9,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1423,-1,0,1540,-14,0,0 +2013,7,17,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-3,0,948,-10,0,0 +2013,9,10,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-13,0,1800,-11,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1325,47,1,1605,32,1,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,1,0,1833,41,1,0 +2013,4,6,6,WN,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1435,-1,0,1720,-13,0,0 +2013,4,17,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,45,1,2233,50,1,0 +2013,5,2,4,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1440,0,0,1655,-11,0,0 +2013,5,17,5,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1037,46,1,1604,39,1,0 +2013,7,9,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1940,-4,0,2050,12,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,807,41,1,1044,56,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-7,0,1325,-17,0,0 +2013,7,1,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1514,12,0,1645,5,0,0 +2013,8,2,5,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-7,0,2150,0,0,0 +2013,7,20,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,3,0,1000,5,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1328,66,1,1645,65,1,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,625,0,0,920,-5,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-9,0,950,-11,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1900,13,0,2010,16,1,0 +2013,6,25,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1700,68,1,1907,40,1,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,0,0,1655,0,0,0 +2013,10,27,7,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1750,0,0,2117,-6,0,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1124,-4,0,1218,-17,0,0 +2013,9,16,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,848,-5,0,955,-13,0,0 +2013,5,15,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-1,0,1610,0,0,0 +2013,8,19,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,-9,0,1911,12,0,0 +2013,10,29,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,37,1,1905,25,1,0 +2013,5,8,3,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,740,-5,0,1000,-25,0,0 +2013,8,20,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2015,-6,0,2309,-5,0,0 +2013,4,3,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-1,0,740,-7,0,0 +2013,5,26,7,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-2,0,1600,-4,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,650,1,0,750,-14,0,0 +2013,7,27,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,837,-9,0,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-1,0,1340,-13,0,0 +2013,5,15,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,813,4,0,0 +2013,6,10,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,36,1,1759,22,1,0 +2013,10,9,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2204,2,0,15,-11,0,0 +2013,10,8,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-6,0,840,-5,0,0 +2013,8,19,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,-4,0,1845,-16,0,0 +2013,4,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,1100,68,1,1640,67,1,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,187,1,2145,203,1,0 +2013,10,8,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,615,-1,0,838,-8,0,0 +2013,4,18,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,156,1,1814,158,1,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1945,209,1,2040,210,1,0 +2013,7,17,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2350,668,1,724,685,1,0 +2013,9,22,7,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,-5,0,1634,-14,0,0 +2013,7,20,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2010,18,1,2230,1,0,0 +2013,7,26,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1710,0,0,1945,-6,0,0 +2013,8,11,7,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1330,25,1,1645,19,1,0 +2013,8,14,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,-6,0,1431,3,0,0 +2013,8,29,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1942,15,1,2140,14,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,0,0,2015,7,0,0 +2013,8,24,6,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-9,0,847,-6,0,0 +2013,10,17,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-9,0,1002,-12,0,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1715,15,1,1938,2,0,0 +2013,4,10,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,845,-4,0,0 +2013,7,9,2,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,-2,0,1235,3,0,0 +2013,4,23,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,630,0,0,700,4,0,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1930,-3,0,2310,-15,0,0 +2013,8,29,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1530,-2,0,1625,-2,0,0 +2013,6,7,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1303,173,1,1325,165,1,0 +2013,8,30,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,725,-12,0,0 +2013,5,15,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,-3,0,2027,-22,0,0 +2013,10,15,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,650,-4,0,929,-5,0,0 +2013,5,23,4,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-7,0,814,-10,0,0 +2013,5,29,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1935,-3,0,2050,-5,0,0 +2013,10,3,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1459,25,1,1658,24,1,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1315,10,0,1630,6,0,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1100,3,0,1425,-10,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,946,3,0,953,0,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,915,-7,0,1046,-19,0,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1856,8,0,2103,20,1,0 +2013,10,9,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1106,-4,0,1633,-13,0,0 +2013,10,8,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1113,-2,0,1406,-7,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,6,0,2351,-5,0,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,-4,0,1051,-23,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2105,36,1,2236,36,1,0 +2013,4,17,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,725,241,1,1021,223,1,0 +2013,7,14,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-9,0,1422,4,0,0 +2013,6,29,6,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1600,6,0,2205,7,0,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,905,-5,0,1154,0,0,0 +2013,8,24,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,635,-6,0,838,-6,0,0 +2013,7,9,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,2005,-3,0,2100,-5,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1000,-2,0,1130,-19,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,815,106,1,1020,126,1,0 +2013,7,14,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,659,117,1,833,122,1,0 +2013,8,11,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,13,0,2354,20,1,0 +2013,7,29,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,6,0,1920,-5,0,0 +2013,7,19,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,1,0,1425,-6,0,0 +2013,6,20,4,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2339,17,1,718,20,1,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2200,13,0,2334,-2,0,0 +2013,7,8,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14679,San Diego International,San Diego,CA,1605,-1,0,1717,-7,0,0 +2013,4,29,1,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,60,1,2151,57,1,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2130,48,1,2245,35,1,0 +2013,7,6,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1110,-3,0,1226,-5,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1925,1,0,2301,-17,0,0 +2013,9,18,3,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2103,1,0,2346,-8,0,0 +2013,8,18,7,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,802,-10,0,940,-11,0,0 +2013,6,8,6,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1754,3,0,1929,9,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2115,-5,0,2305,-5,0,0 +2013,9,21,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1618,6,0,1705,2,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,1,0,1000,-3,0,0 +2013,6,28,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2125,76,1,2250,82,1,0 +2013,8,30,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,6,0,1530,6,0,0 +2013,10,1,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1614,-9,0,1739,6,0,0 +2013,6,20,4,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,645,0,0,930,-10,0,0 +2013,4,3,3,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,620,-3,0,730,-12,0,0 +2013,9,26,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1555,3,0,1747,4,0,0 +2013,10,5,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1230,-7,0,1420,-18,0,0 +2013,8,9,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-1,0,1217,8,0,0 +2013,7,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,845,-5,0,1000,-8,0,0 +2013,6,2,7,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1130,1,0,2010,-14,0,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,0,0,1735,-2,0,0 +2013,8,31,6,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1300,3,0,1515,-10,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-5,0,1014,0,0,0 +2013,9,29,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,7,0,1907,1,0,0 +2013,5,14,2,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,915,10,0,1135,14,0,0 +2013,10,19,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-2,0,1631,8,0,0 +2013,5,8,3,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1645,-6,0,1925,-22,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2150,-4,0,2335,-11,0,0 +2013,8,14,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,850,-3,0,0 +2013,7,3,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,930,-4,0,1245,4,0,0 +2013,8,14,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,620,5,0,730,2,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,0,0,1031,-7,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1840,24,1,2105,26,1,0 +2013,5,6,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-4,0,1445,-7,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1515,-8,0,1614,-15,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,46,1,1540,39,1,0 +2013,6,3,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-3,0,1748,-3,0,0 +2013,9,17,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-1,0,1019,2,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1120,-4,0,1306,-13,0,0 +2013,9,20,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,33,1,1250,32,1,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1925,-7,0,2050,-7,0,0 +2013,6,3,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,715,-2,0,1218,-16,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1350,24,1,1650,20,1,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,34,1,1609,43,1,0 +2013,5,15,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2115,-2,0,2235,-6,0,0 +2013,9,26,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1255,-4,0,1357,-5,0,0 +2013,6,16,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,-1,0,2115,-25,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,818,1,0,918,7,0,0 +2013,6,10,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,630,-2,0,840,-13,0,0 +2013,10,22,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1810,22,1,1925,13,0,0 +2013,7,13,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,0,,1625,0,1,1 +2013,10,15,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,625,10,0,940,7,0,0 +2013,9,19,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1710,138,1,1810,134,1,0 +2013,4,27,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-2,0,920,-2,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-3,0,2352,-7,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,4,0,2255,3,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,13,0,2045,10,0,0 +2013,9,23,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1219,4,0,1459,2,0,0 +2013,4,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,-3,0,1301,-15,0,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,935,4,0,1555,-11,0,0 +2013,7,17,3,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1655,150,1,1950,147,1,0 +2013,7,18,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1645,11,0,1750,-5,0,0 +2013,8,13,2,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-5,0,2213,10,0,0 +2013,6,18,2,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-1,0,1300,-11,0,0 +2013,8,4,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,16,1,1605,11,0,0 +2013,8,16,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-7,0,1255,-8,0,0 +2013,5,25,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,22,1,806,1,0,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1550,-6,0,1601,-7,0,0 +2013,4,25,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-8,0,725,-6,0,0 +2013,8,16,5,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1150,-9,0,1443,-22,0,0 +2013,6,24,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,935,2,0,1150,17,1,0 +2013,4,24,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1850,0,0,2045,2,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,26,1,1958,18,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1915,0,0,2153,-4,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,610,-2,0,740,3,0,0 +2013,5,20,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-1,0,1859,-8,0,0 +2013,5,31,5,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,915,29,1,1140,37,1,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1036,3,0,1213,-2,0,0 +2013,7,19,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,820,-4,0,1154,-33,0,0 +2013,6,23,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2031,-3,0,2327,-16,0,0 +2013,8,17,6,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1510,-1,0,1745,-26,0,0 +2013,8,5,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,-2,0,1214,-1,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1540,54,1,1820,29,1,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,-2,0,2221,6,0,0 +2013,10,17,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,759,-6,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1726,0,0,1840,34,1,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1805,1,0,1905,-4,0,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-2,0,1440,11,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-3,0,1135,-10,0,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1502,-3,0,1524,-18,0,0 +2013,7,3,3,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,22,1,1305,20,1,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1640,12,0,2315,-1,0,0 +2013,9,9,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,-5,0,1130,-18,0,0 +2013,10,2,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-9,0,1245,-15,0,0 +2013,6,16,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,-2,0,1555,-14,0,0 +2013,6,21,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1235,4,0,1420,-22,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,803,-3,0,1040,-8,0,0 +2013,5,1,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,10,0,1939,6,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2110,-1,0,2240,-2,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1708,93,1,2027,115,1,0 +2013,8,28,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1655,0,0,1805,-8,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,-2,0,1048,-9,0,0 +2013,6,24,1,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1721,0,,1925,0,1,1 +2013,9,6,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,855,-10,0,1225,-13,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,13,0,859,-4,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,745,0,0,1040,-7,0,0 +2013,5,8,3,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,112,1,1918,138,1,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1045,13,0,1505,7,0,0 +2013,7,26,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1518,33,1,1644,22,1,0 +2013,8,1,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,949,-16,0,0 +2013,5,15,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1915,1,0,2101,59,1,0 +2013,4,13,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,0,,1732,0,1,1 +2013,5,24,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1315,2,0,2103,-15,0,0 +2013,8,23,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,-4,0,1905,-4,0,0 +2013,6,4,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1600,-5,0,11,-32,0,0 +2013,9,6,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,51,1,2015,36,1,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-1,0,1046,0,0,0 +2013,10,29,2,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1935,-19,0,2047,-7,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,630,-1,0,750,-8,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1000,-4,0,1304,-30,0,0 +2013,9,13,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-4,0,1810,-26,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,0,,1535,0,1,1 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,906,83,1,1239,88,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,0,0,1150,-34,0,0 +2013,4,6,6,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-7,0,1610,-30,0,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-7,0,2036,-3,0,0 +2013,6,7,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,841,-8,0,0 +2013,9,7,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1955,-5,0,2140,-21,0,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,0,0,1053,-16,0,0 +2013,5,16,4,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1335,0,0,1854,-1,0,0 +2013,7,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1230,-1,0,1425,-18,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1440,6,0,1800,-8,0,0 +2013,9,30,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,715,-2,0,1015,8,0,0 +2013,4,21,7,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1418,0,0,1728,23,1,0 +2013,8,15,4,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,4,0,1150,-3,0,0 +2013,10,21,1,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1706,81,1,1847,80,1,0 +2013,6,5,3,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1820,-2,0,2055,8,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1735,8,0,30,-3,0,0 +2013,5,29,3,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1650,-6,0,1901,-27,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1530,2,0,1730,-18,0,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,3,0,1440,-3,0,0 +2013,9,28,6,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1000,-4,0,1240,-5,0,0 +2013,10,5,6,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,915,-1,0,1115,-14,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1041,-3,0,1534,-36,0,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,39,1,1413,51,1,0 +2013,7,20,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-9,0,1715,32,1,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,-2,0,930,-15,0,0 +2013,4,9,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,735,-12,0,905,-14,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2151,-3,0,2348,1,0,0 +2013,7,15,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,-7,0,1910,-13,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,16,1,1410,11,0,0 +2013,9,5,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-6,0,1820,-15,0,0 +2013,9,3,2,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1934,-12,0,2053,-1,0,0 +2013,5,11,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,162,1,2045,152,1,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1140,-2,0,1250,-6,0,0 +2013,10,28,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,0,0,1400,-16,0,0 +2013,6,7,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,30,1,1255,-1,0,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,-2,0,943,-4,0,0 +2013,8,7,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,745,-6,0,1145,-13,0,0 +2013,8,25,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1145,11,0,1535,9,0,0 +2013,4,28,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,16,1,1918,7,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,630,-1,0,800,-1,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-6,0,920,-9,0,0 +2013,6,11,2,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-2,0,720,-13,0,0 +2013,4,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-7,0,1800,-1,0,0 +2013,5,6,1,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,756,-15,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,800,60,1,1602,58,1,0 +2013,5,12,7,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2045,-7,0,2315,-7,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,5,0,1502,-13,0,0 +2013,6,12,3,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,730,-5,0,840,-1,0,0 +2013,6,17,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-2,0,2041,18,1,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,756,25,1,1106,37,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1825,42,1,1930,67,1,0 +2013,10,27,7,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1259,-4,0,1540,8,0,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2045,117,1,2211,110,1,0 +2013,10,27,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,0,0,1950,-6,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1635,3,0,1816,-7,0,0 +2013,8,9,5,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,-1,0,1645,-1,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-3,0,1320,-9,0,0 +2013,7,3,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2308,39,1,2355,31,1,0 +2013,7,30,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1113,104,1,1700,93,1,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1022,9,0,1550,-3,0,0 +2013,4,26,5,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2140,-1,0,545,-1,0,0 +2013,10,10,4,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,741,-5,0,851,0,0,0 +2013,4,1,1,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,8,0,950,7,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,4,0,1627,-1,0,0 +2013,5,22,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1727,0,0,1824,-14,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,630,0,0,750,-10,0,0 +2013,5,11,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-7,0,1305,17,1,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1639,-6,0,1806,-2,0,0 +2013,8,3,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,720,-2,0,916,-16,0,0 +2013,5,1,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1320,-6,0,1528,14,0,0 +2013,10,19,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1304,6,0,1410,11,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1908,15,1,2159,51,1,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1830,78,1,1945,79,1,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1125,-5,0,1338,-6,0,0 +2013,5,3,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-9,0,1101,-13,0,0 +2013,7,14,7,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-1,0,1415,-4,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-4,0,1157,0,0,0 +2013,7,11,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1730,5,0,1917,0,0,0 +2013,5,19,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,645,-4,0,745,-13,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1445,-2,0,1616,-11,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,6,0,1245,10,0,0 +2013,6,3,1,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1235,-3,0,1450,-12,0,0 +2013,4,9,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,625,-5,0,735,-10,0,0 +2013,8,19,1,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1205,1,0,1435,5,0,0 +2013,4,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,1114,-6,0,0 +2013,10,10,4,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-6,0,925,-20,0,0 +2013,10,14,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1204,-3,0,1459,13,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1549,7,0,1825,17,1,0 +2013,5,31,5,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1334,-10,0,1542,-20,0,0 +2013,8,30,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1355,18,1,1535,19,1,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-4,0,2056,-11,0,0 +2013,5,28,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1242,-4,0,1939,-14,0,0 +2013,4,12,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,545,-2,0,707,-2,0,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1430,16,1,1800,3,0,0 +2013,6,14,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,0,0,1125,12,0,0 +2013,8,4,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,732,-2,0,1032,-10,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1015,38,1,1230,21,1,0 +2013,5,31,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,6,0,1710,-7,0,0 +2013,4,1,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-8,0,1229,-20,0,0 +2013,9,7,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,37,1,1750,20,1,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2110,-3,0,2246,2,0,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,835,-3,0,1106,-23,0,0 +2013,9,2,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,230,-13,0,646,-20,0,0 +2013,5,23,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,730,-6,0,0 +2013,7,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2230,87,1,30,67,1,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1701,-1,0,2301,8,0,0 +2013,4,14,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1347,21,1,1632,44,1,0 +2013,9,22,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1545,-4,0,1820,20,1,0 +2013,5,26,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1800,6,0,1930,-4,0,0 +2013,10,7,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1653,69,1,1829,53,1,0 +2013,9,26,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1736,0,0,2048,-18,0,0 +2013,6,19,3,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,-5,0,1127,-7,0,0 +2013,7,27,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,-2,0,1630,1,0,0 +2013,5,5,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1425,1,0,1512,19,1,0 +2013,9,10,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-1,0,1701,-2,0,0 +2013,10,13,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2017,-3,0,2,3,0,0 +2013,6,14,5,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,1,0,2200,-21,0,0 +2013,9,27,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1518,0,0,1636,3,0,0 +2013,5,2,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1122,13,0,1256,0,0,0 +2013,7,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,810,4,0,1330,-8,0,0 +2013,6,29,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,30,1,1705,29,1,0 +2013,7,12,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1242,1,0,1342,-15,0,0 +2013,10,15,2,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,940,-3,0,1055,-13,0,0 +2013,7,20,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,755,-1,0,905,-6,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,953,-3,0,1044,-13,0,0 +2013,7,7,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1640,2,0,1740,2,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2200,5,0,2350,-4,0,0 +2013,9,21,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,27,1,2140,16,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-5,0,1125,-14,0,0 +2013,5,3,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,5,0,1920,-5,0,0 +2013,7,19,5,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,830,23,1,957,4,0,0 +2013,7,6,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1855,-2,0,2025,-7,0,0 +2013,7,30,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,25,1,1445,30,1,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1245,12,0,1410,8,0,0 +2013,9,17,2,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,3,0,1125,10,0,0 +2013,7,1,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-2,0,1025,0,1,1 +2013,10,24,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2046,-9,0,2206,-19,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1435,27,1,1613,20,1,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1425,138,1,1550,135,1,0 +2013,7,24,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-7,0,1230,-20,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,-8,0,947,-17,0,0 +2013,4,30,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1933,-6,0,2107,-6,0,0 +2013,10,24,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,10,0,1645,6,0,0 +2013,9,26,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,745,-3,0,913,-4,0,0 +2013,10,7,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,38,1,1636,66,1,0 +2013,9,28,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1615,22,1,1840,19,1,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,-5,0,855,-26,0,0 +2013,7,31,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,900,-5,0,1140,-2,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,800,0,0,1035,16,1,0 +2013,9,2,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,600,-3,0,1342,4,0,0 +2013,10,17,4,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,600,-7,0,728,-15,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,2,0,1140,-3,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,0,0,1750,22,1,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-5,0,1640,-18,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,834,108,1,935,189,1,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1040,7,0,1217,13,0,0 +2013,9,4,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1658,-15,0,1815,-15,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,94,1,1515,109,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1010,43,1,1120,35,1,0 +2013,8,11,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-2,0,1635,-4,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1450,-6,0,2159,-12,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,752,-7,0,845,4,0,0 +2013,6,30,7,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-1,0,2035,8,0,0 +2013,4,6,6,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,23,1,2048,13,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,16,1,1624,33,1,0 +2013,6,10,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,26,1,1535,18,1,0 +2013,9,17,2,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1400,58,1,1928,114,1,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1415,1,0,1635,-13,0,0 +2013,7,31,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1415,-10,0,1650,0,0,0 +2013,5,10,5,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,800,-8,0,1032,-4,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,835,-6,0,1005,-12,0,0 +2013,5,6,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-2,0,1007,17,1,0 +2013,10,22,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,745,14,0,929,4,0,0 +2013,9,24,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-7,0,830,-5,0,0 +2013,8,16,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,48,1,1820,42,1,0 +2013,5,26,7,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-7,0,555,-16,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,24,1,1945,21,1,0 +2013,5,3,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,728,-4,0,906,-5,0,0 +2013,8,6,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,2037,-5,0,2245,-16,0,0 +2013,10,26,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,2050,-7,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1710,19,1,2150,10,0,0 +2013,4,18,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,21,1,1330,18,1,0 +2013,5,8,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,27,1,2220,31,1,0 +2013,8,25,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1016,-6,0,1207,-14,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,1,0,855,-4,0,0 +2013,10,2,3,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,0,0,1005,-15,0,0 +2013,8,26,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1720,1,0,1845,2,0,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1610,73,1,2216,61,1,0 +2013,6,4,2,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1740,4,0,2020,-19,0,0 +2013,4,17,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,733,-13,0,0 +2013,8,20,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-4,0,1829,-6,0,0 +2013,6,25,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1720,3,0,1848,4,0,0 +2013,6,5,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,600,-2,0,615,-9,0,0 +2013,4,17,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1046,173,1,1347,177,1,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1246,-6,0,1700,-7,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,-2,0,850,-9,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2045,-3,0,2232,4,0,0 +2013,10,7,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,905,-1,0,1030,-13,0,0 +2013,5,10,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-3,0,910,-13,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1203,11,0,1422,6,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1455,44,1,1559,40,1,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,-3,0,1008,-16,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1030,-3,0,1358,-12,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,625,-4,0,1055,-9,0,0 +2013,10,29,2,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,-3,0,1400,5,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1415,-3,0,1600,-5,0,0 +2013,4,11,4,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1307,24,1,1443,18,1,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2219,28,1,659,43,1,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1301,23,1,1810,31,1,0 +2013,4,13,6,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,719,-7,0,902,2,0,0 +2013,8,18,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1034,-6,0,1259,-21,0,0 +2013,10,26,6,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2035,-3,0,2330,-12,0,0 +2013,9,11,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,56,1,1915,86,1,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,830,1,0,1000,-9,0,0 +2013,10,3,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1740,53,1,2015,59,1,0 +2013,5,3,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1445,-2,0,1651,-11,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2020,5,0,2145,-1,0,0 +2013,9,29,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-8,0,659,-5,0,0 +2013,7,17,3,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1356,9,0,1629,34,1,0 +2013,8,15,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,625,-2,0,803,3,0,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2101,14,0,130,-9,0,0 +2013,10,17,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,6,0,1645,-14,0,0 +2013,6,14,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,20,1,1512,13,0,0 +2013,8,11,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,449,48,1,744,32,1,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1520,23,1,1800,5,0,0 +2013,9,22,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2008,-6,0,2322,-19,0,0 +2013,5,21,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-2,0,926,-12,0,0 +2013,4,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1108,107,1,1704,99,1,0 +2013,6,17,1,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,850,-5,0,1110,2,0,0 +2013,9,9,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1225,49,1,1330,52,1,0 +2013,10,28,1,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1815,109,1,1925,105,1,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1920,1,0,2125,-14,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1510,-3,0,1610,-3,0,0 +2013,8,13,2,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1725,-3,0,2015,-6,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-4,0,1350,1,0,0 +2013,9,3,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1210,-4,0,1305,-12,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,930,8,0,1210,11,0,0 +2013,7,29,1,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1230,-1,0,1451,-1,0,0 +2013,7,31,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-3,0,630,4,0,0 +2013,8,15,4,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-4,0,1230,0,0,0 +2013,9,22,7,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1510,-4,0,1735,-6,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1225,0,0,1428,-2,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2120,-8,0,2359,-17,0,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1700,-2,0,2035,74,1,0 +2013,7,17,3,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,808,2,0,1154,15,1,0 +2013,6,2,7,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1503,8,0,1809,5,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2229,6,0,640,-7,0,0 +2013,6,6,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1333,-2,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,243,1,1315,237,1,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1210,-8,0,1449,6,0,0 +2013,8,20,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-8,0,950,-16,0,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1026,520,1,1245,500,1,0 +2013,6,23,7,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1914,14,0,2059,-3,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,35,1,912,18,1,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1310,54,1,1435,51,1,0 +2013,9,16,1,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1915,-11,0,2255,-25,0,0 +2013,6,27,4,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,735,-13,0,1600,4,0,0 +2013,10,19,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1926,4,0,2219,5,0,0 +2013,8,29,4,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2305,-5,0,655,5,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1225,21,1,1430,5,0,0 +2013,7,30,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1240,-6,0,1435,-17,0,0 +2013,5,20,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1415,-3,0,1555,-26,0,0 +2013,6,14,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,7,0,1000,8,0,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,844,5,0,1040,3,0,0 +2013,10,25,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1358,-6,0,1631,-23,0,0 +2013,9,22,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-7,0,933,-5,0,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,23,1,2240,13,0,0 +2013,10,10,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,815,-4,0,1031,-17,0,0 +2013,6,15,6,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,3,0,1309,10,0,0 +2013,4,25,4,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,0,0,2115,3,0,0 +2013,6,10,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-1,0,900,-5,0,0 +2013,4,29,1,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-2,0,1045,-14,0,0 +2013,5,5,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-3,0,1534,16,1,0 +2013,10,28,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1035,-6,0,1050,6,0,0 +2013,5,11,6,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1710,39,1,1857,20,1,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,0,0,1050,-17,0,0 +2013,8,3,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,3,0,1348,-16,0,0 +2013,5,28,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1349,-2,0,1410,7,0,0 +2013,5,28,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2111,-1,0,509,-17,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1122,67,1,1220,68,1,0 +2013,7,13,6,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,831,1,1145,811,1,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1130,3,0,1255,-6,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,815,-1,0,1057,17,1,0 +2013,5,4,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-5,0,1031,-12,0,0 +2013,5,19,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,41,1,1837,37,1,0 +2013,7,23,2,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1935,14,0,2252,0,0,0 +2013,6,11,2,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-2,0,1925,17,1,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,-1,0,2213,62,1,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,2045,-3,0,15,-6,0,0 +2013,6,5,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-3,0,1255,-2,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1450,286,1,1647,272,1,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1730,8,0,1914,8,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1047,-1,0,1303,-14,0,0 +2013,5,1,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,2030,43,1,2105,23,1,0 +2013,8,14,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,810,2,0,955,2,0,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1258,0,0,1419,2,0,0 +2013,5,25,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-3,0,1442,4,0,0 +2013,7,22,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1400,7,0,1636,8,0,0 +2013,9,3,2,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2007,39,1,2259,11,0,0 +2013,5,6,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1445,-1,0,1805,-15,0,0 +2013,9,30,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,0,0,920,-17,0,0 +2013,10,2,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-3,0,1402,0,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1814,15,1,2040,3,0,0 +2013,9,12,4,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,63,1,2037,51,1,0 +2013,7,26,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2133,0,0,600,-20,0,0 +2013,9,26,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-1,0,1300,-4,0,0 +2013,7,20,6,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,854,-2,0,1035,-6,0,0 +2013,5,6,1,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1133,-3,0,1427,2,0,0 +2013,5,30,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-6,0,1259,-6,0,0 +2013,4,16,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1845,21,1,2028,12,0,0 +2013,4,15,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,1129,-9,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1100,1,0,1245,-15,0,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,-9,0,1720,-2,0,0 +2013,7,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,800,11,0,905,-1,0,0 +2013,8,22,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,713,-4,0,922,-14,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2015,29,1,2235,22,1,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,1106,-6,0,0 +2013,7,23,2,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,8,0,1820,-8,0,0 +2013,8,29,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-1,0,1544,5,0,0 +2013,6,28,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-13,0,1601,-25,0,0 +2013,9,15,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2047,24,1,2159,24,1,0 +2013,7,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,-2,0,1135,-4,0,0 +2013,6,8,6,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-7,0,1005,-12,0,0 +2013,9,22,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-8,0,1230,3,0,0 +2013,9,21,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,13,0,1335,14,0,0 +2013,6,2,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,642,4,0,800,-15,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,-3,0,2245,-7,0,0 +2013,8,15,4,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,720,-3,0,917,-10,0,0 +2013,7,15,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1910,-1,0,2030,-4,0,0 +2013,9,25,3,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1440,-4,0,1655,-8,0,0 +2013,6,19,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,0,0,809,-9,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-1,0,830,15,1,0 +2013,7,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1905,9,0,2020,7,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,722,5,0,852,23,1,0 +2013,8,4,7,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2105,68,1,2220,57,1,0 +2013,10,8,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1210,-10,0,1440,-13,0,0 +2013,6,23,7,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-6,0,1046,-17,0,0 +2013,9,2,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,55,1,1520,57,1,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1206,1,0,1342,-8,0,0 +2013,7,8,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1200,12,0,1341,12,0,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,-10,0,1730,-17,0,0 +2013,5,4,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,5,0,1520,5,0,0 +2013,4,9,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,39,9,0,507,1,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2100,69,1,2301,66,1,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1920,4,0,4,-1,0,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1430,24,1,1545,23,1,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2150,-3,0,45,8,0,0 +2013,4,12,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1845,54,1,2008,72,1,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1455,11,0,1605,31,1,0 +2013,9,21,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-3,0,1010,-12,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,11,0,1023,13,0,0 +2013,9,1,7,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,850,-3,0,1105,-12,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,-3,0,1630,-13,0,0 +2013,7,6,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,64,1,1224,65,1,0 +2013,6,14,5,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-7,0,1450,-21,0,0 +2013,6,22,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1415,-2,0,1625,-12,0,0 +2013,8,5,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-4,0,1305,-8,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1020,1,0,1210,-4,0,0 +2013,10,8,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-6,0,1226,-17,0,0 +2013,5,29,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,5,0,1810,-8,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-5,0,2200,-6,0,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1125,-4,0,1219,-18,0,0 +2013,8,19,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,71,1,1045,68,1,0 +2013,7,24,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,755,0,0,930,-15,0,0 +2013,9,17,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,47,1,1118,46,1,0 +2013,5,27,1,YV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1829,-7,0,1903,0,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1249,11,0,1357,16,1,0 +2013,10,21,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1608,-4,0,1725,-4,0,0 +2013,10,20,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1214,0,0,1456,-21,0,0 +2013,9,26,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,14,0,1605,6,0,0 +2013,6,7,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-3,0,1515,-6,0,0 +2013,10,25,5,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,30,1,2115,27,1,0 +2013,9,25,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1313,5,0,1525,4,0,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,14,0,1235,10,0,0 +2013,6,15,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,945,1,0,1506,-18,0,0 +2013,8,3,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-7,0,1252,-8,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,15,1,2336,-2,0,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1945,20,1,2223,-2,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1758,210,1,2034,196,1,0 +2013,10,10,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,-2,0,1650,-18,0,0 +2013,8,15,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-4,0,1214,-6,0,0 +2013,7,26,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1841,-1,0,2300,-3,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1935,-5,0,2229,-26,0,0 +2013,8,12,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,935,-7,0,950,-7,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-7,0,919,-15,0,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1126,0,0,1246,-15,0,0 +2013,4,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2200,-9,0,2312,-14,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1025,0,,1325,0,1,1 +2013,10,30,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1410,-5,0,1645,-9,0,0 +2013,6,29,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1015,0,0,1140,-8,0,0 +2013,5,17,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-7,0,1125,-3,0,0 +2013,5,14,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,645,-7,0,844,4,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1340,26,1,1610,28,1,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1955,24,1,2330,7,0,0 +2013,6,4,2,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,29,1,919,19,1,0 +2013,4,15,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2015,6,0,2135,8,0,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1705,1,0,1820,7,0,0 +2013,8,23,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-4,0,1209,-8,0,0 +2013,5,17,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-1,0,1540,-5,0,0 +2013,4,22,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,0,0,1119,-5,0,0 +2013,9,16,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-1,0,1506,-2,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1325,19,1,1745,18,1,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-9,0,921,35,1,0 +2013,6,27,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1805,4,0,1905,-3,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,2,0,1415,7,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2142,-5,0,2329,-23,0,0 +2013,7,23,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-7,0,2016,-7,0,0 +2013,4,3,3,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1632,-6,0,1946,-9,0,0 +2013,8,20,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-9,0,1231,-19,0,0 +2013,10,12,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,815,6,0,1423,8,0,0 +2013,6,17,1,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1003,-7,0,1141,-3,0,0 +2013,8,28,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-3,0,1024,-14,0,0 +2013,10,6,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,1244,-14,0,0 +2013,7,19,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,-4,0,725,-14,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,17,1,1535,1,0,0 +2013,10,30,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1609,25,1,1808,37,1,0 +2013,10,25,5,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,910,-5,0,1044,-8,0,0 +2013,8,25,7,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,145,-12,0,733,-29,0,0 +2013,5,2,4,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,905,1,0,1011,36,1,0 +2013,4,3,3,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,1020,-7,0,1809,-20,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-7,0,1700,-30,0,0 +2013,7,19,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1540,1,0,1655,-3,0,0 +2013,7,1,1,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,98,1,2040,93,1,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2159,-5,0,2344,-28,0,0 +2013,4,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1650,12,0,1758,-7,0,0 +2013,5,14,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1915,-9,0,2044,0,0,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,1,0,1240,-11,0,0 +2013,5,10,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2040,87,1,2200,102,1,0 +2013,5,19,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,4,0,1035,-3,0,0 +2013,9,8,7,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-13,0,1041,0,0,0 +2013,5,6,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1214,-5,0,1345,-6,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,0,0,2334,-11,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1700,2,0,1805,-11,0,0 +2013,10,14,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,6,0,1230,11,0,0 +2013,6,4,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,905,-3,0,1015,-8,0,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,-1,0,2055,-5,0,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2312,64,1,717,68,1,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1225,4,0,1615,-7,0,0 +2013,7,1,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1720,41,1,1840,31,1,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2352,24,1,556,14,0,0 +2013,10,2,3,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1035,-8,0,1404,-25,0,0 +2013,6,24,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,940,-5,0,1039,-5,0,0 +2013,7,20,6,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,710,0,0,1305,-14,0,0 +2013,10,6,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1750,53,1,1935,29,1,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,0,0,1443,10,0,0 +2013,9,12,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1125,1,0,1420,0,0,0 +2013,10,31,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,826,-13,0,0 +2013,8,13,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-5,0,1912,-8,0,0 +2013,4,6,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1017,-7,0,1105,1,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,925,-7,0,1259,-12,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-1,0,1329,-12,0,0 +2013,10,25,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,900,-10,0,1130,-14,0,0 +2013,9,5,4,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,545,-5,0,730,-14,0,0 +2013,8,5,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,12,0,1705,8,0,0 +2013,9,29,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1524,108,1,1810,119,1,0 +2013,8,14,3,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1150,-1,0,1415,-5,0,0 +2013,6,6,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1112,3,0,1329,-8,0,0 +2013,5,12,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-1,0,1504,-15,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1925,3,0,2155,-9,0,0 +2013,9,26,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,-6,0,2014,0,0,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,17,1,2215,-5,0,0 +2013,10,15,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2342,-1,0,456,-15,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,10,0,519,6,0,0 +2013,5,20,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-4,0,1524,-4,0,0 +2013,4,6,6,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,2,0,1212,-15,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1020,-1,0,1218,-7,0,0 +2013,8,24,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,812,-3,0,1200,-12,0,0 +2013,7,3,3,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1531,-12,0,1855,-3,0,0 +2013,5,11,6,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1400,-1,0,1520,-21,0,0 +2013,9,2,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,22,1,1916,36,1,0 +2013,8,26,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,0,0,1830,-3,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2025,5,0,2130,9,0,0 +2013,8,5,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,-10,0,2250,-3,0,0 +2013,8,7,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-7,0,2155,-18,0,0 +2013,4,21,7,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,1,0,915,-19,0,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1750,151,1,2020,164,1,0 +2013,4,16,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-7,0,2205,-11,0,0 +2013,7,9,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,0,0,1535,-9,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,-4,0,2255,-2,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,-4,0,14,-5,0,0 +2013,6,12,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-3,0,1012,1,0,0 +2013,5,7,2,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,-6,0,2018,-21,0,0 +2013,5,31,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-3,0,1408,3,0,0 +2013,8,9,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1114,-10,0,1244,-9,0,0 +2013,9,4,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1949,-5,0,2212,-13,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,0,,1005,0,1,1 +2013,8,19,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1815,4,0,1915,9,0,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,601,-2,0,729,6,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1858,7,0,2259,-7,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1634,0,0,1738,-12,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-4,0,1911,-20,0,0 +2013,4,3,3,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,11,0,1320,-12,0,0 +2013,9,1,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,945,2,0,1308,-24,0,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2218,10,0,615,-16,0,0 +2013,10,2,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,931,-6,0,1235,-29,0,0 +2013,4,10,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1800,52,1,2005,39,1,0 +2013,9,4,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,1,0,1245,-5,0,0 +2013,6,6,4,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1255,-3,0,2145,-17,0,0 +2013,9,18,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,-2,0,1301,8,0,0 +2013,6,6,4,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1035,0,0,1245,3,0,0 +2013,4,5,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1600,-7,0,1658,-5,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,4,0,1745,-3,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-4,0,1950,-20,0,0 +2013,5,25,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1756,91,1,1917,80,1,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1040,1,0,1255,1,0,0 +2013,4,19,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,36,1,1850,30,1,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,0,0,1055,7,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1840,11,0,1950,2,0,0 +2013,7,10,3,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1450,35,1,1620,31,1,0 +2013,5,30,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,23,1,1210,12,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,36,1,1924,26,1,0 +2013,10,11,5,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,740,-4,0,810,-12,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,558,-7,0,736,-23,0,0 +2013,8,6,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,24,1,1815,29,1,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-5,0,1250,-29,0,0 +2013,6,3,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,57,1,2100,41,1,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1000,-6,0,1408,-13,0,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,6,0,2007,11,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,959,-3,0,1007,-11,0,0 +2013,10,30,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,1,0,1709,-22,0,0 +2013,7,10,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1055,8,0,1336,10,0,0 +2013,10,11,5,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,3,0,940,7,0,0 +2013,6,5,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,935,-9,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,-3,0,916,-25,0,0 +2013,5,8,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,605,-7,0,715,2,0,0 +2013,7,4,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,704,-8,0,1030,-11,0,0 +2013,4,16,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1545,-6,0,1855,-3,0,0 +2013,10,30,3,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1105,-11,0,1330,-19,0,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-3,0,1904,-6,0,0 +2013,4,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1749,-2,0,2001,7,0,0 +2013,9,2,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1655,0,0,1745,-3,0,0 +2013,9,26,4,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,646,-6,0,943,-11,0,0 +2013,8,9,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,714,-9,0,848,-11,0,0 +2013,5,12,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1516,-5,0,1657,2,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1905,-7,0,2035,-15,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1642,5,0,1834,-2,0,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-2,0,1910,-13,0,0 +2013,10,30,3,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,910,-6,0,1730,-19,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,-5,0,1230,7,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,3,0,940,-6,0,0 +2013,10,1,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1438,-6,0,1633,-15,0,0 +2013,6,27,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1008,-7,0,1140,-38,0,0 +2013,5,3,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,-5,0,1405,22,1,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,844,6,0,1605,-1,0,0 +2013,5,8,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1602,27,1,1920,23,1,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1745,-9,0,2345,-27,0,0 +2013,7,16,2,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,745,-2,0,1025,-10,0,0 +2013,5,31,5,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,79,1,2118,75,1,0 +2013,5,28,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1710,7,0,1845,-5,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1405,4,0,1750,-10,0,0 +2013,6,12,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,0,0,1406,-14,0,0 +2013,10,22,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1910,-5,0,2040,-16,0,0 +2013,10,19,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1325,23,1,1440,18,1,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,757,-2,0,1024,-13,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,855,12,0,1210,16,1,0 +2013,5,9,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-3,0,910,-12,0,0 +2013,10,26,6,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,83,1,2032,78,1,0 +2013,4,23,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1415,-3,0,1700,-4,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1215,42,1,1930,55,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1335,1,0,1444,-16,0,0 +2013,4,24,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2015,3,0,2220,-6,0,0 +2013,6,9,7,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1326,0,0,1649,-8,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,901,59,1,1143,79,1,0 +2013,7,26,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,800,2,0,915,2,0,0 +2013,7,20,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,940,-3,0,1051,-15,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1101,9,0,1551,18,1,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,3,0,1025,-10,0,0 +2013,6,2,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,721,158,1,909,170,1,0 +2013,6,7,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1942,-4,0,2047,-16,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1810,16,1,1915,8,0,0 +2013,8,12,1,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-7,0,825,-8,0,0 +2013,9,24,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1730,-1,0,1825,-8,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1536,-7,0,1620,-22,0,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,3,0,1435,-14,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,28,1,1745,22,1,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1908,23,1,2250,-16,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1430,-4,0,1650,-5,0,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,1,0,1800,-7,0,0 +2013,6,25,2,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1525,-6,0,1904,-15,0,0 +2013,6,10,1,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,0,0,1351,-1,0,0 +2013,4,12,5,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-4,0,822,-12,0,0 +2013,9,27,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,11,0,1721,11,0,0 +2013,9,11,3,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,814,-3,0,847,-9,0,0 +2013,4,12,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-2,0,1345,-13,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1815,-2,0,1920,2,0,0 +2013,10,14,1,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,910,-5,0,1730,-19,0,0 +2013,9,3,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,-4,0,1739,-13,0,0 +2013,9,4,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,9,0,2030,-2,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,23,1,1933,21,1,0 +2013,10,11,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1016,-2,0,1651,-11,0,0 +2013,10,21,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-2,0,1140,7,0,0 +2013,8,28,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-1,0,747,2,0,0 +2013,9,27,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1429,-3,0,1523,-7,0,0 +2013,6,6,4,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,900,-2,0,1219,-12,0,0 +2013,8,30,5,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1234,41,1,1541,31,1,0 +2013,7,8,1,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-10,0,1538,-14,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,0,0,1455,-1,0,0 +2013,8,29,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1030,-6,0,1125,-12,0,0 +2013,7,8,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1920,137,1,2123,126,1,0 +2013,6,5,3,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2229,-4,0,611,-6,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2155,51,1,2340,39,1,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-8,0,1226,-5,0,0 +2013,9,25,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,855,-3,0,1225,7,0,0 +2013,8,30,5,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,2,0,703,-13,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,916,-3,0,1123,-13,0,0 +2013,7,13,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,745,0,0,1100,-7,0,0 +2013,8,1,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,-1,0,706,6,0,0 +2013,5,16,4,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1002,-10,0,1035,-10,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,955,8,0,1630,16,1,0 +2013,8,23,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1133,7,0,1730,5,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,49,1,2127,29,1,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1809,9,0,1955,6,0,0 +2013,8,30,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,945,0,0,1110,-5,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,24,1,1510,34,1,0 +2013,6,3,1,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,86,1,1210,90,1,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1310,72,1,1605,69,1,0 +2013,7,1,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,815,-2,0,949,-12,0,0 +2013,7,6,6,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,955,0,0,1530,-16,0,0 +2013,9,11,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1803,18,1,1925,21,1,0 +2013,7,3,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1450,50,1,1555,44,1,0 +2013,4,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1115,52,1,1318,81,1,0 +2013,7,23,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1018,2,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2100,-3,0,2212,-16,0,0 +2013,6,7,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2210,13,0,2346,3,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1002,0,0,1221,-17,0,0 +2013,4,26,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-2,0,1610,-12,0,0 +2013,10,11,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1639,-7,0,1905,-10,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1113,0,0,1400,-6,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1140,0,0,1400,-12,0,0 +2013,7,12,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,28,1,1915,23,1,0 +2013,6,16,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,610,-7,0,858,-13,0,0 +2013,4,17,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-10,0,622,-8,0,0 +2013,4,20,6,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,715,-1,0,750,6,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,12,0,2220,101,1,0 +2013,10,22,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-7,0,1331,-8,0,0 +2013,9,23,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2040,42,1,2055,36,1,0 +2013,10,29,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-10,0,826,-22,0,0 +2013,4,25,4,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1800,-1,0,1854,3,0,0 +2013,4,2,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2323,-1,0,715,-13,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1940,-2,0,2208,-18,0,0 +2013,5,7,2,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,830,-7,0,1128,-30,0,0 +2013,8,27,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,1246,-13,0,1435,-24,0,0 +2013,10,6,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2143,3,0,2236,-4,0,0 +2013,8,7,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,744,-7,0,920,-21,0,0 +2013,7,11,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,923,88,1,1105,90,1,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,-4,0,1425,-5,0,0 +2013,4,20,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1805,-10,0,0 +2013,5,15,3,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1235,-7,0,1502,3,0,0 +2013,4,29,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1125,-14,0,1305,-27,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,729,0,0,845,-2,0,0 +2013,4,24,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-7,0,1515,-25,0,0 +2013,9,30,1,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1146,-2,0,1412,-6,0,0 +2013,10,28,1,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-4,0,812,-18,0,0 +2013,6,25,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1600,-3,0,1730,-12,0,0 +2013,4,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1635,51,1,1750,42,1,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1120,84,1,1530,73,1,0 +2013,6,10,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,31,1,2226,22,1,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1915,-1,0,2110,-27,0,0 +2013,10,14,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-7,0,2043,42,1,0 +2013,7,20,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,720,-3,0,900,-2,0,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,630,-3,0,1506,-15,0,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,2105,36,1,2234,12,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1335,106,1,1949,85,1,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,-7,0,1321,1,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,11,0,28,25,1,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,33,1,1735,20,1,0 +2013,8,31,6,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,1,0,1213,-9,0,0 +2013,9,5,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,700,-4,0,937,0,0,0 +2013,7,18,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,0,0,1906,51,1,0 +2013,6,15,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,0,0,732,-4,0,0 +2013,7,27,6,YV,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,154,1,1838,163,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1925,7,0,2130,-10,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2013,26,1,2122,20,1,0 +2013,6,15,6,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,-10,0,1846,-16,0,0 +2013,6,4,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,722,-16,0,0 +2013,7,29,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,6,0,1356,12,0,0 +2013,5,30,4,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1540,67,1,1736,93,1,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,-3,0,1757,-17,0,0 +2013,4,4,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1721,31,1,2000,51,1,0 +2013,10,29,2,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,-4,0,1234,2,0,0 +2013,9,12,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,-8,0,1838,-7,0,0 +2013,9,24,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1040,-5,0,1150,-6,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2150,-4,0,2348,-19,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1345,0,0,1512,3,0,0 +2013,4,8,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,1003,-17,0,0 +2013,5,11,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2040,71,1,2150,77,1,0 +2013,5,1,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,850,5,0,0 +2013,9,21,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-4,0,951,-16,0,0 +2013,9,8,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1100,-4,0,1200,-1,0,0 +2013,7,6,6,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1650,-3,0,1924,-15,0,0 +2013,7,18,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2010,35,1,2055,27,1,0 +2013,10,1,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1551,4,0,1708,-1,0,0 +2013,5,27,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1225,0,0,1350,-4,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,4,0,1113,8,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,-4,0,1736,3,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1930,133,1,2155,132,1,0 +2013,8,19,1,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,-7,0,1150,-3,0,0 +2013,6,1,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-5,0,1847,-11,0,0 +2013,5,13,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,620,-5,0,753,-31,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,12,0,2159,8,0,0 +2013,6,24,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2015,100,1,2344,90,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2159,8,0,2358,-4,0,0 +2013,7,21,7,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,645,-1,0,815,-7,0,0 +2013,4,25,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-6,0,2111,-24,0,0 +2013,7,13,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,33,1,1126,18,1,0 +2013,9,16,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1845,16,1,2110,14,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1451,-3,0,1705,-19,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,905,84,1,1205,69,1,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,25,1,2348,10,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1150,-2,0,1320,-9,0,0 +2013,5,26,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1145,-6,0,1312,9,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1705,22,1,2114,19,1,0 +2013,4,30,2,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1735,136,1,1822,128,1,0 +2013,10,20,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1710,4,0,1825,-4,0,0 +2013,8,25,7,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,821,-14,0,930,7,0,0 +2013,4,1,1,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1835,54,1,2140,31,1,0 +2013,5,15,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1525,4,0,1720,-7,0,0 +2013,9,21,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,810,-2,0,915,2,0,0 +2013,6,10,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2136,62,1,2254,99,1,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,910,-1,0,1145,-1,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,938,0,0,1050,3,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2008,2,0,2133,-7,0,0 +2013,10,19,6,EV,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1645,-2,0,1837,-3,0,0 +2013,4,28,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1456,-10,0,1659,-16,0,0 +2013,9,8,7,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1615,-10,0,1915,-10,0,0 +2013,8,28,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1135,-3,0,1310,-3,0,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1450,114,1,1613,119,1,0 +2013,4,23,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,-8,0,1600,5,0,0 +2013,10,7,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1322,24,1,1530,34,1,0 +2013,8,5,1,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1243,44,1,1545,31,1,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,2,0,1032,-8,0,0 +2013,9,2,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-4,0,1830,20,1,0 +2013,8,17,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1530,27,1,1705,2,0,0 +2013,9,16,1,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,11,0,1440,-3,0,0 +2013,7,19,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1705,54,1,1842,76,1,0 +2013,6,6,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1505,-3,0,1555,-10,0,0 +2013,6,11,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2055,59,1,2215,56,1,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1748,37,1,2125,28,1,0 +2013,4,12,5,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1955,28,1,2115,19,1,0 +2013,5,31,5,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,825,-7,0,1033,1,0,0 +2013,4,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1410,1,0,1650,-7,0,0 +2013,8,19,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,615,-5,0,730,-5,0,0 +2013,9,16,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1619,0,0,1919,-4,0,0 +2013,5,31,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-6,0,1935,-19,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,0,0,905,5,0,0 +2013,10,14,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-2,0,759,64,1,0 +2013,9,13,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-7,0,2005,-15,0,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,-3,0,1420,-21,0,0 +2013,10,1,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,625,-3,0,832,-17,0,0 +2013,6,11,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,-4,0,1351,13,0,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2109,54,1,2228,35,1,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1544,-1,0,1914,-8,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1925,3,0,2250,-4,0,0 +2013,4,17,3,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,840,-5,0,1110,16,1,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-3,0,1530,-12,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1710,60,1,2240,71,1,0 +2013,7,9,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-10,0,850,-16,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-2,0,2151,-23,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1810,11,0,2029,-2,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1035,3,0,1155,3,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,0,0,1110,-13,0,0 +2013,4,24,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1701,-5,0,1855,41,1,0 +2013,7,27,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,7,0,1514,17,1,0 +2013,5,11,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,635,-3,0,810,-4,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1555,-1,0,1725,-13,0,0 +2013,6,21,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1711,-3,0,2023,-21,0,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,-2,0,945,-13,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1103,8,0,1450,0,0,0 +2013,6,12,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1857,31,1,2032,29,1,0 +2013,6,19,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1119,-9,0,1358,-38,0,0 +2013,9,10,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1038,-7,0,1320,10,0,0 +2013,7,8,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,9,0,1640,7,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1001,-4,0,1047,-12,0,0 +2013,4,21,7,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1200,4,0,1350,-6,0,0 +2013,4,10,3,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,107,1,1955,134,1,0 +2013,7,6,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-4,0,1034,-6,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1632,9,0,1954,-1,0,0 +2013,9,21,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,0,0,1905,5,0,0 +2013,8,17,6,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,843,0,0,1015,-1,0,0 +2013,9,20,5,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,4,0,835,-11,0,0 +2013,10,9,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-10,0,847,0,0,0 +2013,10,18,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1205,0,0,1250,-6,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,835,6,0,1010,12,0,0 +2013,8,15,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1702,46,1,1829,59,1,0 +2013,5,1,3,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,4,0,1901,-5,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,630,4,0,1053,-4,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1355,107,1,1701,119,1,0 +2013,9,8,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,805,-20,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1735,-6,0,1933,-25,0,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,2030,36,1,2322,16,1,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,7,0,1639,9,0,0 +2013,6,11,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,752,-2,0,1010,-7,0,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,600,0,0,720,-6,0,0 +2013,8,4,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,2030,12,0,2320,15,1,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,700,2,0,805,4,0,0 +2013,4,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,14,0,1735,15,1,0 +2013,7,1,1,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,-1,0,1040,-2,0,0 +2013,5,25,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1445,16,1,1550,7,0,0 +2013,4,3,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,21,1,1205,20,1,0 +2013,4,24,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1315,0,0,1531,-14,0,0 +2013,7,24,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-1,0,1128,0,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,-1,0,2055,-16,0,0 +2013,7,14,7,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,3,0,1655,6,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-2,0,958,6,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,940,27,1,1310,28,1,0 +2013,4,19,5,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1555,55,1,1815,42,1,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1629,3,0,1919,42,1,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,231,1,1800,209,1,0 +2013,8,16,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1328,-8,0,1530,4,0,0 +2013,6,20,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,-1,0,2005,-4,0,0 +2013,8,3,6,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1225,-1,0,1610,-8,0,0 +2013,9,25,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,607,2,0,904,-20,0,0 +2013,7,9,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1944,69,1,2129,54,1,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1505,4,0,1625,3,0,0 +2013,9,12,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,-8,0,815,-17,0,0 +2013,9,16,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1140,-3,0,1343,-6,0,0 +2013,10,30,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1054,-9,0,1645,-8,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,825,-2,0,915,-6,0,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,57,1,2200,61,1,0 +2013,6,6,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,648,-3,0,813,-12,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1703,0,,1847,0,1,1 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-4,0,1939,-9,0,0 +2013,6,1,6,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1446,-4,0,1700,-13,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,10,0,1735,9,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,26,1,1635,3,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1700,4,0,2215,2,0,0 +2013,7,9,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1130,86,1,1238,76,1,0 +2013,7,1,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1530,-4,0,1642,-2,0,0 +2013,10,6,7,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,700,-5,0,755,-18,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,740,1,0,1010,-9,0,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1810,-4,0,1943,20,1,0 +2013,7,29,1,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1002,-7,0,1259,-23,0,0 +2013,8,17,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1840,22,1,1920,22,1,0 +2013,9,11,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1145,-4,0,1456,-32,0,0 +2013,7,24,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-1,0,2150,-10,0,0 +2013,10,29,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,1,0,2305,-12,0,0 +2013,8,11,7,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1324,-12,0,1427,-19,0,0 +2013,4,28,7,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1645,10,0,1810,4,0,0 +2013,6,6,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,635,-4,0,745,-4,0,0 +2013,9,4,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,815,-6,0,1052,-7,0,0 +2013,4,28,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,181,1,1715,205,1,0 +2013,7,28,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,-1,0,2245,-4,0,0 +2013,5,16,4,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-5,0,1539,-18,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2006,13,0,2107,13,0,0 +2013,5,9,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2012,-6,0,2350,2,0,0 +2013,10,7,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1905,-6,0,2025,-16,0,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1725,3,0,2240,-8,0,0 +2013,6,3,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-6,0,959,13,0,0 +2013,10,1,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-6,0,848,-7,0,0 +2013,6,25,2,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-6,0,909,-25,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1825,-6,0,2120,1,0,0 +2013,7,31,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,4,0,1355,-7,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1610,-3,0,1720,-14,0,0 +2013,8,6,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,49,1,1122,48,1,0 +2013,8,1,4,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1533,0,,1700,0,1,1 +2013,10,16,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1559,-1,0,1730,-10,0,0 +2013,8,27,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1202,92,1,1442,85,1,0 +2013,4,12,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,605,2,0,700,-12,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,0,0,1335,-12,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,715,-5,0,850,-20,0,0 +2013,7,30,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,800,-1,0,900,-7,0,0 +2013,6,2,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1115,6,0,1247,-1,0,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,79,1,2105,71,1,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,32,1,1150,21,1,0 +2013,9,11,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-2,0,1942,-8,0,0 +2013,4,19,5,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,702,7,0,801,-3,0,0 +2013,5,5,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,0,0,1954,11,0,0 +2013,8,29,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1233,24,1,1602,26,1,0 +2013,7,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-1,0,1334,-6,0,0 +2013,9,18,3,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,530,-7,0,858,-21,0,0 +2013,4,26,5,YV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,2057,16,1,2359,12,0,0 +2013,9,5,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,-3,0,25,-17,0,0 +2013,8,1,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1310,-2,0,1432,55,1,0 +2013,5,15,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,-3,0,1530,3,0,0 +2013,6,30,7,DL,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-3,0,1831,0,0,0 +2013,9,23,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,8,0,1350,8,0,0 +2013,6,23,7,EV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,558,-2,0,922,-15,0,0 +2013,8,15,4,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-6,0,2215,-12,0,0 +2013,5,7,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1511,-2,0,1556,-7,0,0 +2013,4,3,3,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,700,-1,0,951,-10,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-2,0,910,-24,0,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1200,1,0,1255,-10,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2238,-10,0,19,-28,0,0 +2013,8,17,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1640,11,0,1805,-1,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1610,-1,0,1735,8,0,0 +2013,4,6,6,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,1110,-12,0,0 +2013,6,28,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,0,1510,-10,0,0 +2013,4,15,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,18,1,1500,-7,0,0 +2013,4,29,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1600,44,1,1632,59,1,0 +2013,7,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1758,32,1,1824,23,1,0 +2013,5,14,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1735,-2,0,1905,-6,0,0 +2013,8,4,7,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-2,0,1349,1,0,0 +2013,7,16,2,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2200,8,0,550,17,1,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1321,-2,0,1453,-13,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1620,8,0,1740,-2,0,0 +2013,8,12,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,59,1,1650,60,1,0 +2013,7,23,2,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,705,-4,0,813,-16,0,0 +2013,10,28,1,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,29,1,1715,9,0,0 +2013,10,2,3,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,-14,0,1202,38,1,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,750,1,0,1015,-6,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,-3,0,2042,-12,0,0 +2013,5,10,5,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,-6,0,2125,-10,0,0 +2013,9,5,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1735,-3,0,1902,-11,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,3,0,935,3,0,0 +2013,5,27,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,42,1,1300,54,1,0 +2013,7,16,2,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1822,-2,0,2033,-11,0,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1347,-3,0,1630,-13,0,0 +2013,10,23,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2045,-3,0,2230,-7,0,0 +2013,5,8,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-5,0,1311,-28,0,0 +2013,9,7,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-5,0,809,-9,0,0 +2013,7,2,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,705,-3,0,944,9,0,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,-4,0,1715,-22,0,0 +2013,9,24,2,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-8,0,1756,-6,0,0 +2013,7,2,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-7,0,1229,-22,0,0 +2013,8,5,1,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,-1,0,1520,-21,0,0 +2013,6,5,3,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,842,-5,0,1022,0,0,0 +2013,9,24,2,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1239,-9,0,1730,-27,0,0 +2013,7,27,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,900,-2,0,1002,3,0,0 +2013,4,20,6,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1459,9,0,1715,-4,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,750,0,0,1008,8,0,0 +2013,9,26,4,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-8,0,1820,-19,0,0 +2013,5,29,3,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1400,2,0,2215,-8,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,3,0,1110,1,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,925,23,1,1200,21,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1605,-2,0,1714,-9,0,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,3,0,1440,-3,0,0 +2013,5,2,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,12,0,1051,4,0,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-1,0,930,-2,0,0 +2013,4,28,7,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1331,-3,0,1444,-5,0,0 +2013,9,30,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-3,0,1740,-11,0,0 +2013,6,1,6,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,720,-5,0,839,-11,0,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1353,116,1,1700,119,1,0 +2013,9,16,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,0,0,1117,-2,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,13,0,1910,4,0,0 +2013,6,25,2,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1935,-2,0,2159,-5,0,0 +2013,10,2,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1605,-5,0,1711,4,0,0 +2013,6,20,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,20,1,1411,6,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,730,-3,0,830,-10,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1530,5,0,1645,1,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1800,10,0,2119,2,0,0 +2013,4,15,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2050,3,0,2159,1,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,117,1,824,106,1,0 +2013,9,23,1,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1010,61,1,1121,55,1,0 +2013,5,11,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,2,0,1353,3,0,0 +2013,4,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1330,1,0,1430,0,0,0 +2013,5,27,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-8,0,1535,-18,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2145,-5,0,140,-1,0,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2100,2,0,2301,-2,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1730,129,1,1847,118,1,0 +2013,10,30,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,800,-6,0,1032,-8,0,0 +2013,9,1,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-1,0,1030,-6,0,0 +2013,10,8,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,2131,-6,0,0 +2013,10,8,2,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,86,1,1828,61,1,0 +2013,5,13,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,1,0,810,-12,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1045,-1,0,1222,-16,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1911,40,1,2249,51,1,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1200,5,0,1320,0,0,0 +2013,10,15,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-4,0,920,-1,0,0 +2013,6,11,2,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1850,23,1,2024,17,1,0 +2013,8,28,3,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,20,1,2256,19,1,0 +2013,5,1,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-3,0,617,-9,0,0 +2013,10,5,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,705,2,0,825,-13,0,0 +2013,10,25,5,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,700,-4,0,847,14,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1640,131,1,2345,120,1,0 +2013,7,13,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,933,-10,0,1235,35,1,0 +2013,4,18,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1034,168,1,1243,171,1,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1531,-3,0,1912,-23,0,0 +2013,8,18,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,93,1,2100,91,1,0 +2013,5,14,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,0,0,1040,-5,0,0 +2013,8,3,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1450,9,0,1710,4,0,0 +2013,10,20,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,-5,0,2025,-12,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,849,1,0,1005,37,1,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1748,-2,0,1914,-4,0,0 +2013,6,2,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,19,1,2130,39,1,0 +2013,8,1,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1627,8,0,1955,15,1,0 +2013,6,1,6,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1840,-4,0,2150,-10,0,0 +2013,6,28,5,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,0,0,955,-2,0,0 +2013,6,16,7,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1755,-3,0,2030,-21,0,0 +2013,9,19,4,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1315,40,1,1505,44,1,0 +2013,7,26,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,79,1,1953,66,1,0 +2013,9,20,5,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,752,-7,0,904,-17,0,0 +2013,6,23,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1523,10,0,1655,15,1,0 +2013,4,28,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,-1,0,2120,-4,0,0 +2013,4,29,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2335,14,0,750,28,1,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1210,-1,0,1325,10,0,0 +2013,6,15,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1615,-1,0,1720,-13,0,0 +2013,7,17,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,-2,0,1031,-7,0,0 +2013,7,11,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-8,0,1554,-15,0,0 +2013,10,15,2,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,610,1,0,745,-14,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1340,4,0,1710,-3,0,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1835,1,0,2352,18,1,0 +2013,7,3,3,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,915,-2,0,1039,-21,0,0 +2013,4,9,2,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,2024,96,1,2046,94,1,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1110,-36,0,0 +2013,7,16,2,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,96,1,1720,77,1,0 +2013,5,31,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,809,-11,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,0,0,1315,-2,0,0 +2013,7,15,1,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1330,2,0,1555,9,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1025,-2,0,1400,-2,0,0 +2013,4,9,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1655,113,1,1845,102,1,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1557,0,0,1747,0,0,0 +2013,4,24,3,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1121,5,0,1244,0,0,0 +2013,9,19,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,3,0,14,-19,0,0 +2013,5,18,6,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,624,-4,0,905,-7,0,0 +2013,4,4,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,-1,0,2305,11,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1343,0,0,1510,-7,0,0 +2013,10,6,7,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,830,-1,0,1314,-15,0,0 +2013,8,19,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1011,-3,0,1248,-23,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1600,98,1,1721,100,1,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-3,0,1222,10,0,0 +2013,5,17,5,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1250,0,0,1525,-12,0,0 +2013,5,15,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-7,0,1914,-5,0,0 +2013,4,14,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1630,23,1,1800,20,1,0 +2013,10,10,4,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-4,0,1022,7,0,0 +2013,10,25,5,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1303,-3,0,1448,9,0,0 +2013,10,14,1,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-4,0,1227,-6,0,0 +2013,9,6,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1630,0,0,1720,-12,0,0 +2013,10,14,1,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1440,0,0,1715,-18,0,0 +2013,6,6,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1745,-12,0,1905,-9,0,0 +2013,4,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1220,17,1,1410,-1,0,0 +2013,7,19,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,810,4,0,925,2,0,0 +2013,9,21,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2045,-7,0,44,-16,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1550,19,1,1650,9,0,0 +2013,7,3,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1925,-8,0,2035,-19,0,0 +2013,6,3,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,0,0,925,-13,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1920,38,1,2059,29,1,0 +2013,5,5,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1513,0,0,2204,-6,0,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1635,15,1,2225,-6,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1050,1,0,1150,-6,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,820,-1,0,935,-8,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1119,-4,0,1304,-16,0,0 +2013,10,26,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,801,-4,0,1028,-20,0,0 +2013,8,9,5,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1640,0,,1813,0,1,1 +2013,9,1,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-2,0,809,-7,0,0 +2013,7,27,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,4,0,833,-14,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-3,0,1233,3,0,0 +2013,7,4,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1120,-2,0,1905,30,1,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2030,-1,0,2247,-29,0,0 +2013,4,30,2,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1410,2,0,1650,-11,0,0 +2013,8,17,6,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,18,1,1640,10,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,720,5,0,830,1,0,0 +2013,9,16,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1900,63,1,2230,50,1,0 +2013,4,20,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,5,0,1558,6,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2030,-1,0,2210,-12,0,0 +2013,7,21,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,14,0,2155,12,0,0 +2013,4,10,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,68,1,2045,89,1,0 +2013,6,30,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-4,0,1124,0,0,0 +2013,4,18,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1252,37,1,2049,47,1,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1935,15,1,2145,21,1,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,6,0,1920,-8,0,0 +2013,6,28,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,0,0,1032,11,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,19,1,1920,14,0,0 +2013,5,29,3,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,19,1,1422,25,1,0 +2013,8,31,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1045,-2,0,1250,-16,0,0 +2013,7,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,942,-6,0,1331,13,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1210,-6,0,1301,-4,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,825,-5,0,1112,-12,0,0 +2013,5,24,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1836,1,0,1959,6,0,0 +2013,10,16,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1106,9,0,1247,2,0,0 +2013,8,12,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,915,1,0,1030,-3,0,0 +2013,5,17,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,840,3,0,1005,-5,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2135,8,0,2320,-12,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1955,-5,0,2125,-20,0,0 +2013,5,19,7,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1710,-7,0,1829,-19,0,0 +2013,4,20,6,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1210,-6,0,1455,-17,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1708,-6,0,2305,-10,0,0 +2013,8,8,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,915,-1,0,1209,-3,0,0 +2013,6,7,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1550,100,1,1833,70,1,0 +2013,6,19,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,134,1,1705,132,1,0 +2013,6,8,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-9,0,1145,8,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,-7,0,1633,-13,0,0 +2013,10,28,1,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1632,4,0,1902,6,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,84,1,1930,80,1,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,617,-1,0,1145,-8,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1905,-2,0,2142,-17,0,0 +2013,8,1,4,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1556,0,0,1657,-3,0,0 +2013,9,5,4,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,725,-8,0,1116,-2,0,0 +2013,10,27,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,2,0,1822,5,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,44,1,2115,36,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1122,-2,0,1329,-1,0,0 +2013,4,4,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,740,0,0,1559,4,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-1,0,1331,-7,0,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2322,34,1,751,17,1,0 +2013,10,27,7,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1959,-7,0,2305,-12,0,0 +2013,6,20,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,3,0,1415,1,0,0 +2013,8,15,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2358,104,1,716,78,1,0 +2013,10,22,2,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1105,-1,0,1500,-23,0,0 +2013,5,17,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1012,20,1,1124,10,0,0 +2013,6,29,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1004,317,1,1649,300,1,0 +2013,5,6,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,623,9,0,753,4,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1805,-2,0,2106,-15,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,810,-6,0,1115,-13,0,0 +2013,6,15,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,11,0,1630,7,0,0 +2013,6,28,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,1357,-14,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,0,0,1449,-13,0,0 +2013,10,1,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,935,0,0,1040,-3,0,0 +2013,10,13,7,OO,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1916,-5,0,2032,-15,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2025,4,0,2150,1,0,0 +2013,5,2,4,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,934,12,0,1111,12,0,0 +2013,6,4,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1740,-4,0,1900,-7,0,0 +2013,4,8,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,630,-1,0,740,-14,0,0 +2013,8,29,4,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,-9,0,1303,-6,0,0 +2013,7,19,5,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1310,1,0,1441,13,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,105,1,1840,81,1,0 +2013,7,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1130,55,1,1256,46,1,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,-3,0,1730,10,0,0 +2013,7,24,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,-10,0,1425,-19,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,-2,0,1623,-5,0,0 +2013,9,9,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,837,-6,0,921,-1,0,0 +2013,7,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1114,-5,0,1202,1,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,-5,0,1635,-7,0,0 +2013,6,2,7,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1859,50,1,2059,40,1,0 +2013,7,24,3,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-5,0,1442,-13,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,700,-4,0,1017,-13,0,0 +2013,5,14,2,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1230,-7,0,1421,-9,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,-3,0,1626,4,0,0 +2013,9,14,6,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1130,-5,0,1607,2,0,0 +2013,5,22,3,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1157,30,1,1304,21,1,0 +2013,9,8,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,610,-5,0,714,-9,0,0 +2013,8,15,4,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,920,1,0,1055,2,0,0 +2013,9,6,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-2,0,1824,-8,0,0 +2013,5,24,5,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1840,146,1,2050,145,1,0 +2013,4,14,7,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,6,0,817,-3,0,0 +2013,4,4,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,1,0,715,-6,0,0 +2013,4,23,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1950,35,1,2311,5,0,0 +2013,10,17,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1530,-8,0,1820,-22,0,0 +2013,7,25,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1841,-2,0,2030,-9,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1550,17,1,2300,8,0,0 +2013,4,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1900,-1,0,2020,-4,0,0 +2013,9,22,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,0,0,1820,3,0,0 +2013,9,21,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1132,-9,0,1239,-17,0,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,3,0,1245,-5,0,0 +2013,9,26,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-15,0,824,27,1,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1050,-5,0,1321,-8,0,0 +2013,10,18,5,EV,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1639,26,1,1734,9,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,630,2,0,1225,-3,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,800,-3,0,1240,-19,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1635,9,0,15,8,0,0 +2013,7,20,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1830,-6,0,1940,14,0,0 +2013,7,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,845,-2,0,1115,-9,0,0 +2013,5,17,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1345,-3,0,1510,-8,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1415,-4,0,1605,-14,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,-4,0,2331,-19,0,0 +2013,10,7,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1632,57,1,1845,37,1,0 +2013,8,12,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-5,0,900,-1,0,0 +2013,10,9,3,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,-1,0,1804,-18,0,0 +2013,7,19,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-3,0,1035,-30,0,0 +2013,9,7,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,0,0,1448,-2,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,11,0,1625,2,0,0 +2013,5,9,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2007,-3,0,2230,-33,0,0 +2013,8,4,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-3,0,1335,0,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1032,-4,0,1208,-13,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,720,-3,0,1010,-2,0,0 +2013,7,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1505,1,0,1600,0,0,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,620,0,0,750,-5,0,0 +2013,8,6,2,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1210,-5,0,1356,3,0,0 +2013,6,21,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1821,-4,0,2122,-20,0,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1532,-1,0,1643,-17,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2020,45,1,2155,36,1,0 +2013,6,12,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-9,0,2153,-13,0,0 +2013,5,27,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1923,3,0,2143,-10,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1913,-3,0,2359,6,0,0 +2013,4,24,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1206,34,1,1327,40,1,0 +2013,8,6,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-5,0,2045,3,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,41,1,1653,30,1,0 +2013,7,8,1,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1300,3,0,1635,-14,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1130,24,1,1720,9,0,0 +2013,8,18,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,-10,0,1925,-16,0,0 +2013,9,29,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,650,-10,0,0 +2013,6,30,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1718,12,0,1940,33,1,0 +2013,10,12,6,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1120,8,0,1538,-4,0,0 +2013,8,11,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,32,1,2035,29,1,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1925,10,0,2240,2,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1311,0,0,1452,-14,0,0 +2013,9,9,1,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-4,0,745,-9,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-4,0,1634,-25,0,0 +2013,4,19,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2130,17,1,540,16,1,0 +2013,6,8,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-6,0,1424,-11,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,-5,0,901,-21,0,0 +2013,7,6,6,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-3,0,700,-17,0,0 +2013,8,17,6,UA,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1007,-9,0,1133,-21,0,0 +2013,10,6,7,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,605,-4,0,900,-12,0,0 +2013,9,2,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1815,13,0,2036,10,0,0 +2013,8,24,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,6,0,1147,-5,0,0 +2013,4,12,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2305,-5,0,30,-17,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-11,0,2157,-15,0,0 +2013,5,28,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2050,9,0,2200,7,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,14,0,1050,-3,0,0 +2013,8,7,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1010,-7,0,1132,-27,0,0 +2013,7,12,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1840,-4,0,1915,-4,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,82,1,1045,79,1,0 +2013,4,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1135,-3,0,1725,-14,0,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2321,3,0,310,-2,0,0 +2013,10,25,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-5,0,1637,-14,0,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1050,2,0,1402,-24,0,0 +2013,6,3,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,-4,0,1949,-17,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1941,35,1,2140,22,1,0 +2013,4,15,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-9,0,1425,10,0,0 +2013,7,9,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,2002,-3,0,2109,-6,0,0 +2013,10,19,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1255,-3,0,1706,19,1,0 +2013,4,6,6,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1942,-2,0,2247,7,0,0 +2013,7,24,3,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,835,-4,0,1031,4,0,0 +2013,9,15,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1623,8,0,1916,-1,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,800,0,0,1050,-6,0,0 +2013,4,9,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,19,1,1803,8,0,0 +2013,10,9,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1155,-1,0,1525,-17,0,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2145,13,0,2230,13,0,0 +2013,9,18,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-4,0,1600,14,0,0 +2013,4,4,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1706,0,,1755,0,1,1 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,840,28,1,1200,33,1,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1730,-2,0,1913,-16,0,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1000,-5,0,1214,12,0,0 +2013,10,23,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1459,-5,0,1756,-23,0,0 +2013,8,17,6,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,921,12,0,1318,-6,0,0 +2013,5,7,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1430,9,0,1557,10,0,0 +2013,4,24,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,0,0,1551,-4,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1340,30,1,1440,25,1,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1750,-7,0,2045,-10,0,0 +2013,9,27,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1402,9,0,2159,-14,0,0 +2013,6,11,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1521,50,1,1645,53,1,0 +2013,4,10,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,605,-5,0,750,-13,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,625,4,0,900,2,0,0 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,905,21,1,1140,19,1,0 +2013,10,8,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-1,0,1000,-14,0,0 +2013,7,1,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,645,0,0,819,3,0,0 +2013,8,27,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,4,0,1930,-9,0,0 +2013,4,10,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1140,-5,0,1419,0,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-2,0,1109,-11,0,0 +2013,8,22,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-3,0,1333,-12,0,0 +2013,8,9,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1259,-12,0,1544,-19,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1715,21,1,2240,7,0,0 +2013,7,28,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,750,-1,0,1115,1,0,0 +2013,8,23,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,12,0,1545,5,0,0 +2013,8,16,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1410,-5,0,1619,-13,0,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1540,-6,0,1630,-11,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-1,0,1653,13,0,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,930,9,0,1025,17,1,0 +2013,4,2,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,745,-2,0,850,-9,0,0 +2013,10,7,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,-8,0,1035,-3,0,0 +2013,5,31,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,953,-5,0,1309,-9,0,0 +2013,8,27,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1459,8,0,2010,0,0,0 +2013,4,4,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1930,26,1,2217,-1,0,0 +2013,7,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,737,-3,0,927,-14,0,0 +2013,5,21,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,-11,0,2056,1,0,0 +2013,4,17,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1925,0,,2120,0,1,1 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,915,-1,0,1255,-16,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1530,20,1,1709,4,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2110,12,0,2359,-1,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1310,-6,0,1631,-3,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1029,25,1,1244,18,1,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1505,2,0,1648,-4,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,9,0,2356,1,0,0 +2013,9,16,1,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,750,-3,0,915,-9,0,0 +2013,6,25,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,755,-3,0,1040,-14,0,0 +2013,6,2,7,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,140,-6,0,720,-17,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,820,-2,0,950,-6,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1725,-2,0,1915,7,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1640,-4,0,2120,-16,0,0 +2013,10,9,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1500,-6,0,1616,-5,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1545,-1,0,1840,16,1,0 +2013,4,6,6,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1735,-6,0,1845,-16,0,0 +2013,8,25,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2000,24,1,2125,24,1,0 +2013,10,23,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1245,-6,0,1325,0,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,3,0,1151,8,0,0 +2013,9,9,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,829,-6,0,938,-14,0,0 +2013,6,23,7,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,810,-3,0,950,-8,0,0 +2013,10,28,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2054,-5,0,0 +2013,9,29,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1355,-6,0,1611,-16,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1737,-5,0,1925,-14,0,0 +2013,9,21,6,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,730,-2,0,1035,0,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1758,57,1,2012,73,1,0 +2013,10,18,5,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1000,-6,0,1207,-8,0,0 +2013,5,18,6,EV,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,901,0,0,0 +2013,6,1,6,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-5,0,1421,-13,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,2,0,1836,-13,0,0 +2013,4,12,5,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,1,0,2026,-6,0,0 +2013,7,2,2,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1647,2,0,1800,16,1,0 +2013,5,17,5,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,920,-11,0,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,-7,0,1445,-18,0,0 +2013,7,25,4,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,0,,705,0,1,1 +2013,9,2,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1752,14,0,1901,-3,0,0 +2013,7,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2020,6,0,2235,1,0,0 +2013,7,10,3,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1115,-2,0,1300,-1,0,0 +2013,9,25,3,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1639,3,0,1742,-4,0,0 +2013,10,29,2,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1020,1,0,1455,-9,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,-1,0,1040,-7,0,0 +2013,9,28,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1420,-1,0,1705,-25,0,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,855,-3,0,1215,-22,0,0 +2013,5,11,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-14,0,1046,-13,0,0 +2013,4,2,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1310,0,0,1435,-8,0,0 +2013,9,11,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,900,-4,0,1217,-26,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,0,0,1227,-3,0,0 +2013,10,12,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,1,0,1332,-11,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1529,7,0,1840,-7,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,745,14,0,850,14,0,0 +2013,5,16,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1549,-6,0,1620,-22,0,0 +2013,4,10,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1305,2,0,1410,-17,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2100,60,1,2305,53,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,3,0,1430,3,0,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1825,2,0,1940,6,0,0 +2013,8,19,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,29,1,1845,23,1,0 +2013,10,7,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1625,-1,0,1740,-4,0,0 +2013,4,10,3,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,747,13,0,832,142,1,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,7,0,2206,-7,0,0 +2013,7,1,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-3,0,1415,-6,0,0 +2013,6,11,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,605,-7,0,755,-16,0,0 +2013,10,20,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,1,0,1855,12,0,0 +2013,7,22,1,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,730,-1,0,1033,-4,0,0 +2013,8,1,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,8,0,2356,22,1,0 +2013,6,1,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,915,10,0,1215,88,1,0 +2013,7,8,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,4,0,2035,-5,0,0 +2013,7,7,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1534,12,0,2218,-4,0,0 +2013,10,26,6,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,705,-9,0,1000,-42,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1725,82,1,1842,51,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2210,18,1,2305,12,0,0 +2013,7,6,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1602,-5,0,1700,-14,0,0 +2013,5,8,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1021,-1,0,1247,7,0,0 +2013,4,27,6,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1535,-4,0,1650,-14,0,0 +2013,9,9,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,913,-1,0,1227,-39,0,0 +2013,6,9,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-2,0,1908,9,0,0 +2013,7,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1316,0,0,1450,-3,0,0 +2013,8,25,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1815,-3,0,2054,-9,0,0 +2013,7,4,4,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1005,-21,0,0 +2013,10,27,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,-2,0,1100,-1,0,0 +2013,4,2,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-16,0,0 +2013,9,29,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1000,-6,0,1511,-13,0,0 +2013,10,20,7,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1103,7,0,1248,-6,0,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,810,-9,0,1410,-16,0,0 +2013,9,2,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,948,-6,0,1205,-13,0,0 +2013,7,31,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2010,47,1,2030,36,1,0 +2013,10,31,4,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1451,0,0,1609,-8,0,0 +2013,9,11,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,800,-3,0,920,-7,0,0 +2013,9,16,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,659,-4,0,919,0,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1220,4,0,1325,1,0,0 +2013,9,13,5,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,835,-3,0,1145,-9,0,0 +2013,10,8,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,635,-8,0,835,-18,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,2145,-2,0,2337,-4,0,0 +2013,5,18,6,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1830,0,0,2113,4,0,0 +2013,6,15,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1016,-13,0,0 +2013,8,27,2,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1625,3,0,1922,9,0,0 +2013,7,31,3,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,1755,-5,0,1849,4,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,0,0,1510,-3,0,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1001,6,0,1300,1,0,0 +2013,10,2,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1645,18,1,1825,11,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-3,0,1154,23,1,0 +2013,6,29,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,0,0,1635,19,1,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2015,-3,0,2209,5,0,0 +2013,8,14,3,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1840,-3,0,2150,2,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,815,0,0,935,-8,0,0 +2013,4,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-2,0,850,7,0,0 +2013,4,28,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-9,0,650,-19,0,0 +2013,4,12,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,721,-13,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1525,-7,0,1711,-21,0,0 +2013,5,1,3,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-7,0,2139,-6,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,16,1,1725,17,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,20,1,1900,12,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1315,137,1,1535,150,1,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1339,-1,0,1525,-3,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-7,0,744,-14,0,0 +2013,8,13,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1919,97,1,2248,83,1,0 +2013,6,15,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,955,-2,0,1054,-10,0,0 +2013,6,23,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1150,-5,0,1445,-9,0,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1800,-4,0,1932,-14,0,0 +2013,5,3,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2003,-2,0,2333,-13,0,0 +2013,6,24,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1415,11,0,1644,16,1,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-6,0,1353,-20,0,0 +2013,9,25,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,-5,0,1315,-19,0,0 +2013,6,30,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1650,-2,0,2010,-25,0,0 +2013,8,5,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1624,10,0,1819,3,0,0 +2013,9,12,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1915,18,1,2226,18,1,0 +2013,4,12,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1012,-4,0,1106,-9,0,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,850,-5,0,1141,-2,0,0 +2013,9,16,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-3,0,2140,8,0,0 +2013,5,18,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,3,0,2005,-13,0,0 +2013,10,22,2,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,703,-2,0,945,3,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-3,0,1625,-13,0,0 +2013,4,2,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,2015,-4,0,2235,-7,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,3,0,1615,-12,0,0 +2013,6,22,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,3,0,1700,-27,0,0 +2013,9,30,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1716,0,0,1817,21,1,0 +2013,5,25,6,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,800,112,1,908,96,1,0 +2013,6,15,6,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1325,-4,0,1642,-14,0,0 +2013,9,18,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1155,-14,0,1417,11,0,0 +2013,8,27,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1205,6,0,1325,8,0,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1850,13,0,35,15,1,0 +2013,10,23,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-7,0,1329,-18,0,0 +2013,4,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1239,247,1,1405,250,1,0 +2013,8,11,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,0,0,1825,-7,0,0 +2013,5,7,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1755,12,0,1913,55,1,0 +2013,9,24,2,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,545,-8,0,719,-21,0,0 +2013,7,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,5,0,1935,6,0,0 +2013,5,9,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-5,0,1223,-21,0,0 +2013,4,5,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-5,0,2045,-10,0,0 +2013,8,30,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1145,0,0,1421,-16,0,0 +2013,6,7,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,131,1,1850,128,1,0 +2013,4,21,7,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,45,29,1,622,20,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2104,1,0,2329,24,1,0 +2013,6,16,7,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,615,41,1,807,19,1,0 +2013,7,25,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1049,5,0,1220,-4,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,830,14,0,1020,1,0,0 +2013,7,20,6,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1905,7,0,2025,-9,0,0 +2013,6,21,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1112,7,0,1550,-3,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1130,4,0,1500,1,0,0 +2013,10,3,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-2,0,1245,-6,0,0 +2013,10,17,4,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1852,-5,0,2025,-12,0,0 +2013,4,6,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,601,1,0,900,1,0,0 +2013,5,14,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1506,-5,0,1554,3,0,0 +2013,8,12,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,6,0,1749,3,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2205,-9,0,2338,-20,0,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,4,0,1722,-2,0,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,10,0,1740,3,0,0 +2013,8,10,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-1,0,1110,-13,0,0 +2013,10,20,7,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,755,-4,0,1551,-22,0,0 +2013,6,30,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-5,0,1225,-18,0,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,750,-1,0,905,-2,0,0 +2013,10,3,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,940,6,0,1135,7,0,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-3,0,2159,-5,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-2,0,1555,-14,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,830,7,0,1045,12,0,0 +2013,6,28,5,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1220,-4,0,1401,-4,0,0 +2013,8,23,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,2,0,915,2,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1845,-5,0,2000,-8,0,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-3,0,1720,-7,0,0 +2013,9,16,1,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2030,-7,0,2147,-3,0,0 +2013,6,6,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-10,0,754,22,1,0 +2013,10,19,6,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1245,10,0,1456,8,0,0 +2013,9,9,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1725,-7,0,1810,-5,0,0 +2013,4,24,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1105,2,0,1913,-36,0,0 +2013,9,8,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,2,0,1725,-2,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1830,-1,0,2035,-21,0,0 +2013,6,9,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,3,0,2018,3,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,16,1,2350,8,0,0 +2013,4,15,1,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,635,0,0,830,-11,0,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,-1,0,2108,-4,0,0 +2013,5,5,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,25,1,1758,58,1,0 +2013,10,23,3,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1111,0,,1210,0,1,1 +2013,6,22,6,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-12,0,1213,-32,0,0 +2013,9,25,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1010,-4,0,1135,-4,0,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1015,18,1,1037,21,1,0 +2013,8,17,6,EV,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1004,-6,0,1117,-22,0,0 +2013,6,30,7,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1145,-3,0,1610,-14,0,0 +2013,6,17,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1455,-3,0,1715,-3,0,0 +2013,10,25,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-2,0,1355,1,0,0 +2013,10,4,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1155,8,0,1430,9,0,0 +2013,9,16,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,840,-3,0,930,0,0,0 +2013,6,6,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,6,0,1115,-4,0,0 +2013,8,13,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,0,0,1925,-5,0,0 +2013,5,4,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-8,0,1106,-16,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,925,16,1,1010,5,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,95,1,2329,77,1,0 +2013,8,6,2,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,48,1,1140,51,1,0 +2013,8,31,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-5,0,950,-4,0,0 +2013,5,24,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,15,1,2017,15,1,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1203,-7,0,1449,-1,0,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,-4,0,1937,-5,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-3,0,955,-6,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1754,-4,0,1929,-11,0,0 +2013,8,6,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,910,0,,1025,0,1,1 +2013,4,4,4,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1312,63,1,1642,80,1,0 +2013,6,28,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1348,14,0,1939,10,0,0 +2013,5,7,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1400,-7,0,1807,-8,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,2105,-7,0,2340,-19,0,0 +2013,7,5,5,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1452,-6,0,1832,11,0,0 +2013,4,22,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1110,12,0,1323,10,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,-1,0,2049,21,1,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1845,32,1,2010,29,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1310,5,0,1525,9,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,11,0,1605,-5,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1630,1,0,1755,5,0,0 +2013,7,8,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,17,1,2042,9,0,0 +2013,9,14,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-4,0,2120,-16,0,0 +2013,6,16,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,1,0,940,-4,0,0 +2013,7,31,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,-3,0,1525,-6,0,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,10,0,2050,-2,0,0 +2013,5,13,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1750,-4,0,1905,-23,0,0 +2013,9,20,5,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1304,64,1,2131,52,1,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1820,11,0,2045,15,1,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1830,-3,0,2110,15,1,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2007,-6,0,2137,-3,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,-4,0,2130,-17,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,816,-1,0,920,-9,0,0 +2013,10,25,5,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1855,-3,0,2140,-31,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,940,9,0,1110,-6,0,0 +2013,6,6,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,630,3,0,720,1,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2005,35,1,2255,23,1,0 +2013,4,3,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2300,-2,0,655,4,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1440,16,1,1540,15,1,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1451,1,0,1710,-5,0,0 +2013,9,24,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-4,0,743,-11,0,0 +2013,8,8,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,830,-1,0,1100,-4,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1439,3,0,1606,-8,0,0 +2013,5,6,1,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1855,5,0,2350,12,0,0 +2013,8,2,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,645,-8,0,844,-21,0,0 +2013,10,29,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,1,0,1816,6,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,0,0,1310,-10,0,0 +2013,8,5,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,932,-8,0,1123,-18,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,39,1,1453,23,1,0 +2013,10,17,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1955,11,0,2200,-7,0,0 +2013,8,12,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-3,0,1159,-11,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1035,77,1,1505,72,1,0 +2013,9,14,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,627,-2,0,1142,2,0,0 +2013,7,30,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,-5,0,1225,-23,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,4,0,730,0,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1249,7,0,1352,-1,0,0 +2013,8,13,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,2050,-4,0,2235,-6,0,0 +2013,6,8,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,848,-13,0,0 +2013,4,7,7,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-8,0,1428,-27,0,0 +2013,7,27,6,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,704,-9,0,830,-16,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,-3,0,2249,-19,0,0 +2013,8,21,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1640,-2,0,1704,-14,0,0 +2013,5,18,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,31,1,2220,20,1,0 +2013,6,3,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,55,-9,0,538,-27,0,0 +2013,4,2,2,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1816,1,0,2145,-16,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,30,1,1528,24,1,0 +2013,5,28,2,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1815,-6,0,2147,-1,0,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1030,47,1,1335,46,1,0 +2013,7,5,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1122,7,0,0 +2013,4,6,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,600,0,0,750,-11,0,0 +2013,6,20,4,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1745,5,0,1910,3,0,0 +2013,5,23,4,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,13,0,1855,11,0,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,830,-5,0,1140,-42,0,0 +2013,6,6,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-5,0,1259,-8,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2025,3,0,2210,-14,0,0 +2013,4,20,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,2,0,1855,-16,0,0 +2013,5,4,6,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1259,-6,0,1425,-13,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1815,25,1,2259,28,1,0 +2013,8,22,4,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,750,-4,0,1025,-28,0,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,-3,0,1415,1,0,0 +2013,5,1,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1500,-2,0,1625,-11,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1005,-5,0,1438,14,0,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-3,0,2011,-6,0,0 +2013,5,1,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,14,0,2115,-3,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-8,0,1500,-9,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,-2,0,1115,-8,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-2,0,925,-1,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1345,1,0,1543,0,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1000,-4,0,1125,-14,0,0 +2013,6,8,6,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2031,-3,0,2348,-32,0,0 +2013,8,1,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,4,0,1803,-9,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1449,0,0,1629,-2,0,0 +2013,10,4,5,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,750,6,0,1345,59,1,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1120,0,0,1306,-19,0,0 +2013,4,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1245,-1,0,1500,11,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,2,0,1925,-6,0,0 +2013,7,16,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1208,-7,0,1410,-23,0,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,602,9,0,1149,0,0,0 +2013,4,13,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,5,0,1548,0,0,0 +2013,5,16,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,605,-2,0,1436,-2,0,0 +2013,9,6,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1805,5,0,1930,4,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1340,-6,0,1517,-12,0,0 +2013,4,19,5,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1020,-1,0,1150,5,0,0 +2013,9,12,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,222,1,1806,218,1,0 +2013,7,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,-5,0,1430,-13,0,0 +2013,6,25,2,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,10,0,1920,14,0,0 +2013,7,3,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1920,-4,0,2100,-17,0,0 +2013,7,14,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,6,0,2013,-13,0,0 +2013,10,7,1,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,700,-4,0,910,-17,0,0 +2013,7,13,6,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-5,0,1625,5,0,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,-2,0,1900,-9,0,0 +2013,4,28,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1655,22,1,1815,17,1,0 +2013,8,11,7,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,0,0,1609,-6,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2015,12,0,2120,6,0,0 +2013,5,10,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,49,1,1415,59,1,0 +2013,6,10,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,8,0,1255,27,1,0 +2013,9,6,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-6,0,2209,-8,0,0 +2013,10,20,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-9,0,1250,-5,0,0 +2013,4,11,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,45,1,1840,66,1,0 +2013,9,11,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1410,-4,0,1705,-22,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1520,12,0,1725,17,1,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1859,30,1,2147,-13,0,0 +2013,10,10,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1735,34,1,1905,33,1,0 +2013,5,28,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1829,-10,0,0 +2013,6,25,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,635,-4,0,740,-11,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,-3,0,1325,-7,0,0 +2013,5,8,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,840,-5,0,1209,4,0,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,705,-3,0,810,-14,0,0 +2013,5,6,1,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1645,-7,0,2028,-7,0,0 +2013,6,12,3,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1235,18,1,1415,6,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,-1,0,1030,1,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,-2,0,1124,-20,0,0 +2013,7,1,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,50,1,2305,113,1,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,905,3,0,1115,3,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-5,0,1214,-16,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,3,0,1940,-6,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,8,0,1538,18,1,0 +2013,4,5,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,705,1,0,830,-16,0,0 +2013,8,26,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1610,20,1,1810,18,1,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,5,0,2025,-8,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,735,-6,0,825,-16,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2245,10,0,15,6,0,0 +2013,8,4,7,EV,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1900,40,1,2014,46,1,0 +2013,10,17,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-3,0,1728,-18,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2155,70,1,2325,58,1,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,638,-4,0,911,-32,0,0 +2013,8,3,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1710,-2,0,2015,7,0,0 +2013,7,29,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,52,1,1348,41,1,0 +2013,6,15,6,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-9,0,2010,-9,0,0 +2013,9,25,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-8,0,758,-13,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,2115,123,1,2313,96,1,0 +2013,7,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,7,0,1945,6,0,0 +2013,9,17,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1438,-3,0,1617,-12,0,0 +2013,5,2,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,48,1,1705,0,1,1 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,0,0,1608,3,0,0 +2013,6,9,7,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,-9,0,834,-14,0,0 +2013,6,4,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,175,1,1735,173,1,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,922,-3,0,1030,-7,0,0 +2013,6,20,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,847,-9,0,1144,-29,0,0 +2013,6,14,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1007,-2,0,1045,-4,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2155,29,1,2255,30,1,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,810,163,1,1100,162,1,0 +2013,5,6,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1355,-3,0,1520,1,0,0 +2013,8,6,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1455,-3,0,1738,-20,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,-1,0,2332,14,0,0 +2013,6,23,7,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,922,-4,0,1035,-14,0,0 +2013,8,10,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1836,78,1,2008,73,1,0 +2013,6,28,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,27,1,2017,40,1,0 +2013,8,4,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,857,-8,0,0 +2013,5,15,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,610,-6,0,720,-14,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1215,19,1,1409,3,0,0 +2013,8,6,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1319,29,1,1405,31,1,0 +2013,5,5,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,822,14,0,0 +2013,10,25,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1124,-2,0,1419,-10,0,0 +2013,6,18,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1135,-1,0,1300,4,0,0 +2013,9,11,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,655,-4,0,815,-14,0,0 +2013,4,5,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,1,0,1051,-3,0,0 +2013,7,3,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1335,0,0,1500,-2,0,0 +2013,9,22,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2005,-6,0,2150,-21,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1955,20,1,2230,8,0,0 +2013,9,22,7,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1158,-9,0,1402,-15,0,0 +2013,10,4,5,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,950,-2,0,1111,4,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,3,0,917,9,0,0 +2013,4,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1900,6,0,2050,11,0,0 +2013,4,22,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1302,-6,0,1820,7,0,0 +2013,8,11,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-1,0,1341,0,0,0 +2013,5,15,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-11,0,1109,-5,0,0 +2013,9,8,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-9,0,1855,6,0,0 +2013,7,16,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,933,29,1,1130,18,1,0 +2013,9,23,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1302,-7,0,0 +2013,8,4,7,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1015,-3,0,1145,-15,0,0 +2013,8,26,1,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1500,8,0,1635,-6,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1140,2,0,1300,-4,0,0 +2013,9,7,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,6,0,930,1,0,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2155,-4,0,2300,-14,0,0 +2013,4,16,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1642,-8,0,1702,0,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,-2,0,1035,-11,0,0 +2013,4,25,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-10,0,1112,-17,0,0 +2013,6,12,3,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-2,0,715,-8,0,0 +2013,10,1,2,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,2150,-6,0,2305,-13,0,0 +2013,5,29,3,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,856,0,0,1133,15,1,0 +2013,9,25,3,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-5,0,1219,-4,0,0 +2013,4,15,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1908,7,0,2026,26,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,605,1,0,1025,-14,0,0 +2013,8,3,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2055,59,1,2327,43,1,0 +2013,5,4,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1123,5,0,1319,-5,0,0 +2013,8,18,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1440,-3,0,0 +2013,6,11,2,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-9,0,645,7,0,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2125,12,0,2300,6,0,0 +2013,7,5,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,705,-3,0,835,-10,0,0 +2013,5,14,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1104,9,0,1700,16,1,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1937,38,1,2115,15,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-3,0,945,-10,0,0 +2013,10,9,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,755,-2,0,910,-5,0,0 +2013,6,9,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,730,0,0,828,-11,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,37,1,1905,50,1,0 +2013,9,7,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,650,-4,0,830,-1,0,0 +2013,7,31,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-4,0,806,-15,0,0 +2013,9,13,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,0,0,915,-19,0,0 +2013,8,23,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,800,-3,0,847,6,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1355,-4,0,1615,-16,0,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,114,7,0,629,-8,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1430,1,0,1541,7,0,0 +2013,6,16,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1523,0,0,1700,3,0,0 +2013,5,24,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,16,1,2011,12,0,0 +2013,4,11,4,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,18,1,1715,12,0,0 +2013,4,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1020,-2,0,1140,-2,0,0 +2013,6,30,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1305,-5,0,1450,-13,0,0 +2013,6,8,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,79,1,1805,57,1,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1520,-1,0,1705,-7,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,5,0,2004,27,1,0 +2013,4,28,7,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1305,0,0,1403,-7,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,1,0,1635,-2,0,0 +2013,10,19,6,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,703,-5,0,942,-20,0,0 +2013,5,10,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1305,-4,0,1410,-23,0,0 +2013,10,19,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,-3,0,747,-22,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,-1,0,1750,1,0,0 +2013,7,21,7,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1420,44,1,1510,35,1,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1702,22,1,2241,54,1,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,945,-4,0,1045,2,0,0 +2013,4,13,6,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-2,0,1221,-10,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1015,11,0,1440,-6,0,0 +2013,10,14,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-7,0,845,-23,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1210,0,0,1350,-5,0,0 +2013,5,7,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-4,0,950,2,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1615,-1,0,1720,-4,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1915,-6,0,2023,-14,0,0 +2013,7,8,1,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1430,17,1,1729,28,1,0 +2013,6,25,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1517,135,1,2025,137,1,0 +2013,5,22,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1244,-6,0,1329,-3,0,0 +2013,7,1,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,0,,2152,0,1,1 +2013,5,28,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1125,8,0,1225,-13,0,0 +2013,8,21,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,820,-3,0,915,-7,0,0 +2013,8,23,5,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-1,0,1615,-7,0,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2005,-1,0,2326,-19,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,-4,0,2134,-9,0,0 +2013,8,16,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,11,0,1425,6,0,0 +2013,9,12,4,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1934,183,1,2053,179,1,0 +2013,7,3,3,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1156,3,0,1312,-11,0,0 +2013,4,5,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-6,0,2143,-10,0,0 +2013,5,22,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1750,-4,0,1908,-12,0,0 +2013,10,11,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-3,0,1030,-2,0,0 +2013,10,4,5,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,955,26,1,1314,54,1,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-9,0,950,0,0,0 +2013,5,29,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1928,0,0,2140,6,0,0 +2013,5,8,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1640,0,,1730,0,1,1 +2013,8,4,7,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,8,0,1845,-23,0,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1640,5,0,1820,0,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-4,0,1944,-9,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-6,0,910,-13,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,13,0,1545,-11,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,1317,-1,0,1413,-13,0,0 +2013,9,13,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,0,,1917,0,1,1 +2013,8,27,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1245,-2,0,1410,-5,0,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2115,27,1,2349,8,0,0 +2013,4,14,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,9,0,1605,-10,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1920,0,,2235,0,1,1 +2013,10,10,4,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,-7,0,1235,-3,0,0 +2013,10,16,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1750,-10,0,1913,-19,0,0 +2013,10,18,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1634,-7,0,1843,-12,0,0 +2013,9,1,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1750,43,1,1931,27,1,0 +2013,10,4,5,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1630,16,1,1730,15,1,0 +2013,4,21,7,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-9,0,1140,-11,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,1050,15,1,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2130,0,0,2350,-8,0,0 +2013,9,1,7,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,73,1,2354,41,1,0 +2013,7,19,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1835,-2,0,1955,-8,0,0 +2013,6,25,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1215,-6,0,1326,3,0,0 +2013,7,31,3,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1856,-4,0,2035,-9,0,0 +2013,6,18,2,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1840,116,1,2150,139,1,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,41,1,1715,45,1,0 +2013,8,19,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1349,-12,0,1520,-7,0,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-3,0,758,-10,0,0 +2013,10,12,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-1,0,651,-9,0,0 +2013,9,16,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-6,0,1820,-15,0,0 +2013,10,20,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1237,61,1,1535,53,1,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1525,-1,0,1910,-21,0,0 +2013,5,8,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,820,-13,0,0 +2013,10,19,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1815,-7,0,2000,-18,0,0 +2013,6,1,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1705,27,1,1905,41,1,0 +2013,8,16,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-5,0,1010,-20,0,0 +2013,4,7,7,UA,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,2200,3,0,40,-9,0,0 +2013,9,7,6,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-3,0,1005,-8,0,0 +2013,4,12,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,43,1,1700,45,1,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1237,-8,0,1351,-16,0,0 +2013,7,13,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1710,354,1,1940,347,1,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1745,-1,0,1905,-3,0,0 +2013,5,24,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1231,-2,0,0 +2013,8,28,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1700,-2,0,1820,-6,0,0 +2013,6,13,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1355,12,0,1450,15,1,0 +2013,9,12,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1405,89,1,1525,102,1,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1052,-4,0,1329,-23,0,0 +2013,8,27,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-13,0,1845,-23,0,0 +2013,5,4,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-8,0,1714,-25,0,0 +2013,6,3,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1550,-1,0,1655,-14,0,0 +2013,10,29,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-5,0,1720,-13,0,0 +2013,9,12,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-5,0,1855,-4,0,0 +2013,8,13,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1725,86,1,1800,101,1,0 +2013,7,31,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1322,-3,0,1557,-4,0,0 +2013,9,19,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,32,1,1227,11,0,0 +2013,6,15,6,EV,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,715,-3,0,848,-17,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1425,8,0,1635,8,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-2,0,815,-1,0,0 +2013,6,22,6,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,700,-1,0,1215,-23,0,0 +2013,7,8,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1835,26,1,1955,20,1,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1133,-4,0,1309,-9,0,0 +2013,10,10,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1718,2,0,1921,2,0,0 +2013,9,25,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,745,0,0,905,-4,0,0 +2013,7,19,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-7,0,1530,3,0,0 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1755,21,1,1945,5,0,0 +2013,4,24,3,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-5,0,2105,-25,0,0 +2013,9,22,7,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,757,0,0,916,-13,0,0 +2013,10,18,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1854,-9,0,0 +2013,8,3,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-2,0,905,-9,0,0 +2013,4,15,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,2030,-4,0,2310,-15,0,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1545,-4,0,1650,-13,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,-3,0,2330,0,0,0 +2013,4,18,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-3,0,1029,-12,0,0 +2013,8,21,3,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1559,24,1,1828,-15,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,8,0,2139,2,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1205,-3,0,1650,-16,0,0 +2013,5,29,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-5,0,1228,-8,0,0 +2013,10,25,5,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,-2,0,2250,-3,0,0 +2013,10,22,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1446,-2,0,1717,11,0,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,17,1,1945,16,1,0 +2013,9,14,6,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,850,-2,0,1117,-14,0,0 +2013,6,23,7,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1709,-8,0,2013,-23,0,0 +2013,8,11,7,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1550,16,1,1725,8,0,0 +2013,7,2,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,95,1,1620,66,1,0 +2013,10,4,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-6,0,1400,-25,0,0 +2013,10,29,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,835,7,0,1641,7,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1700,36,1,1920,36,1,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,49,1,1850,55,1,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2045,2,0,2155,10,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1308,61,1,1416,64,1,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,906,-4,0,1753,17,1,0 +2013,4,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,955,0,0,1115,-11,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1028,4,0,1147,5,0,0 +2013,7,18,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1235,-1,0,1440,-8,0,0 +2013,7,12,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-3,0,2239,-13,0,0 +2013,8,24,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,655,-1,0,1010,-26,0,0 +2013,5,6,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,-4,0,1505,-7,0,0 +2013,8,18,7,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1005,4,0,1455,-28,0,0 +2013,5,25,6,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1035,-12,0,1741,-25,0,0 +2013,6,11,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1550,8,0,1610,4,0,0 +2013,4,26,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1244,-18,0,0 +2013,10,16,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,-5,0,1353,-38,0,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1520,-2,0,1700,-10,0,0 +2013,5,17,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-5,0,2140,-16,0,0 +2013,7,8,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1825,23,1,1935,22,1,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1110,-1,0,1229,7,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,17,1,1031,13,0,0 +2013,4,11,4,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1135,-8,0,2010,14,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,-1,0,1600,5,0,0 +2013,5,27,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-6,0,1730,-25,0,0 +2013,5,2,4,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,-5,0,1252,-2,0,0 +2013,5,5,7,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,825,-10,0,1119,-9,0,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1205,15,1,1417,19,1,0 +2013,8,27,2,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,38,1,1715,17,1,0 +2013,8,11,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,1,0,2137,4,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-2,0,1305,-15,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1505,6,0,1835,5,0,0 +2013,7,24,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2000,-7,0,2210,-20,0,0 +2013,7,3,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,63,1,2103,59,1,0 +2013,7,12,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1802,13,0,1920,9,0,0 +2013,4,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1450,-4,0,1536,-19,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,845,-7,0,1031,-20,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1325,24,1,1430,18,1,0 +2013,7,29,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,26,1,1235,40,1,0 +2013,8,23,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1459,-2,0,1817,-14,0,0 +2013,9,3,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1740,-2,0,1850,-5,0,0 +2013,7,1,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,607,-12,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,655,-5,0,940,-30,0,0 +2013,9,26,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,611,-5,0,843,12,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1445,0,0,1622,-3,0,0 +2013,8,5,1,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1745,0,0,2030,-3,0,0 +2013,8,8,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,0,0,815,-4,0,0 +2013,6,30,7,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,21,1,1757,17,1,0 +2013,10,24,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1136,65,1,1355,51,1,0 +2013,6,3,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,612,0,0,908,-7,0,0 +2013,7,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,735,-10,0,857,-17,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,80,1,2115,66,1,0 +2013,5,14,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,600,10,0,720,15,1,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2018,52,1,2135,35,1,0 +2013,7,19,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-6,0,1310,-7,0,0 +2013,7,12,5,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,17,1,1834,14,0,0 +2013,4,4,4,9E,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,840,-6,0,1014,-21,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,-2,0,1735,-9,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,-6,0,855,-8,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1055,-5,0,1301,-7,0,0 +2013,6,23,7,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,58,1,2050,39,1,0 +2013,9,24,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,142,1,1010,153,1,0 +2013,9,26,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,26,1,2135,14,0,0 +2013,6,9,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1615,10,0,0 +2013,10,3,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,3,0,2130,0,0,0 +2013,4,25,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1640,104,1,1845,123,1,0 +2013,9,1,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1205,-2,0,1321,-17,0,0 +2013,9,24,2,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-4,0,1920,-5,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-1,0,844,-1,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1605,1,0,2345,-15,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1920,6,0,2059,-3,0,0 +2013,8,15,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-9,0,1418,-20,0,0 +2013,9,16,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,600,4,0,808,-10,0,0 +2013,10,16,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1710,0,0,1825,2,0,0 +2013,5,31,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-1,0,2011,-12,0,0 +2013,10,29,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,0,0,1230,-6,0,0 +2013,7,30,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,605,-6,0,1008,-13,0,0 +2013,9,14,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,915,-4,0,1005,4,0,0 +2013,9,30,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1025,-3,0,1140,-11,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,845,1,0,1135,-2,0,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2220,13,0,2350,-5,0,0 +2013,8,21,3,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,8,0,1020,11,0,0 +2013,9,25,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,20,1,1815,32,1,0 +2013,6,10,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,0,0,900,-12,0,0 +2013,9,9,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1415,-5,0,1550,4,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1435,45,1,1630,20,1,0 +2013,6,15,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1134,8,0,2006,-11,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,84,1,2218,71,1,0 +2013,4,26,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1340,-1,0,1505,-14,0,0 +2013,7,15,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-4,0,1340,-12,0,0 +2013,9,15,7,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,9,0,1826,-5,0,0 +2013,10,14,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1707,9,0,1925,7,0,0 +2013,5,23,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,36,1,1125,34,1,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1305,6,0,1434,1,0,0 +2013,7,22,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1100,-1,0,1359,-6,0,0 +2013,8,6,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1722,3,0,1835,-9,0,0 +2013,6,1,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-2,0,1225,-6,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1840,26,1,2105,19,1,0 +2013,7,21,7,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,-4,0,2205,-9,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1005,-5,0,1500,-3,0,0 +2013,9,4,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,-9,0,2022,-16,0,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1110,-4,0,1204,-9,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,950,9,0,1055,5,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1741,-5,0,2112,-11,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,-5,0,1603,8,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1142,0,0,1614,-8,0,0 +2013,5,22,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1700,52,1,2018,39,1,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,710,4,0,830,1,0,0 +2013,4,10,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1046,-3,0,1234,0,0,0 +2013,7,26,5,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1645,-1,0,1830,-5,0,0 +2013,4,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,832,-7,0,940,-8,0,0 +2013,5,4,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1055,-7,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,940,19,1,1125,22,1,0 +2013,9,19,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-3,0,1035,-10,0,0 +2013,7,25,4,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,-8,0,2150,-3,0,0 +2013,9,15,7,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1231,-5,0,1405,-14,0,0 +2013,4,20,6,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,-4,0,1850,-5,0,0 +2013,6,27,4,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1120,-5,0,1400,-15,0,0 +2013,8,16,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-9,0,1830,-13,0,0 +2013,8,18,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-1,0,1650,-7,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1245,1,0,1345,7,0,0 +2013,7,12,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,12,0,1924,5,0,0 +2013,8,15,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,32,1,1715,21,1,0 +2013,7,27,6,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1630,29,1,1800,24,1,0 +2013,6,16,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,900,-9,0,1022,-19,0,0 +2013,6,28,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2050,0,,2302,0,1,1 +2013,7,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1200,0,0,1457,-8,0,0 +2013,5,13,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1337,-3,0,1412,-4,0,0 +2013,7,12,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,43,1,1445,72,1,0 +2013,7,14,7,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1020,2,0,1301,-10,0,0 +2013,8,16,5,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,915,6,0,1135,4,0,0 +2013,6,8,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,19,1,1600,41,1,0 +2013,6,11,2,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,-1,0,1630,-3,0,0 +2013,8,9,5,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,757,39,1,1302,32,1,0 +2013,8,16,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,640,-5,0,1000,-2,0,0 +2013,5,6,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,635,2,0,750,-9,0,0 +2013,10,23,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-9,0,1334,3,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1625,3,0,1740,6,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,915,0,0,1130,-3,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2130,121,1,2250,110,1,0 +2013,10,8,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-5,0,851,0,0,0 +2013,5,8,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1350,14,0,1500,10,0,0 +2013,8,15,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1935,-7,0,2143,-11,0,0 +2013,6,9,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1055,-6,0,1225,-25,0,0 +2013,7,4,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,-4,0,932,-9,0,0 +2013,4,4,4,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,830,-3,0,1113,-6,0,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-1,0,1705,-8,0,0 +2013,4,22,1,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1232,63,1,2100,63,1,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,4,0,2155,2,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-4,0,1154,-10,0,0 +2013,10,20,7,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1445,4,0,1625,8,0,0 +2013,9,1,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-5,0,1022,-12,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,-4,0,1210,-8,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1635,-8,0,2000,-13,0,0 +2013,6,19,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,822,-18,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-3,0,1635,-12,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-7,0,1326,-17,0,0 +2013,7,15,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,-6,0,1615,2,0,0 +2013,8,13,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,0,0,1734,-17,0,0 +2013,6,23,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1142,18,1,1424,8,0,0 +2013,4,19,5,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1455,15,1,1632,13,0,0 +2013,9,9,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,605,-5,0,735,-12,0,0 +2013,8,7,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-5,0,2240,31,1,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1135,-3,0,1355,-18,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1100,0,0,1255,-20,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1950,-1,0,2115,-7,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,855,-4,0,1200,-4,0,0 +2013,4,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2150,38,1,15,62,1,0 +2013,10,22,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,615,12,0,725,12,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1035,26,1,1505,15,1,0 +2013,5,1,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1818,-6,0,0 +2013,4,27,6,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,635,-4,0,1454,-9,0,0 +2013,8,17,6,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,0,0,1410,-14,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,9,0,1445,-7,0,0 +2013,9,18,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1750,12,0,2000,3,0,0 +2013,5,15,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1759,1,0,2129,5,0,0 +2013,4,18,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1710,5,0,1842,3,0,0 +2013,5,18,6,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2245,33,1,704,11,0,0 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-3,0,1931,-8,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,25,1,1000,18,1,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1050,11,0,1200,14,0,0 +2013,4,29,1,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,-3,0,2230,-12,0,0 +2013,9,18,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1315,-6,0,2052,-11,0,0 +2013,9,3,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-5,0,718,5,0,0 +2013,9,1,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1804,-13,0,2010,-15,0,0 +2013,5,18,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1714,6,0,1933,-18,0,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,727,-4,0,839,-14,0,0 +2013,9,7,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1640,-2,0,0 +2013,6,12,3,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1620,36,1,1829,36,1,0 +2013,6,30,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1400,-1,0,1532,-5,0,0 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,2,0,1416,-15,0,0 +2013,6,29,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,1,0,830,-2,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,910,-5,0,1045,-19,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2135,-2,0,516,21,1,0 +2013,4,5,5,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1139,14,0,1325,15,1,0 +2013,5,16,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-5,0,808,-14,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1345,12,0,1512,11,0,0 +2013,9,4,3,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1455,-10,0,1634,-52,0,0 +2013,6,6,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,64,1,1745,125,1,0 +2013,9,27,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1711,-1,0,2048,-17,0,0 +2013,7,23,2,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,822,-7,0,1119,-30,0,0 +2013,5,11,6,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,-9,0,1515,-6,0,0 +2013,5,26,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2110,-1,0,2235,-14,0,0 +2013,5,14,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2045,9,0,2200,9,0,0 +2013,6,4,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2100,-6,0,2253,-15,0,0 +2013,10,14,1,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1315,-3,0,1920,-11,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,-1,0,1040,-4,0,0 +2013,5,2,4,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,940,-8,0,0 +2013,9,10,2,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2305,-9,0,702,-12,0,0 +2013,4,15,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,-3,0,1945,-3,0,0 +2013,4,10,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,0,0,2138,-3,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,-2,0,1600,-6,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,-9,0,1631,-34,0,0 +2013,5,17,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-10,0,920,-9,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-3,0,916,3,0,0 +2013,10,15,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1209,3,0,2035,-14,0,0 +2013,4,24,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,-6,0,2015,-1,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1634,3,0,1738,-27,0,0 +2013,4,15,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2140,35,1,2250,30,1,0 +2013,9,15,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1525,-3,0,1907,-21,0,0 +2013,5,27,1,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1515,28,1,1645,37,1,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1335,-3,0,1547,-16,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1010,-6,0,1120,-25,0,0 +2013,7,11,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,204,1,1815,212,1,0 +2013,4,21,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,-10,0,1226,-13,0,0 +2013,9,5,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1910,-5,0,2025,-14,0,0 +2013,5,4,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1225,-5,0,1503,-8,0,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,-9,0,1031,-10,0,0 +2013,8,12,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-13,0,2124,11,0,0 +2013,8,19,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-3,0,2015,-5,0,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1548,1,0,1645,-6,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-8,0,1131,-13,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1315,18,1,1555,31,1,0 +2013,4,12,5,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,704,-4,0,909,-14,0,0 +2013,10,28,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,34,1,1634,21,1,0 +2013,9,21,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,838,-8,0,935,30,1,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,648,-9,0,913,11,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1910,2,0,2128,-10,0,0 +2013,6,29,6,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1305,77,1,1526,103,1,0 +2013,9,7,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,-6,0,1455,-12,0,0 +2013,5,7,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1010,1,0,1248,-1,0,0 +2013,6,27,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,930,-13,0,0 +2013,4,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2151,-2,0,2246,1,0,0 +2013,5,17,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1345,-8,0,1510,-17,0,0 +2013,6,12,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,754,-19,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,-6,0,2304,-19,0,0 +2013,8,23,5,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1835,29,1,2050,19,1,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,-4,0,1311,-1,0,0 +2013,5,24,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,6,0,1150,-5,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,750,-1,0,1135,-7,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,857,-2,0,1137,-13,0,0 +2013,9,10,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,-3,0,810,-1,0,0 +2013,8,16,5,DL,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1905,-3,0,2020,8,0,0 +2013,7,14,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,5,0,1916,4,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1050,0,0,1150,2,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2152,-4,0,2338,-22,0,0 +2013,7,18,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1724,113,1,2030,114,1,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,905,-5,0,1329,-17,0,0 +2013,5,6,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,22,1,2259,30,1,0 +2013,8,10,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,43,1,1345,54,1,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,844,-2,0,1133,-7,0,0 +2013,10,12,6,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,900,2,0,1405,-9,0,0 +2013,7,2,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-6,0,1718,23,1,0 +2013,4,18,4,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1709,0,,1840,0,1,1 +2013,6,28,5,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1725,-5,0,2047,-10,0,0 +2013,8,23,5,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-5,0,825,-11,0,0 +2013,9,19,4,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1225,-8,0,1551,15,1,0 +2013,8,16,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1010,1,0,1145,3,0,0 +2013,5,18,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,8,0,1745,-12,0,0 +2013,7,26,5,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2035,5,0,2254,20,1,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1840,-2,0,2055,-11,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,1,0,915,-1,0,0 +2013,6,14,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-5,0,756,-4,0,0 +2013,5,2,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1302,-2,0,1607,35,1,0 +2013,8,11,7,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1145,-5,0,1445,-11,0,0 +2013,9,3,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,800,-3,0,932,4,0,0 +2013,9,29,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-1,0,1000,28,1,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,755,-5,0,1020,1,0,0 +2013,5,8,3,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,18,1,2058,3,0,0 +2013,5,19,7,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1220,4,0,1725,-6,0,0 +2013,4,4,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,-2,0,1435,0,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2012,-14,0,2145,-28,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1618,0,0,1810,-15,0,0 +2013,7,15,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1838,-10,0,1945,-14,0,0 +2013,7,19,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,2,0,1905,-14,0,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1356,-9,0,1757,21,1,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1536,33,1,1658,31,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,17,1,2319,10,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1115,7,0,1304,2,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,650,0,0,935,9,0,0 +2013,6,9,7,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-4,0,1630,-9,0,0 +2013,5,24,5,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,918,-10,0,1210,-17,0,0 +2013,6,23,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,2,0,1015,-4,0,0 +2013,9,10,2,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1745,73,1,2020,83,1,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1215,0,,1355,0,1,1 +2013,5,18,6,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-1,0,2350,-17,0,0 +2013,9,27,5,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1356,74,1,1920,99,1,0 +2013,10,14,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1129,-4,0,1248,-10,0,0 +2013,9,13,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,818,-6,0,908,17,1,0 +2013,8,29,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1315,2,0,1450,-4,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1717,-3,0,2039,3,0,0 +2013,4,23,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,2,0,1730,5,0,0 +2013,6,27,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,710,-6,0,0 +2013,8,24,6,OO,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1610,9,0,2015,5,0,0 +2013,10,19,6,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1550,-3,0,1700,-1,0,0 +2013,8,21,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1045,-5,0,1310,-10,0,0 +2013,7,2,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1355,12,0,1659,-8,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,7,0,1828,10,0,0 +2013,10,7,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,700,16,1,1520,57,1,0 +2013,8,27,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-1,0,1015,5,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1020,1,0,1544,4,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,925,13,0,1255,12,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1010,-2,0,1230,-13,0,0 +2013,10,22,2,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,955,-9,0,1149,-18,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2015,33,1,2255,28,1,0 +2013,5,11,6,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1915,-4,0,2031,-3,0,0 +2013,10,5,6,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,900,-4,0,1215,-12,0,0 +2013,4,5,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1746,92,1,1912,74,1,0 +2013,8,26,1,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1427,6,0,2233,0,0,0 +2013,8,4,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-1,0,1405,-4,0,0 +2013,10,14,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1125,-1,0,1858,-9,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,-2,0,1130,-3,0,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1205,6,0,1400,13,0,0 +2013,10,12,6,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1327,-5,0,1451,12,0,0 +2013,4,18,4,UA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1645,184,1,1855,174,1,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,910,15,1,1148,0,0,0 +2013,4,25,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,-9,0,1705,-2,0,0 +2013,7,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1020,-8,0,1238,-4,0,0 +2013,5,30,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1856,14,0,2058,14,0,0 +2013,6,6,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,7,0,1135,12,0,0 +2013,10,16,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,3,0,2145,-9,0,0 +2013,10,26,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,754,-6,0,1029,-15,0,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1726,29,1,1937,26,1,0 +2013,7,27,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1145,8,0,1305,6,0,0 +2013,5,21,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,926,8,0,0 +2013,4,25,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,648,4,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1305,-1,0,1640,1,0,0 +2013,6,26,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1700,26,1,1907,9,0,0 +2013,8,11,7,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1125,-3,0,1210,4,0,0 +2013,10,11,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1004,4,0,1141,-1,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-4,0,1835,-2,0,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,738,-7,0,1034,-17,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-4,0,1920,-17,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,2,0,1130,-2,0,0 +2013,6,10,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1435,-6,0,1535,-8,0,0 +2013,9,9,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,-7,0,1301,-16,0,0 +2013,6,12,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,-2,0,919,4,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2035,71,1,2201,45,1,0 +2013,10,30,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1540,37,1,2110,38,1,0 +2013,6,8,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-7,0,1829,-15,0,0 +2013,9,28,6,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1255,4,0,1905,0,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-1,0,1611,-13,0,0 +2013,5,13,1,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1530,5,0,1710,-9,0,0 +2013,8,30,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,620,-2,0,750,-8,0,0 +2013,8,11,7,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,810,-3,0,1022,-11,0,0 +2013,10,31,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-5,0,1515,5,0,0 +2013,7,28,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1535,-4,0,1653,-10,0,0 +2013,7,6,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,-9,0,842,-6,0,0 +2013,4,29,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1620,-7,0,1820,-3,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,855,-3,0,1330,-12,0,0 +2013,10,15,2,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1305,-1,0,1835,-26,0,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,730,7,0,1025,10,0,0 +2013,7,18,4,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,1,0,1200,-8,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1040,2,0,1335,3,0,0 +2013,10,3,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1350,-4,0,1629,-2,0,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1354,88,1,1642,124,1,0 +2013,10,4,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,-8,0,1844,-20,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1610,-3,0,1715,-14,0,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,835,-3,0,953,-7,0,0 +2013,10,28,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,910,-3,0,1220,-14,0,0 +2013,8,14,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1731,17,1,1849,-7,0,0 +2013,6,1,6,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,32,1,1830,30,1,0 +2013,9,19,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1020,-2,0,1250,4,0,0 +2013,5,6,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1000,1,0,1105,-12,0,0 +2013,8,10,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2155,-9,0,43,-12,0,0 +2013,9,19,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1105,6,0,1205,0,0,0 +2013,5,12,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-5,0,1520,-25,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,935,2,0,1055,-2,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-4,0,1800,-11,0,0 +2013,4,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,855,52,1,1122,54,1,0 +2013,8,16,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1059,6,0,1336,-8,0,0 +2013,5,7,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2125,30,1,2235,7,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,64,1,1835,83,1,0 +2013,4,26,5,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1203,-2,0,1314,-5,0,0 +2013,5,3,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1230,-5,0,1525,-11,0,0 +2013,8,28,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,0,0,1333,13,0,0 +2013,6,8,6,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-2,0,2055,-7,0,0 +2013,10,18,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1340,-13,0,1931,-12,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,-7,0,1005,-18,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1520,7,0,1815,-3,0,0 +2013,9,29,7,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-3,0,838,-15,0,0 +2013,8,10,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1853,47,1,2059,44,1,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1803,7,0,2059,5,0,0 +2013,6,20,4,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-4,0,1645,-6,0,0 +2013,7,21,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-10,0,1140,0,0,0 +2013,4,22,1,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1450,5,0,1745,37,1,0 +2013,10,2,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1744,-12,0,0 +2013,5,5,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2009,0,,2135,0,1,1 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1915,21,1,2046,11,0,0 +2013,4,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1155,7,0,1320,-2,0,0 +2013,10,18,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1431,-8,0,1612,-14,0,0 +2013,8,22,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,55,1,1440,47,1,0 +2013,10,26,6,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1850,-9,0,2120,-23,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,0,0,1924,-6,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2235,3,0,5,-13,0,0 +2013,7,7,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-5,0,720,-20,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1455,-6,0,1740,-13,0,0 +2013,4,16,2,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1043,-8,0,1515,-21,0,0 +2013,10,10,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-1,0,805,-1,0,0 +2013,10,2,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1140,13,0,1515,18,1,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,5,0,1100,6,0,0 +2013,9,16,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,924,-1,0,1117,-4,0,0 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1915,-6,0,2216,-12,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1500,16,1,1640,20,1,0 +2013,8,3,6,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,520,-2,0,642,-12,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1420,89,1,1620,90,1,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-2,0,2250,-10,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1740,-1,0,2100,8,0,0 +2013,6,29,6,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,-1,0,1445,-13,0,0 +2013,10,26,6,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,805,-7,0,1601,-3,0,0 +2013,4,19,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,700,57,1,905,53,1,0 +2013,6,30,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-3,0,1359,-25,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2110,18,1,2215,10,0,0 +2013,5,17,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1650,14,0,1910,1,0,0 +2013,10,12,6,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,935,1,0,1747,-4,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,15,1,50,26,1,0 +2013,6,30,7,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,8,0,1535,9,0,0 +2013,9,28,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,8,0,1237,29,1,0 +2013,8,17,6,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1640,-5,0,1828,-8,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,33,1,2210,37,1,0 +2013,10,18,5,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1548,-1,0,1714,2,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1315,-6,0,1438,-12,0,0 +2013,4,16,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-7,0,1815,-36,0,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1255,19,1,1345,9,0,0 +2013,6,27,4,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1505,-4,0,1645,18,1,0 +2013,5,10,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1945,-7,0,2300,-26,0,0 +2013,5,11,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1100,-4,0,1156,-9,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1753,-6,0,2109,-10,0,0 +2013,4,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1740,80,1,1935,71,1,0 +2013,6,28,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,230,1,1930,204,1,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,830,17,1,1005,36,1,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,735,-2,0,941,-15,0,0 +2013,6,6,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1525,-6,0,1715,-17,0,0 +2013,9,10,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1425,-9,0,1615,-6,0,0 +2013,10,2,3,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,0,0,2200,-8,0,0 +2013,7,7,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1940,28,1,2030,28,1,0 +2013,7,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,8,0,2025,0,0,0 +2013,9,19,4,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,715,-6,0,835,-1,0,0 +2013,10,30,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,21,1,1750,2,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,-1,0,1255,-9,0,0 +2013,9,5,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-7,0,956,-21,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,29,1,1629,25,1,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2115,37,1,2349,-11,0,0 +2013,10,16,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-4,0,1638,-5,0,0 +2013,7,6,6,WN,12191,William P Hobby,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1225,12,0,1455,-3,0,0 +2013,9,25,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2125,-2,0,146,-10,0,0 +2013,10,29,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,905,-8,0,1032,-14,0,0 +2013,8,30,5,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1245,-1,0,1515,-30,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1200,18,1,1518,-17,0,0 +2013,5,29,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1345,-11,0,1530,-20,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1256,1,0,1515,2,0,0 +2013,4,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1935,59,1,2100,56,1,0 +2013,10,18,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,13,0,1540,13,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1745,10,0,2205,7,0,0 +2013,10,26,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1425,0,0,1648,13,0,0 +2013,9,23,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1003,58,1,1322,53,1,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-3,0,1343,-35,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-8,0,1131,-4,0,0 +2013,5,28,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2317,-2,0,509,18,1,0 +2013,9,6,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1240,-8,0,1422,5,0,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1814,56,1,2104,56,1,0 +2013,7,11,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,55,1,1320,41,1,0 +2013,4,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2045,-5,0,2215,-9,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1930,0,0,2100,-12,0,0 +2013,4,19,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,6,0,1820,5,0,0 +2013,6,8,6,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1100,2,0,1655,-22,0,0 +2013,10,9,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1540,-8,0,1815,-13,0,0 +2013,6,21,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1535,0,,1810,0,1,1 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1656,-1,0,1932,5,0,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2230,-6,0,645,-16,0,0 +2013,8,23,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,-4,0,750,-7,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1730,-9,0,2108,-12,0,0 +2013,4,29,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-3,0,1956,4,0,0 +2013,4,21,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,825,-3,0,940,-9,0,0 +2013,7,27,6,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1455,20,1,1905,15,1,0 +2013,4,5,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1525,-11,0,1834,-5,0,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,-2,0,2110,-45,0,0 +2013,10,13,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1621,-2,0,1915,-19,0,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1451,-1,0,1720,-2,0,0 +2013,6,8,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1800,9,0,1905,-18,0,0 +2013,4,4,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,1003,-15,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1255,-5,0,1406,-1,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1240,-3,0,1459,119,1,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,820,4,0,1055,0,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1726,-5,0,1738,-11,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1215,13,0,1815,4,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1115,-2,0,1405,-14,0,0 +2013,9,20,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,0,,1650,0,1,1 +2013,7,21,7,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1325,10,0,1615,3,0,0 +2013,7,15,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1855,-5,0,2020,-14,0,0 +2013,4,8,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2010,-4,0,2125,14,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,2,0,2249,1,0,0 +2013,4,2,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1108,-5,0,1257,13,0,0 +2013,9,21,6,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-5,0,559,-23,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1208,-1,0,1259,-10,0,0 +2013,9,10,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-7,0,2355,-1,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-2,0,1820,-29,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1010,-2,0,1244,1,0,0 +2013,6,8,6,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,735,-1,0,1115,-4,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,910,-1,0,1045,1,0,0 +2013,6,8,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1410,0,0,1545,-5,0,0 +2013,5,14,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1635,19,1,1926,-2,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1202,-4,0,1339,-14,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-2,0,1225,-6,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1715,-5,0,1842,-25,0,0 +2013,9,9,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,25,1,1800,23,1,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,5,0,1317,-2,0,0 +2013,8,26,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1815,-5,0,2151,-11,0,0 +2013,9,19,4,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1249,3,0,1646,6,0,0 +2013,10,8,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,710,-4,0,1050,-16,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,0,0,1045,-12,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1355,2,0,1755,46,1,0 +2013,10,10,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1520,-3,0,1750,-22,0,0 +2013,8,17,6,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,915,135,1,1056,109,1,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1737,-5,0,1849,-12,0,0 +2013,6,15,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-7,0,1250,-5,0,0 +2013,7,18,4,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,824,-8,0,933,-17,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,650,0,0,815,-14,0,0 +2013,8,2,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1006,19,1,1335,15,1,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,2,0,2202,4,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1320,3,0,1725,-2,0,0 +2013,9,29,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1242,-3,0,1458,-7,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,940,175,1,1240,163,1,0 +2013,7,2,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2133,-5,0,2205,-4,0,0 +2013,8,7,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,25,1,1618,22,1,0 +2013,5,20,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1504,40,1,1627,33,1,0 +2013,4,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,1245,0,0,0 +2013,6,2,7,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,650,-5,0,810,-7,0,0 +2013,9,10,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,751,24,1,920,16,1,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,60,1,2200,54,1,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,0,0,2217,0,0,0 +2013,6,16,7,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,955,5,0,1125,-4,0,0 +2013,4,15,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-6,0,1545,-14,0,0 +2013,7,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-4,0,1950,-12,0,0 +2013,8,21,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1033,-8,0,1150,9,0,0 +2013,8,31,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1818,-6,0,1953,-12,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1701,6,0,1833,-10,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,-1,0,930,-4,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1610,-4,0,1820,-21,0,0 +2013,7,17,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2315,-4,0,715,2,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1550,0,0,1753,-3,0,0 +2013,4,23,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-2,0,1815,18,1,0 +2013,8,10,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1700,-2,0,1818,-3,0,0 +2013,9,5,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1845,0,0,2025,-8,0,0 +2013,4,30,2,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1828,-6,0,1948,-27,0,0 +2013,8,7,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1903,-10,0,2040,-15,0,0 +2013,6,15,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2050,-4,0,2330,-33,0,0 +2013,6,28,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,814,7,0,1025,-7,0,0 +2013,7,11,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,737,-12,0,918,-15,0,0 +2013,6,18,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,80,1,1855,70,1,0 +2013,6,22,6,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1445,58,1,1730,51,1,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1930,251,1,2030,245,1,0 +2013,9,12,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,90,1,2110,79,1,0 +2013,4,7,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,12,0,1354,-4,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1300,15,1,1435,10,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-2,0,2125,-8,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1120,3,0,1306,9,0,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1130,10,0,1445,7,0,0 +2013,10,29,2,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,4,0,1457,-4,0,0 +2013,7,7,7,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,-2,0,833,-5,0,0 +2013,8,2,5,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,0,0,1608,-9,0,0 +2013,6,15,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-6,0,1258,-15,0,0 +2013,10,20,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,741,-4,0,1520,-9,0,0 +2013,7,17,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1809,35,1,1919,121,1,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,21,1,2210,23,1,0 +2013,4,27,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1850,4,0,1952,-10,0,0 +2013,7,4,4,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2155,-9,0,2309,-18,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,-1,0,1631,-14,0,0 +2013,4,23,2,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-7,0,1615,-26,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,-2,0,2347,-14,0,0 +2013,7,27,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-11,0,1913,-18,0,0 +2013,6,12,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1436,11,0,1610,36,1,0 +2013,7,21,7,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1825,-8,0,2147,-17,0,0 +2013,4,14,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2020,63,1,2200,51,1,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-5,0,2045,-21,0,0 +2013,5,11,6,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,1328,-8,0,1422,-20,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,950,-9,0,1342,-29,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,739,-2,0,1011,9,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,-1,0,1225,-6,0,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,718,0,0,1038,6,0,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,700,-1,0,925,4,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1025,2,0,1115,-10,0,0 +2013,10,22,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,934,-7,0,1036,6,0,0 +2013,6,4,2,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1115,-4,0,1409,-21,0,0 +2013,10,31,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1955,-7,0,2125,-10,0,0 +2013,9,10,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1145,-5,0,1345,-8,0,0 +2013,7,5,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-6,0,1055,-14,0,0 +2013,10,3,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,-9,0,1343,-8,0,0 +2013,10,17,4,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-2,0,1630,25,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-2,0,1326,-8,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1840,-2,0,44,-11,0,0 +2013,4,4,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,1,0,1417,6,0,0 +2013,4,15,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,107,1,807,91,1,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1050,-4,0,1340,-5,0,0 +2013,10,18,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1925,-1,0,2040,-9,0,0 +2013,4,2,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,900,0,0,950,11,0,0 +2013,4,14,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1043,30,1,1344,7,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,850,-1,0,1211,3,0,0 +2013,10,11,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-1,0,1021,-12,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-6,0,855,-5,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1020,6,0,1145,0,0,0 +2013,10,4,5,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,615,-9,0,900,-7,0,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1609,2,0,1930,-6,0,0 +2013,9,12,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,0,0,904,0,0,0 +2013,10,2,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,927,12,0,1237,10,0,0 +2013,10,18,5,9E,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1122,-4,0,1320,-27,0,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1943,-5,0,2100,-15,0,0 +2013,8,26,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,-8,0,1731,-12,0,0 +2013,5,20,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1819,-1,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,655,-3,0,1040,-3,0,0 +2013,7,27,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,910,-4,0,1245,-10,0,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1135,2,0,1355,-13,0,0 +2013,7,21,7,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1105,-7,0,1931,-16,0,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1145,0,0,1330,10,0,0 +2013,9,5,4,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-5,0,2125,-25,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,4,0,1151,-1,0,0 +2013,7,17,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-1,0,850,-15,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-3,0,1240,-24,0,0 +2013,8,25,7,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,750,1,0,1025,-26,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1333,-6,0,1642,-12,0,0 +2013,7,31,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1744,-2,0,2128,-2,0,0 +2013,7,16,2,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1905,-10,0,2056,-26,0,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,2,0,1546,-25,0,0 +2013,10,31,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1710,-10,0,2315,-14,0,0 +2013,4,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1825,-6,0,2056,5,0,0 +2013,6,28,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,12,0,810,20,1,0 +2013,6,5,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-3,0,905,-11,0,0 +2013,6,1,6,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1627,9,0,1815,-17,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-2,0,1340,-4,0,0 +2013,9,3,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,0,,1705,0,1,1 +2013,4,11,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,-7,0,1008,-3,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,-1,0,1349,-5,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1545,70,1,1850,67,1,0 +2013,5,29,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,-5,0,1152,-21,0,0 +2013,9,18,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,619,-8,0,734,-19,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1132,4,0,1751,-8,0,0 +2013,7,26,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,930,0,,1030,0,1,1 +2013,4,18,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1620,246,1,1900,241,1,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,7,0,1050,7,0,0 +2013,10,25,5,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1915,-14,0,2252,-12,0,0 +2013,10,26,6,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-2,0,1015,-20,0,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,812,-7,0,959,-14,0,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1440,3,0,1555,-2,0,0 +2013,6,28,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,54,1,1535,58,1,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1550,1,0,1820,-8,0,0 +2013,9,14,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,801,-7,0,856,-18,0,0 +2013,7,9,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,1,0,810,20,1,0 +2013,4,5,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1235,1,0,1355,-2,0,0 +2013,7,22,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1006,-15,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1925,-4,0,2240,-18,0,0 +2013,8,3,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1016,-9,0,0 +2013,7,28,7,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,835,1,0,1000,-3,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1235,0,0,1640,-23,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1325,-4,0,1450,-12,0,0 +2013,8,28,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1745,80,1,2020,93,1,0 +2013,8,23,5,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,610,-5,0,739,-19,0,0 +2013,7,18,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,67,1,2115,68,1,0 +2013,6,24,1,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2130,-4,0,515,-1,0,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,-2,0,826,-21,0,0 +2013,7,30,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1425,-7,0,1630,21,1,0 +2013,8,23,5,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,-12,0,535,-20,0,0 +2013,8,11,7,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,-5,0,1110,31,1,0 +2013,7,9,2,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,0,0,1140,2,0,0 +2013,6,14,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-4,0,1650,-9,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1900,125,1,2325,109,1,0 +2013,8,20,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,925,-2,0,1153,-7,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,-4,0,2045,-14,0,0 +2013,5,30,4,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1755,72,1,2035,60,1,0 +2013,4,21,7,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2005,8,0,2129,-4,0,0 +2013,10,1,2,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1120,-7,0,1230,-17,0,0 +2013,6,24,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,49,1,2202,34,1,0 +2013,6,23,7,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,1,0,715,1,0,0 +2013,5,16,4,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-7,0,1053,-30,0,0 +2013,8,12,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,2,0,912,2,0,0 +2013,4,13,6,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1845,2,0,1945,-6,0,0 +2013,7,19,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,630,-1,0,1505,-6,0,0 +2013,8,5,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,2051,-3,0,2306,-9,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1415,8,0,1655,-14,0,0 +2013,7,25,4,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,16,1,1607,21,1,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1655,59,1,2016,82,1,0 +2013,9,2,1,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1425,-9,0,1536,-1,0,0 +2013,6,19,3,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,-3,0,1758,-10,0,0 +2013,9,13,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,9,0,833,-5,0,0 +2013,5,7,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2208,11,0,1,-16,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,840,-2,0,1010,2,0,0 +2013,7,6,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,900,9,0,1201,5,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,65,1,2130,59,1,0 +2013,6,21,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-6,0,756,8,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1818,29,1,2051,20,1,0 +2013,5,24,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-4,0,2237,-38,0,0 +2013,6,14,5,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,600,0,0,745,-19,0,0 +2013,5,18,6,WN,10423,Austin - Bergstrom International,Austin,TX,14057,Portland International,Portland,OR,1725,0,0,1920,0,0,0 +2013,5,20,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1406,-7,0,1520,-18,0,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1924,-3,0,2114,-15,0,0 +2013,6,2,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,1,0,2104,68,1,0 +2013,6,22,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,0,0,543,33,1,0 +2013,6,3,1,FL,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1718,12,0,1833,8,0,0 +2013,7,11,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-5,0,848,-5,0,0 +2013,10,10,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,-8,0,1825,-15,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,-1,0,1425,-7,0,0 +2013,5,20,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1005,-2,0,1130,-5,0,0 +2013,6,1,6,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1740,-5,0,2150,-38,0,0 +2013,10,16,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1647,-2,0,1754,8,0,0 +2013,7,26,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,530,65,1,650,71,1,0 +2013,8,15,4,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1641,0,0,1821,0,0,0 +2013,5,31,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-6,0,759,-9,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2245,70,1,2335,67,1,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1325,-5,0,1450,-6,0,0 +2013,10,12,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,602,-7,0,1202,-8,0,0 +2013,4,28,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-3,0,1111,-5,0,0 +2013,4,15,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1612,-10,0,0 +2013,6,24,1,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1700,63,1,1837,57,1,0 +2013,9,15,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,845,-7,0,1054,-7,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,-5,0,1000,-14,0,0 +2013,8,8,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-5,0,1911,-7,0,0 +2013,6,13,4,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1245,-4,0,1344,-6,0,0 +2013,8,9,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,1,0,1720,26,1,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,1,0,1445,-1,0,0 +2013,4,16,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-11,0,720,-9,0,0 +2013,10,5,6,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-6,0,911,-17,0,0 +2013,4,8,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-8,0,1010,-11,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-4,0,1929,3,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-2,0,1026,-15,0,0 +2013,10,9,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-6,0,1617,-15,0,0 +2013,7,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2055,48,1,2225,41,1,0 +2013,4,13,6,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2204,-9,0,15,-2,0,0 +2013,5,2,4,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1020,-11,0,1315,-7,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,9,0,1146,15,1,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,945,11,0,1100,1,0,0 +2013,9,6,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,930,-6,0,1059,-20,0,0 +2013,5,11,6,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,925,-7,0,1227,19,1,0 +2013,5,20,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,1,0,2005,-9,0,0 +2013,5,16,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1530,-6,0,1710,-22,0,0 +2013,7,31,3,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,823,12,0,1002,-6,0,0 +2013,4,19,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,945,-3,0,1129,-25,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-2,0,852,5,0,0 +2013,6,8,6,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,10,0,1215,6,0,0 +2013,6,12,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,740,-4,0,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,-6,0,1315,-27,0,0 +2013,4,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1957,1,0,2110,5,0,0 +2013,5,23,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1105,8,0,1230,10,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2114,6,0,2352,3,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-5,0,1630,-29,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1200,-4,0,1313,-14,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,725,-1,0,845,-20,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,0,0,2350,8,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,-1,0,2000,-7,0,0 +2013,9,30,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2037,-18,0,2338,-23,0,0 +2013,4,18,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1243,99,1,1636,125,1,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-3,0,1319,-25,0,0 +2013,8,15,4,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-4,0,846,-1,0,0 +2013,5,28,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2005,12,0,2050,14,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,630,-1,0,930,-8,0,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1510,8,0,2110,-7,0,0 +2013,9,22,7,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,3,0,925,13,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1520,2,0,1715,-22,0,0 +2013,8,22,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-11,0,841,-5,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,900,1,0,1045,3,0,0 +2013,4,15,1,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1309,-3,0,1621,1,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1255,8,0,1620,1,0,0 +2013,4,17,3,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,1000,-3,0,1300,-20,0,0 +2013,10,23,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-7,0,1415,-12,0,0 +2013,6,25,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2045,63,1,2155,59,1,0 +2013,4,10,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-3,0,1336,-4,0,0 +2013,10,17,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1500,31,1,1716,13,0,0 +2013,10,20,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,705,0,0,825,10,0,0 +2013,4,25,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,3,0,1615,13,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1659,-12,0,2000,-16,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,843,15,1,955,14,0,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,29,1,1820,28,1,0 +2013,10,9,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,830,-3,0,1105,-2,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,-3,0,1320,-2,0,0 +2013,7,2,2,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,35,1,1810,26,1,0 +2013,4,13,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-8,0,1410,-14,0,0 +2013,9,28,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,0,0,1100,-12,0,0 +2013,7,18,4,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-5,0,643,-2,0,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,4,0,1325,5,0,0 +2013,5,19,7,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-10,0,740,-21,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2216,-1,0,2356,-3,0,0 +2013,7,4,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1040,-20,0,0 +2013,9,3,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-6,0,1317,-18,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,21,1,1605,15,1,0 +2013,5,30,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,0,0,1235,-3,0,0 +2013,6,11,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-10,0,2028,-6,0,0 +2013,4,28,7,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,619,-2,0,1438,-6,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1334,-9,0,1455,1,0,0 +2013,9,24,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,-1,0,1705,0,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1301,-3,0,1616,-7,0,0 +2013,9,15,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1900,138,1,2149,131,1,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,935,13,0,1305,16,1,0 +2013,9,4,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1850,9,0,2025,0,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,-2,0,1050,-5,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1934,34,1,2108,34,1,0 +2013,5,1,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,8,0,2051,-1,0,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,725,-4,0,1146,-13,0,0 +2013,5,20,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1855,-10,0,2019,-16,0,0 +2013,6,16,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,845,64,1,1045,40,1,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1123,-6,0,1249,-11,0,0 +2013,7,29,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,-5,0,1740,-22,0,0 +2013,5,25,6,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,76,1,958,65,1,0 +2013,10,17,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13342,General Mitchell International,Milwaukee,WI,1440,26,1,1552,10,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,2015,-4,0,2111,-3,0,0 +2013,6,2,7,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,820,17,1,1624,0,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1123,-1,0,1331,-2,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2050,-5,0,15,-8,0,0 +2013,5,7,2,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,735,1,0,850,4,0,0 +2013,9,7,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1411,-10,0,1547,-15,0,0 +2013,6,14,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1007,0,,1106,0,1,1 +2013,4,26,5,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1415,-2,0,1640,-12,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,-8,0,2314,0,0,0 +2013,7,31,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1257,-1,0,1830,-9,0,0 +2013,7,1,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,37,1,2015,52,1,0 +2013,4,2,2,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,4,0,2020,-15,0,0 +2013,7,28,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,0,0,900,13,0,0 +2013,9,23,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1416,2,0,1550,1,0,0 +2013,8,11,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,22,1,1420,17,1,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-6,0,1619,-14,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,605,6,0,730,10,0,0 +2013,4,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1311,299,1,1437,328,1,0 +2013,4,24,3,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1000,-7,0,1221,-6,0,0 +2013,5,3,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,0,0,1140,-7,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1400,83,1,1655,72,1,0 +2013,7,20,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,-1,0,835,-9,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,33,1,2231,20,1,0 +2013,6,27,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1850,0,0,2045,-8,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2100,42,1,2220,30,1,0 +2013,4,19,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1210,20,1,1255,17,1,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1425,21,1,1557,-5,0,0 +2013,4,3,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2010,-4,0,2130,-8,0,0 +2013,8,3,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1355,-1,0,1435,-8,0,0 +2013,4,11,4,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1110,-5,0,1257,8,0,0 +2013,6,11,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1346,45,1,1540,47,1,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,720,6,0,830,-1,0,0 +2013,9,22,7,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2156,-5,0,2242,-14,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,329,1,1750,339,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1338,1,0,1446,-14,0,0 +2013,4,9,2,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1704,0,,1850,0,1,1 +2013,6,15,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1510,-1,0,1621,1,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,-1,0,1830,-10,0,0 +2013,10,4,5,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,715,-5,0,1010,5,0,0 +2013,5,18,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-3,0,2326,2,0,0 +2013,7,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,-6,0,1855,3,0,0 +2013,5,6,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1500,-5,0,1610,-1,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1637,-3,0,1755,-15,0,0 +2013,7,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1750,4,0,1905,14,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1348,0,0,1505,-2,0,0 +2013,6,11,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,805,-1,0,927,-14,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,184,1,1635,198,1,0 +2013,7,12,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-3,0,2045,-17,0,0 +2013,6,26,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-8,0,1514,-16,0,0 +2013,7,14,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-1,0,2150,-9,0,0 +2013,5,25,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1800,0,0,2020,-10,0,0 +2013,6,15,6,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-9,0,940,-1,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2200,-4,0,2325,-9,0,0 +2013,4,22,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-6,0,604,-24,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2250,0,0,612,2,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-8,0,945,-12,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1510,0,0,1639,-4,0,0 +2013,7,2,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,739,-11,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1040,6,0,1155,-4,0,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1245,-2,0,1415,-11,0,0 +2013,6,16,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,3,0,1358,7,0,0 +2013,5,17,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1200,0,0,1320,-1,0,0 +2013,7,20,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2100,-2,0,510,-14,0,0 +2013,5,10,5,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1305,4,0,1635,5,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1730,-5,0,2127,-17,0,0 +2013,9,29,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,1,0,1918,20,1,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1020,0,0,1218,-5,0,0 +2013,10,4,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-6,0,945,-15,0,0 +2013,4,2,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-9,0,1023,-7,0,0 +2013,8,2,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1525,18,1,1650,7,0,0 +2013,6,29,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1915,31,1,2140,22,1,0 +2013,9,4,3,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-3,0,909,-13,0,0 +2013,4,4,4,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,845,-2,0,1145,-8,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1629,8,0,1919,25,1,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2107,20,1,2147,20,1,0 +2013,8,12,1,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,0,0,1615,23,1,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1910,-6,0,2015,-5,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1835,3,0,2100,63,1,0 +2013,4,23,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,5,0,2040,0,0,0 +2013,6,26,3,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1805,78,1,2045,95,1,0 +2013,6,26,3,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,0,,1952,0,1,1 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1024,1,0,1136,-4,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,710,-6,0,1106,-14,0,0 +2013,5,13,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,2,0,1853,-17,0,0 +2013,10,29,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1924,-5,0,2114,-15,0,0 +2013,10,9,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,730,0,0,1041,-2,0,0 +2013,5,25,6,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1224,-7,0,1342,-15,0,0 +2013,9,27,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,941,18,1,1123,9,0,0 +2013,6,27,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,957,-5,0,1255,-6,0,0 +2013,4,15,1,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1610,-7,0,1855,19,1,0 +2013,10,3,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1553,-1,0,1947,-9,0,0 +2013,8,20,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1133,-5,0,1437,-25,0,0 +2013,9,10,2,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,845,-3,0,1013,-3,0,0 +2013,9,1,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1517,-3,0,1645,70,1,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1730,-2,0,1930,-30,0,0 +2013,9,3,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-4,0,1432,-9,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-4,0,2008,7,0,0 +2013,6,24,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-2,0,1628,-6,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1155,37,1,1435,45,1,0 +2013,10,29,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,0,0,1715,-8,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,-7,0,2317,-16,0,0 +2013,6,30,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,847,6,0,934,12,0,0 +2013,9,3,2,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1645,-1,0,1813,-9,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-2,0,1235,-9,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,186,1,2105,185,1,0 +2013,5,20,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,830,-3,0,1639,0,0,0 +2013,8,30,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-10,0,1005,-5,0,0 +2013,6,12,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1055,125,1,1455,118,1,0 +2013,7,16,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-3,0,1023,-3,0,0 +2013,7,2,2,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,5,0,1910,-3,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1835,-5,0,2110,0,0,0 +2013,7,12,5,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1545,63,1,1929,73,1,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,50,1,2045,14,0,0 +2013,9,15,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1930,3,0,2025,5,0,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,629,-3,0,806,-10,0,0 +2013,7,14,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,20,1,1800,14,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1314,11,0,2146,-5,0,0 +2013,6,7,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,1,0,1115,-12,0,0 +2013,4,14,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,636,-1,0,1222,-18,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1923,17,1,2245,11,0,0 +2013,8,23,5,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-9,0,1213,-13,0,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1850,4,0,2225,6,0,0 +2013,10,7,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2030,-1,0,2158,-7,0,0 +2013,7,23,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1124,39,1,1430,24,1,0 +2013,7,15,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,100,-2,0,557,-5,0,0 +2013,5,19,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1413,129,1,2200,119,1,0 +2013,6,25,2,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,710,-2,0,1005,19,1,0 +2013,4,25,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1920,45,1,2008,36,1,0 +2013,7,5,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,2008,-4,0,2331,-13,0,0 +2013,9,19,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2300,-2,0,3,1,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1909,-5,0,2045,3,0,0 +2013,7,14,7,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1306,-8,0,2042,17,1,0 +2013,7,9,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2155,106,1,2305,103,1,0 +2013,6,2,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,96,1,1710,72,1,0 +2013,7,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,605,0,0,745,-2,0,0 +2013,7,23,2,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1040,160,1,1240,155,1,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,755,-4,0,940,-15,0,0 +2013,4,15,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,38,1,1254,35,1,0 +2013,7,23,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,151,1,2140,126,1,0 +2013,9,13,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,21,1,2213,4,0,0 +2013,7,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1620,29,1,1705,26,1,0 +2013,7,31,3,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,79,1,1541,82,1,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-8,0,1619,-22,0,0 +2013,8,29,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,605,-3,0,700,-25,0,0 +2013,4,24,3,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-8,0,1315,0,1,1 +2013,6,10,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,930,13,0,0 +2013,7,30,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1627,9,0,2032,1,0,0 +2013,10,14,1,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1825,-2,0,2100,8,0,0 +2013,5,15,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,746,-5,0,1042,-1,0,0 +2013,8,30,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2005,-6,0,2024,-3,0,0 +2013,7,1,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1729,120,1,1854,115,1,0 +2013,10,7,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,14,0,1730,72,1,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,710,8,0,1206,21,1,0 +2013,9,10,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,32,1,1914,28,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2035,0,0,2215,-9,0,0 +2013,5,2,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,0,0,905,-6,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,-3,0,2215,-2,0,0 +2013,5,4,6,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1830,122,1,2014,117,1,0 +2013,8,4,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1421,-1,0,1659,-5,0,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,12,0,1730,32,1,0 +2013,10,26,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,655,-2,0,828,-2,0,0 +2013,7,1,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-9,0,1530,-17,0,0 +2013,9,5,4,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1155,-4,0,1435,-2,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1903,-3,0,2002,-21,0,0 +2013,7,4,4,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,30,1,1538,15,1,0 +2013,7,25,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2055,98,1,2230,59,1,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1750,64,1,2315,24,1,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,-5,0,1638,-2,0,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2301,141,1,712,106,1,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1454,-1,0,1739,-8,0,0 +2013,7,8,1,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,0,,1600,0,1,1 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1025,16,1,1135,17,1,0 +2013,10,14,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1043,16,1,1149,20,1,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,-4,0,818,-8,0,0 +2013,4,9,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,731,-3,0,932,-4,0,0 +2013,5,17,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,14,0,1829,8,0,0 +2013,9,20,5,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-5,0,1939,-18,0,0 +2013,6,22,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,-4,0,1815,8,0,0 +2013,7,28,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1800,11,0,1915,-4,0,0 +2013,4,2,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1535,-1,0,1650,-12,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,10,0,1605,22,1,0 +2013,6,7,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2005,6,0,2200,15,1,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1230,-6,0,1410,-13,0,0 +2013,9,22,7,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,4,0,1904,15,1,0 +2013,6,4,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1848,-3,0,2132,-1,0,0 +2013,4,17,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,38,1,2135,32,1,0 +2013,5,5,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1725,-6,0,1855,-11,0,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1940,24,1,2255,11,0,0 +2013,10,6,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,15,1,1445,4,0,0 +2013,6,9,7,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1214,-5,0,1819,-30,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-2,0,2059,-8,0,0 +2013,9,12,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1300,26,1,1415,22,1,0 +2013,7,20,6,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1440,61,1,1655,58,1,0 +2013,5,23,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,24,1,1245,17,1,0 +2013,10,19,6,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1540,1,0,1725,14,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1240,0,0,1410,-9,0,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1320,1,0,1415,-2,0,0 +2013,5,20,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,3,0,1305,5,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1120,0,0,1225,1,0,0 +2013,7,20,6,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1546,-6,0,1729,-17,0,0 +2013,7,9,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,109,1,1710,103,1,0 +2013,8,11,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1150,-10,0,1425,-19,0,0 +2013,8,23,5,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1535,-7,0,1700,-12,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,700,-5,0,935,-19,0,0 +2013,5,7,2,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1239,-7,0,1702,-14,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1755,0,0,2016,-13,0,0 +2013,10,10,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,-4,0,1253,-9,0,0 +2013,10,18,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-3,0,1220,-9,0,0 +2013,9,27,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1048,-9,0,1215,-10,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,2,0,1240,-5,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,34,1,110,32,1,0 +2013,5,9,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1355,-2,0,1542,8,0,0 +2013,8,5,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,645,0,0,805,-7,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1645,276,1,1915,262,1,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,16,1,2300,15,1,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1610,28,1,1733,27,1,0 +2013,7,19,5,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1555,-21,0,0 +2013,4,19,5,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1704,0,,1850,0,1,1 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-4,0,1428,-14,0,0 +2013,7,20,6,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,1305,-8,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,-4,0,1235,-9,0,0 +2013,5,17,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-4,0,1038,-6,0,0 +2013,10,14,1,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1340,401,1,1655,376,1,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1805,11,0,2030,-1,0,0 +2013,4,5,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1337,-4,0,1631,-50,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1045,0,0,1249,-9,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,715,-4,0,1050,-14,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1528,-4,0,1710,8,0,0 +2013,6,23,7,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1430,7,0,1718,17,1,0 +2013,4,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1305,8,0,1625,5,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,133,1,1320,190,1,0 +2013,8,14,3,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,-1,0,1615,5,0,0 +2013,5,27,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-2,0,1600,-13,0,0 +2013,4,20,6,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1519,-8,0,1639,3,0,0 +2013,8,18,7,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,0,0,950,-20,0,0 +2013,4,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1348,-2,0,2018,0,0,0 +2013,8,31,6,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,610,-11,0,916,-18,0,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1130,15,1,1230,17,1,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,14,0,1650,4,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,-3,0,1645,-31,0,0 +2013,4,6,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1300,-2,0,1441,-11,0,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1500,-1,0,1730,-2,0,0 +2013,10,19,6,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1155,-2,0,1320,-4,0,0 +2013,9,12,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,8,0,2210,-3,0,0 +2013,10,30,3,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1644,3,0,1810,8,0,0 +2013,9,28,6,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1930,-3,0,2237,-5,0,0 +2013,5,19,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2145,59,1,105,46,1,0 +2013,10,25,5,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-4,0,1544,8,0,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,8,0,2105,6,0,0 +2013,6,15,6,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2052,39,1,22,24,1,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,907,77,1,1200,39,1,0 +2013,8,4,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1915,9,0,2020,-13,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2155,66,1,2245,59,1,0 +2013,7,21,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1305,-5,0,1440,-16,0,0 +2013,5,16,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,-4,0,937,-6,0,0 +2013,5,10,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-1,0,1245,-13,0,0 +2013,8,28,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-5,0,2057,-1,0,0 +2013,9,7,6,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1435,-8,0,2243,8,0,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1910,-5,0,5,-17,0,0 +2013,6,4,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-6,0,1300,-1,0,0 +2013,6,15,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1437,-11,0,1554,-12,0,0 +2013,6,1,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,740,0,0,905,2,0,0 +2013,7,16,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,54,1,1825,43,1,0 +2013,8,5,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,16,1,1830,27,1,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,825,-1,0,1000,-8,0,0 +2013,10,3,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,914,-8,0,1012,-12,0,0 +2013,10,25,5,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,709,28,1,1520,13,0,0 +2013,8,18,7,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-8,0,1907,-12,0,0 +2013,10,21,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1450,23,1,1825,10,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1905,18,1,2355,5,0,0 +2013,9,21,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1015,0,0,1110,13,0,0 +2013,8,10,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1735,-5,0,1822,-17,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1815,-4,0,2020,-13,0,0 +2013,4,13,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,0,0,2151,-22,0,0 +2013,7,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,935,-3,0,1100,-8,0,0 +2013,4,16,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,29,1,1340,146,1,0 +2013,6,7,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,24,1,1559,11,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,0,,2307,0,1,1 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,941,0,0,1152,20,1,0 +2013,6,1,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,936,-3,0,1033,-6,0,0 +2013,7,13,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,857,1,0,1020,-34,0,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,700,-2,0,1528,-15,0,0 +2013,10,13,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,25,1,1300,21,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,750,0,0,917,-9,0,0 +2013,7,12,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,55,46,1,620,37,1,0 +2013,10,16,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,-2,0,2042,-5,0,0 +2013,9,4,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,40,1,1805,13,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,2,0,950,2,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1431,-3,0,1628,-16,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1004,-2,0,1055,-9,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,915,-1,0,1035,0,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1435,19,1,1705,15,1,0 +2013,4,7,7,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,630,-4,0,730,-9,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1900,21,1,2050,-1,0,0 +2013,9,22,7,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,12,0,1110,-4,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1200,11,0,1630,-2,0,0 +2013,9,3,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1227,-4,0,1420,-14,0,0 +2013,5,8,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,48,1,2105,36,1,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,600,-7,0,852,-32,0,0 +2013,10,21,1,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1020,-2,0,1250,-13,0,0 +2013,10,24,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,910,125,1,1040,118,1,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2040,7,0,2340,-5,0,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1240,0,0,1352,24,1,0 +2013,4,12,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1044,-1,0,1347,-14,0,0 +2013,8,4,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-1,0,2020,12,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1920,-6,0,2302,-24,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,620,-8,0,747,-14,0,0 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1353,-6,0,1509,-16,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,-7,0,1522,-10,0,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,520,-3,0,758,10,0,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1026,5,0,1245,-20,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,-4,0,1543,-9,0,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,705,-8,0,1308,-14,0,0 +2013,8,10,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-1,0,1026,-11,0,0 +2013,9,19,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1847,-1,0,2358,-5,0,0 +2013,7,5,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1115,12,0,1307,-11,0,0 +2013,6,24,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,735,-3,0,805,-11,0,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,-1,0,1955,4,0,0 +2013,9,16,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-11,0,1230,-4,0,0 +2013,4,13,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,3,0,930,2,0,0 +2013,5,3,5,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1035,-4,0,1400,-9,0,0 +2013,8,4,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,910,-7,0,1105,-22,0,0 +2013,8,28,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,755,-2,0,940,-19,0,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1529,72,1,1730,60,1,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1300,1,0,1545,-1,0,0 +2013,7,24,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1521,34,1,1738,29,1,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1536,14,0,1739,12,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,98,1,1037,116,1,0 +2013,10,18,5,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-5,0,1210,-15,0,0 +2013,5,7,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-3,0,2306,-15,0,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1455,7,0,1743,-16,0,0 +2013,10,18,5,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,4,0,1021,-5,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,7,0,2222,-7,0,0 +2013,6,23,7,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2120,42,1,2240,41,1,0 +2013,10,30,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-7,0,1014,10,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,-4,0,2015,-24,0,0 +2013,10,31,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1210,-10,0,1255,10,0,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1455,4,0,1945,0,0,0 +2013,7,17,3,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1125,-11,0,1406,-25,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,9,0,1750,-1,0,0 +2013,4,11,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1239,0,0,1649,-7,0,0 +2013,8,10,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,725,-3,0,929,-9,0,0 +2013,9,14,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-10,0,1040,-9,0,0 +2013,7,10,3,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,834,5,0,1032,-3,0,0 +2013,9,25,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1600,17,1,1630,24,1,0 +2013,5,1,3,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1245,5,0,1553,-3,0,0 +2013,6,20,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,1122,-2,0,0 +2013,6,12,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,8,0,1815,4,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1335,3,0,1444,-2,0,0 +2013,5,23,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,535,60,1,1100,52,1,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1317,12,0,1614,-10,0,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-4,0,828,-5,0,0 +2013,6,15,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,-7,0,2040,-13,0,0 +2013,9,10,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-2,0,1746,1,0,0 +2013,8,18,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,-4,0,1205,-14,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1515,-7,0,2212,-20,0,0 +2013,6,30,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,40,1,1820,23,1,0 +2013,10,17,4,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,1,0,1913,-6,0,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,702,-7,0,955,-2,0,0 +2013,6,24,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1410,-6,0,1444,-1,0,0 +2013,4,4,4,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,859,-9,0,1048,-1,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1750,-1,0,2036,0,0,0 +2013,4,5,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-7,0,959,-15,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,0,0,1150,20,1,0 +2013,9,2,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1218,-7,0,0 +2013,7,3,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,-11,0,2208,-28,0,0 +2013,8,17,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1535,3,0,1810,-6,0,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,-2,0,1145,7,0,0 +2013,10,19,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1001,-5,0,1321,-6,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,945,153,1,1145,149,1,0 +2013,7,19,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,940,7,0,1110,-22,0,0 +2013,4,2,2,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1629,2,0,1822,-15,0,0 +2013,9,29,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,758,21,1,1003,5,0,0 +2013,4,3,3,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1313,-1,0,1541,-12,0,0 +2013,4,7,7,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1320,-1,0,1615,-10,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1618,29,1,1709,23,1,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1910,-3,0,2345,-11,0,0 +2013,4,29,1,YV,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1952,-6,0,2352,-13,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,-2,0,1130,6,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,834,-4,0,1043,-6,0,0 +2013,5,27,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-9,0,1011,-9,0,0 +2013,9,13,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2055,-5,0,2311,-5,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1905,102,1,2020,107,1,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-5,0,2245,-15,0,0 +2013,10,5,6,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1710,-17,0,2146,-14,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1201,136,1,1420,135,1,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,955,36,1,1700,36,1,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1645,66,1,1820,88,1,0 +2013,9,21,6,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1109,-3,0,1220,-1,0,0 +2013,4,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,1,0,1910,-1,0,0 +2013,7,21,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1835,-10,0,2035,-17,0,0 +2013,10,10,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1450,6,0,1615,11,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,5,0,1750,-1,0,0 +2013,4,5,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1528,22,1,1732,-4,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1805,33,1,1935,21,1,0 +2013,8,10,6,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-5,0,718,-8,0,0 +2013,7,30,2,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1825,0,0,1935,-6,0,0 +2013,10,4,5,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1535,172,1,1625,177,1,0 +2013,9,29,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,723,-3,0,1103,-2,0,0 +2013,5,29,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1855,-3,0,2025,-14,0,0 +2013,7,12,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,9,0,1550,84,1,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1530,29,1,1635,48,1,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,910,17,1,1155,19,1,0 +2013,7,23,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1056,14,0,1325,50,1,0 +2013,9,26,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,812,-5,0,930,-4,0,0 +2013,5,8,3,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1700,-4,0,1855,-19,0,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,812,-5,0,909,-5,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,8,0,2250,4,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,-3,0,2241,-10,0,0 +2013,4,25,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,0,0,1028,6,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,11,0,1430,10,0,0 +2013,6,3,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-3,0,935,-17,0,0 +2013,8,5,1,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,62,1,2255,35,1,0 +2013,10,11,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,48,1,1343,50,1,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1929,20,1,2059,15,1,0 +2013,6,22,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,211,-7,0,559,-12,0,0 +2013,5,7,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,845,-2,0,950,-12,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,-1,0,925,1,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1416,10,0,1755,2,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,-2,0,1609,-18,0,0 +2013,10,27,7,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,2,0,1314,-4,0,0 +2013,7,25,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,25,1,1817,20,1,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,-1,0,1709,-15,0,0 +2013,9,15,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1119,-3,0,1420,-2,0,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-3,0,2050,-11,0,0 +2013,8,10,6,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-5,0,855,-11,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1701,-5,0,1722,-19,0,0 +2013,8,8,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,725,21,1,930,24,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,32,1,2359,11,0,0 +2013,6,8,6,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,2,0,1420,-3,0,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,-5,0,2335,-27,0,0 +2013,4,10,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1700,-4,0,1814,-8,0,0 +2013,6,3,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,-6,0,1125,5,0,0 +2013,4,18,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1255,170,1,1430,168,1,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,14635,Southwest Florida International,Fort Myers,FL,1130,-6,0,1704,-14,0,0 +2013,10,5,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-5,0,1050,-9,0,0 +2013,5,22,3,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-8,0,1255,-16,0,0 +2013,8,28,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1740,12,0,1850,9,0,0 +2013,9,9,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,835,-4,0,1205,0,0,0 +2013,9,4,3,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,0,0,1412,-8,0,0 +2013,10,7,1,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,815,1,0,1019,-12,0,0 +2013,6,22,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1050,2,0,1205,-4,0,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-3,0,1058,5,0,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1321,-1,0,1515,-22,0,0 +2013,4,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,835,0,0,1235,-4,0,0 +2013,5,2,4,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1925,151,1,2300,109,1,0 +2013,5,14,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-9,0,1038,-29,0,0 +2013,8,29,4,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1345,0,0,1556,-11,0,0 +2013,9,16,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-7,0,902,-18,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1735,6,0,2125,-3,0,0 +2013,7,17,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1054,-5,0,1309,-14,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,117,1,2133,105,1,0 +2013,4,27,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-8,0,740,-26,0,0 +2013,4,9,2,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,30,1,1012,39,1,0 +2013,6,7,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1440,-8,0,1630,-25,0,0 +2013,4,5,5,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-6,0,1745,1,0,0 +2013,8,18,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,2,0,2300,-4,0,0 +2013,8,11,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1857,4,0,2103,0,0,0 +2013,5,16,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1730,-3,0,1949,1,0,0 +2013,4,14,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1954,55,1,2146,76,1,0 +2013,9,10,2,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1359,-13,0,1511,-32,0,0 +2013,8,6,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1340,-10,0,1600,-22,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,910,-5,0,1029,-8,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,615,0,0,830,24,1,0 +2013,4,22,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1510,-6,0,1835,48,1,0 +2013,10,5,6,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1315,-13,0,0 +2013,10,3,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1155,11,0,1430,6,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-1,0,1150,-10,0,0 +2013,9,2,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,13,0,1315,13,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,88,1,1045,78,1,0 +2013,4,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1930,31,1,2030,31,1,0 +2013,7,17,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,917,-6,0,1451,-25,0,0 +2013,8,16,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2140,5,0,2358,-14,0,0 +2013,4,1,1,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,745,2,0,1045,2,0,0 +2013,9,5,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,725,-3,0,1020,-9,0,0 +2013,7,16,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1838,-8,0,2005,-8,0,0 +2013,4,20,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,26,1,1125,29,1,0 +2013,9,12,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1325,60,1,1450,56,1,0 +2013,8,10,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,-7,0,948,-2,0,0 +2013,4,9,2,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1825,-2,0,1945,-13,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,730,0,,1055,0,1,1 +2013,9,5,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-11,0,820,-21,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,15,1,1259,28,1,0 +2013,7,18,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1129,-10,0,1340,-12,0,0 +2013,10,27,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1445,-1,0,1655,-12,0,0 +2013,4,26,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,2030,12,0,2310,-1,0,0 +2013,10,7,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,9,0,2041,5,0,0 +2013,5,26,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,-3,0,1550,8,0,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1930,-2,0,2030,-7,0,0 +2013,4,8,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-10,0,1800,12,0,0 +2013,5,15,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,821,-14,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,1335,-17,0,0 +2013,6,10,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,21,1,1435,26,1,0 +2013,9,4,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-9,0,1900,2,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1200,0,,1520,0,1,1 +2013,5,10,5,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-5,0,1857,-18,0,0 +2013,9,20,5,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1855,40,1,2123,55,1,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1930,52,1,2249,42,1,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1905,19,1,2240,13,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2159,65,1,2304,50,1,0 +2013,5,19,7,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1230,21,1,1545,37,1,0 +2013,9,30,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1625,0,0,1831,-14,0,0 +2013,9,5,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1524,-5,0,1839,13,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2154,1,0,2309,-8,0,0 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1405,-1,0,1650,-7,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,-1,0,2327,-2,0,0 +2013,6,3,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-10,0,1555,-10,0,0 +2013,10,24,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-2,0,1500,-3,0,0 +2013,6,30,7,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,27,1,1645,21,1,0 +2013,8,5,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,-1,0,2115,1,0,0 +2013,4,22,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2020,160,1,2200,177,1,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,-5,0,2057,-34,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1240,1,0,1405,-29,0,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1710,-11,0,1751,-12,0,0 +2013,9,13,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1123,-1,0,1514,-25,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,6,0,1928,11,0,0 +2013,8,14,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-5,0,1700,-11,0,0 +2013,5,24,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1930,26,1,2139,20,1,0 +2013,7,8,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,-2,0,1420,-2,0,0 +2013,4,27,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,-3,0,1221,-28,0,0 +2013,10,7,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-3,0,1546,-6,0,0 +2013,8,25,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,710,-5,0,941,6,0,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,630,-5,0,813,-14,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-6,0,2036,-26,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,844,-5,0,1011,-5,0,0 +2013,7,5,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1352,-7,0,1438,-20,0,0 +2013,5,19,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1055,-8,0,1315,-13,0,0 +2013,10,19,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1212,-1,0,1447,2,0,0 +2013,10,11,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,105,1,2153,103,1,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,2,0,2300,4,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-7,0,1109,-16,0,0 +2013,10,28,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,1,0,950,-12,0,0 +2013,5,8,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-1,0,1015,-19,0,0 +2013,7,6,6,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1700,19,1,1800,9,0,0 +2013,9,24,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1000,-11,0,1115,-14,0,0 +2013,8,21,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,1507,-6,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1037,118,1,1915,154,1,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1240,11,0,1600,-2,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,655,0,0,819,-10,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,905,-5,0,1255,-4,0,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2220,93,1,110,84,1,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2210,100,1,2328,93,1,0 +2013,10,9,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1047,48,1,1420,52,1,0 +2013,4,5,5,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1825,-1,0,2020,-4,0,0 +2013,10,21,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,5,0,1419,-5,0,0 +2013,6,27,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1350,17,1,1505,13,0,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-2,0,1347,2,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1933,-3,0,2242,-13,0,0 +2013,10,20,7,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,650,-5,0,848,-7,0,0 +2013,4,19,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1855,0,0,1955,-6,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2025,80,1,2150,78,1,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1911,11,0,2242,-2,0,0 +2013,8,4,7,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-5,0,550,9,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,-4,0,1300,14,0,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,73,1,2206,55,1,0 +2013,8,10,6,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1436,24,1,1651,10,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1933,-2,0,2143,-28,0,0 +2013,4,11,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,89,1,1625,83,1,0 +2013,7,9,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13244,Memphis International,Memphis,TN,1733,-5,0,1900,-9,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,800,-8,0,0 +2013,9,24,2,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-10,0,900,-15,0,0 +2013,6,25,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,755,-3,0,915,-9,0,0 +2013,4,28,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,1,0,1557,7,0,0 +2013,10,28,1,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1451,18,1,1609,25,1,0 +2013,10,9,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,-2,0,1738,-11,0,0 +2013,5,11,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1159,-1,0,1255,-12,0,0 +2013,8,1,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,0,0,745,-6,0,0 +2013,7,8,1,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,940,-2,0,1100,-13,0,0 +2013,6,11,2,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1512,95,1,1840,94,1,0 +2013,4,3,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-8,0,1538,-24,0,0 +2013,4,30,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-12,0,1306,-16,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1540,-9,0,1835,-15,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1325,5,0,1530,16,1,0 +2013,6,30,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1142,0,0,1420,-4,0,0 +2013,6,8,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,10,0,2153,15,1,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1510,-1,0,1846,-20,0,0 +2013,9,17,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-2,0,1036,5,0,0 +2013,8,28,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,645,-2,0,1235,5,0,0 +2013,9,1,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,-6,0,1723,-29,0,0 +2013,8,4,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-7,0,732,-14,0,0 +2013,4,8,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,173,1,827,163,1,0 +2013,10,28,1,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-4,0,1857,-17,0,0 +2013,10,14,1,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,811,-6,0,931,-11,0,0 +2013,10,30,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,721,2,0,0 +2013,5,3,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,-4,0,1929,-14,0,0 +2013,6,14,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,0,0,636,8,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1645,0,,1940,0,1,1 +2013,6,6,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-4,0,1744,-17,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,610,-3,0,735,-13,0,0 +2013,8,25,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,0,,1543,0,1,1 +2013,9,30,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1150,0,0,1315,-9,0,0 +2013,10,10,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,810,-1,0,1635,-3,0,0 +2013,9,23,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,730,2,0,900,-1,0,0 +2013,6,29,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,835,-7,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,813,2,0,1042,36,1,0 +2013,4,25,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1452,138,1,1805,129,1,0 +2013,10,16,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1800,-3,0,2045,-5,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1958,61,1,2200,48,1,0 +2013,9,14,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-1,0,1029,-15,0,0 +2013,8,28,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-6,0,609,-6,0,0 +2013,10,13,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-4,0,2000,-11,0,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,-4,0,1130,-16,0,0 +2013,9,13,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1039,78,1,1330,71,1,0 +2013,10,17,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1455,-5,0,1750,-17,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1250,37,1,1703,44,1,0 +2013,9,16,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-8,0,811,-21,0,0 +2013,5,18,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-3,0,1115,-4,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,831,-2,0,1104,10,0,0 +2013,5,2,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-4,0,1252,-12,0,0 +2013,9,10,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1330,-5,0,1505,-1,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,910,14,0,1203,32,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1055,1,0,1208,-3,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1302,42,1,1435,28,1,0 +2013,7,26,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,930,-7,0,1035,18,1,0 +2013,10,2,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,16,1,2039,16,1,0 +2013,7,19,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1646,-1,0,1815,-4,0,0 +2013,4,3,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,820,0,0,955,1,0,0 +2013,4,7,7,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,818,-1,0,1002,17,1,0 +2013,9,3,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1324,-6,0,1534,-8,0,0 +2013,9,22,7,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-5,0,1252,-16,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,9,0,1410,6,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,920,1,0,1020,3,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1155,-6,0,1548,25,1,0 +2013,7,4,4,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1200,-5,0,1500,-13,0,0 +2013,6,23,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1106,119,1,1157,119,1,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1255,1,0,1450,-1,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1455,11,0,1705,27,1,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1933,-1,0,2134,-6,0,0 +2013,4,25,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1641,111,1,1840,125,1,0 +2013,10,30,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1850,21,1,2015,18,1,0 +2013,9,4,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1055,2,0,1220,-5,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,725,0,0,1040,-1,0,0 +2013,4,28,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-9,0,1232,-39,0,0 +2013,10,24,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,3,0,639,-2,0,0 +2013,4,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1940,-3,0,2120,-8,0,0 +2013,10,13,7,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1705,-1,0,1900,2,0,0 +2013,4,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,700,4,0,1000,-6,0,0 +2013,10,22,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-2,0,1025,-22,0,0 +2013,8,13,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,0,0,2133,1,0,0 +2013,6,8,6,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1245,-5,0,1538,-8,0,0 +2013,5,30,4,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,-6,0,2200,-30,0,0 +2013,5,22,3,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1045,8,0,1430,10,0,0 +2013,4,20,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1345,26,1,1510,18,1,0 +2013,7,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,0,0,1729,1,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-3,0,1614,8,0,0 +2013,8,15,4,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,830,-4,0,957,1,0,0 +2013,4,21,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1600,35,1,1816,22,1,0 +2013,6,14,5,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-4,0,912,-3,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1725,28,1,1955,18,1,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,5,0,1830,-2,0,0 +2013,10,20,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1933,0,0,2144,4,0,0 +2013,10,8,2,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1305,-3,0,1410,4,0,0 +2013,6,24,1,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1250,5,0,1458,12,0,0 +2013,10,8,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,0,0,905,-6,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1345,3,0,1512,29,1,0 +2013,9,3,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1110,-5,0,1220,-7,0,0 +2013,10,5,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1357,-3,0,2201,-7,0,0 +2013,6,6,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-11,0,1202,-6,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,-2,0,1944,-14,0,0 +2013,10,3,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,615,-5,0,740,1,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-5,0,1903,-11,0,0 +2013,4,14,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-2,0,1605,3,0,0 +2013,6,20,4,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,11,0,1345,8,0,0 +2013,6,6,4,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,11,0,1838,7,0,0 +2013,10,7,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1106,6,0,1130,17,1,0 +2013,9,28,6,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1535,-2,0,1700,-14,0,0 +2013,4,3,3,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,819,10,0,1058,27,1,0 +2013,10,6,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2105,-3,0,2220,-19,0,0 +2013,6,25,2,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,0,,900,0,1,1 +2013,10,15,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,12,0,1320,19,1,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-6,0,2154,-4,0,0 +2013,5,26,7,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1410,1,0,1650,-12,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,-4,0,2330,-17,0,0 +2013,6,1,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,848,-2,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-2,0,1946,-15,0,0 +2013,10,24,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1854,-1,0,0 +2013,4,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,630,-1,0,740,-5,0,0 +2013,8,10,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-2,0,2108,12,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1000,1,0,1120,6,0,0 +2013,8,27,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1250,-3,0,1530,5,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1455,-4,0,1740,-19,0,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1615,12,0,1810,5,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,-2,0,1300,-8,0,0 +2013,5,21,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-6,0,1455,-13,0,0 +2013,4,22,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,102,1,2338,120,1,0 +2013,9,21,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-5,0,1205,-7,0,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,905,0,0,1030,-2,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,810,7,0,910,9,0,0 +2013,7,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1857,55,1,2211,50,1,0 +2013,6,11,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1455,11,0,1515,1,0,0 +2013,4,11,4,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,0,,922,0,1,1 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,25,1,2030,14,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,950,1,0,1107,2,0,0 +2013,8,6,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1030,1,0,1315,-5,0,0 +2013,8,26,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2042,12,0,454,13,0,0 +2013,4,13,6,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1850,-13,0,1935,-22,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1455,-2,0,1705,5,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,-9,0,1011,-29,0,0 +2013,7,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,119,1,1414,120,1,0 +2013,7,28,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1717,-4,0,2013,-4,0,0 +2013,7,15,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1810,-5,0,2100,-16,0,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,9,0,1935,6,0,0 +2013,10,22,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1924,-10,0,2046,-19,0,0 +2013,6,6,4,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,935,-5,0,1140,-3,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1645,6,0,2020,0,0,0 +2013,8,7,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-3,0,825,-1,0,0 +2013,7,22,1,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,52,1,2025,41,1,0 +2013,4,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,950,-2,0,1323,-3,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,0,0,50,-6,0,0 +2013,7,10,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1755,45,1,1821,29,1,0 +2013,8,14,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1122,-2,0,1708,9,0,0 +2013,5,21,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2036,51,1,2312,100,1,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-1,0,1735,-20,0,0 +2013,4,10,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,77,1,1855,120,1,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2035,1,0,2145,-6,0,0 +2013,4,9,2,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,754,-5,0,1557,-16,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-6,0,2154,-13,0,0 +2013,5,23,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1319,-3,0,1452,-8,0,0 +2013,5,31,5,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2106,16,1,2339,-2,0,0 +2013,5,15,3,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1454,-1,0,1749,-16,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1616,6,0,21,-22,0,0 +2013,4,6,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1645,-1,0,1834,-14,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-16,0,2345,-9,0,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1920,-4,0,2120,-17,0,0 +2013,10,30,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,835,-10,0,1120,-20,0,0 +2013,8,31,6,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1240,-1,0,1422,-1,0,0 +2013,4,6,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-8,0,1155,-2,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1440,2,0,1850,-7,0,0 +2013,9,16,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-2,0,836,-9,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,835,-5,0,1045,-3,0,0 +2013,4,20,6,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-3,0,1346,-14,0,0 +2013,6,9,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1344,30,1,1709,19,1,0 +2013,5,15,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,957,-9,0,1215,-7,0,0 +2013,9,4,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-1,0,1000,1,0,0 +2013,5,28,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1430,-8,0,1659,5,0,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2055,51,1,2221,31,1,0 +2013,8,22,4,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1428,61,1,1600,83,1,0 +2013,6,22,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1310,14,0,1422,10,0,0 +2013,8,17,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-2,0,1506,13,0,0 +2013,6,27,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1157,22,1,1359,-2,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1727,33,1,2024,14,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1935,-2,0,2057,-1,0,0 +2013,8,26,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,648,-1,0,1036,0,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-6,0,2354,-13,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1220,34,1,1946,19,1,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-3,0,1950,14,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,740,2,0,910,6,0,0 +2013,5,22,3,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,941,-10,0,1136,-13,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2250,2,0,2359,-9,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,12,0,2235,16,1,0 +2013,9,1,7,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-7,0,834,-25,0,0 +2013,9,11,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-2,0,1300,-8,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,800,18,1,1025,18,1,0 +2013,6,20,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,0,0,739,-2,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1005,-5,0,1236,-32,0,0 +2013,6,21,5,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1120,0,0,1355,-7,0,0 +2013,7,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1500,3,0,1811,-13,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2113,-4,0,30,-8,0,0 +2013,7,10,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1307,0,0,1800,9,0,0 +2013,10,21,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1615,20,1,2000,2,0,0 +2013,8,5,1,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1540,11,0,1843,11,0,0 +2013,9,15,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,705,-8,0,1030,-17,0,0 +2013,6,3,1,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,20,3,0,813,6,0,0 +2013,10,26,6,OO,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-6,0,1830,-12,0,0 +2013,7,29,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1233,246,1,1324,240,1,0 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1355,11,0,1536,12,0,0 +2013,4,16,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1256,-3,0,1601,-15,0,0 +2013,6,18,2,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,21,1,2200,4,0,0 +2013,9,9,1,WN,10693,Nashville International,Nashville,TN,14747,Seattle/Tacoma International,Seattle,WA,920,-3,0,1210,1,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1820,-4,0,2045,-7,0,0 +2013,6,8,6,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1215,-2,0,1352,-16,0,0 +2013,4,20,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1140,-6,0,1455,7,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,28,1,2240,13,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1009,-12,0,1401,-11,0,0 +2013,10,31,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,929,-6,0,1129,-6,0,0 +2013,8,16,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1359,-2,0,1724,-38,0,0 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2213,-5,0,2305,-10,0,0 +2013,8,6,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,38,1,1828,17,1,0 +2013,7,19,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1825,13,0,1850,22,1,0 +2013,5,26,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-1,0,825,-16,0,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-4,0,2110,12,0,0 +2013,9,28,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,953,6,0,1451,4,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,3,0,1122,-10,0,0 +2013,5,30,4,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1220,-4,0,1500,0,0,0 +2013,9,15,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-3,0,2043,-8,0,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,710,-1,0,915,9,0,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,630,19,1,730,9,0,0 +2013,9,1,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,-5,0,1929,35,1,0 +2013,4,26,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-10,0,1540,35,1,0 +2013,9,18,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1745,54,1,2345,37,1,0 +2013,9,29,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1153,-4,0,1416,-12,0,0 +2013,10,1,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1540,-10,0,1705,-23,0,0 +2013,9,19,4,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,800,-2,0,1045,-15,0,0 +2013,8,14,3,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,803,-5,0,1016,-18,0,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1755,40,1,2035,36,1,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1740,16,1,2305,16,1,0 +2013,9,21,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1007,6,0,1108,14,0,0 +2013,9,22,7,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-1,0,852,6,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1840,61,1,2110,75,1,0 +2013,5,30,4,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,842,-8,0,1020,-13,0,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,32,1,2050,16,1,0 +2013,6,4,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1621,18,1,1920,2,0,0 +2013,6,13,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,38,1,1515,42,1,0 +2013,10,31,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,835,37,1,1115,61,1,0 +2013,4,29,1,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,640,-12,0,922,3,0,0 +2013,9,20,5,DL,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-1,0,905,-28,0,0 +2013,5,14,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,1,0,1900,11,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,5,0,935,-7,0,0 +2013,7,25,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1110,0,0,1222,-5,0,0 +2013,4,26,5,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1100,-8,0,1430,-23,0,0 +2013,4,20,6,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1945,-8,0,2245,-34,0,0 +2013,10,28,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1840,-6,0,2155,-20,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-8,0,1351,0,0,0 +2013,6,27,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1420,-3,0,1814,-2,0,0 +2013,4,25,4,EV,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,801,11,0,903,15,1,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,935,-3,0,1310,-4,0,0 +2013,5,10,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,816,-2,0,937,-4,0,0 +2013,4,7,7,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,0,0,2012,20,1,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1745,79,1,2019,76,1,0 +2013,6,24,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1310,0,,1509,0,1,1 +2013,8,20,2,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,-8,0,518,-15,0,0 +2013,5,8,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1830,5,0,2104,-14,0,0 +2013,6,20,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1518,0,0,1618,-8,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,6,0,2351,7,0,0 +2013,7,29,1,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1110,-2,0,1407,-1,0,0 +2013,7,15,1,OO,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-5,0,1626,21,1,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1810,31,1,1950,13,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-3,0,1828,-7,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1235,-1,0,1255,2,0,0 +2013,6,15,6,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-7,0,1300,-21,0,0 +2013,10,24,4,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,950,3,0,1115,-6,0,0 +2013,7,3,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1029,-9,0,1248,-37,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1614,-3,0,1737,-11,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,1,0,1926,2,0,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1705,46,1,2255,60,1,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-7,0,1154,-21,0,0 +2013,7,12,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1235,-17,0,0 +2013,8,22,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,811,25,1,952,74,1,0 +2013,5,29,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-11,0,1759,12,0,0 +2013,4,8,1,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,814,-4,0,930,-15,0,0 +2013,10,13,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1634,-7,0,1843,-12,0,0 +2013,4,2,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,-2,0,1436,-22,0,0 +2013,6,27,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1553,-8,0,1656,-8,0,0 +2013,10,1,2,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-6,0,922,-25,0,0 +2013,8,19,1,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,38,1,1155,20,1,0 +2013,9,27,5,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1545,24,1,1705,7,0,0 +2013,7,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,-1,0,1234,-12,0,0 +2013,7,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2105,12,0,2225,6,0,0 +2013,8,3,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,-16,0,2052,-7,0,0 +2013,4,19,5,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1735,19,1,1856,20,1,0 +2013,6,11,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1415,5,0,2020,-6,0,0 +2013,8,28,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1117,-7,0,1152,0,0,0 +2013,8,14,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,635,-2,0,828,-10,0,0 +2013,10,5,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,-2,0,1931,14,0,0 +2013,7,16,2,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,712,-9,0,750,-26,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2115,-1,0,2340,-6,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1450,14,0,1604,9,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1100,152,1,1337,151,1,0 +2013,7,21,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,830,1,0,1040,-9,0,0 +2013,7,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,103,1,2322,101,1,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1945,50,1,2135,55,1,0 +2013,6,29,6,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1350,25,1,1515,13,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-6,0,1807,2,0,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-4,0,750,-15,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,16,1,1200,0,0,0 +2013,7,24,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1547,-1,0,1738,-5,0,0 +2013,8,11,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-5,0,1817,-21,0,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,8,0,2126,-2,0,0 +2013,9,3,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,910,-7,0,1055,-24,0,0 +2013,6,17,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,940,-3,0,1109,7,0,0 +2013,5,9,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,21,1,1924,9,0,0 +2013,7,30,2,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-7,0,1210,-19,0,0 +2013,9,10,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,-16,0,1852,-25,0,0 +2013,4,30,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-7,0,2000,-18,0,0 +2013,6,1,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,822,-5,0,0 +2013,7,20,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,14,0,1915,-19,0,0 +2013,9,23,1,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1035,-3,0,1559,-15,0,0 +2013,6,6,4,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,-6,0,2145,-25,0,0 +2013,6,2,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-4,0,2145,23,1,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1315,-4,0,1835,-2,0,0 +2013,4,17,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1450,-5,0,1652,-5,0,0 +2013,8,10,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,838,6,0,1135,3,0,0 +2013,5,4,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2149,23,1,143,15,1,0 +2013,10,7,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1935,43,1,2229,32,1,0 +2013,10,28,1,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1021,5,0,1453,3,0,0 +2013,5,18,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1035,3,0,1600,-8,0,0 +2013,9,8,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1105,-2,0,1205,-3,0,0 +2013,6,26,3,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,75,1,1620,66,1,0 +2013,9,27,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,-8,0,1525,51,1,0 +2013,5,5,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1316,-5,0,1419,-15,0,0 +2013,8,22,4,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,21,1,2308,6,0,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1000,-6,0,1259,-8,0,0 +2013,5,25,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,27,1,1745,9,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,23,1,1947,-1,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2130,11,0,2335,7,0,0 +2013,7,11,4,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1329,-3,0,1925,-12,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1605,1,0,1710,0,0,0 +2013,6,3,1,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-2,0,1644,-25,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,-4,0,735,-1,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1604,10,0,1855,2,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,0,0,2130,-2,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1940,0,0,2145,23,1,0 +2013,9,22,7,9E,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1855,-5,0,2248,-14,0,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,855,6,0,918,-11,0,0 +2013,9,19,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1035,6,0,1830,-5,0,0 +2013,10,6,7,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,4,0,1940,-7,0,0 +2013,9,5,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,953,-5,0,1107,-14,0,0 +2013,8,28,3,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,640,-1,0,910,2,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2159,-5,0,2358,-15,0,0 +2013,4,23,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2140,4,0,2305,-12,0,0 +2013,7,16,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,-6,0,950,-4,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,2,0,1632,2,0,0 +2013,10,25,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1115,-5,0,1235,13,0,0 +2013,9,21,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-5,0,1638,-20,0,0 +2013,7,13,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,1,0,1615,-16,0,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-7,0,1311,-14,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,-6,0,1303,-31,0,0 +2013,8,14,3,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,625,1,0,915,-6,0,0 +2013,5,9,4,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1607,-5,0,1758,-26,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1535,24,1,1745,23,1,0 +2013,9,4,3,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1650,-5,0,2053,-12,0,0 +2013,6,25,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,645,-5,0,735,-7,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-1,0,1513,-5,0,0 +2013,8,9,5,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2010,-6,0,2136,-2,0,0 +2013,9,9,1,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,9,0,1945,4,0,0 +2013,4,6,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,710,20,1,915,32,1,0 +2013,5,16,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1640,2,0,1730,-7,0,0 +2013,4,19,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,651,18,1,1255,29,1,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-1,0,1255,-1,0,0 +2013,10,25,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,755,0,0,930,23,1,0 +2013,7,20,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1750,81,1,1910,65,1,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,7,0,2105,3,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1435,1,0,2140,11,0,0 +2013,8,18,7,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-9,0,1903,-17,0,0 +2013,6,26,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1815,31,1,2110,50,1,0 +2013,10,28,1,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1439,-1,0,1619,-6,0,0 +2013,10,24,4,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,-4,0,542,-15,0,0 +2013,5,12,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2030,-6,0,2205,-20,0,0 +2013,4,3,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,2,0,1445,-16,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,600,2,0,840,-10,0,0 +2013,5,9,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1558,-14,0,0 +2013,8,25,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-6,0,556,-6,0,0 +2013,8,7,3,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1821,44,1,2002,48,1,0 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,2008,-1,0,2331,-3,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1526,-4,0,1654,12,0,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1245,23,1,1545,32,1,0 +2013,7,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,2,0,1135,-8,0,0 +2013,5,3,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,630,-4,0,645,-18,0,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,710,-5,0,1118,-14,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,0,0,1730,-8,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,11,0,829,3,0,0 +2013,5,25,6,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1310,2,0,1600,-1,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2039,29,1,2306,15,1,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1215,-3,0,1315,-1,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2100,22,1,2230,16,1,0 +2013,7,17,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1140,24,1,1428,15,1,0 +2013,5,1,3,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1000,-1,0,1115,9,0,0 +2013,7,20,6,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1710,0,0,1945,6,0,0 +2013,8,2,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-5,0,1105,-10,0,0 +2013,8,8,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1302,-5,0,1415,-5,0,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1135,-6,0,1222,-7,0,0 +2013,4,23,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,5,0,1650,-8,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2045,-1,0,2145,-9,0,0 +2013,4,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,14307,Theodore Francis Green State,Providence,RI,2205,-9,0,2319,-11,0,0 +2013,4,29,1,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1101,-4,0,1534,-12,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1850,-4,0,2003,-10,0,0 +2013,8,24,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,-2,0,1409,-7,0,0 +2013,4,28,7,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1650,29,1,1845,34,1,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1330,10,0,1645,-4,0,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,18,1,1245,7,0,0 +2013,5,25,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1240,-2,0,1409,-6,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1900,7,0,2040,-8,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1210,-7,0,1658,-18,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1830,-1,0,1940,-15,0,0 +2013,7,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,-11,0,1320,-11,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-3,0,1821,-15,0,0 +2013,7,28,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,36,1,1845,32,1,0 +2013,10,28,1,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-3,0,1134,-10,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1759,6,0,1926,-3,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-1,0,1107,0,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2239,44,1,631,22,1,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1850,7,0,2320,-9,0,0 +2013,10,23,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1215,-6,0,1335,-9,0,0 +2013,7,26,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-2,0,2031,-13,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1550,35,1,1710,36,1,0 +2013,6,5,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,12,0,820,33,1,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,28,1,1720,18,1,0 +2013,9,1,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-5,0,1740,-14,0,0 +2013,10,2,3,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,14,0,1905,-1,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1515,-4,0,1735,-9,0,0 +2013,9,4,3,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,2,0,1910,0,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1310,148,1,1755,138,1,0 +2013,7,8,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1243,1,0,1533,1,0,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1945,56,1,2300,57,1,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1140,-1,0,1345,-13,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1944,8,0,2023,-1,0,0 +2013,9,7,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-9,0,1254,-11,0,0 +2013,7,21,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1129,-9,0,1322,-25,0,0 +2013,8,10,6,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,710,-3,0,835,15,1,0 +2013,9,11,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2000,-3,0,2055,-9,0,0 +2013,7,11,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2239,27,1,633,32,1,0 +2013,6,24,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,1,0,1205,-11,0,0 +2013,4,18,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1032,2,0,1318,19,1,0 +2013,10,8,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-3,0,1630,-10,0,0 +2013,4,6,6,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,6,0,1535,-1,0,0 +2013,7,7,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1814,-5,0,2004,-13,0,0 +2013,4,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,99,1,2250,108,1,0 +2013,6,17,1,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,0,0,1645,5,0,0 +2013,9,8,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,747,10,0,935,12,0,0 +2013,10,6,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,-2,0,2039,-9,0,0 +2013,10,5,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1520,-8,0,1900,-4,0,0 +2013,5,24,5,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,938,11,0,1204,8,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1345,12,0,1551,-9,0,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1400,-13,0,1641,-31,0,0 +2013,10,8,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1645,0,0,2156,13,0,0 +2013,9,21,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,13,0,935,2,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,734,0,0,1008,-8,0,0 +2013,6,7,5,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1855,12,0,2000,4,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-10,0,830,-6,0,0 +2013,8,16,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2000,55,1,2125,51,1,0 +2013,7,29,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,-5,0,2113,-11,0,0 +2013,9,4,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,850,33,1,1155,37,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2025,20,1,2155,6,0,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1320,-3,0,1530,-2,0,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1549,-2,0,1724,-18,0,0 +2013,9,13,5,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-6,0,1019,-7,0,0 +2013,10,14,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,735,-4,0,835,-7,0,0 +2013,9,4,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-6,0,1232,-8,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1741,114,1,2059,106,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2145,-1,0,5,1,0,0 +2013,10,30,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1620,-6,0,1745,-20,0,0 +2013,10,4,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,740,0,0,855,-3,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1645,221,1,2020,214,1,0 +2013,4,3,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1123,5,0,1946,13,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,55,1,1640,57,1,0 +2013,6,8,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1840,-1,0,2100,-7,0,0 +2013,9,9,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1528,-15,0,2200,5,0,0 +2013,10,22,2,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,2,0,922,18,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1335,0,0,1520,-5,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2105,13,0,2210,10,0,0 +2013,6,9,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-1,0,1805,-8,0,0 +2013,5,16,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,815,-5,0,1024,-23,0,0 +2013,4,23,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1720,-5,0,1935,-5,0,0 +2013,10,25,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,0,0,1529,-11,0,0 +2013,4,21,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1115,-3,0,1248,-14,0,0 +2013,8,5,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-6,0,900,-17,0,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,837,-2,0,1123,-7,0,0 +2013,9,1,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1420,15,1,1603,0,0,0 +2013,6,21,5,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-9,0,1104,-19,0,0 +2013,9,8,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1156,-2,0,1247,4,0,0 +2013,4,8,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1352,1,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1636,35,1,1805,22,1,0 +2013,7,11,4,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1350,16,1,1910,9,0,0 +2013,10,22,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1726,-3,0,1850,-14,0,0 +2013,6,29,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1841,-10,0,2111,7,0,0 +2013,9,27,5,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-9,0,717,-17,0,0 +2013,5,6,1,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,6,0,940,-5,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,847,-12,0,1054,5,0,0 +2013,10,9,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,840,-6,0,1013,-18,0,0 +2013,6,30,7,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1710,-1,0,1945,-10,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1820,1,0,1945,0,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1320,108,1,1608,98,1,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1755,-4,0,2255,-4,0,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-6,0,840,-4,0,0 +2013,4,11,4,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-7,0,1258,-12,0,0 +2013,4,8,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2235,-8,0,550,-4,0,0 +2013,9,28,6,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1825,-8,0,2040,-9,0,0 +2013,7,31,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,824,-1,0,1144,4,0,0 +2013,7,11,4,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,910,61,1,1255,70,1,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,925,-3,0,1135,-1,0,0 +2013,4,24,3,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-7,0,1535,8,0,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,67,1,1910,57,1,0 +2013,4,12,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1430,37,1,1728,53,1,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,820,7,0,1055,0,0,0 +2013,6,5,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,0,0,1042,-7,0,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,7,0,1935,-2,0,0 +2013,9,13,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,1,0,1125,-3,0,0 +2013,5,30,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,715,-1,0,750,10,0,0 +2013,4,23,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,0,0,1900,-3,0,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1815,41,1,1930,32,1,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2005,-4,0,45,-13,0,0 +2013,4,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2009,-7,0,2110,-19,0,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,-1,0,2235,-15,0,0 +2013,4,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-7,0,848,-14,0,0 +2013,6,15,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1135,-5,0,1312,-11,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,28,1,1000,22,1,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,740,2,0,905,2,0,0 +2013,7,31,3,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1014,-8,0,0 +2013,9,12,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,-4,0,2115,-6,0,0 +2013,7,16,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,-6,0,1811,2,0,0 +2013,4,17,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2005,37,1,2050,59,1,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,945,10,0,1050,3,0,0 +2013,4,2,2,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1945,5,0,2255,-6,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,23,1,1240,7,0,0 +2013,4,4,4,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,2110,-6,0,20,-15,0,0 +2013,4,9,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1305,24,1,1610,18,1,0 +2013,9,29,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-1,0,1158,2,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1910,67,1,2050,59,1,0 +2013,9,6,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,-4,0,1526,-1,0,0 +2013,10,17,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,26,1,2129,34,1,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1709,6,0,1925,-6,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2150,3,0,11,6,0,0 +2013,5,18,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1830,2,0,1930,-4,0,0 +2013,9,17,2,AA,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,955,-3,0,1715,-8,0,0 +2013,9,11,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,10,0,1015,-5,0,0 +2013,10,17,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2153,6,0,550,1,0,0 +2013,7,30,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-4,0,733,-4,0,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1118,2,0,1310,-3,0,0 +2013,8,10,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,5,0,1925,-11,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2035,0,0,2204,-7,0,0 +2013,10,26,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-7,0,756,-7,0,0 +2013,10,9,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1330,-3,0,1435,-1,0,0 +2013,10,23,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1220,30,1,1340,28,1,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1755,80,1,1921,164,1,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,1,0,2238,3,0,0 +2013,7,28,7,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1640,2,0,1849,15,1,0 +2013,10,19,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,-6,0,1910,0,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2159,0,0,2358,-13,0,0 +2013,5,7,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-4,0,1335,-14,0,0 +2013,9,3,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1515,21,1,1904,0,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,915,-7,0,1050,-13,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,5,0,1915,41,1,0 +2013,9,14,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,735,-3,0,1030,-11,0,0 +2013,10,12,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-2,0,1310,-19,0,0 +2013,7,27,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,9,0,802,14,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1119,-3,0,1425,-12,0,0 +2013,4,16,2,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1451,-5,0,1700,4,0,0 +2013,6,11,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1540,45,1,1741,33,1,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,-1,0,1120,-1,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,726,6,0,904,-6,0,0 +2013,5,30,4,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1631,10,0,1823,17,1,0 +2013,6,23,7,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-5,0,720,-4,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,750,-3,0,955,-8,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1750,96,1,1840,88,1,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,130,1,2321,109,1,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,618,-4,0,920,-16,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,853,3,0,1551,-11,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1250,7,0,1405,18,1,0 +2013,6,27,4,EV,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1354,41,1,1708,100,1,0 +2013,10,24,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1840,1,0,2010,-8,0,0 +2013,5,2,4,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-7,0,1500,-37,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1035,0,0,1200,-8,0,0 +2013,8,30,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2122,4,0,49,-14,0,0 +2013,8,8,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,1,0,2011,-9,0,0 +2013,4,6,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,-4,0,1110,26,1,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2145,-1,0,2307,-4,0,0 +2013,8,27,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,12,0,1550,8,0,0 +2013,8,5,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1601,-7,0,1722,-7,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,-5,0,1538,-11,0,0 +2013,4,9,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,909,-14,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1315,35,1,1525,27,1,0 +2013,6,17,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,78,1,1910,133,1,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1935,-1,0,2100,-16,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-4,0,1505,1,0,0 +2013,7,29,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,630,0,0,840,-6,0,0 +2013,7,12,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1122,0,0,1420,7,0,0 +2013,5,12,7,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,605,-5,0,749,-13,0,0 +2013,5,8,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,742,-16,0,0 +2013,7,29,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,550,10,0,710,6,0,0 +2013,9,6,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,-5,0,1511,-17,0,0 +2013,6,28,5,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-1,0,1005,1,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1520,1,0,1725,0,0,0 +2013,6,27,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-2,0,1530,-18,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,-5,0,2155,0,0,0 +2013,8,25,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1255,-3,0,0 +2013,7,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,637,-2,0,935,6,0,0 +2013,9,10,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1125,-9,0,1900,-11,0,0 +2013,10,28,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-2,0,1805,-13,0,0 +2013,9,18,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-5,0,2302,-7,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1130,94,1,1256,94,1,0 +2013,6,4,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2005,6,0,2200,1,0,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-7,0,1335,2,0,0 +2013,9,26,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1505,-7,0,1737,3,0,0 +2013,9,6,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1420,1,0,1535,-1,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1115,-2,0,1321,-15,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,820,-2,0,1300,-19,0,0 +2013,4,23,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1241,30,1,1542,30,1,0 +2013,6,13,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1535,-5,0,1643,-7,0,0 +2013,7,11,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,128,1,2044,110,1,0 +2013,6,2,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-5,0,1750,31,1,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,111,1,1940,108,1,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2155,-6,0,2300,-8,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-2,0,1016,-4,0,0 +2013,4,2,2,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1650,4,0,1820,-5,0,0 +2013,10,2,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1750,-6,0,2108,-11,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,20,1,1855,26,1,0 +2013,9,1,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1657,-8,0,1903,26,1,0 +2013,4,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,-4,0,1008,10,0,0 +2013,4,30,2,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-7,0,2049,-10,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-3,0,1740,-4,0,0 +2013,6,7,5,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,700,46,1,930,65,1,0 +2013,8,20,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,-3,0,720,7,0,0 +2013,8,14,3,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,23,1,1350,21,1,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1005,13,0,1200,11,0,0 +2013,7,20,6,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1252,-10,0,1453,12,0,0 +2013,7,22,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,835,-10,0,958,-20,0,0 +2013,4,9,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,825,8,0,1107,4,0,0 +2013,10,1,2,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2130,-6,0,2223,9,0,0 +2013,7,31,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1444,228,1,1709,226,1,0 +2013,4,9,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1820,4,0,2041,-7,0,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1325,12,0,1640,50,1,0 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,640,-2,0,815,-1,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,950,113,1,1129,98,1,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-3,0,1948,-16,0,0 +2013,5,20,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-4,0,1415,-4,0,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,15,1,505,22,1,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-3,0,2231,-8,0,0 +2013,10,3,4,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-7,0,1950,-16,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2255,15,1,42,8,0,0 +2013,6,4,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,41,1,2100,27,1,0 +2013,10,1,2,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-3,0,1350,0,0,0 +2013,9,19,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,725,-6,0,1020,0,0,0 +2013,4,12,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1502,-7,0,1523,44,1,0 +2013,5,12,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1155,-8,0,1325,-13,0,0 +2013,10,14,1,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,0,0,731,-8,0,0 +2013,4,19,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1950,73,1,2055,70,1,0 +2013,4,3,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2110,7,0,20,5,0,0 +2013,7,9,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-6,0,1430,-8,0,0 +2013,9,9,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,710,-5,0,945,-4,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1830,3,0,2140,-11,0,0 +2013,10,25,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1405,5,0,1415,1,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1645,14,0,1825,14,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,1,0,1420,-3,0,0 +2013,10,11,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1543,77,1,1808,75,1,0 +2013,4,25,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,10,0,2050,-1,0,0 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2155,31,1,50,46,1,0 +2013,4,21,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1655,1,0,1830,12,0,0 +2013,5,14,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1520,8,0,1535,9,0,0 +2013,10,22,2,9E,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1815,23,1,1946,41,1,0 +2013,4,24,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-4,0,1018,1,0,0 +2013,4,19,5,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1958,22,1,2200,17,1,0 +2013,6,27,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1356,45,1,1652,27,1,0 +2013,10,4,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-8,0,1248,9,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,-9,0,2133,-23,0,0 +2013,10,4,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1240,0,0,1545,-2,0,0 +2013,8,28,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-5,0,1030,25,1,0 +2013,8,20,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,655,-1,0,830,-9,0,0 +2013,7,28,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1956,-4,0,2048,-11,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1804,0,0,2015,5,0,0 +2013,6,10,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,-10,0,1040,-6,0,0 +2013,4,23,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,924,-2,0,1053,3,0,0 +2013,10,16,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,640,-7,0,1110,-18,0,0 +2013,4,6,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1225,-6,0,1347,-6,0,0 +2013,9,6,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-2,0,1110,12,0,0 +2013,8,11,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,555,-4,0,846,0,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2219,2,0,2344,-6,0,0 +2013,8,26,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,-3,0,2300,5,0,0 +2013,6,24,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1730,58,1,1825,92,1,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,11,0,1833,10,0,0 +2013,6,1,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,25,1,2239,4,0,0 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1240,7,0,1540,-10,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1230,1,0,1345,3,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,645,-6,0,820,-5,0,0 +2013,6,5,3,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,625,-5,0,934,-7,0,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1529,5,0,1815,11,0,0 +2013,9,18,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1915,49,1,2045,43,1,0 +2013,5,18,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-3,0,904,-23,0,0 +2013,4,12,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,0,0,845,4,0,0 +2013,8,25,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1410,27,1,1535,25,1,0 +2013,8,15,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,610,-5,0,805,-15,0,0 +2013,7,31,3,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,700,-5,0,810,-24,0,0 +2013,4,16,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1936,3,0,2140,-8,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,106,1,1150,107,1,0 +2013,10,14,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,57,1,1527,57,1,0 +2013,6,16,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,2,0,1940,30,1,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,-1,0,1731,-2,0,0 +2013,10,24,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,-8,0,1945,-3,0,0 +2013,9,21,6,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,-8,0,1122,-17,0,0 +2013,6,16,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,715,-2,0,815,-6,0,0 +2013,7,19,5,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,-11,0,1110,-26,0,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1230,11,0,1350,0,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1345,10,0,1450,3,0,0 +2013,7,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1145,11,0,1313,5,0,0 +2013,5,28,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-4,0,1115,-22,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1613,25,1,1722,13,0,0 +2013,10,27,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,-7,0,1942,-16,0,0 +2013,10,26,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,15,1,1310,7,0,0 +2013,5,9,4,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1452,-5,0,1739,-8,0,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1255,-3,0,1435,-14,0,0 +2013,10,22,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,31,1,806,19,1,0 +2013,9,12,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1621,-5,0,1801,-4,0,0 +2013,8,29,4,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1317,22,1,1505,4,0,0 +2013,8,19,1,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,-4,0,1438,-13,0,0 +2013,8,9,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,-2,0,2305,2,0,0 +2013,7,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,700,4,0,815,-4,0,0 +2013,5,18,6,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1130,15,1,1615,5,0,0 +2013,7,8,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2205,-5,0,2330,-15,0,0 +2013,5,15,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1155,-4,0,1505,-18,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,-3,0,2322,11,0,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,-5,0,1120,27,1,0 +2013,7,26,5,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,1046,0,0,0 +2013,10,11,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,32,1,1510,34,1,0 +2013,5,16,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-6,0,1305,-8,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-1,0,1349,11,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,950,3,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,54,1,1925,52,1,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,-1,0,1615,-9,0,0 +2013,7,28,7,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,60,1,2057,60,1,0 +2013,5,22,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,645,-5,0,755,-15,0,0 +2013,9,13,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-1,0,1340,-6,0,0 +2013,9,14,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1305,-2,0,1504,-7,0,0 +2013,4,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2018,-5,0,2102,-15,0,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,935,-3,0,1100,-15,0,0 +2013,10,19,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1800,7,0,1901,-7,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1642,10,0,1753,7,0,0 +2013,9,4,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-9,0,904,-7,0,0 +2013,9,24,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2010,1,0,2159,-7,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2035,-10,0,2250,-14,0,0 +2013,5,18,6,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,706,-5,0,1026,-27,0,0 +2013,9,8,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,920,-3,0,1255,-13,0,0 +2013,5,30,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1345,-8,0,1738,-20,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-9,0,1048,-30,0,0 +2013,5,27,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,2045,-7,0,2321,-3,0,0 +2013,9,2,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2120,85,1,2235,74,1,0 +2013,8,13,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,0,,2102,0,1,1 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,-5,0,1330,1,0,0 +2013,5,6,1,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-8,0,1419,-2,0,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-5,0,758,-13,0,0 +2013,9,5,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,935,0,0,950,-4,0,0 +2013,5,28,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,9,0,2209,19,1,0 +2013,6,10,1,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,18,1,2203,3,0,0 +2013,7,14,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,19,1,1945,12,0,0 +2013,5,27,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1700,2,0,1800,1,0,0 +2013,9,2,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1755,7,0,1901,15,1,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,7,0,1156,-3,0,0 +2013,7,17,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,605,-4,0,807,-5,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1430,-1,0,1630,-6,0,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,759,27,1,936,29,1,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,-5,0,1150,-13,0,0 +2013,10,28,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,-6,0,1530,-2,0,0 +2013,7,18,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1200,52,1,1323,62,1,0 +2013,10,16,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-6,0,2203,-10,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,12,0,1632,-3,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1945,0,0,2135,-20,0,0 +2013,9,24,2,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1630,-9,0,1923,-7,0,0 +2013,7,18,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,1,0,1203,0,0,0 +2013,9,5,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1111,-6,0,1250,-6,0,0 +2013,9,10,2,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,809,-22,0,0 +2013,8,11,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1855,6,0,2025,0,0,0 +2013,7,10,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-8,0,1443,-6,0,0 +2013,6,5,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1225,2,0,1345,-5,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1905,15,1,2035,19,1,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2229,54,1,626,35,1,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,730,-3,0,1011,-24,0,0 +2013,8,29,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1530,14,0,1540,7,0,0 +2013,8,25,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,11,0,1720,4,0,0 +2013,4,9,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1817,-14,0,2336,-30,0,0 +2013,8,15,4,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,620,-1,0,900,4,0,0 +2013,9,1,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2020,-3,0,2140,-14,0,0 +2013,8,12,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,8,0,2110,14,0,0 +2013,8,27,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1350,3,0,1625,-21,0,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2245,-4,0,124,-20,0,0 +2013,7,30,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1730,-4,0,1940,-23,0,0 +2013,6,1,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,-6,0,1903,-17,0,0 +2013,9,14,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1710,-4,0,2045,-23,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2000,84,1,2205,86,1,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,10,0,1519,14,0,0 +2013,5,17,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,5,0,1835,-10,0,0 +2013,6,27,4,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2255,0,0,613,-8,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1915,-3,0,2049,0,1,1 +2013,4,23,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,15,1,1640,23,1,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,1,0,905,3,0,0 +2013,10,12,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1750,40,1,2045,28,1,0 +2013,9,28,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-2,0,959,-1,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,30,1,1825,33,1,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,845,-1,0,1124,-11,0,0 +2013,9,23,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,711,6,0,1051,3,0,0 +2013,10,8,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,701,-6,0,930,-17,0,0 +2013,10,10,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,56,1,1602,50,1,0 +2013,7,30,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1410,15,1,1555,2,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,915,-2,0,0 +2013,4,9,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2015,-10,0,2135,-19,0,0 +2013,9,14,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,705,-9,0,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,929,43,1,1132,31,1,0 +2013,7,8,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1855,4,0,2016,17,1,0 +2013,10,20,7,YV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1520,-7,0,1652,-28,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2225,-8,0,2305,-14,0,0 +2013,5,16,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1329,28,1,1448,8,0,0 +2013,10,26,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-3,0,1855,-5,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,124,1,1130,105,1,0 +2013,7,17,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,2,0,840,-7,0,0 +2013,7,26,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,3,0,1638,8,0,0 +2013,4,9,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,854,-8,0,0 +2013,5,24,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,114,1,2135,142,1,0 +2013,9,7,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1910,-7,0,2040,-23,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2205,82,1,2331,77,1,0 +2013,5,6,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,711,-8,0,900,1,0,0 +2013,9,30,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,645,-7,0,918,-9,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,22,1,1205,21,1,0 +2013,4,8,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1742,24,1,1929,27,1,0 +2013,7,14,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,57,1,1735,62,1,0 +2013,6,1,6,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1049,-7,0,1111,-9,0,0 +2013,6,26,3,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1620,96,1,1923,117,1,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,-4,0,2355,12,0,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1557,2,0,2140,3,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-8,0,1055,-7,0,0 +2013,7,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,720,0,0,925,-10,0,0 +2013,9,9,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,940,-5,0,954,-4,0,0 +2013,4,20,6,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-6,0,1510,2,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,4,0,1004,4,0,0 +2013,4,5,5,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,-1,0,1825,-10,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2105,8,0,2240,-2,0,0 +2013,5,15,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,853,-5,0,1027,8,0,0 +2013,4,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1542,-10,0,1855,-25,0,0 +2013,8,8,4,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,-1,0,2056,-11,0,0 +2013,5,10,5,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,716,-3,0,801,-1,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,129,1,1917,128,1,0 +2013,9,10,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1405,15,1,1715,18,1,0 +2013,9,14,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1545,-4,0,1735,11,0,0 +2013,8,13,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,810,-8,0,835,-18,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1030,1,0,1250,-4,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1550,5,0,1820,7,0,0 +2013,8,16,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1248,-1,0,1415,-9,0,0 +2013,8,24,6,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,-6,0,1914,-19,0,0 +2013,5,14,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,730,28,1,1013,6,0,0 +2013,9,1,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1145,-5,0,1255,-11,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,-2,0,2351,-6,0,0 +2013,10,1,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1455,0,0,1610,2,0,0 +2013,6,9,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1304,57,1,1518,61,1,0 +2013,10,1,2,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1335,-8,0,1750,-22,0,0 +2013,4,18,4,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1140,-6,0,1301,-18,0,0 +2013,9,3,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,725,21,1,745,5,0,0 +2013,9,23,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1950,3,0,2200,-3,0,0 +2013,4,9,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,849,-6,0,1043,-4,0,0 +2013,9,26,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,3,0,1810,-11,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,54,1,2100,149,1,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,3,0,1325,1,0,0 +2013,9,3,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1438,-4,0,1617,-16,0,0 +2013,8,25,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,615,-6,0,725,-8,0,0 +2013,4,5,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,2,0,1630,-8,0,0 +2013,7,2,2,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,810,-3,0,1025,-4,0,0 +2013,10,25,5,YV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1028,-9,0,1214,-16,0,0 +2013,6,2,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,9,0,1555,12,0,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1400,3,0,1508,4,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1915,45,1,2200,69,1,0 +2013,9,21,6,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,2,0,1215,-4,0,0 +2013,4,21,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1715,-4,0,1847,-17,0,0 +2013,5,17,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,289,1,1012,287,1,0 +2013,9,8,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-8,0,1753,-3,0,0 +2013,8,8,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1714,46,1,1821,37,1,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1615,-2,0,1735,-12,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,0,0,1828,34,1,0 +2013,5,13,1,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-10,0,1255,-19,0,0 +2013,4,19,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,1,0,1710,-13,0,0 +2013,5,5,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,31,1,1509,38,1,0 +2013,10,24,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-1,0,730,6,0,0 +2013,8,26,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-2,0,1300,-6,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,845,15,1,1100,-6,0,0 +2013,7,19,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,7,0,1358,6,0,0 +2013,7,14,7,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1204,-2,0,1241,-12,0,0 +2013,8,5,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1515,-3,0,1716,0,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1906,0,0,2226,-15,0,0 +2013,8,8,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-5,0,613,-11,0,0 +2013,8,17,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1540,-3,0,1740,-16,0,0 +2013,4,10,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,0,,2050,0,1,1 +2013,10,20,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1155,-5,0,1805,-24,0,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2204,43,1,617,60,1,0 +2013,4,19,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1825,-8,0,1939,-16,0,0 +2013,10,5,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,851,6,0,1113,-5,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1945,4,0,2125,16,1,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,710,2,0,1028,-13,0,0 +2013,4,21,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,504,0,0,908,-7,0,0 +2013,5,20,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1225,-2,0,1320,15,1,0 +2013,9,17,2,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,42,1,2005,49,1,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,62,1,1035,52,1,0 +2013,6,21,5,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,2,0,945,5,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1001,-2,0,1149,-7,0,0 +2013,6,3,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,55,1,1345,46,1,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2000,12,0,2130,32,1,0 +2013,7,7,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-10,0,1600,-12,0,0 +2013,9,23,1,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1825,-4,0,2100,-16,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,951,123,1,1158,103,1,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,620,59,1,717,76,1,0 +2013,8,13,2,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,800,-13,0,1209,-41,0,0 +2013,4,7,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1110,5,0,1225,-2,0,0 +2013,10,5,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-8,0,1650,-7,0,0 +2013,7,3,3,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,30,-12,0,602,-30,0,0 +2013,8,5,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,-1,0,1543,0,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1506,-2,0,1602,-19,0,0 +2013,9,22,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1502,27,1,1614,24,1,0 +2013,9,4,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,4,0,1530,-11,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-2,0,1310,-13,0,0 +2013,6,16,7,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2339,36,1,500,39,1,0 +2013,4,9,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1325,-1,0,1630,-3,0,0 +2013,7,8,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,-5,0,1612,-7,0,0 +2013,8,29,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1835,24,1,1950,19,1,0 +2013,6,12,3,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,755,81,1,925,81,1,0 +2013,8,11,7,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2050,-3,0,2235,-15,0,0 +2013,5,28,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,0,0,1341,-10,0,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1740,8,0,1830,1,0,0 +2013,6,29,6,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1610,0,0,1822,-1,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1230,6,0,1320,0,0,0 +2013,5,19,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-7,0,915,-12,0,0 +2013,10,31,4,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1455,3,0,1723,-5,0,0 +2013,9,15,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-5,0,1910,-15,0,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1220,-4,0,1525,-6,0,0 +2013,10,1,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1405,7,0,1625,-2,0,0 +2013,7,2,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,4,0,1835,5,0,0 +2013,10,7,1,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1240,5,0,1640,4,0,0 +2013,10,2,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1257,-4,0,1414,-19,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,22,1,1105,7,0,0 +2013,5,11,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,2,0,1019,-14,0,0 +2013,9,11,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,-9,0,928,-5,0,0 +2013,10,28,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,935,-5,0,950,-10,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-6,0,2355,-6,0,0 +2013,9,21,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1050,-6,0,1230,-6,0,0 +2013,9,28,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-8,0,1825,-11,0,0 +2013,10,2,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-1,0,820,-3,0,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2050,4,0,2308,9,0,0 +2013,5,6,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,19,1,1000,8,0,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,550,-5,0,711,-4,0,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,814,-3,0,1051,-10,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,715,26,1,915,24,1,0 +2013,4,8,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1410,-3,0,1722,-14,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1955,-1,0,2255,-3,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1855,-3,0,2120,1,0,0 +2013,8,31,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,814,-5,0,939,-8,0,0 +2013,5,1,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,3,0,1629,1,0,0 +2013,6,24,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1245,-2,0,1344,-4,0,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1945,10,0,2110,-10,0,0 +2013,4,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1855,68,1,2216,67,1,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-2,0,1302,0,0,0 +2013,5,27,1,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,725,-5,0,1021,-15,0,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,902,128,1,1604,119,1,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-5,0,1315,-23,0,0 +2013,9,22,7,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-4,0,2000,-11,0,0 +2013,7,2,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1840,2,0,2005,6,0,0 +2013,5,19,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,80,1,1953,111,1,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,-2,0,1623,12,0,0 +2013,5,2,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-5,0,910,-9,0,0 +2013,10,15,2,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1620,-2,0,1936,-32,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,726,-2,0,918,-11,0,0 +2013,9,25,3,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1225,-4,0,1358,-16,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2206,-8,0,2329,-10,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,9,0,1625,5,0,0 +2013,5,17,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,845,-7,0,1002,-11,0,0 +2013,5,22,3,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1621,3,0,1903,0,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1630,13,0,1945,-4,0,0 +2013,10,27,7,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1825,48,1,2340,8,0,0 +2013,6,16,7,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2103,67,1,2359,58,1,0 +2013,4,15,1,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,-3,0,1335,-5,0,0 +2013,10,2,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1522,-5,0,0 +2013,5,3,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1819,53,1,1904,42,1,0 +2013,7,5,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,-3,0,1730,-12,0,0 +2013,7,30,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1110,-1,0,1240,-8,0,0 +2013,5,7,2,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,835,3,0,1405,-8,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,949,-1,0,1116,-19,0,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,1,0,2309,0,0,0 +2013,5,17,5,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,640,-2,0,926,-5,0,0 +2013,8,8,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,745,-7,0,919,-29,0,0 +2013,5,22,3,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1712,40,1,2029,42,1,0 +2013,6,14,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1100,3,0,1145,-4,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2038,2,0,2200,-2,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,0,0,1555,-1,0,0 +2013,4,17,3,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1122,33,1,1310,25,1,0 +2013,6,28,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,29,1,1640,30,1,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1712,-9,0,2342,-9,0,0 +2013,10,23,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1740,6,0,1810,0,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1644,-1,0,1817,-7,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,-4,0,1720,-19,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1350,24,1,1555,5,0,0 +2013,6,19,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,755,4,0,915,24,1,0 +2013,5,20,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,6,0,1020,-5,0,0 +2013,6,5,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,10,0,1042,6,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,10,0,1005,22,1,0 +2013,8,29,4,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-2,0,500,-7,0,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,753,9,0,1004,-7,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1917,12,0,2329,4,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-8,0,1413,-42,0,0 +2013,6,11,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,40,-7,0,853,15,1,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2005,15,1,45,-3,0,0 +2013,8,11,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2010,14,0,2145,8,0,0 +2013,8,3,6,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,4,0,1735,-14,0,0 +2013,8,18,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1725,-3,0,2020,-11,0,0 +2013,5,15,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,-2,0,750,-16,0,0 +2013,5,16,4,9E,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1941,6,0,2309,3,0,0 +2013,4,9,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1300,8,0,2039,17,1,0 +2013,9,29,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-3,0,2044,-19,0,0 +2013,6,7,5,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,605,0,0,820,-4,0,0 +2013,6,26,3,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1022,1,0,1353,3,0,0 +2013,5,5,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1717,59,1,1959,44,1,0 +2013,4,24,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1750,34,1,1900,27,1,0 +2013,4,4,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1235,-7,0,1552,-6,0,0 +2013,5,21,2,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1755,-5,0,2101,-6,0,0 +2013,9,8,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-5,0,1635,-9,0,0 +2013,6,4,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,0,0,1105,-5,0,0 +2013,9,30,1,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,700,-3,0,805,-21,0,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2200,7,0,602,-11,0,0 +2013,6,6,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,943,3,0,1043,-2,0,0 +2013,9,25,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-6,0,2027,-16,0,0 +2013,8,20,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2339,-3,0,553,14,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2100,76,1,10,103,1,0 +2013,6,20,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-17,0,1150,3,0,0 +2013,6,24,1,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1235,-4,0,1540,11,0,0 +2013,6,17,1,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1705,2,0,1905,24,1,0 +2013,8,31,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1157,-5,0,1242,-5,0,0 +2013,9,27,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-4,0,1315,-26,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,705,1,0,910,-6,0,0 +2013,6,5,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,1,0,1351,6,0,0 +2013,10,2,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,0,0,1135,19,1,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,31,1,45,20,1,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,2,0,1455,-1,0,0 +2013,4,17,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,1,0,1400,-22,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1245,-4,0,1600,-20,0,0 +2013,9,20,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,925,-4,0,1643,-16,0,0 +2013,7,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1652,0,,1756,0,1,1 +2013,9,3,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,914,-5,0,1038,-17,0,0 +2013,6,19,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1712,4,0,1957,17,1,0 +2013,6,5,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-4,0,1305,-7,0,0 +2013,10,3,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-1,0,1604,-3,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,8,0,1415,0,0,0 +2013,4,26,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,715,-15,0,913,8,0,0 +2013,8,24,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1437,-6,0,0 +2013,4,16,2,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,616,16,1,1000,22,1,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,-6,0,2120,-14,0,0 +2013,10,26,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1140,-5,0,1258,-9,0,0 +2013,6,24,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1725,-3,0,2005,31,1,0 +2013,10,4,5,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,-3,0,1955,4,0,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-3,0,1758,33,1,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1806,-6,0,2107,-28,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1340,-6,0,1452,-22,0,0 +2013,5,28,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,-8,0,2040,-15,0,0 +2013,4,16,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,17,1,820,14,0,0 +2013,8,18,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,846,-8,0,1020,-17,0,0 +2013,8,11,7,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1440,32,1,2245,13,0,0 +2013,6,19,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-10,0,930,-19,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1738,27,1,2100,21,1,0 +2013,5,7,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,610,-7,0,855,0,0,0 +2013,7,17,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,845,1,0,1010,1,0,0 +2013,6,15,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1025,-7,0,1400,-11,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-4,0,1738,-10,0,0 +2013,6,17,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,905,0,0,1220,-10,0,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-3,0,1252,7,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2259,0,0,2334,-18,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-3,0,945,1,0,0 +2013,10,4,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-6,0,1905,-17,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1610,0,0,1840,-16,0,0 +2013,7,11,4,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,933,-3,0,1034,4,0,0 +2013,6,7,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-2,0,925,-6,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,0,0,1925,-1,0,0 +2013,7,12,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-4,0,813,-3,0,0 +2013,10,31,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,935,-3,0,1142,-8,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1710,12,0,1915,-9,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2235,-1,0,2358,-13,0,0 +2013,7,30,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1335,-6,0,1455,-12,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1320,0,0,1450,2,0,0 +2013,6,10,1,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,23,1,1716,39,1,0 +2013,10,13,7,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,947,15,1,1321,-1,0,0 +2013,6,2,7,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1821,0,,2159,0,1,1 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1955,9,0,2220,8,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,12,0,1527,17,1,0 +2013,7,21,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-2,0,2031,-6,0,0 +2013,8,29,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,3,0,2130,-4,0,0 +2013,5,11,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,755,3,0,1010,3,0,0 +2013,5,25,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,920,-5,0,1035,-13,0,0 +2013,5,7,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-2,0,2025,16,1,0 +2013,10,13,7,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1528,-5,0,1659,0,0,0 +2013,4,11,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,833,-3,0,1210,-11,0,0 +2013,5,21,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,-3,0,1626,1,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2100,-3,0,2220,2,0,0 +2013,7,5,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,840,-2,0,1000,4,0,0 +2013,5,2,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1810,40,1,2005,30,1,0 +2013,9,21,6,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1237,-7,0,1820,3,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1315,124,1,1530,121,1,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,25,1,1245,21,1,0 +2013,8,16,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-1,0,1230,1,0,0 +2013,6,10,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1024,2,0,1208,-2,0,0 +2013,9,12,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,720,-3,0,830,-3,0,0 +2013,7,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-5,0,936,-14,0,0 +2013,10,13,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-2,0,1848,-9,0,0 +2013,4,8,1,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,736,-4,0,1157,-3,0,0 +2013,7,31,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,720,-2,0,1007,2,0,0 +2013,5,31,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,3,0,839,5,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1027,1,0,1341,-17,0,0 +2013,5,14,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1120,33,1,1716,5,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1745,-2,0,1952,-7,0,0 +2013,9,27,5,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1505,15,1,1810,7,0,0 +2013,8,10,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,-8,0,2152,-3,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,854,-9,0,1122,7,0,0 +2013,10,15,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1419,-3,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,940,0,0,1158,-8,0,0 +2013,6,8,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-4,0,649,-9,0,0 +2013,9,29,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1015,-6,0,1143,-13,0,0 +2013,5,20,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1909,-3,0,2024,3,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1125,-1,0,1310,2,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1111,219,1,1420,221,1,0 +2013,9,29,7,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,825,-3,0,958,-33,0,0 +2013,5,4,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1519,-24,0,0 +2013,10,23,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,745,-5,0,920,-17,0,0 +2013,8,25,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-2,0,813,-7,0,0 +2013,4,27,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-8,0,910,-26,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1440,29,1,1610,18,1,0 +2013,6,3,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-4,0,1236,4,0,0 +2013,4,3,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1210,0,0,1340,-5,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,650,-1,0,935,-11,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1452,-6,0,1709,-25,0,0 +2013,4,24,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,605,-4,0,730,-3,0,0 +2013,9,22,7,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1932,0,0,809,-3,0,0 +2013,4,10,3,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,5,0,1547,-8,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-5,0,1452,16,1,0 +2013,6,1,6,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,1,0,1637,-9,0,0 +2013,7,8,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-2,0,930,-14,0,0 +2013,6,27,4,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1535,12,0,1755,6,0,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,2,0,1103,10,0,0 +2013,5,10,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1251,23,1,1612,18,1,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,835,20,1,0 +2013,5,28,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1800,23,1,1920,8,0,0 +2013,7,2,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-8,0,927,-1,0,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-5,0,1133,-8,0,0 +2013,6,25,2,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1835,20,1,2040,8,0,0 +2013,6,14,5,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1645,-8,0,0 +2013,5,10,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1330,-3,0,1455,-6,0,0 +2013,10,9,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-9,0,905,-21,0,0 +2013,5,17,5,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1536,-4,0,1830,-14,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2118,8,0,2221,5,0,0 +2013,5,1,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,3,0,2041,-4,0,0 +2013,6,10,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,640,7,0,735,-1,0,0 +2013,8,6,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1535,-4,0,1725,-17,0,0 +2013,10,21,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,635,-6,0,755,-7,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-2,0,1150,-6,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1955,5,0,2100,2,0,0 +2013,4,29,1,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,0,0,1455,-12,0,0 +2013,10,11,5,OO,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,1,0,1512,1,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1745,-2,0,2014,-8,0,0 +2013,10,3,4,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1007,-8,0,1040,-11,0,0 +2013,4,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,725,-6,0,905,-23,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1415,5,0,1630,-3,0,0 +2013,4,15,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,605,-19,0,730,-6,0,0 +2013,10,12,6,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,900,3,0,1445,-16,0,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-6,0,1834,-11,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,-5,0,2220,1,0,0 +2013,8,22,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,730,27,1,845,45,1,0 +2013,5,31,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,15,1,937,31,1,0 +2013,8,2,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,714,-1,0,1111,2,0,0 +2013,7,5,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2005,9,0,2053,1,0,0 +2013,10,22,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1140,-3,0,1145,-13,0,0 +2013,6,16,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-5,0,1636,-16,0,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-6,0,700,-3,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1355,9,0,1715,3,0,0 +2013,7,30,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-3,0,2255,9,0,0 +2013,5,26,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,-3,0,1920,-24,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1556,-5,0,1835,21,1,0 +2013,7,18,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1650,-5,0,2021,-16,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,33,1,1420,34,1,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1230,68,1,1720,57,1,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,2,0,1530,0,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1945,-1,0,2159,-8,0,0 +2013,9,6,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,829,-11,0,1051,-23,0,0 +2013,10,6,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1312,1,0,1628,0,0,0 +2013,10,14,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2315,2,0,750,-13,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,-2,0,2234,-16,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1315,24,1,1430,27,1,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1954,-2,0,2112,-3,0,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1436,-3,0,1613,-14,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-7,0,1748,-24,0,0 +2013,8,16,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1425,83,1,1525,80,1,0 +2013,7,23,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1355,7,0,1955,-20,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1645,17,1,2135,23,1,0 +2013,4,17,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1641,-8,0,1936,-18,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1519,-1,0,1750,-9,0,0 +2013,7,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2103,5,0,2222,-4,0,0 +2013,10,16,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,810,21,1,1020,13,0,0 +2013,8,6,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1102,-13,0,0 +2013,6,24,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-1,0,756,11,0,0 +2013,8,11,7,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1155,-1,0,1435,-13,0,0 +2013,8,3,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2051,0,0,2326,-20,0,0 +2013,7,3,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1533,0,,1840,0,1,1 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,-2,0,1055,-18,0,0 +2013,5,5,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2102,28,1,2359,3,0,0 +2013,4,10,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1951,19,1,2056,15,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,645,-2,0,805,-5,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1150,0,0,1245,-5,0,0 +2013,4,22,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1157,21,1,1453,2,0,0 +2013,8,11,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1420,1,0,2015,-11,0,0 +2013,9,8,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,-2,0,1530,-9,0,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1010,-8,0,1126,-15,0,0 +2013,7,22,1,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,7,0,1556,5,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,633,-8,0,909,-25,0,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,24,1,2155,1,0,0 +2013,4,28,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1945,44,1,2213,33,1,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1006,-4,0,1416,-21,0,0 +2013,5,8,3,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,-7,0,1425,-8,0,0 +2013,10,2,3,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-1,0,1945,-10,0,0 +2013,6,2,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,100,1,1853,96,1,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,845,0,0,1105,-7,0,0 +2013,10,29,2,9E,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,645,-3,0,821,-14,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1734,143,1,2343,128,1,0 +2013,7,25,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-2,0,935,14,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,904,-7,0,1021,-11,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-2,0,1625,13,0,0 +2013,10,21,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,935,-5,0,1226,-11,0,0 +2013,8,15,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,924,-5,0,1042,-13,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1445,20,1,1545,20,1,0 +2013,6,13,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-9,0,2304,3,0,0 +2013,9,1,7,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,2022,5,0,2256,5,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,144,1,1526,160,1,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,-4,0,2056,-21,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1430,-2,0,1720,11,0,0 +2013,5,6,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-2,0,1325,-17,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1815,42,1,2020,34,1,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,705,-1,0,825,6,0,0 +2013,4,26,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1055,-2,0,1429,-8,0,0 +2013,8,28,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1323,-12,0,1442,-14,0,0 +2013,10,7,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1110,-6,0,1447,14,0,0 +2013,8,21,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,40,0,0,651,-1,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,1,0,1250,-2,0,0 +2013,7,7,7,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1801,29,1,1957,41,1,0 +2013,6,6,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1825,118,1,2108,113,1,0 +2013,6,27,4,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1146,9,0,1449,3,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,0,0,1125,-1,0,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1355,-4,0,1519,-22,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1715,21,1,2055,8,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1425,-4,0,1759,-14,0,0 +2013,4,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,800,3,0,950,-8,0,0 +2013,10,29,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-5,0,2030,5,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2253,12,0,2357,2,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,12,0,1548,23,1,0 +2013,5,21,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1735,110,1,1840,127,1,0 +2013,6,8,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1737,-1,0,2030,-24,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,-4,0,1733,-18,0,0 +2013,7,31,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,2,0,951,5,0,0 +2013,4,29,1,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-4,0,919,-7,0,0 +2013,10,6,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1513,4,0,1657,-5,0,0 +2013,10,3,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1734,-6,0,1820,-11,0,0 +2013,4,28,7,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1320,11,0,1557,9,0,0 +2013,5,20,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,0,0,1915,-34,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1630,4,0,2325,2,0,0 +2013,8,16,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1014,12,0,1258,3,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,800,3,0,925,-8,0,0 +2013,7,25,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,13,0,1729,18,1,0 +2013,6,20,4,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,625,0,0,1230,-4,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1435,-5,0,1625,3,0,0 +2013,10,15,2,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,904,3,0,1025,-4,0,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,2135,-1,0,2325,-14,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1645,9,0,1820,-2,0,0 +2013,4,2,2,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1729,133,1,1908,109,1,0 +2013,7,2,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1300,-6,0,1445,-17,0,0 +2013,4,21,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1014,-5,0,1144,-3,0,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-5,0,1629,-11,0,0 +2013,8,2,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,600,-3,0,1144,-14,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2020,53,1,2325,57,1,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1440,17,1,1805,4,0,0 +2013,4,5,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1004,-5,0,1220,-10,0,0 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,22,1,1635,8,0,0 +2013,7,4,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,610,-8,0,805,-31,0,0 +2013,7,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,941,3,0,1205,-5,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,1,0,1133,10,0,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,0,0,1330,1,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-3,0,1435,-13,0,0 +2013,7,19,5,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,810,0,0,1055,3,0,0 +2013,6,11,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-2,0,1448,-9,0,0 +2013,8,21,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,-3,0,1520,-1,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2020,16,1,2230,3,0,0 +2013,7,21,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,174,1,1920,187,1,0 +2013,10,17,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,1,0,1420,2,0,0 +2013,8,7,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1855,11,0,2120,7,0,0 +2013,5,23,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1805,90,1,1925,90,1,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,-4,0,2215,2,0,0 +2013,9,20,5,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1925,-4,0,2138,-10,0,0 +2013,7,27,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,26,1,1910,20,1,0 +2013,10,31,4,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,7,0,1735,-4,0,0 +2013,9,6,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,935,-6,0,1226,-8,0,0 +2013,7,25,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,-4,0,1000,-6,0,0 +2013,10,3,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1125,4,0,1222,3,0,0 +2013,10,23,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,0,0,1336,-13,0,0 +2013,6,21,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,0,0,1922,-10,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1855,112,1,2015,108,1,0 +2013,9,3,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2105,-6,0,2301,3,0,0 +2013,9,16,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1105,-4,0,1353,-21,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-6,0,1946,-14,0,0 +2013,8,9,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2045,-5,0,2225,-16,0,0 +2013,10,12,6,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,655,-6,0,1255,-21,0,0 +2013,7,11,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1728,19,1,1925,5,0,0 +2013,8,28,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,910,-9,0,1450,-13,0,0 +2013,5,11,6,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,-3,0,608,-9,0,0 +2013,7,26,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,600,-1,0,725,-10,0,0 +2013,10,19,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1545,-6,0,1705,-19,0,0 +2013,6,15,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,720,0,0,945,-4,0,0 +2013,6,26,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,-3,0,1925,-5,0,0 +2013,7,24,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,610,-4,0,729,4,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2240,-2,0,23,-7,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,828,-2,0,1431,69,1,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-2,0,5,-16,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,14,0,2028,-9,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,745,-1,0,900,-16,0,0 +2013,8,26,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-6,0,1700,-21,0,0 +2013,10,19,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-4,0,1914,-24,0,0 +2013,7,8,1,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-11,0,1027,1,0,0 +2013,8,11,7,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1205,-11,0,2017,-24,0,0 +2013,9,17,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1517,26,1,0 +2013,10,28,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,820,4,0,1645,-14,0,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2110,24,1,2235,32,1,0 +2013,5,28,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1835,15,1,2126,7,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-5,0,2158,-8,0,0 +2013,9,16,1,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1850,65,1,2220,44,1,0 +2013,7,27,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1130,10,0,1150,9,0,0 +2013,6,18,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,-1,0,1705,-1,0,0 +2013,4,29,1,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1850,-3,0,2045,9,0,0 +2013,8,4,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,70,1,2000,56,1,0 +2013,4,23,2,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,2110,29,1,40,22,1,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1825,-8,0,2000,1,0,0 +2013,8,31,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,0,0,1100,-16,0,0 +2013,6,13,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1638,246,1,1830,245,1,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,635,-6,0,1110,-4,0,0 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,955,2,0,1255,-11,0,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,6,0,1315,5,0,0 +2013,5,20,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1330,1,0,1535,-11,0,0 +2013,4,20,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1835,2,0,2000,4,0,0 +2013,5,5,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1305,-6,0,1400,-8,0,0 +2013,6,18,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1210,0,0,1330,-3,0,0 +2013,8,24,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1708,-4,0,1830,-17,0,0 +2013,10,30,3,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1806,-13,0,2051,-7,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1735,45,1,2055,30,1,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1815,0,0,2125,0,0,0 +2013,8,21,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,1,0,1524,-4,0,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,18,1,1313,-2,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-4,0,1215,0,0,0 +2013,5,26,7,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1330,2,0,1607,-5,0,0 +2013,9,4,3,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1254,44,1,1647,52,1,0 +2013,5,24,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2100,24,1,2200,43,1,0 +2013,6,28,5,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,939,18,1,1143,6,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1355,-2,0,1600,-10,0,0 +2013,5,14,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1936,-10,0,2140,-28,0,0 +2013,4,5,5,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,542,-2,0,732,-23,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1700,33,1,1820,38,1,0 +2013,10,30,3,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-3,0,2005,-12,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2035,-9,0,5,-14,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,810,-5,0,1116,-18,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,-6,0,1106,-14,0,0 +2013,9,27,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,15,1,2230,18,1,0 +2013,5,22,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1125,23,1,1327,21,1,0 +2013,10,4,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1555,-12,0,1635,-1,0,0 +2013,9,14,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-6,0,1229,-8,0,0 +2013,6,3,1,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2000,-5,0,1130,-22,0,0 +2013,6,5,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,2005,41,1,2100,37,1,0 +2013,5,2,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,137,1,2239,114,1,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2100,6,0,2300,-2,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-4,0,1401,9,0,0 +2013,7,25,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,1003,1,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-3,0,1104,-4,0,0 +2013,7,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,15,1,1144,-1,0,0 +2013,10,3,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1400,-12,0,1545,64,1,0 +2013,5,1,3,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1435,-6,0,2240,-12,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1640,1,0,1914,-6,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,2146,-7,0,2322,-22,0,0 +2013,4,2,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1115,-6,0,1314,-15,0,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,900,-5,0,1142,-29,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1530,3,0,1625,-5,0,0 +2013,8,21,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1310,3,0,1400,-6,0,0 +2013,5,28,2,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,835,-6,0,1220,-13,0,0 +2013,10,17,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1855,16,1,2020,3,0,0 +2013,4,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2040,25,1,2139,20,1,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-3,0,850,-11,0,0 +2013,6,5,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,2,0,1315,-5,0,0 +2013,8,20,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2311,-5,0,700,4,0,0 +2013,5,30,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,12,0,1025,6,0,0 +2013,6,12,3,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1724,3,0,2020,7,0,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,952,32,1,1230,12,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1820,4,0,1956,-4,0,0 +2013,10,18,5,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-9,0,1757,-6,0,0 +2013,8,29,4,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-7,0,1705,-21,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,845,3,0,945,-7,0,0 +2013,5,7,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-7,0,754,-11,0,0 +2013,7,8,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1150,-9,0,1250,-5,0,0 +2013,5,22,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-2,0,1523,0,0,0 +2013,9,12,4,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,0,0,1730,3,0,0 +2013,4,15,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2155,56,1,2320,43,1,0 +2013,4,22,1,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,-7,0,1357,16,1,0 +2013,10,25,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1809,3,0,1931,-4,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,6,0,945,5,0,0 +2013,8,2,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,30,1,2020,31,1,0 +2013,4,12,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-5,0,1110,2,0,0 +2013,9,4,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1310,-8,0,1325,-7,0,0 +2013,4,15,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-7,0,1955,0,0,0 +2013,9,19,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1945,-2,0,2100,-12,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,12,0,1600,21,1,0 +2013,8,19,1,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-2,0,2015,5,0,0 +2013,10,14,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,810,3,0,0 +2013,10,21,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,1250,-7,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,1,0,1632,-8,0,0 +2013,6,7,5,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1153,-8,0,1234,-3,0,0 +2013,10,16,3,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-1,0,1556,-7,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,725,0,0,905,-13,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,-2,0,2128,12,0,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-3,0,1410,3,0,0 +2013,4,8,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,48,1,1435,23,1,0 +2013,8,7,3,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-4,0,1510,-9,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-3,0,948,7,0,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1350,51,1,1505,45,1,0 +2013,4,21,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1505,-5,0,1630,6,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1223,5,0,1414,-9,0,0 +2013,8,1,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1158,-5,0,1440,59,1,0 +2013,7,26,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,19,1,1315,17,1,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-6,0,1759,-5,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1645,2,0,2006,4,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,0,0,1558,8,0,0 +2013,8,7,3,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,0,,1315,0,1,1 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1530,-3,0,1800,-9,0,0 +2013,10,31,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,45,1,2110,24,1,0 +2013,5,18,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,5,0,1630,-10,0,0 +2013,10,23,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1232,-3,0,0 +2013,7,21,7,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,97,1,2142,72,1,0 +2013,4,26,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-5,0,541,-1,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-1,0,2110,-8,0,0 +2013,7,11,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-7,0,1322,-9,0,0 +2013,9,23,1,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1200,82,1,1319,91,1,0 +2013,6,19,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1110,21,1,1310,25,1,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1256,-3,0,1421,-26,0,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,2,0,1735,-4,0,0 +2013,4,29,1,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1140,5,0,1650,16,1,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2123,42,1,2242,29,1,0 +2013,7,31,3,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,945,-7,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,900,9,0,1105,4,0,0 +2013,5,10,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,940,1,0,1236,-10,0,0 +2013,7,5,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1155,1,0,1255,-2,0,0 +2013,8,11,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,-7,0,1940,-5,0,0 +2013,8,30,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-7,0,1245,-15,0,0 +2013,8,26,1,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-6,0,900,-11,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,9,0,1740,5,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,700,-1,0,850,-2,0,0 +2013,5,12,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2020,0,0,2332,-9,0,0 +2013,8,5,1,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,-8,0,2115,3,0,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1955,131,1,2105,159,1,0 +2013,9,16,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,0,0,1230,10,0,0 +2013,8,9,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,0,0,1453,-11,0,0 +2013,4,11,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,23,1,1905,26,1,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,98,1,1745,81,1,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1500,196,1,1710,189,1,0 +2013,7,20,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-8,0,1208,-9,0,0 +2013,10,30,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,-10,0,2145,3,0,0 +2013,10,27,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,730,4,0,745,14,0,0 +2013,10,12,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1100,18,1,1411,-6,0,0 +2013,8,3,6,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1402,-7,0,1515,-20,0,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,5,0,1516,4,0,0 +2013,10,25,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-5,0,837,-5,0,0 +2013,9,1,7,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,-8,0,1602,-4,0,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1613,68,1,2216,47,1,0 +2013,5,27,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-3,0,1943,-2,0,0 +2013,4,4,4,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-4,0,2010,-15,0,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,8,0,2250,-3,0,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2056,-6,0,2226,-9,0,0 +2013,10,14,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,2,0,910,69,1,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,1,0,910,-5,0,0 +2013,7,29,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,-6,0,1840,-11,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2030,46,1,2200,44,1,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,1,0,2100,-5,0,0 +2013,6,27,4,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1722,-2,0,2044,-10,0,0 +2013,10,2,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-5,0,2051,-15,0,0 +2013,6,30,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-1,0,1000,-10,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1010,-4,0,1120,4,0,0 +2013,10,26,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,945,0,0,1100,-5,0,0 +2013,4,14,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,600,18,1,905,25,1,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1845,11,0,2159,5,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1505,-1,0,1643,-4,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1430,5,0,1742,-1,0,0 +2013,4,11,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,1,0,1645,-4,0,0 +2013,5,22,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,2,0,740,-4,0,0 +2013,7,13,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1247,4,0,0 +2013,6,29,6,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,26,1,1050,27,1,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,-4,0,1725,-10,0,0 +2013,10,23,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,3,0,1643,3,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1944,-3,0,2255,9,0,0 +2013,4,23,2,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1410,-4,0,1546,0,0,0 +2013,4,29,1,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1005,-10,0,1325,-18,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2105,124,1,2210,119,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1430,11,0,1755,-2,0,0 +2013,8,30,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,605,-3,0,740,-12,0,0 +2013,6,30,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-7,0,1254,-12,0,0 +2013,7,17,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1349,8,0,1455,16,1,0 +2013,10,3,4,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1748,-4,0,2316,-17,0,0 +2013,6,13,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1220,-2,0,1445,1,0,0 +2013,7,17,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,651,8,0,905,-17,0,0 +2013,8,31,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1120,5,0,1320,12,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,27,1,1905,13,0,0 +2013,8,1,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,620,-5,0,750,-2,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,5,0,1909,-5,0,0 +2013,9,25,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,-7,0,2105,-5,0,0 +2013,5,2,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,14,0,2103,8,0,0 +2013,6,11,2,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1240,49,1,1655,41,1,0 +2013,10,27,7,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,5,0,1846,-6,0,0 +2013,5,15,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1100,156,1,1340,143,1,0 +2013,6,7,5,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1845,-4,0,2155,18,1,0 +2013,8,11,7,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,835,-5,0,952,-8,0,0 +2013,8,19,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-6,0,1804,-12,0,0 +2013,4,1,1,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1655,-3,0,2027,11,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,-1,0,1209,4,0,0 +2013,5,21,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1210,0,0,1230,12,0,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,5,0,1810,-7,0,0 +2013,7,1,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-8,0,746,-12,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,843,12,0,957,13,0,0 +2013,8,8,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,0,0,1308,0,0,0 +2013,9,19,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1940,41,1,2035,61,1,0 +2013,9,14,6,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1045,-8,0,1440,-11,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,721,-5,0,1143,-29,0,0 +2013,9,16,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,-9,0,1512,-14,0,0 +2013,6,25,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,29,1,2103,27,1,0 +2013,9,13,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1220,22,1,1325,12,0,0 +2013,6,12,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,-7,0,813,-8,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,12,0,1618,7,0,0 +2013,9,27,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,-6,0,828,-9,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,-5,0,55,-3,0,0 +2013,7,25,4,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,624,19,1,1450,40,1,0 +2013,7,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1235,-5,0,1345,-6,0,0 +2013,7,28,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-5,0,812,-9,0,0 +2013,7,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1405,-7,0,1455,-16,0,0 +2013,5,7,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1315,-8,0,1605,-25,0,0 +2013,6,16,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,8,0,1406,2,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,56,1,1950,41,1,0 +2013,5,10,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,-3,0,1035,-20,0,0 +2013,10,10,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1438,-7,0,1602,-13,0,0 +2013,4,4,4,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,630,-8,0,709,-18,0,0 +2013,7,19,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,8,0,1355,8,0,0 +2013,10,28,1,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1216,31,1,2035,18,1,0 +2013,8,18,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1356,13,0,1640,7,0,0 +2013,7,27,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1450,21,1,1555,26,1,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-2,0,1023,-5,0,0 +2013,4,16,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-3,0,1744,-14,0,0 +2013,9,5,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,750,-4,0,1309,-9,0,0 +2013,5,6,1,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,2000,-4,0,2245,-17,0,0 +2013,4,18,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,0,0,850,-6,0,0 +2013,9,8,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1747,-1,0,1935,-10,0,0 +2013,8,3,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2129,11,0,2328,-14,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1230,-2,0,2021,20,1,0 +2013,7,23,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,835,-5,0,1440,-22,0,0 +2013,9,26,4,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1700,3,0,1840,9,0,0 +2013,8,17,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1255,-6,0,1427,-22,0,0 +2013,8,15,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,923,23,1,1026,29,1,0 +2013,6,2,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,1020,-13,0,1230,-3,0,0 +2013,10,13,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2010,11,0,2105,3,0,0 +2013,6,27,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,78,1,2040,123,1,0 +2013,6,19,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,30,1,1729,29,1,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,18,1,1805,8,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,1,0,2235,-4,0,0 +2013,4,15,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1415,4,0,1950,3,0,0 +2013,10,2,3,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-3,0,1720,-8,0,0 +2013,4,4,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1717,-4,0,1908,19,1,0 +2013,5,17,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,12,0,519,22,1,0 +2013,8,5,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,930,-2,0,1500,-5,0,0 +2013,5,30,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,0,,1330,0,1,1 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,7,0,1915,0,0,0 +2013,6,9,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-1,0,1045,-14,0,0 +2013,10,10,4,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1822,-10,0,1925,21,1,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,9,0,1622,3,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,-5,0,1521,-4,0,0 +2013,8,4,7,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1055,51,1,1335,43,1,0 +2013,5,11,6,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1645,17,1,1740,4,0,0 +2013,10,1,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-7,0,2214,-32,0,0 +2013,5,30,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1331,-12,0,1446,17,1,0 +2013,9,23,1,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,840,4,0,1025,7,0,0 +2013,6,18,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,31,1,2055,54,1,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,19,1,1747,8,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1710,15,1,1925,16,1,0 +2013,8,14,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,5,0,1928,2,0,0 +2013,7,17,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-1,0,1614,-3,0,0 +2013,6,7,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,-1,0,2104,-13,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1510,27,1,1610,21,1,0 +2013,5,30,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,0,,1235,0,1,1 +2013,4,24,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,13,0,606,-12,0,0 +2013,8,15,4,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1130,-6,0,1245,-23,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1337,-5,0,1809,-21,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,97,1,1820,65,1,0 +2013,4,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1525,-1,0,1700,-15,0,0 +2013,8,21,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1655,-4,0,1822,-1,0,0 +2013,9,24,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1452,-2,0,1635,-8,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-7,0,2043,-25,0,0 +2013,8,30,5,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,835,-8,0,952,-4,0,0 +2013,5,18,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,924,-2,0,1050,-19,0,0 +2013,10,2,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,730,27,1,910,37,1,0 +2013,8,5,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,530,-4,0,705,-14,0,0 +2013,7,3,3,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1935,3,0,2319,-3,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1345,0,,1605,0,1,1 +2013,7,3,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-4,0,1049,-3,0,0 +2013,8,29,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-3,0,835,-8,0,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1535,46,1,1655,37,1,0 +2013,9,3,2,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1150,1,0,1335,-6,0,0 +2013,9,9,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1830,8,0,2030,1,0,0 +2013,4,2,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,-9,0,2044,-18,0,0 +2013,8,24,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1755,-2,0,1936,25,1,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1746,3,0,2025,-10,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,13,0,1630,5,0,0 +2013,9,23,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,655,-1,0,925,-5,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1900,17,1,2225,29,1,0 +2013,7,11,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2050,6,0,2215,2,0,0 +2013,7,16,2,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1019,10,0,1440,12,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1856,-2,0,2143,-10,0,0 +2013,6,11,2,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-6,0,1305,-17,0,0 +2013,10,21,1,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1750,7,0,1855,-14,0,0 +2013,9,13,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,-5,0,1558,-7,0,0 +2013,9,12,4,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,725,-7,0,1022,-9,0,0 +2013,5,22,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,2016,-3,0,2128,-18,0,0 +2013,9,16,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1720,-1,0,1840,-4,0,0 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1520,-8,0,1640,-13,0,0 +2013,10,13,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-8,0,1630,-2,0,0 +2013,6,30,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1735,8,0,2045,5,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,730,-3,0,830,-2,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1200,6,0,1449,-18,0,0 +2013,5,6,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,5,0,1938,0,1,1 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2036,29,1,2204,20,1,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1720,0,0,1859,-13,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,20,1,1040,43,1,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1815,63,1,2130,78,1,0 +2013,10,12,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1302,-5,0,1604,3,0,0 +2013,7,7,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,703,-3,0,728,-18,0,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,62,1,2155,58,1,0 +2013,4,29,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1515,-7,0,1755,-9,0,0 +2013,10,29,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,750,-1,0,840,-6,0,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,177,1,2321,153,1,0 +2013,6,11,2,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,645,-2,0,850,-12,0,0 +2013,9,30,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1245,-5,0,1411,-9,0,0 +2013,7,17,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-8,0,820,-19,0,0 +2013,8,25,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1516,-7,0,1612,-4,0,0 +2013,8,26,1,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,-4,0,1915,7,0,0 +2013,5,7,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,-2,0,2210,-13,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1626,-3,0,1915,-11,0,0 +2013,4,3,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,-4,0,2040,-15,0,0 +2013,4,15,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2130,1,0,2305,5,0,0 +2013,7,21,7,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-13,0,1245,-24,0,0 +2013,4,14,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,618,3,0,1433,-8,0,0 +2013,9,30,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,945,-4,0,1207,-20,0,0 +2013,6,26,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11042,Cleveland-Hopkins International,Cleveland,OH,2300,3,0,620,-23,0,0 +2013,8,16,5,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2005,21,1,2225,14,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2130,-1,0,2340,-16,0,0 +2013,5,16,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,2059,12,0,2344,0,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1311,12,0,1650,6,0,0 +2013,8,2,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,48,1,1319,24,1,0 +2013,4,28,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-10,0,2047,-6,0,0 +2013,7,26,5,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1735,15,1,2030,4,0,0 +2013,5,28,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,-1,0,1510,-8,0,0 +2013,10,25,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1950,-8,0,2055,-23,0,0 +2013,7,5,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,-4,0,1857,-3,0,0 +2013,7,21,7,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,40,1,1735,26,1,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1958,3,0,2323,-16,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1630,7,0,1745,82,1,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,26,1,2127,24,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-1,0,826,-23,0,0 +2013,9,6,5,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,-7,0,1735,-13,0,0 +2013,4,9,2,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,855,384,1,1109,364,1,0 +2013,5,24,5,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1945,90,1,2223,81,1,0 +2013,7,23,2,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,6,0,1421,18,1,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,732,-4,0,906,-22,0,0 +2013,10,18,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-5,0,830,-14,0,0 +2013,7,24,3,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,8,0,1848,-6,0,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1455,13,0,1600,9,0,0 +2013,5,24,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,1020,-9,0,1230,-4,0,0 +2013,7,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,850,20,1,1001,-3,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,600,-1,0,820,-6,0,0 +2013,10,18,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-7,0,1402,-18,0,0 +2013,9,21,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1710,45,1,1759,56,1,0 +2013,6,11,2,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-1,0,1610,5,0,0 +2013,6,5,3,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1731,-9,0,1907,-14,0,0 +2013,9,9,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-9,0,2030,-7,0,0 +2013,5,24,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,6,0,624,-12,0,0 +2013,10,6,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1129,24,1,1400,7,0,0 +2013,8,3,6,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1210,26,1,1535,31,1,0 +2013,7,14,7,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1500,0,0,1626,-19,0,0 +2013,8,15,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1420,10,0,1810,-14,0,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,0,0,715,-5,0,0 +2013,10,21,1,UA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,700,0,0,905,-2,0,0 +2013,8,20,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,15,1,1715,11,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,8,0,1430,4,0,0 +2013,7,19,5,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,0,0,1040,2,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1115,-2,0,1225,-8,0,0 +2013,7,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,-2,0,2300,-7,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,903,-5,0,1112,-5,0,0 +2013,4,7,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1314,6,0,1535,4,0,0 +2013,6,20,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,27,1,1712,29,1,0 +2013,10,19,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1520,3,0,1635,-8,0,0 +2013,7,31,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,18,1,1555,19,1,0 +2013,8,7,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1545,53,1,1640,43,1,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1755,0,0,1948,-4,0,0 +2013,4,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1225,-5,0,1406,0,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1938,-8,0,2229,-12,0,0 +2013,8,26,1,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-2,0,1625,15,1,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-4,0,1325,-15,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,21,1,2357,6,0,0 +2013,4,17,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1705,-4,0,1755,-16,0,0 +2013,5,12,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,556,-6,0,1159,-17,0,0 +2013,10,27,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-2,0,925,-8,0,0 +2013,4,10,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2317,-1,0,511,-8,0,0 +2013,7,9,2,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1800,144,1,1920,136,1,0 +2013,4,3,3,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,-8,0,1425,-15,0,0 +2013,8,30,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-5,0,1420,-8,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1520,-1,0,1805,21,1,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1909,15,1,2128,22,1,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,840,0,0,1450,-3,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,-2,0,1015,-6,0,0 +2013,6,3,1,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1729,16,1,2105,7,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,-7,0,1805,-15,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,0,0,2045,-14,0,0 +2013,9,27,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1845,-5,0,2025,-14,0,0 +2013,4,13,6,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,615,-5,0,804,-11,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,855,15,1,1040,7,0,0 +2013,7,22,1,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1720,-3,0,1901,17,1,0 +2013,6,27,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,9,0,1800,17,1,0 +2013,8,28,3,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-4,0,1035,-8,0,0 +2013,8,27,2,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1344,-6,0,1519,-7,0,0 +2013,4,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,840,-9,0,1035,-26,0,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,1,0,930,4,0,0 +2013,5,2,4,9E,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,10,0,1333,6,0,0 +2013,4,5,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1150,-12,0,1419,-17,0,0 +2013,6,12,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,2,0,720,-6,0,0 +2013,6,13,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1235,15,1,1554,3,0,0 +2013,5,4,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,909,0,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1941,-4,0,2117,-15,0,0 +2013,5,31,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1659,-3,0,58,-18,0,0 +2013,7,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1430,8,0,1559,2,0,0 +2013,7,2,2,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1726,-4,0,1936,-17,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,2,0,1946,-12,0,0 +2013,6,3,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,0,0,1148,4,0,0 +2013,6,23,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,10,0,830,-11,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,1,0,1030,-7,0,0 +2013,9,26,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,623,1,0,945,-13,0,0 +2013,9,13,5,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1409,-5,0,1505,2,0,0 +2013,5,1,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1911,-4,0,2149,1,0,0 +2013,10,22,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-8,0,843,-17,0,0 +2013,9,17,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,748,-11,0,1033,4,0,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,4,0,1805,5,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1933,1,0,2128,-11,0,0 +2013,7,16,2,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1835,0,0,2101,-19,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,935,2,0,1620,-19,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,852,8,0,1025,-7,0,0 +2013,10,28,1,EV,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1548,-4,0,1734,-16,0,0 +2013,6,14,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,-3,0,2000,2,0,0 +2013,9,22,7,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2015,28,1,2105,30,1,0 +2013,5,3,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,-2,0,146,-24,0,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1555,-3,0,2131,-1,0,0 +2013,9,4,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,-8,0,1445,-8,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1512,101,1,1754,155,1,0 +2013,4,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1115,-12,0,1241,-20,0,0 +2013,9,28,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,1,0,2111,-37,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1905,-3,0,2035,-19,0,0 +2013,7,24,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,-3,0,1630,-26,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1635,8,0,1755,0,0,0 +2013,4,11,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,0,0,1255,29,1,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2155,-4,0,2347,-21,0,0 +2013,8,14,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-10,0,1345,-12,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1347,-6,0,1417,-18,0,0 +2013,8,30,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-7,0,720,-20,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1736,17,1,2134,-19,0,0 +2013,5,16,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,650,79,1,810,85,1,0 +2013,10,31,4,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1520,83,1,1650,100,1,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-8,0,1800,-17,0,0 +2013,8,11,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-4,0,2200,-16,0,0 +2013,10,1,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1455,6,0,1630,3,0,0 +2013,6,20,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1617,-10,0,0 +2013,5,10,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1130,-8,0,1152,-21,0,0 +2013,7,27,6,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,-11,0,1629,-15,0,0 +2013,6,1,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1412,10,0,0 +2013,7,23,2,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,29,1,1840,26,1,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1655,51,1,2000,40,1,0 +2013,6,18,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1658,-8,0,1757,3,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1440,-3,0,1735,-20,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1255,0,0,1525,2,0,0 +2013,7,24,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,6,0,1635,10,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1433,3,0,1732,-28,0,0 +2013,6,14,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,-5,0,1917,9,0,0 +2013,4,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1155,23,1,1505,23,1,0 +2013,6,17,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,755,14,0,920,19,1,0 +2013,10,8,2,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,68,1,1149,23,1,0 +2013,6,8,6,EV,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1252,0,0,1753,-7,0,0 +2013,8,21,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1110,-6,0,1320,-18,0,0 +2013,5,3,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1724,-5,0,1929,-25,0,0 +2013,6,17,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1805,24,1,1936,2,0,0 +2013,7,5,5,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,615,-6,0,825,-6,0,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,36,1,1755,34,1,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1547,1,0,1630,1,0,0 +2013,4,4,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-7,0,2050,-19,0,0 +2013,8,6,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1735,1,0,2045,4,0,0 +2013,4,21,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1424,1,0,1550,-2,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1205,-3,0,1310,-7,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,0,0,1719,-6,0,0 +2013,8,18,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1112,-3,0,1200,-5,0,0 +2013,8,8,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1730,17,1,1825,42,1,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1125,-3,0,1242,-3,0,0 +2013,8,29,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-5,0,1034,-26,0,0 +2013,5,26,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,-8,0,1003,-14,0,0 +2013,5,19,7,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1850,18,1,2110,20,1,0 +2013,6,7,5,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1829,0,0,2020,0,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2115,17,1,2235,6,0,0 +2013,4,2,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1835,-5,0,2120,-5,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,854,6,0,1040,-3,0,0 +2013,6,13,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1330,3,0,1441,-11,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-6,0,1733,-14,0,0 +2013,5,4,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1710,-3,0,1955,-15,0,0 +2013,7,21,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,39,1,1654,112,1,0 +2013,4,25,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1012,-3,0,1211,-9,0,0 +2013,5,13,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-2,0,2315,-6,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,956,-2,0,1538,-12,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1125,2,0,1245,-6,0,0 +2013,9,14,6,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-3,0,1428,-6,0,0 +2013,8,20,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,5,0,1145,5,0,0 +2013,4,1,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1819,90,1,2114,107,1,0 +2013,8,1,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-12,0,1915,-11,0,0 +2013,10,4,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1323,63,1,2149,30,1,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,925,18,1,1159,1,0,0 +2013,9,2,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1312,0,0,1610,-3,0,0 +2013,8,24,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1335,-5,0,1501,-19,0,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,945,41,1,1238,6,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,5,0,1636,-19,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1835,212,1,2200,207,1,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1812,-5,0,2046,-15,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,605,-2,0,920,-8,0,0 +2013,6,6,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,0,0,1616,-13,0,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,0,0,2100,-9,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1743,62,1,2144,45,1,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2110,3,0,2215,-11,0,0 +2013,10,9,3,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1910,0,0,2217,1,0,0 +2013,9,11,3,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-9,0,1044,-8,0,0 +2013,9,3,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,-4,0,2230,-39,0,0 +2013,4,16,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,640,-1,0,840,-6,0,0 +2013,8,3,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,900,-4,0,1426,-27,0,0 +2013,10,12,6,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1627,-2,0,1730,10,0,0 +2013,10,4,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,35,1,1707,32,1,0 +2013,4,7,7,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-6,0,29,-27,0,0 +2013,5,21,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,840,27,1,1704,38,1,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-2,0,825,-12,0,0 +2013,4,26,5,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1710,1,0,1915,-1,0,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1425,3,0,1751,32,1,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1650,10,0,1740,-2,0,0 +2013,8,26,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1730,-4,0,2009,-21,0,0 +2013,9,14,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,95,1,1251,75,1,0 +2013,6,19,3,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1615,119,1,1905,105,1,0 +2013,5,28,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,948,-8,0,1235,-20,0,0 +2013,8,17,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,750,0,0,805,-7,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,34,1,2139,20,1,0 +2013,4,7,7,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1635,-1,0,1815,-12,0,0 +2013,9,8,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-8,0,1545,-9,0,0 +2013,9,17,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1010,-6,0,1126,-18,0,0 +2013,10,27,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,840,-4,0,1110,-8,0,0 +2013,7,14,7,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1620,73,1,1853,29,1,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1950,60,1,2033,41,1,0 +2013,9,19,4,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1146,4,0,1252,3,0,0 +2013,10,15,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,605,2,0,750,-9,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,827,19,1,1706,28,1,0 +2013,8,27,2,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,710,-1,0,906,-2,0,0 +2013,4,25,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1303,-6,0,1551,-27,0,0 +2013,8,22,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,1514,-26,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2003,-3,0,2110,-12,0,0 +2013,9,30,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1440,22,1,1605,12,0,0 +2013,7,7,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1918,-3,0,2008,-3,0,0 +2013,6,25,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-5,0,1241,10,0,0 +2013,7,7,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,800,-9,0,935,-7,0,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1405,-4,0,1645,-3,0,0 +2013,8,2,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1305,1,0,1525,-5,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,736,-8,0,1010,4,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,1,0,2224,-17,0,0 +2013,9,22,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1639,-1,0,1824,0,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1531,14,0,1710,4,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,722,-1,0,851,-18,0,0 +2013,7,28,7,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,-1,0,1830,12,0,0 +2013,8,11,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-9,0,1755,-21,0,0 +2013,10,14,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,22,1,1824,24,1,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-6,0,1048,-14,0,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,735,14,0,848,-4,0,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,-4,0,1200,-8,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,91,1,2300,79,1,0 +2013,4,5,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,655,-5,0,918,-1,0,0 +2013,7,3,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2255,-6,0,608,7,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1510,24,1,1658,15,1,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,1,0,1950,-22,0,0 +2013,8,3,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1715,-6,0,1830,-3,0,0 +2013,5,31,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,-7,0,1550,-9,0,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,706,-3,0,1017,-43,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,-4,0,958,-14,0,0 +2013,10,27,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,34,1,1500,30,1,0 +2013,4,29,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,-5,0,1718,-2,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,-3,0,2329,2,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,2,0,2302,-26,0,0 +2013,5,22,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1945,7,0,2153,23,1,0 +2013,8,2,5,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,4,0,813,-5,0,0 +2013,6,26,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,98,1,1749,101,1,0 +2013,6,19,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-10,0,835,-29,0,0 +2013,8,22,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,915,-6,0,1032,-16,0,0 +2013,6,28,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,89,1,1947,104,1,0 +2013,6,16,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2340,-12,0,736,-37,0,0 +2013,10,14,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,900,1,0,1105,9,0,0 +2013,7,8,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2201,65,1,2343,56,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,81,1,1146,66,1,0 +2013,6,11,2,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2120,-2,0,2345,-4,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1220,15,1,1741,5,0,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,608,-6,0,742,-17,0,0 +2013,7,29,1,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1029,-10,0,1215,-22,0,0 +2013,7,11,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,3,0,1501,0,0,0 +2013,10,31,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1316,3,0,1503,-1,0,0 +2013,5,4,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,959,0,0,1630,12,0,0 +2013,6,11,2,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-7,0,855,20,1,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1916,-3,0,2102,-28,0,0 +2013,7,7,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1515,2,0,1630,-12,0,0 +2013,5,23,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1350,-1,0,1520,-2,0,0 +2013,4,20,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,655,-4,0,815,-9,0,0 +2013,4,9,2,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,4,0,1913,-26,0,0 +2013,8,6,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-1,0,1005,13,0,0 +2013,5,26,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,725,-7,0,935,-19,0,0 +2013,9,5,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-5,0,1913,-7,0,0 +2013,4,7,7,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1408,-4,0,1530,-11,0,0 +2013,7,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,830,-5,0,957,2,0,0 +2013,5,6,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1310,-3,0,1400,-7,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,29,1,930,12,0,0 +2013,10,10,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-3,0,2011,-9,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1320,9,0,1544,-13,0,0 +2013,8,20,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,725,-2,0,910,-11,0,0 +2013,7,21,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,2,0,1925,-5,0,0 +2013,5,16,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1247,13,0,1350,10,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1011,-3,0,1049,-11,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2247,29,1,59,5,0,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1043,5,0,1358,-15,0,0 +2013,9,12,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,940,3,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,-1,0,1911,39,1,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,-1,0,2154,-5,0,0 +2013,7,24,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,27,1,2041,32,1,0 +2013,7,12,5,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,635,66,1,847,63,1,0 +2013,9,14,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,759,-12,0,1122,-35,0,0 +2013,9,22,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-8,0,850,-6,0,0 +2013,6,15,6,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,641,-4,0,720,-6,0,0 +2013,9,30,1,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,710,-2,0,845,-40,0,0 +2013,9,19,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-5,0,1759,-2,0,0 +2013,7,31,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1006,-6,0,1158,-22,0,0 +2013,6,28,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,-5,0,1543,-9,0,0 +2013,9,22,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1435,-8,0,1646,-17,0,0 +2013,8,25,7,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1015,4,0,1227,-9,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1445,2,0,2205,-38,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1251,-3,0,1839,-23,0,0 +2013,5,5,7,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,15,1,1955,-26,0,0 +2013,4,14,7,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1835,26,1,2152,45,1,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,820,7,0,1130,61,1,0 +2013,8,9,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,12,0,2300,23,1,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,3,0,1825,-2,0,0 +2013,6,14,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1854,4,0,2015,14,0,0 +2013,9,19,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1802,-1,0,1850,4,0,0 +2013,8,13,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-3,0,1255,2,0,0 +2013,9,22,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,9,0,1200,-4,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,-3,0,1010,-7,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,15,1,1904,4,0,0 +2013,8,5,1,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,735,-2,0,1020,3,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1350,-5,0,1626,-5,0,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,5,0,1630,25,1,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1915,0,0,2033,-17,0,0 +2013,8,10,6,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1122,-4,0,1403,-15,0,0 +2013,7,27,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1544,-1,0,1836,-19,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1622,0,0,1844,1,0,0 +2013,9,13,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1710,10,0,1850,15,1,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1515,-9,0,1905,-14,0,0 +2013,8,6,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,96,1,1910,86,1,0 +2013,5,10,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,37,1,1741,32,1,0 +2013,10,27,7,9E,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1600,-7,0,1740,-17,0,0 +2013,10,29,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1243,0,0,1502,-14,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,-2,0,1800,-2,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,0,0,1948,-6,0,0 +2013,4,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,3,0,920,13,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1525,0,0,1815,11,0,0 +2013,10,20,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1335,-6,0,1448,1,0,0 +2013,6,20,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,0,0,1405,-7,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1351,13,0,1618,-7,0,0 +2013,5,13,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,-8,0,1305,5,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1835,1,0,2100,14,0,0 +2013,5,4,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,801,-4,0,955,-6,0,0 +2013,8,26,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1319,0,0,2106,1,0,0 +2013,8,21,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1533,16,1,1648,11,0,0 +2013,10,30,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-1,0,2012,3,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2031,-4,0,2300,-21,0,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,0,0,2046,-16,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1100,-2,0,1333,-3,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,15,1,1625,-2,0,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1020,6,0,1110,-5,0,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2113,25,1,2235,20,1,0 +2013,8,28,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,821,0,,1109,0,1,1 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1125,-9,0,1233,-16,0,0 +2013,7,2,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1720,7,0,2002,23,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,-4,0,1206,-14,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1600,0,0,1730,22,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,10,0,1620,0,0,0 +2013,4,17,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1800,-15,0,2155,-10,0,0 +2013,5,31,5,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1727,-4,0,1915,-18,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,932,2,0,1154,6,0,0 +2013,7,27,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,-3,0,1229,-5,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,0,0,1817,-11,0,0 +2013,7,21,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1230,-5,0,1558,-15,0,0 +2013,8,7,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-4,0,1130,-13,0,0 +2013,4,18,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1350,47,1,1500,46,1,0 +2013,9,13,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-6,0,1751,-19,0,0 +2013,10,24,4,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-6,0,1606,-20,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,0,0,1700,-8,0,0 +2013,10,20,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,1158,-17,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1100,-1,0,1436,-13,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2321,5,0,310,-1,0,0 +2013,5,28,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,800,10,0,925,2,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1301,-6,0,1417,-7,0,0 +2013,4,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1157,-4,0,1242,-7,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,8,0,1855,-30,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,1,0,1320,6,0,0 +2013,10,26,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-9,0,1628,-16,0,0 +2013,9,8,7,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,650,2,0,1225,2,0,0 +2013,8,9,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,53,1,1830,38,1,0 +2013,8,6,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-2,0,1853,-15,0,0 +2013,4,27,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1357,-3,0,1610,-17,0,0 +2013,10,31,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,538,-12,0,700,-23,0,0 +2013,4,13,6,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,620,6,0,955,-14,0,0 +2013,7,16,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-1,0,1645,-10,0,0 +2013,5,15,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1540,-3,0,1809,-25,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,37,1,1607,29,1,0 +2013,10,16,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-7,0,917,-16,0,0 +2013,6,9,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,43,1,1540,40,1,0 +2013,4,10,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,80,1,1418,60,1,0 +2013,8,28,3,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-3,0,1026,-6,0,0 +2013,6,11,2,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1841,109,1,2054,90,1,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,5,0,1350,0,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,950,-3,0,1148,1,0,0 +2013,9,20,5,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,-8,0,1038,-7,0,0 +2013,8,12,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,840,-1,0,1205,7,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1055,-3,0,1704,-4,0,0 +2013,4,17,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,7,0,1420,2,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,-5,0,1605,-15,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,947,-9,0,1347,-12,0,0 +2013,4,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,605,1,0,755,-5,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,-1,0,1121,-8,0,0 +2013,10,9,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,630,0,0,830,6,0,0 +2013,9,24,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,5,0,1607,4,0,0 +2013,9,5,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-6,0,1155,-7,0,0 +2013,5,2,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,-9,0,1355,-26,0,0 +2013,4,19,5,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,842,3,0,1025,-14,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,705,-4,0,819,-18,0,0 +2013,5,7,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,803,-4,0,1419,-8,0,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1243,-8,0,1813,-17,0,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1747,-2,0,1841,-5,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-4,0,1305,-12,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1345,19,1,1512,7,0,0 +2013,6,28,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,0,,2215,0,1,1 +2013,4,3,3,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1748,-8,0,1915,-11,0,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1135,19,1,1300,9,0,0 +2013,6,8,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-4,0,1414,3,0,0 +2013,6,2,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1915,-1,0,2110,-14,0,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2030,12,0,2349,-10,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1639,-24,0,1935,-3,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1524,5,0,1718,-4,0,0 +2013,6,13,4,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1820,-2,0,2048,15,1,0 +2013,9,13,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,-6,0,1844,-4,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1525,10,0,1720,10,0,0 +2013,4,29,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1420,-1,0,2115,-5,0,0 +2013,6,2,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1955,73,1,2110,73,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,950,-4,0,1124,-16,0,0 +2013,6,9,7,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1726,21,1,2105,4,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-3,0,1520,-6,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,955,-2,0,1630,-2,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,2001,-2,0,2131,-1,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,27,1,1915,22,1,0 +2013,7,30,2,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2130,-5,0,2250,-9,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2015,-2,0,2224,0,0,0 +2013,7,14,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,47,1,2005,44,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1300,1,0,1400,6,0,0 +2013,5,7,2,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-5,0,1905,-18,0,0 +2013,6,2,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1245,3,0,2119,5,0,0 +2013,6,30,7,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1544,14,0,1724,1,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-1,0,1105,-15,0,0 +2013,6,5,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1240,-11,0,1410,-20,0,0 +2013,8,13,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,24,1,1831,3,0,0 +2013,4,12,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-6,0,1949,-6,0,0 +2013,5,21,2,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2045,69,1,2313,59,1,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1631,111,1,1757,131,1,0 +2013,10,1,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-5,0,1500,-15,0,0 +2013,7,30,2,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-9,0,919,-4,0,0 +2013,10,7,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,700,75,1,823,112,1,0 +2013,6,6,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-4,0,701,10,0,0 +2013,5,9,4,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1929,37,1,2047,43,1,0 +2013,6,3,1,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,630,-3,0,730,-3,0,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1525,11,0,1950,2,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2045,0,0,2150,-3,0,0 +2013,10,21,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,-7,0,1728,-7,0,0 +2013,4,1,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1040,-16,0,0 +2013,6,2,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-6,0,1759,-10,0,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,-2,0,1550,-10,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1005,-2,0,1110,-4,0,0 +2013,10,16,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1635,8,0,1954,26,1,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-6,0,1053,-11,0,0 +2013,4,26,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-1,0,1509,-4,0,0 +2013,9,11,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1615,-11,0,1804,-10,0,0 +2013,7,3,3,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,6,0,1630,25,1,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,825,0,0,1050,-11,0,0 +2013,6,3,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,-6,0,2227,-4,0,0 +2013,10,29,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-12,0,1725,-10,0,0 +2013,9,13,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,845,0,0,955,-4,0,0 +2013,7,8,1,OO,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,933,5,0,1244,3,0,0 +2013,7,18,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-1,0,2035,-14,0,0 +2013,5,11,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1755,-3,0,1910,-12,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,19,1,1105,24,1,0 +2013,9,6,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1145,-6,0,1314,-12,0,0 +2013,8,9,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1437,-1,0,1626,-6,0,0 +2013,9,7,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,845,-6,0,1216,-18,0,0 +2013,7,18,4,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1715,-9,0,1948,-14,0,0 +2013,5,11,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,946,-10,0,1128,-8,0,0 +2013,8,30,5,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1436,-11,0,1621,-20,0,0 +2013,5,17,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,5,0,1537,4,0,0 +2013,4,20,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-3,0,1618,-16,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1014,-7,0,1321,-5,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,7,0,2055,-19,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,830,30,1,1045,20,1,0 +2013,5,30,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,0,0,1620,5,0,0 +2013,6,14,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,0,0,910,-1,0,0 +2013,10,7,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,927,-6,0,0 +2013,6,24,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-4,0,941,-7,0,0 +2013,7,23,2,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-2,0,1630,-16,0,0 +2013,8,22,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,947,0,,1003,0,1,1 +2013,4,14,7,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-5,0,816,-1,0,0 +2013,10,17,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1700,3,0,51,-15,0,0 +2013,8,26,1,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1125,-3,0,1335,-10,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1255,-7,0,1600,-12,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,45,1,1442,61,1,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,17,1,2150,19,1,0 +2013,6,14,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1330,-4,0,1458,2,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1343,0,0,1816,13,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,12,0,1245,4,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,-4,0,828,16,1,0 +2013,8,7,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1055,-6,0,1455,-5,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1730,27,1,2000,18,1,0 +2013,8,31,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-4,0,1337,-10,0,0 +2013,6,8,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,92,1,2020,65,1,0 +2013,9,30,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-7,0,628,-10,0,0 +2013,4,1,1,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-7,0,922,-9,0,0 +2013,6,27,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2220,42,1,605,39,1,0 +2013,4,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,2,0,1121,-8,0,0 +2013,4,15,1,YV,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1311,-3,0,1711,-9,0,0 +2013,4,18,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2254,55,1,714,74,1,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,-1,0,2205,-12,0,0 +2013,4,18,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1520,231,1,1725,247,1,0 +2013,6,23,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1159,2,0,1509,7,0,0 +2013,6,1,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,-6,0,928,-30,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,6,0,1720,33,1,0 +2013,4,1,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,-1,0,1053,-23,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,655,-1,0,805,-4,0,0 +2013,4,14,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1925,7,0,2300,-2,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,0,,1850,0,1,1 +2013,4,29,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,-4,0,1405,-14,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-7,0,1035,-14,0,0 +2013,4,25,4,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1308,75,1,1735,59,1,0 +2013,5,12,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,3,0,2210,7,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2225,8,0,9,-6,0,0 +2013,7,1,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1815,16,1,2057,-8,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2005,8,0,2125,2,0,0 +2013,7,22,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1245,-1,0,1418,-8,0,0 +2013,6,8,6,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1001,28,1,1120,23,1,0 +2013,4,19,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,904,-8,0,0 +2013,7,16,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,940,0,,1028,0,1,1 +2013,8,8,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,43,1,1302,37,1,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1630,6,0,1833,-8,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1810,-3,0,2008,7,0,0 +2013,8,5,1,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2010,3,0,1148,-41,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,-4,0,1600,-18,0,0 +2013,5,2,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,130,1,2125,117,1,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,941,-9,0,1809,-11,0,0 +2013,4,6,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,610,0,0,1433,-13,0,0 +2013,5,17,5,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2340,3,0,759,12,0,0 +2013,4,20,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1805,2,0,1950,1,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1805,17,1,2125,5,0,0 +2013,6,26,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1452,6,0,1635,6,0,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,1,0,1019,-3,0,0 +2013,10,16,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,-8,0,1756,-14,0,0 +2013,4,7,7,EV,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-1,0,1601,-9,0,0 +2013,8,12,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1220,0,0,1245,-4,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,26,1,2253,33,1,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,-1,0,2358,-6,0,0 +2013,6,22,6,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1620,35,1,1755,40,1,0 +2013,9,12,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1447,-5,0,1635,-18,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1027,0,0,1350,-9,0,0 +2013,6,2,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-6,0,1718,-3,0,0 +2013,7,12,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1150,25,1,1455,47,1,0 +2013,5,24,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-3,0,1523,-1,0,0 +2013,8,21,3,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-4,0,1529,-11,0,0 +2013,6,9,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,903,-3,0,1122,-5,0,0 +2013,7,11,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,46,1,1543,39,1,0 +2013,10,24,4,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,835,135,1,1110,117,1,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,10,0,1833,-4,0,0 +2013,7,16,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,745,3,0,0 +2013,9,16,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1045,1,0,1639,-3,0,0 +2013,8,22,4,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-3,0,1910,-4,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1400,-1,0,1625,31,1,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1459,-1,0,1808,-26,0,0 +2013,10,16,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-6,0,902,-1,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,173,1,2320,142,1,0 +2013,9,9,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1050,-1,0,1330,-4,0,0 +2013,8,28,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,718,-4,0,1053,7,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1030,2,0,1405,-8,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,-2,0,1727,-19,0,0 +2013,7,17,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,108,1,1721,109,1,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1440,12,0,1617,20,1,0 +2013,6,3,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,819,-2,0,1100,-5,0,0 +2013,10,7,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1916,0,,2117,0,1,1 +2013,4,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,335,-3,0,620,4,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,844,-5,0,1102,-22,0,0 +2013,5,28,2,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1610,22,1,1751,18,1,0 +2013,5,29,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1855,37,1,1955,31,1,0 +2013,7,28,7,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1021,-5,0,1325,-18,0,0 +2013,9,17,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1143,-15,0,1614,-37,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2030,49,1,2135,52,1,0 +2013,8,25,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,7,0,2025,10,0,0 +2013,4,22,1,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,223,1,1955,229,1,0 +2013,5,29,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,912,-1,0,1030,-14,0,0 +2013,5,9,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-8,0,1018,4,0,0 +2013,6,24,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,600,112,1,615,100,1,0 +2013,4,4,4,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1305,36,1,1630,37,1,0 +2013,6,15,6,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,852,5,0,1435,-17,0,0 +2013,4,8,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-6,0,1157,-21,0,0 +2013,9,20,5,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1710,-8,0,2146,-33,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,2,0,1152,14,0,0 +2013,6,20,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,22,1,2015,12,0,0 +2013,9,13,5,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,735,8,0,1006,-18,0,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2110,-3,0,2315,-4,0,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,44,1,1930,63,1,0 +2013,5,12,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1217,75,1,1812,87,1,0 +2013,5,20,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,22,1,951,4,0,0 +2013,9,23,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1955,26,1,2219,27,1,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,920,-4,0,1055,-18,0,0 +2013,8,6,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-3,0,1755,-17,0,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2035,-2,0,2345,-10,0,0 +2013,8,13,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,940,-1,0,1620,-1,0,0 +2013,6,12,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,-5,0,1121,13,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,800,1,0,935,3,0,0 +2013,6,3,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,1,0,1418,-1,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1840,39,1,2310,36,1,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1957,-5,0,2128,14,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1040,-3,0,1310,3,0,0 +2013,5,22,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2010,-4,0,2235,-11,0,0 +2013,10,10,4,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1701,-7,0,1920,6,0,0 +2013,5,27,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1510,-4,0,1635,-13,0,0 +2013,5,13,1,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,145,-14,0,659,-8,0,0 +2013,7,23,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,-9,0,842,0,0,0 +2013,7,28,7,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,0,0,906,9,0,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1550,13,0,1710,9,0,0 +2013,5,20,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,15,1,1535,-1,0,0 +2013,8,12,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,4,0,1356,4,0,0 +2013,10,25,5,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-1,0,724,2,0,0 +2013,6,23,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1720,77,1,1940,105,1,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1025,4,0,1238,-22,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1530,177,1,2016,157,1,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,630,-4,0,755,-21,0,0 +2013,8,12,1,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-7,0,1313,-18,0,0 +2013,8,1,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,530,-6,0,719,4,0,0 +2013,4,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-7,0,957,-3,0,0 +2013,4,22,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1739,23,1,1814,10,0,0 +2013,4,2,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1855,32,1,2130,40,1,0 +2013,7,11,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,3,0,855,-12,0,0 +2013,8,3,6,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,828,-5,0,1051,-14,0,0 +2013,9,23,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1259,-6,0,1529,-6,0,0 +2013,7,4,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1720,-2,0,2011,-16,0,0 +2013,6,8,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-6,0,902,7,0,0 +2013,5,1,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1703,3,0,1803,-4,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1300,-4,0,1554,-18,0,0 +2013,4,23,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-7,0,1510,49,1,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1750,14,0,2159,11,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,143,1,1750,116,1,0 +2013,7,4,4,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2210,-1,0,603,-1,0,0 +2013,9,9,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1730,3,0,1905,-12,0,0 +2013,10,1,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,700,-5,0,815,-6,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,-2,0,1348,-4,0,0 +2013,7,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1800,48,1,1905,48,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,74,1,2159,64,1,0 +2013,5,28,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,16,1,943,11,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1050,32,1,1150,36,1,0 +2013,7,19,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,600,-1,0,720,3,0,0 +2013,10,27,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2315,152,1,750,120,1,0 +2013,5,7,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,132,1,912,98,1,0 +2013,7,1,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,0,,2145,0,1,1 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,11,0,1056,14,0,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,0,0,1420,6,0,0 +2013,5,24,5,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1340,53,1,1705,59,1,0 +2013,7,27,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,838,5,0,0 +2013,5,16,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1040,46,1,1905,25,1,0 +2013,6,15,6,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,810,-11,0,950,-30,0,0 +2013,6,2,7,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1925,-7,0,51,-8,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2055,120,1,2228,113,1,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1206,-5,0,1342,-18,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,5,0,26,-2,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1245,9,0,1450,3,0,0 +2013,5,16,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-9,0,1818,-20,0,0 +2013,7,26,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,36,1,2216,55,1,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-8,0,1022,-5,0,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1615,7,0,1725,-1,0,0 +2013,6,9,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,948,-5,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1915,6,0,2105,1,0,0 +2013,10,30,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-4,0,1453,-32,0,0 +2013,8,10,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1315,12,0,1345,17,1,0 +2013,7,13,6,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,-2,0,840,-13,0,0 +2013,8,17,6,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1310,32,1,1455,23,1,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,605,0,0,735,2,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1930,-4,0,2229,-1,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1931,50,1,2216,57,1,0 +2013,6,20,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,915,-5,0,1015,-12,0,0 +2013,6,19,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-3,0,1130,0,0,0 +2013,9,1,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-5,0,752,-6,0,0 +2013,6,13,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,78,1,2025,68,1,0 +2013,6,25,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-6,0,1316,-8,0,0 +2013,5,16,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1149,42,1,1414,39,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2020,63,1,2155,89,1,0 +2013,5,22,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1906,-1,0,2018,-1,0,0 +2013,9,24,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1435,-1,0,1545,12,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-6,0,1406,-18,0,0 +2013,8,27,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,838,1,0,1444,-6,0,0 +2013,4,6,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,704,-4,0,839,-14,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1040,-5,0,1133,-6,0,0 +2013,10,18,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1005,0,0,1555,7,0,0 +2013,10,3,4,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,630,-6,0,816,-10,0,0 +2013,7,28,7,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,600,-5,0,714,-18,0,0 +2013,9,28,6,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-9,0,725,-18,0,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,10,0,1735,7,0,0 +2013,7,16,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-5,0,541,0,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1415,-3,0,1549,51,1,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,730,14,0,1023,2,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,920,7,0,1500,3,0,0 +2013,9,22,7,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,14,0,1735,16,1,0 +2013,8,13,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,214,1,1912,192,1,0 +2013,9,5,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-7,0,900,-19,0,0 +2013,9,5,4,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,805,-2,0,1030,-18,0,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2235,124,1,10,112,1,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,-3,0,1255,-11,0,0 +2013,5,30,4,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,374,1,740,372,1,0 +2013,9,18,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,25,1,1205,19,1,0 +2013,10,27,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1350,162,1,1520,179,1,0 +2013,10,20,7,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1625,-1,0,1655,-8,0,0 +2013,7,18,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,805,-2,0,820,-18,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,212,1,2055,227,1,0 +2013,4,19,5,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1515,5,0,2035,-2,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,-4,0,1343,-6,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-3,0,1424,-16,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1750,20,1,1905,13,0,0 +2013,8,22,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,106,1,2049,95,1,0 +2013,7,24,3,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1635,2,0,1820,5,0,0 +2013,9,24,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,700,12,0,930,-2,0,0 +2013,4,10,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-10,0,2015,-12,0,0 +2013,7,31,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-6,0,1024,-8,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,845,-5,0,1036,-20,0,0 +2013,5,30,4,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-15,0,925,-13,0,0 +2013,5,23,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,815,-2,0,1414,2,0,0 +2013,4,1,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,833,-1,0,953,-7,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,645,-2,0,910,-12,0,0 +2013,10,3,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,19,1,2020,13,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,15,1,1930,13,0,0 +2013,9,16,1,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,18,1,1403,16,1,0 +2013,4,27,6,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1616,-5,0,28,-2,0,0 +2013,8,15,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,6,0,1840,9,0,0 +2013,4,16,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-6,0,704,-8,0,0 +2013,8,6,2,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-1,0,900,-10,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1100,28,1,1240,23,1,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,15,1,1045,-8,0,0 +2013,5,23,4,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-3,0,740,-18,0,0 +2013,8,10,6,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-1,0,1420,-14,0,0 +2013,8,28,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1200,-4,0,1735,13,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-4,0,1240,-20,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,-5,0,1648,-3,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1613,-3,0,1722,-24,0,0 +2013,4,30,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1405,-11,0,1530,-13,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,15,1,1615,9,0,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,9,0,2259,3,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1115,-7,0,1320,19,1,0 +2013,5,14,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-2,0,1255,-2,0,0 +2013,9,8,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1309,7,0,1355,-1,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2151,-4,0,2200,-12,0,0 +2013,4,15,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,3,0,2048,17,1,0 +2013,9,4,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,-3,0,1650,0,0,0 +2013,10,17,4,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,830,-4,0,1615,-4,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1450,0,0,2155,-5,0,0 +2013,5,12,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2145,0,0,2325,5,0,0 +2013,7,30,2,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1915,-21,0,2140,-29,0,0 +2013,5,18,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,755,-4,0,1050,0,0,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2125,39,1,2250,34,1,0 +2013,6,24,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,63,1,2125,78,1,0 +2013,7,19,5,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2053,-3,0,500,1,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1520,3,0,1820,-14,0,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-4,0,1330,-9,0,0 +2013,8,3,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1545,-6,0,1555,-5,0,0 +2013,5,13,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-4,0,925,-14,0,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2040,14,0,2130,7,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1743,-1,0,1900,-28,0,0 +2013,6,24,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,530,-7,0,816,-16,0,0 +2013,7,15,1,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,627,-2,0,745,-8,0,0 +2013,7,31,3,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,0,0,1805,-13,0,0 +2013,6,25,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,2000,119,1,2115,169,1,0 +2013,5,31,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,625,0,0,810,-10,0,0 +2013,6,25,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-6,0,815,-7,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,25,1,1523,8,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1000,3,0,1259,-11,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1250,1,0,1410,-2,0,0 +2013,9,28,6,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,831,-7,0,923,0,0,0 +2013,4,19,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,0,0,1535,1,0,0 +2013,6,16,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,-3,0,1910,-15,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1510,43,1,1633,28,1,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-6,0,1725,-14,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1350,-2,0,1557,-25,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1447,-3,0,1627,12,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1515,0,0,1615,-4,0,0 +2013,9,11,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1010,0,0,1130,-2,0,0 +2013,4,17,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1701,-7,0,1855,-11,0,0 +2013,10,23,3,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-2,0,1706,6,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,27,1,2000,8,0,0 +2013,9,22,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,-5,0,1744,-9,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2205,26,1,2305,19,1,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,950,0,0,1817,2,0,0 +2013,5,4,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,715,0,,840,0,1,1 +2013,9,7,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,903,-3,0,937,-18,0,0 +2013,5,22,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,-6,0,1505,-7,0,0 +2013,9,10,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,20,1,1926,36,1,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1659,64,1,1929,182,1,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,0,0,1725,17,1,0 +2013,9,6,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,-1,0,1925,-18,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1925,16,1,2130,33,1,0 +2013,6,3,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,751,-4,0,1044,1,0,0 +2013,7,25,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,925,-7,0,1045,-10,0,0 +2013,8,21,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,603,-10,0,716,-16,0,0 +2013,7,1,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-6,0,1329,1,0,0 +2013,10,21,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,87,1,1150,82,1,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1244,59,1,1449,60,1,0 +2013,7,10,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,0,0,1025,4,0,0 +2013,10,10,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,645,-4,0,815,-16,0,0 +2013,9,3,2,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1425,18,1,1536,19,1,0 +2013,7,1,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-7,0,905,-12,0,0 +2013,9,3,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,15,1,2000,2,0,0 +2013,4,17,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,-2,0,1205,-3,0,0 +2013,4,13,6,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,624,51,1,742,35,1,0 +2013,9,18,3,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,725,-2,0,840,-1,0,0 +2013,10,27,7,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,959,-1,0,1709,-21,0,0 +2013,8,11,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,840,-4,0,1105,-32,0,0 +2013,9,6,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1840,-9,0,1912,-3,0,0 +2013,5,21,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,34,1,1930,30,1,0 +2013,5,27,1,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1639,5,0,1930,-18,0,0 +2013,7,19,5,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,556,-5,0,809,-13,0,0 +2013,8,29,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1805,-4,0,1950,13,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,523,-2,0,1223,-15,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,5,0,2125,-8,0,0 +2013,9,11,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,5,0,1904,-1,0,0 +2013,4,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1957,17,1,2110,5,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,735,-6,0,1010,-17,0,0 +2013,5,19,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-5,0,1003,-7,0,0 +2013,5,29,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,22,1,2223,60,1,0 +2013,6,18,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,-2,0,1510,11,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,-3,0,1210,-4,0,0 +2013,6,9,7,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1901,-5,0,2056,-21,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,5,0,1810,-4,0,0 +2013,4,3,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1625,-5,0,1950,-17,0,0 +2013,10,14,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,840,-2,0,1040,-11,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,-2,0,1335,4,0,0 +2013,5,29,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,1,0,812,10,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,32,1,1600,23,1,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1030,10,0,1140,19,1,0 +2013,5,2,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1534,23,1,1633,21,1,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1659,55,1,1851,50,1,0 +2013,6,11,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,30,-3,0,810,-3,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1434,-1,0,1532,-7,0,0 +2013,7,10,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1907,0,,2003,0,1,1 +2013,9,16,1,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1410,9,0,1535,-4,0,0 +2013,5,30,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-4,0,1208,1,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1748,70,1,2125,56,1,0 +2013,6,29,6,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,-7,0,1830,9,0,0 +2013,10,19,6,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1231,-11,0,1437,-2,0,0 +2013,4,3,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-7,0,2043,-1,0,0 +2013,7,9,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,835,-9,0,1020,-13,0,0 +2013,9,25,3,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1500,-8,0,1718,-11,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1825,-1,0,1940,-10,0,0 +2013,10,2,3,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1240,-7,0,1540,-9,0,0 +2013,7,9,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,610,-1,0,615,-2,0,0 +2013,5,3,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1525,-2,0,1829,-7,0,0 +2013,8,3,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,736,-9,0,911,11,0,0 +2013,10,7,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-4,0,820,17,1,0 +2013,5,19,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,99,1,1604,113,1,0 +2013,6,21,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-2,0,1006,-31,0,0 +2013,8,23,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,640,-2,0,645,3,0,0 +2013,7,27,6,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1835,-1,0,2155,7,0,0 +2013,10,21,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,610,0,0,735,-11,0,0 +2013,5,22,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1415,27,1,1813,71,1,0 +2013,5,9,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1707,32,1,1842,17,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,941,-4,0,1112,-8,0,0 +2013,4,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,-1,0,1704,-6,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1100,-7,0,1937,9,0,0 +2013,8,15,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1820,9,0,1845,12,0,0 +2013,4,4,4,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,2135,-8,0,38,-2,0,0 +2013,10,16,3,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1230,-4,0,1415,-1,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,-5,0,1730,-2,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2305,4,0,506,-2,0,0 +2013,5,8,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1430,-7,0,1733,-24,0,0 +2013,8,3,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,700,-4,0,805,-9,0,0 +2013,5,19,7,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,1720,0,,1846,0,1,1 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2045,22,1,2345,1,0,0 +2013,10,31,4,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1056,10,0,1318,8,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,905,12,0,1113,2,0,0 +2013,10,12,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,2,0,730,-31,0,0 +2013,9,18,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1000,7,0,1030,2,0,0 +2013,5,15,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1228,18,1,1335,29,1,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,0,0,1852,-16,0,0 +2013,10,20,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,1,0,1335,-2,0,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,38,-4,0,554,-7,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,-4,0,1810,-33,0,0 +2013,5,24,5,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1107,6,0,1112,7,0,0 +2013,4,28,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,730,-6,0,954,4,0,0 +2013,4,8,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-8,0,715,-7,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2145,-2,0,2315,-21,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,32,1,1449,26,1,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1150,-4,0,1415,7,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,-6,0,1829,-4,0,0 +2013,10,12,6,EV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1912,-10,0,2041,-23,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,722,-7,0,1039,-18,0,0 +2013,6,27,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,58,1,1425,52,1,0 +2013,7,12,5,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1320,14,0,1410,18,1,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1550,34,1,1810,37,1,0 +2013,7,2,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2031,-8,0,2118,-13,0,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1645,262,1,1813,271,1,0 +2013,8,3,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-8,0,1020,-14,0,0 +2013,4,28,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-3,0,1636,-12,0,0 +2013,6,1,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,-4,0,1435,-14,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1243,3,0,1500,1,0,0 +2013,8,16,5,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2016,73,1,2216,42,1,0 +2013,8,3,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,-10,0,940,-24,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1805,-3,0,2003,-18,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,0,0,1712,0,0,0 +2013,5,26,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,-5,0,1920,-9,0,0 +2013,6,27,4,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1255,28,1,1600,20,1,0 +2013,6,15,6,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-1,0,10,-4,0,0 +2013,9,20,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1345,35,1,1455,26,1,0 +2013,4,6,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,-4,0,1050,-6,0,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1135,38,1,1537,31,1,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,0,0,1725,-14,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2005,20,1,2320,7,0,0 +2013,5,2,4,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,832,-10,0,1047,-18,0,0 +2013,4,17,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1250,-5,0,1427,-17,0,0 +2013,7,4,4,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1650,58,1,1822,32,1,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1730,-3,0,1842,-18,0,0 +2013,9,2,1,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2103,186,1,2226,167,1,0 +2013,4,28,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,930,0,0,1245,4,0,0 +2013,5,31,5,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-4,0,914,-4,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,28,1,2200,25,1,0 +2013,5,8,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1328,127,1,1554,111,1,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1859,-4,0,2217,-22,0,0 +2013,9,25,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-8,0,1005,-22,0,0 +2013,7,11,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1326,88,1,2130,86,1,0 +2013,5,11,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,754,-1,0,845,2,0,0 +2013,8,17,6,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,7,0,1645,1,0,0 +2013,7,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1630,11,0,1745,4,0,0 +2013,6,27,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1103,-5,0,1224,-8,0,0 +2013,8,21,3,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1035,0,0,1355,-4,0,0 +2013,5,18,6,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,0,0,1547,-8,0,0 +2013,9,11,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1700,47,1,1838,46,1,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2015,21,1,2145,15,1,0 +2013,6,30,7,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-16,0,1143,-8,0,0 +2013,6,1,6,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,1,0,705,-15,0,0 +2013,4,29,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,11,0,2235,8,0,0 +2013,10,7,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1353,-2,0,1635,-1,0,0 +2013,8,17,6,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,17,1,1945,35,1,0 +2013,9,7,6,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,7,0,1600,-10,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1116,-2,0,1336,-38,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1246,-1,0,1700,-24,0,0 +2013,4,10,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1417,13,0,1601,-6,0,0 +2013,4,25,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-10,0,2125,-18,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,48,1,1314,55,1,0 +2013,6,9,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,22,1,5,31,1,0 +2013,6,4,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,2,0,2050,-3,0,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,605,1,0,917,-27,0,0 +2013,7,12,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1615,23,1,1710,8,0,0 +2013,10,27,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-3,0,1113,-22,0,0 +2013,4,15,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1035,5,0,1305,-1,0,0 +2013,7,30,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,-5,0,1533,-11,0,0 +2013,7,13,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-1,0,1545,11,0,0 +2013,9,1,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,820,-2,0,940,-11,0,0 +2013,8,4,7,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,11,0,835,7,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-4,0,1738,-10,0,0 +2013,9,13,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1300,4,0,1335,6,0,0 +2013,10,24,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1650,-2,0,1715,-8,0,0 +2013,10,16,3,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,-1,0,2308,-24,0,0 +2013,4,13,6,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14307,Theodore Francis Green State,Providence,RI,1405,3,0,1700,-14,0,0 +2013,10,25,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,605,-3,0,745,9,0,0 +2013,8,1,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-9,0,1302,-10,0,0 +2013,9,16,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,41,1,1845,19,1,0 +2013,6,10,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-1,0,1812,-16,0,0 +2013,6,14,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,835,21,1,1215,21,1,0 +2013,10,21,1,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2030,-2,0,2215,-6,0,0 +2013,9,27,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1644,10,0,1819,9,0,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-3,0,1229,0,0,0 +2013,10,24,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1055,-2,0,1224,-9,0,0 +2013,8,9,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1040,-1,0,1905,20,1,0 +2013,6,20,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,10,0,2135,12,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,6,0,2045,2,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,9,0,1155,-26,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1900,172,1,2128,178,1,0 +2013,8,18,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,34,1,1315,5,0,0 +2013,10,21,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,0,0,1929,-1,0,0 +2013,4,28,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-8,0,1520,-22,0,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,836,-6,0,1004,-18,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1550,3,0,1855,-28,0,0 +2013,7,8,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1905,99,1,2140,93,1,0 +2013,5,2,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,68,1,2055,90,1,0 +2013,10,30,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,71,1,1810,78,1,0 +2013,4,21,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1904,15,1,2045,20,1,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,-5,0,2355,-1,0,0 +2013,6,16,7,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1638,-4,0,1830,3,0,0 +2013,5,14,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1155,-4,0,1449,7,0,0 +2013,9,14,6,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-3,0,1227,3,0,0 +2013,10,24,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1832,-1,0,2056,2,0,0 +2013,6,7,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-9,0,539,-24,0,0 +2013,7,7,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1849,50,1,2030,65,1,0 +2013,7,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,1,0,1800,-4,0,0 +2013,4,11,4,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,2,0,1415,16,1,0 +2013,10,10,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,14,0,2030,18,1,0 +2013,8,11,7,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,-8,0,1914,4,0,0 +2013,9,1,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1036,-8,0,1209,-15,0,0 +2013,10,15,2,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,0,0,1820,10,0,0 +2013,10,4,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2010,-6,0,2055,64,1,0 +2013,9,1,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1358,-7,0,1532,-18,0,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-1,0,1319,20,1,0 +2013,10,10,4,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1200,3,0,1345,-11,0,0 +2013,7,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,3,0,1400,-10,0,0 +2013,10,16,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-5,0,708,-15,0,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,930,-1,0,1030,-2,0,0 +2013,7,9,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1525,1,0,1640,4,0,0 +2013,6,18,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,815,-5,0,924,6,0,0 +2013,6,3,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1341,34,1,1553,24,1,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1042,-7,0,1152,-16,0,0 +2013,5,28,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,12,0,913,19,1,0 +2013,8,21,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2105,69,1,2230,53,1,0 +2013,9,29,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,16,1,2110,30,1,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,852,4,0,1208,13,0,0 +2013,4,9,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1635,27,1,1850,28,1,0 +2013,7,26,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-5,0,950,-6,0,0 +2013,10,14,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2050,12,0,2225,-12,0,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1330,-4,0,1455,-26,0,0 +2013,7,11,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,23,1,1321,72,1,0 +2013,5,29,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,725,-3,0,905,-10,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,-1,0,1433,0,0,0 +2013,5,28,2,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-9,0,2020,-19,0,0 +2013,5,28,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-5,0,2124,-2,0,0 +2013,10,31,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1435,-2,0,1534,-2,0,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1120,31,1,1228,36,1,0 +2013,5,13,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,915,0,0,1445,10,0,0 +2013,6,28,5,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-1,0,1231,10,0,0 +2013,9,18,3,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1545,0,0,1753,0,0,0 +2013,7,31,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1705,7,0,1805,4,0,0 +2013,7,29,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,854,-6,0,1046,-7,0,0 +2013,8,10,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1030,-5,0,1245,7,0,0 +2013,10,2,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,-7,0,1600,-19,0,0 +2013,5,18,6,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,29,1,1905,30,1,0 +2013,5,20,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,0,0,1500,9,0,0 +2013,10,30,3,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,710,-6,0,1000,2,0,0 +2013,4,16,2,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,645,-2,0,800,-14,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1100,-2,0,1405,-36,0,0 +2013,8,12,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1200,10,0,1805,-12,0,0 +2013,6,28,5,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,840,16,1,1025,9,0,0 +2013,4,28,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,13,0,2056,19,1,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1849,-4,0,1951,-22,0,0 +2013,9,2,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,0,0,1157,-11,0,0 +2013,8,25,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-6,0,935,-18,0,0 +2013,9,25,3,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,929,-3,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1345,20,1,1610,16,1,0 +2013,8,13,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,0,0,1553,-10,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,740,-4,0,941,-18,0,0 +2013,4,1,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-1,0,1341,1,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1955,12,0,2233,21,1,0 +2013,8,26,1,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,3,0,1210,26,1,0 +2013,10,16,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-1,0,920,0,0,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,94,1,1620,83,1,0 +2013,9,18,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1930,-6,0,2231,-40,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,4,0,1935,-21,0,0 +2013,7,20,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,29,1,1905,0,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1127,2,0,1300,-16,0,0 +2013,8,18,7,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,915,121,1,1020,123,1,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-3,0,1307,-11,0,0 +2013,10,12,6,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2135,25,1,543,20,1,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1310,-5,0,1447,-7,0,0 +2013,5,27,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-13,0,1655,-51,0,0 +2013,8,18,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,2030,34,1,2220,26,1,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,39,1,2255,23,1,0 +2013,9,16,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2012,-5,0,2140,-3,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1155,1,0,1410,-25,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,950,15,1,1830,-15,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-6,0,2331,-16,0,0 +2013,4,13,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-5,0,1237,-9,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1005,4,0,1115,0,0,0 +2013,8,7,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,14,0,2230,12,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,752,19,1,845,21,1,0 +2013,5,26,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,-2,0,1435,-2,0,0 +2013,4,28,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1920,1,0,2040,-6,0,0 +2013,4,1,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,326,1,1129,316,1,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,-6,0,1215,-9,0,0 +2013,8,23,5,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,26,1,2145,48,1,0 +2013,4,13,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2131,-7,0,2225,-1,0,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1245,-4,0,1525,-9,0,0 +2013,9,10,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,81,1,1925,78,1,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2010,75,1,2215,87,1,0 +2013,6,8,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,2,0,1217,-1,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,-2,0,2122,-34,0,0 +2013,9,4,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1620,-4,0,1657,-4,0,0 +2013,7,17,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1205,29,1,1325,26,1,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,730,0,0,830,-2,0,0 +2013,5,31,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2031,-4,0,2209,-15,0,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1725,85,1,2005,78,1,0 +2013,9,23,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2050,17,1,2215,13,0,0 +2013,5,26,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11042,Cleveland-Hopkins International,Cleveland,OH,1055,-6,0,1751,-30,0,0 +2013,6,16,7,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1050,5,0,1145,0,0,0 +2013,7,21,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1555,7,0,1700,55,1,0 +2013,8,4,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1145,1,0,1535,3,0,0 +2013,8,1,4,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,18,1,2150,17,1,0 +2013,10,20,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-11,0,1025,-34,0,0 +2013,6,18,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1005,-7,0,1125,-1,0,0 +2013,9,14,6,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,630,-7,0,1235,-3,0,0 +2013,9,23,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1610,2,0,16,15,1,0 +2013,5,20,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1310,-7,0,1420,-18,0,0 +2013,10,23,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,725,-3,0,845,14,0,0 +2013,4,30,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-10,0,1145,-21,0,0 +2013,4,23,2,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,0,0,945,18,1,0 +2013,10,7,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-5,0,1210,-19,0,0 +2013,10,16,3,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,-6,0,2104,-15,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1240,43,1,1420,34,1,0 +2013,7,23,2,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,845,0,0,1105,-3,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,-6,0,923,-15,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,2,0,951,-5,0,0 +2013,9,19,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,-5,0,1252,-20,0,0 +2013,4,27,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1520,-9,0,1623,-34,0,0 +2013,4,24,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-2,0,1305,-11,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1235,5,0,1555,5,0,0 +2013,6,27,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,53,1,1515,48,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,645,-6,0,820,-5,0,0 +2013,4,15,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1150,-7,0,1305,-3,0,0 +2013,10,14,1,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1205,-4,0,1255,-7,0,0 +2013,6,12,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1540,-2,0,1710,29,1,0 +2013,5,10,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2155,46,1,2335,49,1,0 +2013,5,10,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,75,1,1954,66,1,0 +2013,6,6,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2125,8,0,2300,-19,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,810,-4,0,925,-5,0,0 +2013,4,6,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,705,10,0,850,17,1,0 +2013,9,3,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1731,22,1,2018,-2,0,0 +2013,9,18,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-4,0,740,-16,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,1,0,1750,-31,0,0 +2013,5,16,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1817,-4,0,1854,-6,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,2,0,1845,13,0,0 +2013,7,24,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1601,-14,0,1900,-16,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1749,-1,0,2025,-3,0,0 +2013,9,25,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,29,1,500,15,1,0 +2013,8,11,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-4,0,1235,-6,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1535,-2,0,1750,-3,0,0 +2013,10,30,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,832,-5,0,945,-3,0,0 +2013,7,13,6,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1000,0,0,1330,-9,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1110,65,1,1220,49,1,0 +2013,7,5,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-6,0,1340,-18,0,0 +2013,6,4,2,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1535,-1,0,1755,-8,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,625,-1,0,740,3,0,0 +2013,8,23,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2120,-13,0,2215,-6,0,0 +2013,4,8,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,1,0,1253,8,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1435,1,0,1635,1,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,929,-1,0,1114,-4,0,0 +2013,9,4,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,824,-4,0,933,-9,0,0 +2013,9,19,4,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,925,-8,0,1643,0,0,0 +2013,5,23,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1800,0,,1921,0,1,1 +2013,9,9,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,0,,2039,0,1,1 +2013,4,29,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,600,-7,0,930,-12,0,0 +2013,6,1,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,933,30,1,1025,38,1,0 +2013,8,12,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,21,1,2230,9,0,0 +2013,4,2,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,3,0,1655,-3,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1945,-9,0,2155,-4,0,0 +2013,8,30,5,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,0,0,1445,-2,0,0 +2013,8,13,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,815,-1,0,940,-8,0,0 +2013,9,12,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-2,0,1411,8,0,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1450,4,0,1745,-5,0,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,12,0,1825,8,0,0 +2013,5,22,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1550,-1,0,1650,3,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1939,-6,0,2301,-8,0,0 +2013,10,22,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1122,69,1,1332,65,1,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,39,1,1508,51,1,0 +2013,9,25,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-3,0,1245,-15,0,0 +2013,8,25,7,9E,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,-3,0,1940,-10,0,0 +2013,7,22,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,18,1,920,34,1,0 +2013,10,4,5,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-2,0,1915,-4,0,0 +2013,6,21,5,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-5,0,1645,-21,0,0 +2013,6,26,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,146,1,1653,185,1,0 +2013,7,12,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,951,-9,0,1223,-7,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2020,4,0,2233,-6,0,0 +2013,6,25,2,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,830,6,0,1014,7,0,0 +2013,8,14,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2010,19,1,2125,14,0,0 +2013,7,1,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-2,0,1111,-2,0,0 +2013,10,19,6,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,725,-2,0,935,9,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,825,6,0,1335,4,0,0 +2013,5,20,1,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,1,0,553,-10,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,905,24,1,1140,41,1,0 +2013,4,25,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,2006,78,1,2115,84,1,0 +2013,6,3,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,745,-1,0,810,5,0,0 +2013,4,3,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1936,-5,0,2100,-7,0,0 +2013,8,22,4,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1631,0,,1904,0,1,1 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,905,-1,0,1255,-9,0,0 +2013,4,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,1,0,1130,-6,0,0 +2013,6,18,2,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,940,-19,0,0 +2013,10,7,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-1,0,1635,5,0,0 +2013,5,11,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-10,0,1125,-13,0,0 +2013,9,19,4,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1850,-1,0,2200,0,0,0 +2013,4,21,7,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,700,7,0,824,13,0,0 +2013,4,15,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2005,3,0,2050,33,1,0 +2013,5,18,6,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,54,1,2038,21,1,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,945,0,,1217,0,1,1 +2013,9,18,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1850,-9,0,2059,-15,0,0 +2013,5,19,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1310,0,0,1400,5,0,0 +2013,5,4,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,-5,0,1955,-16,0,0 +2013,6,27,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1852,10,0,2135,54,1,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,1,0,1245,1,0,0 +2013,5,2,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-3,0,1109,-7,0,0 +2013,7,21,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,901,18,1,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,-1,0,2303,6,0,0 +2013,9,18,3,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1345,-11,0,1633,-30,0,0 +2013,6,18,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-5,0,1008,-11,0,0 +2013,9,14,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,74,1,2155,82,1,0 +2013,6,5,3,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1856,-6,0,2051,-14,0,0 +2013,5,24,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1115,9,0,1145,-10,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,6,0,1435,-5,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,7,0,2100,-7,0,0 +2013,7,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,-1,0,2050,-15,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,-1,0,1410,3,0,0 +2013,4,5,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1146,20,1,1444,-12,0,0 +2013,7,3,3,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1155,81,1,1550,91,1,0 +2013,7,11,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,60,1,1018,43,1,0 +2013,6,24,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-3,0,1030,-11,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1410,-6,0,1800,-28,0,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-3,0,1525,3,0,0 +2013,7,29,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-3,0,1510,-12,0,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1410,12,0,1645,-5,0,0 +2013,9,3,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1758,11,0,1902,8,0,0 +2013,6,3,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,23,1,803,30,1,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,959,-1,0,1237,48,1,0 +2013,6,12,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1740,3,0,2020,42,1,0 +2013,5,27,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-7,0,1238,-5,0,0 +2013,6,13,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,751,0,0,1041,-6,0,0 +2013,5,22,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,22,1,1735,20,1,0 +2013,6,14,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,-1,0,2245,-5,0,0 +2013,8,2,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,0,0,1006,-11,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,0,0,1915,37,1,0 +2013,6,28,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1402,113,1,1710,141,1,0 +2013,5,29,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,11,0,1310,0,0,0 +2013,7,10,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1055,-2,0,1455,-4,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-4,0,1729,0,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,-1,0,1926,-14,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2036,92,1,2306,84,1,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,-1,0,1803,-20,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,-7,0,1525,-13,0,0 +2013,8,28,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1245,-2,0,1410,-6,0,0 +2013,10,26,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,910,10,0,1204,-4,0,0 +2013,10,2,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1306,-5,0,1514,-16,0,0 +2013,9,16,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,800,0,0,920,-1,0,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,605,-9,0,929,-28,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1545,87,1,1900,78,1,0 +2013,8,1,4,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1210,69,1,1545,68,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,0,0,1029,2,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,1,0,1652,-13,0,0 +2013,8,28,3,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1125,13,0,1335,6,0,0 +2013,8,25,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1035,14,0,1353,4,0,0 +2013,9,12,4,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1155,-2,0,1345,-1,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2238,3,0,2339,-17,0,0 +2013,4,29,1,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,611,0,,912,0,1,1 +2013,9,13,5,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,0,0,1758,-2,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-2,0,1016,-21,0,0 +2013,10,28,1,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,51,1,1755,32,1,0 +2013,9,2,1,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1324,21,1,1655,20,1,0 +2013,10,23,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-12,0,1344,-18,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1548,0,0,2029,7,0,0 +2013,7,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,39,1,1620,28,1,0 +2013,10,1,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1942,-12,0,2230,-21,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1910,58,1,2125,48,1,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-1,0,1931,-2,0,0 +2013,7,23,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1150,-3,0,1250,-6,0,0 +2013,6,7,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1105,47,1,1230,24,1,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,173,1,50,169,1,0 +2013,6,18,2,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1040,3,0,1614,-10,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,615,-10,0,1010,-10,0,0 +2013,6,3,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1000,-7,0,1254,-10,0,0 +2013,7,5,5,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1435,-3,0,1620,-10,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2023,9,0,2330,-9,0,0 +2013,6,15,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,645,-6,0,1438,-12,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1215,19,1,1650,-16,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,710,11,0,1200,-10,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,10,0,2125,2,0,0 +2013,10,29,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2003,-9,0,502,-9,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,816,4,0,1013,-12,0,0 +2013,4,7,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2155,2,0,2320,-6,0,0 +2013,7,2,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-2,0,1347,0,0,0 +2013,8,7,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,99,1,2145,86,1,0 +2013,7,6,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,1,0,755,-14,0,0 +2013,7,27,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1015,44,1,1133,45,1,0 +2013,8,13,2,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1250,8,0,1425,-5,0,0 +2013,8,25,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1220,-28,0,0 +2013,10,17,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1610,33,1,1735,29,1,0 +2013,6,9,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1517,-5,0,1855,-33,0,0 +2013,6,1,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1700,15,1,1732,21,1,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1925,-3,0,2201,-14,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,42,1,1845,32,1,0 +2013,9,21,6,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,730,0,0,827,-9,0,0 +2013,4,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1430,2,0,1821,14,0,0 +2013,10,12,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,850,-5,0,1236,0,0,0 +2013,6,7,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-8,0,721,-15,0,0 +2013,8,18,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,955,-4,0,1532,-8,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,34,1,2254,3,0,0 +2013,10,15,2,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-9,0,1810,2,0,0 +2013,5,1,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-10,0,1410,-14,0,0 +2013,10,27,7,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1120,-3,0,1245,9,0,0 +2013,7,20,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-5,0,1554,-11,0,0 +2013,6,5,3,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2325,-6,0,520,-24,0,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-6,0,2017,-2,0,0 +2013,8,15,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-2,0,1006,-10,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1945,35,1,2123,39,1,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1735,2,0,2110,-2,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1915,21,1,2039,5,0,0 +2013,6,7,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,36,1,1150,50,1,0 +2013,7,13,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,838,-7,0,1029,-15,0,0 +2013,5,19,7,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1725,164,1,2040,175,1,0 +2013,9,24,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1805,-9,0,2013,-18,0,0 +2013,10,2,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-3,0,1125,-1,0,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,931,-6,0,1021,4,0,0 +2013,6,5,3,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1805,5,0,1846,19,1,0 +2013,4,16,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,369,1,1255,361,1,0 +2013,4,6,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2105,-7,0,2226,-14,0,0 +2013,7,16,2,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,-5,0,2029,-6,0,0 +2013,10,31,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,10,0,1700,20,1,0 +2013,5,7,2,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1335,10,0,1950,5,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-3,0,1450,12,0,0 +2013,4,25,4,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,840,-5,0,1310,-9,0,0 +2013,4,5,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1854,14,0,2200,-14,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,820,17,1,930,17,1,0 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-3,0,817,-5,0,0 +2013,8,28,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,0,0,1515,0,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,15,1,2330,5,0,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,10,0,1631,7,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-5,0,1634,8,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,858,-7,0,1019,-29,0,0 +2013,5,1,3,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,-7,0,1255,-10,0,0 +2013,10,2,3,WN,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1645,-3,0,1905,-12,0,0 +2013,9,24,2,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1400,-10,0,1547,-14,0,0 +2013,5,15,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,920,40,1,1230,31,1,0 +2013,4,13,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2335,4,0,750,0,0,0 +2013,6,6,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-7,0,1007,-20,0,0 +2013,7,11,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,940,0,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,742,-3,0,1052,-11,0,0 +2013,7,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,50,1,1144,34,1,0 +2013,8,1,4,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1650,137,1,1808,138,1,0 +2013,7,31,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,615,-4,0,755,-17,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1730,161,1,1916,138,1,0 +2013,10,22,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1709,-4,0,1830,-4,0,0 +2013,6,14,5,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,710,31,1,1042,17,1,0 +2013,4,4,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-3,0,1300,-9,0,0 +2013,9,7,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1545,-9,0,2005,12,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,20,1,1050,12,0,0 +2013,7,11,4,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,224,1,1105,199,1,0 +2013,5,26,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,742,1,0,827,-10,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,108,1,1307,118,1,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1705,-1,0,2230,2,0,0 +2013,6,18,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-2,0,720,-5,0,0 +2013,9,8,7,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-6,0,1330,-8,0,0 +2013,8,1,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,1,0,739,12,0,0 +2013,9,24,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1250,11,0,1420,2,0,0 +2013,6,2,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1030,-6,0,1130,-5,0,0 +2013,7,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1925,4,0,2000,-5,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1735,-4,0,1916,-7,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2205,39,1,2359,13,0,0 +2013,9,7,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1650,-7,0,1815,-12,0,0 +2013,5,20,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,6,0,1233,1,0,0 +2013,6,6,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2019,36,1,2309,24,1,0 +2013,6,8,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1730,7,0,1830,-3,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,850,-3,0,1220,-8,0,0 +2013,10,25,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1630,10,0,2005,10,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1023,25,1,1640,35,1,0 +2013,5,21,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,615,22,1,725,24,1,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,915,-4,0,1255,-6,0,0 +2013,5,31,5,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,712,-1,0,931,-4,0,0 +2013,8,1,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1115,-6,0,1405,-11,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,19,1,1825,29,1,0 +2013,8,12,1,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1110,5,0,1655,3,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1150,7,0,1405,-5,0,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-3,0,1504,-6,0,0 +2013,4,21,7,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-14,0,1247,-24,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,905,-11,0,1030,-5,0,0 +2013,5,13,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-5,0,1535,0,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1630,48,1,1850,49,1,0 +2013,9,23,1,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1645,-3,0,1813,-22,0,0 +2013,9,11,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1725,0,,1915,0,1,1 +2013,4,4,4,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1420,-3,0,1606,-21,0,0 +2013,5,5,7,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1815,20,1,2055,19,1,0 +2013,9,12,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,59,1,1958,72,1,0 +2013,10,29,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-6,0,920,-7,0,0 +2013,8,19,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,835,-17,0,0 +2013,9,3,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1115,1,0,1340,11,0,0 +2013,5,29,3,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-5,0,720,-4,0,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2210,-3,0,50,-9,0,0 +2013,6,19,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1201,4,0,1420,2,0,0 +2013,8,28,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-8,0,1820,-14,0,0 +2013,9,28,6,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-6,0,1551,-19,0,0 +2013,5,30,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,51,1,820,53,1,0 +2013,9,28,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1140,4,0,1250,-5,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1915,8,0,9,26,1,0 +2013,7,16,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1730,1,0,1917,66,1,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1505,-5,0,1635,-12,0,0 +2013,8,27,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,634,-7,0,820,-15,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,950,35,1,1230,38,1,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1450,14,0,1755,6,0,0 +2013,5,26,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,-7,0,1626,-16,0,0 +2013,7,25,4,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1515,-5,0,1650,-15,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,727,-3,0,859,-2,0,0 +2013,6,13,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-6,0,1016,-17,0,0 +2013,7,1,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,751,0,0,1018,-14,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2125,-3,0,10,-14,0,0 +2013,8,31,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1910,2,0,2235,-33,0,0 +2013,10,22,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,4,0,1950,10,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,600,6,0,920,7,0,0 +2013,8,10,6,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1802,5,0,2023,6,0,0 +2013,8,26,1,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,615,-3,0,652,-14,0,0 +2013,5,20,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-12,0,900,-10,0,0 +2013,4,16,2,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,835,-7,0,1151,-25,0,0 +2013,7,18,4,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,823,-7,0,1014,-36,0,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,833,-1,0,1139,-5,0,0 +2013,9,24,2,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,630,-3,0,1456,-19,0,0 +2013,10,5,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1235,101,1,1340,136,1,0 +2013,7,26,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,10,0,1815,-6,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1755,208,1,2011,267,1,0 +2013,10,16,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1400,18,1,1930,-13,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,5,0,1955,-13,0,0 +2013,8,11,7,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,1,0,1033,-3,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1711,-1,0,2224,7,0,0 +2013,5,8,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,825,-7,0,855,-16,0,0 +2013,9,22,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1839,-4,0,2026,-9,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,800,-1,0,1235,-17,0,0 +2013,9,27,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,810,-4,0,910,-9,0,0 +2013,9,20,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-7,0,809,-5,0,0 +2013,10,23,3,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,3,0,601,2,0,0 +2013,7,16,2,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1815,71,1,2057,82,1,0 +2013,9,21,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1345,0,0,1425,12,0,0 +2013,4,19,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1541,-2,0,1915,-14,0,0 +2013,8,8,4,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,4,0,2120,-14,0,0 +2013,6,22,6,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-11,0,1244,-13,0,0 +2013,5,22,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1535,25,1,1655,40,1,0 +2013,10,9,3,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1756,-1,0,2115,2,0,0 +2013,5,21,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,120,1,5,119,1,0 +2013,7,10,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1315,-2,0,1342,-11,0,0 +2013,4,20,6,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-6,0,800,-8,0,0 +2013,10,1,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1540,-3,0,1635,-5,0,0 +2013,10,16,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1020,-2,0,1200,-10,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-1,0,1338,2,0,0 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1610,-4,0,24,-6,0,0 +2013,7,8,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,10,0,1345,6,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,12,0,2012,13,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2105,-2,0,2340,3,0,0 +2013,8,3,6,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1155,6,0,1440,-20,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1415,9,0,1510,8,0,0 +2013,8,11,7,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1631,0,,1939,0,1,1 +2013,8,28,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1547,19,1,1738,12,0,0 +2013,5,22,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,759,-6,0,1039,11,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1455,5,0,1800,7,0,0 +2013,6,19,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2207,-1,0,2351,10,0,0 +2013,6,10,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,17,1,2305,-7,0,0 +2013,6,14,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,15,1,2155,6,0,0 +2013,7,22,1,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,940,-4,0,1100,-6,0,0 +2013,9,23,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-4,0,2150,-3,0,0 +2013,9,21,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1844,-11,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,2035,-5,0,2220,-7,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1705,0,0,1840,-6,0,0 +2013,5,30,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1125,1,0,1200,0,0,0 +2013,6,16,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1946,56,1,2133,25,1,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1900,-5,0,2212,-8,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1245,6,0,1410,-5,0,0 +2013,6,19,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,16,1,1858,15,1,0 +2013,10,28,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1512,-4,0,1609,23,1,0 +2013,10,13,7,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,710,0,0,1018,-6,0,0 +2013,10,21,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,648,-6,0,0 +2013,7,9,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,4,0,1630,23,1,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1715,13,0,1855,11,0,0 +2013,6,29,6,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1655,15,1,1929,12,0,0 +2013,10,10,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-5,0,2013,21,1,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2030,68,1,2305,57,1,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,40,1,2035,121,1,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,849,-9,0,1634,12,0,0 +2013,9,23,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1143,39,1,1614,14,0,0 +2013,8,26,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-1,0,1115,-7,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2235,3,0,2325,-1,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1640,-1,0,1921,-11,0,0 +2013,9,27,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,800,-6,0,1605,-2,0,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1610,0,0,1752,-7,0,0 +2013,9,4,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2120,-3,0,555,-24,0,0 +2013,5,2,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-5,0,1650,25,1,0 +2013,5,31,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-7,0,1430,-4,0,0 +2013,6,17,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1519,5,0,1845,1,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1431,14,0,1535,6,0,0 +2013,9,14,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,-3,0,2155,-4,0,0 +2013,5,29,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-2,0,931,5,0,0 +2013,10,6,7,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1120,-6,0,1314,-10,0,0 +2013,8,11,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-8,0,917,-14,0,0 +2013,5,9,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1510,-5,0,1730,-14,0,0 +2013,7,29,1,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-3,0,1535,-3,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,58,1,1830,52,1,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1435,-4,0,1614,-30,0,0 +2013,9,27,5,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,848,101,1,1001,94,1,0 +2013,8,2,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,-6,0,1314,-27,0,0 +2013,7,31,3,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,1,0,1231,30,1,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,15,1,1938,11,0,0 +2013,5,25,6,EV,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1650,-6,0,1904,-18,0,0 +2013,10,18,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1535,-8,0,1655,-19,0,0 +2013,8,31,6,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,930,0,0,1810,-6,0,0 +2013,9,5,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1925,1,0,2159,-9,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,17,1,1615,3,0,0 +2013,8,10,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-1,0,900,-2,0,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1535,14,0,2030,18,1,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,7,0,930,-1,0,0 +2013,7,19,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,21,1,2050,29,1,0 +2013,4,21,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,-11,0,745,-11,0,0 +2013,8,10,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-5,0,1533,-18,0,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1855,55,1,2025,47,1,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1005,0,0,1105,4,0,0 +2013,9,7,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1303,-4,0,1617,-1,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,57,1,2023,38,1,0 +2013,6,7,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-9,0,1040,-10,0,0 +2013,7,2,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,20,-1,0,815,14,0,0 +2013,6,5,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,4,0,930,-3,0,0 +2013,4,27,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1744,-9,0,1905,-22,0,0 +2013,8,20,2,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1525,16,1,2020,10,0,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1715,33,1,1910,17,1,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1845,27,1,2110,2,0,0 +2013,4,18,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,31,1,815,44,1,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,18,1,1055,3,0,0 +2013,10,31,4,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,-5,0,1440,-8,0,0 +2013,9,14,6,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-4,0,847,-1,0,0 +2013,9,17,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1650,-5,0,1835,-22,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-6,0,937,-5,0,0 +2013,8,12,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1543,18,1,1909,5,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1815,1,0,2340,10,0,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,-6,0,2335,-1,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1410,-2,0,1534,4,0,0 +2013,6,18,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1140,-4,0,1350,-8,0,0 +2013,5,5,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1005,4,0,1220,-13,0,0 +2013,10,21,1,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,855,-6,0,1504,-15,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,39,1,1910,29,1,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2058,-7,0,2238,-15,0,0 +2013,7,27,6,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-14,0,1015,-5,0,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1026,4,0,1611,-18,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1945,7,0,1955,6,0,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2039,-12,0,2204,-22,0,0 +2013,4,24,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1005,-4,0,1120,-3,0,0 +2013,10,13,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1805,10,0,1925,-2,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1939,2,0,2250,2,0,0 +2013,7,31,3,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1516,-3,0,1744,-13,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1820,57,1,2040,38,1,0 +2013,9,3,2,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1015,-3,0,1115,-9,0,0 +2013,6,21,5,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-6,0,1229,-2,0,0 +2013,9,13,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,1,0,1324,-3,0,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,645,-4,0,950,-2,0,0 +2013,8,24,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,801,-4,0,921,0,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,22,1,1349,19,1,0 +2013,8,17,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-11,0,1212,-22,0,0 +2013,9,6,5,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,0,0,1105,-11,0,0 +2013,7,11,4,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1157,30,1,2023,20,1,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1835,9,0,2130,8,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1545,19,1,2230,-15,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1045,0,0,1205,-6,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1940,0,,2035,0,1,1 +2013,8,28,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,104,1,1759,101,1,0 +2013,10,25,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1728,16,1,2026,5,0,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1635,163,1,2005,130,1,0 +2013,7,1,1,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,-4,0,1033,-4,0,0 +2013,9,3,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,539,-6,0,658,-20,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1053,1,0,0 +2013,6,14,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1215,18,1,1313,22,1,0 +2013,5,28,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1457,12,0,1837,40,1,0 +2013,8,13,2,FL,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,7,0,2235,-10,0,0 +2013,10,20,7,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,810,-2,0,1002,5,0,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1010,-7,0,1132,-25,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,-6,0,1236,-39,0,0 +2013,4,24,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1242,28,1,1611,19,1,0 +2013,4,9,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1630,-7,0,45,-6,0,0 +2013,7,27,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-2,0,808,10,0,0 +2013,10,29,2,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-3,0,905,-12,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1320,-3,0,1605,-4,0,0 +2013,10,20,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-7,0,940,-6,0,0 +2013,6,16,7,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1839,-6,0,2028,-23,0,0 +2013,5,4,6,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1825,-3,0,2146,-43,0,0 +2013,7,31,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1947,10,0,2135,-4,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1726,-1,0,1919,-14,0,0 +2013,6,23,7,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1905,0,,2335,0,1,1 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-3,0,2010,-7,0,0 +2013,8,30,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,805,159,1,1510,175,1,0 +2013,10,20,7,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,830,-1,0,1125,19,1,0 +2013,4,14,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,930,-2,0,1040,-12,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1406,-7,0,1452,-3,0,0 +2013,7,30,2,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1015,1,0,1145,-11,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1533,8,0,1718,5,0,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1450,13,0,1615,17,1,0 +2013,4,28,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,745,11,0,1049,-5,0,0 +2013,6,1,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,1240,-9,0,0 +2013,8,19,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1320,7,0,1905,1,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1505,2,0,1629,0,0,0 +2013,8,11,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1518,9,0,2359,-10,0,0 +2013,5,6,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1135,-10,0,1724,4,0,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-2,0,2130,-2,0,0 +2013,5,20,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,91,1,1007,94,1,0 +2013,4,16,2,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,800,-4,0,1147,-15,0,0 +2013,4,18,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1123,30,1,1638,73,1,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,5,0,1250,-6,0,0 +2013,4,19,5,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,0,,700,0,1,1 +2013,7,24,3,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,623,-3,0,928,-24,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1425,-1,0,1900,-4,0,0 +2013,9,28,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1400,-6,0,1525,-10,0,0 +2013,8,21,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1845,-8,0,2030,-34,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,930,31,1,1203,15,1,0 +2013,5,23,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,940,-11,0,0 +2013,10,19,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,858,-5,0,1050,-12,0,0 +2013,8,15,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,0,,1054,0,1,1 +2013,5,27,1,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1940,102,1,2209,94,1,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,-5,0,1426,-6,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1325,3,0,1850,-8,0,0 +2013,6,6,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,42,1,1225,39,1,0 +2013,8,15,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1645,-7,0,1735,-5,0,0 +2013,7,23,2,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2359,30,1,828,26,1,0 +2013,8,12,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,-3,0,1255,-8,0,0 +2013,10,2,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1016,-7,0,1311,-10,0,0 +2013,10,3,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1518,38,1,1700,30,1,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,48,1,1953,56,1,0 +2013,9,7,6,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,925,-3,0,1010,-11,0,0 +2013,8,13,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1555,-4,0,1700,-12,0,0 +2013,10,27,7,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,-6,0,1605,-8,0,0 +2013,5,26,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1240,-6,0,1616,12,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1511,-7,0,1852,31,1,0 +2013,10,16,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1324,-1,0,1630,-14,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,6,0,1415,5,0,0 +2013,7,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,813,-1,0,959,-15,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,-4,0,2050,0,0,0 +2013,9,20,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,630,-3,0,831,-19,0,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1240,209,1,1757,199,1,0 +2013,9,23,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,845,5,0,1010,7,0,0 +2013,5,19,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,815,-7,0,1415,-12,0,0 +2013,5,30,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,909,-2,0,1415,-10,0,0 +2013,4,16,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1848,3,0,2101,10,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1108,0,0,1542,12,0,0 +2013,9,29,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2245,11,0,2324,5,0,0 +2013,10,1,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1345,-6,0,1450,-5,0,0 +2013,9,30,1,9E,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1440,1,0,1750,2,0,0 +2013,6,12,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,2039,12,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1205,0,0,1315,5,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,945,-6,0,1120,-17,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1615,0,0,1736,4,0,0 +2013,4,23,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,811,10,0,930,-1,0,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1325,14,0,1430,5,0,0 +2013,9,16,1,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1835,-5,0,2120,-14,0,0 +2013,6,15,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2005,-2,0,2130,-7,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,3,0,1015,39,1,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,101,1,1545,86,1,0 +2013,8,31,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1239,-5,0,1534,15,1,0 +2013,7,25,4,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1516,-6,0,1744,-17,0,0 +2013,5,14,2,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-15,0,1256,-13,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1145,0,0,1510,-7,0,0 +2013,6,22,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1220,1,0,1425,-5,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1258,0,0,1424,-4,0,0 +2013,5,12,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1922,-9,0,2242,-16,0,0 +2013,6,6,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-1,0,951,-3,0,0 +2013,7,24,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1210,39,1,1330,33,1,0 +2013,10,15,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,-4,0,944,-14,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,40,1,2040,30,1,0 +2013,10,10,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,945,-9,0,1105,-15,0,0 +2013,6,10,1,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1020,35,1,1245,33,1,0 +2013,4,11,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1235,-3,0,1829,-17,0,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-1,0,1840,3,0,0 +2013,7,13,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1755,-16,0,2000,-43,0,0 +2013,6,7,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,1,0,1420,46,1,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1740,49,1,2255,44,1,0 +2013,5,10,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1235,7,0,1325,4,0,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,640,0,0,800,-2,0,0 +2013,8,29,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1125,-3,0,1420,-21,0,0 +2013,8,3,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1741,43,1,2033,14,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-1,0,2303,-9,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1100,15,1,1535,9,0,0 +2013,9,1,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,-1,0,735,-8,0,0 +2013,6,24,1,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,840,-8,0,0 +2013,10,31,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1412,-8,0,1554,-4,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,640,-1,0,930,-13,0,0 +2013,9,7,6,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1505,-2,0,1635,-11,0,0 +2013,4,10,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-5,0,1511,-28,0,0 +2013,4,13,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,-2,0,1930,-20,0,0 +2013,5,21,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,113,1,1840,105,1,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,-2,0,2305,-5,0,0 +2013,7,4,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,823,-4,0,0 +2013,4,8,1,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1112,1,0,1844,13,0,0 +2013,9,21,6,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-6,0,1216,-11,0,0 +2013,7,30,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,645,386,1,1022,388,1,0 +2013,9,1,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1030,-1,0,1130,-6,0,0 +2013,9,6,5,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-4,0,1011,-31,0,0 +2013,6,25,2,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1417,-5,0,1604,-14,0,0 +2013,9,25,3,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,847,-4,0,1124,0,0,0 +2013,7,4,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,11,0,1610,4,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,600,-3,0,725,-8,0,0 +2013,9,15,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2015,1,0,2135,-3,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1520,0,0,1815,-4,0,0 +2013,10,23,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1115,0,0,1220,-4,0,0 +2013,4,13,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1330,-4,0,1559,31,1,0 +2013,7,27,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1235,10,0,1345,10,0,0 +2013,8,18,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1925,-2,0,2055,-4,0,0 +2013,10,16,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-6,0,1912,-8,0,0 +2013,5,29,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1935,4,0,2120,3,0,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,4,0,2125,-12,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1940,-2,0,2230,-18,0,0 +2013,4,21,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1935,11,0,2100,8,0,0 +2013,7,2,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,2,0,806,17,1,0 +2013,10,9,3,YV,13342,General Mitchell International,Milwaukee,WI,11057,Charlotte Douglas International,Charlotte,NC,1625,5,0,1925,0,0,0 +2013,6,4,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2212,3,0,47,-20,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,926,-2,0,1120,-7,0,0 +2013,8,27,2,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1415,-2,0,1607,5,0,0 +2013,10,8,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-4,0,610,0,0,0 +2013,9,10,2,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2100,30,1,508,43,1,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,-2,0,800,-9,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1555,0,0,1705,-7,0,0 +2013,7,20,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,0,0,1835,0,1,1 +2013,10,26,6,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,-1,0,1735,-7,0,0 +2013,10,17,4,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1735,-5,0,1953,10,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2030,127,1,2235,126,1,0 +2013,10,19,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,44,1,1859,36,1,0 +2013,4,19,5,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,710,-7,0,944,-7,0,0 +2013,8,24,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,600,-5,0,734,-20,0,0 +2013,10,11,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,2,0,1648,-7,0,0 +2013,7,30,2,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1310,1,0,1630,1,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1626,-7,0,1848,-12,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,14,0,2105,2,0,0 +2013,4,17,3,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1855,-3,0,2010,-1,0,0 +2013,5,29,3,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,610,-2,0,737,-12,0,0 +2013,6,16,7,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2127,0,,515,0,1,1 +2013,6,27,4,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2155,0,0,508,-5,0,0 +2013,6,30,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1545,57,1,1655,43,1,0 +2013,10,24,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,0,,1729,0,1,1 +2013,6,25,2,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1240,-1,0,1455,-10,0,0 +2013,6,26,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1230,13,0,1405,4,0,0 +2013,5,1,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1642,-6,0,1930,-3,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,-8,0,830,-14,0,0 +2013,10,4,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1556,-7,0,2000,-22,0,0 +2013,8,27,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-1,0,1710,-9,0,0 +2013,4,30,2,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,61,1,2100,64,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,-2,0,1817,-1,0,0 +2013,10,17,4,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,9,0,1400,4,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1845,19,1,2030,15,1,0 +2013,6,14,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1416,101,1,1644,109,1,0 +2013,9,11,3,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1326,-10,0,1617,-8,0,0 +2013,4,26,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1635,-4,0,1750,-5,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1040,0,,1250,0,1,1 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1840,-3,0,2335,-1,0,0 +2013,7,20,6,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-7,0,912,-16,0,0 +2013,10,6,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1417,-1,0,1601,-11,0,0 +2013,10,19,6,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,0,0,1805,-10,0,0 +2013,10,14,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,724,-1,0,929,39,1,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1012,-2,0,1332,-7,0,0 +2013,8,23,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-12,0,1055,-27,0,0 +2013,4,29,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1355,-5,0,1445,-18,0,0 +2013,7,28,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-1,0,1200,-9,0,0 +2013,10,6,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-10,0,1810,-30,0,0 +2013,4,9,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-5,0,2050,-12,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,950,43,1,1105,47,1,0 +2013,9,9,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1501,-6,0,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1957,-5,0,2108,-9,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,9,0,1340,1,0,0 +2013,6,26,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1535,23,1,1740,7,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,-1,0,2147,-6,0,0 +2013,10,8,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1359,-6,0,2205,0,0,0 +2013,7,20,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1544,-5,0,1836,-15,0,0 +2013,9,15,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1050,24,1,1235,19,1,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1014,-6,0,1405,-23,0,0 +2013,6,29,6,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1500,-5,0,1645,-26,0,0 +2013,10,15,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2255,9,0,2358,4,0,0 +2013,8,1,4,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,-5,0,2125,-11,0,0 +2013,8,12,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-1,0,1800,-16,0,0 +2013,5,24,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,610,0,0,847,3,0,0 +2013,9,13,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-2,0,1910,-13,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,0,,1500,0,1,1 +2013,4,24,3,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,823,-5,0,912,21,1,0 +2013,9,6,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1120,8,0,1445,6,0,0 +2013,5,22,3,OO,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1650,57,1,1811,52,1,0 +2013,4,5,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1015,-5,0,1300,-19,0,0 +2013,6,12,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,0,0,910,2,0,0 +2013,9,20,5,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1719,-2,0,1840,0,0,0 +2013,5,24,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,1,0,1325,6,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1557,41,1,1733,42,1,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2155,1,0,2355,-12,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,11,0,2235,2,0,0 +2013,7,30,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1215,83,1,1835,37,1,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,1,0,1828,-5,0,0 +2013,5,12,7,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,710,1,0,832,-3,0,0 +2013,5,21,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1500,74,1,2055,58,1,0 +2013,10,29,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2204,-8,0,557,-18,0,0 +2013,6,18,2,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,149,1,130,129,1,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,954,-7,0,1148,-46,0,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,-5,0,1015,-8,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2015,112,1,2220,104,1,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1330,22,1,1939,1,0,0 +2013,6,6,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,93,1,1115,81,1,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,630,-1,0,730,1,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,0,0,1335,2,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,26,1,1515,55,1,0 +2013,6,23,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,3,0,1135,16,1,0 +2013,6,16,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,21,1,1325,18,1,0 +2013,4,3,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2028,7,0,2154,0,0,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1300,84,1,1540,78,1,0 +2013,7,14,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,5,0,1650,4,0,0 +2013,6,8,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1625,-4,0,1835,-8,0,0 +2013,6,6,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1733,57,1,2105,43,1,0 +2013,9,13,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1520,-4,0,2115,-12,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,11,0,1315,-17,0,0 +2013,8,9,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,7,0,925,18,1,0 +2013,4,21,7,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,710,-3,0,840,-22,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1315,-7,0,1429,-20,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,931,-1,0,1108,19,1,0 +2013,10,5,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1129,-11,0,1405,-31,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1450,6,0,1800,12,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1648,13,0,1825,-1,0,0 +2013,4,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1120,-4,0,1235,-6,0,0 +2013,6,9,7,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1245,34,1,1538,24,1,0 +2013,5,30,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,-2,0,1135,-1,0,0 +2013,5,3,5,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1245,5,0,1350,-12,0,0 +2013,6,5,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-9,0,1749,-22,0,0 +2013,7,14,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,923,-5,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1010,0,0,1310,2,0,0 +2013,7,25,4,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,3,0,1600,-18,0,0 +2013,7,10,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,-5,0,1747,10,0,0 +2013,8,18,7,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1825,155,1,2115,151,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1712,-3,0,1847,-2,0,0 +2013,6,4,2,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-4,0,1000,-20,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1045,6,0,1210,3,0,0 +2013,10,5,6,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,600,0,0,728,1,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1900,36,1,2230,25,1,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,815,-1,0,922,-7,0,0 +2013,5,14,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1050,-3,0,1100,-9,0,0 +2013,9,3,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1406,-2,0,1656,-8,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1515,79,1,1830,80,1,0 +2013,4,8,1,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1603,90,1,1831,89,1,0 +2013,8,21,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2344,30,1,338,34,1,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2050,0,0,2330,-3,0,0 +2013,4,27,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-9,0,646,-10,0,0 +2013,10,6,7,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-4,0,1040,-19,0,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1255,-1,0,1410,-10,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1614,0,0,44,-16,0,0 +2013,7,31,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-8,0,901,-35,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1405,-6,0,1750,-27,0,0 +2013,4,7,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,910,34,1,950,26,1,0 +2013,4,9,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-5,0,622,21,1,0 +2013,8,15,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,-4,0,2045,-8,0,0 +2013,10,9,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,835,-7,0,935,-5,0,0 +2013,4,17,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-6,0,2020,12,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1756,2,0,1924,7,0,0 +2013,9,24,2,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2045,-9,0,2150,-24,0,0 +2013,4,26,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-4,0,1217,-20,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-7,0,1155,-18,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,12,0,1600,1,0,0 +2013,4,26,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,2030,-8,0,2105,-13,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1630,-2,0,1749,0,0,0 +2013,9,25,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1020,0,0,1310,-8,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,920,22,1,1350,31,1,0 +2013,9,9,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1435,-10,0,1600,-17,0,0 +2013,9,7,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1540,16,1,1700,5,0,0 +2013,7,21,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-4,0,1015,-2,0,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,1,0,505,10,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1550,1,0,1655,-3,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1650,10,0,2035,16,1,0 +2013,5,26,7,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-5,0,1805,-8,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,820,32,1,1000,25,1,0 +2013,7,31,3,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,855,-2,0,1101,-3,0,0 +2013,10,2,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-4,0,1205,-11,0,0 +2013,6,10,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,58,1,1900,11,0,0 +2013,4,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1355,20,1,1455,13,0,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,805,-2,0,940,-3,0,0 +2013,5,30,4,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1823,-3,0,2100,-14,0,0 +2013,6,4,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1102,12,0,1153,5,0,0 +2013,5,22,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1232,-5,0,1520,-9,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1516,6,0,1718,-2,0,0 +2013,8,24,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,955,-2,0,1115,-10,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,1,0,1112,0,0,0 +2013,10,31,4,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-1,0,1230,-7,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1537,9,0,1740,25,1,0 +2013,6,12,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2345,1,0,714,4,0,0 +2013,4,22,1,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1104,-1,0,1430,5,0,0 +2013,10,13,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1850,26,1,1955,22,1,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,88,1,1509,74,1,0 +2013,8,20,2,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1725,-4,0,1730,8,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1245,2,0,1455,-21,0,0 +2013,7,10,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1520,-3,0,1659,-17,0,0 +2013,4,13,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1015,-8,0,1150,-7,0,0 +2013,10,31,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1020,-4,0,1220,-10,0,0 +2013,8,27,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,2,0,1800,5,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1031,14,0,1205,11,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1700,-6,0,2005,5,0,0 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,735,-7,0,935,4,0,0 +2013,4,3,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-6,0,1904,-7,0,0 +2013,6,14,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1710,19,1,1937,-4,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,-1,0,1503,5,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1559,5,0,1730,-12,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,-3,0,2135,-5,0,0 +2013,4,30,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1420,-2,0,1747,0,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,745,42,1,950,43,1,0 +2013,7,18,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1715,12,0,2128,11,0,0 +2013,8,4,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,27,1,2035,22,1,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1115,-5,0,1204,-16,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,950,13,0,1520,4,0,0 +2013,10,20,7,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1046,15,1,1535,-20,0,0 +2013,5,7,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-6,0,1115,-12,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1705,-4,0,1941,5,0,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-8,0,833,-20,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,925,22,1,1130,14,0,0 +2013,5,29,3,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,4,0,1820,-3,0,0 +2013,6,20,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,910,-10,0,1032,2,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1820,0,0,2007,-16,0,0 +2013,9,22,7,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2319,4,0,730,-12,0,0 +2013,4,6,6,UA,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-2,0,2302,-23,0,0 +2013,6,8,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1013,-4,0,1116,-12,0,0 +2013,8,15,4,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,801,-3,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1350,-1,0,1711,-40,0,0 +2013,8,11,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2140,7,0,2220,9,0,0 +2013,8,5,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,0,0,1626,-17,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,716,4,0,1036,-9,0,0 +2013,9,24,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,-2,0,2135,-13,0,0 +2013,7,6,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,1155,-12,0,0 +2013,8,6,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,0,0,1505,-6,0,0 +2013,6,24,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1835,-5,0,2029,-9,0,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-4,0,1200,-12,0,0 +2013,9,10,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-4,0,705,4,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,755,-6,0,914,15,1,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2300,-7,0,655,-1,0,0 +2013,10,14,1,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2130,-3,0,2359,-3,0,0 +2013,10,18,5,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,755,4,0,1028,27,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1041,4,0,1155,-5,0,0 +2013,6,14,5,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,-2,0,2000,10,0,0 +2013,10,30,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,-1,0,1105,2,0,0 +2013,7,29,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,-8,0,840,-11,0,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,-3,0,1659,-30,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,21,1,2115,35,1,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,0,0,652,4,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1910,20,1,2125,21,1,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1930,6,0,2130,-10,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1225,16,1,1415,11,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-1,0,1031,2,0,0 +2013,8,21,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1832,42,1,1929,33,1,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1500,96,1,1940,75,1,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,910,-2,0,1155,3,0,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1759,-3,0,1944,-18,0,0 +2013,8,24,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14057,Portland International,Portland,OR,1813,-11,0,2020,-40,0,0 +2013,7,12,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-6,0,1202,-16,0,0 +2013,10,1,2,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2213,-7,0,2350,-8,0,0 +2013,8,6,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,710,-11,0,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,8,0,1458,-7,0,0 +2013,9,29,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1126,-6,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,2000,29,1,2320,19,1,0 +2013,8,27,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1610,-5,0,1845,-8,0,0 +2013,9,29,7,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,801,-7,0,930,-18,0,0 +2013,8,6,2,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,38,1,2055,22,1,0 +2013,4,12,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1658,7,0,1828,30,1,0 +2013,10,16,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1055,4,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1815,0,0,1917,-11,0,0 +2013,10,24,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,750,-2,0,905,-10,0,0 +2013,5,24,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-5,0,1134,-3,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,2,0,1615,-7,0,0 +2013,7,15,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1705,-6,0,1842,-12,0,0 +2013,9,25,3,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,832,-3,0,1017,-21,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1040,-2,0,1306,-13,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,17,1,2050,11,0,0 +2013,4,6,6,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1555,29,1,1903,24,1,0 +2013,4,26,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,8,0,1413,13,0,0 +2013,6,17,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,3,0,1223,-1,0,0 +2013,5,5,7,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1346,-6,0,1644,-17,0,0 +2013,8,19,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,9,0,830,17,1,0 +2013,5,23,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1945,21,1,2209,35,1,0 +2013,5,24,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-4,0,2125,-9,0,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,-1,0,1120,-6,0,0 +2013,5,10,5,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1620,1,0,1827,-7,0,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,10,0,2025,2,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1340,9,0,1454,17,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,14,0,2221,-5,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,0,0,1418,-6,0,0 +2013,4,8,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1700,-1,0,1929,-26,0,0 +2013,10,5,6,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,5,0,1905,10,0,0 +2013,5,14,2,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1135,0,0,1725,17,1,0 +2013,8,7,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,42,1,1700,55,1,0 +2013,6,2,7,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,902,-1,0,1737,-11,0,0 +2013,6,2,7,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,910,4,0,940,5,0,0 +2013,5,11,6,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1925,-6,0,2030,-3,0,0 +2013,7,19,5,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,21,1,1235,24,1,0 +2013,8,3,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-3,0,1601,6,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1500,17,1,1722,21,1,0 +2013,10,17,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-8,0,1125,-12,0,0 +2013,8,9,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-9,0,1518,-3,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1400,5,0,1520,-7,0,0 +2013,7,10,3,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1019,-4,0,1440,5,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1240,10,0,1605,12,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1140,9,0,1423,-20,0,0 +2013,4,22,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,848,0,0,1022,1,0,0 +2013,10,3,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,0,0,928,-4,0,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-2,0,2050,-10,0,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,-2,0,2040,-10,0,0 +2013,5,2,4,EV,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1100,-9,0,1251,-24,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,16,1,2025,39,1,0 +2013,5,13,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-1,0,924,-3,0,0 +2013,9,25,3,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1900,0,0,2131,-17,0,0 +2013,4,5,5,FL,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1815,-10,0,1905,-18,0,0 +2013,7,17,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,-6,0,2045,-11,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,840,0,0,1020,5,0,0 +2013,5,2,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,-1,0,2140,-5,0,0 +2013,7,17,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,0,,1310,0,1,1 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1245,5,0,1410,-4,0,0 +2013,7,9,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,-3,0,735,-5,0,0 +2013,8,9,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-3,0,957,-7,0,0 +2013,4,20,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-1,0,1533,-15,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2100,-1,0,2313,-19,0,0 +2013,4,14,7,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,41,1,1700,59,1,0 +2013,10,23,3,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-9,0,647,-30,0,0 +2013,4,5,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-11,0,1520,-29,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1320,22,1,1530,23,1,0 +2013,6,18,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1800,22,1,1855,11,0,0 +2013,4,23,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1635,3,0,1830,-14,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2239,47,1,634,36,1,0 +2013,6,16,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1515,-9,0,0 +2013,10,15,2,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1645,-3,0,2352,-29,0,0 +2013,6,17,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-2,0,1202,-15,0,0 +2013,5,23,4,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,941,-5,0,1136,-12,0,0 +2013,10,2,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,820,-8,0,1145,-14,0,0 +2013,10,25,5,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1900,0,0,2018,-8,0,0 +2013,9,13,5,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,20,1,1400,9,0,0 +2013,4,14,7,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1709,-2,0,1841,19,1,0 +2013,5,8,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,4,0,1650,5,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-3,0,2025,-4,0,0 +2013,8,20,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,0,0,1715,1,0,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,-4,0,2015,7,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2220,-4,0,2315,-4,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2159,0,0,2326,-22,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,99,1,1732,117,1,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,725,-5,0,1000,-2,0,0 +2013,6,5,3,OO,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,828,-5,0,1100,13,0,0 +2013,10,21,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1800,-5,0,2038,-14,0,0 +2013,8,26,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,959,-3,0,1315,2,0,0 +2013,6,7,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-4,0,1350,4,0,0 +2013,5,26,7,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,79,1,2110,71,1,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2000,0,0,2125,-2,0,0 +2013,6,23,7,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-1,0,2240,-13,0,0 +2013,6,16,7,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,855,1,0,1445,-16,0,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,27,1,2300,8,0,0 +2013,7,3,3,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2325,-1,0,509,9,0,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,940,0,0,1100,-3,0,0 +2013,9,21,6,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,841,-1,0,938,-5,0,0 +2013,9,4,3,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,0,0,1415,-2,0,0 +2013,7,14,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1023,2,0,1155,-17,0,0 +2013,9,16,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,850,-5,0,1008,0,0,0 +2013,8,22,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,31,1,2132,11,0,0 +2013,9,2,1,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1905,5,0,2025,2,0,0 +2013,9,16,1,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-3,0,1600,-9,0,0 +2013,9,21,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1507,-7,0,2010,-12,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1830,11,0,1920,37,1,0 +2013,4,24,3,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1705,-13,0,1843,-7,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1405,0,0,1750,-14,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-1,0,843,-19,0,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1935,-2,0,2040,-8,0,0 +2013,5,7,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,2,0,1050,-2,0,0 +2013,7,1,1,DL,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-3,0,1111,-6,0,0 +2013,7,24,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-6,0,1839,-15,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1825,33,1,1940,27,1,0 +2013,6,20,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-6,0,1641,-20,0,0 +2013,5,2,4,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1720,-11,0,1839,-25,0,0 +2013,9,15,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-4,0,1045,-6,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,955,-8,0,1203,4,0,0 +2013,5,10,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1236,68,1,1401,75,1,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1445,18,1,1705,11,0,0 +2013,7,3,3,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1216,38,1,1302,38,1,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,11,0,955,5,0,0 +2013,6,16,7,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,146,1,841,132,1,0 +2013,5,17,5,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1845,-4,0,2017,-20,0,0 +2013,9,3,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,730,-14,0,0 +2013,10,7,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-3,0,1040,-10,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,22,1,1535,16,1,0 +2013,5,25,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,905,-1,0,1140,-7,0,0 +2013,9,5,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-9,0,849,-5,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,10,0,1420,-6,0,0 +2013,10,6,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,-4,0,1930,-7,0,0 +2013,7,27,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,24,1,1618,15,1,0 +2013,9,8,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1815,19,1,1910,15,1,0 +2013,7,16,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1315,96,1,1410,90,1,0 +2013,9,18,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,840,1,0,1105,4,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1015,0,0,1455,0,0,0 +2013,5,27,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,-7,0,1935,-24,0,0 +2013,7,26,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1504,-10,0,1730,-19,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,843,-6,0,1215,-2,0,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,733,2,0,1102,9,0,0 +2013,5,31,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,850,0,0,1010,3,0,0 +2013,7,26,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1350,-10,0,1644,-12,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1750,-1,0,2018,-26,0,0 +2013,5,6,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2250,3,0,626,10,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,2,0,2235,12,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,725,-4,0,905,-9,0,0 +2013,10,17,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-9,0,2021,-2,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1225,18,1,1335,5,0,0 +2013,6,13,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1310,-6,0,2108,29,1,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,7,0,1629,-4,0,0 +2013,8,13,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1446,92,1,1832,97,1,0 +2013,6,10,1,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,1,0,1809,-2,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1439,0,0,1654,-4,0,0 +2013,9,22,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,951,-6,0,1335,-12,0,0 +2013,4,1,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,-8,0,839,-9,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1640,12,0,1804,102,1,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,1,0,1255,-14,0,0 +2013,8,9,5,WN,10693,Nashville International,Nashville,TN,14747,Seattle/Tacoma International,Seattle,WA,1225,0,0,1510,-10,0,0 +2013,10,18,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-5,0,1043,11,0,0 +2013,10,29,2,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,2,0,1316,-5,0,0 +2013,9,24,2,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1820,-4,0,2145,-46,0,0 +2013,9,27,5,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,1,0,1945,-12,0,0 +2013,8,15,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,2,0,1654,0,0,0 +2013,6,22,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-10,0,904,-9,0,0 +2013,5,1,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1540,0,0,1640,-4,0,0 +2013,9,20,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,-4,0,1730,-5,0,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,6,0,1822,13,0,0 +2013,10,16,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,4,0,1249,15,1,0 +2013,5,21,2,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,920,-2,0,1215,-10,0,0 +2013,7,10,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,0,0,1212,-12,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1410,31,1,1710,15,1,0 +2013,5,29,3,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,935,6,0,1115,2,0,0 +2013,8,31,6,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1030,-5,0,1330,-6,0,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1705,12,0,2024,-2,0,0 +2013,10,16,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1026,-9,0,1130,-16,0,0 +2013,6,26,3,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,900,14,0,1213,12,0,0 +2013,4,11,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1600,36,1,1715,44,1,0 +2013,5,29,3,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1430,14,0,1845,-21,0,0 +2013,5,18,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,38,1,1520,25,1,0 +2013,4,14,7,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,183,1,2212,167,1,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,10,0,1914,-7,0,0 +2013,10,17,4,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,0,0,1905,-1,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2050,18,1,2150,3,0,0 +2013,8,19,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1230,98,1,1345,97,1,0 +2013,7,22,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-2,0,900,-13,0,0 +2013,9,30,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,2,0,1135,-18,0,0 +2013,10,18,5,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1859,0,0,2123,-11,0,0 +2013,6,17,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,7,0,1820,26,1,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1920,65,1,55,60,1,0 +2013,8,16,5,9E,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-5,0,1716,-5,0,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1635,24,1,1845,25,1,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,2,0,100,4,0,0 +2013,6,20,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,13,0,1845,7,0,0 +2013,8,7,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,940,5,0,0 +2013,7,29,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,1,0,1144,24,1,0 +2013,9,26,4,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,0,0,1116,-14,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1317,-3,0,1527,2,0,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,837,-8,0,1135,27,1,0 +2013,5,15,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1525,28,1,1829,27,1,0 +2013,10,25,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1405,32,1,2000,34,1,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2010,62,1,2130,63,1,0 +2013,9,11,3,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-2,0,1022,-13,0,0 +2013,10,28,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1335,-2,0,1442,-23,0,0 +2013,6,28,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1125,108,1,1250,99,1,0 +2013,8,1,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-4,0,2148,29,1,0 +2013,10,6,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1032,-10,0,1115,-5,0,0 +2013,4,26,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,2017,-8,0,2218,-23,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1530,-1,0,1819,-33,0,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2025,14,0,2230,6,0,0 +2013,5,29,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2155,-3,0,2320,-9,0,0 +2013,7,30,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,-1,0,1440,-12,0,0 +2013,9,22,7,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,185,1,1350,177,1,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-7,0,1328,-4,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,610,-1,0,855,-2,0,0 +2013,10,1,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2005,-4,0,2130,-23,0,0 +2013,8,3,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1046,37,1,1137,39,1,0 +2013,8,4,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-5,0,1129,-9,0,0 +2013,8,29,4,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-12,0,1646,-22,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1915,9,0,2042,0,0,0 +2013,8,3,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-5,0,1033,-4,0,0 +2013,7,16,2,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,615,-9,0,855,-21,0,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1735,-7,0,1906,-3,0,0 +2013,10,13,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1805,4,0,1915,1,0,0 +2013,7,18,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-4,0,1804,-17,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,855,0,0,1105,2,0,0 +2013,6,22,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,68,1,826,59,1,0 +2013,5,4,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-5,0,838,-17,0,0 +2013,5,19,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1705,52,1,1815,37,1,0 +2013,5,24,5,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1355,-5,0,1617,-8,0,0 +2013,8,15,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,705,-3,0,1433,-4,0,0 +2013,4,13,6,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1410,-3,0,1702,4,0,0 +2013,10,29,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-10,0,1705,-6,0,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1245,33,1,1640,31,1,0 +2013,10,27,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-1,0,2135,-9,0,0 +2013,5,27,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,140,1,1312,130,1,0 +2013,4,19,5,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,195,1,1255,197,1,0 +2013,10,11,5,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1650,0,0,1659,-11,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1113,0,0,1436,-6,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1510,37,1,1655,15,1,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1335,42,1,1815,70,1,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1310,-3,0,1601,-17,0,0 +2013,6,30,7,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,911,0,0,1005,-6,0,0 +2013,6,12,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1705,137,1,1950,154,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,650,12,0,840,2,0,0 +2013,4,14,7,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1600,4,0,1930,47,1,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,94,1,1605,94,1,0 +2013,7,29,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,-5,0,1505,9,0,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1212,28,1,1710,7,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,-8,0,950,-3,0,0 +2013,4,9,2,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1200,-3,0,1441,0,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1435,32,1,1611,25,1,0 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,0,0,1345,-5,0,0 +2013,5,14,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-9,0,1632,-11,0,0 +2013,5,19,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,92,1,1913,96,1,0 +2013,8,26,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-2,0,1200,-14,0,0 +2013,7,7,7,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-4,0,717,-7,0,0 +2013,10,12,6,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,845,-1,0,1000,-7,0,0 +2013,7,23,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2055,3,0,2300,0,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1247,-2,0,1549,-13,0,0 +2013,6,30,7,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,540,0,0,1200,-16,0,0 +2013,8,25,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-6,0,1210,3,0,0 +2013,9,7,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,700,-6,0,1447,10,0,0 +2013,10,16,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2045,5,0,2153,-2,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,-4,0,1415,-2,0,0 +2013,5,10,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,945,-1,0,1120,-8,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2114,2,0,2359,17,1,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,-6,0,922,-14,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,837,-3,0,0 +2013,5,20,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1533,11,0,1830,10,0,0 +2013,9,7,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,1,0,2010,-11,0,0 +2013,9,20,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1825,-14,0,1850,-10,0,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-8,0,1630,-9,0,0 +2013,4,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,1,0,1140,6,0,0 +2013,10,19,6,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1557,-7,0,1904,-17,0,0 +2013,5,18,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1935,-8,0,2040,-21,0,0 +2013,7,23,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-8,0,1345,-9,0,0 +2013,7,1,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1430,47,1,1647,39,1,0 +2013,6,11,2,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1100,-10,0,1222,-14,0,0 +2013,4,13,6,EV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1844,-10,0,2056,-6,0,0 +2013,10,5,6,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,940,-8,0,1334,-32,0,0 +2013,10,31,4,VX,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,800,-2,0,1605,6,0,0 +2013,8,27,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1405,91,1,1655,93,1,0 +2013,4,27,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1015,-9,0,1259,-14,0,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1708,-2,0,2306,64,1,0 +2013,8,18,7,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,17,1,1910,8,0,0 +2013,9,26,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-6,0,1725,-41,0,0 +2013,4,24,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,845,-4,0,1130,-10,0,0 +2013,6,26,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-8,0,1916,35,1,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2100,12,0,2253,5,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1007,12,0,1150,3,0,0 +2013,6,7,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2128,-4,0,1,-9,0,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1911,-6,0,30,-15,0,0 +2013,7,30,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,-4,0,2120,-12,0,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,1,0,1155,-2,0,0 +2013,10,26,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1828,15,1,0 +2013,6,20,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,655,-10,0,946,-22,0,0 +2013,9,17,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,-1,0,830,2,0,0 +2013,4,16,2,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,756,-7,0,1101,-16,0,0 +2013,8,25,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1230,-1,0,1352,-17,0,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,635,-4,0,846,-4,0,0 +2013,7,9,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,1,0,1353,-3,0,0 +2013,4,5,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,0,0,1157,5,0,0 +2013,9,3,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2051,-8,0,2140,-2,0,0 +2013,6,21,5,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1655,-1,0,1950,-1,0,0 +2013,9,25,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,0,0,2053,-6,0,0 +2013,4,7,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,-9,0,1435,0,0,0 +2013,6,7,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1945,-6,0,2120,3,0,0 +2013,6,12,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1725,0,0,1857,-5,0,0 +2013,10,24,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-4,0,1813,-16,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,21,1,1725,6,0,0 +2013,5,21,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,80,1,2124,80,1,0 +2013,8,17,6,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1332,47,1,1415,32,1,0 +2013,6,28,5,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-5,0,1015,-12,0,0 +2013,9,5,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,6,0,2145,46,1,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,16,1,1400,23,1,0 +2013,10,11,5,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1835,146,1,2148,93,1,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1730,36,1,1955,19,1,0 +2013,7,30,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1745,6,0,1926,5,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,710,2,0,1039,-20,0,0 +2013,7,7,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,605,-9,0,710,-8,0,0 +2013,7,24,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1550,29,1,1700,22,1,0 +2013,7,26,5,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,63,1,1623,55,1,0 +2013,7,29,1,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,1300,0,,1727,0,1,1 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1910,-5,0,2100,-2,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2210,-2,0,2330,0,0,0 +2013,6,8,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,78,1,2032,61,1,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-8,0,1809,-16,0,0 +2013,10,2,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,0,0,947,-8,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1550,-1,0,1730,5,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1040,-2,0,1135,-9,0,0 +2013,9,17,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1114,-4,0,1346,-16,0,0 +2013,10,8,2,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-4,0,1748,-2,0,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1750,47,1,2040,53,1,0 +2013,9,30,1,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1920,-1,0,2030,-2,0,0 +2013,8,14,3,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,810,-1,0,1200,-4,0,0 +2013,5,20,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1925,122,1,2039,112,1,0 +2013,8,15,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-4,0,1828,-6,0,0 +2013,8,10,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,119,1,1315,111,1,0 +2013,10,17,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-1,0,1904,-20,0,0 +2013,9,30,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,840,-2,0,0 +2013,10,18,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,4,0,1920,7,0,0 +2013,5,16,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1340,21,1,1455,14,0,0 +2013,10,15,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,949,2,0,1103,-10,0,0 +2013,4,6,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,700,6,0,946,17,1,0 +2013,7,19,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,5,0,1600,3,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,-2,0,1720,-10,0,0 +2013,6,27,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1025,0,,1205,0,1,1 +2013,9,17,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1031,44,1,1226,40,1,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1010,0,0,1140,-4,0,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-3,0,1349,12,0,0 +2013,8,23,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,-7,0,1459,-21,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1340,1,0,1950,3,0,0 +2013,8,12,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,0,0,1223,12,0,0 +2013,5,7,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-7,0,1605,-4,0,0 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,2005,-3,0,2206,-4,0,0 +2013,4,28,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,25,1,1543,26,1,0 +2013,5,1,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-7,0,930,7,0,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1210,-4,0,1425,-6,0,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2255,-5,0,612,-17,0,0 +2013,7,8,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1630,30,1,1735,26,1,0 +2013,5,19,7,OO,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,620,47,1,858,40,1,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2200,8,0,2359,13,0,0 +2013,7,22,1,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,12,0,2155,15,1,0 +2013,9,1,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1245,-1,0,1410,-7,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,8,0,1100,11,0,0 +2013,4,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1500,-2,0,1830,29,1,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1415,-1,0,1639,12,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1438,-2,0,1628,8,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2305,67,1,2359,62,1,0 +2013,6,24,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,645,1,0,735,-8,0,0 +2013,4,26,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-12,0,902,-19,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,719,-1,0,1311,-10,0,0 +2013,8,12,1,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,800,5,0,955,-4,0,0 +2013,8,17,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-8,0,714,-26,0,0 +2013,8,22,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1723,-4,0,1825,-15,0,0 +2013,4,29,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,1,0,2045,9,0,0 +2013,10,1,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-7,0,759,-25,0,0 +2013,5,2,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,3,0,1510,-5,0,0 +2013,6,20,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1040,-1,0,1200,-12,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,930,-5,0,1115,-7,0,0 +2013,7,21,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,94,1,2035,95,1,0 +2013,9,2,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-2,0,2200,-1,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1400,-1,0,1625,-9,0,0 +2013,9,27,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1016,-6,0,1149,-13,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1310,-4,0,2145,11,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1051,-6,0,1824,38,1,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-4,0,1150,-1,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,829,-7,0,1003,-13,0,0 +2013,7,21,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1852,42,1,2145,37,1,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2200,-4,0,2304,-13,0,0 +2013,10,3,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-1,0,1900,-9,0,0 +2013,6,26,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2151,62,1,2253,65,1,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1745,-4,0,1917,-33,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2002,13,0,2337,-2,0,0 +2013,7,4,4,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,655,0,0,925,-13,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,815,-5,0,928,-18,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,-4,0,1815,-6,0,0 +2013,4,10,3,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-1,0,1905,5,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,710,1,0,940,8,0,0 +2013,7,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,5,0,2115,4,0,0 +2013,7,20,6,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-2,0,915,-8,0,0 +2013,10,14,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,1,0,2110,-6,0,0 +2013,7,30,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2202,1,0,2359,-7,0,0 +2013,5,20,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,17,1,2025,17,1,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1213,-5,0,1333,-41,0,0 +2013,9,19,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1032,3,0,1210,11,0,0 +2013,7,4,4,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1105,-2,0,1505,-14,0,0 +2013,4,3,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-9,0,2015,-3,0,0 +2013,7,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,7,0,1902,11,0,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1540,5,0,1743,1,0,0 +2013,4,12,5,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1450,-2,0,1850,5,0,0 +2013,10,11,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1910,10,0,2149,-10,0,0 +2013,10,23,3,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1720,-13,0,1940,-19,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,26,1,2230,30,1,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,-3,0,1809,-10,0,0 +2013,6,19,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,20,1,1840,9,0,0 +2013,10,20,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1920,-2,0,1957,-7,0,0 +2013,8,6,2,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1335,-7,0,1851,-19,0,0 +2013,7,3,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-1,0,1006,-19,0,0 +2013,9,9,1,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,-3,0,955,1,0,0 +2013,10,21,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-8,0,1358,-12,0,0 +2013,9,28,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,33,1,1605,80,1,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,655,-3,0,815,-7,0,0 +2013,8,1,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2115,10,0,2322,21,1,0 +2013,6,10,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,13,0,1249,16,1,0 +2013,8,12,1,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1730,2,0,2005,22,1,0 +2013,8,9,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,845,-8,0,950,-10,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1250,57,1,1350,46,1,0 +2013,5,5,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1524,-9,0,1736,-7,0,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1725,-10,0,1926,-50,0,0 +2013,6,25,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1620,-3,0,1912,18,1,0 +2013,9,9,1,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1455,8,0,1625,-6,0,0 +2013,5,21,2,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1700,47,1,1819,88,1,0 +2013,10,21,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,3,0,1135,-4,0,0 +2013,8,8,4,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,5,0,1710,19,1,0 +2013,8,24,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-4,0,1200,-16,0,0 +2013,6,22,6,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-8,0,2245,-2,0,0 +2013,9,8,7,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1306,-2,0,1525,-15,0,0 +2013,10,15,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1605,-1,0,1811,-3,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1954,12,0,2310,-11,0,0 +2013,9,13,5,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1745,0,0,2020,-8,0,0 +2013,4,6,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-5,0,1240,-20,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1546,-4,0,1642,18,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,735,-1,0,857,-3,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,19,1,1320,21,1,0 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1340,0,0,1503,-6,0,0 +2013,7,23,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1210,-3,0,1330,-6,0,0 +2013,10,28,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,630,9,0,745,5,0,0 +2013,6,19,3,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1553,0,0,2140,-3,0,0 +2013,4,28,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1440,-7,0,1615,-24,0,0 +2013,4,29,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,-6,0,1847,-25,0,0 +2013,5,21,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1715,24,1,1848,20,1,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-6,0,2330,7,0,0 +2013,5,9,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1825,23,1,2127,19,1,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,0,0,2050,2,0,0 +2013,8,10,6,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1515,3,0,1745,-12,0,0 +2013,5,11,6,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,-8,0,1215,5,0,0 +2013,10,9,3,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-4,0,1130,-16,0,0 +2013,9,15,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1355,20,1,2000,19,1,0 +2013,5,29,3,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1230,-1,0,1625,0,1,1 +2013,5,31,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-7,0,1856,-10,0,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1200,-4,0,1434,4,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,2,0,1835,6,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,25,1,829,18,1,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1945,47,1,2200,42,1,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1405,50,1,1750,39,1,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1316,22,1,1632,11,0,0 +2013,10,9,3,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1031,-6,0,1240,-24,0,0 +2013,8,25,7,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1729,12,0,2020,19,1,0 +2013,6,28,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1637,-5,0,0 +2013,4,28,7,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1725,-1,0,2000,-2,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-3,0,1710,25,1,0 +2013,8,30,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,26,1,1800,27,1,0 +2013,10,20,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,-1,0,1600,-11,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1811,-3,0,2021,-2,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,835,-3,0,1400,-20,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-2,0,1031,-12,0,0 +2013,5,17,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,935,-7,0,1205,-11,0,0 +2013,4,8,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-7,0,1605,-11,0,0 +2013,6,20,4,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,1,0,1108,-24,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,4,0,1555,-22,0,0 +2013,8,25,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2055,2,0,2220,-2,0,0 +2013,9,17,2,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1050,-5,0,1325,-25,0,0 +2013,4,29,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1740,-5,0,2025,-8,0,0 +2013,8,20,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1805,-8,0,2140,-4,0,0 +2013,5,31,5,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1340,-1,0,1529,-3,0,0 +2013,5,29,3,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,2,0,648,1,0,0 +2013,10,19,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-3,0,816,-17,0,0 +2013,6,22,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,650,0,,820,0,1,1 +2013,10,3,4,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,811,-6,0,931,-4,0,0 +2013,6,27,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,3,0,2020,6,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,2,0,1500,-18,0,0 +2013,10,10,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2020,51,1,2302,78,1,0 +2013,9,26,4,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1130,-8,0,1957,-32,0,0 +2013,6,4,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-6,0,1903,-3,0,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1355,46,1,1655,59,1,0 +2013,5,22,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,606,-2,0,813,21,1,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,904,2,0,1341,-26,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1640,6,0,2015,-6,0,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,846,-2,0,1122,8,0,0 +2013,5,26,7,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1000,-7,0,1129,-13,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1025,-5,0,1210,-22,0,0 +2013,5,10,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,830,19,1,900,40,1,0 +2013,10,12,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1056,-10,0,0 +2013,4,25,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1450,-6,0,1751,-9,0,0 +2013,9,25,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,810,-1,0,955,-15,0,0 +2013,7,20,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-4,0,1442,-10,0,0 +2013,8,31,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,1,0,1603,7,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,1,0,1005,-1,0,0 +2013,8,12,1,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-1,0,1755,-15,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1930,17,1,2145,32,1,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,750,-7,0,1010,-8,0,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1925,124,1,2055,124,1,0 +2013,6,17,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-2,0,913,8,0,0 +2013,4,13,6,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,2,0,1940,-8,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-5,0,1006,-28,0,0 +2013,7,7,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,247,1,1655,236,1,0 +2013,9,26,4,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,706,-6,0,828,-14,0,0 +2013,5,6,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2220,-10,0,47,-28,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2005,166,1,2045,166,1,0 +2013,4,23,2,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2131,16,1,520,9,0,0 +2013,10,22,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-5,0,1704,11,0,0 +2013,7,2,2,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1710,77,1,1930,65,1,0 +2013,9,5,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1115,-7,0,1319,-20,0,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-5,0,1614,-19,0,0 +2013,9,1,7,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2350,-5,0,548,-1,0,0 +2013,5,12,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1400,12,0,1500,5,0,0 +2013,9,13,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1355,13,0,1520,6,0,0 +2013,7,26,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-5,0,1005,-15,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,7,0,1433,10,0,0 +2013,9,26,4,9E,12953,LaGuardia,New York,NY,12339,Indianapolis International,Indianapolis,IN,1000,-9,0,1231,8,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,13,0,1815,22,1,0 +2013,5,1,3,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,645,0,0,825,-10,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-9,0,1443,-8,0,0 +2013,5,24,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,-8,0,1350,-10,0,0 +2013,7,12,5,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,59,1,2329,54,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1518,1,0,1710,-1,0,0 +2013,9,25,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1019,-9,0,1300,-12,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,940,-1,0,1120,7,0,0 +2013,9,15,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,0,0,2157,-9,0,0 +2013,8,6,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-3,0,2102,-1,0,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,830,0,0,1000,-6,0,0 +2013,9,4,3,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,937,-7,0,1214,-13,0,0 +2013,9,6,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1035,-7,0,1640,17,1,0 +2013,4,8,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,1030,-8,0,1242,-9,0,0 +2013,7,10,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1003,7,0,1113,-7,0,0 +2013,7,22,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,6,0,1420,6,0,0 +2013,8,25,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,949,-8,0,1205,-25,0,0 +2013,8,19,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1102,19,1,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1135,-2,0,1300,-3,0,0 +2013,4,9,2,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1859,98,1,2120,144,1,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1545,9,0,1726,-18,0,0 +2013,10,28,1,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,78,1,1544,79,1,0 +2013,7,12,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,0,,1236,0,1,1 +2013,4,5,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,0,0,1250,4,0,0 +2013,5,28,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,800,-10,0,925,-7,0,0 +2013,4,28,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,855,7,0,1455,-1,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-3,0,1140,40,1,0 +2013,4,7,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,845,-4,0,1036,-5,0,0 +2013,5,19,7,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1610,4,0,1655,27,1,0 +2013,8,5,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,-5,0,1740,-18,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1750,0,,1840,0,1,1 +2013,5,14,2,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1353,8,0,1520,-5,0,0 +2013,8,18,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,-17,0,1121,-24,0,0 +2013,10,26,6,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1329,4,0,1813,-17,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2010,33,1,2115,23,1,0 +2013,9,7,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-7,0,845,-23,0,0 +2013,4,18,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1320,30,1,1425,19,1,0 +2013,4,30,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,7,0,1312,1,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-2,0,2330,4,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,34,1,2330,56,1,0 +2013,9,27,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,0,0,1048,-3,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,-7,0,940,-8,0,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,0,0,1425,13,0,0 +2013,10,27,7,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1554,45,1,1727,45,1,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,835,-6,0,1155,-9,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,838,-10,0,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2015,23,1,2210,17,1,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1956,-7,0,2120,-23,0,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,6,0,1635,6,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,56,1,1310,40,1,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,2,0,2115,-7,0,0 +2013,5,13,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,815,-8,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-5,0,1115,-11,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1545,12,0,1630,7,0,0 +2013,7,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1241,-1,0,1616,-25,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,-1,0,1729,14,0,0 +2013,8,12,1,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2127,9,0,533,-5,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,-2,0,1909,-7,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,818,-5,0,903,-8,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,730,-2,0,1055,2,0,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-3,0,1445,-17,0,0 +2013,9,7,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,116,1,1740,120,1,0 +2013,9,11,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,0,0,1340,-5,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1800,34,1,2031,33,1,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1925,10,0,2105,-21,0,0 +2013,6,9,7,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-1,0,1755,8,0,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,-4,0,1615,-27,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1951,22,1,2205,15,1,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,800,0,0,925,1,0,0 +2013,8,2,5,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1521,-1,0,1644,-4,0,0 +2013,6,23,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,19,1,1320,5,0,0 +2013,7,10,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,22,1,1410,42,1,0 +2013,4,16,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,1541,-14,0,0 +2013,9,24,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1651,-7,0,1834,-26,0,0 +2013,6,12,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1820,202,1,1935,264,1,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1630,34,1,2355,15,1,0 +2013,8,30,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1055,-8,0,1342,-6,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,-2,0,1915,-11,0,0 +2013,7,2,2,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,7,0,804,-18,0,0 +2013,4,11,4,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,640,0,0,801,22,1,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1540,41,1,1810,22,1,0 +2013,9,20,5,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-11,0,1230,-14,0,0 +2013,7,1,1,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1004,-28,0,0 +2013,10,24,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,5,0,2113,-5,0,0 +2013,10,4,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-5,0,1859,-12,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,-2,0,1505,0,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,8,0,943,-7,0,0 +2013,5,13,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1225,-12,0,0 +2013,7,18,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,46,1,1854,35,1,0 +2013,7,14,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,940,-2,0,1100,-8,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,910,25,1,1320,17,1,0 +2013,5,25,6,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,747,-4,0,921,-16,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2235,10,0,125,4,0,0 +2013,4,19,5,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,2336,16,1,651,-24,0,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,-5,0,1040,27,1,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,730,-5,0,1040,9,0,0 +2013,10,10,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1842,-6,0,0 +2013,4,16,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,745,-7,0,0 +2013,10,8,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,708,-8,0,921,-20,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,17,1,1201,0,0,0 +2013,4,12,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-6,0,1950,-17,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,0,0,1310,4,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-4,0,1435,15,1,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,22,1,2235,28,1,0 +2013,10,30,3,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1727,-1,0,2013,35,1,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,-1,0,1505,-8,0,0 +2013,4,7,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,912,-1,0,1101,-12,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,3,0,1038,-13,0,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1645,4,0,2003,-9,0,0 +2013,10,30,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,950,-4,0,1115,8,0,0 +2013,4,7,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1317,-4,0,1444,3,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2115,0,0,2255,-4,0,0 +2013,6,23,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1440,16,1,1536,22,1,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1522,37,1,1648,33,1,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,805,7,0,950,3,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1955,-4,0,2131,-14,0,0 +2013,5,13,1,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1103,-1,0,1342,-4,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2055,14,0,2245,-8,0,0 +2013,5,11,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,949,8,0,1242,2,0,0 +2013,6,24,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-5,0,1052,-16,0,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,0,0,2057,-19,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,808,-10,0,1341,-17,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,13,0,1003,-3,0,0 +2013,5,4,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,816,-2,0,1056,-33,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2036,7,0,2307,-13,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1311,-6,0,1423,33,1,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,-2,0,1626,-4,0,0 +2013,10,24,4,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,603,3,0,904,-6,0,0 +2013,9,30,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1657,-11,0,0 +2013,6,9,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,-6,0,1838,-7,0,0 +2013,7,8,1,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,730,-1,0,840,-10,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,910,2,0,1040,-8,0,0 +2013,8,14,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,805,1,0,1020,0,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,2,0,2359,-5,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1500,14,0,1830,2,0,0 +2013,9,10,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1523,0,0,1642,-5,0,0 +2013,10,16,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1501,15,1,1645,8,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1120,-2,0,1405,-11,0,0 +2013,6,8,6,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,830,0,0,945,-16,0,0 +2013,9,20,5,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-4,0,1930,-8,0,0 +2013,4,1,1,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1340,-2,0,1534,4,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-9,0,907,-12,0,0 +2013,6,30,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-5,0,627,-13,0,0 +2013,10,8,2,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-2,0,1130,11,0,0 +2013,10,20,7,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-10,0,610,-21,0,0 +2013,5,27,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,830,-3,0,955,-16,0,0 +2013,10,3,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-10,0,1408,-12,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,2,0,1755,3,0,0 +2013,8,31,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,68,1,1900,59,1,0 +2013,4,15,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1000,120,1,1105,128,1,0 +2013,9,23,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-5,0,843,-20,0,0 +2013,7,31,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1145,3,0,1500,-10,0,0 +2013,7,17,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2115,122,1,131,107,1,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1402,12,0,1700,19,1,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1100,20,1,1245,7,0,0 +2013,8,4,7,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1755,-1,0,1925,-10,0,0 +2013,5,20,1,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1006,219,1,1124,208,1,0 +2013,9,25,3,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1035,8,0,1645,-19,0,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1235,0,0,1430,-7,0,0 +2013,5,2,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,4,0,2245,-1,0,0 +2013,4,1,1,EV,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,1123,-7,0,1312,-3,0,0 +2013,10,18,5,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1902,8,0,2011,12,0,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,800,25,1,1013,12,0,0 +2013,8,13,2,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,6,0,1030,10,0,0 +2013,6,25,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,7,0,1600,-4,0,0 +2013,4,28,7,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1700,-6,0,1855,-16,0,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2045,-4,0,2319,22,1,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1005,-4,0,1105,-5,0,0 +2013,6,6,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-5,0,1835,6,0,0 +2013,8,13,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1501,0,0,1800,-14,0,0 +2013,10,25,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,-5,0,1650,-15,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,4,0,1149,-13,0,0 +2013,4,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,848,29,1,1159,8,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1030,-4,0,1205,13,0,0 +2013,10,31,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1813,4,0,1927,5,0,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2105,13,0,2337,9,0,0 +2013,10,23,3,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1020,7,0,1220,0,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2105,-3,0,2229,-20,0,0 +2013,5,27,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1420,-10,0,0 +2013,5,29,3,FL,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,800,-4,0,940,-11,0,0 +2013,4,13,6,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1855,126,1,2139,100,1,0 +2013,9,22,7,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-1,0,1756,0,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1554,0,0,1848,-5,0,0 +2013,6,20,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2015,56,1,2105,37,1,0 +2013,9,2,1,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,705,-6,0,1122,-16,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,-3,0,1806,-25,0,0 +2013,9,3,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-6,0,902,-23,0,0 +2013,10,18,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,1,0,1159,9,0,0 +2013,10,30,3,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1336,0,0,1647,-7,0,0 +2013,5,6,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,630,0,0,755,1,0,0 +2013,7,4,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,34,1,2005,20,1,0 +2013,4,13,6,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,-5,0,2123,-36,0,0 +2013,5,19,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,905,-3,0,1200,-15,0,0 +2013,5,5,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2005,32,1,2155,11,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1050,6,0,1750,-5,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1815,-5,0,2008,-8,0,0 +2013,4,15,1,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,-7,0,2000,6,0,0 +2013,9,25,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1400,23,1,1530,22,1,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,65,1,1823,58,1,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1935,2,0,2035,-7,0,0 +2013,7,6,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,-5,0,1255,-11,0,0 +2013,10,24,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-3,0,1350,-5,0,0 +2013,7,31,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,647,-5,0,816,-23,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,705,-3,0,825,-10,0,0 +2013,4,18,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2032,58,1,2211,46,1,0 +2013,6,22,6,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,-3,0,1140,-14,0,0 +2013,7,6,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1145,-5,0,1245,-16,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1020,-1,0,1315,-16,0,0 +2013,5,5,7,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-4,0,2122,-29,0,0 +2013,7,19,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,30,1,1652,17,1,0 +2013,9,22,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1025,34,1,1455,20,1,0 +2013,7,12,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,110,1,2259,101,1,0 +2013,8,31,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1400,0,,1505,0,1,1 +2013,7,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1105,15,1,1210,12,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,213,1,1609,207,1,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-12,0,912,-13,0,0 +2013,5,14,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,630,-14,0,0 +2013,10,14,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1905,-6,0,2152,20,1,0 +2013,9,26,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1030,-2,0,1250,-3,0,0 +2013,5,6,1,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,6,0,1019,9,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1425,7,0,1645,-1,0,0 +2013,9,28,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-4,0,820,-3,0,0 +2013,4,26,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-5,0,805,9,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-2,0,904,-18,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1430,1,0,1955,9,0,0 +2013,9,27,5,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-1,0,1845,5,0,0 +2013,4,11,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1055,16,1,1429,26,1,0 +2013,9,19,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,915,-6,0,1045,-8,0,0 +2013,4,15,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-5,0,1010,-2,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,-1,0,1147,-2,0,0 +2013,10,8,2,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1344,6,0,1517,6,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1230,-5,0,1437,-20,0,0 +2013,5,21,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1314,7,0,1535,-5,0,0 +2013,5,31,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-2,0,1505,-10,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1045,-1,0,1210,-11,0,0 +2013,4,1,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,618,0,0,1131,2,0,0 +2013,5,24,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,25,1,703,6,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1630,98,1,1905,84,1,0 +2013,6,26,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1219,-9,0,1359,-4,0,0 +2013,6,6,4,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1820,1,0,2001,-11,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-3,0,1347,-7,0,0 +2013,6,3,1,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,-3,0,1030,1,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,5,0,1109,1,0,0 +2013,6,5,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,-1,0,950,-11,0,0 +2013,7,6,6,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2235,0,,700,0,1,1 +2013,4,13,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,635,-5,0,919,-17,0,0 +2013,7,8,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,630,-3,0,930,21,1,0 +2013,8,8,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,6,0,2055,12,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2050,19,1,15,26,1,0 +2013,8,28,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1714,-1,0,2019,18,1,0 +2013,10,7,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-5,0,710,0,0,0 +2013,4,28,7,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,-3,0,1250,-15,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,759,-2,0,1137,-9,0,0 +2013,6,7,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,0,0,1715,0,0,0 +2013,9,7,6,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1800,0,0,2015,-14,0,0 +2013,8,23,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,0,0,930,-2,0,0 +2013,10,19,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,1,0,1435,-4,0,0 +2013,6,26,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,75,1,2305,43,1,0 +2013,10,14,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,13,0,1109,7,0,0 +2013,6,16,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1005,-4,0,1121,-1,0,0 +2013,6,28,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1712,0,,1836,0,1,1 +2013,9,28,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1330,-11,0,1630,-1,0,0 +2013,6,23,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-3,0,1535,-22,0,0 +2013,7,28,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,935,10,0,950,4,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1050,1,0,1810,-6,0,0 +2013,8,20,2,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,-9,0,2204,-10,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1237,-3,0,1544,8,0,0 +2013,7,11,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1332,-1,0,1415,-13,0,0 +2013,9,23,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1430,42,1,1500,38,1,0 +2013,4,9,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,4,0,835,9,0,0 +2013,10,21,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1310,24,1,1425,20,1,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-7,0,913,2,0,0 +2013,8,24,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,42,1,1737,37,1,0 +2013,7,2,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1225,3,0,1335,-3,0,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,811,-7,0,1031,-39,0,0 +2013,9,24,2,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,9,0,1620,5,0,0 +2013,5,30,4,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,615,-4,0,910,-6,0,0 +2013,8,23,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-9,0,1319,-4,0,0 +2013,8,23,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1216,-3,0,1443,-5,0,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1215,-3,0,2040,-14,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,1,0,1309,19,1,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,1,0,1427,2,0,0 +2013,8,25,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,948,0,0,1339,-14,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2020,12,0,2145,29,1,0 +2013,9,28,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,852,-5,0,1130,-8,0,0 +2013,9,24,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-7,0,1120,-21,0,0 +2013,4,21,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-1,0,1238,-13,0,0 +2013,9,20,5,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,830,0,0,1005,-5,0,0 +2013,7,1,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-5,0,800,-18,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,2,0,1410,-19,0,0 +2013,4,14,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-4,0,1535,14,0,0 +2013,9,30,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1505,3,0,2025,-14,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1440,-2,0,1925,-4,0,0 +2013,4,25,4,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,213,1,2048,212,1,0 +2013,4,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,-6,0,2053,-6,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,-1,0,1709,19,1,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1820,110,1,2205,132,1,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1723,244,1,2044,230,1,0 +2013,9,15,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1353,-4,0,1659,0,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2010,-7,0,2220,-24,0,0 +2013,9,12,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,144,1,1919,140,1,0 +2013,4,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1614,-7,0,1828,-7,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,-1,0,1930,-9,0,0 +2013,4,18,4,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-4,0,1100,17,1,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1536,0,0,1820,14,0,0 +2013,5,10,5,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,951,-7,0,1340,-14,0,0 +2013,6,6,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-5,0,718,-12,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-3,0,1639,-14,0,0 +2013,8,6,2,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,945,2,0,1120,5,0,0 +2013,10,30,3,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-5,0,1812,-17,0,0 +2013,7,21,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,-7,0,1901,6,0,0 +2013,5,23,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,47,1,2155,43,1,0 +2013,9,2,1,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-12,0,610,-7,0,0 +2013,10,18,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-3,0,1105,-5,0,0 +2013,10,10,4,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1155,-8,0,1537,-11,0,0 +2013,10,2,3,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-3,0,1038,-13,0,0 +2013,4,3,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-12,0,2215,-22,0,0 +2013,9,25,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,0,0,1648,16,1,0 +2013,8,26,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2033,-10,0,2120,-9,0,0 +2013,10,31,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1507,-6,0,2005,-18,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1310,18,1,1540,12,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2240,-1,0,115,13,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1959,-2,0,2112,-20,0,0 +2013,9,15,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1518,-6,0,1636,-12,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,630,3,0,800,-4,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2055,-1,0,2225,-7,0,0 +2013,5,25,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,2,0,519,8,0,0 +2013,8,8,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1702,89,1,1829,86,1,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2210,-7,0,43,-8,0,0 +2013,9,2,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1607,8,0,1751,-1,0,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-7,0,1312,-2,0,0 +2013,4,25,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,0,0,814,1,0,0 +2013,10,16,3,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,-4,0,2011,-19,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1850,12,0,2120,5,0,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2216,26,1,629,28,1,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,1,0,1824,18,1,0 +2013,7,15,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-3,0,2041,-7,0,0 +2013,8,1,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,945,173,1,1045,167,1,0 +2013,9,11,3,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1245,11,0,1545,-10,0,0 +2013,8,31,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-3,0,2240,-38,0,0 +2013,6,24,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1549,142,1,1723,150,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,905,-3,0,1025,-2,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1113,150,1,1300,142,1,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,3,0,1300,-6,0,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-3,0,2110,25,1,0 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1847,1,0,2017,8,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,640,-3,0,750,-2,0,0 +2013,7,16,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,936,-4,0,1040,-26,0,0 +2013,4,26,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,11,0,1530,0,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,930,-3,0,1211,-14,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2057,13,0,2322,-2,0,0 +2013,5,3,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,-1,0,1615,-12,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,35,1,1700,42,1,0 +2013,10,22,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,44,1,2139,39,1,0 +2013,4,8,1,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,805,-1,0,1603,-19,0,0 +2013,5,16,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2305,7,0,500,0,0,0 +2013,4,4,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2055,-6,0,2218,-3,0,0 +2013,4,6,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,821,-5,0,1149,-27,0,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1536,-4,0,2343,-20,0,0 +2013,8,1,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-1,0,1005,-4,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,0,0,1413,-3,0,0 +2013,9,1,7,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1801,-2,0,1948,-17,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-4,0,1939,-23,0,0 +2013,10,29,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1555,-3,0,0 +2013,5,5,7,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1825,-6,0,2035,-4,0,0 +2013,7,9,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1850,-5,0,2039,-1,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,21,1,2105,20,1,0 +2013,9,8,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1143,-5,0,1320,-10,0,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2055,16,1,2230,4,0,0 +2013,8,15,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-3,0,2120,-16,0,0 +2013,6,23,7,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1935,21,1,2255,1,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,830,5,0,1235,9,0,0 +2013,4,18,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2055,52,1,2211,41,1,0 +2013,4,9,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-8,0,1914,-16,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1320,27,1,1505,9,0,0 +2013,4,13,6,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,73,1,2230,67,1,0 +2013,6,30,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-9,0,925,-22,0,0 +2013,7,5,5,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,2340,-8,0,659,-15,0,0 +2013,5,21,2,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,37,1,745,10,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-6,0,1315,1,0,0 +2013,10,16,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1845,-8,0,2109,-23,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-5,0,1030,-5,0,0 +2013,8,28,3,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,942,-4,0,1134,13,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,925,-7,0,1227,16,1,0 +2013,10,16,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-4,0,1709,-6,0,0 +2013,7,18,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,823,-1,0,1034,-14,0,0 +2013,8,16,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1320,-7,0,1524,-4,0,0 +2013,4,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,0,,2025,0,1,1 +2013,9,15,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,845,-12,0,1013,-23,0,0 +2013,4,23,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-8,0,1107,-9,0,0 +2013,6,28,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,5,0,1525,-5,0,0 +2013,6,23,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-8,0,920,-13,0,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1125,55,1,1240,47,1,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,58,1,1635,57,1,0 +2013,8,17,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,41,1,1810,45,1,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,34,1,2339,13,0,0 +2013,8,21,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,20,1,1310,13,0,0 +2013,6,30,7,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1702,79,1,2000,95,1,0 +2013,4,11,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,101,1,1041,98,1,0 +2013,7,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2100,39,1,2205,28,1,0 +2013,5,17,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,68,1,2105,59,1,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-3,0,1639,-2,0,0 +2013,7,30,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2140,-2,0,542,-17,0,0 +2013,9,11,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1306,-5,0,1345,0,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2040,68,1,2155,51,1,0 +2013,6,24,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1255,122,1,1425,178,1,0 +2013,6,3,1,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,945,-5,0,1740,-16,0,0 +2013,4,18,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2055,63,1,2155,54,1,0 +2013,10,9,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,0,,1203,0,1,1 +2013,7,19,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,640,0,0,755,-5,0,0 +2013,10,25,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,600,-5,0,837,-21,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,720,-1,0,840,-14,0,0 +2013,8,21,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1850,6,0,2055,9,0,0 +2013,6,16,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-6,0,1205,-12,0,0 +2013,4,10,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1055,0,0,1427,1,0,0 +2013,8,25,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1435,99,1,1545,95,1,0 +2013,4,5,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1236,34,1,1517,1,0,0 +2013,8,18,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,-1,0,545,-7,0,0 +2013,10,17,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,929,-1,0,1234,3,0,0 +2013,5,22,3,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,1300,-1,0,1727,-1,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,820,0,0,930,2,0,0 +2013,8,3,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1235,-2,0,1615,2,0,0 +2013,5,28,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2105,-2,0,2305,17,1,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1520,-4,0,1800,3,0,0 +2013,9,14,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1249,1,0,1543,-9,0,0 +2013,9,27,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-8,0,724,3,0,0 +2013,6,30,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-2,0,1305,-9,0,0 +2013,10,22,2,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,0,0,1315,-3,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1655,64,1,1810,61,1,0 +2013,5,16,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-10,0,807,-16,0,0 +2013,5,23,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-3,0,2210,-2,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1525,-3,0,1625,2,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,-3,0,2240,-9,0,0 +2013,9,27,5,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-1,0,1155,-22,0,0 +2013,9,15,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2055,35,1,2220,28,1,0 +2013,4,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-1,0,1000,12,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1040,0,0,1220,-6,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1933,220,1,2119,189,1,0 +2013,6,22,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-5,0,837,-18,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1545,-1,0,1829,-7,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1655,12,0,1900,10,0,0 +2013,8,5,1,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1059,-12,0,1215,-16,0,0 +2013,4,29,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,-4,0,1328,-11,0,0 +2013,9,8,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,-3,0,935,-6,0,0 +2013,7,1,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,6,0,1750,23,1,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1506,2,0,1614,-5,0,0 +2013,7,30,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,2,0,2145,-13,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,945,28,1,1205,38,1,0 +2013,7,27,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,18,1,2140,12,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,955,-2,0,1229,-11,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,36,1,9,7,0,0 +2013,9,25,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2002,-8,0,2023,-20,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,855,-3,0,1005,-6,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,855,30,1,1111,28,1,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-8,0,756,-11,0,0 +2013,5,31,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2035,7,0,2153,3,0,0 +2013,5,19,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,650,11,0,930,-8,0,0 +2013,9,19,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,850,0,0,1028,-6,0,0 +2013,8,2,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,24,1,2030,23,1,0 +2013,6,6,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,4,0,1905,-10,0,0 +2013,4,8,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-5,0,1050,-18,0,0 +2013,6,13,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1225,0,0,1338,-8,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,14,0,2200,5,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,923,-5,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,36,1,1835,27,1,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-9,0,1122,-6,0,0 +2013,8,29,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1540,-10,0,2110,-12,0,0 +2013,10,6,7,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1845,0,0,2029,-29,0,0 +2013,8,4,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,837,11,0,0 +2013,4,5,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,700,-10,0,902,-24,0,0 +2013,4,11,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,0,0,1741,9,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1455,10,0,1610,-4,0,0 +2013,5,14,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,-2,0,1916,-13,0,0 +2013,8,29,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2005,-5,0,2115,14,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-1,0,755,-1,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1455,2,0,1800,-9,0,0 +2013,8,10,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-5,0,907,-12,0,0 +2013,7,8,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,72,1,2121,76,1,0 +2013,7,9,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1659,72,1,1905,77,1,0 +2013,6,24,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1434,184,1,1608,175,1,0 +2013,6,11,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1530,-6,0,1650,19,1,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2159,8,0,2315,30,1,0 +2013,7,7,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11042,Cleveland-Hopkins International,Cleveland,OH,1044,0,0,1412,-5,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,-5,0,2012,-6,0,0 +2013,10,8,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-7,0,1246,-5,0,0 +2013,6,22,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,920,-1,0,1025,-7,0,0 +2013,10,7,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1707,-6,0,2218,-19,0,0 +2013,5,20,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1715,4,0,1815,-5,0,0 +2013,8,4,7,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2110,0,0,550,-1,0,0 +2013,7,9,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1233,0,,1324,0,1,1 +2013,10,2,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1205,-8,0,1327,-11,0,0 +2013,10,28,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1722,-6,0,1845,-11,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,3,0,1129,0,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1416,-13,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1930,54,1,2132,32,1,0 +2013,6,3,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,23,1,1304,14,0,0 +2013,4,5,5,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,-5,0,2230,-5,0,0 +2013,5,14,2,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1214,-2,0,1305,-11,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,-4,0,2357,-16,0,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,955,-6,0,1141,-4,0,0 +2013,9,19,4,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1705,216,1,1948,225,1,0 +2013,8,19,1,FL,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1210,15,1,1425,8,0,0 +2013,9,16,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,0,0,1411,55,1,0 +2013,7,18,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-3,0,1405,3,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1020,4,0,1544,-4,0,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1205,92,1,1335,85,1,0 +2013,7,12,5,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1855,34,1,2000,22,1,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2110,14,0,20,1,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,840,-4,0,858,14,0,0 +2013,9,19,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-1,0,855,-13,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-1,0,1006,2,0,0 +2013,9,6,5,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1830,-3,0,2137,-7,0,0 +2013,5,6,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1737,-7,0,1849,-11,0,0 +2013,5,31,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,-6,0,1849,-8,0,0 +2013,4,7,7,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1345,-2,0,1635,-13,0,0 +2013,4,11,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-5,0,612,-27,0,0 +2013,10,11,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,1105,0,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1345,-1,0,1711,-4,0,0 +2013,9,30,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-9,0,2056,-4,0,0 +2013,10,10,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1505,0,0,1802,-4,0,0 +2013,9,26,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1910,-4,0,2221,-35,0,0 +2013,5,24,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,0,0,919,-4,0,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,1253,-9,0,0 +2013,4,28,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,945,-8,0,1245,-12,0,0 +2013,5,20,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,0,0,2102,-20,0,0 +2013,9,15,7,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,702,-2,0,944,-11,0,0 +2013,5,20,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1805,23,1,1925,26,1,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2155,41,1,2325,32,1,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,925,-3,0,1100,-13,0,0 +2013,6,10,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1926,42,1,2105,126,1,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,62,1,1915,70,1,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1245,-3,0,1659,-11,0,0 +2013,9,18,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1905,15,1,2015,10,0,0 +2013,8,1,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,-6,0,1504,-16,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,-3,0,1315,-21,0,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1122,-4,0,1220,-21,0,0 +2013,10,8,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-2,0,835,-19,0,0 +2013,8,22,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,74,1,1220,73,1,0 +2013,7,11,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1210,-7,0,1356,15,1,0 +2013,10,6,7,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-7,0,1337,-14,0,0 +2013,7,16,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1454,-10,0,1708,-6,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,1,0,2002,2,0,0 +2013,9,13,5,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,953,3,0,1107,7,0,0 +2013,10,6,7,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-6,0,2037,-34,0,0 +2013,4,21,7,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1915,-8,0,2034,-5,0,0 +2013,8,15,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,950,-2,0,1115,-14,0,0 +2013,7,3,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-3,0,1858,-9,0,0 +2013,10,17,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,950,69,1,1115,65,1,0 +2013,4,13,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,-4,0,1810,-15,0,0 +2013,6,20,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-5,0,2308,6,0,0 +2013,10,1,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,740,-2,0,855,-6,0,0 +2013,7,3,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,99,1,1615,144,1,0 +2013,6,7,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,96,1,2141,92,1,0 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1124,27,1,1224,17,1,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-6,0,645,13,0,0 +2013,7,1,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1348,90,1,1545,98,1,0 +2013,8,26,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1756,-6,0,2039,-18,0,0 +2013,6,14,5,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,715,9,0,823,3,0,0 +2013,8,1,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-3,0,1031,2,0,0 +2013,8,23,5,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,109,1,1859,100,1,0 +2013,6,1,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1745,-10,0,1950,-8,0,0 +2013,10,7,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,-6,0,2039,6,0,0 +2013,7,11,4,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,89,1,730,98,1,0 +2013,6,28,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,607,-4,0,1300,50,1,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1200,1,0,1405,-1,0,0 +2013,9,14,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,1,0,2235,-9,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1054,-5,0,1225,-10,0,0 +2013,8,2,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-3,0,1940,-8,0,0 +2013,7,31,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,-2,0,1445,-13,0,0 +2013,9,19,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,5,0,1720,3,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,954,-1,0,1130,-10,0,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,-2,0,1650,-18,0,0 +2013,6,4,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,23,1,2033,20,1,0 +2013,4,15,1,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,628,-4,0,1400,-25,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2145,12,0,2305,19,1,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2000,7,0,2317,-13,0,0 +2013,6,19,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1324,-3,0,1425,-15,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1135,-7,0,1510,-10,0,0 +2013,4,27,6,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1009,-14,0,1135,-12,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1640,-6,0,0 +2013,5,9,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,-8,0,824,0,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,842,22,1,1130,32,1,0 +2013,7,16,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1915,185,1,2210,183,1,0 +2013,10,8,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,3,0,1812,9,0,0 +2013,7,1,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,16,1,1340,13,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1900,-4,0,2154,-13,0,0 +2013,8,6,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,66,1,1632,70,1,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1240,0,0,1400,2,0,0 +2013,4,29,1,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1415,18,1,1655,-6,0,0 +2013,5,12,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-5,0,712,0,0,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-4,0,2354,-7,0,0 +2013,8,5,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,-1,0,1900,-9,0,0 +2013,10,12,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,942,21,1,1041,58,1,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,4,0,1530,8,0,0 +2013,8,19,1,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1100,-4,0,1425,-16,0,0 +2013,7,20,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,-2,0,1007,8,0,0 +2013,4,16,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1637,-9,0,1920,-11,0,0 +2013,7,10,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,755,29,1,845,30,1,0 +2013,9,8,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,709,31,1,730,16,1,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2035,-5,0,2246,-1,0,0 +2013,6,24,1,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,-7,0,1605,-10,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1525,-5,0,1710,-8,0,0 +2013,7,23,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,920,7,0,1035,-8,0,0 +2013,6,18,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-1,0,2125,3,0,0 +2013,6,17,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,947,-3,0,1754,-22,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1335,22,1,1445,13,0,0 +2013,5,19,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1805,29,1,2050,11,0,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2149,0,,42,0,1,1 +2013,9,18,3,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,-2,0,2225,1,0,0 +2013,8,22,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,5,0,1025,4,0,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2210,-8,0,2330,-14,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,30,1,1415,26,1,0 +2013,6,19,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-6,0,1650,3,0,0 +2013,5,7,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,-5,0,910,-13,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1350,-3,0,1650,-17,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-2,0,1525,-16,0,0 +2013,7,4,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1735,6,0,1815,-4,0,0 +2013,8,23,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,-2,0,1355,1,0,0 +2013,10,31,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1434,-5,0,1655,-10,0,0 +2013,6,20,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-4,0,1006,-3,0,0 +2013,4,3,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1830,-2,0,2014,-16,0,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1531,-5,0,1657,-17,0,0 +2013,7,21,7,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1805,-5,0,2040,22,1,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2040,97,1,2250,77,1,0 +2013,5,25,6,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,12954,Long Beach Airport,Long Beach,CA,105,-3,0,723,-7,0,0 +2013,6,28,5,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-5,0,900,-19,0,0 +2013,7,14,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,737,3,0,820,-2,0,0 +2013,7,1,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-1,0,805,-2,0,0 +2013,7,8,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,-5,0,1855,0,0,0 +2013,9,23,1,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-7,0,1232,-21,0,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1955,25,1,2209,19,1,0 +2013,10,23,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-7,0,2025,-4,0,0 +2013,6,2,7,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1102,4,0,1948,5,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,0,0,1730,-9,0,0 +2013,5,5,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,-5,0,2233,-15,0,0 +2013,6,9,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,107,1,2105,122,1,0 +2013,10,5,6,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,532,-3,0,855,0,0,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1442,-2,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,1,0,2140,-9,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2150,3,0,2344,1,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1729,54,1,1857,38,1,0 +2013,6,26,3,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1105,0,0,1505,29,1,0 +2013,4,24,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,-4,0,1130,-14,0,0 +2013,7,26,5,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1145,90,1,1320,118,1,0 +2013,4,11,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1830,-9,0,1957,-22,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1205,0,0,1407,-15,0,0 +2013,6,14,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2033,-4,0,2326,-10,0,0 +2013,9,6,5,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,95,1,2045,59,1,0 +2013,6,5,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-5,0,1201,-17,0,0 +2013,8,5,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,-3,0,1117,8,0,0 +2013,10,1,2,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1805,32,1,1926,11,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1900,0,0,2005,-10,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1850,-4,0,2108,33,1,0 +2013,6,21,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,45,1,1530,19,1,0 +2013,5,14,2,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,615,1,0,710,-16,0,0 +2013,9,7,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1748,-21,0,0 +2013,6,25,2,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1028,16,1,1201,46,1,0 +2013,4,4,4,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-5,0,825,-2,0,0 +2013,4,17,3,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,-6,0,1413,-13,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1940,0,0,2210,5,0,0 +2013,9,22,7,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1724,-1,0,1822,-10,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-5,0,1324,-3,0,0 +2013,9,29,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1251,-15,0,0 +2013,4,21,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1816,-12,0,2009,-13,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,15,1,1717,4,0,0 +2013,4,10,3,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1445,-1,0,1640,-2,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,58,1,1405,49,1,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,30,1,1947,23,1,0 +2013,4,25,4,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,2,0,1245,4,0,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,831,-4,0,1457,-11,0,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,850,48,1,1015,46,1,0 +2013,6,25,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,18,1,2220,12,0,0 +2013,4,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1130,3,0,1245,5,0,0 +2013,10,3,4,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,700,-9,0,845,-24,0,0 +2013,9,19,4,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1130,-11,0,1957,3,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1810,41,1,2240,41,1,0 +2013,7,18,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,605,-2,0,720,-10,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1625,4,0,1803,-7,0,0 +2013,5,27,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1440,-6,0,1656,-21,0,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1935,-1,0,2330,-8,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1010,-4,0,1200,-15,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-4,0,1010,-13,0,0 +2013,4,17,3,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,0,0,1405,17,1,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,2,0,1603,6,0,0 +2013,9,8,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,908,-2,0,0 +2013,7,1,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,825,-6,0,1040,7,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-4,0,921,-5,0,0 +2013,4,17,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1925,37,1,2219,60,1,0 +2013,6,6,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-1,0,1709,3,0,0 +2013,6,10,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,7,0,925,-6,0,0 +2013,10,17,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1730,26,1,1840,19,1,0 +2013,9,22,7,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1730,-4,0,2253,-21,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,65,1,1430,48,1,0 +2013,7,30,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1140,-8,0,1331,-17,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,735,0,0,1035,-4,0,0 +2013,10,13,7,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,825,39,1,1026,63,1,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,4,0,2139,5,0,0 +2013,4,22,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1229,-13,0,1417,14,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,845,-2,0,1205,-8,0,0 +2013,4,21,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,1,0,2050,-3,0,0 +2013,9,24,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1355,-7,0,1405,-8,0,0 +2013,8,5,1,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,745,-2,0,920,-11,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,1,0,1000,-8,0,0 +2013,6,9,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,718,-1,0,1015,-1,0,0 +2013,7,18,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,44,1,1430,36,1,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,3,0,1620,10,0,0 +2013,6,28,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1449,5,0,1626,-10,0,0 +2013,8,21,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-7,0,832,-13,0,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1020,-4,0,1435,-26,0,0 +2013,6,30,7,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1855,149,1,2015,143,1,0 +2013,5,7,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-9,0,2128,-13,0,0 +2013,6,13,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,40,98,1,853,116,1,0 +2013,10,27,7,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1800,104,1,1910,90,1,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1055,8,0,1200,7,0,0 +2013,10,23,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1210,3,0,1315,6,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1020,-5,0,1136,4,0,0 +2013,8,4,7,9E,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1931,-3,0,2115,13,0,0 +2013,9,13,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,22,1,2015,30,1,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,600,1,0,935,-16,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-2,0,850,-9,0,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,19,1,1131,16,1,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1100,3,0,1155,0,0,0 +2013,5,28,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1415,29,1,1920,28,1,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,605,19,1,745,-8,0,0 +2013,5,25,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1058,-17,0,0 +2013,6,10,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,2359,38,1,539,32,1,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-2,0,2156,-21,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2225,49,1,2355,35,1,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1430,16,1,1842,12,0,0 +2013,9,15,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,-3,0,1459,3,0,0 +2013,5,25,6,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,635,1,0,1245,-5,0,0 +2013,7,9,2,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,-8,0,1950,-19,0,0 +2013,6,15,6,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,-2,0,1029,-12,0,0 +2013,5,11,6,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1710,62,1,1915,34,1,0 +2013,7,18,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1745,13,0,2029,5,0,0 +2013,6,10,1,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1726,3,0,1936,-11,0,0 +2013,4,22,1,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1300,4,0,1450,3,0,0 +2013,9,17,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1956,-11,0,2029,-11,0,0 +2013,6,30,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,9,0,1642,5,0,0 +2013,5,1,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,625,0,0,810,-13,0,0 +2013,5,27,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,725,69,1,1335,72,1,0 +2013,10,23,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,850,-4,0,1027,-4,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-1,0,1236,15,1,0 +2013,4,1,1,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1532,-14,0,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1343,-8,0,1434,-8,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2230,0,0,653,-36,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1911,-1,0,2212,-16,0,0 +2013,4,8,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-6,0,840,-17,0,0 +2013,8,8,4,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,28,1,2115,36,1,0 +2013,5,23,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,94,1,659,117,1,0 +2013,6,28,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1015,54,1,1205,54,1,0 +2013,9,6,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,1020,-1,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,19,1,1050,12,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,900,8,0,1030,0,0,0 +2013,6,7,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,28,1,1210,26,1,0 +2013,7,1,1,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1135,2,0,1240,-14,0,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1225,8,0,1415,35,1,0 +2013,4,13,6,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1950,-3,0,2320,-7,0,0 +2013,5,16,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,1250,-1,0,0 +2013,5,4,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1410,11,0,1445,7,0,0 +2013,5,2,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,700,0,0,735,-10,0,0 +2013,9,12,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1545,135,1,1920,131,1,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1735,9,0,1915,-2,0,0 +2013,9,1,7,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1623,62,1,1705,76,1,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-9,0,910,-12,0,0 +2013,9,12,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,637,93,1,835,86,1,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,915,-6,0,1059,-19,0,0 +2013,8,2,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1556,-1,0,2108,-9,0,0 +2013,7,30,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,3,0,1625,-9,0,0 +2013,7,12,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1050,1,0,0 +2013,10,31,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,656,0,0,821,10,0,0 +2013,9,27,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1724,-2,0,1940,-21,0,0 +2013,6,2,7,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-6,0,1908,4,0,0 +2013,4,15,1,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,845,-5,0,1050,-24,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1121,-4,0,1307,4,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2015,14,0,2225,9,0,0 +2013,9,30,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-11,0,1408,-15,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1625,3,0,1740,-7,0,0 +2013,7,6,6,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,945,-7,0,1115,-11,0,0 +2013,8,16,5,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,4,0,910,6,0,0 +2013,7,18,4,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-5,0,1634,8,0,0 +2013,5,16,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-3,0,1903,1,0,0 +2013,10,13,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,0,0,1912,4,0,0 +2013,7,21,7,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-7,0,1521,-15,0,0 +2013,6,12,3,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-9,0,505,-14,0,0 +2013,7,1,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,12,0,1220,-6,0,0 +2013,9,21,6,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1520,5,0,655,-2,0,0 +2013,10,17,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,55,1,2100,37,1,0 +2013,9,17,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,0,0,1715,-8,0,0 +2013,10,25,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-1,0,1320,-6,0,0 +2013,4,8,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-6,0,1620,0,0,0 +2013,10,18,5,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-6,0,1052,37,1,0 +2013,7,24,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1805,9,0,1905,-2,0,0 +2013,5,13,1,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1629,-6,0,1927,-23,0,0 +2013,10,17,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1444,2,0,0 +2013,6,4,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1745,-6,0,1855,-8,0,0 +2013,10,10,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1749,-9,0,1924,7,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1918,-8,0,2035,-13,0,0 +2013,9,26,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1120,12,0,1723,-28,0,0 +2013,6,14,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,0,0,1410,-7,0,0 +2013,7,30,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2145,2,0,105,-17,0,0 +2013,5,28,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,800,-10,0,821,16,1,0 +2013,8,4,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,16,1,1825,8,0,0 +2013,4,9,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,-3,0,2032,-28,0,0 +2013,5,31,5,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,710,-4,0,843,-7,0,0 +2013,7,6,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,-7,0,1728,-16,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,4,0,1155,-8,0,0 +2013,9,25,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2203,-8,0,2315,-13,0,0 +2013,5,21,2,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1800,15,1,2002,4,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,750,-3,0,930,-20,0,0 +2013,8,18,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1102,1,0,0 +2013,5,12,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,-1,0,1320,-7,0,0 +2013,7,14,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1240,-4,0,1521,3,0,0 +2013,8,14,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1257,1,0,1457,-13,0,0 +2013,9,3,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,735,-5,0,1035,8,0,0 +2013,10,28,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1000,8,0,1207,27,1,0 +2013,10,28,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,945,-1,0,1235,16,1,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,0,,1240,0,1,1 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1125,9,0,1255,14,0,0 +2013,8,28,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1320,8,0,1445,-3,0,0 +2013,10,5,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1125,1,0,1217,-16,0,0 +2013,4,27,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-4,0,1235,3,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,605,-4,0,1025,8,0,0 +2013,7,23,2,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1000,-4,0,1340,-2,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,-3,0,2235,-26,0,0 +2013,10,22,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,720,-6,0,857,0,0,0 +2013,6,28,5,OO,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-8,0,1635,-8,0,0 +2013,5,3,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,-4,0,1305,3,0,0 +2013,4,26,5,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1636,50,1,1800,69,1,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2039,16,1,2200,8,0,0 +2013,8,5,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1129,-1,0,1357,10,0,0 +2013,5,25,6,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,700,3,0,1040,7,0,0 +2013,6,20,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1625,15,1,1720,4,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1249,-1,0,1512,-11,0,0 +2013,4,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1015,-5,0,1205,-5,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1920,18,1,2,11,0,0 +2013,8,15,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,1020,-16,0,0 +2013,9,23,1,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,-8,0,943,-7,0,0 +2013,5,12,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,565,1,1049,564,1,0 +2013,9,22,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,5,0,2020,0,0,0 +2013,4,16,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,0,0,1255,-8,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1359,0,0,1546,2,0,0 +2013,8,20,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,705,2,0,833,13,0,0 +2013,5,28,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1215,5,0,1330,3,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,849,0,0,1028,15,1,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,102,1,2215,100,1,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,24,1,1155,19,1,0 +2013,6,24,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1200,-5,0,1430,23,1,0 +2013,4,13,6,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1237,21,1,1408,18,1,0 +2013,7,16,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-5,0,1025,-23,0,0 +2013,7,24,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,1,0,745,1,0,0 +2013,4,21,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,645,-3,0,800,-21,0,0 +2013,5,23,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1529,-14,0,0 +2013,6,22,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,13,0,1350,10,0,0 +2013,7,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1335,8,0,1500,2,0,0 +2013,5,6,1,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-2,0,1207,-20,0,0 +2013,4,24,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,15,1,1523,12,0,0 +2013,8,7,3,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1321,3,0,1515,-4,0,0 +2013,6,20,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,647,7,0,824,-8,0,0 +2013,5,30,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-3,0,1818,-19,0,0 +2013,5,16,4,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,735,-7,0,1010,-16,0,0 +2013,8,12,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,700,-13,0,1000,-32,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1702,-4,0,2023,5,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-2,0,1413,-18,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1312,31,1,1552,32,1,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,-6,0,1809,-7,0,0 +2013,6,25,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1121,37,1,1224,32,1,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,36,1,2215,27,1,0 +2013,7,7,7,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,755,-4,0,905,-3,0,0 +2013,6,17,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2135,121,1,2335,110,1,0 +2013,4,28,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1919,57,1,2100,31,1,0 +2013,5,27,1,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1916,-6,0,2105,-13,0,0 +2013,9,13,5,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1200,-7,0,2020,2,0,0 +2013,8,27,2,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,9,0,915,8,0,0 +2013,10,7,1,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-9,0,1137,-2,0,0 +2013,6,2,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,29,1,1745,20,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2008,-1,0,2233,-14,0,0 +2013,6,17,1,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1824,75,1,2148,55,1,0 +2013,8,23,5,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,-5,0,915,-3,0,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,9,0,1510,10,0,0 +2013,6,19,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2054,-5,0,2228,-5,0,0 +2013,9,3,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,6,0,1825,10,0,0 +2013,4,26,5,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-2,0,1131,-27,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-4,0,1513,4,0,0 +2013,5,30,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,605,5,0,901,18,1,0 +2013,5,24,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1710,10,0,1830,7,0,0 +2013,5,25,6,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,730,-2,0,915,-9,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2130,1,0,2235,-2,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1928,0,0,2306,-10,0,0 +2013,7,20,6,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,830,-1,0,920,-4,0,0 +2013,4,4,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1210,21,1,1345,9,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1245,9,0,1520,-12,0,0 +2013,7,14,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1730,24,1,2144,17,1,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2016,-8,0,2128,-17,0,0 +2013,6,3,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,824,-3,0,921,-7,0,0 +2013,4,27,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1332,16,1,1532,-16,0,0 +2013,4,4,4,9E,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,17,1,1806,38,1,0 +2013,9,16,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1930,12,0,2040,-3,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,650,-1,0,910,-12,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,-2,0,1045,-19,0,0 +2013,6,22,6,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2030,11,0,2204,-31,0,0 +2013,10,14,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-4,0,1319,-23,0,0 +2013,8,5,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,16,1,1910,7,0,0 +2013,6,26,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,956,82,1,1218,66,1,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,0,0,1450,-8,0,0 +2013,5,28,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,2015,-8,0,2240,-6,0,0 +2013,7,21,7,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,914,9,0,1037,1,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,-2,0,2143,-22,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,-5,0,2251,22,1,0 +2013,5,31,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1455,-1,0,1625,14,0,0 +2013,9,26,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,3,0,722,-1,0,0 +2013,4,11,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1955,-3,0,2115,-2,0,0 +2013,9,1,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,-6,0,1540,-24,0,0 +2013,10,21,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1119,-3,0,1535,-13,0,0 +2013,6,26,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,18,1,1357,34,1,0 +2013,8,7,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,653,-6,0,749,-18,0,0 +2013,6,28,5,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,745,-1,0,950,-14,0,0 +2013,9,14,6,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1805,0,0,1920,-5,0,0 +2013,5,3,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,640,-6,0,925,15,1,0 +2013,7,24,3,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1535,-3,0,1825,-14,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,740,12,0,855,7,0,0 +2013,4,17,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,705,-4,0,915,-6,0,0 +2013,7,22,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-4,0,2057,-12,0,0 +2013,9,4,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,959,18,1,1032,8,0,0 +2013,4,4,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,605,-5,0,905,-6,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,5,0,1736,-12,0,0 +2013,6,24,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1239,0,0,1539,11,0,0 +2013,8,14,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1925,12,0,2055,16,1,0 +2013,8,29,4,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1511,20,1,1751,3,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1627,0,0,1822,-6,0,0 +2013,10,12,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1310,4,0,1540,-1,0,0 +2013,7,2,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1825,4,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,42,1,1607,42,1,0 +2013,7,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,950,3,0,1250,-8,0,0 +2013,4,6,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1745,2,0,1900,-4,0,0 +2013,10,2,3,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,804,-8,0,903,-19,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1940,-1,0,50,-13,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1458,-1,0,1624,-13,0,0 +2013,10,5,6,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1545,18,1,1855,-4,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1050,-7,0,1234,-9,0,0 +2013,8,18,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-8,0,950,-18,0,0 +2013,6,12,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1730,17,1,2115,7,0,0 +2013,6,4,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1120,2,0,1445,-19,0,0 +2013,9,11,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1539,-5,0,1640,5,0,0 +2013,9,7,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1535,19,1,1811,-8,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,-3,0,1630,-12,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1300,119,1,1421,115,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2100,14,0,2255,0,0,0 +2013,8,19,1,9E,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,647,-7,0,821,-13,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1745,-2,0,2200,-9,0,0 +2013,9,30,1,EV,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1855,-5,0,2048,-10,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2015,-1,0,2255,-3,0,0 +2013,8,29,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,2,0,1310,-19,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,630,-4,0,739,-16,0,0 +2013,6,3,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1215,3,0,1310,-1,0,0 +2013,5,16,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1615,-3,0,1745,-9,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,700,-8,0,840,-19,0,0 +2013,9,6,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-8,0,1640,-7,0,0 +2013,6,8,6,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1505,0,0,1650,-20,0,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2140,-5,0,2317,-14,0,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,735,16,1,1101,0,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2105,32,1,2250,19,1,0 +2013,8,11,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2150,-1,0,646,-8,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1715,-2,0,1849,-17,0,0 +2013,6,4,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,-1,0,735,-8,0,0 +2013,5,8,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1020,-3,0,1137,-2,0,0 +2013,8,26,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1605,-3,0,2155,-12,0,0 +2013,5,27,1,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1115,-2,0,1250,-34,0,0 +2013,9,13,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-2,0,849,9,0,0 +2013,7,2,2,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,55,1,2308,30,1,0 +2013,6,14,5,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1250,0,0,1535,-20,0,0 +2013,8,21,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1255,-4,0,1405,-3,0,0 +2013,10,1,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1825,6,0,1910,3,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1235,-3,0,1255,-7,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1122,-3,0,1559,-11,0,0 +2013,6,26,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,742,-1,0,1025,-6,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,715,-3,0,930,-11,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-3,0,2004,-21,0,0 +2013,4,2,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1340,-3,0,1505,-22,0,0 +2013,4,22,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1945,9,0,2237,-6,0,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,13,0,1542,-4,0,0 +2013,8,4,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,22,1,950,14,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1059,0,0,1338,-23,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1640,47,1,1745,47,1,0 +2013,7,20,6,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1226,80,1,1424,85,1,0 +2013,8,29,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-3,0,809,-3,0,0 +2013,9,25,3,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1225,-2,0,1510,0,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,2,0,1205,-9,0,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-4,0,1441,-16,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,63,1,1618,47,1,0 +2013,7,10,3,EV,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1431,-1,0,1703,0,0,0 +2013,8,5,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,8,0,2010,4,0,0 +2013,10,15,2,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,710,-1,0,1035,3,0,0 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1740,-5,0,1911,-20,0,0 +2013,9,1,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,950,-1,0,1240,-5,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1740,0,0,1845,-6,0,0 +2013,6,10,1,9E,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1116,0,,1305,0,1,1 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,847,6,0,920,-8,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1130,14,0,1315,-12,0,0 +2013,6,25,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1152,19,1,1339,11,0,0 +2013,10,8,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1915,-2,0,2235,-25,0,0 +2013,9,13,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-10,0,1556,-16,0,0 +2013,4,14,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1644,77,1,1819,69,1,0 +2013,5,23,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1520,-8,0,1647,-5,0,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1715,119,1,2240,97,1,0 +2013,6,20,4,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-4,0,2200,-14,0,0 +2013,7,28,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,-4,0,1941,11,0,0 +2013,4,14,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,150,1,2150,149,1,0 +2013,7,6,6,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2349,11,0,715,7,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-14,0,1313,-5,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1910,31,1,2247,21,1,0 +2013,6,23,7,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-15,0,840,-20,0,0 +2013,9,18,3,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1350,-5,0,1525,-2,0,0 +2013,5,13,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2252,-9,0,15,1,0,0 +2013,9,11,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1535,-2,0,1859,56,1,0 +2013,8,9,5,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,955,-1,0,1750,-13,0,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1725,21,1,2155,-2,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1605,97,1,2240,93,1,0 +2013,6,18,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1612,-5,0,1847,27,1,0 +2013,8,17,6,YV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2159,-8,0,2308,-19,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,800,-1,0,945,-9,0,0 +2013,10,21,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,-10,0,1334,-11,0,0 +2013,4,24,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2054,-1,0,2158,9,0,0 +2013,9,27,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-2,0,1451,-3,0,0 +2013,5,1,3,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1142,-8,0,1416,-21,0,0 +2013,10,20,7,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1730,29,1,1942,12,0,0 +2013,4,30,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1043,16,1,1225,-7,0,0 +2013,4,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,805,0,0,1355,-22,0,0 +2013,8,30,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1640,66,1,1755,58,1,0 +2013,7,6,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1331,8,0,1406,10,0,0 +2013,4,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,23,1,1055,21,1,0 +2013,7,31,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,-7,0,1155,-16,0,0 +2013,8,21,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,-5,0,1135,-15,0,0 +2013,5,9,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1509,-5,0,1735,7,0,0 +2013,9,8,7,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1245,0,0,1625,3,0,0 +2013,10,29,2,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-3,0,1045,-2,0,0 +2013,9,11,3,OO,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1058,3,0,1527,1,0,0 +2013,6,1,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1200,-1,0,1345,-12,0,0 +2013,6,2,7,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1440,-3,0,1925,-11,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1935,110,1,2156,96,1,0 +2013,5,3,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,35,1,1950,23,1,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1755,-3,0,1855,-8,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1040,11,0,1140,8,0,0 +2013,8,18,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1210,-16,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,850,-2,0,1543,-27,0,0 +2013,4,5,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2220,129,1,209,129,1,0 +2013,5,1,3,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-1,0,935,-3,0,0 +2013,9,3,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-2,0,725,-16,0,0 +2013,10,20,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,0,0,1155,-5,0,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2220,-5,0,13,-18,0,0 +2013,9,19,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-4,0,849,-14,0,0 +2013,9,2,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1104,0,0,1710,-5,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,42,1,2310,28,1,0 +2013,9,22,7,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1816,26,1,1925,15,1,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1730,18,1,2055,11,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,1,0,858,2,0,0 +2013,4,28,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1245,-5,0,1420,-10,0,0 +2013,7,20,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1435,4,0,1535,-3,0,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,-2,0,1755,-15,0,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,0,0,910,-11,0,0 +2013,6,12,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,6,0,1321,24,1,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,615,-2,0,715,-11,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,-3,0,1359,3,0,0 +2013,10,10,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,851,-16,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,52,1,1320,49,1,0 +2013,5,6,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,29,1,1245,36,1,0 +2013,8,28,3,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-11,0,904,-13,0,0 +2013,7,25,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-1,0,1800,-10,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,2150,1,0,2341,0,0,0 +2013,10,5,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,4,0,1835,-4,0,0 +2013,9,14,6,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1426,-5,0,1658,-5,0,0 +2013,5,10,5,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,-3,0,2020,10,0,0 +2013,5,5,7,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,-7,0,1110,-40,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,1,0,1035,-6,0,0 +2013,7,4,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1644,-10,0,1825,-12,0,0 +2013,4,7,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1833,-12,0,2115,-17,0,0 +2013,7,31,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,530,1,0,1115,-12,0,0 +2013,6,1,6,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1101,-11,0,1257,-10,0,0 +2013,9,22,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1715,2,0,1857,3,0,0 +2013,5,16,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,10,0,1720,7,0,0 +2013,8,1,4,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-5,0,1144,-2,0,0 +2013,6,2,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1125,35,1,1305,33,1,0 +2013,5,1,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,32,1,1048,55,1,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1850,18,1,2020,18,1,0 +2013,8,20,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-5,0,1019,-16,0,0 +2013,5,4,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,12,0,835,17,1,0 +2013,7,28,7,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,26,1,2015,19,1,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,835,-3,0,1025,-20,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1455,14,0,1720,6,0,0 +2013,10,28,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-4,0,934,-1,0,0 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,-5,0,1830,-7,0,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1420,1,0,1705,-17,0,0 +2013,7,1,1,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1514,72,1,1626,76,1,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,6,0,2101,-2,0,0 +2013,10,8,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,915,-2,0,1056,-23,0,0 +2013,8,26,1,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,-3,0,2310,-30,0,0 +2013,8,20,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1249,-6,0,1535,-9,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1449,-5,0,1604,-19,0,0 +2013,9,20,5,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1320,16,1,1515,36,1,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,17,1,1855,9,0,0 +2013,6,9,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1015,2,0,1135,-3,0,0 +2013,9,23,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1840,-7,0,2120,-19,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1435,7,0,1545,-3,0,0 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,1521,2,0,0 +2013,5,21,2,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,840,-5,0,1023,-13,0,0 +2013,8,2,5,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,10,0,745,16,1,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,843,0,0,1532,10,0,0 +2013,4,29,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1346,-12,0,1621,-7,0,0 +2013,6,21,5,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,645,-4,0,749,-12,0,0 +2013,9,1,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1135,-2,0,1205,-13,0,0 +2013,6,16,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,13,0,2317,12,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1625,2,0,1750,4,0,0 +2013,8,10,6,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1817,-3,0,1918,-9,0,0 +2013,8,13,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-6,0,1045,-12,0,0 +2013,8,30,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1256,0,0,1400,28,1,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2105,94,1,2250,96,1,0 +2013,7,7,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-7,0,2015,-22,0,0 +2013,9,2,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,725,-3,0,1001,-23,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-2,0,1555,4,0,0 +2013,7,5,5,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1640,2,0,1950,-7,0,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,647,-1,0,1211,2,0,0 +2013,9,7,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1125,-4,0,1420,-22,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,0,0,1736,-7,0,0 +2013,7,5,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,32,1,2130,30,1,0 +2013,4,2,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,825,-4,0,950,-2,0,0 +2013,7,23,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,22,1,2155,34,1,0 +2013,8,21,3,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,-6,0,2029,5,0,0 +2013,6,12,3,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,605,-5,0,735,5,0,0 +2013,4,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1715,2,0,1855,-9,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2015,-4,0,2122,-7,0,0 +2013,6,13,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1512,-6,0,1645,-12,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1700,31,1,106,2,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,37,1,1540,32,1,0 +2013,4,26,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-2,0,1410,-3,0,0 +2013,9,2,1,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1810,0,0,2055,-32,0,0 +2013,10,8,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-7,0,1250,-17,0,0 +2013,10,8,2,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1910,-2,0,2217,2,0,0 +2013,5,21,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2059,-1,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2130,8,0,2255,6,0,0 +2013,4,23,2,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1430,-4,0,1845,2,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2036,-4,0,2152,-30,0,0 +2013,6,27,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,76,1,2135,122,1,0 +2013,8,5,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1554,-5,0,0 +2013,8,28,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,2000,-2,0,2204,0,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1000,20,1,1220,10,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,0,0,1255,1,0,0 +2013,8,29,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-3,0,1658,3,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1655,36,1,1800,29,1,0 +2013,6,27,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,-5,0,920,-16,0,0 +2013,10,18,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2025,4,0,2058,8,0,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,0,,1040,0,1,1 +2013,10,3,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1454,11,0,2005,-6,0,0 +2013,4,2,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,745,-6,0,900,-7,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1520,19,1,2302,22,1,0 +2013,4,21,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1105,-3,0,1234,-11,0,0 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1205,15,1,1354,12,0,0 +2013,9,26,4,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1800,-1,0,2008,-1,0,0 +2013,10,26,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1555,-7,0,1829,-16,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,959,-4,0,1126,3,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2250,-3,0,2359,-8,0,0 +2013,4,2,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-6,0,1504,-16,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2209,-4,0,2348,-11,0,0 +2013,10,16,3,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1038,-7,0,1141,-17,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1052,13,0,1223,45,1,0 +2013,7,30,2,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,3,0,1307,-9,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,0,0,1935,3,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,700,0,0,1255,-21,0,0 +2013,7,16,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1207,2,0,1531,-9,0,0 +2013,9,20,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-2,0,1921,-9,0,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,0,0,2216,4,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-1,0,900,-5,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,9,0,1540,6,0,0 +2013,6,26,3,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2045,33,1,2310,35,1,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,-1,0,1055,-6,0,0 +2013,9,27,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,545,-4,0,907,-24,0,0 +2013,5,15,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-6,0,1031,-19,0,0 +2013,5,15,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,837,35,1,857,44,1,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,29,1,2325,27,1,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1733,-3,0,201,-15,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,-2,0,705,-4,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1335,12,0,1610,20,1,0 +2013,10,20,7,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,0,0,1205,-10,0,0 +2013,4,24,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1320,9,0,1525,11,0,0 +2013,9,24,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,-4,0,1303,0,0,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1530,3,0,1740,-9,0,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,0,0,2124,-6,0,0 +2013,5,15,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,705,-9,0,1042,-24,0,0 +2013,4,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,625,-5,0,810,-21,0,0 +2013,5,4,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-1,0,1735,-3,0,0 +2013,5,20,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1810,50,1,1935,43,1,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1415,-2,0,1554,-5,0,0 +2013,5,14,2,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,1025,129,1,1810,134,1,0 +2013,8,25,7,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-1,0,2202,-29,0,0 +2013,4,21,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,644,-5,0,810,26,1,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,6,0,1505,8,0,0 +2013,7,2,2,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-2,0,910,8,0,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1105,0,0,1325,-19,0,0 +2013,5,19,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,4,0,1755,6,0,0 +2013,6,9,7,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1425,7,0,1545,16,1,0 +2013,4,10,3,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,16,1,1935,31,1,0 +2013,4,12,5,DL,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,45,1,2134,28,1,0 +2013,5,4,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-6,0,654,-4,0,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,9,0,2240,-8,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-9,0,2058,-34,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2141,6,0,2319,-2,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-5,0,1301,-2,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,-3,0,1151,-7,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,4,0,1000,-8,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2202,0,0,2345,-15,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1115,14,0,1310,15,1,0 +2013,6,13,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,-5,0,2137,-19,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1630,0,0,1820,1,0,0 +2013,4,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,94,1,1442,91,1,0 +2013,10,1,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1735,21,1,2130,26,1,0 +2013,6,24,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,810,-8,0,825,22,1,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2148,-5,0,100,-18,0,0 +2013,9,30,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1455,-1,0,1605,-8,0,0 +2013,8,20,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1437,-7,0,1658,-5,0,0 +2013,5,21,2,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1312,-2,0,1500,-14,0,0 +2013,9,29,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2015,-1,0,2125,-6,0,0 +2013,7,8,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-3,0,1425,-16,0,0 +2013,7,31,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-2,0,832,-10,0,0 +2013,7,8,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,705,-5,0,817,-17,0,0 +2013,4,15,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,-10,0,720,-15,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,18,1,2111,-1,0,0 +2013,9,21,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-5,0,1013,-5,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-4,0,2041,-6,0,0 +2013,7,13,6,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-2,0,500,8,0,0 +2013,9,6,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,655,1,0,815,-3,0,0 +2013,10,10,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,6,0,1955,-12,0,0 +2013,4,23,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2155,5,0,2315,9,0,0 +2013,7,18,4,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1000,-17,0,0 +2013,10,1,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-7,0,752,-1,0,0 +2013,9,28,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1332,-4,0,1600,15,1,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2010,-2,0,2135,-5,0,0 +2013,6,1,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-3,0,1017,7,0,0 +2013,5,13,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1910,53,1,1932,40,1,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,-1,0,1105,-25,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1415,2,0,1605,-9,0,0 +2013,5,14,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1540,153,1,1855,105,1,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,-4,0,2040,-14,0,0 +2013,6,6,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2025,31,1,2150,33,1,0 +2013,9,23,1,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1306,-3,0,1540,-18,0,0 +2013,9,30,1,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1855,-3,0,2030,-26,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2045,17,1,2345,-8,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,0,0,2043,7,0,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1250,-4,0,1340,-9,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,-3,0,1904,-12,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1200,5,0,1255,1,0,0 +2013,8,30,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1125,24,1,1130,18,1,0 +2013,7,12,5,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1803,-5,0,1850,-9,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,726,-5,0,1009,-11,0,0 +2013,5,9,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1750,-1,0,1915,-3,0,0 +2013,5,6,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,840,-1,0,955,27,1,0 +2013,8,25,7,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-10,0,925,-29,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,905,-8,0,1005,-19,0,0 +2013,5,31,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,800,-10,0,925,-15,0,0 +2013,9,9,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,29,1,1850,9,0,0 +2013,8,26,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,830,0,0,940,-3,0,0 +2013,8,2,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1909,-1,0,2024,-10,0,0 +2013,7,8,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1820,-2,0,2005,-13,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,-3,0,1447,-6,0,0 +2013,10,3,4,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1503,20,1,1604,28,1,0 +2013,7,26,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-5,0,1631,-21,0,0 +2013,6,5,3,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,2355,-9,0,724,-22,0,0 +2013,8,25,7,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-6,0,1153,-16,0,0 +2013,4,29,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1510,-4,0,2011,4,0,0 +2013,5,21,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1220,47,1,1418,42,1,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1740,5,0,1923,29,1,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,725,-3,0,935,-12,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2100,77,1,2235,76,1,0 +2013,8,1,4,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-7,0,1254,-15,0,0 +2013,10,3,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,8,0,1828,4,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1447,-3,0,1543,-2,0,0 +2013,4,9,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1218,-9,0,1330,-15,0,0 +2013,4,16,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,59,1,1615,37,1,0 +2013,8,17,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1835,-1,0,44,-12,0,0 +2013,8,29,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,801,-1,0,900,-10,0,0 +2013,5,15,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1445,-9,0,1651,-28,0,0 +2013,10,26,6,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,955,-3,0,1340,-14,0,0 +2013,4,8,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-6,0,628,-19,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,19,1,1355,11,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1640,44,1,1927,94,1,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1743,2,0,2018,6,0,0 +2013,9,19,4,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1000,-1,0,1115,10,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-8,0,1201,-18,0,0 +2013,8,22,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-8,0,1016,-32,0,0 +2013,5,22,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,3,0,2110,8,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,-4,0,1912,-10,0,0 +2013,5,1,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1936,-6,0,2323,-2,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,630,0,,855,0,1,1 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-5,0,1759,-7,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1948,0,0,2335,-22,0,0 +2013,9,9,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1329,-9,0,1509,-5,0,0 +2013,9,27,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1345,-6,0,1511,-14,0,0 +2013,7,24,3,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1841,77,1,2007,65,1,0 +2013,6,10,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-10,0,2020,-23,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2005,-5,0,2255,-4,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1156,17,1,1321,12,0,0 +2013,4,4,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1455,7,0,1615,-8,0,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,930,106,1,1059,99,1,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1753,0,0,1915,4,0,0 +2013,4,25,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,940,-5,0,1015,-10,0,0 +2013,4,24,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1940,12,0,2050,12,0,0 +2013,5,12,7,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1855,11,0,1955,14,0,0 +2013,6,15,6,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1915,-10,0,2010,26,1,0 +2013,5,31,5,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1705,-9,0,1841,-3,0,0 +2013,7,5,5,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1450,-3,0,1755,-11,0,0 +2013,4,1,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-2,0,2314,-5,0,0 +2013,7,31,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1535,26,1,1700,15,1,0 +2013,9,19,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-3,0,1211,-11,0,0 +2013,7,22,1,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2217,-4,0,601,-11,0,0 +2013,10,26,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1520,19,1,1750,11,0,0 +2013,8,1,4,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1805,163,1,2040,164,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,939,-3,0,1053,-5,0,0 +2013,10,5,6,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1835,45,1,2137,15,1,0 +2013,7,16,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1305,11,0,1555,8,0,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,-6,0,1158,-2,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1656,118,1,1825,133,1,0 +2013,10,8,2,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,-1,0,556,-13,0,0 +2013,6,15,6,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-2,0,820,0,0,0 +2013,9,30,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,630,-4,0,720,-21,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,20,1,1815,10,0,0 +2013,4,8,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1650,-6,0,1943,-23,0,0 +2013,5,24,5,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1215,14,0,1355,12,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1335,20,1,1415,14,0,0 +2013,6,2,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,-3,0,1930,13,0,0 +2013,4,3,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-6,0,1303,-6,0,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,820,-2,0,1100,-8,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1235,-3,0,1519,-24,0,0 +2013,8,27,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,9,0,910,31,1,0 +2013,4,3,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-8,0,1923,-9,0,0 +2013,6,24,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1820,322,1,1935,293,1,0 +2013,4,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1135,-8,0,1725,-15,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,732,25,1,923,48,1,0 +2013,7,18,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,704,-9,0,1030,-11,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1520,-2,0,1755,-19,0,0 +2013,7,18,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1415,16,1,1638,14,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,-5,0,1644,-18,0,0 +2013,8,22,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1118,17,1,1510,40,1,0 +2013,8,7,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-12,0,1815,-12,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2140,-2,0,2225,-3,0,0 +2013,8,14,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,-3,0,1945,12,0,0 +2013,8,22,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1724,127,1,2027,114,1,0 +2013,10,4,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,845,-4,0,1054,-13,0,0 +2013,5,17,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,0,0,1613,-7,0,0 +2013,8,26,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,600,1,0,725,-5,0,0 +2013,6,20,4,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1915,-15,0,2140,-28,0,0 +2013,4,15,1,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1440,-5,0,2305,12,0,0 +2013,10,16,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1008,-2,0,1233,5,0,0 +2013,8,19,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-5,0,853,7,0,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,735,-2,0,926,-5,0,0 +2013,5,23,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,640,-1,0,805,-8,0,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1453,30,1,1740,28,1,0 +2013,4,30,2,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-1,0,1020,-7,0,0 +2013,6,27,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,71,1,1922,75,1,0 +2013,7,29,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1025,63,1,1225,70,1,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,730,-8,0,1051,-31,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-6,0,1110,-11,0,0 +2013,10,12,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,9,0,635,-1,0,0 +2013,8,23,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-7,0,1853,-19,0,0 +2013,7,5,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,840,-5,0,857,-13,0,0 +2013,8,5,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1110,-1,0,1235,-8,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1135,-5,0,1423,-16,0,0 +2013,10,8,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,-6,0,1525,-20,0,0 +2013,9,21,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1145,47,1,1335,37,1,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,-6,0,2231,-15,0,0 +2013,5,31,5,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,800,-12,0,1354,-28,0,0 +2013,10,27,7,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1320,-1,0,1505,-5,0,0 +2013,6,19,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1504,0,0,1624,-6,0,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-2,0,2205,0,0,0 +2013,6,16,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2115,10,0,25,-4,0,0 +2013,9,6,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,925,1,0,1055,3,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,725,-5,0,900,-10,0,0 +2013,4,1,1,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,801,-10,0,1100,-29,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1930,34,1,2100,37,1,0 +2013,4,17,3,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-1,0,1026,18,1,0 +2013,5,31,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,-3,0,825,-5,0,0 +2013,4,4,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,19,1,1350,13,0,0 +2013,10,5,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1206,54,1,1506,21,1,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1859,17,1,2141,-3,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-3,0,1920,-16,0,0 +2013,10,29,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,2,0,2031,19,1,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1105,-4,0,1340,1,0,0 +2013,5,11,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-9,0,2326,-6,0,0 +2013,9,15,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-5,0,1244,-20,0,0 +2013,4,5,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-9,0,804,5,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1230,-3,0,1447,-20,0,0 +2013,6,30,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-5,0,2252,0,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,645,1,0,927,-7,0,0 +2013,9,19,4,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1150,-7,0,1335,-21,0,0 +2013,7,23,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,-1,0,1718,-3,0,0 +2013,9,8,7,VX,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,800,-4,0,1610,-3,0,0 +2013,10,17,4,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,0,0,909,8,0,0 +2013,5,30,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,920,0,0,1230,20,1,0 +2013,6,18,2,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,800,-5,0,1050,-9,0,0 +2013,8,8,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,600,5,0,1130,-3,0,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,8,0,1830,-16,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2140,12,0,2315,8,0,0 +2013,9,27,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,1001,-11,0,0 +2013,10,10,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1345,7,0,1640,-4,0,0 +2013,4,28,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1820,-1,0,1935,-11,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1240,14,0,1455,15,1,0 +2013,7,13,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1655,-5,0,1922,63,1,0 +2013,8,18,7,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1750,21,1,1940,-2,0,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1605,-4,0,1903,5,0,0 +2013,7,26,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2040,-5,0,2232,-14,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1050,-1,0,1339,2,0,0 +2013,10,2,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-2,0,1320,-14,0,0 +2013,7,30,2,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,546,-4,0,759,-17,0,0 +2013,7,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2001,14,0,2105,14,0,0 +2013,10,25,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,757,-4,0,0 +2013,9,30,1,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1110,12,0,1305,13,0,0 +2013,10,28,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1514,5,0,1847,9,0,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2206,3,0,2248,-7,0,0 +2013,6,29,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-2,0,851,-4,0,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,710,-5,0,926,1,0,0 +2013,8,17,6,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,825,-4,0,925,-21,0,0 +2013,9,19,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,753,-1,0,1118,-11,0,0 +2013,4,9,2,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-5,0,710,-10,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,615,0,,1010,0,1,1 +2013,9,14,6,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,600,-5,0,727,20,1,0 +2013,10,13,7,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,-4,0,2000,-9,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,0,0,2030,-5,0,0 +2013,8,28,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,900,-3,0,915,-5,0,0 +2013,7,3,3,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2100,-2,0,525,16,1,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,900,1,0,1005,-6,0,0 +2013,9,22,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1951,-3,0,2104,-3,0,0 +2013,4,2,2,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,925,-1,0,1135,-1,0,0 +2013,8,3,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1321,4,0,1845,0,0,0 +2013,4,21,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,740,-4,0,1230,-9,0,0 +2013,5,13,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1530,15,1,1717,25,1,0 +2013,5,17,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,0,0,1915,-17,0,0 +2013,6,23,7,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1238,85,1,1655,75,1,0 +2013,4,9,2,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1645,-6,0,1930,-24,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1755,-1,0,1907,-12,0,0 +2013,6,29,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1955,-2,0,2130,13,0,0 +2013,8,15,4,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1524,8,0,1637,8,0,0 +2013,4,30,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-7,0,1922,-50,0,0 +2013,6,2,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1332,-15,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1040,-5,0,1425,-14,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,940,0,0,1128,-11,0,0 +2013,9,17,2,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1005,-6,0,1455,-23,0,0 +2013,7,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1923,9,0,2020,-4,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2055,15,1,2220,4,0,0 +2013,8,1,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1359,0,0,1551,-5,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1850,8,0,2250,-4,0,0 +2013,7,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1350,2,0,1555,1,0,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1935,54,1,2045,48,1,0 +2013,8,14,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,0,0,1402,2,0,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-8,0,1229,-6,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1726,-2,0,1905,-11,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,750,-6,0,1020,-2,0,0 +2013,7,29,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,26,1,1220,12,0,0 +2013,5,5,7,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,825,-3,0,1115,-10,0,0 +2013,4,4,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,600,10,0,930,-3,0,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-2,0,1049,-19,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,744,-5,0,1005,32,1,0 +2013,5,2,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,805,-7,0,930,-9,0,0 +2013,8,27,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1850,-10,0,2220,-52,0,0 +2013,8,1,4,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,615,-7,0,725,-23,0,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,11,0,2035,7,0,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,920,-4,0,1504,-19,0,0 +2013,7,6,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-4,0,734,-8,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1340,3,0,1559,-18,0,0 +2013,9,18,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1441,-13,0,1548,-21,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,1,0,1820,-1,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1440,153,1,1616,140,1,0 +2013,6,21,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1556,-1,0,1826,-15,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2014,15,1,2153,33,1,0 +2013,6,27,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-9,0,1345,-4,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1505,-3,0,1632,-13,0,0 +2013,9,21,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,721,1,0,1025,4,0,0 +2013,8,19,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1640,92,1,1806,84,1,0 +2013,6,1,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-1,0,1605,-14,0,0 +2013,9,6,5,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,759,-2,0,1019,-17,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,19,1,1635,11,0,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1036,11,0,1335,15,1,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,-2,0,2013,-2,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,545,20,1,919,11,0,0 +2013,8,21,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1723,-4,0,1956,5,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2000,10,0,2315,-7,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1629,14,0,1943,-25,0,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2130,-3,0,2328,-19,0,0 +2013,4,1,1,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1333,3,0,1743,14,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,9,0,1912,4,0,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,12,0,2125,17,1,0 +2013,10,2,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1300,-6,0,1450,-18,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,840,-3,0,1210,-26,0,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1255,-4,0,1550,-16,0,0 +2013,9,20,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,1,0,1806,-2,0,0 +2013,7,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,7,0,2136,6,0,0 +2013,6,6,4,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1435,-1,0,1710,-20,0,0 +2013,6,13,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1130,29,1,1255,15,1,0 +2013,9,23,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-5,0,2120,-7,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1947,-5,0,2149,-4,0,0 +2013,9,24,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-7,0,745,-24,0,0 +2013,6,7,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1744,-5,0,1920,-1,0,0 +2013,4,21,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,26,1,1755,28,1,0 +2013,4,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1457,-4,0,1601,-2,0,0 +2013,5,30,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,725,-11,0,1021,-17,0,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1545,7,0,1837,7,0,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1345,3,0,2015,-7,0,0 +2013,7,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1958,30,1,2200,26,1,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,755,-4,0,1000,-6,0,0 +2013,4,30,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-1,0,1501,-12,0,0 +2013,6,14,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,6,0,1910,-1,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,948,0,0,1259,-2,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2135,5,0,2320,2,0,0 +2013,6,19,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2305,11,0,637,7,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,1,0,947,7,0,0 +2013,8,3,6,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1041,0,0,1157,3,0,0 +2013,4,3,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,3,0,920,11,0,0 +2013,7,22,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,2,0,2050,-4,0,0 +2013,4,21,7,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1335,-12,0,1553,1,0,0 +2013,5,20,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1253,-3,0,1459,-4,0,0 +2013,8,20,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,803,-2,0,854,15,1,0 +2013,7,30,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,0,0,1634,-3,0,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1115,-5,0,1236,-30,0,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,1,0,830,-2,0,0 +2013,8,14,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1600,32,1,1705,34,1,0 +2013,10,18,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,1,0,1006,6,0,0 +2013,7,10,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,620,-5,0,755,-24,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2045,120,1,2250,124,1,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-2,0,1231,-13,0,0 +2013,8,17,6,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1020,-10,0,1140,-13,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,8,0,1224,10,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1420,19,1,1652,18,1,0 +2013,6,3,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1720,31,1,1840,28,1,0 +2013,4,3,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1803,16,1,1932,57,1,0 +2013,9,16,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1930,10,0,1956,1,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1905,49,1,2355,48,1,0 +2013,9,4,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,610,-1,0,735,-3,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,8,0,1708,-13,0,0 +2013,7,28,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,7,0,1905,12,0,0 +2013,6,21,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2100,6,0,510,-22,0,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,900,0,0,1105,-15,0,0 +2013,8,9,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,148,1,2305,143,1,0 +2013,4,14,7,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1529,0,0,1647,-5,0,0 +2013,9,26,4,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1725,4,0,1930,11,0,0 +2013,10,29,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,0,0,1918,0,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,-2,0,1735,-6,0,0 +2013,7,8,1,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1115,-3,0,1200,-4,0,0 +2013,10,14,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1930,28,1,2025,27,1,0 +2013,5,8,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1520,-1,0,1628,31,1,0 +2013,7,18,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,1,0,1130,8,0,0 +2013,10,25,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-6,0,840,-14,0,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,37,1,2020,32,1,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1500,16,1,1655,5,0,0 +2013,6,6,4,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1240,7,0,1815,-11,0,0 +2013,7,12,5,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1355,2,0,1700,-2,0,0 +2013,10,11,5,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1930,21,1,2045,16,1,0 +2013,10,6,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,41,1,1029,32,1,0 +2013,7,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2035,-4,0,2156,-7,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1715,0,0,1818,-10,0,0 +2013,5,29,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1849,0,0,2359,-6,0,0 +2013,8,5,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1231,-7,0,1252,17,1,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,5,0,1414,31,1,0 +2013,8,17,6,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,-11,0,550,-29,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2112,-1,0,129,0,0,0 +2013,10,19,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1855,-6,0,2035,-27,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,9,0,2006,4,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-2,0,1151,17,1,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,615,4,0,1225,-17,0,0 +2013,6,12,3,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,600,12,0,1128,2,0,0 +2013,6,14,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,102,1,1445,98,1,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,1,0,2040,14,0,0 +2013,4,3,3,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1457,33,1,1635,22,1,0 +2013,7,8,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,-2,0,2112,0,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1040,6,0,1217,15,1,0 +2013,10,21,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,1,0,2028,-1,0,0 +2013,7,16,2,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,0,0,1330,6,0,0 +2013,6,24,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1338,2,0,1616,9,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,850,-3,0,1615,-21,0,0 +2013,7,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1357,25,1,1803,33,1,0 +2013,10,30,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,40,-1,0,530,-20,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,730,-5,0,1142,-17,0,0 +2013,7,19,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,26,1,2310,33,1,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,39,1,2121,46,1,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,2,0,2210,-15,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-9,0,2245,-12,0,0 +2013,10,12,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1745,-9,0,1932,-11,0,0 +2013,6,1,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1155,8,0,1407,8,0,0 +2013,4,2,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-1,0,1905,11,0,0 +2013,7,20,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,88,1,1015,86,1,0 +2013,9,29,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-2,0,1245,-4,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,4,0,1534,-2,0,0 +2013,5,3,5,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,551,-7,0,805,-17,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,945,-1,0,1105,-1,0,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1159,-13,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,105,1,1521,106,1,0 +2013,10,21,1,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1058,6,0,1139,7,0,0 +2013,4,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2045,0,0,2255,-2,0,0 +2013,8,22,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1420,0,0,1814,0,0,0 +2013,9,9,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,-9,0,922,-29,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,35,1,1455,37,1,0 +2013,4,4,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,905,-9,0,1154,-2,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1510,0,0,2017,-2,0,0 +2013,8,28,3,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,83,1,2343,66,1,0 +2013,10,17,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-4,0,626,1,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,940,33,1,1415,35,1,0 +2013,9,4,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1439,-16,0,1807,15,1,0 +2013,9,13,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,645,-2,0,750,-4,0,0 +2013,8,19,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1011,-4,0,1259,-8,0,0 +2013,6,28,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,605,-1,0,720,-4,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1755,18,1,2131,16,1,0 +2013,7,21,7,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1007,-6,0,1246,-12,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,123,1,2357,116,1,0 +2013,10,28,1,B6,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1553,-4,0,1845,-12,0,0 +2013,8,19,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1549,-2,0,1750,-5,0,0 +2013,10,13,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1420,7,0,1850,-12,0,0 +2013,4,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1355,42,1,1545,50,1,0 +2013,8,6,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-7,0,1548,6,0,0 +2013,5,10,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,645,29,1,915,37,1,0 +2013,7,11,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-7,0,1430,-14,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,3,0,2320,-9,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,6,0,1827,15,1,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,19,1,2215,15,1,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1100,2,0,1658,-4,0,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,955,-2,0,1250,9,0,0 +2013,9,7,6,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,940,-7,0,1647,0,0,0 +2013,10,13,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1628,4,0,2030,-2,0,0 +2013,4,15,1,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,7,0,1600,3,0,0 +2013,6,20,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2020,-15,0,2151,-27,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,-1,0,1220,-14,0,0 +2013,4,10,3,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,625,-8,0,812,-17,0,0 +2013,6,10,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,-7,0,930,-8,0,0 +2013,7,26,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,0,0,1725,-7,0,0 +2013,10,3,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1840,13,0,2025,11,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1435,1,0,1530,-4,0,0 +2013,5,7,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1725,4,0,1835,-7,0,0 +2013,10,20,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,840,-2,0,945,-2,0,0 +2013,7,6,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1129,-9,0,0 +2013,4,3,3,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1925,-5,0,44,5,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,-4,0,1600,-15,0,0 +2013,5,27,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1105,-20,0,1333,-21,0,0 +2013,9,21,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1130,0,0,1400,-5,0,0 +2013,8,27,2,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1038,-5,0,1247,-17,0,0 +2013,7,30,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,-7,0,2151,-10,0,0 +2013,6,22,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,40,-2,0,655,-5,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1745,-1,0,1924,3,0,0 +2013,5,26,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-6,0,1650,6,0,0 +2013,5,10,5,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1030,9,0,1610,14,0,0 +2013,6,7,5,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1924,96,1,2058,110,1,0 +2013,8,4,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1710,19,1,1830,11,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,57,1,2124,49,1,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1004,-4,0,1329,-16,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,835,-2,0,940,-10,0,0 +2013,10,15,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,710,-4,0,932,-15,0,0 +2013,9,24,2,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2055,-8,0,515,-25,0,0 +2013,5,20,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,955,-5,0,1122,-6,0,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,938,9,0,1305,3,0,0 +2013,4,15,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,19,1,2305,19,1,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,60,1,1955,59,1,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2205,19,1,2355,16,1,0 +2013,7,22,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-3,0,955,-9,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2110,-6,0,2212,-21,0,0 +2013,6,3,1,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1540,-1,0,1825,-32,0,0 +2013,7,4,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-7,0,810,-10,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1005,-6,0,1355,-20,0,0 +2013,10,21,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-6,0,1905,-15,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1250,5,0,1550,11,0,0 +2013,10,28,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1939,0,0,2215,5,0,0 +2013,8,18,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,630,-8,0,740,-30,0,0 +2013,5,14,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-6,0,1057,-3,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1635,-4,0,1826,-4,0,0 +2013,4,6,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,0,,1023,0,1,1 +2013,7,16,2,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,815,-6,0,1110,-35,0,0 +2013,9,11,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,3,0,920,-8,0,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-4,0,1402,-12,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,1,0,1125,-3,0,0 +2013,6,10,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,640,0,0,750,1,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-4,0,1349,-17,0,0 +2013,9,10,2,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1724,-9,0,1930,-26,0,0 +2013,8,3,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,842,-2,0,1034,-18,0,0 +2013,10,25,5,OO,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-6,0,1030,-14,0,0 +2013,4,15,1,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1805,-4,0,2128,-21,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1435,-6,0,1640,-8,0,0 +2013,9,26,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,929,-4,0,0 +2013,7,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,27,6,0,633,-10,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,-2,0,1622,-2,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2105,18,1,2325,21,1,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1930,-5,0,2105,-18,0,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1335,4,0,1525,-9,0,0 +2013,10,7,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,36,1,1600,31,1,0 +2013,9,17,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-3,0,1350,1,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-3,0,2333,-14,0,0 +2013,10,1,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1432,17,1,1613,11,0,0 +2013,5,7,2,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1800,3,0,2030,-6,0,0 +2013,8,10,6,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,745,-1,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2115,2,0,2250,-11,0,0 +2013,6,16,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1644,36,1,1817,27,1,0 +2013,10,5,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-5,0,1617,-16,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,0,0,1631,-6,0,0 +2013,4,29,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1330,-5,0,1452,-10,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,56,1,2155,45,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1335,28,1,1444,23,1,0 +2013,8,20,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,66,1,1854,61,1,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1615,-1,0,1710,-10,0,0 +2013,5,29,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1550,21,1,1833,21,1,0 +2013,8,16,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,818,61,1,1000,57,1,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-10,0,1729,-22,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,10,0,2230,7,0,0 +2013,8,25,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1830,-3,0,2130,-1,0,0 +2013,7,18,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13244,Memphis International,Memphis,TN,135,-3,0,737,3,0,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2305,14,0,506,11,0,0 +2013,10,17,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2122,-6,0,510,-36,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1214,100,1,1335,104,1,0 +2013,7,2,2,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,0,0,1740,5,0,0 +2013,10,1,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,13,0,1600,11,0,0 +2013,6,7,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1916,32,1,2035,28,1,0 +2013,10,12,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-4,0,1320,-10,0,0 +2013,8,19,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,-3,0,1510,-8,0,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1359,-4,0,1547,15,1,0 +2013,5,18,6,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,-3,0,1310,-8,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-8,0,1106,-10,0,0 +2013,10,20,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-3,0,610,-7,0,0 +2013,7,8,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,6,0,2155,5,0,0 +2013,8,2,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1913,-8,0,2125,-14,0,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1650,13,0,1745,3,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2210,54,1,2351,49,1,0 +2013,5,15,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1010,-5,0,1220,-21,0,0 +2013,6,20,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,810,-8,0,950,-23,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2204,-7,0,2256,-22,0,0 +2013,10,4,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1900,22,1,2115,17,1,0 +2013,8,30,5,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,714,-10,0,1046,-15,0,0 +2013,7,25,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,625,-11,0,808,-24,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,604,0,0,909,4,0,0 +2013,9,27,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,-5,0,1808,-1,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,955,6,0,1055,5,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,625,-1,0,1135,-11,0,0 +2013,7,2,2,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1355,41,1,1520,42,1,0 +2013,4,4,4,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,23,1,1610,16,1,0 +2013,7,12,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,715,-25,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,-2,0,1813,-13,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1130,-5,0,1327,-10,0,0 +2013,7,27,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1530,-9,0,1753,-20,0,0 +2013,7,2,2,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1410,1,0,1530,-5,0,0 +2013,10,3,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,2,0,1004,3,0,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,650,-2,0,810,6,0,0 +2013,9,14,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1210,3,0,1540,2,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1745,-1,0,1840,-14,0,0 +2013,6,10,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,2,0,815,0,0,0 +2013,6,4,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,556,-5,0,1153,-20,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,959,-2,0,1124,-2,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1946,-1,0,2257,-14,0,0 +2013,8,25,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1905,-17,0,2227,-14,0,0 +2013,10,26,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1115,-3,0,1240,-8,0,0 +2013,6,7,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1510,-3,0,1645,6,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1255,33,1,1545,55,1,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1135,0,0,1435,5,0,0 +2013,10,6,7,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,-3,0,1845,-8,0,0 +2013,10,16,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1529,-7,0,1847,-16,0,0 +2013,4,1,1,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,915,-11,0,1034,0,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,-6,0,2352,39,1,0 +2013,7,30,2,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-6,0,920,-23,0,0 +2013,7,27,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,30,1,936,44,1,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-7,0,905,-16,0,0 +2013,8,4,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1321,59,1,1409,49,1,0 +2013,9,1,7,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,640,-3,0,910,-9,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1959,64,1,2208,131,1,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,1,0,1036,-10,0,0 +2013,7,21,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1104,-4,0,1233,-5,0,0 +2013,10,31,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,8,0,1730,6,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1740,11,0,2305,17,1,0 +2013,10,5,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-10,0,1740,-14,0,0 +2013,10,17,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1820,31,1,1920,37,1,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,850,-1,0,1104,-8,0,0 +2013,5,26,7,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,844,2,0,1117,-9,0,0 +2013,7,4,4,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,55,1,1748,52,1,0 +2013,9,22,7,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-9,0,1907,1,0,0 +2013,6,29,6,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1335,16,1,1500,10,0,0 +2013,7,4,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,-2,0,840,-15,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,-4,0,2115,-11,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1719,65,1,1854,59,1,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,12,0,1120,7,0,0 +2013,10,28,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,820,1,0,1025,-11,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2210,0,0,25,-23,0,0 +2013,9,26,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-11,0,1451,-5,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,805,13,0,855,15,1,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-1,0,1430,-1,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,910,-1,0,1015,0,0,0 +2013,5,27,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,0,0,1655,1,0,0 +2013,4,23,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-6,0,2040,-10,0,0 +2013,6,25,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1949,108,1,2059,168,1,0 +2013,8,7,3,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-2,0,807,1,0,0 +2013,7,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2015,-5,0,2257,-8,0,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,25,1,1658,20,1,0 +2013,4,2,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,-8,0,2201,-20,0,0 +2013,6,29,6,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,720,0,0,840,-17,0,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,819,-4,0,1210,-8,0,0 +2013,7,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1550,1,0,1710,-6,0,0 +2013,9,27,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1412,0,0,1620,-10,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,825,-1,0,955,-5,0,0 +2013,8,22,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-6,0,854,-10,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1050,14,0,1205,7,0,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,30,1,1550,37,1,0 +2013,6,22,6,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-5,0,1622,-22,0,0 +2013,10,24,4,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,810,-2,0,950,-16,0,0 +2013,6,3,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,845,-1,0,1054,-23,0,0 +2013,6,9,7,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,13,0,1812,19,1,0 +2013,8,22,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,7,0,1511,2,0,0 +2013,9,7,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1356,-8,0,1453,-11,0,0 +2013,9,27,5,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,5,0,752,-7,0,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,27,1,2340,26,1,0 +2013,9,12,4,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,710,-11,0,836,1,0,0 +2013,7,12,5,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,857,-10,0,1247,-4,0,0 +2013,5,14,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1149,-7,0,1310,-27,0,0 +2013,7,13,6,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1249,-20,0,1534,-12,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1225,10,0,1540,9,0,0 +2013,8,17,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1225,0,0,1805,-3,0,0 +2013,7,20,6,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,-3,0,1550,-23,0,0 +2013,5,12,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-9,0,1110,-9,0,0 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,-4,0,1705,-8,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,1,0,1900,-16,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,5,0,2155,10,0,0 +2013,7,3,3,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1945,-3,0,2115,-24,0,0 +2013,8,22,4,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1600,0,,1747,0,1,1 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,935,50,1,1230,38,1,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,-4,0,1650,-8,0,0 +2013,10,30,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1820,57,1,1928,45,1,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-5,0,1123,-13,0,0 +2013,9,24,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,645,0,,840,0,1,1 +2013,4,12,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1626,-3,0,1809,9,0,0 +2013,5,16,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1055,-7,0,1100,-6,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,949,17,1,1201,23,1,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1750,10,0,1930,-4,0,0 +2013,10,13,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-6,0,2010,-12,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1655,-6,0,2130,2,0,0 +2013,4,8,1,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-8,0,1200,-13,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2220,13,0,2300,8,0,0 +2013,4,13,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1200,-5,0,1305,-14,0,0 +2013,6,23,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,745,-2,0,830,1,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,9,0,1808,-7,0,0 +2013,6,10,1,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,1,0,1943,-3,0,0 +2013,9,30,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1011,-4,0,1133,-7,0,0 +2013,6,14,5,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-2,0,1117,-17,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1745,7,0,2310,-1,0,0 +2013,7,24,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1104,-1,0,1234,-14,0,0 +2013,5,24,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1945,-3,0,2240,-9,0,0 +2013,6,7,5,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-5,0,900,-25,0,0 +2013,6,28,5,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-4,0,1816,-7,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,0,0,957,-8,0,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,945,16,1,1350,9,0,0 +2013,10,16,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,827,-2,0,1112,-18,0,0 +2013,5,26,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1945,-4,0,2110,-14,0,0 +2013,9,4,3,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1118,-33,0,0 +2013,7,19,5,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1753,9,0,1900,2,0,0 +2013,9,20,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-1,0,1632,-17,0,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,956,-1,0,1637,12,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,8,0,1750,-3,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1116,-3,0,1303,-15,0,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,920,-5,0,1113,-15,0,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1304,-10,0,1422,-21,0,0 +2013,6,24,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1620,-5,0,1905,-17,0,0 +2013,8,11,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,47,1,732,41,1,0 +2013,4,27,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1030,-5,0,1210,-22,0,0 +2013,8,28,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1130,-13,0,1316,5,0,0 +2013,9,21,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,1,0,1851,0,0,0 +2013,6,18,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1606,-2,0,1821,-8,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-3,0,1629,0,0,0 +2013,6,30,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1840,-5,0,2100,-15,0,0 +2013,6,2,7,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,2,0,1320,-5,0,0 +2013,10,29,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,10,0,1345,-2,0,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2135,0,,5,0,1,1 +2013,6,14,5,EV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,953,-5,0,1134,-19,0,0 +2013,10,4,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1444,-4,0,1544,0,0,0 +2013,9,13,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-6,0,1636,-16,0,0 +2013,7,26,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-10,0,2041,-34,0,0 +2013,5,27,1,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,179,1,1500,166,1,0 +2013,9,8,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,904,-2,0,1146,-12,0,0 +2013,7,17,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,18,1,1457,8,0,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-2,0,1230,-11,0,0 +2013,8,6,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1148,-1,0,1450,-11,0,0 +2013,4,1,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1135,-2,0,1230,-12,0,0 +2013,7,8,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1817,9,0,2105,-1,0,0 +2013,10,23,3,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,-11,0,2009,-3,0,0 +2013,10,31,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1027,4,0,1152,17,1,0 +2013,5,2,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,-8,0,745,-14,0,0 +2013,10,3,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,-2,0,1805,-12,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,735,-8,0,927,-10,0,0 +2013,9,9,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,715,1,0,810,-1,0,0 +2013,5,11,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1020,-9,0,0 +2013,10,19,6,AA,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,1050,-3,0,1755,-16,0,0 +2013,4,25,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,750,-5,0,1127,-4,0,0 +2013,9,1,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-6,0,2130,-4,0,0 +2013,10,2,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,900,-4,0,1155,-8,0,0 +2013,7,16,2,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1708,-9,0,1953,14,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1426,7,0,1625,3,0,0 +2013,9,3,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,64,1,1203,93,1,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,21,1,2224,9,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,0,0,1710,-4,0,0 +2013,6,12,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1100,39,1,1459,34,1,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,39,1,2220,41,1,0 +2013,10,4,5,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1840,-6,0,2001,-16,0,0 +2013,4,3,3,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,626,-2,0,804,6,0,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,820,-4,0,1150,3,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,835,-3,0,1712,-8,0,0 +2013,8,28,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,-3,0,1536,1,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1510,21,1,1608,17,1,0 +2013,10,1,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-8,0,944,-14,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2145,5,0,1,19,1,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-2,0,1227,-9,0,0 +2013,6,3,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1455,0,0,1811,-1,0,0 +2013,8,20,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1136,-6,0,1949,-16,0,0 +2013,7,31,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2029,-1,0,2359,-9,0,0 +2013,7,17,3,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1525,22,1,1605,3,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1704,-3,0,2056,-14,0,0 +2013,9,3,2,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1850,-3,0,2017,-7,0,0 +2013,9,23,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1224,53,1,1430,57,1,0 +2013,4,15,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,630,12,0,840,2,0,0 +2013,7,6,6,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,-5,0,1325,10,0,0 +2013,9,14,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,620,6,0,830,-5,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-2,0,1004,7,0,0 +2013,6,22,6,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,4,0,905,-1,0,0 +2013,4,26,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1335,20,1,1425,19,1,0 +2013,6,29,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,715,0,0,910,3,0,0 +2013,10,5,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10423,Austin - Bergstrom International,Austin,TX,845,-7,0,1055,-10,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,29,1,1440,33,1,0 +2013,7,5,5,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1340,-4,0,1520,-14,0,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,15,1,2243,16,1,0 +2013,10,15,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,-5,0,1525,7,0,0 +2013,8,1,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,-9,0,1945,-4,0,0 +2013,7,6,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-13,0,1115,-21,0,0 +2013,4,16,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-1,0,955,-10,0,0 +2013,4,2,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1210,0,0,1340,-9,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,-1,0,1925,-10,0,0 +2013,8,10,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,5,0,2000,-3,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1620,56,1,1835,36,1,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,0,0,1320,-9,0,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1005,-1,0,1205,-6,0,0 +2013,5,28,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,740,-4,0,805,-15,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2010,-4,0,2141,11,0,0 +2013,8,4,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1645,14,0,1750,9,0,0 +2013,9,12,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1045,8,0,1325,1,0,0 +2013,9,11,3,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-2,0,950,-8,0,0 +2013,8,22,4,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1800,-4,0,1950,-10,0,0 +2013,7,20,6,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,-5,0,1850,-10,0,0 +2013,6,17,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,3,0,1330,4,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1845,115,1,2125,123,1,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1205,-2,0,1354,-14,0,0 +2013,7,14,7,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,-6,0,1717,-1,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1055,-2,0,1205,-5,0,0 +2013,10,31,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1245,-1,0,1527,34,1,0 +2013,8,9,5,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,16,1,1632,13,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1300,2,0,1405,-1,0,0 +2013,8,12,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-5,0,1443,8,0,0 +2013,8,24,6,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1055,0,0,1215,-3,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,51,1,1635,49,1,0 +2013,10,17,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1145,27,1,1350,15,1,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,99,1,2205,100,1,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,1,0,1525,0,0,0 +2013,6,4,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-8,0,1016,-6,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1350,-2,0,1515,-1,0,0 +2013,10,14,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1740,4,0,1900,-4,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,830,14,0,945,6,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,855,8,0,1024,0,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1505,30,1,1640,13,0,0 +2013,6,20,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1335,0,0,1945,-19,0,0 +2013,7,22,1,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,231,1,1555,273,1,0 +2013,6,21,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1100,-6,0,1459,-12,0,0 +2013,10,5,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,14,0,1810,5,0,0 +2013,9,13,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1000,-1,0,1030,4,0,0 +2013,6,19,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-1,0,1645,-1,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1017,-21,0,0 +2013,9,12,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1434,339,1,1609,350,1,0 +2013,8,20,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,-3,0,1524,-9,0,0 +2013,4,30,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,5,0,1040,7,0,0 +2013,8,4,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2045,14,0,2150,9,0,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-3,0,1445,-1,0,0 +2013,7,22,1,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,-9,0,535,-20,0,0 +2013,9,24,2,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1504,0,0,1658,-7,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,820,-2,0,1000,-15,0,0 +2013,5,3,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,832,-8,0,1047,-15,0,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1043,8,0,1311,21,1,0 +2013,9,23,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1505,-9,0,1617,-16,0,0 +2013,8,26,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1128,-12,0,1709,-11,0,0 +2013,10,26,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,1,0,1250,-11,0,0 +2013,9,14,6,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-5,0,831,-11,0,0 +2013,7,9,2,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1929,165,1,2155,124,1,0 +2013,7,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1111,-9,0,1638,-10,0,0 +2013,4,8,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1515,-1,0,1610,-7,0,0 +2013,4,2,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1505,13,0,1703,21,1,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1410,-5,0,1539,1,0,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,61,1,1752,82,1,0 +2013,10,24,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-1,0,2021,-26,0,0 +2013,9,26,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-9,0,933,-15,0,0 +2013,8,5,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1138,1,0,1700,-7,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1244,7,0,1523,1,0,0 +2013,7,2,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,935,-2,0,955,-12,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1955,48,1,2105,42,1,0 +2013,5,7,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2100,29,1,2155,19,1,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1557,-3,0,1719,12,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1710,-3,0,1945,-18,0,0 +2013,7,19,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-1,0,1015,9,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,829,-1,0,944,-3,0,0 +2013,9,24,2,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,-9,0,938,-16,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,23,1,1631,27,1,0 +2013,9,6,5,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1754,-3,0,1955,-19,0,0 +2013,7,13,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-1,0,1652,7,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,0,0,1050,-1,0,0 +2013,10,28,1,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1335,-4,0,1410,-5,0,0 +2013,10,13,7,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1347,-3,0,1520,45,1,0 +2013,7,18,4,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1745,0,0,2040,-5,0,0 +2013,9,6,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1305,88,1,1340,79,1,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,755,-3,0,910,-8,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,17,1,1949,-7,0,0 +2013,9,30,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-9,0,2132,-18,0,0 +2013,4,21,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-7,0,1019,-23,0,0 +2013,5,19,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1333,1,0,1423,1,0,0 +2013,8,18,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-1,0,1410,-3,0,0 +2013,5,19,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,-2,0,940,-10,0,0 +2013,7,12,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-7,0,851,36,1,0 +2013,4,27,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,11,0,1610,14,0,0 +2013,10,22,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,6,0,1650,2,0,0 +2013,9,29,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,29,1,2025,23,1,0 +2013,8,15,4,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1647,2,0,1900,10,0,0 +2013,7,24,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-4,0,2020,3,0,0 +2013,10,21,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1625,7,0,1827,-6,0,0 +2013,10,17,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,-2,0,1943,2,0,0 +2013,9,26,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-5,0,1134,1,0,0 +2013,6,19,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,645,-3,0,820,-5,0,0 +2013,10,21,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1237,-1,0,1345,-16,0,0 +2013,4,14,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-5,0,925,-3,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,1,0,1322,-14,0,0 +2013,8,19,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-2,0,1523,0,0,0 +2013,8,7,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,934,-11,0,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1202,-4,0,1339,-13,0,0 +2013,8,16,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1819,12,0,2040,-11,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1711,-5,0,2224,-8,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,725,3,0,915,8,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,10,0,2221,5,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1005,11,0,1525,12,0,0 +2013,5,20,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,710,10,0,1213,-13,0,0 +2013,10,20,7,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,842,-2,0,1025,10,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,805,-6,0,1120,-7,0,0 +2013,4,12,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,911,3,0,1019,-6,0,0 +2013,8,2,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,138,1,2135,120,1,0 +2013,4,19,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1818,7,0,2030,20,1,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1305,-4,0,1430,7,0,0 +2013,9,25,3,EV,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,731,12,0,1029,6,0,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1655,0,,1940,0,1,1 +2013,8,30,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,9,0,2105,11,0,0 +2013,7,25,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,610,-12,0,805,-10,0,0 +2013,10,19,6,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1750,-3,0,1945,-13,0,0 +2013,6,3,1,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,842,-4,0,1022,24,1,0 +2013,9,8,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1348,-10,0,1516,-5,0,0 +2013,9,1,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1105,-2,0,1150,-4,0,0 +2013,10,18,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1845,-8,0,2131,-9,0,0 +2013,8,16,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-9,0,2102,-10,0,0 +2013,4,12,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1220,26,1,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1812,23,1,2004,39,1,0 +2013,10,21,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-7,0,1029,16,1,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1311,10,0,1609,1,0,0 +2013,9,1,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1125,-4,0,1230,-2,0,0 +2013,4,13,6,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1730,39,1,2030,11,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,2,0,2055,-2,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1733,0,0,2208,-33,0,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1000,1,0,1340,0,0,0 +2013,5,23,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-6,0,2125,-15,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1230,265,1,1525,274,1,0 +2013,10,16,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,-4,0,2249,5,0,0 +2013,4,14,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-8,0,907,9,0,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1812,-5,0,1942,-18,0,0 +2013,5,8,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1029,-4,0,1135,-17,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,3,0,1945,17,1,0 +2013,5,16,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1015,22,1,1130,27,1,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1300,36,1,1405,37,1,0 +2013,4,17,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2250,41,1,648,49,1,0 +2013,7,21,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,604,-3,0,845,-9,0,0 +2013,8,28,3,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1746,133,1,53,111,1,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1745,-2,0,2024,-13,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1050,22,1,1205,24,1,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,830,-3,0,1022,-1,0,0 +2013,5,9,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1745,65,1,1959,72,1,0 +2013,9,15,7,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,3,0,2040,3,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,43,1,1710,25,1,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1725,-1,0,1955,20,1,0 +2013,5,31,5,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-1,0,1523,-11,0,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,63,1,925,59,1,0 +2013,10,13,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,646,-9,0,805,-19,0,0 +2013,9,13,5,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,57,1,1955,50,1,0 +2013,6,21,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1420,-4,0,1545,-11,0,0 +2013,4,20,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1140,67,1,1325,54,1,0 +2013,4,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1341,-2,0,1708,-12,0,0 +2013,9,24,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1335,-2,0,1415,-4,0,0 +2013,10,25,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-5,0,2115,-20,0,0 +2013,5,1,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,10,0,2031,16,1,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1610,5,0,1720,-11,0,0 +2013,9,23,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1605,24,1,1835,15,1,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1745,10,0,1850,-4,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,700,-3,0,805,-12,0,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2050,-4,0,2327,-7,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-1,0,1610,-9,0,0 +2013,10,6,7,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1404,26,1,1645,16,1,0 +2013,9,16,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1415,-3,0,1505,-7,0,0 +2013,10,14,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1535,-6,0,1750,-18,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1700,7,0,2145,-11,0,0 +2013,6,28,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,600,0,0,1128,5,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2040,-1,0,2353,-49,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2156,-5,0,2321,-13,0,0 +2013,7,15,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1045,1,0,1650,-12,0,0 +2013,8,21,3,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,855,-6,0,1006,-26,0,0 +2013,6,10,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1120,-3,0,1155,-10,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1520,58,1,1810,45,1,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1815,29,1,1940,24,1,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-4,0,1305,-12,0,0 +2013,5,12,7,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1115,-3,0,1315,-14,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1740,-2,0,2150,-21,0,0 +2013,10,30,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-5,0,1315,1,0,0 +2013,7,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1111,0,0,1638,4,0,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2146,-2,0,2205,-5,0,0 +2013,8,10,6,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1830,-8,0,1926,25,1,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1529,-5,0,1647,-17,0,0 +2013,6,26,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,655,-5,0,825,-9,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,825,-1,0,1100,-14,0,0 +2013,7,23,2,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1029,-3,0,1035,-13,0,0 +2013,10,16,3,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1155,-10,0,1443,-15,0,0 +2013,9,25,3,9E,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1135,91,1,1313,80,1,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,-8,0,1720,-1,0,0 +2013,9,13,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-10,0,2028,-9,0,0 +2013,10,23,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,15,1,1420,-2,0,0 +2013,8,14,3,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1255,-8,0,1620,-20,0,0 +2013,6,8,6,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1543,-7,0,1620,-13,0,0 +2013,4,15,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1925,-13,0,2219,-12,0,0 +2013,7,29,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-5,0,1039,-7,0,0 +2013,9,13,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,5,0,1945,5,0,0 +2013,7,15,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-4,0,908,-15,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,41,1,2254,30,1,0 +2013,6,8,6,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1705,-8,0,1810,-16,0,0 +2013,9,18,3,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,-7,0,1038,-9,0,0 +2013,10,31,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1656,4,0,1810,-1,0,0 +2013,5,9,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1650,8,0,1925,-12,0,0 +2013,10,7,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,42,1,1430,38,1,0 +2013,7,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1653,-2,0,1739,-10,0,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1317,-4,0,1434,1,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1005,-5,0,1241,-12,0,0 +2013,4,12,5,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,937,-1,0,1136,-5,0,0 +2013,5,7,2,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,-2,0,1639,-17,0,0 +2013,4,12,5,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,835,-2,0,1155,2,0,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,7,0,2130,-9,0,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1355,1,0,1550,-15,0,0 +2013,7,16,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1020,-3,0,1228,-8,0,0 +2013,7,12,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1913,-8,0,2048,-9,0,0 +2013,6,16,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1225,-1,0,1320,-5,0,0 +2013,4,9,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,5,0,1055,-6,0,0 +2013,7,23,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1425,13,0,1530,10,0,0 +2013,6,16,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-8,0,1649,-1,0,0 +2013,8,29,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,829,-4,0,1139,-18,0,0 +2013,7,19,5,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1655,58,1,1825,59,1,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1532,154,1,1744,145,1,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1800,-3,0,2100,-2,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,15,1,1123,15,1,0 +2013,10,24,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1536,-10,0,1756,-16,0,0 +2013,7,11,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1448,0,,1717,0,1,1 +2013,5,30,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,710,-8,0,837,-15,0,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,845,-5,0,1100,-9,0,0 +2013,6,17,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,153,1,1913,153,1,0 +2013,6,26,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,85,1,1450,84,1,0 +2013,7,2,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1049,0,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1620,7,0,2250,2,0,0 +2013,6,27,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1000,14,0,1310,14,0,0 +2013,7,3,3,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1910,12,0,2030,14,0,0 +2013,6,3,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,915,-1,0,1005,-2,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,-5,0,2301,16,1,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1200,-8,0,1427,2,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2015,42,1,2300,34,1,0 +2013,9,27,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,1534,2,0,0 +2013,6,5,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,2010,4,0,2135,-5,0,0 +2013,10,20,7,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-7,0,2154,-2,0,0 +2013,6,6,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,29,1,1935,8,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,-1,0,1640,-2,0,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,920,32,1,1240,29,1,0 +2013,8,27,2,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1600,-5,0,1747,4,0,0 +2013,6,7,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1929,59,1,2155,64,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,-2,0,2201,-6,0,0 +2013,7,11,4,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,1,0,1508,-9,0,0 +2013,5,22,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,4,0,1852,53,1,0 +2013,10,30,3,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1745,-2,0,2005,-21,0,0 +2013,10,25,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,-4,0,1925,5,0,0 +2013,10,24,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2025,6,0,2130,-15,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1844,100,1,2154,94,1,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2045,34,1,2150,28,1,0 +2013,5,8,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1120,-6,0,1443,-15,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,645,-3,0,1020,-17,0,0 +2013,9,8,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1830,3,0,2036,14,0,0 +2013,9,8,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1830,-5,0,2015,-27,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1317,0,0,1614,-9,0,0 +2013,7,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-5,0,1120,-12,0,0 +2013,6,18,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1452,31,1,1635,20,1,0 +2013,7,24,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,-8,0,2010,-14,0,0 +2013,9,8,7,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1608,-7,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,0,0,745,-11,0,0 +2013,9,22,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1653,-2,0,1749,-16,0,0 +2013,9,22,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-7,0,1230,-14,0,0 +2013,7,21,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1600,-2,0,1630,-2,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1600,2,0,1725,-5,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-5,0,2128,-5,0,0 +2013,6,11,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1250,16,1,1631,43,1,0 +2013,9,24,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,800,-5,0,905,-6,0,0 +2013,9,2,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1815,2,0,1915,-3,0,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1540,66,1,1720,59,1,0 +2013,10,20,7,EV,12953,LaGuardia,New York,NY,13931,Norfolk International,Norfolk,VA,1545,-2,0,1721,-20,0,0 +2013,8,10,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,745,10,0,817,15,1,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-5,0,1901,-14,0,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1908,-5,0,2039,-17,0,0 +2013,5,27,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,725,-4,0,1030,-14,0,0 +2013,6,24,1,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1550,298,1,1805,288,1,0 +2013,7,16,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,2,0,1142,7,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-7,0,1102,-11,0,0 +2013,8,7,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,32,1,1550,6,0,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1122,22,1,1224,0,0,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,103,1,1855,108,1,0 +2013,6,22,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1215,18,1,1425,0,0,0 +2013,7,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,19,1,1800,16,1,0 +2013,9,9,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1146,-9,0,1252,-17,0,0 +2013,7,6,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,4,0,948,5,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,23,1,1325,15,1,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-1,0,1103,12,0,0 +2013,6,4,2,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1559,-2,0,1814,5,0,0 +2013,10,8,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-6,0,1500,-16,0,0 +2013,5,8,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1059,161,1,1329,158,1,0 +2013,4,18,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,915,-6,0,1649,18,1,0 +2013,6,22,6,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1230,26,1,1510,28,1,0 +2013,8,27,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,29,1,720,24,1,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2151,-4,0,112,-26,0,0 +2013,4,6,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,700,-3,0,750,0,0,0 +2013,9,19,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1118,142,1,1301,138,1,0 +2013,10,5,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-6,0,1357,-9,0,0 +2013,9,6,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-11,0,944,-20,0,0 +2013,6,16,7,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1357,-5,0,1630,-12,0,0 +2013,9,23,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1001,-2,0,1055,-23,0,0 +2013,4,20,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,193,1,720,176,1,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,13,0,1555,-6,0,0 +2013,4,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,4,0,932,4,0,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1405,-5,0,1515,-9,0,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1840,18,1,2150,11,0,0 +2013,5,18,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,0,0,1728,-2,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1909,3,0,2235,-8,0,0 +2013,8,23,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-2,0,950,-4,0,0 +2013,6,24,1,EV,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1855,139,1,2043,156,1,0 +2013,8,4,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,-4,0,619,-12,0,0 +2013,4,25,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,930,-1,0,1055,-11,0,0 +2013,8,3,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,13,0,1653,-6,0,0 +2013,9,15,7,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,-5,0,1116,-29,0,0 +2013,6,10,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,41,1,1238,64,1,0 +2013,5,2,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,0,,2030,0,1,1 +2013,5,8,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-5,0,1021,-31,0,0 +2013,4,13,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1445,-5,0,1655,-4,0,0 +2013,4,16,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1455,0,,1600,0,1,1 +2013,10,16,3,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-4,0,750,-2,0,0 +2013,9,18,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1715,1,0,1905,80,1,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1252,-2,0,1750,-13,0,0 +2013,4,3,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-7,0,844,-9,0,0 +2013,9,19,4,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1512,183,1,1834,183,1,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1514,-2,0,1733,-11,0,0 +2013,5,19,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,846,-2,0,924,-14,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,0,0,1115,-5,0,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,755,-7,0,1315,-5,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1930,-3,0,2310,6,0,0 +2013,7,25,4,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1905,43,1,2020,29,1,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,815,-6,0,935,-11,0,0 +2013,8,12,1,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,52,1,1655,36,1,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-8,0,1149,-20,0,0 +2013,10,5,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1159,-8,0,0 +2013,6,10,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-1,0,1353,-9,0,0 +2013,5,24,5,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,-1,0,1636,13,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1033,-3,0,1212,-18,0,0 +2013,5,2,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1935,111,1,2105,107,1,0 +2013,5,1,3,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,840,-2,0,1023,-20,0,0 +2013,4,24,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1557,-7,0,1754,3,0,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-1,0,1615,-17,0,0 +2013,8,11,7,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1857,-13,0,2030,-21,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-3,0,1624,-13,0,0 +2013,5,26,7,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1940,6,0,2246,-3,0,0 +2013,4,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1018,-9,0,1140,-10,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,0,0,1200,-15,0,0 +2013,7,5,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,-2,0,1934,7,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1340,18,1,1505,2,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,2029,-5,0,2252,-26,0,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1054,-2,0,1830,-21,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1800,-1,0,2020,-5,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1450,-5,0,1745,-31,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1320,216,1,1445,220,1,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,846,-3,0,956,-36,0,0 +2013,8,13,2,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,611,30,1,1053,63,1,0 +2013,4,30,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1733,11,0,1909,1,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-2,0,1019,-10,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,21,1,2240,10,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1320,-1,0,1520,-24,0,0 +2013,10,17,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,0,0,1915,-2,0,0 +2013,9,24,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,-4,0,1652,-14,0,0 +2013,7,3,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,9,0,1235,5,0,0 +2013,8,1,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,0,0,735,-6,0,0 +2013,10,29,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1320,-7,0,1407,-11,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,-3,0,1934,-10,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,1,0,859,-13,0,0 +2013,6,22,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2330,-5,0,844,-1,0,0 +2013,10,16,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,600,-9,0,837,-7,0,0 +2013,4,28,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-5,0,1500,-7,0,0 +2013,4,6,6,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1720,-10,0,1840,-8,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-4,0,1311,-1,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,-1,0,1830,-3,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-3,0,1628,-18,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,-1,0,1830,-12,0,0 +2013,9,11,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,0,0,2128,32,1,0 +2013,7,18,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-5,0,1037,-8,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,900,-8,0,1145,-27,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,0,0,1914,-12,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-1,0,1104,8,0,0 +2013,6,25,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1750,76,1,2030,79,1,0 +2013,5,21,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,214,1,1525,255,1,0 +2013,5,4,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,510,-7,0,756,-15,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1750,43,1,2041,41,1,0 +2013,9,30,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1942,13,0,2250,10,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1950,-1,0,2110,-2,0,0 +2013,10,6,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1730,-9,0,1926,-25,0,0 +2013,8,10,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,730,-5,0,840,-14,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1210,-1,0,1316,2,0,0 +2013,5,29,3,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1910,-9,0,2135,-17,0,0 +2013,9,2,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,25,1,2126,97,1,0 +2013,10,4,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2040,97,1,2235,97,1,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1328,-5,0,1724,-20,0,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-1,0,937,19,1,0 +2013,6,1,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1249,-7,0,1355,-19,0,0 +2013,7,20,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,610,8,0,945,11,0,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-2,0,1009,-2,0,0 +2013,7,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-8,0,1612,1,0,0 +2013,5,5,7,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-5,0,1200,-16,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,918,0,0,1101,-13,0,0 +2013,4,22,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-7,0,725,2,0,0 +2013,8,31,6,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-2,0,745,-19,0,0 +2013,5,13,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1829,1,0,2109,-9,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2039,25,1,2250,35,1,0 +2013,4,19,5,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,610,0,0,820,0,0,0 +2013,10,25,5,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,940,-3,0,1800,-15,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1735,0,,1840,0,1,1 +2013,9,10,2,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1850,21,1,2205,23,1,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1329,-5,0,1813,-19,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,-2,0,925,-14,0,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1050,-1,0,1209,-11,0,0 +2013,9,5,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-4,0,1100,-5,0,0 +2013,4,27,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-2,0,1550,-3,0,0 +2013,5,16,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,830,7,0,900,5,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-4,0,1328,-14,0,0 +2013,7,10,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-6,0,1048,-1,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1515,10,0,1816,-11,0,0 +2013,6,19,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,9,0,1215,0,0,0 +2013,4,20,6,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,745,-3,0,930,11,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1537,-2,0,1640,-7,0,0 +2013,7,19,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1720,-3,0,1850,18,1,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,855,-2,0,1103,-7,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1605,22,1,1705,35,1,0 +2013,9,26,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1505,-4,0,1722,-9,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1910,2,0,2020,9,0,0 +2013,10,11,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1102,-3,0,1645,-22,0,0 +2013,6,18,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1603,22,1,2200,9,0,0 +2013,8,20,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1010,-4,0,1341,-7,0,0 +2013,6,24,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1859,49,1,2153,45,1,0 +2013,7,3,3,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,12,0,2110,13,0,0 +2013,5,15,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-2,0,2110,16,1,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,835,-3,0,1030,-1,0,0 +2013,9,21,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2006,-8,0,2055,-10,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1553,0,0,1733,-15,0,0 +2013,4,7,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,8,0,1015,-5,0,0 +2013,8,20,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1335,16,1,1505,12,0,0 +2013,4,19,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1307,18,1,1355,20,1,0 +2013,10,20,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2147,-7,0,2235,-6,0,0 +2013,9,14,6,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1550,9,0,1904,142,1,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1520,92,1,1810,105,1,0 +2013,8,2,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,1110,-10,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,471,1,1632,460,1,0 +2013,10,16,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1835,-4,0,2005,-16,0,0 +2013,4,2,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1905,14,0,45,10,0,0 +2013,10,30,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-8,0,920,-9,0,0 +2013,6,20,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,9,0,1605,2,0,0 +2013,10,2,3,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-5,0,2144,-25,0,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-1,0,1015,-5,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,9,0,1920,6,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,-4,0,1608,-4,0,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,915,10,0,1025,3,0,0 +2013,10,15,2,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,1650,17,1,1820,13,0,0 +2013,4,29,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1148,-1,0,1700,-3,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2210,-3,0,2330,-5,0,0 +2013,4,11,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1533,-6,0,1814,-21,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1609,2,0,1739,-3,0,0 +2013,6,17,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1115,-4,0,1250,25,1,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,0,0,1624,-1,0,0 +2013,8,16,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,54,1,1800,36,1,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1410,-2,0,1520,-12,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1500,235,1,1820,239,1,0 +2013,8,19,1,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1848,-13,0,2058,-25,0,0 +2013,7,3,3,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1345,15,1,1640,42,1,0 +2013,4,30,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,705,-3,0,829,-14,0,0 +2013,6,19,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,13,0,1600,8,0,0 +2013,5,20,1,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1955,4,0,2115,10,0,0 +2013,10,2,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,740,0,0,855,-7,0,0 +2013,5,17,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1205,8,0,1325,2,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1300,-3,0,1455,-36,0,0 +2013,8,13,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,18,1,2041,1,0,0 +2013,5,27,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1430,-9,0,1749,-6,0,0 +2013,5,3,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,29,1,1605,25,1,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1310,22,1,1600,16,1,0 +2013,7,29,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1315,8,0,1342,3,0,0 +2013,4,2,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1111,0,0,1329,-16,0,0 +2013,5,3,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1429,107,1,1531,117,1,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,0,0,1251,-3,0,0 +2013,4,30,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,630,-2,0,0 +2013,10,31,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,6,0,1211,-7,0,0 +2013,10,3,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-12,0,900,-15,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1930,-3,0,2015,0,0,0 +2013,4,12,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,630,2,0,725,5,0,0 +2013,10,6,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-4,0,1755,-17,0,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,1150,-15,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-5,0,2245,-10,0,0 +2013,8,14,3,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1845,10,0,2103,-3,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1905,-10,0,2100,-3,0,0 +2013,10,13,7,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,9,0,1038,1,0,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1550,4,0,2359,23,1,0 +2013,5,25,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1016,-6,0,1420,-3,0,0 +2013,10,9,3,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-2,0,910,10,0,0 +2013,5,1,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2115,0,0,530,8,0,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1900,22,1,2050,35,1,0 +2013,10,25,5,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1010,-5,0,1225,6,0,0 +2013,4,1,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-5,0,917,3,0,0 +2013,8,23,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,-4,0,1303,-5,0,0 +2013,9,5,4,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-3,0,2005,-1,0,0 +2013,8,18,7,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-17,0,1020,-17,0,0 +2013,9,16,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1021,-1,0,1315,2,0,0 +2013,6,30,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-6,0,1836,-8,0,0 +2013,9,17,2,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,820,-6,0,1205,-18,0,0 +2013,6,28,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1515,-3,0,1915,-5,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2115,-3,0,25,-17,0,0 +2013,6,16,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-6,0,1627,-19,0,0 +2013,5,14,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1124,-5,0,1225,-7,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,15,1,1735,6,0,0 +2013,8,30,5,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1005,6,0,1245,-2,0,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-5,0,1011,-16,0,0 +2013,9,30,1,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1855,-5,0,2047,-12,0,0 +2013,7,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,-5,0,1255,-10,0,0 +2013,5,29,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2325,18,1,520,26,1,0 +2013,5,12,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,925,8,0,1055,11,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1615,-2,0,1706,0,0,0 +2013,10,1,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-7,0,1345,-17,0,0 +2013,5,18,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,915,-6,0,0 +2013,7,13,6,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,914,70,1,1035,81,1,0 +2013,8,5,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,0,,1010,0,1,1 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1700,184,1,2025,173,1,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,1,0,1015,5,0,0 +2013,7,17,3,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-10,0,1925,-12,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1810,8,0,2034,3,0,0 +2013,6,28,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1459,-2,0,1620,-3,0,0 +2013,10,23,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,913,-7,0,1037,5,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1207,46,1,1349,40,1,0 +2013,6,13,4,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,755,-1,0,1057,30,1,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,-4,0,2125,-15,0,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1531,-6,0,2339,1,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,-3,0,2059,-13,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2236,-2,0,11,-20,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,0,,1559,0,1,1 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,901,-1,0,1027,-29,0,0 +2013,6,13,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1758,-6,0,1933,21,1,0 +2013,5,10,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1516,-1,0,1735,1,0,0 +2013,7,25,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2029,2,0,453,-15,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1810,97,1,2220,89,1,0 +2013,7,10,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,7,0,1010,9,0,0 +2013,7,4,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1801,-4,0,2026,-6,0,0 +2013,7,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1435,2,0,1535,0,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,725,-2,0,805,-15,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,610,-2,0,735,-10,0,0 +2013,4,28,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2359,-12,0,223,-13,0,0 +2013,7,12,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,630,4,0,1505,-3,0,0 +2013,4,22,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1725,-3,0,1810,-2,0,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,905,-1,0,955,4,0,0 +2013,10,16,3,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1650,-2,0,1930,-10,0,0 +2013,8,2,5,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,850,0,,1031,0,1,1 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1920,32,1,2050,26,1,0 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1042,-3,0,1618,-15,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,640,9,0,750,5,0,0 +2013,4,26,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,-3,0,554,-19,0,0 +2013,7,18,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1455,2,0,1545,-4,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1555,0,0,1725,-3,0,0 +2013,5,25,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,655,7,0,1519,11,0,0 +2013,6,9,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-12,0,1813,-17,0,0 +2013,7,24,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1935,8,0,2259,7,0,0 +2013,7,19,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-2,0,1150,-7,0,0 +2013,5,13,1,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1805,0,0,2025,2,0,0 +2013,4,20,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1742,16,1,1928,23,1,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1915,5,0,2035,-5,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1325,-1,0,1435,-10,0,0 +2013,5,4,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1237,-3,0,1436,-3,0,0 +2013,7,1,1,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,96,1,1053,80,1,0 +2013,5,31,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1855,89,1,2130,96,1,0 +2013,7,14,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,-2,0,2205,-7,0,0 +2013,9,28,6,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,10,0,1930,10,0,0 +2013,10,12,6,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,720,-8,0,1215,-16,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1340,-5,0,1527,-18,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,945,0,0,1125,-20,0,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,850,3,0,1105,-1,0,0 +2013,4,8,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1221,46,1,1424,42,1,0 +2013,5,30,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1520,33,1,1656,84,1,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2155,-2,0,34,-7,0,0 +2013,9,21,6,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,920,4,0,1235,-10,0,0 +2013,6,23,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-3,0,2036,6,0,0 +2013,6,9,7,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,26,1,739,29,1,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1324,10,0,1640,10,0,0 +2013,6,12,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,930,-22,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2300,-2,0,46,-12,0,0 +2013,5,15,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,-9,0,2115,-2,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-2,0,929,-8,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,0,0,915,-5,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-4,0,1643,3,0,0 +2013,8,7,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1942,23,1,2107,37,1,0 +2013,7,22,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,0,0,850,-5,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1420,27,1,1515,18,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,844,-5,0,1033,-15,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2151,-5,0,2201,-13,0,0 +2013,6,7,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1238,18,1,1531,26,1,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,959,-6,0,1657,-2,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1105,17,1,1355,15,1,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,745,1,0,1115,5,0,0 +2013,7,7,7,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1525,66,1,1645,71,1,0 +2013,4,28,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,9,0,1344,19,1,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1630,-3,0,1822,5,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,750,-1,0,1015,-6,0,0 +2013,9,23,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1044,13,0,1230,10,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1203,-1,0,1435,28,1,0 +2013,5,13,1,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-5,0,1030,11,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,858,-2,0,1113,-8,0,0 +2013,8,26,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,-7,0,2135,5,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1330,-10,0,1613,-27,0,0 +2013,10,12,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,859,-19,0,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,17,1,1850,18,1,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1541,-2,0,1818,-15,0,0 +2013,10,26,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,855,3,0,1035,-8,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1125,46,1,1300,33,1,0 +2013,10,10,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,605,-8,0,720,-4,0,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1020,3,0,1140,2,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2344,2,0,752,4,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,0,0,912,10,0,0 +2013,6,28,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1625,11,0,1935,69,1,0 +2013,10,14,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,7,0,1054,8,0,0 +2013,4,24,3,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1220,1,0,1401,9,0,0 +2013,6,13,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1914,104,1,2100,97,1,0 +2013,5,24,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,160,1,2300,150,1,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-1,0,1222,-4,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-3,0,1906,-15,0,0 +2013,5,6,1,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1543,17,1,1648,15,1,0 +2013,10,18,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2320,-6,0,655,-18,0,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1850,8,0,2320,-17,0,0 +2013,9,10,2,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1619,12,0,1742,3,0,0 +2013,8,10,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,4,0,1300,2,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1538,-3,0,1644,-22,0,0 +2013,8,27,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,0,0,1333,-12,0,0 +2013,5,27,1,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-8,0,1539,-20,0,0 +2013,9,13,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1525,28,1,1645,20,1,0 +2013,7,29,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,2,0,2153,4,0,0 +2013,6,14,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1338,167,1,1454,167,1,0 +2013,6,11,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-6,0,1328,-11,0,0 +2013,6,6,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1348,-4,0,1619,-5,0,0 +2013,5,22,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-14,0,1006,-20,0,0 +2013,10,29,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,1015,-5,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1706,-7,0,1727,-17,0,0 +2013,4,13,6,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1704,-7,0,1849,-28,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2100,13,0,2340,6,0,0 +2013,8,26,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1000,-5,0,1200,2,0,0 +2013,9,24,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1415,-4,0,1600,15,1,0 +2013,8,18,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2040,-4,0,2232,-13,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,755,-4,0,1118,-15,0,0 +2013,4,17,3,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1932,59,1,2154,73,1,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1510,17,1,1706,-3,0,0 +2013,4,22,1,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1815,0,0,2107,13,0,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1439,-6,0,1654,-20,0,0 +2013,6,3,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1957,69,1,2255,55,1,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,-1,0,1924,-14,0,0 +2013,7,12,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-1,0,1302,-4,0,0 +2013,10,9,3,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1129,-4,0,1404,-14,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2225,98,1,120,92,1,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,31,1,2105,15,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,930,-5,0,1400,-10,0,0 +2013,7,4,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,-20,0,2035,-30,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1500,5,0,1655,7,0,0 +2013,9,16,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1450,12,0,1614,51,1,0 +2013,8,29,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-3,0,1619,-14,0,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,19,1,2355,18,1,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2300,110,1,27,110,1,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1925,5,0,2106,5,0,0 +2013,5,3,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-7,0,821,-10,0,0 +2013,9,12,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1055,-5,0,1342,-10,0,0 +2013,5,14,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,-2,0,1535,-18,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,944,-4,0,1109,-8,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,935,-4,0,1405,-5,0,0 +2013,10,1,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1710,-7,0,2016,-6,0,0 +2013,6,22,6,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,39,1,955,36,1,0 +2013,8,24,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,0,0,856,-3,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,7,0,1640,-2,0,0 +2013,5,20,1,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1706,-5,0,2025,-6,0,0 +2013,4,22,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1230,2,0,1443,-6,0,0 +2013,7,31,3,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-6,0,921,10,0,0 +2013,8,25,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,845,-2,0,1115,-11,0,0 +2013,10,26,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1052,-10,0,0 +2013,6,20,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-3,0,2305,-16,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,22,1,1310,-2,0,0 +2013,9,3,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1523,1,0,1642,-9,0,0 +2013,9,28,6,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,852,-5,0,1126,-19,0,0 +2013,8,2,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1251,-1,0,1419,-9,0,0 +2013,5,7,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1533,-1,0,1905,-5,0,0 +2013,7,26,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-5,0,1055,-9,0,0 +2013,6,15,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,801,-20,0,0 +2013,8,30,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1315,5,0,1450,-2,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1350,20,1,1715,8,0,0 +2013,10,16,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1830,-4,0,1845,-15,0,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,0,0,1046,-17,0,0 +2013,5,2,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1005,-8,0,1257,-11,0,0 +2013,9,23,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2115,1,0,2230,3,0,0 +2013,5,11,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1705,9,0,1835,6,0,0 +2013,5,10,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-5,0,810,-6,0,0 +2013,4,6,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1155,8,0,1321,-2,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,620,1,0,931,1,0,0 +2013,7,20,6,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1620,0,,1723,0,1,1 +2013,9,17,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,-3,0,1816,-1,0,0 +2013,7,31,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,-5,0,1729,-14,0,0 +2013,9,19,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,857,-4,0,1006,2,0,0 +2013,7,2,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,950,1,0,1100,-1,0,0 +2013,9,23,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-6,0,1705,-5,0,0 +2013,7,3,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2115,107,1,131,88,1,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1730,40,1,1946,53,1,0 +2013,5,1,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1654,-4,0,1928,-16,0,0 +2013,8,12,1,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,825,5,0,1030,-7,0,0 +2013,9,14,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-3,0,1845,5,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,900,148,1,1330,151,1,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1100,-2,0,1200,-19,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-7,0,1830,-11,0,0 +2013,5,5,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,-3,0,853,0,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1330,43,1,1425,26,1,0 +2013,4,30,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,801,-2,0,857,-13,0,0 +2013,7,21,7,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1728,19,1,1934,48,1,0 +2013,10,9,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,-3,0,923,-38,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-5,0,1039,-6,0,0 +2013,7,12,5,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,955,-3,0,1210,-20,0,0 +2013,5,14,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1205,-2,0,1311,-16,0,0 +2013,6,5,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1012,-11,0,0 +2013,9,22,7,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,900,9,0,1155,13,0,0 +2013,4,11,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,-7,0,1610,-17,0,0 +2013,6,2,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-3,0,1252,-7,0,0 +2013,6,30,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,23,1,1115,12,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,845,0,0,1153,-16,0,0 +2013,8,25,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,-1,0,1620,8,0,0 +2013,7,8,1,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1441,22,1,1824,31,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1145,6,0,1510,-8,0,0 +2013,5,24,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1755,26,1,2054,3,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,945,5,0,1300,-8,0,0 +2013,5,18,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,850,-5,0,1445,-7,0,0 +2013,4,29,1,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,-4,0,1045,-18,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1625,5,0,1745,11,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-2,0,1343,-4,0,0 +2013,7,25,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,-6,0,1605,-2,0,0 +2013,4,26,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,931,-2,0,1129,-20,0,0 +2013,4,10,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1820,0,0,1945,-2,0,0 +2013,6,14,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,112,1,2030,133,1,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,-2,0,1632,1,0,0 +2013,4,3,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1720,22,1,1939,17,1,0 +2013,9,1,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1325,1,0,1430,-7,0,0 +2013,8,15,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-9,0,1830,-6,0,0 +2013,6,27,4,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,620,-2,0,1446,2,0,0 +2013,9,27,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1105,4,0,1205,-4,0,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,0,0,1730,7,0,0 +2013,6,5,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-6,0,1359,13,0,0 +2013,10,31,4,EV,14307,Theodore Francis Green State,Providence,RI,11042,Cleveland-Hopkins International,Cleveland,OH,1625,-8,0,1824,-13,0,0 +2013,8,19,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1358,-5,0,1545,-16,0,0 +2013,9,10,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,852,-15,0,0 +2013,6,10,1,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,87,1,1918,113,1,0 +2013,4,27,6,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,904,19,1,1155,38,1,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,855,-2,0,1105,-7,0,0 +2013,6,4,2,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1731,3,0,1907,-7,0,0 +2013,6,14,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,12,0,545,4,0,0 +2013,8,7,3,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1341,0,,1450,0,1,1 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,-2,0,1320,-3,0,0 +2013,5,8,3,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-2,0,1959,-6,0,0 +2013,6,7,5,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,0,0,900,-13,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,15,1,2238,1,0,0 +2013,8,25,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,647,-7,0,1035,0,0,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,-4,0,1949,-11,0,0 +2013,8,1,4,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1115,-4,0,1300,5,0,0 +2013,4,19,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,6,0,1207,4,0,0 +2013,9,13,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,17,1,1220,8,0,0 +2013,10,11,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,3,0,1614,22,1,0 +2013,5,28,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1648,-6,0,1918,9,0,0 +2013,9,5,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1715,6,0,1835,0,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2235,-12,0,707,-12,0,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2220,-4,0,15,7,0,0 +2013,9,1,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1545,-1,0,1655,-6,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1225,0,0,1336,-1,0,0 +2013,4,19,5,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2210,76,1,2256,75,1,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,0,0,1735,-2,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,-1,0,2358,1,0,0 +2013,8,21,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1935,27,1,2125,31,1,0 +2013,7,18,4,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1740,111,1,1850,88,1,0 +2013,6,17,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,128,1,2125,128,1,0 +2013,9,13,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-5,0,1337,-8,0,0 +2013,9,17,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1430,-2,0,1808,-10,0,0 +2013,9,30,1,EV,13931,Norfolk International,Norfolk,VA,12953,LaGuardia,New York,NY,1830,-6,0,2001,-9,0,0 +2013,8,9,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1800,-1,0,1820,2,0,0 +2013,9,10,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1125,7,0,1130,3,0,0 +2013,4,3,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,600,79,1,717,86,1,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1420,-12,0,0 +2013,9,16,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1515,35,1,1640,29,1,0 +2013,7,6,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-2,0,1959,28,1,0 +2013,9,24,2,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,635,-6,0,746,-11,0,0 +2013,9,3,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,915,6,0,1029,7,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,949,-4,0,1226,-24,0,0 +2013,8,22,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1533,18,1,1710,9,0,0 +2013,10,26,6,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,915,-5,0,1048,-24,0,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1905,33,1,2130,31,1,0 +2013,6,10,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-3,0,1247,-19,0,0 +2013,8,1,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1715,26,1,1835,32,1,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,630,-4,0,905,-8,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,-3,0,1900,-18,0,0 +2013,4,12,5,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,42,1,1613,22,1,0 +2013,4,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,0,0,2040,1,0,0 +2013,4,12,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1120,-4,0,1530,17,1,0 +2013,5,31,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,719,6,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1535,0,0,1813,-7,0,0 +2013,6,10,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,70,1,2036,58,1,0 +2013,7,27,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,167,1,1135,168,1,0 +2013,7,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1225,-3,0,1340,-5,0,0 +2013,5,20,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1650,29,1,1925,31,1,0 +2013,5,13,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1405,0,0,1555,-27,0,0 +2013,8,12,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,76,1,2324,86,1,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,1,0,1310,-7,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-2,0,910,2,0,0 +2013,10,13,7,EV,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1647,-3,0,1742,18,1,0 +2013,7,7,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1326,14,0,2140,15,1,0 +2013,9,5,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1340,-8,0,1538,-1,0,0 +2013,10,27,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1350,-3,0,1502,-16,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1355,34,1,1830,18,1,0 +2013,10,11,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,37,1,2112,33,1,0 +2013,10,24,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1723,-5,0,1959,-10,0,0 +2013,9,9,1,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-3,0,1028,-25,0,0 +2013,4,6,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,-6,0,1815,-20,0,0 +2013,8,2,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,55,1,1240,40,1,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-4,0,1854,-6,0,0 +2013,9,19,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,708,-13,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2215,-2,0,2350,-17,0,0 +2013,4,16,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1710,-1,0,1925,-12,0,0 +2013,8,16,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2052,5,0,2155,-4,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,8,0,45,-4,0,0 +2013,9,4,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,930,-2,0,1210,-12,0,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1519,-1,0,1834,-23,0,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,847,63,1,1156,25,1,0 +2013,5,9,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1638,27,1,1942,17,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1640,18,1,1740,12,0,0 +2013,6,8,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,821,-7,0,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,-3,0,2249,-15,0,0 +2013,8,13,2,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1555,-10,0,2340,-12,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1020,-9,0,1320,-13,0,0 +2013,5,25,6,OO,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1242,-10,0,1413,-3,0,0 +2013,8,31,6,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,180,1,1927,157,1,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,-1,0,1825,-8,0,0 +2013,8,17,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,700,-1,0,953,-24,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,-4,0,1524,-7,0,0 +2013,5,18,6,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,630,-2,0,920,-15,0,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-4,0,2132,-15,0,0 +2013,5,5,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2020,51,1,2125,49,1,0 +2013,9,10,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,829,-4,0,1139,-14,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,2335,14,0,553,7,0,0 +2013,5,24,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-2,0,1329,0,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1450,0,0,1600,-11,0,0 +2013,5,4,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2005,-3,0,2259,2,0,0 +2013,4,27,6,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,0,0,1015,-22,0,0 +2013,7,28,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1115,1,0,1250,-10,0,0 +2013,5,2,4,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,-12,0,810,-36,0,0 +2013,10,13,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1818,-6,0,2100,-17,0,0 +2013,6,23,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1420,10,0,1530,1,0,0 +2013,4,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1330,9,0,1405,-2,0,0 +2013,6,25,2,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,820,1,0,940,9,0,0 +2013,9,26,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2045,-7,0,2215,-10,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,800,-14,0,0 +2013,9,18,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,725,-3,0,0 +2013,5,7,2,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1922,-4,0,2159,-16,0,0 +2013,6,17,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,545,-5,0,715,-5,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1514,-4,0,1755,-6,0,0 +2013,5,4,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1354,-5,0,1543,-13,0,0 +2013,9,29,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1208,62,1,1431,56,1,0 +2013,5,10,5,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1847,-4,0,2034,53,1,0 +2013,8,11,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-6,0,1155,-9,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1944,5,0,2055,2,0,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,-10,0,1140,-10,0,0 +2013,6,28,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,648,-4,0,0 +2013,4,4,4,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2223,-4,0,550,5,0,0 +2013,8,18,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-5,0,1024,-25,0,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1752,2,0,2115,-7,0,0 +2013,4,29,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-1,0,1535,-7,0,0 +2013,7,7,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,-6,0,2111,-7,0,0 +2013,9,29,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1332,-9,0,1444,-2,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1415,-4,0,1555,-21,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1015,2,0,1105,3,0,0 +2013,6,16,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2201,0,0,2305,-20,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,720,-2,0,855,-21,0,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1511,6,0,1640,-6,0,0 +2013,9,28,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,855,-5,0,1200,-15,0,0 +2013,6,23,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,46,1,2215,31,1,0 +2013,9,26,4,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1045,3,0,1440,-10,0,0 +2013,5,15,3,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,2129,8,0,2356,-2,0,0 +2013,9,13,5,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1048,77,1,1433,85,1,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-2,0,1330,-24,0,0 +2013,6,13,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-2,0,1251,15,1,0 +2013,6,8,6,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,912,-4,0,1025,-21,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1845,-1,0,2000,0,0,0 +2013,5,22,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,-5,0,1030,13,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1931,23,1,2117,11,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1614,-3,0,1734,-20,0,0 +2013,9,14,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1855,-11,0,2035,-29,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,7,0,2000,7,0,0 +2013,5,5,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,855,-2,0,1220,-1,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1249,6,0,1425,16,1,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1005,-4,0,1055,-7,0,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1105,7,0,1325,7,0,0 +2013,4,5,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1945,-6,0,2237,-21,0,0 +2013,5,17,5,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,825,-3,0,1615,2,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,-4,0,1110,-13,0,0 +2013,4,10,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,514,1,1635,505,1,0 +2013,4,16,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,900,-11,0,1058,-3,0,0 +2013,4,1,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1050,54,1,1232,63,1,0 +2013,6,23,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1240,-2,0,0 +2013,5,31,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1200,10,0,1449,-4,0,0 +2013,5,24,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1140,3,0,1145,4,0,0 +2013,7,22,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,-6,0,1855,-12,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-5,0,935,-9,0,0 +2013,5,28,2,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1550,-5,0,1905,32,1,0 +2013,7,21,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,741,-10,0,0 +2013,6,18,2,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1520,28,1,1637,22,1,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2031,3,0,2344,27,1,0 +2013,7,15,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2020,8,0,2255,1,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,855,-1,0,1135,27,1,0 +2013,4,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,2035,13,0,2305,11,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1447,-4,0,1630,-10,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1040,1,0,1215,4,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2220,8,0,2254,-13,0,0 +2013,10,14,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1248,0,0,2101,6,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1145,2,0,1415,2,0,0 +2013,7,30,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1946,-3,0,2140,-6,0,0 +2013,8,23,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,24,1,1800,21,1,0 +2013,5,23,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1031,-3,0,1327,-19,0,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,5,0,1620,-5,0,0 +2013,9,22,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,1,0,1400,-7,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2303,33,1,13,29,1,0 +2013,7,10,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,95,1,2013,109,1,0 +2013,5,16,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1625,18,1,1755,8,0,0 +2013,8,21,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,759,-4,0,1630,-14,0,0 +2013,9,6,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1700,-1,0,1955,-27,0,0 +2013,10,28,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1900,62,1,1955,60,1,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1357,-2,0,1629,-11,0,0 +2013,5,22,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,851,-8,0,1043,-30,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1530,7,0,2000,-9,0,0 +2013,9,23,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-9,0,1906,-3,0,0 +2013,6,7,5,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,2,0,745,-5,0,0 +2013,9,14,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1420,9,0,1655,5,0,0 +2013,10,7,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,2,0,1415,4,0,0 +2013,7,20,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-3,0,810,-6,0,0 +2013,10,18,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,635,-7,0,830,-26,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1025,19,1,1250,54,1,0 +2013,9,26,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,850,-16,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2124,3,0,541,36,1,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1515,-3,0,1631,-1,0,0 +2013,5,23,4,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,20,1,1048,-9,0,0 +2013,8,11,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1917,1,0,2021,-8,0,0 +2013,5,22,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-9,0,900,-12,0,0 +2013,5,23,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,8,0,1330,-7,0,0 +2013,5,1,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,35,1,1455,43,1,0 +2013,5,31,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1505,-5,0,1731,-13,0,0 +2013,4,2,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,0,0,2050,-12,0,0 +2013,4,28,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,955,-10,0,1132,-7,0,0 +2013,4,15,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1230,-16,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,-3,0,1115,-19,0,0 +2013,10,31,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1815,-4,0,1940,-6,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2155,69,1,2340,57,1,0 +2013,9,15,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1742,-3,0,2149,10,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2113,-4,0,2235,1,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1800,11,0,2150,8,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,-8,0,1915,-14,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,3,0,6,-3,0,0 +2013,6,6,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,2,0,617,-6,0,0 +2013,9,21,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,748,0,0,1033,-7,0,0 +2013,7,31,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,1252,-24,0,0 +2013,7,18,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1824,2,0,2022,1,0,0 +2013,4,19,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1530,62,1,1810,63,1,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-1,0,1855,31,1,0 +2013,8,11,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,842,-3,0,1248,1,0,0 +2013,7,8,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-5,0,2149,-6,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,94,1,1755,83,1,0 +2013,4,15,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1545,13,0,1700,19,1,0 +2013,4,9,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1415,308,1,1700,296,1,0 +2013,7,16,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,645,-3,0,959,4,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1215,93,1,1435,89,1,0 +2013,7,21,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-5,0,927,-1,0,0 +2013,9,7,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1140,-2,0,1340,-14,0,0 +2013,6,9,7,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,2040,-1,0,2115,-9,0,0 +2013,6,16,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,0,0,1155,-5,0,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2050,-1,0,2210,-6,0,0 +2013,4,15,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-2,0,1434,16,1,0 +2013,5,13,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,-5,0,1733,-10,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,0,0,2148,23,1,0 +2013,4,27,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-3,0,1500,-17,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1150,2,0,1245,-6,0,0 +2013,8,24,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-7,0,2145,-34,0,0 +2013,10,13,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2020,26,1,2145,7,0,0 +2013,5,10,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-4,0,2011,2,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2250,-2,0,102,-15,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,749,-4,0,1003,-7,0,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1955,156,1,2205,155,1,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1550,27,1,1745,15,1,0 +2013,6,11,2,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,79,1,558,77,1,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1512,22,1,1715,26,1,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,289,1,1755,275,1,0 +2013,5,5,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1550,-5,0,1907,-28,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2036,13,0,2306,5,0,0 +2013,10,18,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1300,10,0,1315,0,0,0 +2013,9,29,7,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,825,-1,0,1135,-2,0,0 +2013,5,25,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2245,14,0,452,4,0,0 +2013,4,25,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,710,-7,0,1250,-29,0,0 +2013,8,18,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1410,15,1,1545,-1,0,0 +2013,7,24,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,17,1,2204,10,0,0 +2013,8,4,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,825,2,0,1040,-2,0,0 +2013,7,7,7,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,-7,0,840,-5,0,0 +2013,5,27,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,730,-6,0,945,-6,0,0 +2013,4,20,6,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-5,0,2201,-13,0,0 +2013,7,12,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1320,-9,0,1850,-15,0,0 +2013,4,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,640,-1,0,855,7,0,0 +2013,7,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,-7,0,1728,-28,0,0 +2013,4,11,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,726,14,0,1225,24,1,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1703,-7,0,1852,-21,0,0 +2013,7,9,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-3,0,533,2,0,0 +2013,4,11,4,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1133,60,1,1420,49,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1617,6,0,1817,8,0,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,635,-5,0,740,-13,0,0 +2013,7,17,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-4,0,1800,23,1,0 +2013,5,12,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-10,0,1355,-11,0,0 +2013,6,19,3,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,-1,0,1435,-9,0,0 +2013,9,24,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,930,2,0,1246,-6,0,0 +2013,8,10,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,43,1,1535,33,1,0 +2013,10,23,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1050,33,1,1225,52,1,0 +2013,9,17,2,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1040,-7,0,1157,-19,0,0 +2013,9,15,7,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1500,0,0,1830,1,0,0 +2013,5,22,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,1,0,2140,22,1,0 +2013,4,9,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1145,0,0,1333,-5,0,0 +2013,9,7,6,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1126,-5,0,1315,-10,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1350,3,0,1541,0,0,0 +2013,9,6,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,813,-11,0,1104,-22,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1128,-2,0,1453,-17,0,0 +2013,10,29,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2059,17,1,2300,1,0,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2205,-2,0,2258,-13,0,0 +2013,7,30,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1105,4,0,1220,-6,0,0 +2013,4,5,5,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,859,-2,0,1048,-14,0,0 +2013,6,23,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1240,7,0,1600,-1,0,0 +2013,7,4,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1034,-8,0,1206,-14,0,0 +2013,8,10,6,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-5,0,10,-12,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1517,90,1,1621,84,1,0 +2013,7,25,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,-9,0,1003,-7,0,0 +2013,6,11,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-7,0,1105,-15,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1620,119,1,1850,107,1,0 +2013,5,1,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1440,-3,0,1655,2,0,0 +2013,8,2,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1101,3,0,1424,7,0,0 +2013,9,13,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,38,1,1940,34,1,0 +2013,6,8,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1515,-2,0,1630,-2,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,-1,0,1635,-8,0,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,57,1,2130,35,1,0 +2013,9,10,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,-4,0,1045,8,0,0 +2013,5,28,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1031,-1,0,1350,-20,0,0 +2013,9,7,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-12,0,1118,-14,0,0 +2013,5,16,4,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,845,200,1,1439,180,1,0 +2013,4,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1035,-7,0,1215,-19,0,0 +2013,8,19,1,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-2,0,1153,-11,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1910,18,1,2335,4,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1340,0,0,1347,-9,0,0 +2013,9,27,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1325,-7,0,1429,-13,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1130,25,1,1345,29,1,0 +2013,6,29,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-4,0,2041,-26,0,0 +2013,6,30,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-2,0,914,-18,0,0 +2013,5,28,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1755,19,1,1915,20,1,0 +2013,8,15,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-1,0,900,-7,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,8,0,1150,13,0,0 +2013,7,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,4,0,936,3,0,0 +2013,5,7,2,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,534,-3,0,702,-16,0,0 +2013,7,15,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1920,-1,0,2045,-17,0,0 +2013,6,8,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2013,-7,0,2143,-21,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1155,27,1,1330,8,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1025,-4,0,1231,-7,0,0 +2013,9,27,5,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1155,0,0,1405,-16,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,601,-4,0,938,-14,0,0 +2013,9,2,1,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1055,0,0,1255,-2,0,0 +2013,4,6,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,53,1,1355,27,1,0 +2013,4,24,3,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,12,0,2010,12,0,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,-4,0,1045,-5,0,0 +2013,8,9,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,-3,0,1505,0,0,0 +2013,4,6,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-5,0,1740,-22,0,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,-4,0,2054,-7,0,0 +2013,9,26,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,1,0,1730,-1,0,0 +2013,4,23,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-3,0,955,-10,0,0 +2013,6,11,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2055,1,0,2335,-16,0,0 +2013,10,24,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-2,0,1805,-12,0,0 +2013,8,20,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,815,-1,0,925,-8,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,700,-5,0,1010,-16,0,0 +2013,9,5,4,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1114,-4,0,1345,-19,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,-1,0,1540,-15,0,0 +2013,7,30,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1337,-4,0,1539,-14,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1520,-3,0,1720,1,0,0 +2013,5,2,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,850,-2,0,1010,-4,0,0 +2013,7,28,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-2,0,1912,10,0,0 +2013,10,5,6,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-5,0,2110,-10,0,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,730,-4,0,1040,-15,0,0 +2013,4,23,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,-4,0,1725,-13,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1040,9,0,1255,9,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1725,6,0,2245,0,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1010,-3,0,1510,2,0,0 +2013,4,9,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,-4,0,1950,6,0,0 +2013,5,25,6,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1247,16,1,1458,26,1,0 +2013,7,4,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1445,-5,0,1600,-7,0,0 +2013,10,24,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1505,4,0,1825,5,0,0 +2013,8,30,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-2,0,1411,-9,0,0 +2013,8,6,2,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1142,20,1,1402,-1,0,0 +2013,9,15,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-7,0,1517,-18,0,0 +2013,6,3,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1415,0,0,1520,-1,0,0 +2013,4,21,7,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2040,-1,0,2356,-9,0,0 +2013,6,25,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,0,0,1944,6,0,0 +2013,7,8,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1115,2,0,1310,-3,0,0 +2013,10,12,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1315,-1,0,1707,-5,0,0 +2013,7,6,6,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,3,0,830,-3,0,0 +2013,7,28,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2105,1,0,2230,0,0,0 +2013,10,9,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1425,-2,0,2259,-4,0,0 +2013,8,30,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,-2,0,1121,1,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,0,0,1430,-2,0,0 +2013,6,1,6,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,938,32,1,1035,43,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-3,0,924,-7,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-3,0,1106,7,0,0 +2013,10,17,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,700,7,0,1042,-4,0,0 +2013,4,15,1,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1936,-2,0,2058,-10,0,0 +2013,9,22,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,720,-2,0,845,2,0,0 +2013,10,18,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,935,-5,0,1055,-7,0,0 +2013,4,1,1,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,18,1,946,13,0,0 +2013,10,20,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2115,-1,0,2240,-13,0,0 +2013,6,9,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1755,10,0,1935,13,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,5,0,1904,-1,0,0 +2013,10,13,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-4,0,1622,-19,0,0 +2013,6,20,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1025,0,0,1040,7,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1010,-6,0,1146,-6,0,0 +2013,4,29,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,600,3,0,825,-3,0,0 +2013,8,9,5,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1716,82,1,1851,63,1,0 +2013,6,9,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,66,1,1720,65,1,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,700,-4,0,930,6,0,0 +2013,10,29,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2204,6,0,15,5,0,0 +2013,7,30,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,605,30,1,720,40,1,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1023,-5,0,1411,-17,0,0 +2013,6,28,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,810,-5,0,948,-15,0,0 +2013,8,4,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,-1,0,1021,9,0,0 +2013,4,20,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1820,-15,0,1945,-16,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,905,-4,0,1606,23,1,0 +2013,4,21,7,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1719,50,1,1843,66,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,86,1,1720,87,1,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1335,15,1,1500,0,0,0 +2013,7,26,5,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1550,102,1,1848,87,1,0 +2013,10,11,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1730,23,1,2040,25,1,0 +2013,8,21,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1638,-10,0,1835,-5,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1932,89,1,2244,83,1,0 +2013,5,25,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,949,1,0,1155,0,0,0 +2013,8,4,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,30,1,2125,23,1,0 +2013,9,29,7,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,0,0,1957,2,0,0 +2013,10,12,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-3,0,1740,-11,0,0 +2013,4,21,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,47,1,1535,75,1,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-8,0,841,-17,0,0 +2013,10,29,2,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-6,0,2050,8,0,0 +2013,6,4,2,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,715,-5,0,957,-9,0,0 +2013,8,9,5,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1315,-5,0,1910,-2,0,0 +2013,10,28,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,3,0,1348,1,0,0 +2013,9,10,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-2,0,1745,-14,0,0 +2013,5,21,2,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1309,-3,0,1512,-13,0,0 +2013,6,5,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,0,0,840,-16,0,0 +2013,7,25,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-1,0,1228,5,0,0 +2013,8,26,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,932,8,0,0 +2013,8,2,5,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2109,108,1,15,84,1,0 +2013,6,27,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,825,0,0,945,-7,0,0 +2013,5,4,6,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-4,0,657,-4,0,0 +2013,5,11,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,96,1,1544,100,1,0 +2013,10,11,5,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,728,-7,0,925,-8,0,0 +2013,4,23,2,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1910,0,,2132,0,1,1 +2013,5,26,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1415,-7,0,1601,-8,0,0 +2013,9,5,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,1,0,1015,2,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1005,-5,0,1131,-6,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-8,0,2151,-31,0,0 +2013,5,17,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-7,0,1134,-5,0,0 +2013,8,9,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-4,0,1812,-8,0,0 +2013,4,13,6,WN,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1700,-4,0,1915,-10,0,0 +2013,7,12,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1805,85,1,2030,73,1,0 +2013,4,29,1,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,615,-2,0,710,-15,0,0 +2013,8,31,6,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1136,0,,1455,0,1,1 +2013,4,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2005,23,1,2339,7,0,0 +2013,9,21,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1545,-10,0,1911,-8,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-8,0,2335,-11,0,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,820,-9,0,1055,0,0,0 +2013,9,2,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1645,21,1,1810,9,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1610,0,0,1820,-3,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1350,115,1,1458,121,1,0 +2013,8,21,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1350,8,0,1500,1,0,0 +2013,7,17,3,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-3,0,2140,-14,0,0 +2013,8,25,7,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,4,0,1910,13,0,0 +2013,7,17,3,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1155,13,0,1340,3,0,0 +2013,10,6,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,600,-1,0,720,-21,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,39,1,1820,42,1,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,0,0,1342,-2,0,0 +2013,7,25,4,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1130,-7,0,1345,-9,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2105,3,0,2220,0,0,0 +2013,9,24,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2255,0,0,2358,8,0,0 +2013,6,28,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,35,1,1450,33,1,0 +2013,8,18,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1545,7,0,1725,-7,0,0 +2013,6,28,5,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,4,0,1620,-8,0,0 +2013,5,8,3,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1245,0,0,1605,-9,0,0 +2013,8,24,6,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1900,-3,0,2146,-39,0,0 +2013,9,26,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1457,-13,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,1119,1,0,0 +2013,4,27,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,-7,0,1805,-10,0,0 +2013,9,25,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-1,0,2215,-1,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2105,-5,0,22,-9,0,0 +2013,8,2,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,4,0,1220,-9,0,0 +2013,10,14,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,-9,0,1122,39,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1115,-3,0,1158,-9,0,0 +2013,9,5,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1146,-5,0,1334,-16,0,0 +2013,10,14,1,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1930,-11,0,2220,7,0,0 +2013,7,8,1,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1735,0,0,2108,-4,0,0 +2013,6,8,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1659,-8,0,1902,-8,0,0 +2013,9,17,2,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1111,-12,0,1209,-12,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,6,0,5,2,0,0 +2013,7,17,3,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2310,6,0,634,15,1,0 +2013,10,2,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,725,-1,0,845,2,0,0 +2013,9,9,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,850,-5,0,935,-13,0,0 +2013,8,30,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,706,-5,0,1052,4,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,1,0,1035,-2,0,0 +2013,8,2,5,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1350,3,0,1910,-11,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,24,1,1310,49,1,0 +2013,6,12,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1452,-2,0,1619,18,1,0 +2013,7,20,6,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,0,0,2152,-7,0,0 +2013,5,19,7,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-2,0,811,-12,0,0 +2013,9,24,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1158,-5,0,1326,-6,0,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2135,1,0,2235,-5,0,0 +2013,9,30,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1505,-4,0,1625,-5,0,0 +2013,6,21,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2045,3,0,2310,-11,0,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,1415,1,0,2210,-15,0,0 +2013,8,13,2,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-5,0,625,-3,0,0 +2013,9,18,3,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1602,-6,0,1624,3,0,0 +2013,8,19,1,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,218,1,1010,211,1,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1253,-7,0,1619,-9,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1131,0,,1408,0,1,1 +2013,4,10,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-15,0,1812,35,1,0 +2013,6,10,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,29,1,2106,31,1,0 +2013,7,1,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-4,0,1555,11,0,0 +2013,10,2,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-8,0,525,8,0,0 +2013,4,8,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,609,-4,0,747,-17,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,4,0,626,13,0,0 +2013,9,18,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,-6,0,1754,-9,0,0 +2013,6,17,1,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,6,0,1124,12,0,0 +2013,9,4,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-1,0,1000,-16,0,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,-3,0,1739,-12,0,0 +2013,7,7,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1537,-1,0,1900,-10,0,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1525,3,0,1720,4,0,0 +2013,10,20,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1435,0,0,1732,-1,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1115,-3,0,1314,-8,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,27,1,2350,22,1,0 +2013,10,28,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1334,7,0,1507,10,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,618,-4,0,856,-15,0,0 +2013,10,20,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1910,-11,0,2024,-12,0,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-4,0,855,-5,0,0 +2013,7,27,6,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1500,-4,0,1635,-9,0,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1804,22,1,1949,25,1,0 +2013,7,21,7,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-5,0,1519,-6,0,0 +2013,4,3,3,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,700,-3,0,905,-21,0,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1400,16,1,2000,3,0,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,700,-8,0,1056,-5,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,6,0,1616,0,0,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,945,13,0,1540,4,0,0 +2013,7,7,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,-3,0,1606,-3,0,0 +2013,5,5,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,-1,0,2355,0,0,0 +2013,5,3,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2105,22,1,2246,17,1,0 +2013,4,22,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1358,-9,0,1456,-25,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1310,25,1,1500,24,1,0 +2013,10,5,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1125,93,1,1235,92,1,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,10,0,1102,-3,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,842,0,0,1152,1,0,0 +2013,4,28,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,55,1,1730,57,1,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2036,97,1,12,115,1,0 +2013,10,8,2,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,955,-3,0,1240,-7,0,0 +2013,7,6,6,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,755,-11,0,0 +2013,8,22,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,122,1,1747,139,1,0 +2013,10,17,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1155,-1,0,1245,4,0,0 +2013,6,15,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1720,15,1,1820,33,1,0 +2013,7,7,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-4,0,2159,-16,0,0 +2013,9,30,1,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1025,95,1,1205,94,1,0 +2013,5,16,4,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1950,-1,0,2200,-2,0,0 +2013,6,16,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,906,-10,0,1200,-9,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1614,68,1,1910,75,1,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1610,140,1,1826,129,1,0 +2013,4,14,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-2,0,1020,0,0,0 +2013,4,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2123,-5,0,2326,-52,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,850,-5,0,1552,-17,0,0 +2013,7,12,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1819,16,1,2020,4,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1915,-2,0,2026,-17,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,35,1,2021,54,1,0 +2013,5,28,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,810,3,0,935,-10,0,0 +2013,8,11,7,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-8,0,1225,-28,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-6,0,1240,-22,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,19,1,1655,5,0,0 +2013,9,20,5,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,-8,0,1703,-9,0,0 +2013,5,2,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1245,-6,0,2042,-15,0,0 +2013,4,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,823,-9,0,921,-5,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1945,25,1,2035,20,1,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1315,10,0,1420,5,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,14,0,2320,-4,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1358,1,0,1443,11,0,0 +2013,7,22,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-8,0,1030,-14,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,3,0,1320,7,0,0 +2013,5,15,3,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,807,-3,0,921,8,0,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1730,-3,0,1921,-16,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,807,2,0,1323,6,0,0 +2013,8,2,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,18,1,2025,11,0,0 +2013,8,28,3,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1409,1,0,1538,-2,0,0 +2013,8,17,6,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,834,0,0,1032,14,0,0 +2013,10,8,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1944,-6,0,2100,-20,0,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1130,39,1,1230,47,1,0 +2013,5,23,4,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,3,0,1806,-1,0,0 +2013,9,6,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,-4,0,1052,-7,0,0 +2013,6,30,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,12,0,2040,-5,0,0 +2013,10,25,5,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-2,0,850,-4,0,0 +2013,7,13,6,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-1,0,920,-25,0,0 +2013,5,29,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1830,43,1,2030,45,1,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,2155,11,0,2340,-2,0,0 +2013,4,18,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,39,1,1412,46,1,0 +2013,6,4,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,2000,1,0,2115,6,0,0 +2013,4,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1543,9,0,1735,9,0,0 +2013,4,15,1,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,600,-2,0,755,4,0,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1745,-2,0,2023,-10,0,0 +2013,10,9,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,857,-8,0,926,17,1,0 +2013,9,6,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1115,-4,0,1245,-14,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1930,-1,0,2111,-14,0,0 +2013,4,8,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2345,-3,0,626,-18,0,0 +2013,9,24,2,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1954,1,0,2105,3,0,0 +2013,8,11,7,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2115,-1,0,510,-9,0,0 +2013,5,16,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1744,22,1,1835,24,1,0 +2013,9,3,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-3,0,812,-1,0,0 +2013,5,29,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,1120,-10,0,0 +2013,4,13,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,900,-1,0,1025,3,0,0 +2013,7,8,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,11,0,920,-1,0,0 +2013,9,15,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,21,1,1853,15,1,0 +2013,7,6,6,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1115,17,1,1255,1,0,0 +2013,9,6,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-8,0,910,-33,0,0 +2013,8,25,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-5,0,1200,-19,0,0 +2013,6,5,3,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-4,0,855,-12,0,0 +2013,7,9,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,1,0,805,-4,0,0 +2013,9,17,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1950,0,,2110,0,1,1 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1159,-19,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1805,95,1,2044,77,1,0 +2013,8,20,2,US,10529,Bradley International,Hartford,CT,11278,Ronald Reagan Washington National,Washington,DC,618,-9,0,741,-20,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-5,0,1239,-12,0,0 +2013,7,26,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1730,40,1,1905,46,1,0 +2013,5,1,3,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1800,-14,0,2151,2,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,-3,0,1955,8,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1741,3,0,2323,-8,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,-2,0,730,-8,0,0 +2013,10,1,2,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1319,-12,0,1500,-18,0,0 +2013,8,5,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,3,0,1625,-9,0,0 +2013,7,6,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1100,-5,0,1225,-9,0,0 +2013,5,25,6,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-5,0,859,-22,0,0 +2013,8,11,7,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,924,1,0,1015,2,0,0 +2013,6,22,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,835,24,1,955,15,1,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1920,98,1,2157,125,1,0 +2013,6,21,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1625,35,1,1815,14,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,2,0,1545,-14,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1240,5,0,1720,-9,0,0 +2013,6,1,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,-3,0,1040,6,0,0 +2013,9,30,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,29,1,2325,25,1,0 +2013,4,9,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-1,0,2010,-9,0,0 +2013,6,17,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-4,0,817,-8,0,0 +2013,4,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,600,-3,0,715,-7,0,0 +2013,4,14,7,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-3,0,1245,-30,0,0 +2013,4,11,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1212,105,1,1319,98,1,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1040,-4,0,1309,-27,0,0 +2013,7,7,7,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1725,-6,0,1730,-18,0,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,735,-6,0,1010,-18,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,-5,0,751,-26,0,0 +2013,7,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1940,4,0,2157,9,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-6,0,2048,-12,0,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2050,-7,0,2211,-12,0,0 +2013,7,12,5,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1540,-5,0,1710,8,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1925,-5,0,2050,-4,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1745,-8,0,1928,2,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,119,1,34,110,1,0 +2013,10,1,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1356,-5,0,1514,-24,0,0 +2013,6,4,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,76,1,1430,71,1,0 +2013,8,22,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-6,0,1110,1,0,0 +2013,10,24,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1725,0,0,2019,7,0,0 +2013,10,3,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,0,0,1750,7,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-1,0,1829,-5,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1608,-4,0,1839,12,0,0 +2013,5,5,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,11,0,2000,-16,0,0 +2013,8,4,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1626,41,1,1835,33,1,0 +2013,9,11,3,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,820,2,0,1612,16,1,0 +2013,9,15,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,50,-2,0,513,4,0,0 +2013,6,3,1,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1111,0,0,1408,-8,0,0 +2013,10,14,1,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-1,0,1004,-21,0,0 +2013,6,6,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,845,-3,0,1000,4,0,0 +2013,10,17,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-11,0,2326,-11,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1455,1,0,1910,-11,0,0 +2013,5,17,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-6,0,1604,-5,0,0 +2013,4,12,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1920,15,1,2055,6,0,0 +2013,4,15,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1020,12,0,1040,22,1,0 +2013,6,28,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,0,0,1357,17,1,0 +2013,7,19,5,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1430,8,0,1555,-6,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-2,0,925,-16,0,0 +2013,6,28,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,27,1,1411,23,1,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-5,0,1307,-19,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,900,4,0,1425,-6,0,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,905,23,1,1220,0,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1630,295,1,1925,288,1,0 +2013,6,9,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1210,-6,0,1310,-6,0,0 +2013,10,29,2,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-5,0,1005,17,1,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1805,-3,0,1938,-11,0,0 +2013,8,23,5,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2211,5,0,2351,-13,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1405,12,0,1659,2,0,0 +2013,10,7,1,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1129,11,0,1504,9,0,0 +2013,5,24,5,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,820,-5,0,930,13,0,0 +2013,7,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,41,1,2235,49,1,0 +2013,5,25,6,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,745,-4,0,910,-14,0,0 +2013,4,4,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1117,8,0,1715,-3,0,0 +2013,7,22,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-7,0,753,-17,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1238,-4,0,1800,-5,0,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1006,1,0,1331,-8,0,0 +2013,4,18,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,54,1,1300,72,1,0 +2013,9,14,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1325,178,1,1415,172,1,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1207,0,0,1404,-25,0,0 +2013,5,17,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,-4,0,2000,-34,0,0 +2013,7,30,2,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,730,396,1,920,398,1,0 +2013,5,28,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,-4,0,1746,-15,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,955,32,1,1750,43,1,0 +2013,6,14,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,9,0,1440,9,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,-3,0,1338,-9,0,0 +2013,4,8,1,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,930,-2,0,1255,3,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,940,-4,0,1050,-6,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1230,5,0,1454,22,1,0 +2013,4,9,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,54,1,1730,45,1,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2157,44,1,2334,32,1,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1307,-5,0,1443,-11,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1130,-10,0,1500,1,0,0 +2013,9,7,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,730,-2,0,900,-9,0,0 +2013,5,11,6,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1449,-5,0,1550,2,0,0 +2013,8,8,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1212,10,0,1955,11,0,0 +2013,8,28,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1649,-2,0,1726,1,0,0 +2013,10,12,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,830,-10,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1825,-3,0,2009,19,1,0 +2013,9,4,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1029,-2,0,1244,-17,0,0 +2013,5,19,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1300,-5,0,1645,-4,0,0 +2013,10,19,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1535,-4,0,1847,-14,0,0 +2013,6,26,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1930,74,1,2242,69,1,0 +2013,9,6,5,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1645,0,0,2015,-50,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1000,26,1,1318,18,1,0 +2013,8,30,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,-2,0,2249,-6,0,0 +2013,7,29,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-3,0,2133,-1,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,945,-2,0,1040,-14,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2020,100,1,2241,142,1,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,825,-3,0,925,-1,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,-2,0,1155,-5,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1011,-7,0,1201,6,0,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,755,-11,0,0 +2013,6,30,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,12,0,1315,-4,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,33,1,1558,18,1,0 +2013,9,16,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-7,0,857,-30,0,0 +2013,9,20,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1011,-5,0,1049,-4,0,0 +2013,9,11,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,23,1,850,6,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,831,-4,0,929,-3,0,0 +2013,7,10,3,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,22,1,2200,8,0,0 +2013,5,4,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-7,0,1423,-17,0,0 +2013,5,20,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,28,1,1632,16,1,0 +2013,10,28,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1319,-3,0,1446,-9,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,640,1,0,845,-2,0,0 +2013,8,8,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1650,-1,0,1805,-3,0,0 +2013,5,1,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1856,-5,0,2140,-18,0,0 +2013,6,12,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,61,1,1755,43,1,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-5,0,2124,0,0,0 +2013,5,17,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1755,-10,0,2030,-30,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1555,-3,0,1729,-13,0,0 +2013,4,30,2,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-3,0,1520,-6,0,0 +2013,7,16,2,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,2028,1,0,2104,-4,0,0 +2013,7,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,625,-4,0,853,-15,0,0 +2013,4,21,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-5,0,1845,-6,0,0 +2013,8,22,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1258,-1,0,1509,7,0,0 +2013,9,22,7,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1347,-9,0,1522,-25,0,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1000,-6,0,1133,16,1,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,1,0,1856,-4,0,0 +2013,10,30,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,27,1,2044,19,1,0 +2013,7,3,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,605,-3,0,751,-21,0,0 +2013,8,20,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-10,0,1655,-16,0,0 +2013,6,11,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,800,-3,0,1040,-17,0,0 +2013,10,12,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-6,0,1334,-24,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1120,-3,0,1248,-20,0,0 +2013,4,21,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,-2,0,1510,-9,0,0 +2013,5,25,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,835,0,,1100,0,1,1 +2013,9,20,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1532,9,0,1740,52,1,0 +2013,7,10,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,935,-11,0,0 +2013,9,23,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,0,0,1234,-25,0,0 +2013,9,27,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1425,31,1,2255,12,0,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,830,-3,0,1035,8,0,0 +2013,5,3,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1210,-4,0,1515,15,1,0 +2013,6,16,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,-4,0,1820,-11,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1544,38,1,2129,31,1,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1935,-7,0,2025,-7,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2015,56,1,2144,53,1,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,9,0,1300,0,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,92,1,2231,119,1,0 +2013,7,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1942,27,1,2107,26,1,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,25,1,2259,25,1,0 +2013,8,18,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,800,-4,0,1040,-4,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2126,2,0,2341,-19,0,0 +2013,5,6,1,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,0,0,1735,-10,0,0 +2013,5,14,2,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,1,0,1945,-1,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1413,1,0,1701,-13,0,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2040,-3,0,2356,0,0,0 +2013,5,6,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,9,0,1740,26,1,0 +2013,8,11,7,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,850,-11,0,1031,-8,0,0 +2013,9,25,3,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1045,-3,0,1442,-18,0,0 +2013,4,1,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,545,-6,0,701,-19,0,0 +2013,5,2,4,OO,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1549,190,1,1715,175,1,0 +2013,10,8,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-9,0,1847,-10,0,0 +2013,6,4,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2110,-1,0,2225,0,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,7,0,1037,12,0,0 +2013,9,26,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-14,0,1204,-10,0,0 +2013,5,4,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1755,4,0,2040,15,1,0 +2013,6,17,1,UA,14570,Reno/Tahoe International,Reno,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1222,17,1,1805,4,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,845,8,0,950,4,0,0 +2013,7,31,3,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,-2,0,2150,1,0,0 +2013,10,13,7,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1732,7,0,2019,-16,0,0 +2013,6,24,1,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,5,0,1315,-3,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,833,-3,0,1125,-5,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,850,-1,0,1105,-16,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,1,0,1035,-12,0,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1755,138,1,1940,117,1,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2128,-6,0,2251,16,1,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1910,21,1,2234,32,1,0 +2013,10,9,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-1,0,825,-4,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1006,1,0,1326,-4,0,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,840,-1,0,1120,-4,0,0 +2013,5,15,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-3,0,1203,1,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,950,-1,0,1124,-14,0,0 +2013,7,5,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1014,-4,0,1227,-22,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-5,0,1550,-4,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1040,-6,0,1630,-5,0,0 +2013,9,8,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-4,0,1751,-15,0,0 +2013,7,3,3,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,-4,0,1605,9,0,0 +2013,10,21,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-9,0,940,-4,0,0 +2013,5,5,7,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-4,0,1050,-9,0,0 +2013,7,4,4,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1421,25,1,1707,29,1,0 +2013,9,15,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-6,0,1220,-2,0,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-7,0,846,-15,0,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,0,0,1615,-27,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1421,-3,0,1557,-6,0,0 +2013,6,5,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2000,0,0,2321,-19,0,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,83,1,1435,82,1,0 +2013,6,28,5,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1015,-2,0,1145,-16,0,0 +2013,4,13,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1050,-6,0,1212,-18,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1630,12,0,1819,6,0,0 +2013,5,14,2,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1705,-4,0,1835,-15,0,0 +2013,4,25,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,2,0,1943,14,0,0 +2013,9,19,4,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,757,-4,0,922,4,0,0 +2013,10,18,5,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,720,-5,0,941,-11,0,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,11,0,2010,-1,0,0 +2013,5,15,3,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-1,0,715,-13,0,0 +2013,8,14,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,735,-10,0,1600,9,0,0 +2013,7,23,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,7,0,1515,10,0,0 +2013,6,12,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,-5,0,1055,-5,0,0 +2013,10,15,2,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1120,20,1,1340,13,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,0,0,835,-11,0,0 +2013,4,9,2,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,743,4,0,852,-8,0,0 +2013,9,18,3,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,-3,0,2200,-10,0,0 +2013,7,18,4,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,740,-5,0,1045,-6,0,0 +2013,9,1,7,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,801,-8,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2115,16,1,2255,6,0,0 +2013,6,7,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,5,0,2220,-14,0,0 +2013,10,25,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1910,-2,0,2035,-23,0,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-7,0,1409,-13,0,0 +2013,7,22,1,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1640,-1,0,1950,-3,0,0 +2013,7,20,6,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,-4,0,1157,-12,0,0 +2013,9,17,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-7,0,1730,-14,0,0 +2013,5,5,7,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,58,1,1113,74,1,0 +2013,10,25,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1918,0,0,2110,10,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,827,4,0,1100,2,0,0 +2013,6,21,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-1,0,1255,5,0,0 +2013,9,3,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-7,0,1805,-19,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,949,-1,0,1208,-15,0,0 +2013,8,14,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-1,0,1413,-13,0,0 +2013,5,14,2,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1915,-5,0,2015,-25,0,0 +2013,10,2,3,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-4,0,1420,3,0,0 +2013,10,29,2,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,810,0,0,950,-21,0,0 +2013,6,27,4,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1640,3,0,1805,-2,0,0 +2013,4,10,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-9,0,2125,-21,0,0 +2013,6,28,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1727,0,0,2040,-8,0,0 +2013,7,24,3,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2150,-6,0,2233,-3,0,0 +2013,7,1,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,36,1,2107,21,1,0 +2013,5,10,5,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-5,0,1013,-15,0,0 +2013,10,24,4,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,-8,0,828,-15,0,0 +2013,8,9,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-6,0,1240,8,0,0 +2013,5,19,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,955,-1,0,1115,14,0,0 +2013,5,5,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1135,9,0,1259,19,1,0 +2013,4,24,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-13,0,1332,-10,0,0 +2013,7,22,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-5,0,2050,-11,0,0 +2013,6,26,3,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,36,1,2018,38,1,0 +2013,10,15,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,0,0,2340,11,0,0 +2013,7,13,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1030,2,0,1155,-2,0,0 +2013,10,23,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1040,72,1,1202,102,1,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1940,-4,0,2338,21,1,0 +2013,10,10,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,63,1,1853,74,1,0 +2013,4,12,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1855,-11,0,2112,-7,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1947,58,1,2345,16,1,0 +2013,8,16,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1445,-3,0,1846,-6,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1135,-1,0,1300,-15,0,0 +2013,7,23,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,9,0,1450,1,0,0 +2013,9,16,1,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,1010,8,0,1727,-6,0,0 +2013,8,12,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,2050,-1,0,2235,-15,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-4,0,1248,-3,0,0 +2013,4,4,4,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1129,-5,0,1334,-17,0,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1220,-1,0,1353,-4,0,0 +2013,9,15,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-3,0,1904,-26,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,0,0,1715,-29,0,0 +2013,8,8,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,-4,0,950,0,0,0 +2013,8,17,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-3,0,1639,-10,0,0 +2013,9,13,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1459,-2,0,2001,-15,0,0 +2013,5,10,5,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-1,0,847,-5,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1940,29,1,50,4,0,0 +2013,7,19,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,-6,0,1253,-28,0,0 +2013,7,23,2,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,545,-3,0,807,-12,0,0 +2013,7,19,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,600,0,0,700,-2,0,0 +2013,10,21,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-8,0,934,-12,0,0 +2013,8,3,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-3,0,831,-13,0,0 +2013,10,14,1,FL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1440,-7,0,1539,-8,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,930,0,0,1045,-9,0,0 +2013,5,21,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-5,0,1820,-7,0,0 +2013,8,19,1,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,12,0,1641,2,0,0 +2013,6,27,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1433,76,1,1558,75,1,0 +2013,8,8,4,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1904,71,1,2017,76,1,0 +2013,7,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1435,3,0,1535,0,0,0 +2013,5,4,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,-3,0,1505,-9,0,0 +2013,10,16,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-7,0,1928,-13,0,0 +2013,10,29,2,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1205,-4,0,1350,-13,0,0 +2013,5,7,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1940,15,1,2156,34,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,935,0,0,1055,-21,0,0 +2013,5,3,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,930,-1,0,1135,6,0,0 +2013,6,7,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,945,-3,0,1224,-21,0,0 +2013,6,21,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1025,-6,0,1205,-32,0,0 +2013,6,3,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,30,1,2027,20,1,0 +2013,7,1,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1554,67,1,1920,44,1,0 +2013,7,3,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-5,0,2033,-16,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1155,-6,0,1510,-4,0,0 +2013,7,11,4,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1200,16,1,2013,24,1,0 +2013,4,10,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,630,-6,0,810,-17,0,0 +2013,4,3,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,830,0,,1202,0,1,1 +2013,10,20,7,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,-1,0,2051,-9,0,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2355,-2,0,723,-17,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-3,0,2020,-18,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-2,0,1030,-2,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1745,0,0,1954,-16,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1150,-2,0,1320,-20,0,0 +2013,7,3,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,733,2,0,905,-19,0,0 +2013,4,6,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,615,0,0,710,2,0,0 +2013,7,7,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,16,1,2020,90,1,0 +2013,5,30,4,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,605,-9,0,715,5,0,0 +2013,10,26,6,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1840,6,0,2020,-5,0,0 +2013,6,29,6,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,76,1,1615,80,1,0 +2013,8,9,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1029,96,1,1323,96,1,0 +2013,9,5,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,940,-3,0,1010,-12,0,0 +2013,8,10,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,-8,0,1632,-14,0,0 +2013,10,8,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1934,-10,0,2231,-24,0,0 +2013,7,15,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-7,0,910,-1,0,0 +2013,4,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,948,0,0,1355,-22,0,0 +2013,7,6,6,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1155,-8,0,2030,-5,0,0 +2013,10,29,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-4,0,746,-41,0,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,730,-4,0,839,-18,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-8,0,1020,-3,0,0 +2013,5,15,3,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,830,-1,0,955,-3,0,0 +2013,10,20,7,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1824,0,0,2207,3,0,0 +2013,7,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,0,0,1559,5,0,0 +2013,7,30,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-7,0,2132,3,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,752,-6,0,1405,-20,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1305,2,0,1440,18,1,0 +2013,10,26,6,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1545,-3,0,2127,-2,0,0 +2013,10,13,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1556,6,0,1659,14,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1557,-8,0,1733,-9,0,0 +2013,7,20,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2245,-1,0,614,-9,0,0 +2013,8,7,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,3,0,1435,-3,0,0 +2013,9,25,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2035,7,0,2200,-3,0,0 +2013,10,14,1,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1801,10,0,2049,14,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,-6,0,1640,-8,0,0 +2013,4,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1145,35,1,1525,31,1,0 +2013,10,14,1,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,3,0,1720,2,0,0 +2013,4,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,1035,-6,0,1307,4,0,0 +2013,6,27,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,930,-4,0,1114,-22,0,0 +2013,8,27,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1450,-11,0,1728,-27,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,610,-1,0,730,-7,0,0 +2013,7,5,5,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,811,-8,0,1011,-6,0,0 +2013,4,26,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-3,0,735,-10,0,0 +2013,9,23,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,-4,0,1735,-22,0,0 +2013,10,13,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1330,8,0,1442,13,0,0 +2013,9,30,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1710,-10,0,1851,-9,0,0 +2013,7,17,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,705,1,0,935,6,0,0 +2013,8,28,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1330,-3,0,1540,-5,0,0 +2013,8,18,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,20,1,2125,29,1,0 +2013,5,22,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-3,0,34,-14,0,0 +2013,9,22,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,755,-9,0,1045,-20,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1044,-2,0,1412,-16,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,24,1,2209,44,1,0 +2013,5,18,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1555,-3,0,1825,-4,0,0 +2013,4,19,5,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,800,-5,0,1025,-7,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,0,0,1738,16,1,0 +2013,7,12,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,950,-2,0,1200,-25,0,0 +2013,10,23,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1000,0,0,1055,4,0,0 +2013,4,29,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,-8,0,1110,-12,0,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,908,-3,0,1152,-9,0,0 +2013,8,22,4,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,740,-6,0,1045,-6,0,0 +2013,5,13,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,850,-17,0,0 +2013,8,9,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2010,-4,0,2156,-20,0,0 +2013,6,30,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1544,43,1,1836,45,1,0 +2013,7,3,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1625,12,0,1735,-4,0,0 +2013,8,13,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-2,0,2138,-5,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1921,4,0,2104,11,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1005,-5,0,1310,-17,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1345,10,0,1720,1,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1600,25,1,1725,15,1,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,1,0,855,2,0,0 +2013,10,24,4,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1715,21,1,2141,-5,0,0 +2013,5,3,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,715,26,1,825,35,1,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,-1,0,2238,10,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,850,-1,0,1240,-17,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2041,3,0,2155,2,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,930,8,0,1800,31,1,0 +2013,5,9,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-9,0,1705,-5,0,0 +2013,8,2,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-2,0,1242,-13,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1550,105,1,1940,110,1,0 +2013,6,9,7,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-1,0,1019,-13,0,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1015,-3,0,1419,-29,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1700,111,1,1820,125,1,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,-5,0,2105,-8,0,0 +2013,4,14,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1859,31,1,2210,23,1,0 +2013,7,29,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1148,-5,0,1444,-15,0,0 +2013,7,7,7,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-6,0,1349,-15,0,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1555,10,0,1755,27,1,0 +2013,9,28,6,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1400,5,0,1540,2,0,0 +2013,4,27,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2015,-14,0,2135,-9,0,0 +2013,7,23,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1910,6,0,2140,-9,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1042,-3,0,1157,-17,0,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,727,11,0,1048,9,0,0 +2013,10,13,7,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,700,0,0,1225,-10,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-3,0,832,-18,0,0 +2013,8,3,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1225,-16,0,0 +2013,10,10,4,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,610,-2,0,743,-9,0,0 +2013,8,16,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1055,57,1,1310,50,1,0 +2013,5,21,2,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-2,0,814,13,0,0 +2013,5,14,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-5,0,1801,-35,0,0 +2013,10,1,2,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-7,0,2020,1,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,56,1,900,59,1,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1720,0,0,2010,-4,0,0 +2013,8,4,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,12,0,2345,-11,0,0 +2013,9,22,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1300,47,1,1415,41,1,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,755,-4,0,1010,-5,0,0 +2013,9,11,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,850,-4,0,1240,-9,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2130,87,1,2220,69,1,0 +2013,8,25,7,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,0,0,500,0,0,0 +2013,6,25,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,37,1,1634,49,1,0 +2013,6,19,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,1,0,1350,-3,0,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,935,-8,0,1107,-18,0,0 +2013,6,27,4,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,920,4,0,1200,16,1,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,1244,-17,0,0 +2013,6,3,1,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,16,1,1435,-6,0,0 +2013,4,1,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,-2,0,1415,-4,0,0 +2013,9,9,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,22,1,2057,28,1,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1550,19,1,1745,-2,0,0 +2013,4,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,-3,0,720,-13,0,0 +2013,5,6,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,120,40,1,515,36,1,0 +2013,5,25,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,108,1,1016,103,1,0 +2013,4,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2039,-6,0,2225,-22,0,0 +2013,4,25,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,149,1,2110,142,1,0 +2013,5,16,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1304,8,0,1437,9,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,8,0,1915,0,0,0 +2013,10,17,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1024,-2,0,1413,-5,0,0 +2013,5,10,5,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1040,20,1,1155,21,1,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,850,87,1,1209,84,1,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1535,16,1,1714,22,1,0 +2013,7,3,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-10,0,627,-14,0,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2100,2,0,2258,-1,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,3,0,1810,15,1,0 +2013,6,21,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,0,0,1145,-1,0,0 +2013,9,19,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1450,39,1,1615,38,1,0 +2013,9,2,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,800,17,1,1605,47,1,0 +2013,9,20,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1920,29,1,2200,14,0,0 +2013,6,22,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1619,68,1,1731,60,1,0 +2013,4,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1035,18,1,1145,10,0,0 +2013,5,6,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1806,-6,0,0 +2013,8,20,2,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1159,29,1,1753,34,1,0 +2013,8,15,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,-7,0,1959,9,0,0 +2013,6,5,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,49,1,845,35,1,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2145,102,1,15,100,1,0 +2013,8,20,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,630,-8,0,726,9,0,0 +2013,5,3,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,13,0,1115,15,1,0 +2013,8,20,2,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,920,-5,0,1120,-21,0,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-2,0,1049,-9,0,0 +2013,10,11,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-3,0,1402,-11,0,0 +2013,8,23,5,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1441,30,1,1631,42,1,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1310,-2,0,1535,-12,0,0 +2013,4,29,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-8,0,1041,-18,0,0 +2013,6,23,7,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1245,-7,0,1507,-13,0,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1045,-6,0,1602,15,1,0 +2013,10,14,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1908,-5,0,2305,-2,0,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,846,-8,0,959,-7,0,0 +2013,7,30,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1400,0,,1511,0,1,1 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2130,-1,0,2225,-16,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1500,6,0,1729,-6,0,0 +2013,4,30,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,6,0,940,-10,0,0 +2013,9,5,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,1,0,635,-12,0,0 +2013,8,22,4,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1309,-6,0,1534,-7,0,0 +2013,7,31,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1013,-10,0,1201,-16,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1725,15,1,2305,2,0,0 +2013,4,2,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1210,-7,0,1515,-4,0,0 +2013,10,20,7,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1745,37,1,2005,36,1,0 +2013,7,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1004,17,1,1224,6,0,0 +2013,10,12,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,850,15,1,958,15,1,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1335,26,1,1450,28,1,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1900,37,1,2050,6,0,0 +2013,7,7,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1804,22,1,2100,8,0,0 +2013,8,9,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,802,-11,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1315,-3,0,1500,-9,0,0 +2013,5,6,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2250,-10,0,815,-10,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,22,1,30,4,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1712,-1,0,2022,-23,0,0 +2013,10,1,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-5,0,1545,-14,0,0 +2013,10,13,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-3,0,1013,-6,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,0,0,1912,-7,0,0 +2013,4,3,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1900,-7,0,1935,2,0,0 +2013,10,24,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1245,0,0,2043,-7,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2155,129,1,2305,138,1,0 +2013,5,4,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1603,3,0,1651,-7,0,0 +2013,8,14,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,18,1,2231,22,1,0 +2013,9,5,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,62,1,1405,54,1,0 +2013,7,17,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,4,0,1330,-12,0,0 +2013,5,25,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,0,0,1943,-17,0,0 +2013,9,19,4,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1850,6,0,2212,16,1,0 +2013,6,22,6,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1550,63,1,1850,30,1,0 +2013,4,4,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1045,-11,0,1225,-16,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1616,8,0,1903,-1,0,0 +2013,6,1,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,2,0,1201,20,1,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,850,-3,0,1026,-6,0,0 +2013,10,2,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1049,-1,0,1622,-11,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,16,1,1725,6,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-2,0,1435,15,1,0 +2013,5,11,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2015,-3,0,2130,-6,0,0 +2013,7,16,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1210,10,0,1320,8,0,0 +2013,5,5,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-6,0,915,-16,0,0 +2013,9,9,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1505,-15,0,1737,-16,0,0 +2013,8,9,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,17,1,1917,19,1,0 +2013,8,13,2,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1045,0,,1130,0,1,1 +2013,4,3,3,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,1805,25,1,2045,-8,0,0 +2013,9,25,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-3,0,1847,11,0,0 +2013,4,16,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-5,0,1355,-13,0,0 +2013,10,22,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,543,5,0,1150,-2,0,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,0,,1225,0,1,1 +2013,4,26,5,YV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1603,21,1,1730,31,1,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,806,1,0,1043,-18,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1755,326,1,2025,302,1,0 +2013,9,20,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-4,0,941,-2,0,0 +2013,8,13,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,-7,0,1455,-24,0,0 +2013,10,21,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1240,-5,0,1432,-22,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,955,0,0,1545,22,1,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,820,61,1,1250,81,1,0 +2013,7,23,2,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,720,-9,0,1052,6,0,0 +2013,6,18,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2126,51,1,547,27,1,0 +2013,9,22,7,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,-4,0,2140,-31,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,720,-3,0,943,-12,0,0 +2013,7,31,3,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,12,0,1355,1,0,0 +2013,9,15,7,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,119,1,1847,119,1,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,-5,0,2357,-20,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1939,49,1,2250,90,1,0 +2013,6,19,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1431,-2,0,1544,-2,0,0 +2013,10,1,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1559,-6,0,1829,-7,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1210,24,1,1301,18,1,0 +2013,4,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,841,-1,0,948,-3,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,5,0,1027,20,1,0 +2013,9,22,7,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1705,35,1,1850,41,1,0 +2013,7,19,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,29,1,1505,20,1,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-7,0,1900,-24,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1545,138,1,1730,136,1,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1053,-5,0,1303,-18,0,0 +2013,8,23,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,-3,0,1840,22,1,0 +2013,6,15,6,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,830,-4,0,855,-3,0,0 +2013,5,2,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,15,1,1910,20,1,0 +2013,6,19,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,731,-5,0,950,-24,0,0 +2013,7,22,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,650,0,0,820,-9,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1545,-2,0,1630,0,0,0 +2013,10,2,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-5,0,1604,-5,0,0 +2013,6,28,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1720,34,1,2002,71,1,0 +2013,4,10,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1945,-2,0,2300,104,1,0 +2013,4,22,1,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1003,5,0,1433,-8,0,0 +2013,10,27,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,33,1,1918,21,1,0 +2013,6,18,2,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-2,0,1535,-3,0,0 +2013,8,26,1,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,844,-6,0,1015,1,0,0 +2013,6,21,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-7,0,1750,-9,0,0 +2013,5,9,4,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2003,-3,0,2347,3,0,0 +2013,9,16,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,-11,0,1925,-23,0,0 +2013,10,24,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1855,14,0,2225,4,0,0 +2013,8,27,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,800,-1,0,915,-1,0,0 +2013,7,27,6,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,8,0,1943,12,0,0 +2013,7,28,7,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1605,25,1,1906,17,1,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1033,87,1,1311,68,1,0 +2013,10,8,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1555,-6,0,1831,-21,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1205,6,0,1406,7,0,0 +2013,8,25,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1430,7,0,1505,-2,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1320,-3,0,1625,-17,0,0 +2013,10,15,2,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-5,0,1904,-8,0,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2344,0,0,752,0,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,34,1,1720,26,1,0 +2013,6,23,7,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,18,1,1450,35,1,0 +2013,5,29,3,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-11,0,1256,-29,0,0 +2013,5,28,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,20,1,2105,8,0,0 +2013,5,21,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1635,0,,1655,0,1,1 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1110,-2,0,1425,-14,0,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-4,0,1343,4,0,0 +2013,4,17,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1024,-3,0,1311,-28,0,0 +2013,4,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-2,0,1731,-8,0,0 +2013,5,26,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1250,0,0,1621,-5,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,925,30,1,1105,39,1,0 +2013,5,13,1,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-4,0,1655,-17,0,0 +2013,4,7,7,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,2,0,2300,14,0,0 +2013,5,22,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,21,1,1108,14,0,0 +2013,9,15,7,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1252,15,1,1525,11,0,0 +2013,8,24,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,8,0,809,-1,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1607,-3,0,1716,-32,0,0 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,727,-4,0,902,-14,0,0 +2013,5,3,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-8,0,2111,-7,0,0 +2013,9,5,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,-6,0,1316,-14,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1135,52,1,1352,22,1,0 +2013,4,28,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,29,1,2109,27,1,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,-2,0,1050,21,1,0 +2013,9,19,4,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1500,224,1,1635,223,1,0 +2013,9,7,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-6,0,627,-16,0,0 +2013,4,23,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1703,-7,0,1834,-7,0,0 +2013,10,4,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,8,0,604,20,1,0 +2013,8,28,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,844,-9,0,1040,-6,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,-1,0,28,29,1,0 +2013,4,2,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1015,-1,0,1300,-5,0,0 +2013,8,22,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1335,169,1,1505,158,1,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-6,0,1040,-10,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,24,1,1326,14,0,0 +2013,4,24,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,635,-6,0,810,-14,0,0 +2013,9,17,2,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1341,-6,0,1449,-11,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,8,0,2035,14,0,0 +2013,8,12,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1844,29,1,2015,54,1,0 +2013,4,10,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1540,0,,1735,0,1,1 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1810,-5,0,1833,-2,0,0 +2013,5,25,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,2007,5,0,0 +2013,4,26,5,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2320,1,0,750,13,0,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1932,-6,0,2120,-21,0,0 +2013,9,13,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,64,1,1010,55,1,0 +2013,9,30,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,731,-2,0,847,-26,0,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,813,-4,0,1020,-33,0,0 +2013,7,10,3,9E,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1710,21,1,1850,16,1,0 +2013,7,5,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1700,5,0,2012,8,0,0 +2013,5,23,4,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1355,-5,0,1535,-19,0,0 +2013,6,18,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,11,0,1900,0,0,0 +2013,7,27,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,43,1,1849,58,1,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,9,0,21,0,0,0 +2013,4,30,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1329,-5,0,1506,-22,0,0 +2013,4,21,7,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,1,0,1858,-23,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,1,0,2210,-9,0,0 +2013,6,28,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,23,1,2215,35,1,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,51,1,2135,46,1,0 +2013,6,21,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,835,0,0,930,-3,0,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,700,-1,0,825,-12,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-1,0,1827,-7,0,0 +2013,8,12,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1810,12,0,2021,9,0,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-6,0,1445,-16,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,831,-6,0,1132,-11,0,0 +2013,7,11,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-6,0,1645,-6,0,0 +2013,4,2,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,320,1,1847,293,1,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,-1,0,532,-12,0,0 +2013,10,13,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1805,54,1,2015,61,1,0 +2013,6,26,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,55,1,1257,45,1,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1933,64,1,2245,56,1,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1500,2,0,1620,-5,0,0 +2013,10,17,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1159,8,0,1436,1,0,0 +2013,10,3,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,712,-2,0,1047,-5,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,-4,0,2009,10,0,0 +2013,8,23,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-7,0,1309,-11,0,0 +2013,9,30,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1955,-3,0,2125,-15,0,0 +2013,6,2,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1905,54,1,2250,32,1,0 +2013,4,8,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2045,0,0,2108,-4,0,0 +2013,10,3,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-4,0,1355,-11,0,0 +2013,7,6,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2146,-3,0,2204,-18,0,0 +2013,7,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,715,-1,0,820,3,0,0 +2013,6,10,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,6,0,1157,3,0,0 +2013,6,13,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,1015,5,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1320,0,0,1800,-20,0,0 +2013,8,9,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1250,-6,0,1709,-11,0,0 +2013,4,1,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1955,-3,0,2140,-9,0,0 +2013,5,21,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1701,-12,0,1919,-23,0,0 +2013,8,11,7,9E,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,41,1,957,27,1,0 +2013,4,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1525,64,1,1810,79,1,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1055,1,0,1200,-7,0,0 +2013,6,4,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,-4,0,1648,-11,0,0 +2013,6,10,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,4,0,1350,-10,0,0 +2013,6,2,7,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1521,10,0,1706,-8,0,0 +2013,10,17,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,12,0,1150,11,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,850,-7,0,1543,-20,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,17,1,5,5,0,0 +2013,6,28,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1410,-3,0,1545,-16,0,0 +2013,8,7,3,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-9,0,628,-22,0,0 +2013,5,12,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,59,-7,0,600,-26,0,0 +2013,9,12,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-5,0,729,-10,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,9,0,1307,34,1,0 +2013,7,23,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,25,1,2310,33,1,0 +2013,5,19,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1155,159,1,1715,166,1,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1907,2,0,2134,-42,0,0 +2013,6,18,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-2,0,936,3,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,58,1,110,71,1,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1405,70,1,2130,73,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1105,-3,0,1224,-18,0,0 +2013,7,15,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1249,8,0,1429,-2,0,0 +2013,5,16,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1317,-11,0,1457,-15,0,0 +2013,5,24,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-8,0,1005,-7,0,0 +2013,6,24,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,815,-5,0,930,10,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1310,66,1,1625,93,1,0 +2013,9,7,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1434,-1,0,1609,-5,0,0 +2013,8,15,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,702,-6,0,1045,-18,0,0 +2013,7,10,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,34,1,945,17,1,0 +2013,5,3,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-5,0,1421,-18,0,0 +2013,9,23,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1735,21,1,1928,18,1,0 +2013,6,26,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1150,9,0,1810,2,0,0 +2013,7,14,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-7,0,1634,13,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,805,0,0,925,9,0,0 +2013,10,12,6,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1125,7,0,1325,6,0,0 +2013,9,9,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-5,0,1435,-6,0,0 +2013,10,29,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,-3,0,1415,-10,0,0 +2013,8,7,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1045,-2,0,1200,2,0,0 +2013,8,8,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,-3,0,1915,-10,0,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-4,0,945,-9,0,0 +2013,4,12,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1145,-1,0,1240,-12,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1010,4,0,1244,9,0,0 +2013,4,13,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,2,0,1702,32,1,0 +2013,7,30,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,1028,5,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1702,12,0,1837,0,0,0 +2013,9,12,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,-10,0,2050,-17,0,0 +2013,5,9,4,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2135,-11,0,2343,-2,0,0 +2013,9,22,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-6,0,910,-24,0,0 +2013,10,3,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1327,14,0,2127,14,0,0 +2013,5,28,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1046,-1,0,1319,-1,0,0 +2013,5,21,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-5,0,809,-3,0,0 +2013,8,1,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,37,1,2115,24,1,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,12,0,2022,-2,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-3,0,850,1,0,0 +2013,5,11,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,840,-5,0,1135,10,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1600,-4,0,1730,-10,0,0 +2013,5,6,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,955,-10,0,1244,-30,0,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,834,-4,0,936,-16,0,0 +2013,10,21,1,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,600,19,1,845,16,1,0 +2013,7,22,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,314,1,1800,279,1,0 +2013,5,28,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-1,0,910,2,0,0 +2013,6,22,6,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1845,7,0,15,5,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-2,0,1817,-8,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,2059,-4,0,8,-9,0,0 +2013,6,2,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,24,1,1705,2,0,0 +2013,9,28,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1927,-5,0,2047,-13,0,0 +2013,10,14,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-3,0,2051,-3,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,35,1,100,23,1,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1842,-6,0,1949,-13,0,0 +2013,6,8,6,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1545,-1,0,2108,-3,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,645,1,0,810,8,0,0 +2013,9,18,3,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,715,-5,0,750,-15,0,0 +2013,9,2,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-3,0,1439,-19,0,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1446,-1,0,1714,-45,0,0 +2013,6,18,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,7,0,2110,10,0,0 +2013,6,2,7,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1024,6,0,1229,0,0,0 +2013,8,14,3,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-7,0,1923,-5,0,0 +2013,8,5,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,910,-15,0,0 +2013,7,22,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,48,1,1440,41,1,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,-4,0,2042,-26,0,0 +2013,4,3,3,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-1,0,1815,-6,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-5,0,1145,-3,0,0 +2013,6,14,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,845,-1,0,951,-3,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1135,1,0,1355,16,1,0 +2013,4,27,6,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,2,0,1630,-20,0,0 +2013,5,19,7,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1758,-7,0,2110,-11,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1955,3,0,2125,15,1,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,930,51,1,1030,32,1,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,6,0,2200,6,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1435,0,0,1910,-11,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1510,-6,0,1846,11,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,-4,0,1345,-3,0,0 +2013,9,27,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-8,0,935,-36,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1840,18,1,2210,12,0,0 +2013,10,21,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1300,9,0,1622,-11,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1540,-1,0,1845,-7,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2007,0,0,2121,49,1,0 +2013,10,19,6,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1610,-4,0,1749,-16,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,835,11,0,1100,2,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2038,-4,0,2200,-14,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,635,-10,0,956,-18,0,0 +2013,10,5,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1255,11,0,1514,-2,0,0 +2013,5,28,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,1,0,1330,-6,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,0,,2150,0,1,1 +2013,7,12,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-1,0,805,-3,0,0 +2013,9,22,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,750,6,0,830,1,0,0 +2013,6,4,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,0,0,1549,-4,0,0 +2013,9,9,1,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1518,-1,0,1809,-5,0,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1145,-2,0,1800,8,0,0 +2013,8,21,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1249,11,0,1347,-3,0,0 +2013,5,10,5,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-4,0,1602,-5,0,0 +2013,8,8,4,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1830,82,1,2005,144,1,0 +2013,8,26,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,2,0,2230,-51,0,0 +2013,6,4,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1805,1,0,1905,-4,0,0 +2013,6,15,6,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1034,-2,0,1226,8,0,0 +2013,4,27,6,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,850,5,0,1115,7,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1045,-7,0,1416,-17,0,0 +2013,7,17,3,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,91,1,2110,70,1,0 +2013,4,21,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-7,0,1719,-20,0,0 +2013,9,9,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,720,-4,0,840,-13,0,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,551,-1,0,700,-6,0,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1630,15,1,1745,4,0,0 +2013,9,18,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1805,4,0,2120,-30,0,0 +2013,8,2,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,0,0,813,16,1,0 +2013,4,13,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,8,0,926,-8,0,0 +2013,4,7,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,-5,0,940,-23,0,0 +2013,7,23,2,OO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-7,0,1620,-21,0,0 +2013,8,4,7,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-4,0,1600,-24,0,0 +2013,5,9,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,930,-4,0,1220,-13,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1930,9,0,2150,30,1,0 +2013,9,6,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2140,14,0,2334,-4,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,3,0,1135,-17,0,0 +2013,4,16,2,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1000,-7,0,1150,-6,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1217,5,0,1248,-5,0,0 +2013,7,29,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,6,0,2215,7,0,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1305,-1,0,1430,-6,0,0 +2013,7,26,5,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1120,29,1,1715,19,1,0 +2013,6,17,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,7,0,805,3,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2045,-1,0,5,-21,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,12,0,1046,-1,0,0 +2013,8,11,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,61,1,1845,58,1,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1120,-4,0,1247,-35,0,0 +2013,8,3,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1300,13,0,1525,6,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,910,-5,0,1044,-12,0,0 +2013,10,23,3,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-9,0,920,-8,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,27,1,1945,0,0,0 +2013,9,26,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-8,0,1255,-13,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,920,-1,0,1500,-13,0,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,915,0,0,1510,-2,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1022,-3,0,1210,-8,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1255,19,1,1355,8,0,0 +2013,5,2,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2005,1,0,2147,-3,0,0 +2013,5,12,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-5,0,1210,-12,0,0 +2013,8,30,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,641,-3,0,955,-29,0,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-4,0,1322,-12,0,0 +2013,6,7,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1758,27,1,1927,79,1,0 +2013,5,2,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,955,15,1,0 +2013,7,11,4,EV,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,227,1,1322,221,1,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1331,11,0,1724,17,1,0 +2013,9,17,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,-3,0,1925,-2,0,0 +2013,5,13,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1615,15,1,1752,-24,0,0 +2013,8,21,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1740,27,1,1850,26,1,0 +2013,10,26,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2015,-3,0,2320,-16,0,0 +2013,7,5,5,EV,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1858,-9,0,2038,-12,0,0 +2013,5,22,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,600,3,0,1334,15,1,0 +2013,5,16,4,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1100,17,1,1547,5,0,0 +2013,7,11,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,-6,0,1813,-26,0,0 +2013,10,11,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1053,50,1,1416,84,1,0 +2013,8,11,7,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,142,1,15,126,1,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1420,-2,0,1555,-6,0,0 +2013,5,28,2,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,59,1,1955,25,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1432,-3,0,1559,-13,0,0 +2013,8,8,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,33,1,828,31,1,0 +2013,9,23,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,838,3,0,1444,-30,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1050,0,0,1340,-2,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,-2,0,1810,-17,0,0 +2013,7,11,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,749,-6,0,1041,-14,0,0 +2013,4,3,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1430,-4,0,1540,-9,0,0 +2013,10,6,7,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1929,99,1,2100,91,1,0 +2013,8,3,6,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1729,1,0,2049,-6,0,0 +2013,4,17,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1311,2,0,1402,-8,0,0 +2013,5,29,3,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1300,-4,0,1603,-15,0,0 +2013,5,17,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-6,0,1247,-7,0,0 +2013,5,29,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1802,0,0,2013,3,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,-6,0,1506,-20,0,0 +2013,5,1,3,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1145,-6,0,1628,-18,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,11,0,1155,11,0,0 +2013,6,30,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1510,-2,0,1621,-9,0,0 +2013,4,10,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1945,23,1,2035,22,1,0 +2013,6,11,2,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-8,0,1540,-7,0,0 +2013,4,14,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1340,-2,0,1455,-15,0,0 +2013,7,3,3,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,-7,0,1515,7,0,0 +2013,4,24,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2201,-8,0,2315,-25,0,0 +2013,4,20,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1805,-6,0,2201,-21,0,0 +2013,10,3,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-6,0,1801,-18,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-6,0,2124,-6,0,0 +2013,5,28,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1245,14,0,1400,1,0,0 +2013,10,29,2,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1417,-11,0,1638,-7,0,0 +2013,9,27,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2155,174,1,2315,169,1,0 +2013,8,25,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,910,-2,0,1225,-4,0,0 +2013,8,20,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,830,-2,0,950,7,0,0 +2013,7,16,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,0,0,742,-21,0,0 +2013,7,3,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,32,1,2152,29,1,0 +2013,8,1,4,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1720,21,1,1905,108,1,0 +2013,6,13,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,845,-5,0,950,-11,0,0 +2013,4,8,1,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1331,2,0,1538,2,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,920,-1,0,1350,-6,0,0 +2013,10,15,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-8,0,1605,-10,0,0 +2013,10,4,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2246,21,1,15,14,0,0 +2013,5,13,1,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,7,0,1940,-3,0,0 +2013,9,3,2,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1906,-17,0,2014,-26,0,0 +2013,6,3,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-5,0,1951,9,0,0 +2013,9,3,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1204,-10,0,1805,-3,0,0 +2013,4,2,2,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,645,15,1,1235,3,0,0 +2013,4,10,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,6,0,940,-4,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,0,,1109,0,1,1 +2013,8,12,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1301,2,0,1419,7,0,0 +2013,5,30,4,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1120,-11,0,1408,-13,0,0 +2013,4,19,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,1003,21,1,0 +2013,10,20,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1615,-2,0,1835,-11,0,0 +2013,4,15,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,810,11,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1345,1,0,1610,-10,0,0 +2013,10,31,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,-8,0,2025,-17,0,0 +2013,5,23,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,938,37,1,1040,46,1,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2125,-3,0,2335,-8,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1758,-1,0,2044,-22,0,0 +2013,4,21,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1625,11,0,1915,22,1,0 +2013,8,19,1,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1155,-12,0,2019,4,0,0 +2013,9,4,3,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-2,0,1904,-26,0,0 +2013,9,12,4,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1214,129,1,1300,125,1,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-9,0,1421,-17,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2359,-2,0,655,-3,0,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1814,3,0,2003,-30,0,0 +2013,5,2,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,-2,0,824,-10,0,0 +2013,4,28,7,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-4,0,1026,5,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-1,0,2104,-3,0,0 +2013,8,31,6,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1345,22,1,1555,15,1,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1240,0,0,1350,-9,0,0 +2013,10,27,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1516,-4,0,2159,1,0,0 +2013,5,3,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1755,-8,0,2030,-38,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,8,0,2030,-4,0,0 +2013,7,14,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,1,0,1400,-2,0,0 +2013,7,2,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,957,-2,0,1038,-12,0,0 +2013,9,10,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,-6,0,1630,-12,0,0 +2013,8,14,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-10,0,1425,-25,0,0 +2013,9,19,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1217,-3,0,1320,-2,0,0 +2013,9,16,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1035,-10,0,1353,-9,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1520,4,0,1640,-3,0,0 +2013,10,17,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,2055,5,0,2225,-12,0,0 +2013,7,11,4,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2350,14,0,800,15,1,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1310,2,0,1504,-6,0,0 +2013,4,8,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,722,-10,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2030,2,0,2217,-16,0,0 +2013,10,15,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1530,14,0,1650,-4,0,0 +2013,7,5,5,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1258,-2,0,1526,-1,0,0 +2013,10,22,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1406,5,0,1729,-6,0,0 +2013,8,9,5,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2235,126,1,44,100,1,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,0,0,2000,2,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1042,63,1,1157,58,1,0 +2013,8,21,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1905,-5,0,2015,-25,0,0 +2013,10,5,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,920,-7,0,1025,-14,0,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-2,0,1801,13,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,1,0,1506,-9,0,0 +2013,4,7,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,46,-6,0,824,-15,0,0 +2013,6,13,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,66,1,1008,58,1,0 +2013,5,2,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,2030,-1,0,2210,-4,0,0 +2013,4,29,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1245,9,0,1459,10,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,855,4,0,1445,18,1,0 +2013,4,25,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1640,-3,0,1925,3,0,0 +2013,7,23,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,24,1,1815,12,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1606,-4,0,1939,-17,0,0 +2013,4,20,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-7,0,1216,-23,0,0 +2013,5,17,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,940,-11,0,1040,-21,0,0 +2013,9,11,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2040,9,0,2055,4,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,805,0,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1940,2,0,2325,-5,0,0 +2013,5,18,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1020,9,0,1340,5,0,0 +2013,4,21,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,-1,0,1320,6,0,0 +2013,8,9,5,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2130,-10,0,2250,-22,0,0 +2013,10,2,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,1,0,1440,-15,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1654,-13,0,1934,8,0,0 +2013,10,7,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1537,-5,0,0 +2013,8,5,1,EV,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,814,-3,0,1115,-15,0,0 +2013,6,2,7,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,2020,-4,0,2300,-9,0,0 +2013,5,19,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1105,-1,0,1155,-1,0,0 +2013,9,6,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1800,101,1,1918,90,1,0 +2013,8,13,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,2000,15,1,2101,9,0,0 +2013,6,18,2,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1640,140,1,1813,138,1,0 +2013,9,19,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1925,-4,0,2159,1,0,0 +2013,5,6,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-3,0,831,-9,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,720,-2,0,1157,-13,0,0 +2013,7,29,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,1,0,2105,1,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1437,-5,0,1715,-6,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1735,22,1,45,25,1,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,650,10,0,822,9,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1805,86,1,1915,99,1,0 +2013,6,17,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,144,1,2105,152,1,0 +2013,7,13,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-7,0,2055,-17,0,0 +2013,6,14,5,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,10,0,2105,0,0,0 +2013,8,22,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-7,0,2034,-8,0,0 +2013,5,2,4,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,0,0,720,25,1,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,-4,0,1725,-14,0,0 +2013,6,20,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,900,-16,0,0 +2013,8,15,4,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,18,1,2020,3,0,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-6,0,1335,-6,0,0 +2013,9,16,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,635,0,0,1230,-12,0,0 +2013,4,5,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,45,54,1,849,40,1,0 +2013,9,8,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,716,-8,0,1015,-9,0,0 +2013,10,21,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1237,0,0,1535,8,0,0 +2013,8,14,3,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,110,1,2200,108,1,0 +2013,8,31,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-2,0,1633,-11,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,9,0,1830,14,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-1,0,1828,-8,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1540,13,0,1800,8,0,0 +2013,10,28,1,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-1,0,1120,8,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1455,-7,0,2105,-28,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,845,40,1,1205,45,1,0 +2013,10,3,4,WN,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-5,0,1445,-11,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,0,0,1440,2,0,0 +2013,8,8,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,705,-3,0,800,11,0,0 +2013,9,3,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,1,0,1345,13,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,-4,0,1527,-7,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2010,2,0,2145,-4,0,0 +2013,8,24,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,0,0,1759,9,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1946,91,1,2139,75,1,0 +2013,6,4,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-6,0,918,-17,0,0 +2013,4,27,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,753,-12,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1640,17,1,1740,16,1,0 +2013,7,9,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-1,0,1020,-12,0,0 +2013,4,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1325,-1,0,1435,-3,0,0 +2013,9,23,1,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,915,-7,0,1005,6,0,0 +2013,7,27,6,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1855,51,1,2035,44,1,0 +2013,6,11,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,109,1,1525,82,1,0 +2013,6,30,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,6,0,1255,9,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1220,-3,0,1415,-15,0,0 +2013,10,6,7,EV,11618,Newark Liberty International,Newark,NJ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,-8,0,940,0,0,0 +2013,6,13,4,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-4,0,1046,-5,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2007,35,1,2215,35,1,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,8,0,2015,20,1,0 +2013,4,29,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,1,0,1205,-3,0,0 +2013,7,1,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1350,-10,0,1646,-33,0,0 +2013,7,30,2,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,48,1,1710,45,1,0 +2013,9,1,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-4,0,1301,11,0,0 +2013,7,21,7,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,800,-8,0,1140,-9,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,930,2,0,1130,-2,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,97,1,2305,93,1,0 +2013,9,5,4,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2005,8,0,2016,6,0,0 +2013,6,18,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,12,0,1838,97,1,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,700,-2,0,805,-9,0,0 +2013,6,10,1,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1855,47,1,2044,46,1,0 +2013,10,23,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1225,112,1,1457,105,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1925,44,1,2130,21,1,0 +2013,10,27,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,15,1,1420,8,0,0 +2013,9,24,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1345,-5,0,1505,-13,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1930,2,0,2205,-19,0,0 +2013,6,17,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,0,,1749,0,1,1 +2013,5,16,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1310,10,0,1620,9,0,0 +2013,8,21,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2012,1,0,2142,-3,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,14,0,1850,10,0,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-6,0,1031,-13,0,0 +2013,9,10,2,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,715,-1,0,725,-4,0,0 +2013,7,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-3,0,1706,-5,0,0 +2013,6,2,7,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1116,-7,0,1345,-22,0,0 +2013,10,29,2,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2222,-6,0,611,-47,0,0 +2013,9,18,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,945,-5,0,1220,7,0,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-8,0,1715,-16,0,0 +2013,5,8,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1815,-15,0,1945,-12,0,0 +2013,8,3,6,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1345,3,0,1625,-8,0,0 +2013,5,9,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,725,-8,0,1030,0,0,0 +2013,4,1,1,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1935,-4,0,2157,-13,0,0 +2013,4,16,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1058,-13,0,1121,-23,0,0 +2013,5,22,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-4,0,1840,-6,0,0 +2013,7,3,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,0,0,1112,-9,0,0 +2013,5,9,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1415,82,1,1656,78,1,0 +2013,5,27,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,-10,0,609,-6,0,0 +2013,4,24,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1630,-1,0,45,-11,0,0 +2013,5,3,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-1,0,1125,-7,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-5,0,1847,8,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2005,-5,0,2101,-14,0,0 +2013,8,14,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1226,-6,0,1425,0,0,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1755,2,0,1947,-15,0,0 +2013,4,26,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,17,1,949,59,1,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1300,2,0,1651,-7,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2135,41,1,2230,47,1,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,800,-1,0,1035,-2,0,0 +2013,8,27,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1130,-3,0,0 +2013,6,2,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1705,-2,0,1835,-7,0,0 +2013,5,4,6,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,755,3,0,925,-7,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1611,42,1,1629,41,1,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,5,0,2330,-4,0,0 +2013,7,22,1,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,41,1,2019,23,1,0 +2013,8,15,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1840,-5,0,2024,-1,0,0 +2013,5,10,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1350,0,0,1500,-1,0,0 +2013,10,12,6,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1646,-2,0,1730,-7,0,0 +2013,5,11,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1055,-1,0,1215,-9,0,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,820,5,0,1215,0,0,0 +2013,9,26,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1953,-6,0,2016,-14,0,0 +2013,4,4,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,1501,-5,0,0 +2013,8,1,4,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,5,0,2130,7,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1230,-6,0,1605,-23,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1202,-4,0,1340,1,0,0 +2013,5,22,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,2,0,1018,0,0,0 +2013,6,24,1,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1945,52,1,2115,43,1,0 +2013,10,18,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1020,-6,0,1211,-3,0,0 +2013,6,9,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,51,1,1521,49,1,0 +2013,7,14,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1900,6,0,2130,11,0,0 +2013,7,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1955,18,1,2225,18,1,0 +2013,8,29,4,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1848,2,0,2100,3,0,0 +2013,6,17,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1003,43,1,1330,37,1,0 +2013,10,30,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1200,-6,0,1305,-6,0,0 +2013,5,26,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,2,0,957,2,0,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2100,12,0,2243,3,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,0,0,1435,-10,0,0 +2013,5,9,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1925,-3,0,2025,-7,0,0 +2013,5,5,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-1,0,1807,-2,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,0,0,1005,6,0,0 +2013,8,28,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1722,-5,0,1954,-16,0,0 +2013,7,11,4,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,925,25,1,1750,30,1,0 +2013,7,4,4,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,623,-7,0,928,-28,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1935,-12,0,0 +2013,6,30,7,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2145,-2,0,540,-11,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2110,37,1,2230,40,1,0 +2013,6,16,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,3,0,757,-11,0,0 +2013,6,19,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,709,4,0,1100,-10,0,0 +2013,6,22,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1730,11,0,1850,6,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1750,9,0,1840,3,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,-2,0,1431,-25,0,0 +2013,6,19,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,114,28,1,629,13,0,0 +2013,10,5,6,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,630,-9,0,1107,-3,0,0 +2013,4,17,3,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,1030,39,1,1300,38,1,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,2,0,920,-9,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1344,101,1,1601,108,1,0 +2013,9,16,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,35,1,1435,29,1,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1550,133,1,2125,127,1,0 +2013,6,10,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,6,0,708,3,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,0,0,1151,3,0,0 +2013,8,19,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,949,-8,0,1130,14,0,0 +2013,5,19,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1750,7,0,1820,13,0,0 +2013,10,13,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1545,-16,0,1834,4,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1710,-2,0,1959,-19,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,955,-5,0,1154,-12,0,0 +2013,8,15,4,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,0,0,1105,0,0,0 +2013,9,26,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1020,9,0,1200,0,0,0 +2013,6,23,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2213,-2,0,2305,-9,0,0 +2013,9,12,4,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,8,0,1800,16,1,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1515,0,0,1638,12,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-2,0,1035,-8,0,0 +2013,8,6,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1010,-2,0,1140,-6,0,0 +2013,10,17,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-2,0,2203,-18,0,0 +2013,5,28,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2035,0,,2045,0,1,1 +2013,5,18,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1400,-8,0,1516,-23,0,0 +2013,7,1,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-1,0,1428,-7,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-7,0,1135,-4,0,0 +2013,8,19,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1758,0,0,2319,-8,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,2155,-6,0,2335,-9,0,0 +2013,10,1,2,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1205,0,0,1400,-26,0,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2000,-4,0,2130,9,0,0 +2013,7,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1240,34,1,1355,32,1,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,0,0,2215,-7,0,0 +2013,5,13,1,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,630,-3,0,1454,67,1,0 +2013,5,14,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-7,0,1712,-20,0,0 +2013,8,1,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-5,0,1030,15,1,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1210,33,1,1350,33,1,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2100,65,1,2305,54,1,0 +2013,9,2,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1510,-5,0,1641,-2,0,0 +2013,10,30,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,6,0,1445,31,1,0 +2013,10,13,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1735,-4,0,1855,-13,0,0 +2013,4,2,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-7,0,2017,1,0,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,546,149,1,905,144,1,0 +2013,7,21,7,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1405,-5,0,1713,-7,0,0 +2013,7,13,6,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,914,-4,0,0 +2013,6,18,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,545,4,0,705,-5,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1325,1,0,1650,-10,0,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1950,-7,0,2128,-6,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2140,65,1,2315,52,1,0 +2013,7,3,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1239,-4,0,1540,-7,0,0 +2013,4,30,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2014,-11,0,2225,-24,0,0 +2013,8,3,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1053,-3,0,1202,-3,0,0 +2013,7,20,6,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,7,0,1855,-12,0,0 +2013,5,1,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,735,-1,0,824,-6,0,0 +2013,8,14,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,14,0,1421,16,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1215,1,0,1334,-9,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1020,-3,0,1635,-3,0,0 +2013,5,6,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2200,-5,0,5,1,0,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,53,1,1855,48,1,0 +2013,9,11,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,914,-5,0,1020,-5,0,0 +2013,9,14,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1040,10,0,1145,5,0,0 +2013,10,13,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1809,-16,0,1939,-11,0,0 +2013,5,20,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2015,18,1,2130,18,1,0 +2013,8,30,5,OO,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,806,-1,0,920,2,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1219,36,1,1728,38,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,5,0,935,0,0,0 +2013,10,25,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,3,0,1230,15,1,0 +2013,9,1,7,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-6,0,902,-1,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,845,0,0,953,16,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1605,16,1,1740,35,1,0 +2013,6,26,3,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,749,0,,1005,0,1,1 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-2,0,1016,-4,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,825,-1,0,1010,6,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,27,1,1805,14,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1245,-2,0,1450,-2,0,0 +2013,8,16,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,37,1,619,37,1,0 +2013,6,6,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,163,1,1447,158,1,0 +2013,9,14,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1730,-2,0,1905,-9,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,3,0,2200,8,0,0 +2013,5,5,7,EV,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,11,0,1535,-1,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-6,0,1000,-9,0,0 +2013,4,1,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,545,-5,0,707,-6,0,0 +2013,5,13,1,OO,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1512,6,0,1659,5,0,0 +2013,6,15,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-7,0,702,-22,0,0 +2013,10,19,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,900,-5,0,1700,-21,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1839,18,1,2307,42,1,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1539,37,1,1806,4,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-2,0,1923,-17,0,0 +2013,8,8,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,8,0,1055,17,1,0 +2013,8,4,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1540,0,0,1858,0,0,0 +2013,7,13,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1821,32,1,2219,56,1,0 +2013,5,16,4,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2150,-8,0,620,-18,0,0 +2013,9,28,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,2,0,2125,-10,0,0 +2013,5,7,2,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2015,-4,0,500,-5,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,830,4,0,1115,8,0,0 +2013,10,12,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1345,-2,0,1700,-17,0,0 +2013,9,7,6,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,840,-4,0,950,-5,0,0 +2013,9,15,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-4,0,2100,-13,0,0 +2013,9,26,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,700,-7,0,930,-15,0,0 +2013,6,18,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,30,1,1100,12,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1245,23,1,1605,35,1,0 +2013,9,30,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1317,-4,0,1505,-17,0,0 +2013,8,5,1,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,-5,0,1438,-11,0,0 +2013,8,16,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2130,-1,0,2359,4,0,0 +2013,5,26,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,942,1,0,1229,-12,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-2,0,2001,-13,0,0 +2013,10,27,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,935,-5,0,1130,3,0,0 +2013,7,13,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,628,-7,0,816,-8,0,0 +2013,5,19,7,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2240,96,1,715,111,1,0 +2013,10,15,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-9,0,817,-6,0,0 +2013,8,19,1,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,810,27,1,1630,44,1,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1945,12,0,2335,-5,0,0 +2013,7,27,6,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1711,-3,0,2039,-24,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1240,1,0,1535,0,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,8,0,2110,3,0,0 +2013,9,4,3,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-3,0,1022,-24,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,3,0,2346,0,0,0 +2013,10,22,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,1,0,2129,-14,0,0 +2013,9,4,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1715,-8,0,1837,-13,0,0 +2013,9,8,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,830,6,0,1550,26,1,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,94,1,1019,88,1,0 +2013,10,12,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1340,0,0,1538,0,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1753,3,0,1906,8,0,0 +2013,5,9,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1805,23,1,1855,28,1,0 +2013,4,24,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1234,-16,0,0 +2013,4,12,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1930,2,0,2010,-6,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,609,22,1,1035,0,0,0 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,20,1,1430,17,1,0 +2013,9,14,6,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,924,-10,0,1156,-17,0,0 +2013,4,13,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1430,-4,0,2221,-25,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-2,0,1838,-7,0,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1825,82,1,2133,93,1,0 +2013,4,5,5,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,645,-1,0,805,2,0,0 +2013,7,1,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,640,-4,0,702,7,0,0 +2013,8,22,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1715,70,1,1840,73,1,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1040,-3,0,1425,5,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1635,2,0,2000,-7,0,0 +2013,8,6,2,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1645,1,0,1935,-9,0,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1650,10,0,1845,17,1,0 +2013,8,13,2,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,-5,0,730,-19,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1356,9,0,1605,2,0,0 +2013,8,7,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1828,41,1,2035,26,1,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,1,0,1155,-12,0,0 +2013,8,10,6,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,59,1,2038,56,1,0 +2013,4,1,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1810,-5,0,1937,-17,0,0 +2013,7,31,3,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,820,-6,0,1043,-16,0,0 +2013,8,4,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1009,-2,0,1307,-20,0,0 +2013,4,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,-6,0,1634,-19,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1540,-5,0,1557,-12,0,0 +2013,7,2,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,640,21,1,805,15,1,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1924,9,0,2049,4,0,0 +2013,10,24,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2002,2,0,2150,14,0,0 +2013,4,28,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1340,8,0,1936,-9,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,748,-2,0,843,10,0,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1015,45,1,1140,37,1,0 +2013,7,30,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1910,40,1,2105,34,1,0 +2013,7,26,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,-1,0,1200,-3,0,0 +2013,7,17,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,20,1,2046,37,1,0 +2013,8,9,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-4,0,1255,-8,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,2,0,1530,-11,0,0 +2013,7,6,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,83,1,1424,98,1,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,-2,0,935,-13,0,0 +2013,9,17,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,0,0,1435,3,0,0 +2013,4,9,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,32,1,1949,12,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1834,-5,0,1959,-17,0,0 +2013,4,20,6,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-3,0,1510,0,0,0 +2013,10,7,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1030,5,0,0 +2013,4,11,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1850,-5,0,2024,3,0,0 +2013,4,12,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1047,8,0,1359,-8,0,0 +2013,7,1,1,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-2,0,704,13,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,0,,2225,0,1,1 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,146,1,1200,161,1,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1615,1,0,2345,-21,0,0 +2013,4,8,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1600,72,1,1615,72,1,0 +2013,10,15,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,-5,0,1730,0,0,0 +2013,5,12,7,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,0,0,2020,-10,0,0 +2013,5,9,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1653,20,1,1840,1,0,0 +2013,8,15,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,10,0,1755,9,0,0 +2013,4,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1850,-1,0,2030,-5,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1836,0,0,2155,82,1,0 +2013,6,20,4,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,4,0,1540,-2,0,0 +2013,9,15,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-1,0,857,-4,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,0,0,1640,-13,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,36,1,1734,35,1,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,110,1,2015,130,1,0 +2013,10,11,5,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,-8,0,2305,1,0,0 +2013,7,26,5,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,-6,0,2138,-2,0,0 +2013,5,1,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-2,0,550,1,0,0 +2013,4,21,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1518,4,0,1632,4,0,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1620,7,0,1935,11,0,0 +2013,5,6,1,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-6,0,1340,-28,0,0 +2013,9,2,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-5,0,1623,-3,0,0 +2013,4,3,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-5,0,1803,-16,0,0 +2013,10,26,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-4,0,1741,-12,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,17,1,1459,1,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,6,0,1540,5,0,0 +2013,8,6,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1548,32,1,1714,27,1,0 +2013,6,20,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1500,-7,0,1646,21,1,0 +2013,4,28,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1300,16,1,1525,12,0,0 +2013,7,13,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2119,29,1,2354,14,0,0 +2013,8,28,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-7,0,954,-13,0,0 +2013,4,21,7,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1152,2,0,1305,7,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,-3,0,1200,1,0,0 +2013,10,16,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-12,0,944,-11,0,0 +2013,5,23,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,935,15,1,1030,5,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-4,0,1605,-6,0,0 +2013,4,13,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1034,4,0,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-1,0,1518,-15,0,0 +2013,5,31,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1040,15,1,1140,-5,0,0 +2013,5,30,4,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1707,-3,0,1850,10,0,0 +2013,10,27,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1419,-5,0,1715,-13,0,0 +2013,6,12,3,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,618,-4,0,740,-9,0,0 +2013,4,17,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,17,1,1415,14,0,0 +2013,9,22,7,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,44,1,1440,32,1,0 +2013,8,13,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1737,-4,0,1836,4,0,0 +2013,7,18,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-10,0,2148,19,1,0 +2013,7,26,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,2,0,1911,-3,0,0 +2013,5,3,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1555,-2,0,1833,-2,0,0 +2013,6,6,4,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-2,0,1106,4,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,710,-4,0,815,-14,0,0 +2013,9,17,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1355,12,0,2000,-9,0,0 +2013,4,5,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-4,0,1100,5,0,0 +2013,9,18,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,710,22,1,820,29,1,0 +2013,5,23,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1715,5,0,1941,21,1,0 +2013,8,2,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2130,-1,0,2255,-4,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,14,0,1430,5,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1815,-2,0,40,-24,0,0 +2013,10,21,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1255,-6,0,1505,-11,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,1,0,1305,-3,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1738,0,0,2016,-19,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-3,0,1547,-12,0,0 +2013,5,12,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-8,0,925,-24,0,0 +2013,10,21,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1405,15,1,1505,7,0,0 +2013,4,1,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,840,-4,0,1150,-2,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,3,0,1735,-5,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,-1,0,2110,-16,0,0 +2013,5,21,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,840,0,0,935,-2,0,0 +2013,6,17,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,0,0,1622,-9,0,0 +2013,8,16,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,700,-7,0,816,-10,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,-7,0,1455,-4,0,0 +2013,6,23,7,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-4,0,1159,-7,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-1,0,1220,-1,0,0 +2013,9,9,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1359,0,0,1654,4,0,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2040,-10,0,2305,-16,0,0 +2013,5,1,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-7,0,759,-18,0,0 +2013,6,29,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,1015,-26,0,0 +2013,4,22,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,98,1,932,104,1,0 +2013,4,13,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,915,-4,0,1649,-9,0,0 +2013,7,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1715,8,0,1840,2,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1340,27,1,1825,16,1,0 +2013,6,17,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,6,0,1005,-1,0,0 +2013,7,27,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,610,-3,0,840,-5,0,0 +2013,4,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,21,1,1610,-5,0,0 +2013,7,20,6,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,1,0,950,-3,0,0 +2013,8,2,5,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,758,-3,0,900,10,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2105,35,1,2225,37,1,0 +2013,5,30,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1202,-3,0,1315,-16,0,0 +2013,5,2,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1030,-6,0,1302,-15,0,0 +2013,6,13,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-5,0,733,5,0,0 +2013,5,27,1,OO,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,610,-4,0,754,-10,0,0 +2013,5,9,4,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,1,0,531,11,0,0 +2013,4,11,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1510,-1,0,1835,-2,0,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,12,0,1445,-2,0,0 +2013,10,2,3,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,700,-10,0,842,-13,0,0 +2013,9,8,7,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-6,0,1524,-5,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1555,4,0,1910,18,1,0 +2013,7,31,3,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,820,0,0,1255,-11,0,0 +2013,10,24,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-5,0,25,-16,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,600,6,0,931,-36,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1700,0,0,1830,-10,0,0 +2013,6,11,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,654,-3,0,812,-6,0,0 +2013,5,19,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,800,-8,0,925,-21,0,0 +2013,7,16,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1638,97,1,1800,106,1,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1320,27,1,1620,39,1,0 +2013,5,28,2,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1844,-9,0,1926,-10,0,0 +2013,8,7,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-3,0,1105,4,0,0 +2013,5,9,4,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,625,131,1,1443,138,1,0 +2013,9,6,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-2,0,1036,-5,0,0 +2013,10,30,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1234,-7,0,1500,-5,0,0 +2013,5,7,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1245,-1,0,1420,-12,0,0 +2013,10,4,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1546,-4,0,1645,16,1,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1654,-4,0,1934,-39,0,0 +2013,7,9,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,-3,0,1831,-4,0,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-6,0,1310,-7,0,0 +2013,10,4,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1300,-5,0,1423,-16,0,0 +2013,10,25,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1355,-4,0,1436,-17,0,0 +2013,4,9,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-6,0,2000,-15,0,0 +2013,7,12,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1012,0,0,1209,11,0,0 +2013,6,15,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,1,0,1648,-6,0,0 +2013,4,3,3,DL,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1856,-6,0,2130,-1,0,0 +2013,8,13,2,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,66,1,2022,108,1,0 +2013,4,12,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,605,-8,0,730,-15,0,0 +2013,10,9,3,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1655,-3,0,1920,-3,0,0 +2013,6,19,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,22,1,2058,2,0,0 +2013,7,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-6,0,1227,-10,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1755,42,1,2115,34,1,0 +2013,5,3,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,-7,0,739,-9,0,0 +2013,9,4,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-4,0,1453,-12,0,0 +2013,5,3,5,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1036,1,0,0 +2013,7,14,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1210,29,1,1320,23,1,0 +2013,10,20,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1855,22,1,2000,40,1,0 +2013,4,6,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1058,-6,0,1407,9,0,0 +2013,10,31,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,-4,0,805,-14,0,0 +2013,7,5,5,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1545,40,1,1755,24,1,0 +2013,10,8,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,0,0,2015,-19,0,0 +2013,5,3,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1815,28,1,2015,7,0,0 +2013,10,2,3,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-11,0,2020,-8,0,0 +2013,7,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,15,1,2017,12,0,0 +2013,6,1,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,655,-3,0,755,-1,0,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,758,-1,0,1553,-8,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-2,0,2345,-8,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1739,32,1,2100,10,0,0 +2013,5,2,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,11,0,1501,28,1,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-6,0,728,8,0,0 +2013,6,7,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1355,37,1,1757,25,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-3,0,1919,-21,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1420,0,0,1614,-4,0,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1450,35,1,1810,52,1,0 +2013,4,30,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1515,-7,0,1755,3,0,0 +2013,9,20,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,835,1,0,1205,8,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2255,44,1,2327,41,1,0 +2013,8,1,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,-3,0,2115,-3,0,0 +2013,4,17,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,748,-11,0,0 +2013,6,22,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,3,0,907,-12,0,0 +2013,5,22,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1518,-4,0,1646,-9,0,0 +2013,5,8,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2015,-3,0,2130,-8,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1501,10,0,1656,13,0,0 +2013,4,9,2,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,2255,-6,0,715,-11,0,0 +2013,9,20,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1835,-3,0,2052,6,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1205,1,0,1610,5,0,0 +2013,7,11,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,705,-3,0,1433,-13,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2205,10,0,2320,-1,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,-1,0,1005,6,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1555,-4,0,1725,-12,0,0 +2013,10,10,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1508,-5,0,1624,-5,0,0 +2013,4,8,1,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1615,0,0,1734,-9,0,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,-6,0,30,4,0,0 +2013,8,22,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1040,5,0,1150,3,0,0 +2013,10,7,1,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,1030,-5,0,1745,-6,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-3,0,1000,-16,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2055,7,0,2205,10,0,0 +2013,5,10,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1455,11,0,1555,-2,0,0 +2013,8,10,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,-5,0,1255,-14,0,0 +2013,6,29,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,850,-6,0,923,-3,0,0 +2013,9,5,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,-4,0,2143,-21,0,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-2,0,1445,-8,0,0 +2013,4,16,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-5,0,735,-16,0,0 +2013,5,3,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-5,0,1926,-9,0,0 +2013,10,13,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2033,-4,0,2155,0,0,0 +2013,5,13,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,21,1,2125,34,1,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,8,0,1936,-10,0,0 +2013,7,22,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1046,12,0,1350,15,1,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,0,0,1314,12,0,0 +2013,10,2,3,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1120,-4,0,0 +2013,7,31,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-3,0,853,-9,0,0 +2013,10,14,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,8,0,904,2,0,0 +2013,5,23,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1735,138,1,1902,129,1,0 +2013,8,20,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1630,-1,0,1750,-7,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1730,-3,0,1936,-5,0,0 +2013,9,30,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,-1,0,2125,-18,0,0 +2013,6,10,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1758,130,1,1933,148,1,0 +2013,8,9,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-11,0,1701,-11,0,0 +2013,9,12,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,0,0,955,-17,0,0 +2013,10,21,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-6,0,1510,-3,0,0 +2013,8,27,2,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,725,-4,0,822,-13,0,0 +2013,9,23,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-4,0,1204,-9,0,0 +2013,10,3,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-6,0,1020,-12,0,0 +2013,6,15,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1510,-5,0,1815,6,0,0 +2013,7,17,3,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1845,6,0,2140,5,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2120,14,0,2300,15,1,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1620,77,1,1923,36,1,0 +2013,7,11,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,715,-5,0,1009,-4,0,0 +2013,9,3,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1140,-5,0,1235,-9,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,20,1,1808,22,1,0 +2013,10,14,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,6,0,1335,4,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1120,1,0,1325,-2,0,0 +2013,6,6,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,700,-4,0,820,-21,0,0 +2013,10,17,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1110,-5,0,1417,-16,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1140,25,1,1337,24,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,950,26,1,1520,33,1,0 +2013,4,15,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-3,0,1202,-5,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,0,0,1827,-17,0,0 +2013,10,15,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1108,-5,0,1541,-30,0,0 +2013,4,25,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,62,1,1755,67,1,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,20,1,2155,11,0,0 +2013,5,1,3,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2011,26,1,2306,4,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1310,6,0,1535,-26,0,0 +2013,5,18,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,852,-1,0,1359,-10,0,0 +2013,7,7,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1820,-2,0,1955,-9,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1830,-5,0,2122,-29,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,60,1,1240,55,1,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-1,0,1145,-8,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,825,-3,0,1000,-12,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1330,-3,0,1645,-7,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,3,0,2217,8,0,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-4,0,959,-16,0,0 +2013,6,25,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1822,93,1,1930,84,1,0 +2013,9,18,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,40,1,1625,26,1,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,-6,0,1338,20,1,0 +2013,4,27,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1714,-5,0,2003,-11,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,956,-4,0,1154,-18,0,0 +2013,8,17,6,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1805,1,0,2029,-13,0,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1505,27,1,1831,11,0,0 +2013,6,8,6,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-2,0,1728,8,0,0 +2013,5,10,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1200,92,1,1420,71,1,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1910,18,1,2233,-6,0,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1110,11,0,1540,-2,0,0 +2013,4,16,2,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,2,0,1836,21,1,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,810,0,0,1109,12,0,0 +2013,7,1,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,3,0,2030,-1,0,0 +2013,5,22,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,63,1,1241,37,1,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-6,0,1325,-17,0,0 +2013,8,8,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,40,1,2029,57,1,0 +2013,8,20,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,4,0,1857,7,0,0 +2013,8,11,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-3,0,1625,-14,0,0 +2013,8,5,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1702,-3,0,1935,-14,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,847,-5,0,1022,-12,0,0 +2013,4,6,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-9,0,950,-16,0,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,3,0,1939,27,1,0 +2013,4,6,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,-3,0,2034,-15,0,0 +2013,8,9,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1557,-3,0,1800,-10,0,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1345,1,0,1545,17,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,31,1,1510,25,1,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1500,-1,0,1730,-10,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,122,1,1758,122,1,0 +2013,9,12,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1320,38,1,1440,32,1,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1624,15,1,1907,10,0,0 +2013,9,1,7,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1200,11,0,1630,-6,0,0 +2013,7,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13244,Memphis International,Memphis,TN,1733,7,0,1900,1,0,0 +2013,10,12,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,50,0,0,620,-15,0,0 +2013,7,19,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,224,1,2135,246,1,0 +2013,6,13,4,WN,10693,Nashville International,Nashville,TN,14747,Seattle/Tacoma International,Seattle,WA,1225,15,1,1510,9,0,0 +2013,5,15,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,3,0,1546,3,0,0 +2013,7,14,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,917,-8,0,1045,-12,0,0 +2013,7,1,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,-8,0,1350,-8,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,955,-8,0,1048,-13,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2225,34,1,9,36,1,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1735,74,1,2235,58,1,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,750,-3,0,1008,-4,0,0 +2013,7,23,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1745,0,,2055,0,1,1 +2013,8,7,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-7,0,1024,-9,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2116,-10,0,2246,-25,0,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,0,0,1145,1,0,0 +2013,7,12,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,0,,1010,0,1,1 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1707,-6,0,2318,-36,0,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1505,18,1,2200,10,0,0 +2013,4,26,5,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,855,17,1,0 +2013,8,16,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,2000,-1,0,2107,-6,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14570,Reno/Tahoe International,Reno,NV,946,-7,0,1131,-13,0,0 +2013,9,21,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-12,0,1215,-28,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1414,-1,0,1514,-16,0,0 +2013,9,17,2,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,7,0,2248,-27,0,0 +2013,4,5,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,710,-4,0,924,-13,0,0 +2013,10,14,1,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1730,-8,0,2041,26,1,0 +2013,6,9,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-7,0,1235,-30,0,0 +2013,9,13,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,910,6,0,1031,1,0,0 +2013,5,29,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,16,1,1305,10,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,-2,0,1206,-7,0,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1901,110,1,2024,97,1,0 +2013,6,22,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,10,0,1520,12,0,0 +2013,4,26,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,-4,0,1900,-15,0,0 +2013,4,2,2,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,840,1,0,1050,-4,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,755,-1,0,900,-11,0,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1450,3,0,1540,-2,0,0 +2013,10,16,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-10,0,1100,-14,0,0 +2013,9,18,3,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1845,-6,0,2135,-7,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1355,1,0,1517,-3,0,0 +2013,5,16,4,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,815,-1,0,941,-1,0,0 +2013,5,21,2,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,1,0,2035,-22,0,0 +2013,7,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,2020,133,1,2214,124,1,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,822,-3,0,940,11,0,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1935,-8,0,2058,-18,0,0 +2013,6,21,5,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,630,37,1,823,63,1,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,13,0,935,5,0,0 +2013,6,20,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2313,2,0,9,-9,0,0 +2013,6,25,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1903,-8,0,0 +2013,7,2,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,106,1,1914,119,1,0 +2013,4,22,1,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,845,-8,0,1036,-16,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2030,-3,0,2340,-10,0,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,600,-2,0,840,-14,0,0 +2013,9,25,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-6,0,1400,-2,0,0 +2013,10,16,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1700,20,1,1829,15,1,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1532,-3,0,1741,-14,0,0 +2013,8,30,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,13,0,1024,6,0,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-1,0,1757,7,0,0 +2013,9,28,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-5,0,807,-14,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,825,-1,0,1140,-8,0,0 +2013,6,30,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2051,0,0,2232,-12,0,0 +2013,4,28,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-6,0,830,6,0,0 +2013,8,21,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1433,-6,0,1813,-5,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1009,-4,0,1329,-14,0,0 +2013,8,21,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1748,-4,0,1949,-5,0,0 +2013,7,26,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-4,0,1315,-6,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1905,81,1,2120,70,1,0 +2013,7,2,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1915,93,1,2224,88,1,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1320,25,1,1440,21,1,0 +2013,7,3,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-8,0,2046,-22,0,0 +2013,6,20,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-6,0,927,-6,0,0 +2013,7,10,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,800,0,0,1005,-4,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,7,0,1658,3,0,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,705,-4,0,1115,-23,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-3,0,2320,-10,0,0 +2013,7,31,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,800,-8,0,1301,-13,0,0 +2013,5,14,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,930,-5,0,1130,-4,0,0 +2013,7,11,4,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1930,-1,0,2125,-20,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,35,1,1810,16,1,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2200,1,0,2305,-6,0,0 +2013,5,15,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-1,0,1549,-9,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1200,-1,0,1427,-26,0,0 +2013,10,19,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1520,15,1,1635,12,0,0 +2013,6,16,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,843,8,0,1249,-1,0,0 +2013,5,15,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1755,1,0,2030,-14,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,1,0,1654,-1,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,635,-3,0,845,-25,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1525,62,1,1815,53,1,0 +2013,4,28,7,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,930,-4,0,1105,-1,0,0 +2013,10,9,3,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1125,3,0,1225,15,1,0 +2013,10,31,4,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-6,0,1033,-17,0,0 +2013,9,30,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,6,0,1405,-22,0,0 +2013,5,13,1,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1010,-2,0,1200,-1,0,0 +2013,8,22,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,0,0,2155,26,1,0 +2013,8,11,7,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-5,0,2106,-16,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,-6,0,1420,47,1,0 +2013,7,17,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,6,0,1358,6,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1040,2,0,1400,3,0,0 +2013,8,1,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,825,-1,0,1105,-10,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,941,142,1,1322,108,1,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,0,0,1542,-14,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,9,0,31,-1,0,0 +2013,9,5,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1940,21,1,2140,29,1,0 +2013,9,6,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,600,-6,0,641,-3,0,0 +2013,4,1,1,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,615,-4,0,827,2,0,0 +2013,7,18,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,6,0,2202,16,1,0 +2013,5,8,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1550,20,1,1655,12,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1500,21,1,2020,26,1,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-5,0,950,-21,0,0 +2013,7,14,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-3,0,1010,-9,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,959,7,0,1129,7,0,0 +2013,5,31,5,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-4,0,1300,3,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1110,-1,0,1550,1,0,0 +2013,6,20,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1850,1,0,2015,-5,0,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1835,-2,0,1945,-5,0,0 +2013,9,17,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1021,-5,0,1315,-8,0,0 +2013,5,13,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,550,-1,0,850,-14,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,705,29,1,1245,7,0,0 +2013,8,19,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,5,0,1825,-7,0,0 +2013,10,31,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,3,0,1805,-10,0,0 +2013,8,25,7,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2122,-2,0,2334,-14,0,0 +2013,7,10,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,639,-5,0,819,-8,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,3,0,910,-1,0,0 +2013,9,12,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,800,0,0,1013,-2,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1628,-3,0,1659,-8,0,0 +2013,7,10,3,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1515,15,1,1650,-7,0,0 +2013,5,3,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1750,88,1,2348,92,1,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,-6,0,345,-28,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1345,-2,0,1700,-12,0,0 +2013,10,26,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1203,-7,0,1450,-4,0,0 +2013,10,17,4,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1015,0,0,1259,-11,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1915,74,1,2340,64,1,0 +2013,10,4,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,8,0,1055,-1,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,1,0,736,-3,0,0 +2013,5,12,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-2,0,1645,-8,0,0 +2013,9,12,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-10,0,2125,9,0,0 +2013,9,13,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1605,17,1,1725,10,0,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,2,0,830,7,0,0 +2013,5,20,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2150,-1,0,542,-2,0,0 +2013,8,20,2,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,810,-5,0,1031,-12,0,0 +2013,7,7,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-7,0,1356,-15,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,1200,16,1,0 +2013,9,13,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,48,1,2013,45,1,0 +2013,8,30,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-5,0,1530,-22,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,800,-4,0,1240,-18,0,0 +2013,9,2,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-2,0,1955,2,0,0 +2013,7,27,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1208,-2,0,1452,-3,0,0 +2013,9,18,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1610,10,0,1625,3,0,0 +2013,7,24,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,710,-21,0,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1505,42,1,1820,37,1,0 +2013,9,9,1,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1210,-3,0,1325,-18,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2035,57,1,2330,42,1,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1659,38,1,1845,24,1,0 +2013,8,12,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,959,6,0,1133,22,1,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1200,2,0,1300,10,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-5,0,2214,5,0,0 +2013,4,1,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1130,-6,0,1421,-14,0,0 +2013,4,2,2,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1820,-2,0,1949,-8,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1030,13,0,1300,0,0,0 +2013,8,20,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1258,-5,0,1509,5,0,0 +2013,5,28,2,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,835,7,0,900,-1,0,0 +2013,4,4,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,11,0,1955,10,0,0 +2013,4,17,3,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1339,-8,0,1550,-16,0,0 +2013,10,7,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1008,-4,0,1305,-11,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2057,1,0,2359,14,0,0 +2013,6,29,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-2,0,1420,-2,0,0 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-4,0,1801,-3,0,0 +2013,8,24,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,806,5,0,1402,-7,0,0 +2013,5,30,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-10,0,749,-8,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,900,-2,0,1033,4,0,0 +2013,10,18,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1240,4,0,1315,0,0,0 +2013,4,29,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1642,2,0,2110,-28,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,27,1,1920,17,1,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-3,0,1551,1,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1300,-4,0,1426,16,1,0 +2013,6,15,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,10,0,2252,-2,0,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-5,0,1844,-10,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,-4,0,830,-5,0,0 +2013,9,22,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1000,-8,0,1120,-16,0,0 +2013,9,15,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,927,-7,0,1017,21,1,0 +2013,4,29,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-4,0,2226,-4,0,0 +2013,7,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1205,-3,0,1322,-8,0,0 +2013,8,20,2,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1500,37,1,2020,39,1,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1105,-8,0,1515,-34,0,0 +2013,4,1,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,1320,1,1045,1301,1,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,1,0,1415,-6,0,0 +2013,8,19,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,950,37,1,1055,43,1,0 +2013,5,27,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,-2,0,1850,-15,0,0 +2013,10,29,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-8,0,2120,-7,0,0 +2013,7,28,7,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1131,55,1,1303,105,1,0 +2013,8,16,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2045,0,0,449,12,0,0 +2013,9,5,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1455,-3,0,1750,67,1,0 +2013,10,26,6,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1930,-10,0,2220,11,0,0 +2013,7,23,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1405,0,0,1510,-7,0,0 +2013,7,20,6,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-3,0,1300,-9,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1740,12,0,2007,8,0,0 +2013,5,3,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1025,-6,0,1125,-13,0,0 +2013,9,28,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1255,-9,0,1706,0,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2105,0,0,2316,-4,0,0 +2013,7,24,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-10,0,922,-14,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-6,0,1434,-1,0,0 +2013,8,13,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,0,0,1345,-20,0,0 +2013,5,8,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1200,8,0,1326,17,1,0 +2013,4,1,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1357,22,1,1613,9,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1015,-3,0,1447,1,0,0 +2013,10,31,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1430,6,0,1742,-15,0,0 +2013,4,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1106,-2,0,1203,-2,0,0 +2013,5,3,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-4,0,704,-15,0,0 +2013,6,1,6,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,9,0,2125,5,0,0 +2013,5,29,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1425,-5,0,1605,-5,0,0 +2013,5,14,2,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,700,-7,0,945,-11,0,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,26,1,1820,39,1,0 +2013,9,16,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,-5,0,1925,-16,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1715,18,1,1840,14,0,0 +2013,7,19,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,-1,0,1755,-24,0,0 +2013,10,17,4,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,810,-7,0,923,-19,0,0 +2013,8,25,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1117,4,0,1713,8,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-5,0,1345,3,0,0 +2013,4,5,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1450,-8,0,2320,-10,0,0 +2013,9,3,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1254,-5,0,1500,-18,0,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-1,0,900,-10,0,0 +2013,7,18,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,42,1,2100,32,1,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2118,1,0,17,-18,0,0 +2013,5,13,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,12,0,1257,13,0,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,-5,0,1040,5,0,0 +2013,7,10,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-1,0,1535,-31,0,0 +2013,4,18,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1103,-12,0,0 +2013,4,24,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1520,-4,0,1830,12,0,0 +2013,10,15,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,2023,-26,0,0 +2013,9,5,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1554,-22,0,0 +2013,6,17,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,138,1,955,165,1,0 +2013,6,29,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,1155,0,0,0 +2013,5,28,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1525,0,0,1620,-11,0,0 +2013,9,5,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,-8,0,2050,-16,0,0 +2013,6,7,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,900,-13,0,0 +2013,7,29,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,2,0,1610,0,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,37,1,2105,17,1,0 +2013,10,2,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,623,-9,0,800,-21,0,0 +2013,8,19,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1025,-1,0,1320,-3,0,0 +2013,4,24,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1951,-5,0,2056,25,1,0 +2013,8,15,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,197,1,1133,203,1,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,727,-4,0,859,-11,0,0 +2013,7,2,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-2,0,1405,-1,0,0 +2013,8,6,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1710,54,1,1945,45,1,0 +2013,7,22,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-1,0,2025,-7,0,0 +2013,10,18,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-5,0,1419,-9,0,0 +2013,8,30,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,4,0,2115,3,0,0 +2013,4,7,7,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1629,-10,0,1800,-12,0,0 +2013,9,30,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-1,0,818,-6,0,0 +2013,9,26,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1016,-7,0,1149,-2,0,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1245,9,0,1812,24,1,0 +2013,9,26,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,608,-3,0,800,-22,0,0 +2013,7,10,3,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-3,0,920,-13,0,0 +2013,4,22,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,-11,0,2125,-31,0,0 +2013,10,10,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,55,1,1633,32,1,0 +2013,8,8,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,545,-2,0,739,-10,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2342,6,0,456,-17,0,0 +2013,7,31,3,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-5,0,1214,-22,0,0 +2013,5,20,1,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,605,-8,0,855,-22,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1850,-3,0,2020,-9,0,0 +2013,5,10,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1900,13,0,2050,4,0,0 +2013,5,27,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-6,0,1353,5,0,0 +2013,9,10,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2010,6,0,2055,-6,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,-2,0,2330,-8,0,0 +2013,10,11,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1035,-3,0,1131,-13,0,0 +2013,4,27,6,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1042,0,0,1205,0,0,0 +2013,6,12,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1824,16,1,2109,12,0,0 +2013,10,8,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,715,-3,0,840,-19,0,0 +2013,4,3,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1950,1,0,2240,-11,0,0 +2013,10,13,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2020,-8,0,2302,-7,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-4,0,1522,0,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,16,1,1816,58,1,0 +2013,4,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1216,-6,0,1704,-20,0,0 +2013,4,8,1,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1328,-2,0,1653,-3,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1145,-5,0,1352,-8,0,0 +2013,10,21,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,615,1,0,740,22,1,0 +2013,4,27,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,830,0,0,1000,5,0,0 +2013,7,30,2,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,-2,0,2115,-15,0,0 +2013,9,11,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1230,-6,0,0 +2013,9,17,2,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-7,0,1255,-15,0,0 +2013,9,1,7,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1815,-1,0,2105,-1,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-4,0,1140,1,0,0 +2013,6,12,3,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1841,-8,0,2019,-26,0,0 +2013,5,5,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1037,1,0,1147,-4,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,850,8,0,1245,-6,0,0 +2013,8,7,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-10,0,740,12,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1127,-2,0,1344,-31,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1101,0,0,1236,-17,0,0 +2013,10,30,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1920,15,1,2130,5,0,0 +2013,8,2,5,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1648,-4,0,1829,-2,0,0 +2013,8,8,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,16,1,1435,10,0,0 +2013,10,2,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,900,-6,0,1216,-27,0,0 +2013,9,14,6,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1750,47,1,2015,54,1,0 +2013,4,12,5,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1150,-7,0,1332,-14,0,0 +2013,9,27,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1935,-5,0,2159,-26,0,0 +2013,7,14,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-7,0,2030,-2,0,0 +2013,10,2,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1150,-2,0,1515,-2,0,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1240,13,0,1352,7,0,0 +2013,9,18,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1434,-14,0,0 +2013,6,30,7,EV,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-4,0,1004,-2,0,0 +2013,8,2,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,-8,0,1832,-1,0,0 +2013,8,21,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1611,3,0,1736,-14,0,0 +2013,10,9,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,733,-2,0,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1235,-4,0,1529,-8,0,0 +2013,5,3,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1240,8,0,1600,13,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,8,0,1025,1,0,0 +2013,8,28,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,-4,0,1158,0,0,0 +2013,7,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,245,1,1715,231,1,0 +2013,10,15,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1320,-3,0,1602,4,0,0 +2013,4,11,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1825,64,1,2115,76,1,0 +2013,8,11,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,1,0,908,-2,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,549,-8,0,702,-11,0,0 +2013,8,31,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1205,6,0,1335,-8,0,0 +2013,6,10,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1950,-14,0,2327,-18,0,0 +2013,9,8,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1752,-4,0,2005,-8,0,0 +2013,5,8,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,-5,0,1340,-23,0,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1750,-6,0,2329,-22,0,0 +2013,8,22,4,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1400,15,1,1616,5,0,0 +2013,4,18,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,4,0,2359,31,1,0 +2013,5,12,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,-10,0,2046,-36,0,0 +2013,5,16,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1755,-2,0,2101,-23,0,0 +2013,5,13,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1836,-2,0,1939,1,0,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2105,10,0,2225,2,0,0 +2013,6,4,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,831,-2,0,1125,-19,0,0 +2013,9,8,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,745,-7,0,915,-18,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1215,17,1,1320,8,0,0 +2013,4,22,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1729,13,0,2030,4,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1540,29,1,2320,30,1,0 +2013,7,8,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,105,1,1550,93,1,0 +2013,4,22,1,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,914,2,0,0 +2013,4,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,915,-7,0,1005,0,0,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,820,-1,0,915,-1,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,40,1,2240,25,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,17,1,2155,33,1,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,905,4,0,1150,-15,0,0 +2013,10,1,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1415,-7,0,1555,-22,0,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1608,-5,0,1706,-10,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2040,-1,0,2303,-4,0,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1620,4,0,1740,-5,0,0 +2013,10,26,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1105,0,0,1305,11,0,0 +2013,6,27,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,0,0,730,-10,0,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2136,7,0,2325,38,1,0 +2013,9,23,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-2,0,635,-11,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,29,1,1630,26,1,0 +2013,5,10,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,9,0,1905,5,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,4,0,1620,5,0,0 +2013,6,9,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,755,-3,0,900,1,0,0 +2013,7,5,5,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,71,1,1722,75,1,0 +2013,8,28,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2100,12,0,2220,5,0,0 +2013,5,17,5,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,2,0,1005,0,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1330,1,0,1440,3,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1016,89,1,1137,77,1,0 +2013,5,26,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,650,-18,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,10,0,1855,43,1,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,-2,0,1022,-6,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1755,244,1,1932,233,1,0 +2013,6,1,6,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1231,31,1,1402,22,1,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,740,-5,0,1045,4,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1548,32,1,1715,20,1,0 +2013,5,21,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,605,-3,0,755,-10,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,-5,0,2240,-1,0,0 +2013,4,23,2,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,828,-12,0,947,-12,0,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1829,-9,0,2009,-16,0,0 +2013,7,23,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,33,1,2045,28,1,0 +2013,6,3,1,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,18,1,2104,33,1,0 +2013,5,20,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1355,23,1,2000,21,1,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1355,21,1,1830,45,1,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2305,-3,0,2359,-18,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1746,-1,0,1938,-32,0,0 +2013,8,13,2,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,4,0,604,7,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1001,6,0,1541,-12,0,0 +2013,6,12,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1500,-1,0,2330,-2,0,0 +2013,9,18,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,111,1,1935,100,1,0 +2013,10,9,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1521,-5,0,1555,-6,0,0 +2013,5,24,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1653,2,0,1840,21,1,0 +2013,6,15,6,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,28,1,1630,11,0,0 +2013,4,5,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,750,17,1,902,21,1,0 +2013,7,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1405,-10,0,1515,-4,0,0 +2013,7,13,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1615,17,1,1845,0,0,0 +2013,8,28,3,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,-2,0,609,-6,0,0 +2013,8,22,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1657,16,1,1744,22,1,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-5,0,1849,-5,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2145,-7,0,2221,-23,0,0 +2013,4,5,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,25,3,0,758,10,0,0 +2013,6,3,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,640,-2,0,710,-2,0,0 +2013,5,21,2,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1816,-4,0,2100,-6,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,8,0,1850,-1,0,0 +2013,7,8,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-4,0,1920,10,0,0 +2013,6,13,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,99,1,1006,129,1,0 +2013,5,20,1,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1541,-2,0,1620,-3,0,0 +2013,7,9,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,1,0,1315,-7,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1317,182,1,1610,188,1,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,7,0,2040,-5,0,0 +2013,9,11,3,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-8,0,1040,-25,0,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,4,0,1545,-9,0,0 +2013,7,16,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,-2,0,1905,-4,0,0 +2013,9,14,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1200,-2,0,1515,-15,0,0 +2013,10,30,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,930,-1,0,1200,8,0,0 +2013,5,14,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1449,88,1,1623,82,1,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,6,0,736,-23,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1934,-3,0,2058,-5,0,0 +2013,6,23,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1720,17,1,1825,4,0,0 +2013,7,1,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,940,-2,0,1100,-4,0,0 +2013,9,5,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1810,-8,0,2027,-26,0,0 +2013,4,17,3,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1830,-7,0,2006,0,0,0 +2013,6,2,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1615,-1,0,1759,2,0,0 +2013,7,29,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-2,0,930,3,0,0 +2013,6,28,5,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1710,-2,0,1826,2,0,0 +2013,6,18,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,847,-2,0,933,-1,0,0 +2013,6,19,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,640,10,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1315,5,0,1500,-6,0,0 +2013,5,28,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,3,0,2047,8,0,0 +2013,10,6,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1009,-3,0,1258,-1,0,0 +2013,7,28,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1237,53,1,1328,57,1,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1237,0,0,1351,-8,0,0 +2013,5,14,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1110,10,0,1705,13,0,0 +2013,6,20,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,174,1,1906,163,1,0 +2013,5,19,7,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1200,56,1,1545,61,1,0 +2013,4,6,6,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,2,0,1025,-2,0,0 +2013,7,13,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,-11,0,2340,-5,0,0 +2013,5,3,5,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,38,1,1500,36,1,0 +2013,10,21,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1805,5,0,1930,-4,0,0 +2013,4,23,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-6,0,1208,-12,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1400,-1,0,1653,10,0,0 +2013,10,9,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,27,1,925,28,1,0 +2013,10,14,1,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,730,21,1,1103,9,0,0 +2013,8,28,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,6,0,930,7,0,0 +2013,5,29,3,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,2,0,1555,7,0,0 +2013,7,14,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,801,-3,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1347,0,0,1545,-17,0,0 +2013,6,24,1,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,1800,-7,0,2033,-18,0,0 +2013,8,18,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1205,-5,0,1320,-17,0,0 +2013,6,28,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-4,0,1912,-14,0,0 +2013,10,1,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1345,-3,0,1500,-6,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1310,-4,0,1545,-8,0,0 +2013,7,20,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,-6,0,1941,1,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1620,1,0,1818,-6,0,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-6,0,1526,-26,0,0 +2013,5,14,2,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,712,-2,0,931,-11,0,0 +2013,9,8,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,735,-8,0,855,-17,0,0 +2013,6,1,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,-11,0,940,-6,0,0 +2013,4,22,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-8,0,1943,-15,0,0 +2013,4,16,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1630,-1,0,45,-17,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,10,0,1910,6,0,0 +2013,7,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1359,1,0,1452,-4,0,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1430,65,1,1624,68,1,0 +2013,6,14,5,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-5,0,1655,-6,0,0 +2013,8,29,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-1,0,2159,-10,0,0 +2013,5,3,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,30,1,1309,25,1,0 +2013,8,7,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,9,0,1555,13,0,0 +2013,5,21,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,4,0,840,20,1,0 +2013,8,9,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,51,1,1125,56,1,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-5,0,1900,-23,0,0 +2013,8,4,7,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-2,0,1220,-17,0,0 +2013,7,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,53,1,1436,110,1,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1805,6,0,2126,11,0,0 +2013,5,9,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,64,1,1819,47,1,0 +2013,5,31,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,-7,0,1100,-1,0,0 +2013,10,9,3,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,820,-24,0,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,859,-6,0,1207,-2,0,0 +2013,9,5,4,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1114,-2,0,1311,-9,0,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2200,62,1,5,59,1,0 +2013,10,16,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-7,0,2028,-12,0,0 +2013,7,31,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-6,0,2112,-24,0,0 +2013,4,15,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,-2,0,1803,-14,0,0 +2013,6,26,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1005,-3,0,1200,2,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,-2,0,1402,46,1,0 +2013,4,22,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2040,-8,0,2200,2,0,0 +2013,4,2,2,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1949,-2,0,2114,-21,0,0 +2013,4,6,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-2,0,1644,10,0,0 +2013,10,21,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,0,0,1603,5,0,0 +2013,4,9,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1710,7,0,1835,2,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,1,0,1410,12,0,0 +2013,6,12,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,1,0,1245,-9,0,0 +2013,5,23,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,0,,2049,0,1,1 +2013,4,1,1,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-6,0,1915,-12,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,1,0,2350,-9,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,605,1,0,733,1,0,0 +2013,9,18,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1247,-5,0,1535,-21,0,0 +2013,9,22,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,900,1,0,1145,-25,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1015,-2,0,1135,-15,0,0 +2013,4,2,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1118,-2,0,0 +2013,4,26,5,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,601,-7,0,930,-18,0,0 +2013,10,10,4,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,-2,0,2344,0,0,0 +2013,8,9,5,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2153,25,1,558,1,0,0 +2013,8,27,2,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,-9,0,1005,-11,0,0 +2013,9,17,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-5,0,710,-23,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,23,1,2335,8,0,0 +2013,6,17,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2345,-3,0,714,-7,0,0 +2013,4,22,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,-7,0,2046,2,0,0 +2013,5,6,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,23,1,1305,27,1,0 +2013,4,18,4,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1600,0,0,1720,-12,0,0 +2013,6,24,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-5,0,1640,1,0,0 +2013,4,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,-3,0,1622,-3,0,0 +2013,4,3,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1044,-2,0,1415,-11,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2020,6,0,2240,0,0,0 +2013,5,19,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1545,2,0,1710,-5,0,0 +2013,7,6,6,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1710,79,1,1930,73,1,0 +2013,9,26,4,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-9,0,2027,-15,0,0 +2013,4,24,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-5,0,920,-13,0,0 +2013,5,6,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-4,0,811,-6,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1630,-2,0,1740,-11,0,0 +2013,7,2,2,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-8,0,1212,-28,0,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1857,1,0,1950,-5,0,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1345,80,1,1615,79,1,0 +2013,4,28,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-2,0,740,-12,0,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1530,0,,1718,0,1,1 +2013,6,27,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1434,7,0,1616,-9,0,0 +2013,7,8,1,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1823,17,1,2110,9,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1935,0,0,2118,-12,0,0 +2013,7,4,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,745,-3,0,1014,-2,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2045,9,0,2140,18,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,2,0,1445,-1,0,0 +2013,4,30,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,0,,1040,0,1,1 +2013,7,2,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-5,0,1054,-1,0,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1535,-7,0,1707,-8,0,0 +2013,5,12,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1515,-1,0,1810,-7,0,0 +2013,4,18,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-2,0,2210,-12,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1155,1,0,1340,-8,0,0 +2013,6,24,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,940,-2,0,0 +2013,8,9,5,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,0,0,856,-7,0,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1945,23,1,2035,27,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1643,0,0,1835,-10,0,0 +2013,4,4,4,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,2,0,1630,16,1,0 +2013,9,30,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,800,-3,0,1024,-6,0,0 +2013,10,16,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,725,-5,0,845,3,0,0 +2013,9,29,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1633,15,1,2020,14,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1340,-4,0,1840,-11,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,23,1,1820,161,1,0 +2013,5,23,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1200,64,1,1416,54,1,0 +2013,9,27,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-1,0,750,-8,0,0 +2013,6,13,4,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1807,-10,0,2121,-2,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,0,,1851,0,1,1 +2013,8,25,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1857,-1,0,2105,-1,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1206,-4,0,1342,0,0,0 +2013,6,26,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-3,0,1142,3,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,2,0,1835,-8,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,-5,0,1808,-12,0,0 +2013,5,29,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1348,-4,0,1510,-6,0,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,14,0,1053,38,1,0 +2013,4,1,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1040,-5,0,1300,10,0,0 +2013,6,6,4,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-5,0,1105,-7,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1936,-2,0,2132,6,0,0 +2013,10,4,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1024,18,1,1430,4,0,0 +2013,7,10,3,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,33,1,2342,41,1,0 +2013,5,9,4,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-8,0,1044,-15,0,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1459,7,0,1620,-9,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,900,-2,0,1010,-14,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,35,1,1246,53,1,0 +2013,6,12,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,1120,4,0,0 +2013,9,17,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,0,0,1310,-12,0,0 +2013,5,27,1,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-9,0,2147,10,0,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,2,0,1240,-2,0,0 +2013,6,2,7,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-6,0,2000,59,1,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1758,177,1,1955,161,1,0 +2013,5,3,5,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,925,-3,0,1110,-11,0,0 +2013,7,29,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,0,0,920,-5,0,0 +2013,8,3,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2129,-2,0,556,-23,0,0 +2013,6,11,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,9,0,1805,15,1,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1122,-2,0,1410,2,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1920,-6,0,2245,-24,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,46,1,2000,37,1,0 +2013,8,23,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,4,0,1356,9,0,0 +2013,5,9,4,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1755,44,1,2030,60,1,0 +2013,6,30,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1220,-3,0,1350,-12,0,0 +2013,9,23,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-9,0,1159,-29,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1125,2,0,1340,2,0,0 +2013,4,16,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1325,2,0,1330,-1,0,0 +2013,4,27,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-5,0,1656,-15,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,19,1,1505,58,1,0 +2013,9,14,6,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,134,1,2020,113,1,0 +2013,6,7,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1102,-2,0,1226,1,0,0 +2013,6,2,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1201,1,0,1304,-5,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1435,-3,0,1613,-7,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,848,-5,0,1629,-36,0,0 +2013,10,6,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1842,-2,0,2057,0,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,10,0,1000,7,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,29,1,2325,27,1,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-4,0,1656,-26,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1325,4,0,1557,21,1,0 +2013,5,16,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,0,0,1115,5,0,0 +2013,4,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1325,-7,0,1444,-19,0,0 +2013,6,10,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-5,0,906,12,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1435,6,0,1655,-22,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,0,0,2055,-9,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-1,0,1150,-8,0,0 +2013,5,29,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1415,-8,0,0 +2013,6,16,7,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,740,-3,0,835,-3,0,0 +2013,10,20,7,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,14,0,1903,6,0,0 +2013,5,16,4,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1725,6,0,2052,2,0,0 +2013,8,9,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1415,1,0,1650,0,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1740,22,1,2300,14,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,6,0,1045,-2,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2000,15,1,2134,6,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,-1,0,2145,-7,0,0 +2013,10,7,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-14,0,1940,-25,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-2,0,1610,-1,0,0 +2013,6,15,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1350,7,0,1510,28,1,0 +2013,9,9,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,611,-4,0,1426,-5,0,0 +2013,9,5,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-2,0,940,-18,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,915,8,0,1040,5,0,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-4,0,1255,-10,0,0 +2013,5,24,5,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,635,-2,0,845,-15,0,0 +2013,7,5,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,22,1,1643,22,1,0 +2013,6,4,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,815,-19,0,0 +2013,5,7,2,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-7,0,2048,-32,0,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1555,-3,0,1745,-14,0,0 +2013,5,4,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1520,-1,0,1646,3,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,945,-4,0,1121,-12,0,0 +2013,8,10,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1155,6,0,1440,-4,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,-7,0,1149,-13,0,0 +2013,8,10,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1005,0,0,1101,-5,0,0 +2013,6,1,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1305,8,0,1425,-4,0,0 +2013,9,24,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-12,0,1622,-18,0,0 +2013,8,16,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1600,3,0,1648,1,0,0 +2013,4,28,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1017,-1,0,1203,-14,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1058,-1,0,1207,-8,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-1,0,2003,-10,0,0 +2013,7,16,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-1,0,2108,3,0,0 +2013,5,28,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,121,1,1505,126,1,0 +2013,8,19,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,49,1,1735,66,1,0 +2013,5,9,4,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1618,15,1,2009,16,1,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,645,-5,0,820,-14,0,0 +2013,10,3,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,707,-13,0,1042,-19,0,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,-6,0,25,-28,0,0 +2013,5,12,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1221,5,0,1505,-19,0,0 +2013,5,28,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,4,0,755,1,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,950,15,1,1209,-4,0,0 +2013,10,15,2,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,830,-1,0,1145,-18,0,0 +2013,4,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1732,0,0,1923,-8,0,0 +2013,8,21,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,58,1,2207,68,1,0 +2013,4,14,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,-4,0,1555,-12,0,0 +2013,9,8,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,725,-5,0,907,-19,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1630,-4,0,1822,-22,0,0 +2013,9,29,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1220,14,0,1310,27,1,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1440,21,1,1705,3,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,3,0,1006,-17,0,0 +2013,10,2,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1356,-7,0,1514,-14,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1725,-1,0,2001,7,0,0 +2013,6,12,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,11,0,2110,12,0,0 +2013,5,31,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1042,6,0,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,17,1,2125,-3,0,0 +2013,4,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1540,5,0,1640,-4,0,0 +2013,5,13,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,-1,0,825,-10,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1141,-6,0,1415,-27,0,0 +2013,10,27,7,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,925,-5,0,1730,3,0,0 +2013,5,24,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,6,0,2039,-3,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1435,8,0,1607,-1,0,0 +2013,7,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,800,-2,0,1016,-18,0,0 +2013,6,5,3,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,-1,0,1330,-1,0,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1853,17,1,2030,-9,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1351,16,1,1519,63,1,0 +2013,9,30,1,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-5,0,1549,-2,0,0 +2013,8,14,3,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1355,9,0,1655,-4,0,0 +2013,5,27,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1355,-3,0,1434,-7,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-2,0,1320,-7,0,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-3,0,815,-11,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-2,0,1026,-11,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1515,4,0,1840,8,0,0 +2013,5,28,2,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1400,-7,0,1702,-14,0,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1449,17,1,1625,11,0,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-3,0,1130,2,0,0 +2013,6,16,7,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1345,-4,0,1601,-9,0,0 +2013,5,12,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,915,-5,0,935,-14,0,0 +2013,10,10,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,705,-9,0,0 +2013,9,8,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,155,-8,0,834,-23,0,0 +2013,10,22,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1524,-4,0,1840,-27,0,0 +2013,9,24,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,15,1,1518,13,0,0 +2013,4,10,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-7,0,1545,63,1,0 +2013,4,24,3,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1722,-5,0,1959,-3,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1100,24,1,1215,18,1,0 +2013,4,14,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1849,128,1,2101,149,1,0 +2013,10,26,6,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1513,12,0,1610,7,0,0 +2013,5,28,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-4,0,1620,-26,0,0 +2013,10,15,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1347,-20,0,0 +2013,8,10,6,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-4,0,1213,-8,0,0 +2013,4,2,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,28,1,1924,18,1,0 +2013,10,26,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1248,1,0,1448,20,1,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-6,0,1136,-15,0,0 +2013,9,3,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1640,0,,1715,0,1,1 +2013,4,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2111,13,0,2344,29,1,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-1,0,2135,-18,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1155,-1,0,1410,-6,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,-2,0,1056,-2,0,0 +2013,5,24,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,801,-5,0,1129,-17,0,0 +2013,7,16,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,-1,0,940,-6,0,0 +2013,5,16,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-6,0,913,4,0,0 +2013,4,5,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1505,-2,0,1620,-10,0,0 +2013,6,29,6,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,63,1,2116,75,1,0 +2013,5,12,7,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1150,4,0,1334,7,0,0 +2013,6,18,2,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1659,47,1,1941,67,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1630,1,0,1833,-15,0,0 +2013,4,4,4,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,742,-6,0,838,-8,0,0 +2013,4,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-3,0,1845,-8,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,750,-1,0,1035,-1,0,0 +2013,6,10,1,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,550,6,0,800,-6,0,0 +2013,9,22,7,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1329,4,0,1814,2,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-5,0,1947,-21,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1010,2,0,1215,-5,0,0 +2013,10,25,5,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1159,0,0,1436,-4,0,0 +2013,6,11,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,5,0,1946,-6,0,0 +2013,6,23,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2107,-3,0,2155,1,0,0 +2013,6,21,5,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,750,-2,0,1345,-1,0,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1859,43,1,2230,129,1,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1706,-4,0,1855,-21,0,0 +2013,5,20,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1522,0,0,2321,-10,0,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1455,15,1,1630,10,0,0 +2013,8,29,4,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1514,-6,0,1927,-10,0,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,-4,0,1003,-7,0,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1706,11,0,2111,50,1,0 +2013,6,15,6,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-3,0,2106,-6,0,0 +2013,9,6,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1430,-4,0,1726,6,0,0 +2013,10,12,6,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-11,0,1748,-4,0,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1532,-1,0,1741,-30,0,0 +2013,4,1,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1120,-3,0,1130,7,0,0 +2013,4,13,6,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-12,0,1150,-18,0,0 +2013,8,2,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1818,-10,0,2030,-16,0,0 +2013,4,26,5,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1130,-5,0,1440,-2,0,0 +2013,7,30,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,0,0,1730,-10,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1031,35,1,1056,24,1,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1029,-9,0,1318,-21,0,0 +2013,6,16,7,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1830,19,1,1925,24,1,0 +2013,9,27,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1625,-7,0,1831,-21,0,0 +2013,9,26,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,0,0,1458,-18,0,0 +2013,9,10,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1430,-4,0,1600,1,0,0 +2013,4,3,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-3,0,1516,-3,0,0 +2013,9,14,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,747,83,1,830,77,1,0 +2013,9,12,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,35,1,2220,33,1,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,4,0,1241,-20,0,0 +2013,4,1,1,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1932,-3,0,2105,-16,0,0 +2013,5,27,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-8,0,1741,-12,0,0 +2013,8,30,5,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1530,11,0,1710,5,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,18,1,2005,10,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1625,7,0,2226,-8,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,30,1,1630,21,1,0 +2013,8,5,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,-1,0,2109,3,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1555,0,0,1710,3,0,0 +2013,7,2,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1951,-9,0,2128,-10,0,0 +2013,6,19,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,-4,0,1637,-19,0,0 +2013,5,4,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,930,0,0,1045,17,1,0 +2013,8,2,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,1,0,845,-23,0,0 +2013,6,7,5,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1105,-4,0,1202,-12,0,0 +2013,10,23,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,9,0,1905,5,0,0 +2013,9,3,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1500,5,0,1615,4,0,0 +2013,10,4,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1225,15,1,1345,2,0,0 +2013,8,24,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1605,3,0,1730,-1,0,0 +2013,5,22,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-7,0,805,-24,0,0 +2013,4,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1756,52,1,2012,35,1,0 +2013,6,29,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1655,1,0,1819,5,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,-4,0,2325,-40,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,8,0,2152,43,1,0 +2013,9,22,7,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-5,0,1232,-19,0,0 +2013,9,25,3,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-7,0,2335,-19,0,0 +2013,4,4,4,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,0,0,1215,2,0,0 +2013,4,12,5,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-2,0,1124,30,1,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,928,-3,0,1124,-34,0,0 +2013,8,11,7,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,44,1,1125,50,1,0 +2013,5,15,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1754,0,0,1931,1,0,0 +2013,8,4,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-6,0,1747,-18,0,0 +2013,7,26,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,836,-7,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1231,-2,0,1515,-11,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1625,57,1,1730,57,1,0 +2013,6,17,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,2,0,830,1,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2003,-8,0,2139,-17,0,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,7,0,1415,-1,0,0 +2013,9,28,6,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1354,-17,0,1559,-5,0,0 +2013,4,23,2,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1130,-5,0,2004,-6,0,0 +2013,5,22,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-4,0,1438,-8,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,-5,0,1550,-14,0,0 +2013,8,19,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,13,0,1837,37,1,0 +2013,5,5,7,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1344,16,1,1549,8,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1135,4,0,1315,-6,0,0 +2013,5,30,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,3,0,1801,-3,0,0 +2013,10,14,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,645,-6,0,909,-13,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1320,-5,0,1540,-10,0,0 +2013,7,8,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1530,0,,1648,0,1,1 +2013,10,18,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1415,-7,0,1527,-10,0,0 +2013,9,24,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2250,-5,0,436,-14,0,0 +2013,5,22,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1352,-7,0,1649,18,1,0 +2013,9,4,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-3,0,1805,28,1,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1755,51,1,2035,48,1,0 +2013,7,4,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1545,12,0,1700,22,1,0 +2013,6,24,1,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1845,-3,0,2001,-11,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-4,0,1215,-7,0,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,-2,0,1310,-4,0,0 +2013,9,27,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,15,1,1900,18,1,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,840,-3,0,1010,-12,0,0 +2013,9,12,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1930,-11,0,2105,-14,0,0 +2013,9,4,3,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-3,0,1515,-4,0,0 +2013,4,1,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1255,19,1,1415,32,1,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1347,-5,0,1531,-19,0,0 +2013,6,26,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1415,254,1,2030,241,1,0 +2013,8,28,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,-4,0,2217,-20,0,0 +2013,9,25,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,750,-1,0,925,13,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1459,-4,0,1658,4,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1630,3,0,1910,-24,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,0,0,2145,-9,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,655,1,0,825,-9,0,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,0,0,2250,-10,0,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,645,7,0,835,6,0,0 +2013,4,24,3,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2111,5,0,2344,27,1,0 +2013,9,12,4,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1220,3,0,1515,8,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,39,1,1845,43,1,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,8,0,2056,11,0,0 +2013,8,18,7,OO,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,757,-10,0,916,-2,0,0 +2013,4,20,6,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2000,64,1,2257,33,1,0 +2013,8,19,1,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,645,-3,0,730,4,0,0 +2013,5,25,6,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1600,-2,0,1835,-17,0,0 +2013,8,14,3,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1030,-9,0,1243,-19,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1410,4,0,1515,3,0,0 +2013,8,2,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,2,0,1330,-6,0,0 +2013,9,29,7,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,-5,0,740,-16,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1025,-1,0,1125,0,0,0 +2013,10,17,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,-2,0,1614,1,0,0 +2013,8,17,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-7,0,804,-8,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,835,0,0,1235,9,0,0 +2013,9,2,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,824,0,0,1020,1,0,0 +2013,4,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1708,-7,0,1842,3,0,0 +2013,9,13,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1615,4,0,1730,1,0,0 +2013,10,23,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,700,-5,0,925,-8,0,0 +2013,9,17,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,832,-6,0,921,-1,0,0 +2013,5,1,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,9,0,1720,-4,0,0 +2013,7,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1001,0,0,1258,3,0,0 +2013,6,22,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,725,-8,0,1021,-1,0,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1520,19,1,1710,30,1,0 +2013,9,28,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-2,0,850,-10,0,0 +2013,4,30,2,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1730,-5,0,2025,-13,0,0 +2013,6,4,2,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,7,0,1945,15,1,0 +2013,4,12,5,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1045,-3,0,1310,-10,0,0 +2013,4,24,3,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1715,21,1,1855,25,1,0 +2013,10,21,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1020,11,0,1200,10,0,0 +2013,6,28,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,18,1,2040,29,1,0 +2013,8,11,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2040,-1,0,2200,-12,0,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1415,5,0,1525,0,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-1,0,1352,-14,0,0 +2013,4,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1210,1,0,1443,31,1,0 +2013,8,23,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1315,-1,0,1440,12,0,0 +2013,8,26,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,-3,0,1425,-13,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,2,0,1735,-19,0,0 +2013,6,7,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,805,-5,0,1018,-15,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1105,9,0,1325,-15,0,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2037,21,1,2203,17,1,0 +2013,5,19,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,85,1,1410,113,1,0 +2013,6,23,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,910,-4,0,1245,2,0,0 +2013,7,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,720,-2,0,932,-18,0,0 +2013,10,20,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2105,-6,0,2220,-13,0,0 +2013,5,16,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,605,1,0,740,1,0,0 +2013,9,21,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1400,-1,0,1500,-7,0,0 +2013,5,5,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-4,0,2251,-11,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1347,0,0,1417,-3,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-6,0,1520,-10,0,0 +2013,6,20,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1305,-14,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,905,1,0,1028,-11,0,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,-1,0,1500,-8,0,0 +2013,5,5,7,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1305,6,0,1435,-20,0,0 +2013,10,11,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2020,0,0,2155,-5,0,0 +2013,6,12,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,20,1,1625,25,1,0 +2013,7,14,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1533,-2,0,1840,12,0,0 +2013,9,8,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,840,-4,0,1111,-24,0,0 +2013,10,21,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1538,-3,0,1645,0,0,0 +2013,4,24,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,96,1,2140,73,1,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1145,5,0,1328,6,0,0 +2013,4,7,7,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1415,-3,0,1505,-4,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-2,0,951,-25,0,0 +2013,8,9,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,313,1,855,323,1,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,600,-4,0,930,-11,0,0 +2013,4,10,3,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1037,79,1,1604,72,1,0 +2013,9,11,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-7,0,2033,-12,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,-2,0,1636,-12,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,12,0,1833,8,0,0 +2013,8,24,6,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,805,-4,0,919,-4,0,0 +2013,4,1,1,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1738,11,0,2027,16,1,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1255,-6,0,1355,-18,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,36,1,55,27,1,0 +2013,9,18,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,-4,0,940,0,0,0 +2013,10,18,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,808,-4,0,1415,-24,0,0 +2013,10,17,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,-4,0,2054,-15,0,0 +2013,5,15,3,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,2,0,1600,-1,0,0 +2013,10,21,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1935,13,0,2115,4,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,-2,0,2220,-17,0,0 +2013,8,2,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-2,0,1540,-13,0,0 +2013,5,22,3,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,48,0,0,630,-9,0,0 +2013,5,14,2,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,755,-5,0,1600,-4,0,0 +2013,8,8,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1055,22,1,1215,61,1,0 +2013,7,30,2,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,-4,0,1340,-16,0,0 +2013,7,11,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,-1,0,1825,-18,0,0 +2013,8,11,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,930,-6,0,1235,-2,0,0 +2013,7,7,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1456,-8,0,1517,-16,0,0 +2013,4,4,4,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,815,-2,0,1119,-19,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-2,0,950,-5,0,0 +2013,5,4,6,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,734,28,1,848,23,1,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-5,0,1915,-11,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,8,0,2119,43,1,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1450,2,0,1610,3,0,0 +2013,10,26,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-6,0,857,9,0,0 +2013,9,10,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-4,0,1630,-16,0,0 +2013,9,4,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,1,0,2135,8,0,0 +2013,8,13,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,915,-7,0,0 +2013,5,6,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1950,1,0,2150,-10,0,0 +2013,9,13,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1520,30,1,1705,27,1,0 +2013,6,6,4,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,630,-1,0,920,2,0,0 +2013,8,28,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1421,-10,0,1557,-6,0,0 +2013,8,24,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,838,-24,0,0 +2013,9,26,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,0,0,2010,-6,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,-1,0,2332,1,0,0 +2013,9,20,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,40,1,1825,42,1,0 +2013,6,24,1,9E,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,835,0,0,1023,28,1,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,-1,0,1631,-4,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,605,5,0,745,-13,0,0 +2013,10,13,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,-3,0,1713,-25,0,0 +2013,5,6,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,700,-4,0,915,-3,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1839,-4,0,2356,17,1,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,-5,0,1331,-12,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,11,0,2229,4,0,0 +2013,4,11,4,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,1,0,1025,1,0,0 +2013,7,8,1,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,743,-8,0,847,-18,0,0 +2013,4,4,4,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1607,-1,0,1810,-1,0,0 +2013,4,1,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2010,-5,0,2110,-10,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,7,0,1745,-1,0,0 +2013,8,30,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,16,1,1556,8,0,0 +2013,9,16,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,78,1,1845,72,1,0 +2013,6,14,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-4,0,1030,1,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,15,1,1944,12,0,0 +2013,7,24,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1455,1,0,1545,-3,0,0 +2013,5,17,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,630,3,0,730,-5,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1050,-3,0,1240,-12,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2105,68,1,2205,81,1,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,858,-6,0,1019,-35,0,0 +2013,4,13,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,810,203,1,1145,193,1,0 +2013,5,14,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1346,-3,0,1551,-7,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,-1,0,1255,-2,0,0 +2013,8,22,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-1,0,1442,-2,0,0 +2013,5,4,6,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,610,-14,0,758,-15,0,0 +2013,5,9,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,-1,0,2350,-5,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1650,-6,0,1810,-27,0,0 +2013,7,5,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-7,0,1100,-16,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1329,0,0,1625,-20,0,0 +2013,10,7,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1640,116,1,2005,121,1,0 +2013,8,5,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,656,13,0,817,6,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1645,14,0,2120,1,0,0 +2013,10,26,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1926,9,0,2219,-3,0,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,846,-1,0,1210,-12,0,0 +2013,10,11,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,1,0,1955,16,1,0 +2013,7,9,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,-8,0,1750,-11,0,0 +2013,7,4,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-7,0,1520,-8,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,745,-6,0,936,-8,0,0 +2013,6,19,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,-1,0,1700,-8,0,0 +2013,7,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1225,-3,0,1340,-1,0,0 +2013,9,23,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-8,0,2000,-11,0,0 +2013,6,29,6,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,62,1,1135,57,1,0 +2013,9,10,2,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,540,-8,0,850,-19,0,0 +2013,8,18,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,10,0,2257,3,0,0 +2013,8,16,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1005,-1,0,1120,-2,0,0 +2013,5,16,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1850,-11,0,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1733,0,0,1849,7,0,0 +2013,6,2,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1720,9,0,1830,-7,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,-1,0,2039,10,0,0 +2013,5,17,5,UA,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,627,-2,0,801,-18,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1808,-4,0,2007,-18,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,114,10,0,629,7,0,0 +2013,8,9,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1340,1,0,1440,-7,0,0 +2013,5,12,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,842,-6,0,1010,-25,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,720,-3,0,830,-11,0,0 +2013,8,31,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,635,22,1,925,7,0,0 +2013,10,17,4,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1654,15,1,1802,11,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,930,-5,0,1059,-6,0,0 +2013,4,6,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,855,-2,0,1045,-18,0,0 +2013,6,11,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,725,-6,0,1335,-5,0,0 +2013,7,14,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,936,-4,0,1031,0,0,0 +2013,7,8,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,813,2,0,955,-1,0,0 +2013,4,9,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,-4,0,2325,-5,0,0 +2013,6,5,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,915,3,0,1035,8,0,0 +2013,5,15,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1601,4,0,1746,10,0,0 +2013,8,6,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,21,1,1329,28,1,0 +2013,4,2,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1935,-6,0,2025,8,0,0 +2013,7,8,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,62,1,1150,57,1,0 +2013,5,16,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1930,-8,0,2057,-2,0,0 +2013,10,23,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,11,0,1957,14,0,0 +2013,4,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1900,49,1,2000,43,1,0 +2013,7,28,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,4,0,1730,6,0,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,118,1,1528,115,1,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,0,0,1204,-17,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,88,1,1701,96,1,0 +2013,7,21,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,0,0,1130,9,0,0 +2013,9,25,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1025,-7,0,1340,-5,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-1,0,1259,-6,0,0 +2013,10,12,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1548,-2,0,1911,5,0,0 +2013,8,9,5,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,920,-2,0,1211,2,0,0 +2013,5,28,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1400,10,0,1414,15,1,0 +2013,9,2,1,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1911,130,1,2242,140,1,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,88,1,2255,101,1,0 +2013,8,21,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2005,4,0,2228,3,0,0 +2013,9,16,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1005,5,0,1110,6,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,-2,0,1450,-22,0,0 +2013,6,2,7,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,32,1,1245,17,1,0 +2013,7,25,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,-2,0,2050,-6,0,0 +2013,4,20,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1055,4,0,1120,3,0,0 +2013,10,5,6,OO,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1114,-4,0,1400,-7,0,0 +2013,8,26,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,-6,0,1515,1,0,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,830,-12,0,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2350,-2,0,550,-13,0,0 +2013,5,24,5,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-1,0,1817,-13,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,930,-2,0,1115,-17,0,0 +2013,9,25,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,24,1,1009,7,0,0 +2013,8,2,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-10,0,2117,13,0,0 +2013,5,28,2,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-6,0,1235,-17,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,19,1,1450,17,1,0 +2013,7,23,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-2,0,843,27,1,0 +2013,7,2,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,0,0,1626,-13,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,7,0,1920,-18,0,0 +2013,7,8,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-1,0,1802,-5,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,600,-1,0,1428,3,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1120,2,0,1530,-1,0,0 +2013,6,15,6,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1306,-14,0,0 +2013,9,27,5,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1420,0,0,2230,-13,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,2,0,1835,-7,0,0 +2013,6,25,2,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1120,8,0,1515,14,0,0 +2013,6,7,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,-14,0,2009,-31,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,719,-9,0,856,-17,0,0 +2013,10,26,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1119,-8,0,1226,-12,0,0 +2013,8,19,1,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1020,17,1,1318,-3,0,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1625,22,1,1735,20,1,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,81,1,20,57,1,0 +2013,9,14,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1722,-9,0,0 +2013,10,31,4,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1040,26,1,1215,16,1,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1750,2,0,2129,-14,0,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,833,-1,0,1010,7,0,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2150,-1,0,2305,-4,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,754,-11,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,600,1,0,1110,2,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,3,0,1505,5,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,12,0,1700,4,0,0 +2013,5,14,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1648,-3,0,1712,7,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,659,-6,0,820,-29,0,0 +2013,5,22,3,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-14,0,714,-32,0,0 +2013,6,2,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,29,1,1304,28,1,0 +2013,9,12,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,-2,0,1359,41,1,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-2,0,1305,-19,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1814,0,0,2157,-12,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,103,1,2145,102,1,0 +2013,7,30,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,905,-6,0,1015,-14,0,0 +2013,7,25,4,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1746,2,0,1854,-12,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1320,83,1,1650,83,1,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1903,-2,0,2330,-22,0,0 +2013,5,2,4,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,813,1,0,1025,-10,0,0 +2013,6,25,2,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,45,1,1800,60,1,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,630,0,0,755,-14,0,0 +2013,7,22,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,8,0,930,7,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,944,1,0,1145,-16,0,0 +2013,9,16,1,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-4,0,1655,-19,0,0 +2013,4,5,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1323,-6,0,1532,-5,0,0 +2013,9,17,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,1349,12,0,0 +2013,4,15,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1431,-3,0,1607,-9,0,0 +2013,9,4,3,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,917,-10,0,1050,-13,0,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1100,21,1,1205,17,1,0 +2013,10,1,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,923,-5,0,1040,-15,0,0 +2013,4,27,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-1,0,744,-16,0,0 +2013,7,20,6,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,847,3,0,0 +2013,9,30,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,735,-2,0,905,-8,0,0 +2013,6,15,6,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1645,2,0,1810,-7,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1435,5,0,1657,9,0,0 +2013,7,6,6,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1515,-5,0,1840,-20,0,0 +2013,4,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,830,-4,0,935,-20,0,0 +2013,10,8,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1645,-7,0,1803,-6,0,0 +2013,7,22,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-9,0,1122,-1,0,0 +2013,4,5,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,755,-4,0,910,-8,0,0 +2013,4,15,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1610,-5,0,1925,-16,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,-4,0,1154,-5,0,0 +2013,5,25,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1358,-1,0,1710,-31,0,0 +2013,7,5,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1837,27,1,2229,19,1,0 +2013,9,5,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-1,0,935,-18,0,0 +2013,6,20,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,59,1,1930,49,1,0 +2013,8,5,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,23,1,949,14,0,0 +2013,5,4,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-11,0,1122,-13,0,0 +2013,6,20,4,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,-6,0,1427,-12,0,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1630,-25,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1840,21,1,2210,22,1,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1230,-3,0,2023,-18,0,0 +2013,7,16,2,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1945,40,1,2115,71,1,0 +2013,7,19,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,745,4,0,1552,4,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,9,0,1000,7,0,0 +2013,9,5,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1335,6,0,1610,13,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1219,-3,0,1249,-9,0,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,-5,0,2215,-14,0,0 +2013,7,31,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,3,0,1954,1,0,0 +2013,6,29,6,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1115,48,1,1400,53,1,0 +2013,7,24,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-2,0,1715,8,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1310,4,0,1425,-5,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-3,0,1743,-50,0,0 +2013,6,4,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1815,6,0,1915,-5,0,0 +2013,6,16,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,0,0,1220,-5,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-3,0,919,6,0,0 +2013,6,26,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,700,-9,0,1235,-5,0,0 +2013,10,3,4,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-4,0,1105,-10,0,0 +2013,4,26,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1115,30,1,1450,27,1,0 +2013,7,28,7,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1035,-1,0,1555,-10,0,0 +2013,5,7,2,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,840,-3,0,1000,-9,0,0 +2013,9,30,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1051,-4,0,1408,-18,0,0 +2013,5,10,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,-8,0,942,5,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,60,1,1407,45,1,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1835,17,1,2100,7,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,857,-2,0,1112,-9,0,0 +2013,9,3,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,-2,0,855,-14,0,0 +2013,10,9,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,18,1,1848,8,0,0 +2013,9,25,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,805,-21,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,10,0,1255,-1,0,0 +2013,9,6,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,17,1,1940,-32,0,0 +2013,6,2,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1035,-3,0,1344,-5,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1311,2,0,1609,-4,0,0 +2013,8,4,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1023,-9,0,1120,-4,0,0 +2013,4,6,6,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,755,-7,0,1040,-29,0,0 +2013,10,26,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1401,-14,0,0 +2013,5,15,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1642,0,0,1930,0,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,930,3,0,1149,-5,0,0 +2013,8,19,1,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,815,-3,0,1053,-4,0,0 +2013,8,15,4,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1525,3,0,1626,1,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,-1,0,31,-17,0,0 +2013,7,21,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2155,36,1,2305,45,1,0 +2013,10,1,2,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1100,-7,0,1316,-10,0,0 +2013,8,23,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2040,-1,0,2200,-3,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,28,1,1319,24,1,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1240,0,0,1340,10,0,0 +2013,5,16,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-11,0,1058,-17,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,-4,0,2240,-10,0,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2020,-3,0,2335,-10,0,0 +2013,5,9,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,640,-4,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,6,0,1201,39,1,0 +2013,6,28,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,19,1,1805,17,1,0 +2013,7,23,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-6,0,1925,-21,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1330,42,1,1501,38,1,0 +2013,5,12,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,-5,0,924,-19,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,68,1,2033,95,1,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,1955,-6,0,2235,-6,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,0,0,720,-1,0,0 +2013,9,8,7,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,5,0,735,2,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,16,1,1256,25,1,0 +2013,8,29,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1930,2,0,2224,0,0,0 +2013,8,20,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-7,0,2025,-9,0,0 +2013,6,18,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,15,1,1320,12,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,805,1,0,1000,-4,0,0 +2013,4,10,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,820,-4,0,938,-26,0,0 +2013,9,14,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,-6,0,2035,-12,0,0 +2013,7,4,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,46,9,0,855,20,1,0 +2013,5,28,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,606,-1,0,813,-4,0,0 +2013,7,24,3,EV,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1858,116,1,2038,111,1,0 +2013,10,24,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1218,-2,0,1420,-7,0,0 +2013,9,2,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,3,0,1920,-16,0,0 +2013,6,5,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,22,1,1256,13,0,0 +2013,6,30,7,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1136,3,0,1949,-2,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,42,1,1635,31,1,0 +2013,8,8,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-4,0,1045,-16,0,0 +2013,9,15,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,10,0,1730,5,0,0 +2013,7,14,7,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1515,30,1,1810,25,1,0 +2013,9,7,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1545,-2,0,1705,-12,0,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1550,52,1,1915,42,1,0 +2013,7,30,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,3,0,1341,-9,0,0 +2013,8,13,2,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2345,69,1,244,69,1,0 +2013,7,31,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1750,-2,0,1915,-2,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-2,0,1505,3,0,0 +2013,6,21,5,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,2,0,1004,-6,0,0 +2013,4,14,7,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1040,-9,0,1310,-17,0,0 +2013,6,10,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1950,-3,0,2215,-10,0,0 +2013,8,26,1,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,809,-4,0,925,-3,0,0 +2013,10,18,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1805,-6,0,1942,1,0,0 +2013,8,7,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-2,0,1130,-11,0,0 +2013,4,15,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1005,-5,0,1206,5,0,0 +2013,8,10,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1840,0,0,1912,4,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1056,-4,0,1205,-4,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1940,3,0,15,-2,0,0 +2013,8,18,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,18,1,1041,1,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1010,22,1,1213,22,1,0 +2013,8,11,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1445,-7,0,1905,2,0,0 +2013,4,23,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,30,1,1450,33,1,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1401,15,1,1642,-5,0,0 +2013,5,13,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1345,10,0,1450,4,0,0 +2013,6,3,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1344,-8,0,1523,-21,0,0 +2013,4,19,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,7,0,1415,14,0,0 +2013,10,19,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1100,4,0,1115,0,0,0 +2013,5,16,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,1,0,1330,-5,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2204,-5,0,617,-5,0,0 +2013,4,7,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-5,0,2010,-24,0,0 +2013,4,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1400,45,1,1606,44,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1525,58,1,1705,48,1,0 +2013,6,2,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-8,0,1104,-23,0,0 +2013,6,25,2,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,11,0,902,3,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1640,33,1,1921,22,1,0 +2013,7,13,6,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,-4,0,1427,-7,0,0 +2013,10,29,2,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-3,0,1205,-12,0,0 +2013,6,14,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1845,45,1,2110,61,1,0 +2013,6,29,6,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1215,2,0,1735,-4,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,905,-6,0,1608,-24,0,0 +2013,7,3,3,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,-4,0,1630,-17,0,0 +2013,5,18,6,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,855,-4,0,1000,-4,0,0 +2013,10,6,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-4,0,1604,-11,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,6,0,30,-1,0,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2258,-8,0,2351,-11,0,0 +2013,5,26,7,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1150,-5,0,1345,-3,0,0 +2013,9,14,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1130,-1,0,1445,-7,0,0 +2013,10,3,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,0,0,1840,-9,0,0 +2013,4,17,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-4,0,1609,-2,0,0 +2013,7,26,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1940,15,1,2050,10,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,-5,0,1147,-15,0,0 +2013,7,8,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1627,-6,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2259,83,1,105,53,1,0 +2013,5,4,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1009,-7,0,1203,-16,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,39,1,1820,19,1,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-6,0,920,9,0,0 +2013,8,31,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1840,-1,0,2047,-11,0,0 +2013,5,26,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,2,0,1514,-7,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2203,39,1,2337,16,1,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,803,2,0,1041,-3,0,0 +2013,6,12,3,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,940,-8,0,1212,-35,0,0 +2013,6,12,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,715,0,0,0 +2013,6,4,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1425,7,0,1710,-3,0,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2030,22,1,2215,12,0,0 +2013,4,19,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-7,0,1258,-7,0,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,850,3,0,1210,-4,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,850,19,1,955,14,0,0 +2013,9,9,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1053,-6,0,1637,-30,0,0 +2013,8,12,1,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1440,-10,0,1721,-22,0,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,10,0,1944,49,1,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,0,0,1205,-8,0,0 +2013,5,8,3,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1002,3,0,1322,10,0,0 +2013,8,16,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1455,-1,0,1605,-2,0,0 +2013,8,5,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1740,-4,0,2108,-8,0,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,-2,0,2215,-23,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,645,-5,0,800,-12,0,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1426,57,1,1636,32,1,0 +2013,9,2,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1349,-8,0,1601,2,0,0 +2013,6,19,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2035,4,0,2255,-2,0,0 +2013,10,21,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1723,-5,0,1959,-29,0,0 +2013,4,30,2,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,-13,0,1855,-35,0,0 +2013,6,21,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,940,31,1,1140,22,1,0 +2013,6,14,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,835,-6,0,906,-23,0,0 +2013,7,16,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,-8,0,1314,9,0,0 +2013,6,16,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1641,-10,0,1829,-18,0,0 +2013,9,14,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1910,74,1,2040,78,1,0 +2013,7,8,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,0,,1935,0,1,1 +2013,5,14,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,7,0,1730,1,0,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1426,12,0,1953,-16,0,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1120,-1,0,1225,-6,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2028,-3,0,2335,-38,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2325,0,0,800,-10,0,0 +2013,9,10,2,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1725,-2,0,2004,-5,0,0 +2013,6,18,2,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1745,-9,0,1904,-8,0,0 +2013,9,24,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,12,0,1745,10,0,0 +2013,4,19,5,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1455,91,1,1620,0,1,1 +2013,10,8,2,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,2,0,1420,29,1,0 +2013,4,8,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2140,-3,0,2320,-8,0,0 +2013,6,11,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,2,0,1930,-6,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,4,0,1159,-17,0,0 +2013,8,18,7,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1820,2,0,2048,-10,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,19,1,1517,14,0,0 +2013,6,29,6,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1023,-6,0,1557,-19,0,0 +2013,6,21,5,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1215,-6,0,1342,-13,0,0 +2013,4,10,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2120,53,1,25,53,1,0 +2013,6,12,3,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-3,0,2359,-10,0,0 +2013,9,25,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2110,-12,0,2210,-17,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1948,98,1,2047,75,1,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-2,0,1655,11,0,0 +2013,8,19,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,914,2,0,1037,-3,0,0 +2013,8,13,2,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1005,96,1,1455,112,1,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1401,-8,0,2229,-7,0,0 +2013,9,21,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-3,0,1027,-8,0,0 +2013,8,18,7,F9,11042,Cleveland-Hopkins International,Cleveland,OH,14122,Pittsburgh International,Pittsburgh,PA,745,-11,0,825,-12,0,0 +2013,10,11,5,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,805,-1,0,1044,-21,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,925,-6,0,1105,-15,0,0 +2013,10,12,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1655,-8,0,1813,-13,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1940,22,1,2101,24,1,0 +2013,5,29,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-8,0,745,-11,0,0 +2013,10,27,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2035,111,1,2210,121,1,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1705,4,0,1855,19,1,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,87,1,1855,90,1,0 +2013,6,8,6,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1805,81,1,2000,66,1,0 +2013,6,24,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1110,-8,0,1400,-13,0,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2000,61,1,2125,50,1,0 +2013,6,11,2,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-5,0,1125,9,0,0 +2013,6,12,3,AA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1735,2,0,645,-4,0,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1215,-7,0,1352,-18,0,0 +2013,10,14,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1829,9,0,2100,7,0,0 +2013,10,27,7,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1010,0,0,1158,-17,0,0 +2013,7,5,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1017,-5,0,1126,-16,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1755,27,1,2005,20,1,0 +2013,10,29,2,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,810,1,0,1005,35,1,0 +2013,6,29,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1042,13,0,1252,15,1,0 +2013,5,26,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1505,-2,0,1720,-9,0,0 +2013,4,11,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,-2,0,1838,-9,0,0 +2013,10,10,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,900,-2,0,1228,-30,0,0 +2013,6,25,2,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1455,4,0,1615,-2,0,0 +2013,10,1,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-5,0,1116,-12,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2230,123,1,702,102,1,0 +2013,5,21,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,6,0,1010,-1,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,68,1,2210,75,1,0 +2013,8,5,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-7,0,1810,-8,0,0 +2013,6,7,5,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,750,-7,0,1035,-8,0,0 +2013,7,8,1,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1957,59,1,2130,73,1,0 +2013,5,28,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,700,2,0,939,0,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1305,8,0,1558,17,1,0 +2013,9,29,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1705,6,0,1710,12,0,0 +2013,5,25,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1936,-2,0,2129,-13,0,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1730,-3,0,2007,-15,0,0 +2013,6,29,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1655,37,1,1745,29,1,0 +2013,4,14,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-5,0,1547,-5,0,0 +2013,7,19,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1837,-5,0,2346,-9,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1520,-2,0,1640,-13,0,0 +2013,6,30,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,957,5,0,1254,1,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,855,-5,0,1150,-19,0,0 +2013,10,11,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,25,1,1044,21,1,0 +2013,10,17,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-6,0,1215,-23,0,0 +2013,4,20,6,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,-5,0,1632,6,0,0 +2013,7,13,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1810,-9,0,1925,7,0,0 +2013,5,9,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1036,-6,0,1138,-16,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1235,3,0,1455,2,0,0 +2013,8,9,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,757,94,1,935,82,1,0 +2013,4,15,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1415,17,1,1545,4,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,52,1,2330,47,1,0 +2013,9,7,6,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1100,5,0,1250,1,0,0 +2013,6,21,5,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,1105,3,0,1330,2,0,0 +2013,7,22,1,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,919,0,0,0 +2013,10,28,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1710,20,1,2315,-2,0,0 +2013,10,8,2,AA,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1800,-8,0,1935,18,1,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-3,0,1415,5,0,0 +2013,8,25,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1349,10,0,1444,-5,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1635,-2,0,1830,0,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,7,0,2309,6,0,0 +2013,4,19,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1933,29,1,2107,55,1,0 +2013,10,3,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,955,-1,0,1000,-9,0,0 +2013,9,11,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-2,0,1300,-9,0,0 +2013,4,26,5,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,832,-9,0,1045,3,0,0 +2013,9,23,1,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1008,-21,0,0 +2013,5,3,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,0,0,902,-19,0,0 +2013,8,4,7,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-5,0,721,-14,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1355,0,0,1549,-5,0,0 +2013,9,6,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2230,-10,0,658,-39,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1308,2,0,1416,0,0,0 +2013,5,3,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,86,1,743,76,1,0 +2013,6,30,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-8,0,1116,-11,0,0 +2013,6,22,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,-13,0,1857,-21,0,0 +2013,4,12,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-4,0,853,-8,0,0 +2013,9,19,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-9,0,1006,-21,0,0 +2013,4,30,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,605,5,0,730,-3,0,0 +2013,10,15,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,855,11,0,0 +2013,7,12,5,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,13,0,1959,16,1,0 +2013,10,31,4,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1935,-3,0,2050,-15,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,23,1,1540,20,1,0 +2013,4,10,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,922,-4,0,1130,-10,0,0 +2013,5,13,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-5,0,1635,-10,0,0 +2013,10,20,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1235,3,0,1345,-2,0,0 +2013,7,18,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-1,0,1538,-7,0,0 +2013,4,16,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,600,-1,0,725,4,0,0 +2013,8,23,5,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2115,3,0,2357,-10,0,0 +2013,9,16,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1135,2,0,1710,-17,0,0 +2013,5,7,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1715,-6,0,2100,-1,0,0 +2013,9,1,7,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-9,0,900,-37,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-1,0,1915,-11,0,0 +2013,7,8,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,610,2,0,710,-7,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1829,-7,0,2154,-14,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,929,-11,0,1120,-8,0,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,749,32,1,946,14,0,0 +2013,4,8,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-3,0,1617,-16,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,3,0,1600,-2,0,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-1,0,1719,15,1,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,106,1,2233,80,1,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,-5,0,2359,-17,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-1,0,1351,-6,0,0 +2013,10,9,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2050,-1,0,2205,-9,0,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1420,5,0,0 +2013,5,7,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-6,0,1215,-22,0,0 +2013,9,30,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1205,-6,0,2040,-6,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,650,-2,0,820,0,0,0 +2013,10,11,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,640,-1,0,740,-18,0,0 +2013,7,30,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,-6,0,1307,-17,0,0 +2013,6,21,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,16,1,1905,8,0,0 +2013,8,12,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1333,1,0,0 +2013,10,23,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1010,-7,0,1135,24,1,0 +2013,10,3,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,37,1,1745,18,1,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1555,2,0,1710,8,0,0 +2013,9,24,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1610,-4,0,1630,-17,0,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,15,1,2320,7,0,0 +2013,8,18,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-2,0,1850,-8,0,0 +2013,10,16,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1955,4,0,2130,17,1,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1635,4,0,1902,17,1,0 +2013,6,16,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,2010,-6,0,2120,-16,0,0 +2013,10,20,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,44,1,1955,43,1,0 +2013,4,28,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-12,0,813,-6,0,0 +2013,7,10,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,645,1,0,820,-4,0,0 +2013,6,7,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,3,0,2204,-9,0,0 +2013,5,13,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,0,0,1631,-7,0,0 +2013,8,5,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1713,5,0,1919,19,1,0 +2013,7,19,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1846,104,1,2038,98,1,0 +2013,7,23,2,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,915,-4,0,1047,-2,0,0 +2013,7,10,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,98,1,2005,101,1,0 +2013,6,30,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,21,1,2118,23,1,0 +2013,10,27,7,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1417,1,0,1721,-14,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,11,0,2151,-2,0,0 +2013,10,21,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,11,0,1155,15,1,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1900,-8,0,2020,-14,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,23,1,1110,17,1,0 +2013,5,21,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1253,54,1,1459,76,1,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,24,1,2259,11,0,0 +2013,9,19,4,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,3,0,1240,-13,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1705,-3,0,1840,-2,0,0 +2013,5,26,7,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1620,-9,0,1815,-11,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,730,1,0,936,-4,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-9,0,2315,-11,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,-2,0,1920,3,0,0 +2013,6,4,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1728,-4,0,1802,-3,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,1,0,1055,3,0,0 +2013,10,4,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,1,0,1826,29,1,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1217,-5,0,1246,-3,0,0 +2013,7,26,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,805,0,0,915,-1,0,0 +2013,10,14,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,31,1,2054,36,1,0 +2013,5,22,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-4,0,1412,-9,0,0 +2013,6,12,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1532,4,0,1719,-6,0,0 +2013,5,24,5,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,751,-1,0,1045,-5,0,0 +2013,7,21,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2000,-4,0,2210,-16,0,0 +2013,9,9,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1116,-5,0,1259,-11,0,0 +2013,4,24,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2218,47,1,2348,50,1,0 +2013,4,23,2,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1815,27,1,2055,12,0,0 +2013,5,14,2,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-5,0,1045,-12,0,0 +2013,7,29,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1335,24,1,1455,24,1,0 +2013,4,10,3,EV,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,-5,0,1214,-11,0,0 +2013,7,4,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1700,0,0,1820,-6,0,0 +2013,6,12,3,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,-4,0,1849,17,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2005,175,1,2045,167,1,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,15,1,2000,5,0,0 +2013,4,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,27,1,2249,35,1,0 +2013,6,23,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,32,1,1820,32,1,0 +2013,7,17,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,920,4,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-4,0,1811,-20,0,0 +2013,10,10,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-4,0,1726,-5,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1645,0,0,1820,-13,0,0 +2013,7,3,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,-7,0,1235,1,0,0 +2013,5,28,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1901,10,0,1949,7,0,0 +2013,9,5,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1119,-6,0,1214,-9,0,0 +2013,10,28,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,956,-1,0,1123,-11,0,0 +2013,9,21,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1550,25,1,1655,18,1,0 +2013,8,19,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1117,11,0,1638,2,0,0 +2013,9,10,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1545,175,1,1911,192,1,0 +2013,9,9,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,16,1,2150,20,1,0 +2013,4,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2155,-6,0,2315,-19,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1815,-5,0,1957,-16,0,0 +2013,5,28,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,-3,0,1330,-12,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,-7,0,1705,26,1,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1210,-1,0,1405,-10,0,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,5,0,830,6,0,0 +2013,4,15,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1530,-2,0,1840,-8,0,0 +2013,9,27,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,935,-5,0,1230,-24,0,0 +2013,8,20,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1150,-5,0,1241,8,0,0 +2013,4,30,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,-1,0,1626,-6,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1730,-6,0,1928,-5,0,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1240,9,0,1610,5,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,-3,0,1517,2,0,0 +2013,4,20,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-4,0,1916,-25,0,0 +2013,9,2,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,61,1,1935,67,1,0 +2013,7,1,1,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,13,0,1530,2,0,0 +2013,9,18,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1845,9,0,1951,80,1,0 +2013,4,22,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,50,1,1930,37,1,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1357,-3,0,1435,0,0,0 +2013,5,7,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,0,0,750,-8,0,0 +2013,4,3,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,910,-10,0,1054,-14,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1421,1,0,1550,-2,0,0 +2013,4,23,2,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1445,-1,0,1520,4,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,15,1,1025,-7,0,0 +2013,10,2,3,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,1200,-19,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2000,87,1,2205,77,1,0 +2013,10,6,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,0,0,810,-14,0,0 +2013,5,23,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,717,-6,0,901,-16,0,0 +2013,8,13,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1021,-2,0,1205,-26,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1304,-6,0,1439,-16,0,0 +2013,6,9,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,64,1,2145,81,1,0 +2013,6,3,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,12,0,1654,7,0,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1618,-4,0,1731,5,0,0 +2013,9,13,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1007,-2,0,1304,-16,0,0 +2013,9,8,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,9,0,1605,-16,0,0 +2013,4,1,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,920,0,0,1535,-8,0,0 +2013,6,29,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,58,1,1426,54,1,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1435,12,0,1655,-16,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,13,0,1933,7,0,0 +2013,10,31,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-7,0,837,-5,0,0 +2013,8,26,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-6,0,642,-14,0,0 +2013,9,4,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,0,0,838,-10,0,0 +2013,9,5,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,640,-9,0,901,-21,0,0 +2013,4,8,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1029,4,0,1206,3,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-5,0,1237,6,0,0 +2013,7,24,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1935,-4,0,2125,-9,0,0 +2013,5,24,5,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1817,-10,0,2108,-21,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1605,3,0,1655,0,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,0,0,1300,11,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,56,1,1725,51,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,-1,0,1925,-8,0,0 +2013,10,9,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1014,-8,0,1313,-14,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,6,0,1250,-28,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1640,-3,0,1808,-14,0,0 +2013,9,13,5,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1048,-7,0,1220,-21,0,0 +2013,4,23,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,-7,0,2018,-16,0,0 +2013,5,22,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,1,0,1245,-7,0,0 +2013,4,14,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1020,-4,0,1310,-22,0,0 +2013,4,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,925,16,1,1515,-9,0,0 +2013,6,20,4,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,-4,0,2029,-18,0,0 +2013,7,3,3,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1130,-2,0,1245,-16,0,0 +2013,8,25,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2159,-5,0,548,5,0,0 +2013,10,1,2,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1812,-7,0,2353,-17,0,0 +2013,10,26,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-6,0,1240,-14,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,4,0,1256,-8,0,0 +2013,10,16,3,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-2,0,1610,-12,0,0 +2013,10,10,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-8,0,1742,-19,0,0 +2013,5,14,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,-7,0,1918,-3,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2000,48,1,2045,39,1,0 +2013,6,10,1,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,52,1,1850,49,1,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1547,57,1,1738,38,1,0 +2013,4,29,1,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,750,16,1,1244,27,1,0 +2013,9,19,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1805,180,1,1950,147,1,0 +2013,5,19,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1741,2,0,1837,-4,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,0,0,1701,-5,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-3,0,1109,-5,0,0 +2013,6,5,3,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-5,0,1036,-5,0,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1730,3,0,1925,-5,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1130,-3,0,1345,-12,0,0 +2013,9,3,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1230,-6,0,2026,-5,0,0 +2013,9,7,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-7,0,1825,-6,0,0 +2013,8,6,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,4,0,1200,-9,0,0 +2013,8,14,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1205,-2,0,1325,-4,0,0 +2013,9,7,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1830,-13,0,2100,-10,0,0 +2013,7,14,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,13,0,1850,6,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,2015,101,1,2235,101,1,0 +2013,9,25,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,7,0,1451,10,0,0 +2013,4,16,2,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,746,-4,0,1114,-7,0,0 +2013,4,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,11,0,1511,12,0,0 +2013,8,21,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,5,0,1140,2,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1050,8,0,1800,13,0,0 +2013,6,24,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1335,-3,0,1620,-17,0,0 +2013,10,28,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-5,0,457,-2,0,0 +2013,8,18,7,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,801,22,1,1036,-5,0,0 +2013,7,2,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,58,1,1915,44,1,0 +2013,4,6,6,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,45,1,1345,45,1,0 +2013,9,20,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,-3,0,621,-15,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,600,-1,0,805,-2,0,0 +2013,6,21,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,-3,0,1828,4,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1255,44,1,1450,53,1,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1150,2,0,1320,6,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,905,0,0,1029,-3,0,0 +2013,10,7,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1045,-7,0,1202,-6,0,0 +2013,4,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-3,0,920,-18,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,830,5,0,1010,-11,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1602,12,0,1732,13,0,0 +2013,5,14,2,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1355,-5,0,1617,-23,0,0 +2013,6,28,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1445,-15,0,2250,-10,0,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,3,0,2255,2,0,0 +2013,7,2,2,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-8,0,1430,-28,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,830,-1,0,1010,-8,0,0 +2013,4,16,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1600,-3,0,1622,-2,0,0 +2013,7,12,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,617,10,0,1145,-3,0,0 +2013,5,13,1,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,-5,0,2036,-3,0,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1015,0,0,1105,4,0,0 +2013,10,20,7,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,0,0,1418,-33,0,0 +2013,10,25,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-7,0,805,-19,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,186,1,1930,183,1,0 +2013,7,13,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1410,-9,0,1444,-3,0,0 +2013,5,28,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-3,0,905,-7,0,0 +2013,5,9,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,-3,0,2212,-7,0,0 +2013,9,20,5,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1457,172,1,1812,168,1,0 +2013,5,22,3,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,-1,0,2115,-6,0,0 +2013,6,8,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,32,63,1,448,62,1,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1640,-1,0,1905,-14,0,0 +2013,4,26,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,755,-12,0,1055,0,0,0 +2013,5,10,5,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-5,0,1238,4,0,0 +2013,5,21,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1352,-9,0,1522,5,0,0 +2013,9,23,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-2,0,1329,5,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,630,-5,0,755,-3,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,253,1,1916,242,1,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1940,41,1,2145,45,1,0 +2013,9,26,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,16,1,1910,19,1,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1830,16,1,2200,3,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,0,0,1442,-13,0,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1435,5,0,1550,0,0,0 +2013,7,31,3,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1455,9,0,1600,6,0,0 +2013,5,1,3,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1035,40,1,1350,36,1,0 +2013,4,21,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,21,1,1626,46,1,0 +2013,5,12,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-3,0,1250,5,0,0 +2013,6,25,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-3,0,1653,5,0,0 +2013,6,12,3,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1625,9,0,1745,9,0,0 +2013,7,21,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,745,-6,0,905,-7,0,0 +2013,10,4,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,655,1,0,815,3,0,0 +2013,9,10,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-6,0,1641,-21,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,9,0,2255,21,1,0 +2013,8,30,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-4,0,642,-14,0,0 +2013,10,2,3,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-8,0,712,-16,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,57,1,1033,51,1,0 +2013,4,19,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,165,1,2338,202,1,0 +2013,7,15,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,74,1,1220,59,1,0 +2013,6,26,3,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1725,47,1,1838,73,1,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1935,84,1,2156,89,1,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-3,0,912,-4,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,955,1,0,1310,-12,0,0 +2013,8,27,2,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1436,12,0,1621,-3,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,935,0,0,1142,-10,0,0 +2013,7,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,16,1,2009,19,1,0 +2013,7,17,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1453,-5,0,1755,8,0,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2240,58,1,2350,63,1,0 +2013,4,21,7,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1607,-4,0,1743,-15,0,0 +2013,7,23,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,0,0,1800,7,0,0 +2013,5,16,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1451,7,0,1549,7,0,0 +2013,10,21,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-7,0,1520,-8,0,0 +2013,6,2,7,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1120,-6,0,1220,-13,0,0 +2013,5,6,1,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2315,14,0,735,7,0,0 +2013,8,22,4,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,2,0,1400,-30,0,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-9,0,1610,-15,0,0 +2013,9,11,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,845,-9,0,1035,-21,0,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1304,-4,0,1449,14,0,0 +2013,6,7,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,17,1,2135,9,0,0 +2013,4,29,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,655,-5,0,918,-8,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2200,217,1,2330,190,1,0 +2013,4,27,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,2,0,1330,-3,0,0 +2013,9,9,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-2,0,1635,-15,0,0 +2013,7,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1550,0,0,1748,0,0,0 +2013,8,26,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,820,-4,0,1020,-6,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,17,1,1445,23,1,0 +2013,9,7,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,954,-13,0,1120,-22,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,600,7,0,835,-10,0,0 +2013,8,21,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-1,0,1120,5,0,0 +2013,5,6,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,1,0,1120,-9,0,0 +2013,5,2,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1530,47,1,1650,41,1,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1550,5,0,1810,11,0,0 +2013,10,2,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1328,-7,0,1700,-26,0,0 +2013,5,30,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1105,8,0,1415,8,0,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1329,-1,0,1514,4,0,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1501,7,0,1603,1,0,0 +2013,6,16,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,3,0,1300,8,0,0 +2013,4,26,5,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,915,-8,0,1205,-15,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1605,28,1,1739,36,1,0 +2013,4,11,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-6,0,1248,-5,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,730,-4,0,930,-7,0,0 +2013,9,8,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,948,-10,0,1230,-11,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1320,4,0,1610,9,0,0 +2013,10,26,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,805,-7,0,1130,-15,0,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1118,-3,0,1310,-11,0,0 +2013,8,28,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-7,0,1605,10,0,0 +2013,8,11,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,220,-10,0,635,10,0,0 +2013,8,20,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,915,-6,0,1155,-5,0,0 +2013,5,23,4,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1945,136,1,2043,133,1,0 +2013,7,12,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-6,0,700,-13,0,0 +2013,4,27,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1730,9,0,2018,-14,0,0 +2013,6,2,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,75,1,1238,83,1,0 +2013,8,18,7,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,0,0,2215,0,0,0 +2013,7,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-2,0,1300,9,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,920,0,0,1020,1,0,0 +2013,4,12,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,-6,0,146,-25,0,0 +2013,8,9,5,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1122,51,1,1403,71,1,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,700,0,0,825,9,0,0 +2013,4,23,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,820,-3,0,1035,-13,0,0 +2013,5,22,3,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,740,-1,0,836,10,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,1,0,1540,0,0,0 +2013,5,18,6,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-13,0,1625,2,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1204,16,1,1423,-3,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,-8,0,1000,-25,0,0 +2013,6,7,5,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,19,1,2023,17,1,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-3,0,1639,-4,0,0 +2013,4,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,841,33,1,1135,23,1,0 +2013,4,8,1,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,600,-8,0,723,1,0,0 +2013,7,11,4,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,9,0,1105,-2,0,0 +2013,4,26,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,0,0,1945,-1,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,3,0,1344,-18,0,0 +2013,8,18,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1007,0,0,1320,-34,0,0 +2013,6,29,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,720,-6,0,1007,12,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2020,31,1,2241,29,1,0 +2013,6,28,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1109,-4,0,1359,3,0,0 +2013,8,17,6,YV,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-1,0,1849,13,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,851,-1,0,1045,-15,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,840,-4,0,1719,-21,0,0 +2013,6,9,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1459,-3,0,1635,4,0,0 +2013,4,19,5,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,13,0,1735,8,0,0 +2013,9,22,7,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1523,-4,0,1724,-13,0,0 +2013,5,19,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,21,1,930,17,1,0 +2013,4,4,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,0,0,1105,14,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,314,1,1240,310,1,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,900,-2,0,1150,-6,0,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1750,13,0,1900,5,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1525,5,0,1750,-16,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1300,14,0,1625,19,1,0 +2013,5,30,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,173,1,635,164,1,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1330,29,1,2158,-2,0,0 +2013,10,18,5,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,4,0,1335,1,0,0 +2013,4,24,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1558,-5,0,1620,-5,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1030,32,1,1610,42,1,0 +2013,8,13,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1020,12,0,1259,10,0,0 +2013,6,6,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,6,0,1215,-10,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1615,33,1,1710,25,1,0 +2013,5,21,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,908,0,0,1129,-15,0,0 +2013,5,13,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1845,-6,0,2300,-4,0,0 +2013,7,17,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,955,-7,0,1115,-11,0,0 +2013,5,14,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1850,-8,0,2023,-9,0,0 +2013,7,5,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1919,-1,0,2044,-15,0,0 +2013,7,30,2,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-8,0,1122,1,0,0 +2013,4,29,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,715,-5,0,833,70,1,0 +2013,4,30,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,700,-7,0,833,0,0,0 +2013,10,13,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1850,9,0,2045,2,0,0 +2013,6,29,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1256,110,1,1626,97,1,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,735,-3,0,904,-6,0,0 +2013,5,25,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1024,-5,0,1316,-9,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-6,0,1112,-13,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,9,0,1040,5,0,0 +2013,4,8,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1620,-5,0,1919,-9,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,730,3,0,1100,-5,0,0 +2013,4,1,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,705,0,0,1520,6,0,0 +2013,10,12,6,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1110,1,0,1440,10,0,0 +2013,6,12,3,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,27,1,1050,24,1,0 +2013,6,22,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,945,7,0,1040,4,0,0 +2013,5,8,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,10,0,1240,-12,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1720,5,0,2045,0,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1020,-4,0,1257,-21,0,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,4,0,1620,24,1,0 +2013,5,11,6,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1035,-3,0,1425,-28,0,0 +2013,8,30,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-3,0,1005,-22,0,0 +2013,10,14,1,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1102,33,1,1415,30,1,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,-4,0,1308,12,0,0 +2013,5,19,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,812,1,0,926,9,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,-2,0,1600,18,1,0 +2013,8,10,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-5,0,1220,-13,0,0 +2013,8,17,6,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1820,-2,0,2026,-22,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1340,-3,0,1346,-10,0,0 +2013,9,9,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,1,0,1640,17,1,0 +2013,7,9,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,46,1,2130,41,1,0 +2013,9,26,4,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-6,0,1040,-28,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,101,1,2010,94,1,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1503,36,1,1735,21,1,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,920,13,0,1335,15,1,0 +2013,6,2,7,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,725,-1,0,1022,-8,0,0 +2013,5,24,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,0,0,1340,3,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2054,-3,0,2358,5,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1549,31,1,2021,8,0,0 +2013,8,31,6,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,540,-4,0,739,53,1,0 +2013,10,8,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-11,0,751,-19,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2059,8,0,2220,15,1,0 +2013,5,8,3,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,0,0,1815,57,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-3,0,1240,-20,0,0 +2013,8,25,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1135,-3,0,1259,-10,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,700,-2,0,745,-4,0,0 +2013,10,8,2,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-4,0,1004,3,0,0 +2013,5,5,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1107,5,0,1210,6,0,0 +2013,5,4,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,815,-1,0,946,7,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,26,1,1447,7,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,12,0,1100,23,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1625,2,0,2030,-21,0,0 +2013,5,30,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1820,48,1,1850,39,1,0 +2013,10,4,5,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,-6,0,1135,-8,0,0 +2013,10,30,3,B6,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1553,-10,0,1845,7,0,0 +2013,8,6,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1252,-22,0,0 +2013,5,31,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,1,0,2105,8,0,0 +2013,10,21,1,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1705,12,0,1825,7,0,0 +2013,5,16,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,4,0,1245,-6,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,955,0,0,1305,-13,0,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,36,1,2127,50,1,0 +2013,6,7,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,11,0,1805,14,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,65,1,1300,70,1,0 +2013,9,18,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1015,53,1,1139,27,1,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1741,-7,0,2359,-21,0,0 +2013,6,24,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1315,-7,0,1440,14,0,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1705,-3,0,1825,-6,0,0 +2013,6,26,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1256,-8,0,1421,-5,0,0 +2013,4,5,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1315,-1,0,1440,-2,0,0 +2013,5,18,6,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2110,0,0,2208,-9,0,0 +2013,5,1,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,2125,5,0,2155,18,1,0 +2013,7,13,6,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2349,-8,0,715,-12,0,0 +2013,4,11,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,536,-3,0,721,-14,0,0 +2013,6,18,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,0,0,904,-1,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1514,1,0,1635,-3,0,0 +2013,6,6,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1135,15,1,1235,3,0,0 +2013,10,27,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,955,136,1,1045,140,1,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,46,1,2305,38,1,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,4,0,2130,10,0,0 +2013,8,29,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,0,0,1922,2,0,0 +2013,7,11,4,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1715,-3,0,2048,-13,0,0 +2013,6,3,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1525,19,1,1932,6,0,0 +2013,10,4,5,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1405,6,0,2000,7,0,0 +2013,7,26,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,804,-5,0,1027,-16,0,0 +2013,10,30,3,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,1010,-7,0,1235,-19,0,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1730,3,0,2014,0,0,0 +2013,5,27,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2000,94,1,2215,86,1,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1610,-7,0,1735,1,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,0,0,1915,-8,0,0 +2013,9,9,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1556,-14,0,1809,-23,0,0 +2013,10,17,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-3,0,1305,-12,0,0 +2013,4,21,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-9,0,2251,-15,0,0 +2013,10,30,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1432,26,1,1613,14,0,0 +2013,10,24,4,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,50,1,1955,52,1,0 +2013,8,18,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1623,-5,0,1735,-16,0,0 +2013,4,21,7,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1632,-11,0,1920,-3,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1230,13,0,1330,15,1,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1253,13,0,1614,36,1,0 +2013,5,2,4,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1210,5,0,1344,8,0,0 +2013,9,9,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1331,-10,0,1523,-23,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,0,,1110,0,1,1 +2013,9,10,2,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1600,-10,0,1720,-13,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2130,15,1,2250,11,0,0 +2013,9,26,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-3,0,1251,-8,0,0 +2013,4,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1121,-7,0,1216,-4,0,0 +2013,4,11,4,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1846,-7,0,1929,3,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,735,-3,0,1012,-18,0,0 +2013,9,27,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,49,1,955,25,1,0 +2013,5,26,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-6,0,1235,-22,0,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,11,0,2035,-4,0,0 +2013,9,27,5,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,600,-3,0,744,-22,0,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1339,17,1,2222,0,0,0 +2013,10,16,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-3,0,1335,-10,0,0 +2013,7,5,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1046,-1,0,1212,-13,0,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-4,0,2056,11,0,0 +2013,10,5,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,545,-6,0,737,-14,0,0 +2013,6,11,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2114,-6,0,2229,8,0,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1135,34,1,1355,43,1,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1033,-5,0,1340,-27,0,0 +2013,4,12,5,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1420,-3,0,1632,-21,0,0 +2013,5,16,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,36,1,1700,33,1,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,-5,0,1036,-11,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1505,-4,0,1835,-4,0,0 +2013,6,7,5,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,-2,0,2303,5,0,0 +2013,5,23,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,-9,0,2108,-22,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1941,-1,0,2140,-10,0,0 +2013,8,9,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,238,1,1559,238,1,0 +2013,5,16,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-9,0,1121,-7,0,0 +2013,8,29,4,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,10,0,1717,19,1,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1020,-6,0,1256,-1,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,730,13,0,1040,7,0,0 +2013,8,18,7,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1755,74,1,2255,67,1,0 +2013,4,3,3,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,-8,0,1918,-13,0,0 +2013,4,8,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1420,1,0,2010,-23,0,0 +2013,8,19,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1303,-1,0,1444,6,0,0 +2013,8,18,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1350,-2,0,1735,-10,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1200,-6,0,1432,9,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,20,1,1525,10,0,0 +2013,7,20,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-4,0,1412,-10,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2252,28,1,26,17,1,0 +2013,10,29,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1535,0,0,1715,-14,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1105,1,0,1435,13,0,0 +2013,4,21,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1144,-2,0,1359,7,0,0 +2013,10,13,7,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1635,7,0,1825,16,1,0 +2013,10,7,1,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1400,-4,0,1619,2,0,0 +2013,4,28,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-10,0,1955,1,0,0 +2013,4,19,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-3,0,1238,-17,0,0 +2013,6,5,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-2,0,1036,-6,0,0 +2013,7,19,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,-3,0,2035,0,0,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1045,-7,0,1145,-9,0,0 +2013,8,23,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1627,-4,0,1915,8,0,0 +2013,10,13,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-6,0,1405,-20,0,0 +2013,7,2,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-3,0,1617,11,0,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-5,0,1558,-12,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,20,1,2236,12,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1715,62,1,1840,58,1,0 +2013,10,20,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-8,0,1304,-13,0,0 +2013,9,29,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1222,-13,0,1359,-4,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1945,-2,0,2318,-18,0,0 +2013,10,10,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,8,0,2230,2,0,0 +2013,7,15,1,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,-3,0,1010,-1,0,0 +2013,4,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1220,8,0,1350,1,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1349,-5,0,1435,-10,0,0 +2013,7,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,1,0,2025,-1,0,0 +2013,4,28,7,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1644,17,1,1940,13,0,0 +2013,5,15,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1729,0,,1920,0,1,1 +2013,9,23,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1916,-9,0,2127,-27,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1605,33,1,1735,18,1,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1803,-1,0,2106,19,1,0 +2013,8,20,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2040,9,0,2055,6,0,0 +2013,8,28,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,4,0,2115,1,0,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1550,-2,0,1833,49,1,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,3,0,1510,-7,0,0 +2013,10,24,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,25,1,2130,22,1,0 +2013,4,20,6,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1340,36,1,1520,43,1,0 +2013,9,3,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-10,0,656,-12,0,0 +2013,9,9,1,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1845,0,0,2014,8,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1740,4,0,1845,-12,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,0,0,1536,-12,0,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1230,0,0,1410,-8,0,0 +2013,4,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1925,6,0,2245,-6,0,0 +2013,5,26,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-6,0,34,2,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1249,-4,0,1512,-14,0,0 +2013,10,6,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2216,-4,0,2359,-15,0,0 +2013,10,15,2,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-2,0,1910,-15,0,0 +2013,7,24,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2105,30,1,2200,26,1,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,96,1,2255,89,1,0 +2013,9,15,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,800,10,0,1015,20,1,0 +2013,7,26,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1145,21,1,1750,23,1,0 +2013,6,11,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,615,0,0,745,-3,0,0 +2013,9,28,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1525,-2,0,1650,-7,0,0 +2013,6,2,7,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1815,4,0,2045,38,1,0 +2013,7,9,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,52,1,2125,30,1,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2010,6,0,2340,0,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,1,0,1115,-7,0,0 +2013,9,11,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1740,-10,0,1812,-2,0,0 +2013,6,13,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-11,0,1955,-13,0,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-6,0,930,-15,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,819,-3,0,1144,-29,0,0 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,957,-4,0,1053,-10,0,0 +2013,5,12,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,-3,0,2035,-11,0,0 +2013,5,31,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-9,0,33,-5,0,0 +2013,6,9,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,1010,-12,0,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-6,0,2335,-13,0,0 +2013,5,26,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,7,0,1008,-3,0,0 +2013,6,14,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,840,12,0,1019,9,0,0 +2013,8,24,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1639,-8,0,1918,-12,0,0 +2013,7,13,6,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-2,0,851,-9,0,0 +2013,5,29,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-5,0,2332,-19,0,0 +2013,9,21,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1210,1,0,1612,-20,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-4,0,855,-6,0,0 +2013,10,25,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1945,-10,0,2121,-18,0,0 +2013,7,26,5,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1200,38,1,2013,45,1,0 +2013,7,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,-3,0,2050,0,0,0 +2013,9,15,7,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2130,-9,0,5,9,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1400,18,1,1450,9,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1200,0,0,1320,-2,0,0 +2013,5,25,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,4,0,2005,0,0,0 +2013,7,17,3,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-5,0,1750,0,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,620,-5,0,845,-2,0,0 +2013,4,4,4,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1140,138,1,2011,136,1,0 +2013,4,2,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1130,-1,0,1300,-9,0,0 +2013,7,20,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-4,0,847,8,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1920,40,1,2105,38,1,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,63,1,1530,57,1,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2038,-4,0,2212,-24,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1343,-3,0,1514,-31,0,0 +2013,9,8,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-7,0,1412,-22,0,0 +2013,8,9,5,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,735,-10,0,1005,-22,0,0 +2013,5,23,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1519,-2,0,1758,-27,0,0 +2013,7,10,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,8,0,1421,29,1,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1950,43,1,2145,15,1,0 +2013,4,13,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1135,-4,0,1505,17,1,0 +2013,7,15,1,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1550,20,1,1805,2,0,0 +2013,9,6,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,-1,0,810,-7,0,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,730,1,0,830,7,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1512,-7,0,2117,-33,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,12,0,1957,20,1,0 +2013,9,7,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1720,184,1,2046,169,1,0 +2013,8,23,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,-6,0,19,0,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-1,0,1250,1,0,0 +2013,7,2,2,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1111,0,,1409,0,1,1 +2013,8,7,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,605,0,0,855,47,1,0 +2013,8,6,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,0,0,1735,-2,0,0 +2013,9,24,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1500,-6,0,1724,-17,0,0 +2013,10,31,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,625,-3,0,705,-9,0,0 +2013,10,11,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1545,0,0,1605,-7,0,0 +2013,10,21,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,615,-1,0,730,-9,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,740,-2,0,1200,8,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,-5,0,1310,-12,0,0 +2013,7,21,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,1,0,1409,0,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1030,8,0,1300,15,1,0 +2013,10,13,7,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2145,15,1,2358,-5,0,0 +2013,6,30,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1755,0,,2000,0,1,1 +2013,9,18,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,-7,0,1823,-10,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,11,0,2020,38,1,0 +2013,8,1,4,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1020,-8,0,1238,-5,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1040,4,0,1215,25,1,0 +2013,4,18,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1425,3,0,1549,-11,0,0 +2013,9,26,4,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,1525,-2,0,1729,-5,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,29,1,1330,14,0,0 +2013,10,14,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,-3,0,901,-3,0,0 +2013,10,10,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,28,1,1310,14,0,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1850,-6,0,100,-14,0,0 +2013,6,9,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1443,16,1,1542,-1,0,0 +2013,9,8,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-10,0,2050,1,0,0 +2013,10,2,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1120,7,0,1314,13,0,0 +2013,9,8,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1337,-21,0,0 +2013,10,31,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-4,0,1309,4,0,0 +2013,6,4,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1909,-5,0,2024,-9,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,7,0,1710,-3,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1755,107,1,1919,115,1,0 +2013,10,20,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2020,52,1,2302,49,1,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2015,31,1,2220,29,1,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1735,-5,0,2022,35,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1305,82,1,1440,72,1,0 +2013,9,26,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1825,-5,0,1850,-22,0,0 +2013,8,18,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1018,-8,0,0 +2013,10,4,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-3,0,2132,-5,0,0 +2013,6,20,4,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,-3,0,1105,-22,0,0 +2013,10,17,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1537,-3,0,1649,-1,0,0 +2013,10,1,2,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-5,0,2025,-13,0,0 +2013,7,12,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1420,195,1,1555,185,1,0 +2013,9,24,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1530,9,0,1700,-10,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,89,1,1255,81,1,0 +2013,6,24,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1118,-9,0,1215,0,0,0 +2013,9,15,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,1,0,1145,1,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1100,-1,0,1333,-7,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1215,-3,0,1510,-18,0,0 +2013,5,14,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1100,4,0,1215,-2,0,0 +2013,10,20,7,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1534,32,1,1545,19,1,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,94,1,1815,89,1,0 +2013,10,24,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-4,0,859,14,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,756,-7,0,935,4,0,0 +2013,10,7,1,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1215,5,0,1303,10,0,0 +2013,7,13,6,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1745,133,1,2309,130,1,0 +2013,8,31,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1331,-8,0,1444,-24,0,0 +2013,6,29,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1905,157,1,2052,134,1,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1125,0,0,1405,-4,0,0 +2013,5,10,5,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-1,0,1950,-15,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2050,17,1,2205,-4,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1530,4,0,1635,-9,0,0 +2013,10,21,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1904,-4,0,2018,-18,0,0 +2013,8,2,5,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,1246,-7,0,1435,-19,0,0 +2013,10,18,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1221,-3,0,1925,-17,0,0 +2013,9,27,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,701,-3,0,1100,-3,0,0 +2013,4,5,5,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1402,-2,0,1655,-5,0,0 +2013,8,2,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1240,-6,0,1610,-24,0,0 +2013,5,16,4,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1625,10,0,1918,9,0,0 +2013,9,29,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1855,8,0,2145,8,0,0 +2013,10,4,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1150,-2,0,1407,-9,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-3,0,1825,-6,0,0 +2013,5,12,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-9,0,1130,3,0,0 +2013,6,13,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1416,0,,1535,0,1,1 +2013,7,2,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2130,39,1,15,25,1,0 +2013,10,15,2,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1704,-3,0,1919,-12,0,0 +2013,7,6,6,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1514,-8,0,1735,-9,0,0 +2013,4,8,1,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1640,0,0,1920,-11,0,0 +2013,10,4,5,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,700,-4,0,1047,-11,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,-5,0,1807,-15,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,6,0,1210,11,0,0 +2013,5,16,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-1,0,830,-7,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2034,6,0,2149,-2,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,0,,1420,0,1,1 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1247,-1,0,1835,18,1,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1010,-3,0,1540,0,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,0,0,900,0,0,0 +2013,9,9,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,950,-3,0,1100,-13,0,0 +2013,8,14,3,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,545,-1,0,650,-7,0,0 +2013,10,20,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1246,-18,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1920,68,1,2230,59,1,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,11,0,2115,-10,0,0 +2013,4,16,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1757,-4,0,1855,6,0,0 +2013,9,16,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-5,0,1028,-7,0,0 +2013,7,22,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-3,0,1341,-10,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1545,-3,0,1713,-13,0,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,824,-6,0,921,-15,0,0 +2013,10,23,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,723,-9,0,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1229,-5,0,1458,-30,0,0 +2013,8,21,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-7,0,1705,-12,0,0 +2013,6,24,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,530,-3,0,627,-1,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,-7,0,1545,-16,0,0 +2013,7,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,-4,0,1145,5,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,635,-8,0,953,-7,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,857,-4,0,1340,-8,0,0 +2013,8,17,6,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-6,0,914,1,0,0 +2013,8,18,7,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1935,118,1,2045,116,1,0 +2013,7,5,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-3,0,815,-18,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,4,0,1743,-11,0,0 +2013,10,4,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1801,-6,0,2052,11,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,0,0,1625,8,0,0 +2013,7,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,946,3,0,1007,34,1,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2125,-3,0,15,-3,0,0 +2013,5,10,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1749,-5,0,0 +2013,8,11,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,18,1,1536,5,0,0 +2013,4,18,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,3,0,855,17,1,0 +2013,5,31,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1256,7,0,1655,-3,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1500,83,1,1845,137,1,0 +2013,5,14,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1135,10,0,1420,-1,0,0 +2013,5,16,4,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1806,-2,0,2012,-9,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1215,1,0,1325,3,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2205,-4,0,2347,-12,0,0 +2013,10,6,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,2,0,1250,16,1,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,44,1,1817,36,1,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,6,0,2230,-8,0,0 +2013,7,24,3,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,47,1,1556,46,1,0 +2013,10,16,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1640,8,0,1840,-4,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2150,2,0,2315,-4,0,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,952,-1,0,1525,0,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,21,1,2030,17,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2150,-1,0,25,-12,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,-3,0,1328,-21,0,0 +2013,8,22,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,-10,0,1855,-4,0,0 +2013,9,20,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-4,0,1402,-5,0,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,13,0,1911,2,0,0 +2013,6,6,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,801,2,0,852,-7,0,0 +2013,6,28,5,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1425,3,0,1545,-16,0,0 +2013,9,10,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1835,16,1,2008,3,0,0 +2013,4,12,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,140,1,1522,126,1,0 +2013,4,10,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,752,-19,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,36,1,1750,43,1,0 +2013,8,21,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1918,3,0,115,11,0,0 +2013,9,25,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1755,0,0,1850,10,0,0 +2013,4,6,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1254,2,0,1500,-9,0,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,641,8,0,918,19,1,0 +2013,8,21,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-12,0,1310,-23,0,0 +2013,7,13,6,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1425,0,0,1615,-12,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1855,15,1,1950,9,0,0 +2013,9,9,1,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,2200,-3,0,2258,0,0,0 +2013,10,29,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1815,-3,0,2010,2,0,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-2,0,1519,-20,0,0 +2013,8,27,2,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,0,0,1305,1,0,0 +2013,6,29,6,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,855,-8,0,1130,-21,0,0 +2013,4,16,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,920,-4,0,1120,-3,0,0 +2013,5,19,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1202,96,1,1333,88,1,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1545,0,,2127,0,1,1 +2013,8,15,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,955,4,0,1050,-1,0,0 +2013,8,11,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1225,-10,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,3,0,1042,6,0,0 +2013,7,28,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2241,164,1,635,139,1,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,929,-4,0,1112,-15,0,0 +2013,5,30,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1015,-24,0,0 +2013,7,13,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-2,0,1255,0,0,0 +2013,6,26,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,925,0,,945,0,1,1 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1410,4,0,1840,-4,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1540,9,0,1712,-8,0,0 +2013,6,9,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,-3,0,1140,-17,0,0 +2013,10,4,5,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1215,13,0,1255,22,1,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1527,-1,0,1637,5,0,0 +2013,9,25,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,641,-7,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1015,-9,0,1305,-6,0,0 +2013,5,13,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-5,0,740,-17,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1046,-5,0,1220,-13,0,0 +2013,4,14,7,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-2,0,1222,-5,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1549,-3,0,1730,-14,0,0 +2013,7,21,7,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,20,1,2115,62,1,0 +2013,9,13,5,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1954,25,1,2109,12,0,0 +2013,9,5,4,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1215,40,1,2018,43,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,51,1,2119,48,1,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,11,0,1055,-6,0,0 +2013,4,26,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,0,0,1635,-8,0,0 +2013,10,29,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1323,-4,0,1553,-12,0,0 +2013,10,13,7,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1255,2,0,1510,6,0,0 +2013,10,9,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1630,-5,0,1700,-13,0,0 +2013,7,21,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,3,0,1920,-8,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,19,1,2240,11,0,0 +2013,8,25,7,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,17,1,2354,-20,0,0 +2013,8,23,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,715,-4,0,1018,-13,0,0 +2013,8,13,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1059,0,0,1215,7,0,0 +2013,6,4,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,600,-3,0,752,-1,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1736,-4,0,1926,-19,0,0 +2013,5,14,2,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2113,-4,0,2346,-3,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,609,5,0,1035,8,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1005,-5,0,1145,-12,0,0 +2013,5,4,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,830,0,0,1026,-10,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,-4,0,1258,-25,0,0 +2013,6,24,1,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1239,40,1,1539,30,1,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1430,1,0,1706,1,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2039,66,1,2204,41,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,-2,0,2107,-5,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,4,0,2310,7,0,0 +2013,10,12,6,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1640,-2,0,2150,-17,0,0 +2013,10,8,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,840,-8,0,859,-12,0,0 +2013,4,2,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,-6,0,748,-3,0,0 +2013,5,12,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1549,80,1,2005,31,1,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,835,-3,0,951,-30,0,0 +2013,5,24,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1132,13,0,1940,2,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1210,265,1,1315,270,1,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-6,0,859,-12,0,0 +2013,7,10,3,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1553,255,1,1816,282,1,0 +2013,4,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,1,0,1213,8,0,0 +2013,10,28,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2000,10,0,2140,-7,0,0 +2013,4,3,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1911,-5,0,1941,-21,0,0 +2013,6,30,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1004,-4,0,1103,-17,0,0 +2013,7,26,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1755,3,0,2120,-3,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1400,4,0,1625,-9,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1040,-2,0,1740,-20,0,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1723,0,0,2135,-13,0,0 +2013,10,1,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1824,-6,0,1949,11,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1526,-2,0,1913,-9,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,10,0,1510,4,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,923,-1,0,1229,-15,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2120,159,1,2210,152,1,0 +2013,6,3,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,905,-4,0,1035,-4,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1456,2,0,1722,-16,0,0 +2013,5,20,1,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,820,-2,0,947,-2,0,0 +2013,6,7,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-3,0,1508,-2,0,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,755,-12,0,0 +2013,9,27,5,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1350,-1,0,2155,19,1,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1907,8,0,2227,-1,0,0 +2013,5,11,6,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-8,0,1110,-45,0,0 +2013,4,23,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1024,-2,0,1311,-5,0,0 +2013,10,8,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1506,-3,0,1838,7,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1255,26,1,1645,22,1,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,32,1,1140,41,1,0 +2013,5,3,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,-4,0,1505,2,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,740,-6,0,1039,-17,0,0 +2013,9,5,4,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,-4,0,2055,-20,0,0 +2013,8,8,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,-2,0,2230,-7,0,0 +2013,4,1,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,941,-5,0,1133,-14,0,0 +2013,8,22,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,14,0,1527,3,0,0 +2013,7,21,7,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-2,0,715,-13,0,0 +2013,9,4,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1255,-11,0,0 +2013,4,15,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1855,-2,0,2240,-14,0,0 +2013,6,24,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,6,0,1035,51,1,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,0,0,1540,-14,0,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,17,1,2100,-1,0,0 +2013,7,4,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1025,0,0,1210,-9,0,0 +2013,4,10,3,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1710,87,1,1845,117,1,0 +2013,6,6,4,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1830,11,0,1950,2,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,33,1,35,25,1,0 +2013,8,10,6,EV,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,-7,0,1417,-2,0,0 +2013,9,4,3,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1117,-12,0,1234,-11,0,0 +2013,8,29,4,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-6,0,1245,-14,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,835,-5,0,852,-10,0,0 +2013,7,19,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1915,113,1,2210,112,1,0 +2013,8,25,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1514,28,1,1726,23,1,0 +2013,8,7,3,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1629,200,1,1937,212,1,0 +2013,4,1,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1052,62,1,1241,50,1,0 +2013,4,1,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1431,-2,0,1643,-13,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1005,-6,0,1320,-33,0,0 +2013,8,16,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1205,0,0,1359,-6,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1900,-7,0,100,12,0,0 +2013,5,13,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,750,-2,0,1030,-28,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1120,-5,0,1220,-10,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,600,2,0,805,-6,0,0 +2013,10,22,2,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1456,-11,0,1641,-21,0,0 +2013,6,15,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-1,0,2153,1,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,-1,0,1145,-9,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1037,-5,0,1224,-19,0,0 +2013,10,14,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1325,3,0,1355,3,0,0 +2013,7,29,1,FL,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1025,-12,0,1302,-4,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,705,-4,0,920,5,0,0 +2013,9,12,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-3,0,1405,56,1,0 +2013,7,14,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,-8,0,1125,-1,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1511,-8,0,1636,-18,0,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1640,15,1,1935,-4,0,0 +2013,4,29,1,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1810,-6,0,2055,3,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1820,-1,0,2140,-16,0,0 +2013,5,12,7,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-1,0,1150,13,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,-4,0,2023,-7,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,0,0,1204,-11,0,0 +2013,8,27,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1215,-5,0,1450,-13,0,0 +2013,6,10,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,920,6,0,1020,12,0,0 +2013,6,13,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1405,12,0,1510,5,0,0 +2013,7,30,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,916,0,0,1013,4,0,0 +2013,6,30,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2239,10,0,453,-6,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,226,1,2200,217,1,0 +2013,5,18,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,901,-1,0,1035,-13,0,0 +2013,6,18,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,100,1,1845,97,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2206,3,0,2343,12,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1615,11,0,1720,9,0,0 +2013,8,22,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1358,-9,0,1526,-4,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,700,-6,0,900,-8,0,0 +2013,4,6,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-2,0,1010,-26,0,0 +2013,5,22,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,620,1,0,710,4,0,0 +2013,8,10,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-3,0,825,-5,0,0 +2013,9,3,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1706,-8,0,2218,-8,0,0 +2013,7,19,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-12,0,1213,-31,0,0 +2013,9,23,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1658,-2,0,2210,-12,0,0 +2013,8,11,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,-1,0,1850,-6,0,0 +2013,4,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1620,9,0,1855,5,0,0 +2013,9,23,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1500,79,1,1625,58,1,0 +2013,7,31,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,60,1,1902,60,1,0 +2013,10,30,3,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1727,-8,0,1806,6,0,0 +2013,8,9,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1112,-5,0,1200,-21,0,0 +2013,10,5,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-3,0,1416,-12,0,0 +2013,5,17,5,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2100,-7,0,2345,-1,0,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-8,0,2355,-9,0,0 +2013,7,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,0,0,1450,-5,0,0 +2013,8,26,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2145,-7,0,605,9,0,0 +2013,8,31,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-9,0,1918,-9,0,0 +2013,9,13,5,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1046,-6,0,1437,-11,0,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,625,-1,0,820,-5,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,745,-5,0,1130,-13,0,0 +2013,4,6,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-9,0,739,-25,0,0 +2013,10,20,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-3,0,1220,-2,0,0 +2013,9,10,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2015,-5,0,2115,-3,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-6,0,1312,-12,0,0 +2013,8,14,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-3,0,843,-17,0,0 +2013,8,20,2,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,1,0,2325,2,0,0 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,630,6,0,1230,-5,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-7,0,2005,28,1,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1804,-10,0,1949,-19,0,0 +2013,8,10,6,9E,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,0,0,1750,-10,0,0 +2013,9,23,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,-2,0,1033,1,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,37,1,1720,36,1,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-3,0,1131,-18,0,0 +2013,6,27,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-2,0,627,-5,0,0 +2013,7,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1751,47,1,1944,31,1,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,2,0,2145,-2,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1030,35,1,1405,24,1,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2225,64,1,2355,57,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1055,11,0,1229,3,0,0 +2013,7,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,2,0,1800,-7,0,0 +2013,9,14,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-7,0,1725,-27,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2107,-4,0,2323,-19,0,0 +2013,10,17,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,615,0,0,940,-7,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,4,0,1255,12,0,0 +2013,9,2,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1439,-16,0,1807,-19,0,0 +2013,6,11,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,802,-3,0,1357,-5,0,0 +2013,5,9,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,0,0,1706,14,0,0 +2013,7,7,7,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,0,0,1451,-12,0,0 +2013,9,13,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,950,-2,0,1135,-8,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2030,5,0,2305,-6,0,0 +2013,8,13,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1505,20,1,1800,11,0,0 +2013,10,19,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1545,0,0,1731,-3,0,0 +2013,9,5,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1000,0,0,1315,-6,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,710,9,0,815,-5,0,0 +2013,4,29,1,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-1,0,1443,-11,0,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,93,1,2241,88,1,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-3,0,1114,12,0,0 +2013,10,14,1,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,918,-3,0,1128,-15,0,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2045,0,0,2210,-4,0,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1450,7,0,1735,0,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1840,27,1,2115,28,1,0 +2013,9,26,4,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-7,0,1545,-17,0,0 +2013,10,29,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-7,0,817,12,0,0 +2013,10,17,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1156,-8,0,1438,-5,0,0 +2013,4,23,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2050,-9,0,2159,-12,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,905,14,0,1125,5,0,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-8,0,1150,15,1,0 +2013,9,16,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-7,0,1345,-5,0,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1530,10,0,1740,-10,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,44,1,1430,37,1,0 +2013,5,3,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,0,0,635,-5,0,0 +2013,5,22,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,10,0,1830,27,1,0 +2013,6,1,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1439,7,0,1614,6,0,0 +2013,5,7,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,-8,0,2156,12,0,0 +2013,8,22,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1245,10,0,1410,9,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1700,15,1,1820,15,1,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-6,0,2155,-16,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1740,0,,1905,0,1,1 +2013,10,28,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,7,0,1930,7,0,0 +2013,6,2,7,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1508,114,1,1835,111,1,0 +2013,7,22,1,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,-3,0,1447,-11,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,13,0,832,8,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,33,1,1900,54,1,0 +2013,10,10,4,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,0,0,747,-6,0,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,5,0,1744,-5,0,0 +2013,10,27,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,847,-8,0,0 +2013,7,20,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1927,12,0,2155,-12,0,0 +2013,7,12,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-3,0,1530,-9,0,0 +2013,6,5,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1455,50,1,1605,113,1,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-1,0,1031,5,0,0 +2013,7,28,7,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,44,1,1200,37,1,0 +2013,6,2,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,19,1,1200,8,0,0 +2013,8,6,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1830,-1,0,1921,-12,0,0 +2013,5,28,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,722,-2,0,1025,-15,0,0 +2013,10,27,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-2,0,1626,2,0,0 +2013,10,1,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,-8,0,1715,-5,0,0 +2013,10,16,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,850,8,0,1045,13,0,0 +2013,4,12,5,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,840,41,1,1435,35,1,0 +2013,6,27,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2020,7,0,2120,11,0,0 +2013,7,9,2,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1550,14,0,1840,3,0,0 +2013,5,31,5,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2140,21,1,2357,89,1,0 +2013,6,20,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2125,0,0,545,0,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-4,0,1435,-15,0,0 +2013,8,30,5,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,0,0,2229,26,1,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,845,-24,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,5,0,1720,-7,0,0 +2013,7,1,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,113,1,1310,93,1,0 +2013,7,13,6,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,845,3,0,1330,9,0,0 +2013,9,16,1,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1925,-6,0,2138,-10,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1558,3,0,1700,-13,0,0 +2013,5,13,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-3,0,1301,-2,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1042,-3,0,1154,-6,0,0 +2013,4,11,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,41,1,1410,14,0,0 +2013,7,2,2,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1745,17,1,1910,15,1,0 +2013,9,26,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,720,0,0,1330,-28,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-4,0,2152,-8,0,0 +2013,6,20,4,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,945,-1,0,1145,-3,0,0 +2013,4,1,1,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1225,-7,0,1405,-14,0,0 +2013,10,28,1,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-3,0,601,-1,0,0 +2013,5,28,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2025,-5,0,2130,-3,0,0 +2013,9,25,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,810,-6,0,1410,-25,0,0 +2013,7,10,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,-1,0,730,-20,0,0 +2013,6,28,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,6,0,1050,7,0,0 +2013,5,23,4,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1930,125,1,2143,142,1,0 +2013,8,7,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1230,4,0,1335,-4,0,0 +2013,10,24,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,2,0,2025,-13,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,-1,0,1330,-17,0,0 +2013,5,13,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2150,0,0,2305,-7,0,0 +2013,6,23,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-2,0,217,-13,0,0 +2013,8,28,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,935,-9,0,950,-11,0,0 +2013,6,14,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-7,0,1315,-18,0,0 +2013,10,15,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-1,0,1130,-9,0,0 +2013,10,30,3,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-4,0,914,-28,0,0 +2013,6,28,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,-4,0,1915,-4,0,0 +2013,4,24,3,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-1,0,920,0,0,0 +2013,4,4,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,629,-3,0,849,9,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,68,1,2330,61,1,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,1,0,1525,58,1,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-6,0,1310,-9,0,0 +2013,7,19,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1010,-6,0,1304,2,0,0 +2013,6,16,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,721,-9,0,1059,-22,0,0 +2013,4,4,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-10,0,1955,-11,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1850,6,0,1950,1,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2010,-6,0,2200,-12,0,0 +2013,10,17,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,800,10,0,1122,7,0,0 +2013,4,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2130,-5,0,2311,-7,0,0 +2013,5,12,7,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1630,-8,0,1902,-26,0,0 +2013,5,22,3,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1525,11,0,1857,3,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1610,218,1,1813,232,1,0 +2013,10,23,3,9E,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1240,-10,0,1438,-13,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1515,14,0,1837,-4,0,0 +2013,9,9,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-6,0,845,-30,0,0 +2013,4,25,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,630,-2,0,735,-12,0,0 +2013,5,31,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1900,33,1,2031,18,1,0 +2013,9,3,2,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1242,4,0,1515,2,0,0 +2013,8,5,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-8,0,730,-12,0,0 +2013,4,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1631,-6,0,1802,-6,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,13,0,2300,-11,0,0 +2013,10,2,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1747,-5,0,0 +2013,9,12,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-5,0,1340,-4,0,0 +2013,4,1,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1737,58,1,2055,76,1,0 +2013,5,19,7,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1815,21,1,2020,13,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1550,7,0,1835,4,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1808,-2,0,2107,-4,0,0 +2013,7,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1830,-8,0,1945,-20,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1410,7,0,1653,-16,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,735,1,0,1205,-17,0,0 +2013,8,15,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1515,2,0,1610,1,0,0 +2013,7,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,2,0,1852,15,1,0 +2013,8,12,1,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,35,1,1345,26,1,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1915,83,1,2040,73,1,0 +2013,8,26,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,189,1,1747,187,1,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1949,0,0,2132,13,0,0 +2013,7,29,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,-7,0,2146,-28,0,0 +2013,9,29,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,2,0,901,2,0,0 +2013,9,21,6,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1120,-2,0,1638,-1,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2050,-1,0,2330,-16,0,0 +2013,10,30,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-8,0,1622,-10,0,0 +2013,6,14,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1055,-6,0,1455,5,0,0 +2013,8,11,7,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1250,-7,0,1535,-13,0,0 +2013,8,17,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,6,0,2055,0,0,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1200,2,0,1445,-4,0,0 +2013,9,20,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1530,139,1,1650,151,1,0 +2013,6,13,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,40,1,1415,32,1,0 +2013,4,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1022,-10,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,59,1,2222,43,1,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1925,66,1,2109,66,1,0 +2013,9,26,4,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1600,5,0,1755,-12,0,0 +2013,8,20,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1815,22,1,2054,1,0,0 +2013,6,12,3,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,720,-2,0,908,17,1,0 +2013,4,2,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-5,0,1355,-16,0,0 +2013,7,9,2,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-3,0,1208,13,0,0 +2013,9,17,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1704,-5,0,2053,-16,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,0,0,1030,-5,0,0 +2013,7,26,5,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1051,81,1,1225,77,1,0 +2013,5,3,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,61,1,1200,70,1,0 +2013,10,23,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1342,-6,0,1512,-18,0,0 +2013,7,8,1,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,11,0,835,2,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,-2,0,1004,-24,0,0 +2013,7,1,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,635,-3,0,837,19,1,0 +2013,7,9,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,21,1,2013,18,1,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2110,-2,0,2215,-17,0,0 +2013,9,27,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,6,0,2042,-11,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,645,-7,0,929,-17,0,0 +2013,7,24,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,859,-5,0,0 +2013,10,18,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,-1,0,2153,-18,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,10,0,1814,2,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1507,87,1,2046,65,1,0 +2013,6,14,5,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1133,-8,0,1300,-22,0,0 +2013,4,17,3,EV,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1308,-3,0,1520,-13,0,0 +2013,9,6,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,959,-10,0,1242,-5,0,0 +2013,5,23,4,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,551,-3,0,905,9,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,0,0,1020,-4,0,0 +2013,6,20,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,940,0,0,1110,-1,0,0 +2013,4,29,1,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-7,0,1112,-9,0,0 +2013,9,21,6,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,0,,716,0,1,1 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1535,7,0,1901,-11,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1420,14,0,1515,53,1,0 +2013,4,14,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1240,40,1,1649,20,1,0 +2013,10,9,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,-1,0,1643,-8,0,0 +2013,6,12,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1529,-8,0,1535,-11,0,0 +2013,9,20,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2203,-3,0,2353,-14,0,0 +2013,10,9,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,847,217,1,1125,200,1,0 +2013,4,19,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1530,-2,0,1931,-4,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,3,0,2150,-1,0,0 +2013,4,17,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1100,-4,0,1313,-8,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1840,6,0,2130,2,0,0 +2013,6,11,2,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1720,26,1,2000,19,1,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,-5,0,2215,-21,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,2,0,810,-6,0,0 +2013,10,29,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,-5,0,1630,3,0,0 +2013,6,25,2,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,46,1,1934,26,1,0 +2013,10,30,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1105,-6,0,1215,-10,0,0 +2013,8,11,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1825,44,1,4,16,1,0 +2013,4,4,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,705,-2,0,1036,-9,0,0 +2013,4,24,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,832,0,0,1625,-23,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1130,38,1,1300,31,1,0 +2013,4,13,6,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1020,46,1,1247,36,1,0 +2013,10,26,6,YV,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,19,1,1507,9,0,0 +2013,5,20,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,11,0,558,4,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1353,12,0,1705,-14,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,750,-1,0,1148,-23,0,0 +2013,6,27,4,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1100,1,0,1250,-15,0,0 +2013,8,24,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1510,1,0,1635,-4,0,0 +2013,8,7,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1350,-3,0,1644,-10,0,0 +2013,10,31,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1350,17,1,1520,10,0,0 +2013,9,4,3,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1600,-3,0,1650,-21,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-1,0,1525,1,0,0 +2013,6,24,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1745,-7,0,2029,-22,0,0 +2013,8,26,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1423,24,1,1648,-3,0,0 +2013,9,7,6,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1900,0,0,2229,6,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-4,0,1134,-4,0,0 +2013,7,21,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1150,-1,0,1701,4,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,10,0,1915,0,0,0 +2013,5,17,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2010,-17,0,2023,-17,0,0 +2013,8,26,1,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,28,1,1614,29,1,0 +2013,8,29,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1040,-12,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,734,0,0,926,7,0,0 +2013,4,1,1,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,545,8,0,746,-4,0,0 +2013,6,24,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1615,-5,0,1726,52,1,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1730,-1,0,2141,-8,0,0 +2013,7,18,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1656,175,1,1918,177,1,0 +2013,8,30,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1215,-1,0,1505,-1,0,0 +2013,8,2,5,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,716,12,0,1008,4,0,0 +2013,5,21,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,739,-1,0,839,-3,0,0 +2013,6,23,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,231,1,2210,235,1,0 +2013,5,16,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-1,0,1654,-2,0,0 +2013,10,26,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,755,-13,0,0 +2013,5,25,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1625,33,1,1915,10,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1340,10,0,1454,-3,0,0 +2013,5,9,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1445,8,0,1651,-12,0,0 +2013,6,9,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1100,106,1,1155,113,1,0 +2013,10,2,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-8,0,1254,-17,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1125,-1,0,1309,7,0,0 +2013,5,27,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1420,0,0,1705,-4,0,0 +2013,5,12,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1936,19,1,2151,27,1,0 +2013,6,4,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1931,-5,0,2100,1,0,0 +2013,6,9,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1825,-11,0,2002,-36,0,0 +2013,7,18,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,805,-2,0,850,-9,0,0 +2013,9,9,1,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1600,-1,0,1700,-4,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,750,-5,0,1015,-20,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-6,0,1428,-9,0,0 +2013,4,14,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,640,-3,0,926,-6,0,0 +2013,6,26,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-11,0,2255,-14,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,930,3,0,1055,46,1,0 +2013,9,2,1,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,940,-2,0,1100,-7,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,0,0,1907,-13,0,0 +2013,7,2,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1355,16,1,1531,10,0,0 +2013,7,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,12,0,2015,14,0,0 +2013,7,25,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,-4,0,2115,-6,0,0 +2013,10,15,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2035,27,1,2155,14,0,0 +2013,10,20,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1005,29,1,1230,20,1,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,940,-5,0,1215,-8,0,0 +2013,4,29,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1520,-9,0,1633,-9,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1124,-7,0,1215,4,0,0 +2013,8,25,7,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-4,0,1949,-12,0,0 +2013,9,11,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1045,-7,0,1210,-9,0,0 +2013,7,19,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,1,0,809,-7,0,0 +2013,5,3,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,8,0,950,3,0,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,959,32,1,1255,11,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1955,8,0,2250,8,0,0 +2013,4,15,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-6,0,937,-8,0,0 +2013,6,21,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-2,0,1519,14,0,0 +2013,7,30,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-3,0,1357,-5,0,0 +2013,6,5,3,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,-2,0,1515,-3,0,0 +2013,5,2,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1635,22,1,1830,-9,0,0 +2013,8,16,5,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1130,21,1,1305,13,0,0 +2013,9,13,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1705,12,0,1835,-2,0,0 +2013,4,18,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-3,0,1824,-9,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1325,-8,0,1630,-15,0,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,-4,0,2348,-8,0,0 +2013,4,7,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1910,1,0,2025,-9,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,8,0,1600,5,0,0 +2013,5,21,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1045,2,0,1602,10,0,0 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,918,-5,0,1055,-14,0,0 +2013,6,30,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1005,17,1,1300,17,1,0 +2013,5,27,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,37,1,2229,20,1,0 +2013,9,9,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1250,32,1,1541,27,1,0 +2013,6,13,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1855,10,0,2301,40,1,0 +2013,7,1,1,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1930,0,,2112,0,1,1 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1245,43,1,1610,58,1,0 +2013,9,8,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1417,0,0,1603,-20,0,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1425,2,0,2020,31,1,0 +2013,6,3,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,0,0,1905,12,0,0 +2013,6,29,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1856,-9,0,0 +2013,6,7,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1345,-17,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,715,97,1,850,94,1,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,730,30,1,850,47,1,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1335,1,0,1945,16,1,0 +2013,8,22,4,DL,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1905,-10,0,2020,-9,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,840,-6,0,1719,-33,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1805,2,0,1937,-14,0,0 +2013,4,10,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1815,-6,0,2341,-6,0,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,10,0,1830,-2,0,0 +2013,6,13,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,141,1,2213,130,1,0 +2013,8,9,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1655,-8,0,2100,39,1,0 +2013,9,25,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2039,-5,0,2311,-18,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2030,45,1,2315,27,1,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,138,1,2159,136,1,0 +2013,5,6,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1123,27,1,1321,20,1,0 +2013,4,16,2,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1518,12,0,1629,4,0,0 +2013,7,9,2,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-9,0,1417,-18,0,0 +2013,6,15,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1320,-1,0,1532,-9,0,0 +2013,5,24,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-2,0,2200,-23,0,0 +2013,9,20,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1450,18,1,1550,15,1,0 +2013,8,16,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,907,-3,0,1129,-18,0,0 +2013,6,15,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1950,22,1,2100,8,0,0 +2013,6,24,1,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,951,-5,0,1453,-9,0,0 +2013,10,19,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,821,-1,0,0 +2013,6,4,2,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,3,0,1810,-10,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,-3,0,1825,-16,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1150,-2,0,1317,-10,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1100,-6,0,1240,-9,0,0 +2013,5,23,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1049,7,0,0 +2013,6,4,2,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1059,-5,0,1258,3,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2115,3,0,2230,-6,0,0 +2013,10,11,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,756,-7,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,730,-3,0,835,-4,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,-1,0,1235,15,1,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1415,-4,0,2241,3,0,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1750,14,0,2005,11,0,0 +2013,9,18,3,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1504,24,1,1658,2,0,0 +2013,7,19,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-1,0,1010,-7,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1520,3,0,1650,-6,0,0 +2013,6,5,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-8,0,1940,60,1,0 +2013,9,25,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-9,0,2152,-25,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1925,-2,0,2001,-13,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1155,36,1,1510,38,1,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,835,2,0,950,-5,0,0 +2013,7,17,3,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,555,-15,0,727,-9,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,615,2,0,730,5,0,0 +2013,9,27,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,76,1,2020,66,1,0 +2013,5,6,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-2,0,720,10,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2015,-6,0,2315,-13,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-1,0,2337,-12,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,-1,0,1140,-10,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1040,12,0,1135,10,0,0 +2013,7,30,2,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-11,0,715,-15,0,0 +2013,8,10,6,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-8,0,1113,-23,0,0 +2013,4,17,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,221,1,1215,212,1,0 +2013,7,18,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-6,0,1645,-15,0,0 +2013,4,19,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,66,1,2035,68,1,0 +2013,4,28,7,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1440,-6,0,1744,-23,0,0 +2013,8,27,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,4,0,2013,8,0,0 +2013,8,8,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,141,1,1825,0,1,1 +2013,7,21,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,163,1,2020,159,1,0 +2013,10,3,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1632,-11,0,0 +2013,10,19,6,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,700,-2,0,950,-3,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1613,-4,0,1722,-27,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-4,0,2143,-17,0,0 +2013,8,9,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-4,0,1741,2,0,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1930,16,1,2304,19,1,0 +2013,9,25,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1940,-12,0,2135,-21,0,0 +2013,7,18,4,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1800,16,1,2030,37,1,0 +2013,5,23,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1645,-6,0,2006,5,0,0 +2013,4,29,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1045,-3,0,1413,-3,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,820,-1,0,1000,8,0,0 +2013,9,14,6,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,-3,0,1945,-20,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1020,-1,0,1301,-26,0,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,163,1,2030,194,1,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,-3,0,1250,0,0,0 +2013,10,10,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,630,0,0,745,3,0,0 +2013,4,13,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1925,91,1,2045,112,1,0 +2013,10,10,4,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,-4,0,1629,-13,0,0 +2013,9,23,1,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,2029,-12,0,2216,-25,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,830,5,0,945,2,0,0 +2013,7,11,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,950,17,1,1219,1,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1611,-6,0,1732,-19,0,0 +2013,7,23,2,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,615,-5,0,656,-5,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1725,0,0,2050,-4,0,0 +2013,7,16,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,600,-5,0,605,-10,0,0 +2013,9,10,2,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1230,-9,0,1445,-5,0,0 +2013,9,6,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1355,-6,0,1437,0,0,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,44,1,1210,46,1,0 +2013,9,3,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1155,-18,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1020,-1,0,1435,-5,0,0 +2013,9,21,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,605,-3,0,700,11,0,0 +2013,8,18,7,OO,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1708,-7,0,1827,-9,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1500,34,1,1605,36,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1500,15,1,1655,1,0,0 +2013,9,7,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,945,-4,0,1045,-1,0,0 +2013,7,6,6,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,834,-1,0,1105,-4,0,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1725,3,0,2032,31,1,0 +2013,9,27,5,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1719,-11,0,1806,1,0,0 +2013,8,1,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1327,-4,0,1429,-16,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1805,10,0,2038,-7,0,0 +2013,9,8,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,5,0,2027,-15,0,0 +2013,6,22,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-5,0,1011,-12,0,0 +2013,9,29,7,OO,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-11,0,1759,-4,0,0 +2013,8,11,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1715,6,0,1850,5,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,730,-1,0,830,-5,0,0 +2013,7,18,4,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,625,-6,0,706,-17,0,0 +2013,5,14,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1635,17,1,1805,23,1,0 +2013,7,16,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1038,10,0,1144,4,0,0 +2013,8,6,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,805,-4,0,820,-3,0,0 +2013,4,18,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1730,56,1,1901,64,1,0 +2013,4,4,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,900,-6,0,1055,-20,0,0 +2013,10,9,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1727,17,1,2055,4,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,13,0,1310,30,1,0 +2013,10,12,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-1,0,1416,-1,0,0 +2013,6,9,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,-4,0,853,-11,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,53,1,1113,51,1,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1920,91,1,2130,105,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,850,0,0,1046,-12,0,0 +2013,9,4,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,750,1,0,1007,-27,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1558,0,0,1927,-13,0,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,705,18,1,955,-3,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,-3,0,2217,12,0,0 +2013,6,30,7,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-2,0,900,-2,0,0 +2013,7,22,1,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-9,0,1442,-11,0,0 +2013,4,3,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1950,34,1,2210,31,1,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,1,0,1320,16,1,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1923,133,1,2213,132,1,0 +2013,9,16,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,639,-1,0,850,-20,0,0 +2013,7,22,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1935,-7,0,2143,-13,0,0 +2013,4,26,5,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,1,0,2217,-4,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,-5,0,2324,16,1,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,-4,0,128,-20,0,0 +2013,6,15,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,10,0,1354,1,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,-5,0,1208,-37,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,-5,0,842,5,0,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1548,-5,0,1714,-7,0,0 +2013,6,19,3,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1626,0,,1918,0,1,1 +2013,4,4,4,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1718,203,1,1919,186,1,0 +2013,6,9,7,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1800,-3,0,2012,1,0,0 +2013,4,21,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,47,1,2100,31,1,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,2,0,1740,-18,0,0 +2013,8,14,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-6,0,2206,-9,0,0 +2013,9,19,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,931,-2,0,1235,-19,0,0 +2013,6,10,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,0,0,2050,8,0,0 +2013,10,7,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,-6,0,922,-10,0,0 +2013,6,29,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,720,-3,0,928,-38,0,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,710,0,0,815,-2,0,0 +2013,10,23,3,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1154,-3,0,1340,-8,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,15,1,1500,11,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1950,-3,0,2136,-22,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1857,-2,0,2030,-6,0,0 +2013,10,30,3,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2130,-11,0,504,-19,0,0 +2013,6,3,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1125,39,1,1230,32,1,0 +2013,4,8,1,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,1650,-5,0,1910,70,1,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1045,0,0,1150,0,0,0 +2013,10,26,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,840,-4,0,855,10,0,0 +2013,5,7,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1300,-1,0,1505,-10,0,0 +2013,8,25,7,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,29,1,1625,17,1,0 +2013,7,26,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-8,0,1128,-9,0,0 +2013,8,20,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,-1,0,2243,2,0,0 +2013,10,31,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-9,0,1420,6,0,0 +2013,9,10,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,2000,1,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1730,17,1,2200,24,1,0 +2013,4,19,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1727,-7,0,2215,-20,0,0 +2013,10,24,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1936,-8,0,2130,-19,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2037,17,1,2236,10,0,0 +2013,10,26,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1550,-1,0,1715,-14,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1300,9,0,1400,9,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-1,0,1325,-13,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1139,-4,0,1230,-30,0,0 +2013,7,24,3,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1139,-2,0,1725,-15,0,0 +2013,5,30,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,-15,0,2211,-8,0,0 +2013,7,28,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,610,1,0,747,1,0,0 +2013,6,18,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1157,76,1,1809,73,1,0 +2013,8,8,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-13,0,1140,-16,0,0 +2013,8,7,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,750,-4,0,855,0,0,0 +2013,8,11,7,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,42,1,1803,29,1,0 +2013,5,13,1,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,859,24,1,1048,13,0,0 +2013,4,30,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1300,-2,0,1405,-8,0,0 +2013,8,17,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,17,1,1333,45,1,0 +2013,7,4,4,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1708,-1,0,1810,-4,0,0 +2013,6,28,5,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1055,32,1,1336,17,1,0 +2013,6,24,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-3,0,810,-7,0,0 +2013,10,6,7,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,1355,-12,0,0 +2013,5,29,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,-3,0,1225,-13,0,0 +2013,5,29,3,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1815,14,0,2135,-4,0,0 +2013,8,12,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,15,1,2350,14,0,0 +2013,6,25,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2340,-2,0,738,-11,0,0 +2013,6,16,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1919,0,0,2009,2,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,112,1,2300,94,1,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,148,1,1937,142,1,0 +2013,9,12,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,177,1,2110,177,1,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,12,0,44,3,0,0 +2013,8,19,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-2,0,1400,-2,0,0 +2013,4,27,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,48,1,1910,12,0,0 +2013,8,5,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,-3,0,1555,-5,0,0 +2013,7,25,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1350,-3,0,1525,-13,0,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1351,-9,0,1658,-12,0,0 +2013,7,26,5,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,-5,0,1051,-8,0,0 +2013,4,16,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-5,0,2110,-10,0,0 +2013,7,8,1,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2025,90,1,2321,80,1,0 +2013,4,2,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,600,0,0,910,2,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1803,24,1,1944,21,1,0 +2013,8,18,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2130,-5,0,2240,2,0,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1220,5,0,1420,7,0,0 +2013,8,19,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,15,1,1543,12,0,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-3,0,1606,8,0,0 +2013,4,18,4,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1232,-5,0,1514,0,0,0 +2013,7,10,3,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,55,-4,0,501,-32,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-1,0,1449,-2,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,704,-6,0,928,-17,0,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1311,-1,0,1423,-9,0,0 +2013,7,1,1,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1930,-2,0,2240,-13,0,0 +2013,4,18,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1303,13,0,1551,0,0,0 +2013,7,7,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,723,-1,0,1006,-4,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,9,0,1635,-1,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,5,0,9,10,0,0 +2013,9,9,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,740,-7,0,1245,-9,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-8,0,1838,-22,0,0 +2013,5,19,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,700,-15,0,1144,-34,0,0 +2013,8,27,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,15,1,2105,-10,0,0 +2013,10,1,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-3,0,2150,-15,0,0 +2013,7,12,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-10,0,945,-11,0,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1240,1,0,1757,-4,0,0 +2013,9,14,6,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,-3,0,1605,-20,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,720,-4,0,925,67,1,0 +2013,10,29,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,725,-2,0,0 +2013,5,27,1,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,913,22,1,1010,18,1,0 +2013,10,7,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,28,1,959,22,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,-2,0,1327,-9,0,0 +2013,10,24,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2000,7,0,2135,-8,0,0 +2013,8,29,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,-7,0,2115,-5,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1805,16,1,1925,1,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,0,0,1400,-1,0,0 +2013,7,1,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,950,-24,0,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,-5,0,1841,-7,0,0 +2013,8,27,2,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-2,0,1033,-21,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,10,0,1000,13,0,0 +2013,7,27,6,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-2,0,855,-4,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,2125,11,0,2325,-9,0,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1005,5,0,1220,-10,0,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1155,16,1,1815,9,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,41,1,2244,13,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1455,-2,0,1831,-19,0,0 +2013,6,5,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2224,-2,0,615,15,1,0 +2013,6,9,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-4,0,1554,-11,0,0 +2013,9,14,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,230,-3,0,646,-7,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1136,16,1,1255,8,0,0 +2013,7,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,-3,0,1028,-12,0,0 +2013,5,3,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,735,-3,0,1110,-18,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1800,3,0,2350,26,1,0 +2013,10,5,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,905,15,1,1025,10,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1528,169,1,1655,158,1,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,2035,3,0,2215,3,0,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1735,-5,0,2029,-10,0,0 +2013,5,26,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,0,0,2000,-24,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,-6,0,1542,-16,0,0 +2013,6,10,1,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1044,-1,0,1259,-19,0,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,-3,0,1420,-9,0,0 +2013,4,13,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1335,-7,0,1515,-12,0,0 +2013,7,20,6,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,26,1,1239,4,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,929,-3,0,1112,3,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,7,0,2145,14,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1050,0,0,1202,-14,0,0 +2013,6,4,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,622,-16,0,750,-21,0,0 +2013,7,26,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,-4,0,1630,-15,0,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,-6,0,2215,-12,0,0 +2013,8,24,6,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2258,-8,0,702,3,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1325,10,0,1630,28,1,0 +2013,4,14,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1430,30,1,1600,25,1,0 +2013,5,10,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,-1,0,810,6,0,0 +2013,6,25,2,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-2,0,1535,-12,0,0 +2013,4,6,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1440,-3,0,1605,-18,0,0 +2013,7,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1508,7,0,1554,8,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1840,12,0,2020,11,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1640,64,1,2320,53,1,0 +2013,6,26,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1615,22,1,1715,20,1,0 +2013,10,12,6,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1355,7,0,1506,14,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,0,0,1300,-1,0,0 +2013,10,14,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1810,-10,0,1905,-18,0,0 +2013,6,23,7,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,-8,0,2210,-10,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1655,17,1,1820,18,1,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1523,9,0,1716,5,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,735,-7,0,940,-10,0,0 +2013,4,28,7,EV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1716,-4,0,1903,-10,0,0 +2013,4,30,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,8,0,1215,6,0,0 +2013,6,5,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2105,-12,0,2305,-31,0,0 +2013,6,14,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,103,1,2115,94,1,0 +2013,6,16,7,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1704,-5,0,1927,-6,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,936,1,0,1030,3,0,0 +2013,6,24,1,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,744,57,1,850,38,1,0 +2013,10,15,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1939,-1,0,2300,-17,0,0 +2013,7,2,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-2,0,1610,10,0,0 +2013,5,14,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1750,42,1,1915,16,1,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,900,-5,0,1025,-16,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1855,0,0,2023,-11,0,0 +2013,7,14,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2250,4,0,702,9,0,0 +2013,9,22,7,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1730,131,1,1905,124,1,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,700,34,1,1314,21,1,0 +2013,10,23,3,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1910,-3,0,2217,-8,0,0 +2013,5,13,1,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1137,-3,0,1427,14,0,0 +2013,9,6,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,907,-5,0,1100,-3,0,0 +2013,6,22,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1330,13,0,1925,5,0,0 +2013,7,24,3,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,-2,0,2025,-14,0,0 +2013,4,4,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,630,17,1,845,-6,0,0 +2013,8,12,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,945,-6,0,1001,-8,0,0 +2013,8,8,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1705,67,1,2020,122,1,0 +2013,5,19,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-8,0,1007,-2,0,0 +2013,4,24,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,-7,0,1930,-18,0,0 +2013,8,18,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-1,0,745,-20,0,0 +2013,10,12,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,43,1,1545,53,1,0 +2013,7,22,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1535,-3,0,1814,-15,0,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1720,-2,0,1851,-28,0,0 +2013,5,8,3,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1338,88,1,1656,82,1,0 +2013,4,1,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,730,-2,0,955,-8,0,0 +2013,10,11,5,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,0,0,805,0,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,47,1,629,30,1,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,-1,0,1529,-19,0,0 +2013,6,29,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1710,-1,0,2015,-16,0,0 +2013,6,24,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1724,0,,1835,0,1,1 +2013,4,22,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1345,68,1,1515,74,1,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1923,0,0,2248,-10,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1640,50,1,1914,45,1,0 +2013,10,27,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,0,0,935,1,0,0 +2013,6,11,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,1,0,1730,0,0,0 +2013,6,22,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1003,-8,0,1200,-18,0,0 +2013,9,15,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1740,0,0,2034,-16,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,-4,0,1651,-10,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1320,-2,0,1612,9,0,0 +2013,7,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1020,7,0,1140,7,0,0 +2013,10,21,1,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-4,0,822,-15,0,0 +2013,7,2,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1458,1,0,1944,-11,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,950,-4,0,1100,-7,0,0 +2013,7,29,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,-3,0,903,-18,0,0 +2013,8,1,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-6,0,1344,-7,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-4,0,2140,-15,0,0 +2013,6,23,7,FL,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1025,-5,0,1302,-1,0,0 +2013,5,14,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,854,-5,0,1310,-13,0,0 +2013,9,11,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1916,-8,0,2025,-13,0,0 +2013,7,29,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-12,0,852,-14,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1545,63,1,1710,101,1,0 +2013,4,8,1,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1310,0,0,2135,-10,0,0 +2013,6,5,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1400,17,1,1450,11,0,0 +2013,8,22,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,15,1,1735,14,0,0 +2013,5,24,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1230,-10,0,0 +2013,9,4,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-5,0,641,-18,0,0 +2013,4,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,948,73,1,1050,69,1,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1007,10,0,1420,-26,0,0 +2013,5,20,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,1,0,1806,-4,0,0 +2013,10,7,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1116,-2,0,1247,-2,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,915,5,0,1740,-15,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1642,4,0,1920,-4,0,0 +2013,7,13,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-7,0,1635,10,0,0 +2013,9,22,7,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,730,-5,0,948,-7,0,0 +2013,10,7,1,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1113,14,0,1239,1,0,0 +2013,7,14,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,55,0,0,555,19,1,0 +2013,7,3,3,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,810,-7,0,1630,20,1,0 +2013,5,1,3,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1720,88,1,1908,76,1,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,-2,0,2125,-16,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1050,2,0,1240,-18,0,0 +2013,9,19,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1130,200,1,1343,216,1,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1920,-4,0,2135,-4,0,0 +2013,7,8,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,935,4,0,1105,-5,0,0 +2013,8,18,7,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1327,2,0,1359,-1,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,38,1,1655,39,1,0 +2013,6,1,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,940,-12,0,0 +2013,5,15,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1115,-3,0,1300,-10,0,0 +2013,7,11,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,-4,0,1645,-10,0,0 +2013,7,12,5,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1500,0,0,1722,7,0,0 +2013,7,11,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,0,,130,0,1,1 +2013,7,16,2,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,-3,0,1010,-19,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1425,79,1,1645,70,1,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,910,6,0,1219,-10,0,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1804,13,0,1949,3,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,4,0,1251,8,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,4,0,1806,3,0,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,-3,0,2247,-16,0,0 +2013,9,19,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,630,13,0,831,-3,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,810,25,1,1005,8,0,0 +2013,5,17,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2112,0,0,2243,-5,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,625,-1,0,750,-6,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1034,-5,0,1148,-17,0,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1805,27,1,2058,24,1,0 +2013,10,19,6,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,722,-4,0,1023,-6,0,0 +2013,5,11,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1529,73,1,1820,110,1,0 +2013,4,11,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1600,8,0,1655,11,0,0 +2013,8,10,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,5,0,1358,6,0,0 +2013,8,22,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,65,1,1227,67,1,0 +2013,9,24,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1700,3,0,1830,-6,0,0 +2013,4,4,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1340,0,0,1500,-6,0,0 +2013,10,29,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1100,-6,0,1205,0,0,0 +2013,4,20,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,0,0,1720,-5,0,0 +2013,4,10,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1830,169,1,2110,245,1,0 +2013,8,31,6,OO,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1430,-3,0,1653,0,0,0 +2013,8,5,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1813,9,0,2012,4,0,0 +2013,7,23,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1305,56,1,1555,51,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2040,-5,0,2150,-15,0,0 +2013,10,3,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1905,77,1,2045,79,1,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,715,-1,0,955,0,0,0 +2013,7,2,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1212,0,0,1953,-3,0,0 +2013,10,5,6,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1520,12,0,1730,6,0,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1000,-11,0,1128,-18,0,0 +2013,8,18,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,955,1,0,1115,3,0,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,1008,-3,0,0 +2013,4,14,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1010,-7,0,1125,9,0,0 +2013,8,22,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1657,25,1,1903,46,1,0 +2013,8,22,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,-8,0,509,-20,0,0 +2013,7,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,-5,0,847,-7,0,0 +2013,9,3,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1310,-10,0,1432,-20,0,0 +2013,10,1,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,2,0,900,4,0,0 +2013,9,2,1,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1245,26,1,1545,48,1,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,2335,-4,0,553,-16,0,0 +2013,8,3,6,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1710,6,0,1940,-3,0,0 +2013,8,29,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1128,-8,0,1921,-12,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1519,2,0,1719,-18,0,0 +2013,4,11,4,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,5,0,1125,-19,0,0 +2013,8,15,4,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,-5,0,729,40,1,0 +2013,8,29,4,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1630,-6,0,1826,-16,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,-4,0,1315,-26,0,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1511,4,0,1853,-8,0,0 +2013,9,3,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,641,-5,0,850,-5,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1905,44,1,2040,44,1,0 +2013,6,28,5,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1932,20,1,30,6,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,-4,0,1245,-21,0,0 +2013,6,15,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-4,0,1310,-2,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-1,0,1050,-9,0,0 +2013,5,10,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-3,0,1820,-32,0,0 +2013,6,18,2,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1200,44,1,1435,46,1,0 +2013,8,31,6,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1500,32,1,1723,30,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1915,9,0,2035,-2,0,0 +2013,9,28,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,3,0,1818,-3,0,0 +2013,10,25,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-7,0,1729,-20,0,0 +2013,4,6,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-3,0,820,5,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,34,1,1930,11,0,0 +2013,8,15,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,50,1,1725,37,1,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1510,-7,0,1719,-5,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,29,1,1320,47,1,0 +2013,9,18,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,4,0,830,-15,0,0 +2013,8,30,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,52,1,1825,48,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1415,92,1,1635,105,1,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1020,-6,0,1133,-6,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,1,0,1105,-7,0,0 +2013,10,16,3,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,24,1,1540,18,1,0 +2013,5,2,4,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2200,-3,0,2325,-15,0,0 +2013,5,26,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1345,0,0,1500,-7,0,0 +2013,7,1,1,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,830,94,1,1024,113,1,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1615,52,1,1800,97,1,0 +2013,7,18,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,620,-3,0,1208,-7,0,0 +2013,8,21,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,902,1,0,0 +2013,9,14,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-9,0,1100,-9,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,27,1,1654,29,1,0 +2013,7,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1600,-4,0,2007,-27,0,0 +2013,7,15,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,0,0,1759,-10,0,0 +2013,9,9,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1151,1,0,1400,-27,0,0 +2013,6,16,7,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1330,-1,0,1552,21,1,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,19,1,1112,12,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,10,0,1940,-5,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-3,0,1224,-8,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2055,2,0,2127,-5,0,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1030,7,0,1220,5,0,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,1,0,1055,4,0,0 +2013,5,1,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-7,0,1925,-5,0,0 +2013,5,18,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1028,-9,0,1338,-19,0,0 +2013,8,29,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1937,8,0,2105,-4,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1730,-2,0,2049,11,0,0 +2013,9,11,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-6,0,1043,-12,0,0 +2013,8,11,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,720,-2,0,1145,18,1,0 +2013,6,5,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,845,4,0,1230,-14,0,0 +2013,7,18,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-5,0,754,-9,0,0 +2013,10,25,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1640,-2,0,1900,-11,0,0 +2013,5,19,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-2,0,754,-6,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,-2,0,1735,-4,0,0 +2013,9,9,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,25,1,1922,31,1,0 +2013,9,20,5,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,1038,-4,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1246,28,1,1408,35,1,0 +2013,8,17,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1414,-5,0,0 +2013,9,27,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1057,-20,0,0 +2013,5,14,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-2,0,726,-11,0,0 +2013,6,14,5,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2334,5,0,524,-1,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,600,0,0,845,-3,0,0 +2013,7,10,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1814,331,1,2105,332,1,0 +2013,8,1,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,719,12,0,0 +2013,8,31,6,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-10,0,1112,-19,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1200,-7,0,1438,-27,0,0 +2013,4,27,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1439,-12,0,0 +2013,5,8,3,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1925,0,0,2120,-15,0,0 +2013,7,30,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,0,0,1737,-20,0,0 +2013,6,7,5,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,2045,-10,0,2330,-25,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2050,5,0,2215,9,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,9,0,2354,12,0,0 +2013,9,1,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-6,0,1220,-12,0,0 +2013,4,25,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1600,14,0,1725,12,0,0 +2013,10,1,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,2,0,1955,-24,0,0 +2013,4,21,7,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1500,-3,0,1721,-11,0,0 +2013,10,17,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1655,7,0,1823,8,0,0 +2013,8,19,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1730,-8,0,2028,-25,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1235,31,1,1410,36,1,0 +2013,5,3,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,635,-5,0,755,-11,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,73,1,2030,60,1,0 +2013,10,17,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,840,-6,0,1020,-17,0,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1430,-7,0,1611,-7,0,0 +2013,4,27,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,4,0,1414,-1,0,0 +2013,8,23,5,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,750,-24,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1953,3,0,2230,-7,0,0 +2013,7,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1655,33,1,1923,29,1,0 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1619,3,0,1919,0,0,0 +2013,8,25,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,747,-5,0,855,-11,0,0 +2013,4,25,4,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1228,8,0,1330,11,0,0 +2013,8,10,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,44,1,1118,37,1,0 +2013,7,14,7,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,123,1,840,136,1,0 +2013,4,9,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1255,-2,0,1420,-1,0,0 +2013,6,22,6,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,945,-2,0,1100,-15,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1825,27,1,2350,22,1,0 +2013,4,8,1,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1605,0,0,1735,-15,0,0 +2013,9,16,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,13,0,1200,11,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1309,-4,0,1738,57,1,0 +2013,6,10,1,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1722,-4,0,1855,-21,0,0 +2013,8,8,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-9,0,1341,-12,0,0 +2013,10,2,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-6,0,1246,-15,0,0 +2013,6,18,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1252,67,1,2117,106,1,0 +2013,6,23,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1001,9,0,1808,8,0,0 +2013,7,27,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,-8,0,1025,0,0,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,137,1,1832,165,1,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1500,2,0,1608,-4,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1635,132,1,2045,148,1,0 +2013,8,30,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1905,35,1,1950,31,1,0 +2013,9,11,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1910,-1,0,2015,-9,0,0 +2013,9,7,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,725,0,0,830,3,0,0 +2013,10,29,2,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1401,6,0,1618,6,0,0 +2013,7,4,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,-1,0,905,-13,0,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1715,1,0,2000,-16,0,0 +2013,10,4,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1046,-5,0,1210,-2,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1959,1,0,2129,-7,0,0 +2013,7,8,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,-7,0,2155,-27,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-7,0,1425,-10,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1250,9,0,1420,-6,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,36,1,930,19,1,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1851,9,0,2010,-6,0,0 +2013,6,21,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,56,1,2137,45,1,0 +2013,9,12,4,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-9,0,1015,-27,0,0 +2013,5,30,4,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,1,0,1215,11,0,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,27,1,1650,19,1,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1245,7,0,1435,-18,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1815,-5,0,2200,-8,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,14,0,1333,4,0,0 +2013,6,12,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1355,32,1,1514,21,1,0 +2013,10,25,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,-5,0,1844,2,0,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1154,0,0,1400,-17,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2225,3,0,2340,-6,0,0 +2013,6,15,6,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,17,-7,0,520,-26,0,0 +2013,7,17,3,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1515,4,0,1825,-3,0,0 +2013,6,16,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-3,0,825,-6,0,0 +2013,4,22,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1630,28,1,1756,40,1,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1238,85,1,1400,76,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,10,0,1725,8,0,0 +2013,4,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-6,0,2052,-4,0,0 +2013,8,22,4,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,141,1,2030,129,1,0 +2013,5,30,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,9,0,1750,7,0,0 +2013,9,7,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-5,0,956,1,0,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,730,5,0,945,23,1,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,0,0,1840,15,1,0 +2013,7,26,5,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1746,-9,0,1905,-14,0,0 +2013,8,2,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,13,0,1914,5,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1933,-2,0,2128,-11,0,0 +2013,5,21,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1516,68,1,1737,61,1,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-4,0,2345,-5,0,0 +2013,9,21,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,5,0,1250,-2,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1328,-5,0,1939,22,1,0 +2013,4,7,7,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1830,47,1,2105,34,1,0 +2013,8,13,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-4,0,1125,-5,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1943,-2,0,2257,2,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,6,0,2104,-3,0,0 +2013,8,30,5,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1530,-3,0,1639,-10,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1903,-3,0,2006,-11,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1335,10,0,1550,-18,0,0 +2013,10,18,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,715,-5,0,747,-5,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,119,1,2229,177,1,0 +2013,10,3,4,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1145,-8,0,1259,-10,0,0 +2013,6,5,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,3,0,815,6,0,0 +2013,10,8,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1100,-18,0,0 +2013,5,21,2,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1217,31,1,1758,16,1,0 +2013,8,25,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1530,83,1,1540,77,1,0 +2013,10,5,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,826,-1,0,1219,-17,0,0 +2013,8,9,5,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1400,133,1,1652,137,1,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1719,7,0,1909,-11,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1813,-2,0,1948,-7,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1600,6,0,1920,5,0,0 +2013,8,13,2,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,625,-6,0,920,-23,0,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2147,0,0,2254,11,0,0 +2013,10,31,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1250,41,1,1420,36,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,-3,0,1147,-19,0,0 +2013,7,21,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1745,-1,0,2037,-5,0,0 +2013,10,1,2,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-4,0,1845,-2,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,707,-4,0,950,-3,0,0 +2013,7,8,1,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,-1,0,1030,-20,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1400,19,1,1505,20,1,0 +2013,8,27,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,0,0,1623,11,0,0 +2013,10,5,6,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1430,6,0,1710,-2,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2130,-5,0,2350,-7,0,0 +2013,6,20,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,1120,-18,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,0,,2210,0,1,1 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-2,0,850,-5,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1250,0,0,1410,-4,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1007,-3,0,1345,-11,0,0 +2013,9,26,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1922,10,0,2256,16,1,0 +2013,7,24,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,-4,0,1705,-8,0,0 +2013,6,10,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1504,4,0,1630,-7,0,0 +2013,6,14,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-6,0,1255,0,0,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2005,5,0,2200,12,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,4,0,910,7,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1951,-1,0,2259,12,0,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2122,147,1,2315,146,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1240,-4,0,1415,-9,0,0 +2013,7,18,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,5,0,635,16,1,0 +2013,5,24,5,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1854,-4,0,2207,-12,0,0 +2013,4,24,3,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,959,31,1,1530,6,0,0 +2013,10,3,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,655,-9,0,907,12,0,0 +2013,7,8,1,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-8,0,955,-20,0,0 +2013,9,25,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2140,12,0,2232,26,1,0 +2013,5,9,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,618,-15,0,650,-7,0,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1810,30,1,2220,28,1,0 +2013,6,5,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11042,Cleveland-Hopkins International,Cleveland,OH,600,-10,0,702,-18,0,0 +2013,6,11,2,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1129,-6,0,1326,-15,0,0 +2013,6,1,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1434,10,0,1555,6,0,0 +2013,6,4,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,745,-1,0,1123,10,0,0 +2013,4,3,3,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,4,0,1901,0,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,722,1,0,855,10,0,0 +2013,6,6,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1711,51,1,1823,98,1,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1427,159,1,1913,144,1,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,61,1,1004,45,1,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1706,4,0,1727,-11,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,0,0,1244,0,0,0 +2013,9,29,7,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1400,7,0,1700,-19,0,0 +2013,7,10,3,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,0,0,901,-1,0,0 +2013,5,17,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,923,-9,0,1041,-2,0,0 +2013,7,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,85,1,1840,79,1,0 +2013,7,6,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,602,-2,0,847,-12,0,0 +2013,8,2,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1445,-5,0,2250,13,0,0 +2013,9,20,5,AA,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,1050,-1,0,1755,-27,0,0 +2013,5,25,6,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1525,-6,0,1810,-4,0,0 +2013,4,5,5,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1005,-4,0,1225,-6,0,0 +2013,7,12,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-5,0,1035,-18,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-10,0,1310,-8,0,0 +2013,4,12,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1300,-1,0,1415,-7,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2040,-1,0,2305,-1,0,0 +2013,6,2,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,920,0,0,1020,-12,0,0 +2013,6,6,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,11,0,1435,14,0,0 +2013,7,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,56,1,2336,76,1,0 +2013,7,16,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,1534,-13,0,0 +2013,7,31,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1100,-5,0,1359,-23,0,0 +2013,4,27,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1010,-8,0,1159,-7,0,0 +2013,4,11,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,142,1,1837,135,1,0 +2013,5,4,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1220,-4,0,0 +2013,6,18,2,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1627,6,0,1904,10,0,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2210,1,0,2351,-8,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-4,0,1305,-10,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1225,2,0,1336,4,0,0 +2013,9,23,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-8,0,1039,3,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-1,0,1655,-14,0,0 +2013,9,30,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,-8,0,1614,2,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-2,0,1159,-16,0,0 +2013,8,4,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1730,14,0,1820,10,0,0 +2013,5,7,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-4,0,1341,-8,0,0 +2013,7,17,3,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1645,31,1,1830,31,1,0 +2013,5,4,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1420,0,0,1555,-11,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-6,0,1720,-25,0,0 +2013,7,17,3,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2015,19,1,2258,0,0,0 +2013,5,23,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,60,1,1720,45,1,0 +2013,8,29,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,0,0,1705,-15,0,0 +2013,7,13,6,DL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,810,-6,0,1146,-10,0,0 +2013,6,15,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,635,16,1,810,6,0,0 +2013,9,15,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2339,-1,0,610,-7,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,940,-2,0,1057,-8,0,0 +2013,5,27,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-2,0,1620,-19,0,0 +2013,4,2,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1135,1,0,1305,-9,0,0 +2013,9,22,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-5,0,1916,-19,0,0 +2013,5,10,5,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,37,1,730,40,1,0 +2013,8,6,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,841,-1,0,1411,-16,0,0 +2013,10,30,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-9,0,1130,-4,0,0 +2013,8,21,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1104,-9,0,1229,-8,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1825,0,0,2125,5,0,0 +2013,10,31,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-9,0,1501,-5,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1825,49,1,2035,50,1,0 +2013,9,2,1,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-6,0,1414,-9,0,0 +2013,8,9,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,-1,0,2020,13,0,0 +2013,10,19,6,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1501,-8,0,1720,-12,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1710,-1,0,1810,11,0,0 +2013,10,1,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1125,12,0,1643,9,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,14,0,1026,7,0,0 +2013,4,13,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,745,-3,0,1030,-15,0,0 +2013,9,5,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-2,0,1954,1,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2115,10,0,5,6,0,0 +2013,10,1,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,12,0,1930,1,0,0 +2013,6,8,6,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-7,0,1140,5,0,0 +2013,4,15,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,1,0,1613,-7,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1050,33,1,1207,30,1,0 +2013,7,11,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-10,0,2226,-6,0,0 +2013,8,16,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1400,19,1,1540,21,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1620,25,1,1847,14,0,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1920,0,0,2244,-7,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1958,-1,0,2135,-9,0,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,4,0,1015,-4,0,0 +2013,9,19,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1610,1,0,2359,29,1,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-2,0,1915,-24,0,0 +2013,9,24,2,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1806,-15,0,2050,-23,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1100,6,0,1253,-5,0,0 +2013,8,24,6,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,3,0,931,2,0,0 +2013,4,28,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,715,-5,0,1003,-13,0,0 +2013,8,12,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-7,0,1018,-7,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-5,0,1813,-23,0,0 +2013,5,4,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1053,-6,0,1314,5,0,0 +2013,5,11,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1355,-8,0,1556,-6,0,0 +2013,4,15,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,0,0,940,-2,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2230,-1,0,2359,-15,0,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1300,0,0,1550,-1,0,0 +2013,4,11,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1230,100,1,1545,134,1,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1345,0,0,1540,-10,0,0 +2013,6,9,7,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1025,12,0,1345,19,1,0 +2013,9,11,3,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1700,1,0,2000,1,0,0 +2013,6,22,6,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1400,-1,0,1605,-15,0,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,800,-3,0,920,28,1,0 +2013,8,8,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,33,1,840,48,1,0 +2013,9,12,4,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,610,-3,0,732,-8,0,0 +2013,8,5,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1345,1,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,810,1,0,1111,1,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,19,1,1811,14,0,0 +2013,9,26,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,4,0,1911,-4,0,0 +2013,4,13,6,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,0,0,1829,8,0,0 +2013,4,9,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1705,-5,0,1905,-4,0,0 +2013,4,5,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-9,0,821,-14,0,0 +2013,6,19,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-8,0,835,-1,0,0 +2013,8,14,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1835,43,1,2155,35,1,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,0,0,1637,-5,0,0 +2013,5,7,2,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1639,-2,0,1933,-9,0,0 +2013,9,16,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-4,0,630,-22,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,905,0,0,1255,15,1,0 +2013,6,8,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1355,2,0,1502,3,0,0 +2013,4,10,3,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,700,10,0,1120,24,1,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1455,-2,0,1601,-25,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-2,0,1340,-16,0,0 +2013,6,18,2,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,2,0,1943,-21,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,911,1,0,1201,-17,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,2,0,2244,-16,0,0 +2013,10,5,6,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-7,0,912,0,0,0 +2013,8,21,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-4,0,1634,-8,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-4,0,913,-20,0,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1653,5,0,2005,-28,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,705,-3,0,945,-8,0,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2219,1,0,2305,-18,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,46,1,950,39,1,0 +2013,4,13,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,955,-3,0,1310,49,1,0 +2013,9,1,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-11,0,1228,3,0,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1420,27,1,1540,16,1,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,612,0,0,836,-19,0,0 +2013,6,4,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-7,0,1600,-17,0,0 +2013,7,24,3,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,-5,0,1220,-7,0,0 +2013,5,12,7,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,1,0,2005,-20,0,0 +2013,5,10,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,835,58,1,1005,49,1,0 +2013,10,9,3,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,6,0,457,4,0,0 +2013,7,26,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,21,1,1218,30,1,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-1,0,1210,1,0,0 +2013,4,27,6,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1315,-2,0,1557,-11,0,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-5,0,645,-20,0,0 +2013,8,15,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1435,19,1,1638,-12,0,0 +2013,7,22,1,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1635,47,1,1820,36,1,0 +2013,10,21,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,915,-5,0,1111,-13,0,0 +2013,10,8,2,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-5,0,709,-13,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,700,1,0,835,-10,0,0 +2013,7,21,7,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1540,15,1,1843,5,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1925,43,1,2144,17,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1535,-1,0,1718,3,0,0 +2013,6,20,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-4,0,628,6,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1450,2,0,1755,0,0,0 +2013,4,18,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1213,39,1,2040,89,1,0 +2013,8,18,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1730,16,1,1940,-10,0,0 +2013,6,11,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-4,0,850,-18,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-2,0,1345,5,0,0 +2013,8,23,5,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,809,65,1,925,54,1,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1410,10,0,1840,-9,0,0 +2013,6,9,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,48,1,1630,48,1,0 +2013,10,2,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1450,-6,0,1555,-17,0,0 +2013,5,18,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,1,0,1807,9,0,0 +2013,5,17,5,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,645,-9,0,733,-11,0,0 +2013,7,13,6,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-5,0,2057,-25,0,0 +2013,6,11,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1626,7,0,1826,0,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-17,0,2147,-5,0,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,725,2,0,820,4,0,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,900,-4,0,1042,-19,0,0 +2013,7,12,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,-5,0,2042,-9,0,0 +2013,7,23,2,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1835,41,1,2100,35,1,0 +2013,9,12,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,-6,0,940,-11,0,0 +2013,4,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2201,-2,0,2315,-13,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,811,0,,1207,0,1,1 +2013,10,25,5,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1451,38,1,1601,36,1,0 +2013,8,7,3,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,-6,0,1546,-11,0,0 +2013,6,26,3,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1135,2,0,1240,-6,0,0 +2013,9,14,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1250,-2,0,1536,-1,0,0 +2013,9,2,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1230,-7,0,1440,-13,0,0 +2013,6,21,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,5,0,1755,-8,0,0 +2013,8,25,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,-3,0,1543,14,0,0 +2013,7,14,7,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1045,28,1,1130,20,1,0 +2013,7,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,825,0,0,920,1,0,0 +2013,6,13,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,4,0,1205,2,0,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-16,0,1814,1,0,0 +2013,8,26,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-7,0,1635,-21,0,0 +2013,8,11,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1110,-1,0,1145,-1,0,0 +2013,6,12,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1320,3,0,1410,-1,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1515,-1,0,1735,-7,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-3,0,1515,-16,0,0 +2013,10,30,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-8,0,541,-7,0,0 +2013,5,17,5,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1629,12,0,1927,3,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2356,37,1,602,5,0,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2242,56,1,717,43,1,0 +2013,7,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1135,-7,0,1316,-2,0,0 +2013,7,11,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2040,173,1,2313,158,1,0 +2013,7,19,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1410,61,1,2210,46,1,0 +2013,9,2,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,635,-7,0,741,-16,0,0 +2013,10,30,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,945,1,0,1535,-17,0,0 +2013,6,20,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,28,1,1855,27,1,0 +2013,8,20,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,730,-5,0,1058,-7,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1829,-6,0,2010,-16,0,0 +2013,6,17,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,1,0,1531,14,0,0 +2013,9,4,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-7,0,820,-6,0,0 +2013,10,9,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,-4,0,2139,5,0,0 +2013,5,26,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1054,-3,0,1147,-2,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2300,-3,0,644,-13,0,0 +2013,5,6,1,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2131,1,0,520,7,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1405,-4,0,1809,-24,0,0 +2013,7,29,1,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,-7,0,2150,7,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2105,10,0,2244,-22,0,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,11,0,1500,4,0,0 +2013,7,8,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1549,177,1,1728,164,1,0 +2013,6,2,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,7,0,1535,14,0,0 +2013,6,19,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1828,22,1,2000,18,1,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2059,-4,0,2211,-4,0,0 +2013,7,2,2,EV,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-7,0,917,-8,0,0 +2013,9,27,5,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,600,-6,0,714,-19,0,0 +2013,5,14,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-10,0,1912,-8,0,0 +2013,10,11,5,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1805,69,1,2105,47,1,0 +2013,8,26,1,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2040,10,0,2155,31,1,0 +2013,7,18,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,750,-4,0,1045,-5,0,0 +2013,4,26,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,801,-8,0,1126,-28,0,0 +2013,7,8,1,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-7,0,1440,-13,0,0 +2013,7,31,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1840,21,1,1900,12,0,0 +2013,6,14,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-4,0,451,-9,0,0 +2013,5,19,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1205,-2,0,1320,-7,0,0 +2013,10,9,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-8,0,947,4,0,0 +2013,8,22,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-5,0,1802,-3,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,27,1,1925,38,1,0 +2013,4,11,4,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1513,11,0,1625,13,0,0 +2013,7,30,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,2,0,1400,6,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1630,150,1,1815,138,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,-4,0,1704,-16,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,2,0,2145,-6,0,0 +2013,9,23,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,600,55,1,610,44,1,0 +2013,5,20,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1829,59,1,2039,32,1,0 +2013,8,16,5,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1910,-9,0,1955,-13,0,0 +2013,7,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,930,0,0,1054,-8,0,0 +2013,8,8,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,600,-2,0,700,-2,0,0 +2013,8,23,5,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,702,-2,0,838,-11,0,0 +2013,6,23,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,630,3,0,1005,8,0,0 +2013,10,28,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1012,2,0,1243,-2,0,0 +2013,7,16,2,DL,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1846,74,1,2357,72,1,0 +2013,9,19,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,-5,0,1848,-45,0,0 +2013,6,1,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1730,-3,0,1854,-13,0,0 +2013,8,15,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1539,6,0,1658,14,0,0 +2013,5,8,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1629,130,1,1800,131,1,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,46,1,913,32,1,0 +2013,8,9,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-5,0,1915,-16,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,21,1,1910,26,1,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,22,1,1221,12,0,0 +2013,8,2,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1320,-4,0,1520,2,0,0 +2013,10,10,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1120,-6,0,1314,-8,0,0 +2013,9,26,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,725,-2,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1105,12,0,1340,5,0,0 +2013,9,27,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-4,0,1829,9,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,0,0,1039,-12,0,0 +2013,6,5,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,800,-1,0,940,-26,0,0 +2013,8,9,5,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-6,0,1222,-16,0,0 +2013,4,23,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,830,2,0,1136,1,0,0 +2013,10,1,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1535,19,1,1815,16,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,-2,0,1325,-6,0,0 +2013,10,7,1,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2130,2,0,535,-16,0,0 +2013,7,19,5,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-1,0,1028,-9,0,0 +2013,9,16,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1528,-4,0,1737,-10,0,0 +2013,8,3,6,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1049,5,0,1531,-17,0,0 +2013,5,25,6,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-5,0,744,-15,0,0 +2013,9,26,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-2,0,1420,-15,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,-2,0,1605,2,0,0 +2013,9,4,3,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2156,-6,0,2242,-14,0,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1940,10,0,2049,1,0,0 +2013,5,23,4,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1805,84,1,1957,83,1,0 +2013,8,17,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1217,9,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1200,27,1,1805,57,1,0 +2013,6,3,1,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,-9,0,1045,-20,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,1,0,1623,-5,0,0 +2013,8,24,6,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-7,0,1639,-18,0,0 +2013,8,1,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1852,54,1,2246,55,1,0 +2013,4,28,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-10,0,1005,-42,0,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1006,0,0,1141,-1,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1145,8,0,1240,6,0,0 +2013,5,15,3,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1529,16,1,2017,15,1,0 +2013,4,10,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-3,0,1205,-1,0,0 +2013,7,15,1,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1825,66,1,2057,43,1,0 +2013,6,28,5,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1035,3,0,1630,-1,0,0 +2013,10,31,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,0,0,1437,-3,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-8,0,1708,3,0,0 +2013,8,28,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-4,0,1840,-12,0,0 +2013,6,28,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1655,1,0,1705,-10,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1000,4,0,1120,7,0,0 +2013,5,16,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,55,-6,0,538,-2,0,0 +2013,9,20,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2002,-11,0,2109,-26,0,0 +2013,8,30,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1622,-2,0,1728,-6,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,5,0,1505,10,0,0 +2013,9,6,5,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2015,-9,0,2144,-10,0,0 +2013,10,7,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1018,-4,0,1309,-9,0,0 +2013,10,16,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,11,0,1630,0,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,945,9,0,1125,-3,0,0 +2013,9,24,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1845,-9,0,1903,-17,0,0 +2013,6,26,3,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1021,1,0,0 +2013,7,23,2,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1135,-7,0,1253,-19,0,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-7,0,2307,13,0,0 +2013,9,17,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1352,1,0,1946,2,0,0 +2013,6,8,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-7,0,700,-29,0,0 +2013,7,30,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-5,0,1418,-7,0,0 +2013,10,29,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1200,63,1,1305,54,1,0 +2013,8,11,7,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1105,-2,0,1225,10,0,0 +2013,7,6,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1440,-9,0,1635,-1,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,18,1,1206,17,1,0 +2013,4,5,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-1,0,1450,-3,0,0 +2013,5,4,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,600,-4,0,843,-2,0,0 +2013,5,3,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1922,-5,0,1956,-3,0,0 +2013,10,26,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,650,-14,0,0 +2013,10,29,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,930,-9,0,1221,-27,0,0 +2013,8,11,7,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-1,0,1305,10,0,0 +2013,7,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,630,-2,0,955,-1,0,0 +2013,7,28,7,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-2,0,1100,-7,0,0 +2013,4,13,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1255,-2,0,1550,-8,0,0 +2013,9,25,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1530,-7,0,1701,-4,0,0 +2013,9,12,4,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-6,0,1903,-17,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1240,-4,0,1340,-7,0,0 +2013,6,13,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-4,0,2024,-3,0,0 +2013,7,2,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,5,0,2021,-6,0,0 +2013,7,5,5,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,0,0,1630,1,0,0 +2013,6,1,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1116,-4,0,1208,11,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,-2,0,1141,0,0,0 +2013,4,4,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,954,-7,0,1107,-17,0,0 +2013,7,7,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1335,33,1,1945,12,0,0 +2013,7,31,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,0,0,1045,3,0,0 +2013,7,1,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1255,18,1,1600,9,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,0,0,2235,-17,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1240,34,1,1350,30,1,0 +2013,6,20,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2135,8,0,2250,2,0,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1425,6,0,1747,-10,0,0 +2013,7,9,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,-2,0,1839,3,0,0 +2013,4,30,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1415,-5,0,2258,-15,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,835,1,0,1100,4,0,0 +2013,5,21,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-4,0,1955,-34,0,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,28,1,2217,19,1,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1305,4,0,1730,-20,0,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-3,0,1053,13,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,14,0,2359,15,1,0 +2013,8,6,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,900,14,0,950,7,0,0 +2013,4,15,1,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1940,55,1,2247,45,1,0 +2013,10,6,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1620,9,0,1825,-1,0,0 +2013,5,24,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1200,0,0,1310,-9,0,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1251,6,0,1413,12,0,0 +2013,8,16,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-12,0,2132,-16,0,0 +2013,5,1,3,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,550,0,0,724,18,1,0 +2013,5,15,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1220,13,0,1410,1,0,0 +2013,7,2,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-2,0,1100,-9,0,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,-5,0,1456,-10,0,0 +2013,5,27,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1310,-4,0,1405,-12,0,0 +2013,10,14,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1016,-3,0,1311,-9,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2005,-6,0,2241,-21,0,0 +2013,4,28,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1525,-2,0,1857,-17,0,0 +2013,8,22,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2055,57,1,2220,47,1,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,1,0,1634,-27,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,905,-1,0,1110,1,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2130,0,0,2311,-1,0,0 +2013,10,16,3,9E,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-8,0,1331,-21,0,0 +2013,5,12,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,-1,0,1700,-14,0,0 +2013,10,2,3,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,825,-2,0,920,-10,0,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,16,1,1955,12,0,0 +2013,6,12,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,649,-6,0,825,-12,0,0 +2013,8,7,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,700,-3,0,815,-15,0,0 +2013,9,3,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,741,-5,0,1015,6,0,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,-3,0,2330,-23,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,-1,0,1911,-7,0,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,0,0,1055,1,0,0 +2013,6,23,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,16,1,1630,5,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-2,0,755,-11,0,0 +2013,4,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1955,9,0,2150,16,1,0 +2013,9,28,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-3,0,1500,-20,0,0 +2013,8,15,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-4,0,915,0,0,0 +2013,6,21,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-1,0,1414,-15,0,0 +2013,8,25,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,-2,0,1919,-28,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1449,5,0,1725,-7,0,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1900,0,0,2220,-15,0,0 +2013,4,7,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,-6,0,1940,-19,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,-2,0,1731,-11,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,-6,0,1045,-11,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1306,-5,0,1615,-4,0,0 +2013,6,9,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1652,6,0,1928,5,0,0 +2013,4,7,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1635,-8,0,1741,-9,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1813,13,0,1951,6,0,0 +2013,6,11,2,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1942,9,0,2105,-10,0,0 +2013,7,16,2,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1655,-7,0,1825,8,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,50,1,2122,45,1,0 +2013,7,17,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-3,0,2011,19,1,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1450,41,1,1815,31,1,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,840,-4,0,1012,2,0,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2153,15,1,2246,7,0,0 +2013,10,3,4,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1118,49,1,1120,41,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-5,0,923,-11,0,0 +2013,10,22,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,-4,0,1255,-7,0,0 +2013,5,10,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-10,0,714,-12,0,0 +2013,6,12,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1728,14,0,1802,19,1,0 +2013,8,1,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-10,0,905,-12,0,0 +2013,5,14,2,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,713,8,0,1441,3,0,0 +2013,7,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-5,0,2058,-24,0,0 +2013,6,5,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,0,0,835,2,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1555,-8,0,1812,-21,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1440,26,1,1805,26,1,0 +2013,10,29,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,905,-2,0,1008,-11,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-7,0,1901,0,0,0 +2013,10,3,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1524,9,0,1809,-3,0,0 +2013,6,3,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,-3,0,1807,-6,0,0 +2013,6,14,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-3,0,1035,0,0,0 +2013,6,18,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-2,0,811,3,0,0 +2013,7,30,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1530,-3,0,1815,4,0,0 +2013,5,9,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,22,1,2020,13,0,0 +2013,8,11,7,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1910,97,1,2132,92,1,0 +2013,9,4,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,755,-4,0,1010,-25,0,0 +2013,7,30,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,153,1,735,120,1,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,710,-6,0,831,-16,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,48,1,2230,29,1,0 +2013,8,17,6,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1055,-8,0,1455,-9,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1345,34,1,1720,33,1,0 +2013,8,28,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,839,-5,0,1051,-23,0,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1400,16,1,1625,10,0,0 +2013,6,16,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,-6,0,2209,-14,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1910,-1,0,2015,6,0,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1015,4,0,1105,9,0,0 +2013,4,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1910,0,0,2235,7,0,0 +2013,6,16,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,952,1,0,1230,-8,0,0 +2013,5,31,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,1,0,2049,-1,0,0 +2013,4,15,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1051,-1,0,1213,2,0,0 +2013,9,20,5,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1730,39,1,1910,34,1,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,846,-3,0,1120,-16,0,0 +2013,5,16,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-6,0,1600,9,0,0 +2013,9,29,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2035,26,1,2223,20,1,0 +2013,6,2,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1525,-1,0,1650,-5,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1550,4,0,2225,11,0,0 +2013,4,10,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1106,29,1,1234,22,1,0 +2013,5,7,2,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,-4,0,845,-42,0,0 +2013,8,25,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-6,0,958,-11,0,0 +2013,6,29,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,69,1,1433,60,1,0 +2013,10,8,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1208,3,0,1449,-11,0,0 +2013,9,1,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,1,0,1550,-2,0,0 +2013,10,9,3,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1640,-3,0,0 +2013,4,11,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,16,1,1630,18,1,0 +2013,4,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,2000,0,0,2235,-6,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1200,-1,0,1445,-3,0,0 +2013,5,12,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1126,2,0,1227,-8,0,0 +2013,5,2,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,-6,0,1650,34,1,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1255,-1,0,1450,-2,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,-2,0,1043,-18,0,0 +2013,4,6,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-2,0,1425,-8,0,0 +2013,8,27,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-3,0,1800,-19,0,0 +2013,5,18,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1900,108,1,1935,114,1,0 +2013,4,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-5,0,1310,-1,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2345,17,1,241,-19,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1900,-2,0,2049,-27,0,0 +2013,5,11,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,455,1,1600,451,1,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1310,0,,1440,0,1,1 +2013,8,1,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,0,0,2014,4,0,0 +2013,10,26,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,700,1,0,1517,22,1,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1010,-2,0,1430,3,0,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,6,0,1554,-4,0,0 +2013,9,6,5,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1822,-8,0,2021,-28,0,0 +2013,6,6,4,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1740,24,1,2031,3,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,8,0,1240,4,0,0 +2013,7,30,2,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,12,0,1330,8,0,0 +2013,6,2,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1655,53,1,1740,48,1,0 +2013,5,10,5,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,753,-1,0,1340,3,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2150,39,1,2337,36,1,0 +2013,6,23,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-2,0,925,-17,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1420,10,0,1555,17,1,0 +2013,5,14,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,1,0,1355,-5,0,0 +2013,5,1,3,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1209,-3,0,1510,2,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,-2,0,1606,-7,0,0 +2013,5,27,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1245,-2,0,1420,-14,0,0 +2013,5,5,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,-12,0,2300,-24,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,710,-3,0,1042,-8,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-5,0,832,17,1,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-8,0,1824,-15,0,0 +2013,4,25,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,800,3,0,1053,-24,0,0 +2013,9,25,3,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1355,2,0,1520,2,0,0 +2013,8,9,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1150,-9,0,1320,0,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,752,-2,0,926,-17,0,0 +2013,7,30,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1015,-4,0,1807,-27,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,726,-2,0,904,-10,0,0 +2013,4,27,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,53,-8,0,629,-6,0,0 +2013,8,28,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,83,1,2046,56,1,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,1,0,2300,0,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,34,1,1915,26,1,0 +2013,9,15,7,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,2014,0,0,2037,3,0,0 +2013,10,28,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,36,1,1120,30,1,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1725,1,0,1845,-3,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1210,-6,0,1500,-17,0,0 +2013,4,10,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,136,1,1450,164,1,0 +2013,4,12,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1220,0,0,1320,-6,0,0 +2013,6,7,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2130,73,1,2320,69,1,0 +2013,6,11,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1830,141,1,2139,119,1,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,-2,0,2235,-17,0,0 +2013,9,21,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,-1,0,1300,9,0,0 +2013,9,11,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,949,-27,0,0 +2013,10,16,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1616,0,0,1922,-8,0,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2031,9,0,2348,0,0,0 +2013,4,16,2,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1302,-4,0,1529,-12,0,0 +2013,4,5,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1200,0,0,1450,-14,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1430,2,0,2140,-13,0,0 +2013,7,20,6,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1136,-3,0,1455,-3,0,0 +2013,4,23,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1835,24,1,2029,104,1,0 +2013,5,2,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1121,-3,0,1303,22,1,0 +2013,9,9,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,701,-3,0,1100,4,0,0 +2013,10,16,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2200,-3,0,2247,-13,0,0 +2013,5,17,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,59,1,1920,65,1,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,930,-2,0,1150,-9,0,0 +2013,9,12,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1645,55,1,1925,63,1,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1135,9,0,1315,6,0,0 +2013,4,2,2,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,-4,0,1013,-7,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-3,0,924,-16,0,0 +2013,5,17,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1130,-4,0,1240,-4,0,0 +2013,5,28,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1045,0,0,1150,-3,0,0 +2013,9,13,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-3,0,1030,-5,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2155,15,1,10,-5,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,-3,0,855,-9,0,0 +2013,10,31,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2134,-8,0,2206,-7,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,2,0,1250,4,0,0 +2013,7,25,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1228,-3,0,1749,-7,0,0 +2013,7,13,6,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1620,0,0,1819,-17,0,0 +2013,7,7,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1027,-4,0,1510,-15,0,0 +2013,4,14,7,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1000,-2,0,1150,-9,0,0 +2013,8,28,3,OO,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,806,-4,0,920,-2,0,0 +2013,10,14,1,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1146,-3,0,1412,-2,0,0 +2013,10,13,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,15,1,2110,11,0,0 +2013,5,11,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,610,-2,0,740,-14,0,0 +2013,4,29,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2040,0,0,2140,-1,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,6,0,2359,-17,0,0 +2013,4,8,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,-3,0,1750,-23,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,7,0,1640,-3,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,840,-7,0,1030,-10,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-3,0,1950,-4,0,0 +2013,9,7,6,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,600,-7,0,744,-25,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2200,-11,0,2250,2,0,0 +2013,10,4,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,58,1,932,85,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,935,29,1,1725,29,1,0 +2013,7,29,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,-5,0,1235,1,0,0 +2013,8,31,6,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,12,0,1335,3,0,0 +2013,7,8,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,4,0,1906,12,0,0 +2013,8,2,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1100,-1,0,1459,-9,0,0 +2013,5,23,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1430,89,1,1601,175,1,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1525,99,1,1635,98,1,0 +2013,4,18,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1812,-1,0,2100,1,0,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,56,1,2127,48,1,0 +2013,5,18,6,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-7,0,1050,-17,0,0 +2013,5,13,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,33,1,1920,51,1,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1910,26,1,2030,14,0,0 +2013,8,23,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,750,0,,925,0,1,1 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1130,-2,0,1350,-1,0,0 +2013,4,13,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1234,-9,0,1449,-3,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,32,1,1730,26,1,0 +2013,7,26,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2100,4,0,2235,-9,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1010,-1,0,1445,-2,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1715,17,1,1930,8,0,0 +2013,10,17,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1300,-3,0,1622,-6,0,0 +2013,10,18,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-6,0,845,-5,0,0 +2013,7,8,1,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-1,0,1229,18,1,0 +2013,10,2,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,910,0,0,1025,-3,0,0 +2013,10,19,6,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,745,-2,0,824,6,0,0 +2013,4,23,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-2,0,920,6,0,0 +2013,5,16,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,11,0,1415,11,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1930,11,0,2100,-4,0,0 +2013,7,7,7,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1909,14,0,2020,12,0,0 +2013,6,20,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1436,8,0,1610,3,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2105,13,0,2255,12,0,0 +2013,10,2,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,750,0,0,840,-1,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1020,0,0,1159,-18,0,0 +2013,10,1,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,805,-4,0,1102,-26,0,0 +2013,5,12,7,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,1340,1,0,1935,8,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2252,38,1,2339,39,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1915,8,0,2044,-4,0,0 +2013,10,4,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-2,0,956,2,0,0 +2013,10,14,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1915,-9,0,2044,0,0,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,-5,0,737,-12,0,0 +2013,10,1,2,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,740,-3,0,1015,-23,0,0 +2013,5,8,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,745,-4,0,1025,-12,0,0 +2013,4,17,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,88,1,1130,72,1,0 +2013,8,9,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1935,67,1,2307,51,1,0 +2013,9,8,7,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1748,7,0,2030,-10,0,0 +2013,9,21,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1300,-7,0,1455,-16,0,0 +2013,6,15,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,620,0,0,910,-9,0,0 +2013,7,11,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,750,54,1,935,34,1,0 +2013,4,19,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,815,10,0,0 +2013,4,16,2,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1000,-4,0,1239,-20,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,0,0,905,-7,0,0 +2013,5,13,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,2101,-14,0,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,837,-5,0,1047,-17,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1045,-4,0,1350,-17,0,0 +2013,10,26,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-3,0,1605,-4,0,0 +2013,10,19,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,730,-7,0,1026,-16,0,0 +2013,9,23,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1510,7,0,1805,-2,0,0 +2013,8,18,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2055,0,,2220,0,1,1 +2013,8,25,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,933,5,0,1037,-11,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,800,-1,0,1235,6,0,0 +2013,6,23,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-4,0,1119,-23,0,0 +2013,7,26,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2100,-2,0,510,-6,0,0 +2013,9,18,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-6,0,1715,-13,0,0 +2013,8,20,2,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,24,1,1945,24,1,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,1,0,920,-13,0,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1550,7,0,1725,2,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1758,-3,0,1930,-8,0,0 +2013,4,6,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,2,0,2025,1,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,-4,0,1144,-17,0,0 +2013,7,2,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-10,0,2041,-13,0,0 +2013,8,11,7,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,624,0,0,1450,-18,0,0 +2013,7,20,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-9,0,1908,-6,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1925,4,0,2201,-4,0,0 +2013,9,24,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,48,1,2215,36,1,0 +2013,9,11,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,800,-4,0,915,7,0,0 +2013,9,21,6,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1244,55,1,1725,45,1,0 +2013,10,31,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-14,0,905,5,0,0 +2013,10,24,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,1014,-3,0,0 +2013,5,8,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2012,-10,0,2048,-4,0,0 +2013,5,12,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2135,5,0,0 +2013,9,27,5,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,-2,0,1811,-5,0,0 +2013,9,26,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,917,-10,0,1054,-14,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,841,0,0,1029,-15,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1230,42,1,1410,36,1,0 +2013,6,22,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1010,-11,0,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1230,-2,0,1506,1,0,0 +2013,5,28,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1015,-4,0,1305,-13,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,37,1,1735,33,1,0 +2013,10,13,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1850,9,0,1925,1,0,0 +2013,5,24,5,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1450,5,0,1615,1,0,0 +2013,8,27,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-8,0,1550,-9,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1535,9,0,2010,4,0,0 +2013,5,6,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-7,0,914,-6,0,0 +2013,7,14,7,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1543,-1,0,1835,-7,0,0 +2013,7,15,1,EV,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1900,72,1,2014,67,1,0 +2013,7,22,1,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,800,-1,0,906,-5,0,0 +2013,7,23,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-7,0,606,-24,0,0 +2013,6,23,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,2,0,2137,3,0,0 +2013,4,6,6,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1845,-10,0,2159,-11,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-9,0,1349,-28,0,0 +2013,4,9,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,-4,0,1008,-6,0,0 +2013,5,23,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1815,49,1,1915,96,1,0 +2013,4,27,6,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,6,0,1725,-1,0,0 +2013,7,3,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1855,2,0,2042,-5,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,725,-3,0,906,24,1,0 +2013,7,11,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1817,-1,0,2105,0,0,0 +2013,8,10,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-8,0,1742,-21,0,0 +2013,4,19,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-2,0,2104,-11,0,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-5,0,1542,1,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,758,-4,0,0 +2013,4,21,7,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,700,0,0,945,33,1,0 +2013,10,21,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1405,6,0,2000,14,0,0 +2013,7,6,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1835,-9,0,2032,-11,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,630,-3,0,739,-14,0,0 +2013,9,20,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,-8,0,1409,-8,0,0 +2013,8,28,3,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1525,1,0,1810,1,0,0 +2013,8,28,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-4,0,1330,2,0,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1135,3,0,1300,1,0,0 +2013,6,5,3,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,551,-5,0,805,-19,0,0 +2013,7,26,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,915,158,1,1039,147,1,0 +2013,4,26,5,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,2,0,1851,19,1,0 +2013,6,26,3,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1235,39,1,1415,29,1,0 +2013,4,11,4,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,820,-4,0,1047,-6,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,4,0,1945,-4,0,0 +2013,10,28,1,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-3,0,2200,13,0,0 +2013,9,1,7,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1915,-4,0,2219,-10,0,0 +2013,5,30,4,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,-6,0,1916,4,0,0 +2013,4,26,5,9E,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-9,0,2012,-34,0,0 +2013,6,21,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-9,0,1601,-15,0,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1150,-3,0,1321,-33,0,0 +2013,6,4,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1712,2,0,2014,-19,0,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,12,0,1915,3,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1123,-9,0,1251,-22,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,2,0,1315,-16,0,0 +2013,5,12,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,0,0,1140,-16,0,0 +2013,7,3,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,1,0,1302,18,1,0 +2013,8,8,4,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1858,88,1,2159,94,1,0 +2013,6,25,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-5,0,1840,-16,0,0 +2013,10,2,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,-3,0,650,-11,0,0 +2013,9,21,6,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,900,-6,0,1158,-1,0,0 +2013,7,9,2,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1030,3,0,1340,16,1,0 +2013,5,17,5,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1235,-3,0,1423,-12,0,0 +2013,10,29,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1620,-9,0,2155,-33,0,0 +2013,8,11,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1909,-6,0,2024,-16,0,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-4,0,1416,0,0,0 +2013,8,24,6,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,727,4,0,945,15,1,0 +2013,5,8,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1750,24,1,2001,38,1,0 +2013,9,25,3,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1429,-4,0,1655,-6,0,0 +2013,8,18,7,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,9,0,1740,7,0,0 +2013,9,16,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-6,0,819,-10,0,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,6,0,2217,1,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,-2,0,1050,-5,0,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1030,-2,0,1345,-9,0,0 +2013,8,15,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-1,0,1330,-10,0,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,-4,0,1216,-13,0,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,850,1,0,1405,7,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1137,26,1,1519,16,1,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1904,68,1,111,53,1,0 +2013,7,6,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,-3,0,1645,-23,0,0 +2013,8,24,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1206,60,1,1425,47,1,0 +2013,6,2,7,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1415,66,1,1613,73,1,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,136,1,920,142,1,0 +2013,8,26,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,607,-1,0,1116,-7,0,0 +2013,4,30,2,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2105,-1,0,2347,22,1,0 +2013,9,1,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,4,0,1844,30,1,0 +2013,7,14,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1815,-5,0,1940,-10,0,0 +2013,4,29,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,21,1,1535,21,1,0 +2013,9,22,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,2,0,1900,-2,0,0 +2013,6,27,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2050,64,1,2330,55,1,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1337,23,1,1829,31,1,0 +2013,10,24,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-3,0,1928,-15,0,0 +2013,6,14,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,-2,0,1415,0,0,0 +2013,7,18,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,0,0,12,-26,0,0 +2013,7,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,815,6,0,1000,-8,0,0 +2013,10,10,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-12,0,751,-21,0,0 +2013,10,2,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,700,-2,0,820,-6,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1720,9,0,1830,-3,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,725,-3,0,907,-16,0,0 +2013,10,12,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-9,0,1002,-17,0,0 +2013,6,3,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,845,110,1,1030,134,1,0 +2013,7,3,3,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,833,1,0,0 +2013,7,10,3,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1309,-3,0,1534,-6,0,0 +2013,6,27,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,17,1,1340,15,1,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2004,94,1,2126,87,1,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1115,-3,0,1244,-18,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2215,16,1,2350,31,1,0 +2013,6,19,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,-1,0,1819,-5,0,0 +2013,5,8,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,605,-4,0,750,-8,0,0 +2013,5,20,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,0,0,820,-3,0,0 +2013,7,16,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1010,12,0,1315,20,1,0 +2013,6,30,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,242,1,1112,247,1,0 +2013,10,8,2,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1514,10,0,1630,4,0,0 +2013,10,26,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,-4,0,2105,-17,0,0 +2013,6,13,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13232,Chicago Midway International,Chicago,IL,1430,34,1,2030,11,0,0 +2013,7,2,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1916,167,1,2129,171,1,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2135,-6,0,20,-15,0,0 +2013,7,18,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,-8,0,1504,-18,0,0 +2013,10,29,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,725,-5,0,845,-21,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1800,3,0,2003,15,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,6,0,1115,7,0,0 +2013,8,20,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-2,0,1953,0,0,0 +2013,7,17,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-10,0,2125,-13,0,0 +2013,7,11,4,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,637,273,1,830,255,1,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,27,1,1520,61,1,0 +2013,9,13,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,600,1,0,703,2,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,625,-4,0,750,-6,0,0 +2013,8,31,6,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,954,-5,0,1230,-9,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,835,-7,0,935,-17,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1205,-5,0,1214,-12,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1750,161,1,1955,162,1,0 +2013,5,3,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1105,-2,0,1315,-12,0,0 +2013,8,23,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2203,-1,0,702,-15,0,0 +2013,9,12,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1054,128,1,1922,114,1,0 +2013,5,25,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1734,-3,0,1833,64,1,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1500,13,0,1703,-7,0,0 +2013,9,17,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1810,-1,0,1930,-4,0,0 +2013,6,24,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1200,-20,0,0 +2013,5,12,7,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,145,-6,0,659,-7,0,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1610,79,1,1918,106,1,0 +2013,7,29,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,610,0,,929,0,1,1 +2013,4,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1300,2,0,1500,-8,0,0 +2013,9,20,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2120,53,1,2235,45,1,0 +2013,8,15,4,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-5,0,1019,-16,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-3,0,1408,-10,0,0 +2013,10,21,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,700,-2,0,1056,-16,0,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1555,42,1,1827,67,1,0 +2013,7,10,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-1,0,1420,145,1,0 +2013,4,12,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,835,-6,0,1100,42,1,0 +2013,4,24,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-7,0,855,-1,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1945,10,0,2255,7,0,0 +2013,7,4,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1034,-13,0,1200,-33,0,0 +2013,7,24,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2029,25,1,2359,4,0,0 +2013,7,17,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2004,78,1,2120,112,1,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,21,1,1030,23,1,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2337,17,1,800,4,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,21,1,1050,19,1,0 +2013,4,2,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,0,0,1710,3,0,0 +2013,4,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,36,1,752,29,1,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1100,19,1,1220,12,0,0 +2013,5,28,2,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1842,6,0,2059,25,1,0 +2013,8,26,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1630,-9,0,1735,-6,0,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1813,7,0,1935,5,0,0 +2013,8,14,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1110,-4,0,1220,-3,0,0 +2013,8,26,1,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,804,-10,0,918,-19,0,0 +2013,6,27,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,830,-17,0,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,1055,50,1,1615,39,1,0 +2013,4,9,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12339,Indianapolis International,Indianapolis,IN,1251,-5,0,1533,0,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1725,-2,0,2047,-8,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,-2,0,1050,9,0,0 +2013,8,26,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1440,-2,0,1721,-6,0,0 +2013,7,26,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-2,0,604,-9,0,0 +2013,5,4,6,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1446,-4,0,1700,3,0,0 +2013,7,31,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1425,-2,0,1610,-11,0,0 +2013,6,19,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1645,56,1,1945,17,1,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1553,69,1,1740,48,1,0 +2013,9,14,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,3,0,1111,-3,0,0 +2013,10,5,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1916,-1,0,2110,-8,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1445,3,0,1610,1,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,47,1,2240,19,1,0 +2013,9,7,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,740,-5,0,913,-17,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2212,-6,0,1,7,0,0 +2013,7,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,820,19,1,1220,4,0,0 +2013,7,13,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,0,0,1353,-6,0,0 +2013,6,24,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,177,1,2045,135,1,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,950,0,0,1045,8,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1725,0,0,2111,-2,0,0 +2013,5,28,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1353,0,0,1556,0,0,0 +2013,7,11,4,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1745,5,0,1910,-1,0,0 +2013,7,10,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1953,0,,2101,0,1,1 +2013,10,29,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,0,,1109,0,1,1 +2013,9,20,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1724,23,1,2004,38,1,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,715,6,0,1045,-6,0,0 +2013,7,28,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1305,-2,0,1525,-10,0,0 +2013,6,22,6,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,601,46,1,858,14,0,0 +2013,10,31,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,-1,0,1959,18,1,0 +2013,5,26,7,OO,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,-4,0,1207,-10,0,0 +2013,5,2,4,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,-2,0,535,3,0,0 +2013,10,29,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,543,-5,0,1150,-20,0,0 +2013,7,17,3,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,635,16,1,847,10,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-2,0,2302,2,0,0 +2013,4,25,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,-1,0,146,-9,0,0 +2013,8,28,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1745,0,,1945,0,1,1 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,2,0,1745,-19,0,0 +2013,5,3,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,1,0,1955,-33,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-4,0,1815,-11,0,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1020,-4,0,1320,-2,0,0 +2013,9,22,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,700,0,0,800,-10,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2050,16,1,2315,14,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1620,-2,0,1818,-3,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1010,1,0,1310,11,0,0 +2013,8,10,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-8,0,1309,-24,0,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,700,-4,0,1314,-11,0,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1355,-3,0,1514,-17,0,0 +2013,4,3,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,-10,0,2317,-21,0,0 +2013,6,2,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1512,-5,0,1640,-7,0,0 +2013,5,28,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,-6,0,1615,-12,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,0,0,1307,-3,0,0 +2013,8,27,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-2,0,1345,-9,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,14,0,1415,47,1,0 +2013,7,21,7,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,29,1,1944,83,1,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,640,-7,0,834,-25,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,-6,0,1030,-15,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1305,10,0,1423,0,0,0 +2013,4,5,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,-5,0,910,23,1,0 +2013,8,26,1,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1548,-4,0,1620,-12,0,0 +2013,5,21,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,-2,0,1816,-9,0,0 +2013,7,11,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1915,35,1,2210,18,1,0 +2013,6,28,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,850,40,1,924,41,1,0 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,729,-4,0,831,-13,0,0 +2013,5,10,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-4,0,1912,1,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,-3,0,2341,7,0,0 +2013,9,28,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-2,0,850,0,0,0 +2013,4,29,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2040,70,1,2200,63,1,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1817,-5,0,2303,-32,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,62,1,1720,52,1,0 +2013,8,6,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1258,0,0,0 +2013,10,10,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1120,-1,0,1320,9,0,0 +2013,10,8,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1855,15,1,2059,-10,0,0 +2013,9,24,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,-3,0,1202,-14,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,24,1,1525,17,1,0 +2013,8,30,5,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1355,1,0,1651,5,0,0 +2013,6,17,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,74,1,1945,68,1,0 +2013,9,9,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1033,-6,0,1355,1,0,0 +2013,8,2,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1621,81,1,1946,73,1,0 +2013,4,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,824,0,0,1113,23,1,0 +2013,9,18,3,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1706,-4,0,2300,-17,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1500,30,1,1815,26,1,0 +2013,10,25,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,30,1,2130,18,1,0 +2013,5,22,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1440,131,1,1510,144,1,0 +2013,10,5,6,OO,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,-2,0,1123,0,0,0 +2013,9,3,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,-5,0,1412,0,0,0 +2013,7,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1025,38,1,1255,36,1,0 +2013,7,4,4,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,0,0,1035,-10,0,0 +2013,5,12,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-4,0,950,-18,0,0 +2013,7,16,2,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-2,0,910,-7,0,0 +2013,8,26,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1215,-3,0,1452,17,1,0 +2013,7,17,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,11,0,1835,-6,0,0 +2013,10,28,1,US,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-8,0,910,-4,0,0 +2013,9,17,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,940,1,0,1110,-15,0,0 +2013,7,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-2,0,1425,-21,0,0 +2013,6,1,6,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1316,-2,0,1552,-18,0,0 +2013,5,2,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,645,2,0,800,-5,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-6,0,1510,-2,0,0 +2013,7,28,7,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1900,99,1,2143,164,1,0 +2013,4,9,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1535,-10,0,1814,-20,0,0 +2013,5,6,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,700,-2,0,903,4,0,0 +2013,5,20,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,830,-8,0,1036,-31,0,0 +2013,4,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2012,-7,0,2112,-19,0,0 +2013,8,8,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,52,1,745,71,1,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,61,1,2356,57,1,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2105,-4,0,2230,-16,0,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,933,20,1,1332,17,1,0 +2013,9,21,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,1,0,1330,0,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,0,0,1530,-11,0,0 +2013,9,10,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,925,-3,0,1025,-9,0,0 +2013,7,5,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,933,5,0,1204,-8,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,-3,0,2359,-5,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1105,13,0,1325,16,1,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2020,-5,0,2318,-19,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,813,-2,0,1037,-3,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2030,9,0,2235,10,0,0 +2013,8,31,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,1958,-6,0,0 +2013,9,22,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1125,-9,0,1720,-30,0,0 +2013,6,2,7,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1835,-1,0,2053,-6,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,6,0,2008,3,0,0 +2013,5,5,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1350,-6,0,1616,0,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,-4,0,1605,3,0,0 +2013,8,29,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1915,0,0,2211,-46,0,0 +2013,8,4,7,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,97,1,1739,90,1,0 +2013,10,27,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1159,6,0,1438,-32,0,0 +2013,6,29,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,5,0,2227,2,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,14,0,2351,0,0,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1305,-2,0,1405,-10,0,0 +2013,6,13,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,1,0,1730,1,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-5,0,1418,-6,0,0 +2013,7,18,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,55,1,840,53,1,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,3,0,1445,16,1,0 +2013,6,15,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1520,172,1,1635,154,1,0 +2013,7,27,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1220,1,0,1335,-2,0,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,10,0,1335,1,0,0 +2013,7,27,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1440,-2,0,1805,-37,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1859,24,1,2345,44,1,0 +2013,6,12,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,-7,0,1740,-20,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1050,-5,0,1140,-17,0,0 +2013,10,13,7,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-3,0,2359,-1,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1005,-8,0,1055,-14,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1340,12,0,1610,13,0,0 +2013,9,10,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1359,-1,0,1654,-25,0,0 +2013,6,23,7,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1435,38,1,1625,52,1,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1330,6,0,1440,5,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,722,-2,0,853,-12,0,0 +2013,7,9,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,0,,1254,0,1,1 +2013,9,29,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,8,0,1650,-3,0,0 +2013,4,23,2,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-5,0,1000,-10,0,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,805,3,0,1642,-4,0,0 +2013,8,22,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,-5,0,2055,-5,0,0 +2013,7,30,2,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1325,-5,0,1600,-27,0,0 +2013,9,15,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1919,47,1,2113,56,1,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,850,-3,0,1010,-12,0,0 +2013,10,29,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-4,0,1823,5,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,705,33,1,1058,50,1,0 +2013,8,13,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-3,0,925,-9,0,0 +2013,6,29,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,-5,0,1555,-7,0,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1940,32,1,2245,25,1,0 +2013,6,26,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,615,-3,0,1140,-5,0,0 +2013,4,8,1,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1036,2,0,1559,3,0,0 +2013,7,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1645,26,1,1820,20,1,0 +2013,7,11,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,2,0,2011,-1,0,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1916,-1,0,14,-7,0,0 +2013,6,26,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-5,0,832,-5,0,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1133,-8,0,1422,-51,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1005,4,0,1245,6,0,0 +2013,7,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1500,6,0,1546,-2,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1312,26,1,1610,6,0,0 +2013,5,27,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,3,0,2132,5,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,-5,0,1003,-14,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1419,-5,0,1604,-7,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,0,0,2050,-8,0,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,8,0,2015,-1,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-6,0,1629,-22,0,0 +2013,6,25,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,835,-2,0,930,-7,0,0 +2013,9,28,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,650,3,0,810,0,0,0 +2013,5,13,1,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,-2,0,923,-3,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1401,29,1,1640,22,1,0 +2013,8,8,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2010,18,1,2055,11,0,0 +2013,10,1,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,9,0,1520,2,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,4,0,1305,17,1,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1730,-6,0,2007,-20,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1849,17,1,111,5,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,-3,0,1834,1,0,0 +2013,6,17,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,0,0,755,-1,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-5,0,1735,-24,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1855,-2,0,2215,-11,0,0 +2013,5,4,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1655,27,1,2020,28,1,0 +2013,10,19,6,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,-1,0,825,-16,0,0 +2013,6,30,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,209,1,1859,203,1,0 +2013,8,27,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-10,0,810,-28,0,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1335,16,1,1640,7,0,0 +2013,9,21,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1645,-9,0,1806,-14,0,0 +2013,8,16,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,26,1,2245,16,1,0 +2013,6,11,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2055,1,0,2346,4,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-3,0,1440,-14,0,0 +2013,4,1,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2316,-4,0,652,-20,0,0 +2013,8,3,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1647,-10,0,1931,-14,0,0 +2013,5,27,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1815,13,0,2015,-5,0,0 +2013,10,6,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-2,0,817,-32,0,0 +2013,7,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2037,10,0,2148,-4,0,0 +2013,9,19,4,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,745,-1,0,1144,-22,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1500,18,1,1600,12,0,0 +2013,5,5,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1815,-1,0,1840,-20,0,0 +2013,5,14,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,2,0,825,-4,0,0 +2013,7,27,6,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1107,-9,0,1505,-8,0,0 +2013,10,2,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1110,-5,0,1255,-25,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1607,-5,0,2030,-16,0,0 +2013,9,2,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-1,0,1357,-8,0,0 +2013,6,4,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1528,24,1,1721,29,1,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1527,6,0,1637,29,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1205,2,0,1320,1,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,915,-2,0,1740,-32,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1900,1,0,2010,-5,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1755,7,0,2020,2,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,41,1,2000,47,1,0 +2013,10,12,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,1,0,1008,-1,0,0 +2013,6,14,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,-1,0,345,2,0,0 +2013,10,12,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,-6,0,1700,2,0,0 +2013,9,16,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1159,-1,0,1309,1,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,915,30,1,1015,14,0,0 +2013,4,18,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,35,1,2350,32,1,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1236,71,1,1835,50,1,0 +2013,4,7,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1129,-16,0,0 +2013,9,20,5,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,20,1,1350,9,0,0 +2013,10,6,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2010,-11,0,2226,-3,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,32,1,2350,25,1,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2025,-7,0,2145,-15,0,0 +2013,4,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1435,-6,0,1710,-14,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,-7,0,1153,-21,0,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,-3,0,655,-6,0,0 +2013,4,11,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2143,267,1,2359,245,1,0 +2013,6,25,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1855,14,0,2120,57,1,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1957,-4,0,2150,-21,0,0 +2013,8,23,5,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,710,11,0,916,-8,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1920,1,0,2109,-12,0,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,630,-4,0,730,-9,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,62,1,1948,50,1,0 +2013,10,25,5,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1010,4,0,1320,-4,0,0 +2013,6,15,6,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2135,-3,0,548,-8,0,0 +2013,4,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,-4,0,1838,-17,0,0 +2013,7,3,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1025,46,1,1245,34,1,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,815,-3,0,1641,15,1,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,849,54,1,1517,33,1,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2100,60,1,15,52,1,0 +2013,10,6,7,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1715,3,0,1840,-3,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1055,-4,0,1235,-17,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1655,12,0,1900,1,0,0 +2013,4,8,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-5,0,2245,-17,0,0 +2013,5,6,1,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,21,1,2015,28,1,0 +2013,8,18,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1533,2,0,1845,-12,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1450,28,1,1725,26,1,0 +2013,6,14,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,842,23,1,917,11,0,0 +2013,4,26,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,0,0,1025,10,0,0 +2013,6,9,7,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2320,-5,0,559,-15,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,1,0,1830,-11,0,0 +2013,8,10,6,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1723,-4,0,1900,3,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1530,-8,0,1715,-16,0,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,15,1,1305,14,0,0 +2013,10,26,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1040,-3,0,1150,-14,0,0 +2013,7,3,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,87,1,1410,118,1,0 +2013,5,28,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,25,1,2011,14,0,0 +2013,4,25,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,600,19,1,715,14,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,-5,0,1134,-4,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,727,-2,0,900,-9,0,0 +2013,6,28,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1443,-2,0,1645,2,0,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,9,0,2307,5,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1410,2,0,1725,-10,0,0 +2013,9,4,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-6,0,1605,-2,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-3,0,2343,-9,0,0 +2013,7,6,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1440,-4,0,2300,-8,0,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1400,0,0,1625,-9,0,0 +2013,7,10,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1015,-3,0,1227,-16,0,0 +2013,10,9,3,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1020,34,1,1220,13,0,0 +2013,8,29,4,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1350,-1,0,1500,-11,0,0 +2013,9,13,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1830,6,0,1925,-1,0,0 +2013,6,3,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,1,0,1540,-13,0,0 +2013,5,13,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-4,0,1022,9,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,835,-1,0,1125,-10,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2140,-2,0,2316,12,0,0 +2013,6,12,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,12,0,1155,3,0,0 +2013,10,25,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1210,-4,0,1612,-24,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1745,30,1,1939,15,1,0 +2013,7,30,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-9,0,1309,-7,0,0 +2013,5,8,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-8,0,2204,-8,0,0 +2013,10,18,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-4,0,920,4,0,0 +2013,10,27,7,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1932,-3,0,2305,-31,0,0 +2013,5,16,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1120,22,1,1220,-2,0,0 +2013,8,19,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1247,-1,0,1542,-5,0,0 +2013,10,11,5,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1154,78,1,1308,79,1,0 +2013,10,17,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1647,-4,0,1754,-8,0,0 +2013,7,10,3,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,922,-7,0,1046,-14,0,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,8,0,838,3,0,0 +2013,10,14,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1330,-1,0,1558,-2,0,0 +2013,7,4,4,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1818,-10,0,2015,-34,0,0 +2013,6,18,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,241,1,1415,304,1,0 +2013,7,11,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,-4,0,1815,1,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1055,7,0,1115,31,1,0 +2013,10,15,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1533,59,1,1650,51,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-2,0,1635,-15,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,-5,0,2232,-14,0,0 +2013,9,24,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1619,2,0,1919,-15,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1421,1,0,1533,-3,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-3,0,1610,8,0,0 +2013,4,12,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1405,-4,0,2121,-27,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,912,21,1,1029,12,0,0 +2013,10,30,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1805,6,0,1920,2,0,0 +2013,5,7,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,620,-4,0,834,-16,0,0 +2013,8,27,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1835,-7,0,2035,-14,0,0 +2013,8,17,6,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,800,-5,0,1101,1,0,0 +2013,5,24,5,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,825,-3,0,1033,-22,0,0 +2013,4,14,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,903,-4,0,1053,-11,0,0 +2013,5,19,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,77,1,2049,73,1,0 +2013,5,6,1,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1330,-6,0,1402,-5,0,0 +2013,10,25,5,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,39,1,929,41,1,0 +2013,7,16,2,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,25,1,2135,21,1,0 +2013,9,5,4,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1355,-8,0,1659,-19,0,0 +2013,8,19,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-2,0,700,-8,0,0 +2013,7,31,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,185,1,1623,184,1,0 +2013,8,1,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,-1,0,1251,-2,0,0 +2013,6,12,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1949,5,0,2105,4,0,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1756,11,0,1916,13,0,0 +2013,8,26,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,855,28,1,1115,13,0,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1510,155,1,1635,156,1,0 +2013,8,25,7,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,57,1,851,50,1,0 +2013,4,8,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-4,0,2019,63,1,0 +2013,10,31,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1245,3,0,1525,-16,0,0 +2013,7,12,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,32,1,2011,23,1,0 +2013,6,26,3,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,112,1,1245,98,1,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,18,1,2325,14,0,0 +2013,6,7,5,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,48,-6,0,630,-14,0,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1420,-3,0,1814,11,0,0 +2013,6,21,5,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1449,-10,0,1636,-21,0,0 +2013,7,7,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1040,-11,0,1320,-2,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,22,1,1319,59,1,0 +2013,8,6,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1828,111,1,2125,102,1,0 +2013,8,18,7,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1415,-8,0,1755,3,0,0 +2013,9,11,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1025,19,1,1145,15,1,0 +2013,6,26,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,21,1,2025,17,1,0 +2013,6,10,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,805,-5,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2150,-6,0,43,2,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,10,0,1535,3,0,0 +2013,7,26,5,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,655,-3,0,910,-23,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,731,-3,0,859,2,0,0 +2013,8,31,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,0,0,1020,1,0,0 +2013,9,12,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1150,38,1,1205,34,1,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,0,0,1640,-5,0,0 +2013,9,9,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-7,0,1006,-14,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,-3,0,1211,-15,0,0 +2013,10,14,1,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,1,0,915,3,0,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2200,17,1,2305,26,1,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,600,143,1,1420,115,1,0 +2013,7,18,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,-7,0,940,-10,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1905,3,0,2230,-5,0,0 +2013,6,20,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,27,-7,0,633,-6,0,0 +2013,10,6,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-2,0,954,-3,0,0 +2013,4,7,7,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,-5,0,1700,-17,0,0 +2013,7,22,1,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,1,0,1340,10,0,0 +2013,10,29,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,810,-2,0,1045,-1,0,0 +2013,4,17,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1200,-2,0,1420,-11,0,0 +2013,10,24,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1605,-3,0,19,3,0,0 +2013,7,18,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-1,0,801,-21,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,-5,0,1651,-19,0,0 +2013,6,10,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2055,-5,0,2230,-23,0,0 +2013,6,21,5,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1839,17,1,2028,13,0,0 +2013,10,17,4,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1646,-13,0,1737,-14,0,0 +2013,8,30,5,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1251,3,0,1348,-6,0,0 +2013,8,17,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-3,0,1620,0,0,0 +2013,8,28,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1235,-3,0,1355,-9,0,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1720,84,1,1830,79,1,0 +2013,9,13,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2005,-6,0,2054,-17,0,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1739,-1,0,1933,0,0,0 +2013,5,12,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,9,0,1710,2,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-4,0,1629,-8,0,0 +2013,8,4,7,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,8,0,2115,1,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,37,1,40,23,1,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,847,-4,0,1030,-18,0,0 +2013,8,22,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,10,0,1935,33,1,0 +2013,4,6,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,2115,0,0,2326,-15,0,0 +2013,9,23,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1014,-4,0,1224,-17,0,0 +2013,8,9,5,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1400,107,1,2235,79,1,0 +2013,4,1,1,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1300,50,1,2052,31,1,0 +2013,7,9,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,147,1,1114,143,1,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,625,-2,0,735,1,0,0 +2013,9,10,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1416,-10,0,1548,-7,0,0 +2013,7,13,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,710,-7,0,855,-23,0,0 +2013,9,13,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1400,-3,0,1434,5,0,0 +2013,5,18,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,830,2,0,945,-6,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,740,-2,0,1010,2,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-3,0,1627,-14,0,0 +2013,7,17,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-1,0,815,0,0,0 +2013,5,10,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,846,-14,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,1200,-11,0,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2055,25,1,2315,18,1,0 +2013,7,3,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,6,0,2150,-2,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,838,-5,0,911,-10,0,0 +2013,4,16,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,0,,1850,0,1,1 +2013,5,24,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-3,0,1136,0,0,0 +2013,8,1,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1322,16,1,1539,22,1,0 +2013,9,1,7,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,855,-5,0,1110,-14,0,0 +2013,4,14,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1718,28,1,1909,40,1,0 +2013,9,7,6,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1625,-6,0,1833,-26,0,0 +2013,5,22,3,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,815,-1,0,1019,-1,0,0 +2013,8,22,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1529,83,1,1656,70,1,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1915,-3,0,2052,-13,0,0 +2013,8,30,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,540,0,0,1200,-27,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1940,19,1,2240,18,1,0 +2013,6,7,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,709,-10,0,907,-13,0,0 +2013,7,11,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,86,1,1254,81,1,0 +2013,5,18,6,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1109,-10,0,1603,-14,0,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1735,27,1,1915,10,0,0 +2013,6,14,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,-4,0,1520,12,0,0 +2013,4,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-1,0,845,-4,0,0 +2013,7,15,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1415,-9,0,1700,-23,0,0 +2013,9,29,7,EV,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,710,7,0,846,-10,0,0 +2013,10,22,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-2,0,905,-15,0,0 +2013,6,6,4,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1215,-5,0,1350,-21,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1812,45,1,1941,17,1,0 +2013,9,2,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1853,115,1,2100,118,1,0 +2013,5,8,3,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1645,159,1,1851,149,1,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-4,0,1025,-12,0,0 +2013,7,2,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,28,1,1254,31,1,0 +2013,5,30,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1828,-10,0,0 +2013,9,1,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1733,-7,0,1903,76,1,0 +2013,8,5,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1330,-3,0,1340,10,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,-3,0,2124,-4,0,0 +2013,10,10,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,22,1,1430,13,0,0 +2013,4,22,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1908,28,1,1929,31,1,0 +2013,7,29,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-2,0,1225,-24,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,41,1,2305,41,1,0 +2013,4,22,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,705,-5,0,1458,29,1,0 +2013,6,9,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1250,0,0,1825,12,0,0 +2013,8,21,3,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1415,-3,0,1910,-25,0,0 +2013,10,13,7,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,0,,1922,0,1,1 +2013,10,13,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-10,0,750,-32,0,0 +2013,10,31,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,958,1,0,1318,1,0,0 +2013,5,1,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1120,-1,0,1215,-7,0,0 +2013,5,17,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-3,0,1743,-8,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,22,1,1830,23,1,0 +2013,6,11,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-5,0,2145,-32,0,0 +2013,8,23,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1221,-2,0,1357,-8,0,0 +2013,6,2,7,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-5,0,554,-26,0,0 +2013,5,27,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,13,0,2210,5,0,0 +2013,4,5,5,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,155,1,845,129,1,0 +2013,9,11,3,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1311,-3,0,1528,-9,0,0 +2013,9,15,7,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,825,-4,0,1633,-11,0,0 +2013,9,17,2,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-1,0,809,10,0,0 +2013,8,5,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-6,0,1728,-15,0,0 +2013,8,18,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1603,-1,0,1903,22,1,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1859,23,1,1959,10,0,0 +2013,9,1,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-2,0,1910,-10,0,0 +2013,7,16,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1705,67,1,1805,64,1,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1510,27,1,2210,23,1,0 +2013,5,4,6,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,12,0,1920,4,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,-1,0,1600,-6,0,0 +2013,9,29,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1955,-4,0,2115,1,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,815,0,0,950,-14,0,0 +2013,8,6,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1337,-9,0,1539,-22,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1810,18,1,1825,19,1,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1210,0,0,1325,13,0,0 +2013,6,21,5,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,0,0,1625,-8,0,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-4,0,1305,-17,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,178,1,1310,180,1,0 +2013,10,4,5,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,825,-3,0,1026,-8,0,0 +2013,6,13,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,19,1,1920,8,0,0 +2013,8,6,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,940,-5,0,0 +2013,9,13,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,-2,0,2018,-31,0,0 +2013,4,16,2,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,22,1,1640,-1,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1506,10,0,1608,-8,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,930,0,0,1400,-4,0,0 +2013,4,23,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-3,0,1245,-9,0,0 +2013,10,21,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,-3,0,1242,-9,0,0 +2013,9,15,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,1624,2,0,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-3,0,2011,-3,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1130,19,1,1510,18,1,0 +2013,8,3,6,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-6,0,846,-14,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1430,31,1,1530,31,1,0 +2013,5,8,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-10,0,914,3,0,0 +2013,5,13,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1124,-3,0,1627,-1,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1505,17,1,1620,11,0,0 +2013,6,2,7,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,0,0,1930,-7,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1700,31,1,1830,44,1,0 +2013,9,12,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,750,1,0,810,-8,0,0 +2013,5,5,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1030,-12,0,1210,-45,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1605,-6,0,1900,-1,0,0 +2013,4,20,6,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,755,-6,0,1036,14,0,0 +2013,8,17,6,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,955,-1,0,1210,-12,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,23,1,1550,21,1,0 +2013,4,12,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,10,0,1312,5,0,0 +2013,8,23,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1557,16,1,1702,26,1,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1017,-6,0,1151,-7,0,0 +2013,5,24,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1253,-16,0,0 +2013,8,5,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-9,0,1915,-24,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,0,0,2015,-5,0,0 +2013,10,18,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,620,-2,0,725,-7,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,8,0,2237,-14,0,0 +2013,9,12,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,189,1,2140,178,1,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,751,13,0,1012,26,1,0 +2013,6,25,2,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1559,132,1,1914,136,1,0 +2013,5,14,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-2,0,1750,-3,0,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1054,9,0,1407,3,0,0 +2013,8,10,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,720,-4,0,1221,-11,0,0 +2013,6,2,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1357,48,1,1556,49,1,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1515,32,1,1720,39,1,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1240,12,0,1435,-7,0,0 +2013,8,11,7,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1040,-7,0,1240,-17,0,0 +2013,10,31,4,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,703,-7,0,945,-8,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,800,-4,0,905,-12,0,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1415,26,1,2258,23,1,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,4,0,201,61,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,1,0,2117,3,0,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2040,39,1,2340,33,1,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,-1,0,110,-9,0,0 +2013,9,28,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,2,0,1314,3,0,0 +2013,5,16,4,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1700,-1,0,2011,-4,0,0 +2013,7,9,2,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,555,1,0,852,-5,0,0 +2013,10,18,5,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,710,-2,0,725,3,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,22,1,1410,12,0,0 +2013,5,9,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,14,0,1050,12,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1725,1,0,1830,-4,0,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,901,0,0,1106,1,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2045,-2,0,2232,5,0,0 +2013,10,18,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,805,-5,0,910,-11,0,0 +2013,7,8,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,750,-1,0,910,-9,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,115,1,1920,103,1,0 +2013,10,7,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,-5,0,833,-3,0,0 +2013,5,7,2,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,0,0,1912,-12,0,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,1,0,1000,-2,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1705,-4,0,2045,14,0,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2150,-3,0,2337,-9,0,0 +2013,10,20,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1045,4,0,1150,1,0,0 +2013,10,24,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1200,54,1,1300,42,1,0 +2013,10,12,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1427,24,1,1535,21,1,0 +2013,4,1,1,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,600,-5,0,815,-1,0,0 +2013,10,16,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1345,-9,0,1639,-6,0,0 +2013,6,19,3,DL,14679,San Diego International,San Diego,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-1,0,1902,-15,0,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,1,0,1440,11,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-5,0,1150,-14,0,0 +2013,5,30,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,800,-3,0,1301,2,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1540,4,0,1930,8,0,0 +2013,7,31,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,-2,0,745,-2,0,0 +2013,9,8,7,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,930,4,0,1530,3,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1000,2,0,1228,-20,0,0 +2013,10,16,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,1,0,1726,4,0,0 +2013,7,2,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,0,0,1955,-35,0,0 +2013,8,22,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,603,-5,0,716,-20,0,0 +2013,9,2,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1026,-2,0,1206,-6,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,0,0,1211,12,0,0 +2013,6,25,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,800,-2,0,910,-4,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1006,7,0,1141,-11,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,0,0,1010,-9,0,0 +2013,8,9,5,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1947,45,1,2030,60,1,0 +2013,4,2,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,805,-3,0,940,-9,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,745,0,0,840,-10,0,0 +2013,4,23,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,10,0,1355,2,0,0 +2013,8,27,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,945,-1,0,1135,-29,0,0 +2013,10,1,2,WN,10693,Nashville International,Nashville,TN,14122,Pittsburgh International,Pittsburgh,PA,1730,-2,0,1955,-8,0,0 +2013,10,14,1,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,0,0,1955,-10,0,0 +2013,10,6,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1215,-1,0,1400,-14,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2045,5,0,2210,3,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1315,22,1,1615,27,1,0 +2013,10,28,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1155,19,1,1405,0,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,900,174,1,1145,160,1,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,2020,-8,0,2303,-9,0,0 +2013,9,23,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,845,-2,0,1109,4,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1420,13,0,1624,15,1,0 +2013,7,25,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,800,4,0,1016,-1,0,0 +2013,10,28,1,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1136,-4,0,1652,-28,0,0 +2013,7,3,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,36,1,1806,23,1,0 +2013,5,25,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1505,1,0,1605,8,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1429,26,1,1830,15,1,0 +2013,9,16,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1014,-4,0,1224,-10,0,0 +2013,4,26,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1215,42,1,1540,26,1,0 +2013,5,29,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-8,0,1803,-10,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-1,0,1331,-9,0,0 +2013,4,5,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1855,15,1,2135,6,0,0 +2013,7,22,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1900,11,0,2025,13,0,0 +2013,4,3,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,803,-4,0,924,-5,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2045,70,1,18,59,1,0 +2013,7,27,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,35,1,2125,19,1,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2100,10,0,2230,12,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-4,0,1000,-13,0,0 +2013,9,22,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1429,-9,0,1802,-15,0,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,714,4,0,1111,1,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,600,0,0,939,-6,0,0 +2013,9,18,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,-3,0,648,-10,0,0 +2013,9,5,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1550,6,0,1700,-4,0,0 +2013,10,3,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1510,-4,0,1557,-6,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1951,-2,0,2242,1,0,0 +2013,7,27,6,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,804,7,0,1146,7,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1359,-4,0,1559,-6,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1545,91,1,2030,91,1,0 +2013,9,10,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1935,10,0,2105,-4,0,0 +2013,10,8,2,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1755,-10,0,2052,-10,0,0 +2013,8,8,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1820,-4,0,2105,-3,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1820,-3,0,1935,-13,0,0 +2013,10,4,5,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1212,-9,0,1453,5,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1825,-2,0,2056,24,1,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1946,130,1,2125,119,1,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2155,17,1,2255,0,0,0 +2013,10,22,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,604,-5,0,703,-13,0,0 +2013,7,23,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1323,9,0,1355,17,1,0 +2013,5,10,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,15,1,1515,5,0,0 +2013,10,6,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,11,0,1921,7,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1135,-4,0,1355,-21,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,-3,0,1817,-11,0,0 +2013,10,23,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1656,-6,0,1758,-15,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1150,0,0,1305,11,0,0 +2013,4,10,3,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,840,118,1,1435,118,1,0 +2013,9,9,1,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-7,0,1945,-1,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,832,1,0,907,-11,0,0 +2013,10,17,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1538,-3,0,1643,-3,0,0 +2013,8,13,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,2,0,2145,-9,0,0 +2013,10,10,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,715,-1,0,850,-3,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1725,17,1,1825,2,0,0 +2013,4,8,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,-6,0,1920,0,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1211,6,0,1402,-2,0,0 +2013,8,9,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1855,172,1,2225,159,1,0 +2013,7,24,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1356,0,0,1640,-3,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,115,4,0,808,2,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1320,4,0,1640,-15,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,7,0,1656,6,0,0 +2013,6,12,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1935,0,,2125,0,1,1 +2013,8,18,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,5,0,1922,-5,0,0 +2013,5,30,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2015,-1,0,2130,-6,0,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2005,-4,0,2320,-9,0,0 +2013,5,21,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1102,14,0,1319,3,0,0 +2013,5,7,2,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1458,4,0,1744,-16,0,0 +2013,9,18,3,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,-7,0,2000,-25,0,0 +2013,10,15,2,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-1,0,1005,2,0,0 +2013,10,10,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1310,11,0,1415,3,0,0 +2013,6,4,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-2,0,1345,-12,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-8,0,1133,-9,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,2,0,1115,-11,0,0 +2013,5,14,2,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,600,-8,0,845,-25,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1515,-2,0,1647,-11,0,0 +2013,10,5,6,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1655,-6,0,1806,-6,0,0 +2013,9,20,5,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2225,-6,0,700,-14,0,0 +2013,8,23,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,8,0,1655,3,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,1,0,1215,-22,0,0 +2013,10,12,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-7,0,1610,-8,0,0 +2013,9,12,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,845,-5,0,1035,8,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1716,38,1,1913,69,1,0 +2013,5,4,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1510,-7,0,1645,-4,0,0 +2013,6,17,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1340,19,1,1456,21,1,0 +2013,9,20,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,18,1,2115,8,0,0 +2013,10,4,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,46,-6,0,841,-13,0,0 +2013,6,20,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,-7,0,1946,-23,0,0 +2013,7,13,6,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-1,0,1105,-6,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1944,13,0,2124,-1,0,0 +2013,6,21,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,68,1,1653,76,1,0 +2013,8,7,3,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1040,-1,0,1240,-2,0,0 +2013,7,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-10,0,151,-13,0,0 +2013,8,12,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1920,-4,0,2045,-19,0,0 +2013,10,15,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1730,-9,0,2018,-13,0,0 +2013,4,12,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-12,0,2015,-17,0,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,8,0,1829,75,1,0 +2013,6,21,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,-7,0,2025,0,0,0 +2013,6,18,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,545,-2,0,859,-7,0,0 +2013,9,30,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-7,0,1724,-9,0,0 +2013,4,14,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1043,-2,0,1515,-15,0,0 +2013,4,18,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,15,1,1803,7,0,0 +2013,9,24,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-5,0,1010,-9,0,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-2,0,2203,-1,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,2130,0,0,2333,7,0,0 +2013,8,6,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1700,5,0,2108,-5,0,0 +2013,5,28,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1635,-6,0,1830,-19,0,0 +2013,5,2,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2314,5,0,509,-4,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1611,33,1,1811,32,1,0 +2013,10,15,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1115,19,1,1334,13,0,0 +2013,10,8,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-1,0,825,-7,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1048,-4,0,1501,-28,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1025,0,0,1115,-11,0,0 +2013,5,3,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1359,14,0,1714,-10,0,0 +2013,4,24,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2044,61,1,2224,48,1,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1530,14,0,1700,10,0,0 +2013,9,29,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-4,0,1850,-14,0,0 +2013,8,15,4,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,12,0,2015,16,1,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,33,1,2125,29,1,0 +2013,9,9,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,7,0,1855,-11,0,0 +2013,6,14,5,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,828,0,0,1022,-7,0,0 +2013,9,8,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1900,-4,0,2134,-20,0,0 +2013,7,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1506,25,1,1553,13,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,42,1,2226,35,1,0 +2013,6,18,2,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-16,0,549,-29,0,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2155,2,0,2330,2,0,0 +2013,9,3,2,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,700,0,0,1300,-15,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,2100,41,1,2250,26,1,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1725,-4,0,1910,-14,0,0 +2013,5,23,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-4,0,1604,-7,0,0 +2013,6,5,3,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,0,0,1538,10,0,0 +2013,5,12,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-2,0,1610,-4,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,800,19,1,1118,-38,0,0 +2013,10,6,7,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1845,-6,0,2214,-9,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1545,-2,0,1825,-15,0,0 +2013,7,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,40,1,1859,24,1,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-2,0,1310,-3,0,0 +2013,6,11,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1148,-2,0,1444,-17,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2032,-3,0,2155,-6,0,0 +2013,8,24,6,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1440,154,1,1650,154,1,0 +2013,4,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-1,0,1509,-14,0,0 +2013,10,12,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-8,0,1725,-17,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1850,49,1,2205,47,1,0 +2013,7,19,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,330,1,1850,343,1,0 +2013,9,19,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-2,0,1130,-9,0,0 +2013,9,5,4,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1850,-14,0,2120,-34,0,0 +2013,10,7,1,YV,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,67,1,1507,112,1,0 +2013,8,22,4,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1640,0,,1830,0,1,1 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1000,-4,0,1200,-7,0,0 +2013,4,13,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2053,82,1,2359,61,1,0 +2013,10,6,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,29,1,1714,30,1,0 +2013,9,19,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,0,0,1901,-18,0,0 +2013,4,24,3,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,46,1,1735,33,1,0 +2013,10,12,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1432,-2,0,1554,1,0,0 +2013,8,26,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1951,-9,0,2130,-27,0,0 +2013,6,20,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1720,-5,0,1905,-3,0,0 +2013,6,14,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1005,87,1,1135,112,1,0 +2013,6,26,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1835,21,1,2005,17,1,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2209,21,1,44,15,1,0 +2013,6,22,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-9,0,850,-3,0,0 +2013,6,25,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-6,0,810,-5,0,0 +2013,4,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1800,79,1,2027,85,1,0 +2013,7,4,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1713,27,1,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1555,-1,0,1659,-18,0,0 +2013,7,10,3,EV,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-3,0,1530,35,1,0 +2013,8,8,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,505,0,0,752,6,0,0 +2013,8,8,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,26,1,1155,10,0,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1934,10,0,2123,-17,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1440,3,0,1559,-4,0,0 +2013,8,30,5,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1428,1,0,1605,10,0,0 +2013,6,1,6,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1030,-14,0,1830,-8,0,0 +2013,7,29,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-5,0,1450,3,0,0 +2013,7,3,3,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1535,12,0,1856,-6,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-1,0,1227,-12,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,18,1,1505,11,0,0 +2013,6,14,5,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,949,10,0,1425,10,0,0 +2013,8,27,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-14,0,929,-14,0,0 +2013,4,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-3,0,1827,-10,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1150,57,1,1315,47,1,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,900,-1,0,1030,-15,0,0 +2013,7,25,4,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,959,-7,0,1315,-9,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1525,-3,0,1655,-21,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,10,0,1925,5,0,0 +2013,10,29,2,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1336,-11,0,1446,-16,0,0 +2013,5,21,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,820,1,0,935,10,0,0 +2013,8,27,2,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-8,0,2000,-7,0,0 +2013,5,26,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,0,0,1637,7,0,0 +2013,5,20,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-9,0,753,-29,0,0 +2013,5,30,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,21,1,1825,37,1,0 +2013,7,18,4,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,-4,0,2109,7,0,0 +2013,5,2,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,13,0,1558,13,0,0 +2013,10,17,4,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1228,121,1,1529,112,1,0 +2013,8,7,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,0,0,1815,-9,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-7,0,1830,-21,0,0 +2013,6,27,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1820,0,,1935,0,1,1 +2013,4,15,1,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,850,0,0,1120,-6,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1345,41,1,1725,23,1,0 +2013,6,23,7,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1717,25,1,2000,5,0,0 +2013,4,30,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1412,-6,0,1635,-18,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,707,-1,0,954,-9,0,0 +2013,5,19,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,1,0,1145,3,0,0 +2013,5,7,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-1,0,1355,-10,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1300,-3,0,1446,-8,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1520,36,1,1615,14,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1240,3,0,1524,-2,0,0 +2013,6,19,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,832,-6,0,855,-18,0,0 +2013,5,9,4,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-5,0,1148,-10,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,950,2,0,1230,-11,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2200,81,1,613,84,1,0 +2013,6,15,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1055,0,,1220,0,1,1 +2013,8,31,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-1,0,1017,-11,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,7,0,2355,12,0,0 +2013,6,14,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,800,-2,0,1005,0,0,0 +2013,5,27,1,US,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-2,0,1857,-7,0,0 +2013,10,12,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,13,0,923,0,0,0 +2013,6,13,4,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-4,0,1040,-1,0,0 +2013,8,11,7,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,911,-2,0,1020,-2,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,-6,0,1335,-8,0,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1514,-4,0,1840,-1,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,815,-2,0,1110,-1,0,0 +2013,7,10,3,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,-4,0,1336,-3,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1400,29,1,1535,19,1,0 +2013,7,9,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,7,0,740,-7,0,0 +2013,10,31,4,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1720,41,1,1955,29,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,53,1,1812,42,1,0 +2013,7,4,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1125,1,0,1250,-4,0,0 +2013,9,23,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,5,0,801,-17,0,0 +2013,9,24,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,-1,0,750,-3,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2210,29,1,55,33,1,0 +2013,7,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-2,0,936,-17,0,0 +2013,4,22,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1935,28,1,2050,25,1,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1942,53,1,2250,96,1,0 +2013,4,8,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-4,0,2040,-12,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-1,0,1226,4,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1539,-4,0,1710,-17,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,-4,0,2042,-16,0,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,4,0,945,-6,0,0 +2013,4,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1055,-5,0,1310,-1,0,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2000,-3,0,2125,1,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2225,2,0,2354,-1,0,0 +2013,7,28,7,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-3,0,1815,2,0,0 +2013,9,21,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1025,-9,0,1436,-4,0,0 +2013,10,3,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-4,0,1242,-6,0,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,11,0,1021,4,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1730,-4,0,1847,-12,0,0 +2013,7,14,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-4,0,1054,-18,0,0 +2013,6,12,3,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,-2,0,705,5,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2059,-1,0,5,-26,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,935,-6,0,1040,-11,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,725,-2,0,850,-12,0,0 +2013,8,22,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1636,57,1,1748,49,1,0 +2013,8,4,7,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1959,107,1,2146,90,1,0 +2013,5,12,7,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,731,-4,0,930,-29,0,0 +2013,7,9,2,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1920,125,1,2045,125,1,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2025,25,1,2310,17,1,0 +2013,9,29,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1425,53,1,2255,50,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,0,0,1953,82,1,0 +2013,9,26,4,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1706,9,0,1850,6,0,0 +2013,5,2,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1845,-7,0,2029,-22,0,0 +2013,7,17,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,700,5,0,1310,4,0,0 +2013,6,3,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1550,4,0,1700,-1,0,0 +2013,10,29,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-9,0,1330,-20,0,0 +2013,9,24,2,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,-7,0,1935,-15,0,0 +2013,5,13,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2130,19,1,547,-17,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,3,0,1010,-11,0,0 +2013,5,23,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1630,-5,0,2205,-16,0,0 +2013,7,9,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2055,9,0,2210,2,0,0 +2013,10,19,6,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-4,0,1025,-12,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1810,11,0,1935,13,0,0 +2013,7,29,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-2,0,1535,-10,0,0 +2013,8,10,6,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,-2,0,1935,-7,0,0 +2013,6,17,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-4,0,1120,-19,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,130,1,1455,147,1,0 +2013,5,19,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1540,30,1,1625,13,0,0 +2013,9,13,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-6,0,1502,-14,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1440,2,0,1713,2,0,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,13,0,1605,-4,0,0 +2013,7,7,7,OO,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,710,68,1,826,57,1,0 +2013,10,31,4,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1635,-6,0,1815,-4,0,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,-4,0,937,-9,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1920,23,1,2020,14,0,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1547,-4,0,1738,27,1,0 +2013,5,15,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1945,4,0,2300,-21,0,0 +2013,6,26,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1425,78,1,1725,59,1,0 +2013,8,10,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2010,0,0,2115,-2,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1455,-4,0,1606,-16,0,0 +2013,6,28,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,7,0,1015,8,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,-2,0,1630,3,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,15,1,1315,17,1,0 +2013,7,12,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,0,0,1750,12,0,0 +2013,6,27,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-9,0,1010,-14,0,0 +2013,10,2,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2050,-15,0,2237,-13,0,0 +2013,5,1,3,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1708,-5,0,1800,-10,0,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,16,1,2208,23,1,0 +2013,9,17,2,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1845,-11,0,2010,-8,0,0 +2013,4,11,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1440,-9,0,1630,-10,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1115,-6,0,1305,-12,0,0 +2013,6,21,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-4,0,834,-3,0,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-3,0,1040,-17,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-5,0,1413,1,0,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,132,1,2343,131,1,0 +2013,5,14,2,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1131,-9,0,1609,-34,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,0,0,1530,39,1,0 +2013,9,12,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1515,-8,0,1620,-14,0,0 +2013,6,17,1,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,710,-9,0,1111,-17,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,48,1,1830,37,1,0 +2013,4,30,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-7,0,2132,-12,0,0 +2013,8,2,5,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,35,1,940,23,1,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,-4,0,1025,-2,0,0 +2013,5,8,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,21,1,1452,23,1,0 +2013,5,21,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-4,0,810,-14,0,0 +2013,5,18,6,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,105,1,1515,103,1,0 +2013,6,9,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,846,-6,0,1016,-9,0,0 +2013,5,26,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-5,0,2214,-19,0,0 +2013,6,27,4,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,14,0,1015,-9,0,0 +2013,7,2,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,-3,0,1608,3,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1544,3,0,1802,-23,0,0 +2013,9,4,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1540,10,0,1655,3,0,0 +2013,9,4,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-9,0,919,-11,0,0 +2013,6,15,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,-4,0,848,-4,0,0 +2013,4,29,1,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,650,-4,0,908,-15,0,0 +2013,7,16,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-7,0,1620,-13,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1215,7,0,2040,18,1,0 +2013,10,6,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-1,0,852,6,0,0 +2013,5,2,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,12,0,115,12,0,0 +2013,6,19,3,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1220,8,0,1401,-5,0,0 +2013,7,7,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-6,0,1650,57,1,0 +2013,4,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,720,-5,0,816,-8,0,0 +2013,10,4,5,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1505,13,0,1610,6,0,0 +2013,7,14,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1305,-8,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,51,1,1448,79,1,0 +2013,9,21,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,2004,-16,0,0 +2013,9,4,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1240,1,0,1350,-3,0,0 +2013,10,14,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1945,-18,0,2150,-28,0,0 +2013,10,23,3,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,0,0,1038,-3,0,0 +2013,9,11,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-2,0,1914,8,0,0 +2013,10,1,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,1025,1,0,0 +2013,6,7,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1728,44,1,2020,37,1,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1905,4,0,30,-8,0,0 +2013,8,1,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1620,179,1,1728,168,1,0 +2013,9,30,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1735,-6,0,1915,-33,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,-2,0,2107,10,0,0 +2013,5,11,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,730,-2,0,830,-10,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,845,-2,0,1025,6,0,0 +2013,5,9,4,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,600,-1,0,706,-4,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1320,-5,0,1700,-8,0,0 +2013,8,29,4,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1106,-8,0,1331,-28,0,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,-11,0,1311,-16,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,13,0,2143,-3,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1429,-4,0,1623,-14,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2055,100,1,2320,87,1,0 +2013,10,17,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,6,0,2010,2,0,0 +2013,8,9,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,1,0,1545,-2,0,0 +2013,6,12,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,845,0,0,1024,2,0,0 +2013,10,11,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,54,1,1605,52,1,0 +2013,4,16,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1944,-4,0,2135,-9,0,0 +2013,4,10,3,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,1,0,1130,24,1,0 +2013,7,14,7,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1200,28,1,1500,12,0,0 +2013,7,29,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,12,0,1412,12,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,810,0,0,930,0,0,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-3,0,817,2,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,-3,0,2304,-26,0,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1746,-5,0,1932,-5,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1840,-5,0,2127,-22,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-3,0,1310,-9,0,0 +2013,7,16,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,936,-3,0,1220,-4,0,0 +2013,6,12,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1530,16,1,1800,10,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,1,0,2159,-16,0,0 +2013,5,9,4,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,0,0,1630,-4,0,0 +2013,8,1,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1235,30,1,0 +2013,8,18,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-5,0,1938,-6,0,0 +2013,5,25,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,9,0,1500,16,1,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1633,-2,0,1817,6,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1857,4,0,2023,11,0,0 +2013,8,16,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,26,1,1820,23,1,0 +2013,6,6,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,743,-9,0,1028,-2,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,910,6,0,1135,7,0,0 +2013,10,30,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,-3,0,20,5,0,0 +2013,9,7,6,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,2205,16,1,2321,11,0,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1820,-6,0,2109,30,1,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1615,-7,0,52,-7,0,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2015,94,1,2255,83,1,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,0,0,1150,-7,0,0 +2013,8,26,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1800,-13,0,2100,-30,0,0 +2013,10,11,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1515,0,0,1630,-3,0,0 +2013,9,3,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1555,5,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,6,0,1920,8,0,0 +2013,7,1,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1318,42,1,1614,20,1,0 +2013,4,23,2,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2257,-2,0,44,-6,0,0 +2013,10,10,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,735,-3,0,830,-7,0,0 +2013,9,12,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,-3,0,1230,-14,0,0 +2013,5,16,4,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1010,55,1,1137,42,1,0 +2013,6,11,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,740,-5,0,805,-14,0,0 +2013,10,24,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1014,177,1,1153,165,1,0 +2013,10,25,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-3,0,1620,-13,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,37,1,1738,81,1,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,1,0,2102,7,0,0 +2013,9,8,7,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,82,1,1222,61,1,0 +2013,9,12,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1825,-2,0,2030,25,1,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2130,53,1,2320,58,1,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1135,-4,0,1250,-8,0,0 +2013,4,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1031,103,1,1116,168,1,0 +2013,8,13,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,10,0,1029,8,0,0 +2013,6,13,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1125,0,,1230,0,1,1 +2013,5,20,1,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,645,1,0,805,-8,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2356,0,0,600,13,0,0 +2013,9,25,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-9,0,1640,-12,0,0 +2013,7,26,5,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1335,7,0,1515,12,0,0 +2013,9,6,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1812,-9,0,2110,-12,0,0 +2013,4,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1710,-2,0,1745,-4,0,0 +2013,9,1,7,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2215,-6,0,546,-11,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,20,1,1918,29,1,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,850,-3,0,1526,-18,0,0 +2013,4,21,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2245,44,1,8,66,1,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,9,0,1545,24,1,0 +2013,4,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1653,4,0,1745,12,0,0 +2013,10,16,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,745,-3,0,1117,-11,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,0,0,1717,-14,0,0 +2013,6,8,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,-1,0,1920,2,0,0 +2013,10,24,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1237,32,1,1535,17,1,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,725,-2,0,853,-13,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1142,0,0,1313,2,0,0 +2013,9,19,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,-5,0,930,-11,0,0 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,600,1,0,1420,21,1,0 +2013,5,12,7,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-1,0,2045,-9,0,0 +2013,7,1,1,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1524,-5,0,1842,-3,0,0 +2013,9,13,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1810,-2,0,2157,1,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2050,17,1,2304,32,1,0 +2013,7,29,1,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,-4,0,1840,0,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,6,0,1835,-1,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1905,127,1,2035,119,1,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,20,1,1029,20,1,0 +2013,5,26,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2055,-4,0,2130,-16,0,0 +2013,6,21,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-4,0,840,-2,0,0 +2013,7,24,3,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1457,1,0,1620,-3,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1420,1,0,1555,-12,0,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,805,-7,0,1111,-12,0,0 +2013,7,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1415,2,0,1545,-14,0,0 +2013,7,31,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1455,13,0,1800,18,1,0 +2013,7,4,4,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,805,0,0,835,-12,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2150,10,0,29,14,0,0 +2013,8,21,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-4,0,1605,-16,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,630,-4,0,931,-18,0,0 +2013,8,14,3,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1046,-5,0,1219,-24,0,0 +2013,7,8,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,0,0,1538,2,0,0 +2013,7,2,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,83,1,2153,84,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1036,-5,0,1240,-19,0,0 +2013,5,20,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1925,30,1,2025,25,1,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-5,0,1252,0,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1450,34,1,2205,13,0,0 +2013,7,13,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,944,41,1,1140,22,1,0 +2013,4,18,4,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1518,187,1,1629,228,1,0 +2013,6,17,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1335,27,1,1455,19,1,0 +2013,10,10,4,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2257,90,1,19,72,1,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,-2,0,2250,-13,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,-2,0,1648,-19,0,0 +2013,6,9,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,825,-3,0,855,-15,0,0 +2013,6,6,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,845,-4,0,1104,12,0,0 +2013,5,2,4,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1509,82,1,1845,81,1,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,850,-6,0,1025,-16,0,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1625,-4,0,1905,-8,0,0 +2013,10,5,6,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1800,-9,0,2007,-14,0,0 +2013,4,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2118,0,0,2333,-2,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1100,5,0,1450,-5,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1215,-9,0,1335,-5,0,0 +2013,9,4,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-4,0,945,-21,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1955,-4,0,2310,-6,0,0 +2013,10,27,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1740,45,1,1900,60,1,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1035,51,1,1430,41,1,0 +2013,6,16,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1700,-8,0,1910,-22,0,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,48,1,1909,51,1,0 +2013,6,24,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-2,0,1642,19,1,0 +2013,5,21,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,1055,9,0,0 +2013,10,8,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,835,55,1,1431,43,1,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2210,0,0,55,1,0,0 +2013,5,15,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-7,0,805,-14,0,0 +2013,5,26,7,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,740,-6,0,930,-5,0,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,-6,0,614,-16,0,0 +2013,9,8,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,19,1,2140,2,0,0 +2013,8,16,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1908,-5,0,2121,-24,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1100,76,1,1155,69,1,0 +2013,6,20,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,10,0,1700,-2,0,0 +2013,7,21,7,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,33,1,1320,25,1,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1625,45,1,1920,83,1,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,-1,0,1025,9,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,930,0,0,1116,7,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1455,-4,0,1945,-15,0,0 +2013,5,26,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-4,0,1855,3,0,0 +2013,9,4,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1115,-3,0,1245,-1,0,0 +2013,10,4,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1125,-3,0,1321,-17,0,0 +2013,9,5,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1216,0,,1329,0,1,1 +2013,6,3,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1012,-22,0,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2301,10,0,730,1,0,0 +2013,8,20,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,645,-6,0,1005,4,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-5,0,1623,-19,0,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2105,44,1,2210,39,1,0 +2013,5,27,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-3,0,1035,-23,0,0 +2013,9,25,3,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,800,0,0,940,3,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1706,-1,0,1855,-8,0,0 +2013,6,24,1,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,542,54,1,802,40,1,0 +2013,4,22,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1100,-3,0,1923,3,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-4,0,1251,-21,0,0 +2013,4,28,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,700,-9,0,830,-18,0,0 +2013,10,20,7,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-2,0,1420,-4,0,0 +2013,5,17,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1744,2,0,2016,-15,0,0 +2013,9,21,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,930,4,0,1035,-1,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,2335,-8,0,553,4,0,0 +2013,8,7,3,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,31,1,1850,25,1,0 +2013,8,9,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,740,0,0,855,-10,0,0 +2013,7,7,7,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1728,-3,0,1934,5,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,640,-3,0,943,-4,0,0 +2013,8,22,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,3,0,1510,-7,0,0 +2013,6,2,7,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1644,11,0,1829,3,0,0 +2013,4,26,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1705,39,1,2030,17,1,0 +2013,8,3,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-11,0,2347,-15,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1820,-6,0,2115,-5,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2235,-4,0,707,-37,0,0 +2013,8,20,2,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,825,2,0,1000,-5,0,0 +2013,5,12,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,705,-12,0,822,3,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2010,0,0,2115,11,0,0 +2013,8,20,2,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,730,-4,0,1523,-5,0,0 +2013,9,6,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-7,0,1630,-19,0,0 +2013,6,29,6,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-1,0,752,4,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1608,-5,0,1950,-9,0,0 +2013,4,2,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1055,-4,0,1220,-16,0,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1004,1,0,1549,19,1,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1810,49,1,1905,43,1,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,844,-5,0,1647,-25,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,852,-1,0,1208,-27,0,0 +2013,4,14,7,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1103,-1,0,1258,-3,0,0 +2013,6,24,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1956,-4,0,2304,0,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2140,43,1,2240,40,1,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,11,0,1507,8,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2050,-2,0,5,-16,0,0 +2013,6,5,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1620,-9,0,1905,-21,0,0 +2013,8,8,4,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1725,47,1,2015,70,1,0 +2013,4,12,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-5,0,1235,-12,0,0 +2013,6,9,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-1,0,2057,-3,0,0 +2013,4,1,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,-2,0,910,-3,0,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1250,-2,0,1650,-11,0,0 +2013,7,19,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,645,-1,0,745,6,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1855,-1,0,2015,-8,0,0 +2013,9,28,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1200,3,0,1300,-2,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,825,-2,0,1008,-10,0,0 +2013,10,8,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,945,4,0,1015,8,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1610,-3,0,1701,-6,0,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-5,0,1322,-19,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1455,11,0,1600,1,0,0 +2013,7,26,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1148,5,0,0 +2013,5,19,7,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,830,-7,0,1131,2,0,0 +2013,7,3,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13244,Memphis International,Memphis,TN,905,-6,0,1027,-19,0,0 +2013,7,10,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,0,,2045,0,1,1 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-4,0,2156,-23,0,0 +2013,9,23,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1132,108,1,1438,88,1,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1227,-6,0,1250,-24,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,600,0,0,725,-2,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,29,1,1205,18,1,0 +2013,7,11,4,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1635,191,1,2010,170,1,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1855,24,1,2200,27,1,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,926,-12,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2115,14,0,2255,20,1,0 +2013,6,14,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,9,0,1925,-3,0,0 +2013,9,4,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-5,0,959,-21,0,0 +2013,8,6,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-1,0,1024,-5,0,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1725,-3,0,2040,-18,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,44,1,1655,41,1,0 +2013,6,2,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,34,1,1934,59,1,0 +2013,5,5,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-7,0,1719,-16,0,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1055,11,0,1834,-4,0,0 +2013,8,4,7,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,-4,0,1735,-1,0,0 +2013,5,25,6,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1940,88,1,2246,59,1,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1210,7,0,1425,23,1,0 +2013,4,5,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,745,-4,0,1043,-19,0,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2200,-3,0,2355,-14,0,0 +2013,6,30,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1650,1,0,1805,-6,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,0,0,1004,5,0,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,820,-1,0,1402,-30,0,0 +2013,4,16,2,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,2,0,1815,-8,0,0 +2013,8,10,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-5,0,2100,-10,0,0 +2013,6,13,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1225,25,1,1345,16,1,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,20,1,1807,14,0,0 +2013,5,9,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,935,-4,0,1145,-7,0,0 +2013,7,1,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1110,1,0,1449,1,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1105,7,0,1500,-3,0,0 +2013,5,14,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-6,0,1935,-19,0,0 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,2020,-7,0,2303,-26,0,0 +2013,8,1,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1715,0,0,1854,-9,0,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1415,0,0,1554,-18,0,0 +2013,10,13,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1855,-3,0,2107,-13,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1307,-1,0,1428,2,0,0 +2013,9,14,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-7,0,1309,-6,0,0 +2013,8,12,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2000,-10,0,2135,0,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1640,27,1,2015,31,1,0 +2013,10,21,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1044,3,0,1149,4,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2135,25,1,2300,30,1,0 +2013,7,27,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1045,-6,0,1210,-13,0,0 +2013,10,22,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1902,-7,0,2309,-37,0,0 +2013,6,16,7,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,-3,0,1955,12,0,0 +2013,4,25,4,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,910,-1,0,1045,-11,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2110,-5,0,2347,-40,0,0 +2013,6,17,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,226,1,1645,238,1,0 +2013,9,29,7,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1415,8,0,1538,3,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1820,-5,0,2230,-15,0,0 +2013,6,11,2,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1206,71,1,1708,67,1,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1108,-3,0,1221,-13,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,21,1,2325,22,1,0 +2013,7,7,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,50,1,2044,33,1,0 +2013,5,24,5,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1240,89,1,2100,91,1,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1757,-1,0,1934,-14,0,0 +2013,4,15,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2130,-4,0,2235,-3,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2025,78,1,2255,70,1,0 +2013,8,14,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,5,0,845,3,0,0 +2013,9,29,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1840,-2,0,2155,-7,0,0 +2013,4,19,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1536,24,1,1845,30,1,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,-5,0,1510,-21,0,0 +2013,8,16,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1323,-6,0,1442,-9,0,0 +2013,4,21,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,2014,119,1,2215,96,1,0 +2013,4,16,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1839,-7,0,2015,-23,0,0 +2013,5,20,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1750,398,1,1822,449,1,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,16,1,2130,15,1,0 +2013,8,25,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1750,-3,0,1915,9,0,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1039,9,0,1919,4,0,0 +2013,9,24,2,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1911,-6,0,2215,-22,0,0 +2013,6,14,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,725,-4,0,0 +2013,7,24,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-3,0,1454,33,1,0 +2013,6,28,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1755,7,0,1940,1,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1355,18,1,1500,15,1,0 +2013,7,13,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,4,0,1706,17,1,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,47,1,1930,29,1,0 +2013,8,30,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-4,0,1915,-20,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1610,-4,0,1720,-12,0,0 +2013,4,30,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1210,-3,0,1335,-20,0,0 +2013,8,30,5,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,816,-7,0,1620,-11,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,16,1,2350,16,1,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-3,0,25,-17,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-5,0,2135,-8,0,0 +2013,5,22,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1025,1,0,1135,-7,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1930,7,0,2025,-23,0,0 +2013,7,25,4,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1327,11,0,1840,3,0,0 +2013,4,17,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,4,0,1424,4,0,0 +2013,8,19,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-6,0,1243,-12,0,0 +2013,6,3,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1940,-2,0,2030,-8,0,0 +2013,7,11,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,600,-9,0,1309,-8,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2035,-4,0,2145,-12,0,0 +2013,9,11,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-8,0,1913,-6,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1500,36,1,1730,87,1,0 +2013,10,18,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,834,-7,0,1120,-26,0,0 +2013,8,27,2,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1704,22,1,1927,21,1,0 +2013,4,18,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1655,180,1,1820,185,1,0 +2013,7,28,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,0,0,1928,-19,0,0 +2013,6,30,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,0,0,602,3,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2015,0,,2155,0,1,1 +2013,4,23,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1010,-3,0,1135,-3,0,0 +2013,9,25,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,810,-1,0,910,7,0,0 +2013,5,23,4,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-11,0,2033,-5,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,92,1,1930,67,1,0 +2013,4,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1530,97,1,1836,114,1,0 +2013,7,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1027,11,0,0 +2013,10,3,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1730,7,0,1825,9,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1820,0,,2250,0,1,1 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,0,0,1130,-5,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,-4,0,2159,-8,0,0 +2013,9,8,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-5,0,1123,-19,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,13,0,1955,-18,0,0 +2013,10,25,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,800,-4,0,905,9,0,0 +2013,10,8,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,620,4,0,703,-18,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,-6,0,1835,-7,0,0 +2013,5,24,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,-4,0,1321,-1,0,0 +2013,8,9,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,615,-5,0,900,-19,0,0 +2013,4,7,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1013,-4,0,1412,-24,0,0 +2013,6,7,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,930,-2,0,1135,-6,0,0 +2013,10,3,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,950,0,0,1209,7,0,0 +2013,8,13,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,-3,0,2255,-7,0,0 +2013,5,25,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1845,17,1,1950,0,0,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,635,14,0,855,-5,0,0 +2013,6,15,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,4,0,1645,0,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,4,0,1121,19,1,0 +2013,10,26,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-3,0,1830,-7,0,0 +2013,7,14,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-2,0,841,-5,0,0 +2013,6,3,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1130,0,,1406,0,1,1 +2013,7,15,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,36,1,2025,40,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,-7,0,1426,-1,0,0 +2013,6,17,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,0,0,1230,66,1,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,38,1,2320,15,1,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1940,-3,0,2045,7,0,0 +2013,5,26,7,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1910,3,0,2039,-9,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1500,3,0,1703,-39,0,0 +2013,9,12,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,725,1,0,820,-2,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,21,1,5,4,0,0 +2013,10,18,5,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-4,0,1534,-10,0,0 +2013,9,4,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,11,0,1515,10,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,3,0,2357,19,1,0 +2013,6,9,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,609,-4,0,1429,-13,0,0 +2013,6,24,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1439,29,1,1559,43,1,0 +2013,5,15,3,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,816,-7,0,1400,-18,0,0 +2013,8,10,6,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1145,1,0,1446,-8,0,0 +2013,8,3,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,910,0,0,1130,-2,0,0 +2013,7,10,3,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,950,-2,0,1243,-23,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2108,-4,0,2210,-15,0,0 +2013,10,28,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,930,10,0,1055,22,1,0 +2013,5,11,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,935,-1,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1950,-3,0,2136,-21,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1030,-9,0,1358,-18,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1640,21,1,1841,-8,0,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1305,1,0,1830,-6,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2150,23,1,2250,14,0,0 +2013,5,7,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,813,-1,0,1035,5,0,0 +2013,9,3,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,558,0,0,854,-4,0,0 +2013,5,5,7,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1121,10,0,1356,-8,0,0 +2013,9,18,3,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1655,41,1,1735,45,1,0 +2013,4,28,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-10,0,1610,-14,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2055,21,1,2234,18,1,0 +2013,4,18,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,752,3,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2010,-2,0,2208,-8,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1535,-2,0,1824,38,1,0 +2013,4,29,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,17,1,2045,32,1,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1022,-2,0,1258,-12,0,0 +2013,8,8,4,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,948,3,0,1311,10,0,0 +2013,9,4,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-1,0,1421,-28,0,0 +2013,8,25,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1350,-3,0,1505,-4,0,0 +2013,10,24,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,830,4,0,950,11,0,0 +2013,5,2,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,610,-7,0,745,-16,0,0 +2013,9,25,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,-2,0,1200,-6,0,0 +2013,9,8,7,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1650,-2,0,1805,-4,0,0 +2013,5,10,5,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,31,1,115,31,1,0 +2013,8,15,4,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1630,-4,0,1805,-11,0,0 +2013,8,7,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,74,1,1800,66,1,0 +2013,5,15,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,803,1,0,1419,-15,0,0 +2013,10,21,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1420,-10,0,1555,-4,0,0 +2013,4,27,6,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,1215,-10,0,0 +2013,8,5,1,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1251,35,1,1500,26,1,0 +2013,9,5,4,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,617,-6,0,816,-10,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1210,0,,1422,0,1,1 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1134,2,0,1300,-12,0,0 +2013,4,8,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1836,0,,1944,0,1,1 +2013,9,16,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-3,0,1556,-4,0,0 +2013,8,16,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1026,-5,0,1317,-17,0,0 +2013,5,2,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1025,-2,0,1610,-17,0,0 +2013,10,9,3,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1306,-7,0,1539,-11,0,0 +2013,8,20,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1530,0,0,1659,-10,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,-5,0,2300,1,0,0 +2013,5,13,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1706,-9,0,1809,-10,0,0 +2013,8,16,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,140,1,1540,150,1,0 +2013,8,6,2,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1830,73,1,2005,54,1,0 +2013,9,11,3,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1400,124,1,1619,120,1,0 +2013,9,22,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1609,-7,0,1732,-14,0,0 +2013,8,22,4,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-12,0,1858,20,1,0 +2013,9,29,7,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1642,-7,0,1836,1,0,0 +2013,9,28,6,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2022,-4,0,2246,-28,0,0 +2013,5,18,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1155,8,0,1230,0,0,0 +2013,10,6,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2142,24,1,2252,24,1,0 +2013,10,31,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1605,20,1,1725,8,0,0 +2013,9,24,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1703,-3,0,2103,-17,0,0 +2013,5,11,6,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1438,-7,0,1610,-26,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-4,0,1830,-18,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,-6,0,1541,-22,0,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1758,0,,2354,0,1,1 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1301,1,0,1412,-10,0,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1700,2,0,1805,2,0,0 +2013,6,11,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,800,26,1,1015,28,1,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,-7,0,1535,-13,0,0 +2013,4,23,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-8,0,852,-14,0,0 +2013,10,2,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2200,18,1,2305,17,1,0 +2013,4,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2009,-10,0,2110,-20,0,0 +2013,4,12,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,0,,1425,0,1,1 +2013,6,19,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1100,-9,0,1522,16,1,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,2,0,1926,-15,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,17,1,903,17,1,0 +2013,7,13,6,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2150,-3,0,2359,-25,0,0 +2013,8,22,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,641,-6,0,800,-18,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,47,1,2130,34,1,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,735,251,1,1050,243,1,0 +2013,9,12,4,FL,13244,Memphis International,Memphis,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1609,72,1,1915,112,1,0 +2013,4,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1936,8,0,2000,0,0,0 +2013,8,1,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,-5,0,1815,-21,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,-9,0,1010,-39,0,0 +2013,7,13,6,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1750,-5,0,2000,4,0,0 +2013,5,20,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1400,18,1,1520,18,1,0 +2013,4,15,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,900,-7,0,1042,-4,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,23,1,1115,31,1,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,41,1,2000,34,1,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,625,-2,0,750,-13,0,0 +2013,7,12,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-4,0,1358,0,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1435,-5,0,1653,-9,0,0 +2013,4,25,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,0,0,1335,14,0,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,5,0,1915,8,0,0 +2013,10,30,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1117,44,1,1230,35,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,71,1,1050,57,1,0 +2013,7,11,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1400,-5,0,1504,-16,0,0 +2013,5,19,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,260,1,1501,258,1,0 +2013,4,19,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1215,-2,0,1400,-4,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1745,9,0,2225,-5,0,0 +2013,7,9,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,21,1,1330,12,0,0 +2013,7,21,7,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,1,0,1400,-11,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1533,-2,0,1845,-6,0,0 +2013,10,3,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,5,0,1750,-8,0,0 +2013,5,22,3,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,600,-8,0,821,4,0,0 +2013,7,21,7,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1355,13,0,1700,25,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-4,0,1115,1,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1920,-1,0,2144,-11,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2355,-5,0,550,2,0,0 +2013,4,18,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,606,180,1,750,204,1,0 +2013,6,1,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1440,-6,0,1625,-20,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-2,0,1232,9,0,0 +2013,10,7,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,22,1,1625,13,0,0 +2013,7,20,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,54,1,2135,52,1,0 +2013,5,13,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1730,2,0,2012,-5,0,0 +2013,9,13,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1905,5,0,2005,15,1,0 +2013,7,24,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1332,5,0,0 +2013,5,16,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,930,14,0,1100,5,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1000,-9,0,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1730,-1,0,2108,-20,0,0 +2013,5,12,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1800,-3,0,2325,-2,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,740,-5,0,845,-16,0,0 +2013,6,18,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2020,33,1,2120,27,1,0 +2013,10,29,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1410,1,0,1540,-18,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1755,27,1,1940,29,1,0 +2013,5,23,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1155,-1,0,1407,0,0,0 +2013,4,28,7,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,-10,0,2135,-2,0,0 +2013,6,1,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-11,0,1609,-10,0,0 +2013,6,29,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1350,9,0,1510,4,0,0 +2013,10,28,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1255,88,1,1405,80,1,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1735,-2,0,2015,-16,0,0 +2013,6,22,6,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,938,15,1,1010,5,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1840,-5,0,2145,-20,0,0 +2013,9,21,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1620,-2,0,1805,-16,0,0 +2013,10,18,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1505,0,0,1740,-14,0,0 +2013,5,5,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1935,12,0,2105,4,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,-6,0,1944,-21,0,0 +2013,9,18,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,630,-4,0,742,-9,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,28,1,2250,27,1,0 +2013,9,12,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-10,0,1010,-16,0,0 +2013,8,13,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1350,-2,0,1555,0,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,51,1,1635,62,1,0 +2013,10,13,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1255,28,1,1355,27,1,0 +2013,8,8,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,-2,0,1953,9,0,0 +2013,6,15,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-6,0,809,-5,0,0 +2013,9,24,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-4,0,1300,-9,0,0 +2013,7,16,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-2,0,1315,-4,0,0 +2013,8,27,2,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,149,1,755,162,1,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1316,5,0,1649,-1,0,0 +2013,7,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,1,0,1530,-3,0,0 +2013,6,8,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-10,0,914,-14,0,0 +2013,8,3,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,13,0,543,7,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1738,-1,0,1941,11,0,0 +2013,6,22,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,0,0,1455,-20,0,0 +2013,5,11,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,720,-4,0,940,12,0,0 +2013,10,22,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1932,173,1,2250,150,1,0 +2013,7,13,6,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1107,-6,0,1505,2,0,0 +2013,4,25,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1310,34,1,1510,62,1,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1940,-2,0,2035,-12,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1022,-1,0,1451,-13,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1905,40,1,2035,48,1,0 +2013,10,11,5,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1440,10,0,1738,10,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,18,1,1831,21,1,0 +2013,10,16,3,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1223,-6,0,1819,-36,0,0 +2013,6,4,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,755,-4,0,1125,-19,0,0 +2013,4,20,6,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,1,0,945,-15,0,0 +2013,8,6,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,15,1,1345,4,0,0 +2013,10,30,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1950,-5,0,2055,-7,0,0 +2013,8,30,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1010,0,0,1130,3,0,0 +2013,8,3,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1035,-3,0,1400,2,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,89,1,1618,158,1,0 +2013,7,30,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-2,0,1500,2,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1135,-6,0,1251,-11,0,0 +2013,8,7,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1720,7,0,2002,22,1,0 +2013,9,15,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1844,5,0,2042,-10,0,0 +2013,7,24,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1745,0,0,2110,-5,0,0 +2013,6,1,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,856,0,0,1108,-25,0,0 +2013,4,8,1,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1825,-2,0,1925,0,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,16,1,835,7,0,0 +2013,7,25,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,19,1,1700,15,1,0 +2013,9,11,3,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-5,0,1127,-10,0,0 +2013,5,9,4,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,0,0,1733,-5,0,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,650,0,0,935,-10,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,-4,0,925,-6,0,0 +2013,8,24,6,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,845,-6,0,1107,-17,0,0 +2013,6,11,2,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1352,17,1,1520,12,0,0 +2013,7,15,1,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-3,0,919,0,0,0 +2013,9,6,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,-9,0,2243,-5,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1635,1,0,2350,3,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2151,-7,0,2306,-20,0,0 +2013,6,3,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1653,-2,0,1738,0,0,0 +2013,6,30,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,1,0,940,-12,0,0 +2013,7,11,4,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1525,7,0,1817,23,1,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2040,28,1,2320,21,1,0 +2013,7,30,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1110,-2,0,1213,-7,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1950,27,1,2145,25,1,0 +2013,8,18,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,803,2,0,1640,-1,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-6,0,1018,-9,0,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1740,15,1,2031,13,0,0 +2013,9,19,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1853,126,1,2053,120,1,0 +2013,10,10,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,825,1,0,1235,-19,0,0 +2013,8,5,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,-5,0,1335,-10,0,0 +2013,7,28,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,10,0,2010,10,0,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1939,-5,0,2245,10,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,700,-4,0,1113,-17,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,9,0,1305,4,0,0 +2013,7,4,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1335,-3,0,1455,-12,0,0 +2013,9,20,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,755,69,1,1045,65,1,0 +2013,6,29,6,DL,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1055,0,0,1519,-4,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,-1,0,1620,-16,0,0 +2013,8,6,2,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,700,17,1,1311,-20,0,0 +2013,6,12,3,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1230,-2,0,1450,-13,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1924,-1,0,2046,-14,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,0,,2200,0,1,1 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,16,1,1421,10,0,0 +2013,9,26,4,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,0,0,2133,-15,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1905,-9,0,2057,-38,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,-1,0,2250,-12,0,0 +2013,6,24,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,-1,0,1327,-3,0,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1420,7,0,1540,-5,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,-3,0,1758,-8,0,0 +2013,10,26,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1910,0,0,2210,-11,0,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,5,0,1620,6,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,0,0,1435,-20,0,0 +2013,6,26,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,1,0,650,-1,0,0 +2013,6,8,6,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,9,0,835,-9,0,0 +2013,10,22,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-10,0,2055,9,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1005,-2,0,1153,-12,0,0 +2013,4,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-2,0,1204,9,0,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,-1,0,1000,-10,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2220,-1,0,2235,-8,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,3,0,1455,7,0,0 +2013,4,30,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,82,1,1807,87,1,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,905,176,1,1025,173,1,0 +2013,7,20,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1535,0,0,1853,11,0,0 +2013,5,31,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1854,-5,0,2020,-1,0,0 +2013,9,15,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1617,8,0,0 +2013,7,3,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,0,0,1938,3,0,0 +2013,10,14,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-7,0,1345,37,1,0 +2013,6,21,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2011,22,1,2132,3,0,0 +2013,9,30,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-4,0,1655,-16,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1631,-3,0,1753,6,0,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-2,0,208,-22,0,0 +2013,6,17,1,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,9,0,2226,18,1,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1254,-2,0,1747,-13,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,0,0,2055,-15,0,0 +2013,8,13,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,1,0,1000,-4,0,0 +2013,7,6,6,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1825,-10,0,2120,-30,0,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,50,1,1750,108,1,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2045,-5,0,2247,-12,0,0 +2013,4,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,840,-2,0,1045,-12,0,0 +2013,4,26,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,2,0,1930,-14,0,0 +2013,5,28,2,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1559,-8,0,1855,-9,0,0 +2013,10,9,3,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1655,140,1,1845,122,1,0 +2013,4,4,4,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1743,-3,0,2108,-8,0,0 +2013,4,26,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1430,15,1,1701,7,0,0 +2013,8,12,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1918,-1,0,2050,2,0,0 +2013,4,26,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1814,27,1,2130,29,1,0 +2013,7,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1030,-9,0,1142,-6,0,0 +2013,6,18,2,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,708,-4,0,1030,-11,0,0 +2013,5,13,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-2,0,1100,-9,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,33,1,1310,41,1,0 +2013,6,12,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-5,0,2148,5,0,0 +2013,10,13,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,12,0,1535,2,0,0 +2013,10,7,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-3,0,929,-10,0,0 +2013,6,14,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-3,0,1123,-7,0,0 +2013,5,2,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1855,-1,0,2030,-12,0,0 +2013,7,12,5,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1845,112,1,2140,89,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1051,-1,0,1237,-11,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1905,13,0,2113,22,1,0 +2013,4,10,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,51,1,2135,70,1,0 +2013,8,8,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,-8,0,1426,-11,0,0 +2013,10,18,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1059,-4,0,1242,8,0,0 +2013,6,27,4,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,174,1,2308,159,1,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1030,13,0,1143,19,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2007,25,1,2215,21,1,0 +2013,7,5,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1548,-6,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1820,22,1,1940,13,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-5,0,224,-31,0,0 +2013,8,13,2,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1204,-5,0,1439,-13,0,0 +2013,7,22,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1935,156,1,2100,146,1,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1555,10,0,1725,4,0,0 +2013,5,29,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1120,16,1,1240,22,1,0 +2013,4,16,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1334,6,0,1530,4,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1710,86,1,2255,66,1,0 +2013,6,5,3,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1510,2,0,1719,9,0,0 +2013,4,16,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-8,0,1332,-8,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1345,0,0,1440,-4,0,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1742,-4,0,1923,-11,0,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1120,-1,0,1230,-4,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,740,13,0,955,27,1,0 +2013,8,2,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,3,0,1054,2,0,0 +2013,5,25,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2015,-5,0,500,15,1,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,9,0,1430,2,0,0 +2013,10,17,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-5,0,2058,-15,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,18,1,1645,47,1,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,0,0,1413,-3,0,0 +2013,8,21,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2053,-6,0,2219,-7,0,0 +2013,7,2,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,745,-2,0,858,-7,0,0 +2013,6,11,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,-8,0,915,-8,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,16,1,2200,-3,0,0 +2013,4,16,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2050,11,0,2110,23,1,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,14,0,1829,19,1,0 +2013,4,7,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1508,-3,0,1819,-12,0,0 +2013,7,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,-5,0,1125,-13,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1124,-1,0,1211,3,0,0 +2013,8,3,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-5,0,1415,-14,0,0 +2013,5,18,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,25,1,1300,18,1,0 +2013,7,16,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,-4,0,853,-9,0,0 +2013,5,14,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,605,-1,0,710,-11,0,0 +2013,4,30,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-9,0,1205,-5,0,0 +2013,10,5,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,1034,-11,0,0 +2013,7,9,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-2,0,1120,-5,0,0 +2013,8,26,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,32,1,820,38,1,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1447,-5,0,1606,-13,0,0 +2013,7,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-12,0,1010,-9,0,0 +2013,6,15,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1135,-6,0,1514,-22,0,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1925,167,1,2135,167,1,0 +2013,7,21,7,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2100,88,1,15,74,1,0 +2013,6,10,1,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2227,-1,0,619,-20,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,2,0,1055,-14,0,0 +2013,10,4,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-6,0,1125,-9,0,0 +2013,9,14,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,-7,0,1115,-22,0,0 +2013,5,5,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1335,-1,0,1425,-1,0,0 +2013,10,25,5,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,950,0,0,1650,-8,0,0 +2013,10,21,1,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,17,1,1348,9,0,0 +2013,9,4,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-14,0,1045,-4,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,845,3,0,1150,-9,0,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-6,0,1028,-6,0,0 +2013,7,30,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,3,0,1816,4,0,0 +2013,4,21,7,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1108,19,1,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1816,51,1,2137,84,1,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,940,0,0,1055,-6,0,0 +2013,6,22,6,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,853,-5,0,1150,-28,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,32,1,1735,19,1,0 +2013,7,2,2,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-2,0,721,-13,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2210,20,1,2355,5,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,3,0,1045,-29,0,0 +2013,4,21,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1430,-2,0,1542,-9,0,0 +2013,6,3,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1353,1,0,1556,4,0,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,-1,0,655,-15,0,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,-3,0,2110,-8,0,0 +2013,5,26,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1355,7,0,2206,-4,0,0 +2013,8,18,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,838,-1,0,1213,-12,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,835,-3,0,940,-13,0,0 +2013,4,28,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,830,-4,0,1205,-17,0,0 +2013,7,8,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-7,0,1734,-1,0,0 +2013,10,24,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-2,0,956,-2,0,0 +2013,7,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1525,-4,0,1625,-2,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,752,-1,0,926,-4,0,0 +2013,4,5,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1900,-2,0,2025,2,0,0 +2013,5,13,1,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1230,-2,0,1331,-11,0,0 +2013,8,30,5,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1319,-3,0,1500,-8,0,0 +2013,4,28,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,26,1,715,41,1,0 +2013,6,16,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,915,-5,0,1155,7,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,809,-9,0,1141,-9,0,0 +2013,4,18,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1658,60,1,2000,69,1,0 +2013,7,14,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1135,-7,0,1451,-20,0,0 +2013,7,8,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,530,-3,0,740,2,0,0 +2013,8,18,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,8,0,1854,8,0,0 +2013,6,25,2,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,900,-3,0,1142,-20,0,0 +2013,4,17,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,800,-5,0,925,-19,0,0 +2013,5,12,7,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1450,-1,0,1615,-45,0,0 +2013,9,14,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1100,1,0,1210,-3,0,0 +2013,4,2,2,DL,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-6,0,849,10,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1609,-7,0,1,-2,0,0 +2013,5,25,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1609,-26,0,0 +2013,8,7,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,847,-6,0,0 +2013,4,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1059,20,1,1408,2,0,0 +2013,6,8,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1608,3,0,0 +2013,4,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2142,-1,0,2230,-9,0,0 +2013,6,24,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1505,-6,0,1735,-9,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-9,0,1829,-16,0,0 +2013,7,6,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,0,1522,3,0,0 +2013,10,12,6,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2249,6,0,721,-3,0,0 +2013,7,2,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1005,38,1,1135,36,1,0 +2013,7,23,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1855,-6,0,2025,-7,0,0 +2013,9,4,3,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1608,18,1,2139,31,1,0 +2013,10,3,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,-4,0,1520,-23,0,0 +2013,5,26,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,900,-4,0,1122,-7,0,0 +2013,4,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,18,1,1549,21,1,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1810,65,1,2042,56,1,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2246,35,1,29,11,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,-4,0,1720,-21,0,0 +2013,5,8,3,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,17,1,1805,5,0,0 +2013,8,13,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1045,-2,0,1318,-18,0,0 +2013,8,7,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,9,0,2235,15,1,0 +2013,7,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2055,34,1,2225,32,1,0 +2013,7,7,7,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,700,0,0,807,2,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-3,0,1328,4,0,0 +2013,9,25,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1441,7,0,1604,5,0,0 +2013,8,24,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-6,0,1251,-3,0,0 +2013,7,7,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1545,17,1,1655,3,0,0 +2013,9,20,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-4,0,1019,0,0,0 +2013,10,11,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-4,0,938,29,1,0 +2013,10,16,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1504,-13,0,1727,-31,0,0 +2013,10,6,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,920,-12,0,1308,-18,0,0 +2013,9,5,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1359,-5,0,1531,8,0,0 +2013,4,6,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1635,-5,0,1741,-11,0,0 +2013,9,16,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-7,0,934,-23,0,0 +2013,6,28,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1810,251,1,2105,248,1,0 +2013,6,2,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,1,0,830,-10,0,0 +2013,7,29,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,24,1,2110,33,1,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,0,0,1045,-13,0,0 +2013,5,7,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1150,-10,0,1335,-26,0,0 +2013,8,28,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1450,10,0,1810,7,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,0,0,2310,-33,0,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1150,75,1,1415,58,1,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,730,-6,0,1330,-6,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-6,0,2324,-18,0,0 +2013,4,1,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-5,0,1146,-25,0,0 +2013,5,12,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,515,-9,0,840,-13,0,0 +2013,8,9,5,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1855,167,1,2130,164,1,0 +2013,6,14,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,10,0,2003,14,0,0 +2013,8,7,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,9,0,1540,5,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1930,21,1,2105,5,0,0 +2013,7,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1215,13,0,1409,21,1,0 +2013,8,21,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-1,0,1500,-17,0,0 +2013,6,12,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1800,-2,0,1855,-10,0,0 +2013,8,3,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1600,10,0,1714,-4,0,0 +2013,8,13,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,0,0,2034,-21,0,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,-1,0,1423,-2,0,0 +2013,4,29,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,-8,0,918,-5,0,0 +2013,7,4,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1149,2,0,1400,4,0,0 +2013,6,10,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-5,0,1831,-9,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1841,-4,0,2011,5,0,0 +2013,5,10,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,625,-8,0,935,12,0,0 +2013,8,26,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-1,0,1715,2,0,0 +2013,4,18,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,32,1,2325,26,1,0 +2013,7,18,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1114,-10,0,1635,-19,0,0 +2013,8,10,6,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,1550,-2,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1735,-5,0,1830,-19,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1200,18,1,1415,21,1,0 +2013,10,2,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,2,0,1710,-4,0,0 +2013,8,6,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1004,-1,0,1100,-6,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1435,39,1,1627,41,1,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2020,11,0,2240,5,0,0 +2013,8,31,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,18,1,1455,3,0,0 +2013,7,17,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,604,0,0,859,3,0,0 +2013,6,9,7,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-3,0,1214,-19,0,0 +2013,6,20,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,-1,0,2227,1,0,0 +2013,7,27,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,-2,0,957,4,0,0 +2013,8,9,5,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1213,1,0,1508,8,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1010,18,1,1444,3,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1126,-5,0,1223,-9,0,0 +2013,4,16,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-3,0,1922,-17,0,0 +2013,5,31,5,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,102,1,1523,104,1,0 +2013,4,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1609,-2,0,1700,11,0,0 +2013,10,9,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,0,0,925,1,0,0 +2013,7,23,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2000,-15,0,2135,-13,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,950,13,0,1040,8,0,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1510,16,1,1825,-19,0,0 +2013,8,26,1,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,805,-3,0,1003,-15,0,0 +2013,5,31,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-4,0,1710,-17,0,0 +2013,9,18,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-4,0,1001,-7,0,0 +2013,5,25,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-8,0,858,-21,0,0 +2013,6,14,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2135,46,1,2255,37,1,0 +2013,10,22,2,OO,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1604,5,0,1714,16,1,0 +2013,9,24,2,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,4,0,1340,-6,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-4,0,1530,-18,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,4,0,1011,9,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-4,0,1720,-7,0,0 +2013,10,22,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-12,0,904,-17,0,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2130,1,0,2220,8,0,0 +2013,6,29,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,0,0,2204,0,0,0 +2013,7,9,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,1003,4,0,0 +2013,8,10,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,339,0,0,730,2,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1135,32,1,1340,28,1,0 +2013,10,25,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,0,0,1438,-2,0,0 +2013,4,30,2,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,730,-5,0,1134,-14,0,0 +2013,4,16,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,835,-6,0,1159,14,0,0 +2013,10,31,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1237,7,0,1415,14,0,0 +2013,4,13,6,FL,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,2002,34,1,2314,31,1,0 +2013,4,5,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-4,0,1252,-1,0,0 +2013,5,23,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1955,108,1,2125,103,1,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1425,2,0,1954,-5,0,0 +2013,6,21,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1735,-1,0,1815,-8,0,0 +2013,5,17,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1855,19,1,2130,15,1,0 +2013,10,21,1,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-3,0,1634,12,0,0 +2013,6,6,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1130,209,1,1222,198,1,0 +2013,8,12,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1725,27,1,1804,23,1,0 +2013,4,27,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2135,-1,0,600,5,0,0 +2013,8,8,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1007,-3,0,1045,0,0,0 +2013,8,3,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-3,0,2330,-6,0,0 +2013,4,26,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-3,0,1645,-4,0,0 +2013,6,13,4,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1020,6,0,1200,6,0,0 +2013,4,25,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1740,-7,0,1910,-19,0,0 +2013,10,5,6,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1022,2,0,1236,5,0,0 +2013,5,14,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1645,-1,0,1813,-30,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1905,0,0,2026,-13,0,0 +2013,7,31,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,-6,0,1915,4,0,0 +2013,7,3,3,9E,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1655,110,1,1923,90,1,0 +2013,9,5,4,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,1855,-33,0,0 +2013,9,10,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-2,0,2042,-3,0,0 +2013,4,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1535,1,0,1746,-8,0,0 +2013,9,11,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,620,-9,0,810,-26,0,0 +2013,7,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1715,-7,0,2122,-8,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-5,0,1314,-34,0,0 +2013,7,13,6,OO,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1133,7,0,1650,22,1,0 +2013,4,5,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-5,0,2052,-17,0,0 +2013,7,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1136,82,1,1300,76,1,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2248,10,0,710,-11,0,0 +2013,5,2,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-5,0,1540,-23,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,6,0,1150,8,0,0 +2013,7,21,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1020,-9,0,1129,-25,0,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1315,0,0,1540,-28,0,0 +2013,5,17,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,822,0,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,700,-6,0,900,-3,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2005,-2,0,2325,-28,0,0 +2013,8,21,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,945,-6,0,1305,-42,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,2,0,1400,3,0,0 +2013,4,9,2,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,600,-4,0,1435,-15,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1305,12,0,1435,2,0,0 +2013,7,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1515,0,0,1630,-2,0,0 +2013,5,18,6,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,920,106,1,1215,112,1,0 +2013,5,13,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1945,2,0,2120,2,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1510,22,1,1605,15,1,0 +2013,6,11,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-7,0,2030,-12,0,0 +2013,5,7,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-6,0,1235,-14,0,0 +2013,10,14,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-8,0,630,-15,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2125,20,1,2245,19,1,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1920,-3,0,2247,-12,0,0 +2013,5,28,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,1,0,1620,-17,0,0 +2013,7,31,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,19,1,2215,16,1,0 +2013,8,12,1,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2010,17,1,2100,8,0,0 +2013,8,24,6,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1825,-6,0,2146,-1,0,0 +2013,4,5,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,600,204,1,735,191,1,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1550,-1,0,1820,0,0,0 +2013,10,29,2,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1453,-4,0,1556,-11,0,0 +2013,6,26,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,30,1,2036,35,1,0 +2013,7,16,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1600,-1,0,2111,3,0,0 +2013,10,29,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,-7,0,1617,-10,0,0 +2013,8,5,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,8,0,1825,4,0,0 +2013,10,7,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,40,1,1515,63,1,0 +2013,9,26,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,3,0,1635,8,0,0 +2013,9,9,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1238,-1,0,1334,-14,0,0 +2013,10,14,1,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,830,5,0,1015,4,0,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,900,-3,0,1513,-32,0,0 +2013,6,24,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1135,8,0,1235,-2,0,0 +2013,5,29,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1740,-5,0,2150,-1,0,0 +2013,7,26,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,822,-3,0,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1953,-2,0,2257,-11,0,0 +2013,8,5,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,840,-3,0,1115,13,0,0 +2013,8,4,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1859,64,1,2038,64,1,0 +2013,6,15,6,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2359,-1,0,601,-8,0,0 +2013,7,15,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1859,6,0,2005,9,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2135,-3,0,2255,-15,0,0 +2013,8,30,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,545,-1,0,1140,-16,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,720,-3,0,820,-8,0,0 +2013,10,30,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,1,0,2105,-2,0,0 +2013,5,4,6,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,-1,0,1055,16,1,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1330,-5,0,1600,24,1,0 +2013,8,16,5,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1900,159,1,2206,141,1,0 +2013,8,15,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1615,1,0,1726,-6,0,0 +2013,9,16,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-6,0,809,-11,0,0 +2013,8,28,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1702,0,0,2023,-6,0,0 +2013,9,9,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,811,6,0,906,5,0,0 +2013,5,10,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-6,0,841,-12,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,600,-2,0,1420,-25,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,755,-5,0,1000,-6,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,640,81,1,849,70,1,0 +2013,8,23,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,959,-4,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1640,3,0,2315,10,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1045,1,0,1152,-10,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,2,0,1220,1,0,0 +2013,7,21,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-5,0,753,-7,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1116,-5,0,1304,-28,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1145,0,,1551,0,1,1 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,-4,0,21,-11,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1330,18,1,1600,9,0,0 +2013,10,14,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1709,7,0,2318,-1,0,0 +2013,5,13,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1645,-3,0,42,-11,0,0 +2013,9,12,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1120,1,0,1227,-12,0,0 +2013,8,15,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1759,0,,2013,0,1,1 +2013,10,30,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,2,0,1928,-15,0,0 +2013,9,22,7,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-9,0,812,-13,0,0 +2013,8,30,5,9E,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-3,0,957,-5,0,0 +2013,9,5,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-5,0,1550,-5,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-5,0,952,-5,0,0 +2013,4,8,1,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1910,-4,0,2132,-17,0,0 +2013,10,8,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1719,-8,0,1910,-13,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,-5,0,2122,4,0,0 +2013,4,24,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,545,-9,0,803,5,0,0 +2013,7,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1515,-4,0,1716,-5,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2210,18,1,2327,28,1,0 +2013,7,6,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1731,38,1,1858,50,1,0 +2013,4,28,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-7,0,1520,-24,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1715,-2,0,2305,-16,0,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1130,-4,0,1230,-13,0,0 +2013,4,18,4,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,810,12,0,956,8,0,0 +2013,4,26,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1150,1,0,1305,3,0,0 +2013,9,2,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,-3,0,1925,-4,0,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1005,29,1,1135,13,0,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2200,-3,0,2329,-16,0,0 +2013,5,14,2,9E,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,600,-2,0,743,-16,0,0 +2013,9,12,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,15,1,1302,7,0,0 +2013,6,3,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,-3,0,2011,-11,0,0 +2013,8,6,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,940,30,1,1032,35,1,0 +2013,9,1,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,638,-4,0,758,-11,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1825,23,1,2315,-9,0,0 +2013,7,28,7,OO,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1508,0,0,1645,1,0,0 +2013,7,5,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1815,2,0,1910,-13,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-2,0,1115,-5,0,0 +2013,8,18,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1245,-6,0,1418,1,0,0 +2013,10,1,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,822,-5,0,0 +2013,4,3,3,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,830,-4,0,1113,-9,0,0 +2013,7,21,7,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,545,57,1,831,42,1,0 +2013,10,13,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1826,-2,0,2210,-13,0,0 +2013,9,14,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1300,10,0,1515,8,0,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1629,1,0,1948,-22,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1211,-5,0,1335,6,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,-1,0,2035,-12,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1256,-3,0,1751,-8,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,-5,0,2117,-10,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1420,53,1,1650,51,1,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,11,0,1420,-1,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,5,0,1225,-4,0,0 +2013,4,21,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-8,0,2040,-13,0,0 +2013,8,27,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1105,24,1,1115,21,1,0 +2013,6,2,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1346,-10,0,1551,-23,0,0 +2013,6,17,1,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,910,-1,0,1040,-13,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,800,-9,0,1117,-27,0,0 +2013,8,21,3,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-13,0,1208,14,0,0 +2013,6,30,7,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,-3,0,943,-22,0,0 +2013,5,1,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1600,17,1,1725,12,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2105,202,1,2355,179,1,0 +2013,10,24,4,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,900,1,0,1125,-6,0,0 +2013,10,16,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1415,-3,0,1554,-23,0,0 +2013,7,3,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1820,-3,0,1935,-13,0,0 +2013,4,27,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,-9,0,2000,-49,0,0 +2013,6,2,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1435,62,1,1635,56,1,0 +2013,10,7,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,6,0,1320,4,0,0 +2013,10,27,7,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1955,-7,0,2229,-12,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2225,-4,0,2340,-10,0,0 +2013,7,4,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,825,-4,0,1040,11,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,0,0,930,-9,0,0 +2013,7,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2103,27,1,2222,15,1,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,0,0,2250,4,0,0 +2013,7,23,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1025,85,1,1210,92,1,0 +2013,6,2,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,0,0,1021,-14,0,0 +2013,4,26,5,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1235,-5,0,1351,-17,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,1,0,1730,2,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,-1,0,1720,-8,0,0 +2013,5,31,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1510,-1,0,1816,-2,0,0 +2013,10,23,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,-3,0,1838,7,0,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1843,-8,0,2039,-24,0,0 +2013,10,13,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,15,1,1540,20,1,0 +2013,6,21,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,710,-5,0,0 +2013,5,7,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-7,0,1128,-13,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,1530,-11,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,0,0,1405,4,0,0 +2013,10,26,6,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,9,0,1245,10,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1555,68,1,1830,93,1,0 +2013,7,8,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1315,3,0,1440,1,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2159,-5,0,2301,-7,0,0 +2013,10,6,7,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,17,1,1340,8,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,945,-3,0,1045,-12,0,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1850,20,1,1935,12,0,0 +2013,8,28,3,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1505,-4,0,1731,-13,0,0 +2013,4,3,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-3,0,1402,0,0,0 +2013,8,31,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1139,-2,0,1429,-9,0,0 +2013,6,17,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,909,-2,0,1130,-16,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,37,1,1601,49,1,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1331,-7,0,1509,-14,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1031,-8,0,1320,5,0,0 +2013,10,2,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-1,0,2111,-7,0,0 +2013,7,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1010,73,1,1150,74,1,0 +2013,6,19,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,2030,25,1,2330,20,1,0 +2013,5,17,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,608,-1,0,748,-4,0,0 +2013,10,13,7,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-3,0,1910,-15,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1825,139,1,2125,144,1,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,33,1,1931,42,1,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1025,-1,0,1127,-4,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1614,10,0,1732,47,1,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1455,5,0,1650,-25,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-5,0,1052,-11,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,-3,0,1922,-3,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,37,1,5,28,1,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,18,1,925,14,0,0 +2013,6,16,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-3,0,1845,-24,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1123,8,0,1251,-16,0,0 +2013,9,30,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1603,2,0,1710,5,0,0 +2013,9,26,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,21,1,2250,-11,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,-6,0,2025,-22,0,0 +2013,10,22,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,800,-5,0,1055,-20,0,0 +2013,4,26,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,11,0,1427,2,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,825,37,1,1100,45,1,0 +2013,10,4,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2040,13,0,2251,15,1,0 +2013,8,13,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1905,29,1,2140,17,1,0 +2013,7,23,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,37,1,1905,40,1,0 +2013,8,5,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1641,1,0,1913,-25,0,0 +2013,4,14,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,1,0,1534,-2,0,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,145,1,1226,121,1,0 +2013,6,8,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1007,7,0,1415,-11,0,0 +2013,6,2,7,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,958,0,0,1314,-1,0,0 +2013,8,6,2,FL,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1025,-8,0,1302,2,0,0 +2013,8,16,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,905,5,0,920,5,0,0 +2013,8,3,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1127,-6,0,1246,-4,0,0 +2013,9,23,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,15,1,1920,19,1,0 +2013,4,12,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,0,0,931,86,1,0 +2013,7,12,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1959,143,1,2247,150,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,0,0,1210,-8,0,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,30,1,1930,33,1,0 +2013,9,15,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1045,4,0,1215,-3,0,0 +2013,10,28,1,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1150,18,1,1315,31,1,0 +2013,10,15,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,-7,0,2152,-5,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2007,-4,0,2215,-12,0,0 +2013,4,26,5,OO,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1653,15,1,1833,30,1,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,-3,0,2354,-37,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,-5,0,1038,-13,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,920,-2,0,1040,-8,0,0 +2013,5,23,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,71,1,1340,63,1,0 +2013,6,20,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1709,130,1,1815,121,1,0 +2013,6,28,5,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,26,1,2149,16,1,0 +2013,7,23,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-4,0,1037,-6,0,0 +2013,10,29,2,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1621,8,0,1808,4,0,0 +2013,8,8,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1910,6,0,2125,3,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1345,43,1,1645,17,1,0 +2013,8,30,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1027,-1,0,1359,-17,0,0 +2013,4,19,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,10,0,1705,5,0,0 +2013,7,21,7,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,-1,0,1319,-10,0,0 +2013,8,6,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,8,0,1535,-9,0,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,1,0,1210,23,1,0 +2013,9,7,6,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1345,-1,0,1935,-3,0,0 +2013,5,15,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1515,-1,0,1816,-3,0,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,-2,0,1230,-7,0,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,920,0,0,1015,-8,0,0 +2013,4,15,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2013,54,1,2020,74,1,0 +2013,10,21,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-3,0,1020,-12,0,0 +2013,8,24,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,2,0,842,15,1,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1123,0,0,1504,3,0,0 +2013,9,18,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,951,28,1,1316,16,1,0 +2013,9,26,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,1,0,1802,-9,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1916,-5,0,1945,-16,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,842,1,0,1416,-14,0,0 +2013,7,15,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,757,27,1,935,8,0,0 +2013,9,12,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,-4,0,810,-6,0,0 +2013,10,16,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1415,-4,0,1527,0,0,0 +2013,10,11,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1803,-1,0,1921,9,0,0 +2013,4,21,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,9,0,2045,1,0,0 +2013,7,29,1,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,0,0,2015,3,0,0 +2013,7,13,6,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,620,-3,0,746,-23,0,0 +2013,8,19,1,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-1,0,825,-5,0,0 +2013,5,30,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,625,31,1,918,20,1,0 +2013,4,18,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,0,0,1024,-2,0,0 +2013,6,2,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,118,1,2020,170,1,0 +2013,8,26,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1810,-1,0,1925,-15,0,0 +2013,7,7,7,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-4,0,553,-11,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2105,17,1,22,9,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2145,-2,0,2350,1,0,0 +2013,4,6,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,808,4,0,939,0,0,0 +2013,9,8,7,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1021,-13,0,1122,-20,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,855,13,0,1000,20,1,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,-7,0,1856,-22,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,914,-4,0,1250,-9,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2015,40,1,2208,72,1,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,751,0,0,921,4,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-2,0,2202,-20,0,0 +2013,7,29,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1715,23,1,1952,29,1,0 +2013,8,13,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1900,11,0,2025,14,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,-1,0,1427,45,1,0 +2013,8,3,6,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1349,67,1,1519,45,1,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1820,17,1,2040,28,1,0 +2013,8,27,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,835,-5,0,1144,0,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,605,-5,0,941,-19,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,7,0,1000,1,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,78,1,1459,115,1,0 +2013,6,1,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,-2,0,2025,-7,0,0 +2013,7,24,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1932,64,1,2228,46,1,0 +2013,10,12,6,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1340,-4,0,1452,-6,0,0 +2013,4,19,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,-8,0,1306,-16,0,0 +2013,8,3,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,85,1,1631,81,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1515,-2,0,1625,9,0,0 +2013,7,23,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,236,1,2138,223,1,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,19,1,1534,10,0,0 +2013,10,3,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,-2,0,2250,-34,0,0 +2013,10,27,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1310,-1,0,1425,-3,0,0 +2013,6,16,7,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,48,1,2256,41,1,0 +2013,9,23,1,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,-3,0,2000,-15,0,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,750,130,1,1011,107,1,0 +2013,7,21,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,645,-7,0,715,-17,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,855,-2,0,1555,-7,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,745,-2,0,1025,12,0,0 +2013,6,4,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1207,-2,0,1404,-14,0,0 +2013,7,9,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,-1,0,1906,11,0,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-5,0,1010,-11,0,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1810,23,1,1910,16,1,0 +2013,4,20,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,-7,0,1420,6,0,0 +2013,5,17,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1025,7,0,1140,-3,0,0 +2013,4,10,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,5,0,722,2,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1125,-4,0,1218,-10,0,0 +2013,8,9,5,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1731,27,1,2056,9,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1700,5,0,1910,6,0,0 +2013,5,24,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,41,1,1900,42,1,0 +2013,9,13,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,-3,0,1941,10,0,0 +2013,9,13,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1602,-10,0,1848,-25,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1405,-1,0,1845,-14,0,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,715,-1,0,810,-5,0,0 +2013,7,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1600,-11,0,2007,-10,0,0 +2013,6,1,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1950,62,1,2125,48,1,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1335,0,0,1815,7,0,0 +2013,6,24,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-3,0,1258,-16,0,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1300,-10,0,1556,-34,0,0 +2013,10,3,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-3,0,1242,-5,0,0 +2013,7,8,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1725,3,0,1950,1,0,0 +2013,6,11,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2055,-6,0,2227,-24,0,0 +2013,9,5,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-11,0,1311,-24,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1240,2,0,1430,-8,0,0 +2013,4,26,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1150,4,0,1240,-1,0,0 +2013,8,12,1,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,749,-17,0,0 +2013,10,23,3,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,24,1,1946,47,1,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,-5,0,2158,-14,0,0 +2013,6,9,7,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,16,1,2025,27,1,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1003,-2,0,1445,-32,0,0 +2013,5,24,5,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,2035,-3,0,2205,-12,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,858,-9,0,1159,-8,0,0 +2013,6,24,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,835,3,0,1000,-4,0,0 +2013,10,9,3,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1938,0,0,28,-3,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-3,0,1750,-8,0,0 +2013,9,16,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,731,4,0,932,16,1,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,2,0,940,2,0,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,-4,0,1040,-6,0,0 +2013,4,2,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,5,0,925,12,0,0 +2013,7,12,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,2,0,1140,9,0,0 +2013,8,16,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1802,-3,0,1920,-2,0,0 +2013,6,22,6,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1000,54,1,1100,56,1,0 +2013,6,26,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,-2,0,1335,9,0,0 +2013,9,14,6,EV,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,-3,0,1816,-12,0,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1320,-2,0,1450,-14,0,0 +2013,9,16,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-4,0,1745,6,0,0 +2013,9,22,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1235,4,0,1412,7,0,0 +2013,9,7,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1700,-6,0,1849,-21,0,0 +2013,10,2,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-3,0,1226,-7,0,0 +2013,7,20,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1850,0,0,2012,7,0,0 +2013,10,30,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1040,-2,0,1140,-9,0,0 +2013,5,28,2,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-4,0,1744,-12,0,0 +2013,4,16,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,800,1,0,1406,-25,0,0 +2013,6,12,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,8,0,2125,21,1,0 +2013,10,31,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1412,13,0,1659,30,1,0 +2013,5,19,7,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1705,89,1,1825,81,1,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,-3,0,1955,-4,0,0 +2013,5,5,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1235,19,1,1507,6,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-3,0,1134,-13,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,35,1,2201,25,1,0 +2013,4,14,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1900,32,1,2110,20,1,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1325,15,1,1635,-7,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,45,1,1545,28,1,0 +2013,8,30,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1305,19,1,1340,14,0,0 +2013,4,5,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,0,0,1230,-4,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1424,-3,0,1752,-15,0,0 +2013,7,2,2,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,930,-10,0,0 +2013,6,7,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1200,-8,0,1844,17,1,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,12,0,2120,22,1,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,825,1,0,925,5,0,0 +2013,7,30,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,915,-9,0,0 +2013,7,28,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,954,-7,0,1028,2,0,0 +2013,5,15,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,23,1,1628,6,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,755,0,0,1000,-10,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-5,0,1055,-22,0,0 +2013,4,17,3,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1510,162,1,1830,142,1,0 +2013,4,29,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,948,-7,0,0 +2013,4,15,1,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-2,0,1257,-17,0,0 +2013,10,5,6,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,600,3,0,1200,7,0,0 +2013,6,11,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-6,0,825,-9,0,0 +2013,10,5,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1518,-5,0,1645,-12,0,0 +2013,4,20,6,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,855,-5,0,1330,-24,0,0 +2013,4,29,1,FL,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,755,-2,0,844,-1,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-3,0,2320,-4,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,741,-3,0,911,-15,0,0 +2013,10,26,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1755,-4,0,0 +2013,10,9,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-3,0,1635,-20,0,0 +2013,9,1,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1951,26,1,2229,25,1,0 +2013,7,10,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,14,0,1320,19,1,0 +2013,7,22,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-6,0,845,-6,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,60,1,1735,49,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2156,158,1,2221,147,1,0 +2013,6,14,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2020,24,1,2205,25,1,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,38,1,1205,6,0,0 +2013,8,8,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1145,64,1,1410,75,1,0 +2013,8,15,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,1,0,750,-12,0,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,905,-4,0,1008,-15,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1920,-1,0,2355,-16,0,0 +2013,6,15,6,EV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,600,28,1,921,18,1,0 +2013,9,29,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,-3,0,1410,-11,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1844,-4,0,2014,1,0,0 +2013,10,2,3,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1806,-11,0,2051,-30,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,-3,0,905,-14,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1830,-3,0,2105,-15,0,0 +2013,8,8,4,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-2,0,1300,5,0,0 +2013,4,24,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,1200,0,0,1400,21,1,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1730,10,0,1914,19,1,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1955,15,1,2115,7,0,0 +2013,5,5,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-5,0,1403,-37,0,0 +2013,6,26,3,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1550,64,1,1805,57,1,0 +2013,8,4,7,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1711,-11,0,2015,-6,0,0 +2013,7,1,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,-1,0,1133,34,1,0 +2013,10,7,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1632,-7,0,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1855,-3,0,2146,35,1,0 +2013,7,6,6,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1555,10,0,1734,-12,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1821,1,0,2102,-4,0,0 +2013,4,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,745,-2,0,950,-6,0,0 +2013,8,13,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1843,3,0,2135,-12,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1940,6,0,50,1,0,0 +2013,6,8,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2245,21,1,612,19,1,0 +2013,6,5,3,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,2331,-3,0,644,-28,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1518,30,1,1935,22,1,0 +2013,4,25,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,956,3,0,0 +2013,10,20,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,735,-5,0,1040,-19,0,0 +2013,8,21,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1750,0,0,2125,-12,0,0 +2013,5,8,3,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1723,-9,0,1853,1,0,0 +2013,4,1,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1417,-11,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2010,2,0,2130,-8,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1926,23,1,2135,7,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1351,-1,0,1449,-3,0,0 +2013,4,22,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,-2,0,825,-4,0,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,35,1,1155,29,1,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,840,1,0,1020,-5,0,0 +2013,10,7,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-2,0,2035,-11,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1720,10,0,1829,-2,0,0 +2013,6,10,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,540,-1,0,1153,-13,0,0 +2013,10,5,6,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-6,0,1122,-41,0,0 +2013,6,23,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,758,-7,0,0 +2013,10,14,1,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,45,1,2045,35,1,0 +2013,5,3,5,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,700,0,0,1255,-2,0,0 +2013,7,18,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,645,-4,0,830,-2,0,0 +2013,6,1,6,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1815,6,0,1923,-11,0,0 +2013,5,26,7,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1520,-2,0,1630,-20,0,0 +2013,10,19,6,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1115,25,1,1305,17,1,0 +2013,4,11,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,104,1,1405,118,1,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,0,0,1510,-8,0,0 +2013,10,11,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2052,-5,0,2207,4,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2004,2,0,2126,-7,0,0 +2013,9,5,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,825,-1,0,850,1,0,0 +2013,7,23,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1946,3,0,2140,10,0,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1010,33,1,1110,33,1,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1345,-3,0,1505,-15,0,0 +2013,4,23,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-12,0,2103,-13,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,801,-5,0,941,-16,0,0 +2013,9,26,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2016,-9,0,2135,2,0,0 +2013,10,24,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1731,10,0,1915,-7,0,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1025,2,0,1235,12,0,0 +2013,6,26,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,-2,0,2125,-7,0,0 +2013,7,3,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-2,0,807,-6,0,0 +2013,5,31,5,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,2035,-5,0,2205,-15,0,0 +2013,9,20,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-4,0,1201,6,0,0 +2013,10,19,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-3,0,1414,-10,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,705,-6,0,941,-9,0,0 +2013,7,10,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,23,1,1820,22,1,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2015,46,1,2145,33,1,0 +2013,4,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,226,1,1420,225,1,0 +2013,8,29,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,800,-3,0,920,0,0,0 +2013,6,2,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1530,-1,0,1630,-10,0,0 +2013,7,6,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,49,1,2020,65,1,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1945,-2,0,2258,10,0,0 +2013,4,13,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1230,27,1,1545,24,1,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1620,79,1,1759,64,1,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2225,-2,0,9,-11,0,0 +2013,4,2,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,1012,5,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,85,1,2235,68,1,0 +2013,10,15,2,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,630,-1,0,838,-14,0,0 +2013,9,3,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1209,-2,0,1446,-47,0,0 +2013,4,6,6,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,740,-2,0,953,-12,0,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-10,0,835,-34,0,0 +2013,9,25,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,0,0,920,-9,0,0 +2013,10,7,1,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1232,16,1,2100,44,1,0 +2013,7,10,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,0,,2220,0,1,1 +2013,7,24,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,705,37,1,755,29,1,0 +2013,9,25,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-6,0,1329,-1,0,0 +2013,8,23,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1601,0,0,15,-17,0,0 +2013,4,13,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,-4,0,1355,-13,0,0 +2013,7,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1215,-5,0,1409,-1,0,0 +2013,10,13,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,11,0,1845,12,0,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1840,-2,0,2100,3,0,0 +2013,4,20,6,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,904,61,1,1047,56,1,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1305,9,0,1730,-6,0,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,20,1,543,5,0,0 +2013,10,11,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1135,11,0,1710,-27,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1535,38,1,2015,57,1,0 +2013,7,1,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,2,0,1612,18,1,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1530,1,0,1745,-21,0,0 +2013,7,10,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,148,1,1548,136,1,0 +2013,8,30,5,EV,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1419,16,1,1923,28,1,0 +2013,6,12,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,269,1,2200,304,1,0 +2013,10,10,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-2,0,613,-12,0,0 +2013,9,27,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-6,0,1519,21,1,0 +2013,8,9,5,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,10,0,1100,9,0,0 +2013,4,26,5,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,29,1,1926,37,1,0 +2013,5,19,7,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,900,-3,0,1025,-14,0,0 +2013,7,15,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1344,-8,0,1601,-12,0,0 +2013,10,21,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1305,-3,0,1610,2,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,819,3,0,1103,-13,0,0 +2013,10,14,1,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,7,0,1038,9,0,0 +2013,8,28,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1241,-3,0,1532,-8,0,0 +2013,9,5,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-8,0,1745,14,0,0 +2013,4,22,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,610,-4,0,809,-27,0,0 +2013,7,13,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1400,12,0,1550,7,0,0 +2013,9,25,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1815,216,1,1937,262,1,0 +2013,8,22,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1932,47,1,2042,49,1,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,910,0,0,1320,-5,0,0 +2013,5,29,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,4,0,1635,1,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-1,0,1114,15,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,19,1,1933,6,0,0 +2013,9,25,3,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1829,57,1,1900,56,1,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-4,0,1924,-21,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2150,5,0,2250,-7,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1250,13,0,1500,103,1,0 +2013,4,12,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,-4,0,615,-22,0,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,69,1,50,56,1,0 +2013,9,7,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,4,0,2200,1,0,0 +2013,7,1,1,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1045,0,0,1240,-16,0,0 +2013,6,1,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,820,-4,0,1100,-19,0,0 +2013,8,24,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,-4,0,2152,0,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1420,27,1,2020,36,1,0 +2013,4,26,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,600,-6,0,850,-16,0,0 +2013,7,16,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1515,12,0,1800,8,0,0 +2013,5,1,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,-8,0,930,-15,0,0 +2013,8,16,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-7,0,1107,-7,0,0 +2013,7,21,7,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1000,3,0,1140,16,1,0 +2013,4,3,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,9,0,1855,15,1,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,82,1,2019,67,1,0 +2013,6,11,2,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,2,0,1835,-2,0,0 +2013,6,28,5,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-7,0,1211,0,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1010,-6,0,1212,-18,0,0 +2013,9,17,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-7,0,1026,-26,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1935,33,1,2155,28,1,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2020,1,0,2305,3,0,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,10,0,2210,7,0,0 +2013,7,21,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,1,0,2055,-5,0,0 +2013,4,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1040,3,0,1230,-8,0,0 +2013,5,24,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1440,-2,0,1510,-8,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,12,0,1530,2,0,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,618,-5,0,937,-22,0,0 +2013,8,16,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-9,0,916,-15,0,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1030,-2,0,1600,-1,0,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1225,-5,0,1350,2,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,725,-5,0,858,-2,0,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1120,-3,0,1330,0,0,0 +2013,10,16,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1615,25,1,2310,-16,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,-1,0,922,-7,0,0 +2013,10,16,3,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,730,-4,0,1600,-39,0,0 +2013,7,28,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,19,1,1630,20,1,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2015,181,1,2309,167,1,0 +2013,10,31,4,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1327,-6,0,1442,-2,0,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,-2,0,15,2,0,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,14,0,1405,-7,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,715,-5,0,840,-13,0,0 +2013,7,23,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,726,86,1,944,74,1,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,950,6,0,1205,4,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1830,-4,0,2110,-9,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,-2,0,2112,0,0,0 +2013,6,14,5,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,520,-2,0,801,-22,0,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-6,0,1647,-13,0,0 +2013,9,3,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,840,-4,0,858,10,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-5,0,1305,-17,0,0 +2013,4,15,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,0,0,908,-7,0,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,901,1,0,1231,-10,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2235,-4,0,2345,-13,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-5,0,1029,-18,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,65,1,1525,60,1,0 +2013,7,30,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-7,0,921,-2,0,0 +2013,8,4,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1852,25,1,2132,31,1,0 +2013,5,10,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,220,1,2225,223,1,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1535,1,0,1625,8,0,0 +2013,9,24,2,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1522,-2,0,1840,-9,0,0 +2013,4,28,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1346,-4,0,1621,0,0,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,22,1,1658,23,1,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1524,41,1,1846,36,1,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,630,2,0,730,-2,0,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1312,6,0,1604,5,0,0 +2013,5,12,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,1005,0,0,0 +2013,9,12,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1636,135,1,1856,155,1,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1032,-3,0,1208,-8,0,0 +2013,4,1,1,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1945,16,1,2115,10,0,0 +2013,10,8,2,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1007,-27,0,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1059,95,1,1211,115,1,0 +2013,10,22,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1840,-3,0,1900,-10,0,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2020,147,1,2205,146,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,944,-4,0,1020,-3,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,0,0,2344,-7,0,0 +2013,5,4,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1700,-4,0,1815,-10,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,815,15,1,1000,8,0,0 +2013,5,11,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,935,6,0,1040,0,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1030,9,0,1250,-6,0,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1815,26,1,1930,69,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,5,0,1025,2,0,0 +2013,8,7,3,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-6,0,2015,-1,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1035,-3,0,1914,-17,0,0 +2013,6,23,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1715,-10,0,2026,-19,0,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,-3,0,1253,-6,0,0 +2013,8,19,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1725,13,0,1906,3,0,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-3,0,1920,2,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,914,-2,0,1352,-27,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1351,0,0,1519,10,0,0 +2013,6,29,6,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,921,-1,0,1154,-2,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1825,0,0,1930,-8,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,13,0,1807,12,0,0 +2013,10,22,2,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-3,0,1905,3,0,0 +2013,5,18,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2150,-7,0,19,-8,0,0 +2013,7,25,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1430,-3,0,1558,-6,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,-3,0,1525,-21,0,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1530,75,1,1759,60,1,0 +2013,9,27,5,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,725,-10,0,1022,-13,0,0 +2013,4,20,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,950,-6,0,1235,-12,0,0 +2013,8,23,5,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2305,22,1,655,20,1,0 +2013,4,12,5,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,2,0,1940,-1,0,0 +2013,5,26,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-1,0,1304,-8,0,0 +2013,7,28,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,213,1,1825,250,1,0 +2013,9,21,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,730,-1,0,900,-17,0,0 +2013,6,16,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-11,0,1745,-10,0,0 +2013,5,13,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,6,0,847,1,0,0 +2013,6,3,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-6,0,2040,-9,0,0 +2013,9,9,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1015,-3,0,1125,7,0,0 +2013,4,17,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1101,-14,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1345,14,0,1510,13,0,0 +2013,10,1,2,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1440,1,0,1715,-19,0,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,115,1,900,111,1,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2205,-2,0,2332,6,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,88,1,1105,71,1,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,41,1,1235,71,1,0 +2013,6,2,7,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-7,0,1200,-27,0,0 +2013,5,24,5,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,1,0,2135,6,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,-2,0,1330,-8,0,0 +2013,8,27,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-4,0,2020,-12,0,0 +2013,7,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1242,-5,0,1619,-14,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1925,-6,0,2302,-16,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,1,0,1740,-27,0,0 +2013,9,2,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,940,0,0,1010,-6,0,0 +2013,8,3,6,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1040,-3,0,1434,-10,0,0 +2013,5,7,2,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1915,-7,0,2042,-5,0,0 +2013,10,9,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-6,0,1000,-7,0,0 +2013,10,19,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,43,1,1555,26,1,0 +2013,5,13,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-6,0,1009,3,0,0 +2013,8,11,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1505,10,0,1800,-1,0,0 +2013,10,30,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1245,3,0,1355,3,0,0 +2013,6,12,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-7,0,1956,-6,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1715,7,0,2245,-25,0,0 +2013,4,4,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,15,1,1910,11,0,0 +2013,7,27,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,855,1,0,1459,-5,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1300,60,1,1530,50,1,0 +2013,6,15,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1535,-8,0,1813,24,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1735,7,0,1905,4,0,0 +2013,4,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,910,15,1,937,6,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-2,0,2040,-6,0,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,6,0,1106,-5,0,0 +2013,6,14,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,4,0,2052,6,0,0 +2013,4,16,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,-1,0,1620,6,0,0 +2013,7,18,4,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,655,-1,0,910,-43,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1020,-2,0,1655,-6,0,0 +2013,6,2,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1230,34,1,1332,49,1,0 +2013,8,13,2,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-5,0,925,-13,0,0 +2013,9,30,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,84,1,1132,96,1,0 +2013,10,2,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,800,-2,0,920,-4,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1550,1,0,1710,-14,0,0 +2013,8,28,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1415,20,1,1625,11,0,0 +2013,9,28,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,800,-2,0,1035,-11,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1335,12,0,1809,2,0,0 +2013,8,27,2,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1606,-4,0,1624,-9,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,36,1,2130,35,1,0 +2013,7,31,3,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-1,0,1213,6,0,0 +2013,6,6,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,102,1,1418,87,1,0 +2013,10,3,4,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1650,-1,0,1939,-3,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,-5,0,1458,-10,0,0 +2013,6,14,5,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2355,-4,0,636,-11,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1700,12,0,1955,0,0,0 +2013,4,17,3,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,707,236,1,1028,236,1,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2145,-3,0,37,-3,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1135,37,1,1305,28,1,0 +2013,7,21,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,27,1,1635,11,0,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1830,-3,0,2122,27,1,0 +2013,6,5,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2115,-3,0,2347,-3,0,0 +2013,7,25,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1825,-9,0,2042,-9,0,0 +2013,10,9,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1630,61,1,1810,56,1,0 +2013,10,25,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,0,0,1620,-5,0,0 +2013,5,28,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1152,0,0,1308,-12,0,0 +2013,4,5,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,802,-7,0,1514,-5,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,1,0,953,16,1,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1351,51,1,1505,36,1,0 +2013,4,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1355,-1,0,1515,-16,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1920,-3,0,2130,-14,0,0 +2013,7,23,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,6,0,1113,6,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,613,4,0,952,4,0,0 +2013,5,25,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1530,-2,0,1713,-9,0,0 +2013,10,1,2,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2120,-7,0,516,-8,0,0 +2013,6,30,7,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-3,0,1046,-10,0,0 +2013,5,3,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,3,0,845,-7,0,0 +2013,6,7,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,21,1,2018,30,1,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2040,-2,0,2153,-5,0,0 +2013,5,19,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1335,1,0,1425,0,0,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1950,-1,0,2215,-3,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1956,39,1,2145,24,1,0 +2013,7,3,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1105,-5,0,1225,-3,0,0 +2013,4,23,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2110,0,0,2355,-2,0,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,615,-2,0,815,-23,0,0 +2013,10,15,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-6,0,2145,-12,0,0 +2013,5,1,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1540,-5,0,1735,-4,0,0 +2013,6,25,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1025,-2,0,1245,1,0,0 +2013,8,20,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1350,-1,0,1520,-2,0,0 +2013,9,8,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-4,0,1229,-14,0,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,0,0,750,-7,0,0 +2013,4,16,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,535,-5,0,739,-22,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,845,3,0,1035,-5,0,0 +2013,4,1,1,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1215,0,0,1459,4,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,705,8,0,855,1,0,0 +2013,10,9,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-5,0,925,-2,0,0 +2013,5,20,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,944,71,1,1130,56,1,0 +2013,10,4,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-3,0,919,-29,0,0 +2013,10,24,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-10,0,1223,-16,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1510,9,0,1830,2,0,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,818,-3,0,1359,-7,0,0 +2013,9,1,7,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-4,0,1915,-20,0,0 +2013,7,27,6,OO,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1114,-5,0,1535,-8,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1320,44,1,1540,64,1,0 +2013,7,23,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,1,0,1513,5,0,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-1,0,938,-10,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1830,25,1,2255,18,1,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1440,42,1,1600,48,1,0 +2013,10,12,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,2,0,1400,-21,0,0 +2013,4,3,3,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,900,-6,0,1106,0,0,0 +2013,9,28,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,-3,0,1820,-8,0,0 +2013,8,18,7,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,545,0,0,650,-3,0,0 +2013,9,24,2,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1046,-2,0,1210,-1,0,0 +2013,10,7,1,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1850,2,0,2215,-19,0,0 +2013,5,14,2,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2218,-3,0,559,0,0,0 +2013,10,10,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1910,12,0,2150,2,0,0 +2013,6,28,5,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,51,1,2039,50,1,0 +2013,4,1,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,722,-10,0,950,-12,0,0 +2013,10,15,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1459,87,1,1756,81,1,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2135,-7,0,2245,-19,0,0 +2013,8,4,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1818,7,0,2030,-2,0,0 +2013,6,19,3,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-2,0,629,-12,0,0 +2013,9,8,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-4,0,1600,-26,0,0 +2013,9,19,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1725,-5,0,2016,-3,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1325,1,0,1520,3,0,0 +2013,5,15,3,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1335,-8,0,1854,-6,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,2,0,1450,-5,0,0 +2013,10,15,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1930,-5,0,2025,-7,0,0 +2013,5,14,2,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1115,-6,0,1258,-16,0,0 +2013,6,9,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1650,23,1,1805,-3,0,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-2,0,1729,-3,0,0 +2013,6,6,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-1,0,745,2,0,0 +2013,8,24,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1316,-4,0,1643,-4,0,0 +2013,9,4,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-5,0,759,6,0,0 +2013,5,13,1,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1345,21,1,1610,15,1,0 +2013,9,18,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,849,-4,0,1021,7,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1410,19,1,1500,26,1,0 +2013,9,16,1,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1755,45,1,2305,36,1,0 +2013,10,5,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,900,-8,0,1645,-11,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,810,-3,0,1135,2,0,0 +2013,8,15,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1006,-2,0,1158,-8,0,0 +2013,8,17,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,-3,0,1255,-20,0,0 +2013,9,30,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-4,0,1220,-13,0,0 +2013,6,23,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1801,120,1,2000,126,1,0 +2013,6,28,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-7,0,1229,-4,0,0 +2013,5,24,5,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,555,-1,0,900,5,0,0 +2013,4,9,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-7,0,2129,-16,0,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2200,35,1,2350,44,1,0 +2013,4,10,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-5,0,1210,-12,0,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1310,0,0,1535,-6,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,32,1,2250,28,1,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1036,-5,0,1242,-13,0,0 +2013,4,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,2000,-1,0,2340,-11,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1047,-4,0,1419,-14,0,0 +2013,6,29,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-2,0,1853,-4,0,0 +2013,9,11,3,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,-10,0,1605,-24,0,0 +2013,9,22,7,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,855,1,0,1110,-4,0,0 +2013,8,28,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-2,0,740,-9,0,0 +2013,7,21,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,655,-1,0,1000,4,0,0 +2013,10,11,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,952,126,1,1116,132,1,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1622,-5,0,42,-21,0,0 +2013,9,22,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,4,0,1030,-1,0,0 +2013,8,24,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,-3,0,1120,-19,0,0 +2013,8,13,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,25,1,1918,20,1,0 +2013,7,11,4,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,-7,0,500,-17,0,0 +2013,6,27,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,0,,1915,0,1,1 +2013,5,10,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-2,0,1100,8,0,0 +2013,5,4,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,736,-11,0,0 +2013,10,25,5,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-2,0,1800,-9,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,9,0,55,-15,0,0 +2013,9,26,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1306,3,0,1550,7,0,0 +2013,5,27,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1055,41,1,1225,35,1,0 +2013,4,25,4,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,-6,0,1855,-9,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2215,-2,0,2330,0,0,0 +2013,4,30,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,-4,0,35,6,0,0 +2013,8,24,6,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-6,0,1526,-23,0,0 +2013,4,25,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-6,0,1740,-19,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1936,30,1,2040,38,1,0 +2013,6,24,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,71,1,1532,76,1,0 +2013,5,31,5,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1745,-6,0,1915,3,0,0 +2013,4,17,3,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-5,0,909,-42,0,0 +2013,6,20,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1325,0,0,1335,5,0,0 +2013,9,4,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1545,-4,0,1618,-13,0,0 +2013,7,28,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,11,0,1448,13,0,0 +2013,7,1,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1850,-1,0,2015,-12,0,0 +2013,6,10,1,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1607,29,1,1650,28,1,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1949,-2,0,2115,7,0,0 +2013,9,26,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,605,11,0,735,5,0,0 +2013,6,22,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1249,4,0,1428,-2,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,900,2,0,1005,-3,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2155,32,1,5,21,1,0 +2013,10,2,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2045,1,0,2205,-4,0,0 +2013,5,9,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-5,0,701,-5,0,0 +2013,4,12,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1832,68,1,2029,50,1,0 +2013,6,21,5,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1410,-5,0,1810,-9,0,0 +2013,10,9,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1420,0,0,1600,32,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,2,0,2135,1,0,0 +2013,4,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,-4,0,1619,8,0,0 +2013,10,23,3,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1352,60,1,1504,71,1,0 +2013,4,22,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1210,1,0,1255,9,0,0 +2013,4,1,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,0,0,1030,12,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1610,-8,0,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1500,136,1,1826,118,1,0 +2013,10,30,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1110,-1,0,1355,-6,0,0 +2013,4,1,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,3,0,1941,2,0,0 +2013,7,14,7,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1353,65,1,1800,60,1,0 +2013,9,3,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1310,0,,1325,0,1,1 +2013,8,26,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1208,-3,0,1410,-1,0,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,800,-1,0,920,-1,0,0 +2013,8,26,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1050,-1,0,1235,-7,0,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,2,0,1425,-2,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,3,0,2357,13,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1043,2,0,1658,-24,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,901,-6,0,1444,-15,0,0 +2013,9,16,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,56,1,2135,57,1,0 +2013,9,2,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,630,5,0,920,11,0,0 +2013,10,29,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1350,-6,0,1502,-5,0,0 +2013,5,26,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,-5,0,1305,-11,0,0 +2013,5,18,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,86,1,1825,69,1,0 +2013,4,7,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2105,9,0,2347,33,1,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-2,0,1115,26,1,0 +2013,6,28,5,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1138,25,1,1228,26,1,0 +2013,9,20,5,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,7,0,1626,-5,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-9,0,1120,4,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1035,-3,0,1335,-13,0,0 +2013,9,20,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,805,30,1,910,56,1,0 +2013,10,12,6,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1800,-7,0,2015,-23,0,0 +2013,4,24,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,12,0,1905,-1,0,0 +2013,4,10,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-3,0,855,4,0,0 +2013,5,2,4,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1805,-10,0,2030,-25,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1946,-3,0,2327,-18,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1250,12,0,1650,-16,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2250,0,,14,0,1,1 +2013,6,29,6,OO,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1118,16,1,1321,12,0,0 +2013,5,20,1,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1755,-4,0,2035,-16,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,6,0,1540,-3,0,0 +2013,10,28,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,6,0,1700,-3,0,0 +2013,10,1,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,519,2,0,606,7,0,0 +2013,6,27,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-6,0,1555,-11,0,0 +2013,10,29,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,942,-28,0,0 +2013,8,12,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,1,0,1450,-6,0,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,-4,0,1145,-22,0,0 +2013,4,19,5,9E,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,13,0,2110,6,0,0 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,21,1,1740,43,1,0 +2013,9,5,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1739,-4,0,1858,6,0,0 +2013,9,20,5,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-6,0,1110,-27,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,605,1,0,835,8,0,0 +2013,4,6,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1905,0,0,2114,-23,0,0 +2013,5,2,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2117,33,1,2349,18,1,0 +2013,7,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-1,0,1812,-2,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2040,0,0,2145,-7,0,0 +2013,9,3,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,-2,0,1202,5,0,0 +2013,10,2,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,-9,0,1915,4,0,0 +2013,10,6,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,-4,0,1445,-26,0,0 +2013,4,28,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,18,1,1720,18,1,0 +2013,8,22,4,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,2000,76,1,2147,66,1,0 +2013,5,17,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1650,25,1,1835,14,0,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1035,0,0,1848,-30,0,0 +2013,4,27,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,814,-19,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,940,-2,0,1635,9,0,0 +2013,8,13,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,-8,0,2025,-5,0,0 +2013,9,21,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1018,-10,0,1121,-5,0,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,28,1,1750,26,1,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-2,0,1439,-14,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1210,-7,0,1309,-11,0,0 +2013,9,21,6,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,-8,0,2132,-7,0,0 +2013,9,16,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,825,-5,0,1030,-4,0,0 +2013,10,13,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1340,4,0,1550,-8,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1610,-3,0,1735,13,0,0 +2013,9,19,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,1012,-11,0,0 +2013,10,19,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1100,-6,0,1225,2,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2130,-2,0,25,-17,0,0 +2013,9,24,2,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,740,-7,0,1034,-14,0,0 +2013,5,24,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1530,41,1,1555,42,1,0 +2013,7,31,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1410,-2,0,1444,1,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,99,1,1925,94,1,0 +2013,6,7,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-9,0,1523,7,0,0 +2013,4,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,952,-5,0,1325,17,1,0 +2013,9,11,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1922,-8,0,1956,-6,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,-5,0,2356,-1,0,0 +2013,5,16,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1200,-1,0,1420,0,0,0 +2013,10,17,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1333,76,1,1412,71,1,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1959,-4,0,2159,-12,0,0 +2013,7,16,2,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1310,-2,0,1441,-9,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1939,-5,0,2249,-15,0,0 +2013,10,26,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-7,0,837,-4,0,0 +2013,4,9,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,68,1,1340,68,1,0 +2013,7,4,4,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2217,2,0,606,11,0,0 +2013,5,2,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,635,-6,0,750,-17,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,729,-5,0,1023,-8,0,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,805,-7,0,1130,-16,0,0 +2013,4,24,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1710,3,0,1745,8,0,0 +2013,9,15,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-8,0,2126,-25,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,22,1,1245,22,1,0 +2013,6,26,3,B6,13796,Metropolitan Oakland International,Oakland,CA,10721,Logan International,Boston,MA,2359,17,1,822,22,1,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,-3,0,1036,-34,0,0 +2013,10,14,1,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1130,8,0,1338,-4,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1220,0,0,1415,2,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1450,3,0,2015,0,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1500,-1,0,1716,-17,0,0 +2013,10,26,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,-6,0,1942,5,0,0 +2013,8,31,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1732,7,0,1830,1,0,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1325,20,1,1605,20,1,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2040,15,1,2145,16,1,0 +2013,8,28,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,6,0,2135,3,0,0 +2013,9,9,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,4,0,2105,-6,0,0 +2013,10,14,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-4,0,930,-2,0,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,3,0,900,-13,0,0 +2013,7,2,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1750,95,1,2030,85,1,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2059,3,0,2225,-11,0,0 +2013,6,21,5,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-4,0,1552,0,0,0 +2013,5,16,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,93,1,2155,89,1,0 +2013,4,21,7,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1040,-2,0,1310,-5,0,0 +2013,9,2,1,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1045,-1,0,1255,0,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,735,6,0,1305,-11,0,0 +2013,9,30,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1731,13,0,1915,-3,0,0 +2013,5,21,2,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,906,-8,0,1007,-19,0,0 +2013,6,27,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1501,47,1,1800,23,1,0 +2013,10,9,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,0,0,2152,19,1,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-3,0,1349,-13,0,0 +2013,5,13,1,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1645,-1,0,2105,9,0,0 +2013,8,24,6,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,654,-6,0,813,-22,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1440,-8,0,1750,-33,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1203,-1,0,1337,-9,0,0 +2013,9,2,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,0,0,1310,1,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1410,1,0,1550,2,0,0 +2013,8,13,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,902,4,0,0 +2013,10,20,7,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1747,-8,0,1840,-22,0,0 +2013,8,10,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1944,-12,0,2129,-20,0,0 +2013,7,18,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,0,0,1020,-1,0,0 +2013,10,8,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1310,-5,0,1315,-9,0,0 +2013,5,31,5,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1937,-6,0,2222,-15,0,0 +2013,9,2,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2025,15,1,2334,12,0,0 +2013,5,24,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2250,-1,0,626,-11,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1010,9,0,1237,-1,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,1,0,30,14,0,0 +2013,6,20,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1905,34,1,2219,29,1,0 +2013,9,7,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1215,-3,0,1735,4,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-3,0,2330,1,0,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1740,-2,0,2018,-1,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,831,-1,0,952,-9,0,0 +2013,4,29,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1335,-10,0,1935,-13,0,0 +2013,8,9,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,809,-2,0,1051,9,0,0 +2013,5,7,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,935,20,1,1205,24,1,0 +2013,8,19,1,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,87,1,1831,94,1,0 +2013,4,18,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,722,-18,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,-4,0,1625,3,0,0 +2013,4,24,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1222,-9,0,1411,-19,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1021,0,0,1318,-3,0,0 +2013,4,22,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1655,20,1,1731,14,0,0 +2013,9,15,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,0,0,1343,-5,0,0 +2013,4,15,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1636,-9,0,1955,-8,0,0 +2013,9,11,3,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-8,0,1230,-14,0,0 +2013,6,8,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1356,-1,0,1700,-15,0,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1505,-5,0,1700,1,0,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1640,-3,0,1750,-11,0,0 +2013,7,26,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-7,0,1017,4,0,0 +2013,8,16,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1840,-16,0,2024,-19,0,0 +2013,10,11,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1225,1,0,1540,-6,0,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1101,12,0,1403,-11,0,0 +2013,5,29,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-8,0,2047,-7,0,0 +2013,9,26,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1500,13,0,1610,-8,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,735,-4,0,1139,-16,0,0 +2013,4,1,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-7,0,1710,-24,0,0 +2013,7,25,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-4,0,717,-1,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,15,1,2105,-2,0,0 +2013,6,8,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1000,-2,0,1235,-19,0,0 +2013,7,22,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1950,16,1,2020,14,0,0 +2013,7,6,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,724,-10,0,1020,-10,0,0 +2013,8,5,1,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,-5,0,1711,-3,0,0 +2013,6,17,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,933,58,1,1025,53,1,0 +2013,6,30,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,820,-2,0,935,-19,0,0 +2013,10,31,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,753,4,0,1012,15,1,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1215,-4,0,1319,-18,0,0 +2013,5,14,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1655,14,0,1805,-23,0,0 +2013,5,19,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,50,1,2011,58,1,0 +2013,10,22,2,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1107,0,0,1644,3,0,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1730,6,0,1818,6,0,0 +2013,5,8,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,910,17,1,1110,28,1,0 +2013,9,17,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-1,0,735,-13,0,0 +2013,5,3,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,3,0,825,-3,0,0 +2013,7,3,3,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1959,39,1,2232,23,1,0 +2013,5,11,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-11,0,1319,-13,0,0 +2013,8,16,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,2,0,2300,-10,0,0 +2013,9,8,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1730,5,0,2024,-5,0,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1030,5,0,1359,3,0,0 +2013,6,19,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-3,0,1922,-8,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1750,0,0,2310,-2,0,0 +2013,8,2,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-3,0,1905,3,0,0 +2013,7,17,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,0,0,1956,95,1,0 +2013,7,13,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1440,-5,0,1605,44,1,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,825,-5,0,940,-2,0,0 +2013,10,28,1,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-3,0,1525,4,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,825,5,0,1105,-11,0,0 +2013,9,14,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1330,154,1,1445,148,1,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2115,20,1,2230,36,1,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,759,-6,0,930,-21,0,0 +2013,8,10,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1757,8,0,1915,16,1,0 +2013,9,25,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-6,0,714,-5,0,0 +2013,8,9,5,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,0,,1749,0,1,1 +2013,8,22,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1800,0,,1925,0,1,1 +2013,7,20,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,625,-1,0,745,-3,0,0 +2013,7,13,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,0,,910,0,1,1 +2013,4,2,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,501,-1,0,856,-6,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,38,1,2310,52,1,0 +2013,7,12,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1852,52,1,2135,40,1,0 +2013,5,27,1,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-10,0,2015,-19,0,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1759,-3,0,2044,-4,0,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-4,0,1315,-6,0,0 +2013,7,25,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,850,-4,0,955,-10,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1312,-4,0,0 +2013,5,12,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1700,-2,0,1805,-3,0,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-5,0,758,-16,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,24,1,2000,24,1,0 +2013,6,18,2,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,14,0,1210,5,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1729,-1,0,2046,-30,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2255,-1,0,100,-9,0,0 +2013,5,27,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1357,12,0,1710,0,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1030,-2,0,1200,-10,0,0 +2013,8,29,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1725,-8,0,1838,-7,0,0 +2013,8,23,5,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1030,-14,0,1157,-18,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1022,-7,0,1412,-22,0,0 +2013,10,24,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1558,-23,0,0 +2013,4,24,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1903,49,1,2237,46,1,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-6,0,2140,-5,0,0 +2013,8,10,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,24,1,2042,24,1,0 +2013,6,2,7,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,-5,0,920,-10,0,0 +2013,10,16,3,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,-3,0,1921,-36,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,10,0,1443,5,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,615,12,0,825,0,0,0 +2013,10,26,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,955,-3,0,1048,-4,0,0 +2013,5,5,7,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,1,0,1912,-37,0,0 +2013,7,27,6,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1205,54,1,1400,51,1,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,951,-4,0,1123,-8,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-5,0,2122,-21,0,0 +2013,8,22,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,755,37,1,855,46,1,0 +2013,10,3,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-1,0,2246,5,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1942,-3,0,2247,2,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2038,6,0,2203,0,0,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1825,60,1,2035,59,1,0 +2013,8,27,2,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1230,-2,0,1420,-29,0,0 +2013,7,25,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,-10,0,1505,-8,0,0 +2013,5,17,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,610,-1,0,847,-1,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1910,-1,0,2238,-8,0,0 +2013,6,30,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,650,0,0,730,-9,0,0 +2013,5,23,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,923,-2,0,1041,12,0,0 +2013,7,17,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-7,0,2045,-5,0,0 +2013,10,9,3,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1200,2,0,1345,-18,0,0 +2013,7,13,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1430,-2,0,1530,-10,0,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1805,25,1,1910,16,1,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1750,-1,0,1914,-27,0,0 +2013,4,14,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1326,4,0,1834,-5,0,0 +2013,6,18,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-5,0,805,-14,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,955,-4,0,1101,-14,0,0 +2013,10,1,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1135,-1,0,1235,-32,0,0 +2013,8,25,7,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,907,-1,0,1035,-7,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,0,0,1005,-6,0,0 +2013,7,16,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,757,-16,0,0 +2013,10,9,3,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,955,-7,0,1240,-25,0,0 +2013,10,25,5,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1244,-6,0,1725,-9,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1555,7,0,1910,6,0,0 +2013,5,14,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,19,1,1900,10,0,0 +2013,9,4,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1340,-5,0,1425,-15,0,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,720,-2,0,856,-20,0,0 +2013,8,19,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,1,0,927,2,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,130,1,2200,117,1,0 +2013,8,23,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,56,1,1220,71,1,0 +2013,8,26,1,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-1,0,602,-3,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,737,34,1,855,41,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1927,0,0,2311,-20,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,0,0,1700,0,0,0 +2013,5,29,3,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1207,-7,0,1340,-17,0,0 +2013,4,7,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1630,-4,0,1748,-17,0,0 +2013,10,24,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1027,0,0,1226,-10,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,-4,0,2029,-4,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,839,-5,0,0 +2013,10,10,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1310,-6,0,1458,-17,0,0 +2013,8,5,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1602,3,0,1700,2,0,0 +2013,10,22,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,7,0,1124,-12,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1829,-6,0,2139,-5,0,0 +2013,7,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1900,-4,0,2145,-24,0,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1557,-4,0,1658,-3,0,0 +2013,4,5,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-5,0,2106,-24,0,0 +2013,6,11,2,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,0,0,1105,-13,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1430,1,0,1734,-34,0,0 +2013,10,27,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,-3,0,1619,-19,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,920,-2,0,1335,-4,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1050,-1,0,1515,-7,0,0 +2013,7,18,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,-5,0,756,-28,0,0 +2013,4,9,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-4,0,1221,1,0,0 +2013,7,25,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1403,12,0,2155,41,1,0 +2013,5,1,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-7,0,1746,-19,0,0 +2013,4,16,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1730,-7,0,1927,-9,0,0 +2013,5,1,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-4,0,1012,-11,0,0 +2013,6,21,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,910,6,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,950,-7,0,1221,-23,0,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,0,0,1814,2,0,0 +2013,6,25,2,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1155,17,1,1340,-1,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,55,1,1947,74,1,0 +2013,7,23,2,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1606,-7,0,2149,-14,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1740,-2,0,2255,-5,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1630,5,0,1855,-29,0,0 +2013,9,25,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-3,0,1648,-7,0,0 +2013,6,3,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,-9,0,1805,-21,0,0 +2013,8,11,7,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,957,-8,0,1320,-7,0,0 +2013,9,19,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1450,43,1,1850,33,1,0 +2013,6,6,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,-5,0,1330,-11,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1210,12,0,1530,5,0,0 +2013,8,30,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1133,-3,0,0 +2013,4,21,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1925,-5,0,2300,-16,0,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,719,-7,0,1140,36,1,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1056,39,1,1343,35,1,0 +2013,10,25,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1745,20,1,1915,5,0,0 +2013,9,11,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-9,0,1230,16,1,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-4,0,1230,7,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-5,0,2147,-5,0,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1300,4,0,1530,2,0,0 +2013,5,14,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1900,8,0,2022,15,1,0 +2013,9,19,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,1,0,1125,3,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1043,-1,0,1220,-21,0,0 +2013,6,27,4,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1333,-7,0,1604,1,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,-4,0,1520,-13,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,8,0,1355,11,0,0 +2013,8,30,5,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,-2,0,1019,-7,0,0 +2013,5,24,5,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,0,,812,0,1,1 +2013,5,23,4,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,815,-5,0,1122,17,1,0 +2013,5,24,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1455,7,0,1610,13,0,0 +2013,9,20,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,6,0,1220,-6,0,0 +2013,7,16,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,600,-3,0,615,-4,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1745,79,1,1930,64,1,0 +2013,10,5,6,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,-6,0,1715,-23,0,0 +2013,7,5,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2012,-8,0,2124,-4,0,0 +2013,4,11,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,35,1,1135,45,1,0 +2013,6,14,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,90,1,1310,76,1,0 +2013,6,29,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,8,0,1650,12,0,0 +2013,7,28,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,82,1,1405,72,1,0 +2013,8,17,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1130,3,0,1140,0,0,0 +2013,8,23,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1248,7,0,1415,19,1,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-6,0,942,-9,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1355,33,1,1530,21,1,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1420,91,1,1530,69,1,0 +2013,5,2,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-4,0,1145,-7,0,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1710,0,0,1815,4,0,0 +2013,6,11,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,541,-6,0,903,0,0,0 +2013,6,9,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,4,0,1825,40,1,0 +2013,9,4,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,615,-8,0,828,-24,0,0 +2013,6,12,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1056,-4,0,1428,5,0,0 +2013,5,13,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-8,0,1414,-42,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,6,0,1623,2,0,0 +2013,8,6,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1020,0,,1150,0,1,1 +2013,4,24,3,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1330,8,0,1618,12,0,0 +2013,7,25,4,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1003,13,0,1700,6,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,1,0,1351,3,0,0 +2013,9,16,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1238,-9,0,1457,-5,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1251,-2,0,1515,-12,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,10,0,1120,1,0,0 +2013,7,17,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-4,0,834,-9,0,0 +2013,4,1,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1910,1,0,2039,-13,0,0 +2013,5,27,1,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,0,0,1538,12,0,0 +2013,7,27,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,730,-7,0,1049,4,0,0 +2013,7,13,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,35,1,2305,26,1,0 +2013,7,30,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,628,-5,0,805,-21,0,0 +2013,8,28,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,12,0,2130,20,1,0 +2013,5,1,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1957,-2,0,2255,3,0,0 +2013,4,2,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2135,24,1,2305,16,1,0 +2013,5,4,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1005,-1,0,1135,-14,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1935,0,0,2152,13,0,0 +2013,7,23,2,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1616,114,1,1758,112,1,0 +2013,7,24,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-3,0,745,-21,0,0 +2013,4,3,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,12,0,1222,10,0,0 +2013,5,24,5,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-4,0,1053,0,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1340,9,0,1454,4,0,0 +2013,6,1,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,11,0,1451,10,0,0 +2013,8,8,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1023,120,1,1157,136,1,0 +2013,6,15,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-5,0,1919,-19,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1540,0,0,1755,-4,0,0 +2013,9,23,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1055,12,0,1210,7,0,0 +2013,4,16,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,65,1,1504,68,1,0 +2013,6,7,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1726,31,1,1748,16,1,0 +2013,6,28,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,4,0,1745,5,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,-5,0,1208,-39,0,0 +2013,4,23,2,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1840,0,0,1925,11,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,1,0,2355,0,0,0 +2013,10,10,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1915,0,0,2117,4,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,4,0,1905,89,1,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1255,36,1,1415,22,1,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2040,6,0,2145,1,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,900,0,0,1425,-15,0,0 +2013,4,26,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,607,-6,0,714,-3,0,0 +2013,6,6,4,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,15,1,1415,4,0,0 +2013,10,20,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2037,4,0,2338,-14,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,810,-5,0,925,-16,0,0 +2013,7,29,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-5,0,2157,-9,0,0 +2013,5,20,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2002,113,1,2214,95,1,0 +2013,8,10,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,6,0,825,-13,0,0 +2013,10,9,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-4,0,829,-14,0,0 +2013,7,19,5,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1134,4,0,1306,7,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1026,1,0,1245,-3,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1825,-9,0,2000,3,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1755,-1,0,1931,-29,0,0 +2013,5,21,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2110,112,1,2125,105,1,0 +2013,9,16,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,845,51,1,1140,60,1,0 +2013,8,20,2,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-6,0,900,-28,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1201,-1,0,1355,-4,0,0 +2013,7,4,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,1002,16,1,0 +2013,4,11,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,5,0,1539,3,0,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,940,30,1,1118,39,1,0 +2013,10,10,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1720,72,1,2100,74,1,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,45,1,1005,40,1,0 +2013,5,16,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1300,0,0,2146,-5,0,0 +2013,4,14,7,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1400,5,0,1450,15,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2301,-1,0,2326,-2,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2115,-5,0,2330,-5,0,0 +2013,10,9,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,1,0,810,2,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1500,7,0,1600,8,0,0 +2013,6,24,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,839,10,0,1020,3,0,0 +2013,6,12,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,934,2,0,1036,8,0,0 +2013,9,11,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1455,-4,0,1620,-1,0,0 +2013,8,6,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-5,0,1829,-17,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1543,-2,0,1658,-12,0,0 +2013,6,17,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1904,0,0,2015,-15,0,0 +2013,5,17,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-3,0,912,-31,0,0 +2013,6,19,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-5,0,1414,0,0,0 +2013,4,24,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,14,0,2120,11,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,-1,0,1128,4,0,0 +2013,8,14,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,52,1,2052,53,1,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,201,1,2335,202,1,0 +2013,5,29,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1339,0,0,1732,-11,0,0 +2013,4,16,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1759,-7,0,2122,-13,0,0 +2013,6,13,4,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,625,1,0,805,12,0,0 +2013,7,1,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1430,11,0,1615,0,0,0 +2013,10,16,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,-7,0,2017,-4,0,0 +2013,8,11,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1839,1,0,1939,-6,0,0 +2013,5,13,1,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-5,0,952,-3,0,0 +2013,4,25,4,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1845,-8,0,2205,-21,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1315,-1,0,1705,10,0,0 +2013,7,17,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-2,0,1100,-2,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1605,48,1,2240,53,1,0 +2013,6,13,4,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1454,59,1,1535,64,1,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1459,2,0,1654,26,1,0 +2013,5,25,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,-5,0,944,-16,0,0 +2013,4,17,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1400,0,,1714,0,1,1 +2013,10,5,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,4,0,1403,3,0,0 +2013,10,30,3,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1240,12,0,1510,-6,0,0 +2013,6,9,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,0,0,2220,-4,0,0 +2013,7,31,3,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-8,0,1625,6,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,-3,0,1255,3,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1326,0,,1455,0,1,1 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-3,0,932,0,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1500,25,1,1830,20,1,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,20,1,1110,30,1,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-3,0,1442,16,1,0 +2013,5,12,7,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1835,46,1,2110,39,1,0 +2013,8,5,1,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,0,0,1740,-2,0,0 +2013,9,1,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1310,14,0,1515,6,0,0 +2013,4,22,1,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1541,16,1,1620,36,1,0 +2013,6,16,7,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1405,3,0,1620,-7,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2045,5,0,2145,4,0,0 +2013,6,23,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1630,-2,0,1805,30,1,0 +2013,10,18,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1905,-6,0,2022,2,0,0 +2013,7,14,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1656,-6,0,1918,7,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1741,-5,0,2059,-30,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,825,-4,0,905,-6,0,0 +2013,10,30,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1450,-8,0,1725,7,0,0 +2013,8,21,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-6,0,1804,-9,0,0 +2013,5,19,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,900,-5,0,1041,-14,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1200,-9,0,1425,-32,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2041,8,0,2154,8,0,0 +2013,10,29,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1515,-5,0,1735,-15,0,0 +2013,9,13,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-6,0,1354,-1,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1500,0,0,1710,-25,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,4,0,1156,-21,0,0 +2013,6,26,3,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,199,1,2245,179,1,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1608,-5,0,1950,-13,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,845,-2,0,956,-13,0,0 +2013,5,18,6,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1640,-11,0,1845,-9,0,0 +2013,5,24,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,845,6,0,1025,0,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,2,0,1813,-8,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,15,1,1955,13,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,705,-5,0,936,-11,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1307,6,0,1443,0,0,0 +2013,10,9,3,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1446,45,1,1600,31,1,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,-1,0,2102,-7,0,0 +2013,10,27,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-7,0,929,-6,0,0 +2013,9,18,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,151,1,2035,143,1,0 +2013,9,25,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1011,-11,0,1132,2,0,0 +2013,9,25,3,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1030,-16,0,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1900,-6,0,2115,6,0,0 +2013,6,15,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-2,0,2101,-6,0,0 +2013,4,11,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1448,3,0,1527,1,0,0 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2145,-1,0,2355,6,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1550,69,1,1810,134,1,0 +2013,7,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,2050,31,1,5,21,1,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,12,0,1825,-1,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,600,0,0,1110,0,0,0 +2013,6,12,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-3,0,1758,3,0,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,818,27,1,1100,23,1,0 +2013,5,30,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-3,0,915,-12,0,0 +2013,9,16,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,830,0,0,1019,5,0,0 +2013,4,22,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1857,-4,0,1921,-18,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1258,0,0,1432,-22,0,0 +2013,8,16,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,55,-6,0,555,-2,0,0 +2013,5,20,1,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,-2,0,750,-13,0,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1944,94,1,2215,84,1,0 +2013,6,15,6,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,-11,0,2135,-1,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-5,0,1505,-10,0,0 +2013,5,17,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,600,0,0,730,-10,0,0 +2013,7,6,6,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,38,1,1829,23,1,0 +2013,9,10,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-3,0,1055,-11,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,852,1,0,1329,-1,0,0 +2013,9,23,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,959,-1,0,1315,-4,0,0 +2013,8,3,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,-2,0,1700,0,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,-8,0,538,-21,0,0 +2013,7,1,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,5,0,2030,-9,0,0 +2013,4,30,2,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1003,2,0,1433,-6,0,0 +2013,9,2,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-5,0,1628,-14,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1845,2,0,1955,4,0,0 +2013,10,19,6,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1349,-4,0,1621,-9,0,0 +2013,6,19,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,59,1,1805,54,1,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,850,10,0,1125,18,1,0 +2013,5,10,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,65,1,1215,61,1,0 +2013,9,30,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,910,-7,0,954,-5,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1240,-3,0,1405,-3,0,0 +2013,10,5,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,5,0,1610,-3,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1550,-2,0,1805,-3,0,0 +2013,9,11,3,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-4,0,1910,-9,0,0 +2013,6,13,4,9E,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1935,137,1,2223,152,1,0 +2013,4,15,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1945,-3,0,2120,16,1,0 +2013,10,21,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-8,0,1124,5,0,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1000,-4,0,1140,-19,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,855,4,0,1245,-3,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,14,0,1430,4,0,0 +2013,9,14,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,-4,0,1708,1,0,0 +2013,5,28,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1835,-5,0,1930,-11,0,0 +2013,5,20,1,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1600,-2,0,1810,-7,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,25,1,1553,12,0,0 +2013,8,29,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,38,1,1849,34,1,0 +2013,10,11,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,6,0,1317,-1,0,0 +2013,9,15,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1907,-1,0,2024,2,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1145,-3,0,1300,-24,0,0 +2013,5,28,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,42,1,1500,38,1,0 +2013,8,17,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1324,13,0,1513,1,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,740,-5,0,1128,-13,0,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,1,0,1135,0,0,0 +2013,7,30,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,-6,0,2030,-13,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,3,0,1810,4,0,0 +2013,6,2,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1425,0,0,2020,7,0,0 +2013,7,31,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,4,0,1150,2,0,0 +2013,9,8,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,-1,0,1835,-3,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1540,12,0,1855,0,1,1 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1745,0,0,1855,-5,0,0 +2013,5,23,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-6,0,1011,-7,0,0 +2013,10,11,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1450,-1,0,1613,-3,0,0 +2013,10,7,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1925,0,0,2055,-5,0,0 +2013,7,22,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,911,0,0,1043,-8,0,0 +2013,5,23,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1706,-11,0,2025,-20,0,0 +2013,4,14,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-6,0,808,-13,0,0 +2013,8,20,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-8,0,1250,-12,0,0 +2013,7,11,4,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,700,-6,0,905,-17,0,0 +2013,5,4,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-3,0,1245,-9,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1430,5,0,1535,-2,0,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2005,-4,0,2147,10,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1200,11,0,1425,6,0,0 +2013,5,3,5,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,0,,2308,0,1,1 +2013,10,30,3,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1950,41,1,2125,22,1,0 +2013,5,1,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1725,33,1,1950,21,1,0 +2013,6,23,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2338,56,1,500,67,1,0 +2013,9,8,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,944,-12,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,-3,0,1656,-14,0,0 +2013,8,17,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1405,0,0,1516,-14,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1250,12,0,1505,5,0,0 +2013,7,24,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,835,-12,0,0 +2013,9,15,7,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,840,0,0,1100,-17,0,0 +2013,7,25,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-12,0,1020,-15,0,0 +2013,8,30,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-6,0,905,-4,0,0 +2013,7,6,6,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,1,0,910,-9,0,0 +2013,9,19,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,15,1,1740,11,0,0 +2013,5,21,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1837,23,1,2121,24,1,0 +2013,6,16,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,750,0,0,950,16,1,0 +2013,10,13,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,6,0,1740,-1,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-2,0,1450,-22,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1935,26,1,50,24,1,0 +2013,7,1,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1240,16,1,1610,31,1,0 +2013,10,9,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1025,18,1,1155,59,1,0 +2013,9,15,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,615,-7,0,838,-19,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1115,-3,0,1244,-12,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,28,1,1755,22,1,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,-1,0,830,-8,0,0 +2013,9,8,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,-4,0,750,-21,0,0 +2013,7,26,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2335,10,0,800,3,0,0 +2013,7,5,5,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1850,-4,0,2025,-10,0,0 +2013,8,9,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,605,-3,0,751,-11,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2039,-1,0,2316,-13,0,0 +2013,8,7,3,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1820,6,0,2005,-4,0,0 +2013,5,14,2,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-12,0,1604,-25,0,0 +2013,8,27,2,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,820,-7,0,1205,-22,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-5,0,947,1,0,0 +2013,4,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1127,-1,0,1231,-14,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,-3,0,2152,-9,0,0 +2013,6,2,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,8,0,1925,-9,0,0 +2013,4,30,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1610,54,1,1655,51,1,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,19,1,2210,2,0,0 +2013,7,1,1,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,20,1,1914,39,1,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-7,0,935,-11,0,0 +2013,8,31,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,-6,0,1650,-1,0,0 +2013,6,26,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,-2,0,1106,-4,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1550,61,1,1645,50,1,0 +2013,6,13,4,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,7,0,735,6,0,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1814,4,0,2020,-25,0,0 +2013,10,27,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,6,0,725,-1,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,3,0,1441,-6,0,0 +2013,10,20,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,0,0,1700,-13,0,0 +2013,6,21,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1426,-9,0,1558,-19,0,0 +2013,8,27,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,745,-2,0,835,-2,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1840,-1,0,1935,2,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1920,5,0,2120,-3,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,640,-4,0,800,-13,0,0 +2013,9,20,5,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1919,0,0,2234,-10,0,0 +2013,6,5,3,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,-3,0,1930,2,0,0 +2013,6,14,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-6,0,627,2,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1605,1,0,1850,4,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1725,11,0,1920,9,0,0 +2013,10,18,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,1140,-1,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,0,0,2000,-26,0,0 +2013,4,20,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,945,0,0,1050,-2,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,30,1,2240,8,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,-8,0,1713,-2,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,0,0,35,-16,0,0 +2013,6,14,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1835,5,0,1955,-13,0,0 +2013,10,5,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,2,0,1855,32,1,0 +2013,6,10,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,832,-8,0,855,-15,0,0 +2013,8,6,2,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1324,1,0,1420,-3,0,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,-3,0,947,-9,0,0 +2013,10,20,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1630,-4,0,2018,-19,0,0 +2013,9,16,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,4,0,1035,-6,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-5,0,1134,-11,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,73,1,1505,71,1,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1730,4,0,2017,3,0,0 +2013,5,2,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1415,0,0,1950,11,0,0 +2013,7,10,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,1548,-1,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,-3,0,1715,-11,0,0 +2013,7,29,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,-5,0,2033,-4,0,0 +2013,4,23,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1900,7,0,2000,4,0,0 +2013,9,22,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1933,18,1,2144,7,0,0 +2013,10,9,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-6,0,1020,-2,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,0,0,2025,-11,0,0 +2013,6,13,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,910,47,1,1032,37,1,0 +2013,8,29,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1220,-3,0,1245,-6,0,0 +2013,4,26,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1300,-2,0,1335,4,0,0 +2013,10,1,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1650,0,0,1850,-5,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,-7,0,1430,-14,0,0 +2013,6,26,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,75,1,1225,96,1,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1225,2,0,1500,-19,0,0 +2013,7,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,-2,0,1200,-4,0,0 +2013,4,10,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1721,-6,0,2000,-2,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-4,0,1310,-7,0,0 +2013,8,26,1,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1138,-8,0,1228,-12,0,0 +2013,10,3,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1113,5,0,1239,21,1,0 +2013,4,7,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1725,-2,0,1850,-14,0,0 +2013,9,5,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-5,0,1707,-9,0,0 +2013,4,13,6,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1142,108,1,1355,96,1,0 +2013,5,21,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-2,0,1802,22,1,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-9,0,1005,-24,0,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2025,23,1,2115,11,0,0 +2013,7,8,1,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,810,-2,0,950,7,0,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,4,0,1305,-20,0,0 +2013,8,14,3,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-6,0,758,-17,0,0 +2013,6,7,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1400,1,0,1730,-21,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,10,0,2229,-4,0,0 +2013,7,13,6,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1455,10,0,1812,66,1,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1010,-2,0,0 +2013,9,3,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,855,6,0,1210,12,0,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2200,52,1,2320,53,1,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1930,13,0,2233,-20,0,0 +2013,5,20,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,3,0,2055,-28,0,0 +2013,9,11,3,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,756,14,0,930,8,0,0 +2013,4,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,948,-8,0,1050,7,0,0 +2013,8,23,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1430,0,0,1630,-6,0,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,-1,0,1346,7,0,0 +2013,7,19,5,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,0,0,2028,4,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2210,-1,0,2315,-9,0,0 +2013,4,18,4,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,705,-11,0,826,-24,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,-3,0,1144,-21,0,0 +2013,6,7,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-8,0,2034,-12,0,0 +2013,4,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1750,26,1,1855,33,1,0 +2013,4,4,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1659,18,1,1819,9,0,0 +2013,9,7,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-2,0,1000,16,1,0 +2013,10,6,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,723,-7,0,805,-3,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,630,-1,0,755,1,0,0 +2013,7,9,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,933,-1,0,1130,-3,0,0 +2013,4,15,1,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,635,2,0,815,-5,0,0 +2013,5,31,5,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,555,0,0,900,-6,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,-9,0,859,-15,0,0 +2013,6,23,7,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1515,0,0,1825,0,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2030,35,1,2240,37,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,950,-3,0,1232,11,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,2,0,1243,-2,0,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1331,11,0,1648,30,1,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,1,0,1800,2,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1225,2,0,1615,-6,0,0 +2013,4,10,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1458,-12,0,0 +2013,9,17,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1045,1,0,1145,1,0,0 +2013,8,29,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,745,0,0,1055,-1,0,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,-3,0,2012,18,1,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,21,1,1230,8,0,0 +2013,9,12,4,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1845,34,1,1950,22,1,0 +2013,9,26,4,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1335,2,0,1605,-7,0,0 +2013,6,14,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-1,0,2034,-3,0,0 +2013,5,1,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,645,3,0,800,-3,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,2,0,1210,-6,0,0 +2013,7,22,1,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1840,-5,0,2045,-7,0,0 +2013,5,2,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1319,-5,0,1444,-16,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,0,0,1606,-1,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2023,0,0,2245,-9,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1337,54,1,1829,22,1,0 +2013,5,19,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,28,1,1747,47,1,0 +2013,8,10,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,725,0,0,900,-9,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1620,-4,0,1835,-26,0,0 +2013,7,11,4,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2035,33,1,505,18,1,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,96,1,1819,81,1,0 +2013,9,19,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1434,127,1,1619,116,1,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1247,-6,0,1444,-9,0,0 +2013,5,22,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,6,0,2301,52,1,0 +2013,10,17,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-8,0,1355,3,0,0 +2013,6,2,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,845,-4,0,1254,1,0,0 +2013,8,25,7,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,743,-2,0,1524,4,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1920,8,0,2235,-11,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,855,-4,0,1038,-3,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1640,-9,0,1956,-61,0,0 +2013,6,7,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,-2,0,2000,10,0,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,-3,0,1440,8,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1105,0,0,1225,13,0,0 +2013,7,15,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,910,-3,0,0 +2013,7,20,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,2,0,925,-8,0,0 +2013,7,27,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,70,1,1629,61,1,0 +2013,8,1,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,7,0,1721,10,0,0 +2013,6,30,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1705,-4,0,1809,-7,0,0 +2013,9,10,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1916,-7,0,2127,-34,0,0 +2013,7,7,7,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,612,-6,0,751,-9,0,0 +2013,5,4,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,740,-1,0,1033,-12,0,0 +2013,5,31,5,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1215,8,0,2100,-1,0,0 +2013,6,22,6,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,630,29,1,842,2,0,0 +2013,8,9,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1319,-7,0,1455,-17,0,0 +2013,6,13,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1355,-8,0,1709,-4,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1050,27,1,1224,58,1,0 +2013,9,7,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1316,-10,0,1439,-13,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-4,0,1411,-30,0,0 +2013,5,2,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,922,-7,0,1235,-9,0,0 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1810,22,1,2215,10,0,0 +2013,9,17,2,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1305,0,0,1620,9,0,0 +2013,9,22,7,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,805,-3,0,1615,-22,0,0 +2013,9,19,4,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1429,17,1,1658,21,1,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,750,5,0,930,-5,0,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2331,69,1,756,80,1,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,655,2,0,1200,-3,0,0 +2013,8,4,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,9,0,957,6,0,0 +2013,8,31,6,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1630,-6,0,1823,-33,0,0 +2013,5,2,4,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,0,0,601,12,0,0 +2013,4,14,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,9,0,1904,-8,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1703,79,1,1951,128,1,0 +2013,6,27,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,17,1,2010,4,0,0 +2013,5,16,4,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1101,-7,0,1257,-10,0,0 +2013,9,15,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,907,-4,0,1020,-12,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1550,6,0,1840,-6,0,0 +2013,8,7,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,13,0,1410,1,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,640,-1,0,750,10,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,2045,0,0,2353,-22,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,650,0,0,819,-14,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-5,0,2133,-14,0,0 +2013,9,26,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,1933,2,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-3,0,1722,-13,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-2,0,1006,-17,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,-3,0,1510,-7,0,0 +2013,8,30,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-7,0,1130,-25,0,0 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-5,0,2354,-6,0,0 +2013,8,11,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,737,-6,0,820,-7,0,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1235,6,0,1700,0,0,0 +2013,10,27,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,44,1,1840,32,1,0 +2013,7,15,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,0,,2310,0,1,1 +2013,4,25,4,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,805,-2,0,1058,11,0,0 +2013,10,20,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-2,0,1122,-13,0,0 +2013,8,23,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,-6,0,2044,-11,0,0 +2013,6,14,5,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1749,0,0,2055,-1,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1230,39,1,1425,11,0,0 +2013,7,30,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1522,-5,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1059,-2,0,1336,-21,0,0 +2013,4,29,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1355,-4,0,2010,-24,0,0 +2013,6,21,5,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,833,-6,0,1005,-19,0,0 +2013,9,10,2,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,-8,0,2255,-9,0,0 +2013,4,30,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-9,0,1302,-15,0,0 +2013,9,27,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1714,52,1,2334,34,1,0 +2013,7,8,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1531,3,0,1658,-15,0,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1332,8,0,1733,55,1,0 +2013,7,27,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,818,4,0,1027,7,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1748,1,0,2355,-3,0,0 +2013,5,13,1,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1950,-4,0,2056,-11,0,0 +2013,10,19,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1650,-4,0,1920,-18,0,0 +2013,4,16,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-8,0,1420,7,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,0,0,1223,32,1,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1235,6,0,1550,-6,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1123,4,0,1251,-8,0,0 +2013,6,10,1,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1511,-11,0,1853,-5,0,0 +2013,10,18,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1245,-8,0,1458,-17,0,0 +2013,4,14,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1800,89,1,1832,104,1,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1529,-3,0,1653,-8,0,0 +2013,5,17,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,520,0,0,810,-9,0,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-5,0,930,-12,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,-2,0,950,-12,0,0 +2013,8,28,3,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2125,-3,0,2345,-5,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1745,-1,0,1905,-11,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1214,-1,0,1347,-6,0,0 +2013,8,28,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,951,-3,0,1034,9,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1515,-4,0,1840,23,1,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1808,15,1,2107,0,0,0 +2013,9,7,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-3,0,933,-12,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1339,-4,0,1447,-11,0,0 +2013,9,14,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1435,21,1,2110,21,1,0 +2013,5,5,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,1,0,1501,10,0,0 +2013,9,24,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,-6,0,1806,-7,0,0 +2013,8,1,4,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1515,8,0,1825,-1,0,0 +2013,9,7,6,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-7,0,1938,-35,0,0 +2013,8,24,6,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,815,-4,0,1305,-15,0,0 +2013,4,9,2,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1138,-9,0,1350,-9,0,0 +2013,9,28,6,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-1,0,902,1,0,0 +2013,4,19,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,20,1,1906,2,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-1,0,855,-14,0,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1730,4,0,1910,0,0,0 +2013,8,10,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,720,-3,0,945,-32,0,0 +2013,9,1,7,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1505,12,0,1814,13,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,38,1,955,56,1,0 +2013,9,16,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1443,-3,0,1533,-3,0,0 +2013,9,15,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1415,-1,0,1511,-6,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1356,2,0,1548,8,0,0 +2013,7,1,1,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-10,0,918,4,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1755,-6,0,1919,-7,0,0 +2013,8,31,6,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,-3,0,2056,-10,0,0 +2013,8,15,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2052,68,1,2211,65,1,0 +2013,5,31,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1010,16,1,1125,12,0,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1656,-8,0,1755,-14,0,0 +2013,5,10,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1350,45,1,1715,39,1,0 +2013,6,11,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,1,0,1938,-16,0,0 +2013,5,2,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,615,-14,0,749,-13,0,0 +2013,8,27,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2014,-9,0,2104,-5,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1055,-1,0,1710,-5,0,0 +2013,6,28,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1025,-5,0,1040,-9,0,0 +2013,4,21,7,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1945,-2,0,2214,-1,0,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1420,2,0,1550,9,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1251,4,0,1617,-19,0,0 +2013,9,12,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2120,-8,0,2351,-15,0,0 +2013,5,29,3,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,2,0,1545,-3,0,0 +2013,7,30,2,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1945,-6,0,2244,-5,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1310,0,,1735,0,1,1 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2112,44,1,2230,42,1,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1356,-3,0,1441,-9,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-2,0,850,-10,0,0 +2013,10,17,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1820,16,1,2010,10,0,0 +2013,5,26,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,936,0,0,1035,-7,0,0 +2013,5,16,4,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,3,0,1209,-10,0,0 +2013,4,3,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-15,0,835,-8,0,0 +2013,9,20,5,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,4,0,2345,-14,0,0 +2013,4,2,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1610,12,0,1700,3,0,0 +2013,4,9,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1035,-8,0,1317,-3,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1416,-3,0,1545,-11,0,0 +2013,7,2,2,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1625,94,1,1730,76,1,0 +2013,4,18,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,-4,0,1530,-3,0,0 +2013,9,27,5,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1615,-2,0,2350,-26,0,0 +2013,4,17,3,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-1,0,935,-14,0,0 +2013,5,8,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-7,0,2210,-18,0,0 +2013,8,1,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-8,0,921,-7,0,0 +2013,5,27,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2143,34,1,2357,30,1,0 +2013,10,17,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,-4,0,847,-4,0,0 +2013,7,27,6,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1636,1,0,1700,-13,0,0 +2013,9,23,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1337,-10,0,0 +2013,7,9,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1115,0,0,1250,-7,0,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-1,0,1015,-7,0,0 +2013,7,13,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1125,-10,0,1231,2,0,0 +2013,10,2,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1011,-11,0,1217,-24,0,0 +2013,5,3,5,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1134,-6,0,1515,-7,0,0 +2013,10,7,1,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,720,-2,0,1240,2,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1947,12,0,2136,5,0,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1335,28,1,1615,19,1,0 +2013,9,13,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1132,-9,0,1438,-38,0,0 +2013,7,26,5,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2130,-1,0,2346,-2,0,0 +2013,9,2,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,100,1,2013,120,1,0 +2013,5,2,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,0,0,1255,-9,0,0 +2013,7,1,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1319,7,0,1925,9,0,0 +2013,10,5,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,606,-2,0,1427,-2,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-3,0,40,-4,0,0 +2013,7,11,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,-5,0,1425,-11,0,0 +2013,6,4,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,-1,0,1330,-8,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,31,1,1340,30,1,0 +2013,5,29,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,-8,0,606,-15,0,0 +2013,9,26,4,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,17,1,1940,14,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1945,0,0,2153,-26,0,0 +2013,6,15,6,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1645,-2,0,1830,-12,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2142,18,1,2250,-6,0,0 +2013,5,9,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-7,0,1000,-9,0,0 +2013,8,26,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1835,-7,0,1950,-20,0,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,854,1,0,1213,-11,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2200,4,0,2306,-7,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,12,0,2131,17,1,0 +2013,8,22,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1009,-4,0,1524,1,0,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1100,-3,0,1215,-10,0,0 +2013,10,7,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,-7,0,1148,-33,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,7,0,1811,49,1,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,-5,0,2210,-19,0,0 +2013,7,11,4,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2105,-4,0,2220,5,0,0 +2013,9,22,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1016,-5,0,1152,-24,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-4,0,1050,-3,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,935,4,0,1035,-12,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1925,32,1,2105,24,1,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2238,-8,0,703,-16,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1735,67,1,1915,75,1,0 +2013,5,17,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1715,-2,0,2100,14,0,0 +2013,5,3,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,0,0,955,0,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1623,16,1,1728,8,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1900,0,,2330,0,1,1 +2013,9,19,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1115,-4,0,1249,-10,0,0 +2013,5,24,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1235,-1,0,1517,-12,0,0 +2013,5,17,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1425,24,1,1631,15,1,0 +2013,10,9,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-9,0,933,-5,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1835,5,0,2110,-1,0,0 +2013,9,14,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-7,0,1013,-11,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1035,48,1,1210,42,1,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1357,176,1,1532,181,1,0 +2013,10,19,6,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-3,0,1040,-9,0,0 +2013,6,11,2,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,2045,-9,0,2245,-9,0,0 +2013,10,4,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1918,-8,0,2110,-13,0,0 +2013,5,2,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1815,13,0,2125,17,1,0 +2013,9,15,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-3,0,2020,-9,0,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,11,0,2049,-7,0,0 +2013,8,11,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2321,45,1,701,63,1,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,5,0,2305,9,0,0 +2013,9,12,4,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,800,-15,0,0 +2013,5,23,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,12,0,1100,2,0,0 +2013,5,13,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1040,-1,0,1150,-10,0,0 +2013,6,17,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,60,1,1630,84,1,0 +2013,10,30,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1225,15,1,1430,-1,0,0 +2013,6,28,5,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,910,2,0,1040,-7,0,0 +2013,9,22,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,41,1,2125,31,1,0 +2013,7,29,1,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,97,1,749,95,1,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,0,0,1845,-11,0,0 +2013,7,9,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,0,,1515,0,1,1 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,5,0,1509,-3,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,47,1,2320,28,1,0 +2013,4,13,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,14,0,1953,3,0,0 +2013,6,2,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-1,0,1425,-10,0,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1135,-1,0,1254,-11,0,0 +2013,5,5,7,FL,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1755,-5,0,1845,0,0,0 +2013,8,25,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1750,-4,0,2351,-9,0,0 +2013,6,6,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,176,1,1900,163,1,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-5,0,1246,-19,0,0 +2013,6,21,5,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,835,0,0,1144,19,1,0 +2013,9,29,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,5,0,1830,6,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1528,-2,0,1659,-17,0,0 +2013,6,29,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,635,-1,0,755,-4,0,0 +2013,9,30,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1710,-2,0,2133,8,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1605,-2,0,1740,-20,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,14,0,955,4,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,842,-6,0,1416,-10,0,0 +2013,7,1,1,EV,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-10,0,1010,-16,0,0 +2013,7,10,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,1,0,1001,-1,0,0 +2013,7,19,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,66,1,1905,85,1,0 +2013,5,4,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1815,-10,0,1940,-22,0,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,-1,0,2321,-14,0,0 +2013,5,7,2,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1520,-9,0,1625,0,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,805,-4,0,1240,-11,0,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1254,19,1,1401,12,0,0 +2013,4,22,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-5,0,2025,-1,0,0 +2013,5,12,7,FL,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,800,-4,0,940,-5,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,915,-5,0,1015,-20,0,0 +2013,7,20,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1615,109,1,1800,103,1,0 +2013,7,15,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-8,0,1123,-11,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1055,-5,0,1607,8,0,0 +2013,5,20,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1042,-9,0,1222,-13,0,0 +2013,8,3,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,13,0,1335,4,0,0 +2013,7,19,5,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,930,-15,0,1327,-13,0,0 +2013,10,2,3,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-8,0,2104,-8,0,0 +2013,8,6,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-8,0,1010,-4,0,0 +2013,6,11,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1150,3,0,1255,5,0,0 +2013,9,19,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,845,-3,0,1053,-9,0,0 +2013,7,12,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,636,0,,749,0,1,1 +2013,6,13,4,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,3,0,2120,-8,0,0 +2013,7,14,7,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,636,155,1,850,133,1,0 +2013,6,28,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-5,0,1225,-16,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,146,1,2241,122,1,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,3,0,1235,7,0,0 +2013,9,29,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,849,-6,0,1453,3,0,0 +2013,6,27,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1535,12,0,1730,-2,0,0 +2013,8,22,4,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-6,0,1625,7,0,0 +2013,6,19,3,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-1,0,820,-4,0,0 +2013,7,1,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,940,-1,0,1110,-11,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,15,1,1655,10,0,0 +2013,10,27,7,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-8,0,1630,-17,0,0 +2013,4,3,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1458,-9,0,1800,-26,0,0 +2013,6,27,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-4,0,855,-8,0,0 +2013,8,12,1,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1710,-9,0,1955,-37,0,0 +2013,6,11,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-7,0,1545,-3,0,0 +2013,10,16,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,-3,0,1450,-5,0,0 +2013,9,27,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-6,0,1725,8,0,0 +2013,10,19,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1215,7,0,1410,27,1,0 +2013,5,2,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,0,0,740,-10,0,0 +2013,7,15,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1715,-2,0,1915,-23,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,102,1,2025,95,1,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,920,-3,0,1149,-17,0,0 +2013,10,13,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2005,11,0,2029,-2,0,0 +2013,10,11,5,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1146,-8,0,1252,-12,0,0 +2013,7,14,7,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,-7,0,1455,-12,0,0 +2013,9,13,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,54,1,1355,46,1,0 +2013,6,4,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,-5,0,1645,-3,0,0 +2013,9,2,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-9,0,1332,-29,0,0 +2013,4,11,4,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,2045,36,1,2330,22,1,0 +2013,5,17,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,826,-9,0,0 +2013,4,14,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1614,7,0,0 +2013,8,30,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1125,-8,0,1312,-19,0,0 +2013,10,16,3,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,850,-4,0,1236,-2,0,0 +2013,10,18,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-1,0,1203,-19,0,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,-1,0,1130,-6,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2050,10,0,2135,9,0,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2110,21,1,2225,16,1,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,730,-1,0,1320,-9,0,0 +2013,5,22,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1740,74,1,1845,77,1,0 +2013,7,9,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-4,0,937,3,0,0 +2013,7,26,5,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1001,61,1,1130,56,1,0 +2013,7,10,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,905,-1,0,1015,1,0,0 +2013,10,19,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1240,-4,0,1437,-6,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,1,0,1035,-8,0,0 +2013,9,24,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1145,-13,0,1307,-7,0,0 +2013,4,4,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1411,13,0,2005,1,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1954,-1,0,2331,-17,0,0 +2013,9,3,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,740,-2,0,750,3,0,0 +2013,8,12,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-2,0,1508,-12,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,12,0,1220,7,0,0 +2013,9,6,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1315,-3,0,1524,-4,0,0 +2013,7,2,2,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-5,0,1018,-25,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,1,0,903,-9,0,0 +2013,4,17,3,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,820,2,0,1035,-3,0,0 +2013,9,4,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,830,-1,0,1235,0,0,0 +2013,4,12,5,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1405,-6,0,1618,-13,0,0 +2013,7,21,7,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1020,10,0,1410,1,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-2,0,1054,4,0,0 +2013,7,27,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,535,-2,0,803,-1,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1750,39,1,1905,36,1,0 +2013,4,4,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1430,-4,0,1707,-25,0,0 +2013,9,29,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1515,4,0,1835,-1,0,0 +2013,6,22,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1320,3,0,1612,-19,0,0 +2013,5,11,6,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,650,-2,0,900,-7,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2110,0,0,2309,-23,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1415,1,0,1905,-13,0,0 +2013,5,28,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,720,3,0,825,-6,0,0 +2013,7,30,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-7,0,1424,-9,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-2,0,1133,-8,0,0 +2013,4,22,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-5,0,1423,-5,0,0 +2013,5,11,6,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-2,0,1636,-17,0,0 +2013,9,19,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,3,0,828,-6,0,0 +2013,8,15,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-2,0,851,-12,0,0 +2013,10,5,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,822,-6,0,1012,-14,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,8,0,2043,8,0,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1200,50,1,1323,78,1,0 +2013,9,20,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1355,-3,0,1615,3,0,0 +2013,4,1,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,924,-6,0,1044,-12,0,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,-4,0,816,-6,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1850,59,1,2210,32,1,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,1,0,1155,10,0,0 +2013,5,13,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1243,0,0,1430,-14,0,0 +2013,8,29,4,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,-2,0,1735,7,0,0 +2013,7,20,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,730,0,0,910,16,1,0 +2013,8,10,6,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,958,-2,0,1230,-15,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1212,-1,0,1644,-22,0,0 +2013,10,18,5,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1535,-3,0,1724,-14,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,900,-1,0,1625,-10,0,0 +2013,10,30,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1626,4,0,1942,1,0,0 +2013,6,7,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1200,28,1,1420,43,1,0 +2013,7,25,4,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1155,-5,0,1300,-17,0,0 +2013,4,24,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,805,65,1,1107,51,1,0 +2013,4,1,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-8,0,1743,-14,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2129,20,1,2244,42,1,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,7,0,1912,6,0,0 +2013,5,15,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-2,0,1700,-13,0,0 +2013,8,5,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,13,0,1508,6,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,955,24,1,1135,5,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,3,0,1340,-18,0,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,-6,0,903,-5,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,-2,0,1930,-13,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,-3,0,2010,-24,0,0 +2013,4,17,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,66,1,1340,202,1,0 +2013,6,14,5,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1615,-4,0,1905,-20,0,0 +2013,8,7,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1715,31,1,1945,24,1,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,56,1,1829,97,1,0 +2013,10,11,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1345,18,1,1355,-2,0,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-8,0,844,-20,0,0 +2013,9,25,3,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,0,0,837,8,0,0 +2013,8,2,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,830,1,0,940,31,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,10,0,2306,0,0,0 +2013,5,12,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,737,-6,0,1016,-8,0,0 +2013,5,2,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,0,0,1105,21,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1145,13,0,1219,16,1,0 +2013,7,2,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,0,0,1545,2,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,700,-3,0,848,0,0,0 +2013,8,31,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1550,30,1,1810,17,1,0 +2013,9,29,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1801,43,1,2052,42,1,0 +2013,4,2,2,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1140,-10,0,1412,-13,0,0 +2013,6,6,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1420,34,1,1545,63,1,0 +2013,6,13,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1830,4,0,2139,-9,0,0 +2013,8,15,4,EV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,935,-8,0,1113,-16,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,0,0,1225,0,0,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,24,1,2135,33,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1515,-1,0,1802,-30,0,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,740,-3,0,1315,2,0,0 +2013,5,3,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-5,0,635,-21,0,0 +2013,5,5,7,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1425,-5,0,1623,-8,0,0 +2013,9,18,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,710,-6,0,810,-14,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,-4,0,1825,-11,0,0 +2013,4,4,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1542,-2,0,1731,7,0,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1600,14,0,1740,-4,0,0 +2013,7,24,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,28,1,2030,13,0,0 +2013,8,25,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-9,0,824,-16,0,0 +2013,6,9,7,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1735,34,1,1915,36,1,0 +2013,4,28,7,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1816,-3,0,2109,-19,0,0 +2013,5,26,7,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1815,-9,0,2055,12,0,0 +2013,9,20,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1250,14,0,1405,13,0,0 +2013,10,13,7,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1745,7,0,2005,-8,0,0 +2013,5,7,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,850,-3,0,900,-2,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1155,-3,0,1600,-6,0,0 +2013,6,23,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1008,-7,0,1253,-26,0,0 +2013,6,3,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1650,-1,0,2007,6,0,0 +2013,7,20,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,76,1,1910,70,1,0 +2013,5,2,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,-7,0,1708,-1,0,0 +2013,9,19,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-7,0,1521,2,0,0 +2013,7,4,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-2,0,1025,-23,0,0 +2013,4,30,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,-1,0,2310,-4,0,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,-2,0,1506,-7,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,-1,0,820,-10,0,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1239,-7,0,1420,-14,0,0 +2013,4,22,1,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1215,85,1,1459,66,1,0 +2013,7,2,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-8,0,1915,2,0,0 +2013,7,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,820,-1,0,945,-4,0,0 +2013,7,12,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1945,25,1,2125,-1,0,0 +2013,7,2,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-6,0,1059,4,0,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1941,-5,0,2152,-9,0,0 +2013,8,19,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1650,52,1,1820,60,1,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2040,33,1,2145,29,1,0 +2013,9,27,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,-5,0,1526,-8,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,-1,0,1830,-4,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,-1,0,1642,-18,0,0 +2013,10,30,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,825,-7,0,1041,2,0,0 +2013,8,27,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1532,5,0,1717,6,0,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,10,0,1755,9,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1205,2,0,1305,-6,0,0 +2013,4,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1345,-5,0,1614,33,1,0 +2013,4,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,607,24,1,905,12,0,0 +2013,8,2,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1626,-5,0,1912,-4,0,0 +2013,10,25,5,9E,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-9,0,918,-27,0,0 +2013,9,17,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,0,0,1730,16,1,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,754,1,0,1011,-2,0,0 +2013,7,22,1,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,62,1,2135,52,1,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-5,0,2230,1,0,0 +2013,6,4,2,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,740,3,0,920,-2,0,0 +2013,8,23,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1615,-3,0,1822,-4,0,0 +2013,6,17,1,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-12,0,1722,12,0,0 +2013,6,28,5,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1745,0,,2036,0,1,1 +2013,5,21,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1653,0,0,1745,0,0,0 +2013,5,20,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-2,0,2140,-14,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,6,0,2341,-2,0,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1539,9,0,1710,6,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1215,1,0,1325,-13,0,0 +2013,4,28,7,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1610,-4,0,1817,-6,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1730,-4,0,1922,-24,0,0 +2013,4,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,2035,-6,0,2345,-9,0,0 +2013,10,8,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-10,0,923,-24,0,0 +2013,5,18,6,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-4,0,1632,-16,0,0 +2013,7,3,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,620,-4,0,750,-5,0,0 +2013,6,11,2,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,650,0,0,745,-12,0,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,-5,0,2040,-33,0,0 +2013,7,29,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-5,0,900,-2,0,0 +2013,4,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1310,2,0,1430,-4,0,0 +2013,6,28,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1228,0,0,1405,22,1,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,730,9,0,1054,0,0,0 +2013,9,23,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,900,30,1,1505,17,1,0 +2013,8,10,6,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,4,0,1930,-18,0,0 +2013,4,17,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,16,1,2038,38,1,0 +2013,7,31,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,1125,-9,0,0 +2013,10,10,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-3,0,1935,-3,0,0 +2013,7,10,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-2,0,1105,1,0,0 +2013,4,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,15376,Tucson International,Tucson,AZ,2155,-7,0,2200,-10,0,0 +2013,10,16,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,-4,0,2220,-3,0,0 +2013,5,9,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,0,0,745,0,0,0 +2013,8,20,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1254,-7,0,1614,-14,0,0 +2013,10,16,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-6,0,753,-6,0,0 +2013,7,3,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,44,1,1850,41,1,0 +2013,4,17,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1903,0,,1925,0,1,1 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1905,-1,0,2335,2,0,0 +2013,6,13,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-2,0,1607,-5,0,0 +2013,4,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1135,-6,0,1157,-18,0,0 +2013,10,17,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1013,57,1,1146,56,1,0 +2013,8,3,6,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,40,1,1802,31,1,0 +2013,7,25,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2121,6,0,2247,2,0,0 +2013,9,13,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1622,-7,0,1743,-10,0,0 +2013,4,22,1,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-7,0,2020,-8,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-2,0,2355,-22,0,0 +2013,8,14,3,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,1,0,1614,-12,0,0 +2013,9,9,1,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1743,-12,0,2102,-4,0,0 +2013,10,15,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2037,-5,0,2209,-1,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,8,0,2330,5,0,0 +2013,7,15,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1258,-4,0,1425,-20,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2033,-2,0,2155,-8,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,35,1,2205,35,1,0 +2013,4,28,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,1,0,1850,-5,0,0 +2013,6,21,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1617,1,0,1830,-4,0,0 +2013,7,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-5,0,2141,-16,0,0 +2013,9,30,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,855,-9,0,1035,-34,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1530,11,0,1755,7,0,0 +2013,9,19,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,-5,0,1929,3,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1245,11,0,1400,3,0,0 +2013,6,13,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-5,0,815,-10,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1312,70,1,1659,59,1,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1010,6,0,1645,-1,0,0 +2013,9,21,6,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-15,0,1050,-33,0,0 +2013,5,24,5,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-2,0,1136,-26,0,0 +2013,9,27,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1118,-4,0,1226,-25,0,0 +2013,9,13,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1315,-2,0,1610,-2,0,0 +2013,7,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1935,107,1,2213,95,1,0 +2013,10,16,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,-6,0,1210,-19,0,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2155,5,0,43,-6,0,0 +2013,9,2,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1816,-8,0,2159,-18,0,0 +2013,10,28,1,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2058,1,0,2347,-5,0,0 +2013,5,2,4,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,-5,0,1855,-8,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2048,0,0,2223,-11,0,0 +2013,9,5,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-11,0,1218,-3,0,0 +2013,7,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1330,4,0,1645,-2,0,0 +2013,7,21,7,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1325,2,0,1801,14,0,0 +2013,6,15,6,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,742,-4,0,838,-4,0,0 +2013,4,14,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1635,-2,0,1840,-28,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1730,-1,0,1835,-13,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-5,0,1435,-12,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1320,-2,0,1445,-5,0,0 +2013,8,6,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1727,-4,0,1929,-2,0,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,-5,0,2337,-14,0,0 +2013,5,10,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1225,-3,0,1444,-11,0,0 +2013,6,30,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,1,0,820,2,0,0 +2013,5,6,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1435,-3,0,1600,-18,0,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1559,66,1,1745,46,1,0 +2013,7,24,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1825,0,0,1850,45,1,0 +2013,9,24,2,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1904,-11,0,2030,-21,0,0 +2013,5,3,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,921,-1,0,1206,-6,0,0 +2013,6,25,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,0,0,1025,-13,0,0 +2013,7,13,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,842,-1,0,1023,-12,0,0 +2013,8,19,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1205,17,1,1450,14,0,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,806,12,0,1643,6,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,38,1,925,34,1,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,2,0,1055,-9,0,0 +2013,7,19,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,2,0,755,0,1,1 +2013,5,25,6,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-5,0,913,0,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2000,-3,0,2300,-1,0,0 +2013,5,28,2,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1644,2,0,1939,9,0,0 +2013,10,22,2,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,820,-4,0,940,-14,0,0 +2013,6,6,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,-8,0,520,-22,0,0 +2013,7,6,6,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,30,1,2020,20,1,0 +2013,7,27,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1850,-5,0,2014,-15,0,0 +2013,8,9,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1510,9,0,1825,14,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1940,70,1,2205,57,1,0 +2013,5,4,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1110,64,1,1938,78,1,0 +2013,7,28,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,841,2,0,1143,-8,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1945,0,0,2335,-10,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1915,17,1,2040,2,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1852,74,1,2259,37,1,0 +2013,9,14,6,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,930,-4,0,1115,-3,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,720,7,0,1100,13,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2141,0,0,2308,-9,0,0 +2013,7,13,6,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1449,47,1,2029,63,1,0 +2013,9,20,5,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,958,12,0,1423,5,0,0 +2013,7,30,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1758,-7,0,2059,-3,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1843,138,1,2200,131,1,0 +2013,5,19,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1801,-6,0,1846,-10,0,0 +2013,6,5,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,20,1,1649,35,1,0 +2013,10,19,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-5,0,1907,0,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1630,-4,0,1822,60,1,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,-3,0,2216,-13,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,-4,0,1740,-16,0,0 +2013,8,22,4,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,-6,0,742,-28,0,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1115,-2,0,1304,-9,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,726,-4,0,904,-11,0,0 +2013,8,27,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1400,0,0,1545,12,0,0 +2013,4,9,2,EV,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,0,0,1127,-9,0,0 +2013,5,29,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,-4,0,509,11,0,0 +2013,4,2,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,730,-6,0,1022,-20,0,0 +2013,9,18,3,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1400,-3,0,1513,3,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1240,-2,0,1325,-10,0,0 +2013,5,25,6,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1725,4,0,2000,-19,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1133,-7,0,1304,-33,0,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,-5,0,850,-6,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,745,8,0,1040,0,0,0 +2013,5,9,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-11,0,1208,-22,0,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,845,-7,0,1023,-17,0,0 +2013,8,3,6,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,740,36,1,950,46,1,0 +2013,8,6,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-7,0,1040,7,0,0 +2013,7,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2005,34,1,2228,36,1,0 +2013,8,27,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,630,-5,0,1501,-12,0,0 +2013,8,11,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,620,-5,0,737,0,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,905,21,1,1058,21,1,0 +2013,7,25,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-1,0,855,-5,0,0 +2013,5,16,4,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1945,4,0,2120,17,1,0 +2013,9,6,5,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-3,0,1110,-11,0,0 +2013,4,4,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1730,5,0,1825,2,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1715,0,,2020,0,1,1 +2013,9,17,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1435,-8,0,1841,-23,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,939,-1,0,1150,-7,0,0 +2013,10,31,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-3,0,1917,-3,0,0 +2013,7,8,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1925,0,,2039,0,1,1 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,3,0,2215,7,0,0 +2013,10,24,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2148,-5,0,2236,20,1,0 +2013,10,17,4,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,-3,0,1736,-2,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2303,0,0,15,-19,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,735,0,0,840,-16,0,0 +2013,8,8,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,19,1,1610,15,1,0 +2013,4,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1230,-8,0,2021,-10,0,0 +2013,5,27,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1750,-2,0,1815,-14,0,0 +2013,5,22,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-1,0,934,-7,0,0 +2013,6,8,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-7,0,1320,-5,0,0 +2013,7,11,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,-3,0,621,3,0,0 +2013,10,15,2,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,615,-10,0,930,-32,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,947,0,0,0 +2013,10,10,4,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1520,20,1,1815,29,1,0 +2013,6,2,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1205,0,0,1503,2,0,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1940,3,0,2205,-1,0,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,-2,0,2135,23,1,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,729,-1,0,845,-2,0,0 +2013,8,12,1,9E,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1710,-10,0,1850,-9,0,0 +2013,8,27,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-5,0,1750,-9,0,0 +2013,9,29,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,835,0,0,930,-9,0,0 +2013,6,8,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,720,-8,0,1127,-33,0,0 +2013,10,4,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1400,10,0,1635,13,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1853,2,0,2018,-8,0,0 +2013,4,25,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-9,0,2037,-15,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,815,-1,0,1055,-1,0,0 +2013,6,5,3,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,700,-6,0,1117,-6,0,0 +2013,8,21,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1445,5,0,1630,52,1,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,2,0,1243,-1,0,0 +2013,7,9,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1420,304,1,1712,300,1,0 +2013,6,17,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,957,10,0,1326,-6,0,0 +2013,9,20,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,826,10,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,844,16,1,1026,4,0,0 +2013,10,3,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-7,0,1919,-17,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2020,0,0,2225,5,0,0 +2013,6,5,3,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,800,13,0,1001,23,1,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1400,-3,0,1510,0,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,-4,0,1040,-15,0,0 +2013,8,18,7,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2200,17,1,550,27,1,0 +2013,6,20,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,755,-5,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,829,-2,0,1003,-11,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1959,102,1,2145,93,1,0 +2013,6,26,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,17,1,1815,10,0,0 +2013,6,13,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1140,-3,0,1350,7,0,0 +2013,4,28,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,730,1,0,1045,-5,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1015,-3,0,1129,-10,0,0 +2013,8,14,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,954,1,0,1305,-4,0,0 +2013,5,27,1,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,149,1,2235,144,1,0 +2013,7,7,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,653,-3,0,754,-7,0,0 +2013,9,1,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-10,0,1716,-12,0,0 +2013,4,24,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1110,-3,0,1240,-2,0,0 +2013,7,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1555,1,0,1728,-1,0,0 +2013,9,19,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2245,-4,0,2324,-3,0,0 +2013,5,12,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2123,0,0,2247,-15,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1725,1,0,1955,0,0,0 +2013,5,21,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,635,-3,0,844,-6,0,0 +2013,10,13,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-1,0,835,-10,0,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1859,-5,0,2230,-32,0,0 +2013,9,17,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1500,49,1,1630,63,1,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,925,-8,0,1306,-22,0,0 +2013,5,2,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1600,27,1,1725,19,1,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1520,3,0,1615,1,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-5,0,1823,-7,0,0 +2013,8,25,7,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1030,-11,0,1152,-11,0,0 +2013,10,13,7,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1820,19,1,1940,18,1,0 +2013,9,8,7,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2003,-6,0,2210,-35,0,0 +2013,4,14,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,37,1,1805,25,1,0 +2013,10,2,3,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-8,0,1205,-14,0,0 +2013,5,25,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1237,-10,0,1357,5,0,0 +2013,10,4,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-11,0,2049,-15,0,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1650,40,1,1810,103,1,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1310,2,0,1655,-5,0,0 +2013,8,23,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1420,24,1,2015,23,1,0 +2013,5,8,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,-4,0,1610,-6,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,640,-4,0,858,-20,0,0 +2013,7,16,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1750,42,1,2125,56,1,0 +2013,10,17,4,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,33,1,1910,27,1,0 +2013,7,26,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,-3,0,1223,-4,0,0 +2013,9,2,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-2,0,2140,-9,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1414,0,0,1543,2,0,0 +2013,8,20,2,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,819,-1,0,1103,-4,0,0 +2013,5,23,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1716,81,1,1835,101,1,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1710,1,0,1820,-15,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,-7,0,2200,-11,0,0 +2013,6,7,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,8,0,1905,-6,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1230,-1,0,1525,27,1,0 +2013,10,2,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,635,-2,0,745,2,0,0 +2013,8,15,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,23,1,2145,20,1,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2050,12,0,2140,10,0,0 +2013,8,4,7,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-2,0,1025,-24,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1740,13,0,2305,8,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,905,-5,0,1200,-9,0,0 +2013,9,8,7,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1315,-5,0,2046,-11,0,0 +2013,6,13,4,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1905,-6,0,2056,19,1,0 +2013,5,24,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,3,0,2016,-2,0,0 +2013,5,9,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1655,21,1,1950,17,1,0 +2013,9,22,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1406,1,0,2055,-14,0,0 +2013,8,13,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,0,,1235,0,1,1 +2013,6,23,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,-10,0,813,1,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,630,-2,0,1140,5,0,0 +2013,8,3,6,EV,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1540,0,0,1648,-13,0,0 +2013,8,13,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1110,-2,0,1235,8,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1335,42,1,1615,42,1,0 +2013,7,10,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-5,0,1450,-20,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-2,0,1115,6,0,0 +2013,9,22,7,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1546,-3,0,1640,-2,0,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,0,0,2254,-15,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,-2,0,1054,-7,0,0 +2013,5,28,2,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1755,9,0,2007,4,0,0 +2013,5,20,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1410,2,0,0 +2013,6,25,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,757,-24,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,959,-3,0,1535,-14,0,0 +2013,7,14,7,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1512,-4,0,1835,-6,0,0 +2013,8,23,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1115,36,1,1230,29,1,0 +2013,4,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,-4,0,1714,-12,0,0 +2013,5,16,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,801,0,0,951,-13,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-4,0,1044,-13,0,0 +2013,6,20,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,13,0,1615,19,1,0 +2013,10,6,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2030,-13,0,2302,-12,0,0 +2013,10,14,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1111,2,0,0 +2013,6,6,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1110,-2,0,1240,-11,0,0 +2013,9,9,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1937,-4,0,2143,-17,0,0 +2013,7,23,2,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,634,-1,0,1409,-14,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1945,-2,0,2104,-2,0,0 +2013,4,16,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,-4,0,1652,-17,0,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-3,0,820,-1,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,43,1,1615,24,1,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1055,-3,0,1535,4,0,0 +2013,10,4,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,755,-4,0,1017,6,0,0 +2013,9,23,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1735,-2,0,1906,-2,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1155,-2,0,1320,-9,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-5,0,1520,-16,0,0 +2013,7,19,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,-2,0,1345,-6,0,0 +2013,8,28,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,-4,0,1939,-9,0,0 +2013,10,31,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,0,0,1510,-6,0,0 +2013,4,16,2,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1650,3,0,1845,-16,0,0 +2013,9,13,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-3,0,1620,5,0,0 +2013,7,15,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1535,0,0,1715,-15,0,0 +2013,4,9,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-7,0,910,-6,0,0 +2013,4,17,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1740,183,1,1905,174,1,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1025,5,0,1300,2,0,0 +2013,7,10,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,35,1,1550,56,1,0 +2013,4,10,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,21,1,1823,-2,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-1,0,2151,-10,0,0 +2013,10,5,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,710,-2,0,910,-7,0,0 +2013,5,19,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,55,1,828,56,1,0 +2013,6,8,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,608,-3,0,640,6,0,0 +2013,8,30,5,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1208,-4,0,2013,-12,0,0 +2013,4,8,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1520,-5,0,1735,-4,0,0 +2013,4,15,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1130,8,0,1153,-3,0,0 +2013,10,2,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1825,-1,0,1900,-17,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1438,0,0,1528,-9,0,0 +2013,7,27,6,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1455,-6,0,1700,-13,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,30,1,2059,-2,0,0 +2013,6,13,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1112,6,0,1425,-3,0,0 +2013,10,11,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,821,-9,0,0 +2013,7,11,4,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,2,0,1950,-7,0,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2345,6,0,813,-12,0,0 +2013,4,25,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,64,1,940,80,1,0 +2013,6,26,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1105,0,0,1230,-4,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,16,1,1405,24,1,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1535,25,1,1625,20,1,0 +2013,6,19,3,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,4,0,2025,4,0,0 +2013,6,8,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,-8,0,937,-11,0,0 +2013,4,28,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1700,11,0,1851,5,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1304,73,1,1804,46,1,0 +2013,9,18,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2055,2,0,2220,1,0,0 +2013,9,1,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1509,-6,0,1547,-11,0,0 +2013,9,6,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1556,-7,0,1809,-11,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2219,53,1,2305,31,1,0 +2013,6,26,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,805,-3,0,915,-2,0,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,955,5,0,1803,15,1,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1340,-2,0,1709,-10,0,0 +2013,10,18,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1720,-9,0,1921,-19,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,640,-1,0,800,-6,0,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-1,0,805,-1,0,0 +2013,8,24,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-11,0,1934,-13,0,0 +2013,5,8,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1717,38,1,1959,35,1,0 +2013,8,15,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,2,0,1545,-6,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1127,2,0,1313,-9,0,0 +2013,7,18,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-1,0,1650,-12,0,0 +2013,8,26,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,-9,0,820,-8,0,0 +2013,10,4,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-4,0,1350,-22,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-1,0,2331,0,0,0 +2013,10,27,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,750,0,0,929,-11,0,0 +2013,9,7,6,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-11,0,1841,-14,0,0 +2013,8,11,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,645,-22,0,0 +2013,5,13,1,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1035,25,1,1325,0,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,3,0,830,1,0,0 +2013,4,16,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1715,4,0,2045,18,1,0 +2013,7,10,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,623,-3,0,655,-12,0,0 +2013,10,6,7,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,6,0,1810,1,0,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,29,1,1122,13,0,0 +2013,8,29,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1520,86,1,1750,79,1,0 +2013,8,1,4,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,147,1,1720,222,1,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1145,-1,0,1240,1,0,0 +2013,4,19,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,923,-10,0,0 +2013,8,13,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,3,0,1635,5,0,0 +2013,8,2,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-10,0,1302,-15,0,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-1,0,745,-7,0,0 +2013,8,2,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1306,-2,0,2043,-22,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2025,-3,0,2202,-13,0,0 +2013,5,22,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,6,0,1219,4,0,0 +2013,8,7,3,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,740,7,0,920,-4,0,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,43,1,1655,13,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,750,5,0,1315,-7,0,0 +2013,7,30,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-2,0,1430,2,0,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,6,0,1625,11,0,0 +2013,5,12,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,743,10,0,0 +2013,6,26,3,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,850,147,1,1014,131,1,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,-3,0,2146,-4,0,0 +2013,5,4,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1606,-7,0,1815,-20,0,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-9,0,1335,-8,0,0 +2013,9,13,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-3,0,2025,-10,0,0 +2013,7,9,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-5,0,1240,-1,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1545,75,1,1840,76,1,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1255,-3,0,1600,32,1,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1910,-2,0,2036,-21,0,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,3,0,1814,-16,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,4,0,1115,-2,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,58,1,2251,43,1,0 +2013,8,21,3,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1631,18,1,1904,4,0,0 +2013,6,19,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1830,0,0,1940,-7,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,655,0,0,938,15,1,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,835,-7,0,1431,-31,0,0 +2013,8,21,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1525,10,0,1859,23,1,0 +2013,6,3,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,9,0,1718,9,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,648,18,1,913,8,0,0 +2013,9,19,4,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,0,0,1250,-13,0,0 +2013,4,25,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,-7,0,2029,2,0,0 +2013,9,6,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1649,-1,0,1814,12,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-5,0,1529,-10,0,0 +2013,6,21,5,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-1,0,920,14,0,0 +2013,10,15,2,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1620,34,1,1825,18,1,0 +2013,9,19,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-1,0,925,-2,0,0 +2013,9,6,5,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-7,0,1540,9,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1140,-1,0,1255,-3,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,857,-5,0,1112,-49,0,0 +2013,9,13,5,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-8,0,2056,4,0,0 +2013,5,27,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,830,13,0,1120,-21,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,12,0,1651,8,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1025,4,0,1115,-1,0,0 +2013,10,14,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,648,-8,0,0 +2013,5,29,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1010,-10,0,1220,-9,0,0 +2013,8,17,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,810,-9,0,925,-13,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,0,0,2210,8,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-10,0,1617,-15,0,0 +2013,9,6,5,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,87,1,1933,60,1,0 +2013,5,8,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,1,0,1230,-4,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,-1,0,1940,11,0,0 +2013,5,28,2,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1936,11,0,2057,3,0,0 +2013,4,16,2,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,837,-8,0,1117,-19,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1032,-7,0,1309,-17,0,0 +2013,5,9,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1210,1,0,1438,11,0,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,900,6,0,0 +2013,9,26,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,800,3,0,1605,-8,0,0 +2013,5,5,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,952,-3,0,1127,8,0,0 +2013,8,25,7,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,800,-4,0,847,-6,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1635,14,0,1900,-12,0,0 +2013,9,30,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,810,-5,0,1410,-17,0,0 +2013,8,10,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,14,0,1530,-12,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,1,0,1525,-9,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1015,-1,0,1410,-11,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1945,-3,0,2256,4,0,0 +2013,10,20,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,12,0,1320,3,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1341,6,0,1516,0,0,0 +2013,10,8,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,1922,-7,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1931,16,1,130,0,0,0 +2013,5,3,5,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,201,1,1515,212,1,0 +2013,5,22,3,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,1,0,1000,-13,0,0 +2013,6,23,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1105,2,0,1220,-4,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1250,-5,0,1413,-12,0,0 +2013,10,29,2,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1857,-10,0,2058,-2,0,0 +2013,7,26,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,36,1,2346,21,1,0 +2013,9,12,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-8,0,920,-9,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1816,-4,0,2009,-12,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,-5,0,2025,-21,0,0 +2013,8,16,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1619,-7,0,1728,-26,0,0 +2013,9,22,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1150,-4,0,1205,-18,0,0 +2013,7,9,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,3,0,1046,-1,0,0 +2013,8,29,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,-1,0,730,-1,0,0 +2013,4,8,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1455,-5,0,1724,-4,0,0 +2013,10,17,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1838,-13,0,2123,-15,0,0 +2013,8,9,5,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,10,0,1520,5,0,0 +2013,9,18,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,825,-2,0,850,4,0,0 +2013,6,6,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-8,0,1004,-22,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,735,-3,0,903,-7,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1325,14,0,1545,0,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2010,81,1,2158,90,1,0 +2013,8,15,4,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,-6,0,1245,-26,0,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,648,-3,0,935,-6,0,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,855,7,0,1050,2,0,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,855,-3,0,1210,-9,0,0 +2013,6,18,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,48,1,1345,63,1,0 +2013,8,14,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1007,-1,0,1453,-16,0,0 +2013,9,9,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-10,0,945,-10,0,0 +2013,6,23,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1605,8,0,1640,-7,0,0 +2013,5,23,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,935,17,1,1055,36,1,0 +2013,9,29,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,-4,0,1055,-10,0,0 +2013,9,4,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1409,-17,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1343,2,0,1548,-9,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1609,193,1,2012,185,1,0 +2013,9,7,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-3,0,820,-2,0,0 +2013,8,30,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,-6,0,2004,-9,0,0 +2013,4,1,1,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2000,4,0,2238,-2,0,0 +2013,9,5,4,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1054,-13,0,1135,-22,0,0 +2013,7,22,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-1,0,730,-11,0,0 +2013,8,30,5,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1128,-6,0,1921,-15,0,0 +2013,6,23,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-5,0,2251,-10,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1820,-1,0,1920,-8,0,0 +2013,8,4,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1435,-2,0,1635,-17,0,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2125,10,0,2335,3,0,0 +2013,4,29,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,-2,0,1955,-5,0,0 +2013,7,10,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,750,-5,0,1635,-17,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1300,0,0,1647,-9,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,26,1,2150,46,1,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1005,20,1,1145,0,0,0 +2013,7,6,6,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,757,-3,0,1027,-25,0,0 +2013,5,11,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-5,0,910,-24,0,0 +2013,6,27,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,4,0,2049,7,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1725,31,1,2055,24,1,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1745,0,0,1935,-24,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-6,0,1608,-3,0,0 +2013,4,12,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,-2,0,800,-4,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1439,2,0,1606,5,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1908,9,0,2100,0,0,0 +2013,4,7,7,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1425,1,0,1645,-17,0,0 +2013,6,8,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1200,-1,0,1345,3,0,0 +2013,6,16,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-2,0,1242,14,0,0 +2013,7,23,2,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,-3,0,1140,1,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,-1,0,2110,-11,0,0 +2013,9,20,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1805,-5,0,2045,11,0,0 +2013,5,3,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,820,76,1,938,96,1,0 +2013,9,26,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,19,1,1921,15,1,0 +2013,4,26,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1430,14,0,1600,-5,0,0 +2013,9,6,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1535,-13,0,1847,-10,0,0 +2013,4,29,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,645,-26,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1201,-6,0,1330,-7,0,0 +2013,10,19,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,914,-6,0,1150,-5,0,0 +2013,5,23,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1925,47,1,2123,40,1,0 +2013,7,22,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1140,-10,0,1450,-17,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2210,2,0,2337,8,0,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,26,1,2105,21,1,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1955,-5,0,2125,-15,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1705,76,1,2230,67,1,0 +2013,8,4,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-6,0,800,-6,0,0 +2013,10,30,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,625,-2,0,900,5,0,0 +2013,7,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,700,-2,0,835,-4,0,0 +2013,10,23,3,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-4,0,1605,3,0,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,1050,2,0,1755,-27,0,0 +2013,8,21,3,EV,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,2,0,1414,3,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1936,13,0,2039,14,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,530,-5,0,840,-14,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,1115,-9,0,0 +2013,5,9,4,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1450,10,0,1800,13,0,0 +2013,5,29,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1740,4,0,1905,-10,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1544,6,0,1805,4,0,0 +2013,5,25,6,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1820,-13,0,2133,-28,0,0 +2013,10,8,2,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1140,36,1,1420,15,1,0 +2013,8,10,6,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1117,1,0,1354,-20,0,0 +2013,6,10,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,-2,0,1252,-12,0,0 +2013,5,15,3,UA,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,630,-3,0,803,-15,0,0 +2013,4,23,2,DL,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,1831,-4,0,2059,-4,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,940,-1,0,1105,15,1,0 +2013,8,9,5,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,545,0,0,845,-1,0,0 +2013,10,30,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1925,126,1,2115,130,1,0 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1330,14,0,1540,14,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-1,0,1526,-7,0,0 +2013,4,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,0,0,1050,-11,0,0 +2013,10,22,2,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1553,-2,0,1848,-15,0,0 +2013,6,29,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,816,8,0,1100,3,0,0 +2013,5,25,6,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1041,-9,0,1417,-27,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,12,0,1555,1,0,0 +2013,5,25,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-1,0,905,0,0,0 +2013,5,5,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1609,-16,0,0 +2013,7,19,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,11,0,1915,4,0,0 +2013,10,13,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12451,Jacksonville International,Jacksonville,FL,1000,6,0,1355,-9,0,0 +2013,6,4,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1424,7,0,1531,-6,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2210,-5,0,2315,-4,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2120,-4,0,2302,-27,0,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1332,-4,0,1449,-15,0,0 +2013,7,12,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1538,15,1,1710,30,1,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1300,18,1,1425,2,0,0 +2013,6,20,4,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1740,-4,0,1905,-4,0,0 +2013,9,16,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,855,-7,0,1029,-17,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1125,28,1,1700,7,0,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,99,1,825,89,1,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2020,146,1,2241,142,1,0 +2013,7,1,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1855,1,0,2020,2,0,0 +2013,9,3,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1245,-3,0,2101,-17,0,0 +2013,5,18,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1840,-3,0,2132,-34,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1205,-4,0,1315,-5,0,0 +2013,6,12,3,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,755,-1,0,1130,-11,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,718,-4,0,1057,-13,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,815,0,0,1025,-5,0,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,700,-5,0,1525,-1,0,0 +2013,8,4,7,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1115,8,0,1228,9,0,0 +2013,4,27,6,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2255,5,0,657,-8,0,0 +2013,6,6,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,920,7,0,1110,-8,0,0 +2013,9,19,4,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1322,3,0,1420,-4,0,0 +2013,5,18,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,-4,0,1305,-10,0,0 +2013,6,28,5,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,48,1,1016,58,1,0 +2013,4,13,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1530,0,0,1548,-11,0,0 +2013,8,15,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,10,0,1450,39,1,0 +2013,6,7,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1730,-4,0,1855,-11,0,0 +2013,6,7,5,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1735,44,1,1915,42,1,0 +2013,4,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-2,0,750,10,0,0 +2013,8,18,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,935,1,0,1030,3,0,0 +2013,9,11,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1751,-7,0,1825,-6,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,2,0,1633,-9,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1919,6,0,2244,-6,0,0 +2013,10,18,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1350,11,0,1540,22,1,0 +2013,7,22,1,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1527,11,0,1742,6,0,0 +2013,7,25,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1300,-5,0,1505,-17,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1528,6,0,1644,-1,0,0 +2013,10,30,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-5,0,1637,1,0,0 +2013,8,10,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2201,-4,0,2301,-19,0,0 +2013,9,17,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,31,1,1150,11,0,0 +2013,5,29,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,-17,0,1240,-27,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1045,6,0,1210,9,0,0 +2013,8,26,1,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,-2,0,1440,-9,0,0 +2013,5,22,3,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,815,11,0,1201,-5,0,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,8,0,1140,7,0,0 +2013,9,12,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-6,0,1125,6,0,0 +2013,6,8,6,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1410,14,0,1631,13,0,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1203,-3,0,1337,11,0,0 +2013,10,14,1,YV,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1003,-7,0,1408,-31,0,0 +2013,7,3,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-3,0,1337,4,0,0 +2013,4,28,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,6,0,1945,26,1,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,900,-1,0,1200,-8,0,0 +2013,9,4,3,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,712,58,1,1210,86,1,0 +2013,6,12,3,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,540,9,0,955,-5,0,0 +2013,4,27,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1743,-4,0,2104,-14,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1735,13,0,1757,12,0,0 +2013,10,28,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,2,0,1140,-9,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1659,8,0,1843,-13,0,0 +2013,6,20,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-5,0,848,-7,0,0 +2013,9,12,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,2,0,2035,-11,0,0 +2013,6,24,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,148,1,2223,143,1,0 +2013,4,26,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,-5,0,624,-9,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,-2,0,2104,-1,0,0 +2013,8,9,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,900,3,0,1043,-2,0,0 +2013,9,13,5,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-11,0,720,-36,0,0 +2013,7,5,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1022,91,1,1201,83,1,0 +2013,9,13,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,752,-5,0,904,-8,0,0 +2013,4,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-3,0,2054,-13,0,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,2000,-1,0,2142,-23,0,0 +2013,9,27,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2140,7,0,40,-5,0,0 +2013,4,17,3,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1328,3,0,1653,49,1,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1929,12,0,2059,27,1,0 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1155,10,0,1310,9,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1745,0,0,2335,15,1,0 +2013,9,5,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-3,0,2027,-7,0,0 +2013,9,8,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1100,-11,0,1459,-4,0,0 +2013,4,27,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,-7,0,1635,-22,0,0 +2013,10,10,4,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1529,-5,0,1820,-3,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,6,0,2350,-5,0,0 +2013,5,8,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1135,0,0,1155,-10,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1145,8,0,1325,3,0,0 +2013,7,10,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1915,3,0,2210,-18,0,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1635,23,1,1855,-4,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,76,1,1231,85,1,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,18,1,1806,25,1,0 +2013,10,25,5,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,0,0,1230,1,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,735,-6,0,927,-16,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1951,7,0,2153,16,1,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,1,0,1935,1,0,0 +2013,8,28,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,634,-5,0,827,-23,0,0 +2013,7,20,6,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1745,56,1,1935,40,1,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1305,-4,0,1424,3,0,0 +2013,6,20,4,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,2020,71,1,2110,69,1,0 +2013,5,16,4,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1950,-5,0,2056,-21,0,0 +2013,5,29,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-3,0,1757,10,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-3,0,1435,-15,0,0 +2013,7,12,5,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,106,1,2018,104,1,0 +2013,8,25,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1805,8,0,2024,6,0,0 +2013,10,16,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,-2,0,1105,-25,0,0 +2013,6,4,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,828,9,0,0 +2013,10,22,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-6,0,1105,2,0,0 +2013,5,15,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-7,0,1920,-6,0,0 +2013,7,29,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1918,-9,0,2229,-15,0,0 +2013,9,14,6,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1725,-8,0,1845,-29,0,0 +2013,8,11,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,49,1,1546,38,1,0 +2013,7,18,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,8,0,945,15,1,0 +2013,8,11,7,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,0,0,2140,15,1,0 +2013,5,20,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,605,-2,0,755,20,1,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,-1,0,1645,-22,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,850,-1,0,1145,-9,0,0 +2013,10,16,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1300,-3,0,1622,-20,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1007,4,0,1533,-12,0,0 +2013,7,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,804,-6,0,1027,-19,0,0 +2013,9,8,7,YV,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-10,0,1703,-16,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1131,31,1,1613,38,1,0 +2013,8,16,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-8,0,1112,-13,0,0 +2013,4,5,5,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1939,-10,0,2245,7,0,0 +2013,9,4,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-8,0,2050,-15,0,0 +2013,4,19,5,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1143,119,1,1653,104,1,0 +2013,10,6,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,12,0,1540,4,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-7,0,2355,-4,0,0 +2013,5,22,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,635,-2,0,751,-21,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,12,0,1450,38,1,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,17,1,1705,3,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1744,11,0,2100,-13,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2155,5,0,2300,0,0,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1046,-1,0,1330,0,0,0 +2013,7,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,-2,0,1500,-7,0,0 +2013,7,7,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,14,0,929,3,0,0 +2013,4,7,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,730,-1,0,845,-7,0,0 +2013,7,12,5,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2012,53,1,2140,19,1,0 +2013,7,8,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,1155,-4,0,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2135,-4,0,5,-25,0,0 +2013,9,10,2,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1920,1,0,2015,2,0,0 +2013,8,13,2,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,91,1,1340,95,1,0 +2013,5,24,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2142,18,1,549,5,0,0 +2013,5,30,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-4,0,1251,-14,0,0 +2013,9,4,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,635,-3,0,932,-32,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1154,30,1,2035,11,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1415,-1,0,1605,0,0,0 +2013,6,20,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,10,0,2230,1,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,850,1,0,1615,-10,0,0 +2013,4,5,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1000,29,1,1130,22,1,0 +2013,8,19,1,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,7,0,905,6,0,0 +2013,8,26,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-3,0,1110,1,0,0 +2013,6,27,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,39,1,1150,40,1,0 +2013,6,17,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1645,-3,0,1805,-9,0,0 +2013,7,24,3,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,845,12,0,1653,7,0,0 +2013,8,18,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,22,1,1937,32,1,0 +2013,8,10,6,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1150,2,0,1340,4,0,0 +2013,10,14,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,635,-2,0,830,-11,0,0 +2013,8,31,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-2,0,1112,-6,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,10,0,2200,3,0,0 +2013,4,9,2,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1127,-3,0,1345,-13,0,0 +2013,5,4,6,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1235,41,1,1444,33,1,0 +2013,8,2,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-4,0,1741,-12,0,0 +2013,4,14,7,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,807,-4,0,1048,-3,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1240,94,1,1420,96,1,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1559,-3,0,1739,-11,0,0 +2013,4,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-7,0,1054,2,0,0 +2013,9,23,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-10,0,1140,-13,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,16,1,859,17,1,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,7,0,1135,11,0,0 +2013,7,9,2,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1820,-1,0,2005,-8,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1223,17,1,1335,6,0,0 +2013,9,2,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2002,-11,0,2057,-15,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2155,8,0,2305,6,0,0 +2013,6,30,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1925,1,0,2050,-13,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2145,21,1,2306,17,1,0 +2013,5,5,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1426,-5,0,1729,2,0,0 +2013,7,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,18,1,1115,5,0,0 +2013,5,25,6,EV,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1000,-3,0,1145,-19,0,0 +2013,8,6,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1015,-3,0,1353,-19,0,0 +2013,7,30,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-10,0,2041,-9,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1614,-2,0,1737,-7,0,0 +2013,7,18,4,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1850,12,0,16,12,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1635,-2,0,1825,-14,0,0 +2013,6,18,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1857,94,1,2027,86,1,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1945,-4,0,2058,-15,0,0 +2013,6,23,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,18,1,2130,14,0,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,805,-5,0,1412,-14,0,0 +2013,9,4,3,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,128,1,2121,143,1,0 +2013,4,12,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1303,23,1,1551,10,0,0 +2013,10,28,1,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-13,0,1726,-12,0,0 +2013,10,29,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2005,-5,0,2202,-9,0,0 +2013,5,28,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,8,0,2159,16,1,0 +2013,7,20,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1710,59,1,1840,108,1,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1142,-1,0,1419,-7,0,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2155,26,1,2305,19,1,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2100,2,0,2229,-5,0,0 +2013,9,20,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,-1,0,1000,60,1,0 +2013,9,6,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1129,-6,0,1316,-12,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,-4,0,1635,-38,0,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,632,-6,0,758,-12,0,0 +2013,10,31,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1121,-5,0,1307,-9,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1447,-5,0,1605,-15,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1731,0,0,1904,-9,0,0 +2013,4,9,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1925,110,1,2055,98,1,0 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1350,-5,0,1518,-15,0,0 +2013,7,27,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1932,122,1,2100,110,1,0 +2013,6,6,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,-4,0,1126,2,0,0 +2013,6,15,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1255,13,0,1410,9,0,0 +2013,5,21,2,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1035,8,0,1350,7,0,0 +2013,9,20,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,1,0,1553,0,0,0 +2013,5,8,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1559,232,1,1745,0,1,1 +2013,6,30,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,3,0,1010,13,0,0 +2013,7,7,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2031,21,1,2337,21,1,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1300,-9,0,1455,-9,0,0 +2013,8,18,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1715,-7,0,1850,2,0,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2100,-5,0,2220,-8,0,0 +2013,6,24,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1305,60,1,1410,45,1,0 +2013,9,21,6,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1545,-10,0,1925,-23,0,0 +2013,7,4,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,0,0,1650,-7,0,0 +2013,4,8,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-3,0,1505,-13,0,0 +2013,5,2,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,815,-1,0,940,-14,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,820,-3,0,915,-10,0,0 +2013,7,31,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,705,-3,0,817,-14,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,740,1,0,1010,-13,0,0 +2013,8,26,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1535,-1,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,3,0,853,-1,0,0 +2013,5,17,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,902,-8,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1450,1,0,1810,-5,0,0 +2013,4,2,2,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1540,1,0,1648,4,0,0 +2013,5,20,1,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,-2,0,1950,-20,0,0 +2013,6,15,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,945,9,0,1040,13,0,0 +2013,8,3,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,0,0,845,-6,0,0 +2013,8,24,6,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,9,0,1530,8,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,5,0,1558,5,0,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1740,20,1,2305,28,1,0 +2013,8,15,4,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,34,1,1910,18,1,0 +2013,5,31,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1908,-5,0,2120,-8,0,0 +2013,8,5,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,715,0,0,915,-6,0,0 +2013,9,24,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1230,-1,0,1449,-10,0,0 +2013,6,25,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,2025,5,0,2345,4,0,0 +2013,4,12,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2110,12,0,2235,9,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1345,16,1,1440,-6,0,0 +2013,8,12,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,70,1,1404,73,1,0 +2013,6,19,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2130,12,0,2250,11,0,0 +2013,8,29,4,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,730,-4,0,927,-18,0,0 +2013,7,29,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-1,0,2000,-6,0,0 +2013,8,22,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1220,2,0,1314,-2,0,0 +2013,9,2,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1405,20,1,1510,20,1,0 +2013,6,20,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,635,-5,0,801,-18,0,0 +2013,8,21,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1525,15,1,1630,3,0,0 +2013,10,16,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1429,-9,0,1942,-18,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-2,0,1556,0,0,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1220,-1,0,1442,4,0,0 +2013,7,15,1,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,532,-6,0,627,-17,0,0 +2013,4,13,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-8,0,1746,-1,0,0 +2013,10,17,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,2,0,815,18,1,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,923,-6,0,0 +2013,9,23,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1930,-7,0,2159,-9,0,0 +2013,7,18,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1630,-3,0,1915,-1,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1320,-7,0,1547,1,0,0 +2013,6,3,1,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1130,2,0,2010,-5,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,730,-5,0,859,-9,0,0 +2013,6,11,2,US,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-10,0,1857,0,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1450,-1,0,1517,-9,0,0 +2013,6,2,7,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,1,0,1915,-10,0,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1439,1,0,2251,30,1,0 +2013,9,2,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1310,5,0,1430,-11,0,0 +2013,5,21,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,107,1,1745,169,1,0 +2013,4,2,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,504,-3,0,712,-3,0,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,41,1,1053,46,1,0 +2013,7,21,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1528,-7,0,2215,5,0,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,20,1,2340,10,0,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,19,1,1636,21,1,0 +2013,4,4,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,0,0,1620,-2,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1430,76,1,1650,71,1,0 +2013,9,5,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-9,0,903,-4,0,0 +2013,6,23,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,5,0,1551,8,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1518,-3,0,1748,-16,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-8,0,1830,-35,0,0 +2013,4,22,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-4,0,1510,-10,0,0 +2013,10,14,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,545,-2,0,1140,-15,0,0 +2013,6,10,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1823,-6,0,2115,-20,0,0 +2013,4,24,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-5,0,1500,-18,0,0 +2013,6,19,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1020,-8,0,1135,-13,0,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-1,0,959,-3,0,0 +2013,6,3,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-3,0,1653,-15,0,0 +2013,6,21,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-8,0,1345,-7,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2155,0,0,2352,-3,0,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1752,1,0,2305,1,0,0 +2013,8,27,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-3,0,1548,-10,0,0 +2013,8,14,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,4,0,1810,-3,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,14,0,1030,21,1,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1027,57,1,1459,37,1,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-6,0,1240,-8,0,0 +2013,4,1,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,0,0,606,-12,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,825,4,0,1030,19,1,0 +2013,5,16,4,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1717,-1,0,1840,-2,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,0,0,1959,-9,0,0 +2013,4,2,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1600,-1,0,1726,-10,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,0,0,1225,-1,0,0 +2013,9,22,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,20,1,1558,14,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1455,43,1,1800,35,1,0 +2013,8,22,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2010,-4,0,2156,-19,0,0 +2013,6,7,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-4,0,1725,6,0,0 +2013,5,2,4,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1000,-5,0,1105,-7,0,0 +2013,5,28,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-3,0,1201,-4,0,0 +2013,4,1,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-4,0,1608,-13,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,58,1,2120,55,1,0 +2013,7,6,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-8,0,1005,-14,0,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1858,-6,0,2159,-6,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1959,50,1,2132,54,1,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-3,0,1415,-13,0,0 +2013,10,7,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1735,7,0,1930,-10,0,0 +2013,7,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,-3,0,1811,-4,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-2,0,1214,2,0,0 +2013,10,27,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,25,1,1700,19,1,0 +2013,10,16,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-9,0,2035,0,0,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,935,10,0,1020,21,1,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,-3,0,1143,3,0,0 +2013,5,15,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1020,-3,0,1316,-2,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1345,21,1,1615,15,1,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-6,0,1024,-9,0,0 +2013,7,22,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,42,1,2105,52,1,0 +2013,6,3,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-2,0,1754,-9,0,0 +2013,4,10,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,712,37,1,1015,15,1,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1405,-1,0,1645,-7,0,0 +2013,5,29,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2003,1,0,2333,-3,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,947,11,0,1110,13,0,0 +2013,10,6,7,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,837,-21,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1445,32,1,1550,22,1,0 +2013,8,27,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-9,0,857,-12,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,5,0,1430,2,0,0 +2013,9,29,7,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1829,-1,0,1900,4,0,0 +2013,5,22,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,0,0,2310,81,1,0 +2013,7,24,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1302,6,0,1415,-11,0,0 +2013,9,26,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-5,0,2105,-19,0,0 +2013,8,29,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1350,26,1,1504,16,1,0 +2013,5,8,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,32,1,2327,14,0,0 +2013,5,21,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2110,25,1,2240,14,0,0 +2013,4,23,2,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-3,0,903,-6,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,10,0,736,-13,0,0 +2013,10,11,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,905,-10,0,1505,-15,0,0 +2013,10,17,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,830,-1,0,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1745,-6,0,2120,-16,0,0 +2013,7,6,6,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1855,-8,0,2008,-8,0,0 +2013,8,24,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1450,3,0,1605,-14,0,0 +2013,10,1,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1955,-3,0,2135,-14,0,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2129,66,1,15,80,1,0 +2013,4,28,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,950,-5,0,1105,-7,0,0 +2013,5,14,2,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1630,35,1,1805,16,1,0 +2013,10,12,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-9,0,925,-14,0,0 +2013,10,8,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1545,-4,0,1701,-19,0,0 +2013,9,7,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1810,3,0,1910,-1,0,0 +2013,5,30,4,YV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1000,-4,0,1137,-13,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1825,31,1,2350,9,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1610,17,1,1840,7,0,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2215,1,0,4,-22,0,0 +2013,5,31,5,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,114,1,812,93,1,0 +2013,9,5,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1825,-5,0,1850,-11,0,0 +2013,10,7,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-1,0,725,-16,0,0 +2013,5,20,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1545,47,1,1849,33,1,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-1,0,1335,-12,0,0 +2013,8,20,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1306,18,1,1427,49,1,0 +2013,4,19,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,0,0,1614,15,1,0 +2013,10,26,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1350,-5,0,1459,-16,0,0 +2013,5,10,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1940,3,0,55,1,0,0 +2013,7,27,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,936,-4,0,1200,-7,0,0 +2013,5,9,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1110,2,0,1938,14,0,0 +2013,6,2,7,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,740,-8,0,846,-2,0,0 +2013,8,20,2,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,952,-2,0,1309,7,0,0 +2013,7,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1845,53,1,2005,54,1,0 +2013,9,9,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,-5,0,1210,-2,0,0 +2013,5,30,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-7,0,1015,-5,0,0 +2013,9,26,4,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1315,-5,0,1505,-10,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1020,4,0,1230,-5,0,0 +2013,7,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1621,152,1,1946,138,1,0 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,67,1,1830,66,1,0 +2013,8,2,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,-8,0,2136,-17,0,0 +2013,9,19,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2200,-4,0,30,-15,0,0 +2013,5,5,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-10,0,1105,0,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2250,7,0,14,1,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1910,44,1,2255,45,1,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1051,11,0,1236,29,1,0 +2013,8,23,5,HA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1355,20,1,2205,11,0,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,45,1,2050,38,1,0 +2013,10,17,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1035,13,0,1345,-2,0,0 +2013,4,25,4,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1504,59,1,1750,52,1,0 +2013,9,5,4,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,750,-1,0,915,-4,0,0 +2013,7,10,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,735,-7,0,926,-5,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1605,2,0,1825,-20,0,0 +2013,4,14,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,7,0,1935,-1,0,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,38,1,1759,32,1,0 +2013,6,9,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1052,3,0,0 +2013,10,12,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,5,0,805,-5,0,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,755,7,0,1230,-12,0,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1900,13,0,2203,13,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-7,0,953,-2,0,0 +2013,8,25,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,2013,3,0,2155,3,0,0 +2013,5,23,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1700,24,1,2044,15,1,0 +2013,6,11,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,-2,0,1900,2,0,0 +2013,7,30,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,230,1,1820,218,1,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1130,-16,0,1418,-36,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1959,17,1,2159,24,1,0 +2013,7,30,2,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1325,-7,0,1505,-18,0,0 +2013,7,31,3,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1845,3,0,2013,28,1,0 +2013,5,20,1,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1445,-1,0,1612,1,0,0 +2013,8,8,4,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2000,0,0,2310,9,0,0 +2013,7,15,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,8,0,1338,3,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1234,-3,0,1849,-16,0,0 +2013,9,20,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-2,0,849,-8,0,0 +2013,5,31,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2017,0,0,2118,-15,0,0 +2013,7,4,4,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-4,0,1635,-15,0,0 +2013,10,5,6,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1500,1,0,1700,-27,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,-3,0,2306,-16,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,0,0,1150,33,1,0 +2013,9,11,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1240,0,0,1505,-5,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-7,0,830,-16,0,0 +2013,6,10,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2201,92,1,2258,90,1,0 +2013,5,30,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1249,44,1,1355,34,1,0 +2013,5,5,7,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-3,0,1210,-18,0,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1330,9,0,1550,14,0,0 +2013,8,6,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,535,2,0,636,-3,0,0 +2013,8,25,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,-4,0,2316,-26,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1930,284,1,2200,266,1,0 +2013,5,20,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,1,0,1319,-1,0,0 +2013,7,1,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1216,78,1,1424,86,1,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2034,-2,0,459,-25,0,0 +2013,8,16,5,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-5,0,625,9,0,0 +2013,8,21,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,700,-3,0,815,-5,0,0 +2013,7,20,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1010,-3,0,1150,-9,0,0 +2013,4,4,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-3,0,1747,-2,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1705,2,0,1940,10,0,0 +2013,6,24,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,-3,0,1203,-7,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,650,-11,0,0 +2013,10,19,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-1,0,1701,-9,0,0 +2013,10,16,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,0,0,1642,7,0,0 +2013,9,3,2,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,25,1,1945,14,0,0 +2013,5,20,1,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,825,-2,0,935,-3,0,0 +2013,10,5,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,920,4,0,1235,-4,0,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2241,10,0,635,19,1,0 +2013,7,7,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,0,0,837,-1,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,-3,0,2330,-37,0,0 +2013,8,31,6,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1243,-5,0,1623,-12,0,0 +2013,6,18,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,3,0,1600,0,0,0 +2013,7,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,955,2,0,1600,6,0,0 +2013,7,16,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1802,0,0,2017,-10,0,0 +2013,8,21,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-7,0,1909,-2,0,0 +2013,8,12,1,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,52,1,1645,48,1,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1925,1,0,2340,-3,0,0 +2013,10,7,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1115,1,0,1255,-5,0,0 +2013,8,27,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,24,1,2000,24,1,0 +2013,9,29,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1938,-3,0,2142,-10,0,0 +2013,4,30,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-6,0,1555,3,0,0 +2013,5,26,7,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-8,0,1852,21,1,0 +2013,10,27,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1609,78,1,1700,78,1,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1630,-2,0,1730,-10,0,0 +2013,4,22,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1352,2,0,1617,-12,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-4,0,1748,32,1,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,945,-3,0,1121,-1,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,-6,0,2012,10,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,2010,16,1,2230,10,0,0 +2013,9,30,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,21,1,750,8,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,820,-2,0,959,-21,0,0 +2013,6,27,4,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,840,-5,0,1111,-9,0,0 +2013,4,29,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,855,-2,0,1143,9,0,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1005,-3,0,1158,-4,0,0 +2013,7,1,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-2,0,1616,0,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-1,0,855,-15,0,0 +2013,5,6,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1010,-2,0,1130,1,0,0 +2013,9,12,4,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,805,-4,0,935,-6,0,0 +2013,7,21,7,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,600,17,1,848,26,1,0 +2013,4,15,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2000,-6,0,2325,-14,0,0 +2013,10,15,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-2,0,1610,-3,0,0 +2013,10,19,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,-2,0,1920,7,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1220,37,1,1345,33,1,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1049,-2,0,1220,-19,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,7,0,2212,17,1,0 +2013,5,11,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-8,0,840,12,0,0 +2013,5,12,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,2,0,2135,-10,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1735,-1,0,2047,1,0,0 +2013,9,26,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,740,9,0,900,-6,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1711,33,1,2039,54,1,0 +2013,6,2,7,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-3,0,1005,-8,0,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,-5,0,2346,-15,0,0 +2013,9,5,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-9,0,1108,-14,0,0 +2013,6,12,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,63,1,2017,68,1,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,30,1,2220,24,1,0 +2013,5,18,6,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1910,-2,0,2231,-20,0,0 +2013,9,2,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-3,0,1610,5,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,825,-8,0,915,-3,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-4,0,1317,-16,0,0 +2013,10,8,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2050,-1,0,2225,-14,0,0 +2013,10,16,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-7,0,2123,-13,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,940,-3,0,1045,-14,0,0 +2013,10,15,2,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1232,4,0,2100,-40,0,0 +2013,9,19,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1725,-2,0,1855,-8,0,0 +2013,4,12,5,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1403,-2,0,1522,-4,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,11,0,2357,10,0,0 +2013,5,20,1,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,707,-3,0,1003,-4,0,0 +2013,6,12,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1050,-3,0,1211,-21,0,0 +2013,10,20,7,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,0,0,1634,11,0,0 +2013,7,17,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,-5,0,1605,1,0,0 +2013,7,2,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,22,1,2105,42,1,0 +2013,7,11,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1910,28,1,2030,22,1,0 +2013,6,26,3,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1950,124,1,2233,114,1,0 +2013,8,14,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,12,0,1941,26,1,0 +2013,9,27,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,19,1,2153,12,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-7,0,1305,-33,0,0 +2013,7,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,-3,0,1057,-17,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2102,7,0,2326,2,0,0 +2013,5,30,4,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1850,-5,0,2045,-19,0,0 +2013,9,29,7,OO,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,38,1,1349,31,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,12,0,1912,11,0,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,750,-2,0,1555,-2,0,0 +2013,10,5,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,7,0,920,-14,0,0 +2013,8,29,4,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1230,-5,0,1354,-13,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,555,41,1,715,30,1,0 +2013,6,11,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-9,0,2056,-19,0,0 +2013,8,7,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,5,0,1400,13,0,0 +2013,8,2,5,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1518,2,0,1628,15,1,0 +2013,10,7,1,OO,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1916,-7,0,2032,-9,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,-3,0,912,-9,0,0 +2013,6,11,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,11,0,1615,-2,0,0 +2013,7,28,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,19,1,1820,13,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1750,7,0,1935,-19,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1325,9,0,1550,31,1,0 +2013,4,28,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,803,-9,0,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-4,0,725,-23,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1100,1,0,1450,-10,0,0 +2013,9,14,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1500,3,0,1540,0,0,0 +2013,7,18,4,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,546,-6,0,759,-15,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1720,10,0,1950,0,0,0 +2013,4,24,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,815,-4,0,0 +2013,10,9,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1310,0,0,1439,-6,0,0 +2013,9,27,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1000,11,0,1248,9,0,0 +2013,5,16,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,80,1,1235,84,1,0 +2013,4,3,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-4,0,1023,1,0,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,729,2,0,958,-18,0,0 +2013,6,29,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,185,1,830,168,1,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-4,0,948,7,0,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1900,17,1,2010,12,0,0 +2013,6,23,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,-9,0,1029,-16,0,0 +2013,8,12,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,8,0,1015,5,0,0 +2013,7,24,3,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,32,1,1434,28,1,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1450,2,0,1745,-4,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,49,1,2150,42,1,0 +2013,5,23,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1440,31,1,2220,13,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,825,9,0,1000,-2,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1251,-3,0,1515,-6,0,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1825,-3,0,2003,-12,0,0 +2013,7,14,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,655,-5,0,1010,-27,0,0 +2013,8,24,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1227,-6,0,1405,51,1,0 +2013,9,18,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,230,-11,0,704,-21,0,0 +2013,7,5,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,4,0,1938,-1,0,0 +2013,6,15,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,22,1,2009,14,0,0 +2013,8,16,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,919,-5,0,1131,-20,0,0 +2013,5,11,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2129,1,0,2219,11,0,0 +2013,4,25,4,EV,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-8,0,1601,-19,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-3,0,915,-8,0,0 +2013,8,15,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,0,0,1706,4,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,24,1,2115,27,1,0 +2013,10,11,5,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-3,0,922,-12,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,-1,0,1953,-1,0,0 +2013,9,23,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,1,0,2128,-18,0,0 +2013,9,9,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1030,-2,0,1305,-19,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,940,7,0,1620,-13,0,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,8,0,1510,17,1,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-5,0,1021,1,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1320,1,0,1605,-11,0,0 +2013,8,4,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1550,21,1,1700,15,1,0 +2013,7,8,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,540,-1,0,908,2,0,0 +2013,7,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13232,Chicago Midway International,Chicago,IL,1430,0,0,2030,14,0,0 +2013,10,16,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1725,-1,0,1855,-10,0,0 +2013,7,18,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,10,0,1240,8,0,0 +2013,4,2,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2105,-3,0,2115,-6,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1815,-1,0,1945,-16,0,0 +2013,8,13,2,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1800,0,0,2005,-1,0,0 +2013,9,2,1,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,705,-4,0,915,-14,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-5,0,1029,-11,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1035,-4,0,1240,-8,0,0 +2013,8,5,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1342,17,1,1715,0,0,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1110,-2,0,1430,-2,0,0 +2013,8,26,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,10,0,1415,-1,0,0 +2013,6,25,2,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1931,84,1,2320,77,1,0 +2013,9,1,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1559,0,0,2108,4,0,0 +2013,10,29,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,2,0,2125,-8,0,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1610,7,0,0 +2013,7,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1923,14,0,2020,4,0,0 +2013,4,13,6,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2250,6,0,730,4,0,0 +2013,4,30,2,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,615,-5,0,911,-1,0,0 +2013,4,25,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,847,-1,0,1050,3,0,0 +2013,5,18,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1145,-3,0,1450,-3,0,0 +2013,8,20,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,650,-3,0,1005,-4,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2155,35,1,2310,46,1,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,3,0,1059,10,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1350,1,0,1435,1,0,0 +2013,10,8,2,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-6,0,736,-22,0,0 +2013,9,29,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1117,-8,0,1231,-2,0,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,900,-3,0,950,11,0,0 +2013,5,16,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1735,18,1,1855,25,1,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,950,-1,0,1230,-2,0,0 +2013,8,24,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-8,0,819,-12,0,0 +2013,8,15,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1830,53,1,2015,48,1,0 +2013,8,22,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,752,-13,0,0 +2013,10,21,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1555,-5,0,1939,-30,0,0 +2013,9,9,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2140,1,0,555,-24,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1750,-6,0,2045,-22,0,0 +2013,7,24,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1055,2,0,1257,-10,0,0 +2013,9,16,1,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,650,18,1,1043,9,0,0 +2013,4,13,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1440,3,0,2220,-9,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,805,-4,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,141,1,2335,127,1,0 +2013,8,28,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,621,-1,0,930,-27,0,0 +2013,5,7,2,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,620,2,0,940,-9,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1720,-5,0,1844,-1,0,0 +2013,7,23,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1232,35,1,1444,90,1,0 +2013,6,11,2,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1230,-3,0,1525,-5,0,0 +2013,6,30,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,730,-4,0,1031,-14,0,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,15,1,2206,13,0,0 +2013,9,27,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,737,33,1,922,13,0,0 +2013,6,12,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1720,39,1,1945,8,0,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1021,21,1,1135,19,1,0 +2013,9,10,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,833,-7,0,940,-16,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-2,0,953,-5,0,0 +2013,7,18,4,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,819,-4,0,930,2,0,0 +2013,5,17,5,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1204,114,1,1704,89,1,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1300,14,0,1647,-4,0,0 +2013,9,25,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,925,2,0,1450,-14,0,0 +2013,6,18,2,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,810,-6,0,1025,27,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1917,6,0,2053,-5,0,0 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,750,0,0,1040,-5,0,0 +2013,4,7,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1757,-3,0,2100,-17,0,0 +2013,4,10,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,484,1,1015,479,1,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,-5,0,1225,-12,0,0 +2013,5,28,2,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-5,0,1045,-3,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1614,9,0,1737,3,0,0 +2013,10,18,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1619,-3,0,1750,-5,0,0 +2013,10,19,6,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-4,0,1300,-8,0,0 +2013,4,18,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,56,1,1105,89,1,0 +2013,7,5,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1800,29,1,2000,8,0,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,-8,0,1439,25,1,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1805,106,1,1900,170,1,0 +2013,4,1,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1905,-7,0,2225,-19,0,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2210,218,1,2300,209,1,0 +2013,4,9,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,924,-1,0,1053,-3,0,0 +2013,7,19,5,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,4,0,2350,8,0,0 +2013,7,3,3,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2000,84,1,2310,55,1,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1430,-4,0,1602,-21,0,0 +2013,5,8,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1235,-5,0,1526,7,0,0 +2013,9,22,7,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1254,-3,0,1529,-22,0,0 +2013,7,24,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,8,0,1900,2,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,909,4,0,1155,-13,0,0 +2013,5,19,7,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1911,-1,0,2123,-13,0,0 +2013,10,21,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1910,31,1,2040,16,1,0 +2013,10,9,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,0,0,1545,-5,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1203,-1,0,1440,-10,0,0 +2013,4,19,5,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,25,1,722,21,1,0 +2013,5,10,5,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1141,-7,0,1259,-17,0,0 +2013,8,19,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2157,-1,0,2250,-9,0,0 +2013,7,8,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,1,0,1655,-4,0,0 +2013,7,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1702,-1,0,2242,7,0,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1945,3,0,2035,-1,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,726,-5,0,913,-19,0,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,52,1,1248,28,1,0 +2013,6,25,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,831,-2,0,1459,1,0,0 +2013,4,9,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,-5,0,2000,-32,0,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,0,0,804,-5,0,0 +2013,4,26,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1235,-4,0,1515,-4,0,0 +2013,8,12,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1415,3,0,1505,-4,0,0 +2013,7,13,6,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1941,134,1,2258,118,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,625,-3,0,750,-6,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1135,0,0,1328,17,1,0 +2013,9,25,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1355,15,1,1905,-7,0,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1225,4,0,1334,-3,0,0 +2013,6,5,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1716,0,0,1856,-8,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,40,1,2215,35,1,0 +2013,8,24,6,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1400,19,1,1525,16,1,0 +2013,4,10,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1320,83,1,1615,92,1,0 +2013,6,2,7,YV,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-5,0,1901,-9,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,745,-4,0,930,-1,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2114,12,0,2320,9,0,0 +2013,10,20,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,3,0,1605,8,0,0 +2013,4,18,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,949,33,1,1209,35,1,0 +2013,7,2,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1055,5,0,1150,3,0,0 +2013,6,8,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1325,4,0,1410,-10,0,0 +2013,5,22,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,845,-10,0,1047,-10,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1028,-4,0,1138,-12,0,0 +2013,9,5,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,-2,0,1850,-11,0,0 +2013,5,23,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,610,-3,0,705,-2,0,0 +2013,6,20,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1443,1,0,1645,-6,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,-8,0,609,-7,0,0 +2013,8,1,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,36,1,1216,35,1,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1000,26,1,1134,25,1,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,840,-1,0,1030,5,0,0 +2013,4,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,340,0,0,646,8,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,-2,0,2115,-10,0,0 +2013,4,28,7,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1425,17,1,1720,8,0,0 +2013,9,18,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,5,0,1625,0,0,0 +2013,4,22,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,946,-2,0,1039,-9,0,0 +2013,4,30,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2126,88,1,2239,68,1,0 +2013,7,12,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,900,-5,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1721,18,1,1929,10,0,0 +2013,5,30,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-4,0,1559,7,0,0 +2013,7,15,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-3,0,1820,-5,0,0 +2013,7,1,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-7,0,930,-11,0,0 +2013,4,27,6,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-14,0,520,-17,0,0 +2013,10,25,5,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1734,-1,0,2020,6,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1410,5,0,1550,-3,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1920,-2,0,2015,-16,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,736,-2,0,919,9,0,0 +2013,10,20,7,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-8,0,1844,-15,0,0 +2013,10,12,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-3,0,2215,4,0,0 +2013,10,26,6,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,738,-9,0,835,-25,0,0 +2013,10,31,4,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,605,-5,0,700,-7,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1955,27,1,2215,32,1,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1212,-6,0,1413,-15,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1105,5,0,1325,-13,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-4,0,1237,-14,0,0 +2013,5,5,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,-6,0,1806,-15,0,0 +2013,5,23,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1451,89,1,1828,80,1,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1608,11,0,1839,37,1,0 +2013,9,13,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1405,-1,0,1530,4,0,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1632,7,0,1956,21,1,0 +2013,8,18,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2005,-4,0,2228,-13,0,0 +2013,8,28,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,600,342,1,1310,355,1,0 +2013,5,9,4,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,7,0,2140,1,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1035,90,1,1510,90,1,0 +2013,5,9,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,620,-8,0,723,-18,0,0 +2013,6,15,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,625,0,0,745,-5,0,0 +2013,8,6,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1444,26,1,1709,11,0,0 +2013,10,21,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1333,-6,0,1412,-7,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2250,-3,0,2314,-9,0,0 +2013,6,19,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,0,0,1155,-12,0,0 +2013,5,13,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,715,0,0,830,-7,0,0 +2013,6,21,5,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,-8,0,1914,-13,0,0 +2013,9,5,4,9E,12953,LaGuardia,New York,NY,12451,Jacksonville International,Jacksonville,FL,745,-6,0,1024,-42,0,0 +2013,6,30,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,750,-2,0,935,-22,0,0 +2013,4,6,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,1436,-7,0,0 +2013,9,29,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1140,1,0,1250,-6,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,-1,0,1540,-9,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,820,0,0,958,-8,0,0 +2013,5,23,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,726,158,1,920,185,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,-3,0,1611,-14,0,0 +2013,5,21,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,116,1,1938,121,1,0 +2013,10,24,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1235,0,0,1320,-4,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,-2,0,1628,5,0,0 +2013,9,5,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1655,-4,0,1735,-13,0,0 +2013,8,4,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1600,-4,0,1750,-25,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1720,156,1,1830,146,1,0 +2013,10,29,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1200,33,1,1420,25,1,0 +2013,4,8,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-4,0,1812,-20,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,62,1,2250,64,1,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1650,-5,0,1715,-13,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,17,1,2359,14,0,0 +2013,5,3,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-3,0,853,-11,0,0 +2013,8,30,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,815,-15,0,0 +2013,10,2,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1110,16,1,1204,14,0,0 +2013,10,17,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-2,0,1115,-6,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,35,1,1945,32,1,0 +2013,5,19,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,1,0,1931,-7,0,0 +2013,8,22,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1529,97,1,1810,93,1,0 +2013,9,14,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-6,0,705,-13,0,0 +2013,5,13,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1551,-2,0,1659,2,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1040,-2,0,1250,-11,0,0 +2013,5,1,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-5,0,2015,-41,0,0 +2013,10,1,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-3,0,1645,-8,0,0 +2013,7,20,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,-14,0,1500,-9,0,0 +2013,8,6,2,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2235,1,0,721,-32,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1310,-13,0,1600,-15,0,0 +2013,9,23,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,106,1,1728,96,1,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,805,0,0,1030,-1,0,0 +2013,5,21,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1950,-3,0,2243,-2,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,22,1,1949,-1,0,0 +2013,5,26,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2000,0,0,2130,-3,0,0 +2013,4,9,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1222,-1,0,1419,-11,0,0 +2013,8,17,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-9,0,759,-16,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,51,1,1440,29,1,0 +2013,9,27,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1459,-4,0,1804,-7,0,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,855,1,0,1005,3,0,0 +2013,7,5,5,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-10,0,1454,-28,0,0 +2013,8,7,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1705,37,1,1950,28,1,0 +2013,8,9,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,0,0,1620,-9,0,0 +2013,6,21,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1651,-7,0,2056,-10,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1955,30,1,2330,29,1,0 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1727,-5,0,1824,-20,0,0 +2013,4,25,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,821,-1,0,929,-11,0,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,910,-2,0,1015,-6,0,0 +2013,4,20,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-6,0,1635,-37,0,0 +2013,8,13,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2033,2,0,2211,17,1,0 +2013,10,6,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1617,-6,0,1748,-3,0,0 +2013,6,10,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,73,1,1830,48,1,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2026,-2,0,2205,-10,0,0 +2013,8,9,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,931,-18,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1145,-7,0,1425,-6,0,0 +2013,5,29,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1624,36,1,1823,37,1,0 +2013,10,25,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-1,0,1015,-7,0,0 +2013,9,30,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1940,-12,0,2120,-37,0,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1635,1,0,1902,1,0,0 +2013,10,22,2,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1145,387,1,1356,381,1,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,2,0,1320,2,0,0 +2013,4,10,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1635,14,0,1755,6,0,0 +2013,4,17,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-9,0,1509,-6,0,0 +2013,9,20,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1945,20,1,2235,23,1,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1030,-2,0,1133,-6,0,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,-4,0,1713,-7,0,0 +2013,8,17,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-7,0,1245,-26,0,0 +2013,10,14,1,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1255,29,1,1455,22,1,0 +2013,8,19,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1825,10,0,1910,1,0,0 +2013,4,10,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-6,0,1032,-15,0,0 +2013,10,1,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1040,-5,0,1202,-19,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,950,-3,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1405,14,0,1810,0,0,0 +2013,10,8,2,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,825,-2,0,935,-6,0,0 +2013,9,9,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,2,0,1625,5,0,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-7,0,846,-10,0,0 +2013,5,3,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1705,-8,0,2055,0,0,0 +2013,9,5,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1725,20,1,1845,11,0,0 +2013,9,6,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1650,-5,0,1922,-2,0,0 +2013,10,1,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-1,0,1845,-17,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,57,1,2005,41,1,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,15,1,1519,7,0,0 +2013,8,9,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,0,0,1034,-12,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-3,0,847,-3,0,0 +2013,10,13,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,700,-6,0,1447,-32,0,0 +2013,4,3,3,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1835,-3,0,2000,-10,0,0 +2013,8,22,4,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1740,12,0,2045,4,0,0 +2013,7,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,642,0,,725,0,1,1 +2013,7,27,6,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1702,-7,0,1924,-2,0,0 +2013,4,15,1,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,705,0,0,934,-11,0,0 +2013,5,30,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1530,-2,0,1647,0,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1345,23,1,1500,17,1,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-3,0,1108,-6,0,0 +2013,9,24,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,-2,0,1758,-19,0,0 +2013,7,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,149,1,1545,158,1,0 +2013,6,10,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1325,9,0,1450,12,0,0 +2013,8,25,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,0,0,1135,-5,0,0 +2013,10,20,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1055,-9,0,1126,-17,0,0 +2013,10,2,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1205,-5,0,1325,-10,0,0 +2013,6,30,7,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1037,1,0,1341,-10,0,0 +2013,8,7,3,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,-5,0,600,-12,0,0 +2013,4,23,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,700,-1,0,735,-6,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1310,13,0,2149,2,0,0 +2013,10,17,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1715,-4,0,1905,-20,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,830,16,1,1045,22,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2150,-2,0,2319,-11,0,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2157,-5,0,2226,-4,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,927,1,0,1814,-8,0,0 +2013,10,10,4,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1956,-6,0,2143,15,1,0 +2013,7,14,7,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,20,1,830,1,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1105,0,0,1224,3,0,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1310,10,0,1435,-25,0,0 +2013,4,16,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,634,-6,0,920,3,0,0 +2013,4,25,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-1,0,1147,-11,0,0 +2013,10,8,2,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,810,-5,0,0 +2013,6,12,3,FL,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,900,-6,0,1040,3,0,0 +2013,6,27,4,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1435,8,0,1655,14,0,0 +2013,5,2,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1655,76,1,1820,59,1,0 +2013,9,5,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,2,0,847,-12,0,0 +2013,6,12,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,838,-7,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1725,0,0,2155,5,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,-2,0,915,-5,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,9,0,2004,9,0,0 +2013,8,6,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1755,2,0,2120,-11,0,0 +2013,10,17,4,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,-5,0,1341,-8,0,0 +2013,10,11,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-5,0,1205,-3,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1455,-5,0,1738,-6,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1035,13,0,1300,13,0,0 +2013,7,19,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,-2,0,1330,-1,0,0 +2013,6,4,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1345,209,1,1505,211,1,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,0,0,1425,13,0,0 +2013,5,26,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-7,0,945,-6,0,0 +2013,9,15,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1526,22,1,1713,13,0,0 +2013,6,17,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,-6,0,2133,-15,0,0 +2013,6,27,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-3,0,2149,-9,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,808,-2,0,1341,-2,0,0 +2013,4,1,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,0,0,1615,-6,0,0 +2013,8,25,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1713,-12,0,2023,-11,0,0 +2013,4,10,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,198,1,1850,233,1,0 +2013,8,6,2,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-14,0,1050,-24,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-10,0,2309,-23,0,0 +2013,6,23,7,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-1,0,1955,-18,0,0 +2013,8,24,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,-4,0,1615,-15,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,0,0,1615,-4,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,118,1,2117,100,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1011,-9,0,1150,-9,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,845,-3,0,1000,-16,0,0 +2013,5,3,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-5,0,1120,-14,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-1,0,2125,-9,0,0 +2013,4,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,2046,66,1,2220,66,1,0 +2013,10,24,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1120,-36,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1350,2,0,1353,-9,0,0 +2013,4,10,3,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2115,-4,0,2220,-9,0,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,0,0,2025,9,0,0 +2013,10,25,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2216,-3,0,2359,-24,0,0 +2013,8,25,7,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-12,0,1856,-19,0,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,845,9,0,1040,25,1,0 +2013,6,3,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,-6,0,1916,-13,0,0 +2013,4,1,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1005,-3,0,1125,-6,0,0 +2013,9,8,7,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-4,0,1922,-13,0,0 +2013,8,3,6,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1402,32,1,1809,64,1,0 +2013,9,21,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2035,-1,0,2207,4,0,0 +2013,9,8,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,640,-4,0,915,-19,0,0 +2013,7,12,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1106,11,0,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1220,11,0,1530,13,0,0 +2013,9,7,6,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1106,-3,0,1110,-12,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,13,0,129,10,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1802,31,1,2058,70,1,0 +2013,8,11,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1210,-1,0,1500,-9,0,0 +2013,4,1,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-9,0,1740,-12,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1005,-2,0,1159,4,0,0 +2013,8,8,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1448,5,0,1717,2,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,-5,0,2130,3,0,0 +2013,5,6,1,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,740,-2,0,1000,20,1,0 +2013,7,3,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,-5,0,1641,-7,0,0 +2013,5,1,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,732,1,0,0 +2013,6,10,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1825,14,0,2055,65,1,0 +2013,5,14,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1117,24,1,1302,5,0,0 +2013,7,13,6,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,730,-5,0,1110,-8,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,0,0,1449,1,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,845,-1,0,1602,-21,0,0 +2013,5,10,5,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,1642,-6,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,9,0,1110,4,0,0 +2013,7,8,1,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,845,25,1,955,32,1,0 +2013,6,22,6,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1325,-3,0,1605,-17,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,32,1,1240,30,1,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1005,6,0,1210,-6,0,0 +2013,5,4,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,30,1,1353,14,0,0 +2013,7,23,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1745,72,1,2030,84,1,0 +2013,9,7,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,829,4,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1530,160,1,1556,160,1,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2054,51,1,2359,30,1,0 +2013,8,18,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,80,1,1835,80,1,0 +2013,5,1,3,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2130,-2,0,512,-2,0,0 +2013,10,7,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1125,1,0,1225,16,1,0 +2013,4,18,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-6,0,1719,-19,0,0 +2013,7,16,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,615,-13,0,0 +2013,5,22,3,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1131,49,1,1609,52,1,0 +2013,4,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1345,62,1,1647,55,1,0 +2013,6,6,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,1355,59,1,1519,54,1,0 +2013,8,18,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1409,-2,0,1505,-8,0,0 +2013,5,15,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1245,-4,0,2042,-12,0,0 +2013,7,28,7,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1455,-10,0,1625,-10,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1955,10,0,2110,3,0,0 +2013,8,20,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-5,0,1623,-4,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1610,22,1,2025,-3,0,0 +2013,5,16,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1455,1,0,1610,-3,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,905,-1,0,1124,-2,0,0 +2013,4,8,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-10,0,821,-17,0,0 +2013,8,4,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-3,0,1631,-20,0,0 +2013,5,20,1,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,22,1,1910,12,0,0 +2013,7,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2020,-6,0,2115,2,0,0 +2013,9,22,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-2,0,1930,-12,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2020,33,1,2235,19,1,0 +2013,9,18,3,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-6,0,1005,-9,0,0 +2013,7,29,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1811,7,0,2000,9,0,0 +2013,6,19,3,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1845,74,1,2140,50,1,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1055,22,1,1342,18,1,0 +2013,4,23,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-7,0,1019,0,0,0 +2013,4,30,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,5,0,1755,12,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-4,0,2120,-10,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1305,14,0,1445,29,1,0 +2013,5,31,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,847,1,0,1023,10,0,0 +2013,9,7,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-10,0,1111,-11,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2120,-1,0,2230,-12,0,0 +2013,7,2,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-8,0,1614,-5,0,0 +2013,4,26,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,17,1,1800,15,1,0 +2013,10,18,5,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1345,-4,0,1633,19,1,0 +2013,5,24,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,845,-3,0,1015,-17,0,0 +2013,6,28,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,176,1,2305,172,1,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1130,-1,0,1440,-13,0,0 +2013,5,19,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,929,-10,0,1043,-21,0,0 +2013,5,31,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1915,-10,0,2035,-14,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,939,-5,0,1132,0,0,0 +2013,5,12,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1030,-6,0,1240,-16,0,0 +2013,9,30,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-8,0,1757,-4,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,11,0,1624,19,1,0 +2013,8,23,5,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2107,0,,2328,0,1,1 +2013,9,5,4,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1649,-6,0,1814,-18,0,0 +2013,4,11,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,755,-4,0,920,-13,0,0 +2013,9,12,4,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,751,12,0,920,7,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-3,0,1643,-5,0,0 +2013,4,5,5,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,830,-4,0,1005,-6,0,0 +2013,9,13,5,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,33,1,1910,26,1,0 +2013,7,27,6,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,920,4,0,1040,128,1,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2220,-4,0,26,-19,0,0 +2013,4,23,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-5,0,855,-16,0,0 +2013,7,31,3,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,940,-4,0,1212,-23,0,0 +2013,6,27,4,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,11,0,705,0,0,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1735,9,0,2205,22,1,0 +2013,9,30,1,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1314,-11,0,0 +2013,6,17,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,847,46,1,1015,38,1,0 +2013,4,13,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,4,0,1315,-12,0,0 +2013,10,14,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,740,0,0,855,1,0,0 +2013,9,11,3,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,-5,0,2140,-20,0,0 +2013,8,15,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,12,0,1902,-1,0,0 +2013,4,23,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,-1,0,755,-8,0,0 +2013,8,25,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1709,65,1,1756,67,1,0 +2013,10,21,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-4,0,1230,-2,0,0 +2013,4,18,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1145,79,1,1245,71,1,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1202,-2,0,1405,-28,0,0 +2013,5,29,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,-1,0,1230,-1,0,0 +2013,8,8,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,8,0,1750,9,0,0 +2013,9,6,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1555,-5,0,1805,-22,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,-1,0,1730,-6,0,0 +2013,4,15,1,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1530,8,0,1740,0,0,0 +2013,5,15,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,2006,-1,0,0 +2013,7,2,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1132,-1,0,1420,-17,0,0 +2013,10,12,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,-11,0,538,-25,0,0 +2013,10,31,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-10,0,2205,-19,0,0 +2013,8,15,4,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1223,1,0,1422,1,0,0 +2013,8,30,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1240,1,0,1420,-5,0,0 +2013,6,17,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,921,-3,0,1230,-17,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,1,0,1050,-27,0,0 +2013,6,21,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-14,0,2151,-12,0,0 +2013,10,23,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1600,2,0,1905,5,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1915,-3,0,2154,-16,0,0 +2013,6,5,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-9,0,1119,-19,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1920,-4,0,2205,-11,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1548,2,0,2029,-13,0,0 +2013,7,9,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1227,12,0,2025,6,0,0 +2013,7,26,5,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,830,-5,0,1422,5,0,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,2,0,1845,-7,0,0 +2013,8,6,2,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1425,81,1,1556,72,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2057,0,0,2133,-11,0,0 +2013,4,15,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,216,1,1305,203,1,0 +2013,6,3,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1800,38,1,1938,23,1,0 +2013,6,24,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,40,1,1229,47,1,0 +2013,8,19,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,11,0,2045,3,0,0 +2013,8,10,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1235,-9,0,1433,-16,0,0 +2013,4,4,4,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,4,0,1815,50,1,0 +2013,9,6,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,2020,-10,0,0 +2013,9,17,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,14,0,1420,9,0,0 +2013,9,15,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,14,0,1015,3,0,0 +2013,7,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1115,-4,0,1132,-7,0,0 +2013,8,22,4,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,3,0,1440,-4,0,0 +2013,6,10,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2012,-5,0,2142,-12,0,0 +2013,9,22,7,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1740,0,0,1958,23,1,0 +2013,7,31,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,600,0,0,920,1,0,0 +2013,7,12,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1627,34,1,2032,29,1,0 +2013,6,22,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1130,22,1,1400,29,1,0 +2013,7,31,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,34,1,2154,45,1,0 +2013,7,5,5,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,37,1,1809,30,1,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1540,15,1,1800,-3,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,2,0,1855,9,0,0 +2013,10,18,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1954,8,0,2057,17,1,0 +2013,7,20,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1829,93,1,2004,95,1,0 +2013,8,11,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1723,-3,0,1956,-9,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1020,5,0,1730,0,0,0 +2013,9,4,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1401,39,1,1640,40,1,0 +2013,6,16,7,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1745,134,1,1910,137,1,0 +2013,8,25,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1419,-15,0,1520,-36,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1450,8,0,1600,1,0,0 +2013,8,14,3,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,631,-9,0,808,-26,0,0 +2013,8,2,5,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,13,0,2316,15,1,0 +2013,4,4,4,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,600,84,1,815,77,1,0 +2013,4,12,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1100,-1,0,1245,-18,0,0 +2013,8,21,3,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1000,-11,0,1225,-6,0,0 +2013,4,3,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2105,-10,0,2226,-12,0,0 +2013,10,25,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1120,-1,0,1259,-5,0,0 +2013,5,5,7,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,840,-7,0,956,-5,0,0 +2013,6,29,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1550,22,1,1715,23,1,0 +2013,6,24,1,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-8,0,909,-17,0,0 +2013,8,7,3,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1336,31,1,1711,58,1,0 +2013,10,22,2,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1834,-12,0,2132,-46,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1410,7,0,1615,-4,0,0 +2013,10,16,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,-6,0,2105,7,0,0 +2013,7,23,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,1,0,1625,-4,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2000,3,0,2215,6,0,0 +2013,7,21,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2140,-9,0,2231,10,0,0 +2013,9,14,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1928,-9,0,2040,-18,0,0 +2013,5,15,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,8,0,1523,1,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1840,18,1,2110,15,1,0 +2013,4,16,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,54,1,1345,53,1,0 +2013,9,15,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1330,-4,0,1452,-3,0,0 +2013,8,19,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1230,-1,0,2110,-7,0,0 +2013,7,2,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2325,0,0,500,-2,0,0 +2013,4,23,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1020,-10,0,1241,-15,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,31,1,1833,27,1,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2100,9,0,2340,3,0,0 +2013,10,4,5,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1750,31,1,2040,25,1,0 +2013,8,13,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,30,1,1810,24,1,0 +2013,4,30,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,853,-7,0,1025,-1,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1255,2,0,1410,0,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1220,9,0,1705,6,0,0 +2013,9,20,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1110,14,0,1255,12,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,65,1,28,68,1,0 +2013,5,2,4,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,618,34,1,752,8,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1615,8,0,1820,12,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,18,1,1634,30,1,0 +2013,8,12,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,515,-3,0,635,-13,0,0 +2013,5,10,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1010,-5,0,1349,-9,0,0 +2013,4,11,4,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1500,5,0,1810,-5,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,605,7,0,846,1,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,-4,0,1158,-17,0,0 +2013,5,4,6,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1120,16,1,1930,20,1,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,603,-2,0,740,-9,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,4,0,15,-25,0,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,1,0,1230,16,1,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2045,-5,0,2101,-18,0,0 +2013,5,15,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,41,1,1255,39,1,0 +2013,7,17,3,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1515,3,0,1845,12,0,0 +2013,10,13,7,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,700,0,0,755,-13,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,3,0,1710,7,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,69,1,2127,53,1,0 +2013,7,5,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,902,7,0,1116,-10,0,0 +2013,5,27,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1407,6,0,1815,4,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,929,-3,0,1053,0,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,-1,0,2040,-13,0,0 +2013,4,10,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,-5,0,937,-13,0,0 +2013,4,3,3,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1950,-1,0,2100,-8,0,0 +2013,6,2,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1645,3,0,1750,-1,0,0 +2013,7,2,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,51,1,1445,43,1,0 +2013,6,30,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1835,-3,0,1955,-10,0,0 +2013,4,19,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-4,0,1335,-16,0,0 +2013,6,26,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1807,243,1,1938,236,1,0 +2013,4,29,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1144,0,0,1334,-5,0,0 +2013,4,11,4,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,2012,-4,0,2118,-5,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,5,0,1024,3,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2206,19,1,2343,25,1,0 +2013,6,14,5,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1726,-3,0,1936,3,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1006,-10,0,1229,-6,0,0 +2013,10,1,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1640,15,1,1756,8,0,0 +2013,4,17,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-10,0,1010,-22,0,0 +2013,10,7,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,840,-2,0,952,4,0,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,941,43,1,1043,30,1,0 +2013,6,16,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,810,-2,0,1005,-2,0,0 +2013,5,29,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,0,0,750,-2,0,0 +2013,5,20,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1106,5,0,1211,10,0,0 +2013,4,25,4,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,1255,-14,0,0 +2013,9,19,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1615,-10,0,2007,-11,0,0 +2013,10,2,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,38,1,2105,31,1,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1843,14,0,2031,-2,0,0 +2013,4,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1355,49,1,1520,38,1,0 +2013,5,17,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-14,0,2215,-7,0,0 +2013,10,30,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,-1,0,910,-8,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,86,1,2200,70,1,0 +2013,5,27,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1455,-4,0,1610,-16,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2210,21,1,2321,-2,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1457,9,0,1654,0,0,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1840,-5,0,123,-20,0,0 +2013,6,26,3,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,828,210,1,1128,204,1,0 +2013,7,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,-2,0,1524,-2,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1430,13,0,1602,18,1,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1430,-5,0,1611,-19,0,0 +2013,9,2,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-8,0,1010,-3,0,0 +2013,4,16,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1640,46,1,1800,42,1,0 +2013,7,30,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1244,-3,0,1356,-7,0,0 +2013,9,15,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,835,0,0,1015,-18,0,0 +2013,9,20,5,EV,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,825,104,1,950,90,1,0 +2013,8,8,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1534,7,0,1700,8,0,0 +2013,5,25,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1948,-6,0,2146,-1,0,0 +2013,9,2,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1832,59,1,1940,56,1,0 +2013,8,7,3,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-4,0,835,2,0,0 +2013,4,27,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,725,0,0,1005,-7,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,-3,0,1058,17,1,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2036,-5,0,2142,-3,0,0 +2013,8,2,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,7,0,800,-4,0,0 +2013,8,30,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1550,10,0,1850,0,0,0 +2013,7,8,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-2,0,850,-5,0,0 +2013,4,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,-9,0,947,-17,0,0 +2013,10,20,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-10,0,1755,-10,0,0 +2013,10,5,6,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1359,73,1,1535,64,1,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,740,0,0,920,-10,0,0 +2013,8,5,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,800,66,1,900,64,1,0 +2013,8,31,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2128,33,1,21,20,1,0 +2013,8,13,2,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,1255,-3,0,0 +2013,10,27,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2025,18,1,2045,17,1,0 +2013,7,11,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,92,1,1735,97,1,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,900,23,1,1428,6,0,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1205,14,0,1400,8,0,0 +2013,7,29,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1025,-8,0,1301,-6,0,0 +2013,7,30,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,19,1,2035,23,1,0 +2013,8,11,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,21,1,1700,32,1,0 +2013,4,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1803,61,1,2017,67,1,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2225,0,,2305,0,1,1 +2013,4,20,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,2,0,707,-12,0,0 +2013,6,25,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1530,7,0,1620,2,0,0 +2013,5,6,1,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1825,0,0,2145,-9,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,-4,0,1550,-19,0,0 +2013,10,25,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,13,0,1316,21,1,0 +2013,7,19,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,89,1,2046,85,1,0 +2013,6,22,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1007,-4,0,1412,-29,0,0 +2013,7,14,7,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-9,0,1116,-15,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1555,-13,0,0 +2013,4,5,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,605,-10,0,752,-23,0,0 +2013,4,7,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,1256,-13,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,810,-5,0,1017,-20,0,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,-6,0,2329,-21,0,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1645,15,1,1915,7,0,0 +2013,10,15,2,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,840,-2,0,1050,5,0,0 +2013,8,5,1,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1935,-3,0,2255,-15,0,0 +2013,10,7,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,550,-7,0,858,-10,0,0 +2013,8,13,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,845,-4,0,1257,8,0,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1424,0,0,2254,-18,0,0 +2013,7,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2021,-5,0,2151,-1,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,-3,0,1736,11,0,0 +2013,5,2,4,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1215,24,1,1355,7,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1050,-1,0,1325,24,1,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1725,9,0,1910,-15,0,0 +2013,5,24,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1445,-4,0,1718,-3,0,0 +2013,10,24,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1133,3,0,1309,-7,0,0 +2013,5,7,2,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1550,-6,0,1722,-7,0,0 +2013,4,24,3,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,650,-5,0,908,-8,0,0 +2013,9,10,2,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1010,-4,0,1121,13,0,0 +2013,8,31,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1000,-1,0,1050,-9,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1119,-3,0,1239,-12,0,0 +2013,4,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-3,0,1256,13,0,0 +2013,4,18,4,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1955,42,1,2125,28,1,0 +2013,5,1,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,138,1,33,142,1,0 +2013,7,3,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-4,0,1817,6,0,0 +2013,5,15,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1450,9,0,2250,17,1,0 +2013,6,29,6,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,910,0,0,1125,-3,0,0 +2013,10,23,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,2,0,947,-7,0,0 +2013,7,21,7,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1125,46,1,1429,41,1,0 +2013,7,25,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,958,-9,0,1041,-4,0,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,12,0,2025,-5,0,0 +2013,7,2,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-3,0,1124,-9,0,0 +2013,8,29,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,-3,0,10,0,0,0 +2013,10,7,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,21,1,1930,10,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1252,-3,0,1425,-4,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,-2,0,2030,-18,0,0 +2013,9,21,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1249,48,1,1422,44,1,0 +2013,5,27,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,0,0,1910,-23,0,0 +2013,7,28,7,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,2005,151,1,2127,140,1,0 +2013,10,21,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1534,-3,0,1745,-13,0,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1055,3,0,1325,-25,0,0 +2013,7,24,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-6,0,720,-13,0,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-4,0,925,-11,0,0 +2013,9,28,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-4,0,815,4,0,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,3,0,1935,-3,0,0 +2013,5,29,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,0,0,825,3,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,0,0,1641,-5,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,-2,0,1000,-13,0,0 +2013,5,22,3,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,1,0,1653,-23,0,0 +2013,6,14,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1410,75,1,1545,41,1,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-2,0,1227,3,0,0 +2013,10,2,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,950,86,1,1119,75,1,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1310,23,1,1640,9,0,0 +2013,10,19,6,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,-6,0,1955,-6,0,0 +2013,10,25,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1745,0,0,1845,3,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,700,-4,0,805,-9,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,939,-1,0,1755,1,0,0 +2013,8,31,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,0,0,955,-6,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1030,22,1,1150,13,0,0 +2013,4,30,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1715,25,1,2045,-8,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1200,89,1,1323,100,1,0 +2013,6,1,6,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1245,0,0,1543,-16,0,0 +2013,4,25,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,24,1,1825,56,1,0 +2013,4,7,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1410,1,0,1722,-11,0,0 +2013,5,25,6,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,1,0,1016,58,1,0 +2013,7,5,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,940,-1,0,1050,-4,0,0 +2013,6,24,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,610,0,0,615,-4,0,0 +2013,5,21,2,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,807,17,1,921,7,0,0 +2013,9,15,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-3,0,920,-1,0,0 +2013,4,13,6,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1235,17,1,1400,7,0,0 +2013,6,19,3,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1045,-3,0,1155,-9,0,0 +2013,8,10,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,0,0,2302,-10,0,0 +2013,4,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1610,68,1,2005,75,1,0 +2013,6,28,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1835,88,1,1955,66,1,0 +2013,6,25,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,725,-7,0,947,-13,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,805,-10,0,930,-24,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,5,0,2010,0,0,0 +2013,9,24,2,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2207,-6,0,2256,-5,0,0 +2013,9,17,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,740,-4,0,859,4,0,0 +2013,5,6,1,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1820,11,0,2055,1,0,0 +2013,6,24,1,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1659,-10,0,1836,-2,0,0 +2013,4,4,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,203,1,2204,192,1,0 +2013,6,8,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1850,14,0,2015,9,0,0 +2013,5,9,4,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1505,-2,0,2350,-12,0,0 +2013,10,15,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,-6,0,1914,-7,0,0 +2013,4,30,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2025,-9,0,2115,-20,0,0 +2013,7,21,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,759,-8,0,858,-14,0,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1823,39,1,2359,22,1,0 +2013,10,26,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1250,4,0,1536,4,0,0 +2013,6,18,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,-6,0,1905,-6,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1120,11,0,1435,-4,0,0 +2013,10,22,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1056,-2,0,0 +2013,7,22,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-2,0,1810,26,1,0 +2013,6,30,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1415,1,0,2020,10,0,0 +2013,6,14,5,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1117,-7,0,1440,7,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,10,0,2305,-7,0,0 +2013,10,24,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-1,0,1750,-7,0,0 +2013,7,28,7,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1010,27,1,1250,10,0,0 +2013,10,18,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1230,1,0,1744,-22,0,0 +2013,9,11,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1400,-13,0,1930,-8,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1450,-9,0,1746,-22,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1333,37,1,1809,30,1,0 +2013,4,9,2,WN,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1500,-4,0,1810,-16,0,0 +2013,10,1,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2015,-6,0,2135,-8,0,0 +2013,10,5,6,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-4,0,1945,-23,0,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1700,-3,0,2215,-12,0,0 +2013,8,18,7,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-11,0,525,-6,0,0 +2013,8,26,1,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1940,25,1,2240,26,1,0 +2013,6,28,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,20,1,1155,24,1,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,805,-5,0,1134,-8,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,925,-2,0,1118,-4,0,0 +2013,9,10,2,OO,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1537,-4,0,1834,-5,0,0 +2013,10,28,1,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1950,36,1,2333,25,1,0 +2013,8,24,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1320,-3,0,1430,-9,0,0 +2013,6,14,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,810,-9,0,936,-11,0,0 +2013,10,23,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,825,0,0,935,-8,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1335,4,0,1805,0,0,0 +2013,5,10,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1515,112,1,1530,114,1,0 +2013,4,24,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2145,-2,0,2200,-8,0,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1000,-2,0,1613,-15,0,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,7,0,1218,-1,0,0 +2013,5,5,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2227,68,1,652,83,1,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1557,-5,0,1747,-19,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-3,0,1322,-4,0,0 +2013,6,21,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1319,49,1,1925,37,1,0 +2013,8,4,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-2,0,1857,-11,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1700,42,1,1840,31,1,0 +2013,10,31,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,7,0,1400,3,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1549,-7,0,1825,-33,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2009,32,1,2331,30,1,0 +2013,5,19,7,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1859,-2,0,2142,31,1,0 +2013,5,14,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,21,1,1759,20,1,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1210,8,0,1505,-19,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,0,0,1808,17,1,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,756,-5,0,920,10,0,0 +2013,10,18,5,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-5,0,1930,1,0,0 +2013,6,18,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1449,-1,0,1626,-3,0,0 +2013,5,22,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1925,67,1,2054,78,1,0 +2013,10,29,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,710,0,0,825,3,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1124,-4,0,1218,-9,0,0 +2013,10,7,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1007,-5,0,1248,0,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-1,0,925,-12,0,0 +2013,8,18,7,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-1,0,1031,1,0,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1545,13,0,1859,2,0,0 +2013,5,24,5,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,759,-1,0,1020,-24,0,0 +2013,5,4,6,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1025,1,0,1430,-9,0,0 +2013,10,24,4,EV,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1548,68,1,1734,53,1,0 +2013,9,25,3,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1640,1,0,1730,11,0,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,2055,-10,0,16,-1,0,0 +2013,7,27,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,-2,0,1816,4,0,0 +2013,6,1,6,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,-2,0,1135,-2,0,0 +2013,9,18,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,815,10,0,1015,1,0,0 +2013,7,10,3,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,640,52,1,805,52,1,0 +2013,10,29,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-5,0,854,-6,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1010,152,1,1755,155,1,0 +2013,10,17,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2015,3,0,2130,-11,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1405,15,1,1615,24,1,0 +2013,6,3,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1112,-4,0,1205,-3,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,5,0,1045,-6,0,0 +2013,5,29,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1535,4,0,1655,-15,0,0 +2013,5,6,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,11,0,853,1,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,950,8,0,1700,3,0,0 +2013,9,4,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1459,1,0,1814,-7,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2120,-8,0,2258,-7,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,710,-8,0,1204,-24,0,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1740,0,0,2149,4,0,0 +2013,10,9,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-8,0,917,-25,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1813,1,0,2045,-20,0,0 +2013,6,14,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,935,-8,0,0 +2013,7,1,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-1,0,920,-6,0,0 +2013,8,31,6,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-10,0,1303,-2,0,0 +2013,8,26,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-3,0,2045,-5,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,-1,0,1730,3,0,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,0,0,1700,0,0,0 +2013,10,23,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,730,-3,0,1300,-7,0,0 +2013,8,6,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1529,72,1,1830,91,1,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,705,21,1,955,13,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,3,0,1600,6,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,71,1,1150,70,1,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-5,0,2340,-3,0,0 +2013,9,9,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,41,1,951,55,1,0 +2013,9,29,7,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,27,1,2115,25,1,0 +2013,10,19,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,629,-1,0,915,-3,0,0 +2013,7,6,6,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1822,1,0,2025,-16,0,0 +2013,6,28,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1345,1,0,1515,-11,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1855,4,0,2040,10,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-3,0,1951,-7,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1350,-2,0,1454,-3,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,820,109,1,1033,94,1,0 +2013,7,24,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-2,0,945,15,1,0 +2013,8,22,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1905,-21,0,0 +2013,8,16,5,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1722,-3,0,1932,-23,0,0 +2013,4,13,6,UA,11292,Denver International,Denver,CO,13830,Kahului Airport,Kahului,HI,1215,-7,0,1538,-27,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1426,-2,0,1729,12,0,0 +2013,6,9,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1115,-3,0,1208,-13,0,0 +2013,8,9,5,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,732,-4,0,1046,5,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1935,-2,0,2132,-2,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2050,0,,2205,0,1,1 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,825,1,0,1041,-22,0,0 +2013,7,9,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1115,-1,0,1405,-4,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1525,20,1,1700,12,0,0 +2013,7,10,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-8,0,1254,-9,0,0 +2013,9,10,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1110,-4,0,1355,36,1,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1605,0,0,1745,-2,0,0 +2013,8,22,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1203,-3,0,1304,-10,0,0 +2013,8,14,3,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1110,4,0,1235,18,1,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-5,0,1642,-17,0,0 +2013,7,6,6,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,955,-5,0,1445,-27,0,0 +2013,6,25,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-6,0,1115,-6,0,0 +2013,6,26,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,-4,0,2152,-15,0,0 +2013,8,28,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,810,-3,0,0 +2013,7,13,6,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1925,-1,0,2115,-12,0,0 +2013,7,7,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-4,0,1255,-19,0,0 +2013,6,14,5,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-5,0,800,-22,0,0 +2013,9,15,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,4,0,1445,-6,0,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1550,-4,0,1835,-7,0,0 +2013,7,7,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-7,0,1142,-22,0,0 +2013,5,2,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1345,7,0,1910,-3,0,0 +2013,10,4,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1038,-4,0,1436,-3,0,0 +2013,4,23,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,4,0,1330,-6,0,0 +2013,4,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,15,1,2306,8,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,-2,0,2035,-10,0,0 +2013,8,31,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,740,-11,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1430,-4,0,1558,5,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1315,6,0,1530,5,0,0 +2013,8,24,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-3,0,728,1,0,0 +2013,8,25,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1625,-7,0,2042,-12,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,-2,0,2128,-4,0,0 +2013,10,13,7,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-6,0,1544,13,0,0 +2013,4,18,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1915,126,1,2106,112,1,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1905,35,1,2219,23,1,0 +2013,8,4,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2149,-4,0,551,-25,0,0 +2013,6,10,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-6,0,1255,-13,0,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1710,3,0,2340,5,0,0 +2013,6,26,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1128,2,0,1416,21,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-1,0,1125,-18,0,0 +2013,4,14,7,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1015,2,0,1130,-9,0,0 +2013,9,19,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1515,25,1,1640,18,1,0 +2013,4,29,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,945,1,0,1245,3,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1210,-3,0,1358,-5,0,0 +2013,10,5,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-2,0,1120,37,1,0 +2013,10,1,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,913,-6,0,1200,4,0,0 +2013,4,27,6,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1850,76,1,1935,67,1,0 +2013,5,21,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,16,1,2035,6,0,0 +2013,5,30,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,-6,0,1135,-19,0,0 +2013,9,13,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1825,16,1,2118,3,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,810,0,0,1606,19,1,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1920,0,0,2230,-14,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,53,1,1209,69,1,0 +2013,7,27,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1314,-6,0,1435,-9,0,0 +2013,4,3,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,230,0,0,648,-4,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,-4,0,1115,2,0,0 +2013,6,12,3,DL,13244,Memphis International,Memphis,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,-4,0,1651,-5,0,0 +2013,5,16,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1815,-3,0,2125,-8,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,4,0,1627,28,1,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1055,-1,0,1230,-4,0,0 +2013,9,30,1,9E,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,829,-5,0,1001,-21,0,0 +2013,4,7,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-4,0,2215,-11,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1355,5,0,1500,23,1,0 +2013,6,15,6,YV,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,839,-2,0,1240,-15,0,0 +2013,5,20,1,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,66,1,2130,55,1,0 +2013,6,25,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1950,0,0,2115,-7,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-4,0,1105,-3,0,0 +2013,5,23,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,950,10,0,1105,13,0,0 +2013,9,12,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,31,1,1815,26,1,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1650,6,0,1838,6,0,0 +2013,10,8,2,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,1455,-4,0,1740,-7,0,0 +2013,7,29,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,5,0,845,9,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1100,-4,0,1315,-18,0,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,920,0,0,1150,0,0,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2055,68,1,2300,54,1,0 +2013,4,21,7,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2329,4,0,511,4,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1531,-3,0,1708,-2,0,0 +2013,5,13,1,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1810,-3,0,2020,7,0,0 +2013,4,5,5,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,633,-1,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-3,0,2206,-20,0,0 +2013,6,16,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-8,0,925,-12,0,0 +2013,10,16,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1620,-5,0,1710,-10,0,0 +2013,6,27,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,-3,0,1835,10,0,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1110,-1,0,1425,1,0,0 +2013,4,3,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1600,6,0,1920,-38,0,0 +2013,6,20,4,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,953,-6,0,1159,-4,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,43,1,2155,46,1,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1355,89,1,1659,101,1,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1010,10,0,1150,-13,0,0 +2013,5,10,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1537,12,0,1653,12,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2020,8,0,2120,5,0,0 +2013,5,26,7,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,618,87,1,935,81,1,0 +2013,9,20,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,940,0,0,1510,-8,0,0 +2013,6,28,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,103,1,2135,81,1,0 +2013,9,3,2,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,617,0,0,816,-14,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1540,6,0,1809,-4,0,0 +2013,8,7,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,31,1,2140,22,1,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1331,-1,0,1724,-18,0,0 +2013,8,21,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,-10,0,1945,-15,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1005,-3,0,1138,-15,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2050,2,0,2140,-6,0,0 +2013,6,21,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-6,0,1405,-17,0,0 +2013,4,16,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,-3,0,1916,-19,0,0 +2013,10,18,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,927,-3,0,1305,-11,0,0 +2013,4,22,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2110,-3,0,2230,-9,0,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2249,-5,0,731,-12,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,-1,0,1000,-5,0,0 +2013,10,24,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,640,-7,0,735,-7,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1125,-3,0,1515,-18,0,0 +2013,8,19,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2005,-4,0,2204,-16,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-9,0,1416,-9,0,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-3,0,817,-10,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,4,0,2224,1,0,0 +2013,10,16,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,659,-4,0,0 +2013,8,31,6,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,725,-18,0,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,-1,0,1820,5,0,0 +2013,6,27,4,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,128,1,2330,126,1,0 +2013,9,16,1,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1220,-5,0,1350,-13,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1054,-4,0,1132,-12,0,0 +2013,10,10,4,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1757,-3,0,2115,-5,0,0 +2013,10,10,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,915,-10,0,1050,-11,0,0 +2013,7,12,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,8,0,1810,12,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2125,1,0,2220,-1,0,0 +2013,9,23,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1515,-2,0,1757,2,0,0 +2013,9,3,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-8,0,917,-8,0,0 +2013,4,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,8,0,2125,-12,0,0 +2013,9,5,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,6,0,1705,-28,0,0 +2013,9,1,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1440,-7,0,1730,-16,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1933,0,0,2359,-1,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,732,21,1,916,12,0,0 +2013,6,21,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1525,-1,0,1655,0,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1645,102,1,1905,103,1,0 +2013,4,29,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-2,0,1338,-26,0,0 +2013,5,10,5,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1110,-2,0,1300,-24,0,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,755,-4,0,920,-10,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1811,6,0,2033,-13,0,0 +2013,4,29,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1935,0,0,2200,-35,0,0 +2013,10,22,2,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-4,0,1219,-17,0,0 +2013,4,3,3,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,0,0,1510,-8,0,0 +2013,4,10,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,829,-10,0,0 +2013,7,5,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1535,-9,0,1725,-15,0,0 +2013,6,14,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,755,0,0,845,-3,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,61,1,2303,45,1,0 +2013,9,4,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,-6,0,853,2,0,0 +2013,4,2,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-5,0,1505,-25,0,0 +2013,4,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1120,33,1,1452,25,1,0 +2013,9,14,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1120,-7,0,1230,-15,0,0 +2013,7,16,2,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1108,-5,0,1405,3,0,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,2,0,2255,-20,0,0 +2013,4,8,1,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,841,-16,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,0,0,1255,0,0,0 +2013,10,24,4,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,915,36,1,1655,18,1,0 +2013,8,21,3,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,19,1,1705,10,0,0 +2013,10,7,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1340,31,1,1440,25,1,0 +2013,5,25,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1130,19,1,1235,15,1,0 +2013,9,13,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,944,-11,0,0 +2013,10,3,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1742,-6,0,2149,-12,0,0 +2013,4,3,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-8,0,1039,-11,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1523,18,1,1653,0,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2015,-1,0,2215,-7,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2155,6,0,2340,9,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,745,-9,0,1033,-6,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,242,1,2250,239,1,0 +2013,6,21,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-2,0,1410,1,0,0 +2013,9,8,7,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,4,0,1035,-11,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1830,53,1,2220,60,1,0 +2013,7,1,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1745,72,1,2055,66,1,0 +2013,7,20,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1715,-7,0,1915,61,1,0 +2013,6,2,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1040,16,1,1230,17,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-3,0,1846,-8,0,0 +2013,4,9,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,835,-4,0,1235,8,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,-8,0,2335,-17,0,0 +2013,9,23,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-8,0,1239,-9,0,0 +2013,10,10,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,709,-3,0,943,-4,0,0 +2013,6,5,3,9E,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,600,7,0,743,-4,0,0 +2013,7,13,6,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1140,-8,0,1311,7,0,0 +2013,10,18,5,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1815,-6,0,2130,-19,0,0 +2013,6,9,7,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,828,-5,0,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2039,111,1,2200,109,1,0 +2013,8,22,4,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1254,-1,0,1530,-2,0,0 +2013,6,27,4,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1649,16,1,1800,106,1,0 +2013,6,6,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,3,0,2152,6,0,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,3,0,1640,-1,0,0 +2013,9,26,4,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2149,14,0,2246,12,0,0 +2013,4,25,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1740,28,1,2025,21,1,0 +2013,6,10,1,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-8,0,1805,-12,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-5,0,1322,-12,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,75,1,1700,84,1,0 +2013,10,30,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1100,15,1,1525,-5,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1454,-1,0,1603,-19,0,0 +2013,6,14,5,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,26,1,1105,24,1,0 +2013,10,28,1,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1535,-4,0,1727,-24,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2120,30,1,2300,20,1,0 +2013,9,22,7,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1045,0,0,1125,1,0,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1840,17,1,2020,-4,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,122,1,2040,116,1,0 +2013,6,9,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,26,1,1340,17,1,0 +2013,6,4,2,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1330,-2,0,1705,-25,0,0 +2013,10,31,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-5,0,1835,0,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,0,0,1703,-10,0,0 +2013,7,1,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-6,0,1810,1,0,0 +2013,5,15,3,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,923,-8,0,1046,-6,0,0 +2013,4,12,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2130,-6,0,2255,-9,0,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1135,5,0,1310,5,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1835,-1,0,2057,7,0,0 +2013,9,12,4,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1335,74,1,1640,79,1,0 +2013,5,17,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1215,2,0,1529,-5,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1630,2,0,1855,-14,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1835,4,0,2305,-27,0,0 +2013,9,12,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-3,0,1950,-16,0,0 +2013,10,6,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1455,37,1,1605,32,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,-1,0,2019,2,0,0 +2013,6,2,7,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1430,62,1,1603,74,1,0 +2013,8,24,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1355,-5,0,1825,-4,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,3,0,1155,-6,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,-4,0,1930,5,0,0 +2013,6,8,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,28,1,940,30,1,0 +2013,5,15,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,854,-6,0,1310,-12,0,0 +2013,5,10,5,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1638,-15,0,1927,-11,0,0 +2013,6,16,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1135,1,0,1420,-6,0,0 +2013,8,10,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1035,-6,0,1105,-14,0,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-5,0,1023,-22,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1517,0,0,1655,-10,0,0 +2013,8,6,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,-5,0,1959,-20,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1051,-3,0,1204,-28,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-2,0,828,4,0,0 +2013,9,26,4,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1645,-2,0,2352,-27,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,927,-9,0,1021,-5,0,0 +2013,7,25,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,15,1,1623,16,1,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2029,31,1,2337,12,0,0 +2013,5,13,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-4,0,853,-25,0,0 +2013,7,24,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-8,0,1432,-27,0,0 +2013,6,7,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,15,1,925,2,0,0 +2013,5,11,6,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,600,-3,0,1043,-30,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,4,0,2218,20,1,0 +2013,4,22,1,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1938,32,1,2059,38,1,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1505,0,0,1620,0,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-1,0,1039,-10,0,0 +2013,10,17,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1902,-10,0,2011,-16,0,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,715,0,0,850,-10,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,0,0,835,-2,0,0 +2013,4,16,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1425,5,0,1751,-7,0,0 +2013,8,2,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2005,40,1,2245,32,1,0 +2013,5,10,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1850,13,0,1920,11,0,0 +2013,9,21,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,820,2,0,1050,-15,0,0 +2013,10,15,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-9,0,849,-11,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1656,-1,0,1825,10,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1630,-1,0,1749,-7,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1447,-4,0,1627,-5,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,-5,0,1710,12,0,0 +2013,5,11,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2155,-17,0,27,-24,0,0 +2013,4,25,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-3,0,1605,-20,0,0 +2013,4,15,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1600,0,0,1737,-9,0,0 +2013,8,8,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-6,0,1615,-20,0,0 +2013,9,14,6,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-6,0,625,-15,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1515,-1,0,1726,8,0,0 +2013,8,25,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-7,0,1905,-18,0,0 +2013,7,25,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,620,-5,0,755,-6,0,0 +2013,8,23,5,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,17,1,1625,14,0,0 +2013,9,23,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-5,0,1135,-22,0,0 +2013,10,20,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,-2,0,1529,3,0,0 +2013,5,19,7,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,3,0,2045,-4,0,0 +2013,6,8,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1700,2,0,1815,-31,0,0 +2013,9,2,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,168,1,1654,175,1,0 +2013,7,13,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-2,0,1415,-25,0,0 +2013,6,17,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,552,-5,0,1314,-24,0,0 +2013,4,17,3,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-3,0,1239,3,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,5,0,1950,-9,0,0 +2013,7,26,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1301,-15,0,1502,-23,0,0 +2013,10,19,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,735,-6,0,835,3,0,0 +2013,4,14,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1540,115,1,1715,159,1,0 +2013,5,27,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1332,76,1,1442,70,1,0 +2013,6,16,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,4,0,1540,-4,0,0 +2013,4,21,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1433,-6,0,1757,-16,0,0 +2013,5,1,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1410,1,0,1800,1,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2154,21,1,14,8,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,805,-1,0,1045,25,1,0 +2013,6,23,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2130,-4,0,2330,0,0,0 +2013,9,2,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1025,1,0,1145,-3,0,0 +2013,5,10,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1322,8,0,1537,8,0,0 +2013,9,30,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,730,-3,0,840,5,0,0 +2013,10,8,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,605,1,0,840,3,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-3,0,1059,6,0,0 +2013,6,1,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,1,0,1816,-11,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,-4,0,1539,-11,0,0 +2013,6,13,4,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1235,-2,0,1430,-9,0,0 +2013,9,19,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,81,1,2255,98,1,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,800,41,1,1240,37,1,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,15,1,2158,-6,0,0 +2013,6,3,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,955,1,0,1125,0,0,0 +2013,9,6,5,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-2,0,1620,-14,0,0 +2013,7,23,2,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,635,-4,0,739,-11,0,0 +2013,4,19,5,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1510,6,0,1710,-8,0,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-3,0,1600,-22,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1630,0,0,1749,-1,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-2,0,1150,2,0,0 +2013,10,8,2,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1047,2,0,1827,8,0,0 +2013,8,11,7,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1148,-5,0,1615,-11,0,0 +2013,7,15,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,1817,6,0,0 +2013,9,14,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-7,0,627,-13,0,0 +2013,6,11,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1304,-3,0,1840,-6,0,0 +2013,7,5,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,55,-7,0,546,-5,0,0 +2013,4,6,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1355,3,0,2015,-26,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-2,0,1800,-24,0,0 +2013,4,16,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,0,,2330,0,1,1 +2013,8,3,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,-2,0,2119,0,0,0 +2013,4,15,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-4,0,1510,-7,0,0 +2013,7,4,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,620,0,0,755,-10,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1405,11,0,1759,-5,0,0 +2013,6,6,4,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2120,-5,0,2358,-8,0,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,2,0,1505,-8,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,-5,0,2244,-12,0,0 +2013,4,6,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,807,-13,0,0 +2013,4,1,1,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-4,0,1018,-11,0,0 +2013,5,4,6,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-12,0,1615,-13,0,0 +2013,10,11,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,815,41,1,0 +2013,4,18,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,645,165,1,755,181,1,0 +2013,6,21,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,911,-10,0,1132,-14,0,0 +2013,4,29,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,1011,7,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,-4,0,2010,-11,0,0 +2013,8,19,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,0,0,1912,-16,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2020,13,0,2120,6,0,0 +2013,7,10,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,69,1,2210,61,1,0 +2013,5,17,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,613,-11,0,1115,-22,0,0 +2013,8,14,3,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,1,0,1740,2,0,0 +2013,6,13,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1323,-3,0,1411,-7,0,0 +2013,9,17,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-3,0,1759,3,0,0 +2013,5,3,5,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-3,0,1253,-14,0,0 +2013,9,2,1,FL,13244,Memphis International,Memphis,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1547,10,0,1853,26,1,0 +2013,9,4,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,910,-8,0,1013,-7,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,833,0,0,1125,2,0,0 +2013,6,29,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,26,1,1335,25,1,0 +2013,6,25,2,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,-3,0,1546,-10,0,0 +2013,7,22,1,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,545,-7,0,656,-7,0,0 +2013,6,10,1,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,820,-6,0,1043,-30,0,0 +2013,4,29,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1922,-7,0,2059,-24,0,0 +2013,6,9,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,700,1,0,950,-13,0,0 +2013,8,13,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1225,4,0,0 +2013,7,3,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,28,1,2116,32,1,0 +2013,6,16,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1325,0,0,1516,-6,0,0 +2013,6,16,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1110,-4,0,1240,-6,0,0 +2013,6,25,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,144,1,2217,143,1,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1415,0,0,1640,-3,0,0 +2013,4,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1029,4,0,0 +2013,5,19,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1201,-4,0,1429,-7,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1713,26,1,2000,29,1,0 +2013,4,17,3,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-6,0,1145,-14,0,0 +2013,5,5,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2045,-1,0,2245,-6,0,0 +2013,9,8,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,-3,0,2131,-3,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,-5,0,1310,-18,0,0 +2013,9,22,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-6,0,1643,-23,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,23,1,2050,25,1,0 +2013,6,4,2,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,800,-8,0,1023,-6,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1105,20,1,1210,10,0,0 +2013,8,6,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-5,0,1107,-6,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-3,0,1405,-10,0,0 +2013,7,27,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-4,0,1655,-2,0,0 +2013,9,13,5,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-9,0,1520,-26,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,12,0,1925,-4,0,0 +2013,6,15,6,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,-5,0,1451,7,0,0 +2013,6,8,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,725,248,1,820,251,1,0 +2013,7,31,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1046,-2,0,1350,-18,0,0 +2013,8,1,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-2,0,1540,-11,0,0 +2013,8,25,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-7,0,1808,-5,0,0 +2013,5,4,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-9,0,2121,-46,0,0 +2013,4,14,7,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,26,1,1855,19,1,0 +2013,7,6,6,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,12,0,2156,17,1,0 +2013,8,9,5,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1850,16,1,2110,17,1,0 +2013,5,22,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,605,0,0,901,-10,0,0 +2013,8,26,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,905,-5,0,1025,-21,0,0 +2013,7,26,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,17,1,2135,19,1,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1020,28,1,1220,27,1,0 +2013,8,25,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1635,32,1,1803,26,1,0 +2013,9,6,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-6,0,1331,-11,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-2,0,1114,-18,0,0 +2013,9,5,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1010,-6,0,1113,-8,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1835,36,1,2305,33,1,0 +2013,4,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1658,15,1,1759,7,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1940,3,0,2325,22,1,0 +2013,5,10,5,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,44,1,1926,43,1,0 +2013,7,22,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2210,38,1,2300,26,1,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2205,71,1,2305,67,1,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1447,35,1,1630,24,1,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,820,-6,0,0 +2013,7,20,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,77,1,2216,91,1,0 +2013,10,19,6,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,738,-6,0,835,-21,0,0 +2013,9,22,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1125,50,1,1230,40,1,0 +2013,9,23,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,910,-5,0,1450,-18,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2020,89,1,2241,70,1,0 +2013,7,16,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,814,-2,0,1106,5,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1735,11,0,1840,3,0,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1907,-4,0,2233,-28,0,0 +2013,10,8,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-3,0,1810,-21,0,0 +2013,4,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,28,1,1825,15,1,0 +2013,10,28,1,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,21,1,735,-5,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,-2,0,1730,-1,0,0 +2013,6,2,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,1,0,1600,-3,0,0 +2013,10,29,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1509,-11,0,1731,11,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1250,9,0,1430,4,0,0 +2013,7,13,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1038,1,0,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,730,-9,0,907,-12,0,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1659,14,0,1959,1,0,0 +2013,5,11,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-6,0,1615,-10,0,0 +2013,6,13,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,3,0,1159,15,1,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2147,-5,0,2259,-12,0,0 +2013,8,1,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1022,-3,0,1207,5,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,837,-2,0,915,-14,0,0 +2013,6,22,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,854,-4,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,0,0,1623,-6,0,0 +2013,4,14,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-6,0,1314,-4,0,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2105,25,1,2240,14,0,0 +2013,10,5,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,-3,0,1250,-2,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1414,19,1,1543,13,0,0 +2013,9,11,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,605,-2,0,725,-4,0,0 +2013,10,9,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,935,16,1,950,17,1,0 +2013,7,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,-5,0,1055,-6,0,0 +2013,7,22,1,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,540,-1,0,700,3,0,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,840,15,1,1000,-9,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1630,83,1,1820,73,1,0 +2013,6,23,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1705,-5,0,2020,-15,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1240,13,0,1800,-3,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,8,0,1845,7,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,0,0,730,-3,0,0 +2013,4,25,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-1,0,1340,35,1,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,83,1,26,52,1,0 +2013,9,8,7,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1830,-1,0,1905,-12,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1725,84,1,1905,66,1,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1805,2,0,2005,-18,0,0 +2013,6,13,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,2025,135,1,2340,122,1,0 +2013,8,24,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1501,-1,0,1618,-10,0,0 +2013,4,29,1,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1350,0,0,1555,-3,0,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,5,0,750,0,0,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1830,84,1,2140,107,1,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-6,0,1028,-15,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-4,0,1840,-8,0,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,855,5,0,1020,-2,0,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,3,0,1117,0,0,0 +2013,8,5,1,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,46,1,2149,29,1,0 +2013,4,16,2,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,-8,0,1918,-20,0,0 +2013,5,8,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-1,0,1405,0,0,0 +2013,4,16,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-6,0,930,-1,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2205,-3,0,7,9,0,0 +2013,10,11,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,929,-5,0,1138,-9,0,0 +2013,6,27,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,-4,0,1612,12,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,-3,0,1142,-19,0,0 +2013,5,22,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1335,7,0,1932,-6,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1055,0,0,1420,-5,0,0 +2013,5,10,5,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,-3,0,937,8,0,0 +2013,4,4,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,730,-4,0,910,-23,0,0 +2013,6,8,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-9,0,1327,-17,0,0 +2013,7,14,7,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,8,0,1821,-15,0,0 +2013,4,10,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,1,0,1908,-15,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1320,9,0,1425,14,0,0 +2013,8,25,7,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1707,-9,0,1744,-11,0,0 +2013,8,3,6,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1340,-9,0,1520,-30,0,0 +2013,5,25,6,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1850,-9,0,1935,-18,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,-1,0,1600,9,0,0 +2013,4,16,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,1,0,835,-5,0,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1517,-5,0,1642,-16,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1035,1,0,1155,-7,0,0 +2013,10,29,2,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1206,0,0,2030,0,0,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,825,28,1,1050,8,0,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,0,0,955,-9,0,0 +2013,8,27,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1640,-3,0,1730,-3,0,0 +2013,10,10,4,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,166,1,1430,177,1,0 +2013,6,25,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,713,11,0,1015,3,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,20,1,1440,18,1,0 +2013,6,7,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,104,1,1912,108,1,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-7,0,1323,-56,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-1,0,1054,6,0,0 +2013,10,31,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1625,0,,1750,0,1,1 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1150,19,1,1330,14,0,0 +2013,4,2,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-11,0,1220,-12,0,0 +2013,4,6,6,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-14,0,1559,-9,0,0 +2013,6,5,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-5,0,1227,-7,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,0,0,1535,-4,0,0 +2013,6,20,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1540,24,1,1635,5,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2155,47,1,2325,34,1,0 +2013,5,8,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2130,-2,0,2235,-6,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1505,47,1,1625,43,1,0 +2013,9,17,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,755,-5,0,935,-24,0,0 +2013,7,3,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1130,-6,0,1410,20,1,0 +2013,8,30,5,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-7,0,2049,-29,0,0 +2013,4,16,2,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-2,0,829,-17,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,-6,0,1203,16,1,0 +2013,10,15,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2000,-4,0,2029,-22,0,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,828,-4,0,1154,-19,0,0 +2013,8,7,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-6,0,900,9,0,0 +2013,4,10,3,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-7,0,1353,-10,0,0 +2013,8,13,2,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1352,-4,0,1404,-2,0,0 +2013,8,5,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,-7,0,1633,-4,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,0,1230,-2,0,0 +2013,8,13,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,710,-5,0,805,-5,0,0 +2013,8,16,5,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,-6,0,2000,-32,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1440,126,1,1920,134,1,0 +2013,4,1,1,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,855,-6,0,1145,2,0,0 +2013,6,4,2,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-6,0,2140,-2,0,0 +2013,6,2,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1815,-5,0,1915,0,1,1 +2013,7,12,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,725,-27,0,0 +2013,7,14,7,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1140,-5,0,1352,-4,0,0 +2013,8,18,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,917,-5,0,1054,-13,0,0 +2013,7,23,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,725,-1,0,920,6,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,645,3,0,1252,4,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1900,53,1,2000,51,1,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,844,0,0,1005,-19,0,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1425,28,1,1550,24,1,0 +2013,4,7,7,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1625,-4,0,1850,-20,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2205,30,1,13,9,0,0 +2013,6,3,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,545,0,0,705,-4,0,0 +2013,5,2,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,1,0,1200,-2,0,0 +2013,9,19,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,12,0,1900,0,0,0 +2013,10,31,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1519,-1,0,0 +2013,8,19,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,7,0,2135,16,1,0 +2013,6,25,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1745,0,,1945,0,1,1 +2013,6,17,1,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,700,42,1,949,50,1,0 +2013,10,10,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,550,2,0,758,-16,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1209,1,0,1346,7,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,-3,0,2259,-8,0,0 +2013,8,24,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-8,0,2104,-14,0,0 +2013,9,20,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,1,0,855,1,0,0 +2013,6,13,4,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,-2,0,1010,8,0,0 +2013,5,10,5,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,5,0,1351,10,0,0 +2013,8,22,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1005,-8,0,1409,-4,0,0 +2013,5,29,3,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1631,3,0,1823,9,0,0 +2013,4,3,3,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2015,2,0,1152,6,0,0 +2013,7,10,3,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1725,113,1,2155,106,1,0 +2013,10,24,4,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1340,3,0,1618,8,0,0 +2013,5,22,3,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-1,0,1221,0,0,0 +2013,4,6,6,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1128,16,1,1321,5,0,0 +2013,4,24,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,6,0,1730,6,0,0 +2013,9,23,1,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,1,0,1205,-25,0,0 +2013,9,24,2,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1543,-7,0,1710,-14,0,0 +2013,6,19,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,67,1,2249,31,1,0 +2013,5,30,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,810,1,0,950,9,0,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1246,-2,0,1530,-21,0,0 +2013,9,14,6,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,17,1,2240,11,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2155,46,1,2300,47,1,0 +2013,7,2,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1525,-4,0,1859,-2,0,0 +2013,10,20,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-7,0,1008,-19,0,0 +2013,5,16,4,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,-10,0,750,6,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,0,0,1025,-10,0,0 +2013,9,12,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,0,,1759,0,1,1 +2013,9,23,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1955,17,1,2115,22,1,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1630,3,0,1725,2,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,843,-5,0,1115,-5,0,0 +2013,9,22,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1740,-3,0,1930,2,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1000,-5,0,1306,-17,0,0 +2013,9,23,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2040,6,0,2205,-3,0,0 +2013,8,10,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1440,12,0,1657,5,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,12,0,2140,-16,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,14,0,1754,1,0,0 +2013,7,25,4,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1119,-8,0,1254,-28,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2201,-3,0,2312,-9,0,0 +2013,10,1,2,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,10,0,2305,23,1,0 +2013,5,27,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-8,0,1249,-1,0,0 +2013,5,19,7,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1742,-5,0,2014,-8,0,0 +2013,4,20,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1301,-2,0,1429,1,0,0 +2013,5,12,7,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1535,17,1,1725,1,0,0 +2013,7,10,3,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,39,1,1710,56,1,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,930,0,0,1055,-8,0,0 +2013,7,8,1,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2224,183,1,30,181,1,0 +2013,4,10,3,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,625,-10,0,748,-14,0,0 +2013,4,11,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1255,34,1,1535,32,1,0 +2013,9,10,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-2,0,1320,-13,0,0 +2013,4,1,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1340,-9,0,0 +2013,4,16,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,623,4,0,1016,-3,0,0 +2013,7,28,7,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,9,0,2145,5,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1500,3,0,1549,0,0,0 +2013,5,24,5,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,62,1,2035,60,1,0 +2013,7,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,0,0,910,-7,0,0 +2013,7,31,3,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-8,0,2110,-18,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-4,0,1001,-22,0,0 +2013,4,16,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1115,-5,0,1450,-15,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,23,1,1319,18,1,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,-3,0,1028,-9,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1505,-1,0,1620,12,0,0 +2013,6,22,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1745,0,0,2200,-12,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,610,0,0,910,7,0,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,43,1,1055,38,1,0 +2013,6,12,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1730,1,0,1935,-13,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,-1,0,2347,-2,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2225,-2,0,120,-7,0,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,17,1,1750,26,1,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1115,8,0,1815,-8,0,0 +2013,6,7,5,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1042,-5,0,1616,-6,0,0 +2013,10,17,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-4,0,940,-7,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1645,-3,0,1940,-12,0,0 +2013,4,18,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,63,1,2145,56,1,0 +2013,4,16,2,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1828,-5,0,1948,-10,0,0 +2013,8,8,4,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,7,0,1300,11,0,0 +2013,6,2,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1259,6,0,1815,-15,0,0 +2013,4,4,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,0,0,1915,-2,0,0 +2013,6,10,1,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,935,-8,0,1155,-9,0,0 +2013,9,18,3,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1410,-9,0,1601,-31,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,0,0,1736,4,0,0 +2013,9,9,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,-3,0,2343,-1,0,0 +2013,4,1,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,235,0,0,634,-6,0,0 +2013,9,25,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-5,0,941,-6,0,0 +2013,8,26,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-10,0,912,-8,0,0 +2013,5,3,5,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1625,19,1,1805,5,0,0 +2013,7,14,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-4,0,1628,-6,0,0 +2013,8,27,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-4,0,1729,-19,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,655,0,0,815,-30,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1805,-1,0,2028,-8,0,0 +2013,4,23,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,-6,0,1457,0,0,0 +2013,6,29,6,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1710,50,1,2005,33,1,0 +2013,6,25,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,105,1,1625,93,1,0 +2013,6,16,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,800,0,0,900,-7,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1055,-1,0,1229,-15,0,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1035,1,0,1155,-11,0,0 +2013,5,25,6,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,12,0,1950,0,0,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1500,26,1,1655,17,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,-2,0,1607,-4,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,-4,0,2014,12,0,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,-1,0,2019,8,0,0 +2013,8,8,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,945,-2,0,1045,-3,0,0 +2013,5,24,5,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,-1,0,1913,-1,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1015,7,0,1500,-1,0,0 +2013,9,22,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,8,0,1930,-13,0,0 +2013,5,7,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,-3,0,2335,-12,0,0 +2013,10,4,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,10,0,1738,-4,0,0 +2013,6,29,6,OO,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-1,0,1212,0,0,0 +2013,4,14,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1716,-3,0,1839,-5,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1800,6,0,2010,-4,0,0 +2013,5,21,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1545,-4,0,1849,-12,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1735,7,0,2000,17,1,0 +2013,8,8,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,0,0,1100,0,0,0 +2013,8,1,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1935,-6,0,2138,-23,0,0 +2013,5,5,7,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1850,-2,0,2105,-10,0,0 +2013,9,11,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,-1,0,1620,-11,0,0 +2013,5,12,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,820,-14,0,919,-13,0,0 +2013,5,22,3,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1004,29,1,1315,26,1,0 +2013,10,31,4,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1250,1,0,1610,-8,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1405,6,0,1447,-4,0,0 +2013,4,5,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1345,-8,0,1510,-16,0,0 +2013,6,25,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1235,-2,0,1415,-8,0,0 +2013,6,16,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-6,0,1110,-12,0,0 +2013,10,21,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-5,0,920,-27,0,0 +2013,5,20,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,-1,0,1100,-5,0,0 +2013,10,14,1,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-3,0,1355,-12,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,-2,0,1830,-6,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1625,-5,0,1806,-15,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,2000,71,1,2204,61,1,0 +2013,6,4,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,0,0,1017,-6,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1610,120,1,1725,104,1,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,-7,0,1502,-16,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,18,1,1500,26,1,0 +2013,7,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,5,0,1150,16,1,0 +2013,5,30,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1929,42,1,2330,64,1,0 +2013,7,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1015,0,0,1131,-11,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,11,0,1440,2,0,0 +2013,10,22,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1625,-9,0,1730,-18,0,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,0,,1735,0,1,1 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1135,3,0,1345,-27,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,6,0,1539,-35,0,0 +2013,8,28,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1630,11,0,1800,1,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,6,0,2337,0,0,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,841,-1,0,941,5,0,0 +2013,5,13,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,930,-5,0,1135,-9,0,0 +2013,9,4,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,825,-2,0,1050,-33,0,0 +2013,8,23,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-1,0,743,-8,0,0 +2013,4,16,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-11,0,912,-1,0,0 +2013,9,19,4,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,48,1,1945,47,1,0 +2013,7,15,1,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,0,0,2247,-5,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-1,0,921,-6,0,0 +2013,9,21,6,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,13,0,1510,-10,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,4,0,1855,3,0,0 +2013,9,14,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,-7,0,1231,-12,0,0 +2013,4,15,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,-7,0,1745,-11,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,935,11,0,1600,15,1,0 +2013,6,26,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,145,1,1911,137,1,0 +2013,6,18,2,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-12,0,1724,-19,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-4,0,2006,-9,0,0 +2013,8,11,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,144,1,1223,141,1,0 +2013,9,29,7,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1424,-10,0,1600,-23,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,820,-2,0,945,-4,0,0 +2013,8,31,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,630,34,1,855,21,1,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,63,1,2156,45,1,0 +2013,7,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,15,1,2320,8,0,0 +2013,4,27,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,-2,0,2050,-17,0,0 +2013,6,15,6,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1516,24,1,1618,16,1,0 +2013,8,30,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1115,6,0,1240,-2,0,0 +2013,6,14,5,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,-2,0,1820,-15,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1755,-2,0,2034,-9,0,0 +2013,5,15,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1625,-4,0,1950,-21,0,0 +2013,7,23,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,24,1,2125,-1,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1421,-2,0,1555,-13,0,0 +2013,10,10,4,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,73,1,1615,62,1,0 +2013,9,26,4,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,615,0,0,714,3,0,0 +2013,4,14,7,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,830,-6,0,1037,-12,0,0 +2013,5,19,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,90,1,825,71,1,0 +2013,4,11,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1415,103,1,1555,106,1,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-5,0,922,-3,0,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1015,15,1,1250,16,1,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,850,-6,0,1008,12,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1755,0,0,1927,-7,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1315,-1,0,1640,4,0,0 +2013,6,11,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,11,0,2018,6,0,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,745,-5,0,1045,-9,0,0 +2013,10,23,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,800,-4,0,905,-3,0,0 +2013,9,13,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,143,1,928,134,1,0 +2013,5,17,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-7,0,800,-10,0,0 +2013,6,26,3,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1110,123,1,1245,134,1,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,600,-1,0,935,5,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2050,20,1,2220,17,1,0 +2013,4,15,1,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1456,27,1,1656,35,1,0 +2013,9,20,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,835,-5,0,1035,-2,0,0 +2013,6,1,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-3,0,1902,4,0,0 +2013,6,19,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-2,0,2035,4,0,0 +2013,10,9,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-2,0,1820,-6,0,0 +2013,10,19,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,72,1,1840,79,1,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2009,-4,0,2129,-1,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1230,16,1,1410,2,0,0 +2013,8,24,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1355,-5,0,1515,-1,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1907,-5,0,2244,-11,0,0 +2013,7,12,5,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-6,0,2041,-8,0,0 +2013,7,9,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,4,0,1600,-15,0,0 +2013,9,29,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1255,-5,0,1415,-14,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1617,0,0,1913,-2,0,0 +2013,5,6,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,4,0,1430,12,0,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,20,1,1710,-20,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1916,-1,0,2241,-3,0,0 +2013,6,9,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,27,1,1929,17,1,0 +2013,5,30,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-8,0,1351,-1,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,-1,0,1555,2,0,0 +2013,5,30,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,910,-5,0,1240,-32,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1550,0,0,1721,-13,0,0 +2013,8,5,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,844,1,0,1104,29,1,0 +2013,9,12,4,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2015,0,0,2145,5,0,0 +2013,4,26,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-12,0,1252,-11,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-5,0,1236,-8,0,0 +2013,10,25,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1745,-5,0,2045,-9,0,0 +2013,8,31,6,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,714,-4,0,1046,-15,0,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1734,3,0,1837,12,0,0 +2013,6,29,6,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-1,0,901,-13,0,0 +2013,5,21,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,-2,0,750,-11,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1748,-2,0,2330,4,0,0 +2013,5,13,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1600,85,1,1632,93,1,0 +2013,7,3,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-3,0,729,-5,0,0 +2013,4,13,6,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-3,0,2153,31,1,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2050,-3,0,2135,-9,0,0 +2013,7,30,2,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1150,-5,0,1400,-15,0,0 +2013,7,22,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,47,1,2210,37,1,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,835,-1,0,1030,-21,0,0 +2013,4,13,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,43,1,1435,22,1,0 +2013,10,28,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-4,0,1145,-24,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2120,12,0,2230,-6,0,0 +2013,7,15,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1015,0,0,1306,-2,0,0 +2013,8,13,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,-3,0,1520,-5,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,5,0,925,-11,0,0 +2013,5,31,5,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,47,1,1555,44,1,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1315,5,0,1429,-12,0,0 +2013,7,6,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1445,22,1,1510,21,1,0 +2013,8,18,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,2,0,1530,-1,0,0 +2013,10,3,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,740,-5,0,1029,-18,0,0 +2013,10,25,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1105,-6,0,1342,-2,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1110,-2,0,1315,-18,0,0 +2013,5,5,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1200,6,0,1420,18,1,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1330,9,0,1420,2,0,0 +2013,10,25,5,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1210,0,0,1415,-4,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1900,20,1,2325,7,0,0 +2013,5,24,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1437,94,1,1647,83,1,0 +2013,8,6,2,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,0,0,1220,-5,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,1303,3,0,0 +2013,4,7,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1430,-4,0,1554,-24,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1135,-2,0,1235,-7,0,0 +2013,7,20,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1005,-1,0,1120,-1,0,0 +2013,6,22,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1100,-2,0,1425,-5,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,9,0,1825,17,1,0 +2013,4,21,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1435,-9,0,1600,-33,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1415,11,0,1435,-14,0,0 +2013,5,6,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2000,-1,0,2120,7,0,0 +2013,6,17,1,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,8,0,1730,-5,0,0 +2013,9,1,7,OO,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1209,-2,0,1440,11,0,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-7,0,2222,-4,0,0 +2013,7,14,7,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,730,-4,0,833,-6,0,0 +2013,6,1,6,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1220,3,0,1330,-6,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1353,8,0,2221,9,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,1,0,1635,-4,0,0 +2013,5,15,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,822,-12,0,0 +2013,7,7,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2105,-7,0,2321,-14,0,0 +2013,4,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1300,1,0,1613,5,0,0 +2013,5,3,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1005,90,1,1131,109,1,0 +2013,10,4,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1235,-3,0,1345,-5,0,0 +2013,10,13,7,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1445,1,0,1727,-14,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,29,1,1050,15,1,0 +2013,4,14,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-5,0,1224,-18,0,0 +2013,4,1,1,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1730,-6,0,1843,28,1,0 +2013,7,13,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,164,1,2056,153,1,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1945,0,0,2102,-6,0,0 +2013,4,13,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1700,4,0,1815,-14,0,0 +2013,6,26,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-3,0,1445,-9,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1955,12,0,2230,2,0,0 +2013,8,8,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,-4,0,815,-15,0,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,61,1,1526,94,1,0 +2013,10,10,4,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,14,0,1925,7,0,0 +2013,5,9,4,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1230,1,0,1510,22,1,0 +2013,9,12,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1210,0,0,1815,-29,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2000,41,1,2045,38,1,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1415,-3,0,1510,-7,0,0 +2013,6,10,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1715,39,1,1839,60,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1355,-2,0,1546,8,0,0 +2013,8,30,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1425,0,0,1630,-12,0,0 +2013,7,21,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,7,0,1531,7,0,0 +2013,10,4,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,715,-3,0,1017,-13,0,0 +2013,8,31,6,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2159,-8,0,548,-1,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,825,18,1,1116,8,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1520,9,0,1907,30,1,0 +2013,6,18,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-6,0,1048,-19,0,0 +2013,7,19,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,700,-8,0,828,-18,0,0 +2013,5,9,4,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,80,1,1940,68,1,0 +2013,4,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1706,-4,0,2323,-17,0,0 +2013,8,22,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,655,4,0,1524,11,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,3,0,2221,-23,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,14,0,1245,17,1,0 +2013,7,4,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,-6,0,830,-12,0,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,630,-3,0,800,-13,0,0 +2013,4,4,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-3,0,1445,-4,0,0 +2013,8,19,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1450,19,1,1615,13,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,159,1,2254,166,1,0 +2013,6,18,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,123,1,1538,140,1,0 +2013,9,23,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,2,0,1746,-4,0,0 +2013,8,28,3,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,638,48,1,1020,26,1,0 +2013,4,20,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1715,2,0,1840,-9,0,0 +2013,10,9,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,959,-2,0,1659,-3,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,20,1,1200,8,0,0 +2013,5,2,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-1,0,1705,7,0,0 +2013,4,9,2,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,911,-1,0,1101,20,1,0 +2013,8,16,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,37,1,1750,25,1,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-2,0,1329,2,0,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,-8,0,2103,-39,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,7,0,1735,-1,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,0,0,2029,-5,0,0 +2013,5,23,4,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1440,10,0,1650,4,0,0 +2013,4,27,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2055,86,1,2340,80,1,0 +2013,7,3,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-1,0,955,-10,0,0 +2013,8,6,2,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-7,0,1903,-1,0,0 +2013,10,13,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1225,-4,0,1355,-14,0,0 +2013,6,23,7,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1325,25,1,1525,32,1,0 +2013,8,10,6,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1333,-7,0,1449,9,0,0 +2013,4,2,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-8,0,2119,13,0,0 +2013,8,22,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-6,0,900,11,0,0 +2013,10,10,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-7,0,1412,-8,0,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,-5,0,1351,-3,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,3,0,1500,-7,0,0 +2013,8,14,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-3,0,1653,-9,0,0 +2013,4,3,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2020,33,1,2030,28,1,0 +2013,7,31,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,940,0,0,1110,-6,0,0 +2013,6,19,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,0,0,1152,1,0,0 +2013,7,26,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1114,-7,0,1244,4,0,0 +2013,9,27,5,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1255,2,0,2055,-6,0,0 +2013,9,7,6,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-4,0,712,-9,0,0 +2013,6,15,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,622,-6,0,750,-14,0,0 +2013,10,27,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1115,-2,0,1744,-15,0,0 +2013,10,26,6,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1245,-3,0,2110,-3,0,0 +2013,6,24,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1709,-6,0,2223,-16,0,0 +2013,10,28,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,4,0,935,-4,0,0 +2013,6,28,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-7,0,511,10,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,0,0,1825,-12,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,-1,0,2138,3,0,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1010,31,1,1215,14,0,0 +2013,10,13,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,-7,0,1825,-25,0,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1335,-1,0,1415,-2,0,0 +2013,6,22,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-4,0,810,-9,0,0 +2013,7,10,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1849,259,1,2104,264,1,0 +2013,9,21,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,920,-1,0,1040,-1,0,0 +2013,10,30,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1415,-4,0,1515,-9,0,0 +2013,5,21,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1020,24,1,1145,52,1,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,11,0,1610,11,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1115,23,1,1315,27,1,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,20,1,1900,21,1,0 +2013,8,2,5,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,905,-4,0,1220,-18,0,0 +2013,10,15,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-3,0,1624,-10,0,0 +2013,6,2,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1430,-8,0,1640,-19,0,0 +2013,9,30,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1912,-10,0,2247,0,0,0 +2013,9,2,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1345,2,0,1505,0,0,0 +2013,7,20,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-9,0,1120,-38,0,0 +2013,4,21,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,2049,6,0,2114,-6,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,640,-2,0,907,-30,0,0 +2013,8,4,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1010,-5,0,1254,-8,0,0 +2013,9,13,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2059,-4,0,2259,-17,0,0 +2013,9,25,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1910,-2,0,2135,-9,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,940,-6,0,1041,-10,0,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,-4,0,2101,-6,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,-1,0,2059,-5,0,0 +2013,9,17,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,957,6,0,1317,-9,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2000,-1,0,2131,11,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2115,2,0,30,-27,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,925,4,0,1425,-10,0,0 +2013,9,17,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1600,-4,0,1630,-7,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-1,0,1940,-19,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,165,1,1310,162,1,0 +2013,9,12,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,655,-2,0,725,4,0,0 +2013,8,11,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,800,0,0,850,-3,0,0 +2013,8,11,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,2351,-7,0,511,-24,0,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1442,3,0,1723,-6,0,0 +2013,8,26,1,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,4,0,1335,18,1,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1320,18,1,1540,-1,0,0 +2013,6,28,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,936,9,0,952,14,0,0 +2013,8,28,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-10,0,1637,-22,0,0 +2013,8,20,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,930,12,0,0 +2013,6,8,6,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1005,-3,0,1135,-9,0,0 +2013,4,19,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-4,0,1345,-9,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1830,14,0,1940,6,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-2,0,2246,-10,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1540,-1,0,1800,-14,0,0 +2013,8,1,4,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,21,1,1941,20,1,0 +2013,7,30,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2059,11,0,2226,5,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,35,1,2210,31,1,0 +2013,9,7,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1343,-3,0,1646,15,1,0 +2013,4,12,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1245,7,0,1520,-7,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1951,-2,0,2153,-10,0,0 +2013,4,8,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,1,0,2018,-3,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2146,-1,0,15,-26,0,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,58,1,2337,31,1,0 +2013,6,10,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1725,166,1,1840,142,1,0 +2013,10,19,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,5,0,1940,-3,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,850,0,0,1415,3,0,0 +2013,10,30,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,900,-1,0,1641,-2,0,0 +2013,7,9,2,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1635,317,1,2010,300,1,0 +2013,5,4,6,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,943,-6,0,1118,8,0,0 +2013,6,2,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,-2,0,1840,-7,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,27,1,1320,21,1,0 +2013,4,21,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-5,0,1510,-5,0,0 +2013,9,3,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-2,0,735,-6,0,0 +2013,5,17,5,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,730,0,0,855,-9,0,0 +2013,10,12,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1255,0,0,1400,1,0,0 +2013,5,27,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-3,0,1400,-18,0,0 +2013,9,26,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1630,-5,0,1746,1,0,0 +2013,9,20,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1114,120,1,1239,127,1,0 +2013,8,11,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-8,0,1100,-22,0,0 +2013,9,6,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1900,52,1,1930,41,1,0 +2013,6,11,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,707,-5,0,920,-11,0,0 +2013,10,26,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1800,13,0,1950,3,0,0 +2013,10,9,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1632,4,0,1758,9,0,0 +2013,7,15,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-1,0,920,-1,0,0 +2013,6,21,5,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,850,-5,0,1014,-30,0,0 +2013,4,11,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1617,7,0,1810,13,0,0 +2013,4,17,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,705,0,0,1109,12,0,0 +2013,4,11,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,725,30,1,0 +2013,4,20,6,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1455,-4,0,1735,-5,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-1,0,1325,-13,0,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2045,13,0,2330,25,1,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1345,5,0,1615,-1,0,0 +2013,4,1,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,0,0,2020,-7,0,0 +2013,4,2,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1654,2,0,100,-13,0,0 +2013,8,8,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-9,0,945,4,0,0 +2013,6,11,2,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1420,-5,0,2239,-12,0,0 +2013,6,26,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1935,-3,0,2110,-10,0,0 +2013,8,2,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,23,1,2027,25,1,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1020,13,0,1209,7,0,0 +2013,9,17,2,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,655,-4,0,810,-5,0,0 +2013,7,9,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1455,-5,0,1735,2,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,3,0,1450,-22,0,0 +2013,8,28,3,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-1,0,818,-13,0,0 +2013,4,5,5,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,640,55,1,815,27,1,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1425,-4,0,1835,-9,0,0 +2013,6,10,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,940,47,1,1240,45,1,0 +2013,6,27,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1335,0,,1455,0,1,1 +2013,7,17,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1423,-1,0,1609,-8,0,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1003,-1,0,1254,-11,0,0 +2013,8,9,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1720,4,0,1945,1,0,0 +2013,5,27,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1035,-7,0,1235,-24,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1924,17,1,2144,-7,0,0 +2013,6,14,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,0,0,835,-1,0,0 +2013,4,4,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2157,-4,0,2259,-21,0,0 +2013,5,13,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,3,0,1053,7,0,0 +2013,4,22,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,21,1,1926,19,1,0 +2013,6,1,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,759,8,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,5,0,1030,-1,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,0,0,1500,-7,0,0 +2013,9,3,2,OO,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-9,0,1205,-16,0,0 +2013,7,30,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,-3,0,1558,-11,0,0 +2013,4,3,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1914,-11,0,0 +2013,6,3,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-1,0,1025,-5,0,0 +2013,8,19,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,923,7,0,1026,5,0,0 +2013,7,2,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,5,0,815,4,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,955,0,0,1147,3,0,0 +2013,5,2,4,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,630,19,1,709,19,1,0 +2013,9,22,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-4,0,1013,-7,0,0 +2013,7,2,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,53,1,2154,47,1,0 +2013,6,1,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1523,16,1,1629,20,1,0 +2013,7,19,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-4,0,1723,-11,0,0 +2013,10,18,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-7,0,2203,-8,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,-3,0,2343,-10,0,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-1,0,2333,-15,0,0 +2013,7,5,5,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,1,0,1535,-8,0,0 +2013,4,9,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-7,0,806,-16,0,0 +2013,5,22,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-9,0,1140,-16,0,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1637,-10,0,2010,-24,0,0 +2013,10,15,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,919,-3,0,1103,-17,0,0 +2013,4,3,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,-6,0,1225,-9,0,0 +2013,9,7,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,700,-6,0,1056,-8,0,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1705,0,0,1858,-13,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-7,0,1629,-11,0,0 +2013,7,25,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,644,-4,0,825,-12,0,0 +2013,8,6,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-4,0,812,-6,0,0 +2013,5,28,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,3,0,2125,10,0,0 +2013,4,22,1,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1810,85,1,2020,80,1,0 +2013,4,8,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2108,-8,0,2217,-11,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1040,0,0,1300,-3,0,0 +2013,7,7,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-2,0,1202,-11,0,0 +2013,10,16,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,3,0,2115,-1,0,0 +2013,9,12,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,-4,0,1830,-1,0,0 +2013,9,30,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2040,1,0,2215,-4,0,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,7,0,1000,0,0,0 +2013,6,6,4,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,1,0,1140,-19,0,0 +2013,6,29,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,119,1,1943,115,1,0 +2013,4,18,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1704,12,0,1850,18,1,0 +2013,4,2,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-6,0,2110,-15,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2039,3,0,2316,-13,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,4,0,1655,-5,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-5,0,2202,58,1,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,35,1,2346,25,1,0 +2013,10,17,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,825,-5,0,926,-10,0,0 +2013,6,13,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-2,0,1300,17,1,0 +2013,5,21,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,930,-6,0,1135,-10,0,0 +2013,5,14,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1711,-5,0,2211,-19,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1210,4,0,1405,-8,0,0 +2013,9,18,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-8,0,740,-11,0,0 +2013,7,29,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1500,53,1,1635,42,1,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1730,17,1,1930,10,0,0 +2013,10,16,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1325,-4,0,1355,7,0,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1550,-4,0,2125,-5,0,0 +2013,8,2,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1215,-2,0,1330,-8,0,0 +2013,9,4,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1830,-1,0,1927,37,1,0 +2013,4,16,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,830,6,0,1242,10,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,740,-5,0,845,-8,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2059,0,0,2239,-38,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2105,-2,0,2200,-2,0,0 +2013,10,10,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1435,-4,0,1620,-6,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1300,-6,0,1350,-15,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1235,2,0,1405,-2,0,0 +2013,5,19,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,49,1,945,62,1,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,629,-4,0,951,-7,0,0 +2013,4,11,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1810,26,1,2005,27,1,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1415,18,1,0 +2013,8,19,1,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1822,-10,0,1919,-13,0,0 +2013,5,9,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1854,29,1,2020,36,1,0 +2013,8,28,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,27,1,1850,1,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1004,3,0,1243,12,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,21,1,2010,27,1,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1510,0,0,1610,-3,0,0 +2013,5,17,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-5,0,1149,-17,0,0 +2013,6,6,4,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1220,2,0,2008,22,1,0 +2013,8,29,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,745,-5,0,933,-10,0,0 +2013,10,21,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-5,0,1240,-4,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2155,-4,0,2323,-20,0,0 +2013,8,15,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,-1,0,2115,-2,0,0 +2013,10,19,6,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1329,1,0,1430,1,0,0 +2013,6,12,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-13,0,753,-11,0,0 +2013,7,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1034,35,1,1409,19,1,0 +2013,9,9,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,555,20,1,1355,8,0,0 +2013,5,6,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,-8,0,2003,-3,0,0 +2013,7,2,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,615,-3,0,725,-8,0,0 +2013,10,29,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1430,26,1,1605,26,1,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2155,101,1,2335,89,1,0 +2013,6,5,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,12,0,2030,1,0,0 +2013,5,1,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1355,-3,0,1542,-1,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1940,71,1,2055,73,1,0 +2013,4,23,2,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1513,-3,0,1625,0,0,0 +2013,6,19,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-2,0,1816,17,1,0 +2013,7,17,3,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1904,68,1,2111,64,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1403,2,0,1637,-14,0,0 +2013,4,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1515,31,1,1550,19,1,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1931,-4,0,2050,-17,0,0 +2013,9,22,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,2,0,2142,2,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1020,8,0,1309,13,0,0 +2013,8,11,7,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1745,32,1,1850,24,1,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,5,0,1720,-2,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,715,-1,0,810,-11,0,0 +2013,7,15,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,0,0,1935,5,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,-3,0,1319,5,0,0 +2013,10,17,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-2,0,1239,7,0,0 +2013,7,28,7,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,2,0,1551,-6,0,0 +2013,7,14,7,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1715,-16,0,1948,-30,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1210,-3,0,1309,-16,0,0 +2013,9,12,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1858,102,1,2026,94,1,0 +2013,5,18,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,1,0,1000,8,0,0 +2013,10,26,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,2,0,2005,-19,0,0 +2013,9,27,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1225,-1,0,1452,-15,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-2,0,1811,-1,0,0 +2013,5,1,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,-1,0,2115,14,0,0 +2013,10,4,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,-7,0,1927,-13,0,0 +2013,7,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1515,3,0,1900,26,1,0 +2013,7,29,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-3,0,1120,-11,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,0,0,2019,-27,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,33,1,2259,22,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,-1,0,1459,3,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1220,-8,0,1458,-2,0,0 +2013,7,16,2,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,928,-6,0,958,-23,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1436,57,1,1910,39,1,0 +2013,7,27,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,2,0,1840,5,0,0 +2013,4,3,3,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,-2,0,1505,-18,0,0 +2013,7,5,5,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,6,0,541,1,0,0 +2013,10,5,6,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,911,52,1,1439,61,1,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,26,1,2300,32,1,0 +2013,10,4,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-2,0,1900,-23,0,0 +2013,4,13,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-5,0,940,-14,0,0 +2013,10,16,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,751,9,0,0 +2013,10,9,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,755,0,0,910,8,0,0 +2013,10,13,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1355,9,0,1530,5,0,0 +2013,8,7,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,-1,0,1400,-2,0,0 +2013,10,27,7,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1620,5,0,1825,4,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1040,-2,0,1306,-11,0,0 +2013,9,29,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1409,-14,0,1536,-25,0,0 +2013,6,6,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,940,13,0,1040,12,0,0 +2013,10,24,4,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,201,1,1846,188,1,0 +2013,9,24,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,0,0,1304,3,0,0 +2013,4,5,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1330,-9,0,1519,-14,0,0 +2013,10,24,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-1,0,751,-14,0,0 +2013,9,2,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2005,38,1,2105,38,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,19,1,2351,17,1,0 +2013,5,12,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,900,-3,0,1025,-8,0,0 +2013,5,4,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,845,9,0,1110,0,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-3,0,1100,-20,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-2,0,1310,-5,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,2,0,1927,-4,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1419,3,0,1625,0,0,0 +2013,7,13,6,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-9,0,1022,-13,0,0 +2013,9,23,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,940,-2,0,1010,-6,0,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1220,-3,0,1415,-36,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,-1,0,453,-5,0,0 +2013,8,1,4,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,3,0,1455,-5,0,0 +2013,5,8,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,-12,0,1435,-7,0,0 +2013,10,22,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-3,0,2125,-9,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,740,14,0,1045,2,0,0 +2013,6,2,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,615,-4,0,805,14,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,102,1,1505,116,1,0 +2013,10,25,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-10,0,754,-16,0,0 +2013,10,13,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,805,-7,0,910,20,1,0 +2013,8,23,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,113,1,1135,131,1,0 +2013,5,17,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2020,15,1,2125,0,0,0 +2013,4,12,5,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,38,1,1443,33,1,0 +2013,10,30,3,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1305,8,0,1835,-12,0,0 +2013,5,9,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1136,4,0,1214,-2,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1659,9,0,2000,74,1,0 +2013,9,19,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,7,0,1359,31,1,0 +2013,8,14,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-6,0,629,-12,0,0 +2013,5,4,6,9E,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,1011,-11,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-5,0,1939,-7,0,0 +2013,6,14,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1501,6,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,830,54,1,1230,42,1,0 +2013,4,30,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-5,0,1805,-22,0,0 +2013,9,20,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-6,0,458,-10,0,0 +2013,10,20,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2046,-8,0,2206,-4,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-8,0,1310,-21,0,0 +2013,9,25,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1710,-1,0,1757,15,1,0 +2013,5,16,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1601,45,1,1746,26,1,0 +2013,8,14,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,30,1,1315,26,1,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1527,4,0,1711,0,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,3,0,2305,-4,0,0 +2013,7,18,4,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,5,0,1225,3,0,0 +2013,5,23,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,1145,-13,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,10,0,1850,9,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1355,-2,0,1830,-28,0,0 +2013,10,10,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,7,0,1835,5,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,929,11,0,1053,10,0,0 +2013,7,8,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1220,87,1,1353,91,1,0 +2013,10,1,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-4,0,710,-7,0,0 +2013,6,19,3,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1856,-5,0,2103,-10,0,0 +2013,7,3,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-8,0,747,-9,0,0 +2013,5,10,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,824,-5,0,935,-12,0,0 +2013,4,9,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1858,-9,0,2126,-18,0,0 +2013,10,2,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1735,-1,0,2055,-7,0,0 +2013,4,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,731,-2,0,1002,-2,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,-2,0,1615,-9,0,0 +2013,5,23,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1615,-1,0,1944,88,1,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1125,-5,0,1251,-5,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,4,0,1915,5,0,0 +2013,10,10,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,840,0,0,944,-13,0,0 +2013,10,27,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-4,0,1555,3,0,0 +2013,10,22,2,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1205,13,0,1650,14,0,0 +2013,6,25,2,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,69,1,1519,81,1,0 +2013,5,22,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,101,1,1630,82,1,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,844,-1,0,1330,-17,0,0 +2013,8,6,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1503,1,0,1650,-10,0,0 +2013,8,9,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,9,0,2018,62,1,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,37,1,2340,39,1,0 +2013,8,25,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1402,-2,0,1718,-2,0,0 +2013,8,9,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,52,1,700,52,1,0 +2013,5,16,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,14,0,1948,5,0,0 +2013,5,19,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1538,12,0,1843,57,1,0 +2013,10,29,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,1,0,1700,5,0,0 +2013,4,2,2,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,815,-3,0,0 +2013,8,20,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,605,-5,0,855,-7,0,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1122,-5,0,1258,-9,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2250,54,1,2358,40,1,0 +2013,9,4,3,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2345,1,0,547,-2,0,0 +2013,6,10,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,24,1,1745,21,1,0 +2013,5,28,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,6,0,1220,-13,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,-3,0,25,-1,0,0 +2013,6,16,7,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1814,3,0,2015,-14,0,0 +2013,9,20,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1703,-5,0,1928,-13,0,0 +2013,10,21,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,620,2,0,750,-11,0,0 +2013,5,12,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,642,8,0,800,-7,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,38,1,1905,5,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2115,22,1,2330,22,1,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,1,0,1924,-3,0,0 +2013,8,6,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,5,0,1035,1,0,0 +2013,4,11,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1600,-1,0,2112,12,0,0 +2013,4,26,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,2,0,1535,0,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-5,0,2035,2,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,930,2,0,1040,2,0,0 +2013,10,2,3,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2058,29,1,2347,22,1,0 +2013,7,22,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2059,0,,2322,0,1,1 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1630,5,0,1730,0,0,0 +2013,10,5,6,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,550,0,0,901,-6,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1930,-2,0,2044,-5,0,0 +2013,10,12,6,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,-6,0,1039,-12,0,0 +2013,6,21,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,0,,1740,0,1,1 +2013,6,27,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1110,2,0,1238,-11,0,0 +2013,9,24,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1825,-5,0,2054,-20,0,0 +2013,5,19,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,16,1,1351,26,1,0 +2013,4,14,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,31,1,1755,28,1,0 +2013,5,6,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,10,0,1454,3,0,0 +2013,5,12,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1045,6,0,1255,1,0,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,32,1,1440,43,1,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1900,-2,0,2025,-9,0,0 +2013,10,19,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1145,-1,0,1620,-11,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2030,1,0,2259,-21,0,0 +2013,7,28,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,730,-1,0,1033,-7,0,0 +2013,10,19,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,-16,0,2040,-28,0,0 +2013,10,14,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,2,0,2049,-5,0,0 +2013,6,11,2,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1331,18,1,1610,0,0,0 +2013,8,2,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,10,0,1610,8,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1630,-7,0,1725,-21,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1010,-1,0,1305,-11,0,0 +2013,4,23,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,-5,0,810,-19,0,0 +2013,4,8,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1800,19,1,1832,31,1,0 +2013,5,16,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-2,0,1130,0,0,0 +2013,7,11,4,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2025,-8,0,2125,-14,0,0 +2013,9,18,3,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-2,0,1810,-7,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1550,1,0,1810,-13,0,0 +2013,8,17,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-6,0,1254,-15,0,0 +2013,8,18,7,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,715,-6,0,840,-14,0,0 +2013,5,3,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,542,19,1,808,30,1,0 +2013,4,7,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,919,-2,0,1134,-7,0,0 +2013,4,30,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-3,0,1607,-19,0,0 +2013,5,13,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,0,0,1800,-34,0,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,900,-4,0,1049,-21,0,0 +2013,4,9,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1553,-9,0,0 +2013,9,5,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1220,26,1,1350,22,1,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-7,0,824,4,0,0 +2013,9,20,5,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1120,-1,0,1225,1,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1635,-4,0,1956,-21,0,0 +2013,7,7,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1859,-8,0,2005,-7,0,0 +2013,8,27,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-3,0,1827,-23,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,-2,0,1305,0,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-1,0,1950,-22,0,0 +2013,10,28,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-3,0,2000,8,0,0 +2013,6,30,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-1,0,2354,-6,0,0 +2013,8,31,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-1,0,635,31,1,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,2,0,1330,-1,0,0 +2013,5,12,7,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,-1,0,930,-4,0,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1300,1,0,1355,-6,0,0 +2013,7,10,3,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-7,0,1557,-10,0,0 +2013,10,24,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1820,-9,0,2038,7,0,0 +2013,7,16,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-3,0,1813,-14,0,0 +2013,6,20,4,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1715,-7,0,1850,-23,0,0 +2013,6,6,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-4,0,1926,-2,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,2125,6,0,2325,-12,0,0 +2013,10,9,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-4,0,1320,2,0,0 +2013,9,27,5,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,0,0,1255,6,0,0 +2013,9,27,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-8,0,801,-13,0,0 +2013,9,19,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1900,77,1,2230,66,1,0 +2013,7,27,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1847,2,0,2024,-13,0,0 +2013,4,23,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1635,13,0,1655,14,0,0 +2013,7,16,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,-5,0,718,-13,0,0 +2013,6,26,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,4,0,2005,-10,0,0 +2013,10,24,4,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,830,2,0,1145,14,0,0 +2013,4,26,5,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,840,-1,0,1023,-6,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1340,90,1,1440,86,1,0 +2013,5,7,2,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-9,0,1558,11,0,0 +2013,10,28,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,625,0,0,725,-6,0,0 +2013,9,14,6,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,820,-2,0,1650,-6,0,0 +2013,8,17,6,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1245,30,1,1631,26,1,0 +2013,7,29,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1602,243,1,1658,0,1,1 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2035,4,0,2320,19,1,0 +2013,4,6,6,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,700,-2,0,904,-19,0,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1805,-2,0,1920,-7,0,0 +2013,6,15,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,550,-8,0,742,-3,0,0 +2013,9,15,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,0,0,1203,-9,0,0 +2013,4,29,1,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1511,-8,0,1804,-5,0,0 +2013,4,17,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1459,240,1,1715,282,1,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,17,1,2200,13,0,0 +2013,9,2,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-5,0,1518,139,1,0 +2013,5,18,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,15,1,1350,18,1,0 +2013,6,21,5,DL,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2215,34,1,620,21,1,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,800,-4,0,1112,-31,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1635,-4,0,1916,-16,0,0 +2013,6,5,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,615,-2,0,739,1,0,0 +2013,8,14,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,828,-5,0,1037,-18,0,0 +2013,9,11,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,915,-11,0,1035,-19,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1430,8,0,1530,10,0,0 +2013,7,15,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-7,0,1358,-37,0,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1040,-1,0,1305,-13,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1444,4,0,1603,43,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1935,1,0,2132,-4,0,0 +2013,9,21,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-10,0,1240,-13,0,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1720,2,0,1819,-18,0,0 +2013,4,26,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1935,11,0,2251,1,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,820,72,1,1045,61,1,0 +2013,4,11,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-2,0,1713,-10,0,0 +2013,10,24,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2052,0,,2212,0,1,1 +2013,6,27,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-7,0,749,-8,0,0 +2013,7,11,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2335,-2,0,609,-12,0,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-3,0,1649,-9,0,0 +2013,7,3,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,810,15,1,1101,5,0,0 +2013,4,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,920,1,0,940,-11,0,0 +2013,10,10,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,0,0,1015,-8,0,0 +2013,9,4,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1245,-6,0,1405,-5,0,0 +2013,7,15,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-2,0,1425,-10,0,0 +2013,5,27,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1925,48,1,2110,37,1,0 +2013,10,24,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,-6,0,2110,-6,0,0 +2013,9,14,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-4,0,1420,-11,0,0 +2013,10,15,2,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1005,-1,0,1505,-14,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,500,0,0,736,-5,0,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,627,-5,0,811,-7,0,0 +2013,10,29,2,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,1,0,1245,5,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1355,-2,0,1519,-2,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1204,-4,0,1423,-34,0,0 +2013,7,31,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,16,1,1330,2,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1710,-2,0,1811,-18,0,0 +2013,8,15,4,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-7,0,1050,-23,0,0 +2013,7,23,2,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,172,1,807,173,1,0 +2013,6,10,1,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,600,-8,0,845,1,0,0 +2013,6,11,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1135,-2,0,1300,2,0,0 +2013,7,27,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1102,6,0,1305,-10,0,0 +2013,8,23,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1105,67,1,1156,77,1,0 +2013,8,1,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,77,1,2322,52,1,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,-5,0,728,-6,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,86,1,2155,98,1,0 +2013,5,15,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1420,-2,0,1450,-25,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,555,6,0,915,-2,0,0 +2013,6,18,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,53,1,1905,53,1,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,755,22,1,1125,23,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-2,0,1027,-9,0,0 +2013,5,24,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1511,43,1,1556,34,1,0 +2013,6,13,4,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,656,0,0,0 +2013,6,16,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-3,0,1312,-8,0,0 +2013,6,20,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1348,23,1,1545,12,0,0 +2013,10,20,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-9,0,1520,-26,0,0 +2013,10,27,7,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,0,0,1955,0,0,0 +2013,4,4,4,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1206,15,1,1502,-6,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,-1,0,1013,-3,0,0 +2013,5,13,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2048,-6,0,2152,-10,0,0 +2013,7,1,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1910,12,0,1915,6,0,0 +2013,10,8,2,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2210,-11,0,844,7,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1835,6,0,1930,7,0,0 +2013,5,23,4,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2140,-4,0,10,2,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,0,0,1440,12,0,0 +2013,8,26,1,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1641,24,1,1944,12,0,0 +2013,4,8,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,5,0,2140,-2,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-4,0,1108,-1,0,0 +2013,9,28,6,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1045,-9,0,1219,-19,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1751,16,1,1916,8,0,0 +2013,4,22,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1410,-1,0,1533,9,0,0 +2013,6,12,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1452,-6,0,1659,-22,0,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1920,22,1,2050,25,1,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1120,-3,0,1435,-5,0,0 +2013,4,29,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,750,-5,0,1023,-2,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,-8,0,448,-2,0,0 +2013,9,22,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,13,0,1855,60,1,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,41,1,1826,31,1,0 +2013,4,6,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-6,0,1913,-13,0,0 +2013,8,17,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,-3,0,1440,-32,0,0 +2013,5,2,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,630,0,0,730,9,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1645,-6,0,1827,-16,0,0 +2013,8,23,5,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,710,1,0,1010,3,0,0 +2013,7,25,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,3,0,1440,-9,0,0 +2013,10,7,1,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,740,-2,0,1015,-8,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,900,4,0,1010,-8,0,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,4,0,1630,11,0,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,-2,0,1945,0,0,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1312,8,0,1412,-2,0,0 +2013,9,5,4,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,-6,0,1708,-28,0,0 +2013,8,4,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1810,7,0,1914,3,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-7,0,1410,-1,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1330,12,0,2147,-16,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,24,1,1355,49,1,0 +2013,9,3,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-9,0,1959,-8,0,0 +2013,7,11,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,7,0,1415,5,0,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-2,0,859,-33,0,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,825,-1,0,950,-4,0,0 +2013,6,27,4,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,5,0,1720,-5,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2045,-4,0,2245,0,0,0 +2013,4,9,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-2,0,810,-11,0,0 +2013,9,13,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,-11,0,1539,-17,0,0 +2013,10,20,7,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1120,-7,0,1230,-7,0,0 +2013,8,6,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-5,0,1211,0,0,0 +2013,5,31,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,850,6,0,942,-4,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,80,1,2155,83,1,0 +2013,10,8,2,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,0,0,820,14,0,0 +2013,6,27,4,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,0,,2126,0,1,1 +2013,5,26,7,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,920,27,1,1100,21,1,0 +2013,4,8,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1828,3,0,2104,39,1,0 +2013,5,28,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,16,1,1040,5,0,0 +2013,7,28,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2015,39,1,2020,34,1,0 +2013,4,5,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,2,0,1127,-14,0,0 +2013,10,24,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1710,43,1,2016,16,1,0 +2013,10,21,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,0,0,910,-1,0,0 +2013,10,10,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1925,1,0,2045,14,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,615,-1,0,835,-7,0,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,630,-5,0,1125,9,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1251,6,0,1536,6,0,0 +2013,9,25,3,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,41,1,2151,23,1,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1430,17,1,1550,21,1,0 +2013,7,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,747,9,0,947,9,0,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,700,-3,0,930,-21,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,-4,0,957,-17,0,0 +2013,10,20,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1825,-4,0,1850,-3,0,0 +2013,10,10,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1758,-7,0,1845,1,0,0 +2013,4,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1508,32,1,1801,72,1,0 +2013,6,30,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,940,-5,0,946,-4,0,0 +2013,8,20,2,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-10,0,1756,-5,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1533,17,1,1725,16,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,650,-2,0,813,-11,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2100,0,,2235,0,1,1 +2013,10,10,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,844,-4,0,1605,-17,0,0 +2013,7,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,18,1,2009,11,0,0 +2013,6,10,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1220,-1,0,1350,-5,0,0 +2013,8,25,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1414,-8,0,1705,-15,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,9,0,2030,-14,0,0 +2013,5,11,6,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,935,1,0,1040,-5,0,0 +2013,6,29,6,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1822,107,1,2143,111,1,0 +2013,8,25,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-4,0,1237,-17,0,0 +2013,5,29,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,619,-10,0,745,-31,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,-6,0,1049,-6,0,0 +2013,9,21,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,745,-3,0,1100,-15,0,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1810,-2,0,2357,-4,0,0 +2013,4,16,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1659,7,0,1906,-2,0,0 +2013,4,2,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,934,-10,0,1044,7,0,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1405,-1,0,1530,-4,0,0 +2013,6,30,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1710,-4,0,1925,-7,0,0 +2013,10,17,4,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,808,-4,0,1058,-8,0,0 +2013,5,30,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1815,49,1,7,54,1,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1500,24,1,1615,14,0,0 +2013,5,12,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-11,0,1007,-18,0,0 +2013,7,4,4,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,-4,0,2216,8,0,0 +2013,4,20,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1050,1,0,1927,-6,0,0 +2013,8,12,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,23,1,1350,14,0,0 +2013,6,1,6,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1710,171,1,1805,155,1,0 +2013,10,6,7,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1825,0,0,2135,24,1,0 +2013,9,13,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1805,-11,0,2045,-20,0,0 +2013,6,12,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1910,0,,2045,0,1,1 +2013,6,20,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2207,17,1,2351,8,0,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,38,1,1525,29,1,0 +2013,4,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-7,0,641,-2,0,0 +2013,8,12,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-8,0,654,-13,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1820,37,1,2050,29,1,0 +2013,4,30,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,37,1,1925,26,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1535,7,0,1921,36,1,0 +2013,4,14,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,20,-4,0,726,-22,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1803,-3,0,1838,-6,0,0 +2013,7,30,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,0,0,2022,-17,0,0 +2013,5,21,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1551,-6,0,1749,-19,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1053,-5,0,1527,-29,0,0 +2013,10,2,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,833,-6,0,942,-7,0,0 +2013,10,23,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1726,-1,0,1850,-11,0,0 +2013,5,5,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1345,-7,0,1510,4,0,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1615,45,1,1735,40,1,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1810,4,0,1915,2,0,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,945,5,0,1540,0,0,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-3,0,1245,4,0,0 +2013,10,22,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1550,-8,0,1752,-15,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,855,-8,0,1025,-10,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1430,3,0,1840,-4,0,0 +2013,8,26,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,940,-6,0,1010,-17,0,0 +2013,6,28,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-5,0,1114,-10,0,0 +2013,6,13,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,12,0,1912,6,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2025,44,1,2226,63,1,0 +2013,10,31,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-1,0,1537,-1,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1610,-1,0,1619,-5,0,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,-4,0,1430,-12,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1036,-5,0,1240,-12,0,0 +2013,4,26,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-5,0,1951,-11,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,0,0,1055,-21,0,0 +2013,5,28,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,639,-3,0,929,-6,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1830,-3,0,2145,-10,0,0 +2013,9,14,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1920,-7,0,2105,-13,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1045,1,0,1350,-7,0,0 +2013,9,23,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-4,0,1057,-22,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2050,68,1,10,66,1,0 +2013,7,31,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,13,0,2215,28,1,0 +2013,8,1,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,855,-1,0,1020,0,0,0 +2013,10,31,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,705,-10,0,1030,-20,0,0 +2013,9,20,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,610,7,0,904,14,0,0 +2013,9,5,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2153,-4,0,2241,-24,0,0 +2013,8,21,3,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1030,-4,0,1247,4,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2055,3,0,2305,12,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1815,26,1,2015,9,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1737,2,0,2059,-31,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1605,14,0,1930,0,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,701,4,0,1541,-17,0,0 +2013,8,24,6,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1434,-2,0,1607,-5,0,0 +2013,8,12,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1409,-4,0,2245,-7,0,0 +2013,6,17,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,620,3,0,750,-1,0,0 +2013,10,14,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,0,0,1849,-2,0,0 +2013,7,3,3,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1652,33,1,1743,26,1,0 +2013,5,13,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1021,2,0,1145,3,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2105,17,1,2246,6,0,0 +2013,8,13,2,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2350,60,1,800,59,1,0 +2013,5,24,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1122,-1,0,1407,-3,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1025,3,0,1240,-12,0,0 +2013,4,24,3,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,615,-4,0,835,-13,0,0 +2013,9,25,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1640,27,1,1920,29,1,0 +2013,6,10,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,1,0,650,-8,0,0 +2013,8,14,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,3,0,904,-7,0,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1456,13,0,1751,5,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1640,32,1,2320,22,1,0 +2013,4,7,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,17,1,1054,13,0,0 +2013,4,28,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1300,71,1,1431,81,1,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,12,0,2230,3,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,-2,0,1030,-9,0,0 +2013,8,7,3,9E,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,3,0,1716,-1,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,825,-4,0,1008,-18,0,0 +2013,7,1,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-7,0,927,-8,0,0 +2013,4,19,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1243,-10,0,1419,-16,0,0 +2013,10,29,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1353,-6,0,1910,-30,0,0 +2013,5,5,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-6,0,846,-9,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,650,6,0,750,7,0,0 +2013,9,29,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2135,5,0,2231,-1,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1905,7,0,2235,11,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1335,3,0,1725,-11,0,0 +2013,8,3,6,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1815,37,1,1940,30,1,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1345,26,1,1615,18,1,0 +2013,7,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,-1,0,1859,26,1,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1730,32,1,2200,103,1,0 +2013,6,25,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1245,140,1,1820,130,1,0 +2013,6,24,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1857,23,1,2032,12,0,0 +2013,6,13,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,930,8,0,1055,-3,0,0 +2013,7,5,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-8,0,1153,-7,0,0 +2013,9,20,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-3,0,900,-7,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1945,1,0,2235,-11,0,0 +2013,8,7,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,0,0,745,-3,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2205,14,0,2305,5,0,0 +2013,6,4,2,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,715,-5,0,940,-1,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1355,20,1,1455,11,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1020,23,1,1140,28,1,0 +2013,8,10,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,79,1,1154,84,1,0 +2013,5,11,6,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,0,0,1430,-1,0,0 +2013,6,27,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,1,0,940,-7,0,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1158,43,1,2036,32,1,0 +2013,9,28,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1750,1,0,1925,-7,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1935,4,0,2210,1,0,0 +2013,6,19,3,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1600,-4,0,1940,-9,0,0 +2013,9,28,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-6,0,1041,-5,0,0 +2013,8,4,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,43,1,1345,47,1,0 +2013,5,31,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2050,-13,0,2305,-18,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2055,0,0,2200,-8,0,0 +2013,6,13,4,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1721,107,1,1925,103,1,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,-5,0,1414,9,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,855,11,0,1007,-6,0,0 +2013,4,13,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-5,0,1347,-10,0,0 +2013,6,3,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,-3,0,1403,-4,0,0 +2013,10,24,4,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1042,27,1,1606,9,0,0 +2013,10,21,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1555,-1,0,1705,-1,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1440,62,1,1915,54,1,0 +2013,7,25,4,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,7,0,1940,17,1,0 +2013,6,24,1,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,-4,0,2140,2,0,0 +2013,7,18,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2200,-1,0,2346,-8,0,0 +2013,5,25,6,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,852,-2,0,1035,-18,0,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-4,0,2205,-13,0,0 +2013,9,26,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1000,1,0,1306,-6,0,0 +2013,7,9,2,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,925,3,0,1105,-2,0,0 +2013,5,30,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1117,-7,0,1245,-14,0,0 +2013,10,22,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,-5,0,2225,-10,0,0 +2013,10,6,7,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-5,0,905,5,0,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,-2,0,737,-13,0,0 +2013,4,27,6,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1122,-8,0,1427,-19,0,0 +2013,8,9,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,-10,0,1610,-19,0,0 +2013,7,27,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1539,4,0,1739,-13,0,0 +2013,5,7,2,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1217,15,1,1758,4,0,0 +2013,10,20,7,AA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,810,-4,0,1545,-3,0,0 +2013,7,22,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,705,-2,0,935,-5,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1614,13,0,1735,5,0,0 +2013,7,6,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,-7,0,1007,11,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1115,4,0,1639,26,1,0 +2013,5,31,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,0,0,1755,14,0,0 +2013,8,30,5,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,1,0,905,-16,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1038,-5,0,1133,-18,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1305,31,1,1835,42,1,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2105,10,0,2240,10,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1731,15,1,1933,-3,0,0 +2013,8,10,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2205,-9,0,10,38,1,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1140,9,0,1305,9,0,0 +2013,8,19,1,OO,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1612,31,1,1725,26,1,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,-4,0,2155,-4,0,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,740,-2,0,1110,-17,0,0 +2013,10,11,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,2,0,1200,-18,0,0 +2013,10,1,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,855,-3,0,1016,-1,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1540,33,1,1830,27,1,0 +2013,8,29,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,942,-8,0,1123,-9,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1955,-4,0,2132,-15,0,0 +2013,4,15,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-4,0,1905,14,0,0 +2013,6,22,6,9E,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1101,-3,0,1227,-13,0,0 +2013,10,10,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,17,1,2130,13,0,0 +2013,4,18,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,915,3,0,1211,-5,0,0 +2013,9,11,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-15,0,1850,10,0,0 +2013,9,2,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1409,-22,0,0 +2013,6,19,3,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,22,1,1600,0,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1230,-4,0,1620,1,0,0 +2013,8,20,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,-3,0,1705,-16,0,0 +2013,5,26,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1107,-5,0,1648,-16,0,0 +2013,6,7,5,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,72,1,1330,69,1,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,0,0,2218,4,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,650,-1,0,910,-11,0,0 +2013,7,28,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,1,0,834,-1,0,0 +2013,6,3,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1653,3,0,1819,-5,0,0 +2013,10,22,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1020,-2,0,1245,0,0,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-1,0,1500,-1,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,725,15,1,951,10,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,99,1,1310,94,1,0 +2013,7,19,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1625,5,0,2025,-3,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,0,0,938,-6,0,0 +2013,10,20,7,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1640,7,0,1805,0,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1035,0,0,1221,-8,0,0 +2013,8,22,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-7,0,1915,-14,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,3,0,1705,-8,0,0 +2013,8,24,6,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1210,-6,0,1550,-17,0,0 +2013,5,22,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1803,124,1,1943,0,1,1 +2013,5,30,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-4,0,1442,-5,0,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1610,5,0,1800,-11,0,0 +2013,9,15,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,15,1,2015,20,1,0 +2013,4,3,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1050,-7,0,1855,-11,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1910,1,0,2100,-4,0,0 +2013,5,19,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2358,16,1,744,37,1,0 +2013,7,14,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,0,0,1341,-12,0,0 +2013,4,26,5,OO,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,2159,-7,0,2337,-11,0,0 +2013,8,25,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-5,0,1820,-17,0,0 +2013,7,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1708,-1,0,1912,-2,0,0 +2013,4,10,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1056,24,1,1220,12,0,0 +2013,9,9,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1400,0,0,1540,-18,0,0 +2013,10,21,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1825,-6,0,1850,4,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1415,19,1,1625,10,0,0 +2013,10,28,1,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,708,-5,0,1035,-18,0,0 +2013,6,25,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1855,123,1,2100,139,1,0 +2013,7,28,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,-5,0,2350,-21,0,0 +2013,8,11,7,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1820,6,0,2000,-2,0,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,3,0,2005,-16,0,0 +2013,6,19,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2045,-7,0,2150,-24,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,54,1,2320,37,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2200,30,1,2255,20,1,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2059,-13,0,0 +2013,8,20,2,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1834,18,1,2105,15,1,0 +2013,8,8,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-1,0,1026,38,1,0 +2013,7,19,5,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1850,-2,0,2125,-20,0,0 +2013,5,26,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1039,-13,0,1057,-28,0,0 +2013,9,24,2,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2005,-6,0,2250,-19,0,0 +2013,6,21,5,YV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1700,5,0,1820,8,0,0 +2013,9,6,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,-1,0,1905,10,0,0 +2013,7,31,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1730,1,0,1945,7,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-1,0,841,18,1,0 +2013,5,12,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-3,0,1340,-7,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1755,13,0,2255,20,1,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1700,76,1,2129,90,1,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1643,22,1,1815,22,1,0 +2013,9,12,4,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-6,0,1334,-12,0,0 +2013,4,9,2,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2205,-3,0,550,3,0,0 +2013,8,9,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1507,10,0,1648,8,0,0 +2013,10,31,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-4,0,1432,-7,0,0 +2013,6,22,6,9E,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,935,18,1,1128,11,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1040,-4,0,1400,-13,0,0 +2013,8,15,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1435,3,0,2255,19,1,0 +2013,7,19,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,46,1,1850,23,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1112,-3,0,1239,-14,0,0 +2013,10,28,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-2,0,1833,-30,0,0 +2013,5,2,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,11,0,1715,-2,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-3,0,1515,-12,0,0 +2013,6,27,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1625,-3,0,1935,-3,0,0 +2013,7,20,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,1,0,1330,-14,0,0 +2013,8,10,6,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-3,0,1124,-31,0,0 +2013,10,16,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,3,0,834,-10,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-5,0,2133,-7,0,0 +2013,5,8,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,755,3,0,900,-10,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2109,-6,0,2314,-30,0,0 +2013,10,23,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1201,-1,0,1344,-10,0,0 +2013,5,13,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-1,0,1520,-7,0,0 +2013,5,14,2,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-7,0,902,-18,0,0 +2013,7,28,7,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-7,0,1024,-2,0,0 +2013,10,30,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-6,0,823,-2,0,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,6,0,1929,-13,0,0 +2013,8,13,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,0,0,1321,-20,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1500,38,1,1605,32,1,0 +2013,5,13,1,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-13,0,2106,-14,0,0 +2013,8,18,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1120,4,0,1240,3,0,0 +2013,6,18,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1827,5,0,2110,-6,0,0 +2013,6,27,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-6,0,904,-7,0,0 +2013,9,17,2,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,840,-6,0,1447,-12,0,0 +2013,7,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2233,11,0,417,3,0,0 +2013,7,14,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,26,1,2015,30,1,0 +2013,10,29,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1121,14,0,1225,10,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1726,-7,0,1852,-26,0,0 +2013,4,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,-1,0,1640,0,0,0 +2013,4,22,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,0,0,1327,-30,0,0 +2013,8,6,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,16,1,1455,-11,0,0 +2013,6,23,7,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1543,42,1,1835,61,1,0 +2013,7,5,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-9,0,1235,10,0,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-5,0,1054,-5,0,0 +2013,6,15,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1600,4,0,1646,13,0,0 +2013,5,22,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,825,1,0,1005,-12,0,0 +2013,7,27,6,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1829,-3,0,2134,-16,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-3,0,1840,9,0,0 +2013,5,19,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1855,140,1,2005,135,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1255,10,0,1355,2,0,0 +2013,10,26,6,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1430,17,1,2015,8,0,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,850,0,0,1005,-2,0,0 +2013,9,14,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1127,-3,0,1225,-12,0,0 +2013,5,19,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,0,0,1215,-8,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,-3,0,2310,-9,0,0 +2013,8,4,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,-6,0,1040,-7,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,910,-1,0,1034,9,0,0 +2013,8,6,2,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1559,106,1,1910,94,1,0 +2013,10,26,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-6,0,2020,-12,0,0 +2013,8,20,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1130,14,0,1745,9,0,0 +2013,8,2,5,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,375,1,1925,372,1,0 +2013,10,28,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1650,30,1,1850,17,1,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-6,0,818,-9,0,0 +2013,10,3,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,-3,0,1900,-21,0,0 +2013,6,15,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-4,0,1310,-4,0,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1238,-6,0,1828,-45,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-6,0,1100,-25,0,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-3,0,810,13,0,0 +2013,10,20,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1603,1,0,1900,-4,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-3,0,921,-21,0,0 +2013,4,11,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,956,151,1,1750,142,1,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-6,0,1920,3,0,0 +2013,9,7,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1245,-1,0,2116,20,1,0 +2013,6,9,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1537,-5,0,1653,-14,0,0 +2013,9,23,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1920,-6,0,2040,0,0,0 +2013,8,20,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1440,-3,0,1654,-21,0,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1300,-1,0,1419,-10,0,0 +2013,9,20,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2010,17,1,2245,25,1,0 +2013,8,21,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1840,-2,0,2105,-11,0,0 +2013,5,29,3,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1140,-1,0,1253,-9,0,0 +2013,9,30,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,3,0,1500,-4,0,0 +2013,7,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1645,0,0,1820,-8,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,2,0,1908,2,0,0 +2013,6,26,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1038,14,0,1150,4,0,0 +2013,8,10,6,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1000,-8,0,1225,16,1,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1435,0,0,1625,0,0,0 +2013,5,4,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,735,-5,0,920,-17,0,0 +2013,4,20,6,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1259,16,1,1541,3,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,13,0,1430,0,0,0 +2013,10,12,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1650,0,0,1700,11,0,0 +2013,6,12,3,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,-10,0,915,-14,0,0 +2013,9,12,4,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,11,0,1920,0,0,0 +2013,7,15,1,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,-5,0,1641,0,1,1 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2025,27,1,50,19,1,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1930,-3,0,2304,0,0,0 +2013,9,8,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1900,13,0,2015,3,0,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1705,9,0,1805,2,0,0 +2013,6,10,1,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,650,-5,0,725,-7,0,0 +2013,7,28,7,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,825,-4,0,1207,-23,0,0 +2013,8,19,1,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1633,-12,0,0 +2013,4,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1525,-2,0,1643,-19,0,0 +2013,10,20,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-1,0,1629,-8,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,111,1,1600,123,1,0 +2013,8,7,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,755,-3,0,1055,8,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2110,31,1,2350,24,1,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1147,8,0,2023,4,0,0 +2013,10,15,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-4,0,1921,2,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1754,0,0,1845,-4,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1403,-2,0,1539,-11,0,0 +2013,4,21,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-10,0,1453,-23,0,0 +2013,9,19,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1700,15,1,1950,43,1,0 +2013,9,25,3,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,625,-2,0,750,-9,0,0 +2013,5,21,2,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2106,81,1,2339,69,1,0 +2013,7,1,1,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2350,-4,0,548,9,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,-2,0,1402,-21,0,0 +2013,6,12,3,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,0,0,935,-6,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1834,-3,0,2000,-6,0,0 +2013,8,4,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,26,1,1455,13,0,0 +2013,8,14,3,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-10,0,936,-35,0,0 +2013,5,16,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2155,-3,0,2335,-8,0,0 +2013,6,4,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1255,-1,0,1600,-21,0,0 +2013,6,20,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2141,-2,0,2359,-29,0,0 +2013,4,6,6,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-4,0,1027,-14,0,0 +2013,5,30,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1509,-3,0,1629,-13,0,0 +2013,8,17,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,920,-10,0,1040,-5,0,0 +2013,6,11,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,2010,87,1,2135,83,1,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1215,0,0,1320,-5,0,0 +2013,7,29,1,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,700,0,0,1020,7,0,0 +2013,8,1,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,6,0,1255,1,0,0 +2013,10,12,6,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,-5,0,1525,-6,0,0 +2013,5,14,2,9E,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1020,-5,0,1216,-17,0,0 +2013,6,17,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,20,1,2320,13,0,0 +2013,6,13,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1820,-6,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1320,-1,0,1530,3,0,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1335,-3,0,1716,-4,0,0 +2013,10,24,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-9,0,1907,-18,0,0 +2013,6,22,6,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1330,2,0,1413,-5,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,24,1,1041,15,1,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1855,155,1,2005,143,1,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,928,191,1,1138,161,1,0 +2013,9,21,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-6,0,936,1,0,0 +2013,6,3,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-9,0,1240,-17,0,0 +2013,4,4,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,-8,0,1819,-29,0,0 +2013,10,6,7,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1225,9,0,1540,2,0,0 +2013,4,19,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2240,42,1,715,31,1,0 +2013,7,3,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1545,0,0,1710,-1,0,0 +2013,7,18,4,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,730,-4,0,1021,-20,0,0 +2013,10,5,6,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-4,0,2145,-14,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1051,-3,0,1137,2,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,13,0,1757,8,0,0 +2013,7,29,1,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1220,-2,0,1541,-23,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,14,0,1935,1,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,-3,0,1455,-14,0,0 +2013,5,25,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,1,0,1214,-13,0,0 +2013,6,17,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,745,-2,0,905,3,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1025,-2,0,1210,-23,0,0 +2013,10,25,5,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1805,44,1,2114,48,1,0 +2013,9,22,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1859,-5,0,2156,-12,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1140,-3,0,1315,-15,0,0 +2013,6,29,6,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,30,1,1424,24,1,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,19,1,1550,12,0,0 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2157,-3,0,2250,-1,0,0 +2013,6,20,4,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1705,8,0,1835,-1,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,-2,0,1949,-9,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2110,29,1,2238,8,0,0 +2013,6,27,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1624,-8,0,1715,-13,0,0 +2013,7,27,6,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-3,0,820,12,0,0 +2013,5,15,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,-1,0,2034,-3,0,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,1,0,1115,1,0,0 +2013,10,19,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,900,8,0,1425,1,0,0 +2013,10,24,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,259,1,2015,248,1,0 +2013,7,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,1,0,1735,-3,0,0 +2013,4,2,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,3,0,745,-1,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,-8,0,1805,-6,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,36,1,2105,26,1,0 +2013,4,1,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,0,0,1639,1,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1125,12,0,1635,16,1,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1210,-2,0,1357,-6,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1710,23,1,1800,3,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2210,-6,0,2335,-4,0,0 +2013,10,13,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,825,-1,0,1636,-29,0,0 +2013,8,29,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-5,0,1035,-14,0,0 +2013,9,15,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,21,1,1457,-1,0,0 +2013,5,12,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,934,-5,0,1008,8,0,0 +2013,6,12,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1345,1,0,1535,-15,0,0 +2013,6,18,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1819,38,1,2038,22,1,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,540,0,0,825,-8,0,0 +2013,5,11,6,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,814,-3,0,1035,-5,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-2,0,1908,-2,0,0 +2013,7,17,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,1,0,1834,0,0,0 +2013,10,22,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1735,34,1,1915,18,1,0 +2013,7,28,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,759,-3,0,858,-11,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1825,0,0,2030,-2,0,0 +2013,4,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,1010,-1,0,1535,-21,0,0 +2013,8,27,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,855,0,0,1210,-7,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2055,70,1,2253,91,1,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,18,1,2055,-1,0,0 +2013,4,11,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1457,19,1,1634,8,0,0 +2013,8,2,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,958,-9,0,0 +2013,4,1,1,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1409,-8,0,1645,-15,0,0 +2013,5,23,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,-1,0,900,-8,0,0 +2013,8,15,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,4,0,805,1,0,0 +2013,8,27,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1622,-1,0,1805,1,0,0 +2013,6,11,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,68,1,1731,56,1,0 +2013,10,4,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1829,-4,0,2100,3,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-7,0,925,-27,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1343,12,0,1750,16,1,0 +2013,8,27,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1416,-2,0,1512,-14,0,0 +2013,5,21,2,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1443,0,,1553,0,1,1 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,0,0,1440,-5,0,0 +2013,8,4,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-6,0,1606,-9,0,0 +2013,8,5,1,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,720,-2,0,1445,-13,0,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,0,0,1746,-7,0,0 +2013,7,21,7,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1645,2,0,1935,-11,0,0 +2013,7,10,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,2,0,2155,-3,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,700,-4,0,835,-16,0,0 +2013,4,27,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,19,1,1505,-7,0,0 +2013,8,6,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1435,10,0,1800,-7,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1200,-5,0,1428,-16,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,26,1,1630,23,1,0 +2013,6,5,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1017,-1,0,1318,-2,0,0 +2013,7,3,3,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,2,0,2205,-20,0,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1305,-5,0,1627,-12,0,0 +2013,10,6,7,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,930,-7,0,1151,-9,0,0 +2013,6,13,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1950,-1,0,2310,-1,0,0 +2013,9,26,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,847,-14,0,0 +2013,4,8,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-9,0,2000,-12,0,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,935,3,0,1040,-11,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1125,-4,0,1309,-11,0,0 +2013,4,22,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,9,0,1210,7,0,0 +2013,6,24,1,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,-2,0,1740,-15,0,0 +2013,5,16,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,645,-1,0,908,13,0,0 +2013,8,22,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,2,0,754,9,0,0 +2013,4,30,2,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-9,0,1252,-20,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1955,19,1,2115,25,1,0 +2013,4,18,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,58,1,2300,59,1,0 +2013,5,15,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,800,-7,0,929,-19,0,0 +2013,10,6,7,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-9,0,1544,-3,0,0 +2013,7,27,6,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1145,14,0,1446,33,1,0 +2013,7,15,1,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1740,-3,0,2000,-8,0,0 +2013,8,16,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1114,-1,0,1838,-11,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1623,-2,0,1728,-8,0,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1220,0,0,1442,2,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1705,-1,0,2000,-4,0,0 +2013,5,21,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,650,-3,0,808,-26,0,0 +2013,10,22,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1845,-5,0,2210,-21,0,0 +2013,4,5,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1800,44,1,1925,35,1,0 +2013,7,1,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-1,0,640,2,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1825,5,0,2051,20,1,0 +2013,8,5,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1751,-7,0,2059,-2,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,710,-4,0,823,-20,0,0 +2013,7,19,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,64,1,2156,40,1,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,1,0,1034,-11,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,30,1,1955,38,1,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2051,0,0,2055,-6,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,830,-6,0,1049,-6,0,0 +2013,10,22,2,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,-3,0,1340,-2,0,0 +2013,9,13,5,EV,10792,Buffalo Niagara International,Buffalo,NY,12953,LaGuardia,New York,NY,1100,-2,0,1224,-14,0,0 +2013,10,18,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2200,0,0,2328,-2,0,0 +2013,5,8,3,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1505,148,1,1618,159,1,0 +2013,9,10,2,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-1,0,1005,-22,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1600,34,1,1710,30,1,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2145,21,1,2332,20,1,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,2,0,1350,-1,0,0 +2013,10,16,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,605,-12,0,723,-14,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,4,0,1300,-8,0,0 +2013,10,4,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,-10,0,1750,-41,0,0 +2013,8,14,3,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2335,0,0,759,-17,0,0 +2013,10,28,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-1,0,628,-12,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1359,49,1,1539,28,1,0 +2013,7,19,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-6,0,1035,-22,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2155,17,1,15,17,1,0 +2013,5,2,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2056,-3,0,2209,-24,0,0 +2013,4,29,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1910,-2,0,2020,1,0,0 +2013,5,23,4,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1251,-9,0,1446,-4,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1530,90,1,1650,74,1,0 +2013,7,3,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2010,-3,0,2156,-21,0,0 +2013,8,13,2,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1040,32,1,1240,16,1,0 +2013,6,27,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,91,1,755,95,1,0 +2013,8,26,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,630,-2,0,750,-9,0,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1120,2,0,1320,-2,0,0 +2013,10,16,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1634,-10,0,1843,-14,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,-5,0,2332,-15,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,-1,0,1205,-12,0,0 +2013,10,25,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,23,1,1341,13,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,749,-9,0,946,-26,0,0 +2013,9,14,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1516,-11,0,1635,-16,0,0 +2013,6,4,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1725,4,0,1835,9,0,0 +2013,10,19,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-1,0,1115,-10,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,4,0,1749,7,0,0 +2013,6,18,2,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1120,1,0,1515,-8,0,0 +2013,10,29,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,725,11,0,953,0,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2205,27,1,2305,33,1,0 +2013,8,31,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1200,-5,0,1429,-45,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1631,-3,0,1639,18,1,0 +2013,5,7,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2115,-3,0,2325,-7,0,0 +2013,7,26,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2014,40,1,2229,38,1,0 +2013,9,29,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,900,31,1,1700,12,0,0 +2013,10,27,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1530,-2,0,1820,-19,0,0 +2013,7,13,6,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,72,1,714,83,1,0 +2013,8,21,3,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,540,-9,0,753,-13,0,0 +2013,8,19,1,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,0,0,1330,-6,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1028,10,0,1302,4,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-2,0,1007,-1,0,0 +2013,6,29,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,4,0,1405,6,0,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1526,43,1,1706,38,1,0 +2013,8,15,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,15,1,1420,10,0,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2248,11,0,710,-16,0,0 +2013,8,24,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1402,-7,0,1606,-6,0,0 +2013,6,3,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1515,0,0,1800,-16,0,0 +2013,4,13,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1350,26,1,2005,1,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,20,1,1250,18,1,0 +2013,8,27,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1810,-5,0,2100,-24,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,-1,0,2145,-7,0,0 +2013,10,25,5,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1630,-6,0,1804,-22,0,0 +2013,10,5,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-7,0,1002,-19,0,0 +2013,5,31,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1407,19,1,1815,-1,0,0 +2013,10,18,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,900,19,1,1130,13,0,0 +2013,9,29,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1455,9,0,1744,11,0,0 +2013,5,8,3,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2010,-3,0,2254,0,0,0 +2013,5,22,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,0,0,1125,1,0,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,929,-6,0,1056,4,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1550,44,1,2035,18,1,0 +2013,4,9,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,-5,0,1318,-17,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-4,0,830,-1,0,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1905,7,0,2130,3,0,0 +2013,5,4,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,955,-9,0,1431,-9,0,0 +2013,7,8,1,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,-4,0,1352,-6,0,0 +2013,10,10,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1913,-2,0,2244,-8,0,0 +2013,9,15,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,3,0,822,6,0,0 +2013,10,4,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,0,0,1805,-10,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,915,-4,0,1025,-11,0,0 +2013,7,10,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,5,0,1255,-2,0,0 +2013,5,13,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,856,-28,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1615,11,0,1720,18,1,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-1,0,1944,3,0,0 +2013,5,17,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-4,0,845,-12,0,0 +2013,5,11,6,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1755,-1,0,2016,-15,0,0 +2013,8,5,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1651,-2,0,2056,10,0,0 +2013,6,30,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1533,-7,0,1646,0,1,1 +2013,4,4,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1418,7,0,1844,-4,0,0 +2013,7,14,7,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2100,15,1,2325,24,1,0 +2013,5,30,4,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1954,2,0,2146,7,0,0 +2013,9,26,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1357,-6,0,1610,1,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1840,73,1,2111,64,1,0 +2013,7,12,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2347,-3,0,706,-32,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1652,14,0,1802,16,1,0 +2013,9,22,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-5,0,1155,-18,0,0 +2013,10,2,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1740,26,1,1855,20,1,0 +2013,4,2,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1603,-3,0,1914,4,0,0 +2013,7,6,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1440,-6,0,1605,-3,0,0 +2013,10,21,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,5,0,1830,15,1,0 +2013,9,9,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,2,0,1937,-8,0,0 +2013,5,1,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1410,-4,0,1640,-9,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-5,0,1525,-11,0,0 +2013,6,23,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,955,-19,0,0 +2013,5,18,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1216,-7,0,1355,-10,0,0 +2013,9,16,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1628,0,0,2030,-5,0,0 +2013,6,14,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1845,79,1,2359,66,1,0 +2013,4,7,7,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,13,0,1907,32,1,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-3,0,1833,-5,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-3,0,1328,10,0,0 +2013,10,3,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1456,-8,0,1645,-11,0,0 +2013,6,25,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1210,13,0,1435,7,0,0 +2013,4,12,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-3,0,803,50,1,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-3,0,1015,-23,0,0 +2013,6,22,6,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-3,0,1530,-2,0,0 +2013,8,26,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2040,-15,0,2154,-30,0,0 +2013,8,4,7,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1115,3,0,1250,-9,0,0 +2013,9,10,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,815,-22,0,0 +2013,4,6,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1650,-27,0,0 +2013,6,2,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,2,0,1700,-2,0,0 +2013,7,28,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,19,1,1448,18,1,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,7,0,2100,-13,0,0 +2013,8,15,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-2,0,2020,-19,0,0 +2013,8,12,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1719,10,0,1823,3,0,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,704,6,0,1004,-34,0,0 +2013,8,27,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,19,1,1845,19,1,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1950,6,0,2055,-2,0,0 +2013,9,8,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1535,-10,0,1859,-28,0,0 +2013,8,19,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,940,-2,0,1257,-9,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1200,14,0,1445,14,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,-2,0,1202,-8,0,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,14,0,820,3,0,0 +2013,10,24,4,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,615,-6,0,714,-14,0,0 +2013,8,25,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,934,-17,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1249,-4,0,1441,4,0,0 +2013,10,1,2,9E,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,735,-6,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,950,-4,0,1123,-13,0,0 +2013,10,14,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,615,86,1,955,67,1,0 +2013,6,2,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1645,1,0,1820,0,0,0 +2013,6,15,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,833,5,0,1043,11,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1455,-1,0,1550,-9,0,0 +2013,10,30,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2025,28,1,2145,21,1,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1935,6,0,2200,-6,0,0 +2013,6,16,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,800,-7,0,955,-21,0,0 +2013,5,10,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1130,13,0,1230,2,0,0 +2013,6,3,1,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1720,1,0,1859,-11,0,0 +2013,5,21,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,17,1,2025,19,1,0 +2013,4,25,4,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1530,4,0,1855,-19,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1230,0,0,1620,-5,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1005,23,1,1130,4,0,0 +2013,4,5,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1450,0,0,1630,-4,0,0 +2013,7,15,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,610,0,0,640,-11,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1116,-5,0,1303,-10,0,0 +2013,7,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,2,0,2340,7,0,0 +2013,4,15,1,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1825,-4,0,2005,-32,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-5,0,2143,-18,0,0 +2013,8,6,2,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,-9,0,1643,-14,0,0 +2013,4,27,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14843,Luis Munoz Marin International,San Juan,PR,900,-5,0,1310,-15,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1756,-2,0,1910,-17,0,0 +2013,6,7,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,11,0,1657,-9,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,27,1,1438,29,1,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-2,0,1150,-3,0,0 +2013,5,9,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1454,-3,0,1619,-12,0,0 +2013,10,8,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,-1,0,1545,-2,0,0 +2013,5,5,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-4,0,1810,15,1,0 +2013,6,27,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,0,0,940,-5,0,0 +2013,6,26,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,819,-5,0,929,-5,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1620,0,0,1810,-6,0,0 +2013,8,6,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1938,3,0,130,-16,0,0 +2013,9,11,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-4,0,1119,-7,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1543,4,0,1745,-2,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1353,4,0,1606,-13,0,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,750,10,0,1600,8,0,0 +2013,4,18,4,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,16,1,1655,4,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2114,33,1,2353,19,1,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1200,45,1,1400,37,1,0 +2013,7,22,1,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-2,0,643,-8,0,0 +2013,5,25,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,0,0,1805,-16,0,0 +2013,5,17,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,735,-2,0,842,-3,0,0 +2013,4,14,7,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-10,0,500,-15,0,0 +2013,9,25,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1400,-3,0,1550,2,0,0 +2013,8,5,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,47,1,2025,52,1,0 +2013,6,8,6,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,815,-7,0,1026,2,0,0 +2013,6,2,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,2,0,1445,24,1,0 +2013,10,27,7,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1721,-1,0,2007,5,0,0 +2013,7,25,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1359,-4,0,1544,-35,0,0 +2013,10,24,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,924,-7,0,1246,-22,0,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1400,39,1,1505,39,1,0 +2013,6,5,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1105,23,1,1210,16,1,0 +2013,5,9,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,2140,-5,0,2350,-18,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2205,44,1,5,28,1,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-7,0,2204,-18,0,0 +2013,6,21,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,12,0,1810,0,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,1,0,2030,-5,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,33,1,2305,22,1,0 +2013,6,8,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1045,-3,0,1110,-22,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,945,4,0,1125,6,0,0 +2013,4,23,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,1255,-18,0,0 +2013,9,11,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2122,12,0,2353,-2,0,0 +2013,5,1,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-2,0,1610,0,0,0 +2013,7,19,5,B6,10721,Logan International,Boston,MA,13796,Metropolitan Oakland International,Oakland,CA,1942,139,1,2308,129,1,0 +2013,6,13,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,31,1,1724,65,1,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2010,-7,0,2305,-23,0,0 +2013,4,4,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,8,0,2105,-2,0,0 +2013,5,22,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-2,0,700,-4,0,0 +2013,8,5,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1035,7,0,1145,-6,0,0 +2013,7,6,6,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,833,-6,0,1041,-18,0,0 +2013,9,1,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-6,0,1415,-3,0,0 +2013,7,8,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-5,0,648,-12,0,0 +2013,5,5,7,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,-5,0,1906,-22,0,0 +2013,10,2,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1240,3,0,1333,12,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1610,20,1,1715,13,0,0 +2013,5,8,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1940,-3,0,2114,5,0,0 +2013,10,27,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,-3,0,810,-10,0,0 +2013,4,27,6,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,830,-4,0,1620,0,0,0 +2013,7,27,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,3,0,1345,-8,0,0 +2013,7,13,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,711,45,1,830,28,1,0 +2013,9,6,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,2,0,540,-1,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1626,-7,0,1815,-11,0,0 +2013,10,14,1,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,610,-8,0,826,-12,0,0 +2013,9,26,4,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1130,-6,0,1615,-2,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,26,1,1050,38,1,0 +2013,6,20,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,915,-7,0,1033,-8,0,0 +2013,6,14,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,-4,0,1255,-5,0,0 +2013,8,22,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,950,125,1,1120,120,1,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,29,1,1615,20,1,0 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1850,-7,0,2005,-15,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,600,-4,0,939,-16,0,0 +2013,4,13,6,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,-4,0,955,-27,0,0 +2013,9,23,1,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-3,0,915,-5,0,0 +2013,6,19,3,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,1,0,1843,0,0,0 +2013,5,5,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,-4,0,1235,-15,0,0 +2013,7,17,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-3,0,1146,-6,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,16,1,2118,11,0,0 +2013,4,21,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,16,1,1700,14,0,0 +2013,6,4,2,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1945,-7,0,2100,-14,0,0 +2013,6,15,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,14,0,2128,9,0,0 +2013,6,4,2,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1000,-2,0,1255,-12,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,755,-8,0,1600,-16,0,0 +2013,6,2,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1340,-8,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2010,-2,0,2220,-5,0,0 +2013,4,16,2,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,700,-2,0,850,15,1,0 +2013,9,25,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,0,0,2120,0,0,0 +2013,5,12,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-7,0,1656,-18,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1810,8,0,2000,2,0,0 +2013,9,6,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,-8,0,2055,-10,0,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,32,1,2050,28,1,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,3,0,1103,7,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1015,34,1,1205,12,0,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-2,0,1335,-12,0,0 +2013,10,19,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1445,-2,0,1630,-3,0,0 +2013,5,25,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1100,-6,0,1250,-12,0,0 +2013,7,10,3,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,556,-3,0,809,2,0,0 +2013,9,1,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-2,0,1905,-2,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1230,24,1,1341,18,1,0 +2013,4,21,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1940,43,1,2110,63,1,0 +2013,10,1,2,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1354,-5,0,1645,2,0,0 +2013,10,15,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1855,26,1,2225,8,0,0 +2013,6,3,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,855,1,0,1015,-2,0,0 +2013,10,23,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2327,-4,0,720,-13,0,0 +2013,10,3,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,850,-4,0,1027,-4,0,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,730,-2,0,835,-20,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1500,18,1,1610,6,0,0 +2013,9,2,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,921,-1,0,1318,-8,0,0 +2013,8,23,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,1,0,1440,-1,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,730,-3,0,1051,12,0,0 +2013,6,23,7,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,659,4,0,1040,0,0,0 +2013,9,20,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,-7,0,1830,-9,0,0 +2013,8,21,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-3,0,900,-18,0,0 +2013,4,25,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1955,-3,0,2125,-13,0,0 +2013,4,24,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,705,-2,0,845,-18,0,0 +2013,8,27,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1455,-4,0,1620,-11,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1210,4,0,1255,-1,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1045,-1,0,0 +2013,8,12,1,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1403,-2,0,1440,0,0,0 +2013,8,8,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,2025,13,0,2340,-1,0,0 +2013,5,24,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1349,-1,0,1543,-7,0,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1804,99,1,2145,184,1,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,710,9,0,1028,15,1,0 +2013,9,18,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,639,-7,0,850,-10,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1200,-2,0,1405,-18,0,0 +2013,8,8,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,940,1,0,1110,-11,0,0 +2013,6,9,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,70,1,2045,52,1,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,630,-1,0,940,-15,0,0 +2013,4,8,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1350,27,1,1709,17,1,0 +2013,8,3,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,-10,0,1945,-12,0,0 +2013,8,25,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1706,-6,0,1838,-4,0,0 +2013,7,11,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,0,0,1251,1,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1732,-3,0,1939,-13,0,0 +2013,6,1,6,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-6,0,1125,0,0,0 +2013,7,27,6,EV,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1511,-4,0,1655,-5,0,0 +2013,10,9,3,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-4,0,1815,12,0,0 +2013,6,21,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,-1,0,955,11,0,0 +2013,7,17,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,615,-2,0,855,-8,0,0 +2013,9,24,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,755,-4,0,1045,-3,0,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1820,62,1,1915,53,1,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,8,0,1050,0,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-7,0,1154,-9,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1655,17,1,2015,10,0,0 +2013,8,6,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-5,0,831,-21,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,159,1,1955,182,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1215,-5,0,1320,-21,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1915,-4,0,2255,-5,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,925,0,0,1240,27,1,0 +2013,9,1,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1235,-5,0,1355,-17,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1825,-2,0,0 +2013,7,2,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1215,3,0,1411,-12,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,16,1,1615,26,1,0 +2013,8,7,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-7,0,2151,-3,0,0 +2013,7,29,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2016,17,1,2251,16,1,0 +2013,9,5,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,1302,2,0,0 +2013,10,29,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1340,-8,0,1525,-1,0,0 +2013,7,23,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-4,0,805,-10,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2014,-7,0,2122,1,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,7,0,1200,14,0,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1930,36,1,2130,33,1,0 +2013,6,7,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1740,23,1,1855,18,1,0 +2013,9,10,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1745,-4,0,1900,-16,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1655,-2,0,44,-20,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1130,0,0,1510,-2,0,0 +2013,7,4,4,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1200,-2,0,1428,-3,0,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1015,-6,0,1230,-3,0,0 +2013,9,18,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-2,0,1440,-4,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2025,-1,0,2235,-3,0,0 +2013,8,21,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,800,-4,0,905,-6,0,0 +2013,5,20,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,5,0,2003,14,0,0 +2013,6,29,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1755,35,1,2015,15,1,0 +2013,8,24,6,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,-2,0,1034,1,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1730,91,1,1930,64,1,0 +2013,6,25,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,605,-2,0,736,-2,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1625,3,0,1740,-3,0,0 +2013,9,8,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1839,-1,0,2232,6,0,0 +2013,6,7,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,645,-3,0,751,-14,0,0 +2013,5,22,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,833,-5,0,939,5,0,0 +2013,7,10,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,61,1,1902,113,1,0 +2013,7,24,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-3,0,750,-9,0,0 +2013,7,14,7,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,14,0,2015,6,0,0 +2013,8,21,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,7,0,1340,-6,0,0 +2013,4,21,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1826,127,1,2004,143,1,0 +2013,7,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2000,11,0,2158,20,1,0 +2013,5,20,1,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1540,21,1,1835,21,1,0 +2013,10,24,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,755,-2,0,959,-10,0,0 +2013,9,17,2,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-1,0,1218,-8,0,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,-2,0,1710,14,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1245,17,1,1500,14,0,0 +2013,8,26,1,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2030,-1,0,2206,-33,0,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,705,-3,0,955,-7,0,0 +2013,5,15,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1736,109,1,1900,87,1,0 +2013,9,10,2,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,856,3,0,0 +2013,4,19,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1600,-4,0,1855,-5,0,0 +2013,4,4,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1228,26,1,1432,25,1,0 +2013,6,29,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,25,1,1028,27,1,0 +2013,9,29,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,0,0,1755,-5,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1131,0,0,1315,32,1,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1330,-5,0,1455,-4,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,825,-2,0,1145,-17,0,0 +2013,9,16,1,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,700,-9,0,854,-28,0,0 +2013,9,13,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,1,0,1835,-4,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1540,21,1,1804,13,0,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,0,0,1430,0,0,0 +2013,6,8,6,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1620,2,0,1720,-9,0,0 +2013,9,29,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2153,-7,0,2241,-21,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,6,0,1435,-13,0,0 +2013,6,9,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,0,0,950,53,1,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1135,-1,0,1450,-4,0,0 +2013,4,21,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,733,-12,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1230,28,1,1454,-4,0,0 +2013,5,24,5,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1910,136,1,2132,112,1,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1930,29,1,2245,9,0,0 +2013,5,21,2,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,957,-4,0,1215,44,1,0 +2013,4,17,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,645,-3,0,800,-12,0,0 +2013,8,31,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,830,59,1,1136,25,1,0 +2013,8,3,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1600,-5,0,1710,34,1,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,1,0,2105,28,1,0 +2013,8,4,7,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,855,-4,0,1037,-5,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1840,59,1,2154,58,1,0 +2013,5,4,6,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-3,0,1607,-40,0,0 +2013,6,28,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1241,95,1,1415,81,1,0 +2013,8,14,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-3,0,827,-17,0,0 +2013,4,2,2,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,700,0,0,0 +2013,8,24,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-1,0,1000,8,0,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1910,145,1,2253,149,1,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1000,1,0,1145,-17,0,0 +2013,4,24,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1400,11,0,1420,10,0,0 +2013,5,14,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-9,0,2129,-4,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,-1,0,1125,-9,0,0 +2013,10,19,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2020,-1,0,2302,8,0,0 +2013,7,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1024,0,0,1416,-8,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1930,0,0,40,-19,0,0 +2013,5,19,7,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,2215,-5,0,615,-11,0,0 +2013,8,29,4,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,-8,0,1650,-7,0,0 +2013,9,9,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,-2,0,910,-11,0,0 +2013,8,17,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,-8,0,1437,13,0,0 +2013,7,11,4,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,830,-4,0,950,-6,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2150,8,0,2340,-13,0,0 +2013,6,4,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,2005,-16,0,2127,-6,0,0 +2013,5,15,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-6,0,1144,-8,0,0 +2013,6,17,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,835,-5,0,948,24,1,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,2,0,1713,-1,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1930,-3,0,2030,18,1,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1940,-8,0,2247,-36,0,0 +2013,5,11,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,945,22,1,1240,11,0,0 +2013,7,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1825,-6,0,1945,-15,0,0 +2013,8,9,5,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-2,0,2215,-1,0,0 +2013,4,28,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-10,0,1027,-23,0,0 +2013,6,15,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2032,-4,0,2205,6,0,0 +2013,9,29,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,31,1,1130,12,0,0 +2013,8,4,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-1,0,1107,-8,0,0 +2013,5,14,2,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,-10,0,706,-6,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,-2,0,1635,-10,0,0 +2013,4,9,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,1255,-1,0,0 +2013,7,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-3,0,957,-9,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1850,-5,0,2110,-16,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1315,-6,0,1600,-13,0,0 +2013,10,20,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1540,-6,0,1815,-5,0,0 +2013,5,18,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,620,1,0,750,-18,0,0 +2013,10,10,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1555,-6,0,1922,-47,0,0 +2013,7,2,2,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,756,-24,0,0 +2013,5,22,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,21,1,2103,9,0,0 +2013,9,2,1,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,700,-6,0,946,-24,0,0 +2013,4,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1136,-4,0,1302,-16,0,0 +2013,4,23,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2044,-10,0,2236,-7,0,0 +2013,5,10,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,17,1,1844,13,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,1,0,1325,-19,0,0 +2013,7,13,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1945,65,1,2102,50,1,0 +2013,6,6,4,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,-5,0,1347,-15,0,0 +2013,4,12,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-7,0,2050,-13,0,0 +2013,4,6,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,645,-2,0,844,-4,0,0 +2013,4,23,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,615,-2,0,625,-8,0,0 +2013,6,18,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1815,4,0,2055,-7,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1153,-3,0,1333,-11,0,0 +2013,10,26,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,0,0,1940,2,0,0 +2013,8,19,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2035,32,1,2206,19,1,0 +2013,10,21,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,-6,0,921,-3,0,0 +2013,4,22,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-8,0,1128,-4,0,0 +2013,7,20,6,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1303,36,1,1418,22,1,0 +2013,8,1,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1215,21,1,1525,11,0,0 +2013,5,1,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1135,0,0,1210,-7,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,-5,0,1720,-11,0,0 +2013,10,22,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,-5,0,2028,-1,0,0 +2013,6,10,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1043,87,1,1425,86,1,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,625,-1,0,840,4,0,0 +2013,7,11,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-5,0,747,0,0,0 +2013,5,24,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,42,1,1124,31,1,0 +2013,4,12,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-6,0,2028,-16,0,0 +2013,7,3,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,605,2,0,720,-7,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1237,1,0,1508,-21,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,-2,0,1048,-15,0,0 +2013,9,8,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2100,6,0,458,12,0,0 +2013,6,30,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1745,95,1,1817,103,1,0 +2013,9,1,7,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1335,-5,0,1525,-40,0,0 +2013,5,7,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,624,-1,0,827,-4,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1858,-4,0,2045,-35,0,0 +2013,8,2,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,3,0,1210,-4,0,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1134,-4,0,1418,-9,0,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1730,213,1,1859,203,1,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,840,0,0,1115,-11,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,0,0,1049,13,0,0 +2013,8,5,1,EV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1006,5,0,1455,0,0,0 +2013,5,27,1,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1247,34,1,1455,23,1,0 +2013,8,13,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-9,0,1137,37,1,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1300,36,1,1730,39,1,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1305,-3,0,1439,-10,0,0 +2013,6,11,2,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,1005,-7,0,1234,-30,0,0 +2013,4,12,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1405,0,0,2000,-3,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-9,0,1633,43,1,0 +2013,6,17,1,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1206,24,1,1322,19,1,0 +2013,10,12,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,5,0,1810,-3,0,0 +2013,7,28,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,610,-3,0,615,-3,0,0 +2013,8,12,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1830,21,1,2228,9,0,0 +2013,9,7,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,705,-7,0,930,-26,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,0,0,1301,-13,0,0 +2013,5,13,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,0,0,1923,2,0,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1600,-5,0,1705,-8,0,0 +2013,8,14,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,46,1,2015,36,1,0 +2013,9,5,4,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-8,0,1054,-15,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,604,-5,0,850,-10,0,0 +2013,6,3,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1406,-10,0,1520,-19,0,0 +2013,6,20,4,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2115,14,0,510,-1,0,0 +2013,9,13,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1558,265,1,1855,271,1,0 +2013,6,11,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1800,13,0,2137,6,0,0 +2013,8,19,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1600,-3,0,1735,-11,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,2135,17,1,25,18,1,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1635,-1,0,2236,-17,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-6,0,928,14,0,0 +2013,9,18,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1250,-2,0,1541,-15,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2155,6,0,2354,-20,0,0 +2013,6,29,6,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,810,1,0,1027,0,0,0 +2013,5,17,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,28,1,1525,17,1,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1035,1,0,1555,-8,0,0 +2013,7,15,1,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1245,-4,0,1507,-6,0,0 +2013,4,30,2,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-13,0,1755,10,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1045,9,0,1248,-11,0,0 +2013,8,11,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1000,46,1,1148,79,1,0 +2013,9,7,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1230,-4,0,1350,-15,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1115,3,0,1300,12,0,0 +2013,6,27,4,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-7,0,823,-26,0,0 +2013,4,5,5,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,733,-10,0,1029,-29,0,0 +2013,4,4,4,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,557,-6,0,717,-10,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1420,31,1,1520,26,1,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,23,1,55,23,1,0 +2013,10,31,4,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1314,-6,0,2043,-23,0,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,735,2,0,820,1,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-2,0,1924,-8,0,0 +2013,6,20,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,2,0,1010,-2,0,0 +2013,10,13,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-6,0,1021,-31,0,0 +2013,7,24,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1018,0,,1150,0,1,1 +2013,10,23,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1345,2,0,1511,-6,0,0 +2013,4,6,6,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1730,21,1,2049,-2,0,0 +2013,6,17,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-3,0,1139,-7,0,0 +2013,9,15,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,740,-3,0,911,-12,0,0 +2013,9,24,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1529,5,0,1656,7,0,0 +2013,9,3,2,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,851,15,1,1039,22,1,0 +2013,10,13,7,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,825,4,0,1135,-4,0,0 +2013,10,16,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-6,0,2335,-17,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,600,-1,0,931,-56,0,0 +2013,10,30,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,859,-6,0,1015,-14,0,0 +2013,10,29,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-9,0,1847,-16,0,0 +2013,6,17,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,-3,0,1903,3,0,0 +2013,4,19,5,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,0,,1940,0,1,1 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,5,0,1654,9,0,0 +2013,8,15,4,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1929,-10,0,2010,-13,0,0 +2013,5,24,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,940,0,,1057,0,1,1 +2013,4,16,2,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1519,0,0,2002,-34,0,0 +2013,9,30,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1551,-1,0,2056,-17,0,0 +2013,4,17,3,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,-4,0,2048,-10,0,0 +2013,7,7,7,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,610,-6,0,715,-15,0,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,745,5,0,1500,14,0,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,710,-4,0,1120,-15,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,855,7,0,1110,-2,0,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,6,0,1945,3,0,0 +2013,5,9,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,-3,0,2027,-7,0,0 +2013,4,1,1,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1510,-1,0,1750,3,0,0 +2013,8,25,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1530,-1,0,1706,-10,0,0 +2013,7,24,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2350,-3,0,724,-26,0,0 +2013,8,28,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,17,1,1705,-5,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,8,0,1544,2,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1610,-11,0,2219,8,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1015,18,1,1355,12,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,47,1,1952,39,1,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,-2,0,1800,-12,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1810,0,,2009,0,1,1 +2013,4,26,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,2025,129,1,2320,128,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,6,0,2200,5,0,0 +2013,5,3,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,24,1,1340,2,0,0 +2013,7,9,2,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,945,0,,1024,0,1,1 +2013,8,30,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-4,0,1140,-12,0,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,745,-1,0,1020,-10,0,0 +2013,5,4,6,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,0,,705,0,1,1 +2013,8,22,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,27,1,1545,27,1,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,745,-8,0,900,-6,0,0 +2013,5,10,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1110,121,1,1300,129,1,0 +2013,5,22,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-8,0,1820,-12,0,0 +2013,9,13,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1630,30,1,1750,29,1,0 +2013,5,15,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1215,14,0,1529,11,0,0 +2013,10,4,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-12,0,1321,-26,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1130,19,1,1720,25,1,0 +2013,7,27,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,650,-5,0,750,-10,0,0 +2013,4,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,835,-3,0,950,-17,0,0 +2013,5,6,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-3,0,1622,-6,0,0 +2013,8,2,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-2,0,1505,-6,0,0 +2013,9,19,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,632,-2,0,755,-7,0,0 +2013,7,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,1,0,1829,-1,0,0 +2013,9,5,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,-5,0,2125,-8,0,0 +2013,5,27,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-6,0,1823,-19,0,0 +2013,7,12,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,600,1,0,645,-5,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,7,0,1909,4,0,0 +2013,5,20,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,2,0,723,-15,0,0 +2013,8,8,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,95,1,1505,88,1,0 +2013,9,19,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1459,-10,0,1814,-32,0,0 +2013,7,8,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,620,124,1,1208,126,1,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2108,2,0,2212,-6,0,0 +2013,8,30,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1014,-4,0,1138,-26,0,0 +2013,7,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-4,0,1450,-4,0,0 +2013,4,20,6,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1100,0,0,1310,-6,0,0 +2013,6,7,5,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1345,0,0,1445,-3,0,0 +2013,7,20,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-4,0,805,-12,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1231,-7,0,1252,-2,0,0 +2013,8,30,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1339,10,0,1549,14,0,0 +2013,8,13,2,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-4,0,1225,7,0,0 +2013,5,2,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-3,0,1830,-1,0,0 +2013,10,3,4,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,620,-8,0,841,-2,0,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1425,1,0,1520,-9,0,0 +2013,10,25,5,YV,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1730,-6,0,1912,8,0,0 +2013,6,28,5,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1550,0,0,1715,-17,0,0 +2013,5,27,1,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1250,-2,0,1525,-4,0,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-3,0,1928,-11,0,0 +2013,9,10,2,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,745,-6,0,1050,-27,0,0 +2013,6,11,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,0,0,1200,2,0,0 +2013,8,24,6,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,530,-8,0,902,-15,0,0 +2013,5,7,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1120,-4,0,1245,-15,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,71,1,1340,71,1,0 +2013,4,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,3,0,1330,6,0,0 +2013,7,28,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,-3,0,1346,0,0,0 +2013,6,2,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,641,122,1,756,133,1,0 +2013,5,5,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2110,101,1,2240,87,1,0 +2013,7,24,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1004,-4,0,0 +2013,6,13,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,46,-2,0,855,9,0,0 +2013,5,26,7,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1305,8,0,1415,-5,0,0 +2013,7,15,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2247,49,1,15,53,1,0 +2013,6,7,5,9E,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1116,9,0,1523,7,0,0 +2013,8,14,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1001,7,0,1139,26,1,0 +2013,7,30,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1035,-1,0,1154,-4,0,0 +2013,4,7,7,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-5,0,1215,2,0,0 +2013,5,11,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,-7,0,1550,-18,0,0 +2013,7,14,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,-9,0,855,-17,0,0 +2013,8,22,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1735,46,1,1825,32,1,0 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1010,-4,0,1103,-13,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1325,54,1,1830,60,1,0 +2013,6,15,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,31,1,1439,24,1,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1255,41,1,1406,47,1,0 +2013,9,20,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1409,34,1,1659,29,1,0 +2013,6,8,6,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,23,1,2230,4,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,27,1,2041,18,1,0 +2013,8,13,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,6,0,1625,26,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,745,-3,0,850,-13,0,0 +2013,10,22,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1602,5,0,1824,22,1,0 +2013,9,25,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1945,-1,0,2330,-14,0,0 +2013,9,17,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1910,-2,0,1915,0,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-4,0,1405,-5,0,0 +2013,6,27,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1810,25,1,1935,46,1,0 +2013,7,23,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,900,-4,0,1140,1,0,0 +2013,6,20,4,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1215,1,0,1336,-9,0,0 +2013,4,4,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,730,-3,0,1552,0,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1444,-2,0,1621,3,0,0 +2013,8,1,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,29,1,1555,33,1,0 +2013,7,23,2,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1449,68,1,1621,192,1,0 +2013,4,8,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,91,1,1720,85,1,0 +2013,9,3,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1509,-3,0,1635,-13,0,0 +2013,4,2,2,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1735,-6,0,2041,-27,0,0 +2013,4,22,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1210,2,0,1255,24,1,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1000,6,0,1720,-5,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,31,1,1813,32,1,0 +2013,5,20,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-7,0,734,-27,0,0 +2013,10,18,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1813,42,1,1942,39,1,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1015,-1,0,1537,13,0,0 +2013,9,16,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,2,0,1037,3,0,0 +2013,7,9,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2130,61,1,2245,50,1,0 +2013,8,3,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-7,0,950,-18,0,0 +2013,9,5,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1023,5,0,1257,-11,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,24,1,1150,32,1,0 +2013,5,9,4,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-3,0,919,-18,0,0 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2020,1,0,2150,3,0,0 +2013,4,1,1,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1035,-5,0,1310,-11,0,0 +2013,9,5,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-7,0,1945,-26,0,0 +2013,6,26,3,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1925,37,1,2120,20,1,0 +2013,10,19,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-3,0,724,-6,0,0 +2013,4,28,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2140,87,1,2300,73,1,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1125,6,0,1425,-8,0,0 +2013,10,22,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1505,-6,0,1815,-10,0,0 +2013,6,16,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,-1,0,745,-1,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-4,0,1915,-40,0,0 +2013,7,3,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,650,-2,0,705,-1,0,0 +2013,10,24,4,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1045,-8,0,1309,-11,0,0 +2013,5,24,5,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1717,14,0,1814,15,1,0 +2013,9,9,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,840,-31,0,0 +2013,6,15,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-2,0,908,-11,0,0 +2013,7,18,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,10,0,1628,-2,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-5,0,1010,-12,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,958,2,0,1602,-7,0,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,605,-3,0,939,-8,0,0 +2013,8,7,3,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,620,-3,0,914,-2,0,0 +2013,10,19,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1121,-3,0,1223,-18,0,0 +2013,10,20,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1630,-3,0,1911,0,0,0 +2013,5,1,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,708,-4,0,815,-11,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1635,8,0,27,-19,0,0 +2013,6,8,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1610,-1,0,1720,-3,0,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1315,0,0,1545,-16,0,0 +2013,4,12,5,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,627,1,0,726,-11,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,655,-2,0,819,-5,0,0 +2013,7,25,4,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1000,138,1,1145,149,1,0 +2013,6,9,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-7,0,845,-6,0,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,-2,0,2227,-3,0,0 +2013,10,6,7,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-5,0,2359,-3,0,0 +2013,8,7,3,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,8,0,2128,21,1,0 +2013,5,1,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-1,0,1007,-9,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1404,132,1,2239,94,1,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,74,1,2205,77,1,0 +2013,6,25,2,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1542,2,0,1724,8,0,0 +2013,10,8,2,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1540,-4,0,1735,-13,0,0 +2013,9,26,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1045,5,0,1105,8,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1535,45,1,1714,61,1,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,925,-1,0,1210,-10,0,0 +2013,9,7,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-4,0,1638,-11,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1425,21,1,2155,11,0,0 +2013,7,14,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1250,-4,0,1547,-39,0,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,7,0,1745,37,1,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,800,2,0,1108,0,0,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,820,-3,0,1052,-9,0,0 +2013,4,4,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1817,-5,0,1946,-12,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,655,23,1,815,10,0,0 +2013,6,26,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-1,0,1955,2,0,0 +2013,9,14,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,155,-10,0,828,-5,0,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,2,0,2221,-3,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1540,22,1,1930,12,0,0 +2013,5,19,7,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,9,0,25,-4,0,0 +2013,4,19,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1105,27,1,1415,30,1,0 +2013,9,15,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,109,1,1540,96,1,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2028,-2,0,2337,-6,0,0 +2013,4,17,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-4,0,1757,-1,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,851,-15,0,0 +2013,10,2,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1630,35,1,1735,54,1,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-7,0,1617,-17,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1345,29,1,1615,21,1,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1705,-5,0,1815,-14,0,0 +2013,7,26,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1040,-13,0,1208,-16,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,-2,0,1815,-20,0,0 +2013,5,6,1,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-9,0,1704,-25,0,0 +2013,10,25,5,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1540,-3,0,1830,-5,0,0 +2013,6,5,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1940,18,1,2114,36,1,0 +2013,4,19,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,1155,0,0,0 +2013,4,1,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,-6,0,1515,-13,0,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,852,-2,0,1156,-33,0,0 +2013,9,13,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-5,0,1205,-16,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,820,60,1,1045,50,1,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,735,0,,815,0,1,1 +2013,4,4,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,650,-6,0,805,-27,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,855,-2,0,1015,-11,0,0 +2013,9,23,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,85,1,2040,74,1,0 +2013,6,7,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,68,1,1354,69,1,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,840,45,1,1010,32,1,0 +2013,5,17,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1925,-1,0,2219,23,1,0 +2013,7,17,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1606,-2,0,1915,25,1,0 +2013,4,24,3,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1436,-3,0,1625,-3,0,0 +2013,7,14,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,2150,-9,0,202,-6,0,0 +2013,4,18,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1259,-3,0,1541,-4,0,0 +2013,4,19,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1315,9,0,1415,13,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1145,-5,0,1551,-15,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1543,-1,0,1722,-6,0,0 +2013,7,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,-5,0,2135,-10,0,0 +2013,7,20,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,750,8,0,956,-10,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1351,-4,0,1552,-15,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,-4,0,1622,-12,0,0 +2013,5,26,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1215,0,0,1423,3,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,-3,0,1743,-8,0,0 +2013,8,22,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1117,2,0,1154,-5,0,0 +2013,7,20,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,54,1,1925,84,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,36,1,1540,27,1,0 +2013,4,9,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1626,-5,0,1817,-16,0,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2130,-1,0,2322,-35,0,0 +2013,5,18,6,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1800,-4,0,2030,-20,0,0 +2013,4,18,4,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1141,-10,0,1349,-13,0,0 +2013,8,7,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,19,1,908,11,0,0 +2013,10,16,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-9,0,1130,-14,0,0 +2013,6,4,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1344,-7,0,1435,-10,0,0 +2013,10,30,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1355,-3,0,1655,1,0,0 +2013,6,13,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,56,1,2000,44,1,0 +2013,6,3,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,-4,0,1735,-3,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2105,29,1,2215,25,1,0 +2013,5,1,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2141,-3,0,2326,-12,0,0 +2013,9,1,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,940,-5,0,1100,-5,0,0 +2013,10,16,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-8,0,1105,-12,0,0 +2013,7,24,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,755,0,0,1040,-3,0,0 +2013,4,18,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1144,0,0,1334,-12,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,3,0,1145,-1,0,0 +2013,10,27,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1905,6,0,1954,3,0,0 +2013,4,4,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1750,1,0,1905,2,0,0 +2013,5,29,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,4,0,1434,-11,0,0 +2013,7,6,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1055,0,0,1220,-9,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,8,0,1440,4,0,0 +2013,7,14,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-8,0,1500,-4,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1929,4,0,2259,-15,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,-2,0,1645,16,1,0 +2013,9,27,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,835,-1,0,1145,10,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-2,0,1800,-12,0,0 +2013,8,1,4,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,0,0,803,9,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1015,14,0,1105,14,0,0 +2013,8,9,5,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2100,30,1,525,14,0,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1735,14,0,2054,6,0,0 +2013,9,12,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,9,0,2038,16,1,0 +2013,8,14,3,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-12,0,911,-14,0,0 +2013,8,9,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,545,8,0,645,3,0,0 +2013,8,4,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2200,19,1,2216,5,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1512,35,1,1736,23,1,0 +2013,8,14,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2205,8,0,2330,-7,0,0 +2013,5,20,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,805,-9,0,1342,-12,0,0 +2013,6,21,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,15,1,1820,26,1,0 +2013,7,29,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1115,21,1,1200,8,0,0 +2013,9,22,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1915,30,1,2025,33,1,0 +2013,8,2,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,1,0,1101,7,0,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,905,18,1,1205,8,0,0 +2013,9,22,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-2,0,1325,-6,0,0 +2013,5,18,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1205,-3,0,1309,-5,0,0 +2013,9,20,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1745,97,1,1900,95,1,0 +2013,9,30,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1030,-1,0,1245,-6,0,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,815,0,0,1142,-14,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1805,5,0,1944,1,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1755,-1,0,2053,-8,0,0 +2013,8,9,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1806,276,1,1931,271,1,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1937,27,1,2115,36,1,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-1,0,1120,13,0,0 +2013,5,7,2,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,910,-5,0,1144,-15,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1350,15,1,1510,5,0,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,632,-6,0,841,-13,0,0 +2013,7,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,1,0,1518,-17,0,0 +2013,8,17,6,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1210,2,0,1400,0,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,715,0,0,1000,2,0,0 +2013,10,14,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-7,0,705,-11,0,0 +2013,6,4,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,1,0,1440,-4,0,0 +2013,7,14,7,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1246,-8,0,1655,-23,0,0 +2013,10,23,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1255,-1,0,1505,-8,0,0 +2013,6,30,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2120,0,,2340,0,1,1 +2013,9,1,7,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1104,1,0,1545,-2,0,0 +2013,7,31,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-5,0,629,-14,0,0 +2013,5,24,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,-1,0,2033,-2,0,0 +2013,6,12,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1540,22,1,1705,25,1,0 +2013,4,3,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-5,0,1617,-24,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,840,-2,0,1008,12,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1251,-3,0,1425,-7,0,0 +2013,7,22,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,900,-3,0,1040,8,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,815,58,1,1055,64,1,0 +2013,7,7,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1445,0,0,2310,-9,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,-2,0,1335,-9,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,27,1,5,25,1,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,10,0,1809,6,0,0 +2013,6,30,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1815,-1,0,1910,-14,0,0 +2013,4,4,4,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-2,0,845,0,0,0 +2013,4,27,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,1,0,1705,-16,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1715,3,0,2020,-5,0,0 +2013,9,27,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,951,-7,0,1316,-2,0,0 +2013,5,30,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,-2,0,1558,0,0,0 +2013,10,8,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1855,-1,0,2020,-4,0,0 +2013,7,24,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-1,0,1325,-18,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1000,36,1,1105,44,1,0 +2013,6,30,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,0,,2319,0,1,1 +2013,7,21,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,626,3,0,743,9,0,0 +2013,4,21,7,9E,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1930,0,,2253,0,1,1 +2013,10,27,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1110,76,1,1430,53,1,0 +2013,4,7,7,B6,10792,Buffalo Niagara International,Buffalo,NY,14635,Southwest Florida International,Fort Myers,FL,710,18,1,1006,18,1,0 +2013,4,22,1,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-14,0,1130,21,1,0 +2013,6,28,5,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-5,0,1305,-21,0,0 +2013,4,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1355,3,0,1759,10,0,0 +2013,5,29,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,4,0,1040,-6,0,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2020,82,1,2235,100,1,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1559,-5,0,1712,-13,0,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,-2,0,930,-20,0,0 +2013,6,18,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1900,11,0,2025,5,0,0 +2013,6,13,4,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-3,0,1205,3,0,0 +2013,8,13,2,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-8,0,505,-9,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1304,9,0,1548,-13,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,-2,0,2035,-6,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,910,4,0,1230,-13,0,0 +2013,6,17,1,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,6,0,1420,2,0,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2021,-3,0,2159,-10,0,0 +2013,4,26,5,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,14,0,547,12,0,0 +2013,9,23,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,0,0,2136,-12,0,0 +2013,5,13,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1420,-7,0,0 +2013,10,26,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1855,-10,0,2043,-17,0,0 +2013,8,16,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2105,-1,0,2230,-11,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,3,0,5,-8,0,0 +2013,4,25,4,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,700,-7,0,1009,5,0,0 +2013,10,19,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-5,0,616,-5,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1404,1,0,2239,-14,0,0 +2013,9,25,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1938,-8,0,2142,-21,0,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,6,0,1635,12,0,0 +2013,9,14,6,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,855,-4,0,1005,-6,0,0 +2013,9,6,5,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,703,1,0,802,-3,0,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,1,0,1905,-6,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,19,1,2220,7,0,0 +2013,8,7,3,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,-7,0,1730,7,0,0 +2013,5,20,1,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2245,0,0,707,17,1,0 +2013,5,18,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,2,0,1501,-7,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-3,0,1251,1,0,0 +2013,5,29,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1032,-5,0,1627,5,0,0 +2013,4,14,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,700,48,1,1005,36,1,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1410,1,0,1545,-13,0,0 +2013,5,9,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1929,119,1,2105,101,1,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1255,84,1,1903,117,1,0 +2013,9,17,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1339,-10,0,1450,-3,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,0,0,2141,-10,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,-3,0,1349,-14,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,-6,0,1000,-23,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1920,36,1,2144,33,1,0 +2013,8,9,5,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1505,-7,0,1840,47,1,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1754,22,1,1918,19,1,0 +2013,9,12,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,35,1,1734,89,1,0 +2013,7,28,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,29,-1,0,445,-13,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,959,32,1,1124,6,0,0 +2013,4,23,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1454,43,1,2029,26,1,0 +2013,8,30,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1759,-1,0,1959,18,1,0 +2013,6,21,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1400,5,0,1440,-15,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,905,10,0,1255,-5,0,0 +2013,5,3,5,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1245,-7,0,2027,22,1,0 +2013,9,22,7,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,6,0,1845,-15,0,0 +2013,4,17,3,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1445,-6,0,1625,18,1,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,-3,0,2049,-10,0,0 +2013,8,2,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-4,0,924,-6,0,0 +2013,7,7,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1115,0,,1325,0,1,1 +2013,9,3,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,-4,0,1150,4,0,0 +2013,4,22,1,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2105,2,0,2358,24,1,0 +2013,8,17,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,4,0,1430,-12,0,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1425,0,0,1550,-11,0,0 +2013,5,22,3,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,15,1,2021,60,1,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1357,2,0,1528,16,1,0 +2013,10,14,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,720,-11,0,0 +2013,8,24,6,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,38,1,1857,47,1,0 +2013,4,22,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-4,0,923,-4,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,2,0,1105,-6,0,0 +2013,4,10,3,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-3,0,855,-35,0,0 +2013,8,16,5,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-6,0,2329,-10,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,10,0,2055,-2,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,940,3,0,1310,6,0,0 +2013,5,6,1,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1653,-3,0,1846,-9,0,0 +2013,6,9,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,630,-6,0,803,2,0,0 +2013,5,20,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1855,17,1,2130,36,1,0 +2013,5,2,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1725,32,1,2002,28,1,0 +2013,7,8,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1830,141,1,2038,143,1,0 +2013,10,17,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,1209,-8,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1310,-8,0,1453,-17,0,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,54,1,16,26,1,0 +2013,5,24,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1940,-2,0,2109,-14,0,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,745,-5,0,905,44,1,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,905,1,0,1025,-7,0,0 +2013,7,11,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,0,0,1715,-6,0,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,0,0,1546,-7,0,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,735,8,0,820,6,0,0 +2013,10,14,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1353,-5,0,1635,-19,0,0 +2013,7,30,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1454,1,0,1635,2,0,0 +2013,5,9,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,0,0,1245,-8,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,744,-1,0,920,-14,0,0 +2013,9,29,7,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-9,0,1119,2,0,0 +2013,8,19,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,-4,0,1639,-11,0,0 +2013,7,25,4,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,715,-6,0,840,4,0,0 +2013,8,15,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,0,0,1934,15,1,0 +2013,8,31,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,700,-1,0,755,1,0,0 +2013,5,8,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,819,-2,0,1210,11,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1416,-2,0,1602,-21,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1450,43,1,1759,43,1,0 +2013,8,11,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1310,2,0,1420,-1,0,0 +2013,7,23,2,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,69,1,1810,58,1,0 +2013,9,20,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1245,-6,0,1525,-30,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1545,12,0,1710,5,0,0 +2013,5,5,7,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1825,-2,0,2005,-38,0,0 +2013,7,15,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,-11,0,957,-11,0,0 +2013,5,30,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1305,-7,0,1601,-7,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1455,0,0,1732,-15,0,0 +2013,9,24,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-3,0,1029,-18,0,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1510,-1,0,1944,2,0,0 +2013,7,30,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,-9,0,2112,-14,0,0 +2013,9,6,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-9,0,812,-7,0,0 +2013,4,18,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,1,0,2051,-3,0,0 +2013,8,4,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1930,4,0,111,-8,0,0 +2013,9,29,7,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1623,-4,0,1705,-11,0,0 +2013,9,12,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1315,-2,0,1450,-10,0,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,835,-5,0,1141,-7,0,0 +2013,4,20,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-5,0,1535,-1,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,50,1,1225,34,1,0 +2013,8,26,1,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,615,-5,0,715,-20,0,0 +2013,9,15,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-4,0,727,-15,0,0 +2013,9,25,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,540,46,1,1200,4,0,0 +2013,9,18,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2140,-1,0,40,-16,0,0 +2013,7,13,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,10,0,1720,19,1,0 +2013,10,20,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1617,-6,0,1748,-5,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1100,13,0,1210,7,0,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,14,0,1015,12,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,910,0,0,1035,-7,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,0,0,905,-7,0,0 +2013,8,22,4,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,810,-1,0,1620,22,1,0 +2013,9,24,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,0,0,1530,-14,0,0 +2013,4,7,7,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1915,-15,0,0 +2013,7,2,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,940,0,0,1100,3,0,0 +2013,4,14,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-7,0,1410,-39,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1930,7,0,2310,-12,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,716,-3,0,1029,-15,0,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1312,0,0,1403,-8,0,0 +2013,9,11,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1615,-7,0,1913,107,1,0 +2013,6,14,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,15,1,1605,28,1,0 +2013,10,2,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-1,0,1345,-10,0,0 +2013,6,2,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,-1,0,1120,-8,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,915,13,0,1125,3,0,0 +2013,7,30,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1137,-5,0,1429,-13,0,0 +2013,4,27,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1640,-6,0,31,-3,0,0 +2013,4,9,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,611,-9,0,724,-15,0,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1015,-7,0,1128,-18,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,22,1,1955,31,1,0 +2013,10,3,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1657,-2,0,1813,-7,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2055,-6,0,2334,-39,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,2010,-2,0,2230,-6,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,2,0,1925,-5,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,934,7,0,1213,-10,0,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,729,-5,0,914,-17,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1707,-5,0,2221,-5,0,0 +2013,10,29,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-11,0,1205,-18,0,0 +2013,8,10,6,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1354,-4,0,1450,-5,0,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1620,76,1,1914,65,1,0 +2013,8,3,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1730,4,0,1920,-12,0,0 +2013,8,5,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1750,-3,0,1845,-7,0,0 +2013,8,7,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,-6,0,1525,16,1,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,2030,1,0,35,-8,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,820,-1,0,957,-25,0,0 +2013,5,22,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,11,0,2350,-1,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1905,12,0,15,-15,0,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-5,0,1458,-18,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,845,-7,0,1029,-6,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1710,0,0,1824,-14,0,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,7,0,1558,-6,0,0 +2013,8,20,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-6,0,1031,-7,0,0 +2013,7,13,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-7,0,1436,11,0,0 +2013,4,4,4,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-12,0,1755,4,0,0 +2013,9,15,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1922,-7,0,2230,-14,0,0 +2013,6,28,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,0,0,1250,-2,0,0 +2013,6,30,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,730,-1,0,855,-6,0,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,2,0,1327,40,1,0 +2013,6,23,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-6,0,1010,-6,0,0 +2013,9,19,4,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,171,1,1009,194,1,0 +2013,7,18,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-3,0,955,13,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,905,2,0,1610,19,1,0 +2013,10,31,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,0,0,1722,16,1,0 +2013,8,27,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,-6,0,2201,-5,0,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,855,0,0,1010,-3,0,0 +2013,9,26,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-2,0,1838,-6,0,0 +2013,10,21,1,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,15,1,2305,3,0,0 +2013,5,3,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-5,0,1308,34,1,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1810,0,0,2040,-9,0,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1725,39,1,1830,29,1,0 +2013,6,9,7,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,700,-1,0,905,10,0,0 +2013,6,17,1,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-8,0,2000,-15,0,0 +2013,7,25,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,11,0,1915,7,0,0 +2013,10,11,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1820,44,1,1928,18,1,0 +2013,5,14,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,1,0,940,-13,0,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1725,71,1,2155,63,1,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1221,-2,0,1537,-25,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,30,1,2300,22,1,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1423,30,1,1550,2,0,0 +2013,5,6,1,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,700,-4,0,946,-28,0,0 +2013,10,10,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1700,12,0,1800,9,0,0 +2013,7,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1055,-3,0,1420,-16,0,0 +2013,4,24,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1347,-4,0,1600,-4,0,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2045,8,0,2319,8,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1200,0,0,1325,-6,0,0 +2013,5,31,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,640,-3,0,805,-10,0,0 +2013,4,13,6,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,2000,-6,0,2050,-13,0,0 +2013,8,2,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-7,0,1015,-7,0,0 +2013,9,8,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-9,0,1311,-15,0,0 +2013,7,8,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,26,1,1949,23,1,0 +2013,8,26,1,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,8,0,1405,1,0,0 +2013,8,10,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1624,2,0,1819,-12,0,0 +2013,7,31,3,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,-2,0,1455,-2,0,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,0,0,1100,-6,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,744,-10,0,1103,-18,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,23,1,1150,25,1,0 +2013,9,22,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-6,0,1827,-31,0,0 +2013,4,3,3,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1111,-4,0,1312,-7,0,0 +2013,7,8,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,537,-3,0,645,-13,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1425,87,1,1605,103,1,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1357,168,1,1706,197,1,0 +2013,10,29,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,740,64,1,900,92,1,0 +2013,6,11,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1605,1,0,1702,-3,0,0 +2013,9,25,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1830,2,0,1950,9,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-3,0,1030,0,0,0 +2013,4,16,2,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,2,0,1042,7,0,0 +2013,4,16,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,950,1,0,1105,-8,0,0 +2013,8,16,5,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-4,0,1019,-10,0,0 +2013,9,23,1,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1520,4,0,1700,8,0,0 +2013,4,26,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,13,0,1600,9,0,0 +2013,4,9,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,2125,-3,0,2315,-5,0,0 +2013,7,13,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-5,0,533,-8,0,0 +2013,6,1,6,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,-3,0,2213,-21,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,912,-8,0,1200,32,1,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2035,-4,0,2340,-20,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,2015,7,0,2235,-10,0,0 +2013,7,27,6,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,920,-7,0,1200,-12,0,0 +2013,4,10,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,6,0,1234,22,1,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1935,10,0,2135,-10,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,12,0,1220,5,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,845,0,0,1348,4,0,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1416,-6,0,2259,-26,0,0 +2013,8,4,7,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1040,4,0,1615,3,0,0 +2013,10,21,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-7,0,1408,-9,0,0 +2013,9,21,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1259,-1,0,1529,-2,0,0 +2013,9,27,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1935,16,1,2045,12,0,0 +2013,8,16,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-3,0,904,-8,0,0 +2013,4,16,2,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,1,0,1025,-8,0,0 +2013,5,27,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,-6,0,1117,-13,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1705,-2,0,1940,-24,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1547,4,0,1641,1,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1725,-3,0,1950,-28,0,0 +2013,7,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,700,-6,0,815,-14,0,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1855,-3,0,2120,60,1,0 +2013,10,8,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1005,25,1,1230,16,1,0 +2013,5,9,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,11,0,845,5,0,0 +2013,5,14,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-1,0,1130,-10,0,0 +2013,4,30,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-7,0,851,3,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1820,38,1,2025,8,0,0 +2013,5,8,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2100,11,0,2226,13,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,8,0,1815,-1,0,0 +2013,10,4,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1710,34,1,1750,14,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1230,-4,0,1410,-13,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1620,-1,0,1738,-17,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2140,57,1,35,73,1,0 +2013,5,14,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1608,-12,0,1704,6,0,0 +2013,7,9,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1110,-6,0,1413,-27,0,0 +2013,4,17,3,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,950,23,1,1050,35,1,0 +2013,10,5,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1405,-3,0,1525,0,0,0 +2013,8,21,3,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1735,3,0,2030,-11,0,0 +2013,6,13,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,-4,0,2005,97,1,0 +2013,10,15,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1924,-5,0,2046,-5,0,0 +2013,9,25,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,245,1,1320,238,1,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-2,0,1545,-10,0,0 +2013,5,11,6,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,-2,0,2314,-10,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,855,0,0,1054,-11,0,0 +2013,8,22,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-6,0,2025,0,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,930,0,0,1140,0,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1620,181,1,1900,182,1,0 +2013,6,5,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1344,-4,0,1435,-8,0,0 +2013,7,2,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,1254,2,0,0 +2013,7,2,2,AA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1735,-2,0,645,29,1,0 +2013,8,30,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1425,12,0,1525,13,0,0 +2013,5,13,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,715,-10,0,1534,-29,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,735,13,0,940,13,0,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1737,-6,0,1944,-29,0,0 +2013,9,12,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1325,0,0,2059,-2,0,0 +2013,4,4,4,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1410,25,1,1910,19,1,0 +2013,9,15,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,-2,0,2214,-2,0,0 +2013,8,15,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,609,-6,0,850,-5,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1818,1,0,2011,-2,0,0 +2013,6,29,6,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,6,0,550,20,1,0 +2013,7,14,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,18,1,2135,14,0,0 +2013,7,15,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1350,-1,0,1550,-6,0,0 +2013,5,23,4,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1705,0,0,1925,9,0,0 +2013,5,21,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1710,38,1,1810,36,1,0 +2013,7,21,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,910,3,0,0 +2013,6,23,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,752,23,1,958,29,1,0 +2013,9,30,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1330,0,0,1440,-3,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1800,37,1,2030,22,1,0 +2013,6,6,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,945,-14,0,0 +2013,7,3,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,750,7,0,1035,2,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1640,56,1,1904,94,1,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,5,0,1622,15,1,0 +2013,7,11,4,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1710,38,1,2000,25,1,0 +2013,6,9,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,2,0,2046,3,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1347,0,0,1513,-12,0,0 +2013,5,22,3,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,0,,1535,0,1,1 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1200,34,1,1450,36,1,0 +2013,6,3,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1945,37,1,2125,32,1,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1325,58,1,1850,47,1,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,64,1,2151,62,1,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-2,0,920,-15,0,0 +2013,5,9,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1845,48,1,2010,51,1,0 +2013,4,18,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-1,0,1025,-10,0,0 +2013,5,31,5,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1720,3,0,1835,-6,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,940,159,1,1807,152,1,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,-2,0,1054,-13,0,0 +2013,4,29,1,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1115,0,0,1445,-4,0,0 +2013,7,8,1,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,955,12,0,1333,30,1,0 +2013,6,16,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1355,-7,0,1506,-9,0,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1255,25,1,1420,24,1,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,0,0,1115,1,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,829,7,0,1418,19,1,0 +2013,4,1,1,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,18,1,2145,20,1,0 +2013,6,30,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,-3,0,1353,-1,0,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1335,7,0,2030,17,1,0 +2013,5,17,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,3,0,2053,-19,0,0 +2013,10,24,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1715,45,1,1825,54,1,0 +2013,4,13,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,712,-10,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1550,9,0,1711,0,0,0 +2013,6,25,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,0,0,1115,4,0,0 +2013,10,5,6,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,-10,0,1659,-21,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2015,17,1,2130,3,0,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,80,1,1050,86,1,0 +2013,4,12,5,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,720,-1,0,735,-6,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2000,58,1,2250,43,1,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1755,4,0,1900,-7,0,0 +2013,6,28,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1626,67,1,34,61,1,0 +2013,8,6,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,700,-3,0,815,-5,0,0 +2013,5,7,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-5,0,1542,-13,0,0 +2013,7,3,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,0,1800,4,0,0 +2013,4,6,6,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,-1,0,745,-11,0,0 +2013,10,6,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1010,-5,0,1303,-3,0,0 +2013,4,17,3,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1635,106,1,1810,107,1,0 +2013,6,9,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,-15,0,2032,-14,0,0 +2013,9,2,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1438,-5,0,1537,-14,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,4,0,2107,4,0,0 +2013,10,3,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1710,2,0,1916,-8,0,0 +2013,10,22,2,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1345,-9,0,1633,5,0,0 +2013,9,19,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1646,10,0,1948,18,1,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-4,0,2159,-15,0,0 +2013,4,17,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,12,0,1955,5,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1645,10,0,1925,20,1,0 +2013,5,1,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,0,0,1427,45,1,0 +2013,4,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1614,0,,1828,0,1,1 +2013,5,27,1,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1552,-4,0,1655,-8,0,0 +2013,7,9,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1735,24,1,1915,24,1,0 +2013,10,16,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-1,0,900,-14,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,1,0,1805,9,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1100,1,0,1229,-13,0,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,-1,0,1614,-12,0,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1932,47,1,2113,40,1,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-2,0,1012,0,0,0 +2013,5,22,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,6,0,1726,9,0,0 +2013,10,18,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,-3,0,1536,-11,0,0 +2013,5,27,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,655,-3,0,741,-7,0,0 +2013,8,19,1,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,33,1,1958,31,1,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,-1,0,1209,-6,0,0 +2013,5,13,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-3,0,934,-2,0,0 +2013,10,16,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,20,1,1905,5,0,0 +2013,4,17,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-2,0,1221,-8,0,0 +2013,9,9,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1840,39,1,2000,36,1,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1057,20,1,1159,8,0,0 +2013,5,2,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1345,11,0,1512,-5,0,0 +2013,9,16,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1455,0,0,1654,-21,0,0 +2013,4,23,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,841,-5,0,926,-5,0,0 +2013,6,20,4,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,3,0,2030,-15,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,815,-3,0,1000,-6,0,0 +2013,4,6,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1730,-3,0,1830,-7,0,0 +2013,6,19,3,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1310,-4,0,1610,1,0,0 +2013,10,14,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1658,21,1,2029,3,0,0 +2013,10,18,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,1,0,2015,-10,0,0 +2013,4,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-4,0,1630,-11,0,0 +2013,7,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,855,-5,0,1025,-5,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,-1,0,1256,16,1,0 +2013,5,6,1,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1925,16,1,2055,-19,0,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1824,100,1,2000,106,1,0 +2013,8,15,4,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,1,0,1339,-4,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,855,-3,0,1420,-14,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1240,6,0,1325,9,0,0 +2013,4,4,4,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-8,0,1319,-30,0,0 +2013,8,5,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,9,0,1655,-8,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2200,-2,0,2359,4,0,0 +2013,8,14,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,79,1,855,96,1,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1445,11,0,1545,-3,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1910,77,1,2045,75,1,0 +2013,9,19,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1801,9,0,1950,18,1,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1556,1,0,2207,-9,0,0 +2013,5,21,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,905,22,1,1035,11,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1105,5,0,1218,47,1,0 +2013,5,30,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1200,6,0,1325,-1,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1459,0,0,1636,-20,0,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,730,-2,0,850,-11,0,0 +2013,4,30,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-6,0,918,-14,0,0 +2013,8,23,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,6,0,1915,-2,0,0 +2013,10,19,6,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,12,0,1905,6,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1825,10,0,2010,8,0,0 +2013,7,31,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1510,126,1,1825,121,1,0 +2013,10,9,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1450,-10,0,1615,-12,0,0 +2013,10,26,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-4,0,1729,-9,0,0 +2013,8,3,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1919,54,1,2058,45,1,0 +2013,9,28,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1440,-3,0,1525,-8,0,0 +2013,4,11,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1905,7,0,45,1,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,25,1,1855,36,1,0 +2013,10,16,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,1820,-1,0,2140,-2,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,800,-8,0,920,4,0,0 +2013,9,15,7,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-4,0,2050,-23,0,0 +2013,10,19,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1830,4,0,1950,-9,0,0 +2013,8,24,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1122,-2,0,1224,-9,0,0 +2013,5,26,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-11,0,1039,-14,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-2,0,849,4,0,0 +2013,7,7,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,951,26,1,1200,22,1,0 +2013,6,9,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,-7,0,1403,-1,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1610,-5,0,1731,-1,0,0 +2013,7,17,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-5,0,1555,-17,0,0 +2013,10,13,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,23,1,855,11,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,17,1,1327,3,0,0 +2013,9,13,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-2,0,1707,-15,0,0 +2013,7,18,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1531,90,1,1812,92,1,0 +2013,6,24,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,900,2,0,1020,-4,0,0 +2013,8,26,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,6,0,900,-1,0,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,2,0,1740,7,0,0 +2013,4,29,1,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1049,16,1,1225,74,1,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1510,10,0,1740,13,0,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1850,3,0,2100,-14,0,0 +2013,4,6,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-6,0,1834,-9,0,0 +2013,4,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,942,-9,0,1551,-35,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1150,188,1,1337,173,1,0 +2013,6,16,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1138,0,0,1234,-8,0,0 +2013,4,7,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,720,-6,0,1226,-15,0,0 +2013,6,30,7,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,601,-10,0,716,2,0,0 +2013,5,22,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1407,7,0,1524,12,0,0 +2013,6,14,5,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,735,-6,0,1005,-18,0,0 +2013,10,16,3,OO,10423,Austin - Bergstrom International,Austin,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1403,-5,0,1758,-25,0,0 +2013,7,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1905,28,1,2020,15,1,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1155,75,1,1510,81,1,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,16,1,2250,6,0,0 +2013,8,19,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,1,0,2025,-5,0,0 +2013,6,30,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-5,0,1157,4,0,0 +2013,10,10,4,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1226,54,1,1400,42,1,0 +2013,10,8,2,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1254,-3,0,1411,-6,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,1,0,1713,-2,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,40,1,1835,34,1,0 +2013,9,8,7,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2202,4,0,604,7,0,0 +2013,5,9,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,27,1,1135,19,1,0 +2013,10,11,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,-5,0,2245,-9,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,840,12,0,1020,6,0,0 +2013,6,8,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-4,0,905,-1,0,0 +2013,5,29,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,0,,2040,0,1,1 +2013,10,17,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,922,4,0,1030,-11,0,0 +2013,10,4,5,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-12,0,900,-12,0,0 +2013,10,15,2,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,720,-11,0,1240,-44,0,0 +2013,10,18,5,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,28,1,2137,39,1,0 +2013,7,3,3,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-1,0,650,-21,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,2005,-2,0,2356,-7,0,0 +2013,10,17,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1615,-5,0,1739,-7,0,0 +2013,9,24,2,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,950,5,0,1105,9,0,0 +2013,10,26,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1425,6,0,1720,0,0,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1920,42,1,2050,44,1,0 +2013,9,2,1,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,4,0,1116,-27,0,0 +2013,5,13,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1645,158,1,1750,148,1,0 +2013,10,25,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-7,0,2036,10,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2250,3,0,2355,-4,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,55,1,1313,87,1,0 +2013,10,17,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,845,12,0,1100,13,0,0 +2013,9,10,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,-10,0,2130,-22,0,0 +2013,5,7,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1325,109,1,1425,109,1,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1932,31,1,2228,47,1,0 +2013,5,1,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1900,0,0,2155,-32,0,0 +2013,8,21,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,710,-13,0,0 +2013,5,16,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,955,-2,0,1130,2,0,0 +2013,8,9,5,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-4,0,1625,7,0,0 +2013,6,6,4,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1310,8,0,1610,23,1,0 +2013,8,24,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1409,15,1,1650,10,0,0 +2013,7,6,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1718,112,1,1840,116,1,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1207,-8,0,1435,-13,0,0 +2013,5,9,4,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,800,2,0,1045,1,0,0 +2013,5,12,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,625,-2,0,920,0,0,0 +2013,4,3,3,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1305,-14,0,1443,-12,0,0 +2013,8,23,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-8,0,2211,-29,0,0 +2013,8,27,2,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1955,-5,0,2125,10,0,0 +2013,8,12,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1117,-8,0,1635,-14,0,0 +2013,8,4,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1659,-6,0,2021,-21,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1200,24,1,1355,11,0,0 +2013,4,2,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-4,0,846,-14,0,0 +2013,6,6,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1950,-1,0,2243,-8,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,735,-3,0,920,-23,0,0 +2013,9,6,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1756,6,0,1928,-2,0,0 +2013,7,16,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1156,0,0,1312,6,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1105,-6,0,1435,-13,0,0 +2013,10,30,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1526,-20,0,0 +2013,10,15,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,609,3,0,1430,6,0,0 +2013,4,10,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,0,,1615,0,1,1 +2013,7,28,7,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1025,19,1,1225,11,0,0 +2013,8,5,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,5,0,1310,24,1,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,0,0,2205,-9,0,0 +2013,6,29,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1125,55,1,1140,48,1,0 +2013,10,23,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,709,-8,0,943,-36,0,0 +2013,10,31,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,-15,0,1232,-6,0,0 +2013,6,28,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1220,156,1,1416,195,1,0 +2013,8,12,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1235,2,0,1420,-9,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-1,0,1923,-17,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1450,0,0,1810,-29,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,835,1,0,1145,-27,0,0 +2013,6,24,1,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1740,8,0,1850,0,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-2,0,1804,-10,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,-1,0,1135,-7,0,0 +2013,4,26,5,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1022,-11,0,1310,-13,0,0 +2013,7,27,6,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,30,-8,0,835,-12,0,0 +2013,8,16,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-7,0,1824,-5,0,0 +2013,8,22,4,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1315,31,1,1505,28,1,0 +2013,9,25,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,645,-3,0,700,0,0,0 +2013,9,17,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1206,7,0,1531,-11,0,0 +2013,5,12,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,2120,15,1,2125,11,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,940,8,0,1105,5,0,0 +2013,5,13,1,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1104,-1,0,1414,15,1,0 +2013,4,23,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,-3,0,1558,-4,0,0 +2013,7,30,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1014,55,1,1605,32,1,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1935,-2,0,2130,-26,0,0 +2013,8,22,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1055,132,1,1220,121,1,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1630,-4,0,1755,-9,0,0 +2013,10,27,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1455,0,0,1815,-6,0,0 +2013,8,17,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-3,0,1329,0,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1555,-6,0,1710,-16,0,0 +2013,6,6,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,11,0,1305,4,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1950,153,1,2120,144,1,0 +2013,9,20,5,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,37,1,1625,26,1,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,844,6,0,1725,19,1,0 +2013,6,14,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1215,29,1,1350,30,1,0 +2013,7,25,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1802,-3,0,1848,-10,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1932,-5,0,2228,22,1,0 +2013,5,19,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,-1,0,1330,-4,0,0 +2013,8,12,1,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-6,0,1415,-8,0,0 +2013,4,1,1,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1350,-7,0,1456,-9,0,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1900,1,0,2235,-11,0,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1031,-3,0,1340,-9,0,0 +2013,5,10,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,21,1,855,24,1,0 +2013,9,9,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2125,1,0,20,-4,0,0 +2013,8,23,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1935,18,1,2100,23,1,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,0,0,1346,8,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1955,80,1,2125,79,1,0 +2013,9,4,3,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1145,-15,0,1407,-33,0,0 +2013,4,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1150,56,1,1255,49,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,-4,0,1845,-10,0,0 +2013,6,9,7,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,12,0,2256,4,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,0,0,1504,16,1,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,-6,0,2245,-2,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,3,0,652,-9,0,0 +2013,9,29,7,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,938,-12,0,1107,-13,0,0 +2013,5,12,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2019,-6,0,2119,0,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,12,0,1309,6,0,0 +2013,6,20,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-9,0,2045,2,0,0 +2013,8,5,1,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,92,1,1905,97,1,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1135,2,0,1435,-12,0,0 +2013,4,22,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,559,-4,0,652,-11,0,0 +2013,6,29,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,905,64,1,1223,63,1,0 +2013,8,12,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1700,292,1,2108,273,1,0 +2013,6,24,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-4,0,846,4,0,0 +2013,10,29,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,650,-7,0,815,-11,0,0 +2013,9,14,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-5,0,1451,-11,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,5,0,1029,55,1,0 +2013,8,24,6,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,700,-7,0,845,-3,0,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,-6,0,1115,-13,0,0 +2013,6,10,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,-9,0,2147,-1,0,0 +2013,6,28,5,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,0,,2308,0,1,1 +2013,4,6,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2033,-3,0,2200,-10,0,0 +2013,9,26,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,24,1,1605,0,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1615,8,0,1710,4,0,0 +2013,9,18,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,710,0,0,930,-9,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2020,12,0,2120,-4,0,0 +2013,5,25,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2129,-9,0,2219,9,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,939,-3,0,1755,-12,0,0 +2013,10,30,3,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,756,-4,0,1556,-10,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1138,6,0,1448,4,0,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,841,39,1,1606,25,1,0 +2013,9,28,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,600,81,1,747,69,1,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1620,24,1,1900,21,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2030,-3,0,2235,-5,0,0 +2013,6,5,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1440,-1,0,1615,-10,0,0 +2013,6,19,3,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1045,-4,0,1609,-11,0,0 +2013,7,25,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,-8,0,7,-7,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,-4,0,1050,-1,0,0 +2013,8,30,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,17,1,500,8,0,0 +2013,6,26,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1456,38,1,1658,38,1,0 +2013,4,9,2,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1740,-6,0,1849,-17,0,0 +2013,10,18,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-11,0,812,-10,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,1,0,2324,-4,0,0 +2013,9,13,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1004,-16,0,0 +2013,7,19,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1506,12,0,1743,41,1,0 +2013,5,11,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1735,24,1,2028,45,1,0 +2013,7,1,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,-3,0,1330,-13,0,0 +2013,6,16,7,YV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,758,-3,0,1045,-11,0,0 +2013,9,17,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1600,14,0,2010,7,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1040,14,0,1300,0,0,0 +2013,6,8,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-2,0,749,-16,0,0 +2013,5,20,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1133,9,0,1904,7,0,0 +2013,5,12,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-4,0,1430,-15,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1155,20,1,1815,31,1,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2110,-5,0,2349,-10,0,0 +2013,10,26,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2345,-11,0,559,-11,0,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1859,68,1,2026,65,1,0 +2013,9,18,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,637,0,0,835,-2,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1905,37,1,2135,29,1,0 +2013,10,25,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1040,7,0,1240,1,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,729,-4,0,750,1,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,8,0,1931,11,0,0 +2013,7,13,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1835,10,0,1950,22,1,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2208,25,1,2359,2,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2146,121,1,16,100,1,0 +2013,5,13,1,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1740,11,0,1935,-21,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1055,1,0,1420,-9,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1955,16,1,2125,32,1,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,10,0,1255,-7,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1741,-4,0,2359,-13,0,0 +2013,6,19,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2216,-5,0,2351,-4,0,0 +2013,9,22,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2015,89,1,2140,86,1,0 +2013,4,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1835,2,0,2145,-16,0,0 +2013,8,1,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-1,0,1510,-7,0,0 +2013,6,4,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,635,-6,0,810,-22,0,0 +2013,7,15,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,600,-2,0,700,-2,0,0 +2013,4,17,3,OO,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1430,-2,0,1645,-3,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,0,0,1255,-20,0,0 +2013,4,26,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1608,55,1,1815,43,1,0 +2013,7,13,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-7,0,2107,-16,0,0 +2013,7,22,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1931,0,,2057,0,1,1 +2013,10,4,5,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-8,0,636,-4,0,0 +2013,4,11,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2015,-3,0,2145,-5,0,0 +2013,10,20,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-4,0,1611,-11,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,855,-1,0,1155,-3,0,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,1,0,1004,-13,0,0 +2013,8,19,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,115,1,1400,115,1,0 +2013,10,9,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-8,0,851,18,1,0 +2013,8,9,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-2,0,859,3,0,0 +2013,6,2,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,22,1,1656,12,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,-3,0,1430,-26,0,0 +2013,9,19,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1650,0,,1815,0,1,1 +2013,6,2,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1741,80,1,1837,70,1,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2005,1,0,2217,-7,0,0 +2013,6,2,7,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1710,-7,0,1829,-11,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,80,1,1330,106,1,0 +2013,6,30,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-8,0,1316,30,1,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2102,0,0,2227,17,1,0 +2013,5,6,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,-6,0,1225,-23,0,0 +2013,6,3,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1420,-3,0,1559,2,0,0 +2013,7,4,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,810,-4,0,1330,-25,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1319,-5,0,1709,-26,0,0 +2013,6,23,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-6,0,2255,-22,0,0 +2013,5,23,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1815,16,1,2125,8,0,0 +2013,8,5,1,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1815,37,1,2020,34,1,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,741,-1,0,1005,-26,0,0 +2013,4,26,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,6,0,2015,9,0,0 +2013,7,17,3,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1000,-3,0,1255,-7,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,1,0,1435,12,0,0 +2013,6,9,7,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-3,0,612,-1,0,0 +2013,9,27,5,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1835,16,1,1950,-9,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1305,-3,0,2000,-3,0,0 +2013,8,14,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,609,-3,0,1136,-11,0,0 +2013,9,28,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1500,-2,0,1908,-5,0,0 +2013,6,8,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,703,-7,0,0 +2013,4,14,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1649,98,1,1812,102,1,0 +2013,6,22,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,17,1,846,11,0,0 +2013,7,23,2,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1530,22,1,1635,15,1,0 +2013,6,19,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,-7,0,1310,-20,0,0 +2013,4,6,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1752,-4,0,2024,-8,0,0 +2013,7,27,6,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,47,1,1240,35,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2140,-3,0,2225,1,0,0 +2013,8,13,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,3,0,2030,-6,0,0 +2013,8,6,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,-1,0,619,7,0,0 +2013,8,4,7,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1640,-3,0,1815,-6,0,0 +2013,7,22,1,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1553,97,1,1816,151,1,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,6,0,1920,29,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1945,2,0,2140,-1,0,0 +2013,6,3,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,901,3,0,0 +2013,8,5,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1300,-6,0,1505,-15,0,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,0,0,1040,-9,0,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,52,1,1410,81,1,0 +2013,10,18,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,6,0,1852,22,1,0 +2013,8,22,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1040,-3,0,1200,19,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1530,9,0,1650,8,0,0 +2013,5,29,3,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,715,-4,0,823,-14,0,0 +2013,7,2,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,80,1,720,87,1,0 +2013,9,27,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,901,-8,0,949,-16,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,12,0,1013,22,1,0 +2013,4,22,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1903,-6,0,2100,-18,0,0 +2013,6,19,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1550,-1,0,1830,-3,0,0 +2013,5,31,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,922,-4,0,1235,-17,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,176,1,1655,173,1,0 +2013,5,31,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2145,-4,0,2325,-7,0,0 +2013,7,19,5,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1940,129,1,2030,123,1,0 +2013,7,26,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1356,-7,0,1640,-6,0,0 +2013,4,23,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1203,27,1,1520,32,1,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,26,1,2235,14,0,0 +2013,6,26,3,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1700,7,0,2359,10,0,0 +2013,5,5,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,846,-5,0,1058,-3,0,0 +2013,5,19,7,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,700,-2,0,940,1,0,0 +2013,10,26,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-3,0,1914,-14,0,0 +2013,9,27,5,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1535,9,0,1700,-2,0,0 +2013,4,8,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-8,0,1500,-23,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-1,0,1147,17,1,0 +2013,9,3,2,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1400,18,1,1745,15,1,0 +2013,8,2,5,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,1,0,1820,5,0,0 +2013,8,23,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,40,-5,0,651,20,1,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1920,33,1,2135,47,1,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,12,0,1208,17,1,0 +2013,10,16,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-1,0,850,-12,0,0 +2013,9,5,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,750,13,0,1020,38,1,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,107,1,2325,104,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,-3,0,1459,5,0,0 +2013,5,28,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,0,0,1255,-2,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,-4,0,2357,-15,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1630,-2,0,1830,-24,0,0 +2013,4,10,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-6,0,641,-5,0,0 +2013,9,12,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,79,1,2132,84,1,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1000,10,0,1100,8,0,0 +2013,8,8,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,-9,0,950,-17,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1100,5,0,1535,2,0,0 +2013,5,11,6,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1205,1,0,1335,-6,0,0 +2013,6,7,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1445,1,0,1613,-11,0,0 +2013,9,3,2,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-17,0,1050,-29,0,0 +2013,6,27,4,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1550,101,1,1805,127,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-6,0,1427,-9,0,0 +2013,6,29,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,13,0,1505,1,0,0 +2013,5,3,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1435,-9,0,1710,-20,0,0 +2013,5,21,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2155,-9,0,15,-1,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1200,14,0,1332,7,0,0 +2013,4,13,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1255,-2,0,1440,-22,0,0 +2013,5,20,1,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1120,177,1,1408,160,1,0 +2013,7,11,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,720,-4,0,908,-4,0,0 +2013,5,8,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1544,1,0,1700,9,0,0 +2013,4,11,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,127,1,1504,138,1,0 +2013,9,5,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1820,-5,0,2000,-21,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-2,0,1920,-8,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2000,-2,0,2124,-11,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2115,3,0,2215,1,0,0 +2013,10,26,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-6,0,1504,-7,0,0 +2013,6,5,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,645,-18,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,700,-2,0,820,-14,0,0 +2013,4,28,7,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,805,-8,0,1153,-18,0,0 +2013,8,11,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-6,0,1332,-14,0,0 +2013,10,16,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-5,0,1555,-4,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,8,0,2244,-3,0,0 +2013,8,4,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1855,0,0,2004,4,0,0 +2013,10,8,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-6,0,2004,13,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,-5,0,1204,-1,0,0 +2013,8,31,6,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1922,-9,0,2057,-30,0,0 +2013,4,6,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1500,6,0,1620,-7,0,0 +2013,7,31,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,828,-4,0,1009,-2,0,0 +2013,8,14,3,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1648,13,0,1722,21,1,0 +2013,8,20,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1822,-6,0,1955,-6,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,12,0,1320,11,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1625,-5,0,1920,-2,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,720,-2,0,925,-11,0,0 +2013,8,29,4,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,819,46,1,1103,36,1,0 +2013,5,14,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-5,0,1839,-10,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,30,1,1048,36,1,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,-3,0,1050,-5,0,0 +2013,7,27,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,-3,0,1840,-2,0,0 +2013,10,15,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1805,-1,0,1940,-3,0,0 +2013,9,2,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1700,0,,1900,0,1,1 +2013,10,27,7,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,-6,0,1800,-3,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1750,4,0,2041,6,0,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,-9,0,1629,9,0,0 +2013,8,19,1,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1941,0,0,2106,-11,0,0 +2013,8,14,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1702,-5,0,1829,-19,0,0 +2013,4,15,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,7,0,730,-6,0,0 +2013,7,24,3,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-4,0,1153,-19,0,0 +2013,8,6,2,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,545,-17,0,831,-9,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2055,-2,0,2220,1,0,0 +2013,5,24,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,600,288,1,720,291,1,0 +2013,10,12,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1048,-5,0,0 +2013,5,23,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1455,22,1,1610,24,1,0 +2013,6,4,2,EV,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1338,0,,1656,0,1,1 +2013,6,25,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,9,0,1455,-3,0,0 +2013,7,11,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,25,1,2245,29,1,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1910,-7,0,2020,14,0,0 +2013,7,24,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,755,8,0,915,10,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1310,2,0,1540,-12,0,0 +2013,10,10,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2156,17,1,2247,2,0,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,25,1,2020,24,1,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1455,17,1,1750,12,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1920,17,1,55,2,0,0 +2013,8,10,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,740,-3,0,1040,-7,0,0 +2013,7,8,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1758,67,1,1927,63,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,4,0,1139,7,0,0 +2013,8,26,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1110,-4,0,1320,-15,0,0 +2013,6,11,2,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,79,1,2140,65,1,0 +2013,7,26,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1210,-1,0,1500,-8,0,0 +2013,10,31,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,0,0,930,-4,0,0 +2013,8,14,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,600,-15,0,615,-21,0,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1545,-3,0,1828,5,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1916,-5,0,2241,-15,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-4,0,1236,-8,0,0 +2013,9,17,2,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1005,-7,0,1305,-16,0,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,4,0,2148,-23,0,0 +2013,10,25,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-6,0,1125,-21,0,0 +2013,6,1,6,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-6,0,1018,-4,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1222,-4,0,1545,-22,0,0 +2013,6,11,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,944,74,1,1012,53,1,0 +2013,10,4,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,830,-5,0,1105,-7,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,-1,0,1755,-14,0,0 +2013,8,27,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,130,-7,0,800,-4,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,77,1,1039,63,1,0 +2013,5,5,7,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1413,13,0,1531,13,0,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,900,-3,0,1735,-24,0,0 +2013,6,15,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,910,-6,0,1022,-11,0,0 +2013,9,22,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,830,-8,0,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1846,0,0,2004,-3,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2100,96,1,2236,95,1,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,1300,-1,0,1721,-4,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,19,1,2250,15,1,0 +2013,9,1,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,45,1,1753,32,1,0 +2013,6,20,4,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2339,-3,0,553,15,1,0 +2013,7,25,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-2,0,1440,-15,0,0 +2013,7,14,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-2,0,815,1,0,0 +2013,4,26,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,-7,0,2125,-9,0,0 +2013,4,10,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,15,1,1917,0,0,0 +2013,8,3,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1535,17,1,1655,9,0,0 +2013,9,3,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,940,-3,0,1220,-6,0,0 +2013,6,3,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,-3,0,1605,-14,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,708,2,0,943,2,0,0 +2013,6,12,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,731,-6,0,950,-21,0,0 +2013,6,5,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-1,0,1750,-17,0,0 +2013,4,26,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,935,0,0,1200,-7,0,0 +2013,5,28,2,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,715,15,1,903,28,1,0 +2013,6,20,4,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1800,0,0,1920,-3,0,0 +2013,7,18,4,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1145,16,1,1445,29,1,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,44,1,2320,34,1,0 +2013,7,6,6,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2034,-2,0,2145,-8,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,900,-3,0,1030,-5,0,0 +2013,8,5,1,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,910,-4,0,1125,2,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2235,-4,0,2325,0,0,0 +2013,7,24,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,815,2,0,925,-2,0,0 +2013,9,29,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1415,-4,0,1600,25,1,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2145,70,1,2325,71,1,0 +2013,10,24,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1159,-4,0,1309,-16,0,0 +2013,6,15,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1606,-1,0,1800,2,0,0 +2013,6,18,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,21,1,1435,13,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,830,10,0,1050,5,0,0 +2013,5,23,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1251,-2,0,1612,-4,0,0 +2013,7,31,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,802,-4,0,900,-16,0,0 +2013,8,20,2,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,0,0,1240,-1,0,0 +2013,9,9,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-18,0,2050,-16,0,0 +2013,8,1,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,615,-11,0,0 +2013,8,28,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,740,-5,0,1040,-12,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2110,-8,0,2208,-21,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,905,4,0,1325,-5,0,0 +2013,6,15,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1737,33,1,1957,42,1,0 +2013,6,4,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1426,6,0,1527,10,0,0 +2013,9,2,1,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1652,35,1,1800,28,1,0 +2013,5,31,5,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,6,0,2025,-12,0,0 +2013,6,25,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1230,67,1,1335,63,1,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,1,0,905,-4,0,0 +2013,9,11,3,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1150,-6,0,1450,1,0,0 +2013,5,6,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1457,-12,0,1600,-20,0,0 +2013,6,6,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,700,-2,0,815,-17,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1640,0,0,1825,-7,0,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,610,-4,0,700,-7,0,0 +2013,7,6,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1004,-2,0,1315,-6,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,844,-5,0,1033,-22,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,26,1,1936,2,0,0 +2013,6,1,6,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-1,0,1625,-9,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,-4,0,1631,-9,0,0 +2013,6,1,6,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1717,-11,0,1840,-11,0,0 +2013,6,1,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1246,-2,0,1400,-19,0,0 +2013,5,1,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1200,3,0,1420,-18,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,9,0,1310,13,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1320,1,0,1425,-11,0,0 +2013,8,17,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-6,0,649,-6,0,0 +2013,9,9,1,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1730,12,0,2005,8,0,0 +2013,9,3,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,1730,-4,0,1854,-9,0,0 +2013,4,2,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1946,-4,0,2113,-14,0,0 +2013,7,28,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,16,1,1010,4,0,0 +2013,9,12,4,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1417,-4,0,1520,-7,0,0 +2013,7,5,5,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-6,0,1755,-13,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,610,-2,0,910,-8,0,0 +2013,8,9,5,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,908,21,1,1400,14,0,0 +2013,7,6,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1250,-6,0,0 +2013,5,7,2,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1855,-2,0,2148,-12,0,0 +2013,9,5,4,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1800,-4,0,2118,-23,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,1,0,2324,-2,0,0 +2013,4,10,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,-3,0,1107,-3,0,0 +2013,8,30,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-2,0,739,-4,0,0 +2013,8,1,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,950,-1,0,1219,11,0,0 +2013,6,13,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1533,111,1,1653,98,1,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2100,29,1,2150,24,1,0 +2013,7,25,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1946,45,1,2113,46,1,0 +2013,10,18,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-4,0,835,-10,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1028,142,1,1320,124,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1022,-1,0,1210,-11,0,0 +2013,4,26,5,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1338,-7,0,1706,-15,0,0 +2013,7,7,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-3,0,821,-11,0,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2120,1,0,2224,-13,0,0 +2013,5,28,2,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1955,-10,0,2157,-26,0,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,610,-1,0,723,9,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-2,0,1208,1,0,0 +2013,7,16,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,-3,0,2144,-16,0,0 +2013,6,28,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1844,167,1,2058,177,1,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1250,-5,0,1352,-17,0,0 +2013,9,17,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1034,-2,0,1119,-3,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,925,3,0,1020,2,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1000,-6,0,1834,-40,0,0 +2013,9,16,1,9E,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,740,1,0,0 +2013,4,11,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2050,15,1,2212,12,0,0 +2013,6,4,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1338,-8,0,1616,-17,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1142,3,0,1422,4,0,0 +2013,9,8,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-8,0,1917,-19,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,624,-5,0,801,-23,0,0 +2013,6,1,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1735,26,1,2028,2,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,3,0,1145,8,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,-5,0,1830,8,0,0 +2013,8,3,6,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1400,-1,0,1525,29,1,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,3,0,950,2,0,0 +2013,9,29,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1244,45,1,1530,85,1,0 +2013,10,7,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,10,0,1950,6,0,0 +2013,6,1,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1130,9,0,1407,3,0,0 +2013,8,28,3,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1300,1,0,1545,-30,0,0 +2013,8,2,5,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1450,149,1,1634,153,1,0 +2013,10,24,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,63,1,1937,64,1,0 +2013,7,16,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,11,0,1745,11,0,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2040,17,1,2145,16,1,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1300,7,0,1624,6,0,0 +2013,4,8,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-5,0,1705,-14,0,0 +2013,5,3,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,700,-4,0,1525,32,1,0 +2013,8,25,7,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1300,0,0,1533,-11,0,0 +2013,5,17,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2220,-6,0,615,2,0,0 +2013,5,27,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,829,-1,0,945,-22,0,0 +2013,5,12,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,823,-4,0,1000,-37,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1740,8,0,2015,-5,0,0 +2013,5,2,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,734,-6,0,848,-4,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1305,0,0,1525,-19,0,0 +2013,5,23,4,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1645,4,0,1827,14,0,0 +2013,5,10,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,15,1,1755,22,1,0 +2013,6,10,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-3,0,1310,-3,0,0 +2013,9,20,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-5,0,805,-34,0,0 +2013,4,26,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1638,-9,0,1928,-4,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2110,21,1,2222,6,0,0 +2013,8,22,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1740,68,1,1910,56,1,0 +2013,5,8,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1855,12,0,2100,40,1,0 +2013,6,15,6,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1805,-6,0,2045,-19,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,-3,0,827,-15,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,30,1,1420,25,1,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,8,0,1910,6,0,0 +2013,7,2,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-1,0,2155,118,1,0 +2013,8,1,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,41,1,1900,62,1,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,6,0,2215,2,0,0 +2013,9,1,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1020,-3,0,1352,-11,0,0 +2013,5,3,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,68,1,935,60,1,0 +2013,6,28,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,3,0,1724,0,0,0 +2013,9,8,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,-3,0,1518,-13,0,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2235,4,0,5,-6,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,840,-2,0,1040,3,0,0 +2013,6,11,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,555,-2,0,800,-8,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,108,1,1707,205,1,0 +2013,4,18,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1433,-1,0,1703,-8,0,0 +2013,6,2,7,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1755,10,0,1925,-6,0,0 +2013,4,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,20,1,1935,7,0,0 +2013,8,4,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1951,-3,0,2316,-20,0,0 +2013,6,9,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,56,0,0,607,-10,0,0 +2013,5,3,5,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1700,2,0,1819,9,0,0 +2013,10,9,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,4,0,2200,-10,0,0 +2013,8,28,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,4,0,1250,-31,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1410,183,1,1425,180,1,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,-2,0,1949,-10,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2258,-2,0,110,-23,0,0 +2013,7,5,5,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1235,-3,0,1555,-8,0,0 +2013,7,14,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1555,-6,0,1728,-3,0,0 +2013,6,21,5,EV,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,9,0,1840,11,0,0 +2013,4,30,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1810,150,1,2047,145,1,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1710,-6,0,1945,-15,0,0 +2013,10,5,6,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1725,-3,0,2002,-5,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2140,57,1,2225,51,1,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1127,-4,0,1241,-10,0,0 +2013,8,17,6,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1415,16,1,1510,8,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1524,-2,0,1655,-13,0,0 +2013,8,8,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,625,2,0,800,4,0,0 +2013,4,20,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,2,0,1811,-20,0,0 +2013,7,13,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1345,4,0,1455,7,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1351,0,0,1427,-4,0,0 +2013,6,29,6,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,756,45,1,1106,38,1,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1740,24,1,2320,25,1,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2235,-4,0,2345,1,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1530,0,0,1847,-16,0,0 +2013,9,20,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,925,-1,0,1055,-2,0,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,640,-1,0,945,-5,0,0 +2013,5,13,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,-7,0,910,-8,0,0 +2013,9,23,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1500,-3,0,1723,-2,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,-3,0,1534,-7,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1914,16,1,2043,71,1,0 +2013,6,11,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,37,1,1835,27,1,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1710,6,0,2155,-17,0,0 +2013,9,22,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,0,0,1616,-4,0,0 +2013,6,28,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1600,-5,0,1603,-5,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,615,-4,0,809,-17,0,0 +2013,6,7,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1320,-3,0,1614,-7,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,745,14,0,916,7,0,0 +2013,8,21,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-6,0,1405,-15,0,0 +2013,7,31,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,5,0,2025,7,0,0 +2013,5,21,2,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,839,20,1,0 +2013,10,16,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2020,-3,0,2120,-8,0,0 +2013,6,4,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-8,0,2120,-15,0,0 +2013,5,26,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,32,1,1300,15,1,0 +2013,7,6,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1320,1,0,1330,1,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1430,-3,0,1742,-13,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1939,13,0,2306,11,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,-2,0,2126,31,1,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,6,0,1320,2,0,0 +2013,4,8,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,-2,0,1632,1,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1330,12,0,1430,12,0,0 +2013,6,2,7,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1120,30,1,1408,27,1,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1702,53,1,1935,61,1,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2049,27,1,2220,23,1,0 +2013,4,28,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1559,-5,0,1856,-9,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2200,101,1,2306,89,1,0 +2013,10,16,3,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1820,-8,0,1958,-15,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1443,29,1,1800,2,0,0 +2013,9,17,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,-10,0,2243,-4,0,0 +2013,8,1,4,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,14,0,1420,8,0,0 +2013,6,24,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1649,0,,1846,0,1,1 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,-7,0,1458,-15,0,0 +2013,10,24,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,3,0,1845,9,0,0 +2013,4,10,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,-11,0,1355,-21,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,-3,0,2255,2,0,0 +2013,10,23,3,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,-5,0,1123,4,0,0 +2013,5,6,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1140,1,0,1225,51,1,0 +2013,8,20,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1511,2,0,1900,2,0,0 +2013,5,9,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,-5,0,1126,0,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,11,0,2205,5,0,0 +2013,5,6,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,195,1,1635,0,1,1 +2013,4,9,2,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,845,-2,0,1122,3,0,0 +2013,7,30,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1302,-5,0,1430,-7,0,0 +2013,8,23,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,936,-6,0,1159,-16,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1840,34,1,2210,60,1,0 +2013,6,16,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1745,-5,0,1855,-10,0,0 +2013,5,30,4,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,54,1,1849,45,1,0 +2013,9,24,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1435,-8,0,1450,-23,0,0 +2013,6,9,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,-4,0,2210,44,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,0,0,1503,-21,0,0 +2013,9,11,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,730,-5,0,913,-20,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2145,100,1,2350,118,1,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-2,0,950,0,0,0 +2013,6,17,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,7,0,1545,8,0,0 +2013,10,17,4,WN,10693,Nashville International,Nashville,TN,14122,Pittsburgh International,Pittsburgh,PA,1730,24,1,1955,13,0,0 +2013,4,28,7,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,-4,0,930,-22,0,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2030,67,1,2217,95,1,0 +2013,8,20,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-9,0,1055,-7,0,0 +2013,5,30,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2045,46,1,2255,39,1,0 +2013,7,4,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1310,-4,0,1415,-9,0,0 +2013,6,5,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,-4,0,2110,-19,0,0 +2013,8,15,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,17,1,1730,15,1,0 +2013,9,17,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-1,0,1100,2,0,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1000,-3,0,1408,-22,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1945,1,0,110,-15,0,0 +2013,7,10,3,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1500,44,1,1919,48,1,0 +2013,10,28,1,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1226,-8,0,1338,-11,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1107,-2,0,1231,-14,0,0 +2013,7,7,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,1,0,1015,-27,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,1,0,1445,-4,0,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-1,0,1115,-1,0,0 +2013,4,17,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,920,0,0,0 +2013,7,25,4,DL,14679,San Diego International,San Diego,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-6,0,1902,-9,0,0 +2013,7,27,6,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1325,-4,0,1536,-11,0,0 +2013,10,4,5,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-8,0,1857,-14,0,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,71,1,1725,70,1,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-4,0,2326,-2,0,0 +2013,10,5,6,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-3,0,1031,-12,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,751,-2,0,1043,-15,0,0 +2013,8,25,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,13,0,2140,-35,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1735,22,1,1927,14,0,0 +2013,5,26,7,EV,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1017,-11,0,1107,-15,0,0 +2013,6,21,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1615,30,1,1710,28,1,0 +2013,9,8,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2140,-1,0,2159,-7,0,0 +2013,10,25,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1011,17,1,1230,20,1,0 +2013,10,16,3,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1602,-10,0,1707,5,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,-2,0,1725,-2,0,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,3,0,2229,15,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,730,-1,0,1155,-10,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,3,0,1403,-7,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1545,43,1,1630,46,1,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1140,-3,0,1330,-4,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,0,0,1812,1,0,0 +2013,8,5,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1420,8,0,1555,0,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-5,0,1050,-7,0,0 +2013,8,15,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,730,7,0,840,13,0,0 +2013,5,23,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,700,-4,0,800,-7,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1545,-5,0,1650,-14,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1140,13,0,1434,6,0,0 +2013,8,3,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1003,7,0,1045,3,0,0 +2013,7,19,5,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,85,1,2015,76,1,0 +2013,4,24,3,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1805,-13,0,2201,0,0,0 +2013,6,9,7,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10,-2,0,800,6,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1545,75,1,2030,64,1,0 +2013,8,1,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-4,0,2150,0,0,0 +2013,4,28,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,22,1,1035,16,1,0 +2013,8,5,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1005,33,1,1155,24,1,0 +2013,7,8,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,835,3,0,1205,-11,0,0 +2013,7,13,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-3,0,1457,6,0,0 +2013,5,3,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,21,1,1304,22,1,0 +2013,6,10,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,6,0,1203,10,0,0 +2013,8,8,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,1200,-1,0,0 +2013,7,2,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-4,0,1222,-12,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2125,11,0,2350,0,0,0 +2013,5,10,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1435,-5,0,1635,-7,0,0 +2013,5,13,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,-10,0,1745,-26,0,0 +2013,10,17,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-2,0,1300,-24,0,0 +2013,9,24,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1416,121,1,1548,110,1,0 +2013,8,13,2,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1947,8,0,2056,41,1,0 +2013,10,28,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1600,-5,0,1859,-1,0,0 +2013,6,10,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,-10,0,910,-1,0,0 +2013,4,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,-5,0,2259,-15,0,0 +2013,10,13,7,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1229,4,0,1515,-14,0,0 +2013,4,14,7,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,140,-10,0,716,-17,0,0 +2013,10,21,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1041,-1,0,1401,1,0,0 +2013,8,9,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-4,0,1320,-14,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1231,-3,0,1427,-14,0,0 +2013,7,26,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,5,0,1825,9,0,0 +2013,5,14,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1505,15,1,1630,19,1,0 +2013,4,26,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2000,-1,0,2125,-3,0,0 +2013,4,11,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,12,0,1411,5,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,828,-2,0,936,-4,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-4,0,940,-7,0,0 +2013,5,8,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-3,0,1250,-6,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,923,25,1,1152,19,1,0 +2013,9,29,7,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1350,4,0,1830,-11,0,0 +2013,8,31,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-5,0,1854,54,1,0 +2013,7,29,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-4,0,1113,-7,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1505,-2,0,1645,-11,0,0 +2013,9,15,7,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2055,7,0,605,31,1,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-4,0,1737,-19,0,0 +2013,4,10,3,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,855,-2,0,1050,-21,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,-1,0,1729,-5,0,0 +2013,6,2,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1510,3,0,1605,6,0,0 +2013,5,26,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1845,5,0,2215,0,0,0 +2013,10,15,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,605,-4,0,905,-28,0,0 +2013,7,14,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,745,-10,0,1040,2,0,0 +2013,9,19,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2020,27,1,2140,25,1,0 +2013,6,6,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,43,1,2056,22,1,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-2,0,1002,-11,0,0 +2013,10,19,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1307,-6,0,1431,-12,0,0 +2013,6,23,7,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,27,1,1310,23,1,0 +2013,9,27,5,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1010,-5,0,1314,-16,0,0 +2013,4,3,3,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,733,-7,0,1029,-3,0,0 +2013,10,10,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,3,0,1419,-15,0,0 +2013,7,14,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,58,1,2130,56,1,0 +2013,8,26,1,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1348,1,0,1450,-4,0,0 +2013,6,25,2,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,7,0,1559,13,0,0 +2013,4,22,1,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1645,12,0,1829,51,1,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-4,0,500,-30,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,2,0,2230,5,0,0 +2013,5,27,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-8,0,1300,-10,0,0 +2013,7,21,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,1,0,1758,1,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,-1,0,1815,12,0,0 +2013,6,26,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1321,200,1,1617,200,1,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1805,9,0,2040,5,0,0 +2013,6,10,1,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,904,-5,0,0 +2013,8,20,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1119,-4,0,1453,46,1,0 +2013,6,6,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,1,0,1948,10,0,0 +2013,8,5,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1835,-9,0,2035,-13,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1425,52,1,1820,93,1,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,91,1,2218,85,1,0 +2013,10,31,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,-5,0,1619,7,0,0 +2013,10,7,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-6,0,1440,-10,0,0 +2013,5,13,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1600,-3,0,1615,9,0,0 +2013,6,21,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,545,1,0,705,-10,0,0 +2013,9,17,2,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,630,-10,0,838,-17,0,0 +2013,4,28,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,4,0,1245,38,1,0 +2013,9,14,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,605,-10,0,718,-19,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,4,0,1605,-3,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,143,1,2040,136,1,0 +2013,10,10,4,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1855,6,0,2030,20,1,0 +2013,4,8,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,18,1,1620,22,1,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2007,-5,0,2108,4,0,0 +2013,6,5,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2133,-7,0,2205,-3,0,0 +2013,4,21,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-10,0,1537,-1,0,0 +2013,6,24,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1407,17,1,2100,12,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,635,0,,740,0,1,1 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1050,13,0,1150,11,0,0 +2013,4,11,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,64,1,2210,49,1,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1905,0,0,2000,-9,0,0 +2013,7,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,3,0,1205,-4,0,0 +2013,9,21,6,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1704,0,0,1932,3,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1345,21,1,1510,21,1,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,111,1,1450,97,1,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-4,0,1311,1,0,0 +2013,9,9,1,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,620,-3,0,850,-19,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,130,1,1847,117,1,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,5,0,1200,19,1,0 +2013,9,15,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1459,1,0,2010,-20,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1040,3,0,1400,9,0,0 +2013,9,17,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-14,0,1040,-18,0,0 +2013,9,20,5,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1455,-4,0,1750,-20,0,0 +2013,6,9,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1005,-2,0,1120,-11,0,0 +2013,7,1,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,2,0,1129,6,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-4,0,1110,-3,0,0 +2013,10,14,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1330,13,0,1510,2,0,0 +2013,8,31,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1635,-15,0,1757,-2,0,0 +2013,10,23,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1656,-6,0,2228,-17,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2115,4,0,2230,-10,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1429,-8,0,1733,-8,0,0 +2013,6,3,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,835,-1,0,1105,-12,0,0 +2013,7,8,1,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1000,-2,0,1134,-9,0,0 +2013,6,11,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1714,2,0,2025,-20,0,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2100,64,1,2150,57,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,949,9,0,1150,11,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,930,4,0,1107,-10,0,0 +2013,4,9,2,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-7,0,955,-20,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1615,-2,0,1825,12,0,0 +2013,6,20,4,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1616,-10,0,1821,-18,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1150,-4,0,1255,-5,0,0 +2013,8,19,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1801,-3,0,2026,-11,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1425,27,1,1825,19,1,0 +2013,7,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,6,0,2110,13,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,1,0,1720,0,0,0 +2013,5,15,3,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1715,-15,0,2020,-40,0,0 +2013,6,17,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,211,1,2135,192,1,0 +2013,5,7,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-1,0,1147,1,0,0 +2013,6,1,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,850,-4,0,1015,-19,0,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2105,21,1,2220,28,1,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-1,0,1823,-6,0,0 +2013,5,12,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1105,-4,0,1700,-4,0,0 +2013,5,31,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1359,-3,0,1714,-6,0,0 +2013,5,18,6,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-4,0,1024,6,0,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,805,4,0,1134,66,1,0 +2013,9,23,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,4,0,1550,3,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2250,44,1,2358,32,1,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,-1,0,1359,-1,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,46,1,1755,52,1,0 +2013,7,17,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,935,-3,0,1153,1,0,0 +2013,4,23,2,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1520,44,1,1811,24,1,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,620,-2,0,710,-2,0,0 +2013,8,30,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1118,-3,0,1342,-32,0,0 +2013,6,14,5,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-5,0,1630,-2,0,0 +2013,5,29,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,845,-5,0,1104,-17,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,1,0,2355,-1,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,-4,0,2352,8,0,0 +2013,10,8,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,-7,0,2326,-13,0,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,710,8,0,945,6,0,0 +2013,6,26,3,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1524,91,1,2056,73,1,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,735,2,0,1027,3,0,0 +2013,7,21,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1155,8,0,1310,20,1,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,959,33,1,1225,14,0,0 +2013,5,11,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1705,1,0,1830,11,0,0 +2013,7,10,3,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1310,-4,0,1518,8,0,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1335,30,1,1435,35,1,0 +2013,4,7,7,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,740,-3,0,922,-10,0,0 +2013,7,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,3,0,1929,20,1,0 +2013,7,24,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,-1,0,1421,8,0,0 +2013,6,21,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,-2,0,1118,16,1,0 +2013,7,2,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-8,0,1329,1,0,0 +2013,10,6,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,-6,0,110,-26,0,0 +2013,8,1,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1619,1,0,2042,-2,0,0 +2013,5,26,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,2,0,1510,-6,0,0 +2013,8,3,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,-9,0,2248,-17,0,0 +2013,6,16,7,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1425,-2,0,2235,-10,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1918,-3,0,2033,-13,0,0 +2013,8,12,1,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,-1,0,1750,-9,0,0 +2013,6,24,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1530,2,0,1630,-5,0,0 +2013,7,31,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,19,1,836,31,1,0 +2013,4,19,5,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1355,31,1,1652,18,1,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1548,-5,0,1715,-20,0,0 +2013,7,27,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,72,1,1442,75,1,0 +2013,7,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,-9,0,1742,-18,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1610,-3,0,1720,-9,0,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,13,0,1746,13,0,0 +2013,4,8,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,-3,0,2015,-12,0,0 +2013,10,22,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,900,-12,0,1130,-4,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1105,-2,0,1325,-7,0,0 +2013,9,23,1,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1400,-3,0,1745,-9,0,0 +2013,6,1,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-2,0,2048,-6,0,0 +2013,10,23,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,12,0,2005,25,1,0 +2013,6,28,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,0,,1650,0,1,1 +2013,10,31,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,2,0,1312,-11,0,0 +2013,9,1,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1703,-13,0,2113,-31,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1642,23,1,1920,22,1,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,-2,0,1940,4,0,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,-1,0,1738,0,0,0 +2013,10,10,4,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2055,23,1,2206,33,1,0 +2013,4,8,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-5,0,2040,18,1,0 +2013,4,21,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,2006,52,1,2314,19,1,0 +2013,9,16,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,-2,0,1525,2,0,0 +2013,7,26,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1439,0,0,1644,29,1,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,25,1,1748,15,1,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1900,0,0,2010,-5,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,-2,0,2310,-6,0,0 +2013,7,20,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-16,0,2148,-17,0,0 +2013,8,6,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,0,0,1356,9,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,7,0,1537,5,0,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,2,0,1026,-22,0,0 +2013,10,10,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1350,0,0,1445,4,0,0 +2013,8,14,3,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2349,19,1,747,6,0,0 +2013,5,11,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,7,0,1320,28,1,0 +2013,9,4,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,0,0,1721,-10,0,0 +2013,5,26,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,615,1,0,752,-3,0,0 +2013,4,8,1,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-3,0,1625,-8,0,0 +2013,10,16,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,821,-1,0,1013,-13,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1745,-1,0,1954,-8,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1040,-2,0,1315,-4,0,0 +2013,10,15,2,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1417,-4,0,1638,-6,0,0 +2013,10,12,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,943,-6,0,1206,-24,0,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1917,-5,0,110,-11,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2146,2,0,2252,-5,0,0 +2013,5,4,6,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1600,-5,0,1843,-62,0,0 +2013,4,29,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-2,0,1115,-10,0,0 +2013,6,27,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1915,58,1,2205,42,1,0 +2013,5,9,4,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,19,1,1047,9,0,0 +2013,10,1,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1900,-5,0,2036,-21,0,0 +2013,8,16,5,EV,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-2,0,1839,0,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1750,44,1,1950,43,1,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-8,0,1403,-10,0,0 +2013,7,29,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,6,0,2011,-11,0,0 +2013,9,23,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1850,-3,0,2110,-18,0,0 +2013,6,3,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,15,1,1635,21,1,0 +2013,5,30,4,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1714,-9,0,1834,-16,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1546,-3,0,1720,-9,0,0 +2013,8,2,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,-10,0,1705,-11,0,0 +2013,7,30,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,20,-2,0,732,-4,0,0 +2013,7,12,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-2,0,1902,2,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1825,-3,0,15,-6,0,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,2035,47,1,2335,50,1,0 +2013,4,22,1,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1337,14,0,1455,24,1,0 +2013,8,31,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,-2,0,2109,5,0,0 +2013,9,22,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1345,-6,0,1436,-13,0,0 +2013,9,29,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-13,0,458,-29,0,0 +2013,9,22,7,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,3,0,1858,29,1,0 +2013,7,19,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,0,,2130,0,1,1 +2013,8,16,5,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,835,-1,0,1002,11,0,0 +2013,9,9,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-5,0,1829,-8,0,0 +2013,9,15,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,3,0,1835,-1,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2105,-5,0,10,-2,0,0 +2013,8,9,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1012,-4,0,1209,-24,0,0 +2013,10,15,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,905,8,0,1059,-8,0,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,32,1,2249,13,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1939,169,1,2250,157,1,0 +2013,6,10,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,910,15,1,1038,0,0,0 +2013,9,27,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1605,53,1,1720,58,1,0 +2013,8,11,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1025,-3,0,1320,-1,0,0 +2013,4,19,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,1250,1,0,0 +2013,8,11,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,11,0,948,32,1,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1401,28,1,1515,28,1,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1940,6,0,2221,-6,0,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,805,32,1,1130,29,1,0 +2013,4,5,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,-5,0,1238,-23,0,0 +2013,10,22,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-3,0,755,-10,0,0 +2013,5,8,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,9,0,1900,9,0,0 +2013,7,18,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,10,0,1600,-2,0,0 +2013,7,31,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,1,0,2310,5,0,0 +2013,4,13,6,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2205,14,0,550,14,0,0 +2013,10,13,7,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1025,29,1,1859,30,1,0 +2013,5,15,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-15,0,1308,-22,0,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1845,28,1,2023,23,1,0 +2013,7,28,7,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1437,-5,0,1610,-9,0,0 +2013,9,25,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,0,1302,13,0,0 +2013,6,12,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-1,0,1458,-22,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1610,56,1,1733,50,1,0 +2013,9,30,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-7,0,1809,-5,0,0 +2013,9,3,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1500,39,1,1804,29,1,0 +2013,6,25,2,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,935,0,0,1155,14,0,0 +2013,5,11,6,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,845,79,1,1235,34,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1959,12,0,2129,-8,0,0 +2013,4,29,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,825,-3,0,920,17,1,0 +2013,10,20,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-2,0,1946,2,0,0 +2013,9,4,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1750,30,1,2103,66,1,0 +2013,6,11,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,618,-6,0,756,-5,0,0 +2013,7,10,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,958,-5,0,1230,-4,0,0 +2013,8,16,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,-7,0,1720,-16,0,0 +2013,9,1,7,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1635,-8,0,1815,-24,0,0 +2013,10,6,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,745,-5,0,833,-15,0,0 +2013,5,26,7,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,940,-4,0,1105,-18,0,0 +2013,4,1,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,-5,0,1008,-4,0,0 +2013,6,4,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1355,-2,0,1542,-19,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1140,-2,0,1305,-10,0,0 +2013,10,7,1,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1100,5,0,1250,-16,0,0 +2013,9,5,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1100,-5,0,1245,-10,0,0 +2013,10,27,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,745,-3,0,915,14,0,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,-8,0,816,-7,0,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1340,33,1,1445,34,1,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,959,111,1,1237,112,1,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,-1,0,1615,12,0,0 +2013,10,7,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,920,55,1,1037,81,1,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,850,8,0,950,1,0,0 +2013,9,1,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1825,24,1,1945,41,1,0 +2013,7,15,1,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1427,4,0,2233,-4,0,0 +2013,5,27,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1135,-6,0,1140,-8,0,0 +2013,5,8,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,18,1,1040,8,0,0 +2013,5,9,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1925,24,1,2025,20,1,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1905,38,1,2120,35,1,0 +2013,4,14,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1405,3,0,1536,-5,0,0 +2013,7,4,4,DL,13244,Memphis International,Memphis,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,-5,0,1718,-4,0,0 +2013,4,7,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1555,-6,0,1730,-28,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-2,0,1300,-13,0,0 +2013,9,16,1,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1240,0,0,1620,2,0,0 +2013,9,21,6,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1750,-2,0,2045,-8,0,0 +2013,9,24,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1507,-2,0,1729,-15,0,0 +2013,8,22,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-5,0,1532,-3,0,0 +2013,5,13,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2145,-3,0,2325,-6,0,0 +2013,5,13,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1050,3,0,1310,-5,0,0 +2013,8,7,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1758,-3,0,2059,-13,0,0 +2013,8,1,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-2,0,1140,-9,0,0 +2013,9,15,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-3,0,1635,-17,0,0 +2013,9,19,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-8,0,710,-5,0,0 +2013,5,10,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-7,0,1018,-22,0,0 +2013,9,3,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1239,-8,0,1427,-9,0,0 +2013,5,17,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,10,0,2250,3,0,0 +2013,8,17,6,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1245,23,1,1639,11,0,0 +2013,8,23,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,1,0,948,-3,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,6,0,1440,-2,0,0 +2013,7,8,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1909,0,0,2024,-6,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1715,0,0,1840,-9,0,0 +2013,5,6,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,56,1,1850,53,1,0 +2013,10,10,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1603,51,1,1650,38,1,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2110,19,1,2220,22,1,0 +2013,9,9,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,7,0,1023,-8,0,0 +2013,10,3,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,918,-4,0,1215,-16,0,0 +2013,10,17,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,735,-8,0,835,-10,0,0 +2013,6,14,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,600,1,0,1144,-5,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,52,1,2303,39,1,0 +2013,8,2,5,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-4,0,626,-13,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1020,3,0,1300,16,1,0 +2013,5,4,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,600,7,0,704,16,1,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1345,-8,0,1610,-18,0,0 +2013,8,5,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1620,2,0,1805,3,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,19,1,1900,16,1,0 +2013,5,3,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1455,-7,0,0 +2013,9,22,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-6,0,1742,-14,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1325,7,0,1801,21,1,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,845,11,0,1009,7,0,0 +2013,4,10,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-1,0,1905,10,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1255,15,1,1840,3,0,0 +2013,8,28,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-5,0,2056,-11,0,0 +2013,6,28,5,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,740,33,1,1601,51,1,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1934,32,1,2217,27,1,0 +2013,10,22,2,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1245,17,1,1440,-13,0,0 +2013,7,3,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1800,26,1,2035,5,0,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-2,0,1709,-4,0,0 +2013,6,9,7,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-8,0,1125,-4,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,920,8,0,1020,-5,0,0 +2013,5,31,5,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1650,-1,0,2042,-8,0,0 +2013,7,22,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,10,0,1740,5,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1540,13,0,1830,4,0,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1030,-1,0,1243,-15,0,0 +2013,5,3,5,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,842,-3,0,1022,18,1,0 +2013,5,18,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1145,-9,0,1323,-19,0,0 +2013,5,6,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-3,0,1540,-27,0,0 +2013,6,28,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,0,0,1326,-16,0,0 +2013,10,5,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-12,0,1014,-11,0,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1540,-4,0,1650,-14,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,25,1,1540,27,1,0 +2013,6,7,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,46,1,1902,92,1,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,11,0,1505,7,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1455,14,0,1910,-15,0,0 +2013,7,20,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1910,60,1,2030,50,1,0 +2013,6,6,4,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2057,41,1,2329,18,1,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,825,6,0,925,-2,0,0 +2013,5,30,4,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-6,0,932,-9,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,8,0,2305,5,0,0 +2013,7,30,2,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1105,-8,0,1330,-2,0,0 +2013,7,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,719,2,0,837,-14,0,0 +2013,5,22,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-8,0,1903,-10,0,0 +2013,8,29,4,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-1,0,535,-13,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,755,-5,0,916,20,1,0 +2013,6,10,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,14,0,1800,4,0,0 +2013,9,13,5,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1811,126,1,2027,95,1,0 +2013,9,24,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,-2,0,830,-1,0,0 +2013,7,20,6,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,804,71,1,1146,71,1,0 +2013,10,4,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,0,0,820,-12,0,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1911,64,1,2242,51,1,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,935,63,1,1145,51,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1754,-2,0,2013,10,0,0 +2013,5,1,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2125,-11,0,2235,-24,0,0 +2013,5,9,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,5,0,2031,11,0,0 +2013,4,8,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1025,5,0,1155,-6,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-5,0,1055,-13,0,0 +2013,9,28,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2045,5,0,441,13,0,0 +2013,7,12,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1120,35,1,1315,5,0,0 +2013,4,17,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1020,99,1,1625,72,1,0 +2013,4,28,7,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1925,-11,0,2120,-14,0,0 +2013,4,30,2,EV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1725,-7,0,1912,-36,0,0 +2013,6,16,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1220,19,1,1315,22,1,0 +2013,7,9,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1045,-5,0,1500,2,0,0 +2013,5,19,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1515,-4,0,1700,-17,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,12,0,1630,19,1,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1040,0,0,1250,18,1,0 +2013,10,31,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,827,-1,0,1318,15,1,0 +2013,9,17,2,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1515,-4,0,1630,-12,0,0 +2013,9,27,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,720,-4,0,945,-20,0,0 +2013,7,12,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,841,11,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1905,-4,0,2111,-10,0,0 +2013,10,9,3,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,3,0,2113,-2,0,0 +2013,8,14,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-3,0,848,-22,0,0 +2013,7,25,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-10,0,2112,2,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2020,52,1,2225,51,1,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1245,5,0,1515,-5,0,0 +2013,10,23,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1925,-1,0,2040,1,0,0 +2013,8,17,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2015,32,1,2130,32,1,0 +2013,10,15,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2206,-3,0,47,-14,0,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,14,0,1020,21,1,0 +2013,7,8,1,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,161,1,2125,153,1,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,-2,0,1430,7,0,0 +2013,7,26,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,-5,0,2150,-7,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1155,0,0,1240,6,0,0 +2013,10,25,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,640,-1,0,745,1,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,825,-1,0,950,-9,0,0 +2013,4,9,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1650,-3,0,1913,-2,0,0 +2013,8,17,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-3,0,1619,11,0,0 +2013,7,5,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,0,0,1430,-3,0,0 +2013,10,31,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-4,0,1610,-20,0,0 +2013,8,28,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1528,35,1,1633,26,1,0 +2013,7,29,1,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1904,-2,0,2111,-9,0,0 +2013,4,23,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1120,-8,0,1235,-10,0,0 +2013,8,14,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2202,-3,0,2255,-7,0,0 +2013,7,19,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2130,50,1,2240,48,1,0 +2013,4,8,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1228,-6,0,1415,-16,0,0 +2013,7,11,4,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2241,6,0,655,-8,0,0 +2013,7,25,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-3,0,1409,-7,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,-1,0,916,-8,0,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2105,82,1,2225,75,1,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-5,0,1055,-8,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,1,0,1733,4,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1644,-1,0,0 +2013,10,10,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1850,12,0,1925,7,0,0 +2013,10,12,6,OO,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-6,0,1627,-18,0,0 +2013,9,2,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,915,-8,0,1050,-8,0,0 +2013,9,26,4,9E,12953,LaGuardia,New York,NY,12451,Jacksonville International,Jacksonville,FL,1210,-7,0,1459,7,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1705,41,1,1825,35,1,0 +2013,8,9,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,645,175,1,835,190,1,0 +2013,8,18,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-3,0,2152,-10,0,0 +2013,5,24,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,45,1,1831,42,1,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,810,28,1,1045,13,0,0 +2013,6,6,4,OO,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1654,0,0,1855,15,1,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1800,7,0,2225,6,0,0 +2013,6,17,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,0,0,1900,5,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1830,0,0,2037,-14,0,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,43,1,2035,48,1,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2009,-1,0,2129,107,1,0 +2013,7,7,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,21,1,1040,20,1,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1042,-2,0,1400,-15,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1731,121,1,1902,134,1,0 +2013,9,18,3,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,2,0,1403,-18,0,0 +2013,10,15,2,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,18,1,1540,28,1,0 +2013,10,15,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,843,16,1,957,-2,0,0 +2013,10,1,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-11,0,1535,26,1,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1450,8,0,2146,-3,0,0 +2013,10,29,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,69,1,1655,59,1,0 +2013,9,25,3,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1852,-6,0,2030,-12,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,840,0,0,1025,12,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1505,82,1,1620,62,1,0 +2013,4,9,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,900,23,1,1250,17,1,0 +2013,6,26,3,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,0,0,742,15,1,0 +2013,9,12,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1255,-2,0,1845,-13,0,0 +2013,7,9,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,78,1,1054,72,1,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,1,0,1740,-7,0,0 +2013,4,29,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,845,-2,0,945,-7,0,0 +2013,9,24,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1922,-18,0,2230,-36,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1005,-4,0,1245,-15,0,0 +2013,8,20,2,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1835,14,0,2010,21,1,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1603,8,0,2200,8,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,0,0,2057,-9,0,0 +2013,9,22,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,58,1,2130,51,1,0 +2013,6,23,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1900,0,0,2200,32,1,0 +2013,7,25,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1820,11,0,2105,7,0,0 +2013,10,18,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1940,4,0,2050,-3,0,0 +2013,9,24,2,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,620,11,0,1230,-25,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1051,0,0,1204,-5,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1534,-3,0,1703,-14,0,0 +2013,5,25,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,615,4,0,725,-8,0,0 +2013,8,9,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,650,1,0,725,-13,0,0 +2013,4,30,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1027,2,0,1159,15,1,0 +2013,4,17,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-4,0,1315,0,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1516,1,0,1653,-6,0,0 +2013,8,29,4,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1225,15,1,1449,-16,0,0 +2013,8,25,7,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,-4,0,1652,-9,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1458,4,0,1625,-6,0,0 +2013,7,4,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,837,-7,0,0 +2013,4,12,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,18,1,1950,-6,0,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-6,0,2333,-17,0,0 +2013,10,19,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,1810,-5,0,1907,-6,0,0 +2013,9,29,7,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,730,3,0,1103,-21,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1510,11,0,1620,2,0,0 +2013,5,9,4,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-7,0,1235,14,0,0 +2013,4,19,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,825,-8,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2229,69,1,30,57,1,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1630,59,1,1950,63,1,0 +2013,5,22,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1411,2,0,1609,11,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,841,30,1,1609,45,1,0 +2013,9,9,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-8,0,848,-23,0,0 +2013,5,1,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2018,6,0,2300,-5,0,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1320,-1,0,1530,0,0,0 +2013,10,19,6,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1207,5,0,1443,-5,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1425,0,0,1601,-12,0,0 +2013,4,19,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,0,0,2052,-15,0,0 +2013,7,8,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1931,24,1,2320,12,0,0 +2013,7,20,6,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,1950,-3,0,42,-5,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-5,0,1612,8,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1725,-1,0,1845,1,0,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,-2,0,1315,-1,0,0 +2013,9,9,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1844,-3,0,2006,-11,0,0 +2013,9,16,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1238,34,1,1524,22,1,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1929,6,0,2212,-5,0,0 +2013,5,9,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,9,0,1820,-14,0,0 +2013,6,11,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,850,-4,0,1140,8,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2005,54,1,2250,55,1,0 +2013,8,20,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1840,-3,0,2000,-7,0,0 +2013,4,15,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,8,0,37,-29,0,0 +2013,9,21,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1143,-2,0,1330,-5,0,0 +2013,9,26,4,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,825,7,0,1030,1,0,0 +2013,8,5,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1050,-8,0,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,-7,0,1717,-22,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1935,31,1,2140,8,0,0 +2013,9,20,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,-3,0,1033,-4,0,0 +2013,7,24,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,-2,0,1310,-2,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1411,-1,0,1543,-12,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1210,3,0,1232,-1,0,0 +2013,4,12,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1444,132,1,1735,181,1,0 +2013,6,4,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,645,-4,0,735,-13,0,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,0,0,1125,-3,0,0 +2013,6,15,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,858,12,0,1124,-6,0,0 +2013,9,25,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-1,0,1321,-7,0,0 +2013,7,27,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,615,-1,0,755,-12,0,0 +2013,6,5,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,824,-4,0,935,-16,0,0 +2013,7,19,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1413,57,1,1813,52,1,0 +2013,10,6,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1755,-5,0,1911,4,0,0 +2013,5,9,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,806,-21,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1940,95,1,20,106,1,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1150,23,1,1310,22,1,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1750,3,0,1905,-4,0,0 +2013,7,11,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1820,-2,0,2200,-16,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2159,-5,0,2302,-19,0,0 +2013,4,30,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-8,0,2100,2,0,0 +2013,10,25,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1333,31,1,1408,32,1,0 +2013,4,7,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1440,2,0,1510,7,0,0 +2013,10,29,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1635,18,1,1655,18,1,0 +2013,4,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,955,61,1,1030,61,1,0 +2013,8,12,1,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1332,-1,0,1456,1,0,0 +2013,10,29,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1527,-12,0,0 +2013,4,25,4,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1140,11,0,1330,7,0,0 +2013,8,27,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-10,0,831,-18,0,0 +2013,7,13,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1350,-2,0,1554,-3,0,0 +2013,7,7,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,710,-6,0,835,-4,0,0 +2013,9,8,7,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-17,0,610,-3,0,0 +2013,5,9,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2055,23,1,2259,14,0,0 +2013,7,7,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,35,1,1840,37,1,0 +2013,5,22,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-2,0,923,-19,0,0 +2013,4,21,7,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2107,6,0,2344,21,1,0 +2013,10,26,6,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2035,18,1,2200,-14,0,0 +2013,7,26,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1440,-3,0,1657,-17,0,0 +2013,7,19,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,-9,0,1115,-35,0,0 +2013,7,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,955,-9,0,1600,1,0,0 +2013,4,26,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,32,1,2305,26,1,0 +2013,6,6,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,23,1,1026,25,1,0 +2013,9,29,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1119,-3,0,0 +2013,10,4,5,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-3,0,1551,0,0,0 +2013,6,25,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1715,60,1,2040,76,1,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,936,11,0,1026,8,0,0 +2013,9,29,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1223,-7,0,1415,-7,0,0 +2013,7,9,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1030,17,1,1315,20,1,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1123,69,1,1448,60,1,0 +2013,6,1,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-6,0,747,-5,0,0 +2013,6,3,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1610,-8,0,1956,-5,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1210,-1,0,1310,9,0,0 +2013,6,24,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1932,59,1,2113,73,1,0 +2013,8,24,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-11,0,1317,-10,0,0 +2013,8,4,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,1,0,1630,-4,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,18,1,1505,10,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1410,43,1,1615,38,1,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1103,53,1,1414,44,1,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1415,-1,0,1639,10,0,0 +2013,5,10,5,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-8,0,1105,-44,0,0 +2013,4,1,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1815,-6,0,1920,-12,0,0 +2013,6,1,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1545,0,0,1846,-23,0,0 +2013,4,5,5,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1828,-8,0,2019,4,0,0 +2013,9,18,3,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1132,68,1,1640,62,1,0 +2013,6,18,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-5,0,810,-8,0,0 +2013,9,23,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-13,0,2143,-24,0,0 +2013,5,22,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1150,34,1,1315,134,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,0,0,2323,-11,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1127,-5,0,1255,-16,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,0,0,1645,4,0,0 +2013,5,16,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,720,-6,0,1037,-10,0,0 +2013,4,8,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-7,0,2059,-21,0,0 +2013,8,27,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,905,10,0,1302,5,0,0 +2013,4,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,-3,0,750,13,0,0 +2013,10,3,4,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1510,30,1,1710,28,1,0 +2013,9,13,5,9E,12451,Jacksonville International,Jacksonville,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,4,0,1635,0,0,0 +2013,5,12,7,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1420,0,0,1920,4,0,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1020,-13,0,1110,-10,0,0 +2013,8,31,6,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,6,0,1815,34,1,0 +2013,10,18,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,-2,0,2115,-12,0,0 +2013,10,12,6,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-3,0,1845,20,1,0 +2013,7,20,6,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,6,0,2152,1,0,0 +2013,5,22,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,-6,0,1715,-6,0,0 +2013,5,3,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1139,-11,0,1925,-7,0,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1835,1,0,1945,-7,0,0 +2013,10,25,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,129,1,1805,134,1,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,-10,0,2355,-30,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,715,-5,0,1054,-21,0,0 +2013,10,7,1,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,750,-2,0,1040,-10,0,0 +2013,4,17,3,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,805,-5,0,1020,-10,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-2,0,1640,3,0,0 +2013,6,17,1,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,0,0,545,-11,0,0 +2013,4,23,2,9E,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1630,-5,0,1859,7,0,0 +2013,6,6,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,833,-15,0,0 +2013,6,30,7,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,929,-9,0,1030,-13,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1435,6,0,1825,-12,0,0 +2013,6,27,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,725,0,0,947,-2,0,0 +2013,10,2,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,-4,0,2129,-4,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,-4,0,1512,-8,0,0 +2013,7,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,810,4,0,1330,-6,0,0 +2013,10,30,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-4,0,1902,-13,0,0 +2013,9,15,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1810,-5,0,2048,-8,0,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2040,-3,0,2305,-2,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2206,160,1,2333,153,1,0 +2013,5,17,5,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,3,0,1919,-37,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,909,-8,0,1350,3,0,0 +2013,9,27,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-11,0,756,-7,0,0 +2013,5,1,3,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,0,0,1620,-4,0,0 +2013,8,21,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,-15,0,2100,-28,0,0 +2013,10,15,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,753,221,1,1012,209,1,0 +2013,10,22,2,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,839,1,0,1137,4,0,0 +2013,7,6,6,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1925,20,1,2115,13,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,48,1,1110,74,1,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,10,0,1855,29,1,0 +2013,5,21,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1610,4,0,1804,-5,0,0 +2013,8,10,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,-2,0,940,7,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1150,-4,0,1317,-11,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,610,-3,0,725,-10,0,0 +2013,9,12,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1705,286,1,1800,280,1,0 +2013,6,30,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,7,0,1850,1,0,0 +2013,6,3,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,835,-5,0,1159,-18,0,0 +2013,8,16,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1920,3,0,1957,0,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1115,0,,1355,0,1,1 +2013,8,31,6,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,1,0,1605,-14,0,0 +2013,7,17,3,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,540,-9,0,700,-7,0,0 +2013,10,8,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-3,0,1015,-24,0,0 +2013,4,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1707,-1,0,1758,4,0,0 +2013,6,3,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1210,-4,0,1500,-4,0,0 +2013,9,16,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-6,0,810,-11,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1615,0,0,1719,-19,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1656,4,0,1825,-7,0,0 +2013,6,4,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2040,-8,0,2237,-21,0,0 +2013,7,3,3,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2210,-6,0,603,4,0,0 +2013,4,1,1,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,545,-4,0,808,12,0,0 +2013,4,2,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-12,0,1410,12,0,0 +2013,5,23,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2345,-4,0,545,2,0,0 +2013,9,5,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1254,0,0,1450,-2,0,0 +2013,6,3,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1745,-7,0,1905,-8,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1455,0,0,2245,-16,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-6,0,1510,-4,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1454,25,1,1651,20,1,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,1230,6,0,2030,-21,0,0 +2013,10,16,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1030,-8,0,1128,-6,0,0 +2013,10,10,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-6,0,1755,16,1,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,855,-3,0,1020,9,0,0 +2013,10,2,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-5,0,1416,-11,0,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,4,0,1110,12,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-2,0,1053,41,1,0 +2013,4,25,4,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,753,-7,0,1340,-15,0,0 +2013,8,20,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1513,-8,0,2020,-17,0,0 +2013,7,6,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,0,0,739,4,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,910,26,1,1210,50,1,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,28,1,1951,24,1,0 +2013,5,15,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-1,0,2125,-5,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2040,17,1,2250,-7,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-6,0,1158,-5,0,0 +2013,8,28,3,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-4,0,1805,-9,0,0 +2013,5,19,7,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,43,1,2230,64,1,0 +2013,6,1,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,4,0,626,-9,0,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1643,-15,0,0 +2013,5,16,4,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1531,6,0,1640,15,1,0 +2013,7,9,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1422,1,0,1558,4,0,0 +2013,7,3,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,630,-6,0,800,-3,0,0 +2013,7,22,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1034,-1,0,1310,-12,0,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1701,-1,0,1722,-15,0,0 +2013,7,29,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1215,3,0,1525,-3,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2000,0,0,2130,14,0,0 +2013,9,1,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,907,12,0,1731,8,0,0 +2013,7,1,1,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,16,1,1435,-5,0,0 +2013,4,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,-3,0,655,-8,0,0 +2013,10,24,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1719,-3,0,2112,-20,0,0 +2013,9,15,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,850,5,0,1027,8,0,0 +2013,4,7,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-5,0,1236,-9,0,0 +2013,5,7,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,810,-3,0,0 +2013,4,20,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-1,0,1540,-10,0,0 +2013,9,19,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,945,5,0,1110,1,0,0 +2013,6,3,1,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1020,-3,0,1410,-11,0,0 +2013,8,14,3,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,-4,0,2202,30,1,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1120,2,0,1240,-7,0,0 +2013,8,2,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1220,3,0,1340,4,0,0 +2013,6,27,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,640,-6,0,1000,-15,0,0 +2013,4,29,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1020,-4,0,1138,5,0,0 +2013,8,22,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,0,0,1310,-19,0,0 +2013,10,12,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1240,-9,0,1535,-16,0,0 +2013,5,6,1,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-4,0,2047,-11,0,0 +2013,5,29,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-4,0,1258,5,0,0 +2013,10,13,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1731,-9,0,2000,-21,0,0 +2013,9,9,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,14,0,1515,10,0,0 +2013,7,7,7,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1055,-4,0,1918,0,0,0 +2013,7,7,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1030,5,0,0 +2013,4,29,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1626,-5,0,1817,-15,0,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-6,0,1625,-8,0,0 +2013,8,11,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-10,0,835,-25,0,0 +2013,8,9,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1348,10,0,1458,8,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2015,0,,2155,0,1,1 +2013,6,5,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1824,-2,0,1947,-20,0,0 +2013,7,25,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1840,-5,0,2100,-9,0,0 +2013,8,4,7,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-1,0,2115,-24,0,0 +2013,10,15,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1420,-3,0,1505,-2,0,0 +2013,7,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1010,6,0,1145,0,0,0 +2013,10,4,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,0,0,1400,-22,0,0 +2013,9,25,3,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2017,-9,0,2111,-7,0,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1510,36,1,2040,26,1,0 +2013,8,26,1,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-10,0,1020,-9,0,0 +2013,4,11,4,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,-5,0,1140,-27,0,0 +2013,10,7,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,-1,0,1230,-10,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,1650,10,0,2355,-6,0,0 +2013,6,15,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1550,33,1,1705,30,1,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1150,0,0,1615,-9,0,0 +2013,8,16,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1110,-4,0,1320,-9,0,0 +2013,9,1,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1040,-5,0,1059,-26,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1600,63,1,2310,43,1,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2245,128,1,18,127,1,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,0,0,1430,-25,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1335,1,0,1550,-2,0,0 +2013,7,13,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,-1,0,1028,-4,0,0 +2013,5,2,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,825,-3,0,1030,3,0,0 +2013,9,7,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-5,0,837,10,0,0 +2013,10,10,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1210,-2,0,1325,5,0,0 +2013,8,23,5,EV,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,851,-7,0,1007,2,0,0 +2013,8,13,2,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,37,1,2029,21,1,0 +2013,6,1,6,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-2,0,1819,-2,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1740,-3,0,1845,-5,0,0 +2013,4,9,2,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,-2,0,1647,-10,0,0 +2013,7,29,1,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1800,5,0,2030,-14,0,0 +2013,7,4,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1509,-3,0,1635,-12,0,0 +2013,6,30,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1549,-2,0,2030,-17,0,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1220,1,0,1315,-1,0,0 +2013,7,20,6,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1515,15,1,1745,13,0,0 +2013,8,10,6,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1510,-7,0,1625,-24,0,0 +2013,8,11,7,FL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1416,-2,0,1512,6,0,0 +2013,10,12,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,852,0,0,1216,-23,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,5,0,1340,-2,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1300,17,1,1415,16,1,0 +2013,5,3,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-2,0,1640,-3,0,0 +2013,10,11,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-2,0,1836,2,0,0 +2013,5,15,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-8,0,2028,-12,0,0 +2013,5,14,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,600,-3,0,755,-26,0,0 +2013,6,4,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,0,,930,0,1,1 +2013,10,13,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1450,51,1,1835,39,1,0 +2013,7,27,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-2,0,1127,-10,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2211,4,0,12,6,0,0 +2013,9,29,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-8,0,717,-4,0,0 +2013,6,4,2,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,3,0,1128,-6,0,0 +2013,4,25,4,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2202,-7,0,2314,29,1,0 +2013,4,30,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,-3,0,1950,8,0,0 +2013,7,9,2,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,635,-8,0,739,-13,0,0 +2013,6,2,7,YV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,-6,0,1654,-1,0,0 +2013,6,6,4,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,-3,0,1852,-12,0,0 +2013,4,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-6,0,1024,-1,0,0 +2013,6,17,1,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,910,-4,0,1255,1,0,0 +2013,4,5,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-6,0,909,-8,0,0 +2013,8,13,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-9,0,932,26,1,0 +2013,6,5,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,0,0,2050,-11,0,0 +2013,6,3,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1811,2,0,2109,-14,0,0 +2013,7,7,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1430,17,1,1615,7,0,0 +2013,9,30,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,-7,0,928,-14,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1205,0,0,1214,-1,0,0 +2013,7,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,509,-2,0,755,-44,0,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1525,-4,0,1932,-16,0,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-1,0,1834,-10,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,-2,0,1647,-12,0,0 +2013,4,17,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-4,0,1630,-1,0,0 +2013,4,14,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1655,7,0,1815,14,0,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1505,1,0,1845,-9,0,0 +2013,9,21,6,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-6,0,1905,-31,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,859,17,1,1153,21,1,0 +2013,9,13,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,8,0,925,1,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1940,-1,0,2045,41,1,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1029,-9,0,1235,-47,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,7,0,1235,0,0,0 +2013,4,15,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2015,107,1,2143,113,1,0 +2013,7,14,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-9,0,1950,-41,0,0 +2013,4,27,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1030,-8,0,1505,-13,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,47,1,2150,47,1,0 +2013,8,26,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-3,0,1422,7,0,0 +2013,8,25,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1905,-3,0,2108,-34,0,0 +2013,8,14,3,9E,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,846,-5,0,1034,-11,0,0 +2013,4,23,2,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1945,-8,0,2102,-18,0,0 +2013,6,4,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2133,-8,0,2246,-14,0,0 +2013,4,5,5,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,935,-4,0,1041,15,1,0 +2013,10,30,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,-4,0,1610,-6,0,0 +2013,5,19,7,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,1105,1,0,0 +2013,7,24,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1245,-8,0,1442,-21,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,12,0,2251,4,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1223,5,0,1319,-1,0,0 +2013,6,24,1,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,109,1,2255,92,1,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1350,52,1,1910,39,1,0 +2013,4,29,1,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,2035,35,1,2205,54,1,0 +2013,8,8,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1705,33,1,1751,13,0,0 +2013,5,9,4,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-8,0,1001,-24,0,0 +2013,8,15,4,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,838,-6,0,1108,5,0,0 +2013,8,3,6,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1916,-6,0,2050,-20,0,0 +2013,10,6,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1839,-7,0,2156,6,0,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,7,0,1620,-1,0,0 +2013,8,13,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-4,0,1202,-7,0,0 +2013,10,27,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,2,0,1340,-1,0,0 +2013,8,17,6,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-2,0,1800,-17,0,0 +2013,6,13,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-4,0,2058,-13,0,0 +2013,5,31,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,52,1,1610,113,1,0 +2013,5,1,3,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-4,0,1210,-12,0,0 +2013,9,29,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-7,0,1916,-10,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1755,3,0,2010,1,0,0 +2013,6,12,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,5,0,1750,-16,0,0 +2013,10,28,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-6,0,1611,-15,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,-1,0,1102,-15,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1325,0,0,1415,-6,0,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1225,2,0,1502,-6,0,0 +2013,4,26,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,655,-6,0,815,-12,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,23,1,1605,18,1,0 +2013,10,21,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1810,4,0,1933,-8,0,0 +2013,5,20,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,918,-2,0,1056,25,1,0 +2013,8,20,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-5,0,1335,-13,0,0 +2013,5,3,5,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,749,-4,0,0 +2013,6,15,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1130,7,0,1240,3,0,0 +2013,10,16,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1759,-3,0,2115,-10,0,0 +2013,8,21,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1857,4,0,2018,9,0,0 +2013,8,21,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-3,0,930,-11,0,0 +2013,9,14,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1220,6,0,1325,0,0,0 +2013,7,10,3,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1430,33,1,1611,63,1,0 +2013,6,20,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,0,,2017,0,1,1 +2013,7,3,3,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,1,0,2240,6,0,0 +2013,9,28,6,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,-14,0,1505,-10,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,600,1,0,805,-1,0,0 +2013,7,12,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1705,-1,0,1950,16,1,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,745,4,0,1320,1,0,0 +2013,8,22,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,839,-15,0,1004,-12,0,0 +2013,10,14,1,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,950,128,1,1310,124,1,0 +2013,8,28,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,805,-5,0,925,-10,0,0 +2013,9,22,7,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-2,0,1100,-32,0,0 +2013,10,31,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-6,0,1918,-4,0,0 +2013,5,31,5,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1247,-4,0,1455,-12,0,0 +2013,9,17,2,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,5,0,1918,-3,0,0 +2013,5,15,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,1,0,1147,4,0,0 +2013,5,10,5,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1035,-1,0,1325,-10,0,0 +2013,8,17,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1716,-6,0,1838,-19,0,0 +2013,9,28,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,-2,0,1926,-9,0,0 +2013,7,11,4,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,188,1,1900,146,1,0 +2013,10,18,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,-2,0,821,3,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1256,2,0,1700,20,1,0 +2013,9,27,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-7,0,1854,-5,0,0 +2013,6,11,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,-3,0,1530,-5,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,615,-4,0,740,-22,0,0 +2013,9,21,6,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,4,0,2145,-14,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1405,-5,0,1500,-12,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2130,9,0,2235,6,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2030,-4,0,2307,-17,0,0 +2013,7,25,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-6,0,1036,-2,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1500,0,0,1719,1,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1915,-6,0,2236,-16,0,0 +2013,5,6,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1245,-3,0,2042,20,1,0 +2013,9,30,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,935,-7,0,1226,-14,0,0 +2013,10,31,4,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-11,0,1423,-12,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1914,-4,0,2318,-24,0,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,6,0,1835,1,0,0 +2013,4,13,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,120,-9,0,752,-32,0,0 +2013,9,20,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,26,1,1332,30,1,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1700,-3,0,2350,22,1,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,640,7,0,900,-8,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1745,-5,0,1919,-13,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,1,0,1115,-9,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1029,-5,0,1320,-2,0,0 +2013,6,29,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1210,7,0,1310,4,0,0 +2013,9,1,7,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1530,-5,0,1715,-23,0,0 +2013,10,27,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,540,-2,0,1200,-12,0,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1455,-3,0,2147,-24,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1000,2,0,1139,31,1,0 +2013,5,31,5,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,626,-5,0,850,-26,0,0 +2013,5,1,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-5,0,905,-5,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,5,0,1345,-2,0,0 +2013,4,10,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2000,3,0,2130,-11,0,0 +2013,10,15,2,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1712,98,1,1852,118,1,0 +2013,7,27,6,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,225,1,1655,222,1,0 +2013,8,28,3,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-8,0,821,-15,0,0 +2013,5,12,7,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-7,0,1147,-32,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1749,53,1,2025,85,1,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,957,-5,0,1053,-11,0,0 +2013,9,25,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1825,-6,0,2040,-4,0,0 +2013,7,5,5,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-9,0,1643,4,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,-3,0,1835,1,0,0 +2013,4,29,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,625,3,0,810,-8,0,0 +2013,9,16,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,930,-9,0,1305,-4,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1011,-5,0,1049,-16,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1939,1,0,2234,-4,0,0 +2013,5,23,4,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1040,-3,0,1307,-8,0,0 +2013,6,13,4,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2045,158,1,2310,151,1,0 +2013,10,28,1,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,905,5,0,1050,1,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,47,1,1145,34,1,0 +2013,5,15,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,1,0,1829,4,0,0 +2013,10,18,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,1,0,639,-15,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,12,0,1425,-4,0,0 +2013,4,18,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-7,0,955,-31,0,0 +2013,10,5,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1056,-3,0,1258,-14,0,0 +2013,10,5,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,655,-4,0,828,3,0,0 +2013,5,15,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1720,26,1,1939,36,1,0 +2013,10,21,1,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1815,2,0,2040,-24,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1705,49,1,1800,48,1,0 +2013,9,2,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1325,-1,0,1430,4,0,0 +2013,4,10,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-10,0,1007,-22,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1625,13,0,1720,0,0,0 +2013,8,16,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-9,0,2157,9,0,0 +2013,6,30,7,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-4,0,1026,-9,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-2,0,1225,-8,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1455,12,0,1655,4,0,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1641,23,1,1956,12,0,0 +2013,10,16,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,4,0,1230,-13,0,0 +2013,6,7,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,645,0,,753,0,1,1 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,26,1,1835,21,1,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,3,0,1000,-1,0,0 +2013,8,12,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1556,-9,0,1848,-24,0,0 +2013,4,29,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,3,0,2000,-9,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,3,0,2143,-18,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,0,0,1044,7,0,0 +2013,4,26,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1905,-3,0,2054,-6,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-1,0,1131,-14,0,0 +2013,9,26,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1709,-4,0,1833,-5,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1937,-4,0,2115,6,0,0 +2013,5,13,1,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,805,-5,0,1020,-17,0,0 +2013,9,16,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,14,0,1340,4,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,-1,0,1258,2,0,0 +2013,10,4,5,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1735,-2,0,1900,-2,0,0 +2013,6,7,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,5,0,2027,8,0,0 +2013,10,7,1,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1759,189,1,2000,172,1,0 +2013,5,26,7,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2008,-3,0,2145,-5,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,735,-4,0,943,-22,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1650,10,0,2105,-8,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,2,0,1820,1,0,0 +2013,8,16,5,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1832,1,0,1948,23,1,0 +2013,6,14,5,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,8,0,1948,-4,0,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1245,-2,0,1802,-7,0,0 +2013,9,10,2,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-7,0,720,-12,0,0 +2013,10,9,3,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,4,0,1110,12,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,,710,0,1,1 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,61,1,2254,43,1,0 +2013,6,17,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,810,0,,835,0,1,1 +2013,9,27,5,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1727,-10,0,1930,-17,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2010,11,0,2325,8,0,0 +2013,9,27,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,830,-11,0,948,-28,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,910,4,0,1620,3,0,0 +2013,5,24,5,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1630,17,1,1825,-1,0,0 +2013,4,26,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-5,0,604,3,0,0 +2013,8,22,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1411,-6,0,1537,12,0,0 +2013,4,23,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,852,1,0,1030,45,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1550,1,0,1930,-2,0,0 +2013,10,16,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,-5,0,2058,-13,0,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2205,11,0,2327,31,1,0 +2013,6,14,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,547,135,1,715,120,1,0 +2013,10,20,7,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1520,10,0,2025,6,0,0 +2013,10,14,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,-5,0,1126,-9,0,0 +2013,6,17,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,930,3,0,1800,-11,0,0 +2013,6,19,3,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2223,16,1,635,10,0,0 +2013,6,21,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-5,0,1530,-9,0,0 +2013,10,18,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,17,1,1829,17,1,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,745,2,0,1300,8,0,0 +2013,4,7,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,-2,0,1354,-10,0,0 +2013,5,13,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-4,0,805,-8,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1050,-1,0,1143,-22,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1205,11,0,1325,12,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2300,-2,0,46,-15,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,830,0,0,955,-2,0,0 +2013,4,25,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1234,-6,0,1450,2,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,740,6,0,855,-1,0,0 +2013,9,22,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2005,10,0,2115,2,0,0 +2013,5,9,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,43,1,1430,27,1,0 +2013,10,14,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1215,25,1,1430,24,1,0 +2013,4,4,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1816,0,0,2137,-9,0,0 +2013,4,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-2,0,1609,5,0,0 +2013,6,19,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-1,0,825,-4,0,0 +2013,9,11,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,16,1,2133,15,1,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,830,-5,0,937,-17,0,0 +2013,4,11,4,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1705,1,0,1915,-15,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1305,0,0,1736,-4,0,0 +2013,9,13,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2005,-8,0,2125,-1,0,0 +2013,7,24,3,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2212,2,0,610,-12,0,0 +2013,7,25,4,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,4,0,2226,22,1,0 +2013,5,27,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1412,23,1,1539,13,0,0 +2013,5,17,5,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1446,-5,0,1628,3,0,0 +2013,7,30,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1630,20,1,1735,18,1,0 +2013,6,2,7,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,655,1,0,940,0,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-1,0,1449,-29,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1241,-9,0,1639,-21,0,0 +2013,10,11,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-9,0,805,-15,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,830,-4,0,1146,-13,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-5,0,730,-8,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,725,-3,0,835,-1,0,0 +2013,6,3,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,-1,0,1928,31,1,0 +2013,10,24,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1900,4,0,1955,-2,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1735,0,0,1928,-12,0,0 +2013,6,2,7,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,551,-2,0,905,18,1,0 +2013,4,21,7,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,550,-3,0,755,-21,0,0 +2013,6,21,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,84,1,1353,83,1,0 +2013,4,3,3,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1415,-2,0,1531,-13,0,0 +2013,6,13,4,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,625,-3,0,934,-6,0,0 +2013,5,19,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1355,-11,0,1542,-23,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1825,-2,0,2120,-5,0,0 +2013,6,15,6,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1312,0,0,1500,-8,0,0 +2013,10,30,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-3,0,1137,-31,0,0 +2013,10,6,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-6,0,1420,-3,0,0 +2013,7,27,6,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1421,3,0,1659,-2,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1005,0,0,1110,-10,0,0 +2013,7,13,6,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,18,1,2013,29,1,0 +2013,10,30,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,-6,0,1121,-5,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,45,1,1545,20,1,0 +2013,9,5,4,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,-9,0,2027,-6,0,0 +2013,5,9,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,720,-7,0,1037,-12,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1305,48,1,1410,25,1,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1845,29,1,2037,18,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1840,-3,0,2003,-15,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-1,0,1935,-11,0,0 +2013,4,19,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1855,-5,0,2215,-8,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2100,24,1,2355,12,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,3,0,705,-2,0,0 +2013,6,25,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,15,1,1440,3,0,0 +2013,7,28,7,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1631,152,1,1939,145,1,0 +2013,4,11,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,31,1,2110,83,1,0 +2013,10,2,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1345,-4,0,1450,-10,0,0 +2013,9,17,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,815,-4,0,928,-8,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,900,78,1,1100,48,1,0 +2013,7,23,2,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,22,1,1717,9,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,930,-3,0,1150,5,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,0,0,915,0,0,0 +2013,10,16,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,600,-4,0,728,-11,0,0 +2013,9,7,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1034,-7,0,1303,-4,0,0 +2013,9,2,1,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1611,-4,0,2100,-15,0,0 +2013,4,23,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,0,0,832,27,1,0 +2013,7,12,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1335,-20,0,0 +2013,8,10,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,22,1,2300,35,1,0 +2013,6,2,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,25,1,2130,143,1,0 +2013,4,2,2,EV,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,-4,0,2055,-20,0,0 +2013,6,24,1,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-8,0,1855,77,1,0 +2013,5,7,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1102,-3,0,1319,-12,0,0 +2013,4,12,5,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,5,0,547,6,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1910,-3,0,2057,-28,0,0 +2013,7,16,2,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,625,-3,0,752,-13,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1905,52,1,2029,39,1,0 +2013,9,25,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-7,0,935,-8,0,0 +2013,10,3,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1831,3,0,2356,-16,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,24,1,1350,23,1,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,-3,0,2304,-5,0,0 +2013,10,10,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1830,7,0,2053,9,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1945,-1,0,2319,-14,0,0 +2013,9,13,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,940,40,1,1110,58,1,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1425,1,0,1820,22,1,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1935,31,1,2205,39,1,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1210,124,1,1315,114,1,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1150,9,0,1320,19,1,0 +2013,10,19,6,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1340,-1,0,1650,-25,0,0 +2013,8,2,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,27,1,1534,1,0,0 +2013,5,27,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,933,-5,0,1025,-8,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1845,22,1,2010,14,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1443,-1,0,1534,-8,0,0 +2013,8,26,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1600,-2,0,1656,3,0,0 +2013,10,18,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1707,-6,0,1925,0,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1035,0,0,1310,4,0,0 +2013,6,8,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,836,-1,0,859,-10,0,0 +2013,10,8,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,177,1,2245,166,1,0 +2013,6,13,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1755,1,0,2055,24,1,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2100,193,1,2245,176,1,0 +2013,5,28,2,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2123,-2,0,555,18,1,0 +2013,10,17,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1135,-5,0,1250,-10,0,0 +2013,9,21,6,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,745,0,0,815,-7,0,0 +2013,4,10,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1945,0,,2100,0,1,1 +2013,5,13,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1135,10,0,1235,5,0,0 +2013,7,12,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-6,0,912,1,0,0 +2013,9,4,3,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,955,-4,0,1240,10,0,0 +2013,9,26,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-6,0,1350,-9,0,0 +2013,9,27,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,829,-2,0,1139,-20,0,0 +2013,10,31,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1303,22,1,1745,2,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,635,-4,0,820,9,0,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1135,0,0,1225,5,0,0 +2013,10,15,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,750,12,0,930,15,1,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1035,54,1,1620,39,1,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,52,1,2104,76,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1343,-3,0,1510,-6,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,815,-7,0,935,4,0,0 +2013,7,6,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1355,17,1,1435,13,0,0 +2013,10,28,1,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1603,-8,0,1900,-23,0,0 +2013,6,25,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,-8,0,1700,-6,0,0 +2013,8,28,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-7,0,1728,-6,0,0 +2013,4,14,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1135,27,1,1210,27,1,0 +2013,5,31,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-2,0,1315,-11,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,0,0,1757,1,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,-1,0,2359,1,0,0 +2013,7,25,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,535,-1,0,708,-6,0,0 +2013,4,25,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,820,-5,0,935,10,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1952,0,0,2148,-17,0,0 +2013,5,11,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1049,-2,0,0 +2013,9,18,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1015,0,0,1205,-1,0,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,915,-5,0,1130,-11,0,0 +2013,4,7,7,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,750,-1,0,1119,-4,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,902,-5,0,1602,-7,0,0 +2013,7,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2015,1,0,2115,-5,0,0 +2013,6,19,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,726,-1,0,1100,-4,0,0 +2013,8,23,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1148,-3,0,1447,-19,0,0 +2013,10,1,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-5,0,1123,-7,0,0 +2013,4,5,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,-4,0,2055,-12,0,0 +2013,9,16,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1415,14,0,1515,-3,0,0 +2013,10,22,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,610,0,0,1208,-17,0,0 +2013,4,13,6,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,945,46,1,1740,14,0,0 +2013,9,1,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1501,7,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,900,38,1,1200,41,1,0 +2013,8,24,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1130,-4,0,1354,-13,0,0 +2013,5,19,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,-1,0,1830,-3,0,0 +2013,10,8,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,-8,0,1845,-1,0,0 +2013,5,30,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,0,0,1427,-22,0,0 +2013,9,28,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1657,5,0,1746,-6,0,0 +2013,4,3,3,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1710,0,0,1925,-12,0,0 +2013,7,8,1,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,8,0,2350,-8,0,0 +2013,7,13,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1310,17,1,1441,12,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,821,6,0,926,1,0,0 +2013,9,8,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-5,0,1650,-17,0,0 +2013,6,20,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1145,12,0,1245,-4,0,0 +2013,10,1,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1030,-2,0,1150,-14,0,0 +2013,8,2,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1724,37,1,1851,26,1,0 +2013,5,14,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,835,-4,0,1000,-13,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,-6,0,951,-4,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,830,-5,0,955,-11,0,0 +2013,8,14,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1151,-3,0,1237,-15,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1422,-3,0,1555,-11,0,0 +2013,4,1,1,WN,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1135,-4,0,1420,-2,0,0 +2013,9,8,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-4,0,1740,-4,0,0 +2013,10,23,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1719,134,1,1910,123,1,0 +2013,6,7,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,-3,0,1132,-18,0,0 +2013,5,13,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-5,0,1054,-3,0,0 +2013,8,4,7,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1644,7,0,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1236,9,0,1835,28,1,0 +2013,8,26,1,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-9,0,2054,-1,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1840,1,0,2000,-5,0,0 +2013,9,27,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,-7,0,1648,-1,0,0 +2013,6,15,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1230,-4,0,1626,33,1,0 +2013,7,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1502,-2,0,1608,-7,0,0 +2013,7,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,-2,0,750,-1,0,0 +2013,6,27,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1724,-2,0,1845,1,0,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1505,84,1,1720,91,1,0 +2013,10,13,7,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,25,1,2320,5,0,0 +2013,4,27,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,20,-6,0,535,-2,0,0 +2013,7,7,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-7,0,924,-11,0,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-9,0,919,-15,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,750,-4,0,920,-22,0,0 +2013,5,23,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1016,2,0,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1659,-3,0,2214,-6,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2255,-8,0,2323,-14,0,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1530,5,0,1650,-5,0,0 +2013,10,16,3,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,941,-4,0,1229,25,1,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2205,-4,0,2252,11,0,0 +2013,6,14,5,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1639,14,0,1933,7,0,0 +2013,7,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,635,-4,0,745,-10,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1959,-1,0,2112,-19,0,0 +2013,9,12,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1745,-1,0,2345,-14,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,5,0,1740,7,0,0 +2013,5,15,3,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,715,-7,0,1019,-6,0,0 +2013,5,3,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,66,1,1610,45,1,0 +2013,6,9,7,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-3,0,900,-13,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2122,102,1,2251,72,1,0 +2013,5,17,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,787,1,830,779,1,0 +2013,8,2,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1121,-12,0,1221,-8,0,0 +2013,10,16,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-3,0,1715,-16,0,0 +2013,9,16,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,7,0,1325,4,0,0 +2013,8,19,1,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,725,14,0,946,-7,0,0 +2013,7,28,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1100,2,0,1210,-8,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1510,8,0,1635,-3,0,0 +2013,10,14,1,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1706,-1,0,1847,-12,0,0 +2013,8,30,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,17,1,1010,11,0,0 +2013,6,25,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1851,-3,0,2015,-8,0,0 +2013,5,23,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-2,0,916,-11,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1203,-6,0,1440,-29,0,0 +2013,7,18,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-1,0,1824,-13,0,0 +2013,8,1,4,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1700,19,1,1915,38,1,0 +2013,9,13,5,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-6,0,854,-14,0,0 +2013,5,8,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,1205,-12,0,0 +2013,8,21,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,954,-3,0,1322,9,0,0 +2013,9,14,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-10,0,1823,-14,0,0 +2013,7,9,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-6,0,1720,-15,0,0 +2013,7,17,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1100,-6,0,1145,-15,0,0 +2013,9,9,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-3,0,1043,0,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1935,11,0,2335,16,1,0 +2013,8,28,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1350,-1,0,1500,-9,0,0 +2013,7,18,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-3,0,855,-4,0,0 +2013,4,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,53,1,1030,50,1,0 +2013,5,24,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,855,0,0,1230,-7,0,0 +2013,9,20,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-1,0,1300,-10,0,0 +2013,9,23,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1410,-9,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1050,-4,0,1237,-15,0,0 +2013,5,18,6,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-2,0,1115,-19,0,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1850,11,0,40,2,0,0 +2013,5,9,4,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,630,-4,0,709,-10,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,-4,0,2130,20,1,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1100,10,0,1425,-5,0,0 +2013,5,16,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,755,-3,0,1055,-12,0,0 +2013,4,18,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,748,1,0,1013,70,1,0 +2013,9,6,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,845,-3,0,941,-2,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,2,0,2335,1,0,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1315,28,1,1610,27,1,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2100,8,0,2245,-2,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,-5,0,1954,-14,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1113,10,0,1256,0,0,0 +2013,9,23,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1610,2,0,1810,-1,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1855,41,1,2015,57,1,0 +2013,6,9,7,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1713,24,1,1841,19,1,0 +2013,10,14,1,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,635,-5,0,800,-17,0,0 +2013,10,11,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,710,1,0,835,7,0,0 +2013,5,1,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1854,-3,0,2020,-18,0,0 +2013,7,1,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,0,0,1901,48,1,0 +2013,4,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1135,23,1,1340,7,0,0 +2013,6,25,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1506,-4,0,1530,-15,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,21,1,1040,0,0,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1005,-5,0,1323,-7,0,0 +2013,10,9,3,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1436,-7,0,1440,-19,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1754,10,0,1913,-1,0,0 +2013,4,8,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,2135,-7,0,38,1,0,0 +2013,7,4,4,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,745,-8,0,1008,-11,0,0 +2013,9,5,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-1,0,1550,-28,0,0 +2013,6,9,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1945,12,0,2057,4,0,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,-5,0,2300,-10,0,0 +2013,8,27,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1520,8,0,1615,44,1,0 +2013,5,29,3,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1925,1,0,2138,6,0,0 +2013,8,23,5,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,2020,-6,0,2246,-8,0,0 +2013,9,4,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,-3,0,1729,-16,0,0 +2013,8,14,3,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,900,-7,0,1150,-10,0,0 +2013,9,19,4,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,830,198,1,848,233,1,0 +2013,7,3,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1546,10,0,2359,16,1,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,0,0,1005,-8,0,0 +2013,4,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,1252,-12,0,0 +2013,10,20,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,0,0,1055,-15,0,0 +2013,8,3,6,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,655,-4,0,917,3,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1956,34,1,2132,20,1,0 +2013,9,1,7,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2005,-6,0,2305,-14,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,0,0,1805,-7,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1755,36,1,2055,51,1,0 +2013,9,8,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1313,0,0,1400,-7,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1914,-2,0,2000,-24,0,0 +2013,9,15,7,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1552,66,1,1736,57,1,0 +2013,6,2,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,707,-8,0,819,-16,0,0 +2013,10,21,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,10,0,2100,-3,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1738,50,1,2019,16,1,0 +2013,5,14,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1005,-13,0,1203,-20,0,0 +2013,10,3,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1754,-5,0,1915,12,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2010,9,0,2325,4,0,0 +2013,8,7,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,-2,0,936,0,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1255,-2,0,1546,-27,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,820,-4,0,935,-11,0,0 +2013,8,25,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,4,0,2258,-7,0,0 +2013,5,22,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,16,1,1630,12,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,24,1,1530,12,0,0 +2013,4,24,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,-3,0,2135,0,0,0 +2013,9,22,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,-5,0,2101,10,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,710,-1,0,823,-9,0,0 +2013,4,6,6,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1945,-12,0,2050,-28,0,0 +2013,5,30,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2015,10,0,500,-1,0,0 +2013,8,20,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2100,82,1,120,72,1,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1252,-3,0,1758,-29,0,0 +2013,9,30,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,835,1,0,955,4,0,0 +2013,8,2,5,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1930,102,1,2246,91,1,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-1,0,1735,5,0,0 +2013,6,18,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1802,19,1,1848,9,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1347,33,1,1658,3,0,0 +2013,7,9,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,-7,0,850,-1,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1340,0,0,1520,-2,0,0 +2013,9,16,1,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1705,-1,0,1850,2,0,0 +2013,10,10,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1340,-2,0,1505,-4,0,0 +2013,4,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1635,29,1,1750,18,1,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2155,8,0,2310,17,1,0 +2013,10,15,2,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1355,20,1,1542,11,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,20,1,2159,19,1,0 +2013,8,31,6,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,-1,0,800,9,0,0 +2013,4,9,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,63,1,1819,79,1,0 +2013,4,28,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,2,0,604,10,0,0 +2013,9,3,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,714,-2,0,1046,-12,0,0 +2013,4,9,2,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1145,-21,0,0 +2013,10,27,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,600,-6,0,900,-17,0,0 +2013,9,18,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1345,7,0,1455,-3,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,3,0,1927,6,0,0 +2013,5,24,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,6,0,1925,3,0,0 +2013,6,21,5,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,19,1,1200,12,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,815,-5,0,1114,-14,0,0 +2013,10,8,2,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-5,0,1805,1,0,0 +2013,7,10,3,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1935,-1,0,2222,-15,0,0 +2013,6,25,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1544,80,1,1700,81,1,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-9,0,1256,-24,0,0 +2013,9,27,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1545,23,1,1645,15,1,0 +2013,9,28,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1116,-7,0,1451,-34,0,0 +2013,8,13,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-4,0,1250,-2,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1315,-5,0,1500,-8,0,0 +2013,10,22,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,829,-4,0,913,-9,0,0 +2013,5,4,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1410,-1,0,1628,-8,0,0 +2013,10,16,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1842,5,0,2014,-4,0,0 +2013,4,5,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,14,0,1203,18,1,0 +2013,5,10,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,936,-11,0,1040,-22,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,2,0,1105,3,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1130,-8,0,1313,-7,0,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,23,1,1825,15,1,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,800,32,1,926,51,1,0 +2013,10,25,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1230,-5,0,1422,-14,0,0 +2013,9,9,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1352,8,0,1624,17,1,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1750,10,0,1915,18,1,0 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,0,0,1439,-2,0,0 +2013,9,19,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,22,1,2159,9,0,0 +2013,10,27,7,YV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1547,-2,0,1715,-10,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1720,-3,0,1859,-23,0,0 +2013,4,23,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,825,-2,0,1107,1,0,0 +2013,8,15,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1901,-6,0,1951,-1,0,0 +2013,4,9,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,951,81,1,1035,100,1,0 +2013,4,17,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,18,1,935,27,1,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1626,0,0,1849,-30,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2145,-4,0,2221,-10,0,0 +2013,4,17,3,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,-2,0,2124,-11,0,0 +2013,8,4,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1742,-10,0,1914,-23,0,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,1,0,1820,14,0,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,833,-10,0,1446,-19,0,0 +2013,6,24,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,30,1,2125,25,1,0 +2013,4,30,2,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1700,4,0,1810,-9,0,0 +2013,4,22,1,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,-3,0,2036,3,0,0 +2013,6,15,6,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,52,1,900,59,1,0 +2013,10,28,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1225,15,1,2021,-2,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1614,7,0,1810,2,0,0 +2013,6,28,5,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,-1,0,1035,28,1,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2250,-1,0,612,-6,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1845,-3,0,1955,-10,0,0 +2013,10,29,2,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-2,0,1144,-5,0,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,750,4,0,1025,-13,0,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,900,-5,0,1206,-32,0,0 +2013,9,1,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,930,3,0,1155,3,0,0 +2013,5,21,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,545,-3,0,905,-1,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1250,15,1,1350,13,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1215,8,0,1933,-12,0,0 +2013,4,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2235,17,1,120,20,1,0 +2013,7,24,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-2,0,1205,20,1,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,730,-2,0,825,-9,0,0 +2013,5,2,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1651,-1,0,1725,3,0,0 +2013,4,18,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,1,0,1143,0,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,925,-2,0,1020,-5,0,0 +2013,7,5,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,705,-2,0,745,-8,0,0 +2013,7,30,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1510,-6,0,1620,-9,0,0 +2013,10,15,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,-1,0,1729,-12,0,0 +2013,4,16,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-5,0,937,1,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,108,1,1243,100,1,0 +2013,8,5,1,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2005,-8,0,1130,-37,0,0 +2013,4,27,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-6,0,1341,-1,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,3,0,1600,-2,0,0 +2013,5,24,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1530,-14,0,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1535,1,0,1759,-16,0,0 +2013,10,22,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,940,-3,0,1055,-5,0,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2115,74,1,2205,70,1,0 +2013,5,25,6,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1815,0,0,2035,-4,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,840,-4,0,1111,-4,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2000,-3,0,2317,-16,0,0 +2013,6,1,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1725,0,0,2023,-19,0,0 +2013,10,22,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1105,7,0,1258,-3,0,0 +2013,8,1,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1624,-8,0,1710,12,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1120,-1,0,1435,3,0,0 +2013,10,28,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2027,-4,0,2135,-10,0,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1715,10,0,1825,12,0,0 +2013,4,19,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,800,-23,0,0 +2013,5,30,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1543,3,0,1648,3,0,0 +2013,4,30,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1946,-7,0,2125,-24,0,0 +2013,10,9,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,820,2,0,1130,0,0,0 +2013,10,26,6,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,855,-1,0,1205,-8,0,0 +2013,10,6,7,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,1024,16,1,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2215,6,0,2346,4,0,0 +2013,8,20,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1942,-11,0,2140,-28,0,0 +2013,7,9,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-2,0,815,-4,0,0 +2013,6,16,7,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1721,-3,0,1850,-2,0,0 +2013,4,3,3,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,930,-12,0,1200,-3,0,0 +2013,9,30,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,3,0,1930,12,0,0 +2013,5,13,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,-5,0,835,-6,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,840,1,0,1010,8,0,0 +2013,8,3,6,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,800,0,0,935,-1,0,0 +2013,6,8,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1155,4,0,1300,-8,0,0 +2013,10,29,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1559,-8,0,1654,-2,0,0 +2013,6,1,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,-3,0,1648,-10,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,2,0,1000,11,0,0 +2013,5,24,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1315,21,1,1459,-1,0,0 +2013,4,24,3,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1518,18,1,1629,7,0,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2059,1,0,2228,34,1,0 +2013,7,18,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1830,20,1,2015,22,1,0 +2013,10,29,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1355,-14,0,1440,-7,0,0 +2013,6,28,5,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1045,0,0,1200,4,0,0 +2013,10,28,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,37,1,1709,18,1,0 +2013,5,22,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1625,31,1,2054,35,1,0 +2013,9,17,2,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1334,-5,0,1453,-6,0,0 +2013,8,17,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-6,0,1341,-7,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,-2,0,1615,-19,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,-4,0,1420,-10,0,0 +2013,6,4,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1005,-2,0,1155,-5,0,0 +2013,5,3,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-1,0,859,23,1,0 +2013,7,21,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2030,21,1,2115,17,1,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,23,1,2240,19,1,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,910,-3,0,1437,-6,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1235,-8,0,1457,-20,0,0 +2013,5,22,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1730,2,0,1949,2,0,0 +2013,9,2,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1600,-4,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1825,-1,0,2035,1,0,0 +2013,4,5,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1309,-9,0,2130,-15,0,0 +2013,6,4,2,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-8,0,1903,-15,0,0 +2013,8,22,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1443,35,1,1630,14,0,0 +2013,10,28,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,805,2,0,905,0,0,0 +2013,10,28,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,829,-1,0,1026,-9,0,0 +2013,7,7,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,-3,0,1857,-8,0,0 +2013,4,5,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-5,0,747,0,0,0 +2013,5,8,3,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1740,96,1,2018,68,1,0 +2013,10,12,6,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,915,-4,0,1110,-11,0,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1010,5,0,1118,-8,0,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,27,1,1800,21,1,0 +2013,6,14,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1318,39,1,1459,30,1,0 +2013,4,26,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,1925,-10,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1835,-2,0,2235,-28,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,955,2,0,1500,-4,0,0 +2013,5,1,3,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,705,-13,0,826,-9,0,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1315,10,0,1607,21,1,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,900,-3,0,1047,-20,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,830,0,0,1100,-1,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1815,17,1,1910,10,0,0 +2013,9,19,4,9E,14524,Richmond International,Richmond,VA,12478,John F. Kennedy International,New York,NY,1227,14,0,1348,9,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1305,29,1,1445,17,1,0 +2013,10,27,7,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1535,6,0,1655,2,0,0 +2013,10,25,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,955,3,0,1140,13,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,805,1,0,1030,0,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1902,0,0,2105,4,0,0 +2013,8,7,3,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-2,0,1140,-4,0,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,850,19,1,1030,6,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1955,18,1,2115,7,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1334,19,1,1450,21,1,0 +2013,8,30,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-6,0,2036,-13,0,0 +2013,8,21,3,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,845,0,0,1005,-4,0,0 +2013,7,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1112,-4,0,1200,-11,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,725,8,0,945,9,0,0 +2013,4,2,2,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,2200,-6,0,2359,-3,0,0 +2013,8,19,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-1,0,813,9,0,0 +2013,4,26,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,-7,0,1230,-13,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1319,-1,0,0 +2013,4,15,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-1,0,1245,11,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-4,0,900,-7,0,0 +2013,10,26,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,900,-2,0,1015,-12,0,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,835,8,0,1130,-19,0,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1050,-3,0,1345,-30,0,0 +2013,8,24,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,2,0,1910,-1,0,0 +2013,7,5,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,-4,0,1839,-26,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,-3,0,2207,-12,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,-6,0,1345,-16,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2240,-2,0,21,-10,0,0 +2013,10,4,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1315,4,0,1919,-16,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,-1,0,1203,-3,0,0 +2013,7,11,4,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2005,-8,0,1130,-12,0,0 +2013,8,1,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,5,0,725,-4,0,0 +2013,8,21,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1850,-13,0,2030,-20,0,0 +2013,9,21,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,930,-4,0,1045,-10,0,0 +2013,10,28,1,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,1049,3,0,1815,-15,0,0 +2013,10,8,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-3,0,954,-14,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1703,123,1,1847,128,1,0 +2013,9,24,2,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,-4,0,1605,-17,0,0 +2013,6,20,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,-1,0,835,-4,0,0 +2013,5,20,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1040,4,0,1346,11,0,0 +2013,10,26,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,829,1,0,0 +2013,6,23,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1958,0,,2200,0,1,1 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,655,22,1,1125,13,0,0 +2013,8,30,5,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,30,1,1716,55,1,0 +2013,6,29,6,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1820,4,0,1930,2,0,0 +2013,6,23,7,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-1,0,2000,-7,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1705,-3,0,1835,-18,0,0 +2013,10,16,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1045,1,0,1210,-4,0,0 +2013,7,1,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,605,4,0,900,-1,0,0 +2013,4,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1335,1,0,1655,-2,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,-6,0,951,-10,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1042,12,0,0 +2013,4,8,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,1,0,550,2,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-1,0,905,-4,0,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1505,-3,0,1826,-24,0,0 +2013,9,11,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1145,-6,0,1314,-3,0,0 +2013,6,7,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,40,0,0,853,15,1,0 +2013,6,10,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,7,0,1304,60,1,0 +2013,7,19,5,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2225,-2,0,630,-11,0,0 +2013,6,18,2,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-8,0,1212,-26,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-4,0,1212,-11,0,0 +2013,4,9,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,57,1,1808,49,1,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1220,30,1,1345,24,1,0 +2013,10,24,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,4,0,1215,-6,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,-3,0,1603,-13,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,16,1,1505,22,1,0 +2013,10,18,5,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1425,-6,0,1710,-15,0,0 +2013,9,2,1,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1959,-4,0,2032,17,1,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2159,2,0,2304,-16,0,0 +2013,4,18,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1256,89,1,1619,73,1,0 +2013,5,1,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-7,0,1937,27,1,0 +2013,5,10,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2210,59,1,5,57,1,0 +2013,5,20,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1941,107,1,2117,131,1,0 +2013,10,15,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-3,0,1239,-4,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1825,12,0,2211,-14,0,0 +2013,8,5,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-2,0,840,-7,0,0 +2013,9,2,1,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1655,153,1,1814,172,1,0 +2013,5,24,5,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1900,127,1,2120,111,1,0 +2013,5,14,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1411,-6,0,1609,-12,0,0 +2013,7,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1120,16,1,1245,7,0,0 +2013,7,14,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,723,-8,0,0 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1330,2,0,1545,-7,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1205,-4,0,1514,-8,0,0 +2013,10,12,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,725,1,0,955,2,0,0 +2013,6,17,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,859,-6,0,0 +2013,7,27,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1435,-1,0,1535,2,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2035,-2,0,2203,-9,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1520,-3,0,1845,5,0,0 +2013,4,15,1,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1104,14,0,1450,-1,0,0 +2013,8,31,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1855,2,0,2218,38,1,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1555,-5,0,1825,-3,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-5,0,2118,-1,0,0 +2013,4,4,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,2005,-6,0,2210,-15,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1805,-3,0,2028,-10,0,0 +2013,10,15,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2005,-3,0,2319,-8,0,0 +2013,7,27,6,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,820,15,1,955,7,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,948,17,1,1225,10,0,0 +2013,9,8,7,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1740,16,1,2010,14,0,0 +2013,6,13,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,170,1,1630,173,1,0 +2013,7,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1935,-6,0,2143,3,0,0 +2013,4,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1536,63,1,1620,58,1,0 +2013,9,17,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1415,1,0,1555,-17,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,14,0,519,6,0,0 +2013,9,19,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1558,-13,0,1855,-22,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1600,-3,0,1738,-11,0,0 +2013,4,8,1,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1339,-8,0,1550,-18,0,0 +2013,5,8,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-6,0,1355,-15,0,0 +2013,9,20,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1415,4,0,1625,0,0,0 +2013,7,10,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1230,-5,0,0 +2013,4,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,2,0,940,-15,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,-3,0,1345,-23,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1825,2,0,2037,-15,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-2,0,1112,-8,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,23,1,1825,23,1,0 +2013,10,23,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1135,-1,0,1257,7,0,0 +2013,10,16,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-9,0,925,-10,0,0 +2013,10,1,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,12,0,1605,52,1,0 +2013,10,15,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-5,0,1900,14,0,0 +2013,7,5,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1050,10,0,1329,12,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1435,1,0,1755,-4,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1110,-1,0,1220,19,1,0 +2013,4,16,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,930,-5,0,1155,-7,0,0 +2013,7,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2037,-3,0,2213,-22,0,0 +2013,4,10,3,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1738,-6,0,2100,-9,0,0 +2013,10,13,7,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,17,1,1230,22,1,0 +2013,5,13,1,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,955,-3,0,1419,-8,0,0 +2013,4,30,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1631,-5,0,1757,-5,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,-1,0,2344,-7,0,0 +2013,4,1,1,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,78,1,1240,101,1,0 +2013,7,22,1,DL,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1810,-5,0,2129,-18,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,9,0,2112,0,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,-6,0,1333,8,0,0 +2013,8,2,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-3,0,1615,-1,0,0 +2013,7,21,7,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1115,-2,0,1121,35,1,0 +2013,8,30,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,829,-12,0,1006,-17,0,0 +2013,9,16,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,721,-1,0,0 +2013,4,19,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1439,83,1,1620,112,1,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1545,-2,0,1650,-10,0,0 +2013,6,7,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2100,25,1,2207,19,1,0 +2013,6,11,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1347,0,0,1644,13,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1910,-4,0,2244,-8,0,0 +2013,6,17,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1353,0,0,1738,-15,0,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1529,50,1,1740,73,1,0 +2013,8,28,3,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,955,-4,0,1745,2,0,0 +2013,4,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1600,-6,0,1758,4,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,945,3,0,1045,-1,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,-3,0,2114,4,0,0 +2013,4,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1004,-5,0,1325,-15,0,0 +2013,10,8,2,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,2,0,1345,14,0,0 +2013,8,3,6,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1055,19,1,1256,1,0,0 +2013,6,27,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1700,-5,0,1823,-17,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,50,1,1705,35,1,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-3,0,1453,-18,0,0 +2013,7,8,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1100,-2,0,1459,-3,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,118,1,2200,124,1,0 +2013,8,20,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1510,-10,0,1634,-22,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1930,0,0,2205,-21,0,0 +2013,9,2,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1528,128,1,1737,110,1,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,747,-3,0,930,-6,0,0 +2013,5,15,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1230,-3,0,1427,-5,0,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1610,5,0,1730,9,0,0 +2013,6,28,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,1,0,1123,10,0,0 +2013,8,31,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1700,1,0,1840,-3,0,0 +2013,8,8,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2100,-6,0,2230,-15,0,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,730,-2,0,1051,11,0,0 +2013,9,9,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1135,57,1,1150,49,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-4,0,2151,2,0,0 +2013,5,26,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1140,-5,0,1455,-11,0,0 +2013,5,30,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,845,7,0,1020,1,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1349,-5,0,1724,-4,0,0 +2013,10,23,3,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1535,0,0,1635,-10,0,0 +2013,4,23,2,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1330,-6,0,1529,2,0,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2226,45,1,716,26,1,0 +2013,9,6,5,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,640,-3,0,755,-10,0,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-6,0,1305,0,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-4,0,2115,-11,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1823,-2,0,2100,-19,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,-2,0,2047,-16,0,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1735,-6,0,1938,-27,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2201,80,1,2324,77,1,0 +2013,10,17,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,5,0,2102,-6,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,715,2,0,920,-7,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,740,-2,0,1205,1,0,0 +2013,4,17,3,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1635,107,1,1755,102,1,0 +2013,4,6,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,1343,-2,0,0 +2013,10,9,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-6,0,1955,-5,0,0 +2013,4,28,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1535,-8,0,1702,-12,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-5,0,1507,-4,0,0 +2013,10,15,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1605,-8,0,1753,-18,0,0 +2013,9,15,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1830,31,1,1950,40,1,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-2,0,1104,1,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,5,0,1935,-6,0,0 +2013,6,11,2,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-2,0,2145,-3,0,0 +2013,5,14,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1630,-11,0,1835,0,0,0 +2013,6,5,3,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1645,2,0,1935,-3,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2251,7,0,28,-4,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,79,1,1955,69,1,0 +2013,10,30,3,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-1,0,1917,2,0,0 +2013,10,21,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1535,-5,0,1703,-3,0,0 +2013,5,8,3,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-3,0,1005,-8,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,910,-1,0,1151,-4,0,0 +2013,9,28,6,YV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,813,-3,0,957,-4,0,0 +2013,8,16,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,1,0,1737,13,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,4,0,930,8,0,0 +2013,7,10,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2245,80,1,614,62,1,0 +2013,5,9,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1035,-4,0,1151,-5,0,0 +2013,9,23,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1035,-7,0,1335,8,0,0 +2013,8,16,5,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1525,10,0,1800,-16,0,0 +2013,6,17,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1122,-10,0,1251,-16,0,0 +2013,8,21,3,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1430,-10,0,1611,-7,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-7,0,1347,-10,0,0 +2013,8,21,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1852,5,0,2249,-7,0,0 +2013,5,8,3,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1100,131,1,1452,128,1,0 +2013,10,30,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-6,0,1226,-25,0,0 +2013,5,8,3,9E,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,859,-5,0,1016,-13,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1220,101,1,1946,79,1,0 +2013,10,29,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-2,0,1015,-17,0,0 +2013,8,13,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1405,-1,0,1505,-1,0,0 +2013,8,1,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1753,-6,0,1935,0,0,0 +2013,5,28,2,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,751,-7,0,1045,-12,0,0 +2013,8,9,5,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1820,-5,0,2200,-13,0,0 +2013,10,15,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,932,-2,0,1130,-20,0,0 +2013,5,7,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,810,-7,0,0 +2013,7,19,5,DL,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,10,0,1831,5,0,0 +2013,8,22,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1727,-6,0,2100,-15,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1305,11,0,1625,-2,0,0 +2013,8,29,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1456,14,0,1636,8,0,0 +2013,10,23,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1053,-8,0,1228,-15,0,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-1,0,1906,-19,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1639,-3,0,1935,6,0,0 +2013,8,6,2,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1153,67,1,1421,59,1,0 +2013,10,7,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,829,-2,0,1026,-15,0,0 +2013,5,28,2,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2103,-4,0,2259,2,0,0 +2013,8,14,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1249,-5,0,1404,-10,0,0 +2013,4,23,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1640,-1,0,1820,-13,0,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1215,-4,0,2040,0,0,0 +2013,6,26,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1525,20,1,1732,23,1,0 +2013,9,22,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,9,0,2135,7,0,0 +2013,7,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,-2,0,1130,-5,0,0 +2013,9,9,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1749,-3,0,1955,-16,0,0 +2013,5,11,6,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,7,0,2000,-25,0,0 +2013,6,18,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-3,0,1159,-1,0,0 +2013,10,24,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,2000,-2,0,2125,-8,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1121,-2,0,1315,-19,0,0 +2013,9,25,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,-3,0,1802,-16,0,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-1,0,1240,7,0,0 +2013,8,12,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-8,0,1112,-12,0,0 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,-3,0,1554,-17,0,0 +2013,4,29,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-3,0,1040,-11,0,0 +2013,8,18,7,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1150,-4,0,1415,-16,0,0 +2013,10,31,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,730,-6,0,1259,-7,0,0 +2013,8,15,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1533,215,1,1850,252,1,0 +2013,6,18,2,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1705,5,0,1900,11,0,0 +2013,8,19,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-2,0,1845,-18,0,0 +2013,9,9,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,852,-6,0,1030,-22,0,0 +2013,8,26,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,720,-2,0,1007,0,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-6,0,914,-19,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1850,-4,0,2310,-14,0,0 +2013,7,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1904,14,0,1958,13,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,-2,0,1900,-33,0,0 +2013,9,29,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,955,-7,0,1055,-11,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,655,-2,0,1526,-20,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,1,0,1915,13,0,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1211,105,1,1330,93,1,0 +2013,5,9,4,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,753,-4,0,1340,-9,0,0 +2013,7,4,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,815,-5,0,940,-10,0,0 +2013,7,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,741,-4,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1025,51,1,1245,45,1,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2105,8,0,2210,12,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1919,6,0,2244,2,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1725,19,1,2000,-4,0,0 +2013,4,15,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1910,10,0,2040,15,1,0 +2013,9,3,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1830,23,1,2025,18,1,0 +2013,10,14,1,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-2,0,906,-4,0,0 +2013,5,1,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1430,-3,0,1630,-11,0,0 +2013,4,10,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,77,1,16,121,1,0 +2013,10,23,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1051,7,0,1310,-3,0,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,8,0,2139,9,0,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,2044,-1,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-3,0,1135,5,0,0 +2013,10,31,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1700,-2,0,1800,-9,0,0 +2013,9,8,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-4,0,1655,-4,0,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1852,28,1,2200,57,1,0 +2013,10,24,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,-8,0,1921,-5,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-3,0,1033,-22,0,0 +2013,6,25,2,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-17,0,500,-33,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1000,-1,0,1254,-4,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,935,15,1,1140,18,1,0 +2013,7,19,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,2051,7,0,2306,-10,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,-9,0,345,-8,0,0 +2013,10,2,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,545,-10,0,723,-24,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1000,-2,0,1655,-26,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1655,10,0,2110,7,0,0 +2013,6,17,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,2105,-2,0,2155,-9,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,850,0,0,940,-3,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1025,16,1,1310,12,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,51,1,1825,46,1,0 +2013,7,18,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,0,0,1655,26,1,0 +2013,5,14,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-1,0,1903,-10,0,0 +2013,8,8,4,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1745,-5,0,1910,5,0,0 +2013,4,17,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,640,-9,0,824,-10,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,725,-5,0,901,-8,0,0 +2013,9,8,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1110,-3,0,1325,3,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2005,17,1,2045,19,1,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1855,-5,0,2215,-2,0,0 +2013,9,10,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,-8,0,2005,-15,0,0 +2013,6,6,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,13,0,1650,6,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1100,16,1,1315,-8,0,0 +2013,8,15,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1236,-12,0,0 +2013,7,29,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2130,3,0,2215,-1,0,0 +2013,10,27,7,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1707,-6,0,1853,-19,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,16,1,2220,-7,0,0 +2013,6,20,4,DL,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,935,-2,0,1759,5,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1439,5,0,1600,8,0,0 +2013,7,27,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-3,0,912,-2,0,0 +2013,9,9,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1835,23,1,2052,49,1,0 +2013,4,10,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-6,0,945,15,1,0 +2013,8,19,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1245,0,0,1347,-12,0,0 +2013,4,13,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,0,0,1035,18,1,0 +2013,8,12,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,647,-3,0,809,-9,0,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,44,1,21,29,1,0 +2013,4,29,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,0,0,950,-9,0,0 +2013,5,29,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1415,4,0,1540,8,0,0 +2013,4,15,1,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,0,0,1806,-9,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-4,0,1817,-23,0,0 +2013,7,26,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,-1,0,650,-5,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-1,0,1948,1,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1740,20,1,1959,4,0,0 +2013,8,29,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-5,0,2154,-15,0,0 +2013,4,7,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,505,-1,0,926,-7,0,0 +2013,10,20,7,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2050,-4,0,500,-15,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,800,2,0,855,-3,0,0 +2013,7,4,4,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1241,-1,0,1412,-11,0,0 +2013,10,13,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,1,0,2020,0,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1553,58,1,1755,44,1,0 +2013,4,5,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1220,-4,0,1332,10,0,0 +2013,6,4,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1855,-1,0,20,-20,0,0 +2013,10,13,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1625,18,1,1825,11,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,-3,0,1912,-3,0,0 +2013,9,28,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,755,-6,0,1036,4,0,0 +2013,7,25,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1822,0,0,2017,-5,0,0 +2013,10,15,2,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,3,0,1230,7,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1020,-4,0,1730,-6,0,0 +2013,10,17,4,9E,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1214,25,1,1505,34,1,0 +2013,10,26,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1007,-6,0,1247,-2,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,-1,0,2014,-21,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,-6,0,1103,-3,0,0 +2013,7,3,3,OO,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1642,0,,2054,0,1,1 +2013,7,23,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1919,20,1,2135,1,0,0 +2013,5,13,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1000,21,1,1050,4,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,655,-8,0,815,1,0,0 +2013,10,17,4,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-5,0,939,-10,0,0 +2013,10,24,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-6,0,1205,6,0,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,0,0,1905,-37,0,0 +2013,8,8,4,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,-5,0,1550,-21,0,0 +2013,5,31,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1710,35,1,1830,29,1,0 +2013,8,5,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,735,-17,0,1600,-31,0,0 +2013,7,10,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-4,0,905,1,0,0 +2013,10,28,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1125,22,1,1420,-4,0,0 +2013,5,19,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1112,18,1,1359,32,1,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1210,-4,0,1905,-4,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1220,5,0,1330,0,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1433,-1,0,1605,-7,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-7,0,1428,-14,0,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1850,7,0,2045,-3,0,0 +2013,4,25,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,14,0,1830,-3,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1413,-1,0,1546,-9,0,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,730,0,0,857,-3,0,0 +2013,4,8,1,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,853,-5,0,1019,-14,0,0 +2013,9,19,4,9E,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,-8,0,1245,-12,0,0 +2013,8,26,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,11,0,1854,0,0,0 +2013,9,12,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1810,-4,0,2020,19,1,0 +2013,7,21,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-3,0,912,-26,0,0 +2013,7,27,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1400,180,1,1710,168,1,0 +2013,5,5,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1140,8,0,1415,4,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1945,91,1,110,90,1,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,6,0,2213,8,0,0 +2013,6,29,6,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1525,118,1,1625,98,1,0 +2013,4,13,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,740,-3,0,901,-5,0,0 +2013,9,23,1,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1850,-12,0,2120,-18,0,0 +2013,4,25,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,1015,26,1,0 +2013,8,18,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1242,-11,0,1345,-26,0,0 +2013,5,21,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1315,-4,0,1531,-12,0,0 +2013,7,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,0,,1849,0,1,1 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,620,-2,0,855,-10,0,0 +2013,10,12,6,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,729,-9,0,1050,-20,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1551,139,1,1740,151,1,0 +2013,7,18,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1015,11,0,1135,15,1,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,0,0,1130,-10,0,0 +2013,5,9,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-3,0,1005,-9,0,0 +2013,7,19,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,2,0,1348,-4,0,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1645,10,0,1735,-1,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1200,-5,0,1332,-5,0,0 +2013,6,9,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,950,-10,0,1324,-21,0,0 +2013,7,23,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,814,-5,0,1335,-13,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-5,0,1438,-12,0,0 +2013,10,6,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,735,-6,0,1005,-27,0,0 +2013,5,4,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1035,-4,0,1155,-9,0,0 +2013,4,9,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,-4,0,1421,-19,0,0 +2013,9,28,6,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,650,-7,0,1509,-26,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,0,0,1702,-9,0,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,605,-1,0,720,4,0,0 +2013,6,3,1,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1230,-9,0,1451,-10,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1200,10,0,1505,7,0,0 +2013,7,18,4,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,23,1,1011,21,1,0 +2013,4,26,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1010,10,0,1145,13,0,0 +2013,7,29,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1635,-5,0,1815,-4,0,0 +2013,7,23,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,805,-17,0,0 +2013,10,12,6,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,819,-4,0,1045,5,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1835,112,1,2152,121,1,0 +2013,9,20,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-7,0,1659,-18,0,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,144,1,2306,142,1,0 +2013,7,17,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1409,-9,0,1548,1,0,0 +2013,5,20,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,11,0,1829,4,0,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,8,0,1420,3,0,0 +2013,10,21,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1710,1,0,1825,-11,0,0 +2013,7,26,5,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-9,0,2015,-7,0,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1205,-8,0,1333,-24,0,0 +2013,10,7,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,840,-5,0,1040,-9,0,0 +2013,4,11,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-2,0,945,0,0,0 +2013,6,20,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,34,1,1832,18,1,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2030,-1,0,2310,-9,0,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,18,1,1840,3,0,0 +2013,6,28,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,-1,0,2142,36,1,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,800,-7,0,1109,-8,0,0 +2013,9,26,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,3,0,1005,-1,0,0 +2013,4,21,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1315,2,0,1440,2,0,0 +2013,10,15,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,540,-6,0,1200,-40,0,0 +2013,9,7,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,730,-6,0,850,-15,0,0 +2013,8,11,7,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,47,1,2200,35,1,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,605,11,0,855,12,0,0 +2013,5,23,4,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2130,79,1,2350,64,1,0 +2013,5,3,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1412,-2,0,1539,7,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-3,0,2349,3,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1930,94,1,2100,84,1,0 +2013,5,31,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,34,1,1737,45,1,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1909,-2,0,2235,-29,0,0 +2013,10,6,7,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,605,-5,0,840,0,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1302,-4,0,1634,1,0,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1220,-4,0,1353,-5,0,0 +2013,8,4,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1535,-6,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2110,25,1,20,19,1,0 +2013,5,4,6,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-6,0,1200,-7,0,0 +2013,6,9,7,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1620,-1,0,1805,-15,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,600,21,1,1206,29,1,0 +2013,6,11,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,-2,0,1435,-3,0,0 +2013,9,1,7,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,-1,0,1545,-16,0,0 +2013,4,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1110,55,1,1257,51,1,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1055,25,1,1205,20,1,0 +2013,7,25,4,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,725,11,0,946,-3,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2015,-8,0,2255,-15,0,0 +2013,4,19,5,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-8,0,1948,0,0,0 +2013,4,24,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1504,42,1,1724,42,1,0 +2013,9,12,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,3,0,1015,-1,0,0 +2013,8,7,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-5,0,927,2,0,0 +2013,10,29,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1745,-7,0,1925,-9,0,0 +2013,7,5,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,-3,0,1706,-4,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,725,-3,0,842,-11,0,0 +2013,8,28,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,24,1,1334,110,1,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-2,0,1928,35,1,0 +2013,6,29,6,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-1,0,1125,3,0,0 +2013,7,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,0,,820,0,1,1 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,-3,0,1720,-12,0,0 +2013,6,17,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,-1,0,2227,-2,0,0 +2013,7,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,99,1,2335,98,1,0 +2013,4,10,3,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-2,0,1559,1,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1705,-2,0,2045,-7,0,0 +2013,5,4,6,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1943,-2,0,2050,-10,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1813,4,0,1949,-4,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,735,-2,0,1010,-2,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,15,1,1331,22,1,0 +2013,8,28,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1205,0,,1335,0,1,1 +2013,4,1,1,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1140,1,0,1425,5,0,0 +2013,7,8,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-3,0,835,-1,0,0 +2013,6,24,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,43,1,1457,62,1,0 +2013,8,13,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,857,0,0,0 +2013,6,7,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1150,59,1,1445,92,1,0 +2013,8,6,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-13,0,2010,-2,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,16,1,1240,-1,0,0 +2013,7,18,4,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1400,25,1,1605,-7,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,24,1,1245,20,1,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2135,-2,0,2245,-16,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,-3,0,955,-6,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,1,0,1803,54,1,0 +2013,5,25,6,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1009,-4,0,1606,-11,0,0 +2013,5,2,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1400,20,1,1540,7,0,0 +2013,4,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,23,1,2230,-3,0,0 +2013,7,30,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1055,26,1,1335,22,1,0 +2013,5,12,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,0,,1513,0,1,1 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1810,20,1,2305,15,1,0 +2013,8,5,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,642,0,,724,0,1,1 +2013,9,6,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-11,0,1109,-17,0,0 +2013,5,6,1,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1835,-6,0,2120,-31,0,0 +2013,9,15,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,615,-2,0,748,-11,0,0 +2013,4,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-1,0,920,3,0,0 +2013,5,30,4,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,83,1,1736,92,1,0 +2013,8,18,7,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1450,-7,0,1745,-31,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,-3,0,2035,3,0,0 +2013,9,14,6,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1630,-3,0,1920,-6,0,0 +2013,4,2,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-1,0,1220,6,0,0 +2013,5,17,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-7,0,810,-4,0,0 +2013,7,25,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1805,4,0,1905,6,0,0 +2013,6,25,2,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1510,125,1,1900,120,1,0 +2013,7,2,2,9E,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1243,22,1,1519,6,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-7,0,2246,-13,0,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1830,-6,0,1921,-9,0,0 +2013,10,26,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1110,-3,0,1234,-14,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,10,0,1250,-12,0,0 +2013,6,19,3,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2126,-4,0,2358,-8,0,0 +2013,10,17,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1715,26,1,2009,39,1,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1535,31,1,1725,34,1,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,747,-1,0,901,-7,0,0 +2013,6,15,6,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-3,0,912,-13,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,655,-2,0,820,-11,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,-2,0,1710,-1,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-1,0,906,39,1,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2157,8,0,2242,3,0,0 +2013,8,22,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1441,11,0,1544,7,0,0 +2013,5,27,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1654,13,0,1928,2,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1210,22,1,1425,22,1,0 +2013,10,17,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,856,-9,0,1041,-6,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,1,0,1146,2,0,0 +2013,10,1,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1320,-7,0,1527,-8,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1430,4,0,1614,5,0,0 +2013,9,8,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1505,-7,0,1737,-5,0,0 +2013,8,1,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1925,164,1,2158,155,1,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,620,-5,0,1050,-4,0,0 +2013,5,21,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,0,0,2150,1,0,0 +2013,7,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,65,1,1654,67,1,0 +2013,5,24,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,5,0,1005,-3,0,0 +2013,4,1,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,706,-15,0,0 +2013,7,7,7,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,955,75,1,1600,73,1,0 +2013,9,11,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1710,-6,0,2045,-21,0,0 +2013,4,13,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,0,0,1155,-4,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,716,-3,0,1029,-18,0,0 +2013,7,13,6,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,840,-12,0,1111,0,0,0 +2013,8,6,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1349,-7,0,1519,-31,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,835,0,0,935,-7,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1813,104,1,2037,111,1,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1526,3,0,1820,-16,0,0 +2013,5,26,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1154,0,0,1347,-5,0,0 +2013,7,8,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1900,4,0,2145,-20,0,0 +2013,4,7,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-3,0,1944,-13,0,0 +2013,6,29,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,5,0,2110,-2,0,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2100,1,0,2229,6,0,0 +2013,9,15,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1053,-3,0,1212,26,1,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,-4,0,2248,-19,0,0 +2013,10,15,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1120,-15,0,1250,-27,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,805,-5,0,1145,-19,0,0 +2013,8,3,6,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,0,,940,0,1,1 +2013,9,22,7,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-6,0,2359,-6,0,0 +2013,10,4,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1159,-10,0,1447,-17,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,821,27,1,917,35,1,0 +2013,7,6,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1755,10,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1643,36,1,1925,21,1,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-5,0,1510,-8,0,0 +2013,8,23,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,-2,0,530,0,0,0 +2013,6,13,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1400,0,0,1508,4,0,0 +2013,8,26,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,3,0,2004,33,1,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-6,0,929,-8,0,0 +2013,5,13,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,13,0,1250,-1,0,0 +2013,8,14,3,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,833,-5,0,1017,13,0,0 +2013,5,4,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2145,11,0,32,12,0,0 +2013,5,28,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,-1,0,1826,-3,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,840,-5,0,954,-12,0,0 +2013,10,18,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1745,-2,0,2345,-14,0,0 +2013,4,10,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,-6,0,1729,-14,0,0 +2013,5,3,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1825,-1,0,2134,-15,0,0 +2013,10,19,6,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1334,-5,0,1452,4,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1555,1,0,1710,8,0,0 +2013,9,18,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,24,1,1255,6,0,0 +2013,9,14,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,14,0,709,20,1,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,41,1,2241,15,1,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1935,12,0,2335,20,1,0 +2013,4,22,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,632,-4,0,0 +2013,7,29,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1850,14,0,2033,22,1,0 +2013,8,29,4,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,825,-10,0,1113,-26,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1750,9,0,2310,0,0,0 +2013,10,6,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1950,57,1,2140,29,1,0 +2013,10,19,6,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,1,0,2206,-5,0,0 +2013,5,9,4,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1650,187,1,1901,183,1,0 +2013,7,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1225,18,1,1335,20,1,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,5,0,830,-6,0,0 +2013,10,23,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1512,-5,0,1914,-17,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,-4,0,923,-18,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1109,-7,0,1413,-14,0,0 +2013,9,17,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,600,-6,0,725,-12,0,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,841,22,1,1635,33,1,0 +2013,10,7,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1705,5,0,1950,-7,0,0 +2013,9,1,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1015,-1,0,1250,2,0,0 +2013,10,25,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,1,0,2129,-8,0,0 +2013,5,9,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,555,-7,0,847,-14,0,0 +2013,10,21,1,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,740,-2,0,1032,-2,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,0,0,1000,-3,0,0 +2013,6,8,6,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-8,0,1054,4,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2100,-3,0,2230,-3,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1548,-2,0,1723,-21,0,0 +2013,10,31,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,659,-10,0,900,-28,0,0 +2013,7,31,3,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1100,4,0,1425,9,0,0 +2013,5,27,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,955,-10,0,1244,-18,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,18,1,1311,14,0,0 +2013,6,14,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,6,0,1641,8,0,0 +2013,10,14,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,845,22,1,1045,17,1,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,14,0,2220,5,0,0 +2013,9,24,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1532,-7,0,1637,-11,0,0 +2013,10,17,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,625,-1,0,705,-10,0,0 +2013,4,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1500,38,1,1606,41,1,0 +2013,6,1,6,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1930,16,1,0 +2013,8,21,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,-1,0,1935,-13,0,0 +2013,9,20,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1605,13,0,1720,-10,0,0 +2013,6,14,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1201,-6,0,1330,-14,0,0 +2013,9,19,4,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2055,171,1,515,165,1,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,815,-3,0,920,-7,0,0 +2013,8,14,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1733,-10,0,1905,-6,0,0 +2013,4,15,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-2,0,1420,-4,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1255,78,1,1355,90,1,0 +2013,8,25,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,0,0,2119,-5,0,0 +2013,8,1,4,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1855,2,0,2008,8,0,0 +2013,5,4,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2210,4,0,2339,-2,0,0 +2013,9,11,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2220,-7,0,2305,-9,0,0 +2013,5,3,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,2,0,2310,-1,0,0 +2013,5,20,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1135,77,1,1149,72,1,0 +2013,10,29,2,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1430,-7,0,1958,0,0,0 +2013,7,1,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,-5,0,820,-10,0,0 +2013,10,23,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-4,0,1552,-10,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1405,17,1,2005,8,0,0 +2013,5,10,5,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-7,0,700,-25,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,-2,0,2250,-5,0,0 +2013,5,24,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-2,0,1546,-5,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1025,22,1,1400,10,0,0 +2013,5,8,3,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1904,25,1,2054,19,1,0 +2013,8,11,7,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1710,-3,0,1845,-6,0,0 +2013,5,13,1,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,6,0,905,-2,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,815,-2,0,915,2,0,0 +2013,7,18,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,735,8,0,855,4,0,0 +2013,9,21,6,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1640,-4,0,1955,-17,0,0 +2013,4,26,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,720,-1,0,919,-2,0,0 +2013,7,4,4,UA,14570,Reno/Tahoe International,Reno,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1217,73,1,1800,48,1,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-6,0,1835,-23,0,0 +2013,8,11,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,26,1,855,3,0,0 +2013,9,12,4,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,758,-9,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2035,257,1,2240,252,1,0 +2013,10,13,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,845,-2,0,1045,-13,0,0 +2013,10,30,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,30,1,1616,20,1,0 +2013,10,3,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1930,-11,0,2105,-20,0,0 +2013,4,9,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,650,-4,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,-2,0,1835,-10,0,0 +2013,8,10,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2020,-3,0,2140,-12,0,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1600,-5,0,1700,-3,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-1,0,1540,-3,0,0 +2013,5,14,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,800,-1,0,925,-11,0,0 +2013,9,28,6,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,-13,0,1043,-26,0,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1730,17,1,1753,13,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1240,-8,0,1712,-10,0,0 +2013,4,12,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-1,0,1241,15,1,0 +2013,9,16,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1330,-1,0,1445,9,0,0 +2013,10,5,6,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,21,1,1130,11,0,0 +2013,5,25,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-1,0,1017,8,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2210,-1,0,2300,-6,0,0 +2013,10,26,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,-1,0,1830,5,0,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,-6,0,1230,-12,0,0 +2013,10,7,1,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,950,5,0,1115,-1,0,0 +2013,7,28,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,857,-6,0,0 +2013,4,11,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2130,9,0,540,8,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,-1,0,1158,-22,0,0 +2013,8,11,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,9,0,935,5,0,0 +2013,7,29,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2007,-7,0,2026,-10,0,0 +2013,5,28,2,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1717,-2,0,1840,-3,0,0 +2013,5,20,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1239,-5,0,1500,4,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,1,0,1230,1,0,0 +2013,5,10,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,32,1,1300,45,1,0 +2013,4,25,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1735,8,0,1905,-5,0,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-5,0,1120,-13,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1745,17,1,2120,4,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-3,0,1617,-5,0,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2043,-2,0,2348,-6,0,0 +2013,5,29,3,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1305,1,0,1435,-4,0,0 +2013,10,28,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1820,10,0,1930,10,0,0 +2013,8,21,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1940,0,,2059,0,1,1 +2013,9,2,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1550,19,1,1640,17,1,0 +2013,6,10,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,41,1,2011,33,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2030,3,0,2217,8,0,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,830,127,1,935,120,1,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2214,21,1,615,19,1,0 +2013,7,27,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1530,20,1,1745,15,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,12,0,1450,3,0,0 +2013,8,13,2,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-3,0,804,-3,0,0 +2013,6,18,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1818,-3,0,2323,-23,0,0 +2013,8,24,6,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,2157,-12,0,2315,-23,0,0 +2013,9,30,1,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,2003,56,1,2237,34,1,0 +2013,10,14,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1554,-7,0,1846,-19,0,0 +2013,10,25,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-3,0,1326,-8,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,20,1,1655,24,1,0 +2013,8,8,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1110,17,1,1245,21,1,0 +2013,9,26,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1835,15,1,2035,1,0,0 +2013,10,23,3,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,751,-23,0,0 +2013,10,12,6,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,66,1,1416,59,1,0 +2013,10,14,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,15,1,1738,14,0,0 +2013,5,3,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,749,92,1,925,100,1,0 +2013,5,19,7,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,8,0,1609,6,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-2,0,1505,-14,0,0 +2013,5,29,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,700,9,0,735,15,1,0 +2013,7,3,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-5,0,500,-17,0,0 +2013,5,21,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,32,1,1955,26,1,0 +2013,8,3,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,-4,0,1101,-6,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1322,142,1,2157,145,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,-3,0,1000,-15,0,0 +2013,7,23,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1214,30,1,1356,2,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,11,0,1300,17,1,0 +2013,8,26,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-1,0,1501,-1,0,0 +2013,4,26,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-8,0,2140,-4,0,0 +2013,7,6,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1840,-4,0,2010,-8,0,0 +2013,5,7,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1501,-6,0,1820,0,0,0 +2013,7,31,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,905,-6,0,1225,-17,0,0 +2013,5,12,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,705,-8,0,850,-10,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1853,4,0,2018,-2,0,0 +2013,5,5,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1925,-1,0,2300,-14,0,0 +2013,7,4,4,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,740,4,0,845,2,0,0 +2013,6,26,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,645,0,0,835,-4,0,0 +2013,4,14,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1536,-6,0,1657,-6,0,0 +2013,5,30,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1540,44,1,1710,46,1,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,-2,0,1245,-10,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,751,1,0,1041,-2,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,7,0,1818,10,0,0 +2013,6,27,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-12,0,1340,0,0,0 +2013,7,28,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-9,0,2016,-1,0,0 +2013,7,1,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,600,-4,0,735,-7,0,0 +2013,8,7,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,4,0,2025,1,0,0 +2013,4,29,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1400,3,0,1610,-16,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1510,-1,0,1634,-13,0,0 +2013,5,3,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1330,26,1,1635,34,1,0 +2013,9,1,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-9,0,1452,5,0,0 +2013,7,6,6,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,625,0,0,1230,-5,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1005,-3,0,1239,4,0,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,-1,0,1730,-4,0,0 +2013,4,30,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,111,-2,0,619,2,0,0 +2013,9,4,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1539,-4,0,1844,1,0,0 +2013,7,26,5,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,656,-7,0,817,-13,0,0 +2013,6,23,7,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1409,17,1,1645,3,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,930,12,0,1045,14,0,0 +2013,4,21,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1647,96,1,1830,102,1,0 +2013,6,25,2,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1455,1,0,1710,-12,0,0 +2013,6,28,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1655,43,1,1834,80,1,0 +2013,4,29,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-4,0,1355,-3,0,0 +2013,9,3,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-3,0,1927,-1,0,0 +2013,6,1,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1840,21,1,1950,13,0,0 +2013,6,15,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1548,1,0,2000,-15,0,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,-5,0,1302,-5,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,5,0,1054,12,0,0 +2013,4,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,805,-6,0,1107,-15,0,0 +2013,8,21,3,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-6,0,857,-11,0,0 +2013,6,21,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1916,-9,0,2056,-21,0,0 +2013,9,2,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,0,0,845,-14,0,0 +2013,5,17,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,842,-4,0,1036,-3,0,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,-3,0,1542,-6,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,-4,0,2005,-36,0,0 +2013,4,6,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,845,-2,0,1015,-14,0,0 +2013,10,8,2,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,0,0,1554,-8,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1315,5,0,1445,-5,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,-9,0,2149,-19,0,0 +2013,4,16,2,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-6,0,2148,-29,0,0 +2013,10,26,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1755,63,1,1930,34,1,0 +2013,10,24,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1505,95,1,2352,80,1,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1632,-3,0,1753,-3,0,0 +2013,6,1,6,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1135,-2,0,1320,-21,0,0 +2013,5,27,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1635,-3,0,1810,-10,0,0 +2013,4,22,1,EV,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-7,0,1329,-19,0,0 +2013,10,31,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-4,0,1845,-14,0,0 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1037,-4,0,1224,18,1,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2005,9,0,29,3,0,0 +2013,4,15,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1805,-9,0,1925,-22,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1830,-1,0,2023,2,0,0 +2013,4,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,920,-2,0,940,-11,0,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,10,0,1635,11,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,858,12,0,1201,-1,0,0 +2013,9,15,7,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1500,35,1,1634,38,1,0 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1015,-2,0,1144,-17,0,0 +2013,6,20,4,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1700,-6,0,2359,-15,0,0 +2013,7,14,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,0,0,1511,7,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1553,-2,0,1750,-17,0,0 +2013,4,19,5,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,9,0,1340,2,0,0 +2013,6,6,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,33,1,1459,40,1,0 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1545,-3,0,1650,-8,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,10,0,2200,12,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1900,6,0,2134,0,0,0 +2013,9,24,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1443,0,,1533,0,1,1 +2013,4,24,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,-6,0,945,-11,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1625,-2,0,1755,12,0,0 +2013,10,24,4,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-7,0,1205,-3,0,0 +2013,6,5,3,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-4,0,1442,6,0,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-4,0,1616,11,0,0 +2013,10,29,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1637,-7,0,1744,-1,0,0 +2013,5,21,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1319,58,1,1448,49,1,0 +2013,9,6,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,-6,0,2056,-33,0,0 +2013,9,25,3,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-5,0,1945,3,0,0 +2013,5,7,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1919,31,1,2220,25,1,0 +2013,7,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1830,-1,0,2110,-7,0,0 +2013,5,9,4,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1220,-3,0,1455,2,0,0 +2013,9,2,1,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,620,-10,0,717,-12,0,0 +2013,8,11,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,810,-2,0,1031,3,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,20,1,21,-3,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1544,151,1,1805,146,1,0 +2013,10,11,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-7,0,840,-5,0,0 +2013,7,4,4,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1728,0,0,1900,-11,0,0 +2013,10,13,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1516,-1,0,1603,-2,0,0 +2013,4,23,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1110,-1,0,1240,-11,0,0 +2013,6,3,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1300,-6,0,1556,-18,0,0 +2013,5,6,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,-4,0,35,-3,0,0 +2013,5,19,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1114,132,1,1405,141,1,0 +2013,7,1,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-5,0,1632,35,1,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1929,72,1,2212,121,1,0 +2013,9,4,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,-6,0,12,-19,0,0 +2013,6,23,7,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-5,0,1925,-2,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1315,-2,0,1517,9,0,0 +2013,7,26,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1230,9,0,1335,6,0,0 +2013,8,27,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1205,-7,0,1350,-11,0,0 +2013,10,29,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,0,0,1024,11,0,0 +2013,10,21,1,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-4,0,1904,5,0,0 +2013,10,27,7,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1855,-11,0,2205,-36,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1740,42,1,1840,44,1,0 +2013,5,14,2,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1315,7,0,1440,6,0,0 +2013,8,30,5,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,610,23,1,845,23,1,0 +2013,4,26,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1630,-1,0,1800,-4,0,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1105,-6,0,1215,-18,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,845,97,1,1015,86,1,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1645,20,1,2135,8,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,16,1,1745,0,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,1,0,1130,-9,0,0 +2013,9,26,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1140,-9,0,1150,-13,0,0 +2013,8,27,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1637,1,0,1819,-4,0,0 +2013,6,2,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1305,-7,0,1450,1,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2009,-4,0,2204,-28,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2042,53,1,2210,51,1,0 +2013,10,1,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1125,-3,0,1215,-6,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,840,-3,0,1014,38,1,0 +2013,6,30,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1319,32,1,1645,27,1,0 +2013,8,1,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,-3,0,1133,-7,0,0 +2013,4,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,0,0,1639,-12,0,0 +2013,5,28,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,-5,0,2105,-12,0,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1705,2,0,1805,8,0,0 +2013,9,18,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1030,-3,0,1250,-2,0,0 +2013,4,14,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,950,13,0,1130,2,0,0 +2013,6,14,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,6,0,1825,-9,0,0 +2013,8,11,7,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,-5,0,2212,-12,0,0 +2013,5,2,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,-1,0,1315,4,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1850,-2,0,2025,5,0,0 +2013,8,13,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1524,-1,0,1858,24,1,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1405,0,0,1500,-12,0,0 +2013,6,27,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-3,0,650,-9,0,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-6,0,1830,-12,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,0,0,1635,-1,0,0 +2013,5,22,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,34,1,2151,26,1,0 +2013,6,30,7,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1220,-1,0,1416,-15,0,0 +2013,8,13,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,-6,0,735,0,0,0 +2013,6,18,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1047,7,0,1155,0,0,0 +2013,4,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-6,0,806,-1,0,0 +2013,6,24,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,166,1,1917,149,1,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1030,132,1,1906,113,1,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,20,1,2350,20,1,0 +2013,10,21,1,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1046,32,1,1535,-18,0,0 +2013,6,27,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-4,0,1600,-4,0,0 +2013,8,19,1,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,-3,0,1447,-24,0,0 +2013,5,8,3,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1700,99,1,1819,135,1,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,735,-2,0,940,-2,0,0 +2013,5,17,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,815,-5,0,1656,-24,0,0 +2013,7,15,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-7,0,2257,-13,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,-3,0,1755,0,0,0 +2013,10,4,5,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,830,16,1,1015,-5,0,0 +2013,5,7,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1620,0,0,1905,-12,0,0 +2013,5,21,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,704,-12,0,847,-35,0,0 +2013,10,16,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1004,10,0,1049,8,0,0 +2013,4,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,935,-1,0,1304,-11,0,0 +2013,6,13,4,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1659,5,0,1836,12,0,0 +2013,7,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1110,-11,0,1403,-10,0,0 +2013,8,5,1,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,947,-3,0,1025,5,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1405,67,1,1500,50,1,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1910,35,1,20,29,1,0 +2013,9,23,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1845,-7,0,2134,-39,0,0 +2013,9,10,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2000,53,1,2223,57,1,0 +2013,4,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1645,1,0,1750,2,0,0 +2013,9,5,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1600,-4,0,1805,-3,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1448,0,,1625,0,1,1 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1150,0,0,2029,-6,0,0 +2013,8,6,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,605,-12,0,1425,-26,0,0 +2013,6,10,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,55,1,1752,76,1,0 +2013,7,14,7,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1238,10,0,1540,23,1,0 +2013,10,9,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-5,0,805,-17,0,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1550,4,0,1900,-8,0,0 +2013,6,7,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1706,-1,0,2344,-6,0,0 +2013,5,3,5,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,378,1,1444,388,1,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,1,0,1937,-4,0,0 +2013,7,19,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1540,-7,0,1705,-20,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1320,15,1,1450,13,0,0 +2013,7,16,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,13,0,1408,14,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,0,,1526,0,1,1 +2013,5,16,4,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,615,-2,0,740,-5,0,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1725,-2,0,1850,5,0,0 +2013,4,6,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1445,59,1,2320,24,1,0 +2013,10,17,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,855,-3,0,1130,-17,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,0,0,1258,-18,0,0 +2013,6,17,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-5,0,2016,-11,0,0 +2013,9,9,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1555,-7,0,0 +2013,4,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,22,1,1830,23,1,0 +2013,9,22,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,11,0,2140,3,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,1705,-3,0,1950,-6,0,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,831,-6,0,1125,11,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,620,-1,0,745,-9,0,0 +2013,4,24,3,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1150,5,0,1418,10,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,9,0,1819,11,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,3,0,1916,-11,0,0 +2013,7,11,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1531,24,1,1812,32,1,0 +2013,10,29,2,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1951,-20,0,2100,-9,0,0 +2013,10,20,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-8,0,1344,-11,0,0 +2013,10,5,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,2,0,1945,9,0,0 +2013,7,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2001,0,0,2105,5,0,0 +2013,5,2,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1755,22,1,1850,12,0,0 +2013,7,24,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,-4,0,1524,11,0,0 +2013,4,30,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,-2,0,1230,-21,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1910,-5,0,2043,-27,0,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1436,19,1,1654,10,0,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,905,-2,0,1025,-2,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,-7,0,1550,-17,0,0 +2013,10,28,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2025,-2,0,2105,-25,0,0 +2013,4,14,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,-6,0,1930,-4,0,0 +2013,7,4,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,18,1,1620,-2,0,0 +2013,5,16,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-1,0,905,11,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-2,0,1735,-18,0,0 +2013,10,22,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2030,-8,0,2205,-32,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,1,0,948,-3,0,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,805,85,1,946,82,1,0 +2013,6,9,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-9,0,1159,-21,0,0 +2013,9,26,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1704,6,0,2314,-8,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,3,0,940,-8,0,0 +2013,9,27,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,828,-10,0,1047,-23,0,0 +2013,8,4,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,35,1,1321,16,1,0 +2013,10,11,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,0,0,1436,-3,0,0 +2013,6,23,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,605,-2,0,858,-17,0,0 +2013,10,29,2,F9,14635,Southwest Florida International,Fort Myers,FL,11292,Denver International,Denver,CO,1718,10,0,1925,-15,0,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,549,-8,0,702,-11,0,0 +2013,5,29,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,-3,0,1221,-9,0,0 +2013,8,21,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-3,0,805,-3,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1810,-2,0,1943,1,0,0 +2013,8,25,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1421,0,0,1610,-9,0,0 +2013,7,15,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,41,1,900,28,1,0 +2013,8,25,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,7,0,1935,0,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,2035,0,0,2335,4,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1910,-4,0,2120,-5,0,0 +2013,8,6,2,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,930,-2,0,1745,-3,0,0 +2013,10,9,3,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,640,-3,0,807,-14,0,0 +2013,6,1,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1716,-1,0,1815,3,0,0 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-3,0,1320,-11,0,0 +2013,5,4,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1805,-3,0,1930,-7,0,0 +2013,4,25,4,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-6,0,2055,-19,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1715,-2,0,2059,-18,0,0 +2013,9,12,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,914,4,0,1150,3,0,0 +2013,9,8,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-2,0,1858,-7,0,0 +2013,4,11,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,610,-5,0,850,9,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-5,0,1109,-11,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2020,-4,0,2151,-11,0,0 +2013,8,9,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-5,0,1421,16,1,0 +2013,4,27,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-8,0,1120,1,0,0 +2013,4,27,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1454,-5,0,1610,-8,0,0 +2013,4,10,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,720,-9,0,1017,-17,0,0 +2013,7,2,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2320,-1,0,517,32,1,0 +2013,9,16,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1756,-10,0,1928,-1,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,0,0,1504,-6,0,0 +2013,4,14,7,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1058,84,1,1420,89,1,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-3,0,2025,1,0,0 +2013,7,7,7,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,2,0,1921,-6,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2135,36,1,2310,12,0,0 +2013,7,31,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-7,0,1335,-20,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,15,1,1955,14,0,0 +2013,8,22,4,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-7,0,857,2,0,0 +2013,6,11,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-8,0,1921,-13,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1713,-2,0,1953,-10,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,10,0,2250,9,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,16,1,1210,8,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-2,0,1740,-10,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,-2,0,1450,-10,0,0 +2013,8,4,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-5,0,912,-2,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2102,6,0,2243,-6,0,0 +2013,10,16,3,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1710,-10,0,2200,-14,0,0 +2013,9,17,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1830,-1,0,2122,-18,0,0 +2013,8,8,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-1,0,1345,6,0,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,19,1,1631,11,0,0 +2013,7,8,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,840,-1,0,1015,-13,0,0 +2013,9,17,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1609,-4,0,1732,-13,0,0 +2013,10,30,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,-2,0,2330,-2,0,0 +2013,10,28,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-7,0,1021,-11,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1338,-2,0,1529,5,0,0 +2013,5,5,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1215,-4,0,1331,-8,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-3,0,850,-5,0,0 +2013,5,10,5,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,4,0,2100,16,1,0 +2013,7,16,2,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1550,-8,0,1848,-9,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,19,1,1330,17,1,0 +2013,9,16,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-9,0,857,-10,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1205,0,0,1310,-2,0,0 +2013,10,3,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1600,-8,0,1628,12,0,0 +2013,5,21,2,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2000,26,1,2230,22,1,0 +2013,8,27,2,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-4,0,1815,-10,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,900,0,0,1043,3,0,0 +2013,6,22,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1635,1,0,1745,0,0,0 +2013,6,13,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2135,166,1,2325,147,1,0 +2013,6,10,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,206,1,1515,300,1,0 +2013,10,15,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-4,0,1629,-19,0,0 +2013,7,10,3,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1455,8,0,1600,9,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2107,-1,0,2155,2,0,0 +2013,9,24,2,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1745,-5,0,2056,-23,0,0 +2013,10,30,3,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,825,2,0,1323,3,0,0 +2013,8,5,1,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1714,-9,0,2053,-39,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,1,0,1000,-11,0,0 +2013,7,8,1,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,2,0,1000,6,0,0 +2013,10,20,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1344,-12,0,1935,2,0,0 +2013,4,28,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,725,-6,0,905,-37,0,0 +2013,5,9,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-5,0,859,22,1,0 +2013,7,28,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,-1,0,1414,-7,0,0 +2013,4,5,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,735,0,0,927,-4,0,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,931,14,0,1252,15,1,0 +2013,6,2,7,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1600,1,0,2205,17,1,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1825,1,0,2043,-22,0,0 +2013,5,7,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,915,-6,0,1209,-1,0,0 +2013,6,27,4,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,-2,0,1631,5,0,0 +2013,8,27,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,5,0,2120,13,0,0 +2013,8,14,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2228,-1,0,608,-13,0,0 +2013,7,28,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1810,-1,0,1925,3,0,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,715,-5,0,843,-11,0,0 +2013,8,13,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,615,-6,0,900,-8,0,0 +2013,6,26,3,DL,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1505,-1,0,1702,17,1,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,940,2,0,1215,-4,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,3,0,1521,29,1,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,16,1,2130,-13,0,0 +2013,10,22,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1252,-6,0,1550,-13,0,0 +2013,4,18,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1130,21,1,1950,53,1,0 +2013,6,24,1,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,620,-3,0,1446,0,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,59,1,1235,52,1,0 +2013,6,7,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,8,0,1600,3,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1852,141,1,2259,139,1,0 +2013,10,11,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,30,1,1355,39,1,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-4,0,1448,-11,0,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,855,-2,0,1045,-23,0,0 +2013,4,28,7,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-4,0,1029,-5,0,0 +2013,9,11,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-8,0,929,-14,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,4,0,1600,-7,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,613,6,0,739,-3,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1720,72,1,2259,67,1,0 +2013,7,26,5,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,57,1,1311,48,1,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-3,0,945,2,0,0 +2013,7,12,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1855,-2,0,2009,1,0,0 +2013,4,17,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1640,11,0,1745,11,0,0 +2013,10,23,3,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1816,0,,2028,0,1,1 +2013,7,15,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,-6,0,1914,-7,0,0 +2013,10,27,7,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,725,-3,0,1018,14,0,0 +2013,6,15,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1802,-6,0,2130,-33,0,0 +2013,5,13,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2150,11,0,19,0,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1925,-3,0,2250,-16,0,0 +2013,8,5,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1504,28,1,1730,21,1,0 +2013,8,20,2,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,-2,0,1730,-2,0,0 +2013,7,4,4,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,755,-12,0,0 +2013,5,29,3,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,21,1,2105,12,0,0 +2013,4,12,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,616,-2,0,1000,20,1,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1743,4,0,2018,-7,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,-3,0,1158,-12,0,0 +2013,9,23,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,5,0,2110,-12,0,0 +2013,5,17,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,-6,0,838,-8,0,0 +2013,4,24,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,930,-1,0,1220,-3,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1445,22,1,1545,18,1,0 +2013,7,28,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,6,0,1325,-8,0,0 +2013,7,27,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2140,46,1,2358,21,1,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,-1,0,1348,-5,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1335,-1,0,1430,-3,0,0 +2013,7,4,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-15,0,1235,-15,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,27,1,915,4,0,0 +2013,6,29,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-1,0,726,-2,0,0 +2013,5,30,4,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-4,0,1005,-23,0,0 +2013,5,6,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1140,-3,0,1730,-15,0,0 +2013,8,27,2,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,727,-5,0,948,-11,0,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,-1,0,1935,-8,0,0 +2013,9,7,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1255,-11,0,1445,-18,0,0 +2013,4,4,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,31,1,2011,32,1,0 +2013,10,18,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,-5,0,1910,-13,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2320,-9,0,610,-13,0,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1620,-4,0,1705,-13,0,0 +2013,10,9,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1415,16,1,1535,15,1,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2010,2,0,2158,17,1,0 +2013,8,25,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1900,-3,0,2145,-38,0,0 +2013,5,22,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1339,82,1,1654,68,1,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1053,-20,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1940,-1,0,2137,-15,0,0 +2013,9,8,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-5,0,2110,-15,0,0 +2013,4,28,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1535,16,1,1835,6,0,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,9,0,1701,2,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2155,12,0,22,-3,0,0 +2013,8,15,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1415,-3,0,1551,-2,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1808,106,1,2027,193,1,0 +2013,10,29,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2045,18,1,2215,-2,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2150,2,0,27,2,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1528,-3,0,1655,66,1,0 +2013,5,23,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2126,75,1,547,75,1,0 +2013,4,9,2,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2005,36,1,2225,27,1,0 +2013,5,25,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-5,0,851,-13,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1656,196,1,1825,184,1,0 +2013,4,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1909,125,1,2035,128,1,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,40,1,1809,77,1,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1155,4,0,1325,-5,0,0 +2013,7,6,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,748,-8,0,1030,-11,0,0 +2013,5,3,5,YV,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-5,0,1337,-12,0,0 +2013,4,29,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-1,0,1146,-16,0,0 +2013,6,29,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1121,33,1,1929,53,1,0 +2013,8,11,7,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2000,-13,0,2258,-22,0,0 +2013,8,15,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,-7,0,1815,-20,0,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1850,0,0,2025,1,0,0 +2013,10,5,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1125,3,0,1240,3,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1905,41,1,2120,14,0,0 +2013,4,10,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,801,15,1,0 +2013,6,28,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,300,-5,0,658,-18,0,0 +2013,4,19,5,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1715,-1,0,1921,-6,0,0 +2013,10,29,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-3,0,735,-4,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1225,10,0,1349,14,0,0 +2013,9,17,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,-15,0,1840,-16,0,0 +2013,5,11,6,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1725,8,0,2000,-15,0,0 +2013,6,17,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1431,-7,0,1517,-11,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1510,7,0,1608,20,1,0 +2013,7,17,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2345,0,0,536,19,1,0 +2013,5,25,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,830,-1,0,1150,-20,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,3,0,2130,-26,0,0 +2013,8,24,6,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1440,1,0,1721,-12,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1845,28,1,19,23,1,0 +2013,9,30,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,13,0,1245,27,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,10,0,1520,7,0,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2145,36,1,15,38,1,0 +2013,8,7,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1315,1,0,1410,-4,0,0 +2013,10,31,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,-4,0,1045,-13,0,0 +2013,6,19,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1527,29,1,1739,24,1,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,810,8,0,1257,16,1,0 +2013,5,2,4,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1020,-5,0,1541,-11,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1741,-6,0,1920,-2,0,0 +2013,7,12,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1519,-6,0,1645,2,0,0 +2013,6,22,6,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1420,-12,0,2239,-25,0,0 +2013,5,1,3,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1410,-11,0,1734,-6,0,0 +2013,6,7,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-5,0,1143,6,0,0 +2013,4,24,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,653,-7,0,918,-5,0,0 +2013,5,5,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2005,-2,0,2250,3,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1220,-2,0,1315,-7,0,0 +2013,5,31,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-3,0,1655,-11,0,0 +2013,5,30,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,-5,0,1523,-14,0,0 +2013,4,12,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,26,1,1600,18,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2151,-5,0,2334,-13,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,720,-5,0,1015,-9,0,0 +2013,8,13,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-6,0,1435,16,1,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1745,-1,0,2025,2,0,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2035,15,1,2150,10,0,0 +2013,6,27,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1235,-11,0,1519,-19,0,0 +2013,6,29,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1640,28,1,1800,5,0,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1815,-1,0,1948,2,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,732,-3,0,1006,-18,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1555,-3,0,1700,-9,0,0 +2013,6,28,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-1,0,1720,3,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1630,32,1,1750,34,1,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,20,1,1904,27,1,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2135,-2,0,15,-6,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2150,-3,0,2335,-12,0,0 +2013,5,30,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,11,0,1612,5,0,0 +2013,10,8,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-11,0,1546,-2,0,0 +2013,10,30,3,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,-2,0,1435,-24,0,0 +2013,10,10,4,EV,13931,Norfolk International,Norfolk,VA,12953,LaGuardia,New York,NY,1830,81,1,2010,66,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1101,5,0,1221,0,0,0 +2013,10,25,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-5,0,1610,-12,0,0 +2013,9,30,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,805,-6,0,1102,-27,0,0 +2013,8,13,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-5,0,810,-17,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,24,1,1505,16,1,0 +2013,8,9,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,13,0,1310,4,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,650,-2,0,816,-15,0,0 +2013,7,6,6,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,650,0,0,935,-12,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,940,4,0,1151,0,0,0 +2013,4,19,5,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1610,37,1,1655,34,1,0 +2013,10,7,1,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1917,-9,0,2129,-12,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-9,0,1035,-4,0,0 +2013,4,19,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1240,28,1,1355,27,1,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,810,1,0,1140,-9,0,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,-7,0,2050,-5,0,0 +2013,10,18,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,0,0,1000,0,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1415,-3,0,1744,-17,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,-3,0,1631,-15,0,0 +2013,6,6,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,935,9,0,1100,2,0,0 +2013,9,17,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,0,0,855,-16,0,0 +2013,8,13,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,5,0,1510,-6,0,0 +2013,4,4,4,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,1905,1,0,2005,-5,0,0 +2013,7,30,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,44,1,2355,38,1,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,855,17,1,1338,11,0,0 +2013,10,6,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-3,0,1434,13,0,0 +2013,5,9,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,955,-6,0,1215,-13,0,0 +2013,8,22,4,EV,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1901,0,0,2027,0,0,0 +2013,9,13,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,701,-4,0,1100,-4,0,0 +2013,9,4,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,-2,0,1335,1,0,0 +2013,6,24,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2026,85,1,2158,78,1,0 +2013,4,3,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,750,-5,0,941,8,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,-1,0,1720,4,0,0 +2013,6,8,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-6,0,1741,-6,0,0 +2013,5,9,4,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,-5,0,1852,-8,0,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2250,-3,0,2358,-17,0,0 +2013,6,26,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1820,34,1,2200,9,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,-4,0,2055,-13,0,0 +2013,5,24,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,-2,0,1430,-1,0,0 +2013,4,1,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1745,-4,0,2036,-7,0,0 +2013,8,21,3,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2152,-8,0,2258,-18,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,79,1,2035,66,1,0 +2013,9,8,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,940,-5,0,1220,-12,0,0 +2013,5,29,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-5,0,1600,7,0,0 +2013,8,4,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2000,0,0,2210,-12,0,0 +2013,6,28,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1541,0,,1736,0,1,1 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1215,12,0,1545,13,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-2,0,2124,2,0,0 +2013,5,31,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1449,125,1,1510,166,1,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,35,1,1643,39,1,0 +2013,10,11,5,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,835,-1,0,1028,-18,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1405,0,0,1630,4,0,0 +2013,8,15,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-3,0,1508,-8,0,0 +2013,4,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1150,12,0,1350,18,1,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,706,-2,0,1001,14,0,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,1,0,1211,-8,0,0 +2013,6,15,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1316,-8,0,1425,-11,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,56,1,1620,54,1,0 +2013,8,19,1,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,546,64,1,746,86,1,0 +2013,6,24,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,630,109,1,840,101,1,0 +2013,10,10,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1215,8,0,1400,4,0,0 +2013,5,3,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,813,-5,0,1035,-22,0,0 +2013,9,23,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,-3,0,917,-7,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1045,-5,0,1924,-29,0,0 +2013,4,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1315,0,0,1440,-12,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,844,-2,0,959,5,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1825,22,1,1915,9,0,0 +2013,10,10,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1639,-2,0,1935,4,0,0 +2013,6,30,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,15,1,1826,2,0,0 +2013,10,25,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,16,1,1537,18,1,0 +2013,10,4,5,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,725,-6,0,752,-18,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,24,1,2020,21,1,0 +2013,9,24,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,845,-2,0,905,-23,0,0 +2013,8,25,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,-3,0,829,-10,0,0 +2013,4,21,7,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1717,-1,0,2039,-6,0,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1557,9,0,1747,18,1,0 +2013,10,5,6,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,3,0,1241,-7,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,700,-3,0,945,-51,0,0 +2013,4,19,5,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-6,0,1140,-22,0,0 +2013,8,5,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1719,16,1,1823,7,0,0 +2013,10,26,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,1,0,1905,4,0,0 +2013,7,3,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,31,1,1645,62,1,0 +2013,8,2,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,745,2,0,905,10,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2042,-4,0,2200,-13,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1840,25,1,1958,17,1,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-3,0,1451,0,0,0 +2013,9,5,4,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2040,31,1,2221,17,1,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2100,-1,0,2235,2,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,-6,0,1620,-28,0,0 +2013,4,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,12,0,1121,19,1,0 +2013,10,4,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1150,-7,0,1445,-12,0,0 +2013,6,8,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2245,-4,0,111,-6,0,0 +2013,8,21,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-9,0,2044,-22,0,0 +2013,8,30,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,0,0,2005,-17,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,28,1,2200,23,1,0 +2013,7,17,3,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,-4,0,2357,-19,0,0 +2013,4,7,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-5,0,854,-12,0,0 +2013,6,20,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-6,0,1458,-10,0,0 +2013,7,24,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2130,-12,0,2245,-10,0,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,-6,0,2151,-18,0,0 +2013,5,15,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1709,-17,0,0 +2013,6,3,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1829,-9,0,2109,-20,0,0 +2013,9,25,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,-4,0,1235,-6,0,0 +2013,6,5,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1445,6,0,1600,-6,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,855,-2,0,1005,1,0,0 +2013,5,5,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1215,70,1,1345,67,1,0 +2013,8,5,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1220,-5,0,1420,-18,0,0 +2013,10,25,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1535,30,1,1635,23,1,0 +2013,4,8,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-10,0,1040,-14,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1105,-4,0,1210,-13,0,0 +2013,4,22,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1110,50,1,1235,74,1,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1845,-3,0,2215,-3,0,0 +2013,8,26,1,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2310,-13,0,730,1,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1220,-6,0,1240,-10,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1209,-4,0,1346,-10,0,0 +2013,6,14,5,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1640,-6,0,1751,6,0,0 +2013,8,18,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,845,-5,0,1215,-16,0,0 +2013,8,9,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-4,0,604,-1,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,720,2,0,919,-6,0,0 +2013,7,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1420,24,1,1545,29,1,0 +2013,7,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-6,0,935,2,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,-5,0,955,6,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1510,-3,0,1749,-9,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2150,8,0,2215,3,0,0 +2013,10,14,1,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-6,0,810,-11,0,0 +2013,8,30,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,742,-4,0,915,-4,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,6,0,1638,-1,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1757,25,1,1950,7,0,0 +2013,10,31,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,3,0,1205,1,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1952,1,0,2320,-7,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1810,2,0,2047,-6,0,0 +2013,7,29,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,7,0,1350,-8,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,14,0,1829,4,0,0 +2013,5,31,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,2,0,840,-8,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1830,46,1,1920,39,1,0 +2013,7,14,7,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-6,0,1222,-32,0,0 +2013,8,6,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1159,20,1,1527,5,0,0 +2013,6,8,6,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,-3,0,949,-13,0,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1250,54,1,1845,41,1,0 +2013,5,5,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1350,0,0,1515,-3,0,0 +2013,10,5,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,9,0,1851,-15,0,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1015,7,0,1315,-5,0,0 +2013,5,31,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,-3,0,2010,-16,0,0 +2013,7,17,3,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-2,0,1223,-11,0,0 +2013,10,5,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,4,0,1915,20,1,0 +2013,7,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2010,-3,0,2039,-16,0,0 +2013,9,24,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,2,0,2250,-10,0,0 +2013,7,10,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,4,0,1025,-1,0,0 +2013,5,9,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1445,-2,0,1945,-1,0,0 +2013,6,23,7,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,0,0,1104,-13,0,0 +2013,9,27,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-3,0,903,8,0,0 +2013,7,20,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,19,1,725,9,0,0 +2013,10,16,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2154,-3,0,2306,-6,0,0 +2013,4,18,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1755,44,1,2030,26,1,0 +2013,5,13,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1115,2,0,1235,-7,0,0 +2013,7,20,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,3,0,1720,39,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,34,1,2030,27,1,0 +2013,6,23,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1420,-1,0,1559,-12,0,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1630,16,1,1740,7,0,0 +2013,4,29,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-5,0,1610,-12,0,0 +2013,5,22,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1747,0,,1900,0,1,1 +2013,7,1,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2359,-7,0,555,-21,0,0 +2013,10,6,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,-3,0,1853,2,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-3,0,2335,-9,0,0 +2013,8,27,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,939,-9,0,1208,-20,0,0 +2013,7,31,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1755,-12,0,1935,-22,0,0 +2013,5,29,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-9,0,1520,-22,0,0 +2013,6,19,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,23,1,1856,13,0,0 +2013,8,2,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,0,0,1303,-11,0,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,-8,0,956,-26,0,0 +2013,8,24,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1545,-7,0,1655,-6,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1644,2,0,1800,0,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,715,0,0,847,-10,0,0 +2013,5,28,2,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-9,0,1020,-25,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1335,2,0,1520,-5,0,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1501,-6,0,1553,5,0,0 +2013,8,8,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,88,1,1919,159,1,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,604,9,0,850,16,1,0 +2013,6,12,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1330,7,0,1410,2,0,0 +2013,7,18,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,958,-4,0,0 +2013,10,21,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,-3,0,1931,11,0,0 +2013,7,31,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1038,-2,0,1144,-8,0,0 +2013,9,12,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1350,-3,0,1540,25,1,0 +2013,8,27,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,900,-8,0,1010,-16,0,0 +2013,9,29,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,1519,-16,0,0 +2013,6,13,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,10,0,1550,11,0,0 +2013,8,11,7,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,194,1,1019,172,1,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1640,0,0,53,-13,0,0 +2013,4,2,2,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1900,95,1,2005,82,1,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,-2,0,925,-7,0,0 +2013,5,10,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2115,23,1,2325,5,0,0 +2013,6,4,2,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,800,58,1,1024,27,1,0 +2013,10,28,1,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1507,-3,0,1738,-2,0,0 +2013,7,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1744,11,0,1847,13,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1435,5,0,1613,5,0,0 +2013,6,20,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,15,1,2056,18,1,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1505,-4,0,1829,-12,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1425,-2,0,1621,1,0,0 +2013,9,16,1,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,820,-4,0,1121,-16,0,0 +2013,6,26,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,904,5,0,0 +2013,6,18,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1058,-3,0,1915,1,0,0 +2013,6,3,1,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,7,0,1135,17,1,0 +2013,10,15,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,730,-22,0,0 +2013,6,26,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-2,0,810,-8,0,0 +2013,8,21,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,5,0,2130,5,0,0 +2013,7,23,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1020,-1,0,1150,-5,0,0 +2013,6,27,4,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,745,-2,0,850,-7,0,0 +2013,9,9,1,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1645,-5,0,1913,-6,0,0 +2013,8,23,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-10,0,1508,-2,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,-5,0,2130,-12,0,0 +2013,10,18,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,730,26,1,820,93,1,0 +2013,9,18,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-7,0,806,-17,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,27,1,1255,44,1,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1240,-6,0,1535,-22,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,4,0,2356,-3,0,0 +2013,8,17,6,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1130,-6,0,1837,-5,0,0 +2013,9,12,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1520,-2,0,1630,-8,0,0 +2013,6,23,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-3,0,1228,-16,0,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,2,0,1152,-1,0,0 +2013,6,2,7,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,610,-1,0,737,-12,0,0 +2013,10,5,6,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1109,-2,0,1408,-16,0,0 +2013,10,9,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,14,0,1550,-2,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,2,0,1736,20,1,0 +2013,8,2,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1535,62,1,1725,41,1,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,0,0,2305,-1,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,815,35,1,1045,44,1,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-1,0,1919,-10,0,0 +2013,8,24,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1117,2,0,1152,13,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1725,-3,0,2024,12,0,0 +2013,4,7,7,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,707,4,0,954,0,0,0 +2013,8,10,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1250,61,1,1419,57,1,0 +2013,10,1,2,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-15,0,1404,-11,0,0 +2013,9,15,7,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1725,15,1,1840,-9,0,0 +2013,10,7,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1822,9,0,1925,7,0,0 +2013,4,21,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,955,-4,0,1051,-12,0,0 +2013,7,14,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,925,-5,0,1035,-8,0,0 +2013,6,13,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,-6,0,1946,82,1,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,17,1,1201,6,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2130,8,0,2324,-21,0,0 +2013,4,3,3,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,-7,0,624,-11,0,0 +2013,10,24,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1535,256,1,1801,260,1,0 +2013,8,14,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,13,0,1500,-9,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,835,-1,0,1139,-14,0,0 +2013,4,24,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,700,-4,0,946,2,0,0 +2013,7,24,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,952,-18,0,0 +2013,5,5,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1525,41,1,1905,34,1,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,7,0,1940,-5,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1534,0,0,1945,1,0,0 +2013,6,15,6,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1018,48,1,1140,32,1,0 +2013,8,25,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,635,14,0,1230,0,0,0 +2013,7,27,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,2,0,1515,-8,0,0 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1709,-4,0,2318,-4,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2300,-5,0,2301,-13,0,0 +2013,7,11,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,175,1,1825,180,1,0 +2013,6,11,2,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1120,-4,0,1242,-9,0,0 +2013,4,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,830,-3,0,937,-8,0,0 +2013,5,13,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1002,7,0,1134,12,0,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,540,-2,0,1145,-24,0,0 +2013,5,31,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1503,9,0,1750,-22,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,0,0,1620,-2,0,0 +2013,8,27,2,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-4,0,1612,-19,0,0 +2013,8,10,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1637,16,1,1810,24,1,0 +2013,7,3,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-6,0,955,-1,0,0 +2013,10,25,5,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,548,-6,0,747,-7,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1800,5,0,1925,6,0,0 +2013,10,20,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1455,17,1,1710,0,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,0,0,2220,-5,0,0 +2013,9,22,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1731,-1,0,1955,-5,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,12,0,1323,22,1,0 +2013,5,11,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,917,4,0,1208,2,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,1,0,2059,-11,0,0 +2013,7,27,6,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,0,0,920,-6,0,0 +2013,7,24,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,0,0,1320,-3,0,0 +2013,5,15,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2048,0,,2303,0,1,1 +2013,4,4,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,0,0,1613,-17,0,0 +2013,5,11,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,755,-3,0,932,0,0,0 +2013,10,30,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1656,13,0,1758,20,1,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,1,0,1434,-1,0,0 +2013,5,7,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1517,12,0,0 +2013,4,13,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-4,0,1710,34,1,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,7,0,2045,-4,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1550,4,0,2125,-14,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1630,-4,0,1826,-2,0,0 +2013,6,29,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1235,4,0,1345,1,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,1,0,2200,22,1,0 +2013,10,11,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1715,36,1,1843,22,1,0 +2013,6,9,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1345,0,0,1535,-5,0,0 +2013,7,27,6,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1640,50,1,1830,39,1,0 +2013,8,20,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,1,0,1846,-45,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1920,56,1,2157,52,1,0 +2013,5,23,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-1,0,907,3,0,0 +2013,8,1,4,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1652,26,1,1751,26,1,0 +2013,8,28,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,-4,0,1946,-9,0,0 +2013,4,21,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,0,0,1910,0,0,0 +2013,7,11,4,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1335,1,0,1515,-9,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,1,0,1041,-3,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1115,16,1,1320,-3,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1800,-3,0,1915,0,0,0 +2013,7,25,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-4,0,1019,3,0,0 +2013,5,3,5,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1942,-8,0,2232,-26,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,0,0,1615,0,0,0 +2013,8,26,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-3,0,2005,6,0,0 +2013,5,23,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,133,1,2145,108,1,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,-1,0,1842,6,0,0 +2013,4,18,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1345,0,0,1718,57,1,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,-5,0,1130,-21,0,0 +2013,5,23,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,26,1,1015,70,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1235,2,0,1431,6,0,0 +2013,5,14,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2002,-6,0,2214,-14,0,0 +2013,4,19,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1345,37,1,1505,34,1,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1010,6,0,1215,11,0,0 +2013,7,22,1,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,6,0,1905,11,0,0 +2013,5,30,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1134,-7,0,1300,-14,0,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1700,3,0,2150,-5,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1540,1,0,2320,9,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-6,0,1006,-23,0,0 +2013,5,27,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,1315,-4,0,0 +2013,9,10,2,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1800,-14,0,1950,-28,0,0 +2013,4,12,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,0,0,745,9,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,908,117,1,1152,102,1,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,741,-1,0,1042,7,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2104,29,1,14,32,1,0 +2013,4,1,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1323,0,,1536,0,1,1 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-6,0,1335,-22,0,0 +2013,8,25,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,0,0,1315,-14,0,0 +2013,9,3,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1050,4,0,1145,-1,0,0 +2013,7,29,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-7,0,2148,-17,0,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,935,-2,0,1250,-8,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,0,0,1505,2,0,0 +2013,5,3,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,1,0,1410,4,0,0 +2013,7,8,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,934,18,1,1036,5,0,0 +2013,7,22,1,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1744,72,1,2026,61,1,0 +2013,9,3,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,-5,0,718,0,0,0 +2013,10,12,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,-5,0,1115,-3,0,0 +2013,5,24,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,935,10,0,1300,5,0,0 +2013,8,16,5,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,14,0,10,1,0,0 +2013,7,4,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-8,0,1250,-11,0,0 +2013,4,18,4,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1005,0,0,1210,-8,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1350,1,0,1555,-7,0,0 +2013,6,14,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1419,17,1,1659,7,0,0 +2013,5,12,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-5,0,1353,8,0,0 +2013,4,9,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1456,-14,0,1703,2,0,0 +2013,7,21,7,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,645,-2,0,740,-17,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1735,3,0,2003,-15,0,0 +2013,8,10,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,3,0,1124,-5,0,0 +2013,4,27,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1300,-2,0,1415,7,0,0 +2013,7,7,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,9,0,1810,8,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1900,17,1,2100,14,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,3,0,1105,-14,0,0 +2013,6,9,7,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-7,0,1345,-20,0,0 +2013,10,14,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1656,-7,0,1932,-8,0,0 +2013,8,16,5,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-4,0,2041,-25,0,0 +2013,9,5,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1010,1,0,1112,7,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1513,0,0,1624,-18,0,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,808,-3,0,939,-5,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2115,0,0,2219,-7,0,0 +2013,6,11,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,845,-7,0,1104,-12,0,0 +2013,8,12,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-5,0,1107,-1,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,857,-4,0,1340,-9,0,0 +2013,10,25,5,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-2,0,2030,-5,0,0 +2013,6,15,6,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-9,0,1634,-8,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2020,2,0,2230,-3,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1810,-5,0,2034,-13,0,0 +2013,8,5,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1155,12,0,1415,28,1,0 +2013,4,25,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-6,0,1248,-17,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,34,1,1525,27,1,0 +2013,5,30,4,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1910,20,1,2050,18,1,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1249,-4,0,1550,-13,0,0 +2013,7,18,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,13,0,2240,11,0,0 +2013,6,1,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1213,0,0,1353,-11,0,0 +2013,4,15,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,745,0,0,950,-7,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-6,0,1306,-10,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1305,11,0,1715,8,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1710,0,0,2340,-20,0,0 +2013,8,16,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1837,13,0,2229,4,0,0 +2013,8,30,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,545,-4,0,855,-28,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1625,17,1,1908,-12,0,0 +2013,5,4,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-12,0,1501,-11,0,0 +2013,8,9,5,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1440,5,0,1725,-6,0,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,8,0,1922,-11,0,0 +2013,8,22,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,163,1,1900,173,1,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,0,0,1415,11,0,0 +2013,6,1,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,-11,0,2055,-18,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-3,0,824,-7,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1945,20,1,2128,6,0,0 +2013,10,9,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-3,0,839,-3,0,0 +2013,6,2,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-5,0,856,-7,0,0 +2013,5,15,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,800,-1,0,925,-4,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,55,1,1450,42,1,0 +2013,4,4,4,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1925,-8,0,2120,1,0,0 +2013,7,2,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,0,0,1505,-23,0,0 +2013,9,9,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1830,-1,0,1925,-4,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,840,0,0,1010,-3,0,0 +2013,9,21,6,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1112,-16,0,1442,-30,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,0,0,1104,-4,0,0 +2013,7,20,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,88,1,2005,68,1,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,18,1,5,27,1,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,-4,0,1506,-9,0,0 +2013,5,21,2,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1920,13,0,2058,4,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,705,3,0,854,-8,0,0 +2013,8,15,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,21,1,1325,25,1,0 +2013,10,14,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,945,-2,0,1317,-20,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1005,7,0,1335,3,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,-2,0,1740,-11,0,0 +2013,6,3,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-10,0,1555,-25,0,0 +2013,7,4,4,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1430,-10,0,1644,-18,0,0 +2013,10,2,3,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1805,25,1,2105,37,1,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,30,1,1150,24,1,0 +2013,10,20,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,31,1,2030,31,1,0 +2013,4,6,6,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,945,-2,0,1110,-3,0,0 +2013,4,19,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-3,0,1223,-6,0,0 +2013,10,18,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,2,0,926,1,0,0 +2013,8,23,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1317,0,,1610,0,1,1 +2013,9,14,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,930,-2,0,1755,-6,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1311,-5,0,1456,-19,0,0 +2013,8,1,4,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1521,156,1,1644,160,1,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1224,32,1,1530,-7,0,0 +2013,7,15,1,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1406,-6,0,1620,-24,0,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1530,33,1,1630,30,1,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1500,16,1,1715,5,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,940,5,0,1110,6,0,0 +2013,6,25,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2040,-1,0,2115,0,0,0 +2013,6,5,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2235,-4,0,436,-19,0,0 +2013,8,8,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1235,76,1,1417,68,1,0 +2013,10,19,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,4,0,1430,8,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,820,-2,0,1125,10,0,0 +2013,7,26,5,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1442,-9,0,1615,0,0,0 +2013,5,10,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,-5,0,1105,-8,0,0 +2013,4,14,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-3,0,1700,-16,0,0 +2013,10,23,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,900,-1,0,1712,2,0,0 +2013,9,22,7,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1841,-5,0,1940,-16,0,0 +2013,6,17,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1505,17,1,1749,8,0,0 +2013,4,7,7,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1017,-2,0,1330,-18,0,0 +2013,8,11,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-10,0,1949,-25,0,0 +2013,10,2,3,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,-6,0,1038,-2,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1630,-3,0,1945,15,1,0 +2013,7,8,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,935,-3,0,1221,-16,0,0 +2013,9,25,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1320,0,0,1415,-2,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,4,0,1525,1,0,0 +2013,7,30,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-11,0,1938,-17,0,0 +2013,6,7,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1850,8,0,1955,12,0,0 +2013,9,12,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1340,2,0,1405,1,0,0 +2013,5,3,5,OO,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1430,4,0,1610,-2,0,0 +2013,4,25,4,9E,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,-10,0,2110,-30,0,0 +2013,7,27,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,-3,0,833,-6,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,-4,0,1635,2,0,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-3,0,1120,-21,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1850,2,0,2345,-14,0,0 +2013,5,16,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1230,7,0,1525,-5,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,705,4,0,941,3,0,0 +2013,10,19,6,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1620,10,0,1825,-18,0,0 +2013,4,2,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1350,51,1,1652,49,1,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1030,83,1,1107,79,1,0 +2013,6,28,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-5,0,1119,-17,0,0 +2013,6,22,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,44,1,2233,37,1,0 +2013,6,26,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1418,-2,0,2248,-18,0,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1240,2,0,1600,-5,0,0 +2013,5,29,3,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,800,-6,0,1050,-29,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,112,1,2040,96,1,0 +2013,5,27,1,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-1,0,1859,6,0,0 +2013,10,17,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-6,0,1659,-11,0,0 +2013,9,12,4,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1720,0,,1843,0,1,1 +2013,6,22,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1340,-1,0,1505,1,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,900,1,0,1105,-11,0,0 +2013,6,24,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1837,71,1,2229,56,1,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,8,0,1810,15,1,0 +2013,10,27,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,740,-7,0,950,2,0,0 +2013,4,5,5,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,-4,0,1505,-6,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1756,1,0,1929,-2,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,2359,-1,0,454,4,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1105,0,0,1340,-8,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1555,12,0,1655,13,0,0 +2013,5,26,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,615,-6,0,717,23,1,0 +2013,7,11,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1310,-11,0,1432,2,0,0 +2013,7,20,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-1,0,1440,-6,0,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,0,0,1635,-10,0,0 +2013,4,14,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-7,0,1111,-16,0,0 +2013,5,9,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,28,1,2129,34,1,0 +2013,5,1,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-2,0,1624,-2,0,0 +2013,4,8,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1115,-3,0,1215,-7,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1240,29,1,1515,29,1,0 +2013,7,10,3,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1330,16,1,1444,39,1,0 +2013,4,24,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,9,0,1835,-3,0,0 +2013,5,13,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-5,0,1610,1,0,0 +2013,4,3,3,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1515,-2,0,0 +2013,8,10,6,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1645,-5,0,1915,-4,0,0 +2013,10,9,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,727,-4,0,1048,-7,0,0 +2013,8,22,4,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,35,1,1305,22,1,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,12,0,937,2,0,0 +2013,8,29,4,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,10,0,2045,-9,0,0 +2013,9,10,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,930,-6,0,1150,-35,0,0 +2013,6,26,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,755,40,1,1048,25,1,0 +2013,9,26,4,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,615,-3,0,917,-6,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1450,11,0,1705,47,1,0 +2013,7,31,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,4,0,1635,6,0,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,20,1,1540,15,1,0 +2013,6,22,6,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2150,-2,0,2334,-11,0,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-5,0,2334,-30,0,0 +2013,8,31,6,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,-4,0,1126,-7,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-7,0,1535,-20,0,0 +2013,9,20,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1433,-11,0,1945,27,1,0 +2013,8,24,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,845,-1,0,1128,-11,0,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1755,-2,0,1924,-10,0,0 +2013,7,15,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,933,-4,0,1215,24,1,0 +2013,8,11,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1945,-1,0,2115,13,0,0 +2013,10,8,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1621,-2,0,2208,-13,0,0 +2013,9,14,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,846,-22,0,0 +2013,10,5,6,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,12,0,2130,14,0,0 +2013,9,13,5,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1518,1,0,1809,-5,0,0 +2013,9,3,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2211,-5,0,2330,-3,0,0 +2013,5,14,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,2020,19,1,2118,8,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1256,-1,0,1422,-4,0,0 +2013,4,9,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,853,-10,0,1120,-21,0,0 +2013,10,28,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-5,0,1004,-3,0,0 +2013,9,10,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1130,9,0,1400,8,0,0 +2013,6,28,5,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,2335,-4,0,641,-11,0,0 +2013,8,13,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-5,0,1516,-5,0,0 +2013,5,13,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,844,3,0,0 +2013,10,5,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,705,-1,0,820,-3,0,0 +2013,8,30,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,28,1,1730,41,1,0 +2013,9,2,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,11,0,2211,2,0,0 +2013,6,27,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1800,65,1,1905,44,1,0 +2013,9,23,1,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,955,4,0,1500,-8,0,0 +2013,6,22,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1737,-1,0,1912,-3,0,0 +2013,10,27,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,804,-5,0,1351,-14,0,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1215,-1,0,1715,-24,0,0 +2013,5,22,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1507,-4,0,1555,6,0,0 +2013,5,20,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,17,1,1850,25,1,0 +2013,10,26,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-2,0,1156,2,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1550,-3,0,1833,-26,0,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,910,9,0,1105,-7,0,0 +2013,9,7,6,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1835,-6,0,2110,-4,0,0 +2013,8,2,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-10,0,1235,-1,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,-5,0,1705,10,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1550,41,1,1835,41,1,0 +2013,8,30,5,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-2,0,1620,-12,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,99,1,1610,94,1,0 +2013,8,26,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-9,0,930,-1,0,0 +2013,7,4,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1349,-8,0,1520,-8,0,0 +2013,4,3,3,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,112,1,1640,84,1,0 +2013,10,25,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2140,-7,0,2259,-1,0,0 +2013,4,13,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1227,-1,0,1550,-16,0,0 +2013,9,22,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1140,23,1,1250,19,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,-1,0,1215,-6,0,0 +2013,6,2,7,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,950,50,1,1413,56,1,0 +2013,7,7,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,35,1,838,35,1,0 +2013,5,17,5,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2241,14,0,2359,0,0,0 +2013,9,26,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,901,-5,0,1013,-9,0,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,740,-2,0,1004,-10,0,0 +2013,4,6,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-8,0,1109,-14,0,0 +2013,10,28,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-2,0,2042,-27,0,0 +2013,5,4,6,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,25,1,1950,10,0,0 +2013,7,18,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,21,1,1843,11,0,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1059,-8,0,1117,-17,0,0 +2013,10,31,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-5,0,2101,-12,0,0 +2013,7,15,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,915,-3,0,1035,5,0,0 +2013,10,14,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1355,11,0,1521,-1,0,0 +2013,10,28,1,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1650,-3,0,1935,-8,0,0 +2013,7,4,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-1,0,1506,2,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,905,14,0,1205,18,1,0 +2013,8,23,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1448,-5,0,1653,-19,0,0 +2013,8,6,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,1954,-10,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1110,7,0,1315,-10,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1630,5,0,1859,-18,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,0,0,1823,2,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,-3,0,1615,-9,0,0 +2013,9,21,6,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,-1,0,5,-16,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,550,-5,0,1150,-27,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,645,0,0,818,-4,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,825,-6,0,1011,-24,0,0 +2013,4,26,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1846,92,1,2014,79,1,0 +2013,4,17,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,-1,0,1615,6,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,820,-6,0,945,-16,0,0 +2013,9,1,7,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,-6,0,1605,-15,0,0 +2013,9,2,1,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,33,1,1955,31,1,0 +2013,8,10,6,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1858,-14,0,2028,0,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,-4,0,2048,4,0,0 +2013,6,16,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1355,9,0,2206,-12,0,0 +2013,10,16,3,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1855,6,0,2054,-3,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1920,-1,0,55,-11,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1740,16,1,30,20,1,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,0,0,1200,-2,0,0 +2013,9,11,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1300,14,0,1450,11,0,0 +2013,9,8,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1205,0,0,1325,2,0,0 +2013,10,20,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-6,0,1530,4,0,0 +2013,10,5,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,-2,0,1513,1,0,0 +2013,6,3,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,-1,0,1505,2,0,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,800,-2,0,1106,2,0,0 +2013,7,28,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1745,-1,0,2117,18,1,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,0,0,1603,6,0,0 +2013,9,3,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,10,0,1435,21,1,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1535,0,,1655,0,1,1 +2013,4,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,905,234,1,1032,225,1,0 +2013,10,29,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1059,-7,0,1254,-22,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,3,0,955,-14,0,0 +2013,6,4,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1520,3,0,1625,-7,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,900,-1,0,1039,-6,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1717,27,1,2043,1,0,0 +2013,8,11,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,-5,0,1036,-16,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-6,0,2234,-11,0,0 +2013,9,13,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2007,0,,2105,0,1,1 +2013,8,16,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1240,0,0,1350,-13,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-6,0,837,-15,0,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,745,28,1,1040,36,1,0 +2013,4,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2110,71,1,2358,68,1,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1735,0,0,2029,-35,0,0 +2013,7,11,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1114,0,0,1259,6,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,-2,0,2122,-12,0,0 +2013,5,20,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,857,-2,0,1114,-14,0,0 +2013,5,25,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,3,0,1830,-8,0,0 +2013,4,7,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1515,37,1,1645,28,1,0 +2013,7,4,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1555,-2,0,1800,-12,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,4,0,1125,5,0,0 +2013,5,2,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1935,24,1,2059,24,1,0 +2013,4,2,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-7,0,1435,1,0,0 +2013,5,4,6,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,615,0,0,909,7,0,0 +2013,9,10,2,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1910,103,1,2221,72,1,0 +2013,4,13,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1506,0,0,2347,-5,0,0 +2013,10,19,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-11,0,935,4,0,0 +2013,9,6,5,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1750,-6,0,1937,-23,0,0 +2013,10,25,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1020,6,0,1324,5,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2010,69,1,2250,67,1,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,9,0,1556,2,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-11,0,2141,-3,0,0 +2013,5,11,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1720,-3,0,1847,-11,0,0 +2013,9,20,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1456,-6,0,0 +2013,4,9,2,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1640,-4,0,1925,12,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,14,0,852,6,0,0 +2013,7,28,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,-6,0,1630,-24,0,0 +2013,7,31,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,2026,-11,0,2328,-20,0,0 +2013,8,31,6,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,905,-3,0,1050,-19,0,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1001,3,0,1258,24,1,0 +2013,9,28,6,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,-3,0,2000,-16,0,0 +2013,8,8,4,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1855,12,0,2000,12,0,0 +2013,10,2,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1355,-8,0,1440,-12,0,0 +2013,5,4,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,700,-2,0,840,-18,0,0 +2013,7,18,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1005,65,1,1133,46,1,0 +2013,9,14,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-2,0,1354,-13,0,0 +2013,4,14,7,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1913,8,0,2102,-6,0,0 +2013,6,25,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-2,0,925,-16,0,0 +2013,8,10,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1908,-13,0,2011,-27,0,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,602,-8,0,727,-11,0,0 +2013,5,27,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1721,68,1,1850,67,1,0 +2013,8,13,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1649,220,1,1940,215,1,0 +2013,6,17,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1110,-7,0,1240,5,0,0 +2013,6,17,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,4,0,1154,8,0,0 +2013,9,28,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1525,-7,0,1700,-7,0,0 +2013,9,27,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1435,22,1,1625,25,1,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,-3,0,2154,-20,0,0 +2013,7,24,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-5,0,1911,-8,0,0 +2013,4,28,7,EV,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,842,-6,0,1032,-3,0,0 +2013,10,27,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-9,0,2115,-24,0,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1521,14,0,1819,10,0,0 +2013,4,11,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,735,-1,0,1045,-19,0,0 +2013,7,2,2,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1115,2,0,1214,-10,0,0 +2013,8,1,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,-1,0,730,-4,0,0 +2013,5,13,1,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-11,0,557,-17,0,0 +2013,4,25,4,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,705,-6,0,819,-22,0,0 +2013,6,17,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-1,0,1619,4,0,0 +2013,9,14,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1730,-4,0,1926,-25,0,0 +2013,9,11,3,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,735,-6,0,1006,-41,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1016,-5,0,1153,-8,0,0 +2013,9,6,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1700,17,1,1830,10,0,0 +2013,8,19,1,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1739,-12,0,1820,-27,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,1000,3,0,1710,1,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,958,0,0,1133,16,1,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1620,27,1,1845,22,1,0 +2013,7,29,1,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-8,0,715,-9,0,0 +2013,4,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,740,2,0,1135,-14,0,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,2,0,1115,-18,0,0 +2013,5,26,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,-8,0,1825,-14,0,0 +2013,6,10,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1028,10,0,1426,-7,0,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1700,-7,0,2011,-25,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,0,0,1905,-1,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,-4,0,2359,-14,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,958,-2,0,1245,3,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1250,3,0,1405,-1,0,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1855,-5,0,2020,-6,0,0 +2013,10,27,7,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,959,-8,0,1144,1,0,0 +2013,6,1,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1430,14,0,1540,21,1,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,850,3,0,1415,2,0,0 +2013,10,28,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1620,19,1,1913,22,1,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1230,-3,0,1235,-9,0,0 +2013,10,17,4,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1515,10,0,1829,1,0,0 +2013,7,22,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,0,0,1225,-2,0,0 +2013,9,27,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,33,1,1302,28,1,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-1,0,937,-8,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,919,0,0,1325,-18,0,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1540,30,1,1700,23,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1945,58,1,2205,67,1,0 +2013,4,10,3,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2005,287,1,2225,292,1,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1835,23,1,1940,19,1,0 +2013,7,12,5,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1420,13,0,1714,4,0,0 +2013,6,6,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,25,1,1211,38,1,0 +2013,7,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-1,0,1530,-5,0,0 +2013,6,7,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2110,-8,0,2240,10,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2007,-5,0,2121,8,0,0 +2013,8,16,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1434,-10,0,1640,-22,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-1,0,1440,6,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1518,11,0,1710,-4,0,0 +2013,4,27,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,832,-5,0,1659,2,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,751,5,0,1304,-2,0,0 +2013,9,22,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1818,193,1,1959,189,1,0 +2013,6,27,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,2110,14,0,2140,8,0,0 +2013,5,30,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,4,0,2110,-32,0,0 +2013,8,28,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1005,-15,0,0 +2013,4,16,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,945,-10,0,1131,-9,0,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1530,6,0,1810,2,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2105,13,0,2240,10,0,0 +2013,8,14,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,555,-9,0,723,-18,0,0 +2013,9,9,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,-12,0,1232,4,0,0 +2013,4,1,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1859,31,1,2157,23,1,0 +2013,10,22,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1845,-6,0,1955,-16,0,0 +2013,7,8,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,-8,0,838,-12,0,0 +2013,9,26,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,650,-1,0,0 +2013,7,18,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-9,0,1710,-11,0,0 +2013,9,6,5,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,754,-3,0,1059,15,1,0 +2013,4,10,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-7,0,1434,-20,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,835,-5,0,950,-11,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,0,0,1056,-19,0,0 +2013,7,15,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1655,18,1,1710,8,0,0 +2013,7,14,7,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1904,-3,0,2150,-10,0,0 +2013,9,24,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,809,-24,0,0 +2013,9,11,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,-4,0,828,1,0,0 +2013,9,15,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1749,16,1,1955,20,1,0 +2013,9,15,7,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1531,3,0,1915,-12,0,0 +2013,7,30,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1048,-9,0,1422,-17,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1025,-3,0,1400,-19,0,0 +2013,10,15,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1232,-6,0,1530,-16,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1550,4,0,1820,-3,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,600,-1,0,750,-17,0,0 +2013,10,15,2,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-2,0,1715,0,0,0 +2013,7,26,5,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,615,20,1,1225,20,1,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2005,4,0,2120,8,0,0 +2013,10,12,6,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1829,4,0,1949,-2,0,0 +2013,7,31,3,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-4,0,1305,3,0,0 +2013,8,1,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,19,1,1555,22,1,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1555,-3,0,2055,-22,0,0 +2013,8,17,6,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1904,52,1,2109,33,1,0 +2013,6,30,7,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,42,1,1838,33,1,0 +2013,10,13,7,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,625,-2,0,940,-16,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,2150,7,0,2341,17,1,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,16,1,1227,69,1,0 +2013,4,10,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,-1,0,1926,-8,0,0 +2013,7,6,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,0,0,1155,-17,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-1,0,2325,-5,0,0 +2013,9,19,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,750,-2,0,1115,5,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,722,-6,0,1559,-33,0,0 +2013,9,17,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1310,-9,0,1515,10,0,0 +2013,8,19,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-2,0,947,-31,0,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1551,-9,0,1845,-6,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1750,-1,0,1931,-10,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-4,0,2158,-18,0,0 +2013,8,17,6,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,655,6,0,917,14,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1956,3,0,2132,-7,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,-2,0,1301,-29,0,0 +2013,7,8,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,58,1,1625,60,1,0 +2013,7,31,3,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1150,-3,0,1400,-15,0,0 +2013,9,3,2,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,715,-8,0,0 +2013,7,4,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,-3,0,1525,-2,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,915,8,0,1625,32,1,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,825,19,1,1000,33,1,0 +2013,6,29,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,3,0,2020,-3,0,0 +2013,8,24,6,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1120,0,0,1417,1,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,-7,0,1150,41,1,0 +2013,8,10,6,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1526,3,0,1615,-3,0,0 +2013,8,18,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,0,1510,-3,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1415,-1,0,1635,-10,0,0 +2013,10,19,6,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1745,-2,0,2035,-32,0,0 +2013,5,21,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,750,5,0,1009,8,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1205,89,1,1339,53,1,0 +2013,10,21,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1543,71,1,1808,52,1,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,69,1,2150,61,1,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,840,-1,0,1010,-11,0,0 +2013,4,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,700,-4,0,815,-1,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,32,1,2000,14,0,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2019,3,0,2239,-21,0,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1306,-3,0,1418,-10,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1828,0,0,2313,-23,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1445,-2,0,1550,-10,0,0 +2013,5,18,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,0,0,1606,-7,0,0 +2013,5,28,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,935,3,0,1041,-17,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,5,0,1835,7,0,0 +2013,9,10,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-4,0,852,-11,0,0 +2013,5,31,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1520,4,0,1835,15,1,0 +2013,5,19,7,EV,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,819,6,0,933,-3,0,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,715,3,0,920,3,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,39,1,2155,121,1,0 +2013,5,15,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1615,0,0,1745,-11,0,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1005,-8,0,1300,-12,0,0 +2013,5,29,3,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,600,2,0,755,-5,0,0 +2013,4,29,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1305,-7,0,1454,5,0,0 +2013,5,24,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,12,0,1600,7,0,0 +2013,4,30,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-7,0,1409,-28,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,910,7,0,1130,-1,0,0 +2013,4,20,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,-3,0,1100,-5,0,0 +2013,10,3,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,739,0,0,900,-10,0,0 +2013,4,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1330,16,1,1535,-4,0,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1645,-2,0,1944,13,0,0 +2013,10,6,7,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-6,0,2215,-22,0,0 +2013,5,21,2,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,938,-12,0,1204,-14,0,0 +2013,4,29,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1502,-3,0,2329,-7,0,0 +2013,10,9,3,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1545,1,0,1735,-6,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1940,33,1,50,28,1,0 +2013,5,20,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,7,0,1545,19,1,0 +2013,8,7,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,38,1,1923,45,1,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,-1,0,1624,-23,0,0 +2013,10,4,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-6,0,809,-1,0,0 +2013,8,7,3,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1521,-8,0,1644,-10,0,0 +2013,9,27,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,700,42,1,802,29,1,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1305,3,0,1442,1,0,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2109,8,0,2339,9,0,0 +2013,7,30,2,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1245,-9,0,1507,2,0,0 +2013,4,13,6,OO,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2200,0,0,2304,-3,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,-3,0,735,-11,0,0 +2013,7,2,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,620,3,0,1208,2,0,0 +2013,9,23,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2100,-6,0,2215,-15,0,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,-3,0,609,17,1,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,-3,0,1054,-10,0,0 +2013,4,23,2,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1153,-8,0,1355,-23,0,0 +2013,6,28,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,55,-5,0,501,-28,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1130,46,1,1415,28,1,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,55,1,1840,52,1,0 +2013,10,10,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1012,-8,0,1245,-12,0,0 +2013,5,10,5,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,655,5,0,816,7,0,0 +2013,8,29,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-4,0,1249,-6,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,7,0,2225,8,0,0 +2013,7,3,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1115,-3,0,1310,-7,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2040,1,0,2220,-6,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1505,8,0,1600,1,0,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,0,0,1817,-12,0,0 +2013,6,14,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,13,0,1750,-4,0,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,755,-3,0,1040,-5,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,11,0,1545,0,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-5,0,1437,-13,0,0 +2013,5,29,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-4,0,1450,-7,0,0 +2013,5,10,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,941,-5,0,0 +2013,8,30,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,2,0,940,2,0,0 +2013,7,15,1,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1615,-4,0,1710,-15,0,0 +2013,7,24,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1122,-13,0,0 +2013,8,29,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1010,-4,0,1130,-8,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,-8,0,1045,-17,0,0 +2013,7,7,7,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,75,1,2030,107,1,0 +2013,5,24,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1855,30,1,2141,38,1,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1704,-4,0,2056,-13,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1736,16,1,1830,8,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,705,16,1,955,29,1,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,848,-4,0,1110,-2,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1030,3,0,1142,4,0,0 +2013,7,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,835,23,1,1105,13,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1750,0,,1930,0,1,1 +2013,6,27,4,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1749,0,0,2009,-30,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,25,1,2214,48,1,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1429,24,1,1703,52,1,0 +2013,9,6,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,850,-22,0,0 +2013,9,2,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-3,0,1624,-12,0,0 +2013,10,10,4,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-10,0,1137,-13,0,0 +2013,7,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,67,1,1835,61,1,0 +2013,4,11,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1820,150,1,1935,153,1,0 +2013,4,19,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1830,55,1,2000,42,1,0 +2013,7,5,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,26,1,825,25,1,0 +2013,9,25,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1331,-4,0,1840,-26,0,0 +2013,6,27,4,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1721,0,,1929,0,1,1 +2013,5,14,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-4,0,909,-12,0,0 +2013,10,30,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-10,0,1412,2,0,0 +2013,5,9,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1355,52,1,2010,53,1,0 +2013,4,15,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,610,-8,0,745,-18,0,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1730,0,0,1940,-8,0,0 +2013,6,13,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,723,16,1,1120,3,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2140,-1,0,20,-10,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,16,1,2149,46,1,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1740,-2,0,2225,-17,0,0 +2013,10,29,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,600,-3,0,725,-6,0,0 +2013,6,4,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,835,-1,0,935,3,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,842,-1,0,1033,-9,0,0 +2013,10,1,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1205,-7,0,1327,1,0,0 +2013,9,5,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,901,-22,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1330,39,1,1905,35,1,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-1,0,1526,-5,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,10,0,1345,-4,0,0 +2013,9,26,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1015,1,0,1205,5,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-7,0,1026,-43,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,23,1,1958,5,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,-1,0,2200,-12,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,1,0,1241,-6,0,0 +2013,9,5,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1940,27,1,2049,29,1,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-2,0,906,-12,0,0 +2013,10,15,2,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1256,13,0,1418,12,0,0 +2013,6,18,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,1,0,900,-9,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,-2,0,1459,0,0,0 +2013,8,27,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,11,0,1455,0,0,0 +2013,7,2,2,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,820,-4,0,1255,3,0,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,805,-4,0,1130,13,0,0 +2013,5,13,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,8,0,2125,-21,0,0 +2013,9,2,1,FL,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-8,0,1410,-3,0,0 +2013,4,6,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1440,-4,0,1751,-26,0,0 +2013,10,14,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1600,0,0,1930,-27,0,0 +2013,10,30,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1231,5,0,1446,1,0,0 +2013,6,8,6,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-13,0,711,-33,0,0 +2013,7,25,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,645,-3,0,758,-2,0,0 +2013,10,2,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,-8,0,1651,-7,0,0 +2013,4,17,3,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2045,6,0,2219,-24,0,0 +2013,5,11,6,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1020,-9,0,1315,-12,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,9,0,1929,16,1,0 +2013,4,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1205,-5,0,1315,-24,0,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1550,-2,0,1725,-2,0,0 +2013,7,20,6,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,1,0,1905,41,1,0 +2013,9,2,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,1,0,1410,-4,0,0 +2013,10,29,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1210,-9,0,1330,5,0,0 +2013,5,5,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,1,0,1351,0,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1230,30,1,1402,22,1,0 +2013,5,16,4,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1405,6,0,1645,-3,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-1,0,1413,-2,0,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,645,-4,0,946,-13,0,0 +2013,6,26,3,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,730,-4,0,928,-18,0,0 +2013,6,21,5,OO,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,833,-9,0,1105,-10,0,0 +2013,5,13,1,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1155,-6,0,1430,-45,0,0 +2013,10,16,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,600,-1,0,730,-18,0,0 +2013,5,27,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1112,-4,0,1238,-9,0,0 +2013,8,18,7,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-8,0,1104,-15,0,0 +2013,5,13,1,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,9,0,1350,-2,0,0 +2013,8,6,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,-3,0,1953,-14,0,0 +2013,5,9,4,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,627,-8,0,922,-9,0,0 +2013,8,19,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1702,-9,0,1800,-7,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1000,50,1,1125,147,1,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1825,-8,0,2047,-18,0,0 +2013,8,6,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,7,0,2215,2,0,0 +2013,9,30,1,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1013,-20,0,0 +2013,10,18,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1157,-10,0,1446,-12,0,0 +2013,5,11,6,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2011,-8,0,2137,-15,0,0 +2013,6,25,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1526,7,0,1641,14,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1850,38,1,2045,26,1,0 +2013,10,2,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1320,-2,0,1340,-16,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1210,29,1,1530,13,0,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1530,-8,0,1655,-16,0,0 +2013,6,20,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2100,-6,0,2220,16,1,0 +2013,6,17,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,645,0,0,835,3,0,0 +2013,4,3,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1350,-3,0,1509,-9,0,0 +2013,10,15,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,645,-3,0,1504,-24,0,0 +2013,4,19,5,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1105,-1,0,1403,-18,0,0 +2013,7,15,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,3,0,1840,2,0,0 +2013,4,3,3,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,-5,0,1854,2,0,0 +2013,5,17,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1410,21,1,1650,16,1,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2110,-1,0,2327,-21,0,0 +2013,7,10,3,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1001,0,,1130,0,1,1 +2013,10,15,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,735,-2,0,1308,-19,0,0 +2013,9,28,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,12,0,1640,-2,0,0 +2013,7,16,2,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-2,0,1820,-9,0,0 +2013,10,1,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2245,4,0,635,3,0,0 +2013,10,16,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,933,-11,0,0 +2013,9,12,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,-2,0,939,-9,0,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1810,0,0,2000,-13,0,0 +2013,6,17,1,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1411,-1,0,1520,-8,0,0 +2013,5,8,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1527,8,0,1705,4,0,0 +2013,10,24,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,605,-17,0,723,10,0,0 +2013,7,18,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,-4,0,1115,-50,0,0 +2013,6,21,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,735,-12,0,0 +2013,5,15,3,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,0,0,1802,-2,0,0 +2013,4,11,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1224,-9,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1041,-1,0,1620,-16,0,0 +2013,8,5,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,8,0,1225,-7,0,0 +2013,4,26,5,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,845,-8,0,1050,-16,0,0 +2013,6,17,1,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,22,1,2147,12,0,0 +2013,5,4,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1216,6,0,1511,-19,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,0,0,1520,-5,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,800,-2,0,1040,-10,0,0 +2013,7,8,1,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1310,-3,0,1441,-14,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-1,0,1847,-12,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1005,-5,0,1133,-12,0,0 +2013,9,3,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1337,10,0,1437,-5,0,0 +2013,8,31,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,-3,0,1220,-11,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1010,0,0,1315,-15,0,0 +2013,8,9,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,610,-5,0,739,-6,0,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1718,-6,0,1753,-12,0,0 +2013,4,17,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1055,0,0,1145,-3,0,0 +2013,4,24,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,650,1,0,700,-7,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,0,,2110,0,1,1 +2013,4,15,1,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1334,39,1,1655,32,1,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,830,3,0,1005,-10,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1345,-3,0,1725,-4,0,0 +2013,6,9,7,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,7,0,2133,2,0,0 +2013,9,30,1,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,815,-4,0,959,-14,0,0 +2013,10,1,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1747,-2,0,1945,-8,0,0 +2013,10,5,6,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-3,0,1438,-7,0,0 +2013,6,24,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,730,0,0,930,-21,0,0 +2013,9,2,1,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1158,0,0,1440,19,1,0 +2013,4,3,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,615,0,0,1434,-12,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,920,7,0,1350,-18,0,0 +2013,5,8,3,9E,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,805,-6,0,1030,-20,0,0 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,830,-2,0,1050,-6,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1530,-3,0,1635,-10,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2010,-10,0,2250,0,0,0 +2013,4,14,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1135,-3,0,1920,11,0,0 +2013,8,7,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,-9,0,1210,-6,0,0 +2013,6,18,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1724,107,1,1835,94,1,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1026,-4,0,1040,1,0,0 +2013,8,6,2,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1257,145,1,1435,145,1,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,0,0,2145,-3,0,0 +2013,8,5,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2259,-16,0,133,-19,0,0 +2013,5,29,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2037,-5,0,2201,-20,0,0 +2013,7,9,2,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,745,5,0,1025,3,0,0 +2013,6,24,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,15,1,1420,19,1,0 +2013,7,21,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,92,1,2203,91,1,0 +2013,4,8,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,2015,-1,0,2305,-9,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,815,0,0,950,-6,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1050,1,0,1459,-7,0,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1420,-4,0,1652,-3,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-6,0,907,-15,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2115,1,0,2305,-7,0,0 +2013,9,12,4,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,900,-3,0,1158,-30,0,0 +2013,10,9,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-7,0,1747,-15,0,0 +2013,5,7,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1455,-1,0,1732,3,0,0 +2013,4,5,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,-1,0,2025,-4,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1655,95,1,2250,90,1,0 +2013,10,19,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1505,-4,0,1630,-1,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1614,-2,0,1736,3,0,0 +2013,4,7,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,-1,0,1100,-4,0,0 +2013,7,24,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1920,-1,0,2045,-9,0,0 +2013,10,25,5,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,911,-2,0,1439,2,0,0 +2013,4,14,7,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,-6,0,2338,21,1,0 +2013,5,7,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2048,43,1,2303,33,1,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1549,0,,1833,0,1,1 +2013,5,4,6,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1942,14,0,2232,40,1,0 +2013,5,23,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,0,,2112,0,1,1 +2013,9,23,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-4,0,1205,11,0,0 +2013,8,25,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2100,14,0,510,0,0,0 +2013,4,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1145,3,0,1352,0,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-2,0,940,-9,0,0 +2013,8,8,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1802,41,1,1848,35,1,0 +2013,8,11,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,-7,0,1950,-19,0,0 +2013,6,12,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1935,0,0,2105,-2,0,0 +2013,7,4,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,-2,0,1615,-12,0,0 +2013,7,18,4,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1025,3,0,1210,3,0,0 +2013,4,21,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,915,-1,0,1055,8,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1325,-2,0,1527,-8,0,0 +2013,4,4,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1410,-8,0,1542,-4,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,945,-1,0,1229,25,1,0 +2013,10,14,1,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1325,-1,0,1515,-8,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,855,-1,0,1055,-12,0,0 +2013,9,12,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-7,0,716,-15,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,10,0,1250,18,1,0 +2013,9,11,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1508,7,0,1636,-2,0,0 +2013,6,17,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-1,0,609,-22,0,0 +2013,6,25,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1220,6,0,1340,8,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,810,10,0,930,9,0,0 +2013,9,12,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1553,-9,0,1639,11,0,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2230,-6,0,5,-18,0,0 +2013,7,26,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,-4,0,2350,-3,0,0 +2013,9,10,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1120,15,1,1655,11,0,0 +2013,7,10,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1725,221,1,1840,288,1,0 +2013,6,4,2,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1432,-5,0,1620,4,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2040,28,1,2305,29,1,0 +2013,4,14,7,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-2,0,1230,-9,0,0 +2013,7,1,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1450,-6,0,1540,-10,0,0 +2013,10,16,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-8,0,849,38,1,0 +2013,8,18,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-3,0,903,9,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,4,0,1317,17,1,0 +2013,5,9,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1140,-3,0,1400,-4,0,0 +2013,6,1,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,6,0,1011,9,0,0 +2013,9,7,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,2,0,618,-10,0,0 +2013,8,16,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,93,1,2150,83,1,0 +2013,10,18,5,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1200,-6,0,1301,-6,0,0 +2013,8,25,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1535,104,1,1649,93,1,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,2,0,1410,-12,0,0 +2013,6,3,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,-4,0,1929,1,0,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,22,1,2330,43,1,0 +2013,8,29,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,753,-23,0,0 +2013,10,15,2,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-8,0,2104,-11,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1535,12,0,1921,7,0,0 +2013,10,19,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1825,0,0,1900,0,0,0 +2013,8,4,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1705,-5,0,1855,4,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-5,0,2159,-6,0,0 +2013,10,29,2,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,15,1,1235,8,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1526,1,0,1710,-14,0,0 +2013,5,17,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1040,-3,0,1210,-5,0,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,12,0,1738,-4,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,1,0,2140,7,0,0 +2013,6,26,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,710,-1,0,855,-16,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1155,2,0,1405,13,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,-2,0,559,-16,0,0 +2013,7,7,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1105,-9,0,1225,-6,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,25,1,1840,14,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,830,5,0,0 +2013,5,10,5,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-7,0,1510,-25,0,0 +2013,4,6,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,600,-3,0,1035,-31,0,0 +2013,6,22,6,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1540,186,1,1730,177,1,0 +2013,10,21,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1025,3,0,0 +2013,5,13,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,0,0,1720,-16,0,0 +2013,7,14,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1415,28,1,1534,18,1,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1755,85,1,1850,103,1,0 +2013,4,2,2,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1115,-2,0,1255,-21,0,0 +2013,7,31,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1407,-9,0,1613,11,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1544,368,1,1805,367,1,0 +2013,4,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,32,1,947,18,1,0 +2013,9,1,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,729,-1,0,901,-8,0,0 +2013,5,21,2,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2241,-2,0,2359,-6,0,0 +2013,9,16,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1340,-4,0,1440,28,1,0 +2013,10,11,5,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,2,0,445,-13,0,0 +2013,6,8,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,-7,0,2110,-5,0,0 +2013,5,26,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1239,16,1,1318,17,1,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,1,0,2056,-6,0,0 +2013,5,12,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-2,0,1640,-16,0,0 +2013,10,31,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,920,0,0,1055,-11,0,0 +2013,10,29,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1130,-6,0,1230,-3,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1505,-4,0,1836,-8,0,0 +2013,5,18,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,743,-2,0,905,-15,0,0 +2013,10,11,5,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,0,0,1245,-4,0,0 +2013,6,11,2,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,113,1,1853,77,1,0 +2013,7,30,2,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-3,0,2046,-32,0,0 +2013,4,17,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,628,7,0,1459,2,0,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1325,50,1,1520,35,1,0 +2013,6,21,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,935,5,0,1620,-5,0,0 +2013,5,26,7,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,0,0,2330,-17,0,0 +2013,4,9,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-8,0,750,-9,0,0 +2013,9,20,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1135,-14,0,1251,-10,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,725,-1,0,850,-10,0,0 +2013,6,7,5,EV,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-2,0,1129,-8,0,0 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,44,-11,0,616,-23,0,0 +2013,4,3,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,13,0,1559,19,1,0 +2013,8,4,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1719,18,1,1826,19,1,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-3,0,1639,7,0,0 +2013,10,23,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1040,-1,0,1354,-4,0,0 +2013,4,20,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,646,39,1,812,16,1,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1741,50,1,2037,74,1,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2030,64,1,2310,65,1,0 +2013,5,28,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-7,0,1252,-9,0,0 +2013,4,11,4,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1326,106,1,1455,115,1,0 +2013,6,13,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,-3,0,940,-2,0,0 +2013,5,14,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,2006,-7,0,0 +2013,8,9,5,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,930,-2,0,1150,-5,0,0 +2013,9,17,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,2,0,2015,2,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1220,22,1,1240,11,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1600,7,0,1940,7,0,0 +2013,7,7,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-3,0,753,-9,0,0 +2013,6,4,2,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1025,4,0,1304,-17,0,0 +2013,5,21,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1230,132,1,1250,128,1,0 +2013,5,13,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1810,-6,0,2005,-20,0,0 +2013,10,31,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-4,0,1705,-17,0,0 +2013,10,11,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,635,-4,0,925,-7,0,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,-1,0,1925,-15,0,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1920,0,0,2235,-4,0,0 +2013,8,21,3,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1541,-5,0,1751,-26,0,0 +2013,6,6,4,9E,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,600,-2,0,743,-12,0,0 +2013,6,21,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1235,9,0,1705,-6,0,0 +2013,5,30,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-1,0,1633,1,0,0 +2013,5,29,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-6,0,803,-4,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,1,0,1805,11,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1425,-6,0,1648,3,0,0 +2013,4,6,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,925,2,0,1040,5,0,0 +2013,10,10,4,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1654,-4,0,1915,-5,0,0 +2013,6,8,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1125,-1,0,1235,-2,0,0 +2013,9,23,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-4,0,1123,-4,0,0 +2013,5,1,3,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,625,-12,0,1443,16,1,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2105,4,0,2340,2,0,0 +2013,5,7,2,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,-7,0,1705,1,0,0 +2013,10,23,3,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,758,-8,0,932,-15,0,0 +2013,6,3,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-4,0,1505,7,0,0 +2013,7,20,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1125,159,1,1140,151,1,0 +2013,4,1,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,15,1,1246,3,0,0 +2013,10,14,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,3,0,1101,-8,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-3,0,1020,-1,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1150,117,1,1405,134,1,0 +2013,7,18,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2151,-1,0,2342,-12,0,0 +2013,8,18,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-6,0,2210,-15,0,0 +2013,9,16,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1655,-3,0,2245,-12,0,0 +2013,8,17,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,-2,0,2200,10,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,720,-9,0,930,-15,0,0 +2013,9,18,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,0,0,730,-4,0,0 +2013,7,9,2,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1215,33,1,1525,31,1,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2130,-7,0,2308,-7,0,0 +2013,7,16,2,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1636,-3,0,1725,-8,0,0 +2013,6,30,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2250,0,,2329,0,1,1 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,635,-8,0,740,-21,0,0 +2013,4,2,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,1120,-8,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1350,-3,0,1620,-12,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2050,0,,2150,0,1,1 +2013,8,17,6,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,-3,0,1625,-5,0,0 +2013,5,20,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1508,5,0,1641,-8,0,0 +2013,7,6,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-8,0,952,11,0,0 +2013,9,12,4,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-9,0,1012,-10,0,0 +2013,4,18,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-3,0,1001,11,0,0 +2013,6,26,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1610,67,1,1923,50,1,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,716,-1,0,1027,-10,0,0 +2013,6,14,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,735,8,0,1050,4,0,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,-1,0,1220,8,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,-5,0,2344,-30,0,0 +2013,6,10,1,OO,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,903,9,0,1212,22,1,0 +2013,5,1,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,920,-4,0,1227,-22,0,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2244,1,0,631,-12,0,0 +2013,6,25,2,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,-3,0,1415,-3,0,0 +2013,9,10,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2220,-1,0,2305,-1,0,0 +2013,6,19,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1959,-7,0,2025,3,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1205,0,0,1418,-17,0,0 +2013,7,15,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,8,0,2100,-5,0,0 +2013,8,3,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,826,119,1,1005,106,1,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-3,0,1102,-2,0,0 +2013,10,25,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1747,10,0,1855,-11,0,0 +2013,9,11,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,935,1,0,1030,5,0,0 +2013,7,21,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,9,0,1720,7,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,625,4,0,715,0,0,0 +2013,9,12,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1013,-13,0,0 +2013,5,7,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,-5,0,2051,-28,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1246,-6,0,1841,-10,0,0 +2013,9,22,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-6,0,853,-22,0,0 +2013,6,28,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-6,0,1400,-10,0,0 +2013,8,3,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,-1,0,1135,8,0,0 +2013,6,28,5,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1357,15,1,1609,73,1,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1405,-2,0,1510,-11,0,0 +2013,7,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1703,-3,0,2113,-7,0,0 +2013,5,8,3,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-9,0,1038,-20,0,0 +2013,5,18,6,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,3,0,1042,0,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1530,-4,0,1546,-15,0,0 +2013,5,20,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,645,-25,0,0 +2013,10,21,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,18,1,1500,14,0,0 +2013,8,7,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1725,11,0,1840,17,1,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,-5,0,2245,-4,0,0 +2013,5,15,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-8,0,635,-13,0,0 +2013,7,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,0,0,1605,-24,0,0 +2013,10,9,3,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,603,-1,0,904,-11,0,0 +2013,6,18,2,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-10,0,1355,-28,0,0 +2013,7,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1025,0,0,1135,-6,0,0 +2013,4,17,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1025,0,,1340,0,1,1 +2013,6,9,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1109,3,0,1258,2,0,0 +2013,4,26,5,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1240,-10,0,1451,-18,0,0 +2013,7,15,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1305,283,1,1525,285,1,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,19,1,1245,-3,0,0 +2013,6,23,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,7,0,1156,18,1,0 +2013,8,19,1,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2010,-6,0,1148,-2,0,0 +2013,9,14,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,10,0,1445,-4,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,13,0,1537,-1,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1459,-3,0,1658,-12,0,0 +2013,10,23,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,630,-8,0,730,-8,0,0 +2013,10,9,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,-3,0,1525,-18,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,-3,0,2352,-10,0,0 +2013,9,16,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1724,-4,0,1930,-19,0,0 +2013,7,21,7,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-4,0,2148,35,1,0 +2013,6,24,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-8,0,1310,-14,0,0 +2013,9,3,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1030,-2,0,1138,-6,0,0 +2013,10,5,6,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-4,0,1726,-14,0,0 +2013,10,11,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-4,0,845,-18,0,0 +2013,8,5,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-7,0,1315,2,0,0 +2013,5,23,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1945,107,1,2223,103,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,17,1,2222,-4,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-3,0,1116,-20,0,0 +2013,8,17,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-4,0,910,-11,0,0 +2013,8,7,3,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1007,-7,0,1246,-9,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,850,6,0,950,4,0,0 +2013,6,8,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1753,-9,0,1943,-16,0,0 +2013,8,7,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1556,-5,0,1848,-22,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2155,9,0,2255,4,0,0 +2013,7,16,2,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1725,8,0,1941,3,0,0 +2013,5,14,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,-3,0,1118,2,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1222,-7,0,1347,-11,0,0 +2013,7,5,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,-7,0,1446,-25,0,0 +2013,7,21,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,89,1,2019,81,1,0 +2013,6,20,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1019,2,0,1220,7,0,0 +2013,10,21,1,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,900,4,0,1420,-16,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,133,1,1846,106,1,0 +2013,8,2,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-1,0,1720,4,0,0 +2013,4,4,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1800,73,1,1832,81,1,0 +2013,7,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1235,17,1,1830,11,0,0 +2013,9,11,3,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1525,-3,0,1820,-13,0,0 +2013,6,7,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1632,-4,0,1956,-49,0,0 +2013,6,19,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1725,-3,0,1850,-12,0,0 +2013,4,27,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1015,1,0,1145,-22,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1529,-6,0,1810,0,0,0 +2013,4,10,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-3,0,1443,-5,0,0 +2013,10,24,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,0,0,717,-10,0,0 +2013,7,15,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,810,-5,0,925,-8,0,0 +2013,9,23,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,13,0,1300,1,0,0 +2013,9,30,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,2,0,1810,-4,0,0 +2013,10,8,2,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1900,31,1,2025,22,1,0 +2013,7,14,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1925,-6,0,2230,-16,0,0 +2013,7,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2015,14,0,2116,-8,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,39,1,2330,36,1,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,0,0,1803,-14,0,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,720,5,0,900,-7,0,0 +2013,8,22,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-8,0,1522,-11,0,0 +2013,10,2,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1915,-7,0,2102,-20,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2100,133,1,2305,128,1,0 +2013,5,23,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,2,0,710,0,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,22,1,2100,28,1,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,-9,0,343,-26,0,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1214,-4,0,1348,-2,0,0 +2013,6,17,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1559,-6,0,1628,-3,0,0 +2013,9,24,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,1,0,1506,24,1,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,600,0,0,919,-10,0,0 +2013,6,22,6,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,14,0,920,5,0,0 +2013,6,16,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,600,4,0,910,-2,0,0 +2013,4,28,7,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,605,-4,0,1207,-17,0,0 +2013,6,25,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-3,0,1114,-16,0,0 +2013,10,10,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1015,0,0,1340,-12,0,0 +2013,7,4,4,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,0,0,2359,2,0,0 +2013,7,2,2,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1720,40,1,2000,12,0,0 +2013,9,3,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,8,0,2035,1,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2232,20,1,654,4,0,0 +2013,5,6,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-7,0,1112,5,0,0 +2013,5,26,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1700,-15,0,1855,-29,0,0 +2013,6,3,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1536,-3,0,1555,14,0,0 +2013,7,2,2,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1225,-2,0,1356,-12,0,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,84,1,1840,78,1,0 +2013,9,29,7,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,-9,0,1445,-13,0,0 +2013,10,22,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-4,0,1634,-21,0,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,1,0,2330,26,1,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,10,0,2028,24,1,0 +2013,9,19,4,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2040,8,0,2248,-14,0,0 +2013,8,24,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,820,8,0,956,-4,0,0 +2013,6,26,3,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1735,90,1,1915,89,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,7,0,2322,5,0,0 +2013,9,23,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-7,0,1555,-5,0,0 +2013,5,12,7,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,930,-5,0,1020,-13,0,0 +2013,9,10,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1850,189,1,2205,181,1,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,16,1,1405,15,1,0 +2013,10,23,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1119,-4,0,1250,-14,0,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,605,-1,0,735,-9,0,0 +2013,9,24,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1738,-4,0,1847,-6,0,0 +2013,9,9,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,-3,0,1315,-7,0,0 +2013,4,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2135,44,1,2245,40,1,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1115,-6,0,1252,11,0,0 +2013,7,11,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,701,-6,0,820,-11,0,0 +2013,8,25,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-4,0,905,2,0,0 +2013,8,9,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,287,1,1755,286,1,0 +2013,6,23,7,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,615,0,0,745,-10,0,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2010,10,0,2115,9,0,0 +2013,9,8,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-4,0,1742,-6,0,0 +2013,7,9,2,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1930,36,1,2142,38,1,0 +2013,8,26,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,821,-7,0,917,-8,0,0 +2013,4,29,1,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1020,-3,0,1150,-5,0,0 +2013,6,24,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1539,60,1,1654,46,1,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,805,7,0,930,8,0,0 +2013,6,23,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,-7,0,1304,3,0,0 +2013,6,17,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,839,31,1,1020,18,1,0 +2013,8,12,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,925,8,0,1220,45,1,0 +2013,10,19,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1015,-2,0,1200,-8,0,0 +2013,4,10,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1148,-3,0,1430,-16,0,0 +2013,8,18,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1925,36,1,2045,40,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1112,-2,0,1239,-8,0,0 +2013,8,6,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-7,0,1712,-10,0,0 +2013,4,25,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1450,114,1,1732,156,1,0 +2013,10,17,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-1,0,1410,20,1,0 +2013,10,11,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-5,0,1605,8,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1020,2,0,1730,3,0,0 +2013,6,1,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-3,0,1239,-7,0,0 +2013,5,5,7,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1940,-5,0,2247,-5,0,0 +2013,5,10,5,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1828,-8,0,2006,-23,0,0 +2013,5,5,7,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-9,0,1026,0,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1817,0,0,1915,3,0,0 +2013,6,12,3,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,620,-2,0,1446,-12,0,0 +2013,4,12,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,2253,-18,0,0 +2013,4,17,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,3,0,1920,10,0,0 +2013,5,18,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,1,0,1430,-2,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,-2,0,1449,-16,0,0 +2013,9,22,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,-14,0,1223,-21,0,0 +2013,9,24,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,755,-7,0,903,-14,0,0 +2013,8,7,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,0,0,1135,-16,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,3,0,1920,-2,0,0 +2013,7,23,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,0,,1211,0,1,1 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,4,0,1745,-11,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1520,-6,0,1820,-7,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-7,0,938,0,0,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,920,27,1,1045,19,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1055,-2,0,1205,7,0,0 +2013,6,21,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1356,93,1,1652,93,1,0 +2013,9,12,4,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,757,0,0,922,-13,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2007,-3,0,2043,-10,0,0 +2013,5,17,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-3,0,1600,-16,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2015,31,1,2105,16,1,0 +2013,7,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,0,,2046,0,1,1 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2125,42,1,2305,38,1,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,855,-5,0,1000,-11,0,0 +2013,6,25,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,31,1,1110,21,1,0 +2013,6,3,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1526,-17,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1815,20,1,2113,25,1,0 +2013,8,8,4,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,713,-10,0,901,-12,0,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1743,15,1,1900,32,1,0 +2013,4,1,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1241,2,0,1419,0,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,19,1,1515,19,1,0 +2013,8,8,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,630,-3,0,720,-12,0,0 +2013,5,19,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1120,0,0,1254,-10,0,0 +2013,9,14,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1525,12,0,1640,6,0,0 +2013,9,17,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-10,0,1250,-2,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,-1,0,1000,-1,0,0 +2013,4,2,2,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1353,-5,0,2125,-16,0,0 +2013,5,12,7,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1440,-5,0,1655,-13,0,0 +2013,7,9,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1520,103,1,1705,91,1,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1659,-5,0,1840,-26,0,0 +2013,4,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1740,-3,0,2050,-10,0,0 +2013,7,11,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,64,1,800,58,1,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,611,-8,0,903,-18,0,0 +2013,8,19,1,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,720,6,0,845,-6,0,0 +2013,5,22,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1149,0,,1237,0,1,1 +2013,8,5,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1145,3,0,1535,10,0,0 +2013,10,11,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-3,0,1335,-10,0,0 +2013,6,25,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,3,0,1455,1,0,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-4,0,1430,-27,0,0 +2013,6,3,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,20,1,1232,26,1,0 +2013,10,21,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-12,0,1912,-13,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,920,85,1,1350,98,1,0 +2013,10,27,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,845,-5,0,1215,-7,0,0 +2013,4,2,2,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1557,-7,0,1754,9,0,0 +2013,4,3,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1145,49,1,1245,44,1,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,830,0,0,1105,-15,0,0 +2013,7,9,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,40,1,2055,35,1,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,837,8,0,1416,-7,0,0 +2013,9,5,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1605,0,0,1650,-10,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1715,0,,2020,0,1,1 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1325,-1,0,1720,0,0,0 +2013,4,20,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1302,28,1,1515,21,1,0 +2013,9,20,5,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1715,0,0,1840,3,0,0 +2013,6,11,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,819,8,0,0 +2013,5,12,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1525,-4,0,1820,-13,0,0 +2013,4,26,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1015,32,1,1559,16,1,0 +2013,10,11,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1655,-3,0,1823,-6,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,6,0,1105,-10,0,0 +2013,9,13,5,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-2,0,910,-9,0,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1132,-7,0,1248,-1,0,0 +2013,6,22,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1710,6,0,1925,20,1,0 +2013,5,30,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,850,-4,0,1010,-6,0,0 +2013,6,9,7,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1725,5,0,2040,2,0,0 +2013,6,17,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1340,1,0,1700,-26,0,0 +2013,5,21,2,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,63,1,1225,83,1,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,47,1,2224,53,1,0 +2013,5,4,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-1,0,1700,-37,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2008,4,0,2233,-25,0,0 +2013,7,24,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,68,1,2153,71,1,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,650,-4,0,1005,-9,0,0 +2013,6,6,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-4,0,1025,-4,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,-3,0,25,-4,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1835,2,0,2105,-9,0,0 +2013,6,19,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,-5,0,1740,-16,0,0 +2013,4,2,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,530,-8,0,618,-9,0,0 +2013,10,2,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,900,-1,0,1035,-5,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-1,0,1240,-9,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,93,1,2013,79,1,0 +2013,9,24,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1420,10,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1810,98,1,1942,103,1,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1600,18,1,1830,2,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,856,4,0,1038,3,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2035,-3,0,2302,-11,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-5,0,1010,-4,0,0 +2013,8,30,5,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,3,0,2359,-2,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-1,0,1805,-9,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1424,25,1,2037,25,1,0 +2013,10,9,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-3,0,1451,1,0,0 +2013,6,7,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1230,13,0,1335,8,0,0 +2013,4,8,1,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,615,-4,0,827,-19,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,-3,0,1620,-4,0,0 +2013,9,14,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1300,-5,0,1405,-10,0,0 +2013,7,24,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1105,-3,0,1110,-8,0,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,644,-3,0,855,16,1,0 +2013,8,21,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,163,1,1935,157,1,0 +2013,8,2,5,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2235,-4,0,653,-20,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1120,-5,0,1401,-20,0,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,15,1,2053,8,0,0 +2013,9,22,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,848,-15,0,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1500,81,1,1610,70,1,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,102,1,1219,97,1,0 +2013,5,25,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1435,-7,0,1635,-16,0,0 +2013,4,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1703,-8,0,2312,0,0,0 +2013,5,19,7,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1745,-3,0,1925,2,0,0 +2013,6,12,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,-2,0,1035,-15,0,0 +2013,5,2,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,941,-9,0,1119,9,0,0 +2013,6,3,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,14,0,1345,-4,0,0 +2013,6,4,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,848,-2,0,922,-2,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1345,25,1,1455,21,1,0 +2013,7,12,5,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-3,0,1019,-9,0,0 +2013,4,29,1,EV,10529,Bradley International,Hartford,CT,11042,Cleveland-Hopkins International,Cleveland,OH,545,-6,0,736,-6,0,0 +2013,4,13,6,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1505,-2,0,1740,5,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1122,-6,0,1225,-22,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1730,14,0,2125,-1,0,0 +2013,6,13,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,29,1,1314,64,1,0 +2013,8,11,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1645,15,1,1755,12,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1425,3,0,1525,4,0,0 +2013,8,11,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2000,66,1,2126,50,1,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1630,-1,0,1925,5,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1601,4,0,1930,-8,0,0 +2013,6,4,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,-3,0,2110,-6,0,0 +2013,4,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,25,1,1710,27,1,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-3,0,2300,2,0,0 +2013,8,15,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1135,-4,0,1330,8,0,0 +2013,9,15,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1805,13,0,2115,-1,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,750,-2,0,855,-9,0,0 +2013,7,20,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-6,0,1650,43,1,0 +2013,10,13,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1930,-3,0,2120,16,1,0 +2013,4,11,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1710,0,0,1845,-10,0,0 +2013,6,29,6,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1355,-9,0,1610,21,1,0 +2013,4,27,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12953,LaGuardia,New York,NY,1525,-9,0,1719,-30,0,0 +2013,4,13,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-5,0,1226,-14,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1415,5,0,1530,-16,0,0 +2013,10,24,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,5,0,1810,11,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2039,9,0,2316,-2,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2225,0,0,2357,-12,0,0 +2013,8,4,7,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,1,0,1809,2,0,0 +2013,8,30,5,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1215,5,0,1329,-1,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,2135,14,0,208,19,1,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,900,-3,0,1045,-5,0,0 +2013,4,21,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1118,-4,0,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,-1,0,1757,-5,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1304,-6,0,1437,-19,0,0 +2013,5,27,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1145,-10,0,1450,-5,0,0 +2013,7,14,7,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,820,-4,0,940,-3,0,0 +2013,10,6,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,3,0,2059,-4,0,0 +2013,6,29,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1505,-3,0,1925,2,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,-2,0,1008,-18,0,0 +2013,8,21,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1340,-3,0,1440,-11,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2200,44,1,2250,26,1,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2004,20,1,2141,28,1,0 +2013,10,3,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,-3,0,2037,-11,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2225,35,1,2340,24,1,0 +2013,10,26,6,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1535,-10,0,1700,-17,0,0 +2013,6,20,4,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,800,-7,0,1140,-11,0,0 +2013,10,8,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1740,-3,0,1810,-15,0,0 +2013,7,30,2,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-7,0,2023,-13,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,9,0,2353,-3,0,0 +2013,7,13,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-7,0,1440,-8,0,0 +2013,4,16,2,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,910,-9,0,1158,-15,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,0,0,2035,-1,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,-6,0,1225,-2,0,0 +2013,6,12,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2116,-10,0,2359,-12,0,0 +2013,7,9,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,800,4,0,0 +2013,7,18,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,-7,0,1835,-12,0,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,-8,0,1142,-11,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,-6,0,1208,-24,0,0 +2013,9,28,6,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1538,-6,0,1720,-9,0,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2040,-4,0,2200,0,0,0 +2013,7,26,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-11,0,1352,-24,0,0 +2013,10,10,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-3,0,1955,6,0,0 +2013,7,29,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-7,0,629,-13,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2115,-4,0,2230,-4,0,0 +2013,7,10,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1338,200,1,1616,210,1,0 +2013,7,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1027,-23,0,0 +2013,8,16,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-9,0,732,-6,0,0 +2013,5,21,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,640,-5,0,836,-6,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,2050,40,1,0 +2013,4,29,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1407,26,1,2009,20,1,0 +2013,10,1,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,650,-5,0,815,-12,0,0 +2013,4,9,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-5,0,1435,-9,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,655,0,0,945,-7,0,0 +2013,5,29,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,735,-1,0,900,-9,0,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,-8,0,1515,-8,0,0 +2013,8,28,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,815,104,1,1605,139,1,0 +2013,4,29,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,955,15,1,1145,-3,0,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,5,0,839,1,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2030,17,1,2217,-5,0,0 +2013,6,13,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1800,156,1,2015,136,1,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,2,0,920,-7,0,0 +2013,6,27,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,805,1,0,1150,-3,0,0 +2013,5,17,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1725,55,1,1935,39,1,0 +2013,5,24,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,842,-1,0,1036,-14,0,0 +2013,7,19,5,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,76,1,1015,39,1,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,20,1,1233,13,0,0 +2013,6,19,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-10,0,740,-19,0,0 +2013,9,14,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,635,-6,0,751,-6,0,0 +2013,8,12,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,13,0,1925,13,0,0 +2013,4,17,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1235,42,1,1400,48,1,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1405,-4,0,1750,-18,0,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,6,0,2039,-1,0,0 +2013,4,15,1,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,4,0,2100,7,0,0 +2013,4,4,4,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,840,-3,0,1055,-25,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,756,-6,0,952,-7,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,-1,0,1030,-14,0,0 +2013,4,12,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,-4,0,1419,-3,0,0 +2013,6,19,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-3,0,603,5,0,0 +2013,9,5,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-11,0,1250,-10,0,0 +2013,8,7,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,12,0,1706,16,1,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,5,0,2250,19,1,0 +2013,5,25,6,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1355,-1,0,1550,-23,0,0 +2013,8,8,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-10,0,821,-11,0,0 +2013,4,27,6,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-7,0,712,-15,0,0 +2013,4,14,7,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2008,0,,2147,0,1,1 +2013,5,16,4,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,700,-5,0,850,-12,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,-2,0,1255,-2,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1024,-6,0,1136,-15,0,0 +2013,7,9,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,78,1,1345,74,1,0 +2013,6,26,3,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1011,22,1,1110,19,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1940,14,0,2325,7,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,710,-4,0,840,-14,0,0 +2013,6,30,7,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1845,46,1,2140,38,1,0 +2013,6,19,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-7,0,1210,-16,0,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,6,0,1612,-1,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,-1,0,1508,1,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1515,-1,0,1730,2,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2010,0,0,2105,-1,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,814,-4,0,913,-22,0,0 +2013,10,1,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,-2,0,1937,-20,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,11,0,2030,16,1,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,2,0,1353,1,0,0 +2013,9,23,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,959,-4,0,1242,-2,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1223,-3,0,1405,-1,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,700,-1,0,1035,5,0,0 +2013,5,27,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2147,-16,0,0 +2013,4,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2000,-6,0,2110,-9,0,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,-5,0,913,-9,0,0 +2013,7,20,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,1,0,955,-11,0,0 +2013,7,20,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,13,0,1525,4,0,0 +2013,10,20,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,-5,0,1250,-10,0,0 +2013,9,7,6,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1618,-7,0,1801,-57,0,0 +2013,8,11,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-7,0,1015,3,0,0 +2013,4,2,2,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-3,0,1020,-18,0,0 +2013,4,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,915,-5,0,1040,-9,0,0 +2013,8,5,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1731,11,0,1849,14,0,0 +2013,4,11,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-8,0,1410,-1,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,630,-4,0,1507,-29,0,0 +2013,6,15,6,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,-9,0,2355,-14,0,0 +2013,4,8,1,UA,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1741,-3,0,1922,-18,0,0 +2013,7,23,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,-5,0,1137,4,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,66,1,1747,69,1,0 +2013,6,24,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2045,19,1,2150,16,1,0 +2013,7,15,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,6,0,2045,-5,0,0 +2013,6,7,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,835,-6,0,1138,1,0,0 +2013,9,14,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1350,22,1,1455,12,0,0 +2013,9,10,2,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-11,0,1945,-19,0,0 +2013,6,16,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,705,-2,0,815,-5,0,0 +2013,8,10,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-3,0,913,-15,0,0 +2013,4,6,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-1,0,908,-15,0,0 +2013,8,1,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1029,5,0,1323,2,0,0 +2013,6,13,4,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,1,0,1805,-4,0,0 +2013,7,19,5,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1757,30,1,1848,23,1,0 +2013,9,11,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,11,0,2013,15,1,0 +2013,8,4,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,720,-9,0,1145,0,0,0 +2013,9,9,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1415,8,0,0 +2013,9,11,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1805,-1,0,2015,0,0,0 +2013,7,31,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1731,-9,0,1821,-4,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,605,-7,0,855,-11,0,0 +2013,4,27,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2025,-1,0,2200,-13,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1810,2,0,1940,-11,0,0 +2013,5,27,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2025,-3,0,2140,20,1,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1825,51,1,2315,30,1,0 +2013,9,26,4,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1255,-19,0,0 +2013,9,25,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,65,1,1323,67,1,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-3,0,2237,-18,0,0 +2013,8,6,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1057,-8,0,1212,-20,0,0 +2013,5,26,7,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1409,8,0,1619,-5,0,0 +2013,7,12,5,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,850,4,0,1031,-18,0,0 +2013,9,23,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,605,-10,0,804,-8,0,0 +2013,5,6,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2000,6,0,2125,-5,0,0 +2013,7,11,4,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,10,0,1851,4,0,0 +2013,9,11,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,829,-6,0,938,-1,0,0 +2013,5,8,3,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-5,0,1100,-8,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,805,-5,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1612,3,0,2159,-8,0,0 +2013,5,15,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1654,2,0,1700,-10,0,0 +2013,5,6,1,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1416,6,0,1715,0,0,0 +2013,4,17,3,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,-3,0,950,-6,0,0 +2013,8,13,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1817,10,0,2105,14,0,0 +2013,6,30,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,4,0,1530,3,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1556,5,0,2205,7,0,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,917,-7,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,730,-1,0,900,-3,0,0 +2013,7,12,5,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,855,3,0,1006,-9,0,0 +2013,5,12,7,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1856,81,1,2051,68,1,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1900,103,1,2144,107,1,0 +2013,7,9,2,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1055,20,1,1635,23,1,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,-2,0,2140,-9,0,0 +2013,9,10,2,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-7,0,1705,-23,0,0 +2013,7,23,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,11,0,1133,-10,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1500,5,0,1746,-8,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,5,0,1450,-6,0,0 +2013,10,22,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-6,0,1130,-7,0,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,9,0,1450,-2,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,1,0,1124,-9,0,0 +2013,8,12,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,-5,0,1225,-14,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2105,-8,0,2340,-25,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1039,-4,0,1246,-16,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,9,0,1635,-5,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,8,0,1449,34,1,0 +2013,9,13,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,755,-7,0,930,-15,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-2,0,808,-16,0,0 +2013,10,11,5,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,102,1,1634,119,1,0 +2013,4,5,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-8,0,2226,-7,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-2,0,1629,-13,0,0 +2013,6,23,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,0,,2350,0,1,1 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,855,-4,0,1332,15,1,0 +2013,6,1,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-3,0,920,-8,0,0 +2013,8,30,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-5,0,1745,-6,0,0 +2013,7,8,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1010,-6,0,1128,4,0,0 +2013,7,2,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-3,0,1632,18,1,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1830,177,1,2105,176,1,0 +2013,8,24,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2101,-3,0,2306,-2,0,0 +2013,6,12,3,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1640,270,1,1830,299,1,0 +2013,6,23,7,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,920,4,0,1140,3,0,0 +2013,7,20,6,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,-4,0,2357,-16,0,0 +2013,9,16,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2010,-2,0,2125,-10,0,0 +2013,5,31,5,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,0,0,1940,8,0,0 +2013,5,13,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,630,-3,0,645,-15,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,1,0,1125,-3,0,0 +2013,9,3,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1500,-9,0,1600,-14,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1550,25,1,1840,31,1,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,8,0,1740,15,1,0 +2013,8,28,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1610,-3,0,1715,-5,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1248,1,0,1707,-22,0,0 +2013,7,9,2,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1730,26,1,1950,0,0,0 +2013,5,20,1,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,103,1,2025,102,1,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1450,1,0,1555,-3,0,0 +2013,10,15,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1734,-3,0,1923,-8,0,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1518,7,0,1935,-1,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1845,16,1,2010,11,0,0 +2013,8,2,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2200,8,0,2305,6,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1945,-5,0,2105,-10,0,0 +2013,10,10,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,545,-4,0,907,-25,0,0 +2013,10,19,6,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-6,0,1602,10,0,0 +2013,7,23,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,-2,0,650,-7,0,0 +2013,10,13,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1055,1,0,1200,6,0,0 +2013,10,29,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1220,100,1,1549,79,1,0 +2013,10,1,2,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,605,-4,0,714,-18,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,954,38,1,1310,64,1,0 +2013,9,7,6,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-8,0,929,-9,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1535,136,1,1825,127,1,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1205,-2,0,1635,-16,0,0 +2013,6,3,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1230,39,1,1335,30,1,0 +2013,7,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,-4,0,1830,-6,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1655,1,0,1940,-24,0,0 +2013,10,30,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1245,-1,0,1715,-24,0,0 +2013,10,30,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1800,-1,0,2005,-16,0,0 +2013,9,2,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1100,-4,0,1308,3,0,0 +2013,7,25,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1210,-6,0,1500,-6,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1917,13,0,2055,69,1,0 +2013,5,27,1,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1220,-8,0,1335,-8,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,940,104,1,1145,71,1,0 +2013,8,21,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1349,-8,0,1519,-22,0,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,855,141,1,1108,113,1,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1820,2,0,55,9,0,0 +2013,8,1,4,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1806,172,1,2107,154,1,0 +2013,4,26,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,625,5,0,920,7,0,0 +2013,4,29,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,650,-3,0,810,-8,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2250,-3,0,15,-12,0,0 +2013,7,17,3,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1437,-10,0,1610,-12,0,0 +2013,4,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,716,8,0,926,6,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-2,0,1520,-13,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1810,6,0,1915,3,0,0 +2013,6,27,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,939,43,1,1105,43,1,0 +2013,9,21,6,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1620,-3,0,1935,-43,0,0 +2013,7,27,6,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,3,0,1635,7,0,0 +2013,7,4,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-6,0,1200,-4,0,0 +2013,10,10,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1511,2,0,1532,-7,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-8,0,1619,-23,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2020,2,0,2241,-17,0,0 +2013,5,22,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1405,14,0,1520,10,0,0 +2013,8,4,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1240,-11,0,1521,-7,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,940,3,0,1050,-11,0,0 +2013,9,13,5,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,600,-7,0,744,-25,0,0 +2013,8,2,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1730,-5,0,1900,-30,0,0 +2013,10,19,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-2,0,1123,0,0,0 +2013,10,23,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,-9,0,2140,-9,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,-1,0,2312,-14,0,0 +2013,6,12,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,5,0,1914,-7,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1300,3,0,1635,-1,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,953,27,1,1116,13,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,855,-3,0,955,-16,0,0 +2013,8,26,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,-1,0,1025,6,0,0 +2013,6,1,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1645,39,1,1800,35,1,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2249,90,1,736,80,1,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1843,-4,0,2146,-40,0,0 +2013,10,15,2,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1701,45,1,1825,52,1,0 +2013,6,20,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,720,324,1,740,319,1,0 +2013,5,18,6,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,-10,0,903,-9,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,935,9,0,1315,14,0,0 +2013,10,28,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1420,-5,0,1607,13,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1340,10,0,1430,5,0,0 +2013,8,19,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-5,0,1905,-15,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,-2,0,1810,-16,0,0 +2013,5,17,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,2,0,2140,11,0,0 +2013,9,8,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1405,-5,0,1715,-8,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2155,111,1,2335,95,1,0 +2013,9,20,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-5,0,1020,-13,0,0 +2013,4,10,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,103,1,2154,96,1,0 +2013,6,5,3,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,840,-9,0,1023,-19,0,0 +2013,10,2,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-17,0,2220,-8,0,0 +2013,10,8,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1929,-5,0,2140,-11,0,0 +2013,5,13,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1815,9,0,2016,1,0,0 +2013,6,12,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1320,-1,0,1435,-4,0,0 +2013,10,3,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,-5,0,1905,22,1,0 +2013,10,19,6,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1314,3,0,1705,-12,0,0 +2013,4,12,5,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1625,-7,0,1901,-14,0,0 +2013,5,26,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1430,16,1,1749,17,1,0 +2013,8,15,4,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1432,-7,0,1610,-15,0,0 +2013,9,20,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,37,1,2205,22,1,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,-6,0,2128,10,0,0 +2013,8,22,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,630,-6,0,920,-8,0,0 +2013,7,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1005,2,0,1205,-5,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1305,-3,0,1405,-8,0,0 +2013,4,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,-3,0,1506,-9,0,0 +2013,8,7,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1545,20,1,1915,11,0,0 +2013,10,27,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1245,23,1,1520,9,0,0 +2013,7,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,3,0,1752,11,0,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,-5,0,2139,19,1,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1105,-5,0,1430,-5,0,0 +2013,8,6,2,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1929,-6,0,2149,-7,0,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,620,-5,0,716,-7,0,0 +2013,8,14,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,810,-7,0,1031,-11,0,0 +2013,6,29,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1250,-3,0,1640,0,0,0 +2013,9,25,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-7,0,937,-12,0,0 +2013,4,1,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,19,1,1710,6,0,0 +2013,9,27,5,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,4,0,2010,13,0,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1452,11,0,1747,7,0,0 +2013,9,23,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1355,-6,0,1405,-16,0,0 +2013,9,9,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-8,0,1659,-13,0,0 +2013,5,26,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-7,0,800,-15,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1525,-4,0,1920,2,0,0 +2013,10,10,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1647,19,1,1754,10,0,0 +2013,10,16,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2025,-3,0,2145,-11,0,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1740,-2,0,1855,-28,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1720,15,1,1835,37,1,0 +2013,5,28,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-1,0,825,-20,0,0 +2013,6,22,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2035,17,1,2145,54,1,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1835,3,0,2352,14,0,0 +2013,5,25,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1900,-4,0,2227,3,0,0 +2013,8,7,3,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,720,-2,0,1000,2,0,0 +2013,8,17,6,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,-6,0,1800,-17,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1340,10,0,1458,4,0,0 +2013,8,22,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,645,-2,0,1157,-1,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,2,0,845,5,0,0 +2013,9,28,6,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1700,-5,0,1900,-14,0,0 +2013,5,23,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-2,0,1835,2,0,0 +2013,7,22,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-4,0,1119,17,1,0 +2013,4,10,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,610,-8,0,725,-14,0,0 +2013,5,7,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,17,1,2020,-17,0,0 +2013,5,4,6,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1529,-8,0,1744,-18,0,0 +2013,6,28,5,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-6,0,1040,-18,0,0 +2013,9,27,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,3,0,1445,4,0,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1855,-3,0,1950,-4,0,0 +2013,6,25,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1802,61,1,2005,99,1,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,8,0,1130,1,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,941,26,1,1152,-6,0,0 +2013,4,27,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1230,-10,0,1421,-29,0,0 +2013,5,27,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,-1,0,1914,0,0,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,655,1,0,1120,-8,0,0 +2013,6,14,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,900,-3,0,1005,-4,0,0 +2013,8,7,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1008,25,1,1412,42,1,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,905,2,0,1155,-11,0,0 +2013,10,30,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1150,0,0,1300,-5,0,0 +2013,10,2,3,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1926,-10,0,2102,-25,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1700,10,0,1830,2,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,-4,0,1033,2,0,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1500,2,0,1646,-10,0,0 +2013,6,6,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-4,0,1552,-10,0,0 +2013,5,31,5,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1032,204,1,1629,242,1,0 +2013,6,28,5,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,1,0,1645,7,0,0 +2013,7,27,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,6,0,1545,3,0,0 +2013,5,2,4,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,2,0,2020,11,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1900,-2,0,2120,-11,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,-3,0,2235,-17,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,24,1,35,19,1,0 +2013,6,29,6,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2327,4,0,510,-4,0,0 +2013,10,30,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-5,0,835,8,0,0 +2013,10,8,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1719,-2,0,1840,-18,0,0 +2013,10,3,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,-2,0,1350,-11,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,11,0,1916,1,0,0 +2013,5,9,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1604,-1,0,1725,-11,0,0 +2013,7,20,6,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,745,1,0,1124,10,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,9,0,1630,-1,0,0 +2013,8,31,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1123,-3,0,1503,-40,0,0 +2013,10,13,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,630,1,0,1454,-17,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,1,0,1639,-15,0,0 +2013,5,21,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,1114,-4,0,0 +2013,8,7,3,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,8,0,2025,2,0,0 +2013,9,27,5,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1010,-19,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-4,0,1612,-3,0,0 +2013,5,31,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-8,0,1008,-20,0,0 +2013,4,8,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,745,-3,0,1045,-17,0,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,-3,0,1123,-4,0,0 +2013,9,5,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1205,-6,0,1310,-5,0,0 +2013,10,15,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1335,17,1,1455,26,1,0 +2013,8,7,3,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,917,-4,0,1030,-12,0,0 +2013,7,5,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,600,11,0,1155,14,0,0 +2013,8,29,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1455,20,1,1605,9,0,0 +2013,7,10,3,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,222,1,2103,222,1,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2000,6,0,2100,1,0,0 +2013,8,23,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,-7,0,952,-21,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1230,50,1,1605,47,1,0 +2013,9,20,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,625,-5,0,1214,-6,0,0 +2013,9,22,7,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1355,-5,0,1535,-9,0,0 +2013,8,10,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-1,0,2049,-6,0,0 +2013,4,29,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1640,15,1,1850,19,1,0 +2013,8,26,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1343,-9,0,1650,-8,0,0 +2013,9,9,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,740,-3,0,900,-10,0,0 +2013,6,14,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,28,1,1620,33,1,0 +2013,10,15,2,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,-5,0,1115,-7,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1725,2,0,1855,-5,0,0 +2013,4,14,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,1140,-2,0,1524,29,1,0 +2013,6,2,7,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1125,400,1,2005,390,1,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,1,0,1830,-13,0,0 +2013,4,2,2,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1720,144,1,1857,122,1,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,-1,0,2000,-11,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1640,0,0,1900,-14,0,0 +2013,5,7,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1345,13,0,1445,8,0,0 +2013,4,12,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1300,-4,0,1435,-14,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-8,0,2202,-11,0,0 +2013,8,9,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1310,19,1,1432,51,1,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,730,-3,0,1030,-11,0,0 +2013,8,3,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,1,0,1825,-17,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,930,0,0,1400,-22,0,0 +2013,4,5,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,831,61,1,1151,-2,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2015,37,1,2310,36,1,0 +2013,9,15,7,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-6,0,2145,-10,0,0 +2013,6,18,2,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-2,0,1036,-4,0,0 +2013,4,9,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,194,1,1254,188,1,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-5,0,954,3,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1355,10,0,1545,-7,0,0 +2013,6,26,3,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1027,6,0,1359,8,0,0 +2013,7,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1715,14,0,1840,7,0,0 +2013,9,23,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2040,19,1,2210,21,1,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-5,0,1251,-6,0,0 +2013,4,13,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-9,0,1618,-21,0,0 +2013,8,6,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-3,0,1231,-8,0,0 +2013,8,26,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,645,-7,0,830,-7,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1450,89,1,1610,85,1,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2040,41,1,2220,33,1,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,-4,0,1225,-7,0,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2046,-8,0,2215,-27,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,13796,Metropolitan Oakland International,Oakland,CA,1942,21,1,2308,4,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1434,0,0,1619,-25,0,0 +2013,8,7,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,820,-1,0,940,-9,0,0 +2013,5,23,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,630,-7,0,750,-5,0,0 +2013,9,18,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1350,1,0,1512,-12,0,0 +2013,6,26,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,925,4,0,1115,3,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,940,0,0,1050,3,0,0 +2013,8,4,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1220,-13,0,1335,-22,0,0 +2013,6,27,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,841,-10,0,0 +2013,5,29,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1030,60,1,1205,47,1,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,-4,0,2244,19,1,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,5,0,1150,7,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,22,1,1612,50,1,0 +2013,8,22,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1550,18,1,2100,21,1,0 +2013,8,6,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,21,1,510,9,0,0 +2013,9,19,4,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,800,-5,0,1025,-15,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1509,-6,0,1646,-14,0,0 +2013,5,4,6,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,710,-4,0,825,-28,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1523,-7,0,1653,-14,0,0 +2013,5,1,3,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1804,17,1,2057,5,0,0 +2013,9,1,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,0,0,1548,-10,0,0 +2013,10,12,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1340,-8,0,1600,-6,0,0 +2013,4,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1019,-5,0,1200,0,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,-2,0,1110,19,1,0 +2013,7,9,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1640,1,0,1925,38,1,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,21,1,1030,12,0,0 +2013,8,22,4,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-8,0,2039,-15,0,0 +2013,4,18,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,2,0,550,-4,0,0 +2013,8,31,6,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2040,-3,0,2156,-20,0,0 +2013,8,3,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1751,42,1,1943,19,1,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1021,42,1,1255,41,1,0 +2013,6,16,7,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,835,-5,0,952,-14,0,0 +2013,9,12,4,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1633,13,0,2044,12,0,0 +2013,6,17,1,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1123,-3,0,1455,4,0,0 +2013,8,8,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1605,-1,0,1730,13,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,-6,0,1628,-16,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,715,5,0,815,-5,0,0 +2013,10,21,1,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,825,-2,0,1140,-18,0,0 +2013,8,1,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1745,-5,0,1930,-13,0,0 +2013,6,11,2,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,630,-1,0,805,-1,0,0 +2013,9,26,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1352,-2,0,1446,4,0,0 +2013,6,21,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,10,0,1935,7,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1140,-3,0,1240,-12,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,804,81,1,942,91,1,0 +2013,9,2,1,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-11,0,1715,-19,0,0 +2013,5,10,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-5,0,1837,-3,0,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-2,0,2001,-9,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1905,25,1,2026,7,0,0 +2013,7,30,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,-4,0,1125,3,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-6,0,1156,7,0,0 +2013,6,14,5,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1353,-3,0,1700,-4,0,0 +2013,10,11,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,51,1,1530,43,1,0 +2013,7,22,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-6,0,1311,-9,0,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1710,254,1,1810,273,1,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-3,0,2226,-14,0,0 +2013,6,16,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,2,0,1011,-2,0,0 +2013,9,17,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,950,-5,0,1123,-8,0,0 +2013,5,31,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,2030,-8,0,2210,-10,0,0 +2013,8,30,5,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,0,0,1150,-2,0,0 +2013,7,25,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1140,-4,0,1331,-14,0,0 +2013,4,5,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2130,-4,0,540,-5,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,857,7,0,1137,7,0,0 +2013,5,20,1,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,915,-5,0,0 +2013,7,12,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,0,0,1524,4,0,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-7,0,2124,-9,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-2,0,918,-11,0,0 +2013,10,3,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1512,77,1,1914,61,1,0 +2013,6,25,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1050,1,0,1159,-5,0,0 +2013,9,27,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-6,0,1121,-18,0,0 +2013,8,1,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-7,0,908,-6,0,0 +2013,10,3,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-8,0,925,-16,0,0 +2013,7,25,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,7,0,2030,-4,0,0 +2013,6,15,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,10,0,950,3,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,735,-5,0,1013,-15,0,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,900,-6,0,1142,-3,0,0 +2013,7,21,7,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,9,0,1740,16,1,0 +2013,6,6,4,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1644,-2,0,1751,11,0,0 +2013,5,14,2,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-8,0,1918,-31,0,0 +2013,4,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-6,0,800,1,0,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1635,-1,0,1938,-34,0,0 +2013,9,29,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1835,4,0,2005,11,0,0 +2013,8,28,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-7,0,1910,-12,0,0 +2013,5,12,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1703,4,0,1803,-13,0,0 +2013,10,8,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,815,-1,0,1000,-2,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,4,0,609,-14,0,0 +2013,9,24,2,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-4,0,1955,-12,0,0 +2013,5,15,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1130,-4,0,1431,-12,0,0 +2013,10,23,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1610,-9,0,0 +2013,4,29,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,15,1,1845,3,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,923,-33,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,-5,0,1305,9,0,0 +2013,8,7,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1110,45,1,0 +2013,5,29,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,915,-8,0,1105,-36,0,0 +2013,6,19,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-5,0,752,-1,0,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1039,13,0,1636,-10,0,0 +2013,7,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,723,-2,0,924,0,0,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1735,-1,0,2048,17,1,0 +2013,5,6,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1848,58,1,2226,71,1,0 +2013,8,20,2,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-2,0,945,-8,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,700,-3,0,800,-3,0,0 +2013,5,3,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-7,0,1630,-12,0,0 +2013,5,6,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1238,41,1,1323,47,1,0 +2013,7,17,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1855,-13,0,2009,-20,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1719,196,1,1829,236,1,0 +2013,5,11,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1713,4,0,1940,6,0,0 +2013,6,5,3,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,655,2,0,910,-7,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2103,10,0,11,-3,0,0 +2013,9,30,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,-2,0,1929,12,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1355,4,0,1615,-7,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,51,1,2324,30,1,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1655,11,0,1750,26,1,0 +2013,10,14,1,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2100,-7,0,2221,-7,0,0 +2013,5,8,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,-1,0,1355,-20,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,-6,0,1130,-19,0,0 +2013,10,24,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-5,0,935,-15,0,0 +2013,6,6,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2149,-7,0,143,-19,0,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,845,3,0,1040,-11,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1355,79,1,1652,67,1,0 +2013,10,27,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1455,-5,0,1630,-7,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1655,0,0,1910,-13,0,0 +2013,6,12,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,935,-1,0,1050,-4,0,0 +2013,8,20,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,29,1,1941,48,1,0 +2013,5,19,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1357,-1,0,1710,5,0,0 +2013,5,17,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-1,0,1714,-8,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,29,1,2145,29,1,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2210,107,1,2330,136,1,0 +2013,8,22,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,931,163,1,1053,153,1,0 +2013,4,6,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-8,0,805,0,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1720,-2,0,2055,-14,0,0 +2013,9,13,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,830,0,,1040,0,1,1 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1230,42,1,1340,38,1,0 +2013,7,11,4,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,630,-2,0,753,2,0,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1200,-4,0,1343,-16,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1247,1,0,1619,-11,0,0 +2013,7,6,6,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1040,12,0,1155,-8,0,0 +2013,10,6,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,957,-4,0,1600,-2,0,0 +2013,7,5,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-13,0,1050,-9,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1940,39,1,2325,45,1,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,43,1,1430,38,1,0 +2013,9,3,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1828,-10,0,1939,-12,0,0 +2013,8,1,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,35,1,2135,31,1,0 +2013,5,20,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,19,1,2301,30,1,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1955,-2,0,2135,-5,0,0 +2013,6,27,4,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1650,5,0,2055,13,0,0 +2013,4,25,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1000,-4,0,1105,23,1,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1040,-1,0,1205,-1,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1716,-5,0,1826,-1,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1915,2,0,2015,11,0,0 +2013,8,17,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1735,92,1,1845,85,1,0 +2013,5,5,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-5,0,1627,-4,0,0 +2013,10,5,6,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1507,-3,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1533,11,0,1809,23,1,0 +2013,9,28,6,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1200,-5,0,1436,14,0,0 +2013,8,27,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,1247,2,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,0,0,1506,-14,0,0 +2013,8,18,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,945,0,0,1045,3,0,0 +2013,4,4,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,40,1,1555,35,1,0 +2013,5,13,1,EV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1717,-2,0,1904,-20,0,0 +2013,4,13,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,725,-4,0,1012,-17,0,0 +2013,4,29,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1714,-9,0,2005,-1,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,755,31,1,1118,34,1,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1245,49,1,1353,50,1,0 +2013,9,17,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1159,0,0,1524,8,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1245,42,1,1425,32,1,0 +2013,4,20,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,0,0,1222,-6,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1634,1,0,1758,9,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,3,0,844,7,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,945,5,0,1046,-8,0,0 +2013,7,24,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,10,0,2020,10,0,0 +2013,10,10,4,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,832,-6,0,926,3,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1340,42,1,2159,31,1,0 +2013,5,17,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,10,0,1505,-5,0,0 +2013,9,7,6,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1237,-2,0,1820,3,0,0 +2013,4,20,6,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1531,-6,0,1642,-14,0,0 +2013,6,29,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1344,-1,0,1515,-17,0,0 +2013,5,29,3,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,842,-4,0,1020,3,0,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,-5,0,1210,25,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,-4,0,2055,-14,0,0 +2013,5,28,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,950,-8,0,1119,-16,0,0 +2013,4,5,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,6,0,1819,11,0,0 +2013,10,20,7,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1330,29,1,1510,24,1,0 +2013,6,6,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-2,0,820,1,0,0 +2013,7,11,4,FL,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1908,-3,0,2213,-12,0,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-4,0,1418,-25,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,-3,0,920,-7,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1415,39,1,1630,37,1,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,653,6,0,1520,28,1,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1810,42,1,2030,21,1,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1812,-6,0,1941,2,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-2,0,1940,-7,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1530,-1,0,1941,-2,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,900,-3,0,1428,-10,0,0 +2013,7,23,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-1,0,1405,0,0,0 +2013,5,4,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,4,0,1828,7,0,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,5,0,2217,-7,0,0 +2013,6,3,1,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,643,-5,0,947,-15,0,0 +2013,5,23,4,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1010,0,0,1245,-20,0,0 +2013,5,29,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1550,-6,0,1819,-23,0,0 +2013,9,13,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,-15,0,720,2,0,0 +2013,6,30,7,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1715,146,1,1855,112,1,0 +2013,10,20,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1314,15,1,1915,32,1,0 +2013,8,5,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,840,-10,0,1255,-7,0,0 +2013,5,6,1,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1121,-5,0,1242,-6,0,0 +2013,9,8,7,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2000,19,1,2229,-2,0,0 +2013,10,15,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1515,-6,0,1735,-11,0,0 +2013,8,22,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,650,5,0,738,11,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,630,2,0,1125,-7,0,0 +2013,9,30,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1650,-6,0,1740,-8,0,0 +2013,9,14,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-2,0,820,-9,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1255,-2,0,1340,-12,0,0 +2013,10,6,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1850,22,1,2005,21,1,0 +2013,10,27,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1800,1,0,1920,-7,0,0 +2013,5,2,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-4,0,1554,-3,0,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1405,7,0,1455,-4,0,0 +2013,9,22,7,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,34,1,1820,15,1,0 +2013,10,1,2,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,950,-6,0,1115,-11,0,0 +2013,10,21,1,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1225,0,0,1540,-3,0,0 +2013,8,30,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,925,46,1,1135,46,1,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,12,0,1643,-1,0,0 +2013,8,7,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1650,35,1,1818,44,1,0 +2013,6,17,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1820,-4,0,2111,-15,0,0 +2013,7,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1230,0,,1355,0,1,1 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1632,-3,0,2002,-9,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2307,-8,0,511,-2,0,0 +2013,9,7,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-16,0,912,-11,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1755,12,0,2020,7,0,0 +2013,10,25,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,710,-3,0,835,1,0,0 +2013,10,24,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,0,0,1015,-15,0,0 +2013,9,10,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1002,-3,0,1057,-5,0,0 +2013,8,12,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1430,-10,0,1630,-18,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,850,91,1,1010,76,1,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-5,0,1631,-5,0,0 +2013,8,4,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-4,0,2005,-29,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1253,-6,0,1518,-3,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,0,0,2249,-8,0,0 +2013,8,5,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1445,76,1,1600,71,1,0 +2013,4,27,6,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-4,0,2157,-51,0,0 +2013,7,30,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,755,2,0,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1600,81,1,1740,63,1,0 +2013,10,8,2,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-11,0,500,-19,0,0 +2013,8,5,1,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,47,1,1927,44,1,0 +2013,4,4,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1157,0,0,1714,16,1,0 +2013,10,23,3,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1111,-3,0,1311,3,0,0 +2013,6,30,7,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1135,-6,0,1408,-18,0,0 +2013,7,13,6,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,0,,649,0,1,1 +2013,5,23,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1243,48,1,1610,43,1,0 +2013,10,8,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-3,0,1730,-3,0,0 +2013,7,9,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1210,-2,0,1310,4,0,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,-5,0,1622,-18,0,0 +2013,7,11,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1653,1,0,2200,8,0,0 +2013,6,21,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,18,1,1400,-4,0,0 +2013,8,4,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,18,1,1824,13,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1501,0,0,1550,7,0,0 +2013,6,8,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,12,0,2107,-4,0,0 +2013,9,10,2,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-6,0,1647,-10,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1046,-4,0,1148,-17,0,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1252,-5,0,1420,-9,0,0 +2013,7,21,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,1125,-5,0,0 +2013,9,30,1,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,650,-4,0,1509,-35,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,725,-1,0,904,-24,0,0 +2013,4,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1630,-3,0,1745,-5,0,0 +2013,5,21,2,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,4,0,1425,2,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,910,-2,0,1010,-11,0,0 +2013,7,13,6,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,929,27,1,1214,15,1,0 +2013,4,24,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,29,1,1836,89,1,0 +2013,8,2,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-1,0,1124,-12,0,0 +2013,9,5,4,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1835,216,1,2120,213,1,0 +2013,4,9,2,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1225,0,0,1400,-9,0,0 +2013,6,29,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1538,51,1,1652,56,1,0 +2013,9,3,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-3,0,1538,-14,0,0 +2013,5,19,7,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1540,11,0,1835,4,0,0 +2013,7,6,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-1,0,1411,-3,0,0 +2013,8,10,6,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,740,2,0,950,11,0,0 +2013,9,6,5,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1453,11,0,1620,-13,0,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1940,4,0,50,12,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1500,3,0,1715,-6,0,0 +2013,5,22,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,11,0,2135,13,0,0 +2013,5,20,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,630,-5,0,1040,-4,0,0 +2013,4,4,4,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1029,-6,0,1313,-2,0,0 +2013,10,5,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1412,-6,0,1554,-9,0,0 +2013,6,28,5,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,8,0,2145,16,1,0 +2013,5,22,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1225,-4,0,1325,-10,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1040,2,0,1400,-5,0,0 +2013,4,17,3,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,0,0,940,5,0,0 +2013,4,25,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1135,25,1,1210,26,1,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,2,0,2305,2,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,14,0,1830,0,0,0 +2013,5,15,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,14,0,1802,-16,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1415,7,0,2235,-10,0,0 +2013,10,1,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1415,10,0,1535,3,0,0 +2013,10,13,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,941,-2,0,1619,-2,0,0 +2013,10,28,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,915,-8,0,1036,-19,0,0 +2013,5,16,4,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1050,-7,0,1215,-16,0,0 +2013,7,24,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,850,-5,0,1200,-15,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,1,0,2120,-4,0,0 +2013,10,3,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-4,0,1340,-21,0,0 +2013,8,28,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,840,-6,0,1255,1,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,8,0,1328,20,1,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,841,0,0,938,-7,0,0 +2013,8,31,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1035,6,0,1300,3,0,0 +2013,4,30,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-4,0,1238,-1,0,0 +2013,7,27,6,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1347,67,1,1419,57,1,0 +2013,5,11,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1435,7,0,1700,-7,0,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1715,-5,0,2048,11,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,0,,1435,0,1,1 +2013,9,15,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-6,0,1242,2,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10,-7,0,800,-24,0,0 +2013,5,8,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,4,0,115,-1,0,0 +2013,10,10,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,-8,0,845,-14,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,0,0,1236,-8,0,0 +2013,7,12,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2035,99,1,2140,90,1,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2005,15,1,2125,15,1,0 +2013,6,16,7,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,-1,0,2226,-13,0,0 +2013,9,12,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1555,27,1,1916,26,1,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,12,0,1530,5,0,0 +2013,9,18,3,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1933,-8,0,2152,-25,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1000,-4,0,1306,-6,0,0 +2013,5,6,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1815,16,1,1954,2,0,0 +2013,6,20,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2205,126,1,2335,121,1,0 +2013,10,7,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,0,,1611,0,1,1 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2106,0,,2334,0,1,1 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1540,12,0,1730,-7,0,0 +2013,5,15,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,4,0,2210,23,1,0 +2013,6,22,6,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1630,-5,0,1800,-12,0,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,56,1,1810,53,1,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1030,40,1,1610,19,1,0 +2013,6,16,7,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2035,21,1,505,21,1,0 +2013,4,29,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1815,-6,0,1840,-15,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1330,-3,0,1648,9,0,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,-4,0,2303,-16,0,0 +2013,6,11,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,-4,0,1505,-18,0,0 +2013,5,31,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,750,-6,0,0 +2013,10,28,1,OO,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1550,25,1,1728,41,1,0 +2013,7,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1425,27,1,1817,30,1,0 +2013,10,22,2,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1735,-4,0,2000,-17,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2040,0,0,2206,2,0,0 +2013,4,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,4,0,1414,3,0,0 +2013,10,26,6,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,704,-9,0,822,-3,0,0 +2013,9,5,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,855,5,0,1210,9,0,0 +2013,5,17,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1703,-4,0,1734,-3,0,0 +2013,4,1,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-10,0,919,0,0,0 +2013,6,24,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1725,0,,1838,0,1,1 +2013,5,5,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1740,2,0,2025,-7,0,0 +2013,10,11,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,125,1,1649,138,1,0 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2003,16,1,2347,28,1,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1010,0,0,1253,-15,0,0 +2013,8,2,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1810,2,0,1925,-2,0,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-1,0,2021,-10,0,0 +2013,7,9,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,-5,0,10,-20,0,0 +2013,8,14,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2037,18,1,2158,8,0,0 +2013,4,26,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1142,11,0,1646,4,0,0 +2013,7,20,6,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1909,8,0,2204,10,0,0 +2013,7,24,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1305,22,1,1435,15,1,0 +2013,7,19,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,810,3,0,930,0,0,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,825,4,0,1030,-7,0,0 +2013,6,17,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1743,27,1,1929,13,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1245,1,0,1410,4,0,0 +2013,9,6,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1725,-5,0,1855,-10,0,0 +2013,4,18,4,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,33,1,2045,26,1,0 +2013,7,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1605,-3,0,1715,-11,0,0 +2013,10,23,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-4,0,2051,-3,0,0 +2013,4,11,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,920,-2,0,1715,-11,0,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,11,0,1050,7,0,0 +2013,8,16,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,10,0,1015,11,0,0 +2013,6,27,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,520,1,0,620,-5,0,0 +2013,9,1,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,958,-5,0,1145,-4,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1225,9,0,2007,-1,0,0 +2013,10,29,2,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1250,-2,0,1610,-14,0,0 +2013,4,26,5,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,2,0,1800,-2,0,0 +2013,9,1,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1034,-1,0,1144,-8,0,0 +2013,10,17,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,19,1,1550,11,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1910,0,,2125,0,1,1 +2013,4,22,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,132,1,2333,160,1,0 +2013,9,20,5,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1545,-6,0,1925,-12,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1456,61,1,1603,50,1,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,41,1,1415,30,1,0 +2013,5,2,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2035,36,1,2055,32,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,930,7,0,1400,-6,0,0 +2013,8,2,5,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1630,62,1,1805,68,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,955,14,0,1201,4,0,0 +2013,4,27,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,0,0,1441,-7,0,0 +2013,8,2,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-1,0,1151,-8,0,0 +2013,7,21,7,YV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1215,-1,0,1350,-18,0,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1531,6,0,1802,9,0,0 +2013,9,11,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,-5,0,1513,-6,0,0 +2013,8,13,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1458,-2,0,1652,-6,0,0 +2013,6,5,3,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1214,7,0,1819,-28,0,0 +2013,9,19,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-1,0,1000,-15,0,0 +2013,7,18,4,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,459,0,0,804,-24,0,0 +2013,8,18,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,-7,0,1409,-9,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,31,1,1255,17,1,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1455,11,0,1631,2,0,0 +2013,8,21,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1715,-5,0,1946,-6,0,0 +2013,9,17,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-3,0,1045,-4,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-2,0,919,1,0,0 +2013,6,2,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-2,0,915,-8,0,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1545,90,1,1650,87,1,0 +2013,6,2,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-4,0,714,-25,0,0 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-9,0,918,-30,0,0 +2013,6,16,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-3,0,1010,-14,0,0 +2013,9,29,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1940,13,0,2140,7,0,0 +2013,6,23,7,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1315,11,0,1410,-1,0,0 +2013,6,8,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,800,0,0,930,-4,0,0 +2013,9,24,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1814,-8,0,2310,-24,0,0 +2013,5,16,4,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1043,98,1,1428,97,1,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1315,-5,0,1540,15,1,0 +2013,6,22,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-3,0,943,-5,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1520,-1,0,1631,-1,0,0 +2013,10,19,6,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1455,-3,0,1720,16,1,0 +2013,10,27,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,3,0,1404,14,0,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-6,0,1552,-12,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,13,0,2305,14,0,0 +2013,4,28,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1956,-7,0,2139,7,0,0 +2013,7,15,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-5,0,1520,-16,0,0 +2013,7,30,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-1,0,651,0,0,0 +2013,6,15,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,905,-6,0,1200,-12,0,0 +2013,7,30,2,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2310,-5,0,730,-14,0,0 +2013,5,31,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-9,0,848,0,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,-3,0,1900,-9,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,37,1,1910,50,1,0 +2013,7,5,5,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1750,-2,0,1935,-15,0,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1825,4,0,1945,0,0,0 +2013,6,7,5,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,-4,0,722,-9,0,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,829,16,1,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,825,-1,0,1005,-3,0,0 +2013,8,22,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,845,19,1,1015,4,0,0 +2013,8,17,6,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1525,18,1,1605,6,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,-5,0,1105,0,0,0 +2013,7,31,3,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,610,-1,0,745,-10,0,0 +2013,6,5,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-4,0,800,-12,0,0 +2013,9,16,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,855,-6,0,949,-7,0,0 +2013,10,24,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1706,11,0,1842,18,1,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,1,0,1230,11,0,0 +2013,5,1,3,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,107,1,1910,101,1,0 +2013,10,12,6,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1619,-7,0,1638,-4,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1925,0,0,2130,-6,0,0 +2013,5,30,4,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,2,0,648,9,0,0 +2013,8,8,4,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-1,0,857,-4,0,0 +2013,5,27,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,630,-2,0,923,-11,0,0 +2013,9,28,6,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-4,0,1010,5,0,0 +2013,6,9,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1442,-2,0,2023,-13,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,9,0,1507,-9,0,0 +2013,9,30,1,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-5,0,1806,2,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1815,20,1,2259,1,0,0 +2013,8,4,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1715,256,1,2010,237,1,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,97,1,2205,105,1,0 +2013,5,12,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1057,-3,0,1910,-12,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1155,1,0,1300,-4,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,600,18,1,905,4,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,4,0,1147,16,1,0 +2013,9,29,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1015,-2,0,1605,2,0,0 +2013,6,13,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,900,-6,0,1052,-30,0,0 +2013,7,15,1,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,-8,0,1900,-37,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,15,1,1315,6,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2045,20,1,2335,12,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,10,0,1730,12,0,0 +2013,10,31,4,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-11,0,1020,12,0,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-5,0,1802,-19,0,0 +2013,5,3,5,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1305,-8,0,1440,3,0,0 +2013,7,22,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,0,0,1810,-12,0,0 +2013,6,8,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-7,0,1215,-10,0,0 +2013,4,29,1,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,851,22,1,0 +2013,5,23,4,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,11,0,1105,4,0,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2005,6,0,2137,6,0,0 +2013,4,27,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,931,6,0,1022,-1,0,0 +2013,4,28,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1135,7,0,1324,-6,0,0 +2013,9,18,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,845,-4,0,1010,-10,0,0 +2013,9,30,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,540,-13,0,914,-26,0,0 +2013,10,6,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,5,0,1509,3,0,0 +2013,4,4,4,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1446,-13,0,1614,-14,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1502,10,0,1735,1,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,610,2,0,855,-2,0,0 +2013,10,9,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1735,-4,0,2305,-13,0,0 +2013,5,5,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1102,-5,0,1702,-17,0,0 +2013,10,29,2,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-2,0,1943,-8,0,0 +2013,5,14,2,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,0,0,1520,-4,0,0 +2013,9,2,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-5,0,2137,-20,0,0 +2013,8,1,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,645,-5,0,755,-12,0,0 +2013,5,15,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1515,-7,0,1731,-21,0,0 +2013,6,19,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,700,0,0,903,-1,0,0 +2013,7,14,7,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1945,-6,0,2130,-9,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1534,-3,0,1704,-12,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,840,-1,0,950,1,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2105,-3,0,2215,-4,0,0 +2013,6,29,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,605,-9,0,758,-16,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,-3,0,1641,0,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,3,0,1835,0,0,0 +2013,5,24,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,116,1,2023,108,1,0 +2013,5,19,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2155,29,1,2320,21,1,0 +2013,8,21,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1505,40,1,1745,38,1,0 +2013,5,20,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1145,16,1,1520,6,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2015,38,1,2235,39,1,0 +2013,8,29,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2140,13,0,2358,5,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,740,121,1,845,114,1,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1500,-4,0,2200,-18,0,0 +2013,6,18,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,5,0,1115,12,0,0 +2013,5,26,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,4,0,1654,-1,0,0 +2013,7,6,6,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,11,0,1140,3,0,0 +2013,8,20,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-7,0,1157,-13,0,0 +2013,7,18,4,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,13,0,2237,3,0,0 +2013,7,21,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,81,1,2101,83,1,0 +2013,8,9,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,2000,-3,0,2115,2,0,0 +2013,6,11,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,1,0,535,-19,0,0 +2013,9,9,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1823,-10,0,0 +2013,4,23,2,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,57,1,1635,46,1,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,23,1,1815,32,1,0 +2013,7,10,3,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-5,0,1722,14,0,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,33,1,2116,11,0,0 +2013,10,26,6,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1800,-5,0,1918,-16,0,0 +2013,6,17,1,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,550,-1,0,800,1,0,0 +2013,4,14,7,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-1,0,1208,-5,0,0 +2013,5,24,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1810,-4,0,1922,3,0,0 +2013,10,3,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,40,1,2040,32,1,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1000,4,0,1105,2,0,0 +2013,10,16,3,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,-9,0,2000,-13,0,0 +2013,10,28,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-7,0,1856,4,0,0 +2013,8,22,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,-7,0,1945,-26,0,0 +2013,4,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2155,1,0,2305,4,0,0 +2013,8,10,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,939,91,1,1200,74,1,0 +2013,7,8,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1113,1,0,1700,12,0,0 +2013,6,23,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1145,-1,0,1155,-6,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,4,0,1740,-18,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,955,0,0,1657,0,0,0 +2013,5,25,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,-2,0,1930,-6,0,0 +2013,10,2,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,711,-3,0,821,-4,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1925,3,0,2113,-3,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1140,12,0,1337,20,1,0 +2013,7,13,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,89,1,1639,71,1,0 +2013,10,6,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,3,0,1917,-4,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,-4,0,1725,-19,0,0 +2013,6,18,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-2,0,1628,-3,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1345,-4,0,1617,-14,0,0 +2013,9,19,4,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,70,1,1043,69,1,0 +2013,10,19,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,67,1,1457,69,1,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,840,81,1,1005,83,1,0 +2013,9,4,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-8,0,1527,2,0,0 +2013,10,9,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1123,-12,0,1456,-6,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,12,0,2112,-2,0,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,900,1,0,1050,-11,0,0 +2013,10,13,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1940,84,1,2240,70,1,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1917,-2,0,2156,-19,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1018,125,1,1139,101,1,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-4,0,1315,-12,0,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,730,0,0,850,-2,0,0 +2013,10,6,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,920,1,0,1025,-4,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,8,0,1520,-7,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1529,4,0,1823,-20,0,0 +2013,7,3,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1425,-4,0,1612,-29,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1430,-4,0,1620,-7,0,0 +2013,9,28,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1935,27,1,2326,25,1,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,-4,0,1320,-8,0,0 +2013,9,25,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-6,0,1415,7,0,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,835,4,0,940,-2,0,0 +2013,5,10,5,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1525,37,1,1815,25,1,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,13,0,1121,10,0,0 +2013,5,12,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1141,4,0,1730,-9,0,0 +2013,4,16,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,0,,1840,0,1,1 +2013,10,14,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,0,0,845,-2,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,18,1,1135,33,1,0 +2013,10,20,7,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1050,-2,0,1420,-25,0,0 +2013,4,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2050,16,1,2300,-1,0,0 +2013,5,4,6,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,815,-5,0,1120,0,0,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,0,,1100,0,1,1 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,6,0,2350,16,1,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,550,-2,0,1432,-24,0,0 +2013,5,17,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,0,0,2107,-4,0,0 +2013,5,9,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,-2,0,1623,1,0,0 +2013,4,25,4,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-12,0,831,-36,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1525,30,1,1855,26,1,0 +2013,4,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1717,-3,0,2136,-2,0,0 +2013,8,10,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,831,3,0,1045,-8,0,0 +2013,8,23,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-4,0,845,-7,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,96,1,2200,78,1,0 +2013,8,29,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1015,-1,0,1155,2,0,0 +2013,4,25,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-1,0,1629,-12,0,0 +2013,5,30,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1300,23,1,1540,25,1,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,840,22,1,1025,13,0,0 +2013,8,30,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-8,0,1023,-45,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-4,0,1133,-6,0,0 +2013,8,17,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-5,0,2109,-1,0,0 +2013,9,28,6,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,820,-4,0,1110,-18,0,0 +2013,10,27,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1120,9,0,1300,21,1,0 +2013,8,9,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1534,-4,0,2215,-21,0,0 +2013,10,15,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1030,0,,1355,0,1,1 +2013,10,27,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1630,84,1,1750,90,1,0 +2013,8,27,2,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1455,18,1,1720,1,0,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,3,0,2217,-13,0,0 +2013,7,3,3,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,745,-4,0,1025,-21,0,0 +2013,4,19,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1915,1,0,2210,18,1,0 +2013,7,7,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-4,0,1633,-11,0,0 +2013,8,21,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-6,0,2109,-11,0,0 +2013,10,16,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-2,0,2135,-3,0,0 +2013,9,19,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,956,8,0,0 +2013,5,30,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,828,-3,0,905,-4,0,0 +2013,10,21,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1553,-10,0,1947,9,0,0 +2013,4,9,2,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1550,-3,0,1835,6,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,10,0,1515,-3,0,0 +2013,7,19,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,-2,0,1455,35,1,0 +2013,9,9,1,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1322,-7,0,1636,-4,0,0 +2013,9,7,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1850,-14,0,2052,-6,0,0 +2013,7,29,1,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-5,0,1941,-20,0,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1321,9,0,1453,7,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,51,1,2343,48,1,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2118,-4,0,2221,-14,0,0 +2013,4,24,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-3,0,2140,-7,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1939,195,1,2234,152,1,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1207,-2,0,1533,25,1,0 +2013,7,28,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1723,-3,0,1953,13,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1540,5,0,1810,-12,0,0 +2013,8,8,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1115,0,0,1255,-4,0,0 +2013,9,23,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,35,1,1630,36,1,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,20,1,808,1,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1247,6,0,1355,12,0,0 +2013,4,3,3,WN,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,920,-2,0,1250,-4,0,0 +2013,5,22,3,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,3,0,2034,-21,0,0 +2013,4,8,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-9,0,1012,-16,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,900,12,0,1700,22,1,0 +2013,7,27,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,938,-13,0,1125,-36,0,0 +2013,7,21,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-6,0,1817,-15,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,0,0,2225,-5,0,0 +2013,5,29,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2015,36,1,2130,39,1,0 +2013,8,27,2,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,725,-5,0,925,-19,0,0 +2013,10,31,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,-5,0,1546,-9,0,0 +2013,7,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,945,3,0,1045,3,0,0 +2013,7,21,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,9,0,1609,2,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1845,-1,0,1945,-7,0,0 +2013,10,13,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1940,-6,0,2129,-26,0,0 +2013,7,1,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,8,0,1750,23,1,0 +2013,9,17,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-6,0,1728,-15,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1808,-7,0,2007,-18,0,0 +2013,6,1,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1352,31,1,1440,16,1,0 +2013,4,1,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1735,22,1,1942,22,1,0 +2013,10,11,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1529,11,0,1850,-3,0,0 +2013,4,21,7,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1504,50,1,1724,55,1,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,605,3,0,720,20,1,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,745,-2,0,855,-13,0,0 +2013,7,29,1,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2255,7,0,612,-18,0,0 +2013,6,4,2,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,-6,0,1604,-14,0,0 +2013,10,21,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,905,-5,0,1032,-9,0,0 +2013,6,7,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1224,-1,0,1437,2,0,0 +2013,7,13,6,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1150,-1,0,1340,-8,0,0 +2013,6,20,4,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1105,-5,0,1225,-7,0,0 +2013,7,5,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,0,0,1409,-6,0,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1325,0,0,1415,-6,0,0 +2013,5,2,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,720,-3,0,1037,-8,0,0 +2013,10,19,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,-8,0,1644,-12,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1711,223,1,1846,270,1,0 +2013,4,29,1,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1454,0,,1749,0,1,1 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,3,0,1920,-14,0,0 +2013,7,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,800,-2,0,905,-4,0,0 +2013,7,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,2025,10,0,2245,1,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1905,0,0,2230,0,0,0 +2013,9,12,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1200,27,1,1405,41,1,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,9,0,1335,5,0,0 +2013,9,14,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-14,0,1449,-31,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,-4,0,1907,-13,0,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1200,0,0,1300,-4,0,0 +2013,5,5,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1538,0,0,1850,-2,0,0 +2013,8,18,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1015,67,1,1150,52,1,0 +2013,8,4,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,603,-10,0,1010,-35,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,-1,0,1700,-16,0,0 +2013,6,7,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,-6,0,1426,5,0,0 +2013,6,3,1,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,918,-8,0,1210,-5,0,0 +2013,8,27,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1742,15,1,2002,-8,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,69,1,1625,69,1,0 +2013,10,24,4,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1058,4,0,1139,-1,0,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1858,13,0,2045,-11,0,0 +2013,10,28,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,-5,0,855,-7,0,0 +2013,8,1,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,910,-5,0,1108,20,1,0 +2013,5,17,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1340,2,0,1435,-8,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,2200,-1,0,513,-14,0,0 +2013,4,3,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,903,-6,0,1033,-17,0,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,750,1,0,1120,-20,0,0 +2013,9,23,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,833,-13,0,0 +2013,6,12,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1505,-10,0,1731,4,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1511,0,0,1806,1,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1010,-4,0,1113,-15,0,0 +2013,5,23,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2358,2,0,744,-3,0,0 +2013,9,30,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,24,1,1930,14,0,0 +2013,5,5,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1910,118,1,2040,112,1,0 +2013,6,25,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,758,1,0,834,1,0,0 +2013,4,22,1,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1711,-4,0,2051,-18,0,0 +2013,6,2,7,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,840,-2,0,1015,-3,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1055,-2,0,1325,-26,0,0 +2013,4,26,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,99,1,1549,95,1,0 +2013,8,13,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2305,-1,0,13,-7,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1200,-2,0,1346,6,0,0 +2013,8,14,3,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-6,0,928,-9,0,0 +2013,7,13,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-4,0,1853,1,0,0 +2013,8,21,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,-1,0,1752,11,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,-5,0,1613,-21,0,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1822,-4,0,1943,4,0,0 +2013,10,24,4,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1514,-6,0,1630,-12,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1605,-6,0,1655,-17,0,0 +2013,5,8,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,922,-4,0,1045,-11,0,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,20,1,2210,10,0,0 +2013,9,28,6,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,656,-4,0,909,-23,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,0,0,1000,6,0,0 +2013,9,16,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,0,0,826,-2,0,0 +2013,4,25,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2020,52,1,2040,36,1,0 +2013,4,22,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,3,0,1019,47,1,0 +2013,6,24,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,2020,-4,0,2251,-7,0,0 +2013,10,30,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-2,0,805,-6,0,0 +2013,4,12,5,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1605,0,,1731,0,1,1 +2013,5,24,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1000,2,0,1105,2,0,0 +2013,9,18,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,840,-5,0,1108,-24,0,0 +2013,7,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1500,-8,0,1546,-5,0,0 +2013,5,1,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1200,-1,0,1320,-4,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1500,0,0,1730,-25,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-6,0,1355,-14,0,0 +2013,7,12,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1809,-5,0,2013,-26,0,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,2010,25,1,2325,19,1,0 +2013,5,12,7,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,0,0,1906,-17,0,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2145,-6,0,18,-21,0,0 +2013,10,25,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1730,0,0,1747,0,0,0 +2013,7,31,3,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,92,1,1830,92,1,0 +2013,8,3,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,830,-1,0,919,-9,0,0 +2013,6,10,1,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1113,-8,0,1346,-17,0,0 +2013,6,16,7,OO,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1446,38,1,1613,27,1,0 +2013,7,19,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1728,48,1,1938,57,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,7,0,1225,-3,0,0 +2013,8,5,1,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1005,17,1,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2140,-1,0,2225,-7,0,0 +2013,5,10,5,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,50,1,1835,30,1,0 +2013,9,7,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,-3,0,1613,17,1,0 +2013,6,11,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,-2,0,2300,-12,0,0 +2013,5,2,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-4,0,1434,-29,0,0 +2013,8,9,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1325,7,0,1435,2,0,0 +2013,7,30,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,3,0,1205,-2,0,0 +2013,9,10,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1726,-5,0,1916,-13,0,0 +2013,7,14,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2235,-1,0,653,-11,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-5,0,2220,0,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,725,-1,0,955,-2,0,0 +2013,4,30,2,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,840,-3,0,1110,-20,0,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1900,-2,0,2345,-14,0,0 +2013,10,6,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1715,9,0,1830,36,1,0 +2013,10,28,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1353,16,1,1910,-3,0,0 +2013,9,22,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1930,-1,0,2025,8,0,0 +2013,4,23,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,900,-5,0,1216,-9,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2220,23,1,2325,23,1,0 +2013,6,30,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1652,429,1,1928,407,1,0 +2013,10,10,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1915,-1,0,2025,8,0,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-2,0,1805,-5,0,0 +2013,6,30,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1230,27,1,1454,58,1,0 +2013,8,20,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-11,0,510,-5,0,0 +2013,5,19,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1703,-10,0,1848,-29,0,0 +2013,4,13,6,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1450,-4,0,2320,9,0,0 +2013,8,2,5,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,0,,1845,0,1,1 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1850,0,0,2130,32,1,0 +2013,6,2,7,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,5,0,1916,-5,0,0 +2013,9,4,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1448,-4,0,1522,1,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1728,2,0,2126,-22,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2055,-1,0,2359,-12,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,619,6,0,846,7,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1630,-1,0,1855,-23,0,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1835,106,1,2057,106,1,0 +2013,9,11,3,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1500,3,0,1745,0,0,0 +2013,7,20,6,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1240,96,1,1455,110,1,0 +2013,10,12,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1240,22,1,1400,15,1,0 +2013,4,19,5,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2324,116,1,540,112,1,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1925,18,1,2150,3,0,0 +2013,7,7,7,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,645,-12,0,957,-9,0,0 +2013,5,23,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1030,149,1,1515,147,1,0 +2013,8,28,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1435,28,1,1540,45,1,0 +2013,10,21,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1038,-5,0,1436,-30,0,0 +2013,10,17,4,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1610,-1,0,1850,-5,0,0 +2013,8,3,6,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,710,-1,0,750,0,0,0 +2013,10,13,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2028,6,0,2122,8,0,0 +2013,9,16,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1123,-3,0,1410,-11,0,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,1,0,1740,-4,0,0 +2013,7,31,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,635,0,0,730,-3,0,0 +2013,7,12,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-6,0,2010,25,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,-5,0,1223,41,1,0 +2013,10,30,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1817,-5,0,2118,12,0,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,900,-2,0,1206,-3,0,0 +2013,9,16,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-7,0,2211,-9,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-4,0,1833,-1,0,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2105,10,0,2240,1,0,0 +2013,4,9,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2150,-3,0,2305,-12,0,0 +2013,8,5,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,945,-5,0,1305,-12,0,0 +2013,6,20,4,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,-1,0,1821,3,0,0 +2013,7,26,5,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1100,21,1,1349,10,0,0 +2013,5,26,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,9,0,1718,-2,0,0 +2013,4,30,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,615,-10,0,827,-22,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,-8,0,40,6,0,0 +2013,5,16,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1650,-18,0,0 +2013,7,24,3,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,752,-5,0,1555,-29,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-8,0,1328,-17,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1220,-1,0,1442,-10,0,0 +2013,9,22,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,815,-3,0,1000,-5,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1710,153,1,1925,125,1,0 +2013,6,4,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,14,0,1706,19,1,0 +2013,10,3,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,721,-17,0,0 +2013,10,13,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-10,0,619,-20,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1929,0,0,2122,3,0,0 +2013,9,13,5,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1055,0,0,1404,8,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-5,0,2132,-14,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,925,36,1,1425,36,1,0 +2013,8,9,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1910,-4,0,2023,-27,0,0 +2013,5,25,6,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1259,36,1,1526,51,1,0 +2013,10,6,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,-2,0,1201,-9,0,0 +2013,9,3,2,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,843,-7,0,1114,-10,0,0 +2013,9,7,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1801,-5,0,1946,-11,0,0 +2013,5,10,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1547,18,1,2108,41,1,0 +2013,10,31,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1120,11,0,1723,26,1,0 +2013,9,24,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1235,3,0,1440,0,0,0 +2013,10,17,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-4,0,2041,-11,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1130,-4,0,1440,-11,0,0 +2013,5,12,7,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-7,0,947,1,0,0 +2013,10,6,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,900,117,1,1712,123,1,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2050,-2,0,40,-7,0,0 +2013,6,6,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,810,1,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1932,-5,0,2112,-29,0,0 +2013,8,5,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,0,0,1228,-22,0,0 +2013,6,25,2,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1540,30,1,1843,31,1,0 +2013,4,10,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,0,0,1505,-9,0,0 +2013,8,28,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,600,-3,0,1342,4,0,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2050,0,0,2304,-6,0,0 +2013,6,13,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,-3,0,1917,21,1,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1350,32,1,1500,25,1,0 +2013,6,19,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,643,-6,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1845,33,1,2135,-6,0,0 +2013,7,3,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1305,0,0,1440,-1,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-6,0,1353,-15,0,0 +2013,8,16,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,6,0,920,6,0,0 +2013,7,29,1,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,801,-7,0,1036,-4,0,0 +2013,8,15,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-2,0,2207,0,0,0 +2013,4,9,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-2,0,2135,-5,0,0 +2013,4,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2030,-3,0,2259,32,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,7,0,1707,111,1,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1128,5,0,1258,-12,0,0 +2013,6,6,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,188,1,1840,167,1,0 +2013,10,17,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1832,-3,0,2056,-14,0,0 +2013,5,30,4,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2100,71,1,512,93,1,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2029,102,1,2359,62,1,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1105,47,1,1410,28,1,0 +2013,6,9,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,831,-2,0,0 +2013,9,2,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-5,0,1325,-24,0,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-2,0,1917,7,0,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1546,-3,0,1657,-20,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1330,5,0,1845,7,0,0 +2013,8,22,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1027,6,0,1302,8,0,0 +2013,8,26,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1715,28,1,1825,9,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1215,0,0,1420,-20,0,0 +2013,9,22,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1501,-11,0,1600,-14,0,0 +2013,7,29,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,0,0,820,8,0,0 +2013,5,30,4,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,715,-9,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1043,-6,0,1549,-41,0,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,925,4,0,1040,4,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1410,1,0,1701,-24,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1415,-1,0,1704,20,1,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1009,3,0,1605,-17,0,0 +2013,6,3,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1805,-2,0,2050,-13,0,0 +2013,4,19,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1415,7,0,1920,-14,0,0 +2013,9,11,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,-8,0,1705,34,1,0 +2013,4,24,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-6,0,1530,-20,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,159,1,1525,158,1,0 +2013,7,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1600,-11,0,2007,-14,0,0 +2013,8,2,5,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1430,0,0,1611,11,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,745,34,1,850,31,1,0 +2013,5,23,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-2,0,1916,-8,0,0 +2013,10,20,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,10,0,1400,9,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,955,-7,0,1135,-16,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-3,0,1953,-21,0,0 +2013,9,21,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1136,-3,0,1304,3,0,0 +2013,4,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1515,-2,0,1615,-6,0,0 +2013,6,7,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,745,-3,0,905,-23,0,0 +2013,7,9,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1800,3,0,1915,-5,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,-4,0,1551,-19,0,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1356,21,1,1914,1,0,0 +2013,8,27,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1133,-4,0,1259,-9,0,0 +2013,10,20,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,919,24,1,1015,37,1,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,805,0,0,1500,-10,0,0 +2013,8,22,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,900,2,0,1646,16,1,0 +2013,7,26,5,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1216,-6,0,1302,-9,0,0 +2013,9,25,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1520,-30,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1245,-1,0,1434,-20,0,0 +2013,6,18,2,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,93,1,1940,104,1,0 +2013,6,20,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,0,0,2155,2,0,0 +2013,4,7,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,0,0,1135,-11,0,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1835,-4,0,2050,-23,0,0 +2013,10,2,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,-3,0,1020,-2,0,0 +2013,9,7,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-5,0,1626,1,0,0 +2013,6,16,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-4,0,825,-7,0,0 +2013,7,18,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1327,-4,0,1429,-17,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2215,-6,0,2330,-9,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-9,0,2043,-21,0,0 +2013,10,7,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1020,16,1,1344,27,1,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,830,-2,0,842,-20,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1940,-3,0,2056,-4,0,0 +2013,5,2,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,848,0,0,1142,1,0,0 +2013,9,2,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1850,8,0,2015,8,0,0 +2013,4,2,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,850,-2,0,1010,-11,0,0 +2013,10,7,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,950,85,1,1153,86,1,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1510,6,0,1635,-10,0,0 +2013,5,17,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2015,9,0,2130,10,0,0 +2013,10,2,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1602,-3,0,1824,11,0,0 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1105,12,0,1640,-2,0,0 +2013,7,25,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-4,0,935,5,0,0 +2013,9,5,4,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1500,106,1,1625,150,1,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1815,22,1,2130,7,0,0 +2013,9,23,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1323,-2,0,1831,2,0,0 +2013,8,26,1,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,47,1,1535,18,1,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2010,89,1,2305,92,1,0 +2013,4,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1540,-1,0,1634,7,0,0 +2013,4,7,7,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1200,-5,0,1320,-12,0,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,0,0,1100,-6,0,0 +2013,8,1,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1531,25,1,1855,15,1,0 +2013,8,16,5,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,2,0,2110,-30,0,0 +2013,4,28,7,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-10,0,1839,-1,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,118,1,1835,123,1,0 +2013,10,30,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1256,-6,0,1540,3,0,0 +2013,5,2,4,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-6,0,1831,-28,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-2,0,855,2,0,0 +2013,5,21,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,959,38,1,1631,23,1,0 +2013,6,23,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1845,5,0,2002,-11,0,0 +2013,4,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,942,1,0,1018,-11,0,0 +2013,6,23,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-3,0,2226,-2,0,0 +2013,6,29,6,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,12,0,1409,10,0,0 +2013,6,18,2,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,25,3,0,557,-4,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,34,1,1923,29,1,0 +2013,7,31,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,0,0,1712,43,1,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,650,3,0,935,2,0,0 +2013,8,22,4,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,92,1,1907,82,1,0 +2013,8,29,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,820,18,1,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1430,5,0,1550,-3,0,0 +2013,9,20,5,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-5,0,1240,-1,0,0 +2013,7,20,6,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1013,-6,0,1118,-20,0,0 +2013,4,3,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1245,-3,0,1300,-10,0,0 +2013,5,16,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-8,0,825,5,0,0 +2013,9,30,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1715,-4,0,1840,-11,0,0 +2013,7,8,1,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1710,-6,0,1945,16,1,0 +2013,10,21,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,7,0,947,19,1,0 +2013,8,31,6,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-1,0,1800,-4,0,0 +2013,10,16,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1721,22,1,2100,0,0,0 +2013,7,5,5,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,2,0,1300,-6,0,0 +2013,6,29,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1400,48,1,1507,63,1,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1240,14,0,1410,0,0,0 +2013,6,4,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,620,-5,0,746,-4,0,0 +2013,7,3,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1810,40,1,2105,37,1,0 +2013,10,26,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,933,-3,0,1114,-8,0,0 +2013,6,6,4,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,-3,0,559,-8,0,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,18,1,1110,31,1,0 +2013,6,22,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-7,0,1346,-6,0,0 +2013,8,1,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,1,0,2231,-1,0,0 +2013,6,29,6,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1055,230,1,1918,245,1,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,2,0,1836,-3,0,0 +2013,7,21,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,37,1,1825,67,1,0 +2013,9,16,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,920,-4,0,1214,-15,0,0 +2013,5,8,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,46,1,1840,40,1,0 +2013,4,13,6,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1515,0,0,1740,10,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1610,0,0,1807,6,0,0 +2013,6,14,5,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-1,0,1540,-19,0,0 +2013,5,20,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2016,-10,0,2159,-1,0,0 +2013,9,8,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1725,-2,0,1850,-11,0,0 +2013,8,23,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1100,-2,0,1219,-7,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,0,0,1850,4,0,0 +2013,10,1,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1220,-2,0,1330,-3,0,0 +2013,10,13,7,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,7,0,1615,14,0,0 +2013,5,26,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-8,0,1431,-8,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1539,4,0,1720,-2,0,0 +2013,4,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1130,-8,0,1153,-15,0,0 +2013,8,14,3,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,0,0,1104,9,0,0 +2013,6,18,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,848,-3,0,922,-2,0,0 +2013,5,10,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,52,1,1945,38,1,0 +2013,6,30,7,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1300,103,1,2128,107,1,0 +2013,4,30,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-7,0,1325,-35,0,0 +2013,7,12,5,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-2,0,1543,6,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,2,0,2025,4,0,0 +2013,8,1,4,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1955,-4,0,2130,-7,0,0 +2013,10,22,2,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,22,1,1205,30,1,0 +2013,10,5,6,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,740,3,0,815,-10,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2257,44,1,2359,34,1,0 +2013,10,9,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-8,0,1630,-18,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,905,-2,0,1116,-9,0,0 +2013,8,11,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1415,48,1,1625,48,1,0 +2013,5,6,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-6,0,1059,-6,0,0 +2013,8,16,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1110,1,0,1455,-1,0,0 +2013,10,14,1,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1425,98,1,1735,85,1,0 +2013,5,1,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-5,0,1237,-5,0,0 +2013,5,2,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-6,0,1540,0,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1815,-3,0,1954,-2,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,815,0,0,940,0,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1632,11,0,2002,3,0,0 +2013,4,11,4,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1340,1,0,1724,4,0,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1844,68,1,2154,46,1,0 +2013,4,29,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1330,-9,0,1606,-2,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1255,3,0,1402,-6,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1732,4,0,2019,-13,0,0 +2013,5,3,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-5,0,1934,-4,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1710,-2,0,1824,5,0,0 +2013,6,29,6,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2156,0,,2252,0,1,1 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-1,0,2358,-5,0,0 +2013,5,14,2,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,-5,0,1117,-8,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,34,1,950,50,1,0 +2013,10,23,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1405,36,1,1525,29,1,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,34,1,2225,25,1,0 +2013,5,12,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,0,1225,-9,0,0 +2013,6,16,7,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1745,4,0,2030,-5,0,0 +2013,6,3,1,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1830,-5,0,2047,-31,0,0 +2013,4,13,6,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,720,2,0,900,3,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1540,3,0,1720,16,1,0 +2013,5,24,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1220,3,0,1325,-4,0,0 +2013,5,24,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-1,0,920,-12,0,0 +2013,5,16,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,120,-6,0,759,-20,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,12,0,1915,6,0,0 +2013,7,29,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1027,-3,0,1302,-15,0,0 +2013,9,2,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1030,-2,0,1400,-13,0,0 +2013,4,24,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-7,0,1855,-23,0,0 +2013,6,23,7,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1225,18,1,1745,18,1,0 +2013,10,21,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,80,1,1400,62,1,0 +2013,10,4,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,-1,0,1635,1,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,83,1,1623,69,1,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-4,0,1618,-9,0,0 +2013,10,12,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1635,-4,0,1845,-12,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,845,4,0,1115,2,0,0 +2013,9,25,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,13,0,2201,0,0,0 +2013,6,16,7,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2115,5,0,510,-13,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,-8,0,2104,-32,0,0 +2013,5,31,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,166,1,2305,160,1,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1900,11,0,2051,7,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,-2,0,1914,3,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2210,7,0,25,-14,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,-6,0,1143,-25,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,31,1,2340,23,1,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,730,2,0,915,-2,0,0 +2013,9,10,2,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1832,-8,0,2115,-19,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-2,0,1342,-14,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,852,-1,0,1015,22,1,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,916,-26,0,0 +2013,7,2,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1225,-1,0,1410,-25,0,0 +2013,8,9,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1723,19,1,1955,19,1,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2235,1,0,28,-22,0,0 +2013,8,18,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,620,-4,0,910,-4,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1240,23,1,1447,22,1,0 +2013,8,8,4,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,955,-2,0,1125,-9,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,930,-4,0,1116,-4,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1535,17,1,2010,5,0,0 +2013,8,10,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,902,-20,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1825,11,0,2340,-3,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1515,-5,0,1605,1,0,0 +2013,9,13,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,925,117,1,1055,108,1,0 +2013,10,1,2,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,0,0,740,-12,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,23,1,1715,34,1,0 +2013,8,30,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,4,0,1840,-9,0,0 +2013,5,21,2,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1432,13,0,1924,31,1,0 +2013,6,2,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-6,0,1223,-12,0,0 +2013,7,16,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1720,49,1,1905,33,1,0 +2013,4,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,62,1,2109,71,1,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1945,2,0,2235,15,1,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,940,-3,0,1202,-19,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1000,-2,0,1151,-2,0,0 +2013,4,3,3,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1240,-8,0,1428,-8,0,0 +2013,6,23,7,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,16,1,1600,13,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-1,0,730,-16,0,0 +2013,6,29,6,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,1145,-7,0,1235,-18,0,0 +2013,8,11,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1749,-6,0,2105,-19,0,0 +2013,8,13,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1250,22,1,1530,26,1,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,0,0,800,0,0,0 +2013,8,18,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,0,0,1632,-2,0,0 +2013,6,23,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,150,1,2035,166,1,0 +2013,5,15,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,0,0,2225,-9,0,0 +2013,10,6,7,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-4,0,1105,-23,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,730,-14,0,945,-8,0,0 +2013,6,3,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1425,162,1,1605,146,1,0 +2013,8,28,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,745,-8,0,817,1,0,0 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1900,2,0,2125,-21,0,0 +2013,5,4,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1710,80,1,2000,70,1,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2306,-3,0,56,-18,0,0 +2013,4,21,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,40,1,1900,33,1,0 +2013,6,4,2,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,845,-6,0,1054,-8,0,0 +2013,10,31,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1135,-7,0,1250,2,0,0 +2013,8,2,5,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,605,-2,0,730,30,1,0 +2013,6,17,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1910,26,1,2220,8,0,0 +2013,10,25,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-3,0,1351,-15,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1715,-1,0,2059,10,0,0 +2013,10,31,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1630,54,1,1810,40,1,0 +2013,4,6,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,4,0,902,7,0,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-2,0,1328,-5,0,0 +2013,8,8,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1755,-5,0,1929,-16,0,0 +2013,6,25,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1440,7,0,1721,12,0,0 +2013,10,11,5,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1641,-6,0,1749,-30,0,0 +2013,9,8,7,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1744,-9,0,2112,-6,0,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1226,-7,0,1420,-18,0,0 +2013,4,17,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1030,2,0,1409,-9,0,0 +2013,7,8,1,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,933,-10,0,1034,-20,0,0 +2013,10,25,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,940,-22,0,0 +2013,9,1,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1500,29,1,1610,18,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,9,0,1636,3,0,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2145,-1,0,2300,1,0,0 +2013,10,31,4,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1340,0,0,1825,-4,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,-4,0,1615,-3,0,0 +2013,8,22,4,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1700,-7,0,2141,-16,0,0 +2013,10,16,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,11,0,610,0,0,0 +2013,7,15,1,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1442,-13,0,1615,-17,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1700,3,0,1825,-10,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1235,38,1,1700,38,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2040,55,1,2224,45,1,0 +2013,5,10,5,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1800,-1,0,1955,-12,0,0 +2013,4,19,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,810,93,1,920,94,1,0 +2013,7,29,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,845,0,0,1045,-9,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-8,0,1345,-19,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1026,-4,0,1153,-17,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,730,1,0,900,-12,0,0 +2013,4,16,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,0,,1855,0,1,1 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2025,2,0,2321,-22,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1435,-3,0,1625,-3,0,0 +2013,8,16,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2239,4,0,445,-7,0,0 +2013,7,12,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-4,0,930,4,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-3,0,1402,25,1,0 +2013,7,27,6,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,730,-2,0,1040,-20,0,0 +2013,8,6,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,715,-1,0,1010,-10,0,0 +2013,8,7,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,-2,0,1415,7,0,0 +2013,8,18,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-1,0,1600,15,1,0 +2013,5,17,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1525,-3,0,1736,-14,0,0 +2013,7,8,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,78,1,2138,95,1,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1145,1,0,1330,7,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1340,7,0,1522,2,0,0 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2045,-1,0,2145,6,0,0 +2013,8,2,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1714,0,0,1855,-2,0,0 +2013,10,3,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2133,115,1,2242,108,1,0 +2013,7,11,4,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2320,51,1,510,50,1,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1105,-7,0,1126,-15,0,0 +2013,4,1,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-9,0,1028,30,1,0 +2013,5,22,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-8,0,930,-6,0,0 +2013,5,29,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1000,-8,0,1114,-12,0,0 +2013,8,22,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,144,1,2030,140,1,0 +2013,9,14,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1010,0,0,1055,5,0,0 +2013,6,15,6,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,5,0,901,12,0,0 +2013,10,6,7,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,800,-1,0,934,-8,0,0 +2013,7,25,4,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1644,-11,0,1829,-15,0,0 +2013,9,29,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2100,11,0,2145,6,0,0 +2013,10,12,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,715,-8,0,735,-19,0,0 +2013,5,22,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-14,0,807,-32,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,8,0,2230,8,0,0 +2013,5,21,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1145,14,0,1332,6,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1840,60,1,5,45,1,0 +2013,10,25,5,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1045,-2,0,1300,-1,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1755,17,1,2305,4,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,1,0,2025,16,1,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1525,-5,0,1752,5,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1905,0,0,15,30,1,0 +2013,6,25,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,846,0,,1016,0,1,1 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1150,-3,0,1320,-12,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1245,2,0,1435,-16,0,0 +2013,7,9,2,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,-4,0,1905,-9,0,0 +2013,10,20,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,935,-3,0,1055,-6,0,0 +2013,8,15,4,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,1,0,2003,-8,0,0 +2013,4,6,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2335,3,0,750,-6,0,0 +2013,5,23,4,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2105,0,,2359,0,1,1 +2013,4,22,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1020,-7,0,1241,-1,0,0 +2013,4,29,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1655,-9,0,1950,-19,0,0 +2013,6,10,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,618,26,1,733,25,1,0 +2013,6,2,7,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1501,62,1,1739,41,1,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,4,0,30,4,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,-1,0,1930,-12,0,0 +2013,10,20,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-8,0,2146,-26,0,0 +2013,9,24,2,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-4,0,1035,5,0,0 +2013,10,9,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,8,0,925,11,0,0 +2013,5,15,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,-4,0,2035,-10,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1920,30,1,2110,32,1,0 +2013,9,10,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,12,0,1305,5,0,0 +2013,5,15,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-2,0,1828,0,0,0 +2013,7,7,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1756,26,1,1925,25,1,0 +2013,4,8,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1750,6,0,1820,17,1,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,171,1,1700,177,1,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1030,-6,0,1320,10,0,0 +2013,7,21,7,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1051,-2,0,1444,2,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1530,7,0,1650,5,0,0 +2013,5,7,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,659,35,1,1036,24,1,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,33,1,1210,29,1,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1942,-5,0,2219,-19,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-5,0,822,12,0,0 +2013,9,14,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-2,0,1925,-14,0,0 +2013,6,23,7,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-2,0,1104,-12,0,0 +2013,9,8,7,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,947,-5,0,1259,-20,0,0 +2013,5,24,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1310,5,0,1358,0,0,0 +2013,5,4,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1845,-4,0,2005,-13,0,0 +2013,9,11,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1815,-3,0,1915,-8,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1750,16,1,2150,0,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-6,0,1010,-18,0,0 +2013,4,29,1,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,36,1,1725,47,1,0 +2013,9,9,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,600,-4,0,729,-9,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,-2,0,1933,-16,0,0 +2013,10,21,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,0,,2300,0,1,1 +2013,6,2,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1836,154,1,1953,159,1,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1947,212,1,2136,193,1,0 +2013,7,29,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1125,-2,0,1332,10,0,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,745,-2,0,1145,-11,0,0 +2013,8,5,1,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,825,2,0,1130,4,0,0 +2013,6,3,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,-8,0,2033,-1,0,0 +2013,4,7,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1400,-1,0,1528,10,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,178,1,1636,231,1,0 +2013,6,8,6,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,800,-10,0,919,-25,0,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,-3,0,1949,-9,0,0 +2013,7,2,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,2010,29,1,2020,39,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1730,-4,0,2205,-3,0,0 +2013,9,25,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,0,0,1353,-5,0,0 +2013,7,24,3,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,-5,0,2146,-34,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2115,65,1,2205,59,1,0 +2013,8,17,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-6,0,935,-4,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,715,-5,0,925,-37,0,0 +2013,8,17,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,-3,0,2028,-2,0,0 +2013,9,3,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-3,0,1925,0,0,0 +2013,8,31,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,7,0,1855,-15,0,0 +2013,4,13,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,900,-18,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-2,0,2158,-16,0,0 +2013,7,8,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,1,0,1230,-1,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1040,1,0,1625,-4,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,810,-6,0,1144,-16,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,755,44,1,914,32,1,0 +2013,8,23,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,613,-5,0,1000,-10,0,0 +2013,10,10,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,2007,1,0,2354,8,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,0,0,2040,-2,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,16,1,1323,13,0,0 +2013,9,3,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-3,0,552,0,0,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1845,301,1,2217,271,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,-5,0,1850,-23,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,1,0,1115,-2,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,93,1,1817,68,1,0 +2013,6,4,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,-2,0,1929,-10,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,1,0,1805,-15,0,0 +2013,10,23,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,730,-9,0,1026,-30,0,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1144,-5,0,1316,-7,0,0 +2013,10,21,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,7,0,1416,7,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2155,19,1,2347,19,1,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-6,0,1809,-4,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,726,-2,0,859,-6,0,0 +2013,8,29,4,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1926,0,0,6,-5,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,-4,0,1009,39,1,0 +2013,8,11,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,728,-9,0,0 +2013,6,8,6,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1217,-2,0,1326,-9,0,0 +2013,9,17,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,649,-4,0,906,-13,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1840,13,0,2357,15,1,0 +2013,10,6,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,955,6,0,1315,1,0,0 +2013,10,8,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1125,-3,0,1230,-5,0,0 +2013,6,30,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1540,-3,0,1730,-20,0,0 +2013,10,7,1,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,3,0,1552,8,0,0 +2013,7,11,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,25,1,1310,19,1,0 +2013,9,5,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1325,-4,0,1445,-7,0,0 +2013,4,24,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1645,96,1,1750,86,1,0 +2013,9,16,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1320,-14,0,1445,-22,0,0 +2013,8,15,4,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,730,0,0,755,-3,0,0 +2013,8,31,6,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,737,-4,0,951,1,0,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,-1,0,1320,-3,0,0 +2013,8,9,5,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,18,1,2025,2,0,0 +2013,4,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,3,0,1226,7,0,0 +2013,8,11,7,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-3,0,1017,-8,0,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,2,0,800,-7,0,0 +2013,6,18,2,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-2,0,1105,0,0,0 +2013,7,13,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,900,-8,0,1040,-15,0,0 +2013,4,20,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1750,-4,0,1915,-14,0,0 +2013,5,31,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,-6,0,1935,-4,0,0 +2013,9,22,7,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1455,-1,0,1720,-10,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,957,-2,0,1558,-17,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2210,13,0,14,4,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1725,2,0,2245,-2,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,-8,0,1110,-20,0,0 +2013,6,14,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,845,-2,0,1015,-24,0,0 +2013,5,3,5,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-6,0,1100,-2,0,0 +2013,4,26,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,901,-20,0,0 +2013,10,1,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,7,0,1835,5,0,0 +2013,4,3,3,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,2115,-9,0,2214,5,0,0 +2013,5,16,4,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-12,0,1615,-23,0,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,-5,0,808,3,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1052,-2,0,1154,-11,0,0 +2013,8,9,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14057,Portland International,Portland,OR,1822,49,1,2029,43,1,0 +2013,7,30,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,1,0,2210,-45,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1525,17,1,1625,10,0,0 +2013,6,1,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1835,16,1,1920,6,0,0 +2013,4,24,3,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1705,4,0,1835,-7,0,0 +2013,7,17,3,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1242,-9,0,1345,-27,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2245,1,0,2353,0,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,604,-4,0,725,-21,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1915,-7,0,2153,-13,0,0 +2013,8,17,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1010,-7,0,1246,2,0,0 +2013,5,12,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,69,1,1917,59,1,0 +2013,5,13,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,735,-5,0,1450,-3,0,0 +2013,6,24,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,0,0,1720,1,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1750,1,0,1850,-10,0,0 +2013,5,8,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1133,-6,0,1420,-15,0,0 +2013,9,19,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1133,32,1,1309,18,1,0 +2013,6,22,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1442,35,1,1600,38,1,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,-1,0,1127,-5,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1230,12,0,1655,-2,0,0 +2013,5,29,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1433,5,0,1757,12,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1920,-5,0,2020,-10,0,0 +2013,5,13,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,702,-5,0,907,-17,0,0 +2013,7,4,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2233,3,0,415,-9,0,0 +2013,5,16,4,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1635,13,0,1740,-4,0,0 +2013,4,26,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1935,-3,0,2104,-1,0,0 +2013,5,4,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2105,0,0,2232,-11,0,0 +2013,8,2,5,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,10,0,1705,1,0,0 +2013,4,20,6,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1630,-3,0,1910,-21,0,0 +2013,10,2,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-8,0,1118,-9,0,0 +2013,8,4,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,-1,0,1200,7,0,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1050,-3,0,1140,-5,0,0 +2013,6,21,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,158,1,1551,170,1,0 +2013,8,3,6,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-5,0,945,-3,0,0 +2013,6,27,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,-6,0,1635,12,0,0 +2013,5,17,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-11,0,2145,-11,0,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,109,1,1635,80,1,0 +2013,4,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1059,94,1,1408,82,1,0 +2013,6,18,2,US,14893,Sacramento International,Sacramento,CA,11057,Charlotte Douglas International,Charlotte,NC,2259,-3,0,637,-18,0,0 +2013,8,3,6,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,620,10,0,1225,3,0,0 +2013,7,20,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,850,22,1,1030,-10,0,0 +2013,5,31,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2155,-5,0,2315,-16,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1509,127,1,1643,113,1,0 +2013,8,9,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1925,28,1,2158,18,1,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1410,4,0,1705,-13,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,-2,0,1225,0,0,0 +2013,7,5,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,-4,0,1825,-21,0,0 +2013,4,29,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1915,17,1,1940,-6,0,0 +2013,4,20,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1756,-30,0,0 +2013,5,11,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1520,-4,0,1625,0,0,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1025,-3,0,1308,-23,0,0 +2013,7,3,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1002,-4,0,1329,-15,0,0 +2013,8,27,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-8,0,815,-10,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1320,-6,0,1708,-21,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,-7,0,2135,-11,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,724,2,0,1003,-8,0,0 +2013,10,26,6,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1025,-5,0,1124,6,0,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-3,0,1344,7,0,0 +2013,4,4,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1120,-2,0,1323,-14,0,0 +2013,10,2,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,44,1,2130,39,1,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1553,1,0,1930,-26,0,0 +2013,5,27,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,906,-4,0,1253,-12,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,0,0,2350,-3,0,0 +2013,8,8,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,-6,0,1125,-3,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,930,20,1,1400,28,1,0 +2013,9,13,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,739,1,0,941,-11,0,0 +2013,10,11,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1505,57,1,1620,53,1,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-4,0,859,-1,0,0 +2013,9,10,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1810,-8,0,1905,-25,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,940,17,1,1116,27,1,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1545,-1,0,1736,-7,0,0 +2013,5,7,2,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-3,0,1236,-26,0,0 +2013,4,6,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,2,0,1630,1,0,0 +2013,10,13,7,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,-7,0,1348,-11,0,0 +2013,8,12,1,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,810,-9,0,1029,21,1,0 +2013,8,31,6,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,845,21,1,1211,8,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2115,-4,0,2255,-20,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1145,25,1,1240,24,1,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1010,0,0,1445,-16,0,0 +2013,5,22,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,-7,0,845,-1,0,0 +2013,8,13,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,-5,0,1733,-21,0,0 +2013,4,15,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1945,68,1,2237,71,1,0 +2013,8,2,5,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1425,0,0,2020,-9,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,46,1,1345,36,1,0 +2013,6,30,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-10,0,1105,-19,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1250,-1,0,1450,2,0,0 +2013,10,29,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1515,-2,0,1630,-10,0,0 +2013,7,4,4,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,915,-2,0,935,-3,0,0 +2013,8,6,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1006,-4,0,1344,-17,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1130,-7,0,1251,-8,0,0 +2013,6,30,7,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,11,0,1800,10,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,16,1,2000,19,1,0 +2013,10,17,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1739,1,0,1950,-11,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,-3,0,1521,-13,0,0 +2013,6,30,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,3,0,1250,-10,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1910,29,1,2039,31,1,0 +2013,9,6,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-13,0,659,-14,0,0 +2013,10,7,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2015,-4,0,2130,-12,0,0 +2013,8,19,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,7,0,641,5,0,0 +2013,6,16,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1123,-3,0,1143,1,0,0 +2013,4,16,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1359,-6,0,1620,11,0,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,648,-4,0,817,-13,0,0 +2013,5,2,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,-4,0,1217,13,0,0 +2013,4,27,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,753,-8,0,811,-25,0,0 +2013,4,8,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1225,-5,0,1349,-3,0,0 +2013,6,17,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,47,1,1905,29,1,0 +2013,7,9,2,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-3,0,1559,-10,0,0 +2013,8,3,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1705,174,1,2140,169,1,0 +2013,4,6,6,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,18,1,2125,1,0,0 +2013,6,25,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1154,143,1,2000,188,1,0 +2013,10,2,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-11,0,2125,-21,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,0,0,1600,-6,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,-1,0,915,-5,0,0 +2013,10,4,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1503,26,1,1839,16,1,0 +2013,6,7,5,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,635,-4,0,930,9,0,0 +2013,5,4,6,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1940,0,,2246,0,1,1 +2013,7,19,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,10,0,1635,16,1,0 +2013,8,6,2,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1725,25,1,1941,21,1,0 +2013,6,4,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,14,0,754,1,0,0 +2013,10,21,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-8,0,1340,-12,0,0 +2013,9,7,6,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1440,-2,0,1550,-13,0,0 +2013,6,11,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,9,0,1353,6,0,0 +2013,10,29,2,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,728,0,0,925,-3,0,0 +2013,10,8,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1936,-8,0,2130,-4,0,0 +2013,7,29,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1101,0,0,1206,-3,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1005,3,0,1150,13,0,0 +2013,6,30,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2130,11,0,2255,-3,0,0 +2013,8,7,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,-3,0,2110,-10,0,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,16,1,1613,11,0,0 +2013,6,29,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,0,0,845,1,0,0 +2013,10,1,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1940,-3,0,1950,-1,0,0 +2013,8,17,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1230,-7,0,1555,-13,0,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1230,0,0,1745,-9,0,0 +2013,4,29,1,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,3,0,1855,-16,0,0 +2013,5,30,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1102,57,1,1948,59,1,0 +2013,8,6,2,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1025,-1,0,1305,4,0,0 +2013,9,7,6,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,926,-2,0,1159,15,1,0 +2013,7,7,7,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,53,1,1930,61,1,0 +2013,9,7,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,-6,0,1834,-9,0,0 +2013,10,27,7,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,705,-4,0,929,-13,0,0 +2013,6,8,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,100,1,1706,100,1,0 +2013,7,21,7,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,10,0,2010,56,1,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1045,119,1,1335,118,1,0 +2013,10,12,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-4,0,1405,-15,0,0 +2013,5,1,3,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,-6,0,1357,24,1,0 +2013,6,16,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1750,-9,0,2129,-15,0,0 +2013,10,11,5,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,0,0,1123,-14,0,0 +2013,4,28,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1410,-9,0,2059,9,0,0 +2013,4,13,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1710,0,0,1830,6,0,0 +2013,9,3,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1115,3,0,1202,8,0,0 +2013,5,24,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-6,0,1535,-1,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2146,-2,0,2346,-19,0,0 +2013,8,13,2,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1430,-8,0,1800,-23,0,0 +2013,7,12,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,925,-4,0,1023,-12,0,0 +2013,8,28,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,915,-3,0,1029,0,0,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1930,-5,0,2131,25,1,0 +2013,5,11,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,3,0,1209,4,0,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1855,87,1,2215,32,1,0 +2013,4,10,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1015,-5,0,1200,-19,0,0 +2013,10,21,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2015,-11,0,2036,-14,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1925,15,1,2055,8,0,0 +2013,4,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1331,-6,0,1651,-15,0,0 +2013,8,31,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,944,-6,0,1125,23,1,0 +2013,7,20,6,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1015,3,0,1313,-3,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,91,1,2222,76,1,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,42,1,1835,28,1,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1425,-4,0,1551,-8,0,0 +2013,8,9,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,-10,0,1820,-15,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,4,0,1030,10,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,19,1,1705,20,1,0 +2013,4,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,854,10,0,940,-1,0,0 +2013,9,17,2,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1605,-10,0,1901,-17,0,0 +2013,6,20,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-7,0,2205,-18,0,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1355,42,1,1500,40,1,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,-6,0,2126,-6,0,0 +2013,10,8,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1525,-2,0,1840,-6,0,0 +2013,8,9,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-2,0,1016,-3,0,0 +2013,4,10,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1030,-1,0,1409,-16,0,0 +2013,6,7,5,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,750,-4,0,1345,1,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1305,-2,0,1410,-3,0,0 +2013,6,29,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1525,135,1,1932,138,1,0 +2013,8,2,5,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-4,0,1440,-8,0,0 +2013,7,26,5,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-7,0,1510,-4,0,0 +2013,8,13,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1429,6,0,1714,-12,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,0,0,2217,2,0,0 +2013,4,1,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1835,10,0,2040,-4,0,0 +2013,6,24,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,1156,-15,0,0 +2013,7,5,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1745,-7,0,1910,16,1,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,825,11,0,940,-1,0,0 +2013,9,30,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1110,63,1,1355,53,1,0 +2013,7,29,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-7,0,747,-10,0,0 +2013,10,29,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1816,-8,0,2005,-1,0,0 +2013,9,17,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1940,-4,0,2035,-5,0,0 +2013,4,15,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,926,-1,0,1153,-16,0,0 +2013,9,5,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1500,14,0,1750,35,1,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1815,-2,0,2044,-5,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-3,0,850,-11,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1813,-3,0,1836,-11,0,0 +2013,7,18,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,736,6,0,825,8,0,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1935,1,0,2035,-3,0,0 +2013,7,21,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-6,0,1253,4,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,840,-3,0,1719,-5,0,0 +2013,6,2,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1240,-3,0,0 +2013,8,1,4,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2225,19,1,630,-3,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,945,-3,0,1050,-10,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,844,12,0,1009,45,1,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,-4,0,2357,-15,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1247,-1,0,1419,-13,0,0 +2013,4,28,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,720,-7,0,1017,-14,0,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1815,50,1,1935,49,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2150,31,1,2250,39,1,0 +2013,5,17,5,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1610,-8,0,1749,6,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,1300,3,0,1721,-6,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2110,8,0,2355,6,0,0 +2013,4,23,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,810,5,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,750,2,0,1015,-3,0,0 +2013,4,2,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1824,58,1,2000,61,1,0 +2013,8,7,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1119,-7,0,1310,-15,0,0 +2013,5,21,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1620,14,0,1805,42,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1758,-4,0,1933,-10,0,0 +2013,5,14,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,645,-1,0,755,-9,0,0 +2013,5,31,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,633,-6,0,750,-15,0,0 +2013,10,15,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,535,-5,0,906,-7,0,0 +2013,10,27,7,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,59,-2,0,631,-3,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-6,0,1520,11,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1115,-3,0,1220,-9,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,935,12,0,1115,-1,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2115,7,0,2330,5,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,910,1,0,1320,-6,0,0 +2013,5,16,4,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1010,139,1,1200,146,1,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1023,-6,0,1321,-4,0,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,28,1,1737,27,1,0 +2013,6,27,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,6,0,1223,-6,0,0 +2013,4,1,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1905,45,1,45,30,1,0 +2013,4,28,7,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1115,-5,0,1315,-13,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-3,0,1601,-18,0,0 +2013,10,24,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,9,0,1710,13,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1301,90,1,1529,80,1,0 +2013,6,18,2,OO,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,833,42,1,1105,32,1,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1130,4,0,1430,1,0,0 +2013,7,14,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1105,-8,0,1225,-9,0,0 +2013,9,5,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2140,-15,0,2250,-30,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1652,25,1,1802,12,0,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,755,56,1,1400,41,1,0 +2013,9,23,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1855,0,0,2205,-9,0,0 +2013,6,25,2,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1435,18,1,1750,36,1,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1115,-2,0,1408,-9,0,0 +2013,8,29,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,720,-1,0,830,-1,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,75,1,1625,113,1,0 +2013,8,9,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,923,1,0,0 +2013,5,21,2,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1350,-1,0,1519,-2,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1252,-2,0,1352,-9,0,0 +2013,6,7,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,0,0,1610,0,0,0 +2013,6,9,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1340,196,1,1450,199,1,0 +2013,4,4,4,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1245,-1,0,1646,-3,0,0 +2013,7,31,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-4,0,1250,-12,0,0 +2013,8,20,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,634,-6,0,827,-10,0,0 +2013,8,23,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,705,-5,0,930,-8,0,0 +2013,7,29,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-4,0,906,2,0,0 +2013,4,28,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,57,-1,0,630,-7,0,0 +2013,8,27,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-4,0,1230,-18,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-4,0,1617,1,0,0 +2013,7,29,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1200,-2,0,1302,-15,0,0 +2013,8,14,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-4,0,1413,1,0,0 +2013,8,25,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-7,0,1310,-26,0,0 +2013,10,2,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1615,2,0,1725,-17,0,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,845,-7,0,1029,-7,0,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,2003,105,1,2352,77,1,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-4,0,1545,-14,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1700,7,0,1822,3,0,0 +2013,5,31,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-4,0,1005,-7,0,0 +2013,6,8,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-10,0,1555,-1,0,0 +2013,7,12,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,1,0,1305,0,0,0 +2013,8,27,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1032,2,0,1210,31,1,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,-5,0,2327,-12,0,0 +2013,6,28,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,115,1,1405,112,1,0 +2013,6,19,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,700,0,0,805,2,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,3,0,1755,-10,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,-2,0,2110,-24,0,0 +2013,7,29,1,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1720,65,1,1905,65,1,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,945,29,1,1415,78,1,0 +2013,10,21,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,700,24,1,940,16,1,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1708,-3,0,2305,-5,0,0 +2013,7,19,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1715,0,0,1835,-11,0,0 +2013,7,19,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1859,66,1,2044,47,1,0 +2013,10,20,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1230,-3,0,1449,-15,0,0 +2013,9,22,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1736,-1,0,1949,-3,0,0 +2013,10,22,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,299,1,2050,295,1,0 +2013,10,31,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1615,-2,0,1934,-8,0,0 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1910,-1,0,100,-7,0,0 +2013,5,14,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,738,-16,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1607,7,0,1715,-10,0,0 +2013,9,14,6,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,14,0,1450,-11,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1530,17,1,1635,23,1,0 +2013,8,10,6,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-6,0,910,-7,0,0 +2013,6,10,1,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-10,0,606,-13,0,0 +2013,9,5,4,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1738,4,0,1959,-11,0,0 +2013,9,29,7,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,31,1,1805,24,1,0 +2013,9,28,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,605,-2,0,728,-10,0,0 +2013,4,22,1,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1845,-4,0,2305,40,1,0 +2013,4,11,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1205,3,0,1345,1,0,0 +2013,10,18,5,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2225,-2,0,607,1,0,0 +2013,5,15,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1710,0,0,1854,20,1,0 +2013,7,9,2,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,-4,0,1740,14,0,0 +2013,9,2,1,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1647,-3,0,1900,-6,0,0 +2013,9,4,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,-4,0,1649,-5,0,0 +2013,8,9,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,809,-6,0,1138,-19,0,0 +2013,8,24,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1211,-8,0,1404,-21,0,0 +2013,9,4,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1625,-6,0,1755,-16,0,0 +2013,4,3,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-8,0,2205,-20,0,0 +2013,10,3,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-3,0,1450,-10,0,0 +2013,6,2,7,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,167,1,1455,146,1,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,650,-3,0,1005,-21,0,0 +2013,5,28,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1055,-3,0,1120,-2,0,0 +2013,8,30,5,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1510,7,0,1735,1,0,0 +2013,7,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,21,1,810,5,0,0 +2013,10,21,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-1,0,1159,-4,0,0 +2013,4,22,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-1,0,1415,-3,0,0 +2013,6,3,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1137,-3,0,1429,-4,0,0 +2013,10,26,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,11,0,1552,1,0,0 +2013,8,2,5,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1000,1,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,600,-5,0,1025,-13,0,0 +2013,10,22,2,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-6,0,1908,-8,0,0 +2013,5,18,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-8,0,1500,-7,0,0 +2013,4,4,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1110,-2,0,1643,-8,0,0 +2013,8,9,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,7,0,2015,11,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1331,0,0,1500,-7,0,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1144,3,0,1321,-14,0,0 +2013,10,27,7,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1845,-9,0,2138,-42,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,140,1,1954,150,1,0 +2013,10,3,4,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2050,-1,0,2330,-14,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1901,286,1,2213,286,1,0 +2013,7,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1010,-4,0,1300,7,0,0 +2013,8,21,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,546,-7,0,654,-3,0,0 +2013,4,11,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,2155,29,1,2345,21,1,0 +2013,4,8,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1045,18,1,1215,25,1,0 +2013,4,5,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,17,1,1412,19,1,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1435,10,0,1630,11,0,0 +2013,7,24,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1802,8,0,1915,17,1,0 +2013,5,21,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,642,-2,0,806,-5,0,0 +2013,5,21,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1239,-3,0,1318,-8,0,0 +2013,5,3,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1017,-4,0,1318,20,1,0 +2013,9,3,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,0,0,910,-7,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1720,1,0,1815,-6,0,0 +2013,9,18,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-7,0,910,-13,0,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,36,1,1625,20,1,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1904,1,0,1958,37,1,0 +2013,4,9,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-1,0,1009,-6,0,0 +2013,6,22,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,10,0,1626,8,0,0 +2013,9,16,1,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,915,1,0,1020,-9,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,921,-14,0,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-7,0,1141,-8,0,0 +2013,7,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1935,17,1,2107,-1,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1400,8,0,1515,-3,0,0 +2013,4,19,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,1008,-6,0,0 +2013,4,21,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2045,0,0,2313,-5,0,0 +2013,6,18,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,727,6,0,909,4,0,0 +2013,4,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1430,63,1,1542,53,1,0 +2013,4,29,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,54,1,1558,49,1,0 +2013,6,14,5,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1030,59,1,1140,45,1,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-4,0,1415,-20,0,0 +2013,9,21,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,0,0,1700,-8,0,0 +2013,7,7,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,-9,0,1800,28,1,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1750,-1,0,1929,18,1,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1144,-2,0,1428,-31,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,16,1,1250,21,1,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1550,1,0,1907,-19,0,0 +2013,8,1,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-3,0,1116,-21,0,0 +2013,7,3,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,41,1,1912,58,1,0 +2013,10,13,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-3,0,1011,-8,0,0 +2013,5,16,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,610,-3,0,630,-11,0,0 +2013,10,29,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1510,-9,0,1604,-6,0,0 +2013,8,28,3,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,-7,0,845,-5,0,0 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-2,0,1511,8,0,0 +2013,6,25,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,703,0,0,1047,-15,0,0 +2013,4,15,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,834,-5,0,0 +2013,10,18,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1045,3,0,1210,-3,0,0 +2013,5,21,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1920,0,0,4,20,1,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,825,-5,0,1005,-3,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1035,-6,0,1221,-13,0,0 +2013,8,31,6,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,942,-4,0,1134,-6,0,0 +2013,4,19,5,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1525,11,0,1650,3,0,0 +2013,7,14,7,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,-6,0,1445,22,1,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,0,0,2225,-4,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,13,0,1559,30,1,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2025,33,1,2321,42,1,0 +2013,4,11,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,25,1,2030,9,0,0 +2013,4,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1956,-4,0,2147,-16,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,27,1,1755,29,1,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1945,142,1,2045,124,1,0 +2013,8,10,6,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,4,0,1330,-2,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1055,-2,0,1151,14,0,0 +2013,6,2,7,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,5,0,1115,-4,0,0 +2013,9,8,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,10,0,1914,0,0,0 +2013,6,10,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-5,0,1014,-11,0,0 +2013,6,2,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-9,0,1305,-9,0,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1053,-5,0,1339,-10,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1220,0,,1330,0,1,1 +2013,6,9,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1007,-2,0,1133,-3,0,0 +2013,10,30,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1658,-6,0,2256,-25,0,0 +2013,4,5,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1115,-3,0,1235,-15,0,0 +2013,8,20,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-7,0,1005,-20,0,0 +2013,8,17,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-7,0,1023,48,1,0 +2013,7,6,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1401,-3,0,1553,-17,0,0 +2013,5,12,7,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1345,-4,0,1601,-21,0,0 +2013,4,2,2,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,635,-4,0,723,4,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-6,0,2335,-13,0,0 +2013,10,22,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1745,-1,0,2045,-17,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1615,14,0,1825,8,0,0 +2013,5,28,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-2,0,1640,-12,0,0 +2013,6,6,4,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,2,0,2059,3,0,0 +2013,10,6,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1550,7,0,1825,36,1,0 +2013,9,30,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,3,0,1155,-2,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1000,0,0,1220,-17,0,0 +2013,5,22,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,745,-1,0,1025,-8,0,0 +2013,8,15,4,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1105,6,0,1225,8,0,0 +2013,8,5,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,-5,0,1738,12,0,0 +2013,5,8,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-5,0,1656,21,1,0 +2013,7,22,1,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,1223,-5,0,0 +2013,7,2,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1705,0,0,1820,-9,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,615,-4,0,825,-11,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,820,4,0,1055,-5,0,0 +2013,5,27,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1635,2,0,1720,-3,0,0 +2013,7,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2135,69,1,2335,48,1,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,2015,4,0,55,-11,0,0 +2013,9,21,6,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,28,1,1815,17,1,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,40,1,1640,28,1,0 +2013,10,14,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1320,28,1,1532,15,1,0 +2013,8,11,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,835,-9,0,1020,-20,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2110,62,1,2300,67,1,0 +2013,6,26,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,-3,0,1130,-11,0,0 +2013,7,23,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,1145,10,0,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1127,-6,0,1230,-4,0,0 +2013,7,22,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,-3,0,1805,-9,0,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,16,1,1735,47,1,0 +2013,4,16,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,1,0,2224,-7,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-4,0,1915,-14,0,0 +2013,10,21,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,4,0,1524,-11,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1859,26,1,2012,26,1,0 +2013,4,25,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1920,11,0,2133,19,1,0 +2013,9,23,1,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,855,-3,0,1110,-16,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,-7,0,2033,-13,0,0 +2013,10,12,6,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,12,0,1930,-6,0,0 +2013,7,27,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-11,0,845,-23,0,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,956,29,1,1331,11,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,17,1,1540,7,0,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-7,0,945,-6,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,5,0,1040,15,1,0 +2013,4,10,3,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1715,11,0,2202,20,1,0 +2013,8,27,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-7,0,613,-10,0,0 +2013,8,27,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,1,0,2049,-5,0,0 +2013,8,26,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-4,0,1018,-10,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,1,0,1240,-13,0,0 +2013,7,21,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,65,1,1944,75,1,0 +2013,7,4,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,620,-2,0,750,-5,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1935,0,0,0 +2013,5,13,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1720,-2,0,2137,6,0,0 +2013,4,23,2,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,955,2,0,1350,-4,0,0 +2013,4,28,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,-5,0,500,-9,0,0 +2013,6,25,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1330,4,0,1340,0,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1025,4,0,1205,0,0,0 +2013,6,11,2,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,16,1,1740,15,1,0 +2013,5,28,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1835,1,0,1950,-9,0,0 +2013,7,26,5,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,16,1,715,12,0,0 +2013,9,11,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2143,15,1,2237,2,0,0 +2013,9,20,5,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1855,-2,0,2020,-1,0,0 +2013,8,19,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1035,-1,0,1155,5,0,0 +2013,5,26,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1330,5,0,1440,7,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1632,-6,0,22,-12,0,0 +2013,5,6,1,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-1,0,1914,8,0,0 +2013,7,1,1,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1625,15,1,1745,12,0,0 +2013,8,6,2,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1901,21,1,30,16,1,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,959,-7,0,1113,-24,0,0 +2013,6,29,6,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,-2,0,1841,23,1,0 +2013,9,16,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,0,0,1020,-2,0,0 +2013,6,12,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,710,-3,0,855,-5,0,0 +2013,7,29,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-8,0,1634,-25,0,0 +2013,9,27,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,-8,0,1115,-24,0,0 +2013,4,30,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-9,0,1355,-6,0,0 +2013,4,27,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1935,45,1,2055,30,1,0 +2013,8,11,7,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,1846,-5,0,1946,-9,0,0 +2013,6,19,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1005,-4,0,1135,-4,0,0 +2013,9,29,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1605,25,1,1650,18,1,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-3,0,1033,-22,0,0 +2013,10,27,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2110,35,1,2315,40,1,0 +2013,9,19,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1705,23,1,1843,26,1,0 +2013,7,13,6,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-4,0,1610,29,1,0 +2013,9,29,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1620,6,0,1825,-11,0,0 +2013,10,1,2,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,-12,0,1445,-8,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1704,2,0,2012,-19,0,0 +2013,9,11,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,11,0,1305,5,0,0 +2013,4,2,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2230,-9,0,2355,-20,0,0 +2013,9,13,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1418,-5,0,2001,1,0,0 +2013,4,15,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1440,-5,0,1658,-5,0,0 +2013,8,31,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1116,-1,0,1212,2,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1310,4,0,1630,-3,0,0 +2013,10,3,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,940,6,0,1215,8,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-1,0,1145,-16,0,0 +2013,8,27,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,741,-20,0,0 +2013,8,23,5,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,2215,7,0,622,2,0,0 +2013,9,11,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-8,0,1934,-20,0,0 +2013,10,24,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1600,11,0,1739,-8,0,0 +2013,7,18,4,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-8,0,715,-18,0,0 +2013,10,4,5,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1151,-9,0,1249,-12,0,0 +2013,5,25,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1705,-4,0,1830,-1,0,0 +2013,10,14,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,-8,0,1705,-23,0,0 +2013,9,29,7,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1640,1,0,1820,-5,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2145,31,1,2302,27,1,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1100,-3,0,1226,-8,0,0 +2013,5,1,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,-3,0,2215,7,0,0 +2013,9,22,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,725,-5,0,935,-2,0,0 +2013,7,27,6,UA,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,-7,0,918,-6,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,844,-5,0,1033,-14,0,0 +2013,8,21,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2344,-4,0,508,-15,0,0 +2013,4,5,5,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,30,1,1639,31,1,0 +2013,7,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1555,-1,0,1705,-7,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1115,0,0,1235,-7,0,0 +2013,7,8,1,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-13,0,1234,-3,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,202,1,2335,196,1,0 +2013,5,24,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,23,1,955,19,1,0 +2013,9,28,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1625,13,0,1940,7,0,0 +2013,5,10,5,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1012,73,1,1207,59,1,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2020,112,1,2215,114,1,0 +2013,6,7,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,1,0,1515,7,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2235,26,1,2325,9,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1930,60,1,2110,62,1,0 +2013,10,17,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1935,0,,2108,0,1,1 +2013,8,21,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2230,-6,0,428,1,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,900,7,0,1215,4,0,0 +2013,7,4,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,1,0,1635,-11,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,945,3,0,1050,-8,0,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1108,-5,0,1412,15,1,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2105,72,1,2225,67,1,0 +2013,6,13,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,845,-2,0,1045,-4,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,53,1,2337,39,1,0 +2013,9,5,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,5,0,2135,-7,0,0 +2013,10,6,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1530,0,0,1822,-30,0,0 +2013,9,13,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,3,0,1017,-17,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1315,-5,0,1433,-8,0,0 +2013,10,4,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2045,111,1,2327,104,1,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1855,7,0,2220,-20,0,0 +2013,5,24,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,915,-2,0,1113,-16,0,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-1,0,1010,3,0,0 +2013,7,17,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1600,-6,0,2111,5,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,600,-7,0,1119,-8,0,0 +2013,5,22,3,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-4,0,810,-8,0,0 +2013,10,16,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1235,-2,0,1345,-8,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,911,-1,0,1145,-9,0,0 +2013,8,28,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-9,0,1735,-15,0,0 +2013,8,10,6,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,957,1,0,1314,10,0,0 +2013,4,25,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,1,0,2235,34,1,0 +2013,8,15,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,16,1,947,14,0,0 +2013,6,8,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,-5,0,2042,-18,0,0 +2013,10,5,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,930,-4,0,1038,40,1,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1730,12,0,1842,29,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,11,0,2000,2,0,0 +2013,8,13,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,-7,0,1622,-9,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1620,-3,0,1801,-3,0,0 +2013,4,21,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1122,-3,0,1215,2,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,48,1,1926,42,1,0 +2013,9,16,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-3,0,1507,-6,0,0 +2013,6,17,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-3,0,659,-10,0,0 +2013,8,29,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-2,0,1845,14,0,0 +2013,9,21,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1930,1,0,2136,-9,0,0 +2013,7,28,7,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1845,63,1,2013,59,1,0 +2013,7,19,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-2,0,825,15,1,0 +2013,8,29,4,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1031,28,1,1349,27,1,0 +2013,10,9,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,-4,0,2335,-4,0,0 +2013,5,9,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,56,1,2035,37,1,0 +2013,8,23,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1730,14,0,1905,-2,0,0 +2013,6,23,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,3,0,2102,-4,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1835,34,1,2305,26,1,0 +2013,4,1,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1349,-17,0,0 +2013,5,4,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,1,0,1135,14,0,0 +2013,8,16,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,45,1,1846,49,1,0 +2013,7,13,6,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-7,0,1945,-16,0,0 +2013,4,4,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1150,-3,0,1310,-13,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,-6,0,1453,-11,0,0 +2013,5,24,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,0,0,925,17,1,0 +2013,10,14,1,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,836,-2,0,1124,2,0,0 +2013,7,4,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1046,-8,0,1212,-17,0,0 +2013,4,20,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,735,-4,0,1015,16,1,0 +2013,7,31,3,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,23,1,1920,18,1,0 +2013,9,12,4,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,805,75,1,1615,85,1,0 +2013,10,15,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1850,9,0,2130,1,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,22,1,1120,11,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,4,0,620,1,0,0 +2013,6,12,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,46,1,2056,34,1,0 +2013,5,1,3,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1940,0,0,2159,-9,0,0 +2013,9,21,6,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2249,4,0,721,-10,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1842,10,0,2159,13,0,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,104,1,2330,96,1,0 +2013,10,9,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,3,0,1534,7,0,0 +2013,4,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2010,-1,0,2130,-5,0,0 +2013,5,2,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1353,22,1,1948,16,1,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1218,-7,0,1333,-11,0,0 +2013,4,5,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-7,0,1005,16,1,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,4,0,2059,-18,0,0 +2013,9,5,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,802,0,0,1405,-6,0,0 +2013,9,9,1,AA,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1800,3,0,1935,15,1,0 +2013,6,14,5,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1845,-2,0,2001,-2,0,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,0,0,1320,-7,0,0 +2013,6,23,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,59,1,1920,63,1,0 +2013,5,18,6,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1000,-9,0,1208,-19,0,0 +2013,6,21,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,21,1,2052,26,1,0 +2013,7,6,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1039,36,1,1419,31,1,0 +2013,8,30,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-3,0,841,6,0,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-3,0,935,1,0,0 +2013,6,4,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,-5,0,2018,3,0,0 +2013,5,23,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1515,65,1,1530,83,1,0 +2013,10,16,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1114,3,0,1217,-4,0,0 +2013,7,8,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1330,35,1,1340,27,1,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,0,0,1004,-32,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2155,-4,0,27,-13,0,0 +2013,6,17,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,69,1,1340,66,1,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,26,1,1845,54,1,0 +2013,9,28,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,3,0,1720,-4,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1200,-3,0,1310,-6,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2010,7,0,2125,1,0,0 +2013,4,15,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1217,4,0,1455,2,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1712,285,1,1950,271,1,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1610,-1,0,1932,-11,0,0 +2013,8,22,4,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,832,46,1,1408,43,1,0 +2013,7,31,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,0,,1759,0,1,1 +2013,6,29,6,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1530,117,1,1845,121,1,0 +2013,6,6,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2035,26,1,2134,32,1,0 +2013,8,12,1,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,-3,0,1124,0,0,0 +2013,10,9,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-5,0,2135,-12,0,0 +2013,10,7,1,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,805,2,0,915,-3,0,0 +2013,9,17,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-7,0,1535,-24,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,-3,0,1014,1,0,0 +2013,6,4,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1612,-7,0,1951,-16,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,3,0,1832,1,0,0 +2013,6,25,2,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,4,0,1600,-3,0,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1130,50,1,1300,36,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1236,-4,0,1418,-10,0,0 +2013,8,19,1,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,71,1,1910,44,1,0 +2013,6,2,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-4,0,2210,4,0,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,17,1,1950,11,0,0 +2013,6,16,7,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-4,0,1149,12,0,0 +2013,9,3,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,836,-13,0,0 +2013,10,14,1,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1919,-2,0,2234,7,0,0 +2013,4,1,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-7,0,1009,2,0,0 +2013,4,27,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1425,-9,0,1535,-18,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1916,-3,0,2241,-20,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-3,0,1102,-12,0,0 +2013,7,3,3,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1129,-4,0,1326,-14,0,0 +2013,8,3,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,900,-10,0,951,-12,0,0 +2013,9,1,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1145,-4,0,1620,-7,0,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1935,7,0,50,1,0,0 +2013,4,27,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1402,9,0,1515,-5,0,0 +2013,5,22,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-1,0,1213,9,0,0 +2013,9,29,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1804,-6,0,1945,-20,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-7,0,1451,-15,0,0 +2013,7,9,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,0,0,1028,-8,0,0 +2013,4,9,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-11,0,1159,-12,0,0 +2013,8,4,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1346,69,1,1453,61,1,0 +2013,10,7,1,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1659,43,1,1823,40,1,0 +2013,9,19,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1901,42,1,1955,32,1,0 +2013,4,27,6,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1235,-2,0,1350,-5,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2005,15,1,2330,7,0,0 +2013,8,26,1,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1815,7,0,1905,7,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2125,9,0,552,-9,0,0 +2013,7,26,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-3,0,1557,-5,0,0 +2013,9,19,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1525,23,1,1645,26,1,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,-1,0,1734,-1,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1022,0,0,1459,-12,0,0 +2013,5,1,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1915,5,0,2225,-5,0,0 +2013,7,15,1,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,-9,0,1145,-4,0,0 +2013,5,27,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-1,0,2020,-1,0,0 +2013,4,29,1,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,26,1,1805,20,1,0 +2013,6,22,6,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-2,0,1445,-11,0,0 +2013,6,9,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1054,-4,0,1231,-20,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1241,32,1,1356,12,0,0 +2013,6,17,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-4,0,1645,-8,0,0 +2013,6,3,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,840,23,1,900,12,0,0 +2013,5,2,4,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,710,-3,0,935,-23,0,0 +2013,8,18,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,3,0,725,10,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,-9,0,1816,6,0,0 +2013,7,6,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1247,0,,1351,0,1,1 +2013,9,23,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,715,-7,0,850,-13,0,0 +2013,5,12,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,31,1,1610,20,1,0 +2013,6,5,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,26,1,1800,20,1,0 +2013,8,28,3,DL,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2215,-11,0,622,-13,0,0 +2013,4,11,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,71,1,1218,60,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,-2,0,2120,-20,0,0 +2013,6,4,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-3,0,1505,-18,0,0 +2013,10,17,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-3,0,1453,-22,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,11,0,2200,4,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,-1,0,1825,-7,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1715,6,0,2059,-1,0,0 +2013,7,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,92,1,2033,87,1,0 +2013,7,30,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,725,-1,0,930,-2,0,0 +2013,6,18,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1510,20,1,1825,47,1,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,734,11,0,912,2,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1305,20,1,1557,4,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1424,-9,0,1523,-26,0,0 +2013,5,13,1,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-4,0,845,-19,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1759,66,1,2018,57,1,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1940,0,0,2255,14,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2055,11,0,2346,-24,0,0 +2013,5,15,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,754,-7,0,948,-22,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,45,1,1340,47,1,0 +2013,6,22,6,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1000,-13,0,1211,-13,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,-6,0,2050,12,0,0 +2013,9,9,1,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1810,-4,0,2048,-12,0,0 +2013,5,20,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-2,0,1445,-11,0,0 +2013,7,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-5,0,1556,-7,0,0 +2013,5,4,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1035,-4,0,1311,-8,0,0 +2013,9,11,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,925,-1,0,1010,-4,0,0 +2013,4,1,1,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1710,-6,0,2015,6,0,0 +2013,5,17,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1741,15,1,1837,12,0,0 +2013,6,8,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1330,2,0,1635,-11,0,0 +2013,5,20,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1215,19,1,1525,14,0,0 +2013,4,26,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,23,1,1755,17,1,0 +2013,7,30,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,855,-4,0,1205,-26,0,0 +2013,10,29,2,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1835,-7,0,2130,4,0,0 +2013,9,8,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-2,0,2125,1,0,0 +2013,8,19,1,EV,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-5,0,1209,-16,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1814,14,0,1951,3,0,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1028,5,0,1256,-17,0,0 +2013,5,3,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1730,19,1,1935,22,1,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2130,22,1,2245,8,0,0 +2013,8,27,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,848,-13,0,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-4,0,1420,-10,0,0 +2013,10,30,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-6,0,1611,6,0,0 +2013,10,24,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-6,0,1235,8,0,0 +2013,5,7,2,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1705,-10,0,1930,-15,0,0 +2013,5,21,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,11,0,1359,18,1,0 +2013,7,4,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-3,0,1110,-5,0,0 +2013,8,16,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,-5,0,858,2,0,0 +2013,7,29,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-3,0,1817,-20,0,0 +2013,5,6,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1800,31,1,1940,16,1,0 +2013,4,19,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1705,-5,0,1830,-19,0,0 +2013,7,10,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1018,53,1,1210,54,1,0 +2013,8,2,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1440,35,1,1612,36,1,0 +2013,8,13,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,7,0,1535,-10,0,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1133,-2,0,1332,-12,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1455,3,0,1559,-9,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,51,1,945,43,1,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1945,0,,2050,0,1,1 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,0,0,1010,-13,0,0 +2013,9,20,5,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,-1,0,2248,-3,0,0 +2013,9,20,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-1,0,1735,14,0,0 +2013,6,13,4,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1640,-4,0,1849,16,1,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-6,0,2345,0,0,0 +2013,5,30,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,-10,0,2116,-5,0,0 +2013,5,22,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,840,0,0,1310,17,1,0 +2013,5,17,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-4,0,1010,-12,0,0 +2013,8,28,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,710,-3,0,820,-7,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,12,0,1755,4,0,0 +2013,8,2,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1934,13,0,2044,1,0,0 +2013,7,24,3,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1155,24,1,1430,16,1,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,5,0,1000,-6,0,0 +2013,8,10,6,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1809,44,1,2100,42,1,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,-2,0,2347,-9,0,0 +2013,5,16,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,855,-5,0,910,8,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1659,-2,0,1939,-1,0,0 +2013,4,16,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,755,-1,0,925,-9,0,0 +2013,9,2,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,-4,0,1355,-2,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2015,2,0,2235,-7,0,0 +2013,4,18,4,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-8,0,1007,-27,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,-5,0,2213,-21,0,0 +2013,8,24,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,634,-3,0,827,-3,0,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1612,89,1,1943,103,1,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1305,-2,0,1440,-10,0,0 +2013,4,20,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-1,0,1030,0,0,0 +2013,5,6,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,2,0,2240,-7,0,0 +2013,8,10,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,-4,0,1825,10,0,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1630,12,0,1830,13,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1540,4,0,1823,29,1,0 +2013,10,6,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,22,1,2126,92,1,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2109,23,1,2234,12,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1915,37,1,2340,40,1,0 +2013,6,11,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,645,7,0,837,20,1,0 +2013,10,3,4,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-8,0,1230,-7,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2155,11,0,2325,0,0,0 +2013,4,26,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,91,1,2050,73,1,0 +2013,6,9,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,753,0,0,922,-6,0,0 +2013,9,30,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1556,-2,0,0 +2013,8,6,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-5,0,1540,-5,0,0 +2013,9,24,2,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,15,1,1346,6,0,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-4,0,1212,5,0,0 +2013,9,29,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,855,-5,0,1225,-11,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1210,-5,0,1414,-24,0,0 +2013,10,11,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,38,1,1327,39,1,0 +2013,8,22,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,-2,0,1210,-8,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2200,72,1,2255,60,1,0 +2013,7,23,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,5,0,1645,-4,0,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1715,12,0,1840,14,0,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,20,-1,0,618,-21,0,0 +2013,9,8,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,0,0,1407,2,0,0 +2013,4,20,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1355,21,1,1644,7,0,0 +2013,7,23,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-10,0,1542,-23,0,0 +2013,7,5,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-5,0,1250,-10,0,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,106,1,2045,112,1,0 +2013,4,17,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1440,-3,0,1523,8,0,0 +2013,8,28,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,755,-5,0,1256,-4,0,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-2,0,1035,-4,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,940,27,1,1110,18,1,0 +2013,10,8,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-10,0,1604,-26,0,0 +2013,8,6,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,915,-6,0,1039,-31,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1115,1,0,1220,0,0,0 +2013,9,8,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1800,-5,0,2001,-6,0,0 +2013,9,7,6,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,855,-10,0,1108,-45,0,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1152,-6,0,1248,-1,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1200,0,0,1355,-5,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1041,1,0,1335,-46,0,0 +2013,8,11,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1115,0,0,1245,-2,0,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-1,0,1204,-5,0,0 +2013,8,28,3,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1230,-10,0,1401,4,0,0 +2013,5,7,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1844,-13,0,2008,-16,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-6,0,1828,-16,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,85,1,2345,84,1,0 +2013,4,21,7,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1638,-7,0,2049,-24,0,0 +2013,9,27,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1210,4,0,1255,-3,0,0 +2013,10,21,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,-9,0,910,-26,0,0 +2013,5,1,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1434,-18,0,0 +2013,8,9,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1427,-4,0,1526,-17,0,0 +2013,6,30,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,35,1,2129,41,1,0 +2013,9,13,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1735,14,0,1840,11,0,0 +2013,4,16,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1944,66,1,2103,60,1,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1602,-4,0,1719,-18,0,0 +2013,5,9,4,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1710,0,,1858,0,1,1 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1125,9,0,1250,15,1,0 +2013,9,12,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,111,1,1810,0,1,1 +2013,9,3,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1040,-6,0,1208,-21,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1215,162,1,1430,147,1,0 +2013,6,17,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,1,0,855,0,0,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2209,8,0,2326,13,0,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1653,-1,0,1739,2,0,0 +2013,7,28,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1020,-3,0,1129,1,0,0 +2013,6,6,4,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1945,-7,0,2210,0,0,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-3,0,1305,3,0,0 +2013,4,14,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1225,18,1,1600,-1,0,0 +2013,10,2,3,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,758,-18,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-2,0,636,-7,0,0 +2013,10,2,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,815,-5,0,925,-8,0,0 +2013,4,10,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1910,65,1,2040,57,1,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,0,0,2347,-23,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1645,-3,0,1830,-5,0,0 +2013,9,7,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1120,-2,0,1645,-11,0,0 +2013,4,20,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,13,0,1710,16,1,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,-5,0,2250,-8,0,0 +2013,4,1,1,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2104,-8,0,2156,-24,0,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-3,0,833,5,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2145,9,0,140,-8,0,0 +2013,7,19,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,6,0,1358,-14,0,0 +2013,6,18,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1525,6,0,1700,8,0,0 +2013,9,7,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,800,-2,0,847,-11,0,0 +2013,5,30,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,805,-2,0,935,-10,0,0 +2013,7,13,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-4,0,1100,-9,0,0 +2013,4,26,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,705,0,0,845,6,0,0 +2013,4,4,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,18,1,1348,31,1,0 +2013,5,28,2,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,13,0,910,0,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,6,0,2340,16,1,0 +2013,4,30,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,12,0,1757,11,0,0 +2013,8,20,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-5,0,1634,-7,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-2,0,2110,-11,0,0 +2013,4,11,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-5,0,2047,-18,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1335,49,1,1525,35,1,0 +2013,7,20,6,EV,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1148,69,1,1242,73,1,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,950,-9,0,1235,-7,0,0 +2013,4,9,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-1,0,705,0,0,0 +2013,8,15,4,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1730,-5,0,1936,-2,0,0 +2013,4,28,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1530,50,1,1849,45,1,0 +2013,10,8,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-2,0,1025,1,0,0 +2013,7,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1306,22,1,1514,18,1,0 +2013,10,20,7,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1045,-8,0,1219,-9,0,0 +2013,4,30,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1017,35,1,1150,21,1,0 +2013,4,6,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,829,-3,0,1024,-17,0,0 +2013,10,28,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,650,-11,0,710,29,1,0 +2013,4,16,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,1,0,930,14,0,0 +2013,4,23,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,759,-5,0,1039,-7,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1019,-6,0,1200,-21,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,3,0,1505,-5,0,0 +2013,4,12,5,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1710,64,1,1725,58,1,0 +2013,7,13,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,740,-5,0,1010,-12,0,0 +2013,4,5,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,725,-1,0,840,-22,0,0 +2013,7,12,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-5,0,851,-11,0,0 +2013,9,11,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-13,0,2125,-11,0,0 +2013,6,19,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,900,14,0,1140,14,0,0 +2013,7,18,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1506,27,1,1638,42,1,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2045,23,1,2340,31,1,0 +2013,5,31,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1414,26,1,1652,17,1,0 +2013,10,7,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,30,1,1707,12,0,0 +2013,6,7,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1045,-3,0,1333,-17,0,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1320,51,1,1500,41,1,0 +2013,7,28,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1730,42,1,1915,48,1,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-2,0,1606,-27,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-4,0,1645,-4,0,0 +2013,4,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,-3,0,1310,-13,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,218,1,2302,219,1,0 +2013,4,2,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1451,-10,0,1638,-9,0,0 +2013,5,2,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2150,69,1,2305,63,1,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1859,-7,0,2030,-19,0,0 +2013,7,9,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1331,64,1,1501,76,1,0 +2013,10,13,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-2,0,1630,-2,0,0 +2013,8,21,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1345,-4,0,1535,1,0,0 +2013,4,1,1,9E,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1935,-6,0,2129,-8,0,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,858,-2,0,1745,1,0,0 +2013,7,24,3,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,64,1,1205,79,1,0 +2013,7,26,5,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,630,3,0,800,30,1,0 +2013,5,25,6,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1254,15,1,1615,-2,0,0 +2013,8,2,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1425,-1,0,1710,-9,0,0 +2013,6,19,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,530,-4,0,717,-15,0,0 +2013,6,21,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-4,0,845,-14,0,0 +2013,4,13,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2130,-5,0,2250,-11,0,0 +2013,10,6,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1018,-8,0,1309,-18,0,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1746,4,0,1850,13,0,0 +2013,6,30,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,71,1,2234,56,1,0 +2013,7,7,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-4,0,1632,-2,0,0 +2013,8,8,4,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1519,-7,0,1645,-19,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,809,9,0,944,7,0,0 +2013,6,1,6,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1246,13,0,1830,9,0,0 +2013,5,26,7,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-8,0,1224,-14,0,0 +2013,4,28,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,-5,0,1638,-19,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,21,1,1815,-6,0,0 +2013,10,20,7,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,29,1,1650,17,1,0 +2013,8,14,3,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1230,37,1,1440,51,1,0 +2013,9,17,2,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1300,-5,0,2129,-9,0,0 +2013,8,28,3,9E,14307,Theodore Francis Green State,Providence,RI,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,14,0,2033,-1,0,0 +2013,10,5,6,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,1730,-8,0,1904,-24,0,0 +2013,6,11,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-7,0,1335,2,0,0 +2013,4,9,2,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-2,0,1918,18,1,0 +2013,4,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1307,149,1,1523,135,1,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-6,0,900,-11,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1525,114,1,1547,106,1,0 +2013,9,27,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1845,43,1,1955,45,1,0 +2013,5,29,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-6,0,1856,-14,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1405,11,0,1500,3,0,0 +2013,5,16,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,-20,0,2009,-23,0,0 +2013,9,7,6,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1350,17,1,1505,12,0,0 +2013,10,15,2,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,7,0,1143,54,1,0 +2013,9,11,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1745,46,1,2044,42,1,0 +2013,5,6,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,6,0,1150,9,0,0 +2013,9,20,5,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,-5,0,1123,-12,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1225,18,1,1655,33,1,0 +2013,4,18,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,714,-7,0,845,7,0,0 +2013,9,16,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-1,0,1743,6,0,0 +2013,7,7,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,2,0,1118,-8,0,0 +2013,5,17,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,951,-8,0,1105,-6,0,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1221,42,1,1335,25,1,0 +2013,5,28,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1945,-8,0,2123,39,1,0 +2013,7,19,5,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1108,-3,0,1259,-10,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2135,219,1,8,182,1,0 +2013,10,28,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1535,-10,0,1801,-4,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,854,3,0,1346,-28,0,0 +2013,4,13,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,700,-4,0,918,-13,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,0,,1220,0,1,1 +2013,10,18,5,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,-2,0,1359,11,0,0 +2013,10,2,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1220,-1,0,1353,5,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,20,1,1555,18,1,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,837,-7,0,939,-23,0,0 +2013,4,6,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,-7,0,742,-13,0,0 +2013,7,1,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,-1,0,1914,2,0,0 +2013,5,7,2,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,705,-9,0,932,-7,0,0 +2013,4,16,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1557,-6,0,1910,-19,0,0 +2013,8,7,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,0,0,1650,10,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1510,34,1,1850,26,1,0 +2013,6,22,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-9,0,1650,-18,0,0 +2013,5,31,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,545,6,0,822,4,0,0 +2013,9,29,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1225,-3,0,1526,9,0,0 +2013,10,28,1,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2130,-8,0,535,15,1,0 +2013,5,28,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,725,-2,0,935,-1,0,0 +2013,8,18,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,-2,0,1823,-7,0,0 +2013,8,4,7,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1800,11,0,1950,2,0,0 +2013,7,7,7,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,740,-2,0,1601,-9,0,0 +2013,4,27,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1445,-2,0,1645,-9,0,0 +2013,6,27,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1631,0,0,1956,-5,0,0 +2013,9,14,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1325,7,0,1340,0,0,0 +2013,8,20,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,941,12,0,1225,2,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1715,23,1,2235,4,0,0 +2013,4,3,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1336,-5,0,0 +2013,7,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,40,1,1620,34,1,0 +2013,5,27,1,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1700,-1,0,1953,-14,0,0 +2013,10,5,6,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1315,-1,0,1550,-9,0,0 +2013,5,23,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-4,0,1206,-7,0,0 +2013,8,25,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1035,16,1,1155,0,0,0 +2013,7,26,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1845,20,1,2005,17,1,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1855,-7,0,2209,-37,0,0 +2013,6,24,1,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1215,-11,0,1336,-12,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,2,0,1614,2,0,0 +2013,5,15,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1518,-11,0,1646,-19,0,0 +2013,6,11,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,608,44,1,640,53,1,0 +2013,5,5,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,0,0,1800,-5,0,0 +2013,9,15,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2232,7,0,707,-16,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1430,-6,0,1837,-10,0,0 +2013,8,23,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,8,0,2220,-2,0,0 +2013,8,22,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1415,31,1,1638,18,1,0 +2013,7,14,7,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,750,13,0,927,0,0,0 +2013,4,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2030,-1,0,2225,-1,0,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,630,29,1,805,21,1,0 +2013,6,21,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,39,1,1345,26,1,0 +2013,5,27,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1435,-4,0,1540,-9,0,0 +2013,10,6,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,735,-2,0,1009,4,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,720,-5,0,1110,-10,0,0 +2013,5,14,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2116,-2,0,2148,8,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,-3,0,2116,-6,0,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1545,80,1,1825,74,1,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2222,-2,0,2357,-3,0,0 +2013,6,26,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,1,0,2130,-9,0,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,-2,0,2252,-9,0,0 +2013,8,11,7,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1755,9,0,1910,2,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,-5,0,1719,-8,0,0 +2013,6,16,7,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,630,24,1,859,16,1,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1420,-1,0,1703,39,1,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1024,-4,0,1136,-18,0,0 +2013,9,6,5,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,0,0,2110,-1,0,0 +2013,10,22,2,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1801,1,0,2049,-2,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,745,-7,0,1040,-13,0,0 +2013,4,3,3,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2243,12,0,640,3,0,0 +2013,7,21,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1035,22,1,1320,10,0,0 +2013,4,5,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1755,9,0,1950,-8,0,0 +2013,7,18,4,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1945,41,1,2115,20,1,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,17,1,2325,9,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,852,-5,0,1035,-12,0,0 +2013,8,18,7,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-5,0,2145,-28,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1459,4,0,1808,-19,0,0 +2013,4,3,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,0,0,835,-6,0,0 +2013,9,25,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,-4,0,955,0,0,0 +2013,10,30,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-3,0,1508,-10,0,0 +2013,9,16,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,730,100,1,825,0,1,1 +2013,6,13,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,800,63,1,1015,94,1,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,953,-6,0,1209,-36,0,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,18,1,558,10,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,-3,0,1534,-3,0,0 +2013,8,14,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1511,-3,0,1728,12,0,0 +2013,10,2,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-6,0,854,-7,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2210,6,0,55,8,0,0 +2013,9,5,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-9,0,1600,-35,0,0 +2013,8,17,6,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2100,13,0,2325,19,1,0 +2013,5,19,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,32,1,2015,27,1,0 +2013,9,9,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,610,-3,0,730,-18,0,0 +2013,8,25,7,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1234,-6,0,2050,2,0,0 +2013,7,19,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1030,-4,0,0 +2013,8,3,6,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,-5,0,742,-8,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,-4,0,903,-24,0,0 +2013,5,9,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,920,-3,0,1227,-11,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,12,0,2324,-1,0,0 +2013,6,4,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,-3,0,2005,-6,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,730,-4,0,924,-13,0,0 +2013,10,29,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-7,0,1335,6,0,0 +2013,9,12,4,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1010,-3,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,715,-3,0,820,-6,0,0 +2013,7,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,2,0,1903,-6,0,0 +2013,7,10,3,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,701,-3,0,930,-8,0,0 +2013,6,10,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,628,-20,0,0 +2013,10,28,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-6,0,1110,-20,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,800,188,1,922,161,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,1,0,1004,31,1,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-8,0,1035,-19,0,0 +2013,8,3,6,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,-2,0,1914,-39,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,5,0,1540,1,0,0 +2013,4,20,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,1426,-7,0,0 +2013,10,5,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1305,6,0,1451,1,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1859,3,0,1955,1,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,1,0,1158,-7,0,0 +2013,9,11,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-5,0,826,-14,0,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-3,0,1832,-10,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,729,-3,0,845,-5,0,0 +2013,4,8,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1959,-7,0,2127,-17,0,0 +2013,10,11,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,28,1,1548,6,0,0 +2013,5,9,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,1,0,700,-9,0,0 +2013,4,1,1,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1715,-3,0,1950,4,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,2,0,1549,-8,0,0 +2013,9,28,6,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1759,-10,0,2102,-34,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1645,26,1,1850,28,1,0 +2013,6,28,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,745,20,1,845,7,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1920,33,1,2200,21,1,0 +2013,5,16,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1354,-1,0,1415,1,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,2359,-2,0,454,4,0,0 +2013,6,23,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1120,-5,0,1315,-34,0,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1950,-2,0,2310,1,0,0 +2013,8,15,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-3,0,1937,19,1,0 +2013,9,21,6,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1450,-2,0,1755,8,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1950,11,0,2105,-4,0,0 +2013,4,13,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,-9,0,1717,7,0,0 +2013,7,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,957,-5,0,1019,-14,0,0 +2013,6,4,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1655,-6,0,1914,-5,0,0 +2013,5,3,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,9,0,2325,17,1,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2010,-2,0,2141,-12,0,0 +2013,9,6,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1310,17,1,2133,22,1,0 +2013,8,15,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,-11,0,1857,-11,0,0 +2013,4,19,5,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-1,0,1050,5,0,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1030,3,0,1450,-3,0,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,910,6,0,1345,-9,0,0 +2013,6,27,4,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,843,-2,0,1140,-19,0,0 +2013,9,23,1,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,610,-3,0,738,-14,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1357,-2,0,1550,-19,0,0 +2013,10,4,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-2,0,1701,2,0,0 +2013,7,12,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,6,0,1745,1,0,0 +2013,6,16,7,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1710,15,1,2157,-17,0,0 +2013,10,17,4,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1950,38,1,2255,22,1,0 +2013,10,17,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,-2,0,810,8,0,0 +2013,5,14,2,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,-2,0,750,-18,0,0 +2013,4,5,5,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,600,-6,0,911,38,1,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1155,35,1,1545,36,1,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,658,2,0,936,-1,0,0 +2013,10,2,3,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,855,-7,0,1027,-20,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,9,0,1925,-6,0,0 +2013,10,27,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1125,8,0,1225,7,0,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1935,9,0,2250,-1,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1614,-1,0,1821,2,0,0 +2013,4,29,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1330,2,0,2145,13,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1047,-4,0,1430,-25,0,0 +2013,7,15,1,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,-8,0,1319,7,0,0 +2013,4,19,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,15,1,2115,2,0,0 +2013,5,28,2,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,620,17,1,940,4,0,0 +2013,5,20,1,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1835,15,1,2053,9,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,5,0,1110,-21,0,0 +2013,7,9,2,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1835,8,0,2100,4,0,0 +2013,9,22,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,-5,0,1348,-21,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1512,14,0,1610,3,0,0 +2013,4,14,7,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,2255,-5,0,602,-24,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,5,0,1025,7,0,0 +2013,6,22,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1810,-4,0,2020,2,0,0 +2013,6,23,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,-8,0,1445,-21,0,0 +2013,5,6,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,-9,0,1852,-11,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1925,55,1,2123,59,1,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1125,2,0,1230,3,0,0 +2013,7,9,2,YV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1605,84,1,1732,162,1,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,7,0,2116,-4,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,6,0,1608,-12,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,34,1,1413,19,1,0 +2013,9,11,3,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1509,-5,0,1555,-5,0,0 +2013,4,22,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,810,4,0,941,5,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,-2,0,1025,0,0,0 +2013,8,7,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1350,-1,0,1555,10,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,955,0,0,1201,5,0,0 +2013,9,4,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-5,0,2130,-11,0,0 +2013,5,9,4,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,0,0,1809,6,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2035,138,1,2330,132,1,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,50,1,2030,45,1,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1346,-7,0,1512,-12,0,0 +2013,6,18,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1535,60,1,1920,43,1,0 +2013,10,9,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-6,0,1845,-20,0,0 +2013,10,17,4,9E,12953,LaGuardia,New York,NY,12451,Jacksonville International,Jacksonville,FL,805,29,1,1047,21,1,0 +2013,8,7,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2315,-4,0,740,-7,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,20,1,1208,11,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1010,0,,1132,0,1,1 +2013,4,16,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,0,0,1300,-6,0,0 +2013,4,5,5,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1211,17,1,1525,2,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,1,0,855,-1,0,0 +2013,8,13,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1540,42,1,1710,29,1,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1400,0,0,1500,-5,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-5,0,1925,-7,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,955,3,0,1115,4,0,0 +2013,9,3,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,749,-1,0,919,-5,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1950,31,1,2217,19,1,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1759,-5,0,1837,-8,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2000,-3,0,2304,-24,0,0 +2013,7,31,3,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1858,-7,0,2159,-27,0,0 +2013,7,16,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,605,-6,0,710,-4,0,0 +2013,4,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,4,0,1930,1,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1629,6,0,1922,-5,0,0 +2013,4,1,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1337,-5,0,1458,-8,0,0 +2013,5,29,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-2,0,1710,0,0,0 +2013,10,6,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,18,1,900,10,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1924,12,0,2144,33,1,0 +2013,4,20,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1013,1,0,1143,4,0,0 +2013,4,13,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1946,0,0,2023,-1,0,0 +2013,7,16,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1100,-11,0,1431,-1,0,0 +2013,9,12,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1905,1,0,2130,-12,0,0 +2013,6,19,3,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1448,30,1,1614,31,1,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1559,-6,0,1730,-9,0,0 +2013,5,20,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,7,0,1325,-10,0,0 +2013,5,11,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-7,0,857,-51,0,0 +2013,9,25,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,853,-10,0,1209,-26,0,0 +2013,9,11,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,618,0,,850,0,1,1 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1004,-6,0,1219,-34,0,0 +2013,6,12,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-1,0,1545,-2,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1426,1,0,1530,-5,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2116,9,0,2248,25,1,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1535,-3,0,1840,-11,0,0 +2013,10,3,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,36,1,2105,29,1,0 +2013,7,18,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1540,391,1,1826,375,1,0 +2013,5,18,6,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,-3,0,1518,-10,0,0 +2013,10,27,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1905,-2,0,2200,-10,0,0 +2013,7,16,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,1,0,845,-7,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,950,-2,0,1340,-33,0,0 +2013,4,5,5,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-10,0,1531,1,0,0 +2013,8,13,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,0,,1211,0,1,1 +2013,10,23,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,3,0,2110,-16,0,0 +2013,7,13,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-4,0,1034,12,0,0 +2013,4,28,7,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1051,52,1,1932,36,1,0 +2013,8,5,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-5,0,903,0,0,0 +2013,9,14,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,943,-14,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1820,11,0,1930,0,0,0 +2013,7,24,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,820,-4,0,1047,-15,0,0 +2013,5,5,7,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,720,-2,0,746,1,0,0 +2013,8,17,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,725,5,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1020,10,0,1430,-1,0,0 +2013,6,11,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1155,26,1,1449,7,0,0 +2013,9,22,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1005,-4,0,1138,1,0,0 +2013,6,16,7,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1655,84,1,1950,76,1,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,1,0,2115,2,0,0 +2013,5,30,4,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1815,224,1,2055,224,1,0 +2013,5,11,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1700,107,1,1910,134,1,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2015,-2,0,2120,-7,0,0 +2013,6,12,3,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,545,-10,0,709,-3,0,0 +2013,7,31,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-2,0,835,-10,0,0 +2013,5,22,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,8,0,2010,8,0,0 +2013,4,7,7,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,650,-1,0,905,-17,0,0 +2013,6,27,4,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,615,-3,0,830,-9,0,0 +2013,8,12,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1656,-6,0,1831,-12,0,0 +2013,10,4,5,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1707,-16,0,2004,-11,0,0 +2013,5,6,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,-2,0,1150,-4,0,0 +2013,9,18,3,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,11,0,1227,3,0,0 +2013,5,20,1,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-3,0,1914,-17,0,0 +2013,8,9,5,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1245,84,1,1425,83,1,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1330,0,0,1446,0,0,0 +2013,6,10,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1456,140,1,1658,120,1,0 +2013,6,17,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,852,-2,0,1019,-8,0,0 +2013,6,25,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1410,-2,0,2246,5,0,0 +2013,4,9,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1822,85,1,2109,103,1,0 +2013,6,22,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,2,0,1109,0,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-5,0,1612,-7,0,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1118,-4,0,1237,-11,0,0 +2013,6,14,5,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-6,0,1125,-12,0,0 +2013,5,4,6,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1158,-15,0,1709,-24,0,0 +2013,6,2,7,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,102,1,1937,132,1,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1004,-2,0,1240,-6,0,0 +2013,5,23,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1110,39,1,1402,29,1,0 +2013,8,13,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2031,1,0,2337,-8,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1745,-2,0,145,-2,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,618,5,0,920,47,1,0 +2013,6,11,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1735,-4,0,1905,-8,0,0 +2013,7,23,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1725,27,1,1850,24,1,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-4,0,1317,9,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1523,-2,0,1752,14,0,0 +2013,5,31,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,78,1,1912,84,1,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2145,-2,0,1,-24,0,0 +2013,5,31,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1805,-1,0,2045,-4,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1645,8,0,1755,5,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,-1,0,1425,7,0,0 +2013,10,25,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,735,-1,0,920,3,0,0 +2013,7,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,16,1,1100,42,1,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1145,15,1,1840,43,1,0 +2013,10,19,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-4,0,1550,4,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,18,1,1517,16,1,0 +2013,6,18,2,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1721,0,,1925,0,1,1 +2013,10,11,5,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-2,0,2116,-28,0,0 +2013,5,11,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1355,-1,0,1515,-5,0,0 +2013,10,24,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,2,0,1210,-12,0,0 +2013,5,25,6,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,730,-2,0,1345,-20,0,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,13,0,2340,-13,0,0 +2013,8,21,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1635,35,1,1725,33,1,0 +2013,4,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1020,5,0,1637,-8,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1715,-2,0,2059,10,0,0 +2013,10,17,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-1,0,1520,-16,0,0 +2013,10,21,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,-1,0,1640,-8,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,913,-1,0,1133,-13,0,0 +2013,9,15,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,754,-9,0,0 +2013,7,14,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,955,25,1,1121,14,0,0 +2013,10,18,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1730,-4,0,1858,-9,0,0 +2013,8,1,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1857,14,0,2030,17,1,0 +2013,10,11,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-3,0,1520,-15,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,101,1,2030,102,1,0 +2013,9,23,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1520,129,1,1750,112,1,0 +2013,6,2,7,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1745,-1,0,2106,3,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1405,-4,0,1645,-17,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1621,24,1,1758,29,1,0 +2013,6,30,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,716,-10,0,820,-11,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1000,-7,0,1158,-12,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2205,18,1,2327,11,0,0 +2013,4,4,4,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,-4,0,2155,4,0,0 +2013,4,11,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,-5,0,2029,-7,0,0 +2013,5,12,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-7,0,1050,-13,0,0 +2013,9,25,3,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,19,1,1340,-11,0,0 +2013,4,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1750,-10,0,2001,5,0,0 +2013,10,28,1,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1830,-9,0,2042,3,0,0 +2013,4,1,1,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,746,2,0,1114,11,0,0 +2013,7,21,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-10,0,1209,-23,0,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,607,-4,0,819,-6,0,0 +2013,10,12,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1540,4,0,1645,-3,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,22,1,925,22,1,0 +2013,8,31,6,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,-3,0,1835,-9,0,0 +2013,5,30,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1256,4,0,1434,-27,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1030,0,0,1800,-12,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-6,0,914,-10,0,0 +2013,8,7,3,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,800,-3,0,906,-6,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1105,0,0,1410,-9,0,0 +2013,9,3,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-2,0,1245,-3,0,0 +2013,6,10,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,31,1,1919,46,1,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,20,1,40,11,0,0 +2013,6,27,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,23,1,2247,18,1,0 +2013,4,5,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1120,2,0,1235,-1,0,0 +2013,8,9,5,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,945,-5,0,1246,-1,0,0 +2013,6,25,2,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,830,45,1,1117,53,1,0 +2013,10,19,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2040,0,0,448,-19,0,0 +2013,10,21,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-2,0,1910,2,0,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1754,-4,0,1918,-19,0,0 +2013,8,26,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,-10,0,1934,-6,0,0 +2013,7,20,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1515,-1,0,1520,5,0,0 +2013,7,18,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-5,0,800,-11,0,0 +2013,8,11,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1015,35,1,1150,44,1,0 +2013,8,8,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1234,11,0,1447,-1,0,0 +2013,7,28,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,5,0,815,6,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,-3,0,1502,-9,0,0 +2013,5,3,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1620,-5,0,1829,-7,0,0 +2013,6,23,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-1,0,1555,-9,0,0 +2013,7,19,5,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,50,1,2010,54,1,0 +2013,5,11,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1455,2,0,1600,-3,0,0 +2013,8,1,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1720,0,,1905,0,1,1 +2013,4,9,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1630,91,1,1750,79,1,0 +2013,10,22,2,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1042,-5,0,1143,-14,0,0 +2013,7,23,2,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-6,0,1125,-16,0,0 +2013,7,10,3,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1042,34,1,1618,25,1,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,24,1,1034,52,1,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,35,1,1835,42,1,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1740,-4,0,2148,-25,0,0 +2013,8,17,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,721,3,0,959,-8,0,0 +2013,4,11,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,24,1,2245,21,1,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2105,29,1,2250,19,1,0 +2013,9,16,1,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1926,8,0,6,-5,0,0 +2013,10,10,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1200,-8,0,1300,-9,0,0 +2013,4,3,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1400,-10,0,1525,-3,0,0 +2013,6,4,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1302,-1,0,1702,0,0,0 +2013,4,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1655,-1,0,1850,-1,0,0 +2013,7,27,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,2055,-3,0,2255,-16,0,0 +2013,10,3,4,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,832,-4,0,926,2,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1520,-3,0,1907,-20,0,0 +2013,4,28,7,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,835,1,0,1050,0,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1425,15,1,1545,1,0,0 +2013,6,1,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,29,1,1836,19,1,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,8,0,1105,-1,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-3,0,1222,17,1,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,850,4,0,1111,0,0,0 +2013,9,26,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1055,33,1,1645,44,1,0 +2013,5,16,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,30,1,1903,22,1,0 +2013,9,4,3,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1111,-12,0,1309,-25,0,0 +2013,5,3,5,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,811,-4,0,1007,-15,0,0 +2013,5,10,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,622,-6,0,750,-11,0,0 +2013,4,29,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1635,5,0,2040,-20,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,910,2,0,1225,-7,0,0 +2013,6,21,5,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1650,2,0,2055,4,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1615,38,1,1720,29,1,0 +2013,9,8,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,1,0,1515,5,0,0 +2013,7,14,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,2030,24,1,2330,18,1,0 +2013,10,2,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1115,-4,0,1952,-5,0,0 +2013,9,15,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1820,-3,0,2000,-15,0,0 +2013,10,24,4,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2339,5,0,805,0,0,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-7,0,1710,-12,0,0 +2013,10,1,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,840,-15,0,1006,-29,0,0 +2013,4,9,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1809,20,1,2156,-1,0,0 +2013,9,5,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1450,-4,0,1605,-15,0,0 +2013,5,17,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,0,1350,-10,0,0 +2013,8,21,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,706,-4,0,1034,-17,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,718,17,1,1128,19,1,0 +2013,5,8,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-6,0,640,-21,0,0 +2013,6,26,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1823,24,1,2115,15,1,0 +2013,5,22,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1150,1,0,1305,3,0,0 +2013,9,23,1,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-7,0,1355,-17,0,0 +2013,8,17,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,950,19,1,1240,13,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,-3,0,57,7,0,0 +2013,8,23,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,640,-6,0,835,-12,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1803,11,0,1947,17,1,0 +2013,7,20,6,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1620,3,0,1720,-9,0,0 +2013,8,13,2,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,-3,0,1031,10,0,0 +2013,8,23,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,840,-1,0,1040,-31,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1939,7,0,2318,-23,0,0 +2013,8,27,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-5,0,858,-16,0,0 +2013,9,30,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,-7,0,2104,-10,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,1,0,1705,-5,0,0 +2013,10,1,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1742,-6,0,2149,3,0,0 +2013,9,15,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1827,-7,0,1938,-9,0,0 +2013,8,5,1,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,6,0,2005,13,0,0 +2013,5,13,1,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1823,6,0,2100,10,0,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1047,-3,0,1827,2,0,0 +2013,9,20,5,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,90,1,2035,84,1,0 +2013,8,29,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1239,-6,0,1558,-6,0,0 +2013,6,23,7,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1449,-5,0,1636,-9,0,0 +2013,6,6,4,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1853,24,1,2229,13,0,0 +2013,7,5,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1935,1,0,2125,-4,0,0 +2013,4,13,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,42,1,630,7,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1430,-2,0,1600,-13,0,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2208,7,0,2348,35,1,0 +2013,9,21,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1455,5,0,1555,17,1,0 +2013,6,2,7,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2200,-4,0,2355,-6,0,0 +2013,4,19,5,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,600,230,1,845,225,1,0 +2013,8,26,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,-6,0,2036,-15,0,0 +2013,8,26,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,915,72,1,1030,73,1,0 +2013,5,15,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-9,0,635,-22,0,0 +2013,4,23,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,37,1,2105,29,1,0 +2013,6,16,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,114,1,1535,120,1,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1625,-2,0,1737,5,0,0 +2013,4,30,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-4,0,2125,-8,0,0 +2013,7,30,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,750,3,0,925,-9,0,0 +2013,9,20,5,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1117,-9,0,1234,-15,0,0 +2013,7,17,3,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-9,0,821,-2,0,0 +2013,10,15,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,15,1,1200,6,0,0 +2013,4,16,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1245,-1,0,1520,-16,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,915,-4,0,1020,-5,0,0 +2013,9,17,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,1,0,1620,-3,0,0 +2013,8,10,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,30,1,1115,25,1,0 +2013,5,13,1,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1500,-4,0,1609,-5,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,-1,0,1719,8,0,0 +2013,5,15,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,-6,0,1819,-25,0,0 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1100,16,1,1320,38,1,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1205,18,1,1345,21,1,0 +2013,5,13,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-5,0,1212,-17,0,0 +2013,4,23,2,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1159,21,1,1342,10,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,3,0,1505,0,0,0 +2013,9,3,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1934,-2,0,2128,-24,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,735,-5,0,1205,-15,0,0 +2013,4,16,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1340,27,1,1435,21,1,0 +2013,9,30,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,153,1,1710,140,1,0 +2013,5,17,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,8,0,1524,-2,0,0 +2013,7,14,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1234,0,0,1415,-24,0,0 +2013,5,2,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1920,12,0,2058,-1,0,0 +2013,9,14,6,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2156,-6,0,2242,-7,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,-1,0,2352,-23,0,0 +2013,5,5,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1355,-12,0,1659,-22,0,0 +2013,7,7,7,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,700,-3,0,1249,-12,0,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-3,0,1540,-6,0,0 +2013,8,7,3,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,723,-6,0,924,-12,0,0 +2013,6,4,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-7,0,1856,-21,0,0 +2013,8,12,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,22,1,2125,26,1,0 +2013,8,1,4,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,845,13,0,1410,-2,0,0 +2013,10,12,6,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1645,-4,0,1810,-6,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1420,0,0,1619,0,0,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2146,29,1,142,-9,0,0 +2013,6,2,7,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2108,-5,0,530,-17,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1805,63,1,1935,59,1,0 +2013,9,19,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,640,135,1,815,144,1,0 +2013,8,14,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-2,0,841,2,0,0 +2013,4,12,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,0,0,1855,2,0,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,-2,0,2009,0,0,0 +2013,10,13,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-9,0,1140,6,0,0 +2013,10,26,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1404,16,1,1535,2,0,0 +2013,9,4,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,615,-6,0,730,0,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,905,1,0,1144,-27,0,0 +2013,8,20,2,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,2157,-7,0,2359,-20,0,0 +2013,5,20,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,645,4,0,1507,34,1,0 +2013,10,4,5,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1355,4,0,1545,-4,0,0 +2013,8,14,3,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,920,-3,0,1040,-9,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-4,0,1750,-6,0,0 +2013,6,4,2,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-1,0,847,-8,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1935,26,1,2247,6,0,0 +2013,5,29,3,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-5,0,1120,-10,0,0 +2013,4,28,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-5,0,1440,-13,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2008,-2,0,2140,-2,0,0 +2013,10,16,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1740,-3,0,1905,-5,0,0 +2013,7,8,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,815,15,1,935,-1,0,0 +2013,9,15,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1705,29,1,1910,37,1,0 +2013,7,30,2,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1015,0,0,1434,-9,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1706,29,1,1909,11,0,0 +2013,8,1,4,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1726,-3,0,1936,-5,0,0 +2013,9,9,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1609,-5,0,1732,5,0,0 +2013,10,10,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,844,-7,0,0 +2013,9,22,7,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,725,-3,0,822,-20,0,0 +2013,7,5,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1905,17,1,2020,10,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-1,0,920,3,0,0 +2013,5,13,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1705,29,1,2055,35,1,0 +2013,7,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,857,-7,0,1153,-17,0,0 +2013,5,21,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1104,25,1,1255,9,0,0 +2013,8,22,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,-5,0,1130,-12,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1026,-5,0,1205,18,1,0 +2013,4,16,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1835,0,0,1940,-14,0,0 +2013,9,6,5,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-8,0,900,-45,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,-1,0,1649,-6,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,945,-2,0,1420,-2,0,0 +2013,6,29,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1545,-8,0,2005,22,1,0 +2013,8,17,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,-3,0,1755,-18,0,0 +2013,7,12,5,AS,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,18,1,147,-1,0,0 +2013,5,24,5,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1135,14,0,1520,-9,0,0 +2013,9,30,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,84,1,840,66,1,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,625,3,0,1025,-9,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,-1,0,1340,-5,0,0 +2013,6,9,7,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,5,0,2235,-2,0,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1245,4,0,1412,-10,0,0 +2013,4,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1715,-3,0,1824,1,0,0 +2013,4,22,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,800,-7,0,1037,-25,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2155,56,1,2335,52,1,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1709,2,0,1829,-13,0,0 +2013,9,28,6,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,545,-2,0,734,-6,0,0 +2013,4,14,7,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1820,6,0,2130,2,0,0 +2013,9,16,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-4,0,1400,-1,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,17,1,2035,3,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,830,-4,0,0 +2013,9,6,5,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1054,-4,0,1534,-10,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,900,14,0,1010,16,1,0 +2013,9,9,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1405,-1,0,1530,22,1,0 +2013,10,21,1,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,630,-4,0,840,-8,0,0 +2013,4,5,5,UA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,540,-1,0,745,-13,0,0 +2013,6,2,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,34,1,1910,105,1,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2010,18,1,2200,15,1,0 +2013,7,14,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,821,-2,0,1048,-10,0,0 +2013,8,28,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1243,6,0,1408,-7,0,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,-4,0,1033,-8,0,0 +2013,10,9,3,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-10,0,1029,-31,0,0 +2013,6,29,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,848,1,0,922,0,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,8,0,2110,-19,0,0 +2013,8,24,6,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,814,5,0,1025,-8,0,0 +2013,6,12,3,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,-2,0,1758,-4,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,710,-4,0,1202,-11,0,0 +2013,7,9,2,OO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,3,0,1620,-15,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2120,7,0,2251,-8,0,0 +2013,4,18,4,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,65,1,618,79,1,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,600,-3,0,1025,-24,0,0 +2013,8,20,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1722,2,0,1808,3,0,0 +2013,9,21,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1355,-6,0,1555,32,1,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,76,1,1205,66,1,0 +2013,6,29,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,1,0,1050,-9,0,0 +2013,5,14,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1117,3,0,1305,-19,0,0 +2013,9,20,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,942,-2,0,1141,-15,0,0 +2013,6,20,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1230,0,0,1335,-12,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-5,0,945,3,0,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2000,-5,0,2300,-13,0,0 +2013,8,7,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-6,0,1015,14,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,859,-2,0,1613,-19,0,0 +2013,10,27,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,700,-4,0,1158,-21,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,-8,0,2045,-19,0,0 +2013,9,24,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,5,0,1910,1,0,0 +2013,4,12,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1917,-4,0,2201,-7,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1425,6,0,1601,2,0,0 +2013,6,28,5,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,750,0,0,1345,-3,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1030,12,0,1405,1,0,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1237,-2,0,1351,4,0,0 +2013,5,7,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1625,-7,0,1915,-3,0,0 +2013,5,25,6,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1135,-1,0,1505,-11,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,77,1,1820,57,1,0 +2013,6,2,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,5,0,1740,4,0,0 +2013,9,4,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-3,0,919,-2,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,645,-3,0,735,-7,0,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1930,28,1,2142,24,1,0 +2013,8,8,4,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1148,72,1,1354,61,1,0 +2013,6,5,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,39,1,2126,23,1,0 +2013,4,24,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,605,-2,0,720,1,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,-2,0,1605,-14,0,0 +2013,5,6,1,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,-5,0,1900,-27,0,0 +2013,9,22,7,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1050,3,0,1250,6,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1420,-5,0,1608,-3,0,0 +2013,4,4,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1446,0,0,0 +2013,7,12,5,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1900,-10,0,2005,-24,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1925,6,0,2015,-9,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1545,-7,0,1826,-6,0,0 +2013,7,28,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,290,1,2239,313,1,0 +2013,9,17,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-6,0,1815,-19,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,31,1,1050,25,1,0 +2013,10,6,7,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,-1,0,2250,5,0,0 +2013,8,15,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-2,0,1455,-22,0,0 +2013,5,17,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,912,-1,0,1012,-14,0,0 +2013,4,22,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,955,0,0,1115,-9,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1832,-2,0,1940,2,0,0 +2013,4,30,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,737,10,0,918,23,1,0 +2013,8,22,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,2,0,1654,-6,0,0 +2013,7,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,-2,0,1740,4,0,0 +2013,8,6,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-8,0,2025,-10,0,0 +2013,9,6,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1320,9,0,1450,1,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1520,88,1,1745,71,1,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-4,0,2120,-14,0,0 +2013,8,30,5,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1943,-3,0,2247,-9,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,804,0,0,1107,-3,0,0 +2013,6,24,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,40,1,2249,25,1,0 +2013,7,8,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1710,73,1,1952,64,1,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,2000,35,1,2355,5,0,0 +2013,5,19,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1550,2,0,1655,-8,0,0 +2013,4,23,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2135,17,1,2157,36,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1945,10,0,2258,-2,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,2005,-2,0,2132,-16,0,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-4,0,905,-7,0,0 +2013,5,30,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,843,11,0,1210,5,0,0 +2013,6,1,6,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,29,1,1340,60,1,0 +2013,6,14,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,167,1,1925,153,1,0 +2013,5,29,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1611,-4,0,1730,-9,0,0 +2013,5,22,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1050,4,0,1310,-8,0,0 +2013,8,20,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-5,0,1614,18,1,0 +2013,5,7,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1640,8,0,1850,-10,0,0 +2013,5,26,7,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-7,0,810,-17,0,0 +2013,4,6,6,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,1202,-6,0,0 +2013,10,20,7,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-5,0,2359,-16,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1842,-3,0,1949,-12,0,0 +2013,5,24,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,4,0,1656,-1,0,0 +2013,6,1,6,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,550,-8,0,817,-20,0,0 +2013,7,1,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,60,1,1237,47,1,0 +2013,10,20,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1111,-5,0,0 +2013,5,21,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,12,0,1300,3,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,846,-7,0,1058,-18,0,0 +2013,5,30,4,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,213,1,2118,222,1,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,20,1,1220,9,0,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1450,18,1,1615,14,0,0 +2013,6,26,3,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1826,28,1,2059,8,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1456,-4,0,1603,23,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1650,3,0,1826,-14,0,0 +2013,4,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2210,4,0,5,7,0,0 +2013,9,4,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,100,1,1010,93,1,0 +2013,8,17,6,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,754,-4,0,1336,-6,0,0 +2013,4,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2010,-10,0,2130,-12,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1910,1,0,2030,5,0,0 +2013,4,10,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1045,140,1,1225,214,1,0 +2013,6,20,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,15,1,1819,24,1,0 +2013,4,30,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1118,0,0,0 +2013,6,2,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,900,-4,0,1215,-29,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1935,6,0,2225,11,0,0 +2013,7,31,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-8,0,2117,-21,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1625,17,1,1745,8,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,-4,0,1110,0,0,0 +2013,7,27,6,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,625,-4,0,918,-10,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1055,0,0,1235,9,0,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,825,19,1,1050,10,0,0 +2013,5,11,6,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1355,8,0,1534,-11,0,0 +2013,6,19,3,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1705,5,0,1835,7,0,0 +2013,8,20,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-1,0,1411,-3,0,0 +2013,7,12,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,820,-4,0,1005,-15,0,0 +2013,6,16,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,9,0,1320,-6,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,830,-3,0,1055,-3,0,0 +2013,8,31,6,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1401,1,0,1614,6,0,0 +2013,9,17,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-6,0,1012,4,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,52,1,1825,49,1,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,835,2,0,1405,-5,0,0 +2013,4,26,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1815,-1,0,1940,-8,0,0 +2013,9,26,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1950,15,1,2055,16,1,0 +2013,10,5,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1755,-9,0,1840,-22,0,0 +2013,10,22,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-3,0,920,-5,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,736,-4,0,854,-10,0,0 +2013,10,27,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,730,-4,0,825,-3,0,0 +2013,9,10,2,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1107,-4,0,1618,1,0,0 +2013,4,2,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,4,0,1420,-2,0,0 +2013,5,18,6,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,700,-8,0,1523,-7,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,800,11,0,1302,24,1,0 +2013,10,4,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1930,-3,0,2159,4,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,0,0,1520,-5,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2015,30,1,2120,23,1,0 +2013,4,25,4,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1539,3,0,1644,5,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1155,-4,0,1315,29,1,0 +2013,9,5,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-7,0,1319,-22,0,0 +2013,9,24,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1240,-3,0,1422,-13,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,902,13,0,1604,8,0,0 +2013,4,23,2,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,19,1,2259,9,0,0 +2013,7,3,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,115,15,1,615,15,1,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1435,0,0,1654,0,0,0 +2013,5,14,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-2,0,2111,1,0,0 +2013,9,17,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,-8,0,1409,2,0,0 +2013,10,6,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,725,-3,0,910,-8,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,0,0,1223,-4,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1500,37,1,2020,40,1,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1540,-4,0,1930,-13,0,0 +2013,10,7,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,0,,2245,0,1,1 +2013,7,1,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1425,-3,0,1547,-16,0,0 +2013,5,7,2,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1126,-7,0,1251,-14,0,0 +2013,10,16,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1357,-8,0,1538,3,0,0 +2013,7,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1820,2,0,2200,-11,0,0 +2013,4,14,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,845,28,1,1121,11,0,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,928,11,0,1131,45,1,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1916,-1,0,2057,-11,0,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1020,4,0,1630,-17,0,0 +2013,6,22,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,2,0,900,1,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,732,-6,0,907,-11,0,0 +2013,8,13,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-3,0,2140,-5,0,0 +2013,4,13,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,-3,0,1410,-8,0,0 +2013,8,10,6,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2125,107,1,550,88,1,0 +2013,6,29,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,0,0,937,7,0,0 +2013,8,4,7,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1644,13,0,1829,29,1,0 +2013,10,26,6,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2055,0,0,2325,-12,0,0 +2013,4,9,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,4,0,920,9,0,0 +2013,7,2,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1215,-2,0,1334,-3,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1620,35,1,2105,21,1,0 +2013,10,20,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,815,-10,0,1115,-14,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-1,0,910,-26,0,0 +2013,8,20,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-7,0,1709,-3,0,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,815,-1,0,915,-12,0,0 +2013,8,7,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1305,14,0,1435,13,0,0 +2013,7,14,7,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1230,-2,0,1520,-30,0,0 +2013,9,1,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,-3,0,1640,-16,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,14,0,2045,2,0,0 +2013,7,28,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,13,0,1755,-4,0,0 +2013,5,17,5,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-8,0,1215,-10,0,0 +2013,10,7,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,3,0,1124,-2,0,0 +2013,8,8,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1005,-2,0,1332,-12,0,0 +2013,5,14,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-4,0,1740,-2,0,0 +2013,10,7,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,0,,1845,0,1,1 +2013,5,10,5,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1937,7,0,813,8,0,0 +2013,7,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1251,112,1,1419,133,1,0 +2013,4,12,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1552,-6,0,1739,-1,0,0 +2013,8,19,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,915,8,0,1025,16,1,0 +2013,8,8,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1431,317,1,1605,326,1,0 +2013,4,27,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,851,68,1,1103,72,1,0 +2013,10,18,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,0,0,626,2,0,0 +2013,8,4,7,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,-7,0,1725,-3,0,0 +2013,6,8,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1931,14,0,2100,7,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1915,26,1,2340,18,1,0 +2013,6,26,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-4,0,720,25,1,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-4,0,930,-8,0,0 +2013,9,15,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1345,-7,0,1639,-19,0,0 +2013,6,12,3,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1256,75,1,1514,62,1,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,7,0,1305,4,0,0 +2013,9,17,2,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1205,14,0,1325,13,0,0 +2013,9,21,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-8,0,840,-13,0,0 +2013,10,11,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,-6,0,1035,-22,0,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1627,-2,0,1959,-8,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1708,-3,0,1856,-9,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1830,5,0,2204,63,1,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1425,3,0,1731,-20,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,-2,0,2201,-18,0,0 +2013,5,2,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,0,,1635,0,1,1 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,-2,0,1546,-18,0,0 +2013,6,7,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,64,1,2110,72,1,0 +2013,8,28,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1355,-6,0,1518,-10,0,0 +2013,5,2,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1030,8,0,1309,13,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1522,-3,0,1654,-29,0,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,835,-2,0,1030,-31,0,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,0,0,44,2,0,0 +2013,6,3,1,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1215,-6,0,1338,-24,0,0 +2013,5,10,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,2,0,935,1,0,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,-2,0,1356,0,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1920,-6,0,2302,-14,0,0 +2013,8,28,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1357,-7,0,1435,-16,0,0 +2013,10,10,4,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,801,-4,0,1007,-10,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1812,15,1,1941,-11,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,736,-6,0,1011,3,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1327,305,1,1705,302,1,0 +2013,10,3,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,935,-1,0,1055,-10,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1320,4,0,1457,-3,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1954,-4,0,2302,-17,0,0 +2013,5,23,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,8,0,844,15,1,0 +2013,8,1,4,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,810,103,1,1610,102,1,0 +2013,10,1,2,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1019,-5,0,1315,-8,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,-1,0,930,2,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1734,1,0,2046,-9,0,0 +2013,6,20,4,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,31,1,1017,31,1,0 +2013,5,15,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-9,0,1318,-28,0,0 +2013,9,6,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-2,0,1743,49,1,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,600,25,1,1115,25,1,0 +2013,10,15,2,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-10,0,1315,1,0,0 +2013,4,26,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1300,8,0,1537,19,1,0 +2013,8,8,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,805,3,0,0 +2013,10,14,1,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1335,129,1,1410,128,1,0 +2013,9,4,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1645,-1,0,1805,-5,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,35,1,2210,33,1,0 +2013,6,1,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-3,0,1844,-16,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1910,46,1,2105,44,1,0 +2013,8,12,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,917,-3,0,1235,-9,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,950,-1,0,1050,6,0,0 +2013,10,15,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,550,-3,0,700,-8,0,0 +2013,7,16,2,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2010,20,1,2235,8,0,0 +2013,4,13,6,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1032,-3,0,1220,-6,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2112,8,0,2248,-12,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,0,0,921,21,1,0 +2013,8,3,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,36,1,1555,31,1,0 +2013,10,7,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1405,3,0,2000,-6,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1858,1,0,2329,-24,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,243,1,950,240,1,0 +2013,10,24,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,6,0,2045,6,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,-2,0,857,11,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1815,79,1,2121,77,1,0 +2013,6,22,6,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,2,0,1445,-8,0,0 +2013,8,2,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,21,1,2041,19,1,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,2230,-4,0,536,-1,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1325,4,0,1545,-7,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1701,33,1,1722,36,1,0 +2013,6,19,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,610,-4,0,740,-11,0,0 +2013,8,6,2,YV,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,1,0,1908,2,0,0 +2013,6,10,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1636,125,1,1845,128,1,0 +2013,7,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1035,-2,0,1355,-8,0,0 +2013,5,30,4,UA,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,627,-1,0,801,-5,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1704,-5,0,1844,-15,0,0 +2013,5,2,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1815,73,1,1920,77,1,0 +2013,6,15,6,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,901,1,0,0 +2013,6,26,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,756,-3,0,1106,-1,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,810,-3,0,1125,-9,0,0 +2013,8,7,3,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,834,-7,0,1023,-9,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1002,-6,0,1458,-16,0,0 +2013,9,27,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,-3,0,1927,-26,0,0 +2013,7,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,0,,1435,0,1,1 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1730,-2,0,1925,-7,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1945,88,1,2318,71,1,0 +2013,4,11,4,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,6,0,1455,16,1,0 +2013,6,19,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1456,11,0,1658,3,0,0 +2013,4,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1124,-5,0,1217,-8,0,0 +2013,5,9,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2020,7,0,2200,34,1,0 +2013,10,31,4,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,0,0,1945,-4,0,0 +2013,7,25,4,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,-4,0,2135,-8,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,822,-1,0,940,-21,0,0 +2013,10,22,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1035,-3,0,1149,-1,0,0 +2013,7,31,3,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1520,-6,0,2328,2,0,0 +2013,9,26,4,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2059,2,0,2232,-2,0,0 +2013,10,5,6,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-4,0,810,-8,0,0 +2013,10,3,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1154,-4,0,1525,11,0,0 +2013,10,26,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-4,0,2159,-11,0,0 +2013,8,18,7,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1040,-3,0,1230,-5,0,0 +2013,4,5,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,600,-3,0,725,-9,0,0 +2013,7,13,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1730,-1,0,1935,-12,0,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,835,-1,0,925,-1,0,0 +2013,5,5,7,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1800,14,0,2350,16,1,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,0,0,1105,9,0,0 +2013,9,23,1,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,-1,0,2248,-23,0,0 +2013,6,15,6,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-6,0,1046,-5,0,0 +2013,6,16,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,651,15,1,936,11,0,0 +2013,8,1,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1045,62,1,1500,87,1,0 +2013,6,13,4,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,35,1,1335,105,1,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1342,2,0,1517,-21,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,834,-2,0,1210,5,0,0 +2013,5,28,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,1929,-20,0,0 +2013,8,23,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1155,2,0,1320,1,0,0 +2013,5,17,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,7,0,2129,8,0,0 +2013,9,11,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-3,0,1625,-7,0,0 +2013,8,12,1,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-5,0,754,-1,0,0 +2013,6,9,7,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,0,0,2125,-5,0,0 +2013,4,9,2,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-7,0,1816,-8,0,0 +2013,7,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2206,17,1,2351,-2,0,0 +2013,5,2,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,716,1,0,931,-15,0,0 +2013,6,5,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2136,-5,0,2245,-12,0,0 +2013,6,17,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,945,-8,0,1125,-26,0,0 +2013,9,19,4,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-15,0,1823,-14,0,0 +2013,7,30,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-1,0,1442,0,1,1 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,705,-1,0,945,-9,0,0 +2013,6,21,5,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1405,2,0,1620,-11,0,0 +2013,6,1,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1605,24,1,2010,24,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,50,1,1125,50,1,0 +2013,7,1,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,78,1,2238,80,1,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,10,0,1238,39,1,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2015,-6,0,2132,-17,0,0 +2013,6,9,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-1,0,1115,-12,0,0 +2013,8,8,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1907,86,1,2023,81,1,0 +2013,10,21,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2000,-7,0,2029,-6,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,0,0,1605,-10,0,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1648,-2,0,1918,-23,0,0 +2013,7,4,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,-3,0,1515,7,0,0 +2013,8,13,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,0,,1115,0,1,1 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1800,36,1,2035,34,1,0 +2013,4,8,1,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1410,3,0,1655,0,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2032,1,0,2237,0,0,0 +2013,7,17,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1702,81,1,2003,60,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,18,1,1055,19,1,0 +2013,6,14,5,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,545,7,0,716,-5,0,0 +2013,7,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2115,-4,0,2220,-4,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,705,-5,0,1005,-8,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2047,-6,0,2317,16,1,0 +2013,9,8,7,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1850,5,0,2019,1,0,0 +2013,9,28,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,854,-7,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1845,4,0,2235,-4,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1925,-3,0,2340,-13,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1305,2,0,1730,7,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,-2,0,820,-8,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,35,1,2220,34,1,0 +2013,9,23,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1735,23,1,2305,10,0,0 +2013,5,9,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,743,-7,0,0 +2013,4,21,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1540,35,1,1710,25,1,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1752,29,1,2037,6,0,0 +2013,4,7,7,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,6,0,655,6,0,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,-1,0,1740,17,1,0 +2013,10,27,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1049,-10,0,1157,-13,0,0 +2013,5,9,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,12,0,1918,2,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1235,2,0,1340,-4,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,-2,0,1505,10,0,0 +2013,7,7,7,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,533,2,0,940,3,0,0 +2013,10,4,5,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,650,-8,0,817,-14,0,0 +2013,7,19,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1031,8,0,1248,11,0,0 +2013,4,26,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,0,,740,0,1,1 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1355,22,1,1623,36,1,0 +2013,4,27,6,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,-3,0,2240,-1,0,0 +2013,9,27,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1356,22,1,1528,22,1,0 +2013,8,11,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,925,-4,0,1153,-3,0,0 +2013,6,27,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-1,0,1715,108,1,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,6,0,1311,17,1,0 +2013,9,26,4,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-7,0,1907,-29,0,0 +2013,7,27,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1145,-4,0,1435,-9,0,0 +2013,6,12,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,640,-6,0,1000,-9,0,0 +2013,4,9,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-2,0,1655,-15,0,0 +2013,8,6,2,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-1,0,1556,0,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2135,-5,0,20,-16,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1055,-8,0,1201,-6,0,0 +2013,6,10,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2018,-6,0,2119,-13,0,0 +2013,6,6,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1125,4,0,1247,-2,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1329,-10,0,1625,-23,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-7,0,1058,-13,0,0 +2013,9,30,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-10,0,1530,-9,0,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-2,0,1435,-24,0,0 +2013,5,18,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-7,0,2030,-18,0,0 +2013,10,27,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-1,0,915,-5,0,0 +2013,5,4,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-2,0,830,-13,0,0 +2013,10,8,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,735,2,0,835,-5,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,5,0,943,2,0,0 +2013,5,17,5,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,815,-2,0,1620,-11,0,0 +2013,4,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1315,26,1,1540,15,1,0 +2013,7,25,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-5,0,1115,-8,0,0 +2013,6,13,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1145,3,0,1750,-8,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,805,-2,0,925,-16,0,0 +2013,9,25,3,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-8,0,2104,-13,0,0 +2013,7,31,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1100,-7,0,1145,-11,0,0 +2013,9,10,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,0,,1611,0,1,1 +2013,10,15,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,257,1,1549,259,1,0 +2013,9,22,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-7,0,1419,-29,0,0 +2013,6,27,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1115,-2,0,1259,20,1,0 +2013,5,30,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1110,-3,0,1305,2,0,0 +2013,8,28,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-4,0,1412,2,0,0 +2013,5,17,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1957,-5,0,2107,-12,0,0 +2013,5,16,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,11,0,2225,10,0,0 +2013,10,22,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1149,-4,0,1406,-14,0,0 +2013,4,19,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1500,18,1,1738,10,0,0 +2013,8,16,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-7,0,1240,15,1,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2150,-2,0,2335,-14,0,0 +2013,8,5,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,-3,0,930,-9,0,0 +2013,6,18,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1407,-1,0,1600,-7,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1520,-8,0,2302,-2,0,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,844,-1,0,1646,-2,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1205,-4,0,1345,-11,0,0 +2013,10,23,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1215,9,0,1400,6,0,0 +2013,5,31,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1246,-7,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-6,0,2153,-16,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1000,-4,0,1123,42,1,0 +2013,4,26,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1446,-1,0,1536,-5,0,0 +2013,7,31,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-5,0,1302,-3,0,0 +2013,4,4,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-1,0,935,32,1,0 +2013,5,15,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1325,-1,0,1500,-10,0,0 +2013,4,20,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,842,0,0,927,-4,0,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,18,1,905,0,1,1 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,0,0,1415,-3,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1122,0,0,1503,-8,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1340,9,0,1504,17,1,0 +2013,6,5,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,745,-19,0,0 +2013,9,8,7,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-3,0,1015,-13,0,0 +2013,7,16,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-10,0,1656,-7,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1742,-3,0,1923,-21,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,-1,0,2035,-11,0,0 +2013,9,27,5,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-3,0,636,-11,0,0 +2013,10,24,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,-3,0,1837,-11,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2200,2,0,2343,1,0,0 +2013,5,27,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,901,-17,0,0 +2013,5,12,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1840,0,0,1930,7,0,0 +2013,6,9,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-2,0,958,3,0,0 +2013,8,16,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-8,0,1534,-5,0,0 +2013,7,13,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1011,125,1,1202,138,1,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,950,-2,0,1001,-9,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,700,-2,0,835,-3,0,0 +2013,5,6,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1653,42,1,1840,30,1,0 +2013,5,27,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-4,0,1803,-23,0,0 +2013,8,16,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,-10,0,1135,-23,0,0 +2013,9,26,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,755,-4,0,1137,-4,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,-2,0,1115,-6,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-4,0,1436,-8,0,0 +2013,8,9,5,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,0,0,1320,-6,0,0 +2013,6,17,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,10,0,1400,3,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,16,1,1203,14,0,0 +2013,7,7,7,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1430,0,0,1718,-8,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,555,-2,0,1432,-13,0,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,0,,1635,0,1,1 +2013,4,1,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,-7,0,930,-15,0,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,-2,0,2019,0,0,0 +2013,9,19,4,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,752,-9,0,904,-15,0,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,620,-2,0,730,-10,0,0 +2013,10,30,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-8,0,1215,-31,0,0 +2013,7,10,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-4,0,1734,-10,0,0 +2013,10,16,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1640,-1,0,1730,-2,0,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1400,-1,0,1636,-23,0,0 +2013,4,6,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,-2,0,2213,-18,0,0 +2013,8,10,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,820,-2,0,940,-1,0,0 +2013,9,17,2,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1630,-10,0,1809,-24,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,710,5,0,815,-2,0,0 +2013,10,30,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-11,0,1345,-14,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1935,-6,0,2335,2,0,0 +2013,10,25,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,650,-1,0,905,-18,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2145,-6,0,3,-29,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,5,0,805,-6,0,0 +2013,8,14,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-1,0,756,-3,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,914,8,0,1136,36,1,0 +2013,8,7,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,645,-8,0,830,16,1,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1920,0,0,2020,-7,0,0 +2013,9,30,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1128,-8,0,1600,-17,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,0,0,2358,-4,0,0 +2013,9,30,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-5,0,1130,-21,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2200,26,1,2310,27,1,0 +2013,7,9,2,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,48,1,1700,47,1,0 +2013,4,11,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,0,,1318,0,1,1 +2013,4,30,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,11,0,720,18,1,0 +2013,9,19,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1525,-6,0,1645,-9,0,0 +2013,4,16,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1055,-9,0,1259,-22,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1020,1,0,1355,-7,0,0 +2013,5,9,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-9,0,1530,-13,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,2,0,2000,15,1,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,905,10,0,1146,-12,0,0 +2013,8,12,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-2,0,1947,5,0,0 +2013,9,26,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,950,-5,0,1310,-13,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1900,13,0,2130,8,0,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1557,1,0,2021,-50,0,0 +2013,6,14,5,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1330,0,0,1434,1,0,0 +2013,5,12,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-7,0,1315,5,0,0 +2013,4,4,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,925,7,0,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1943,1,0,59,5,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-1,0,1810,2,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,916,-5,0,1134,-11,0,0 +2013,7,4,4,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,900,-4,0,1150,-7,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,2,0,1245,-9,0,0 +2013,8,13,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-5,0,1014,-11,0,0 +2013,4,24,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,0,0,1420,-11,0,0 +2013,10,21,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1110,1,0,1235,-7,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2020,-3,0,55,-5,0,0 +2013,5,3,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,725,-5,0,1045,-4,0,0 +2013,4,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1435,-7,0,1610,-6,0,0 +2013,6,11,2,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,1,0,1355,6,0,0 +2013,5,2,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1800,-12,0,2151,35,1,0 +2013,5,11,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-3,0,1754,-6,0,0 +2013,10,3,4,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1320,10,0,1505,3,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,-6,0,1438,-11,0,0 +2013,6,24,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-9,0,1122,-9,0,0 +2013,7,20,6,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1241,76,1,1635,55,1,0 +2013,9,3,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,13,0,1954,7,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1035,17,1,1155,10,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2135,1,0,2300,-1,0,0 +2013,8,4,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,815,-6,0,1605,-29,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,56,1,2102,67,1,0 +2013,5,1,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1445,-1,0,2010,-24,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1730,27,1,2015,30,1,0 +2013,8,14,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,750,1,0,1210,-3,0,0 +2013,4,11,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-2,0,1820,26,1,0 +2013,4,19,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1249,53,1,1550,32,1,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1328,10,0,1607,-7,0,0 +2013,4,29,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,-2,0,1830,-5,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1615,-1,0,2345,-21,0,0 +2013,5,8,3,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,-6,0,1748,15,1,0 +2013,8,7,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,727,-2,0,839,-1,0,0 +2013,8,9,5,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,0,0,1039,1,0,0 +2013,8,3,6,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1330,2,0,1420,-1,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,6,0,2235,-6,0,0 +2013,5,13,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1715,6,0,1941,-13,0,0 +2013,10,22,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-4,0,1125,1,0,0 +2013,6,1,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1035,0,0,1155,16,1,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1515,93,1,1650,73,1,0 +2013,8,24,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1700,37,1,2100,25,1,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,219,1,2320,209,1,0 +2013,10,1,2,F9,11292,Denver International,Denver,CO,14635,Southwest Florida International,Fort Myers,FL,1105,11,0,1644,13,0,0 +2013,5,13,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1821,-5,0,2041,-32,0,0 +2013,5,12,7,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1847,16,1,2034,48,1,0 +2013,8,13,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1455,-5,0,1720,-4,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1515,61,1,1730,59,1,0 +2013,8,13,2,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,-1,0,936,7,0,0 +2013,8,12,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,900,-2,0,1140,-6,0,0 +2013,6,8,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1240,-1,0,1405,-10,0,0 +2013,5,19,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1110,-16,0,1402,-22,0,0 +2013,4,21,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-6,0,1107,-9,0,0 +2013,8,24,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1435,-3,0,1740,-24,0,0 +2013,8,24,6,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1220,-2,0,1335,-26,0,0 +2013,4,22,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,805,10,0,1235,-16,0,0 +2013,10,26,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,826,-7,0,0 +2013,7,14,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1813,-12,0,0 +2013,10,17,4,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1800,-9,0,1916,-15,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,819,39,1,1103,38,1,0 +2013,4,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1106,-3,0,1214,4,0,0 +2013,8,4,7,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1043,2,0,1840,-7,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1850,27,1,2105,20,1,0 +2013,5,14,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,-3,0,1649,-20,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-1,0,925,-1,0,0 +2013,7,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,1,0,1405,-6,0,0 +2013,9,19,4,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2000,-3,0,2248,-23,0,0 +2013,9,1,7,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1300,5,0,1412,-8,0,0 +2013,7,27,6,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1421,1,0,1718,-3,0,0 +2013,7,7,7,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2005,78,1,1130,51,1,0 +2013,10,27,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,735,-2,0,855,-10,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-8,0,1755,-9,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,-8,0,1735,-1,0,0 +2013,5,4,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1028,2,0,1338,17,1,0 +2013,6,27,4,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,730,-1,0,1034,-5,0,0 +2013,9,4,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-8,0,1335,-10,0,0 +2013,10,22,2,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,3,0,1044,7,0,0 +2013,8,28,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,6,0,2105,-9,0,0 +2013,5,29,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,-5,0,1317,-18,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,79,1,1500,86,1,0 +2013,7,24,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-5,0,920,-8,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1942,-7,0,2115,-19,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,0,0,1935,-10,0,0 +2013,7,21,7,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1659,3,0,2100,-5,0,0 +2013,6,23,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-11,0,1045,15,1,0 +2013,10,4,5,UA,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1712,-2,0,1845,-9,0,0 +2013,7,10,3,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,19,1,1229,9,0,0 +2013,8,31,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-3,0,2100,-12,0,0 +2013,8,30,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1245,11,0,1418,10,0,0 +2013,9,13,5,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1720,11,0,1829,16,1,0 +2013,7,23,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1505,2,0,1923,9,0,0 +2013,6,11,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-3,0,1405,-22,0,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1001,-2,0,1300,6,0,0 +2013,6,11,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,38,1,1355,32,1,0 +2013,8,2,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,824,-1,0,1144,11,0,0 +2013,9,2,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1605,27,1,1720,8,0,0 +2013,10,26,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-4,0,920,-3,0,0 +2013,10,30,3,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1029,-2,0,1305,-4,0,0 +2013,8,24,6,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2225,-1,0,628,-8,0,0 +2013,7,22,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-2,0,927,-3,0,0 +2013,10,28,1,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2125,29,1,30,20,1,0 +2013,7,21,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,911,-1,0,1043,-8,0,0 +2013,4,5,5,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,840,-13,0,1026,0,0,0 +2013,9,24,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-10,0,2220,-9,0,0 +2013,6,12,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,-8,0,1325,3,0,0 +2013,8,31,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,1426,44,1,2002,40,1,0 +2013,10,31,4,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1355,-4,0,1610,8,0,0 +2013,5,3,5,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,800,-6,0,913,-14,0,0 +2013,9,8,7,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1924,-5,0,2231,1,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2155,2,0,2315,-5,0,0 +2013,5,19,7,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,0,0,1810,-15,0,0 +2013,6,10,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-10,0,1837,-29,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1648,22,1,1801,5,0,0 +2013,4,7,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,1,0,1705,-5,0,0 +2013,5,14,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-7,0,2047,-10,0,0 +2013,6,21,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,42,1,918,45,1,0 +2013,7,12,5,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1845,77,1,2140,80,1,0 +2013,10,10,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2149,0,0,600,-5,0,0 +2013,4,3,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-8,0,1125,-16,0,0 +2013,10,25,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,17,1,1420,12,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,-2,0,1820,-13,0,0 +2013,9,13,5,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1855,43,1,2020,42,1,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2132,-4,0,2255,-20,0,0 +2013,9,28,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,600,-1,0,703,-7,0,0 +2013,7,2,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1228,-2,0,1534,3,0,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1205,2,0,1405,2,0,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2050,6,0,2356,28,1,0 +2013,9,24,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,10,0,1230,6,0,0 +2013,8,20,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,-5,0,2018,-5,0,0 +2013,4,6,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,-5,0,1645,-30,0,0 +2013,10,29,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,-8,0,1915,-21,0,0 +2013,8,23,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,750,-2,0,920,-20,0,0 +2013,7,17,3,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2153,-15,0,558,21,1,0 +2013,8,3,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,850,6,0,1049,4,0,0 +2013,8,13,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-5,0,909,11,0,0 +2013,5,11,6,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,115,1,1615,126,1,0 +2013,5,23,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2015,0,0,2130,-1,0,0 +2013,8,21,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1841,-7,0,2300,3,0,0 +2013,4,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1859,107,1,2055,113,1,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1855,1,0,2225,-10,0,0 +2013,8,16,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2021,83,1,2230,86,1,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2045,65,1,2255,74,1,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1455,-2,0,1700,-5,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,800,19,1,1040,16,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,812,-5,0,916,3,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,-7,0,853,-4,0,0 +2013,6,19,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-2,0,2108,-11,0,0 +2013,6,19,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,649,-5,0,825,-16,0,0 +2013,4,11,4,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,-3,0,1235,-24,0,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1425,16,1,2020,45,1,0 +2013,6,7,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,87,1,2145,74,1,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2055,-1,0,2215,13,0,0 +2013,9,2,1,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1000,-6,0,1115,2,0,0 +2013,8,19,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1330,40,1,1520,21,1,0 +2013,6,4,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1600,-3,0,1630,-7,0,0 +2013,7,25,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1940,-5,0,2105,-4,0,0 +2013,5,26,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1025,19,1,1313,8,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,5,0,1125,-4,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2145,7,0,2328,14,0,0 +2013,8,30,5,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1635,-1,0,1945,-5,0,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,0,0,1744,-21,0,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1750,24,1,1910,12,0,0 +2013,9,27,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-3,0,1743,3,0,0 +2013,6,29,6,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-3,0,1750,-10,0,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,12,0,1420,-3,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-6,0,2304,-18,0,0 +2013,5,14,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2059,-11,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1640,132,1,1850,108,1,0 +2013,10,16,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1405,-2,0,1426,-6,0,0 +2013,4,14,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,735,-6,0,845,-13,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,745,0,0,927,-18,0,0 +2013,10,14,1,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,815,-6,0,1019,-7,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,6,0,1911,15,1,0 +2013,5,28,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1045,-3,0,1225,-7,0,0 +2013,8,26,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,54,1,930,42,1,0 +2013,8,27,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1412,-6,0,1432,-14,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,69,1,2214,81,1,0 +2013,6,5,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2355,1,0,717,-32,0,0 +2013,6,9,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,1933,-4,0,2220,-15,0,0 +2013,6,19,3,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1331,2,0,1648,6,0,0 +2013,8,12,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,730,8,0,835,4,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1055,31,1,1411,43,1,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1150,-1,0,1316,-16,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1930,-5,0,2244,-43,0,0 +2013,9,16,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1920,28,1,2110,23,1,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-8,0,1809,-5,0,0 +2013,9,18,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-7,0,1155,-21,0,0 +2013,6,17,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,607,0,0,900,2,0,0 +2013,7,21,7,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1204,45,1,1241,55,1,0 +2013,9,24,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-6,0,2231,-24,0,0 +2013,10,11,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1333,2,0,1408,7,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-5,0,2230,-2,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-9,0,2159,-8,0,0 +2013,7,12,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,5,0,1140,23,1,0 +2013,8,15,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,1122,-5,0,0 +2013,10,26,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1515,-10,0,1700,-8,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1026,2,0,1459,-7,0,0 +2013,4,27,6,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,801,-6,0,1100,-7,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,28,1,1435,21,1,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1503,2,0,1646,-4,0,0 +2013,5,11,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,1,0,1549,-6,0,0 +2013,10,15,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-5,0,2005,-10,0,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1405,-1,0,1550,-15,0,0 +2013,6,13,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1425,-2,0,1759,-14,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2110,34,1,5,28,1,0 +2013,5,9,4,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,900,38,1,1125,28,1,0 +2013,10,16,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-8,0,1659,-25,0,0 +2013,7,22,1,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-3,0,1718,-6,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,905,35,1,1113,44,1,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,27,1,2030,46,1,0 +2013,4,8,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1845,55,1,2245,46,1,0 +2013,10,29,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-6,0,1417,-19,0,0 +2013,4,14,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-2,0,1803,22,1,0 +2013,4,25,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,0,0,2125,5,0,0 +2013,4,1,1,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,-12,0,1345,-18,0,0 +2013,6,24,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,714,0,,1046,0,1,1 +2013,5,25,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1535,2,0,2355,5,0,0 +2013,4,14,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,630,-1,0,840,-12,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,600,1,0,725,-4,0,0 +2013,8,22,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,5,0,2025,20,1,0 +2013,4,14,7,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1725,17,1,1920,53,1,0 +2013,10,31,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1855,-7,0,2107,-21,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1841,-1,0,2011,6,0,0 +2013,5,4,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,545,-1,0,716,-3,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,3,0,802,24,1,0 +2013,7,17,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,59,1,1415,58,1,0 +2013,6,18,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1836,166,1,2015,217,1,0 +2013,6,11,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2156,14,0,2342,3,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1255,-3,0,1355,-17,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,10,0,1207,7,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,12,0,2020,-1,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,920,6,0,1148,-4,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2110,24,1,2355,15,1,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1030,-3,0,1350,11,0,0 +2013,5,7,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,952,-3,0,1230,-19,0,0 +2013,8,25,7,YV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1640,-4,0,1806,-16,0,0 +2013,8,29,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2015,8,0,2125,0,0,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1359,-4,0,1703,-13,0,0 +2013,5,26,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,4,0,1215,-18,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,18,1,2305,19,1,0 +2013,10,14,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-5,0,1049,-28,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1025,-4,0,1252,-3,0,0 +2013,7,1,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1810,-1,0,1845,-6,0,0 +2013,5,26,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,-9,0,1715,-9,0,0 +2013,8,6,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1423,-3,0,1650,-2,0,0 +2013,4,6,6,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,-6,0,2219,-8,0,0 +2013,6,9,7,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1820,22,1,2001,15,1,0 +2013,6,8,6,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,810,5,0,948,2,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-2,0,923,-2,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,114,1,2012,99,1,0 +2013,9,9,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,825,-6,0,935,-24,0,0 +2013,5,11,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1505,0,0,1625,-20,0,0 +2013,7,27,6,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,0,0,1010,-12,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1820,19,1,1945,10,0,0 +2013,5,23,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2117,312,1,2349,305,1,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1727,9,0,2024,-21,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1610,-6,0,1710,-7,0,0 +2013,9,27,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,-2,0,1255,-9,0,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,13,0,2125,6,0,0 +2013,4,2,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,844,-4,0,0 +2013,10,16,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,746,6,0,1021,6,0,0 +2013,7,19,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1310,-4,0,1440,-3,0,0 +2013,10,24,4,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,5,0,854,-3,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1310,43,1,1435,32,1,0 +2013,10,31,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1500,14,0,1849,-1,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,3,0,2127,11,0,0 +2013,7,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,557,7,0,930,10,0,0 +2013,10,10,4,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1306,8,0,1419,-2,0,0 +2013,10,1,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,0,0,1645,0,0,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,-2,0,2259,-16,0,0 +2013,8,15,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,625,-1,0,720,-1,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1125,1,0,1230,-5,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,-1,0,1940,21,1,0 +2013,10,2,3,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1226,-13,0,1338,-31,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,955,-2,0,1201,-26,0,0 +2013,9,16,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1845,-7,0,2005,-11,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,14,0,1205,4,0,0 +2013,8,12,1,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,-4,0,1420,-16,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,-4,0,2115,-19,0,0 +2013,4,8,1,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1230,96,1,1545,102,1,0 +2013,5,29,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1231,-5,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,840,1,0,1210,-10,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1150,6,0,1410,0,0,0 +2013,5,19,7,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,700,-5,0,925,-16,0,0 +2013,10,14,1,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1000,-7,0,1155,-6,0,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1400,-1,0,1540,15,1,0 +2013,10,12,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,4,0,1025,19,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1925,14,0,2354,14,0,0 +2013,9,3,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1311,-5,0,1528,-7,0,0 +2013,10,19,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-1,0,1742,-8,0,0 +2013,7,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,645,-7,0,1022,-1,0,0 +2013,9,7,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,858,-3,0,948,-4,0,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1455,12,0,1630,19,1,0 +2013,5,25,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,0,0,904,-16,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,801,-7,0,1033,-44,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,2005,19,1,2100,16,1,0 +2013,7,5,5,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1016,-7,0,1119,0,0,0 +2013,6,14,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,0,0,613,0,0,0 +2013,5,10,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,905,1,0,1010,-3,0,0 +2013,4,11,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1720,7,0,1840,-5,0,0 +2013,7,17,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,65,1,1730,109,1,0 +2013,6,1,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1235,2,0,1400,0,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,900,-1,0,1010,-8,0,0 +2013,5,31,5,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2300,-4,0,629,8,0,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1829,3,0,2134,-9,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2105,16,1,2255,11,0,0 +2013,6,20,4,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,86,1,1935,117,1,0 +2013,8,2,5,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2100,41,1,525,14,0,0 +2013,8,25,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1830,26,1,2155,41,1,0 +2013,6,20,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2016,-6,0,2144,-15,0,0 +2013,10,24,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1300,6,0,1510,6,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,4,0,2240,-5,0,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,0,0,800,-4,0,0 +2013,4,26,5,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-4,0,2205,-3,0,0 +2013,10,27,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-7,0,1309,-24,0,0 +2013,10,10,4,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,0,0,1605,2,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1238,-4,0,1354,-8,0,0 +2013,8,6,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,30,1,1235,33,1,0 +2013,6,30,7,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,706,1,0,935,-8,0,0 +2013,9,1,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,-4,0,2020,1,0,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1020,0,0,1043,-1,0,0 +2013,7,14,7,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-4,0,900,-13,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1605,91,1,1717,105,1,0 +2013,4,29,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,1949,-2,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,853,-4,0,957,-15,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1815,10,0,1920,0,0,0 +2013,6,13,4,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,548,0,,705,0,1,1 +2013,9,17,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,0,0,1515,-3,0,0 +2013,5,3,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,2,0,1354,16,1,0 +2013,5,2,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1755,73,1,1957,91,1,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,-3,0,1315,-7,0,0 +2013,4,29,1,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-8,0,848,-8,0,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1530,-25,0,0 +2013,7,11,4,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,12,0,1643,20,1,0 +2013,8,29,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,-2,0,1926,-4,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1050,9,0,1750,2,0,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,19,1,1110,6,0,0 +2013,7,12,5,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1835,17,1,2115,17,1,0 +2013,6,3,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-10,0,1804,-22,0,0 +2013,9,4,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1611,25,1,1723,32,1,0 +2013,6,7,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1511,-6,0,1852,-14,0,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,2,0,2205,-3,0,0 +2013,6,17,1,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,2,0,1803,30,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1850,-5,0,2310,-36,0,0 +2013,5,17,5,9E,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1247,-7,0,1532,-25,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1440,18,1,1805,38,1,0 +2013,9,29,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-1,0,2014,-7,0,0 +2013,9,11,3,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1825,55,1,2105,65,1,0 +2013,10,23,3,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,6,0,556,-15,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-2,0,715,-7,0,0 +2013,4,1,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1015,-9,0,1256,-15,0,0 +2013,6,22,6,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1640,-4,0,1815,-17,0,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2145,3,0,2305,-5,0,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1420,19,1,1610,8,0,0 +2013,5,13,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,645,-4,0,928,-15,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,940,-2,0,1215,-8,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-5,0,1305,-27,0,0 +2013,10,7,1,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1735,169,1,2000,141,1,0 +2013,4,12,5,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1430,34,1,1520,23,1,0 +2013,8,15,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1112,-3,0,1520,-16,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1640,19,1,1900,13,0,0 +2013,7,12,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2011,-5,0,2346,-5,0,0 +2013,4,11,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2045,-5,0,2210,-8,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,-3,0,2156,3,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1205,4,0,1320,1,0,0 +2013,9,29,7,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-6,0,1300,-13,0,0 +2013,6,22,6,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1349,-3,0,1519,-15,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,620,-2,0,810,-1,0,0 +2013,7,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1640,24,1,1808,17,1,0 +2013,9,12,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,845,23,1,1040,22,1,0 +2013,4,7,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1835,-6,0,2054,-6,0,0 +2013,10,8,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1322,-14,0,1448,-23,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,-4,0,1230,-17,0,0 +2013,6,15,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,1,0,1050,9,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1322,-3,0,2156,-12,0,0 +2013,8,1,4,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,623,-2,0,928,-13,0,0 +2013,4,13,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-4,0,1325,-11,0,0 +2013,8,13,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-8,0,2117,-15,0,0 +2013,5,11,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,740,-1,0,1559,10,0,0 +2013,8,16,5,FL,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,50,1,2235,31,1,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,9,0,1446,28,1,0 +2013,7,12,5,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-4,0,1355,-8,0,0 +2013,5,1,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1010,0,0,1115,-4,0,0 +2013,7,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,0,0,2015,-24,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,4,0,1950,-7,0,0 +2013,4,18,4,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,12,0,35,-4,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2035,-2,0,2155,-11,0,0 +2013,9,16,1,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2059,-8,0,2232,-16,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-10,0,1152,-16,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,34,1,1328,24,1,0 +2013,6,29,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,26,1,1800,20,1,0 +2013,8,1,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-2,0,1546,-4,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2020,8,0,2325,-11,0,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1005,1,0,1135,-5,0,0 +2013,10,11,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1816,-6,0,1930,88,1,0 +2013,10,31,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-8,0,1426,11,0,0 +2013,6,28,5,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1700,18,1,1837,11,0,0 +2013,4,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,-4,0,1925,-3,0,0 +2013,5,25,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,2,0,1520,-9,0,0 +2013,9,28,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,759,-9,0,1322,-21,0,0 +2013,6,3,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,-2,0,1435,-5,0,0 +2013,5,24,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2220,64,1,2,64,1,0 +2013,5,4,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,615,-6,0,904,-4,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,25,1,1651,28,1,0 +2013,8,21,3,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1530,-7,0,655,-4,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1850,152,1,2335,165,1,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1025,10,0,1310,11,0,0 +2013,4,11,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,600,-2,0,803,-16,0,0 +2013,9,6,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1630,14,0,1800,5,0,0 +2013,7,14,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,-3,0,950,-14,0,0 +2013,7,21,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,4,0,1755,38,1,0 +2013,9,20,5,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1100,-3,0,1357,0,0,0 +2013,8,13,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,950,-3,0,1309,-7,0,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1138,12,0,1234,1,0,0 +2013,4,13,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-1,0,1228,-11,0,0 +2013,10,3,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,-4,0,1140,-8,0,0 +2013,5,14,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-7,0,1245,-10,0,0 +2013,7,29,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1711,73,1,1850,61,1,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1320,7,0,1825,10,0,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,1005,-35,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,620,-4,0,710,-13,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2056,13,0,2211,11,0,0 +2013,7,8,1,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,17,1,1935,12,0,0 +2013,6,27,4,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1547,26,1,1835,10,0,0 +2013,7,17,3,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,-2,0,555,9,0,0 +2013,9,30,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1653,-2,0,1749,-9,0,0 +2013,8,6,2,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1741,8,0,1904,27,1,0 +2013,7,3,3,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,-5,0,1811,0,0,0 +2013,5,11,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,-1,0,750,-12,0,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,-2,0,2110,-9,0,0 +2013,10,21,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1805,-3,0,2035,-6,0,0 +2013,6,12,3,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,620,-1,0,825,0,0,0 +2013,6,8,6,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,615,0,0,710,8,0,0 +2013,6,27,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-2,0,643,-13,0,0 +2013,6,19,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,49,1,2020,49,1,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,905,-7,0,1140,-31,0,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1955,6,0,2255,-7,0,0 +2013,9,28,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1350,-4,0,1634,-15,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1648,0,0,1801,-14,0,0 +2013,7,3,3,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1228,0,0,1455,5,0,0 +2013,4,18,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,88,1,1055,83,1,0 +2013,10,26,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1417,-14,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,923,-20,0,0 +2013,6,2,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2141,-1,0,2336,7,0,0 +2013,8,27,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1335,12,0,1345,6,0,0 +2013,10,20,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,835,1,0,940,-6,0,0 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,3,0,1720,5,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1555,-4,0,1950,-28,0,0 +2013,4,18,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,120,1,1838,154,1,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,-1,0,1126,-9,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2145,-7,0,11,-17,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-1,0,2349,0,0,0 +2013,6,13,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,23,1,942,7,0,0 +2013,5,8,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1930,82,1,2323,68,1,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1305,-6,0,1820,5,0,0 +2013,8,19,1,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-1,0,1415,-22,0,0 +2013,7,28,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1425,-3,0,2020,15,1,0 +2013,9,19,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1230,-15,0,0 +2013,5,20,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,1120,-17,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,2,0,1548,14,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,59,1,1610,45,1,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2203,-4,0,630,-14,0,0 +2013,7,7,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,7,0,847,13,0,0 +2013,4,20,6,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,755,-4,0,945,-18,0,0 +2013,7,31,3,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-6,0,1600,-2,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-4,0,1617,-3,0,0 +2013,6,22,6,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1235,0,0,1518,26,1,0 +2013,4,2,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-5,0,1603,-7,0,0 +2013,9,21,6,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1404,0,0,1511,3,0,0 +2013,8,24,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-8,0,1940,-7,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1319,-10,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,-6,0,2214,16,1,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1837,-3,0,2132,-15,0,0 +2013,6,4,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-2,0,1145,-7,0,0 +2013,7,9,2,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1412,95,1,1658,114,1,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1140,-1,0,1219,-11,0,0 +2013,6,13,4,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-5,0,1355,-19,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1520,7,0,1625,3,0,0 +2013,9,3,2,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,-16,0,1808,-16,0,0 +2013,8,18,7,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,710,-8,0,1300,-21,0,0 +2013,10,24,4,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1555,-5,0,1730,-14,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1120,0,0,1410,-14,0,0 +2013,6,2,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1346,-8,0,1542,-14,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-6,0,2159,-3,0,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1035,0,0,1200,-9,0,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2210,18,1,2328,0,0,0 +2013,5,24,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,25,1,1910,26,1,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1130,5,0,1310,-7,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1730,13,0,2010,5,0,0 +2013,9,26,4,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,810,14,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,5,0,2325,-5,0,0 +2013,8,22,4,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1910,23,1,1940,12,0,0 +2013,7,3,3,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1740,34,1,1950,20,1,0 +2013,9,22,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,-5,0,1905,-17,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1025,0,0,1135,-7,0,0 +2013,6,30,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-5,0,754,-17,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1230,9,0,1410,2,0,0 +2013,10,9,3,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1125,29,1,1410,29,1,0 +2013,6,30,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1155,57,1,1239,43,1,0 +2013,8,7,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,638,-7,0,758,-8,0,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1200,-5,0,1217,-14,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,-1,0,1633,7,0,0 +2013,6,23,7,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1855,135,1,2130,131,1,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1720,8,0,1849,-11,0,0 +2013,4,2,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-3,0,725,-14,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2120,0,0,2235,-8,0,0 +2013,4,29,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,0,0,925,6,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1535,1,0,1700,13,0,0 +2013,10,21,1,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,950,28,1,1105,19,1,0 +2013,6,2,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1855,5,0,2015,1,0,0 +2013,6,15,6,OO,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1136,6,0,1653,-5,0,0 +2013,10,1,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1545,6,0,1650,-12,0,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,820,25,1,0 +2013,7,24,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,0,0,1254,12,0,0 +2013,5,16,4,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1143,-8,0,1520,-16,0,0 +2013,5,19,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1112,-3,0,1450,1,0,0 +2013,10,17,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,6,0,1900,2,0,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,705,1,0,854,3,0,0 +2013,8,10,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,103,1,1542,93,1,0 +2013,6,14,5,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1910,-7,0,2045,-1,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,700,0,0,1011,-13,0,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1444,2,0,1844,-19,0,0 +2013,4,1,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,15,1,1635,19,1,0 +2013,10,8,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-8,0,904,-3,0,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,605,6,0,734,-12,0,0 +2013,4,4,4,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,1225,5,0,1320,5,0,0 +2013,7,25,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1015,-6,0,1025,-11,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,600,-4,0,1050,-18,0,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1222,-9,0,1239,-5,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,75,1,2350,99,1,0 +2013,5,8,3,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1945,21,1,2159,12,0,0 +2013,6,4,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1635,-3,0,1830,-20,0,0 +2013,7,11,4,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1721,63,1,1900,0,1,1 +2013,10,31,4,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1130,-4,0,1615,-14,0,0 +2013,5,25,6,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1600,3,0,1746,-15,0,0 +2013,4,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2000,8,0,2110,15,1,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1848,-5,0,1948,-7,0,0 +2013,5,6,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1605,-11,0,1924,-7,0,0 +2013,7,28,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,5,0,1555,11,0,0 +2013,9,16,1,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,2,0,2248,-37,0,0 +2013,10,6,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2305,-7,0,702,-1,0,0 +2013,9,12,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1711,-6,0,2048,-18,0,0 +2013,5,13,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,0,,1409,0,1,1 +2013,7,25,4,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1437,71,1,1829,50,1,0 +2013,6,10,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,645,-2,0,930,-7,0,0 +2013,4,23,2,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1835,-4,0,2110,-1,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1110,8,0,1350,10,0,0 +2013,7,18,4,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-9,0,1005,-13,0,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1045,-1,0,1210,-5,0,0 +2013,6,2,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1235,20,1,1705,6,0,0 +2013,7,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1620,-2,0,1843,-15,0,0 +2013,5,14,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,630,11,0,735,4,0,0 +2013,10,3,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1436,83,1,1559,98,1,0 +2013,7,23,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-3,0,1250,-8,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,8,0,2222,0,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1820,14,0,2205,16,1,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,11,0,2145,3,0,0 +2013,7,23,2,OO,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2105,5,0,2311,4,0,0 +2013,10,10,4,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,630,-6,0,929,-2,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1830,0,,1921,0,1,1 +2013,7,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,-2,0,1705,7,0,0 +2013,8,22,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-4,0,1612,-20,0,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1741,5,0,2037,-18,0,0 +2013,4,21,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1935,2,0,2100,-13,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1714,7,0,1910,-8,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2115,5,0,20,-3,0,0 +2013,8,7,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,743,-12,0,0 +2013,5,27,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1031,-1,0,1134,-5,0,0 +2013,5,17,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,605,0,0,759,-10,0,0 +2013,4,29,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1845,-6,0,2011,-16,0,0 +2013,10,4,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,8,0,1512,-14,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,-3,0,2224,-10,0,0 +2013,6,13,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,36,1,1843,46,1,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,-4,0,1255,-8,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1059,-2,0,1331,5,0,0 +2013,9,21,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-1,0,1240,8,0,0 +2013,7,10,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-5,0,1213,-14,0,0 +2013,7,21,7,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-12,0,1648,4,0,0 +2013,4,19,5,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1753,13,0,1838,41,1,0 +2013,7,11,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,26,1,830,14,0,0 +2013,10,10,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1830,-5,0,1845,-16,0,0 +2013,8,14,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,820,16,1,945,7,0,0 +2013,10,23,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-7,0,1415,-6,0,0 +2013,8,5,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,745,-3,0,1017,0,0,0 +2013,4,24,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,119,1,2052,120,1,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,625,0,0,740,-8,0,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,-2,0,1600,-8,0,0 +2013,9,21,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,0,0,1525,-10,0,0 +2013,9,3,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,755,-4,0,905,-24,0,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,114,1,1510,101,1,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,945,-1,0,1235,-14,0,0 +2013,7,13,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1807,243,1,2132,205,1,0 +2013,5,1,3,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-2,0,1207,4,0,0 +2013,7,16,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,610,-5,0,805,-11,0,0 +2013,10,24,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,14,0,1755,16,1,0 +2013,5,10,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,0,0,1935,0,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,2,0,1845,-1,0,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,650,-1,0,931,5,0,0 +2013,10,5,6,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1810,-8,0,1905,21,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1655,-4,0,1830,60,1,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,15,1,1925,6,0,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1255,1,0,1435,2,0,0 +2013,5,16,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1559,3,0,1855,-9,0,0 +2013,8,30,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,8,0,2152,3,0,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,733,8,0,1102,-7,0,0 +2013,6,23,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,-8,0,940,-19,0,0 +2013,8,28,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1420,-6,0,2200,-3,0,0 +2013,10,13,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1556,1,0,13,-20,0,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1121,16,1,1305,1,0,0 +2013,7,14,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,1500,18,1,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,-5,0,1532,1,0,0 +2013,4,1,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1137,-7,0,1403,2,0,0 +2013,10,15,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1940,1,0,2205,1,0,0 +2013,4,27,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1700,0,,1735,0,1,1 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1100,0,,1353,0,1,1 +2013,10,30,3,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-8,0,822,-19,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1255,-3,0,1355,-17,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,800,-3,0,905,-10,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,922,-5,0,1047,-29,0,0 +2013,4,23,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1818,-5,0,1954,-6,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1130,-1,0,1230,5,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,-3,0,1443,-9,0,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-1,0,1015,-8,0,0 +2013,8,6,2,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,748,-12,0,0 +2013,4,16,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1017,-5,0,1601,-48,0,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1715,22,1,1840,10,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1810,12,0,1825,11,0,0 +2013,8,22,4,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1345,30,1,1530,39,1,0 +2013,6,5,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-7,0,840,-31,0,0 +2013,8,24,6,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,910,-1,0,1155,-2,0,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1623,0,0,1803,-6,0,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1715,-3,0,1854,-17,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,58,1,2155,32,1,0 +2013,7,23,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,745,-2,0,919,0,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1250,11,0,1405,0,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1355,-3,0,2156,-12,0,0 +2013,4,20,6,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,830,119,1,1020,110,1,0 +2013,9,26,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1820,17,1,1915,18,1,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1315,7,0,1430,-5,0,0 +2013,8,5,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1815,8,0,2125,3,0,0 +2013,10,15,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,740,34,1,855,22,1,0 +2013,5,26,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,714,-13,0,1039,-11,0,0 +2013,7,7,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,705,-6,0,913,-18,0,0 +2013,7,15,1,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,947,3,0,1025,12,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,14,0,2234,6,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1315,2,0,1600,-13,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1759,9,0,2053,41,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2005,2,0,2330,0,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1250,28,1,1505,20,1,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1205,37,1,1610,48,1,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,8,0,1450,-1,0,0 +2013,10,17,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1820,20,1,2000,19,1,0 +2013,6,20,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1455,-4,0,1715,-6,0,0 +2013,6,6,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,-5,0,2018,4,0,0 +2013,4,21,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,-4,0,1638,-14,0,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1310,1,0,1535,-6,0,0 +2013,7,16,2,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,6,0,1505,-3,0,0 +2013,5,11,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1750,3,0,1900,-1,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,635,-1,0,820,15,1,0 +2013,8,9,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,735,-7,0,1050,-14,0,0 +2013,5,16,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1210,6,0,1330,-7,0,0 +2013,7,15,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,-4,0,1450,-2,0,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1507,36,1,1618,57,1,0 +2013,4,17,3,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,28,1,1455,20,1,0 +2013,7,21,7,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1824,0,,2148,0,1,1 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1055,96,1,1215,87,1,0 +2013,7,2,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,730,2,0,1538,17,1,0 +2013,4,20,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1513,-17,0,0 +2013,8,12,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,-3,0,1720,-2,0,0 +2013,5,29,3,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1940,55,1,2130,28,1,0 +2013,5,28,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,43,1,2105,39,1,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2145,4,0,2340,15,1,0 +2013,4,15,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,39,1,1825,25,1,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,-5,0,50,-13,0,0 +2013,8,5,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-2,0,1735,-16,0,0 +2013,4,8,1,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1005,-1,0,1541,-15,0,0 +2013,5,30,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,840,-8,0,947,-13,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1323,-1,0,1719,2,0,0 +2013,9,6,5,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,812,-3,0,1119,-23,0,0 +2013,8,15,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1459,9,0,1817,6,0,0 +2013,4,27,6,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,800,-5,0,914,-11,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,4,0,2242,3,0,0 +2013,8,30,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,557,-17,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1015,21,1,1412,2,0,0 +2013,6,7,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,37,1,1906,51,1,0 +2013,9,18,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1530,-6,0,1755,5,0,0 +2013,5,27,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1805,-1,0,1855,-9,0,0 +2013,6,10,1,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1353,8,0,1800,-1,0,0 +2013,7,21,7,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,757,-11,0,1055,-28,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-1,0,1448,-16,0,0 +2013,9,29,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1745,2,0,2245,-8,0,0 +2013,10,4,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,914,-3,0,1012,-14,0,0 +2013,6,29,6,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1940,65,1,2225,72,1,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2140,16,1,2300,2,0,0 +2013,6,20,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,-1,0,1319,12,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,11,0,1626,6,0,0 +2013,6,8,6,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,940,-1,0,1157,-9,0,0 +2013,6,14,5,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,710,6,0,830,-12,0,0 +2013,4,28,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-4,0,1145,-15,0,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1000,0,0,1140,-15,0,0 +2013,8,20,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-7,0,1510,-20,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,955,40,1,1254,16,1,0 +2013,6,26,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,41,1,2010,32,1,0 +2013,6,14,5,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1000,2,0,1145,7,0,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1735,75,1,2015,73,1,0 +2013,8,2,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,72,1,1315,62,1,0 +2013,9,6,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,739,19,1,1009,17,1,0 +2013,10,21,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1151,-9,0,1356,-9,0,0 +2013,9,17,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-5,0,1927,11,0,0 +2013,10,3,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,630,-1,0,755,-6,0,0 +2013,7,21,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,810,-6,0,1031,4,0,0 +2013,10,18,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,735,-5,0,1040,-26,0,0 +2013,7,15,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1700,3,0,1756,-4,0,0 +2013,9,2,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,915,-16,0,0 +2013,8,30,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,13,0,2020,25,1,0 +2013,7,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1631,26,1,1914,18,1,0 +2013,9,3,2,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1656,16,1,1856,-14,0,0 +2013,10,10,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-3,0,958,-24,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,-1,0,1958,-16,0,0 +2013,8,22,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,952,18,1,1040,7,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,646,5,0,920,-6,0,0 +2013,5,27,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,32,1,1125,45,1,0 +2013,7,29,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-6,0,1643,-3,0,0 +2013,9,2,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1658,-4,0,0 +2013,6,22,6,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,827,-1,0,935,4,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1155,50,1,1510,48,1,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,4,0,1130,-15,0,0 +2013,10,13,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1535,-5,0,1724,-22,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1115,-6,0,1239,-19,0,0 +2013,5,20,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1435,7,0,1600,-16,0,0 +2013,8,14,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1150,-2,0,1400,-6,0,0 +2013,9,2,1,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,0,0,736,-27,0,0 +2013,7,31,3,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1652,2,0,1751,3,0,0 +2013,7,26,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,-1,0,1435,-11,0,0 +2013,4,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1105,7,0,1220,7,0,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2230,41,1,2358,38,1,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-6,0,2138,-6,0,0 +2013,6,17,1,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,700,-5,0,810,-29,0,0 +2013,6,1,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,655,10,0,758,6,0,0 +2013,10,10,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,940,-5,0,1120,-4,0,0 +2013,6,7,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,-7,0,835,-20,0,0 +2013,8,15,4,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1332,-6,0,1528,0,0,0 +2013,8,24,6,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1810,-9,0,2055,-25,0,0 +2013,5,28,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,830,-15,0,0 +2013,10,2,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,545,-7,0,738,-15,0,0 +2013,7,23,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,605,14,0,1008,1,0,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2030,19,1,2155,16,1,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1139,8,0,1457,-18,0,0 +2013,8,30,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-4,0,915,-5,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1809,176,1,1955,186,1,0 +2013,7,25,4,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1025,16,1,1210,13,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1625,73,1,1853,190,1,0 +2013,4,22,1,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-3,0,1549,-8,0,0 +2013,6,20,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1049,10,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1500,16,1,1624,18,1,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,-3,0,2255,-7,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1110,37,1,1435,47,1,0 +2013,5,26,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,10,0,1554,21,1,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,14,0,1952,22,1,0 +2013,10,3,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,35,1,1240,34,1,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,9,0,1500,3,0,0 +2013,7,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-4,0,1707,-10,0,0 +2013,5,2,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,-8,0,2048,-20,0,0 +2013,8,10,6,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,620,0,0,1225,-20,0,0 +2013,7,11,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,15,1,1235,18,1,0 +2013,10,17,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,-1,0,855,-5,0,0 +2013,9,23,1,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1815,-1,0,2058,-12,0,0 +2013,5,12,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,840,10,0,955,-8,0,0 +2013,7,5,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1230,-2,0,1351,-8,0,0 +2013,8,9,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,708,-10,0,738,21,1,0 +2013,4,29,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,4,0,846,2,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1152,-1,0,1638,-18,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,730,-5,0,945,-16,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1900,-3,0,2040,-11,0,0 +2013,9,30,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-9,0,729,4,0,0 +2013,8,12,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1854,-8,0,2015,-22,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-7,0,1308,-29,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1026,-2,0,1120,-7,0,0 +2013,6,6,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,748,1,0,847,2,0,0 +2013,6,14,5,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1426,238,1,1703,218,1,0 +2013,5,4,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1500,0,0,1625,-6,0,0 +2013,8,9,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,15,1,1843,11,0,0 +2013,6,17,1,OO,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1051,18,1,1512,5,0,0 +2013,6,16,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1010,-7,0,1128,12,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1135,-6,0,1244,-3,0,0 +2013,6,18,2,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,1,0,2140,-18,0,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,625,0,0,940,7,0,0 +2013,8,24,6,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1034,0,0,1420,-8,0,0 +2013,9,29,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,1,0,1943,12,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,905,11,0,1150,7,0,0 +2013,5,28,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1742,9,0,1850,3,0,0 +2013,10,14,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,19,1,935,2,0,0 +2013,4,9,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,930,-3,0,1025,-11,0,0 +2013,7,20,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,815,-10,0,0 +2013,4,6,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-7,0,1035,-13,0,0 +2013,7,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1040,6,0,1245,4,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1430,0,0,1611,-6,0,0 +2013,7,17,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-4,0,2245,0,0,0 +2013,7,9,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,34,1,1250,28,1,0 +2013,8,28,3,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1150,23,1,1415,102,1,0 +2013,10,13,7,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1054,-6,0,1407,-15,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,20,1,1829,43,1,0 +2013,4,1,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-2,0,818,8,0,0 +2013,9,23,1,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1407,-8,0,1425,-15,0,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,705,-2,0,955,9,0,0 +2013,8,7,3,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1328,43,1,1400,39,1,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1534,-10,0,1718,-14,0,0 +2013,9,19,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,515,-4,0,642,-15,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,58,1,1814,32,1,0 +2013,10,17,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,-3,0,1215,-2,0,0 +2013,7,9,2,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,6,0,1040,-4,0,0 +2013,5,18,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1315,-2,0,1435,-8,0,0 +2013,7,24,3,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-3,0,2050,-2,0,0 +2013,7,23,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1135,-6,0,1405,-17,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,910,-4,0,1210,5,0,0 +2013,10,28,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1605,40,1,1650,55,1,0 +2013,6,14,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1738,-3,0,1915,43,1,0 +2013,6,7,5,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,550,-4,0,724,-20,0,0 +2013,7,2,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,846,-7,0,0 +2013,4,12,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1445,7,0,1538,6,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1715,8,0,2000,11,0,0 +2013,7,20,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,715,-1,0,815,-13,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1903,1,0,2007,-3,0,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,23,1,2030,25,1,0 +2013,5,20,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,-4,0,1906,-2,0,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,800,11,0,1025,15,1,0 +2013,5,2,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1210,102,1,1340,115,1,0 +2013,7,5,5,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-9,0,1415,-7,0,0 +2013,5,20,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1410,-3,0,1642,16,1,0 +2013,10,11,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-1,0,844,-19,0,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1845,-6,0,2225,-30,0,0 +2013,6,13,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1745,300,1,1900,308,1,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1345,5,0,1515,-13,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,2,0,1255,-8,0,0 +2013,8,12,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,0,0,1730,-3,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1835,20,1,2015,16,1,0 +2013,7,10,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-8,0,1255,-21,0,0 +2013,9,30,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,820,-2,0,1025,-22,0,0 +2013,6,4,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1810,13,0,1925,10,0,0 +2013,4,13,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1935,-10,0,2045,-13,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2000,46,1,2050,54,1,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,-2,0,1036,6,0,0 +2013,9,17,2,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1205,8,0,1325,2,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1623,-6,0,1804,-16,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,-3,0,1320,-10,0,0 +2013,6,3,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,2,0,1118,14,0,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,6,0,40,18,1,0 +2013,10,9,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1921,-8,0,2100,-16,0,0 +2013,4,6,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1730,107,1,2315,93,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1510,-5,0,1702,-18,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1148,-6,0,2025,-13,0,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1410,-4,0,1647,-7,0,0 +2013,4,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,635,-3,0,749,-13,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,111,1,1615,110,1,0 +2013,4,30,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1230,-2,0,1420,-3,0,0 +2013,4,2,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1905,0,0,2200,11,0,0 +2013,10,17,4,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-8,0,1022,3,0,0 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,-2,0,2255,-10,0,0 +2013,5,31,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-4,0,908,5,0,0 +2013,4,24,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-10,0,1050,-11,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1316,-3,0,1607,10,0,0 +2013,5,15,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-7,0,1023,-27,0,0 +2013,7,14,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,635,-9,0,0 +2013,10,22,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,6,0,1654,-5,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1045,3,0,1200,2,0,0 +2013,9,9,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-5,0,840,-21,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1617,-5,0,1818,-6,0,0 +2013,5,31,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2025,-3,0,2058,-2,0,0 +2013,10,29,2,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1740,-5,0,2218,-17,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1500,3,0,1615,-5,0,0 +2013,6,9,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-6,0,903,-33,0,0 +2013,7,1,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1120,-2,0,1315,-16,0,0 +2013,4,10,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1757,-5,0,2157,15,1,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1957,17,1,2155,10,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,557,3,0,730,0,0,0 +2013,10,5,6,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1215,19,1,1404,14,0,0 +2013,8,9,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1637,72,1,2010,78,1,0 +2013,5,27,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1135,4,0,1420,2,0,0 +2013,8,2,5,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,-4,0,625,-13,0,0 +2013,10,20,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-6,0,1740,-20,0,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1338,31,1,1905,18,1,0 +2013,5,16,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2144,0,0,2238,-8,0,0 +2013,7,25,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-7,0,945,14,0,0 +2013,7,29,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1150,-2,0,1445,-13,0,0 +2013,9,24,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1105,-4,0,1353,-26,0,0 +2013,4,19,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,52,1,813,47,1,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2154,57,1,2327,47,1,0 +2013,4,9,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1112,6,0,1230,71,1,0 +2013,6,8,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-4,0,1622,-12,0,0 +2013,8,6,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,13,0,835,-3,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1225,12,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1900,62,1,2230,62,1,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1910,0,0,2206,15,1,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1030,11,0,1205,4,0,0 +2013,7,27,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,62,1,1850,60,1,0 +2013,7,30,2,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1821,-9,0,1920,-9,0,0 +2013,10,28,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1156,8,0,2000,-17,0,0 +2013,7,12,5,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1520,-4,0,1628,-22,0,0 +2013,5,12,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,55,1,1359,67,1,0 +2013,6,9,7,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1855,-10,0,2205,-18,0,0 +2013,6,14,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,825,142,1,1110,161,1,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1215,-2,0,1346,-3,0,0 +2013,8,4,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,0,0,1030,-2,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,3,0,1003,-13,0,0 +2013,9,29,7,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-6,0,750,-13,0,0 +2013,10,31,4,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1410,-9,0,2240,-25,0,0 +2013,8,20,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-10,0,2133,-17,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1535,59,1,1655,50,1,0 +2013,4,11,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1120,106,1,1530,129,1,0 +2013,6,22,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-1,0,2000,-37,0,0 +2013,9,30,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,51,1,1640,29,1,0 +2013,8,2,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,640,0,0,710,-1,0,0 +2013,6,5,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1850,4,0,2045,-3,0,0 +2013,10,27,7,YV,14100,Philadelphia International,Philadelphia,PA,14730,Louisville International-Standiford Field,Louisville,KY,2040,-3,0,2242,-14,0,0 +2013,10,10,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,748,-10,0,838,-2,0,0 +2013,9,17,2,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1315,9,0,1505,-5,0,0 +2013,10,30,3,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-11,0,1355,-17,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,-1,0,1255,0,0,0 +2013,6,12,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,936,-9,0,952,-11,0,0 +2013,6,13,4,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1015,-2,0,1145,-13,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,7,0,2048,4,0,0 +2013,9,21,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1035,38,1,1205,27,1,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2210,50,1,2317,52,1,0 +2013,4,7,7,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,925,3,0,0 +2013,10,31,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-5,0,458,-34,0,0 +2013,10,28,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1215,-2,0,1435,-7,0,0 +2013,9,18,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-5,0,1211,-23,0,0 +2013,7,23,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,841,13,0,1004,22,1,0 +2013,9,26,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1555,11,0,1805,1,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1312,-2,0,1411,0,0,0 +2013,9,25,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-3,0,805,-19,0,0 +2013,9,4,3,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,3,0,712,-5,0,0 +2013,6,6,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,37,1,1729,27,1,0 +2013,7,4,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1405,-5,0,1515,-12,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,97,1,1245,109,1,0 +2013,5,31,5,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1801,1,0,2004,23,1,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,0,0,1606,-31,0,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,221,1,2110,211,1,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1405,-3,0,1729,-17,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2240,0,,2350,0,1,1 +2013,9,6,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1711,-9,0,1822,1,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1005,31,1,1353,2,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1949,2,0,2115,14,0,0 +2013,5,21,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2047,48,1,2229,36,1,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1920,-3,0,2258,-9,0,0 +2013,8,21,3,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1115,4,0,1150,-4,0,0 +2013,5,16,4,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-13,0,1125,-26,0,0 +2013,6,3,1,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-2,0,1245,2,0,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1855,0,0,2110,-12,0,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,69,1,1227,65,1,0 +2013,7,12,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-4,0,2057,-11,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1526,-2,0,1544,3,0,0 +2013,5,3,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-9,0,1530,-15,0,0 +2013,9,6,5,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2115,-3,0,553,6,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1340,3,0,1840,5,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1515,5,0,1640,7,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,18,1,2315,16,1,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,945,-3,0,1301,-25,0,0 +2013,6,3,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1850,-2,0,2020,5,0,0 +2013,9,9,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1555,-8,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1420,24,1,1630,16,1,0 +2013,5,8,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,850,-2,0,950,-10,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1450,3,0,1815,3,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,31,1,2025,16,1,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2029,129,1,2359,86,1,0 +2013,4,18,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1823,4,0,2054,-7,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,755,-3,0,1015,-7,0,0 +2013,10,25,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1735,-8,0,2059,-6,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,820,-3,0,940,0,0,0 +2013,8,16,5,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1650,33,1,1744,43,1,0 +2013,10,20,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1025,36,1,1345,36,1,0 +2013,9,26,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,500,2,0,754,-12,0,0 +2013,5,9,4,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1350,22,1,1555,24,1,0 +2013,5,22,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1545,2,0,1826,-2,0,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-2,0,922,8,0,0 +2013,10,27,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-9,0,843,15,1,0 +2013,7,1,1,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,-5,0,2150,-12,0,0 +2013,4,21,7,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1730,13,0,2155,11,0,0 +2013,6,1,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1910,13,0,2040,5,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,-7,0,1151,-5,0,0 +2013,9,15,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1620,54,1,1725,54,1,0 +2013,6,5,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,19,1,2110,4,0,0 +2013,6,21,5,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,713,-6,0,901,-26,0,0 +2013,4,21,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-7,0,820,-11,0,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,910,-3,0,1330,-13,0,0 +2013,7,18,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-4,0,1910,-11,0,0 +2013,8,13,2,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1415,1,0,1640,-11,0,0 +2013,9,27,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,-11,0,1840,-24,0,0 +2013,5,2,4,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,200,1,1815,198,1,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,920,-5,0,1055,-15,0,0 +2013,6,4,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,27,1,950,17,1,0 +2013,9,20,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,47,1,1935,35,1,0 +2013,5,10,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1209,-4,0,1510,-10,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,712,0,0,1038,-16,0,0 +2013,8,11,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,4,0,1747,14,0,0 +2013,6,26,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,2047,-15,0,0 +2013,8,8,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1527,6,0,1654,11,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1250,-2,0,1448,-11,0,0 +2013,7,13,6,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,24,1,1329,-1,0,0 +2013,6,3,1,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,7,0,1830,26,1,0 +2013,5,31,5,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,120,1,1635,136,1,0 +2013,7,22,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1445,5,0,1905,21,1,0 +2013,9,3,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,935,-9,0,1037,-25,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-1,0,1924,1,0,0 +2013,7,24,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1530,-5,0,1635,-5,0,0 +2013,10,28,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1215,-3,0,2059,-12,0,0 +2013,5,15,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,915,-12,0,1058,-6,0,0 +2013,9,26,4,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1000,-3,0,1059,2,0,0 +2013,10,12,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,0,0,1251,-13,0,0 +2013,7,29,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1100,-4,0,1200,-4,0,0 +2013,5,10,5,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,621,-7,0,1435,-31,0,0 +2013,4,17,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,3,0,1040,-4,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1908,-4,0,2100,-24,0,0 +2013,10,28,1,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,-9,0,1832,-29,0,0 +2013,9,20,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1235,13,0,1350,10,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,158,1,2215,179,1,0 +2013,8,18,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-2,0,1435,-7,0,0 +2013,6,16,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1556,-3,0,2018,-1,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,-2,0,842,-9,0,0 +2013,7,20,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1100,17,1,1240,3,0,0 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1449,-4,0,2214,-2,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1715,-1,0,2140,-30,0,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,4,0,1250,-15,0,0 +2013,10,15,2,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,-1,0,1645,-3,0,0 +2013,4,22,1,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1330,-13,0,1618,-12,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1745,3,0,1935,-18,0,0 +2013,10,9,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1505,0,0,1802,-17,0,0 +2013,7,5,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1459,10,0,1819,-21,0,0 +2013,10,30,3,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1701,-6,0,1920,22,1,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1750,34,1,1917,19,1,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1556,-6,0,2107,-3,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1455,-1,0,1606,-13,0,0 +2013,7,23,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,828,-7,0,1109,-10,0,0 +2013,4,26,5,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,625,-8,0,748,-14,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1721,-6,0,2244,8,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1545,0,0,1710,2,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1447,-5,0,2159,19,1,0 +2013,9,28,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-4,0,930,-23,0,0 +2013,8,18,7,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,0,0,1955,-17,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,-5,0,1040,-14,0,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,830,-8,0,0 +2013,5,15,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,55,1,1610,61,1,0 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,3,0,1100,1,0,0 +2013,4,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1400,-2,0,1652,17,1,0 +2013,8,9,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1149,-6,0,1700,-9,0,0 +2013,5,14,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1315,-7,0,1438,-4,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1555,8,0,1710,8,0,0 +2013,9,23,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,-8,0,1618,-15,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1115,-2,0,1305,-17,0,0 +2013,4,19,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,34,1,1945,31,1,0 +2013,7,5,5,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1751,-9,0,1959,-27,0,0 +2013,6,17,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1130,14,0,1216,7,0,0 +2013,10,14,1,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-5,0,1044,-6,0,0 +2013,5,8,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1305,-1,0,1545,-8,0,0 +2013,5,31,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2015,1,0,2110,-2,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1514,7,0,1858,9,0,0 +2013,5,3,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,49,1,1540,49,1,0 +2013,9,16,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,16,1,1210,9,0,0 +2013,6,30,7,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1255,4,0,1531,1,0,0 +2013,8,3,6,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,10,0,1920,2,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,-7,0,40,-14,0,0 +2013,5,19,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,17,1,1600,81,1,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,731,-4,0,1008,-5,0,0 +2013,5,14,2,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1440,-6,0,1650,-25,0,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1302,4,0,2129,-6,0,0 +2013,6,16,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1700,-1,0,1805,-5,0,0 +2013,7,14,7,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,945,2,0,1505,-15,0,0 +2013,9,14,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,-1,0,1930,1,0,0 +2013,10,6,7,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,3,0,1520,7,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,815,-2,0,950,1,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,9,0,1913,-13,0,0 +2013,7,1,1,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,959,10,0,1604,2,0,0 +2013,9,20,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-6,0,635,-11,0,0 +2013,4,28,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,8,0,1755,10,0,0 +2013,10,22,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1750,-6,0,2025,-12,0,0 +2013,9,11,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1150,3,0,1228,11,0,0 +2013,10,23,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1300,-2,0,1622,-7,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,17,1,2000,14,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1840,16,1,2045,4,0,0 +2013,9,23,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,136,1,1759,126,1,0 +2013,6,14,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1209,-2,0,1340,2,0,0 +2013,5,5,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,0,0,1828,-4,0,0 +2013,7,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1845,-2,0,1945,-6,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,630,-10,0,857,-27,0,0 +2013,9,18,3,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-9,0,1645,-27,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2046,-5,0,2215,-4,0,0 +2013,9,11,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1921,-7,0,2211,-3,0,0 +2013,5,31,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1610,30,1,1804,60,1,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,705,-3,0,1028,1,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-5,0,859,-7,0,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1510,-6,0,1637,-17,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,-4,0,626,-3,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,2,0,1306,-9,0,0 +2013,10,1,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,2,0,720,-7,0,0 +2013,5,3,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1638,1,0,1942,-27,0,0 +2013,9,30,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2151,-10,0,2331,-18,0,0 +2013,4,17,3,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,21,1,2115,30,1,0 +2013,10,2,3,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,900,-17,0,1027,-26,0,0 +2013,6,11,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1629,55,1,1800,55,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1235,21,1,1431,2,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1742,34,1,1925,25,1,0 +2013,5,18,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-1,0,2034,-7,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1030,1,0,1320,-1,0,0 +2013,9,11,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-1,0,1213,-10,0,0 +2013,9,10,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1055,-6,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1630,-3,0,1840,-1,0,0 +2013,7,15,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,-3,0,1729,3,0,0 +2013,9,18,3,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,15,1,1420,-2,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1640,28,1,1830,9,0,0 +2013,7,13,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,4,0,1829,5,0,0 +2013,8,3,6,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-3,0,915,-20,0,0 +2013,8,20,2,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,0,0,1140,-5,0,0 +2013,7,14,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,11,0,1215,-9,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1325,-5,0,1430,-10,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1215,-3,0,1439,4,0,0 +2013,10,19,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-4,0,1755,-15,0,0 +2013,9,18,3,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1646,-10,0,2047,-10,0,0 +2013,6,6,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,2,0,2054,-2,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,815,-6,0,935,-3,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,-6,0,1253,-2,0,0 +2013,7,29,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,0,0,930,-6,0,0 +2013,5,9,4,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-7,0,1625,-11,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-2,0,1903,-7,0,0 +2013,7,4,4,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1041,-5,0,1244,-7,0,0 +2013,5,5,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1359,-6,0,1714,-29,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,739,-1,0,1015,0,0,0 +2013,5,14,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1121,-6,0,1232,-15,0,0 +2013,10,3,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,955,-10,0,1049,-7,0,0 +2013,9,30,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-5,0,1855,-13,0,0 +2013,5,9,4,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,0,,1535,0,1,1 +2013,8,5,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,1246,1,0,1435,-18,0,0 +2013,4,17,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,805,-10,0,1107,-16,0,0 +2013,5,29,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,0,0,926,32,1,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,815,-2,0,930,-6,0,0 +2013,5,2,4,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,-8,0,1315,-7,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,13,0,2159,40,1,0 +2013,6,18,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1825,12,0,2055,-3,0,0 +2013,9,22,7,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,4,0,1129,-8,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,1,0,1849,-12,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1715,-5,0,2000,-12,0,0 +2013,9,22,7,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,810,1,0,940,-16,0,0 +2013,4,23,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,26,1,2212,23,1,0 +2013,4,22,1,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,0,,2036,0,1,1 +2013,6,16,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,14,0,1150,15,1,0 +2013,9,10,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1825,147,1,2010,138,1,0 +2013,6,24,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,2000,-2,0,2315,-32,0,0 +2013,10,16,3,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2140,15,1,610,-20,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2007,1,0,2215,4,0,0 +2013,8,26,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1630,-3,0,1805,-4,0,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,954,0,0,1338,-4,0,0 +2013,9,25,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,155,1,1159,137,1,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,705,-2,0,955,-9,0,0 +2013,10,27,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-7,0,1825,-8,0,0 +2013,10,23,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1350,-6,0,1517,-16,0,0 +2013,6,9,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,805,-4,0,857,-11,0,0 +2013,6,3,1,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1034,-4,0,1328,-7,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2236,0,0,15,-7,0,0 +2013,8,1,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,901,0,0,0 +2013,10,8,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2305,-2,0,632,-19,0,0 +2013,8,18,7,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,36,1,2110,18,1,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,7,0,2330,11,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1735,1,0,1855,-13,0,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1210,4,0,1435,-5,0,0 +2013,9,23,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,810,-2,0,934,-3,0,0 +2013,8,29,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-7,0,1023,9,0,0 +2013,7,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2011,-5,0,2346,-13,0,0 +2013,8,27,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1600,-8,0,1725,-10,0,0 +2013,7,22,1,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,41,1,2022,101,1,0 +2013,4,20,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1237,0,0,2031,0,0,0 +2013,8,6,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,0,0,730,-7,0,0 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,744,13,0,840,8,0,0 +2013,6,13,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,-4,0,2032,61,1,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,0,,1415,0,1,1 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,715,-4,0,820,-12,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1920,14,0,2157,2,0,0 +2013,5,18,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,800,-2,0,900,-4,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,21,1,2255,29,1,0 +2013,9,19,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1105,6,0,1405,3,0,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1305,-7,0,1614,-26,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-1,0,1418,-11,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,28,1,1440,28,1,0 +2013,5,9,4,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,36,1,1725,32,1,0 +2013,7,18,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,-3,0,1720,7,0,0 +2013,4,3,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,8,0,606,-5,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,36,1,1755,28,1,0 +2013,7,22,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1820,-3,0,2200,-26,0,0 +2013,6,6,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2312,-6,0,2359,-7,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,-2,0,1816,-13,0,0 +2013,9,30,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,754,-6,0,0 +2013,9,26,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2036,-12,0,2158,-8,0,0 +2013,4,24,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,19,1,2035,10,0,0 +2013,4,10,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,811,0,0,942,42,1,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,856,-3,0,1105,-17,0,0 +2013,5,3,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1705,175,1,1843,162,1,0 +2013,5,19,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1130,-5,0,1310,-17,0,0 +2013,4,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1136,61,1,1334,65,1,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1005,-10,0,1349,-27,0,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,27,1,1910,34,1,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2018,1,0,2120,-14,0,0 +2013,9,24,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,715,-10,0,1034,-18,0,0 +2013,6,24,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1700,0,,1822,0,1,1 +2013,6,3,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1155,-8,0,1325,-15,0,0 +2013,7,8,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1711,69,1,1850,61,1,0 +2013,4,11,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,-2,0,950,-8,0,0 +2013,6,18,2,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1830,138,1,1925,140,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2155,-3,0,2,-20,0,0 +2013,5,28,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1210,-1,0,1529,-1,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,805,3,0,1030,7,0,0 +2013,5,25,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,1,0,1910,27,1,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,630,-2,0,925,-19,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1035,2,0,1210,-3,0,0 +2013,9,6,5,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-7,0,2010,-17,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1910,12,0,2045,2,0,0 +2013,4,28,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1115,-7,0,1145,-26,0,0 +2013,6,3,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1220,-3,0,1415,-8,0,0 +2013,7,4,4,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,959,-1,0,1225,-23,0,0 +2013,4,29,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,0,0,845,5,0,0 +2013,10,17,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1115,-5,0,1255,-7,0,0 +2013,4,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,2000,16,1,2320,20,1,0 +2013,5,18,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,742,-16,0,0 +2013,9,26,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1115,18,1,1334,26,1,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-5,0,2105,-1,0,0 +2013,6,18,2,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1359,12,0,1642,1,0,0 +2013,8,20,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,3,0,1615,9,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1426,8,0,1625,26,1,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,9,0,2030,6,0,0 +2013,5,8,3,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1515,-10,0,1736,-17,0,0 +2013,6,3,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-7,0,2354,-7,0,0 +2013,6,30,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,753,-6,0,922,-14,0,0 +2013,10,10,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1535,14,0,1655,1,0,0 +2013,8,13,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1025,0,,1210,0,1,1 +2013,4,14,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1756,75,1,1930,72,1,0 +2013,7,27,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,730,-5,0,1010,-2,0,0 +2013,5,6,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,1,0,1918,46,1,0 +2013,8,4,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1931,5,0,2320,1,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,855,-6,0,1125,2,0,0 +2013,10,24,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-1,0,1825,3,0,0 +2013,7,27,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,-3,0,1020,-7,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,600,1,0,920,-4,0,0 +2013,4,19,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,720,4,0,825,2,0,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1055,-4,0,1430,-3,0,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1130,-4,0,1309,-7,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,3,0,25,10,0,0 +2013,7,22,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1650,53,1,2055,42,1,0 +2013,6,14,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,30,1,1725,9,0,0 +2013,9,3,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,-3,0,1800,0,0,0 +2013,5,31,5,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,700,-4,0,743,6,0,0 +2013,9,27,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1820,2,0,1930,-4,0,0 +2013,7,21,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,2,0,945,2,0,0 +2013,10,5,6,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,-4,0,1645,-9,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1512,91,1,2352,64,1,0 +2013,4,19,5,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,-7,0,2203,10,0,0 +2013,8,12,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,9,0,1720,11,0,0 +2013,7,15,1,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,3,0,2045,5,0,0 +2013,8,1,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1230,-1,0,1351,8,0,0 +2013,5,6,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-1,0,2047,-13,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,0,0,948,20,1,0 +2013,5,5,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1115,-8,0,1407,-23,0,0 +2013,4,23,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,725,-4,0,905,-13,0,0 +2013,9,14,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1140,30,1,1655,24,1,0 +2013,10,10,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,735,-1,0,1035,-4,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2115,1,0,2210,-7,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1815,1,0,2121,-14,0,0 +2013,9,26,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,0,0,1806,1,0,0 +2013,9,1,7,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,14,0,1605,24,1,0 +2013,9,28,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,0,,1510,0,1,1 +2013,8,18,7,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1245,14,0,1639,-6,0,0 +2013,10,16,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,-1,0,1550,-1,0,0 +2013,9,15,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1500,34,1,1630,22,1,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2039,-3,0,2303,-8,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1614,0,0,1944,14,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1020,-1,0,1430,-5,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2032,0,0,2301,1,0,0 +2013,5,11,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-4,0,1355,17,1,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1710,5,0,1925,-7,0,0 +2013,4,25,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1032,-1,0,1318,55,1,0 +2013,5,22,3,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,3,0,1610,-2,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1815,37,1,1940,34,1,0 +2013,7,25,4,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,0,0,820,6,0,0 +2013,7,19,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1040,-12,0,1201,-13,0,0 +2013,4,2,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,720,-4,0,825,-9,0,0 +2013,7,11,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-5,0,655,2,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1437,-2,0,1535,-2,0,0 +2013,6,26,3,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1700,40,1,1915,27,1,0 +2013,6,15,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,1125,-5,0,0 +2013,8,30,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1935,-1,0,2302,-46,0,0 +2013,6,15,6,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1325,0,0,1545,-13,0,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1055,-4,0,1855,-33,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,815,-6,0,1015,-5,0,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,-2,0,1819,-12,0,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2018,-6,0,2041,-11,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-3,0,1305,6,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2208,18,1,2359,25,1,0 +2013,5,8,3,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1617,0,0,1907,5,0,0 +2013,5,31,5,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,-10,0,1041,-15,0,0 +2013,8,4,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1355,-5,0,1641,-6,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,-3,0,1550,1,0,0 +2013,9,29,7,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,-6,0,1935,-15,0,0 +2013,8,10,6,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1240,1,0,1517,-15,0,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,0,0,1605,-8,0,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1354,0,0,1642,-5,0,0 +2013,4,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1009,-6,0,1330,-17,0,0 +2013,10,7,1,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,32,1,1825,43,1,0 +2013,9,29,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1426,3,0,1534,1,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1920,38,1,2225,20,1,0 +2013,7,17,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,627,-6,0,745,-9,0,0 +2013,7,9,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1615,-5,0,1726,-20,0,0 +2013,10,14,1,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1826,-11,0,2018,-2,0,0 +2013,7,11,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2115,1,0,2328,-8,0,0 +2013,4,20,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,2,0,935,-3,0,0 +2013,4,17,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1331,-2,0,1546,-7,0,0 +2013,8,17,6,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1227,-3,0,1359,-20,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,3,0,2255,-3,0,0 +2013,9,10,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1302,-9,0,0 +2013,6,29,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2021,0,,2142,0,1,1 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,59,1,1825,37,1,0 +2013,7,9,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1830,41,1,2038,68,1,0 +2013,7,13,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-2,0,1348,-7,0,0 +2013,4,26,5,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1615,-1,0,1805,-14,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1415,7,0,2045,17,1,0 +2013,8,31,6,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-4,0,1040,-10,0,0 +2013,5,13,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,920,8,0,1055,0,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2025,1,0,2321,-15,0,0 +2013,9,9,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-9,0,1829,-9,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-2,0,1646,4,0,0 +2013,10,26,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1846,-3,0,2002,-13,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,-5,0,1520,-13,0,0 +2013,4,6,6,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,1000,-4,0,1300,-1,0,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1300,7,0,1615,57,1,0 +2013,7,30,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1400,-1,0,1555,28,1,0 +2013,4,20,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1845,37,1,2245,17,1,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,743,-4,0,840,-10,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1605,-2,0,1817,-20,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,14,0,1915,30,1,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1433,14,0,2013,3,0,0 +2013,7,23,2,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1655,-6,0,1810,2,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1912,20,1,2039,-6,0,0 +2013,7,23,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,-5,0,2125,9,0,0 +2013,5,26,7,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-5,0,2229,-2,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1507,3,0,1657,-1,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1815,-7,0,2008,-10,0,0 +2013,5,10,5,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,640,-3,0,752,12,0,0 +2013,6,20,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1005,-6,0,1121,-4,0,0 +2013,4,5,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,0,,1610,0,1,1 +2013,4,4,4,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,-1,0,1135,20,1,0 +2013,10,24,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-8,0,1501,-4,0,0 +2013,10,5,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,-7,0,1230,-12,0,0 +2013,4,5,5,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1629,-8,0,1939,-21,0,0 +2013,5,4,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-6,0,1155,-13,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,706,23,1,1259,15,1,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,845,6,0,1705,6,0,0 +2013,5,10,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1210,0,0,1325,20,1,0 +2013,6,30,7,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-5,0,1810,-2,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,15,1,1105,9,0,0 +2013,7,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,805,63,1,915,57,1,0 +2013,4,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1305,1,0,1410,-3,0,0 +2013,7,30,2,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1932,0,0,2055,3,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1750,57,1,1910,49,1,0 +2013,8,13,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2320,-5,0,629,-10,0,0 +2013,6,28,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1906,-9,0,2229,17,1,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1735,15,1,1925,3,0,0 +2013,4,7,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,-2,0,1130,-18,0,0 +2013,10,14,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,34,1,1830,12,0,0 +2013,9,22,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,3,0,1435,5,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1340,71,1,1729,60,1,0 +2013,4,23,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-5,0,1907,2,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-3,0,1130,-36,0,0 +2013,9,21,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,935,-4,0,1153,-9,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,-4,0,2154,-7,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,5,0,1738,-5,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,835,-3,0,1024,0,0,0 +2013,10,10,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1215,1,0,1400,-7,0,0 +2013,7,31,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,847,4,0,0 +2013,8,2,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,-5,0,909,-11,0,0 +2013,4,3,3,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1035,-4,0,1341,-19,0,0 +2013,5,30,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,700,-6,0,1144,-19,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,720,-2,0,820,-8,0,0 +2013,5,28,2,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1155,25,1,1515,29,1,0 +2013,9,28,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1334,1,0,1557,-14,0,0 +2013,10,6,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1820,0,0,1935,-11,0,0 +2013,5,13,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,736,-14,0,839,6,0,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-1,0,2015,0,0,0 +2013,5,29,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2025,6,0,2128,23,1,0 +2013,6,25,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2110,142,1,2243,129,1,0 +2013,8,17,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1706,-8,0,0 +2013,8,18,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,-3,0,1655,-8,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-3,0,1026,-12,0,0 +2013,8,2,5,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,4,0,1435,0,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-3,0,1115,37,1,0 +2013,10,7,1,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,740,-2,0,810,-7,0,0 +2013,10,11,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1027,-3,0,1153,-11,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1349,-4,0,1639,-15,0,0 +2013,8,3,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1550,41,1,1705,51,1,0 +2013,7,7,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1820,4,0,2200,-16,0,0 +2013,6,15,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1356,-1,0,1746,9,0,0 +2013,6,21,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,-7,0,1210,-15,0,0 +2013,4,12,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,-3,0,1451,-12,0,0 +2013,6,25,2,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,-3,0,1025,-9,0,0 +2013,4,22,1,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,810,-5,0,1058,-11,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,920,7,0,1510,-1,0,0 +2013,4,8,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,840,-4,0,1209,-17,0,0 +2013,9,27,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,0,0,750,-7,0,0 +2013,5,25,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,715,9,0,955,1,0,0 +2013,6,2,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,837,-1,0,939,-12,0,0 +2013,8,9,5,OO,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1232,90,1,1606,85,1,0 +2013,9,12,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-6,0,2043,-15,0,0 +2013,9,25,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1000,-7,0,1115,0,0,0 +2013,4,5,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-7,0,1145,-19,0,0 +2013,6,24,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1530,-4,0,1850,-19,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1605,11,0,1905,2,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,750,1,0,910,-1,0,0 +2013,7,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,625,-5,0,725,0,0,0 +2013,8,12,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,923,179,1,1105,163,1,0 +2013,5,8,3,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1815,6,0,2108,-8,0,0 +2013,6,27,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,630,-4,0,827,-15,0,0 +2013,9,14,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,640,9,0,815,16,1,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1230,-1,0,1457,-23,0,0 +2013,4,15,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,700,-3,0,1515,-10,0,0 +2013,4,26,5,EV,14307,Theodore Francis Green State,Providence,RI,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,0,0,2040,-26,0,0 +2013,10,3,4,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1729,-5,0,2001,-1,0,0 +2013,7,21,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,7,0,1544,6,0,0 +2013,8,20,2,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,758,-2,0,0 +2013,6,18,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1649,6,0,1914,-2,0,0 +2013,10,26,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1742,114,1,1940,112,1,0 +2013,8,28,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,-3,0,1742,-11,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1645,1,0,1820,36,1,0 +2013,10,27,7,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,0,0,1735,-16,0,0 +2013,5,7,2,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1837,-6,0,2135,0,0,0 +2013,10,14,1,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1010,0,0,1115,10,0,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,825,-8,0,1053,17,1,0 +2013,4,21,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,24,1,1525,22,1,0 +2013,9,27,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2205,0,0,157,-1,0,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,1,0,950,-17,0,0 +2013,4,22,1,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-13,0,1218,-30,0,0 +2013,4,4,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1349,23,1,1535,44,1,0 +2013,6,26,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1728,0,,1900,0,1,1 +2013,4,20,6,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-2,0,717,1,0,0 +2013,4,7,7,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-9,0,914,-22,0,0 +2013,10,30,3,EV,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,927,-9,0,1112,-17,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,855,-2,0,950,-7,0,0 +2013,5,13,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,855,11,0,910,3,0,0 +2013,8,28,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,9,0,1250,-15,0,0 +2013,8,24,6,OO,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1734,-1,0,1827,0,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1456,-4,0,1802,-29,0,0 +2013,8,1,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,826,5,0,0 +2013,5,26,7,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-3,0,1015,-18,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1249,-2,0,1641,-8,0,0 +2013,5,29,3,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1111,17,1,1408,17,1,0 +2013,10,4,5,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,-3,0,1608,-18,0,0 +2013,6,27,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,14,0,2052,50,1,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,-6,0,2300,-3,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1235,27,1,1457,22,1,0 +2013,6,11,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,13,0,2235,4,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1700,26,1,2250,36,1,0 +2013,7,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,850,8,0,1104,12,0,0 +2013,7,26,5,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,530,3,0,633,-4,0,0 +2013,7,10,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1730,10,0,2050,24,1,0 +2013,6,16,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-9,0,1254,-15,0,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,25,1,1905,19,1,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1045,-1,0,1246,-18,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,16,1,2156,-2,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1955,-4,0,2110,-26,0,0 +2013,7,24,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,905,0,0,1015,-17,0,0 +2013,4,22,1,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1834,0,,2000,0,1,1 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1528,4,0,1655,-3,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1121,5,0,1251,6,0,0 +2013,8,21,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,610,-10,0,930,-19,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1940,49,1,20,48,1,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1004,52,1,1133,48,1,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1230,-4,0,1330,-17,0,0 +2013,8,27,2,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,7,0,1116,11,0,0 +2013,4,8,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1740,0,0,1910,1,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,5,0,1415,-7,0,0 +2013,8,4,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1719,26,1,1855,20,1,0 +2013,9,28,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,755,-2,0,1546,-21,0,0 +2013,10,22,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,-9,0,2125,-15,0,0 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,2230,-4,0,536,16,1,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,212,1,1620,219,1,0 +2013,7,6,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2030,-3,0,2145,-9,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-3,0,1815,-18,0,0 +2013,8,14,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,638,27,1,845,42,1,0 +2013,5,17,5,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,-5,0,1716,-6,0,0 +2013,7,29,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,12,0,2130,-1,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,740,-2,0,1010,-6,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,15,1,2137,6,0,0 +2013,6,14,5,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1422,-1,0,1542,18,1,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1505,-6,0,1831,-7,0,0 +2013,8,2,5,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-7,0,1122,-5,0,0 +2013,7,5,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,600,-4,0,1401,-8,0,0 +2013,10,4,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,1,0,1925,8,0,0 +2013,9,15,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,-3,0,1252,-12,0,0 +2013,7,28,7,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1930,36,1,2142,46,1,0 +2013,7,11,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1755,86,1,1935,75,1,0 +2013,4,18,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,-5,0,2015,-20,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,815,-1,0,1036,7,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,0,0,835,-5,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-1,0,1627,11,0,0 +2013,9,19,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1324,16,1,1457,7,0,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1220,-3,0,1337,-26,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,4,0,2329,-8,0,0 +2013,5,15,3,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,-7,0,1820,-5,0,0 +2013,4,28,7,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,1400,-5,0,1550,-34,0,0 +2013,10,16,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1235,-5,0,1418,-12,0,0 +2013,8,14,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,6,0,1639,-6,0,0 +2013,4,3,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1454,18,1,1540,14,0,0 +2013,10,15,2,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-7,0,1024,-22,0,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1020,26,1,1320,21,1,0 +2013,6,25,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-6,0,1240,-16,0,0 +2013,8,3,6,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1730,-6,0,2144,-22,0,0 +2013,7,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,0,,1548,0,1,1 +2013,4,14,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1710,-2,0,1845,-13,0,0 +2013,10,27,7,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-10,0,1050,-44,0,0 +2013,4,16,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-7,0,1029,3,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1705,128,1,1815,123,1,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,1119,-4,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,82,1,1953,54,1,0 +2013,6,14,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2023,-8,0,2118,-2,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,3,0,859,-7,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,2,0,2246,4,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1510,-1,0,1639,19,1,0 +2013,4,12,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,618,-13,0,650,0,0,0 +2013,8,28,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-6,0,1621,-16,0,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,68,1,2255,46,1,0 +2013,4,20,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,5,0,1745,6,0,0 +2013,4,26,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2027,2,0,2154,-17,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2210,12,0,14,26,1,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,137,1,2337,118,1,0 +2013,5,16,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1206,3,0,1327,2,0,0 +2013,6,10,1,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1415,5,0,1530,-6,0,0 +2013,9,2,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,-1,0,1415,-22,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1840,-2,0,2100,1,0,0 +2013,6,27,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1930,-11,0,2144,-11,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,740,1,0,1310,1,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1935,5,0,2045,1,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,107,1,2252,82,1,0 +2013,5,16,4,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-9,0,952,-27,0,0 +2013,10,12,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1720,-6,0,1850,-5,0,0 +2013,4,9,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1755,19,1,2050,-4,0,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,7,0,2213,5,0,0 +2013,4,26,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1635,-5,0,1655,-2,0,0 +2013,6,1,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1640,67,1,1740,60,1,0 +2013,10,9,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,58,1,850,48,1,0 +2013,4,3,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,945,1,0,1020,-7,0,0 +2013,9,22,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1030,-1,0,1245,-13,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-1,0,2240,-30,0,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2030,16,1,2155,12,0,0 +2013,7,10,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1842,294,1,2119,309,1,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,632,-9,0,812,-26,0,0 +2013,4,8,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1800,-3,0,2109,-27,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-4,0,2320,-12,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1052,-2,0,1156,-17,0,0 +2013,9,27,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,707,-5,0,1028,-13,0,0 +2013,9,14,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1000,-5,0,1203,-16,0,0 +2013,7,29,1,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,-4,0,1840,-10,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,17,1,1525,13,0,0 +2013,6,6,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-5,0,1120,7,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2050,2,0,2222,-14,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1905,40,1,2125,26,1,0 +2013,10,3,4,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,1955,-7,0,0 +2013,6,9,7,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1345,4,0,1445,-2,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1144,10,0,1311,0,0,0 +2013,5,10,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,0,0,1328,-9,0,0 +2013,5,11,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,14,0,1850,13,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2246,-3,0,30,-27,0,0 +2013,7,20,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,204,1,901,167,1,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,726,0,0,913,-13,0,0 +2013,10,28,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,-12,0,2345,-18,0,0 +2013,9,25,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,28,1,1307,42,1,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1345,35,1,1540,26,1,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1629,2,0,1943,-26,0,0 +2013,8,18,7,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1755,21,1,2035,19,1,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,820,5,0,1100,-18,0,0 +2013,9,22,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1727,24,1,1949,3,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1750,3,0,1915,1,0,0 +2013,8,23,5,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1445,4,0,1701,-14,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,824,-1,0,1052,12,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1950,27,1,2258,6,0,0 +2013,6,11,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1029,29,1,1155,27,1,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,625,5,0,920,62,1,0 +2013,9,26,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-7,0,1301,-13,0,0 +2013,4,27,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,847,-23,0,0 +2013,4,8,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-5,0,1858,1,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2155,11,0,2320,14,0,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,655,0,0,831,-5,0,0 +2013,9,17,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,24,1,1630,13,0,0 +2013,9,3,2,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1802,4,0,2031,0,0,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1717,6,0,1838,-2,0,0 +2013,8,12,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-2,0,1828,-3,0,0 +2013,5,7,2,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1108,-12,0,1431,-11,0,0 +2013,6,6,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,-4,0,500,21,1,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1945,6,0,2140,-7,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1900,9,0,2230,32,1,0 +2013,4,29,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,16,1,647,5,0,0 +2013,10,5,6,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1500,0,0,1629,-10,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1722,-9,0,2005,32,1,0 +2013,5,31,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,-2,0,1414,-7,0,0 +2013,9,7,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-1,0,1635,1,0,0 +2013,6,23,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-7,0,1000,-8,0,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1135,-5,0,1312,-14,0,0 +2013,5,30,4,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,705,-2,0,925,-6,0,0 +2013,6,30,7,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,925,-8,0,1210,-7,0,0 +2013,9,29,7,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-11,0,1726,-11,0,0 +2013,6,10,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,154,1,2035,147,1,0 +2013,9,11,3,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-5,0,922,-13,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1710,-4,0,1905,-13,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-4,0,922,-37,0,0 +2013,10,6,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1212,-7,0,1450,8,0,0 +2013,8,21,3,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1525,8,0,1605,-1,0,0 +2013,9,19,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-6,0,1242,-1,0,0 +2013,10,27,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,-7,0,2128,-14,0,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,700,-7,0,1056,7,0,0 +2013,8,1,4,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1630,19,1,1805,19,1,0 +2013,6,7,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1135,5,0,1254,-5,0,0 +2013,5,30,4,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-7,0,1625,3,0,0 +2013,5,7,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-2,0,1237,19,1,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1510,27,1,1833,55,1,0 +2013,4,27,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1625,-2,0,1755,-11,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,3,0,2112,-29,0,0 +2013,10,28,1,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,-5,0,1341,-11,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,14,0,1810,-36,0,0 +2013,4,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1530,-7,0,1634,-19,0,0 +2013,6,4,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-3,0,940,-11,0,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,2000,65,1,2101,45,1,0 +2013,5,19,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,31,1,1420,26,1,0 +2013,4,18,4,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,-4,0,606,4,0,0 +2013,6,3,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1627,9,0,1748,-7,0,0 +2013,5,24,5,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,3,0,2315,16,1,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1750,30,1,2000,28,1,0 +2013,5,20,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,91,1,1135,87,1,0 +2013,7,16,2,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1437,-10,0,1610,-20,0,0 +2013,5,14,2,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1329,-4,0,1604,-23,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1725,-1,0,1810,-4,0,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-5,0,1115,-2,0,0 +2013,5,25,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1015,5,0,1303,-4,0,0 +2013,9,1,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,900,-9,0,1201,-17,0,0 +2013,6,3,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-9,0,1415,-24,0,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1445,0,0,1715,-5,0,0 +2013,4,7,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1239,-1,0,1405,-6,0,0 +2013,9,29,7,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1448,4,0,1601,12,0,0 +2013,10,23,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,921,4,0,1050,3,0,0 +2013,9,7,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-3,0,1846,-18,0,0 +2013,5,5,7,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,5,0,1712,-5,0,0 +2013,7,25,4,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2003,-2,0,2243,-7,0,0 +2013,9,19,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,740,-6,0,911,-8,0,0 +2013,10,5,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,50,-1,0,615,-5,0,0 +2013,9,18,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,5,0,1215,0,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,910,-4,0,1015,-14,0,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2026,66,1,2348,42,1,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-8,0,1305,0,0,0 +2013,4,30,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,1011,1,0,0 +2013,7,21,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-10,0,754,-13,0,0 +2013,7,7,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1330,0,,1458,0,1,1 +2013,4,14,7,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1430,12,0,1615,9,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,-5,0,35,-10,0,0 +2013,5,5,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1734,9,0,1841,25,1,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-3,0,1100,3,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,741,-2,0,911,-12,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1535,-1,0,1650,-9,0,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,1705,19,1,1950,48,1,0 +2013,4,29,1,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,58,1,1610,52,1,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1010,-5,0,1132,-11,0,0 +2013,6,10,1,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,-2,0,2145,-3,0,0 +2013,8,18,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-1,0,910,11,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,0,0,903,-6,0,0 +2013,8,24,6,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-5,0,1208,-4,0,0 +2013,5,24,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,0,0,1230,-5,0,0 +2013,10,28,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,710,3,0,800,1,0,0 +2013,4,15,1,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1810,-2,0,2020,-9,0,0 +2013,6,15,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,14,0,1831,36,1,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,8,0,2259,-5,0,0 +2013,7,30,2,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,-10,0,1849,-25,0,0 +2013,9,27,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1915,2,0,2131,5,0,0 +2013,4,13,6,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1816,-14,0,2100,-23,0,0 +2013,5,2,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,8,0,1826,32,1,0 +2013,8,27,2,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-3,0,1855,-26,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,18,1,1155,18,1,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1458,3,0,1959,14,0,0 +2013,5,10,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1706,38,1,1922,24,1,0 +2013,6,5,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1320,-10,0,1614,-8,0,0 +2013,6,8,6,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-2,0,1829,-7,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1405,7,0,1510,-2,0,0 +2013,7,8,1,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1509,88,1,1610,103,1,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1720,-3,0,1910,-13,0,0 +2013,6,7,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1825,24,1,0 +2013,8,4,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,-6,0,1624,-5,0,0 +2013,6,12,3,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,21,1,1305,9,0,0 +2013,4,19,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1431,-6,0,1607,-15,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1555,3,0,1914,-5,0,0 +2013,10,6,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,20,1,1420,11,0,0 +2013,8,29,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-8,0,2145,-5,0,0 +2013,8,3,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,34,1,2255,47,1,0 +2013,6,5,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,-6,0,1525,-12,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2103,0,0,2219,-19,0,0 +2013,8,1,4,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2241,-4,0,655,-20,0,0 +2013,7,27,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1955,10,0,0 +2013,6,21,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,845,-7,0,0 +2013,8,4,7,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,600,0,0,900,3,0,0 +2013,10,15,2,EV,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-9,0,759,-7,0,0 +2013,4,1,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1903,-3,0,2027,-7,0,0 +2013,9,12,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,-3,0,1159,-16,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2100,0,0,2212,-11,0,0 +2013,7,18,4,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1755,0,0,2255,6,0,0 +2013,6,14,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1105,-4,0,1444,7,0,0 +2013,6,8,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1259,5,0,0 +2013,7,22,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-1,0,1130,1,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,839,-2,0,1645,0,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1510,-2,0,1635,-6,0,0 +2013,10,4,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-7,0,1329,7,0,0 +2013,7,4,4,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,640,12,0,805,-1,0,0 +2013,10,18,5,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-6,0,1751,-14,0,0 +2013,7,21,7,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,1300,6,0,1727,0,0,0 +2013,7,23,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,12,0,1755,13,0,0 +2013,8,17,6,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-2,0,1153,-9,0,0 +2013,5,21,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1346,4,0,1551,11,0,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1215,10,0,1330,11,0,0 +2013,10,7,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-7,0,1327,89,1,0 +2013,10,31,4,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-4,0,1815,-4,0,0 +2013,5,29,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,-5,0,1540,-18,0,0 +2013,10,12,6,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1511,-7,0,1705,15,1,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2035,-3,0,2320,-1,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1455,15,1,1700,8,0,0 +2013,8,28,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,2,0,745,-1,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1910,-4,0,2045,-18,0,0 +2013,9,18,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,20,1,1930,21,1,0 +2013,4,4,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1640,-10,0,2106,-18,0,0 +2013,5,26,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-3,0,641,-1,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,930,-3,0,1055,-8,0,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,855,43,1,1015,29,1,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1205,59,1,2040,46,1,0 +2013,5,2,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-15,0,1745,-15,0,0 +2013,9,4,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,-5,0,1440,-3,0,0 +2013,8,27,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-3,0,1710,-24,0,0 +2013,5,7,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,720,39,1,928,26,1,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2105,78,1,2247,71,1,0 +2013,7,19,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1455,-6,0,1830,-48,0,0 +2013,10,6,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1355,5,0,1445,2,0,0 +2013,5,12,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-11,0,1725,-23,0,0 +2013,4,1,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,710,17,1,830,12,0,0 +2013,9,25,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1250,24,1,1420,25,1,0 +2013,10,12,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1330,-7,0,1522,3,0,0 +2013,10,2,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-4,0,1638,-27,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,851,2,0,1135,11,0,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,735,-5,0,950,-14,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,730,-6,0,1115,-10,0,0 +2013,4,26,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1331,-2,0,1546,2,0,0 +2013,4,10,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-1,0,2103,0,0,0 +2013,8,8,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1756,0,0,1951,-19,0,0 +2013,6,1,6,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1015,-3,0,1245,-2,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-4,0,1738,-8,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1715,14,0,2020,9,0,0 +2013,6,2,7,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2110,45,1,2321,40,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1510,-2,0,1706,49,1,0 +2013,10,16,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,6,0,1944,-28,0,0 +2013,10,20,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1551,-3,0,0 +2013,7,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1855,43,1,20,47,1,0 +2013,5,12,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1908,-7,0,2210,-19,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1000,18,1,1325,6,0,0 +2013,8,24,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1000,-2,0,1255,1,0,0 +2013,5,13,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-2,0,1530,-9,0,0 +2013,6,29,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,0,0,1228,0,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,710,1,0,815,-16,0,0 +2013,5,27,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1750,-1,0,1855,-9,0,0 +2013,4,16,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,840,-3,0,1150,-5,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,-4,0,2040,-6,0,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,2,0,910,-2,0,0 +2013,10,13,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,36,1,1618,25,1,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,10,0,1149,10,0,0 +2013,4,2,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-4,0,850,0,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1541,-1,0,1720,0,0,0 +2013,9,29,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,831,2,0,931,10,0,0 +2013,8,7,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,-2,0,1834,-12,0,0 +2013,10,10,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,905,-3,0,1035,7,0,0 +2013,6,14,5,FL,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,29,1,1710,37,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,21,1,1517,2,0,0 +2013,6,15,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1030,-1,0,1159,-7,0,0 +2013,4,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1655,-3,0,1755,-9,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1900,114,1,2330,112,1,0 +2013,5,22,3,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,800,-5,0,945,-13,0,0 +2013,9,9,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1050,16,1,1110,16,1,0 +2013,10,9,3,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,950,-1,0,1650,-14,0,0 +2013,7,27,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,758,-12,0,1001,-8,0,0 +2013,10,27,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1135,-4,0,1153,-18,0,0 +2013,5,2,4,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1840,-3,0,1955,-6,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,-3,0,2102,27,1,0 +2013,9,6,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-2,0,810,-15,0,0 +2013,7,9,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1040,-10,0,1425,-10,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2155,-6,0,16,5,0,0 +2013,5,6,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1925,-3,0,2110,-7,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1835,8,0,2110,18,1,0 +2013,5,16,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,0,0,1328,-1,0,0 +2013,8,7,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1235,-4,0,1440,-10,0,0 +2013,8,8,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1323,-1,0,1442,-6,0,0 +2013,10,1,2,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1055,-11,0,1333,-10,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,93,1,1145,77,1,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,2,0,1430,-4,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1715,39,1,1820,39,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1705,-3,0,1854,-20,0,0 +2013,8,20,2,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,-4,0,1744,-35,0,0 +2013,10,21,1,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1515,-8,0,1829,-27,0,0 +2013,4,9,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,600,-4,0,922,-30,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,-6,0,1025,-9,0,0 +2013,8,27,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1511,1,0,1900,4,0,0 +2013,8,13,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,0,0,1435,-4,0,0 +2013,6,16,7,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2320,1,0,740,-5,0,0 +2013,9,11,3,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1440,-7,0,1715,-20,0,0 +2013,7,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2030,35,1,2145,32,1,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1225,15,1,1345,12,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,715,-3,0,852,1,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1900,8,0,2115,-1,0,0 +2013,7,28,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13244,Memphis International,Memphis,TN,135,11,0,737,-4,0,0 +2013,7,11,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1000,-8,0,1650,-3,0,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1800,10,0,1955,-11,0,0 +2013,9,25,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1220,-4,0,1350,-8,0,0 +2013,5,24,5,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,941,-4,0,1136,-4,0,0 +2013,10,14,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1940,-3,0,2245,-1,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-2,0,1343,-13,0,0 +2013,4,8,1,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-8,0,1011,-19,0,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2105,8,0,2220,-6,0,0 +2013,7,1,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,846,34,1,0 +2013,8,3,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1730,-1,0,1755,-2,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1625,-2,0,45,7,0,0 +2013,4,23,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,715,-3,0,750,-13,0,0 +2013,10,13,7,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,550,-9,0,902,-20,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,41,1,1623,46,1,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,710,-5,0,915,14,0,0 +2013,4,24,3,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1755,7,0,1915,18,1,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1015,10,0,1037,7,0,0 +2013,10,14,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-4,0,1125,-10,0,0 +2013,7,18,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-6,0,805,-16,0,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1935,12,0,2210,7,0,0 +2013,4,20,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1300,-3,0,1440,-13,0,0 +2013,5,17,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-2,0,1135,-2,0,0 +2013,5,15,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-3,0,1150,-9,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-6,0,27,-1,0,0 +2013,5,22,3,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,-7,0,2009,-23,0,0 +2013,9,1,7,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1427,-4,0,2233,-5,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,2030,8,0,2245,26,1,0 +2013,10,4,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,0,0,1924,-4,0,0 +2013,6,13,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-3,0,1850,-4,0,0 +2013,5,24,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1330,43,1,1610,43,1,0 +2013,7,4,4,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1247,-8,0,1524,2,0,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,1,0,1032,-16,0,0 +2013,8,22,4,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,-5,0,1546,0,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1945,-2,0,2345,-22,0,0 +2013,8,18,7,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1526,-2,0,1848,-10,0,0 +2013,7,24,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1325,9,0,1430,-5,0,0 +2013,9,2,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2053,14,0,2219,32,1,0 +2013,8,10,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,829,-1,0,1004,14,0,0 +2013,7,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-1,0,845,4,0,0 +2013,10,30,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1910,12,0,2210,23,1,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,0,0,1922,-14,0,0 +2013,4,10,3,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1800,9,0,2010,8,0,0 +2013,4,9,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,705,-5,0,829,-21,0,0 +2013,6,21,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-1,0,1605,2,0,0 +2013,10,10,4,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,835,-3,0,945,-4,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,5,0,2213,-3,0,0 +2013,8,24,6,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,814,-3,0,1044,-9,0,0 +2013,4,30,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1517,-6,0,2351,-19,0,0 +2013,5,27,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,-5,0,858,2,0,0 +2013,9,24,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-3,0,1700,-4,0,0 +2013,7,12,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2042,17,1,454,35,1,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1629,-5,0,1739,-12,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2005,45,1,2100,47,1,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1331,-2,0,1724,12,0,0 +2013,6,24,1,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1234,-2,0,1541,-14,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,930,-9,0,1320,-29,0,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-3,0,1349,-11,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1040,-2,0,1212,4,0,0 +2013,4,4,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1826,25,1,2017,44,1,0 +2013,5,21,2,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-2,0,604,-15,0,0 +2013,6,22,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1740,0,0,2055,-10,0,0 +2013,5,2,4,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1755,-3,0,1925,-38,0,0 +2013,7,20,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,700,-1,0,905,1,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1630,2,0,2125,-9,0,0 +2013,4,14,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1018,44,1,1149,36,1,0 +2013,7,31,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1535,-4,0,1810,-13,0,0 +2013,7,3,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,700,-7,0,1025,-3,0,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1530,2,0,1800,-10,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,23,1,1305,37,1,0 +2013,7,20,6,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,600,-7,0,642,-20,0,0 +2013,6,23,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-8,0,1535,-36,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,-8,0,1255,-30,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,146,1,1710,0,1,1 +2013,8,16,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-7,0,1811,11,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,19,1,1915,14,0,0 +2013,4,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,900,-3,0,1058,-3,0,0 +2013,4,13,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,143,1,2110,113,1,0 +2013,10,21,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,650,-5,0,804,-9,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1421,2,0,2030,-4,0,0 +2013,7,12,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,33,1,1237,24,1,0 +2013,4,15,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,86,1,1820,95,1,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1125,59,1,1715,51,1,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1205,-4,0,1214,-16,0,0 +2013,8,13,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1637,-2,0,1807,-5,0,0 +2013,9,10,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1755,-6,0,2030,-19,0,0 +2013,7,29,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,35,107,1,613,111,1,0 +2013,5,9,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,8,0,1353,19,1,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,700,13,0,930,-4,0,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-5,0,1920,1,0,0 +2013,6,10,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,650,4,0,820,-4,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1755,4,0,1900,2,0,0 +2013,7,28,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2212,-5,0,2309,47,1,0 +2013,8,19,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1404,-4,0,1700,-13,0,0 +2013,6,30,7,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,94,1,2105,94,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1725,-4,0,1855,-10,0,0 +2013,7,13,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,6,0,1027,-2,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,49,1,10,50,1,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1041,-1,0,1313,-16,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,2125,22,1,50,19,1,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,2,0,1245,-1,0,0 +2013,5,22,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-4,0,1554,-6,0,0 +2013,6,30,7,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,915,-6,0,0 +2013,6,3,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-7,0,744,-16,0,0 +2013,8,5,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,11,0,1859,43,1,0 +2013,6,14,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2045,-6,0,2313,-6,0,0 +2013,5,9,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1206,16,1,1327,10,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,42,1,2220,18,1,0 +2013,9,14,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,615,10,0,1235,-8,0,0 +2013,10,13,7,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-5,0,1004,-17,0,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2005,-5,0,2200,-26,0,0 +2013,6,8,6,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1933,29,1,2034,11,0,0 +2013,4,17,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2110,11,0,2235,1,0,0 +2013,7,26,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-4,0,2027,-9,0,0 +2013,7,6,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,0,0,2009,-15,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-1,0,1830,-14,0,0 +2013,6,4,2,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1659,10,0,1813,0,0,0 +2013,7,31,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1440,13,0,1610,6,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2255,-4,0,2300,-8,0,0 +2013,7,10,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-7,0,930,-16,0,0 +2013,7,29,1,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,37,1,1011,47,1,0 +2013,6,24,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1810,148,1,2100,118,1,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1715,1,0,2245,-12,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-7,0,1135,-6,0,0 +2013,7,20,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,5,0,1640,16,1,0 +2013,10,26,6,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1140,19,1,1300,9,0,0 +2013,9,6,5,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-12,0,2145,-36,0,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1630,4,0,1800,-2,0,0 +2013,4,1,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1135,-10,0,1425,-7,0,0 +2013,5,6,1,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-5,0,1925,31,1,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,735,-3,0,839,-5,0,0 +2013,7,24,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,-1,0,2038,3,0,0 +2013,5,2,4,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,600,-10,0,755,-23,0,0 +2013,8,9,5,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,823,-9,0,1002,-17,0,0 +2013,6,17,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1832,-4,0,2235,6,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,-2,0,740,-6,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2005,8,0,2235,-9,0,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,11,0,1230,-8,0,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1355,5,0,1530,-4,0,0 +2013,5,3,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,614,-3,0,1015,-16,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1925,4,0,2340,-6,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,70,1,2215,79,1,0 +2013,6,27,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,645,-2,0,950,-11,0,0 +2013,8,7,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1130,0,0,1655,-4,0,0 +2013,10,22,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,-3,0,1500,-12,0,0 +2013,4,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2145,21,1,2305,10,0,0 +2013,8,9,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,10,0,1951,5,0,0 +2013,4,1,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,18,1,1842,5,0,0 +2013,4,26,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1025,1,0,1035,-4,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,104,1,1901,94,1,0 +2013,5,15,3,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,-1,0,2119,23,1,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1150,23,1,1315,11,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1355,-3,0,1830,-36,0,0 +2013,6,24,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,610,-1,0,715,-12,0,0 +2013,8,30,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1205,19,1,1325,12,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1700,10,0,1817,12,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,930,3,0,1211,27,1,0 +2013,5,25,6,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1151,11,0,1256,6,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1118,1,0,1252,-10,0,0 +2013,9,19,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1029,-3,0,1505,-8,0,0 +2013,8,25,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2025,99,1,2255,102,1,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,108,1,1823,100,1,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1710,-10,0,2340,13,0,0 +2013,8,15,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-3,0,1358,-10,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1515,14,0,1740,15,1,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,812,-1,0,1004,-1,0,0 +2013,4,2,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-6,0,1344,0,0,0 +2013,6,20,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-4,0,1642,15,1,0 +2013,5,5,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,917,-5,0,1120,13,0,0 +2013,6,24,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2035,-7,0,2253,-8,0,0 +2013,5,7,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,-1,0,1610,-9,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-4,0,1058,-7,0,0 +2013,8,15,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1557,-7,0,1733,-17,0,0 +2013,9,5,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,731,52,1,932,27,1,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,-1,0,2000,39,1,0 +2013,7,13,6,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,700,-3,0,855,-11,0,0 +2013,10,4,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,107,1,1807,99,1,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1030,3,0,1155,0,0,0 +2013,5,5,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1640,20,1,1740,42,1,0 +2013,6,3,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,8,0,1649,1,0,0 +2013,6,3,1,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,618,2,0,752,-19,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1300,0,0,1614,18,1,0 +2013,7,27,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,-6,0,1054,4,0,0 +2013,8,7,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1007,-2,0,1045,2,0,0 +2013,4,21,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1623,-2,0,1800,-5,0,0 +2013,8,24,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,725,-3,0,940,0,0,0 +2013,10,1,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-7,0,708,-3,0,0 +2013,9,28,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1004,-6,0,1310,0,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,-5,0,1923,-2,0,0 +2013,6,11,2,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-3,0,920,-3,0,0 +2013,10,12,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1244,0,0,1352,-14,0,0 +2013,8,26,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,-1,0,940,-15,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,935,75,1,1110,90,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,0,0,1825,-5,0,0 +2013,7,16,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1655,19,1,1740,7,0,0 +2013,4,7,7,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1108,-4,0,1451,-10,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,1,0,1935,0,0,0 +2013,9,11,3,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2345,65,1,800,46,1,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,1,0,2050,-4,0,0 +2013,4,24,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,0,0,2247,-3,0,0 +2013,5,15,3,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1235,-10,0,1450,-23,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1439,5,0,1600,6,0,0 +2013,9,23,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-8,0,1130,-10,0,0 +2013,4,14,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2150,67,1,2315,63,1,0 +2013,8,8,4,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1200,3,0,1513,19,1,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1008,1,0,1538,4,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,10,0,1623,14,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2126,85,1,15,109,1,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1122,-2,0,1435,-24,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2150,-5,0,27,-7,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-3,0,1257,-6,0,0 +2013,10,30,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1030,0,0,1135,-3,0,0 +2013,7,26,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,182,1,1910,184,1,0 +2013,7,24,3,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1935,-7,0,2222,-14,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1051,-1,0,1201,-4,0,0 +2013,10,5,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-1,0,1837,2,0,0 +2013,9,10,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1335,0,0,1605,1,0,0 +2013,8,11,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1340,-3,0,1648,-13,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1655,2,0,1829,-9,0,0 +2013,10,8,2,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,915,-7,0,1655,-2,0,0 +2013,6,30,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,10,0,2215,18,1,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,-7,0,1140,21,1,0 +2013,9,2,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-12,0,718,-6,0,0 +2013,6,23,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,720,5,0,850,-2,0,0 +2013,8,19,1,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1250,6,0,1425,-5,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,90,1,2105,192,1,0 +2013,7,3,3,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-6,0,1213,-2,0,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,-8,0,1732,3,0,0 +2013,9,1,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,-6,0,1632,-6,0,0 +2013,10,21,1,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,840,10,0,1146,0,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1900,146,1,2050,155,1,0 +2013,4,21,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-6,0,1310,-19,0,0 +2013,5,30,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,52,1,2102,33,1,0 +2013,6,25,2,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1411,13,0,1520,9,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,725,-1,0,850,-9,0,0 +2013,9,23,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1310,53,1,1420,45,1,0 +2013,9,28,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-6,0,651,-10,0,0 +2013,8,12,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1255,111,1,1600,95,1,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,94,1,1950,73,1,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1415,-2,0,1639,2,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1300,-4,0,1540,-4,0,0 +2013,5,1,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-9,0,1130,-19,0,0 +2013,10,13,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,70,1,712,52,1,0 +2013,5,19,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-2,0,630,-5,0,0 +2013,10,9,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1837,-1,0,1950,-11,0,0 +2013,8,14,3,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1108,2,0,1849,-22,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,745,10,0,850,2,0,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-5,0,1204,-9,0,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1606,89,1,1909,79,1,0 +2013,5,21,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1540,-4,0,1659,-10,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1725,-5,0,1908,-7,0,0 +2013,5,3,5,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1246,-7,0,1337,-9,0,0 +2013,7,13,6,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1240,0,0,1340,6,0,0 +2013,4,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1710,-4,0,1940,-4,0,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,-2,0,1830,-10,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,88,1,2232,61,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2250,68,1,2358,81,1,0 +2013,6,5,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1100,-1,0,1200,-3,0,0 +2013,7,11,4,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1125,29,1,1406,16,1,0 +2013,4,18,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1915,48,1,2030,44,1,0 +2013,10,10,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,758,-5,0,1020,-10,0,0 +2013,8,8,4,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1425,17,1,1556,20,1,0 +2013,9,17,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,0,0,720,-7,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,130,1,903,132,1,0 +2013,10,6,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,1,0,1916,7,0,0 +2013,10,22,2,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,900,-8,0,1015,-6,0,0 +2013,9,3,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,1431,-10,0,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,900,-4,0,1213,-26,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2205,0,,2320,0,1,1 +2013,4,28,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1903,-3,0,2359,4,0,0 +2013,5,1,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-3,0,1550,-8,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1005,225,1,1232,211,1,0 +2013,6,24,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2125,4,0,2250,2,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,959,-3,0,1126,-16,0,0 +2013,5,8,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,700,1,0,745,0,0,0 +2013,7,6,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-2,0,600,-7,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1249,-5,0,1550,10,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,-5,0,1030,-16,0,0 +2013,10,24,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1448,-3,0,1655,-12,0,0 +2013,5,12,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1040,0,0,1210,-8,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,45,1,943,45,1,0 +2013,8,11,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-10,0,2150,-12,0,0 +2013,8,15,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,19,1,2206,3,0,0 +2013,5,7,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,700,-10,0,720,-11,0,0 +2013,4,11,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1903,-5,0,2115,20,1,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1915,19,1,2040,11,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2040,-1,0,2337,-10,0,0 +2013,9,5,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1339,-14,0,1951,-9,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1010,5,0,1145,-16,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-1,0,2205,-2,0,0 +2013,6,10,1,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-7,0,717,-11,0,0 +2013,4,16,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-3,0,1023,-12,0,0 +2013,5,11,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,830,0,0,945,-6,0,0 +2013,7,21,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,954,-4,0,1028,-4,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2200,14,0,2310,24,1,0 +2013,6,25,2,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,61,1,1703,110,1,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,4,0,1814,6,0,0 +2013,6,9,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2000,0,0,2135,11,0,0 +2013,10,8,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-11,0,1533,-14,0,0 +2013,10,17,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1635,33,1,1835,37,1,0 +2013,5,23,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,52,1,2110,45,1,0 +2013,6,10,1,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1415,-1,0,1656,15,1,0 +2013,7,5,5,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1940,-2,0,2255,-9,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2057,-1,0,2249,7,0,0 +2013,7,26,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1410,6,0,1510,11,0,0 +2013,9,6,5,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-10,0,630,-19,0,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2046,-1,0,2217,-12,0,0 +2013,5,31,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1842,-8,0,1916,-7,0,0 +2013,6,26,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,1,0,2105,-4,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1758,76,1,2012,60,1,0 +2013,7,10,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,300,39,1,658,40,1,0 +2013,10,20,7,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1140,-3,0,1226,-12,0,0 +2013,8,6,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-8,0,1001,9,0,0 +2013,10,26,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,952,-7,0,1035,-7,0,0 +2013,5,18,6,9E,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,2,0,1127,-19,0,0 +2013,4,29,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-4,0,1332,-4,0,0 +2013,5,22,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1513,43,1,1655,51,1,0 +2013,10,21,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-3,0,1916,-9,0,0 +2013,10,27,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1555,-6,0,1700,-7,0,0 +2013,7,28,7,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1021,16,1,1350,13,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,-9,0,1810,-24,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,-4,0,2357,-24,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1315,59,1,1825,63,1,0 +2013,6,24,1,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-5,0,1815,5,0,0 +2013,9,16,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1118,-7,0,1510,-22,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1805,-3,0,1920,-8,0,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,945,4,0,1100,5,0,0 +2013,10,31,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1115,16,1,1230,4,0,0 +2013,7,6,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,944,0,0,1035,7,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,6,0,1138,26,1,0 +2013,5,22,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-4,0,753,-14,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-5,0,1201,-7,0,0 +2013,10,29,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1835,20,1,1845,22,1,0 +2013,10,29,2,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-4,0,907,-17,0,0 +2013,6,14,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,17,1,2202,58,1,0 +2013,4,27,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-5,0,1410,-1,0,0 +2013,8,20,2,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2153,1,0,558,26,1,0 +2013,8,19,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-9,0,2304,-19,0,0 +2013,5,22,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,16,1,1626,11,0,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,745,14,0,900,9,0,0 +2013,10,10,4,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1829,4,0,2014,-3,0,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1625,3,0,1735,-16,0,0 +2013,9,2,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,2,0,1825,3,0,0 +2013,5,11,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2321,-6,0,511,-13,0,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,12,0,2034,34,1,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2211,9,0,2318,10,0,0 +2013,6,19,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,2,0,1119,-1,0,0 +2013,5,5,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,946,-3,0,1125,-16,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1505,36,1,1736,34,1,0 +2013,5,21,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1430,23,1,1640,3,0,0 +2013,9,11,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1355,-2,0,1432,5,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,9,0,943,15,1,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1630,24,1,1950,10,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1500,36,1,2210,26,1,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1503,18,1,1631,26,1,0 +2013,4,8,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1120,-6,0,1235,-7,0,0 +2013,4,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,15,1,1635,7,0,0 +2013,5,30,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1359,-10,0,1554,-32,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,1,0,1050,-17,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,30,1,830,14,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-4,0,1340,19,1,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1955,9,0,2330,2,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-2,0,925,5,0,0 +2013,8,5,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1025,-4,0,1235,5,0,0 +2013,5,10,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1555,-6,0,1712,-16,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1035,-2,0,1146,-23,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2220,27,1,2350,6,0,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1406,-4,0,1729,-6,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1835,42,1,1940,38,1,0 +2013,10,24,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,-1,0,1535,-2,0,0 +2013,8,15,4,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1454,-7,0,1708,23,1,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1645,93,1,2000,87,1,0 +2013,8,5,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1558,114,1,1717,101,1,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2155,23,1,2310,21,1,0 +2013,9,17,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1201,2,0,1415,-1,0,0 +2013,9,5,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,715,-8,0,846,2,0,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,12,0,1420,12,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,6,0,1640,1,0,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,4,0,1510,5,0,0 +2013,7,6,6,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-2,0,1916,-1,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2010,-4,0,2315,-5,0,0 +2013,5,31,5,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,833,-4,0,1054,-15,0,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1805,24,1,2056,13,0,0 +2013,10,7,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1529,206,1,1649,212,1,0 +2013,8,21,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,850,-6,0,1050,-42,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1810,-2,0,1835,-8,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1423,0,0,1515,-3,0,0 +2013,4,18,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1110,83,1,1635,73,1,0 +2013,5,25,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1200,1,0,1740,11,0,0 +2013,10,5,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,847,-10,0,0 +2013,6,7,5,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,15,1,2147,46,1,0 +2013,5,31,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,502,-8,0,620,-22,0,0 +2013,6,17,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2030,-1,0,2140,9,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,-1,0,1955,-9,0,0 +2013,5,7,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,510,-10,0,631,-26,0,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1500,-4,0,1801,-7,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1831,48,1,2154,39,1,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1055,18,1,1226,16,1,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2135,-8,0,20,-11,0,0 +2013,9,26,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1450,33,1,1810,17,1,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,645,-5,0,752,-11,0,0 +2013,7,26,5,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-4,0,2125,-35,0,0 +2013,6,11,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1130,0,0,1349,2,0,0 +2013,7,29,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-13,0,643,-15,0,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,710,-3,0,815,-8,0,0 +2013,9,15,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,-4,0,2200,-2,0,0 +2013,7,1,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2005,23,1,2210,14,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,16,1,1115,13,0,0 +2013,5,9,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,0,0,1953,-3,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-3,0,920,-10,0,0 +2013,4,17,3,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-2,0,1310,-36,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-2,0,1651,-13,0,0 +2013,10,17,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,824,-4,0,1019,-17,0,0 +2013,4,18,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,31,1,1400,23,1,0 +2013,7,5,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1746,-8,0,0 +2013,6,2,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,1205,-17,0,0 +2013,9,6,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1755,-6,0,2120,-5,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,31,1,2055,39,1,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1612,-6,0,1752,-8,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,0,0,1449,7,0,0 +2013,10,7,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-8,0,1045,-10,0,0 +2013,9,23,1,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1238,-2,0,1828,-20,0,0 +2013,8,5,1,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1757,1,0,1848,-12,0,0 +2013,10,3,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1450,29,1,1555,33,1,0 +2013,5,27,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,-12,0,2018,-22,0,0 +2013,10,11,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,7,0,930,6,0,0 +2013,6,17,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,945,53,1,1052,45,1,0 +2013,10,18,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-6,0,1920,0,0,0 +2013,7,15,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,814,10,0,1058,-1,0,0 +2013,8,5,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1034,-11,0,1310,-13,0,0 +2013,6,13,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1055,180,1,1225,164,1,0 +2013,4,20,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,735,18,1,900,3,0,0 +2013,5,19,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,819,1,0,1021,-19,0,0 +2013,9,30,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1730,-7,0,1909,-21,0,0 +2013,5,14,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-3,0,1555,-2,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1120,17,1,1247,-13,0,0 +2013,10,28,1,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1255,-3,0,1445,11,0,0 +2013,5,21,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1645,16,1,1925,2,0,0 +2013,6,3,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,935,-4,0,941,-6,0,0 +2013,10,17,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1355,30,1,1555,38,1,0 +2013,6,30,7,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1452,34,1,1832,29,1,0 +2013,6,19,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,16,1,2016,38,1,0 +2013,9,18,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,-3,0,1359,-12,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2030,23,1,5,6,0,0 +2013,10,22,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1515,-4,0,1620,12,0,0 +2013,6,8,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-5,0,1640,-2,0,0 +2013,6,21,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1810,5,0,1935,11,0,0 +2013,6,8,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-7,0,1214,7,0,0 +2013,8,9,5,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1205,-6,0,1350,-25,0,0 +2013,10,3,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,830,-7,0,907,-16,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,3,0,5,0,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1905,10,0,2111,-4,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,14,0,1617,-6,0,0 +2013,6,18,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,600,-2,0,840,1,0,0 +2013,9,22,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1306,10,0,2100,-15,0,0 +2013,8,13,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,700,3,0,815,-1,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1717,0,0,2043,-29,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2020,10,0,2110,13,0,0 +2013,6,1,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1025,-1,0,1135,13,0,0 +2013,9,20,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1053,-7,0,1219,-11,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1235,10,0,1340,-1,0,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,7,0,1643,4,0,0 +2013,9,11,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,0,0,1015,-10,0,0 +2013,7,18,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-4,0,1916,10,0,0 +2013,6,13,4,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,540,2,0,1153,-6,0,0 +2013,10,7,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1611,-4,0,1728,-13,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1920,26,1,2247,13,0,0 +2013,4,29,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,714,-4,0,813,6,0,0 +2013,6,15,6,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,2,0,1534,-12,0,0 +2013,6,29,6,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,3,0,1017,5,0,0 +2013,8,6,2,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2215,-16,0,647,10,0,0 +2013,6,22,6,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,800,-3,0,935,-22,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1955,12,0,2220,5,0,0 +2013,5,27,1,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,1,0,40,-32,0,0 +2013,8,8,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1810,18,1,1925,18,1,0 +2013,4,7,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1555,2,0,1800,-8,0,0 +2013,10,6,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1105,-8,0,1357,-29,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,910,-2,0,1330,1,0,0 +2013,10,3,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,10,0,1910,15,1,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,4,0,1700,-17,0,0 +2013,4,27,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,852,11,0,0 +2013,5,5,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1355,-12,0,1445,-13,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1753,-4,0,1915,-7,0,0 +2013,6,19,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1519,-5,0,1645,-10,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1615,-3,0,1755,-16,0,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,47,1,2135,47,1,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1219,-3,0,1519,-6,0,0 +2013,10,10,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1220,-3,0,1405,-19,0,0 +2013,8,26,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,0,0,1625,-3,0,0 +2013,6,26,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,0,0,1135,-11,0,0 +2013,7,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,740,-5,0,1140,41,1,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2203,134,1,630,121,1,0 +2013,7,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1652,-3,0,1727,2,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,855,-6,0,1106,-6,0,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1150,-3,0,1340,-13,0,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2110,22,1,2345,27,1,0 +2013,5,16,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,810,-1,0,950,-9,0,0 +2013,4,5,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1650,-5,0,1805,-1,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,66,1,2049,49,1,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1824,-2,0,29,13,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1610,4,0,1725,-16,0,0 +2013,6,27,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1637,-1,0,1958,-11,0,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,11,0,1125,7,0,0 +2013,8,3,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1235,12,0,1440,14,0,0 +2013,4,2,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-17,0,811,-32,0,0 +2013,9,16,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1600,-1,0,1805,-6,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,16,1,859,10,0,0 +2013,5,20,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,7,0,2118,4,0,0 +2013,8,29,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-1,0,900,-11,0,0 +2013,10,9,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1512,4,0,1650,18,1,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1610,1,0,1755,-17,0,0 +2013,6,18,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,2,0,1800,-3,0,0 +2013,5,22,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1755,8,0,2103,25,1,0 +2013,7,22,1,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-3,0,1225,-11,0,0 +2013,6,25,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,2,0,1315,-12,0,0 +2013,5,8,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,759,-6,0,1109,3,0,0 +2013,4,22,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1545,44,1,1710,121,1,0 +2013,6,13,4,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1102,-5,0,1514,47,1,0 +2013,5,13,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,843,-3,0,1048,-24,0,0 +2013,9,29,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1108,0,0,1641,-8,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-5,0,2344,-10,0,0 +2013,5,10,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1215,109,1,1445,96,1,0 +2013,4,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,847,-1,0,1045,-15,0,0 +2013,9,2,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,8,0,1355,2,0,0 +2013,8,9,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,0,,1230,0,1,1 +2013,9,23,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1505,-3,0,1607,-17,0,0 +2013,5,14,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-3,0,1325,-10,0,0 +2013,6,15,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1015,-1,0,1313,-7,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,745,-1,0,1140,-9,0,0 +2013,8,5,1,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-1,0,2013,-3,0,0 +2013,8,24,6,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2123,2,0,529,1,0,0 +2013,10,4,5,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1344,-3,0,1745,9,0,0 +2013,5,9,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1121,-4,0,1859,-11,0,0 +2013,5,28,2,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-4,0,2005,-25,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1855,5,0,1950,6,0,0 +2013,10,13,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1100,6,0,1220,2,0,0 +2013,4,13,6,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1710,70,1,1840,63,1,0 +2013,8,21,3,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1903,113,1,2002,120,1,0 +2013,9,15,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-4,0,750,-16,0,0 +2013,10,8,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1443,-6,0,1615,-13,0,0 +2013,8,10,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1251,7,0,1629,3,0,0 +2013,8,29,4,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,649,-6,0,1109,-5,0,0 +2013,10,31,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1015,3,0,1217,-8,0,0 +2013,7,3,3,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,2,0,756,-23,0,0 +2013,5,8,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-2,0,1335,-17,0,0 +2013,7,2,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-1,0,1600,-4,0,0 +2013,6,4,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1634,114,1,1955,103,1,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,0,0,900,-6,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,10,0,1255,27,1,0 +2013,6,3,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,10,0,2120,-9,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,12,0,1805,-6,0,0 +2013,10,14,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,128,1,2005,125,1,0 +2013,9,6,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,700,0,0,800,2,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1732,-1,0,1933,-19,0,0 +2013,4,28,7,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1805,-8,0,2044,-12,0,0 +2013,5,10,5,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1655,31,1,1820,38,1,0 +2013,6,4,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1310,-4,0,1410,-14,0,0 +2013,8,18,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,729,-4,0,0 +2013,10,25,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-3,0,2115,1,0,0 +2013,5,6,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,805,0,0,930,1,0,0 +2013,8,16,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,749,-3,0,1041,-6,0,0 +2013,10,3,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,900,-4,0,1645,-10,0,0 +2013,4,18,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1150,0,,1315,0,1,1 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2045,-4,0,2258,-19,0,0 +2013,5,4,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-6,0,1315,3,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,-1,0,1631,-22,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,835,-1,0,940,-7,0,0 +2013,10,10,4,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1259,0,0,1606,-9,0,0 +2013,10,20,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1320,-3,0,1558,-14,0,0 +2013,6,22,6,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,1,0,600,-10,0,0 +2013,4,24,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,13,0,1530,2,0,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,2,0,1355,-2,0,0 +2013,7,15,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,920,-4,0,1211,0,0,0 +2013,6,30,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,24,1,1249,15,1,0 +2013,5,19,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1459,20,1,1635,34,1,0 +2013,7,15,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,3,0,1425,25,1,0 +2013,6,29,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2016,59,1,2251,48,1,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,952,-8,0,1535,0,0,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-6,0,1351,-15,0,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,755,19,1,1020,8,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,0,0,922,2,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1005,1,0,1315,-6,0,0 +2013,9,10,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,-10,0,2150,-18,0,0 +2013,9,29,7,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-7,0,1130,-17,0,0 +2013,7,7,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1511,34,1,1722,25,1,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,1030,-11,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1400,-3,0,1625,-14,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,917,-4,0,0 +2013,5,14,2,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1854,-2,0,2144,-7,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,0,0,1349,-3,0,0 +2013,8,20,2,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-7,0,805,-27,0,0 +2013,9,29,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-6,0,929,-1,0,0 +2013,8,5,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2057,-3,0,450,-21,0,0 +2013,6,7,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2020,76,1,2245,79,1,0 +2013,9,16,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,729,-15,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,0,0,1230,-19,0,0 +2013,4,25,4,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1746,5,0,1905,29,1,0 +2013,9,29,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,-12,0,2137,-12,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2145,19,1,15,16,1,0 +2013,6,27,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,14,0,2120,23,1,0 +2013,4,21,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-5,0,1420,-21,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,5,0,2235,-8,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1245,15,1,1510,16,1,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,3,0,1608,-3,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,6,0,1315,-3,0,0 +2013,6,21,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,-2,0,1355,-12,0,0 +2013,8,4,7,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-2,0,1757,-29,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,0,0,1750,1,0,0 +2013,10,3,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,0,0,1756,0,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,7,0,1839,5,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,845,-4,0,1009,-17,0,0 +2013,9,11,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1510,-6,0,1641,-19,0,0 +2013,9,13,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1620,-4,0,1743,-11,0,0 +2013,6,12,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,636,-7,0,0 +2013,4,21,7,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1910,47,1,2050,54,1,0 +2013,6,15,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1810,-5,0,2059,-8,0,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,-5,0,1030,-31,0,0 +2013,6,5,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1945,12,0,2223,3,0,0 +2013,5,25,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-3,0,1030,-1,0,0 +2013,8,29,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-4,0,1433,-2,0,0 +2013,9,25,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1306,-5,0,1550,9,0,0 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,810,-1,0,1050,-9,0,0 +2013,8,19,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1121,11,0,1235,-15,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1135,17,1,1315,9,0,0 +2013,8,13,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1835,4,0,2155,14,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1733,-1,0,1850,0,0,0 +2013,4,15,1,EV,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,818,13,0,1114,14,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,610,3,0,655,-5,0,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,-4,0,1940,-20,0,0 +2013,5,4,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1112,-6,0,1403,-28,0,0 +2013,6,22,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1247,18,1,1342,11,0,0 +2013,10,1,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,0,0,1226,-33,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,705,0,0,938,-16,0,0 +2013,4,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,-2,0,2240,-5,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1210,6,0,1438,0,0,0 +2013,7,12,5,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,-7,0,1859,-33,0,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,0,0,956,4,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-4,0,1556,-15,0,0 +2013,9,13,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-3,0,945,-12,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1815,-2,0,2046,-11,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,23,1,2210,27,1,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,32,1,2155,27,1,0 +2013,10,30,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1245,-7,0,1417,-7,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1420,11,0,2205,13,0,0 +2013,4,17,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,32,1,1451,32,1,0 +2013,10,25,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,0,0,1122,-5,0,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2157,-6,0,2239,-8,0,0 +2013,8,2,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,710,75,1,830,97,1,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1245,24,1,1640,23,1,0 +2013,7,18,4,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,0,0,920,4,0,0 +2013,10,2,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1437,-1,0,1609,-17,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1005,-5,0,1340,-14,0,0 +2013,9,12,4,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-3,0,1634,5,0,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1825,-5,0,2050,-16,0,0 +2013,6,21,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,-4,0,1310,-6,0,0 +2013,7,8,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1334,0,,1439,0,1,1 +2013,7,30,2,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1000,0,0,1340,0,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1818,8,0,2055,-9,0,0 +2013,7,23,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-2,0,1710,3,0,0 +2013,5,7,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,935,-4,0,1050,-6,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1000,10,0,1435,14,0,0 +2013,8,2,5,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,550,-1,0,800,-9,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1215,15,1,1440,12,0,0 +2013,7,15,1,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1200,-5,0,1446,8,0,0 +2013,4,29,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1836,-5,0,2113,-9,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,-6,0,1437,-29,0,0 +2013,8,30,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1815,1,0,1905,-1,0,0 +2013,5,31,5,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,-1,0,1919,-43,0,0 +2013,7,6,6,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-7,0,1615,3,0,0 +2013,10,18,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1915,-6,0,2100,14,0,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,48,1,2025,23,1,0 +2013,9,10,2,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1231,-5,0,1545,-22,0,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,22,57,1,534,53,1,0 +2013,5,4,6,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-1,0,1305,-1,0,0 +2013,9,27,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-7,0,805,-13,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,831,-2,0,1105,-1,0,0 +2013,8,8,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,2,0,2045,-2,0,0 +2013,4,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1210,-6,0,1315,-2,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1700,-3,0,1805,0,0,0 +2013,8,21,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-7,0,714,-5,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1449,-4,0,1626,0,0,0 +2013,9,27,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,655,-2,0,800,0,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,1,0,1317,0,0,0 +2013,6,29,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,615,-8,0,1500,-5,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2040,1,0,2111,-4,0,0 +2013,7,25,4,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,917,-7,0,1130,-19,0,0 +2013,9,2,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-6,0,1455,-5,0,0 +2013,5,3,5,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1351,-2,0,1605,-10,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1307,13,0,1433,13,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1240,6,0,1815,-5,0,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-2,0,1115,-17,0,0 +2013,8,16,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-9,0,1940,-16,0,0 +2013,8,13,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,2,0,1649,-15,0,0 +2013,4,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1222,-4,0,1239,-3,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1331,18,1,2159,-18,0,0 +2013,7,4,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,6,0,1000,3,0,0 +2013,5,9,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1545,38,1,1820,40,1,0 +2013,4,16,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1105,-1,0,1153,-11,0,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1415,0,0,1525,-2,0,0 +2013,9,17,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,22,1,1425,27,1,0 +2013,5,17,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2020,-4,0,2040,30,1,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,9,0,1525,6,0,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2000,19,1,2100,13,0,0 +2013,4,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,630,1,0,820,-17,0,0 +2013,5,12,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1450,-5,0,1613,-12,0,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1525,-3,0,1832,-19,0,0 +2013,7,21,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1752,0,,1926,0,1,1 +2013,5,29,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1353,-4,0,1556,4,0,0 +2013,8,26,1,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1648,0,0,1722,-4,0,0 +2013,5,10,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1920,4,0,2303,21,1,0 +2013,7,8,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2126,23,1,7,49,1,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1010,0,0,1200,3,0,0 +2013,4,9,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1210,0,0,1340,0,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,10,0,1855,11,0,0 +2013,10,11,5,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1845,-6,0,2019,-7,0,0 +2013,10,14,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,707,-7,0,1042,3,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,935,-3,0,1118,-10,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,719,-8,0,1111,-5,0,0 +2013,9,27,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,32,1,1925,23,1,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,600,-1,0,710,4,0,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1025,18,1,1135,35,1,0 +2013,6,29,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1005,-7,0,1135,-16,0,0 +2013,10,24,4,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1825,21,1,2115,14,0,0 +2013,7,11,4,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1815,-3,0,2054,-12,0,0 +2013,9,22,7,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-8,0,543,-12,0,0 +2013,9,18,3,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,-3,0,1634,-8,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1640,-7,0,2020,-11,0,0 +2013,4,6,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1352,-18,0,0 +2013,7,29,1,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1910,-3,0,2030,-11,0,0 +2013,5,29,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,830,0,0,930,3,0,0 +2013,4,30,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1608,-6,0,1755,-4,0,0 +2013,7,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,8,0,1130,11,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,2,0,1635,1,0,0 +2013,6,21,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1724,-2,0,2030,-13,0,0 +2013,7,19,5,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,1020,-3,0,1245,5,0,0 +2013,6,28,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1222,50,1,1744,61,1,0 +2013,4,27,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,-10,0,1110,11,0,0 +2013,5,10,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,753,-5,0,0 +2013,4,7,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1637,-4,0,1849,-15,0,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1644,-4,0,1959,-27,0,0 +2013,10,24,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1055,-5,0,1705,-7,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,8,0,1919,5,0,0 +2013,7,18,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1755,2,0,2120,-38,0,0 +2013,8,20,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1527,7,0,1541,-10,0,0 +2013,9,6,5,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,825,-4,0,1113,-28,0,0 +2013,8,4,7,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-1,0,1050,3,0,0 +2013,7,3,3,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1540,15,1,1745,-1,0,0 +2013,4,23,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1725,-4,0,1749,3,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1654,-3,0,2040,-16,0,0 +2013,9,24,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2100,21,1,2220,14,0,0 +2013,7,24,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1435,4,0,1638,-28,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,25,1,1737,53,1,0 +2013,6,30,7,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,606,-2,0,735,-15,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,2145,-5,0,2313,-17,0,0 +2013,6,11,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1525,8,0,1655,-8,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1745,-5,0,1909,-6,0,0 +2013,7,13,6,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-11,0,1027,-13,0,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1725,-3,0,1839,-12,0,0 +2013,6,23,7,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,606,-5,0,755,-13,0,0 +2013,6,18,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1021,79,1,1309,74,1,0 +2013,4,30,2,9E,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1010,-9,0,1305,0,0,0 +2013,7,21,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-2,0,1829,4,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1557,-3,0,1658,3,0,0 +2013,7,23,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,25,1,755,7,0,0 +2013,5,20,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,905,-1,0,1200,1,0,0 +2013,4,26,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1955,-4,0,2347,-2,0,0 +2013,8,16,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1530,3,0,1645,-1,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2036,5,0,2145,-2,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,1,0,2250,7,0,0 +2013,8,25,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1930,17,1,2125,4,0,0 +2013,9,19,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1755,5,0,1857,-4,0,0 +2013,9,13,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-4,0,558,-11,0,0 +2013,8,9,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2035,101,1,2206,99,1,0 +2013,9,16,1,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,950,-1,0,1100,-7,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,800,-1,0,1100,7,0,0 +2013,9,23,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1520,55,1,1630,49,1,0 +2013,9,5,4,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,955,-5,0,1240,-9,0,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,13,0,2100,2,0,0 +2013,8,26,1,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,-3,0,1625,11,0,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2105,32,1,2204,16,1,0 +2013,5,1,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1300,-2,0,1540,9,0,0 +2013,10,17,4,YV,13342,General Mitchell International,Milwaukee,WI,11057,Charlotte Douglas International,Charlotte,NC,1625,7,0,1925,-6,0,0 +2013,10,22,2,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1700,-4,0,1859,-9,0,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1305,0,0,1602,-12,0,0 +2013,9,5,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1900,4,0,1930,-3,0,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1905,50,1,2335,31,1,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,2000,25,1,35,15,1,0 +2013,9,16,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1920,-7,0,2045,-7,0,0 +2013,4,10,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,810,157,1,920,210,1,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,1,0,1700,2,0,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,827,-7,0,954,-11,0,0 +2013,10,28,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-8,0,805,-8,0,0 +2013,10,7,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,2,0,1025,-11,0,0 +2013,9,23,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1735,0,0,1830,-10,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1110,7,0,1320,4,0,0 +2013,4,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,3,0,1409,22,1,0 +2013,4,18,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,22,1,2132,16,1,0 +2013,7,2,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1837,7,0,2259,-31,0,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1140,0,0,1303,10,0,0 +2013,10,20,7,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1725,-2,0,1845,-15,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,-7,0,1437,28,1,0 +2013,4,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,5,0,1345,-2,0,0 +2013,6,9,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1612,3,0,1847,11,0,0 +2013,4,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,841,-7,0,948,-10,0,0 +2013,8,15,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-5,0,1904,1,0,0 +2013,9,26,4,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,14,0,2005,4,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-6,0,1110,-11,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,14,0,1316,7,0,0 +2013,8,6,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,710,-4,0,941,-11,0,0 +2013,4,4,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-3,0,1019,8,0,0 +2013,5,25,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,1332,1,0,0 +2013,7,24,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1250,-5,0,1535,-4,0,0 +2013,4,19,5,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,124,1,704,115,1,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,821,-1,0,1010,10,0,0 +2013,4,20,6,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1305,7,0,1525,25,1,0 +2013,7,12,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1300,1,0,1325,0,0,0 +2013,10,21,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,950,0,0,1212,-1,0,0 +2013,8,15,4,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-10,0,1124,-8,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2225,-1,0,120,-4,0,0 +2013,9,12,4,OO,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1815,39,1,2220,25,1,0 +2013,8,4,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,700,-1,0,750,-6,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1945,83,1,2350,76,1,0 +2013,9,12,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1430,0,0,1515,-3,0,0 +2013,9,26,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1255,2,0,1405,4,0,0 +2013,9,22,7,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-3,0,810,-1,0,0 +2013,10,7,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1532,0,0,1543,-9,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,747,-3,0,901,-15,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1735,-1,0,2110,-17,0,0 +2013,9,24,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1028,-7,0,1157,2,0,0 +2013,9,28,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,0,0,1415,17,1,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1940,34,1,2100,25,1,0 +2013,10,23,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,106,1,2050,96,1,0 +2013,5,1,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1440,-6,0,1650,-9,0,0 +2013,7,3,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1956,12,0,2304,7,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1250,-2,0,1410,-12,0,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,644,-3,0,810,14,0,0 +2013,8,7,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,610,1,0,625,-4,0,0 +2013,4,6,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-3,0,650,-3,0,0 +2013,8,4,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1310,-6,0,2108,3,0,0 +2013,9,27,5,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1650,-9,0,2053,-13,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,930,-3,0,1040,-13,0,0 +2013,6,13,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,530,-2,0,545,-1,0,0 +2013,6,9,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11042,Cleveland-Hopkins International,Cleveland,OH,1122,3,0,1450,-8,0,0 +2013,8,8,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,650,-2,0,720,7,0,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2355,-5,0,636,-17,0,0 +2013,10,18,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,8,0,1415,-3,0,0 +2013,8,13,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1845,-2,0,2137,-13,0,0 +2013,10,2,3,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1408,18,1,1703,9,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1335,-3,0,1646,-6,0,0 +2013,4,4,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,750,-2,0,1043,-6,0,0 +2013,6,9,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2018,-9,0,2300,-24,0,0 +2013,9,14,6,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1440,20,1,2305,15,1,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1953,97,1,2008,84,1,0 +2013,4,28,7,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1530,-7,0,1849,-19,0,0 +2013,5,24,5,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1520,-2,0,1625,-1,0,0 +2013,7,29,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2128,-10,0,2200,0,0,0 +2013,8,13,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-3,0,1710,-15,0,0 +2013,5,16,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,1,0,1732,-2,0,0 +2013,10,13,7,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,626,0,0,820,-8,0,0 +2013,8,19,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-7,0,1235,-6,0,0 +2013,8,4,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1500,0,0,1655,-6,0,0 +2013,10,2,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,810,-8,0,955,-29,0,0 +2013,5,7,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,847,-4,0,1135,-6,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,844,-2,0,959,-11,0,0 +2013,7,2,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,728,-2,0,900,-20,0,0 +2013,10,30,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1705,6,0,1830,3,0,0 +2013,8,10,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-8,0,1125,-8,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-6,0,2124,3,0,0 +2013,10,23,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,645,-9,0,840,-7,0,0 +2013,5,2,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1124,2,0,1357,-2,0,0 +2013,7,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1525,0,0,1720,35,1,0 +2013,10,22,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1359,-5,0,1654,-2,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1610,-1,0,1740,-3,0,0 +2013,9,20,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1115,85,1,1245,81,1,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1615,20,1,1745,11,0,0 +2013,5,31,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,849,-1,0,0 +2013,6,24,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,2,0,1315,3,0,0 +2013,10,26,6,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1430,2,0,1710,-7,0,0 +2013,6,16,7,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,-8,0,2305,-11,0,0 +2013,10,14,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,745,-4,0,920,-11,0,0 +2013,4,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1315,-7,0,1624,-12,0,0 +2013,8,7,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,3,0,815,-8,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,630,-5,0,847,-15,0,0 +2013,4,14,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1200,-7,0,1337,-13,0,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1046,-3,0,1129,-23,0,0 +2013,5,20,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,13,0,2159,3,0,0 +2013,5,5,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1305,7,0,1420,7,0,0 +2013,7,4,4,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1019,9,0,1440,25,1,0 +2013,10,23,3,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,-12,0,2037,-18,0,0 +2013,7,18,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,733,17,1,1102,-10,0,0 +2013,5,21,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,5,0,1839,22,1,0 +2013,9,7,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1646,-7,0,1745,14,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,640,-3,0,756,-8,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,14,0,1745,12,0,0 +2013,7,31,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1531,4,0,1812,8,0,0 +2013,4,7,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,-6,0,1928,-29,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1530,59,1,1845,41,1,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1455,-1,0,2150,-11,0,0 +2013,10,23,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1529,-6,0,0 +2013,10,12,6,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,830,34,1,1005,29,1,0 +2013,8,6,2,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1910,18,1,2142,8,0,0 +2013,10,19,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-4,0,1302,-10,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,825,18,1,920,43,1,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1055,0,0,1215,-1,0,0 +2013,9,4,3,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,700,-2,0,1516,-20,0,0 +2013,9,3,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1257,-1,0,1458,-4,0,0 +2013,5,12,7,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1655,14,0,1930,3,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,830,101,1,1035,92,1,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,859,-2,0,1218,-6,0,0 +2013,7,27,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,72,1,1628,76,1,0 +2013,10,7,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,852,-3,0,1030,-13,0,0 +2013,10,3,4,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,622,-10,0,827,-8,0,0 +2013,7,22,1,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,928,9,0,958,20,1,0 +2013,8,30,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1740,-7,0,1958,-3,0,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1550,-6,0,1720,-20,0,0 +2013,5,3,5,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,-7,0,1825,-22,0,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,18,1,2057,61,1,0 +2013,6,15,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-1,0,2109,-8,0,0 +2013,8,4,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1352,-5,0,1458,-17,0,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2015,-10,0,2204,-23,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2110,33,1,2215,24,1,0 +2013,9,19,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1250,-3,0,1541,-14,0,0 +2013,4,30,2,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1540,0,0,1546,-7,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1636,0,0,2142,1,0,0 +2013,5,25,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1625,8,0,1800,-11,0,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1804,-8,0,2105,-3,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,820,66,1,1025,57,1,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-2,0,1104,-15,0,0 +2013,8,6,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,950,0,0,1050,-3,0,0 +2013,4,3,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1820,94,1,2104,89,1,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,810,-3,0,1025,-16,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1725,124,1,2235,126,1,0 +2013,10,11,5,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,832,-8,0,1110,-11,0,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2012,42,1,2336,34,1,0 +2013,6,2,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-2,0,959,-17,0,0 +2013,5,13,1,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,700,-3,0,925,7,0,0 +2013,8,3,6,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-4,0,1857,-21,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,935,1,0,1146,31,1,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,838,-2,0,1400,-14,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,-4,0,855,-10,0,0 +2013,10,19,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1450,-4,0,1550,-9,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1335,-1,0,1606,-16,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1450,35,1,1635,28,1,0 +2013,7,10,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,63,1,2005,48,1,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1755,179,1,1921,178,1,0 +2013,6,14,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,0,0,1025,3,0,0 +2013,5,18,6,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,9,0,830,13,0,0 +2013,7,29,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-2,0,1430,-3,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,19,1,1510,32,1,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,16,1,2255,6,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1135,-8,0,1327,-26,0,0 +2013,10,31,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1343,-1,0,1514,-4,0,0 +2013,6,3,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1225,0,0,1435,-9,0,0 +2013,5,21,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,-4,0,1041,-12,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,958,-2,0,1007,-14,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1314,77,1,1526,68,1,0 +2013,5,1,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-12,0,2146,-28,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2129,-4,0,2244,-3,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-2,0,915,-8,0,0 +2013,10,28,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1505,10,0,1820,-4,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-8,0,1452,5,0,0 +2013,6,5,3,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1131,-11,0,1609,-37,0,0 +2013,6,22,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,92,1,2130,81,1,0 +2013,7,24,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-4,0,1634,-16,0,0 +2013,7,7,7,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1400,11,0,1652,13,0,0 +2013,10,28,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-6,0,2122,-3,0,0 +2013,5,30,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1609,0,0,0 +2013,6,21,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1241,133,1,1415,119,1,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,5,0,1722,7,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,-4,0,1201,8,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1509,6,0,1830,17,1,0 +2013,4,11,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1540,3,0,1655,-2,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,841,-3,0,1609,1,0,0 +2013,10,31,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-8,0,1608,-28,0,0 +2013,5,21,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1330,23,1,1635,23,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,2,0,1140,-11,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1430,1,0,1710,-17,0,0 +2013,4,5,5,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,630,-3,0,739,-6,0,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1130,19,1,1315,10,0,0 +2013,10,13,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1525,-1,0,1740,-16,0,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2200,-5,0,2310,-3,0,0 +2013,8,14,3,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1208,-3,0,1311,-5,0,0 +2013,6,25,2,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,-5,0,1615,-3,0,0 +2013,8,20,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,12,0,2039,-13,0,0 +2013,4,22,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-5,0,1910,-2,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,14,0,2355,7,0,0 +2013,9,4,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1030,-4,0,1357,-23,0,0 +2013,10,9,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1200,-1,0,1420,-26,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,180,1,2115,204,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1655,14,0,1835,14,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1350,9,0,1650,7,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,620,0,0,1140,-22,0,0 +2013,8,2,5,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,4,0,900,2,0,0 +2013,5,10,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,3,0,1350,8,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1400,97,1,1650,99,1,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1240,-1,0,1800,-18,0,0 +2013,10,9,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,24,1,1300,21,1,0 +2013,10,13,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,832,1,0,0 +2013,4,3,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1547,-2,0,1719,-13,0,0 +2013,6,30,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,16,1,1905,39,1,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,-3,0,2111,-30,0,0 +2013,7,18,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,58,1,2025,56,1,0 +2013,9,2,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,0,,2245,0,1,1 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,17,1,2255,21,1,0 +2013,9,17,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1115,0,0,1959,-21,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,840,0,0,1405,-12,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,2,0,1152,-7,0,0 +2013,5,17,5,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,94,1,1935,64,1,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,-3,0,1623,31,1,0 +2013,6,8,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-6,0,2209,1,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,2255,2,0,530,-12,0,0 +2013,8,8,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,14,0,2155,18,1,0 +2013,9,15,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,805,-1,0,1034,8,0,0 +2013,7,21,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1230,-5,0,1345,-20,0,0 +2013,5,19,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,85,1,2045,85,1,0 +2013,4,2,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,810,4,0,934,3,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,0,0,1026,12,0,0 +2013,7,30,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,1503,-19,0,0 +2013,6,2,7,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1000,-5,0,1224,-18,0,0 +2013,4,28,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1203,-6,0,1526,-22,0,0 +2013,5,30,4,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1711,127,1,1850,121,1,0 +2013,10,22,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,5,0,1535,-10,0,0 +2013,10,3,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,0,0,747,-7,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1805,29,1,1950,19,1,0 +2013,4,19,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1553,11,0,1758,-4,0,0 +2013,7,22,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,800,-4,0,935,-10,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,125,1,1515,123,1,0 +2013,9,6,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,837,-9,0,1149,-3,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1340,31,1,1450,19,1,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1922,-2,0,2109,-14,0,0 +2013,7,29,1,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1710,-3,0,1835,-13,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1340,16,1,1504,9,0,0 +2013,7,25,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1207,16,1,1531,12,0,0 +2013,9,18,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,14,0,1445,57,1,0 +2013,4,9,2,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,815,0,0,1033,-15,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,847,-1,0,1035,9,0,0 +2013,7,9,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1408,-11,0,0 +2013,7,31,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-4,0,1821,4,0,0 +2013,5,8,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,98,1,2119,100,1,0 +2013,5,1,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-6,0,753,1,0,0 +2013,7,18,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-5,0,1255,-11,0,0 +2013,9,2,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-3,0,1055,-8,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,-4,0,1109,-18,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1505,0,0,1650,-11,0,0 +2013,7,4,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1708,8,0,1848,-1,0,0 +2013,7,13,6,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1450,3,0,1633,-22,0,0 +2013,9,4,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-5,0,923,-15,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,945,5,0,1200,6,0,0 +2013,9,15,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-6,0,1500,-26,0,0 +2013,5,27,1,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1520,6,0,1830,1,0,0 +2013,7,16,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1625,-4,0,1640,-4,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1946,104,1,2327,98,1,0 +2013,5,28,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1925,19,1,2025,15,1,0 +2013,10,5,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,829,-19,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,8,0,1722,6,0,0 +2013,7,19,5,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1610,72,1,1918,77,1,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1127,-1,0,1344,-28,0,0 +2013,5,5,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-2,0,1033,-16,0,0 +2013,6,26,3,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,735,-4,0,1030,-17,0,0 +2013,7,7,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-10,0,853,-14,0,0 +2013,7,12,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-6,0,1220,-28,0,0 +2013,9,10,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,6,0,1715,10,0,0 +2013,8,3,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1345,-2,0,1530,-12,0,0 +2013,9,19,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,920,2,0,1040,-2,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2130,2,0,2255,-6,0,0 +2013,4,3,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-1,0,1015,-14,0,0 +2013,4,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2142,0,0,2251,8,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1522,-1,0,1720,88,1,0 +2013,4,2,2,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1340,-3,0,1457,-1,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1530,19,1,1640,9,0,0 +2013,5,14,2,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1430,24,1,1845,-7,0,0 +2013,5,5,7,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,-1,0,1400,-9,0,0 +2013,4,21,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1502,-9,0,1523,-15,0,0 +2013,7,3,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,84,1,1650,85,1,0 +2013,6,7,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1720,3,0,1830,2,0,0 +2013,10,12,6,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1110,15,1,1355,8,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1405,-8,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,1,0,1335,0,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,824,29,1,1055,16,1,0 +2013,8,17,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-7,0,533,4,0,0 +2013,8,27,2,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,620,-4,0,850,0,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1106,-4,0,1223,-23,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1535,-5,0,1655,-9,0,0 +2013,7,10,3,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,13,0,1625,18,1,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1010,1,0,1321,-11,0,0 +2013,5,1,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1224,5,0,1522,-18,0,0 +2013,6,28,5,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,89,1,856,78,1,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1130,14,0,1240,8,0,0 +2013,9,21,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,110,-4,0,545,-19,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,745,7,0,1005,0,0,0 +2013,8,13,2,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,-4,0,1240,-34,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1830,17,1,2235,21,1,0 +2013,10,11,5,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1310,152,1,1700,160,1,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1950,17,1,2055,17,1,0 +2013,4,17,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-4,0,915,-17,0,0 +2013,10,7,1,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,-5,0,556,-11,0,0 +2013,6,10,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,129,1,2130,130,1,0 +2013,5,8,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,8,0,2211,2,0,0 +2013,6,23,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,-1,0,1040,4,0,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,815,8,0,930,11,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1100,24,1,1315,24,1,0 +2013,5,6,1,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1610,-8,0,1752,-2,0,0 +2013,10,30,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,31,1,1740,23,1,0 +2013,6,27,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,900,4,0,1455,16,1,0 +2013,4,11,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,908,70,1,1418,97,1,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1005,5,0,1130,6,0,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-2,0,2229,2,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-2,0,1341,8,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,18,1,1816,-3,0,0 +2013,7,19,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,-5,0,1114,-3,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1754,41,1,2013,29,1,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,-5,0,920,-8,0,0 +2013,8,15,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-2,0,1020,-1,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1655,0,0,1826,-8,0,0 +2013,9,12,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1830,-3,0,2115,-2,0,0 +2013,9,2,1,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,705,-4,0,1010,-24,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2018,8,0,2240,-13,0,0 +2013,5,31,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,8,0,2140,-4,0,0 +2013,9,3,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-4,0,1748,-9,0,0 +2013,9,10,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1915,-3,0,2205,-3,0,0 +2013,9,18,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-6,0,920,-13,0,0 +2013,5,18,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,-2,0,1150,-14,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,6,0,2352,-15,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1645,27,1,1915,28,1,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1853,-12,0,2018,-9,0,0 +2013,10,21,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1635,6,0,1835,-3,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-3,0,2020,3,0,0 +2013,6,22,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,655,-7,0,1010,-21,0,0 +2013,7,8,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1934,9,0,2044,-13,0,0 +2013,6,16,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,705,-2,0,935,-1,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-3,0,755,-15,0,0 +2013,9,8,7,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,-3,0,1125,-7,0,0 +2013,5,27,1,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1155,-4,0,1430,-14,0,0 +2013,5,13,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1935,-6,0,2045,-21,0,0 +2013,9,8,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-10,0,805,-19,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1110,2,0,1455,-8,0,0 +2013,9,10,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1000,6,0,1318,-3,0,0 +2013,5,10,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-9,0,910,-36,0,0 +2013,6,27,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,-5,0,1413,-1,0,0 +2013,8,17,6,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1219,-6,0,1421,-28,0,0 +2013,8,20,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1150,14,0,1350,-7,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,600,0,0,715,-9,0,0 +2013,5,26,7,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,5,0,1950,-1,0,0 +2013,6,16,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,13,0,1555,16,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,21,1,1400,27,1,0 +2013,5,25,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,720,-1,0,845,-10,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,758,2,0,1047,-8,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1430,8,0,1535,4,0,0 +2013,8,28,3,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,936,-5,0,1231,6,0,0 +2013,5,13,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,10,0,1445,18,1,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-1,0,1832,1,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1823,0,0,2100,-12,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-1,0,1305,-9,0,0 +2013,7,20,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1400,7,0,1505,7,0,0 +2013,7,18,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,953,-5,0,1121,-15,0,0 +2013,7,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1515,-3,0,1726,-3,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,800,-5,0,906,-13,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,0,0,1500,-5,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,935,-7,0,1113,-34,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1735,14,0,1930,25,1,0 +2013,5,5,7,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1546,-10,0,1830,2,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-1,0,1525,4,0,0 +2013,8,23,5,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1910,-7,0,1955,-5,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,827,-4,0,850,2,0,0 +2013,7,30,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,1,0,1250,-20,0,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,6,0,1030,10,0,0 +2013,5,5,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1745,-3,0,2156,-9,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1805,-2,0,1935,1,0,0 +2013,4,29,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1710,-2,0,1745,-12,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,950,-4,0,1122,-13,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1525,12,0,1620,11,0,0 +2013,4,23,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1145,11,0,1450,12,0,0 +2013,4,15,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,910,13,0,1055,58,1,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,22,1,1600,6,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,-2,0,1330,11,0,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1440,-6,0,1608,-15,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,-3,0,750,-7,0,0 +2013,10,14,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,1958,-10,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1950,-7,0,2244,-16,0,0 +2013,6,17,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,105,1,1115,140,1,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,2005,60,1,2349,80,1,0 +2013,7,31,3,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1110,-2,0,1222,1,0,0 +2013,8,7,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-4,0,958,2,0,0 +2013,7,23,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1745,-3,0,1900,-20,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,0,0,1350,4,0,0 +2013,6,2,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1721,-7,0,1830,-13,0,0 +2013,9,22,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-6,0,1416,-4,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2045,50,1,519,41,1,0 +2013,6,25,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,58,1,930,63,1,0 +2013,6,15,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,0,0,1232,11,0,0 +2013,7,15,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1110,24,1,1310,32,1,0 +2013,4,1,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2030,-10,0,2335,-6,0,0 +2013,7,1,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,950,-4,0,1055,1,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,-1,0,950,-10,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2020,-3,0,2335,-4,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,710,5,0,1002,-11,0,0 +2013,5,27,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,782,1,645,787,1,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1930,0,0,2100,-13,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,1,0,1107,11,0,0 +2013,8,19,1,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,908,-6,0,1400,7,0,0 +2013,7,19,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,50,1,826,31,1,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,-5,0,2107,-3,0,0 +2013,7,14,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1650,0,0,1755,-3,0,0 +2013,8,12,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-8,0,1315,-20,0,0 +2013,5,15,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,0,0,1246,-9,0,0 +2013,6,26,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,0,,1411,0,1,1 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2225,-8,0,2357,-17,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,-3,0,2235,-5,0,0 +2013,5,18,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-2,0,1330,-18,0,0 +2013,10,20,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,2,0,2100,30,1,0 +2013,9,16,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-3,0,1425,-2,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2020,29,1,2110,37,1,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2150,40,1,2250,30,1,0 +2013,5,20,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,0,0,910,-3,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1930,22,1,5,22,1,0 +2013,10,24,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,22,1,1435,11,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1633,0,0,1817,11,0,0 +2013,6,4,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,759,-9,0,1405,-35,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2005,-4,0,2204,4,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,7,0,2055,9,0,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,702,3,0,805,8,0,0 +2013,9,3,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-6,0,2020,-12,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1450,7,0,1518,-8,0,0 +2013,7,31,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,5,0,756,1,0,0 +2013,10,22,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-5,0,1453,-14,0,0 +2013,10,11,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,927,37,1,1141,57,1,0 +2013,9,6,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-4,0,740,-6,0,0 +2013,6,11,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,-1,0,905,-8,0,0 +2013,5,21,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,-4,0,2105,-1,0,0 +2013,9,9,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1749,-8,0,1927,-22,0,0 +2013,8,5,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1435,0,0,1638,-18,0,0 +2013,4,6,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-6,0,1405,-11,0,0 +2013,4,19,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-6,0,1721,11,0,0 +2013,9,11,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-6,0,1755,-5,0,0 +2013,6,29,6,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,836,69,1,1023,66,1,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,9,0,1630,34,1,0 +2013,4,27,6,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-1,0,1042,0,0,0 +2013,8,15,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,-9,0,1815,-13,0,0 +2013,9,22,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,18,1,30,14,0,0 +2013,10,7,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1812,-12,0,1912,-3,0,0 +2013,9,29,7,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1510,-7,0,1750,-17,0,0 +2013,7,16,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1231,4,0,1322,3,0,0 +2013,5,5,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-7,0,625,-7,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-1,0,1925,-16,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1455,-2,0,1714,13,0,0 +2013,7,28,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,950,-3,0,1243,26,1,0 +2013,9,6,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,-15,0,2052,-27,0,0 +2013,5,22,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,936,-7,0,1040,-27,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1735,-1,0,1835,-2,0,0 +2013,5,26,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1220,7,0,1340,-2,0,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2115,-2,0,25,-8,0,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1635,56,1,1833,43,1,0 +2013,8,21,3,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,-5,0,2130,-10,0,0 +2013,5,19,7,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1940,-3,0,2125,8,0,0 +2013,4,8,1,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1205,1,0,1420,-3,0,0 +2013,6,18,2,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1710,4,0,2157,-19,0,0 +2013,8,26,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1619,-8,0,1728,-23,0,0 +2013,10,1,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1004,-2,0,1352,-14,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,1,0,1455,9,0,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,-1,0,1830,8,0,0 +2013,8,30,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-8,0,1835,-27,0,0 +2013,7,3,3,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,15,1,1930,10,0,0 +2013,7,14,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1615,14,0,1710,-5,0,0 +2013,7,19,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-7,0,1628,-18,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,13,0,1000,14,0,0 +2013,9,13,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-1,0,712,9,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,2,0,1140,0,0,0 +2013,9,3,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,832,-9,0,921,-15,0,0 +2013,10,17,4,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1100,-5,0,1335,-20,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1140,37,1,1400,19,1,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-4,0,1121,0,0,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,750,2,0,1009,-3,0,0 +2013,7,12,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1925,12,0,2000,18,1,0 +2013,8,18,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1710,8,0,1952,2,0,0 +2013,7,10,3,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1629,125,1,1937,102,1,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1346,6,0,1755,0,0,0 +2013,7,2,2,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,0,,1950,0,1,1 +2013,6,5,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1130,-3,0,1406,3,0,0 +2013,9,29,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-2,0,1205,5,0,0 +2013,7,2,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1215,-2,0,1512,-4,0,0 +2013,4,4,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-6,0,1923,-5,0,0 +2013,7,22,1,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-1,0,820,-8,0,0 +2013,9,26,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-4,0,2102,-7,0,0 +2013,4,12,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-4,0,2110,11,0,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2305,4,0,729,3,0,0 +2013,5,24,5,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1120,162,1,1354,152,1,0 +2013,6,26,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,630,-6,0,930,-12,0,0 +2013,9,29,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1110,4,0,1200,5,0,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2146,-3,0,2321,-24,0,0 +2013,10,1,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-5,0,1930,-22,0,0 +2013,7,11,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,2,0,1520,-5,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1745,0,0,2033,-18,0,0 +2013,10,17,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,715,-2,0,1424,23,1,0 +2013,7,29,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1750,8,0,1952,10,0,0 +2013,6,19,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1744,20,1,2030,23,1,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1419,-3,0,1659,8,0,0 +2013,4,15,1,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,-5,0,1911,-4,0,0 +2013,9,23,1,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,745,0,0,935,-17,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1825,-3,0,2037,-24,0,0 +2013,4,1,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,920,-4,0,1025,-4,0,0 +2013,4,21,7,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1022,-11,0,1310,-22,0,0 +2013,4,4,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,925,-3,0,935,0,0,0 +2013,5,26,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-9,0,1135,6,0,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,-11,0,2359,-18,0,0 +2013,6,25,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1906,85,1,2242,93,1,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1834,4,0,2000,-1,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,-9,0,2304,-27,0,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,928,-6,0,1131,-21,0,0 +2013,8,19,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1437,34,1,1454,23,1,0 +2013,5,30,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,-10,0,809,-11,0,0 +2013,9,2,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1935,14,0,2210,11,0,0 +2013,6,18,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,625,0,0,801,-13,0,0 +2013,5,18,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,-1,0,1733,0,0,0 +2013,4,23,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,-6,0,1530,6,0,0 +2013,6,30,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1703,12,0,1840,5,0,0 +2013,4,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-8,0,919,5,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-6,0,2026,-4,0,0 +2013,7,21,7,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-6,0,1213,-6,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1738,-2,0,1853,-6,0,0 +2013,6,13,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,847,-2,0,1144,-7,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-6,0,1018,-13,0,0 +2013,4,1,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,13,0,1838,7,0,0 +2013,10,29,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1540,1,0,1729,3,0,0 +2013,9,5,4,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-4,0,1855,-8,0,0 +2013,5,29,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-9,0,1639,6,0,0 +2013,4,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1205,2,0,1440,-6,0,0 +2013,6,23,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,133,1,2010,119,1,0 +2013,5,17,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1525,32,1,1720,34,1,0 +2013,9,29,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1211,-6,0,1455,-10,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,-5,0,832,-10,0,0 +2013,5,31,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,605,0,0,715,-2,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,810,-1,0,910,-5,0,0 +2013,7,17,3,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,620,-6,0,914,-5,0,0 +2013,10,3,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1727,0,,2055,0,1,1 +2013,5,7,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,0,0,1947,28,1,0 +2013,7,26,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13244,Memphis International,Memphis,TN,135,-1,0,737,-13,0,0 +2013,9,7,6,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,900,-3,0,1012,-11,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1526,-2,0,1654,-22,0,0 +2013,6,29,6,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1750,7,0,1840,7,0,0 +2013,6,17,1,9E,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,645,0,0,821,10,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,833,-4,0,936,0,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1905,27,1,55,27,1,0 +2013,5,30,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,749,-5,0,925,-8,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,-2,0,2359,-15,0,0 +2013,10,9,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1218,0,0,1333,3,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,635,2,0,1058,6,0,0 +2013,5,16,4,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1315,-10,0,1616,1,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,935,22,1,1100,27,1,0 +2013,7,12,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1315,1,0,1440,4,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,8,0,910,24,1,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,640,-1,0,750,0,0,0 +2013,9,2,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-10,0,1917,-12,0,0 +2013,8,1,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,-4,0,1230,-9,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1355,4,0,1650,12,0,0 +2013,4,30,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,810,-4,0,956,14,0,0 +2013,5,13,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,11,0,1600,114,1,0 +2013,6,10,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1855,-3,0,2206,-3,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2150,3,0,25,-6,0,0 +2013,4,22,1,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,1955,0,0,2235,7,0,0 +2013,9,12,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-9,0,1043,6,0,0 +2013,8,2,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1150,-7,0,1306,0,0,0 +2013,7,25,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,540,-6,0,625,-11,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,12,0,1730,11,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1240,-1,0,1420,-21,0,0 +2013,5,23,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1408,14,0,1555,14,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-7,0,1005,-17,0,0 +2013,8,8,4,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,-4,0,1240,-15,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,726,-2,0,1026,6,0,0 +2013,9,27,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1535,-4,0,1847,-14,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-2,0,1402,-23,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,-1,0,1938,-6,0,0 +2013,10,6,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,1517,-7,0,0 +2013,4,18,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1710,28,1,1830,23,1,0 +2013,7,17,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,900,-8,0,1455,22,1,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,6,0,1635,-5,0,0 +2013,9,19,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1000,4,0,1607,33,1,0 +2013,9,12,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1535,2,0,1707,-8,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-1,0,1320,-11,0,0 +2013,6,23,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1703,60,1,1840,94,1,0 +2013,10,29,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1037,13,0,1324,0,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,153,1,1555,146,1,0 +2013,8,21,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,-7,0,841,-22,0,0 +2013,6,25,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1704,42,1,2004,57,1,0 +2013,4,28,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1510,5,0,2345,3,0,0 +2013,6,13,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,-1,0,1440,-2,0,0 +2013,4,24,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,955,24,1,1125,21,1,0 +2013,10,15,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-4,0,1431,-12,0,0 +2013,10,19,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1135,7,0,1230,2,0,0 +2013,4,22,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,-3,0,1135,-7,0,0 +2013,4,10,3,EV,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1657,-2,0,1917,-14,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1250,73,1,1352,62,1,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,-3,0,1955,-14,0,0 +2013,7,14,7,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,0,0,1515,-3,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1540,14,0,1730,-4,0,0 +2013,8,8,4,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-1,0,1019,11,0,0 +2013,5,23,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-5,0,638,-11,0,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,835,15,1,1405,10,0,0 +2013,10,30,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-4,0,1113,-9,0,0 +2013,6,23,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,42,1,1313,32,1,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,0,0,1944,-8,0,0 +2013,7,10,3,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,37,1,629,35,1,0 +2013,5,8,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1555,9,0,1747,12,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1749,-1,0,1911,-14,0,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1735,32,1,2022,46,1,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1759,-5,0,2053,-12,0,0 +2013,7,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,945,-2,0,1105,-2,0,0 +2013,10,15,2,FL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1037,27,1,1332,15,1,0 +2013,7,19,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-3,0,747,-4,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2002,63,1,2101,56,1,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,2005,-6,0,4,-17,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1350,-2,0,1603,-4,0,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-6,0,1130,-17,0,0 +2013,9,15,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1210,-2,0,1300,-4,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1350,32,1,1603,52,1,0 +2013,9,27,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-3,0,849,-4,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,15,1,2206,29,1,0 +2013,10,2,3,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-4,0,1010,-9,0,0 +2013,9,28,6,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-4,0,1753,-19,0,0 +2013,6,7,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,630,36,1,840,28,1,0 +2013,8,2,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1802,32,1,2017,19,1,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1515,16,1,1726,26,1,0 +2013,9,12,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1235,-11,0,1457,5,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,234,1,2040,218,1,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1040,0,0,1310,7,0,0 +2013,5,2,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,13,0,935,43,1,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-2,0,1918,1,0,0 +2013,7,15,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-5,0,2020,-1,0,0 +2013,9,22,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-5,0,1449,-14,0,0 +2013,6,28,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2020,198,1,2105,205,1,0 +2013,9,23,1,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1825,6,0,2105,2,0,0 +2013,10,8,2,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1050,-4,0,1420,-9,0,0 +2013,7,24,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2257,-8,0,704,-12,0,0 +2013,4,29,1,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1630,3,0,1805,-20,0,0 +2013,5,17,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,13,0,1414,21,1,0 +2013,7,9,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,0,0,1104,15,1,0 +2013,7,31,3,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,30,1,1640,20,1,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,0,0,745,2,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1520,9,0,1800,5,0,0 +2013,7,23,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1135,25,1,1235,15,1,0 +2013,7,15,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,941,7,0,1220,6,0,0 +2013,4,10,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,1035,43,1,0 +2013,7,31,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,-1,0,2216,-23,0,0 +2013,8,11,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,1404,-8,0,0 +2013,6,20,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,0,0,1424,-1,0,0 +2013,9,20,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1855,-1,0,2000,0,0,0 +2013,4,2,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-9,0,1345,-8,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1829,7,0,2148,-32,0,0 +2013,4,20,6,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,945,-5,0,1103,0,0,0 +2013,10,19,6,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,840,20,1,1015,23,1,0 +2013,4,3,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,13,0,2000,4,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1100,-6,0,1330,2,0,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,37,1,2135,26,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1440,35,1,1755,32,1,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,180,1,1730,177,1,0 +2013,6,5,3,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-8,0,1005,-8,0,0 +2013,8,12,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,945,30,1,1126,30,1,0 +2013,9,29,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1709,-2,0,1842,-9,0,0 +2013,6,5,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1956,1,0,2241,-15,0,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,13,0,1745,10,0,0 +2013,7,7,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1605,61,1,1731,45,1,0 +2013,4,13,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1754,18,1,1918,21,1,0 +2013,5,27,1,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1110,-8,0,1328,-13,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-1,0,2130,-6,0,0 +2013,8,27,2,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1425,1,0,1615,10,0,0 +2013,8,21,3,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,914,113,1,1056,91,1,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1750,3,0,2040,9,0,0 +2013,8,23,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,8,0,2130,7,0,0 +2013,8,16,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,-1,0,805,-5,0,0 +2013,4,24,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,15,1,1320,22,1,0 +2013,5,25,6,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,740,1,0,1028,4,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2122,179,1,2344,174,1,0 +2013,6,21,5,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,801,-1,0,936,-9,0,0 +2013,5,22,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-5,0,909,22,1,0 +2013,9,6,5,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1740,4,0,2010,10,0,0 +2013,8,14,3,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,715,2,0,1000,2,0,0 +2013,10,23,3,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,1,0,1634,-11,0,0 +2013,5,23,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1704,0,,1955,0,1,1 +2013,10,28,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-5,0,1529,-1,0,0 +2013,8,13,2,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,-8,0,44,-5,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1545,-4,0,1829,46,1,0 +2013,8,20,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,855,22,1,1115,8,0,0 +2013,6,6,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,32,1,2226,31,1,0 +2013,9,11,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,59,-5,0,557,-17,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,2,0,1116,6,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1850,95,1,1950,156,1,0 +2013,9,24,2,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,820,-9,0,1205,-24,0,0 +2013,7,15,1,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,3,0,1025,-38,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1000,-7,0,0 +2013,9,2,1,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,37,1,2005,29,1,0 +2013,10,12,6,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,955,-6,0,1240,-6,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1613,8,0,1754,-8,0,0 +2013,5,2,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,6,0,1919,16,1,0 +2013,4,1,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1839,13,0,2015,24,1,0 +2013,7,24,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1310,-11,0,1432,-21,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2107,31,1,2323,0,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2201,9,0,2228,-6,0,0 +2013,10,2,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,0,0,1705,-13,0,0 +2013,8,11,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,51,1,2135,51,1,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,800,-5,0,847,-2,0,0 +2013,6,4,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,26,1,2011,21,1,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,18,1,1332,16,1,0 +2013,10,1,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1709,-5,0,2002,18,1,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-3,0,1305,-16,0,0 +2013,7,8,1,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,545,0,0,845,-4,0,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1120,7,0,1602,13,0,0 +2013,10,28,1,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1215,-6,0,1329,-15,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1355,9,0,1520,-1,0,0 +2013,10,28,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1429,20,1,1610,17,1,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1500,-1,0,1615,-5,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1712,-1,0,2022,7,0,0 +2013,10,17,4,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,3,0,1405,1,0,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1824,-1,0,2129,-39,0,0 +2013,4,23,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,935,-1,0,1110,-13,0,0 +2013,9,1,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1420,-3,0,1614,-16,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,715,-2,0,810,-13,0,0 +2013,6,14,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,732,-4,0,1556,-17,0,0 +2013,9,1,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-6,0,1120,-22,0,0 +2013,4,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-6,0,1836,-17,0,0 +2013,10,21,1,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1430,-1,0,1653,-6,0,0 +2013,6,5,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,33,1,1711,48,1,0 +2013,4,30,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,800,-4,0,915,-15,0,0 +2013,9,19,4,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1204,-6,0,1805,0,0,0 +2013,5,7,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,630,56,1,1125,52,1,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1630,-3,0,1826,-11,0,0 +2013,6,23,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,1024,7,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1750,39,1,1950,38,1,0 +2013,5,4,6,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1202,-2,0,1500,7,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,-4,0,2133,-21,0,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-2,0,2000,5,0,0 +2013,8,10,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,2,0,2055,3,0,0 +2013,5,24,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-4,0,1247,-13,0,0 +2013,5,18,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1045,-2,0,1215,-7,0,0 +2013,10,27,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1051,0,0,1156,8,0,0 +2013,8,6,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,-11,0,2115,-6,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,22,1,1725,-1,0,0 +2013,7,23,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,1309,-9,0,0 +2013,4,4,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,1134,-10,0,0 +2013,10,22,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-3,0,2127,-8,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1510,4,0,1715,6,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-1,0,2346,0,0,0 +2013,8,14,3,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,815,61,1,1201,96,1,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1154,-3,0,1302,-10,0,0 +2013,6,30,7,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1333,0,0,2059,53,1,0 +2013,9,14,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,1,0,1640,-9,0,0 +2013,8,1,4,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,-5,0,915,1,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,25,1,1953,26,1,0 +2013,5,19,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1713,7,0,2058,3,0,0 +2013,9,18,3,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,-5,0,950,-9,0,0 +2013,7,3,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2056,6,0,512,1,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-4,0,908,-14,0,0 +2013,10,24,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-3,0,1453,-14,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1650,42,1,2140,66,1,0 +2013,6,27,4,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1119,32,1,1418,23,1,0 +2013,6,24,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-8,0,921,-16,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,12,0,1510,13,0,0 +2013,9,18,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,18,1,1515,4,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1905,10,0,2125,-11,0,0 +2013,5,6,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1805,12,0,1930,2,0,0 +2013,8,26,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,61,1,2055,49,1,0 +2013,9,19,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,0,0,1914,11,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1545,8,0,1655,2,0,0 +2013,4,7,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,740,0,0,905,-14,0,0 +2013,9,16,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1730,-2,0,2024,-9,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-2,0,755,3,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,0,0,1415,-6,0,0 +2013,9,15,7,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-10,0,1253,-19,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1820,19,1,2000,17,1,0 +2013,5,22,3,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,630,4,0,709,-1,0,0 +2013,5,10,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-1,0,1125,-11,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,11,0,35,-7,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,905,-7,0,1005,-13,0,0 +2013,4,26,5,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,5,0,2154,7,0,0 +2013,5,18,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1438,-11,0,1603,-24,0,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,32,1,0,606,-7,0,0 +2013,6,22,6,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-2,0,955,-11,0,0 +2013,6,23,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,0,0,1105,-14,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1531,8,0,1710,-9,0,0 +2013,8,25,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1535,3,0,1725,0,0,0 +2013,9,26,4,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1000,-7,0,1200,12,0,0 +2013,9,7,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,835,0,,1205,0,1,1 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1135,-3,0,1450,-17,0,0 +2013,7,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1530,7,0,1721,-1,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-5,0,930,1,0,0 +2013,4,17,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,0,0,1852,-4,0,0 +2013,5,24,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2030,71,1,2130,67,1,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-1,0,1047,0,0,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1923,88,1,2146,69,1,0 +2013,6,20,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,18,1,1640,12,0,0 +2013,6,25,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1503,-3,0,0 +2013,8,18,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,618,-3,0,825,9,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1235,14,0,1335,13,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1320,-1,0,1450,-7,0,0 +2013,6,30,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-1,0,847,3,0,0 +2013,4,30,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,722,-14,0,0 +2013,6,14,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-5,0,2152,4,0,0 +2013,8,17,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,24,1,2009,23,1,0 +2013,8,13,2,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,0,,912,0,1,1 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,905,-4,0,1200,-19,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,-1,0,1722,-5,0,0 +2013,9,4,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1500,-8,0,1723,5,0,0 +2013,9,15,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-6,0,1742,-10,0,0 +2013,4,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1405,15,1,1605,1,0,0 +2013,8,19,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,7,0,1106,5,0,0 +2013,6,5,3,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,534,-13,0,702,-19,0,0 +2013,8,10,6,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1215,-4,0,1512,-15,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,740,2,0,915,-4,0,0 +2013,8,27,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,800,-4,0,1100,-39,0,0 +2013,6,2,7,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-5,0,815,-11,0,0 +2013,10,16,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-7,0,2047,-16,0,0 +2013,9,30,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1140,0,0,1343,-10,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,835,-1,0,1026,-15,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,21,1,1525,16,1,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2110,14,0,2200,13,0,0 +2013,9,25,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1635,-6,0,2023,-18,0,0 +2013,10,1,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,-6,0,1628,-15,0,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1009,-1,0,1358,-10,0,0 +2013,10,14,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1330,2,0,1625,-5,0,0 +2013,8,29,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-2,0,1158,-11,0,0 +2013,4,10,3,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,628,0,0,1400,-6,0,0 +2013,5,6,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,-2,0,1135,-60,0,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,0,0,1845,-7,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,1,0,1950,-2,0,0 +2013,9,8,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,640,18,1,815,30,1,0 +2013,8,26,1,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,-5,0,2120,-18,0,0 +2013,5,14,2,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1846,-11,0,2014,-15,0,0 +2013,6,19,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,27,1,525,19,1,0 +2013,8,25,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,0,0,1630,-10,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1610,-5,0,1825,11,0,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,0,0,2104,-23,0,0 +2013,9,9,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1500,17,1,1800,23,1,0 +2013,9,15,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,16,1,2123,11,0,0 +2013,10,29,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,-4,0,2217,-23,0,0 +2013,7,2,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1615,-4,0,1703,-5,0,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,59,1,1610,51,1,0 +2013,10,17,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,33,1,2059,28,1,0 +2013,9,24,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,36,1,2150,24,1,0 +2013,10,12,6,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,703,-5,0,942,-10,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1725,15,1,2250,16,1,0 +2013,7,27,6,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,915,6,0,1710,-6,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1155,-6,0,1300,-7,0,0 +2013,10,5,6,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,38,1,1315,43,1,0 +2013,5,27,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,8,0,1819,15,1,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1430,1,0,1755,-3,0,0 +2013,8,4,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-5,0,1710,-22,0,0 +2013,8,11,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,1,0,1432,1,0,0 +2013,6,19,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,-3,0,2005,0,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,930,0,0,1202,10,0,0 +2013,8,3,6,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1700,5,0,1810,-13,0,0 +2013,4,28,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1959,-8,0,2130,-26,0,0 +2013,10,24,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1215,1,0,1320,-14,0,0 +2013,8,6,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1900,-1,0,2025,23,1,0 +2013,4,29,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,88,1,1228,74,1,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1620,9,0,1810,8,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,605,-1,0,1025,-12,0,0 +2013,7,25,4,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-4,0,1914,-3,0,0 +2013,10,8,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1615,-7,0,1905,2,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1225,38,1,1334,26,1,0 +2013,4,24,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1105,0,,1503,0,1,1 +2013,4,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-6,0,1823,-19,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,-4,0,858,-1,0,0 +2013,5,3,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,-6,0,1347,-2,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,840,-2,0,1030,-2,0,0 +2013,7,8,1,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,-6,0,1255,-18,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,-2,0,1944,6,0,0 +2013,4,8,1,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,3,0,2129,-12,0,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,-7,0,2201,6,0,0 +2013,10,26,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-3,0,825,-14,0,0 +2013,7,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2125,9,0,10,27,1,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,829,-2,0,0 +2013,4,13,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,20,1,1920,13,0,0 +2013,7,8,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2100,-8,0,2341,-21,0,0 +2013,4,9,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1835,6,0,2054,-8,0,0 +2013,5,29,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-1,0,1650,-4,0,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,950,4,0,1745,0,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1900,7,0,2159,-8,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,819,-9,0,1430,-26,0,0 +2013,7,7,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-2,0,1529,16,1,0 +2013,4,9,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-1,0,1656,3,0,0 +2013,10,15,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,825,-1,0,920,-3,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,655,-4,0,825,-17,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,725,-4,0,906,-17,0,0 +2013,4,5,5,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2050,4,0,2323,-4,0,0 +2013,4,22,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-4,0,1015,-7,0,0 +2013,9,9,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,845,-3,0,1053,-10,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1815,9,0,2052,12,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-4,0,1235,-11,0,0 +2013,8,24,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1356,-5,0,1435,-7,0,0 +2013,6,11,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-2,0,2111,3,0,0 +2013,4,12,5,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,147,1,1815,148,1,0 +2013,7,24,3,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1319,-18,0,1500,-16,0,0 +2013,8,11,7,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,720,3,0,845,-13,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2020,-2,0,2335,-13,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,9,0,1830,11,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2015,59,1,2120,57,1,0 +2013,6,8,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,725,55,1,905,28,1,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1519,-3,0,1745,13,0,0 +2013,8,6,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,600,-6,0,711,-16,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1631,17,1,1855,17,1,0 +2013,9,7,6,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,930,-2,0,1150,0,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1131,1,0,1257,-2,0,0 +2013,4,26,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,24,1,1900,38,1,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-1,0,1507,-5,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,920,-2,0,1100,-7,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1805,-1,0,2022,-22,0,0 +2013,8,6,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,745,12,0,1145,1,0,0 +2013,7,25,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1856,26,1,2140,24,1,0 +2013,6,27,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1735,13,0,1900,17,1,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,-2,0,1904,-10,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1940,46,1,2235,32,1,0 +2013,5,18,6,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-10,0,1300,-2,0,0 +2013,5,10,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,16,1,1930,32,1,0 +2013,5,21,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,,1350,0,1,1 +2013,6,21,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,0,0,2050,-1,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,0,0,1356,-14,0,0 +2013,4,4,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1740,-2,0,2044,-24,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1425,-4,0,1759,-6,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2156,-7,0,2308,-19,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,630,-5,0,755,-18,0,0 +2013,4,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,730,-6,0,1025,-15,0,0 +2013,8,29,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1828,-8,0,2034,-8,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1410,20,1,1725,13,0,0 +2013,8,25,7,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1230,-8,0,1441,-13,0,0 +2013,7,8,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,-2,0,1700,-6,0,0 +2013,4,23,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,840,-5,0,1035,-16,0,0 +2013,8,14,3,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1230,-4,0,1450,-10,0,0 +2013,9,21,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,955,5,0,1241,5,0,0 +2013,7,19,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,87,1,1113,75,1,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,-1,0,40,-27,0,0 +2013,7,9,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1348,1,0,1510,4,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,37,1,2150,22,1,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-2,0,1120,-12,0,0 +2013,5,9,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2105,124,1,2305,98,1,0 +2013,5,17,5,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1848,62,1,2226,44,1,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1920,-1,0,2246,3,0,0 +2013,7,12,5,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,811,-4,0,1051,-8,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1420,102,1,2205,87,1,0 +2013,10,31,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1525,-5,0,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-2,0,1600,-2,0,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1112,-4,0,1246,-16,0,0 +2013,10,19,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1725,17,1,1835,2,0,0 +2013,8,10,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1555,57,1,1832,38,1,0 +2013,5,20,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1140,1,0,1315,-5,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-4,0,2150,4,0,0 +2013,6,11,2,YV,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-7,0,1901,-17,0,0 +2013,10,25,5,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1150,23,1,1545,3,0,0 +2013,10,14,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,137,1,846,152,1,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,900,-1,0,1050,5,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1245,2,0,1500,-2,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1132,-8,0,1408,-18,0,0 +2013,5,5,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1445,10,0,1600,-4,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1124,-4,0,1303,-11,0,0 +2013,4,25,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,720,0,0,1001,7,0,0 +2013,8,29,4,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,700,-8,0,1047,-14,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,815,10,0,941,-1,0,0 +2013,6,9,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,19,1,1204,16,1,0 +2013,8,15,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-4,0,815,-14,0,0 +2013,4,5,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1841,-6,0,2014,-11,0,0 +2013,9,12,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-4,0,2000,-12,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-3,0,859,-5,0,0 +2013,10,12,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1640,13,0,1830,-8,0,0 +2013,10,21,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1035,-12,0,1149,-14,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1310,-3,0,1415,-2,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1125,35,1,1645,15,1,0 +2013,10,11,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-7,0,916,-16,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-1,0,1201,-6,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,-1,0,2055,-9,0,0 +2013,4,30,2,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1010,85,1,1245,77,1,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1455,12,0,1635,6,0,0 +2013,5,9,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2025,74,1,2130,61,1,0 +2013,7,23,2,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1815,127,1,1945,110,1,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,2035,4,0,2335,-6,0,0 +2013,8,4,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,-3,0,1223,-9,0,0 +2013,7,1,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,0,0,650,-12,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1455,61,1,1745,65,1,0 +2013,10,9,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1105,3,0,1320,-18,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1315,32,1,1655,20,1,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1759,49,1,2041,36,1,0 +2013,4,3,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1655,0,0,1918,2,0,0 +2013,4,17,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1000,-4,0,1130,-19,0,0 +2013,9,9,1,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,730,12,0,1600,5,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,735,20,1,943,7,0,0 +2013,7,17,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1333,-23,0,0 +2013,10,6,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1520,-1,0,1530,-9,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1115,47,1,1310,49,1,0 +2013,6,23,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-4,0,1659,-10,0,0 +2013,7,24,3,9E,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-5,0,1706,2,0,0 +2013,7,18,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,1750,-14,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1028,0,0,1256,-20,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-3,0,1915,-26,0,0 +2013,9,26,4,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,-2,0,2255,-17,0,0 +2013,6,15,6,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1448,0,,1546,0,1,1 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,0,0,930,37,1,0 +2013,9,17,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,855,-1,0,949,-4,0,0 +2013,10,19,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,5,0,2010,-6,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1205,3,0,1305,-7,0,0 +2013,7,11,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1325,-2,0,1633,-32,0,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,0,0,1003,-7,0,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1450,14,0,1725,-3,0,0 +2013,8,5,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,5,0,1905,-25,0,0 +2013,10,23,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,-6,0,2344,42,1,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2110,32,1,2250,34,1,0 +2013,8,26,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-6,0,1858,-3,0,0 +2013,9,3,2,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,1,0,2135,-20,0,0 +2013,9,20,5,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-7,0,856,1,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2112,18,1,2224,11,0,0 +2013,5,20,1,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1700,-2,0,2011,-24,0,0 +2013,7,3,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,33,1,1837,44,1,0 +2013,7,13,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,14,0,1755,18,1,0 +2013,6,14,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-9,0,1523,-20,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1726,-6,0,1816,-5,0,0 +2013,9,3,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,640,-4,0,750,-8,0,0 +2013,4,12,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1145,-5,0,1350,-9,0,0 +2013,8,16,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,615,24,1,900,14,0,0 +2013,7,22,1,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1312,198,1,1624,190,1,0 +2013,5,6,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,709,-1,0,1531,11,0,0 +2013,7,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1736,-1,0,2134,-22,0,0 +2013,6,2,7,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1140,45,1,1333,22,1,0 +2013,7,14,7,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,-5,0,559,-11,0,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1620,-3,0,2215,8,0,0 +2013,6,21,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-6,0,733,-1,0,0 +2013,5,19,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1049,11,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2005,26,1,2130,21,1,0 +2013,6,20,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,630,-7,0,840,13,0,0 +2013,4,10,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-3,0,1915,-19,0,0 +2013,5,23,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1228,-6,0,1404,16,1,0 +2013,10,27,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1644,14,0,1809,-1,0,0 +2013,7,16,2,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,0,,1730,0,1,1 +2013,5,12,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1515,8,0,1555,-15,0,0 +2013,6,30,7,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,610,-10,0,710,-21,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2140,26,1,50,24,1,0 +2013,10,20,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,-7,0,845,14,0,0 +2013,7,31,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,548,-13,0,755,-5,0,0 +2013,4,12,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,645,-1,0,940,-14,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2000,-3,0,2317,-25,0,0 +2013,4,24,3,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,17,1,2056,-10,0,0 +2013,8,20,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,956,-1,0,1133,-15,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,840,-1,0,1230,-3,0,0 +2013,7,29,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1820,-1,0,2105,-4,0,0 +2013,5,18,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1936,-1,0,2131,-8,0,0 +2013,10,1,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-2,0,920,-1,0,0 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-10,0,1150,-7,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,940,-2,0,1605,4,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-6,0,2110,-30,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,-2,0,1541,7,0,0 +2013,6,17,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1545,-9,0,2005,-3,0,0 +2013,7,28,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1715,-4,0,2128,-6,0,0 +2013,5,7,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1450,-9,0,1650,-29,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2035,-7,0,2257,-10,0,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,545,4,0,640,-19,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,810,-4,0,1125,-6,0,0 +2013,6,20,4,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1909,24,1,2014,11,0,0 +2013,6,21,5,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,-7,0,2102,-30,0,0 +2013,5,5,7,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1400,-1,0,1653,-1,0,0 +2013,8,23,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,932,-1,0,1123,-5,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2120,-3,0,2359,-1,0,0 +2013,10,27,7,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,-3,0,1735,0,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1700,6,0,1912,-22,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1725,-4,0,2050,9,0,0 +2013,8,8,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1345,14,0,1535,0,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,-4,0,2245,-5,0,0 +2013,10,22,2,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,5,0,1542,3,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2059,-5,0,2324,-40,0,0 +2013,10,11,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1603,-7,0,1710,-3,0,0 +2013,5,16,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,715,-6,0,925,6,0,0 +2013,9,28,6,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1110,-5,0,1410,-12,0,0 +2013,8,13,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1122,-3,0,1310,-12,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1936,-2,0,2100,-23,0,0 +2013,8,7,3,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1612,25,1,43,16,1,0 +2013,5,29,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,0,0,1827,-9,0,0 +2013,9,25,3,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1854,5,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1906,27,1,2229,28,1,0 +2013,10,30,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1821,-1,0,2000,11,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1326,50,1,2154,28,1,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1832,-16,0,0 +2013,6,28,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2045,16,1,2150,5,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1705,2,0,1805,-3,0,0 +2013,5,27,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-6,0,1251,-22,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1905,122,1,2030,134,1,0 +2013,9,23,1,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1710,1,0,1935,-1,0,0 +2013,8,20,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-10,0,1333,-18,0,0 +2013,8,6,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,1013,0,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1001,0,0,1047,2,0,0 +2013,8,19,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,1020,-12,0,0 +2013,5,18,6,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1225,6,0,1545,-1,0,0 +2013,7,27,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-6,0,1033,-20,0,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1207,3,0,1531,-14,0,0 +2013,5,9,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-4,0,1855,-11,0,0 +2013,7,23,2,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,2300,0,0,700,-31,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,2105,-1,0,2320,-9,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1325,0,0,1720,-4,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1916,10,0,1,-10,0,0 +2013,9,2,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,3,0,1032,6,0,0 +2013,10,27,7,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1645,-4,0,1825,-13,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1205,3,0,1345,-4,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1025,0,0,1450,-1,0,0 +2013,8,6,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,-2,0,1255,-5,0,0 +2013,6,24,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,9,0,2125,11,0,0 +2013,5,10,5,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1155,-6,0,1430,-28,0,0 +2013,8,2,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1957,214,1,2125,196,1,0 +2013,10,6,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1119,25,1,1524,31,1,0 +2013,7,17,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1935,8,0,1955,5,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,-3,0,2139,6,0,0 +2013,9,27,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,-5,0,847,-16,0,0 +2013,4,11,4,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1720,16,1,1840,18,1,0 +2013,6,18,2,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-7,0,1537,-9,0,0 +2013,4,30,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-8,0,2134,-14,0,0 +2013,10,27,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,4,0,1910,11,0,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,600,-1,0,825,-3,0,0 +2013,5,28,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,4,0,1834,10,0,0 +2013,8,24,6,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,13,0,1830,9,0,0 +2013,4,5,5,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1842,-14,0,2135,-22,0,0 +2013,9,12,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-7,0,1515,9,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,8,0,1617,12,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2040,11,0,2240,6,0,0 +2013,5,28,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1505,14,0,1554,13,0,0 +2013,7,10,3,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1052,-8,0,1824,-19,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2333,-6,0,800,1,0,0 +2013,8,3,6,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-5,0,852,4,0,0 +2013,5,13,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1600,0,,1655,0,1,1 +2013,7,25,4,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1020,3,0,1245,2,0,0 +2013,4,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,-4,0,1140,6,0,0 +2013,10,4,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1615,-6,0,1906,-15,0,0 +2013,6,16,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,0,0,1152,-17,0,0 +2013,7,11,4,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1020,0,0,1410,-14,0,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1222,1,0,1809,-2,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,14,0,1920,6,0,0 +2013,6,15,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-4,0,1017,-16,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,10,0,1050,13,0,0 +2013,4,11,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,19,1,1730,-2,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1500,2,0,1635,-3,0,0 +2013,5,5,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1430,4,0,1525,-6,0,0 +2013,4,6,6,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1930,-2,0,2200,-9,0,0 +2013,9,26,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1529,13,0,1700,10,0,0 +2013,4,18,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,633,-22,0,0 +2013,5,24,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,730,5,0,855,5,0,0 +2013,10,6,7,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,840,-5,0,955,-7,0,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2010,-3,0,2250,-14,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,915,4,0,1200,0,0,0 +2013,7,29,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,28,1,2019,32,1,0 +2013,5,21,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,6,0,750,1,0,0 +2013,5,5,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,-13,0,1930,27,1,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1340,18,1,1555,-6,0,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,34,1,1620,25,1,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1954,3,0,2123,-6,0,0 +2013,9,11,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1520,4,0,1740,0,0,0 +2013,9,18,3,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-4,0,2100,-18,0,0 +2013,5,18,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,705,-6,0,907,-6,0,0 +2013,10,8,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,23,1,2059,15,1,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2155,16,1,2250,10,0,0 +2013,10,29,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,901,15,1,1103,7,0,0 +2013,8,19,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,39,1,2015,38,1,0 +2013,10,9,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,840,-1,0,955,-10,0,0 +2013,5,28,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,857,-5,0,1114,-21,0,0 +2013,9,6,5,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,128,1,1645,140,1,0 +2013,10,6,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1525,21,1,1635,15,1,0 +2013,8,30,5,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,810,-4,0,1100,-30,0,0 +2013,6,9,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1836,-6,0,1959,3,0,0 +2013,7,26,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-1,0,1005,-9,0,0 +2013,6,18,2,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,-2,0,1055,2,0,0 +2013,9,24,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,640,-3,0,916,1,0,0 +2013,8,16,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,-1,0,1033,-1,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,725,-3,0,1156,20,1,0 +2013,4,13,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,29,1,1140,23,1,0 +2013,9,8,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1720,22,1,1930,10,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1700,44,1,1830,50,1,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1659,0,0,2012,-46,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-3,0,2202,-2,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1235,-3,0,1457,-4,0,0 +2013,10,2,3,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1306,-4,0,1540,-12,0,0 +2013,8,24,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1745,13,0,1820,13,0,0 +2013,7,19,5,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,740,3,0,920,-24,0,0 +2013,8,5,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1526,-22,0,0 +2013,9,13,5,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1725,29,1,1835,26,1,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,900,-1,0,1120,-9,0,0 +2013,9,2,1,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1631,3,0,1945,-10,0,0 +2013,8,29,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1645,-3,0,1752,-25,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,21,1,2059,14,0,0 +2013,5,26,7,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1800,-13,0,2151,-21,0,0 +2013,9,19,4,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,900,-5,0,1157,-8,0,0 +2013,6,26,3,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,920,-1,0,1140,32,1,0 +2013,4,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1604,0,0,1826,-10,0,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,20,1,1545,16,1,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1615,-1,0,30,-9,0,0 +2013,5,8,3,9E,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1708,-5,0,2120,-16,0,0 +2013,4,8,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1857,130,1,2022,136,1,0 +2013,6,10,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1516,-5,0,1753,0,0,0 +2013,9,20,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,740,0,,900,0,1,1 +2013,4,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1410,4,0,1915,4,0,0 +2013,5,18,6,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,29,1,2233,19,1,0 +2013,7,11,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,4,0,2005,-36,0,0 +2013,7,27,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,62,1,2148,54,1,0 +2013,8,28,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1829,-8,0,1929,5,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,3,0,1520,-4,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,35,1,2019,11,0,0 +2013,8,2,5,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,23,1,1705,23,1,0 +2013,7,3,3,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1915,13,0,2140,-3,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,18,1,1625,13,0,0 +2013,8,3,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1702,-3,0,2031,-20,0,0 +2013,7,30,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,108,1,2110,125,1,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,25,1,2110,21,1,0 +2013,8,25,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-6,0,1635,-17,0,0 +2013,8,27,2,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,740,-2,0,1340,-6,0,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1020,18,1,1320,9,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1252,1,0,1352,-8,0,0 +2013,6,4,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,601,-6,0,904,-4,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1400,92,1,1605,85,1,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,5,0,2255,-4,0,0 +2013,4,8,1,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1820,8,0,2131,8,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,9,0,1245,1,0,0 +2013,5,8,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,1,0,1943,-10,0,0 +2013,5,12,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,12,0,1720,14,0,0 +2013,5,3,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2000,7,0,2110,3,0,0 +2013,9,1,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-11,0,1358,-16,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1000,12,0,1200,13,0,0 +2013,8,6,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-6,0,1531,-4,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,33,1,1915,19,1,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,800,-2,0,905,-12,0,0 +2013,10,30,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-6,0,927,-17,0,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-5,0,1310,-3,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,843,-2,0,1033,-12,0,0 +2013,10,18,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-3,0,1501,1,0,0 +2013,4,3,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1051,-25,0,0 +2013,7,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2022,5,0,12,0,0,0 +2013,7,18,4,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,925,-4,0,1750,31,1,0 +2013,4,4,4,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,0,0,1849,5,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1030,-2,0,1306,-6,0,0 +2013,9,16,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,930,1,0,1155,2,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,810,-3,0,1055,-11,0,0 +2013,8,19,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,13,0,2300,15,1,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,700,13,0,931,18,1,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-2,0,1201,21,1,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,-1,0,24,-7,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2045,27,1,2309,2,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,630,-1,0,1220,6,0,0 +2013,9,30,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1650,-12,0,1659,-26,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,0,0,2250,-13,0,0 +2013,7,18,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1135,0,0,1255,-5,0,0 +2013,9,13,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,62,1,1431,68,1,0 +2013,9,7,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1225,-1,0,1235,-1,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,730,-3,0,939,-18,0,0 +2013,5,19,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-4,0,1216,-11,0,0 +2013,9,8,7,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,-6,0,1758,-6,0,0 +2013,5,28,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-4,0,1530,-14,0,0 +2013,10,29,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1954,-3,0,2134,7,0,0 +2013,5,6,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-3,0,745,-1,0,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,7,0,15,-1,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,630,0,0,830,-8,0,0 +2013,10,13,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,845,-4,0,1205,-27,0,0 +2013,4,30,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2029,0,0,2200,-2,0,0 +2013,7,12,5,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,14,0,2145,1,0,0 +2013,5,28,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1249,-1,0,1357,4,0,0 +2013,10,20,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-5,0,800,-11,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1959,-5,0,2134,-18,0,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,-5,0,2112,-1,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1755,-1,0,2038,-25,0,0 +2013,7,12,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,759,8,0,0 +2013,5,23,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,920,-7,0,1055,-14,0,0 +2013,6,21,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-9,0,1316,-11,0,0 +2013,7,14,7,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,4,0,728,-18,0,0 +2013,7,4,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-6,0,1940,-3,0,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,839,0,0,1420,1,0,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,-5,0,2353,-12,0,0 +2013,7,25,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-4,0,1510,-22,0,0 +2013,8,15,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,-6,0,2203,-40,0,0 +2013,7,9,2,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1900,18,1,2143,65,1,0 +2013,7,31,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-4,0,1408,-5,0,0 +2013,4,8,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,640,28,1,804,27,1,0 +2013,5,25,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-3,0,955,-15,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,832,-2,0,909,-15,0,0 +2013,8,20,2,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,18,1,1345,9,0,0 +2013,8,25,7,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1535,11,0,1750,-14,0,0 +2013,4,15,1,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2257,7,0,44,-3,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1725,11,0,1850,0,0,0 +2013,6,20,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,-3,0,1725,6,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1025,1,0,1300,-12,0,0 +2013,10,17,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,839,7,0,1130,4,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-4,0,845,-4,0,0 +2013,5,8,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-6,0,810,-9,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-7,0,1133,-7,0,0 +2013,10,6,7,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1905,14,0,2105,6,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,840,-1,0,940,7,0,0 +2013,10,4,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-7,0,1735,-24,0,0 +2013,4,6,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1201,0,0,1436,-21,0,0 +2013,5,3,5,EV,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1109,-10,0,1249,0,0,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,940,-3,0,1041,-12,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,834,0,0,909,-3,0,0 +2013,8,25,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1735,-8,0,1941,-17,0,0 +2013,7,24,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,828,-2,0,1113,-7,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,8,0,2005,34,1,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-2,0,755,-7,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,24,1,1705,20,1,0 +2013,6,6,4,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,-7,0,1920,8,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,835,19,1,1235,11,0,0 +2013,9,15,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1825,1,0,2046,-5,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-2,0,1850,-2,0,0 +2013,6,3,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1353,4,0,1948,-4,0,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1754,-3,0,2051,-20,0,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1800,11,0,1905,2,0,0 +2013,9,13,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-3,0,1100,-11,0,0 +2013,9,13,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1259,38,1,1529,40,1,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,829,-5,0,1122,-19,0,0 +2013,8,6,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-4,0,736,-8,0,0 +2013,10,5,6,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1717,-4,0,1920,-23,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1540,4,0,1700,-5,0,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,905,-6,0,1329,-8,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1420,-7,0,1525,-13,0,0 +2013,6,15,6,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1455,-1,0,1710,-9,0,0 +2013,8,31,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1215,37,1,1314,42,1,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1820,1,0,1935,-8,0,0 +2013,8,24,6,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1409,-13,0,1505,-25,0,0 +2013,9,22,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1655,0,0,1744,-3,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1905,16,1,2010,14,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,845,0,0,1315,5,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2220,33,1,15,32,1,0 +2013,6,8,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-3,0,859,3,0,0 +2013,4,15,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1806,9,0,1935,-24,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,0,0,1605,-8,0,0 +2013,7,24,3,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1153,-5,0,1359,-8,0,0 +2013,6,23,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1943,0,,2113,0,1,1 +2013,9,9,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,2,0,1230,1,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1522,1,0,1654,-9,0,0 +2013,8,23,5,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,-5,0,1940,-7,0,0 +2013,4,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,833,0,0,935,-15,0,0 +2013,10,31,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-6,0,1252,-33,0,0 +2013,7,2,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,55,1,2250,42,1,0 +2013,6,15,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,4,0,754,7,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,2,0,2042,-13,0,0 +2013,9,13,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-3,0,652,-9,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,725,0,0,840,0,0,0 +2013,9,17,2,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1325,5,0,1510,-5,0,0 +2013,6,26,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,850,148,1,1140,143,1,0 +2013,9,1,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,2,0,2058,8,0,0 +2013,6,25,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1057,24,1,1259,24,1,0 +2013,4,12,5,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2013,153,1,2020,139,1,0 +2013,5,9,4,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-6,0,1603,-20,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,-1,0,1025,-3,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,8,0,1612,-2,0,0 +2013,6,13,4,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,16,1,2010,-5,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1635,73,1,1910,66,1,0 +2013,5,25,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-10,0,746,-12,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1745,127,1,2225,113,1,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1440,-2,0,1540,-14,0,0 +2013,6,16,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1230,-8,0,1558,-43,0,0 +2013,7,15,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-13,0,759,-22,0,0 +2013,7,1,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,4,0,1735,9,0,0 +2013,10,6,7,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1029,5,0,1154,-11,0,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,103,1,830,96,1,0 +2013,9,20,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1100,-3,0,1225,1,0,0 +2013,7,1,1,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,1257,55,1,1353,73,1,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1609,-2,0,1627,-6,0,0 +2013,10,30,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,11,0,1915,13,0,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1325,39,1,1940,40,1,0 +2013,6,9,7,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-10,0,1215,-20,0,0 +2013,4,22,1,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1900,44,1,2005,93,1,0 +2013,10,28,1,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,15,1,555,-6,0,0 +2013,4,7,7,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,-9,0,1730,-1,0,0 +2013,8,30,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,830,-6,0,1010,-10,0,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-4,0,1429,-2,0,0 +2013,5,16,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-7,0,1609,2,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-2,0,1709,-6,0,0 +2013,10,18,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,815,-11,0,1115,-13,0,0 +2013,7,12,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,717,1,0,0 +2013,8,12,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-1,0,826,-5,0,0 +2013,5,24,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1115,0,0,1341,-18,0,0 +2013,6,21,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1540,10,0,1655,8,0,0 +2013,10,10,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,935,-3,0,1226,1,0,0 +2013,9,21,6,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1955,1,0,2110,11,0,0 +2013,8,12,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-1,0,2115,-1,0,0 +2013,6,2,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,3,0,1856,-6,0,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,-4,0,1600,18,1,0 +2013,4,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-5,0,1600,-20,0,0 +2013,10,18,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1330,-4,0,2155,-31,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,2001,-3,0,2126,-22,0,0 +2013,4,26,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1935,0,0,2111,1,0,0 +2013,6,23,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1355,0,0,1515,-1,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1440,138,1,1634,149,1,0 +2013,6,17,1,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,6,0,2150,-11,0,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,192,1,2210,190,1,0 +2013,6,11,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1615,0,0,1715,-4,0,0 +2013,8,3,6,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1015,12,0,1313,-14,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-4,0,925,-6,0,0 +2013,10,31,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1312,-4,0,1443,-4,0,0 +2013,6,29,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,728,-1,0,0 +2013,10,21,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,647,4,0,932,9,0,0 +2013,9,30,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,2,0,2050,1,0,0 +2013,5,18,6,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1925,-4,0,2030,-5,0,0 +2013,7,13,6,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-5,0,643,-9,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1335,6,0,1515,-4,0,0 +2013,4,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1230,-5,0,1717,-4,0,0 +2013,4,28,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,9,0,1408,38,1,0 +2013,7,24,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,800,11,0,1045,9,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1615,39,1,1813,27,1,0 +2013,4,20,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,745,108,1,903,93,1,0 +2013,7,9,2,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1325,0,0,1525,-20,0,0 +2013,5,22,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2109,-1,0,2350,-18,0,0 +2013,10,20,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,740,3,0,1030,-5,0,0 +2013,6,5,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,1,0,1010,-12,0,0 +2013,4,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1925,18,1,2110,9,0,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1210,8,0,1255,23,1,0 +2013,8,2,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1705,-3,0,1935,-13,0,0 +2013,4,4,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,854,11,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,913,-7,0,1137,-6,0,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,842,-1,0,953,-4,0,0 +2013,6,20,4,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,-6,0,1800,-19,0,0 +2013,4,16,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,12,0,1205,1,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,1,0,958,1,0,0 +2013,6,25,2,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,938,9,0,1239,-1,0,0 +2013,6,12,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2200,258,1,2216,257,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,725,-7,0,906,-17,0,0 +2013,9,4,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,637,-1,0,835,-11,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1100,26,1,1200,22,1,0 +2013,8,8,4,FL,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1515,17,1,1753,-1,0,0 +2013,8,23,5,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-5,0,2027,-16,0,0 +2013,6,1,6,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1325,-1,0,1524,-18,0,0 +2013,10,5,6,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-1,0,1413,7,0,0 +2013,4,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2155,28,1,2250,23,1,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,23,1,2155,18,1,0 +2013,7,31,3,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,743,-11,0,847,-17,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,825,-1,0,920,10,0,0 +2013,6,8,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,34,1,2040,36,1,0 +2013,6,7,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1719,10,0,1829,44,1,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,-2,0,1205,-7,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-2,0,1900,-20,0,0 +2013,7,6,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,0,0,1830,19,1,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,805,0,0,1105,-5,0,0 +2013,10,24,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-10,0,756,-10,0,0 +2013,5,15,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1119,-1,0,1259,0,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2056,24,1,2222,0,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,-2,0,1310,-23,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,900,-1,0,1015,6,0,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1910,1,0,2015,1,0,0 +2013,6,17,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,45,1,1608,37,1,0 +2013,9,27,5,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1127,-3,0,1344,5,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,5,0,2050,-15,0,0 +2013,8,2,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,5,0,756,-5,0,0 +2013,7,6,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,-4,0,1912,-10,0,0 +2013,4,2,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-3,0,1355,12,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1615,9,0,2009,24,1,0 +2013,9,23,1,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,911,-13,0,1051,-19,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,10,0,1100,-1,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1910,-3,0,2045,-20,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,3,0,1350,-3,0,0 +2013,4,22,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1735,-2,0,1920,6,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1614,0,0,1653,-9,0,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,745,-7,0,1041,-25,0,0 +2013,5,21,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,-1,0,1730,-6,0,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1208,-3,0,1452,1,0,0 +2013,4,24,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,0,0,1230,3,0,0 +2013,5,4,6,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,-4,0,803,-10,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,-6,0,2147,-24,0,0 +2013,9,22,7,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1500,-6,0,1804,-13,0,0 +2013,8,18,7,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,58,1,1735,66,1,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1720,2,0,2010,-13,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,3,0,1624,1,0,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,131,1,2145,133,1,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1020,-6,0,1315,-12,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1548,1,0,1735,-17,0,0 +2013,9,18,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1255,-4,0,1505,-7,0,0 +2013,10,10,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1145,4,0,1620,-24,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-5,0,1245,-17,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1000,20,1,1210,6,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,0,0,1720,-7,0,0 +2013,4,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1044,1,0,1445,-9,0,0 +2013,7,22,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-5,0,1625,1,0,0 +2013,7,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1707,0,0,2318,0,0,0 +2013,9,19,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1242,32,1,1458,70,1,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1056,-3,0,1300,-1,0,0 +2013,10,13,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-3,0,1300,-12,0,0 +2013,8,29,4,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-6,0,1355,-14,0,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1743,31,1,2144,21,1,0 +2013,4,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-4,0,2152,14,0,0 +2013,9,26,4,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-6,0,2130,-24,0,0 +2013,8,1,4,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,830,-2,0,1026,-14,0,0 +2013,6,18,2,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1241,26,1,1423,93,1,0 +2013,5,28,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1052,13,0,1200,3,0,0 +2013,8,16,5,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,757,-16,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1906,6,0,2111,-7,0,0 +2013,10,11,5,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1628,67,1,1918,74,1,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1745,76,1,1855,87,1,0 +2013,9,5,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-8,0,1408,1,0,0 +2013,7,13,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1819,5,0,1932,-13,0,0 +2013,5,3,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,0,0,1135,-39,0,0 +2013,7,26,5,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-1,0,2215,-6,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-7,0,1151,-15,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,910,0,0,1045,-16,0,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2130,-2,0,2359,-11,0,0 +2013,7,14,7,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2015,63,1,2300,69,1,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-2,0,800,-7,0,0 +2013,10,2,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-4,0,1327,-17,0,0 +2013,5,21,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,840,7,0,900,22,1,0 +2013,7,9,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,-3,0,2108,-8,0,0 +2013,6,11,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2220,-3,0,635,-12,0,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,3,0,2323,-4,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,-2,0,1055,-6,0,0 +2013,9,5,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,-3,0,1701,-12,0,0 +2013,8,11,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,1,0,933,-2,0,0 +2013,8,8,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,0,,822,0,1,1 +2013,8,4,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,9,0,1250,2,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1550,10,0,1810,11,0,0 +2013,8,3,6,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1136,-4,0,1949,-32,0,0 +2013,6,3,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1210,-6,0,1529,-39,0,0 +2013,7,24,3,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,15,1,1600,-4,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,2000,4,0,2237,11,0,0 +2013,10,11,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1440,-4,0,1715,-22,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1331,-7,0,1724,26,1,0 +2013,10,18,5,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,740,-7,0,910,-19,0,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,16,1,1845,7,0,0 +2013,7,13,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-4,0,1755,1,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1340,6,0,1440,13,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,945,-7,0,1250,-21,0,0 +2013,4,7,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,914,-20,0,0 +2013,5,4,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,842,12,0,0 +2013,7,29,1,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,3,0,1143,-7,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1314,5,0,1545,-5,0,0 +2013,8,1,4,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,810,3,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1805,-5,0,2003,-11,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,830,2,0,1035,2,0,0 +2013,6,28,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,21,1,1140,17,1,0 +2013,8,10,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1615,-5,0,1915,-15,0,0 +2013,10,4,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,-4,0,2152,-4,0,0 +2013,6,10,1,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,700,9,0,1020,2,0,0 +2013,10,24,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,-3,0,1940,25,1,0 +2013,7,30,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,914,-9,0,1037,-11,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,835,-3,0,1259,-8,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1008,-3,0,1329,-21,0,0 +2013,10,13,7,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1815,14,0,2027,12,0,0 +2013,9,2,1,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2005,-6,0,2250,-9,0,0 +2013,8,28,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1355,6,0,1510,-6,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,-2,0,1110,-8,0,0 +2013,9,8,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1020,-1,0,1257,-5,0,0 +2013,4,4,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-4,0,810,-8,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1725,-1,0,1921,-9,0,0 +2013,7,26,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-3,0,2132,-4,0,0 +2013,10,15,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,955,-3,0,1055,-11,0,0 +2013,9,14,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,11,0,2130,4,0,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,750,-2,0,920,-17,0,0 +2013,10,4,5,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1029,-4,0,1305,-14,0,0 +2013,9,25,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1825,46,1,1900,41,1,0 +2013,7,18,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1934,0,0,2044,-18,0,0 +2013,4,1,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1800,91,1,1940,82,1,0 +2013,7,18,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,750,-6,0,855,-13,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,-3,0,1902,-11,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,945,41,1,1224,21,1,0 +2013,5,15,3,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2040,-4,0,2247,-20,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,-1,0,1320,-7,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1730,1,0,1955,-16,0,0 +2013,5,15,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1930,-3,0,2139,-9,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1544,24,1,2126,6,0,0 +2013,8,30,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1710,-7,0,1830,6,0,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,620,-4,0,935,7,0,0 +2013,10,31,4,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,715,42,1,1047,24,1,0 +2013,10,21,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-7,0,1110,-16,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,217,1,10,201,1,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,-4,0,1000,-7,0,0 +2013,10,24,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1855,-2,0,2100,-20,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1808,-5,0,2007,1,0,0 +2013,4,17,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1610,-6,0,1724,-14,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1140,-6,0,1255,-6,0,0 +2013,5,17,5,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-9,0,1001,-9,0,0 +2013,9,21,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1335,51,1,1445,45,1,0 +2013,7,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1124,-4,0,1237,-19,0,0 +2013,10,13,7,EV,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1937,-10,0,2110,-13,0,0 +2013,5,7,2,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1940,26,1,2209,38,1,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,606,-2,0,944,0,0,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1125,17,1,1325,-13,0,0 +2013,8,28,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-4,0,2058,-12,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1850,25,1,2130,31,1,0 +2013,4,7,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,759,-5,0,1050,-9,0,0 +2013,6,10,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,-3,0,1435,71,1,0 +2013,7,24,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1129,-7,0,1329,-17,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1939,2,0,2215,-14,0,0 +2013,6,24,1,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,6,0,2310,62,1,0 +2013,4,11,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,840,-2,0,1704,-23,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2215,10,0,19,-1,0,0 +2013,10,31,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,842,-18,0,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-2,0,1515,-7,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2004,3,0,2141,10,0,0 +2013,10,3,4,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1655,0,,1823,0,1,1 +2013,4,14,7,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1810,-4,0,2020,-11,0,0 +2013,8,5,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-10,0,830,-4,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2245,2,0,138,-7,0,0 +2013,9,4,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1009,-8,0,1650,-6,0,0 +2013,9,13,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2018,0,,2135,0,1,1 +2013,4,8,1,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1140,10,0,1325,11,0,0 +2013,5,8,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2055,-4,0,2220,-3,0,0 +2013,8,27,2,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1045,-2,0,1320,-4,0,0 +2013,6,2,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,-4,0,1628,-12,0,0 +2013,9,28,6,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1735,-6,0,1849,-21,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1613,-2,0,1909,-4,0,0 +2013,9,11,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,1,0,1335,-2,0,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,2,0,2016,-13,0,0 +2013,5,11,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1144,-2,0,1246,-6,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,745,-5,0,950,-11,0,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2155,-2,0,2330,6,0,0 +2013,10,19,6,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1050,-2,0,1215,-6,0,0 +2013,4,22,1,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1741,33,1,2103,32,1,0 +2013,9,13,5,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2029,-8,0,2146,-13,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2135,-9,0,2353,-12,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1620,-11,0,0 +2013,8,12,1,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,600,-6,0,719,-18,0,0 +2013,6,28,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,958,16,1,1230,22,1,0 +2013,9,3,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,24,1,1955,57,1,0 +2013,8,19,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,27,1,1810,7,0,0 +2013,5,27,1,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1519,2,0,1651,-3,0,0 +2013,10,30,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-8,0,1252,-8,0,0 +2013,8,20,2,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-5,0,910,-2,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-4,0,2204,-14,0,0 +2013,5,28,2,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1351,47,1,1605,37,1,0 +2013,4,29,1,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,530,-6,0,938,-6,0,0 +2013,10,15,2,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1535,-11,0,1653,-12,0,0 +2013,7,20,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,-2,0,810,-4,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1920,-3,0,2104,-8,0,0 +2013,9,24,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,735,-4,0,855,-13,0,0 +2013,5,15,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-6,0,1220,-1,0,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,711,-8,0,1105,-14,0,0 +2013,4,16,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,915,-7,0,1215,-8,0,0 +2013,8,15,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,902,-5,0,955,-14,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,8,0,1520,2,0,0 +2013,6,19,3,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,959,-2,0,1259,-21,0,0 +2013,8,10,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1320,24,1,1554,17,1,0 +2013,7,19,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1731,14,0,2009,5,0,0 +2013,4,3,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1430,7,0,1530,5,0,0 +2013,10,8,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2017,-6,0,2107,-12,0,0 +2013,10,31,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1740,68,1,1900,56,1,0 +2013,4,2,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1945,-4,0,2120,-33,0,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,725,-6,0,845,-7,0,0 +2013,6,21,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-5,0,1845,-7,0,0 +2013,8,3,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1635,-1,0,1944,5,0,0 +2013,4,23,2,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2100,-5,0,2345,-8,0,0 +2013,10,29,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2045,-3,0,2145,-9,0,0 +2013,5,27,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,57,1,1510,45,1,0 +2013,4,21,7,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,8,0,1505,-7,0,0 +2013,7,23,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,725,63,1,930,58,1,0 +2013,10,14,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-10,0,2055,-1,0,0 +2013,9,19,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-1,0,1030,-1,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1900,23,1,2040,10,0,0 +2013,10,31,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1044,-4,0,1149,-5,0,0 +2013,8,1,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,555,-6,0,715,-3,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2159,0,0,2301,-25,0,0 +2013,4,13,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-8,0,1234,3,0,0 +2013,8,17,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,830,2,0,0 +2013,9,12,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-7,0,1130,2,0,0 +2013,9,18,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1910,48,1,2030,45,1,0 +2013,5,24,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,9,0,1350,18,1,0 +2013,5,9,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,645,-3,0,916,41,1,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,830,-1,0,1100,-17,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,17,1,2055,8,0,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1945,19,1,2105,23,1,0 +2013,4,11,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,657,23,1,801,18,1,0 +2013,5,6,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,851,0,,955,0,1,1 +2013,4,6,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,1401,-18,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,13,0,2155,16,1,0 +2013,9,2,1,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1005,-6,0,1305,-23,0,0 +2013,5,19,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1835,9,0,1950,7,0,0 +2013,4,5,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,6,0,1636,0,0,0 +2013,8,19,1,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,-6,0,1811,-7,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1630,64,1,1910,50,1,0 +2013,10,25,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-5,0,1027,-13,0,0 +2013,9,10,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,910,-6,0,1055,-18,0,0 +2013,6,27,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1435,-1,0,1555,-11,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2105,-4,0,2352,-9,0,0 +2013,4,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1552,18,1,1739,14,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,3,0,1715,-1,0,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2232,17,1,646,12,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,935,15,1,1100,13,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1829,73,1,2259,114,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,0,0,2150,-6,0,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1121,19,1,1241,11,0,0 +2013,7,1,1,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-4,0,1740,-3,0,0 +2013,9,19,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-3,0,905,-18,0,0 +2013,5,13,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-3,0,1153,16,1,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-1,0,1917,1,0,0 +2013,5,29,3,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1255,7,0,1405,-2,0,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1524,-4,0,1649,-15,0,0 +2013,9,9,1,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1600,-4,0,1805,-9,0,0 +2013,5,1,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2208,-6,0,43,10,0,0 +2013,5,5,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1733,-10,0,2004,-27,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,810,-5,0,852,-11,0,0 +2013,10,18,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1804,17,1,2025,10,0,0 +2013,10,12,6,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1640,37,1,1856,33,1,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1110,-6,0,1246,-32,0,0 +2013,7,19,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,4,0,2205,-24,0,0 +2013,10,2,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-6,0,1225,-20,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,-2,0,1040,-10,0,0 +2013,4,3,3,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,2045,59,1,2353,62,1,0 +2013,8,27,2,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1346,-4,0,1948,-17,0,0 +2013,8,19,1,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,11,0,1913,2,0,0 +2013,9,27,5,FL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1037,35,1,1335,26,1,0 +2013,8,24,6,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,155,1,1912,143,1,0 +2013,9,9,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1130,-5,0,1500,-8,0,0 +2013,7,18,4,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,828,-5,0,1031,-19,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,825,-5,0,1315,-13,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2015,-4,0,2145,-12,0,0 +2013,8,15,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1922,10,0,2004,4,0,0 +2013,4,11,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-5,0,1849,11,0,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1245,-4,0,1352,-14,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,20,1,1445,-6,0,0 +2013,7,24,3,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1524,-11,0,1613,-5,0,0 +2013,6,12,3,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1358,35,1,1704,11,0,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1306,-4,0,1442,-23,0,0 +2013,9,21,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1554,6,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1715,11,0,2140,-13,0,0 +2013,7,15,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1125,-1,0,1300,-17,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,33,1,1810,23,1,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,59,2,0,629,-9,0,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2214,5,0,51,-20,0,0 +2013,4,5,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-1,0,700,8,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-4,0,1022,-16,0,0 +2013,6,14,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1915,104,1,2131,69,1,0 +2013,9,21,6,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,943,-5,0,1259,-14,0,0 +2013,7,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,740,-2,0,840,9,0,0 +2013,9,2,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1620,-11,0,0 +2013,4,11,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12339,Indianapolis International,Indianapolis,IN,1251,-6,0,1533,1,0,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,630,-2,0,730,-9,0,0 +2013,4,10,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-4,0,1222,-11,0,0 +2013,4,15,1,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,2,0,1720,-9,0,0 +2013,6,3,1,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,0,0,940,-12,0,0 +2013,6,5,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-8,0,1250,-5,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1334,-5,0,1450,-25,0,0 +2013,8,11,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,-5,0,1839,-26,0,0 +2013,7,20,6,DL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,810,-7,0,1146,4,0,0 +2013,4,27,6,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,800,-9,0,1105,-13,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1905,24,1,2010,22,1,0 +2013,5,30,4,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1155,3,0,1405,-14,0,0 +2013,6,17,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,0,,1445,0,1,1 +2013,8,17,6,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,9,0,1600,-8,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,604,-1,0,909,-5,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,0,0,1702,-3,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,2030,-5,0,2227,15,1,0 +2013,7,7,7,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1305,4,0,1425,7,0,0 +2013,8,25,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1610,15,1,1704,11,0,0 +2013,5,13,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1900,-6,0,1957,-9,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1335,183,1,1705,169,1,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-6,0,1208,-18,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,-5,0,2146,7,0,0 +2013,10,5,6,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1244,-4,0,1725,-12,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,17,1,1835,3,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,959,22,1,1342,9,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,9,0,5,0,0,0 +2013,7,14,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,26,1,1139,-25,0,0 +2013,10,3,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,8,0,1244,1,0,0 +2013,6,12,3,9E,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1332,-4,0,1456,4,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,-5,0,1635,-9,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,13,0,1535,3,0,0 +2013,9,14,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-9,0,1029,-24,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1445,-4,0,1550,-12,0,0 +2013,5,28,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1805,-4,0,1920,0,0,0 +2013,4,12,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1510,8,0,1928,19,1,0 +2013,10,29,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,620,-6,0,725,12,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2018,-4,0,2223,14,0,0 +2013,6,8,6,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1405,4,0,1510,5,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1118,-4,0,1705,-2,0,0 +2013,4,11,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,0,0,1213,4,0,0 +2013,5,16,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1750,28,1,1935,18,1,0 +2013,6,11,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1103,-10,0,1158,-24,0,0 +2013,9,5,4,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1900,-4,0,1918,-15,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,2,0,2040,-2,0,0 +2013,8,31,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,-2,0,1421,-2,0,0 +2013,10,27,7,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2000,9,0,2325,-9,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,1,0,1425,-19,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,-2,0,1046,-2,0,0 +2013,6,4,2,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,730,-5,0,920,-11,0,0 +2013,5,20,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,625,1,0,725,-5,0,0 +2013,9,24,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,4,0,2220,5,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,19,1,2328,17,1,0 +2013,10,30,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1455,-3,0,1739,-10,0,0 +2013,7,8,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,-12,0,1721,-23,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2110,70,1,2252,70,1,0 +2013,4,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2005,7,0,2125,-3,0,0 +2013,7,31,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,-2,0,1400,-13,0,0 +2013,9,25,3,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,555,-7,0,830,-12,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2252,0,0,2314,-23,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1635,2,0,1755,-1,0,0 +2013,4,14,7,OO,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1652,-4,0,1832,11,0,0 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-5,0,2017,5,0,0 +2013,7,9,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,932,-5,0,1031,-6,0,0 +2013,6,26,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,7,0,2030,10,0,0 +2013,8,20,2,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1559,28,1,1749,4,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2240,26,1,113,14,0,0 +2013,6,15,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,40,1,1910,60,1,0 +2013,4,6,6,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,63,1,1517,45,1,0 +2013,6,4,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-3,0,1636,-17,0,0 +2013,4,14,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-6,0,1354,-16,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,814,-4,0,1025,-19,0,0 +2013,4,6,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1115,16,1,1437,18,1,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,925,-7,0,1115,-25,0,0 +2013,10,31,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,810,2,0,920,-4,0,0 +2013,6,6,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1636,95,1,1900,84,1,0 +2013,5,23,4,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2022,7,0,2302,37,1,0 +2013,6,22,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1410,1,0,1545,-6,0,0 +2013,10,15,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1450,-12,0,0 +2013,8,18,7,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1226,4,0,1359,16,1,0 +2013,10,16,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1120,-3,0,1239,4,0,0 +2013,5,30,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,900,3,0,1024,-6,0,0 +2013,10,3,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1944,-8,0,2100,-13,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1855,5,0,2050,12,0,0 +2013,6,21,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2056,-10,0,2226,-12,0,0 +2013,5,13,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,842,-3,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,105,1,1315,116,1,0 +2013,8,10,6,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,61,1,840,43,1,0 +2013,8,8,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1835,2,0,2109,3,0,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1830,-8,0,2053,-26,0,0 +2013,5,13,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-5,0,726,-10,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,7,0,1705,-13,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1051,-1,0,1237,-8,0,0 +2013,7,5,5,VX,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,50,3,0,625,-1,0,0 +2013,5,3,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,33,1,1845,25,1,0 +2013,8,29,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1706,40,1,1840,30,1,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,8,0,1441,-3,0,0 +2013,9,18,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1645,121,1,1925,121,1,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2135,-1,0,5,7,0,0 +2013,6,27,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,23,1,1625,12,0,0 +2013,5,28,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,8,0,1711,-5,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,13,0,1852,8,0,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1525,-6,0,1643,-15,0,0 +2013,4,18,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,-7,0,1626,-6,0,0 +2013,5,13,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,735,-4,0,820,-6,0,0 +2013,6,6,4,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,19,1,1535,22,1,0 +2013,5,20,1,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-6,0,1817,-7,0,0 +2013,8,19,1,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1700,8,0,1955,-2,0,0 +2013,4,29,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2155,-2,0,2320,0,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1410,3,0,1615,-8,0,0 +2013,4,30,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1209,-6,0,1439,-9,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2105,8,0,2210,2,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1742,-3,0,1923,1,0,0 +2013,5,28,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1008,129,1,1152,112,1,0 +2013,6,10,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-6,0,1615,-8,0,0 +2013,5,31,5,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,57,1,2135,57,1,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,80,1,1710,80,1,0 +2013,9,11,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,659,-2,0,919,-17,0,0 +2013,10,1,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,731,-4,0,848,-25,0,0 +2013,9,29,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1505,25,1,1645,44,1,0 +2013,5,18,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1212,-1,0,1505,-16,0,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,2,0,930,2,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,-6,0,2355,8,0,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,19,1,1700,15,1,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2039,29,1,2250,57,1,0 +2013,5,11,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,700,5,0,820,-5,0,0 +2013,9,23,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1746,-1,0,1856,-7,0,0 +2013,8,3,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1656,-14,0,0 +2013,4,2,2,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,919,7,0,1019,-1,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,14,0,2359,9,0,0 +2013,9,25,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,-2,0,922,-6,0,0 +2013,5,23,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2252,2,0,504,-6,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,755,-3,0,1408,-14,0,0 +2013,7,20,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,96,1,1853,63,1,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-1,0,1340,-2,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-5,0,1648,2,0,0 +2013,5,10,5,EV,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,1720,0,0,1846,-7,0,0 +2013,10,10,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,940,13,0,1255,4,0,0 +2013,8,18,7,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,730,-5,0,840,-15,0,0 +2013,10,20,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,751,44,1,933,60,1,0 +2013,8,26,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,0,0,1025,-36,0,0 +2013,4,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1415,9,0,1525,8,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1536,-2,0,1812,-6,0,0 +2013,9,20,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,600,-2,0,725,2,0,0 +2013,5,14,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,655,-1,0,955,-6,0,0 +2013,10,23,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1509,-3,0,1731,9,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,0,0,1754,-14,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,759,-6,0,950,-4,0,0 +2013,6,19,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,4,0,1846,2,0,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1232,-7,0,1530,1,0,0 +2013,8,19,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1005,6,0,1409,-2,0,0 +2013,6,10,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1340,4,0,1450,6,0,0 +2013,7,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,89,1,1353,79,1,0 +2013,6,28,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1725,17,1,2137,26,1,0 +2013,7,1,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1719,-10,0,1845,-20,0,0 +2013,10,19,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1001,-11,0,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,3,0,1045,-3,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,73,1,2335,44,1,0 +2013,9,29,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,0,0,1940,9,0,0 +2013,10,30,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,732,-2,0,926,-3,0,0 +2013,10,16,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1915,-9,0,2053,-18,0,0 +2013,6,24,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1344,20,1,1601,53,1,0 +2013,8,27,2,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-8,0,714,-12,0,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-2,0,1055,5,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,6,0,1235,-16,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1250,-4,0,1345,-15,0,0 +2013,9,2,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,10,0,2041,2,0,0 +2013,10,19,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-4,0,853,-10,0,0 +2013,5,25,6,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1230,13,0,1740,21,1,0 +2013,9,10,2,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1755,-8,0,2014,-6,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,810,-5,0,929,-8,0,0 +2013,5,3,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1451,-13,0,0 +2013,4,12,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,12,0,858,21,1,0 +2013,10,31,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,33,1,2033,30,1,0 +2013,5,5,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1221,31,1,1405,21,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2155,22,1,22,62,1,0 +2013,10,24,4,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,843,1,0,901,-10,0,0 +2013,10,12,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,710,-4,0,936,9,0,0 +2013,9,17,2,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,3,0,1610,-15,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,-1,0,1055,-14,0,0 +2013,9,13,5,F9,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1940,-9,0,2025,-7,0,0 +2013,6,15,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-7,0,1259,-8,0,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1137,-5,0,1403,-23,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1448,-8,0,1612,-8,0,0 +2013,7,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1445,22,1,1605,18,1,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-9,0,445,-14,0,0 +2013,7,17,3,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1708,7,0,1953,12,0,0 +2013,10,29,2,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,720,-6,0,945,-17,0,0 +2013,10,3,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1232,-9,0,0 +2013,10,18,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2010,3,0,2125,-4,0,0 +2013,4,27,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,600,4,0,1206,11,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,10,0,1018,-1,0,0 +2013,8,18,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2052,23,1,0 +2013,4,19,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1655,-2,0,2004,-20,0,0 +2013,5,4,6,EV,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,621,29,1,710,17,1,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1210,12,0,1425,7,0,0 +2013,8,12,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1530,-4,0,1706,-17,0,0 +2013,9,1,7,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1230,-2,0,1445,-13,0,0 +2013,6,7,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1100,30,1,1155,22,1,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,1,0,55,-15,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1200,16,1,1405,-13,0,0 +2013,9,13,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,-12,0,2220,-23,0,0 +2013,7,17,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1349,-4,0,1937,-4,0,0 +2013,10,23,3,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,7,0,1820,11,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1753,5,0,1915,7,0,0 +2013,5,9,4,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-2,0,1136,-35,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1636,83,1,2142,62,1,0 +2013,5,6,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1329,-8,0,1504,-2,0,0 +2013,7,4,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1905,-6,0,2000,-15,0,0 +2013,4,2,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1838,-9,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,8,0,1840,-4,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,940,0,0,1410,-16,0,0 +2013,10,14,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,4,0,1118,1,0,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1310,-5,0,1627,-25,0,0 +2013,5,30,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-4,0,1811,-3,0,0 +2013,4,24,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,950,-1,0,1706,-23,0,0 +2013,7,2,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-3,0,1611,-1,0,0 +2013,8,23,5,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,937,-3,0,1803,-9,0,0 +2013,7,10,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-5,0,1045,3,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1905,53,1,15,63,1,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-5,0,1010,9,0,0 +2013,4,28,7,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2105,61,1,544,54,1,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1620,-1,0,1801,-12,0,0 +2013,10,9,3,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1154,-6,0,1340,-18,0,0 +2013,4,28,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-3,0,920,-16,0,0 +2013,7,3,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,33,1,2000,40,1,0 +2013,10,14,1,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,-3,0,1844,-14,0,0 +2013,10,12,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1346,-1,0,1532,-10,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,-3,0,923,-8,0,0 +2013,5,16,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2135,0,0,2156,6,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,1,0,829,-13,0,0 +2013,8,27,2,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,1020,1,0,0 +2013,10,12,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1746,-3,0,2000,1,0,0 +2013,10,4,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-9,0,1250,-14,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1820,21,1,2014,7,0,0 +2013,5,22,3,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,1,0,1112,-12,0,0 +2013,6,3,1,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,1,0,1305,-9,0,0 +2013,6,3,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,22,1,1740,15,1,0 +2013,5,8,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,91,1,2126,66,1,0 +2013,5,13,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1000,-1,0,1254,-5,0,0 +2013,6,6,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1556,-3,0,1749,2,0,0 +2013,10,20,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,13,0,1601,5,0,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1545,46,1,1700,19,1,0 +2013,4,14,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1725,11,0,1950,-8,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1530,-1,0,1736,6,0,0 +2013,9,17,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,18,1,1650,25,1,0 +2013,10,3,4,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1900,12,0,2025,3,0,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1140,13,0,1445,16,1,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1047,-1,0,1900,-30,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1850,-1,0,2020,-8,0,0 +2013,5,17,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-5,0,1025,-11,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1715,-3,0,2140,-23,0,0 +2013,5,1,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,841,-3,0,1054,-2,0,0 +2013,7,13,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,650,4,0,720,-3,0,0 +2013,9,8,7,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,118,1,2052,126,1,0 +2013,4,26,5,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1600,-2,0,1810,2,0,0 +2013,7,13,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2325,-1,0,500,11,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,2043,-2,0,15,-16,0,0 +2013,8,25,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1132,2,0,1643,-8,0,0 +2013,5,7,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1435,-9,0,1624,-19,0,0 +2013,9,19,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,910,-9,0,1715,12,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-6,0,1111,1,0,0 +2013,4,4,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1010,-7,0,1128,-5,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,14,0,2115,18,1,0 +2013,6,14,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1945,42,1,2123,27,1,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,0,0,2221,8,0,0 +2013,5,12,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,5,0,1945,-6,0,0 +2013,5,1,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2142,33,1,549,28,1,0 +2013,6,14,5,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1722,-9,0,2044,-19,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2020,-10,0,2125,-10,0,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,60,1,1638,58,1,0 +2013,10,7,1,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,745,-9,0,1033,-12,0,0 +2013,5,27,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1708,-13,0,0 +2013,8,1,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,14,0,1410,11,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-5,0,1349,-4,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-9,0,1115,-17,0,0 +2013,9,25,3,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1800,-5,0,1950,-18,0,0 +2013,10,15,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-3,0,626,-5,0,0 +2013,8,7,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-3,0,1107,65,1,0 +2013,10,25,5,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2345,0,0,800,6,0,0 +2013,10,7,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1835,4,0,1845,-1,0,0 +2013,4,23,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-8,0,855,3,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1930,110,1,2214,133,1,0 +2013,6,2,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-4,0,1628,-10,0,0 +2013,10,11,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-6,0,1230,-22,0,0 +2013,8,12,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1033,82,1,1355,76,1,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1600,35,1,1742,60,1,0 +2013,4,23,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1009,-10,0,1200,-4,0,0 +2013,4,12,5,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1930,51,1,2217,32,1,0 +2013,10,11,5,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,940,1,0,1120,0,0,0 +2013,8,13,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,1,0,1207,6,0,0 +2013,7,20,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1210,28,1,1325,25,1,0 +2013,10,28,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,835,3,0,1015,7,0,0 +2013,7,3,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,706,25,1,1525,46,1,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,825,-7,0,945,3,0,0 +2013,10,21,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-5,0,942,11,0,0 +2013,8,30,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1625,-2,0,1834,-24,0,0 +2013,9,27,5,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1415,0,0,1635,-16,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1639,15,1,1935,-4,0,0 +2013,9,22,7,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,714,-1,0,1435,-16,0,0 +2013,9,17,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-3,0,1045,-10,0,0 +2013,7,29,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,-2,0,1221,-17,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1250,-2,0,1635,-12,0,0 +2013,5,30,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-3,0,1245,-14,0,0 +2013,6,8,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,615,-1,0,710,0,0,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,647,-3,0,809,9,0,0 +2013,8,18,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1951,3,0,2229,-16,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,59,1,1205,35,1,0 +2013,10,1,2,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,-10,0,1834,-32,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2030,52,1,2200,67,1,0 +2013,8,23,5,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,700,-6,0,1235,-8,0,0 +2013,4,20,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,955,34,1,1215,21,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,-3,0,1509,-10,0,0 +2013,4,19,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1420,0,0,1812,33,1,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2130,19,1,2340,4,0,0 +2013,8,28,3,EV,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-6,0,1414,-19,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1000,-3,0,1210,-13,0,0 +2013,7,31,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1531,13,0,1645,8,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1830,0,0,2115,-8,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,-3,0,1906,-12,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1551,16,1,1732,3,0,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,-6,0,1544,-22,0,0 +2013,6,8,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1845,-7,0,2046,-7,0,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1045,-2,0,1150,-5,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2005,1,0,2101,-1,0,0 +2013,5,12,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1555,2,0,1655,-2,0,0 +2013,4,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1332,58,1,1526,42,1,0 +2013,5,5,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1259,5,0,1624,-27,0,0 +2013,10,23,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,14,0,1235,10,0,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,752,-1,0,948,-31,0,0 +2013,4,29,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2032,-12,0,2257,-15,0,0 +2013,10,24,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-12,0,812,-13,0,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,-3,0,1803,6,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-1,0,1045,-7,0,0 +2013,6,7,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1850,41,1,2005,43,1,0 +2013,5,27,1,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-5,0,1024,0,0,0 +2013,5,22,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-6,0,1908,-16,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,946,-1,0,953,-4,0,0 +2013,6,17,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,2,0,1910,1,0,0 +2013,4,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,840,9,0,1100,6,0,0 +2013,5,31,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2230,-5,0,2351,0,0,0 +2013,4,22,1,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2105,52,1,2340,55,1,0 +2013,9,8,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,-7,0,1706,-6,0,0 +2013,6,23,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1535,0,0,1653,3,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,850,1,0,1245,-9,0,0 +2013,9,14,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,-2,0,923,-31,0,0 +2013,7,2,2,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-2,0,803,-9,0,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,7,0,1105,-30,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2225,-3,0,2325,-13,0,0 +2013,5,3,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-5,0,913,-5,0,0 +2013,8,28,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-3,0,1245,-6,0,0 +2013,6,10,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1210,1,0,1330,1,0,0 +2013,7,24,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,23,1,2150,12,0,0 +2013,4,26,5,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2329,-4,0,511,1,0,0 +2013,7,30,2,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1944,-2,0,2304,-19,0,0 +2013,4,25,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1005,14,0,1130,10,0,0 +2013,7,20,6,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1210,37,1,1334,29,1,0 +2013,4,14,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2045,5,0,2320,1,0,0 +2013,6,11,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1815,11,0,1910,13,0,0 +2013,8,7,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-1,0,1545,4,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1215,0,0,1320,-1,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1355,13,0,1520,7,0,0 +2013,5,9,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,805,6,0,0 +2013,7,17,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1800,-5,0,1925,0,0,0 +2013,4,14,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2028,-7,0,2336,8,0,0 +2013,6,6,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1700,42,1,1756,40,1,0 +2013,8,24,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,800,-4,0,935,-9,0,0 +2013,8,25,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,-2,0,2113,-8,0,0 +2013,7,12,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1210,44,1,1320,38,1,0 +2013,4,21,7,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,0,0,2054,-11,0,0 +2013,5,17,5,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,30,1,715,12,0,0 +2013,7,27,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,-6,0,1100,-23,0,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,725,-4,0,900,-13,0,0 +2013,8,2,5,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,7,0,2203,31,1,0 +2013,4,23,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1945,50,1,2300,30,1,0 +2013,10,24,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,955,3,0,1000,2,0,0 +2013,7,3,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,9,0,1010,12,0,0 +2013,8,23,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,845,1,0,1005,3,0,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1755,-3,0,2035,-3,0,0 +2013,9,13,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1634,-5,0,1814,0,0,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,0,0,1425,-5,0,0 +2013,8,26,1,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-18,0,2031,-32,0,0 +2013,6,21,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,815,-13,0,930,-1,0,0 +2013,5,20,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1159,-6,0,1321,-14,0,0 +2013,7,21,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,100,1,1723,100,1,0 +2013,5,7,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1003,-2,0,1139,-15,0,0 +2013,8,10,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,179,1,2216,189,1,0 +2013,7,13,6,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-4,0,1500,2,0,0 +2013,10,6,7,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,1,0,735,-18,0,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1055,11,0,1210,8,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,0,0,1047,1,0,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1947,-2,0,2144,-13,0,0 +2013,10,5,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1313,-5,0,1548,-24,0,0 +2013,7,13,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-4,0,802,-6,0,0 +2013,9,2,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1015,7,0,1250,-1,0,0 +2013,7,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1406,0,0,1554,0,0,0 +2013,6,16,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-4,0,1020,4,0,0 +2013,6,7,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,930,13,0,0 +2013,10,11,5,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1745,-5,0,1902,45,1,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1355,13,0,1617,4,0,0 +2013,7,15,1,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,810,1,0,1630,18,1,0 +2013,5,11,6,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-1,0,925,0,0,0 +2013,5,29,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1440,49,1,1805,49,1,0 +2013,7,4,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,10,0,1808,1,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,814,12,0,1135,-24,0,0 +2013,7,17,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-4,0,1017,-17,0,0 +2013,7,20,6,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-3,0,2257,-6,0,0 +2013,9,12,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,31,1,1917,24,1,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1455,-3,0,1605,-7,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-5,0,1043,-17,0,0 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,730,0,0,950,-12,0,0 +2013,9,9,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1515,13,0,1735,9,0,0 +2013,6,17,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,157,1,1320,154,1,0 +2013,8,6,2,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,625,8,0,725,1,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1530,28,1,1740,26,1,0 +2013,8,18,7,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,824,-5,0,841,13,0,0 +2013,5,23,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1230,-5,0,1525,-12,0,0 +2013,8,30,5,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,845,-4,0,1005,-8,0,0 +2013,6,10,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,-1,0,750,1,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1540,2,0,1740,-11,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1535,-1,0,2010,0,0,0 +2013,5,15,3,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,9,0,2010,-7,0,0 +2013,5,15,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,815,0,0,935,0,0,0 +2013,9,24,2,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,839,0,0,1125,-12,0,0 +2013,5,29,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-6,0,2058,-16,0,0 +2013,6,5,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-3,0,659,-8,0,0 +2013,4,9,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1915,18,1,2210,17,1,0 +2013,6,10,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1219,5,0,1337,21,1,0 +2013,7,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1201,-2,0,1302,-8,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1135,49,1,1435,36,1,0 +2013,6,3,1,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-7,0,1655,-14,0,0 +2013,8,2,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,0,0,1800,29,1,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,833,9,0,1536,4,0,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1520,4,0,1733,-13,0,0 +2013,4,14,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,7,0,1922,31,1,0 +2013,5,9,4,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1025,10,0,1304,0,0,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1217,-4,0,1516,-56,0,0 +2013,5,17,5,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-2,0,1905,-12,0,0 +2013,9,22,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1619,-7,0,2030,-18,0,0 +2013,4,12,5,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2150,-4,0,2332,-22,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,725,-4,0,906,-15,0,0 +2013,6,16,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1830,2,0,1925,-12,0,0 +2013,5,13,1,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2130,8,0,512,25,1,0 +2013,7,3,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,13,0,1305,52,1,0 +2013,8,28,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-11,0,904,-9,0,0 +2013,10,11,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,149,1,1240,142,1,0 +2013,10,6,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1515,0,,1735,0,1,1 +2013,9,26,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,650,-2,0,710,-1,0,0 +2013,5,30,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-5,0,1105,-11,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,30,1,40,9,0,0 +2013,7,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,845,8,0,1215,-4,0,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1645,34,1,1915,30,1,0 +2013,8,4,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,804,-8,0,0 +2013,5,17,5,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1515,3,0,1645,-9,0,0 +2013,10,15,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,2058,-9,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,12,0,2345,43,1,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,830,6,0,1010,-11,0,0 +2013,4,7,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-14,0,926,-30,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1205,-3,0,1310,-13,0,0 +2013,5,19,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-9,0,802,-11,0,0 +2013,6,30,7,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,759,2,0,1034,-3,0,0 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,-10,0,2255,-19,0,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,74,1,2130,73,1,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1840,6,0,2105,3,0,0 +2013,5,25,6,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,-4,0,1415,-10,0,0 +2013,6,11,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,614,-1,0,723,-13,0,0 +2013,8,8,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1150,11,0,1425,-2,0,0 +2013,7,28,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,12,0,1922,20,1,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,39,1,2255,30,1,0 +2013,7,25,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-5,0,1545,0,0,0 +2013,7,27,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1335,-7,0,1620,-7,0,0 +2013,8,29,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1540,-1,0,1807,-4,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,725,51,1,1050,37,1,0 +2013,6,24,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-4,0,1235,6,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1135,2,0,1306,-10,0,0 +2013,4,20,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1610,-2,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,2,0,25,-17,0,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1325,4,0,1415,-7,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2145,-1,0,4,-27,0,0 +2013,4,3,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-6,0,1007,0,0,0 +2013,7,19,5,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-6,0,643,-10,0,0 +2013,8,24,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,-2,0,820,-13,0,0 +2013,9,2,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-3,0,1611,13,0,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,85,1,959,47,1,0 +2013,5,16,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1155,2,0,1305,-7,0,0 +2013,6,27,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,915,-10,0,1032,-13,0,0 +2013,9,25,3,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,2017,-10,0,2115,10,0,0 +2013,7,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,707,10,0,924,8,0,0 +2013,8,28,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,22,1,2102,11,0,0 +2013,6,7,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,13,0,2059,44,1,0 +2013,5,4,6,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1300,13,0,1445,-1,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2010,50,1,2224,38,1,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,7,0,2155,-11,0,0 +2013,6,20,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1605,-5,0,1730,-3,0,0 +2013,10,4,5,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1613,-1,0,1730,-1,0,0 +2013,9,10,2,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,2,0,1430,-13,0,0 +2013,9,5,4,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,-9,0,1006,-34,0,0 +2013,5,2,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-1,0,826,-7,0,0 +2013,6,9,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,-8,0,2042,8,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,185,1,1729,146,1,0 +2013,6,22,6,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,8,0,1600,6,0,0 +2013,9,13,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1850,-2,0,2249,-4,0,0 +2013,5,14,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,824,9,0,935,12,0,0 +2013,10,14,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1705,21,1,1830,15,1,0 +2013,6,19,3,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-2,0,748,-6,0,0 +2013,6,30,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1550,15,1,1700,5,0,0 +2013,6,21,5,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1305,38,1,1455,34,1,0 +2013,10,30,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1740,-5,0,1856,-4,0,0 +2013,5,14,2,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2300,-8,0,629,3,0,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,905,-6,0,1021,-3,0,0 +2013,6,1,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1001,-3,0,0 +2013,6,11,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1205,-4,0,1440,2,0,0 +2013,9,16,1,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-2,0,1124,-18,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2210,6,0,55,-7,0,0 +2013,8,25,7,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,955,-6,0,1745,-12,0,0 +2013,8,15,4,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1745,19,1,2036,24,1,0 +2013,7,27,6,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1612,74,1,1847,77,1,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1410,8,0,0 +2013,4,30,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,909,-6,0,1415,-25,0,0 +2013,9,21,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2015,-7,0,2240,-29,0,0 +2013,10,6,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,8,0,2059,1,0,0 +2013,10,31,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-5,0,1730,3,0,0 +2013,5,4,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-13,0,2302,-25,0,0 +2013,5,2,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,6,0,1330,8,0,0 +2013,6,18,2,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-6,0,1046,-6,0,0 +2013,4,21,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,720,42,1,1017,28,1,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1740,107,1,1937,108,1,0 +2013,10,3,4,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,810,-2,0,1055,-11,0,0 +2013,5,19,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1710,9,0,1815,7,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,929,4,0,1053,-7,0,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1725,12,0,1830,8,0,0 +2013,6,1,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,730,-5,0,1140,0,0,0 +2013,9,6,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1045,16,1,1105,18,1,0 +2013,4,28,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1936,-10,0,2256,-8,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,10,0,1321,-3,0,0 +2013,4,27,6,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1942,-10,0,2247,-5,0,0 +2013,7,4,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2347,54,1,701,24,1,0 +2013,5,8,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-5,0,932,-9,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2040,32,1,2155,30,1,0 +2013,10,31,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,-3,0,1640,-1,0,0 +2013,7,13,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,7,0,1821,-9,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1759,62,1,1924,52,1,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2200,27,1,2305,14,0,0 +2013,8,21,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-4,0,1045,0,0,0 +2013,10,17,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,-6,0,1700,-10,0,0 +2013,10,6,7,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2203,-4,0,115,-14,0,0 +2013,4,9,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,19,1,1038,20,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1700,-5,0,1839,-21,0,0 +2013,6,13,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,940,0,0,1339,38,1,0 +2013,4,14,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1630,-6,0,1918,-28,0,0 +2013,6,24,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,-2,0,1249,-9,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,933,27,1,1300,28,1,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1505,8,0,1740,21,1,0 +2013,7,6,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,-7,0,1815,-5,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,4,0,2225,-14,0,0 +2013,6,2,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2156,-5,0,2242,-7,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1915,48,1,2205,40,1,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-1,0,1131,-25,0,0 +2013,8,13,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1507,-3,0,1530,-10,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1348,-1,0,1458,20,1,0 +2013,6,26,3,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1000,1,0,1255,-6,0,0 +2013,7,13,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,3,0,951,-29,0,0 +2013,9,25,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-3,0,1729,-11,0,0 +2013,8,11,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1430,9,0,1535,3,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,1205,-23,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1200,15,1,1355,-11,0,0 +2013,7,15,1,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,67,1,1913,60,1,0 +2013,9,16,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,545,-8,0,855,-29,0,0 +2013,5,17,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,602,-2,0,754,-18,0,0 +2013,7,23,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2015,-1,0,2130,13,0,0 +2013,4,9,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1220,-1,0,1325,-6,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1827,-2,0,2019,-4,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,7,0,2115,19,1,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-2,0,1315,-5,0,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,48,1,2200,41,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,905,24,1,1035,20,1,0 +2013,7,15,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1509,-7,0,1635,-16,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1025,-4,0,1350,-6,0,0 +2013,6,19,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-14,0,1000,-26,0,0 +2013,10,21,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1006,-10,0,1154,-15,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1917,-3,0,2359,-21,0,0 +2013,4,20,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1200,0,0,1210,-7,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,11,0,1245,6,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,27,1,1620,13,0,0 +2013,4,13,6,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,40,1,1435,49,1,0 +2013,5,3,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1815,0,,1955,0,1,1 +2013,8,27,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1435,-8,0,1645,-15,0,0 +2013,5,29,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-9,0,1430,-6,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1753,12,0,1944,5,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,635,0,0,735,-1,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,925,-6,0,1040,-7,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1750,26,1,2150,11,0,0 +2013,7,2,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,-1,0,1145,-12,0,0 +2013,10,18,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,720,-1,0,1126,-2,0,0 +2013,9,12,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1150,-2,0,1228,2,0,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,-2,0,2332,-8,0,0 +2013,5,12,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-1,0,1530,-10,0,0 +2013,10,16,3,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,14,0,1710,2,0,0 +2013,6,18,2,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,2,0,1722,-18,0,0 +2013,7,6,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,14,0,2001,4,0,0 +2013,9,26,4,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1100,-3,0,1855,-19,0,0 +2013,4,11,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1157,17,1,1453,14,0,0 +2013,4,29,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1655,7,0,1820,-3,0,0 +2013,4,7,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1045,-5,0,1133,-8,0,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,841,-5,0,932,-23,0,0 +2013,5,11,6,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,-3,0,2235,-6,0,0 +2013,10,8,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,-5,0,1810,2,0,0 +2013,4,4,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,910,3,0,1054,14,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-7,0,1705,-25,0,0 +2013,8,9,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,36,1,1517,27,1,0 +2013,5,13,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,0,,1638,0,1,1 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1151,1,0,1330,-18,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1311,0,0,1456,-13,0,0 +2013,10,24,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,910,-25,0,0 +2013,8,9,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1410,0,0,1555,-19,0,0 +2013,7,31,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,3,0,1335,-5,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,35,1,2302,45,1,0 +2013,10,21,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-15,0,1140,-22,0,0 +2013,6,24,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,751,3,0,957,18,1,0 +2013,5,20,1,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1842,-6,0,2059,3,0,0 +2013,10,8,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,-3,0,2250,-46,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,76,1,2238,87,1,0 +2013,7,31,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-5,0,541,-3,0,0 +2013,9,12,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,950,1,0,1310,21,1,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1935,106,1,2213,86,1,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,1,0,1225,-17,0,0 +2013,6,2,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,2,0,730,-7,0,0 +2013,9,3,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1130,-2,0,1402,-4,0,0 +2013,7,14,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1019,-8,0,1129,-10,0,0 +2013,6,29,6,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,25,1,2051,22,1,0 +2013,7,18,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,735,-1,0,926,-14,0,0 +2013,10,18,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2127,110,1,2237,93,1,0 +2013,7,8,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,746,118,1,1033,98,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,1,0,1131,-1,0,0 +2013,9,11,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,700,-6,0,800,-6,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1235,97,1,1455,84,1,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1220,-5,0,1507,-28,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1120,-5,0,1326,-24,0,0 +2013,9,29,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2008,27,1,2104,18,1,0 +2013,8,25,7,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1214,73,1,1338,64,1,0 +2013,4,10,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,946,-2,0,1039,7,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,-7,0,833,3,0,0 +2013,4,5,5,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,1535,-4,0,1757,-1,0,0 +2013,5,26,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1426,-4,0,1530,-19,0,0 +2013,4,27,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1110,-7,0,1407,-6,0,0 +2013,7,29,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,2,0,1102,-2,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,40,1,2330,48,1,0 +2013,4,25,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1810,18,1,2005,1,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1051,16,1,1235,13,0,0 +2013,10,17,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-1,0,1813,-12,0,0 +2013,10,26,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-4,0,1617,-10,0,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1120,2,0,1250,-15,0,0 +2013,5,26,7,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1620,-4,0,1900,-23,0,0 +2013,7,29,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,-8,0,715,-4,0,0 +2013,8,17,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,957,-4,0,1606,-3,0,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,915,-3,0,1305,0,0,0 +2013,6,6,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,12,0,1612,1,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,703,35,1,815,24,1,0 +2013,8,18,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2056,67,1,2226,66,1,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-6,0,1455,-16,0,0 +2013,4,1,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1541,9,0,1833,60,1,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1324,96,1,1937,102,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-6,0,1356,-18,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,-7,0,2035,-10,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1225,12,0,1655,1,0,0 +2013,9,18,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,-7,0,1247,7,0,0 +2013,6,3,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,600,-4,0,716,-22,0,0 +2013,5,15,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1450,-6,0,1511,-15,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1020,-3,0,1435,-24,0,0 +2013,7,14,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,0,0,918,-10,0,0 +2013,6,5,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-1,0,1652,-4,0,0 +2013,4,27,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1339,33,1,1510,28,1,0 +2013,5,8,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1935,5,0,2259,-32,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,-4,0,1823,-8,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-3,0,1628,-14,0,0 +2013,9,5,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,905,-9,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2152,-1,0,2338,-9,0,0 +2013,7,8,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,-3,0,1606,-3,0,0 +2013,8,28,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,925,-1,0,1110,-4,0,0 +2013,6,1,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,0,0,1125,3,0,0 +2013,8,28,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,655,0,0,725,-11,0,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,900,-11,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,2,0,1710,-10,0,0 +2013,7,13,6,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,5,0,2009,-36,0,0 +2013,9,17,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1313,0,0,1922,-22,0,0 +2013,6,19,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,6,0,1900,7,0,0 +2013,5,18,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,0,0,950,-2,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1950,-5,0,2045,-11,0,0 +2013,7,2,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,0,0,1235,-6,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,725,-2,0,1030,-11,0,0 +2013,7,1,1,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,-1,0,1905,8,0,0 +2013,5,18,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1355,-5,0,1525,-11,0,0 +2013,5,21,2,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,3,0,520,-18,0,0 +2013,7,27,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-4,0,1250,-7,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1537,20,1,1825,-6,0,0 +2013,8,23,5,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-4,0,847,10,0,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,8,0,1100,4,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1115,-6,0,1250,-3,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1959,-3,0,2143,-13,0,0 +2013,5,29,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-6,0,851,-15,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2110,-6,0,2212,-11,0,0 +2013,7,10,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,13,0,1250,4,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,904,3,0,1213,-6,0,0 +2013,8,4,7,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,-3,0,1859,-4,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,8,0,1935,8,0,0 +2013,9,29,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1405,18,1,1625,3,0,0 +2013,8,7,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,147,1,1048,137,1,0 +2013,8,4,7,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-6,0,505,-32,0,0 +2013,10,2,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1513,-5,0,1849,-20,0,0 +2013,5,25,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1941,45,1,2125,25,1,0 +2013,9,13,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1825,50,1,2115,48,1,0 +2013,9,3,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1620,-6,0,0 +2013,7,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2104,-6,0,2359,-16,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,0,0,1935,-1,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,840,-7,0,1014,-19,0,0 +2013,7,5,5,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1625,-8,0,1830,-31,0,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1510,5,0,1620,6,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1537,0,0,1740,-4,0,0 +2013,7,9,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2035,1,0,2253,10,0,0 +2013,7,18,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,-1,0,2041,-12,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,40,1,1329,24,1,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1518,0,0,1722,-5,0,0 +2013,5,15,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-2,0,1642,-9,0,0 +2013,10,4,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,-1,0,1034,0,0,0 +2013,9,21,6,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,-5,0,950,0,0,0 +2013,10,8,2,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1225,7,0,2025,-7,0,0 +2013,4,30,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1010,-2,0,1125,-6,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,745,-3,0,938,-11,0,0 +2013,5,22,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,17,1,1853,7,0,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-4,0,1335,-9,0,0 +2013,7,27,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1526,-8,0,1824,8,0,0 +2013,7,10,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,-1,0,720,18,1,0 +2013,4,3,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1314,-8,0,1435,-25,0,0 +2013,7,12,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,1,0,915,0,0,0 +2013,4,9,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-7,0,1028,0,0,0 +2013,6,29,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,20,1,2124,21,1,0 +2013,9,10,2,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1200,-6,0,1300,-13,0,0 +2013,8,12,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1450,-1,0,1615,-9,0,0 +2013,4,17,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-4,0,1337,-5,0,0 +2013,8,7,3,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,545,-5,0,650,-6,0,0 +2013,7,25,4,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1120,-5,0,1240,-15,0,0 +2013,5,1,3,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1755,23,1,2045,10,0,0 +2013,6,26,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-6,0,1255,-9,0,0 +2013,9,13,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,61,1,1655,62,1,0 +2013,9,25,3,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,30,1,0,610,-24,0,0 +2013,8,23,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1905,41,1,1915,40,1,0 +2013,4,19,5,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-2,0,2013,-22,0,0 +2013,4,10,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,830,19,1,1015,19,1,0 +2013,6,21,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1857,72,1,2027,65,1,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1536,23,1,1812,14,0,0 +2013,7,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-7,0,1045,-6,0,0 +2013,9,13,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1937,15,1,2105,4,0,0 +2013,4,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1750,13,0,1915,12,0,0 +2013,9,18,3,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1500,8,0,1940,-5,0,0 +2013,6,8,6,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,900,48,1,1115,42,1,0 +2013,10,20,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1215,0,0,1320,-2,0,0 +2013,9,9,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-3,0,1816,18,1,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,755,2,0,915,-7,0,0 +2013,8,2,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1114,13,0,1632,1,0,0 +2013,8,14,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1944,0,0,2152,3,0,0 +2013,6,22,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,-2,0,1526,-16,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,-1,0,1351,-10,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,758,0,,922,0,1,1 +2013,6,13,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1835,-10,0,2005,-1,0,0 +2013,6,6,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-8,0,1135,-5,0,0 +2013,7,26,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1638,1,0,1900,10,0,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2149,-4,0,2245,-11,0,0 +2013,6,25,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,615,-7,0,745,-16,0,0 +2013,5,27,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1347,-7,0,1600,-10,0,0 +2013,7,26,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,23,1,1637,13,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1457,4,0,1649,-17,0,0 +2013,7,3,3,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1822,28,1,2033,15,1,0 +2013,9,11,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-7,0,1428,-19,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1445,-3,0,1730,-3,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1526,4,0,1837,-5,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,753,2,0,1406,-8,0,0 +2013,4,6,6,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1125,-1,0,1325,-8,0,0 +2013,4,25,4,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1920,6,0,2050,14,0,0 +2013,4,11,4,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,813,-3,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,-4,0,1145,-9,0,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1505,4,0,1615,-3,0,0 +2013,5,4,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,955,-7,0,1140,-42,0,0 +2013,10,5,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1651,-4,0,2059,13,0,0 +2013,7,19,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1935,-4,0,2259,-11,0,0 +2013,4,21,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1900,13,0,2010,3,0,0 +2013,8,23,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-5,0,1224,-9,0,0 +2013,10,19,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,755,1,0,1035,1,0,0 +2013,8,22,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1050,0,0,1140,-3,0,0 +2013,9,13,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-7,0,1310,-14,0,0 +2013,6,10,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1510,5,0,1825,-6,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1050,-5,0,1207,-3,0,0 +2013,9,6,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-6,0,1235,-4,0,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1445,-2,0,1614,-1,0,0 +2013,10,1,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1408,3,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-6,0,1633,-7,0,0 +2013,7,17,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2115,18,1,20,45,1,0 +2013,9,2,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1916,-1,0,2129,-10,0,0 +2013,7,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,8,0,815,-2,0,0 +2013,6,23,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,14,0,836,14,0,0 +2013,6,3,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1215,3,0,1451,29,1,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1550,0,0,1810,-8,0,0 +2013,8,30,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1732,-3,0,1853,-8,0,0 +2013,10,9,3,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1310,0,0,1700,21,1,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,850,-5,0,1031,-16,0,0 +2013,5,6,1,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1021,8,0,1135,8,0,0 +2013,4,27,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-7,0,1005,-12,0,0 +2013,10,17,4,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1821,13,0,2309,-33,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,161,1,1950,147,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,68,1,1115,65,1,0 +2013,7,18,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1720,2,0,1830,1,0,0 +2013,9,30,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,747,27,1,1017,10,0,0 +2013,8,24,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,-3,0,1609,0,0,0 +2013,9,20,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,18,1,1210,12,0,0 +2013,5,23,4,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1708,11,0,1800,-9,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1540,26,1,1800,8,0,0 +2013,5,19,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,0,0,955,-5,0,0 +2013,10,17,4,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,654,-4,0,800,13,0,0 +2013,4,21,7,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-12,0,1019,-24,0,0 +2013,5,10,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,-2,0,1126,0,0,0 +2013,8,11,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1010,-4,0,1247,-14,0,0 +2013,7,9,2,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1620,20,1,2000,9,0,0 +2013,6,24,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1005,-8,0,0 +2013,8,5,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,720,4,0,0 +2013,9,1,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,-3,0,1629,-18,0,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1255,-1,0,1440,-12,0,0 +2013,5,16,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1120,-2,0,1215,-3,0,0 +2013,5,23,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-8,0,756,-13,0,0 +2013,9,7,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-4,0,950,-35,0,0 +2013,6,11,2,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,49,1,1455,57,1,0 +2013,6,23,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2255,-1,0,607,-5,0,0 +2013,4,14,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,-1,0,1215,4,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,915,-34,0,0 +2013,8,18,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,22,1,1920,11,0,0 +2013,9,23,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,73,1,2020,69,1,0 +2013,9,2,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-8,0,843,-23,0,0 +2013,5,22,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,14,0,1904,13,0,0 +2013,5,10,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1445,3,0,1610,2,0,0 +2013,4,30,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,952,-1,0,1129,-30,0,0 +2013,6,11,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,915,-7,0,1209,-7,0,0 +2013,4,14,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1405,2,0,2000,-10,0,0 +2013,8,3,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-7,0,1159,11,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,20,1,2116,21,1,0 +2013,8,11,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,11,0,928,3,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,955,-2,0,1135,3,0,0 +2013,7,29,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,655,-2,0,840,5,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1315,-4,0,1525,-18,0,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1745,-1,0,1919,-7,0,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1020,-12,0,1625,-30,0,0 +2013,5,15,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1630,-2,0,1826,-8,0,0 +2013,10,4,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,3,0,1210,-4,0,0 +2013,8,12,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,710,-4,0,825,7,0,0 +2013,8,3,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1005,0,0,1250,-9,0,0 +2013,6,6,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1247,-1,0,1419,17,1,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,629,-7,0,805,-10,0,0 +2013,9,12,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,-7,0,1125,3,0,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,-9,0,2308,-22,0,0 +2013,4,17,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1936,0,,2044,0,1,1 +2013,5,27,1,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1056,-7,0,1220,-19,0,0 +2013,5,19,7,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1120,2,0,1945,19,1,0 +2013,10,22,2,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,2,0,1720,-12,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,3,0,1110,-5,0,0 +2013,5,8,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1120,1,0,1250,-5,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1329,-6,0,0 +2013,8,12,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,728,-1,0,1000,-12,0,0 +2013,6,3,1,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-7,0,1749,-12,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,900,-4,0,1126,-33,0,0 +2013,10,4,5,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,-4,0,2342,-30,0,0 +2013,4,5,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1055,-6,0,0 +2013,6,15,6,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1336,-6,0,1541,-15,0,0 +2013,8,18,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-6,0,1110,-2,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1908,22,1,2100,6,0,0 +2013,9,9,1,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2200,27,1,501,21,1,0 +2013,9,14,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1715,18,1,1925,2,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1845,28,1,2000,29,1,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,18,1,1009,45,1,0 +2013,5,11,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1620,0,0,2215,14,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,1,0,927,-4,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,0,0,2314,7,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1355,160,1,1520,165,1,0 +2013,5,21,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,69,1,1955,75,1,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,644,24,1,813,4,0,0 +2013,4,15,1,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1559,-6,0,1814,-12,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1312,7,0,1557,-9,0,0 +2013,7,13,6,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1840,-1,0,2045,11,0,0 +2013,9,9,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1107,-4,0,1357,-4,0,0 +2013,7,20,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,5,0,1915,0,0,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2045,-5,0,2211,-15,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,755,-1,0,934,-16,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,915,14,0,1130,15,1,0 +2013,8,17,6,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,955,7,0,1750,29,1,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-2,0,1050,-12,0,0 +2013,4,16,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,3,0,1202,-12,0,0 +2013,10,2,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,924,11,0,1117,22,1,0 +2013,5,13,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1310,-5,0,1515,-1,0,0 +2013,7,15,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,4,0,1238,23,1,0 +2013,4,1,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,1012,0,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,23,1,1850,17,1,0 +2013,9,9,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1205,-12,0,1329,0,0,0 +2013,5,3,5,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1845,4,0,1944,4,0,0 +2013,6,15,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-12,0,900,-10,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,850,0,0,1552,-12,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-5,0,1832,-9,0,0 +2013,8,12,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1312,43,1,2142,18,1,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2207,-7,0,2359,-23,0,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1112,0,0,1207,-15,0,0 +2013,9,3,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1150,20,1,1310,16,1,0 +2013,5,4,6,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,745,-8,0,943,-4,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1225,-7,0,1934,-20,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1730,2,0,2010,-3,0,0 +2013,7,6,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,940,-15,0,0 +2013,9,16,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1508,-16,0,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,10,0,2340,-7,0,0 +2013,8,15,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,755,2,0,845,4,0,0 +2013,8,22,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1005,32,1,1320,26,1,0 +2013,9,20,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,0,0,1635,-11,0,0 +2013,10,17,4,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1653,-2,0,1755,-8,0,0 +2013,10,24,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1210,13,0,1612,-9,0,0 +2013,4,22,1,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1700,-7,0,1843,19,1,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1730,2,0,2155,-5,0,0 +2013,4,11,4,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,819,-5,0,1348,-10,0,0 +2013,9,2,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-6,0,809,-5,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,-2,0,1335,-9,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,-3,0,1620,-13,0,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1335,11,0,1505,6,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,835,-1,0,1025,9,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,-1,0,1710,-17,0,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,2000,20,1,2135,48,1,0 +2013,4,16,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,189,1,2135,181,1,0 +2013,8,11,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1500,29,1,1700,16,1,0 +2013,7,8,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1255,0,0,1405,-4,0,0 +2013,10,13,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,650,-5,0,929,-8,0,0 +2013,10,10,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,635,2,0,755,-6,0,0 +2013,6,16,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1120,42,1,1315,13,0,0 +2013,7,20,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,1,0,951,-10,0,0 +2013,10,1,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1950,-7,0,2055,-7,0,0 +2013,7,1,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,0,0,1653,5,0,0 +2013,10,31,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-5,0,1438,-17,0,0 +2013,8,25,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2015,-2,0,2125,-8,0,0 +2013,4,9,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,-5,0,1122,-32,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2145,-5,0,2302,10,0,0 +2013,5,13,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,605,3,0,745,1,0,0 +2013,5,12,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-4,0,1752,1,0,0 +2013,6,5,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-4,0,1340,-3,0,0 +2013,5,23,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,735,-4,0,926,-8,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,900,-5,0,1250,-20,0,0 +2013,7,1,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,-6,0,1145,-7,0,0 +2013,9,11,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1215,-6,0,1501,-19,0,0 +2013,6,7,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,630,-1,0,740,0,0,0 +2013,5,7,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,2120,-6,0,5,-16,0,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1723,15,1,1946,-2,0,0 +2013,5,31,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1255,-5,0,1550,-24,0,0 +2013,5,20,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1000,3,0,1050,-2,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1540,224,1,1930,209,1,0 +2013,10,26,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1844,-2,0,2056,-10,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,34,1,1040,31,1,0 +2013,4,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1840,-18,0,0 +2013,6,25,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,835,-5,0,1215,-13,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2233,15,1,100,8,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-1,0,1155,12,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2011,-4,0,2346,-7,0,0 +2013,9,27,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1000,-10,0,1030,-18,0,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1925,4,0,2220,-15,0,0 +2013,10,25,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,5,0,1625,-11,0,0 +2013,4,19,5,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,844,-3,0,0 +2013,5,7,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,615,-3,0,717,-17,0,0 +2013,5,27,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,605,-2,0,1436,8,0,0 +2013,8,31,6,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1119,13,0,1329,5,0,0 +2013,5,12,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,742,-10,0,926,6,0,0 +2013,10,9,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1051,-3,0,1310,-7,0,0 +2013,5,15,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,3,0,1725,0,0,0 +2013,10,29,2,FL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1037,-3,0,1332,-19,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,845,17,1,1025,1,0,0 +2013,9,9,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,0,0,2100,0,0,0 +2013,7,25,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1033,-2,0,1405,-9,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1813,17,1,2012,13,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1915,1,0,2050,-8,0,0 +2013,9,2,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1141,-9,0,1432,-15,0,0 +2013,8,21,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1610,3,0,1735,1,0,0 +2013,6,13,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,545,-4,0,859,-20,0,0 +2013,7,22,1,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,732,-1,0,1046,-2,0,0 +2013,8,25,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1349,-7,0,1717,-10,0,0 +2013,6,23,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1110,1,0,1400,-8,0,0 +2013,8,6,2,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,-6,0,1955,-9,0,0 +2013,9,15,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1613,-2,0,1728,2,0,0 +2013,8,16,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1135,0,0,1330,-4,0,0 +2013,8,13,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-2,0,635,8,0,0 +2013,8,9,5,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-8,0,1545,2,0,0 +2013,10,17,4,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1419,0,0,1600,-4,0,0 +2013,8,19,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,42,1,2208,34,1,0 +2013,5,17,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,935,1,0,1025,-3,0,0 +2013,9,2,1,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,-9,0,1129,21,1,0 +2013,7,25,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,124,1,1756,128,1,0 +2013,8,28,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1110,-3,0,1220,-3,0,0 +2013,6,15,6,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1235,-1,0,2100,-34,0,0 +2013,4,1,1,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,700,-4,0,1011,-11,0,0 +2013,5,19,7,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1650,25,1,1845,13,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1340,0,0,1710,-6,0,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,16,1,2220,9,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-3,0,1349,-16,0,0 +2013,5,13,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1710,-10,0,2000,-28,0,0 +2013,5,22,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,655,74,1,741,71,1,0 +2013,5,11,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,630,-3,0,905,-14,0,0 +2013,8,23,5,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,825,-7,0,1130,-21,0,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,3,0,2355,4,0,0 +2013,5,3,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,922,-6,0,1235,1,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1010,2,0,1420,-1,0,0 +2013,6,26,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1211,-6,0,1405,-10,0,0 +2013,10,1,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1348,-6,0,0 +2013,5,14,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,840,-6,0,1053,-9,0,0 +2013,5,10,5,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1115,22,1,1445,20,1,0 +2013,8,16,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1710,-2,0,1840,7,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,800,-4,0,924,-16,0,0 +2013,10,21,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,955,-7,0,1140,0,0,0 +2013,10,8,2,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1619,-5,0,2100,1,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1941,-4,0,2102,4,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1325,11,0,1530,8,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1135,-5,0,1235,0,0,0 +2013,6,3,1,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,600,-2,0,820,3,0,0 +2013,8,17,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1500,60,1,1540,58,1,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1410,0,0,1615,4,0,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,30,1,1835,42,1,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1550,11,0,1810,12,0,0 +2013,5,30,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1346,-1,0,1551,-6,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,8,0,1704,7,0,0 +2013,5,16,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,941,-12,0,0 +2013,8,10,6,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1237,3,0,1653,-11,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,-7,0,1050,-20,0,0 +2013,5,31,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-9,0,1644,-24,0,0 +2013,5,26,7,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,945,-8,0,1240,-36,0,0 +2013,7,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1308,-4,0,1435,-9,0,0 +2013,10,13,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1345,14,0,1445,17,1,0 +2013,5,13,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1950,53,1,2150,46,1,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1940,93,1,2109,62,1,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1625,18,1,1740,9,0,0 +2013,6,24,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,14,0,2259,-6,0,0 +2013,5,2,4,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1543,-4,0,1934,11,0,0 +2013,4,16,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-4,0,1027,-2,0,0 +2013,7,7,7,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1120,-4,0,1355,-19,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,1325,0,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1155,-1,0,1937,-3,0,0 +2013,6,3,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,829,0,,1024,0,1,1 +2013,10,17,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,-6,0,2145,-3,0,0 +2013,7,13,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2016,76,1,2251,87,1,0 +2013,8,21,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,0,0,1641,6,0,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2101,58,1,130,48,1,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,160,1,2137,155,1,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,2,0,1745,-1,0,0 +2013,8,15,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1330,-1,0,1445,-7,0,0 +2013,10,8,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2134,-7,0,2206,-8,0,0 +2013,6,11,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1220,0,0,1315,-1,0,0 +2013,4,10,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1610,155,1,1859,161,1,0 +2013,7,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,752,40,1,918,45,1,0 +2013,9,15,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,9,0,2352,6,0,0 +2013,7,10,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1121,0,,1209,0,1,1 +2013,6,11,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1156,2,0,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,755,-1,0,1055,-20,0,0 +2013,8,1,4,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1555,0,,1739,0,1,1 +2013,4,9,2,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1655,-4,0,1825,-2,0,0 +2013,7,1,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,615,-4,0,1141,-16,0,0 +2013,8,2,5,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1856,-5,0,2035,-8,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1916,9,0,2102,-17,0,0 +2013,8,9,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1955,104,1,2145,105,1,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,-5,0,1401,-16,0,0 +2013,6,8,6,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,612,-5,0,938,-28,0,0 +2013,7,16,2,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,810,78,1,1110,68,1,0 +2013,8,29,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1925,-9,0,2050,-15,0,0 +2013,8,9,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1500,73,1,2330,76,1,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,2,0,2140,-7,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-2,0,1317,8,0,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1005,-3,0,1438,1,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1957,74,1,2142,56,1,0 +2013,9,21,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,17,1,1304,-16,0,0 +2013,10,19,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-1,0,1737,0,0,0 +2013,6,19,3,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,2,0,2055,4,0,0 +2013,9,13,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,730,-6,0,820,-6,0,0 +2013,4,3,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1320,1,0,1620,-10,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1120,3,0,1417,-10,0,0 +2013,7,22,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,1,0,925,3,0,0 +2013,6,7,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,8,0,2327,11,0,0 +2013,4,15,1,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2325,-10,0,520,-28,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2125,4,0,2235,-5,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,615,-1,0,745,-11,0,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1850,47,1,2330,43,1,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,7,0,2034,2,0,0 +2013,6,10,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1415,-6,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,905,24,1,1220,47,1,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,-1,0,1200,-2,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,-4,0,1025,-14,0,0 +2013,8,3,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,-6,0,1305,-1,0,0 +2013,5,29,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-3,0,1031,0,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,-6,0,2221,-9,0,0 +2013,6,1,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1215,13,0,1420,16,1,0 +2013,10,28,1,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1646,-4,0,1739,-19,0,0 +2013,4,25,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,1403,-31,0,0 +2013,5,27,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1055,-13,0,0 +2013,6,24,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,830,-6,0,1015,-21,0,0 +2013,9,22,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-9,0,1545,-10,0,0 +2013,5,16,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1335,-4,0,1435,-7,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,905,17,1,1145,11,0,0 +2013,5,25,6,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,804,-3,0,924,-6,0,0 +2013,10,28,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-2,0,1220,-2,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2040,33,1,2155,54,1,0 +2013,9,15,7,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1716,-12,0,1948,-23,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-7,0,1300,-6,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,0,0,1349,-9,0,0 +2013,8,17,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1655,-1,0,1941,-23,0,0 +2013,10,6,7,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,0,0,812,6,0,0 +2013,5,30,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1250,-2,0,1548,0,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,-1,0,1920,-4,0,0 +2013,8,27,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1735,25,1,1825,19,1,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1600,-6,0,1851,-11,0,0 +2013,9,27,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,0,0,1249,-3,0,0 +2013,7,28,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2050,47,1,2205,50,1,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,-2,0,1037,-14,0,0 +2013,10,1,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1555,-2,0,1725,0,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,721,-3,0,1031,-13,0,0 +2013,4,26,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,10,0,1340,66,1,0 +2013,10,11,5,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1100,4,0,1335,-4,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-3,0,1001,-17,0,0 +2013,4,7,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,2,0,2133,1,0,0 +2013,7,29,1,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1306,-3,0,1633,-21,0,0 +2013,10,15,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-3,0,1638,1,0,0 +2013,4,12,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,12,0,1400,16,1,0 +2013,5,11,6,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,934,-4,0,1110,-9,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1448,-2,0,1539,-8,0,0 +2013,10,23,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-9,0,1349,-22,0,0 +2013,10,4,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,21,1,1542,9,0,0 +2013,5,18,6,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-5,0,1017,-13,0,0 +2013,7,16,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,920,-2,0,1010,-7,0,0 +2013,5,22,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,720,-3,0,825,-10,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2140,8,0,2255,-20,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-3,0,1349,-7,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1042,-1,0,1152,-7,0,0 +2013,4,4,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,0,0,1650,-6,0,0 +2013,7,22,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,61,1,2135,110,1,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1209,-2,0,1531,9,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-1,0,2320,3,0,0 +2013,8,14,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,50,1,1800,42,1,0 +2013,7,4,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1235,-3,0,1505,-14,0,0 +2013,7,28,7,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1307,-3,0,1459,6,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,920,10,0,1110,1,0,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1520,0,0,1707,-5,0,0 +2013,6,2,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,-2,0,2209,-11,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,0,0,1010,-5,0,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2313,-2,0,9,27,1,0 +2013,9,24,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1158,-5,0,1243,-13,0,0 +2013,5,28,2,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1345,-11,0,1530,-27,0,0 +2013,6,12,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,545,0,,709,0,1,1 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,0,0,1323,-7,0,0 +2013,6,3,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-5,0,1634,11,0,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,-10,0,1730,16,1,0 +2013,4,13,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1800,-9,0,1900,-16,0,0 +2013,6,7,5,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-5,0,1722,-14,0,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,-2,0,1435,-18,0,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-1,0,1254,-3,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,2,0,1635,-20,0,0 +2013,10,14,1,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,10,0,1400,9,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,815,2,0,930,1,0,0 +2013,10,14,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1850,-4,0,2321,-27,0,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1420,-27,0,0 +2013,6,5,3,EV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1440,8,0,1640,9,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2055,41,1,2200,36,1,0 +2013,9,1,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,-10,0,543,-6,0,0 +2013,7,24,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1740,102,1,1812,116,1,0 +2013,7,25,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,720,46,1,750,40,1,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,23,1,1925,13,0,0 +2013,6,4,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-9,0,1155,-20,0,0 +2013,9,18,3,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,4,0,1555,-7,0,0 +2013,10,27,7,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1720,5,0,2005,0,0,0 +2013,6,2,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1025,26,1,1215,40,1,0 +2013,7,31,3,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,76,1,1039,74,1,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1315,9,0,1645,17,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,-1,0,1736,10,0,0 +2013,4,28,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1639,0,0,1850,-1,0,0 +2013,6,25,2,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-1,0,1314,-8,0,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1930,74,1,2305,50,1,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,-6,0,1357,1,0,0 +2013,7,1,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1931,110,1,2320,107,1,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,635,5,0,1005,2,0,0 +2013,10,3,4,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,818,-7,0,930,-17,0,0 +2013,5,11,6,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,0,,1020,0,1,1 +2013,7,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,820,-1,0,945,-2,0,0 +2013,4,22,1,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,605,-7,0,729,-5,0,0 +2013,6,4,2,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,6,0,1812,22,1,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2115,16,1,2240,7,0,0 +2013,8,4,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1831,-10,0,1945,-17,0,0 +2013,7,12,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,3,0,1335,-5,0,0 +2013,9,8,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1500,-5,0,1800,-5,0,0 +2013,7,20,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,38,1,2049,28,1,0 +2013,5,11,6,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,950,-2,0,1110,-7,0,0 +2013,9,17,2,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,805,-3,0,935,-13,0,0 +2013,7,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2007,-2,0,2108,-15,0,0 +2013,7,4,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,8,0,1755,2,0,0 +2013,7,12,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1315,19,1,1410,12,0,0 +2013,7,16,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1018,50,1,1210,86,1,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1925,78,1,2040,71,1,0 +2013,7,22,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1454,-3,0,1629,-24,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2145,14,0,2305,11,0,0 +2013,10,4,5,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,0,0,813,-9,0,0 +2013,5,6,1,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,-7,0,2039,-41,0,0 +2013,9,10,2,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,955,-8,0,1135,-6,0,0 +2013,7,9,2,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2210,-9,0,30,-27,0,0 +2013,9,3,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1935,-4,0,2250,5,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-3,0,1022,-14,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,1,0,1250,0,0,0 +2013,7,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,14,0,1600,-1,0,0 +2013,6,2,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1000,-6,0,1254,-8,0,0 +2013,4,4,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,550,-10,0,858,-1,0,0 +2013,6,13,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,635,3,0,735,0,0,0 +2013,9,16,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-2,0,1840,-3,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1250,-5,0,1420,-16,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,8,0,805,44,1,0 +2013,10,16,3,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,535,-10,0,752,-20,0,0 +2013,4,3,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-6,0,1019,0,0,0 +2013,9,23,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1220,-4,0,1318,-6,0,0 +2013,10,7,1,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1325,0,0,1530,-18,0,0 +2013,4,23,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,-11,0,2156,-24,0,0 +2013,7,1,1,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,946,15,1,1140,15,1,0 +2013,7,23,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,850,-3,0,1030,3,0,0 +2013,9,8,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,12,0,1803,-5,0,0 +2013,5,21,2,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,700,-5,0,945,-25,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-5,0,1243,-29,0,0 +2013,6,2,7,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,-1,0,1105,-7,0,0 +2013,8,2,5,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,-12,0,2204,-12,0,0 +2013,7,31,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1530,-8,0,1721,3,0,0 +2013,4,17,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,12,0,2110,0,0,0 +2013,4,26,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,811,70,1,905,72,1,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,4,0,2120,-4,0,0 +2013,7,6,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-7,0,925,-14,0,0 +2013,8,29,4,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,925,-3,0,1145,-17,0,0 +2013,6,11,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,-1,0,2120,-14,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1325,1,0,1850,-3,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1045,26,1,1250,21,1,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1155,13,0,1330,11,0,0 +2013,4,30,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,902,-9,0,951,-13,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1602,2,0,1715,-6,0,0 +2013,8,17,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1945,-5,0,2152,-18,0,0 +2013,4,5,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,645,-10,0,849,-1,0,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,835,-2,0,1126,-6,0,0 +2013,7,25,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1428,-10,0,1626,-29,0,0 +2013,6,5,3,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,2005,-8,0,2309,-14,0,0 +2013,7,25,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,13,0,1450,25,1,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1715,9,0,1905,11,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-2,0,956,22,1,0 +2013,10,18,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-3,0,1657,-16,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,-4,0,1203,-10,0,0 +2013,8,28,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-6,0,1445,-30,0,0 +2013,7,1,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,805,-2,0,922,-15,0,0 +2013,8,15,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,0,,2126,0,1,1 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,-1,0,2310,-7,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,-4,0,1406,-8,0,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1000,1,0,1225,13,0,0 +2013,5,15,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,710,-6,0,1540,12,0,0 +2013,10,13,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1639,1,0,1826,0,0,0 +2013,5,18,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,800,-23,0,0 +2013,4,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1655,-7,0,1755,14,0,0 +2013,7,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1650,19,1,1805,6,0,0 +2013,7,30,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,5,0,1320,-7,0,0 +2013,6,30,7,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1410,47,1,1750,60,1,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,945,-5,0,1100,-8,0,0 +2013,7,16,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,-7,0,2322,-2,0,0 +2013,8,29,4,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1420,-7,0,1551,-5,0,0 +2013,7,3,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1609,78,1,1954,83,1,0 +2013,8,12,1,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,24,1,2145,32,1,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,930,-4,0,1210,-10,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,-8,0,1419,-3,0,0 +2013,10,8,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-7,0,1005,-21,0,0 +2013,5,11,6,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-6,0,1006,5,0,0 +2013,5,1,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-2,0,1033,-6,0,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1824,1,0,2000,4,0,0 +2013,8,10,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,620,98,1,931,89,1,0 +2013,10,1,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,1355,7,0,1600,-27,0,0 +2013,7,29,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1606,-1,0,1915,-12,0,0 +2013,8,8,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1323,0,,1455,0,1,1 +2013,5,22,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,0,0,1755,-3,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,750,3,0,1120,2,0,0 +2013,8,27,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-8,0,916,2,0,0 +2013,10,15,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1716,-5,0,1953,-15,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1423,2,0,1629,-11,0,0 +2013,8,31,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1026,-5,0,1153,-4,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1156,-7,0,2035,0,0,0 +2013,9,25,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1830,38,1,2155,26,1,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,91,1,1835,88,1,0 +2013,5,1,3,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,951,-19,0,0 +2013,4,24,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-3,0,917,-6,0,0 +2013,6,14,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,907,-4,0,1129,1,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1520,18,1,1810,15,1,0 +2013,10,29,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,645,-2,0,835,-2,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1910,14,0,2350,14,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,820,-5,0,925,-19,0,0 +2013,7,31,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-3,0,1345,-11,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,-1,0,1555,-5,0,0 +2013,5,27,1,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1040,-7,0,1425,-18,0,0 +2013,7,23,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1630,44,1,1735,36,1,0 +2013,10,25,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1000,14,0,1055,7,0,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2007,-7,0,2108,-7,0,0 +2013,5,10,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,-4,0,1154,-7,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1730,-1,0,2014,-20,0,0 +2013,8,29,4,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,835,-7,0,933,14,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,5,0,1047,17,1,0 +2013,7,28,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,755,0,0,920,-4,0,0 +2013,6,18,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-2,0,1150,1,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,1,0,1022,-5,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1115,0,0,1225,-5,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2036,-4,0,2145,-15,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1730,6,0,1927,1,0,0 +2013,9,29,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1319,-2,0,1817,-9,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-8,0,1835,2,0,0 +2013,10,7,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-7,0,800,-13,0,0 +2013,7,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1502,-3,0,1729,-3,0,0 +2013,6,18,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,605,-5,0,635,-8,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1630,18,1,1835,2,0,0 +2013,5,11,6,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,2,0,2234,-10,0,0 +2013,8,8,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-5,0,1405,0,0,0 +2013,10,25,5,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1349,-2,0,1556,2,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,849,-3,0,1517,-4,0,0 +2013,8,4,7,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-10,0,1105,-15,0,0 +2013,5,31,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1615,18,1,1740,7,0,0 +2013,8,9,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-8,0,700,-17,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2050,13,0,2210,27,1,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,710,-1,0,845,0,0,0 +2013,10,16,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,545,-1,0,855,-33,0,0 +2013,10,5,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1616,0,0,1800,-27,0,0 +2013,8,24,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1726,7,0,1859,-3,0,0 +2013,7,16,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,1,0,1902,-1,0,0 +2013,5,14,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,-9,0,1654,-13,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,829,-5,0,944,-23,0,0 +2013,10,22,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,0,0,648,-6,0,0 +2013,9,13,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-4,0,1655,9,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,1,0,1000,-7,0,0 +2013,6,25,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,78,1,1939,74,1,0 +2013,6,19,3,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1150,-1,0,1316,13,0,0 +2013,6,10,1,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-4,0,707,-15,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,-2,0,1201,11,0,0 +2013,6,21,5,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,-5,0,1833,-3,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,3,0,1958,-1,0,0 +2013,8,6,2,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1210,23,1,1257,12,0,0 +2013,8,10,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,745,2,0,840,-3,0,0 +2013,5,5,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,-3,0,726,-16,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2040,-8,0,2226,-15,0,0 +2013,8,7,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1425,-5,0,1615,-12,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,21,1,1345,13,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,800,10,0,1320,-7,0,0 +2013,5,2,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,630,0,0,700,5,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1745,3,0,1909,7,0,0 +2013,5,29,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-10,0,1035,-9,0,0 +2013,7,20,6,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1938,157,1,2059,147,1,0 +2013,8,8,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-6,0,1349,18,1,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2205,54,1,2329,46,1,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,620,7,0,750,-4,0,0 +2013,4,25,4,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,-7,0,930,9,0,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1540,17,1,1630,14,0,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1135,-2,0,1345,-26,0,0 +2013,8,3,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-7,0,2114,-20,0,0 +2013,7,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,740,-7,0,836,-12,0,0 +2013,7,16,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,645,-9,0,830,-7,0,0 +2013,10,20,7,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,531,5,0,653,-3,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2015,4,0,2130,22,1,0 +2013,5,25,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,830,-6,0,1121,-4,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1345,-11,0,1608,31,1,0 +2013,9,12,4,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1703,-8,0,1928,-5,0,0 +2013,7,11,4,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1635,-4,0,1938,-23,0,0 +2013,6,26,3,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,840,89,1,1136,143,1,0 +2013,5,2,4,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-7,0,1630,-23,0,0 +2013,4,30,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1955,9,0,2110,-6,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,952,12,0,1331,1,0,0 +2013,8,10,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2035,-4,0,505,-11,0,0 +2013,8,15,4,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-6,0,910,-15,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,630,-2,0,800,-12,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,900,7,0,1041,13,0,0 +2013,4,4,4,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1235,7,0,1657,12,0,0 +2013,7,12,5,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,625,-4,0,720,-20,0,0 +2013,6,5,3,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,2215,15,1,617,3,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,925,92,1,1050,98,1,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,810,-4,0,925,-7,0,0 +2013,4,26,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-6,0,843,-16,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1353,0,0,1606,-12,0,0 +2013,6,27,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,46,1,1655,52,1,0 +2013,7,13,6,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-7,0,1612,-10,0,0 +2013,6,9,7,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,4,0,1616,-17,0,0 +2013,6,20,4,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1510,7,0,1611,6,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,-1,0,1230,-1,0,0 +2013,7,15,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1407,-4,0,2100,22,1,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,700,1,0,925,-7,0,0 +2013,7,5,5,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2100,0,0,507,0,0,0 +2013,4,14,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,-1,0,1200,-3,0,0 +2013,10,27,7,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1656,-3,0,1948,-15,0,0 +2013,7,16,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-6,0,2000,5,0,0 +2013,7,15,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,11,0,1809,31,1,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1140,67,1,1311,156,1,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2225,0,,120,0,1,1 +2013,6,29,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-3,0,1630,-8,0,0 +2013,9,13,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1956,20,1,2203,2,0,0 +2013,5,31,5,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-7,0,1045,-14,0,0 +2013,7,31,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,-6,0,2025,-5,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1539,-2,0,1700,-4,0,0 +2013,4,26,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,78,1,659,115,1,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-6,0,2149,-1,0,0 +2013,8,12,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2120,0,0,2240,15,1,0 +2013,9,1,7,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1340,34,1,2159,22,1,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1315,9,0,1540,1,0,0 +2013,9,24,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,0,0,830,-16,0,0 +2013,4,20,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1050,2,0,1215,-17,0,0 +2013,7,29,1,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,0,,2019,0,1,1 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-2,0,2357,-8,0,0 +2013,6,17,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-7,0,1420,17,1,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1012,2,0,1332,-18,0,0 +2013,7,8,1,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1741,-5,0,1904,-2,0,0 +2013,7,2,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,99,1,2140,103,1,0 +2013,7,21,7,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-10,0,759,-7,0,0 +2013,6,25,2,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-5,0,1635,-8,0,0 +2013,5,11,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1941,-4,0,2101,-13,0,0 +2013,8,13,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,835,-19,0,0 +2013,7,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,171,1,1739,168,1,0 +2013,10,17,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1050,27,1,1502,4,0,0 +2013,10,29,2,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1650,2,0,2002,18,1,0 +2013,10,11,5,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1353,1,0,1635,-8,0,0 +2013,8,19,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,-9,0,1940,3,0,0 +2013,4,6,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,25,1,945,8,0,0 +2013,8,23,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1929,-3,0,2137,-8,0,0 +2013,4,29,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1800,-2,0,2055,-19,0,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1135,23,1,1250,12,0,0 +2013,9,16,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,650,-9,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2304,-3,0,15,-3,0,0 +2013,4,13,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,756,-6,0,850,-14,0,0 +2013,4,4,4,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1402,-15,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,-3,0,955,-13,0,0 +2013,5,30,4,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,816,-5,0,934,-10,0,0 +2013,7,17,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,545,-7,0,859,-12,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1347,-2,0,1417,-9,0,0 +2013,5,13,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1050,-4,0,1323,-19,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,750,2,0,1040,-1,0,0 +2013,7,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,2036,-7,0,2353,-17,0,0 +2013,9,24,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,825,-8,0,1050,-2,0,0 +2013,6,1,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-4,0,1142,5,0,0 +2013,9,10,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,950,77,1,1116,87,1,0 +2013,10,7,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-6,0,1010,-6,0,0 +2013,8,23,5,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,-3,0,2256,-2,0,0 +2013,7,5,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1752,2,0,2010,-12,0,0 +2013,4,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1027,-5,0,1138,5,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1500,6,0,1630,-3,0,0 +2013,10,10,4,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-6,0,2004,-7,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2235,10,0,2330,4,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1210,3,0,1425,-14,0,0 +2013,8,8,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1745,14,0,2145,17,1,0 +2013,5,26,7,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1615,-6,0,1805,-8,0,0 +2013,5,16,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,2005,-11,0,2200,-20,0,0 +2013,7,17,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1638,-7,0,1747,-4,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1740,-2,0,2110,-15,0,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,700,-5,0,1112,12,0,0 +2013,8,2,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,-4,0,1543,1,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1959,-4,0,2118,-9,0,0 +2013,9,20,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,-5,0,1112,-9,0,0 +2013,7,18,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1045,-5,0,1259,-1,0,0 +2013,10,15,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,706,-7,0,929,7,0,0 +2013,8,3,6,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1317,-4,0,1505,-13,0,0 +2013,6,1,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-3,0,1225,-12,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1745,-2,0,2200,-8,0,0 +2013,6,15,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-10,0,1636,-19,0,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1435,9,0,1601,6,0,0 +2013,4,29,1,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1550,2,0,1700,-7,0,0 +2013,4,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-1,0,2125,-9,0,0 +2013,5,31,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,855,-7,0,1235,-12,0,0 +2013,8,21,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1229,-2,0,1405,-14,0,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1921,-2,0,2201,-42,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1215,7,0,1355,2,0,0 +2013,6,11,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,2,0,1245,-5,0,0 +2013,5,25,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1248,-7,0,1523,1,0,0 +2013,8,23,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,13,0,2240,12,0,0 +2013,4,1,1,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2059,-5,0,2259,7,0,0 +2013,8,10,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,900,10,0,1145,11,0,0 +2013,6,30,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,5,0,2135,-11,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-1,0,1135,-3,0,0 +2013,10,18,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-2,0,819,11,0,0 +2013,5,20,1,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,-9,0,1025,-11,0,0 +2013,10,8,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,635,0,0,925,-11,0,0 +2013,5,19,7,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1840,14,0,1925,13,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,124,1,1020,109,1,0 +2013,7,29,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1753,-5,0,1900,-13,0,0 +2013,9,8,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1655,-2,0,1800,-19,0,0 +2013,10,11,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1052,-8,0,1215,-16,0,0 +2013,10,5,6,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,840,-1,0,1050,-21,0,0 +2013,8,24,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1355,0,0,1619,-19,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1640,98,1,1820,113,1,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1640,1,0,1745,3,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,1,0,1830,2,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2255,-3,0,2355,-13,0,0 +2013,9,17,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,611,-5,0,843,-3,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1215,-8,0,1550,-19,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1525,20,1,1650,17,1,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1310,-1,0,1535,-7,0,0 +2013,7,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1210,0,0,1335,-9,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2150,23,1,2250,22,1,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,-3,0,1927,-12,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1555,108,1,1830,90,1,0 +2013,6,3,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-7,0,1857,-5,0,0 +2013,9,4,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,14,0,1355,7,0,0 +2013,7,2,2,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,710,-6,0,955,-45,0,0 +2013,6,10,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,24,1,1610,7,0,0 +2013,6,13,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,830,0,0,1050,6,0,0 +2013,10,16,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2005,11,0,2140,-8,0,0 +2013,4,9,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-7,0,1205,-13,0,0 +2013,10,15,2,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,835,11,0,1110,-5,0,0 +2013,9,3,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1037,-6,0,1139,5,0,0 +2013,9,11,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,827,-5,0,956,-24,0,0 +2013,5,4,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1055,22,1,1225,37,1,0 +2013,9,2,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-4,0,1638,-15,0,0 +2013,10,9,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1729,-15,0,1837,-29,0,0 +2013,5,9,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,11,0,1535,39,1,0 +2013,4,27,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2255,33,1,453,38,1,0 +2013,7,3,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,705,-6,0,913,-20,0,0 +2013,7,18,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1651,54,1,2056,73,1,0 +2013,4,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,905,-10,0,1044,-9,0,0 +2013,7,12,5,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,800,-5,0,952,-4,0,0 +2013,4,5,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1801,35,1,2059,45,1,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1530,5,0,1845,-7,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,610,0,0,835,-2,0,0 +2013,7,5,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,800,-9,0,1049,-3,0,0 +2013,8,29,4,AA,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1840,-3,0,2010,-25,0,0 +2013,6,11,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,700,1,0,815,7,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1840,29,1,2020,30,1,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,-2,0,1530,14,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1700,134,1,1825,123,1,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,-1,0,2308,-7,0,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,-2,0,1712,-14,0,0 +2013,4,27,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1515,5,0,1800,-4,0,0 +2013,4,27,6,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1530,11,0,1705,-2,0,0 +2013,8,12,1,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-5,0,1510,-12,0,0 +2013,4,3,3,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,-5,0,2021,-8,0,0 +2013,10,2,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1440,0,0,1635,-14,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,740,21,1,900,35,1,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,34,1,1850,30,1,0 +2013,8,1,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-1,0,1853,0,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,835,0,0,1105,-6,0,0 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,-4,0,1643,-11,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-7,0,1505,2,0,0 +2013,10,17,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-1,0,2020,-1,0,0 +2013,10,26,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,815,-7,0,915,3,0,0 +2013,10,16,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,720,13,0,845,29,1,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1420,1,0,1645,-24,0,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,-2,0,1640,-9,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1742,-4,0,1916,12,0,0 +2013,8,26,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-4,0,940,-1,0,0 +2013,8,10,6,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,710,-1,0,745,-11,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1622,-2,0,1749,-16,0,0 +2013,4,7,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-5,0,810,-13,0,0 +2013,7,20,6,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-7,0,1625,-5,0,0 +2013,9,13,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1845,-5,0,2134,-39,0,0 +2013,7,9,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,725,-13,0,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,18,1,1953,-1,0,0 +2013,10,19,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,615,-4,0,900,-6,0,0 +2013,5,17,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2325,89,1,520,78,1,0 +2013,10,12,6,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,-5,0,1327,-12,0,0 +2013,10,3,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,608,-3,0,800,1,0,0 +2013,8,14,3,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,637,80,1,830,56,1,0 +2013,6,11,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1510,59,1,1825,45,1,0 +2013,8,6,2,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-6,0,711,-25,0,0 +2013,10,17,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1745,18,1,1915,39,1,0 +2013,5,25,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1955,61,1,2143,60,1,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1941,-7,0,2104,-7,0,0 +2013,5,5,7,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2146,6,0,2251,-5,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,-8,0,1210,-15,0,0 +2013,9,14,6,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1740,45,1,1905,39,1,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1754,72,1,2025,39,1,0 +2013,4,25,4,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,930,-8,0,1244,18,1,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,-3,0,519,-3,0,0 +2013,9,28,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,925,-4,0,1040,-3,0,0 +2013,10,30,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,25,1,2000,44,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,725,-2,0,856,-9,0,0 +2013,5,6,1,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-9,0,1220,-23,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1050,-3,0,1210,-11,0,0 +2013,7,19,5,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1430,9,0,1611,12,0,0 +2013,7,24,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,4,0,1325,10,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2210,12,0,2300,23,1,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,108,1,950,104,1,0 +2013,10,29,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2100,-4,0,2205,-13,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2015,10,0,2230,1,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-5,0,838,-8,0,0 +2013,9,29,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,1017,-11,0,0 +2013,7,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1810,1,0,1935,-4,0,0 +2013,8,8,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,-4,0,1430,2,0,0 +2013,6,18,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1210,-7,0,1320,-23,0,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1651,4,0,2015,1,0,0 +2013,6,5,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1630,-9,0,45,-22,0,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1910,7,0,2145,4,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1524,-9,0,1641,-10,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,715,0,0,810,-10,0,0 +2013,8,28,3,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,805,0,0,950,-13,0,0 +2013,6,20,4,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1518,-4,0,1815,-10,0,0 +2013,7,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,835,10,0,955,1,0,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1930,80,1,2110,75,1,0 +2013,4,14,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,5,0,1108,-9,0,0 +2013,9,9,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1513,-14,0,1635,-12,0,0 +2013,5,31,5,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1104,-10,0,1414,-35,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1611,-5,0,1732,-17,0,0 +2013,7,22,1,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,17,1,2110,18,1,0 +2013,10,23,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-4,0,1455,-5,0,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,6,0,1145,-14,0,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1120,13,0,1715,-1,0,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,0,0,1820,0,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,2,0,1505,11,0,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1231,-4,0,1455,-11,0,0 +2013,4,25,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,745,-2,0,1025,-11,0,0 +2013,6,29,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1130,12,0,1422,6,0,0 +2013,7,10,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,0,0,1130,3,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,855,2,0,1430,11,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1305,-2,0,1540,-10,0,0 +2013,5,21,2,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1507,58,1,1820,45,1,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,940,-6,0,1158,-19,0,0 +2013,9,20,5,9E,12451,Jacksonville International,Jacksonville,FL,12953,LaGuardia,New York,NY,1507,-4,0,1730,-12,0,0 +2013,7,20,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,700,85,1,858,80,1,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1515,1,0,1735,-2,0,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1622,-5,0,1940,1,0,0 +2013,8,2,5,EV,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1743,-4,0,1900,-25,0,0 +2013,4,9,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1455,20,1,1735,11,0,0 +2013,9,26,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,755,0,,1000,0,1,1 +2013,4,9,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1417,-8,0,1550,-7,0,0 +2013,7,30,2,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,627,-13,0,745,-32,0,0 +2013,6,15,6,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1915,23,1,2242,6,0,0 +2013,5,20,1,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,0,0,1014,2,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1025,6,0,1345,4,0,0 +2013,5,22,3,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1251,-3,0,1446,-2,0,0 +2013,7,2,2,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,700,7,0,1155,-5,0,0 +2013,5,14,2,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,841,-3,0,1040,-6,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-5,0,1006,-19,0,0 +2013,5,3,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,733,-6,0,900,13,0,0 +2013,8,20,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,700,13,0,951,-26,0,0 +2013,6,5,3,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,605,-1,0,730,19,1,0 +2013,4,23,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-5,0,1520,-10,0,0 +2013,5,3,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,925,-3,0,1134,-2,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,1,0,1633,5,0,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-8,0,924,6,0,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2047,-9,0,2213,-26,0,0 +2013,6,6,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-6,0,1707,7,0,0 +2013,6,21,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1546,117,1,1801,129,1,0 +2013,4,8,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,645,-1,0,950,-13,0,0 +2013,5,19,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1050,-1,0,1300,-12,0,0 +2013,10,27,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-2,0,1205,1,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-7,0,1809,0,0,0 +2013,6,29,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,0,,1712,0,1,1 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,900,26,1,1203,2,0,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,2,0,1510,-3,0,0 +2013,6,25,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,3,0,1335,6,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2159,14,0,2358,-5,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,8,0,1933,14,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1815,11,0,1940,-15,0,0 +2013,10,29,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,-3,0,2215,-18,0,0 +2013,4,10,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,32,1,1320,19,1,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,915,16,1,1020,22,1,0 +2013,9,11,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-14,0,1331,-52,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1740,2,0,2335,1,0,0 +2013,7,7,7,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,810,5,0,1630,18,1,0 +2013,10,29,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1600,82,1,1835,83,1,0 +2013,7,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,0,,2100,0,1,1 +2013,7,30,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,625,-6,0,1245,-26,0,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2150,-8,0,2334,-19,0,0 +2013,4,26,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,23,1,1955,16,1,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,5,0,1541,-10,0,0 +2013,6,20,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1456,14,0,1658,7,0,0 +2013,5,3,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1057,13,0,1453,1,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2045,29,1,2210,22,1,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,173,1,1750,143,1,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1308,-4,0,1650,-16,0,0 +2013,4,30,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-12,0,1340,-1,0,0 +2013,9,26,4,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,900,-6,0,1125,-2,0,0 +2013,9,22,7,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1704,9,0,1926,23,1,0 +2013,10,17,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1750,2,0,1905,7,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1850,2,0,2330,-4,0,0 +2013,6,22,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,10,0,1805,4,0,0 +2013,4,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2150,15,1,2315,4,0,0 +2013,8,21,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-6,0,1930,-7,0,0 +2013,5,28,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,56,1,558,49,1,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,730,-2,0,1100,-9,0,0 +2013,10,21,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,715,36,1,1424,38,1,0 +2013,4,1,1,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1745,-9,0,2155,-24,0,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2255,-6,0,2359,-2,0,0 +2013,9,24,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,0,0,1049,7,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2049,4,0,2220,-15,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,-2,0,2155,-3,0,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1430,12,0,1520,7,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,704,0,0,928,-12,0,0 +2013,8,23,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,-1,0,1600,-6,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,854,3,0,1214,-1,0,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,9,0,25,1,0,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1540,31,1,1750,19,1,0 +2013,7,21,7,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-1,0,1640,-5,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,735,-5,0,1031,-17,0,0 +2013,8,25,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,19,1,1900,9,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1415,-1,0,1845,-21,0,0 +2013,5,20,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,750,3,0,900,-2,0,0 +2013,4,15,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-1,0,1115,-2,0,0 +2013,6,29,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2205,-6,0,53,-2,0,0 +2013,7,4,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-7,0,1658,14,0,0 +2013,8,4,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1225,-1,0,1320,-1,0,0 +2013,8,20,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,-9,0,2146,-36,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-3,0,1907,-11,0,0 +2013,8,5,1,AS,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,90,1,152,78,1,0 +2013,5,1,3,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,836,-7,0,939,8,0,0 +2013,10,12,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,-5,0,1506,-19,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,-1,0,1135,7,0,0 +2013,6,29,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2147,-3,0,2253,-7,0,0 +2013,4,23,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,628,0,0,1459,-3,0,0 +2013,8,28,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-5,0,1634,19,1,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1000,16,1,1455,-2,0,0 +2013,5,13,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,812,-2,0,909,5,0,0 +2013,10,20,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-1,0,1845,-6,0,0 +2013,4,11,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2055,0,0,2250,12,0,0 +2013,6,6,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,1,0,1435,-8,0,0 +2013,6,21,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-9,0,629,-10,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,850,-5,0,1640,11,0,0 +2013,5,13,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-10,0,1221,-14,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1426,-3,0,1518,-28,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1000,0,0,1315,-17,0,0 +2013,10,4,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,-1,0,1059,-10,0,0 +2013,5,29,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1352,-8,0,1455,1,0,0 +2013,4,13,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-5,0,1611,-22,0,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1325,1,0,1415,0,0,0 +2013,7,26,5,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-9,0,1957,17,1,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1746,-8,0,1931,-24,0,0 +2013,5,13,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,0,0,1355,-16,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-4,0,920,9,0,0 +2013,4,26,5,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1345,-6,0,2204,-11,0,0 +2013,5,31,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1706,0,,1907,0,1,1 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1300,5,0,1410,-15,0,0 +2013,6,17,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1600,-4,0,1650,6,0,0 +2013,7,5,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,-9,0,2128,-14,0,0 +2013,10,21,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1632,-9,0,1904,-19,0,0 +2013,6,29,6,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1715,25,1,1855,6,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,14,0,1415,2,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1905,1,0,2026,-13,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2005,5,0,2154,-6,0,0 +2013,10,27,7,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1305,-4,0,1520,-10,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,718,-3,0,1026,-6,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,822,-1,0,944,-6,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-2,0,1522,-20,0,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,18,1,2205,1,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,820,-3,0,1125,-39,0,0 +2013,10,13,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1500,2,0,1801,-5,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1840,-3,0,1952,-8,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1455,45,1,1950,40,1,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1910,16,1,2212,7,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1215,6,0,1735,-2,0,0 +2013,7,3,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1345,-3,0,1524,5,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,729,-1,0,750,12,0,0 +2013,9,17,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-6,0,815,1,0,0 +2013,7,4,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,4,0,930,-5,0,0 +2013,4,21,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1801,3,0,1921,5,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1425,49,1,1545,34,1,0 +2013,7,20,6,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1227,15,1,1441,2,0,0 +2013,9,26,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-5,0,1601,-18,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,23,1,1159,25,1,0 +2013,9,5,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,640,-3,0,840,-9,0,0 +2013,8,19,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1455,-8,0,1720,-16,0,0 +2013,10,5,6,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1450,-4,0,1618,-12,0,0 +2013,4,10,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2255,59,1,2348,0,1,1 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1010,-2,0,1145,7,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1440,3,0,1755,-1,0,0 +2013,4,1,1,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2055,24,1,2315,26,1,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,15,1,1805,11,0,0 +2013,9,5,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1810,-2,0,1910,-2,0,0 +2013,10,26,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-3,0,1516,-4,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2112,7,0,2313,-18,0,0 +2013,5,10,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-5,0,930,18,1,0 +2013,8,3,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1010,68,1,1125,53,1,0 +2013,9,23,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,-10,0,2120,-8,0,0 +2013,5,1,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-8,0,1445,-8,0,0 +2013,10,8,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1355,-5,0,1710,-11,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,9,0,1830,-7,0,0 +2013,9,12,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1506,15,1,1835,90,1,0 +2013,5,3,5,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-4,0,1515,-22,0,0 +2013,10,27,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1558,11,0,20,-19,0,0 +2013,9,29,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,9,0,2130,-16,0,0 +2013,5,7,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,-4,0,855,-11,0,0 +2013,7,11,4,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2235,152,1,44,142,1,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1355,15,1,1635,15,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1945,-4,0,2050,6,0,0 +2013,8,3,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1355,25,1,1955,-5,0,0 +2013,5,7,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,800,-2,0,0 +2013,5,30,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-11,0,722,-17,0,0 +2013,9,29,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1905,-8,0,1953,-8,0,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,705,8,0,925,-14,0,0 +2013,6,22,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,620,-7,0,910,21,1,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1544,-8,0,1656,-6,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1145,-1,0,1435,-4,0,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1050,-2,0,1904,-9,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,-3,0,1425,-13,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1520,4,0,1809,-34,0,0 +2013,10,6,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-6,0,1958,32,1,0 +2013,6,17,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,51,1,2155,45,1,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1449,-1,0,1629,-6,0,0 +2013,7,27,6,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1524,76,1,1636,66,1,0 +2013,4,13,6,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-4,0,909,1,0,0 +2013,4,23,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1417,-6,0,1517,-17,0,0 +2013,7,18,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1328,-7,0,1530,-18,0,0 +2013,8,21,3,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,26,1,810,40,1,0 +2013,10,10,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1015,0,0,1120,-13,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2030,-8,0,2315,-12,0,0 +2013,9,20,5,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1850,16,1,1945,6,0,0 +2013,5,7,2,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,177,1,958,167,1,0 +2013,7,1,1,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2043,0,0,2145,1,0,0 +2013,4,15,1,OO,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1733,56,1,2104,90,1,0 +2013,9,19,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,-1,0,1850,-11,0,0 +2013,5,19,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,910,-5,0,1024,-12,0,0 +2013,9,3,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-6,0,730,-13,0,0 +2013,10,14,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,2,0,725,-11,0,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1600,87,1,1746,70,1,0 +2013,5,1,3,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2050,-2,0,2229,-21,0,0 +2013,6,1,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1030,-2,0,1505,-4,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-8,0,1150,-6,0,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,5,0,2009,-6,0,0 +2013,6,19,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,-8,0,952,-13,0,0 +2013,10,26,6,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1338,-1,0,1523,-8,0,0 +2013,4,16,2,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1440,19,1,1750,4,0,0 +2013,6,7,5,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,11,0,1735,-16,0,0 +2013,8,15,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1010,-1,0,1140,-9,0,0 +2013,9,21,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1235,68,1,1355,70,1,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1310,-2,0,1656,-2,0,0 +2013,9,17,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,1,0,2020,-9,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,925,12,0,1055,10,0,0 +2013,4,19,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,646,-6,0,812,-14,0,0 +2013,4,23,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,-3,0,1615,8,0,0 +2013,8,11,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,16,1,1915,42,1,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1410,13,0,1624,0,0,0 +2013,8,5,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1611,21,1,15,-5,0,0 +2013,9,14,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,123,1,1220,139,1,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2030,155,1,2330,144,1,0 +2013,9,22,7,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-5,0,1600,-24,0,0 +2013,10,30,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1429,0,0,1523,28,1,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,0,0,1838,-15,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,-2,0,915,-12,0,0 +2013,9,25,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1740,-11,0,1930,3,0,0 +2013,4,16,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,915,0,0,1515,-29,0,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1515,32,1,1716,36,1,0 +2013,6,16,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2032,2,0,2146,11,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1220,64,1,1315,70,1,0 +2013,7,30,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-1,0,1238,-3,0,0 +2013,8,3,6,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1100,2,0,1230,-1,0,0 +2013,8,29,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1845,30,1,2010,21,1,0 +2013,10,25,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1625,-2,0,1730,4,0,0 +2013,4,15,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,12,0,1035,11,0,0 +2013,4,6,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,705,-5,0,926,-22,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,-3,0,1712,-13,0,0 +2013,5,6,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,22,1,2034,11,0,0 +2013,7,3,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-3,0,910,-2,0,0 +2013,5,22,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-4,0,2037,-4,0,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,816,-11,0,1141,-1,0,0 +2013,10,8,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1747,71,1,1855,52,1,0 +2013,4,17,3,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1024,197,1,1148,190,1,0 +2013,4,12,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,915,-1,0,1215,-9,0,0 +2013,4,23,2,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2105,0,0,2242,0,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1235,0,0,1555,-11,0,0 +2013,4,6,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,820,-1,0,1020,-1,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-4,0,1636,-4,0,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1535,5,0,1850,-6,0,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-4,0,1630,10,0,0 +2013,7,19,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,-7,0,1855,4,0,0 +2013,4,29,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,13,0,1349,10,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1300,45,1,1530,71,1,0 +2013,4,13,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,1940,-17,0,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,18,1,1121,7,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-8,0,2125,-13,0,0 +2013,6,12,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1045,-6,0,1220,-20,0,0 +2013,7,18,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,630,-6,0,800,-11,0,0 +2013,5,19,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,14,0,1920,13,0,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1956,-3,0,2301,17,1,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1710,-3,0,1819,-8,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,-7,0,1915,-28,0,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-3,0,1630,-14,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,4,0,1806,27,1,0 +2013,5,31,5,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,21,1,1912,7,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,2,0,1359,-15,0,0 +2013,4,29,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-6,0,1024,-15,0,0 +2013,9,17,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,625,2,0,1010,-21,0,0 +2013,10,10,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1005,11,0,1138,11,0,0 +2013,4,29,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,30,1,1650,19,1,0 +2013,7,12,5,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,1,0,935,16,1,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-6,0,1833,-10,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,0,,1054,0,1,1 +2013,7,7,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,0,,2152,0,1,1 +2013,8,27,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,1614,-14,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,-3,0,1115,-16,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2200,9,0,2305,10,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1700,14,0,2011,7,0,0 +2013,9,3,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13244,Memphis International,Memphis,TN,1655,-4,0,1800,6,0,0 +2013,7,31,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,0,,1505,0,1,1 +2013,8,16,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,854,4,0,1028,8,0,0 +2013,10,18,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-7,0,1005,-16,0,0 +2013,4,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1130,-1,0,1220,5,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2105,8,0,2220,-5,0,0 +2013,9,9,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-5,0,1822,-17,0,0 +2013,7,14,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-11,0,1356,-15,0,0 +2013,4,15,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1410,13,0,1650,2,0,0 +2013,8,8,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-6,0,755,17,1,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1955,-3,0,2134,-15,0,0 +2013,6,30,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1640,-10,0,1810,-20,0,0 +2013,9,8,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-1,0,1130,-28,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,21,1,1546,1,0,0 +2013,9,26,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1509,5,0,1800,-1,0,0 +2013,10,27,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,-5,0,1630,-2,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2005,13,0,2305,10,0,0 +2013,4,27,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1150,3,0,1315,7,0,0 +2013,4,5,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2000,-3,0,2059,0,0,0 +2013,10,31,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1040,-4,0,1200,20,1,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,715,-8,0,844,-16,0,0 +2013,6,13,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,22,1,1150,22,1,0 +2013,5,11,6,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-4,0,1044,-19,0,0 +2013,4,5,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,12,0,1410,6,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,16,1,2220,19,1,0 +2013,10,2,3,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1840,15,1,1955,3,0,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-8,0,1314,-21,0,0 +2013,9,3,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1600,8,0,2155,-1,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,820,-9,0,1115,-4,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1830,2,0,1940,-9,0,0 +2013,5,9,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-3,0,1348,-16,0,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-3,0,2159,19,1,0 +2013,7,11,4,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1655,-6,0,1837,8,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,2,0,1505,7,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1305,0,0,1632,-6,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-3,0,906,-14,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1830,11,0,2156,14,0,0 +2013,5,28,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,600,0,0,655,-3,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2225,-1,0,2357,-18,0,0 +2013,5,6,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1040,-1,0,1205,-5,0,0 +2013,8,28,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,845,1,0,1115,7,0,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,0,,725,0,1,1 +2013,6,15,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1326,19,1,1621,-1,0,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-2,0,2005,-21,0,0 +2013,8,27,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,-3,0,2018,11,0,0 +2013,5,21,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1325,3,0,1330,-1,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1340,9,0,1555,-5,0,0 +2013,6,30,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,835,17,1,1109,6,0,0 +2013,6,6,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,15,1,2035,8,0,0 +2013,8,19,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1248,-3,0,1837,1,0,0 +2013,10,5,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,2,0,1100,2,0,0 +2013,9,9,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,31,1,1140,24,1,0 +2013,7,30,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,-5,0,1530,-12,0,0 +2013,10,9,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1125,5,0,1420,3,0,0 +2013,10,11,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,759,25,1,1045,14,0,0 +2013,5,21,2,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2155,-10,0,508,-10,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1245,14,0,1605,18,1,0 +2013,10,25,5,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1735,-4,0,2019,-12,0,0 +2013,8,6,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2210,7,0,2358,7,0,0 +2013,4,26,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-1,0,744,-7,0,0 +2013,7,3,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1539,-9,0,1701,-15,0,0 +2013,8,23,5,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1210,11,0,1342,17,1,0 +2013,4,23,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1900,27,1,2018,28,1,0 +2013,5,15,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-5,0,1409,-16,0,0 +2013,8,21,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1235,36,1,1540,32,1,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1135,-5,0,1405,-22,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1055,63,1,1115,48,1,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-4,0,859,-12,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,21,1,2335,19,1,0 +2013,9,13,5,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1128,-12,0,1403,-17,0,0 +2013,7,24,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-9,0,1425,-6,0,0 +2013,7,14,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1400,19,1,1735,-4,0,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,925,0,0,1040,-8,0,0 +2013,10,8,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,0,0,900,-14,0,0 +2013,5,27,1,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,720,-2,0,945,-1,0,0 +2013,9,12,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-3,0,1425,-3,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-10,0,1010,-16,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,955,-5,0,1046,-9,0,0 +2013,6,22,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,755,-4,0,940,-15,0,0 +2013,5,25,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,15,1,1710,10,0,0 +2013,6,23,7,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,-1,0,1245,-9,0,0 +2013,10,5,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,820,2,0,930,5,0,0 +2013,6,13,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,0,0,1420,34,1,0 +2013,5,10,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,952,51,1,1036,70,1,0 +2013,7,4,4,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,-9,0,1033,-12,0,0 +2013,6,24,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1745,0,,1915,0,1,1 +2013,8,22,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1229,-1,0,1535,4,0,0 +2013,7,16,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1340,2,0,1700,7,0,0 +2013,10,18,5,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1535,19,1,1625,7,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2145,-5,0,158,-11,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,55,1,1535,65,1,0 +2013,6,19,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1050,-3,0,1353,-20,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,16,1,2354,48,1,0 +2013,9,13,5,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,649,-5,0,1109,-2,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1525,37,1,1650,30,1,0 +2013,10,3,4,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,3,0,939,-5,0,0 +2013,10,1,2,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-8,0,1930,-13,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,940,2,0,1207,9,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1420,12,0,1545,9,0,0 +2013,8,14,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2005,-5,0,2204,2,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,840,-3,0,1120,12,0,0 +2013,6,16,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1719,3,0,1829,7,0,0 +2013,10,26,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1145,4,0,1705,-11,0,0 +2013,8,12,1,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,700,-9,0,833,-2,0,0 +2013,5,21,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-7,0,2025,-9,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,625,-1,0,740,-7,0,0 +2013,8,30,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,15,1,1930,2,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2255,106,1,5,101,1,0 +2013,9,20,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1910,188,1,2135,182,1,0 +2013,4,6,6,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1035,-3,0,1150,0,0,0 +2013,5,27,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-2,0,1010,-14,0,0 +2013,5,9,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,-5,0,2105,-5,0,0 +2013,7,2,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,0,0,1645,-3,0,0 +2013,6,8,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,80,1,1516,75,1,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1835,14,0,1940,7,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2056,-3,0,2212,-14,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,3,0,2104,-27,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-6,0,1405,1,0,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-8,0,1759,-14,0,0 +2013,5,10,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1119,68,1,1715,70,1,0 +2013,6,19,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-9,0,1828,-9,0,0 +2013,10,11,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1940,32,1,2110,33,1,0 +2013,6,10,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1750,85,1,1905,66,1,0 +2013,10,18,5,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-2,0,1315,-10,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,-2,0,2311,-13,0,0 +2013,5,8,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1347,25,1,1652,20,1,0 +2013,10,19,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1115,1,0,1720,-1,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,0,0,1317,16,1,0 +2013,5,30,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1643,16,1,1958,-3,0,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1600,-5,0,1630,0,0,0 +2013,9,16,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,44,1,1425,49,1,0 +2013,9,21,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-5,0,1650,-21,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,18,1,2300,13,0,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,835,-2,0,950,11,0,0 +2013,6,21,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-11,0,1415,-23,0,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,850,-5,0,1020,-11,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-5,0,1610,-9,0,0 +2013,9,8,7,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-7,0,1011,-22,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1730,-2,0,1930,-9,0,0 +2013,4,24,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1715,-2,0,1830,1,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,-8,0,2137,-3,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1225,7,0,1655,-3,0,0 +2013,8,25,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,515,-5,0,847,-8,0,0 +2013,9,10,2,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1845,-2,0,2030,-6,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,730,57,1,1204,46,1,0 +2013,6,28,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-7,0,1111,-17,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,-8,0,1701,-4,0,0 +2013,5,15,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-3,0,931,21,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1640,-1,0,1927,-24,0,0 +2013,10,17,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,3,0,2250,3,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1859,48,1,2213,34,1,0 +2013,4,6,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1854,0,0,2003,-1,0,0 +2013,7,10,3,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1459,243,1,1746,338,1,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,600,19,1,935,4,0,0 +2013,5,12,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2109,3,0,2231,10,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-2,0,1610,-8,0,0 +2013,4,3,3,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2156,-5,0,2246,-13,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1715,-3,0,2010,20,1,0 +2013,7,17,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2133,-4,0,2205,-3,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-1,0,1925,-6,0,0 +2013,7,18,4,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-6,0,2010,-3,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1525,-3,0,1720,-29,0,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1730,28,1,2050,17,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,750,2,0,924,5,0,0 +2013,6,14,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-8,0,955,-17,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-4,0,1237,5,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1255,5,0,1405,-13,0,0 +2013,8,12,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-5,0,739,4,0,0 +2013,4,15,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-5,0,2022,-25,0,0 +2013,7,14,7,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,1,0,1605,2,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1749,-2,0,1927,-5,0,0 +2013,7,13,6,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,20,1,1458,31,1,0 +2013,9,16,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,730,-8,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2208,-1,0,2359,-6,0,0 +2013,7,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,730,-7,0,852,2,0,0 +2013,6,20,4,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1144,2,0,1400,3,0,0 +2013,5,11,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1246,-14,0,1346,-12,0,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,-6,0,2126,6,0,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1053,77,1,1205,80,1,0 +2013,9,28,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,0,0,1208,-1,0,0 +2013,5,18,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,7,0,1805,-4,0,0 +2013,8,13,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1759,2,0,2014,-2,0,0 +2013,5,15,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-7,0,1015,-14,0,0 +2013,6,11,2,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1104,70,1,1333,59,1,0 +2013,8,5,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-5,0,955,-3,0,0 +2013,8,23,5,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,5,0,2110,-31,0,0 +2013,5,4,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-7,0,1237,-17,0,0 +2013,7,25,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-1,0,1610,9,0,0 +2013,8,25,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1920,51,1,2015,45,1,0 +2013,6,20,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1630,-2,0,1805,-23,0,0 +2013,4,20,6,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,1639,-17,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1145,6,0,1310,1,0,0 +2013,6,3,1,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,-3,0,1930,-10,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-5,0,1640,-4,0,0 +2013,8,5,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,-1,0,2005,-3,0,0 +2013,8,19,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-3,0,1450,-9,0,0 +2013,9,2,1,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,830,-7,0,955,-13,0,0 +2013,5,17,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,-1,0,1546,-9,0,0 +2013,7,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-5,0,951,9,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1550,-1,0,1743,-13,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,6,0,1845,6,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1935,33,1,2156,18,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1659,-1,0,1851,9,0,0 +2013,8,24,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,33,1,1900,32,1,0 +2013,6,7,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,0,,2310,0,1,1 +2013,5,7,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1910,-3,0,2045,-21,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,-2,0,1258,-12,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1145,-3,0,1311,-10,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-4,0,2314,-22,0,0 +2013,9,13,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,755,-6,0,855,-15,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-3,0,1323,-7,0,0 +2013,7,29,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,3,0,1718,6,0,0 +2013,9,19,4,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1845,5,0,2134,14,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,13,0,1204,7,0,0 +2013,9,27,5,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1805,-4,0,1923,-19,0,0 +2013,10,10,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1020,-22,0,0 +2013,4,2,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,-2,0,1210,-1,0,0 +2013,10,17,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1335,16,1,1445,16,1,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,0,0,1340,-19,0,0 +2013,5,25,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1858,64,1,1957,65,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,-3,0,1500,-12,0,0 +2013,4,3,3,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1744,19,1,2109,21,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,60,1,1625,65,1,0 +2013,7,14,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-2,0,826,8,0,0 +2013,9,8,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,19,1,2120,41,1,0 +2013,4,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1720,2,0,1855,26,1,0 +2013,10,5,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1510,-2,0,1601,-9,0,0 +2013,10,30,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,0,0,1755,-12,0,0 +2013,8,25,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,2,0,2140,20,1,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,905,-1,0,1317,-24,0,0 +2013,4,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1502,1,0,1555,-6,0,0 +2013,9,2,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,830,0,0,1230,-1,0,0 +2013,4,7,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-3,0,1210,-15,0,0 +2013,7,5,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1420,6,0,1759,9,0,0 +2013,7,5,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1600,0,,1724,0,1,1 +2013,10,14,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-6,0,1002,0,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-7,0,1308,-7,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1156,-2,0,1449,-10,0,0 +2013,6,14,5,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,625,-2,0,725,-22,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1550,7,0,1907,-3,0,0 +2013,9,15,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1951,-3,0,2104,3,0,0 +2013,6,14,5,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2200,-4,0,12,-16,0,0 +2013,7,23,2,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,715,16,1,815,7,0,0 +2013,6,10,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,839,17,1,1020,8,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,3,0,1905,-13,0,0 +2013,6,5,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-1,0,1320,-11,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1500,25,1,2339,12,0,0 +2013,8,28,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,57,1,2144,70,1,0 +2013,8,18,7,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1959,0,0,2022,5,0,0 +2013,6,2,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1425,-1,0,1700,-2,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,605,1,0,725,-4,0,0 +2013,9,18,3,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-7,0,912,-13,0,0 +2013,10,3,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1150,-5,0,1319,-6,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2142,-5,0,2250,-12,0,0 +2013,6,1,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1910,25,1,2025,8,0,0 +2013,5,9,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,-1,0,2335,-3,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1920,-4,0,2359,-1,0,0 +2013,8,27,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1127,-6,0,1456,-10,0,0 +2013,10,23,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-6,0,945,-13,0,0 +2013,10,23,3,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,-6,0,1542,-4,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-3,0,1133,-10,0,0 +2013,10,19,6,EV,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1631,3,0,1942,-2,0,0 +2013,7,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1435,-5,0,1535,-10,0,0 +2013,9,18,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,14,0,1110,3,0,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,740,1,0,905,0,0,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,-5,0,1455,-6,0,0 +2013,5,15,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,6,0,1930,20,1,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,42,1,2329,26,1,0 +2013,4,5,5,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-7,0,1124,-2,0,0 +2013,7,27,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,13,0,1406,21,1,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1915,107,1,2107,121,1,0 +2013,9,27,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-5,0,1015,-10,0,0 +2013,5,6,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1610,3,0,1640,-8,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1620,-2,0,1812,-3,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,87,1,2105,76,1,0 +2013,10,17,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,600,-10,0,718,-19,0,0 +2013,6,7,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-7,0,2050,21,1,0 +2013,7,20,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,-5,0,1256,-29,0,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,11,0,907,-11,0,0 +2013,4,6,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1610,-7,0,1640,-9,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,19,1,1710,12,0,0 +2013,10,18,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-11,0,2149,-3,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1510,5,0,1635,7,0,0 +2013,5,14,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2015,18,1,2220,1,0,0 +2013,10,15,2,EV,12953,LaGuardia,New York,NY,13871,Eppley Airfield,Omaha,NE,1730,0,0,1953,-3,0,0 +2013,9,23,1,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,649,1,0,1109,0,0,0 +2013,10,10,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,15,1,2120,5,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,815,0,0,1030,-20,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,12,0,1255,-1,0,0 +2013,7,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,7,0,1105,-9,0,0 +2013,5,11,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,0,0,1000,-6,0,0 +2013,8,3,6,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,-7,0,2111,-4,0,0 +2013,7,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1710,-6,0,2026,-25,0,0 +2013,8,8,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,0,0,715,-4,0,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,-4,0,2055,-21,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,852,-1,0,1050,-9,0,0 +2013,8,6,2,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2115,2,0,510,-18,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2040,-5,0,2213,-3,0,0 +2013,8,15,4,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,6,0,1843,2,0,0 +2013,8,13,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-1,0,1257,0,0,0 +2013,5,26,7,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2120,-3,0,20,-12,0,0 +2013,8,26,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1055,-2,0,1220,-12,0,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1243,13,0,1549,36,1,0 +2013,7,30,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-8,0,1315,-9,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,843,-2,0,1030,-20,0,0 +2013,8,22,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,954,-7,0,1139,-20,0,0 +2013,10,20,7,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2145,-7,0,2358,-3,0,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1415,-3,0,1554,-25,0,0 +2013,5,3,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1010,0,0,1130,-2,0,0 +2013,5,25,6,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1233,-7,0,1445,-2,0,0 +2013,8,12,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,820,0,0,1040,-9,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1300,90,1,1430,83,1,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-6,0,1510,-19,0,0 +2013,8,7,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1358,19,1,1509,12,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,29,1,2358,32,1,0 +2013,6,30,7,EV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1746,64,1,1922,73,1,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,-2,0,2249,0,0,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1601,13,0,15,-8,0,0 +2013,4,19,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,625,2,0,745,-11,0,0 +2013,9,4,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,741,0,0,1015,-22,0,0 +2013,10,11,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1035,16,1,1640,-9,0,0 +2013,4,3,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1035,11,0,0 +2013,7,6,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,555,11,0,846,-20,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,0,,1005,0,1,1 +2013,9,5,4,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,-3,0,1348,-13,0,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,720,-1,0,1000,-24,0,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,-5,0,2310,-12,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,720,7,0,1055,-11,0,0 +2013,10,17,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1150,11,0,1300,7,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1009,71,1,1135,64,1,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-1,0,1635,11,0,0 +2013,9,30,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-7,0,1617,-8,0,0 +2013,8,7,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1900,3,0,2220,-4,0,0 +2013,6,27,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,819,-6,0,1107,0,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1133,0,0,1304,13,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,19,1,1605,15,1,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1440,47,1,1545,56,1,0 +2013,8,16,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1903,-5,0,1925,-14,0,0 +2013,10,1,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-4,0,935,-8,0,0 +2013,4,23,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,2,0,803,0,0,0 +2013,10,2,3,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-7,0,1402,-20,0,0 +2013,5,18,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1121,-1,0,1859,-8,0,0 +2013,5,29,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1155,-7,0,1233,-4,0,0 +2013,6,5,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2120,-1,0,538,-30,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,10,0,1030,7,0,0 +2013,5,28,2,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,805,0,0,1130,6,0,0 +2013,9,2,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,745,0,0,1010,-3,0,0 +2013,4,29,1,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,31,1,2015,27,1,0 +2013,6,4,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-7,0,905,-20,0,0 +2013,8,24,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,1,0,1000,-14,0,0 +2013,8,6,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1121,110,1,1209,107,1,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,20,1,1415,27,1,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1709,0,0,2110,-4,0,0 +2013,9,19,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1055,5,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,0,,1247,0,1,1 +2013,4,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,9,0,1905,-2,0,0 +2013,6,29,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,0,,1115,0,1,1 +2013,8,5,1,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1802,-3,0,2058,-5,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1130,0,0,1240,-5,0,0 +2013,5,25,6,WN,13931,Norfolk International,Norfolk,VA,15304,Tampa International,Tampa,FL,1400,5,0,1605,-6,0,0 +2013,6,18,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,21,1,2030,14,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2150,9,0,2355,1,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,609,-6,0,747,-17,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,610,1,0,835,11,0,0 +2013,10,13,7,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1030,-9,0,1248,-8,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,945,-4,0,1415,-6,0,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,19,1,1831,7,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,-2,0,1506,-14,0,0 +2013,4,3,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1400,-3,0,1530,-8,0,0 +2013,6,4,2,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,-2,0,1245,-13,0,0 +2013,8,16,5,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,815,-5,0,1105,-26,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1930,10,0,2155,29,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-9,0,1010,-20,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,640,-1,0,1005,-10,0,0 +2013,9,5,4,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,11,0,2000,-2,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,958,-13,0,1245,-26,0,0 +2013,5,3,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-6,0,1714,1,0,0 +2013,9,13,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,844,-3,0,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1040,1,0,1559,-11,0,0 +2013,6,15,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,800,-3,0,940,-9,0,0 +2013,6,28,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1346,-1,0,1540,22,1,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,920,27,1,1050,9,0,0 +2013,9,25,3,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-10,0,1031,-19,0,0 +2013,6,12,3,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1855,-4,0,2045,-5,0,0 +2013,4,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-3,0,1956,-16,0,0 +2013,4,21,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,623,-2,0,750,-6,0,0 +2013,9,20,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-6,0,1918,1,0,0 +2013,8,16,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,952,-6,0,1120,-14,0,0 +2013,10,5,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-6,0,1105,-4,0,0 +2013,5,22,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1536,120,1,1559,142,1,0 +2013,7,2,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,-5,0,1330,-2,0,0 +2013,10,26,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,-4,0,2102,-15,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2210,-3,0,2359,-8,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1302,7,0,1622,-5,0,0 +2013,7,13,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,8,0,1707,-8,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2315,-3,0,518,-29,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2019,-6,0,2200,1,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,835,-2,0,1010,-6,0,0 +2013,8,16,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-4,0,1645,0,0,0 +2013,6,23,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1007,-5,0,1131,-4,0,0 +2013,7,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1724,45,1,1851,41,1,0 +2013,7,8,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,1755,-9,0,0 +2013,5,6,1,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-7,0,1742,0,0,0 +2013,9,8,7,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,945,0,0,1220,-1,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,31,1,2328,20,1,0 +2013,9,27,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2120,-16,0,2358,-15,0,0 +2013,8,26,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,16,1,1900,18,1,0 +2013,4,26,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,0,0,913,-6,0,0 +2013,10,12,6,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1440,-9,0,2305,4,0,0 +2013,5,2,4,OO,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1512,-2,0,1659,-8,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1730,17,1,2115,3,0,0 +2013,8,27,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,-6,0,1720,25,1,0 +2013,5,8,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,10,0,1305,13,0,0 +2013,7,25,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-2,0,1534,0,0,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1655,-1,0,1837,-9,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1450,8,0,1553,7,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1210,-3,0,1350,-3,0,0 +2013,10,11,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-8,0,1215,-3,0,0 +2013,6,16,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,735,-21,0,1600,-23,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2100,0,0,2329,0,0,0 +2013,4,26,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-2,0,930,8,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,825,-2,0,1200,-8,0,0 +2013,8,14,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,551,27,1,731,2,0,0 +2013,9,6,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,36,1,1911,41,1,0 +2013,8,23,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-4,0,912,-17,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-3,0,1652,-8,0,0 +2013,4,11,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1610,8,0,1800,9,0,0 +2013,5,23,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-5,0,1040,-19,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,950,15,1,1220,17,1,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2220,2,0,2315,-9,0,0 +2013,6,14,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-2,0,2321,-3,0,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-6,0,1053,7,0,0 +2013,5,20,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-1,0,1058,-5,0,0 +2013,10,31,4,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1046,24,1,1437,5,0,0 +2013,10,30,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1750,-4,0,2340,-22,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,907,-3,0,1049,-4,0,0 +2013,10,20,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,2014,28,1,2358,-5,0,0 +2013,6,24,1,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,730,-4,0,836,-12,0,0 +2013,6,2,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,741,-2,0,1035,-14,0,0 +2013,7,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-6,0,906,-7,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,818,3,0,920,-1,0,0 +2013,8,6,2,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,833,-7,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1736,16,1,1902,-4,0,0 +2013,6,26,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1035,0,,1350,0,1,1 +2013,10,7,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1412,118,1,1659,161,1,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,820,2,0,1020,-7,0,0 +2013,8,26,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1302,-5,0,1430,-1,0,0 +2013,4,17,3,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1729,-6,0,1928,-5,0,0 +2013,7,25,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1745,6,0,2037,6,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1350,89,1,1715,90,1,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1840,6,0,5,-27,0,0 +2013,8,21,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-4,0,1655,-18,0,0 +2013,9,19,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1125,21,1,1221,15,1,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,2,0,1650,15,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1444,14,0,1603,13,0,0 +2013,9,21,6,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1600,176,1,1845,173,1,0 +2013,6,7,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-7,0,1330,21,1,0 +2013,10,18,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1255,42,1,1440,32,1,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1630,40,1,1810,19,1,0 +2013,10,21,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-6,0,1930,-9,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1550,14,0,1907,9,0,0 +2013,9,22,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-5,0,1650,-4,0,0 +2013,6,17,1,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,1,0,1642,-38,0,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1630,-1,0,1814,-5,0,0 +2013,7,15,1,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1525,-2,0,1904,-8,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2210,90,1,2355,72,1,0 +2013,4,15,1,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1139,-7,0,1218,-5,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,1,0,1624,36,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1345,14,0,1606,1,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1659,7,0,1848,0,0,0 +2013,6,18,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2115,-5,0,2220,-9,0,0 +2013,8,11,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,852,-10,0,0 +2013,4,19,5,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-5,0,835,-5,0,0 +2013,6,15,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,4,0,1535,7,0,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1205,36,1,1503,3,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1016,1,0,1150,-6,0,0 +2013,4,2,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-6,0,1220,-18,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,44,1,1605,41,1,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,900,109,1,1045,94,1,0 +2013,9,11,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1157,18,1,1311,3,0,0 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1030,-1,0,1250,-5,0,0 +2013,4,6,6,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,730,-2,0,900,-11,0,0 +2013,9,8,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,1,0,1200,0,0,0 +2013,9,23,1,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1915,-3,0,9,-10,0,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,632,-6,0,745,-7,0,0 +2013,9,5,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,-3,0,1032,-5,0,0 +2013,7,21,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1004,-4,0,1110,-16,0,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1020,8,0,1043,-5,0,0 +2013,5,11,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1734,19,1,1833,21,1,0 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,-3,0,1308,-11,0,0 +2013,8,21,3,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-9,0,2050,-13,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,855,-4,0,1129,-15,0,0 +2013,10,22,2,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1414,-7,0,1730,-24,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1212,22,1,1344,16,1,0 +2013,10,7,1,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2225,-4,0,607,12,0,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,951,1,0,1218,-14,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1005,-6,0,1208,2,0,0 +2013,6,19,3,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,630,0,0,720,-9,0,0 +2013,9,10,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,3,0,1425,-15,0,0 +2013,7,29,1,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,0,0,1415,4,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2050,95,1,2215,82,1,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1959,4,0,2145,-12,0,0 +2013,4,27,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1917,-7,0,2043,-7,0,0 +2013,6,28,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1535,81,1,1725,0,1,1 +2013,6,11,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1544,-10,0,1700,4,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1425,35,1,1655,30,1,0 +2013,7,26,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1824,-4,0,2022,-18,0,0 +2013,6,22,6,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-1,0,758,-18,0,0 +2013,4,12,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2146,100,1,142,120,1,0 +2013,9,23,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,0,0,1852,-7,0,0 +2013,9,12,4,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,1340,2,0,0 +2013,9,12,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,6,0,2000,-6,0,0 +2013,10,27,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-7,0,1015,1,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-3,0,2159,-10,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,-5,0,2154,-3,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,26,1,2125,17,1,0 +2013,4,28,7,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1146,-3,0,1300,-2,0,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-3,0,2333,18,1,0 +2013,5,21,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1305,14,0,1400,21,1,0 +2013,9,26,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1237,-2,0,1358,34,1,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1410,2,0,1625,-4,0,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1915,-1,0,2043,-14,0,0 +2013,6,3,1,DL,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1856,0,0,7,-7,0,0 +2013,10,25,5,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,0,0,2308,-11,0,0 +2013,7,9,2,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-8,0,1026,-8,0,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1305,11,0,1405,10,0,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1359,-9,0,1608,-4,0,0 +2013,9,19,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2155,-2,0,2243,-2,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,-5,0,1120,-17,0,0 +2013,7,13,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,-8,0,543,-7,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2155,0,0,10,-3,0,0 +2013,8,25,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-5,0,2041,-8,0,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2124,-3,0,2337,3,0,0 +2013,7,9,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,9,0,1935,8,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,2,0,1830,-1,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-6,0,2346,-11,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,21,1,1902,-4,0,0 +2013,7,9,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1525,7,0,1550,0,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2225,11,0,9,-9,0,0 +2013,5,3,5,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1455,-8,0,1638,-25,0,0 +2013,4,13,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1725,-4,0,1835,-19,0,0 +2013,8,28,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,-6,0,1150,0,0,0 +2013,6,4,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,-1,0,1903,-10,0,0 +2013,5,12,7,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1430,-2,0,1635,-12,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,1,0,1100,9,0,0 +2013,4,21,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1505,-8,0,1605,7,0,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1531,-27,0,0 +2013,6,19,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,57,1,1642,47,1,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,-2,0,1105,-12,0,0 +2013,9,23,1,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1505,37,1,1810,29,1,0 +2013,10,27,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1745,3,0,1910,-10,0,0 +2013,5,30,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1512,-2,0,1600,-7,0,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1030,2,0,1155,3,0,0 +2013,7,3,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,32,1,927,26,1,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,0,0,750,-10,0,0 +2013,9,5,4,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1933,34,1,2152,24,1,0 +2013,4,26,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-8,0,1434,-5,0,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1155,-3,0,1300,-8,0,0 +2013,4,2,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1203,-3,0,1520,-28,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1545,0,,1740,0,1,1 +2013,9,4,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,725,-8,0,1022,-12,0,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1147,-9,0,2023,-22,0,0 +2013,7,17,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1245,141,1,1348,148,1,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2058,0,,2358,0,1,1 +2013,5,19,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,-4,0,1200,-30,0,0 +2013,4,29,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-6,0,1757,5,0,0 +2013,7,27,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1040,-5,0,1149,-15,0,0 +2013,7,2,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,925,3,0,1155,-6,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1910,-6,0,2300,-17,0,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-1,0,1353,-18,0,0 +2013,7,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1545,-3,0,1700,9,0,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,942,-5,0,1223,-11,0,0 +2013,7,22,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,239,1,1230,238,1,0 +2013,7,27,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,836,-6,0,1034,-23,0,0 +2013,10,16,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1615,-6,0,1913,-10,0,0 +2013,7,8,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,65,1,1557,58,1,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,-1,0,35,-9,0,0 +2013,8,17,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1430,3,0,1808,3,0,0 +2013,7,6,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1433,67,1,1725,54,1,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,69,1,1913,73,1,0 +2013,6,3,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1017,-6,0,0 +2013,6,19,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1610,-2,0,1657,-13,0,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1620,2,0,1740,-5,0,0 +2013,8,20,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1625,1,0,1753,-4,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,10,0,2009,-1,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,5,0,2350,6,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,750,-5,0,1008,-21,0,0 +2013,4,1,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-3,0,825,-8,0,0 +2013,7,28,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,321,1,2145,331,1,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,-2,0,1750,-13,0,0 +2013,10,8,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-5,0,1106,-4,0,0 +2013,8,7,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,600,-3,0,850,8,0,0 +2013,6,10,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1559,8,0,1727,6,0,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,-2,0,20,-6,0,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1641,85,1,1956,89,1,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,4,0,1850,26,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1218,-3,0,1251,-8,0,0 +2013,4,29,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,755,-6,0,1021,-15,0,0 +2013,10,3,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1640,47,1,1840,28,1,0 +2013,7,12,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,554,-7,0,914,-14,0,0 +2013,10,9,3,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,850,-6,0,1130,2,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1825,23,1,45,28,1,0 +2013,10,22,2,9E,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1240,-10,0,1438,-19,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1731,71,1,1902,76,1,0 +2013,10,26,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2223,-11,0,612,-23,0,0 +2013,8,9,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-7,0,901,-15,0,0 +2013,7,15,1,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,735,0,0,1000,-20,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,-3,0,1605,-17,0,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,11,0,1641,-7,0,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1205,6,0,1400,1,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,56,1,1845,44,1,0 +2013,5,15,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1830,9,0,1940,-1,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-4,0,1506,-9,0,0 +2013,5,5,7,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,1,0,2110,-2,0,0 +2013,7,10,3,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-5,0,1100,-6,0,0 +2013,9,15,7,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1154,-2,0,2025,-16,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1559,-5,0,1906,-26,0,0 +2013,8,21,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-3,0,840,-15,0,0 +2013,8,30,5,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1220,-7,0,1805,0,0,0 +2013,6,21,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,610,-5,0,615,2,0,0 +2013,6,24,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1645,-2,0,1913,7,0,0 +2013,10,28,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,-7,0,2010,20,1,0 +2013,10,3,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,900,37,1,1010,38,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,1,0,903,-4,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1310,-3,0,1430,-14,0,0 +2013,8,25,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1045,-1,0,1210,-3,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1736,23,1,1914,4,0,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2005,31,1,2130,21,1,0 +2013,8,22,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,926,31,1,1119,11,0,0 +2013,7,30,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,927,-11,0,0 +2013,4,8,1,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-9,0,1048,-3,0,0 +2013,8,6,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,15,1,1915,14,0,0 +2013,8,20,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-7,0,1616,-20,0,0 +2013,9,25,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1255,-4,0,1357,-8,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1405,53,1,1840,31,1,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1345,2,0,1445,-3,0,0 +2013,4,3,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,10,0,1852,10,0,0 +2013,6,7,5,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1320,21,1,1410,8,0,0 +2013,9,20,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1216,144,1,1329,149,1,0 +2013,9,14,6,9E,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-5,0,1428,-8,0,0 +2013,4,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,5,0,1110,4,0,0 +2013,7,7,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1851,-8,0,2057,2,0,0 +2013,7,3,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1155,-9,0,1310,33,1,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,2,0,710,-9,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,0,0,1631,-13,0,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,733,21,1,1102,28,1,0 +2013,9,24,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-7,0,2038,-6,0,0 +2013,4,30,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-7,0,1851,-42,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,7,0,1845,22,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,10,0,1201,-1,0,0 +2013,5,2,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-12,0,1115,-23,0,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1340,72,1,1600,62,1,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,-3,0,1443,-12,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,-3,0,2305,-11,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1630,54,1,1844,40,1,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,-6,0,1303,-9,0,0 +2013,6,2,7,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,805,-6,0,1115,-2,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1345,1,0,1540,-14,0,0 +2013,7,19,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1745,-3,0,1915,-7,0,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,930,-5,0,1020,-16,0,0 +2013,7,2,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2057,23,1,450,18,1,0 +2013,6,25,2,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-3,0,1540,-29,0,0 +2013,10,5,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,12,0,1500,14,0,0 +2013,7,8,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1640,7,0,1740,0,0,0 +2013,9,24,2,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-3,0,2229,7,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1830,-2,0,2145,-11,0,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1541,6,0,1801,-2,0,0 +2013,10,23,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,723,2,0,937,30,1,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-1,0,1028,-26,0,0 +2013,8,9,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,820,-7,0,935,-24,0,0 +2013,8,10,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1715,1,0,1750,7,0,0 +2013,7,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,-1,0,1156,4,0,0 +2013,10,22,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1446,42,1,1706,34,1,0 +2013,10,13,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-4,0,1159,-13,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1612,-2,0,1706,-2,0,0 +2013,10,21,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-3,0,920,-14,0,0 +2013,6,5,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,602,-5,0,754,-19,0,0 +2013,9,21,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1000,-8,0,1320,-8,0,0 +2013,9,24,2,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1844,0,,2010,0,1,1 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1311,0,,1550,0,1,1 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1635,2,0,1750,10,0,0 +2013,4,1,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,620,0,0,655,-2,0,0 +2013,6,23,7,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,-1,0,1200,-10,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1715,-4,0,1815,-3,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,930,-6,0,1320,6,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,650,4,0,935,-10,0,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1030,0,0,1155,-5,0,0 +2013,5,25,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1855,3,0,2207,-2,0,0 +2013,8,18,7,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1110,2,0,1655,-6,0,0 +2013,6,28,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,243,1,1539,306,1,0 +2013,7,22,1,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-2,0,2132,-21,0,0 +2013,8,8,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1304,-8,0,0 +2013,10,21,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1000,0,0,1319,-13,0,0 +2013,7,10,3,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1650,0,0,1830,-18,0,0 +2013,5,12,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,-6,0,2137,-7,0,0 +2013,9,27,5,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1935,17,1,2013,24,1,0 +2013,7,29,1,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,756,0,0,1008,2,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1010,4,0,1455,-32,0,0 +2013,6,3,1,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,940,-3,0,1128,-9,0,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,825,0,0,952,-4,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,915,-1,0,1230,-10,0,0 +2013,9,1,7,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1336,6,0,1645,-10,0,0 +2013,5,19,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,840,3,0,1012,-16,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1150,4,0,1320,-9,0,0 +2013,9,4,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,10,0,1210,6,0,0 +2013,9,16,1,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1100,-6,0,1459,-6,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,0,0,1525,2,0,0 +2013,6,25,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1945,43,1,2128,53,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,832,-5,0,909,-19,0,0 +2013,5,19,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-13,0,1100,-8,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1345,-5,0,1450,-10,0,0 +2013,8,7,3,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,0,0,1016,-2,0,0 +2013,8,25,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-6,0,1555,-15,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1312,-5,0,1510,-13,0,0 +2013,6,27,4,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1704,-8,0,1927,0,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2100,-1,0,2255,-19,0,0 +2013,10,2,3,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1453,13,0,1556,12,0,0 +2013,8,20,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-4,0,2105,-8,0,0 +2013,6,16,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1040,-16,0,0 +2013,4,11,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,630,-5,0,915,-18,0,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,1,0,1335,-4,0,0 +2013,6,29,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1510,197,1,1621,202,1,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2155,-4,0,2300,-8,0,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2159,6,0,2341,-33,0,0 +2013,4,16,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,0,0,2110,2,0,0 +2013,4,30,2,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1440,7,0,1605,0,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2105,87,1,2240,109,1,0 +2013,7,17,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,133,1,2147,127,1,0 +2013,9,5,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-4,0,1430,-6,0,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1711,5,0,1844,3,0,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2205,0,,13,0,1,1 +2013,6,15,6,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1430,12,0,1755,20,1,0 +2013,6,25,2,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2130,157,1,2359,158,1,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,-5,0,1301,-14,0,0 +2013,6,16,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1820,-3,0,1915,2,0,0 +2013,4,21,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-7,0,1712,-7,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,-6,0,1614,-21,0,0 +2013,5,20,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,800,-4,0,1157,-16,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2145,-1,0,2302,1,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1735,-2,0,1851,-12,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,111,1,1911,97,1,0 +2013,9,16,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1243,4,0,1557,9,0,0 +2013,10,16,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1730,-1,0,1836,6,0,0 +2013,9,30,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,1001,-13,0,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1748,-2,0,2330,-21,0,0 +2013,10,21,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,16,1,1100,14,0,0 +2013,8,17,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1625,-3,0,1904,-32,0,0 +2013,5,10,5,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1212,-5,0,1439,-19,0,0 +2013,8,21,3,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1545,-6,0,1925,0,0,0 +2013,9,3,2,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1345,16,1,1425,11,0,0 +2013,10,20,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,-3,0,1148,-29,0,0 +2013,8,15,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-5,0,938,2,0,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1550,-2,0,1724,-9,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2040,-2,0,2125,-2,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,25,1,1410,22,1,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1005,1,0,1250,-6,0,0 +2013,8,6,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,12,0,1643,0,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,0,0,1953,-10,0,0 +2013,9,22,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,645,-2,0,938,-11,0,0 +2013,4,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1320,-2,0,1530,3,0,0 +2013,10,26,6,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1055,4,0,1308,1,0,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1130,-4,0,1245,-7,0,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1515,11,0,1640,8,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1315,1,0,1526,8,0,0 +2013,6,4,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-6,0,1005,-4,0,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,719,430,1,848,417,1,0 +2013,9,24,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,-2,0,730,-1,0,0 +2013,5,15,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,630,11,0,730,12,0,0 +2013,8,15,4,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1400,31,1,1652,71,1,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-3,0,1029,3,0,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2145,9,0,2230,4,0,0 +2013,10,4,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,1,0,1930,-6,0,0 +2013,9,24,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,1544,-13,0,0 +2013,8,8,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,816,-5,0,925,5,0,0 +2013,7,14,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,61,1,1855,25,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1605,-3,0,1750,-7,0,0 +2013,9,18,3,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,3,0,1240,1,0,0 +2013,5,30,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1740,-2,0,1900,-1,0,0 +2013,4,17,3,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1950,-6,0,2104,-13,0,0 +2013,10,8,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-10,0,1010,-20,0,0 +2013,5,5,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,800,74,1,935,63,1,0 +2013,4,8,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1915,-9,0,2155,11,0,0 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2025,-1,0,2350,10,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,935,-2,0,1055,-11,0,0 +2013,8,20,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-7,0,712,-9,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,0,0,1115,15,1,0 +2013,8,23,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1030,0,0,1140,-6,0,0 +2013,10,11,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1608,-8,0,1725,7,0,0 +2013,7,19,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,625,-1,0,808,-6,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-6,0,1705,-10,0,0 +2013,4,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,4,0,1933,7,0,0 +2013,8,16,5,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2110,-6,0,550,15,1,0 +2013,6,12,3,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-4,0,856,-22,0,0 +2013,6,6,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1050,19,1,1230,10,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1425,40,1,1510,48,1,0 +2013,6,5,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-7,0,1006,-3,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,-2,0,2105,-6,0,0 +2013,7,18,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1350,0,0,1640,-4,0,0 +2013,7,18,4,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1000,-1,0,1145,-7,0,0 +2013,5,17,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1119,-7,0,1222,-23,0,0 +2013,9,16,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1210,-5,0,1403,-11,0,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1241,8,0,1533,-3,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1610,4,0,1900,-3,0,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-2,0,844,1,0,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2100,51,1,2220,64,1,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1125,7,0,1309,2,0,0 +2013,7,9,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,745,103,1,900,101,1,0 +2013,8,22,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1005,2,0,1130,-3,0,0 +2013,4,18,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1835,7,0,2029,-3,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,-1,0,1442,-4,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1625,5,0,1730,-1,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,-9,0,1316,-30,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,955,-6,0,1245,-20,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1810,2,0,1943,-9,0,0 +2013,8,11,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1905,-9,0,2108,-10,0,0 +2013,9,11,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-10,0,839,-16,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-5,0,847,-10,0,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1235,27,1,1520,23,1,0 +2013,5,6,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1016,-3,0,1840,-3,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,-2,0,1950,-3,0,0 +2013,10,14,1,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1053,163,1,1630,180,1,0 +2013,9,13,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1006,6,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,-3,0,1615,-21,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-4,0,1330,-5,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1234,6,0,1849,-7,0,0 +2013,8,29,4,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,22,1,1445,-11,0,0 +2013,6,2,7,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,8,0,1932,17,1,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1753,26,1,1915,24,1,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,2145,-5,0,2320,-19,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,3,0,1245,3,0,0 +2013,6,13,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2112,18,1,522,13,0,0 +2013,8,10,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,725,-4,0,1024,-25,0,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,73,1,1316,74,1,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2220,13,0,2351,16,1,0 +2013,5,8,3,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1300,-1,0,1440,-5,0,0 +2013,10,1,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1148,-3,0,1436,7,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,4,0,25,-3,0,0 +2013,10,29,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-12,0,1014,4,0,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-5,0,1322,-10,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1840,-4,0,2310,-4,0,0 +2013,4,18,4,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2300,0,0,624,0,0,0 +2013,9,19,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,67,1,1625,65,1,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,-5,0,1815,-19,0,0 +2013,7,21,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,0,0,1546,0,0,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1425,1,0,1730,-13,0,0 +2013,10,7,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1412,47,1,1556,44,1,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-2,0,1359,-12,0,0 +2013,8,12,1,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,-7,0,1925,-21,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-4,0,849,-3,0,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,20,1,20,24,1,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,-4,0,55,-4,0,0 +2013,4,18,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,49,1,2020,63,1,0 +2013,5,26,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1020,7,0,1320,4,0,0 +2013,5,24,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1529,-12,0,0 +2013,10,23,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-6,0,1252,-19,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1910,-4,0,2036,-21,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1235,0,0,1550,-15,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1945,21,1,2105,27,1,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1320,4,0,1705,-9,0,0 +2013,5,23,4,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,21,1,803,4,0,0 +2013,4,24,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1240,21,1,1415,8,0,0 +2013,5,22,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11042,Cleveland-Hopkins International,Cleveland,OH,600,-10,0,702,-7,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,603,17,1,922,-2,0,0 +2013,9,24,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-3,0,1408,0,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1940,44,1,2325,56,1,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,3,0,35,18,1,0 +2013,9,9,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1008,-10,0,1123,-14,0,0 +2013,4,30,2,DL,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,1831,-6,0,2059,-8,0,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,29,1,1200,28,1,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,42,1,2030,24,1,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1940,3,0,2220,12,0,0 +2013,6,21,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1345,1,0,1659,-13,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,910,22,1,1030,27,1,0 +2013,9,24,2,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1139,-10,0,1300,-29,0,0 +2013,4,10,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1623,60,1,1840,100,1,0 +2013,4,11,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-2,0,640,7,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-9,0,1952,-23,0,0 +2013,9,28,6,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1145,24,1,1235,29,1,0 +2013,8,24,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-1,0,926,-7,0,0 +2013,7,11,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1446,-7,0,2023,-2,0,0 +2013,6,19,3,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,-4,0,1631,-16,0,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1113,-2,0,1201,-1,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,-4,0,1220,-26,0,0 +2013,8,26,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,3,0,743,-4,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,53,1,2240,51,1,0 +2013,6,16,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1245,-1,0,1345,-12,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,8,0,1540,1,0,0 +2013,9,21,6,9E,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1345,-1,0,1703,-7,0,0 +2013,5,19,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,-2,0,1100,-11,0,0 +2013,4,29,1,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1620,-5,0,1915,-7,0,0 +2013,5,16,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,36,1,1910,35,1,0 +2013,7,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,4,0,2115,2,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1959,5,0,2118,8,0,0 +2013,8,14,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1104,4,0,1229,11,0,0 +2013,6,8,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,7,0,2020,5,0,0 +2013,9,12,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1610,-4,0,2359,-8,0,0 +2013,10,6,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,13,0,2255,-12,0,0 +2013,9,29,7,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1816,-6,0,1925,-19,0,0 +2013,4,17,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,0,,920,0,1,1 +2013,10,24,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,940,0,0,1215,-8,0,0 +2013,5,8,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-3,0,920,-6,0,0 +2013,5,31,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,850,-11,0,0 +2013,4,8,1,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1248,1,0,1510,21,1,0 +2013,4,26,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1359,-7,0,1620,-7,0,0 +2013,6,26,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-1,0,1310,-5,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,5,0,1530,3,0,0 +2013,6,22,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,0,0,843,-9,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1356,-4,0,1548,8,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,10,0,2245,-4,0,0 +2013,9,29,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-6,0,1810,-11,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,-2,0,1051,-12,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,52,1,2132,32,1,0 +2013,7,19,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-9,0,2103,-5,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,42,1,1440,35,1,0 +2013,6,16,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,-6,0,745,-19,0,0 +2013,5,31,5,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,631,-6,0,913,-23,0,0 +2013,5,30,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,-6,0,1330,-11,0,0 +2013,6,2,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-5,0,920,12,0,0 +2013,5,22,3,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1606,0,0,1951,-10,0,0 +2013,8,7,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,6,0,2046,2,0,0 +2013,4,12,5,FL,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1728,35,1,2040,44,1,0 +2013,9,16,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1215,-8,0,2018,3,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,73,1,2031,49,1,0 +2013,6,18,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,-2,0,1658,0,0,0 +2013,7,15,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1705,18,1,1805,49,1,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-6,0,757,0,0,0 +2013,10,20,7,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,924,-10,0,0 +2013,5,17,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1105,116,1,1225,122,1,0 +2013,5,18,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1900,25,1,2020,12,0,0 +2013,7,17,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2115,38,1,25,28,1,0 +2013,9,15,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-5,0,1652,-33,0,0 +2013,9,10,2,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,35,1,654,25,1,0 +2013,6,1,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1120,0,,1417,0,1,1 +2013,5,13,1,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-2,0,1630,-13,0,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1345,12,0,1435,3,0,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,1,0,2128,-4,0,0 +2013,6,22,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-7,0,1430,-13,0,0 +2013,6,9,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1735,-3,0,1920,-25,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1910,-2,0,2030,4,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,630,-9,0,1015,-16,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,5,0,1103,-9,0,0 +2013,7,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-2,0,2000,-35,0,0 +2013,4,29,1,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,1,0,722,-1,0,0 +2013,6,17,1,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,5,0,2034,14,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2000,4,0,2300,9,0,0 +2013,6,8,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,74,1,1640,75,1,0 +2013,10,19,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1623,-6,0,1727,-12,0,0 +2013,4,18,4,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,810,-2,0,1050,-5,0,0 +2013,8,10,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1805,201,1,2014,208,1,0 +2013,6,24,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,89,1,1519,107,1,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,-3,0,829,-8,0,0 +2013,5,10,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-1,0,1255,3,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,847,-1,0,1100,-4,0,0 +2013,6,18,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,30,1,1902,66,1,0 +2013,8,10,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1650,45,1,1750,44,1,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,6,0,1535,7,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,12,0,2035,9,0,0 +2013,9,21,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-10,0,1428,-15,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,910,-3,0,1015,-6,0,0 +2013,5,21,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1530,-3,0,1647,0,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1336,-9,0,1432,-19,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,-5,0,1200,-13,0,0 +2013,5,31,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1004,-14,0,0 +2013,9,19,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1330,251,1,1445,244,1,0 +2013,5,11,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,955,-2,0,1140,-24,0,0 +2013,8,29,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,36,1,1447,17,1,0 +2013,8,30,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-3,0,1954,2,0,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,-2,0,2100,-16,0,0 +2013,10,15,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-5,0,2143,2,0,0 +2013,4,25,4,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,31,1,1245,29,1,0 +2013,5,5,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1515,-6,0,1700,-17,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,13,0,2205,-7,0,0 +2013,6,11,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-5,0,1641,-15,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,800,35,1,1131,21,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,1,0,1005,-3,0,0 +2013,4,22,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1354,-1,0,0 +2013,7,7,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,0,,2116,0,1,1 +2013,5,13,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,6,0,1712,-3,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,920,0,0,1050,2,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,2020,12,0,2300,32,1,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,635,115,1,915,101,1,0 +2013,7,14,7,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1657,10,0,1835,-7,0,0 +2013,4,27,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,740,-4,0,1042,-6,0,0 +2013,10,21,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-4,0,745,-15,0,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,12,0,1415,14,0,0 +2013,5,23,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-1,0,2011,0,0,0 +2013,9,20,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-5,0,2132,-15,0,0 +2013,4,27,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-1,0,616,6,0,0 +2013,5,30,4,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1730,64,1,1940,53,1,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1200,-2,0,1325,9,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1729,-1,0,2024,28,1,0 +2013,7,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,161,1,2000,155,1,0 +2013,9,1,7,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1855,0,0,2020,1,0,0 +2013,9,16,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1405,1,0,1610,1,0,0 +2013,10,27,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,0,0,929,0,0,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2130,7,0,2240,-1,0,0 +2013,5,21,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,832,0,0,925,8,0,0 +2013,5,18,6,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-4,0,2035,-16,0,0 +2013,4,2,2,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1010,-3,0,1112,0,0,0 +2013,6,6,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1329,-4,0,1504,-5,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1515,2,0,1839,5,0,0 +2013,5,26,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1320,-6,0,1345,-12,0,0 +2013,9,4,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1840,14,0,1955,3,0,0 +2013,6,14,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,13,0,2155,14,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,830,13,0,1020,-13,0,0 +2013,7,16,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1715,-10,0,1948,-22,0,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1834,-8,0,2345,-5,0,0 +2013,4,27,6,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1645,25,1,1925,15,1,0 +2013,5,29,3,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,-3,0,1040,-15,0,0 +2013,8,13,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1951,-3,0,2316,-12,0,0 +2013,5,17,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,630,-3,0,700,-14,0,0 +2013,7,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1910,7,0,2125,6,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,835,-14,0,0 +2013,5,2,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1625,-10,0,1904,-18,0,0 +2013,10,16,3,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,1830,-12,0,2205,-37,0,0 +2013,7,21,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1250,-2,0,1535,-16,0,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1340,4,0,1920,8,0,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1158,-3,0,2029,-31,0,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,6,0,1528,-7,0,0 +2013,9,17,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1802,-11,0,1850,-8,0,0 +2013,8,19,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-5,0,1925,16,1,0 +2013,4,21,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1145,15,1,1450,37,1,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,1,0,1750,10,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1900,-1,0,2230,5,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2201,29,1,2342,24,1,0 +2013,10,30,3,9E,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,-8,0,1424,-21,0,0 +2013,7,27,6,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1146,212,1,1325,193,1,0 +2013,6,2,7,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,820,37,1,1045,14,0,0 +2013,10,13,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1310,-5,0,1600,-9,0,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1235,-10,0,1430,-5,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2140,33,1,2255,34,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1725,17,1,2240,50,1,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1450,-7,0,1630,-6,0,0 +2013,6,5,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1545,20,1,1650,12,0,0 +2013,9,11,3,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1010,-5,0,1118,3,0,0 +2013,8,26,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-1,0,1455,-5,0,0 +2013,5,14,2,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2000,-2,0,1130,-20,0,0 +2013,4,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,-4,0,1525,-14,0,0 +2013,6,26,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2242,-4,0,704,0,0,0 +2013,8,12,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-5,0,1857,-29,0,0 +2013,9,18,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1520,23,1,1615,18,1,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,939,44,1,1146,29,1,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,-6,0,2126,-11,0,0 +2013,4,9,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,41,1,2100,18,1,0 +2013,5,23,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1005,3,0,1130,14,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,-3,0,1624,-2,0,0 +2013,7,26,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,14,0,2355,12,0,0 +2013,10,11,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,720,32,1,1330,19,1,0 +2013,4,15,1,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,615,-3,0,742,0,0,0 +2013,10,16,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-2,0,1500,-9,0,0 +2013,10,25,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,824,-1,0,1019,-20,0,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1535,0,0,1725,-6,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,835,4,0,1355,8,0,0 +2013,9,14,6,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2020,-4,0,2135,-11,0,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1058,23,1,1424,9,0,0 +2013,6,3,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1817,9,0,1900,3,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1200,14,0,1315,20,1,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1300,0,0,1400,-2,0,0 +2013,7,7,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1805,4,0,1944,-5,0,0 +2013,6,16,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2130,-8,0,2215,-5,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,3,0,1840,-13,0,0 +2013,5,13,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,199,1,1253,223,1,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,745,6,0,1005,0,0,0 +2013,9,27,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,840,1,0,1210,-6,0,0 +2013,7,25,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,715,-4,0,0 +2013,7,27,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-9,0,1650,-15,0,0 +2013,5,24,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1925,89,1,2043,85,1,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,919,-7,0,1101,-3,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1315,-2,0,1840,-9,0,0 +2013,9,6,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2100,-2,0,2220,-12,0,0 +2013,10,10,4,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,1220,15,1,1444,7,0,0 +2013,5,11,6,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1405,-3,0,2215,-16,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,199,1,1307,197,1,0 +2013,4,5,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,725,-4,0,1021,3,0,0 +2013,9,3,2,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-16,0,1415,-12,0,0 +2013,7,16,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1850,-7,0,2037,-18,0,0 +2013,4,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2125,10,0,2250,6,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,729,-1,0,941,-9,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1454,5,0,1608,1,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1840,41,1,2055,28,1,0 +2013,4,26,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-1,0,2020,-4,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,15,1,2055,9,0,0 +2013,10,30,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1125,-2,0,1858,-6,0,0 +2013,4,25,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1215,65,1,1540,73,1,0 +2013,7,7,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,850,-1,0,955,-7,0,0 +2013,10,11,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,21,1,2021,-4,0,0 +2013,5,27,1,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1636,-3,0,1835,-15,0,0 +2013,4,10,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,-7,0,1623,-10,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,820,20,1,915,14,0,0 +2013,6,9,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-7,0,1255,-31,0,0 +2013,9,20,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1150,-1,0,1425,-12,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,715,-7,0,839,-8,0,0 +2013,8,18,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,648,-8,0,0 +2013,4,7,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-10,0,733,-20,0,0 +2013,8,17,6,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2225,103,1,700,96,1,0 +2013,4,21,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,818,-3,0,929,-12,0,0 +2013,7,20,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,900,82,1,1040,80,1,0 +2013,8,3,6,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1803,2,0,2109,1,0,0 +2013,9,19,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,20,1,1307,6,0,0 +2013,8,24,6,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,650,-4,0,833,0,0,0 +2013,8,18,7,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1640,14,0,1800,14,0,0 +2013,9,24,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-1,0,1921,-1,0,0 +2013,5,3,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,26,1,1434,40,1,0 +2013,10,31,4,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-9,0,1014,1,0,0 +2013,9,29,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,10,0,2020,3,0,0 +2013,6,1,6,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,1050,9,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2110,192,1,2315,171,1,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1955,20,1,2145,-1,0,0 +2013,8,16,5,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-2,0,1522,-12,0,0 +2013,6,12,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,18,1,2149,15,1,0 +2013,7,20,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1150,-5,0,1425,-20,0,0 +2013,7,18,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,1,0,2057,1,0,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,0,0,1130,-1,0,0 +2013,5,31,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2002,38,1,2130,24,1,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1145,150,1,1330,148,1,0 +2013,5,20,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1310,107,1,1358,102,1,0 +2013,8,13,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1545,13,0,1645,9,0,0 +2013,6,13,4,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,727,0,0,745,2,0,0 +2013,7,30,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,-2,0,1412,-16,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1240,5,0,1710,-4,0,0 +2013,4,14,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,752,-7,0,1549,-34,0,0 +2013,8,16,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,42,1,1750,38,1,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1140,6,0,1315,-6,0,0 +2013,4,25,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,0,0,2125,3,0,0 +2013,8,3,6,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1035,-4,0,1356,-19,0,0 +2013,7,22,1,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1838,-1,0,2135,-5,0,0 +2013,8,21,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1843,4,0,2009,7,0,0 +2013,4,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,836,-1,0,1134,2,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1750,-1,0,2036,-16,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1922,-1,0,2130,-19,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1025,8,0,1250,9,0,0 +2013,9,13,5,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,545,7,0,803,-2,0,0 +2013,8,17,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1643,-2,0,1926,-4,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,28,1,1906,56,1,0 +2013,6,11,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,-5,0,2035,-12,0,0 +2013,8,19,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1830,35,1,1950,31,1,0 +2013,8,6,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,627,-3,0,818,-9,0,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1320,-2,0,1710,-13,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,941,24,1,1112,23,1,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1955,-2,0,2300,0,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-5,0,1300,-1,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,9,0,1040,0,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1246,4,0,1402,9,0,0 +2013,4,21,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,120,-10,0,752,-29,0,0 +2013,6,6,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,705,-8,0,850,-7,0,0 +2013,9,18,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-6,0,2120,-8,0,0 +2013,5,14,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1925,-2,0,2110,-3,0,0 +2013,9,29,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1357,-3,0,1759,-9,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,48,1,1230,37,1,0 +2013,6,1,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,820,12,0,950,24,1,0 +2013,6,1,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1700,-2,0,1830,-11,0,0 +2013,5,30,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-6,0,836,-4,0,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-2,0,1030,-7,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,114,1,917,128,1,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1746,68,1,1854,59,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,0,0,1106,-8,0,0 +2013,9,20,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,710,-2,0,740,-20,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1440,-3,0,1708,9,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1312,0,0,1710,-22,0,0 +2013,5,5,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1305,-3,0,1450,4,0,0 +2013,8,29,4,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,925,3,0,1305,2,0,0 +2013,7,28,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1019,-9,0,1129,-10,0,0 +2013,9,25,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,24,1,2044,-5,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,935,-2,0,1600,13,0,0 +2013,8,5,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1600,8,0,1704,21,1,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,12,0,1240,5,0,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,804,-2,0,1027,-24,0,0 +2013,10,3,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,2,0,845,13,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2101,5,0,2151,13,0,0 +2013,9,19,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-4,0,1552,-12,0,0 +2013,7,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,550,-2,0,711,-6,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,-10,0,110,-20,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,640,12,0,845,12,0,0 +2013,9,16,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,755,34,1,1000,33,1,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,-3,0,1215,-9,0,0 +2013,4,25,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-6,0,850,-3,0,0 +2013,4,10,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1750,88,1,2045,73,1,0 +2013,10,15,2,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,6,0,2045,-9,0,0 +2013,9,2,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-8,0,1759,-7,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-2,0,830,-8,0,0 +2013,6,5,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1738,-5,0,1905,-9,0,0 +2013,10,24,4,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,407,1,505,426,1,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,720,0,0,1025,-3,0,0 +2013,9,11,3,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1925,49,1,2124,48,1,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,16,1,1801,12,0,0 +2013,7,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1730,30,1,1920,26,1,0 +2013,8,25,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,2101,-12,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1545,-4,0,1829,9,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1926,31,1,2210,6,0,0 +2013,6,1,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-6,0,801,3,0,0 +2013,9,25,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1831,-3,0,1940,-10,0,0 +2013,7,24,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,755,-4,0,1020,-4,0,0 +2013,9,20,5,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,-10,0,943,-13,0,0 +2013,8,7,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-2,0,1020,-17,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,-2,0,1830,-9,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1723,17,1,2013,20,1,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1610,10,0,1821,5,0,0 +2013,6,7,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,809,19,1,0 +2013,6,29,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,-4,0,1559,-9,0,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1110,5,0,1300,-6,0,0 +2013,10,9,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1715,3,0,1750,-15,0,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-6,0,1605,-3,0,0 +2013,10,30,3,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1425,-8,0,1606,-12,0,0 +2013,10,24,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,545,24,1,723,24,1,0 +2013,9,16,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1954,-7,0,2111,-8,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-3,0,1835,-18,0,0 +2013,6,8,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-3,0,1006,-21,0,0 +2013,4,28,7,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,922,9,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,17,1,1440,10,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1725,14,0,2300,17,1,0 +2013,10,10,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1720,-7,0,1925,-27,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1955,46,1,2128,43,1,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1630,6,0,1950,-1,0,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1123,-7,0,1340,5,0,0 +2013,8,21,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,900,-5,0,1045,-20,0,0 +2013,10,14,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1924,-10,0,2031,-15,0,0 +2013,10,27,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,0,0,1955,-15,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,-2,0,1005,2,0,0 +2013,5,29,3,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-2,0,1215,-12,0,0 +2013,10,11,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,0,,1905,0,1,1 +2013,8,18,7,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1800,31,1,2005,27,1,0 +2013,4,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1430,-2,0,1821,-10,0,0 +2013,7,2,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,630,-2,0,720,-8,0,0 +2013,10,21,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-6,0,1414,-11,0,0 +2013,4,11,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1726,36,1,2016,48,1,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1230,6,0,1359,-1,0,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1555,5,0,1850,23,1,0 +2013,9,5,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-7,0,845,-15,0,0 +2013,5,16,4,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,914,-2,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1000,-4,0,1140,-6,0,0 +2013,9,3,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,14,0,2130,18,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1315,3,0,1645,22,1,0 +2013,4,28,7,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,5,0,1810,1,0,0 +2013,10,10,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-3,0,1345,8,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1530,-7,0,1915,-1,0,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,5,0,655,11,0,0 +2013,8,1,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,220,1,0,635,-2,0,0 +2013,4,18,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2110,0,,2232,0,1,1 +2013,6,7,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,0,0,2229,-3,0,0 +2013,10,31,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1800,-1,0,1845,25,1,0 +2013,6,14,5,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,-5,0,1000,-30,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,5,0,2005,9,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1556,12,0,1835,17,1,0 +2013,7,17,3,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,2,0,935,24,1,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1615,20,1,1755,-3,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,630,0,0,745,-1,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-4,0,1156,3,0,0 +2013,8,10,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,4,0,1245,10,0,0 +2013,5,11,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,2,0,1323,6,0,0 +2013,6,20,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,915,13,0,1710,33,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1035,1,0,1505,-20,0,0 +2013,4,6,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1350,-4,0,1655,-14,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2044,5,0,2224,-15,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,755,50,1,1045,55,1,0 +2013,5,13,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-3,0,1015,-33,0,0 +2013,6,16,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,847,4,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,-4,0,1350,-10,0,0 +2013,9,18,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1035,6,0,1205,-2,0,0 +2013,10,25,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1337,-3,0,1729,26,1,0 +2013,8,13,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-6,0,1200,41,1,0 +2013,7,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1625,-1,0,2310,3,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,4,0,1556,-13,0,0 +2013,9,15,7,US,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,-4,0,1917,-12,0,0 +2013,5,6,1,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1333,23,1,1559,23,1,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1142,-4,0,1311,12,0,0 +2013,6,15,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,43,1,1455,26,1,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,610,0,0,715,17,1,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-8,0,2206,-15,0,0 +2013,8,1,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-7,0,825,-9,0,0 +2013,6,22,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1340,11,0,1500,-2,0,0 +2013,10,1,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1038,-1,0,1436,-8,0,0 +2013,10,8,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-2,0,752,-6,0,0 +2013,6,12,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1655,0,,1935,0,1,1 +2013,8,23,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,10,0,1735,10,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,0,0,1415,-2,0,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2025,-4,0,2135,-11,0,0 +2013,4,21,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,710,16,1,1033,-3,0,0 +2013,10,23,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1015,0,0,1133,9,0,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,51,1,2005,19,1,0 +2013,7,29,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2100,-8,0,120,-11,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1240,6,0,1410,-7,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1911,12,0,2249,2,0,0 +2013,9,30,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1106,68,1,1247,77,1,0 +2013,5,21,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,18,1,659,26,1,0 +2013,8,21,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2120,-3,0,555,-9,0,0 +2013,7,27,6,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-2,0,1535,-8,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2050,221,1,2254,197,1,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,-6,0,920,-28,0,0 +2013,9,11,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-1,0,1440,0,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,30,1,1609,10,0,0 +2013,8,29,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,-2,0,1904,18,1,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1925,-3,0,2246,-14,0,0 +2013,6,6,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-2,0,1117,12,0,0 +2013,5,17,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,850,-7,0,950,-11,0,0 +2013,9,12,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,31,1,1735,20,1,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,10,0,2335,24,1,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1311,112,1,1605,105,1,0 +2013,8,12,1,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-6,0,1545,-19,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1850,20,1,2310,24,1,0 +2013,10,25,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1646,-2,0,1723,-2,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1435,-4,0,1540,11,0,0 +2013,8,16,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-6,0,2349,-18,0,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-3,0,1833,0,0,0 +2013,7,13,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-7,0,1912,-16,0,0 +2013,5,27,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1803,0,0,1921,8,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1810,30,1,2215,22,1,0 +2013,4,28,7,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1100,8,0,1453,3,0,0 +2013,9,23,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-1,0,1404,1,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-5,0,1251,-11,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,730,0,,1204,0,1,1 +2013,4,8,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,858,-5,0,1145,-9,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-7,0,2155,-19,0,0 +2013,7,28,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1112,-8,0,1520,-3,0,0 +2013,7,19,5,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,750,31,1,1635,25,1,0 +2013,10,3,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,56,1,1258,51,1,0 +2013,4,4,4,F9,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1555,62,1,1935,64,1,0 +2013,8,22,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,18,1,1850,7,0,0 +2013,7,18,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,6,0,1540,1,0,0 +2013,9,26,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1101,-2,0,1230,0,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2020,160,1,2150,142,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,0,0,2330,-16,0,0 +2013,4,12,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-4,0,1015,-27,0,0 +2013,10,22,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1438,-6,0,1959,6,0,0 +2013,9,5,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1135,-15,0,1710,-16,0,0 +2013,8,24,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,-4,0,2105,-8,0,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,730,0,0,830,-5,0,0 +2013,5,29,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-6,0,2023,-6,0,0 +2013,9,20,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1755,16,1,1901,4,0,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1929,27,1,2155,45,1,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2020,4,0,2212,-5,0,0 +2013,9,26,4,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1242,-6,0,1642,6,0,0 +2013,5,6,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-7,0,1411,-25,0,0 +2013,7,13,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1240,-5,0,1405,-11,0,0 +2013,7,19,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,26,1,2057,19,1,0 +2013,10,1,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,910,-3,0,1015,-6,0,0 +2013,10,1,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1020,-3,0,1145,-2,0,0 +2013,8,3,6,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,600,-3,0,805,-10,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,755,-5,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-4,0,1230,1,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,58,1,2335,54,1,0 +2013,10,26,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1110,-5,0,1440,-4,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1220,1,0,1355,-5,0,0 +2013,6,19,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1649,-4,0,1726,-1,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,-3,0,21,-17,0,0 +2013,6,24,1,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2220,-8,0,635,-13,0,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,4,0,1710,-19,0,0 +2013,8,2,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1611,-2,0,15,-30,0,0 +2013,10,27,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,740,14,0,910,6,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1741,9,0,2025,9,0,0 +2013,9,1,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1250,-1,0,1355,-18,0,0 +2013,9,30,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,-1,0,1750,-19,0,0 +2013,9,12,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-4,0,1458,-4,0,0 +2013,9,15,7,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1846,-10,0,2059,-10,0,0 +2013,6,13,4,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,856,-1,0,1149,-3,0,0 +2013,9,27,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1650,10,0,1814,7,0,0 +2013,9,13,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-2,0,1021,-18,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1120,61,1,1530,67,1,0 +2013,10,1,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-8,0,1547,15,1,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,914,-3,0,1107,-27,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,0,,1315,0,1,1 +2013,5,17,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,64,1,1520,54,1,0 +2013,8,8,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,830,0,0,955,4,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,810,9,0,1027,0,0,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,830,149,1,957,145,1,0 +2013,8,4,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,843,-13,0,1035,-15,0,0 +2013,9,9,1,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1144,-4,0,1403,5,0,0 +2013,10,20,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1947,0,0,2250,1,0,0 +2013,4,29,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1037,-10,0,1147,-11,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,2,0,2250,2,0,0 +2013,4,4,4,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1222,13,0,1340,7,0,0 +2013,4,9,2,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,48,1,1610,37,1,0 +2013,5,27,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-1,0,1650,-5,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1630,-2,0,1820,-20,0,0 +2013,7,9,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1230,-4,0,1335,-11,0,0 +2013,9,18,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,937,15,1,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1035,0,0,1830,-5,0,0 +2013,7,9,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1725,90,1,1746,76,1,0 +2013,5,24,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-7,0,550,-16,0,0 +2013,6,24,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,600,3,0,720,3,0,0 +2013,8,20,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,46,1,1945,41,1,0 +2013,6,4,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-3,0,849,1,0,0 +2013,10,7,1,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1959,-7,0,2117,-13,0,0 +2013,9,5,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2245,-4,0,617,3,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1425,188,1,1635,168,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,25,1,1720,20,1,0 +2013,7,3,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1035,8,0,1210,7,0,0 +2013,6,7,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,27,1,1646,-13,0,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,6,0,2205,3,0,0 +2013,8,12,1,FL,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,1,0,2235,-13,0,0 +2013,4,4,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,915,-4,0,1115,19,1,0 +2013,9,20,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2115,5,0,538,2,0,0 +2013,9,2,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,-5,0,1536,17,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,-3,0,859,-13,0,0 +2013,10,14,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-5,0,830,-14,0,0 +2013,5,2,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,10,0,1955,2,0,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,912,-7,0,1131,-3,0,0 +2013,7,2,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,481,1,1700,453,1,0 +2013,10,23,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1110,-3,0,1255,-1,0,0 +2013,10,27,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,645,-4,0,1504,-12,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1422,20,1,1655,42,1,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,-3,0,2155,14,0,0 +2013,8,13,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,810,-8,0,925,-5,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-3,0,930,-12,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,625,-1,0,1055,-10,0,0 +2013,9,4,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1252,1,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,1,0,2110,-5,0,0 +2013,8,10,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1824,13,0,0 +2013,6,26,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,11,0,1810,5,0,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1852,54,1,2026,48,1,0 +2013,5,30,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1721,24,1,1915,24,1,0 +2013,6,30,7,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-9,0,1129,-12,0,0 +2013,4,27,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-5,0,1430,-21,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,735,-1,0,857,-9,0,0 +2013,4,16,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-7,0,2106,-20,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,20,1,1430,15,1,0 +2013,5,5,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,-6,0,1550,-10,0,0 +2013,9,6,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,934,-7,0,0 +2013,7,30,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-7,0,1855,-16,0,0 +2013,7,13,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-5,0,1033,-9,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1859,12,0,2131,7,0,0 +2013,6,16,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1947,4,0,2135,-6,0,0 +2013,8,24,6,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1152,7,0,1748,-6,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,18,1,1415,12,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,735,-2,0,840,-6,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1125,-3,0,1645,7,0,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,742,-3,0,1140,18,1,0 +2013,7,29,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-9,0,909,7,0,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-6,0,1735,-8,0,0 +2013,6,26,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1120,4,0,1231,-3,0,0 +2013,6,10,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1537,3,0,1740,-11,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1859,102,1,2329,93,1,0 +2013,7,7,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2205,193,1,600,180,1,0 +2013,5,15,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,-2,0,1118,-9,0,0 +2013,9,11,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,-15,0,1135,-1,0,0 +2013,8,21,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,0,0,1240,-4,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-5,0,854,-12,0,0 +2013,5,10,5,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,101,1,2126,95,1,0 +2013,8,29,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-8,0,948,-15,0,0 +2013,9,9,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-2,0,1751,-12,0,0 +2013,6,18,2,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1912,0,0,2150,11,0,0 +2013,10,1,2,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1409,-4,0,1639,-4,0,0 +2013,10,4,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2320,-7,0,830,-14,0,0 +2013,8,12,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-5,0,2050,-7,0,0 +2013,7,26,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13232,Chicago Midway International,Chicago,IL,1430,12,0,2030,4,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1410,0,0,1725,-24,0,0 +2013,8,21,3,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1545,-5,0,1726,-18,0,0 +2013,5,23,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1425,1,0,1535,5,0,0 +2013,8,7,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,727,0,0,900,-3,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,2,0,1635,-3,0,0 +2013,7,14,7,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2030,36,1,2115,40,1,0 +2013,4,5,5,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,757,37,1,945,19,1,0 +2013,6,23,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1951,176,1,2140,166,1,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2155,20,1,2305,30,1,0 +2013,4,15,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,0,0,620,-20,0,0 +2013,5,27,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,71,1,2105,67,1,0 +2013,6,20,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-6,0,1634,-20,0,0 +2013,10,4,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1237,-5,0,1415,-9,0,0 +2013,9,3,2,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,4,0,1815,13,0,0 +2013,7,24,3,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,0,0,2147,-1,0,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,730,-3,0,903,-4,0,0 +2013,6,4,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1828,-5,0,1939,-11,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,0,0,1320,-19,0,0 +2013,5,19,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,57,1,1825,90,1,0 +2013,4,10,3,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,845,-5,0,1050,-28,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-3,0,924,8,0,0 +2013,9,4,3,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,2204,0,0,2342,-12,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,2,0,1949,-22,0,0 +2013,6,1,6,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,21,1,1640,12,0,0 +2013,7,16,2,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-9,0,603,-21,0,0 +2013,4,10,3,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-9,0,1310,-13,0,0 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,19,1,1150,22,1,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,5,0,1055,-1,0,0 +2013,5,16,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1455,10,0,1545,7,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,-5,0,1205,-18,0,0 +2013,7,11,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1236,-1,0,1418,24,1,0 +2013,4,5,5,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,947,23,1,1225,8,0,0 +2013,9,7,6,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1235,0,0,1440,-6,0,0 +2013,5,26,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,730,-5,0,945,-13,0,0 +2013,8,29,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1515,6,0,1730,-9,0,0 +2013,4,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,858,-4,0,932,-5,0,0 +2013,10,20,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2030,7,0,502,-15,0,0 +2013,6,3,1,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-5,0,949,-8,0,0 +2013,5,1,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2202,0,0,2359,-16,0,0 +2013,10,14,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1026,5,0,1305,6,0,0 +2013,4,3,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,-2,0,2150,4,0,0 +2013,5,9,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1700,70,1,2044,34,1,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1145,4,0,1840,-8,0,0 +2013,8,4,7,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1525,26,1,1605,22,1,0 +2013,7,15,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-9,0,1845,-3,0,0 +2013,6,2,7,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,650,-1,0,835,-8,0,0 +2013,6,12,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,-5,0,1755,-3,0,0 +2013,10,20,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1439,-5,0,1543,-17,0,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1255,-3,0,2110,6,0,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,21,1,2102,49,1,0 +2013,10,22,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1520,-4,0,1900,-25,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2145,3,0,158,7,0,0 +2013,7,2,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2105,43,1,2355,26,1,0 +2013,4,25,4,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1910,-1,0,2059,2,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1030,-2,0,1258,-15,0,0 +2013,7,8,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-10,0,1934,5,0,0 +2013,5,24,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1202,21,1,1334,11,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,0,0,2057,-8,0,0 +2013,6,13,4,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1724,0,,1835,0,1,1 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,2000,13,0,2200,0,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1906,1,0,2100,-12,0,0 +2013,8,10,6,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1520,3,0,1725,1,0,0 +2013,8,6,2,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,104,1,1615,119,1,0 +2013,5,9,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1905,-6,0,2209,-12,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2112,-6,0,555,12,0,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1510,-5,0,1556,-8,0,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1935,249,1,2030,245,1,0 +2013,7,2,2,B6,13796,Metropolitan Oakland International,Oakland,CA,10721,Logan International,Boston,MA,2359,36,1,822,65,1,0 +2013,5,13,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1514,-2,0,1709,-29,0,0 +2013,10,3,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,1,0,1709,8,0,0 +2013,9,8,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,-1,0,1850,-16,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,735,4,0,1305,-11,0,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1720,11,0,2005,-20,0,0 +2013,7,9,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,73,1,1734,77,1,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1959,20,1,2156,5,0,0 +2013,10,26,6,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1103,-6,0,1248,-8,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1645,-1,0,1925,-19,0,0 +2013,4,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1507,0,0,1556,17,1,0 +2013,9,8,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,844,-13,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1604,-3,0,1717,-20,0,0 +2013,6,13,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1750,12,0,2115,12,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1235,0,0,1415,-6,0,0 +2013,8,7,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1815,-3,0,2125,-8,0,0 +2013,7,12,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-1,0,1424,-6,0,0 +2013,7,6,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,900,1,0,1040,-22,0,0 +2013,6,12,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1334,-1,0,1515,0,0,0 +2013,5,13,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,923,-9,0,1046,-33,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1340,-1,0,1840,11,0,0 +2013,7,6,6,EV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-3,0,1949,28,1,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1050,11,0,1610,-7,0,0 +2013,5,25,6,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,716,-5,0,830,-4,0,0 +2013,5,11,6,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-4,0,903,-9,0,0 +2013,7,3,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-4,0,535,4,0,0 +2013,9,20,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,914,18,1,1124,17,1,0 +2013,5,31,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-5,0,1230,11,0,0 +2013,9,22,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1405,-7,0,1600,-10,0,0 +2013,10,22,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1008,-5,0,1123,-2,0,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1310,-1,0,1435,-23,0,0 +2013,9,16,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,0,0,2240,7,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1644,0,0,1821,1,0,0 +2013,9,30,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,935,-3,0,1154,-10,0,0 +2013,9,1,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,2,0,1015,-2,0,0 +2013,10,23,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1000,-5,0,1125,-1,0,0 +2013,7,1,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,610,-2,0,730,-3,0,0 +2013,5,5,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2110,-7,0,2245,-18,0,0 +2013,5,9,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-2,0,1019,-8,0,0 +2013,8,14,3,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-1,0,1314,-3,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1920,1,0,2020,-19,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2145,-1,0,4,5,0,0 +2013,6,10,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,-4,0,1454,-16,0,0 +2013,4,6,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,813,-8,0,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,-4,0,818,-10,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1515,-2,0,1835,-11,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1747,-5,0,1930,-15,0,0 +2013,4,26,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-5,0,849,-5,0,0 +2013,4,21,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-8,0,710,-14,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,0,0,1237,-10,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-5,0,1931,-2,0,0 +2013,5,24,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1503,-5,0,1750,-26,0,0 +2013,7,2,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,618,-2,0,1452,5,0,0 +2013,6,7,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1705,-10,0,1927,-7,0,0 +2013,4,22,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1230,-11,0,0 +2013,8,2,5,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,730,10,0,930,34,1,0 +2013,9,18,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1450,-3,0,1728,-4,0,0 +2013,7,25,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,42,1,2110,34,1,0 +2013,9,27,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1020,36,1,1043,32,1,0 +2013,5,10,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-4,0,2017,4,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2209,3,0,2326,4,0,0 +2013,8,10,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,9,0,1731,-1,0,0 +2013,4,21,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,725,0,0,1438,-15,0,0 +2013,8,30,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1145,1,0,1345,-3,0,0 +2013,6,13,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,24,1,2112,15,1,0 +2013,5,13,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-3,0,1415,-19,0,0 +2013,7,17,3,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1735,-6,0,1823,-21,0,0 +2013,8,11,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,-3,0,1025,-15,0,0 +2013,4,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-4,0,1558,-12,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1605,5,0,2345,-15,0,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1559,0,0,1853,10,0,0 +2013,5,10,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,-8,0,1206,-13,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1134,-2,0,1415,-1,0,0 +2013,8,14,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,905,-2,0,920,-3,0,0 +2013,6,1,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,8,0,1535,0,0,0 +2013,10,23,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,8,0,1750,-6,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,4,0,1735,-1,0,0 +2013,4,12,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,920,-9,0,1118,-13,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1400,-3,0,1540,-13,0,0 +2013,6,9,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1023,-11,0,1055,-23,0,0 +2013,9,19,4,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1800,-9,0,1916,-23,0,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1450,-1,0,1717,-6,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1725,33,1,1850,25,1,0 +2013,9,12,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-7,0,804,-5,0,0 +2013,8,23,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-9,0,1645,-15,0,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1300,1,0,1355,-14,0,0 +2013,10,28,1,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1217,7,0,1438,-2,0,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-7,0,747,-4,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,2130,20,1,2315,12,0,0 +2013,6,27,4,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1045,6,0,1609,9,0,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1100,9,0,1424,5,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,62,1,1114,48,1,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2130,2,0,2255,51,1,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1125,7,0,1715,-4,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,935,-11,0,955,-22,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1835,85,1,2305,60,1,0 +2013,8,11,7,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,4,0,1740,-6,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,34,1,2110,45,1,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1220,4,0,1905,-14,0,0 +2013,8,1,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1014,20,1,1605,15,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2200,35,1,2335,25,1,0 +2013,10,14,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1940,57,1,2125,55,1,0 +2013,10,28,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,0,0,1610,16,1,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,3,0,1306,-16,0,0 +2013,7,1,1,OO,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1051,0,0,1512,25,1,0 +2013,10,12,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,650,1,0,750,-9,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1015,36,1,1330,16,1,0 +2013,5,28,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,3,0,1015,-8,0,0 +2013,6,12,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,854,-5,0,1030,-22,0,0 +2013,9,27,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2025,-5,0,2125,-11,0,0 +2013,7,3,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,-4,0,1815,0,0,0 +2013,7,30,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,3,0,1600,-9,0,0 +2013,7,24,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,13,0,1625,2,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,20,1,1225,11,0,0 +2013,10,27,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1625,4,0,1750,6,0,0 +2013,5,5,7,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,-3,0,1455,-6,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1850,8,0,2103,13,0,0 +2013,9,24,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1900,13,0,2149,3,0,0 +2013,5,24,5,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-4,0,1925,5,0,0 +2013,10,1,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-5,0,1350,-8,0,0 +2013,9,30,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,1,0,2115,6,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2030,4,0,2345,3,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,-1,0,2359,-9,0,0 +2013,8,15,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2123,2,0,529,11,0,0 +2013,6,30,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,2,0,1455,-1,0,0 +2013,6,30,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,911,9,0,1030,-2,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,655,-3,0,1040,-2,0,0 +2013,5,11,6,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2330,-7,0,702,7,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1932,14,0,2056,13,0,0 +2013,5,6,1,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1109,0,0,1830,19,1,0 +2013,10,24,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,0,0,1703,-11,0,0 +2013,8,24,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2000,30,1,2135,23,1,0 +2013,6,30,7,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1400,22,1,1605,-1,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2102,59,1,2229,45,1,0 +2013,9,22,7,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,849,-7,0,1010,13,0,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1731,-2,0,1955,-3,0,0 +2013,5,7,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,-6,0,2010,-29,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,-4,0,2121,-11,0,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1935,-7,0,2057,-21,0,0 +2013,7,14,7,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,700,0,0,1525,-10,0,0 +2013,8,13,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,0,,1905,0,1,1 +2013,10,10,4,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1241,-6,0,1629,5,0,0 +2013,10,5,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-5,0,1430,-18,0,0 +2013,5,5,7,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,900,-2,0,1029,-16,0,0 +2013,4,21,7,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,745,-17,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1450,-2,0,1550,-7,0,0 +2013,4,13,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1745,18,1,1913,10,0,0 +2013,9,6,5,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1956,-14,0,2116,-21,0,0 +2013,6,3,1,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,1,0,735,14,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,-4,0,1000,-13,0,0 +2013,4,22,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1510,-6,0,1920,-8,0,0 +2013,10,18,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,57,1,1844,31,1,0 +2013,9,21,6,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1132,18,1,1342,18,1,0 +2013,8,24,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-6,0,2045,-44,0,0 +2013,4,13,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2040,-1,0,2150,-6,0,0 +2013,7,29,1,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,700,-4,0,905,-8,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-3,0,935,-4,0,0 +2013,8,4,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1115,24,1,1215,19,1,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1430,1,0,1535,7,0,0 +2013,7,10,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1005,-2,0,1145,-13,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,844,36,1,1330,17,1,0 +2013,10,31,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,-8,0,1731,-16,0,0 +2013,8,15,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1910,21,1,1915,15,1,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1043,-8,0,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,705,-2,0,830,0,0,0 +2013,9,6,5,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1712,16,1,1850,6,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1039,0,,1621,0,1,1 +2013,9,24,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,640,23,1,810,23,1,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1330,1,0,1645,-4,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1650,194,1,1930,181,1,0 +2013,10,18,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,-2,0,1530,-11,0,0 +2013,9,14,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,730,-6,0,935,-12,0,0 +2013,4,11,4,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1240,-5,0,2034,9,0,0 +2013,6,25,2,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1043,-2,0,1159,6,0,0 +2013,5,13,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2040,2,0,2210,-6,0,0 +2013,9,8,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1310,6,0,1440,6,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,108,1,1607,122,1,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2112,13,0,2201,-8,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,17,1,1742,20,1,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1445,22,1,1718,27,1,0 +2013,5,1,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,647,10,0,1028,10,0,0 +2013,9,4,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,944,-12,0,0 +2013,10,14,1,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1337,53,1,1653,49,1,0 +2013,4,28,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,821,-7,0,0 +2013,5,20,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-4,0,2115,-20,0,0 +2013,4,5,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1540,-3,0,1958,3,0,0 +2013,9,19,4,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1656,52,1,2001,16,1,0 +2013,9,15,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1445,-3,0,1811,12,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,3,0,1722,-3,0,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1511,31,1,2354,5,0,0 +2013,7,29,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1140,-4,0,1331,-15,0,0 +2013,7,18,4,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,255,1,1545,264,1,0 +2013,9,28,6,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,0,0,1536,73,1,0 +2013,7,31,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,44,1,1400,42,1,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,608,-5,0,1443,-2,0,0 +2013,8,31,6,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,17,1,1645,21,1,0 +2013,6,2,7,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,950,-6,0,1244,-21,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,2359,-2,0,525,-32,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2220,-3,0,2315,-14,0,0 +2013,5,27,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1605,11,0,1705,10,0,0 +2013,9,8,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,-10,0,649,-15,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1820,1,0,1945,-5,0,0 +2013,9,3,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,0,0,1846,0,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1755,-2,0,2140,-6,0,0 +2013,8,4,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-11,0,1145,-7,0,0 +2013,5,15,3,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-8,0,2048,-7,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,835,-6,0,1145,-10,0,0 +2013,6,16,7,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-2,0,2220,0,0,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,22,1,1830,62,1,0 +2013,5,5,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-1,0,1939,2,0,0 +2013,4,27,6,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-10,0,1235,-4,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,2,0,2249,1,0,0 +2013,4,12,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1810,82,1,1925,67,1,0 +2013,9,2,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1050,2,0,1235,4,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1535,18,1,1815,10,0,0 +2013,7,14,7,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1420,-3,0,1545,-20,0,0 +2013,10,12,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-5,0,1616,-12,0,0 +2013,7,1,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,615,-1,0,941,-30,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,38,1,1100,50,1,0 +2013,7,19,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-7,0,1230,-12,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,5,0,1830,-9,0,0 +2013,8,28,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,645,-14,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1435,-5,0,1627,9,0,0 +2013,9,25,3,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1359,-1,0,1703,-1,0,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1720,16,1,2000,7,0,0 +2013,4,28,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-3,0,1528,-3,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,-1,0,1410,4,0,0 +2013,5,11,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1632,12,0,1956,18,1,0 +2013,7,28,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1030,0,0,1205,0,0,0 +2013,7,12,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-9,0,1632,-5,0,0 +2013,5,11,6,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,1020,3,0,1110,4,0,0 +2013,7,28,7,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1850,8,0,2135,16,1,0 +2013,6,13,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,710,0,0,830,1,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1605,1,0,1825,-8,0,0 +2013,10,12,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1355,-2,0,1440,-20,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,87,1,1635,86,1,0 +2013,10,22,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1705,-6,0,2123,-10,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,630,-2,0,755,-7,0,0 +2013,10,29,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1720,-7,0,1913,2,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-1,0,1505,10,0,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,2025,140,1,2340,125,1,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,855,12,0,1430,0,0,0 +2013,10,30,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1810,0,,1923,0,1,1 +2013,5,20,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,18,1,1940,15,1,0 +2013,7,27,6,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,112,1,1250,105,1,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1345,66,1,1615,58,1,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1410,-2,0,1505,-7,0,0 +2013,9,8,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-12,0,2130,-9,0,0 +2013,8,16,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1135,-4,0,1350,-9,0,0 +2013,9,9,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1055,0,0,1342,3,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,2,0,2120,-1,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,118,1,812,133,1,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,12,0,1910,-5,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,9,0,1045,4,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,2,0,1120,13,0,0 +2013,10,11,5,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,2018,74,1,2202,49,1,0 +2013,5,31,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1320,-2,0,1528,3,0,0 +2013,5,12,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-7,0,1406,5,0,0 +2013,5,27,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2045,-4,0,2245,-13,0,0 +2013,5,14,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,1125,8,0,0 +2013,5,16,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,9,0,1435,10,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1120,-3,0,1550,8,0,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2055,13,0,2220,-1,0,0 +2013,9,30,1,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1215,8,0,1715,-14,0,0 +2013,7,21,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,828,-4,0,1109,-14,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1530,2,0,1752,-5,0,0 +2013,5,12,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1801,61,1,2015,46,1,0 +2013,5,1,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-12,0,1814,-27,0,0 +2013,7,7,7,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1805,3,0,1938,5,0,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2105,1,0,129,-33,0,0 +2013,5,12,7,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,2255,16,1,557,23,1,0 +2013,7,10,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,27,29,1,629,18,1,0 +2013,5,15,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,3,0,1605,-2,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,1,0,1911,-5,0,0 +2013,4,30,2,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1605,-7,0,2053,-15,0,0 +2013,8,4,7,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1403,-3,0,1708,-10,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,900,0,0,1005,7,0,0 +2013,5,25,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1005,6,0,1015,2,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,4,0,1625,-17,0,0 +2013,4,4,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,45,1,1420,66,1,0 +2013,6,24,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1630,2,0,1805,28,1,0 +2013,6,8,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,-2,0,2052,0,0,0 +2013,9,28,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1515,4,0,1734,-9,0,0 +2013,9,22,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,1011,-18,0,0 +2013,6,29,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,0,0,1337,4,0,0 +2013,5,22,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2005,18,1,2125,13,0,0 +2013,5,23,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-2,0,1712,-1,0,0 +2013,5,26,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1357,-7,0,1710,-1,0,0 +2013,5,22,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1435,-10,0,1613,-16,0,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2105,4,0,2220,13,0,0 +2013,8,1,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,830,13,0,921,7,0,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,955,3,0,1110,-4,0,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2000,0,0,2125,-11,0,0 +2013,4,21,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1220,-3,0,1700,-16,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2235,12,0,2330,8,0,0 +2013,7,24,3,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1434,20,1,1929,10,0,0 +2013,5,8,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,906,-4,0,1239,3,0,0 +2013,7,16,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1000,9,0,0 +2013,4,10,3,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,375,1,2143,356,1,0 +2013,8,16,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1807,12,0,2015,-13,0,0 +2013,9,27,5,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1340,15,1,1405,17,1,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1410,-5,0,1445,-12,0,0 +2013,5,1,3,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1310,-9,0,1416,-17,0,0 +2013,7,16,2,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1659,10,0,1853,-4,0,0 +2013,7,16,2,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1729,150,1,30,149,1,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1020,5,0,1335,3,0,0 +2013,4,17,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1805,6,0,1932,20,1,0 +2013,9,3,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1105,-2,0,1244,-12,0,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1255,9,0,1415,11,0,0 +2013,4,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,722,-2,0,1130,-8,0,0 +2013,6,2,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1011,319,1,1313,326,1,0 +2013,4,10,3,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,959,0,0,1442,45,1,0 +2013,5,16,4,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,940,1,0,1030,2,0,0 +2013,5,10,5,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1159,-5,0,1459,-13,0,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1559,6,0,1858,-21,0,0 +2013,9,19,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-6,0,902,-4,0,0 +2013,10,15,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1545,-14,0,1834,-13,0,0 +2013,4,10,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1826,29,1,2017,30,1,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,229,1,1600,228,1,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,-2,0,1450,-7,0,0 +2013,7,26,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1745,9,0,2003,-7,0,0 +2013,10,20,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,710,-5,0,1508,5,0,0 +2013,4,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2150,-5,0,2315,-14,0,0 +2013,6,4,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1235,-1,0,1705,-2,0,0 +2013,7,11,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1225,-1,0,1350,-9,0,0 +2013,4,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1240,-1,0,1525,-13,0,0 +2013,10,15,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,925,-1,0,1015,-6,0,0 +2013,4,1,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1634,40,1,1926,41,1,0 +2013,5,20,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,177,1,2210,170,1,0 +2013,7,26,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1430,0,0,1810,-2,0,0 +2013,7,1,1,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,15,1,2137,-1,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2045,126,1,2330,156,1,0 +2013,5,15,3,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1221,1,0,2057,-19,0,0 +2013,6,30,7,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,16,1,1350,-16,0,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1605,31,1,1850,28,1,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1650,10,0,1810,8,0,0 +2013,4,5,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,35,1,1016,28,1,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1347,-3,0,2155,12,0,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1827,-5,0,2019,-13,0,0 +2013,5,10,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,700,-2,0,939,-6,0,0 +2013,4,28,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,755,-7,0,925,-12,0,0 +2013,6,30,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1440,6,0,1610,-5,0,0 +2013,10,15,2,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1054,12,0,1830,-27,0,0 +2013,5,5,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-4,0,1355,-5,0,0 +2013,8,18,7,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2104,-4,0,2359,-5,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1910,0,0,2100,-6,0,0 +2013,10,19,6,OO,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,821,-11,0,0 +2013,7,11,4,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2052,53,1,22,43,1,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,850,5,0,1555,15,1,0 +2013,7,30,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,2105,-3,0,2155,-16,0,0 +2013,8,7,3,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1348,-9,0,1604,-18,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,0,0,1815,0,0,0 +2013,4,18,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,130,1,2245,122,1,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1950,6,0,2110,5,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1216,35,1,1704,19,1,0 +2013,10,27,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1050,115,1,1215,132,1,0 +2013,4,18,4,EV,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1245,36,1,1647,33,1,0 +2013,10,27,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-12,0,1405,-16,0,0 +2013,4,23,2,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,710,-10,0,930,-2,0,0 +2013,7,28,7,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1721,76,1,1900,79,1,0 +2013,6,7,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,837,-1,0,1035,-14,0,0 +2013,4,27,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,605,-5,0,705,9,0,0 +2013,8,2,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,930,-5,0,1054,-10,0,0 +2013,10,18,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,-1,0,1920,-7,0,0 +2013,7,14,7,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,1515,-1,0,2105,-2,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,9,0,912,-12,0,0 +2013,9,4,3,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,822,-8,0,0 +2013,10,21,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,935,4,0,1130,-11,0,0 +2013,10,28,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1540,-4,0,1815,-1,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1628,29,1,1659,25,1,0 +2013,8,24,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,905,0,0,1030,-4,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,-2,0,1453,-3,0,0 +2013,9,13,5,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,69,1,1910,51,1,0 +2013,5,22,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-5,0,2050,-14,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1800,0,,2125,0,1,1 +2013,5,10,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2120,20,1,2152,29,1,0 +2013,4,7,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,915,-5,0,1111,-19,0,0 +2013,9,20,5,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,8,0,2110,-12,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-2,0,1122,-6,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1925,0,0,2115,-11,0,0 +2013,5,22,3,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1020,-4,0,1150,-12,0,0 +2013,7,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,-4,0,1414,0,0,0 +2013,9,12,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1759,102,1,1926,103,1,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,15,1,1959,8,0,0 +2013,10,25,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1108,4,0,1214,-2,0,0 +2013,6,7,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,47,1,1856,24,1,0 +2013,4,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1505,13,0,1630,4,0,0 +2013,6,26,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,1,0,1140,-8,0,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,54,1,1915,50,1,0 +2013,6,29,6,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,-1,0,1445,-10,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,-10,0,1120,-20,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1856,50,1,2259,29,1,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,755,-3,0,925,-15,0,0 +2013,8,24,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,1,0,1222,-5,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1120,-4,0,1306,-13,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,18,1,2315,15,1,0 +2013,9,23,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1315,42,1,1420,40,1,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,-3,0,808,8,0,0 +2013,9,5,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,723,-7,0,929,-21,0,0 +2013,6,5,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,630,0,0,720,-3,0,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,8,0,846,14,0,0 +2013,4,25,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,15,1,1515,11,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1450,33,1,1830,16,1,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1650,1,0,1748,-9,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,840,-5,0,1157,2,0,0 +2013,10,26,6,UA,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-5,0,719,-13,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,901,-5,0,1141,-13,0,0 +2013,9,27,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,914,2,0,1012,-7,0,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,7,0,1315,7,0,0 +2013,10,14,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,12,0,1405,23,1,0 +2013,10,9,3,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1900,-2,0,2255,-10,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,-2,0,1622,-11,0,0 +2013,5,18,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-8,0,32,-18,0,0 +2013,4,27,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,-5,0,747,-21,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-4,0,1305,-11,0,0 +2013,9,8,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,615,-8,0,721,-18,0,0 +2013,5,25,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1246,-1,0,1400,-5,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2210,8,0,2341,3,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,845,6,0,1602,-4,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1310,-5,0,1545,-7,0,0 +2013,5,14,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1815,35,1,1940,29,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2045,43,1,2309,80,1,0 +2013,8,15,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,-5,0,2320,-2,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,-5,0,1141,-11,0,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,81,1,1320,77,1,0 +2013,7,18,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-4,0,1200,-6,0,0 +2013,5,14,2,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1246,7,0,1337,-6,0,0 +2013,6,24,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1004,47,1,1149,50,1,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-1,0,1500,-3,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,4,0,2040,7,0,0 +2013,4,28,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,-6,0,2152,-10,0,0 +2013,4,10,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1357,0,,1540,0,1,1 +2013,6,6,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,-1,0,1631,-3,0,0 +2013,5,3,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1653,0,0,1814,1,0,0 +2013,5,18,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,0,0,740,2,0,0 +2013,10,3,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,-5,0,1654,-10,0,0 +2013,5,21,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,18,1,1645,13,0,0 +2013,9,3,2,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1605,0,,1901,0,1,1 +2013,10,1,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,846,-8,0,938,-6,0,0 +2013,4,18,4,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,214,1,2100,217,1,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-9,0,1355,-3,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1427,-2,0,1632,-16,0,0 +2013,6,16,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1459,55,1,1728,64,1,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,31,1,1535,24,1,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,-1,0,2102,1,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1255,-2,0,1420,1,0,0 +2013,4,5,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-1,0,1210,11,0,0 +2013,7,7,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,5,0,2005,-13,0,0 +2013,4,21,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-7,0,1700,21,1,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,855,15,1,1342,3,0,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,0,0,1657,-16,0,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,8,0,1138,12,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1225,-4,0,1345,10,0,0 +2013,5,21,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1738,-5,0,1924,-17,0,0 +2013,6,8,6,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1325,55,1,1630,43,1,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,735,5,0,1015,4,0,0 +2013,9,8,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,847,0,0,1030,1,0,0 +2013,5,11,6,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-7,0,856,0,0,0 +2013,7,29,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-7,0,2041,-12,0,0 +2013,6,16,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1653,7,0,1803,2,0,0 +2013,5,6,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1205,-10,0,1530,0,0,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1345,29,1,1500,21,1,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,820,4,0,1335,-16,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1200,0,0,1355,3,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-6,0,1346,-9,0,0 +2013,5,5,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,7,0,1918,5,0,0 +2013,9,19,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,-4,0,1806,-12,0,0 +2013,10,18,5,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-1,0,1917,-27,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1849,-2,0,1951,-12,0,0 +2013,10,1,2,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1510,-5,0,1735,1,0,0 +2013,10,2,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-4,0,2135,-8,0,0 +2013,5,3,5,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1745,16,1,2250,12,0,0 +2013,4,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,615,-4,0,810,-10,0,0 +2013,5,10,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1017,-10,0,1304,-5,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,729,-6,0,750,-22,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1059,-3,0,1336,-9,0,0 +2013,6,23,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,810,0,0,1635,-13,0,0 +2013,6,20,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1523,-5,0,1752,0,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,-3,0,2028,45,1,0 +2013,5,19,7,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1425,-6,0,1537,-5,0,0 +2013,6,1,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1110,0,0,1255,-12,0,0 +2013,8,29,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1945,-3,0,2123,-13,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,1,0,1644,4,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-8,0,1948,14,0,0 +2013,5,21,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,7,0,1126,10,0,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,-5,0,1825,-18,0,0 +2013,5,19,7,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1210,0,0,1344,0,0,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1210,1,0,1400,-4,0,0 +2013,9,11,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1825,-6,0,1952,-12,0,0 +2013,5,24,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,-6,0,1651,-21,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1955,-2,0,2205,4,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,910,-2,0,1010,-16,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1113,-1,0,1400,-11,0,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1420,9,0,1545,2,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,-1,0,1250,-10,0,0 +2013,8,24,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,955,-3,0,1125,-15,0,0 +2013,7,20,6,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1210,-3,0,1545,-14,0,0 +2013,9,28,6,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,1,0,922,-5,0,0 +2013,6,2,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1145,-8,0,1311,-22,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2142,14,0,2245,2,0,0 +2013,7,5,5,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1100,-7,0,1229,-6,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1425,2,0,1510,3,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,729,-5,0,750,5,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2030,41,1,2310,37,1,0 +2013,9,23,1,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,-2,0,945,-7,0,0 +2013,6,3,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,759,-6,0,1039,-18,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,-2,0,1241,-18,0,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,3,0,1617,23,1,0 +2013,4,27,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,-1,0,812,0,0,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-1,0,1800,-5,0,0 +2013,10,18,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-6,0,2142,11,0,0 +2013,5,3,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1300,-5,0,1350,-14,0,0 +2013,4,11,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1427,74,1,1640,72,1,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,1,0,1230,18,1,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2044,0,0,2211,-13,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1020,-4,0,1320,-11,0,0 +2013,4,8,1,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1716,9,0,1902,4,0,0 +2013,8,16,5,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1700,14,0,1845,12,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1515,0,0,1735,-14,0,0 +2013,8,3,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,7,0,1212,-1,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,750,-5,0,920,-11,0,0 +2013,5,8,3,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,-7,0,1127,-2,0,0 +2013,8,22,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,52,1,2140,50,1,0 +2013,10,23,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1710,-3,0,2045,3,0,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2115,-6,0,4,-26,0,0 +2013,7,22,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,933,-13,0,1235,-21,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,0,0,928,-11,0,0 +2013,6,19,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2103,5,0,519,-12,0,0 +2013,8,22,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-10,0,1300,62,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,16,1,1925,6,0,0 +2013,9,21,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1155,-2,0,1940,-23,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1115,22,1,1247,13,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,-1,0,2140,-12,0,0 +2013,5,8,3,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1410,4,0,1700,-2,0,0 +2013,5,4,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,7,0,1316,-10,0,0 +2013,4,10,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,-4,0,2035,7,0,0 +2013,5,26,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-8,0,1500,-21,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1857,87,1,2030,77,1,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1525,7,0,1635,25,1,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1136,34,1,1234,26,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1920,-1,0,2036,-15,0,0 +2013,5,20,1,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-8,0,853,-8,0,0 +2013,9,10,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-2,0,1355,-9,0,0 +2013,9,28,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1129,-1,0,0 +2013,4,14,7,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-1,0,1545,-11,0,0 +2013,10,11,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-7,0,1125,-15,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2101,2,0,130,20,1,0 +2013,6,5,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-5,0,2305,1,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,840,-1,0,1105,-21,0,0 +2013,8,1,4,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,62,1,2022,79,1,0 +2013,8,13,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1051,-10,0,1333,-11,0,0 +2013,10,30,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1750,-5,0,2016,-19,0,0 +2013,10,3,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1030,-16,0,0 +2013,9,6,5,9E,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1237,-3,0,1403,-17,0,0 +2013,4,28,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,46,1,2211,46,1,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1930,-1,0,2030,-15,0,0 +2013,7,20,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,-1,0,1035,-7,0,0 +2013,10,29,2,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1145,-5,0,1259,-14,0,0 +2013,8,31,6,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1335,12,0,1520,4,0,0 +2013,6,4,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,45,1,2132,32,1,0 +2013,10,26,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-1,0,850,14,0,0 +2013,9,26,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,702,-8,0,802,-14,0,0 +2013,4,22,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,14,0,1633,15,1,0 +2013,7,15,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,2,0,1847,1,0,0 +2013,8,7,3,UA,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,12,0,918,2,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,716,2,0,1036,2,0,0 +2013,6,3,1,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1715,-2,0,2012,20,1,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,745,-3,0,936,-1,0,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,624,0,0,746,-14,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-4,0,1000,-25,0,0 +2013,5,19,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1852,4,0,2125,0,0,0 +2013,5,27,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,838,-8,0,0 +2013,5,28,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,-5,0,1510,6,0,0 +2013,8,12,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1535,-1,0,1901,-4,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-4,0,1255,-11,0,0 +2013,10,21,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,722,0,0,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2035,4,0,2315,5,0,0 +2013,10,19,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1730,4,0,1830,-10,0,0 +2013,10,2,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-6,0,920,-6,0,0 +2013,4,25,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,34,1,1644,66,1,0 +2013,10,24,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1030,2,0,1205,-9,0,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,14,0,1818,-1,0,0 +2013,10,6,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-9,0,1311,-18,0,0 +2013,4,7,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-5,0,1630,-24,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1440,4,0,1607,-15,0,0 +2013,10,8,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1110,-7,0,1245,-15,0,0 +2013,8,6,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,840,3,0,1120,1,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1905,0,0,2055,-10,0,0 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,610,-4,0,735,-14,0,0 +2013,10,26,6,OO,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,-7,0,1414,-11,0,0 +2013,7,6,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,0,0,1054,-1,0,0 +2013,5,30,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,720,-2,0,805,-16,0,0 +2013,5,30,4,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,48,32,1,630,33,1,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,2015,44,1,55,40,1,0 +2013,5,26,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1820,-8,0,1935,-20,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,1,0,1755,-11,0,0 +2013,5,25,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1021,0,0,1306,-10,0,0 +2013,5,31,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,4,0,1340,-2,0,0 +2013,4,10,3,EV,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,835,2,0,1022,-3,0,0 +2013,9,14,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1445,149,1,1755,157,1,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-5,0,30,-27,0,0 +2013,9,30,1,9E,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1600,-6,0,1744,-16,0,0 +2013,4,23,2,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,3,0,1310,-9,0,0 +2013,5,8,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1455,12,0,1620,12,0,0 +2013,6,10,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,655,-7,0,915,1,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,939,0,0,1132,-16,0,0 +2013,8,14,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,58,1,1845,53,1,0 +2013,6,26,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,812,-2,0,0 +2013,5,21,2,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,630,-5,0,840,-13,0,0 +2013,4,10,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,927,-17,0,0 +2013,10,20,7,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,9,0,1935,5,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1618,29,1,1754,18,1,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1925,3,0,2120,3,0,0 +2013,8,26,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,2,0,2125,-2,0,0 +2013,10,6,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-11,0,833,8,0,0 +2013,10,2,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1125,-7,0,1222,-17,0,0 +2013,10,25,5,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,-2,0,2040,-15,0,0 +2013,7,4,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,720,-1,0,1005,-13,0,0 +2013,9,9,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-5,0,1520,-22,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,-4,0,1000,-9,0,0 +2013,5,4,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1002,-3,0,1320,7,0,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1735,5,0,2055,24,1,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,745,-2,0,916,-8,0,0 +2013,8,12,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1755,50,1,1850,47,1,0 +2013,4,20,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1448,-4,0,1527,-6,0,0 +2013,4,21,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-3,0,750,-12,0,0 +2013,5,14,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-9,0,1030,-5,0,0 +2013,7,3,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1837,3,0,2259,-17,0,0 +2013,6,18,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1553,0,,2009,0,1,1 +2013,9,9,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1737,-3,0,1928,-9,0,0 +2013,5,8,3,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-6,0,1105,-10,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1350,13,0,1625,-12,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1025,-4,0,1300,-15,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1550,0,0,1745,-13,0,0 +2013,5,24,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,931,-6,0,1123,-10,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,-4,0,1614,-12,0,0 +2013,8,21,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-8,0,1831,-3,0,0 +2013,8,13,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,732,-4,0,843,-12,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,945,-1,0,1220,-8,0,0 +2013,5,3,5,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1220,-2,0,1335,-10,0,0 +2013,5,19,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1455,79,1,1555,57,1,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,2,0,1955,0,0,0 +2013,5,16,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,849,11,0,930,8,0,0 +2013,10,27,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1645,-11,0,1803,-14,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1642,0,0,1834,-8,0,0 +2013,5,29,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1347,-6,0,1600,-9,0,0 +2013,7,27,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1115,7,0,1255,-4,0,0 +2013,8,2,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1851,-3,0,2057,-10,0,0 +2013,5,9,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,-4,0,1635,-22,0,0 +2013,5,29,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2245,0,0,15,-1,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1335,0,0,1451,-6,0,0 +2013,9,29,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1631,154,1,2003,146,1,0 +2013,5,27,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1800,-12,0,2151,-10,0,0 +2013,5,20,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2110,273,1,2235,257,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1905,-2,0,2014,-24,0,0 +2013,5,27,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1050,-4,0,1310,-14,0,0 +2013,8,19,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-2,0,815,9,0,0 +2013,8,13,2,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-3,0,858,14,0,0 +2013,6,3,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,600,22,1,1212,37,1,0 +2013,5,10,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1447,13,0,2159,36,1,0 +2013,7,30,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-6,0,1230,-13,0,0 +2013,10,20,7,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1255,6,0,1445,2,0,0 +2013,10,6,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-10,0,1025,-13,0,0 +2013,6,13,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,705,10,0,819,-9,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1305,1,0,1730,-5,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1623,3,0,1806,-14,0,0 +2013,4,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-3,0,1903,-11,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1340,-2,0,1544,-5,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2145,0,0,2340,-4,0,0 +2013,4,30,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1405,4,0,1955,9,0,0 +2013,6,3,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,7,0,2055,14,0,0 +2013,6,2,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,535,-2,0,1100,-19,0,0 +2013,10,30,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1639,0,0,1734,1,0,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,830,1,0,955,-1,0,0 +2013,6,7,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,830,-1,0,940,-12,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1752,9,0,1909,-1,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,848,3,0,1052,15,1,0 +2013,7,27,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,855,9,0,1107,27,1,0 +2013,8,23,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,59,1,2110,60,1,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,-3,0,2103,-7,0,0 +2013,7,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,4,0,1435,-3,0,0 +2013,7,9,2,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,149,1,2140,136,1,0 +2013,5,13,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1807,13,0,2018,-8,0,0 +2013,4,22,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,0,0,2055,-4,0,0 +2013,7,24,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,19,1,800,36,1,0 +2013,6,18,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1335,-5,0,1620,1,0,0 +2013,9,22,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,-6,0,1409,-2,0,0 +2013,10,15,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,755,0,0,910,-2,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1200,-16,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1650,79,1,2015,77,1,0 +2013,5,7,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2005,1,0,2200,-13,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,800,-1,0,1145,6,0,0 +2013,6,24,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-6,0,636,6,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1000,-4,0,1037,-5,0,0 +2013,9,30,1,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,-7,0,1935,-14,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1453,-4,0,1604,-27,0,0 +2013,10,27,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1200,8,0,1405,27,1,0 +2013,9,19,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,30,42,1,519,35,1,0 +2013,5,14,2,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1817,-8,0,2108,-20,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,-2,0,2359,0,0,0 +2013,5,29,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-1,0,2020,-19,0,0 +2013,5,5,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1010,-1,0,1145,11,0,0 +2013,7,18,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-3,0,1105,-12,0,0 +2013,4,5,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-2,0,1020,-6,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-2,0,1610,0,0,0 +2013,10,9,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,650,-5,0,0 +2013,10,23,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,2010,-2,0,2251,1,0,0 +2013,7,12,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1555,0,0,1710,-8,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-3,0,1108,0,0,0 +2013,5,29,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,1253,-4,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,948,7,0,1104,-8,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,745,-3,0,855,-2,0,0 +2013,10,10,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,830,-6,0,1550,-14,0,0 +2013,7,18,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1415,13,0,1540,2,0,0 +2013,9,3,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,107,1,1205,107,1,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-2,0,925,-1,0,0 +2013,8,9,5,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1910,2,0,2132,-6,0,0 +2013,10,9,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,-4,0,648,-11,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2220,82,1,2320,72,1,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-6,0,1310,-10,0,0 +2013,10,7,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1245,-2,0,1458,3,0,0 +2013,4,12,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1545,5,0,1700,-4,0,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1420,75,1,1559,75,1,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1350,-2,0,1457,-10,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,9,0,1605,1,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1755,-2,0,1955,-6,0,0 +2013,10,31,4,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1721,-5,0,1859,-6,0,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2140,25,1,2255,20,1,0 +2013,10,2,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-6,0,1315,-10,0,0 +2013,4,30,2,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1811,-1,0,1931,-8,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,845,-4,0,1254,-17,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,-2,0,905,-6,0,0 +2013,5,17,5,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1617,0,0,1840,-4,0,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2015,90,1,2120,74,1,0 +2013,8,15,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,7,0,700,-4,0,0 +2013,5,6,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,828,0,0,1344,-4,0,0 +2013,4,7,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1630,-17,0,1843,-15,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,61,1,1120,49,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-3,0,1210,-21,0,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1210,-4,0,1300,-13,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2246,11,0,29,-8,0,0 +2013,5,13,1,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1735,9,0,1930,16,1,0 +2013,4,21,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1526,16,1,1801,67,1,0 +2013,9,26,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,850,-4,0,1027,-1,0,0 +2013,6,18,2,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1915,7,0,2140,-5,0,0 +2013,10,9,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1718,37,1,1906,32,1,0 +2013,5,14,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,110,1,1926,110,1,0 +2013,10,8,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1810,-6,0,1950,-13,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1735,-5,0,2048,-18,0,0 +2013,9,5,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-9,0,1215,-12,0,0 +2013,8,21,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,0,0,2035,-10,0,0 +2013,4,21,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1505,11,0,1620,11,0,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,25,1,1650,14,0,0 +2013,10,16,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1840,-3,0,1900,-6,0,0 +2013,5,25,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,810,-4,0,1005,-12,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,855,0,0,1215,3,0,0 +2013,10,17,4,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,0,0,1905,-4,0,0 +2013,5,12,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1216,-10,0,1356,-14,0,0 +2013,5,24,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-3,0,830,-11,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1435,7,0,1740,10,0,0 +2013,10,29,2,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-5,0,1001,-23,0,0 +2013,6,3,1,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-3,0,1830,-10,0,0 +2013,8,2,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,0,0,1330,-4,0,0 +2013,9,16,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-5,0,1435,-9,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2055,132,1,2322,114,1,0 +2013,4,8,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1927,190,1,2100,220,1,0 +2013,10,11,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,13,0,1600,-6,0,0 +2013,6,27,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1558,-4,0,1801,-13,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2125,-6,0,2300,-17,0,0 +2013,7,17,3,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,0,0,1755,3,0,0 +2013,10,30,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-5,0,1341,9,0,0 +2013,7,10,3,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1700,-7,0,1931,-10,0,0 +2013,9,15,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-7,0,1557,-1,0,0 +2013,4,24,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1040,4,0,1305,-9,0,0 +2013,9,27,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,645,-5,0,1012,2,0,0 +2013,9,22,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1631,13,0,1959,-2,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,803,-6,0,957,-26,0,0 +2013,7,29,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1445,-1,0,1605,-17,0,0 +2013,10,9,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1020,-3,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,-5,0,1149,-5,0,0 +2013,10,12,6,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-3,0,858,-7,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,730,0,,1155,0,1,1 +2013,10,10,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1930,33,1,2025,32,1,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1630,234,1,2125,224,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1850,81,1,2000,87,1,0 +2013,5,17,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1305,0,0,1427,-6,0,0 +2013,7,18,4,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1801,-1,0,1957,-13,0,0 +2013,6,18,2,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,619,-5,0,813,-11,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1341,-2,0,1453,0,0,0 +2013,8,6,2,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1455,-5,0,1715,-20,0,0 +2013,6,15,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-2,0,1341,-10,0,0 +2013,9,16,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-11,0,1235,-8,0,0 +2013,4,20,6,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1739,-10,0,1946,-9,0,0 +2013,6,27,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,11,0,855,11,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-14,0,1133,-13,0,0 +2013,5,24,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,635,-2,0,755,-9,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2040,-2,0,2300,-14,0,0 +2013,6,20,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-6,0,2210,-19,0,0 +2013,10,14,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1203,-4,0,1240,-12,0,0 +2013,5,1,3,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-9,0,1510,-34,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1400,-2,0,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-3,0,1305,-25,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1700,0,0,1904,3,0,0 +2013,4,7,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1819,-3,0,2031,-18,0,0 +2013,9,9,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-10,0,845,-8,0,0 +2013,5,22,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-2,0,1833,-3,0,0 +2013,5,25,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1844,-4,0,2019,-19,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,15,1,1502,15,1,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,835,-3,0,940,-9,0,0 +2013,7,21,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2050,27,1,2205,23,1,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1913,2,0,2051,-22,0,0 +2013,6,6,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,850,4,0,1200,4,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-4,0,1411,-12,0,0 +2013,5,19,7,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,2,0,2015,-4,0,0 +2013,9,2,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-4,0,1843,-18,0,0 +2013,10,25,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1910,-11,0,2121,-22,0,0 +2013,7,28,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1656,17,1,1831,7,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1000,-1,0,1250,15,1,0 +2013,6,30,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2014,75,1,2229,125,1,0 +2013,8,13,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2015,29,1,2140,24,1,0 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1936,65,1,2039,70,1,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1755,105,1,2121,133,1,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,49,1,1510,72,1,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,-1,0,755,-18,0,0 +2013,4,21,7,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-6,0,1816,13,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1945,-2,0,1955,6,0,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,600,-6,0,700,6,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2015,39,1,2240,27,1,0 +2013,7,11,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,530,-10,0,740,-25,0,0 +2013,5,19,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-6,0,2017,-7,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1515,-4,0,1605,-13,0,0 +2013,8,24,6,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,-8,0,1854,-7,0,0 +2013,9,28,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-5,0,1359,6,0,0 +2013,10,17,4,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2202,24,1,2323,14,0,0 +2013,5,16,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-4,0,2015,-11,0,0 +2013,10,16,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-7,0,1201,3,0,0 +2013,5,24,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1558,0,0,1620,3,0,0 +2013,4,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1317,7,0,1557,13,0,0 +2013,10,24,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1145,3,0,1630,-5,0,0 +2013,7,9,2,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,2000,-2,0,2020,-6,0,0 +2013,6,2,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1825,160,1,2001,136,1,0 +2013,8,26,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,2,0,1210,-2,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,-4,0,830,-6,0,0 +2013,10,19,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1622,-1,0,1900,-3,0,0 +2013,6,14,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1823,1,0,1925,3,0,0 +2013,9,18,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1645,0,0,2015,-15,0,0 +2013,7,31,3,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1345,-9,0,1640,-34,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1955,2,0,2100,-1,0,0 +2013,9,22,7,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,1008,-7,0,0 +2013,4,20,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,705,9,0,915,-10,0,0 +2013,10,18,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,805,-3,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1616,148,1,1757,144,1,0 +2013,7,24,3,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2003,-2,0,2243,-15,0,0 +2013,6,12,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,14,0,1630,4,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,0,0,1624,-12,0,0 +2013,4,16,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-1,0,1941,-9,0,0 +2013,4,11,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1152,0,,1324,0,1,1 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-6,0,1343,-15,0,0 +2013,9,19,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1345,2,0,1534,-3,0,0 +2013,9,22,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,224,1,1830,220,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2154,14,0,2309,6,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,9,0,1745,19,1,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1825,19,1,2335,-3,0,0 +2013,7,18,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,900,5,0,1005,-4,0,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1005,10,0,1236,-18,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1946,54,1,2038,55,1,0 +2013,6,15,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,-3,0,1655,-14,0,0 +2013,7,5,5,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1511,3,0,1852,-12,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,6,0,2120,7,0,0 +2013,5,17,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,605,-2,0,742,-8,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,77,1,2241,63,1,0 +2013,8,17,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1715,15,1,1951,-2,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,625,1,0,810,4,0,0 +2013,5,12,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,700,-1,0,825,-3,0,0 +2013,7,10,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,-5,0,755,6,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,8,0,2035,0,0,0 +2013,4,14,7,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1235,17,1,1529,11,0,0 +2013,9,5,4,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,0,,1123,0,1,1 +2013,8,29,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1205,30,1,1350,29,1,0 +2013,4,9,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-6,0,830,-22,0,0 +2013,7,30,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-8,0,1240,-7,0,0 +2013,9,10,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-9,0,1617,-17,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,25,1,1615,14,0,0 +2013,8,31,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1135,-1,0,1250,-12,0,0 +2013,6,1,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,0,0,925,-7,0,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1810,-3,0,2110,-15,0,0 +2013,7,15,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,805,-1,0,1000,-2,0,0 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,730,-4,0,1000,-17,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-10,0,24,-7,0,0 +2013,9,24,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,915,-7,0,0 +2013,8,8,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-1,0,1130,-11,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,800,5,0,910,2,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,950,-9,0,1136,-20,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-2,0,2007,-9,0,0 +2013,9,9,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2347,-8,0,715,4,0,0 +2013,5,10,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-8,0,839,-31,0,0 +2013,10,13,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1620,-3,0,1913,-4,0,0 +2013,5,24,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-3,0,820,6,0,0 +2013,9,12,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1100,11,0,1210,30,1,0 +2013,7,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2048,-1,0,2340,-24,0,0 +2013,10,5,6,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,956,-1,0,1154,-9,0,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1115,18,1,1220,16,1,0 +2013,4,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1008,0,0,1413,11,0,0 +2013,9,15,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,9,0,1905,-5,0,0 +2013,8,6,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1030,-5,0,1145,-7,0,0 +2013,8,17,6,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-5,0,1815,-2,0,0 +2013,7,11,4,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,-5,0,1110,-18,0,0 +2013,5,24,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1017,-3,0,1318,-11,0,0 +2013,4,28,7,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,620,-8,0,803,-30,0,0 +2013,6,6,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1625,-2,0,2001,-18,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1028,29,1,1256,29,1,0 +2013,10,13,7,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-1,0,1835,-10,0,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-4,0,1025,2,0,0 +2013,8,24,6,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,18,1,2150,22,1,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-1,0,1151,3,0,0 +2013,9,26,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,217,1,1850,199,1,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-3,0,1851,28,1,0 +2013,10,10,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1340,57,1,1525,57,1,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1020,6,0,1435,-2,0,0 +2013,7,25,4,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1510,66,1,1734,61,1,0 +2013,9,18,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-3,0,2135,6,0,0 +2013,10,29,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1041,-6,0,1347,-17,0,0 +2013,4,17,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1704,0,,1723,0,1,1 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1749,3,0,1911,-1,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,48,1,1755,52,1,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,855,1,0,1025,-15,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2215,106,1,2354,95,1,0 +2013,7,23,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,-2,0,2135,12,0,0 +2013,5,22,3,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,72,1,1827,54,1,0 +2013,8,23,5,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,920,5,0,1010,-5,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1315,11,0,1615,8,0,0 +2013,10,6,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1400,-7,0,1527,9,0,0 +2013,5,15,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,8,0,1312,-1,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1210,0,0,1430,9,0,0 +2013,9,25,3,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-3,0,1022,-7,0,0 +2013,8,18,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-6,0,1643,-11,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,0,0,945,-4,0,0 +2013,4,12,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,645,3,0,825,-10,0,0 +2013,8,27,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1555,0,0,1705,6,0,0 +2013,8,21,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1705,-3,0,2025,24,1,0 +2013,6,10,1,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,1,0,1240,-3,0,0 +2013,8,13,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1215,-5,0,1411,-9,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,-2,0,1055,-8,0,0 +2013,8,18,7,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-4,0,2137,-9,0,0 +2013,6,11,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,9,0,1801,21,1,0 +2013,7,7,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,735,-4,0,1050,-14,0,0 +2013,9,21,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1453,87,1,1615,90,1,0 +2013,4,18,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,86,1,1245,74,1,0 +2013,10,26,6,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1456,-10,0,1640,-12,0,0 +2013,4,28,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-5,0,1040,-6,0,0 +2013,9,30,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-4,0,805,-1,0,0 +2013,6,25,2,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-5,0,1908,5,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1735,0,0,2047,-1,0,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2015,-5,0,2144,12,0,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1641,12,0,1940,-15,0,0 +2013,5,8,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1635,-1,0,1740,-14,0,0 +2013,5,28,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2135,170,1,2156,163,1,0 +2013,8,12,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,28,1,2300,19,1,0 +2013,4,16,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,0,,2125,0,1,1 +2013,5,27,1,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1141,8,0,1259,7,0,0 +2013,8,19,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,-15,0,2250,-9,0,0 +2013,9,4,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1455,-2,0,1620,15,1,0 +2013,8,21,3,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,7,0,740,-13,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2030,-8,0,5,-3,0,0 +2013,10,1,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-4,0,2020,-7,0,0 +2013,9,12,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1835,-8,0,2103,-28,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2105,17,1,2320,10,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1145,50,1,1510,47,1,0 +2013,4,10,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,725,0,0,835,-26,0,0 +2013,4,10,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-7,0,1009,-21,0,0 +2013,9,12,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,621,-8,0,755,-12,0,0 +2013,9,30,1,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1707,-3,0,1913,-31,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1736,-2,0,1758,2,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2000,-3,0,2136,-9,0,0 +2013,6,30,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,20,1,825,9,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,955,-7,0,1807,-21,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-1,0,1745,4,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1510,-7,0,1610,-1,0,0 +2013,7,16,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,750,-10,0,1542,-17,0,0 +2013,10,20,7,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,650,-11,0,817,-19,0,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1035,20,1,1215,13,0,0 +2013,7,31,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2005,-3,0,2115,12,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,620,24,1,854,-3,0,0 +2013,8,7,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1630,8,0,1905,2,0,0 +2013,5,30,4,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,2,0,2015,-12,0,0 +2013,8,11,7,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,625,-5,0,808,-23,0,0 +2013,7,30,2,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-8,0,812,-9,0,0 +2013,4,29,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1830,-5,0,1944,-23,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,17,1,1026,2,0,0 +2013,7,5,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1015,-3,0,1157,12,0,0 +2013,4,8,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,920,-2,0,1205,-21,0,0 +2013,6,22,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,719,67,1,908,76,1,0 +2013,7,8,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1330,352,1,1439,363,1,0 +2013,8,6,2,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,-8,0,1937,-20,0,0 +2013,9,8,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-5,0,1723,7,0,0 +2013,10,1,2,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-1,0,1735,-22,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1735,9,0,2300,-2,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,0,0,1805,2,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1820,-4,0,1945,-6,0,0 +2013,10,17,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1110,1,0,1235,10,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,826,3,0,933,2,0,0 +2013,10,5,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1600,-9,0,1705,-10,0,0 +2013,10,1,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-2,0,2110,-13,0,0 +2013,5,2,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1814,-6,0,1940,-10,0,0 +2013,8,2,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1900,0,0,2235,-10,0,0 +2013,6,13,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1112,-1,0,1200,2,0,0 +2013,8,21,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,15,1,2110,14,0,0 +2013,5,23,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-6,0,1004,-10,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2045,1,0,2057,-7,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1230,0,0,1506,-17,0,0 +2013,5,12,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1911,3,0,2234,-1,0,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1350,11,0,1634,65,1,0 +2013,10,20,7,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,837,-14,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,-1,0,1502,-15,0,0 +2013,7,7,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1055,3,0,1330,-6,0,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,-1,0,1246,-16,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,13,0,30,14,0,0 +2013,6,18,2,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2035,2,0,2335,-9,0,0 +2013,6,17,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,820,-5,0,1615,-27,0,0 +2013,7,20,6,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-10,0,1019,-24,0,0 +2013,6,7,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1102,-6,0,1700,50,1,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1130,11,0,1240,2,0,0 +2013,10,24,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,-9,0,1730,-16,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1610,18,1,1735,11,0,0 +2013,5,15,3,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1125,-8,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,0,,2000,0,1,1 +2013,9,17,2,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1113,-9,0,1329,-9,0,0 +2013,7,10,3,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,107,1,1245,96,1,0 +2013,8,18,7,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-6,0,1908,-1,0,0 +2013,4,23,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,623,0,0,750,34,1,0 +2013,5,22,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,39,1,1635,49,1,0 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,-6,0,606,-6,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,810,-3,0,930,-19,0,0 +2013,10,2,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,618,-6,0,659,-9,0,0 +2013,7,1,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1856,196,1,2140,171,1,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,-5,0,1130,-18,0,0 +2013,6,20,4,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-7,0,945,-13,0,0 +2013,5,4,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1935,-4,0,2055,-19,0,0 +2013,10,13,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1700,0,0,1828,0,0,0 +2013,5,27,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2210,4,0,2335,1,0,0 +2013,7,30,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,6,0,1645,-1,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,950,-7,0,1758,-24,0,0 +2013,5,28,2,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,5,0,2105,49,1,0 +2013,10,13,7,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1005,7,0,1505,-5,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1240,-3,0,1500,-3,0,0 +2013,7,30,2,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1821,0,0,2017,-7,0,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-5,0,1612,-1,0,0 +2013,6,22,6,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1413,-2,0,1633,-20,0,0 +2013,6,27,4,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,49,1,2150,86,1,0 +2013,9,23,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1146,43,1,1334,28,1,0 +2013,4,5,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,601,-5,0,858,-11,0,0 +2013,6,16,7,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-5,0,1655,-5,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,732,25,1,929,20,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1350,2,0,1350,1,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,10,0,1000,5,0,0 +2013,6,1,6,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1006,27,1,1731,14,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,831,-2,0,1132,-6,0,0 +2013,9,22,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,729,-7,0,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,-4,0,2153,-9,0,0 +2013,7,17,3,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1818,0,0,2015,1,0,0 +2013,5,20,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,-4,0,606,-6,0,0 +2013,7,8,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,16,1,1405,39,1,0 +2013,4,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,935,-1,0,1030,-10,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1745,-4,0,1909,-2,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,700,-4,0,940,-23,0,0 +2013,4,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-1,0,1614,3,0,0 +2013,4,30,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1433,-2,0,1703,-9,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,4,0,2245,-2,0,0 +2013,4,30,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-8,0,1740,-12,0,0 +2013,9,22,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-3,0,1026,-13,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-6,0,1946,-18,0,0 +2013,7,19,5,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-3,0,810,-24,0,0 +2013,5,17,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1855,-1,0,2200,-7,0,0 +2013,4,22,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,7,0,2045,-7,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,4,0,2321,0,0,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,825,-1,0,1420,-7,0,0 +2013,4,16,2,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-10,0,1755,-24,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1755,20,1,2040,13,0,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,-5,0,1932,-7,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1459,-3,0,1658,-5,0,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,923,-10,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-7,0,2022,-12,0,0 +2013,9,23,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1650,14,0,1810,14,0,0 +2013,10,6,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,0,0,1632,20,1,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,610,0,0,730,-9,0,0 +2013,10,12,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2015,-4,0,2235,-13,0,0 +2013,8,30,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,-1,0,1150,1,0,0 +2013,8,15,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,800,1,0,847,-3,0,0 +2013,5,8,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-6,0,1945,-14,0,0 +2013,7,24,3,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,-2,0,1936,-2,0,0 +2013,8,5,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,-6,0,2214,8,0,0 +2013,7,25,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1443,-7,0,1554,-13,0,0 +2013,8,21,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1326,20,1,2130,25,1,0 +2013,8,27,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1725,11,0,2040,18,1,0 +2013,6,15,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,64,1,1959,58,1,0 +2013,6,27,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1235,30,1,1830,28,1,0 +2013,5,13,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,920,-2,0,1230,12,0,0 +2013,10,17,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,33,1,2040,21,1,0 +2013,4,7,7,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1445,-14,0,1753,-20,0,0 +2013,6,25,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,-4,0,1110,-6,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2010,-4,0,2130,-6,0,0 +2013,8,8,4,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,625,0,0,1230,3,0,0 +2013,6,17,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1540,79,1,1705,71,1,0 +2013,4,15,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,941,64,1,1030,77,1,0 +2013,7,4,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,0,0,1225,2,0,0 +2013,10,4,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1820,42,1,1920,46,1,0 +2013,10,6,7,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,1,0,1957,30,1,0 +2013,6,29,6,DL,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1505,6,0,1657,-20,0,0 +2013,9,10,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,-14,0,2110,-27,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1320,20,1,1540,7,0,0 +2013,10,23,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,-3,0,1831,-20,0,0 +2013,6,1,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,-12,0,2029,-10,0,0 +2013,4,4,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1540,0,0,1713,6,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,-6,0,1421,-17,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2025,65,1,2340,66,1,0 +2013,4,25,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1326,-1,0,1834,-9,0,0 +2013,8,19,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,106,1,1844,76,1,0 +2013,4,19,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,34,1,1245,25,1,0 +2013,4,26,5,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1750,3,0,1900,5,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1135,16,1,1724,7,0,0 +2013,7,28,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1101,-1,0,1246,-1,0,0 +2013,6,24,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-8,0,1745,-6,0,0 +2013,8,22,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-10,0,1445,0,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-7,0,1030,-6,0,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1045,1,0,1923,10,0,0 +2013,4,9,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,805,0,0,1013,2,0,0 +2013,9,28,6,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,920,-1,0,1235,-6,0,0 +2013,8,18,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1155,0,0,1455,-12,0,0 +2013,8,19,1,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1524,0,0,1647,-1,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1905,1,0,2230,-6,0,0 +2013,5,26,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-4,0,1245,-18,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,27,1,1610,19,1,0 +2013,6,30,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,2000,0,0,2107,-3,0,0 +2013,6,24,1,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,735,-4,0,1005,-9,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1523,-2,0,1653,-3,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2023,6,0,2335,-6,0,0 +2013,9,28,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1424,-1,0,1611,-16,0,0 +2013,8,9,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1015,-4,0,1124,2,0,0 +2013,7,17,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-8,0,641,-4,0,0 +2013,4,27,6,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2049,-1,0,509,3,0,0 +2013,10,26,6,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,23,1,2020,12,0,0 +2013,5,4,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1200,6,0,1740,-4,0,0 +2013,10,29,2,YV,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,655,20,1,0 +2013,5,1,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,-1,0,2350,-9,0,0 +2013,5,17,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,935,-9,0,1023,-8,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1910,4,0,2015,-8,0,0 +2013,10,9,3,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-2,0,604,-3,0,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1350,11,0,1615,32,1,0 +2013,6,4,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-8,0,833,7,0,0 +2013,9,19,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,-2,0,1015,-21,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2045,2,0,2211,-13,0,0 +2013,10,21,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,-3,0,1112,-26,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1115,-2,0,1305,-5,0,0 +2013,10,14,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1912,5,0,2229,14,0,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,7,0,1610,-5,0,0 +2013,4,10,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1044,4,0,0 +2013,8,24,6,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1356,-7,0,1651,-11,0,0 +2013,10,10,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2046,5,0,2206,-3,0,0 +2013,6,27,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1532,36,1,1800,50,1,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,-3,0,1915,13,0,0 +2013,6,13,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,9,0,754,12,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2000,4,0,2140,-12,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,833,-5,0,1412,-13,0,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1252,8,0,1502,8,0,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,845,-3,0,1630,0,0,0 +2013,10,1,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,844,-8,0,0 +2013,8,15,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,700,-9,0,948,-36,0,0 +2013,6,25,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,11,0,1513,0,0,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,835,-3,0,1035,-7,0,0 +2013,5,18,6,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-4,0,1950,-16,0,0 +2013,10,10,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1706,6,0,1842,3,0,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2120,68,1,2345,65,1,0 +2013,4,2,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,700,9,0,926,16,1,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1840,51,1,2310,90,1,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,825,92,1,1010,78,1,0 +2013,6,22,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,942,2,0,1640,-6,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,-6,0,1110,-10,0,0 +2013,4,5,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-6,0,926,-13,0,0 +2013,10,1,2,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,630,-9,0,840,-6,0,0 +2013,9,28,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1623,-10,0,1823,-11,0,0 +2013,9,1,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,4,0,1250,-13,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1715,30,1,2330,37,1,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,825,0,0,1000,-3,0,0 +2013,5,11,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-5,0,1650,-11,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,18,1,2231,8,0,0 +2013,7,5,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-7,0,1501,-4,0,0 +2013,6,16,7,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,740,0,0,1315,-26,0,0 +2013,4,22,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,8,0,2354,-6,0,0 +2013,8,15,4,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,740,-1,0,1015,-1,0,0 +2013,5,12,7,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,-2,0,1335,13,0,0 +2013,8,7,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,804,-7,0,942,-14,0,0 +2013,4,4,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1235,-5,0,1524,-13,0,0 +2013,10,26,6,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,840,-2,0,945,-1,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,910,-4,0,1731,-10,0,0 +2013,7,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1505,-2,0,1825,6,0,0 +2013,5,10,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,3,0,1005,-10,0,0 +2013,8,20,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-9,0,1045,-11,0,0 +2013,9,6,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1622,0,0,1743,-15,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1011,-2,0,1406,-7,0,0 +2013,8,7,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,0,0,1024,-5,0,0 +2013,8,26,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,0,0,1140,-4,0,0 +2013,10,8,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1800,-5,0,1900,18,1,0 +2013,5,7,2,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,912,-6,0,1030,-8,0,0 +2013,9,26,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-6,0,1620,5,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,9,0,1140,10,0,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1220,37,1,1340,49,1,0 +2013,8,4,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,-3,0,1425,-12,0,0 +2013,9,23,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,754,-9,0,0 +2013,9,9,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,934,-21,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,719,309,1,848,285,1,0 +2013,4,24,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2257,-9,0,44,-9,0,0 +2013,8,26,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,2,0,1831,-23,0,0 +2013,5,2,4,YV,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,22,1,1337,9,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,-3,0,1602,2,0,0 +2013,6,14,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,-9,0,1447,-28,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1730,81,1,55,87,1,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1120,-9,0,1307,-19,0,0 +2013,8,16,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-6,0,835,-17,0,0 +2013,7,14,7,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,710,-2,0,830,2,0,0 +2013,6,2,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1925,-2,0,2150,-3,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1300,7,0,1350,0,0,0 +2013,9,5,4,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,650,-3,0,748,-8,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,-2,0,1311,-24,0,0 +2013,5,2,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1010,-6,0,1131,-5,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1015,-3,0,1230,-13,0,0 +2013,4,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2155,16,1,2315,6,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,30,1,710,26,1,0 +2013,8,19,1,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,700,-2,0,740,-23,0,0 +2013,5,9,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,615,-2,0,725,-7,0,0 +2013,9,15,7,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1655,-4,0,1923,-5,0,0 +2013,6,29,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,856,-2,0,1018,-6,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,2,0,815,-9,0,0 +2013,4,5,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1404,-2,0,0 +2013,5,2,4,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,37,1,1124,33,1,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,21,1,1440,17,1,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,48,1,2355,40,1,0 +2013,7,29,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-5,0,1300,4,0,0 +2013,9,6,5,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,-1,0,2100,-22,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1933,21,1,2119,9,0,0 +2013,10,25,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,929,-5,0,1129,-17,0,0 +2013,8,24,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,1,0,1400,0,0,0 +2013,5,17,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,11,0,2045,21,1,0 +2013,10,5,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1127,12,0,1225,-1,0,0 +2013,7,31,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,-3,0,1135,-3,0,0 +2013,8,3,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1036,2,0,1335,-11,0,0 +2013,6,11,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-6,0,805,-5,0,0 +2013,8,20,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-6,0,1749,-13,0,0 +2013,7,28,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,-3,0,1859,-8,0,0 +2013,5,31,5,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1554,-10,0,2358,10,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,925,7,0,1050,14,0,0 +2013,4,13,6,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1405,2,0,1535,-11,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1525,0,,1720,0,1,1 +2013,9,12,4,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1710,-2,0,2033,42,1,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,29,1,2104,30,1,0 +2013,5,2,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,955,9,0,1244,1,0,0 +2013,4,18,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1507,47,1,1723,59,1,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,-2,0,1340,-15,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,-2,0,1730,-5,0,0 +2013,9,11,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,950,-4,0,1116,-22,0,0 +2013,9,8,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1420,-2,0,1600,3,0,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1612,0,,1907,0,1,1 +2013,8,23,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,1,0,1302,10,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,-1,0,2348,-8,0,0 +2013,6,30,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,921,-7,0,1058,-6,0,0 +2013,7,11,4,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,1515,1,0,2105,-3,0,0 +2013,8,8,4,DL,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1846,-4,0,2357,-10,0,0 +2013,4,18,4,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,59,1,2048,55,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1350,-5,0,1627,-2,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1100,-1,0,1210,-1,0,0 +2013,9,29,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1410,-8,0,1659,-11,0,0 +2013,9,28,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,700,2,0,1031,15,1,0 +2013,7,8,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-2,0,1905,-2,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,950,72,1,1245,67,1,0 +2013,8,23,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-7,0,1042,8,0,0 +2013,5,19,7,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1510,-11,0,1709,-18,0,0 +2013,10,30,3,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,-10,0,2010,-13,0,0 +2013,7,31,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,3,0,1325,9,0,0 +2013,8,16,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,945,45,1,1135,56,1,0 +2013,5,24,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,915,-4,0,1039,13,0,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,630,-4,0,814,-10,0,0 +2013,5,7,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,-2,0,1839,1,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1505,-1,0,1825,1,0,0 +2013,6,12,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1615,-2,0,1822,-9,0,0 +2013,8,22,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,911,7,0,1043,-6,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1000,11,0,1151,-10,0,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,810,-4,0,945,-15,0,0 +2013,8,26,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1455,-3,0,1720,-5,0,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1250,-11,0,1357,-29,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,732,-6,0,929,-3,0,0 +2013,4,14,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,0,0,900,-2,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1825,58,1,1915,69,1,0 +2013,10,11,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1610,7,0,1725,5,0,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,28,1,2015,27,1,0 +2013,10,3,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,-5,0,1530,-5,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1850,-2,0,1940,-3,0,0 +2013,8,4,7,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1325,5,0,1450,-2,0,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1725,33,1,2110,28,1,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2000,39,1,2050,23,1,0 +2013,4,11,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,820,-4,0,945,13,0,0 +2013,9,10,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,-5,0,1500,0,0,0 +2013,8,20,2,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,5,0,2110,-11,0,0 +2013,8,25,7,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1415,-3,0,1607,0,0,0 +2013,4,13,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1755,-3,0,1900,-4,0,0 +2013,10,5,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,0,0,1835,3,0,0 +2013,6,1,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1000,-2,0,1246,-16,0,0 +2013,7,31,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1625,-1,0,1640,-12,0,0 +2013,4,6,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-4,0,656,13,0,0 +2013,8,27,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,0,0,1920,5,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,820,7,0,940,-2,0,0 +2013,4,16,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1515,0,,1600,0,1,1 +2013,8,13,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,610,-8,0,930,-20,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1830,57,1,2110,49,1,0 +2013,8,2,5,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1540,-1,0,1825,-17,0,0 +2013,6,17,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,605,-9,0,740,-20,0,0 +2013,9,13,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,-2,0,1730,39,1,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-3,0,1344,-15,0,0 +2013,5,10,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1350,82,1,1524,76,1,0 +2013,6,28,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1606,86,1,1821,84,1,0 +2013,4,16,2,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1335,-5,0,1553,-13,0,0 +2013,8,5,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,-5,0,1845,-4,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2045,69,1,2205,47,1,0 +2013,10,5,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1043,0,0,1206,28,1,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,5,0,1415,2,0,0 +2013,10,13,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,2,0,756,-11,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,103,1,1130,104,1,0 +2013,9,27,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,620,-7,0,930,-8,0,0 +2013,4,10,3,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1255,13,0,1432,-4,0,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,-7,0,1133,-16,0,0 +2013,4,18,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,940,0,0,1040,4,0,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1310,0,0,1415,-8,0,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1335,1,0,1805,2,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1320,2,0,1725,-16,0,0 +2013,7,24,3,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2230,-15,0,655,-42,0,0 +2013,7,16,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,-2,0,1315,-16,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1557,1,0,1834,-19,0,0 +2013,7,30,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2020,-11,0,2302,-16,0,0 +2013,6,30,7,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1500,46,1,1823,52,1,0 +2013,6,1,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1925,21,1,2035,28,1,0 +2013,6,25,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,0,0,1215,-8,0,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1522,92,1,1634,91,1,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,21,1,951,9,0,0 +2013,4,20,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1620,-6,0,2215,-3,0,0 +2013,4,7,7,EV,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1729,-5,0,1844,-15,0,0 +2013,5,25,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,945,10,0,1225,-12,0,0 +2013,6,19,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,-3,0,1252,-9,0,0 +2013,5,3,5,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1500,53,1,1624,54,1,0 +2013,5,10,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-7,0,1325,-9,0,0 +2013,10,22,2,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,-3,0,729,-3,0,0 +2013,4,2,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-9,0,1655,-6,0,0 +2013,4,7,7,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,640,-11,0,828,-13,0,0 +2013,8,30,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-3,0,634,-20,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1420,-1,0,1840,-7,0,0 +2013,9,11,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1305,-6,0,1511,-4,0,0 +2013,9,22,7,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,609,-4,0,758,-23,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,0,0,1710,-15,0,0 +2013,4,21,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1455,8,0,1515,-12,0,0 +2013,5,3,5,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1715,-5,0,1938,0,0,0 +2013,7,14,7,VX,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,2000,17,1,2355,12,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1405,18,1,1509,14,0,0 +2013,6,22,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,630,2,0,840,-11,0,0 +2013,8,28,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1850,1,0,2220,-22,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,810,8,0,1330,6,0,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1805,31,1,2128,5,0,0 +2013,7,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,3,0,1025,15,1,0 +2013,6,10,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,822,-4,0,1405,4,0,0 +2013,5,28,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-1,0,1415,-11,0,0 +2013,8,10,6,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1703,5,0,1908,4,0,0 +2013,6,6,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1415,-7,0,1542,-6,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1335,7,0,1435,16,1,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1356,-6,0,2005,-10,0,0 +2013,10,25,5,9E,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,1,0,1524,-2,0,0 +2013,5,15,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-3,0,1022,10,0,0 +2013,4,16,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1539,-7,0,1740,-8,0,0 +2013,10,22,2,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1727,7,0,1806,5,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1349,-6,0,1722,-9,0,0 +2013,5,10,5,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,103,1,1753,93,1,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,-4,0,1945,-1,0,0 +2013,8,12,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,930,-3,0,1155,1,0,0 +2013,7,3,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1615,-8,0,1703,-8,0,0 +2013,5,20,1,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,10,0,2020,27,1,0 +2013,9,14,6,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,837,-14,0,1045,-38,0,0 +2013,10,6,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,12,0,1640,3,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-3,0,1854,-3,0,0 +2013,5,11,6,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,552,0,0,905,0,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,947,-2,0,1110,16,1,0 +2013,5,6,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,645,-7,0,1010,-20,0,0 +2013,8,28,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-2,0,2000,-37,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-9,0,1407,-1,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1545,14,0,1810,0,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2114,-1,0,15,-10,0,0 +2013,5,28,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1815,-6,0,1954,41,1,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,825,-1,0,945,7,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1015,29,1,1410,31,1,0 +2013,6,11,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-4,0,1956,70,1,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1121,5,0,1242,-1,0,0 +2013,7,6,6,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-1,0,928,-5,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,30,1,2110,83,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,-3,0,900,-15,0,0 +2013,9,1,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,18,1,1837,11,0,0 +2013,4,24,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1605,11,0,1805,40,1,0 +2013,5,14,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1113,1,0,1624,-6,0,0 +2013,8,2,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-6,0,2326,-6,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2056,-7,0,2237,-2,0,0 +2013,7,1,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,-5,0,2130,-18,0,0 +2013,9,14,6,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1220,75,1,1338,92,1,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1855,-2,0,2240,-1,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1200,2,0,1420,16,1,0 +2013,10,30,3,B6,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1410,-10,0,1714,-37,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1305,-7,0,1441,-11,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,947,0,0,1110,-11,0,0 +2013,7,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,2,0,1205,-5,0,0 +2013,7,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,-3,0,1015,42,1,0 +2013,10,30,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,4,0,2020,4,0,0 +2013,5,31,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,149,1,920,150,1,0 +2013,8,1,4,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,615,-6,0,803,-34,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2115,6,0,20,2,0,0 +2013,4,20,6,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1605,-8,0,1924,11,0,0 +2013,4,14,7,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,904,-2,0,1109,-4,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2045,19,1,2255,14,0,0 +2013,8,16,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,920,109,1,1133,106,1,0 +2013,9,3,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-4,0,1927,3,0,0 +2013,8,17,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,6,0,957,5,0,0 +2013,5,23,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,909,-6,0,1415,-15,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,35,1,1830,28,1,0 +2013,7,16,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,-1,0,1046,-11,0,0 +2013,7,19,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,824,-9,0,946,-24,0,0 +2013,5,29,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1300,-1,0,1645,-18,0,0 +2013,8,15,4,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1335,6,0,1640,-2,0,0 +2013,9,13,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,708,27,1,840,32,1,0 +2013,7,3,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,22,1,1955,0,0,0 +2013,10,9,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,3,0,2059,-11,0,0 +2013,4,1,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1440,-4,0,1612,-20,0,0 +2013,9,11,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-4,0,1925,3,0,0 +2013,8,1,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1255,6,0,1410,2,0,0 +2013,7,6,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,750,-3,0,1044,-2,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,-5,0,1459,-13,0,0 +2013,9,6,5,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1020,-2,0,1130,-8,0,0 +2013,8,6,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-13,0,904,-23,0,0 +2013,5,2,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1040,-1,0,1340,-1,0,0 +2013,5,29,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,902,9,0,1705,22,1,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-5,0,2354,11,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1730,5,0,1915,10,0,0 +2013,9,15,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,900,-5,0,1645,4,0,0 +2013,8,29,4,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,-16,0,734,-20,0,0 +2013,8,6,2,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1405,33,1,1645,40,1,0 +2013,4,5,5,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,13,0,1843,19,1,0 +2013,4,24,3,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1805,9,0,2030,15,1,0 +2013,7,3,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-4,0,1415,6,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-5,0,1346,-11,0,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1750,-3,0,2000,-24,0,0 +2013,8,22,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,3,0,935,-1,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2125,-5,0,10,-3,0,0 +2013,5,4,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,600,-9,0,955,-21,0,0 +2013,9,26,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,6,0,1540,2,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-8,0,900,-24,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1055,-7,0,1320,-17,0,0 +2013,8,19,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1241,-4,0,1343,-9,0,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,-2,0,1800,-2,0,0 +2013,6,28,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,615,-6,0,745,0,0,0 +2013,10,15,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1020,5,0,1200,5,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1427,-2,0,1640,-21,0,0 +2013,9,16,1,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,0,0,2134,-28,0,0 +2013,7,31,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-4,0,1718,-20,0,0 +2013,6,7,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1320,1,0,1410,-6,0,0 +2013,8,1,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,635,-5,0,847,-14,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1219,-8,0,1709,-13,0,0 +2013,7,1,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-13,0,1250,-6,0,0 +2013,6,28,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,52,1,1915,46,1,0 +2013,6,1,6,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1210,0,0,1455,8,0,0 +2013,10,17,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,2,0,1252,19,1,0 +2013,7,7,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1450,55,1,1645,46,1,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-2,0,2059,-10,0,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1911,2,0,2215,-16,0,0 +2013,4,4,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-7,0,800,-1,0,0 +2013,6,20,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,6,0,1405,0,0,0 +2013,10,28,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13342,General Mitchell International,Milwaukee,WI,1440,29,1,1556,17,1,0 +2013,4,25,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1615,-6,0,1805,7,0,0 +2013,9,17,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2122,-4,0,510,-12,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,0,,2040,0,1,1 +2013,5,31,5,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,925,-8,0,1300,-60,0,0 +2013,4,19,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,50,1,1730,53,1,0 +2013,10,4,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1800,-2,0,2040,-19,0,0 +2013,6,22,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1419,6,0,1740,14,0,0 +2013,7,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,0,0,1042,1,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-4,0,1155,5,0,0 +2013,9,14,6,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1830,29,1,2045,32,1,0 +2013,10,25,5,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,758,0,0,932,-5,0,0 +2013,4,11,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1110,-2,0,1300,-12,0,0 +2013,4,27,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1152,-5,0,1330,-30,0,0 +2013,4,23,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-3,0,1105,-31,0,0 +2013,10,9,3,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,2,0,1950,-2,0,0 +2013,5,19,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,630,-6,0,920,-15,0,0 +2013,10,22,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,-2,0,1359,-15,0,0 +2013,10,1,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1840,-8,0,1925,-17,0,0 +2013,6,12,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1402,10,0,1519,13,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1752,9,0,1958,-6,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-5,0,1045,-16,0,0 +2013,9,21,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1230,3,0,1350,16,1,0 +2013,6,5,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,0,0,1435,-6,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1745,33,1,1930,27,1,0 +2013,4,5,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,4,0,1420,0,0,0 +2013,6,21,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,13,0,1345,14,0,0 +2013,7,15,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,4,0,1104,-31,0,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1903,5,0,1957,5,0,0 +2013,8,21,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-1,0,1110,-9,0,0 +2013,6,15,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,845,28,1,1205,13,0,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,-5,0,1653,-14,0,0 +2013,6,10,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,955,-3,0,1445,-25,0,0 +2013,4,28,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-2,0,2042,-7,0,0 +2013,8,30,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-1,0,2203,-7,0,0 +2013,9,4,3,9E,14524,Richmond International,Richmond,VA,12478,John F. Kennedy International,New York,NY,1227,-5,0,1348,-3,0,0 +2013,4,24,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12339,Indianapolis International,Indianapolis,IN,1115,-3,0,1352,1,0,0 +2013,9,8,7,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,0,0,1240,-10,0,0 +2013,8,9,5,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-14,0,1046,-17,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1859,39,1,2121,54,1,0 +2013,7,21,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,-2,0,2112,-10,0,0 +2013,4,5,5,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,605,-1,0,720,-13,0,0 +2013,4,28,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1640,33,1,1850,29,1,0 +2013,6,25,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-5,0,736,-9,0,0 +2013,10,25,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1639,-3,0,1826,4,0,0 +2013,8,7,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,-6,0,1204,5,0,0 +2013,6,13,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,934,-3,0,1025,9,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,2,0,1721,-15,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,14,0,1300,10,0,0 +2013,8,6,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1515,-11,0,0 +2013,8,25,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,755,1,0,0 +2013,4,5,5,AS,13830,Kahului Airport,Kahului,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,1335,11,0,2146,-16,0,0 +2013,4,9,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,13,0,1327,19,1,0 +2013,10,16,3,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1034,-1,0,1418,-26,0,0 +2013,10,20,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,-3,0,1946,8,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1503,16,1,1631,24,1,0 +2013,10,26,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1010,-6,0,1031,6,0,0 +2013,8,8,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-5,0,904,-11,0,0 +2013,4,18,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1830,-7,0,1944,-24,0,0 +2013,8,4,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-3,0,929,-16,0,0 +2013,7,25,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-6,0,2025,-5,0,0 +2013,5,16,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-11,0,1509,-12,0,0 +2013,9,17,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1415,-1,0,1505,-7,0,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-1,0,1336,24,1,0 +2013,4,22,1,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,-4,0,2140,6,0,0 +2013,7,7,7,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2155,-7,0,2336,-16,0,0 +2013,4,6,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1700,6,0,1815,-13,0,0 +2013,7,3,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,2,0,2211,-7,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,15,1,2345,1,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1054,73,1,1838,59,1,0 +2013,7,11,4,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1023,8,0,1259,22,1,0 +2013,5,7,2,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1954,-5,0,2146,-14,0,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1620,24,1,1720,14,0,0 +2013,9,11,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1335,9,0,1610,6,0,0 +2013,8,13,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-2,0,1400,21,1,0 +2013,10,5,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1634,-30,0,0 +2013,7,10,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1105,-3,0,1220,4,0,0 +2013,7,21,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,127,1,2105,130,1,0 +2013,9,28,6,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1125,13,0,1355,29,1,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1955,12,0,2152,-4,0,0 +2013,5,12,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,0,1350,-8,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,700,9,0,931,4,0,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2030,15,1,2345,6,0,0 +2013,10,16,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,-6,0,1940,6,0,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1330,9,0,1430,3,0,0 +2013,8,26,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1125,11,0,1420,-19,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,715,-4,0,945,-10,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1725,2,0,1815,-12,0,0 +2013,9,2,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1145,-2,0,1345,-16,0,0 +2013,9,14,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,24,1,1845,16,1,0 +2013,4,1,1,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1840,4,0,2059,-4,0,0 +2013,5,30,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1608,2,0,1813,-17,0,0 +2013,7,30,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1620,0,,1705,0,1,1 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1329,0,,1507,0,1,1 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,68,1,2150,70,1,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1245,3,0,1515,-9,0,0 +2013,6,12,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,530,-5,0,709,9,0,0 +2013,4,24,3,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,50,1,1422,28,1,0 +2013,10,16,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1755,42,1,2230,26,1,0 +2013,4,23,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1635,-1,0,1750,3,0,0 +2013,5,3,5,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,-3,0,925,-12,0,0 +2013,9,22,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-10,0,1420,-29,0,0 +2013,8,2,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-2,0,1000,-11,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1240,-3,0,1405,-1,0,0 +2013,5,10,5,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,2,0,1815,2,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1400,27,1,1740,23,1,0 +2013,10,16,3,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1440,37,1,1820,27,1,0 +2013,4,18,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1420,36,1,1935,21,1,0 +2013,8,10,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1141,-7,0,1500,-23,0,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1735,2,0,2250,3,0,0 +2013,7,28,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,825,-8,0,0 +2013,7,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,14057,Portland International,Portland,OR,1525,6,0,1720,2,0,0 +2013,9,25,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-6,0,1117,-12,0,0 +2013,6,29,6,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,700,129,1,921,118,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,60,1,2151,39,1,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1425,-2,0,1731,-39,0,0 +2013,8,8,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1045,-3,0,1200,-9,0,0 +2013,9,7,6,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1420,5,0,1614,27,1,0 +2013,4,17,3,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,0,0,1720,-17,0,0 +2013,6,9,7,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,5,0,2105,10,0,0 +2013,5,28,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,5,0,1345,-2,0,0 +2013,6,11,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,0,0,2202,-4,0,0 +2013,8,25,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2315,-3,0,740,2,0,0 +2013,7,17,3,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,650,-4,0,745,-21,0,0 +2013,9,12,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1720,-3,0,1837,-3,0,0 +2013,5,9,4,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,61,1,1252,67,1,0 +2013,9,25,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1025,-5,0,1259,-22,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1505,0,0,1639,3,0,0 +2013,8,20,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,530,5,0,710,-18,0,0 +2013,8,7,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1226,-5,0,1343,-14,0,0 +2013,8,11,7,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1900,26,1,2229,42,1,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2005,61,1,2125,60,1,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1654,28,1,119,27,1,0 +2013,8,3,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,939,17,1,1200,34,1,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-1,0,954,3,0,0 +2013,6,12,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,808,-12,0,0 +2013,10,21,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,74,1,1355,82,1,0 +2013,9,6,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1520,5,0,0 +2013,9,28,6,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1915,-2,0,2020,-1,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,805,3,0,845,-6,0,0 +2013,9,11,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,832,-10,0,1024,-21,0,0 +2013,5,30,4,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,17,1,1213,15,1,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1040,1,0,1505,-23,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1307,-2,0,1611,-7,0,0 +2013,6,27,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-1,0,1510,1,0,0 +2013,7,4,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1235,-6,0,1405,-12,0,0 +2013,6,2,7,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,845,-4,0,1119,-11,0,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1235,1,0,1555,31,1,0 +2013,5,10,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,620,102,1,753,74,1,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1820,28,1,12,4,0,0 +2013,7,2,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-6,0,1020,-11,0,0 +2013,10,20,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1630,-3,0,1735,-5,0,0 +2013,7,11,4,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,0,,2350,0,1,1 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-4,0,1435,-30,0,0 +2013,10,23,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-3,0,809,-12,0,0 +2013,4,19,5,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1955,-5,0,2125,2,0,0 +2013,4,10,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1510,35,1,1735,39,1,0 +2013,10,11,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,0,1945,-14,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,-3,0,1120,-11,0,0 +2013,4,7,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,45,1,1630,54,1,0 +2013,8,21,3,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1308,22,1,2041,34,1,0 +2013,6,20,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2205,0,0,2350,-4,0,0 +2013,10,7,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1212,-3,0,1450,-2,0,0 +2013,5,11,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,920,0,0,1100,-25,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1455,-5,0,1617,-31,0,0 +2013,4,20,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1508,-18,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,755,-5,0,925,-9,0,0 +2013,9,10,2,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1242,-4,0,1642,-15,0,0 +2013,4,13,6,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1550,-3,0,1725,-20,0,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1105,0,0,1620,-1,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1240,156,1,1930,134,1,0 +2013,4,16,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1455,-3,0,1545,-10,0,0 +2013,7,15,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1245,83,1,1406,78,1,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,36,1,1130,29,1,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,610,-5,0,845,-15,0,0 +2013,5,18,6,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1315,2,0,1520,0,0,0 +2013,9,27,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,915,-1,0,1045,-7,0,0 +2013,5,9,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,45,1,1542,43,1,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1930,58,1,35,52,1,0 +2013,10,9,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1618,8,0,1938,3,0,0 +2013,7,30,2,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,-4,0,1636,-26,0,0 +2013,8,11,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,848,13,0,1202,-4,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,27,1,1208,34,1,0 +2013,6,29,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,25,1,1435,14,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,1,0,1025,5,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,18,1,1535,18,1,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,9,0,2250,5,0,0 +2013,9,23,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-6,0,1210,-11,0,0 +2013,8,20,2,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1525,13,0,1642,6,0,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1705,6,0,2045,-4,0,0 +2013,10,26,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,750,1,0,852,-18,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,19,1,2200,15,1,0 +2013,9,17,2,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1702,-14,0,2059,-27,0,0 +2013,7,22,1,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,151,1,2046,136,1,0 +2013,4,28,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1402,-8,0,1458,12,0,0 +2013,9,27,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1943,-2,0,2038,1,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-8,0,1429,-17,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2055,23,1,2220,15,1,0 +2013,6,4,2,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,614,-4,0,720,-8,0,0 +2013,7,26,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1510,1,0,1642,1,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1529,-2,0,1844,-21,0,0 +2013,7,27,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,1,0,2045,-4,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,2,0,943,14,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,-2,0,2351,-6,0,0 +2013,6,14,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,541,-6,0,903,-10,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,720,-3,0,810,-13,0,0 +2013,6,11,2,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,846,-6,0,1035,-7,0,0 +2013,10,18,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1635,14,0,1655,4,0,0 +2013,4,28,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1457,-7,0,1610,-11,0,0 +2013,8,30,5,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,-7,0,1712,-9,0,0 +2013,6,21,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-13,0,1143,-15,0,0 +2013,10,15,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1125,10,0,1245,3,0,0 +2013,9,18,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2135,3,0,530,-6,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1400,2,0,1450,5,0,0 +2013,7,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,-4,0,2135,-13,0,0 +2013,4,13,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1339,58,1,1729,51,1,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,3,0,1320,-18,0,0 +2013,8,18,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-8,0,1345,-26,0,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1532,16,1,1735,14,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1741,51,1,1929,144,1,0 +2013,4,27,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,49,1,1130,33,1,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,-4,0,1310,-22,0,0 +2013,4,1,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1325,162,1,1445,169,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1120,148,1,1550,161,1,0 +2013,4,1,1,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,44,1,915,21,1,0 +2013,4,2,2,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1514,-2,0,1759,21,1,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1444,8,0,1722,-3,0,0 +2013,4,4,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,-5,0,1733,17,1,0 +2013,8,5,1,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2019,126,1,2310,108,1,0 +2013,4,21,7,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,635,0,0,845,5,0,0 +2013,4,1,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-4,0,2159,-16,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,855,-1,0,1527,0,0,0 +2013,9,7,6,9E,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,830,-5,0,1224,-29,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1955,20,1,2128,7,0,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1041,-1,0,1244,-3,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1255,10,0,1600,2,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1537,11,0,1818,13,0,0 +2013,5,8,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,-2,0,715,-9,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,0,0,1131,-15,0,0 +2013,9,11,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-5,0,903,-7,0,0 +2013,4,28,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,618,2,0,650,2,0,0 +2013,4,5,5,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1035,0,0,1224,-16,0,0 +2013,9,28,6,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,33,1,2123,-1,0,0 +2013,4,4,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,705,-9,0,819,-12,0,0 +2013,4,8,1,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1508,136,1,1840,127,1,0 +2013,10,14,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,750,65,1,1025,82,1,0 +2013,4,2,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-10,0,910,-29,0,0 +2013,8,20,2,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1935,-10,0,2125,-16,0,0 +2013,10,7,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-2,0,925,1,0,0 +2013,4,11,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,920,7,0,1034,-10,0,0 +2013,10,20,7,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,735,-2,0,1035,0,0,0 +2013,7,2,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-5,0,1535,8,0,0 +2013,8,22,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-2,0,720,1,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,4,0,1414,19,1,0 +2013,7,12,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1950,-5,0,2215,-5,0,0 +2013,10,19,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-2,0,840,-4,0,0 +2013,6,15,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,742,-3,0,900,-11,0,0 +2013,8,11,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1135,-1,0,1310,-9,0,0 +2013,5,17,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1735,32,1,2010,28,1,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-5,0,1011,13,0,0 +2013,4,5,5,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-1,0,840,38,1,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-7,0,1305,9,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1301,-9,0,1446,-9,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,3,0,2030,-6,0,0 +2013,7,16,2,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,8,0,1415,12,0,0 +2013,5,19,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,1,0,1535,48,1,0 +2013,5,25,6,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-13,0,1950,-24,0,0 +2013,4,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,1,0,1050,-8,0,0 +2013,7,31,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,30,1,1155,31,1,0 +2013,7,7,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-7,0,1420,-8,0,0 +2013,9,20,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1231,-12,0,1423,-21,0,0 +2013,8,30,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,5,0,2014,24,1,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,0,0,2200,12,0,0 +2013,5,12,7,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-7,0,1020,-12,0,0 +2013,6,27,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,940,11,0,1039,-3,0,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1929,-4,0,2106,3,0,0 +2013,7,7,7,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1344,-7,0,1604,-16,0,0 +2013,4,27,6,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1131,-7,0,2000,-3,0,0 +2013,9,28,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1408,-4,0,1542,-19,0,0 +2013,4,18,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1850,2,0,1925,-6,0,0 +2013,4,22,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1553,124,1,1822,131,1,0 +2013,8,30,5,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1610,-7,0,1918,-9,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,-1,0,1955,3,0,0 +2013,8,14,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-5,0,1600,-17,0,0 +2013,5,30,4,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,7,0,2015,21,1,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1720,46,1,1910,31,1,0 +2013,7,3,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1705,0,0,1857,4,0,0 +2013,9,29,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-8,0,1159,-8,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,0,0,1505,-9,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,855,-7,0,1214,-8,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1010,-2,0,1215,-4,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,-1,0,1013,-14,0,0 +2013,10,4,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1006,-2,0,1630,-14,0,0 +2013,8,8,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,640,-1,0,755,-7,0,0 +2013,9,10,2,9E,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1237,-8,0,1403,-21,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,0,0,1627,8,0,0 +2013,9,30,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-4,0,953,-8,0,0 +2013,9,11,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1056,-11,0,1215,21,1,0 +2013,7,19,5,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1645,0,0,1830,15,1,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,0,,2041,0,1,1 +2013,9,14,6,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1625,-8,0,1939,6,0,0 +2013,10,1,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1610,53,1,1622,54,1,0 +2013,5,30,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1144,14,0,1321,-3,0,0 +2013,7,22,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,741,-8,0,0 +2013,5,6,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,830,5,0,1242,-2,0,0 +2013,5,16,4,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,930,2,0,1105,0,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1950,-4,0,2125,-15,0,0 +2013,7,9,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1654,20,1,1954,8,0,0 +2013,8,17,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,845,33,1,1008,5,0,0 +2013,7,27,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,815,-1,0,925,-6,0,0 +2013,6,9,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1743,-6,0,1929,-8,0,0 +2013,6,2,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1845,9,0,2009,-8,0,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,2,0,935,15,1,0 +2013,4,14,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,-7,0,1030,-9,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,955,0,0,1153,-3,0,0 +2013,7,8,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,3,0,1535,-23,0,0 +2013,4,4,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-1,0,700,-6,0,0 +2013,9,25,3,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1855,-4,0,2024,-1,0,0 +2013,10,12,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-6,0,1143,-6,0,0 +2013,8,19,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,935,-5,0,1153,1,0,0 +2013,6,16,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1804,6,0,2029,-3,0,0 +2013,10,6,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1018,51,1,1358,60,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-3,0,1250,-18,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1115,-3,0,1305,2,0,0 +2013,4,28,7,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,909,-7,0,1200,6,0,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,11,0,1715,18,1,0 +2013,10,20,7,EV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1220,52,1,1412,68,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,2,0,1328,-2,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,715,0,0,945,-3,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1615,-5,0,1720,-6,0,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,840,-7,0,1007,-17,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,747,7,0,917,0,0,0 +2013,10,21,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2000,-5,0,2200,-8,0,0 +2013,6,4,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2025,-6,0,2115,35,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1215,-4,0,1334,-18,0,0 +2013,7,28,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,750,-2,0,1005,-11,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,-3,0,918,2,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1932,6,0,2139,13,0,0 +2013,10,30,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,902,-24,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1100,-3,0,1225,-24,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1345,7,0,1549,-18,0,0 +2013,4,11,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,93,1,1019,93,1,0 +2013,8,4,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1710,-2,0,2340,-17,0,0 +2013,5,8,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-9,0,1142,-12,0,0 +2013,8,22,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-10,0,924,5,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,822,1,0,1017,-17,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2220,0,,110,0,1,1 +2013,6,9,7,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1830,21,1,2010,14,0,0 +2013,8,25,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,800,0,0,850,3,0,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1335,-5,0,1713,-5,0,0 +2013,4,18,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1855,32,1,1955,25,1,0 +2013,8,19,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1255,10,0,1531,6,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-5,0,1349,-10,0,0 +2013,6,5,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,650,18,1,730,29,1,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1740,3,0,1913,-5,0,0 +2013,5,22,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-4,0,1730,-12,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,3,0,1814,17,1,0 +2013,5,28,2,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,620,1,0,720,0,0,0 +2013,7,23,2,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,4,0,2025,-7,0,0 +2013,10,19,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,605,23,1,1035,16,1,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1750,-2,0,1900,-11,0,0 +2013,5,11,6,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-5,0,1043,-8,0,0 +2013,6,16,7,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,28,1,1455,24,1,0 +2013,8,31,6,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1053,105,1,1533,87,1,0 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1940,41,1,2252,72,1,0 +2013,4,1,1,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1545,-5,0,1831,-21,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1652,50,1,2018,44,1,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2030,-3,0,2235,-18,0,0 +2013,4,20,6,EV,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1927,-4,0,2105,-31,0,0 +2013,6,24,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,71,1,2030,60,1,0 +2013,6,29,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-7,0,1135,-10,0,0 +2013,9,7,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1745,-3,0,1915,-14,0,0 +2013,5,16,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-5,0,2215,-9,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1650,-5,0,1810,-8,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,935,-2,0,1620,0,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,239,1,1835,232,1,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,1,0,1430,0,0,0 +2013,7,15,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-6,0,635,-10,0,0 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,16,1,1625,26,1,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1545,4,0,2101,-7,0,0 +2013,8,15,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1240,10,0,1350,6,0,0 +2013,4,16,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,635,-7,0,651,-15,0,0 +2013,9,1,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,-5,0,1103,-6,0,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,2000,13,0,2255,8,0,0 +2013,8,18,7,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,6,0,1930,-1,0,0 +2013,10,11,5,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1725,151,1,1845,132,1,0 +2013,8,27,2,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-2,0,1305,-9,0,0 +2013,10,24,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1830,74,1,1920,67,1,0 +2013,5,15,3,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,705,-6,0,1031,-9,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,160,1,1720,135,1,0 +2013,5,25,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-2,0,1427,-13,0,0 +2013,6,12,3,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1920,94,1,2029,88,1,0 +2013,9,20,5,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1640,2,0,1730,-10,0,0 +2013,10,27,7,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2120,0,0,2349,-6,0,0 +2013,9,4,3,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,-8,0,1542,-6,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,815,0,0,1125,-6,0,0 +2013,7,27,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1840,-16,0,2024,-21,0,0 +2013,7,10,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1625,23,1,2025,83,1,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1315,-4,0,1432,5,0,0 +2013,4,26,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,7,0,1511,8,0,0 +2013,10,17,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1117,16,1,1230,34,1,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,915,0,0,1049,-11,0,0 +2013,5,15,3,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1345,0,,1513,0,1,1 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,12,0,1540,1,0,0 +2013,6,7,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,-5,0,735,3,0,0 +2013,6,2,7,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1235,-6,0,1610,-1,0,0 +2013,7,9,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-1,0,1910,-5,0,0 +2013,10,18,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,1,0,1220,-12,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,946,-4,0,1038,-6,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,0,0,50,-15,0,0 +2013,4,26,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1144,-3,0,1424,-18,0,0 +2013,9,23,1,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2207,-2,0,552,-27,0,0 +2013,8,8,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1515,23,1,1534,22,1,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,828,-3,0,1103,1,0,0 +2013,10,6,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-6,0,1214,-16,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1455,-1,0,1831,47,1,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1720,0,,2010,0,1,1 +2013,9,13,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-3,0,930,-11,0,0 +2013,6,28,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,57,1,2205,47,1,0 +2013,10,24,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1845,29,1,2010,23,1,0 +2013,5,18,6,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,0,0,750,-14,0,0 +2013,9,6,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,736,74,1,946,64,1,0 +2013,5,4,6,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1345,-3,0,1450,-3,0,0 +2013,5,9,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,730,-8,0,1013,-22,0,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1100,59,1,1255,61,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,51,1,1829,34,1,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1359,-9,0,1523,3,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,12,0,1443,22,1,0 +2013,4,10,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,938,33,1,1247,26,1,0 +2013,4,13,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,730,-9,0,1026,-34,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,8,0,2140,5,0,0 +2013,9,26,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,21,1,1235,3,0,0 +2013,8,16,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-4,0,750,-17,0,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1040,-7,0,1840,-13,0,0 +2013,8,13,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,645,-8,0,940,-15,0,0 +2013,8,22,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1052,23,1,1334,16,1,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-3,0,855,5,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1510,-1,0,1630,-12,0,0 +2013,4,28,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,0,0,2324,-2,0,0 +2013,10,23,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1730,-2,0,1836,37,1,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1335,77,1,1640,95,1,0 +2013,10,1,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,-3,0,1805,-17,0,0 +2013,5,7,2,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1050,-5,0,1215,0,0,0 +2013,6,20,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,735,-10,0,0 +2013,9,21,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-1,0,1245,1,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2304,30,1,51,33,1,0 +2013,10,19,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1850,2,0,2050,5,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,-3,0,1823,-9,0,0 +2013,5,11,6,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-11,0,858,-54,0,0 +2013,7,9,2,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2200,-4,0,501,-3,0,0 +2013,8,23,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-3,0,1321,-3,0,0 +2013,5,1,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,7,0,1935,1,0,0 +2013,4,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,10,0,1935,8,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,-4,0,1235,-26,0,0 +2013,7,28,7,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-1,0,900,-15,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1240,12,0,1405,8,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1058,7,0,1346,1,0,0 +2013,10,30,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1900,5,0,2145,19,1,0 +2013,10,7,1,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2130,-1,0,2359,-11,0,0 +2013,9,27,5,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1520,7,0,1950,4,0,0 +2013,6,17,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,2,0,1614,1,0,0 +2013,8,23,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,545,53,1,706,48,1,0 +2013,4,3,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-3,0,1435,-20,0,0 +2013,10,12,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,0,0,930,2,0,0 +2013,10,24,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,920,0,0,1225,-7,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1023,-7,0,1136,-13,0,0 +2013,8,16,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1750,60,1,1915,65,1,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,940,2,0,1240,-5,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,-4,0,905,-12,0,0 +2013,6,12,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,925,0,0,1040,2,0,0 +2013,8,31,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-5,0,925,1,0,0 +2013,5,29,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1408,20,1,1700,35,1,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1920,81,1,2158,47,1,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,945,42,1,1045,36,1,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,751,6,0,1025,-1,0,0 +2013,9,8,7,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,754,4,0,1052,-2,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,920,-2,0,1020,0,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,2,0,1908,-1,0,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1630,-6,0,1813,-11,0,0 +2013,4,17,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1444,-3,0,1633,-4,0,0 +2013,9,26,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1405,4,0,1525,-6,0,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1120,2,0,1625,-12,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-3,0,1001,12,0,0 +2013,10,7,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1731,109,1,1955,97,1,0 +2013,6,1,6,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,923,-21,0,0 +2013,8,23,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-6,0,1400,-15,0,0 +2013,9,18,3,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,950,-2,0,1310,-11,0,0 +2013,10,24,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1435,1,0,1656,19,1,0 +2013,6,14,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,655,19,1,1526,2,0,0 +2013,7,27,6,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1940,-6,0,2225,-10,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1107,12,0,1235,18,1,0 +2013,7,30,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-5,0,1105,-8,0,0 +2013,7,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1100,93,1,1320,118,1,0 +2013,6,13,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,0,0,1315,-2,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,730,-3,0,1040,-16,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2219,14,0,2344,15,1,0 +2013,10,14,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-9,0,1024,-18,0,0 +2013,5,29,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-5,0,1913,-4,0,0 +2013,7,10,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,54,1,1600,40,1,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,22,1,1632,26,1,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-5,0,1108,-7,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1905,106,1,2145,88,1,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2005,11,0,2125,20,1,0 +2013,10,5,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1355,30,1,1600,12,0,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-3,0,1818,-21,0,0 +2013,7,30,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1355,-3,0,1520,-11,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,22,1,1505,32,1,0 +2013,4,3,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,-7,0,1235,-29,0,0 +2013,10,18,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,715,1,0,825,0,0,0 +2013,8,22,4,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-4,0,1630,9,0,0 +2013,10,11,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-2,0,1130,9,0,0 +2013,7,22,1,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1319,-3,0,1500,0,0,0 +2013,5,23,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1915,50,1,2155,43,1,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1740,-7,0,2045,-23,0,0 +2013,4,6,6,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1705,3,0,1935,3,0,0 +2013,6,16,7,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1110,9,0,1230,35,1,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1150,6,0,1625,-27,0,0 +2013,5,18,6,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1620,-7,0,1826,-31,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1111,-6,0,1153,-15,0,0 +2013,6,16,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-4,0,1755,-18,0,0 +2013,4,8,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,630,1,0,810,8,0,0 +2013,9,26,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,855,4,0,1020,24,1,0 +2013,9,8,7,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1500,9,0,1700,3,0,0 +2013,5,15,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-3,0,905,-20,0,0 +2013,4,24,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,1,0,2042,-12,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1712,-2,0,2110,-23,0,0 +2013,4,14,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1815,-7,0,2005,-27,0,0 +2013,6,9,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,1,0,1928,-11,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1305,11,0,1545,13,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1800,4,0,1925,-1,0,0 +2013,9,11,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,3,0,1841,8,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1820,11,0,1945,10,0,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1340,-5,0,1459,-11,0,0 +2013,5,22,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1935,3,0,2259,-16,0,0 +2013,10,15,2,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1229,-1,0,1326,1,0,0 +2013,6,7,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1350,57,1,1500,65,1,0 +2013,9,25,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1905,-4,0,2040,-9,0,0 +2013,4,24,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,820,-3,0,939,7,0,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1705,57,1,1911,52,1,0 +2013,8,20,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1109,0,0,1454,3,0,0 +2013,8,22,4,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,800,-1,0,1110,-20,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2140,-2,0,2240,-2,0,0 +2013,8,3,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2310,-1,0,634,-28,0,0 +2013,7,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,820,-6,0,1220,-6,0,0 +2013,10,2,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1735,27,1,2015,27,1,0 +2013,5,3,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2110,4,0,2245,13,0,0 +2013,7,2,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-8,0,1025,-10,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,925,24,1,1100,19,1,0 +2013,5,4,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,-3,0,1335,-5,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1055,1,0,1219,-8,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1623,3,0,1945,-10,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1410,5,0,1625,-6,0,0 +2013,5,7,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,820,-7,0,1035,-13,0,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-4,0,2250,-9,0,0 +2013,4,20,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-8,0,1520,-8,0,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,-3,0,1151,-10,0,0 +2013,7,9,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,-1,0,2255,-7,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1057,28,1,1159,31,1,0 +2013,7,28,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1535,1,0,1920,-14,0,0 +2013,9,7,6,EV,11618,Newark Liberty International,Newark,NJ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-5,0,908,-20,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1431,1,0,1628,-3,0,0 +2013,8,11,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,844,-9,0,1124,-19,0,0 +2013,9,27,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-10,0,2056,-25,0,0 +2013,8,2,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1002,-11,0,1259,-28,0,0 +2013,5,1,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,956,-8,0,1140,-36,0,0 +2013,4,15,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1955,-2,0,2125,-14,0,0 +2013,7,1,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,21,1,2040,10,0,0 +2013,9,20,5,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1705,-5,0,1932,-16,0,0 +2013,5,16,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1059,0,0,1329,-17,0,0 +2013,10,31,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,740,0,0,955,1,0,0 +2013,4,14,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,-10,0,1632,11,0,0 +2013,4,25,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1305,-2,0,1440,-5,0,0 +2013,8,7,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1359,13,0,1551,14,0,0 +2013,8,28,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1500,-7,0,1545,2,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-2,0,1237,-8,0,0 +2013,9,25,3,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-6,0,1210,-5,0,0 +2013,5,18,6,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1639,4,0,1933,-4,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,18,1,1330,10,0,0 +2013,4,23,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1416,138,1,1900,97,1,0 +2013,4,19,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,6,0,1515,14,0,0 +2013,4,2,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1015,20,1,1526,0,0,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,7,0,1545,11,0,0 +2013,5,6,1,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,5,0,1936,-32,0,0 +2013,6,16,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,840,-8,0,1115,-5,0,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1051,-5,0,1925,-2,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,26,1,1525,21,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1955,0,0,2131,2,0,0 +2013,10,22,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,805,0,0,1510,11,0,0 +2013,5,15,3,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,-1,0,1140,-2,0,0 +2013,9,7,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1305,-2,0,1545,2,0,0 +2013,9,11,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-10,0,753,-5,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1046,-3,0,1204,-15,0,0 +2013,7,30,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,915,-8,0,1055,-5,0,0 +2013,5,5,7,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1238,-7,0,1459,-19,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1635,46,1,1800,3,0,0 +2013,10,3,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1435,0,0,1725,5,0,0 +2013,5,7,2,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,1,0,740,-12,0,0 +2013,10,8,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,-6,0,1818,-10,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,810,-3,0,1014,-19,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,20,1,1035,25,1,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,-2,0,1845,17,1,0 +2013,9,9,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1235,17,1,1830,25,1,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,3,0,1327,-3,0,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2200,0,0,613,-6,0,0 +2013,8,22,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-2,0,1255,-15,0,0 +2013,8,26,1,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1704,0,0,1931,4,0,0 +2013,10,19,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1225,-1,0,1400,-12,0,0 +2013,7,30,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,1715,-1,0,0 +2013,6,10,1,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1730,71,1,1915,61,1,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,953,4,0,1318,-8,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1950,33,1,2215,17,1,0 +2013,10,31,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1315,-5,0,1555,-19,0,0 +2013,9,10,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1300,-8,0,1416,-16,0,0 +2013,7,13,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1335,139,1,1455,116,1,0 +2013,8,19,1,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-6,0,2130,-12,0,0 +2013,4,14,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2010,5,0,2100,4,0,0 +2013,7,4,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1543,17,1,1903,-17,0,0 +2013,7,22,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1625,-5,0,2010,-19,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1015,-3,0,1258,-16,0,0 +2013,10,9,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1030,21,1,1150,16,1,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,940,-4,0,1119,-16,0,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,841,-1,0,1609,0,0,0 +2013,8,15,4,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-1,0,1000,-1,0,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1121,-7,0,1221,5,0,0 +2013,4,1,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,900,0,0,1055,-6,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,3,0,1205,1,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,726,-2,0,900,4,0,0 +2013,7,11,4,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,2006,-8,0,100,-19,0,0 +2013,10,27,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1719,-1,0,2112,-5,0,0 +2013,7,12,5,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2015,-2,0,8,-2,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,78,1,1130,60,1,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1511,79,1,1803,96,1,0 +2013,5,7,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-5,0,1609,-7,0,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1617,0,0,2033,-17,0,0 +2013,5,21,2,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1916,3,0,2105,9,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,7,0,1120,19,1,0 +2013,9,15,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1045,-3,0,1145,-10,0,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-7,0,2001,-16,0,0 +2013,8,24,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1528,-4,0,1829,-22,0,0 +2013,8,15,4,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1525,18,1,1817,46,1,0 +2013,6,22,6,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,-2,0,1905,-15,0,0 +2013,8,8,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,-3,0,1855,2,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1835,2,0,2200,-9,0,0 +2013,10,20,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,940,-7,0,1110,6,0,0 +2013,10,24,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1135,1,0,1300,3,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1420,-1,0,1552,-9,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1046,-1,0,1204,-9,0,0 +2013,7,21,7,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2320,-8,0,635,-8,0,0 +2013,8,5,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-2,0,715,8,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2135,-6,0,2310,0,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1545,10,0,1713,11,0,0 +2013,7,24,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-4,0,1621,-4,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,17,1,1948,9,0,0 +2013,10,29,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,-7,0,1730,-19,0,0 +2013,5,14,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,0,0,2045,-9,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,810,-1,0,922,-12,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-2,0,2200,-24,0,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1410,13,0,1550,12,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1035,8,0,1210,5,0,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,-5,0,1002,-21,0,0 +2013,6,16,7,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1922,85,1,2102,70,1,0 +2013,8,4,7,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1000,-1,0,1255,-6,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1450,13,0,1550,11,0,0 +2013,8,6,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-5,0,1448,-7,0,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1645,14,0,1820,1,0,0 +2013,8,14,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-7,0,29,-28,0,0 +2013,6,10,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,129,1,2324,158,1,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1745,6,0,2330,7,0,0 +2013,5,4,6,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1614,9,0,1841,-11,0,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1630,-4,0,1945,-46,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-1,0,828,-14,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1504,82,1,2351,85,1,0 +2013,7,25,4,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1535,96,1,1856,98,1,0 +2013,10,13,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1915,-4,0,2025,-4,0,0 +2013,8,4,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,945,3,0,1415,8,0,0 +2013,7,2,2,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1950,144,1,2149,133,1,0 +2013,4,8,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1205,13,0,1310,5,0,0 +2013,10,3,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-1,0,2032,-6,0,0 +2013,7,2,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,745,6,0,905,-6,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,-2,0,900,-10,0,0 +2013,5,1,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,2,0,1250,-10,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1045,-1,0,1155,-7,0,0 +2013,9,1,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-2,0,1409,0,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,-4,0,2353,-7,0,0 +2013,9,8,7,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1425,-6,0,1710,-18,0,0 +2013,6,15,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1530,5,0,1640,-6,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,25,1,1025,26,1,0 +2013,4,15,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,829,-4,0,1152,-17,0,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1000,41,1,1323,23,1,0 +2013,8,17,6,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1710,2,0,1940,-5,0,0 +2013,5,27,1,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,3,0,2015,-30,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,-1,0,2352,-5,0,0 +2013,4,27,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,-5,0,735,-9,0,0 +2013,4,15,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1724,-8,0,0 +2013,8,25,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-3,0,1313,-4,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1350,-1,0,1620,-3,0,0 +2013,6,1,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-2,0,1002,-18,0,0 +2013,9,14,6,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-8,0,1227,-7,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1350,-1,0,1528,3,0,0 +2013,6,9,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-6,0,1254,-10,0,0 +2013,6,23,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1138,2,0,1234,-3,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,705,29,1,959,22,1,0 +2013,10,2,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,549,-10,0,725,-14,0,0 +2013,8,7,3,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,0,0,1330,-9,0,0 +2013,10,1,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1832,-8,0,2056,-18,0,0 +2013,9,21,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1020,-4,0,1413,-2,0,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,17,1,2340,1,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1757,77,1,1956,81,1,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2204,14,0,2356,3,0,0 +2013,5,10,5,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,555,-7,0,656,-21,0,0 +2013,7,27,6,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,10,0,851,5,0,0 +2013,8,27,2,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,600,-4,0,740,-30,0,0 +2013,6,18,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,,1010,0,1,1 +2013,7,28,7,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1531,39,1,1740,33,1,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1555,-3,0,1723,-9,0,0 +2013,9,2,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1950,0,,2140,0,1,1 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2045,50,1,2224,45,1,0 +2013,10,3,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1050,-5,0,1250,-9,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,36,1,2059,25,1,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1500,4,0,1843,-6,0,0 +2013,4,9,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-7,0,628,-19,0,0 +2013,4,18,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-11,0,904,-16,0,0 +2013,10,23,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,710,-5,0,852,-14,0,0 +2013,8,24,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1444,4,0,1742,1,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1122,0,0,1317,-1,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,97,1,1513,106,1,0 +2013,5,29,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2045,16,1,2110,8,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2231,50,1,226,37,1,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1903,-4,0,2048,-12,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1513,-4,0,1925,-32,0,0 +2013,5,10,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,25,1,1135,41,1,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,735,-1,0,950,-6,0,0 +2013,8,26,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2035,2,0,2207,-3,0,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1250,-2,0,1650,-10,0,0 +2013,4,22,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,71,1,1635,75,1,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1450,3,0,1820,6,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-7,0,2152,-13,0,0 +2013,9,10,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,14,0,2110,-1,0,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-1,0,1005,-9,0,0 +2013,8,15,4,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,955,8,0,1110,6,0,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-2,0,1138,-3,0,0 +2013,4,25,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,835,0,0,1005,-16,0,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,930,-11,0,1113,-14,0,0 +2013,8,16,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,630,-6,0,837,-20,0,0 +2013,9,16,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1105,-3,0,1420,6,0,0 +2013,8,15,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,700,35,1,1033,20,1,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,-6,0,19,-1,0,0 +2013,9,20,5,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1600,5,0,1852,-23,0,0 +2013,8,9,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1210,0,0,1335,-9,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1000,2,0,1125,-6,0,0 +2013,8,23,5,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1215,-6,0,1342,-12,0,0 +2013,6,5,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1505,5,0,1555,-5,0,0 +2013,5,8,3,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1130,-10,0,1233,-21,0,0 +2013,6,11,2,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,25,1,1639,4,0,0 +2013,10,7,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1835,10,0,2015,11,0,0 +2013,6,18,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-3,0,1413,-4,0,0 +2013,7,25,4,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,600,0,0,729,-9,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,-5,0,2044,-7,0,0 +2013,4,20,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,-3,0,1840,-9,0,0 +2013,4,8,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,3,0,1935,-2,0,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1235,0,0,1457,-17,0,0 +2013,7,9,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1535,-2,0,1814,-8,0,0 +2013,5,11,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,21,1,1350,15,1,0 +2013,9,29,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,800,0,0,1050,-9,0,0 +2013,8,3,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2010,-4,0,2130,16,1,0 +2013,8,4,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1451,1,0,1604,-8,0,0 +2013,9,12,4,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,830,-10,0,1123,9,0,0 +2013,10,22,2,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1340,-3,0,1655,14,0,0 +2013,7,16,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-9,0,2041,-9,0,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,10,0,1045,5,0,0 +2013,6,5,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1655,-6,0,1826,-9,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,43,1,2205,61,1,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1435,8,0,1805,-1,0,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,-6,0,1210,-11,0,0 +2013,7,1,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-16,0,1150,-13,0,0 +2013,10,30,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1055,0,0,1205,-5,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-5,0,1115,-8,0,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,9,0,1710,8,0,0 +2013,7,30,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,115,1,2305,89,1,0 +2013,7,9,2,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,700,2,0,1155,1,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,850,2,0,1035,-12,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,23,1,2221,-3,0,0 +2013,5,5,7,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1840,-1,0,2132,-32,0,0 +2013,7,21,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1235,15,1,2110,2,0,0 +2013,7,26,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,40,1,1820,94,1,0 +2013,7,6,6,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-6,0,1220,-14,0,0 +2013,6,17,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,4,0,1947,17,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1453,-1,0,1604,-14,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2201,13,0,2342,4,0,0 +2013,4,26,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,2,0,1910,-9,0,0 +2013,6,19,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,-6,0,850,-7,0,0 +2013,4,9,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-2,0,1130,16,1,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,747,-5,0,925,-16,0,0 +2013,8,5,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,-6,0,856,-4,0,0 +2013,4,23,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1518,-1,0,1652,0,0,0 +2013,4,28,7,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1015,-10,0,1611,-25,0,0 +2013,6,8,6,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-5,0,733,0,0,0 +2013,10,30,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-3,0,1010,-15,0,0 +2013,4,8,1,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1325,-2,0,1605,-9,0,0 +2013,10,8,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1325,-1,0,1445,-1,0,0 +2013,10,11,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-4,0,843,2,0,0 +2013,7,23,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,932,0,,1123,0,1,1 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1505,66,1,2251,71,1,0 +2013,7,18,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1724,-8,0,2020,-8,0,0 +2013,5,10,5,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,600,-7,0,801,-2,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1121,-1,0,1209,3,0,0 +2013,8,12,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1215,51,1,1335,42,1,0 +2013,6,22,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1705,3,0,1850,-6,0,0 +2013,7,29,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,-7,0,2032,-15,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1625,0,0,1758,6,0,0 +2013,7,4,4,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1241,-13,0,1821,-13,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2050,12,0,2215,1,0,0 +2013,4,18,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1430,-1,0,1535,-16,0,0 +2013,7,11,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,-1,0,1028,-11,0,0 +2013,10,22,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1355,1,0,1445,5,0,0 +2013,7,20,6,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1700,25,1,2141,110,1,0 +2013,5,10,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2155,-3,0,2234,3,0,0 +2013,8,14,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,10,0,1250,0,0,0 +2013,6,2,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1755,0,0,1855,-6,0,0 +2013,4,9,2,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1950,-5,0,2210,-8,0,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,910,-1,0,1034,0,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,2,0,1740,-7,0,0 +2013,6,8,6,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-4,0,1611,-13,0,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1545,76,1,1840,114,1,0 +2013,8,25,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,-4,0,1425,-8,0,0 +2013,6,20,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,37,1,2115,30,1,0 +2013,4,5,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1945,15,1,2100,11,0,0 +2013,10,13,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1420,2,0,1530,3,0,0 +2013,9,15,7,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1301,6,0,1529,-3,0,0 +2013,6,10,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,22,1,2347,9,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2130,12,0,2250,14,0,0 +2013,8,29,4,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,940,0,0,1100,-3,0,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,932,-3,0,1307,-14,0,0 +2013,8,5,1,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,637,-7,0,744,-17,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,850,0,0,1659,4,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1740,-4,0,1945,-6,0,0 +2013,6,12,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,-7,0,2005,-11,0,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,-2,0,1150,-11,0,0 +2013,6,20,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,-5,0,2137,-32,0,0 +2013,9,30,1,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-7,0,820,-10,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1749,-4,0,1926,-16,0,0 +2013,4,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,0,0,1931,-18,0,0 +2013,9,19,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,850,-28,0,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,58,1,2227,54,1,0 +2013,7,15,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1115,-6,0,1231,0,0,0 +2013,8,7,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1423,-1,0,1526,-6,0,0 +2013,10,29,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-13,0,2111,-12,0,0 +2013,10,7,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1656,-6,0,2228,-4,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1938,-3,0,2132,-14,0,0 +2013,8,4,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,3,0,1445,-6,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,1510,-2,0,2215,9,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1310,-2,0,1655,-13,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,-3,0,1555,9,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1455,24,1,1648,23,1,0 +2013,8,8,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,33,1,1943,28,1,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2235,37,1,125,30,1,0 +2013,4,9,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,20,1,1045,60,1,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1122,-1,0,1410,11,0,0 +2013,9,24,2,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1200,-8,0,1248,7,0,0 +2013,10,20,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1447,1,0,1754,-7,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,930,2,0,1100,-5,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,955,0,0,1337,9,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,640,-2,0,849,-12,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2010,-6,0,2145,-16,0,0 +2013,10,27,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-6,0,1724,-12,0,0 +2013,10,1,2,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1707,3,0,1830,-1,0,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,2,0,2045,-28,0,0 +2013,10,11,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2030,-8,0,2158,-3,0,0 +2013,5,13,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,-5,0,1306,-10,0,0 +2013,5,2,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,0,0,2125,4,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1757,-4,0,1956,-3,0,0 +2013,6,19,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2145,-1,0,2230,-4,0,0 +2013,8,7,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2115,2,0,2220,-6,0,0 +2013,5,17,5,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-2,0,1128,-26,0,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-5,0,1242,-11,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1437,-2,0,1653,-5,0,0 +2013,5,1,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,935,-11,0,0 +2013,9,12,4,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-8,0,812,-10,0,0 +2013,10,5,6,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-5,0,1616,-3,0,0 +2013,7,19,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,553,-9,0,1000,-25,0,0 +2013,4,12,5,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,600,-1,0,840,0,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1450,26,1,1735,17,1,0 +2013,5,30,4,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-4,0,1858,0,0,0 +2013,8,24,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-8,0,2105,6,0,0 +2013,9,21,6,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1825,0,0,2040,-5,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,630,-5,0,807,-16,0,0 +2013,8,9,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1510,-9,0,2018,-14,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1415,-5,0,1636,-15,0,0 +2013,6,6,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1730,25,1,1945,5,0,0 +2013,7,20,6,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,640,-2,0,940,-13,0,0 +2013,6,28,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,1,0,1513,17,1,0 +2013,10,18,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,2,0,1728,-6,0,0 +2013,6,29,6,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1750,-6,0,2010,-9,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2140,21,1,2315,6,0,0 +2013,5,23,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1352,16,1,1537,32,1,0 +2013,7,27,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,1,0,1405,-2,0,0 +2013,9,10,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-5,0,950,-12,0,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-5,0,906,-6,0,0 +2013,8,16,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,10,0,1635,-2,0,0 +2013,9,18,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1500,14,0,1610,5,0,0 +2013,7,12,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,755,-3,0,900,-18,0,0 +2013,4,8,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1740,-7,0,1845,-12,0,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,1,0,1130,-7,0,0 +2013,7,27,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-1,0,1822,-19,0,0 +2013,6,17,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,954,-9,0,1338,11,0,0 +2013,6,15,6,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1208,-2,0,1502,-17,0,0 +2013,10,28,1,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,-7,0,2115,8,0,0 +2013,9,4,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,-6,0,2155,-5,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,915,0,0,1305,44,1,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1125,30,1,1700,18,1,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1850,13,0,2120,-1,0,0 +2013,4,17,3,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,700,1,0,850,-3,0,0 +2013,9,20,5,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2035,-5,0,2330,-3,0,0 +2013,7,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,3,0,2322,0,0,0 +2013,7,29,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,820,18,1,1035,3,0,0 +2013,7,15,1,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,41,1,1259,31,1,0 +2013,6,3,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-3,0,1000,-19,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,745,84,1,845,78,1,0 +2013,4,21,7,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-5,0,940,-20,0,0 +2013,9,18,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,-6,0,1035,-9,0,0 +2013,5,21,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1040,-5,0,1205,-11,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,-4,0,543,-43,0,0 +2013,7,13,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,20,1,619,36,1,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1055,-4,0,1325,-19,0,0 +2013,9,1,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1236,-22,0,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,-4,0,1910,-10,0,0 +2013,10,28,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-7,0,837,-7,0,0 +2013,7,2,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,600,-7,0,729,-10,0,0 +2013,4,11,4,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1450,-1,0,1655,4,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1450,5,0,1725,8,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,32,1,1106,17,1,0 +2013,10,4,5,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1838,-7,0,1942,-17,0,0 +2013,5,20,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,12,0,1732,-5,0,0 +2013,5,26,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,640,6,0,1230,-6,0,0 +2013,10,16,3,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1702,-9,0,1839,-15,0,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,14,0,1725,1,0,0 +2013,9,20,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1420,-5,0,1600,-2,0,0 +2013,9,2,1,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1745,77,1,2040,64,1,0 +2013,6,16,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-2,0,1705,-4,0,0 +2013,6,28,5,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,68,1,1600,81,1,0 +2013,4,22,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1315,84,1,1459,92,1,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,835,10,0,1100,18,1,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-4,0,1051,-3,0,0 +2013,4,20,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-9,0,1349,-16,0,0 +2013,8,27,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,1,0,14,16,1,0 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1015,-5,0,1204,3,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,600,-3,0,710,-5,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,905,-4,0,1029,-20,0,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,-3,0,1630,-7,0,0 +2013,8,28,3,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,855,-4,0,1006,-18,0,0 +2013,5,8,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,600,-7,0,945,8,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,20,1,1254,16,1,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-6,0,1808,-20,0,0 +2013,9,22,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,5,0,1430,-3,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,750,11,0,1035,1,0,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,24,1,1718,-4,0,0 +2013,7,5,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,945,39,1,1100,27,1,0 +2013,8,16,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,605,1,0,725,-2,0,0 +2013,8,20,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,630,-1,0,725,-3,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2059,-4,0,2247,-5,0,0 +2013,6,21,5,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1120,0,0,1400,-29,0,0 +2013,6,6,4,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2202,1,0,2318,1,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,-1,0,1320,-14,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,2,0,1830,1,0,0 +2013,5,20,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1115,12,0,1240,9,0,0 +2013,10,23,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,-5,0,649,-16,0,0 +2013,10,28,1,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,2056,-6,0,2316,-17,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1230,18,1,1325,7,0,0 +2013,7,20,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2110,98,1,2235,103,1,0 +2013,7,12,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1310,54,1,1345,46,1,0 +2013,8,25,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-1,0,1040,-15,0,0 +2013,7,18,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-5,0,1334,-11,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1740,-1,0,1937,15,1,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1055,4,0,1310,-13,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,633,-3,0,1025,-9,0,0 +2013,6,6,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1112,1,0,0 +2013,9,19,4,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,0,0,750,-2,0,0 +2013,7,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1848,5,0,1945,2,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,953,19,1,1040,10,0,0 +2013,7,17,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,206,1,930,193,1,0 +2013,6,2,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,10,0,1558,10,0,0 +2013,10,27,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1735,-3,0,2305,-16,0,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,905,2,0,1059,-17,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1141,-5,0,1348,-19,0,0 +2013,8,27,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,725,-5,0,950,-4,0,0 +2013,9,26,4,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1129,-6,0,1504,0,0,0 +2013,9,2,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1625,20,1,1745,17,1,0 +2013,6,12,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,38,1,1650,22,1,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,12,0,956,68,1,0 +2013,10,9,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1452,-3,0,0 +2013,8,28,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1206,-7,0,1425,-16,0,0 +2013,5,3,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-1,0,1010,1,0,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,2,0,1040,14,0,0 +2013,4,15,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-8,0,1550,-20,0,0 +2013,8,24,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1554,-5,0,1719,2,0,0 +2013,4,10,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,132,1,1721,177,1,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1536,-4,0,1812,-12,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1535,1,0,2010,24,1,0 +2013,8,16,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1015,-3,0,1219,-5,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1550,13,0,1645,2,0,0 +2013,8,10,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,63,1,1040,62,1,0 +2013,7,28,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2100,-5,0,2215,-9,0,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-3,0,1435,-6,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,25,1,1812,10,0,0 +2013,6,4,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1045,22,1,1201,10,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-1,0,1846,-13,0,0 +2013,4,26,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1005,-7,0,1135,-18,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1620,4,0,1758,-3,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,29,1,1515,10,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,538,20,1,811,7,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,-1,0,1922,-12,0,0 +2013,5,31,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-4,0,1355,1,0,0 +2013,7,25,4,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-4,0,911,3,0,0 +2013,6,13,4,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1845,2,0,2359,27,1,0 +2013,6,25,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,10,0,1740,4,0,0 +2013,7,17,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-6,0,944,-9,0,0 +2013,10,2,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,630,-6,0,755,-2,0,0 +2013,7,20,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1410,-2,0,1543,-5,0,0 +2013,5,28,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1040,-5,0,1346,-21,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,840,56,1,952,52,1,0 +2013,9,5,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1725,0,0,1845,6,0,0 +2013,7,5,5,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2030,7,0,2206,-20,0,0 +2013,10,22,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,938,-3,0,1127,-11,0,0 +2013,7,16,2,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2100,-6,0,507,1,0,0 +2013,6,29,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1900,71,1,2153,51,1,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2225,37,1,2355,24,1,0 +2013,4,12,5,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,608,-2,0,717,10,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1935,32,1,2325,20,1,0 +2013,8,26,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1130,-13,0,0 +2013,9,20,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2025,23,1,2125,19,1,0 +2013,7,16,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,2,0,745,-7,0,0 +2013,4,20,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,-1,0,1255,-6,0,0 +2013,8,22,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-4,0,818,-1,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,5,0,2140,0,0,0 +2013,4,5,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1103,53,1,1302,37,1,0 +2013,6,27,4,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,750,25,1,1041,18,1,0 +2013,4,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-16,0,819,-29,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,73,1,2159,72,1,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1351,-1,0,1649,-21,0,0 +2013,5,14,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-3,0,1905,3,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,19,1,1715,6,0,0 +2013,9,30,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1715,3,0,1750,-14,0,0 +2013,8,28,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,55,1,1110,76,1,0 +2013,8,16,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,8,0,2231,4,0,0 +2013,10,2,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1911,-3,0,2123,-10,0,0 +2013,4,27,6,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1826,-4,0,2048,-14,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,240,1,2356,231,1,0 +2013,6,9,7,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,800,-1,0,1556,-7,0,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1451,1,0,2013,-5,0,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1709,-6,0,2214,2,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1154,-4,0,1736,-13,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,944,-5,0,1036,-8,0,0 +2013,9,18,3,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2130,3,0,535,-5,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-5,0,24,-7,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,-1,0,1900,-16,0,0 +2013,4,30,2,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,654,-7,0,1036,-11,0,0 +2013,7,9,2,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,1,0,1020,27,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1100,-1,0,1322,-24,0,0 +2013,9,7,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2145,4,0,140,2,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1454,0,0,1601,-11,0,0 +2013,4,9,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,0,0,1000,9,0,0 +2013,4,17,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,812,-11,0,0 +2013,7,17,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-8,0,1707,3,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-6,0,825,5,0,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1200,-2,0,1305,-5,0,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,15,1,2215,9,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,951,-5,0,1207,-31,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,915,-3,0,1033,-3,0,0 +2013,6,14,5,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,810,8,0,1025,7,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2135,6,0,2255,0,0,0 +2013,10,9,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-5,0,2351,-3,0,0 +2013,9,2,1,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,750,-5,0,947,-1,0,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1520,-2,0,1705,-4,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1811,-3,0,2102,-19,0,0 +2013,8,8,4,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1415,13,0,1530,12,0,0 +2013,5,27,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1035,-1,0,1145,-4,0,0 +2013,9,4,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-5,0,1525,-20,0,0 +2013,7,4,4,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,2,0,1720,-19,0,0 +2013,7,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,-5,0,935,-13,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-6,0,2335,-16,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1048,0,0,1215,-17,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,5,0,2340,-1,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,710,-1,0,1230,-20,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,950,-1,0,1650,2,0,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-1,0,2210,-10,0,0 +2013,6,5,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-8,0,1507,-19,0,0 +2013,8,10,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1611,-1,0,1705,-8,0,0 +2013,6,9,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1750,21,1,2056,-1,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,820,-1,0,958,-9,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,720,-1,0,1157,-9,0,0 +2013,8,28,3,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,852,51,1,1019,48,1,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1608,0,0,1839,4,0,0 +2013,5,25,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,3,0,1052,-8,0,0 +2013,7,22,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,0,0,1155,2,0,0 +2013,6,11,2,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-2,0,2200,-30,0,0 +2013,8,26,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2228,74,1,608,67,1,0 +2013,8,19,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,33,1,1135,4,0,0 +2013,10,1,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-5,0,840,7,0,0 +2013,5,29,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-5,0,1755,22,1,0 +2013,8,17,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,606,-1,0,737,-13,0,0 +2013,10,30,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1940,11,0,1950,38,1,0 +2013,8,28,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-2,0,652,0,0,0 +2013,7,19,5,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-8,0,718,-6,0,0 +2013,6,21,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1530,-1,0,1648,6,0,0 +2013,6,29,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-5,0,1636,-8,0,0 +2013,8,19,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,1,0,2047,-12,0,0 +2013,7,30,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1745,-6,0,2029,5,0,0 +2013,9,28,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1140,-7,0,0 +2013,8,7,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1745,71,1,1926,101,1,0 +2013,6,23,7,9E,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1745,101,1,1910,110,1,0 +2013,9,28,6,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1740,0,0,2035,-20,0,0 +2013,6,8,6,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1710,-1,0,1925,6,0,0 +2013,7,14,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,935,-7,0,941,-14,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,1,0,1725,-16,0,0 +2013,7,13,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1714,131,1,1845,152,1,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2216,-3,0,2338,-21,0,0 +2013,9,20,5,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1635,0,0,1815,-7,0,0 +2013,5,12,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1405,-5,0,1555,-23,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1046,-3,0,1148,-7,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,2,0,1323,-8,0,0 +2013,5,28,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-7,0,1559,3,0,0 +2013,10,26,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,725,-4,0,955,-9,0,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,2,0,1447,1,0,0 +2013,5,5,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1655,4,0,1740,0,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1715,2,0,2305,-4,0,0 +2013,9,15,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,2,0,1517,6,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2219,1,0,12,15,1,0 +2013,8,14,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1254,-2,0,1552,-5,0,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,805,44,1,905,37,1,0 +2013,8,26,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1820,-7,0,1955,-9,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2255,-9,0,134,-32,0,0 +2013,6,30,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-2,0,1211,-5,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,-5,0,1808,-16,0,0 +2013,9,25,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,600,1,0,1209,1,0,0 +2013,10,9,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1230,2,0,1422,1,0,0 +2013,5,13,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,924,47,1,1050,40,1,0 +2013,7,17,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,4,0,1454,8,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2040,4,0,2220,-4,0,0 +2013,4,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1015,105,1,1455,88,1,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,940,-2,0,1135,0,0,0 +2013,4,11,4,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,835,57,1,1020,73,1,0 +2013,4,3,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1750,-1,0,1815,-12,0,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,805,-3,0,1105,-8,0,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,855,0,0,1055,-13,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,1,0,700,2,0,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1359,-6,0,1703,-44,0,0 +2013,10,27,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1039,0,0,1102,0,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2130,7,0,2345,-12,0,0 +2013,4,20,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,0,,824,0,1,1 +2013,9,11,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2115,0,0,2230,-10,0,0 +2013,4,22,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1704,-5,0,1723,-3,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-6,0,1226,-10,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,-3,0,1654,9,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2305,-4,0,31,-11,0,0 +2013,6,1,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,-1,0,1845,-12,0,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,4,0,1735,2,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1605,2,0,1830,-17,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,69,1,1225,65,1,0 +2013,4,5,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1924,9,0,41,7,0,0 +2013,9,5,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1118,-7,0,1400,-7,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1359,10,0,1715,15,1,0 +2013,5,24,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-5,0,1017,0,0,0 +2013,8,1,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1530,20,1,1630,14,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,18,1,1825,-1,0,0 +2013,4,16,2,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2035,0,,2250,0,1,1 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1738,94,1,1941,107,1,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,0,0,1850,1,0,0 +2013,8,21,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,727,-6,0,850,-8,0,0 +2013,5,7,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,924,-5,0,1219,-10,0,0 +2013,6,28,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,154,1,2055,159,1,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,540,-2,0,825,-2,0,0 +2013,9,2,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1305,-2,0,1418,-12,0,0 +2013,4,24,3,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,930,1,0,1100,2,0,0 +2013,9,16,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-2,0,1322,32,1,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,26,1,2020,19,1,0 +2013,5,28,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,17,1,1034,10,0,0 +2013,10,18,5,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1740,5,0,1909,-3,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-1,0,1754,0,0,0 +2013,7,14,7,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1525,11,0,1645,12,0,0 +2013,7,9,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,815,-3,0,1000,-8,0,0 +2013,9,25,3,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1430,-5,0,1535,-10,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1510,55,1,1705,54,1,0 +2013,7,21,7,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,2,0,2202,-4,0,0 +2013,5,8,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1055,71,1,1225,87,1,0 +2013,7,8,1,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1805,-2,0,2259,9,0,0 +2013,6,14,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1321,13,0,1617,8,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1830,-2,0,2055,-19,0,0 +2013,7,21,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1735,9,0,1850,3,0,0 +2013,7,24,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,-1,0,2115,-9,0,0 +2013,5,28,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1143,7,0,1459,60,1,0 +2013,5,19,7,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,15,1,2203,11,0,0 +2013,9,4,3,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,602,-1,0,852,-15,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1205,19,1,1330,10,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1035,-6,0,1217,-5,0,0 +2013,10,2,3,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,605,-1,0,805,-1,0,0 +2013,7,27,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2020,-1,0,459,-7,0,0 +2013,6,4,2,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1408,-19,0,0 +2013,7,9,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,610,-8,0,715,-16,0,0 +2013,5,30,4,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1710,170,1,1915,142,1,0 +2013,5,25,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1220,0,0,1410,-21,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,43,1,2220,35,1,0 +2013,8,14,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,-6,0,1228,-12,0,0 +2013,7,4,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,-5,0,1623,-9,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,1,0,1650,-4,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2025,-5,0,2202,-5,0,0 +2013,5,4,6,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1526,23,1,1720,8,0,0 +2013,5,2,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-6,0,1130,14,0,0 +2013,5,7,2,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,645,-1,0,755,-22,0,0 +2013,8,1,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2155,3,0,543,-19,0,0 +2013,5,29,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-3,0,708,-10,0,0 +2013,10,14,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1334,-1,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2015,25,1,2105,38,1,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,17,1,1255,3,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,2,0,1720,-3,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,805,22,1,930,21,1,0 +2013,6,10,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-1,0,745,-6,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1000,7,0,1250,1,0,0 +2013,9,12,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1254,-14,0,1500,-18,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,1,0,1100,11,0,0 +2013,6,15,6,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,705,41,1,955,21,1,0 +2013,5,31,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,21,1,2212,17,1,0 +2013,8,19,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,-5,0,2032,-7,0,0 +2013,5,25,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1859,57,1,2100,46,1,0 +2013,5,1,3,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,755,-4,0,1020,-13,0,0 +2013,10,21,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1905,8,0,2000,4,0,0 +2013,10,2,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1559,-3,0,1626,0,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,915,-4,0,1059,2,0,0 +2013,6,20,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,-7,0,909,-16,0,0 +2013,8,22,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1416,4,0,0 +2013,7,6,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1005,4,0,1120,-25,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1825,-5,0,1940,4,0,0 +2013,6,29,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1710,19,1,1940,8,0,0 +2013,7,11,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,-4,0,903,-36,0,0 +2013,4,9,2,9E,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-10,0,822,-21,0,0 +2013,9,8,7,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1531,5,0,1805,-17,0,0 +2013,9,2,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-2,0,900,-18,0,0 +2013,5,30,4,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1300,-3,0,1840,-13,0,0 +2013,6,2,7,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1848,8,0,2132,31,1,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1755,1,0,1952,-5,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2004,53,1,2306,44,1,0 +2013,5,2,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,22,1,2300,20,1,0 +2013,10,5,6,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,955,-7,0,1314,10,0,0 +2013,4,18,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1800,-5,0,2040,17,1,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1815,-1,0,2106,-11,0,0 +2013,5,5,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1552,-7,0,0 +2013,5,2,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,0,0,2005,-15,0,0 +2013,9,15,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-6,0,1400,-21,0,0 +2013,5,30,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,0,0,1050,-8,0,0 +2013,4,7,7,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1140,-4,0,1412,-6,0,0 +2013,6,15,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,859,-5,0,1125,-15,0,0 +2013,8,15,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,551,-5,0,700,2,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,635,1,0,750,-8,0,0 +2013,10,30,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,843,-5,0,1111,-8,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1353,-4,0,1604,-16,0,0 +2013,6,22,6,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1750,6,0,2125,-1,0,0 +2013,7,31,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1025,0,0,1308,-9,0,0 +2013,5,27,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,-1,0,1635,-6,0,0 +2013,6,29,6,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,8,0,2224,-12,0,0 +2013,4,13,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,950,-8,0,1200,46,1,0 +2013,6,26,3,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,615,44,1,1500,27,1,0 +2013,9,6,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1408,-8,0,1549,-24,0,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-1,0,1225,-11,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,952,5,0,1456,7,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,730,-1,0,1037,0,0,0 +2013,10,11,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1340,10,0,1615,6,0,0 +2013,6,11,2,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1255,-8,0,1503,-13,0,0 +2013,7,28,7,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,925,-2,0,1132,2,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1240,16,1,1459,-2,0,0 +2013,9,12,4,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1500,348,1,1700,346,1,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1813,6,0,2045,20,1,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1130,2,0,1300,-4,0,0 +2013,6,22,6,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,-2,0,1004,-18,0,0 +2013,9,1,7,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,-4,0,2255,-7,0,0 +2013,5,14,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,14,0,835,4,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,4,0,2055,-14,0,0 +2013,9,20,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,14,0,1615,11,0,0 +2013,5,27,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,11,0,1900,19,1,0 +2013,10,29,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-3,0,1759,-15,0,0 +2013,8,3,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2242,133,1,636,125,1,0 +2013,8,28,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1205,15,1,1322,17,1,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1340,-6,0,1440,-5,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,0,0,1115,8,0,0 +2013,7,26,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1138,7,0,1700,12,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1255,0,0,1620,-10,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,18,1,2326,7,0,0 +2013,7,29,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-2,0,930,-16,0,0 +2013,6,11,2,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,-3,0,1349,-1,0,0 +2013,7,2,2,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1611,-9,0,1925,-34,0,0 +2013,8,10,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1910,-3,0,1950,-7,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,-4,0,1200,-4,0,0 +2013,7,22,1,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1850,-2,0,2025,-8,0,0 +2013,9,19,4,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,652,0,0,740,-9,0,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,-3,0,1355,-9,0,0 +2013,9,28,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1345,2,0,1505,0,0,0 +2013,6,25,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,17,1,1720,25,1,0 +2013,8,17,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,752,-5,0,1049,-23,0,0 +2013,5,22,3,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1710,0,,1807,0,1,1 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1630,250,1,1740,278,1,0 +2013,6,16,7,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,58,1,1415,44,1,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1715,-2,0,1848,-3,0,0 +2013,9,24,2,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1830,-2,0,2041,-7,0,0 +2013,9,3,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1830,0,0,1845,-13,0,0 +2013,7,30,2,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,-6,0,749,-12,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,835,-1,0,1030,-7,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-4,0,1418,-33,0,0 +2013,5,23,4,OO,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,828,35,1,1100,45,1,0 +2013,9,20,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-1,0,1420,-6,0,0 +2013,8,27,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1210,-4,0,1355,32,1,0 +2013,4,26,5,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1125,94,1,1250,102,1,0 +2013,7,2,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,6,0,1039,-5,0,0 +2013,5,1,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2037,-6,0,2225,-11,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1025,-3,0,1127,-16,0,0 +2013,8,21,3,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-13,0,1225,-21,0,0 +2013,6,11,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-2,0,1123,-3,0,0 +2013,5,19,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,11,0,1839,5,0,0 +2013,7,29,1,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1230,121,1,1407,120,1,0 +2013,10,28,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,620,-13,0,917,-11,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1830,37,1,2055,12,0,0 +2013,8,16,5,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-8,0,705,-8,0,0 +2013,7,30,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,810,-2,0,1020,-7,0,0 +2013,10,23,3,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,620,-5,0,703,-15,0,0 +2013,6,17,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-2,0,1925,-3,0,0 +2013,7,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1258,-1,0,1413,-5,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1530,0,0,1736,-12,0,0 +2013,9,19,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-6,0,1610,-2,0,0 +2013,10,3,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-6,0,810,-12,0,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1221,-6,0,1502,-15,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,-1,0,2359,38,1,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2055,-8,0,2210,-6,0,0 +2013,9,15,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1315,-3,0,1425,-16,0,0 +2013,8,25,7,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1752,2,0,2000,14,0,0 +2013,10,3,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1040,-9,0,1200,-18,0,0 +2013,10,13,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2020,-3,0,2143,-9,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,43,1,1810,51,1,0 +2013,9,4,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,270,1,2029,251,1,0 +2013,4,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,4,0,1330,4,0,0 +2013,9,6,5,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,11,0,1710,-5,0,0 +2013,8,4,7,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1929,10,0,30,1,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1955,-2,0,2201,-2,0,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-3,0,1204,-11,0,0 +2013,7,16,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-1,0,700,-21,0,0 +2013,4,18,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,2,0,1526,-15,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,605,0,,720,0,1,1 +2013,5,3,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,0,0,2300,9,0,0 +2013,4,11,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1607,-1,0,1743,-17,0,0 +2013,4,15,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1500,-2,0,1810,-5,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1756,-4,0,2030,41,1,0 +2013,8,13,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1044,1,0,1428,3,0,0 +2013,4,21,7,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-7,0,1207,7,0,0 +2013,9,18,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1617,-7,0,1859,-12,0,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,600,3,0,845,-8,0,0 +2013,10,16,3,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1940,11,0,2155,11,0,0 +2013,9,3,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-5,0,659,-8,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,81,1,2240,88,1,0 +2013,10,12,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1530,-1,0,1719,-23,0,0 +2013,7,20,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-2,0,2251,-4,0,0 +2013,4,12,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-4,0,1923,-4,0,0 +2013,6,1,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1555,-1,0,1715,-1,0,0 +2013,9,5,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1730,-2,0,1842,-14,0,0 +2013,10,9,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1155,4,0,1430,-7,0,0 +2013,9,13,5,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1350,-4,0,1525,-25,0,0 +2013,10,19,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1710,-4,0,1805,-13,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,-1,0,940,0,0,0 +2013,8,9,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1707,-1,0,1830,2,0,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1010,8,0,1145,5,0,0 +2013,6,12,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,-2,0,1420,3,0,0 +2013,8,23,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1908,13,0,2121,-10,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1740,13,0,1825,14,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1125,-1,0,1324,-13,0,0 +2013,6,10,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,654,6,0,850,7,0,0 +2013,10,12,6,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2109,0,0,530,0,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1735,-2,0,1929,-5,0,0 +2013,5,19,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-3,0,2154,-22,0,0 +2013,6,23,7,UA,13830,Kahului Airport,Kahului,HI,11292,Denver International,Denver,CO,2200,24,1,850,14,0,0 +2013,6,13,4,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-2,0,607,-13,0,0 +2013,9,5,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,18,1,1258,4,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,955,14,0,1700,46,1,0 +2013,10,16,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-4,0,934,-4,0,0 +2013,6,3,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1950,-11,0,2050,-11,0,0 +2013,10,31,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1421,67,1,1533,51,1,0 +2013,7,24,3,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2218,-7,0,615,-28,0,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,853,-2,0,1212,-35,0,0 +2013,4,7,7,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,835,-2,0,1655,-16,0,0 +2013,8,18,7,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1010,0,,1325,0,1,1 +2013,10,4,5,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1305,-7,0,1520,-18,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1435,-6,0,1640,-13,0,0 +2013,4,6,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-6,0,849,-6,0,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,19,1,2139,15,1,0 +2013,7,26,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1800,81,1,1905,75,1,0 +2013,9,20,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2025,15,1,2156,10,0,0 +2013,6,21,5,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1815,17,1,1945,5,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1320,12,0,1540,15,1,0 +2013,9,24,2,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,950,-1,0,1110,-11,0,0 +2013,9,26,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1220,12,0,1359,32,1,0 +2013,5,23,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,4,0,1857,7,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1959,40,1,2129,56,1,0 +2013,7,30,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1910,25,1,2030,15,1,0 +2013,5,14,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,935,-1,0,1300,-6,0,0 +2013,8,4,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,4,0,1510,-6,0,0 +2013,10,3,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1640,-3,0,2005,-12,0,0 +2013,4,15,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1455,3,0,1811,14,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,0,0,1440,-15,0,0 +2013,9,21,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,912,-1,0,1039,7,0,0 +2013,9,12,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1554,-4,0,1628,-2,0,0 +2013,5,2,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,645,-6,0,1010,-8,0,0 +2013,8,23,5,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1636,-2,0,1825,-9,0,0 +2013,7,9,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,815,1,0,925,-1,0,0 +2013,4,10,3,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,23,1,1020,23,1,0 +2013,8,9,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,545,-1,0,640,-7,0,0 +2013,9,29,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2112,-2,0,2328,-10,0,0 +2013,6,20,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,752,-14,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,745,27,1,1135,10,0,0 +2013,7,9,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,-2,0,1504,6,0,0 +2013,10,23,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,750,-17,0,0 +2013,5,28,2,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,8,0,1820,4,0,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,644,-4,0,915,-18,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2110,37,1,2235,32,1,0 +2013,4,4,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,0,0,520,-5,0,0 +2013,10,26,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-4,0,945,2,0,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1602,0,0,1759,-12,0,0 +2013,8,13,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,922,-3,0,1041,11,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,2015,56,1,55,44,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1244,-5,0,1422,-19,0,0 +2013,7,26,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1850,-2,0,2020,-2,0,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,930,-5,0,1104,9,0,0 +2013,9,19,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-7,0,1010,-20,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1915,16,1,2020,11,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1630,15,1,1855,11,0,0 +2013,5,31,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2005,45,1,2018,51,1,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2059,-8,0,2330,-30,0,0 +2013,5,15,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,645,-1,0,735,-7,0,0 +2013,7,2,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-5,0,2220,-6,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-6,0,1653,-13,0,0 +2013,6,5,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,2,0,1805,-7,0,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1150,21,1,1330,5,0,0 +2013,9,3,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,810,2,0,955,-2,0,0 +2013,10,2,3,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-5,0,1024,2,0,0 +2013,6,24,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-9,0,740,-7,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,2010,81,1,2238,111,1,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,615,-1,0,900,7,0,0 +2013,7,30,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1544,-2,0,1658,-17,0,0 +2013,10,26,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1500,-4,0,1625,-8,0,0 +2013,4,18,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,33,1,1635,25,1,0 +2013,9,24,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-1,0,2050,-16,0,0 +2013,7,9,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1250,-5,0,1535,-16,0,0 +2013,4,20,6,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2105,23,1,510,22,1,0 +2013,7,7,7,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2045,-7,0,2320,-20,0,0 +2013,10,11,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1630,0,,1730,0,1,1 +2013,8,10,6,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2310,18,1,730,7,0,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1350,-4,0,1708,8,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,835,-2,0,1105,-23,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-2,0,1627,1,0,0 +2013,6,21,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-4,0,1237,-2,0,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,-4,0,1040,-13,0,0 +2013,6,8,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1749,-12,0,2000,-26,0,0 +2013,10,22,2,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1826,-5,0,2018,-15,0,0 +2013,6,2,7,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,705,2,0,925,-19,0,0 +2013,5,14,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,28,1,905,16,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1450,-1,0,1635,-14,0,0 +2013,6,15,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,-9,0,1352,-14,0,0 +2013,6,24,1,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,828,-4,0,1022,-8,0,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2140,-3,0,35,10,0,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2030,21,1,2155,18,1,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-5,0,1003,-15,0,0 +2013,7,11,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,1,0,1330,-8,0,0 +2013,9,15,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,8,0,1545,-10,0,0 +2013,10,21,1,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,855,-3,0,1027,-13,0,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,835,-11,0,1709,-26,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2055,-2,0,2255,-18,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,42,1,1310,41,1,0 +2013,7,15,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2059,18,1,2249,-16,0,0 +2013,4,26,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1839,-9,0,0 +2013,7,23,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,-3,0,1905,2,0,0 +2013,8,20,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-4,0,1110,-8,0,0 +2013,9,15,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-10,0,806,-21,0,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,50,1,2050,30,1,0 +2013,10,5,6,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,-11,0,500,-9,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,-4,0,1738,-14,0,0 +2013,4,10,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2058,-15,0,0 +2013,7,7,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-4,0,1255,-3,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,755,-1,0,1055,-5,0,0 +2013,7,19,5,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1515,45,1,1825,44,1,0 +2013,10,23,3,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-4,0,822,-26,0,0 +2013,6,30,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,955,-36,0,0 +2013,7,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,-2,0,1230,-6,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1410,-3,0,1624,-5,0,0 +2013,4,9,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,24,1,953,63,1,0 +2013,4,11,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,9,0,1018,11,0,0 +2013,4,11,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,700,101,1,906,86,1,0 +2013,10,27,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1825,-4,0,2118,0,0,0 +2013,7,24,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,535,3,0,720,-10,0,0 +2013,8,15,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-2,0,855,2,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,19,1,2325,20,1,0 +2013,4,12,5,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1730,-2,0,1850,-15,0,0 +2013,10,7,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,-1,0,1810,-11,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,-4,0,1615,-16,0,0 +2013,4,12,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,615,-1,0,725,-9,0,0 +2013,5,23,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,246,1,1418,321,1,0 +2013,6,12,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,-6,0,848,-7,0,0 +2013,8,1,4,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-6,0,1543,-9,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,-2,0,1455,-9,0,0 +2013,6,9,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2145,69,1,2305,66,1,0 +2013,9,13,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,849,-7,0,1021,0,0,0 +2013,5,23,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-5,0,920,-5,0,0 +2013,6,23,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,26,1,1720,20,1,0 +2013,5,18,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1447,-3,0,1643,-15,0,0 +2013,10,3,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-1,0,1130,9,0,0 +2013,9,2,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2153,212,1,2344,194,1,0 +2013,7,4,4,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,710,13,0,1300,0,0,0 +2013,10,30,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,13,0,2028,13,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1725,-8,0,1915,-3,0,0 +2013,5,21,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1300,-4,0,1434,-18,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1355,-3,0,1621,-13,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1805,76,1,1955,62,1,0 +2013,9,21,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,-5,0,1800,-3,0,0 +2013,4,5,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,905,17,1,1044,10,0,0 +2013,8,11,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1915,-2,0,2159,6,0,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,1,0,1430,2,0,0 +2013,9,3,2,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,815,-7,0,1355,24,1,0 +2013,8,9,5,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,537,1,0,645,-3,0,0 +2013,10,29,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1459,0,0,1645,0,0,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,8,0,2200,-7,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-5,0,1906,-6,0,0 +2013,9,7,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-7,0,936,-2,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1617,-5,0,1818,-10,0,0 +2013,7,27,6,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1410,-4,0,1645,-8,0,0 +2013,8,3,6,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,402,1,840,390,1,0 +2013,5,5,7,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-6,0,1006,-2,0,0 +2013,8,25,7,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1400,-4,0,1550,-20,0,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-2,0,925,-2,0,0 +2013,6,18,2,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2000,49,1,2210,54,1,0 +2013,7,2,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1035,-2,0,1320,-9,0,0 +2013,10,15,2,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1645,16,1,1820,12,0,0 +2013,8,12,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,848,-6,0,922,-3,0,0 +2013,9,27,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,4,0,1848,-7,0,0 +2013,10,18,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1050,94,1,1225,81,1,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,0,0,1937,-6,0,0 +2013,9,19,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-1,0,1855,18,1,0 +2013,6,27,4,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,605,0,0,730,4,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1045,1,0,1205,-9,0,0 +2013,6,8,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1841,371,1,2300,365,1,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,11,0,2134,5,0,0 +2013,8,13,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,35,26,1,613,20,1,0 +2013,7,10,3,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,1400,11,0,1620,15,1,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-3,0,1349,-17,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1340,28,1,1505,19,1,0 +2013,4,2,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,0,0,2132,-11,0,0 +2013,7,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,540,6,0,637,6,0,0 +2013,7,28,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,-8,0,1632,-19,0,0 +2013,9,8,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,57,1,1540,57,1,0 +2013,7,8,1,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,625,0,0,1230,-2,0,0 +2013,10,8,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1935,-2,0,2229,-5,0,0 +2013,5,7,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-9,0,734,-16,0,0 +2013,5,7,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2005,1,0,2323,4,0,0 +2013,9,8,7,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1530,4,0,1745,-8,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1529,9,0,1812,-10,0,0 +2013,8,1,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1101,-5,0,1246,-15,0,0 +2013,5,12,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,-7,0,1625,-9,0,0 +2013,7,13,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,2,0,1645,5,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1350,158,1,1830,142,1,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,826,42,1,1651,44,1,0 +2013,10,27,7,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1955,1,0,2241,-13,0,0 +2013,5,7,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1450,-3,0,1800,-14,0,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,759,-7,0,1012,-3,0,0 +2013,9,7,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1738,-8,0,1953,-24,0,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1805,134,1,2344,159,1,0 +2013,6,30,7,9E,14524,Richmond International,Richmond,VA,12478,John F. Kennedy International,New York,NY,1311,0,,1435,0,1,1 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,815,-4,0,1130,-11,0,0 +2013,6,30,7,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1700,-10,0,1852,-16,0,0 +2013,8,24,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-7,0,1410,-16,0,0 +2013,4,11,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,725,43,1,840,82,1,0 +2013,4,26,5,FL,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1755,-1,0,1845,5,0,0 +2013,5,17,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-7,0,1230,-10,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,3,0,2110,-1,0,0 +2013,8,8,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-5,0,1408,-8,0,0 +2013,4,29,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1731,-10,0,1905,-6,0,0 +2013,5,16,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1600,7,0,2000,0,0,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1815,7,0,1909,6,0,0 +2013,6,17,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1431,151,1,1637,218,1,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2145,6,0,2350,9,0,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-2,0,720,24,1,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1805,4,0,1920,11,0,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1820,10,0,2040,18,1,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1415,48,1,1645,46,1,0 +2013,9,8,7,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1400,17,1,1545,19,1,0 +2013,6,4,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1805,88,1,1930,76,1,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,619,3,0,833,-13,0,0 +2013,8,3,6,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1415,-1,0,1650,-2,0,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,71,1,2221,68,1,0 +2013,7,7,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,705,-5,0,0 +2013,6,8,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1830,-8,0,2150,-39,0,0 +2013,4,26,5,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1449,-6,0,1550,-6,0,0 +2013,5,29,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,822,-10,0,0 +2013,6,9,7,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1412,-4,0,1645,-1,0,0 +2013,6,5,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1325,-4,0,1345,-1,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1456,2,0,1603,2,0,0 +2013,9,16,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,4,0,648,-7,0,0 +2013,6,30,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1314,106,1,2146,126,1,0 +2013,9,9,1,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1130,-7,0,1607,-8,0,0 +2013,7,28,7,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1319,24,1,1555,11,0,0 +2013,8,12,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,104,1,1654,84,1,0 +2013,4,17,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,0,,1100,0,1,1 +2013,5,27,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1131,64,1,1240,55,1,0 +2013,9,6,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-5,0,858,1,0,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,4,0,805,-7,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1501,25,1,1546,37,1,0 +2013,8,20,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-3,0,938,0,0,0 +2013,10,28,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1200,-1,0,1309,-13,0,0 +2013,7,26,5,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1540,0,0,1745,5,0,0 +2013,9,23,1,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1500,-4,0,1752,9,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1540,-4,0,1845,-3,0,0 +2013,6,23,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2042,0,0,2158,7,0,0 +2013,10,22,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-2,0,2049,-8,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,2005,104,1,2335,91,1,0 +2013,7,19,5,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,3,0,1122,2,0,0 +2013,8,16,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,0,0,1925,-4,0,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,-4,0,1150,-7,0,0 +2013,6,28,5,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1310,0,,1527,0,1,1 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,-3,0,1029,-7,0,0 +2013,6,4,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2020,2,0,2335,-11,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1632,-8,0,22,0,0,0 +2013,8,4,7,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1710,14,0,1845,26,1,0 +2013,5,29,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,14,0,749,25,1,0 +2013,9,6,5,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-4,0,2000,-20,0,0 +2013,6,27,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1853,89,1,2030,89,1,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1715,-6,0,2245,-19,0,0 +2013,9,13,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-8,0,759,-8,0,0 +2013,10,16,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,-1,0,1926,3,0,0 +2013,10,4,5,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1545,2,0,1717,4,0,0 +2013,6,26,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,955,0,,1115,0,1,1 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1730,103,1,2245,93,1,0 +2013,10,30,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1730,29,1,2040,31,1,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,828,24,1,0 +2013,10,14,1,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1042,4,0,1606,-15,0,0 +2013,10,9,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,188,1,847,177,1,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1935,27,1,50,38,1,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1350,-1,0,1945,-7,0,0 +2013,7,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,723,3,0,924,-8,0,0 +2013,4,17,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1440,17,1,1630,39,1,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1602,5,0,1739,5,0,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1029,87,1,1206,79,1,0 +2013,6,4,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,655,-6,0,920,-9,0,0 +2013,4,23,2,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-2,0,540,-10,0,0 +2013,4,6,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,46,1,1840,34,1,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,828,13,0,0 +2013,10,12,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,8,0,1925,-7,0,0 +2013,5,15,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,919,-16,0,0 +2013,5,1,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,950,-1,0,1043,2,0,0 +2013,10,28,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1255,-4,0,1541,-21,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1035,-4,0,1202,-7,0,0 +2013,8,6,2,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1134,-3,0,1346,8,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,-3,0,2243,-9,0,0 +2013,8,29,4,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1357,34,1,1547,20,1,0 +2013,7,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1104,-3,0,1309,-11,0,0 +2013,8,20,2,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,-6,0,1431,-2,0,0 +2013,10,22,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,730,-13,0,820,-1,0,0 +2013,9,5,4,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,708,-4,0,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1759,8,0,1924,3,0,0 +2013,6,4,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,-1,0,1810,2,0,0 +2013,10,9,3,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1955,7,0,2145,-4,0,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,729,-4,0,1023,-5,0,0 +2013,9,14,6,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,-8,0,1605,6,0,0 +2013,4,8,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,925,-2,0,930,-1,0,0 +2013,5,9,4,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1340,0,0,1724,-8,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1755,30,1,2020,24,1,0 +2013,4,6,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,900,-2,0,1339,-8,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2107,52,1,2228,26,1,0 +2013,4,20,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-7,0,811,-14,0,0 +2013,4,10,3,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-8,0,730,-23,0,0 +2013,10,13,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2203,-7,0,2315,-19,0,0 +2013,5,8,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,845,68,1,1010,62,1,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1057,64,1,1338,38,1,0 +2013,5,23,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,29,1,1800,33,1,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1113,0,0,1709,-11,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,-6,0,1223,-22,0,0 +2013,7,29,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1740,0,0,1905,8,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1835,52,1,1930,38,1,0 +2013,4,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1900,16,1,2000,17,1,0 +2013,6,28,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1520,-1,0,1705,2,0,0 +2013,6,28,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,700,-1,0,829,-1,0,0 +2013,9,4,3,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1509,0,0,1555,4,0,0 +2013,7,22,1,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,705,1,0,1245,-9,0,0 +2013,4,4,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,-3,0,1054,-17,0,0 +2013,4,29,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1650,-9,0,1810,-2,0,0 +2013,9,13,5,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1114,-4,0,1311,-12,0,0 +2013,5,4,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1625,40,1,1730,9,0,0 +2013,4,5,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1605,-6,0,1741,-8,0,0 +2013,5,14,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,835,-7,0,934,-13,0,0 +2013,4,28,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,925,-3,0,1105,-12,0,0 +2013,8,5,1,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,620,-2,0,809,-10,0,0 +2013,10,18,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,816,-5,0,932,0,0,0 +2013,4,29,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-8,0,2025,-5,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,-1,0,1525,4,0,0 +2013,8,16,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1636,62,1,1805,66,1,0 +2013,10,14,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-6,0,1436,4,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1535,32,1,1800,20,1,0 +2013,9,26,4,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,-3,0,1805,-9,0,0 +2013,7,3,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1020,0,0,1206,3,0,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,810,-3,0,1110,-16,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1255,11,0,1352,5,0,0 +2013,4,29,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1750,-2,0,1815,-10,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,-2,0,1030,-13,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,700,-5,0,820,-9,0,0 +2013,7,7,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-1,0,1222,-8,0,0 +2013,6,24,1,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1515,27,1,1845,23,1,0 +2013,6,3,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-6,0,843,-14,0,0 +2013,6,23,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,930,0,0,1050,-1,0,0 +2013,9,29,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10693,Nashville International,Nashville,TN,755,-3,0,825,-12,0,0 +2013,4,14,7,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1805,7,0,2201,27,1,0 +2013,5,27,1,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-9,0,910,-20,0,0 +2013,8,2,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-5,0,1352,-22,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1000,0,0,1259,19,1,0 +2013,4,3,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-9,0,854,-9,0,0 +2013,5,28,2,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-4,0,1914,-14,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,2,0,2330,4,0,0 +2013,8,22,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2202,10,0,2257,-3,0,0 +2013,10,15,2,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,-4,0,1457,-6,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-3,0,1350,-22,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1725,5,0,2055,-8,0,0 +2013,10,15,2,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1215,-5,0,1335,-1,0,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1320,16,1,1905,13,0,0 +2013,9,18,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1955,9,0,2125,-3,0,0 +2013,10,12,6,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1830,4,0,2255,-7,0,0 +2013,5,2,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,4,0,2134,9,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2039,13,0,45,-17,0,0 +2013,5,10,5,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,825,-3,0,1419,-9,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1325,35,1,1605,19,1,0 +2013,8,3,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1035,3,0,1210,7,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,725,-2,0,804,-15,0,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,-1,0,940,-6,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,5,0,1240,9,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1020,-4,0,1145,-11,0,0 +2013,4,20,6,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,11,0,1305,50,1,0 +2013,5,28,2,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,16,1,1335,11,0,0 +2013,8,8,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1510,1,0,1815,5,0,0 +2013,6,19,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,0,0,1605,2,0,0 +2013,4,6,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,721,-1,0,844,1,0,0 +2013,8,22,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-5,0,650,12,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,0,0,1054,-6,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,101,1,1750,93,1,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,929,-4,0,1220,-22,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,8,0,1300,6,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-3,0,1106,5,0,0 +2013,10,12,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-4,0,1038,-18,0,0 +2013,10,27,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,7,0,2207,-2,0,0 +2013,10,13,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,11,0,810,-4,0,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,-2,0,2050,-3,0,0 +2013,4,16,2,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2240,28,1,715,13,0,0 +2013,7,17,3,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,4,0,1631,-4,0,0 +2013,5,22,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1515,20,1,1605,2,0,0 +2013,5,13,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-6,0,1325,-3,0,0 +2013,9,2,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-6,0,1231,-17,0,0 +2013,7,30,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-1,0,1540,-3,0,0 +2013,6,7,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-2,0,1741,-1,0,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1041,5,0,1620,-3,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,24,1,2320,16,1,0 +2013,8,21,3,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1724,-16,0,1957,-25,0,0 +2013,5,5,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,0,0,740,14,0,0 +2013,4,22,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1750,3,0,1903,8,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1650,30,1,1930,38,1,0 +2013,8,19,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-7,0,730,-3,0,0 +2013,5,23,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2005,258,1,2136,240,1,0 +2013,9,3,2,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,858,-10,0,1250,-10,0,0 +2013,5,10,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1103,28,1,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1250,13,0,1650,4,0,0 +2013,9,19,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,-3,0,750,-5,0,0 +2013,10,6,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,700,-4,0,1447,-16,0,0 +2013,7,8,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-4,0,745,0,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,84,1,2353,75,1,0 +2013,7,27,6,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-3,0,808,-16,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1645,25,1,2120,11,0,0 +2013,4,22,1,EV,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,1125,-10,0,1312,10,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1340,-1,0,1615,-22,0,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1635,63,1,1900,50,1,0 +2013,4,16,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,910,-8,0,1158,-14,0,0 +2013,5,26,7,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,910,-2,0,1316,-24,0,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,705,1,0,745,4,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1733,1,0,1844,-5,0,0 +2013,10,30,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2045,-1,0,2230,-11,0,0 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,814,-5,0,1425,12,0,0 +2013,7,21,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,34,1,1621,25,1,0 +2013,4,24,3,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-5,0,935,12,0,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1110,-1,0,1300,-24,0,0 +2013,9,10,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,0,0,1900,-11,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,0,0,1555,-2,0,0 +2013,10,29,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1445,-5,0,1625,10,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,80,1,2020,72,1,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1015,16,1,1150,3,0,0 +2013,7,16,2,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-3,0,2020,-3,0,0 +2013,6,12,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1208,45,1,1446,39,1,0 +2013,4,22,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,21,1,2225,10,0,0 +2013,4,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,2115,10,0,20,8,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1650,-1,0,1827,59,1,0 +2013,4,19,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1755,204,1,2050,292,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1210,8,0,1350,18,1,0 +2013,7,3,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-3,0,1010,2,0,0 +2013,9,13,5,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1925,16,1,2010,11,0,0 +2013,10,30,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,720,-13,0,0 +2013,5,25,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-1,0,950,-13,0,0 +2013,7,12,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,0,0,1428,-6,0,0 +2013,7,20,6,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,-3,0,1341,20,1,0 +2013,8,31,6,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1430,5,0,1720,0,0,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1400,62,1,1533,47,1,0 +2013,9,9,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1929,-5,0,2336,-1,0,0 +2013,6,26,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,-4,0,1643,-23,0,0 +2013,7,28,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,933,0,0,1215,-3,0,0 +2013,9,27,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,19,1,1701,8,0,0 +2013,8,5,1,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-7,0,2149,11,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,746,19,1,1255,5,0,0 +2013,6,29,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,-2,0,1707,-20,0,0 +2013,9,19,4,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,710,5,0,815,7,0,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,940,0,0,1100,4,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1615,1,0,1720,-4,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2220,0,,15,0,1,1 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2359,0,0,655,0,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,835,33,1,1055,27,1,0 +2013,8,3,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-6,0,1005,1,0,0 +2013,7,13,6,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,-3,0,1140,-5,0,0 +2013,6,2,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,2,0,930,12,0,0 +2013,10,1,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1316,14,0,1503,5,0,0 +2013,5,18,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,-2,0,1434,3,0,0 +2013,10,20,7,YV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,807,-5,0,952,-20,0,0 +2013,4,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1312,3,0,1435,-2,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1626,1,0,1748,11,0,0 +2013,6,4,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1315,-12,0,1438,-21,0,0 +2013,5,4,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,540,13,0,751,-3,0,0 +2013,9,6,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,-5,0,1513,0,0,0 +2013,7,30,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,0,0,815,-8,0,0 +2013,4,28,7,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1346,-6,0,1913,-7,0,0 +2013,7,3,3,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1150,1,0,1305,-4,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1454,-1,0,1606,8,0,0 +2013,7,3,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1513,130,1,1626,130,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2147,-4,0,14,-12,0,0 +2013,7,11,4,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1100,10,0,1250,-2,0,0 +2013,8,5,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-6,0,2046,-4,0,0 +2013,9,12,4,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,92,1,542,97,1,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1820,-4,0,55,17,1,0 +2013,10,23,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,7,0,1005,6,0,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,39,1,1610,27,1,0 +2013,5,25,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1825,-5,0,1959,-8,0,0 +2013,5,1,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,0,0,1521,8,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,929,-4,0,1214,-6,0,0 +2013,8,14,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,1,0,1340,-4,0,0 +2013,4,29,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-9,0,1207,-2,0,0 +2013,8,2,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-7,0,851,-16,0,0 +2013,6,22,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,720,7,0,1025,5,0,0 +2013,8,26,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,833,-3,0,1044,-12,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1925,2,0,2124,10,0,0 +2013,6,29,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-7,0,2016,-7,0,0 +2013,9,30,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1515,-2,0,1601,-3,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,0,0,1947,1,0,0 +2013,6,12,3,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,0,0,2145,-5,0,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1843,26,1,2136,47,1,0 +2013,5,19,7,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1826,22,1,2010,21,1,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2115,0,0,2245,-5,0,0 +2013,8,28,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,2,0,1733,45,1,0 +2013,7,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1950,-1,0,2215,-6,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,18,1,1654,4,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-4,0,755,-1,0,0 +2013,4,7,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,814,0,0,1015,-6,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,925,39,1,1010,35,1,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1813,-3,0,1953,-12,0,0 +2013,8,1,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1449,54,1,1626,59,1,0 +2013,9,5,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2100,17,1,2210,10,0,0 +2013,10,20,7,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2025,18,1,2130,3,0,0 +2013,6,3,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,30,1,1750,26,1,0 +2013,8,13,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,-6,0,1840,-6,0,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,600,-7,0,746,-21,0,0 +2013,10,31,4,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,827,-8,0,1011,-11,0,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,-3,0,1700,-4,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1810,2,0,2220,4,0,0 +2013,4,18,4,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,833,-1,0,1406,-22,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,2100,-4,0,2250,-5,0,0 +2013,8,20,2,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,625,3,0,905,-7,0,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1010,-6,0,1150,-9,0,0 +2013,6,16,7,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1631,83,1,1953,82,1,0 +2013,4,6,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2015,-6,0,2145,-8,0,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,96,1,2230,96,1,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,955,-3,0,1330,-19,0,0 +2013,7,9,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1603,4,0,2159,29,1,0 +2013,4,5,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,745,-10,0,929,-1,0,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,940,-5,0,1120,-20,0,0 +2013,5,6,1,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-2,0,601,-2,0,0 +2013,8,2,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-4,0,1904,-15,0,0 +2013,5,9,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,633,3,0,750,-13,0,0 +2013,10,13,7,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-6,0,854,-3,0,0 +2013,10,15,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1838,0,,1945,0,1,1 +2013,5,28,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-1,0,2020,-1,0,0 +2013,4,21,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1600,-7,0,1752,-32,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,-2,0,1130,4,0,0 +2013,6,24,1,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1345,9,0,1625,4,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,16,1,1120,13,0,0 +2013,5,16,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-4,0,612,0,0,0 +2013,7,6,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,-7,0,1215,-20,0,0 +2013,10,18,5,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-9,0,1137,-45,0,0 +2013,10,10,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,735,6,0,1308,-25,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,856,5,0,1721,-7,0,0 +2013,4,13,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1818,-10,0,2317,-30,0,0 +2013,5,27,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,700,-3,0,750,-10,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-3,0,2350,-8,0,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2045,-5,0,2215,-9,0,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1959,-3,0,2220,0,0,0 +2013,6,23,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1945,14,0,2115,29,1,0 +2013,6,11,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2140,100,1,2359,75,1,0 +2013,10,4,5,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-1,0,1052,-14,0,0 +2013,5,15,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,739,-11,0,0 +2013,6,15,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1605,-7,0,1801,-1,0,0 +2013,8,20,2,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,1235,-5,0,1259,-10,0,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-1,0,842,-6,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,-5,0,1332,-12,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,-3,0,940,3,0,0 +2013,8,8,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,855,10,0,0 +2013,6,16,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,2,0,1639,-18,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,601,-11,0,900,-9,0,0 +2013,7,6,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,626,-11,0,815,-25,0,0 +2013,4,5,5,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-8,0,1615,-29,0,0 +2013,6,5,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,-1,0,2135,-11,0,0 +2013,4,3,3,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-5,0,1015,-25,0,0 +2013,9,9,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1959,-7,0,2203,-6,0,0 +2013,7,22,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-7,0,1538,-8,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1000,-7,0,1408,-21,0,0 +2013,9,5,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,13,0,1640,24,1,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1435,-4,0,1800,-26,0,0 +2013,8,6,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1721,-2,0,1854,-6,0,0 +2013,4,20,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1733,20,1,2029,-8,0,0 +2013,5,11,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,41,1,1724,34,1,0 +2013,10,9,3,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1700,-1,0,1815,2,0,0 +2013,8,30,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1035,2,0,1155,-1,0,0 +2013,8,29,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1710,82,1,1755,82,1,0 +2013,8,20,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,9,0,649,27,1,0 +2013,7,31,3,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,635,-12,0,725,-4,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1158,-7,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1940,8,0,55,-11,0,0 +2013,7,18,4,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1850,3,0,2014,-7,0,0 +2013,9,17,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1330,-1,0,1505,3,0,0 +2013,4,15,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1357,9,0,1519,9,0,0 +2013,9,21,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,0,0,1659,3,0,0 +2013,10,20,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1330,-7,0,1510,-15,0,0 +2013,9,29,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-8,0,1252,-10,0,0 +2013,10,16,3,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-3,0,1130,-15,0,0 +2013,7,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1910,-5,0,2015,-15,0,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1900,6,0,2017,29,1,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-3,0,2001,-2,0,0 +2013,9,3,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,925,4,0,1050,-5,0,0 +2013,9,19,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2035,6,0,2330,15,1,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1704,14,0,2051,-2,0,0 +2013,5,25,6,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,-7,0,1940,-20,0,0 +2013,4,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,0,0,2100,-13,0,0 +2013,10,11,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,6,0,815,-7,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1610,7,0,1813,-2,0,0 +2013,9,16,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-6,0,1250,-20,0,0 +2013,6,10,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,835,-5,0,1055,-10,0,0 +2013,9,23,1,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1947,-7,0,2030,-11,0,0 +2013,9,25,3,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2340,5,0,510,-19,0,0 +2013,4,29,1,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,635,-2,0,1455,6,0,0 +2013,6,21,5,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,700,-1,0,1020,-3,0,0 +2013,8,28,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1100,-3,0,1219,-19,0,0 +2013,6,26,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,-1,0,2122,-10,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1705,89,1,2114,75,1,0 +2013,6,28,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1219,3,0,1337,15,1,0 +2013,8,5,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,641,-5,0,827,20,1,0 +2013,10,21,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1440,6,0,2022,-19,0,0 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1830,119,1,2255,114,1,0 +2013,10,5,6,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1645,-8,0,1905,-12,0,0 +2013,7,16,2,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1425,1,0,1545,-22,0,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1100,-5,0,1155,-9,0,0 +2013,10,7,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1915,14,0,2040,12,0,0 +2013,9,3,2,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1130,-1,0,1615,-32,0,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2055,-8,0,2229,-20,0,0 +2013,5,4,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,47,1,1450,46,1,0 +2013,7,5,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-2,0,1845,-18,0,0 +2013,6,15,6,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,809,-3,0,1639,-16,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,1,0,1823,2,0,0 +2013,10,3,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-7,0,1930,-31,0,0 +2013,7,13,6,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1844,44,1,2154,26,1,0 +2013,6,14,5,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,9,0,130,-3,0,0 +2013,9,9,1,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1150,-2,0,1340,-15,0,0 +2013,10,21,1,EV,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1120,-4,0,1252,-2,0,0 +2013,7,6,6,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,-6,0,813,13,0,0 +2013,4,12,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1730,79,1,2015,72,1,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1804,16,1,2126,4,0,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,552,0,0,804,-8,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1527,-2,0,1637,-8,0,0 +2013,10,26,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1129,-9,0,0 +2013,8,17,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1920,3,0,2247,-8,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1203,9,0,1435,18,1,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1250,-2,0,1845,-4,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,-2,0,2355,-4,0,0 +2013,9,1,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1949,-4,0,2221,-10,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1515,6,0,1610,3,0,0 +2013,4,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,949,-3,0,1318,42,1,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2124,-4,0,15,-37,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,-4,0,1522,-1,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1355,-2,0,1500,-9,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,735,8,0,940,5,0,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,10,0,1837,-6,0,0 +2013,6,29,6,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,11,0,1810,15,1,0 +2013,10,30,3,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,19,1,1915,23,1,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1535,51,1,1640,59,1,0 +2013,4,1,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-3,0,1229,-8,0,0 +2013,5,5,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-7,0,912,-14,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1739,11,0,1850,9,0,0 +2013,9,29,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2320,-4,0,750,0,0,0 +2013,8,11,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,909,-4,0,1145,30,1,0 +2013,5,4,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-7,0,1010,-8,0,0 +2013,6,21,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,3,0,2118,-3,0,0 +2013,8,14,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,1,0,1235,4,0,0 +2013,9,25,3,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1357,-4,0,1759,-13,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1640,64,1,1825,45,1,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2112,2,0,2233,-11,0,0 +2013,8,2,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,50,1,2000,55,1,0 +2013,8,1,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,1941,2,0,2228,32,1,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1005,7,0,1325,7,0,0 +2013,8,4,7,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,745,-2,0,1025,51,1,0 +2013,4,28,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,-13,0,1541,26,1,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-5,0,1146,-13,0,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,900,-2,0,1729,-2,0,0 +2013,4,12,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,-2,0,2029,3,0,0 +2013,5,13,1,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,32,1,1615,34,1,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,28,1,1230,11,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,815,-3,0,950,-3,0,0 +2013,6,30,7,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1110,217,1,1240,288,1,0 +2013,10,4,5,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,20,1,2040,0,0,0 +2013,8,28,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-4,0,945,-16,0,0 +2013,4,29,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1200,43,1,1805,21,1,0 +2013,10,1,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,910,19,1,1010,17,1,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,12,0,1745,11,0,0 +2013,4,25,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1142,3,0,1646,-9,0,0 +2013,5,8,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-4,0,1245,-19,0,0 +2013,4,15,1,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-1,0,1514,-6,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2140,-2,0,149,-3,0,0 +2013,10,27,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2038,-3,0,2127,-9,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,713,-5,0,842,-22,0,0 +2013,6,4,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1715,16,1,1941,12,0,0 +2013,9,9,1,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-1,0,1955,-9,0,0 +2013,6,23,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,11,0,2000,12,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,6,0,1935,0,0,0 +2013,4,23,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,76,1,1950,61,1,0 +2013,9,1,7,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1908,-10,0,1940,-15,0,0 +2013,5,23,4,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,9,0,2113,116,1,0 +2013,10,5,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,800,-1,0,1625,6,0,0 +2013,8,11,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,17,1,835,22,1,0 +2013,5,12,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1125,1,0,1130,10,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,-5,0,1051,-46,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1535,0,0,1723,-9,0,0 +2013,6,2,7,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,0,0,1711,8,0,0 +2013,9,16,1,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-10,0,820,-14,0,0 +2013,6,16,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,630,-1,0,735,-2,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1815,5,0,2020,-3,0,0 +2013,8,26,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1329,-3,0,1537,-4,0,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,37,1,1820,48,1,0 +2013,5,14,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,-5,0,1730,-23,0,0 +2013,9,7,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,3,0,2020,-11,0,0 +2013,5,9,4,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-6,0,1757,-3,0,0 +2013,10,8,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,59,1,2217,38,1,0 +2013,10,1,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1751,-6,0,1825,1,0,0 +2013,10,25,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-3,0,759,-11,0,0 +2013,4,25,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1530,24,1,1650,22,1,0 +2013,8,28,3,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2055,-6,0,2325,-5,0,0 +2013,6,29,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1712,24,1,1819,14,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,-1,0,1830,6,0,0 +2013,7,8,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,7,0,500,-14,0,0 +2013,7,10,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-6,0,1412,-3,0,0 +2013,6,6,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2155,0,0,2250,4,0,0 +2013,9,30,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,76,1,1850,61,1,0 +2013,9,25,3,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,655,-1,0,1255,-14,0,0 +2013,4,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1302,3,0,1551,-3,0,0 +2013,7,20,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,700,0,0,800,-4,0,0 +2013,9,29,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,194,1,1800,203,1,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1335,5,0,1435,12,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,11,0,1045,-4,0,0 +2013,4,26,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1200,-2,0,1320,-2,0,0 +2013,6,17,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,6,0,1320,-5,0,0 +2013,10,15,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1855,20,1,2030,24,1,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1255,-4,0,1720,-12,0,0 +2013,8,14,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1035,-5,0,1154,-3,0,0 +2013,4,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1400,4,0,1525,-4,0,0 +2013,10,10,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,825,-3,0,920,-14,0,0 +2013,8,2,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,211,19,1,559,3,0,0 +2013,8,8,4,US,14893,Sacramento International,Sacramento,CA,11057,Charlotte Douglas International,Charlotte,NC,2258,-1,0,637,0,0,0 +2013,5,11,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1820,10,0,1935,-10,0,0 +2013,10,20,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1726,4,0,1821,-8,0,0 +2013,7,22,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,839,-3,0,1034,6,0,0 +2013,7,12,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-5,0,1857,-33,0,0 +2013,9,14,6,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,955,-1,0,1116,-1,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1840,-1,0,2335,-3,0,0 +2013,4,30,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,41,1,725,24,1,0 +2013,6,20,4,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1134,5,0,1346,4,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1558,72,1,1930,56,1,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2355,-7,0,550,-28,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-3,0,1325,4,0,0 +2013,8,30,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1225,-4,0,1449,-46,0,0 +2013,7,24,3,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,7,0,749,4,0,0 +2013,7,24,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-7,0,2215,14,0,0 +2013,5,20,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,21,1,545,19,1,0 +2013,7,10,3,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1820,7,0,2005,-7,0,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,741,12,0,1141,26,1,0 +2013,10,6,7,YV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1029,66,1,1215,65,1,0 +2013,5,5,7,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1529,12,0,1709,-11,0,0 +2013,6,21,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,5,0,1603,-11,0,0 +2013,6,20,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2030,14,0,2115,5,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,12,0,1905,0,0,0 +2013,7,8,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1007,-6,0,1105,-7,0,0 +2013,10,16,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1417,4,0,0 +2013,6,30,7,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,-5,0,2036,-6,0,0 +2013,5,28,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1110,-2,0,1938,21,1,0 +2013,9,10,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,-6,0,1530,-11,0,0 +2013,9,16,1,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,-5,0,2305,-1,0,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2245,114,1,30,92,1,0 +2013,6,17,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-10,0,840,-13,0,0 +2013,10,24,4,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-8,0,2033,-19,0,0 +2013,10,13,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-3,0,805,-10,0,0 +2013,10,15,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1130,9,0,1239,18,1,0 +2013,4,27,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1750,-11,0,2013,17,1,0 +2013,4,7,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,-5,0,1515,-6,0,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1500,17,1,1900,-3,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,700,-2,0,1010,-12,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1950,-1,0,2110,-7,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,1,0,1750,-31,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1035,7,0,1520,4,0,0 +2013,8,20,2,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,-2,0,2025,-19,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1450,13,0,1659,29,1,0 +2013,10,14,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1955,-6,0,2250,5,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,40,1,2159,29,1,0 +2013,8,30,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,530,-5,0,806,-40,0,0 +2013,8,15,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1900,14,0,1930,17,1,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1945,5,0,2242,11,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1610,-5,0,1720,-15,0,0 +2013,7,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1955,-5,0,2201,-5,0,0 +2013,8,22,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,-1,0,1455,-12,0,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,0,0,1933,-7,0,0 +2013,8,15,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1600,22,1,1630,20,1,0 +2013,6,7,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1501,18,1,1645,14,0,0 +2013,6,3,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-7,0,1335,-18,0,0 +2013,10,1,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-7,0,817,-2,0,0 +2013,6,25,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,1,0,930,-3,0,0 +2013,7,9,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,839,-8,0,1004,-21,0,0 +2013,5,12,7,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1335,17,1,1820,35,1,0 +2013,8,8,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1315,15,1,0 +2013,9,6,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-4,0,1109,1,0,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,700,0,0,825,-7,0,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,905,-8,0,1018,-10,0,0 +2013,4,29,1,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,905,16,1,1215,10,0,0 +2013,10,20,7,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,630,-1,0,929,-7,0,0 +2013,7,30,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-7,0,1250,-22,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2213,-2,0,2320,0,0,0 +2013,7,15,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,645,0,0,754,9,0,0 +2013,6,16,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1223,13,0,2045,2,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,31,1,2345,12,0,0 +2013,7,2,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,-2,0,1655,2,0,0 +2013,10,17,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,-5,0,2355,7,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,39,1,1548,30,1,0 +2013,4,13,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1825,-2,0,2034,-21,0,0 +2013,8,16,5,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,0,0,1925,3,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1215,-1,0,1430,-3,0,0 +2013,4,23,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1427,-7,0,1640,-19,0,0 +2013,7,11,4,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1633,17,1,1805,-4,0,0 +2013,9,6,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,12266,George Bush Intercontinental/Houston,Houston,TX,2038,-11,0,614,9,0,0 +2013,8,19,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1055,97,1,1650,102,1,0 +2013,7,6,6,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,715,17,1,835,2,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1320,13,0,1540,5,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1515,13,0,1615,1,0,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,834,-4,0,1152,10,0,0 +2013,9,5,4,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,1,0,922,-5,0,0 +2013,8,10,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1715,-3,0,2121,-2,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,10,0,2035,-1,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,15,1,2035,15,1,0 +2013,7,26,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-6,0,2145,-8,0,0 +2013,5,24,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,1,0,1228,-11,0,0 +2013,9,19,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,-6,0,928,-7,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1045,-2,0,1201,-22,0,0 +2013,10,19,6,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-5,0,910,-1,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-2,0,815,1,0,0 +2013,6,22,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,17,1,1249,10,0,0 +2013,6,11,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1553,-10,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1435,-2,0,1610,11,0,0 +2013,5,17,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1720,-2,0,1830,-14,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,-5,0,1307,-17,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,835,12,0,1105,7,0,0 +2013,6,22,6,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1615,90,1,1750,67,1,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1630,3,0,1815,-3,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1044,3,0,1855,17,1,0 +2013,8,28,3,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1842,74,1,2025,55,1,0 +2013,10,19,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1845,-2,0,2005,-18,0,0 +2013,8,15,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,740,-5,0,900,-9,0,0 +2013,9,30,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,-8,0,1813,-9,0,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-2,0,2245,-10,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1942,-3,0,2100,-24,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1640,20,1,1810,9,0,0 +2013,10,29,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,0,0,944,-5,0,0 +2013,9,15,7,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1925,55,1,2138,48,1,0 +2013,8,4,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1420,43,1,1555,38,1,0 +2013,7,16,2,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1425,-8,0,1621,-10,0,0 +2013,4,3,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-8,0,1425,-17,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1836,27,1,2105,14,0,0 +2013,5,8,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1052,204,1,1406,201,1,0 +2013,5,24,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2115,128,1,530,122,1,0 +2013,5,6,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-5,0,1203,-23,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1416,-7,0,2259,-6,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,810,-8,0,1125,-8,0,0 +2013,4,22,1,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,0,,1835,0,1,1 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,17,1,1425,11,0,0 +2013,6,25,2,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,800,-3,0,1557,-4,0,0 +2013,4,7,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1735,-7,0,2007,-17,0,0 +2013,4,24,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,-1,0,1215,0,0,0 +2013,7,2,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,18,1,2325,6,0,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,4,0,1250,-8,0,0 +2013,6,12,3,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,74,1,1913,62,1,0 +2013,6,20,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-6,0,920,-11,0,0 +2013,10,4,5,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,615,-4,0,828,-15,0,0 +2013,7,24,3,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2101,-5,0,2334,-23,0,0 +2013,5,26,7,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-4,0,1535,-6,0,0 +2013,6,2,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1316,-10,0,1441,-24,0,0 +2013,7,18,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,0,0,1614,-9,0,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2212,68,1,628,72,1,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1750,-1,0,2031,-3,0,0 +2013,10,30,3,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,-4,0,1820,-17,0,0 +2013,4,9,2,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1115,0,0,1355,1,0,0 +2013,10,4,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-8,0,1037,-21,0,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,113,-1,0,808,17,1,0 +2013,7,4,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,635,-2,0,800,-11,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1530,0,0,1723,-29,0,0 +2013,5,2,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,1,0,2247,-6,0,0 +2013,10,12,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,615,-5,0,838,-25,0,0 +2013,9,7,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1008,-7,0,1334,18,1,0 +2013,7,26,5,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,19,1,2020,16,1,0 +2013,10,12,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1310,45,1,1810,35,1,0 +2013,7,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1045,-1,0,1650,-14,0,0 +2013,5,12,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-4,0,1130,-6,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,2130,-4,0,2324,-30,0,0 +2013,10,6,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-4,0,1950,5,0,0 +2013,9,26,4,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1120,-1,0,1638,-21,0,0 +2013,7,13,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,-2,0,1706,1,0,0 +2013,6,26,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1210,8,0,1545,-7,0,0 +2013,4,18,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,14,0,1515,17,1,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,-4,0,1850,-10,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1325,3,0,1450,-6,0,0 +2013,10,13,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,905,-4,0,1022,-10,0,0 +2013,8,20,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1000,0,0,1005,-11,0,0 +2013,5,5,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-9,0,1232,-30,0,0 +2013,10,28,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-2,0,1848,-2,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,-3,0,1850,-7,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-6,0,1055,-23,0,0 +2013,6,2,7,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1850,3,0,2024,-7,0,0 +2013,5,1,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1918,-6,0,2235,3,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-1,0,1747,46,1,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,720,-4,0,1110,-13,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,755,-3,0,917,-9,0,0 +2013,6,9,7,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,655,-7,0,917,2,0,0 +2013,5,5,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-2,0,2055,-3,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,705,-4,0,925,-16,0,0 +2013,7,17,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,-4,0,1355,-7,0,0 +2013,7,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,-5,0,2305,9,0,0 +2013,10,17,4,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1740,17,1,2015,16,1,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,101,1,1920,91,1,0 +2013,5,22,3,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,910,-2,0,1144,-12,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,19,1,855,16,1,0 +2013,8,7,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,-3,0,2100,-12,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1200,37,1,1439,67,1,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,705,-4,0,1115,-29,0,0 +2013,4,16,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,945,1,0,1230,-6,0,0 +2013,4,3,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,-5,0,2040,-22,0,0 +2013,9,13,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1159,-4,0,1344,-2,0,0 +2013,9,6,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1155,-20,0,0 +2013,10,9,3,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,700,-2,0,845,-7,0,0 +2013,6,25,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-2,0,659,4,0,0 +2013,9,30,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1520,1,0,1630,-3,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,1,0,1302,-12,0,0 +2013,4,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1401,-3,0,1512,-16,0,0 +2013,7,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-6,0,1153,-10,0,0 +2013,8,21,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,935,-3,0,1021,-17,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1454,-5,0,1725,-16,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,855,-2,0,1338,10,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1611,1,0,1814,-1,0,0 +2013,4,5,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1735,-10,0,1954,-12,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,735,-3,0,940,-9,0,0 +2013,7,28,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,25,1,1641,13,0,0 +2013,6,8,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,-5,0,1153,2,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1950,0,0,2110,-1,0,0 +2013,6,9,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1425,-2,0,1725,-17,0,0 +2013,10,30,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,-7,0,2050,-5,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1620,8,0,1805,2,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1926,-1,0,2135,-9,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2147,-3,0,2320,-5,0,0 +2013,10,10,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1513,12,0,1631,15,1,0 +2013,4,18,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,21,1,2010,-1,0,0 +2013,7,7,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,-3,0,1900,-7,0,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-4,0,1115,-7,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1248,-1,0,1625,33,1,0 +2013,4,17,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1145,-7,0,1211,-3,0,0 +2013,8,19,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,17,1,2015,13,0,0 +2013,9,18,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,2,0,1305,-7,0,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1855,30,1,2130,19,1,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1810,-6,0,2110,-22,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,39,1,2242,35,1,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1354,-3,0,1630,-19,0,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,25,1,1320,17,1,0 +2013,5,16,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1302,40,1,1359,39,1,0 +2013,9,8,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1049,-9,0,1215,-25,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-2,0,815,-16,0,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,955,5,0,1528,-9,0,0 +2013,9,10,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,19,1,2105,22,1,0 +2013,8,30,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1300,16,1,1415,18,1,0 +2013,8,16,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1030,-5,0,1142,-2,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2055,2,0,2250,-6,0,0 +2013,9,19,4,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,650,-6,0,1043,-14,0,0 +2013,9,22,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-5,0,1335,-2,0,0 +2013,9,14,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,12,0,1331,4,0,0 +2013,5,11,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,-2,0,1545,-9,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,2,0,1245,22,1,0 +2013,5,11,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-5,0,1803,-19,0,0 +2013,9,21,6,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,15,1,2058,12,0,0 +2013,5,26,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1125,-2,0,1448,-2,0,0 +2013,6,30,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-1,0,720,4,0,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-7,0,1620,-14,0,0 +2013,4,4,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1526,-1,0,1610,-8,0,0 +2013,6,8,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-8,0,800,-17,0,0 +2013,6,12,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,-3,0,1300,-17,0,0 +2013,4,17,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,-2,0,1046,-11,0,0 +2013,6,19,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,23,1,1040,24,1,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2120,13,0,2300,14,0,0 +2013,10,1,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1810,-4,0,2037,-2,0,0 +2013,10,10,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-6,0,1950,-10,0,0 +2013,10,10,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,-4,0,1905,-5,0,0 +2013,8,11,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,750,-3,0,918,-15,0,0 +2013,4,16,2,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,822,-5,0,1029,-1,0,0 +2013,5,6,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,2015,-3,0,2050,-10,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1140,4,0,1240,4,0,0 +2013,4,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1650,1,0,1755,-19,0,0 +2013,10,8,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1113,2,0,1200,1,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1905,7,0,2054,12,0,0 +2013,8,29,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-8,0,1340,-13,0,0 +2013,8,8,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-6,0,935,2,0,0 +2013,10,25,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-5,0,1639,-11,0,0 +2013,9,28,6,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,5,0,2135,-9,0,0 +2013,6,24,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1025,-7,0,1205,-33,0,0 +2013,7,3,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,1,0,930,-5,0,0 +2013,9,16,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-2,0,820,-4,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1431,9,0,1525,4,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1020,-3,0,1602,-1,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1825,0,0,1935,-3,0,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1429,3,0,1703,37,1,0 +2013,6,11,2,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,-1,0,2230,-33,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,830,-3,0,1100,-13,0,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-9,0,1558,35,1,0 +2013,9,16,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,18,1,1845,12,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1500,-5,0,1728,-34,0,0 +2013,4,27,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1144,-3,0,1358,4,0,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,15,1,2115,3,0,0 +2013,5,20,1,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,615,-2,0,835,-15,0,0 +2013,10,15,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,166,1,848,154,1,0 +2013,6,13,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,3,0,1423,0,0,0 +2013,9,22,7,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-4,0,1920,18,1,0 +2013,10,13,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,835,-4,0,0 +2013,7,26,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1050,-1,0,0 +2013,8,17,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,1,0,1118,-18,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,142,1,44,136,1,0 +2013,7,24,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,-2,0,1456,-1,0,0 +2013,7,18,4,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1750,0,0,1935,-16,0,0 +2013,9,4,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1004,-4,0,1137,-12,0,0 +2013,7,14,7,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,1,0,2255,0,0,0 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1130,-2,0,1405,-8,0,0 +2013,5,12,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,755,1,0,1010,13,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-6,0,1017,-6,0,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1640,-3,0,2020,-6,0,0 +2013,5,19,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1200,-8,0,1844,-7,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1505,2,0,1629,-5,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1505,-7,0,1835,5,0,0 +2013,8,28,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1429,57,1,1556,45,1,0 +2013,7,23,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,71,1,1606,101,1,0 +2013,7,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1955,19,1,2204,30,1,0 +2013,7,26,5,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,615,-4,0,705,-7,0,0 +2013,9,26,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-5,0,1117,-18,0,0 +2013,9,10,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1601,-9,0,1851,-12,0,0 +2013,7,28,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,-7,0,1525,-13,0,0 +2013,7,6,6,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,71,1,1951,51,1,0 +2013,8,26,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,-2,0,609,4,0,0 +2013,6,14,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,-7,0,642,1,0,0 +2013,6,27,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1105,6,0,1110,7,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1315,34,1,1540,21,1,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,-5,0,23,-20,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1120,-1,0,1225,-4,0,0 +2013,10,17,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1540,-1,0,1705,-15,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,820,-5,0,959,3,0,0 +2013,9,17,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1137,-7,0,1344,-2,0,0 +2013,9,10,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,-6,0,1556,-15,0,0 +2013,8,13,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1450,33,1,1555,31,1,0 +2013,7,29,1,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,0,0,1056,-5,0,0 +2013,4,16,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1201,-14,0,0 +2013,8,15,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,5,0,1607,1,0,0 +2013,4,2,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-6,0,850,-7,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2055,35,1,2346,3,0,0 +2013,10,9,3,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,736,-5,0,1316,-11,0,0 +2013,9,6,5,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,-7,0,1818,-8,0,0 +2013,10,24,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-5,0,1010,-12,0,0 +2013,8,7,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1618,120,1,59,96,1,0 +2013,4,29,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,610,-2,0,745,-5,0,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1522,152,1,1648,157,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,0,0,2100,-13,0,0 +2013,4,10,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,606,-2,0,750,73,1,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,0,0,1650,-4,0,0 +2013,6,29,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,0,,955,0,1,1 +2013,7,8,1,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,27,1,1405,24,1,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,1,0,2232,-12,0,0 +2013,6,7,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,37,1,1919,28,1,0 +2013,8,16,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,550,0,0,700,-16,0,0 +2013,4,22,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1345,-1,0,1731,-8,0,0 +2013,6,30,7,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,-5,0,2202,1,0,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,858,1,0,1132,0,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2145,-1,0,2316,-14,0,0 +2013,6,15,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2116,-1,0,2359,-10,0,0 +2013,4,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,14,0,1405,12,0,0 +2013,8,20,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,31,1,916,18,1,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1200,6,0,1640,-1,0,0 +2013,6,30,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1835,5,0,2005,9,0,0 +2013,4,13,6,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,600,40,1,853,45,1,0 +2013,6,21,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,-4,0,1200,-25,0,0 +2013,5,2,4,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,2359,6,0,722,12,0,0 +2013,6,29,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-3,0,840,-2,0,0 +2013,5,16,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-4,0,1445,-12,0,0 +2013,10,17,4,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-8,0,1008,-19,0,0 +2013,4,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,843,-9,0,923,-12,0,0 +2013,8,15,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,-5,0,1905,-13,0,0 +2013,9,21,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,825,3,0,850,6,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2025,27,1,2150,29,1,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,851,-2,0,1255,-17,0,0 +2013,9,12,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1119,28,1,1245,34,1,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1410,54,1,1455,53,1,0 +2013,7,18,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1205,3,0,1320,-12,0,0 +2013,9,26,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,19,1,1010,4,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,1,0,2215,-12,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1050,10,0,1610,13,0,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,-1,0,45,-5,0,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,1,0,1925,19,1,0 +2013,5,24,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1215,-3,0,1525,-14,0,0 +2013,10,10,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-4,0,1659,-11,0,0 +2013,6,12,3,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1620,8,0,1800,-5,0,0 +2013,4,26,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1730,14,0,1905,6,0,0 +2013,8,31,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,-12,0,1437,-16,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1120,7,0,1530,-14,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,-6,0,1912,-12,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,713,-3,0,948,2,0,0 +2013,7,19,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1320,11,0,1520,-5,0,0 +2013,4,26,5,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,800,-4,0,1000,-3,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1511,71,1,1639,73,1,0 +2013,10,8,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1855,-6,0,2051,-15,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1310,-4,0,1535,-12,0,0 +2013,8,25,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,936,-5,0,1159,-11,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,-1,0,2240,0,0,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,6,0,1845,9,0,0 +2013,6,19,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1725,2,0,1855,0,0,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1546,0,0,1745,8,0,0 +2013,5,18,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1945,-6,0,2105,-10,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-9,0,1525,-16,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-2,0,2159,-3,0,0 +2013,5,21,2,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2012,37,1,2300,32,1,0 +2013,8,13,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1330,5,0,1428,4,0,0 +2013,8,6,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1705,-4,0,1935,-13,0,0 +2013,5,1,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,1,0,1125,11,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,848,-7,0,1638,-13,0,0 +2013,9,26,4,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1054,-1,0,1638,-7,0,0 +2013,4,8,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,25,1,1505,60,1,0 +2013,10,9,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,700,-5,0,825,-7,0,0 +2013,5,8,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,-13,0,1930,-19,0,0 +2013,7,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1420,46,1,1521,31,1,0 +2013,7,13,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,0,0,750,24,1,0 +2013,4,21,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1005,-9,0,1206,-6,0,0 +2013,9,17,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1111,-6,0,1446,-17,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1945,60,1,2135,57,1,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,9,0,1316,4,0,0 +2013,8,2,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,840,-5,0,1255,3,0,0 +2013,5,20,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1135,6,0,1345,-7,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1505,1,0,1600,-6,0,0 +2013,6,25,2,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,905,-7,0,1033,-14,0,0 +2013,8,4,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1008,-8,0,1040,-19,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1345,0,0,1540,-3,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,0,0,1124,-17,0,0 +2013,7,25,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,808,-1,0,925,5,0,0 +2013,7,21,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,23,1,2005,47,1,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,16,1,2352,14,0,0 +2013,5,20,1,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1755,31,1,2122,25,1,0 +2013,7,10,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-4,0,1920,-8,0,0 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,737,0,0,1033,-6,0,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,610,-5,0,847,-25,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1913,1,0,2359,-19,0,0 +2013,7,12,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,755,-4,0,1009,-7,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1205,3,0,1305,-3,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2235,49,1,2325,38,1,0 +2013,4,25,4,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,-3,0,1935,-13,0,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,2,0,2040,-9,0,0 +2013,9,23,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1554,16,1,1845,-5,0,0 +2013,9,28,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1054,-2,0,1426,-11,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,54,1,1145,50,1,0 +2013,5,27,1,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,745,0,0,943,-12,0,0 +2013,9,2,1,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1300,0,0,1525,-12,0,0 +2013,6,17,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-2,0,810,4,0,0 +2013,5,5,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1550,20,1,1710,19,1,0 +2013,7,11,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,602,0,0,1330,0,0,0 +2013,8,12,1,US,14893,Sacramento International,Sacramento,CA,11057,Charlotte Douglas International,Charlotte,NC,2258,-1,0,637,2,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2254,-1,0,2359,-4,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,925,9,0,1425,13,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2210,-3,0,14,17,1,0 +2013,4,29,1,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,0,0,1420,-13,0,0 +2013,5,31,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1859,24,1,2228,12,0,0 +2013,4,2,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1905,-6,0,2015,-13,0,0 +2013,10,26,6,DL,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-1,0,908,-7,0,0 +2013,8,2,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,8,0,2100,0,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,3,0,1729,-1,0,0 +2013,8,7,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-3,0,1100,0,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,4,0,1725,-5,0,0 +2013,4,10,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,-7,0,915,-10,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1231,17,1,1424,7,0,0 +2013,7,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,810,-5,0,920,-9,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1313,74,1,1439,72,1,0 +2013,7,7,7,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1940,23,1,2225,24,1,0 +2013,5,2,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-9,0,1004,3,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,815,-1,0,1015,-4,0,0 +2013,7,26,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1015,-3,0,1807,-18,0,0 +2013,10,6,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1050,-1,0,1315,-2,0,0 +2013,4,8,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,-3,0,910,-12,0,0 +2013,5,6,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1455,12,0,1555,8,0,0 +2013,4,3,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,0,0,2310,0,0,0 +2013,5,5,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1150,0,0,1525,1,0,0 +2013,10,27,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,600,-4,0,840,-19,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,10,0,2120,8,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1645,49,1,2225,33,1,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,2045,-2,0,2240,-8,0,0 +2013,8,12,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,830,1,0,950,-3,0,0 +2013,6,9,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,29,1,2101,22,1,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1822,-3,0,2014,-14,0,0 +2013,4,8,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2330,2,0,730,-5,0,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2100,21,1,2150,14,0,0 +2013,8,2,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,650,0,0,820,-4,0,0 +2013,9,26,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1950,9,0,2110,4,0,0 +2013,9,9,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,-6,0,1202,-12,0,0 +2013,6,27,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,815,-4,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,4,0,538,7,0,0 +2013,5,2,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,33,1,1804,36,1,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,-1,0,1225,3,0,0 +2013,8,25,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,6,0,1630,20,1,0 +2013,6,3,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-6,0,700,-19,0,0 +2013,5,14,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1806,-3,0,0 +2013,6,21,5,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,-6,0,935,-6,0,0 +2013,4,17,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1500,1,0,1605,-7,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1359,-8,0,1507,-17,0,0 +2013,4,14,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1513,3,0,1643,24,1,0 +2013,4,15,1,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,846,-5,0,1035,3,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1515,1,0,1839,-12,0,0 +2013,5,27,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-3,0,1919,6,0,0 +2013,5,13,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,737,-5,0,848,-14,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2127,58,1,2359,46,1,0 +2013,4,29,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1941,-11,0,0 +2013,9,30,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,1614,-7,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,84,1,1430,101,1,0 +2013,8,18,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1716,-8,0,1844,-25,0,0 +2013,7,14,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-5,0,1114,-10,0,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1425,-3,0,1729,-32,0,0 +2013,4,8,1,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,-2,0,2118,-4,0,0 +2013,9,26,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-5,0,900,-13,0,0 +2013,4,22,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-10,0,920,2,0,0 +2013,9,11,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-2,0,1254,-11,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,944,-5,0,1021,-18,0,0 +2013,4,2,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1040,4,0,1615,-11,0,0 +2013,6,14,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1912,36,1,2102,24,1,0 +2013,4,4,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-7,0,1130,1,0,0 +2013,6,1,6,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,847,-7,0,1037,-15,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,940,2,0,1415,18,1,0 +2013,8,25,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,20,1,1135,16,1,0 +2013,9,23,1,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1045,8,0,1255,6,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,920,0,0,940,-16,0,0 +2013,8,19,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1750,4,0,2004,27,1,0 +2013,9,14,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,822,-2,0,1136,-20,0,0 +2013,6,7,5,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,630,-2,0,727,-9,0,0 +2013,9,26,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1925,-6,0,2023,-2,0,0 +2013,4,7,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-4,0,1412,-11,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1930,3,0,44,-4,0,0 +2013,4,15,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1238,-9,0,2109,5,0,0 +2013,6,16,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-3,0,1115,-29,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1720,19,1,2019,21,1,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1449,-4,0,1635,16,1,0 +2013,7,14,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,33,1,2144,30,1,0 +2013,6,25,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1315,-6,0,1440,-10,0,0 +2013,5,12,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-3,0,650,-8,0,0 +2013,4,23,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,-10,0,1942,-8,0,0 +2013,4,16,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,241,1,1910,223,1,0 +2013,4,21,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-7,0,1408,-2,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1725,128,1,2235,105,1,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1225,15,1,1330,19,1,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,-2,0,1510,11,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1802,-1,0,2007,-23,0,0 +2013,7,9,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,0,0,646,-5,0,0 +2013,7,29,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,0,0,2041,-8,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,-1,0,1816,-19,0,0 +2013,6,1,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,-1,0,6,-11,0,0 +2013,4,11,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1055,69,1,1223,56,1,0 +2013,4,8,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1500,17,1,2040,-4,0,0 +2013,4,12,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,2,0,1610,-7,0,0 +2013,6,20,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,8,0,2130,7,0,0 +2013,4,14,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,729,-7,0,854,-4,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,50,1,2250,110,1,0 +2013,9,7,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,840,-3,0,1005,-10,0,0 +2013,4,17,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,59,1,1327,95,1,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-1,0,1612,-2,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-4,0,2225,-10,0,0 +2013,5,31,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,11,0,1415,2,0,0 +2013,6,27,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,8,0,2235,5,0,0 +2013,4,27,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1535,1,0,0 +2013,7,19,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1645,3,0,1921,-2,0,0 +2013,10,27,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1100,4,0,1156,24,1,0 +2013,8,5,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,7,0,1546,12,0,0 +2013,9,20,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1645,26,1,1930,7,0,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,910,-5,0,1210,-3,0,0 +2013,10,6,7,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1230,-5,0,1432,-20,0,0 +2013,6,10,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,11,0,1708,9,0,0 +2013,8,4,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,0,0,2037,3,0,0 +2013,10,9,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,650,-5,0,820,-6,0,0 +2013,6,8,6,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1330,-2,0,1452,-2,0,0 +2013,4,25,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,10,0,1452,-3,0,0 +2013,5,5,7,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-5,0,1620,-11,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1812,76,1,2056,66,1,0 +2013,7,3,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1042,171,1,1337,179,1,0 +2013,7,25,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1224,-4,0,1449,-9,0,0 +2013,7,13,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1715,-6,0,2010,37,1,0 +2013,4,16,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,350,1,1255,349,1,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,645,-3,0,912,-44,0,0 +2013,4,13,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-3,0,1735,-3,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,949,-2,0,1243,45,1,0 +2013,6,30,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2000,-2,0,2210,-9,0,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1140,6,0,1430,0,0,0 +2013,8,6,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-10,0,1700,-9,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1940,24,1,2205,33,1,0 +2013,4,9,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,0,0,1516,-1,0,0 +2013,5,20,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,752,-4,0,841,0,0,0 +2013,9,23,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1441,-4,0,1548,-17,0,0 +2013,8,20,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1240,5,0,1357,-1,0,0 +2013,5,30,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,942,11,0,1236,7,0,0 +2013,8,30,5,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1400,4,0,1652,-24,0,0 +2013,6,24,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-3,0,1215,-8,0,0 +2013,9,26,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2100,9,0,2210,13,0,0 +2013,8,16,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,0,0,2156,0,0,0 +2013,9,1,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1445,-4,0,1811,-9,0,0 +2013,8,29,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1415,7,0,0 +2013,6,14,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1850,23,1,2005,22,1,0 +2013,9,2,1,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,823,-1,0,1033,-38,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,750,8,0,927,13,0,0 +2013,10,28,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-5,0,1430,-18,0,0 +2013,9,16,1,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,56,1,1755,70,1,0 +2013,7,20,6,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,26,1,1919,14,0,0 +2013,9,16,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,610,-4,0,930,-8,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1425,9,0,1635,-5,0,0 +2013,8,22,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1410,131,1,1545,125,1,0 +2013,4,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,932,-5,0,1025,8,0,0 +2013,4,17,3,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,-8,0,1918,-10,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2202,-4,0,2246,-16,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1650,60,1,2130,22,1,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,900,13,0,1625,18,1,0 +2013,8,26,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,-3,0,1859,-9,0,0 +2013,7,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,0,,909,0,1,1 +2013,6,18,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-4,0,1213,0,0,0 +2013,5,31,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-7,0,1252,-14,0,0 +2013,9,7,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-6,0,1930,-16,0,0 +2013,8,28,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1615,79,1,2007,60,1,0 +2013,8,17,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,845,-6,0,859,-10,0,0 +2013,5,9,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-7,0,851,-5,0,0 +2013,8,1,4,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,6,0,1425,29,1,0 +2013,9,27,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1938,-18,0,2142,-20,0,0 +2013,5,3,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,3,0,1935,3,0,0 +2013,5,9,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1600,-1,0,2000,7,0,0 +2013,8,29,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,942,-1,0,0 +2013,6,7,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-2,0,1450,2,0,0 +2013,5,7,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-10,0,1028,-8,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-3,0,2037,-15,0,0 +2013,5,10,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1533,30,1,1905,28,1,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,28,1,1010,13,0,0 +2013,7,3,3,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1921,0,0,2110,-6,0,0 +2013,5,7,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-9,0,1140,-19,0,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-4,0,855,36,1,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1355,2,0,1655,-3,0,0 +2013,6,11,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,21,1,2112,21,1,0 +2013,6,21,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,530,-3,0,627,0,0,0 +2013,4,20,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1049,12,0,1925,2,0,0 +2013,8,20,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1425,11,0,1540,12,0,0 +2013,8,13,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1125,5,0,1210,16,1,0 +2013,10,14,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-10,0,1109,-23,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1220,32,1,1420,20,1,0 +2013,10,10,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1420,8,0,1610,9,0,0 +2013,7,21,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,102,1,2125,93,1,0 +2013,10,18,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,530,-2,0,736,-2,0,0 +2013,7,31,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1200,-3,0,1358,-2,0,0 +2013,8,11,7,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1413,-2,0,1432,-22,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-4,0,1001,16,1,0 +2013,4,12,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,-3,0,1830,-10,0,0 +2013,8,28,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-3,0,1909,-20,0,0 +2013,9,11,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,605,-12,0,718,-25,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1710,-4,0,1818,-9,0,0 +2013,10,1,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-6,0,1051,-1,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,-2,0,1940,-11,0,0 +2013,5,3,5,US,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1625,-8,0,1746,2,0,0 +2013,10,17,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1724,-4,0,2004,17,1,0 +2013,9,27,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-6,0,1938,-16,0,0 +2013,7,9,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,0,0,700,-9,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-4,0,1345,5,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1252,31,1,1629,67,1,0 +2013,10,11,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-3,0,1010,-5,0,0 +2013,9,6,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1650,-1,0,1920,-42,0,0 +2013,9,14,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1740,-2,0,1825,-4,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1645,-3,0,1820,2,0,0 +2013,5,21,2,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2100,-8,0,512,-13,0,0 +2013,4,19,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,48,1,2300,38,1,0 +2013,4,13,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,1357,-6,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,0,0,1351,-10,0,0 +2013,4,29,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1214,-2,0,1305,-15,0,0 +2013,4,25,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,747,-13,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,-3,0,1249,-11,0,0 +2013,8,29,4,OO,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1600,-5,0,1710,13,0,0 +2013,4,25,4,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-3,0,1520,-18,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1220,55,1,1340,51,1,0 +2013,6,24,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,-1,0,1355,0,0,0 +2013,7,1,1,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1510,97,1,1625,85,1,0 +2013,9,9,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1355,-5,0,1432,1,0,0 +2013,8,13,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1350,3,0,1625,-11,0,0 +2013,6,12,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1112,-10,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-4,0,1150,-3,0,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2040,-3,0,2145,-13,0,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1315,31,1,1608,35,1,0 +2013,9,5,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1409,5,0,1659,-7,0,0 +2013,7,22,1,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,955,1,0,1545,-6,0,0 +2013,8,15,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,6,0,804,-2,0,0 +2013,7,14,7,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1145,-7,0,1320,-31,0,0 +2013,4,1,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1005,149,1,1120,135,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1035,4,0,1430,11,0,0 +2013,6,23,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,-1,0,1252,-11,0,0 +2013,7,10,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,4,0,1030,18,1,0 +2013,9,17,2,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2043,6,0,2208,-1,0,0 +2013,6,12,3,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,7,0,1950,18,1,0 +2013,5,19,7,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,0,0,1655,-10,0,0 +2013,8,3,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1819,-15,0,1932,-15,0,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2037,-16,0,2207,-25,0,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-3,0,2210,-14,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,3,0,2150,2,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1310,36,1,1525,34,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,0,0,1310,-18,0,0 +2013,6,12,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,45,1,2205,39,1,0 +2013,9,13,5,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-6,0,1035,-14,0,0 +2013,4,6,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1500,0,0,1710,-15,0,0 +2013,4,7,7,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1050,-2,0,1225,1,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1135,7,0,1835,4,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,-2,0,2100,-13,0,0 +2013,4,4,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,750,1,0,1030,9,0,0 +2013,10,6,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1950,-2,0,2126,3,0,0 +2013,8,16,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1115,24,1,1357,16,1,0 +2013,8,20,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1702,70,1,1829,65,1,0 +2013,5,8,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-1,0,1240,-8,0,0 +2013,4,1,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-1,0,1529,-4,0,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,3,0,1550,-4,0,0 +2013,7,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-3,0,1140,-11,0,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1520,-3,0,1820,-10,0,0 +2013,9,24,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1739,-2,0,1821,-1,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,840,36,1,1115,17,1,0 +2013,5,2,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,839,-1,0,1420,10,0,0 +2013,10,5,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-6,0,648,-3,0,0 +2013,8,11,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,-9,0,1753,-12,0,0 +2013,6,24,1,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1801,-7,0,1936,-4,0,0 +2013,10,29,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1325,3,0,1448,1,0,0 +2013,6,7,5,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,625,-4,0,942,1,0,0 +2013,8,17,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-2,0,1321,-11,0,0 +2013,6,30,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,1,0,1729,6,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1445,9,0,1705,-4,0,0 +2013,6,3,1,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-15,0,2153,-19,0,0 +2013,9,1,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2015,-2,0,2155,-17,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,60,1,2029,84,1,0 +2013,5,14,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1650,-7,0,1801,-20,0,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1123,3,0,1245,-5,0,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1115,-5,0,1247,-26,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1610,25,1,1732,19,1,0 +2013,7,10,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-4,0,1006,-11,0,0 +2013,9,10,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,706,-6,0,1027,0,0,0 +2013,9,15,7,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-3,0,1908,7,0,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,800,-2,0,1158,-7,0,0 +2013,9,16,1,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-5,0,2100,5,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,838,6,0,1027,2,0,0 +2013,7,15,1,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1111,-5,0,1409,-3,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1925,-1,0,2130,-14,0,0 +2013,9,27,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2242,-6,0,444,-40,0,0 +2013,6,19,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,-6,0,2059,9,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,740,-4,0,1101,-6,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1925,38,1,2240,38,1,0 +2013,7,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1345,-6,0,1445,-6,0,0 +2013,7,2,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1150,-7,0,1320,-4,0,0 +2013,9,27,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1705,-1,0,1750,-2,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,16,1,1555,3,0,0 +2013,9,3,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,641,78,1,1218,69,1,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1715,29,1,2330,44,1,0 +2013,10,13,7,DL,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-5,0,1442,-8,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,840,-3,0,1029,1,0,0 +2013,8,15,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1439,1,0,1644,-20,0,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,37,1,2200,25,1,0 +2013,6,25,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1940,138,1,2215,137,1,0 +2013,6,5,3,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,715,-2,0,825,-8,0,0 +2013,6,15,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1432,-7,0,1654,-12,0,0 +2013,8,25,7,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1610,1,0,1945,-3,0,0 +2013,8,22,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1150,15,1,1945,2,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,930,-7,0,1045,-13,0,0 +2013,5,29,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,2,0,1755,-8,0,0 +2013,8,28,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-4,0,1710,-28,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,144,1,2251,128,1,0 +2013,8,28,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1135,28,1,1422,51,1,0 +2013,8,27,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1520,1,0,1534,-19,0,0 +2013,8,8,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,123,1,2132,132,1,0 +2013,8,25,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-9,0,2057,2,0,0 +2013,10,3,4,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1610,22,1,1850,19,1,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,-5,0,1625,-6,0,0 +2013,4,5,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1604,0,0,1722,-10,0,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,1,0,1129,17,1,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1140,22,1,1311,29,1,0 +2013,5,15,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-6,0,1515,-16,0,0 +2013,7,25,4,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-1,0,1019,-8,0,0 +2013,8,20,2,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,900,-2,0,1155,-12,0,0 +2013,8,5,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-3,0,1800,0,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,21,1,1737,17,1,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1659,-6,0,1840,-37,0,0 +2013,7,10,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1455,72,1,1735,112,1,0 +2013,7,29,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-5,0,1115,-14,0,0 +2013,6,5,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,3,0,1121,10,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,-7,0,2115,-8,0,0 +2013,4,15,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,840,-4,0,1120,-27,0,0 +2013,5,13,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1244,-2,0,1344,-7,0,0 +2013,4,30,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,755,-8,0,1515,13,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1405,24,1,1612,20,1,0 +2013,4,28,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1710,31,1,1820,29,1,0 +2013,7,2,2,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,-6,0,950,-18,0,0 +2013,8,13,2,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-4,0,815,-11,0,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,911,-5,0,1024,-6,0,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,845,-2,0,1045,-9,0,0 +2013,9,6,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1349,-6,0,1517,-4,0,0 +2013,5,11,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-5,0,1730,-4,0,0 +2013,5,8,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,-3,0,2040,0,0,0 +2013,10,6,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1215,-2,0,1400,-13,0,0 +2013,6,12,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,645,-2,0,820,-1,0,0 +2013,7,14,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,114,-8,0,630,-12,0,0 +2013,9,27,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1055,-2,0,1345,-5,0,0 +2013,10,25,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2010,-6,0,2141,-7,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1439,-3,0,2251,19,1,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-3,0,1929,0,0,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,27,1,1100,23,1,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1347,-1,0,1417,-7,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2155,16,1,2325,21,1,0 +2013,6,5,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-6,0,1040,-14,0,0 +2013,4,17,3,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1217,-4,0,1322,-19,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,1,0,1155,-14,0,0 +2013,9,3,2,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1054,-5,0,1534,-14,0,0 +2013,10,3,4,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,603,-4,0,904,-19,0,0 +2013,9,10,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-8,0,2025,-5,0,0 +2013,5,24,5,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,74,1,1510,69,1,0 +2013,6,24,1,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1705,9,0,1835,29,1,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1447,1,0,1609,-1,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,1,0,755,18,1,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1006,75,1,1635,79,1,0 +2013,4,5,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1710,3,0,1937,-13,0,0 +2013,8,28,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1859,59,1,2153,37,1,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,-2,0,2025,-1,0,0 +2013,7,2,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,0,0,2120,15,1,0 +2013,5,7,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,700,0,0,800,5,0,0 +2013,6,28,5,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-6,0,1626,-7,0,0 +2013,4,11,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,847,-6,0,1050,33,1,0 +2013,4,4,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1337,-2,0,1450,-5,0,0 +2013,7,30,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,-6,0,730,-18,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,-4,0,904,-19,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,800,0,0,905,-5,0,0 +2013,5,15,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1701,-7,0,2301,-11,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-4,0,1807,-5,0,0 +2013,5,12,7,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1830,-7,0,2010,-19,0,0 +2013,9,10,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1855,-1,0,2045,-6,0,0 +2013,4,10,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1425,55,1,1520,94,1,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1935,-8,0,2152,11,0,0 +2013,6,9,7,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,810,-3,0,1117,-9,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,-1,0,1105,-18,0,0 +2013,6,18,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-2,0,1025,5,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,845,-6,0,1159,-13,0,0 +2013,9,22,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1335,4,0,1508,12,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2201,-2,0,2324,-12,0,0 +2013,6,27,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,9,0,1405,-2,0,0 +2013,4,12,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,645,2,0,1235,0,0,0 +2013,9,10,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-4,0,1220,1,0,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,55,1,1720,45,1,0 +2013,6,4,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2105,-4,0,2220,-14,0,0 +2013,9,30,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,454,-6,0,925,-8,0,0 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,900,-1,0,1428,-7,0,0 +2013,5,15,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,113,0,0,623,-1,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1800,41,1,2130,24,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-1,0,1440,-8,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,845,0,0,1315,-11,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,851,-1,0,1045,-10,0,0 +2013,9,13,5,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1226,-5,0,1524,-15,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,1,0,1004,-3,0,0 +2013,10,5,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2140,-6,0,2219,-5,0,0 +2013,5,27,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1441,-5,0,1648,-1,0,0 +2013,10,21,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,0,0,1650,5,0,0 +2013,4,1,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,850,-4,0,1010,-11,0,0 +2013,7,2,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-8,0,2040,0,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1635,35,1,1805,28,1,0 +2013,9,17,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1300,0,0,1420,-4,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,59,1,1750,74,1,0 +2013,7,5,5,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1011,68,1,1248,62,1,0 +2013,4,15,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-9,0,1650,-5,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-3,0,1837,-4,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,20,3,0,620,-17,0,0 +2013,10,8,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1335,43,1,1449,31,1,0 +2013,5,6,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1830,16,1,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1630,2,0,1925,3,0,0 +2013,7,26,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1750,-3,0,1910,23,1,0 +2013,6,29,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,957,-3,0,1324,9,0,0 +2013,8,9,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,8,0,2320,-22,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,3,0,1138,-3,0,0 +2013,6,8,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1529,73,1,1735,66,1,0 +2013,7,17,3,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-1,0,1245,-29,0,0 +2013,8,18,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,105,-4,0,635,-11,0,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,900,-3,0,1015,-6,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,935,24,1,1145,7,0,0 +2013,5,30,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,0,0,1535,29,1,0 +2013,9,27,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,282,1,1735,271,1,0 +2013,4,1,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-13,0,1715,-17,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1130,-4,0,1400,-29,0,0 +2013,4,10,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1957,-6,0,2202,-10,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2135,14,0,2300,-6,0,0 +2013,5,17,5,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,745,-3,0,1025,-11,0,0 +2013,5,22,3,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1309,-10,0,1530,-14,0,0 +2013,6,14,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,44,1,2140,46,1,0 +2013,7,6,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-4,0,1630,-10,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1438,0,0,1531,-5,0,0 +2013,10,5,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1940,-1,0,2050,2,0,0 +2013,7,3,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,109,1,1501,131,1,0 +2013,5,19,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1103,0,0,1309,-5,0,0 +2013,5,13,1,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,1300,-6,0,1727,-56,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,700,1,0,940,-16,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1238,-3,0,1617,-23,0,0 +2013,7,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,-1,0,755,5,0,0 +2013,8,29,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1047,37,1,1130,27,1,0 +2013,5,3,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2235,-6,0,438,-7,0,0 +2013,7,10,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,650,-3,0,931,-20,0,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,855,-7,0,1105,-1,0,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1005,6,0,1200,2,0,0 +2013,4,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1143,-4,0,1353,-12,0,0 +2013,10,4,5,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1457,-10,0,1620,-14,0,0 +2013,5,13,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,15,1,1110,23,1,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2209,90,1,2305,72,1,0 +2013,4,25,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,950,-20,0,0 +2013,7,15,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1519,-8,0,1650,-18,0,0 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1155,-1,0,1415,-30,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,1,0,1118,-1,0,0 +2013,5,22,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,1117,-1,0,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,953,0,0,1216,-4,0,0 +2013,6,3,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1625,-8,0,2010,-18,0,0 +2013,9,5,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1617,-19,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,955,-2,0,1600,-16,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,2,0,1550,20,1,0 +2013,5,17,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1910,41,1,2035,42,1,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1031,8,0,1056,17,1,0 +2013,6,26,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,21,1,1540,16,1,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2115,55,1,2235,73,1,0 +2013,7,8,1,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,835,8,0,1002,3,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1455,3,0,1600,-5,0,0 +2013,8,9,5,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,0,0,1648,19,1,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1145,1,0,1240,1,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1815,99,1,1920,101,1,0 +2013,6,16,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1020,-4,0,1226,0,0,0 +2013,5,18,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,15,1,1335,4,0,0 +2013,10,22,2,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1401,-8,0,1525,-18,0,0 +2013,6,30,7,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1555,50,1,1740,30,1,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1925,14,0,2250,20,1,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,-4,0,1152,-13,0,0 +2013,7,10,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1703,0,,1843,0,1,1 +2013,8,24,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1155,-11,0,1310,-16,0,0 +2013,8,22,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1533,21,1,1850,48,1,0 +2013,7,7,7,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,-2,0,1305,-6,0,0 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1435,-4,0,1535,-4,0,0 +2013,4,28,7,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-4,0,1910,-25,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1850,31,1,2000,26,1,0 +2013,10,24,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1020,-6,0,1211,0,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1405,1,0,1447,-5,0,0 +2013,4,18,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,852,-8,0,1006,-8,0,0 +2013,4,7,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2005,0,0,2233,-12,0,0 +2013,4,30,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1233,-7,0,0 +2013,7,17,3,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1119,-2,0,1442,5,0,0 +2013,9,15,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1930,63,1,2125,80,1,0 +2013,5,20,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,0,0,2102,9,0,0 +2013,9,24,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1725,-5,0,1824,-14,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1050,7,0,1150,-7,0,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1824,-2,0,2137,-16,0,0 +2013,9,6,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1345,-2,0,1425,-16,0,0 +2013,5,6,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,600,0,0,811,-7,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,957,-2,0,1224,-26,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1739,-7,0,2005,-19,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1629,17,1,1739,10,0,0 +2013,7,28,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-6,0,810,0,0,0 +2013,6,12,3,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,-7,0,1451,1,0,0 +2013,6,15,6,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1120,20,1,1250,13,0,0 +2013,8,5,1,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-2,0,1541,5,0,0 +2013,4,18,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,745,-6,0,1015,-10,0,0 +2013,9,15,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,738,-2,0,1024,9,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,719,-6,0,1140,2,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1910,-2,0,2030,-6,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1845,29,1,2320,7,0,0 +2013,7,15,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,5,0,1526,10,0,0 +2013,7,2,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-5,0,1844,-3,0,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,650,-1,0,1025,-18,0,0 +2013,8,9,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,940,-1,0,1620,14,0,0 +2013,8,14,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1412,-5,0,1543,-17,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1328,-2,0,1716,-15,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,-1,0,2305,-7,0,0 +2013,6,29,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1125,12,0,1245,6,0,0 +2013,8,21,3,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,832,-7,0,1026,-12,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,99,1,2300,126,1,0 +2013,5,15,3,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,0,0,915,-16,0,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,6,0,2330,5,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2157,-5,0,2250,-11,0,0 +2013,5,10,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-1,0,2055,-22,0,0 +2013,7,13,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1040,-1,0,1155,-1,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2045,35,1,2245,31,1,0 +2013,8,2,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,37,1,1240,28,1,0 +2013,8,28,3,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1952,17,1,2223,25,1,0 +2013,4,7,7,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1050,-5,0,1418,-8,0,0 +2013,8,6,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1850,-1,0,2030,-7,0,0 +2013,8,27,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-9,0,1357,-10,0,0 +2013,7,14,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,-10,0,1032,-15,0,0 +2013,9,13,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,930,-3,0,1134,-16,0,0 +2013,5,9,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,952,45,1,1057,36,1,0 +2013,5,30,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-7,0,1040,-21,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,-3,0,1620,0,0,0 +2013,7,10,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2210,39,1,2328,28,1,0 +2013,8,7,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,-3,0,1645,-2,0,0 +2013,4,7,7,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1453,-13,0,1628,-9,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,8,0,1310,0,0,0 +2013,4,24,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1945,146,1,2125,120,1,0 +2013,7,10,3,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1850,142,1,2125,131,1,0 +2013,10,2,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-4,0,1145,-6,0,0 +2013,4,20,6,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1120,-1,0,1635,-10,0,0 +2013,7,21,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1620,23,1,1705,29,1,0 +2013,4,8,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1854,111,1,2019,98,1,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1955,154,1,2115,130,1,0 +2013,5,11,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,646,-9,0,0 +2013,6,22,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1605,-2,0,1801,-3,0,0 +2013,8,31,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,15,1,1315,25,1,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2150,10,0,2255,3,0,0 +2013,8,27,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-3,0,1510,-3,0,0 +2013,7,30,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-5,0,908,-11,0,0 +2013,4,2,2,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1738,18,1,2027,20,1,0 +2013,5,8,3,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2047,70,1,2235,88,1,0 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1318,-5,0,1453,-18,0,0 +2013,4,15,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,715,1,0,850,-8,0,0 +2013,10,14,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,-6,0,1232,-2,0,0 +2013,5,13,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1044,-3,0,1455,-37,0,0 +2013,5,17,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1235,7,0,1400,5,0,0 +2013,7,4,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1310,-1,0,1435,-11,0,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-3,0,1511,-20,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,18,1,1645,4,0,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1345,10,0,1510,4,0,0 +2013,5,17,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1428,0,0,1610,36,1,0 +2013,10,28,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,-2,0,1912,-11,0,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,949,-5,0,1244,-8,0,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,855,3,0,1220,-5,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,-5,0,1755,0,0,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,71,1,1029,56,1,0 +2013,10,13,7,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1944,-2,0,2025,-1,0,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1209,1,0,1310,-11,0,0 +2013,10,14,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-2,0,735,20,1,0 +2013,4,22,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,6,0,1200,-7,0,0 +2013,6,21,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-4,0,1225,-10,0,0 +2013,8,31,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,740,-1,0,905,-7,0,0 +2013,5,11,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-5,0,635,-5,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-1,0,1948,-19,0,0 +2013,7,28,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,732,-2,0,1032,-21,0,0 +2013,8,2,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1851,2,0,2245,-6,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,-3,0,1504,19,1,0 +2013,9,2,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,-1,0,2049,-4,0,0 +2013,5,17,5,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2258,-7,0,720,-32,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1345,-2,0,1545,2,0,0 +2013,10,30,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1250,3,0,1459,7,0,0 +2013,10,1,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,3,0,1820,-9,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1750,307,1,2012,313,1,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,211,1,1450,197,1,0 +2013,4,29,1,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,-6,0,1337,9,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,820,1,0,1300,-6,0,0 +2013,6,4,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1710,-3,0,1830,-8,0,0 +2013,8,14,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-5,0,1205,5,0,0 +2013,10,21,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12953,LaGuardia,New York,NY,600,55,1,721,39,1,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,66,1,2259,34,1,0 +2013,10,23,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1130,-1,0,1255,-11,0,0 +2013,7,30,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1850,-3,0,2005,-8,0,0 +2013,8,30,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1249,-5,0,1419,-3,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1635,-11,0,1827,-20,0,0 +2013,10,19,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1017,-5,0,1140,-5,0,0 +2013,8,25,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,845,-1,0,1215,11,0,0 +2013,7,18,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,-5,0,1820,0,0,0 +2013,4,8,1,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,2035,-5,0,2241,6,0,0 +2013,7,31,3,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1947,-9,0,2030,-6,0,0 +2013,7,21,7,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1250,-7,0,1535,-8,0,0 +2013,9,16,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-5,0,1930,10,0,0 +2013,7,3,3,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1948,-13,0,2118,-13,0,0 +2013,9,13,5,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,930,0,0,1139,-8,0,0 +2013,6,22,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1255,0,0,1500,-2,0,0 +2013,8,21,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,10,0,1101,26,1,0 +2013,7,30,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,639,-4,0,819,-4,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1130,2,0,1219,-12,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1600,25,1,1705,19,1,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2110,-3,0,2225,-7,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2140,13,0,2255,5,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,745,-3,0,925,-11,0,0 +2013,9,29,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1935,0,0,2059,-2,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1715,6,0,1835,-7,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1025,0,0,1115,-17,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,-1,0,940,1,0,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2100,14,0,2316,10,0,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1252,39,1,1500,45,1,0 +2013,7,17,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,16,1,2030,7,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1055,2,0,1535,-11,0,0 +2013,5,18,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1200,-5,0,1519,-40,0,0 +2013,7,19,5,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,7,0,1713,-6,0,0 +2013,5,10,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,0,0,1625,12,0,0 +2013,6,26,3,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,940,-2,0,1100,-9,0,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,0,0,1655,-15,0,0 +2013,4,3,3,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1320,0,0,1500,2,0,0 +2013,10,18,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1959,-1,0,2111,6,0,0 +2013,10,16,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1320,12,0,1640,-3,0,0 +2013,4,1,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1329,-1,0,1634,13,0,0 +2013,7,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1541,-2,0,1835,-26,0,0 +2013,10,6,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,0,0,1150,1,0,0 +2013,5,6,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2110,4,0,2245,0,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2000,9,0,2124,-6,0,0 +2013,6,30,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-1,0,815,-1,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,0,0,1707,-10,0,0 +2013,5,31,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,829,-1,0,941,-9,0,0 +2013,7,19,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,-3,0,1314,-31,0,0 +2013,5,17,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,-4,0,1807,-1,0,0 +2013,10,1,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,-3,0,1640,-7,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,719,-5,0,1043,-9,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,2015,35,1,2235,25,1,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,37,1,1440,31,1,0 +2013,8,12,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,720,-7,0,959,-4,0,0 +2013,7,21,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1533,0,0,1834,29,1,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1010,164,1,1215,163,1,0 +2013,5,17,5,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,2040,-3,0,2130,3,0,0 +2013,5,22,3,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1405,10,0,1630,-10,0,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1225,40,1,1430,33,1,0 +2013,5,8,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,625,-9,0,935,-19,0,0 +2013,8,3,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,0,0,2214,-17,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1235,0,0,1515,-7,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,830,22,1,1100,-2,0,0 +2013,4,4,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,-1,0,1308,1,0,0 +2013,5,17,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-3,0,1545,1,0,0 +2013,10,21,1,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1450,79,1,2250,60,1,0 +2013,7,17,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,838,-2,0,0 +2013,4,7,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,908,-10,0,1024,-15,0,0 +2013,10,6,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-5,0,1250,-17,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,-1,0,1350,-10,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1920,0,0,2238,-3,0,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1155,-6,0,1310,-2,0,0 +2013,10,14,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,0,0,1555,7,0,0 +2013,5,3,5,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,19,1,958,17,1,0 +2013,7,1,1,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,915,407,1,1115,407,1,0 +2013,5,13,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-8,0,715,-12,0,0 +2013,7,1,1,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1436,-4,0,1610,8,0,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,-3,0,1336,-9,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1757,53,1,1956,45,1,0 +2013,7,10,3,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,823,0,0,1002,14,0,0 +2013,7,5,5,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1655,-2,0,1820,-8,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1915,21,1,2030,18,1,0 +2013,8,30,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-2,0,1634,-20,0,0 +2013,5,8,3,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-3,0,1405,-9,0,0 +2013,8,16,5,9E,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1931,-3,0,2115,-6,0,0 +2013,9,6,5,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,810,0,0,1000,-29,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1915,10,0,2144,-3,0,0 +2013,10,24,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,950,-8,0,1119,-13,0,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,630,0,0,920,-1,0,0 +2013,6,26,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1820,-24,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,-5,0,1034,3,0,0 +2013,8,15,4,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-3,0,735,11,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1725,-2,0,1955,-17,0,0 +2013,10,15,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1845,-2,0,2002,-3,0,0 +2013,9,25,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1755,6,0,1850,-4,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,5,0,1145,-18,0,0 +2013,6,9,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1540,-2,0,1625,-16,0,0 +2013,5,25,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1200,22,1,1300,8,0,0 +2013,5,30,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-2,0,1414,15,1,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,850,-4,0,1125,-9,0,0 +2013,9,4,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,937,-17,0,0 +2013,6,16,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,920,-4,0,1120,-5,0,0 +2013,5,16,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,807,-7,0,0 +2013,7,7,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-7,0,1741,-8,0,0 +2013,7,22,1,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,50,1,1051,54,1,0 +2013,10,20,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-8,0,1214,1,0,0 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1530,19,1,1740,-5,0,0 +2013,7,16,2,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-6,0,1613,-14,0,0 +2013,10,27,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,-11,0,1300,-16,0,0 +2013,5,14,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,17,1,1720,9,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1010,3,0,1125,13,0,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,710,-5,0,930,-7,0,0 +2013,8,9,5,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1819,-1,0,1900,-2,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,0,0,1256,6,0,0 +2013,8,31,6,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1325,22,1,1615,14,0,0 +2013,8,18,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1215,-2,0,1326,-2,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,3,0,1248,-9,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,644,0,0,810,-9,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1750,-1,0,2045,-13,0,0 +2013,6,10,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,630,-1,0,1225,-15,0,0 +2013,4,4,4,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,640,-1,0,922,12,0,0 +2013,7,8,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,1,0,1905,-7,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1944,-2,0,2021,-16,0,0 +2013,7,3,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1540,-1,0,1705,2,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,3,0,1615,17,1,0 +2013,5,13,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1700,6,0,1815,-7,0,0 +2013,7,10,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1735,-5,0,2108,62,1,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,61,1,2212,19,1,0 +2013,6,14,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2205,59,1,642,45,1,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,0,0,1440,7,0,0 +2013,10,30,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-3,0,1810,2,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,9,0,1233,-5,0,0 +2013,5,29,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1710,-5,0,2005,-19,0,0 +2013,9,13,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1745,-4,0,2345,-14,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,645,-3,0,922,-6,0,0 +2013,10,11,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,9,0,1817,27,1,0 +2013,4,24,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,-4,0,1305,-5,0,0 +2013,9,21,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1407,-10,0,1550,-19,0,0 +2013,8,26,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,-5,0,2345,-11,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,2,0,1530,-9,0,0 +2013,6,7,5,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,605,-1,0,737,-17,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1133,11,0,1309,9,0,0 +2013,8,30,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1226,-2,0,1354,-14,0,0 +2013,7,13,6,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,-4,0,1451,-9,0,0 +2013,4,10,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,625,8,0,748,2,0,0 +2013,10,15,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,-4,0,1115,-11,0,0 +2013,8,31,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1500,1,0,1740,-20,0,0 +2013,5,18,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-18,0,1330,-5,0,0 +2013,5,23,4,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1250,3,0,1405,0,0,0 +2013,6,22,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,852,3,0,1202,-7,0,0 +2013,7,2,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1305,4,0,1626,0,0,0 +2013,9,18,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1300,-5,0,1400,-10,0,0 +2013,9,21,6,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,920,-9,0,1308,4,0,0 +2013,9,25,3,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,900,-7,0,1158,-14,0,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1635,-2,0,1830,-8,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1155,7,0,1300,2,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1110,-3,0,1810,-13,0,0 +2013,4,20,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1255,9,0,1350,4,0,0 +2013,7,29,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-1,0,2025,-3,0,0 +2013,6,8,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1254,10,0,1532,20,1,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-1,0,1109,-14,0,0 +2013,5,12,7,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,700,-3,0,1255,11,0,0 +2013,5,4,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1035,20,1,1201,35,1,0 +2013,8,10,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1736,30,1,1906,21,1,0 +2013,7,13,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-3,0,2300,-5,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2035,27,1,2215,2,0,0 +2013,8,27,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,0,0,1205,-14,0,0 +2013,7,2,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,-6,0,2003,-2,0,0 +2013,8,29,4,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,12,0,2010,19,1,0 +2013,6,6,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1112,11,0,1425,9,0,0 +2013,10,3,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-9,0,1757,4,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1139,-11,0,1420,-32,0,0 +2013,4,1,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,610,-8,0,850,3,0,0 +2013,9,25,3,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,36,1,2110,9,0,0 +2013,7,15,1,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1030,-10,0,0 +2013,7,25,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,-3,0,1945,-23,0,0 +2013,4,18,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-2,0,1912,-12,0,0 +2013,7,4,4,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,0,,1545,0,1,1 +2013,5,3,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,142,1,1845,135,1,0 +2013,9,12,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,293,1,1640,279,1,0 +2013,10,27,7,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1910,9,0,2149,2,0,0 +2013,4,28,7,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,0,0,2100,16,1,0 +2013,5,3,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1110,7,0,1210,-9,0,0 +2013,6,8,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-4,0,1855,-2,0,0 +2013,7,24,3,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,137,1,1423,122,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,-2,0,1110,-11,0,0 +2013,10,15,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,0,1150,-18,0,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,66,1,1705,56,1,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,-1,0,1333,10,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,1,0,1830,-4,0,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,856,35,1,922,32,1,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,10,0,10,-3,0,0 +2013,5,15,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1155,-2,0,1430,-27,0,0 +2013,10,17,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-7,0,659,-21,0,0 +2013,4,19,5,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,38,1,1355,32,1,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,816,-2,0,1033,-3,0,0 +2013,6,27,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,99,1,2346,114,1,0 +2013,9,18,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1545,-2,0,1825,-18,0,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-6,0,607,-4,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,835,-4,0,945,-22,0,0 +2013,4,17,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-2,0,1230,-4,0,0 +2013,8,1,4,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1000,1,0,1250,-9,0,0 +2013,7,6,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,745,-2,0,840,7,0,0 +2013,4,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,2,0,1710,-5,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1212,-4,0,1349,-9,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,700,-1,0,750,-6,0,0 +2013,9,23,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1252,-16,0,0 +2013,9,28,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-2,0,1145,-6,0,0 +2013,9,23,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-7,0,2035,-10,0,0 +2013,8,13,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,302,1,1640,382,1,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,1,0,1930,24,1,0 +2013,10,4,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1630,30,1,2235,34,1,0 +2013,8,22,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1135,10,0,1310,11,0,0 +2013,6,18,2,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,615,0,0,749,-7,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,-3,0,1005,-2,0,0 +2013,4,2,2,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1302,-5,0,1500,-7,0,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1742,-10,0,2025,-3,0,0 +2013,5,18,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,716,-3,0,931,-23,0,0 +2013,4,29,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1050,6,0,1215,14,0,0 +2013,10,24,4,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1540,87,1,1830,73,1,0 +2013,4,23,2,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,31,1,1229,53,1,0 +2013,8,13,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1256,17,1,1400,21,1,0 +2013,7,16,2,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-5,0,917,-28,0,0 +2013,6,15,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,44,-9,0,622,-12,0,0 +2013,7,25,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1046,-2,0,1110,-16,0,0 +2013,8,4,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,950,-3,0,1150,-12,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,835,167,1,945,175,1,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2015,10,0,2105,8,0,0 +2013,8,1,4,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,73,1,1635,61,1,0 +2013,4,30,2,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1445,-5,0,1753,8,0,0 +2013,6,24,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2246,7,0,629,-11,0,0 +2013,4,17,3,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,19,1,2010,-6,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-4,0,1833,-8,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1620,-3,0,1910,-17,0,0 +2013,6,17,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,12266,George Bush Intercontinental/Houston,Houston,TX,2040,-12,0,625,4,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1918,22,1,2035,-1,0,0 +2013,4,26,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1925,-2,0,2055,-14,0,0 +2013,9,12,4,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,630,-4,0,1456,18,1,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,800,0,0,925,-8,0,0 +2013,9,6,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-7,0,2140,-13,0,0 +2013,10,28,1,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,0,0,1335,5,0,0 +2013,9,6,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-6,0,1158,-17,0,0 +2013,4,19,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1033,0,0,1319,-3,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,10,0,2120,31,1,0 +2013,6,12,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-2,0,2340,-13,0,0 +2013,7,15,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1115,10,0,1230,1,0,0 +2013,7,14,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,630,-2,0,800,-11,0,0 +2013,8,14,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1415,-3,0,2030,-25,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,915,-5,0,1028,-13,0,0 +2013,9,6,5,OO,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-8,0,1030,-25,0,0 +2013,7,8,1,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-10,0,2055,-10,0,0 +2013,7,12,5,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1850,69,1,2014,100,1,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,855,12,0,950,7,0,0 +2013,4,23,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1807,-6,0,2018,-9,0,0 +2013,4,11,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,0,0,2212,-5,0,0 +2013,10,19,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-5,0,1710,-14,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,600,-2,0,935,-12,0,0 +2013,9,8,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,24,1,1845,21,1,0 +2013,5,14,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1022,-1,0,1220,-21,0,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1350,31,1,1435,27,1,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,0,0,1006,-29,0,0 +2013,6,5,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1750,23,1,2115,2,0,0 +2013,4,4,4,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1324,151,1,1525,142,1,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1927,-2,0,2120,-3,0,0 +2013,6,6,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,737,0,0,820,-7,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-5,0,1010,-1,0,0 +2013,9,22,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,0,0,855,-18,0,0 +2013,10,31,4,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1926,-5,0,2113,-5,0,0 +2013,4,3,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1930,1,0,2030,-2,0,0 +2013,7,16,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,5,0,1315,-8,0,0 +2013,10,9,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,0,0,1825,-9,0,0 +2013,4,9,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1635,-2,0,1805,-14,0,0 +2013,9,22,7,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1822,-1,0,2021,-11,0,0 +2013,6,13,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,0,,1718,0,1,1 +2013,10,9,3,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1600,-2,0,1843,-15,0,0 +2013,6,10,1,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,-6,0,1025,-10,0,0 +2013,7,19,5,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1205,-24,0,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1225,1,0,1700,-7,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1420,16,1,1525,21,1,0 +2013,10,11,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-4,0,1704,-18,0,0 +2013,5,15,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1152,27,1,1350,11,0,0 +2013,7,16,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,2,0,1405,8,0,0 +2013,8,21,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,0,0,1437,-1,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,610,15,1,730,6,0,0 +2013,7,6,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1819,14,0,0 +2013,9,12,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-11,0,1335,-19,0,0 +2013,8,27,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-3,0,930,-13,0,0 +2013,4,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1705,39,1,1835,31,1,0 +2013,8,3,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,51,1,955,48,1,0 +2013,6,27,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1720,32,1,1945,-6,0,0 +2013,7,7,7,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-2,0,1305,-2,0,0 +2013,6,15,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2311,1,0,701,-13,0,0 +2013,8,10,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1935,21,1,2256,20,1,0 +2013,6,13,4,OO,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2205,116,1,19,98,1,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1900,3,0,2010,-8,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,4,0,2023,-11,0,0 +2013,8,19,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,1,0,1255,2,0,0 +2013,6,26,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1800,71,1,2035,53,1,0 +2013,6,16,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-10,0,1020,-26,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,21,1,2108,2,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1333,-4,0,1446,-25,0,0 +2013,8,5,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,0,0,2045,9,0,0 +2013,7,11,4,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1650,44,1,1744,30,1,0 +2013,7,28,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,2002,-3,0,2109,-11,0,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,840,-3,0,1007,-10,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,-3,0,2100,-33,0,0 +2013,9,1,7,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,915,1,0,1150,-7,0,0 +2013,10,14,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,7,0,2030,-12,0,0 +2013,4,2,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1221,7,0,1423,17,1,0 +2013,9,26,4,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,126,1,2142,93,1,0 +2013,7,18,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-3,0,1013,-23,0,0 +2013,5,25,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,4,0,726,-8,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,659,-1,0,1007,-8,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,8,0,2232,1,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1615,21,1,1720,10,0,0 +2013,5,2,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,2,0,1934,-1,0,0 +2013,8,5,1,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1945,-3,0,115,-9,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1448,-4,0,1625,10,0,0 +2013,5,14,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1545,10,0,1700,-4,0,0 +2013,7,19,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1602,-5,0,1744,-16,0,0 +2013,10,30,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-5,0,651,-22,0,0 +2013,8,28,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,630,-14,0,726,-16,0,0 +2013,5,23,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,14,0,800,9,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1620,0,0,1720,-15,0,0 +2013,4,1,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2135,-2,0,2305,-9,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,22,1,2005,3,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-1,0,825,-1,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-1,0,949,-5,0,0 +2013,5,11,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,-7,0,1920,-8,0,0 +2013,6,21,5,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-3,0,1129,-26,0,0 +2013,8,19,1,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1114,-4,0,1838,7,0,0 +2013,5,31,5,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-3,0,1017,-29,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,0,0,1415,-1,0,0 +2013,5,19,7,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,705,0,0,925,-11,0,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1030,10,0,1155,11,0,0 +2013,7,10,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1138,0,0,1700,-4,0,0 +2013,10,17,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1008,-9,0,1123,-7,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1400,-1,0,1505,14,0,0 +2013,10,24,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,655,-1,0,819,-2,0,0 +2013,4,30,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,910,-14,0,937,-35,0,0 +2013,4,14,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,0,0,1901,-12,0,0 +2013,8,3,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1433,-9,0,1725,-5,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1945,-2,0,2058,-8,0,0 +2013,10,1,2,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-3,0,1402,-8,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,-2,0,2016,7,0,0 +2013,5,12,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2155,55,1,2300,54,1,0 +2013,7,17,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,927,-5,0,0 +2013,6,2,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-14,0,1804,-33,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,734,1,0,927,17,1,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1734,129,1,2046,105,1,0 +2013,10,31,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1836,-6,0,2027,14,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,839,-5,0,1007,-16,0,0 +2013,5,19,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,735,12,0,1010,14,0,0 +2013,10,21,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1035,-3,0,1345,-29,0,0 +2013,10,1,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1048,-1,0,1829,-3,0,0 +2013,4,20,6,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1120,0,0,1300,-28,0,0 +2013,6,3,1,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1949,10,0,2238,-2,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1840,-2,0,2052,-19,0,0 +2013,6,4,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,2010,1,0,2020,-1,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,705,-2,0,931,-3,0,0 +2013,4,24,3,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,800,-10,0,1200,-20,0,0 +2013,6,14,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1126,0,0,1415,-9,0,0 +2013,8,22,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-4,0,1323,-4,0,0 +2013,9,25,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,700,-8,0,930,-17,0,0 +2013,4,30,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1940,-7,0,2028,-18,0,0 +2013,5,12,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1346,-20,0,0 +2013,9,29,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-4,0,1908,-9,0,0 +2013,9,3,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1601,5,0,1851,-11,0,0 +2013,5,2,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-7,0,1509,-14,0,0 +2013,7,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1045,-1,0,1210,-12,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,845,3,0,1350,7,0,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,630,-5,0,924,2,0,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-4,0,1813,-12,0,0 +2013,5,10,5,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,825,-4,0,1212,-14,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,2,0,2246,-1,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-1,0,1115,-5,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,-5,0,2035,-4,0,0 +2013,5,5,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1640,2,0,2200,-22,0,0 +2013,10,28,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1915,-2,0,2058,-13,0,0 +2013,10,31,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1054,-1,0,1645,-6,0,0 +2013,5,15,3,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1300,3,0,2130,12,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1034,21,1,1825,-1,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1630,2,0,2300,-7,0,0 +2013,6,27,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,805,-9,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,0,0,2125,-11,0,0 +2013,5,21,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1620,-4,0,1900,-19,0,0 +2013,10,22,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1830,61,1,2220,47,1,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,-9,0,1316,-16,0,0 +2013,5,21,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1329,16,1,1504,4,0,0 +2013,4,16,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1858,75,1,2024,88,1,0 +2013,5,7,2,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1015,-2,0,1200,-13,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,20,1,818,21,1,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2202,-1,0,2255,-1,0,0 +2013,7,16,2,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1335,1,0,1920,6,0,0 +2013,4,23,2,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1040,2,0,1307,5,0,0 +2013,9,7,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1500,36,1,1740,20,1,0 +2013,4,24,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-9,0,1309,-16,0,0 +2013,5,18,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1710,-7,0,1820,2,0,0 +2013,9,8,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2209,2,0,2359,-24,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,113,1,2122,117,1,0 +2013,6,28,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-4,0,1205,-9,0,0 +2013,5,10,5,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-1,0,1020,8,0,0 +2013,8,26,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1130,-12,0,0 +2013,8,20,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,2,0,2230,-10,0,0 +2013,6,19,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1355,-1,0,1450,-9,0,0 +2013,10,1,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1730,-1,0,2040,-14,0,0 +2013,10,1,2,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1525,-9,0,1530,-16,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,173,1,1200,166,1,0 +2013,8,26,1,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,742,2,0,1539,-3,0,0 +2013,6,7,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-8,0,854,31,1,0 +2013,4,28,7,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,5,0,759,14,0,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1529,-6,0,1836,49,1,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,-5,0,1608,-26,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1200,-4,0,1415,-35,0,0 +2013,10,21,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,810,0,0,952,9,0,0 +2013,4,2,2,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1700,69,1,2148,42,1,0 +2013,5,5,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,-8,0,2213,-9,0,0 +2013,5,13,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,-3,0,903,-12,0,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1529,3,0,1846,5,0,0 +2013,6,9,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1216,-9,0,1356,-14,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,745,4,0,1135,18,1,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-4,0,1423,-12,0,0 +2013,5,29,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,744,-9,0,917,17,1,0 +2013,6,9,7,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1737,-1,0,2028,-12,0,0 +2013,10,28,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,722,-4,0,922,-6,0,0 +2013,10,24,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1750,23,1,1845,22,1,0 +2013,5,13,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,3,0,1320,3,0,0 +2013,8,23,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1345,-7,0,1556,-2,0,0 +2013,5,2,4,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,1,0,1940,-7,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,7,0,1505,3,0,0 +2013,6,24,1,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1650,15,1,1840,5,0,0 +2013,5,11,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,255,1,2130,243,1,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,-2,0,2235,-23,0,0 +2013,7,17,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1555,31,1,1700,36,1,0 +2013,10,8,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,655,-3,0,800,-5,0,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,14,0,1710,14,0,0 +2013,9,21,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1438,-17,0,1608,-17,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1747,110,1,1900,122,1,0 +2013,6,16,7,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,20,1,2200,11,0,0 +2013,4,21,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-6,0,1249,-9,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,1205,-4,0,0 +2013,7,15,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,19,1,715,21,1,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1330,-4,0,1705,4,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1256,-1,0,1423,-10,0,0 +2013,6,27,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-6,0,1300,-2,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1452,-5,0,1610,-6,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-2,0,2107,-18,0,0 +2013,5,25,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1945,-7,0,2153,-25,0,0 +2013,8,1,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1600,-10,0,1704,-8,0,0 +2013,9,14,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-2,0,1905,-14,0,0 +2013,4,3,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,856,-2,0,916,13,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,703,-6,0,1047,-7,0,0 +2013,6,20,4,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-6,0,1314,-8,0,0 +2013,5,13,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,-3,0,1305,-4,0,0 +2013,5,30,4,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,10,0,1231,2,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1735,-4,0,1928,-19,0,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1128,4,0,1216,25,1,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,618,2,0,856,-19,0,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,41,1,1740,48,1,0 +2013,10,24,4,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1050,-5,0,1315,6,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1341,-2,0,1448,-15,0,0 +2013,9,4,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1355,5,0,1549,-6,0,0 +2013,7,31,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1900,-4,0,2005,-23,0,0 +2013,9,5,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1640,13,0,2020,12,0,0 +2013,8,18,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1845,25,1,2025,23,1,0 +2013,8,15,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,-1,0,2145,0,0,0 +2013,4,11,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,840,-2,0,1120,-4,0,0 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2235,-4,0,44,-12,0,0 +2013,10,15,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,12,0,2025,-6,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1320,36,1,1505,24,1,0 +2013,7,14,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,0,0,1441,-2,0,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1935,-5,0,2330,-13,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,940,20,1,1050,9,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-4,0,2141,-21,0,0 +2013,10,10,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,10,0,1652,-2,0,0 +2013,10,31,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,745,-5,0,855,12,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1550,15,1,2359,9,0,0 +2013,5,23,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,12,0,1909,7,0,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1850,11,0,1940,7,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-7,0,1234,-18,0,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1930,19,1,113,-1,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1240,0,0,1345,-3,0,0 +2013,4,30,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1233,-19,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,-2,0,1305,-16,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1715,20,1,2305,16,1,0 +2013,6,22,6,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,810,-1,0,942,-7,0,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1735,27,1,1935,20,1,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1920,8,0,2120,3,0,0 +2013,5,17,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,0,0,2125,-14,0,0 +2013,10,15,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1911,-14,0,2018,-22,0,0 +2013,5,21,2,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,-4,0,1852,21,1,0 +2013,4,16,2,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1529,-2,0,1920,-13,0,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1113,-1,0,1155,9,0,0 +2013,6,21,5,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1730,39,1,1915,39,1,0 +2013,5,26,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1715,-2,0,1815,-17,0,0 +2013,7,29,1,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1626,-16,0,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,817,-3,0,1127,-9,0,0 +2013,10,30,3,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1931,-11,0,2037,-13,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,40,1,1832,24,1,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2040,-2,0,2200,-18,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-4,0,1831,-9,0,0 +2013,8,18,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1705,3,0,1850,-10,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,1,0,1253,9,0,0 +2013,5,4,6,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1536,-13,0,1830,4,0,0 +2013,5,13,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,-3,0,1546,-13,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1910,1,0,2045,-5,0,0 +2013,7,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,0,0,1010,2,0,0 +2013,4,30,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1140,-7,0,1419,-1,0,0 +2013,5,18,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1135,0,0,1240,-10,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,-5,0,2233,9,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1155,7,0,1510,1,0,0 +2013,5,28,2,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1510,-2,0,655,6,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1720,-3,0,1830,-23,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2150,-1,0,2250,-10,0,0 +2013,6,24,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,0,0,1601,6,0,0 +2013,9,26,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1630,2,0,1806,-7,0,0 +2013,9,3,2,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,710,-4,0,906,-7,0,0 +2013,5,27,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,-2,0,1130,-10,0,0 +2013,5,16,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,830,-4,0,1554,-1,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1020,-5,0,1145,-26,0,0 +2013,8,4,7,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,906,55,1,1134,42,1,0 +2013,9,5,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1305,0,,1340,0,1,1 +2013,7,9,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,930,-9,0,0 +2013,10,4,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,955,-7,0,1100,-12,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,600,-2,0,715,-1,0,0 +2013,7,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,855,1,0,1030,-10,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2155,148,1,2335,140,1,0 +2013,4,17,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2015,18,1,2130,13,0,0 +2013,4,14,7,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1940,0,0,2243,-6,0,0 +2013,7,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,17,1,1830,14,0,0 +2013,10,30,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,-10,0,1101,-52,0,0 +2013,8,18,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,0,0,812,-3,0,0 +2013,8,13,2,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,829,15,1,1045,32,1,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,640,-3,0,950,-28,0,0 +2013,10,28,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,930,30,1,1055,24,1,0 +2013,9,6,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,605,-3,0,710,-2,0,0 +2013,9,21,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,907,22,1,1100,47,1,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1055,-6,0,1208,-7,0,0 +2013,7,20,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,53,1,1320,50,1,0 +2013,10,3,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-5,0,1657,-11,0,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,18,1,1102,13,0,0 +2013,4,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,1,0,944,10,0,0 +2013,10,13,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1505,14,0,2110,1,0,0 +2013,6,27,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2035,0,0,2255,1,0,0 +2013,10,7,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1844,-10,0,2033,-11,0,0 +2013,9,19,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,-7,0,940,-8,0,0 +2013,10,20,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1555,-9,0,0 +2013,10,1,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,13,0,1725,0,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,-5,0,1356,-23,0,0 +2013,8,12,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,802,-4,0,0 +2013,9,9,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1355,-7,0,1526,-5,0,0 +2013,8,6,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1415,-10,0,1650,-6,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1925,-3,0,2256,-29,0,0 +2013,5,19,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2010,128,1,2235,114,1,0 +2013,7,7,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1000,1,0,1135,-13,0,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,0,0,2152,-14,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,-2,0,1427,-3,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1755,-2,0,2034,-14,0,0 +2013,8,26,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1312,-11,0,1512,-5,0,0 +2013,6,26,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1845,-6,0,2047,-10,0,0 +2013,7,7,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1759,-1,0,2004,-10,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2205,-4,0,2359,-22,0,0 +2013,8,24,6,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1047,-9,0,1220,-11,0,0 +2013,6,8,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1015,22,1,1253,16,1,0 +2013,10,7,1,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1225,8,0,1446,5,0,0 +2013,8,12,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,957,-2,0,1255,-9,0,0 +2013,7,18,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,827,-10,0,0 +2013,7,7,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-9,0,1000,0,0,0 +2013,7,13,6,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-7,0,929,-8,0,0 +2013,10,10,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1609,-10,0,1808,-16,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1250,-1,0,1459,23,1,0 +2013,10,10,4,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1840,24,1,2020,12,0,0 +2013,8,4,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1645,215,1,1921,0,1,1 +2013,6,2,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1415,0,,1656,0,1,1 +2013,9,3,2,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,0,0,1003,0,0,0 +2013,9,2,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1040,14,0,1150,10,0,0 +2013,7,17,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,-8,0,1733,-26,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1049,-3,0,1308,-22,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1325,0,0,1711,-7,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1738,2,0,1822,-11,0,0 +2013,8,9,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,16,1,1905,58,1,0 +2013,7,24,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,715,-7,0,0 +2013,9,16,1,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1455,-14,0,1631,-8,0,0 +2013,4,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,740,-6,0,901,-10,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1211,-4,0,1330,-13,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1050,11,0,1820,11,0,0 +2013,7,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,66,1,1705,62,1,0 +2013,7,19,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1539,-1,0,1817,4,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,0,0,2100,-11,0,0 +2013,7,1,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,110,1,1135,117,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,-2,0,1517,-4,0,0 +2013,7,14,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2135,10,0,2250,9,0,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1123,2,0,1312,-2,0,0 +2013,7,20,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,112,1,1901,129,1,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,834,-3,0,923,-2,0,0 +2013,6,18,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1824,109,1,2148,93,1,0 +2013,8,28,3,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-10,0,845,-3,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-7,0,1225,-23,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1018,0,0,1446,2,0,0 +2013,6,3,1,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1907,142,1,2244,134,1,0 +2013,7,30,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-8,0,2003,-18,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-4,0,1020,-3,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,935,7,0,1055,1,0,0 +2013,9,1,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,0,0,2145,-5,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,920,18,1,1351,19,1,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,953,18,1,1217,-7,0,0 +2013,10,11,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-4,0,2050,-12,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,910,-1,0,1620,-8,0,0 +2013,8,6,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,651,-4,0,905,-1,0,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,185,1,1946,158,1,0 +2013,8,5,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,0,,904,0,1,1 +2013,6,1,6,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1031,-2,0,1558,3,0,0 +2013,10,27,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-2,0,1645,-13,0,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,15,1,1200,11,0,0 +2013,6,14,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-3,0,1645,-16,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1350,-1,0,1526,-6,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2253,-2,0,725,-8,0,0 +2013,5,21,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1555,19,1,1650,4,0,0 +2013,10,30,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,0,0,945,-2,0,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1520,11,0,1615,9,0,0 +2013,10,13,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,-6,0,1201,-10,0,0 +2013,4,4,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,19,1,2100,22,1,0 +2013,9,23,1,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1510,-3,0,1750,-32,0,0 +2013,6,19,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-4,0,2125,4,0,0 +2013,9,29,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-5,0,1215,-9,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-2,0,1245,-13,0,0 +2013,7,11,4,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,112,1,735,116,1,0 +2013,10,19,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1210,-10,0,1328,-5,0,0 +2013,10,4,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1220,22,1,1405,17,1,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,-2,0,1225,-7,0,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,10,0,1725,6,0,0 +2013,4,13,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1940,-1,0,2030,-9,0,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1030,1,0,1150,-23,0,0 +2013,6,10,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-3,0,845,4,0,0 +2013,5,1,3,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-6,0,2005,1,0,0 +2013,8,2,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1248,-15,0,0 +2013,10,27,7,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,1025,-6,0,1755,-12,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1405,32,1,1759,13,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,730,-1,0,1025,-14,0,0 +2013,4,25,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,44,1,818,54,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2145,52,1,2338,45,1,0 +2013,5,22,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-2,0,1011,-19,0,0 +2013,9,22,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1752,-7,0,2005,-13,0,0 +2013,4,29,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,0,0,2025,4,0,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1240,-7,0,1811,-14,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,-1,0,1755,-9,0,0 +2013,7,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1205,-5,0,1249,2,0,0 +2013,7,2,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1356,1,0,2003,2,0,0 +2013,4,5,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,-3,0,1051,-20,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1625,1,0,1735,-15,0,0 +2013,7,11,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-5,0,1040,-5,0,0 +2013,6,24,1,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,700,-1,0,905,-6,0,0 +2013,7,26,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,610,-4,0,730,-13,0,0 +2013,4,5,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1700,-5,0,1752,-2,0,0 +2013,6,3,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,92,1,1803,93,1,0 +2013,6,7,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-1,0,1016,10,0,0 +2013,9,19,4,9E,10792,Buffalo Niagara International,Buffalo,NY,12953,LaGuardia,New York,NY,600,-9,0,722,2,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,-2,0,1547,-3,0,0 +2013,4,22,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,1955,-11,0,0 +2013,7,18,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1936,55,1,2120,39,1,0 +2013,6,12,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,950,-3,0,1050,-10,0,0 +2013,4,25,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-1,0,1650,-7,0,0 +2013,7,24,3,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1150,-6,0,1443,13,0,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,630,-2,0,810,-12,0,0 +2013,9,13,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,829,-3,0,1051,-19,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1713,14,0,2338,10,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,918,-12,0,0 +2013,7,12,5,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,600,-6,0,1409,-1,0,0 +2013,6,14,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1840,17,1,1900,18,1,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,634,-5,0,748,-27,0,0 +2013,7,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1745,6,0,1933,8,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,655,-9,0,1016,-15,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,844,-1,0,1041,-7,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,3,0,2035,-3,0,0 +2013,9,17,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,0,0,805,5,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1015,-5,0,1230,-19,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,902,-7,0,1606,-20,0,0 +2013,7,15,1,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1113,14,0,1227,14,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1210,58,1,1315,57,1,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1258,-1,0,1820,-23,0,0 +2013,10,29,2,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-13,0,1120,-5,0,0 +2013,9,3,2,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-5,0,820,-15,0,0 +2013,7,20,6,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,620,-4,0,750,-8,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1510,11,0,1755,-5,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,4,0,1245,-13,0,0 +2013,5,23,4,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,349,1,2028,338,1,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,815,10,0,1110,2,0,0 +2013,10,29,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,755,-2,0,915,-3,0,0 +2013,9,6,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1300,-7,0,1505,-14,0,0 +2013,9,29,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,743,-7,0,824,-15,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,820,-2,0,945,-5,0,0 +2013,9,7,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1002,8,0,0 +2013,9,21,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,739,-15,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,31,1,1030,30,1,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,745,7,0,850,-3,0,0 +2013,7,12,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-3,0,1126,-7,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1645,6,0,2000,-3,0,0 +2013,5,13,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,12,0,1615,2,0,0 +2013,8,9,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1025,0,,1153,0,1,1 +2013,10,25,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1924,-6,0,2031,-7,0,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2321,-4,0,310,-5,0,0 +2013,6,28,5,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1850,11,0,2110,-7,0,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1950,-5,0,2100,-5,0,0 +2013,8,30,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1300,0,0,1434,-24,0,0 +2013,6,15,6,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-1,0,840,-10,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1445,-9,0,1628,-26,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2148,4,0,2355,-4,0,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1730,7,0,1845,-10,0,0 +2013,4,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,645,-2,0,745,-5,0,0 +2013,4,5,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,46,1,1505,33,1,0 +2013,7,7,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-9,0,1211,-7,0,0 +2013,10,31,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1653,-2,0,1837,-6,0,0 +2013,7,14,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2020,-6,0,2341,-15,0,0 +2013,7,15,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1742,-7,0,1846,2,0,0 +2013,5,19,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1621,-6,0,1903,-7,0,0 +2013,10,6,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-8,0,1918,-7,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,46,1,2305,31,1,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1420,63,1,2205,48,1,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,950,59,1,1105,50,1,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-4,0,1555,-10,0,0 +2013,7,4,4,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1250,-4,0,2108,-19,0,0 +2013,7,3,3,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-2,0,1535,4,0,0 +2013,10,3,4,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,905,-8,0,1150,-11,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1420,-2,0,1606,-11,0,0 +2013,9,23,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1713,-8,0,1840,-10,0,0 +2013,5,12,7,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1125,13,0,1630,39,1,0 +2013,4,10,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,-2,0,1635,-5,0,0 +2013,6,30,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2051,-7,0,0 +2013,5,13,1,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-5,0,851,-16,0,0 +2013,9,13,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1000,4,0,1100,18,1,0 +2013,7,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-4,0,1415,0,0,0 +2013,6,1,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-5,0,810,-10,0,0 +2013,6,17,1,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,22,1,2152,16,1,0 +2013,10,9,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-2,0,1305,-7,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1845,-1,0,2117,-6,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,825,10,0,955,7,0,0 +2013,8,29,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,855,8,0,1010,14,0,0 +2013,6,9,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,18,1,1530,17,1,0 +2013,4,16,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,12,0,2315,-7,0,0 +2013,9,5,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1635,-4,0,1740,-11,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1755,65,1,1929,52,1,0 +2013,7,14,7,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,700,-3,0,805,-19,0,0 +2013,9,22,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-2,0,1355,-8,0,0 +2013,9,10,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1919,-7,0,2119,-27,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1733,54,1,1905,57,1,0 +2013,4,7,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-4,0,857,-10,0,0 +2013,5,1,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,-1,0,1850,-8,0,0 +2013,6,29,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,3,0,1220,7,0,0 +2013,4,9,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1300,-4,0,1505,-4,0,0 +2013,8,30,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-2,0,1405,-10,0,0 +2013,5,29,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1225,-4,0,1313,3,0,0 +2013,9,3,2,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,313,1,1620,306,1,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,804,-4,0,1019,23,1,0 +2013,9,25,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1436,4,0,1808,-20,0,0 +2013,7,25,4,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-2,0,1210,-9,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1810,-2,0,2020,-5,0,0 +2013,7,25,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,950,1,0,1105,-4,0,0 +2013,5,14,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,656,-9,0,0 +2013,9,17,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,936,-2,0,0 +2013,5,8,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,85,1,909,89,1,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-6,0,1625,-11,0,0 +2013,9,15,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,835,-10,0,945,8,0,0 +2013,6,1,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1815,1,0,1940,-7,0,0 +2013,6,14,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,630,-4,0,800,-15,0,0 +2013,7,17,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1726,15,1,2006,22,1,0 +2013,5,4,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,745,-1,0,830,-17,0,0 +2013,8,17,6,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,735,-14,0,1600,-18,0,0 +2013,8,5,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1419,-8,0,1559,14,0,0 +2013,8,3,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-7,0,935,-3,0,0 +2013,10,18,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,610,-3,0,753,-19,0,0 +2013,6,21,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1748,-2,0,1858,-3,0,0 +2013,10,26,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,2,0,1315,-10,0,0 +2013,6,8,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1845,-8,0,2029,-33,0,0 +2013,5,4,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2111,-5,0,526,-3,0,0 +2013,9,1,7,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,820,-9,0,1211,-9,0,0 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,948,-3,0,1512,-13,0,0 +2013,9,20,5,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-12,0,1315,-19,0,0 +2013,4,28,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1210,-1,0,1515,-13,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,102,1,2122,87,1,0 +2013,9,9,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1637,-7,0,1930,-7,0,0 +2013,4,15,1,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,611,-10,0,912,-16,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-2,0,1824,-7,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2012,23,1,2330,7,0,0 +2013,7,19,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,900,-3,0,1140,6,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1430,1,0,1740,0,1,1 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1010,17,1,1217,7,0,0 +2013,5,10,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,12,0,1120,16,1,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1506,2,0,1743,-26,0,0 +2013,6,5,3,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1358,76,1,1413,76,1,0 +2013,4,2,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,625,-2,0,735,-3,0,0 +2013,9,13,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1104,1,0,1230,2,0,0 +2013,7,9,2,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,940,-17,0,0 +2013,8,19,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-1,0,1155,-3,0,0 +2013,10,20,7,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,-7,0,1531,4,0,0 +2013,4,2,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1421,11,0,1713,25,1,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,730,-6,0,908,24,1,0 +2013,5,21,2,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,834,-3,0,1018,22,1,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1255,125,1,1402,139,1,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,739,-4,0,1100,-4,0,0 +2013,4,30,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-2,0,2122,-11,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,835,-3,0,1235,4,0,0 +2013,7,27,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1320,26,1,1925,11,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1205,-2,0,1310,-3,0,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,818,-11,0,1100,9,0,0 +2013,6,28,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-2,0,940,11,0,0 +2013,6,13,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1758,21,1,1927,53,1,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,615,6,0,1225,-6,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1124,-4,0,1218,-20,0,0 +2013,10,21,1,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,830,-12,0,1125,-8,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,-2,0,1000,-13,0,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1455,46,1,1825,40,1,0 +2013,7,21,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,4,0,1353,3,0,0 +2013,9,8,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1345,10,0,1425,2,0,0 +2013,4,20,6,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,-6,0,2359,-30,0,0 +2013,10,1,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,-6,0,2157,-6,0,0 +2013,10,6,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2025,31,1,2145,28,1,0 +2013,9,14,6,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,616,-4,0,738,-15,0,0 +2013,9,8,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1438,18,1,1619,13,0,0 +2013,4,28,7,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,617,-2,0,750,-3,0,0 +2013,4,19,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1155,-6,0,1335,-13,0,0 +2013,5,2,4,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1510,43,1,655,64,1,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,810,0,0,920,-10,0,0 +2013,4,21,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1646,12,0,1900,12,0,0 +2013,9,10,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,732,-8,0,853,-18,0,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1442,-2,0,1723,-21,0,0 +2013,6,11,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1146,-12,0,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-4,0,1841,-9,0,0 +2013,8,20,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,0,0,900,-3,0,0 +2013,9,26,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1755,-3,0,1934,-23,0,0 +2013,5,13,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1224,3,0,1522,-28,0,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,-1,0,1033,-8,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1525,-2,0,1740,-8,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1636,6,0,1923,-13,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,22,1,2110,10,0,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2155,-5,0,27,-15,0,0 +2013,4,26,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,806,13,0,0 +2013,4,17,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,15,1,1023,11,0,0 +2013,5,21,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,5,0,612,-3,0,0 +2013,5,24,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1150,-2,0,1430,-6,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1808,-2,0,2036,-35,0,0 +2013,7,22,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,650,3,0,730,-5,0,0 +2013,10,23,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,722,-4,0,0 +2013,5,17,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,0,0,758,-14,0,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,4,0,2003,-6,0,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1835,54,1,1930,47,1,0 +2013,8,17,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1937,-2,0,2114,-4,0,0 +2013,9,24,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-6,0,1329,-15,0,0 +2013,5,6,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-3,0,1438,-4,0,0 +2013,8,9,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1615,-5,0,1800,-5,0,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1020,31,1,1345,26,1,0 +2013,9,27,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,-3,0,1625,-13,0,0 +2013,8,26,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1444,8,0,1742,25,1,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,0,0,2035,-13,0,0 +2013,6,18,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-14,0,1407,-1,0,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,817,-9,0,1140,-22,0,0 +2013,10,4,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1545,4,0,1701,10,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,855,16,1,1145,11,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1555,0,0,1830,-4,0,0 +2013,4,16,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,949,-8,0,1209,-23,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1122,-6,0,1258,-7,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2007,-2,0,2136,-2,0,0 +2013,6,11,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,20,-11,0,732,-18,0,0 +2013,8,5,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1015,5,0,1135,4,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1245,29,1,1500,27,1,0 +2013,6,10,1,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1010,2,0,1245,-17,0,0 +2013,8,27,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1340,-11,0,1525,-13,0,0 +2013,8,21,3,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1945,-6,0,2038,-5,0,0 +2013,8,2,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,-3,0,955,-4,0,0 +2013,7,1,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-2,0,2240,-2,0,0 +2013,9,20,5,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,853,-6,0,1055,-11,0,0 +2013,8,2,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-1,0,1630,6,0,0 +2013,7,15,1,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1412,0,0,1632,-16,0,0 +2013,9,6,5,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,959,-10,0,1315,-15,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,610,-1,0,835,-1,0,0 +2013,6,6,4,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-10,0,1540,-17,0,0 +2013,7,18,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,2,0,1925,-16,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2040,1,0,2152,-13,0,0 +2013,5,8,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1704,2,0,2227,13,0,0 +2013,8,20,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1645,9,0,1910,10,0,0 +2013,7,25,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1515,39,1,1837,24,1,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2025,-5,0,2137,3,0,0 +2013,10,20,7,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,915,59,1,1005,54,1,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,14,0,1720,4,0,0 +2013,7,26,5,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,46,1,2010,30,1,0 +2013,4,8,1,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,645,-3,0,945,-9,0,0 +2013,6,25,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1007,-3,0,1345,-14,0,0 +2013,10,2,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,2,0,1345,-7,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,925,0,0,1036,-18,0,0 +2013,5,9,4,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,29,1,2235,27,1,0 +2013,9,12,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-6,0,944,0,0,0 +2013,7,18,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-12,0,1414,-29,0,0 +2013,4,12,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2037,76,1,2200,80,1,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,2130,1,0,2335,-5,0,0 +2013,8,12,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,45,1,1622,39,1,0 +2013,5,18,6,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,3,0,1125,-2,0,0 +2013,6,20,4,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-6,0,909,-23,0,0 +2013,7,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,-4,0,1815,-13,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,710,-1,0,1230,-11,0,0 +2013,5,12,7,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1910,56,1,2050,52,1,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1629,-6,0,1919,-43,0,0 +2013,4,24,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1450,5,0,1801,-7,0,0 +2013,5,12,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1955,0,0,2210,-9,0,0 +2013,5,19,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-4,0,1807,9,0,0 +2013,4,11,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-4,0,1150,6,0,0 +2013,5,14,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,-1,0,1710,-14,0,0 +2013,10,14,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1255,0,0,1610,-6,0,0 +2013,7,3,3,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1556,-8,0,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-11,0,1607,-10,0,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1256,0,0,1521,25,1,0 +2013,7,30,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1228,-7,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1930,-2,0,2105,-6,0,0 +2013,9,11,3,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1015,-7,0,1123,-11,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1810,6,0,1915,-5,0,0 +2013,4,6,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,-2,0,815,-4,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,6,0,1040,22,1,0 +2013,9,26,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-7,0,959,-14,0,0 +2013,4,2,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,820,0,0,956,10,0,0 +2013,9,15,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1120,0,0,1320,-13,0,0 +2013,7,17,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,11,0,1545,18,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,-1,0,1605,-12,0,0 +2013,9,28,6,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-2,0,1250,4,0,0 +2013,6,5,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2013,-4,0,2030,-10,0,0 +2013,8,15,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,56,1,1315,47,1,0 +2013,6,12,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-3,0,811,-1,0,0 +2013,5,19,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,5,0,1135,0,0,0 +2013,6,15,6,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2009,32,1,2243,49,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1140,10,0,1359,-4,0,0 +2013,10,21,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-7,0,1545,-11,0,0 +2013,5,30,4,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,1025,-7,0,1810,-18,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,0,0,1255,4,0,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1450,5,0,1615,-1,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,3,0,2035,-10,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1933,2,0,2119,9,0,0 +2013,9,10,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1558,-7,0,0 +2013,5,25,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1640,-2,0,1915,-13,0,0 +2013,6,26,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1440,126,1,1610,111,1,0 +2013,10,22,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-3,0,1500,-13,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1110,-3,0,1550,-19,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,-3,0,2345,8,0,0 +2013,5,24,5,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-1,0,1500,-20,0,0 +2013,9,29,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1515,0,0,2040,22,1,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1910,10,0,2120,3,0,0 +2013,5,28,2,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,800,5,0,1050,-18,0,0 +2013,7,8,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,-4,0,826,-8,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1635,5,0,2019,-5,0,0 +2013,9,2,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1220,9,0,1353,0,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1020,-1,0,1140,-3,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1425,4,0,2000,5,0,0 +2013,6,21,5,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-11,0,1349,-17,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,-1,0,1910,6,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1142,-2,0,1307,-4,0,0 +2013,4,19,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,845,0,0,950,-7,0,0 +2013,8,28,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,1,0,1255,-5,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,4,0,1615,-7,0,0 +2013,7,20,6,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1616,-12,0,1837,-24,0,0 +2013,4,12,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,2125,12,0,2315,2,0,0 +2013,7,27,6,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,905,3,0,1019,-13,0,0 +2013,8,12,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,810,-1,0,835,20,1,0 +2013,4,16,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,-4,0,1457,-29,0,0 +2013,7,13,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,0,0,1820,-2,0,0 +2013,10,19,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1005,0,0,1201,-6,0,0 +2013,7,21,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,5,0,2235,-2,0,0 +2013,6,5,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,848,-1,0,1142,10,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1840,6,0,2245,-6,0,0 +2013,8,7,3,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1710,-3,0,1925,-4,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,953,-3,0,1309,-3,0,0 +2013,7,2,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,902,-4,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,3,0,1110,4,0,0 +2013,9,22,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1559,-4,0,1845,16,1,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1840,5,0,2052,-5,0,0 +2013,9,26,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1803,-5,0,1852,-4,0,0 +2013,9,21,6,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,629,-6,0,929,-24,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1750,-7,0,1855,-18,0,0 +2013,9,5,4,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1242,1,0,1515,-3,0,0 +2013,7,30,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,-5,0,2108,16,1,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,949,-1,0,1147,-12,0,0 +2013,4,27,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,831,-6,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1820,18,1,2300,-1,0,0 +2013,6,9,7,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1327,27,1,1545,4,0,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,23,1,10,10,0,0 +2013,9,23,1,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1327,0,0,1511,10,0,0 +2013,7,17,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1620,-8,0,1728,-25,0,0 +2013,6,6,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,7,0,1138,-8,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1415,0,0,1840,13,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1443,263,1,1800,229,1,0 +2013,9,9,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,6,0,1333,-11,0,0 +2013,5,6,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,915,-4,0,1037,-18,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1755,-2,0,2030,10,0,0 +2013,4,23,2,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,-4,0,2255,-1,0,0 +2013,9,6,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,855,-5,0,1110,-3,0,0 +2013,5,3,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,803,-3,0,1405,17,1,0 +2013,4,28,7,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,2035,-7,0,2354,-17,0,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,630,7,0,800,2,0,0 +2013,6,21,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,825,-22,0,0 +2013,5,14,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,710,-15,0,0 +2013,9,8,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1816,42,1,1930,44,1,0 +2013,9,7,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,810,-4,0,1110,-9,0,0 +2013,10,24,4,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,805,-4,0,0 +2013,6,10,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1825,141,1,2002,128,1,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,17,1,1210,15,1,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14570,Reno/Tahoe International,Reno,NV,905,-1,0,955,-5,0,0 +2013,6,14,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-2,0,1107,-7,0,0 +2013,8,10,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1715,13,0,1930,9,0,0 +2013,4,27,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1015,3,0,1305,8,0,0 +2013,6,5,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1335,-2,0,1620,-16,0,0 +2013,6,17,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,142,1,2115,121,1,0 +2013,6,16,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,849,-5,0,926,-1,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,-2,0,1630,-10,0,0 +2013,10,24,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1352,13,0,1639,-3,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,0,0,1702,0,0,0 +2013,7,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1545,-1,0,0 +2013,9,1,7,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,-6,0,1605,-30,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,925,1,0,1135,-4,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1930,-6,0,2044,-17,0,0 +2013,5,2,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1055,1,0,1145,6,0,0 +2013,10,21,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,905,25,1,1505,8,0,0 +2013,4,17,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,635,-3,0,739,-2,0,0 +2013,8,28,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,720,-8,0,1019,17,1,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-1,0,1140,1,0,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,3,0,1740,0,0,0 +2013,5,23,4,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1435,148,1,2240,152,1,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1225,-2,0,1350,3,0,0 +2013,9,5,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1839,-2,0,2232,-12,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,923,-1,0,1534,-5,0,0 +2013,7,10,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2110,375,1,2243,354,1,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,-4,0,2139,-11,0,0 +2013,5,22,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2001,-4,0,2136,18,1,0 +2013,10,25,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-7,0,2127,-19,0,0 +2013,7,31,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1625,-5,0,1720,-19,0,0 +2013,8,18,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-1,0,1126,-4,0,0 +2013,6,20,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2135,-7,0,7,-1,0,0 +2013,4,19,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-4,0,949,-4,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,58,1,1550,54,1,0 +2013,5,24,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1608,75,1,1815,91,1,0 +2013,6,3,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1836,157,1,1940,150,1,0 +2013,6,9,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,728,-3,0,1520,-18,0,0 +2013,10,10,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1740,-10,0,1900,-1,0,0 +2013,6,5,3,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,1,0,1630,7,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1310,-2,0,1415,-12,0,0 +2013,6,12,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1400,11,0,1735,-9,0,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,7,0,1735,-8,0,0 +2013,10,1,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1527,-3,0,1653,0,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2045,8,0,2307,10,0,0 +2013,5,29,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,820,-3,0,920,-14,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1616,0,0,1903,5,0,0 +2013,7,1,1,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,-1,0,2150,-10,0,0 +2013,7,6,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-9,0,1155,-16,0,0 +2013,7,14,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1025,-2,0,1120,-18,0,0 +2013,4,1,1,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,720,1,0,810,-2,0,0 +2013,5,17,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,640,5,0,805,10,0,0 +2013,9,23,1,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1755,63,1,2237,65,1,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1426,144,1,1729,134,1,0 +2013,4,4,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1149,3,0,1300,6,0,0 +2013,10,12,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,37,1,2125,13,0,0 +2013,4,9,2,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,0,0,2230,-14,0,0 +2013,10,1,2,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-3,0,2100,11,0,0 +2013,8,31,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,644,-2,0,855,-32,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,715,-6,0,810,-16,0,0 +2013,7,23,2,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1239,-8,0,1734,-1,0,0 +2013,8,22,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,650,-5,0,810,-21,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1155,1,0,1735,-19,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1932,108,1,2244,102,1,0 +2013,9,16,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1800,-6,0,2004,-17,0,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,9,0,1026,-9,0,0 +2013,8,31,6,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,820,-3,0,1230,-10,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1152,3,0,1457,5,0,0 +2013,5,9,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-5,0,2227,3,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,-3,0,2255,-11,0,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1000,-7,0,1408,-1,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,610,-2,0,700,-9,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,0,0,1515,-12,0,0 +2013,9,22,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1333,-8,0,1726,-18,0,0 +2013,5,2,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,2,0,1240,-2,0,0 +2013,7,10,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,53,1,1240,85,1,0 +2013,4,26,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1132,-1,0,1335,3,0,0 +2013,5,29,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,644,1,0,755,-5,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-5,0,947,-22,0,0 +2013,7,19,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1206,25,1,1412,19,1,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,727,-3,0,900,20,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,-3,0,1115,9,0,0 +2013,5,28,2,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,0,0,1746,-9,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2030,0,0,2056,-9,0,0 +2013,10,18,5,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-9,0,1024,-2,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2034,19,1,454,35,1,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,825,20,1,1105,52,1,0 +2013,5,21,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1602,-5,0,1837,39,1,0 +2013,4,1,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,806,-13,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,740,118,1,1040,100,1,0 +2013,4,15,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,841,-6,0,1107,-17,0,0 +2013,6,23,7,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1234,-5,0,1541,-15,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1849,-2,0,2037,-7,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,945,-3,0,1250,-6,0,0 +2013,9,7,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,0,0,1334,-1,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1607,2,0,2200,-9,0,0 +2013,10,6,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-1,0,1729,7,0,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,-11,0,1833,-17,0,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-4,0,1035,18,1,0 +2013,8,9,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1205,2,0,1320,-12,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2015,-4,0,2225,-10,0,0 +2013,6,17,1,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,910,-4,0,1048,-8,0,0 +2013,10,6,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1133,-2,0,1349,-26,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,922,70,1,1135,53,1,0 +2013,5,6,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,13,0,1830,5,0,0 +2013,4,16,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1251,-3,0,2115,-36,0,0 +2013,4,10,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,715,72,1,825,105,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,57,1,2300,78,1,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,-2,0,30,9,0,0 +2013,10,6,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1959,1,0,2201,11,0,0 +2013,9,13,5,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1730,24,1,2253,39,1,0 +2013,4,25,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,535,-6,0,730,-31,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1625,13,0,36,3,0,0 +2013,5,6,1,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,0,0,1047,-13,0,0 +2013,7,9,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-9,0,812,-4,0,0 +2013,6,23,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,700,-2,0,750,-4,0,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,840,6,0,1018,14,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1240,42,1,1447,27,1,0 +2013,7,31,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,24,1,1625,28,1,0 +2013,6,10,1,DL,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-5,0,1831,-1,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,855,-6,0,1005,-1,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1626,0,0,1815,2,0,0 +2013,8,14,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1410,19,1,1820,29,1,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1355,27,1,1643,12,0,0 +2013,6,22,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,18,1,1710,8,0,0 +2013,6,11,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,-6,0,2105,-7,0,0 +2013,4,29,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,645,-8,0,1010,-7,0,0 +2013,10,18,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-3,0,2025,-3,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,0,0,2150,-8,0,0 +2013,5,13,1,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,631,-6,0,913,-5,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,6,0,957,6,0,0 +2013,8,31,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1544,-8,0,1711,-15,0,0 +2013,10,5,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2015,34,1,2144,22,1,0 +2013,9,16,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2010,3,0,2230,3,0,0 +2013,8,20,2,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-8,0,1632,-9,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2210,80,1,5,76,1,0 +2013,10,13,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2245,-2,0,635,-28,0,0 +2013,8,14,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,833,-4,0,932,0,0,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1700,4,0,1930,4,0,0 +2013,10,31,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,735,-3,0,1035,-6,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1115,17,1,1210,20,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2120,5,0,2300,-4,0,0 +2013,8,13,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1030,27,1,1400,42,1,0 +2013,6,13,4,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1705,33,1,2004,60,1,0 +2013,5,11,6,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1845,10,0,2125,2,0,0 +2013,7,27,6,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,934,-9,0,0 +2013,10,10,4,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-9,0,1254,-11,0,0 +2013,5,19,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-9,0,1030,-10,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,4,0,345,-7,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1135,-4,0,1259,-17,0,0 +2013,5,26,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1845,0,0,2026,-1,0,0 +2013,8,16,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1815,-4,0,2151,-24,0,0 +2013,9,22,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1759,-2,0,2024,-8,0,0 +2013,5,21,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1125,-2,0,2010,-24,0,0 +2013,6,21,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-5,0,659,3,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,18,1,922,17,1,0 +2013,8,22,4,WN,11278,Ronald Reagan Washington National,Washington,DC,12191,William P Hobby,Houston,TX,655,-2,0,915,-23,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1345,24,1,1540,16,1,0 +2013,10,18,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2123,67,1,555,36,1,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,4,0,1025,35,1,0 +2013,4,4,4,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1935,15,1,2102,-3,0,0 +2013,7,31,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-8,0,1224,-10,0,0 +2013,5,6,1,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,85,1,2130,77,1,0 +2013,9,24,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-6,0,1817,-5,0,0 +2013,8,22,4,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-2,0,1023,-10,0,0 +2013,6,30,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,938,-5,0,1116,-4,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,2,0,1957,15,1,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,47,1,1623,37,1,0 +2013,10,10,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,5,0,1310,23,1,0 +2013,5,28,2,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1856,8,0,2118,-5,0,0 +2013,10,17,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1220,1,0,1340,4,0,0 +2013,6,23,7,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,530,-6,0,902,-20,0,0 +2013,7,15,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1332,0,0,1438,-7,0,0 +2013,5,17,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1545,6,0,1633,10,0,0 +2013,9,22,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1926,6,0,2053,11,0,0 +2013,10,2,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1944,-3,0,2100,-18,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-4,0,1448,-21,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1045,-3,0,1210,-9,0,0 +2013,9,3,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1610,2,0,1845,-1,0,0 +2013,5,8,3,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-5,0,1314,-20,0,0 +2013,9,8,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1510,9,0,1715,-22,0,0 +2013,4,10,3,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1715,-2,0,2008,-19,0,0 +2013,6,20,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1128,-6,0,1416,-5,0,0 +2013,10,20,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1739,-5,0,2029,-18,0,0 +2013,6,17,1,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1420,7,0,2235,17,1,0 +2013,10,14,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1020,-5,0,1135,-12,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1100,-7,0,1223,-15,0,0 +2013,7,3,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,648,-4,0,816,-5,0,0 +2013,10,26,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,838,-9,0,1030,-4,0,0 +2013,8,16,5,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,825,-7,0,1130,-18,0,0 +2013,6,28,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,34,1,1650,24,1,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1430,59,1,1555,44,1,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,610,-2,0,820,-7,0,0 +2013,9,19,4,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1705,32,1,1850,33,1,0 +2013,8,26,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1708,-4,0,2319,9,0,0 +2013,6,8,6,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,920,-3,0,1055,-19,0,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2000,4,0,2125,0,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1227,129,1,1459,124,1,0 +2013,9,24,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1110,1,0,1220,1,0,0 +2013,6,8,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,0,0,1505,4,0,0 +2013,7,9,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-15,0,925,-17,0,0 +2013,5,26,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1350,3,0,1535,-15,0,0 +2013,5,4,6,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1358,1,0,1704,-21,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1105,106,1,1430,106,1,0 +2013,6,30,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-9,0,1040,2,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2135,-1,0,2255,-6,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,901,137,1,1343,133,1,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1115,0,0,1702,-16,0,0 +2013,7,10,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1120,33,1,1315,20,1,0 +2013,9,8,7,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1918,-7,0,2159,5,0,0 +2013,8,29,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1115,53,1,1240,46,1,0 +2013,6,20,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,724,-7,0,1050,-11,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,905,0,0,1240,-9,0,0 +2013,10,28,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1400,4,0,1435,3,0,0 +2013,5,5,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1735,58,1,1920,40,1,0 +2013,6,7,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,0,0,2030,-5,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,815,2,0,1000,0,0,0 +2013,5,26,7,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1010,-3,0,1135,-4,0,0 +2013,7,5,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,954,-10,0,0 +2013,6,10,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,4,0,1257,-6,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,0,0,2007,-15,0,0 +2013,10,7,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1855,-1,0,2100,2,0,0 +2013,7,12,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,-8,0,1240,-20,0,0 +2013,4,25,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,605,-4,0,755,41,1,0 +2013,4,20,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,710,-2,0,1000,0,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,-2,0,1830,-6,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-8,0,1414,-10,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1305,-3,0,1440,-10,0,0 +2013,7,14,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,0,,1635,0,1,1 +2013,4,22,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1719,23,1,1915,76,1,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1930,0,,2229,0,1,1 +2013,5,16,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,9,0,1345,9,0,0 +2013,7,24,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1429,16,1,1540,13,0,0 +2013,8,26,1,FL,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,-4,0,950,0,0,0 +2013,7,27,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1945,19,1,2030,17,1,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1546,-4,0,1731,-12,0,0 +2013,9,9,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1540,8,0,1655,13,0,0 +2013,7,29,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,1115,-9,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,920,12,0,1020,12,0,0 +2013,8,24,6,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1809,-1,0,2100,-1,0,0 +2013,10,3,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1210,0,0,1320,-18,0,0 +2013,10,8,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,4,0,2117,6,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,14,0,35,7,0,0 +2013,10,15,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1532,-5,0,1718,-17,0,0 +2013,10,19,6,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1105,26,1,1248,39,1,0 +2013,5,14,2,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-5,0,1620,-5,0,0 +2013,7,30,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,2,0,1225,-10,0,0 +2013,6,14,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-1,0,1602,-1,0,0 +2013,7,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,12,0,1740,9,0,0 +2013,10,25,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-7,0,2349,-13,0,0 +2013,7,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,958,-6,0,1323,0,0,0 +2013,6,10,1,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1415,-6,0,1544,6,0,0 +2013,4,29,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1425,9,0,1708,1,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,-1,0,1105,-3,0,0 +2013,6,21,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,700,7,0,802,-9,0,0 +2013,8,20,2,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1050,2,0,1130,-5,0,0 +2013,6,15,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,10,0,2203,1,0,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,8,0,1255,-4,0,0 +2013,5,2,4,EV,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1400,5,0,1907,-1,0,0 +2013,8,8,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,0,0,2115,9,0,0 +2013,6,14,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1526,-3,0,1825,-8,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,189,1,1910,184,1,0 +2013,8,19,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1200,-2,0,1310,5,0,0 +2013,6,7,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-7,0,1004,-5,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1830,11,0,2136,22,1,0 +2013,8,7,3,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1000,-1,0,1050,1,0,0 +2013,5,21,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1350,3,0,1515,14,0,0 +2013,8,4,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-6,0,1430,2,0,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1710,-5,0,1845,-15,0,0 +2013,6,25,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,3,0,834,-2,0,0 +2013,5,28,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1155,-3,0,1449,-7,0,0 +2013,10,11,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,42,1,2129,91,1,0 +2013,6,19,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,63,1,1515,56,1,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-1,0,1343,-9,0,0 +2013,9,25,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1159,-8,0,1524,1,0,0 +2013,8,28,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-4,0,2150,-12,0,0 +2013,5,9,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,-4,0,1650,-19,0,0 +2013,6,2,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,0,0,1414,0,0,0 +2013,4,9,2,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,-8,0,1337,-12,0,0 +2013,4,16,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,605,-4,0,815,-12,0,0 +2013,6,10,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1352,0,0,1511,0,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1005,9,0,1115,-5,0,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2145,98,1,2255,79,1,0 +2013,10,8,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,800,0,0,850,13,0,0 +2013,10,23,3,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-6,0,1053,-20,0,0 +2013,5,18,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1340,-5,0,1645,-13,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,825,-1,0,1155,-9,0,0 +2013,7,17,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-1,0,2225,3,0,0 +2013,6,11,2,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-4,0,858,-10,0,0 +2013,10,17,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-5,0,1910,-6,0,0 +2013,10,2,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,545,-3,0,705,-25,0,0 +2013,8,27,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,15,1,2003,-6,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1808,-3,0,2007,-21,0,0 +2013,7,18,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,4,0,2115,26,1,0 +2013,8,9,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,19,1,1835,22,1,0 +2013,9,25,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2000,4,0,2005,7,0,0 +2013,4,21,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,13,0,1316,5,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1835,3,0,2215,-17,0,0 +2013,9,12,4,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,48,1,1844,51,1,0 +2013,9,5,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,-6,0,1943,-15,0,0 +2013,6,7,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,29,1,2305,28,1,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1840,50,1,2310,41,1,0 +2013,5,27,1,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-7,0,705,-14,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1030,-4,0,1107,2,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1808,9,0,2027,27,1,0 +2013,7,20,6,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,855,1,0,1405,25,1,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1320,-1,0,1545,15,1,0 +2013,4,24,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,0,0,922,6,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,15,1,2203,11,0,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1455,-5,0,1957,-19,0,0 +2013,4,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,10,0,2120,10,0,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,12,0,1400,11,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1850,23,1,1949,14,0,0 +2013,4,11,4,EV,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1235,96,1,1539,84,1,0 +2013,6,23,7,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1455,28,1,1804,31,1,0 +2013,5,2,4,9E,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,805,8,0,1030,2,0,0 +2013,5,30,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,745,0,0,1025,-2,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,750,2,0,920,-15,0,0 +2013,7,21,7,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,7,0,2019,4,0,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1629,-3,0,1820,-13,0,0 +2013,8,23,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,835,11,0,853,7,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1135,-5,0,1355,-5,0,0 +2013,6,6,4,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1745,-5,0,1925,-17,0,0 +2013,10,21,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,820,-1,0,945,-1,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,-2,0,1047,-8,0,0 +2013,4,7,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-4,0,1300,-10,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1546,-2,0,1720,37,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,12,0,1245,-7,0,0 +2013,6,8,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,-8,0,1732,-15,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1245,19,1,1455,8,0,0 +2013,4,12,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,43,1,1524,24,1,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1752,3,0,2115,-12,0,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1706,-2,0,2111,1,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1150,-1,0,1310,-12,0,0 +2013,8,5,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,10,0,1915,15,1,0 +2013,8,3,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,859,-7,0,0 +2013,7,24,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,730,-4,0,820,-5,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,0,0,1458,-14,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-3,0,2200,7,0,0 +2013,8,1,4,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,16,1,1245,69,1,0 +2013,5,24,5,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,720,46,1,935,31,1,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,10,0,2303,1,0,0 +2013,7,17,3,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-7,0,1510,-16,0,0 +2013,9,19,4,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-6,0,1600,-8,0,0 +2013,7,8,1,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,650,-1,0,808,-12,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,659,-4,0,833,-11,0,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,917,-7,0,1716,-34,0,0 +2013,4,18,4,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-3,0,1615,-14,0,0 +2013,4,23,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,855,0,0,910,-5,0,0 +2013,8,21,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,0,0,900,-14,0,0 +2013,10,13,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1005,-6,0,1135,-5,0,0 +2013,9,19,4,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,514,-6,0,626,-9,0,0 +2013,6,11,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1633,-2,0,2352,-19,0,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1123,19,1,1255,18,1,0 +2013,9,6,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1259,-5,0,1522,-7,0,0 +2013,7,27,6,B6,13796,Metropolitan Oakland International,Oakland,CA,10721,Logan International,Boston,MA,2359,32,1,822,28,1,0 +2013,10,11,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-1,0,1401,-1,0,0 +2013,7,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1825,0,0,1925,-6,0,0 +2013,4,22,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,29,1,2114,42,1,0 +2013,6,19,3,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,815,-6,0,1001,-15,0,0 +2013,5,29,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1900,-3,0,2000,-8,0,0 +2013,4,21,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,5,0,1445,-2,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,26,1,1558,13,0,0 +2013,8,19,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1235,6,0,1420,-6,0,0 +2013,5,20,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1520,18,1,1625,9,0,0 +2013,6,1,6,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,615,-5,0,820,2,0,0 +2013,9,20,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1331,-7,0,1840,-7,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,720,-3,0,902,-5,0,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1155,2,0,1455,1,0,0 +2013,7,5,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1156,0,0,1810,-2,0,0 +2013,7,27,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1937,21,1,2114,29,1,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1440,-2,0,1850,-20,0,0 +2013,10,11,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2030,52,1,2145,38,1,0 +2013,6,17,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-4,0,1645,-6,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1054,34,1,1217,13,0,0 +2013,7,27,6,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-3,0,1857,7,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-6,0,940,-6,0,0 +2013,10,27,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,945,-6,0,1230,-13,0,0 +2013,5,27,1,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,2,0,1655,-8,0,0 +2013,5,10,5,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,54,1,1833,45,1,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,24,1,2210,18,1,0 +2013,8,24,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1620,-10,0,1705,-21,0,0 +2013,6,14,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1605,15,1,1720,11,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1159,-2,0,1500,-16,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1350,15,1,1625,3,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-4,0,920,-10,0,0 +2013,10,22,2,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1020,25,1,1220,19,1,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1534,2,0,1728,49,1,0 +2013,8,26,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2040,5,0,2210,-4,0,0 +2013,4,11,4,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1110,-3,0,1305,-8,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-5,0,923,-17,0,0 +2013,5,22,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1410,-10,0,1642,12,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1205,6,0,1650,8,0,0 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1222,-4,0,1243,-18,0,0 +2013,6,15,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1714,14,0,1844,2,0,0 +2013,9,10,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1116,-1,0,1300,-2,0,0 +2013,9,12,4,OO,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1335,-4,0,1503,6,0,0 +2013,5,5,7,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,800,0,0,1050,-10,0,0 +2013,4,30,2,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2009,7,0,2141,-1,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,0,0,1355,-1,0,0 +2013,5,15,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2045,-3,0,2215,-11,0,0 +2013,4,20,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1749,-9,0,2103,-24,0,0 +2013,6,24,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1638,-3,0,1746,73,1,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,17,1,1630,27,1,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1520,39,1,1820,30,1,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,7,0,2049,-1,0,0 +2013,7,10,3,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-2,0,712,2,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1453,12,0,1606,-2,0,0 +2013,7,8,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-1,0,1955,11,0,0 +2013,4,1,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2005,55,1,2215,52,1,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1435,2,0,1632,33,1,0 +2013,5,1,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1300,-12,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1050,5,0,1410,-8,0,0 +2013,5,6,1,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1755,2,0,2007,-2,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1505,111,1,1648,106,1,0 +2013,8,27,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,745,9,0,915,-18,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,23,1,1355,25,1,0 +2013,9,30,1,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1200,-2,0,1345,1,0,0 +2013,7,7,7,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1350,1,0,1642,15,1,0 +2013,7,21,7,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,58,1,1520,62,1,0 +2013,5,7,2,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-3,0,950,-2,0,0 +2013,8,11,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1919,-6,0,2100,-9,0,0 +2013,10,21,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,-4,0,1953,-9,0,0 +2013,5,22,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1430,127,1,1635,117,1,0 +2013,6,6,4,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,930,-3,0,1020,-12,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1530,7,0,1707,-21,0,0 +2013,10,25,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-7,0,1743,-22,0,0 +2013,9,28,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,1,0,1517,6,0,0 +2013,8,21,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-9,0,827,1,0,0 +2013,5,2,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,919,-5,0,1044,-28,0,0 +2013,10,15,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1107,-4,0,1216,-17,0,0 +2013,9,10,2,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1728,-4,0,1851,-11,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2205,3,0,2331,-11,0,0 +2013,8,28,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1019,-5,0,0 +2013,8,19,1,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1656,0,,1852,0,1,1 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,0,0,1616,-13,0,0 +2013,10,31,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,820,-2,0,945,-7,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,26,1,1205,36,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,845,-5,0,1100,-13,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1020,58,1,1135,54,1,0 +2013,6,13,4,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,66,1,1853,60,1,0 +2013,5,10,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-1,0,1003,-16,0,0 +2013,10,21,1,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,-14,0,1820,-14,0,0 +2013,7,14,7,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2015,-7,0,2351,-22,0,0 +2013,4,4,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,0,0,1855,-5,0,0 +2013,6,25,2,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1715,6,0,1815,-6,0,0 +2013,4,15,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1345,-4,0,1647,-11,0,0 +2013,5,25,6,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-2,0,1701,39,1,0 +2013,7,10,3,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,29,1,2110,19,1,0 +2013,5,15,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,-9,0,1420,-20,0,0 +2013,10,1,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,-15,0,2115,-27,0,0 +2013,6,1,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2017,-5,0,2117,-23,0,0 +2013,4,28,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1106,-1,0,1307,-10,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1047,-3,0,1900,10,0,0 +2013,4,30,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,10,0,2110,-1,0,0 +2013,6,28,5,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1730,-1,0,1945,-1,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1455,116,1,1732,83,1,0 +2013,4,30,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1859,-7,0,2359,-3,0,0 +2013,6,22,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1855,13,0,2141,38,1,0 +2013,4,8,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1310,4,0,1430,-9,0,0 +2013,7,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1405,1,0,1812,-7,0,0 +2013,4,24,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,841,-11,0,1009,-1,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,-2,0,1907,-17,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,2,0,1010,5,0,0 +2013,5,2,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1916,21,1,2100,-5,0,0 +2013,7,23,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,645,-5,0,926,27,1,0 +2013,6,23,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1715,35,1,1956,12,0,0 +2013,7,22,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,0,,2045,0,1,1 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,-2,0,929,-6,0,0 +2013,5,28,2,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,69,1,1535,56,1,0 +2013,8,10,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,-2,0,1354,7,0,0 +2013,4,16,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2014,-7,0,2225,-13,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1720,5,0,1940,8,0,0 +2013,4,18,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,78,1,902,52,1,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,0,,1328,0,1,1 +2013,8,7,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1735,-1,0,1915,21,1,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1525,0,,1640,0,1,1 +2013,5,1,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1645,19,1,1750,19,1,0 +2013,10,27,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1415,-7,0,2211,-13,0,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1535,20,1,1635,27,1,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1345,1,0,1640,-9,0,0 +2013,6,8,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1056,14,0,1230,-4,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1208,13,0,1452,14,0,0 +2013,6,19,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1436,-9,0,1605,-11,0,0 +2013,7,6,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,712,2,0,906,-20,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,2,0,1930,-2,0,0 +2013,10,17,4,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1225,-3,0,1446,28,1,0 +2013,8,16,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,2,0,2046,-27,0,0 +2013,6,23,7,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,-2,0,1845,-13,0,0 +2013,9,6,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1500,-2,0,1610,-15,0,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1355,-5,0,1510,-3,0,0 +2013,4,12,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,3,0,1341,1,0,0 +2013,10,23,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1820,30,1,2000,50,1,0 +2013,10,27,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1133,9,0,1320,-2,0,0 +2013,5,29,3,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1937,18,1,813,9,0,0 +2013,6,21,5,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1437,-7,0,1829,-10,0,0 +2013,5,8,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1650,1,0,1935,-7,0,0 +2013,6,20,4,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,17,1,1336,18,1,0 +2013,8,9,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2040,96,1,2154,110,1,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,-3,0,1734,5,0,0 +2013,9,10,2,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1525,-6,0,1820,31,1,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,836,-1,0,1201,-8,0,0 +2013,7,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,12,0,1200,8,0,0 +2013,9,11,3,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1823,-6,0,2003,-10,0,0 +2013,6,5,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-12,0,1906,-18,0,0 +2013,10,8,2,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1749,13,0,2004,3,0,0 +2013,8,8,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-6,0,1354,-4,0,0 +2013,10,22,2,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,830,-4,0,1125,2,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1750,0,0,2020,0,0,0 +2013,10,11,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,758,-23,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,955,5,0,1230,-1,0,0 +2013,6,22,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1843,-33,0,0 +2013,7,21,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,16,1,1812,71,1,0 +2013,10,16,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,13,0,1925,13,0,0 +2013,9,10,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-6,0,1102,-8,0,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1357,-6,0,1717,-12,0,0 +2013,6,6,4,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,0,0,1003,4,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1121,-4,0,1305,-16,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,545,0,0,919,-2,0,0 +2013,6,3,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,0,0,1245,-1,0,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1415,-3,0,1520,-8,0,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,78,1,2053,62,1,0 +2013,6,10,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2120,1,0,2302,-1,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1540,-6,0,1720,-9,0,0 +2013,10,2,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,550,-5,0,700,-16,0,0 +2013,4,10,3,FL,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,-3,0,1850,25,1,0 +2013,5,19,7,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2217,-5,0,620,-10,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,949,-5,0,1114,-17,0,0 +2013,8,30,5,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-13,0,1814,-20,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,804,-3,0,1013,-12,0,0 +2013,4,25,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,810,44,1,920,58,1,0 +2013,8,5,1,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-6,0,1012,-13,0,0 +2013,9,13,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1925,3,0,2105,8,0,0 +2013,4,11,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1640,-4,0,2020,4,0,0 +2013,9,6,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,-7,0,2132,-16,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1500,-2,0,1655,-14,0,0 +2013,4,3,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-4,0,1500,-20,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1241,28,1,1516,11,0,0 +2013,5,10,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,847,-3,0,1023,12,0,0 +2013,9,28,6,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,832,-6,0,1110,-32,0,0 +2013,6,9,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1429,12,0,1542,17,1,0 +2013,8,3,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,-3,0,2231,-27,0,0 +2013,7,17,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1215,23,1,1400,15,1,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1205,-1,0,1400,-7,0,0 +2013,10,3,4,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,4,0,1200,-1,0,0 +2013,8,16,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,859,-1,0,1028,18,1,0 +2013,6,30,7,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-7,0,630,-4,0,0 +2013,10,23,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2225,-11,0,700,-11,0,0 +2013,7,13,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-3,0,830,-5,0,0 +2013,4,7,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,935,1,0,1055,-4,0,0 +2013,10,16,3,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1010,-3,0,1542,-33,0,0 +2013,9,28,6,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-4,0,1124,3,0,0 +2013,10,14,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,0,0,1022,-2,0,0 +2013,8,1,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2145,18,1,105,53,1,0 +2013,9,29,7,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-1,0,735,-7,0,0 +2013,8,14,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1055,-2,0,1425,-28,0,0 +2013,10,2,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1600,-2,0,1915,9,0,0 +2013,7,30,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,755,3,0,915,0,0,0 +2013,10,27,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1206,38,1,1306,34,1,0 +2013,6,24,1,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,50,1,2135,39,1,0 +2013,9,30,1,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,925,-4,0,1201,-13,0,0 +2013,8,6,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,44,1,1720,36,1,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,-1,0,1640,8,0,0 +2013,6,2,7,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-3,0,2057,8,0,0 +2013,10,16,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1655,4,0,1840,-13,0,0 +2013,6,18,2,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1654,73,1,2014,66,1,0 +2013,8,24,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,4,0,1955,-13,0,0 +2013,6,15,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,740,-3,0,900,3,0,0 +2013,4,2,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-8,0,1023,-9,0,0 +2013,9,27,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-1,0,1049,-25,0,0 +2013,5,27,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-4,0,1216,-23,0,0 +2013,9,16,1,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1605,-9,0,1842,1,0,0 +2013,7,26,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-8,0,1055,0,0,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1709,3,0,2318,-14,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1745,7,0,2030,-1,0,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2044,-7,0,2223,-25,0,0 +2013,8,25,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-5,0,1300,-9,0,0 +2013,8,15,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-6,0,2047,-13,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,602,-11,0,726,-21,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,-8,0,1535,1,0,0 +2013,8,6,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,5,0,1600,-4,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1000,1,0,1120,-8,0,0 +2013,6,5,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,29,1,1807,16,1,0 +2013,7,24,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2250,-1,0,14,-10,0,0 +2013,7,25,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,700,-9,0,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1645,-4,0,1805,-2,0,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1947,-3,0,2337,-4,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2155,-6,0,5,-18,0,0 +2013,5,3,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1305,-3,0,1455,20,1,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,652,2,0,749,-4,0,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,750,-5,0,1010,-16,0,0 +2013,7,27,6,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1158,-4,0,1440,-1,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1030,5,0,1200,7,0,0 +2013,9,15,7,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1800,0,0,2015,12,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,845,-3,0,1101,-25,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1655,-1,0,2025,5,0,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,710,-2,0,805,-4,0,0 +2013,5,14,2,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-14,0,1510,-45,0,0 +2013,10,1,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1840,1,0,2046,-5,0,0 +2013,8,31,6,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,3,0,807,-4,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,157,1,1729,144,1,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-4,0,1640,6,0,0 +2013,10,14,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1300,-8,0,1505,-19,0,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1015,4,0,1205,-35,0,0 +2013,9,9,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2245,-1,0,447,7,0,0 +2013,4,30,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,600,0,0,715,-5,0,0 +2013,5,27,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,752,-4,0,841,1,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1837,-6,0,1950,-18,0,0 +2013,8,28,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1850,22,1,2059,13,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,950,12,0,1115,9,0,0 +2013,6,27,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-6,0,1939,-13,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1750,186,1,1910,184,1,0 +2013,7,21,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-5,0,1800,-12,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,23,1,1720,61,1,0 +2013,7,14,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,34,1,2050,33,1,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1529,-3,0,1836,-32,0,0 +2013,9,20,5,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1530,204,1,1910,193,1,0 +2013,8,12,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,30,-2,0,814,-29,0,0 +2013,7,3,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,8,0,1855,2,0,0 +2013,7,2,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,750,3,0,930,-3,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1524,-4,0,1655,-6,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1155,-1,0,1430,-15,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,740,-2,0,1101,-4,0,0 +2013,9,20,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,935,-6,0,1054,-13,0,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,-3,0,1140,-11,0,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,1205,-8,0,0 +2013,10,13,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1740,3,0,1855,-3,0,0 +2013,7,2,2,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1725,20,1,2027,-2,0,0 +2013,9,29,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1520,0,0,1750,21,1,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,105,78,1,826,69,1,0 +2013,9,28,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,831,-4,0,931,18,1,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,810,-3,0,854,1,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-2,0,2127,4,0,0 +2013,7,2,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1125,43,1,1140,35,1,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-2,0,2217,-17,0,0 +2013,8,17,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,-10,0,1030,-17,0,0 +2013,8,6,2,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1735,4,0,2145,-17,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-6,0,1325,-1,0,0 +2013,4,29,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-5,0,1540,-37,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1035,-9,0,1130,-28,0,0 +2013,7,12,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-10,0,1405,-28,0,0 +2013,8,26,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1003,-4,0,1112,-7,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2055,91,1,2223,86,1,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,855,6,0,1020,-5,0,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1805,4,0,2035,17,1,0 +2013,5,6,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1017,-11,0,1304,-12,0,0 +2013,7,22,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,1025,-12,0,0 +2013,6,17,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1505,-2,0,1830,-16,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1955,46,1,2110,54,1,0 +2013,6,20,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1111,-12,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1111,4,0,1402,1,0,0 +2013,4,1,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,52,1,2055,40,1,0 +2013,7,7,7,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1435,3,0,1655,-10,0,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1915,44,1,25,24,1,0 +2013,4,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,44,1,1735,30,1,0 +2013,4,4,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,0,0,1135,-15,0,0 +2013,4,14,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-5,0,1505,6,0,0 +2013,7,7,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-4,0,853,2,0,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,120,-3,0,615,-8,0,0 +2013,5,24,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2055,29,1,2259,38,1,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1850,-4,0,2011,-6,0,0 +2013,6,5,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,930,20,1,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1324,9,0,1937,5,0,0 +2013,4,28,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1540,9,0,1855,3,0,0 +2013,5,7,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,54,1,1035,61,1,0 +2013,5,29,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1845,-10,0,2304,-25,0,0 +2013,5,20,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2345,18,1,545,17,1,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-9,0,2159,-5,0,0 +2013,5,8,3,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1242,24,1,1418,27,1,0 +2013,6,19,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,5,0,1225,-8,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,61,1,1320,42,1,0 +2013,9,15,7,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,122,1,2110,92,1,0 +2013,4,16,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,-2,0,2151,-9,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,905,-7,0,1030,-10,0,0 +2013,7,14,7,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,1,0,1350,-1,0,0 +2013,10,26,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-5,0,759,13,0,0 +2013,9,14,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-4,0,1100,-20,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1029,-5,0,1315,-17,0,0 +2013,6,19,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,634,-1,0,835,-1,0,0 +2013,5,24,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,5,0,1135,7,0,0 +2013,7,16,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-2,0,1137,-12,0,0 +2013,4,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,700,-4,0,1515,-38,0,0 +2013,7,12,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,-6,0,2300,4,0,0 +2013,6,2,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-1,0,1010,-3,0,0 +2013,9,28,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1800,-5,0,1920,-8,0,0 +2013,8,5,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,700,-3,0,0 +2013,5,4,6,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1815,110,1,2055,107,1,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1815,9,0,2310,2,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,807,-5,0,925,-7,0,0 +2013,6,21,5,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-8,0,1126,-16,0,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1921,57,1,2238,42,1,0 +2013,8,5,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,705,-2,0,1040,-5,0,0 +2013,5,6,1,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-9,0,1857,-16,0,0 +2013,9,13,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1837,-6,0,1855,-9,0,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1735,-5,0,1905,-16,0,0 +2013,5,25,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1415,-7,0,1525,3,0,0 +2013,9,22,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,0,0,717,-6,0,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,-3,0,915,2,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,2043,-5,0,15,-16,0,0 +2013,6,29,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1227,30,1,1432,29,1,0 +2013,8,4,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1852,39,1,2018,21,1,0 +2013,4,1,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,610,-4,0,1208,-19,0,0 +2013,10,29,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1545,1,0,1825,-8,0,0 +2013,8,2,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1646,-14,0,1811,-17,0,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-2,0,1409,-4,0,0 +2013,6,3,1,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1625,6,0,1745,11,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,900,-2,0,1015,-1,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,8,0,1435,16,1,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1859,-3,0,1958,33,1,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,20,1,2241,42,1,0 +2013,9,6,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1940,4,0,2040,3,0,0 +2013,8,3,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,635,-1,0,1005,-10,0,0 +2013,4,22,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-3,0,1536,32,1,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,706,4,0,1055,-11,0,0 +2013,6,13,4,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-2,0,2040,7,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1630,29,1,1740,16,1,0 +2013,9,17,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1522,-6,0,1840,-2,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1945,-5,0,2335,-8,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-7,0,1115,-8,0,0 +2013,10,25,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1056,5,0,1259,-5,0,0 +2013,8,29,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1824,29,1,1923,24,1,0 +2013,10,5,6,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,59,-6,0,634,-6,0,0 +2013,4,29,1,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1235,-4,0,1825,10,0,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1000,2,0,1225,-6,0,0 +2013,9,14,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1448,-5,0,1655,-18,0,0 +2013,9,14,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1915,-5,0,2040,0,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,18,1,2300,18,1,0 +2013,9,7,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1430,5,0,1600,0,0,0 +2013,10,12,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1958,-1,0,2108,-11,0,0 +2013,9,18,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,-1,0,1852,-3,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-2,0,2320,-17,0,0 +2013,4,18,4,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,25,1,2015,15,1,0 +2013,7,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,723,9,0,923,0,0,0 +2013,6,11,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2242,-5,0,13,-16,0,0 +2013,5,1,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,800,-6,0,929,-13,0,0 +2013,9,13,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,-6,0,1838,-7,0,0 +2013,5,20,1,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1750,57,1,2044,53,1,0 +2013,6,10,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-3,0,715,-7,0,0 +2013,5,31,5,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1948,49,1,2248,29,1,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,-4,0,2221,-1,0,0 +2013,8,20,2,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,900,3,0,1120,-19,0,0 +2013,6,7,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1255,102,1,1540,102,1,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2040,164,1,2130,162,1,0 +2013,8,27,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-9,0,808,-11,0,0 +2013,4,15,1,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,1020,0,0,1625,-35,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1319,14,0,1448,4,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,25,1,1940,20,1,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1125,0,0,1845,-6,0,0 +2013,4,11,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,610,2,0,705,3,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,940,3,0,1125,1,0,0 +2013,8,29,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,837,-4,0,921,9,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1635,2,0,1805,-5,0,0 +2013,6,25,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1030,10,0,1130,4,0,0 +2013,9,6,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,-4,0,1425,-4,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1720,0,0,1832,-24,0,0 +2013,10,3,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1100,-5,0,1351,1,0,0 +2013,8,22,4,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1015,-6,0,1315,-11,0,0 +2013,4,14,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2235,-5,0,657,-30,0,0 +2013,8,17,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2016,-6,0,2343,-14,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1352,4,0,1919,-9,0,0 +2013,4,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,6,0,1850,-7,0,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,755,2,0,1320,-9,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2121,13,0,2258,1,0,0 +2013,6,4,2,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,951,-3,0,1340,-16,0,0 +2013,9,12,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,4,0,1915,-9,0,0 +2013,7,8,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,107,1,1355,97,1,0 +2013,7,21,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,629,-6,0,844,-24,0,0 +2013,4,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-4,0,1000,-17,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1251,39,1,1654,29,1,0 +2013,6,1,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,840,-6,0,1135,-49,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1212,0,0,1507,-13,0,0 +2013,10,31,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1629,-4,0,1739,-8,0,0 +2013,6,9,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1815,21,1,2135,10,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1318,-8,0,1607,-9,0,0 +2013,6,4,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1808,-14,0,2015,-5,0,0 +2013,6,15,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-6,0,946,-16,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,910,-4,0,1113,-5,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,0,0,26,-19,0,0 +2013,4,23,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,-7,0,2043,4,0,0 +2013,7,2,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1645,46,1,1815,49,1,0 +2013,7,18,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,640,-6,0,835,-6,0,0 +2013,10,6,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,825,-1,0,950,-10,0,0 +2013,8,23,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1956,-2,0,2048,3,0,0 +2013,10,30,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1246,3,0,1410,3,0,0 +2013,4,4,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1338,-5,0,1440,-22,0,0 +2013,10,22,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1613,-6,0,1730,-18,0,0 +2013,8,15,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1909,0,0,2018,5,0,0 +2013,8,6,2,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1959,-11,0,2106,-18,0,0 +2013,10,15,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1448,0,,1533,0,1,1 +2013,5,28,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-5,0,850,-1,0,0 +2013,5,13,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,2,0,2210,-2,0,0 +2013,4,26,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1554,-4,0,2059,-4,0,0 +2013,8,19,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,7,0,2155,15,1,0 +2013,8,19,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1002,-7,0,1136,-3,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2000,7,0,2315,2,0,0 +2013,6,30,7,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1745,243,1,1910,234,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2105,264,1,2225,270,1,0 +2013,10,7,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1015,-1,0,1140,-16,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,70,1,1350,55,1,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-3,0,1415,-8,0,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1940,1,0,143,-15,0,0 +2013,5,5,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-8,0,1605,-12,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2151,3,0,2350,-28,0,0 +2013,9,14,6,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,-5,0,1743,-36,0,0 +2013,7,2,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,15,1,1818,8,0,0 +2013,9,4,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-9,0,815,-28,0,0 +2013,9,1,7,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,-1,0,1607,-6,0,0 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,805,2,0,1050,-8,0,0 +2013,7,16,2,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-6,0,945,-14,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,732,-4,0,1025,-14,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1255,7,0,1755,7,0,0 +2013,5,15,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,650,84,1,819,75,1,0 +2013,4,8,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1421,-4,0,1713,-3,0,0 +2013,5,24,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,640,-9,0,740,-13,0,0 +2013,4,9,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,-1,0,2040,-1,0,0 +2013,5,2,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-2,0,1915,1,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1525,0,0,1740,-3,0,0 +2013,7,19,5,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-2,0,1133,-10,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1135,77,1,1235,61,1,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1450,49,1,1710,41,1,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1002,1,0,1830,-28,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,-1,0,2305,1,0,0 +2013,5,6,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,-3,0,1110,2,0,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1150,-2,0,1505,-9,0,0 +2013,4,3,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-8,0,1155,-15,0,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1340,-6,0,1639,-6,0,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1835,77,1,2010,88,1,0 +2013,8,22,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1700,5,0,1830,-2,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1746,-4,0,1932,-6,0,0 +2013,10,14,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1220,15,1,1355,9,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1610,34,1,1813,46,1,0 +2013,9,20,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,14,0,830,10,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,5,0,50,11,0,0 +2013,7,23,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,0,0,2105,3,0,0 +2013,9,17,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,-6,0,2000,-18,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1850,66,1,2208,79,1,0 +2013,6,25,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-6,0,1255,-15,0,0 +2013,10,12,6,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1545,-6,0,1704,-21,0,0 +2013,6,26,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1850,34,1,1955,8,0,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,805,-4,0,1000,-16,0,0 +2013,5,9,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-1,0,1545,-8,0,0 +2013,8,14,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1006,-2,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1640,13,0,2000,0,0,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2005,0,,2313,0,1,1 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,33,1,2310,24,1,0 +2013,4,23,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-1,0,1630,0,0,0 +2013,10,20,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2230,-3,0,2350,-14,0,0 +2013,7,13,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,944,-5,0,1042,-3,0,0 +2013,8,18,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,275,1,2152,261,1,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-4,0,1100,-10,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1917,-3,0,2244,-11,0,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,830,-5,0,957,0,0,0 +2013,9,16,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-2,0,1603,-2,0,0 +2013,4,20,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,16,1,1650,5,0,0 +2013,8,31,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1305,-3,0,1504,-15,0,0 +2013,9,18,3,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,820,-1,0,945,-11,0,0 +2013,10,21,1,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1350,-1,0,1732,-21,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,4,0,1255,-6,0,0 +2013,8,5,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1740,8,0,1812,17,1,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1824,-4,0,1945,-17,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1610,21,1,1733,23,1,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2050,17,1,2220,17,1,0 +2013,6,14,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1321,-5,0,1423,-6,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1830,-1,0,1921,-6,0,0 +2013,8,14,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1200,-6,0,1302,-13,0,0 +2013,7,23,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,46,1,1657,31,1,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,25,1,2135,30,1,0 +2013,8,31,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,10,0,1829,25,1,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-5,0,1505,-2,0,0 +2013,9,7,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,835,-1,0,925,-20,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1310,0,0,1655,-16,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1241,-5,0,1516,-8,0,0 +2013,4,6,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1145,-9,0,0 +2013,9,3,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,0,0,1755,2,0,0 +2013,8,15,4,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,0,,1636,0,1,1 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-2,0,1635,5,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1803,-2,0,2252,-32,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,13,0,1948,22,1,0 +2013,4,7,7,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,800,7,0,1000,8,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2130,57,1,2320,49,1,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2007,77,1,2138,66,1,0 +2013,8,28,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,3,0,1459,-11,0,0 +2013,4,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1543,15,1,1735,13,0,0 +2013,4,28,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,48,1,1255,26,1,0 +2013,10,19,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,830,-1,0,1114,2,0,0 +2013,4,1,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1256,30,1,1815,13,0,0 +2013,6,1,6,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-9,0,1325,1,0,0 +2013,9,29,7,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-7,0,1020,-22,0,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,2,0,1000,15,1,0 +2013,6,11,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,-2,0,2135,-2,0,0 +2013,10,18,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2000,2,0,2128,0,0,0 +2013,6,13,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-3,0,1619,-7,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,2,0,1255,0,0,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,0,0,1617,-23,0,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1725,15,1,2000,5,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,-2,0,1125,-8,0,0 +2013,8,9,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,2025,3,0,2125,-6,0,0 +2013,5,24,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,613,-9,0,935,-31,0,0 +2013,6,17,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,1,0,1249,15,1,0 +2013,5,11,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-1,0,1524,1,0,0 +2013,5,2,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-6,0,941,3,0,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,855,-2,0,1210,-5,0,0 +2013,7,28,7,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1750,-1,0,2116,-4,0,0 +2013,6,16,7,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-6,0,1521,-15,0,0 +2013,7,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,735,-2,0,1330,-17,0,0 +2013,10,14,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1208,-11,0,1412,-13,0,0 +2013,7,28,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1710,-13,0,1945,-19,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,0,0,1330,-24,0,0 +2013,4,26,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-1,0,1330,0,0,0 +2013,7,17,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,131,1,1739,134,1,0 +2013,7,12,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,816,5,0,1100,50,1,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,820,-20,0,0 +2013,5,5,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1555,-2,0,1935,-10,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1315,5,0,1454,9,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1610,0,0,1748,-8,0,0 +2013,9,30,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,500,-9,0,615,-18,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,6,0,1045,12,0,0 +2013,8,29,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1602,-7,0,1624,-14,0,0 +2013,6,17,1,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,0,0,1915,11,0,0 +2013,5,18,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1520,59,1,1640,53,1,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,0,0,935,-6,0,0 +2013,6,11,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,29,1,2045,23,1,0 +2013,7,29,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,157,1,2140,156,1,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1845,1,0,2130,-18,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1649,25,1,1821,1,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,700,-4,0,920,-11,0,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1505,7,0,1815,10,0,0 +2013,7,2,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-6,0,1550,-11,0,0 +2013,10,30,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1215,-2,0,1345,7,0,0 +2013,4,1,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,750,1,0,910,-4,0,0 +2013,4,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-4,0,1124,-15,0,0 +2013,7,17,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,700,25,1,1003,8,0,0 +2013,8,13,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1626,-4,0,1912,-8,0,0 +2013,7,14,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1525,2,0,1550,-8,0,0 +2013,7,8,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1122,-3,0,0 +2013,5,25,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,0,0,1625,-17,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1123,9,0,1331,6,0,0 +2013,8,21,3,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,745,-8,0,1155,-35,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,740,1,0,1129,-3,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,927,0,0,1303,-7,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,-5,0,1357,-15,0,0 +2013,10,8,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,-7,0,1034,-24,0,0 +2013,9,17,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,914,-14,0,0 +2013,6,27,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1525,126,1,1650,120,1,0 +2013,8,2,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1855,35,1,2020,34,1,0 +2013,6,22,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-3,0,1912,-26,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,925,-3,0,1040,-8,0,0 +2013,4,30,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,22,1,658,-1,0,0 +2013,7,20,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,-3,0,1612,-7,0,0 +2013,4,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-2,0,9,-1,0,0 +2013,7,25,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,738,-4,0,855,-11,0,0 +2013,4,23,2,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,813,-6,0,1034,-21,0,0 +2013,5,8,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,-6,0,1008,-6,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-3,0,1929,3,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1105,21,1,1150,28,1,0 +2013,6,1,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,-3,0,1813,-10,0,0 +2013,8,28,3,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1035,-4,0,1140,-6,0,0 +2013,4,16,2,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1117,-3,0,0 +2013,10,16,3,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2000,-5,0,2122,-14,0,0 +2013,4,7,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1145,1,0,0 +2013,7,10,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-3,0,1557,-10,0,0 +2013,4,27,6,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1704,-6,0,1835,-15,0,0 +2013,6,27,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1625,15,1,1850,30,1,0 +2013,10,19,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,635,-5,0,650,-16,0,0 +2013,10,9,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1739,-7,0,1821,-21,0,0 +2013,6,8,6,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-3,0,1538,8,0,0 +2013,9,5,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1438,-6,0,2002,-12,0,0 +2013,10,6,7,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,43,1,1828,5,0,0 +2013,9,20,5,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,59,1,1910,58,1,0 +2013,6,24,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,9,0,1200,11,0,0 +2013,5,13,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,2015,-4,0,2240,-10,0,0 +2013,6,5,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1145,31,1,1450,25,1,0 +2013,8,9,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2025,-5,0,2135,-2,0,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,-4,0,2129,-7,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1423,7,0,1650,10,0,0 +2013,7,4,4,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-7,0,2330,-15,0,0 +2013,8,4,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,-5,0,1832,-8,0,0 +2013,5,28,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1530,5,0,1805,-3,0,0 +2013,9,27,5,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1640,26,1,1835,17,1,0 +2013,6,5,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,909,-4,0,1415,-3,0,0 +2013,10,17,4,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-4,0,2250,-7,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-4,0,1310,16,1,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2103,17,1,2222,3,0,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,945,1,0,1100,21,1,0 +2013,8,1,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,936,2,0,1200,-8,0,0 +2013,10,21,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,-5,0,2000,-19,0,0 +2013,5,23,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,805,24,1,930,34,1,0 +2013,8,15,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2035,0,0,2200,-5,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1955,52,1,2145,57,1,0 +2013,4,19,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2055,-9,0,2155,-21,0,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-3,0,1830,-14,0,0 +2013,8,14,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-9,0,1010,-5,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2015,13,0,2225,-2,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,1,0,1705,-17,0,0 +2013,7,4,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-7,0,1030,-20,0,0 +2013,9,28,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,740,-2,0,950,-6,0,0 +2013,9,26,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-9,0,1040,-10,0,0 +2013,9,27,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,290,1,2130,275,1,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1355,26,1,1643,29,1,0 +2013,7,31,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-3,0,1010,-12,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1110,-3,0,1230,-6,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1615,11,0,1720,8,0,0 +2013,10,25,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,7,0,1913,4,0,0 +2013,10,23,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1159,0,0,1447,-13,0,0 +2013,8,17,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,11,0,1625,2,0,0 +2013,6,12,3,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,810,1,0,1630,-13,0,0 +2013,8,31,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1230,3,0,1340,12,0,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1530,-3,0,1556,-19,0,0 +2013,7,28,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,-5,0,1605,-16,0,0 +2013,9,29,7,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,700,-2,0,825,-3,0,0 +2013,5,5,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1520,3,0,1835,-7,0,0 +2013,7,21,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-8,0,955,-7,0,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2055,4,0,2255,-19,0,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,-8,0,2152,-4,0,0 +2013,9,29,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,86,1,1940,74,1,0 +2013,7,1,1,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,0,0,2036,24,1,0 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,838,1,0,1213,-7,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,50,1,2350,52,1,0 +2013,8,13,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,2,0,2015,4,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1755,-2,0,2009,-11,0,0 +2013,8,30,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1501,4,0,1635,-11,0,0 +2013,5,4,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1454,-11,0,1645,-18,0,0 +2013,10,14,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1350,36,1,1517,29,1,0 +2013,4,3,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1250,-4,0,2103,-7,0,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1825,-3,0,1943,-3,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,14,0,1650,14,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,945,10,0,1250,3,0,0 +2013,6,24,1,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1312,-6,0,2110,-29,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,930,14,0,1130,14,0,0 +2013,9,26,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,710,12,0,820,8,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,2,0,1846,-4,0,0 +2013,4,2,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1906,-6,0,2054,-10,0,0 +2013,5,27,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1937,-11,0,2155,-31,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2029,-5,0,2123,-8,0,0 +2013,8,3,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-8,0,2108,-14,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,7,0,1556,3,0,0 +2013,7,16,2,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1648,-1,0,1829,-23,0,0 +2013,8,19,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1045,3,0,1500,0,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,21,1,1805,7,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1745,-2,0,2029,-31,0,0 +2013,5,9,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-6,0,1112,-16,0,0 +2013,4,9,2,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,-9,0,2010,-7,0,0 +2013,5,1,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1130,-6,0,2010,-1,0,0 +2013,7,30,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1735,-1,0,1800,-11,0,0 +2013,10,26,6,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1941,-4,0,2034,-17,0,0 +2013,7,15,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-7,0,755,-3,0,0 +2013,7,31,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1945,0,0,2225,-1,0,0 +2013,9,20,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,3,0,1416,2,0,0 +2013,7,7,7,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1406,-5,0,1639,-6,0,0 +2013,10,15,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,314,1,18,275,1,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,33,1,2155,48,1,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-3,0,2127,-7,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,839,-16,0,0 +2013,5,17,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,6,0,1201,1,0,0 +2013,9,6,5,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1925,19,1,2124,27,1,0 +2013,5,29,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,1029,-15,0,0 +2013,5,4,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1750,14,0,1910,12,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-4,0,815,-8,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1755,37,1,2114,81,1,0 +2013,8,30,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1213,-5,0,1459,-7,0,0 +2013,8,19,1,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2200,-6,0,501,-17,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1317,-1,0,1436,-2,0,0 +2013,4,25,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,-1,0,2018,-15,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1500,-5,0,1545,-8,0,0 +2013,6,3,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,830,-3,0,940,-9,0,0 +2013,5,20,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,745,22,1,1015,14,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1445,-1,0,1705,-7,0,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1815,0,,1935,0,1,1 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1715,-1,0,1843,77,1,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1435,0,0,1800,-14,0,0 +2013,10,18,5,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,7,0,1425,11,0,0 +2013,9,17,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1545,18,1,1825,14,0,0 +2013,6,18,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,-8,0,927,-10,0,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,934,-5,0,1213,-22,0,0 +2013,8,9,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,-5,0,1631,-18,0,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,0,0,1113,12,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,8,0,2346,8,0,0 +2013,5,23,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,720,14,0,853,21,1,0 +2013,9,26,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,748,68,1,838,81,1,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1315,-2,0,1730,-8,0,0 +2013,9,14,6,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,-2,0,1112,-4,0,0 +2013,9,12,4,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1448,2,0,1601,0,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1800,6,0,2130,-21,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1645,30,1,1709,20,1,0 +2013,4,21,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1300,8,0,1415,8,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2005,3,0,2255,-3,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-4,0,844,-3,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,730,10,0,1155,24,1,0 +2013,7,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,-1,0,2320,-12,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2040,3,0,2310,5,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-8,0,1234,-16,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1635,1,0,1854,-7,0,0 +2013,8,22,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,302,1,1948,274,1,0 +2013,9,10,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,819,1,0,1310,-7,0,0 +2013,10,13,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1200,-7,0,1755,-15,0,0 +2013,7,27,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,630,-1,0,920,9,0,0 +2013,5,9,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,-8,0,2240,-6,0,0 +2013,8,22,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,745,-5,0,856,-19,0,0 +2013,5,24,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,0,0,950,-11,0,0 +2013,5,29,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1425,-6,0,1620,-36,0,0 +2013,6,17,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1730,12,0,1820,13,0,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1920,-1,0,2340,-7,0,0 +2013,4,20,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,17,1,2056,4,0,0 +2013,7,9,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,635,-3,0,955,-10,0,0 +2013,7,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,15,1,1945,2,0,0 +2013,9,6,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,0,,941,0,1,1 +2013,6,24,1,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1420,-1,0,1538,-21,0,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,805,-3,0,1235,-11,0,0 +2013,5,20,1,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1640,17,1,1956,-17,0,0 +2013,9,3,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-1,0,1912,1,0,0 +2013,7,27,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-5,0,1538,-7,0,0 +2013,9,3,2,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1711,-4,0,2015,14,0,0 +2013,6,13,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1550,7,0,1900,-8,0,0 +2013,9,8,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,725,-5,0,845,-9,0,0 +2013,8,12,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,12,0,1252,6,0,0 +2013,4,10,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,800,0,0,935,-14,0,0 +2013,5,23,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1859,15,1,2052,10,0,0 +2013,6,14,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-2,0,830,2,0,0 +2013,5,18,6,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1710,-5,0,1840,-18,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,13,0,1410,33,1,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1015,11,0,1155,1,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-5,0,1349,-33,0,0 +2013,6,11,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,625,4,0,800,-3,0,0 +2013,5,25,6,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1447,-2,0,1639,-19,0,0 +2013,9,18,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1825,-13,0,2100,42,1,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1240,21,1,1640,3,0,0 +2013,8,18,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-6,0,1748,-9,0,0 +2013,10,19,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-4,0,834,-2,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1500,5,0,1630,-6,0,0 +2013,6,23,7,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1122,6,0,1227,-6,0,0 +2013,5,27,1,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1555,0,0,1650,-9,0,0 +2013,7,7,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,-8,0,1610,-17,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1955,16,1,2355,0,0,0 +2013,5,22,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-7,0,1906,-14,0,0 +2013,7,13,6,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,0,0,1945,-12,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1905,88,1,2120,90,1,0 +2013,10,18,5,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1810,-2,0,1940,-4,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,945,-6,0,1045,-15,0,0 +2013,7,31,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2004,12,0,2120,5,0,0 +2013,4,22,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1710,-5,0,1845,0,0,0 +2013,8,14,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,6,0,1620,-8,0,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1940,3,0,2050,-5,0,0 +2013,6,6,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1505,0,0,1731,-12,0,0 +2013,5,4,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1540,-2,0,1655,-3,0,0 +2013,5,7,2,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1906,-11,0,2018,3,0,0 +2013,6,4,2,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,930,-6,0,1255,-18,0,0 +2013,7,9,2,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,35,1,1431,31,1,0 +2013,9,12,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1835,-9,0,2110,-4,0,0 +2013,5,7,2,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1255,11,0,1550,3,0,0 +2013,10,15,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2039,-3,0,2341,-14,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,850,2,0,1615,-12,0,0 +2013,10,22,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2058,-4,0,2157,-15,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2255,6,0,5,-1,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1910,-1,0,2240,-13,0,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,710,-2,0,1033,-5,0,0 +2013,7,24,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,-5,0,2336,-5,0,0 +2013,8,24,6,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,850,-8,0,1146,-34,0,0 +2013,10,13,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1150,29,1,1315,30,1,0 +2013,9,4,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,0,0,1525,7,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,-5,0,2342,-13,0,0 +2013,5,1,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,610,-1,0,720,3,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2235,24,1,2335,27,1,0 +2013,8,27,2,9E,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,-5,0,1345,8,0,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1150,-5,0,1433,-1,0,0 +2013,8,5,1,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,-2,0,1053,-4,0,0 +2013,10,31,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-9,0,805,1,0,0 +2013,4,5,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-9,0,752,-19,0,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1015,-3,0,1225,-35,0,0 +2013,6,4,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,710,0,0,855,10,0,0 +2013,10,31,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,-8,0,800,1,0,0 +2013,4,6,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-2,0,1543,-5,0,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2035,-4,0,2305,-12,0,0 +2013,9,15,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1740,-3,0,1847,-13,0,0 +2013,4,5,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,-7,0,1311,8,0,0 +2013,7,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,2050,17,1,5,2,0,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,2,0,2140,8,0,0 +2013,8,28,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1530,-2,0,1650,-4,0,0 +2013,4,5,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,-4,0,2015,5,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1715,4,0,1953,2,0,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-4,0,1210,-11,0,0 +2013,6,9,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,-7,0,1454,-4,0,0 +2013,9,15,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,525,-5,0,847,-4,0,0 +2013,9,16,1,DL,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,-2,0,1836,-5,0,0 +2013,9,12,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1105,-5,0,1244,-8,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1536,-4,0,1717,-17,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1130,63,1,1235,55,1,0 +2013,4,18,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2015,-8,0,2150,-20,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1905,48,1,2030,36,1,0 +2013,4,3,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1510,-10,0,2010,-9,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,0,0,1755,6,0,0 +2013,10,20,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1827,-4,0,2047,-20,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1310,-1,0,1412,-2,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2105,0,0,2310,-5,0,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1155,17,1,1330,9,0,0 +2013,5,30,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1500,57,1,2055,72,1,0 +2013,5,28,2,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,-6,0,2000,-4,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,745,-3,0,850,-12,0,0 +2013,8,27,2,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,810,-3,0,1620,9,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1030,-2,0,1420,-6,0,0 +2013,5,29,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-13,0,1046,5,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1020,-3,0,1129,-3,0,0 +2013,7,8,1,9E,12478,John F. Kennedy International,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,1615,26,1,1900,-2,0,0 +2013,5,26,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,31,1,725,30,1,0 +2013,9,26,4,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2000,27,1,2229,11,0,0 +2013,5,12,7,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1840,40,1,1955,37,1,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-2,0,1422,7,0,0 +2013,6,22,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1150,1,0,1337,-4,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,0,0,1030,-5,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1725,-1,0,1830,-9,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,915,22,1,1210,12,0,0 +2013,7,8,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1409,12,0,2245,1,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-5,0,1105,-7,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1515,10,0,1620,-1,0,0 +2013,6,22,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,920,-6,0,1010,-15,0,0 +2013,6,7,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-3,0,955,7,0,0 +2013,9,3,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,829,-5,0,841,-9,0,0 +2013,9,11,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1559,-7,0,1657,-18,0,0 +2013,9,24,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-2,0,2145,12,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1545,40,1,1710,35,1,0 +2013,10,11,5,UA,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1712,-5,0,1845,4,0,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2025,-6,0,2321,-30,0,0 +2013,4,10,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1715,0,,1840,0,1,1 +2013,6,27,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1910,75,1,2030,59,1,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1255,-3,0,1620,-8,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1450,10,0,1602,7,0,0 +2013,10,4,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,5,0,1355,6,0,0 +2013,9,13,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,935,-4,0,1005,-9,0,0 +2013,5,14,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,952,29,1,1036,31,1,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,74,1,1351,70,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,0,0,1717,3,0,0 +2013,7,2,2,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1710,29,1,1835,23,1,0 +2013,7,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1126,-6,0,1205,-4,0,0 +2013,5,25,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,4,0,1345,-10,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1045,-1,0,1315,-23,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1335,32,1,1520,24,1,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,3,0,1610,-4,0,0 +2013,10,19,6,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1415,-9,0,1550,-4,0,0 +2013,9,16,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2305,-1,0,702,11,0,0 +2013,5,31,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,9,0,2110,-7,0,0 +2013,9,28,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-5,0,1127,1,0,0 +2013,4,19,5,DL,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1945,34,1,2151,36,1,0 +2013,7,28,7,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,69,1,1845,66,1,0 +2013,4,10,3,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,0,0,2315,10,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1745,22,1,30,12,0,0 +2013,4,7,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1910,6,0,2139,25,1,0 +2013,10,11,5,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1843,31,1,2034,23,1,0 +2013,8,19,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1410,-2,0,1705,-4,0,0 +2013,7,17,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,0,,1925,0,1,1 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1506,12,0,1738,27,1,0 +2013,6,25,2,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,720,2,0,920,1,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1732,11,0,1933,-1,0,0 +2013,6,22,6,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,24,1,1610,18,1,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1008,53,1,1413,39,1,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,845,9,0,950,10,0,0 +2013,6,22,6,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,735,2,0,840,1,0,0 +2013,4,23,2,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-10,0,1912,-11,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,855,-3,0,1150,-8,0,0 +2013,8,11,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,58,1,2155,41,1,0 +2013,5,29,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1220,0,0,1324,-17,0,0 +2013,6,19,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,948,-2,0,1040,-11,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,850,9,0,1100,-11,0,0 +2013,5,24,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,717,8,0,901,17,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1520,-4,0,1720,10,0,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1930,-3,0,2110,1,0,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1500,13,0,1830,15,1,0 +2013,7,13,6,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-5,0,2131,-24,0,0 +2013,4,20,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1130,8,0,1350,-11,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-6,0,1249,-10,0,0 +2013,4,23,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,745,1,0,950,-14,0,0 +2013,5,1,3,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1904,-4,0,2135,-18,0,0 +2013,10,31,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-5,0,1645,21,1,0 +2013,4,5,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,810,-9,0,934,-7,0,0 +2013,10,7,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,4,0,1122,9,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,4,0,2015,6,0,0 +2013,8,22,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1056,22,1,1325,62,1,0 +2013,7,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1755,-1,0,2027,10,0,0 +2013,6,20,4,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-7,0,858,-13,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,4,0,2245,19,1,0 +2013,4,19,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,840,3,0,0 +2013,4,6,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1520,0,,1630,0,1,1 +2013,5,11,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1305,-7,0,1420,-5,0,0 +2013,9,7,6,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1050,-3,0,1215,-10,0,0 +2013,10,26,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,-1,0,1355,-4,0,0 +2013,9,24,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,-3,0,2145,15,1,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1450,9,0,1815,8,0,0 +2013,4,25,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,935,5,0,1040,12,0,0 +2013,4,8,1,OO,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,919,14,0,1112,3,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1005,1,0,1320,22,1,0 +2013,7,26,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,0,0,1045,4,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1733,-6,0,1859,-20,0,0 +2013,5,22,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,-3,0,1905,-5,0,0 +2013,5,1,3,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,635,-6,0,740,-10,0,0 +2013,7,1,1,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1425,-4,0,2020,0,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1225,2,0,1740,4,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1205,-2,0,1610,1,0,0 +2013,9,7,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,-8,0,1900,-27,0,0 +2013,4,10,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,813,-19,0,0 +2013,5,12,7,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1220,0,0,1705,15,1,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,-3,0,2146,3,0,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,900,-4,0,1000,-8,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-5,0,1048,-23,0,0 +2013,5,18,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-3,0,802,-5,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,3,0,1526,1,0,0 +2013,5,3,5,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1642,44,1,2054,17,1,0 +2013,7,18,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,133,1,2155,123,1,0 +2013,8,24,6,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1057,3,0,1310,-16,0,0 +2013,6,28,5,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1115,-2,0,1200,2,0,0 +2013,6,11,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1918,0,,2004,0,1,1 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1555,-2,0,1810,12,0,0 +2013,10,8,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,13,0,1600,7,0,0 +2013,9,15,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,800,12,0,0 +2013,8,12,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,162,1,2110,149,1,0 +2013,8,27,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-8,0,2003,2,0,0 +2013,5,26,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-3,0,1820,-15,0,0 +2013,5,28,2,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1734,-8,0,1841,-10,0,0 +2013,5,27,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,-2,0,1340,-9,0,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,900,59,1,1020,69,1,0 +2013,7,7,7,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1225,17,1,1435,-4,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,-5,0,2119,-23,0,0 +2013,6,1,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1130,16,1,1235,11,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,845,-6,0,1124,-1,0,0 +2013,9,9,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1500,-3,0,1600,-2,0,0 +2013,9,8,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,833,16,1,917,4,0,0 +2013,4,2,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,800,-6,0,911,9,0,0 +2013,8,23,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1113,67,1,1348,65,1,0 +2013,7,8,1,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,129,1,559,99,1,0 +2013,4,22,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,752,-2,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,103,1,2017,108,1,0 +2013,9,21,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,24,1,2103,17,1,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,2,0,1451,22,1,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,40,1,2100,27,1,0 +2013,6,12,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-6,0,950,8,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,65,1,1904,52,1,0 +2013,6,15,6,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,-7,0,2350,-22,0,0 +2013,10,27,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1725,1,0,1855,-3,0,0 +2013,7,19,5,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1107,-12,0,1340,-21,0,0 +2013,9,21,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1855,-10,0,2035,-40,0,0 +2013,5,8,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,63,1,1900,65,1,0 +2013,8,17,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1159,-7,0,1527,-4,0,0 +2013,8,10,6,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-8,0,1245,-9,0,0 +2013,9,27,5,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,0,0,1440,-15,0,0 +2013,8,7,3,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1116,-3,0,1350,3,0,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,-8,0,1158,-5,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,19,1,1520,9,0,0 +2013,8,21,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,0,0,2045,-15,0,0 +2013,8,14,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,15,1,550,5,0,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1100,0,0,1315,14,0,0 +2013,9,18,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,930,-8,0,1305,-23,0,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,905,0,0,1145,-3,0,0 +2013,8,2,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,0,0,1630,-19,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,-4,0,2028,15,1,0 +2013,8,17,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1649,-12,0,1925,-30,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,0,0,650,2,0,0 +2013,5,12,7,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,50,1,2126,41,1,0 +2013,6,15,6,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-3,0,926,-15,0,0 +2013,7,24,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,3,0,1956,19,1,0 +2013,7,13,6,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-3,0,1330,-3,0,0 +2013,4,17,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1850,-5,0,2045,-16,0,0 +2013,10,26,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,938,-2,0,1123,-5,0,0 +2013,5,10,5,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-4,0,1558,-3,0,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2000,13,0,2210,36,1,0 +2013,9,23,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,6,0,904,-9,0,0 +2013,5,1,3,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1052,-8,0,1530,21,1,0 +2013,7,14,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1824,-2,0,2021,4,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,925,53,1,1105,57,1,0 +2013,6,13,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-4,0,2115,-7,0,0 +2013,5,27,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-1,0,1652,-10,0,0 +2013,10,23,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1615,4,0,1913,7,0,0 +2013,9,7,6,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,12,0,1725,6,0,0 +2013,7,8,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-8,0,1135,-14,0,0 +2013,6,24,1,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-1,0,627,-14,0,0 +2013,10,14,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-4,0,625,-3,0,0 +2013,5,7,2,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,855,-1,0,1140,-12,0,0 +2013,7,31,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1450,4,0,1555,-5,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,-2,0,2209,-9,0,0 +2013,5,13,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,946,-5,0,1559,-6,0,0 +2013,6,16,7,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1344,-3,0,1530,-2,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,815,-1,0,940,-13,0,0 +2013,4,24,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,10,0,1855,1,0,0 +2013,5,8,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-4,0,1845,-24,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1430,-3,0,1742,-16,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1038,-5,0,1628,-17,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,-9,0,1805,-1,0,0 +2013,9,19,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,-10,0,1026,-5,0,0 +2013,6,16,7,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,955,1,0,1210,-8,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,-1,0,2210,-12,0,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1240,13,0,1500,21,1,0 +2013,10,23,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2210,-3,0,2328,-5,0,0 +2013,6,6,4,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,49,1,1810,48,1,0 +2013,10,18,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,5,0,1355,-5,0,0 +2013,8,3,6,EV,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1014,-4,0,1159,-19,0,0 +2013,5,6,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,0,0,1858,1,0,0 +2013,6,16,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1121,15,1,1244,18,1,0 +2013,6,4,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,-8,0,1655,-18,0,0 +2013,4,27,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1732,-1,0,1922,10,0,0 +2013,7,2,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,725,-6,0,859,5,0,0 +2013,4,7,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-5,0,1240,-8,0,0 +2013,10,18,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1055,0,,1224,0,1,1 +2013,6,28,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1351,40,1,1611,29,1,0 +2013,6,5,3,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,145,-5,0,659,-8,0,0 +2013,6,18,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-1,0,2126,0,0,0 +2013,7,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,44,1,1206,39,1,0 +2013,7,18,4,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,1,0,1105,-19,0,0 +2013,4,12,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1000,-3,0,1058,-10,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1200,-2,0,1405,-8,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-2,0,1350,-2,0,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1930,-2,0,2211,2,0,0 +2013,8,28,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-8,0,622,-5,0,0 +2013,8,2,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,913,-7,0,1430,-12,0,0 +2013,5,27,1,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1810,-8,0,2055,-8,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,-4,0,1935,-32,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,0,0,1117,1,0,0 +2013,10,17,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1235,28,1,1500,25,1,0 +2013,4,13,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1437,5,0,1804,-4,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1406,-6,0,1540,-1,0,0 +2013,8,29,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,1,0,1955,-6,0,0 +2013,4,11,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1016,-3,0,1205,-23,0,0 +2013,9,22,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1235,-4,0,1445,-14,0,0 +2013,5,23,4,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,716,20,1,801,11,0,0 +2013,6,14,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,957,-17,0,0 +2013,9,2,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1149,13,0,1236,22,1,0 +2013,10,23,3,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1700,-6,0,1916,-10,0,0 +2013,10,26,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,-3,0,1335,-12,0,0 +2013,10,22,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1125,-2,0,1135,-13,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1023,-3,0,1321,-13,0,0 +2013,4,8,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,641,306,1,759,288,1,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,63,1,2200,107,1,0 +2013,9,23,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2025,-4,0,2255,-11,0,0 +2013,7,8,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1805,158,1,1840,167,1,0 +2013,5,1,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1635,-5,0,1840,-12,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1351,-3,0,1515,-12,0,0 +2013,7,30,2,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-7,0,1132,-6,0,0 +2013,5,16,4,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1608,-1,0,1815,-32,0,0 +2013,8,28,3,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,9,0,2029,21,1,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-3,0,1240,-10,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2045,109,1,2340,102,1,0 +2013,8,30,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1850,2,0,2052,9,0,0 +2013,4,18,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-8,0,919,-11,0,0 +2013,9,20,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,-5,0,1932,-10,0,0 +2013,7,22,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1828,1,0,2035,-8,0,0 +2013,9,25,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1345,-13,0,1511,-36,0,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1700,-8,0,1952,-17,0,0 +2013,6,13,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1528,-4,0,1633,-4,0,0 +2013,5,24,5,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-7,0,911,-8,0,0 +2013,8,12,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1838,-6,0,1945,104,1,0 +2013,4,9,2,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-7,0,2010,-23,0,0 +2013,6,22,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-4,0,2000,-10,0,0 +2013,6,28,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,-1,0,1850,-1,0,0 +2013,6,7,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,8,0,1810,9,0,0 +2013,6,5,3,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,7,0,1950,-7,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-3,0,922,-2,0,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,2,0,1100,-7,0,0 +2013,8,14,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,148,1,1750,179,1,0 +2013,10,29,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-7,0,1729,-9,0,0 +2013,8,11,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,-4,0,1255,-14,0,0 +2013,7,18,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,26,1,1916,16,1,0 +2013,8,8,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,-1,0,1117,5,0,0 +2013,8,2,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,13,0,1806,0,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-3,0,1015,-13,0,0 +2013,10,7,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,83,1,1350,104,1,0 +2013,6,23,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1439,11,0,1559,5,0,0 +2013,6,1,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,-5,0,2042,-9,0,0 +2013,4,17,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,-1,0,1035,-11,0,0 +2013,6,13,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-7,0,1415,1,0,0 +2013,9,22,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,2,0,815,-6,0,0 +2013,7,23,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,4,0,815,7,0,0 +2013,6,10,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,618,-8,0,741,-28,0,0 +2013,5,15,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-8,0,841,-34,0,0 +2013,5,7,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1315,-5,0,2124,-9,0,0 +2013,4,28,7,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1145,24,1,1431,45,1,0 +2013,10,3,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,908,10,0,1231,26,1,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1000,19,1,1405,7,0,0 +2013,8,25,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,700,-6,0,917,-13,0,0 +2013,8,28,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1352,-6,0,1500,-10,0,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,735,4,0,910,-2,0,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,-2,0,1925,18,1,0 +2013,8,18,7,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,142,1,1755,155,1,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,810,-2,0,922,-11,0,0 +2013,8,11,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-4,0,913,4,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1405,8,0,1740,10,0,0 +2013,4,1,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,1,0,1220,-3,0,0 +2013,7,19,5,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2055,47,1,2324,83,1,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,923,19,1,1150,21,1,0 +2013,9,21,6,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,62,1,1629,51,1,0 +2013,9,23,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,20,1,1555,15,1,0 +2013,10,14,1,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,815,-3,0,925,-6,0,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,-1,0,1135,7,0,0 +2013,4,30,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-9,0,1306,-11,0,0 +2013,6,17,1,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,847,-4,0,954,-13,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1050,13,0,1420,14,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2202,0,0,2343,-12,0,0 +2013,9,1,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2020,-4,0,2140,-22,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1325,17,1,1645,2,0,0 +2013,6,14,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2045,-1,0,2150,-14,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-4,0,1012,-1,0,0 +2013,10,6,7,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,555,0,0,1420,11,0,0 +2013,4,18,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-9,0,2055,-17,0,0 +2013,10,12,6,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,-7,0,1545,-3,0,0 +2013,8,17,6,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,18,1,1614,15,1,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1255,9,0,1518,-7,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,0,0,1230,-3,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,-6,0,1420,-31,0,0 +2013,6,17,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,7,0,2100,14,0,0 +2013,6,11,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1050,6,0,1353,-7,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1804,0,0,1904,-7,0,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1359,20,1,1559,17,1,0 +2013,7,16,2,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,5,0,1415,-6,0,0 +2013,9,20,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1840,-5,0,1912,3,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,705,-6,0,910,-5,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,-6,0,1806,-11,0,0 +2013,8,30,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,949,-9,0,1103,-2,0,0 +2013,5,31,5,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-5,0,914,-12,0,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1548,2,0,1723,45,1,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,6,0,1750,-12,0,0 +2013,10,1,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1400,-8,0,1930,-23,0,0 +2013,8,24,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-1,0,1201,2,0,0 +2013,6,25,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1545,108,1,1710,133,1,0 +2013,5,13,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1145,-3,0,1245,-9,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,8,0,1615,9,0,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1200,18,1,1305,49,1,0 +2013,10,8,2,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1241,0,0,1629,13,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-2,0,1545,-16,0,0 +2013,5,19,7,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-7,0,1235,-17,0,0 +2013,5,18,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,0,0,1855,-18,0,0 +2013,7,1,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,65,1,938,70,1,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1924,-2,0,2246,0,0,0 +2013,7,21,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,2150,91,1,2305,79,1,0 +2013,8,30,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-2,0,1943,13,0,0 +2013,8,31,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1525,4,0,1859,3,0,0 +2013,5,23,4,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,600,0,0,840,-16,0,0 +2013,4,19,5,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-10,0,1012,-16,0,0 +2013,8,25,7,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,618,31,1,1220,11,0,0 +2013,10,18,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-6,0,1007,-13,0,0 +2013,5,17,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,2118,-6,0,2326,-7,0,0 +2013,9,4,3,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1716,-15,0,1845,-18,0,0 +2013,5,25,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,7,0,1955,-6,0,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1840,12,0,2100,6,0,0 +2013,10,28,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,2,0,1205,5,0,0 +2013,10,8,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,12,0,1820,12,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,5,0,1711,33,1,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,36,1,1540,19,1,0 +2013,6,12,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1857,27,1,2027,33,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1410,0,0,1425,-5,0,0 +2013,4,26,5,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,715,-4,0,0 +2013,8,26,1,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-6,0,1540,-19,0,0 +2013,10,7,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,722,25,1,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,800,9,0,1240,3,0,0 +2013,8,4,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1555,12,0,1710,5,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,745,19,1,1005,21,1,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1543,0,0,1742,-12,0,0 +2013,4,9,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,645,-3,0,940,-11,0,0 +2013,6,10,1,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1150,22,1,1430,15,1,0 +2013,9,16,1,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1345,-9,0,1633,-17,0,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1015,-2,0,1037,-19,0,0 +2013,5,8,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,0,,1801,0,1,1 +2013,5,20,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1715,1,0,2100,1,0,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1200,1,0,2030,-16,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1700,3,0,1805,-2,0,0 +2013,6,17,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1230,-4,0,1405,-7,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-9,0,1440,-11,0,0 +2013,10,21,1,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,3,0,910,6,0,0 +2013,5,25,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1436,-6,0,1654,-11,0,0 +2013,6,21,5,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,717,-5,0,902,-2,0,0 +2013,5,29,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-9,0,1327,-19,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,838,-2,0,858,27,1,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,705,-4,0,936,-8,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,3,0,2340,10,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,2,0,1605,-7,0,0 +2013,5,21,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,2,0,1127,-12,0,0 +2013,6,24,1,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-3,0,2145,-13,0,0 +2013,9,4,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-7,0,1756,-4,0,0 +2013,10,15,2,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1745,14,0,1950,4,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-2,0,1155,19,1,0 +2013,8,28,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1132,2,0,1438,-6,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,-1,0,725,-10,0,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1740,25,1,1905,15,1,0 +2013,7,28,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,0,,850,0,1,1 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1940,11,0,2205,-4,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1910,15,1,2206,41,1,0 +2013,7,17,3,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,12,0,1937,22,1,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1609,14,0,1835,-7,0,0 +2013,10,27,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1703,38,1,1818,34,1,0 +2013,6,8,6,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,830,0,,1005,0,1,1 +2013,9,14,6,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,817,-6,0,1114,-9,0,0 +2013,5,23,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,605,-8,0,759,-17,0,0 +2013,10,28,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,-6,0,1533,-10,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-11,0,228,-4,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2045,6,0,2354,3,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,600,-6,0,1401,-9,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,9,0,2345,-11,0,0 +2013,6,16,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-7,0,1220,-5,0,0 +2013,7,9,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1546,184,1,2359,180,1,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1830,1,0,5,12,0,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,950,2,0,1055,6,0,0 +2013,6,6,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,630,-1,0,1459,-11,0,0 +2013,6,19,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,9,0,2025,15,1,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,855,-1,0,1025,-2,0,0 +2013,4,14,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1052,1,0,1224,-9,0,0 +2013,8,1,4,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,-1,0,1631,3,0,0 +2013,10,11,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1744,2,0,2116,-5,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1700,-7,0,1839,-11,0,0 +2013,4,1,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,-15,0,2106,-9,0,0 +2013,10,9,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1219,-14,0,0 +2013,5,16,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1322,1,0,1537,-3,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1752,6,0,1953,5,0,0 +2013,4,25,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1455,3,0,2342,-5,0,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,615,2,0,730,1,0,0 +2013,7,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-1,0,1055,-2,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,-6,0,2128,-10,0,0 +2013,5,19,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1835,-4,0,1930,-13,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,3,0,1042,-13,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1235,16,1,1400,11,0,0 +2013,7,16,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-7,0,1538,-21,0,0 +2013,4,22,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1330,-9,0,1519,-11,0,0 +2013,10,10,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1030,0,0,1250,-3,0,0 +2013,7,29,1,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1643,38,1,1907,18,1,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1223,-3,0,1451,-18,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-4,0,1650,-19,0,0 +2013,7,11,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,-6,0,2030,7,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1601,15,1,1930,7,0,0 +2013,7,7,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,640,73,1,807,64,1,0 +2013,7,10,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,188,1,1913,188,1,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,900,0,0,1010,0,0,0 +2013,6,29,6,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2059,113,1,2226,105,1,0 +2013,8,20,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1800,-4,0,1848,1,0,0 +2013,4,5,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,1,0,1118,-13,0,0 +2013,5,7,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1744,-2,0,1955,-5,0,0 +2013,8,15,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,0,0,1550,-4,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2040,-5,0,2140,-7,0,0 +2013,7,3,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1820,1,0,1857,2,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,730,-3,0,1056,-18,0,0 +2013,10,19,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1825,-3,0,2013,9,0,0 +2013,9,22,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,28,1,2226,11,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,181,1,2236,159,1,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,6,0,2230,-4,0,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-5,0,1900,-10,0,0 +2013,10,4,5,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-2,0,2116,-31,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1106,18,1,1223,5,0,0 +2013,10,4,5,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-11,0,1915,-16,0,0 +2013,4,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,723,-2,0,1126,1,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1604,-1,0,1938,-13,0,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-6,0,1818,-22,0,0 +2013,8,30,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1030,17,1,1359,6,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1610,3,0,1620,5,0,0 +2013,8,21,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,607,-8,0,1400,-9,0,0 +2013,4,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1330,9,0,1440,-2,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1735,17,1,1831,21,1,0 +2013,7,25,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,0,,1114,0,1,1 +2013,7,3,3,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-7,0,900,-18,0,0 +2013,6,21,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1454,-6,0,1710,-28,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,632,-6,0,812,-22,0,0 +2013,8,29,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,2,0,1549,0,0,0 +2013,4,3,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-3,0,1655,-4,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2010,9,0,2303,-7,0,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1410,108,1,2145,99,1,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,730,2,0,950,-8,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,-5,0,1209,13,0,0 +2013,6,3,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-7,0,1244,-2,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2100,-9,0,2203,-14,0,0 +2013,7,26,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,19,1,930,7,0,0 +2013,9,13,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1410,52,1,1705,53,1,0 +2013,9,18,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,-3,0,1536,14,0,0 +2013,9,29,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,920,-9,0,1308,0,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,-3,0,2250,-12,0,0 +2013,10,27,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,750,-2,0,840,-2,0,0 +2013,9,17,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,715,-9,0,735,-17,0,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,849,-5,0,1517,-8,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,6,0,1625,-12,0,0 +2013,7,14,7,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,546,-6,0,759,-2,0,0 +2013,4,6,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,0,0,1747,-2,0,0 +2013,4,5,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1137,-4,0,1420,-2,0,0 +2013,8,10,6,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1625,-18,0,0 +2013,7,2,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1322,-11,0,1539,-9,0,0 +2013,4,20,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,0,0,2100,-7,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,37,1,1430,43,1,0 +2013,9,24,2,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,947,-8,0,1259,-20,0,0 +2013,10,7,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1350,14,0,1450,18,1,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,805,-7,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,1,0,1819,1,0,0 +2013,7,25,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1554,-15,0,0 +2013,9,12,4,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1413,0,,1630,0,1,1 +2013,5,20,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1250,-10,0,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1701,1,0,1824,-9,0,0 +2013,7,10,3,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1033,134,1,1221,163,1,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1534,-5,0,1817,-4,0,0 +2013,10,14,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,-5,0,1327,-14,0,0 +2013,7,24,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1505,-5,0,0 +2013,7,8,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1600,-2,0,1721,6,0,0 +2013,8,14,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1921,-6,0,2050,-9,0,0 +2013,7,27,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,59,1,1205,59,1,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1405,69,1,1650,83,1,0 +2013,6,4,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1249,0,0,1357,10,0,0 +2013,9,2,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-3,0,1010,-28,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,5,0,2255,-2,0,0 +2013,9,21,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-4,0,1725,-8,0,0 +2013,4,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,-3,0,2350,-9,0,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2030,-4,0,2145,-24,0,0 +2013,7,12,5,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-7,0,1035,-28,0,0 +2013,9,11,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,833,-6,0,0 +2013,5,11,6,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-8,0,1751,-12,0,0 +2013,10,15,2,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,22,1,647,-15,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1045,0,0,1145,-5,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1730,40,1,1832,32,1,0 +2013,6,6,4,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,202,1,1937,221,1,0 +2013,10,30,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1526,-2,0,1653,-4,0,0 +2013,10,1,2,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2020,-6,0,2130,-11,0,0 +2013,8,10,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-1,0,1410,-8,0,0 +2013,6,4,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1534,2,0,1659,1,0,0 +2013,4,21,7,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,-1,0,1218,-6,0,0 +2013,7,9,2,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1840,35,1,1936,40,1,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2135,0,,2300,0,1,1 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,0,0,1250,-16,0,0 +2013,8,10,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,600,-10,0,642,-16,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1600,74,1,1737,54,1,0 +2013,4,27,6,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1630,-5,0,1953,-63,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,810,-2,0,1020,-32,0,0 +2013,6,9,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,0,0,2009,-7,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,4,0,1010,-3,0,0 +2013,6,28,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1730,31,1,1825,27,1,0 +2013,4,11,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-4,0,1602,34,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-5,0,924,-13,0,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1735,11,0,1900,-1,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1000,-3,0,1209,-11,0,0 +2013,8,17,6,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1951,12,0,2229,-8,0,0 +2013,9,19,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1240,6,0,1335,-3,0,0 +2013,9,23,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-2,0,1020,6,0,0 +2013,5,22,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1120,3,0,1250,-7,0,0 +2013,9,10,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-2,0,1628,-19,0,0 +2013,9,15,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1620,-10,0,1745,-16,0,0 +2013,6,12,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,15,1,1212,8,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,905,-5,0,1337,-23,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,-5,0,939,10,0,0 +2013,7,27,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,942,-9,0,1121,11,0,0 +2013,10,27,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,730,15,1,850,14,0,0 +2013,5,23,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,0,0,1120,-8,0,0 +2013,5,11,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1205,-3,0,1315,-8,0,0 +2013,8,24,6,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1352,0,0,1512,3,0,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-5,0,1450,-10,0,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1134,16,1,2006,10,0,0 +2013,4,21,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1959,13,0,2141,47,1,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1645,2,0,2020,19,1,0 +2013,9,29,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,-1,0,1323,1,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1905,21,1,2200,3,0,0 +2013,10,1,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-6,0,1412,-23,0,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-1,0,1832,-5,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-8,0,2322,-6,0,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2100,-4,0,2301,-14,0,0 +2013,4,25,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,43,1,1750,32,1,0 +2013,10,29,2,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,945,-5,0,1230,18,1,0 +2013,8,2,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-10,0,2359,-4,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1235,4,0,1455,-8,0,0 +2013,9,23,1,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-7,0,1725,-12,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,830,-6,0,1404,3,0,0 +2013,10,26,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1107,0,0,1217,-6,0,0 +2013,9,30,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,630,0,0,745,8,0,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,840,1,0,1010,-9,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,951,-10,0,1319,-16,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,2,0,1622,11,0,0 +2013,4,2,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,650,1,0,755,-6,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1020,0,0,1215,-8,0,0 +2013,4,6,6,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1215,93,1,1350,96,1,0 +2013,6,24,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1100,2,0,1315,16,1,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,605,0,0,906,-3,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1032,-2,0,1208,2,0,0 +2013,6,15,6,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,-2,0,1150,-6,0,0 +2013,6,1,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,755,0,0,1308,-18,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-5,0,1321,-21,0,0 +2013,9,29,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1135,-10,0,1251,-10,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1640,107,1,1800,103,1,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,28,1,1941,29,1,0 +2013,7,25,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-8,0,1008,10,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-4,0,2335,-8,0,0 +2013,5,17,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1115,-6,0,1341,-19,0,0 +2013,9,23,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,7,0,1229,-13,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2123,18,1,2255,11,0,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,9,0,20,6,0,0 +2013,9,5,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,-7,0,2018,-20,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1855,0,0,2323,-17,0,0 +2013,7,11,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1955,45,1,2145,42,1,0 +2013,9,15,7,OO,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1809,83,1,2214,75,1,0 +2013,4,8,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-7,0,1019,10,0,0 +2013,10,10,4,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,822,-3,0,1615,-27,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1044,15,1,1401,-6,0,0 +2013,5,31,5,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-8,0,923,-4,0,0 +2013,4,29,1,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,48,1,2000,51,1,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1935,-6,0,2110,-16,0,0 +2013,7,7,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,740,65,1,839,52,1,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-4,0,1110,-31,0,0 +2013,5,13,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1755,16,1,1930,10,0,0 +2013,8,7,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1945,65,1,2104,40,1,0 +2013,7,21,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2006,75,1,2156,74,1,0 +2013,10,17,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1929,3,0,2140,-10,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,143,1,2343,126,1,0 +2013,4,10,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,12,0,1000,3,0,0 +2013,4,14,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,3,0,2012,10,0,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-10,0,817,-8,0,0 +2013,8,12,1,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,1,0,1105,-7,0,0 +2013,8,15,4,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1631,37,1,1904,22,1,0 +2013,6,16,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1858,-6,0,2047,0,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,935,16,1,1118,16,1,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1740,-3,0,1850,10,0,0 +2013,8,23,5,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,2035,-4,0,2201,-39,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1235,0,0,1436,1,0,0 +2013,5,1,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1105,-4,0,1636,-15,0,0 +2013,9,7,6,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,604,-7,0,846,-7,0,0 +2013,4,25,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1407,9,0,1524,6,0,0 +2013,8,29,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1737,-2,0,1849,-16,0,0 +2013,4,27,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,740,10,0,1110,-19,0,0 +2013,7,13,6,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1054,71,1,1317,74,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,-5,0,1415,-14,0,0 +2013,8,21,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-5,0,1345,-11,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,-4,0,2352,-10,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-2,0,1000,-10,0,0 +2013,10,16,3,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,935,-4,0,1155,-13,0,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-5,0,1122,-24,0,0 +2013,7,4,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,645,-7,0,844,-21,0,0 +2013,10,21,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,8,0,1950,1,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,-4,0,915,5,0,0 +2013,5,13,1,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1040,9,0,1245,6,0,0 +2013,9,24,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-1,0,1111,-4,0,0 +2013,7,9,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,600,9,0,1130,42,1,0 +2013,8,10,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1024,-1,0,1416,-2,0,0 +2013,6,16,7,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,745,23,1,926,48,1,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2125,1,0,2350,-5,0,0 +2013,4,12,5,DL,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-4,0,918,-20,0,0 +2013,7,25,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1601,47,1,1722,71,1,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2150,0,0,2315,-4,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,712,-4,0,830,-7,0,0 +2013,8,4,7,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2119,-3,0,15,-25,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,755,-2,0,1135,7,0,0 +2013,7,7,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1006,1,0,1131,-22,0,0 +2013,5,2,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1501,-3,0,1552,-14,0,0 +2013,7,24,3,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-3,0,1655,-7,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2154,134,1,2330,126,1,0 +2013,8,25,7,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,730,-3,0,1020,-48,0,0 +2013,7,10,3,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1815,0,,2336,0,1,1 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1317,4,0,1540,-11,0,0 +2013,10,21,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,3,0,1115,2,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-3,0,1111,-5,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,615,-2,0,825,-8,0,0 +2013,10,27,7,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1840,-1,0,2118,11,0,0 +2013,7,2,2,EV,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-4,0,830,-17,0,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1045,96,1,1210,96,1,0 +2013,7,9,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,0,0,1800,-21,0,0 +2013,10,2,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-13,0,1630,-8,0,0 +2013,4,12,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,1009,-12,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1201,-4,0,1304,3,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1510,33,1,1630,26,1,0 +2013,4,12,5,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-9,0,1816,-9,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,-4,0,2056,-18,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,178,1,1750,157,1,0 +2013,8,28,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1315,-10,0,1423,-12,0,0 +2013,7,18,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,847,-4,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,1,0,1014,-1,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2054,78,1,2354,68,1,0 +2013,7,26,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,924,-9,0,0 +2013,6,11,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-3,0,2210,-4,0,0 +2013,9,17,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-4,0,1040,-8,0,0 +2013,4,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1706,-3,0,1840,-20,0,0 +2013,6,13,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-8,0,925,-14,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,-4,0,1102,-27,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,752,-4,0,929,-5,0,0 +2013,7,31,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-5,0,733,2,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,-2,0,1125,-4,0,0 +2013,6,7,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,715,-7,0,821,-19,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,0,0,2112,11,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1355,30,1,1545,42,1,0 +2013,4,21,7,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,915,0,0,1205,-2,0,0 +2013,6,1,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-1,0,900,-18,0,0 +2013,6,12,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,600,0,0,720,1,0,0 +2013,7,22,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1710,159,1,2035,171,1,0 +2013,10,5,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1215,-12,0,1353,-32,0,0 +2013,8,1,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1008,11,0,1412,14,0,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1945,18,1,2115,8,0,0 +2013,9,8,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1205,-12,0,2024,-2,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1900,-1,0,2024,-22,0,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1434,26,1,1955,32,1,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1505,-1,0,1640,-8,0,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,610,2,0,940,-15,0,0 +2013,4,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,910,4,0,1100,-15,0,0 +2013,4,1,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,-4,0,1819,3,0,0 +2013,8,29,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1520,0,0,1750,0,0,0 +2013,4,3,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,820,-5,0,948,-10,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-1,0,1115,-28,0,0 +2013,9,13,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,940,37,1,1155,17,1,0 +2013,9,2,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1411,44,1,1702,31,1,0 +2013,9,28,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1710,-2,0,2045,-31,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2045,-6,0,2219,-17,0,0 +2013,9,17,2,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,624,-6,0,751,-9,0,0 +2013,5,28,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-7,0,1954,-13,0,0 +2013,5,27,1,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,816,-4,0,1358,-18,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1005,-1,0,1110,-6,0,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1745,-2,0,1940,-30,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,10,0,1026,5,0,0 +2013,6,28,5,OO,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1217,1,0,1318,10,0,0 +2013,8,20,2,9E,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2008,51,1,2329,47,1,0 +2013,4,21,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,11,0,2000,1,0,0 +2013,8,21,3,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-4,0,1218,-21,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,13,0,2035,-5,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,641,-9,0,800,-5,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,9,0,938,-11,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2050,36,1,2230,43,1,0 +2013,5,8,3,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1445,59,1,1520,56,1,0 +2013,9,21,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1035,-1,0,1130,3,0,0 +2013,4,5,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1655,-1,0,1828,-5,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,2,0,2225,7,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-5,0,1545,-19,0,0 +2013,6,10,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,725,15,1,850,8,0,0 +2013,9,20,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,230,14,0,704,10,0,0 +2013,7,6,6,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,712,-5,0,911,-14,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,2010,22,1,2320,8,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,11,0,1255,12,0,0 +2013,4,13,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2038,-6,0,2159,-24,0,0 +2013,5,4,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-6,0,902,-1,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1335,2,0,1520,4,0,0 +2013,5,7,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,950,-1,0,1043,-6,0,0 +2013,6,13,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,835,4,0,1055,8,0,0 +2013,4,3,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,-2,0,1658,-4,0,0 +2013,7,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,0,0,1545,-4,0,0 +2013,9,25,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1935,-2,0,2035,5,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1954,-2,0,2123,14,0,0 +2013,5,6,1,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,-6,0,608,26,1,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2215,-6,0,2335,-17,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,955,61,1,1125,57,1,0 +2013,7,5,5,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-4,0,1105,-2,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2020,18,1,2235,12,0,0 +2013,8,14,3,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-1,0,1415,-2,0,0 +2013,9,7,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,815,-2,0,1112,-29,0,0 +2013,5,16,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,603,-9,0,752,-24,0,0 +2013,7,28,7,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-10,0,1754,-21,0,0 +2013,8,18,7,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1410,0,0,1530,-2,0,0 +2013,9,18,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-8,0,1415,-12,0,0 +2013,9,6,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,648,-2,0,841,-12,0,0 +2013,10,1,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,650,-2,0,755,-7,0,0 +2013,7,6,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2005,-11,0,2210,-21,0,0 +2013,6,28,5,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,100,1,1345,84,1,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1439,-5,0,1725,-13,0,0 +2013,4,5,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,1350,-2,0,0 +2013,9,12,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1910,13,0,2040,37,1,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1950,32,1,2330,52,1,0 +2013,4,4,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1550,13,0,1640,12,0,0 +2013,6,4,2,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1530,0,0,1635,0,0,0 +2013,9,20,5,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-9,0,1021,-33,0,0 +2013,9,5,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1530,25,1,1540,19,1,0 +2013,7,30,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2035,-6,0,2045,-15,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1746,11,0,1955,-14,0,0 +2013,9,27,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,-2,0,2200,-7,0,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2031,-9,0,2348,-36,0,0 +2013,6,7,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-5,0,1020,-12,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,19,1,2308,14,0,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,715,8,0,920,13,0,0 +2013,8,19,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-4,0,1229,-7,0,0 +2013,9,30,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1445,12,0,1811,-3,0,0 +2013,4,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1505,0,0,1615,1,0,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1022,-7,0,1146,-5,0,0 +2013,4,10,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1245,140,1,1445,242,1,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1730,0,0,2019,-9,0,0 +2013,8,11,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1028,-17,0,0 +2013,8,3,6,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1410,2,0,1820,43,1,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,847,-4,0,1158,-5,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-4,0,1029,-13,0,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,905,4,0,1150,9,0,0 +2013,6,2,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-1,0,1435,0,0,0 +2013,9,30,1,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,610,19,1,1115,15,1,0 +2013,9,12,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,0,0,1035,-2,0,0 +2013,9,15,7,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,-10,0,945,-25,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2015,0,0,2202,1,0,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1732,-1,0,1908,-2,0,0 +2013,8,31,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,713,-7,0,922,3,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,0,0,2217,12,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1800,3,0,2040,-2,0,0 +2013,9,25,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1830,0,0,2115,-1,0,0 +2013,5,3,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,655,-5,0,741,-9,0,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,629,-5,0,818,-13,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-2,0,1722,-21,0,0 +2013,6,22,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1545,28,1,1735,18,1,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1100,1,0,1937,-20,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-1,0,953,-11,0,0 +2013,7,9,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,0,0,1145,2,0,0 +2013,10,6,7,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1440,4,0,1720,-6,0,0 +2013,8,5,1,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1435,-2,0,1655,0,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1939,-7,0,2110,-13,0,0 +2013,7,27,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2040,-3,0,2313,-14,0,0 +2013,4,4,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1445,-1,0,1600,-5,0,0 +2013,4,18,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,13,0,805,19,1,0 +2013,4,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1525,-3,0,1650,-10,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,720,-4,0,945,-7,0,0 +2013,10,23,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,14,0,1846,7,0,0 +2013,6,30,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-6,0,1345,-22,0,0 +2013,9,19,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2123,0,,2333,0,1,1 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,138,1,2320,113,1,0 +2013,7,29,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,12,0,1845,14,0,0 +2013,7,7,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1705,-1,0,1830,-6,0,0 +2013,4,14,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,0,0,920,15,1,0 +2013,7,9,2,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-1,0,603,-5,0,0 +2013,4,11,4,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-2,0,859,16,1,0 +2013,10,22,2,EV,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-2,0,1141,-13,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,0,0,2212,4,0,0 +2013,9,23,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,52,1,1633,41,1,0 +2013,6,18,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,4,0,715,21,1,0 +2013,7,10,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,28,1,1749,27,1,0 +2013,7,9,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2029,3,0,453,-18,0,0 +2013,7,2,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,59,147,1,914,173,1,0 +2013,5,22,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,-3,0,1652,23,1,0 +2013,6,24,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-4,0,1036,4,0,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1721,-6,0,2244,-27,0,0 +2013,7,12,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1534,-4,0,1930,11,0,0 +2013,4,21,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,1,0,1605,-7,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,59,1,1517,84,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1105,-5,0,1345,-4,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1919,119,1,2359,91,1,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,12,0,20,15,1,0 +2013,4,1,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,8,0,1840,11,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1555,-1,0,1705,0,0,0 +2013,9,4,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-2,0,1702,-22,0,0 +2013,7,16,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,2,0,2225,34,1,0 +2013,9,27,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1224,-8,0,1512,-18,0,0 +2013,8,12,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,823,-1,0,1034,2,0,0 +2013,9,21,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-6,0,2125,-21,0,0 +2013,9,10,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-8,0,1101,-27,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,900,5,0,1155,11,0,0 +2013,6,7,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,82,1,2043,82,1,0 +2013,5,2,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,955,-3,0,1110,-4,0,0 +2013,5,28,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-5,0,1409,-4,0,0 +2013,10,1,2,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,705,-6,0,819,-4,0,0 +2013,8,6,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,0,0,1325,-14,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,5,0,2115,-1,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,-4,0,40,0,0,0 +2013,6,30,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,58,1,1329,77,1,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,0,0,2359,8,0,0 +2013,7,27,6,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1500,-1,0,1720,-6,0,0 +2013,6,6,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2005,-6,0,2147,-12,0,0 +2013,5,21,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,645,-5,0,928,-2,0,0 +2013,4,6,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1129,0,0,1226,-10,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,205,1,1325,211,1,0 +2013,4,14,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1025,0,0,1035,-5,0,0 +2013,7,10,3,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,730,-2,0,920,-3,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,4,0,1050,-2,0,0 +2013,9,8,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1737,1,0,2020,2,0,0 +2013,5,8,3,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1230,-5,0,1605,-15,0,0 +2013,7,6,6,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-4,0,840,-2,0,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,956,-9,0,1607,-16,0,0 +2013,9,6,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1007,-5,0,1155,-17,0,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2030,13,0,2320,24,1,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,630,-9,0,816,-27,0,0 +2013,6,27,4,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,2,0,1625,-21,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-5,0,1105,-10,0,0 +2013,5,22,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1653,0,,1738,0,1,1 +2013,4,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1530,-6,0,1550,-19,0,0 +2013,5,9,4,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,8,0,1620,0,0,0 +2013,5,23,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2150,57,1,2315,53,1,0 +2013,5,4,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-1,0,1111,-10,0,0 +2013,10,28,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1204,-4,0,1439,-6,0,0 +2013,10,27,7,OO,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1349,46,1,1459,37,1,0 +2013,5,21,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,1,0,1128,-11,0,0 +2013,6,11,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,2010,-1,0,2105,-2,0,0 +2013,5,15,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-4,0,647,11,0,0 +2013,6,15,6,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2100,-3,0,2325,12,0,0 +2013,9,24,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1835,33,1,2100,22,1,0 +2013,8,21,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1925,37,1,2105,41,1,0 +2013,5,26,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,830,-4,0,929,-10,0,0 +2013,8,4,7,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,1846,23,1,1946,18,1,0 +2013,5,29,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-6,0,1505,-10,0,0 +2013,5,19,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,25,1,1755,22,1,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2145,-4,0,7,-10,0,0 +2013,7,9,2,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1212,12,0,1503,4,0,0 +2013,10,28,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,739,-10,0,0 +2013,10,19,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,10,0,1855,-5,0,0 +2013,8,21,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-2,0,1019,-1,0,0 +2013,4,12,5,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1815,266,1,1948,248,1,0 +2013,8,22,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,34,1,2030,35,1,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2240,2,0,635,-15,0,0 +2013,8,24,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-5,0,950,-6,0,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1210,62,1,1425,66,1,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-7,0,1024,-4,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,143,1,1330,138,1,0 +2013,7,26,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,26,1,2025,19,1,0 +2013,8,4,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1824,0,0,2010,0,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1405,-1,0,1840,-4,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,610,-1,0,720,-4,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1810,7,0,1905,-1,0,0 +2013,10,3,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1400,-8,0,1434,-6,0,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2010,2,0,2135,12,0,0 +2013,8,20,2,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1711,-5,0,2015,0,0,0 +2013,5,6,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1544,2,0,1700,-6,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,0,0,850,-14,0,0 +2013,5,16,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,810,0,0,935,-6,0,0 +2013,5,8,3,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,838,28,1,1008,17,1,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-3,0,851,-23,0,0 +2013,9,26,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1415,1,0,1556,-12,0,0 +2013,5,20,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,14,0,2015,13,0,0 +2013,10,31,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1346,-7,0,1555,0,0,0 +2013,10,10,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,821,-2,0,0 +2013,7,4,4,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1340,-5,0,1925,-10,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2245,-2,0,630,-7,0,0 +2013,10,3,4,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1716,15,1,1840,3,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,825,1,0,945,11,0,0 +2013,7,27,6,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1840,-11,0,2150,11,0,0 +2013,7,25,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1227,-9,0,0 +2013,6,6,4,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,930,-4,0,1255,-6,0,0 +2013,7,22,1,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1357,76,1,1429,65,1,0 +2013,5,1,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,-2,0,2209,-15,0,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1825,53,1,2121,53,1,0 +2013,10,14,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-1,0,1055,-6,0,0 +2013,8,28,3,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-5,0,1615,-5,0,0 +2013,5,21,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1126,31,1,1425,12,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1609,0,0,1739,-18,0,0 +2013,8,26,1,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,4,0,1857,-34,0,0 +2013,4,11,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,655,-5,0,918,-17,0,0 +2013,8,20,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1747,-1,0,1950,-6,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1803,10,0,1944,10,0,0 +2013,7,19,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1440,-2,0,1612,-2,0,0 +2013,4,30,2,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,900,-2,0,1153,-28,0,0 +2013,7,24,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,640,-1,0,710,-8,0,0 +2013,7,12,5,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1840,11,0,1936,13,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1018,0,0,1148,-10,0,0 +2013,6,22,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1705,11,0,2030,-29,0,0 +2013,8,23,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1605,-4,0,1805,-13,0,0 +2013,4,23,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-5,0,1450,12,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-2,0,1119,-12,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1640,18,1,1745,9,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1000,-3,0,1217,-10,0,0 +2013,8,5,1,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,606,-8,0,755,-8,0,0 +2013,10,19,6,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,-4,0,729,-10,0,0 +2013,9,26,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2140,-3,0,2259,-15,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1530,21,1,2000,23,1,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2040,29,1,2220,15,1,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1435,-2,0,2140,-12,0,0 +2013,10,3,4,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1129,-5,0,1504,-5,0,0 +2013,9,10,2,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,2007,-14,0,2156,-31,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2120,12,0,2240,14,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1415,-1,0,2205,5,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,749,-5,0,1041,-15,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,853,-7,0,1254,-12,0,0 +2013,9,6,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,1402,-9,0,0 +2013,10,23,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1140,1,0,1420,-5,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,745,-2,0,931,0,0,0 +2013,6,18,2,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,15,1,1655,44,1,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-3,0,1300,15,1,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1715,-3,0,2000,2,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,70,1,1030,55,1,0 +2013,7,15,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,600,1,0,725,-11,0,0 +2013,5,19,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,630,-3,0,840,-15,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2200,-5,0,2255,-5,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,855,-7,0,1337,-5,0,0 +2013,8,25,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,956,-2,0,1600,3,0,0 +2013,9,5,4,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1952,-3,0,2223,-30,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1300,24,1,1455,17,1,0 +2013,10,17,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,1,0,842,-1,0,0 +2013,10,15,2,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1805,-11,0,1926,2,0,0 +2013,8,14,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-3,0,2000,15,1,0 +2013,4,1,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,0,0,1923,-2,0,0 +2013,7,16,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1520,8,0,1800,9,0,0 +2013,7,29,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1235,2,0,1415,27,1,0 +2013,4,30,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1710,-4,0,1745,-19,0,0 +2013,9,28,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-4,0,1055,-36,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,3,0,1520,-12,0,0 +2013,8,6,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1501,-1,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1920,8,0,2043,7,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,-1,0,1240,-8,0,0 +2013,6,1,6,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1409,-1,0,1618,-10,0,0 +2013,7,17,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,935,9,0,1130,16,1,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-2,0,2304,-11,0,0 +2013,5,30,4,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,610,-7,0,737,-18,0,0 +2013,10,3,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1035,-2,0,1131,8,0,0 +2013,10,9,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1850,12,0,1955,-2,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2211,-3,0,2333,27,1,0 +2013,5,11,6,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1230,-1,0,1517,-23,0,0 +2013,9,2,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,-6,0,1500,1,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2115,30,1,20,21,1,0 +2013,10,12,6,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,755,17,1,1212,14,0,0 +2013,8,21,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,715,1,0,825,-6,0,0 +2013,4,30,2,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-3,0,950,-4,0,0 +2013,6,9,7,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1230,10,0,1451,-7,0,0 +2013,8,28,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1852,-7,0,2007,-11,0,0 +2013,7,18,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11618,Newark Liberty International,Newark,NJ,1400,-8,0,1529,2,0,0 +2013,4,15,1,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2204,6,0,2356,0,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,-2,0,1205,-9,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-7,0,926,-3,0,0 +2013,9,12,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1816,104,1,1930,110,1,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,44,1,2000,40,1,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,71,1,957,73,1,0 +2013,4,26,5,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2045,57,1,2219,35,1,0 +2013,5,10,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1655,53,1,1831,39,1,0 +2013,9,15,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,1,0,1849,-5,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,0,0,1918,-25,0,0 +2013,9,13,5,FL,13244,Memphis International,Memphis,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1609,-3,0,1915,2,0,0 +2013,9,14,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1750,8,0,2025,-3,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1120,-4,0,1306,-6,0,0 +2013,7,24,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,18,1,805,14,0,0 +2013,9,25,3,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1845,0,0,2123,-17,0,0 +2013,5,18,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1205,-6,0,1750,-26,0,0 +2013,10,18,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1745,-6,0,2045,-8,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1320,-2,0,1505,8,0,0 +2013,10,30,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,959,-4,0,1132,14,0,0 +2013,9,11,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,5,0,1820,-7,0,0 +2013,4,19,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1013,-4,0,1412,-7,0,0 +2013,8,4,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,825,-1,0,957,1,0,0 +2013,10,23,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1317,-7,0,1445,-13,0,0 +2013,6,23,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1025,3,0,1030,-3,0,0 +2013,7,23,2,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-1,0,1239,1,0,0 +2013,8,27,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1129,-9,0,1228,-14,0,0 +2013,6,10,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,7,0,1612,13,0,0 +2013,4,28,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-4,0,2213,-10,0,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1933,-3,0,2245,-18,0,0 +2013,6,10,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,75,1,1245,65,1,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1650,9,0,1815,7,0,0 +2013,4,14,7,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1115,5,0,1300,14,0,0 +2013,6,21,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,952,-5,0,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,17,1,1135,4,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,0,,1634,0,1,1 +2013,7,4,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,625,-3,0,740,-1,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2050,1,0,2355,-8,0,0 +2013,5,30,4,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1714,4,0,1923,7,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-8,0,2205,-17,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1645,10,0,1915,20,1,0 +2013,8,31,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,2,0,1700,1,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1850,34,1,2019,25,1,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,935,-1,0,1245,-19,0,0 +2013,6,5,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1016,-4,0,0 +2013,7,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,630,1,0,955,-3,0,0 +2013,7,19,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1320,5,0,1325,10,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,1,0,1635,0,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,-6,0,1725,-3,0,0 +2013,4,8,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-10,0,1607,14,0,0 +2013,9,19,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1609,-8,0,1732,-18,0,0 +2013,8,21,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1830,81,1,2110,80,1,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,210,1,2300,205,1,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1515,5,0,1620,-1,0,0 +2013,10,17,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,814,-7,0,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1615,31,1,2045,30,1,0 +2013,6,13,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1850,33,1,2020,15,1,0 +2013,5,14,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1601,16,1,1746,6,0,0 +2013,9,2,1,EV,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1907,-5,0,2027,-21,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1140,0,0,2015,12,0,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2155,18,1,2305,18,1,0 +2013,9,27,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,740,-4,0,900,-18,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1250,-3,0,1500,2,0,0 +2013,6,22,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,-5,0,1830,-4,0,0 +2013,6,29,6,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,815,-6,0,1107,-12,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,731,0,0,1057,-13,0,0 +2013,8,4,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,740,1,0,950,-10,0,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,14,0,1232,9,0,0 +2013,8,26,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-11,0,1952,-14,0,0 +2013,4,28,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1210,2,0,1345,-7,0,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1704,21,1,1814,20,1,0 +2013,4,1,1,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1850,8,0,2151,-11,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1935,2,0,2242,-9,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2200,-1,0,2345,-6,0,0 +2013,7,15,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,625,-3,0,858,-33,0,0 +2013,4,12,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1000,9,0,1216,-8,0,0 +2013,4,2,2,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,6,0,1725,-21,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-2,0,1250,-19,0,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2105,0,0,2225,37,1,0 +2013,9,1,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-7,0,2152,1,0,0 +2013,4,11,4,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1405,-6,0,2215,8,0,0 +2013,10,17,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1430,-1,0,1551,-2,0,0 +2013,4,3,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-8,0,2113,-5,0,0 +2013,10,9,3,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,16,1,1510,14,0,0 +2013,4,16,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-9,0,920,-3,0,0 +2013,9,19,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1220,-2,0,0 +2013,10,15,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,0,0,805,-3,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1005,9,0,1250,1,0,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,630,1,0,830,-27,0,0 +2013,10,1,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,830,-16,0,0 +2013,10,29,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1628,-9,0,1900,-2,0,0 +2013,6,12,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,131,1,2050,133,1,0 +2013,6,5,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,-10,0,2130,-6,0,0 +2013,10,11,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1759,-4,0,2115,-17,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,1,0,2235,-13,0,0 +2013,7,28,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1425,3,0,1749,1,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,810,0,,1032,0,1,1 +2013,8,3,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1340,-5,0,1435,-11,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1210,-3,0,1405,-32,0,0 +2013,6,26,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1651,0,0,1812,-1,0,0 +2013,10,20,7,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-7,0,1540,-9,0,0 +2013,5,30,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-6,0,1050,-4,0,0 +2013,4,23,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,0,0,935,1,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,855,-6,0,1542,-14,0,0 +2013,8,4,7,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,925,-1,0,1105,-7,0,0 +2013,9,9,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,33,1,1435,21,1,0 +2013,8,23,5,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,-9,0,842,5,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,700,0,0,930,-27,0,0 +2013,9,6,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,2134,10,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,47,1,2114,31,1,0 +2013,9,23,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1740,-9,0,1905,-14,0,0 +2013,8,22,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,-4,0,1731,0,0,0 +2013,10,14,1,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1625,-2,0,1707,0,0,0 +2013,5,24,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1949,10,0,2100,13,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2108,-6,0,2205,6,0,0 +2013,8,1,4,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,16,1,932,13,0,0 +2013,4,29,1,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-7,0,1859,-31,0,0 +2013,6,10,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-4,0,1534,-12,0,0 +2013,8,11,7,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,855,-1,0,1037,4,0,0 +2013,5,10,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1815,26,1,2125,25,1,0 +2013,10,4,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-3,0,1820,12,0,0 +2013,9,10,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1455,6,0,1630,0,0,0 +2013,9,27,5,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1446,3,0,1706,-7,0,0 +2013,5,18,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-5,0,543,11,0,0 +2013,10,5,6,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,740,0,0,1110,-7,0,0 +2013,9,28,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,0,,1420,0,1,1 +2013,10,16,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,-2,0,1910,-13,0,0 +2013,10,22,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1725,40,1,1827,32,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,959,-4,0,1237,-13,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,15,1,1439,10,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2200,15,1,2315,13,0,0 +2013,10,12,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,-4,0,1730,-7,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1420,17,1,1520,11,0,0 +2013,10,13,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,8,0,1417,11,0,0 +2013,9,19,4,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,955,7,0,1445,24,1,0 +2013,9,29,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-6,0,1609,15,1,0 +2013,4,26,5,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,605,-3,0,855,-15,0,0 +2013,6,12,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,643,-10,0,0 +2013,10,23,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,0,,1240,0,1,1 +2013,5,5,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,1,0,830,-17,0,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1044,-4,0,1227,-17,0,0 +2013,9,23,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-5,0,2042,-7,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1440,-3,0,1713,-12,0,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,845,-5,0,1001,-26,0,0 +2013,9,19,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1807,5,0,2013,15,1,0 +2013,7,3,3,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,700,-8,0,810,-23,0,0 +2013,8,4,7,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,2010,7,0,2320,-3,0,0 +2013,4,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2145,5,0,2250,1,0,0 +2013,10,20,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1822,-2,0,1929,-18,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,830,19,1,1050,5,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1547,-1,0,2108,-2,0,0 +2013,10,21,1,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,832,-6,0,1110,0,0,0 +2013,4,2,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-9,0,1202,-23,0,0 +2013,10,7,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,710,-4,0,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1547,-1,0,1738,-14,0,0 +2013,6,7,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-3,0,2025,0,1,1 +2013,10,22,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,848,-7,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,-3,0,1415,-11,0,0 +2013,10,17,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1120,-5,0,1256,-7,0,0 +2013,9,27,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1115,3,0,1340,-14,0,0 +2013,9,25,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-6,0,1551,-10,0,0 +2013,10,25,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,26,1,1506,19,1,0 +2013,6,13,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-5,0,805,-14,0,0 +2013,10,13,7,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1010,-6,0,1309,-8,0,0 +2013,9,15,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-10,0,744,-20,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,825,8,0,1045,9,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2105,-2,0,2225,-14,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1030,-5,0,1217,-13,0,0 +2013,4,6,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-5,0,1350,-13,0,0 +2013,8,5,1,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,16,1,1420,14,0,0 +2013,4,26,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-4,0,1640,32,1,0 +2013,10,3,4,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,3,0,729,-20,0,0 +2013,9,12,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1200,-2,0,1305,-11,0,0 +2013,10,3,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,117,1,2259,111,1,0 +2013,5,20,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1425,19,1,1620,6,0,0 +2013,4,29,1,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1710,3,0,1915,-21,0,0 +2013,5,30,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1500,-1,0,2330,-18,0,0 +2013,10,28,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1230,-1,0,1509,-8,0,0 +2013,5,20,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,705,66,1,718,56,1,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,15,1,1835,15,1,0 +2013,6,10,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,66,1,2220,69,1,0 +2013,9,11,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,19,1,2015,29,1,0 +2013,4,16,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1759,-6,0,2229,-12,0,0 +2013,9,16,1,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,8,0,1915,10,0,0 +2013,4,26,5,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,525,-5,0,855,-2,0,0 +2013,10,2,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-3,0,759,9,0,0 +2013,5,26,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-4,0,1245,-21,0,0 +2013,4,29,1,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1030,-6,0,1830,8,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,840,-3,0,1017,-2,0,0 +2013,7,24,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,920,4,0,0 +2013,4,13,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,700,-5,0,817,0,0,0 +2013,4,21,7,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-1,0,1901,1,0,0 +2013,7,20,6,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,18,1,1555,24,1,0 +2013,4,12,5,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1855,281,1,2120,265,1,0 +2013,7,14,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,0,0,2230,-2,0,0 +2013,9,9,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1523,6,0,1725,8,0,0 +2013,6,2,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-3,0,1150,-14,0,0 +2013,8,14,3,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1950,23,1,2149,50,1,0 +2013,6,16,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,845,-8,0,1027,-12,0,0 +2013,6,9,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,110,1,1400,108,1,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,0,0,1525,-4,0,0 +2013,4,16,2,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2105,2,0,544,3,0,0 +2013,5,24,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,650,2,0,700,-4,0,0 +2013,8,15,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1354,1,0,1510,-12,0,0 +2013,6,30,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,-4,0,40,29,1,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2155,-2,0,2300,-10,0,0 +2013,4,20,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2025,1,0,2115,-1,0,0 +2013,8,27,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,950,-1,0,1240,-5,0,0 +2013,5,21,2,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,114,1,2255,122,1,0 +2013,5,27,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,-7,0,1630,1,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1630,9,0,1850,0,0,0 +2013,7,2,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1535,-8,0,1850,4,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-8,0,901,-16,0,0 +2013,10,25,5,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,920,-10,0,1308,-19,0,0 +2013,9,11,3,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1710,-7,0,1930,-42,0,0 +2013,8,15,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-3,0,928,-6,0,0 +2013,9,29,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,753,-5,0,1044,-22,0,0 +2013,9,13,5,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1240,-3,0,1545,-14,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,800,58,1,920,30,1,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1448,15,1,1612,8,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1405,31,1,2005,39,1,0 +2013,7,6,6,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1252,-1,0,1421,76,1,0 +2013,7,1,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,550,1,0,715,-6,0,0 +2013,10,6,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,14,0,2045,16,1,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,185,1,2303,176,1,0 +2013,8,20,2,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1650,-4,0,1953,-11,0,0 +2013,6,26,3,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,-2,0,1135,-10,0,0 +2013,6,6,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1221,49,1,1429,41,1,0 +2013,9,29,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1737,-2,0,1928,-13,0,0 +2013,7,10,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1433,1,0,1952,-7,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1415,-2,0,1525,-15,0,0 +2013,9,24,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,945,8,0,1135,4,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,-4,0,1125,-30,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,635,-4,0,755,-7,0,0 +2013,8,22,4,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1754,-12,0,2116,-12,0,0 +2013,10,24,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1528,4,0,2338,-2,0,0 +2013,5,10,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1936,87,1,2151,92,1,0 +2013,9,23,1,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-3,0,2200,-1,0,0 +2013,9,3,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,0,0,1830,18,1,0 +2013,4,26,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,34,1,1200,52,1,0 +2013,6,25,2,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1000,-1,0,1255,-5,0,0 +2013,5,31,5,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1545,-7,0,1708,-12,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1023,0,0,1230,-8,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,601,2,0,1030,-15,0,0 +2013,5,24,5,UA,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1701,35,1,1827,19,1,0 +2013,10,27,7,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1811,206,1,1931,217,1,0 +2013,8,8,4,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1930,0,,2112,0,1,1 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1405,2,0,1455,-2,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,-5,0,1717,1,0,0 +2013,9,25,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,1004,5,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1045,6,0,1155,-3,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,810,-1,0,1020,3,0,0 +2013,8,6,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1758,-6,0,1927,-7,0,0 +2013,6,28,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1845,47,1,2359,48,1,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,1,0,1924,-6,0,0 +2013,9,16,1,EV,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,847,-13,0,0 +2013,8,10,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-10,0,2220,-27,0,0 +2013,10,23,3,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,11,0,2010,-5,0,0 +2013,7,8,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,54,1,1345,39,1,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1541,0,0,1641,-3,0,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,925,-10,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1720,-4,0,1925,-20,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,-1,0,1257,-8,0,0 +2013,7,4,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,45,1,1905,36,1,0 +2013,10,2,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-3,0,1800,-6,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1740,5,0,2255,-8,0,0 +2013,6,27,4,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1045,1,0,1155,6,0,0 +2013,6,29,6,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,-6,0,1755,-15,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2019,-2,0,2200,23,1,0 +2013,7,13,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,21,1,1345,7,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,36,1,915,44,1,0 +2013,4,27,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,800,-5,0,1116,-16,0,0 +2013,5,29,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1159,-9,0,1459,-10,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1939,132,1,0 +2013,8,22,4,FL,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1125,-8,0,1235,-25,0,0 +2013,5,26,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,630,-4,0,725,20,1,0 +2013,6,20,4,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1550,46,1,1740,34,1,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,-4,0,1423,-2,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1355,35,1,1715,0,1,1 +2013,4,24,3,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,13,0,1835,12,0,0 +2013,10,19,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,615,-6,0,838,-3,0,0 +2013,6,14,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,921,0,0,1206,-4,0,0 +2013,4,23,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1102,-9,0,1313,-16,0,0 +2013,9,9,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1400,1,0,1530,-8,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1315,6,0,1615,1,0,0 +2013,8,29,4,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-2,0,608,-7,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2145,4,0,2230,6,0,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,820,3,0,935,-10,0,0 +2013,5,3,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-5,0,1806,-3,0,0 +2013,5,18,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1146,-14,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,2000,0,0,55,5,0,0 +2013,10,1,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,-2,0,1500,7,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1959,15,1,2145,-6,0,0 +2013,6,4,2,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1645,3,0,1825,-6,0,0 +2013,5,6,1,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,-3,0,1112,7,0,0 +2013,9,8,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,5,0,1840,4,0,0 +2013,8,8,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,12,0,2020,39,1,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1455,20,1,1950,15,1,0 +2013,6,29,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1905,6,0,2115,-12,0,0 +2013,5,28,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,843,-3,0,1215,7,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,0,0,2159,-20,0,0 +2013,5,11,6,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,846,-9,0,1120,-15,0,0 +2013,5,25,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2025,-5,0,2130,-17,0,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1656,3,0,1948,1,0,0 +2013,9,21,6,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1200,-5,0,1436,2,0,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,942,-4,0,1332,-15,0,0 +2013,10,6,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,166,1,1953,196,1,0 +2013,5,13,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-4,0,1705,-7,0,0 +2013,8,2,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1416,-31,0,0 +2013,5,6,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1707,-4,0,1850,10,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,640,-1,0,856,-1,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,949,6,0,1208,-8,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1355,-2,0,1745,-7,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,845,1,0,956,-10,0,0 +2013,9,19,4,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1435,1,0,2245,-17,0,0 +2013,10,23,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,-8,0,2018,29,1,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,620,-1,0,1050,13,0,0 +2013,9,15,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,-3,0,2025,-12,0,0 +2013,7,7,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1640,-1,0,1810,4,0,0 +2013,6,13,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,5,0,1317,-24,0,0 +2013,8,28,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,727,-4,0,1007,-29,0,0 +2013,8,11,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,-10,0,1846,-11,0,0 +2013,4,17,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-5,0,1630,-10,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,1,0,1032,2,0,0 +2013,4,4,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,56,1,648,63,1,0 +2013,9,19,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1726,215,1,1913,182,1,0 +2013,9,28,6,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,940,-7,0,1232,-29,0,0 +2013,6,26,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,1040,-3,0,0 +2013,10,15,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1719,-3,0,1902,-9,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-5,0,1105,-12,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1229,14,0,1425,-6,0,0 +2013,6,28,5,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,830,22,1,957,18,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-7,0,1120,-22,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2035,39,1,2200,18,1,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,21,1,1855,23,1,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2215,-1,0,23,-7,0,0 +2013,9,6,5,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2055,-4,0,515,-13,0,0 +2013,4,4,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1245,-6,0,1425,4,0,0 +2013,6,27,4,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,144,1,2229,165,1,0 +2013,8,2,5,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1708,66,1,1953,59,1,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1205,20,1,1435,-4,0,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2012,-6,0,2350,6,0,0 +2013,10,22,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,725,-7,0,906,-8,0,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-3,0,1038,-15,0,0 +2013,7,10,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,35,1,1438,40,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1900,139,1,2325,115,1,0 +2013,9,7,6,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,915,-4,0,1655,7,0,0 +2013,7,10,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,8,0,1515,-1,0,0 +2013,5,20,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1425,90,1,1605,89,1,0 +2013,5,15,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1703,-8,0,1754,-18,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1310,-6,0,1410,-9,0,0 +2013,4,29,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,605,-5,0,730,-7,0,0 +2013,10,6,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,900,-15,0,1130,-22,0,0 +2013,7,31,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,31,1,1710,40,1,0 +2013,5,13,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1328,-10,0,1439,-22,0,0 +2013,7,25,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,853,-5,0,1129,1,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-4,0,859,13,0,0 +2013,8,7,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,-10,0,955,-32,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1853,17,1,2106,-6,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1535,29,1,2040,32,1,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1609,10,0,57,-18,0,0 +2013,8,28,3,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1715,20,1,1835,9,0,0 +2013,8,4,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1803,-5,0,2004,-6,0,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,-5,0,1345,-26,0,0 +2013,7,17,3,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1350,4,0,1910,7,0,0 +2013,4,12,5,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,14,0,1728,-1,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1525,9,0,1740,-5,0,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,831,-4,0,1125,-20,0,0 +2013,9,20,5,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2200,-2,0,2321,-10,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1000,-1,0,1244,-25,0,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1000,-4,0,1405,-16,0,0 +2013,5,4,6,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1010,-5,0,1455,-17,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,0,0,2205,-17,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,830,-5,0,1035,-32,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1205,50,1,1310,46,1,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-5,0,1801,-10,0,0 +2013,10,18,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,2,0,950,-18,0,0 +2013,6,4,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,-2,0,1425,-9,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-7,0,850,-22,0,0 +2013,5,8,3,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1710,0,0,1948,7,0,0 +2013,4,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,640,0,0,755,8,0,0 +2013,8,30,5,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,2040,-10,0,2230,-26,0,0 +2013,8,5,1,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,48,1,1755,41,1,0 +2013,8,3,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,-5,0,1445,-16,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,3,0,1420,-7,0,0 +2013,10,19,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,914,0,0,1159,3,0,0 +2013,6,18,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1329,0,0,2140,-23,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1036,-1,0,1335,-12,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,6,0,2047,-17,0,0 +2013,7,28,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-2,0,1048,-7,0,0 +2013,7,23,2,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-10,0,936,-15,0,0 +2013,8,3,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,29,1,2355,18,1,0 +2013,4,15,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1120,5,0,1245,-7,0,0 +2013,7,5,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,900,-5,0,1140,-14,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1953,4,0,2300,-12,0,0 +2013,5,5,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1010,5,0,1320,8,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,19,1,2330,13,0,0 +2013,6,8,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-5,0,1006,-23,0,0 +2013,5,24,5,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1430,-6,0,2229,1,0,0 +2013,6,2,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,0,0,1900,18,1,0 +2013,7,13,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1145,-6,0,1255,-16,0,0 +2013,7,18,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1923,-1,0,2115,-20,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1643,4,0,1818,-12,0,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,810,-4,0,1116,-17,0,0 +2013,8,4,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-1,0,2108,-5,0,0 +2013,5,14,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1215,1,0,1240,0,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1500,-4,0,1627,-9,0,0 +2013,10,14,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-3,0,1939,16,1,0 +2013,10,20,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1430,6,0,1635,2,0,0 +2013,8,12,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,3,0,1755,-1,0,0 +2013,4,12,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2005,-2,0,2135,-12,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,740,-6,0,950,-11,0,0 +2013,10,13,7,9E,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,830,-2,0,1034,-7,0,0 +2013,10,18,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-9,0,1806,9,0,0 +2013,10,13,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1221,-2,0,1519,-4,0,0 +2013,4,21,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1520,0,0,1635,-2,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1140,12,0,1300,8,0,0 +2013,5,21,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1810,53,1,1945,33,1,0 +2013,8,31,6,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-1,0,1535,2,0,0 +2013,4,8,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,625,-2,0,800,-25,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,16,1,1450,13,0,0 +2013,5,11,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-5,0,1109,8,0,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,550,1,0,715,-9,0,0 +2013,5,25,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1925,-9,0,2120,-25,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1830,16,1,2140,-10,0,0 +2013,9,25,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1310,-4,0,1515,4,0,0 +2013,10,29,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-8,0,1228,-5,0,0 +2013,9,13,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,1028,-15,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2240,8,0,124,4,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1031,-5,0,1205,-9,0,0 +2013,9,1,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1916,-3,0,2129,-9,0,0 +2013,7,30,2,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1744,42,1,1954,57,1,0 +2013,5,29,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-9,0,1449,-15,0,0 +2013,7,1,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,81,1,1400,72,1,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1923,-8,0,2111,-30,0,0 +2013,4,14,7,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-5,0,1405,-8,0,0 +2013,5,6,1,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,20,1,1835,-15,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1340,2,0,1630,-20,0,0 +2013,7,23,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-3,0,2105,-15,0,0 +2013,5,7,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-8,0,845,-10,0,0 +2013,7,6,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,107,1,1015,99,1,0 +2013,7,6,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-9,0,1601,8,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1455,32,1,1550,25,1,0 +2013,7,21,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-7,0,1351,-5,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1035,-1,0,1430,-4,0,0 +2013,8,9,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,130,1,1852,116,1,0 +2013,6,6,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,820,-6,0,1220,0,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1000,0,0,1330,-4,0,0 +2013,10,25,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,0,0,810,-7,0,0 +2013,4,11,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,116,1,1550,124,1,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,13,0,1830,6,0,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1940,5,0,2205,-19,0,0 +2013,7,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,35,1,1955,45,1,0 +2013,5,24,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1136,-1,0,1245,-2,0,0 +2013,6,18,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1626,41,1,1918,110,1,0 +2013,5,29,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1135,-4,0,1156,-6,0,0 +2013,10,20,7,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,17,1,1610,3,0,0 +2013,6,16,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,12,0,1524,17,1,0 +2013,5,6,1,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,749,-11,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1825,11,0,2035,9,0,0 +2013,8,29,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,811,-1,0,0 +2013,8,10,6,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1230,60,1,1441,56,1,0 +2013,9,6,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-10,0,2213,-28,0,0 +2013,5,31,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1239,-7,0,1406,-7,0,0 +2013,5,8,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,0,0,1557,-10,0,0 +2013,9,24,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1420,19,1,2020,10,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1923,44,1,2240,59,1,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,912,-9,0,1047,-9,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,15,1,1308,28,1,0 +2013,5,10,5,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-7,0,1229,-8,0,0 +2013,5,1,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-4,0,1037,-18,0,0 +2013,9,8,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1940,-7,0,2140,-6,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,29,1,1007,27,1,0 +2013,8,24,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1327,-6,0,1446,-28,0,0 +2013,7,9,2,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,0,0,1133,-21,0,0 +2013,9,19,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1445,5,0,1811,16,1,0 +2013,6,17,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,-6,0,2130,24,1,0 +2013,5,23,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,39,1,1225,32,1,0 +2013,7,3,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,3,0,1346,-2,0,0 +2013,8,15,4,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-7,0,1815,-8,0,0 +2013,6,27,4,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-2,0,2152,-25,0,0 +2013,5,13,1,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,-1,0,1844,7,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-3,0,2150,-15,0,0 +2013,4,24,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-5,0,1648,-12,0,0 +2013,4,15,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,545,-13,0,707,-20,0,0 +2013,10,2,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-6,0,908,-16,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1930,31,1,2155,47,1,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,640,-6,0,1023,-16,0,0 +2013,10,16,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,610,1,0,730,1,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,5,0,1050,8,0,0 +2013,8,7,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1756,-4,0,1937,-2,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1608,-2,0,1839,-2,0,0 +2013,7,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,835,-10,0,948,-12,0,0 +2013,10,28,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1930,-2,0,2018,-5,0,0 +2013,10,9,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1930,15,1,2040,-3,0,0 +2013,6,19,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,830,16,1,1115,17,1,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,262,1,1225,256,1,0 +2013,4,19,5,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,714,-1,0,1045,-5,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,2130,2,0,2315,7,0,0 +2013,10,12,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1355,-7,0,1455,-19,0,0 +2013,10,9,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1610,5,0,1720,0,0,0 +2013,10,29,2,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1235,-6,0,1359,-24,0,0 +2013,4,22,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,124,1,2015,147,1,0 +2013,9,22,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2010,14,0,2145,10,0,0 +2013,7,8,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2347,0,,544,0,1,1 +2013,9,8,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1458,0,0,1839,4,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1805,132,1,2240,171,1,0 +2013,5,2,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,14,0,2310,12,0,0 +2013,10,22,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-5,0,920,-6,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,14,0,1445,27,1,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,-1,0,1709,0,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,4,0,1635,-6,0,0 +2013,8,13,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,-5,0,935,0,0,0 +2013,4,21,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1040,-2,0,1150,-7,0,0 +2013,5,3,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1441,-3,0,1534,-5,0,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,834,-2,0,929,-6,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2145,16,1,2315,8,0,0 +2013,5,29,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1724,-9,0,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1735,64,1,1905,51,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,3,0,1449,-10,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,36,1,1610,35,1,0 +2013,4,9,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1125,-2,0,1225,-2,0,0 +2013,9,27,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-5,0,1230,-15,0,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,114,1,1135,113,1,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,703,1,0,840,-6,0,0 +2013,5,27,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-1,0,1921,-8,0,0 +2013,10,28,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,925,-3,0,1115,13,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,78,1,2101,43,1,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,845,10,0,1653,-16,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,4,0,1635,-3,0,0 +2013,7,16,2,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1910,160,1,2027,166,1,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1119,51,1,1716,42,1,0 +2013,8,5,1,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-1,0,1120,-3,0,0 +2013,6,26,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1822,62,1,2140,57,1,0 +2013,4,21,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1445,-1,0,1600,-13,0,0 +2013,4,12,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,2055,94,1,2215,87,1,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,3,0,1145,16,1,0 +2013,6,15,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,3,0,1646,-21,0,0 +2013,6,16,7,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,42,1,1856,44,1,0 +2013,7,25,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1250,-6,0,1530,-2,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,127,1,2145,120,1,0 +2013,7,6,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1029,-3,0,1305,-7,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1525,14,0,1620,10,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1015,14,0,1445,8,0,0 +2013,9,28,6,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,609,-7,0,756,14,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2035,-1,0,2200,-15,0,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2231,122,1,226,106,1,0 +2013,7,24,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,804,4,0,1103,-1,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1105,8,0,1210,1,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2010,78,1,2110,75,1,0 +2013,9,4,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1520,-8,0,1615,-8,0,0 +2013,4,3,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2030,15,1,2255,5,0,0 +2013,10,29,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,545,-8,0,710,-15,0,0 +2013,9,9,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1348,28,1,1721,23,1,0 +2013,6,26,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,7,0,2035,-4,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,6,0,1355,8,0,0 +2013,8,22,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1458,-6,0,1624,-19,0,0 +2013,7,26,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,645,-3,0,810,-3,0,0 +2013,7,27,6,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1040,14,0,1434,8,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1115,5,0,1204,10,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,2,0,1819,-12,0,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,725,-4,0,845,-4,0,0 +2013,6,16,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,108,1,2059,93,1,0 +2013,8,19,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,2,0,736,11,0,0 +2013,10,17,4,OO,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1009,5,0,1443,6,0,0 +2013,6,20,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-2,0,1642,17,1,0 +2013,9,15,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1650,0,0,1928,-15,0,0 +2013,6,15,6,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,0,,809,0,1,1 +2013,9,23,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1930,-5,0,2046,-7,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2105,80,1,2240,78,1,0 +2013,9,23,1,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1823,8,0,2003,3,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1200,31,1,1320,33,1,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,4,0,2009,22,1,0 +2013,7,5,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,68,1,758,70,1,0 +2013,8,16,5,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,740,-7,0,1602,-4,0,0 +2013,4,28,7,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,1313,14,0,1540,11,0,0 +2013,10,2,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,0,0,1715,-18,0,0 +2013,5,30,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-2,0,2044,-6,0,0 +2013,9,8,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1930,72,1,2207,68,1,0 +2013,6,5,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-8,0,1240,-14,0,0 +2013,5,26,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1945,-6,0,2200,-17,0,0 +2013,8,22,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1811,0,0,1937,-9,0,0 +2013,8,20,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,-6,0,1316,-18,0,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-5,0,726,-14,0,0 +2013,8,22,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1850,92,1,2130,103,1,0 +2013,8,7,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1910,11,0,2125,8,0,0 +2013,9,12,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1106,6,0,1221,22,1,0 +2013,9,7,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,826,-6,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,655,-2,0,905,-8,0,0 +2013,9,23,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-6,0,1008,-11,0,0 +2013,9,1,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1703,-9,0,1810,-11,0,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1245,-2,0,1737,-11,0,0 +2013,8,18,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1805,26,1,1945,22,1,0 +2013,8,26,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,644,0,0,1025,2,0,0 +2013,6,27,4,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,0,,1914,0,1,1 +2013,10,29,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,900,-4,0,1015,2,0,0 +2013,10,22,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1657,-3,0,1813,14,0,0 +2013,4,2,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,4,0,833,-7,0,0 +2013,9,8,7,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,50,1,1521,34,1,0 +2013,5,18,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2111,20,1,526,14,0,0 +2013,8,18,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1935,-6,0,115,-15,0,0 +2013,4,23,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1202,0,0,1804,-13,0,0 +2013,4,5,5,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1244,18,1,1645,5,0,0 +2013,6,9,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2055,-6,0,2308,-19,0,0 +2013,9,29,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,155,0,0,834,-17,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,10,0,2200,3,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,715,-2,0,839,-1,0,0 +2013,5,31,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,505,-6,0,751,-29,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,3,0,1525,-7,0,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-2,0,1130,-4,0,0 +2013,9,7,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-11,0,912,2,0,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1955,-4,0,2145,-9,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1150,69,1,1245,58,1,0 +2013,4,1,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,700,-1,0,805,-14,0,0 +2013,5,30,4,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1445,58,1,1705,46,1,0 +2013,4,23,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,720,-17,0,0 +2013,4,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1420,-2,0,1553,-9,0,0 +2013,5,11,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1120,0,0,1220,-15,0,0 +2013,8,6,2,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,20,1,1130,16,1,0 +2013,6,11,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1910,7,0,2020,13,0,0 +2013,7,2,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,0,0,1945,-9,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1640,113,1,1910,95,1,0 +2013,4,23,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-6,0,804,-12,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1550,4,0,1900,2,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1915,-1,0,2355,-13,0,0 +2013,6,23,7,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1202,-3,0,1450,23,1,0 +2013,10,30,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1735,16,1,1855,27,1,0 +2013,10,28,1,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-6,0,2000,-7,0,0 +2013,9,2,1,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,905,-2,0,1155,-6,0,0 +2013,4,18,4,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,1055,22,1,1615,34,1,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,-6,0,1248,-3,0,0 +2013,8,8,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1624,0,0,2022,12,0,0 +2013,7,6,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1624,1,0,1925,-18,0,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,91,1,1958,81,1,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-6,0,1351,-16,0,0 +2013,7,12,5,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,2305,-7,0,612,-10,0,0 +2013,4,11,4,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1430,-5,0,1622,-18,0,0 +2013,6,20,4,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,640,-5,0,1140,-10,0,0 +2013,10,31,4,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1750,19,1,2025,-10,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,800,-4,0,905,0,0,0 +2013,6,23,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,-1,0,1934,33,1,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,810,-1,0,1004,-6,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1525,0,0,2055,7,0,0 +2013,5,5,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,6,0,1408,0,0,0 +2013,10,29,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,700,-10,0,943,-5,0,0 +2013,8,26,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,925,32,1,1450,35,1,0 +2013,8,16,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2042,-3,0,2158,0,0,0 +2013,8,13,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1450,0,0,1645,-14,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,13,0,1000,3,0,0 +2013,5,3,5,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1055,-10,0,1917,1,0,0 +2013,9,21,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,649,-5,0,813,-8,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1750,68,1,2010,58,1,0 +2013,6,6,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,195,1,1635,201,1,0 +2013,7,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,705,-3,0,944,5,0,0 +2013,9,15,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-2,0,1715,-8,0,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,917,-10,0,1054,-25,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2155,-2,0,22,-13,0,0 +2013,4,11,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,733,-15,0,0 +2013,8,16,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,815,32,1,930,17,1,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2000,9,0,2210,12,0,0 +2013,7,13,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,-4,0,2116,-16,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-2,0,1041,-5,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1225,18,1,1330,7,0,0 +2013,6,21,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1910,37,1,2045,23,1,0 +2013,5,7,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,620,-5,0,746,-17,0,0 +2013,4,12,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1455,17,1,1735,8,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,10,0,1055,-8,0,0 +2013,7,20,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1527,0,,1729,0,1,1 +2013,4,9,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,-1,0,2105,-9,0,0 +2013,9,12,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-8,0,743,-14,0,0 +2013,10,27,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1620,20,1,1935,1,0,0 +2013,8,7,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-3,0,1128,7,0,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1305,-3,0,1610,-5,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1439,14,0,1720,3,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2145,0,0,2342,-15,0,0 +2013,10,26,6,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,943,-1,0,1119,11,0,0 +2013,8,4,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,79,1,1730,63,1,0 +2013,10,10,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1040,8,0,1131,15,1,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1625,56,1,1735,47,1,0 +2013,10,4,5,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2135,-3,0,543,6,0,0 +2013,9,6,5,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,945,-2,0,1130,-22,0,0 +2013,8,28,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1540,-6,0,2110,-13,0,0 +2013,8,24,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-3,0,920,-7,0,0 +2013,5,2,4,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1916,31,1,2105,28,1,0 +2013,8,9,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,12,0,1610,10,0,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,900,152,1,1157,125,1,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,7,0,1320,9,0,0 +2013,6,10,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1055,-7,0,1225,-9,0,0 +2013,7,2,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,615,-5,0,817,-19,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-3,0,1102,-4,0,0 +2013,8,20,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,4,0,1545,-7,0,0 +2013,7,3,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,6,0,1909,11,0,0 +2013,10,20,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,-5,0,2044,4,0,0 +2013,4,21,7,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1929,-8,0,2157,-8,0,0 +2013,5,5,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,-1,0,1055,-31,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,11,0,2050,28,1,0 +2013,10,31,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1939,-13,0,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1225,11,0,1430,5,0,0 +2013,4,27,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1345,-5,0,1648,-9,0,0 +2013,5,27,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,-6,0,1155,-15,0,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,857,-5,0,1013,-19,0,0 +2013,8,7,3,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,8,0,1425,1,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,25,1,1940,15,1,0 +2013,5,1,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1915,57,1,2244,42,1,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-5,0,1332,-19,0,0 +2013,4,21,7,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,850,-1,0,1059,-13,0,0 +2013,7,28,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,0,0,835,-6,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1710,47,1,2005,33,1,0 +2013,4,2,2,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,700,0,0,905,4,0,0 +2013,5,28,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1310,-6,0,1553,-9,0,0 +2013,8,31,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,40,1,1300,44,1,0 +2013,7,20,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,32,1,1815,35,1,0 +2013,4,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1205,94,1,1336,191,1,0 +2013,8,30,5,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1104,-4,0,1254,-19,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,-6,0,1440,-27,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1845,-4,0,2215,-14,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-5,0,1832,-12,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,930,-6,0,1036,-21,0,0 +2013,7,28,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,755,-2,0,915,-13,0,0 +2013,6,10,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1000,-3,0,1133,5,0,0 +2013,9,5,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2158,-4,0,2326,-7,0,0 +2013,6,18,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,837,-1,0,1035,8,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-5,0,956,12,0,0 +2013,4,28,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1835,-3,0,2120,-18,0,0 +2013,9,4,3,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1045,-6,0,1442,-12,0,0 +2013,6,11,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,645,-6,0,808,-20,0,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,2,0,2205,-16,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,11,0,2000,6,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,110,1,2104,119,1,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,5,0,1140,1,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,11,0,2005,3,0,0 +2013,8,12,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,645,-3,0,700,-5,0,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1430,-6,0,1808,-21,0,0 +2013,10,8,2,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,7,0,1031,11,0,0 +2013,6,8,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,643,1,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-3,0,1245,1,0,0 +2013,6,5,3,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,-1,0,2010,-31,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1045,-4,0,1335,-13,0,0 +2013,8,15,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,11,0,1345,9,0,0 +2013,6,18,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2220,187,1,614,180,1,0 +2013,5,5,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,-5,0,1610,-29,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,635,-6,0,930,-13,0,0 +2013,4,20,6,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,955,2,0,1545,-6,0,0 +2013,10,29,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1653,-13,0,1829,-30,0,0 +2013,4,1,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1036,113,1,1204,104,1,0 +2013,9,21,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,750,6,0,910,5,0,0 +2013,6,16,7,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,5,0,2120,-17,0,0 +2013,6,14,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1658,40,1,1815,36,1,0 +2013,4,23,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,-1,0,500,-12,0,0 +2013,6,28,5,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,8,0,1010,3,0,0 +2013,4,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1250,63,1,1519,37,1,0 +2013,7,15,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1705,18,1,1855,-4,0,0 +2013,9,4,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-6,0,1256,-10,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1850,14,0,2025,34,1,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1525,7,0,1750,60,1,0 +2013,4,19,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,842,30,1,1050,25,1,0 +2013,7,22,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1359,-2,0,1551,-3,0,0 +2013,9,22,7,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2000,0,0,2229,-5,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,850,49,1,1209,50,1,0 +2013,4,12,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,48,1,1327,20,1,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1305,1,0,2000,31,1,0 +2013,5,21,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,703,3,0,945,9,0,0 +2013,9,2,1,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1500,39,1,1940,38,1,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,901,4,0,1124,-17,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,10,0,1841,9,0,0 +2013,6,8,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1035,-1,0,1115,-8,0,0 +2013,9,28,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2000,-1,0,2052,-13,0,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1750,-4,0,2041,-40,0,0 +2013,10,1,2,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1100,1,0,1335,-7,0,0 +2013,6,30,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1117,36,1,1930,49,1,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1804,30,1,1944,34,1,0 +2013,4,9,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1419,-4,0,1625,10,0,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-2,0,820,1,0,0 +2013,4,24,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,-3,0,1252,-2,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-2,0,1320,-10,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1450,69,1,1555,63,1,0 +2013,8,4,7,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,43,1,1921,35,1,0 +2013,7,17,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1355,22,1,1450,5,0,0 +2013,8,28,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1740,11,0,2045,1,0,0 +2013,6,9,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,0,0,2345,-4,0,0 +2013,7,4,4,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,1435,-1,0,2025,6,0,0 +2013,8,28,3,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-7,0,912,-17,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1011,-7,0,1159,-12,0,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,855,1,0,1030,-11,0,0 +2013,9,10,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2105,2,0,2230,2,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2050,43,1,5,27,1,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1018,14,0,1404,5,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,745,-7,0,852,-10,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1525,-1,0,1655,7,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1325,33,1,1450,23,1,0 +2013,6,24,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,6,0,1426,-1,0,0 +2013,5,7,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1449,-5,0,1623,-3,0,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,805,-2,0,1235,6,0,0 +2013,8,21,3,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-3,0,1645,-17,0,0 +2013,10,7,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1635,-5,0,1902,7,0,0 +2013,6,25,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1703,0,0,2113,-10,0,0 +2013,5,19,7,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1450,2,0,1525,6,0,0 +2013,5,10,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,915,1,0,0 +2013,7,30,2,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,2011,-10,0,2212,-20,0,0 +2013,8,21,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-2,0,1605,-5,0,0 +2013,4,15,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2345,20,1,545,0,0,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,930,-3,0,1210,3,0,0 +2013,4,6,6,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,955,-1,0,1213,16,1,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1310,22,1,1630,33,1,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-4,0,1507,-6,0,0 +2013,9,17,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,-2,0,1537,-10,0,0 +2013,6,22,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-3,0,1430,-16,0,0 +2013,5,5,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1837,36,1,2157,22,1,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1315,7,0,1445,-1,0,0 +2013,4,4,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,8,0,1225,11,0,0 +2013,9,13,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,-8,0,2152,0,0,0 +2013,5,14,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1350,1,0,1524,-9,0,0 +2013,9,19,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-3,0,935,-11,0,0 +2013,8,9,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-3,0,1003,-3,0,0 +2013,4,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1859,-3,0,2050,11,0,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-2,0,2111,-20,0,0 +2013,9,7,6,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,63,1,1302,49,1,0 +2013,5,19,7,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,-3,0,1932,16,1,0 +2013,4,14,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,752,-5,0,0 +2013,7,27,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,137,1,1642,128,1,0 +2013,4,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,-2,0,1745,11,0,0 +2013,6,24,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,2036,87,1,2145,111,1,0 +2013,10,10,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1345,148,1,1511,126,1,0 +2013,7,4,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,24,1,1100,42,1,0 +2013,9,4,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1513,-3,0,1829,-23,0,0 +2013,9,7,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,-6,0,1703,-9,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2118,-2,0,2359,-7,0,0 +2013,4,24,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,7,0,1634,-19,0,0 +2013,7,26,5,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-2,0,1559,-12,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,13,0,2207,9,0,0 +2013,7,11,4,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,57,1,1655,47,1,0 +2013,4,14,7,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1830,33,1,1905,31,1,0 +2013,4,16,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-6,0,1335,-11,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1602,2,0,1849,3,0,0 +2013,6,27,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,2,0,1205,1,0,0 +2013,8,12,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1729,-2,0,1750,-11,0,0 +2013,7,2,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,933,-5,0,1055,7,0,0 +2013,10,20,7,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1520,50,1,1933,13,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2210,5,0,2300,0,0,0 +2013,8,8,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-4,0,940,-3,0,0 +2013,6,11,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,120,1,1000,122,1,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,900,65,1,1105,74,1,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1210,1,0,1505,-16,0,0 +2013,10,1,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1400,0,0,1520,-3,0,0 +2013,5,21,2,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1158,10,0,1410,13,0,0 +2013,6,1,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,14,0,2010,17,1,0 +2013,7,1,1,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,34,1,2350,26,1,0 +2013,8,28,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1428,361,1,1548,356,1,0 +2013,6,2,7,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,710,-1,0,941,-17,0,0 +2013,7,22,1,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,41,1,1717,25,1,0 +2013,4,20,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1125,-1,0,1200,0,0,0 +2013,4,9,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,605,1,0,720,-11,0,0 +2013,10,8,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,704,-2,0,1025,-30,0,0 +2013,7,2,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-7,0,1614,-17,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1115,13,0,1305,-2,0,0 +2013,4,28,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,0,0,955,-8,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-4,0,849,10,0,0 +2013,6,3,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1531,-8,0,1640,-14,0,0 +2013,9,16,1,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1927,-5,0,2138,-6,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,840,1,0,1105,-12,0,0 +2013,7,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1002,-10,0,1136,-10,0,0 +2013,5,5,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-1,0,1124,38,1,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,850,-2,0,1024,-18,0,0 +2013,5,2,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-1,0,1055,-17,0,0 +2013,6,7,5,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1040,15,1,1244,47,1,0 +2013,5,13,1,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-6,0,1515,-5,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,45,1,1020,31,1,0 +2013,7,30,2,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1731,-12,0,2056,-18,0,0 +2013,8,11,7,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1752,0,,2000,0,1,1 +2013,4,15,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1035,8,0,1350,3,0,0 +2013,5,3,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1225,-1,0,0 +2013,5,12,7,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2207,6,0,2344,-11,0,0 +2013,4,27,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1030,-7,0,1150,-12,0,0 +2013,9,15,7,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1500,0,0,1835,-2,0,0 +2013,9,17,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1020,-7,0,1259,-2,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,730,-7,0,915,-5,0,0 +2013,4,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1925,13,0,2152,5,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1655,4,0,1800,4,0,0 +2013,4,4,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,-1,0,1200,-3,0,0 +2013,6,24,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,49,1,1900,29,1,0 +2013,5,23,4,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-2,0,1213,1,0,0 +2013,5,7,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,-3,0,1703,-12,0,0 +2013,9,23,1,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-2,0,1515,-5,0,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,802,-7,0,1016,-8,0,0 +2013,9,3,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,-5,0,1125,-6,0,0 +2013,7,12,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,-8,0,1832,-11,0,0 +2013,4,20,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-2,0,1135,-8,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,745,-3,0,930,2,0,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1525,32,1,1635,36,1,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2145,-1,0,2340,-17,0,0 +2013,4,28,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,900,-2,0,955,-12,0,0 +2013,5,11,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,757,0,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1150,0,0,1635,-1,0,0 +2013,10,23,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,600,-2,0,705,-13,0,0 +2013,5,14,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1825,-9,0,2134,-13,0,0 +2013,5,30,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,2055,-20,0,0 +2013,7,10,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1210,21,1,1545,22,1,0 +2013,9,2,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,1,0,1835,-8,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1545,43,1,1720,39,1,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,-1,0,1141,-4,0,0 +2013,4,3,3,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,730,-1,0,935,-2,0,0 +2013,4,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1500,18,1,1700,13,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2005,15,1,2206,8,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-4,0,830,-10,0,0 +2013,10,4,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-13,0,1325,3,0,0 +2013,5,1,3,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2035,-7,0,2320,-3,0,0 +2013,9,25,3,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,804,-29,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-4,0,1138,-37,0,0 +2013,4,1,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1143,-24,0,0 +2013,9,25,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1608,-5,0,1725,-14,0,0 +2013,5,10,5,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,-4,0,2034,-12,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1416,5,0,1602,-5,0,0 +2013,9,14,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-1,0,1320,-13,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1500,7,0,2148,13,0,0 +2013,7,22,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,-3,0,1922,-7,0,0 +2013,4,28,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-5,0,753,-9,0,0 +2013,6,24,1,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,42,1,1849,73,1,0 +2013,9,5,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-9,0,1019,-13,0,0 +2013,4,24,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-7,0,805,3,0,0 +2013,5,17,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,5,0,1818,-14,0,0 +2013,10,31,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1110,11,0,1220,8,0,0 +2013,5,11,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1410,-6,0,1540,-10,0,0 +2013,10,21,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1935,-4,0,2144,-6,0,0 +2013,10,16,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,29,1,1343,22,1,0 +2013,5,9,4,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-6,0,1200,-3,0,0 +2013,5,13,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-2,0,1115,-24,0,0 +2013,8,12,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-7,0,1637,-4,0,0 +2013,8,23,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,922,-3,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,20,1,2150,4,0,0 +2013,5,5,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-4,0,802,-4,0,0 +2013,4,1,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1050,-2,0,1358,-22,0,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-1,0,1245,-29,0,0 +2013,9,22,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1548,0,0,1609,2,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,645,5,0,950,-8,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-1,0,1113,-8,0,0 +2013,7,25,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,810,2,0,825,-12,0,0 +2013,8,28,3,AA,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1800,-4,0,1935,-1,0,0 +2013,4,6,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,-2,0,1355,-5,0,0 +2013,7,26,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-5,0,812,-11,0,0 +2013,10,9,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,6,0,1515,-2,0,0 +2013,9,1,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1849,5,0,1943,0,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2020,68,1,2215,79,1,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2115,-5,0,2225,-18,0,0 +2013,5,21,2,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,952,-4,0,1125,-10,0,0 +2013,10,22,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-5,0,2101,-15,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1725,-2,0,1950,2,0,0 +2013,10,9,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,-1,0,810,4,0,0 +2013,8,21,3,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,825,43,1,932,34,1,0 +2013,7,20,6,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1340,-1,0,1448,-11,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-4,0,916,-17,0,0 +2013,10,29,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1345,5,0,1445,-4,0,0 +2013,6,5,3,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1830,28,1,1925,14,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2255,47,1,46,31,1,0 +2013,9,28,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,728,-3,0,910,-33,0,0 +2013,5,22,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,915,13,0,1155,13,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1155,20,1,1330,5,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1133,-5,0,1451,9,0,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,755,-1,0,855,-19,0,0 +2013,7,17,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1717,10,0,1828,-8,0,0 +2013,4,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,8,0,1715,8,0,0 +2013,9,21,6,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-6,0,2202,-6,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1050,-2,0,1515,-6,0,0 +2013,9,12,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-3,0,1949,3,0,0 +2013,5,24,5,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1240,5,0,1610,-7,0,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,-2,0,2055,-14,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,5,0,2200,8,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1640,-1,0,2000,-3,0,0 +2013,10,13,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1200,-4,0,1300,-9,0,0 +2013,7,27,6,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,700,8,0,950,23,1,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,-1,0,2308,-29,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,30,1,2220,96,1,0 +2013,5,28,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1747,14,0,2059,40,1,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1921,-6,0,2049,-17,0,0 +2013,6,22,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-7,0,1420,-8,0,0 +2013,10,22,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2030,-2,0,2257,-19,0,0 +2013,8,10,6,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-7,0,1306,-27,0,0 +2013,4,3,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,27,1,1540,21,1,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1305,-5,0,2000,13,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1925,-2,0,2130,-14,0,0 +2013,8,28,3,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1808,-5,0,1933,-18,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1630,20,1,1822,8,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,-5,0,1105,-6,0,0 +2013,10,15,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1605,-6,0,1655,0,0,0 +2013,6,29,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1025,-5,0,1135,-15,0,0 +2013,4,6,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-10,0,1122,-8,0,0 +2013,4,1,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,0,0,1205,-13,0,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,2040,-4,0,2220,-4,0,0 +2013,6,28,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1524,7,0,2056,58,1,0 +2013,5,22,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-3,0,1747,-6,0,0 +2013,7,14,7,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,20,1,1420,23,1,0 +2013,8,8,4,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1153,42,1,1421,39,1,0 +2013,6,11,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,640,-2,0,745,9,0,0 +2013,8,1,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,-2,0,750,-14,0,0 +2013,9,2,1,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1728,250,1,2014,221,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-3,0,859,-22,0,0 +2013,7,5,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,8,0,1415,27,1,0 +2013,8,20,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1835,-5,0,2005,-9,0,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,0,0,957,-8,0,0 +2013,7,29,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,2,0,1210,-5,0,0 +2013,8,14,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1710,-4,0,1955,-22,0,0 +2013,9,14,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1345,3,0,1730,-1,0,0 +2013,10,1,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-5,0,1415,-30,0,0 +2013,5,26,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1416,-6,0,1800,-16,0,0 +2013,6,9,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,1120,67,1,0 +2013,9,23,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-6,0,720,-11,0,0 +2013,4,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1358,72,1,1559,42,1,0 +2013,8,12,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,50,1,2237,39,1,0 +2013,9,4,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-1,0,1203,2,0,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1720,3,0,1835,-3,0,0 +2013,6,30,7,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2215,-20,0,650,-14,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1845,65,1,2212,74,1,0 +2013,9,18,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1737,45,1,1832,32,1,0 +2013,10,28,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1829,2,0,2004,6,0,0 +2013,5,25,6,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1510,-2,0,1955,-8,0,0 +2013,10,27,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-5,0,1755,-10,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1825,-3,0,1955,-13,0,0 +2013,7,16,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,34,1,840,30,1,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2107,97,1,2307,70,1,0 +2013,4,7,7,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2150,29,1,2249,19,1,0 +2013,8,28,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-10,0,949,-16,0,0 +2013,10,17,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,17,1,1653,-10,0,0 +2013,8,14,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1044,-1,0,1201,-19,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,914,-4,0,1317,-17,0,0 +2013,9,9,1,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,2,0,2015,42,1,0 +2013,8,19,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-5,0,1652,12,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,-5,0,1920,-9,0,0 +2013,8,15,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2020,35,1,2140,34,1,0 +2013,8,31,6,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,1,0,1359,-8,0,0 +2013,7,30,2,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1950,-3,0,2149,-15,0,0 +2013,5,18,6,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1338,-2,0,1706,-1,0,0 +2013,6,2,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1315,89,1,2124,121,1,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1405,21,1,1459,12,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1340,-1,0,1710,7,0,0 +2013,4,4,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1925,-11,0,2255,-12,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,0,0,1930,-28,0,0 +2013,9,9,1,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-9,0,1044,-17,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1738,-6,0,2018,-27,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1325,14,0,1645,25,1,0 +2013,7,10,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1755,142,1,2000,180,1,0 +2013,6,9,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1700,0,0,1805,-18,0,0 +2013,6,2,7,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,-5,0,1540,-2,0,0 +2013,9,7,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1317,79,1,1614,72,1,0 +2013,10,15,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2052,-1,0,2220,12,0,0 +2013,7,10,3,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1555,44,1,1739,0,1,1 +2013,10,27,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-1,0,905,-14,0,0 +2013,7,14,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-4,0,843,11,0,0 +2013,7,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,30,1,2347,24,1,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,0,0,1250,20,1,0 +2013,8,29,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,-5,0,1525,-9,0,0 +2013,4,10,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,18,1,1737,15,1,0 +2013,7,10,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,0,0,1633,-9,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2055,-1,0,2206,1,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,657,-4,0,753,-10,0,0 +2013,8,21,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1111,-6,0,1250,-14,0,0 +2013,5,30,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,3,0,955,2,0,0 +2013,8,27,2,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,950,-2,0,1100,-14,0,0 +2013,6,8,6,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,945,28,1,1250,23,1,0 +2013,8,25,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,730,-4,0,850,-7,0,0 +2013,10,25,5,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1215,-6,0,1329,-17,0,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,831,-4,0,1029,-8,0,0 +2013,4,11,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1352,22,1,1409,30,1,0 +2013,6,27,4,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,25,1,1740,3,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1249,-3,0,1410,-14,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,828,-6,0,936,-13,0,0 +2013,8,7,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-2,0,1118,6,0,0 +2013,5,17,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1302,8,0,1536,1,0,0 +2013,9,28,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,903,0,0,1144,-16,0,0 +2013,4,8,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1331,9,0,2145,-4,0,0 +2013,5,16,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1303,78,1,1428,101,1,0 +2013,5,11,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1820,67,1,2127,83,1,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-9,0,1049,-23,0,0 +2013,9,10,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1019,-7,0,1300,8,0,0 +2013,8,27,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,-4,0,1355,-19,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1730,-1,0,2331,-9,0,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,-3,0,1500,-15,0,0 +2013,9,26,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1100,-2,0,1149,12,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-1,0,1033,-12,0,0 +2013,6,3,1,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,0,0,2048,2,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2140,45,1,2225,37,1,0 +2013,6,10,1,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1835,18,1,2120,20,1,0 +2013,5,22,3,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2200,32,1,2312,43,1,0 +2013,10,18,5,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,935,-4,0,1115,0,0,0 +2013,10,24,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-7,0,648,-8,0,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1835,15,1,1945,4,0,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1440,9,0,1540,2,0,0 +2013,7,13,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,42,1,2043,-1,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1254,26,1,1821,23,1,0 +2013,6,27,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-3,0,2300,-5,0,0 +2013,10,25,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-4,0,1556,-5,0,0 +2013,4,15,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1039,-2,0,1621,-23,0,0 +2013,6,8,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-10,0,1324,-3,0,0 +2013,6,27,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-3,0,1315,-14,0,0 +2013,4,19,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1750,69,1,1815,74,1,0 +2013,5,10,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-11,0,1417,-12,0,0 +2013,10,16,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-8,0,1729,-7,0,0 +2013,7,4,4,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,634,-2,0,1409,7,0,0 +2013,10,5,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,957,2,0,1206,-2,0,0 +2013,10,11,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2125,64,1,2215,46,1,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1755,7,0,1933,-8,0,0 +2013,8,13,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-4,0,910,14,0,0 +2013,6,2,7,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2240,132,1,715,115,1,0 +2013,8,9,5,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-4,0,1206,-12,0,0 +2013,6,29,6,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1135,-6,0,1725,-14,0,0 +2013,7,27,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-3,0,905,-16,0,0 +2013,6,27,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1119,-1,0,1638,-3,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1550,6,0,1931,-15,0,0 +2013,4,2,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1843,-2,0,2018,-12,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,925,0,0,1010,2,0,0 +2013,6,27,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1654,73,1,2014,65,1,0 +2013,4,25,4,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,31,1,25,14,0,0 +2013,10,26,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-8,0,1526,-9,0,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1502,-6,0,1551,-13,0,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-3,0,1311,-20,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1455,4,0,1550,-3,0,0 +2013,7,10,3,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-2,0,1715,-7,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-1,0,1220,4,0,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,7,0,2135,30,1,0 +2013,4,28,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,10,0,1900,-3,0,0 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,-4,0,1345,-23,0,0 +2013,7,5,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,2,0,820,-7,0,0 +2013,5,29,3,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1030,-12,0,1309,-10,0,0 +2013,4,29,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1510,5,0,1730,44,1,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,816,5,0,1037,-3,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-3,0,838,-9,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-4,0,1425,-4,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,730,-3,0,1040,-14,0,0 +2013,4,13,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,843,-10,0,0 +2013,8,1,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-4,0,900,-19,0,0 +2013,6,18,2,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-10,0,858,1,0,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1505,15,1,1750,10,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1749,19,1,2034,21,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1140,2,0,1240,1,0,0 +2013,8,5,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,133,1,2110,124,1,0 +2013,10,1,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-8,0,1025,-17,0,0 +2013,6,19,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-5,0,2120,-8,0,0 +2013,7,14,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,16,1,1830,24,1,0 +2013,8,27,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,915,-1,0,1005,-1,0,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-1,0,1035,-2,0,0 +2013,5,7,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1523,0,0,1814,7,0,0 +2013,5,21,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,159,1,2146,133,1,0 +2013,5,13,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,800,11,0,1025,10,0,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2150,42,1,45,29,1,0 +2013,9,29,7,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1437,0,0,1643,-6,0,0 +2013,5,7,2,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1520,22,1,1725,10,0,0 +2013,6,24,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,24,1,1837,18,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1350,-3,0,1541,6,0,0 +2013,10,27,7,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1835,1,0,1940,26,1,0 +2013,5,28,2,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1050,-12,0,1340,-17,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1605,0,0,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,-2,0,1731,-7,0,0 +2013,8,5,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-3,0,820,8,0,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,740,-1,0,950,-10,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2040,93,1,2154,83,1,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1314,0,0,1545,-12,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,711,-7,0,1216,-28,0,0 +2013,8,6,2,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1929,0,0,2155,5,0,0 +2013,7,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,530,0,0,655,-8,0,0 +2013,6,9,7,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1800,-2,0,2035,-1,0,0 +2013,6,22,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1615,0,0,1800,11,0,0 +2013,9,18,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1940,4,0,2236,9,0,0 +2013,7,3,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1742,-12,0,1901,-17,0,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1730,7,0,1832,-5,0,0 +2013,4,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1855,1,0,2207,-7,0,0 +2013,9,6,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-6,0,1620,4,0,0 +2013,8,31,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,935,0,0,1115,-1,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,745,-2,0,1235,-2,0,0 +2013,10,29,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,645,28,1,755,26,1,0 +2013,5,20,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1310,110,1,1510,92,1,0 +2013,9,3,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,545,-3,0,855,-23,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,805,-3,0,1125,-8,0,0 +2013,6,3,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1355,-3,0,1502,11,0,0 +2013,5,10,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1231,-9,0,1405,-3,0,0 +2013,10,5,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1640,1,0,1805,-9,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,6,0,1019,8,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1035,2,0,1600,-13,0,0 +2013,8,30,5,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1332,-11,0,1528,-32,0,0 +2013,5,27,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1804,59,1,2159,47,1,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,820,4,0,935,-7,0,0 +2013,9,8,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1148,-10,0,1454,-16,0,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,-5,0,1210,0,0,0 +2013,7,8,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-8,0,1712,49,1,0 +2013,9,27,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1800,0,,1925,0,1,1 +2013,4,23,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1740,0,0,1940,-6,0,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,700,-6,0,954,-13,0,0 +2013,10,23,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1330,71,1,1500,72,1,0 +2013,8,27,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1455,2,0,1615,-6,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1645,21,1,1830,9,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1817,44,1,2058,70,1,0 +2013,9,8,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,0,0,2010,-12,0,0 +2013,9,30,1,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1640,-6,0,1820,-10,0,0 +2013,10,3,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1235,17,1,1418,14,0,0 +2013,6,22,6,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,-1,0,1000,-30,0,0 +2013,7,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1705,-2,0,2055,-2,0,0 +2013,8,23,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,740,5,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1034,19,1,1627,28,1,0 +2013,8,14,3,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,655,-4,0,917,0,0,0 +2013,4,8,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,4,0,1530,-8,0,0 +2013,7,11,4,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1112,10,0,1236,12,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1024,-3,0,1212,-3,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1822,22,1,2118,6,0,0 +2013,8,14,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1116,13,0,1250,15,1,0 +2013,6,1,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-1,0,805,-13,0,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,-5,0,1712,-6,0,0 +2013,6,16,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,19,1,2101,17,1,0 +2013,9,6,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-7,0,1757,52,1,0 +2013,4,7,7,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,-4,0,1632,-12,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1951,-5,0,2131,-9,0,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-6,0,2303,-15,0,0 +2013,6,22,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1820,4,0,1935,-2,0,0 +2013,10,29,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,930,-8,0,1140,-24,0,0 +2013,8,11,7,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1015,-7,0,1200,-17,0,0 +2013,9,5,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1059,-1,0,1254,-11,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,750,-3,0,1135,-7,0,0 +2013,9,24,2,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1200,-7,0,1300,-12,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,605,4,0,839,-16,0,0 +2013,5,1,3,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1830,-9,0,2047,-47,0,0 +2013,10,22,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,829,-8,0,1029,-4,0,0 +2013,10,17,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1959,85,1,2229,77,1,0 +2013,6,2,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1425,2,0,1747,-7,0,0 +2013,6,24,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-7,0,913,-21,0,0 +2013,4,25,4,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1335,-2,0,1541,-21,0,0 +2013,10,5,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-7,0,1011,-15,0,0 +2013,4,19,5,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,801,2,0,0 +2013,9,29,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,9,0,2103,-2,0,0 +2013,7,2,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1106,-7,0,1208,-19,0,0 +2013,8,23,5,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1710,-3,0,2019,-27,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,222,1,1915,214,1,0 +2013,10,20,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,-4,0,1840,-2,0,0 +2013,4,22,1,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1705,-8,0,1948,-3,0,0 +2013,4,25,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1555,4,0,1655,-5,0,0 +2013,5,20,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2050,6,0,2205,-2,0,0 +2013,9,23,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1825,-6,0,2046,-18,0,0 +2013,10,2,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,910,-6,0,954,-10,0,0 +2013,6,21,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2003,1,0,2151,-16,0,0 +2013,7,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,-9,0,927,-13,0,0 +2013,8,12,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-10,0,1004,-15,0,0 +2013,7,31,3,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,605,-1,0,730,-3,0,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2040,1,0,2205,-7,0,0 +2013,7,8,1,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1243,-5,0,1545,-3,0,0 +2013,8,27,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,845,1,0,1151,6,0,0 +2013,5,13,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,615,-2,0,1453,0,0,0 +2013,6,23,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-1,0,1202,-7,0,0 +2013,4,2,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1447,-3,0,1651,13,0,0 +2013,8,18,7,EV,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-5,0,1530,-12,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1453,15,1,1614,-12,0,0 +2013,5,26,7,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1342,5,0,1647,-9,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1805,-2,0,2042,-17,0,0 +2013,6,17,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1350,3,0,1550,-17,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1212,-2,0,1439,-9,0,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2317,4,0,717,-15,0,0 +2013,5,26,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-4,0,2035,-6,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1754,88,1,2013,64,1,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,8,0,2008,-2,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1108,250,1,1223,248,1,0 +2013,7,22,1,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,600,-3,0,1409,3,0,0 +2013,4,10,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1402,-7,0,1533,-10,0,0 +2013,8,15,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,3,0,1345,1,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,16,1,10,16,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1910,123,1,2045,131,1,0 +2013,7,17,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,728,-13,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2233,4,0,653,-4,0,0 +2013,5,17,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,813,0,0,1035,-25,0,0 +2013,9,1,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-5,0,1125,-13,0,0 +2013,6,23,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1405,-2,0,1515,-5,0,0 +2013,4,11,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,800,-2,0,920,-8,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2238,-3,0,19,-2,0,0 +2013,6,16,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-7,0,912,-13,0,0 +2013,9,29,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1130,-9,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1945,104,1,2140,100,1,0 +2013,6,17,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-4,0,1105,-4,0,0 +2013,5,2,4,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,720,-6,0,746,-4,0,0 +2013,9,14,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2040,-1,0,2350,-11,0,0 +2013,8,17,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1512,-2,0,1732,-27,0,0 +2013,6,1,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1335,-5,0,1455,-5,0,0 +2013,8,24,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1045,1,0,1200,-2,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,857,104,1,1158,132,1,0 +2013,6,7,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1800,48,1,1938,57,1,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1340,7,0,1600,14,0,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,156,1,1749,151,1,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,13,0,1618,140,1,0 +2013,9,13,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1759,56,1,1938,49,1,0 +2013,7,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1341,-2,0,1707,-2,0,0 +2013,10,5,6,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1125,5,0,1400,-13,0,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,1,0,1530,-1,0,0 +2013,4,16,2,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1520,-11,0,1811,-19,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,0,0,1100,0,0,0 +2013,8,24,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1600,-1,0,1710,-9,0,0 +2013,10,13,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1747,-2,0,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1710,-3,0,2033,18,1,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,3,0,1400,-22,0,0 +2013,10,20,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,1420,8,0,1640,0,0,0 +2013,6,13,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,58,1,2135,86,1,0 +2013,5,19,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-1,0,905,-2,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,705,-2,0,1115,-14,0,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,0,0,2250,-3,0,0 +2013,4,19,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,3,0,1710,-4,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,86,1,1701,91,1,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2035,-5,0,2156,-7,0,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-7,0,2345,11,0,0 +2013,10,9,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1434,-5,0,1655,-3,0,0 +2013,7,22,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,1010,-12,0,0 +2013,9,4,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-4,0,1015,-18,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1123,4,0,1340,5,0,0 +2013,6,25,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,152,1,2029,186,1,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,143,1,2336,136,1,0 +2013,9,8,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1205,-3,0,1315,-10,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2110,12,0,2230,2,0,0 +2013,9,21,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,3,0,2035,-3,0,0 +2013,8,26,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,1,0,1918,2,0,0 +2013,9,17,2,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1103,0,0,1248,-3,0,0 +2013,8,15,4,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-1,0,1555,-3,0,0 +2013,5,7,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2340,-9,0,609,-12,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,20,1,1202,35,1,0 +2013,8,21,3,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,0,0,1235,-17,0,0 +2013,4,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1705,-3,0,2336,-22,0,0 +2013,6,17,1,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,-1,0,2115,30,1,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-3,0,2100,-9,0,0 +2013,6,1,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1255,-14,0,0 +2013,9,26,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,-3,0,1650,10,0,0 +2013,8,31,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1100,18,1,1205,23,1,0 +2013,6,5,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,915,-9,0,1445,-10,0,0 +2013,9,6,5,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,852,6,0,1126,-20,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-4,0,1024,-7,0,0 +2013,6,25,2,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1102,-5,0,1226,-8,0,0 +2013,9,9,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-6,0,1050,-36,0,0 +2013,7,12,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,77,1,2300,84,1,0 +2013,7,3,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1840,37,1,2005,46,1,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1005,-15,0,1402,-2,0,0 +2013,7,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1215,-3,0,1315,-4,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,740,-1,0,948,-20,0,0 +2013,6,5,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1348,-9,0,1515,15,1,0 +2013,5,24,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2040,-3,0,2200,19,1,0 +2013,6,15,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,-2,0,1915,8,0,0 +2013,4,1,1,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,920,-1,0,1735,-31,0,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,12,0,1735,17,1,0 +2013,4,7,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1328,26,1,1532,18,1,0 +2013,4,15,1,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,-4,0,841,-4,0,0 +2013,7,14,7,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1745,7,0,1935,-8,0,0 +2013,9,20,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1731,-6,0,1929,-7,0,0 +2013,5,26,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1705,35,1,1820,30,1,0 +2013,6,17,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,-2,0,1900,-17,0,0 +2013,9,11,3,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,27,1,2020,107,1,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,-3,0,1425,-7,0,0 +2013,5,11,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1605,-2,0,1735,-5,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1249,4,0,1658,-25,0,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,8,0,830,7,0,0 +2013,8,14,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,-6,0,1632,-14,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-6,0,27,-11,0,0 +2013,4,29,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1656,12,0,1848,6,0,0 +2013,10,10,4,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1532,-7,0,1543,-14,0,0 +2013,9,21,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,825,-4,0,1024,-5,0,0 +2013,6,19,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,710,-8,0,805,-7,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,-4,0,1831,-6,0,0 +2013,4,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2151,-7,0,2239,-26,0,0 +2013,4,10,3,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1605,15,1,2350,10,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1423,-5,0,1613,-12,0,0 +2013,8,28,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,755,-5,0,855,-2,0,0 +2013,10,9,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1856,-2,0,2152,-37,0,0 +2013,6,29,6,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,-2,0,809,11,0,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,730,40,1,1025,67,1,0 +2013,5,15,3,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-7,0,955,-22,0,0 +2013,5,21,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,640,-4,0,925,4,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1230,6,0,1351,-2,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,172,1,1800,190,1,0 +2013,10,31,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-1,0,1749,-1,0,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,-2,0,1110,-2,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,0,0,1342,-21,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,6,0,1412,5,0,0 +2013,6,11,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-8,0,1749,-13,0,0 +2013,4,13,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1415,-2,0,1525,-8,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1445,1,0,1624,12,0,0 +2013,6,11,2,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,-1,0,1635,-15,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1425,4,0,1550,-7,0,0 +2013,4,14,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,-6,0,1040,-12,0,0 +2013,7,5,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-8,0,1030,-19,0,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1915,7,0,2225,0,0,0 +2013,4,25,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,828,0,0,1036,-5,0,0 +2013,7,1,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,1,0,2330,-16,0,0 +2013,9,18,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1215,11,0,1544,1,0,0 +2013,10,9,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1825,2,0,2040,6,0,0 +2013,9,23,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-4,0,1820,-14,0,0 +2013,6,29,6,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1400,42,1,1725,36,1,0 +2013,4,8,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2111,-11,0,2257,-21,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,-2,0,950,-21,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1909,54,1,2037,53,1,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1617,-3,0,1710,-10,0,0 +2013,4,2,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,2025,-2,0,2347,5,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1120,-3,0,1410,-17,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1155,12,0,1315,-1,0,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1025,18,1,1310,23,1,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1903,0,,2109,0,1,1 +2013,5,6,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-3,0,2020,-9,0,0 +2013,7,2,2,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,58,1,2139,33,1,0 +2013,4,20,6,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,800,-7,0,1025,6,0,0 +2013,4,27,6,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1645,11,0,1829,2,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,740,-4,0,905,-13,0,0 +2013,5,24,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2157,-4,0,2338,-10,0,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1758,-5,0,2311,-1,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,-1,0,810,-8,0,0 +2013,10,12,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,-3,0,1159,45,1,0 +2013,5,4,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,394,1,1217,390,1,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,42,1,1505,37,1,0 +2013,4,26,5,EV,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,857,-5,0,1018,-24,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,75,1,2123,77,1,0 +2013,6,4,2,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1656,-3,0,1843,-8,0,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,825,69,1,1010,58,1,0 +2013,4,30,2,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,743,-6,0,915,-14,0,0 +2013,10,8,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,155,-7,0,824,-34,0,0 +2013,6,8,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1105,-5,0,1210,-10,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2110,0,0,2252,-24,0,0 +2013,4,11,4,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-1,0,1130,1,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1029,91,1,1208,86,1,0 +2013,5,27,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-4,0,1514,-9,0,0 +2013,6,14,5,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,304,1,1857,294,1,0 +2013,9,1,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,-4,0,1549,-2,0,0 +2013,8,21,3,9E,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1425,6,0,1618,6,0,0 +2013,7,6,6,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1145,5,0,1438,-8,0,0 +2013,4,12,5,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1650,-3,0,2058,-12,0,0 +2013,4,21,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,700,-5,0,1004,13,0,0 +2013,7,6,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,9,0,2100,2,0,0 +2013,10,18,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1120,9,0,1320,6,0,0 +2013,9,21,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,605,-2,0,720,-1,0,0 +2013,8,8,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1830,107,1,1930,105,1,0 +2013,10,1,2,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2025,-1,0,2350,-31,0,0 +2013,5,3,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,900,5,0,955,8,0,0 +2013,7,18,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1551,-1,0,1707,-8,0,0 +2013,4,19,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-3,0,1115,26,1,0 +2013,6,9,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,1,0,1742,-3,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,2,0,1600,-11,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2045,29,1,2215,17,1,0 +2013,5,10,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,-3,0,1520,-22,0,0 +2013,6,30,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1850,41,1,2030,38,1,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1050,9,0,1435,-1,0,0 +2013,9,21,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1024,0,0,1825,24,1,0 +2013,6,15,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,910,-4,0,1245,-13,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1240,4,0,1340,1,0,0 +2013,5,17,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1458,-1,0,1744,-17,0,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,927,51,1,1104,30,1,0 +2013,4,23,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1530,-5,0,1902,7,0,0 +2013,7,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,0,0,1700,-5,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1415,28,1,1640,23,1,0 +2013,4,30,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2145,-4,0,2200,-19,0,0 +2013,6,7,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,142,1,2125,129,1,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-1,0,1535,-8,0,0 +2013,9,1,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1048,-1,0,1255,-5,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1249,-1,0,1410,0,0,0 +2013,8,22,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1032,-6,0,1232,-10,0,0 +2013,6,26,3,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2053,0,0,500,11,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,715,-3,0,820,-13,0,0 +2013,8,25,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,955,11,0,1240,-1,0,0 +2013,5,25,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1505,-2,0,1720,-8,0,0 +2013,7,30,2,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,853,-4,0,1212,15,1,0 +2013,7,23,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,12,0,1228,11,0,0 +2013,6,30,7,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1622,-2,0,1933,-23,0,0 +2013,7,2,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1758,-9,0,1927,18,1,0 +2013,6,12,3,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1525,-4,0,1615,-14,0,0 +2013,5,10,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1200,-3,0,1350,-13,0,0 +2013,10,1,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-9,0,1451,2,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1540,47,1,1800,41,1,0 +2013,5,14,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-4,0,800,-21,0,0 +2013,4,7,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2235,8,0,549,8,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,600,6,0,940,-15,0,0 +2013,9,22,7,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1045,1,0,1351,-1,0,0 +2013,5,30,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2238,3,0,2339,-3,0,0 +2013,6,24,1,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,61,1,1425,54,1,0 +2013,10,13,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-3,0,1010,-1,0,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1905,14,0,2010,4,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,940,28,1,1105,19,1,0 +2013,6,4,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2340,0,0,609,1,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1610,39,1,1621,36,1,0 +2013,4,30,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-6,0,1027,-10,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1940,1,0,2205,16,1,0 +2013,6,5,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1630,11,0,1740,7,0,0 +2013,9,21,6,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,3,0,1013,6,0,0 +2013,6,26,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,602,-2,0,727,-18,0,0 +2013,6,3,1,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1305,-8,0,1630,-12,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-1,0,1011,-10,0,0 +2013,5,7,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,728,-7,0,906,-5,0,0 +2013,6,29,6,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-4,0,500,-2,0,0 +2013,4,28,7,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,5,0,1515,-9,0,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1735,70,1,2030,92,1,0 +2013,6,3,1,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1837,80,1,2021,59,1,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1524,-3,0,1718,-9,0,0 +2013,9,13,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,735,-4,0,825,-13,0,0 +2013,8,3,6,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1823,72,1,2110,60,1,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-7,0,1130,2,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1230,-3,0,1530,-4,0,0 +2013,4,23,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-3,0,2109,-12,0,0 +2013,8,30,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,0,,1410,0,1,1 +2013,4,22,1,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,700,-4,0,1120,-15,0,0 +2013,8,14,3,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1610,14,0,1945,17,1,0 +2013,10,20,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2025,0,0,2150,-15,0,0 +2013,6,15,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,1145,11,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1835,-6,0,2100,-4,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1220,1,0,1420,0,0,0 +2013,7,22,1,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1335,89,1,1620,82,1,0 +2013,10,14,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1838,-2,0,0 +2013,8,4,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,825,-5,0,1420,-32,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2115,161,1,2335,155,1,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2005,-2,0,2215,-6,0,0 +2013,10,28,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-8,0,2049,-22,0,0 +2013,10,24,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,20,1,1425,23,1,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,905,-1,0,1140,-9,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1500,13,0,1630,43,1,0 +2013,7,28,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1122,-1,0,0 +2013,7,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2050,68,1,2210,57,1,0 +2013,10,29,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,1,0,710,-1,0,0 +2013,9,17,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1750,-3,0,1910,17,1,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,930,-2,0,1045,-12,0,0 +2013,10,20,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-4,0,1826,9,0,0 +2013,9,28,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1002,-19,0,1126,-24,0,0 +2013,9,9,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1540,-7,0,2110,-10,0,0 +2013,9,26,4,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,-3,0,2100,-9,0,0 +2013,5,15,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1825,8,0,2010,17,1,0 +2013,7,7,7,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,23,1,1557,47,1,0 +2013,5,6,1,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2217,-10,0,620,-5,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1133,11,0,1225,23,1,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1339,0,0,1506,-9,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,1,0,1301,-2,0,0 +2013,9,25,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1810,13,0,1935,1,0,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2240,-1,0,635,-23,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1815,70,1,2020,80,1,0 +2013,10,22,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-4,0,1325,-6,0,0 +2013,6,4,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-6,0,1330,-5,0,0 +2013,9,4,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1240,-7,0,1325,-10,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,920,47,1,1058,36,1,0 +2013,9,9,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2245,-3,0,617,2,0,0 +2013,4,2,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2212,-5,0,29,-7,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1723,64,1,2303,49,1,0 +2013,6,30,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-10,0,1040,-14,0,0 +2013,9,29,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,220,1,2103,222,1,0 +2013,5,28,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2038,-7,0,2220,-3,0,0 +2013,7,20,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1625,47,1,1640,32,1,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1705,3,0,1845,-6,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,2,0,1445,-8,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-2,0,1324,-20,0,0 +2013,5,19,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,27,1,2200,6,0,0 +2013,6,1,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1615,30,1,1755,27,1,0 +2013,5,28,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,3,0,1252,-5,0,0 +2013,8,12,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,2,0,1224,2,0,0 +2013,4,9,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2025,-17,0,2115,-17,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,610,-4,0,725,0,0,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2010,-5,0,2220,-3,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,-3,0,1110,6,0,0 +2013,10,5,6,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,907,-6,0,1213,-24,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-3,0,2030,-10,0,0 +2013,5,19,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,615,-3,0,810,-27,0,0 +2013,10,1,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1020,-10,0,1211,-20,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1830,14,0,1945,3,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,-2,0,1954,20,1,0 +2013,4,27,6,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2255,-2,0,703,15,1,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1935,-4,0,55,0,0,0 +2013,7,17,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1745,6,0,2055,8,0,0 +2013,10,3,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1820,32,1,1920,28,1,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1540,6,0,1715,6,0,0 +2013,4,21,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,816,10,0,942,-2,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,4,0,2357,-2,0,0 +2013,9,5,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,-6,0,810,-8,0,0 +2013,4,30,2,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,705,-7,0,826,-15,0,0 +2013,8,18,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1051,-7,0,1247,-19,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,835,-3,0,940,-4,0,0 +2013,8,26,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-7,0,1040,-24,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,725,-2,0,803,-12,0,0 +2013,5,3,5,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-6,0,2020,-13,0,0 +2013,4,15,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1044,10,0,1347,10,0,0 +2013,10,23,3,EV,12953,LaGuardia,New York,NY,13931,Norfolk International,Norfolk,VA,1545,58,1,1721,69,1,0 +2013,4,4,4,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1002,14,0,1519,15,1,0 +2013,8,7,3,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-1,0,805,2,0,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1129,58,1,1336,37,1,0 +2013,7,19,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,1028,-3,0,0 +2013,5,7,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,841,-1,0,1033,-10,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1721,0,0,1938,-30,0,0 +2013,7,13,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-9,0,1545,-10,0,0 +2013,5,4,6,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-13,0,2058,-36,0,0 +2013,5,11,6,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,-10,0,2020,-17,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1225,31,1,1345,29,1,0 +2013,10,12,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1610,-6,0,1711,-10,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-1,0,1903,-13,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,-4,0,1231,-3,0,0 +2013,5,18,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1026,4,0,1608,-15,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,5,0,2040,7,0,0 +2013,10,17,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,620,-2,0,810,-5,0,0 +2013,5,19,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,7,0,1840,21,1,0 +2013,8,13,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1107,-2,0,1710,7,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,39,1,2129,40,1,0 +2013,8,25,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,605,-4,0,741,-9,0,0 +2013,5,31,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1159,7,0,1907,-9,0,0 +2013,5,24,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-6,0,1435,-9,0,0 +2013,4,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1605,157,1,1810,183,1,0 +2013,6,10,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-5,0,1012,-1,0,0 +2013,7,9,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,910,1,0,1245,6,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2036,3,0,2145,-1,0,0 +2013,8,10,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1340,-8,0,1405,-14,0,0 +2013,5,29,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-10,0,955,-15,0,0 +2013,4,29,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1307,-1,0,1355,-11,0,0 +2013,6,25,2,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,-1,0,1200,-1,0,0 +2013,4,17,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,120,1,1552,101,1,0 +2013,4,24,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1003,-5,0,1322,-22,0,0 +2013,4,14,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,2,0,1204,14,0,0 +2013,5,28,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1728,11,0,2040,-23,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,-4,0,1651,-16,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,40,1,2252,29,1,0 +2013,6,30,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-2,0,940,-18,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,-6,0,1508,-13,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1650,-1,0,1805,-9,0,0 +2013,4,20,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1430,-2,0,1540,-6,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1124,-4,0,1241,-34,0,0 +2013,9,23,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1341,-2,0,1420,-3,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,855,-3,0,1605,29,1,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1415,-2,0,1525,-14,0,0 +2013,6,22,6,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1330,0,0,1630,10,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,5,0,1500,2,0,0 +2013,10,28,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1208,-4,0,1412,-17,0,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-2,0,2050,8,0,0 +2013,5,11,6,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1600,-3,0,1743,-6,0,0 +2013,5,2,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,34,1,1709,66,1,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2102,11,0,2229,7,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,720,-2,0,1110,-9,0,0 +2013,8,14,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1045,0,0,1259,5,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-3,0,15,-2,0,0 +2013,10,4,5,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1825,-9,0,2040,-1,0,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,600,2,0,645,2,0,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,0,0,1705,-12,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2250,0,0,15,-6,0,0 +2013,8,22,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1855,63,1,2215,56,1,0 +2013,6,13,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,0,,1121,0,1,1 +2013,9,25,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,0,0,1205,16,1,0 +2013,4,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,-2,0,1838,-16,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,800,-18,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1810,-3,0,1925,-5,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1510,8,0,1615,-1,0,0 +2013,6,6,4,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,1415,-17,0,0 +2013,10,24,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1509,-7,0,1731,-4,0,0 +2013,7,1,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-5,0,1450,-17,0,0 +2013,6,14,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,635,0,0,955,-3,0,0 +2013,10,30,3,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1055,-3,0,1330,-27,0,0 +2013,7,6,6,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,6,0,550,-4,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,622,-7,0,718,-5,0,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1729,-10,0,1900,-25,0,0 +2013,6,22,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,741,-8,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,-3,0,2110,-16,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1345,37,1,1510,35,1,0 +2013,4,6,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1505,-4,0,1635,-12,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,-6,0,1402,-14,0,0 +2013,10,29,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1135,-1,0,1300,7,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1740,0,0,2335,5,0,0 +2013,7,4,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1741,2,0,2032,-13,0,0 +2013,9,28,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1220,6,0,1512,0,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1210,7,0,1315,18,1,0 +2013,10,23,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1540,0,0,1650,-3,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,810,-2,0,1505,-21,0,0 +2013,7,25,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-4,0,635,44,1,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,910,-5,0,1015,-5,0,0 +2013,5,7,2,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,810,8,0,950,-11,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,825,25,1,1055,39,1,0 +2013,10,13,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1730,0,0,2000,-7,0,0 +2013,5,5,7,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,48,-9,0,630,2,0,0 +2013,5,21,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1625,1,0,1645,-8,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,839,-7,0,1450,-15,0,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1850,58,1,2225,52,1,0 +2013,8,10,6,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-3,0,1235,-15,0,0 +2013,8,30,5,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2002,14,0,2209,-19,0,0 +2013,7,11,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,945,-5,0,0 +2013,4,9,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2111,28,1,2220,29,1,0 +2013,6,3,1,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2050,-5,0,2305,-9,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,-3,0,1930,-4,0,0 +2013,8,15,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2010,3,0,2050,-7,0,0 +2013,6,21,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,1,0,1340,-1,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1525,-3,0,1549,-24,0,0 +2013,4,4,4,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,645,32,1,849,36,1,0 +2013,9,11,3,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1128,-3,0,1317,-16,0,0 +2013,5,7,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1045,-8,0,1420,-48,0,0 +2013,5,9,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1832,4,0,2108,6,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2225,4,0,2305,-4,0,0 +2013,7,19,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,92,1,1938,102,1,0 +2013,9,2,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1438,17,1,2002,43,1,0 +2013,5,14,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,800,13,0,1101,10,0,0 +2013,5,3,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-11,0,1253,-7,0,0 +2013,10,29,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,655,6,0,725,31,1,0 +2013,4,5,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2045,-5,0,2320,-3,0,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,33,1,1839,42,1,0 +2013,4,10,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,944,26,1,1058,17,1,0 +2013,7,25,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,37,1,2105,25,1,0 +2013,6,26,3,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,8,0,920,6,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2015,4,0,2335,-9,0,0 +2013,4,8,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1151,-2,0,1305,14,0,0 +2013,5,4,6,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-21,0,1755,6,0,0 +2013,4,20,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-3,0,1644,-12,0,0 +2013,10,21,1,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,939,-10,0,1235,38,1,0 +2013,5,23,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1856,0,,2150,0,1,1 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,10,0,1736,4,0,0 +2013,5,5,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,2,0,2005,-1,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,600,-1,0,805,-4,0,0 +2013,6,10,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1513,1,0,1834,-22,0,0 +2013,8,5,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-7,0,945,-10,0,0 +2013,7,19,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,12,0,1655,6,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2055,218,1,2259,208,1,0 +2013,10,14,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,23,1,1355,14,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1630,-3,0,1740,-11,0,0 +2013,4,1,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,14,0,1855,4,0,0 +2013,5,23,4,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,923,39,1,1046,21,1,0 +2013,7,26,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,0,0,1633,-4,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,6,0,1901,16,1,0 +2013,4,6,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,244,1,1235,231,1,0 +2013,9,8,7,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,735,-11,0,1345,-9,0,0 +2013,5,21,2,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,39,1,2015,41,1,0 +2013,7,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,804,-3,0,0 +2013,8,7,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,605,-5,0,710,-9,0,0 +2013,10,29,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1537,-6,0,1739,-16,0,0 +2013,4,8,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1841,-3,0,2148,-9,0,0 +2013,10,23,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1755,-5,0,1920,-8,0,0 +2013,10,19,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-2,0,1553,-5,0,0 +2013,8,4,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2040,9,0,2200,2,0,0 +2013,6,23,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2205,4,0,2330,-6,0,0 +2013,7,26,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1140,-5,0,1331,-25,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,-5,0,1430,-10,0,0 +2013,4,9,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1834,97,1,1900,97,1,0 +2013,4,2,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1300,-1,0,1503,-7,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,835,1,0,1000,1,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1820,-4,0,2205,-19,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,-3,0,1100,-3,0,0 +2013,8,31,6,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1817,-2,0,2047,-27,0,0 +2013,6,9,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,12,0,1740,6,0,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,830,-5,0,1125,-18,0,0 +2013,10,23,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,-3,0,2128,-8,0,0 +2013,7,29,1,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1329,13,0,1925,-14,0,0 +2013,4,7,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1314,2,0,1831,-22,0,0 +2013,10,21,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,-6,0,2032,2,0,0 +2013,10,22,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-2,0,857,-12,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,26,1,1015,30,1,0 +2013,8,15,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,925,-5,0,1110,-14,0,0 +2013,6,17,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-6,0,1345,-8,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1719,12,0,1832,29,1,0 +2013,10,13,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1005,0,0,1125,-3,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1226,-3,0,1359,-17,0,0 +2013,8,27,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,0,0,1643,-7,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1845,0,0,2100,2,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,820,1,0,1300,-4,0,0 +2013,8,21,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,-1,0,1055,-7,0,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1541,-4,0,1645,-5,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1525,1,0,1805,-22,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,-2,0,1110,-10,0,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,600,-1,0,840,-11,0,0 +2013,10,28,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1855,18,1,1945,12,0,0 +2013,6,25,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,68,1,1914,111,1,0 +2013,4,26,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1655,-2,0,1805,-19,0,0 +2013,7,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1753,-6,0,1848,-19,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-7,0,1006,-34,0,0 +2013,4,28,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1310,46,1,1515,39,1,0 +2013,6,2,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1910,5,0,2035,-3,0,0 +2013,5,22,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,-5,0,2013,-10,0,0 +2013,9,26,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1600,9,0,1630,14,0,0 +2013,10,29,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-6,0,1910,1,0,0 +2013,9,17,2,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1745,-3,0,2016,-12,0,0 +2013,7,1,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1936,-4,0,2125,-7,0,0 +2013,5,16,4,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-7,0,1523,-21,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,25,1,2215,7,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1140,21,1,1330,41,1,0 +2013,5,22,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,600,1,0,725,0,0,0 +2013,7,10,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1033,-1,0,1405,-7,0,0 +2013,9,6,5,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1635,7,0,1820,-12,0,0 +2013,4,26,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1242,16,1,1400,24,1,0 +2013,6,24,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,8,0,911,1,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2227,10,0,59,4,0,0 +2013,9,16,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-5,0,1551,-3,0,0 +2013,8,2,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,5,0,1715,7,0,0 +2013,6,22,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,14,0,2245,-5,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2150,1,0,2305,8,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1235,-2,0,1320,-8,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1005,0,0,1130,4,0,0 +2013,7,13,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,-9,0,1845,-3,0,0 +2013,6,25,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,730,-10,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,43,1,1425,33,1,0 +2013,9,3,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,11,0,1535,16,1,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1510,17,1,1825,12,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,152,1,1911,145,1,0 +2013,4,13,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,855,85,1,1026,47,1,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,-2,0,1242,-8,0,0 +2013,4,4,4,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1035,-7,0,1317,15,1,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1145,24,1,1351,7,0,0 +2013,5,4,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-4,0,2131,-21,0,0 +2013,9,14,6,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,745,-5,0,1501,-3,0,0 +2013,7,21,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2215,-5,0,45,-2,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,32,1,2242,61,1,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,900,-3,0,1425,-19,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1925,25,1,2217,22,1,0 +2013,5,13,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-7,0,1744,3,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,859,0,0,1033,-3,0,0 +2013,6,28,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,1,0,1231,14,0,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-5,0,1035,-21,0,0 +2013,6,24,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1431,0,0,1517,1,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,16,1,2353,4,0,0 +2013,8,28,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1357,-4,0,1538,9,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,34,1,2310,25,1,0 +2013,8,6,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-14,0,2326,-10,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1115,-5,0,1210,-8,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,-4,0,735,-12,0,0 +2013,9,9,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-4,0,1117,-7,0,0 +2013,6,23,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,-8,0,1735,17,1,0 +2013,9,26,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1905,17,1,2005,13,0,0 +2013,6,25,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,635,-6,0,730,-10,0,0 +2013,9,3,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,-6,0,1930,-21,0,0 +2013,7,28,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1935,25,1,2259,18,1,0 +2013,8,22,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,3,0,1748,20,1,0 +2013,8,29,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-5,0,1621,-21,0,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,132,1,1712,114,1,0 +2013,6,19,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,-1,0,1825,-2,0,0 +2013,10,29,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1930,0,0,2025,-3,0,0 +2013,4,14,7,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-16,0,1332,-8,0,0 +2013,8,1,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,558,-6,0,854,-2,0,0 +2013,8,22,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,18,1,1910,15,1,0 +2013,5,18,6,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1100,-2,0,1235,-26,0,0 +2013,5,3,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,8,0,1755,-3,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1725,27,1,2040,21,1,0 +2013,6,14,5,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,815,-10,0,1110,-31,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1509,-10,0,1721,-24,0,0 +2013,7,22,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,28,1,1724,44,1,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1325,26,1,1435,30,1,0 +2013,4,29,1,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1621,34,1,1855,63,1,0 +2013,7,10,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1959,11,0,2247,4,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1840,2,0,2155,-12,0,0 +2013,4,22,1,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1035,2,0,1335,1,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2245,37,1,633,42,1,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,1,0,1355,-1,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,2,0,1420,0,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,0,0,1710,-5,0,0 +2013,9,13,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,0,,1542,0,1,1 +2013,7,2,2,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-10,0,1600,-7,0,0 +2013,7,7,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1004,3,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,2015,0,0,2235,-10,0,0 +2013,6,29,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,9,0,1630,3,0,0 +2013,7,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1115,21,1,1355,21,1,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,950,-3,0,1324,8,0,0 +2013,10,4,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2040,-4,0,2248,-7,0,0 +2013,6,16,7,FL,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1718,49,1,1833,53,1,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1400,0,0,1620,-9,0,0 +2013,10,26,6,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1820,2,0,2037,10,0,0 +2013,9,15,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2000,-3,0,2148,-13,0,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1804,24,1,2007,25,1,0 +2013,10,8,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-1,0,1320,-1,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,930,-2,0,1203,2,0,0 +2013,8,24,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,15,1,2346,0,0,0 +2013,8,13,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1850,-2,0,2033,13,0,0 +2013,4,8,1,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1900,5,0,2043,5,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,1,0,1247,-12,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,945,1,0,1205,-7,0,0 +2013,8,10,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,830,28,1,956,24,1,0 +2013,8,19,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2206,-7,0,2351,-17,0,0 +2013,8,10,6,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1825,-6,0,2146,-21,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,-3,0,1025,-2,0,0 +2013,9,2,1,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1140,-9,0,1254,-25,0,0 +2013,10,8,2,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,800,-8,0,949,-2,0,0 +2013,5,17,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1125,-1,0,1338,-6,0,0 +2013,6,14,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,0,0,1408,-1,0,0 +2013,5,13,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,11,0,1915,-27,0,0 +2013,4,18,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,1245,-11,0,0 +2013,5,24,5,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,951,-5,0,1340,-15,0,0 +2013,7,31,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,-1,0,1100,8,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1420,-5,0,1515,-13,0,0 +2013,9,30,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,815,0,0,920,-24,0,0 +2013,9,29,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1655,80,1,1820,78,1,0 +2013,7,21,7,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,0,0,900,-2,0,0 +2013,9,11,3,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,-5,0,2100,-13,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1608,13,0,1957,-3,0,0 +2013,4,12,5,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,555,-7,0,701,-10,0,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,2040,41,1,2140,37,1,0 +2013,10,24,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,647,-6,0,939,-19,0,0 +2013,8,30,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,0,0,948,6,0,0 +2013,7,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,2030,137,1,2235,128,1,0 +2013,4,27,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,629,-7,0,825,-14,0,0 +2013,10,23,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-2,0,1356,-14,0,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-4,0,1535,1,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1950,1,0,2306,-4,0,0 +2013,9,25,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1330,10,0,1510,-9,0,0 +2013,10,13,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1846,8,0,2130,-15,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1924,-1,0,2044,-14,0,0 +2013,6,25,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,650,1,0,720,-3,0,0 +2013,10,5,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-2,0,1335,-21,0,0 +2013,4,6,6,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,843,-12,0,1018,-7,0,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,920,-1,0,1430,-10,0,0 +2013,6,29,6,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1047,15,1,1259,11,0,0 +2013,10,11,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1320,36,1,1505,27,1,0 +2013,6,19,3,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,2005,-4,0,48,-6,0,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-4,0,2009,1,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,5,0,2358,-2,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,19,1,2215,-2,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,28,1,2320,15,1,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1735,-8,0,1900,-9,0,0 +2013,6,6,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,1,0,840,-14,0,0 +2013,9,24,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-5,0,1445,-7,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1231,39,1,1411,31,1,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,900,-3,0,1043,5,0,0 +2013,5,27,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,-5,0,1649,-1,0,0 +2013,7,25,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-5,0,2011,-20,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1607,-2,0,1944,-19,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1325,49,1,1440,44,1,0 +2013,6,13,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-3,0,1620,2,0,0 +2013,6,28,5,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-7,0,1104,-22,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1832,-14,0,0 +2013,9,5,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,3,0,2130,0,0,0 +2013,4,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,0,0,1835,2,0,0 +2013,7,27,6,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,630,-2,0,758,8,0,0 +2013,10,24,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,725,75,1,745,81,1,0 +2013,6,22,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,530,-5,0,545,-13,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,940,-1,0,1158,-27,0,0 +2013,7,2,2,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-9,0,1250,-10,0,0 +2013,6,15,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1235,-8,0,1540,-19,0,0 +2013,5,30,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,7,0,1500,1,0,0 +2013,9,2,1,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2019,277,1,2310,241,1,0 +2013,8,25,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,-5,0,1025,-36,0,0 +2013,7,5,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1535,-4,0,1700,9,0,0 +2013,4,25,4,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1221,-5,0,1333,-9,0,0 +2013,6,29,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1045,52,1,1210,46,1,0 +2013,8,12,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1845,138,1,2005,129,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2146,10,0,2346,4,0,0 +2013,8,5,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1820,-1,0,1935,-13,0,0 +2013,4,27,6,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-9,0,1410,0,0,0 +2013,4,27,6,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,920,-5,0,1055,-16,0,0 +2013,5,27,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,34,1,2045,30,1,0 +2013,8,19,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2230,15,1,428,20,1,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1425,5,0,1645,-9,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1900,45,1,2321,55,1,0 +2013,9,11,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-14,0,1119,-19,0,0 +2013,6,11,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,940,1,0,1110,-2,0,0 +2013,6,5,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,25,1,1140,37,1,0 +2013,9,27,5,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,700,-8,0,858,-19,0,0 +2013,4,8,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2120,2,0,2227,-2,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1320,11,0,1445,12,0,0 +2013,7,13,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,630,-1,0,755,-21,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,-4,0,2159,-1,0,0 +2013,4,9,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1731,108,1,1913,94,1,0 +2013,4,14,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,-7,0,1200,-9,0,0 +2013,6,8,6,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,-10,0,1420,-27,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1730,5,0,2207,4,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1246,-5,0,1556,-15,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,701,-7,0,936,-25,0,0 +2013,5,13,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1050,-12,0,0 +2013,10,8,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-1,0,820,-8,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1845,2,0,2215,-11,0,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-3,0,1834,2,0,0 +2013,5,20,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1430,-5,0,1659,6,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1655,1,0,1906,-2,0,0 +2013,8,3,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1247,-2,0,1411,-13,0,0 +2013,10,11,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1540,5,0,2110,-9,0,0 +2013,4,6,6,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,645,-6,0,1047,-28,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,31,1,2250,35,1,0 +2013,4,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-4,0,1352,11,0,0 +2013,7,17,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,1,0,1345,-10,0,0 +2013,8,7,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,655,0,0,820,-5,0,0 +2013,5,15,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1440,-2,0,1630,-11,0,0 +2013,4,19,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1524,-7,0,1739,-18,0,0 +2013,9,2,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-4,0,1808,4,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,25,1,2359,7,0,0 +2013,8,22,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-8,0,2058,24,1,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1735,31,1,1910,28,1,0 +2013,8,31,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1033,-6,0,1423,-10,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,800,9,0,1025,8,0,0 +2013,4,17,3,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,700,1,0,855,-2,0,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2105,-3,0,2246,-8,0,0 +2013,6,1,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1139,-18,0,0 +2013,6,3,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,5,0,1239,4,0,0 +2013,8,23,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2010,8,0,2140,21,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-4,0,1158,-8,0,0 +2013,9,27,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,0,0,1211,-22,0,0 +2013,7,30,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1717,-4,0,1859,-19,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1640,143,1,2015,133,1,0 +2013,10,8,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1035,-1,0,1830,-9,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1105,-3,0,1210,-6,0,0 +2013,8,4,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,40,-5,0,651,-5,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,-4,0,1235,-18,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-3,0,2127,-2,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,1,0,2030,3,0,0 +2013,10,14,1,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1605,-2,0,1842,4,0,0 +2013,5,23,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1507,0,,1820,0,1,1 +2013,9,30,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1455,12,0,1812,2,0,0 +2013,5,19,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,42,1,1904,55,1,0 +2013,6,20,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2140,-1,0,2255,-8,0,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2030,-3,0,2356,-9,0,0 +2013,9,8,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1935,13,0,2210,13,0,0 +2013,7,3,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-4,0,1100,11,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,857,-5,0,1019,4,0,0 +2013,9,27,5,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,-7,0,1710,3,0,0 +2013,5,16,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2130,25,1,547,7,0,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1055,-3,0,1610,-3,0,0 +2013,9,24,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,935,-11,0,1114,-21,0,0 +2013,7,14,7,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2010,2,0,2235,-8,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1550,7,0,1655,-12,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1414,3,0,1535,-14,0,0 +2013,4,12,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,0,0,2005,0,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-2,0,1809,27,1,0 +2013,9,16,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,857,-8,0,1006,14,0,0 +2013,7,17,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-2,0,2010,6,0,0 +2013,7,16,2,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1940,2,0,2115,-15,0,0 +2013,5,15,3,UA,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1714,-7,0,1845,-15,0,0 +2013,10,24,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1257,-5,0,1414,-13,0,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1030,-4,0,1107,-4,0,0 +2013,5,20,1,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,76,1,2021,90,1,0 +2013,4,2,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-6,0,844,-9,0,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1741,16,1,1916,-29,0,0 +2013,10,26,6,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-8,0,1301,-9,0,0 +2013,8,30,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1545,15,1,1655,10,0,0 +2013,6,16,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,-3,0,1905,-20,0,0 +2013,9,7,6,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,-2,0,1735,14,0,0 +2013,9,24,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1012,-2,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1255,1,0,1515,-1,0,0 +2013,7,4,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-6,0,1322,-39,0,0 +2013,8,13,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,30,1,2105,18,1,0 +2013,7,26,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,1,0,2225,-1,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,2010,-3,0,2334,-20,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,9,0,1735,13,0,0 +2013,6,25,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-2,0,1119,-11,0,0 +2013,6,28,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1430,9,0,1944,24,1,0 +2013,9,15,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,756,-22,0,0 +2013,9,5,4,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-4,0,47,1,0,0 +2013,10,14,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,-1,0,1649,14,0,0 +2013,10,1,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1910,0,0,2010,-2,0,0 +2013,6,16,7,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2200,41,1,550,38,1,0 +2013,10,8,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,855,-16,0,0 +2013,5,7,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1415,-4,0,1430,-11,0,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,-6,0,1424,-49,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,3,0,1658,26,1,0 +2013,9,1,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,-4,0,1910,-32,0,0 +2013,9,15,7,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1210,-7,0,2029,-18,0,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,40,1,1131,40,1,0 +2013,5,30,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-2,0,847,-17,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1253,13,0,1620,3,0,0 +2013,8,19,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,1,0,1920,16,1,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,1,0,1815,-21,0,0 +2013,5,31,5,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2358,-9,0,744,-4,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,805,-3,0,925,0,0,0 +2013,4,25,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-2,0,2205,-12,0,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1035,-7,0,1244,-25,0,0 +2013,9,14,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1655,-10,0,2013,-34,0,0 +2013,8,17,6,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1350,11,0,1620,5,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,805,0,0,950,-8,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1235,-2,0,1615,4,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1200,-12,0,0 +2013,6,22,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1550,-5,0,1705,-16,0,0 +2013,9,11,3,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1713,300,1,1851,303,1,0 +2013,5,22,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,0,0,1305,-7,0,0 +2013,10,29,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1700,-7,0,1958,-23,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,930,17,1,1025,33,1,0 +2013,4,11,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2115,26,1,2225,18,1,0 +2013,5,6,1,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1315,14,0,1505,30,1,0 +2013,6,13,4,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,655,96,1,940,92,1,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,900,6,0,1155,7,0,0 +2013,8,19,1,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1903,-4,0,2024,8,0,0 +2013,9,22,7,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1845,9,0,2030,20,1,0 +2013,6,19,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-5,0,1545,0,0,0 +2013,4,5,5,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,820,0,0,1122,-15,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,-4,0,1845,-10,0,0 +2013,5,12,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1553,18,1,1758,16,1,0 +2013,9,23,1,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1226,-5,0,1502,-21,0,0 +2013,10,16,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,2006,4,0,0 +2013,7,22,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,80,1,2021,69,1,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1339,24,1,2222,8,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,32,1,2300,26,1,0 +2013,6,17,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1940,12,0,2050,12,0,0 +2013,8,6,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1651,45,1,1820,42,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,-1,0,1225,-24,0,0 +2013,10,21,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,730,-1,0,1015,-7,0,0 +2013,4,12,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1225,3,0,1400,-8,0,0 +2013,6,18,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1735,100,1,1856,179,1,0 +2013,5,21,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,818,-1,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2130,-10,0,2313,-25,0,0 +2013,8,30,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,-11,0,1401,-9,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,800,26,1,900,20,1,0 +2013,5,17,5,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-4,0,939,-4,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,720,1,0,820,-5,0,0 +2013,7,10,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1915,11,0,2140,-9,0,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,705,-3,0,945,-14,0,0 +2013,4,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,17,1,2149,13,0,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,635,55,1,755,50,1,0 +2013,10,30,3,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-8,0,2145,-9,0,0 +2013,6,8,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-11,0,1835,-13,0,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1045,-3,0,1140,0,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1525,-4,0,1728,12,0,0 +2013,7,12,5,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1041,-2,0,1244,8,0,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1755,-3,0,2026,21,1,0 +2013,8,6,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-5,0,1116,-1,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,0,,2251,0,1,1 +2013,9,23,1,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1145,4,0,1407,3,0,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1035,-3,0,1524,-12,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1615,90,1,1719,84,1,0 +2013,10,24,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-1,0,605,-11,0,0 +2013,10,17,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,5,0,750,-5,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-5,0,2320,-11,0,0 +2013,9,25,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1110,-9,0,1355,-27,0,0 +2013,5,30,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-7,0,2200,-26,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-2,0,757,-2,0,0 +2013,9,1,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1646,-9,0,1745,-19,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1945,-1,0,2135,-9,0,0 +2013,9,24,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,-3,0,2120,-23,0,0 +2013,6,1,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2339,16,1,730,4,0,0 +2013,9,19,4,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,-3,0,1013,-11,0,0 +2013,5,20,1,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,735,23,1,1016,43,1,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1745,-1,0,1931,-9,0,0 +2013,6,30,7,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,53,1,2023,67,1,0 +2013,9,30,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,917,-2,0,1130,-7,0,0 +2013,4,15,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,913,-5,0,1210,2,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,-3,0,1730,2,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1615,101,1,1948,88,1,0 +2013,9,15,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1048,63,1,1143,43,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,41,1,1519,20,1,0 +2013,4,14,7,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1218,-4,0,1330,-14,0,0 +2013,10,8,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,-6,0,1315,-19,0,0 +2013,10,14,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1130,-4,0,1340,5,0,0 +2013,8,17,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1100,-5,0,1356,-4,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1000,-2,0,1250,4,0,0 +2013,5,3,5,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,845,-2,0,1054,-13,0,0 +2013,4,24,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,20,1,1255,13,0,0 +2013,6,5,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,-2,0,2110,6,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,63,1,1638,70,1,0 +2013,6,10,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,630,75,1,726,70,1,0 +2013,5,30,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1414,1,0,1652,18,1,0 +2013,10,18,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-4,0,2010,20,1,0 +2013,5,12,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,756,-14,0,0 +2013,5,6,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1412,-4,0,2100,-8,0,0 +2013,10,28,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,13,0,1155,-16,0,0 +2013,9,3,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,950,-2,0,1240,-12,0,0 +2013,9,29,7,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,-1,0,1235,-20,0,0 +2013,10,30,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,545,-5,0,855,-24,0,0 +2013,5,23,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,935,0,0,1145,-17,0,0 +2013,6,4,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,-3,0,1747,-3,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-3,0,1105,-20,0,0 +2013,7,1,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1630,12,0,1909,-10,0,0 +2013,8,25,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,0,0,2045,0,0,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,741,-3,0,1005,-8,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,805,6,0,1015,7,0,0 +2013,9,8,7,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-3,0,625,9,0,0 +2013,5,23,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,850,-3,0,1146,-25,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1910,11,0,2100,-16,0,0 +2013,8,18,7,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,12,0,2019,-8,0,0 +2013,4,27,6,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,-3,0,615,2,0,0 +2013,7,9,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1047,5,0,1505,13,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,600,1,0,1144,-11,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,729,-4,0,901,-12,0,0 +2013,10,9,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2000,54,1,2135,37,1,0 +2013,10,29,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-7,0,920,-7,0,0 +2013,4,29,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1359,-6,0,1714,-12,0,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-2,0,2050,-15,0,0 +2013,8,23,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1630,-5,0,1837,-5,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1645,-2,0,1857,0,0,0 +2013,9,5,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1240,0,,1350,0,1,1 +2013,6,28,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,828,-2,0,1010,12,0,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1040,-4,0,1410,-8,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,-2,0,1210,-7,0,0 +2013,5,26,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1433,-11,0,1703,-23,0,0 +2013,10,5,6,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1740,-7,0,1835,-7,0,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1800,14,0,1910,9,0,0 +2013,9,4,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,709,-5,0,730,-1,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,5,0,1625,5,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,21,1,1643,-3,0,0 +2013,5,31,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1950,32,1,2130,30,1,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1930,39,1,2100,32,1,0 +2013,4,17,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1624,-1,0,44,-17,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,79,1,1902,83,1,0 +2013,9,7,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1150,-13,0,1308,-16,0,0 +2013,8,22,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,802,-1,0,940,0,0,0 +2013,6,14,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1224,-7,0,1340,13,0,0 +2013,5,30,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-2,0,925,-8,0,0 +2013,5,31,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,20,1,1105,12,0,0 +2013,4,16,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1330,0,,1635,0,1,1 +2013,7,9,2,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1600,-7,0,1909,2,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,809,-1,0,935,-11,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,856,-1,0,922,-11,0,0 +2013,7,5,5,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-7,0,920,-31,0,0 +2013,8,31,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1639,6,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-2,0,1837,-15,0,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-5,0,1904,-23,0,0 +2013,6,5,3,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,918,-11,0,1210,-11,0,0 +2013,4,2,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,2,0,1050,3,0,0 +2013,8,23,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1530,-4,0,1827,36,1,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,5,0,1320,8,0,0 +2013,6,16,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-3,0,1334,9,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,-7,0,535,-13,0,0 +2013,10,10,4,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1514,-5,0,1659,-9,0,0 +2013,10,7,1,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-2,0,843,-5,0,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,850,2,0,1030,-16,0,0 +2013,5,29,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1500,-13,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2007,-5,0,2206,16,1,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,835,15,1,1055,22,1,0 +2013,7,24,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-8,0,1255,28,1,0 +2013,4,5,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1230,100,1,1445,85,1,0 +2013,9,7,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,830,-3,0,920,-9,0,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,635,-5,0,845,-11,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2025,14,0,2125,14,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-3,0,1000,-10,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2150,22,1,25,11,0,0 +2013,4,16,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,945,-7,0,1031,-14,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,840,-5,0,1102,2,0,0 +2013,5,7,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,-6,0,1335,-13,0,0 +2013,7,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-2,0,1749,-6,0,0 +2013,9,29,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,800,0,0,1553,-5,0,0 +2013,10,9,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1612,44,1,1820,25,1,0 +2013,7,18,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,915,52,1,1155,56,1,0 +2013,8,11,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,51,1,1645,52,1,0 +2013,10,7,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,759,-9,0,0 +2013,6,6,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2017,-3,0,2100,64,1,0 +2013,4,18,4,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-5,0,1012,-16,0,0 +2013,10,3,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,917,157,1,1054,154,1,0 +2013,7,4,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-2,0,753,-2,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,6,0,2334,-12,0,0 +2013,10,17,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1524,-1,0,1809,-13,0,0 +2013,7,10,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-3,0,1024,-19,0,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,0,0,755,-5,0,0 +2013,6,23,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,368,1,955,370,1,0 +2013,8,1,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,17,1,1915,10,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,5,0,1929,-24,0,0 +2013,4,22,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1040,8,0,1205,-3,0,0 +2013,6,19,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1337,-15,0,1539,-18,0,0 +2013,9,7,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,-2,0,1800,-31,0,0 +2013,10,28,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-7,0,1604,-19,0,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,-5,0,1424,-19,0,0 +2013,8,19,1,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1655,3,0,1840,-1,0,0 +2013,7,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,610,-1,0,655,-5,0,0 +2013,8,14,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1618,-3,0,2004,25,1,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1010,0,0,1302,-12,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2010,2,0,2250,-2,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-3,0,804,-14,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-7,0,2125,11,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2050,4,0,2205,3,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2145,-3,0,2315,-7,0,0 +2013,7,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-5,0,940,-10,0,0 +2013,4,5,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,0,0,1118,5,0,0 +2013,4,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1125,0,0,1345,-3,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,26,1,2335,16,1,0 +2013,9,2,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1714,3,0,1841,3,0,0 +2013,8,15,4,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,-6,0,1210,-13,0,0 +2013,10,30,3,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1200,-4,0,1345,12,0,0 +2013,6,7,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-1,0,1640,3,0,0 +2013,10,16,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1505,23,1,1740,20,1,0 +2013,8,6,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,5,0,2005,-4,0,0 +2013,8,10,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-3,0,845,-12,0,0 +2013,5,7,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,443,1,1255,434,1,0 +2013,4,14,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-5,0,2023,-3,0,0 +2013,7,8,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-10,0,1316,-17,0,0 +2013,7,21,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1240,-5,0,1521,-15,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,759,-7,0,1107,-31,0,0 +2013,6,20,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,2,0,1605,2,0,0 +2013,10,13,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2001,-4,0,2019,-16,0,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-8,0,1104,-16,0,0 +2013,6,29,6,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1710,-2,0,1905,-2,0,0 +2013,5,22,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,44,1,1830,50,1,0 +2013,9,25,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1402,14,0,2159,8,0,0 +2013,6,7,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,-2,0,1450,-15,0,0 +2013,5,2,4,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,716,-5,0,801,-9,0,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-8,0,919,-6,0,0 +2013,6,7,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1224,39,1,1340,32,1,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-8,0,2337,-16,0,0 +2013,5,28,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1630,36,1,1750,23,1,0 +2013,10,10,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,2030,32,1,2350,13,0,0 +2013,8,12,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-5,0,920,10,0,0 +2013,10,28,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-3,0,2205,8,0,0 +2013,4,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1825,-11,0,2056,-22,0,0 +2013,5,23,4,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,940,0,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1615,3,0,1745,1,0,0 +2013,9,28,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,2,0,1550,-2,0,0 +2013,6,4,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1545,15,1,1705,20,1,0 +2013,10,29,2,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1640,1,0,1805,-7,0,0 +2013,7,28,7,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-1,0,1530,-12,0,0 +2013,10,20,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,-3,0,1933,-8,0,0 +2013,5,1,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-1,0,2000,1,0,0 +2013,9,29,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-10,0,1445,-17,0,0 +2013,6,9,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1805,-3,0,1850,-7,0,0 +2013,5,14,2,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1420,-2,0,1640,-23,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,-2,0,2156,-13,0,0 +2013,4,15,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,740,4,0,1559,-32,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1610,5,0,1813,3,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1255,1,0,1435,-6,0,0 +2013,4,4,4,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,923,-9,0,1050,-13,0,0 +2013,10,29,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1619,-2,0,1839,16,1,0 +2013,8,27,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1019,-10,0,1207,-11,0,0 +2013,9,17,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,800,2,0,1025,-15,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,950,15,1,1230,2,0,0 +2013,7,19,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1850,-5,0,2005,-13,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,805,-1,0,1050,-8,0,0 +2013,8,22,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,12,0,1425,9,0,0 +2013,9,7,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-4,0,1320,-17,0,0 +2013,9,1,7,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1710,-4,0,1935,24,1,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,720,1,0,1050,8,0,0 +2013,8,16,5,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1105,-5,0,1330,8,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2028,54,1,2328,45,1,0 +2013,4,5,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1155,15,1,1335,14,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2145,2,0,2240,-7,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1405,4,0,1759,-5,0,0 +2013,4,14,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1200,-4,0,1438,-8,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1555,13,0,1655,11,0,0 +2013,5,5,7,EV,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,847,-4,0,1037,-16,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1750,-6,0,2013,-24,0,0 +2013,9,9,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2000,62,1,2250,47,1,0 +2013,9,11,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14307,Theodore Francis Green State,Providence,RI,2010,0,,2151,0,1,1 +2013,5,3,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1745,60,1,2031,63,1,0 +2013,7,31,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2255,6,0,144,7,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,727,-4,0,900,-13,0,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,829,-4,0,1444,3,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1300,0,,1426,0,1,1 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-5,0,1110,2,0,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1550,7,0,1837,38,1,0 +2013,10,23,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,50,1,1910,42,1,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,1,0,1735,-7,0,0 +2013,7,5,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1237,-14,0,0 +2013,6,24,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-9,0,853,-14,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1905,0,0,2034,-3,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1415,-2,0,2045,-11,0,0 +2013,6,14,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,0,0,1205,-8,0,0 +2013,9,25,3,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,600,-10,0,840,-22,0,0 +2013,7,28,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,-7,0,1240,34,1,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,71,1,1705,51,1,0 +2013,4,17,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1850,0,0,1920,0,0,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,926,-8,0,1013,3,0,0 +2013,4,17,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1020,57,1,1138,55,1,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-2,0,2347,-11,0,0 +2013,9,10,2,9E,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,830,-4,0,1005,-13,0,0 +2013,9,18,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,-4,0,2117,-2,0,0 +2013,8,21,3,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1541,-1,0,1829,-6,0,0 +2013,4,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1255,0,0,1535,-6,0,0 +2013,8,24,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,930,151,1,1140,161,1,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1222,3,0,1349,9,0,0 +2013,8,20,2,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-8,0,1315,-22,0,0 +2013,10,17,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1015,5,0,1715,14,0,0 +2013,9,23,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1210,4,0,1400,-5,0,0 +2013,5,18,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,938,3,0,1815,13,0,0 +2013,8,27,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1956,-7,0,2029,5,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1123,-4,0,1258,-1,0,0 +2013,5,5,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-5,0,2128,-1,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,818,-4,0,920,-21,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,8,0,2251,2,0,0 +2013,8,4,7,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1134,-3,0,1455,26,1,0 +2013,5,14,2,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1440,0,0,1655,15,1,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1115,-4,0,1205,-4,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,-4,0,1130,-25,0,0 +2013,5,5,7,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,825,-6,0,1210,-20,0,0 +2013,10,27,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1720,9,0,1845,11,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,815,-3,0,1125,-12,0,0 +2013,8,25,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,733,-7,0,815,-4,0,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,818,21,1,1029,8,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1950,-1,0,32,-15,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,650,24,1,810,11,0,0 +2013,8,17,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1626,18,1,1912,13,0,0 +2013,9,8,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-14,0,2015,1,0,0 +2013,9,8,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1700,-6,0,2005,-14,0,0 +2013,8,8,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,0,0,1359,-17,0,0 +2013,8,14,3,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1110,25,1,1710,4,0,0 +2013,9,7,6,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1656,103,1,1839,94,1,0 +2013,8,8,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1020,16,1,1203,-7,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,905,-3,0,1020,-4,0,0 +2013,4,2,2,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1930,16,1,2155,-9,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1635,-3,0,1845,12,0,0 +2013,4,23,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,9,0,2025,0,0,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,900,-2,0,1010,-13,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,906,18,1,1024,-2,0,0 +2013,6,3,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1302,7,0,1359,1,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1745,-1,0,1920,2,0,0 +2013,4,1,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,615,0,0,635,2,0,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,57,1,1710,54,1,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1856,-7,0,2017,0,0,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1207,-4,0,1404,-14,0,0 +2013,7,10,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-4,0,2151,-4,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1426,-2,0,1518,-13,0,0 +2013,4,2,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,600,-1,0,843,0,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,19,1,1355,10,0,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,919,0,0,1052,57,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,20,1,1200,4,0,0 +2013,9,25,3,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,14,0,1600,0,0,0 +2013,9,14,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-1,0,1433,-2,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,717,-6,0,1159,-28,0,0 +2013,9,18,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,603,-7,0,624,-7,0,0 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1745,11,0,1954,-7,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1920,19,1,2230,4,0,0 +2013,8,23,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,-3,0,2155,-13,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1640,0,0,1820,-1,0,0 +2013,7,13,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,6,0,823,-7,0,0 +2013,5,30,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1505,-11,0,1630,18,1,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1345,0,0,2015,12,0,0 +2013,6,4,2,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1617,17,1,1907,12,0,0 +2013,8,27,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1235,0,0,1405,-10,0,0 +2013,4,10,3,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-6,0,608,-10,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1155,-6,0,1438,6,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2055,29,1,2155,27,1,0 +2013,7,19,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2248,-3,0,657,1,0,0 +2013,6,3,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,700,-1,0,815,-17,0,0 +2013,9,21,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1610,38,1,1816,24,1,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,729,0,0,859,-10,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,755,-4,0,1627,3,0,0 +2013,7,22,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1215,11,0,1305,10,0,0 +2013,8,28,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1649,-11,0,1726,-23,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1450,12,0,1600,-5,0,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,4,0,1755,-26,0,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,33,1,1620,30,1,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,842,-1,0,1119,17,1,0 +2013,7,8,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2212,-3,0,2350,-5,0,0 +2013,8,1,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1316,-13,0,1420,-11,0,0 +2013,5,6,1,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1945,18,1,2110,16,1,0 +2013,8,21,3,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-13,0,1020,-16,0,0 +2013,5,10,5,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,22,1,10,14,0,0 +2013,4,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1839,0,0,2034,-19,0,0 +2013,5,15,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1420,13,0,1727,-1,0,0 +2013,10,2,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-11,0,828,-29,0,0 +2013,10,18,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1400,-4,0,1506,-9,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1100,3,0,1318,-2,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-5,0,1432,-3,0,0 +2013,7,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-1,0,1853,-10,0,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2055,-3,0,12,-28,0,0 +2013,7,31,3,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1731,14,0,2056,14,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1805,126,1,2024,97,1,0 +2013,9,27,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-2,0,904,8,0,0 +2013,4,13,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,40,1,1820,44,1,0 +2013,8,26,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,855,-1,0,955,-12,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,600,-4,0,1025,-15,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,-5,0,1120,-4,0,0 +2013,9,8,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1409,-7,0,1505,4,0,0 +2013,4,30,2,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1805,5,0,2030,-24,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,-4,0,2028,6,0,0 +2013,8,5,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-1,0,1340,17,1,0 +2013,9,2,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2005,0,,2204,0,1,1 +2013,8,1,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,-3,0,1555,-11,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,78,1,1120,77,1,0 +2013,5,5,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,905,0,0,1010,-6,0,0 +2013,4,27,6,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1340,-4,0,1724,-8,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,-1,0,2105,-12,0,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1540,3,0,1742,-2,0,0 +2013,7,31,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1303,9,0,1444,14,0,0 +2013,10,27,7,AA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1630,-5,0,1850,-8,0,0 +2013,4,13,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1715,-5,0,2114,-14,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1150,-1,0,1337,-20,0,0 +2013,6,28,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1140,-4,0,1258,-5,0,0 +2013,8,23,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1605,135,1,1725,130,1,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1445,-4,0,1740,-12,0,0 +2013,6,8,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1803,-7,0,1924,-24,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1015,-1,0,1152,-4,0,0 +2013,5,31,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,625,-8,0,935,-3,0,0 +2013,7,18,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1414,-4,0,1543,-8,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1955,61,1,2340,66,1,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1725,37,1,1840,28,1,0 +2013,10,29,2,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1255,1,0,1455,12,0,0 +2013,10,6,7,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-2,0,1800,-8,0,0 +2013,8,21,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1925,2,0,2252,-6,0,0 +2013,5,28,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,-12,0,1310,-14,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1550,114,1,2225,126,1,0 +2013,8,11,7,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,13,0,935,-1,0,0 +2013,10,13,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2050,37,1,2245,25,1,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-6,0,918,-20,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,11,0,1220,0,0,0 +2013,6,15,6,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-5,0,1557,-6,0,0 +2013,9,21,6,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1650,-5,0,1917,-15,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1500,-4,0,1728,-37,0,0 +2013,10,1,2,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,-8,0,2020,-13,0,0 +2013,10,4,5,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,925,-2,0,945,-4,0,0 +2013,7,15,1,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,0,0,2022,-26,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2040,0,0,2235,-6,0,0 +2013,6,29,6,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-5,0,500,-9,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1210,70,1,1325,71,1,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1944,22,1,2158,20,1,0 +2013,4,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-4,0,827,-13,0,0 +2013,7,23,2,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-3,0,1545,-10,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-1,0,1339,-28,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,715,-6,0,829,-18,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,18,1,1349,-5,0,0 +2013,5,8,3,YV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1835,137,1,1909,121,1,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,745,0,0,845,0,0,0 +2013,6,20,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1815,-1,0,1910,-12,0,0 +2013,9,19,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1545,19,1,1725,10,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,101,1,1904,94,1,0 +2013,5,6,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2155,-5,0,2304,-12,0,0 +2013,7,22,1,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1758,9,0,2033,3,0,0 +2013,6,23,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1857,386,1,2027,394,1,0 +2013,8,16,5,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,700,-5,0,910,-13,0,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,-3,0,1320,-2,0,0 +2013,9,30,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,735,-5,0,905,-5,0,0 +2013,9,22,7,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1336,-5,0,1645,-11,0,0 +2013,10,6,7,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1605,15,1,1835,7,0,0 +2013,8,5,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-4,0,2140,8,0,0 +2013,6,17,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,757,-6,0,925,-16,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1835,22,1,2235,11,0,0 +2013,4,20,6,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,608,0,0,1210,-7,0,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-2,0,1415,-11,0,0 +2013,9,8,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1200,-3,0,1515,-38,0,0 +2013,8,7,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,39,1,2210,45,1,0 +2013,5,15,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1640,18,1,1745,18,1,0 +2013,6,3,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-1,0,2050,2,0,0 +2013,7,6,6,EV,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,-6,0,1254,-2,0,0 +2013,9,13,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-1,0,815,-18,0,0 +2013,6,13,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1254,123,1,2125,110,1,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,945,-7,0,1040,-31,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1730,-9,0,1930,-9,0,0 +2013,7,28,7,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1350,9,0,1945,10,0,0 +2013,8,6,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,5,0,1831,-20,0,0 +2013,6,4,2,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,21,1,1630,12,0,0 +2013,9,27,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,700,-6,0,1038,-7,0,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1955,12,0,2125,12,0,0 +2013,4,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-3,0,813,-8,0,0 +2013,6,9,7,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1412,-5,0,1649,4,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,947,-2,0,1110,-14,0,0 +2013,6,21,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2120,35,1,2255,23,1,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-7,0,950,-17,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,32,1,1655,11,0,0 +2013,9,14,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1135,27,1,1415,13,0,0 +2013,7,19,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1106,-9,0,0 +2013,10,2,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-4,0,1135,-13,0,0 +2013,7,26,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,11,0,1450,2,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,-2,0,2337,-18,0,0 +2013,9,22,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1130,43,1,1908,16,1,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,3,0,1028,8,0,0 +2013,8,23,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,36,1,1450,38,1,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,0,0,1630,-19,0,0 +2013,9,6,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,706,2,0,1052,2,0,0 +2013,5,14,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-7,0,2104,-14,0,0 +2013,6,7,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,530,-2,0,650,-12,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,146,1,1900,148,1,0 +2013,9,26,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-7,0,1015,-25,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1622,100,1,1735,119,1,0 +2013,5,26,7,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1635,-3,0,2043,-30,0,0 +2013,4,24,3,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,3,0,1855,-12,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,904,25,1,1213,7,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1252,-2,0,1448,-5,0,0 +2013,8,11,7,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,5,0,1730,6,0,0 +2013,7,29,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,-3,0,1015,-21,0,0 +2013,8,13,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,2,0,1743,7,0,0 +2013,5,1,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1121,-10,0,1322,-19,0,0 +2013,10,18,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-3,0,755,-3,0,0 +2013,6,13,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,-4,0,1815,2,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,-3,0,1705,-15,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,0,0,1731,-9,0,0 +2013,9,23,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,800,2,0,915,-9,0,0 +2013,8,30,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-3,0,1715,-7,0,0 +2013,8,12,1,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-5,0,1122,-3,0,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,-6,0,1305,20,1,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-3,0,905,-13,0,0 +2013,4,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,0,,1838,0,1,1 +2013,9,10,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,-7,0,1721,-12,0,0 +2013,6,27,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1710,0,,1834,0,1,1 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,845,5,0,1124,-8,0,0 +2013,8,3,6,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,-3,0,1900,8,0,0 +2013,6,9,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,850,-3,0,1010,-6,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,23,1,1530,13,0,0 +2013,8,4,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,59,1,2020,53,1,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1545,4,0,1645,-3,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2215,-6,0,19,-2,0,0 +2013,5,23,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,754,-5,0,830,0,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,98,1,1830,96,1,0 +2013,5,23,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2005,-2,0,2010,-5,0,0 +2013,6,12,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,805,-3,0,923,-15,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,40,1,1400,33,1,0 +2013,9,24,2,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,-7,0,2135,-13,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1420,-2,0,1525,-12,0,0 +2013,5,17,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,720,0,0,845,-8,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2016,-5,0,2041,-15,0,0 +2013,7,22,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,5,0,2250,2,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1346,0,0,1536,12,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1405,3,0,1750,-22,0,0 +2013,5,23,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1435,-4,0,1525,-12,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1317,-2,0,1610,5,0,0 +2013,10,3,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1240,-8,0,1400,-6,0,0 +2013,9,3,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1657,8,0,1837,3,0,0 +2013,8,28,3,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,8,0,1800,5,0,0 +2013,6,21,5,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1959,167,1,2044,150,1,0 +2013,6,22,6,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,756,-4,0,951,6,0,0 +2013,9,8,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-4,0,634,-12,0,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1750,7,0,1850,0,0,0 +2013,5,20,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1455,-2,0,1515,-10,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1440,6,0,1715,8,0,0 +2013,5,21,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1320,14,0,1446,14,0,0 +2013,10,10,4,EV,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,757,-6,0,857,5,0,0 +2013,10,17,4,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,710,3,0,845,-7,0,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1937,0,0,2044,-19,0,0 +2013,7,4,4,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,19,1,1417,15,1,0 +2013,6,22,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,1,0,1955,-7,0,0 +2013,7,6,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,2,0,1740,-20,0,0 +2013,6,20,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1240,35,1,1350,28,1,0 +2013,4,23,2,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,805,88,1,1640,56,1,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1723,22,1,2017,17,1,0 +2013,10,21,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,959,3,0,1758,-17,0,0 +2013,8,6,2,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1825,30,1,2057,21,1,0 +2013,7,24,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,758,-7,0,959,-10,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1825,21,1,2215,7,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-3,0,948,-12,0,0 +2013,4,15,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,500,3,0,700,-5,0,0 +2013,4,4,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,912,-6,0,1418,-16,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,0,0,1430,-3,0,0 +2013,6,8,6,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-4,0,1020,18,1,0 +2013,7,27,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,710,-2,0,835,-2,0,0 +2013,8,26,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-9,0,2150,-11,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,900,-4,0,1045,8,0,0 +2013,8,15,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,6,0,2214,-9,0,0 +2013,4,14,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,-6,0,1329,-2,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,0,0,1351,6,0,0 +2013,10,4,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1445,19,1,1539,15,1,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1930,0,0,2304,-13,0,0 +2013,5,18,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1015,-3,0,1125,-12,0,0 +2013,6,3,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1220,-1,0,1815,-2,0,0 +2013,9,26,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1245,9,0,1850,-21,0,0 +2013,4,24,3,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1945,49,1,2110,44,1,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,-2,0,2105,-20,0,0 +2013,4,9,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1955,12,0,2110,0,0,0 +2013,4,6,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,940,-2,0,1505,-7,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1325,2,0,1720,12,0,0 +2013,4,10,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2050,145,1,2212,136,1,0 +2013,4,25,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-2,0,1925,-7,0,0 +2013,5,17,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,0,0,2104,6,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,9,0,1655,4,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1850,49,1,2154,50,1,0 +2013,8,9,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-2,0,1450,0,0,0 +2013,9,13,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,55,1,1822,77,1,0 +2013,9,16,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1615,-8,0,1747,-19,0,0 +2013,6,18,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,-12,0,2003,-4,0,0 +2013,6,6,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,1,0,1610,1,0,0 +2013,6,30,7,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1644,6,0,1805,0,0,0 +2013,4,11,4,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,959,0,,1422,0,1,1 +2013,5,16,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-9,0,1028,-1,0,0 +2013,9,4,3,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-7,0,1634,-8,0,0 +2013,8,19,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,76,1,1710,107,1,0 +2013,9,4,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2200,-9,0,2359,-20,0,0 +2013,7,12,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,830,-10,0,1015,-7,0,0 +2013,7,10,3,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1625,6,0,1745,2,0,0 +2013,6,6,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,-10,0,1310,-8,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,900,-7,0,1005,-8,0,0 +2013,9,30,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,2,0,2117,9,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2009,-4,0,2206,17,1,0 +2013,9,17,2,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,2,0,1620,-13,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1425,-3,0,1600,-23,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-2,0,1332,-18,0,0 +2013,4,13,6,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,4,0,655,-5,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,23,1,2359,32,1,0 +2013,4,1,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,13,0,2120,-7,0,0 +2013,7,24,3,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,610,3,0,655,-2,0,0 +2013,6,28,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-7,0,1345,-13,0,0 +2013,8,2,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1325,41,1,1505,64,1,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1520,-5,0,1956,-12,0,0 +2013,4,23,2,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1132,-6,0,1358,4,0,0 +2013,9,10,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,715,-11,0,1009,-8,0,0 +2013,7,9,2,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,900,8,0,1150,4,0,0 +2013,9,11,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1320,-7,0,1433,-9,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1720,-1,0,1830,-22,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1750,-2,0,1931,-28,0,0 +2013,8,14,3,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,5,0,1145,-1,0,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1917,44,1,2038,51,1,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1250,2,0,1345,1,0,0 +2013,6,11,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,1952,-13,0,0 +2013,7,30,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2115,-3,0,2235,-6,0,0 +2013,4,8,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1055,9,0,1255,-9,0,0 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,751,2,0,1304,32,1,0 +2013,4,8,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1245,-6,0,1355,-13,0,0 +2013,4,8,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-3,0,1520,-1,0,0 +2013,7,19,5,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1909,28,1,2205,23,1,0 +2013,4,11,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1820,38,1,1915,29,1,0 +2013,6,26,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1045,2,0,1650,-21,0,0 +2013,7,18,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,1,0,2103,-2,0,0 +2013,9,2,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1313,0,0,1400,-8,0,0 +2013,9,13,5,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,700,-5,0,821,-8,0,0 +2013,7,10,3,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1904,132,1,2017,129,1,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,-1,0,1630,-10,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,815,4,0,925,0,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1517,30,1,1620,6,0,0 +2013,10,12,6,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1808,13,0,2056,10,0,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1829,-4,0,2154,-25,0,0 +2013,6,28,5,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,0,,12,0,1,1 +2013,5,3,5,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1850,15,1,2045,14,0,0 +2013,9,17,2,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1145,-10,0,1221,-16,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,-5,0,1000,-16,0,0 +2013,8,26,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,955,-1,0,1110,-11,0,0 +2013,5,24,5,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-1,0,2140,-3,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1540,40,1,1700,38,1,0 +2013,4,19,5,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1513,36,1,1625,37,1,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1945,19,1,2045,21,1,0 +2013,6,8,6,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,-2,0,1652,-14,0,0 +2013,7,23,2,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,830,-3,0,945,-10,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,10,0,1645,-10,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-7,0,1955,-34,0,0 +2013,9,28,6,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,915,-12,0,1048,-22,0,0 +2013,7,20,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,2000,-8,0,2315,-41,0,0 +2013,4,16,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-11,0,545,-38,0,0 +2013,8,2,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-3,0,1623,-1,0,0 +2013,9,14,6,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1603,101,1,2134,98,1,0 +2013,8,8,4,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,-3,0,1425,-1,0,0 +2013,10,30,3,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1938,-8,0,2100,-10,0,0 +2013,10,2,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,720,-17,0,0 +2013,4,11,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,510,-4,0,648,8,0,0 +2013,9,23,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-10,0,1805,-38,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,-10,0,2011,-26,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1804,-9,0,1944,4,0,0 +2013,7,1,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1157,3,0,1809,-3,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,735,-2,0,1010,-10,0,0 +2013,5,30,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,28,1,2000,28,1,0 +2013,9,23,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,700,-4,0,800,-9,0,0 +2013,5,10,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,10,0,1550,6,0,0 +2013,5,13,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1121,6,0,1322,6,0,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1405,-1,0,1615,-2,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,13,0,1026,19,1,0 +2013,8,2,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1820,8,0,1925,12,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,16,1,1410,27,1,0 +2013,5,29,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-9,0,950,-22,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1619,-7,0,1953,-16,0,0 +2013,10,27,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1730,-3,0,1825,-3,0,0 +2013,4,6,6,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1510,-12,0,1655,-34,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,0,0,1145,-6,0,0 +2013,10,12,6,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,943,69,1,1119,54,1,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,17,1,1339,2,0,0 +2013,10,5,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,230,-1,0,704,-11,0,0 +2013,4,29,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,843,2,0,1132,-1,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1354,65,1,1642,63,1,0 +2013,8,7,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1514,1,0,1644,-17,0,0 +2013,10,5,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1845,2,0,2010,-3,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,8,0,2355,26,1,0 +2013,5,14,2,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,500,-3,0,643,-8,0,0 +2013,5,15,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,7,0,1615,-5,0,0 +2013,8,9,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,55,-6,0,555,-13,0,0 +2013,7,18,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,5,0,1440,-19,0,0 +2013,5,14,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1305,-4,0,1420,-1,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1535,-3,0,1648,-3,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1610,-1,0,1730,-9,0,0 +2013,4,4,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1758,-3,0,2039,-17,0,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1820,30,1,1915,26,1,0 +2013,7,27,6,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-8,0,500,-8,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,827,-2,0,1318,-8,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1306,-4,0,1614,-8,0,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,827,5,0,955,27,1,0 +2013,6,20,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2125,-2,0,2250,0,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,525,1,0,801,-19,0,0 +2013,4,1,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1540,-8,0,1547,-18,0,0 +2013,4,2,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1113,-2,0,1451,-6,0,0 +2013,10,3,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,-7,0,1229,-6,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1315,3,0,1420,0,0,0 +2013,7,26,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,0,0,840,14,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1133,9,0,1458,-8,0,0 +2013,9,29,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,2,0,2000,-20,0,0 +2013,10,1,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1320,-6,0,1535,-5,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-2,0,1304,-13,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2154,23,1,2344,18,1,0 +2013,4,10,3,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1945,17,1,2025,1,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-5,0,1240,-13,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1020,-3,0,1406,-10,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2021,47,1,2200,38,1,0 +2013,10,21,1,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,15,1,1628,0,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1459,22,1,1802,0,0,0 +2013,4,12,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,45,1,1845,30,1,0 +2013,7,29,1,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1826,87,1,2059,67,1,0 +2013,10,16,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-5,0,756,-5,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1610,21,1,1800,9,0,0 +2013,5,21,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,0,,2125,0,1,1 +2013,10,20,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1610,-2,0,1647,-7,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1128,-4,0,1216,-1,0,0 +2013,9,18,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,615,-2,0,705,-11,0,0 +2013,5,13,1,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,630,-8,0,727,-12,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1205,-3,0,1344,-14,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,99,1,1840,138,1,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1124,-1,0,1308,31,1,0 +2013,8,27,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1145,7,0,1310,7,0,0 +2013,7,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1005,-9,0,1329,-15,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,904,-2,0,1146,-7,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,-3,0,1048,-8,0,0 +2013,8,12,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-5,0,1500,-7,0,0 +2013,5,7,2,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,-6,0,1305,-8,0,0 +2013,5,9,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,13,0,1718,8,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1535,-2,0,1620,-13,0,0 +2013,10,22,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,805,0,0,1022,13,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2125,-2,0,10,-9,0,0 +2013,9,17,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,908,-3,0,1205,0,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2220,-12,0,2359,-21,0,0 +2013,7,31,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,1,0,2230,-5,0,0 +2013,9,16,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,810,-4,0,1422,-9,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,955,-4,0,1203,-6,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2040,-1,0,2310,8,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,-6,0,1644,-22,0,0 +2013,6,23,7,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-6,0,848,-13,0,0 +2013,5,3,5,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2130,-3,0,2245,-7,0,0 +2013,9,15,7,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,16,1,2335,1,0,0 +2013,9,22,7,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,735,-4,0,1605,-34,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-3,0,1310,-7,0,0 +2013,10,7,1,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,313,1,636,304,1,0 +2013,8,7,3,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1544,-8,0,1732,-23,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,3,0,1850,-12,0,0 +2013,7,4,4,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1459,6,0,1801,-8,0,0 +2013,8,3,6,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1350,-8,0,1639,-10,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-2,0,1025,-24,0,0 +2013,8,21,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,844,54,1,1105,56,1,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,715,-6,0,1243,-9,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1605,4,0,2155,10,0,0 +2013,6,12,3,DL,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,630,-4,0,752,-17,0,0 +2013,9,23,1,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,923,-4,0,1119,-17,0,0 +2013,7,24,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1420,16,1,1555,17,1,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,700,-3,0,805,-7,0,0 +2013,5,24,5,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,713,3,0,1445,-7,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,740,20,1,926,30,1,0 +2013,5,21,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1139,-7,0,1306,-15,0,0 +2013,8,5,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,840,5,0,1205,7,0,0 +2013,4,10,3,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1723,-8,0,1930,-7,0,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1805,10,0,1954,-8,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,0,0,1107,-6,0,0 +2013,6,1,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,-1,0,1359,-6,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,38,1,2225,28,1,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2045,18,1,2345,4,0,0 +2013,7,7,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1315,1,0,1342,-4,0,0 +2013,6,20,4,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,800,0,0,1104,-16,0,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1115,7,0,1815,13,0,0 +2013,5,27,1,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-6,0,1630,-16,0,0 +2013,5,8,3,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1146,6,0,1358,-1,0,0 +2013,10,26,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2020,-2,0,2145,-13,0,0 +2013,10,5,6,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,630,34,1,930,27,1,0 +2013,9,17,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,854,-10,0,1014,-8,0,0 +2013,7,21,7,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1515,305,1,2105,319,1,0 +2013,9,21,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-7,0,2035,4,0,0 +2013,7,9,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-4,0,2029,-3,0,0 +2013,4,29,1,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-3,0,1021,-24,0,0 +2013,9,24,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,615,-7,0,955,-14,0,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1714,-8,0,2009,-21,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1814,107,1,2038,90,1,0 +2013,5,13,1,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2155,-4,0,2250,-17,0,0 +2013,10,15,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,710,-4,0,1110,-3,0,0 +2013,9,4,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1820,-5,0,1940,-7,0,0 +2013,4,12,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1238,-3,0,2109,8,0,0 +2013,7,23,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1407,12,0,2100,4,0,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1629,109,1,1948,106,1,0 +2013,10,31,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,80,1,1645,79,1,0 +2013,8,24,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,23,1,1335,44,1,0 +2013,8,26,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1140,-10,0,1450,1,0,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,-3,0,1130,-19,0,0 +2013,7,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,-8,0,1421,-5,0,0 +2013,4,22,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,3,0,1650,0,0,0 +2013,7,23,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1710,74,1,2000,51,1,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,16,1,1018,14,0,0 +2013,7,9,2,DL,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1810,35,1,2129,2,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1602,31,1,1849,31,1,0 +2013,7,23,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,910,101,1,1108,86,1,0 +2013,10,28,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1719,-7,0,1902,-11,0,0 +2013,5,26,7,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,715,-5,0,938,-14,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,816,-5,0,1016,-9,0,0 +2013,5,9,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-5,0,1010,-9,0,0 +2013,10,14,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1450,50,1,1615,42,1,0 +2013,7,31,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2145,-2,0,2225,5,0,0 +2013,10,2,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,0,0,1506,-13,0,0 +2013,8,17,6,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-10,0,1945,-30,0,0 +2013,7,8,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1935,0,,2135,0,1,1 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,0,0,2055,-19,0,0 +2013,4,21,7,US,14307,Theodore Francis Green State,Providence,RI,11278,Ronald Reagan Washington National,Washington,DC,615,-9,0,740,3,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,855,0,0,1106,-5,0,0 +2013,8,4,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2230,-6,0,120,-30,0,0 +2013,5,20,1,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,-4,0,2140,-22,0,0 +2013,4,24,3,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,707,-9,0,1028,0,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,-2,0,2139,-10,0,0 +2013,6,8,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1050,7,0,1215,-4,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,14,0,935,14,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-7,0,1614,-8,0,0 +2013,6,17,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1505,0,0,1835,-9,0,0 +2013,7,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,0,0,2235,-5,0,0 +2013,9,22,7,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1905,-3,0,2027,4,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,21,1,2225,14,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,30,1,1635,16,1,0 +2013,8,12,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2330,-6,0,516,-2,0,0 +2013,9,27,5,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,1,0,2020,-23,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,0,0,1730,-3,0,0 +2013,4,20,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1607,349,1,1743,326,1,0 +2013,10,18,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,11,0,1810,14,0,0 +2013,7,7,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1545,-8,0,1906,5,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2256,5,0,2303,-2,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1715,-1,0,1837,10,0,0 +2013,4,2,2,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1447,30,1,1746,32,1,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1105,-2,0,1435,-13,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,841,-2,0,1134,-22,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,0,0,1435,-8,0,0 +2013,9,22,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,829,4,0,1136,9,0,0 +2013,7,6,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,-12,0,2135,16,1,0 +2013,10,28,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1044,-7,0,1153,-13,0,0 +2013,6,15,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1200,35,1,1520,23,1,0 +2013,10,2,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1504,-13,0,1615,-12,0,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1230,0,0,1800,4,0,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,-1,0,1620,-17,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1205,-7,0,1340,-30,0,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1000,-2,0,1210,-9,0,0 +2013,10,20,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1018,-7,0,0 +2013,6,14,5,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1404,0,0,1530,-18,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1050,17,1,1720,7,0,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1715,28,1,2240,18,1,0 +2013,7,31,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1936,14,0,2120,8,0,0 +2013,5,25,6,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,7,0,1215,-2,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2005,-4,0,2125,-7,0,0 +2013,8,16,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,0,0,1530,7,0,0 +2013,7,2,2,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1410,1,0,1820,-5,0,0 +2013,6,27,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1345,-19,0,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,940,8,0,1045,-5,0,0 +2013,6,29,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,0,0,826,-14,0,0 +2013,5,22,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,13,0,1305,1,0,0 +2013,9,29,7,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-3,0,603,-18,0,0 +2013,4,30,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,1,0,1209,-1,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,720,-2,0,1030,-17,0,0 +2013,4,19,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,845,5,0,1020,-11,0,0 +2013,10,28,1,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1010,-12,0,1225,-10,0,0 +2013,7,8,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1805,43,1,1950,27,1,0 +2013,5,13,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,20,1,2143,11,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1925,8,0,2109,8,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,19,1,2340,6,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,-7,0,835,-22,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1320,-2,0,1425,-10,0,0 +2013,4,1,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1420,1,0,2035,-10,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2210,28,1,2330,19,1,0 +2013,9,11,3,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1408,8,0,1713,9,0,0 +2013,6,12,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,756,-1,0,1037,-1,0,0 +2013,6,17,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,0,0,1254,-4,0,0 +2013,8,19,1,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,15,1,1840,28,1,0 +2013,8,5,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1650,-11,0,1818,-2,0,0 +2013,6,1,6,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,950,-2,0,1434,-9,0,0 +2013,7,4,4,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1235,0,0,1445,-4,0,0 +2013,8,8,4,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1436,-5,0,1645,9,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,953,-2,0,1209,-30,0,0 +2013,4,30,2,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1225,-4,0,1826,-22,0,0 +2013,10,26,6,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1334,-9,0,1651,-12,0,0 +2013,4,23,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-9,0,1855,-11,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,16,1,2225,-5,0,0 +2013,7,24,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,850,-5,0,0 +2013,10,22,2,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-5,0,622,-8,0,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,-4,0,1131,-33,0,0 +2013,10,22,2,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1657,19,1,1745,13,0,0 +2013,9,13,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1927,-7,0,2040,-5,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,5,0,1854,4,0,0 +2013,8,20,2,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,24,1,1003,44,1,0 +2013,9,23,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1230,-5,0,1405,-7,0,0 +2013,10,17,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2005,7,0,2125,-1,0,0 +2013,6,18,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,12,0,1920,62,1,0 +2013,9,11,3,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1615,12,0,1915,13,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1045,21,1,1505,8,0,0 +2013,8,19,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1720,-4,0,2000,-18,0,0 +2013,7,31,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-4,0,1012,9,0,0 +2013,5,6,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1630,3,0,1805,-8,0,0 +2013,10,31,4,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,1035,15,1,0 +2013,8,13,2,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1900,-1,0,2206,-25,0,0 +2013,6,29,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1355,-1,0,1459,-7,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,-3,0,1235,-1,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1835,9,0,1920,2,0,0 +2013,6,20,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,3,0,2159,-3,0,0 +2013,5,3,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1240,3,0,1410,-4,0,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,715,-3,0,941,-13,0,0 +2013,9,8,7,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1610,17,1,1750,13,0,0 +2013,9,21,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1330,6,0,1445,6,0,0 +2013,5,29,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1440,1,0,1737,-3,0,0 +2013,9,6,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1019,-7,0,1206,-13,0,0 +2013,8,23,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,0,0,837,10,0,0 +2013,10,18,5,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-8,0,2050,-9,0,0 +2013,4,29,1,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,3,0,1847,5,0,0 +2013,9,12,4,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1520,133,1,1950,134,1,0 +2013,5,1,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-3,0,1015,-22,0,0 +2013,10,6,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2050,-3,0,2200,-13,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1000,-2,0,1220,-8,0,0 +2013,9,23,1,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1600,2,0,2353,-13,0,0 +2013,4,22,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,12,0,1221,48,1,0 +2013,6,11,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-7,0,1410,-6,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,-6,0,1914,-19,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1751,3,0,1926,4,0,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,65,1,2030,58,1,0 +2013,10,9,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,11,0,1515,4,0,0 +2013,6,29,6,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1240,5,0,1615,10,0,0 +2013,10,15,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,0,0,2018,-1,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1648,-1,0,2128,-14,0,0 +2013,6,20,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,0,0,1610,-8,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,755,-4,0,916,14,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,5,0,753,7,0,0 +2013,6,26,3,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-2,0,925,0,0,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1315,1,0,1610,-9,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,939,-1,0,1136,-3,0,0 +2013,8,18,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,951,-5,0,1453,-8,0,0 +2013,9,12,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1400,-10,0,1545,-16,0,0 +2013,8,5,1,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-5,0,1907,-20,0,0 +2013,7,18,4,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,26,1,1607,27,1,0 +2013,5,10,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1420,-3,0,1717,-15,0,0 +2013,8,8,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-6,0,1757,-12,0,0 +2013,10,17,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,659,-8,0,859,-19,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,955,-2,0,1101,-7,0,0 +2013,7,9,2,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-3,0,1004,-8,0,0 +2013,4,3,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1052,-3,0,1241,17,1,0 +2013,10,24,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-9,0,1050,-10,0,0 +2013,9,16,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1905,41,1,2005,32,1,0 +2013,7,28,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-1,0,1619,-1,0,0 +2013,7,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,9,0,2132,5,0,0 +2013,6,8,6,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,710,-7,0,903,-6,0,0 +2013,4,29,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1748,4,0,2041,31,1,0 +2013,9,14,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,759,-10,0,0 +2013,5,4,6,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-4,0,1340,-24,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,1,0,1612,10,0,0 +2013,10,8,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-12,0,1425,-11,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,705,2,0,745,-1,0,0 +2013,10,12,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,109,1,1820,94,1,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1900,4,0,2100,6,0,0 +2013,7,17,3,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,0,,2308,0,1,1 +2013,9,6,5,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-6,0,909,20,1,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,806,115,1,1640,142,1,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1700,61,1,1825,66,1,0 +2013,6,16,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,5,0,2125,5,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2225,28,1,2305,19,1,0 +2013,10,31,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1706,-4,0,1812,-13,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1535,0,0,1815,-17,0,0 +2013,4,14,7,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,621,-9,0,1005,-21,0,0 +2013,9,10,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1215,1,0,1335,-3,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2115,64,1,2250,57,1,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,3,0,1455,1,0,0 +2013,6,12,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,900,-16,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,2045,5,0,2218,-6,0,0 +2013,8,8,4,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,720,-3,0,908,1,0,0 +2013,6,24,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,16,1,1040,9,0,0 +2013,7,10,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,11,0,2250,8,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1555,30,1,1750,24,1,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2155,-3,0,15,9,0,0 +2013,10,20,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,-3,0,1256,-12,0,0 +2013,6,24,1,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,945,19,1,1505,-3,0,0 +2013,5,21,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-5,0,712,18,1,0 +2013,8,13,2,DL,13244,Memphis International,Memphis,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,-3,0,1653,-8,0,0 +2013,7,5,5,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2056,-8,0,2325,-26,0,0 +2013,6,11,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-5,0,724,4,0,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,800,-3,0,955,-20,0,0 +2013,8,2,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1029,-2,0,1323,-18,0,0 +2013,5,28,2,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-3,0,1543,-8,0,0 +2013,5,29,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-1,0,1345,3,0,0 +2013,6,18,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,1,0,1110,-9,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,150,1,2113,126,1,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1945,9,0,2120,-3,0,0 +2013,10,1,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,920,-1,0,1255,-6,0,0 +2013,7,29,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,0,,904,0,1,1 +2013,4,8,1,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1035,3,0,1620,4,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,190,1,2308,194,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,154,1,2123,137,1,0 +2013,10,2,3,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,3,0,2145,0,0,0 +2013,8,31,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1645,-7,0,1806,-16,0,0 +2013,4,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1255,26,1,1420,20,1,0 +2013,5,28,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-5,0,1011,-15,0,0 +2013,9,14,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-7,0,1500,-19,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,605,-2,0,900,-5,0,0 +2013,4,12,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-3,0,2000,10,0,0 +2013,7,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,0,0,1715,-11,0,0 +2013,5,20,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,954,18,1,1215,15,1,0 +2013,10,14,1,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,812,-2,0,1119,-12,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1500,12,0,1940,5,0,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,900,-3,0,1016,24,1,0 +2013,9,9,1,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,6,0,851,-14,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,161,1,1000,174,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1910,-2,0,2245,-18,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-2,0,1622,4,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1950,-5,0,2240,-5,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,743,0,0,909,-1,0,0 +2013,6,4,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1515,15,1,1755,8,0,0 +2013,5,31,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,515,-10,0,635,-17,0,0 +2013,9,26,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1005,1,0,1130,12,0,0 +2013,7,21,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-5,0,938,-11,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1350,-4,0,1457,-19,0,0 +2013,10,25,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,935,-6,0,1130,-3,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2010,11,0,2210,43,1,0 +2013,4,3,3,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-13,0,1018,-12,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,2,0,2346,-12,0,0 +2013,6,22,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,-4,0,1712,-18,0,0 +2013,4,26,5,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1344,16,1,1349,11,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1755,45,1,1940,32,1,0 +2013,9,17,2,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,705,-6,0,819,-11,0,0 +2013,9,18,3,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1655,-3,0,2000,-5,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1615,72,1,30,46,1,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,0,,1710,0,1,1 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,745,-1,0,900,-18,0,0 +2013,10,31,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1320,0,0,1640,-5,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1000,-6,0,1123,-3,0,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,805,4,0,1002,13,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1335,11,0,1440,24,1,0 +2013,6,20,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,-3,0,1434,-2,0,0 +2013,8,5,1,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-4,0,2054,-12,0,0 +2013,10,9,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,730,-5,0,1026,-15,0,0 +2013,5,6,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,0,0,1329,-38,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,1,0,1325,-15,0,0 +2013,6,23,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-1,0,1414,-5,0,0 +2013,4,13,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1512,2,0,1756,-7,0,0 +2013,6,21,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1455,-6,0,1629,-9,0,0 +2013,5,1,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-11,0,1406,-5,0,0 +2013,5,4,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1309,70,1,1443,58,1,0 +2013,8,26,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,-2,0,22,-46,0,0 +2013,9,7,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-7,0,710,-6,0,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,705,-7,0,816,-14,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1830,-1,0,2010,0,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-4,0,1349,-10,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,945,5,0,1035,-8,0,0 +2013,6,19,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,1954,-2,0,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,10,0,2310,8,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1355,14,0,1610,17,1,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1925,10,0,2055,-3,0,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1525,-3,0,1650,-8,0,0 +2013,4,25,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1659,20,1,1837,5,0,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1850,56,1,2015,47,1,0 +2013,7,15,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,630,0,0,829,-19,0,0 +2013,8,17,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-2,0,758,-2,0,0 +2013,5,31,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-2,0,905,2,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,0,0,1210,-15,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1325,-5,0,1625,-6,0,0 +2013,9,18,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1355,-5,0,1636,-1,0,0 +2013,8,7,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,-1,0,2317,-19,0,0 +2013,5,22,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,29,1,1800,23,1,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1442,10,0,2252,3,0,0 +2013,6,14,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,43,1,1001,59,1,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1510,-1,0,2158,-17,0,0 +2013,10,31,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,730,-2,0,1108,23,1,0 +2013,8,20,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-3,0,903,4,0,0 +2013,9,18,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1135,-2,0,1415,-15,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-3,0,1107,-3,0,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,942,0,0,1302,10,0,0 +2013,7,24,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,14,0,1530,23,1,0 +2013,7,10,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1232,156,1,1444,152,1,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1130,18,1,1410,-4,0,0 +2013,7,3,3,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1740,15,1,2045,8,0,0 +2013,4,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1201,0,,1326,0,1,1 +2013,8,20,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1655,-4,0,1923,-29,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,0,0,2123,0,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1905,-3,0,2000,-6,0,0 +2013,5,4,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-3,0,1050,-11,0,0 +2013,7,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,-2,0,2020,6,0,0 +2013,4,29,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,618,-6,0,650,4,0,0 +2013,8,12,1,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,930,-6,0,1135,-11,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,835,-2,0,1400,-18,0,0 +2013,4,14,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,755,-3,0,855,-1,0,0 +2013,10,22,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1855,-4,0,2051,-20,0,0 +2013,5,10,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,1,0,730,-1,0,0 +2013,10,24,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,8,0,2005,-18,0,0 +2013,7,7,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,-11,0,2128,-17,0,0 +2013,8,6,2,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1524,-8,0,1637,12,0,0 +2013,4,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,955,0,0,1100,-1,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,5,0,1901,2,0,0 +2013,7,15,1,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,849,-8,0,1013,-11,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,-9,0,1340,-19,0,0 +2013,4,17,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,700,-10,0,814,-9,0,0 +2013,6,30,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1917,36,1,2110,41,1,0 +2013,7,22,1,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-2,0,715,-1,0,0 +2013,10,4,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1501,-3,0,1720,-9,0,0 +2013,7,7,7,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2150,14,0,2337,4,0,0 +2013,8,26,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1500,-13,0,1635,9,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1341,-3,0,1529,-17,0,0 +2013,4,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,6,0,2105,15,1,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,7,0,1911,-1,0,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,625,-3,0,907,-8,0,0 +2013,10,9,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1805,24,1,1942,37,1,0 +2013,8,5,1,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,4,0,1425,8,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1735,65,1,2000,59,1,0 +2013,4,25,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,1,0,1040,-8,0,0 +2013,10,22,2,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1815,25,1,2140,-5,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,21,1,1525,18,1,0 +2013,6,16,7,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,58,1,115,62,1,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,-4,0,1034,-19,0,0 +2013,7,29,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,0,0,1055,-2,0,0 +2013,8,4,7,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1740,-1,0,2020,-15,0,0 +2013,6,10,1,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,730,13,0,1014,9,0,0 +2013,6,16,7,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1824,-4,0,2148,-15,0,0 +2013,4,30,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1730,0,0,1816,0,0,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1427,7,0,1913,25,1,0 +2013,8,27,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1430,-1,0,1600,-3,0,0 +2013,6,2,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1420,-10,0,1505,-12,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2210,-7,0,2300,-10,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,-4,0,2215,-4,0,0 +2013,6,10,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-9,0,1120,-5,0,0 +2013,5,4,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-6,0,845,-4,0,0 +2013,5,5,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1008,-7,0,1213,-18,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,600,1,0,730,-7,0,0 +2013,4,12,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-8,0,1703,-6,0,0 +2013,10,15,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1540,-7,0,1654,13,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,615,-4,0,825,8,0,0 +2013,6,16,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-2,0,1630,-4,0,0 +2013,5,20,1,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1712,-1,0,1840,-12,0,0 +2013,9,25,3,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,-3,0,1038,-2,0,0 +2013,9,23,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,825,-1,0,850,0,0,0 +2013,4,8,1,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1930,-8,0,2217,-22,0,0 +2013,7,3,3,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,610,1,0,725,5,0,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1350,45,1,1635,49,1,0 +2013,10,15,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,-3,0,1918,-36,0,0 +2013,10,25,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,14,0,2050,5,0,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2250,22,1,2355,16,1,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1750,-2,0,1934,-13,0,0 +2013,8,24,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-6,0,1336,5,0,0 +2013,9,14,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1640,-1,0,1908,-18,0,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1715,29,1,2255,29,1,0 +2013,9,10,2,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1640,-10,0,1833,-22,0,0 +2013,5,2,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,730,-8,0,1013,-17,0,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,900,1,0,1015,0,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,-5,0,1640,-18,0,0 +2013,4,3,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1410,-2,0,1722,-9,0,0 +2013,5,15,3,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1108,-9,0,1431,-10,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,715,93,1,1050,79,1,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,825,-9,0,935,-9,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,19,1,803,12,0,0 +2013,6,30,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1350,11,0,1550,-3,0,0 +2013,6,27,4,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-5,0,716,-16,0,0 +2013,9,27,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1955,42,1,2239,40,1,0 +2013,7,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,49,1,2159,32,1,0 +2013,10,5,6,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,17,1,1705,14,0,0 +2013,9,6,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1950,-5,0,2140,-20,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,12,0,1658,17,1,0 +2013,5,23,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1245,190,1,1455,229,1,0 +2013,8,4,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,-8,0,1145,16,1,0 +2013,9,10,2,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-9,0,1005,-18,0,0 +2013,4,21,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,845,-10,0,1028,-1,0,0 +2013,9,4,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1845,9,0,2125,15,1,0 +2013,7,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1747,28,1,1848,19,1,0 +2013,7,29,1,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,5,0,1315,-4,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,8,0,1700,-9,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,750,16,1,855,9,0,0 +2013,6,7,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,19,1,1229,21,1,0 +2013,5,16,4,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,906,-13,0,1007,-26,0,0 +2013,5,2,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,750,0,0,915,2,0,0 +2013,9,6,5,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-7,0,941,-8,0,0 +2013,4,10,3,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1143,0,,1440,0,1,1 +2013,7,27,6,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,1,0,500,-10,0,0 +2013,7,21,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,20,1,1245,23,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-1,0,1225,-9,0,0 +2013,10,18,5,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1945,36,1,40,31,1,0 +2013,9,7,6,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1430,-3,0,1555,-13,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1730,-2,0,1914,-8,0,0 +2013,10,21,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1029,0,0,1230,-12,0,0 +2013,4,3,3,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,1905,-5,0,2005,-13,0,0 +2013,9,10,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,15,1,1531,17,1,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,56,1,1036,46,1,0 +2013,6,14,5,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,751,-2,0,912,-7,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1310,-1,0,1400,-9,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1244,8,0,1449,-1,0,0 +2013,8,4,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-2,0,813,-5,0,0 +2013,10,24,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1100,10,0,1225,3,0,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,633,-6,0,925,-31,0,0 +2013,10,30,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1210,-7,0,1255,30,1,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,810,-5,0,929,-10,0,0 +2013,10,28,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-10,0,1230,-18,0,0 +2013,4,19,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,715,0,0,755,13,0,0 +2013,8,25,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,725,-5,0,920,-5,0,0 +2013,10,8,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,11,0,1940,40,1,0 +2013,9,22,7,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,945,1,0,1130,-13,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,17,1,1816,-7,0,0 +2013,5,11,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,725,19,1,1035,9,0,0 +2013,9,16,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1205,4,0,1329,3,0,0 +2013,8,11,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-6,0,1300,-21,0,0 +2013,7,24,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-9,0,2350,-26,0,0 +2013,4,8,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-6,0,1146,-21,0,0 +2013,7,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,621,-1,0,717,0,0,0 +2013,7,26,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,17,1,2135,22,1,0 +2013,5,15,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,610,-10,0,848,-15,0,0 +2013,6,13,4,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,822,-5,0,1630,19,1,0 +2013,10,23,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,-4,0,1135,-11,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1740,10,0,2320,-9,0,0 +2013,10,7,1,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1358,16,1,1622,12,0,0 +2013,10,20,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,1,0,1605,1,0,0 +2013,8,23,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-4,0,2145,8,0,0 +2013,5,15,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1720,-1,0,1933,-24,0,0 +2013,8,15,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1158,13,0,1435,3,0,0 +2013,4,11,4,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,929,1,0,1049,-3,0,0 +2013,4,5,5,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,915,-2,0,1209,0,0,0 +2013,9,5,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-2,0,2041,-21,0,0 +2013,4,17,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,115,1,1230,86,1,0 +2013,8,25,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-7,0,1640,-10,0,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,900,44,1,1215,40,1,0 +2013,7,18,4,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,48,1,1845,41,1,0 +2013,7,1,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,-2,0,600,-12,0,0 +2013,4,4,4,9E,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,835,0,,1042,0,1,1 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-4,0,1650,-14,0,0 +2013,5,6,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1248,-12,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1640,-3,0,1833,-14,0,0 +2013,6,11,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1900,4,0,2220,-11,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,-5,0,2310,-11,0,0 +2013,7,8,1,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,915,45,1,1710,55,1,0 +2013,4,10,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-7,0,1907,-3,0,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,832,-4,0,935,-6,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,6,0,1655,4,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,749,-4,0,1041,-10,0,0 +2013,6,6,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-3,0,923,-8,0,0 +2013,6,13,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,751,14,0,957,23,1,0 +2013,4,24,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1235,-10,0,1519,-18,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-2,0,1515,-7,0,0 +2013,10,29,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1529,0,0,1700,16,1,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1206,0,,1800,0,1,1 +2013,6,21,5,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,21,1,630,-6,0,0 +2013,9,10,2,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,46,1,1545,20,1,0 +2013,6,14,5,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1700,12,0,1905,32,1,0 +2013,5,5,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-8,0,1655,-30,0,0 +2013,10,16,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1014,-5,0,1313,-18,0,0 +2013,6,13,4,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,12,0,1010,39,1,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,2,0,1725,42,1,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,44,1,2255,25,1,0 +2013,4,7,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1540,7,0,1640,9,0,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1133,-4,0,0 +2013,9,15,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,21,1,1930,15,1,0 +2013,10,24,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1805,98,1,1910,94,1,0 +2013,10,4,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-3,0,1332,-9,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1546,2,0,1640,-1,0,0 +2013,5,5,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-5,0,2225,-6,0,0 +2013,6,19,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,5,0,1925,-1,0,0 +2013,9,1,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1300,-4,0,1335,4,0,0 +2013,6,11,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1115,1,0,1125,-5,0,0 +2013,10,5,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1926,0,0,2155,-1,0,0 +2013,4,13,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,950,-6,0,1129,-8,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,32,1,2155,25,1,0 +2013,4,3,3,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1800,50,1,1925,45,1,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1900,30,1,2135,16,1,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1450,5,0,2215,-14,0,0 +2013,8,14,3,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,725,46,1,920,36,1,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,0,0,1225,-10,0,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1248,6,0,1532,-1,0,0 +2013,8,15,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-5,0,1025,-3,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,950,-2,0,1105,-4,0,0 +2013,6,14,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1651,22,1,2056,43,1,0 +2013,5,29,3,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1610,1,0,1751,-23,0,0 +2013,4,15,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1540,6,0,1848,14,0,0 +2013,10,10,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1500,85,1,1610,64,1,0 +2013,9,20,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,825,34,1,1636,29,1,0 +2013,4,14,7,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,-4,0,1010,-7,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1925,-3,0,2106,-15,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1417,61,1,1647,71,1,0 +2013,10,14,1,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1121,31,1,1306,4,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1710,13,0,2230,7,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,845,-2,0,1356,-14,0,0 +2013,6,25,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,755,-1,0,1009,-18,0,0 +2013,5,24,5,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1445,130,1,1641,129,1,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,751,-2,0,955,-27,0,0 +2013,6,1,6,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,-8,0,1855,-7,0,0 +2013,8,20,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2053,-16,0,2219,-23,0,0 +2013,9,21,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-9,0,1302,-15,0,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,700,-2,0,1033,-15,0,0 +2013,10,30,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,0,0,2050,3,0,0 +2013,5,5,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1055,15,1,1225,15,1,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1915,11,0,2225,-10,0,0 +2013,10,6,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,87,1,1230,73,1,0 +2013,7,9,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,144,1,1425,140,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,0,0,1207,-14,0,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,1,0,1349,-17,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1900,-3,0,2233,-18,0,0 +2013,5,10,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1214,-4,0,1959,-2,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1540,-1,0,2016,-22,0,0 +2013,4,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-2,0,1050,-21,0,0 +2013,9,22,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,601,-9,0,730,-37,0,0 +2013,4,13,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,4,0,1128,16,1,0 +2013,6,6,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1835,36,1,1955,26,1,0 +2013,7,4,4,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,735,-3,0,1005,-28,0,0 +2013,9,11,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1220,3,0,1350,5,0,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,0,0,2003,-7,0,0 +2013,9,27,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1920,-4,0,2040,-8,0,0 +2013,10,7,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,600,0,0,715,-7,0,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1110,-1,0,1407,9,0,0 +2013,4,24,3,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,2040,23,1,2330,19,1,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1112,-6,0,1200,-7,0,0 +2013,7,24,3,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1415,-5,0,1601,-15,0,0 +2013,7,16,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-2,0,2045,-24,0,0 +2013,7,14,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,8,0,1229,8,0,0 +2013,5,15,3,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1043,-1,0,1245,2,0,0 +2013,8,9,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,62,1,2105,62,1,0 +2013,9,10,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,605,-4,0,710,-9,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,840,-6,0,1005,-5,0,0 +2013,8,18,7,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1515,-3,0,2043,-5,0,0 +2013,6,29,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,5,0,804,8,0,0 +2013,8,10,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1343,-1,0,1509,-4,0,0 +2013,6,30,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,171,1,1450,178,1,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,85,1,1908,84,1,0 +2013,9,11,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,855,-5,0,1130,-7,0,0 +2013,9,18,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,655,-3,0,1016,-11,0,0 +2013,6,6,4,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,82,1,822,104,1,0 +2013,5,14,2,OO,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-4,0,2053,-3,0,0 +2013,8,29,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,75,1,1811,67,1,0 +2013,7,27,6,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1620,10,0,1819,33,1,0 +2013,4,17,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,0,,2225,0,1,1 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1145,0,0,1840,-8,0,0 +2013,7,3,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,932,34,1,1031,20,1,0 +2013,4,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-12,0,1730,-7,0,0 +2013,9,2,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,105,-2,0,829,-4,0,0 +2013,8,3,6,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,9,0,2135,50,1,0 +2013,8,26,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11042,Cleveland-Hopkins International,Cleveland,OH,640,2,0,1400,-17,0,0 +2013,10,29,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-1,0,815,-5,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-3,0,1505,-13,0,0 +2013,7,22,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,940,-5,0,1053,-16,0,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,723,15,1,924,11,0,0 +2013,7,17,3,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1059,-10,0,1540,-12,0,0 +2013,8,9,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-1,0,857,2,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-1,0,1523,-2,0,0 +2013,4,10,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-5,0,830,-6,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,-2,0,1352,-12,0,0 +2013,9,15,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,-1,0,1805,11,0,0 +2013,7,7,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,19,1,1900,9,0,0 +2013,7,19,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-7,0,1052,-13,0,0 +2013,5,14,2,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-8,0,1007,-12,0,0 +2013,10,4,5,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,850,-4,0,1056,7,0,0 +2013,10,31,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1029,34,1,1318,64,1,0 +2013,7,17,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1910,-8,0,2030,-9,0,0 +2013,8,3,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,950,-11,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1115,-3,0,1234,-9,0,0 +2013,7,9,2,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,840,-4,0,1111,-1,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1529,13,0,1715,69,1,0 +2013,10,9,3,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,725,-9,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,633,-1,0,928,-22,0,0 +2013,8,2,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,2105,22,1,2155,2,0,0 +2013,7,14,7,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,2030,17,1,2325,19,1,0 +2013,6,30,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,32,1,1645,19,1,0 +2013,5,11,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1110,-3,0,1413,30,1,0 +2013,7,28,7,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,-5,0,2145,-15,0,0 +2013,6,9,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1725,11,0,1830,5,0,0 +2013,6,8,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,950,14,0,1200,43,1,0 +2013,10,28,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1745,-5,0,2003,-17,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1625,335,1,1853,315,1,0 +2013,8,8,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2126,141,1,7,142,1,0 +2013,9,16,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-10,0,900,-21,0,0 +2013,7,10,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1341,-4,0,1443,-12,0,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1000,65,1,1125,62,1,0 +2013,4,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,701,-2,0,857,7,0,0 +2013,6,11,2,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,628,-4,0,0 +2013,10,23,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1820,8,0,2005,9,0,0 +2013,10,31,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,1,0,1600,-5,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,700,-3,0,1155,-14,0,0 +2013,4,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1510,-4,0,1620,-8,0,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,700,-1,0,1200,-11,0,0 +2013,7,6,6,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-8,0,1145,-12,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1340,20,1,1440,7,0,0 +2013,9,25,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-3,0,1200,-25,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2259,44,1,105,22,1,0 +2013,6,3,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,8,0,1442,1,0,0 +2013,8,20,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-4,0,1330,-17,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,950,-3,0,1100,12,0,0 +2013,6,18,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1236,14,0,1835,9,0,0 +2013,10,18,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-8,0,1431,-6,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,32,1,2345,19,1,0 +2013,6,20,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2018,-7,0,2119,-21,0,0 +2013,5,21,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1105,-5,0,1315,-9,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,910,-8,0,1015,-18,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,167,1,2240,169,1,0 +2013,5,27,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1110,-11,0,1400,-10,0,0 +2013,10,22,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-2,0,930,2,0,0 +2013,6,17,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,835,0,0,1043,-2,0,0 +2013,6,21,5,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-6,0,2245,11,0,0 +2013,5,3,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,605,-6,0,750,-15,0,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1135,-5,0,1300,-16,0,0 +2013,9,19,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,3,0,1959,10,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,9,0,1335,2,0,0 +2013,6,17,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1030,-1,0,1248,5,0,0 +2013,9,12,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-6,0,830,-7,0,0 +2013,8,30,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,15,1,1210,12,0,0 +2013,8,19,1,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1530,-9,0,1714,-29,0,0 +2013,5,21,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1336,110,1,1521,100,1,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,555,-5,0,1150,-9,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,-7,0,1340,-8,0,0 +2013,9,6,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-6,0,1325,-47,0,0 +2013,10,19,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,635,-4,0,745,-7,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2000,-3,0,2317,-23,0,0 +2013,6,13,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,958,-6,0,0 +2013,9,23,1,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1145,-5,0,1221,-13,0,0 +2013,4,28,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,-8,0,945,-12,0,0 +2013,8,13,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-3,0,1200,8,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1630,0,0,1730,-8,0,0 +2013,7,18,4,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-6,0,505,-5,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2145,52,1,5,46,1,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,905,16,1,1730,27,1,0 +2013,4,5,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1053,20,1,1218,55,1,0 +2013,10,7,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1220,-2,0,1458,-6,0,0 +2013,4,16,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,18,1,1435,17,1,0 +2013,5,6,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,2,0,730,-2,0,0 +2013,6,17,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,711,-1,0,1028,-16,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1530,127,1,1700,123,1,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,-2,0,1905,-28,0,0 +2013,6,6,4,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,48,-7,0,630,-20,0,0 +2013,9,9,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1755,-9,0,1857,-9,0,0 +2013,7,31,3,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-5,0,1559,-9,0,0 +2013,7,19,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,700,-8,0,1025,-10,0,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1110,11,0,1540,0,0,0 +2013,8,15,4,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,703,-3,0,850,3,0,0 +2013,5,23,4,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1855,42,1,2240,17,1,0 +2013,6,15,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1544,-6,0,1836,-4,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1730,40,1,1850,34,1,0 +2013,8,8,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1100,-8,0,1145,-5,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,810,-1,0,919,1,0,0 +2013,5,30,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,700,-4,0,903,-8,0,0 +2013,8,12,1,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2015,13,0,2105,7,0,0 +2013,6,22,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,0,0,851,14,0,0 +2013,6,18,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,0,,2050,0,1,1 +2013,5,1,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2100,31,1,2226,25,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-2,0,1808,-5,0,0 +2013,5,23,4,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1122,8,0,1244,-2,0,0 +2013,9,25,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,827,-2,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,-2,0,1019,-14,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-6,0,1105,-15,0,0 +2013,5,10,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,-1,0,1743,-10,0,0 +2013,7,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1149,7,0,1400,34,1,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1815,-1,0,1935,-5,0,0 +2013,10,17,4,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,926,-3,0,1225,-1,0,0 +2013,7,9,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,92,1,840,86,1,0 +2013,6,13,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1850,254,1,1925,265,1,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,2,0,1619,7,0,0 +2013,9,29,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,-2,0,1535,-32,0,0 +2013,5,7,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1020,-5,0,1150,17,1,0 +2013,5,24,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-8,0,1000,-4,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1215,14,0,1320,-11,0,0 +2013,4,17,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1251,206,1,1442,197,1,0 +2013,10,14,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-2,0,740,-16,0,0 +2013,9,9,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2025,93,1,2255,97,1,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-3,0,1315,-10,0,0 +2013,8,26,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1009,19,1,1200,0,0,0 +2013,5,27,1,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1545,74,1,2108,60,1,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2250,-2,0,612,12,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1715,84,1,2010,72,1,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,630,-1,0,916,-4,0,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,900,0,,1201,0,1,1 +2013,4,27,6,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1035,-6,0,1255,6,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2105,0,0,2337,-24,0,0 +2013,9,27,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,9,0,1350,18,1,0 +2013,6,11,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-7,0,1000,-20,0,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,11,0,1842,28,1,0 +2013,7,18,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,33,1,1621,37,1,0 +2013,9,22,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1316,-2,0,1520,-3,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,705,-5,0,910,-3,0,0 +2013,10,29,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1721,-7,0,1859,-12,0,0 +2013,10,2,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1815,-10,0,2102,-21,0,0 +2013,8,17,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,34,1,1210,26,1,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1930,24,1,2230,26,1,0 +2013,10,16,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2005,-6,0,2029,-18,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,805,9,0,1015,5,0,0 +2013,6,25,2,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,540,-4,0,645,2,0,0 +2013,5,9,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,750,-4,0,1013,-20,0,0 +2013,8,29,4,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,13,0,719,10,0,0 +2013,5,3,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,6,0,1855,-7,0,0 +2013,5,5,7,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-5,0,1400,-5,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1758,1,0,1955,-16,0,0 +2013,8,9,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-1,0,1445,-10,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1910,8,0,2200,-12,0,0 +2013,7,11,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1724,10,0,2020,3,0,0 +2013,7,13,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,0,0,820,-8,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,858,-3,0,1117,-16,0,0 +2013,9,22,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1844,-10,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,45,1,2030,41,1,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,600,-3,0,840,-14,0,0 +2013,7,1,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,610,0,,715,0,1,1 +2013,10,19,6,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,615,-3,0,755,-6,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1026,-10,0,1130,-1,0,0 +2013,9,15,7,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1212,-2,0,1432,2,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1830,-8,0,2008,-13,0,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-4,0,1627,-2,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,735,-4,0,1305,-1,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1035,31,1,1430,17,1,0 +2013,6,6,4,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1815,-8,0,2122,-20,0,0 +2013,8,22,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-3,0,1755,-2,0,0 +2013,5,16,4,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1037,0,0,1604,-10,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,68,1,1500,64,1,0 +2013,4,11,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1655,-9,0,1950,-15,0,0 +2013,10,25,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,915,-4,0,1222,-23,0,0 +2013,6,16,7,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,-1,0,1040,-21,0,0 +2013,5,18,6,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1000,-5,0,1310,-7,0,0 +2013,8,5,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,-7,0,1224,-3,0,0 +2013,7,8,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-6,0,955,-16,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1625,1,0,1739,-10,0,0 +2013,8,24,6,UA,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1105,3,0,1235,-12,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2155,32,1,2356,-2,0,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,20,1,1721,-2,0,0 +2013,4,28,7,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1125,0,0,1340,-10,0,0 +2013,8,17,6,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1035,2,0,1110,-10,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1905,16,1,2005,11,0,0 +2013,10,13,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,4,0,1023,10,0,0 +2013,5,6,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1633,-1,0,1926,0,0,0 +2013,7,25,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,-3,0,1530,-10,0,0 +2013,6,17,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,-3,0,1810,-1,0,0 +2013,5,8,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-3,0,1510,-4,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1235,3,0,1405,2,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,-1,0,2348,-9,0,0 +2013,6,4,2,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1435,6,0,1710,1,0,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,650,0,0,940,-9,0,0 +2013,4,23,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,-8,0,1122,6,0,0 +2013,10,25,5,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-8,0,2050,-8,0,0 +2013,10,11,5,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,600,-7,0,845,-27,0,0 +2013,10,16,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-4,0,2030,-3,0,0 +2013,6,21,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,750,-3,0,935,-7,0,0 +2013,10,27,7,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1701,94,1,1920,93,1,0 +2013,8,23,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1957,0,0,2151,2,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,800,5,0,1050,-5,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1510,20,1,1740,17,1,0 +2013,10,6,7,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,900,0,0,1420,-4,0,0 +2013,6,10,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1259,0,0,1355,-8,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2210,-3,0,2330,-3,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1140,15,1,1255,17,1,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,156,1,1555,154,1,0 +2013,5,8,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1815,23,1,2020,19,1,0 +2013,9,6,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,-5,0,1050,-16,0,0 +2013,8,11,7,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1930,26,1,2246,17,1,0 +2013,8,5,1,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1252,-1,0,1641,-11,0,0 +2013,10,3,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1340,-7,0,1525,-7,0,0 +2013,8,17,6,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1149,-5,0,1329,-12,0,0 +2013,4,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2107,83,1,2251,85,1,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1200,-7,0,1358,-6,0,0 +2013,10,18,5,UA,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1005,-1,0,1135,-9,0,0 +2013,5,31,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,0,0,1320,-7,0,0 +2013,10,4,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,910,-5,0,1000,-7,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1055,0,,1310,0,1,1 +2013,4,1,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2215,-3,0,640,-36,0,0 +2013,4,15,1,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1725,46,1,1904,43,1,0 +2013,4,23,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,10,0,1325,27,1,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2130,-4,0,2350,-14,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1025,-2,0,1620,-3,0,0 +2013,4,7,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1659,9,0,1807,-4,0,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,-9,0,611,0,0,0 +2013,7,12,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1444,-5,0,1709,-7,0,0 +2013,6,5,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,942,-6,0,1116,-29,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1249,0,0,1459,-30,0,0 +2013,10,3,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1330,0,0,1510,-21,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2155,14,0,15,-11,0,0 +2013,10,28,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2110,0,0,2255,27,1,0 +2013,4,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1005,-7,0,1305,3,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,26,1,2328,36,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1247,8,0,1439,12,0,0 +2013,5,7,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1810,-10,0,1955,-8,0,0 +2013,6,13,4,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,23,1,2035,17,1,0 +2013,7,6,6,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,852,-6,0,1205,-17,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1615,4,0,1720,-1,0,0 +2013,8,18,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1707,33,1,1819,31,1,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1750,2,0,2045,-26,0,0 +2013,7,12,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,907,0,,1129,0,1,1 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1208,-1,0,1320,-5,0,0 +2013,9,10,2,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-9,0,1006,-32,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1530,36,1,1630,41,1,0 +2013,8,27,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-5,0,1100,-19,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,-1,0,1810,-20,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1950,-1,0,2232,-28,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1315,25,1,1825,13,0,0 +2013,8,16,5,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1021,-4,0,1234,-16,0,0 +2013,4,24,3,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,0,0,1515,-16,0,0 +2013,10,9,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1047,-2,0,1630,6,0,0 +2013,9,23,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,810,-5,0,1032,-21,0,0 +2013,7,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-6,0,2016,34,1,0 +2013,10,4,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1429,-11,0,1543,-7,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1951,7,0,2153,11,0,0 +2013,4,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1517,-7,0,1655,-12,0,0 +2013,5,18,6,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1845,-2,0,2017,10,0,0 +2013,8,28,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,845,1,0,1425,4,0,0 +2013,4,11,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,5,0,2115,2,0,0 +2013,5,24,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1955,-2,0,2107,2,0,0 +2013,10,9,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,810,-8,0,0 +2013,10,26,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-4,0,556,-22,0,0 +2013,4,19,5,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1120,-5,0,1355,0,0,0 +2013,4,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-2,0,1446,2,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1155,6,0,1320,-1,0,0 +2013,7,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,830,-3,0,1000,-13,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1815,0,0,2130,5,0,0 +2013,8,2,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,-1,0,2215,-8,0,0 +2013,9,10,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1605,-20,0,1642,-11,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1040,14,0,1230,18,1,0 +2013,6,13,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,7,0,708,90,1,0 +2013,9,30,1,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,730,-3,0,820,1,0,0 +2013,7,13,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,835,-11,0,0 +2013,9,13,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1922,-7,0,1956,-3,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1200,-2,0,1332,-3,0,0 +2013,5,11,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1138,18,1,1251,0,0,0 +2013,10,7,1,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1440,-8,0,1745,-5,0,0 +2013,5,17,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,820,-9,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,935,10,0,1310,19,1,0 +2013,5,12,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-6,0,1800,-17,0,0 +2013,5,12,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-5,0,2125,-4,0,0 +2013,6,27,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1435,8,0,1625,-7,0,0 +2013,9,11,3,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,840,2,0,1007,3,0,0 +2013,4,8,1,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1859,31,1,2014,31,1,0 +2013,7,24,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-4,0,2011,2,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-4,0,747,-10,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2009,-1,0,2142,-17,0,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,750,-2,0,945,-9,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1643,217,1,1818,196,1,0 +2013,9,8,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,705,-3,0,910,-7,0,0 +2013,5,20,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,1004,-6,0,0 +2013,7,16,2,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1535,4,0,1856,-8,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,28,1,1120,22,1,0 +2013,7,28,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1620,-10,0,1724,-15,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2108,45,1,2359,52,1,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1400,-1,0,1740,-28,0,0 +2013,4,28,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,21,1,2105,17,1,0 +2013,9,29,7,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,945,-7,0,1304,-15,0,0 +2013,7,21,7,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,655,1,0,755,-4,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,745,-7,0,1041,-14,0,0 +2013,9,10,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,710,-5,0,1508,9,0,0 +2013,8,13,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1502,-9,0,1701,-1,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,67,1,2012,49,1,0 +2013,7,22,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,0,0,1410,-1,0,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2020,4,0,2225,-3,0,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1732,-1,0,2114,23,1,0 +2013,10,28,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,2,0,1610,2,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2145,-1,0,2255,-14,0,0 +2013,4,22,1,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1825,148,1,2149,128,1,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1325,-5,0,1708,-18,0,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,24,1,1623,16,1,0 +2013,6,27,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1012,15,1,1133,13,0,0 +2013,9,7,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-10,0,659,-24,0,0 +2013,8,25,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1216,-2,0,1425,-19,0,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,925,7,0,1230,-11,0,0 +2013,10,22,2,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-12,0,1640,-11,0,0 +2013,5,9,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1955,-7,0,2143,11,0,0 +2013,10,7,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1815,-5,0,1925,-11,0,0 +2013,6,10,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1026,3,0,1157,18,1,0 +2013,8,20,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-4,0,848,-9,0,0 +2013,8,7,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1945,-8,0,2115,-9,0,0 +2013,7,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-6,0,935,-20,0,0 +2013,9,28,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-9,0,1630,-8,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1106,18,1,1216,1,0,0 +2013,10,4,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-5,0,751,-8,0,0 +2013,5,25,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1320,-4,0,1440,-8,0,0 +2013,6,17,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1621,50,1,2156,39,1,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,96,1,1835,100,1,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-1,0,2204,-14,0,0 +2013,6,9,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,645,-3,0,735,-11,0,0 +2013,5,19,7,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1645,-5,0,1820,-12,0,0 +2013,9,4,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-10,0,848,-16,0,0 +2013,6,3,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,-6,0,853,-2,0,0 +2013,8,27,2,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1030,-7,0,1247,-1,0,0 +2013,5,10,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,755,0,0,1010,-3,0,0 +2013,7,6,6,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2005,28,1,2234,10,0,0 +2013,8,31,6,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1740,28,1,2028,16,1,0 +2013,5,23,4,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,709,0,,815,0,1,1 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-4,0,957,-7,0,0 +2013,10,9,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,920,-5,0,1025,-10,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1055,37,1,1115,30,1,0 +2013,5,9,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1310,-7,0,1420,-19,0,0 +2013,5,14,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-7,0,1635,0,0,0 +2013,4,5,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1824,-3,0,1850,-6,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,-5,0,1055,6,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,1,0,1955,-16,0,0 +2013,9,6,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,615,-1,0,740,-6,0,0 +2013,6,8,6,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,36,1,1355,25,1,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,-1,0,1115,-7,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1616,5,0,30,-16,0,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,2005,7,0,2130,-1,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-6,0,1230,8,0,0 +2013,9,5,4,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1035,0,0,1140,-14,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1405,56,1,1650,45,1,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2210,0,0,2335,22,1,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1020,-2,0,1135,-5,0,0 +2013,9,22,7,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,850,-2,0,1130,-9,0,0 +2013,5,9,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1330,83,1,1610,110,1,0 +2013,6,10,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,85,1,2215,78,1,0 +2013,9,16,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-5,0,1343,-7,0,0 +2013,9,14,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,715,-2,0,835,5,0,0 +2013,9,25,3,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1400,-6,0,1705,-18,0,0 +2013,9,26,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1115,4,0,1950,-19,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-3,0,1339,-17,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,16,1,1245,20,1,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,0,0,2211,6,0,0 +2013,7,30,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-5,0,838,-16,0,0 +2013,4,1,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1723,-6,0,1840,-2,0,0 +2013,5,21,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1346,7,0,1621,6,0,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,55,-2,0,813,-14,0,0 +2013,7,5,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-2,0,1003,-12,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1847,-8,0,18,-17,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1220,21,1,1345,22,1,0 +2013,8,2,5,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1715,7,0,1945,6,0,0 +2013,7,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,15,1,1442,17,1,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,39,1,1420,34,1,0 +2013,10,28,1,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,758,12,0,1103,-1,0,0 +2013,8,10,6,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1000,-2,0,1245,-8,0,0 +2013,10,18,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,545,-6,0,700,-20,0,0 +2013,5,14,2,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1145,-3,0,1401,-10,0,0 +2013,7,16,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,840,-7,0,857,-5,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,745,2,0,1052,2,0,0 +2013,5,24,5,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,13,0,2209,25,1,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1840,15,1,2045,10,0,0 +2013,7,15,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,630,0,0,827,14,0,0 +2013,4,5,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,13,0,1218,38,1,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,750,-2,0,1025,-5,0,0 +2013,4,20,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,735,-3,0,830,-10,0,0 +2013,7,13,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1530,17,1,2105,22,1,0 +2013,9,24,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2000,-10,0,2223,-36,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,1,0,1224,-5,0,0 +2013,7,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1257,-6,0,1639,-7,0,0 +2013,10,15,2,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1640,0,0,1805,-12,0,0 +2013,10,17,4,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1935,14,0,2043,13,0,0 +2013,5,27,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,-7,0,2055,-3,0,0 +2013,6,10,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1415,4,0,1710,-1,0,0 +2013,6,7,5,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1357,8,0,1609,1,0,0 +2013,9,14,6,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,1621,-15,0,0 +2013,10,29,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-3,0,815,-8,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1455,0,0,1740,-6,0,0 +2013,6,15,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,7,0,1309,-10,0,0 +2013,9,25,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1049,-6,0,1215,-27,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,-4,0,2209,23,1,0 +2013,7,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,-5,0,1437,-4,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1022,-5,0,1210,-4,0,0 +2013,6,25,2,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,50,1,820,55,1,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,83,1,55,77,1,0 +2013,5,19,7,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1157,-1,0,1304,-6,0,0 +2013,9,20,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,5,0,1525,-10,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-6,0,1320,-16,0,0 +2013,7,12,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1441,13,0,1600,28,1,0 +2013,4,12,5,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1928,-7,0,2111,-15,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2103,11,0,10,8,0,0 +2013,5,29,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,7,0,1357,2,0,0 +2013,6,24,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-7,0,857,3,0,0 +2013,10,10,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,0,0,1305,-3,0,0 +2013,8,16,5,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,735,-4,0,1340,7,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,600,0,0,830,1,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1930,-2,0,2235,11,0,0 +2013,4,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,845,-1,0,1254,-7,0,0 +2013,4,16,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1535,0,,1640,0,1,1 +2013,6,2,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,11,0,1916,-11,0,0 +2013,7,21,7,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-2,0,900,10,0,0 +2013,6,17,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,2,0,1533,8,0,0 +2013,9,13,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,3,0,1825,6,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1605,0,,1830,0,1,1 +2013,8,9,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-4,0,1345,-13,0,0 +2013,8,7,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-5,0,815,-21,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,-4,0,1115,-2,0,0 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1005,-6,0,1255,-14,0,0 +2013,10,2,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1640,74,1,2005,63,1,0 +2013,4,9,2,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,700,-3,0,905,-37,0,0 +2013,8,13,2,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,859,-6,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1006,-2,0,1628,-19,0,0 +2013,9,11,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1910,-5,0,2040,0,0,0 +2013,8,16,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2005,-2,0,2115,39,1,0 +2013,8,19,1,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1335,0,0,1851,-2,0,0 +2013,8,24,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-2,0,1630,2,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1859,60,1,2207,62,1,0 +2013,5,22,3,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-1,0,1020,-7,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1305,19,1,2000,16,1,0 +2013,9,9,1,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,-8,0,1210,-7,0,0 +2013,6,11,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,940,-6,0,946,-7,0,0 +2013,9,3,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-3,0,1311,-7,0,0 +2013,5,13,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-6,0,910,-3,0,0 +2013,8,29,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,848,-15,0,1020,-10,0,0 +2013,4,11,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,0,,859,0,1,1 +2013,9,6,5,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,-1,0,2000,-3,0,0 +2013,8,18,7,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,3,0,1840,-17,0,0 +2013,5,9,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2007,36,1,2217,39,1,0 +2013,9,14,6,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1520,-7,0,655,-12,0,0 +2013,9,14,6,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-10,0,1757,-17,0,0 +2013,9,26,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,739,-4,0,759,-3,0,0 +2013,9,19,4,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1525,4,0,1705,-3,0,0 +2013,7,7,7,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,371,1,2005,349,1,0 +2013,4,27,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,806,-17,0,1000,-14,0,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1347,22,1,2155,27,1,0 +2013,9,10,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,-2,0,1735,-9,0,0 +2013,9,29,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,901,-10,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,5,0,2159,12,0,0 +2013,7,17,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1918,30,1,2304,-22,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,-6,0,1950,-17,0,0 +2013,8,18,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1555,45,1,1855,26,1,0 +2013,9,17,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,855,-5,0,1112,-18,0,0 +2013,9,3,2,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,730,-1,0,755,-4,0,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,-1,0,1430,-15,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1917,9,0,2055,4,0,0 +2013,10,6,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1125,-3,0,1240,-15,0,0 +2013,6,25,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1755,181,1,2120,161,1,0 +2013,8,5,1,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,700,-2,0,930,-14,0,0 +2013,10,24,4,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1950,-7,0,2103,-7,0,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1310,1,0,2149,27,1,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1600,269,1,1859,238,1,0 +2013,8,11,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-3,0,1940,-6,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1210,0,0,1335,-17,0,0 +2013,4,3,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1209,-7,0,1444,-5,0,0 +2013,9,23,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1736,129,1,2005,120,1,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,24,1,1935,7,0,0 +2013,5,28,2,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1655,-2,0,1826,0,0,0 +2013,10,3,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1425,68,1,2030,114,1,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,-4,0,1211,-7,0,0 +2013,5,17,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,1,0,1118,-9,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1905,2,0,2210,-6,0,0 +2013,5,15,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,1,0,1825,2,0,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,839,0,0,1034,7,0,0 +2013,9,18,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2051,0,,2130,0,1,1 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,11,0,1135,16,1,0 +2013,9,28,6,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,175,1,1531,187,1,0 +2013,6,24,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,0,0,1230,-1,0,0 +2013,9,7,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,-3,0,1207,-17,0,0 +2013,10,31,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-6,0,1323,-6,0,0 +2013,6,20,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-1,0,1510,4,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,7,0,1630,32,1,0 +2013,8,6,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,-10,0,1025,-19,0,0 +2013,4,25,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,715,0,0,850,-16,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1939,107,1,2234,140,1,0 +2013,10,22,2,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-2,0,2030,-11,0,0 +2013,8,23,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,833,-32,0,0 +2013,5,10,5,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1459,-9,0,1635,-26,0,0 +2013,5,18,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1910,2,0,2055,-10,0,0 +2013,7,19,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,4,0,831,6,0,0 +2013,4,9,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,56,1,2005,48,1,0 +2013,4,8,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,900,-2,0,1025,-17,0,0 +2013,9,21,6,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,750,-2,0,1120,-2,0,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-3,0,1632,-7,0,0 +2013,9,17,2,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-9,0,1725,-11,0,0 +2013,5,5,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,-8,0,1520,-24,0,0 +2013,5,7,2,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,640,-12,0,801,-15,0,0 +2013,10,3,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,46,1,1740,39,1,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1805,31,1,2050,28,1,0 +2013,7,13,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1344,-3,0,1517,-22,0,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1754,-6,0,2040,-21,0,0 +2013,6,30,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,823,9,0,0 +2013,8,6,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-3,0,1413,-1,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,12,0,2100,6,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-1,0,1122,-13,0,0 +2013,6,20,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,20,1,1305,16,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2305,131,1,32,121,1,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1330,24,1,2147,5,0,0 +2013,8,13,2,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2010,-4,0,2136,8,0,0 +2013,4,10,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1124,0,0,1327,9,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,68,1,955,59,1,0 +2013,5,30,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1805,93,1,2330,80,1,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1745,148,1,2225,118,1,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1250,11,0,1355,12,0,0 +2013,7,31,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,2,0,1925,-8,0,0 +2013,6,12,3,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,759,-7,0,1059,-15,0,0 +2013,10,12,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-2,0,857,0,0,0 +2013,4,2,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,603,11,0,800,-11,0,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,929,-1,0,1214,-2,0,0 +2013,9,18,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-4,0,1505,-8,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1230,5,0,1410,1,0,0 +2013,10,3,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,-7,0,1835,-2,0,0 +2013,8,27,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,1,0,1154,-10,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1830,21,1,1950,12,0,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,748,-7,0,1100,-12,0,0 +2013,5,8,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1028,9,0,1426,25,1,0 +2013,7,12,5,DL,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1920,-3,0,2045,-23,0,0 +2013,6,19,3,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1801,-3,0,2015,-1,0,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,600,1,0,1110,-16,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,-4,0,1605,-7,0,0 +2013,8,14,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1600,-3,0,1721,7,0,0 +2013,10,21,1,OO,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1141,1,0,1442,3,0,0 +2013,10,12,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,900,6,0,1015,6,0,0 +2013,6,10,1,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,856,-2,0,1149,1,0,0 +2013,6,16,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2010,60,1,2130,51,1,0 +2013,4,7,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1724,-9,0,0 +2013,10,31,4,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2058,17,1,500,13,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1924,24,1,2201,25,1,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-9,0,1423,-13,0,0 +2013,4,10,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1405,-9,0,2121,-11,0,0 +2013,6,12,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-5,0,1019,-36,0,0 +2013,8,24,6,9E,10721,Logan International,Boston,MA,11066,Port Columbus International,Columbus,OH,905,-4,0,1117,-17,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1601,12,0,1930,4,0,0 +2013,5,6,1,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1105,9,0,1235,-3,0,0 +2013,10,21,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1440,-2,0,1715,-23,0,0 +2013,9,17,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-9,0,1126,-8,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1246,-3,0,1514,-33,0,0 +2013,9,28,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1805,19,1,2043,16,1,0 +2013,6,1,6,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1310,28,1,1600,15,1,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1840,6,0,2000,3,0,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2105,-5,0,2244,-29,0,0 +2013,5,17,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,717,-5,0,854,-14,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,835,-1,0,1235,18,1,0 +2013,9,29,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-5,0,1521,-8,0,0 +2013,4,11,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1435,36,1,1635,30,1,0 +2013,8,14,3,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,-6,0,1920,4,0,0 +2013,9,26,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,632,-4,0,755,-15,0,0 +2013,4,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,-2,0,2251,-14,0,0 +2013,9,2,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-6,0,1335,-9,0,0 +2013,6,18,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1122,18,1,1641,-3,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1535,11,0,2255,-17,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1400,0,0,1520,4,0,0 +2013,8,14,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-2,0,1725,-3,0,0 +2013,4,12,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,856,-11,0,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,23,1,2000,20,1,0 +2013,8,29,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,-1,0,1655,11,0,0 +2013,6,17,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,945,17,1,1120,6,0,0 +2013,4,19,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-3,0,2255,-13,0,0 +2013,8,26,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-8,0,1310,0,0,0 +2013,7,6,6,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2155,-2,0,143,-18,0,0 +2013,6,6,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,845,-6,0,1044,-8,0,0 +2013,4,18,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,545,-2,0,739,-5,0,0 +2013,7,27,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1155,27,1,1440,14,0,0 +2013,6,1,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-2,0,1801,4,0,0 +2013,7,20,6,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1325,0,0,1520,-24,0,0 +2013,10,21,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1226,0,0,1400,38,1,0 +2013,6,18,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1950,-5,0,2325,8,0,0 +2013,7,2,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-3,0,1320,-7,0,0 +2013,8,13,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-11,0,1741,-1,0,0 +2013,5,9,4,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1715,26,1,1859,15,1,0 +2013,7,22,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-4,0,1321,-25,0,0 +2013,8,26,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,13,0,2150,-6,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,629,-9,0,952,-32,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1610,-1,0,1950,-20,0,0 +2013,5,6,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1055,-1,0,1310,-16,0,0 +2013,7,25,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,35,1,1915,53,1,0 +2013,6,28,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1210,16,1,1315,7,0,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1713,249,1,1956,246,1,0 +2013,5,5,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2144,-5,0,2238,-5,0,0 +2013,9,25,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,1,0,759,-3,0,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2240,-8,0,9,-19,0,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1450,23,1,1820,22,1,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,600,9,0,910,-3,0,0 +2013,6,11,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-10,0,1125,-17,0,0 +2013,4,28,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,935,1,0,1220,11,0,0 +2013,7,21,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-14,0,1417,-9,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1010,14,0,1355,8,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1214,-5,0,0 +2013,7,29,1,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-1,0,1005,3,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,950,-5,0,1205,-4,0,0 +2013,10,11,5,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1725,-4,0,1845,-20,0,0 +2013,5,1,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1040,-3,0,1230,-5,0,0 +2013,6,9,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1127,-6,0,0 +2013,8,24,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-5,0,845,-10,0,0 +2013,4,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1405,139,1,2000,176,1,0 +2013,6,20,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1518,-6,0,1622,4,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1035,2,0,1610,-18,0,0 +2013,5,9,4,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,-7,0,1425,-6,0,0 +2013,6,4,2,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1915,19,1,2155,18,1,0 +2013,7,27,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,900,-11,0,0 +2013,8,12,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1555,34,1,0 +2013,9,6,5,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,810,-12,0,954,-46,0,0 +2013,5,8,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1540,-3,0,1855,-12,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,845,10,0,1036,4,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2005,-2,0,2200,-9,0,0 +2013,10,17,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,910,-4,0,1020,-11,0,0 +2013,5,17,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,600,-1,0,840,-15,0,0 +2013,5,27,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,-4,0,945,-21,0,0 +2013,9,8,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,955,-1,0,1255,-3,0,0 +2013,9,24,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1430,1,0,1630,3,0,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1850,-3,0,2154,-9,0,0 +2013,6,23,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,12,0,2100,7,0,0 +2013,10,13,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1820,-4,0,1928,-19,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1105,4,0,1410,-6,0,0 +2013,4,6,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-7,0,640,-21,0,0 +2013,6,22,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,6,0,930,4,0,0 +2013,10,16,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,956,-7,0,1309,-13,0,0 +2013,10,13,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-7,0,942,-23,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-9,0,2152,-17,0,0 +2013,6,8,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1300,-1,0,1525,-21,0,0 +2013,9,2,1,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1100,-2,0,1500,-15,0,0 +2013,4,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2005,-8,0,2223,5,0,0 +2013,6,22,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,857,-5,0,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1735,90,1,2100,77,1,0 +2013,9,21,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,710,-3,0,945,-11,0,0 +2013,10,15,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1722,-3,0,1825,2,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1645,13,0,1855,11,0,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1123,10,0,1312,8,0,0 +2013,9,11,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1630,8,0,1830,36,1,0 +2013,8,6,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-3,0,1045,-6,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1240,56,1,1529,59,1,0 +2013,7,28,7,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,3,0,1940,18,1,0 +2013,6,1,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1537,3,0,1813,-8,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-4,0,1606,8,0,0 +2013,10,20,7,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,-5,0,1716,-11,0,0 +2013,7,11,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,600,11,0,839,-3,0,0 +2013,6,23,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,57,1,1625,135,1,0 +2013,9,16,1,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1335,-8,0,1750,-34,0,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2000,20,1,2245,8,0,0 +2013,4,2,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1650,0,,1810,0,1,1 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1622,8,0,1749,-9,0,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,1,0,44,9,0,0 +2013,7,22,1,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1305,18,1,0 +2013,9,21,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1240,-4,0,1400,-10,0,0 +2013,9,30,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-2,0,735,-33,0,0 +2013,6,22,6,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1720,0,0,1840,-4,0,0 +2013,6,20,4,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2335,2,0,759,-1,0,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1935,-1,0,2229,-10,0,0 +2013,10,24,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,-6,0,2030,-7,0,0 +2013,4,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1630,52,1,1950,49,1,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,189,1,1742,221,1,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1212,-6,0,1507,-16,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-7,0,1005,-8,0,0 +2013,9,27,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1610,0,,1715,0,1,1 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1843,5,0,2159,-4,0,0 +2013,10,13,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1036,-4,0,1238,-14,0,0 +2013,7,30,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1430,0,0,1615,-8,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,-4,0,1805,4,0,0 +2013,4,3,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,610,-1,0,752,10,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,13,0,5,21,1,0 +2013,6,14,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,700,-9,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1500,20,1,1635,17,1,0 +2013,5,24,5,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-10,0,1630,13,0,0 +2013,5,7,2,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1321,-6,0,1458,-22,0,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,7,0,1035,9,0,0 +2013,7,11,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,5,0,2057,2,0,0 +2013,8,3,6,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1200,9,0,1513,14,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,1,0,833,8,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,-1,0,1620,12,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1345,-1,0,1535,-8,0,0 +2013,4,29,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,810,-3,0,935,-8,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2121,-3,0,543,-17,0,0 +2013,5,4,6,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-8,0,1110,-23,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1300,46,1,1350,48,1,0 +2013,6,25,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,8,0,1310,9,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-1,0,2100,1,0,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-9,0,748,-17,0,0 +2013,10,25,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2045,-6,0,2153,-16,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,0,0,1200,-6,0,0 +2013,7,31,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-7,0,1428,-2,0,0 +2013,5,4,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,4,0,753,-3,0,0 +2013,10,3,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1120,-12,0,1314,-7,0,0 +2013,4,6,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,700,2,0,830,9,0,0 +2013,6,14,5,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2145,-6,0,540,-16,0,0 +2013,6,28,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,-4,0,1550,27,1,0 +2013,6,6,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,915,-7,0,935,-19,0,0 +2013,8,19,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,9,0,1945,-2,0,0 +2013,9,30,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,845,0,0,1141,-3,0,0 +2013,4,15,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-7,0,1115,-13,0,0 +2013,4,16,2,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1725,0,,2040,0,1,1 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1728,57,1,1938,95,1,0 +2013,9,30,1,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-3,0,1624,13,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,855,-9,0,1034,-9,0,0 +2013,4,4,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,-5,0,2105,-7,0,0 +2013,8,8,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,700,-11,0,1000,-7,0,0 +2013,4,9,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-3,0,836,8,0,0 +2013,6,28,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,126,1,2030,119,1,0 +2013,8,5,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,0,0,1622,-3,0,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1150,-1,0,1337,-3,0,0 +2013,9,14,6,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,800,-7,0,859,-25,0,0 +2013,8,16,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,1,0,911,-11,0,0 +2013,9,11,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-7,0,2009,-1,0,0 +2013,4,14,7,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1227,-2,0,1441,-13,0,0 +2013,7,18,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-5,0,1347,-36,0,0 +2013,5,5,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1107,0,0,1650,-13,0,0 +2013,10,18,5,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,610,-1,0,826,-10,0,0 +2013,10,3,4,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1620,30,1,1730,26,1,0 +2013,5,29,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,0,0,1930,57,1,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,725,0,,850,0,1,1 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,735,-3,0,845,-7,0,0 +2013,6,26,3,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,-6,0,1034,6,0,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2004,-4,0,2113,-19,0,0 +2013,7,30,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,55,1,1752,47,1,0 +2013,7,23,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1910,10,0,2030,66,1,0 +2013,8,13,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1454,-11,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,2,0,1940,-9,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-7,0,209,5,0,0 +2013,9,15,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1619,-6,0,1840,-3,0,0 +2013,10,29,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1115,21,1,1715,5,0,0 +2013,8,8,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2105,20,1,2225,13,0,0 +2013,10,28,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,1015,0,0,0 +2013,9,20,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1850,-6,0,2103,-15,0,0 +2013,4,1,1,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,73,1,1703,66,1,0 +2013,9,22,7,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,1,0,1140,-6,0,0 +2013,5,9,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,0,0,1905,-2,0,0 +2013,5,29,3,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1617,12,0,1840,26,1,0 +2013,9,15,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,1005,-5,0,1544,-16,0,0 +2013,10,19,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1657,-2,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2245,-13,0,630,-28,0,0 +2013,8,15,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,710,-1,0,950,-6,0,0 +2013,7,4,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1822,-8,0,2113,-20,0,0 +2013,4,12,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,27,1,1420,34,1,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,7,0,1605,5,0,0 +2013,9,16,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,0,,1542,0,1,1 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1312,21,1,1410,10,0,0 +2013,10,8,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-1,0,2135,-4,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,15,1,1005,-3,0,0 +2013,4,13,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,855,1,0,1112,-17,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,55,1,2250,49,1,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1210,-1,0,1315,-9,0,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2059,243,1,2226,219,1,0 +2013,7,21,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1644,47,1,1809,47,1,0 +2013,5,22,3,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,17,1,2130,44,1,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1630,1,0,1919,22,1,0 +2013,6,17,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,-4,0,1649,9,0,0 +2013,6,10,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,32,1,2105,111,1,0 +2013,6,23,7,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,61,1,1352,48,1,0 +2013,5,22,3,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,33,1,1655,102,1,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,26,1,2300,28,1,0 +2013,7,27,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,24,1,1303,22,1,0 +2013,8,20,2,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,2013,-7,0,2155,-12,0,0 +2013,5,19,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1034,-6,0,1055,-21,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,-2,0,1603,23,1,0 +2013,9,5,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,748,-6,0,838,3,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1135,29,1,1230,25,1,0 +2013,5,1,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-3,0,1425,-3,0,0 +2013,5,17,5,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1555,-6,0,1813,-28,0,0 +2013,10,21,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,25,1,1050,15,1,0 +2013,4,30,2,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,8,0,2135,-1,0,0 +2013,9,2,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1354,0,0,1516,10,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1240,-1,0,1525,-25,0,0 +2013,4,20,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,831,-2,0,1007,9,0,0 +2013,5,5,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,837,-3,0,939,6,0,0 +2013,9,25,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,714,-6,0,1045,-14,0,0 +2013,10,10,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,-4,0,1440,-5,0,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,209,1,2011,206,1,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2054,-9,0,2312,-13,0,0 +2013,5,19,7,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2010,34,1,2254,37,1,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1300,6,0,1610,19,1,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,32,1,1925,30,1,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1321,-2,0,1502,24,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,2010,-5,0,2238,-16,0,0 +2013,6,13,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1746,162,1,1857,152,1,0 +2013,7,29,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1805,-3,0,1930,-15,0,0 +2013,6,16,7,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1959,-6,0,2232,-18,0,0 +2013,10,15,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,550,0,0,1245,-30,0,0 +2013,5,4,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1010,-5,0,1416,3,0,0 +2013,8,3,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,-4,0,833,-9,0,0 +2013,10,21,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1448,-4,0,1533,-15,0,0 +2013,7,29,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,80,1,1520,76,1,0 +2013,8,7,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1855,-2,0,1953,12,0,0 +2013,8,1,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,19,1,1749,47,1,0 +2013,9,6,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,700,0,0,815,-7,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,2000,19,1,35,21,1,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2102,-5,0,2243,-7,0,0 +2013,9,6,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1657,-9,0,0 +2013,9,15,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2018,-1,0,2137,1,0,0 +2013,10,3,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,842,-11,0,0 +2013,9,6,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1238,6,0,1524,0,0,0 +2013,9,12,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,835,-3,0,1012,-16,0,0 +2013,7,1,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1546,-4,0,1702,4,0,0 +2013,5,21,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1620,-1,0,1829,-4,0,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2245,0,0,630,0,0,0 +2013,7,11,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1530,-1,0,1640,-9,0,0 +2013,5,27,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1805,23,1,1920,4,0,0 +2013,6,26,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,19,1,1400,-6,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,859,2,0,1153,7,0,0 +2013,9,13,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1104,-15,0,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,3,0,2214,4,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1255,-3,0,1355,3,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,43,1,1443,29,1,0 +2013,5,15,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-3,0,2100,-8,0,0 +2013,9,17,2,EV,12953,LaGuardia,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,840,-5,0,1022,-32,0,0 +2013,7,15,1,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,6,0,1442,34,1,0 +2013,9,12,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1117,23,1,1233,25,1,0 +2013,5,15,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1733,-5,0,2039,-4,0,0 +2013,10,23,3,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,630,-5,0,715,-1,0,0 +2013,6,16,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1930,-10,0,2203,-25,0,0 +2013,7,25,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-6,0,1645,16,1,0 +2013,8,16,5,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,910,8,0,1035,0,0,0 +2013,10,26,6,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-3,0,2050,1,0,0 +2013,7,18,4,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,37,1,1818,34,1,0 +2013,4,25,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1650,2,0,1930,-3,0,0 +2013,8,16,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1200,-3,0,2030,-10,0,0 +2013,5,7,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-3,0,1319,-15,0,0 +2013,7,28,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,-1,0,829,-17,0,0 +2013,6,23,7,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-4,0,1218,1,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1635,23,1,2215,1,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1012,-3,0,1159,-17,0,0 +2013,4,25,4,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-1,0,40,1,0,0 +2013,4,1,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,6,0,1745,-4,0,0 +2013,8,7,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-7,0,1309,-7,0,0 +2013,6,18,2,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,740,-2,0,1601,13,0,0 +2013,9,8,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,6,0,1605,-1,0,0 +2013,7,11,4,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1350,11,0,1910,17,1,0 +2013,5,17,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1550,-2,0,1650,-7,0,0 +2013,9,9,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,900,-9,0,1108,6,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,625,1,0,1135,-14,0,0 +2013,4,23,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,730,1,0,1110,-21,0,0 +2013,4,19,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,829,50,1,1024,52,1,0 +2013,6,17,1,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1730,2,0,1843,5,0,0 +2013,4,9,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1557,-5,0,1645,-11,0,0 +2013,5,10,5,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1547,-2,0,1723,-12,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1400,2,0,1530,-3,0,0 +2013,7,14,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1047,-1,0,1352,-11,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-3,0,1523,-18,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,6,0,1757,7,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1655,16,1,2250,9,0,0 +2013,8,16,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1125,12,0,1300,6,0,0 +2013,9,24,2,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1305,1,0,1910,-6,0,0 +2013,6,1,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-6,0,1354,-17,0,0 +2013,7,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,-3,0,1054,-16,0,0 +2013,5,17,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1300,-5,0,1645,-15,0,0 +2013,9,19,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-5,0,1246,-10,0,0 +2013,10,23,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1738,9,0,2005,38,1,0 +2013,4,24,3,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1411,-6,0,1611,-1,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-1,0,925,-12,0,0 +2013,6,19,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1926,-10,0,2153,8,0,0 +2013,8,30,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,-5,0,1308,-8,0,0 +2013,4,29,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,853,11,0,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1040,28,1,1920,10,0,0 +2013,9,13,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1310,-1,0,1440,4,0,0 +2013,7,2,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-6,0,751,0,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,2005,85,1,2210,77,1,0 +2013,10,7,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,73,1,1618,141,1,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-9,0,2320,-16,0,0 +2013,4,18,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,1,0,1807,-14,0,0 +2013,4,1,1,DL,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1605,-6,0,1939,-19,0,0 +2013,5,4,6,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,925,1,0,1220,-12,0,0 +2013,10,2,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,40,1,1525,27,1,0 +2013,4,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1157,228,1,1242,244,1,0 +2013,10,2,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1100,-1,0,1309,-35,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,707,-2,0,823,-15,0,0 +2013,7,24,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,925,29,1,1115,26,1,0 +2013,6,12,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,4,0,2200,-4,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,710,-4,0,820,-9,0,0 +2013,8,18,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-2,0,1851,-11,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1951,-4,0,2321,-9,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1930,99,1,2059,92,1,0 +2013,4,9,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,695,1,1327,687,1,0 +2013,7,16,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2311,4,0,500,-7,0,0 +2013,6,23,7,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2100,-3,0,525,11,0,0 +2013,6,27,4,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1744,21,1,2116,18,1,0 +2013,8,2,5,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,919,-8,0,1056,-1,0,0 +2013,5,18,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1100,-8,0,1232,-17,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,-4,0,1042,-24,0,0 +2013,10,24,4,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1705,-12,0,1912,-6,0,0 +2013,7,20,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,6,0,900,11,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1320,7,0,1505,1,0,0 +2013,7,12,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,-5,0,755,-1,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1615,81,1,2325,62,1,0 +2013,9,4,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,740,64,1,950,62,1,0 +2013,4,15,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1545,-8,0,1907,-25,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,-6,0,1201,1,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,2005,39,1,2315,71,1,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1850,-3,0,2310,-19,0,0 +2013,4,26,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1455,1,0,1811,-2,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1004,-9,0,1259,-13,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1743,-3,0,1920,-6,0,0 +2013,5,4,6,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,31,1,2022,40,1,0 +2013,5,25,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1704,0,0,2110,-18,0,0 +2013,8,29,4,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1945,-4,0,2147,-11,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1031,-3,0,1551,6,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,910,1,0,1155,4,0,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1435,0,0,1710,-17,0,0 +2013,8,30,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1320,-3,0,1551,-7,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2155,2,0,5,-5,0,0 +2013,8,15,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1750,69,1,1910,60,1,0 +2013,6,4,2,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,86,1,520,91,1,0 +2013,4,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1443,86,1,1554,70,1,0 +2013,8,27,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-4,0,2055,-17,0,0 +2013,10,11,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-1,0,1524,-11,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1704,21,1,2103,-1,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,117,1,1746,122,1,0 +2013,7,28,7,EV,14122,Pittsburgh International,Pittsburgh,PA,11618,Newark Liberty International,Newark,NJ,940,-2,0,1102,-1,0,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2030,-5,0,2224,-1,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,900,0,0,1125,-5,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1120,-2,0,1456,-17,0,0 +2013,9,15,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,34,1,852,23,1,0 +2013,4,3,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1333,7,0,1524,-2,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,18,1,755,15,1,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1905,30,1,2140,27,1,0 +2013,6,23,7,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,840,-6,0,1030,8,0,0 +2013,8,9,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,-1,0,1710,5,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2000,0,0,2130,-7,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,923,-1,0,1042,-21,0,0 +2013,5,2,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1010,-5,0,1205,-26,0,0 +2013,10,21,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,51,1,1340,53,1,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1950,0,0,2139,-20,0,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,-3,0,45,-10,0,0 +2013,8,27,2,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,930,-3,0,1530,-15,0,0 +2013,5,22,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1424,-3,0,1531,-7,0,0 +2013,8,28,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1116,-3,0,1209,-2,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1431,11,0,1529,15,1,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1633,1,0,1916,16,1,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1510,-1,0,1702,0,0,0 +2013,8,6,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1805,-8,0,1950,-10,0,0 +2013,6,2,7,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-7,0,940,-12,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2210,-4,0,2330,-3,0,0 +2013,7,19,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,20,1,745,0,0,0 +2013,9,19,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1105,-4,0,1126,-9,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1530,2,0,1727,-22,0,0 +2013,4,4,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1650,35,1,1805,27,1,0 +2013,7,24,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,-3,0,1620,-5,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,0,0,1445,26,1,0 +2013,9,19,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-5,0,1240,-20,0,0 +2013,4,17,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2257,-2,0,44,-10,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,852,-3,0,1019,-20,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,-4,0,2220,-17,0,0 +2013,7,10,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1655,60,1,1819,70,1,0 +2013,10,23,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,821,-12,0,0 +2013,6,27,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,2,0,819,-2,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1540,307,1,1800,287,1,0 +2013,10,1,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,7,0,813,1,0,0 +2013,8,4,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,-10,0,911,-12,0,0 +2013,7,30,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2335,-5,0,609,-10,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1615,0,0,1705,-5,0,0 +2013,4,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,946,-6,0,1048,-7,0,0 +2013,5,27,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,75,1,2308,59,1,0 +2013,10,6,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-5,0,1659,-8,0,0 +2013,6,8,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,605,10,0,758,-2,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,740,6,0,1101,-6,0,0 +2013,10,27,7,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2000,21,1,2011,43,1,0 +2013,5,16,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,0,0,1634,-28,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,3,0,1720,-7,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-2,0,1029,-13,0,0 +2013,6,30,7,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-6,0,1535,7,0,0 +2013,4,20,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,18,1,1435,10,0,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,-2,0,1735,-7,0,0 +2013,9,20,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2030,10,0,2147,4,0,0 +2013,8,30,5,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-5,0,2130,-15,0,0 +2013,7,25,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-6,0,1237,-10,0,0 +2013,9,12,4,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1926,13,0,2300,2,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,849,3,0,1154,7,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,14,0,1850,2,0,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,-6,0,1605,-3,0,0 +2013,9,16,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1033,70,1,1355,71,1,0 +2013,10,2,3,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-3,0,930,-3,0,0 +2013,8,19,1,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1400,0,0,1535,-17,0,0 +2013,7,21,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-10,0,940,-24,0,0 +2013,5,13,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-11,0,2030,-7,0,0 +2013,5,27,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-6,0,906,-21,0,0 +2013,9,27,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1622,-1,0,1900,-7,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,857,32,1,1116,25,1,0 +2013,4,23,2,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,630,1,0,1235,-6,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1920,-6,0,2124,17,1,0 +2013,6,1,6,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,825,13,0,1017,-12,0,0 +2013,9,13,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1131,1,0,1340,-6,0,0 +2013,5,6,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1205,500,1,1805,485,1,0 +2013,10,13,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,18,1,1920,8,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1640,3,0,2120,-29,0,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,600,2,0,725,-8,0,0 +2013,4,26,5,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-2,0,553,-18,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,7,0,1025,2,0,0 +2013,4,1,1,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1535,0,0,1715,-9,0,0 +2013,9,29,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,11,0,743,11,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1500,7,0,1645,10,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,807,-9,0,924,-16,0,0 +2013,7,8,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1645,1,0,1826,-21,0,0 +2013,4,19,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,812,-13,0,0 +2013,4,14,7,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1610,0,,1758,0,1,1 +2013,6,6,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,62,1,2118,52,1,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1950,70,1,2130,62,1,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-5,0,1109,-12,0,0 +2013,7,5,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2114,2,0,2242,-5,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,-1,0,1014,18,1,0 +2013,7,28,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1913,43,1,2145,38,1,0 +2013,4,21,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1035,-2,0,1205,-12,0,0 +2013,8,4,7,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,-12,0,1845,-7,0,0 +2013,6,30,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,949,-8,0,1103,-9,0,0 +2013,7,9,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1010,-6,0,0 +2013,8,16,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,-19,0,2125,-34,0,0 +2013,8,17,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1050,36,1,1212,33,1,0 +2013,5,22,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,742,-14,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,100,1,1845,87,1,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1450,124,1,1745,114,1,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,5,0,1325,8,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,4,0,2034,2,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,725,-4,0,1020,-3,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,600,15,1,1050,2,0,0 +2013,10,17,4,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1700,-2,0,1815,-7,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1710,-1,0,1835,-8,0,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,630,1,0,847,0,0,0 +2013,4,6,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-8,0,1029,-18,0,0 +2013,6,15,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1529,14,0,1820,21,1,0 +2013,10,27,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,8,0,720,-1,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1840,-5,0,2155,-4,0,0 +2013,10,22,2,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1646,9,0,1737,4,0,0 +2013,8,4,7,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-10,0,1254,-4,0,0 +2013,5,18,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1746,-4,0,1930,-9,0,0 +2013,4,22,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1920,0,0,2133,1,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1645,6,0,1856,38,1,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1010,-3,0,1135,-1,0,0 +2013,6,12,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1250,-3,0,1345,-4,0,0 +2013,7,18,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,12,0,1437,28,1,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,655,-1,0,945,-9,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1935,5,0,2150,-12,0,0 +2013,9,21,6,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,514,-5,0,626,8,0,0 +2013,5,14,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,-1,0,1905,-4,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,625,0,0,830,-2,0,0 +2013,5,16,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1735,-6,0,1849,31,1,0 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,26,1,1900,17,1,0 +2013,10,13,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,-3,0,2044,-20,0,0 +2013,7,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-1,0,1040,-3,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1200,10,0,1320,1,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,20,1,2335,13,0,0 +2013,10,20,7,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1233,7,0,1436,9,0,0 +2013,7,17,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1517,8,0,1621,4,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1015,-6,0,1148,23,1,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,630,-5,0,1125,-4,0,0 +2013,6,21,5,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,811,-1,0,927,2,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2050,-6,0,2225,-23,0,0 +2013,4,22,1,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1215,0,0,1406,8,0,0 +2013,10,28,1,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,14,0,1800,17,1,0 +2013,4,20,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1410,38,1,1722,23,1,0 +2013,8,25,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1542,-7,0,1835,-18,0,0 +2013,4,19,5,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1845,16,1,2040,0,0,0 +2013,10,4,5,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1940,-2,0,2245,-7,0,0 +2013,8,23,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,825,-5,0,839,-14,0,0 +2013,8,13,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,129,1,1832,127,1,0 +2013,9,14,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-10,0,930,-16,0,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,600,0,0,715,-1,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1010,-2,0,1445,-9,0,0 +2013,8,26,1,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-6,0,1814,-6,0,0 +2013,7,11,4,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,600,1,0,745,-3,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,930,28,1,1505,10,0,0 +2013,4,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-5,0,1558,6,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2040,-1,0,2305,-1,0,0 +2013,7,20,6,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,730,-3,0,850,-21,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,827,-5,0,850,2,0,0 +2013,5,31,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1410,7,0,1510,0,0,0 +2013,6,6,4,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,376,1,2058,344,1,0 +2013,9,25,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1002,-6,0,1055,-14,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,3,0,1205,10,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1948,-3,0,2311,-18,0,0 +2013,4,2,2,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1043,2,0,1635,-8,0,0 +2013,10,10,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,725,-8,0,839,-33,0,0 +2013,5,23,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,842,0,0,1110,-9,0,0 +2013,6,4,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-3,0,1329,-5,0,0 +2013,10,12,6,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,815,0,0,1345,-7,0,0 +2013,4,28,7,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,830,-4,0,1136,-8,0,0 +2013,6,25,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-1,0,951,-23,0,0 +2013,7,12,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-7,0,836,-1,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2240,-9,0,21,-14,0,0 +2013,4,22,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1255,116,1,1432,91,1,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1235,34,1,1513,10,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1250,-2,0,1555,-2,0,0 +2013,6,19,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,0,0,1340,-5,0,0 +2013,8,4,7,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,7,0,2139,41,1,0 +2013,7,13,6,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,2,0,841,-16,0,0 +2013,10,18,5,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,755,-3,0,1008,29,1,0 +2013,8,1,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-1,0,1600,13,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,7,0,1825,-3,0,0 +2013,7,17,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-5,0,1345,0,0,0 +2013,6,15,6,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1336,20,1,1711,58,1,0 +2013,7,2,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1724,-1,0,2020,-4,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,0,0,612,-5,0,0 +2013,9,18,3,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-1,0,1005,4,0,0 +2013,9,24,2,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,710,2,0,836,-20,0,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,-5,0,1807,15,1,0 +2013,9,12,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,0,0,1950,107,1,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,21,1,1025,9,0,0 +2013,4,3,3,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,705,1,0,955,10,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,28,1,2025,11,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,23,1,2205,17,1,0 +2013,8,17,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-6,0,1120,-33,0,0 +2013,5,20,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1711,-7,0,2211,-15,0,0 +2013,10,10,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-1,0,1757,-7,0,0 +2013,9,8,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,0,0,1300,-9,0,0 +2013,7,11,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,-3,0,730,2,0,0 +2013,5,23,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-7,0,1554,-12,0,0 +2013,8,7,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1120,3,0,1350,1,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,915,5,0,1140,3,0,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,12,0,2022,5,0,0 +2013,7,17,3,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-6,0,1005,-4,0,0 +2013,6,15,6,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1505,24,1,1637,37,1,0 +2013,4,16,2,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1310,-5,0,1415,-6,0,0 +2013,8,22,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,828,-4,0,1109,7,0,0 +2013,7,18,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1125,-7,0,1332,-13,0,0 +2013,7,17,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2145,-3,0,2302,-7,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1945,0,0,2205,-4,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,745,-6,0,936,2,0,0 +2013,7,24,3,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-6,0,639,-3,0,0 +2013,10,1,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,840,-3,0,952,-10,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1823,88,1,2042,71,1,0 +2013,8,4,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,110,1,1135,115,1,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1830,6,0,2145,19,1,0 +2013,6,5,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1055,-10,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,2,0,1133,-7,0,0 +2013,9,20,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1515,71,1,1555,70,1,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1535,203,1,1620,198,1,0 +2013,4,15,1,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1720,0,0,2000,3,0,0 +2013,6,19,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,-3,0,1956,12,0,0 +2013,6,9,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,944,-4,0,1130,-11,0,0 +2013,4,20,6,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,3,0,1607,6,0,0 +2013,8,2,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-7,0,1010,-12,0,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1030,0,0,1611,5,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,29,1,1627,68,1,0 +2013,7,20,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1335,-5,0,1515,-7,0,0 +2013,7,20,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,5,0,905,-1,0,0 +2013,9,17,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1408,4,0,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,-4,0,1348,2,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,4,0,755,7,0,0 +2013,5,8,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,2,0,1934,-9,0,0 +2013,6,15,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-4,0,1812,-23,0,0 +2013,5,5,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-6,0,149,-3,0,0 +2013,8,30,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1432,-8,0,1559,-36,0,0 +2013,9,28,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-6,0,1030,3,0,0 +2013,10,1,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1317,-8,0,1445,-22,0,0 +2013,4,21,7,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,261,1,2240,238,1,0 +2013,6,24,1,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-4,0,900,15,1,0 +2013,4,12,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1829,-17,0,0 +2013,5,29,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,-1,0,1745,-12,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,95,1,2148,90,1,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2150,20,1,2215,6,0,0 +2013,4,6,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1530,2,0,1833,-13,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,3,0,1631,-7,0,0 +2013,4,14,7,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-4,0,2050,13,0,0 +2013,8,22,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,161,1,1113,162,1,0 +2013,7,7,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1035,-2,0,1630,-12,0,0 +2013,9,29,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,0,0,2220,-6,0,0 +2013,10,18,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1540,51,1,1630,38,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,-4,0,1510,5,0,0 +2013,10,22,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1650,-2,0,1920,-22,0,0 +2013,4,24,3,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,6,0,2105,3,0,0 +2013,4,29,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1405,-5,0,1537,-13,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-3,0,1913,-7,0,0 +2013,7,7,7,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1020,-2,0,0 +2013,8,6,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2048,45,1,2151,41,1,0 +2013,9,5,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,1120,7,0,0 +2013,4,12,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,821,256,1,1106,237,1,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1525,28,1,2055,31,1,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1725,7,0,1910,-13,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,22,1,1138,14,0,0 +2013,8,22,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,915,34,1,1115,34,1,0 +2013,5,12,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1750,2,0,2005,20,1,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1325,33,1,1605,30,1,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,29,1,1300,11,0,0 +2013,4,17,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1620,-4,0,1923,-13,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,2,0,1825,16,1,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,-4,0,1805,-19,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1310,9,0,1425,22,1,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,-9,0,1720,15,1,0 +2013,7,7,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,3,0,1820,-18,0,0 +2013,6,29,6,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,205,1,1555,198,1,0 +2013,9,23,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,835,10,0,1215,-7,0,0 +2013,4,21,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,-5,0,2115,-4,0,0 +2013,10,29,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1013,-6,0,1146,-21,0,0 +2013,4,5,5,EV,10792,Buffalo Niagara International,Buffalo,NY,11042,Cleveland-Hopkins International,Cleveland,OH,627,-5,0,735,-11,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,-1,0,1820,-6,0,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,60,1,1546,42,1,0 +2013,10,25,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1641,36,1,1930,33,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,810,-5,0,1245,-21,0,0 +2013,8,5,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2206,-7,0,2350,-24,0,0 +2013,9,2,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-2,0,1917,-5,0,0 +2013,9,4,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,-7,0,1045,-17,0,0 +2013,7,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,625,-3,0,1245,3,0,0 +2013,4,5,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,1005,12,0,0 +2013,5,31,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-5,0,1104,-21,0,0 +2013,4,22,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,44,1,1756,50,1,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,612,48,1,750,47,1,0 +2013,4,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-6,0,1902,-12,0,0 +2013,4,21,7,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1830,30,1,1940,20,1,0 +2013,10,17,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,649,-14,0,0 +2013,9,9,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,530,-2,0,708,-16,0,0 +2013,4,23,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,0,0,937,-2,0,0 +2013,5,7,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1600,-7,0,1800,-20,0,0 +2013,8,12,1,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,823,12,0,1002,12,0,0 +2013,4,8,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1554,21,1,1859,10,0,0 +2013,9,13,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,855,-1,0,1020,-5,0,0 +2013,8,27,2,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1040,-6,0,1217,-21,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,13,0,1818,17,1,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,840,-4,0,1030,12,0,0 +2013,7,27,6,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,24,1,1640,14,0,0 +2013,9,30,1,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1401,11,0,1535,42,1,0 +2013,7,23,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,6,0,828,17,1,0 +2013,4,28,7,DL,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1525,-1,0,1817,15,1,0 +2013,7,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,-3,0,2340,5,0,0 +2013,8,4,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,7,0,2205,-4,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1245,-3,0,1353,-17,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1301,-4,0,1412,-24,0,0 +2013,8,15,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1636,-7,0,1805,-20,0,0 +2013,8,20,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,950,31,1,1055,21,1,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,7,0,1410,-5,0,0 +2013,10,18,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-4,0,1500,-2,0,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-2,0,1829,33,1,0 +2013,6,26,3,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1720,65,1,1848,81,1,0 +2013,9,27,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,824,-1,0,1019,-23,0,0 +2013,7,2,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1203,18,1,1302,20,1,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1027,-5,0,1302,-14,0,0 +2013,5,11,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1155,93,1,1510,76,1,0 +2013,6,5,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1900,5,0,2100,-8,0,0 +2013,4,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,843,-7,0,923,-5,0,0 +2013,9,10,2,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1333,-20,0,1642,-5,0,0 +2013,10,25,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1925,-1,0,2050,-4,0,0 +2013,6,14,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,-2,0,733,-6,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2035,-3,0,2245,-15,0,0 +2013,8,5,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-9,0,1657,-15,0,0 +2013,6,26,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1200,-4,0,1430,-12,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-8,0,701,-13,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1730,-1,0,2016,-12,0,0 +2013,9,21,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1555,67,1,1715,64,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-3,0,1107,-6,0,0 +2013,5,12,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1155,-4,0,2014,-29,0,0 +2013,8,23,5,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2000,-2,0,2220,-3,0,0 +2013,5,2,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-4,0,1535,-18,0,0 +2013,7,15,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,730,-8,0,1026,-13,0,0 +2013,10,15,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,620,0,0,739,-8,0,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1644,0,0,1817,-12,0,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,600,-2,0,930,-17,0,0 +2013,4,8,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,935,20,1,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,43,1,1800,37,1,0 +2013,10,12,6,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1056,22,1,1318,6,0,0 +2013,10,4,5,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1150,2,0,1340,-11,0,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,18,1,2200,25,1,0 +2013,6,5,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1945,-4,0,2105,-4,0,0 +2013,4,16,2,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2040,-4,0,2355,-14,0,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1420,3,0,1510,10,0,0 +2013,5,9,4,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1800,-4,0,2030,-22,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2210,-2,0,2330,-10,0,0 +2013,10,27,7,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,0,0,2105,-18,0,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,2,0,1230,5,0,0 +2013,8,13,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1735,-2,0,1854,-6,0,0 +2013,4,22,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,852,38,1,1030,30,1,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2145,4,0,15,5,0,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1555,34,1,2154,24,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-1,0,1134,3,0,0 +2013,8,9,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,6,0,1315,10,0,0 +2013,10,9,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,755,7,0,900,-4,0,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,2035,154,1,2235,136,1,0 +2013,6,14,5,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1552,0,0,1649,-3,0,0 +2013,10,10,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,940,16,1,1040,17,1,0 +2013,5,1,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1000,3,0,1755,2,0,0 +2013,8,27,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,2,0,1830,-6,0,0 +2013,9,23,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1730,0,0,2024,-11,0,0 +2013,9,21,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-9,0,1334,-14,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,5,0,1915,-15,0,0 +2013,9,5,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,-12,0,1026,-11,0,0 +2013,6,18,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,720,3,0,750,0,0,0 +2013,6,26,3,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1610,77,1,1918,81,1,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1820,13,0,2050,-5,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1212,-3,0,1503,-12,0,0 +2013,7,24,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,6,0,2035,-3,0,0 +2013,8,17,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-4,0,1120,-20,0,0 +2013,8,8,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1905,18,1,2020,13,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,7,0,1110,-11,0,0 +2013,6,12,3,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1303,-7,0,1419,-18,0,0 +2013,4,28,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,9,0,1125,2,0,0 +2013,6,8,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,24,1,2210,7,0,0 +2013,7,20,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1755,4,0,2030,-4,0,0 +2013,5,28,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,33,1,1030,34,1,0 +2013,8,18,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-6,0,1749,-17,0,0 +2013,6,3,1,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,-10,0,1510,-4,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1425,7,0,1606,5,0,0 +2013,8,9,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-4,0,1309,-3,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1835,-5,0,1925,-21,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,1307,-5,0,1700,-22,0,0 +2013,4,3,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,2030,-5,0,2125,-12,0,0 +2013,9,26,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1250,19,1,1355,26,1,0 +2013,7,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1335,0,0,1500,-12,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1610,-5,0,1619,-3,0,0 +2013,9,17,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1640,20,1,1815,16,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1025,-1,0,1231,-7,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,0,0,1149,-9,0,0 +2013,4,2,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-7,0,1746,-20,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1430,36,1,1535,20,1,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,950,-3,0,1216,-17,0,0 +2013,5,18,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,520,2,0,810,-6,0,0 +2013,9,25,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-11,0,2150,-12,0,0 +2013,10,21,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,-7,0,924,6,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,815,-3,0,1320,-14,0,0 +2013,8,3,6,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2325,19,1,509,2,0,0 +2013,10,2,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1553,-1,0,1947,32,1,0 +2013,7,31,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,17,1,1825,22,1,0 +2013,7,11,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1015,253,1,1157,244,1,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,850,-9,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-4,0,1701,-4,0,0 +2013,7,31,3,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1034,-5,0,1152,-9,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,820,-2,0,1300,2,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1905,10,0,2142,-8,0,0 +2013,7,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1335,-4,0,1500,-8,0,0 +2013,6,17,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,0,0,1750,-2,0,0 +2013,6,14,5,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1825,-7,0,2008,-15,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,81,1,1525,82,1,0 +2013,9,1,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1007,-4,0,1159,-3,0,0 +2013,7,4,4,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,945,-2,0,1145,-2,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1126,2,0,1307,-1,0,0 +2013,10,8,2,YV,14100,Philadelphia International,Philadelphia,PA,14730,Louisville International-Standiford Field,Louisville,KY,2040,-9,0,2241,-36,0,0 +2013,5,3,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1355,-4,0,1559,-6,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2057,2,0,2224,11,0,0 +2013,6,17,1,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1631,29,1,1900,15,1,0 +2013,4,14,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1110,92,1,1400,97,1,0 +2013,9,8,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,900,-2,0,1145,-11,0,0 +2013,8,14,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,17,1,1237,17,1,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1126,4,0,1408,-3,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1005,-5,0,1438,-12,0,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2200,-3,0,2255,-5,0,0 +2013,5,11,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1340,104,1,2200,118,1,0 +2013,7,21,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,845,-8,0,1104,-11,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1845,-1,0,2305,-8,0,0 +2013,4,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1045,32,1,1213,49,1,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1345,19,1,1621,3,0,0 +2013,8,1,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,10,0,2050,15,1,0 +2013,8,8,4,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1540,140,1,1929,136,1,0 +2013,4,8,1,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1153,-7,0,1355,-5,0,0 +2013,4,15,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1420,30,1,2115,16,1,0 +2013,7,22,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,0,0,715,-3,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1900,7,0,2240,1,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1450,-3,0,2145,-6,0,0 +2013,6,21,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,0,0,1025,-16,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2045,11,0,2211,-1,0,0 +2013,8,22,4,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,615,-9,0,1500,1,0,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1410,0,,1553,0,1,1 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1650,90,1,1800,81,1,0 +2013,5,20,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-6,0,812,1,0,0 +2013,7,9,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,800,-22,0,0 +2013,8,21,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,605,0,0,1020,3,0,0 +2013,4,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,24,1,1924,21,1,0 +2013,8,22,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,-2,0,805,1,0,0 +2013,8,23,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1714,50,1,2043,37,1,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1500,36,1,1725,18,1,0 +2013,6,2,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1655,3,0,1710,-6,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,749,-2,0,843,-8,0,0 +2013,4,18,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1310,3,0,2121,23,1,0 +2013,7,23,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,1,0,1305,5,0,0 +2013,5,1,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1630,-6,0,1826,-13,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1700,31,1,1805,40,1,0 +2013,5,11,6,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,735,5,0,1051,-25,0,0 +2013,9,16,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1430,17,1,1629,18,1,0 +2013,10,5,6,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1327,-7,0,1451,-11,0,0 +2013,9,10,2,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,700,-8,0,942,-23,0,0 +2013,10,18,5,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-5,0,823,-14,0,0 +2013,9,16,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-10,0,1755,1,0,0 +2013,8,31,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-5,0,1320,-9,0,0 +2013,7,4,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-5,0,903,-14,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-3,0,2055,-24,0,0 +2013,8,13,2,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,1,0,1340,-2,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,17,1,2200,30,1,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1306,-3,0,1514,-9,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-8,0,1733,1,0,0 +2013,10,7,1,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,44,1,1729,31,1,0 +2013,8,24,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,8,0,1950,14,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1814,45,1,1951,30,1,0 +2013,8,4,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,933,24,1,1235,-5,0,0 +2013,8,9,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-9,0,2100,-12,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,732,-8,0,924,-11,0,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,2020,7,0,2300,-2,0,0 +2013,5,21,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1719,18,1,1738,16,1,0 +2013,10,23,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,6,0,1815,31,1,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2054,-2,0,2314,-20,0,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1320,3,0,1840,-1,0,0 +2013,10,15,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1436,-5,0,1625,-5,0,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-3,0,1300,1,0,0 +2013,9,28,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-7,0,1600,7,0,0 +2013,10,30,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1910,-3,0,2040,-15,0,0 +2013,7,22,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,8,0,725,-3,0,0 +2013,5,8,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,3,0,1655,0,0,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1342,-6,0,1512,-19,0,0 +2013,5,7,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,812,-1,0,909,-1,0,0 +2013,6,6,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1930,-2,0,2323,1,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1630,30,1,1735,35,1,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,-6,0,2145,-14,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,16,1,2200,5,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-4,0,1809,-13,0,0 +2013,8,25,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-9,0,1203,-20,0,0 +2013,7,20,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1315,13,0,1345,10,0,0 +2013,7,13,6,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,31,1,1421,19,1,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,3,0,2215,-10,0,0 +2013,10,21,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,925,-3,0,1045,-16,0,0 +2013,4,7,7,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,2125,-4,0,2350,-2,0,0 +2013,10,25,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-1,0,1604,-3,0,0 +2013,8,12,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,-1,0,750,-6,0,0 +2013,6,6,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,6,0,935,7,0,0 +2013,8,8,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2054,36,1,509,22,1,0 +2013,5,20,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,600,4,0,815,0,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1315,35,1,1625,35,1,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-4,0,2154,-16,0,0 +2013,7,29,1,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,26,1,1530,4,0,0 +2013,9,2,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,855,-1,0,1130,3,0,0 +2013,8,16,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2035,-3,0,2206,-8,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1535,-1,0,1650,-12,0,0 +2013,4,18,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,700,-8,0,946,2,0,0 +2013,6,28,5,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,8,0,1629,18,1,0 +2013,5,15,3,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,652,-28,0,0 +2013,4,29,1,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1008,-11,0,1231,-23,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,-1,0,655,-10,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1040,-4,0,1215,-4,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1630,19,1,1925,13,0,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2005,70,1,2155,61,1,0 +2013,7,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,7,0,1120,35,1,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,852,-18,0,0 +2013,6,1,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1336,-1,0,1522,-16,0,0 +2013,8,11,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2040,239,1,2205,237,1,0 +2013,8,4,7,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1310,-1,0,1425,1,0,0 +2013,6,1,6,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-2,0,1419,-7,0,0 +2013,6,14,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1235,-1,0,1345,-5,0,0 +2013,6,24,1,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,610,-1,0,745,1,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1210,25,1,1410,2,0,0 +2013,5,2,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-9,0,856,1,0,0 +2013,9,8,7,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1430,-6,0,1600,-4,0,0 +2013,10,18,5,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1825,74,1,2045,63,1,0 +2013,7,6,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1910,10,0,2101,-13,0,0 +2013,10,5,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-3,0,1355,-6,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1650,8,0,2035,1,0,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,-5,0,1811,-11,0,0 +2013,5,22,3,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1220,2,0,1335,-2,0,0 +2013,5,25,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1730,-8,0,2036,-29,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,2,0,2205,-2,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1933,-1,0,2245,-13,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2241,-9,0,2332,-8,0,0 +2013,8,28,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-11,0,1715,-4,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,0,0,1507,-9,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,635,-4,0,740,-11,0,0 +2013,8,8,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1610,-4,0,1718,-15,0,0 +2013,9,13,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,-6,0,1525,-15,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,1,0,1247,-5,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1439,1,0,1627,-1,0,0 +2013,10,29,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1045,2,0,1150,1,0,0 +2013,7,9,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1902,-6,0,2140,1,0,0 +2013,6,28,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1300,-5,0,1505,31,1,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,20,1,1310,14,0,0 +2013,10,24,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,-2,0,2017,1,0,0 +2013,7,27,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,900,-3,0,1040,-3,0,0 +2013,7,6,6,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,831,-6,0,1024,-25,0,0 +2013,10,19,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,720,2,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2230,3,0,55,-3,0,0 +2013,4,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,-1,0,1537,-10,0,0 +2013,9,15,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1624,-5,0,1734,-14,0,0 +2013,6,8,6,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,10,0,1510,2,0,0 +2013,9,19,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1545,-6,0,2005,9,0,0 +2013,4,2,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-4,0,920,-12,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1820,3,0,2340,-14,0,0 +2013,5,4,6,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1254,-6,0,1615,-20,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1120,2,0,1324,3,0,0 +2013,8,15,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,752,5,0,1014,-5,0,0 +2013,10,2,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,950,-2,0,1115,3,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1900,4,0,2025,-4,0,0 +2013,4,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,1245,-22,0,0 +2013,8,3,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,7,0,1414,14,0,0 +2013,10,17,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2036,-8,0,2158,-14,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1800,29,1,1910,24,1,0 +2013,9,27,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,0,0,1015,-1,0,0 +2013,10,21,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2149,-2,0,2200,-4,0,0 +2013,5,21,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,720,-6,0,940,-10,0,0 +2013,9,6,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,4,0,615,9,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1810,-2,0,1941,5,0,0 +2013,10,14,1,9E,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1122,25,1,1320,12,0,0 +2013,10,31,4,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,11,0,1957,17,1,0 +2013,10,26,6,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1002,-6,0,1323,-6,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-2,0,2110,-9,0,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,33,1,1036,57,1,0 +2013,7,4,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,850,-18,0,0 +2013,9,24,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1959,-10,0,2159,-21,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1405,7,0,1510,5,0,0 +2013,4,14,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,1,0,1119,5,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1910,-3,0,2050,-28,0,0 +2013,7,8,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,41,1,2250,32,1,0 +2013,6,29,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1715,0,,1825,0,1,1 +2013,4,4,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1955,-1,0,2050,-5,0,0 +2013,5,21,2,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,715,16,1,735,8,0,0 +2013,8,8,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1420,23,1,1555,17,1,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1105,-1,0,1218,7,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,945,-5,0,1209,-19,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,755,-5,0,0 +2013,4,11,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,840,-4,0,1050,-8,0,0 +2013,7,28,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-1,0,2150,-4,0,0 +2013,10,22,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1750,-10,0,2045,-21,0,0 +2013,9,6,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,710,-4,0,810,1,0,0 +2013,5,22,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,15,1,1917,14,0,0 +2013,10,27,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,915,-7,0,1036,-24,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,930,-2,0,1650,-8,0,0 +2013,8,23,5,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,0,0,1903,-14,0,0 +2013,5,29,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1855,-12,0,2149,9,0,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1335,-7,0,1515,-20,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1943,5,0,2150,-23,0,0 +2013,6,16,7,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,-9,0,1515,-6,0,0 +2013,8,17,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,36,1,1131,38,1,0 +2013,5,30,4,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,10,0,1724,3,0,0 +2013,7,12,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,825,0,0,1547,21,1,0 +2013,10,2,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2014,-5,0,2104,-3,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-1,0,808,-5,0,0 +2013,7,26,5,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,5,0,2202,-4,0,0 +2013,8,23,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-9,0,905,-19,0,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,37,1,2155,36,1,0 +2013,6,2,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2135,2,0,2335,3,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,90,1,2240,84,1,0 +2013,8,17,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,815,-6,0,1014,0,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-8,0,1006,-32,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1840,-7,0,44,-18,0,0 +2013,8,25,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-2,0,1650,-6,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,650,-8,0,918,10,0,0 +2013,8,5,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1500,6,0,1510,0,0,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,-5,0,1110,-18,0,0 +2013,5,8,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,134,1,1820,141,1,0 +2013,10,2,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1850,-1,0,2025,3,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,-3,0,1255,-11,0,0 +2013,8,12,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,178,1,1715,188,1,0 +2013,8,4,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1355,-9,0,1739,-23,0,0 +2013,7,13,6,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,23,1,1911,-4,0,0 +2013,10,2,3,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2140,1,0,610,-6,0,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1314,-11,0,1447,-8,0,0 +2013,9,26,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,635,-8,0,820,-16,0,0 +2013,6,3,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,-2,0,1930,7,0,0 +2013,5,1,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1020,3,0,1205,2,0,0 +2013,4,5,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,625,-2,0,755,-11,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,704,1,0,1037,-6,0,0 +2013,10,17,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2002,-12,0,2136,-16,0,0 +2013,10,27,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1932,17,1,2250,10,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1450,6,0,1635,15,1,0 +2013,10,9,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1825,59,1,2340,38,1,0 +2013,5,29,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1010,-2,0,1125,-1,0,0 +2013,7,2,2,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1555,22,1,1740,20,1,0 +2013,5,15,3,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1215,43,1,2100,36,1,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1810,15,1,1925,10,0,0 +2013,5,7,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,-8,0,2115,-16,0,0 +2013,7,23,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-3,0,902,-16,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1250,23,1,1425,24,1,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,836,0,,1415,0,1,1 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,605,-1,0,941,-20,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,17,1,2220,-4,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,713,-4,0,1026,-24,0,0 +2013,4,2,2,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1830,95,1,2116,86,1,0 +2013,8,20,2,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,655,-2,0,810,14,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1700,10,0,1930,-9,0,0 +2013,10,3,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,-6,0,1132,-13,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2050,15,1,2210,-3,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1030,-1,0,1302,20,1,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1510,3,0,1706,-5,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1950,-10,0,2110,1,0,0 +2013,10,4,5,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1325,-7,0,1527,-33,0,0 +2013,7,30,2,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,900,-3,0,1044,0,0,0 +2013,4,30,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,-5,0,1347,10,0,0 +2013,4,26,5,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1920,-13,0,2234,-19,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2000,0,0,2045,-12,0,0 +2013,7,16,2,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,830,-3,0,935,-2,0,0 +2013,4,17,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1000,0,0,1440,-25,0,0 +2013,6,27,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2005,18,1,2120,12,0,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,855,1,0,1030,-4,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2140,41,1,2300,30,1,0 +2013,8,23,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1854,-15,0,2015,-17,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,34,1,1654,105,1,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-4,0,1510,-20,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,705,2,0,1140,-7,0,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1515,0,0,1608,0,0,0 +2013,4,20,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1520,-6,0,1630,-11,0,0 +2013,7,6,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1124,13,0,1510,5,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,15,1,2036,7,0,0 +2013,10,4,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,4,0,1315,-9,0,0 +2013,6,6,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1946,-6,0,2055,-8,0,0 +2013,9,30,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,7,0,1414,3,0,0 +2013,4,29,1,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,845,12,0,1235,-19,0,0 +2013,10,19,6,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1312,1,0,1624,-13,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1349,1,0,1515,47,1,0 +2013,8,2,5,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2003,-5,0,2208,-10,0,0 +2013,10,27,7,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2152,0,0,2236,1,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,66,1,1815,45,1,0 +2013,4,22,1,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,1305,-13,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,604,-3,0,909,-11,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,-5,0,1609,-18,0,0 +2013,5,11,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1825,-1,0,1930,-10,0,0 +2013,8,30,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1630,4,0,1735,-6,0,0 +2013,9,10,2,9E,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,859,4,0,1027,-4,0,0 +2013,8,24,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1231,37,1,1410,42,1,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,728,18,1,925,13,0,0 +2013,9,17,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-3,0,1634,-14,0,0 +2013,4,1,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,0,0,604,-23,0,0 +2013,8,20,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1104,-6,0,1229,-10,0,0 +2013,9,2,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,1255,2,0,0 +2013,6,6,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,26,1,2135,15,1,0 +2013,10,13,7,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1500,0,0,1758,-5,0,0 +2013,4,11,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,0,0,1630,6,0,0 +2013,4,16,2,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,2359,0,,722,0,1,1 +2013,6,7,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,92,1,2047,95,1,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,915,-5,0,1025,-11,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,29,1,1325,31,1,0 +2013,4,19,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1018,-3,0,1132,9,0,0 +2013,10,17,4,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1744,-6,0,1946,-15,0,0 +2013,7,30,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1152,73,1,1238,61,1,0 +2013,7,7,7,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1005,-5,0,1110,-4,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2210,37,1,30,10,0,0 +2013,10,7,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-3,0,906,-19,0,0 +2013,6,2,7,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,1415,-2,0,1717,-13,0,0 +2013,10,13,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1029,-9,0,1230,-2,0,0 +2013,7,25,4,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-9,0,845,-28,0,0 +2013,7,27,6,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1914,0,0,2152,3,0,0 +2013,6,20,4,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,-5,0,1740,-36,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,7,0,1750,-22,0,0 +2013,6,3,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1644,75,1,1815,73,1,0 +2013,4,18,4,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1745,178,1,2020,151,1,0 +2013,9,13,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,69,1,2235,56,1,0 +2013,6,26,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-8,0,649,-4,0,0 +2013,6,15,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,-1,0,720,-2,0,0 +2013,4,7,7,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1211,1,0,1359,-9,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,68,1,1814,56,1,0 +2013,5,27,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1749,-5,0,1824,-1,0,0 +2013,8,16,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1841,-9,0,1945,-8,0,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,14,0,1300,12,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1320,-1,0,1450,-9,0,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,1259,43,1,1657,30,1,0 +2013,7,26,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,26,1,1258,5,0,0 +2013,5,25,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,7,0,1950,5,0,0 +2013,10,3,4,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1055,-6,0,1333,-10,0,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1710,32,1,2300,60,1,0 +2013,4,11,4,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,940,-24,0,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1335,1,0,1445,-1,0,0 +2013,5,17,5,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-2,0,841,-12,0,0 +2013,5,15,3,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-5,0,1128,-40,0,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1508,5,0,2340,1,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1000,3,0,1330,-13,0,0 +2013,5,28,2,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1100,-7,0,1452,-23,0,0 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,633,101,1,745,93,1,0 +2013,8,9,5,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,635,-5,0,847,-1,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1759,-4,0,1853,-7,0,0 +2013,5,8,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,-1,0,1230,6,0,0 +2013,10,15,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,-8,0,2050,-8,0,0 +2013,6,20,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,6,0,1115,-11,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,-1,0,2114,45,1,0 +2013,6,18,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,735,45,1,905,30,1,0 +2013,10,19,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,-2,0,1626,1,0,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,635,-2,0,1230,-16,0,0 +2013,9,8,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-8,0,1550,-1,0,0 +2013,6,3,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,620,4,0,737,6,0,0 +2013,6,12,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1245,17,1,1537,13,0,0 +2013,5,15,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,828,63,1,936,58,1,0 +2013,8,10,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,0,0,935,-2,0,0 +2013,8,12,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1150,25,1,1155,25,1,0 +2013,6,20,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1729,-1,0,1951,-20,0,0 +2013,7,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1900,28,1,2235,32,1,0 +2013,9,13,5,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1737,-5,0,1907,-21,0,0 +2013,6,25,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1535,-4,0,1700,-22,0,0 +2013,5,3,5,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1530,-5,0,1644,-24,0,0 +2013,10,2,3,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2035,-8,0,2220,-3,0,0 +2013,5,31,5,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,4,0,945,26,1,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,854,0,0,1656,-2,0,0 +2013,6,3,1,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,-5,0,1100,0,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-2,0,1440,-19,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2210,10,0,2315,3,0,0 +2013,10,24,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,710,-4,0,930,-1,0,0 +2013,7,19,5,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1720,107,1,1901,0,1,1 +2013,5,18,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1055,-7,0,1120,-18,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1100,16,1,1358,-9,0,0 +2013,4,4,4,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1750,-1,0,2043,-8,0,0 +2013,5,6,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1422,-9,0,1442,-19,0,0 +2013,10,21,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2058,36,1,2225,30,1,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1430,-1,0,2140,-6,0,0 +2013,9,27,5,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,9,0,1430,9,0,0 +2013,9,10,2,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,716,-4,0,1040,7,0,0 +2013,4,14,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,700,-1,0,1000,-13,0,0 +2013,10,28,1,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1225,3,0,2016,19,1,0 +2013,8,22,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,645,-3,0,815,3,0,0 +2013,6,2,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,855,4,0,1039,-11,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1331,-4,0,1500,-16,0,0 +2013,7,8,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,158,1,2243,118,1,0 +2013,8,14,3,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,538,0,0,945,-17,0,0 +2013,9,24,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1501,2,0,1549,6,0,0 +2013,7,10,3,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1246,-6,0,1650,-8,0,0 +2013,8,22,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,26,1,1315,19,1,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2055,22,1,2215,15,1,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1315,-2,0,1438,-5,0,0 +2013,10,25,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1145,-1,0,1424,-7,0,0 +2013,8,2,5,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,957,63,1,1038,64,1,0 +2013,4,9,2,EV,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1615,25,1,1702,27,1,0 +2013,10,6,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,-2,0,2318,4,0,0 +2013,10,29,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,830,9,0,950,-7,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1950,-7,0,2200,-8,0,0 +2013,6,23,7,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1225,-11,0,1415,-28,0,0 +2013,4,13,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,720,-3,0,1050,-25,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,905,2,0,1113,-6,0,0 +2013,10,31,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,900,0,0,1015,2,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,710,0,0,932,-4,0,0 +2013,5,23,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,925,-16,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-4,0,1248,-23,0,0 +2013,8,7,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,957,115,1,1019,117,1,0 +2013,8,20,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1930,0,0,2224,-8,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,707,-4,0,949,-12,0,0 +2013,5,2,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1931,-3,0,2022,-7,0,0 +2013,6,4,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1855,1,0,2215,-14,0,0 +2013,6,1,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1600,-1,0,2025,-15,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,755,2,0,1035,-8,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,815,0,0,1150,-9,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,1,0,2030,25,1,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1108,-1,0,1223,-12,0,0 +2013,10,31,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1750,-5,0,1948,-8,0,0 +2013,8,16,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,0,0,2005,-6,0,0 +2013,10,11,5,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,730,-2,0,830,-9,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1240,0,0,1500,0,0,0 +2013,9,14,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1330,1,0,1438,-17,0,0 +2013,5,21,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,57,1,2015,52,1,0 +2013,7,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1714,18,1,1821,14,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,28,1,2336,39,1,0 +2013,10,30,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,959,-11,0,1126,-15,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1410,4,0,1550,-1,0,0 +2013,5,31,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1804,-2,0,2125,-1,0,0 +2013,6,1,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,845,-4,0,1103,-19,0,0 +2013,7,1,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1159,35,1,1509,46,1,0 +2013,4,11,4,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10,-1,0,800,5,0,0 +2013,5,8,3,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1725,108,1,2005,85,1,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1615,-6,0,1739,-13,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,943,-4,0,1300,-17,0,0 +2013,7,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-1,0,1106,13,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,6,0,2139,3,0,0 +2013,10,29,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,-4,0,1955,-16,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,40,1,1608,47,1,0 +2013,4,19,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,26,1,1551,30,1,0 +2013,7,30,2,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,5,0,2010,2,0,0 +2013,7,19,5,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1440,0,0,1925,-4,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1825,82,1,1915,71,1,0 +2013,9,29,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1415,6,0,1535,1,0,0 +2013,4,22,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-6,0,1955,-15,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,-2,0,1355,7,0,0 +2013,5,13,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-3,0,1747,-15,0,0 +2013,6,2,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,837,-5,0,1110,-31,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2042,16,1,2210,19,1,0 +2013,5,28,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1435,10,0,1635,3,0,0 +2013,7,5,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,336,1,951,332,1,0 +2013,5,10,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-6,0,1355,-6,0,0 +2013,5,22,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1155,20,1,1310,18,1,0 +2013,4,1,1,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1000,0,0,1115,-5,0,0 +2013,10,30,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,805,-3,0,930,-3,0,0 +2013,7,16,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,1025,-14,0,0 +2013,10,5,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,-8,0,1830,-26,0,0 +2013,6,5,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-8,0,1008,-1,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,4,0,1338,-10,0,0 +2013,4,10,3,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1322,-10,0,1420,-12,0,0 +2013,9,16,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,830,36,1,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,0,0,1835,-1,0,0 +2013,6,2,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,5,0,1435,0,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,-1,0,2040,-3,0,0 +2013,8,29,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,2,0,1001,-5,0,0 +2013,10,21,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,96,1,1335,94,1,0 +2013,6,24,1,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,48,1,2308,17,1,0 +2013,8,25,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,800,19,1,929,18,1,0 +2013,6,22,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,945,-5,0,1305,-17,0,0 +2013,8,3,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,11,0,2050,14,0,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2240,-1,0,115,-16,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,3,0,1900,1,0,0 +2013,10,10,4,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1515,66,1,1829,73,1,0 +2013,5,28,2,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1105,-5,0,1245,-7,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,950,1,0,1105,5,0,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1935,-5,0,2059,0,0,0 +2013,10,25,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,18,1,1315,9,0,0 +2013,4,1,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,-8,0,2115,-19,0,0 +2013,4,11,4,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1605,12,0,1805,14,0,0 +2013,5,13,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1800,29,1,1930,17,1,0 +2013,7,31,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1928,-5,0,2103,-8,0,0 +2013,10,23,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1745,0,0,1902,-16,0,0 +2013,4,17,3,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1810,226,1,2010,236,1,0 +2013,9,15,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-12,0,1245,-1,0,0 +2013,5,13,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1805,-2,0,1855,-18,0,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,925,-3,0,1325,-6,0,0 +2013,4,29,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-3,0,855,5,0,0 +2013,4,23,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1623,10,0,1840,20,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1240,-3,0,1447,-10,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1405,0,0,1655,-13,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1736,-3,0,1830,-2,0,0 +2013,8,31,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1455,25,1,1650,6,0,0 +2013,9,6,5,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,13,0,1033,5,0,0 +2013,10,5,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,-8,0,1318,3,0,0 +2013,9,23,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,942,-7,0,0 +2013,4,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2118,-4,0,2333,-6,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,0,0,1541,-11,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1520,28,1,1740,13,0,0 +2013,6,4,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-7,0,1720,-30,0,0 +2013,7,6,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-4,0,726,-8,0,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,-5,0,1102,-18,0,0 +2013,8,3,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1640,-1,0,1850,-19,0,0 +2013,5,23,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,605,0,0,720,-7,0,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1201,-3,0,1314,-7,0,0 +2013,4,20,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-1,0,843,-17,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2100,125,1,2232,110,1,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1950,19,1,2225,13,0,0 +2013,4,4,4,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1720,-4,0,1840,-8,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1000,-4,0,1310,-22,0,0 +2013,9,12,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1029,10,0,1244,40,1,0 +2013,8,22,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,930,-3,0,1110,-13,0,0 +2013,9,24,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,809,3,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,3,0,1808,2,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,-2,0,2254,-14,0,0 +2013,7,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1201,-3,0,1314,-6,0,0 +2013,9,5,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1835,107,1,2035,95,1,0 +2013,7,19,5,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,637,-1,0,744,8,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,-5,0,1530,-11,0,0 +2013,10,7,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1529,62,1,1746,64,1,0 +2013,10,14,1,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1602,5,0,1950,-4,0,0 +2013,6,2,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1610,76,1,1911,62,1,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,824,-2,0,1703,-9,0,0 +2013,6,20,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-10,0,1107,6,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1220,30,1,1335,26,1,0 +2013,9,24,2,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,755,-7,0,855,1,0,0 +2013,6,29,6,UA,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,2157,6,0,2324,-6,0,0 +2013,10,9,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-7,0,915,-27,0,0 +2013,7,3,3,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1225,-2,0,1359,-11,0,0 +2013,6,8,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1445,22,1,1450,18,1,0 +2013,7,4,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-6,0,2140,-8,0,0 +2013,6,12,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,2,0,855,-18,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,730,0,0,935,-5,0,0 +2013,8,21,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1145,4,0,1750,-18,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1900,-2,0,2005,-1,0,0 +2013,10,13,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1714,-1,0,2053,-6,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1005,6,0,1250,0,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,47,1,1725,50,1,0 +2013,9,5,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,25,1,850,8,0,0 +2013,4,25,4,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1940,4,0,2130,-3,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2008,1,0,2133,-3,0,0 +2013,10,28,1,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1935,-10,0,2210,-13,0,0 +2013,6,1,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,0,0,740,-25,0,0 +2013,10,12,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,9,0,558,-20,0,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,26,1,913,13,0,0 +2013,10,4,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2052,2,0,2212,-6,0,0 +2013,7,16,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1130,131,1,1245,117,1,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,600,0,0,1110,-9,0,0 +2013,7,22,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,-1,0,2105,-4,0,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,22,1,1744,44,1,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,1,0,1258,-11,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1953,-1,0,2308,-21,0,0 +2013,8,26,1,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,712,-10,0,825,-22,0,0 +2013,8,12,1,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1830,19,1,2055,11,0,0 +2013,7,17,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-1,0,1645,-8,0,0 +2013,7,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,5,0,2015,-11,0,0 +2013,9,30,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1845,-5,0,2001,-24,0,0 +2013,9,19,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,745,-2,0,835,2,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,910,12,0,1731,14,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,25,1,1500,20,1,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-6,0,858,-17,0,0 +2013,4,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,43,1,1756,40,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1110,13,0,1245,7,0,0 +2013,5,16,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1312,0,,1403,0,1,1 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2104,0,,2347,0,1,1 +2013,6,26,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-5,0,1538,-14,0,0 +2013,10,21,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1827,-2,0,2110,-4,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,44,1,2230,39,1,0 +2013,9,7,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1943,-6,0,2036,56,1,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1900,45,1,2230,36,1,0 +2013,5,15,3,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1255,37,1,2145,22,1,0 +2013,10,22,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1530,3,0,1655,0,0,0 +2013,8,30,5,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1631,-3,0,1945,-31,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2017,14,0,2159,1,0,0 +2013,9,2,1,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1110,2,0,1655,-9,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,-7,0,2331,-16,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,900,9,0,1250,-9,0,0 +2013,9,9,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,622,-1,0,1207,-5,0,0 +2013,5,14,2,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1115,-11,0,1247,-14,0,0 +2013,4,20,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1525,3,0,1650,-6,0,0 +2013,6,21,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,4,0,850,-9,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1750,17,1,1911,7,0,0 +2013,7,31,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,12,0,1816,-1,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1135,-9,0,1415,-17,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,955,14,0,1218,-7,0,0 +2013,6,20,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,925,-3,0,1153,-4,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,800,-4,0,1021,2,0,0 +2013,5,13,1,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,20,1,1600,33,1,0 +2013,4,26,5,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,-5,0,1940,-23,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1047,39,1,1900,9,0,0 +2013,4,7,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1417,-9,0,1456,-10,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1709,-4,0,1844,-2,0,0 +2013,10,8,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1355,-1,0,1530,-10,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1900,20,1,1945,13,0,0 +2013,6,1,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,-4,0,1115,-28,0,0 +2013,9,25,3,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-6,0,919,-9,0,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,4,0,1305,-12,0,0 +2013,4,24,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-2,0,1430,2,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2235,-8,0,5,-22,0,0 +2013,10,19,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-7,0,1547,-6,0,0 +2013,10,19,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,845,-4,0,1251,7,0,0 +2013,9,21,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1159,-9,0,1524,4,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1800,13,0,1935,-3,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,8,0,1157,-10,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,901,-3,0,1124,-16,0,0 +2013,8,28,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1335,19,1,1345,17,1,0 +2013,6,16,7,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,2,0,940,-16,0,0 +2013,9,27,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2125,26,1,30,26,1,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1326,-1,0,1717,-15,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1220,5,0,1650,-5,0,0 +2013,7,26,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,2,0,2302,-4,0,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,820,-7,0,1052,-13,0,0 +2013,8,16,5,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1455,18,1,1720,16,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,0,,2120,0,1,1 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1430,0,0,1530,-9,0,0 +2013,5,28,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1609,12,0,1728,-4,0,0 +2013,8,22,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,952,2,0,1120,12,0,0 +2013,4,30,2,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,-3,0,2359,-9,0,0 +2013,7,10,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1920,0,,2100,0,1,1 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1030,-9,0,0 +2013,9,29,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1610,-8,0,1630,-18,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1000,-4,0,1150,-13,0,0 +2013,8,17,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-4,0,1925,-13,0,0 +2013,10,26,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,635,-4,0,1415,-17,0,0 +2013,7,9,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,828,13,0,1032,-10,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,27,1,1835,28,1,0 +2013,4,15,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1317,15,1,1440,4,0,0 +2013,4,9,2,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1410,-2,0,1645,-3,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,13,0,1833,-1,0,0 +2013,4,12,5,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,71,1,1315,62,1,0 +2013,7,21,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1800,25,1,1850,14,0,0 +2013,10,14,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,745,-8,0,909,11,0,0 +2013,5,13,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,715,-5,0,946,-5,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1700,-2,0,1850,-18,0,0 +2013,5,10,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-6,0,1220,-14,0,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,52,1,2110,32,1,0 +2013,10,8,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,5,0,2045,0,0,0 +2013,7,17,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,3,0,1507,17,1,0 +2013,9,7,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-6,0,724,-3,0,0 +2013,4,14,7,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1912,-8,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,835,-1,0,940,-7,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1030,-5,0,1340,-26,0,0 +2013,6,30,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-2,0,930,8,0,0 +2013,7,11,4,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-4,0,1212,17,1,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1154,2,0,1600,16,1,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1820,0,0,2205,-5,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1020,21,1,1058,14,0,0 +2013,6,12,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1702,15,1,1829,5,0,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1250,-4,0,2131,-16,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1225,10,0,1455,8,0,0 +2013,6,7,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,-5,0,1005,-8,0,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,700,2,0,805,-2,0,0 +2013,9,22,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,5,0,2057,-12,0,0 +2013,4,14,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1826,172,1,2004,192,1,0 +2013,5,17,5,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,-4,0,1653,-9,0,0 +2013,5,7,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-1,0,1615,-4,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,840,17,1,1140,19,1,0 +2013,6,1,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,710,-2,0,835,-6,0,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,-1,0,2305,5,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,15,1,1930,21,1,0 +2013,6,23,7,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-4,0,1608,-20,0,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1850,43,1,2207,33,1,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1045,0,0,1205,-7,0,0 +2013,4,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1730,-2,0,1753,-3,0,0 +2013,8,6,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,6,0,2243,-7,0,0 +2013,9,15,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,605,-3,0,735,-12,0,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,555,-2,0,915,5,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1122,-2,0,1306,-7,0,0 +2013,6,26,3,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1504,0,,1716,0,1,1 +2013,5,15,3,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1430,22,1,1845,-22,0,0 +2013,5,31,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2040,-18,0,2339,-12,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-3,0,1000,-3,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,0,0,1235,-2,0,0 +2013,10,12,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,545,-2,0,933,17,1,0 +2013,7,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1115,-2,0,1204,-6,0,0 +2013,4,11,4,UA,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,915,16,1,1034,10,0,0 +2013,8,25,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1539,-2,0,1813,-6,0,0 +2013,7,24,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,640,-1,0,735,-6,0,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,710,-5,0,1016,-17,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,0,0,2350,-4,0,0 +2013,5,25,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-10,0,1433,-18,0,0 +2013,6,24,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,5,0,2020,22,1,0 +2013,10,24,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1248,-4,0,1450,-27,0,0 +2013,5,20,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,605,-5,0,1215,6,0,0 +2013,5,12,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1325,-1,0,1450,-9,0,0 +2013,7,18,4,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,917,-6,0,1130,-14,0,0 +2013,4,2,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1058,-5,0,1224,-7,0,0 +2013,4,26,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1742,6,0,1929,-5,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,6,0,1355,9,0,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,44,1,1850,58,1,0 +2013,4,9,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2243,-9,0,711,-8,0,0 +2013,7,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1655,0,0,1923,47,1,0 +2013,7,13,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1319,12,0,1826,-2,0,0 +2013,7,31,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,2,0,949,12,0,0 +2013,7,27,6,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,620,-6,0,652,-20,0,0 +2013,7,2,2,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,33,1,1905,13,0,0 +2013,7,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1301,-4,0,1430,-8,0,0 +2013,8,4,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1830,12,0,1930,9,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-1,0,850,5,0,0 +2013,9,7,6,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,905,59,1,1150,92,1,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2155,0,0,2300,-3,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1010,7,0,1725,2,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1510,3,0,1840,17,1,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1705,2,0,2210,-2,0,0 +2013,5,3,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-2,0,2035,-3,0,0 +2013,6,3,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,6,0,1018,4,0,0 +2013,8,25,7,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1640,-8,0,1833,-12,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1217,2,0,1246,-1,0,0 +2013,9,24,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,3,0,1312,9,0,0 +2013,4,22,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,750,-13,0,855,20,1,0 +2013,5,5,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14307,Theodore Francis Green State,Providence,RI,1913,-12,0,2053,-15,0,0 +2013,9,20,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,933,-1,0,1017,-2,0,0 +2013,5,28,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,823,-5,0,1000,-6,0,0 +2013,4,24,3,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,6,0,2121,10,0,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-5,0,818,-34,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2252,0,0,26,-15,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1248,-3,0,1654,-30,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2056,0,0,2330,7,0,0 +2013,7,24,3,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1908,87,1,1940,111,1,0 +2013,6,29,6,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,29,1,1555,23,1,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1840,27,1,2110,26,1,0 +2013,6,4,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1455,4,0,1955,-3,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2100,7,0,2355,5,0,0 +2013,5,22,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2110,67,1,2125,68,1,0 +2013,4,6,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1556,-5,0,1709,-10,0,0 +2013,9,16,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1029,-8,0,1149,-12,0,0 +2013,9,10,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1225,5,0,1540,13,0,0 +2013,7,2,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-6,0,1526,-11,0,0 +2013,7,10,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,17,1,1315,19,1,0 +2013,8,18,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,37,1,2110,22,1,0 +2013,4,4,4,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,725,-2,0,935,-27,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,2,0,1205,-6,0,0 +2013,6,24,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,649,-5,0,903,-15,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2200,-2,0,2330,-29,0,0 +2013,7,26,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-7,0,1215,-6,0,0 +2013,8,13,2,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1230,-2,0,2110,5,0,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2040,-2,0,2155,12,0,0 +2013,10,15,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1807,-17,0,0 +2013,10,11,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1935,1,0,2115,-12,0,0 +2013,9,20,5,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2105,10,0,2213,10,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,810,-2,0,919,-6,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2114,31,1,2355,3,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1430,1,0,1630,-11,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,27,1,1528,21,1,0 +2013,6,1,6,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,904,-4,0,1049,-10,0,0 +2013,7,19,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,10,0,2155,17,1,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,-3,0,1256,-11,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1320,6,0,1620,1,0,0 +2013,8,4,7,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,740,-2,0,835,-14,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1835,13,0,2305,-15,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1210,6,0,1425,-2,0,0 +2013,9,17,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1155,-5,0,1330,-10,0,0 +2013,8,23,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1505,-5,0,1923,-3,0,0 +2013,9,14,6,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,28,1,901,22,1,0 +2013,9,29,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1440,7,0,1715,-14,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,1,0,1500,-14,0,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-3,0,1501,-23,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,35,1,2019,31,1,0 +2013,7,20,6,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1855,24,1,2025,27,1,0 +2013,5,17,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-8,0,1018,1,0,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-3,0,1622,6,0,0 +2013,9,7,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,0,0,1820,4,0,0 +2013,6,3,1,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,740,0,0,920,6,0,0 +2013,4,16,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1305,21,1,1410,17,1,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1730,39,1,2050,34,1,0 +2013,10,31,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,7,0,1605,-1,0,0 +2013,7,5,5,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,-3,0,1950,-8,0,0 +2013,8,23,5,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,1,0,910,-5,0,0 +2013,5,23,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,740,92,1,1032,87,1,0 +2013,9,9,1,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,920,-3,0,1155,2,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2328,83,1,535,62,1,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,3,0,1640,-8,0,0 +2013,8,23,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,-1,0,835,-12,0,0 +2013,5,23,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1545,33,1,1725,32,1,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,705,-7,0,1115,-2,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,20,1,1515,46,1,0 +2013,6,5,3,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1730,1,0,1950,-5,0,0 +2013,9,30,1,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,700,2,0,753,-14,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,7,0,1954,9,0,0 +2013,6,13,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,700,-4,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2055,27,1,2235,17,1,0 +2013,9,28,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-4,0,1609,-7,0,0 +2013,6,26,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2005,110,1,2024,104,1,0 +2013,4,17,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,605,-3,0,940,-6,0,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,741,3,0,1025,6,0,0 +2013,7,7,7,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,550,0,0,800,-8,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,-4,0,1830,-7,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,916,-7,0,1521,-10,0,0 +2013,8,15,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1520,34,1,1618,25,1,0 +2013,10,12,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-7,0,1936,-14,0,0 +2013,5,26,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-7,0,1500,-26,0,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,1155,-10,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1005,0,0,1145,-3,0,0 +2013,7,28,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,14,0,1545,22,1,0 +2013,6,15,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1030,-6,0,1335,-29,0,0 +2013,7,22,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,63,1,2035,49,1,0 +2013,10,9,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1842,32,1,2014,12,0,0 +2013,9,6,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-6,0,832,9,0,0 +2013,9,18,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1827,-7,0,2100,-19,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,47,1,2147,40,1,0 +2013,10,1,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-5,0,1740,-5,0,0 +2013,9,16,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1115,-5,0,1220,-20,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1320,5,0,1505,10,0,0 +2013,9,14,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1124,11,0,1638,4,0,0 +2013,9,9,1,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1625,-8,0,1922,-7,0,0 +2013,8,16,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1905,40,1,2015,45,1,0 +2013,5,8,3,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,21,1,2135,52,1,0 +2013,6,23,7,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,7,0,1411,-1,0,0 +2013,9,19,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,1,0,809,7,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,530,-3,0,820,-3,0,0 +2013,5,6,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,22,1,1830,11,0,0 +2013,4,26,5,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,-10,0,2036,-19,0,0 +2013,10,5,6,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1450,-8,0,1610,-15,0,0 +2013,4,16,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-9,0,747,-3,0,0 +2013,4,16,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,831,1,0,1000,-6,0,0 +2013,9,28,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-9,0,729,-11,0,0 +2013,7,24,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-8,0,809,-9,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-6,0,1715,-6,0,0 +2013,5,6,1,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-8,0,2027,-8,0,0 +2013,10,7,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-3,0,1902,1,0,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2255,-5,0,16,8,0,0 +2013,9,27,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-3,0,1415,-3,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1205,5,0,1400,8,0,0 +2013,5,26,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1221,-6,0,1505,-14,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-8,0,2346,-10,0,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1215,-5,0,1355,-5,0,0 +2013,4,12,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1741,-5,0,1910,-1,0,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1105,0,0,1620,7,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1505,7,0,1757,35,1,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1538,85,1,1855,71,1,0 +2013,8,22,4,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1050,55,1,1905,48,1,0 +2013,10,26,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2001,-2,0,2017,1,0,0 +2013,6,30,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,65,1,1823,66,1,0 +2013,7,20,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1805,-7,0,2014,0,0,0 +2013,5,23,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,624,6,0,737,1,0,0 +2013,7,23,2,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,720,8,0,1000,13,0,0 +2013,7,2,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,-2,0,1720,-9,0,0 +2013,6,5,3,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,9,0,1435,5,0,0 +2013,5,27,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-3,0,1652,-5,0,0 +2013,6,16,7,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,735,147,1,926,144,1,0 +2013,6,20,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,88,1,1735,101,1,0 +2013,10,26,6,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-7,0,1021,-3,0,0 +2013,6,9,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,952,14,0,1230,0,0,0 +2013,9,12,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2125,44,1,547,28,1,0 +2013,4,22,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,55,1,1422,64,1,0 +2013,8,20,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,-4,0,1920,-7,0,0 +2013,6,9,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,840,-4,0,947,17,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1451,28,1,1605,30,1,0 +2013,7,8,1,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1038,76,1,1144,73,1,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-3,0,1435,-14,0,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,14,0,1742,8,0,0 +2013,7,6,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1735,0,0,1905,-8,0,0 +2013,9,17,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,-2,0,1335,-2,0,0 +2013,10,26,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1333,-5,0,1835,0,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1725,-3,0,1953,-19,0,0 +2013,10,30,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,7,0,1640,5,0,0 +2013,4,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1650,-6,0,1830,-21,0,0 +2013,7,23,2,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-17,0,1305,-30,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1315,19,1,1445,8,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-3,0,1815,-16,0,0 +2013,7,5,5,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1338,-8,0,1518,-10,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-1,0,2345,-7,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,111,1,2117,138,1,0 +2013,8,14,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,17,1,1220,27,1,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1956,-2,0,2149,-11,0,0 +2013,7,9,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,0,0,1812,-10,0,0 +2013,8,28,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-3,0,1858,-19,0,0 +2013,10,18,5,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1613,-7,0,1717,-14,0,0 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,157,1,1025,158,1,0 +2013,10,10,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,31,1,1652,11,0,0 +2013,10,3,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1145,-4,0,2016,-32,0,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1055,-2,0,1410,-21,0,0 +2013,8,8,4,WN,10423,Austin - Bergstrom International,Austin,TX,14057,Portland International,Portland,OR,1525,-3,0,1720,-8,0,0 +2013,10,31,4,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1450,-3,0,1820,-11,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1714,-4,0,2112,-19,0,0 +2013,7,29,1,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,1,0,745,18,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-3,0,1016,-10,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,19,1,2034,-6,0,0 +2013,8,11,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,-1,0,2050,-16,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,32,1,2007,17,1,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,8,0,1425,-12,0,0 +2013,6,22,6,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-13,0,500,-12,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,4,0,945,21,1,0 +2013,9,21,6,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1440,-2,0,1535,-4,0,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,0,0,2040,-18,0,0 +2013,5,1,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1022,-8,0,1220,-7,0,0 +2013,6,9,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1925,-3,0,1959,1,0,0 +2013,6,30,7,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1656,2,0,1825,9,0,0 +2013,6,19,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1845,-5,0,2047,-5,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1805,89,1,2024,85,1,0 +2013,6,29,6,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1650,18,1,1825,11,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,1,0,1920,-3,0,0 +2013,8,12,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1413,-10,0,1813,-38,0,0 +2013,6,1,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1824,-3,0,1915,-12,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-9,0,2125,-1,0,0 +2013,9,16,1,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1027,-3,0,1328,-3,0,0 +2013,7,3,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-6,0,825,-18,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2030,84,1,2201,68,1,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-4,0,1115,-8,0,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1710,-2,0,1833,-9,0,0 +2013,8,15,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,-8,0,715,-7,0,0 +2013,7,10,3,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-11,0,1415,4,0,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,710,-1,0,900,-10,0,0 +2013,10,12,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-7,0,840,6,0,0 +2013,9,22,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1020,-1,0,1105,-4,0,0 +2013,7,20,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-3,0,845,-17,0,0 +2013,5,24,5,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1430,-5,0,1818,-17,0,0 +2013,4,11,4,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,802,78,1,928,69,1,0 +2013,5,31,5,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2259,-1,0,659,-7,0,0 +2013,6,25,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,2030,0,0,2320,-4,0,0 +2013,8,6,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1230,-2,0,1355,-7,0,0 +2013,7,2,2,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-3,0,1035,-42,0,0 +2013,10,25,5,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1259,-5,0,1540,-17,0,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1312,-5,0,1427,-3,0,0 +2013,6,7,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-1,0,1355,11,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,-5,0,1033,-24,0,0 +2013,8,25,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-4,0,1500,-18,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1605,0,0,1715,1,0,0 +2013,7,30,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1110,-10,0,1240,23,1,0 +2013,10,20,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-10,0,1635,-4,0,0 +2013,4,21,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-2,0,826,-13,0,0 +2013,7,14,7,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1350,53,1,1910,43,1,0 +2013,4,24,3,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1745,1,0,1910,-5,0,0 +2013,10,1,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1125,46,1,1720,38,1,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1840,2,0,1945,-4,0,0 +2013,6,14,5,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1210,-4,0,1257,9,0,0 +2013,4,13,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,1120,-4,0,0 +2013,4,25,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1815,28,1,2125,20,1,0 +2013,4,29,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1905,4,0,2200,3,0,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,627,-4,0,800,-1,0,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1237,2,0,1434,-7,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1840,13,0,2105,6,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,625,3,0,855,-19,0,0 +2013,5,11,6,FL,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1832,-10,0,2000,-16,0,0 +2013,6,24,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1820,232,1,2117,231,1,0 +2013,8,17,6,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-4,0,1916,16,1,0 +2013,10,16,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-3,0,1033,17,1,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-3,0,1450,-13,0,0 +2013,5,10,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,600,1,0,725,-11,0,0 +2013,10,21,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1000,8,0,1307,5,0,0 +2013,8,29,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,-3,0,1814,-17,0,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,6,0,1148,4,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,8,0,2300,10,0,0 +2013,10,12,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1245,-3,0,1345,-12,0,0 +2013,10,4,5,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,-4,0,1710,-5,0,0 +2013,10,10,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1815,7,0,2055,-11,0,0 +2013,5,13,1,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1700,-2,0,2030,-15,0,0 +2013,7,19,5,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1740,-4,0,1858,30,1,0 +2013,8,1,4,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,11,0,1818,24,1,0 +2013,10,16,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,959,-6,0,1132,-1,0,0 +2013,4,1,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,-7,0,2057,31,1,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2155,120,1,43,138,1,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1730,-3,0,1922,-14,0,0 +2013,10,15,2,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1505,-6,0,1834,-20,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,21,1,1715,15,1,0 +2013,9,21,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,829,5,0,1630,-6,0,0 +2013,4,21,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1955,-1,0,2310,-12,0,0 +2013,9,7,6,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,649,-7,0,1109,5,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,33,1,1850,17,1,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,11,0,1920,6,0,0 +2013,6,17,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,904,-7,0,1052,-9,0,0 +2013,6,10,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1635,110,1,1655,102,1,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1810,-2,0,1910,-4,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1802,-4,0,2007,-47,0,0 +2013,5,6,1,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1555,12,0,1708,-1,0,0 +2013,8,3,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1258,4,0,1623,22,1,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1310,-3,0,1620,-10,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1435,13,0,1825,1,0,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2015,0,0,2125,-18,0,0 +2013,10,21,1,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1852,-1,0,2025,-8,0,0 +2013,8,19,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1140,6,0,1250,5,0,0 +2013,10,14,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,623,2,0,800,-9,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-5,0,1950,3,0,0 +2013,6,6,4,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-6,0,1132,23,1,0 +2013,8,17,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,85,1,1812,78,1,0 +2013,10,6,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,16,1,2117,9,0,0 +2013,7,16,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,800,2,0,1016,-1,0,0 +2013,6,6,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2051,-11,0,2215,-25,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,-4,0,2320,-6,0,0 +2013,10,12,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1015,-5,0,1242,3,0,0 +2013,8,3,6,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,1,0,1655,-17,0,0 +2013,9,15,7,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1448,-8,0,1601,-10,0,0 +2013,9,23,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,841,-4,0,1029,-8,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-4,0,2237,45,1,0 +2013,8,19,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2100,36,1,507,52,1,0 +2013,4,7,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,515,28,1,840,12,0,0 +2013,6,17,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,925,-9,0,1215,-13,0,0 +2013,5,17,5,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-11,0,1044,-20,0,0 +2013,5,26,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1258,6,0,1458,1,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1925,12,0,2040,0,0,0 +2013,5,3,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-8,0,1805,-27,0,0 +2013,7,8,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-3,0,1035,-14,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1435,-9,0,1610,-31,0,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1220,-1,0,1452,0,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,715,43,1,925,40,1,0 +2013,4,11,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1631,-3,0,1920,-14,0,0 +2013,7,31,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,2,0,1800,14,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1547,-5,0,2129,-4,0,0 +2013,9,12,4,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,821,-15,0,0 +2013,5,18,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-10,0,1006,-13,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,11,0,1520,3,0,0 +2013,6,29,6,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2147,-7,0,554,-8,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1920,-5,0,2049,-14,0,0 +2013,10,1,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-1,0,1818,-24,0,0 +2013,7,7,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,10,0,739,0,0,0 +2013,7,16,2,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,-5,0,2055,2,0,0 +2013,7,22,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1529,10,0,1815,15,1,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1635,9,0,1725,9,0,0 +2013,10,15,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,6,0,1730,3,0,0 +2013,8,23,5,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,905,-1,0,1020,-4,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,1,0,1534,-6,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,2,0,1534,-4,0,0 +2013,5,19,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1510,75,1,1715,79,1,0 +2013,9,11,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,13,0,2123,14,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,26,1,5,33,1,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2045,-5,0,2245,-7,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1127,-1,0,1300,-1,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2045,-9,0,2211,-17,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1120,0,,1530,0,1,1 +2013,6,7,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,-8,0,2042,15,1,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,-1,0,2000,12,0,0 +2013,10,2,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-10,0,821,-14,0,0 +2013,6,19,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,0,0,2141,-11,0,0 +2013,9,13,5,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,700,1,0,846,-5,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,-9,0,2018,-20,0,0 +2013,9,3,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-2,0,1741,7,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,16,1,2000,18,1,0 +2013,4,2,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,-7,0,1820,-20,0,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,620,1,0,710,-3,0,0 +2013,6,25,2,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,645,38,1,850,16,1,0 +2013,5,17,5,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-3,0,1510,3,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2150,32,1,2315,50,1,0 +2013,8,20,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1935,10,0,54,2,0,0 +2013,5,16,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,-2,0,2103,-5,0,0 +2013,4,28,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,29,1,1452,29,1,0 +2013,9,18,3,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,8,0,1409,8,0,0 +2013,9,29,7,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,938,-7,0,1129,-5,0,0 +2013,4,15,1,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1127,5,0,1340,0,0,0 +2013,8,6,2,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1355,-6,0,1520,-17,0,0 +2013,9,3,2,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,4,0,1545,-11,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,-3,0,1500,-7,0,0 +2013,5,23,4,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,715,-1,0,955,0,0,0 +2013,10,3,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-11,0,543,-6,0,0 +2013,8,7,3,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,11,0,728,7,0,0 +2013,8,6,2,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,946,-2,0,1137,3,0,0 +2013,10,24,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-3,0,2020,-15,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,855,-3,0,1337,-3,0,0 +2013,9,13,5,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-8,0,1011,-8,0,0 +2013,10,19,6,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,832,89,1,954,87,1,0 +2013,5,10,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1648,-3,0,1918,-21,0,0 +2013,5,11,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1450,-4,0,1545,-17,0,0 +2013,9,22,7,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1120,-3,0,1230,9,0,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1041,6,0,1600,-1,0,0 +2013,7,5,5,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,50,1,2139,41,1,0 +2013,7,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1125,0,0,1405,-5,0,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1131,-4,0,1256,-17,0,0 +2013,5,15,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,53,1,2215,42,1,0 +2013,6,9,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,12,0,1625,35,1,0 +2013,8,17,6,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,-2,0,1415,-8,0,0 +2013,7,29,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,0,0,2257,11,0,0 +2013,7,14,7,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1905,-2,0,10,4,0,0 +2013,4,19,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,755,-1,0,816,23,1,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,1,0,1105,-2,0,0 +2013,7,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1955,34,1,2246,51,1,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,745,-1,0,925,21,1,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,-2,0,2114,-11,0,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1455,-2,0,2320,-12,0,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2119,28,1,2225,37,1,0 +2013,7,19,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,64,1,2025,63,1,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,0,0,1118,1,0,0 +2013,7,15,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1045,-2,0,1200,-2,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1958,-3,0,2203,-24,0,0 +2013,6,15,6,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,905,25,1,1051,13,0,0 +2013,7,11,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,935,18,1,1105,32,1,0 +2013,4,6,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,-9,0,1612,-18,0,0 +2013,8,20,2,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1615,22,1,1825,20,1,0 +2013,7,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,29,1,1935,57,1,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2120,20,1,2330,13,0,0 +2013,7,27,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,27,1,1405,23,1,0 +2013,10,25,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2254,-6,0,2359,3,0,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,-5,0,1302,-5,0,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,5,0,1031,-1,0,0 +2013,4,27,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1150,-1,0,1303,-18,0,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1915,-10,0,2250,-32,0,0 +2013,9,11,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,5,0,1630,-3,0,0 +2013,4,28,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,12,0,1733,25,1,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1120,-4,0,1250,-21,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1732,-4,0,1925,-16,0,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1130,0,0,1300,-12,0,0 +2013,7,24,3,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1330,5,0,1705,-12,0,0 +2013,7,21,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1134,294,1,1305,287,1,0 +2013,7,2,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1033,-1,0,1405,-8,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-1,0,1844,-4,0,0 +2013,5,8,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1700,2,0,2044,-46,0,0 +2013,8,17,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-9,0,1556,-19,0,0 +2013,8,11,7,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1835,5,0,2048,9,0,0 +2013,6,17,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,1,0,2235,-12,0,0 +2013,8,10,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1448,-2,0,1655,-14,0,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,530,-7,0,806,-21,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1732,10,0,1925,3,0,0 +2013,6,21,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1531,-2,0,1657,-13,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,4,0,1624,14,0,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1120,30,1,1417,30,1,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1045,-8,0,1210,-10,0,0 +2013,5,10,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,629,-6,0,839,-28,0,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,-4,0,1425,-11,0,0 +2013,6,13,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1005,77,1,0 +2013,6,11,2,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1510,8,0,1843,-2,0,0 +2013,10,28,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1122,4,0,1628,-5,0,0 +2013,9,24,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1111,1,0,1336,4,0,0 +2013,4,18,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1255,11,0,1400,8,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,81,1,1805,76,1,0 +2013,9,17,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,50,1,2357,37,1,0 +2013,6,16,7,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,6,0,1820,-14,0,0 +2013,6,23,7,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1210,0,,1451,0,1,1 +2013,6,5,3,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,837,-4,0,1013,-12,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1725,121,1,2137,113,1,0 +2013,7,30,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,80,1,1025,89,1,0 +2013,5,6,1,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1711,16,1,1923,-4,0,0 +2013,8,5,1,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1946,-4,0,2133,-11,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1135,13,0,1435,-10,0,0 +2013,10,23,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-6,0,743,-9,0,0 +2013,8,26,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1822,-5,0,1955,-15,0,0 +2013,9,15,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,11,0,1922,5,0,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,720,-3,0,1055,-16,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,805,34,1,845,28,1,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,-6,0,1303,7,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1940,57,1,20,49,1,0 +2013,7,26,5,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1654,-2,0,1730,-3,0,0 +2013,5,27,1,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,640,-3,0,849,-5,0,0 +2013,6,10,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,82,1,2155,87,1,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,855,6,0,1004,6,0,0 +2013,6,17,1,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1959,-2,0,2236,-16,0,0 +2013,9,23,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1745,-7,0,1935,-16,0,0 +2013,9,23,1,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,-7,0,736,0,0,0 +2013,4,14,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,855,-1,0,910,-3,0,0 +2013,6,17,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,-1,0,2005,70,1,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1430,23,1,1800,17,1,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,805,-3,0,1240,-4,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2130,8,0,2340,5,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,858,0,0,1201,12,0,0 +2013,4,2,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2140,-2,0,2255,-15,0,0 +2013,8,2,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1015,42,1,1245,56,1,0 +2013,8,14,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1210,20,1,1655,8,0,0 +2013,9,30,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1848,-1,0,2015,-13,0,0 +2013,10,6,7,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1704,-9,0,1919,-26,0,0 +2013,5,12,7,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,-2,0,2118,-11,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,730,-7,0,1035,-16,0,0 +2013,9,8,7,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-11,0,1930,-12,0,0 +2013,7,14,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1655,10,0,1710,-1,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,-3,0,1740,-19,0,0 +2013,5,3,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1710,0,,1758,0,1,1 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,3,0,1524,3,0,0 +2013,9,12,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,545,-5,0,933,-5,0,0 +2013,8,29,4,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-6,0,705,-20,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1535,39,1,2015,38,1,0 +2013,6,6,4,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1515,-6,0,1740,-27,0,0 +2013,4,24,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,-9,0,1555,-9,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1240,5,0,1615,3,0,0 +2013,10,25,5,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-6,0,1045,-17,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1611,-2,0,1811,-15,0,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1008,-4,0,1142,-12,0,0 +2013,4,2,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1325,-4,0,1525,4,0,0 +2013,6,2,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,24,1,1415,26,1,0 +2013,7,24,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1155,0,0,1310,41,1,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,-2,0,1738,-2,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,925,6,0,1100,-8,0,0 +2013,4,9,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-8,0,2130,-13,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1759,-1,0,2053,-1,0,0 +2013,10,25,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1733,-4,0,2012,-22,0,0 +2013,10,28,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1807,58,1,1948,49,1,0 +2013,6,4,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-6,0,1115,-9,0,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,700,-6,0,815,-24,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-6,0,1300,-9,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,555,4,0,925,18,1,0 +2013,6,25,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,128,1,1550,122,1,0 +2013,9,20,5,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,750,-2,0,957,-14,0,0 +2013,6,26,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,36,1,1844,67,1,0 +2013,6,22,6,OO,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1753,0,0,2132,-8,0,0 +2013,6,13,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1559,-7,0,1628,-3,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1655,24,1,1929,20,1,0 +2013,6,5,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,510,-7,0,647,-9,0,0 +2013,9,1,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-3,0,1850,-33,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-5,0,2346,-14,0,0 +2013,6,5,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-6,0,1857,-15,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1340,-6,0,1517,-18,0,0 +2013,6,12,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,800,-4,0,910,-22,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1015,7,0,1140,-10,0,0 +2013,9,7,6,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,-6,0,1844,3,0,0 +2013,4,19,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-4,0,2045,-11,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,910,-1,0,1505,-16,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1025,12,0,1400,-10,0,0 +2013,9,10,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-10,0,1839,-25,0,0 +2013,7,15,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,-7,0,2243,8,0,0 +2013,8,19,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,4,0,814,-8,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,-3,0,1506,-15,0,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,15,1,1428,9,0,0 +2013,6,26,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,2,0,1934,-5,0,0 +2013,7,24,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,645,-5,0,940,-9,0,0 +2013,4,22,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-9,0,1315,-9,0,0 +2013,5,21,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1750,-1,0,2346,-20,0,0 +2013,10,10,4,EV,12953,LaGuardia,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,845,-4,0,1030,-15,0,0 +2013,8,19,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,5,0,1920,-1,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,0,0,1524,-4,0,0 +2013,10,12,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1435,-3,0,1555,-15,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,9,0,1326,10,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1420,145,1,1520,144,1,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,7,0,850,-1,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2018,-8,0,2135,2,0,0 +2013,4,26,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1330,122,1,1519,122,1,0 +2013,9,28,6,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,34,1,1950,13,0,0 +2013,7,2,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,950,-2,0,1152,6,0,0 +2013,6,20,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,-12,0,1610,-15,0,0 +2013,5,28,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,935,7,0,1023,16,1,0 +2013,10,27,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1635,12,0,1742,-8,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1350,31,1,1515,26,1,0 +2013,5,24,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,-9,0,1224,-16,0,0 +2013,4,4,4,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1720,0,0,1857,-3,0,0 +2013,6,25,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,31,1,1505,19,1,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2025,69,1,2130,62,1,0 +2013,6,29,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1725,50,1,1843,43,1,0 +2013,4,11,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1054,15,1,1309,6,0,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,-2,0,1422,-12,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1105,-3,0,1442,-14,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1030,-3,0,1155,-3,0,0 +2013,5,5,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,15,1,1530,39,1,0 +2013,4,23,2,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-2,0,950,-3,0,0 +2013,8,21,3,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-2,0,1615,-9,0,0 +2013,9,6,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-6,0,2043,-2,0,0 +2013,6,26,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,905,-5,0,1225,-18,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1137,-3,0,1313,-6,0,0 +2013,9,23,1,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1615,102,1,1825,99,1,0 +2013,5,13,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1615,-4,0,1758,-22,0,0 +2013,6,8,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,15,1,1320,3,0,0 +2013,6,28,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,55,1,1015,91,1,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,959,-3,0,1159,7,0,0 +2013,6,12,3,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,900,-5,0,1213,-16,0,0 +2013,5,13,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1030,-5,0,1210,-25,0,0 +2013,4,21,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1421,68,1,1515,71,1,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1640,3,0,2000,-7,0,0 +2013,10,25,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1715,41,1,1820,27,1,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1900,33,1,2302,9,0,0 +2013,9,22,7,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,620,172,1,850,171,1,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1640,-1,0,2020,-2,0,0 +2013,8,1,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1501,-3,0,1553,-10,0,0 +2013,7,24,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,16,1,1540,12,0,0 +2013,5,21,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,955,3,0,1125,2,0,0 +2013,9,24,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2055,18,1,2220,13,0,0 +2013,4,1,1,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1105,-3,0,1445,-4,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,647,-7,0,759,-14,0,0 +2013,5,16,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2152,10,0,2259,12,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,38,1,2359,37,1,0 +2013,4,26,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1740,-1,0,1905,-12,0,0 +2013,10,25,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,750,0,0,850,11,0,0 +2013,10,21,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1535,14,0,1715,8,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,-5,0,1459,24,1,0 +2013,8,8,4,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,545,-6,0,715,-12,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,64,1,2110,39,1,0 +2013,10,18,5,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1905,6,0,2131,-3,0,0 +2013,8,10,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1859,82,1,2213,79,1,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,115,-2,0,810,3,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,51,1,1050,56,1,0 +2013,10,10,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-11,0,1245,-11,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1405,13,0,1759,4,0,0 +2013,5,2,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,11,0,1850,5,0,0 +2013,10,8,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,10,0,1730,4,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-5,0,2206,-8,0,0 +2013,8,29,4,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1043,-4,0,1434,-6,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-5,0,1831,-8,0,0 +2013,10,30,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1750,-10,0,2025,-2,0,0 +2013,4,9,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-8,0,1520,-15,0,0 +2013,5,5,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1738,-10,0,0 +2013,10,14,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,825,-10,0,1026,-7,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1635,17,1,1835,11,0,0 +2013,5,12,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1220,-6,0,1340,-14,0,0 +2013,9,8,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-7,0,1230,-15,0,0 +2013,7,10,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-2,0,1442,121,1,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,0,0,1200,-4,0,0 +2013,8,5,1,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,-5,0,2056,3,0,0 +2013,10,27,7,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1829,-12,0,1939,-18,0,0 +2013,10,5,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,802,-5,0,933,-13,0,0 +2013,8,30,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1857,-9,0,2044,-18,0,0 +2013,5,11,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,-7,0,1035,-3,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,919,-16,0,0 +2013,8,2,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,914,-6,0,1059,-17,0,0 +2013,5,20,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,35,55,1,605,47,1,0 +2013,7,18,4,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1232,-1,0,1444,-14,0,0 +2013,7,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,810,-6,0,1115,9,0,0 +2013,6,28,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,3,0,1800,3,0,0 +2013,7,9,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,0,0,2135,7,0,0 +2013,7,13,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2051,11,0,2326,-12,0,0 +2013,4,11,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-2,0,1918,-4,0,0 +2013,4,18,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1730,7,0,1835,19,1,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1735,15,1,1900,9,0,0 +2013,10,13,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,1,0,1835,-3,0,0 +2013,5,23,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-4,0,1017,-6,0,0 +2013,4,23,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-6,0,1015,5,0,0 +2013,9,18,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,625,-5,0,720,-5,0,0 +2013,6,26,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,915,-2,0,1035,-11,0,0 +2013,7,1,1,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1740,42,1,1915,42,1,0 +2013,6,9,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1644,-7,0,1751,-15,0,0 +2013,5,22,3,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1233,-6,0,1445,-6,0,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2259,-2,0,107,-18,0,0 +2013,5,12,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,-4,0,2210,-2,0,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1915,34,1,2049,38,1,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1755,2,0,1933,1,0,0 +2013,4,30,2,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,630,-5,0,840,-12,0,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1932,-7,0,2305,-23,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,6,0,2000,11,0,0 +2013,4,20,6,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-6,0,1940,-6,0,0 +2013,6,26,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,8,0,1535,-1,0,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1040,-9,0,1501,-11,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1117,44,1,1302,42,1,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1404,-7,0,1540,-26,0,0 +2013,9,19,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1540,19,1,1655,11,0,0 +2013,6,1,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1535,4,0,2105,-4,0,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1620,108,1,52,89,1,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,755,0,0,1135,-6,0,0 +2013,4,27,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2340,-1,0,710,-14,0,0 +2013,7,17,3,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,625,5,0,940,5,0,0 +2013,7,19,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,822,-5,0,1119,-23,0,0 +2013,5,13,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1444,-8,0,1619,-15,0,0 +2013,9,9,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2024,4,0,2133,-3,0,0 +2013,6,6,4,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1130,-2,0,1350,-8,0,0 +2013,10,29,2,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,917,-10,0,1037,-6,0,0 +2013,5,18,6,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1240,-1,0,1740,-8,0,0 +2013,9,26,4,9E,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-4,0,2029,-8,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1500,2,0,1648,-9,0,0 +2013,10,31,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,956,-10,0,1123,-12,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2004,15,1,2249,27,1,0 +2013,8,13,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1425,158,1,1544,156,1,0 +2013,5,12,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2225,-4,0,2351,-12,0,0 +2013,5,31,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1103,-7,0,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,-1,0,1900,9,0,0 +2013,8,30,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,613,-6,0,1359,8,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-5,0,1240,-2,0,0 +2013,4,9,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,27,1,2045,42,1,0 +2013,8,22,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1114,-2,0,1442,-23,0,0 +2013,9,26,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1115,3,0,1245,-14,0,0 +2013,4,29,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1015,-6,0,1526,-1,0,0 +2013,7,24,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,834,-3,0,909,-5,0,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,2200,4,0,513,-13,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,0,0,745,-8,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,0,0,1525,-13,0,0 +2013,7,18,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,22,1,2145,28,1,0 +2013,9,22,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-6,0,1015,-17,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,900,-2,0,950,1,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1741,5,0,1834,8,0,0 +2013,4,25,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-1,0,1920,19,1,0 +2013,9,30,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,707,-10,0,1042,-23,0,0 +2013,10,28,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1854,-13,0,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,620,33,1,931,21,1,0 +2013,6,5,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-7,0,1818,1,0,0 +2013,4,16,2,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,745,-8,0,1025,-32,0,0 +2013,10,19,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-2,0,1556,17,1,0 +2013,10,21,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,3,0,1925,-3,0,0 +2013,4,16,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,847,-7,0,1031,-2,0,0 +2013,9,20,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2320,-5,0,750,-22,0,0 +2013,5,18,6,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-7,0,1305,-30,0,0 +2013,8,25,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-2,0,1006,2,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-4,0,1429,-22,0,0 +2013,9,25,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,901,-15,0,0 +2013,6,15,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,721,-5,0,936,-13,0,0 +2013,8,22,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,745,14,0,1036,14,0,0 +2013,9,1,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-5,0,1053,0,0,0 +2013,5,22,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,6,0,1630,9,0,0 +2013,8,20,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-10,0,918,-8,0,0 +2013,4,12,5,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1345,38,1,1635,19,1,0 +2013,10,28,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1320,10,0,1528,0,0,0 +2013,6,27,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-11,0,1845,59,1,0 +2013,6,26,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,905,-8,0,1249,-14,0,0 +2013,7,7,7,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,50,1,1955,36,1,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,-1,0,1255,-12,0,0 +2013,4,13,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,-2,0,920,-3,0,0 +2013,8,5,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,11,0,1829,1,0,0 +2013,10,1,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-8,0,1115,-17,0,0 +2013,8,2,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1852,52,1,2135,45,1,0 +2013,10,9,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1616,19,1,1725,4,0,0 +2013,5,2,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,730,517,1,821,505,1,0 +2013,6,25,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,2017,-7,0,2158,4,0,0 +2013,6,24,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,948,14,0,1040,0,0,0 +2013,10,28,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,0,0,1805,-7,0,0 +2013,5,31,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,825,-3,0,1020,-26,0,0 +2013,9,22,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1532,-4,0,1806,-8,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,1,0,2120,-24,0,0 +2013,10,30,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2040,2,0,2205,-10,0,0 +2013,4,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,805,-1,0,930,-9,0,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1135,4,0,1310,1,0,0 +2013,8,14,3,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,19,1,1917,27,1,0 +2013,6,15,6,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,-4,0,2355,-7,0,0 +2013,7,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-6,0,1705,26,1,0 +2013,8,1,4,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1936,94,1,2155,84,1,0 +2013,7,4,4,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1150,-6,0,1755,-9,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,-4,0,1905,-12,0,0 +2013,4,24,3,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,-5,0,759,-22,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,905,20,1,1032,7,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,2,0,1605,-16,0,0 +2013,6,27,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,30,1,1425,29,1,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1040,-2,0,1135,-7,0,0 +2013,5,2,4,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,1,0,812,-21,0,0 +2013,7,21,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-9,0,804,32,1,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,2,0,920,1,0,0 +2013,10,14,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1545,52,1,1920,24,1,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1145,134,1,1305,129,1,0 +2013,10,6,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,650,3,0,710,-7,0,0 +2013,5,7,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-5,0,1505,-20,0,0 +2013,4,25,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,930,-6,0,1045,-8,0,0 +2013,7,12,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1931,55,1,2145,49,1,0 +2013,10,1,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,27,1,857,5,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,20,1,1035,22,1,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1245,2,0,1845,50,1,0 +2013,4,20,6,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1435,-8,0,1603,-18,0,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,0,0,1738,28,1,0 +2013,8,2,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1350,-3,0,1644,-22,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,1,0,1155,-11,0,0 +2013,7,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,1,0,1810,0,0,0 +2013,10,31,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-3,0,1314,-5,0,0 +2013,4,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,0,0,1523,-18,0,0 +2013,10,15,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1556,-16,0,0 +2013,6,23,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2310,38,1,710,26,1,0 +2013,5,4,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1705,-3,0,1806,-12,0,0 +2013,10,26,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,2,0,1229,13,0,0 +2013,10,15,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1035,8,0,1150,-1,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,730,3,0,1159,-2,0,0 +2013,5,5,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1210,0,0,1230,15,1,0 +2013,8,6,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1530,8,0,1815,-14,0,0 +2013,9,19,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-2,0,1224,-11,0,0 +2013,9,22,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1225,5,0,1535,8,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1355,63,1,1755,52,1,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,945,-3,0,1105,-6,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,47,1,1010,28,1,0 +2013,4,8,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,43,1,2045,50,1,0 +2013,10,10,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-3,0,901,-2,0,0 +2013,9,30,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,740,-13,0,0 +2013,8,8,4,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,1,0,1340,12,0,0 +2013,5,31,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1225,67,1,1355,56,1,0 +2013,5,8,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,2000,19,1,2320,27,1,0 +2013,7,14,7,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,1025,8,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2130,13,0,22,82,1,0 +2013,7,15,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,750,14,0,1005,21,1,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,934,-2,0,1213,-15,0,0 +2013,5,22,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1520,-7,0,1636,-14,0,0 +2013,7,12,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,705,-5,0,817,-5,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,1,0,945,-3,0,0 +2013,10,15,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-5,0,2000,13,0,0 +2013,8,22,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-3,0,1340,-9,0,0 +2013,6,21,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,20,1,1209,16,1,0 +2013,6,8,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1344,-9,0,1641,-7,0,0 +2013,7,15,1,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1043,-5,0,1453,-1,0,0 +2013,9,16,1,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2029,3,0,2146,-3,0,0 +2013,10,5,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1015,-4,0,1250,-12,0,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,935,2,0,1030,12,0,0 +2013,6,1,6,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,12,0,1745,5,0,0 +2013,4,30,2,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-4,0,1015,4,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2220,-4,0,2354,2,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-2,0,900,-12,0,0 +2013,8,4,7,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,845,-12,0,1014,10,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,-1,0,2222,-17,0,0 +2013,4,27,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1333,13,0,1515,-1,0,0 +2013,6,1,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,7,0,1346,1,0,0 +2013,7,15,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1109,-2,0,1228,-7,0,0 +2013,5,6,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-1,0,1041,-13,0,0 +2013,4,12,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,31,1,1755,24,1,0 +2013,9,1,7,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,930,-5,0,1740,-15,0,0 +2013,7,7,7,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,15,1,1130,9,0,0 +2013,5,21,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1534,21,1,1633,20,1,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1500,77,1,1830,59,1,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,730,-4,0,1103,-20,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1359,1,0,1740,13,0,0 +2013,6,21,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1710,-4,0,1756,15,1,0 +2013,6,4,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1108,-11,0,0 +2013,10,18,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1105,-4,0,1205,-4,0,0 +2013,7,23,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,610,-5,0,805,-6,0,0 +2013,7,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,5,0,2305,9,0,0 +2013,4,21,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1120,-2,0,0 +2013,7,11,4,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1540,0,0,1825,-30,0,0 +2013,7,3,3,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1525,1,0,1757,4,0,0 +2013,6,8,6,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1653,15,1,1829,22,1,0 +2013,7,25,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-7,0,1035,-3,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1730,-8,0,2014,-14,0,0 +2013,6,5,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1215,-6,0,1334,-13,0,0 +2013,5,16,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,608,-4,0,748,5,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,1,0,1335,-10,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,1,0,1416,9,0,0 +2013,4,10,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,75,1,1930,89,1,0 +2013,9,23,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,5,0,712,7,0,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,6,0,1830,-1,0,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1930,-1,0,2234,-44,0,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1120,-5,0,1239,-1,0,0 +2013,8,12,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1315,-1,0,1450,-7,0,0 +2013,7,5,5,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1245,208,1,1825,211,1,0 +2013,6,10,1,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-10,0,906,-16,0,0 +2013,9,2,1,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1230,5,0,1720,4,0,0 +2013,4,11,4,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,2050,0,,2224,0,1,1 +2013,8,14,3,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,735,-4,0,1005,7,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,736,-3,0,854,-17,0,0 +2013,8,16,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,615,-4,0,730,6,0,0 +2013,4,22,1,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,0,0,1422,-8,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-5,0,1021,-6,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1530,135,1,2115,119,1,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-1,0,1020,-7,0,0 +2013,6,25,2,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1210,12,0,1356,15,1,0 +2013,5,13,1,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,-2,0,1025,-1,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,50,1,2300,52,1,0 +2013,7,30,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,753,-22,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,3,0,1450,-12,0,0 +2013,9,13,5,EV,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,825,-7,0,950,7,0,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1955,113,1,2115,103,1,0 +2013,10,16,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-7,0,806,-18,0,0 +2013,4,4,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1105,-4,0,1240,-13,0,0 +2013,5,12,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-3,0,1855,-16,0,0 +2013,5,28,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,835,-3,0,1235,16,1,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1427,11,0,1913,1,0,0 +2013,4,10,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-4,0,1918,-21,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1937,242,1,2240,225,1,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1435,10,0,1750,7,0,0 +2013,8,22,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1726,73,1,2006,65,1,0 +2013,8,18,7,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-4,0,1625,-11,0,0 +2013,6,12,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-2,0,1123,-7,0,0 +2013,4,10,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1633,1,0,1834,-10,0,0 +2013,7,29,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,730,-1,0,1105,-12,0,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-2,0,1819,15,1,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1050,0,0,1150,-2,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,10,0,2154,-8,0,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,938,-2,0,1214,-7,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1850,41,1,2020,35,1,0 +2013,10,16,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,-10,0,1315,-8,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1805,-5,0,2047,-36,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,600,-4,0,940,-9,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,731,-4,0,920,-14,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1500,12,0,1640,1,0,0 +2013,4,18,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1735,170,1,2057,197,1,0 +2013,10,7,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,48,1,849,31,1,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1030,7,0,1200,-3,0,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,2,0,1825,-1,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,-4,0,1116,-16,0,0 +2013,4,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,79,1,1715,83,1,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,-2,0,1825,-15,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2001,5,0,2159,-8,0,0 +2013,10,23,3,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1640,4,0,1800,-2,0,0 +2013,7,10,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,900,-7,0,1040,4,0,0 +2013,6,3,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,46,1,1256,44,1,0 +2013,9,15,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1946,-6,0,2331,-21,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2015,18,1,2220,20,1,0 +2013,10,9,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1122,-2,0,1628,-8,0,0 +2013,8,23,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1539,-4,0,1813,-4,0,0 +2013,7,29,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,0,,1445,0,1,1 +2013,4,6,6,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1010,-6,0,1455,-17,0,0 +2013,7,8,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,6,0,1902,10,0,0 +2013,4,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-6,0,2235,-12,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,650,-3,0,840,-21,0,0 +2013,8,1,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,-3,0,1814,-26,0,0 +2013,7,26,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,850,-10,0,1022,-4,0,0 +2013,8,30,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-4,0,1658,23,1,0 +2013,9,18,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1835,10,0,2000,8,0,0 +2013,8,9,5,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1950,4,0,2244,-3,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,-3,0,21,-17,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1335,-5,0,1444,-12,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1250,-3,0,1838,-4,0,0 +2013,4,4,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,950,-6,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-5,0,1410,-4,0,0 +2013,8,13,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,-7,0,1647,-13,0,0 +2013,7,24,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-8,0,2049,-13,0,0 +2013,8,9,5,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-2,0,2244,-6,0,0 +2013,4,9,2,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2017,38,1,2200,27,1,0 +2013,5,23,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,4,0,1950,-10,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1350,-2,0,1510,5,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,5,0,2125,3,0,0 +2013,10,6,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-3,0,1355,2,0,0 +2013,4,18,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,120,1,2045,111,1,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1900,146,1,2005,140,1,0 +2013,8,7,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1405,18,1,1516,6,0,0 +2013,7,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1515,27,1,1640,24,1,0 +2013,4,19,5,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,-9,0,2048,-22,0,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,59,1,1745,57,1,0 +2013,6,30,7,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,807,-6,0,941,-20,0,0 +2013,4,5,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1018,0,0,1309,-6,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1040,1,0,1135,-1,0,0 +2013,8,28,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,915,0,0,1030,0,0,0 +2013,5,31,5,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1630,11,0,1820,7,0,0 +2013,6,15,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,720,-1,0,822,-1,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1725,-5,0,1850,-8,0,0 +2013,10,4,5,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1419,7,0,1600,-15,0,0 +2013,8,4,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1405,14,0,1455,8,0,0 +2013,6,22,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,814,2,0,1023,-20,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1905,33,1,2030,19,1,0 +2013,7,12,5,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-8,0,1132,-15,0,0 +2013,6,19,3,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,7,0,1905,6,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-3,0,1017,17,1,0 +2013,4,16,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1922,-9,0,2059,-17,0,0 +2013,10,29,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,41,1,940,53,1,0 +2013,9,5,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1630,-2,0,1720,-9,0,0 +2013,9,9,1,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,825,4,0,1633,15,1,0 +2013,10,15,2,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1855,2,0,2040,-6,0,0 +2013,8,21,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1709,-6,0,1820,-17,0,0 +2013,9,4,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,855,-5,0,955,2,0,0 +2013,10,9,3,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1626,-12,0,1849,-20,0,0 +2013,5,27,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,850,-7,0,0 +2013,8,16,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1920,0,0,1935,27,1,0 +2013,8,12,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-2,0,1220,-17,0,0 +2013,9,27,5,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1015,22,1,1825,15,1,0 +2013,10,18,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,15,1,1521,2,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,0,0,1828,-8,0,0 +2013,7,8,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-8,0,1236,-11,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,12,0,927,6,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-4,0,1449,-23,0,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1935,32,1,2105,19,1,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,13,0,1030,3,0,0 +2013,7,11,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1950,-6,0,2130,-24,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1555,15,1,1755,14,0,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,55,-6,0,625,-1,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1320,2,0,1650,-14,0,0 +2013,7,17,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1020,17,1,1225,24,1,0 +2013,6,11,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-5,0,1931,-21,0,0 +2013,9,5,4,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1201,-13,0,1259,-27,0,0 +2013,6,6,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,630,-1,0,840,2,0,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2106,17,1,2230,23,1,0 +2013,9,8,7,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-4,0,1625,-1,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1500,-3,0,1725,-13,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2146,22,1,16,12,0,0 +2013,9,15,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1235,-8,0,1445,-17,0,0 +2013,7,20,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1755,32,1,1850,49,1,0 +2013,7,23,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,40,1,845,24,1,0 +2013,10,31,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1415,-4,0,1603,-27,0,0 +2013,4,27,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,905,48,1,1029,43,1,0 +2013,8,4,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-6,0,1354,-12,0,0 +2013,9,14,6,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,805,-1,0,1150,-18,0,0 +2013,8,6,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-1,0,1130,-13,0,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,13796,Metropolitan Oakland International,Oakland,CA,1942,33,1,2308,17,1,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,715,0,0,925,-19,0,0 +2013,7,1,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-6,0,629,-12,0,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1440,-3,0,1745,0,0,0 +2013,9,27,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1155,27,1,1430,35,1,0 +2013,4,23,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,600,-9,0,715,-2,0,0 +2013,7,25,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-5,0,1645,-15,0,0 +2013,6,17,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,625,-8,0,801,-10,0,0 +2013,9,17,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-5,0,1810,-12,0,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1038,-4,0,1305,-11,0,0 +2013,4,9,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,935,18,1,1040,43,1,0 +2013,6,20,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1151,-11,0,1350,-19,0,0 +2013,6,20,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,0,0,1128,12,0,0 +2013,4,7,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1420,-3,0,1430,-6,0,0 +2013,10,20,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1145,28,1,1310,27,1,0 +2013,9,1,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,841,-3,0,936,14,0,0 +2013,7,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1520,-3,0,1650,-9,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1435,-5,0,1525,-6,0,0 +2013,5,25,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2025,-1,0,2150,-9,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-3,0,2350,-9,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,2,0,25,-17,0,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,735,-9,0,845,-11,0,0 +2013,10,20,7,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,20,1,2035,4,0,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-3,0,1509,3,0,0 +2013,9,24,2,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1400,-7,0,1705,-9,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1051,-4,0,1237,-24,0,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-1,0,1334,-17,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-6,0,2128,-7,0,0 +2013,6,19,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,3,0,1610,0,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2001,59,1,2128,43,1,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-7,0,1256,-28,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-5,0,1321,-18,0,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,905,-2,0,1110,1,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,0,0,2035,8,0,0 +2013,4,30,2,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-6,0,848,-8,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1817,19,1,2030,4,0,0 +2013,7,6,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1302,2,0,1429,3,0,0 +2013,10,12,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,-4,0,1640,-5,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1015,3,0,1230,12,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2045,24,1,2150,11,0,0 +2013,7,21,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2115,63,1,2235,55,1,0 +2013,8,31,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-5,0,1856,5,0,0 +2013,4,3,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1315,-5,0,1627,-21,0,0 +2013,4,29,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,914,13,0,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1118,-3,0,1357,-19,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,30,1,2140,8,0,0 +2013,9,18,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1840,3,0,2125,-16,0,0 +2013,6,21,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-3,0,601,-12,0,0 +2013,5,25,6,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,805,-3,0,1640,-6,0,0 +2013,7,18,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,745,33,1,1520,50,1,0 +2013,5,25,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1130,25,1,1300,16,1,0 +2013,6,12,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1650,45,1,1905,24,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1319,5,0,1519,-2,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2025,128,1,2210,107,1,0 +2013,7,20,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,27,1,842,56,1,0 +2013,4,10,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1558,-6,0,1642,-10,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1420,34,1,1556,23,1,0 +2013,5,19,7,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1800,7,0,1948,-7,0,0 +2013,5,27,1,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,620,-4,0,1103,-9,0,0 +2013,4,16,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-1,0,1828,4,0,0 +2013,8,9,5,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1420,5,0,1535,-4,0,0 +2013,9,18,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-2,0,1751,-13,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2306,-2,0,719,9,0,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,745,-2,0,1100,-25,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1735,9,0,2310,-7,0,0 +2013,4,21,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1735,-10,0,2007,-20,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1027,-7,0,1244,23,1,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,15,1,1115,3,0,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,838,-6,0,1024,-1,0,0 +2013,8,16,5,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,2040,-6,0,2255,-17,0,0 +2013,8,11,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1046,6,0,1424,6,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,7,0,1750,0,0,0 +2013,9,9,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1817,10,0,2151,-17,0,0 +2013,9,30,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1907,-9,0,2033,-17,0,0 +2013,6,16,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-4,0,2205,13,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-2,0,928,0,0,0 +2013,9,7,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,-14,0,2017,-8,0,0 +2013,4,13,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,755,-6,0,1021,6,0,0 +2013,5,25,6,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1003,-9,0,1214,-25,0,0 +2013,8,9,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,-5,0,1307,-15,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1820,9,0,2025,1,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,120,1,1912,106,1,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,730,-9,0,1115,-13,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,-1,0,1700,-6,0,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,-5,0,1545,-3,0,0 +2013,4,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,6,0,1525,-7,0,0 +2013,4,17,3,9E,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-4,0,825,6,0,0 +2013,8,28,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,80,1,2040,53,1,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,1,0,1359,8,0,0 +2013,7,19,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-7,0,910,5,0,0 +2013,7,9,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,643,-2,0,0 +2013,6,14,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1320,6,0,1410,11,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,-2,0,1555,-13,0,0 +2013,6,30,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,815,-1,0,1058,10,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-4,0,840,-2,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1540,8,0,1930,-3,0,0 +2013,6,17,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,-8,0,1833,12,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-4,0,1049,-17,0,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,23,1,1022,33,1,0 +2013,8,5,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2130,102,1,2250,91,1,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,710,-4,0,945,-8,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,530,3,0,806,39,1,0 +2013,6,13,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-7,0,500,-7,0,0 +2013,7,23,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1844,59,1,2058,50,1,0 +2013,9,18,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-3,0,1845,-6,0,0 +2013,8,5,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-9,0,2142,-5,0,0 +2013,7,3,3,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1104,1,0,1642,19,1,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,844,2,0,1249,-3,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,-7,0,1600,-19,0,0 +2013,10,24,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,-3,0,2117,-16,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2005,-3,0,2110,-13,0,0 +2013,8,14,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,0,0,1050,-1,0,0 +2013,4,22,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,59,1,32,74,1,0 +2013,8,23,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,655,0,,830,0,1,1 +2013,6,28,5,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1540,72,1,1750,59,1,0 +2013,7,22,1,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1520,-1,0,655,-15,0,0 +2013,10,10,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,72,1,1500,55,1,0 +2013,4,23,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-3,0,1108,0,0,0 +2013,10,20,7,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1410,-7,0,1611,-21,0,0 +2013,4,21,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-10,0,715,-9,0,0 +2013,5,8,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-10,0,1210,15,1,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,5,0,2146,16,1,0 +2013,7,13,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1536,171,1,1850,179,1,0 +2013,5,23,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2245,8,0,613,-4,0,0 +2013,6,4,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,835,-1,0,1159,-6,0,0 +2013,4,4,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1318,-2,0,1559,8,0,0 +2013,7,18,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-3,0,151,9,0,0 +2013,9,24,2,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,820,-4,0,1230,-26,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1130,-3,0,1500,3,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,605,-11,0,858,-22,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1205,44,1,1315,37,1,0 +2013,10,31,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,11,0,1109,-15,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1618,31,1,1754,28,1,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,949,8,0,1212,7,0,0 +2013,9,10,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1504,-2,0,1557,-15,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1056,4,0,1828,1,0,0 +2013,9,18,3,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1636,-10,0,1802,-22,0,0 +2013,8,16,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,837,27,1,1559,19,1,0 +2013,6,25,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1927,-1,0,2109,-9,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,-1,0,1914,7,0,0 +2013,9,10,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,855,-8,0,1225,-9,0,0 +2013,7,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1139,-2,0,1429,-12,0,0 +2013,7,25,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,22,1,1535,29,1,0 +2013,4,6,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1400,3,0,1520,-11,0,0 +2013,10,10,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1109,23,1,1353,28,1,0 +2013,6,11,2,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1320,17,1,1350,24,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1230,0,0,1420,16,1,0 +2013,10,4,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1845,19,1,2010,14,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2204,0,0,2323,-10,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1948,-5,0,2104,-30,0,0 +2013,7,4,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-9,0,2131,-35,0,0 +2013,10,20,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-2,0,2044,-4,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1547,-8,0,2108,-14,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,47,1,1450,38,1,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,705,-14,0,0 +2013,6,20,4,B6,13796,Metropolitan Oakland International,Oakland,CA,10721,Logan International,Boston,MA,2359,11,0,822,2,0,0 +2013,10,18,5,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1535,-3,0,1700,-19,0,0 +2013,6,13,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,950,-9,0,0 +2013,6,23,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1233,15,1,1355,86,1,0 +2013,7,24,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,-6,0,2310,-10,0,0 +2013,4,17,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,5,0,1420,-7,0,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,-6,0,1832,-11,0,0 +2013,7,24,3,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-3,0,1820,5,0,0 +2013,9,3,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1116,0,0,1259,-16,0,0 +2013,7,5,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,554,-4,0,914,-1,0,0 +2013,8,18,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,845,0,0,1010,-2,0,0 +2013,7,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1225,-2,0,1340,7,0,0 +2013,9,6,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1235,-4,0,1440,-13,0,0 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,2003,-1,0,2352,-15,0,0 +2013,5,18,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-10,0,1050,-3,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,1440,-29,0,0 +2013,6,3,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1910,21,1,1935,17,1,0 +2013,5,10,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,0,0,2104,6,0,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,81,1,30,80,1,0 +2013,4,15,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-6,0,1824,6,0,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-6,0,1535,-30,0,0 +2013,5,1,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,709,31,1,1531,29,1,0 +2013,10,17,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13244,Memphis International,Memphis,TN,1652,-5,0,1805,0,0,0 +2013,4,18,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1310,84,1,1620,75,1,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,735,0,0,1139,-2,0,0 +2013,6,17,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,0,0,1020,1,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1235,-4,0,1445,-7,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1307,-7,0,1611,-7,0,0 +2013,8,27,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,831,14,0,0 +2013,10,3,4,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1845,7,0,2135,-5,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1450,37,1,1746,21,1,0 +2013,7,29,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,10,0,1905,6,0,0 +2013,7,31,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1741,1,0,1904,-8,0,0 +2013,7,30,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-2,0,1236,2,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2220,-3,0,2352,-12,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,-1,0,1908,-4,0,0 +2013,7,7,7,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,3,0,1330,-8,0,0 +2013,5,7,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,846,-2,0,924,-18,0,0 +2013,10,20,7,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1600,8,0,1828,-24,0,0 +2013,8,19,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1051,10,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1439,1,0,2251,-2,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,608,-5,0,914,-16,0,0 +2013,5,19,7,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,90,1,2039,91,1,0 +2013,6,14,5,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1050,-2,0,1415,10,0,0 +2013,7,3,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-5,0,1216,3,0,0 +2013,8,17,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,-4,0,1025,-21,0,0 +2013,5,13,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1830,37,1,2000,16,1,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,25,1,2225,10,0,0 +2013,10,2,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,710,-5,0,0 +2013,6,1,6,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1130,7,0,1440,2,0,0 +2013,9,4,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,-4,0,1536,12,0,0 +2013,6,11,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-9,0,1518,15,1,0 +2013,6,15,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,1135,3,0,0 +2013,5,23,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-11,0,1639,-17,0,0 +2013,7,26,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,33,1,1710,51,1,0 +2013,7,21,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1616,31,1,1835,17,1,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,15,1,845,10,0,0 +2013,9,30,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,815,-13,0,0 +2013,5,26,7,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-4,0,1755,9,0,0 +2013,5,23,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,801,15,1,951,2,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,8,0,1247,-12,0,0 +2013,10,14,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-10,0,1420,-4,0,0 +2013,8,18,7,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1100,11,0,1220,5,0,0 +2013,7,5,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,59,1,1831,61,1,0 +2013,5,2,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-7,0,1555,-9,0,0 +2013,5,30,4,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,11,0,1755,45,1,0 +2013,4,28,7,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,835,-5,0,1215,-24,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,3,0,1410,9,0,0 +2013,9,11,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-4,0,2050,-12,0,0 +2013,10,24,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1348,-1,0,1721,-6,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,-2,0,1527,-11,0,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2130,-3,0,2320,-9,0,0 +2013,6,23,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,18,1,1615,3,0,0 +2013,10,29,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-8,0,955,7,0,0 +2013,10,8,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,-5,0,1614,-5,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,915,1,0,1145,-12,0,0 +2013,10,11,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,21,1,1456,21,1,0 +2013,6,12,3,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,2335,0,0,641,5,0,0 +2013,5,10,5,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,724,21,1,931,-16,0,0 +2013,8,13,2,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-6,0,1648,5,0,0 +2013,6,30,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,5,0,2105,6,0,0 +2013,7,21,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,17,1,1720,29,1,0 +2013,9,15,7,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-7,0,1815,-2,0,0 +2013,7,8,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-7,0,1621,-20,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,4,0,1140,3,0,0 +2013,4,12,5,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,700,28,1,817,19,1,0 +2013,4,11,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1020,-7,0,1241,16,1,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-1,0,945,-13,0,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1329,-4,0,1509,-7,0,0 +2013,4,26,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,615,-3,0,725,-4,0,0 +2013,7,9,2,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1710,69,1,2005,76,1,0 +2013,9,19,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1545,25,1,1825,14,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,900,-4,0,1425,-6,0,0 +2013,9,13,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,-3,0,2112,-34,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,2,0,2240,13,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,820,7,0,1310,-10,0,0 +2013,8,1,4,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,650,-3,0,808,-13,0,0 +2013,4,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,2004,3,0,6,-19,0,0 +2013,5,4,6,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1333,-7,0,2105,2,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,7,0,1330,-11,0,0 +2013,5,1,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,1100,0,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,700,8,0,820,12,0,0 +2013,4,27,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1855,-1,0,2134,2,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1750,1,0,2041,28,1,0 +2013,10,17,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1439,10,0,1619,27,1,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1120,12,0,1330,4,0,0 +2013,6,27,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1224,47,1,1326,45,1,0 +2013,5,17,5,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-6,0,1640,-1,0,0 +2013,6,10,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,2030,74,1,2330,97,1,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,5,0,1558,19,1,0 +2013,4,8,1,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,0,0,2135,-7,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1125,1,0,1845,2,0,0 +2013,8,8,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-4,0,721,-9,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,-2,0,1913,-4,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1430,-3,0,1710,-11,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,3,0,1442,-32,0,0 +2013,5,24,5,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,640,63,1,806,57,1,0 +2013,10,25,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1440,-6,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1417,-1,0,1609,-7,0,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,705,-2,0,935,-9,0,0 +2013,9,28,6,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1730,-1,0,1913,-17,0,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,739,51,1,1031,39,1,0 +2013,6,1,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1530,-9,0,1555,-16,0,0 +2013,9,3,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,14,0,1240,3,0,0 +2013,4,24,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-1,0,806,-2,0,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1945,39,1,2205,66,1,0 +2013,5,13,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,722,-2,0,1025,-18,0,0 +2013,7,30,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2145,-3,0,33,-6,0,0 +2013,10,7,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,-8,0,1029,-9,0,0 +2013,5,13,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-11,0,1746,-12,0,0 +2013,5,22,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1640,14,0,1820,10,0,0 +2013,10,19,6,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1331,-10,0,1604,-16,0,0 +2013,4,18,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2054,29,1,2158,36,1,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,4,0,1005,-3,0,0 +2013,4,18,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1150,146,1,1750,157,1,0 +2013,9,13,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,615,19,1,955,2,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2057,113,1,2359,155,1,0 +2013,8,12,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,15,1,1250,7,0,0 +2013,5,23,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1638,2,0,1851,7,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1930,19,1,2155,16,1,0 +2013,4,23,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-6,0,1300,-11,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,0,0,1730,-9,0,0 +2013,10,19,6,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1626,-10,0,1825,-5,0,0 +2013,4,6,6,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1800,1,0,2110,-10,0,0 +2013,10,4,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1620,-1,0,1811,-11,0,0 +2013,5,5,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,751,-7,0,902,-20,0,0 +2013,9,30,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,4,0,1916,-10,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1750,-3,0,2045,-22,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,900,4,0,1203,9,0,0 +2013,4,22,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-7,0,903,-8,0,0 +2013,4,13,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-3,0,2102,-20,0,0 +2013,5,17,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1037,9,0,1250,11,0,0 +2013,9,18,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1245,6,0,2101,-13,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,-8,0,1823,-26,0,0 +2013,5,18,6,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1602,-23,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-5,0,1054,30,1,0 +2013,9,2,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1120,-6,0,1252,-22,0,0 +2013,10,28,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1604,11,0,1726,1,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1505,-6,0,1720,-15,0,0 +2013,5,7,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,4,0,925,17,1,0 +2013,8,18,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2020,0,0,2230,-31,0,0 +2013,7,1,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,935,-2,0,1050,-7,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1102,-1,0,1245,7,0,0 +2013,9,11,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-6,0,935,-23,0,0 +2013,7,24,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,-11,0,1900,-21,0,0 +2013,8,31,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2135,1,0,2336,1,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1145,59,1,1400,55,1,0 +2013,4,15,1,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-6,0,1245,3,0,0 +2013,7,6,6,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1527,0,0,1700,-1,0,0 +2013,4,26,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-6,0,730,-13,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,7,0,1035,-3,0,0 +2013,10,13,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,650,2,0,0 +2013,7,9,2,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-2,0,1305,-18,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,-2,0,1515,-5,0,0 +2013,10,23,3,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,720,-4,0,945,-3,0,0 +2013,7,23,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,3,0,1338,9,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,644,2,0,810,-11,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,-1,0,1835,6,0,0 +2013,10,28,1,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1444,-8,0,1615,-11,0,0 +2013,4,16,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,714,0,0,829,-6,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1155,27,1,1410,25,1,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1015,25,1,1140,18,1,0 +2013,9,3,2,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1005,-1,0,1215,3,0,0 +2013,7,10,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,157,1,2230,177,1,0 +2013,5,1,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,2,0,2145,-25,0,0 +2013,9,21,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2010,8,0,2130,1,0,0 +2013,5,22,3,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1135,15,1,1520,47,1,0 +2013,6,10,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,156,1,1530,150,1,0 +2013,10,28,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,39,1,1719,18,1,0 +2013,6,15,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1851,6,0,15,-23,0,0 +2013,8,30,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1328,6,0,1931,2,0,0 +2013,4,1,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,705,-2,0,1446,-13,0,0 +2013,6,11,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,903,-4,0,937,-7,0,0 +2013,6,10,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1959,80,1,2120,77,1,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1740,48,1,1905,44,1,0 +2013,9,8,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2049,-13,0,2153,-24,0,0 +2013,6,21,5,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,542,-4,0,755,-1,0,0 +2013,6,18,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,76,1,1620,85,1,0 +2013,7,12,5,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-1,0,1630,22,1,0 +2013,6,4,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-6,0,607,-6,0,0 +2013,7,8,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,38,1,641,41,1,0 +2013,8,11,7,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,22,1,2013,27,1,0 +2013,4,16,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1515,310,1,1835,301,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1255,4,0,1405,7,0,0 +2013,5,25,6,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,845,-2,0,1130,-17,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2057,0,0,2314,3,0,0 +2013,5,2,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2000,5,0,2050,-5,0,0 +2013,10,11,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,1,0,1810,-9,0,0 +2013,8,26,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1116,15,1,1250,30,1,0 +2013,7,1,1,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1130,-9,0,1836,12,0,0 +2013,5,26,7,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-6,0,2000,-16,0,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,-2,0,1544,-21,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2032,12,0,2155,1,0,0 +2013,8,27,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,5,0,1342,2,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1210,8,0,2045,-9,0,0 +2013,8,15,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1235,-8,0,1500,-34,0,0 +2013,9,15,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1306,-14,0,1638,-27,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1345,-4,0,1440,-9,0,0 +2013,9,27,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,36,1,2027,42,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,10,0,1343,-5,0,0 +2013,4,22,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,0,0,804,-7,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,800,-4,0,910,-14,0,0 +2013,10,1,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,716,-7,0,1150,-20,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1439,7,0,2251,-22,0,0 +2013,7,9,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1950,99,1,2020,95,1,0 +2013,9,6,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1925,-3,0,2030,5,0,0 +2013,4,19,5,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1830,-4,0,2033,-5,0,0 +2013,5,2,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,46,1,2240,42,1,0 +2013,4,12,5,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,-3,0,1122,13,0,0 +2013,8,17,6,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1245,-3,0,1447,-16,0,0 +2013,6,25,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,14,0,1749,20,1,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1900,21,1,2125,13,0,0 +2013,6,23,7,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,-2,0,2120,6,0,0 +2013,9,2,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1930,3,0,1956,15,1,0 +2013,4,8,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,-11,0,1357,-15,0,0 +2013,9,19,4,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,833,-7,0,1015,-11,0,0 +2013,9,27,5,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1746,-2,0,1856,-4,0,0 +2013,10,29,2,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-8,0,1915,-16,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,850,-9,0,1123,-11,0,0 +2013,4,27,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1230,-10,0,1550,-22,0,0 +2013,10,31,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1459,20,1,1658,31,1,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,0,0,2110,-15,0,0 +2013,5,28,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,831,-5,0,1100,-5,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-1,0,2125,-3,0,0 +2013,4,19,5,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1005,-6,0,1205,-13,0,0 +2013,8,15,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,645,-2,0,815,-10,0,0 +2013,10,16,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1826,-11,0,0 +2013,9,8,7,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1755,17,1,2035,14,0,0 +2013,5,31,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,940,-3,0,1057,-14,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,0,0,1013,-7,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1640,31,1,1910,16,1,0 +2013,8,5,1,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,615,-4,0,715,-8,0,0 +2013,8,23,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,7,0,1150,3,0,0 +2013,4,13,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2120,-9,0,25,-7,0,0 +2013,5,6,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,3,0,2029,17,1,0 +2013,5,24,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1801,-1,0,1921,-12,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1525,5,0,1750,5,0,0 +2013,6,24,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-4,0,1110,-4,0,0 +2013,4,9,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,625,0,0,845,-17,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-3,0,910,13,0,0 +2013,8,31,6,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1458,-7,0,1600,-11,0,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1510,-5,0,1622,-16,0,0 +2013,10,5,6,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1630,25,1,1805,11,0,0 +2013,4,30,2,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1447,50,1,1639,53,1,0 +2013,4,15,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-4,0,1402,-18,0,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1114,-3,0,1249,-13,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1141,62,1,1332,65,1,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1509,-2,0,1729,-2,0,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1025,8,0,1210,-4,0,0 +2013,10,30,3,FL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1037,2,0,1332,-10,0,0 +2013,10,30,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1335,141,1,1420,136,1,0 +2013,8,25,7,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,0,0,1631,-11,0,0 +2013,8,3,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1420,2,0,1535,0,0,0 +2013,7,6,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,957,-2,0,0 +2013,9,21,6,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,825,261,1,941,253,1,0 +2013,4,16,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1714,14,0,2019,18,1,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,955,13,0,1100,11,0,0 +2013,8,26,1,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1530,-3,0,1715,-13,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1219,-5,0,1709,-20,0,0 +2013,9,12,4,OO,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,648,5,0,945,-2,0,0 +2013,5,12,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1400,2,0,1500,-9,0,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-3,0,2200,9,0,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,735,-3,0,840,-4,0,0 +2013,8,23,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1556,-10,0,1654,-31,0,0 +2013,9,29,7,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1455,69,1,1615,64,1,0 +2013,7,7,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,10,0,1714,-3,0,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1520,8,0,1615,2,0,0 +2013,7,16,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,700,4,0,820,0,0,0 +2013,10,27,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,14,0,2140,-1,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,1,0,1629,-8,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1729,-4,0,1932,-14,0,0 +2013,9,11,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-6,0,1253,-21,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,-4,0,2233,-24,0,0 +2013,6,18,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,650,-2,0,850,1,0,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1251,6,0,1626,-2,0,0 +2013,7,8,1,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,-3,0,2113,-12,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1745,116,1,1935,127,1,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-2,0,930,7,0,0 +2013,4,14,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1210,-5,0,1611,-9,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1435,0,0,1645,-12,0,0 +2013,8,18,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,39,1,2346,29,1,0 +2013,6,6,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-7,0,701,17,1,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,901,-28,0,0 +2013,5,27,1,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1458,-10,0,2249,-20,0,0 +2013,4,11,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2056,32,1,2232,27,1,0 +2013,4,4,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,720,-2,0,845,-7,0,0 +2013,4,7,7,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1855,63,1,2212,50,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,3,0,1131,-6,0,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1018,29,1,1134,37,1,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,-2,0,1002,5,0,0 +2013,10,24,4,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-10,0,1930,-3,0,0 +2013,8,9,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,-6,0,715,-3,0,0 +2013,5,21,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1730,-7,0,1949,0,0,0 +2013,7,15,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1915,15,1,2211,-22,0,0 +2013,7,11,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1226,6,0,1425,4,0,0 +2013,10,19,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,915,-4,0,1025,2,0,0 +2013,10,11,5,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-1,0,1453,-14,0,0 +2013,6,6,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1748,-2,0,2057,-14,0,0 +2013,6,1,6,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1145,-6,0,1300,-8,0,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,70,1,1914,175,1,0 +2013,7,15,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,740,5,0,855,-4,0,0 +2013,9,15,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,0,0,1044,2,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1741,13,0,2037,-5,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1510,0,0,1830,-19,0,0 +2013,7,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1035,-3,0,1200,-2,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1350,7,0,1620,4,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1357,-1,0,1530,-8,0,0 +2013,5,4,6,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,0,0,1250,-3,0,0 +2013,7,13,6,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1445,59,1,1543,66,1,0 +2013,5,20,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1603,-6,0,1648,-2,0,0 +2013,10,31,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,-7,0,750,-10,0,0 +2013,9,23,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,8,0,1705,4,0,0 +2013,7,16,2,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,-4,0,1425,-13,0,0 +2013,10,29,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,805,-4,0,1510,7,0,0 +2013,5,30,4,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1346,7,0,1644,28,1,0 +2013,10,10,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,600,0,0,725,-4,0,0 +2013,7,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2102,5,0,2257,2,0,0 +2013,8,2,5,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1158,-2,0,1932,-27,0,0 +2013,7,12,5,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1246,-4,0,1841,-6,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1929,25,1,2126,5,0,0 +2013,7,29,1,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,948,10,0,1311,56,1,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,12,0,1304,14,0,0 +2013,9,17,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,-5,0,2250,-17,0,0 +2013,10,8,2,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-7,0,1625,-34,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1058,28,1,1346,20,1,0 +2013,5,30,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1805,-2,0,1920,-13,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,17,1,2126,2,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1558,12,0,1759,0,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,-1,0,1615,40,1,0 +2013,10,24,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1040,0,0,1200,0,0,0 +2013,8,11,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1134,-2,0,1305,-2,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,935,-1,0,1055,-8,0,0 +2013,6,16,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1610,-3,0,1735,-13,0,0 +2013,10,10,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,5,0,910,1,0,0 +2013,9,4,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,107,1,827,98,1,0 +2013,4,27,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,-7,0,1820,-1,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,21,1,1610,24,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,1,0,2335,-8,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,909,11,0,1350,-4,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1005,11,0,1130,10,0,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2040,5,0,2320,0,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,-2,0,1600,-5,0,0 +2013,6,18,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1345,41,1,1625,28,1,0 +2013,5,27,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-5,0,1115,-28,0,0 +2013,5,31,5,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1625,2,0,1950,-16,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,930,0,0,1400,-3,0,0 +2013,6,6,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1215,17,1,1529,-10,0,0 +2013,7,29,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,615,-3,0,755,1,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2305,2,0,32,-9,0,0 +2013,5,8,3,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1659,-9,0,1845,-16,0,0 +2013,9,23,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1140,8,0,1435,-5,0,0 +2013,8,28,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1805,12,0,1945,8,0,0 +2013,10,20,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,745,-4,0,905,-8,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,831,3,0,1108,-13,0,0 +2013,9,2,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,32,1,1620,13,0,0 +2013,8,16,5,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,14,0,745,-1,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-6,0,1924,-16,0,0 +2013,7,5,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-3,0,725,-16,0,0 +2013,9,2,1,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,55,1,1945,45,1,0 +2013,5,27,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,750,-7,0,1044,-22,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,635,8,0,820,9,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1341,3,0,1450,-5,0,0 +2013,4,22,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1943,10,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-5,0,1028,-3,0,0 +2013,9,27,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,29,1,1300,25,1,0 +2013,8,25,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1705,-4,0,1845,-18,0,0 +2013,5,31,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,2010,-2,0,2120,11,0,0 +2013,5,27,1,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1335,5,0,1854,-5,0,0 +2013,6,25,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,0,0,845,3,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2007,-9,0,2309,-22,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1345,-1,0,1510,-14,0,0 +2013,7,22,1,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1000,1,0,1050,-13,0,0 +2013,9,16,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-5,0,1311,-16,0,0 +2013,7,18,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,-5,0,1345,-3,0,0 +2013,10,15,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2100,14,0,2200,6,0,0 +2013,7,26,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,0,0,1520,9,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,0,0,1516,-12,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1012,0,,1425,0,1,1 +2013,6,17,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1225,-7,0,1805,-23,0,0 +2013,9,6,5,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,823,-2,0,0 +2013,6,24,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,-1,0,1919,-1,0,0 +2013,5,18,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11278,Ronald Reagan Washington National,Washington,DC,1100,-4,0,1424,23,1,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1454,43,1,2029,52,1,0 +2013,4,22,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,-5,0,1008,5,0,0 +2013,9,16,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,951,-6,0,1316,5,0,0 +2013,7,19,5,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,0,0,1124,-5,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,0,0,1555,-8,0,0 +2013,10,11,5,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-1,0,1930,-21,0,0 +2013,6,22,6,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1655,7,0,1822,-9,0,0 +2013,10,25,5,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,907,20,1,1024,12,0,0 +2013,7,23,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1015,-5,0,1115,-16,0,0 +2013,6,21,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,0,0,1104,1,0,0 +2013,7,31,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1650,20,1,1805,14,0,0 +2013,7,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,-7,0,848,-16,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,12,0,1158,-3,0,0 +2013,6,23,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1720,-2,0,1905,17,1,0 +2013,6,14,5,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1241,-1,0,1503,-16,0,0 +2013,8,15,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,815,0,,945,0,1,1 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1505,24,1,1640,13,0,0 +2013,6,3,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1455,0,0,1610,4,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,7,0,1200,7,0,0 +2013,5,6,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,17,1,1445,19,1,0 +2013,4,24,3,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2043,10,0,453,-8,0,0 +2013,4,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,-2,0,1045,0,0,0 +2013,6,16,7,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1059,5,0,1228,-3,0,0 +2013,9,29,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,-10,0,1202,-15,0,0 +2013,6,9,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,-4,0,1042,-13,0,0 +2013,9,11,3,OO,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,545,-1,0,745,-6,0,0 +2013,5,21,2,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,705,1,0,1010,-21,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,8,0,2025,2,0,0 +2013,10,11,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1422,-3,0,1610,-7,0,0 +2013,9,1,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,831,-3,0,1408,-14,0,0 +2013,4,28,7,EV,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,850,-11,0,1131,-17,0,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1357,85,1,1629,84,1,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1807,-4,0,1945,-18,0,0 +2013,4,20,6,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,-8,0,1130,-19,0,0 +2013,10,8,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,956,3,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2256,-12,0,734,-51,0,0 +2013,4,23,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,1,0,1650,-2,0,0 +2013,5,12,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1601,-16,0,0 +2013,10,1,2,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,944,-6,0,1030,-22,0,0 +2013,5,15,3,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-3,0,1644,3,0,0 +2013,10,4,5,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1830,-4,0,2035,10,0,0 +2013,5,5,7,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1610,-2,0,1751,-14,0,0 +2013,5,1,3,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,2030,-4,0,2115,-12,0,0 +2013,10,4,5,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1933,-1,0,2245,-19,0,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1345,8,0,1710,30,1,0 +2013,5,29,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,917,3,0,1208,-9,0,0 +2013,9,10,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-11,0,1345,-14,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,900,9,0,1120,-3,0,0 +2013,8,16,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,851,-8,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,950,-4,0,1138,-8,0,0 +2013,4,12,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1938,0,0,2104,-5,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,845,19,1,1025,6,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1915,3,0,2149,3,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1440,31,1,1545,24,1,0 +2013,10,22,2,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1740,-6,0,1910,-16,0,0 +2013,9,29,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,940,-3,0,1649,-17,0,0 +2013,4,9,2,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-3,0,1422,-21,0,0 +2013,7,24,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,647,-1,0,809,-2,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2135,8,0,10,-2,0,0 +2013,8,14,3,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,1116,-26,0,0 +2013,8,28,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,610,1,0,1204,4,0,0 +2013,6,23,7,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1535,-1,0,1815,-12,0,0 +2013,6,29,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,950,3,0,1243,-16,0,0 +2013,8,17,6,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1844,10,0,2015,-7,0,0 +2013,7,17,3,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1705,12,0,1835,-14,0,0 +2013,9,8,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1438,-6,0,1625,-11,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1653,2,0,1744,-6,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1825,-1,0,2045,-4,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,-3,0,1052,-10,0,0 +2013,7,30,2,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1510,9,0,1630,3,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2155,5,0,10,2,0,0 +2013,5,31,5,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1028,-8,0,1338,-20,0,0 +2013,4,30,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1200,-1,0,1315,-8,0,0 +2013,4,18,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,51,1,2135,58,1,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1445,2,0,1920,-7,0,0 +2013,10,21,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-7,0,1015,-24,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,22,1,1556,17,1,0 +2013,6,17,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1250,3,0,1631,2,0,0 +2013,5,30,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-2,0,2315,-12,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2119,230,1,9,270,1,0 +2013,4,24,3,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1120,33,1,1930,5,0,0 +2013,4,20,6,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,715,-4,0,946,-1,0,0 +2013,7,3,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1335,-5,0,1510,-7,0,0 +2013,5,10,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,807,0,0,1102,2,0,0 +2013,8,19,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-6,0,1105,-12,0,0 +2013,8,9,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,2,0,2052,7,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,-4,0,900,7,0,0 +2013,5,2,4,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-4,0,1634,-10,0,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1035,-3,0,1203,-20,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,829,-2,0,1007,-2,0,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,0,0,2250,-6,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,710,-6,0,831,-14,0,0 +2013,6,25,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-7,0,1209,-27,0,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,835,-4,0,1648,-6,0,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,745,-4,0,850,0,0,0 +2013,9,13,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-8,0,1521,-11,0,0 +2013,7,21,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1215,-5,0,1525,-24,0,0 +2013,7,19,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1135,5,0,1210,7,0,0 +2013,8,4,7,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,555,-2,0,751,-6,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,-2,0,1449,-18,0,0 +2013,9,13,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,658,0,,955,0,1,1 +2013,10,28,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1125,-7,0,1212,-8,0,0 +2013,4,17,3,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1828,14,0,2130,33,1,0 +2013,8,4,7,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1025,27,1,1210,25,1,0 +2013,9,26,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-4,0,1313,-4,0,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1840,0,0,2100,16,1,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,730,-5,0,945,-11,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,7,0,2110,12,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,-4,0,1152,-14,0,0 +2013,9,22,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1209,-2,0,1444,-17,0,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1605,10,0,1920,20,1,0 +2013,5,25,6,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1750,0,0,2100,-8,0,0 +2013,7,31,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-6,0,1902,-6,0,0 +2013,7,3,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,-4,0,2045,-8,0,0 +2013,9,21,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-5,0,1616,-9,0,0 +2013,5,20,1,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1610,125,1,1911,131,1,0 +2013,9,19,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,930,21,1,1111,23,1,0 +2013,10,28,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,2,0,2130,-5,0,0 +2013,5,25,6,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1350,35,1,1625,28,1,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1620,-18,0,0 +2013,8,12,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,951,18,1,1201,19,1,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1335,11,0,1640,2,0,0 +2013,7,22,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,65,1,2115,46,1,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,929,14,0,1053,11,0,0 +2013,8,19,1,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,-4,0,1431,15,1,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,710,-6,0,830,-8,0,0 +2013,7,20,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-4,0,1538,-4,0,0 +2013,8,12,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1655,12,0,1935,-1,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1140,14,0,1400,11,0,0 +2013,6,16,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,31,1,1829,27,1,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,855,-1,0,1034,-16,0,0 +2013,7,9,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,845,1,0,1430,0,1,1 +2013,6,5,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,140,1,2135,162,1,0 +2013,5,6,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-5,0,1300,-4,0,0 +2013,5,20,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,5,0,1127,6,0,0 +2013,6,26,3,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1310,0,0,1610,20,1,0 +2013,8,15,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-9,0,1140,-12,0,0 +2013,4,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,169,1,2149,153,1,0 +2013,5,13,1,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,600,-4,0,719,-28,0,0 +2013,8,2,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,30,1,2206,14,0,0 +2013,6,29,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1951,-3,0,2130,-23,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1200,10,0,1449,-2,0,0 +2013,6,24,1,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1940,11,0,2057,9,0,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,-6,0,1253,12,0,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2301,-4,0,712,6,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,0,0,1339,-6,0,0 +2013,10,25,5,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2033,0,0,2155,-4,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2100,-3,0,2150,0,0,0 +2013,9,27,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1610,19,1,1715,15,1,0 +2013,7,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,753,-6,0,921,1,0,0 +2013,8,25,7,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-6,0,1320,-22,0,0 +2013,7,8,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1420,30,1,1530,25,1,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1615,9,0,1800,3,0,0 +2013,6,7,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1700,190,1,2018,194,1,0 +2013,5,23,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,260,1,2039,274,1,0 +2013,9,12,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1620,4,0,1725,12,0,0 +2013,8,25,7,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1210,8,0,1325,-20,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1515,-4,0,1709,-22,0,0 +2013,5,17,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-6,0,2053,-16,0,0 +2013,8,1,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1545,18,1,1935,12,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,0,0,1700,-7,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,725,19,1,1020,21,1,0 +2013,9,18,3,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,611,-3,0,722,-11,0,0 +2013,7,19,5,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,611,-7,0,1053,-4,0,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,45,1,1210,24,1,0 +2013,5,5,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12953,LaGuardia,New York,NY,1610,-2,0,1811,-6,0,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1939,58,1,2108,99,1,0 +2013,7,7,7,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1200,1,0,1412,-3,0,0 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,2,0,1345,-7,0,0 +2013,8,1,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,141,1,1307,125,1,0 +2013,9,15,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1035,19,1,1131,25,1,0 +2013,8,30,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,626,2,0,836,10,0,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,41,1,1320,33,1,0 +2013,4,11,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-2,0,1305,44,1,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,0,0,1658,-20,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,-3,0,923,-5,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,161,1,1811,133,1,0 +2013,7,27,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,733,-9,0,1016,-16,0,0 +2013,9,29,7,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-3,0,2229,1,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1640,1,0,1904,10,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2010,3,0,2220,3,0,0 +2013,8,18,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1855,27,1,2050,27,1,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,-4,0,2221,-12,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,755,0,0,923,-5,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,750,-3,0,917,-9,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1835,-1,0,1955,-12,0,0 +2013,6,11,2,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1620,3,0,1805,-4,0,0 +2013,9,8,7,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1630,-4,0,1825,-12,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,2,0,1405,3,0,0 +2013,9,11,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,950,1,0,1150,-22,0,0 +2013,8,6,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,850,4,0,1135,-4,0,0 +2013,4,27,6,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1135,-3,0,1325,-5,0,0 +2013,5,17,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1051,-7,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1725,27,1,1955,22,1,0 +2013,10,4,5,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,0,0,1457,-13,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1950,-4,0,2139,-23,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1808,85,1,2004,83,1,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,-1,0,1430,-10,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1911,54,1,2242,71,1,0 +2013,7,28,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-10,0,1017,-16,0,0 +2013,6,22,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,635,5,0,1215,23,1,0 +2013,9,18,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1844,-1,0,2158,-23,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2037,-6,0,2204,-9,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1221,-5,0,1459,-13,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1430,-2,0,1604,-12,0,0 +2013,4,27,6,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,-2,0,825,-10,0,0 +2013,8,4,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,3,0,1955,13,0,0 +2013,9,18,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,810,23,1,1020,25,1,0 +2013,8,19,1,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1205,5,0,1615,-13,0,0 +2013,9,25,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1350,23,1,1708,19,1,0 +2013,4,30,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-7,0,2043,-17,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,-2,0,1330,-13,0,0 +2013,4,27,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-7,0,707,-3,0,0 +2013,9,10,2,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,0,0,1945,-3,0,0 +2013,5,27,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,625,-4,0,855,1,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,9,0,1105,5,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,0,0,1453,-17,0,0 +2013,5,6,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2000,-1,0,2110,-11,0,0 +2013,4,8,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,910,-3,0,1035,-11,0,0 +2013,8,20,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-1,0,1249,2,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-1,0,1415,-16,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1935,16,1,2255,-2,0,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,2,0,2005,-2,0,0 +2013,7,15,1,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2224,0,,30,0,1,1 +2013,10,1,2,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,6,0,2105,3,0,0 +2013,9,19,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-10,0,1850,-4,0,0 +2013,6,24,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2040,70,1,2340,74,1,0 +2013,8,19,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,1115,-3,0,1335,5,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1540,1,0,1730,-8,0,0 +2013,5,27,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-20,0,1006,-32,0,0 +2013,10,13,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1009,-36,0,0 +2013,6,6,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,810,1,0,0 +2013,8,22,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1957,146,1,2139,126,1,0 +2013,9,12,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1350,7,0,1450,-1,0,0 +2013,8,26,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,20,-5,0,719,6,0,0 +2013,6,23,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,38,1,2108,28,1,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1705,0,0,1815,7,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-5,0,1252,-10,0,0 +2013,5,14,2,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1718,17,1,2000,16,1,0 +2013,5,16,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1115,-5,0,1354,-7,0,0 +2013,9,6,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-11,0,640,-16,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1002,0,0,1338,-11,0,0 +2013,9,6,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,6,0,1455,-5,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,,655,0,1,1 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,-4,0,2304,-29,0,0 +2013,7,21,7,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1817,142,1,1925,162,1,0 +2013,4,23,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,545,-4,0,1159,-32,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1820,2,0,2040,-17,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,2010,8,0,40,-5,0,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,0,0,1040,-4,0,0 +2013,6,14,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,57,1,2120,61,1,0 +2013,7,20,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-7,0,1034,-6,0,0 +2013,8,14,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,-3,0,1520,0,0,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,837,-3,0,1650,-17,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1540,93,1,2300,79,1,0 +2013,9,1,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,-3,0,1935,-14,0,0 +2013,5,24,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1050,1,0,1220,-2,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1834,-1,0,2202,29,1,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1930,23,1,2200,32,1,0 +2013,6,25,2,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,121,1,2135,122,1,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,718,1,0,943,-10,0,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2055,-6,0,2220,-2,0,0 +2013,10,7,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,840,-2,0,859,-7,0,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,2,0,930,-3,0,0 +2013,4,6,6,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1933,-8,0,2205,-40,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2235,79,1,2359,74,1,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,735,21,1,1050,0,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1515,31,1,1720,37,1,0 +2013,5,16,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,2,0,2025,11,0,0 +2013,6,17,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,120,-5,0,515,-1,0,0 +2013,9,6,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-7,0,806,-6,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1855,95,1,2015,100,1,0 +2013,7,2,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,-2,0,1845,-7,0,0 +2013,6,13,4,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1102,-2,0,1226,-7,0,0 +2013,10,29,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,-6,0,1353,-41,0,0 +2013,5,28,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,15,1,2000,18,1,0 +2013,7,30,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1835,-12,0,2116,4,0,0 +2013,4,21,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,925,-5,0,1047,7,0,0 +2013,7,13,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,727,-9,0,838,-14,0,0 +2013,8,10,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,4,0,1305,14,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1115,-4,0,1259,-22,0,0 +2013,8,31,6,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,0,0,2000,-13,0,0 +2013,10,21,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,8,0,1721,19,1,0 +2013,9,12,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,1,0,1035,-5,0,0 +2013,7,17,3,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,736,0,0,1534,3,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,816,-2,0,1022,-6,0,0 +2013,9,10,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1234,-9,0,1334,-24,0,0 +2013,4,19,5,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-2,0,817,-34,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1500,64,1,1600,74,1,0 +2013,4,28,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,842,-2,0,1654,-1,0,0 +2013,7,26,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,0,0,1850,-11,0,0 +2013,7,16,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,-2,0,2247,-10,0,0 +2013,10,6,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,-1,0,1500,-5,0,0 +2013,10,18,5,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1459,0,0,1644,-9,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,825,19,1,905,10,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,855,22,1,1100,3,0,0 +2013,5,23,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1920,119,1,2046,113,1,0 +2013,4,13,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1400,0,0,1653,23,1,0 +2013,10,27,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1420,3,0,1505,2,0,0 +2013,4,14,7,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-6,0,1235,-11,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2030,-1,0,2252,0,0,0 +2013,9,9,1,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,14,0,2135,8,0,0 +2013,10,9,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,940,4,0,1040,1,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,842,-1,0,953,-8,0,0 +2013,7,18,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,2115,52,1,2225,48,1,0 +2013,8,1,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,2,0,1915,-7,0,0 +2013,5,7,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1729,-10,0,1939,-27,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,56,1,1546,41,1,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1357,0,0,1530,-4,0,0 +2013,7,24,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1355,-1,0,1739,-9,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-5,0,1354,-7,0,0 +2013,5,16,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1130,6,0,1235,0,0,0 +2013,6,1,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,3,0,1855,32,1,0 +2013,9,24,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,825,-6,0,850,-5,0,0 +2013,6,18,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,950,-1,0,1055,-8,0,0 +2013,6,18,2,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1658,182,1,1822,221,1,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,600,2,0,825,-15,0,0 +2013,9,13,5,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,6,0,1632,10,0,0 +2013,7,26,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1806,46,1,1931,25,1,0 +2013,5,3,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,502,-9,0,620,-19,0,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1904,186,1,2029,173,1,0 +2013,10,13,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,-4,0,1200,5,0,0 +2013,9,26,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1821,8,0,1957,14,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-4,0,940,-15,0,0 +2013,9,16,1,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,635,-2,0,750,-3,0,0 +2013,6,13,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2316,-4,0,505,-12,0,0 +2013,10,20,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-7,0,1214,-14,0,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,-1,0,2122,10,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,700,2,0,934,8,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,747,-7,0,1054,-4,0,0 +2013,4,13,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,750,2,0,915,-6,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1155,2,0,1510,-8,0,0 +2013,4,16,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1630,14,0,1813,34,1,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1022,-3,0,1119,-11,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1305,-6,0,1610,-7,0,0 +2013,4,7,7,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1704,-1,0,2044,-5,0,0 +2013,8,1,4,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,8,0,1852,3,0,0 +2013,7,30,2,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2230,11,0,120,-9,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1304,0,0,1430,-19,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2025,0,0,2325,-4,0,0 +2013,7,18,4,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1230,-2,0,1525,-15,0,0 +2013,4,25,4,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,1,0,759,-17,0,0 +2013,5,1,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1629,-11,0,1814,-6,0,0 +2013,6,30,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-5,0,2110,14,0,0 +2013,6,9,7,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,2,0,1258,-3,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1735,-1,0,1825,-16,0,0 +2013,5,16,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1218,-1,0,1300,-9,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,95,1,1115,112,1,0 +2013,6,1,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-7,0,1242,-13,0,0 +2013,4,18,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,-2,0,1521,-17,0,0 +2013,6,20,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,720,-3,0,750,-6,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,0,0,1945,-3,0,0 +2013,8,19,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1450,13,0,1505,13,0,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1610,70,1,1935,78,1,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-2,0,842,-5,0,0 +2013,10,2,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,755,-8,0,1036,-18,0,0 +2013,10,24,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1024,-7,0,1107,-10,0,0 +2013,8,7,3,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-2,0,1019,-22,0,0 +2013,5,5,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2015,4,0,2125,5,0,0 +2013,7,14,7,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,14,0,550,43,1,0 +2013,4,28,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1716,14,0,1839,38,1,0 +2013,5,17,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,1,0,1710,-4,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-2,0,1100,-10,0,0 +2013,6,13,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,0,0,1446,-4,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,2,0,1350,24,1,0 +2013,10,24,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2002,-6,0,2136,0,0,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,-5,0,2016,9,0,0 +2013,6,20,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-1,0,2155,-5,0,0 +2013,8,30,5,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,-7,0,2206,-15,0,0 +2013,8,12,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,0,0,1217,0,0,0 +2013,7,19,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,-1,0,1520,-20,0,0 +2013,9,18,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-4,0,808,-10,0,0 +2013,6,23,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1650,2,0,2010,-18,0,0 +2013,10,5,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-8,0,2050,-36,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,15,1,1250,19,1,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1040,6,0,1916,-10,0,0 +2013,7,10,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,76,1,2140,102,1,0 +2013,4,3,3,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,852,31,1,1102,36,1,0 +2013,9,7,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1405,-3,0,1740,24,1,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,820,-2,0,929,-9,0,0 +2013,5,16,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1659,-3,0,1804,17,1,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1405,25,1,2005,11,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1740,14,0,2110,-1,0,0 +2013,7,23,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-5,0,1155,-13,0,0 +2013,10,26,6,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-5,0,748,1,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,745,13,0,938,9,0,0 +2013,4,21,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-2,0,2025,-5,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-8,0,859,-4,0,0 +2013,10,21,1,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1719,-7,0,2012,-28,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1805,-1,0,2022,2,0,0 +2013,5,11,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,126,1,1459,121,1,0 +2013,4,26,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-7,0,2054,9,0,0 +2013,5,16,4,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1220,12,0,1725,9,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,0,0,1025,0,0,0 +2013,10,14,1,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,605,-2,0,755,5,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1105,3,0,1355,-6,0,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1059,0,0,1403,-35,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,811,-4,0,1030,-5,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1630,16,1,1755,4,0,0 +2013,8,9,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,2,0,2036,15,1,0 +2013,7,11,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,-4,0,936,-12,0,0 +2013,9,8,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,18,1,1925,15,1,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,1,0,2056,7,0,0 +2013,10,21,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-4,0,1643,4,0,0 +2013,5,27,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,837,-1,0,1044,5,0,0 +2013,6,6,4,OO,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-5,0,1611,-15,0,0 +2013,6,29,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1440,16,1,1535,17,1,0 +2013,5,23,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,842,-5,0,1036,-7,0,0 +2013,4,15,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1953,15,1,2145,13,0,0 +2013,10,13,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1600,-3,0,1808,-23,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1728,1,0,2040,-26,0,0 +2013,9,8,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2125,-2,0,2352,2,0,0 +2013,8,19,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,-3,0,830,-7,0,0 +2013,8,16,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1125,7,0,1332,-2,0,0 +2013,8,17,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,-3,0,2149,-7,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1603,66,1,1800,63,1,0 +2013,10,4,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1130,-2,0,1234,-11,0,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1551,184,1,1740,185,1,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1644,5,0,1815,-1,0,0 +2013,9,22,7,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1823,-7,0,2003,-9,0,0 +2013,9,16,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1545,-4,0,1746,-21,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1516,5,0,1630,-1,0,0 +2013,6,17,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1149,6,0,1805,2,0,0 +2013,8,19,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,-9,0,1910,-21,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,2015,-2,0,2111,-9,0,0 +2013,4,3,3,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,94,1,914,115,1,0 +2013,9,5,4,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1425,-8,0,1615,-16,0,0 +2013,9,4,3,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-1,0,750,-24,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1259,-4,0,1759,-12,0,0 +2013,9,12,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1350,-4,0,1708,1,0,0 +2013,10,5,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1125,-9,0,1210,-16,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1950,-1,0,110,-17,0,0 +2013,8,4,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1315,4,0,1440,-3,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1925,13,0,2354,19,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1334,15,1,1528,19,1,0 +2013,8,13,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-1,0,950,5,0,0 +2013,8,20,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1805,-8,0,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1455,-3,0,1710,-8,0,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,605,-1,0,939,-1,0,0 +2013,8,17,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1510,1,0,1625,-13,0,0 +2013,8,5,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,2,0,1914,-9,0,0 +2013,9,2,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1740,3,0,1958,-1,0,0 +2013,10,9,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1027,-10,0,1131,-11,0,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1940,7,0,2109,-5,0,0 +2013,9,14,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,959,-3,0,1230,6,0,0 +2013,7,26,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,30,1,918,19,1,0 +2013,5,2,4,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-8,0,1145,-15,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,800,0,0,905,2,0,0 +2013,5,13,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,955,6,0,1130,17,1,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,11,0,2118,6,0,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1224,-6,0,1819,-24,0,0 +2013,10,25,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1657,6,0,1839,3,0,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2012,2,0,2215,0,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,-5,0,2019,-9,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1006,3,0,1255,21,1,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1011,-5,0,1107,-8,0,0 +2013,9,13,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,132,1,1727,150,1,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,2,0,855,2,0,0 +2013,8,21,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-7,0,2025,-7,0,0 +2013,6,13,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1519,-3,0,1815,-3,0,0 +2013,9,22,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,-5,0,1917,-21,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2240,5,0,2331,3,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,800,5,0,1223,-6,0,0 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-5,0,1643,-12,0,0 +2013,4,2,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,-11,0,2015,-28,0,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-5,0,1105,-9,0,0 +2013,8,29,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,605,-5,0,741,0,0,0 +2013,4,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,835,-2,0,930,-15,0,0 +2013,4,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,806,9,0,1100,5,0,0 +2013,5,15,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-2,0,1847,-9,0,0 +2013,4,18,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,920,-4,0,1118,-21,0,0 +2013,8,17,6,OO,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,30,1,1753,46,1,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1915,-4,0,2110,-12,0,0 +2013,10,12,6,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-3,0,810,-3,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1835,4,0,2050,4,0,0 +2013,10,31,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-1,0,825,-8,0,0 +2013,8,3,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,11,0,1925,-3,0,0 +2013,9,8,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,19,1,1835,14,0,0 +2013,8,14,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,166,1,2311,154,1,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,825,12,0,940,17,1,0 +2013,7,11,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1610,-5,0,1656,-9,0,0 +2013,10,25,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1221,-2,0,1519,-6,0,0 +2013,6,4,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-3,0,905,-7,0,0 +2013,10,27,7,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1850,-8,0,2025,-14,0,0 +2013,7,1,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,269,1,1237,305,1,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1613,-1,0,1730,0,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-5,0,1152,-14,0,0 +2013,6,30,7,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1315,28,1,1800,30,1,0 +2013,9,17,2,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1409,-4,0,1646,-13,0,0 +2013,9,14,6,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,600,-7,0,714,-13,0,0 +2013,4,8,1,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-1,0,1731,-11,0,0 +2013,6,15,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,722,-9,0,853,-22,0,0 +2013,10,24,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1140,-1,0,1145,-10,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2056,1,0,2212,-5,0,0 +2013,4,16,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,710,-4,0,1040,25,1,0 +2013,8,3,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,7,0,1855,1,0,0 +2013,9,20,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1231,66,1,1410,68,1,0 +2013,6,21,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1105,1,0,1110,-6,0,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1536,0,0,1620,0,0,0 +2013,8,21,3,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1935,13,0,2216,14,0,0 +2013,4,1,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1915,-4,0,2040,-9,0,0 +2013,9,16,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-8,0,1241,-16,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2145,32,1,2245,32,1,0 +2013,8,18,7,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2005,28,1,2245,26,1,0 +2013,9,14,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,908,-6,0,1038,-10,0,0 +2013,8,1,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,2,0,901,-10,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2224,60,1,2335,60,1,0 +2013,5,30,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,2057,126,1,2122,112,1,0 +2013,7,19,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-5,0,2350,-25,0,0 +2013,7,6,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1430,-2,0,1450,-11,0,0 +2013,9,12,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,104,1,1656,105,1,0 +2013,5,14,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,1953,-3,0,0 +2013,8,13,2,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-5,0,1858,1,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,-1,0,1327,-8,0,0 +2013,9,2,1,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1222,6,0,1432,-2,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2310,-5,0,520,0,0,0 +2013,10,2,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,21,1,1850,14,0,0 +2013,10,16,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,715,52,1,857,50,1,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1541,96,1,2028,126,1,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2359,-2,0,655,0,0,0 +2013,7,22,1,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-7,0,1957,-10,0,0 +2013,5,7,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,700,-9,0,808,-15,0,0 +2013,8,20,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1315,1,0,1425,-9,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1335,1,0,1440,-6,0,0 +2013,4,13,6,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,707,-4,0,954,4,0,0 +2013,10,13,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,957,13,0,1323,4,0,0 +2013,4,23,2,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,835,-4,0,1009,-5,0,0 +2013,6,26,3,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,-4,0,1054,-25,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1357,-6,0,1629,-10,0,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1555,0,0,1650,-12,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,-2,0,1440,-2,0,0 +2013,6,21,5,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1655,1,0,1825,-34,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1700,1,0,1805,14,0,0 +2013,7,16,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1310,98,1,1504,91,1,0 +2013,4,16,2,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,616,-4,0,1206,-31,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,8,0,1623,2,0,0 +2013,5,20,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,845,3,0,1025,2,0,0 +2013,9,4,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,2018,1,0,0 +2013,4,19,5,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1029,4,0,1248,8,0,0 +2013,4,29,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1410,5,0,1722,-3,0,0 +2013,4,2,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1338,-4,0,1529,-9,0,0 +2013,6,25,2,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1534,128,1,1715,133,1,0 +2013,6,5,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,635,-5,0,810,-7,0,0 +2013,5,28,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,-6,0,1349,-10,0,0 +2013,7,28,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,845,1,0,1413,-13,0,0 +2013,8,30,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2157,-5,0,2250,-19,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-1,0,1847,-16,0,0 +2013,10,28,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,1,0,1820,22,1,0 +2013,10,2,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-10,0,811,-29,0,0 +2013,10,27,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,925,-3,0,1035,-6,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,-2,0,943,-6,0,0 +2013,9,13,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,727,-8,0,1007,-15,0,0 +2013,10,15,2,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1800,-6,0,1916,-1,0,0 +2013,8,18,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1920,1,0,2045,-1,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2009,44,1,2206,26,1,0 +2013,6,14,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1315,20,1,1435,14,0,0 +2013,9,11,3,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1850,51,1,2205,53,1,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,-5,0,2327,-19,0,0 +2013,9,2,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1738,33,1,2111,31,1,0 +2013,8,3,6,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1518,-1,0,1739,-12,0,0 +2013,10,30,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1730,5,0,1854,19,1,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1729,1,0,2022,9,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2151,4,0,2349,-13,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,936,-8,0,1211,-1,0,0 +2013,6,23,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-1,0,1154,-5,0,0 +2013,5,18,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1006,-8,0,1118,-23,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1925,15,1,2250,40,1,0 +2013,4,12,5,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,833,14,0,905,22,1,0 +2013,6,15,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1600,5,0,1905,-11,0,0 +2013,4,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,0,,1315,0,1,1 +2013,5,29,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,855,-1,0,1455,12,0,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1227,-3,0,1250,-4,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-2,0,1245,-22,0,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,51,1,2248,33,1,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,2,0,2040,10,0,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1115,-7,0,1314,-5,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,900,46,1,1201,71,1,0 +2013,5,31,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-7,0,640,-14,0,0 +2013,6,23,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1205,2,0,1345,-6,0,0 +2013,10,28,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-6,0,1115,2,0,0 +2013,4,28,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,8,0,1905,7,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,815,-3,0,922,-3,0,0 +2013,5,22,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2210,53,1,15,33,1,0 +2013,10,1,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,16,1,1155,10,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1301,-1,0,1434,6,0,0 +2013,4,11,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1511,21,1,1804,2,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1440,6,0,1634,21,1,0 +2013,7,28,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-7,0,151,-13,0,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1725,4,0,2040,8,0,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-3,0,1415,-19,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,941,-1,0,1152,5,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1405,13,0,1840,61,1,0 +2013,6,13,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1533,180,1,1829,311,1,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1210,-7,0,1515,-25,0,0 +2013,5,9,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1517,93,1,1659,101,1,0 +2013,9,4,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1640,34,1,1835,37,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2005,17,1,2154,-4,0,0 +2013,5,7,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1706,-10,0,2344,-2,0,0 +2013,7,24,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,720,91,1,740,80,1,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-1,0,1735,-3,0,0 +2013,10,8,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2135,17,1,2300,0,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1830,0,0,2021,10,0,0 +2013,4,7,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1601,-3,0,1723,10,0,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1045,-1,0,1215,-14,0,0 +2013,7,11,4,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,10,0,1910,-10,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1230,-8,0,1355,-3,0,0 +2013,7,20,6,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,16,1,609,32,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1440,7,0,1601,-1,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1915,-7,0,2255,-2,0,0 +2013,10,3,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1220,9,0,1340,5,0,0 +2013,8,24,6,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1315,6,0,1910,-1,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,22,1,1600,11,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,-4,0,1925,-3,0,0 +2013,8,8,4,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-6,0,1805,2,0,0 +2013,7,20,6,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1105,27,1,1317,24,1,0 +2013,10,18,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,826,44,1,1048,22,1,0 +2013,7,28,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-5,0,1249,-4,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-3,0,815,-25,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1059,-5,0,1205,-2,0,0 +2013,4,4,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1739,-4,0,1906,-12,0,0 +2013,6,12,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1110,2,0,1413,-21,0,0 +2013,7,26,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,3,0,935,27,1,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2040,165,1,2154,158,1,0 +2013,4,16,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1604,70,1,1826,56,1,0 +2013,9,16,1,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2135,-3,0,543,-4,0,0 +2013,10,8,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,836,-6,0,0 +2013,6,4,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1505,-5,0,1655,-21,0,0 +2013,4,4,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1722,46,1,1954,59,1,0 +2013,5,19,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2130,18,1,547,19,1,0 +2013,4,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1200,205,1,1415,208,1,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1306,-6,0,1503,-4,0,0 +2013,5,22,3,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,730,-1,0,855,0,0,0 +2013,5,25,6,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1040,-1,0,1255,0,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,830,0,0,1045,-5,0,0 +2013,5,21,2,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,26,1,2100,8,0,0 +2013,5,5,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1120,-4,0,1334,-16,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1555,20,1,1830,7,0,0 +2013,10,31,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-2,0,1600,16,1,0 +2013,7,24,3,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,-1,0,1055,10,0,0 +2013,7,29,1,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-6,0,549,-23,0,0 +2013,10,24,4,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1328,9,0,1430,5,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,835,-2,0,1115,-31,0,0 +2013,9,15,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1600,8,0,1630,13,0,0 +2013,8,5,1,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-6,0,853,-8,0,0 +2013,5,15,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1830,-4,0,2121,-24,0,0 +2013,9,30,1,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,720,-10,0,1220,-16,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1915,20,1,2025,23,1,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-1,0,818,24,1,0 +2013,10,19,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1312,-7,0,1600,-5,0,0 +2013,6,29,6,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1515,51,1,1559,59,1,0 +2013,6,24,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-6,0,1045,-16,0,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,639,-7,0,834,-13,0,0 +2013,7,16,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,620,-1,0,755,-14,0,0 +2013,4,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-7,0,1349,-10,0,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1315,20,1,1445,23,1,0 +2013,8,2,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,600,-1,0,700,-11,0,0 +2013,8,23,5,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1120,-3,0,1322,-12,0,0 +2013,8,12,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1210,-3,0,1655,-8,0,0 +2013,5,5,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1550,-4,0,1817,-17,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,930,-3,0,1035,-10,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1130,203,1,1310,186,1,0 +2013,4,18,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,0,,1115,0,1,1 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,710,-5,0,1209,-18,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1838,11,0,2055,-6,0,0 +2013,8,18,7,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1208,-6,0,1311,-18,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,-5,0,1225,10,0,0 +2013,8,19,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,-5,0,1955,-5,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,0,0,1010,-5,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,825,0,0,1140,-20,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,815,-1,0,945,-17,0,0 +2013,7,3,3,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1244,29,1,1642,23,1,0 +2013,10,29,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,808,-4,0,1415,-43,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-6,0,1356,-22,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1255,3,0,1600,1,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1030,2,0,1243,-23,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,51,1,918,91,1,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2110,-2,0,2239,-11,0,0 +2013,8,2,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,-4,0,1303,-4,0,0 +2013,9,27,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1054,-1,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1136,-3,0,1307,-20,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1155,-5,0,1320,-1,0,0 +2013,8,24,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,30,1,1615,38,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,951,-2,0,1129,-1,0,0 +2013,10,13,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,-2,0,1506,-12,0,0 +2013,9,26,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1550,64,1,1730,39,1,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1345,1,0,1505,2,0,0 +2013,9,27,5,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1130,2,0,1303,3,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,20,1,1700,1,0,0 +2013,5,5,7,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1625,-7,0,1904,-15,0,0 +2013,6,15,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-4,0,1447,-15,0,0 +2013,4,20,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-6,0,1050,-16,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1625,0,,57,0,1,1 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1745,-8,0,1935,9,0,0 +2013,5,16,4,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-11,0,1742,-13,0,0 +2013,4,18,4,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,710,0,0,905,0,0,0 +2013,8,22,4,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,-4,0,1040,-13,0,0 +2013,6,8,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,13,0,1434,11,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,11,0,1240,17,1,0 +2013,8,18,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,16,1,1835,11,0,0 +2013,5,14,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,710,-5,0,914,-4,0,0 +2013,8,4,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,19,1,545,-1,0,0 +2013,7,30,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,22,1,2115,4,0,0 +2013,10,30,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2155,-6,0,2247,-16,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,740,-6,0,1101,-14,0,0 +2013,7,5,5,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,703,-7,0,1025,18,1,0 +2013,5,28,2,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,-5,0,1820,-15,0,0 +2013,5,5,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1250,3,0,1548,2,0,0 +2013,7,16,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-8,0,1110,15,1,0 +2013,7,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-3,0,1954,-12,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1500,0,0,1640,2,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1825,57,1,2035,54,1,0 +2013,4,27,6,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1025,-8,0,1308,-7,0,0 +2013,10,23,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,1522,-22,0,0 +2013,5,6,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,0,0,2115,-15,0,0 +2013,9,3,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,955,-7,0,1110,-9,0,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1440,23,1,1550,18,1,0 +2013,9,17,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1116,-9,0,1628,-15,0,0 +2013,9,17,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,27,1,1554,21,1,0 +2013,7,3,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,21,1,1605,15,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1635,-1,0,2019,-11,0,0 +2013,7,20,6,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,945,0,0,1215,-4,0,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-3,0,1200,-7,0,0 +2013,9,6,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,755,-4,0,1137,16,1,0 +2013,10,30,3,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1335,6,0,1500,-3,0,0 +2013,5,10,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-7,0,601,-3,0,0 +2013,7,8,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1359,14,0,1556,21,1,0 +2013,6,14,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1029,-5,0,1155,-15,0,0 +2013,10,24,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-5,0,1718,-14,0,0 +2013,9,6,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-7,0,1823,4,0,0 +2013,8,2,5,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2311,-6,0,458,-13,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1425,7,0,1635,-3,0,0 +2013,8,26,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1108,19,1,1211,10,0,0 +2013,5,10,5,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,97,1,1735,73,1,0 +2013,4,29,1,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,1420,-5,0,1722,-13,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1425,-1,0,1606,-8,0,0 +2013,6,4,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,2020,1,0,2118,-7,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,817,-6,0,1359,-5,0,0 +2013,4,3,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,746,5,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2115,-8,0,2241,-24,0,0 +2013,7,24,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1935,1,0,2000,-10,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,1,0,1505,-15,0,0 +2013,8,23,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1759,18,1,1959,28,1,0 +2013,10,20,7,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1931,-3,0,2305,-5,0,0 +2013,7,26,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-8,0,753,-11,0,0 +2013,4,27,6,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,44,1,2145,54,1,0 +2013,10,25,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1130,4,0,1230,3,0,0 +2013,6,10,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11042,Cleveland-Hopkins International,Cleveland,OH,2300,26,1,620,15,1,0 +2013,10,7,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,13,0,2115,9,0,0 +2013,9,3,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,17,1,1230,15,1,0 +2013,8,27,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-3,0,2145,-3,0,0 +2013,4,24,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,550,25,1,1111,8,0,0 +2013,9,13,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1540,-4,0,1905,-12,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,725,-3,0,1020,-15,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,1,0,1410,-14,0,0 +2013,4,8,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-3,0,840,-5,0,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1805,125,1,2315,113,1,0 +2013,8,26,1,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1113,-12,0,1329,-8,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1450,4,0,1630,11,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,100,1,1622,86,1,0 +2013,10,9,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,600,-2,0,900,-17,0,0 +2013,10,21,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1250,-1,0,1410,-13,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,630,2,0,917,10,0,0 +2013,9,2,1,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1130,2,0,1305,-6,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1925,1,0,2202,-2,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1623,20,1,100,5,0,0 +2013,10,10,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1520,-3,0,1725,-13,0,0 +2013,10,22,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1520,13,0,1840,12,0,0 +2013,10,8,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1320,-3,0,1435,-7,0,0 +2013,8,3,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,801,165,1,1030,175,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1255,0,0,1424,0,0,0 +2013,9,5,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1737,-9,0,1844,-16,0,0 +2013,9,14,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,16,1,1215,15,1,0 +2013,7,6,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,8,0,2014,2,0,0 +2013,4,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2045,-3,0,2215,-9,0,0 +2013,10,15,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,27,1,2020,48,1,0 +2013,10,23,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1712,3,0,1905,-15,0,0 +2013,6,10,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,848,6,0,0 +2013,6,18,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1130,-6,0,1428,-17,0,0 +2013,10,5,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1145,3,0,1315,-16,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,38,1,2019,21,1,0 +2013,5,25,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1417,9,0,1610,-13,0,0 +2013,6,17,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,-1,0,845,-1,0,0 +2013,4,11,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1527,14,0,1830,40,1,0 +2013,4,14,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1030,1,0,1205,5,0,0 +2013,8,19,1,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,4,0,920,-17,0,0 +2013,5,14,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,2,0,1300,-5,0,0 +2013,4,30,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,-6,0,2203,-15,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,-2,0,2207,14,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1000,-4,0,1151,-15,0,0 +2013,9,8,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-6,0,1110,-6,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,904,-5,0,1146,-24,0,0 +2013,9,22,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-5,0,1757,-11,0,0 +2013,7,16,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-7,0,820,-6,0,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,-3,0,1019,-5,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,20,1,2305,53,1,0 +2013,5,23,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,600,1,0,715,-6,0,0 +2013,10,5,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,749,249,1,935,238,1,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1155,-2,0,1320,-17,0,0 +2013,10,27,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1100,-5,0,1147,-16,0,0 +2013,5,4,6,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,725,-10,0,0 +2013,10,11,5,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-5,0,1531,-13,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,855,0,0,1030,-2,0,0 +2013,5,31,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1630,-5,0,1826,-12,0,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,-4,0,2253,-1,0,0 +2013,9,28,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1231,-2,0,2025,5,0,0 +2013,6,28,5,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1539,118,1,1610,104,1,0 +2013,6,11,2,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-4,0,1600,-3,0,0 +2013,7,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1828,6,0,2035,-1,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1840,5,0,2357,12,0,0 +2013,5,9,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1037,-6,0,1147,-11,0,0 +2013,6,6,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1010,16,1,1125,40,1,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,106,1,2126,117,1,0 +2013,4,10,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,0,,1340,0,1,1 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2105,6,0,2324,2,0,0 +2013,7,30,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1455,8,0,1640,5,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2020,-4,0,2125,-2,0,0 +2013,8,21,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2157,118,1,18,94,1,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,120,-2,0,615,-18,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1358,-1,0,1704,-20,0,0 +2013,9,16,1,OO,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1040,9,0,1305,-3,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2159,-3,0,2356,-13,0,0 +2013,10,18,5,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,12,0,1440,6,0,0 +2013,10,15,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1210,-1,0,1255,3,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1611,15,1,1811,8,0,0 +2013,4,8,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-8,0,1245,-31,0,0 +2013,6,27,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2342,-3,0,535,-2,0,0 +2013,5,10,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-6,0,1200,-11,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2146,13,0,42,4,0,0 +2013,8,14,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-1,0,1651,-2,0,0 +2013,5,18,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,935,-2,0,1302,-16,0,0 +2013,7,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1040,-4,0,1310,-5,0,0 +2013,9,29,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2225,-5,0,700,-6,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1615,-2,0,1710,-11,0,0 +2013,10,24,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,834,8,0,923,-2,0,0 +2013,5,18,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,149,1,1815,138,1,0 +2013,8,1,4,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1735,2,0,2030,15,1,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,645,12,0,900,0,0,0 +2013,6,25,2,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,8,0,1205,-4,0,0 +2013,10,29,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,-7,0,1759,-7,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1655,-3,0,1800,-4,0,0 +2013,9,15,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1145,-5,0,1245,-11,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1305,10,0,1620,-8,0,0 +2013,6,19,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,10,0,1035,8,0,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,809,25,1,932,23,1,0 +2013,6,21,5,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1835,-5,0,1940,-3,0,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1040,-3,0,1217,44,1,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,-1,0,538,-4,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-3,0,2010,-17,0,0 +2013,5,12,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1210,-6,0,1515,-24,0,0 +2013,10,17,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2005,-2,0,2135,-9,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2010,53,1,2320,64,1,0 +2013,6,22,6,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,939,-7,0,1100,-12,0,0 +2013,10,2,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-3,0,1657,-14,0,0 +2013,7,13,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,4,0,543,10,0,0 +2013,6,26,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1920,30,1,2100,26,1,0 +2013,9,10,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-7,0,648,-19,0,0 +2013,9,8,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,15,1,1803,8,0,0 +2013,10,16,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1124,-4,0,1419,-7,0,0 +2013,5,31,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,0,,1935,0,1,1 +2013,4,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1937,65,1,2155,72,1,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1535,5,0,1824,-5,0,0 +2013,5,3,5,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,281,1,1723,277,1,0 +2013,4,5,5,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1425,-1,0,1620,-8,0,0 +2013,10,25,5,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,643,-1,0,855,-1,0,0 +2013,6,16,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-2,0,1523,-12,0,0 +2013,9,6,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1710,-6,0,1941,7,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1541,5,0,1911,9,0,0 +2013,6,12,3,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1639,31,1,1930,5,0,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,725,-2,0,945,-22,0,0 +2013,7,13,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-6,0,1715,9,0,0 +2013,10,1,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,-8,0,1518,-13,0,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,199,1,1554,206,1,0 +2013,6,13,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,715,4,0,915,1,0,0 +2013,6,22,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,2,0,1757,7,0,0 +2013,4,14,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1050,-5,0,1210,-7,0,0 +2013,6,23,7,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1003,9,0,1233,11,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,925,39,1,1040,33,1,0 +2013,6,10,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,51,1,2245,47,1,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1905,0,0,2100,-14,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1438,3,0,1628,7,0,0 +2013,7,4,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-11,0,1800,-18,0,0 +2013,8,9,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1439,55,1,2251,38,1,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,845,17,1,955,10,0,0 +2013,6,4,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,600,-5,0,710,-4,0,0 +2013,10,2,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-2,0,1115,-7,0,0 +2013,6,26,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,-2,0,950,-14,0,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,72,1,1155,67,1,0 +2013,6,18,2,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,-2,0,1400,-14,0,0 +2013,10,25,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1822,-8,0,2108,-16,0,0 +2013,9,17,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-6,0,2024,7,0,0 +2013,7,1,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1105,18,1,1630,21,1,0 +2013,6,25,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1559,-7,0,1628,-3,0,0 +2013,8,23,5,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,12,0,1343,4,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-11,0,1808,-10,0,0 +2013,8,31,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1610,18,1,1725,11,0,0 +2013,7,13,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1125,-2,0,1331,18,1,0 +2013,7,12,5,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1850,15,1,2110,-7,0,0 +2013,6,14,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,800,0,0,1040,2,0,0 +2013,8,15,4,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,5,0,648,7,0,0 +2013,9,19,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1855,13,0,2100,17,1,0 +2013,8,9,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1505,6,0,1755,0,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1411,19,1,1620,-6,0,0 +2013,8,21,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1406,3,0,1724,3,0,0 +2013,4,11,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1132,2,0,1335,15,1,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,4,0,1645,-25,0,0 +2013,10,30,3,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,7,0,1445,-3,0,0 +2013,8,1,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-2,0,825,0,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1055,39,1,1200,61,1,0 +2013,4,18,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,725,-10,0,905,90,1,0 +2013,8,16,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-3,0,1036,3,0,0 +2013,6,18,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1619,-7,0,1913,0,0,0 +2013,4,14,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,2005,-1,0,2150,-8,0,0 +2013,8,12,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-2,0,1434,-20,0,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1050,-3,0,1459,-19,0,0 +2013,9,12,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-7,0,915,-13,0,0 +2013,8,18,7,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1325,0,0,1450,-5,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2115,0,0,2340,-13,0,0 +2013,10,4,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,924,-5,0,1112,-10,0,0 +2013,7,23,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,-1,0,1900,37,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2140,3,0,2255,14,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,1,0,1600,-2,0,0 +2013,4,18,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1703,256,1,1834,244,1,0 +2013,8,3,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,-1,0,1445,34,1,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1225,24,1,1935,4,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,830,0,0,1035,-2,0,0 +2013,5,18,6,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1724,-7,0,1905,-29,0,0 +2013,6,16,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,1,0,1305,-6,0,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,13,0,1609,20,1,0 +2013,8,4,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,647,-2,0,943,-3,0,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2140,-2,0,28,10,0,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-2,0,1350,7,0,0 +2013,10,20,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1810,49,1,2110,46,1,0 +2013,6,20,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2000,-2,0,2135,-5,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,17,1,1910,25,1,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,3,0,2102,10,0,0 +2013,10,7,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,2,0,2005,-19,0,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2145,-1,0,2332,-14,0,0 +2013,9,18,3,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-1,0,1226,-27,0,0 +2013,10,16,3,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1154,0,0,2025,-20,0,0 +2013,9,15,7,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1315,-6,0,1536,-6,0,0 +2013,4,12,5,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1215,5,0,1406,2,0,0 +2013,4,4,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1115,-2,0,1416,18,1,0 +2013,5,30,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-6,0,2212,-24,0,0 +2013,4,14,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1134,3,0,1249,7,0,0 +2013,4,27,6,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-6,0,1213,-14,0,0 +2013,5,27,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1835,-2,0,25,-3,0,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2143,6,0,2333,6,0,0 +2013,10,4,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1515,125,1,1630,121,1,0 +2013,8,15,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1032,-5,0,1129,-20,0,0 +2013,6,28,5,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1745,36,1,1800,29,1,0 +2013,5,18,6,WN,14307,Theodore Francis Green State,Providence,RI,14635,Southwest Florida International,Fort Myers,FL,1205,31,1,1515,12,0,0 +2013,6,7,5,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,42,1,928,29,1,0 +2013,5,3,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-4,0,1940,-21,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1335,15,1,1525,12,0,0 +2013,8,23,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,-9,0,730,-14,0,0 +2013,6,13,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,750,11,0,1005,2,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1505,0,0,2215,-12,0,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1220,-7,0,1240,-16,0,0 +2013,6,27,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1918,29,1,2110,33,1,0 +2013,10,30,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,1,0,1335,1,0,0 +2013,6,28,5,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,5,0,1055,-4,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1925,-5,0,2110,-16,0,0 +2013,6,13,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,6,0,1848,4,0,0 +2013,9,30,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-6,0,1922,-18,0,0 +2013,9,1,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,4,0,2100,7,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,1,0,1004,10,0,0 +2013,7,4,4,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1459,0,0,1746,-3,0,0 +2013,5,27,1,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2110,-6,0,2355,-11,0,0 +2013,6,26,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-7,0,659,-12,0,0 +2013,4,26,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-2,0,1648,-12,0,0 +2013,7,2,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1342,-8,0,1458,-22,0,0 +2013,8,5,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2125,0,0,2330,-15,0,0 +2013,7,11,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-8,0,2010,-6,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2120,12,0,2240,11,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,-3,0,1130,-27,0,0 +2013,10,9,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,720,-6,0,941,-15,0,0 +2013,6,10,1,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1000,0,0,1255,-16,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1215,168,1,1320,157,1,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1330,0,,1420,0,1,1 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1550,0,0,1711,-8,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-7,0,830,-11,0,0 +2013,9,11,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,530,-1,0,708,-14,0,0 +2013,4,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,3,0,1749,5,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,-1,0,1610,9,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1545,18,1,1806,-11,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2115,18,1,5,8,0,0 +2013,9,14,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1835,0,0,2124,23,1,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1358,-2,0,1542,-2,0,0 +2013,6,27,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,0,0,935,-5,0,0 +2013,10,20,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,-3,0,717,-9,0,0 +2013,8,2,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1849,-2,0,2131,-8,0,0 +2013,7,21,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1853,5,0,2030,-12,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,2,0,1500,0,0,0 +2013,4,13,6,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-4,0,1023,-29,0,0 +2013,7,24,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1231,41,1,1322,55,1,0 +2013,5,13,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,0,0,1636,6,0,0 +2013,8,5,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-3,0,1005,-5,0,0 +2013,6,29,6,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1500,10,0,1609,-2,0,0 +2013,5,15,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,-3,0,1600,-19,0,0 +2013,7,27,6,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-4,0,1800,-18,0,0 +2013,9,6,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1710,-11,0,2315,-6,0,0 +2013,4,27,6,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-15,0,714,-15,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1655,0,0,1814,3,0,0 +2013,8,4,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,6,0,2045,6,0,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1557,1,0,1845,-2,0,0 +2013,7,9,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,0,0,1750,11,0,0 +2013,9,23,1,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1845,13,0,1950,11,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,630,-1,0,755,-10,0,0 +2013,8,5,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1247,14,0,1542,18,1,0 +2013,9,21,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-2,0,1545,-7,0,0 +2013,4,25,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1800,-13,0,2032,-11,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,0,0,1555,-6,0,0 +2013,6,29,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1040,8,0,1135,-1,0,0 +2013,9,6,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-9,0,812,-19,0,0 +2013,7,29,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1110,-10,0,1314,-25,0,0 +2013,9,11,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-3,0,2020,3,0,0 +2013,8,21,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1723,16,1,1825,8,0,0 +2013,9,30,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-3,0,1013,-2,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,2,0,1229,-21,0,0 +2013,9,21,6,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,1,0,1017,5,0,0 +2013,7,9,2,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-3,0,2105,0,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,-1,0,1250,0,0,0 +2013,6,7,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,-3,0,1303,-20,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,30,1,2035,37,1,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-8,0,1737,-12,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,4,0,2110,-8,0,0 +2013,7,13,6,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,-5,0,949,-19,0,0 +2013,4,16,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,20,1,1930,19,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1727,1,0,1910,-10,0,0 +2013,5,26,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,3,0,1850,11,0,0 +2013,10,31,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1736,14,0,1949,-6,0,0 +2013,7,26,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1555,-5,0,0 +2013,6,19,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,1,0,1310,-5,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1310,15,1,1605,14,0,0 +2013,4,10,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,-8,0,1825,-18,0,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1515,-4,0,1615,-7,0,0 +2013,7,15,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,620,23,1,1225,28,1,0 +2013,8,26,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-8,0,638,5,0,0 +2013,7,15,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,-12,0,14,22,1,0 +2013,8,24,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,641,-6,0,800,-2,0,0 +2013,5,13,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1520,-2,0,1625,-12,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,5,0,1601,4,0,0 +2013,8,7,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1910,8,0,2050,14,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-6,0,1151,-13,0,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1715,-4,0,1843,-23,0,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1720,0,0,1849,-15,0,0 +2013,10,19,6,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-8,0,1221,27,1,0 +2013,5,22,3,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1358,103,1,1413,197,1,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1005,19,1,1115,13,0,0 +2013,6,23,7,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,515,-4,0,520,-14,0,0 +2013,4,24,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,913,-12,0,0 +2013,8,13,2,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,600,-4,0,730,-8,0,0 +2013,10,3,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-5,0,1113,-29,0,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1714,-4,0,1839,-22,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,940,5,0,1415,14,0,0 +2013,5,13,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,-1,0,1355,-30,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2110,26,1,2349,13,0,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-4,0,955,-7,0,0 +2013,10,14,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-2,0,1605,-11,0,0 +2013,5,29,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,0,,1825,0,1,1 +2013,6,17,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,1307,-7,0,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2130,-1,0,2240,-1,0,0 +2013,10,14,1,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1158,-5,0,1402,-7,0,0 +2013,7,14,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,705,-1,0,835,-9,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,830,9,0,1005,34,1,0 +2013,10,14,1,9E,12953,LaGuardia,New York,NY,12339,Indianapolis International,Indianapolis,IN,1000,-3,0,1234,3,0,0 +2013,8,20,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,855,-5,0,955,-10,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,6,0,1756,-1,0,0 +2013,9,22,7,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1725,-1,0,1930,-4,0,0 +2013,5,12,7,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1255,0,0,1550,-14,0,0 +2013,10,9,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1709,-3,0,1840,4,0,0 +2013,5,20,1,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,712,-4,0,931,-5,0,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1136,-6,0,1307,-22,0,0 +2013,7,23,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-10,0,1220,-12,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,8,0,1550,-9,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,3,0,2123,-5,0,0 +2013,7,14,7,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1925,0,,2033,0,1,1 +2013,4,17,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1455,15,1,2329,20,1,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1640,78,1,2315,75,1,0 +2013,6,26,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1805,3,0,2120,-3,0,0 +2013,6,23,7,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,813,3,0,1025,-7,0,0 +2013,10,12,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1829,-9,0,1958,-14,0,0 +2013,5,4,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1000,-7,0,1235,-18,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1805,5,0,2320,-6,0,0 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1155,-6,0,2026,-11,0,0 +2013,7,20,6,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,1,0,1225,-19,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,850,2,0,1125,0,0,0 +2013,4,18,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1125,1,0,1250,1,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1035,6,0,1200,26,1,0 +2013,10,13,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,34,1,1530,32,1,0 +2013,5,25,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1330,-9,0,1525,-12,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2230,7,0,5,-10,0,0 +2013,5,20,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,25,1,955,12,0,0 +2013,6,7,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,3,0,1412,10,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1520,12,0,1740,4,0,0 +2013,6,12,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-4,0,1222,-9,0,0 +2013,4,5,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,-6,0,1730,2,0,0 +2013,9,5,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-3,0,725,-25,0,0 +2013,5,27,1,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-2,0,845,-14,0,0 +2013,9,9,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1325,7,0,1625,-6,0,0 +2013,9,13,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1708,240,1,1833,239,1,0 +2013,6,30,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2115,15,1,2328,17,1,0 +2013,10,22,2,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,803,-5,0,1019,-15,0,0 +2013,5,27,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,-6,0,1410,-3,0,0 +2013,4,25,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,630,-9,0,805,-18,0,0 +2013,6,12,3,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1645,31,1,2057,95,1,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2110,71,1,2251,63,1,0 +2013,4,18,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,555,0,,701,0,1,1 +2013,4,26,5,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1920,70,1,2022,71,1,0 +2013,9,11,3,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,69,1,1545,61,1,0 +2013,4,2,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1948,27,1,2234,18,1,0 +2013,7,19,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1414,-6,0,1543,-1,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-4,0,1812,-5,0,0 +2013,4,1,1,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1655,-5,0,1854,-2,0,0 +2013,7,19,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1942,0,,2140,0,1,1 +2013,9,1,7,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2225,-4,0,627,8,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-3,0,1251,-15,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1935,24,1,2150,25,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,725,-1,0,845,8,0,0 +2013,4,19,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,7,0,1010,13,0,0 +2013,4,26,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1835,-6,0,2205,-25,0,0 +2013,4,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,951,0,0,1614,-8,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2046,7,0,2356,-1,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2010,-3,0,2121,-3,0,0 +2013,6,25,2,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1710,30,1,1930,48,1,0 +2013,4,30,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,758,-30,0,0 +2013,5,26,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,-5,0,1840,-5,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,12,0,1435,9,0,0 +2013,9,16,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-2,0,1933,-1,0,0 +2013,4,23,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,625,-5,0,800,-5,0,0 +2013,8,25,7,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-6,0,2047,-11,0,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1555,-3,0,1715,-15,0,0 +2013,9,2,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-1,0,2203,8,0,0 +2013,8,1,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,-2,0,2135,13,0,0 +2013,10,28,1,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-3,0,1053,4,0,0 +2013,4,12,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,915,23,1,935,17,1,0 +2013,4,22,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,-3,0,935,-13,0,0 +2013,5,15,3,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,755,0,0,1020,-4,0,0 +2013,9,5,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2050,-10,0,2301,-2,0,0 +2013,4,19,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,740,5,0,805,27,1,0 +2013,6,30,7,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2100,-7,0,525,1,0,0 +2013,4,13,6,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,635,-9,0,759,0,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,-4,0,1621,-11,0,0 +2013,5,6,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-5,0,929,-7,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1800,0,,2020,0,1,1 +2013,5,24,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1945,-2,0,2145,-1,0,0 +2013,6,9,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,8,0,2100,7,0,0 +2013,6,26,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,91,1,1234,74,1,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2030,135,1,2155,128,1,0 +2013,7,17,3,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1650,15,1,1808,15,1,0 +2013,9,25,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-9,0,835,-17,0,0 +2013,10,18,5,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,-7,0,1011,1,0,0 +2013,9,13,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1120,65,1,1330,59,1,0 +2013,9,3,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1135,-4,0,1710,-23,0,0 +2013,8,31,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1510,18,1,1635,9,0,0 +2013,6,27,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1250,-10,0,1423,-11,0,0 +2013,8,20,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1932,-4,0,2244,5,0,0 +2013,5,4,6,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1845,-10,0,2019,-23,0,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-1,0,1044,-22,0,0 +2013,6,11,2,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1700,-4,0,1814,-12,0,0 +2013,5,11,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,819,-8,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1525,42,1,1650,45,1,0 +2013,5,12,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,-9,0,1636,-11,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1945,5,0,2235,-2,0,0 +2013,5,18,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-6,0,1908,-11,0,0 +2013,5,31,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,550,-10,0,715,-23,0,0 +2013,8,31,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,-5,0,1814,-35,0,0 +2013,5,5,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,38,1,1206,26,1,0 +2013,4,19,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1835,71,1,2020,93,1,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,2,0,1430,-6,0,0 +2013,9,6,5,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1450,-2,0,1700,10,0,0 +2013,4,1,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,1343,-7,0,0 +2013,10,28,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1230,10,0,1409,24,1,0 +2013,6,19,3,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,5,0,550,48,1,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1920,38,1,25,30,1,0 +2013,4,10,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1630,-3,0,1756,1,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,9,0,2203,4,0,0 +2013,4,6,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,806,-8,0,857,-5,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1233,-4,0,1723,-9,0,0 +2013,4,2,2,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-12,0,1655,-28,0,0 +2013,8,7,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1530,54,1,1650,57,1,0 +2013,10,17,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,600,1,0,725,-11,0,0 +2013,5,12,7,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,-3,0,2032,22,1,0 +2013,5,4,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-2,0,727,-8,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,851,4,0,1135,10,0,0 +2013,8,6,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1745,-10,0,1856,-17,0,0 +2013,4,4,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,600,-1,0,715,-6,0,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,0,0,1447,-9,0,0 +2013,10,15,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,741,-5,0,851,-4,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2004,20,1,2135,16,1,0 +2013,10,11,5,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-4,0,1351,-2,0,0 +2013,7,28,7,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,-5,0,1645,8,0,0 +2013,6,1,6,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-6,0,2054,-28,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1035,-5,0,1135,-1,0,0 +2013,8,21,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,812,32,1,901,35,1,0 +2013,9,27,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1740,-5,0,1900,15,1,0 +2013,10,29,2,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,809,0,0,904,2,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,945,3,0,1115,-2,0,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1049,-11,0,1830,-25,0,0 +2013,7,8,1,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-1,0,1239,-18,0,0 +2013,4,7,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,907,-5,0,1138,-12,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1025,-2,0,1207,-11,0,0 +2013,4,17,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1620,96,1,2215,97,1,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1930,28,1,2200,38,1,0 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,15,1,2112,96,1,0 +2013,4,17,3,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1023,25,1,1124,11,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1055,-4,0,1233,-8,0,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,-3,0,1140,-6,0,0 +2013,7,28,7,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,625,-4,0,720,-9,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2005,-5,0,2206,0,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,74,1,2334,54,1,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1000,0,,1259,0,1,1 +2013,8,27,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1250,0,0,1606,8,0,0 +2013,9,15,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,0,0,853,-3,0,0 +2013,6,13,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1935,14,0,1950,22,1,0 +2013,6,15,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-8,0,621,-15,0,0 +2013,10,8,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-8,0,1120,-10,0,0 +2013,8,27,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1100,-5,0,1120,-12,0,0 +2013,7,12,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,13,0,2115,29,1,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1105,-4,0,1325,21,1,0 +2013,8,27,2,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,12,0,1705,9,0,0 +2013,6,26,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1310,180,1,1939,149,1,0 +2013,7,15,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-6,0,2010,3,0,0 +2013,9,11,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,-6,0,2300,-7,0,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1205,-3,0,1656,6,0,0 +2013,7,1,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,0,,1635,0,1,1 +2013,7,18,4,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,2033,-9,0,2142,7,0,0 +2013,6,30,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1538,142,1,1913,128,1,0 +2013,10,25,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1312,-3,0,1618,-14,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,-3,0,1424,-24,0,0 +2013,6,13,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,825,24,1,1040,16,1,0 +2013,4,20,6,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,85,1,1830,86,1,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,645,-9,0,927,-14,0,0 +2013,7,20,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,-6,0,1558,-9,0,0 +2013,7,24,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1112,1,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1950,-1,0,2310,-7,0,0 +2013,5,28,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,720,-14,0,0 +2013,7,22,1,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1105,67,1,1505,81,1,0 +2013,7,9,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,710,3,0,0 +2013,8,16,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-7,0,1654,8,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,-3,0,1525,-11,0,0 +2013,10,9,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,-3,0,1925,-2,0,0 +2013,7,28,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1115,-6,0,1406,-6,0,0 +2013,4,3,3,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-1,0,1243,14,0,0 +2013,8,11,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,-3,0,1740,-20,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,730,-3,0,1030,-5,0,0 +2013,8,2,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,-1,0,1355,4,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,76,1,1300,52,1,0 +2013,6,23,7,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1414,258,1,2245,260,1,0 +2013,10,11,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1215,1,0,1409,-10,0,0 +2013,5,3,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1235,2,0,1345,0,0,0 +2013,7,9,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,1,0,840,8,0,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1334,-3,0,1432,-9,0,0 +2013,10,23,3,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1225,1,0,1315,-2,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1605,33,1,1900,28,1,0 +2013,9,24,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,744,-11,0,904,6,0,0 +2013,5,5,7,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,710,-6,0,1001,-32,0,0 +2013,10,8,2,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1251,-1,0,1501,11,0,0 +2013,5,14,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1650,0,0,1740,-7,0,0 +2013,7,13,6,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,17,1,1850,11,0,0 +2013,4,22,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-1,0,919,-8,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,20,1,1420,9,0,0 +2013,5,26,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1420,-3,0,1527,-5,0,0 +2013,9,10,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,29,1,2305,28,1,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,925,1,0,1205,3,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1645,-2,0,1805,0,0,0 +2013,5,10,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1825,-2,0,1925,1,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1134,-6,0,1404,-1,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2013,-3,0,2122,-16,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2140,16,1,35,11,0,0 +2013,6,15,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,945,-4,0,0 +2013,5,4,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,15,1,1414,50,1,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1145,-3,0,1325,-14,0,0 +2013,8,24,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1426,-1,0,1717,-17,0,0 +2013,9,8,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1930,-7,0,2210,-11,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,4,0,2100,-1,0,0 +2013,10,20,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,935,1,0,1154,8,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,16,1,1250,12,0,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2109,4,0,2302,-29,0,0 +2013,8,7,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,11,0,1858,3,0,0 +2013,10,27,7,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1800,-2,0,2215,-29,0,0 +2013,9,21,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1345,23,1,1544,23,1,0 +2013,8,5,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,-8,0,913,-9,0,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,1,0,905,-14,0,0 +2013,4,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,1,0,1028,7,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2015,20,1,2145,21,1,0 +2013,6,4,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-4,0,1630,-2,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1905,94,1,10,86,1,0 +2013,8,28,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1330,-3,0,1639,-14,0,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2055,-6,0,2325,-14,0,0 +2013,4,14,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-4,0,1105,-8,0,0 +2013,7,12,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1855,150,1,2215,171,1,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,-5,0,2039,-11,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2140,33,1,20,36,1,0 +2013,9,29,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,-4,0,1400,-32,0,0 +2013,4,27,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1702,2,0,134,1,0,0 +2013,8,19,1,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1059,-1,0,1215,-2,0,0 +2013,8,14,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1315,2,0,1455,-6,0,0 +2013,6,28,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2044,52,1,2324,51,1,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,-8,0,1743,24,1,0 +2013,6,3,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1345,-5,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,20,1,2330,9,0,0 +2013,5,20,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1240,3,0,1600,11,0,0 +2013,7,13,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1505,43,1,1630,37,1,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1738,10,0,1855,-2,0,0 +2013,9,25,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1011,-11,0,1217,5,0,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1644,78,1,1820,73,1,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,3,0,1255,3,0,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1935,28,1,2250,10,0,0 +2013,9,23,1,9E,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-2,0,2029,-8,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1555,39,1,1710,37,1,0 +2013,8,2,5,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1659,92,1,1959,83,1,0 +2013,7,25,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-3,0,1916,-16,0,0 +2013,7,19,5,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,16,1,2115,27,1,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,700,1,0,1529,0,0,0 +2013,7,27,6,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1932,-4,0,815,-1,0,0 +2013,10,28,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1117,-3,0,1209,7,0,0 +2013,8,16,5,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1647,-1,0,1900,-2,0,0 +2013,9,10,2,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,920,-2,0,1110,6,0,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-2,0,1823,-10,0,0 +2013,8,3,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1753,20,1,2015,-1,0,0 +2013,8,2,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,23,1,949,16,1,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,1,0,1110,-6,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,-3,0,1720,-7,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1020,8,0,1320,-6,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1355,66,1,1558,56,1,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,805,-5,0,1120,-12,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1450,4,0,1602,-9,0,0 +2013,10,15,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,4,0,1922,-15,0,0 +2013,9,2,1,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,900,-9,0,1359,1,0,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1320,2,0,1612,-25,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1100,6,0,1205,4,0,0 +2013,4,21,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,833,2,0,1407,-14,0,0 +2013,7,12,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,-1,0,2223,5,0,0 +2013,9,28,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1012,-4,0,1154,4,0,0 +2013,6,3,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,-4,0,835,-3,0,0 +2013,9,11,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1925,44,1,2045,40,1,0 +2013,4,8,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,625,-5,0,1021,-5,0,0 +2013,9,25,3,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,-8,0,1921,-20,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,-1,0,1018,-7,0,0 +2013,6,23,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-6,0,837,-19,0,0 +2013,9,2,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,3,0,1355,0,0,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1900,2,0,2025,-3,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,2005,18,1,2120,16,1,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1845,58,1,2305,43,1,0 +2013,8,12,1,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1145,30,1,1241,20,1,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,945,4,0,1245,-4,0,0 +2013,5,27,1,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-1,0,2218,-11,0,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1105,3,0,1325,-8,0,0 +2013,10,12,6,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1558,-7,0,1827,-20,0,0 +2013,9,5,4,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1636,47,1,1735,44,1,0 +2013,6,14,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1025,17,1,1425,-1,0,0 +2013,10,13,7,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,955,6,0,1435,1,0,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,630,-8,0,813,-25,0,0 +2013,7,27,6,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,750,15,1,1130,6,0,0 +2013,5,7,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,751,-3,0,1044,-4,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2130,-1,0,2340,5,0,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,37,1,1833,34,1,0 +2013,5,24,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-2,0,1807,-11,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2155,0,0,2315,3,0,0 +2013,5,26,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1047,-9,0,0 +2013,7,31,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,-2,0,1612,-1,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1630,4,0,1925,18,1,0 +2013,8,22,4,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1146,-8,0,1704,-17,0,0 +2013,6,10,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,730,4,0,930,1,0,0 +2013,10,5,6,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1005,1,0,1439,9,0,0 +2013,7,28,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,605,4,0,745,6,0,0 +2013,5,16,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1912,0,0,2150,14,0,0 +2013,5,24,5,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1326,197,1,1830,187,1,0 +2013,8,9,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-10,0,1420,-15,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1650,-3,0,2105,-35,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1051,-4,0,1425,-20,0,0 +2013,6,15,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-1,0,1040,3,0,0 +2013,10,20,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1933,23,1,2025,18,1,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1815,57,1,2020,56,1,0 +2013,6,30,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,0,0,1250,-6,0,0 +2013,4,8,1,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,800,-4,0,1100,-4,0,0 +2013,4,6,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1245,33,1,1756,23,1,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,600,-4,0,845,-14,0,0 +2013,9,10,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,2,0,2040,7,0,0 +2013,9,16,1,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1640,24,1,1800,14,0,0 +2013,8,27,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-4,0,848,-7,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1817,17,1,1952,-3,0,0 +2013,6,21,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,6,0,1530,-1,0,0 +2013,8,23,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1730,-9,0,1851,-5,0,0 +2013,5,1,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1130,-2,0,1230,-2,0,0 +2013,9,29,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,830,-4,0,1055,-25,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1220,-2,0,1432,-14,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1754,0,0,1841,7,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,855,3,0,1550,13,0,0 +2013,8,15,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1642,4,0,1920,-16,0,0 +2013,4,17,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1730,8,0,1850,-2,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,11,0,1150,19,1,0 +2013,8,14,3,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-5,0,1349,5,0,0 +2013,9,18,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1435,-9,0,1658,4,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1348,-4,0,1505,-14,0,0 +2013,4,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1707,-3,0,1757,-6,0,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,61,1,2145,53,1,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,605,-4,0,941,-11,0,0 +2013,10,12,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,8,0,1244,12,0,0 +2013,4,13,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-7,0,1022,-22,0,0 +2013,6,1,6,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,-4,0,1105,-1,0,0 +2013,10,22,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,536,-13,0,717,-13,0,0 +2013,7,6,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,-14,0,1815,-18,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1335,-4,0,1520,-15,0,0 +2013,10,1,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,735,-4,0,831,-9,0,0 +2013,4,13,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,650,-2,0,810,2,0,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,730,-5,0,945,-4,0,0 +2013,4,21,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-10,0,1725,-9,0,0 +2013,5,17,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,4,0,1155,1,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,854,2,0,1214,-11,0,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1045,-3,0,1325,-15,0,0 +2013,7,30,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,-2,0,1740,-13,0,0 +2013,5,8,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1835,18,1,2225,28,1,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,0,0,1533,-3,0,0 +2013,4,26,5,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,755,57,1,1600,43,1,0 +2013,5,21,2,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1524,20,1,1739,23,1,0 +2013,4,12,5,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1915,4,0,2105,3,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1945,-2,0,2150,-1,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1040,60,1,1250,55,1,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1140,4,0,1323,-18,0,0 +2013,9,20,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-6,0,1121,-6,0,0 +2013,5,5,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,-7,0,1859,-16,0,0 +2013,9,11,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-5,0,1009,-27,0,0 +2013,4,12,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-3,0,1039,-4,0,0 +2013,5,25,6,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1731,50,1,2040,46,1,0 +2013,8,21,3,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1620,-2,0,1843,-1,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,-3,0,2225,-20,0,0 +2013,10,29,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2053,6,0,500,-17,0,0 +2013,9,6,5,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-7,0,1335,3,0,0 +2013,5,29,3,9E,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,-4,0,1616,-16,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,9,0,1030,-2,0,0 +2013,9,19,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1720,6,0,1840,5,0,0 +2013,8,31,6,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1820,-5,0,2048,-25,0,0 +2013,10,30,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1429,-5,0,1546,11,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1130,38,1,1515,25,1,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2010,45,1,2105,34,1,0 +2013,8,26,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-3,0,1934,-9,0,0 +2013,10,26,6,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,6,0,1505,28,1,0 +2013,5,5,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-2,0,1340,-16,0,0 +2013,7,31,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,29,1,1627,26,1,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,820,-1,0,1155,2,0,0 +2013,7,18,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1215,1,0,1500,-6,0,0 +2013,9,27,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1010,35,1,1140,18,1,0 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,-1,0,1240,-24,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1857,6,0,2110,-13,0,0 +2013,8,12,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-2,0,838,-8,0,0 +2013,7,19,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,0,,1915,0,1,1 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,605,8,0,730,-1,0,0 +2013,5,7,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,26,1,1300,19,1,0 +2013,8,14,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1853,19,1,2151,5,0,0 +2013,7,22,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,753,-1,0,1125,2,0,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1910,9,0,2254,1,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1535,49,1,1640,50,1,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,820,9,0,930,5,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1850,0,0,2210,-21,0,0 +2013,8,13,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,8,0,1345,11,0,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1959,-6,0,2247,-18,0,0 +2013,8,4,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,720,-3,0,1019,-12,0,0 +2013,7,19,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,14,0,1818,14,0,0 +2013,9,3,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,645,-5,0,1519,-12,0,0 +2013,7,27,6,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1210,-3,0,1545,-22,0,0 +2013,5,2,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,3,0,2030,-8,0,0 +2013,4,21,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1525,67,1,2326,52,1,0 +2013,5,24,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,2,0,1805,-21,0,0 +2013,7,17,3,OO,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1232,19,1,1606,27,1,0 +2013,10,27,7,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,-2,0,1506,-24,0,0 +2013,5,5,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,740,-13,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,12,0,914,0,0,0 +2013,9,5,4,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1440,0,0,1820,-7,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1030,55,1,1800,45,1,0 +2013,4,8,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,-3,0,1920,-34,0,0 +2013,4,22,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1255,-10,0,1416,-12,0,0 +2013,7,20,6,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,603,-11,0,818,-1,0,0 +2013,5,11,6,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1230,1,0,1420,-7,0,0 +2013,9,4,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-2,0,1417,-34,0,0 +2013,9,22,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1035,-5,0,1345,-15,0,0 +2013,10,12,6,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1015,-7,0,1321,-16,0,0 +2013,6,23,7,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,810,-6,0,1610,1,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1000,-4,0,1344,-17,0,0 +2013,10,25,5,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-2,0,2015,-20,0,0 +2013,7,23,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,850,19,1,0 +2013,7,13,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,0,,1035,0,1,1 +2013,7,27,6,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1715,2,0,1946,-4,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,-4,0,1458,-16,0,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1040,18,1,1210,12,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1016,-2,0,1049,25,1,0 +2013,6,5,3,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2018,7,0,2159,1,0,0 +2013,10,14,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1401,7,0,1552,-2,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,83,1,1730,72,1,0 +2013,5,5,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2010,-4,0,2225,-31,0,0 +2013,6,3,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,2,0,1810,2,0,0 +2013,8,13,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1319,24,1,1919,-9,0,0 +2013,8,14,3,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1508,-4,0,1609,-19,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1725,26,1,1840,28,1,0 +2013,8,15,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,1040,-23,0,0 +2013,6,15,6,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1046,-1,0,1212,13,0,0 +2013,8,15,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1640,34,1,1755,29,1,0 +2013,5,31,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1213,-1,0,1307,-6,0,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,905,5,0,1110,12,0,0 +2013,6,18,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1230,14,0,1335,15,1,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1859,-5,0,2329,-12,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-5,0,1937,-14,0,0 +2013,8,1,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-5,0,1440,-2,0,0 +2013,7,4,4,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,834,0,0,1032,-5,0,0 +2013,6,21,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1915,1,0,2159,-16,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1258,13,0,1413,13,0,0 +2013,10,8,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1513,-5,0,1637,-14,0,0 +2013,9,1,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,13,0,1803,17,1,0 +2013,9,4,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,-10,0,2050,-2,0,0 +2013,9,3,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-3,0,1335,-5,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,756,-2,0,934,22,1,0 +2013,6,28,5,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,810,4,0,1025,19,1,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,955,16,1,1700,28,1,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,-4,0,951,2,0,0 +2013,8,20,2,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-7,0,2140,-23,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1100,14,0,1240,8,0,0 +2013,7,10,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1045,-5,0,1259,-2,0,0 +2013,7,18,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,-2,0,1552,5,0,0 +2013,9,15,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1107,7,0,0 +2013,7,3,3,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,5,0,2025,9,0,0 +2013,10,27,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,940,-3,0,1220,-1,0,0 +2013,7,25,4,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1258,-1,0,1526,-3,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1022,-5,0,1200,-34,0,0 +2013,6,21,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1930,-6,0,2056,-9,0,0 +2013,9,1,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,720,-6,0,1143,6,0,0 +2013,6,9,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-4,0,1648,-5,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,744,-2,0,1005,-4,0,0 +2013,4,14,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,15,1,1035,13,0,0 +2013,5,31,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,-1,0,1344,-18,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,5,0,855,0,0,0 +2013,6,12,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,6,0,1215,7,0,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1941,-2,0,2113,-15,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1640,-5,0,1800,-7,0,0 +2013,8,27,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1330,-2,0,2120,7,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1329,1,0,1811,-10,0,0 +2013,8,27,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-7,0,749,-15,0,0 +2013,9,30,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-4,0,845,-15,0,0 +2013,4,4,4,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,825,-2,0,945,-15,0,0 +2013,5,6,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,-2,0,1615,-9,0,0 +2013,6,6,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,530,0,0,1115,-23,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-5,0,1616,-8,0,0 +2013,7,30,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,,755,0,1,1 +2013,4,24,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1900,22,1,19,8,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,900,0,0,1200,21,1,0 +2013,4,21,7,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1720,15,1,2209,-9,0,0 +2013,10,7,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-14,0,2055,-17,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2225,-1,0,2347,55,1,0 +2013,6,6,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,700,-7,0,807,-6,0,0 +2013,8,14,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,941,11,0,1225,1,0,0 +2013,9,3,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,4,0,1140,-10,0,0 +2013,10,2,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,705,0,0,805,-13,0,0 +2013,4,24,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1430,-3,0,1550,-1,0,0 +2013,7,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-6,0,940,-7,0,0 +2013,8,7,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1425,52,1,1530,49,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,1,0,1830,-10,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,3,0,1109,-23,0,0 +2013,4,13,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-6,0,1906,-15,0,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1405,3,0,1650,-11,0,0 +2013,8,13,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-4,0,1347,-14,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-4,0,1248,-6,0,0 +2013,7,14,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,-2,0,1255,-3,0,0 +2013,9,25,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,828,-6,0,1005,-13,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1310,1,0,1600,-1,0,0 +2013,6,14,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,110,1,1940,109,1,0 +2013,7,15,1,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,27,1,2030,9,0,0 +2013,4,13,6,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,555,-1,0,804,-17,0,0 +2013,6,22,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1503,0,,1640,0,1,1 +2013,10,13,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,1021,-14,0,0 +2013,4,20,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1800,-5,0,1935,-32,0,0 +2013,10,17,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,17,1,1320,14,0,0 +2013,6,20,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,0,0,1605,-4,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,202,1,1905,231,1,0 +2013,6,27,4,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1040,9,0,1640,25,1,0 +2013,9,24,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1245,2,0,1837,-3,0,0 +2013,6,30,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1430,31,1,1605,41,1,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1453,62,1,1610,60,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1252,15,1,1515,0,0,0 +2013,6,7,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,859,-1,0,1151,2,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,7,0,1201,0,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,-3,0,1918,20,1,0 +2013,8,26,1,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1720,39,1,1855,28,1,0 +2013,6,29,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1741,-4,0,1931,-28,0,0 +2013,6,9,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1405,-3,0,1524,-1,0,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1535,7,0,1625,2,0,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1435,-8,0,1710,-25,0,0 +2013,7,5,5,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1720,-6,0,1901,-3,0,0 +2013,7,23,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,5,0,1810,-2,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,23,1,1930,3,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1346,0,0,1555,-19,0,0 +2013,8,3,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-2,0,1630,-19,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1430,9,0,1620,4,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1825,16,1,2005,62,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,0,0,1856,-20,0,0 +2013,9,29,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2040,29,1,2215,20,1,0 +2013,9,6,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-4,0,1410,14,0,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,6,0,1715,22,1,0 +2013,9,3,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1110,6,0,1220,1,0,0 +2013,6,27,4,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-9,0,900,-16,0,0 +2013,10,3,4,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1114,-2,0,1424,-16,0,0 +2013,8,9,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1452,-7,0,1601,-20,0,0 +2013,6,4,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,1406,0,0,0 +2013,5,12,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-9,0,1112,-8,0,0 +2013,8,16,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,641,-5,0,800,-10,0,0 +2013,10,22,2,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1625,-6,0,1755,-16,0,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1025,2,0,1308,-2,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,0,,1820,0,1,1 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-1,0,937,-12,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,945,29,1,1055,41,1,0 +2013,5,7,2,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,800,28,1,1105,33,1,0 +2013,7,14,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2000,0,0,2015,20,1,0 +2013,10,21,1,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1005,4,0,1155,-6,0,0 +2013,10,8,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1053,-1,0,1416,0,0,0 +2013,10,29,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-4,0,1722,0,0,0 +2013,6,30,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,20,1,1448,10,0,0 +2013,4,30,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1225,10,0,1335,15,1,0 +2013,9,9,1,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1200,-4,0,1300,-13,0,0 +2013,5,12,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1120,-2,0,1839,-1,0,0 +2013,7,14,7,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1655,11,0,1840,-8,0,0 +2013,9,3,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,-3,0,1915,11,0,0 +2013,9,13,5,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2000,22,1,2220,20,1,0 +2013,6,14,5,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1438,-4,0,1756,-11,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,-2,0,1712,-12,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1955,11,0,2007,28,1,0 +2013,4,3,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-5,0,2210,6,0,0 +2013,5,26,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-9,0,1620,-27,0,0 +2013,7,12,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,0,0,1729,1,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1640,76,1,1921,77,1,0 +2013,7,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1127,10,0,1253,6,0,0 +2013,8,20,2,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1036,-4,0,1240,-10,0,0 +2013,5,13,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1715,-11,0,1900,-28,0,0 +2013,6,16,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,22,1,1030,2,0,0 +2013,4,14,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,705,-5,0,1109,16,1,0 +2013,9,25,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-4,0,1730,-4,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2210,-5,0,2315,2,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,12,0,1635,13,0,0 +2013,7,14,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,23,1,1938,36,1,0 +2013,4,26,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-3,0,945,11,0,0 +2013,6,18,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1710,115,1,1834,99,1,0 +2013,6,20,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1210,7,0,1320,5,0,0 +2013,8,28,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2010,0,,2159,0,1,1 +2013,4,28,7,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,755,-8,0,1036,-12,0,0 +2013,8,18,7,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-5,0,1925,-4,0,0 +2013,4,16,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1440,4,0,1555,-4,0,0 +2013,7,19,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,13,0,1856,15,1,0 +2013,7,25,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,808,0,,1021,0,1,1 +2013,5,17,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,727,-5,0,904,-15,0,0 +2013,10,2,3,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-7,0,1230,-8,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,-1,0,1725,-9,0,0 +2013,10,9,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1652,-3,0,1747,-3,0,0 +2013,10,9,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,-2,0,1944,0,0,0 +2013,4,28,7,EV,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1152,14,0,1444,22,1,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,-3,0,940,20,1,0 +2013,9,10,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,43,1,1650,38,1,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,0,0,839,1,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,952,37,1,1602,23,1,0 +2013,5,28,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,542,-1,0,808,14,0,0 +2013,7,12,5,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-3,0,820,-9,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,-5,0,1449,-22,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2130,-1,0,2340,-11,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1201,-2,0,1330,-3,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1909,-8,0,2027,-16,0,0 +2013,8,10,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1125,-2,0,1428,-3,0,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1635,11,0,1845,5,0,0 +2013,6,11,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-6,0,1222,-20,0,0 +2013,8,19,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,720,-7,0,1025,-15,0,0 +2013,9,12,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1320,0,0,1435,-5,0,0 +2013,4,12,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1635,43,1,1655,52,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1817,-6,0,2034,-19,0,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,-1,0,1240,-26,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-7,0,1158,-14,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-3,0,925,-22,0,0 +2013,10,30,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-8,0,1228,-19,0,0 +2013,4,13,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1355,-6,0,1644,-17,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2255,7,0,46,-6,0,0 +2013,9,4,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1315,-6,0,1610,2,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1305,-5,0,1705,-16,0,0 +2013,5,8,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1231,79,1,1405,61,1,0 +2013,10,27,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1155,168,1,1330,176,1,0 +2013,8,6,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1629,12,0,1821,-1,0,0 +2013,10,10,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,1,0,1320,0,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,0,0,1022,-5,0,0 +2013,8,27,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1111,-4,0,1446,-32,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1952,8,0,2320,-11,0,0 +2013,8,9,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,67,1,1425,66,1,0 +2013,5,27,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-8,0,1530,-2,0,0 +2013,9,3,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1127,8,0,1456,8,0,0 +2013,5,11,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-5,0,1425,-1,0,0 +2013,6,1,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,900,-7,0,1320,-11,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1130,-8,0,1505,-22,0,0 +2013,7,30,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,835,6,0,0 +2013,10,14,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1749,-2,0,1920,-5,0,0 +2013,8,5,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1635,24,1,1944,13,0,0 +2013,9,28,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,735,-4,0,945,-7,0,0 +2013,9,1,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1655,0,0,2245,-19,0,0 +2013,10,4,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1850,-6,0,2050,-19,0,0 +2013,7,26,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1400,46,1,1511,39,1,0 +2013,4,17,3,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1220,-12,0,2051,6,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,-2,0,1720,-8,0,0 +2013,9,13,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,0,0,925,-20,0,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1330,0,0,1445,-2,0,0 +2013,4,22,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,1,0,1710,-1,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-8,0,1610,-1,0,0 +2013,8,15,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-8,0,807,-23,0,0 +2013,5,21,2,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-9,0,2104,-17,0,0 +2013,5,12,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,6,0,1840,0,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,-3,0,1550,-11,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1655,123,1,2110,105,1,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,651,-5,0,858,-15,0,0 +2013,9,28,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1347,-20,0,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1130,36,1,1300,81,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,26,1,2120,-6,0,0 +2013,9,25,3,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,845,-1,0,1110,-16,0,0 +2013,8,22,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-3,0,1725,-4,0,0 +2013,10,13,7,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1424,-6,0,1600,-17,0,0 +2013,4,2,2,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1025,-4,0,1245,-13,0,0 +2013,4,27,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,120,3,0,615,-1,0,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1515,1,0,1610,-15,0,0 +2013,4,2,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,733,-30,0,0 +2013,9,16,1,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1116,41,1,1433,47,1,0 +2013,7,23,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1615,-6,0,1703,-10,0,0 +2013,9,19,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,15,1,1500,25,1,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1438,-4,0,1528,0,0,0 +2013,4,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-3,0,1000,-12,0,0 +2013,8,5,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1915,-2,0,2205,-19,0,0 +2013,5,25,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,739,-7,0,0 +2013,4,3,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-13,0,935,-27,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-4,0,916,4,0,0 +2013,5,10,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,19,1,1155,7,0,0 +2013,6,14,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,14,0,1341,9,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1457,-2,0,1711,-27,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1400,-6,0,1520,-18,0,0 +2013,10,2,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-5,0,1335,-12,0,0 +2013,10,30,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,710,-5,0,1144,-18,0,0 +2013,7,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1001,-2,0,1258,19,1,0 +2013,10,9,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,704,-1,0,1220,-7,0,0 +2013,6,3,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-4,0,1014,0,1,1 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,-1,0,1240,-7,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,-6,0,2152,-2,0,0 +2013,7,12,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,4,0,1205,-6,0,0 +2013,8,10,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,0,0,1009,-13,0,0 +2013,4,15,1,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,815,-4,0,1620,-31,0,0 +2013,7,21,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1850,26,1,2020,18,1,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,1,0,2033,13,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,14,0,2213,22,1,0 +2013,5,8,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-8,0,1650,-26,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1700,-3,0,2010,-9,0,0 +2013,10,27,7,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1440,13,0,1755,-1,0,0 +2013,6,25,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,825,-2,0,950,-3,0,0 +2013,4,12,5,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-14,0,831,43,1,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,645,-1,0,835,-11,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,21,1,1640,10,0,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1810,1,0,1930,1,0,0 +2013,6,2,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1600,23,1,1925,-14,0,0 +2013,9,12,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1400,-6,0,1525,-7,0,0 +2013,8,9,5,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1920,111,1,2045,105,1,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,-7,0,2127,-25,0,0 +2013,4,12,5,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2105,-2,0,544,-8,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-1,0,750,-9,0,0 +2013,10,30,3,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,629,-4,0,929,-25,0,0 +2013,7,13,6,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,-5,0,1840,-17,0,0 +2013,6,12,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,14,0,2105,-7,0,0 +2013,8,19,1,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1205,-10,0,2017,-9,0,0 +2013,7,17,3,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1158,-3,0,1440,3,0,0 +2013,7,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1445,7,0,1605,4,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1018,-5,0,1406,-25,0,0 +2013,9,24,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1745,-5,0,1853,7,0,0 +2013,7,21,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1045,-2,0,1158,-9,0,0 +2013,4,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1356,-2,0,1550,-19,0,0 +2013,9,22,7,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,-10,0,1346,-32,0,0 +2013,7,22,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1530,58,1,1706,52,1,0 +2013,4,17,3,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1430,-4,0,1615,-9,0,0 +2013,6,2,7,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1010,-8,0,1130,-17,0,0 +2013,4,23,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,0,0,2251,-12,0,0 +2013,5,28,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1610,-5,0,1816,-9,0,0 +2013,6,15,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,14,0,2035,4,0,0 +2013,8,6,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1335,0,0,1945,3,0,0 +2013,5,11,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,618,-7,0,1125,3,0,0 +2013,6,16,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,24,1,2230,26,1,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,809,1,0,1356,1,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2208,47,1,2359,52,1,0 +2013,5,3,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,655,-8,0,920,-45,0,0 +2013,10,22,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1940,7,0,2050,-12,0,0 +2013,7,6,6,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,735,-9,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1000,31,1,1128,22,1,0 +2013,4,16,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1530,1,0,1715,3,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,18,1,921,0,0,0 +2013,7,21,7,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1216,-7,0,1348,-22,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,725,-2,0,844,7,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1740,51,1,1840,46,1,0 +2013,8,29,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,21,1,1200,24,1,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,1,0,757,9,0,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,28,1,1937,18,1,0 +2013,7,31,3,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,72,1,1205,74,1,0 +2013,4,17,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,16,1,1540,30,1,0 +2013,5,7,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1130,5,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-1,0,842,-10,0,0 +2013,4,28,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,5,0,1250,20,1,0 +2013,9,11,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,756,-17,0,0 +2013,10,25,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1634,-29,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1815,1,0,2046,-6,0,0 +2013,6,10,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,9,0,1635,10,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-5,0,1810,-8,0,0 +2013,8,13,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,2008,-7,0,2331,-20,0,0 +2013,8,8,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,3,0,1225,0,0,0 +2013,7,27,6,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-6,0,810,-3,0,0 +2013,8,16,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,740,-3,0,855,-11,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,835,5,0,945,-11,0,0 +2013,5,31,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-2,0,1715,-15,0,0 +2013,7,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-1,0,2105,-7,0,0 +2013,4,21,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,-3,0,1818,-10,0,0 +2013,6,8,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-5,0,1123,-1,0,0 +2013,8,6,2,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,-3,0,1006,-11,0,0 +2013,5,18,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1030,-4,0,1207,3,0,0 +2013,7,7,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1626,-7,0,1835,-11,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1840,4,0,2356,29,1,0 +2013,7,9,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,77,1,1336,65,1,0 +2013,8,2,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,20,1,1630,13,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2115,258,1,20,258,1,0 +2013,10,7,1,FL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1037,4,0,1332,9,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,17,1,1835,4,0,0 +2013,9,25,3,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,615,-9,0,917,-3,0,0 +2013,8,14,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,-5,0,835,-16,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,910,7,0,1320,-17,0,0 +2013,5,1,3,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1400,0,0,2215,16,1,0 +2013,5,22,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-10,0,1942,12,0,0 +2013,9,16,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,-9,0,1545,-28,0,0 +2013,10,25,5,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,0,0,1955,18,1,0 +2013,10,21,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1548,-4,0,1815,2,0,0 +2013,10,9,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1705,1,0,1830,-8,0,0 +2013,7,14,7,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-1,0,825,-9,0,0 +2013,7,26,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1109,82,1,1449,74,1,0 +2013,7,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1516,10,0,1728,44,1,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2145,27,1,2243,13,0,0 +2013,4,18,4,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2153,-2,0,2312,-11,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,800,-1,0,1230,5,0,0 +2013,5,6,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-4,0,626,-16,0,0 +2013,10,14,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-4,0,750,-15,0,0 +2013,6,23,7,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,-5,0,1830,-5,0,0 +2013,7,17,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1509,5,0,1729,13,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,815,9,0,1015,-1,0,0 +2013,6,22,6,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,2045,-8,0,2245,-27,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,720,-5,0,820,-16,0,0 +2013,6,17,1,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,12,0,1510,-2,0,0 +2013,6,16,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-6,0,1340,-10,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1640,5,0,1755,4,0,0 +2013,8,29,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,24,1,2255,16,1,0 +2013,4,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1600,13,0,1800,43,1,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2100,18,1,2334,-2,0,0 +2013,8,9,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,555,0,0,743,4,0,0 +2013,6,3,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1855,-2,0,2030,-3,0,0 +2013,7,21,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,0,0,1630,-29,0,0 +2013,7,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1330,-5,0,1642,-1,0,0 +2013,10,2,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,805,-9,0,1034,-6,0,0 +2013,5,14,2,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1705,40,1,1825,38,1,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2005,18,1,2137,30,1,0 +2013,5,19,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-8,0,1602,-14,0,0 +2013,8,26,1,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,5,0,1231,5,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,3,0,2245,13,0,0 +2013,6,18,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,10,0,1700,4,0,0 +2013,10,3,4,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,708,-3,0,1035,-18,0,0 +2013,4,10,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1035,-3,0,1132,-5,0,0 +2013,5,19,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,11,0,1250,4,0,0 +2013,8,24,6,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1525,-10,0,1637,-21,0,0 +2013,7,23,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,745,-15,0,0 +2013,10,15,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,20,1,2120,13,0,0 +2013,5,21,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-1,0,715,-7,0,0 +2013,9,9,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2005,0,,2024,0,1,1 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,3,0,1835,33,1,0 +2013,9,7,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2156,-7,0,26,-44,0,0 +2013,5,22,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,600,4,0,655,-4,0,0 +2013,5,2,4,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1140,-3,0,2016,1,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1818,-3,0,2029,-20,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,650,2,0,905,-12,0,0 +2013,5,23,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,12,0,1943,1,0,0 +2013,9,12,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1915,213,1,2049,208,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,29,1,1555,17,1,0 +2013,5,14,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2150,-2,0,2315,-9,0,0 +2013,8,22,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1641,0,0,1925,10,0,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,38,1,1635,47,1,0 +2013,7,27,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1058,-2,0,1209,-20,0,0 +2013,8,7,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,557,-6,0,619,-16,0,0 +2013,5,12,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,13,0,2135,9,0,0 +2013,5,30,4,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2000,14,0,2220,16,1,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2019,0,0,2332,-20,0,0 +2013,4,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1350,-6,0,1708,-19,0,0 +2013,10,8,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,4,0,1925,1,0,0 +2013,7,25,4,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-5,0,1615,14,0,0 +2013,5,8,3,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,0,0,1205,-7,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,955,1,0,1201,-24,0,0 +2013,4,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1830,0,0,2105,9,0,0 +2013,8,3,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1730,5,0,1910,-3,0,0 +2013,6,10,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1720,43,1,1824,32,1,0 +2013,10,31,4,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1700,63,1,1745,39,1,0 +2013,8,7,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2010,0,0,2230,5,0,0 +2013,8,22,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,-7,0,2105,-8,0,0 +2013,4,16,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1917,-10,0,2215,-28,0,0 +2013,8,24,6,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,-6,0,1010,-11,0,0 +2013,10,29,2,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1053,-5,0,1228,-18,0,0 +2013,6,5,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,700,0,0,905,16,1,0 +2013,6,3,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1200,38,1,1412,28,1,0 +2013,9,8,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-2,0,2130,0,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1900,10,0,2318,2,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1110,-2,0,1245,0,0,0 +2013,5,11,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,806,-17,0,0 +2013,5,30,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,752,-6,0,936,2,0,0 +2013,7,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1425,16,1,1615,2,0,0 +2013,9,3,2,OO,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,648,-4,0,945,-4,0,0 +2013,6,12,3,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1745,-1,0,1910,1,0,0 +2013,4,10,3,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,800,19,1,0 +2013,10,25,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2040,21,1,2245,0,0,0 +2013,10,27,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-4,0,1105,10,0,0 +2013,10,23,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,610,-10,0,826,-27,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1228,74,1,1347,71,1,0 +2013,10,16,3,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1509,0,0,1620,-6,0,0 +2013,10,26,6,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1730,-10,0,2253,-30,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1848,10,0,1948,10,0,0 +2013,6,28,5,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1825,127,1,2145,121,1,0 +2013,10,22,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1435,2,0,1555,-8,0,0 +2013,9,8,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1114,5,0,1250,-6,0,0 +2013,8,21,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1400,0,0,1620,-1,0,0 +2013,9,22,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,609,-3,0,717,-14,0,0 +2013,9,21,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1927,-3,0,2055,-11,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2059,0,0,2358,-11,0,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,1,0,2055,-17,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1200,-1,0,1405,-17,0,0 +2013,6,6,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1846,1,0,2130,11,0,0 +2013,7,29,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-4,0,2020,4,0,0 +2013,8,3,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,-8,0,914,28,1,0 +2013,4,30,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1115,-6,0,1406,-26,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1125,9,0,1310,1,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1425,0,0,1747,-11,0,0 +2013,4,11,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1005,4,0,1120,13,0,0 +2013,8,15,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,9,0,1840,1,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,2013,3,0,2140,7,0,0 +2013,9,25,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,5,0,1915,10,0,0 +2013,6,16,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-4,0,1100,-8,0,0 +2013,10,6,7,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1830,-5,0,2042,-15,0,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-4,0,1325,-16,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-4,0,2325,2,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,910,-2,0,1045,-11,0,0 +2013,7,31,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,12,0,2140,6,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,923,-4,0,1229,-22,0,0 +2013,7,27,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,809,-6,0,932,-2,0,0 +2013,10,15,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1215,-10,0,1455,-14,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,-5,0,1312,-7,0,0 +2013,9,8,7,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1753,-5,0,2104,-6,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,19,1,1951,22,1,0 +2013,7,3,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1208,-8,0,1330,-16,0,0 +2013,8,1,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1050,-12,0,1220,35,1,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,0,0,1106,-15,0,0 +2013,8,15,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,35,1,2215,31,1,0 +2013,5,14,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,147,1,2130,114,1,0 +2013,10,14,1,YV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1547,-4,0,1714,-8,0,0 +2013,5,25,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-4,0,759,-19,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-1,0,945,-14,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,1,0,925,-5,0,0 +2013,9,10,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1530,-1,0,1630,15,1,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1715,23,1,2230,32,1,0 +2013,6,15,6,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1000,10,0,1520,1,0,0 +2013,8,4,7,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,601,1,0,904,-18,0,0 +2013,4,5,5,EV,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-4,0,1601,-13,0,0 +2013,9,26,4,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-10,0,610,-10,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1815,6,0,1920,3,0,0 +2013,10,7,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2205,11,0,2258,4,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,-5,0,1526,2,0,0 +2013,5,13,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,7,0,1400,-6,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,15,1,2346,3,0,0 +2013,5,17,5,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1845,-3,0,2145,-35,0,0 +2013,8,19,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,40,1,1920,10,0,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1415,77,1,1625,195,1,0 +2013,7,11,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1015,38,1,1353,29,1,0 +2013,5,14,2,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,800,-5,0,1105,-17,0,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,823,-8,0,949,-23,0,0 +2013,6,17,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,241,1,1320,244,1,0 +2013,8,10,6,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1517,-3,0,1705,11,0,0 +2013,10,11,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-1,0,1805,-9,0,0 +2013,6,2,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1442,-3,0,1611,-25,0,0 +2013,6,9,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,0,0,1240,-8,0,0 +2013,10,17,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1340,2,0,1931,-6,0,0 +2013,8,4,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1929,-7,0,2039,-8,0,0 +2013,8,11,7,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1401,9,0,1615,0,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1024,8,0,1214,-10,0,0 +2013,8,2,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,856,-1,0,918,69,1,0 +2013,9,20,5,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,830,-3,0,1125,-20,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-7,0,2015,-18,0,0 +2013,6,18,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,810,2,0,1330,-20,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,3,0,1610,-1,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-3,0,953,2,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,930,3,0,1055,3,0,0 +2013,4,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-9,0,1244,-15,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1105,-6,0,1636,5,0,0 +2013,5,13,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,645,0,0,805,-6,0,0 +2013,5,25,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1255,9,0,1440,-12,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,953,-4,0,1517,6,0,0 +2013,7,17,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,10,0,840,5,0,0 +2013,6,10,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1710,5,0,1937,0,0,0 +2013,4,8,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,1639,-21,0,0 +2013,7,7,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1550,8,0,1610,17,1,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1840,-2,0,1951,-3,0,0 +2013,10,6,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-5,0,1251,-27,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1500,14,0,1610,12,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,-8,0,2218,-8,0,0 +2013,5,11,6,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,-4,0,2010,-11,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,-3,0,1740,-26,0,0 +2013,7,1,1,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,127,1,1838,115,1,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1216,-2,0,1355,14,0,0 +2013,7,8,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-10,0,1222,-18,0,0 +2013,7,25,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,7,0,1250,-9,0,0 +2013,10,18,5,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,14,0,1420,-8,0,0 +2013,4,10,3,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1535,-2,0,1820,-11,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1950,-5,0,2002,-11,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,-4,0,1605,-20,0,0 +2013,8,26,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,-1,0,1739,-6,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1449,11,0,2214,5,0,0 +2013,8,7,3,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-4,0,1030,-15,0,0 +2013,4,5,5,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1720,4,0,2000,-19,0,0 +2013,10,27,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1223,-2,0,1403,18,1,0 +2013,7,26,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1741,-2,0,1904,16,1,0 +2013,10,26,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1410,27,1,1710,11,0,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1945,5,0,2140,-4,0,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,-4,0,1654,-16,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,-4,0,1835,-16,0,0 +2013,5,8,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1305,-1,0,1400,9,0,0 +2013,5,17,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1145,-1,0,1235,10,0,0 +2013,10,15,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,1,0,2215,-13,0,0 +2013,8,23,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,832,-2,0,1010,-10,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,6,0,1249,9,0,0 +2013,6,18,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,10,0,1450,9,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,-7,0,1602,4,0,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,19,1,2139,18,1,0 +2013,9,18,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,27,1,2230,18,1,0 +2013,9,28,6,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,958,-1,0,1040,8,0,0 +2013,9,21,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1745,-3,0,2042,-5,0,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-1,0,1755,5,0,0 +2013,7,5,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1332,-4,0,1438,-6,0,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-6,0,2055,-29,0,0 +2013,9,18,3,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-7,0,820,-6,0,0 +2013,10,28,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1718,-4,0,1829,0,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1545,8,0,1900,-24,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,11,0,1541,4,0,0 +2013,7,12,5,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,67,1,820,61,1,0 +2013,10,10,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1742,-2,0,2110,8,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2045,21,1,2335,5,0,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1154,-4,0,1340,-23,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,-3,0,1612,-4,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1905,-3,0,2328,-15,0,0 +2013,5,19,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,32,1,2155,28,1,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,31,1,2145,48,1,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1232,-1,0,1500,7,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,20,1,1955,19,1,0 +2013,9,23,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1310,0,0,1515,9,0,0 +2013,5,30,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,2,0,1535,3,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,710,0,0,1230,3,0,0 +2013,6,10,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,8,0,1340,2,0,0 +2013,4,23,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,-5,0,1905,-36,0,0 +2013,9,19,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2030,9,0,2055,-1,0,0 +2013,7,1,1,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,855,11,0,1214,-7,0,0 +2013,8,12,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2005,61,1,2105,54,1,0 +2013,8,1,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1416,-7,0,1550,-19,0,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1742,25,1,1910,8,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,31,1,1256,31,1,0 +2013,8,12,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,1255,-1,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1655,19,1,1814,17,1,0 +2013,10,30,3,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-10,0,1525,-4,0,0 +2013,4,27,6,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-1,0,1300,-17,0,0 +2013,8,15,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-10,0,1159,3,0,0 +2013,5,19,7,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,47,1,1921,52,1,0 +2013,7,8,1,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1650,-1,0,1925,-18,0,0 +2013,10,30,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-1,0,1524,-5,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-5,0,1123,5,0,0 +2013,6,16,7,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1446,-2,0,1628,-17,0,0 +2013,8,9,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2021,-7,0,2151,-10,0,0 +2013,7,16,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-8,0,613,-16,0,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,935,0,0,1114,-7,0,0 +2013,6,11,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,11,0,1205,12,0,0 +2013,8,16,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,1,0,1515,0,0,0 +2013,4,18,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1900,104,1,2110,105,1,0 +2013,4,7,7,UA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1500,-9,0,1911,14,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,0,0,1805,-9,0,0 +2013,8,15,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-10,0,1248,-1,0,0 +2013,4,9,2,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1242,-7,0,1517,-31,0,0 +2013,7,14,7,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1700,-3,0,2141,-3,0,0 +2013,4,29,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1334,-8,0,1530,-11,0,0 +2013,5,15,3,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-7,0,1705,3,0,0 +2013,7,9,2,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-6,0,935,-5,0,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,-5,0,1210,-6,0,0 +2013,6,11,2,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,7,0,745,-4,0,0 +2013,6,4,2,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1900,13,0,2035,16,1,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1729,0,0,2045,0,0,0 +2013,6,8,6,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1805,-9,0,2019,-6,0,0 +2013,9,23,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,16,1,1940,16,1,0 +2013,8,23,5,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,-3,0,2135,-35,0,0 +2013,4,3,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,1,0,1510,11,0,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1703,1,0,1803,4,0,0 +2013,8,17,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1620,-4,0,1730,-7,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,0,0,1915,-9,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1655,11,0,1826,19,1,0 +2013,8,6,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2245,-7,0,614,-20,0,0 +2013,4,6,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,3,0,1712,3,0,0 +2013,8,4,7,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1815,36,1,2045,30,1,0 +2013,8,13,2,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,-5,0,1054,-15,0,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,2,0,830,-3,0,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,-5,0,1535,-10,0,0 +2013,5,18,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-6,0,1105,-14,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1530,-5,0,2348,-9,0,0 +2013,7,31,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-6,0,1556,-15,0,0 +2013,7,4,4,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1335,-9,0,1620,-12,0,0 +2013,5,21,2,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,6,0,1050,-2,0,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,1,0,1650,4,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2201,-2,0,2342,-12,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,2,0,1645,-11,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-3,0,1445,-17,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,19,1,911,22,1,0 +2013,8,2,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2335,35,1,800,12,0,0 +2013,8,7,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,810,8,0,925,1,0,0 +2013,7,1,1,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1650,40,1,1840,23,1,0 +2013,6,28,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,-5,0,1104,-16,0,0 +2013,10,7,1,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1029,27,1,1305,24,1,0 +2013,5,30,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-5,0,1201,-7,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,940,21,1,1230,3,0,0 +2013,4,21,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,623,-8,0,720,-9,0,0 +2013,7,13,6,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-10,0,1003,-20,0,0 +2013,5,30,4,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-3,0,1350,-15,0,0 +2013,10,17,4,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,615,-15,0,917,-20,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1200,-1,0,1320,9,0,0 +2013,4,28,7,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2328,3,0,700,4,0,0 +2013,7,6,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,900,-11,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1635,21,1,2055,20,1,0 +2013,8,24,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1710,0,0,1747,9,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1640,137,1,1845,187,1,0 +2013,7,19,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-3,0,1858,-7,0,0 +2013,8,30,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2055,45,1,2348,37,1,0 +2013,10,11,5,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-4,0,1124,-11,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1050,35,1,1249,32,1,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1331,9,0,1724,16,1,0 +2013,7,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,16,1,1825,17,1,0 +2013,9,22,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1406,-5,0,1656,-12,0,0 +2013,7,13,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-5,0,1130,-16,0,0 +2013,10,24,4,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1119,-4,0,1350,-9,0,0 +2013,7,4,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,3,0,1405,4,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,7,0,1418,93,1,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2030,23,1,2315,22,1,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-4,0,1610,-22,0,0 +2013,5,4,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-8,0,1643,-17,0,0 +2013,6,15,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1457,-26,0,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1355,-7,0,1510,-10,0,0 +2013,7,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,19,1,1700,15,1,0 +2013,7,22,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1334,7,0,1650,18,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,9,0,1715,3,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1425,10,0,1640,22,1,0 +2013,9,14,6,OO,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1041,44,1,1510,32,1,0 +2013,7,23,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1352,2,0,1558,-7,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,-2,0,1000,4,0,0 +2013,7,9,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,34,1,2200,30,1,0 +2013,5,4,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,31,1,1754,47,1,0 +2013,9,2,1,EV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1430,123,1,1608,127,1,0 +2013,10,31,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,915,-6,0,1230,-41,0,0 +2013,9,26,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1420,8,0,2200,17,1,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,3,0,1000,-4,0,0 +2013,4,20,6,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1830,34,1,0 +2013,6,12,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1628,-1,0,0 +2013,7,22,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,47,1,2115,37,1,0 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-4,0,2152,-17,0,0 +2013,7,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1416,-3,0,1806,1,0,0 +2013,7,8,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,4,0,1310,-8,0,0 +2013,10,18,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1045,47,1,1220,45,1,0 +2013,9,30,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-7,0,2058,-12,0,0 +2013,5,6,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-3,0,1025,-3,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,810,-25,0,0 +2013,10,30,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1400,-1,0,1500,-7,0,0 +2013,8,31,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,814,-6,0,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,43,1,1740,58,1,0 +2013,5,6,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1105,-1,0,1215,-19,0,0 +2013,9,8,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-6,0,1310,-12,0,0 +2013,10,12,6,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-5,0,1005,4,0,0 +2013,5,10,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1325,-4,0,1615,-14,0,0 +2013,4,9,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,830,-2,0,1242,-17,0,0 +2013,9,20,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-5,0,1547,-7,0,0 +2013,5,30,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-7,0,931,-8,0,0 +2013,5,9,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,605,-6,0,820,2,0,0 +2013,4,9,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1701,-8,0,1855,-7,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,630,-5,0,740,-3,0,0 +2013,7,12,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-4,0,1409,8,0,0 +2013,9,20,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,850,0,0,1008,1,0,0 +2013,6,29,6,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1320,27,1,1510,28,1,0 +2013,4,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1400,25,1,1945,17,1,0 +2013,9,16,1,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-4,0,1124,71,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1120,3,0,1220,-7,0,0 +2013,5,21,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-8,0,2020,-16,0,0 +2013,5,30,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,5,0,1305,-6,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1035,42,1,1310,41,1,0 +2013,10,21,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2135,53,1,615,30,1,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1252,4,0,1504,4,0,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2015,3,0,2130,-11,0,0 +2013,4,18,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1915,0,,2105,0,1,1 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,16,1,1225,7,0,0 +2013,6,30,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,825,-6,0,1110,-28,0,0 +2013,8,5,1,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,834,2,0,1032,-1,0,0 +2013,9,5,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-8,0,1045,-18,0,0 +2013,7,15,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1836,4,0,2009,42,1,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,59,1,1756,49,1,0 +2013,5,20,1,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1700,12,0,1953,108,1,0 +2013,9,1,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1705,-4,0,2032,-48,0,0 +2013,5,30,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,845,-13,0,1030,-36,0,0 +2013,7,23,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,40,1,1659,24,1,0 +2013,6,21,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1800,-8,0,2035,-19,0,0 +2013,5,11,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,855,-1,0,1055,-10,0,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,15,1,2243,7,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1445,2,0,1650,-1,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1219,-1,0,1250,-15,0,0 +2013,8,1,4,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,-1,0,1028,-9,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1435,19,1,1950,0,0,0 +2013,8,18,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-7,0,1839,-23,0,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1200,170,1,1520,164,1,0 +2013,4,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-1,0,1151,-14,0,0 +2013,4,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-2,0,1213,-3,0,0 +2013,5,19,7,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-3,0,1247,-6,0,0 +2013,4,2,2,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1043,0,0,1241,0,0,0 +2013,4,14,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,915,10,0,1055,24,1,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1614,-5,0,1845,-4,0,0 +2013,10,29,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,11,0,1810,20,1,0 +2013,7,3,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1315,2,0,1455,-1,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,-1,0,519,-4,0,0 +2013,8,8,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,102,1,2025,106,1,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1929,-6,0,2155,-10,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,32,1,2033,63,1,0 +2013,8,22,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,-3,0,1340,-9,0,0 +2013,6,9,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,2,0,1800,-8,0,0 +2013,9,1,7,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1647,-6,0,1900,-11,0,0 +2013,7,27,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1120,11,0,1320,3,0,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1730,-5,0,2041,-17,0,0 +2013,8,18,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1243,-1,0,1340,-10,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,9,0,1912,12,0,0 +2013,9,10,2,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1330,-7,0,1459,-8,0,0 +2013,8,29,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,833,-7,0,940,-8,0,0 +2013,5,18,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1325,5,0,1425,-25,0,0 +2013,5,26,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1405,0,0,2000,0,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-5,0,1636,-28,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1605,-5,0,1655,-13,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-9,0,1414,-17,0,0 +2013,10,29,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1255,15,1,1350,11,0,0 +2013,5,14,2,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1204,-10,0,1345,-13,0,0 +2013,8,13,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2115,10,0,2240,11,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1100,-3,0,1538,-16,0,0 +2013,6,24,1,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,212,1,1900,221,1,0 +2013,9,4,3,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,6,0,2225,-18,0,0 +2013,10,19,6,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,746,-8,0,850,-15,0,0 +2013,6,20,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1346,0,0,1436,10,0,0 +2013,7,22,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1320,104,1,1459,0,1,1 +2013,5,7,2,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1635,18,1,2225,17,1,0 +2013,7,5,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,737,-2,0,935,11,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,-1,0,1427,-7,0,0 +2013,6,26,3,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,4,0,1330,0,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1040,4,0,1250,-5,0,0 +2013,6,20,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-4,0,2014,3,0,0 +2013,6,24,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,750,0,0,905,-6,0,0 +2013,10,5,6,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,725,-4,0,855,-5,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2059,-5,0,2234,29,1,0 +2013,10,26,6,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,36,1,805,57,1,0 +2013,10,9,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,940,0,0,1255,-14,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,2,0,1402,-10,0,0 +2013,5,7,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,630,-5,0,915,-9,0,0 +2013,5,6,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1239,-15,0,1405,-8,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,142,1,1342,131,1,0 +2013,5,19,7,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1245,-6,0,1450,-9,0,0 +2013,10,3,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1255,137,1,1440,133,1,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,23,1,2010,17,1,0 +2013,5,11,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,8,0,2057,-6,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2150,-8,0,27,-3,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1800,0,0,1905,-8,0,0 +2013,10,5,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,930,-9,0,1100,-12,0,0 +2013,4,5,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,2055,5,0,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,-1,0,2150,-5,0,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2159,-2,0,2344,-18,0,0 +2013,6,15,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,0,0,735,-9,0,0 +2013,8,22,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1658,-3,0,1809,2,0,0 +2013,9,27,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,950,-1,0,1315,-11,0,0 +2013,4,6,6,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1405,-2,0,1610,-5,0,0 +2013,6,6,4,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,3,0,1936,-30,0,0 +2013,8,21,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1340,-3,0,1440,-3,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1923,76,1,2240,70,1,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-5,0,1820,81,1,0 +2013,9,19,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,610,215,1,725,240,1,0 +2013,7,13,6,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1410,3,0,1535,-4,0,0 +2013,10,11,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,-5,0,1045,-8,0,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1053,-24,0,0 +2013,5,1,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,950,10,0,1755,3,0,0 +2013,5,2,4,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2209,-1,0,30,-9,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1746,64,1,1902,94,1,0 +2013,6,23,7,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1642,129,1,1826,143,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1645,27,1,1833,-2,0,0 +2013,6,29,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1725,4,0,1845,7,0,0 +2013,4,21,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2104,2,0,0 +2013,10,26,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-12,0,1003,-13,0,0 +2013,6,25,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,137,1,815,130,1,0 +2013,4,9,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-5,0,2025,-11,0,0 +2013,7,4,4,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-9,0,707,-14,0,0 +2013,4,28,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,-8,0,1710,-33,0,0 +2013,6,17,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,-9,0,1358,-6,0,0 +2013,8,16,5,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1435,-6,0,1617,-18,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,15,1,1000,3,0,0 +2013,5,24,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-4,0,853,-12,0,0 +2013,9,22,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1915,3,0,2240,-3,0,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2245,-4,0,705,-11,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1605,-2,0,1714,-3,0,0 +2013,8,13,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1919,13,0,2127,17,1,0 +2013,4,11,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,625,-3,0,820,-25,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,715,-4,0,830,1,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,-5,0,1519,-22,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1311,-4,0,1705,-20,0,0 +2013,9,11,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,329,1,2030,308,1,0 +2013,7,8,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-2,0,1005,-1,0,0 +2013,6,16,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,42,1,2127,40,1,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1655,2,0,2025,-7,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1925,638,1,2354,616,1,0 +2013,6,28,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,15,1,2304,7,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1658,2,0,1839,0,1,1 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2050,30,1,15,32,1,0 +2013,8,18,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,1,0,2230,-45,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,-5,0,847,-13,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,925,-2,0,1050,4,0,0 +2013,10,10,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1710,0,0,1830,-24,0,0 +2013,9,23,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,825,25,1,1146,17,1,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1635,-5,0,2005,-41,0,0 +2013,7,23,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,7,0,1625,14,0,0 +2013,4,30,2,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,909,-2,0,1142,-9,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1425,50,1,1545,45,1,0 +2013,4,24,3,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1400,-4,0,2210,-22,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,1,0,1832,40,1,0 +2013,8,27,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1045,11,0,1145,10,0,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1300,21,1,1405,20,1,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,-3,0,1845,-11,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1515,25,1,1825,21,1,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,-7,0,950,-8,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-4,0,1104,-8,0,0 +2013,5,14,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,-6,0,1645,-6,0,0 +2013,4,19,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,630,0,0,730,-5,0,0 +2013,5,3,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,745,-7,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1105,-8,0,1232,-14,0,0 +2013,10,19,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1025,-4,0,1140,-18,0,0 +2013,5,18,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1506,-10,0,1618,-15,0,0 +2013,9,26,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,11,0,1159,1,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1207,-1,0,1325,-11,0,0 +2013,8,6,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-6,0,834,-11,0,0 +2013,7,30,2,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1900,21,1,2206,12,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-7,0,1525,-5,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1653,7,0,1739,24,1,0 +2013,7,7,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-8,0,1730,-19,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,825,3,0,1148,5,0,0 +2013,6,27,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1125,-5,0,1233,-9,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,730,-5,0,1025,-6,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,-2,0,2328,-9,0,0 +2013,7,31,3,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,0,0,1130,-1,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,854,9,0,1330,-10,0,0 +2013,9,9,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1955,27,1,2115,26,1,0 +2013,8,22,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1706,179,1,2019,191,1,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1603,-5,0,2200,2,0,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,835,-3,0,938,-18,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,951,-5,0,1455,-27,0,0 +2013,7,8,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1129,57,1,1523,80,1,0 +2013,4,17,3,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1033,5,0,1630,-17,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1650,18,1,1905,-2,0,0 +2013,10,16,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1719,-8,0,1830,-23,0,0 +2013,4,4,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,635,-9,0,723,-25,0,0 +2013,6,22,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,1,0,1124,-8,0,0 +2013,9,3,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-7,0,1250,-29,0,0 +2013,8,31,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-5,0,1425,-17,0,0 +2013,6,6,4,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1557,9,0,1914,-13,0,0 +2013,8,3,6,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1600,16,1,1935,14,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1524,-4,0,1658,-1,0,0 +2013,5,19,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,916,-3,0,1034,-4,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,2,0,2210,-3,0,0 +2013,8,6,2,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1525,-2,0,1904,-10,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1459,9,0,1639,20,1,0 +2013,7,2,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,0,0,715,3,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1840,218,1,2120,208,1,0 +2013,5,17,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1341,54,1,1542,67,1,0 +2013,4,21,7,OO,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1431,1,0,1611,-10,0,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,-4,0,1035,6,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1640,-13,0,0 +2013,6,24,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,815,10,0,925,7,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,2,0,1100,-4,0,0 +2013,9,14,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,5,0,1640,5,0,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1120,-5,0,1327,-30,0,0 +2013,9,19,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1540,181,1,2110,195,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1635,4,0,2000,26,1,0 +2013,5,13,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1944,-11,0,0 +2013,5,10,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,730,-3,0,926,-10,0,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1555,-2,0,40,-32,0,0 +2013,10,19,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,65,1,1349,60,1,0 +2013,9,30,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1720,100,1,1805,88,1,0 +2013,7,30,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1255,16,1,1410,3,0,0 +2013,4,1,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,-4,0,2035,4,0,0 +2013,10,2,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1310,8,0,1315,9,0,0 +2013,4,19,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,830,-4,0,955,-16,0,0 +2013,9,6,5,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1110,-4,0,1235,-8,0,0 +2013,8,20,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1145,-6,0,1335,-14,0,0 +2013,6,20,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1249,-3,0,1429,-8,0,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,0,0,1334,-3,0,0 +2013,6,1,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,950,-8,0,1235,-8,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,711,0,0,948,20,1,0 +2013,9,26,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-12,0,715,-11,0,0 +2013,6,6,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,804,-7,0,924,-13,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1810,0,0,2047,-17,0,0 +2013,9,26,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-8,0,630,-23,0,0 +2013,10,3,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,0,0,2157,-13,0,0 +2013,9,7,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1702,-3,0,1817,-10,0,0 +2013,5,5,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,900,-5,0,1041,-22,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,935,43,1,1040,31,1,0 +2013,7,8,1,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1042,24,1,1618,20,1,0 +2013,5,27,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,602,-9,0,710,-6,0,0 +2013,6,1,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,1251,-3,0,0 +2013,4,29,1,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-10,0,2201,-3,0,0 +2013,4,22,1,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,20,1,1625,53,1,0 +2013,6,24,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2104,29,1,2347,27,1,0 +2013,9,2,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2020,13,0,2305,10,0,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,915,-1,0,1145,-15,0,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,805,-4,0,1045,-2,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,60,1,815,51,1,0 +2013,6,22,6,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,5,0,1645,-7,0,0 +2013,5,5,7,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1215,-3,0,2100,5,0,0 +2013,7,15,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-1,0,1414,-4,0,0 +2013,10,9,3,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1250,-8,0,1557,-21,0,0 +2013,6,19,3,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1708,4,0,2020,-4,0,0 +2013,10,5,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2037,-1,0,2209,-11,0,0 +2013,7,22,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-2,0,937,-7,0,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1435,1,0,1659,2,0,0 +2013,7,29,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,8,0,835,-4,0,0 +2013,5,9,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1951,-1,0,2259,-20,0,0 +2013,7,11,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1739,-6,0,1913,-20,0,0 +2013,8,8,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1909,40,1,2020,31,1,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,54,1,2145,44,1,0 +2013,6,6,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1220,8,0,1340,9,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1435,-1,0,1630,-12,0,0 +2013,6,8,6,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1109,-6,0,1828,2,0,0 +2013,6,6,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,84,1,2045,59,1,0 +2013,10,16,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-3,0,757,-2,0,0 +2013,7,12,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-11,0,835,-12,0,0 +2013,10,29,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2351,-8,0,700,-17,0,0 +2013,9,5,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1447,-4,0,1526,4,0,0 +2013,4,9,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,2100,3,0,2338,12,0,0 +2013,7,5,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,11,0,1217,12,0,0 +2013,8,8,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1800,-2,0,1902,-11,0,0 +2013,7,14,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,20,1,2025,1,0,0 +2013,7,5,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,941,-3,0,1027,-10,0,0 +2013,10,27,7,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1015,-1,0,1304,-1,0,0 +2013,4,26,5,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-7,0,1613,-16,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-3,0,1759,-11,0,0 +2013,4,24,3,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,-4,0,1013,9,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,42,1,1555,32,1,0 +2013,9,28,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-2,0,457,-10,0,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1421,65,1,1718,84,1,0 +2013,10,7,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1725,23,1,1815,19,1,0 +2013,4,12,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-4,0,714,-7,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,49,1,1230,60,1,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,3,0,1255,-13,0,0 +2013,9,19,4,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,87,1,1600,80,1,0 +2013,10,3,4,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,0,0,910,1,0,0 +2013,6,6,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1200,2,0,1345,-5,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,725,-2,0,1017,7,0,0 +2013,8,22,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,13,0,1455,8,0,0 +2013,7,2,2,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1820,-4,0,2218,-22,0,0 +2013,4,28,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1740,1,0,1831,-1,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2030,13,0,2235,24,1,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,925,-2,0,1036,0,0,0 +2013,8,2,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1739,19,1,1913,19,1,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1655,5,0,1800,-2,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1210,1,0,1330,3,0,0 +2013,10,24,4,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1535,-5,0,1700,-6,0,0 +2013,9,20,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,655,-3,0,855,-3,0,0 +2013,4,22,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,127,1,912,104,1,0 +2013,8,21,3,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1400,14,0,1630,-3,0,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,11,0,1825,23,1,0 +2013,6,23,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-7,0,2358,3,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-7,0,1247,-17,0,0 +2013,10,28,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1600,22,1,1655,17,1,0 +2013,5,19,7,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,-10,0,1515,15,1,0 +2013,10,26,6,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-6,0,1755,-20,0,0 +2013,7,5,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,-9,0,1350,-24,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1301,-1,0,1446,-6,0,0 +2013,8,9,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,720,21,1,1025,22,1,0 +2013,8,4,7,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1542,13,0,1940,14,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2105,8,0,129,5,0,0 +2013,6,16,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1115,-1,0,1200,-6,0,0 +2013,10,24,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1359,15,1,1945,19,1,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-3,0,5,-19,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,0,0,2130,11,0,0 +2013,10,24,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-2,0,820,-3,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-2,0,1805,-11,0,0 +2013,10,18,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1800,-4,0,2011,-13,0,0 +2013,5,21,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1500,188,1,1605,194,1,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1035,-1,0,1350,-2,0,0 +2013,7,22,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1452,-4,0,1538,-4,0,0 +2013,8,27,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-7,0,1809,-22,0,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-6,0,2204,-5,0,0 +2013,10,17,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1610,97,1,1730,104,1,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2100,-2,0,2305,-1,0,0 +2013,5,11,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1420,-5,0,1705,-4,0,0 +2013,5,19,7,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1905,12,0,2104,14,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1410,-2,0,1935,-3,0,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2000,-9,0,2218,-12,0,0 +2013,7,11,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1032,-7,0,1336,-6,0,0 +2013,9,27,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1650,24,1,1810,25,1,0 +2013,5,28,2,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,825,-11,0,1119,-14,0,0 +2013,10,2,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,-5,0,1540,-10,0,0 +2013,5,12,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1003,-1,0,1346,-13,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,0,,1620,0,1,1 +2013,7,16,2,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1126,0,0,1246,-1,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2210,103,1,50,101,1,0 +2013,6,24,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,18,1,1418,17,1,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,615,-5,0,745,10,0,0 +2013,9,3,2,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,710,-1,0,855,-16,0,0 +2013,7,12,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1400,-10,0,1636,-7,0,0 +2013,9,12,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1955,197,1,2159,189,1,0 +2013,6,22,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,-4,0,2135,-13,0,0 +2013,4,12,5,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2202,-6,0,2314,-12,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-3,0,1520,-1,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1909,43,1,2027,43,1,0 +2013,8,10,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,-4,0,1425,-7,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1745,-4,0,1935,-2,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,850,-2,0,1526,-8,0,0 +2013,4,26,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2111,2,0,2220,15,1,0 +2013,7,24,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-3,0,1559,0,0,0 +2013,4,26,5,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,2040,-4,0,2330,-9,0,0 +2013,7,11,4,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-4,0,1541,-18,0,0 +2013,7,22,1,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,0,,2041,0,1,1 +2013,4,4,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-1,0,1214,8,0,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1740,51,1,1850,48,1,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,5,0,1600,-8,0,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,610,5,0,725,1,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,9,0,1005,13,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2210,0,0,25,-26,0,0 +2013,8,11,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-9,0,1102,-12,0,0 +2013,8,31,6,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,12,0,1421,-7,0,0 +2013,7,23,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1331,-8,0,1501,-4,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,940,26,1,1202,24,1,0 +2013,9,1,7,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,700,-9,0,826,-24,0,0 +2013,4,7,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1550,1,0,1705,3,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-1,0,950,-6,0,0 +2013,8,1,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-5,0,2102,-18,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-8,0,1729,-25,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-3,0,1655,-11,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2125,1,0,35,-8,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1420,33,1,1606,80,1,0 +2013,8,21,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,17,1,1715,23,1,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1712,-4,0,2043,-15,0,0 +2013,5,22,3,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,4,0,1005,2,0,0 +2013,9,10,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-5,0,1020,9,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1615,0,0,1719,0,0,0 +2013,6,4,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,956,4,0,1619,10,0,0 +2013,8,31,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,646,0,0,1203,4,0,0 +2013,8,9,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,10,0,1718,2,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,29,1,1455,35,1,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,20,1,2115,14,0,0 +2013,8,14,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1819,-3,0,2118,26,1,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1035,-1,0,1216,0,0,0 +2013,10,28,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1050,-1,0,1406,8,0,0 +2013,8,4,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-5,0,1524,-6,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2200,23,1,2328,10,0,0 +2013,7,25,4,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,1,0,1955,2,0,0 +2013,4,14,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1405,11,0,1525,22,1,0 +2013,6,9,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1040,11,0,1200,7,0,0 +2013,7,20,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1357,-1,0,1508,-16,0,0 +2013,10,24,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,820,-2,0,1113,-11,0,0 +2013,5,3,5,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1845,4,0,2150,5,0,0 +2013,4,18,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,0,,2127,0,1,1 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,15,1,1335,8,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-5,0,855,-13,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1435,0,0,1950,12,0,0 +2013,5,27,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-8,0,2050,-6,0,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,708,-6,0,1539,-26,0,0 +2013,6,14,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1938,-8,0,2132,14,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1924,-2,0,2201,-20,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1925,4,0,2301,-13,0,0 +2013,6,8,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,817,2,0,1003,5,0,0 +2013,6,15,6,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1205,1,0,1715,-14,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,5,0,2326,1,0,0 +2013,7,21,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,630,-23,0,0 +2013,4,10,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,2,0,909,-13,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,900,1,0,1100,-8,0,0 +2013,6,20,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,30,1,935,26,1,0 +2013,8,21,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,6,0,2115,6,0,0 +2013,8,2,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2045,10,0,2135,3,0,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,740,0,0,1545,-22,0,0 +2013,9,9,1,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2148,-1,0,2301,-10,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1515,3,0,1640,-4,0,0 +2013,4,5,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,620,-3,0,940,-13,0,0 +2013,4,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1020,-5,0,1216,-16,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1942,-7,0,2115,-22,0,0 +2013,5,26,7,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-7,0,1036,-12,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1002,-5,0,1519,-4,0,0 +2013,7,8,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,65,1,2115,55,1,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1705,30,1,2210,25,1,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1245,6,0,1738,11,0,0 +2013,10,14,1,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-10,0,1024,-14,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1421,8,0,1535,-6,0,0 +2013,5,31,5,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1710,-2,0,1817,-6,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1730,-3,0,1840,-25,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1010,51,1,1359,45,1,0 +2013,6,21,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-6,0,900,-12,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,52,1,10,44,1,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-6,0,1759,14,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,830,-4,0,1140,-15,0,0 +2013,5,12,7,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,-11,0,1014,28,1,0 +2013,7,3,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,620,-6,0,827,-11,0,0 +2013,6,23,7,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,610,-2,0,715,-21,0,0 +2013,9,18,3,9E,14524,Richmond International,Richmond,VA,12478,John F. Kennedy International,New York,NY,1227,-7,0,1348,-22,0,0 +2013,6,30,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1504,7,0,1636,-1,0,0 +2013,6,23,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1854,0,,2011,0,1,1 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,15,1,1806,2,0,0 +2013,4,20,6,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1330,1,0,1500,-4,0,0 +2013,5,14,2,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,10,0,839,-28,0,0 +2013,7,1,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-6,0,1305,-18,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-8,0,1605,16,1,0 +2013,8,3,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,509,1,1746,506,1,0 +2013,9,5,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1615,-5,0,1849,-12,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2100,5,0,2301,9,0,0 +2013,5,12,7,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1947,-4,0,110,-10,0,0 +2013,5,1,3,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-4,0,1013,-19,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2005,38,1,45,35,1,0 +2013,4,10,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,605,-5,0,705,5,0,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1345,0,0,1450,-8,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,13,0,1815,9,0,0 +2013,4,16,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1950,16,1,2100,15,1,0 +2013,4,22,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-1,0,1940,-12,0,0 +2013,8,16,5,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,612,-2,0,745,-6,0,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2055,78,1,2225,81,1,0 +2013,5,8,3,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,725,-3,0,920,-17,0,0 +2013,6,13,4,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,0,,1642,0,1,1 +2013,10,12,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1716,-5,0,1952,-24,0,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1315,-2,0,1545,-7,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-1,0,725,-9,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,-6,0,2109,4,0,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,-2,0,1835,-20,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,600,-4,0,749,0,0,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,-5,0,903,-8,0,0 +2013,7,29,1,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2225,-1,0,630,-11,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1255,-5,0,1405,-26,0,0 +2013,6,26,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,740,-13,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1620,22,1,2300,3,0,0 +2013,9,11,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,12,0,1130,1,0,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,269,1,750,258,1,0 +2013,10,7,1,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1420,38,1,1613,46,1,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2002,4,0,2334,2,0,0 +2013,10,22,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1345,-11,0,1440,15,1,0 +2013,10,8,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-8,0,854,-24,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1605,15,1,1835,-3,0,0 +2013,4,2,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-2,0,1655,-2,0,0 +2013,5,16,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1501,-10,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2150,0,0,2337,-4,0,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,625,1,0,940,32,1,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2050,71,1,40,85,1,0 +2013,8,22,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1815,9,0,1905,9,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,-5,0,1342,11,0,0 +2013,8,21,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-6,0,1615,-14,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1630,0,0,1859,-6,0,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2105,8,0,2337,11,0,0 +2013,5,4,6,9E,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1935,-1,0,2151,-23,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2045,16,1,2225,-9,0,0 +2013,4,11,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,855,105,1,1455,106,1,0 +2013,8,23,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,0,0,1315,6,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1825,36,1,2010,35,1,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1855,0,0,2023,4,0,0 +2013,6,7,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,815,0,0,0 +2013,10,30,3,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,-3,0,1729,-1,0,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1754,18,1,2025,-1,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2100,29,1,10,27,1,0 +2013,7,25,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,1,0,1810,-21,0,0 +2013,10,24,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-6,0,1945,-26,0,0 +2013,5,10,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,800,-9,0,821,-11,0,0 +2013,7,3,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,840,0,0,1132,-19,0,0 +2013,8,24,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,740,-8,0,1132,-28,0,0 +2013,10,31,4,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-3,0,736,-22,0,0 +2013,5,22,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,-14,0,2140,-1,0,0 +2013,5,5,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1300,-4,0,1525,-1,0,0 +2013,4,10,3,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,122,1,759,121,1,0 +2013,8,21,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,741,-3,0,0 +2013,10,3,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,-6,0,1440,-10,0,0 +2013,5,3,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,10,0,1327,11,0,0 +2013,8,26,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-1,0,854,2,0,0 +2013,9,11,3,EV,13931,Norfolk International,Norfolk,VA,12953,LaGuardia,New York,NY,1830,200,1,2001,192,1,0 +2013,5,30,4,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-6,0,1001,-27,0,0 +2013,4,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,40,1,2310,41,1,0 +2013,8,11,7,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,825,-3,0,1035,-9,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2245,7,0,14,1,0,0 +2013,9,22,7,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,-3,0,1630,-2,0,0 +2013,6,24,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,94,1,1609,96,1,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,21,1,1845,32,1,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,1,0,1120,8,0,0 +2013,8,17,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1440,20,1,2016,-1,0,0 +2013,8,30,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,24,1,1741,11,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1042,10,0,1215,17,1,0 +2013,8,6,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,15,1,1229,13,0,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,56,1,2200,62,1,0 +2013,4,6,6,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-7,0,1759,-13,0,0 +2013,9,13,5,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,950,9,0,1105,6,0,0 +2013,6,24,1,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,4,0,2305,-19,0,0 +2013,7,19,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,-3,0,745,-6,0,0 +2013,5,31,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,1200,-1,0,1400,-10,0,0 +2013,8,28,3,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,2,0,1925,-29,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,27,1,2314,21,1,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-2,0,1833,20,1,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,942,51,1,1223,49,1,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1020,-4,0,1215,-2,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1512,4,0,1646,-11,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1010,7,0,1315,14,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1725,5,0,2027,16,1,0 +2013,7,24,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1821,-10,0,2122,-16,0,0 +2013,4,24,3,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1731,0,,1905,0,1,1 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,920,0,0,1225,-1,0,0 +2013,6,12,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,600,2,0,740,-9,0,0 +2013,4,6,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,837,-6,0,1014,-10,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1504,-3,0,1609,-22,0,0 +2013,5,26,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1710,-5,0,1745,-17,0,0 +2013,6,14,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,813,26,1,947,28,1,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1843,59,1,2023,62,1,0 +2013,10,30,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,-7,0,1630,-2,0,0 +2013,8,11,7,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1129,12,0,1308,32,1,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,62,1,1242,46,1,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1739,29,1,2100,33,1,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1305,-4,0,1615,0,0,0 +2013,4,20,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1105,-7,0,1220,-17,0,0 +2013,5,24,5,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1126,-1,0,1322,5,0,0 +2013,5,13,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,715,-4,0,839,-9,0,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-3,0,725,-14,0,0 +2013,10,2,3,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-5,0,843,-13,0,0 +2013,8,5,1,9E,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,846,-3,0,1034,1,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,15,1,1225,-2,0,0 +2013,7,10,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1546,51,1,1553,76,1,0 +2013,8,15,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,57,1,1320,57,1,0 +2013,4,11,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,128,1,1907,133,1,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,925,7,0,1135,1,0,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,1119,1,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-7,0,1315,-4,0,0 +2013,7,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,650,3,0,1210,-7,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1920,7,0,2120,-12,0,0 +2013,4,17,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1710,-8,0,1937,-22,0,0 +2013,9,3,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,740,-1,0,855,-5,0,0 +2013,4,12,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,0,,1225,0,1,1 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-2,0,2208,-5,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,36,1,1256,40,1,0 +2013,7,1,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-7,0,810,6,0,0 +2013,8,2,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,1,0,2110,9,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2140,173,1,2250,173,1,0 +2013,8,20,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-5,0,807,-14,0,0 +2013,5,30,4,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,557,-9,0,700,-22,0,0 +2013,7,25,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-6,0,1446,-14,0,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1120,-2,0,1239,-6,0,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-12,0,1522,-17,0,0 +2013,9,7,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,-7,0,2135,3,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,940,14,0,1045,16,1,0 +2013,4,29,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1857,-9,0,1921,-30,0,0 +2013,8,27,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,645,-5,0,750,-9,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2100,7,0,2240,7,0,0 +2013,4,8,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,0,0,1409,-2,0,0 +2013,9,27,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1203,-2,0,1337,0,0,0 +2013,7,13,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-7,0,1240,6,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,10,0,1410,3,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,0,0,1420,-11,0,0 +2013,4,21,7,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1243,-6,0,1503,-3,0,0 +2013,6,15,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,3,0,1410,-4,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-4,0,1946,-15,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1353,-4,0,1723,-21,0,0 +2013,5,16,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1930,21,1,2323,21,1,0 +2013,6,20,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1219,-6,0,1937,-21,0,0 +2013,7,19,5,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,13,0,2012,-10,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,930,-3,0,1055,5,0,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2055,-2,0,2325,2,0,0 +2013,6,29,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-3,0,1415,3,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,905,1,0,1440,5,0,0 +2013,10,17,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-5,0,700,-5,0,0 +2013,4,4,4,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1447,-9,0,1645,-19,0,0 +2013,10,18,5,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2102,-1,0,510,-12,0,0 +2013,4,25,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,61,1,2150,50,1,0 +2013,8,1,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,6,0,2005,-23,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,925,10,0,1010,8,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,11,0,1019,14,0,0 +2013,10,4,5,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1959,5,0,2117,7,0,0 +2013,7,21,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-4,0,746,-5,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,-2,0,2205,-8,0,0 +2013,7,20,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-2,0,1750,-5,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1531,137,1,1915,142,1,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1120,-7,0,1345,-14,0,0 +2013,7,24,3,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,550,-1,0,800,-8,0,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1735,8,0,2325,-7,0,0 +2013,4,15,1,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,89,1,1120,88,1,0 +2013,7,3,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1740,11,0,1900,6,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,644,13,0,915,-2,0,0 +2013,7,8,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,0,,2050,0,1,1 +2013,5,12,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1127,-8,0,0 +2013,9,21,6,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-9,0,1021,26,1,0 +2013,4,23,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1130,-2,0,1132,-8,0,0 +2013,10,30,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1925,-2,0,2015,-14,0,0 +2013,9,28,6,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,-1,0,1600,-11,0,0 +2013,5,16,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,92,1,1207,89,1,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,-3,0,938,-9,0,0 +2013,9,9,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,-8,0,1650,0,0,0 +2013,7,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,47,1,1835,31,1,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1905,3,0,2035,6,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1713,11,0,1948,27,1,0 +2013,5,30,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,734,-14,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1315,16,1,1615,10,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1840,-7,0,2356,-3,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2016,14,0,2258,-8,0,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-2,0,25,-7,0,0 +2013,8,6,2,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,-1,0,1747,-5,0,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1800,24,1,1950,27,1,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2050,-3,0,2215,-20,0,0 +2013,8,22,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-1,0,1402,0,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,4,0,1810,-3,0,0 +2013,8,22,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1258,99,1,1441,86,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1345,11,0,1551,8,0,0 +2013,10,1,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-1,0,1740,0,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1905,3,0,2120,-2,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1200,-3,0,1413,-6,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1912,20,1,2033,42,1,0 +2013,10,17,4,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-7,0,1751,-1,0,0 +2013,7,3,3,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,28,1,2055,22,1,0 +2013,9,5,4,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1840,6,0,2105,15,1,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,3,0,2359,18,1,0 +2013,4,27,6,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1320,0,0,1453,-8,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-5,0,1937,-2,0,0 +2013,8,31,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,0,0,1100,-7,0,0 +2013,6,3,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1723,190,1,1943,191,1,0 +2013,10,12,6,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1022,1,0,1236,-3,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,0,0,2125,-12,0,0 +2013,8,3,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,905,-1,0,1223,-17,0,0 +2013,8,3,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,815,-13,0,0 +2013,8,14,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,849,-6,0,926,0,0,0 +2013,8,13,2,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-6,0,922,-15,0,0 +2013,5,19,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1245,-2,0,1621,-8,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1130,-4,0,1322,-7,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,955,8,0,1201,11,0,0 +2013,5,1,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-5,0,604,-28,0,0 +2013,6,11,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,2,0,1619,1,0,0 +2013,10,12,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,955,2,0,1100,-14,0,0 +2013,7,20,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,-3,0,1440,-37,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1930,1,0,2100,-6,0,0 +2013,6,3,1,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-13,0,1650,-21,0,0 +2013,7,7,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,132,1,1516,153,1,0 +2013,10,11,5,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1104,4,0,1505,43,1,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1820,56,1,2050,61,1,0 +2013,9,4,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,530,-1,0,712,-10,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,-3,0,1835,-11,0,0 +2013,4,14,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1725,8,0,1810,9,0,0 +2013,8,28,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,946,-5,0,1041,-11,0,0 +2013,7,5,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1715,-4,0,1840,-10,0,0 +2013,9,1,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,828,-2,0,1421,-15,0,0 +2013,9,7,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1147,-3,0,1247,1,0,0 +2013,9,11,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1646,-2,0,1723,-3,0,0 +2013,6,27,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-5,0,1200,-3,0,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1530,3,0,1642,3,0,0 +2013,9,5,4,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1102,-10,0,1925,5,0,0 +2013,10,27,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1200,-6,0,1755,-12,0,0 +2013,5,31,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,6,0,725,-9,0,0 +2013,10,22,2,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,11,0,1945,14,0,0 +2013,5,11,6,YV,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1145,28,1,1339,20,1,0 +2013,10,8,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,900,-4,0,1700,-17,0,0 +2013,5,9,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,2118,1,0,2326,23,1,0 +2013,10,25,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1248,-6,0,2101,2,0,0 +2013,10,20,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1019,-2,0,1142,-11,0,0 +2013,10,18,5,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1155,-3,0,1310,-9,0,0 +2013,5,10,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1250,3,0,1535,12,0,0 +2013,10,25,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,10,0,1950,3,0,0 +2013,7,10,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,11,0,1625,-5,0,0 +2013,8,7,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1728,33,1,1905,28,1,0 +2013,4,10,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1555,2,0,1605,18,1,0 +2013,8,11,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,703,-1,0,950,3,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2007,10,0,2138,3,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1810,15,1,1905,27,1,0 +2013,10,24,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,715,2,0,837,-10,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1120,-2,0,1220,-10,0,0 +2013,5,18,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,217,1,2050,191,1,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1046,5,0,1231,24,1,0 +2013,6,12,3,OO,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,903,13,0,1212,10,0,0 +2013,8,10,6,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2010,4,0,2245,-11,0,0 +2013,6,22,6,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,-5,0,1740,-14,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1130,11,0,1219,7,0,0 +2013,5,13,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,17,1,1720,2,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,935,-15,0,1107,-11,0,0 +2013,4,10,3,FL,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1014,6,0,1253,-7,0,0 +2013,9,29,7,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1355,11,0,1555,35,1,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,-2,0,2011,-9,0,0 +2013,10,28,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,822,-1,0,1015,-12,0,0 +2013,6,11,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,61,1,2136,34,1,0 +2013,9,4,3,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1945,10,0,2105,10,0,0 +2013,5,17,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,-3,0,1137,6,0,0 +2013,6,12,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-2,0,850,-15,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2150,16,1,2305,0,0,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,-15,0,816,-12,0,0 +2013,8,9,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,0,0,1857,67,1,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1450,6,0,1755,-4,0,0 +2013,4,12,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1854,-1,0,13,-14,0,0 +2013,6,2,7,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1645,91,1,1851,77,1,0 +2013,7,29,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2330,-4,0,516,-13,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1340,-3,0,1520,-7,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,-1,0,2359,-15,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1625,-2,0,57,-39,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,845,-2,0,1348,-1,0,0 +2013,6,22,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,820,-2,0,1045,-7,0,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-2,0,1830,-14,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1305,-2,0,1426,-18,0,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-2,0,1604,-16,0,0 +2013,9,13,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,605,0,0,730,-10,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1319,3,0,1527,6,0,0 +2013,10,31,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,-8,0,910,-1,0,0 +2013,5,24,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,140,1,2126,129,1,0 +2013,7,21,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-5,0,2045,-3,0,0 +2013,8,27,2,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1528,7,0,1722,-1,0,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-3,0,1652,-8,0,0 +2013,7,30,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,1345,-9,0,2021,-2,0,0 +2013,5,6,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1135,-4,0,1920,-29,0,0 +2013,9,29,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1401,-5,0,1526,-7,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1440,14,0,1705,-1,0,0 +2013,10,20,7,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,-3,0,2030,-20,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-5,0,1920,17,1,0 +2013,4,17,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,915,-4,0,1525,109,1,0 +2013,5,12,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,-4,0,1157,6,0,0 +2013,8,14,3,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,-2,0,1920,-13,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1445,0,0,1624,-2,0,0 +2013,6,22,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1649,-5,0,1726,2,0,0 +2013,8,27,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1156,-6,0,1247,-4,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,12,0,2152,17,1,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1640,1,0,1920,-8,0,0 +2013,6,11,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,751,11,0,957,10,0,0 +2013,7,10,3,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1115,12,0,1235,9,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1310,-1,0,1655,-23,0,0 +2013,9,14,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,830,-23,0,0 +2013,9,12,4,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,852,-9,0,947,-12,0,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1420,15,1,1705,31,1,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1030,5,0,1405,-5,0,0 +2013,7,24,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,4,0,910,-5,0,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1130,8,0,1230,1,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,18,1,1607,13,0,0 +2013,8,9,5,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1705,54,1,2020,62,1,0 +2013,5,7,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1400,67,1,1540,63,1,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2050,21,1,2203,32,1,0 +2013,10,8,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1345,-5,0,1638,-19,0,0 +2013,5,5,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1735,11,0,1928,28,1,0 +2013,7,1,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,74,1,859,76,1,0 +2013,8,18,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1458,-6,0,1839,19,1,0 +2013,9,1,7,OO,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1632,-1,0,1745,-11,0,0 +2013,8,6,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,720,101,1,740,98,1,0 +2013,6,20,4,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1524,-4,0,2056,10,0,0 +2013,4,3,3,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1859,35,1,2230,61,1,0 +2013,7,4,4,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,959,7,0,1133,9,0,0 +2013,9,1,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-6,0,1705,-16,0,0 +2013,4,12,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,173,1,730,176,1,0 +2013,6,15,6,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,810,-16,0,0 +2013,7,6,6,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-5,0,719,3,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,72,1,1350,48,1,0 +2013,10,7,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1020,50,1,1220,28,1,0 +2013,5,6,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1855,17,1,2132,27,1,0 +2013,7,10,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,630,-2,0,800,4,0,0 +2013,10,26,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,755,-2,0,930,11,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,739,-4,0,936,-5,0,0 +2013,4,16,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1501,-12,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2211,62,1,15,39,1,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,833,0,0,1125,-1,0,0 +2013,6,12,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,835,-14,0,0 +2013,7,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,5,0,1530,-2,0,0 +2013,6,11,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1344,-5,0,1530,-7,0,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1525,-5,0,1733,-13,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,-1,0,21,-19,0,0 +2013,5,17,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1936,34,1,2151,35,1,0 +2013,10,7,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-1,0,1901,-22,0,0 +2013,5,3,5,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,16,1,1310,5,0,0 +2013,10,2,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1425,-1,0,1620,-22,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-8,0,1947,-3,0,0 +2013,9,12,4,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,-1,0,1815,1,0,0 +2013,6,9,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,0,0,930,3,0,0 +2013,5,21,2,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1732,106,1,1954,96,1,0 +2013,4,16,2,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,835,-6,0,1108,0,0,0 +2013,4,20,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,953,7,0,1254,-7,0,0 +2013,10,31,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,0,,1430,0,1,1 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1120,9,0,1220,3,0,0 +2013,4,27,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1500,-4,0,1736,-16,0,0 +2013,7,17,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-3,0,1526,-19,0,0 +2013,5,12,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1500,-7,0,1923,-17,0,0 +2013,9,3,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1730,2,0,2000,-7,0,0 +2013,8,19,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-3,0,1809,-5,0,0 +2013,5,8,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,920,105,1,1100,135,1,0 +2013,7,17,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1917,-5,0,2021,-10,0,0 +2013,6,26,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1453,-7,0,1624,-17,0,0 +2013,6,9,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,93,1,1820,101,1,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,-4,0,1255,-30,0,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2045,62,1,2330,61,1,0 +2013,6,22,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1548,-13,0,0 +2013,10,19,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1425,-5,0,1727,-14,0,0 +2013,8,3,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1144,-2,0,1240,1,0,0 +2013,4,24,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,-1,0,2150,-7,0,0 +2013,9,27,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1145,-11,0,1325,-7,0,0 +2013,7,25,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1453,-9,0,1755,-23,0,0 +2013,9,24,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,725,0,0,850,15,1,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,730,41,1,915,37,1,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,3,0,1425,-8,0,0 +2013,5,24,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,0,0,1951,1,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1606,-3,0,2358,-13,0,0 +2013,4,2,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,700,-6,0,1031,-3,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,6,0,1218,12,0,0 +2013,5,10,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-5,0,1144,-2,0,0 +2013,10,3,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-5,0,1228,-8,0,0 +2013,8,21,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-2,0,920,-10,0,0 +2013,7,5,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1731,91,1,2012,66,1,0 +2013,4,5,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-4,0,2025,-2,0,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,900,-5,0,1157,-22,0,0 +2013,9,12,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1940,-6,0,2236,-24,0,0 +2013,4,3,3,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-1,0,1502,-3,0,0 +2013,8,1,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,1,0,1525,-7,0,0 +2013,6,2,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,-1,0,1430,0,0,0 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1152,-7,0,2023,-39,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1924,15,1,2102,6,0,0 +2013,8,24,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1704,-7,0,1845,-28,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1025,-2,0,1137,-3,0,0 +2013,8,23,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,1,0,1205,-17,0,0 +2013,5,2,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,-21,0,2145,-40,0,0 +2013,6,30,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1105,2,0,1210,-3,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1620,-3,0,1745,-10,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,-6,0,1438,-7,0,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,910,-1,0,1735,-4,0,0 +2013,9,5,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,630,-9,0,736,-22,0,0 +2013,4,30,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,62,1,1359,49,1,0 +2013,9,25,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1259,4,0,1522,25,1,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,658,-1,0,936,2,0,0 +2013,8,2,5,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,13,0,1535,15,1,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1445,14,0,1615,9,0,0 +2013,6,6,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2316,-4,0,505,-12,0,0 +2013,5,31,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1932,2,0,2105,-15,0,0 +2013,7,18,4,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-5,0,901,-3,0,0 +2013,9,10,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,805,-7,0,1018,-14,0,0 +2013,6,17,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-9,0,1309,-26,0,0 +2013,4,5,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1221,-1,0,1305,-3,0,0 +2013,7,19,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2305,37,1,13,35,1,0 +2013,9,24,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1815,11,0,1910,2,0,0 +2013,8,21,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-9,0,2110,-9,0,0 +2013,10,16,3,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,1,0,1504,-12,0,0 +2013,5,21,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,750,-9,0,904,0,0,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1133,59,1,1451,73,1,0 +2013,9,6,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,2,0,818,-5,0,0 +2013,5,20,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1043,-7,0,1428,-9,0,0 +2013,9,26,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1145,0,0,1335,-2,0,0 +2013,7,1,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1640,3,0,1740,-8,0,0 +2013,9,20,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1555,52,1,1715,50,1,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1430,6,0,2030,1,0,0 +2013,4,10,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2045,9,0,2210,3,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,32,1,1245,24,1,0 +2013,5,26,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1620,3,0,1657,0,0,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-7,0,1847,-20,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-1,0,1210,-11,0,0 +2013,9,1,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1530,-6,0,1732,-16,0,0 +2013,5,24,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,2030,20,1,2310,0,0,0 +2013,7,6,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-9,0,804,-19,0,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2021,81,1,2200,65,1,0 +2013,9,26,4,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,19,1,1100,13,0,0 +2013,9,12,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1555,4,0,1710,7,0,0 +2013,10,12,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2130,18,1,2221,23,1,0 +2013,6,8,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,-8,0,2145,-20,0,0 +2013,4,18,4,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,718,-2,0,1138,-14,0,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1852,-4,0,2246,-12,0,0 +2013,10,10,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-5,0,1445,-15,0,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-5,0,1412,-10,0,0 +2013,10,24,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1855,11,0,2020,3,0,0 +2013,5,22,3,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,605,0,0,741,-11,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1935,-1,0,2159,3,0,0 +2013,8,19,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1955,-3,0,2217,8,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1550,-2,0,1710,0,0,0 +2013,9,30,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1350,8,0,1634,5,0,0 +2013,7,27,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1559,-1,0,1912,-8,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,715,-3,0,930,-2,0,0 +2013,4,15,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,842,-2,0,1110,-13,0,0 +2013,7,31,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,2,0,1010,-4,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1249,-4,0,1512,-18,0,0 +2013,7,11,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1942,20,1,2140,14,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,2,0,1135,15,1,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1230,13,0,1425,-16,0,0 +2013,10,1,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,-3,0,650,-5,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,750,-5,0,1135,-22,0,0 +2013,7,18,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-5,0,1227,7,0,0 +2013,10,2,3,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1500,-5,0,1710,-10,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,826,-5,0,913,-23,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,849,-3,0,1115,-4,0,0 +2013,4,7,7,VX,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1855,-4,0,2159,-10,0,0 +2013,8,2,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,69,1,1845,51,1,0 +2013,7,11,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-4,0,1055,14,0,0 +2013,9,13,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-1,0,1817,2,0,0 +2013,7,8,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1835,-6,0,1950,-23,0,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,1,0,1644,8,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1035,-8,0,1130,-15,0,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,-2,0,1912,-12,0,0 +2013,10,27,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1150,-6,0,1333,-13,0,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,1519,-9,0,0 +2013,6,26,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,13,0,900,-10,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,61,1,1625,101,1,0 +2013,9,7,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1645,4,0,1755,-3,0,0 +2013,8,5,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1455,-1,0,1830,-40,0,0 +2013,8,27,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-5,0,1343,-11,0,0 +2013,6,25,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-9,0,1010,-15,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1840,7,0,2310,-5,0,0 +2013,7,3,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,700,-2,0,815,1,0,0 +2013,6,24,1,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,29,1,1755,53,1,0 +2013,5,1,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1012,-6,0,1315,-11,0,0 +2013,7,11,4,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2338,93,1,717,101,1,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1520,1,0,1958,6,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,-3,0,2000,-10,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1826,0,0,2037,-15,0,0 +2013,4,19,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2025,-13,0,2115,-18,0,0 +2013,6,30,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1705,2,0,1830,0,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,64,1,1825,49,1,0 +2013,9,16,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,-5,0,1250,-24,0,0 +2013,8,24,6,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,630,-6,0,726,-15,0,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,909,-7,0,1155,-21,0,0 +2013,5,22,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,843,1,0,1047,-2,0,0 +2013,6,12,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,857,4,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,0,,2125,0,1,1 +2013,10,20,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1137,-8,0,1338,-3,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2045,34,1,2245,29,1,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2245,33,1,15,31,1,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,833,-10,0,1017,12,0,0 +2013,5,3,5,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1310,-4,0,1415,-18,0,0 +2013,5,30,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1748,13,0,2040,-1,0,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-3,0,1534,-19,0,0 +2013,8,29,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1226,-2,0,1354,-8,0,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,952,-10,0,1602,-16,0,0 +2013,5,6,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,-2,0,1930,4,0,0 +2013,4,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,4,0,1020,-10,0,0 +2013,6,8,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1720,-5,0,1950,-12,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2317,74,1,509,69,1,0 +2013,5,16,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,755,-3,0,900,-8,0,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,835,4,0,1050,2,0,0 +2013,6,10,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1735,27,1,1920,11,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,602,0,0,811,1,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,950,-1,0,1001,-4,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,630,10,0,800,0,0,0 +2013,9,18,3,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,635,-1,0,745,-5,0,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1235,5,0,1450,-8,0,0 +2013,8,11,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-2,0,1500,-14,0,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,926,-2,0,1050,-4,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,30,1,2058,16,1,0 +2013,6,12,3,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,825,-5,0,1104,-7,0,0 +2013,8,30,5,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,715,-2,0,725,-2,0,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1830,34,1,2055,40,1,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1035,4,0,1215,-5,0,0 +2013,6,9,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,4,0,847,-3,0,0 +2013,4,30,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1433,-11,0,1757,-22,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1755,3,0,1910,-7,0,0 +2013,4,22,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1150,22,1,1240,12,0,0 +2013,8,18,7,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1500,-5,0,1835,0,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,-5,0,2137,-9,0,0 +2013,6,19,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,5,0,1939,19,1,0 +2013,4,4,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,101,1,845,107,1,0 +2013,10,10,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,40,1,1610,33,1,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,0,0,2250,13,0,0 +2013,6,29,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1940,199,1,2104,180,1,0 +2013,7,5,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-2,0,1315,-6,0,0 +2013,7,1,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,930,91,1,1327,90,1,0 +2013,7,12,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1409,90,1,1650,89,1,0 +2013,6,13,4,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,6,0,1930,8,0,0 +2013,7,19,5,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1345,-1,0,1525,-17,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,15,1,1711,12,0,0 +2013,9,22,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1347,-2,0,1959,-1,0,0 +2013,5,27,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1337,-8,0,1412,-5,0,0 +2013,6,28,5,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1716,0,,1855,0,1,1 +2013,7,8,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,800,4,0,952,5,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1729,-1,0,2030,5,0,0 +2013,8,14,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1959,7,0,2,21,1,0 +2013,9,26,4,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,800,-2,0,1025,-3,0,0 +2013,7,22,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-8,0,934,7,0,0 +2013,5,31,5,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,3,0,1630,-5,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-1,0,1027,-2,0,0 +2013,5,9,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,719,-11,0,0 +2013,7,9,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-10,0,1748,-14,0,0 +2013,10,4,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,-1,0,1336,2,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1320,-2,0,1545,-5,0,0 +2013,5,2,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,-7,0,1840,-20,0,0 +2013,8,7,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1420,1,0,1605,4,0,0 +2013,8,29,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1903,-1,0,2109,-14,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,940,29,1,1230,13,0,0 +2013,10,2,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,0,0,2045,2,0,0 +2013,5,28,2,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,650,-1,0,940,-9,0,0 +2013,8,20,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,0,0,1912,1,0,0 +2013,6,9,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2200,-3,0,2315,17,1,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,0,0,2311,10,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1810,26,1,2030,38,1,0 +2013,10,19,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,3,0,1014,2,0,0 +2013,10,11,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,600,-4,0,840,-18,0,0 +2013,6,6,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-10,0,914,-16,0,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1835,113,1,2310,110,1,0 +2013,4,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,605,-1,0,755,-8,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1427,-2,0,1839,-21,0,0 +2013,6,17,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1000,-1,0,1140,3,0,0 +2013,7,21,7,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,5,0,1620,-3,0,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2150,107,1,2245,96,1,0 +2013,7,12,5,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1055,-4,0,1455,10,0,0 +2013,5,30,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,935,2,0,1055,-15,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,11,0,1505,10,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,17,1,2140,-3,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,1,0,1125,-5,0,0 +2013,6,28,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-3,0,837,-12,0,0 +2013,8,2,5,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,-1,0,1814,-31,0,0 +2013,6,30,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,31,1,1405,25,1,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1300,-4,0,1426,-11,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,-2,0,2357,-15,0,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,45,1,1806,43,1,0 +2013,7,21,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,127,1,2109,112,1,0 +2013,6,11,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,0,0,1028,2,0,0 +2013,9,18,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,73,1,2132,63,1,0 +2013,5,11,6,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1049,-7,0,1111,-7,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1630,3,0,2216,-14,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,630,-5,0,840,-13,0,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1603,77,1,1914,109,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,-1,0,1538,-19,0,0 +2013,5,6,1,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1729,4,0,2105,9,0,0 +2013,5,8,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,645,-3,0,810,-2,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1614,-1,0,1712,-14,0,0 +2013,9,25,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-7,0,933,6,0,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2115,-2,0,2235,-6,0,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1920,148,1,2020,127,1,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1505,0,0,1715,-8,0,0 +2013,9,27,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,13,0,1440,2,0,0 +2013,5,28,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,3,0,1128,-2,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,733,-3,0,847,-7,0,0 +2013,5,25,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1135,-5,0,1340,-3,0,0 +2013,7,13,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-10,0,1327,-18,0,0 +2013,5,25,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-2,0,2245,-9,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1525,-1,0,1740,1,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1405,45,1,1750,42,1,0 +2013,4,29,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1250,26,1,1535,-3,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-3,0,1205,-14,0,0 +2013,5,11,6,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,-7,0,1113,-18,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-1,0,2043,-11,0,0 +2013,10,4,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,4,0,1320,-2,0,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1450,13,0,1759,19,1,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,705,0,0,830,-8,0,0 +2013,5,10,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-1,0,920,-16,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,61,1,1632,39,1,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,1,0,1605,-10,0,0 +2013,8,3,6,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,735,-7,0,930,-13,0,0 +2013,7,20,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,0,0,1856,3,0,0 +2013,8,20,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,655,-2,0,810,-3,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,-8,0,1207,-28,0,0 +2013,4,4,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1440,17,1,1540,11,0,0 +2013,10,5,6,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,-11,0,2110,-17,0,0 +2013,6,1,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1300,-5,0,1411,-8,0,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1057,133,1,1338,133,1,0 +2013,9,30,1,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1725,2,0,1845,-19,0,0 +2013,5,30,4,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,114,1,1955,134,1,0 +2013,6,3,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-1,0,1745,-8,0,0 +2013,8,14,3,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,50,1,1905,43,1,0 +2013,6,25,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,0,0,2110,-9,0,0 +2013,4,11,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,100,1,1600,132,1,0 +2013,7,11,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1121,103,1,1307,94,1,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1840,3,0,2115,-8,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1120,-1,0,1258,-26,0,0 +2013,7,22,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1524,-4,0,1637,-1,0,0 +2013,10,14,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,915,-10,0,1035,-14,0,0 +2013,5,22,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1400,5,0,1515,-2,0,0 +2013,9,16,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1545,9,0,1820,10,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,10,0,2310,6,0,0 +2013,6,23,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1420,49,1,1530,43,1,0 +2013,10,11,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,1,0,1200,22,1,0 +2013,9,6,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-7,0,1759,-5,0,0 +2013,6,30,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1533,-1,0,1900,-2,0,0 +2013,8,19,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,-14,0,1345,-26,0,0 +2013,5,18,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,830,13,0,1240,4,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,-3,0,1610,5,0,0 +2013,8,21,3,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-3,0,810,-3,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1455,54,1,1601,57,1,0 +2013,10,10,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1210,28,1,1805,6,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,1558,-2,0,0 +2013,8,26,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1808,28,1,2058,5,0,0 +2013,6,20,4,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,907,-7,0,1359,-11,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-3,0,1330,-7,0,0 +2013,7,13,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1105,10,0,1630,15,1,0 +2013,4,1,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1245,-2,0,1520,-6,0,0 +2013,7,3,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,0,0,1139,-9,0,0 +2013,10,15,2,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1014,-7,0,1313,-11,0,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1652,-1,0,1747,11,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-3,0,1729,-11,0,0 +2013,10,30,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1314,14,0,2110,-11,0,0 +2013,4,29,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-16,0,2215,-1,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1420,-1,0,1559,-3,0,0 +2013,7,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,14,0,858,13,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1935,0,,2150,0,1,1 +2013,8,10,6,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1410,2,0,1535,-8,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,2,0,1144,3,0,0 +2013,9,15,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,13,0,1915,4,0,0 +2013,5,7,2,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-8,0,1545,5,0,0 +2013,5,9,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1012,101,1,1207,86,1,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,5,0,50,-4,0,0 +2013,8,29,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,0,0,2125,-28,0,0 +2013,6,19,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,4,0,1540,-8,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,6,0,2310,6,0,0 +2013,8,18,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1527,22,1,1637,33,1,0 +2013,7,24,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,0,0,1200,8,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,805,14,0,915,-9,0,0 +2013,5,21,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,939,5,0,1440,-7,0,0 +2013,8,14,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,900,-9,0,1030,-4,0,0 +2013,6,23,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,38,1,2340,55,1,0 +2013,7,22,1,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,1046,-7,0,0 +2013,7,28,7,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1504,-12,0,1605,-8,0,0 +2013,6,20,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1700,0,0,1910,-6,0,0 +2013,9,20,5,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-2,0,1906,-9,0,0 +2013,10,30,3,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1155,31,1,1405,26,1,0 +2013,7,19,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-1,0,1643,2,0,0 +2013,5,27,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2110,8,0,2235,-1,0,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,-5,0,1201,-6,0,0 +2013,5,3,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,810,-4,0,1049,-11,0,0 +2013,6,22,6,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1425,10,0,1615,-6,0,0 +2013,7,3,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-6,0,1155,1,0,0 +2013,10,28,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1715,8,0,1950,6,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1510,-3,0,1812,10,0,0 +2013,7,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1830,0,0,1940,-4,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-3,0,1021,2,0,0 +2013,6,13,4,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1649,247,1,1758,277,1,0 +2013,8,20,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,710,-3,0,845,6,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1530,0,0,1650,-11,0,0 +2013,10,18,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,117,1,1600,101,1,0 +2013,7,17,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-1,0,808,-28,0,0 +2013,7,23,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-3,0,1255,39,1,0 +2013,9,8,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-5,0,755,-19,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1309,-3,0,1629,-6,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-3,0,1131,-11,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,652,-3,0,748,2,0,0 +2013,6,13,4,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1727,33,1,2010,22,1,0 +2013,6,30,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12191,William P Hobby,Houston,TX,1250,12,0,1915,-6,0,0 +2013,6,30,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-4,0,2210,-10,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1422,-3,0,1622,-6,0,0 +2013,5,17,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1155,-11,0,1240,7,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1455,17,1,1605,15,1,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,723,-8,0,1159,-15,0,0 +2013,6,30,7,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,150,1,1930,134,1,0 +2013,9,9,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-8,0,552,7,0,0 +2013,7,3,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2205,23,1,2330,11,0,0 +2013,8,19,1,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1440,11,0,2245,14,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,-4,0,1216,3,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1440,8,0,1750,-20,0,0 +2013,9,14,6,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,905,-5,0,1425,-20,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1240,-4,0,1325,-4,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,-2,0,1146,0,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,30,1,2048,24,1,0 +2013,6,11,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,6,0,1820,-4,0,0 +2013,8,27,2,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1859,-4,0,2121,-5,0,0 +2013,7,28,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,-1,0,1833,5,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-6,0,1830,-11,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,1,0,1950,-10,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,708,1,0,1029,-32,0,0 +2013,4,9,2,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1845,9,0,2205,-5,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,849,-1,0,1623,-5,0,0 +2013,9,13,5,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,19,1,654,5,0,0 +2013,6,29,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,-9,0,937,-1,0,0 +2013,4,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,15,1,2350,-9,0,0 +2013,4,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,-5,0,2210,-9,0,0 +2013,7,21,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,615,0,0,900,-11,0,0 +2013,7,14,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1415,1,0,1530,-7,0,0 +2013,4,30,2,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,800,-3,0,1055,3,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,925,12,0,1118,9,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1255,12,0,1350,9,0,0 +2013,4,29,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,0,0,1410,-7,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1501,31,1,1809,20,1,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1940,10,0,2220,18,1,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1040,-2,0,1133,-12,0,0 +2013,4,12,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1655,81,1,1731,82,1,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2025,123,1,2135,116,1,0 +2013,10,15,2,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,-6,0,1836,-8,0,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2135,-6,0,2353,-2,0,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,645,-5,0,929,-17,0,0 +2013,4,4,4,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,49,1,2255,35,1,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,1,0,2340,-3,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,-4,0,1738,10,0,0 +2013,4,16,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,740,-6,0,855,-23,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1602,9,0,1824,-7,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-1,0,1608,-2,0,0 +2013,10,25,5,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1831,-4,0,2125,-9,0,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,5,0,1710,-9,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1433,-5,0,1525,-7,0,0 +2013,9,18,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1416,-9,0,0 +2013,8,22,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1750,1,0,1845,-1,0,0 +2013,8,7,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2050,-3,0,2330,-10,0,0 +2013,9,16,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,1,0,1020,-3,0,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,1,0,2000,-7,0,0 +2013,8,2,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,6,0,1445,-10,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,47,1,1640,43,1,0 +2013,4,28,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1320,-1,0,1440,-2,0,0 +2013,9,26,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1030,-2,0,1305,4,0,0 +2013,5,24,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,855,47,1,1220,54,1,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,705,-1,0,815,-5,0,0 +2013,4,11,4,9E,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,105,1,2050,81,1,0 +2013,8,25,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-4,0,1440,-34,0,0 +2013,7,25,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-9,0,1040,-10,0,0 +2013,8,3,6,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,850,-4,0,1121,-16,0,0 +2013,8,5,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-1,0,825,22,1,0 +2013,6,16,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,-7,0,1115,-1,0,0 +2013,8,8,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,33,1,2020,52,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1506,0,0,1624,-13,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,-1,0,1918,-9,0,0 +2013,7,25,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1915,12,0,2140,-11,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,840,-2,0,1029,14,0,0 +2013,8,12,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,924,-12,0,0 +2013,5,17,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1720,26,1,1933,12,0,0 +2013,10,22,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,-5,0,2018,-13,0,0 +2013,8,23,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,-5,0,719,-22,0,0 +2013,5,30,4,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2202,10,0,2338,6,0,0 +2013,6,4,2,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,540,-4,0,850,-12,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1148,0,0,2025,-15,0,0 +2013,6,4,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,1,0,724,4,0,0 +2013,8,26,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1515,43,1,1815,48,1,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,-2,0,1945,0,0,0 +2013,9,10,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,620,0,0,725,-4,0,0 +2013,6,7,5,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-7,0,1009,-30,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,-4,0,1730,-11,0,0 +2013,7,6,6,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1435,473,1,1710,468,1,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1245,-4,0,1349,-9,0,0 +2013,9,7,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,-8,0,737,-13,0,0 +2013,8,28,3,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,855,-8,0,1037,-11,0,0 +2013,7,12,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1534,10,0,0 +2013,5,25,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,638,1,0,803,-17,0,0 +2013,5,14,2,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1830,-3,0,1955,-9,0,0 +2013,10,17,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1405,22,1,1543,19,1,0 +2013,10,23,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-6,0,1854,-29,0,0 +2013,9,14,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-6,0,1338,-7,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1320,14,0,1425,5,0,0 +2013,7,17,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2133,10,0,600,8,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,-7,0,1437,-19,0,0 +2013,6,30,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,0,0,1103,-3,0,0 +2013,7,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1110,-5,0,1200,-16,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2115,-7,0,4,-18,0,0 +2013,7,2,2,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1755,26,1,2030,0,0,0 +2013,7,23,2,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-10,0,10,-20,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,-1,0,2259,-19,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,0,0,2330,-9,0,0 +2013,6,26,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,9,0,1300,3,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1735,17,1,1835,15,1,0 +2013,7,21,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,44,1,1135,29,1,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,651,-1,0,936,1,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,3,0,1717,-5,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,-3,0,1225,-6,0,0 +2013,9,2,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,-1,0,2000,0,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-2,0,2156,-17,0,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,3,0,1255,3,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1150,22,1,1305,18,1,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,10,0,2221,21,1,0 +2013,9,29,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,30,1,1915,21,1,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,829,3,0,1119,9,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,-2,0,1038,-13,0,0 +2013,5,28,2,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-10,0,935,-13,0,0 +2013,10,19,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,756,7,0,0 +2013,9,6,5,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,-4,0,1240,-8,0,0 +2013,9,27,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,750,1,0,845,0,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-4,0,1435,-6,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,21,1,1150,16,1,0 +2013,7,24,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,265,1,815,240,1,0 +2013,9,17,2,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,920,-3,0,1040,-8,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1346,80,1,1736,114,1,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1250,-4,0,1603,-7,0,0 +2013,4,17,3,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2110,-9,0,2242,-29,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,16,1,1530,6,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1035,-3,0,1130,-28,0,0 +2013,9,27,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,-4,0,1919,-5,0,0 +2013,7,26,5,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,-1,0,1859,8,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1055,0,0,1251,-16,0,0 +2013,4,1,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1340,0,0,2200,-13,0,0 +2013,10,31,4,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1320,21,1,1450,19,1,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1447,-6,0,2159,-8,0,0 +2013,10,10,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-2,0,1916,-4,0,0 +2013,8,18,7,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,6,0,2030,5,0,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1125,-2,0,1555,-8,0,0 +2013,7,22,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,959,0,0,1133,-16,0,0 +2013,8,4,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,545,-6,0,807,-15,0,0 +2013,5,31,5,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1825,22,1,2005,-18,0,0 +2013,7,18,4,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,-4,0,1340,14,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1925,17,1,2124,27,1,0 +2013,4,16,2,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,821,-5,0,1106,-7,0,0 +2013,5,17,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1455,4,0,1635,-6,0,0 +2013,7,16,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1327,69,1,1840,62,1,0 +2013,9,30,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,-5,0,1223,-16,0,0 +2013,7,30,2,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1303,40,1,1419,22,1,0 +2013,7,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,0,0,842,-9,0,0 +2013,5,10,5,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,131,1,2010,118,1,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1200,-3,0,1310,2,0,0 +2013,5,28,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1143,-2,0,1930,6,0,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,0,0,1155,-5,0,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2210,5,0,2351,-2,0,0 +2013,9,3,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,84,1,1237,93,1,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1730,3,0,1925,-1,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,0,0,1845,6,0,0 +2013,4,29,1,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1210,83,1,1520,83,1,0 +2013,4,8,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,758,-2,0,1553,-21,0,0 +2013,10,5,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-6,0,1652,-5,0,0 +2013,10,5,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2015,-4,0,2027,-4,0,0 +2013,10,9,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-12,0,1605,-16,0,0 +2013,10,19,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-3,0,1728,-12,0,0 +2013,9,26,4,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,600,7,0,714,2,0,0 +2013,6,16,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1350,14,0,1550,13,0,0 +2013,7,15,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1113,-1,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,-1,0,1050,-11,0,0 +2013,9,6,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,945,-5,0,1226,-19,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,7,0,1755,0,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2205,4,0,2305,-2,0,0 +2013,10,13,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,6,0,1415,6,0,0 +2013,6,4,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1819,35,1,1904,26,1,0 +2013,5,21,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,730,-5,0,947,-16,0,0 +2013,8,1,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,-5,0,1655,-10,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1128,52,1,1408,34,1,0 +2013,7,14,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,37,1,1345,42,1,0 +2013,7,8,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-6,0,904,-10,0,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1720,-3,0,2335,-5,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1726,-1,0,1909,-17,0,0 +2013,7,9,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2121,24,1,2247,36,1,0 +2013,10,20,7,YV,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1727,-9,0,1910,-7,0,0 +2013,8,23,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,910,50,1,1053,31,1,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1130,3,0,1435,1,0,0 +2013,6,24,1,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,22,1,1615,12,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,805,13,0,930,8,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1945,5,0,2310,-2,0,0 +2013,4,23,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,-6,0,1913,9,0,0 +2013,4,14,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,725,-5,0,1438,0,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,5,0,1905,14,0,0 +2013,9,17,2,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,-9,0,1453,5,0,0 +2013,8,21,3,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,820,-4,0,1010,-2,0,0 +2013,8,29,4,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1325,3,0,1545,-16,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2055,70,1,2220,65,1,0 +2013,8,2,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,1,0,1839,-18,0,0 +2013,10,30,3,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,0,0,1932,-30,0,0 +2013,9,6,5,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1802,-3,0,1917,-2,0,0 +2013,9,19,4,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1217,1,0,1314,0,0,0 +2013,4,22,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1735,-3,0,1745,-6,0,0 +2013,10,22,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2130,-4,0,2305,-25,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1415,48,1,1625,36,1,0 +2013,10,21,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2030,-1,0,2205,-19,0,0 +2013,8,30,5,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,743,3,0,1048,4,0,0 +2013,9,11,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1540,-7,0,1905,-2,0,0 +2013,7,30,2,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-9,0,1026,-20,0,0 +2013,4,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1845,-1,0,1950,-1,0,0 +2013,5,17,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-2,0,2031,0,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,900,5,0,1010,0,0,0 +2013,7,16,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,-7,0,1201,9,0,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1615,-1,0,1805,-9,0,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-9,0,1034,-3,0,0 +2013,6,5,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,3,0,935,-9,0,0 +2013,10,26,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,1,0,1315,-3,0,0 +2013,5,2,4,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,10,0,1700,19,1,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,83,1,2250,86,1,0 +2013,4,22,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,1,0,1900,-11,0,0 +2013,10,1,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1747,-4,0,1934,-12,0,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1805,42,1,2040,29,1,0 +2013,9,21,6,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1415,70,1,2205,54,1,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1945,-10,0,2345,-26,0,0 +2013,4,5,5,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1635,31,1,1855,24,1,0 +2013,5,1,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,-7,0,2039,-24,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,1,0,1745,-2,0,0 +2013,7,1,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,30,1,1345,33,1,0 +2013,5,9,4,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,3,0,1725,-13,0,0 +2013,10,3,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,-10,0,2052,-18,0,0 +2013,7,31,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1316,-8,0,2148,-25,0,0 +2013,8,1,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,1,0,920,6,0,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,750,-3,0,1044,-18,0,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1005,-3,0,1302,11,0,0 +2013,9,22,7,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1538,7,0,1720,2,0,0 +2013,5,13,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-5,0,2020,-7,0,0 +2013,4,29,1,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,840,-2,0,943,-11,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,2135,0,0,2320,-7,0,0 +2013,6,12,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,850,-5,0,1105,-12,0,0 +2013,7,17,3,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,-2,0,2226,-14,0,0 +2013,4,25,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,915,-18,0,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1240,-4,0,1433,-16,0,0 +2013,9,23,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-6,0,606,-8,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1032,-4,0,1311,-18,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1240,1,0,1420,-12,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1129,11,0,1252,-10,0,0 +2013,5,3,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,940,8,0,1030,3,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2035,106,1,2200,140,1,0 +2013,6,1,6,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1505,-2,0,1730,-11,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,0,0,1546,10,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1620,3,0,1725,-1,0,0 +2013,9,9,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1842,26,1,1949,16,1,0 +2013,5,19,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1101,31,1,0 +2013,5,28,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,3,0,2135,0,0,0 +2013,7,29,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-1,0,728,20,1,0 +2013,7,9,2,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,-6,0,2230,5,0,0 +2013,7,15,1,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2345,7,0,244,-4,0,0 +2013,5,8,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-3,0,1050,-7,0,0 +2013,4,5,5,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,-4,0,2010,-7,0,0 +2013,9,10,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1110,0,0,1907,-1,0,0 +2013,6,15,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1735,7,0,1855,-6,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2039,-2,0,2256,-4,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1020,16,1,1310,11,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1310,0,0,1656,-2,0,0 +2013,5,31,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,-3,0,940,9,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1045,3,0,1315,5,0,0 +2013,5,31,5,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2140,-1,0,2255,-2,0,0 +2013,10,14,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1755,4,0,1920,1,0,0 +2013,5,19,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,2030,94,1,2227,109,1,0 +2013,5,29,3,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-1,0,1420,-11,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,69,1,1618,61,1,0 +2013,10,22,2,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1510,-4,0,1920,13,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1700,43,1,2150,54,1,0 +2013,10,14,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1345,-8,0,1639,-10,0,0 +2013,6,25,2,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,-2,0,1645,1,0,0 +2013,10,6,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,730,-3,0,850,-9,0,0 +2013,4,2,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1539,-5,0,1818,-3,0,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1237,2,0,1508,-14,0,0 +2013,5,11,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-5,0,606,-19,0,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,28,1,2018,23,1,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,0,0,1715,-11,0,0 +2013,8,14,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1504,-3,0,1730,0,0,0 +2013,5,23,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,0,0,1344,5,0,0 +2013,10,31,4,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,605,-4,0,755,12,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,38,1,2050,36,1,0 +2013,9,13,5,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1200,-9,0,1300,-22,0,0 +2013,8,28,3,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1752,121,1,2000,142,1,0 +2013,9,28,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,41,1,1945,40,1,0 +2013,7,25,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1228,25,1,1405,32,1,0 +2013,7,1,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,833,13,0,1125,24,1,0 +2013,10,26,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-4,0,1435,-12,0,0 +2013,5,19,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,44,1,2203,52,1,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,0,0,1924,-4,0,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1550,4,0,1748,-1,0,0 +2013,7,6,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-4,0,1220,3,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-9,0,2342,-3,0,0 +2013,8,18,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,925,-1,0,1055,-4,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1835,70,1,2055,79,1,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1445,1,0,1740,9,0,0 +2013,4,11,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2152,64,1,2342,0,1,1 +2013,7,22,1,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1931,112,1,2103,102,1,0 +2013,5,31,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-7,0,805,-13,0,0 +2013,4,6,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,-5,0,2128,-16,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1929,-9,0,2106,-6,0,0 +2013,9,5,4,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,827,-3,0,1305,-7,0,0 +2013,7,2,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-8,0,1204,2,0,0 +2013,5,9,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1852,-4,0,0 +2013,4,16,2,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,800,-7,0,1025,-18,0,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2155,14,0,2335,15,1,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,830,13,0,1055,11,0,0 +2013,10,16,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1020,8,0,1220,12,0,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2105,12,0,2316,7,0,0 +2013,9,22,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,518,1,0,645,-4,0,0 +2013,4,19,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1130,12,0,1255,8,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,817,-2,0,919,-13,0,0 +2013,8,9,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1458,25,1,1600,15,1,0 +2013,10,19,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1855,-7,0,2025,-16,0,0 +2013,8,28,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1605,34,1,1756,57,1,0 +2013,7,7,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,75,1,2105,67,1,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,-7,0,1533,6,0,0 +2013,7,30,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1015,-2,0,1620,-29,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1115,0,0,1322,2,0,0 +2013,8,8,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,7,0,1902,1,0,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,835,-6,0,1122,-10,0,0 +2013,7,4,4,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1640,31,1,1830,11,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2045,10,0,2140,13,0,0 +2013,5,24,5,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,-1,0,1901,-19,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,1,0,950,-11,0,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,610,-2,0,835,-3,0,0 +2013,5,23,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,627,6,0,752,-6,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1049,51,1,1326,44,1,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1255,-1,0,1620,-28,0,0 +2013,5,25,6,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1215,15,1,1415,-2,0,0 +2013,5,21,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,-8,0,1420,-2,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,6,0,2045,-10,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,0,0,1145,1,0,0 +2013,4,24,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-7,0,1336,-14,0,0 +2013,10,31,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,-6,0,1253,4,0,0 +2013,5,31,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1346,-2,0,1535,-4,0,0 +2013,6,16,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,-5,0,2255,-2,0,0 +2013,8,5,1,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1002,-8,0,1259,-23,0,0 +2013,4,12,5,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,1,0,1610,4,0,0 +2013,5,23,4,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,821,10,0,940,17,1,0 +2013,4,25,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-4,0,1057,-6,0,0 +2013,5,14,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-10,0,2037,-5,0,0 +2013,5,24,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,928,-16,0,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,32,1,1951,38,1,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1845,4,0,2130,11,0,0 +2013,4,19,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,725,-10,0,1335,-5,0,0 +2013,8,14,3,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1947,4,0,2056,5,0,0 +2013,8,31,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,727,-2,0,1049,-45,0,0 +2013,10,8,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,515,-7,0,628,-17,0,0 +2013,4,29,1,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,2,0,1825,-2,0,0 +2013,7,23,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,65,1,720,60,1,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-8,0,853,-33,0,0 +2013,8,28,3,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1410,84,1,2220,87,1,0 +2013,10,15,2,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,955,7,0,1314,2,0,0 +2013,7,22,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1300,39,1,1350,32,1,0 +2013,9,12,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,620,2,0,725,0,0,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,-2,0,2359,14,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,829,-2,0,944,-9,0,0 +2013,6,22,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,2,0,857,0,0,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-5,0,2311,-2,0,0 +2013,7,25,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1855,-3,0,2020,4,0,0 +2013,9,24,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1930,-6,0,2231,-18,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,732,-5,0,923,-12,0,0 +2013,8,26,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,0,0,1300,-9,0,0 +2013,10,14,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1611,-7,0,1702,-9,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,707,0,0,1014,-11,0,0 +2013,8,8,4,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1130,5,0,1838,6,0,0 +2013,4,30,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1230,4,0,0 +2013,5,10,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1529,39,1,1805,31,1,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1325,76,1,1645,47,1,0 +2013,7,5,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-10,0,1940,-16,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1845,9,0,2305,-1,0,0 +2013,6,10,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2340,-5,0,710,-14,0,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1600,3,0,2325,-6,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1629,40,1,1926,42,1,0 +2013,9,22,7,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1205,1,0,1615,-1,0,0 +2013,9,15,7,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-3,0,810,-2,0,0 +2013,8,16,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,3,0,1015,1,0,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,3,0,2004,-8,0,0 +2013,8,14,3,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-10,0,2030,2,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1345,110,1,1629,139,1,0 +2013,6,18,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,0,0,1255,-6,0,0 +2013,5,29,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1541,-1,0,1653,27,1,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,750,22,1,1120,19,1,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-7,0,910,-22,0,0 +2013,9,12,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1820,83,1,2000,75,1,0 +2013,5,13,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-3,0,1709,-17,0,0 +2013,6,11,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1400,-4,0,1714,1,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1935,-7,0,2100,-19,0,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,3,0,2113,18,1,0 +2013,8,21,3,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1310,12,0,1435,19,1,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-6,0,940,-12,0,0 +2013,9,20,5,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,2150,54,1,2305,41,1,0 +2013,8,25,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-4,0,1734,4,0,0 +2013,6,28,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1852,-10,0,1942,-18,0,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,0,0,1426,8,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1430,29,1,0 +2013,7,19,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-3,0,812,-2,0,0 +2013,7,17,3,OO,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1308,-7,0,1326,-12,0,0 +2013,6,25,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,2,0,1337,8,0,0 +2013,8,14,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,2,0,1813,6,0,0 +2013,7,19,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,710,-10,0,844,-16,0,0 +2013,8,15,4,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,700,-4,0,950,-7,0,0 +2013,7,25,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,630,-6,0,1505,-18,0,0 +2013,9,8,7,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1810,-1,0,2030,5,0,0 +2013,9,4,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-7,0,1021,-2,0,0 +2013,5,23,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,0,0,1150,-6,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1930,16,1,2059,55,1,0 +2013,5,3,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,11,0,1330,15,1,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,-2,0,1515,-9,0,0 +2013,6,26,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,835,-11,0,937,-11,0,0 +2013,4,15,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,2,0,920,-12,0,0 +2013,9,11,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1320,3,0,1450,-5,0,0 +2013,8,23,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,915,1,0,1113,4,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1640,-3,0,2310,8,0,0 +2013,7,24,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,715,-10,0,0 +2013,8,2,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2335,1,0,609,-12,0,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1229,-13,0,0 +2013,9,20,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,800,117,1,1013,135,1,0 +2013,7,16,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,644,-11,0,825,-22,0,0 +2013,6,27,4,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1730,-6,0,2038,-1,0,0 +2013,8,7,3,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,22,1,2305,54,1,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,46,1,1845,47,1,0 +2013,5,27,1,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1825,17,1,1945,7,0,0 +2013,9,6,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-6,0,1226,-18,0,0 +2013,7,20,6,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,957,-8,0,1314,-19,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-9,0,2200,-37,0,0 +2013,9,19,4,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,915,56,1,1005,68,1,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1020,-1,0,1138,-20,0,0 +2013,6,7,5,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1641,-5,0,2020,-9,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2130,17,1,2350,40,1,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1900,-1,0,2025,-9,0,0 +2013,5,17,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,931,-6,0,1123,-13,0,0 +2013,10,28,1,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1710,-6,0,1930,-8,0,0 +2013,8,21,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-9,0,1903,-16,0,0 +2013,8,3,6,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,-5,0,1420,-1,0,0 +2013,8,1,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,51,1,1946,70,1,0 +2013,10,14,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,629,3,0,1153,-35,0,0 +2013,5,13,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-1,0,1945,-13,0,0 +2013,8,14,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-6,0,1122,-7,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,10,0,2020,3,0,0 +2013,5,8,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1805,83,1,1930,71,1,0 +2013,7,14,7,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2050,-6,0,2310,-7,0,0 +2013,7,17,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1444,-6,0,1709,-14,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1607,0,0,1720,2,0,0 +2013,7,1,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-1,0,850,-4,0,0 +2013,4,5,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-6,0,1630,-9,0,0 +2013,5,19,7,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1650,0,0,1830,-18,0,0 +2013,9,15,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-11,0,834,-27,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1725,-4,0,2055,-20,0,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,-7,0,2321,-28,0,0 +2013,8,14,3,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,4,0,1705,-7,0,0 +2013,4,20,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-1,0,1045,-12,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,-2,0,1027,-22,0,0 +2013,10,1,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-6,0,2100,3,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,0,0,2350,8,0,0 +2013,6,10,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1824,72,1,2025,58,1,0 +2013,8,19,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1111,5,0,1224,4,0,0 +2013,6,11,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,-6,0,1125,-7,0,0 +2013,5,17,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,817,19,1,911,22,1,0 +2013,6,4,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-8,0,1104,2,0,0 +2013,8,31,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1450,-5,0,1550,20,1,0 +2013,6,29,6,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1040,4,0,1335,1,0,0 +2013,8,4,7,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-3,0,1238,-16,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,855,-1,0,950,-6,0,0 +2013,10,17,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-3,0,1007,-2,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1405,25,1,1510,23,1,0 +2013,8,29,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1650,-4,0,1755,-6,0,0 +2013,8,18,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-2,0,1340,12,0,0 +2013,9,8,7,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1755,30,1,1910,19,1,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-4,0,1245,37,1,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1945,25,1,2222,-7,0,0 +2013,8,27,2,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1052,-10,0,1219,-8,0,0 +2013,9,6,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,-2,0,1445,-9,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1200,14,0,1325,11,0,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,10,0,1735,-6,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,725,-1,0,915,-19,0,0 +2013,8,12,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,843,0,0,946,-5,0,0 +2013,6,29,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2218,24,1,600,27,1,0 +2013,10,24,4,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1959,-7,0,2117,-16,0,0 +2013,8,8,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-5,0,859,5,0,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,13,0,1235,8,0,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1500,55,1,1830,108,1,0 +2013,9,20,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,20,1,1430,21,1,0 +2013,9,7,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1210,-6,0,1526,10,0,0 +2013,10,11,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,-3,0,20,-40,0,0 +2013,5,26,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1509,4,0,1700,-14,0,0 +2013,10,22,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-1,0,930,-6,0,0 +2013,4,29,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,-4,0,610,-15,0,0 +2013,5,28,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-5,0,1538,-6,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2035,0,0,2135,-3,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2128,7,0,44,-8,0,0 +2013,10,15,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1155,13,0,1525,-9,0,0 +2013,6,23,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1038,-6,0,1144,-18,0,0 +2013,10,28,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,-1,0,1740,-10,0,0 +2013,9,13,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1515,-8,0,1620,-4,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2105,3,0,2321,8,0,0 +2013,7,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,18,1,1815,11,0,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,755,82,1,1627,77,1,0 +2013,10,22,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,-6,0,1825,-13,0,0 +2013,6,11,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,24,1,1523,26,1,0 +2013,7,10,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1440,-2,0,1629,-12,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1748,15,1,2031,4,0,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1320,13,0,1620,10,0,0 +2013,6,6,4,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1700,9,0,1915,19,1,0 +2013,10,18,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-10,0,1725,-4,0,0 +2013,6,30,7,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,906,-10,0,1035,-26,0,0 +2013,5,7,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,2020,-2,0,2343,-1,0,0 +2013,7,19,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-6,0,1635,-21,0,0 +2013,9,13,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,55,1,1133,47,1,0 +2013,6,22,6,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,815,-2,0,1107,-15,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2130,53,1,2240,75,1,0 +2013,8,3,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-3,0,607,-26,0,0 +2013,8,8,4,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1729,-6,0,30,-27,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,7,0,2254,-9,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1615,2,0,1720,3,0,0 +2013,10,5,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1657,-8,0,1746,-14,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,922,-5,0,1750,-22,0,0 +2013,7,18,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-4,0,1335,-13,0,0 +2013,8,17,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1115,-9,0,1206,-23,0,0 +2013,8,11,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1031,-4,0,1340,3,0,0 +2013,8,5,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,-5,0,1945,-16,0,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1840,11,0,1950,13,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,925,0,0,1259,-5,0,0 +2013,9,26,4,FL,13232,Chicago Midway International,Chicago,IL,13244,Memphis International,Memphis,TN,2110,6,0,2238,11,0,0 +2013,7,26,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,16,1,1749,3,0,0 +2013,10,19,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-6,0,1917,-15,0,0 +2013,8,7,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1207,18,1,1531,9,0,0 +2013,6,21,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1015,32,1,1135,41,1,0 +2013,5,30,4,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1458,0,0,1744,-6,0,0 +2013,9,10,2,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1118,-3,0,1510,8,0,0 +2013,4,14,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1235,0,0,1519,-9,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,26,1,1735,22,1,0 +2013,4,5,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,5,0,1210,14,0,0 +2013,4,22,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-8,0,950,-6,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1219,-5,0,1446,-9,0,0 +2013,7,30,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1918,-7,0,2229,-17,0,0 +2013,9,15,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1227,-5,0,1420,-7,0,0 +2013,8,7,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1508,137,1,1554,136,1,0 +2013,10,15,2,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1215,74,1,1329,73,1,0 +2013,7,4,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,-3,0,2217,-12,0,0 +2013,7,12,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,57,1,1925,27,1,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1225,24,1,1529,5,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2007,153,1,2215,160,1,0 +2013,5,31,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-4,0,900,7,0,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1854,0,0,2207,37,1,0 +2013,8,5,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-3,0,1820,0,0,0 +2013,6,14,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-6,0,1113,-23,0,0 +2013,6,8,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,1,0,815,1,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1238,-2,0,1617,-8,0,0 +2013,7,9,2,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1230,121,1,1407,109,1,0 +2013,6,27,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1505,5,0,1825,13,0,0 +2013,8,27,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1300,-2,0,1420,8,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,0,,1538,0,1,1 +2013,7,7,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1900,-2,0,2145,-23,0,0 +2013,8,22,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,847,51,1,933,51,1,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,-2,0,1610,-7,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1120,-3,0,1325,-3,0,0 +2013,9,30,1,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1815,-5,0,2005,-14,0,0 +2013,6,15,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,37,1,536,33,1,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,12,0,1620,8,0,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,835,8,0,1200,-10,0,0 +2013,8,16,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,2,0,2025,-11,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-3,0,1556,-4,0,0 +2013,6,7,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,711,-4,0,845,-6,0,0 +2013,7,22,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,924,1,0,1042,2,0,0 +2013,8,7,3,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,647,-2,0,922,0,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1300,-2,0,1830,-11,0,0 +2013,4,16,2,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-9,0,1543,-26,0,0 +2013,6,5,3,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-5,0,1455,22,1,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-7,0,945,-1,0,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,830,19,1,1115,-11,0,0 +2013,7,24,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,6,0,2000,-7,0,0 +2013,5,12,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1115,1,0,1300,3,0,0 +2013,4,22,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,725,3,0,910,9,0,0 +2013,8,11,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1035,-6,0,1350,-33,0,0 +2013,6,24,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,640,3,0,840,13,0,0 +2013,7,7,7,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1600,0,,1735,0,1,1 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,835,4,0,1000,-2,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,700,-1,0,1215,-18,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,620,-3,0,716,-11,0,0 +2013,6,29,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,161,1,1541,156,1,0 +2013,10,1,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1756,-1,0,1928,-8,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1835,-6,0,1945,-14,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-5,0,1309,-2,0,0 +2013,7,15,1,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1740,-4,0,2015,-33,0,0 +2013,5,9,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,4,0,2055,7,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,29,1,1852,9,0,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1930,29,1,2125,15,1,0 +2013,8,7,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1605,6,0,1720,1,0,0 +2013,7,17,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1410,0,0,1610,-16,0,0 +2013,10,13,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-2,0,904,-10,0,0 +2013,8,17,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1330,21,1,1610,28,1,0 +2013,8,14,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-2,0,1723,-2,0,0 +2013,7,6,6,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,0,0,915,15,1,0 +2013,10,10,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1055,5,0,1222,-9,0,0 +2013,9,13,5,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,907,-2,0,1138,-2,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1815,-3,0,2046,-2,0,0 +2013,8,21,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1315,9,0,1645,9,0,0 +2013,10,6,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-3,0,1600,1,0,0 +2013,9,20,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-4,0,1205,-11,0,0 +2013,6,16,7,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,-3,0,604,0,0,0 +2013,7,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1130,-5,0,1252,1,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1752,0,0,1958,-9,0,0 +2013,5,5,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1305,3,0,1410,-5,0,0 +2013,10,10,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,6,0,1920,2,0,0 +2013,7,16,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,904,71,1,1036,52,1,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2245,7,0,633,4,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,0,0,815,24,1,0 +2013,4,27,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1415,-6,0,1650,-32,0,0 +2013,6,20,4,EV,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,635,-6,0,748,-12,0,0 +2013,8,8,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1624,40,1,1816,53,1,0 +2013,4,3,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1901,-5,0,2021,-11,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,14,0,2327,-11,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1757,22,1,1956,31,1,0 +2013,8,18,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-3,0,1153,-10,0,0 +2013,8,19,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-4,0,1628,14,0,0 +2013,8,24,6,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1245,5,0,1655,8,0,0 +2013,4,7,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,-5,0,2025,0,0,0 +2013,7,1,1,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,8,0,1454,-7,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1010,16,1,1112,20,1,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1500,2,0,2257,23,1,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-5,0,1528,-10,0,0 +2013,4,5,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1010,-3,0,1220,16,1,0 +2013,7,25,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1758,-6,0,2059,-6,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,920,4,0,1351,8,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,52,1,1825,131,1,0 +2013,8,23,5,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-9,0,2101,-10,0,0 +2013,5,4,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2230,-6,0,2320,-17,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,825,-1,0,1050,0,0,0 +2013,7,25,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,65,1,2155,45,1,0 +2013,10,3,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,829,-4,0,1010,-9,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-5,0,2355,-3,0,0 +2013,8,4,7,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1346,-1,0,1455,1,0,0 +2013,10,17,4,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,950,-6,0,1111,0,0,0 +2013,9,9,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,-7,0,1714,-5,0,0 +2013,5,3,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1333,-1,0,1440,-1,0,0 +2013,10,25,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1950,36,1,1955,38,1,0 +2013,9,12,4,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,180,1,1920,175,1,0 +2013,4,20,6,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,910,-1,0,1050,5,0,0 +2013,7,4,4,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1540,-5,0,1843,-7,0,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1652,-3,0,1802,-5,0,0 +2013,5,6,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,12,0,1520,10,0,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,8,0,1510,-7,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,850,-2,0,1721,-15,0,0 +2013,10,29,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1429,-1,0,1942,-30,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1730,36,1,2000,49,1,0 +2013,9,10,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,-2,0,820,-6,0,0 +2013,5,14,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1733,-4,0,2039,9,0,0 +2013,6,2,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1745,126,1,2043,169,1,0 +2013,5,14,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,4,0,1954,-3,0,0 +2013,8,1,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,805,-2,0,915,-7,0,0 +2013,7,15,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,1,0,555,13,0,0 +2013,10,21,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,700,1,0,927,-9,0,0 +2013,9,11,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-2,0,1029,-11,0,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,730,11,0,830,5,0,0 +2013,8,14,3,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1305,67,1,1335,59,1,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1750,-2,0,2020,-16,0,0 +2013,10,6,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1417,43,1,2009,36,1,0 +2013,4,5,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,545,113,1,707,117,1,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1425,-1,0,1530,-8,0,0 +2013,6,1,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1515,3,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1203,51,1,1337,48,1,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,-4,0,1830,6,0,0 +2013,5,5,7,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1354,9,0,1605,-1,0,0 +2013,4,18,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1005,4,0,1209,-4,0,0 +2013,7,8,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1745,23,1,2002,-4,0,0 +2013,9,14,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,1705,-5,0,1710,-12,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,35,1,1636,28,1,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1140,-1,0,2006,-7,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,60,1,1618,42,1,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1605,11,0,2025,8,0,0 +2013,10,19,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-5,0,855,-9,0,0 +2013,8,1,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,-5,0,1835,0,0,0 +2013,4,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1600,-5,0,1758,-14,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1110,0,0,1442,-16,0,0 +2013,5,15,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-7,0,1435,-19,0,0 +2013,8,19,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,921,-18,0,0 +2013,4,16,2,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1220,-1,0,1401,-3,0,0 +2013,6,1,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2130,6,0,2225,1,0,0 +2013,10,26,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2130,-3,0,2221,4,0,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-3,0,902,21,1,0 +2013,6,4,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1602,-5,0,1920,-10,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1430,-1,0,1630,-4,0,0 +2013,6,2,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,36,1,2013,53,1,0 +2013,9,25,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-12,0,1119,-15,0,0 +2013,4,3,3,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1100,1,0,1230,-5,0,0 +2013,4,19,5,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,940,-1,0,1105,-3,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,-4,0,1034,-14,0,0 +2013,4,8,1,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1132,-3,0,1511,-10,0,0 +2013,9,29,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2125,17,1,2220,10,0,0 +2013,5,21,2,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-6,0,858,-41,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,19,1,2237,11,0,0 +2013,5,30,4,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,1400,-9,0,1543,-1,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,11,0,1910,18,1,0 +2013,6,21,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-4,0,840,-20,0,0 +2013,4,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,745,0,,855,0,1,1 +2013,8,4,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2007,-5,0,2108,-16,0,0 +2013,9,13,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,123,1,1920,119,1,0 +2013,8,20,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,6,0,1914,15,1,0 +2013,10,10,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,20,1,1638,11,0,0 +2013,9,1,7,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,635,-1,0,1245,-28,0,0 +2013,9,18,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1407,-8,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-4,0,904,0,1,1 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1159,0,0,1326,-7,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2035,7,0,2225,-1,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,-3,0,1405,-15,0,0 +2013,9,19,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1800,87,1,2035,97,1,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-10,0,1017,-16,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,0,0,1905,-5,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,845,18,1,945,10,0,0 +2013,10,30,3,9E,13244,Memphis International,Memphis,TN,11066,Port Columbus International,Columbus,OH,1400,-4,0,1639,-15,0,0 +2013,7,10,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,5,0,1415,11,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1240,1,0,1605,4,0,0 +2013,4,16,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1030,-6,0,1210,-20,0,0 +2013,10,20,7,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,700,-5,0,910,-22,0,0 +2013,7,6,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,642,-14,0,0 +2013,7,27,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1042,1,0,1908,-9,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1155,-2,0,1455,14,0,0 +2013,5,23,4,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1245,0,0,1525,38,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1610,10,0,1619,13,0,0 +2013,9,16,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1800,-3,0,2034,-5,0,0 +2013,7,29,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,954,-2,0,1028,-1,0,0 +2013,4,15,1,EV,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-4,0,2045,-10,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2055,26,1,2334,28,1,0 +2013,7,16,2,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,732,-3,0,1046,-12,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,836,2,0,1415,-3,0,0 +2013,10,22,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,902,-6,0,0 +2013,5,19,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1035,9,0,1220,7,0,0 +2013,4,24,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1615,2,0,1740,5,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,723,-1,0,1025,5,0,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1942,11,0,2238,0,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1200,-4,0,1305,-13,0,0 +2013,10,28,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,530,-3,0,736,-15,0,0 +2013,5,14,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,-7,0,1235,-13,0,0 +2013,8,17,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1713,2,0,1820,-13,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1010,7,0,1430,2,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,18,1,1100,2,0,0 +2013,9,23,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,0,0,840,-17,0,0 +2013,8,30,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,3,0,1727,-5,0,0 +2013,5,12,7,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,600,-3,0,725,-24,0,0 +2013,10,18,5,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1700,25,1,1928,19,1,0 +2013,5,13,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,610,1,0,815,-5,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,715,-9,0,844,-17,0,0 +2013,10,13,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1330,5,0,1450,9,0,0 +2013,8,20,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,616,52,1,801,52,1,0 +2013,5,13,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,-4,0,1325,-14,0,0 +2013,4,16,2,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-6,0,1617,-25,0,0 +2013,5,23,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1110,5,0,1635,-2,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,710,53,1,842,40,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1220,79,1,1650,108,1,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-6,0,1331,-13,0,0 +2013,7,13,6,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,71,1,2211,31,1,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1540,0,,1705,0,1,1 +2013,5,16,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1440,-3,0,1648,-14,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1910,58,1,2318,36,1,0 +2013,6,5,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-5,0,2105,-19,0,0 +2013,6,19,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,9,0,1612,-10,0,0 +2013,10,20,7,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1715,-7,0,2005,-31,0,0 +2013,10,3,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-1,0,1106,-1,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,15,1,2215,-9,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,905,-4,0,1138,7,0,0 +2013,10,13,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-6,0,1343,-22,0,0 +2013,6,28,5,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,113,1,559,108,1,0 +2013,6,20,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-1,0,846,1,0,0 +2013,9,18,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-8,0,1945,-13,0,0 +2013,9,4,3,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-14,0,1907,-33,0,0 +2013,6,1,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,28,1,1741,25,1,0 +2013,9,2,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,-8,0,2251,-1,0,0 +2013,6,4,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,800,3,0,1354,-13,0,0 +2013,8,2,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-4,0,1030,-16,0,0 +2013,10,17,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1340,67,1,1440,65,1,0 +2013,10,17,4,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1800,0,0,2007,-13,0,0 +2013,5,18,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1645,0,0,1725,-15,0,0 +2013,9,27,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,855,-6,0,950,-16,0,0 +2013,8,7,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1940,12,0,2050,10,0,0 +2013,8,9,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-6,0,1150,-14,0,0 +2013,5,28,2,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,705,-3,0,925,-13,0,0 +2013,4,7,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1915,4,0,2110,-4,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-3,0,1610,-9,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,13,0,2259,-1,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1400,29,1,1825,11,0,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1520,4,0,1636,-4,0,0 +2013,7,5,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,3,0,1810,-7,0,0 +2013,10,15,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-15,0,1630,-5,0,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1645,35,1,1915,41,1,0 +2013,8,23,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,710,-3,0,950,-2,0,0 +2013,8,12,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,93,1,1710,90,1,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1300,4,0,1605,-2,0,0 +2013,6,5,3,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,25,1,1022,21,1,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-7,0,1759,2,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1545,-2,0,1745,11,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1815,48,1,2015,37,1,0 +2013,4,15,1,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1800,6,0,1955,4,0,0 +2013,6,21,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1835,-3,0,1930,-3,0,0 +2013,9,11,3,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1359,-10,0,1745,-3,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,-5,0,922,-17,0,0 +2013,4,15,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,725,-3,0,850,10,0,0 +2013,10,18,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1529,4,0,0 +2013,10,22,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-7,0,1127,-14,0,0 +2013,6,29,6,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-4,0,912,-6,0,0 +2013,10,7,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-8,0,935,1,0,0 +2013,5,5,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1231,-6,0,1554,-10,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-4,0,850,-22,0,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1135,-4,0,1245,-10,0,0 +2013,4,21,7,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,835,-2,0,1151,-23,0,0 +2013,10,18,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1602,-6,0,1824,12,0,0 +2013,7,25,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,0,,1340,0,1,1 +2013,6,9,7,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,62,1,1915,49,1,0 +2013,9,27,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1908,-7,0,2026,-8,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1500,6,0,1602,4,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1420,21,1,1652,13,0,0 +2013,8,17,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1959,-1,0,1,-7,0,0 +2013,4,8,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1256,9,0,1612,10,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,0,0,955,-5,0,0 +2013,7,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1455,-1,0,1610,-8,0,0 +2013,9,2,1,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-7,0,1859,-19,0,0 +2013,6,12,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,8,0,1250,8,0,0 +2013,4,3,3,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1015,-8,0,1113,-15,0,0 +2013,8,6,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-6,0,1612,-20,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1630,11,0,2325,7,0,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1700,-1,0,1817,-11,0,0 +2013,10,25,5,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-4,0,822,-5,0,0 +2013,6,8,6,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2240,29,1,715,11,0,0 +2013,5,30,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1724,68,1,1929,94,1,0 +2013,7,12,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1330,1,0,1500,-14,0,0 +2013,9,21,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2230,-8,0,658,-29,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,-4,0,2152,-7,0,0 +2013,9,7,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,806,-5,0,1035,-33,0,0 +2013,4,17,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,15,1,2225,5,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1330,-2,0,1455,-3,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1945,-4,0,2035,-15,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1915,39,1,2047,33,1,0 +2013,4,15,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,-8,0,2045,-14,0,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1215,37,1,1330,19,1,0 +2013,5,31,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1705,71,1,2050,75,1,0 +2013,9,29,7,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,27,1,1316,20,1,0 +2013,4,21,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,17,1,2115,11,0,0 +2013,8,1,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,2,0,940,-17,0,0 +2013,9,17,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1830,-6,0,2147,-5,0,0 +2013,4,8,1,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,954,-6,0,1326,-16,0,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1709,-4,0,1759,-23,0,0 +2013,7,17,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1805,115,1,2000,169,1,0 +2013,6,30,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,35,1,1750,37,1,0 +2013,8,11,7,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,-1,0,1105,-18,0,0 +2013,4,21,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1309,20,1,1553,10,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,9,0,1029,10,0,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1237,0,0,1600,-14,0,0 +2013,6,19,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1416,253,1,1535,248,1,0 +2013,10,26,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1115,-1,0,1720,14,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1755,-3,0,1931,-19,0,0 +2013,9,6,5,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1850,-7,0,2120,-14,0,0 +2013,5,23,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,740,175,1,1559,182,1,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1940,27,1,2245,28,1,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1533,-2,0,1845,-6,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2020,9,0,2325,-9,0,0 +2013,6,30,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1826,-4,0,2103,-2,0,0 +2013,9,20,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-5,0,1623,-7,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-2,0,1730,19,1,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,-6,0,2335,-35,0,0 +2013,7,9,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,530,337,1,724,359,1,0 +2013,7,13,6,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1205,4,0,1310,-14,0,0 +2013,8,20,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-4,0,1030,-21,0,0 +2013,5,7,2,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1617,15,1,1907,35,1,0 +2013,10,6,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-4,0,2355,6,0,0 +2013,6,3,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1533,-5,0,1830,-2,0,0 +2013,4,9,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1137,-16,0,1325,-19,0,0 +2013,5,8,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1205,69,1,1324,72,1,0 +2013,5,6,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,80,1,1930,90,1,0 +2013,4,4,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1055,2,0,1220,-3,0,0 +2013,6,13,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,616,-1,0,715,0,0,0 +2013,7,8,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,159,1,2336,136,1,0 +2013,6,16,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,15,1,1945,6,0,0 +2013,8,27,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,4,0,1130,17,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,8,0,1205,-8,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-6,0,1005,-18,0,0 +2013,7,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1040,0,0,1230,38,1,0 +2013,8,19,1,EV,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1901,8,0,2027,-6,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1610,42,1,1735,30,1,0 +2013,7,19,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-6,0,2102,1,0,0 +2013,7,8,1,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2010,0,0,1148,12,0,0 +2013,7,14,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,915,-4,0,1155,18,1,0 +2013,10,20,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,-5,0,2025,-10,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1230,3,0,1435,-4,0,0 +2013,4,18,4,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,700,-2,0,918,-16,0,0 +2013,5,21,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1545,1,0,1633,-8,0,0 +2013,4,10,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-3,0,1144,-11,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1937,76,1,2041,60,1,0 +2013,4,21,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2140,13,0,2245,1,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2135,14,0,2306,39,1,0 +2013,6,5,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,822,-2,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1200,-2,0,1400,6,0,0 +2013,9,12,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,643,-1,0,823,-11,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1156,-3,0,1814,-15,0,0 +2013,6,26,3,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2333,117,1,500,116,1,0 +2013,10,6,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1000,0,0,1055,0,0,0 +2013,5,20,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1734,-9,0,2105,-19,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,850,0,0,1039,-4,0,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,822,-5,0,1215,13,0,0 +2013,10,21,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1134,-1,0,1405,-5,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,-3,0,1332,10,0,0 +2013,5,28,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1456,-5,0,1633,-15,0,0 +2013,10,13,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2035,11,0,2200,0,0,0 +2013,9,18,3,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,810,-12,0,0 +2013,7,15,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-8,0,1514,-6,0,0 +2013,7,19,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1430,-3,0,1647,5,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,0,0,1623,4,0,0 +2013,4,1,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1210,-9,0,1534,-18,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1850,-1,0,1940,-8,0,0 +2013,8,16,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,615,-3,0,945,-7,0,0 +2013,8,18,7,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1935,3,0,2319,-25,0,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,-2,0,1438,-44,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1951,11,0,2027,6,0,0 +2013,7,26,5,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-2,0,2145,1,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2100,25,1,2240,28,1,0 +2013,8,3,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-7,0,558,-19,0,0 +2013,8,30,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1434,-8,0,1615,-16,0,0 +2013,4,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1130,-1,0,1250,-12,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,-1,0,543,-29,0,0 +2013,5,20,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1110,-3,0,1324,-11,0,0 +2013,8,6,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1226,-2,0,2017,-7,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,956,-5,0,1126,-19,0,0 +2013,5,15,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,930,11,0,1245,7,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2125,27,1,2235,18,1,0 +2013,10,11,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1548,6,0,1815,10,0,0 +2013,6,9,7,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1550,-2,0,1840,1,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-4,0,1950,-21,0,0 +2013,4,20,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1535,-29,0,0 +2013,6,2,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1925,0,,2129,0,1,1 +2013,7,5,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,-2,0,1905,-4,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1548,3,0,1722,-21,0,0 +2013,10,4,5,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1340,6,0,1655,-7,0,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-6,0,830,-9,0,0 +2013,8,15,4,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,-1,0,1550,-12,0,0 +2013,7,15,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1600,14,0,1721,10,0,0 +2013,6,18,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2258,116,1,505,95,1,0 +2013,4,14,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1459,-2,0,1653,-4,0,0 +2013,5,13,1,EV,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-3,0,2228,-15,0,0 +2013,7,8,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1800,132,1,1925,158,1,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,935,-9,0,1310,0,0,0 +2013,7,10,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1825,0,,1850,0,1,1 +2013,5,19,7,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1848,53,1,2017,55,1,0 +2013,8,13,2,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1900,7,0,2210,1,0,0 +2013,6,18,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,34,1,1645,19,1,0 +2013,9,24,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1705,-4,0,1746,-8,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2125,5,0,2315,-11,0,0 +2013,4,28,7,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1120,-1,0,1215,5,0,0 +2013,5,8,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-3,0,2105,-3,0,0 +2013,7,9,2,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1425,136,1,1655,136,1,0 +2013,9,4,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,4,0,2230,7,0,0 +2013,5,10,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,630,1,0,840,-3,0,0 +2013,5,31,5,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,955,23,1,1145,14,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,2,0,1445,1,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2258,139,1,44,116,1,0 +2013,5,5,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,600,-6,0,705,-8,0,0 +2013,10,24,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-1,0,935,-3,0,0 +2013,10,17,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,2,0,1122,-1,0,0 +2013,6,26,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,16,1,1620,5,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,17,1,1615,-4,0,0 +2013,4,24,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1401,10,0,2014,4,0,0 +2013,10,14,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,1055,8,0,1615,-10,0,0 +2013,8,27,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-3,0,1605,0,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,24,1,2120,13,0,0 +2013,9,26,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,-7,0,2259,-10,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,17,1,2335,-1,0,0 +2013,9,7,6,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1435,-13,0,1645,-31,0,0 +2013,7,4,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-9,0,1555,-34,0,0 +2013,6,25,2,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1508,-8,0,1625,-12,0,0 +2013,10,29,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1120,3,0,1314,2,0,0 +2013,9,26,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,0,0,1350,-3,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2120,2,0,2359,-9,0,0 +2013,7,19,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2155,115,1,2305,113,1,0 +2013,7,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,7,0,2210,1,0,0 +2013,9,12,4,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,625,-10,0,818,-3,0,0 +2013,8,29,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1850,3,0,2115,1,0,0 +2013,7,18,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1007,-6,0,1105,-7,0,0 +2013,7,29,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2335,-4,0,800,-32,0,0 +2013,10,31,4,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-1,0,1420,-2,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1750,-1,0,1840,-16,0,0 +2013,6,28,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1255,40,1,1425,14,0,0 +2013,5,18,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,829,-4,0,1043,-8,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1538,-7,0,1909,-15,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1839,0,0,2008,-20,0,0 +2013,7,4,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1450,-6,0,1627,-22,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1445,30,1,1545,32,1,0 +2013,4,30,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-1,0,2010,-12,0,0 +2013,8,9,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1443,19,1,1655,18,1,0 +2013,8,6,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-4,0,2141,-11,0,0 +2013,6,23,7,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,3,0,1655,0,0,0 +2013,7,7,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-11,0,1013,-8,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,720,-3,0,830,-9,0,0 +2013,8,14,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-5,0,1024,-2,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,-2,0,1215,50,1,0 +2013,6,9,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2115,9,0,2302,-3,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1504,4,0,2351,4,0,0 +2013,10,25,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,0,0,1905,-7,0,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2120,54,1,2358,152,1,0 +2013,10,10,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,-5,0,1950,0,0,0 +2013,10,3,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1700,2,0,1800,0,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1304,-4,0,1439,-17,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1557,-2,0,1921,-14,0,0 +2013,8,6,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-9,0,745,-20,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,13,0,1707,-4,0,0 +2013,8,19,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1615,17,1,1909,13,0,0 +2013,5,15,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1530,1,0,1815,18,1,0 +2013,8,3,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,0,0,1140,-2,0,0 +2013,8,9,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,21,1,858,24,1,0 +2013,6,2,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1712,-1,0,1957,-7,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,648,-5,0,913,-8,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2001,1,0,2100,-3,0,0 +2013,7,27,6,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1420,16,1,1813,2,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,700,14,0,925,25,1,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1405,-4,0,1455,-11,0,0 +2013,6,20,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,902,4,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1421,54,1,1901,39,1,0 +2013,8,23,5,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1515,9,0,2043,14,0,0 +2013,5,6,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-3,0,1345,-5,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,-5,0,2130,-33,0,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-6,0,935,5,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,164,1,1715,159,1,0 +2013,9,3,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,24,1,1310,7,0,0 +2013,4,30,2,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,11,0,1424,35,1,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,15,1,25,-1,0,0 +2013,6,19,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-4,0,1440,-11,0,0 +2013,10,4,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1230,-7,0,1405,-10,0,0 +2013,5,13,1,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1215,-2,0,1440,-9,0,0 +2013,4,29,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1113,16,1,1255,45,1,0 +2013,10,3,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,843,-18,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,1,0,2140,-16,0,0 +2013,5,26,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-7,0,1428,-20,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,15,1,2253,33,1,0 +2013,10,10,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,-1,0,1527,-7,0,0 +2013,8,12,1,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,0,0,1540,-16,0,0 +2013,5,24,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,630,-1,0,1058,-22,0,0 +2013,8,15,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-2,0,835,0,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,0,0,1650,-1,0,0 +2013,10,2,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-4,0,1455,-5,0,0 +2013,6,15,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1237,21,1,1503,18,1,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1400,21,1,1950,8,0,0 +2013,7,1,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,118,1,2210,111,1,0 +2013,6,16,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,29,1,2030,25,1,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1800,15,1,1910,4,0,0 +2013,8,1,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-4,0,1023,-4,0,0 +2013,4,15,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1739,62,1,1814,59,1,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,915,-1,0,1130,-11,0,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1940,-2,0,2100,-21,0,0 +2013,10,19,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1450,3,0,1540,-4,0,0 +2013,7,4,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,804,-19,0,0 +2013,5,24,5,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1100,-3,0,1310,-6,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,705,1,0,945,-3,0,0 +2013,4,22,1,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1155,35,1,1435,15,1,0 +2013,6,14,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1215,5,0,1305,14,0,0 +2013,8,20,2,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,15,1,2156,-1,0,0 +2013,4,5,5,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,715,-1,0,922,-13,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,-4,0,1321,3,0,0 +2013,8,2,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1855,8,0,2120,3,0,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,640,0,0,1005,5,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1020,-2,0,1145,0,0,0 +2013,5,21,2,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,29,1,1901,22,1,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1445,-1,0,1536,-1,0,0 +2013,7,7,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,4,0,1420,26,1,0 +2013,6,6,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,2011,-3,0,0 +2013,4,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1425,-9,0,1555,-27,0,0 +2013,7,24,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-2,0,1820,6,0,0 +2013,10,18,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,800,-4,0,850,1,0,0 +2013,4,4,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,925,-2,0,1110,-10,0,0 +2013,4,21,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,925,0,0,1759,-6,0,0 +2013,5,26,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1014,-14,0,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,805,-12,0,1400,-42,0,0 +2013,8,11,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-7,0,855,-16,0,0 +2013,4,28,7,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1815,-4,0,1958,-15,0,0 +2013,9,20,5,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1705,28,1,1932,40,1,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1030,6,0,1211,-17,0,0 +2013,9,23,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-3,0,811,-6,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1015,4,0,1305,-13,0,0 +2013,10,26,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-8,0,1505,-8,0,0 +2013,6,12,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,67,1,609,56,1,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,10,0,1605,12,0,0 +2013,4,18,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1250,54,1,1350,56,1,0 +2013,4,6,6,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1533,-7,0,1754,-27,0,0 +2013,5,9,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,530,-9,0,727,-21,0,0 +2013,7,2,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,-6,0,810,-23,0,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,745,-5,0,925,34,1,0 +2013,9,4,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-4,0,1958,-11,0,0 +2013,4,23,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1917,-5,0,2201,-16,0,0 +2013,5,4,6,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1710,15,1,1805,4,0,0 +2013,6,5,3,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1100,-6,0,1452,-25,0,0 +2013,8,3,6,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-6,0,549,-9,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1830,4,0,2035,10,0,0 +2013,10,13,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1553,-5,0,1711,2,0,0 +2013,4,15,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,-2,0,1818,-11,0,0 +2013,8,15,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,14,0,1633,12,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1755,16,1,1910,8,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,-2,0,2107,-9,0,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1227,-13,0,0 +2013,4,28,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,21,1,1725,9,0,0 +2013,8,13,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-5,0,1800,-30,0,0 +2013,5,31,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,600,-5,0,705,0,0,0 +2013,5,30,4,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1810,-5,0,2055,10,0,0 +2013,6,12,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1453,3,0,1624,7,0,0 +2013,9,13,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1732,27,1,1853,38,1,0 +2013,9,11,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-11,0,1548,-20,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1723,3,0,2013,4,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,1,0,1928,2,0,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,828,-16,0,0 +2013,5,22,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1749,-1,0,1824,-7,0,0 +2013,7,28,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1255,-2,0,1600,-28,0,0 +2013,9,27,5,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,811,-6,0,929,-16,0,0 +2013,6,10,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,120,1,2115,123,1,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,650,-1,0,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1535,-2,0,1759,-34,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2020,21,1,2230,3,0,0 +2013,5,23,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,56,-1,0,607,8,0,0 +2013,5,15,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,5,0,1250,1,0,0 +2013,10,14,1,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,635,-8,0,840,6,0,0 +2013,8,24,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1644,-21,0,0 +2013,5,9,4,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,912,-4,0,1012,-14,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2325,-6,0,738,-13,0,0 +2013,8,18,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2100,4,0,2210,-2,0,0 +2013,8,25,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,0,0,2056,6,0,0 +2013,7,29,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,810,6,0,0 +2013,5,20,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-2,0,1525,-1,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,0,0,2340,2,0,0 +2013,7,30,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-7,0,1619,-18,0,0 +2013,7,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,238,1,952,239,1,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,-5,0,2307,-19,0,0 +2013,8,24,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,941,-3,0,1235,-22,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1317,-8,0,2153,-15,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-4,0,1043,-5,0,0 +2013,5,14,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,14,0,1559,-10,0,0 +2013,4,17,3,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2120,-2,0,2345,-11,0,0 +2013,4,25,4,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1558,-14,0,2004,14,0,0 +2013,9,3,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1135,6,0,1330,5,0,0 +2013,5,8,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,195,1,1430,196,1,0 +2013,7,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-3,0,1344,-10,0,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1020,7,0,1110,2,0,0 +2013,4,19,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1136,50,1,1929,43,1,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,-6,0,2049,-30,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,913,-6,0,1120,-35,0,0 +2013,8,24,6,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1331,-8,0,1402,-13,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2055,30,1,2130,16,1,0 +2013,5,8,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1700,9,0,1805,7,0,0 +2013,7,25,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,805,-4,0,910,-9,0,0 +2013,8,28,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1630,-8,0,1958,0,0,0 +2013,6,22,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1029,8,0,1323,9,0,0 +2013,7,3,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1005,11,0,1050,4,0,0 +2013,4,4,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,620,17,1,655,8,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1535,5,0,1810,28,1,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2030,-3,0,2315,-24,0,0 +2013,7,19,5,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-6,0,1007,-14,0,0 +2013,6,14,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-6,0,1019,-1,0,0 +2013,10,5,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1630,-3,0,1640,5,0,0 +2013,8,9,5,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,112,1,1914,102,1,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-4,0,1047,-11,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-3,0,2356,6,0,0 +2013,7,26,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1520,10,0,1705,6,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1147,-9,0,1309,-5,0,0 +2013,4,26,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-6,0,2047,-17,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,57,1,1920,50,1,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1345,20,1,1610,28,1,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2010,24,1,2145,49,1,0 +2013,10,21,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,0,0,1805,-3,0,0 +2013,9,9,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,3,0,1230,1,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1535,13,0,1655,9,0,0 +2013,5,17,5,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1201,-2,0,1520,-23,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1448,15,1,2008,16,1,0 +2013,10,26,6,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1215,67,1,1334,59,1,0 +2013,8,6,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,11,0,2001,5,0,0 +2013,8,22,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1722,20,1,1808,24,1,0 +2013,7,14,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,0,0,840,-25,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,923,-26,0,0 +2013,7,19,5,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1955,65,1,2249,59,1,0 +2013,10,15,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,11,0,1043,-3,0,0 +2013,10,2,3,EV,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,759,-15,0,0 +2013,5,18,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1910,-6,0,2040,-20,0,0 +2013,8,2,5,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1225,-3,0,1514,-3,0,0 +2013,8,8,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-3,0,2251,-10,0,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1748,9,0,1951,6,0,0 +2013,10,27,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2018,-3,0,2159,5,0,0 +2013,7,5,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,745,-4,0,830,-6,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,13,0,2120,10,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,-4,0,1508,-13,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1600,0,0,1755,-3,0,0 +2013,9,1,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1458,-4,0,1959,-2,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1730,1,0,2141,-1,0,0 +2013,6,7,5,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1653,21,1,1830,20,1,0 +2013,4,20,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1800,-3,0,1826,14,0,0 +2013,9,5,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-3,0,848,-14,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2055,-6,0,5,-7,0,0 +2013,5,21,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1705,66,1,1905,33,1,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1917,33,1,2249,28,1,0 +2013,9,29,7,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,625,-1,0,946,-2,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,0,0,1047,8,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1642,-1,0,2119,-17,0,0 +2013,9,15,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1515,5,0,1805,-4,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,-1,0,1430,-23,0,0 +2013,7,27,6,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-5,0,926,-7,0,0 +2013,7,26,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-3,0,940,0,0,0 +2013,9,5,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1639,-3,0,1824,-14,0,0 +2013,5,26,7,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1118,-10,0,1218,-19,0,0 +2013,4,7,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,717,-3,0,901,-12,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,13,0,2340,15,1,0 +2013,6,16,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,904,-6,0,1052,2,0,0 +2013,10,9,3,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,-3,0,1135,1,0,0 +2013,5,23,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1100,2,0,1200,1,0,0 +2013,6,28,5,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1859,-2,0,2014,-3,0,0 +2013,8,10,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1345,7,0,1500,6,0,0 +2013,8,2,5,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1655,3,0,1849,2,0,0 +2013,4,23,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,700,2,0,920,12,0,0 +2013,9,8,7,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1606,8,0,1739,5,0,0 +2013,6,1,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-1,0,606,-6,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1435,9,0,1750,2,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1320,42,1,1445,36,1,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,930,2,0,1205,-25,0,0 +2013,4,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1103,-7,0,1116,-19,0,0 +2013,4,2,2,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,0,0,815,-9,0,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,24,1,1507,29,1,0 +2013,5,27,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,15,1,1540,4,0,0 +2013,10,8,2,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-7,0,1855,-37,0,0 +2013,5,21,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,-3,0,1650,14,0,0 +2013,5,12,7,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,900,-5,0,1025,4,0,0 +2013,4,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2012,-6,0,2113,-17,0,0 +2013,9,29,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1155,0,0,1420,-1,0,0 +2013,7,21,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2109,76,1,2239,69,1,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-5,0,933,-13,0,0 +2013,7,30,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,-5,0,1315,-22,0,0 +2013,5,11,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2000,12,0,2341,-39,0,0 +2013,4,16,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-4,0,1040,-8,0,0 +2013,5,25,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-5,0,800,0,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2209,-2,0,2320,-5,0,0 +2013,5,18,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,615,-7,0,829,-10,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1857,15,1,2328,-5,0,0 +2013,6,30,7,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-5,0,1006,-2,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,4,0,1618,-10,0,0 +2013,6,25,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1532,-3,0,1800,-15,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,-2,0,1355,-3,0,0 +2013,7,15,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1352,-3,0,1558,-14,0,0 +2013,5,16,4,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1730,0,0,1825,-8,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2025,17,1,2210,21,1,0 +2013,9,5,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-7,0,1322,-13,0,0 +2013,9,6,5,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-7,0,1959,-5,0,0 +2013,6,26,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1855,22,1,2205,21,1,0 +2013,8,18,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,-4,0,1853,-15,0,0 +2013,4,9,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-2,0,1215,4,0,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,-1,0,1615,-2,0,0 +2013,4,8,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,655,-1,0,803,-16,0,0 +2013,6,15,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-10,0,1850,-5,0,0 +2013,4,12,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1045,0,0,1225,-1,0,0 +2013,9,29,7,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1205,-7,0,1329,-9,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,29,1,2250,39,1,0 +2013,5,6,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,615,2,0,848,3,0,0 +2013,7,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,8,0,1925,1,0,0 +2013,10,12,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1555,19,1,1835,9,0,0 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1630,-3,0,1737,27,1,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1005,0,0,1145,-2,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,-3,0,2327,-11,0,0 +2013,7,31,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1000,1,0,1310,-1,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-6,0,1019,-12,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1921,96,1,2013,77,1,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,54,1,2010,42,1,0 +2013,7,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2035,-2,0,2156,2,0,0 +2013,6,1,6,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1100,-6,0,1222,-15,0,0 +2013,7,9,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,540,-1,0,1152,-10,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,730,0,0,830,2,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,908,-1,0,1046,-2,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,2,0,1200,6,0,0 +2013,8,5,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1925,-9,0,2000,-16,0,0 +2013,6,28,5,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,17,1,2059,5,0,0 +2013,8,17,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1343,-3,0,1509,-7,0,0 +2013,6,2,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,615,-5,0,810,-16,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-2,0,2345,-4,0,0 +2013,5,28,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-9,0,2308,4,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,-4,0,1945,-2,0,0 +2013,9,25,3,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,745,7,0,935,3,0,0 +2013,6,3,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1301,8,0,1420,2,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-5,0,832,-3,0,0 +2013,7,5,5,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1117,0,0,1314,-7,0,0 +2013,6,20,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,835,-8,0,1020,3,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1210,2,0,1315,-10,0,0 +2013,5,18,6,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-5,0,1731,-11,0,0 +2013,5,10,5,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,652,-14,0,0 +2013,7,3,3,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,23,1,1950,15,1,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1555,-3,0,1900,5,0,0 +2013,4,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,-10,0,1725,7,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,-3,0,1550,2,0,0 +2013,9,1,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,-4,0,1440,-15,0,0 +2013,10,18,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1800,-4,0,1900,31,1,0 +2013,6,2,7,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,12,0,1213,28,1,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1525,44,1,1740,45,1,0 +2013,7,31,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,835,1,0,0 +2013,8,3,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-1,0,1517,-5,0,0 +2013,9,29,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,955,-2,0,1000,-14,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,16,1,1900,11,0,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,97,1,1630,102,1,0 +2013,10,20,7,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1731,-6,0,2015,3,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,-3,0,2201,22,1,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1814,18,1,2104,33,1,0 +2013,8,16,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,0,0,1235,4,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1345,1,0,1709,-18,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,735,-1,0,925,1,0,0 +2013,6,4,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1929,106,1,2155,79,1,0 +2013,6,9,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,3,0,712,3,0,0 +2013,4,20,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1250,-23,0,0 +2013,7,17,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,944,1,0,1100,-9,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1307,2,0,1605,-11,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-3,0,1340,3,0,0 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,714,1,0,924,-14,0,0 +2013,4,9,2,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1405,0,,1530,0,1,1 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1545,124,1,1840,122,1,0 +2013,9,28,6,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1430,5,0,1500,3,0,0 +2013,6,14,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1519,-5,0,1645,-4,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,955,0,,1125,0,1,1 +2013,8,13,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,924,4,0,1800,12,0,0 +2013,10,19,6,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1707,-1,0,1913,-5,0,0 +2013,5,8,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1331,2,0,1624,-8,0,0 +2013,7,31,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,-2,0,2000,0,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,27,1,2358,33,1,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1810,-4,0,2008,-11,0,0 +2013,9,28,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1500,-5,0,1815,-45,0,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-6,0,1504,27,1,0 +2013,6,15,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,610,-6,0,725,3,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1430,1,0,1550,-1,0,0 +2013,4,9,2,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,620,-10,0,753,-27,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,13,0,1300,9,0,0 +2013,9,9,1,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,-6,0,2015,44,1,0 +2013,7,25,4,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1951,10,0,2142,4,0,0 +2013,5,17,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-3,0,1435,-15,0,0 +2013,10,3,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1059,93,1,1242,97,1,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,0,0,1805,-12,0,0 +2013,9,17,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1104,-9,0,1230,0,0,0 +2013,8,13,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,734,-2,0,859,-3,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1917,-4,0,2156,-10,0,0 +2013,9,6,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1930,-6,0,2210,-17,0,0 +2013,10,10,4,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,0,0,732,1,0,0 +2013,7,1,1,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1030,-2,0,1140,-7,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1448,-2,0,1539,-14,0,0 +2013,7,16,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-7,0,2102,-2,0,0 +2013,5,24,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,630,4,0,645,-1,0,0 +2013,8,23,5,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,0,0,1705,-10,0,0 +2013,9,13,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,905,102,1,1035,94,1,0 +2013,9,12,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,810,0,0,925,-8,0,0 +2013,6,22,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-8,0,1643,0,0,0 +2013,5,6,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2135,-9,0,2353,1,0,0 +2013,7,25,4,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1757,-5,0,2005,-14,0,0 +2013,4,14,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1540,11,0,1650,-14,0,0 +2013,8,14,3,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1845,104,1,1950,101,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2255,-7,0,20,-12,0,0 +2013,9,18,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1828,25,1,1958,16,1,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2035,-6,0,2143,-10,0,0 +2013,4,26,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-7,0,802,-9,0,0 +2013,4,30,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,821,-16,0,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1525,35,1,2200,24,1,0 +2013,4,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1940,-3,0,2245,-17,0,0 +2013,4,30,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1045,-3,0,1922,-22,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1230,5,0,1410,-14,0,0 +2013,10,5,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1529,-1,0,1815,-4,0,0 +2013,10,23,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,1,0,1335,0,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,87,1,2035,70,1,0 +2013,9,6,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,-10,0,1845,-25,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1810,20,1,1825,35,1,0 +2013,5,14,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1635,0,,1846,0,1,1 +2013,7,22,1,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,0,0,1640,-11,0,0 +2013,9,5,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-2,0,1354,-5,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2130,0,0,2225,-16,0,0 +2013,7,1,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-2,0,1119,4,0,0 +2013,6,9,7,EV,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,35,1,1129,22,1,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1915,13,0,2030,5,0,0 +2013,6,17,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,2000,17,1,2115,22,1,0 +2013,7,14,7,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,830,0,0,945,-1,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,0,0,1752,-11,0,0 +2013,4,21,7,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,2,0,608,-16,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1010,-1,0,1335,-16,0,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1845,-3,0,2125,5,0,0 +2013,10,23,3,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1445,6,0,1635,-3,0,0 +2013,7,2,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,0,0,959,-9,0,0 +2013,10,7,1,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1638,7,0,1959,14,0,0 +2013,10,25,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,26,1,1830,18,1,0 +2013,5,21,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,-6,0,2115,-1,0,0 +2013,8,8,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1110,-1,0,1310,7,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2025,30,1,2125,20,1,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1020,24,1,1210,17,1,0 +2013,4,27,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1352,30,1,1440,22,1,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1205,3,0,1435,-8,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,620,-4,0,825,-9,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,5,0,2102,-2,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1627,-2,0,1816,11,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-2,0,1146,-12,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,950,0,,1245,0,1,1 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1935,-4,0,2059,4,0,0 +2013,7,26,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1725,48,1,1857,43,1,0 +2013,8,10,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-4,0,2135,13,0,0 +2013,5,5,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1855,-5,0,2147,-33,0,0 +2013,8,9,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1200,-1,0,1302,-2,0,0 +2013,8,13,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,845,0,,1055,0,1,1 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,1,0,2304,10,0,0 +2013,8,29,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1410,-7,0,1645,-19,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2304,134,1,15,125,1,0 +2013,8,18,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,22,1,2153,66,1,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1610,1,0,1906,-14,0,0 +2013,9,21,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-8,0,1331,-10,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-6,0,1134,-8,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,-4,0,940,-2,0,0 +2013,8,18,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,750,2,0,935,-7,0,0 +2013,4,6,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1645,10,0,1800,4,0,0 +2013,8,4,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1645,0,0,1815,18,1,0 +2013,6,6,4,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1025,19,1,1304,-8,0,0 +2013,10,20,7,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1251,11,0,1501,7,0,0 +2013,8,15,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1949,17,1,2128,1,0,0 +2013,4,18,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,-1,0,1635,-14,0,0 +2013,10,9,3,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1836,5,0,2135,-17,0,0 +2013,9,25,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-4,0,1659,-12,0,0 +2013,4,15,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,0,0,1425,-10,0,0 +2013,6,1,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,805,-8,0,935,-8,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2107,3,0,2320,-13,0,0 +2013,9,29,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,707,-2,0,940,-1,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,830,34,1,1010,19,1,0 +2013,5,19,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,0,,1844,0,1,1 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,94,1,2352,92,1,0 +2013,8,21,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1052,5,0,1906,-14,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1616,-5,0,1708,-10,0,0 +2013,9,26,4,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1825,0,0,2105,0,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,7,0,1756,39,1,0 +2013,10,21,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,9,0,1700,-7,0,0 +2013,6,7,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1007,-2,0,1045,1,0,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,5,0,1755,-3,0,0 +2013,5,31,5,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1350,0,0,1644,-20,0,0 +2013,5,23,4,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,-9,0,1510,-11,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1705,1,0,1848,-9,0,0 +2013,4,22,1,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,36,1,1819,28,1,0 +2013,7,22,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,8,0,1820,5,0,0 +2013,7,5,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,-4,0,1555,-10,0,0 +2013,9,13,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1150,1,0,1255,0,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,841,-3,0,932,4,0,0 +2013,10,7,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,925,-2,0,1035,0,0,0 +2013,4,16,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,825,-6,0,955,3,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,34,1,1225,18,1,0 +2013,5,6,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,5,0,2359,-4,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1240,-3,0,1459,-4,0,0 +2013,6,15,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1205,-10,0,1503,-3,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,945,-3,0,1046,-6,0,0 +2013,8,29,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,0,0,805,-6,0,0 +2013,8,16,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,809,-9,0,0 +2013,7,26,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,1,0,801,-27,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2008,59,1,2133,48,1,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,0,0,2210,16,1,0 +2013,10,7,1,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,14,0,2220,12,0,0 +2013,9,13,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-6,0,836,-9,0,0 +2013,10,1,2,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1035,-9,0,1244,-19,0,0 +2013,5,9,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1743,0,0,1910,-1,0,0 +2013,7,13,6,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-1,0,1525,-9,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-1,0,1351,-1,0,0 +2013,10,12,6,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,740,-4,0,955,-19,0,0 +2013,6,23,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1750,2,0,1924,6,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2212,1,0,2331,5,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2010,10,0,2145,6,0,0 +2013,9,15,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1717,-1,0,1958,-1,0,0 +2013,5,17,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2019,3,0,2119,-3,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-3,0,950,4,0,0 +2013,6,12,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1653,2,0,1814,1,0,0 +2013,4,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1145,32,1,1353,21,1,0 +2013,8,28,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1748,-6,0,2330,-15,0,0 +2013,6,28,5,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-9,0,2159,-22,0,0 +2013,4,24,3,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,710,-3,0,832,15,1,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,35,1,2255,28,1,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2130,2,0,2255,-8,0,0 +2013,5,18,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1955,-2,0,2120,-19,0,0 +2013,10,20,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,841,-5,0,949,-16,0,0 +2013,10,25,5,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,755,26,1,1226,23,1,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-6,0,1005,-20,0,0 +2013,6,19,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1040,-7,0,1223,-15,0,0 +2013,4,24,3,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-4,0,1912,-16,0,0 +2013,8,19,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-8,0,2159,-23,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,19,1,1833,16,1,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-4,0,2300,-5,0,0 +2013,4,10,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,800,1,0,955,22,1,0 +2013,8,28,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1640,16,1,1925,12,0,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1105,9,0,1210,6,0,0 +2013,7,25,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-1,0,1220,-8,0,0 +2013,9,23,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1333,25,1,1418,29,1,0 +2013,6,19,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,839,-7,0,1128,-5,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,1,0,2115,2,0,0 +2013,6,28,5,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,903,0,0,1014,9,0,0 +2013,4,3,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1915,-6,0,2157,-12,0,0 +2013,7,14,7,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1510,17,1,1745,3,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1859,-1,0,2121,0,0,0 +2013,8,10,6,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,-2,0,2020,-6,0,0 +2013,6,24,1,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1545,14,0,1935,9,0,0 +2013,6,24,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,0,0,2118,-4,0,0 +2013,4,2,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1635,19,1,2040,8,0,0 +2013,6,5,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1320,7,0,1425,5,0,0 +2013,10,7,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1824,152,1,2207,150,1,0 +2013,7,17,3,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1715,-6,0,1855,-36,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1305,6,0,1620,17,1,0 +2013,6,24,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,610,-7,0,834,-12,0,0 +2013,10,15,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1605,32,1,1749,21,1,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1555,-5,0,1712,-21,0,0 +2013,8,23,5,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-3,0,500,-10,0,0 +2013,5,6,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1120,-6,0,1339,21,1,0 +2013,8,26,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,615,-1,0,710,-3,0,0 +2013,6,13,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,0,,1113,0,1,1 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1855,0,0,2051,-4,0,0 +2013,10,16,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,933,-11,0,1230,-7,0,0 +2013,6,25,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1755,5,0,2013,-12,0,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1729,140,1,2010,178,1,0 +2013,7,9,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,3,0,756,9,0,0 +2013,5,13,1,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,810,-7,0,1050,-9,0,0 +2013,7,5,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1410,130,1,1545,103,1,0 +2013,5,24,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1114,7,0,1349,1,0,0 +2013,10,12,6,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1241,-2,0,1400,-24,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-7,0,840,-3,0,0 +2013,6,13,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,6,0,2135,-9,0,0 +2013,9,24,2,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,815,-2,0,1355,-4,0,0 +2013,9,3,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-14,0,2214,-7,0,0 +2013,4,23,2,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1155,-9,0,1438,-4,0,0 +2013,7,4,4,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,28,1,1520,16,1,0 +2013,6,26,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,0,0,1003,-10,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-5,0,1055,-16,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1355,2,0,1455,-11,0,0 +2013,8,28,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,62,1,2300,71,1,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1010,0,0,1244,-12,0,0 +2013,9,28,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1116,1,0,1353,11,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2204,94,1,617,70,1,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,18,1,1838,22,1,0 +2013,6,9,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1720,3,0,1900,48,1,0 +2013,7,3,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-2,0,1735,3,0,0 +2013,7,21,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,950,-1,0,1110,7,0,0 +2013,4,20,6,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1940,18,1,2253,14,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-4,0,1546,-19,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1614,26,1,1845,27,1,0 +2013,9,17,2,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,5,0,740,-13,0,0 +2013,4,7,7,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,804,-5,0,920,-15,0,0 +2013,5,27,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,3,0,2055,-4,0,0 +2013,10,15,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2238,-2,0,701,-38,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1914,15,1,2052,-6,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-6,0,1017,-3,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1815,-1,0,2040,-10,0,0 +2013,10,14,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1729,-11,0,0 +2013,5,6,1,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1600,-7,0,1924,-19,0,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1445,-3,0,1740,-5,0,0 +2013,7,18,4,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1430,119,1,1611,127,1,0 +2013,4,9,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1055,-13,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,3,0,1547,2,0,0 +2013,7,7,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-1,0,820,-1,0,0 +2013,10,20,7,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1650,2,0,2000,-9,0,0 +2013,10,19,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,3,0,2128,9,0,0 +2013,5,7,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2045,12,0,2200,4,0,0 +2013,8,13,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-1,0,1413,-4,0,0 +2013,7,4,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,30,1,1340,25,1,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,-1,0,1955,2,0,0 +2013,7,15,1,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,835,-4,0,1002,36,1,0 +2013,10,27,7,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1450,4,0,1820,6,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1930,-3,0,2131,-12,0,0 +2013,7,24,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1215,-4,0,1400,-8,0,0 +2013,4,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,948,10,0,1555,-13,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,48,1,1250,57,1,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,830,18,1,1010,11,0,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1255,22,1,1410,10,0,0 +2013,10,8,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1251,-1,0,0 +2013,6,15,6,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,1535,15,1,2130,4,0,0 +2013,10,3,4,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1629,0,0,1950,1,0,0 +2013,4,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1023,-4,0,0 +2013,7,1,1,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1935,-5,0,2318,-16,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1505,8,0,1625,9,0,0 +2013,4,5,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,-7,0,1615,-10,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,-3,0,1125,-1,0,0 +2013,5,6,1,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1131,-8,0,1609,7,0,0 +2013,9,8,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1517,-2,0,1846,-16,0,0 +2013,6,19,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-6,0,905,-10,0,0 +2013,9,17,2,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,910,3,0,1450,-15,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1615,41,1,1835,53,1,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-6,0,1304,-8,0,0 +2013,5,31,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,928,-5,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1900,26,1,2005,17,1,0 +2013,4,26,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2020,-5,0,2150,-17,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,29,1,1500,33,1,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1920,55,1,2050,55,1,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,935,15,1,1600,0,0,0 +2013,10,24,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1320,-3,0,1407,-8,0,0 +2013,6,8,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1543,3,0,1933,-4,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1350,14,0,1620,3,0,0 +2013,10,9,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,2,0,1500,-9,0,0 +2013,8,3,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,-9,0,1148,-18,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1944,-3,0,2256,-16,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,700,-10,0,1001,-49,0,0 +2013,10,20,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1555,-4,0,1700,-4,0,0 +2013,4,9,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1240,31,1,1358,29,1,0 +2013,8,24,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1415,-4,0,1530,-9,0,0 +2013,9,13,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1800,-2,0,1925,-8,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1230,-6,0,1535,4,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1240,-8,0,1535,-14,0,0 +2013,7,25,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1415,22,1,1540,13,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-4,0,1830,-10,0,0 +2013,9,27,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1225,4,0,1535,-6,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1305,-3,0,1730,-26,0,0 +2013,6,22,6,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-11,0,1339,-16,0,0 +2013,8,10,6,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2216,5,0,617,-1,0,0 +2013,5,19,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,835,5,0,1137,-28,0,0 +2013,6,17,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,750,-5,0,855,-5,0,0 +2013,9,9,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1350,-4,0,1525,-18,0,0 +2013,9,28,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,540,-7,0,900,-32,0,0 +2013,6,6,4,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1815,37,1,2020,37,1,0 +2013,8,26,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1750,6,0,1845,5,0,0 +2013,9,20,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1600,0,0,1739,-25,0,0 +2013,5,26,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,943,-3,0,1043,2,0,0 +2013,9,21,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1400,-4,0,1619,2,0,0 +2013,6,3,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,34,1,2020,30,1,0 +2013,6,15,6,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1513,6,0,2011,-14,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,33,1,1415,30,1,0 +2013,9,21,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,707,-5,0,835,-8,0,0 +2013,6,19,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1449,-10,0,1626,-6,0,0 +2013,5,7,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,2000,-1,0,2340,-9,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1005,5,0,1320,6,0,0 +2013,4,14,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,0,0,1559,13,0,0 +2013,4,10,3,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,855,-5,0,935,-30,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,8,0,1627,-5,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2230,33,1,643,26,1,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1845,2,0,2010,-8,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1357,-6,0,2010,-17,0,0 +2013,5,6,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1031,-4,0,1327,-14,0,0 +2013,7,19,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-4,0,1100,-3,0,0 +2013,4,17,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-12,0,2226,-15,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,907,127,1,1053,103,1,0 +2013,9,12,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-4,0,1558,-3,0,0 +2013,6,16,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1910,5,0,2220,-1,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,835,-5,0,908,-18,0,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1555,5,0,1655,0,0,0 +2013,8,12,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,51,1,919,52,1,0 +2013,8,21,3,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1937,-6,0,2114,5,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,0,0,2025,-10,0,0 +2013,6,6,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1120,226,1,1350,221,1,0 +2013,9,21,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,-8,0,940,-14,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1350,56,1,1711,38,1,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,-3,0,2325,-21,0,0 +2013,10,1,2,OO,10423,Austin - Bergstrom International,Austin,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1403,-10,0,1758,-7,0,0 +2013,8,4,7,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-2,0,1645,1,0,0 +2013,10,1,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1135,-1,0,1250,-8,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1640,32,1,1850,25,1,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2212,13,0,619,-5,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1625,52,1,1750,38,1,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,650,0,0,815,-7,0,0 +2013,5,18,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,705,-4,0,830,-17,0,0 +2013,5,4,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,29,1,1738,17,1,0 +2013,5,17,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,0,2115,-12,0,0 +2013,8,17,6,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1055,-6,0,1314,-7,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1924,25,1,2100,16,1,0 +2013,6,25,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-1,0,2048,42,1,0 +2013,8,16,5,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1425,-5,0,1621,-5,0,0 +2013,10,3,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-7,0,1001,-16,0,0 +2013,10,8,2,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,610,-5,0,745,-15,0,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-2,0,829,3,0,0 +2013,4,17,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2117,93,1,2358,82,1,0 +2013,4,14,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1122,-5,0,0 +2013,8,9,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-6,0,815,-14,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1800,0,0,1925,-4,0,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1208,-7,0,1502,-7,0,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1445,-4,0,1721,5,0,0 +2013,10,10,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,0,0,1315,9,0,0 +2013,7,13,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2150,3,0,100,-55,0,0 +2013,9,2,1,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-4,0,1655,2,0,0 +2013,7,26,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,0,0,1040,-11,0,0 +2013,8,23,5,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1353,12,0,1800,20,1,0 +2013,9,7,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,711,-3,0,1051,-3,0,0 +2013,8,11,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,16,1,2055,18,1,0 +2013,7,31,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,946,-2,0,1007,4,0,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1030,-1,0,1130,0,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1315,-1,0,1420,-5,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2149,29,1,51,43,1,0 +2013,7,18,4,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1050,13,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1000,-1,0,1220,26,1,0 +2013,8,29,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1255,-2,0,1405,-4,0,0 +2013,5,20,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2350,23,1,550,9,0,0 +2013,7,12,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,9,0,2000,11,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,706,-1,0,1001,-9,0,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-2,0,1650,-14,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1615,50,1,1800,53,1,0 +2013,4,29,1,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,600,4,0,830,8,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-3,0,957,29,1,0 +2013,4,9,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,11,0,1825,5,0,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,10,0,2050,11,0,0 +2013,9,9,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1440,10,0,1731,28,1,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,-1,0,1625,-8,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2151,3,0,2349,6,0,0 +2013,6,11,2,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-4,0,1122,-6,0,0 +2013,8,18,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-4,0,1559,3,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1540,21,1,1630,21,1,0 +2013,6,4,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,610,1,0,715,8,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2110,-1,0,2225,-11,0,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,825,29,1,1145,28,1,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,825,11,0,951,2,0,0 +2013,10,5,6,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1154,-3,0,1254,-4,0,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1005,37,1,1250,26,1,0 +2013,8,17,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1745,3,0,1905,0,0,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2025,8,0,2350,-22,0,0 +2013,7,11,4,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,-7,0,1859,-31,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,17,1,1820,14,0,0 +2013,9,11,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1541,-6,0,1709,-1,0,0 +2013,5,23,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1845,-9,0,1956,-14,0,0 +2013,5,2,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1010,3,0,1605,-5,0,0 +2013,6,5,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,704,-2,0,926,-7,0,0 +2013,6,16,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1954,37,1,2015,34,1,0 +2013,7,24,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,831,9,0,0 +2013,6,22,6,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-6,0,913,-13,0,0 +2013,8,23,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,1,0,2053,-4,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,3,0,1617,-10,0,0 +2013,10,11,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,920,14,0,0 +2013,8,23,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-2,0,533,5,0,0 +2013,10,5,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1210,-6,0,1328,-15,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1025,-1,0,1620,-12,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1525,2,0,2055,45,1,0 +2013,8,19,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1235,-1,0,1405,-6,0,0 +2013,9,23,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,-5,0,1825,7,0,0 +2013,10,21,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,4,0,1352,6,0,0 +2013,10,29,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1940,-3,0,2236,-17,0,0 +2013,5,28,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-4,0,1709,-8,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,21,1,1854,11,0,0 +2013,9,18,3,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,756,-4,0,930,12,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,605,-6,0,846,-22,0,0 +2013,8,21,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,19,1,1924,-5,0,0 +2013,9,29,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,22,1,940,4,0,0 +2013,8,26,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-7,0,1412,-11,0,0 +2013,9,1,7,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1525,10,0,1605,0,0,0 +2013,9,14,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,1,0,1950,-7,0,0 +2013,7,23,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-4,0,1305,-5,0,0 +2013,7,7,7,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1221,1,0,1439,10,0,0 +2013,9,20,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1750,184,1,1915,186,1,0 +2013,4,21,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-5,0,1558,-1,0,0 +2013,6,23,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,720,-4,0,1019,-4,0,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,912,60,1,1020,54,1,0 +2013,9,4,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1438,0,0,2002,-7,0,0 +2013,9,22,7,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,6,0,1453,-12,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,755,4,0,925,4,0,0 +2013,6,3,1,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1345,-4,0,1610,-19,0,0 +2013,7,31,3,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,1016,7,0,0 +2013,10,30,3,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1815,55,1,2015,38,1,0 +2013,9,18,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1125,2,0,1210,13,0,0 +2013,7,15,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1802,2,0,2017,-8,0,0 +2013,7,12,5,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1848,120,1,2058,97,1,0 +2013,10,23,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1840,16,1,2005,10,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1925,2,0,2250,5,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2135,-1,0,2300,1,0,0 +2013,8,1,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,20,-1,0,732,-6,0,0 +2013,4,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1701,-2,0,2113,-10,0,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1425,25,1,1706,3,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,-2,0,1950,-12,0,0 +2013,7,20,6,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1000,2,0,1245,17,1,0 +2013,7,5,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,843,-5,0,0 +2013,8,30,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2000,-6,0,2258,-7,0,0 +2013,6,6,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-6,0,1114,-10,0,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1325,20,1,1640,11,0,0 +2013,8,1,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,935,1,0,1100,-7,0,0 +2013,8,28,3,YV,14100,Philadelphia International,Philadelphia,PA,14524,Richmond International,Richmond,VA,943,-7,0,1044,-11,0,0 +2013,8,21,3,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,26,1,1945,8,0,0 +2013,8,20,2,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1557,16,1,1645,15,1,0 +2013,10,24,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1304,-4,0,1410,8,0,0 +2013,7,10,3,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1654,105,1,1825,112,1,0 +2013,6,11,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1619,-2,0,1913,-5,0,0 +2013,7,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,800,-6,0,910,-16,0,0 +2013,4,23,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-5,0,1005,-4,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1758,101,1,1955,79,1,0 +2013,7,25,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2200,82,1,2310,73,1,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-4,0,950,15,1,0 +2013,7,9,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,0,0,2050,14,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,1,0,2140,0,0,0 +2013,7,19,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,755,-5,0,932,-17,0,0 +2013,8,7,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,115,-7,0,545,-7,0,0 +2013,7,13,6,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2153,-8,0,558,20,1,0 +2013,6,17,1,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2010,-4,0,2140,-2,0,0 +2013,5,19,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1251,31,1,1539,41,1,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,0,0,1235,9,0,0 +2013,4,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,102,1,2040,95,1,0 +2013,5,9,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,710,0,0,0 +2013,9,14,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,-4,0,1918,-6,0,0 +2013,4,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-4,0,1600,7,0,0 +2013,7,23,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1644,1,0,1825,-9,0,0 +2013,5,22,3,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1750,14,0,2044,16,1,0 +2013,8,3,6,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,720,23,1,919,22,1,0 +2013,8,7,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,-7,0,813,-10,0,0 +2013,7,11,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1058,2,0,1912,-20,0,0 +2013,5,15,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-5,0,1634,-11,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,95,1,1430,102,1,0 +2013,9,29,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1018,-5,0,1358,33,1,0 +2013,8,6,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2205,0,0,2335,-7,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,-7,0,1442,-8,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2140,32,1,2315,34,1,0 +2013,7,1,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1119,34,1,1638,32,1,0 +2013,8,20,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1150,-2,0,1400,33,1,0 +2013,9,20,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1950,21,1,2110,13,0,0 +2013,10,29,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2210,2,0,48,1,0,0 +2013,6,1,6,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,0,0,609,-7,0,0 +2013,10,28,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1459,-4,0,1756,-14,0,0 +2013,6,25,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-8,0,1022,-11,0,0 +2013,6,13,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1237,75,1,1417,68,1,0 +2013,5,30,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-1,0,1906,22,1,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,-4,0,1310,-13,0,0 +2013,4,5,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-3,0,1639,-8,0,0 +2013,5,23,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-1,0,1114,-10,0,0 +2013,5,2,4,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,809,-9,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,-4,0,1931,-4,0,0 +2013,4,11,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,-11,0,146,-29,0,0 +2013,5,22,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2045,0,,2313,0,1,1 +2013,6,25,2,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,545,-2,0,656,-18,0,0 +2013,6,27,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,745,4,0,905,15,1,0 +2013,7,4,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-4,0,1254,-11,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,2,0,859,-14,0,0 +2013,9,30,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-1,0,1433,-5,0,0 +2013,5,10,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1405,23,1,1545,4,0,0 +2013,9,12,4,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-4,0,1600,-3,0,0 +2013,9,9,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1559,65,1,1644,58,1,0 +2013,8,22,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1015,-2,0,1310,-2,0,0 +2013,10,29,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-6,0,2155,-13,0,0 +2013,9,17,2,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1600,-4,0,1650,-8,0,0 +2013,10,17,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1324,43,1,1630,46,1,0 +2013,9,12,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,935,0,0,1030,4,0,0 +2013,5,9,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,11,0,1715,9,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,-4,0,1206,-3,0,0 +2013,10,23,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,2,0,504,1,0,0 +2013,10,6,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,2018,-25,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-3,0,2229,-12,0,0 +2013,8,24,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1714,-6,0,2324,-7,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,8,0,2020,-6,0,0 +2013,9,17,2,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1415,-9,0,1515,-19,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,604,-1,0,850,21,1,0 +2013,5,13,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-7,0,1913,-11,0,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-6,0,1508,-9,0,0 +2013,6,4,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,641,-19,0,0 +2013,9,22,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1825,-7,0,1925,-13,0,0 +2013,4,15,1,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1225,10,0,1330,31,1,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1810,65,1,2008,46,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,33,1,1338,17,1,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2210,-4,0,2310,-13,0,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,700,-4,0,830,-12,0,0 +2013,7,25,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,800,-5,0,1040,-12,0,0 +2013,6,26,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-8,0,1415,3,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,-2,0,1439,-5,0,0 +2013,8,7,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,-2,0,1928,-3,0,0 +2013,8,14,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1705,-2,0,1800,-10,0,0 +2013,9,5,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-10,0,806,-34,0,0 +2013,4,12,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1255,3,0,1535,0,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-2,0,1220,2,0,0 +2013,4,4,4,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,-5,0,2010,-15,0,0 +2013,7,10,3,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1224,-2,0,1355,-13,0,0 +2013,9,19,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1742,68,1,2149,74,1,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1613,1,0,1722,-8,0,0 +2013,7,21,7,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1928,50,1,2103,42,1,0 +2013,6,28,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1410,13,0,1619,28,1,0 +2013,4,27,6,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,730,8,0,1245,8,0,0 +2013,8,7,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2212,5,0,25,24,1,0 +2013,5,25,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,-7,0,2128,-19,0,0 +2013,6,22,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,650,-6,0,705,-23,0,0 +2013,7,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,15,1,1500,19,1,0 +2013,6,11,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,-4,0,1625,-6,0,0 +2013,8,29,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1058,3,0,1212,-13,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,901,-5,0,1158,-32,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,834,16,1,1020,7,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1955,-2,0,2340,-8,0,0 +2013,7,26,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,61,1,2250,47,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2100,15,1,2255,10,0,0 +2013,9,25,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,650,-5,0,710,0,0,0 +2013,4,10,3,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1620,-6,0,2031,-8,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-4,0,1846,-18,0,0 +2013,5,26,7,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-9,0,1936,-17,0,0 +2013,5,29,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,206,1,1848,206,1,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1020,-8,0,1310,-23,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-7,0,830,-12,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1200,-4,0,1358,4,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1430,3,0,1755,2,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,735,2,0,1135,16,1,0 +2013,8,13,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2140,63,1,2358,33,1,0 +2013,5,9,4,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1715,-1,0,2045,-36,0,0 +2013,5,28,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,820,5,0,935,6,0,0 +2013,9,7,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1515,-10,0,1700,-36,0,0 +2013,4,6,6,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,940,-4,0,1055,-1,0,0 +2013,6,25,2,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,0,0,825,13,0,0 +2013,6,11,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,-8,0,838,-3,0,0 +2013,9,24,2,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,640,-8,0,820,-21,0,0 +2013,5,25,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,-5,0,35,-24,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,933,0,0,1539,-4,0,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1735,1,0,2029,-9,0,0 +2013,6,15,6,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,-1,0,1105,-16,0,0 +2013,4,18,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,9,0,1215,12,0,0 +2013,6,5,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1320,0,0,1410,-6,0,0 +2013,6,9,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1238,13,0,2116,-9,0,0 +2013,4,1,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1051,-6,0,1116,-16,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1320,6,0,1640,-1,0,0 +2013,10,18,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,829,-4,0,1029,-6,0,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1015,-5,0,1339,-14,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,0,0,2225,39,1,0 +2013,8,25,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,-8,0,942,21,1,0 +2013,6,7,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1925,-4,0,2105,-21,0,0 +2013,4,7,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-1,0,656,7,0,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,4,0,1230,1,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1645,14,0,1910,16,1,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2135,48,1,30,77,1,0 +2013,6,5,3,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2045,70,1,2310,52,1,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-6,0,920,-6,0,0 +2013,7,21,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,9,0,2035,4,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-1,0,1635,22,1,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-3,0,1645,4,0,0 +2013,4,7,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,-13,0,1132,-26,0,0 +2013,10,23,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,550,-3,0,902,-20,0,0 +2013,5,2,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,830,2,0,925,-5,0,0 +2013,4,26,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-1,0,1445,-11,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-4,0,1139,4,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1855,4,0,2320,-20,0,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,805,14,0,905,6,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1314,4,0,1440,-7,0,0 +2013,6,16,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1300,-4,0,1421,18,1,0 +2013,5,1,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1542,18,1,1715,-4,0,0 +2013,10,12,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,9,0,1350,10,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,730,-1,0,1155,8,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1010,-1,0,1315,0,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1745,1,0,1850,-13,0,0 +2013,6,10,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-5,0,1820,-3,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1440,61,1,1750,32,1,0 +2013,10,23,3,EV,10792,Buffalo Niagara International,Buffalo,NY,12953,LaGuardia,New York,NY,1105,-9,0,1227,-7,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1345,2,0,1525,-11,0,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1056,5,0,1429,13,0,0 +2013,8,14,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,715,-6,0,953,0,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1857,-4,0,2030,-21,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,21,1,2010,8,0,0 +2013,6,24,1,WN,14679,San Diego International,San Diego,CA,15016,Lambert-St. Louis International,St. Louis,MO,730,-4,0,1305,-19,0,0 +2013,4,5,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,1022,54,1,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-5,0,1800,-7,0,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1840,0,,1945,0,1,1 +2013,8,1,4,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1845,56,1,2140,98,1,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2220,108,1,2332,90,1,0 +2013,4,23,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1247,-5,0,1350,1,0,0 +2013,5,7,2,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1125,-3,0,1430,-5,0,0 +2013,10,27,7,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1454,9,0,1603,3,0,0 +2013,6,24,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1130,7,0,1725,11,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1244,5,0,1655,-6,0,0 +2013,7,4,4,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1330,7,0,1444,-3,0,0 +2013,9,9,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,18,1,1810,19,1,0 +2013,6,25,2,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1535,92,1,2105,86,1,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2010,33,1,2105,21,1,0 +2013,4,14,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,2045,13,0,2240,9,0,0 +2013,10,2,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1145,-3,0,1309,-10,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,-5,0,1947,-24,0,0 +2013,7,29,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2245,8,0,135,29,1,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1035,4,0,1255,-4,0,0 +2013,10,31,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,-10,0,1323,-4,0,0 +2013,8,9,5,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1324,-4,0,1420,1,0,0 +2013,4,9,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1451,-4,0,1746,-22,0,0 +2013,6,28,5,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1700,-2,0,1825,3,0,0 +2013,4,23,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-5,0,900,-1,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,107,1,2255,94,1,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,850,2,0,950,-5,0,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1350,31,1,1435,33,1,0 +2013,5,31,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2043,2,0,2338,-3,0,0 +2013,7,18,4,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1850,8,0,2125,-13,0,0 +2013,5,17,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,1,0,1250,-6,0,0 +2013,8,20,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2030,13,0,2155,7,0,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1015,7,0,1255,29,1,0 +2013,4,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1725,9,0,1851,2,0,0 +2013,6,16,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,68,1,1355,63,1,0 +2013,8,29,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1639,3,0,1746,-7,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,901,34,1,1446,21,1,0 +2013,5,21,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1224,-2,0,1445,-22,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,2105,-8,0,2258,3,0,0 +2013,5,5,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,10,0,1729,17,1,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1615,31,1,1755,14,0,0 +2013,10,7,1,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2120,24,1,516,6,0,0 +2013,5,14,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1905,2,0,2107,-14,0,0 +2013,4,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,-3,0,1633,-10,0,0 +2013,8,4,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1428,4,0,1615,-13,0,0 +2013,4,3,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-4,0,1305,0,0,0 +2013,5,28,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,-3,0,2120,-2,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1020,37,1,1129,34,1,0 +2013,4,2,2,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1655,0,0,1836,-8,0,0 +2013,8,27,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,0,0,1019,0,0,0 +2013,6,27,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1918,5,0,2127,-2,0,0 +2013,5,30,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1230,28,1,1428,38,1,0 +2013,5,16,4,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1713,-9,0,1841,-15,0,0 +2013,6,10,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1705,-2,0,2030,1,0,0 +2013,5,9,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2117,48,1,2349,62,1,0 +2013,10,2,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-15,0,1010,-28,0,0 +2013,8,29,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,645,-8,0,844,-17,0,0 +2013,10,8,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,-5,0,1730,6,0,0 +2013,10,19,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,17,1,2045,10,0,0 +2013,4,1,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1845,125,1,2003,120,1,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,815,-4,0,1028,-13,0,0 +2013,5,15,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1750,-7,0,1905,-31,0,0 +2013,10,30,3,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-6,0,1915,19,1,0 +2013,8,9,5,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1456,-5,0,1641,-22,0,0 +2013,5,2,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,-1,0,1916,-25,0,0 +2013,4,8,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,-3,0,2209,-19,0,0 +2013,7,1,1,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1040,32,1,1640,36,1,0 +2013,10,22,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2005,-3,0,2150,-36,0,0 +2013,5,10,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,807,15,1,0 +2013,5,6,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2050,0,0,2200,-9,0,0 +2013,10,30,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,12,0,2049,22,1,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1740,-9,0,2215,-12,0,0 +2013,10,14,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,2,0,1304,4,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1850,13,0,2310,1,0,0 +2013,5,11,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,2004,13,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1730,10,0,2000,15,1,0 +2013,8,8,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,0,0,1409,-13,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-5,0,2220,-10,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,602,-1,0,811,-8,0,0 +2013,4,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,600,13,0,702,4,0,0 +2013,6,29,6,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,28,1,2055,-14,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1009,2,0,1330,3,0,0 +2013,6,5,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2036,-6,0,2312,-22,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1909,0,0,2123,-28,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,20,-6,0,554,-12,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,3,0,1130,-4,0,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1228,33,1,1532,25,1,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1010,1,0,1215,-10,0,0 +2013,6,18,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,1,0,2110,-14,0,0 +2013,8,7,3,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2105,-5,0,2205,-14,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1924,-9,0,2312,-21,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,-3,0,650,-4,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-6,0,1115,-6,0,0 +2013,8,10,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1105,55,1,1226,44,1,0 +2013,8,24,6,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-17,0,1645,-34,0,0 +2013,6,11,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,859,-14,0,0 +2013,6,3,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,-1,0,1922,2,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1255,-2,0,1450,-16,0,0 +2013,4,21,7,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1005,-17,0,1115,-23,0,0 +2013,9,26,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1941,25,1,2256,27,1,0 +2013,6,20,4,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,606,-4,0,755,-13,0,0 +2013,10,22,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,935,-2,0,1055,-6,0,0 +2013,4,19,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1525,41,1,1827,20,1,0 +2013,8,30,5,EV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1430,9,0,1608,-7,0,0 +2013,7,16,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,-3,0,1816,-3,0,0 +2013,5,24,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1541,10,0,1653,15,1,0 +2013,7,17,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,755,-7,0,845,-9,0,0 +2013,4,20,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1307,27,1,2100,8,0,0 +2013,4,5,5,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1310,7,0,1345,6,0,0 +2013,10,20,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1750,-2,0,1948,-20,0,0 +2013,4,12,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1515,-11,0,0 +2013,7,20,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1220,8,0,1225,9,0,0 +2013,4,20,6,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1112,14,0,1238,2,0,0 +2013,10,10,4,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,830,-10,0,1019,-19,0,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,810,70,1,934,70,1,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1610,-2,0,1840,-7,0,0 +2013,7,10,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,15,1,742,10,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-4,0,1630,12,0,0 +2013,6,11,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2035,-3,0,2331,3,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1335,144,1,1444,160,1,0 +2013,7,4,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-5,0,1540,-20,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1155,1,0,1405,0,0,0 +2013,8,26,1,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,745,-1,0,1035,0,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1650,9,0,1805,-6,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,89,1,1535,89,1,0 +2013,4,7,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1721,3,0,2030,-13,0,0 +2013,4,5,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-10,0,919,-2,0,0 +2013,8,25,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,0,0,2233,-7,0,0 +2013,8,25,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1015,20,1,1145,16,1,0 +2013,8,2,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1436,1,0,1619,-4,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1030,2,0,1240,0,0,0 +2013,6,14,5,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,605,-6,0,820,12,0,0 +2013,4,28,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-5,0,1018,-7,0,0 +2013,9,28,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1450,6,0,1830,1,0,0 +2013,7,30,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1430,1,0,1810,-10,0,0 +2013,4,17,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-2,0,1327,4,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2321,-1,0,716,3,0,0 +2013,10,10,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,6,0,2152,17,1,0 +2013,8,25,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1056,-6,0,1650,-22,0,0 +2013,6,6,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1925,75,1,2115,64,1,0 +2013,10,25,5,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,18,1,1810,15,1,0 +2013,7,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,-5,0,2321,-13,0,0 +2013,6,9,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-2,0,1153,-5,0,0 +2013,7,24,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2015,0,0,2020,-2,0,0 +2013,6,23,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,710,-2,0,1052,25,1,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,6,0,1315,10,0,0 +2013,10,6,7,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1710,0,0,1950,-22,0,0 +2013,9,22,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,922,-8,0,1028,-6,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1208,-2,0,1403,-14,0,0 +2013,10,10,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1430,3,0,1555,5,0,0 +2013,10,10,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1755,-10,0,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,-2,0,1303,-6,0,0 +2013,9,4,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1450,0,0,1728,-19,0,0 +2013,6,30,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,-9,0,1220,-27,0,0 +2013,10,24,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1619,5,0,2100,1,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1341,10,0,1654,6,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1930,11,0,5,5,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-6,0,1745,-16,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-2,0,1939,-17,0,0 +2013,4,5,5,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,44,1,2040,39,1,0 +2013,6,25,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1137,114,1,1440,160,1,0 +2013,7,10,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,10,0,1112,8,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,14,0,2115,4,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,-6,0,1615,-15,0,0 +2013,10,23,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,52,1,1550,34,1,0 +2013,5,20,1,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1840,12,0,2215,22,1,0 +2013,10,8,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1140,-4,0,1305,-13,0,0 +2013,6,24,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,-7,0,1725,-8,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,830,13,0,1115,8,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2035,-3,0,2215,-9,0,0 +2013,7,22,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1926,-10,0,2058,-36,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2100,9,0,2243,3,0,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,-5,0,2050,2,0,0 +2013,7,15,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,67,1,855,58,1,0 +2013,10,19,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1030,4,0,1220,-2,0,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1115,56,1,1320,54,1,0 +2013,4,18,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1110,174,1,1300,178,1,0 +2013,4,15,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-2,0,750,-16,0,0 +2013,5,17,5,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1305,-4,0,1635,-11,0,0 +2013,6,20,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1007,0,0,1318,-4,0,0 +2013,5,6,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,3,0,1630,-6,0,0 +2013,9,12,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-5,0,1907,-11,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,8,0,1455,9,0,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1026,-5,0,1344,-18,0,0 +2013,7,11,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,-3,0,1705,18,1,0 +2013,9,26,4,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-1,0,745,9,0,0 +2013,10,2,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,32,1,2131,20,1,0 +2013,7,12,5,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1316,1,0,1422,4,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,800,17,1,925,20,1,0 +2013,4,3,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1955,-2,0,2110,28,1,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1817,109,1,1915,97,1,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,6,0,2351,5,0,0 +2013,6,22,6,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,-6,0,1028,-2,0,0 +2013,4,21,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,600,-3,0,840,4,0,0 +2013,4,3,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,-2,0,1910,-1,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2144,21,1,2322,19,1,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1020,6,0,1525,-4,0,0 +2013,7,28,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,800,-3,0,1055,-9,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1238,0,0,1357,-1,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,5,0,1855,12,0,0 +2013,4,14,7,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,754,36,1,1555,11,0,0 +2013,10,24,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1700,9,0,1756,5,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-1,0,2140,46,1,0 +2013,8,17,6,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-9,0,1200,-6,0,0 +2013,4,22,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2118,-7,0,2333,-13,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-4,0,2146,-13,0,0 +2013,6,25,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,2,0,820,9,0,0 +2013,6,21,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,1,0,1825,-16,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,18,1,2305,0,0,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1355,1,0,1625,-19,0,0 +2013,4,26,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1219,8,0,1420,30,1,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,847,20,1,1150,13,0,0 +2013,7,19,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,-3,0,2029,-10,0,0 +2013,7,12,5,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1055,-3,0,1918,10,0,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2125,42,1,2300,26,1,0 +2013,9,13,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,35,1,1918,60,1,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1535,12,0,1815,10,0,0 +2013,5,22,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-2,0,735,-8,0,0 +2013,10,10,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,7,0,1738,3,0,0 +2013,8,9,5,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1745,11,0,2145,9,0,0 +2013,10,5,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,914,-2,0,1205,-31,0,0 +2013,7,30,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1507,74,1,1648,87,1,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-4,0,1435,-8,0,0 +2013,9,21,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-8,0,1055,-17,0,0 +2013,4,12,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1845,-4,0,2125,9,0,0 +2013,10,2,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1742,-5,0,1911,-7,0,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2155,39,1,43,79,1,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1900,20,1,2135,14,0,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1520,-3,0,1730,6,0,0 +2013,8,16,5,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,-7,0,1930,-25,0,0 +2013,7,23,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-2,0,2135,-6,0,0 +2013,9,13,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1501,-6,0,1600,-20,0,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,840,-4,0,1038,-33,0,0 +2013,10,23,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,649,0,0,0 +2013,5,5,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1200,1,0,1325,-13,0,0 +2013,6,10,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1910,97,1,2040,93,1,0 +2013,7,28,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1757,-10,0,1856,10,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1322,20,1,1415,13,0,0 +2013,10,24,4,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-7,0,1747,13,0,0 +2013,4,20,6,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,844,-6,0,1107,16,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1235,0,0,1435,11,0,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-3,0,1105,-25,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1955,37,1,2205,32,1,0 +2013,10,10,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2140,72,1,2250,56,1,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,825,-2,0,914,-17,0,0 +2013,5,18,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1009,-1,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,750,-3,0,910,-12,0,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1930,-3,0,2223,25,1,0 +2013,7,10,3,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-3,0,1907,-7,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2150,8,0,2321,-8,0,0 +2013,6,6,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-4,0,635,-8,0,0 +2013,7,12,5,YV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1214,2,0,1350,-12,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,-4,0,2205,-14,0,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1040,-2,0,1200,2,0,0 +2013,4,1,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,-9,0,2110,-8,0,0 +2013,10,18,5,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,540,1,0,850,7,0,0 +2013,8,30,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,655,-4,0,825,-12,0,0 +2013,5,17,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-6,0,1205,-7,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1020,7,0,1140,-4,0,0 +2013,5,23,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,756,-13,0,0 +2013,10,4,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,605,-3,0,750,-19,0,0 +2013,9,8,7,9E,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1600,-8,0,1744,-23,0,0 +2013,4,21,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,916,-4,0,1030,-7,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-6,0,1148,-12,0,0 +2013,5,19,7,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1955,42,1,2115,36,1,0 +2013,5,26,7,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,-5,0,2018,-12,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1505,30,1,1740,11,0,0 +2013,5,28,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-2,0,1800,19,1,0 +2013,9,2,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1745,0,0,1930,8,0,0 +2013,6,30,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2230,3,0,113,-18,0,0 +2013,4,5,5,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1830,-2,0,2150,1,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,900,30,1,1015,33,1,0 +2013,10,6,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,915,20,1,1050,26,1,0 +2013,5,26,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-4,0,955,-18,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1625,5,0,1715,-2,0,0 +2013,7,1,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-2,0,1206,3,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,815,-4,0,1025,-20,0,0 +2013,8,20,2,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1741,-9,0,1904,-19,0,0 +2013,10,30,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-6,0,1100,-5,0,0 +2013,6,12,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-2,0,1401,-10,0,0 +2013,10,20,7,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,-1,0,1550,-3,0,0 +2013,4,11,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,620,-1,0,1015,-10,0,0 +2013,6,5,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,21,1,1918,11,0,0 +2013,5,25,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1705,6,0,1905,26,1,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,800,2,0,905,-2,0,0 +2013,6,4,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,3,0,1211,4,0,0 +2013,8,27,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-5,0,1548,-8,0,0 +2013,9,28,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,550,-3,0,1159,0,0,0 +2013,5,13,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,20,1,1206,19,1,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1315,11,0,1631,17,1,0 +2013,5,17,5,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-4,0,855,-21,0,0 +2013,6,26,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,5,0,1128,6,0,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,21,1,2200,-2,0,0 +2013,5,8,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-3,0,753,-25,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1230,-3,0,1605,-5,0,0 +2013,4,27,6,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1258,-5,0,1545,-12,0,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-5,0,1100,-8,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,3,0,1356,-7,0,0 +2013,10,10,4,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1117,-3,0,1839,-20,0,0 +2013,10,10,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-5,0,1134,6,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2250,25,1,2355,25,1,0 +2013,8,13,2,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,600,1,0,729,33,1,0 +2013,10,15,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,-7,0,1442,-5,0,0 +2013,6,28,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-1,0,925,-10,0,0 +2013,5,5,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,950,12,0,1230,16,1,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,15,1,1510,6,0,0 +2013,6,19,3,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,-5,0,1303,14,0,0 +2013,6,16,7,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1207,10,0,1331,13,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,11,0,1800,6,0,0 +2013,8,6,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1358,-2,0,1651,-12,0,0 +2013,7,20,6,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1325,7,0,1546,4,0,0 +2013,8,12,1,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1940,41,1,2224,34,1,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1730,-4,0,2010,-5,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1605,2,0,1830,-20,0,0 +2013,8,23,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1943,0,0,2238,-26,0,0 +2013,8,6,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,845,1,0,1023,4,0,0 +2013,4,24,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1305,-6,0,1601,21,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,54,1,1245,47,1,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2015,-3,0,2122,-2,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,44,1,2254,30,1,0 +2013,9,9,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1405,-1,0,1505,-8,0,0 +2013,4,12,5,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1101,-3,0,1534,-17,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1506,-4,0,1608,-13,0,0 +2013,8,26,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-3,0,913,5,0,0 +2013,8,29,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1305,-5,0,1500,-19,0,0 +2013,8,9,5,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,852,2,0,1138,9,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,850,9,0,1040,11,0,0 +2013,7,26,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1015,14,0,1145,8,0,0 +2013,10,12,6,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1357,40,1,1610,28,1,0 +2013,7,17,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1521,4,0,1738,-11,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-7,0,1618,-12,0,0 +2013,10,24,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,1,0,1610,0,0,0 +2013,7,28,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1123,-3,0,1336,5,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2009,-5,0,2206,-1,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,725,-3,0,825,-17,0,0 +2013,7,7,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1046,-16,0,1221,-17,0,0 +2013,10,14,1,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1535,12,0,1805,11,0,0 +2013,9,19,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,812,26,1,930,52,1,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,-1,0,1605,-9,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1225,1,0,1500,-12,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-5,0,806,-19,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2106,6,0,2343,-11,0,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1020,-6,0,1215,-16,0,0 +2013,8,12,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1535,-1,0,1655,1,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,9,0,2042,-1,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1315,12,0,1425,5,0,0 +2013,4,2,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,1058,-2,0,0 +2013,10,10,4,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2210,11,0,30,2,0,0 +2013,6,18,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,750,-2,0,925,-18,0,0 +2013,8,20,2,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1810,2,0,2128,-8,0,0 +2013,4,23,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-7,0,1017,2,0,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1820,206,1,2110,177,1,0 +2013,7,20,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-3,0,957,-18,0,0 +2013,4,15,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1123,2,0,0 +2013,6,5,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1031,-5,0,1350,-21,0,0 +2013,7,6,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,-5,0,2010,-21,0,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,-2,0,1055,0,0,0 +2013,8,9,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1731,62,1,2009,84,1,0 +2013,7,8,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1950,36,1,2020,44,1,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1300,-8,0,1614,-18,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,38,1,2200,55,1,0 +2013,9,16,1,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1222,-2,0,2016,-7,0,0 +2013,7,6,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1540,-2,0,1755,-12,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1708,-5,0,1910,11,0,0 +2013,9,19,4,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,905,-7,0,1037,-7,0,0 +2013,8,22,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,32,1,1155,30,1,0 +2013,6,3,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,20,1,809,16,1,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,39,1,2350,30,1,0 +2013,6,4,2,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1112,-5,0,1421,6,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-4,0,1054,2,0,0 +2013,4,23,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-7,0,1606,-11,0,0 +2013,8,4,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-2,0,1254,1,0,0 +2013,5,5,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1113,-15,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-3,0,1431,-15,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,164,1,1450,235,1,0 +2013,5,24,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,-1,0,2347,0,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,915,-6,0,1050,-10,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,846,1,0,1638,-10,0,0 +2013,10,16,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,813,-15,0,0 +2013,9,12,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,42,1,1000,13,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,-3,0,1130,-10,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,0,0,2055,22,1,0 +2013,5,27,1,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1835,-1,0,2110,-2,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1240,0,0,1455,-11,0,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,731,-3,0,904,-8,0,0 +2013,9,28,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1942,-2,0,2250,-45,0,0 +2013,7,26,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1935,74,1,2120,57,1,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,845,35,1,1025,19,1,0 +2013,5,14,2,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-10,0,1015,9,0,0 +2013,9,3,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,204,1,903,168,1,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1750,20,1,1910,13,0,0 +2013,5,6,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,-3,0,2051,-10,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,3,0,1045,-5,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,904,-5,0,1213,-22,0,0 +2013,8,8,4,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,1,0,1415,-2,0,0 +2013,8,11,7,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,5,0,1340,2,0,0 +2013,6,28,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,730,-5,0,925,-16,0,0 +2013,4,30,2,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1659,8,0,1959,-25,0,0 +2013,10,29,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,559,-8,0,648,-13,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,48,1,1750,43,1,0 +2013,8,24,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-4,0,2025,-15,0,0 +2013,8,15,4,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,58,1,721,72,1,0 +2013,7,5,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,-6,0,1740,71,1,0 +2013,4,16,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,48,1,1916,23,1,0 +2013,7,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2021,-4,0,2151,-8,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-4,0,1840,-10,0,0 +2013,9,10,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1540,-19,0,1705,-23,0,0 +2013,5,8,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,834,-3,0,1028,-17,0,0 +2013,8,29,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-6,0,936,-16,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,35,1,1845,19,1,0 +2013,6,26,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,800,-2,0,1045,-10,0,0 +2013,6,20,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1544,1,0,2100,11,0,0 +2013,9,4,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-3,0,1252,-2,0,0 +2013,9,14,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1055,-6,0,1607,15,1,0 +2013,6,30,7,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-7,0,1245,-3,0,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2028,-3,0,2339,8,0,0 +2013,6,29,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1258,-6,0,1425,-21,0,0 +2013,7,10,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,930,27,1,1030,26,1,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1330,-2,0,2120,7,0,0 +2013,5,29,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-4,0,1408,2,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,-4,0,1908,-12,0,0 +2013,7,29,1,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1650,-6,0,1744,-11,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1355,10,0,1520,51,1,0 +2013,10,18,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,910,8,0,1145,-1,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1900,103,1,2230,94,1,0 +2013,7,8,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,30,1,1006,17,1,0 +2013,8,13,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,955,5,0,1115,-3,0,0 +2013,9,28,6,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-4,0,1645,-7,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2110,10,0,2300,18,1,0 +2013,4,18,4,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-5,0,845,0,0,0 +2013,8,28,3,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,-4,0,816,-16,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1810,-2,0,1833,-3,0,0 +2013,5,8,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,954,2,0,1215,24,1,0 +2013,4,26,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-2,0,949,-14,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1755,6,0,1910,-2,0,0 +2013,4,9,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-11,0,1009,-25,0,0 +2013,8,15,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1225,-11,0,0 +2013,4,18,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1651,-2,0,1936,0,0,0 +2013,10,18,5,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1935,30,1,30,15,1,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1845,149,1,1945,151,1,0 +2013,8,5,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,-11,0,2208,-9,0,0 +2013,10,22,2,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1855,-8,0,2205,0,0,0 +2013,7,26,5,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1721,-4,0,1900,-8,0,0 +2013,6,25,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,8,0,1735,-4,0,0 +2013,6,7,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,600,8,0,640,2,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,700,33,1,840,19,1,0 +2013,6,17,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-10,0,1305,-16,0,0 +2013,9,16,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-9,0,1530,-24,0,0 +2013,10,9,3,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1000,-4,0,1605,-8,0,0 +2013,4,12,5,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,11,0,2110,-11,0,0 +2013,7,5,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,28,1,1730,20,1,0 +2013,10,6,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2210,10,0,2328,32,1,0 +2013,10,1,2,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1654,18,1,1802,14,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1335,36,1,1646,31,1,0 +2013,5,10,5,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,8,0,2057,-2,0,0 +2013,4,23,2,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,1219,17,1,1703,20,1,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,-5,0,2350,-5,0,0 +2013,8,4,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,2010,58,1,2325,41,1,0 +2013,10,24,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,-3,0,1912,-4,0,0 +2013,6,29,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,11,0,925,-10,0,0 +2013,7,3,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1850,-2,0,2005,-6,0,0 +2013,10,20,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,-4,0,2110,-3,0,0 +2013,6,13,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-6,0,936,-8,0,0 +2013,6,22,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1308,8,0,1512,-4,0,0 +2013,8,19,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,-9,0,1940,-8,0,0 +2013,10,26,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-5,0,845,2,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,0,0,1110,-2,0,0 +2013,6,19,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,0,0,1546,11,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,715,0,0,920,-25,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-1,0,1200,3,0,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,17,1,2330,24,1,0 +2013,4,19,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,22,1,2024,30,1,0 +2013,9,5,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1832,-4,0,2156,-35,0,0 +2013,5,1,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,-5,0,1623,-6,0,0 +2013,6,29,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,900,1,0,1025,4,0,0 +2013,4,24,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-9,0,850,1,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,3,0,2207,2,0,0 +2013,7,16,2,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1720,42,1,1901,69,1,0 +2013,4,16,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1115,7,0,1248,-1,0,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1319,-1,0,1452,1,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-10,0,24,-27,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1906,-5,0,2226,-12,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,6,0,1010,-18,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1310,14,0,1647,21,1,0 +2013,8,23,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-1,0,1345,-17,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,5,0,2205,-6,0,0 +2013,7,20,6,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1250,1,0,1514,-17,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,950,3,0,1745,-9,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,950,0,0,1230,-13,0,0 +2013,8,28,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,3,0,1326,8,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1335,29,1,1640,19,1,0 +2013,8,10,6,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1007,-8,0,1246,-19,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1323,0,0,1657,-9,0,0 +2013,9,25,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-1,0,1915,-16,0,0 +2013,8,18,7,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,1,0,1125,-16,0,0 +2013,5,4,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,56,1,2020,51,1,0 +2013,8,6,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1735,-2,0,2015,2,0,0 +2013,9,30,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2347,-6,0,552,-19,0,0 +2013,10,11,5,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1655,53,1,1845,26,1,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1355,12,0,1530,3,0,0 +2013,6,12,3,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,900,14,0,1150,24,1,0 +2013,6,24,1,DL,13244,Memphis International,Memphis,TN,14747,Seattle/Tacoma International,Seattle,WA,1940,2,0,2212,-10,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1510,2,0,1615,-1,0,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-4,0,1447,-12,0,0 +2013,7,1,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-7,0,649,5,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1930,4,0,2155,-2,0,0 +2013,4,4,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1800,-11,0,2015,-25,0,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,167,1,2101,219,1,0 +2013,4,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1750,0,0,1855,-4,0,0 +2013,10,9,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2215,5,0,2306,-1,0,0 +2013,5,12,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1950,-8,0,2209,-17,0,0 +2013,8,23,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,-6,0,1929,17,1,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1435,-2,0,1630,-6,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2009,1,0,2206,-2,0,0 +2013,8,8,4,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-6,0,1526,-1,0,0 +2013,4,9,2,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,810,-4,0,948,16,1,0 +2013,10,12,6,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,630,-2,0,1448,-11,0,0 +2013,5,13,1,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,650,-5,0,810,-9,0,0 +2013,7,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,950,84,1,1219,58,1,0 +2013,7,20,6,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1529,0,0,0 +2013,4,26,5,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1430,-5,0,1620,-20,0,0 +2013,8,8,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2020,103,1,2151,98,1,0 +2013,5,16,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,-7,0,855,-10,0,0 +2013,6,15,6,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,810,2,0,929,-15,0,0 +2013,10,11,5,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-7,0,1205,-5,0,0 +2013,9,15,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1235,8,0,1412,14,0,0 +2013,10,8,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-9,0,1622,-22,0,0 +2013,8,29,4,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1720,-7,0,1843,-13,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1123,-5,0,1258,3,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,-1,0,2320,8,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,810,-2,0,1245,1,0,0 +2013,9,15,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1755,0,0,1857,-7,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,901,51,1,1124,36,1,0 +2013,6,7,5,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,9,0,745,10,0,0 +2013,7,18,4,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1330,2,0,1555,10,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-7,0,1340,-17,0,0 +2013,9,29,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,-6,0,2053,-2,0,0 +2013,10,3,4,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1255,45,1,1510,29,1,0 +2013,4,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,316,1,1830,320,1,0 +2013,5,22,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1555,-6,0,1834,26,1,0 +2013,7,23,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-5,0,1310,-15,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,-1,0,2308,-7,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,-1,0,1052,-12,0,0 +2013,5,9,4,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1337,-4,0,1504,-17,0,0 +2013,8,23,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1832,-5,0,1929,-1,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,545,-5,0,927,-1,0,0 +2013,7,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,30,29,1,549,15,1,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-3,0,1016,-15,0,0 +2013,6,29,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1153,-2,0,1326,-8,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1720,14,0,1856,8,0,0 +2013,6,7,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,-3,0,1315,4,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1350,14,0,1635,4,0,0 +2013,5,19,7,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1845,37,1,1944,37,1,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1050,-3,0,1215,-18,0,0 +2013,10,21,1,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,-3,0,800,-8,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,818,-1,0,920,-6,0,0 +2013,5,11,6,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,732,-7,0,930,-40,0,0 +2013,5,13,1,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-2,0,919,1,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1930,-3,0,2030,4,0,0 +2013,5,21,2,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,615,1,0,715,-4,0,0 +2013,7,1,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1640,110,1,1755,91,1,0 +2013,10,12,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,700,-10,0,1030,-17,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1925,-6,0,2116,-22,0,0 +2013,4,25,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1235,-9,0,1524,-15,0,0 +2013,9,5,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,-9,0,1052,-4,0,0 +2013,7,4,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1455,0,0,1545,-8,0,0 +2013,5,8,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1220,38,1,1340,109,1,0 +2013,5,27,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1720,-2,0,123,-27,0,0 +2013,5,30,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,22,1,2305,31,1,0 +2013,5,17,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,649,-6,0,815,-6,0,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2013,1,0,2304,-10,0,0 +2013,7,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1020,-3,0,1238,-15,0,0 +2013,6,23,7,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,955,-6,0,1333,-43,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,949,-2,0,1522,-22,0,0 +2013,8,29,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,950,-2,0,1200,7,0,0 +2013,9,18,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-3,0,745,-24,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1510,10,0,1755,-13,0,0 +2013,8,1,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,200,1,2046,176,1,0 +2013,8,30,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,-5,0,1531,14,0,0 +2013,8,11,7,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1329,6,0,2100,0,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1015,179,1,1140,177,1,0 +2013,4,19,5,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1730,7,0,1818,5,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,800,-8,0,1036,-16,0,0 +2013,9,11,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,203,1,2215,179,1,0 +2013,5,12,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,20,1,1650,17,1,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1558,36,1,1733,51,1,0 +2013,7,2,2,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,1153,-14,0,0 +2013,7,12,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,930,-6,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1142,100,1,1334,126,1,0 +2013,7,5,5,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1859,-3,0,2105,-6,0,0 +2013,9,15,7,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,840,-3,0,1049,-6,0,0 +2013,10,27,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1240,-6,0,1535,23,1,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,11,0,1621,-2,0,0 +2013,4,23,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1145,-4,0,1835,-25,0,0 +2013,10,15,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,839,2,0,1100,4,0,0 +2013,8,12,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1915,17,1,2025,17,1,0 +2013,6,26,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,831,-12,0,0 +2013,6,8,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-9,0,935,1,0,0 +2013,5,23,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1321,-1,0,1458,-17,0,0 +2013,9,2,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1252,-7,0,1349,-18,0,0 +2013,5,13,1,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,-3,0,1804,-18,0,0 +2013,6,26,3,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-5,0,1852,-23,0,0 +2013,5,21,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,930,-5,0,1020,-11,0,0 +2013,6,6,4,YV,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-5,0,1901,-6,0,0 +2013,10,8,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1640,4,0,1900,-7,0,0 +2013,5,13,1,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1538,-2,0,1705,-28,0,0 +2013,8,7,3,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,546,4,0,759,3,0,0 +2013,4,12,5,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1644,21,1,1940,11,0,0 +2013,5,28,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,902,-17,0,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1411,65,1,1702,59,1,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1935,29,1,2145,7,0,0 +2013,7,26,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,10,0,344,16,1,0 +2013,6,13,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-1,0,959,-12,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1405,-2,0,1608,-19,0,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1135,11,0,1300,5,0,0 +2013,5,14,2,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,19,1,1835,-14,0,0 +2013,5,8,3,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-12,0,1013,-16,0,0 +2013,5,12,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,45,1,2130,53,1,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,8,0,1825,3,0,0 +2013,5,21,2,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,620,1,0,1431,12,0,0 +2013,8,14,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,2,0,1725,13,0,0 +2013,9,1,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,-5,0,2032,-15,0,0 +2013,10,23,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-7,0,1049,17,1,0 +2013,8,30,5,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,730,-8,0,1600,16,1,0 +2013,7,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1750,0,0,2115,-6,0,0 +2013,8,4,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,730,-5,0,1330,-17,0,0 +2013,6,16,7,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1420,37,1,1714,44,1,0 +2013,7,2,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-9,0,1425,-18,0,0 +2013,8,30,5,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,2000,18,1,2209,-1,0,0 +2013,5,24,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1935,-5,0,2050,-7,0,0 +2013,8,24,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,830,-3,0,950,-25,0,0 +2013,5,27,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-2,0,2110,-3,0,0 +2013,7,5,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-2,0,1758,-23,0,0 +2013,10,4,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,-5,0,1255,-18,0,0 +2013,8,31,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1905,-8,0,2004,-11,0,0 +2013,7,12,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,1040,-12,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2240,-3,0,2350,-8,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-6,0,1243,-5,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1755,120,1,1930,109,1,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1139,-2,0,1254,-2,0,0 +2013,7,21,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,77,1,1332,64,1,0 +2013,6,5,3,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,704,-7,0,904,-17,0,0 +2013,9,16,1,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,18,1,1945,19,1,0 +2013,10,20,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,830,0,0,930,2,0,0 +2013,5,8,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1705,4,0,1835,5,0,0 +2013,8,19,1,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1145,11,0,1735,14,0,0 +2013,5,18,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-5,0,930,-16,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-7,0,1826,-17,0,0 +2013,9,24,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,0,0,1940,-14,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,-2,0,903,14,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1738,-5,0,1839,-13,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-5,0,2135,-8,0,0 +2013,10,2,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1110,-6,0,1355,8,0,0 +2013,5,14,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1900,-3,0,2050,-16,0,0 +2013,6,17,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-5,0,1622,-6,0,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1805,-2,0,1955,-12,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-4,0,1635,8,0,0 +2013,10,30,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,959,2,0,1056,-4,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1920,-1,0,2,-3,0,0 +2013,10,15,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,605,0,0,755,-2,0,0 +2013,5,20,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1458,62,1,1744,64,1,0 +2013,7,23,2,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1710,2,0,2005,45,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1640,-6,0,2015,-19,0,0 +2013,10,11,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-5,0,1214,20,1,0 +2013,7,31,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,62,1,2155,43,1,0 +2013,7,30,2,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,3,0,1910,23,1,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,2,0,1750,-13,0,0 +2013,8,15,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,11,0,2018,24,1,0 +2013,9,24,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,905,4,0,1250,-1,0,0 +2013,6,26,3,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,29,1,1425,10,0,0 +2013,9,3,2,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1740,24,1,2035,2,0,0 +2013,8,17,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1010,12,0,1301,20,1,0 +2013,5,5,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1550,3,0,1833,-12,0,0 +2013,6,6,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2005,9,0,2138,1,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,13,0,1800,30,1,0 +2013,8,31,6,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,920,-2,0,1235,-2,0,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,620,7,0,757,-5,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1100,0,0,1200,-9,0,0 +2013,4,23,2,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-3,0,1122,2,0,0 +2013,10,11,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1125,-2,0,1324,-12,0,0 +2013,10,16,3,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,0,0,1820,-13,0,0 +2013,9,24,2,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-4,0,1403,-17,0,0 +2013,7,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1602,30,1,1918,32,1,0 +2013,6,19,3,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,630,-2,0,902,-8,0,0 +2013,7,12,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1625,-5,0,2114,-8,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,750,4,0,855,0,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,136,1,1809,135,1,0 +2013,6,13,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,930,1,0,1130,-7,0,0 +2013,9,11,3,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1910,15,1,1940,7,0,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,910,3,0,1225,0,0,0 +2013,8,4,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,46,1,1307,24,1,0 +2013,10,3,4,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1719,25,1,1909,18,1,0 +2013,7,28,7,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,-4,0,1644,14,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1820,18,1,2140,-2,0,0 +2013,6,6,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,640,-1,0,735,-7,0,0 +2013,10,4,5,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1005,-4,0,1125,-20,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1227,38,1,1459,19,1,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1425,181,1,1730,171,1,0 +2013,5,28,2,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1446,-6,0,1628,-15,0,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1215,-8,0,1353,-18,0,0 +2013,10,27,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1050,-2,0,1225,-3,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,947,-5,0,1110,-9,0,0 +2013,6,6,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,-2,0,620,-3,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2105,-1,0,2210,-8,0,0 +2013,4,2,2,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,627,-12,0,924,-19,0,0 +2013,6,13,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1725,44,1,1835,62,1,0 +2013,4,17,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1120,75,1,1440,80,1,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,-3,0,2250,-3,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1945,3,0,2050,-5,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,13,0,1401,7,0,0 +2013,8,2,5,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1525,-8,0,1817,-9,0,0 +2013,6,25,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,73,1,2225,62,1,0 +2013,9,13,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,830,1,0,940,-2,0,0 +2013,5,3,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-8,0,909,-5,0,0 +2013,7,11,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,26,1,1140,30,1,0 +2013,5,16,4,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1650,145,1,1843,137,1,0 +2013,7,19,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,841,14,0,1004,15,1,0 +2013,4,18,4,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1043,1,0,1133,20,1,0 +2013,7,28,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,-1,0,2040,3,0,0 +2013,9,30,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,620,-3,0,740,-29,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-7,0,1210,-10,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1055,5,0,1200,-5,0,0 +2013,10,30,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-7,0,1538,-9,0,0 +2013,9,7,6,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1850,-11,0,2200,-61,0,0 +2013,9,26,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,4,0,2005,-12,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1216,0,0,1408,-12,0,0 +2013,5,11,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1820,15,1,2000,2,0,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-1,0,1238,-22,0,0 +2013,5,17,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,534,-9,0,832,-24,0,0 +2013,5,26,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,822,-15,0,0 +2013,4,8,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1311,81,1,1422,83,1,0 +2013,9,26,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,-5,0,2115,-6,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1405,15,1,1500,14,0,0 +2013,4,16,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1213,-9,0,1353,-16,0,0 +2013,10,9,3,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1315,22,1,1920,13,0,0 +2013,6,12,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,1,0,2155,-4,0,0 +2013,8,27,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1530,0,0,1715,-9,0,0 +2013,6,23,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,3,0,1619,-7,0,0 +2013,4,15,1,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1720,3,0,1845,-9,0,0 +2013,8,21,3,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-11,0,928,0,0,0 +2013,10,29,2,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,715,15,1,841,30,1,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1750,1,0,1855,-15,0,0 +2013,9,8,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,-1,0,2005,-5,0,0 +2013,8,6,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,2,0,1920,-11,0,0 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,608,-7,0,1443,-7,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-5,0,920,-13,0,0 +2013,5,5,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1954,7,0,2146,4,0,0 +2013,6,30,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2045,0,0,2313,9,0,0 +2013,4,21,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,700,-2,0,946,-6,0,0 +2013,7,5,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-2,0,1517,-1,0,0 +2013,6,14,5,YV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1617,8,0,1744,-13,0,0 +2013,9,30,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1700,16,1,1814,4,0,0 +2013,6,4,2,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,2,0,2255,-14,0,0 +2013,5,1,3,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-1,0,919,31,1,0 +2013,7,14,7,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1819,-3,0,1904,-10,0,0 +2013,4,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1356,-4,0,1744,-16,0,0 +2013,7,10,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,846,-6,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,700,-2,0,800,-7,0,0 +2013,5,16,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,122,1,1920,117,1,0 +2013,5,17,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-7,0,1104,4,0,0 +2013,9,13,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1825,6,0,2020,-14,0,0 +2013,10,27,7,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,935,-5,0,1037,-11,0,0 +2013,9,1,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,905,-1,0,1010,-6,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2300,8,0,2350,12,0,0 +2013,8,22,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-3,0,1030,-23,0,0 +2013,7,31,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,5,0,2225,-1,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1725,1,0,1830,-5,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,16,1,1255,7,0,0 +2013,10,27,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2006,-9,0,2055,-12,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,-3,0,1947,-7,0,0 +2013,8,19,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1020,4,0,1140,7,0,0 +2013,6,22,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,705,-13,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1755,13,0,2010,7,0,0 +2013,9,5,4,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-10,0,1255,-5,0,0 +2013,6,25,2,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1123,24,1,1455,12,0,0 +2013,5,30,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,9,0,1454,18,1,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,8,0,1040,4,0,0 +2013,7,29,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-11,0,1850,-6,0,0 +2013,8,20,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-8,0,955,-1,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1405,-4,0,1659,-5,0,0 +2013,9,10,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1415,1,0,1510,-12,0,0 +2013,10,21,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1325,45,1,1450,38,1,0 +2013,9,21,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1830,-2,0,1955,0,0,0 +2013,9,17,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,900,1,0,915,-10,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1050,34,1,1933,59,1,0 +2013,6,17,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1015,7,0,1115,0,0,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1810,49,1,2110,33,1,0 +2013,7,5,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1240,-5,0,1512,2,0,0 +2013,9,4,3,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1919,72,1,2110,44,1,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1613,-6,0,1909,-16,0,0 +2013,8,23,5,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,-9,0,1337,-6,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-7,0,1027,-11,0,0 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1659,6,0,2213,-15,0,0 +2013,9,22,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1259,-7,0,1716,-14,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,2015,32,1,2235,21,1,0 +2013,4,21,7,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,719,-7,0,904,-14,0,0 +2013,4,7,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1010,9,0,1243,6,0,0 +2013,8,11,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,930,-13,0,0 +2013,8,21,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1600,-3,0,1656,-4,0,0 +2013,4,10,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1800,-1,0,1905,-7,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1058,-1,0,1156,-5,0,0 +2013,5,10,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,635,-6,0,851,-11,0,0 +2013,8,18,7,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-7,0,553,-12,0,0 +2013,9,17,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,923,-5,0,1119,-10,0,0 +2013,6,7,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,-6,0,1405,-18,0,0 +2013,5,20,1,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-1,0,554,-3,0,0 +2013,6,23,7,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1025,22,1,1345,2,0,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,-1,0,1040,-2,0,0 +2013,10,5,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,840,0,0,1110,-6,0,0 +2013,5,3,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,832,26,1,1059,31,1,0 +2013,7,1,1,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1740,-1,0,1903,-5,0,0 +2013,8,29,4,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1007,3,0,1021,0,0,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1810,-7,0,1955,-7,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1050,-1,0,1325,-12,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,900,-2,0,1253,0,0,0 +2013,4,7,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1719,8,0,2003,8,0,0 +2013,10,20,7,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,930,-7,0,1117,-10,0,0 +2013,6,5,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,900,1,0,1724,2,0,0 +2013,5,13,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,65,1,1728,58,1,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,515,1,0,1040,-17,0,0 +2013,8,4,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1913,15,1,2145,37,1,0 +2013,9,9,1,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1625,0,0,1955,-29,0,0 +2013,10,2,3,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,650,-3,0,848,-3,0,0 +2013,5,30,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,-3,0,2047,8,0,0 +2013,7,1,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,24,1,2006,23,1,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,39,1,954,29,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,0,0,1257,1,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,1,0,930,0,0,0 +2013,5,7,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,-2,0,1208,-14,0,0 +2013,5,28,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,1246,-12,0,0 +2013,5,17,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,716,-5,0,905,-19,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,750,-9,0,851,-33,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1355,0,0,1729,-9,0,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,730,-5,0,935,-10,0,0 +2013,4,16,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,600,9,0,621,-1,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,5,0,1201,3,0,0 +2013,5,23,4,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,10,0,1705,16,1,0 +2013,4,5,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,925,-5,0,1119,-26,0,0 +2013,10,17,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1820,67,1,2300,43,1,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1250,43,1,1605,34,1,0 +2013,9,16,1,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1040,4,0,1157,14,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-1,0,1039,12,0,0 +2013,10,7,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,641,-4,0,805,6,0,0 +2013,8,20,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,-3,0,1315,-17,0,0 +2013,4,2,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,845,-3,0,1045,-6,0,0 +2013,7,9,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,67,1,1945,85,1,0 +2013,7,31,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,655,1,0,820,6,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-4,0,1311,-15,0,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1205,0,0,1255,-5,0,0 +2013,4,23,2,EV,10529,Bradley International,Hartford,CT,11042,Cleveland-Hopkins International,Cleveland,OH,545,-10,0,736,-33,0,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1149,10,0,1418,10,0,0 +2013,9,16,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,558,-9,0,730,-4,0,0 +2013,7,15,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,937,31,1,1803,41,1,0 +2013,6,21,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-8,0,1725,1,0,0 +2013,6,20,4,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,1400,81,1,1620,59,1,0 +2013,4,22,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,11,0,1122,27,1,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2113,-1,0,2225,-9,0,0 +2013,7,13,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-1,0,1114,-24,0,0 +2013,5,30,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,834,-8,0,1350,-32,0,0 +2013,9,2,1,UA,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,634,-3,0,715,-13,0,0 +2013,8,18,7,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1715,-1,0,2010,2,0,0 +2013,8,25,7,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,930,-8,0,1135,22,1,0 +2013,4,28,7,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1335,51,1,1950,33,1,0 +2013,9,27,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1430,-7,0,1630,4,0,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1810,0,0,1935,-5,0,0 +2013,9,29,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1155,-4,0,1940,-12,0,0 +2013,9,11,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,-2,0,25,-3,0,0 +2013,7,15,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,-5,0,810,-7,0,0 +2013,10,21,1,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-1,0,1143,-10,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1615,0,0,1832,-31,0,0 +2013,10,15,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1600,75,1,1835,81,1,0 +2013,10,30,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1355,-3,0,1625,-28,0,0 +2013,6,8,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1700,14,0,1920,-6,0,0 +2013,10,19,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1020,-8,0,1211,1,0,0 +2013,7,9,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,-5,0,1740,-16,0,0 +2013,7,11,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,8,0,1415,8,0,0 +2013,9,28,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1526,-5,0,1651,-12,0,0 +2013,6,11,2,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1735,3,0,1845,-5,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2030,51,1,2135,52,1,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1020,-9,0,1351,-8,0,0 +2013,10,3,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-1,0,1053,2,0,0 +2013,8,15,4,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1830,33,1,2125,21,1,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1048,-1,0,1310,3,0,0 +2013,5,19,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,12,0,1452,5,0,0 +2013,4,7,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1002,-2,0,1101,-11,0,0 +2013,7,17,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-9,0,1051,-25,0,0 +2013,6,10,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,814,0,0,1054,-8,0,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-2,0,2354,-16,0,0 +2013,6,10,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1439,2,0,1701,-18,0,0 +2013,4,9,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,700,0,0,831,-15,0,0 +2013,6,3,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-2,0,715,-5,0,0 +2013,8,25,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,24,1,1735,23,1,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1755,32,1,2053,15,1,0 +2013,4,16,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-2,0,1304,-2,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,800,-1,0,1035,1,0,0 +2013,5,12,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1507,-6,0,1821,-23,0,0 +2013,4,26,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2138,-12,0,600,-40,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,2,0,1325,1,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-1,0,1333,-17,0,0 +2013,6,5,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1800,-11,0,1943,-31,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,805,5,0,1046,-16,0,0 +2013,10,7,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,-4,0,1314,-7,0,0 +2013,9,23,1,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,25,1,1030,8,0,0 +2013,7,8,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11042,Cleveland-Hopkins International,Cleveland,OH,2335,41,1,650,44,1,0 +2013,4,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2131,-8,0,2240,-14,0,0 +2013,4,14,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,745,-2,0,950,-11,0,0 +2013,6,10,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1256,17,1,1525,23,1,0 +2013,7,15,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1830,-5,0,2110,-11,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1529,-2,0,1846,-7,0,0 +2013,10,14,1,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1625,1,0,1655,-4,0,0 +2013,5,13,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,9,0,1155,-5,0,0 +2013,10,20,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-4,0,1652,-5,0,0 +2013,6,19,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-6,0,1555,-12,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-1,0,1839,-21,0,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,33,1,1317,43,1,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-4,0,1102,-6,0,0 +2013,8,4,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-8,0,1018,-14,0,0 +2013,10,1,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-8,0,1709,-11,0,0 +2013,8,22,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-4,0,840,-16,0,0 +2013,8,22,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1331,135,1,1445,128,1,0 +2013,7,28,7,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1317,-9,0,1505,3,0,0 +2013,6,6,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,4,0,1713,24,1,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1916,4,0,2315,-8,0,0 +2013,10,1,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,0,0,1745,-4,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1055,1,0,1320,3,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-1,0,1306,-11,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1250,-2,0,1430,-4,0,0 +2013,7,21,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,725,-7,0,859,-4,0,0 +2013,6,5,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-5,0,1558,-12,0,0 +2013,8,21,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,5,0,1910,-3,0,0 +2013,10,16,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,730,-19,0,0 +2013,9,14,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,1,0,1839,-2,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,1,0,1336,0,0,0 +2013,9,25,3,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,937,1,0,1117,1,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1215,3,0,1439,16,1,0 +2013,4,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-11,0,9,-16,0,0 +2013,4,29,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-1,0,1325,-11,0,0 +2013,4,17,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,740,1,0,850,-5,0,0 +2013,9,29,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,1205,-20,0,0 +2013,8,29,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,17,1,1355,11,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2005,-9,0,2057,-9,0,0 +2013,9,16,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,745,21,1,924,43,1,0 +2013,7,12,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,86,1,2046,90,1,0 +2013,5,7,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-8,0,830,2,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,-1,0,2250,-1,0,0 +2013,5,19,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,2,0,1850,-29,0,0 +2013,7,9,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1920,20,1,2110,40,1,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,172,1,1740,200,1,0 +2013,5,23,4,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,947,2,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1840,96,1,2154,80,1,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1305,-1,0,1435,-11,0,0 +2013,10,17,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1210,11,0,1330,25,1,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2155,-1,0,2352,-23,0,0 +2013,9,6,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,645,17,1,827,9,0,0 +2013,9,16,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1115,-10,0,1245,-11,0,0 +2013,8,1,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,829,6,0,0 +2013,8,12,1,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,-10,0,2247,-2,0,0 +2013,10,30,3,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,2018,-9,0,2202,-7,0,0 +2013,4,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1205,37,1,1301,26,1,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,1,0,1355,12,0,0 +2013,7,1,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1010,-5,0,1353,1,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2014,18,1,2245,-2,0,0 +2013,7,10,3,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,735,2,0,910,-1,0,0 +2013,4,13,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1825,12,0,2132,2,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-4,0,1027,-9,0,0 +2013,10,26,6,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1900,-5,0,2135,-8,0,0 +2013,10,21,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1030,17,1,1230,11,0,0 +2013,5,9,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-3,0,1300,-5,0,0 +2013,6,21,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,839,-15,0,1004,-20,0,0 +2013,9,21,6,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1944,19,1,2250,-9,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,106,1,1115,133,1,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1235,60,1,1405,61,1,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1713,4,0,2338,-8,0,0 +2013,8,3,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-3,0,1437,-8,0,0 +2013,4,23,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1011,2,0,1317,58,1,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,-2,0,1130,-26,0,0 +2013,4,1,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,33,1,1355,23,1,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1533,-1,0,1723,-31,0,0 +2013,5,7,2,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1021,-7,0,1352,-11,0,0 +2013,10,19,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-8,0,2055,-18,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1515,-6,0,1840,0,0,0 +2013,5,2,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1000,-5,0,1226,7,0,0 +2013,4,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1140,8,0,1315,8,0,0 +2013,4,5,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-1,0,1022,-3,0,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,635,-3,0,755,-4,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1146,26,1,1411,20,1,0 +2013,4,24,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1915,33,1,1940,31,1,0 +2013,4,1,1,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,600,52,1,830,42,1,0 +2013,8,28,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1803,79,1,1848,65,1,0 +2013,6,13,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,615,-9,0,740,-15,0,0 +2013,4,20,6,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1030,2,0,1625,-16,0,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1155,-6,0,1735,-9,0,0 +2013,8,13,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1005,-3,0,1121,-4,0,0 +2013,5,11,6,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1155,43,1,1515,54,1,0 +2013,10,22,2,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-3,0,819,-3,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,840,41,1,1230,138,1,0 +2013,7,26,5,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,25,1,1458,49,1,0 +2013,8,8,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,87,1,2159,77,1,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,645,-3,0,835,-9,0,0 +2013,5,8,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1150,91,1,1315,87,1,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,17,1,2045,16,1,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2129,17,1,2231,19,1,0 +2013,6,12,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-2,0,815,-13,0,0 +2013,10,6,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1520,-1,0,1820,-4,0,0 +2013,5,21,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1735,25,1,1830,20,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1240,-3,0,1458,2,0,0 +2013,9,25,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,2,0,1435,-9,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,-3,0,2146,-1,0,0 +2013,8,20,2,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1642,71,1,1827,61,1,0 +2013,5,23,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,9,0,1052,-5,0,0 +2013,8,1,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,10,0,1925,7,0,0 +2013,6,17,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,0,0,1455,-17,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,853,-5,0,1140,-2,0,0 +2013,4,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1717,-2,0,2136,-18,0,0 +2013,7,7,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,0,0,1600,39,1,0 +2013,6,10,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,150,1,2155,153,1,0 +2013,6,27,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,713,-9,0,1120,-18,0,0 +2013,10,29,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1550,14,0,1715,10,0,0 +2013,8,29,4,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1637,-6,0,1819,-2,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2230,-4,0,2320,-7,0,0 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1535,11,0,2015,8,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-5,0,1308,-24,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1051,0,0,1426,-4,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1518,14,0,1710,16,1,0 +2013,7,6,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,349,1,1811,334,1,0 +2013,7,17,3,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1145,63,1,1324,52,1,0 +2013,10,21,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2320,-5,0,750,-20,0,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1910,3,0,2220,-6,0,0 +2013,8,29,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,730,-11,0,825,-4,0,0 +2013,9,29,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-11,0,849,-18,0,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,-2,0,2022,-8,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,700,4,0,840,-6,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2150,96,1,2340,81,1,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1740,13,0,1845,9,0,0 +2013,9,27,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-7,0,2100,-5,0,0 +2013,10,14,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,3,0,1453,2,0,0 +2013,10,9,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-11,0,1726,4,0,0 +2013,4,19,5,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1045,-5,0,1252,-9,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1010,75,1,1510,66,1,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-7,0,2100,-7,0,0 +2013,5,22,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1219,0,0,1355,-3,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1756,14,0,1929,4,0,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1754,-1,0,1856,-16,0,0 +2013,7,10,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2146,-4,0,42,32,1,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1520,-4,0,1632,-7,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,900,-7,0,1255,-5,0,0 +2013,5,12,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1345,-3,0,1510,-15,0,0 +2013,8,12,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,1,0,1625,1,0,0 +2013,8,30,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1406,-1,0,1656,0,0,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1121,127,1,1307,122,1,0 +2013,10,3,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2015,7,0,2135,5,0,0 +2013,7,13,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1800,59,1,1940,31,1,0 +2013,10,15,2,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1646,-5,0,1739,-16,0,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,1257,38,1,1353,22,1,0 +2013,7,25,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1624,101,1,1816,97,1,0 +2013,4,23,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,725,-3,0,920,-2,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1915,32,1,2144,39,1,0 +2013,10,4,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,69,1,2039,62,1,0 +2013,7,16,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,720,216,1,1019,217,1,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,29,1,1219,21,1,0 +2013,5,18,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,635,0,0,805,-18,0,0 +2013,5,6,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1320,7,0,1600,-6,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1255,8,0,1505,9,0,0 +2013,10,8,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,945,-6,0,1130,-12,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,-2,0,1643,-7,0,0 +2013,5,26,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,-6,0,1100,-26,0,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1950,23,1,2200,17,1,0 +2013,10,29,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1515,0,0,1711,16,1,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1840,-4,0,2335,-12,0,0 +2013,7,29,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,4,0,1925,-3,0,0 +2013,6,6,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,840,7,0,1139,13,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,-2,0,2324,-1,0,0 +2013,10,5,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1537,-7,0,1648,27,1,0 +2013,10,17,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,0,0,1710,5,0,0 +2013,10,27,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1655,6,0,1800,4,0,0 +2013,10,24,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1210,7,0,1506,-16,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,-1,0,1929,10,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1930,42,1,2100,50,1,0 +2013,9,29,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,19,1,2136,3,0,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-5,0,941,0,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,5,0,1455,10,0,0 +2013,9,17,2,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,739,-9,0,953,-15,0,0 +2013,4,6,6,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1005,-9,0,1402,25,1,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-3,0,1748,-25,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1040,0,0,1135,-5,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-2,0,1402,5,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1045,-4,0,1205,-18,0,0 +2013,7,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,1,0,1440,4,0,0 +2013,8,9,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-1,0,1326,-3,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,11,0,1200,2,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1130,-9,0,1350,-10,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,740,-2,0,1305,-24,0,0 +2013,4,17,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,-2,0,750,-6,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2002,7,0,2346,-2,0,0 +2013,10,24,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,830,0,0,950,-1,0,0 +2013,6,16,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,19,1,2137,8,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1921,-5,0,2051,-9,0,0 +2013,6,30,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,83,1,2155,83,1,0 +2013,8,9,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-12,0,1310,-18,0,0 +2013,7,26,5,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,-1,0,1830,1,0,0 +2013,5,7,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1020,-6,0,1346,-7,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,630,-6,0,813,-21,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1535,43,1,1820,34,1,0 +2013,4,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1217,-8,0,1527,-2,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,4,0,2110,-19,0,0 +2013,6,14,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,850,2,0,1210,8,0,0 +2013,10,11,5,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1130,64,1,1957,70,1,0 +2013,7,2,2,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1925,-15,0,2133,-17,0,0 +2013,7,9,2,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,57,1,2110,66,1,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1255,0,0,1452,-8,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2120,14,0,2258,8,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2050,20,1,2140,18,1,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,-6,0,2320,-13,0,0 +2013,7,9,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1439,16,1,1613,15,1,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,838,1,0,1431,-13,0,0 +2013,6,21,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1525,11,0,1700,5,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2020,17,1,2215,8,0,0 +2013,4,18,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1418,305,1,1521,317,1,0 +2013,8,8,4,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1935,162,1,2120,177,1,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,32,1,2200,42,1,0 +2013,8,31,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,659,65,1,919,34,1,0 +2013,7,15,1,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1155,2,0,2019,-5,0,0 +2013,8,27,2,EV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1430,-9,0,1608,-19,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,940,1,0,1310,-13,0,0 +2013,7,22,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,2,0,1305,-7,0,0 +2013,8,11,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,2336,2,0,555,10,0,0 +2013,4,9,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,2,0,1407,-34,0,0 +2013,7,16,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1555,160,1,1700,168,1,0 +2013,4,15,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,1030,-13,0,1242,-9,0,0 +2013,7,13,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1505,18,1,1830,-31,0,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2310,5,0,634,-6,0,0 +2013,9,6,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1155,8,0,1420,11,0,0 +2013,4,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,320,37,1,713,48,1,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1430,1,0,1535,-5,0,0 +2013,4,19,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1244,-11,0,0 +2013,5,11,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1420,-5,0,1559,2,0,0 +2013,8,2,5,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2247,-7,0,15,-2,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,17,1,1310,31,1,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1805,155,1,2055,142,1,0 +2013,4,10,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1540,0,0,1655,20,1,0 +2013,7,11,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-2,0,1027,-1,0,0 +2013,5,28,2,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,2215,38,1,617,60,1,0 +2013,10,24,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1046,-7,0,1109,-13,0,0 +2013,7,10,3,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1250,-1,0,2108,-13,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,-3,0,930,-19,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1541,-2,0,1737,-20,0,0 +2013,10,11,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1121,0,0,1306,-5,0,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,745,82,1,905,79,1,0 +2013,7,27,6,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1710,3,0,2250,-15,0,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1940,-2,0,2240,6,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2050,91,1,2335,87,1,0 +2013,8,28,3,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,741,-4,0,1030,-8,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1935,33,1,2256,34,1,0 +2013,10,14,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1235,8,0,1345,13,0,0 +2013,9,6,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,955,0,0,1600,-8,0,0 +2013,7,6,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1535,-9,0,1655,-6,0,0 +2013,5,5,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1850,0,0,2030,-10,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,5,0,1730,-1,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1430,9,0,2110,-20,0,0 +2013,6,19,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,-5,0,840,6,0,0 +2013,7,10,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,29,1,1630,37,1,0 +2013,6,22,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,1755,-11,0,0 +2013,10,6,7,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1553,108,1,1848,88,1,0 +2013,8,12,1,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1345,18,1,1530,-3,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1107,-7,0,1208,-18,0,0 +2013,5,1,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1300,-3,0,1550,3,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,6,0,1650,4,0,0 +2013,7,10,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,737,-6,0,918,-11,0,0 +2013,8,16,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,2,0,1822,15,1,0 +2013,6,22,6,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,725,-1,0,930,-15,0,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1129,19,1,1447,3,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1738,-5,0,1904,-16,0,0 +2013,5,3,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,715,-1,0,750,4,0,0 +2013,6,9,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,705,43,1,745,36,1,0 +2013,7,20,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,38,1,1855,35,1,0 +2013,4,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-10,0,1315,-15,0,0 +2013,7,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1002,22,1,1347,33,1,0 +2013,9,26,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-1,0,815,5,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2035,16,1,2330,22,1,0 +2013,6,26,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,12,0,2012,-5,0,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1405,4,0,2005,-4,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1105,-4,0,1435,-1,0,0 +2013,8,6,2,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,2147,-2,0,610,-30,0,0 +2013,4,28,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,8,0,1405,5,0,0 +2013,4,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,700,3,0,1005,18,1,0 +2013,5,5,7,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1245,-6,0,1605,-11,0,0 +2013,6,5,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,7,0,1856,6,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,730,-3,0,1155,-14,0,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,830,6,0,1018,12,0,0 +2013,7,17,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,0,0,509,6,0,0 +2013,7,7,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,750,-34,0,0 +2013,6,21,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2045,-2,0,2135,-7,0,0 +2013,9,1,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1810,-1,0,1920,51,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,36,1,2300,29,1,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1850,189,1,2000,215,1,0 +2013,4,23,2,DL,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,-4,0,2134,-36,0,0 +2013,4,21,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-7,0,1133,4,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,4,0,2246,-5,0,0 +2013,5,22,3,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1200,-1,0,1313,-18,0,0 +2013,10,19,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1349,-6,0,1628,-9,0,0 +2013,9,11,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1658,2,0,2204,0,0,0 +2013,8,15,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1110,2,0,1220,-2,0,0 +2013,8,26,1,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,-7,0,2216,-38,0,0 +2013,4,16,2,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1755,0,0,2045,-8,0,0 +2013,7,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,545,-3,0,645,-7,0,0 +2013,5,15,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,3,0,917,4,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,27,1,1155,12,0,0 +2013,9,2,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1323,-11,0,1442,-18,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-5,0,1117,5,0,0 +2013,4,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,-7,0,1320,-6,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1410,24,1,2145,0,0,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,-7,0,1640,-14,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1128,11,0,1303,19,1,0 +2013,6,27,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,2025,-10,0,2129,-10,0,0 +2013,7,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,38,1,1835,23,1,0 +2013,6,29,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1715,-4,0,1840,-13,0,0 +2013,4,2,2,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,3,0,1737,3,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,812,-2,0,1019,-19,0,0 +2013,5,28,2,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1111,-4,0,1408,-5,0,0 +2013,10,19,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1215,-8,0,1353,-4,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1459,3,0,1725,-16,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2155,-2,0,2338,-14,0,0 +2013,6,28,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2100,-1,0,510,6,0,0 +2013,10,13,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,15,1,2045,20,1,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2145,41,1,2255,35,1,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,1,0,1917,-5,0,0 +2013,7,19,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1650,0,0,1755,-6,0,0 +2013,5,28,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-3,0,2035,-4,0,0 +2013,6,3,1,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1000,0,0,1145,1,0,0 +2013,5,19,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1750,0,0,2110,22,1,0 +2013,7,29,1,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1241,-9,0,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1940,29,1,2205,14,0,0 +2013,9,29,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,815,-19,0,0 +2013,8,30,5,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1420,0,0,2015,31,1,0 +2013,10,26,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1650,-3,0,1713,-11,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1345,-1,0,1536,-1,0,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1710,-2,0,2000,-11,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,-4,0,1158,-15,0,0 +2013,9,7,6,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1910,1,0,2214,-34,0,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1500,19,1,1610,17,1,0 +2013,5,5,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1712,-1,0,1928,0,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1253,-2,0,1425,-18,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2056,-7,0,2222,-21,0,0 +2013,9,9,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1420,-5,0,1530,-12,0,0 +2013,5,5,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-7,0,1821,-28,0,0 +2013,10,9,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1945,6,0,2100,-1,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1630,18,1,1900,3,0,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,630,2,0,750,-6,0,0 +2013,8,19,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,4,0,1700,0,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1820,-1,0,1915,-6,0,0 +2013,5,9,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-1,0,859,-10,0,0 +2013,10,30,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,902,-7,0,0 +2013,4,18,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,22,1,2005,21,1,0 +2013,8,22,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1830,10,0,2025,6,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1210,37,1,1410,27,1,0 +2013,6,1,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2040,-10,0,2329,-19,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1200,2,0,1355,-19,0,0 +2013,6,25,2,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-9,0,925,-14,0,0 +2013,10,18,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-6,0,1010,-19,0,0 +2013,9,29,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-6,0,1055,1,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,-7,0,1712,-23,0,0 +2013,6,16,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,17,1,2015,35,1,0 +2013,7,30,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,-13,0,2115,-24,0,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,1,0,935,0,0,0 +2013,8,27,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1124,-5,0,1418,-10,0,0 +2013,9,5,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,-8,0,1330,-3,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1550,20,1,1710,14,0,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1800,-3,0,1920,-16,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1215,0,0,1545,-7,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1425,-2,0,1447,-8,0,0 +2013,7,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,830,-2,0,1000,-11,0,0 +2013,6,15,6,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1357,-5,0,1630,15,1,0 +2013,6,24,1,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1735,76,1,2030,97,1,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1328,39,1,1931,39,1,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1655,192,1,1756,168,1,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-4,0,1618,-14,0,0 +2013,4,2,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,0,0,816,-25,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,3,0,2325,-31,0,0 +2013,10,15,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,920,-7,0,0 +2013,10,8,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,2,0,841,2,0,0 +2013,9,2,1,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1105,-4,0,1145,-15,0,0 +2013,8,30,5,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1420,-7,0,1551,-10,0,0 +2013,9,11,3,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1825,9,0,1930,14,0,0 +2013,5,15,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-9,0,750,-19,0,0 +2013,5,13,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-4,0,1624,-19,0,0 +2013,9,19,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1840,-7,0,1957,-3,0,0 +2013,4,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1954,0,0,2209,-1,0,0 +2013,4,22,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,62,1,1445,67,1,0 +2013,9,29,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1735,0,0,1929,8,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2020,32,1,2130,29,1,0 +2013,9,27,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,905,68,1,1025,54,1,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,4,0,1235,8,0,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-2,0,2355,-5,0,0 +2013,6,5,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-4,0,2110,-7,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1145,2,0,1330,-18,0,0 +2013,8,10,6,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,7,0,1820,1,0,0 +2013,4,30,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1903,-3,0,1925,-10,0,0 +2013,6,24,1,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,5,0,1035,10,0,0 +2013,8,29,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,0,0,1415,-7,0,0 +2013,5,18,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,3,0,1730,-5,0,0 +2013,6,15,6,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1113,19,1,1433,9,0,0 +2013,5,11,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1915,-16,0,2107,-8,0,0 +2013,10,18,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1008,-1,0,1123,-1,0,0 +2013,9,24,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-8,0,1525,-7,0,0 +2013,8,15,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-6,0,1005,3,0,0 +2013,6,30,7,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,0,0,820,-15,0,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1455,-3,0,1620,-12,0,0 +2013,4,28,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1725,26,1,1855,13,0,0 +2013,5,21,2,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,948,-5,0,1230,-12,0,0 +2013,7,13,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,0,0,1400,6,0,0 +2013,6,8,6,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1957,-5,0,2107,-5,0,0 +2013,10,7,1,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2028,-6,0,2145,-17,0,0 +2013,6,18,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1022,8,0,1408,17,1,0 +2013,8,16,5,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1901,-10,0,2021,-18,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-5,0,918,-12,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,820,5,0,1130,2,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,94,1,1631,76,1,0 +2013,4,24,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,7,0,1135,6,0,0 +2013,5,13,1,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,-1,0,750,-12,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,850,4,0,1615,-10,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1459,35,1,1651,42,1,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,849,-4,0,1017,-17,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,-2,0,2217,-2,0,0 +2013,8,8,4,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,50,1,1821,119,1,0 +2013,5,17,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2315,2,0,653,-12,0,0 +2013,8,15,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,45,1,2045,32,1,0 +2013,5,5,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1843,-5,0,2138,-8,0,0 +2013,7,22,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,0,0,1515,-6,0,0 +2013,7,27,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-2,0,1516,-1,0,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1125,12,0,1555,-6,0,0 +2013,7,22,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,900,-1,0,950,-18,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-3,0,1103,-10,0,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-7,0,1531,-34,0,0 +2013,7,26,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,-2,0,2110,20,1,0 +2013,6,13,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-5,0,1225,-12,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,94,1,1740,123,1,0 +2013,7,1,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1830,31,1,1856,46,1,0 +2013,8,24,6,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1455,8,0,1645,-4,0,0 +2013,7,27,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,829,7,0,1004,-8,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-1,0,1250,-13,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,9,0,2210,2,0,0 +2013,7,5,5,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,24,1,1803,12,0,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,800,-7,0,1021,12,0,0 +2013,7,17,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,5,0,1645,-7,0,0 +2013,6,16,7,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1550,11,0,1745,20,1,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1700,45,1,1840,39,1,0 +2013,8,16,5,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1150,-4,0,1505,-21,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,850,1,0,1040,-11,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,-1,0,1507,-17,0,0 +2013,8,26,1,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,640,-5,0,936,-16,0,0 +2013,6,26,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1111,-6,0,1639,1,0,0 +2013,7,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1244,-2,0,1440,-1,0,0 +2013,9,8,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1741,-10,0,0 +2013,6,16,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-2,0,1900,-3,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,9,0,1826,7,0,0 +2013,7,29,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1710,-5,0,1910,-14,0,0 +2013,4,21,7,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1131,-5,0,1403,-26,0,0 +2013,7,10,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-11,0,1258,-14,0,0 +2013,8,19,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1320,-2,0,1615,-16,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1315,-3,0,1508,2,0,0 +2013,7,26,5,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,7,0,1845,-3,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1335,35,1,1550,37,1,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1141,-1,0,1416,4,0,0 +2013,10,26,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,701,-5,0,1013,-29,0,0 +2013,6,20,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,718,3,0,939,-16,0,0 +2013,5,23,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-1,0,629,7,0,0 +2013,10,9,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1720,-1,0,2000,-17,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1500,0,0,1630,-3,0,0 +2013,10,25,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-4,0,1605,-14,0,0 +2013,9,26,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1522,0,0,1652,-1,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,-2,0,1525,0,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1100,-31,0,0 +2013,6,13,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1050,80,1,1235,65,1,0 +2013,5,1,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2157,-1,0,2226,-5,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,713,-7,0,1109,-15,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1023,-2,0,1640,-27,0,0 +2013,4,6,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1400,5,0,1600,5,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1740,-4,0,1900,-6,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1955,-3,0,2128,2,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,605,1,0,729,-10,0,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1733,4,0,1947,-23,0,0 +2013,5,8,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,-3,0,2305,-2,0,0 +2013,5,18,6,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1240,-2,0,1345,-14,0,0 +2013,4,27,6,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,633,112,1,1401,117,1,0 +2013,7,2,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,815,0,0,935,-8,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1215,-3,0,1320,-13,0,0 +2013,5,3,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1310,7,0,1420,4,0,0 +2013,9,8,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1905,-3,0,1915,-5,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-4,0,850,-8,0,0 +2013,6,24,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,758,-8,0,834,-8,0,0 +2013,5,25,6,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,650,-3,0,810,-1,0,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2105,-4,0,22,-5,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-7,0,1030,-9,0,0 +2013,10,15,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-3,0,841,-15,0,0 +2013,5,31,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1616,3,0,1915,-15,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,0,0,1004,-11,0,0 +2013,5,7,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1810,5,0,1945,-8,0,0 +2013,4,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,1238,-28,0,0 +2013,9,27,5,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,646,-9,0,943,-10,0,0 +2013,6,14,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-1,0,920,-15,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1800,-2,0,1932,-7,0,0 +2013,6,3,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-6,0,2110,5,0,0 +2013,10,31,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,700,-4,0,1037,6,0,0 +2013,10,19,6,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,907,-4,0,1037,-19,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1430,12,0,1605,0,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,-1,0,2120,41,1,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1940,19,1,2110,22,1,0 +2013,7,13,6,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1725,29,1,2027,2,0,0 +2013,8,2,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,-8,0,2310,-18,0,0 +2013,4,22,1,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,32,1,1935,17,1,0 +2013,8,14,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1305,22,1,1715,23,1,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,6,0,930,8,0,0 +2013,7,2,2,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1740,16,1,2022,23,1,0 +2013,8,21,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1300,5,0,1429,-5,0,0 +2013,7,11,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,47,1,1911,26,1,0 +2013,4,24,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,2,0,1035,24,1,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,910,-2,0,1010,-10,0,0 +2013,9,4,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,0,0,1705,-30,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-3,0,1632,-3,0,0 +2013,8,13,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1800,-2,0,1820,-8,0,0 +2013,7,26,5,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1800,14,0,2030,6,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1245,-7,0,1352,-15,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1351,-2,0,1649,-7,0,0 +2013,8,3,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-2,0,1756,-20,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,600,-7,0,750,-23,0,0 +2013,7,22,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2030,24,1,2155,17,1,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1959,-1,0,2112,-17,0,0 +2013,5,1,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,720,-2,0,825,-12,0,0 +2013,10,10,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1747,-2,0,1841,1,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1500,14,0,1940,2,0,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,-3,0,2348,-9,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,740,-2,0,941,-16,0,0 +2013,5,20,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,97,1,1150,108,1,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-3,0,951,19,1,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,25,1,2337,7,0,0 +2013,10,13,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,936,11,0,1036,7,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,0,0,1520,-16,0,0 +2013,5,10,5,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2105,-5,0,2240,-9,0,0 +2013,7,8,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,-2,0,509,-13,0,0 +2013,6,20,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,3,0,930,5,0,0 +2013,4,21,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1936,10,0,2042,-1,0,0 +2013,6,24,1,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-4,0,1314,-9,0,0 +2013,7,18,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,38,1,1905,20,1,0 +2013,6,16,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1000,-3,0,1310,-9,0,0 +2013,7,21,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1710,57,1,1830,54,1,0 +2013,5,1,3,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1428,-8,0,1551,-7,0,0 +2013,6,1,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1420,2,0,1645,-6,0,0 +2013,9,8,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,935,-5,0,1037,-1,0,0 +2013,6,18,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-4,0,1653,-14,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1450,-3,0,1710,-7,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1008,-11,0,1236,-25,0,0 +2013,7,19,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,705,2,0,1535,9,0,0 +2013,4,8,1,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1607,-3,0,1743,-13,0,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1700,5,0,1950,21,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2149,-9,0,2340,-29,0,0 +2013,10,7,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1758,35,1,1845,25,1,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1215,0,0,1355,4,0,0 +2013,6,26,3,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,-1,0,1431,29,1,0 +2013,7,26,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,710,-4,0,855,-1,0,0 +2013,7,27,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,605,-7,0,1000,-33,0,0 +2013,10,19,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,719,-6,0,1040,-13,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2100,16,1,2243,5,0,0 +2013,7,16,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-5,0,1023,-14,0,0 +2013,5,17,5,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1345,-4,0,1610,-42,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-8,0,1307,-14,0,0 +2013,6,17,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1210,-9,0,1450,8,0,0 +2013,6,26,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2042,-2,0,454,5,0,0 +2013,7,11,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1345,8,0,1515,-2,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2150,97,1,40,116,1,0 +2013,8,20,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2321,-7,0,510,-22,0,0 +2013,8,28,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1118,10,0,1342,22,1,0 +2013,5,6,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,715,0,0,1218,-8,0,0 +2013,5,15,3,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1608,-8,0,1815,-33,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2150,3,0,630,-2,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1948,25,1,2047,28,1,0 +2013,5,7,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,4,0,1545,8,0,0 +2013,4,24,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,0,0,1410,11,0,0 +2013,4,14,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-6,0,1344,-12,0,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,22,1,1040,24,1,0 +2013,5,3,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,845,-1,0,1050,-14,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1335,2,0,1520,0,0,0 +2013,9,17,2,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,940,0,,1135,0,1,1 +2013,8,16,5,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1200,14,0,1630,9,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1420,30,1,1645,6,0,0 +2013,6,30,7,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,32,1,1515,39,1,0 +2013,5,20,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,600,2,0,700,-12,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,0,0,2033,-4,0,0 +2013,5,5,7,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-5,0,1035,-14,0,0 +2013,5,7,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,705,5,0,830,2,0,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1155,-2,0,1555,-14,0,0 +2013,4,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,130,1,2100,132,1,0 +2013,9,3,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,924,-9,0,1210,2,0,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1453,-3,0,1628,14,0,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,11,0,737,3,0,0 +2013,5,2,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1800,-6,0,1832,5,0,0 +2013,8,8,4,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-4,0,1029,-3,0,0 +2013,4,27,6,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1203,-5,0,1314,-10,0,0 +2013,5,6,1,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-10,0,914,-14,0,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1236,-2,0,1807,-15,0,0 +2013,4,19,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1322,-1,0,1537,14,0,0 +2013,5,16,4,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1755,17,1,1915,19,1,0 +2013,8,12,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1241,30,1,1821,17,1,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,-1,0,850,-4,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1150,2,0,1505,-4,0,0 +2013,5,8,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1620,-6,0,1801,4,0,0 +2013,6,17,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,2025,-1,0,2345,-8,0,0 +2013,7,1,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1326,117,1,2130,129,1,0 +2013,9,10,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1740,-12,0,1919,-18,0,0 +2013,8,6,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,824,-2,0,1017,-5,0,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,0,0,1351,-24,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,10,0,2155,-2,0,0 +2013,4,30,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2330,-2,0,730,9,0,0 +2013,6,5,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,88,1,2100,96,1,0 +2013,5,15,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1500,12,0,1741,9,0,0 +2013,4,18,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1757,-4,0,1915,-17,0,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,83,1,1410,67,1,0 +2013,5,1,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,0,0,2227,9,0,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-9,0,819,-13,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,1,0,951,-3,0,0 +2013,5,9,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,13,0,1626,21,1,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1903,15,1,2238,17,1,0 +2013,6,30,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1120,19,1,1231,12,0,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1511,-6,0,1600,-6,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,4,0,1845,-8,0,0 +2013,9,11,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,-4,0,930,-12,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,2000,136,1,2320,141,1,0 +2013,5,13,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-2,0,1904,-44,0,0 +2013,6,30,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1010,-10,0,1304,-2,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,635,-2,0,1230,13,0,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,755,-3,0,1010,11,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,14,0,1720,10,0,0 +2013,7,9,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-8,0,1322,-16,0,0 +2013,4,11,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,-5,0,1159,17,1,0 +2013,4,22,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,2,0,1623,-13,0,0 +2013,4,24,3,YV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,2057,0,0,2359,-4,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,815,0,0,1119,-11,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1650,-3,0,1750,-14,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,851,135,1,1659,121,1,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,932,-7,0,1307,-12,0,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,3,0,2056,-4,0,0 +2013,7,11,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,800,6,0,940,19,1,0 +2013,7,14,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1646,-6,0,1834,7,0,0 +2013,10,25,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,800,-6,0,1020,-4,0,0 +2013,9,19,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1919,70,1,2159,63,1,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-2,0,1000,-3,0,0 +2013,7,7,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1611,-13,0,1940,77,1,0 +2013,8,18,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,905,-5,0,1225,-17,0,0 +2013,5,2,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,4,0,1535,4,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1810,-2,0,1941,2,0,0 +2013,9,17,2,WN,11278,Ronald Reagan Washington National,Washington,DC,12191,William P Hobby,Houston,TX,1600,-3,0,1820,-25,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,-4,0,1915,-18,0,0 +2013,4,16,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1122,14,0,1427,30,1,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1205,25,1,1325,19,1,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1131,5,0,1257,16,1,0 +2013,10,28,1,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,655,3,0,905,-15,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-7,0,1235,16,1,0 +2013,6,3,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-3,0,1747,-20,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,-4,0,1755,-20,0,0 +2013,4,27,6,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,955,-1,0,1120,-10,0,0 +2013,5,12,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,32,1,2234,15,1,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1435,1,0,1625,-7,0,0 +2013,7,2,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,9,0,2200,-5,0,0 +2013,4,4,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1100,-6,0,1340,5,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-3,0,930,-7,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1621,12,0,1758,11,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2155,-1,0,2347,-11,0,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,-3,0,1855,-14,0,0 +2013,9,28,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,-6,0,908,-5,0,0 +2013,4,21,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2125,36,1,2250,31,1,0 +2013,8,20,2,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,2,0,1010,-15,0,0 +2013,9,2,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1535,-8,0,1737,4,0,0 +2013,8,6,2,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,610,0,0,717,-4,0,0 +2013,9,24,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,840,15,1,1107,17,1,0 +2013,4,16,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,1,0,1829,1,0,0 +2013,9,28,6,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1334,-6,0,1451,-22,0,0 +2013,8,27,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-12,0,1258,-21,0,0 +2013,5,19,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,23,1,1835,74,1,0 +2013,8,9,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1249,16,1,1541,6,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,166,1,2141,165,1,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,17,1,1115,32,1,0 +2013,9,1,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,925,12,0,1136,-7,0,0 +2013,5,27,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2155,-2,0,2305,-9,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,731,-6,0,1056,14,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,733,-4,0,914,-14,0,0 +2013,6,18,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1110,-2,0,1205,-2,0,0 +2013,8,1,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1116,5,0,1439,-2,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,11,0,1539,-12,0,0 +2013,9,26,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,-2,0,1355,7,0,0 +2013,7,28,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,6,0,720,4,0,0 +2013,4,26,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,1,0,1135,7,0,0 +2013,10,31,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,7,0,834,52,1,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1514,7,0,1733,4,0,0 +2013,4,15,1,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1025,15,1,1304,-6,0,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,725,0,0,900,-17,0,0 +2013,6,20,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,105,1,920,111,1,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-4,0,1240,7,0,0 +2013,5,5,7,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1135,11,0,1725,9,0,0 +2013,10,5,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,725,-6,0,1023,-17,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1012,-3,0,1352,-16,0,0 +2013,9,30,1,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,915,-6,0,1155,-9,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-1,0,1505,-2,0,0 +2013,5,26,7,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1456,-4,0,1633,-10,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2150,-3,0,2320,-15,0,0 +2013,4,17,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1917,184,1,2048,194,1,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,755,17,1,1635,-6,0,0 +2013,4,26,5,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,45,20,1,622,1,0,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,855,-2,0,1015,-3,0,0 +2013,4,23,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,14,0,1615,-2,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,-2,0,1526,-2,0,0 +2013,4,8,1,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,-2,0,1418,0,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-2,0,1235,-12,0,0 +2013,4,4,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,929,-6,0,1031,-3,0,0 +2013,8,6,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,839,4,0,1045,-14,0,0 +2013,7,17,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1353,40,1,1400,29,1,0 +2013,9,22,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-6,0,1707,0,0,0 +2013,10,3,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,-7,0,2019,-12,0,0 +2013,4,3,3,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1710,36,1,2001,20,1,0 +2013,9,6,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-6,0,830,39,1,0 +2013,7,23,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-4,0,1125,2,0,0 +2013,6,27,4,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1555,8,0,1904,-4,0,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,-2,0,825,-3,0,0 +2013,4,14,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1500,27,1,1812,24,1,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,17,1,1415,16,1,0 +2013,7,13,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,605,-6,0,730,-9,0,0 +2013,9,17,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,940,2,0,1100,4,0,0 +2013,9,4,3,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1730,10,0,2015,16,1,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,12,0,2155,12,0,0 +2013,6,20,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1616,3,0,1906,1,0,0 +2013,4,25,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1415,74,1,1955,71,1,0 +2013,10,24,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,730,4,0,1015,0,0,0 +2013,8,7,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,600,-5,0,920,-20,0,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2245,119,1,135,127,1,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,-5,0,1030,2,0,0 +2013,8,22,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,2,0,1323,3,0,0 +2013,4,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1747,4,0,1848,7,0,0 +2013,10,22,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,822,0,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1625,61,1,2050,41,1,0 +2013,5,12,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,17,1,1524,5,0,0 +2013,6,3,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,191,1,2050,185,1,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1030,8,0,1345,31,1,0 +2013,5,2,4,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1815,-4,0,2055,15,1,0 +2013,7,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,5,0,1525,5,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1500,-2,0,2257,21,1,0 +2013,10,1,2,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2015,-2,0,1155,-8,0,0 +2013,5,8,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-1,0,2133,5,0,0 +2013,8,9,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1320,2,0,1850,-30,0,0 +2013,7,20,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-1,0,1900,-11,0,0 +2013,6,5,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-5,0,1102,-5,0,0 +2013,6,14,5,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1922,48,1,2340,26,1,0 +2013,7,30,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,942,-12,0,0 +2013,6,5,3,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1620,11,0,1829,8,0,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1435,88,1,1621,102,1,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,-4,0,2320,0,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-4,0,1759,-9,0,0 +2013,5,29,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1250,-1,0,1405,-10,0,0 +2013,8,17,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,930,0,0,1300,-9,0,0 +2013,6,10,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-7,0,2215,-20,0,0 +2013,5,17,5,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,0,0,1815,2,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1520,-1,0,1956,7,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,2150,27,1,2335,21,1,0 +2013,8,9,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2205,-1,0,10,1,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,815,1,0,920,-2,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,8,0,2235,0,0,0 +2013,6,7,5,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,615,-5,0,752,-16,0,0 +2013,4,1,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1440,16,1,1635,15,1,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1230,31,1,1705,40,1,0 +2013,4,11,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-5,0,2211,31,1,0 +2013,10,30,3,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-4,0,1053,3,0,0 +2013,5,8,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1855,20,1,2029,36,1,0 +2013,9,24,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,705,-3,0,930,-8,0,0 +2013,5,14,2,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1631,-2,0,1823,4,0,0 +2013,4,6,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1419,-5,0,1523,-10,0,0 +2013,10,28,1,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2146,0,0,559,-6,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,605,45,1,1025,44,1,0 +2013,6,12,3,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1745,0,0,2030,3,0,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,845,-5,0,1602,-3,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1130,1,0,1700,0,0,0 +2013,8,8,4,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1314,-3,0,2129,-6,0,0 +2013,5,2,4,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1550,4,0,1700,0,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,710,-2,0,950,-12,0,0 +2013,4,13,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1253,-11,0,0 +2013,9,6,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,0,0,1420,-1,0,0 +2013,7,12,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,921,-2,0,1201,-3,0,0 +2013,7,25,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,-4,0,1131,1,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-5,0,910,-5,0,0 +2013,4,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1859,12,0,2228,9,0,0 +2013,9,10,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,4,0,1910,2,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,12,0,1430,-1,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,10,0,2119,15,1,0 +2013,9,12,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,-5,0,2053,-20,0,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,9,0,1755,4,0,0 +2013,8,7,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,-11,0,750,-9,0,0 +2013,7,7,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,125,1,2030,213,1,0 +2013,10,28,1,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2025,19,1,2226,44,1,0 +2013,7,5,5,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,629,-5,0,755,-25,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1928,3,0,2206,-23,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,835,-4,0,1100,-37,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,59,1,1708,72,1,0 +2013,5,18,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,5,0,1750,-7,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,0,0,1021,-4,0,0 +2013,6,21,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,14,0,1155,19,1,0 +2013,5,18,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,1,0,1324,-8,0,0 +2013,8,25,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,741,119,1,905,125,1,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-2,0,2250,-5,0,0 +2013,8,13,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,59,1,2042,62,1,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1157,2,0,1438,-1,0,0 +2013,7,10,3,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,84,1,1916,82,1,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1605,26,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1755,4,0,1919,-3,0,0 +2013,10,9,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1546,1,0,0 +2013,6,30,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1805,34,1,1905,38,1,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,0,0,1305,-3,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1945,-2,0,2155,-4,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1129,42,1,1252,45,1,0 +2013,6,28,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1829,27,1,2125,45,1,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,-2,0,2325,-7,0,0 +2013,4,10,3,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-14,0,855,-14,0,0 +2013,7,2,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,635,-6,0,0 +2013,8,28,3,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-5,0,925,-20,0,0 +2013,8,12,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-5,0,2040,-7,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-2,0,1021,38,1,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-4,0,2335,-11,0,0 +2013,6,14,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1728,29,1,2020,23,1,0 +2013,7,31,3,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,17,1,1632,-4,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-3,0,1303,22,1,0 +2013,10,16,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1516,-2,0,1645,-11,0,0 +2013,6,13,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-4,0,732,-7,0,0 +2013,7,8,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1053,-2,0,1131,-3,0,0 +2013,8,14,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2250,1,0,2355,-10,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-7,0,828,-38,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1754,4,0,1930,-14,0,0 +2013,8,30,5,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,10,0,2057,-7,0,0 +2013,8,9,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,625,11,0,800,12,0,0 +2013,9,10,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1352,-4,0,1624,-14,0,0 +2013,6,25,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,0,,1839,0,1,1 +2013,5,26,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1355,-2,0,1502,-12,0,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,856,21,1,1153,15,1,0 +2013,7,26,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1919,63,1,2135,69,1,0 +2013,9,12,4,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1700,354,1,1955,329,1,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1535,-7,0,1800,-10,0,0 +2013,6,13,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1754,-1,0,1934,5,0,0 +2013,4,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1630,-6,0,1745,-12,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,831,-1,0,952,-15,0,0 +2013,10,15,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,855,2,0,955,-2,0,0 +2013,5,3,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,755,-3,0,1032,-21,0,0 +2013,9,5,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,800,-2,0,850,4,0,0 +2013,6,25,2,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1301,8,0,1411,1,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,930,3,0,1155,-9,0,0 +2013,4,15,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,10,0,1638,-1,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1820,-5,0,2340,-15,0,0 +2013,9,1,7,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1545,-3,0,1650,-14,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1730,4,0,2055,1,0,0 +2013,7,27,6,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,5,0,2247,9,0,0 +2013,9,24,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,8,0,1440,-8,0,0 +2013,10,2,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-7,0,1329,1,0,0 +2013,9,1,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-11,0,850,-32,0,0 +2013,5,29,3,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,-1,0,705,-7,0,0 +2013,8,15,4,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1015,-7,0,1227,-4,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,820,-1,0,1100,-15,0,0 +2013,5,7,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1035,4,0,1205,-4,0,0 +2013,10,31,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1129,-10,0,0 +2013,10,3,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-3,0,920,-14,0,0 +2013,10,11,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,839,-5,0,1100,-2,0,0 +2013,6,21,5,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,850,-9,0,1033,-4,0,0 +2013,10,31,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2120,12,0,2255,-3,0,0 +2013,10,8,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-5,0,705,-5,0,0 +2013,9,20,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,74,1,1852,69,1,0 +2013,10,17,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-4,0,1349,1,0,0 +2013,9,13,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1209,0,0,1349,-15,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,23,1,755,13,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,720,0,0,1153,-6,0,0 +2013,4,4,4,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,5,0,1610,1,0,0 +2013,9,10,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,-11,0,1809,-10,0,0 +2013,6,15,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1020,1,0,1145,-4,0,0 +2013,7,13,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,610,-3,0,925,15,1,0 +2013,4,14,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,745,-2,0,1049,-3,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1025,-1,0,1214,-17,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1830,12,0,1940,15,1,0 +2013,8,10,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-1,0,634,-18,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1900,19,1,2145,12,0,0 +2013,4,10,3,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,-3,0,946,-17,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1830,22,1,1945,12,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1845,-3,0,2010,-10,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1645,20,1,1900,16,1,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1705,15,1,1910,23,1,0 +2013,4,14,7,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1420,0,0,1700,0,0,0 +2013,10,17,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,13,0,1610,-1,0,0 +2013,7,9,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-1,0,1645,8,0,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,65,1,2135,43,1,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1235,-1,0,1830,-24,0,0 +2013,8,27,2,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1616,-8,0,1821,-19,0,0 +2013,8,4,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-1,0,835,-8,0,0 +2013,8,3,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,825,-2,0,1420,-31,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1116,-3,0,1441,-8,0,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,75,1,1251,93,1,0 +2013,4,9,2,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,815,0,0,1030,-19,0,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1632,18,1,1758,17,1,0 +2013,6,29,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,645,3,0,825,-11,0,0 +2013,10,12,6,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,735,-1,0,1000,-2,0,0 +2013,7,11,4,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,830,1,0,1110,-5,0,0 +2013,8,30,5,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,-3,0,1525,-7,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1425,-3,0,1447,-5,0,0 +2013,6,17,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-2,0,1559,-26,0,0 +2013,8,2,5,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,26,1,827,24,1,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,65,1,1930,74,1,0 +2013,5,29,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1120,-2,0,1254,4,0,0 +2013,5,19,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1858,-1,0,2036,-16,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,800,-2,0,1112,-21,0,0 +2013,9,23,1,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,5,0,2205,4,0,0 +2013,8,14,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1605,125,1,1720,128,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1055,10,0,1107,7,0,0 +2013,9,15,7,YV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1547,39,1,1714,28,1,0 +2013,5,5,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1423,-3,0,1640,20,1,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,5,0,910,15,1,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,40,1,2100,33,1,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,655,-8,0,1125,-32,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,120,1,1750,123,1,0 +2013,10,29,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2009,8,0,2129,-9,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1305,-6,0,1439,-11,0,0 +2013,6,6,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,67,1,1340,81,1,0 +2013,6,6,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2110,34,1,2327,18,1,0 +2013,6,18,2,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1348,22,1,1644,6,0,0 +2013,7,16,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1440,-7,0,2255,-4,0,0 +2013,7,3,3,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,943,10,0,1416,-8,0,0 +2013,5,5,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1230,-9,0,1651,-8,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,34,1,1315,42,1,0 +2013,4,22,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,615,-3,0,0 +2013,4,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1349,8,0,1535,8,0,0 +2013,4,26,5,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,630,-10,0,705,-11,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,845,14,0,1100,0,0,0 +2013,6,17,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1010,-7,0,1128,3,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1245,-2,0,1545,-4,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,39,1,2303,21,1,0 +2013,7,21,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1400,69,1,1555,41,1,0 +2013,4,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1054,-5,0,1325,-8,0,0 +2013,4,29,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,901,-21,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,-1,0,1621,-17,0,0 +2013,9,22,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1007,-4,0,1202,-14,0,0 +2013,10,16,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1850,-4,0,1925,-11,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,-2,0,2210,-5,0,0 +2013,9,11,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-5,0,1510,-22,0,0 +2013,8,16,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,835,56,1,1027,22,1,0 +2013,8,8,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,7,0,2014,20,1,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1117,2,0,1638,-3,0,0 +2013,9,12,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1900,11,0,1930,4,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2050,-2,0,2324,10,0,0 +2013,6,3,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1300,14,0,1538,-5,0,0 +2013,4,9,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,-7,0,1629,-22,0,0 +2013,7,8,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1850,-2,0,2039,-5,0,0 +2013,8,29,4,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,37,1,2057,7,0,0 +2013,10,18,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1930,-1,0,2018,-5,0,0 +2013,7,14,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,140,1,2108,148,1,0 +2013,4,14,7,EV,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,4,0,1335,-2,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1410,0,0,1432,-7,0,0 +2013,5,15,3,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,-4,0,1117,0,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,-6,0,1934,1,0,0 +2013,9,6,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,930,-9,0,0 +2013,5,5,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,855,0,0,1039,-20,0,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1823,2,0,2100,-25,0,0 +2013,4,30,2,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1545,-5,0,1952,-6,0,0 +2013,5,14,2,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1653,7,0,1814,11,0,0 +2013,9,28,6,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1534,-6,0,1750,8,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1757,-5,0,2013,0,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,605,1,0,850,-8,0,0 +2013,8,10,6,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,810,-7,0,950,-6,0,0 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1733,31,1,2016,10,0,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2257,-8,0,720,-2,0,0 +2013,7,20,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1010,-8,0,0 +2013,5,16,4,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-9,0,2047,-12,0,0 +2013,8,21,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1445,-2,0,1846,-9,0,0 +2013,10,28,1,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1655,0,,1920,0,1,1 +2013,5,17,5,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1415,-6,0,1546,-9,0,0 +2013,10,27,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,1015,-10,0,0 +2013,5,2,4,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1710,-10,0,2157,-23,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1005,37,1,1250,38,1,0 +2013,9,19,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,8,0,1625,-5,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,915,5,0,1445,-14,0,0 +2013,9,3,2,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,524,-2,0,757,2,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,7,0,1740,-6,0,0 +2013,10,12,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,728,18,1,910,11,0,0 +2013,4,7,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1830,0,0,1934,-6,0,0 +2013,7,16,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,7,0,1155,6,0,0 +2013,6,18,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1330,31,1,1612,61,1,0 +2013,8,14,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1734,-2,0,1905,-11,0,0 +2013,9,8,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-9,0,627,-17,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1547,-7,0,1630,-7,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1113,-1,0,1300,1,0,0 +2013,6,9,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1505,-5,0,1630,11,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1800,20,1,2101,33,1,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,-5,0,1015,-13,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1950,127,1,2045,123,1,0 +2013,10,29,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1835,-9,0,2125,-5,0,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2150,-3,0,2315,-15,0,0 +2013,7,13,6,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,730,0,0,1005,-21,0,0 +2013,10,9,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1800,0,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,641,-4,0,805,-15,0,0 +2013,7,15,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1025,-1,0,1235,-1,0,0 +2013,4,10,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1301,0,0,1420,-21,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2155,79,1,2305,68,1,0 +2013,7,16,2,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1410,2,0,2235,-1,0,0 +2013,10,12,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1110,-5,0,1630,-13,0,0 +2013,9,7,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,935,83,1,1210,88,1,0 +2013,10,31,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,8,0,1148,-9,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1055,39,1,1837,25,1,0 +2013,8,21,3,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2000,27,1,2258,28,1,0 +2013,7,1,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-8,0,849,-10,0,0 +2013,10,16,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1915,39,1,2235,28,1,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,2,0,1809,-12,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,-1,0,1719,20,1,0 +2013,5,21,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1725,0,0,1907,-11,0,0 +2013,10,6,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1127,-7,0,1338,-23,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1915,-5,0,2040,-10,0,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,-4,0,1030,1,0,0 +2013,6,23,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1756,37,1,1930,30,1,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,635,-3,0,755,3,0,0 +2013,5,21,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-3,0,1750,-17,0,0 +2013,6,20,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1320,43,1,1325,40,1,0 +2013,6,5,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1235,0,,1355,0,1,1 +2013,9,27,5,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,750,0,0,835,-20,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,-9,0,1143,32,1,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,-3,0,2241,-7,0,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1835,0,0,1945,-10,0,0 +2013,4,17,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1651,-4,0,1830,-13,0,0 +2013,6,9,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,0,0,1800,0,0,0 +2013,10,20,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1541,-5,0,1730,-19,0,0 +2013,5,18,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1440,-4,0,1617,-26,0,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,11,0,1215,9,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,19,1,2015,12,0,0 +2013,8,3,6,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,635,-2,0,815,-9,0,0 +2013,9,4,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1720,25,1,1845,15,1,0 +2013,6,15,6,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-7,0,2245,-1,0,0 +2013,9,23,1,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,115,1,1505,114,1,0 +2013,7,2,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,102,1,1825,164,1,0 +2013,6,11,2,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1107,43,1,1256,37,1,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,622,-1,0,1045,21,1,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,14,0,2130,5,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1515,2,0,1622,-6,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1910,5,0,2125,0,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1405,15,1,1810,10,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,82,1,2155,49,1,0 +2013,9,15,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,76,1,1335,95,1,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,927,-3,0,1305,0,0,0 +2013,10,9,3,9E,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1600,15,1,1740,10,0,0 +2013,5,2,4,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1523,0,,1646,0,1,1 +2013,7,24,3,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1733,86,1,1814,82,1,0 +2013,4,14,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,4,0,1623,8,0,0 +2013,7,8,1,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,704,-1,0,830,-9,0,0 +2013,6,21,5,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1658,34,1,1835,41,1,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,821,-1,0,925,-13,0,0 +2013,7,31,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1901,-1,0,2003,-13,0,0 +2013,5,13,1,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1700,17,1,1819,12,0,0 +2013,5,23,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,18,1,1000,24,1,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1500,5,0,1720,73,1,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2105,43,1,2354,33,1,0 +2013,8,26,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,13,0,1620,12,0,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,2002,-9,0,2351,-14,0,0 +2013,7,14,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-4,0,1530,-11,0,0 +2013,9,26,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-8,0,1630,1,0,0 +2013,6,29,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,35,1,1755,37,1,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1230,28,1,1340,30,1,0 +2013,5,31,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1900,12,0,2010,67,1,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,0,0,1432,-4,0,0 +2013,8,2,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-6,0,1724,0,0,0 +2013,4,3,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1315,-3,0,1459,-30,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2040,119,1,2335,103,1,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1900,13,0,2025,14,0,0 +2013,6,26,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1651,4,0,1753,-18,0,0 +2013,10,26,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1620,-2,0,1745,1,0,0 +2013,7,28,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,650,0,0,800,-11,0,0 +2013,9,28,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,650,-3,0,830,10,0,0 +2013,5,6,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,30,1,1838,-5,0,0 +2013,7,22,1,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1110,-3,0,1359,2,0,0 +2013,8,4,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,49,1,745,49,1,0 +2013,9,19,4,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1350,143,1,1500,154,1,0 +2013,6,20,4,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2207,-4,0,2345,-13,0,0 +2013,5,30,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,915,-19,0,0 +2013,4,10,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,-9,0,1655,-7,0,0 +2013,6,11,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-4,0,1337,-3,0,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-3,0,720,8,0,0 +2013,7,17,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1420,-1,0,1530,-7,0,0 +2013,5,20,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-4,0,820,-21,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2300,-7,0,48,-21,0,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1820,26,1,2245,10,0,0 +2013,5,24,5,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,615,9,0,911,4,0,0 +2013,8,28,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,0,0,735,-1,0,0 +2013,5,6,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-10,0,1835,-20,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,0,0,2015,-2,0,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1250,-5,0,1535,-17,0,0 +2013,7,2,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1300,19,1,2104,20,1,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,1,0,1550,4,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,825,-2,0,1000,-12,0,0 +2013,9,18,3,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,635,-6,0,1005,-2,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,935,55,1,1305,48,1,0 +2013,9,1,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-3,0,2309,1,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,837,-26,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1909,-3,0,44,0,0,0 +2013,4,16,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,-3,0,1330,-9,0,0 +2013,5,31,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1229,-8,0,0 +2013,6,15,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,18,1,1413,-1,0,0 +2013,7,23,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-2,0,841,-5,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,1,0,2133,13,0,0 +2013,7,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-5,0,1706,5,0,0 +2013,5,22,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,-4,0,1859,11,0,0 +2013,9,16,1,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1415,-5,0,1635,-14,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2101,-3,0,2359,-4,0,0 +2013,8,4,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,69,1,1227,67,1,0 +2013,9,4,3,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1623,-3,0,0 +2013,4,30,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-3,0,1815,-1,0,0 +2013,6,29,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,2,0,1245,-4,0,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1915,26,1,2205,27,1,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,4,0,2055,8,0,0 +2013,6,21,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,911,63,1,1043,92,1,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1225,4,0,1755,30,1,0 +2013,10,28,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1000,-6,0,1319,-8,0,0 +2013,10,1,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1355,-4,0,2019,-12,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1215,0,0,1435,0,0,0 +2013,6,5,3,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1135,-2,0,1240,-4,0,0 +2013,9,19,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1956,-3,0,2203,-28,0,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1351,0,,1427,0,1,1 +2013,10,16,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,0,0,1140,-9,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,-3,0,2259,-13,0,0 +2013,5,12,7,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,950,-3,0,1050,3,0,0 +2013,6,10,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,10,0,2050,2,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1905,10,0,2125,-17,0,0 +2013,10,15,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-3,0,1050,-23,0,0 +2013,7,7,7,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,905,-6,0,1035,-14,0,0 +2013,9,26,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,20,1,2050,5,0,0 +2013,10,27,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-9,0,1008,-1,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1100,10,0,1200,9,0,0 +2013,4,4,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1130,11,0,1300,1,0,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2040,-2,0,2231,-24,0,0 +2013,4,29,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-5,0,1559,-21,0,0 +2013,9,12,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1305,-4,0,1500,-12,0,0 +2013,6,22,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1031,-10,0,1219,-30,0,0 +2013,8,8,4,OO,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,933,4,0,1244,17,1,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,840,0,0,1020,7,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,736,-3,0,856,-14,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,3,0,1255,-6,0,0 +2013,10,24,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2045,12,0,2205,10,0,0 +2013,7,22,1,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,16,1,1556,10,0,0 +2013,7,28,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,-8,0,2040,-21,0,0 +2013,9,15,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1240,0,0,1516,-16,0,0 +2013,4,18,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1514,43,1,2200,31,1,0 +2013,10,26,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1520,0,0,1633,-12,0,0 +2013,6,18,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,-3,0,919,10,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1932,-3,0,2058,-11,0,0 +2013,4,26,5,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1054,-1,0,1218,-15,0,0 +2013,9,15,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1720,50,1,1927,40,1,0 +2013,9,4,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1720,117,1,1930,102,1,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1803,2,0,2106,10,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2135,-1,0,516,-5,0,0 +2013,8,9,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,650,-4,0,705,-12,0,0 +2013,7,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1545,-5,0,1649,-6,0,0 +2013,7,19,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1400,16,1,1525,20,1,0 +2013,10,21,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1632,-17,0,0 +2013,5,28,2,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,707,-8,0,1003,-16,0,0 +2013,10,12,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,-3,0,1735,17,1,0 +2013,10,8,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,730,0,,820,0,1,1 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,-2,0,1522,-6,0,0 +2013,5,21,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-7,0,920,31,1,0 +2013,10,3,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1135,26,1,1300,17,1,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1433,-9,0,1545,-11,0,0 +2013,6,17,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,0,0,1823,7,0,0 +2013,7,22,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,5,0,2057,-13,0,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,23,1,1113,11,0,0 +2013,6,6,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,2,0,855,24,1,0 +2013,6,28,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,655,-3,0,0 +2013,7,19,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-8,0,1356,-9,0,0 +2013,6,30,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,705,-6,0,930,-13,0,0 +2013,7,8,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1747,102,1,2026,112,1,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2030,-1,0,2217,-14,0,0 +2013,7,25,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,815,-21,0,0 +2013,7,14,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,40,1,1445,40,1,0 +2013,7,26,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,755,-2,0,920,31,1,0 +2013,7,30,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-6,0,1210,-8,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1330,5,0,1845,15,1,0 +2013,7,24,3,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-2,0,1330,-25,0,0 +2013,7,26,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1235,0,0,1440,-5,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1615,18,1,1710,9,0,0 +2013,10,31,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,75,1,1055,111,1,0 +2013,4,27,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,94,1,1815,88,1,0 +2013,4,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1512,4,0,1729,32,1,0 +2013,8,14,3,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,814,20,1,1025,9,0,0 +2013,6,27,4,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-7,0,1601,-5,0,0 +2013,8,1,4,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,204,1,1520,198,1,0 +2013,5,12,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1359,3,0,2000,18,1,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,645,0,0,855,-3,0,0 +2013,7,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1628,7,0,1752,-8,0,0 +2013,8,1,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,37,1,2135,20,1,0 +2013,7,16,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,934,-4,0,1222,-26,0,0 +2013,10,10,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,1,0,1820,5,0,0 +2013,9,1,7,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,955,-3,0,1745,-17,0,0 +2013,7,2,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,952,-12,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1620,2,0,2000,-5,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,8,0,2320,0,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,630,34,1,755,29,1,0 +2013,7,9,2,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,26,1,1745,17,1,0 +2013,4,2,2,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-8,0,1625,-10,0,0 +2013,6,30,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,4,0,1535,-11,0,0 +2013,8,18,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1040,-9,0,1208,-13,0,0 +2013,6,20,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,-2,0,2045,-12,0,0 +2013,10,4,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,317,1,2139,311,1,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,8,0,1825,-3,0,0 +2013,5,6,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,832,-4,0,935,-22,0,0 +2013,10,1,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-3,0,940,-20,0,0 +2013,10,21,1,EV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1902,-4,0,2034,0,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,75,1,2219,43,1,0 +2013,4,23,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,17,1,2125,13,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,1,0,1008,1,0,0 +2013,6,3,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,77,1,801,68,1,0 +2013,7,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2130,87,1,2320,85,1,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,7,0,1900,7,0,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-7,0,1123,-38,0,0 +2013,4,24,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,759,-6,0,0 +2013,5,10,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,641,-4,0,805,-13,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2013,35,1,2220,11,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,808,67,1,939,70,1,0 +2013,8,23,5,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1745,3,0,2316,2,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1905,-3,0,2021,-17,0,0 +2013,4,1,1,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1545,-1,0,1830,12,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,638,-1,0,954,-1,0,0 +2013,9,19,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2135,-5,0,530,-5,0,0 +2013,6,7,5,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1135,2,0,1240,-1,0,0 +2013,7,16,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1710,-12,0,1840,-11,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-2,0,1330,3,0,0 +2013,10,9,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1628,2,0,1843,-13,0,0 +2013,5,8,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1001,-12,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1008,-6,0,1335,-12,0,0 +2013,8,9,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1205,-4,0,1459,-8,0,0 +2013,10,14,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-1,0,1749,-8,0,0 +2013,7,4,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1822,-2,0,2100,-9,0,0 +2013,7,25,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,0,0,1015,8,0,0 +2013,9,9,1,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,-7,0,740,-6,0,0 +2013,6,21,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,630,58,1,800,75,1,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1850,46,1,2003,45,1,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1135,-2,0,1235,-12,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,8,0,1605,6,0,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1755,15,1,2015,0,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1344,2,0,1500,-5,0,0 +2013,6,16,7,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1644,18,1,1753,3,0,0 +2013,10,14,1,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,740,-2,0,837,-13,0,0 +2013,6,29,6,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,920,7,0,1040,5,0,0 +2013,5,10,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1700,55,1,1735,74,1,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1725,77,1,2000,54,1,0 +2013,6,25,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,2,0,1405,1,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,72,1,2105,60,1,0 +2013,7,8,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-9,0,935,-30,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,704,-2,0,928,-16,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,0,0,1918,-9,0,0 +2013,10,10,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2030,44,1,2205,23,1,0 +2013,7,20,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-3,0,1305,-5,0,0 +2013,6,14,5,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-10,0,900,-15,0,0 +2013,5,1,3,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1848,15,1,2108,-2,0,0 +2013,7,26,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,-3,0,650,-9,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1935,2,0,54,-8,0,0 +2013,8,4,7,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,4,0,2135,-14,0,0 +2013,8,16,5,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,3,0,1212,-10,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-4,0,1103,-4,0,0 +2013,7,26,5,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-4,0,823,-13,0,0 +2013,10,25,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1325,-2,0,2159,-9,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2145,0,,40,0,1,1 +2013,7,6,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-5,0,1037,0,0,0 +2013,7,21,7,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,73,1,1238,49,1,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1040,10,0,1217,-1,0,0 +2013,9,8,7,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-9,0,1405,-15,0,0 +2013,4,29,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,-6,0,1905,3,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,-3,0,1737,-6,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,-4,0,2155,-8,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1606,37,1,1900,40,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,38,1,1645,31,1,0 +2013,10,15,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-5,0,955,-8,0,0 +2013,10,20,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,710,-3,0,852,-17,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1005,18,1,1055,8,0,0 +2013,9,21,6,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,935,-1,0,1104,-13,0,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,7,0,1900,9,0,0 +2013,7,10,3,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2150,104,1,2233,121,1,0 +2013,7,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,755,135,1,1125,116,1,0 +2013,4,11,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1705,-6,0,1755,-5,0,0 +2013,5,4,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1355,-9,0,1556,-33,0,0 +2013,9,18,3,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1135,0,0,1315,8,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-4,0,2115,-5,0,0 +2013,10,4,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1345,-5,0,1730,30,1,0 +2013,9,14,6,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1125,-1,0,1355,6,0,0 +2013,8,2,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-5,0,1019,1,0,0 +2013,7,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-2,0,822,-5,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1008,-4,0,1320,-14,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1550,2,0,1820,-5,0,0 +2013,5,20,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1605,-5,0,1656,-8,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,935,13,0,1035,8,0,0 +2013,4,21,7,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,8,0,1710,15,1,0 +2013,8,7,3,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1805,-5,0,2030,-6,0,0 +2013,7,26,5,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,810,-3,0,1140,-15,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-5,0,913,-26,0,0 +2013,8,11,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1323,-5,0,1526,-6,0,0 +2013,7,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1230,-3,0,1427,-25,0,0 +2013,7,30,2,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1450,0,0,1759,-4,0,0 +2013,10,23,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,34,1,815,62,1,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,11,0,1440,0,0,0 +2013,6,17,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1855,12,0,2116,20,1,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1920,14,0,2035,-4,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1505,-4,0,1724,-11,0,0 +2013,10,8,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,833,-15,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1130,93,1,1346,86,1,0 +2013,5,4,6,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-6,0,1255,-30,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-3,0,1606,-10,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,2359,2,0,539,-16,0,0 +2013,6,3,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,35,1,2009,36,1,0 +2013,7,24,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,12,0,1733,91,1,0 +2013,6,25,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1655,0,0,1705,-10,0,0 +2013,5,17,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1856,4,0,2150,19,1,0 +2013,4,18,4,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1513,20,1,1625,11,0,0 +2013,7,10,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,835,-7,0,853,-7,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-3,0,929,3,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,-2,0,1930,-9,0,0 +2013,7,8,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2215,5,0,620,-1,0,0 +2013,10,27,7,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,-1,0,2305,1,0,0 +2013,8,30,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-8,0,1006,-28,0,0 +2013,9,23,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1345,-5,0,1455,-20,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1415,-2,0,1636,-16,0,0 +2013,9,4,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,901,-13,0,0 +2013,9,28,6,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-1,0,914,-4,0,0 +2013,10,4,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1459,-6,0,1814,-30,0,0 +2013,5,19,7,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,540,-5,0,629,9,0,0 +2013,7,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,954,-6,0,1340,-13,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2200,44,1,2255,38,1,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,3,0,1235,18,1,0 +2013,5,28,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-7,0,1540,-5,0,0 +2013,8,25,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1749,1,0,1927,-5,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,52,1,1156,35,1,0 +2013,9,30,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1300,-5,0,1445,-11,0,0 +2013,8,11,7,OO,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1655,-7,0,1810,-27,0,0 +2013,9,3,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-4,0,1815,-19,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-4,0,1307,-18,0,0 +2013,10,17,4,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1154,-8,0,1340,-14,0,0 +2013,8,7,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,9,0,2245,2,0,0 +2013,8,12,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-3,0,1045,-13,0,0 +2013,10,28,1,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,0,0,1120,3,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1205,6,0,1325,7,0,0 +2013,8,21,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,19,1,2216,47,1,0 +2013,10,31,4,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-11,0,1633,-18,0,0 +2013,6,19,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-8,0,500,-6,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1025,-5,0,1115,-11,0,0 +2013,5,18,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1555,-7,0,1849,-7,0,0 +2013,5,23,4,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,11,0,1630,17,1,0 +2013,10,16,3,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2003,81,1,502,64,1,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1640,0,0,1830,-14,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1123,-7,0,1207,-24,0,0 +2013,9,29,7,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1103,-1,0,1248,-3,0,0 +2013,5,20,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,98,1,2050,98,1,0 +2013,9,28,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-7,0,806,-11,0,0 +2013,8,15,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1455,-3,0,1754,-17,0,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1605,-5,0,1747,-31,0,0 +2013,5,19,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1600,74,1,1632,81,1,0 +2013,9,9,1,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,4,0,1425,-14,0,0 +2013,9,27,5,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1721,8,0,1859,-1,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1630,20,1,1915,13,0,0 +2013,5,30,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-7,0,1243,-13,0,0 +2013,6,11,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,730,-3,0,820,1,0,0 +2013,8,4,7,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,619,-13,0,727,-26,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1927,5,0,2120,-20,0,0 +2013,6,1,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1445,12,0,1725,6,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,755,-2,0,1135,-2,0,0 +2013,7,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1224,-6,0,1339,-16,0,0 +2013,10,4,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-5,0,1705,-25,0,0 +2013,9,23,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2111,2,0,507,-17,0,0 +2013,10,1,2,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,-5,0,2104,-40,0,0 +2013,4,8,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-6,0,1335,-22,0,0 +2013,4,1,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,750,0,0,920,-11,0,0 +2013,4,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1117,-6,0,1207,-4,0,0 +2013,10,6,7,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,5,0,1400,7,0,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,102,1,1600,98,1,0 +2013,10,30,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,834,-8,0,923,-8,0,0 +2013,7,26,5,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,625,2,0,940,-8,0,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1420,16,1,1515,12,0,0 +2013,6,6,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1620,-6,0,1805,-20,0,0 +2013,5,16,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1225,2,0,1330,-20,0,0 +2013,7,7,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-3,0,2017,-11,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1420,12,0,1550,4,0,0 +2013,7,22,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,935,-9,0,0 +2013,10,11,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1625,4,0,1755,17,1,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1333,60,1,1507,57,1,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1400,56,1,1825,54,1,0 +2013,10,9,3,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1304,2,0,2131,-15,0,0 +2013,5,26,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-5,0,1732,-29,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,6,0,2230,0,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,2145,-5,0,2312,-18,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,115,1,2111,98,1,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,91,1,2309,81,1,0 +2013,5,27,1,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,-9,0,1105,-31,0,0 +2013,9,17,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-11,0,1545,0,0,0 +2013,9,16,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1750,76,1,2000,75,1,0 +2013,6,11,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-2,0,1211,-12,0,0 +2013,5,2,4,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,-7,0,2020,1,0,0 +2013,8,16,5,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,-3,0,2213,-7,0,0 +2013,8,1,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,954,-6,0,1340,-15,0,0 +2013,6,11,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,51,1,1800,45,1,0 +2013,9,17,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,3,0,2159,-9,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,25,1,1925,21,1,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,940,1,0,1050,12,0,0 +2013,9,16,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,901,16,1,0 +2013,9,16,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1034,0,0,1303,2,0,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1155,-5,0,1336,-25,0,0 +2013,9,2,1,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1435,-6,0,2243,12,0,0 +2013,9,12,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1450,11,0,1550,6,0,0 +2013,7,9,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-1,0,1305,-10,0,0 +2013,6,15,6,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1300,1,0,1450,-10,0,0 +2013,6,30,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,913,-6,0,1028,-2,0,0 +2013,7,4,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1759,0,0,2058,-21,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,-2,0,1003,-10,0,0 +2013,6,15,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1125,-5,0,1223,-9,0,0 +2013,8,28,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1601,202,1,1851,207,1,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1951,-1,0,2131,-3,0,0 +2013,10,24,4,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,9,0,1420,6,0,0 +2013,9,30,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,-7,0,1341,-22,0,0 +2013,7,4,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,138,1,2103,136,1,0 +2013,6,26,3,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2010,40,1,2055,25,1,0 +2013,9,4,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1131,-6,0,1340,-19,0,0 +2013,6,26,3,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,-5,0,1755,-13,0,0 +2013,7,3,3,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,9,0,1538,66,1,0 +2013,5,13,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1737,-5,0,1849,-10,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1325,9,0,1435,6,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,98,1,1550,127,1,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,-5,0,1528,-20,0,0 +2013,4,3,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,-4,0,1440,-15,0,0 +2013,9,13,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-6,0,857,-5,0,0 +2013,8,18,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1200,3,0,1422,-4,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,25,1,1555,46,1,0 +2013,8,21,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,9,0,1651,12,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1315,15,1,1430,14,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,-1,0,2132,-2,0,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1942,-9,0,2115,-21,0,0 +2013,8,2,5,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,925,-9,0,1210,9,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,905,-1,0,1022,15,1,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,-8,0,2055,-14,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2245,-4,0,640,-17,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1640,16,1,1825,14,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,820,2,0,940,7,0,0 +2013,8,12,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1630,37,1,1750,33,1,0 +2013,4,4,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1305,9,0,1556,-9,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2210,-4,0,102,-13,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,3,0,1742,46,1,0 +2013,7,23,2,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,830,8,0,1015,28,1,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-1,0,1535,0,0,0 +2013,5,4,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,17,1,2315,11,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1315,54,1,1430,69,1,0 +2013,6,18,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,27,1,1730,22,1,0 +2013,6,9,7,VX,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1910,0,0,2155,-25,0,0 +2013,4,8,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1633,-11,0,1845,-19,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1015,-1,0,1126,1,0,0 +2013,8,8,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1615,-3,0,1759,-18,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,3,0,2100,-4,0,0 +2013,7,24,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,-4,0,1121,-3,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,1,0,1410,-8,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-2,0,1914,-6,0,0 +2013,8,10,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-5,0,1012,0,0,0 +2013,5,17,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,-4,0,2054,-21,0,0 +2013,8,2,5,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,6,0,2029,10,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1943,14,0,2123,24,1,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,837,-5,0,1029,-7,0,0 +2013,8,27,2,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1144,-3,0,1403,-7,0,0 +2013,7,13,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-5,0,2011,-18,0,0 +2013,10,10,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1709,65,1,1830,59,1,0 +2013,7,8,1,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-10,0,2108,-11,0,0 +2013,10,6,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1545,-4,0,1705,-13,0,0 +2013,4,22,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1539,-3,0,1734,-2,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,941,-2,0,1120,-8,0,0 +2013,5,1,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1115,-12,0,1233,-11,0,0 +2013,8,21,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,644,-8,0,810,-21,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,2,0,1346,16,1,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,820,-6,0,1150,6,0,0 +2013,8,24,6,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,0,0,2036,7,0,0 +2013,8,12,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1625,25,1,1930,8,0,0 +2013,6,6,4,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1610,28,1,1807,4,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1925,15,1,2215,-16,0,0 +2013,6,20,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-5,0,900,-11,0,0 +2013,8,16,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,9,0,1652,6,0,0 +2013,4,14,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1243,0,0,1419,-4,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1912,-5,0,2025,-18,0,0 +2013,5,1,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-7,0,201,14,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1600,10,0,1715,1,0,0 +2013,9,9,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1829,6,0,0 +2013,6,23,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,-1,0,544,-6,0,0 +2013,6,6,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,617,7,0,851,32,1,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1440,17,1,1555,18,1,0 +2013,4,11,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-9,0,905,-11,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1155,3,0,1415,-15,0,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1120,-1,0,1405,-20,0,0 +2013,7,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,2,0,1454,-12,0,0 +2013,10,3,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,917,-5,0,1130,3,0,0 +2013,8,15,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,733,-3,0,1102,5,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1945,26,1,1955,27,1,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1250,2,0,1400,-7,0,0 +2013,7,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,-2,0,1706,1,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,-4,0,2225,-26,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,830,-4,0,957,12,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,800,-8,0,910,-11,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,845,3,0,1045,17,1,0 +2013,4,2,2,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1015,-3,0,1133,-1,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1719,120,1,1912,99,1,0 +2013,5,27,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-6,0,810,-9,0,0 +2013,9,15,7,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1056,-3,0,1304,2,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1810,23,1,2215,14,0,0 +2013,4,16,2,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,89,1,40,62,1,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-5,0,1605,-6,0,0 +2013,10,29,2,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-9,0,1616,-16,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,3,0,1911,0,0,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1016,-3,0,1149,-7,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1905,106,1,2055,121,1,0 +2013,10,1,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,3,0,1325,0,0,0 +2013,5,14,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-9,0,1913,-15,0,0 +2013,8,12,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,-1,0,1844,3,0,0 +2013,7,13,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2000,-4,0,2105,-9,0,0 +2013,6,26,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,82,1,1945,78,1,0 +2013,6,17,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-7,0,1413,-3,0,0 +2013,8,14,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1900,13,0,2150,-6,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1300,-1,0,1530,1,0,0 +2013,5,16,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1020,-1,0,1205,6,0,0 +2013,10,19,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1605,0,0,1706,-16,0,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1715,71,1,1927,102,1,0 +2013,9,29,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1309,-7,0,1530,-2,0,0 +2013,6,16,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,-8,0,2110,-9,0,0 +2013,4,6,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,835,-2,0,1100,8,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2154,0,0,2327,3,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,0,0,1504,-6,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-4,0,1429,-26,0,0 +2013,10,24,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1450,-5,0,1835,-26,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,32,1,2128,28,1,0 +2013,9,10,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1908,64,1,2120,45,1,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1050,18,1,1215,-2,0,0 +2013,4,11,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1039,-19,0,1207,-35,0,0 +2013,10,13,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-5,0,2020,-6,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,-3,0,1720,-17,0,0 +2013,5,2,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,17,1,920,11,0,0 +2013,8,22,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,825,-5,0,1105,-18,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,2,0,1125,-5,0,0 +2013,6,6,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,0,0,1040,-7,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2200,13,0,613,9,0,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1517,0,0,1815,10,0,0 +2013,10,27,7,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,3,0,1020,-4,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1810,-6,0,2040,-24,0,0 +2013,7,10,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1234,-2,0,1439,-5,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1914,-2,0,2251,8,0,0 +2013,9,12,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,122,1,1657,175,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-2,0,841,-21,0,0 +2013,10,16,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,610,-3,0,936,-22,0,0 +2013,8,30,5,9E,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1110,-1,0,1257,-6,0,0 +2013,4,11,4,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1856,10,0,2057,-3,0,0 +2013,4,29,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,-18,0,2215,-23,0,0 +2013,8,26,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-3,0,2101,-6,0,0 +2013,4,19,5,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1735,38,1,2019,33,1,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,19,1,1150,16,1,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1015,1,0,1500,-7,0,0 +2013,8,23,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-5,0,945,-6,0,0 +2013,7,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1330,89,1,1709,98,1,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,-1,0,2347,-11,0,0 +2013,10,31,4,OO,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1200,-5,0,1515,-12,0,0 +2013,5,10,5,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,749,-3,0,900,-11,0,0 +2013,5,30,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1515,-3,0,1800,1,0,0 +2013,7,22,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1717,-4,0,1944,-9,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1240,2,0,1340,-12,0,0 +2013,4,18,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,18,1,1430,9,0,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,-2,0,2300,-5,0,0 +2013,4,13,6,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1225,-7,0,1444,14,0,0 +2013,4,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-6,0,1749,-25,0,0 +2013,9,6,5,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1005,-1,0,1305,-5,0,0 +2013,9,11,3,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,3,0,717,1,0,0 +2013,5,1,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1850,-8,0,2035,-46,0,0 +2013,10,20,7,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,905,-15,0,0 +2013,10,29,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,841,-3,0,1440,10,0,0 +2013,4,26,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,10,0,1240,10,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,810,-7,0,925,-22,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-6,0,1451,-20,0,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,1,0,830,4,0,0 +2013,7,26,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-4,0,1610,0,1,1 +2013,5,23,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1515,54,1,1800,62,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,945,-4,0,1111,-8,0,0 +2013,9,2,1,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,6,0,1600,2,0,0 +2013,4,9,2,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,2055,-4,0,2345,-18,0,0 +2013,9,29,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1747,-3,0,2329,-6,0,0 +2013,4,19,5,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1953,116,1,115,94,1,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-5,0,1000,2,0,0 +2013,10,17,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1345,-4,0,1640,-13,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,1,0,1720,-4,0,0 +2013,6,7,5,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2315,-2,0,630,-13,0,0 +2013,10,18,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-6,0,1652,16,1,0 +2013,7,3,3,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1505,25,1,1840,29,1,0 +2013,10,17,4,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,16,1,855,12,0,0 +2013,7,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1248,-2,0,1625,44,1,0 +2013,10,25,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,6,0,1045,8,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,20,1,1740,35,1,0 +2013,10,9,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,815,-10,0,0 +2013,10,30,3,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1520,21,1,1815,21,1,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,948,24,1,1316,15,1,0 +2013,8,17,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,616,-3,0,720,-10,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1434,43,1,1528,41,1,0 +2013,10,4,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,915,-5,0,1045,-14,0,0 +2013,7,9,2,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1655,-2,0,1935,12,0,0 +2013,6,3,1,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1745,126,1,2225,118,1,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,2000,-3,0,2350,-22,0,0 +2013,9,17,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1056,44,1,1215,89,1,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,0,0,1845,16,1,0 +2013,5,22,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,710,-6,0,1250,-6,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2142,-2,0,38,-12,0,0 +2013,6,25,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1135,-11,0,1230,-14,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1040,0,0,1315,-3,0,0 +2013,6,11,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1334,-8,0,1439,-5,0,0 +2013,10,14,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1410,7,0,1735,3,0,0 +2013,10,2,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,615,-4,0,1442,-11,0,0 +2013,8,11,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1125,-4,0,1221,6,0,0 +2013,10,11,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1655,-4,0,1952,-4,0,0 +2013,7,18,4,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1000,5,0,1145,-4,0,0 +2013,4,23,2,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1405,-3,0,1630,-13,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-6,0,942,-7,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1015,20,1,1330,28,1,0 +2013,4,28,7,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2153,-6,0,2255,-21,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,-1,0,24,4,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,650,19,1,935,19,1,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,-2,0,700,-5,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2015,-2,0,2209,-2,0,0 +2013,5,18,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1705,28,1,1845,18,1,0 +2013,5,23,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,950,-11,0,1235,-12,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,86,1,1355,103,1,0 +2013,10,13,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1622,15,1,1733,25,1,0 +2013,6,1,6,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-11,0,1249,-8,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,6,0,1620,5,0,0 +2013,10,14,1,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,-4,0,1735,-7,0,0 +2013,9,11,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,0,0,1520,9,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,109,1,2136,88,1,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1808,21,1,2036,5,0,0 +2013,8,15,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,0,0,1552,2,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,755,0,0,1127,4,0,0 +2013,9,16,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1940,-11,0,2059,-8,0,0 +2013,4,26,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1118,-5,0,0 +2013,6,2,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-1,0,1755,-1,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-3,0,1024,-8,0,0 +2013,10,20,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,-1,0,1000,-6,0,0 +2013,4,15,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2020,40,1,2200,16,1,0 +2013,5,9,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-1,0,1806,12,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2225,195,1,2359,191,1,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,19,1,2255,0,0,0 +2013,4,26,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,640,-9,0,753,-21,0,0 +2013,9,23,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-8,0,1315,-14,0,0 +2013,5,8,3,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1040,-5,0,1310,8,0,0 +2013,10,23,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,755,-7,0,1201,-25,0,0 +2013,5,20,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-7,0,1038,-17,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,-2,0,1655,-11,0,0 +2013,8,30,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1350,-3,0,1644,-10,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-2,0,2230,6,0,0 +2013,6,16,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,13,0,2052,13,0,0 +2013,8,5,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,700,0,0,820,-9,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1420,10,0,1530,-1,0,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1755,-1,0,1925,5,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,3,0,1043,0,0,0 +2013,5,13,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,655,-4,0,1515,24,1,0 +2013,5,30,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,925,-11,0,0 +2013,8,22,4,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1500,-2,0,2020,-3,0,0 +2013,9,9,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,48,1,1720,26,1,0 +2013,5,1,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-5,0,845,-6,0,0 +2013,7,12,5,WN,10423,Austin - Bergstrom International,Austin,TX,14057,Portland International,Portland,OR,1525,6,0,1720,-2,0,0 +2013,4,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1310,7,0,1410,7,0,0 +2013,8,19,1,EV,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-8,0,1004,-12,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1008,-1,0,1350,-2,0,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,720,-1,0,908,9,0,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,917,34,1,1515,42,1,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,-5,0,538,-11,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,10,0,2140,45,1,0 +2013,9,11,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,0,0,1345,5,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1430,21,1,1455,28,1,0 +2013,8,21,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1501,70,1,1800,53,1,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,2018,-3,0,2114,-20,0,0 +2013,8,8,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,705,10,0,745,7,0,0 +2013,5,14,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1715,65,1,1830,59,1,0 +2013,4,20,6,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,40,1,1514,44,1,0 +2013,5,20,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-1,0,1820,-13,0,0 +2013,9,27,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,14,0,1635,-4,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,825,-3,0,940,-17,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,-3,0,129,-7,0,0 +2013,5,7,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,-1,0,1132,-13,0,0 +2013,7,10,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1929,73,1,2137,57,1,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,835,17,1,955,15,1,0 +2013,4,28,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1750,-4,0,1900,19,1,0 +2013,10,6,7,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1535,6,0,1700,11,0,0 +2013,8,3,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,-3,0,1934,4,0,0 +2013,7,18,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-2,0,1016,-27,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1015,3,0,1155,3,0,0 +2013,7,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2054,92,1,2228,123,1,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,640,-8,0,1251,-2,0,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,13,0,1830,0,0,0 +2013,10,14,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1259,-4,0,1504,6,0,0 +2013,4,1,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1527,-5,0,1829,-19,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,45,1,1320,45,1,0 +2013,6,30,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1415,205,1,1700,252,1,0 +2013,6,15,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,940,-8,0,1236,-11,0,0 +2013,8,7,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1730,12,0,1825,8,0,0 +2013,4,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1918,0,0,2326,-13,0,0 +2013,7,4,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-3,0,835,-21,0,0 +2013,7,12,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,25,1,1755,47,1,0 +2013,10,4,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1405,-4,0,2051,-9,0,0 +2013,5,17,5,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1848,54,1,2131,40,1,0 +2013,9,4,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1335,-3,0,1550,21,1,0 +2013,10,22,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-1,0,955,8,0,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,815,-2,0,1110,-15,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1448,-4,0,1610,1,0,0 +2013,7,15,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1315,-5,0,1426,-4,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1545,-2,0,1736,-5,0,0 +2013,7,29,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,-3,0,1815,-1,0,0 +2013,5,1,3,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,12,0,1400,-31,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1505,0,0,1835,47,1,0 +2013,4,4,4,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1020,-7,0,1325,-9,0,0 +2013,8,1,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-5,0,1340,-7,0,0 +2013,6,16,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1144,6,0,1316,0,0,0 +2013,9,22,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1320,95,1,1425,104,1,0 +2013,4,17,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1915,0,,1940,0,1,1 +2013,7,23,2,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1509,65,1,1729,91,1,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,903,-3,0,1032,-23,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1254,9,0,1752,-7,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-4,0,1952,-13,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,-2,0,1615,-3,0,0 +2013,7,12,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,-7,0,1416,-10,0,0 +2013,9,17,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-4,0,1544,-6,0,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,615,-1,0,700,2,0,0 +2013,4,28,7,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,810,-4,0,910,-17,0,0 +2013,8,22,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1015,56,1,1200,57,1,0 +2013,5,16,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,650,-3,0,700,-12,0,0 +2013,4,15,1,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1326,-4,0,1413,-6,0,0 +2013,10,15,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1545,0,0,1605,-5,0,0 +2013,6,9,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2130,67,1,2245,58,1,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,4,0,1105,-1,0,0 +2013,5,19,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1005,21,1,1120,18,1,0 +2013,5,8,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-11,0,819,-46,0,0 +2013,5,9,4,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,-2,0,1242,1,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,848,-7,0,0 +2013,4,28,7,EV,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,954,-3,0,1129,-25,0,0 +2013,9,3,2,EV,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,958,2,0,1447,2,0,0 +2013,4,22,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,-4,0,1130,-9,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,705,-8,0,920,-14,0,0 +2013,8,30,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,700,41,1,829,44,1,0 +2013,5,14,2,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1302,-3,0,1359,-12,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,725,1,0,830,1,0,0 +2013,7,3,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1355,-1,0,1739,6,0,0 +2013,6,9,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1315,-10,0,1915,-13,0,0 +2013,9,6,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1235,-1,0,1420,-13,0,0 +2013,6,12,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,555,-3,0,656,-11,0,0 +2013,6,27,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,0,,2012,0,1,1 +2013,9,20,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-2,0,1403,-10,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,2,0,1232,-36,0,0 +2013,5,22,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,750,-9,0,0 +2013,10,25,5,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1931,3,0,2305,-7,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1448,-7,0,1625,0,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1110,-2,0,1442,-15,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1735,7,0,2325,-9,0,0 +2013,5,1,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,-5,0,805,-17,0,0 +2013,7,27,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,816,-2,0,1100,4,0,0 +2013,7,8,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-3,0,1902,-3,0,0 +2013,6,10,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1830,26,1,2010,10,0,0 +2013,9,26,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,46,1,1248,44,1,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,11,0,1450,5,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1240,1,0,1457,-24,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,830,6,0,1125,-29,0,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-5,0,925,16,1,0 +2013,5,27,1,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,920,0,0,1715,2,0,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-6,0,1229,-14,0,0 +2013,6,1,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1650,10,0,2058,-3,0,0 +2013,9,30,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1815,5,0,1905,1,0,0 +2013,7,22,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1451,7,0,1748,15,1,0 +2013,4,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1330,-2,0,1430,-3,0,0 +2013,9,10,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,725,-5,0,850,-19,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2105,46,1,2210,43,1,0 +2013,7,13,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,830,-6,0,943,-12,0,0 +2013,6,4,2,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,838,-8,0,1055,-13,0,0 +2013,8,17,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1526,3,0,0 +2013,6,16,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,2,0,2305,14,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1735,-2,0,1905,-19,0,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,-5,0,1320,-11,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1850,-2,0,2108,6,0,0 +2013,9,8,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,645,-6,0,1519,-13,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,105,1,1310,88,1,0 +2013,6,22,6,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,830,-6,0,1035,-27,0,0 +2013,7,13,6,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,-7,0,501,12,0,0 +2013,6,29,6,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,850,9,0,0 +2013,8,14,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,47,1,2020,46,1,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,755,5,0,915,12,0,0 +2013,4,15,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,9,0,1221,-11,0,0 +2013,7,25,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,2,0,2135,-3,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1848,-6,0,2103,-14,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1310,-2,0,1654,-7,0,0 +2013,9,20,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,956,-3,0,1604,-7,0,0 +2013,7,26,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1655,-1,0,1923,-6,0,0 +2013,7,7,7,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,3,0,930,-5,0,0 +2013,5,29,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,820,0,0,930,-8,0,0 +2013,7,12,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1100,-10,0,1431,-7,0,0 +2013,8,16,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2025,66,1,2155,55,1,0 +2013,10,11,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,1508,-10,0,0 +2013,8,6,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-2,0,1450,-4,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2145,-1,0,2230,-3,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,11,0,947,12,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1345,0,,1706,0,1,1 +2013,7,9,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1440,-7,0,1654,-9,0,0 +2013,10,31,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1220,0,0,1330,-2,0,0 +2013,8,5,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1949,-14,0,2100,-15,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,-4,0,740,-15,0,0 +2013,10,29,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-11,0,1256,-21,0,0 +2013,6,10,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,39,1,1850,31,1,0 +2013,4,16,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1730,2,0,1919,-7,0,0 +2013,4,19,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-6,0,1236,-12,0,0 +2013,7,31,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1228,-5,0,1749,-25,0,0 +2013,4,10,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1822,0,,2109,0,1,1 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,21,1,2300,11,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,40,1,2300,32,1,0 +2013,7,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,0,0,949,-11,0,0 +2013,4,17,3,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-7,0,1222,-20,0,0 +2013,7,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,7,0,2155,9,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-5,0,805,-6,0,0 +2013,8,30,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,700,-1,0,740,-20,0,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1621,186,1,1917,188,1,0 +2013,9,28,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1228,-2,0,1605,-8,0,0 +2013,7,3,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,70,1,910,75,1,0 +2013,7,6,6,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1406,9,0,1721,17,1,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1125,31,1,1309,22,1,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,13,0,1935,9,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,4,0,2100,-2,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1600,0,0,1931,-14,0,0 +2013,8,4,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1245,15,1,1805,3,0,0 +2013,4,7,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,650,10,0,855,1,0,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1702,-1,0,2242,-16,0,0 +2013,8,18,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-8,0,900,-13,0,0 +2013,7,9,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,1948,-4,0,500,-45,0,0 +2013,4,28,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,810,-5,0,920,-12,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,215,1,2136,202,1,0 +2013,6,17,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,900,35,1,1030,24,1,0 +2013,6,12,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,1205,-19,0,0 +2013,9,5,4,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,954,-21,0,1034,-17,0,0 +2013,9,10,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,739,-10,0,1009,-3,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2209,-5,0,2326,-11,0,0 +2013,10,27,7,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1528,7,0,1659,-18,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,81,1,2221,84,1,0 +2013,8,8,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,7,0,1221,12,0,0 +2013,10,13,7,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-3,0,1756,16,1,0 +2013,5,4,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-5,0,1820,-32,0,0 +2013,7,3,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,649,2,0,0 +2013,10,15,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-4,0,1405,-15,0,0 +2013,5,19,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1938,65,1,2159,87,1,0 +2013,7,11,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1415,0,,2030,0,1,1 +2013,4,10,3,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1850,48,1,1935,41,1,0 +2013,4,17,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2111,36,1,2220,50,1,0 +2013,9,13,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,945,18,1,1125,25,1,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1913,10,0,2149,-11,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1245,34,1,1418,28,1,0 +2013,8,16,5,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1910,11,0,2238,-16,0,0 +2013,10,22,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1801,-11,0,1945,-10,0,0 +2013,7,19,5,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,630,-4,0,753,-10,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,713,0,0,1125,-22,0,0 +2013,8,19,1,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1230,6,0,1455,-4,0,0 +2013,10,28,1,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,803,-4,0,932,2,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2150,13,0,2240,20,1,0 +2013,6,13,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1705,7,0,1845,19,1,0 +2013,4,15,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,836,30,1,1055,35,1,0 +2013,6,12,3,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1405,-3,0,1645,-12,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2005,-2,0,2330,-13,0,0 +2013,10,18,5,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,615,-13,0,714,-7,0,0 +2013,6,27,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,66,1,2042,60,1,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1548,0,0,1831,-12,0,0 +2013,9,29,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-5,0,950,-1,0,0 +2013,8,3,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,920,0,,1010,0,1,1 +2013,6,26,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,758,-12,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1835,78,1,2000,72,1,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1825,2,0,2051,0,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1700,-4,0,1839,-14,0,0 +2013,9,28,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1325,-2,0,1340,-5,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,2006,0,,100,0,1,1 +2013,5,6,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-7,0,1250,-8,0,0 +2013,4,3,3,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,758,-5,0,1120,-21,0,0 +2013,5,26,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,850,-18,0,0 +2013,5,21,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1050,-2,0,1220,-2,0,0 +2013,10,30,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,36,1,1430,38,1,0 +2013,9,9,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,34,1,1430,38,1,0 +2013,9,13,5,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,747,-6,0,901,-8,0,0 +2013,6,23,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1145,-2,0,1330,-15,0,0 +2013,7,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1606,157,1,1835,193,1,0 +2013,6,21,5,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1400,3,0,2235,-11,0,0 +2013,10,13,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1930,17,1,2250,-6,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1050,6,0,1720,3,0,0 +2013,10,29,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,-3,0,915,16,1,0 +2013,9,30,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,1,0,955,3,0,0 +2013,4,11,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,85,1,1925,90,1,0 +2013,8,26,1,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1615,-9,0,1915,-12,0,0 +2013,6,22,6,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,0,0,950,-13,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-2,0,905,-7,0,0 +2013,7,14,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1925,-5,0,2135,-17,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,-2,0,1856,-13,0,0 +2013,8,1,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1005,0,0,1050,2,0,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,1,0,1832,-2,0,0 +2013,6,27,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,27,1,1600,56,1,0 +2013,8,20,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1503,89,1,1630,88,1,0 +2013,6,9,7,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1729,54,1,1829,42,1,0 +2013,8,1,4,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,725,46,1,946,37,1,0 +2013,5,7,2,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1900,-2,0,2158,-22,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,758,-9,0,915,-16,0,0 +2013,5,10,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2150,75,1,2315,71,1,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,-4,0,1000,-11,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,929,21,1,1120,36,1,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,959,2,0,1600,-15,0,0 +2013,10,10,4,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,12,0,2110,23,1,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1435,1,0,1855,-6,0,0 +2013,10,12,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,0,0,1200,-2,0,0 +2013,4,19,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1335,16,1,1425,14,0,0 +2013,4,12,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1030,-1,0,1200,3,0,0 +2013,8,31,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1306,15,1,1809,11,0,0 +2013,8,18,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,0,0,2036,50,1,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,754,5,0,925,11,0,0 +2013,7,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,835,10,0,940,26,1,0 +2013,9,5,4,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,832,-8,0,1017,-22,0,0 +2013,6,14,5,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,53,1,2028,65,1,0 +2013,9,20,5,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1810,-4,0,2055,-19,0,0 +2013,5,31,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1955,-5,0,2107,1,0,0 +2013,7,12,5,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1525,-1,0,1625,-13,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1330,16,1,1600,6,0,0 +2013,7,30,2,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-4,0,925,-9,0,0 +2013,6,9,7,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,838,-3,0,1055,-1,0,0 +2013,4,17,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1655,-11,0,2004,-30,0,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1750,15,1,1855,14,0,0 +2013,4,24,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,-5,0,1505,-12,0,0 +2013,10,5,6,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,955,-9,0,0 +2013,4,7,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1157,13,0,1453,7,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-4,0,1029,-20,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1913,99,1,2042,99,1,0 +2013,7,18,4,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,900,223,1,1150,245,1,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,2,0,1355,-4,0,0 +2013,9,13,5,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-5,0,606,-4,0,0 +2013,4,26,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,959,-17,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,-3,0,1255,-4,0,0 +2013,8,4,7,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,-7,0,834,-14,0,0 +2013,6,14,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1705,71,1,1810,71,1,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1130,-5,0,1222,-9,0,0 +2013,4,27,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2051,-5,0,2124,-5,0,0 +2013,6,23,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-1,0,1010,-10,0,0 +2013,10,9,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1210,-7,0,1440,-6,0,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1759,-1,0,2026,-6,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1925,5,0,2318,-11,0,0 +2013,7,3,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1710,3,0,1835,-6,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,0,0,947,-10,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,5,0,1149,4,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1314,17,1,1439,17,1,0 +2013,4,7,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1145,5,0,1330,-6,0,0 +2013,4,26,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,59,1,1600,50,1,0 +2013,9,29,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,11,0,1600,13,0,0 +2013,4,28,7,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,915,-6,0,1035,-12,0,0 +2013,10,23,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,-5,0,1035,-18,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1440,3,0,1715,1,0,0 +2013,4,11,4,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,37,1,1013,11,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,1,0,907,5,0,0 +2013,9,17,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,-14,0,1131,-12,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,851,-2,0,1022,-10,0,0 +2013,5,7,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1500,2,0,2055,-16,0,0 +2013,10,16,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1330,-6,0,1450,-4,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,811,-1,0,1030,-9,0,0 +2013,5,31,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1116,11,0,1237,-3,0,0 +2013,10,2,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,640,-4,0,815,-19,0,0 +2013,7,11,4,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,15,1,604,11,0,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,855,-4,0,1100,-10,0,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,1,0,1353,-3,0,0 +2013,7,5,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1717,-7,0,1944,-26,0,0 +2013,10,23,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,9,0,1530,2,0,0 +2013,7,12,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1940,46,1,2105,51,1,0 +2013,7,1,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1505,-1,0,1925,6,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-2,0,1900,-23,0,0 +2013,6,21,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1230,-7,0,1352,-11,0,0 +2013,4,24,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1455,-1,0,1545,-2,0,0 +2013,9,26,4,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1640,26,1,1800,20,1,0 +2013,9,12,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,930,-3,0,1210,-15,0,0 +2013,8,30,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1300,-4,0,1415,-13,0,0 +2013,6,4,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,210,0,,630,0,1,1 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,835,-2,0,1100,-36,0,0 +2013,9,14,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1716,15,1,1817,7,0,0 +2013,9,10,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1020,-10,0,1259,6,0,0 +2013,6,7,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,46,1,1954,48,1,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,705,-2,0,1223,1,0,0 +2013,10,6,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,1,0,1352,-13,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1759,14,0,1837,2,0,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2157,-4,0,2250,-11,0,0 +2013,8,18,7,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1500,-7,0,2020,-12,0,0 +2013,5,24,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,32,1,1932,31,1,0 +2013,9,28,6,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-5,0,1445,-33,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1729,-3,0,2045,-23,0,0 +2013,10,8,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,-10,0,2150,-24,0,0 +2013,6,4,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1331,10,0,1930,-1,0,0 +2013,5,21,2,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,0,0,1434,18,1,0 +2013,6,27,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1910,16,1,2030,62,1,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1200,14,0,1315,-8,0,0 +2013,5,14,2,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-9,0,1238,-4,0,0 +2013,10,17,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-1,0,1325,7,0,0 +2013,10,18,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,22,1,1005,22,1,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,1,0,1705,-4,0,0 +2013,9,24,2,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-5,0,1218,-26,0,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1147,0,0,1309,21,1,0 +2013,6,8,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,-5,0,147,-15,0,0 +2013,8,9,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1240,62,1,1554,62,1,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,39,1,2033,48,1,0 +2013,6,19,3,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,820,27,1,1043,12,0,0 +2013,10,8,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-6,0,1730,-10,0,0 +2013,4,11,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,925,184,1,1110,180,1,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,-2,0,1245,-6,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1657,9,0,1743,19,1,0 +2013,5,2,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2116,-10,0,2148,-13,0,0 +2013,6,1,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1258,24,1,1648,18,1,0 +2013,8,23,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1609,-10,0,1906,-19,0,0 +2013,6,26,3,HA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2200,-5,0,610,-5,0,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,-3,0,830,-7,0,0 +2013,5,21,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1412,13,0,1539,12,0,0 +2013,10,12,6,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1835,-6,0,2105,-34,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1514,5,0,1733,-9,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1736,-5,0,2015,-15,0,0 +2013,9,6,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1829,7,0,2035,-2,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1255,0,,1406,0,1,1 +2013,5,29,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2013,7,0,2139,5,0,0 +2013,10,14,1,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1710,-6,0,2033,-18,0,0 +2013,7,10,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1410,24,1,1532,40,1,0 +2013,7,9,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,0,0,855,-17,0,0 +2013,5,24,5,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,12,0,1725,-5,0,0 +2013,8,13,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2100,18,1,2244,29,1,0 +2013,8,7,3,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-1,0,900,24,1,0 +2013,7,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,2025,45,1,2340,33,1,0 +2013,8,15,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1435,2,0,1657,7,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2030,-2,0,2129,-15,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1214,4,0,0 +2013,9,24,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,37,1,1635,32,1,0 +2013,4,1,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,2015,4,0,2239,0,0,0 +2013,9,26,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2000,6,0,2125,4,0,0 +2013,5,12,7,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1120,67,1,1238,40,1,0 +2013,8,23,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,-3,0,1904,14,0,0 +2013,5,20,1,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,-2,0,931,-4,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,-2,0,1628,-12,0,0 +2013,9,17,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-13,0,1643,-21,0,0 +2013,6,20,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1724,1,0,2030,-11,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,3,0,2315,-1,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1053,-6,0,0 +2013,8,25,7,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1221,-4,0,1406,-16,0,0 +2013,9,8,7,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1446,-7,0,1650,-15,0,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-8,0,1252,-18,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-5,0,2200,-13,0,0 +2013,10,27,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,6,0,2035,16,1,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1405,-4,0,1734,-19,0,0 +2013,7,7,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,1,0,1230,0,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1515,22,1,1802,3,0,0 +2013,4,1,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1352,49,1,1505,43,1,0 +2013,6,14,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,5,0,2105,7,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1900,53,1,2213,47,1,0 +2013,6,10,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1252,10,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,7,0,2330,-16,0,0 +2013,9,24,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,530,-8,0,613,-20,0,0 +2013,5,10,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,39,1,2135,37,1,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1515,-2,0,1615,32,1,0 +2013,10,9,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1010,0,0,1112,-8,0,0 +2013,8,13,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1122,-1,0,1710,1,0,0 +2013,5,10,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,630,4,0,755,0,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,84,1,2038,79,1,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2024,22,1,2150,7,0,0 +2013,6,3,1,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,800,39,1,1013,55,1,0 +2013,5,30,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1508,3,0,1720,-1,0,0 +2013,10,11,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1835,-6,0,2035,-28,0,0 +2013,10,12,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,10,0,1700,-3,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,810,-2,0,915,-8,0,0 +2013,8,8,4,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,14,0,1850,1,0,0 +2013,10,16,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-2,0,1400,-17,0,0 +2013,5,4,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-5,0,1604,0,0,0 +2013,7,8,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,34,1,1735,30,1,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1105,-1,0,1640,-10,0,0 +2013,8,25,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,39,1,1600,44,1,0 +2013,4,12,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-6,0,1940,-6,0,0 +2013,9,27,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-9,0,1016,-6,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,-2,0,1042,-14,0,0 +2013,9,29,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,46,1,1645,38,1,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1700,36,1,2158,14,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1410,21,1,1520,9,0,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,5,0,1310,15,1,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1500,73,1,1655,77,1,0 +2013,4,28,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-6,0,1535,-17,0,0 +2013,8,7,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2035,40,1,2052,50,1,0 +2013,8,19,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-6,0,1110,-14,0,0 +2013,7,18,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-9,0,913,-14,0,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2105,2,0,2340,-3,0,0 +2013,5,18,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,755,-6,0,932,-10,0,0 +2013,9,17,2,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,31,1,1124,6,0,0 +2013,4,28,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1509,-11,0,1638,-10,0,0 +2013,6,24,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,0,,1954,0,1,1 +2013,5,27,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1200,6,0,1315,2,0,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,6,0,1500,-6,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,-4,0,1210,-10,0,0 +2013,7,6,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,4,0,2134,29,1,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1039,0,0,1216,-6,0,0 +2013,6,29,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-4,0,1740,-30,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1405,-2,0,1612,6,0,0 +2013,8,13,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1640,-2,0,1730,-9,0,0 +2013,4,25,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,25,1,1633,28,1,0 +2013,8,1,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,855,0,0,1015,-3,0,0 +2013,9,24,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1910,-2,0,2040,-12,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,-5,0,1535,25,1,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1340,29,1,1505,21,1,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1640,4,0,2000,-14,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1740,3,0,1850,24,1,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-10,0,930,16,1,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1940,-3,0,2051,-9,0,0 +2013,4,5,5,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,605,-9,0,715,5,0,0 +2013,8,21,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,850,5,0,1055,0,0,0 +2013,7,5,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1440,-15,0,1654,-28,0,0 +2013,5,8,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,646,143,1,952,139,1,0 +2013,6,17,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1825,-1,0,2006,47,1,0 +2013,4,24,3,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,600,1,0,805,-12,0,0 +2013,9,27,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1805,-4,0,2013,-8,0,0 +2013,10,8,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2142,-12,0,2252,-24,0,0 +2013,4,29,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,-5,0,1850,-15,0,0 +2013,9,21,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,730,-8,0,910,-12,0,0 +2013,8,5,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,4,0,1620,-4,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1915,-2,0,2205,-16,0,0 +2013,9,25,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,-4,0,1442,13,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,719,-2,0,848,-2,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1358,-1,0,1533,-7,0,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,183,1,2129,178,1,0 +2013,10,9,3,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,847,-2,0,1155,5,0,0 +2013,8,22,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1825,106,1,2006,99,1,0 +2013,5,12,7,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1459,-5,0,1635,-17,0,0 +2013,6,30,7,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,855,2,0,1006,-19,0,0 +2013,8,9,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1945,122,1,2006,103,1,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,820,1,0,1000,-5,0,0 +2013,5,2,4,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1935,-2,0,2121,-17,0,0 +2013,7,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,837,-6,0,901,-14,0,0 +2013,7,26,5,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1730,24,1,1820,21,1,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-4,0,1505,-10,0,0 +2013,8,4,7,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1138,14,0,1228,15,1,0 +2013,8,3,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,-6,0,957,-8,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-6,0,2354,-10,0,0 +2013,8,26,1,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1945,-5,0,2038,-7,0,0 +2013,7,23,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,-2,0,1712,1,0,0 +2013,8,7,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,-9,0,814,-14,0,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,855,0,0,1635,8,0,0 +2013,9,18,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1527,-2,0,1637,5,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1935,-7,0,2159,-11,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1515,11,0,1840,7,0,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1325,3,0,1450,7,0,0 +2013,6,18,2,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1552,71,1,1649,64,1,0 +2013,8,15,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,2,0,835,1,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1010,4,0,1335,0,0,0 +2013,7,2,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,715,-3,0,950,14,0,0 +2013,9,6,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,6,0,1922,14,0,0 +2013,7,14,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1555,30,1,1904,-7,0,0 +2013,4,20,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,710,-1,0,1240,-5,0,0 +2013,5,15,3,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,13,0,2036,-7,0,0 +2013,4,14,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1005,-15,0,0 +2013,5,27,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1006,-8,0,0 +2013,10,4,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,705,-7,0,0 +2013,10,4,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1615,0,0,1726,-4,0,0 +2013,10,4,5,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1211,-1,0,1459,8,0,0 +2013,6,11,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-3,0,1347,-9,0,0 +2013,6,17,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1540,129,1,1655,130,1,0 +2013,4,9,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2137,2,0,559,-9,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-1,0,1730,-5,0,0 +2013,6,28,5,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-3,0,1000,-3,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,847,-4,0,1030,-12,0,0 +2013,10,11,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-4,0,1352,-27,0,0 +2013,10,22,2,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1625,0,0,1827,-19,0,0 +2013,5,10,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,8,0,1730,21,1,0 +2013,6,10,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1714,-3,0,2025,-22,0,0 +2013,6,25,2,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,910,-8,0,1048,-12,0,0 +2013,5,8,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,810,3,0,956,-9,0,0 +2013,5,14,2,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-2,0,1335,-8,0,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,-3,0,1425,-3,0,0 +2013,7,20,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1528,16,1,1715,8,0,0 +2013,9,26,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,754,-16,0,0 +2013,6,29,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,825,-6,0,1040,-6,0,0 +2013,7,11,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,18,1,2310,25,1,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,729,-2,0,901,-4,0,0 +2013,5,19,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,820,1,0,1024,-1,0,0 +2013,7,27,6,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1858,1,0,2028,7,0,0 +2013,4,27,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1402,-7,0,1555,-10,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-5,0,2315,-4,0,0 +2013,4,18,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2243,-2,0,711,8,0,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1657,149,1,2257,141,1,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,704,-4,0,830,-24,0,0 +2013,5,27,1,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,37,1,2105,41,1,0 +2013,5,31,5,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1552,1,0,1655,1,0,0 +2013,4,28,7,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1300,6,0,2113,11,0,0 +2013,7,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1316,-10,0,1450,-16,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1135,-5,0,1700,-15,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1805,6,0,2059,-9,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,17,1,1950,8,0,0 +2013,8,2,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-2,0,1216,-28,0,0 +2013,6,15,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1155,-2,0,1449,7,0,0 +2013,10,20,7,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1245,2,0,2105,-15,0,0 +2013,8,12,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-10,0,1100,-18,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1645,-1,0,1855,3,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,-8,0,1807,-9,0,0 +2013,5,8,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-4,0,805,0,0,0 +2013,7,28,7,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1750,70,1,1935,62,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,21,1,1207,-5,0,0 +2013,5,11,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-5,0,1920,-4,0,0 +2013,5,5,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,26,1,2143,19,1,0 +2013,7,5,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-1,0,700,-6,0,0 +2013,6,12,3,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,940,5,0,1202,3,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1935,-5,0,2046,-22,0,0 +2013,7,1,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1721,-4,0,1940,-1,0,0 +2013,9,27,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-4,0,2051,-9,0,0 +2013,5,29,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,-1,0,1030,-2,0,0 +2013,9,14,6,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,1,0,1155,0,0,0 +2013,7,9,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-1,0,759,-1,0,0 +2013,10,12,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,3,0,1537,16,1,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1640,2,0,1820,-5,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,-6,0,2121,-12,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,21,1,1130,-8,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1534,-4,0,1728,-9,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,-5,0,2236,-10,0,0 +2013,9,26,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1445,-1,0,1533,1,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2035,14,0,2330,15,1,0 +2013,7,17,3,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1900,30,1,2206,24,1,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,-3,0,2155,-13,0,0 +2013,10,25,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-4,0,1719,-5,0,0 +2013,9,12,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-5,0,805,-26,0,0 +2013,8,18,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1109,0,0,1705,-12,0,0 +2013,7,28,7,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,-3,0,1340,1,0,0 +2013,8,4,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,-1,0,1901,7,0,0 +2013,6,20,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-7,0,1053,1,0,0 +2013,7,2,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,0,,1415,0,1,1 +2013,5,10,5,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,145,0,0,659,1,0,0 +2013,7,28,7,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-12,0,711,-15,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,12,0,2302,-16,0,0 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2040,37,1,2230,30,1,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,727,-7,0,845,-11,0,0 +2013,9,17,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,645,-3,0,817,-27,0,0 +2013,9,22,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-8,0,1110,-24,0,0 +2013,8,28,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,5,0,1845,-1,0,0 +2013,6,22,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-2,0,1405,-13,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1825,94,1,2018,71,1,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,-1,0,2327,-2,0,0 +2013,7,22,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,1,0,1114,-13,0,0 +2013,9,12,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1940,-6,0,2140,-6,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1645,-7,0,1830,-32,0,0 +2013,5,19,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-3,0,1650,-8,0,0 +2013,10,8,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-3,0,1652,11,0,0 +2013,7,27,6,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1500,21,1,1649,10,0,0 +2013,6,16,7,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-10,0,1724,-15,0,0 +2013,4,11,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1228,-10,0,1407,-18,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,0,0,1750,-6,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1015,0,0,1124,5,0,0 +2013,10,5,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1858,-13,0,0 +2013,6,12,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1724,-5,0,1809,5,0,0 +2013,8,11,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-4,0,1000,-16,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1035,15,1,1130,11,0,0 +2013,9,24,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1115,-3,0,1202,-3,0,0 +2013,7,29,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1945,69,1,2006,54,1,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,-1,0,1458,-11,0,0 +2013,4,23,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,744,-15,0,0 +2013,8,13,2,DL,14679,San Diego International,San Diego,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,24,1,1902,4,0,0 +2013,6,6,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,-4,0,914,27,1,0 +2013,5,21,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-4,0,1023,-6,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1435,3,0,1613,-6,0,0 +2013,4,13,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-9,0,810,-11,0,0 +2013,6,7,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,80,1,1705,115,1,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1110,-1,0,1404,-20,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2220,-3,0,2355,-13,0,0 +2013,5,23,4,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,26,1,1330,39,1,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1235,-3,0,1400,-8,0,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,905,0,0,1328,32,1,0 +2013,7,3,3,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2345,1,0,820,-11,0,0 +2013,6,5,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-1,0,1606,-8,0,0 +2013,7,22,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,742,0,,915,0,1,1 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,825,0,0,1145,-3,0,0 +2013,9,3,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1340,-6,0,1545,-7,0,0 +2013,5,26,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,815,85,1,1030,62,1,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,-1,0,2055,-8,0,0 +2013,4,15,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1151,-8,0,1704,-17,0,0 +2013,7,26,5,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1300,6,0,1425,5,0,0 +2013,7,11,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-9,0,1347,-13,0,0 +2013,5,13,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1251,-4,0,1612,-19,0,0 +2013,5,3,5,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1135,-6,0,1546,-26,0,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,-3,0,1245,-25,0,0 +2013,10,12,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,2,0,1259,-11,0,0 +2013,8,11,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-4,0,1155,-8,0,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1640,38,1,1810,37,1,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,-2,0,1005,-1,0,0 +2013,5,17,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,725,-6,0,1040,-29,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,605,2,0,745,-4,0,0 +2013,5,3,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1737,6,0,2051,1,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-4,0,2010,-7,0,0 +2013,6,18,2,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-8,0,1300,-2,0,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1320,1,0,1415,1,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,818,-3,0,1029,17,1,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1630,-2,0,1800,-14,0,0 +2013,7,27,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-4,0,1258,-16,0,0 +2013,5,3,5,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,91,1,1640,86,1,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1359,14,0,1523,7,0,0 +2013,6,13,4,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1744,-1,0,1910,-6,0,0 +2013,8,15,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,2,0,2349,-19,0,0 +2013,9,17,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1932,-4,0,2310,-7,0,0 +2013,5,25,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-4,0,1856,-3,0,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,735,-9,0,825,-20,0,0 +2013,5,23,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1450,-6,0,1650,-29,0,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1230,3,0,1605,22,1,0 +2013,4,12,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1234,-9,0,1450,-10,0,0 +2013,9,14,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1553,-13,0,0 +2013,9,22,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,119,1,1804,114,1,0 +2013,7,2,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-9,0,1302,3,0,0 +2013,6,7,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,10,0,1635,2,0,0 +2013,10,23,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1333,-9,0,1412,-10,0,0 +2013,6,7,5,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,2010,-2,0,2155,-10,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,1,0,1625,-2,0,0 +2013,5,2,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1435,178,1,1650,206,1,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1500,0,0,1626,-8,0,0 +2013,6,17,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1650,-7,0,1740,1,0,0 +2013,7,4,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12339,Indianapolis International,Indianapolis,IN,1118,-4,0,1352,-6,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,700,-1,0,1145,55,1,0 +2013,10,5,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,20,1,1706,20,1,0 +2013,10,16,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,4,0,1450,4,0,0 +2013,7,17,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,-6,0,1221,-14,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1659,-3,0,1842,-27,0,0 +2013,4,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,6,0,1130,30,1,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2035,34,1,2320,41,1,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1415,-6,0,1625,-13,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,-4,0,2117,2,0,0 +2013,8,16,5,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1520,29,1,1705,13,0,0 +2013,6,7,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,630,-2,0,810,-1,0,0 +2013,4,20,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,1,0,1925,-6,0,0 +2013,7,13,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1023,-6,0,1259,11,0,0 +2013,9,26,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1210,-3,0,1520,-7,0,0 +2013,9,12,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,755,-4,0,935,-16,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1535,55,1,1755,42,1,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,-2,0,1600,-4,0,0 +2013,9,16,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,0,0,810,-11,0,0 +2013,10,20,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1425,14,0,2255,-6,0,0 +2013,6,3,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,1015,-12,0,0 +2013,4,15,1,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,638,0,0,809,-11,0,0 +2013,7,5,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,650,25,1,1025,9,0,0 +2013,6,21,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,0,0,1915,-6,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1010,-5,0,1255,-17,0,0 +2013,4,5,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1735,25,1,1835,28,1,0 +2013,6,12,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,-2,0,1200,42,1,0 +2013,5,13,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,605,-3,0,755,-4,0,0 +2013,6,23,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-4,0,1122,2,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1730,1,0,1825,-9,0,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-2,0,2350,0,0,0 +2013,10,22,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2051,-4,0,2149,-19,0,0 +2013,5,17,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,803,-3,0,1405,9,0,0 +2013,7,23,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,215,1,2056,205,1,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1535,-4,0,1645,7,0,0 +2013,9,6,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1446,-6,0,1655,-19,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,855,-10,0,955,-12,0,0 +2013,8,6,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1115,-10,0,1255,-17,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,950,17,1,1228,15,1,0 +2013,9,15,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-8,0,716,-25,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1325,26,1,1636,15,1,0 +2013,8,24,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,845,-7,0,1008,-40,0,0 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,820,29,1,925,34,1,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2009,35,1,2102,30,1,0 +2013,8,5,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,3,0,1229,5,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,91,1,2010,77,1,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-5,0,1113,-20,0,0 +2013,4,19,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,945,-11,0,0 +2013,8,26,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1405,0,0,1515,5,0,0 +2013,6,18,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14057,Portland International,Portland,OR,1825,-2,0,2035,-17,0,0 +2013,9,1,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1845,-3,0,2026,-8,0,0 +2013,4,16,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1525,15,1,1620,7,0,0 +2013,4,25,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1017,-5,0,1601,-23,0,0 +2013,9,23,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-7,0,1512,-10,0,0 +2013,6,21,5,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1505,8,0,1840,28,1,0 +2013,8,16,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1955,-5,0,2201,-19,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,26,1,1054,26,1,0 +2013,8,29,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1612,-4,0,1723,-22,0,0 +2013,4,28,7,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,-4,0,1956,-17,0,0 +2013,7,27,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1900,7,0,2130,2,0,0 +2013,6,7,5,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1114,-2,0,1120,-2,0,0 +2013,4,6,6,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1330,3,0,1620,1,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2000,-8,0,2229,-15,0,0 +2013,5,27,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,1,0,615,15,1,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-6,0,1430,-2,0,0 +2013,6,28,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,19,1,147,10,0,0 +2013,5,22,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2145,87,1,2230,87,1,0 +2013,4,4,4,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1020,-1,0,1251,-16,0,0 +2013,6,29,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,-7,0,1740,-10,0,0 +2013,9,3,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1340,-2,0,1440,-2,0,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,19,1,1013,11,0,0 +2013,4,14,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1120,-3,0,1235,-3,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,920,-3,0,940,-10,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1338,-5,0,2218,-11,0,0 +2013,4,1,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1035,-6,0,1157,-15,0,0 +2013,10,19,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,7,0,1240,-6,0,0 +2013,6,21,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,4,0,1805,1,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,828,-8,0,0 +2013,8,2,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,4,0,1625,-9,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1550,2,0,1735,5,0,0 +2013,8,4,7,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,725,-4,0,915,3,0,0 +2013,4,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,10,0,1209,-3,0,0 +2013,9,18,3,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,37,1,1911,54,1,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,645,-1,0,835,-11,0,0 +2013,7,25,4,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,74,1,1803,71,1,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1927,1,0,2116,-12,0,0 +2013,8,20,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1159,-7,0,1344,-15,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2245,-6,0,630,-28,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,715,-6,0,913,-27,0,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,735,1,0,850,-4,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1525,-3,0,1650,-9,0,0 +2013,6,25,2,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-10,0,1626,5,0,0 +2013,4,26,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,-10,0,1405,-34,0,0 +2013,4,25,4,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,29,1,1105,48,1,0 +2013,6,29,6,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,18,1,1345,13,0,0 +2013,6,11,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,6,0,1225,-3,0,0 +2013,8,6,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,910,-2,0,1040,-8,0,0 +2013,7,11,4,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,940,6,0,1100,-7,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1930,4,0,2205,-21,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-4,0,1026,0,0,0 +2013,9,14,6,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1630,-4,0,1826,-11,0,0 +2013,7,1,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-2,0,1100,119,1,0 +2013,4,8,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-7,0,944,-9,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1745,20,1,2205,-8,0,0 +2013,9,22,7,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,940,-3,0,1729,-15,0,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2142,-1,0,2245,-19,0,0 +2013,6,22,6,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,-1,0,1901,-3,0,0 +2013,7,21,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-5,0,2110,-4,0,0 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-1,0,2305,-8,0,0 +2013,8,10,6,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,55,1,1612,58,1,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,3,0,1555,7,0,0 +2013,5,13,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1740,-9,0,2025,-21,0,0 +2013,6,22,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,1,0,2135,-6,0,0 +2013,7,15,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,-10,0,1225,12,0,0 +2013,9,13,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1400,36,1,1527,26,1,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-1,0,1149,-7,0,0 +2013,6,8,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1600,-1,0,1720,-10,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1835,0,0,2200,-13,0,0 +2013,4,2,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-3,0,835,-5,0,0 +2013,8,23,5,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1230,30,1,1455,35,1,0 +2013,10,11,5,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1220,-2,0,1437,-11,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,850,5,0,1710,-26,0,0 +2013,10,5,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,-9,0,1102,-32,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,1,0,1619,3,0,0 +2013,10,20,7,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,901,-9,0,1023,-20,0,0 +2013,4,4,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,6,0,1940,2,0,0 +2013,8,16,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1140,2,0,1428,-6,0,0 +2013,4,29,1,FL,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1755,-2,0,1845,52,1,0 +2013,9,23,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1645,-4,0,1925,-29,0,0 +2013,6,9,7,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1936,163,1,2057,170,1,0 +2013,10,14,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1815,145,1,2055,131,1,0 +2013,8,26,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1118,10,0,1510,-3,0,0 +2013,7,26,5,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1047,6,0,1259,4,0,0 +2013,7,29,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,10,0,1550,0,0,0 +2013,4,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-2,0,1240,-6,0,0 +2013,4,24,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,248,1,1740,236,1,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,0,0,2112,-33,0,0 +2013,9,6,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,11,0,1403,15,1,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2120,-1,0,2358,-12,0,0 +2013,9,14,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1920,-4,0,2258,-8,0,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,22,1,2125,6,0,0 +2013,4,22,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1105,-1,0,1415,-5,0,0 +2013,8,4,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1320,-2,0,1524,-2,0,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1721,78,1,1929,131,1,0 +2013,10,1,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-3,0,1611,-12,0,0 +2013,7,2,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-2,0,1037,2,0,0 +2013,5,24,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1803,3,0,1929,-10,0,0 +2013,10,25,5,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1350,3,0,1705,-7,0,0 +2013,4,29,1,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,19,1,705,15,1,0 +2013,6,14,5,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,61,1,2345,56,1,0 +2013,10,15,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,0,0,1341,-4,0,0 +2013,10,24,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,23,1,1939,1,0,0 +2013,7,25,4,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1055,13,0,1918,9,0,0 +2013,9,7,6,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1600,2,0,1845,1,0,0 +2013,8,23,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,-7,0,1514,-19,0,0 +2013,4,10,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1102,12,0,1345,21,1,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,2005,1,0,2330,-11,0,0 +2013,9,14,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,-4,0,1540,-16,0,0 +2013,4,21,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,615,12,0,1122,-3,0,0 +2013,8,4,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1535,6,0,1920,-5,0,0 +2013,7,25,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,-4,0,1705,-2,0,0 +2013,7,31,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,-4,0,1223,-4,0,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,820,-7,0,950,-22,0,0 +2013,4,18,4,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1111,105,1,1405,104,1,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,23,1,538,-1,0,0 +2013,10,10,4,AA,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,955,3,0,1715,-16,0,0 +2013,10,19,6,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,715,2,0,1000,-1,0,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1600,68,1,1905,74,1,0 +2013,6,5,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,725,-5,0,1040,-8,0,0 +2013,7,31,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1053,-2,0,1210,22,1,0 +2013,7,6,6,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2329,14,0,757,2,0,0 +2013,6,18,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,810,33,1,950,35,1,0 +2013,5,27,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1850,11,0,1935,6,0,0 +2013,7,24,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,8,0,1325,0,0,0 +2013,10,30,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,-4,0,1442,-19,0,0 +2013,5,28,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,605,-2,0,710,-3,0,0 +2013,7,6,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,16,1,1605,10,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1810,61,1,2047,55,1,0 +2013,10,9,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,6,0,809,-5,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,81,1,2102,106,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,-5,0,2122,-38,0,0 +2013,4,26,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,800,-10,0,950,-6,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1510,29,1,1855,22,1,0 +2013,10,7,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-8,0,1445,-21,0,0 +2013,8,5,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1859,75,1,2044,70,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1410,42,1,1455,57,1,0 +2013,9,11,3,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,900,-8,0,1125,-13,0,0 +2013,6,14,5,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1810,23,1,1925,30,1,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-4,0,1220,-3,0,0 +2013,8,9,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-4,0,1910,-7,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,940,-2,0,1007,-21,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,600,-3,0,730,-10,0,0 +2013,4,15,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,5,0,1100,-1,0,0 +2013,9,1,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1240,57,1,1535,59,1,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2138,12,0,2317,-5,0,0 +2013,6,17,1,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1008,7,0,1713,-20,0,0 +2013,4,29,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1010,79,1,1139,76,1,0 +2013,8,27,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1950,-2,0,2110,-12,0,0 +2013,7,3,3,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1710,30,1,1925,17,1,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1750,-7,0,2045,-13,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1945,-3,0,2235,-14,0,0 +2013,10,19,6,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1128,106,1,1455,107,1,0 +2013,8,15,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1945,-5,0,2245,-10,0,0 +2013,8,1,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,2,0,905,-4,0,0 +2013,4,8,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1730,13,0,2041,9,0,0 +2013,9,25,3,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1733,-4,0,2012,-42,0,0 +2013,7,6,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1656,28,1,1930,33,1,0 +2013,8,11,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,945,-3,0,1045,-7,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,38,1,1555,35,1,0 +2013,9,11,3,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,620,-9,0,850,-12,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,955,-1,0,1058,26,1,0 +2013,6,28,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1930,-11,0,2215,-15,0,0 +2013,6,15,6,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,615,-2,0,749,-9,0,0 +2013,8,12,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-6,0,1559,2,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-7,0,1948,21,1,0 +2013,4,3,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-12,0,2055,-19,0,0 +2013,10,5,6,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1220,-3,0,1415,-17,0,0 +2013,4,22,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1444,-1,0,1633,20,1,0 +2013,5,22,3,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-1,0,1603,0,0,0 +2013,6,21,5,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,0,0,1559,-5,0,0 +2013,6,9,7,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,636,-4,0,850,-26,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1537,-3,0,1750,-38,0,0 +2013,7,8,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,-4,0,1526,7,0,0 +2013,4,26,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-5,0,745,-11,0,0 +2013,5,18,6,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-1,0,1350,-4,0,0 +2013,8,22,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,706,-3,0,922,0,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,810,0,0,1215,0,0,0 +2013,10,11,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,845,0,0,1200,4,0,0 +2013,4,30,2,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1035,6,0,1330,2,0,0 +2013,10,23,3,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1200,-4,0,1438,-20,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,648,-4,0,955,-30,0,0 +2013,10,14,1,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,-4,0,1831,-25,0,0 +2013,7,19,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,0,0,1017,-7,0,0 +2013,4,25,4,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1420,2,0,1550,-9,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-1,0,1914,14,0,0 +2013,10,2,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1020,0,0,1230,-6,0,0 +2013,10,4,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,720,-3,0,945,1,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1435,12,0,1910,7,0,0 +2013,5,11,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1757,-1,0,1900,-6,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,-3,0,1209,-6,0,0 +2013,5,26,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,739,-16,0,0 +2013,8,22,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-5,0,1200,-8,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,-2,0,2152,0,0,0 +2013,6,19,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-1,0,1334,-9,0,0 +2013,10,25,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,605,-4,0,734,-5,0,0 +2013,4,20,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,2200,19,1,46,5,0,0 +2013,5,30,4,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,-4,0,1716,-9,0,0 +2013,5,19,7,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,800,2,0,1550,19,1,0 +2013,4,15,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,1001,-1,0,0 +2013,5,22,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,2210,-17,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1430,76,1,1840,59,1,0 +2013,8,26,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-6,0,846,-3,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1210,33,1,1310,31,1,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,830,27,1,1015,17,1,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1355,-1,0,1650,-10,0,0 +2013,6,5,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1415,31,1,1710,20,1,0 +2013,7,1,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,21,1,2135,5,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,2,0,1705,-13,0,0 +2013,7,11,4,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,0,0,1041,-12,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,747,-2,0,1054,0,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,914,-3,0,1031,-12,0,0 +2013,9,24,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1440,3,0,1731,9,0,0 +2013,6,21,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-6,0,843,-22,0,0 +2013,9,1,7,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-2,0,1007,-8,0,0 +2013,6,16,7,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1642,53,1,2025,31,1,0 +2013,5,9,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,0,0,1452,11,0,0 +2013,9,27,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-4,0,2235,-12,0,0 +2013,9,29,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,650,-10,0,815,-19,0,0 +2013,4,9,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1245,5,0,1420,-8,0,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,751,0,0,953,-15,0,0 +2013,7,21,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1757,44,1,2005,51,1,0 +2013,5,26,7,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1133,-7,0,1420,4,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,49,1,2311,33,1,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1650,2,0,1935,39,1,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,1,0,915,-3,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1325,10,0,1850,4,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1009,-9,0,1437,-8,0,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2050,14,0,2310,12,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,0,0,1405,-8,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,-1,0,2042,-12,0,0 +2013,9,26,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1340,-1,0,1931,-23,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,825,11,0,1010,5,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-3,0,1004,1,0,0 +2013,9,19,4,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1339,-9,0,1625,-13,0,0 +2013,6,21,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2016,-2,0,2144,-5,0,0 +2013,8,15,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1600,-1,0,1730,-1,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1459,-7,0,1756,-44,0,0 +2013,9,30,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,800,-5,0,925,-1,0,0 +2013,8,10,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,5,0,1405,-12,0,0 +2013,7,26,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,9,0,755,6,0,0 +2013,9,17,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1916,-15,0,2020,-20,0,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1955,3,0,2240,-7,0,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1547,-6,0,2108,-22,0,0 +2013,9,23,1,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1110,5,0,1300,7,0,0 +2013,6,24,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,0,0,805,-2,0,0 +2013,7,17,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,10,0,1133,-2,0,0 +2013,7,30,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,5,0,2130,-7,0,0 +2013,10,20,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,516,-3,0,603,-1,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1909,27,1,2030,12,0,0 +2013,6,10,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,2,0,1130,-9,0,0 +2013,10,23,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1752,8,0,1929,3,0,0 +2013,5,6,1,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2045,-1,0,2145,-1,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2109,-1,0,145,-30,0,0 +2013,4,6,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,15,1,1635,9,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1002,59,1,1221,20,1,0 +2013,4,4,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,-6,0,724,-3,0,0 +2013,4,10,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1545,8,0,1851,-15,0,0 +2013,4,18,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2155,9,0,2320,-1,0,0 +2013,4,24,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,715,-2,0,955,31,1,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1700,6,0,1800,-3,0,0 +2013,8,18,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1210,-1,0,1355,-12,0,0 +2013,7,14,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-10,0,2132,-10,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1624,-3,0,1944,1,0,0 +2013,10,8,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2135,-7,0,615,-1,0,0 +2013,6,22,6,EV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,846,0,0,1150,-8,0,0 +2013,8,6,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,2010,20,1,2135,5,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1920,-1,0,2040,-6,0,0 +2013,9,18,3,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-8,0,1220,-2,0,0 +2013,7,28,7,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,0,0,2120,7,0,0 +2013,10,17,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1142,32,1,1353,27,1,0 +2013,5,18,6,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1420,-4,0,1800,2,0,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1130,4,0,1235,-1,0,0 +2013,9,18,3,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,840,-2,0,1050,-4,0,0 +2013,4,26,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-7,0,925,-14,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-1,0,1340,-11,0,0 +2013,4,20,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1920,-3,0,2315,-9,0,0 +2013,4,6,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,745,-2,0,1044,-2,0,0 +2013,8,11,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,-3,0,2123,4,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1610,3,0,1820,12,0,0 +2013,9,19,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1105,-6,0,1127,-12,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,9,0,1529,62,1,0 +2013,10,9,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1725,-1,0,1931,13,0,0 +2013,8,6,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,-3,0,830,-12,0,0 +2013,7,24,3,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-7,0,1225,-30,0,0 +2013,10,30,3,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1600,24,1,1907,12,0,0 +2013,5,24,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1123,19,1,1414,4,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,143,1,2110,121,1,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1921,36,1,2301,16,1,0 +2013,4,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1425,1,0,1635,7,0,0 +2013,8,5,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,935,-10,0,955,-15,0,0 +2013,9,8,7,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,-18,0,1043,-5,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1945,29,1,2258,15,1,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,6,0,1715,-24,0,0 +2013,8,19,1,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,0,0,1857,-29,0,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,3,0,1915,5,0,0 +2013,10,13,7,YV,14100,Philadelphia International,Philadelphia,PA,14730,Louisville International-Standiford Field,Louisville,KY,2040,-5,0,2241,-17,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2242,39,1,19,37,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,6,0,2110,19,1,0 +2013,9,30,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,901,-11,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1709,228,1,1853,210,1,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1456,4,0,1747,-20,0,0 +2013,6,24,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,2030,-4,0,2320,-7,0,0 +2013,7,28,7,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,38,1,2305,24,1,0 +2013,5,21,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1000,-4,0,1238,-10,0,0 +2013,6,15,6,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1435,-12,0,1624,-14,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1631,67,1,1730,66,1,0 +2013,8,28,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,5,0,752,21,1,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,955,4,0,1250,-1,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,900,17,1,1010,3,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2207,-9,0,2248,-6,0,0 +2013,6,14,5,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1438,61,1,1546,66,1,0 +2013,4,22,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,-3,0,1515,16,1,0 +2013,6,2,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,6,0,2025,1,0,0 +2013,9,8,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,0,0,1512,7,0,0 +2013,8,2,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,1,0,1310,17,1,0 +2013,10,7,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1820,-3,0,1930,-4,0,0 +2013,7,25,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1735,4,0,1900,32,1,0 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-5,0,1617,-11,0,0 +2013,5,28,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1300,-2,0,1615,1,0,0 +2013,8,21,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,811,5,0,0 +2013,5,16,4,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,615,2,0,750,12,0,0 +2013,8,24,6,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1300,11,0,1550,1,0,0 +2013,9,24,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1150,1,0,1255,1,0,0 +2013,5,3,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,9,0,2025,12,0,0 +2013,8,2,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,-7,0,2257,1,0,0 +2013,4,9,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,4,0,1925,2,0,0 +2013,5,9,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-2,0,1917,-1,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,10,0,1800,9,0,0 +2013,5,2,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,639,-3,0,929,-7,0,0 +2013,5,2,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,6,0,855,1,0,0 +2013,9,3,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1840,-2,0,2125,-14,0,0 +2013,5,8,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,0,0,1735,5,0,0 +2013,5,31,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1630,0,0,1800,-15,0,0 +2013,8,3,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,16,1,2303,0,0,0 +2013,6,17,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,59,25,1,559,31,1,0 +2013,8,12,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1654,27,1,1954,15,1,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1806,62,1,2115,177,1,0 +2013,6,19,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,755,-3,0,1047,13,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,605,0,0,900,-12,0,0 +2013,9,1,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1236,-9,0,1433,-19,0,0 +2013,6,25,2,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-8,0,2034,-11,0,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2031,-3,0,2157,-19,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,45,1,1330,31,1,0 +2013,8,28,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1455,-5,0,1615,-14,0,0 +2013,6,6,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,905,-5,0,1020,-8,0,0 +2013,6,3,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1400,11,0,1735,-3,0,0 +2013,4,10,3,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,830,-3,0,1140,-11,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,-4,0,1628,-12,0,0 +2013,4,11,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,198,1,2054,185,1,0 +2013,6,16,7,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1220,-3,0,1416,-6,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2030,136,1,2135,139,1,0 +2013,6,21,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-5,0,815,70,1,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1255,16,1,1942,31,1,0 +2013,4,29,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-7,0,1000,-8,0,0 +2013,9,4,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,826,-12,0,0 +2013,4,1,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-1,0,1639,-14,0,0 +2013,7,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1002,13,0,1221,-17,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1456,0,0,2351,-40,0,0 +2013,6,21,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,-1,0,1048,38,1,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,-3,0,912,2,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2104,2,0,2349,12,0,0 +2013,6,13,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-1,0,940,-15,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1950,9,0,2130,-1,0,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,3,0,1235,-5,0,0 +2013,5,27,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1405,-2,0,1955,-17,0,0 +2013,5,25,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,5,0,753,-13,0,0 +2013,10,8,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1104,-3,0,1200,0,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1620,7,0,1810,2,0,0 +2013,7,12,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-12,0,1402,-16,0,0 +2013,4,8,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1135,-5,0,1210,-6,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2030,10,0,2145,13,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,-1,0,1535,-15,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1305,-1,0,2000,14,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,10,0,1940,28,1,0 +2013,5,27,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-10,0,1613,-7,0,0 +2013,7,15,1,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1735,-5,0,1845,-5,0,0 +2013,4,29,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,35,1,1649,17,1,0 +2013,5,23,4,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1056,-3,0,1220,-4,0,0 +2013,9,15,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,-4,0,1207,-37,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1220,-1,0,1420,-6,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1052,-4,0,1154,-17,0,0 +2013,8,9,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,8,0,1305,5,0,0 +2013,6,25,2,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1942,-5,0,115,-7,0,0 +2013,9,21,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1635,0,0,1735,-2,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,-4,0,1102,-13,0,0 +2013,7,28,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-2,0,1615,-3,0,0 +2013,4,25,4,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,718,-4,0,1138,-17,0,0 +2013,4,5,5,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1905,-7,0,30,8,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,955,-2,0,1237,-13,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1209,29,1,1248,16,1,0 +2013,4,3,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-7,0,815,-1,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1345,31,1,1510,26,1,0 +2013,10,2,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1515,-3,0,1635,3,0,0 +2013,5,19,7,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1723,41,1,1943,67,1,0 +2013,8,13,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-3,0,2041,-23,0,0 +2013,4,23,2,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,550,-2,0,724,18,1,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1447,33,1,1928,25,1,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,19,1,2350,10,0,0 +2013,6,22,6,EV,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,950,24,1,1130,16,1,0 +2013,5,13,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1005,139,1,1125,133,1,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-9,0,1404,-11,0,0 +2013,7,22,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,1359,-8,0,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2040,17,1,2155,18,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,828,-3,0,936,-15,0,0 +2013,7,22,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,745,-6,0,855,-25,0,0 +2013,5,6,1,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1859,-13,0,2134,-68,0,0 +2013,10,25,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,930,7,0,1030,5,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1357,-3,0,1532,-6,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,705,-2,0,938,-17,0,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1000,4,0,1114,-5,0,0 +2013,4,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,0,0,1017,-10,0,0 +2013,6,3,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1648,57,1,1825,47,1,0 +2013,7,4,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1100,18,1,1332,6,0,0 +2013,4,11,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,905,8,0,1025,3,0,0 +2013,6,14,5,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,-1,0,1410,-11,0,0 +2013,7,17,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-5,0,1725,-4,0,0 +2013,4,7,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2055,1,0,2250,6,0,0 +2013,8,16,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-2,0,915,-2,0,0 +2013,7,18,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1320,-2,0,1520,-20,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1350,12,0,1715,11,0,0 +2013,4,6,6,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1255,0,0,2145,-29,0,0 +2013,9,3,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1505,-4,0,1701,4,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,842,1,0,1256,-17,0,0 +2013,5,17,5,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1309,-6,0,1427,-13,0,0 +2013,4,20,6,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-1,0,2213,-17,0,0 +2013,10,25,5,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1945,15,1,2059,-11,0,0 +2013,6,16,7,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-10,0,2027,-24,0,0 +2013,5,24,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2135,35,1,2245,35,1,0 +2013,5,17,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2210,-7,0,15,-8,0,0 +2013,8,2,5,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1455,30,1,1800,20,1,0 +2013,9,7,6,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,855,-6,0,1110,-17,0,0 +2013,7,23,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1020,15,1,1203,2,0,0 +2013,9,21,6,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1050,17,1,1215,7,0,0 +2013,7,15,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1140,-1,0,1805,-2,0,0 +2013,7,12,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1137,-5,0,1331,-29,0,0 +2013,6,10,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,72,1,2111,72,1,0 +2013,5,16,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,45,1,1100,55,1,0 +2013,8,28,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-9,0,1858,-9,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,-2,0,1320,-3,0,0 +2013,7,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-2,0,853,-10,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-4,0,801,-12,0,0 +2013,8,6,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,87,1,1811,80,1,0 +2013,5,4,6,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-8,0,1612,-23,0,0 +2013,8,17,6,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-5,0,2152,-45,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2242,-1,0,452,-15,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1655,2,0,1800,0,0,0 +2013,10,18,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2119,-6,0,2229,-16,0,0 +2013,4,3,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,705,-9,0,850,-10,0,0 +2013,10,10,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-4,0,1450,-29,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1130,-3,0,1255,-11,0,0 +2013,8,2,5,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1753,176,1,1900,159,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,13,0,1158,-10,0,0 +2013,9,12,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,20,1,1934,26,1,0 +2013,8,6,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1300,51,1,2104,38,1,0 +2013,10,15,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1445,-10,0,1721,-12,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,-4,0,2351,-8,0,0 +2013,8,22,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,1,0,1835,-3,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1030,-6,0,1359,-17,0,0 +2013,9,6,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,-3,0,1045,1,0,0 +2013,8,10,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-7,0,1325,-10,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2155,-1,0,2300,-19,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,935,9,0,1035,4,0,0 +2013,6,13,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,847,-3,0,1025,15,1,0 +2013,8,19,1,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,825,6,0,1104,-1,0,0 +2013,10,16,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1200,-1,0,1300,-11,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1607,4,0,2013,-22,0,0 +2013,9,17,2,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,-2,0,1920,-7,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1240,-1,0,1457,-20,0,0 +2013,8,5,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-1,0,641,3,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2220,25,1,2335,24,1,0 +2013,9,16,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,-5,0,1401,-20,0,0 +2013,6,7,5,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1818,4,0,1959,-1,0,0 +2013,7,17,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1325,-3,0,1430,-3,0,0 +2013,7,25,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-9,0,1240,-6,0,0 +2013,4,30,2,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-1,0,740,-19,0,0 +2013,10,18,5,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1630,35,1,1730,32,1,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-1,0,1055,-2,0,0 +2013,8,24,6,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1714,71,1,1810,65,1,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-4,0,1520,-1,0,0 +2013,5,10,5,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,128,1,1805,160,1,0 +2013,9,5,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1645,0,0,1750,-3,0,0 +2013,5,30,4,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,715,0,,1500,0,1,1 +2013,8,12,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-12,0,1458,-2,0,0 +2013,9,19,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1317,1,0,1614,0,0,0 +2013,4,1,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1013,-1,0,1252,-6,0,0 +2013,4,22,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1005,-10,0,1120,-7,0,0 +2013,9,27,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,700,-3,0,1520,-24,0,0 +2013,7,19,5,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1449,2,0,1636,-1,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,55,1,2347,34,1,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,655,-4,0,925,-9,0,0 +2013,9,29,7,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,832,-4,0,1110,-29,0,0 +2013,8,14,3,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1420,-2,0,1515,-1,0,0 +2013,9,6,5,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1340,15,1,0 +2013,8,22,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,1345,4,0,2021,7,0,0 +2013,8,3,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,0,,751,0,1,1 +2013,9,25,3,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2120,0,0,516,-12,0,0 +2013,10,7,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,929,5,0,0 +2013,6,3,1,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,96,1,2021,75,1,0 +2013,7,30,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,650,5,0,705,7,0,0 +2013,5,2,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,908,-12,0,1129,-25,0,0 +2013,4,1,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-6,0,925,-9,0,0 +2013,5,17,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,725,-4,0,1022,-11,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-5,0,1801,-7,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1740,-5,0,2031,5,0,0 +2013,6,12,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,-7,0,2152,-9,0,0 +2013,8,21,3,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-8,0,619,-11,0,0 +2013,6,28,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-1,0,915,10,0,0 +2013,8,28,3,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,820,-8,0,1100,-3,0,0 +2013,4,4,4,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1826,47,1,2048,38,1,0 +2013,7,31,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-6,0,1050,-11,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,13,0,1449,7,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,-4,0,1207,-17,0,0 +2013,8,30,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,56,1,1433,58,1,0 +2013,10,1,2,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1000,3,0,1145,-1,0,0 +2013,6,2,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,825,-9,0,1104,-7,0,0 +2013,6,24,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1359,16,1,1724,20,1,0 +2013,8,18,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,1,0,2130,6,0,0 +2013,7,22,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,0,0,730,-11,0,0 +2013,8,28,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1100,-25,0,0 +2013,5,24,5,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1955,-2,0,2110,28,1,0 +2013,10,13,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1655,40,1,1755,36,1,0 +2013,8,7,3,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1635,0,0,1938,19,1,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1410,6,0,1605,-7,0,0 +2013,8,4,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1234,4,0,1756,-18,0,0 +2013,4,22,1,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1930,183,1,2230,195,1,0 +2013,8,11,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,0,0,2046,-2,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-2,0,1632,-7,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1955,1,0,2330,1,0,0 +2013,6,1,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1815,-6,0,2052,-26,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1215,300,1,1320,300,1,0 +2013,7,19,5,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-9,0,1237,-17,0,0 +2013,6,2,7,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,17,1,2056,62,1,0 +2013,10,4,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2003,0,,2226,0,1,1 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1515,15,1,1850,4,0,0 +2013,9,17,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2005,-2,0,2203,-9,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,835,9,0,1310,-16,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,5,0,2148,-5,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,9,0,1806,20,1,0 +2013,9,24,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1600,-4,0,2010,-17,0,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1517,19,1,1639,9,0,0 +2013,8,4,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-4,0,1225,1,0,0 +2013,5,24,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1914,7,0,2100,9,0,0 +2013,6,13,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1250,-5,0,1625,-16,0,0 +2013,10,31,4,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-8,0,911,-20,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1252,1,0,1744,-10,0,0 +2013,7,16,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-7,0,1415,-1,0,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1220,8,0,1425,2,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-4,0,1307,-5,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,-4,0,1443,-6,0,0 +2013,5,13,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,838,0,0,1400,-11,0,0 +2013,5,5,7,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1642,-3,0,2054,-20,0,0 +2013,6,11,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1307,-4,0,1459,2,0,0 +2013,9,13,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,77,1,1835,66,1,0 +2013,6,21,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,0,0,752,-6,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2219,-3,0,11,1,0,0 +2013,7,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,707,-7,0,920,-15,0,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,12,0,2012,18,1,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,947,4,0,1743,-5,0,0 +2013,10,26,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,900,-5,0,1735,-35,0,0 +2013,9,2,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1956,-4,0,2301,-12,0,0 +2013,10,28,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1248,-16,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,820,0,0,945,-3,0,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1935,5,0,2343,15,1,0 +2013,10,29,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,18,1,1210,8,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,844,-1,0,1026,-26,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-3,0,1433,15,1,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1615,44,1,1935,27,1,0 +2013,8,22,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,224,1,1920,210,1,0 +2013,5,21,2,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,0,,1940,0,1,1 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,17,1,2000,10,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,600,-3,0,930,-5,0,0 +2013,4,8,1,EV,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,831,-4,0,1102,-9,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,717,-4,0,1159,-25,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1803,2,0,2106,-4,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1210,1,0,1315,5,0,0 +2013,9,3,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,915,4,0,1230,-14,0,0 +2013,5,26,7,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,948,-2,0,1230,-10,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,710,-6,0,850,-20,0,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1645,8,0,1850,-8,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1805,89,1,1905,84,1,0 +2013,7,12,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1429,35,1,1714,28,1,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,835,-5,0,1105,-17,0,0 +2013,4,2,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,2,0,650,6,0,0 +2013,10,20,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1403,0,0,1700,8,0,0 +2013,4,3,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1453,9,0,1726,5,0,0 +2013,7,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,834,-10,0,933,-19,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1855,7,0,1950,-1,0,0 +2013,8,4,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-8,0,1553,-4,0,0 +2013,6,7,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1936,-11,0,2125,-29,0,0 +2013,10,5,6,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,-8,0,1908,-16,0,0 +2013,9,27,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,0,0,1650,-14,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,94,1,2330,84,1,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,3,0,2250,-6,0,0 +2013,5,17,5,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,-11,0,1117,-15,0,0 +2013,9,2,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,1,0,1530,3,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,19,1,2303,55,1,0 +2013,10,14,1,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1155,75,1,1619,87,1,0 +2013,4,13,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1935,-5,0,2050,-11,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-6,0,1745,-16,0,0 +2013,9,1,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1700,-4,0,1819,4,0,0 +2013,10,28,1,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1411,-7,0,0 +2013,5,8,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,-7,0,910,-18,0,0 +2013,4,1,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1259,-12,0,1720,-31,0,0 +2013,8,18,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1115,-3,0,1404,-14,0,0 +2013,10,25,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1320,-4,0,1440,-8,0,0 +2013,9,21,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1000,-4,0,1200,-4,0,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,31,1,1850,21,1,0 +2013,5,12,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,700,-1,0,720,-11,0,0 +2013,9,1,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1530,0,0,1540,-13,0,0 +2013,7,17,3,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1635,-3,0,1820,-23,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1358,-2,0,1704,-23,0,0 +2013,5,27,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,-6,0,2325,-6,0,0 +2013,4,7,7,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-2,0,2050,-6,0,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1300,5,0,1815,3,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,832,-6,0,1105,-13,0,0 +2013,4,2,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-4,0,1930,-5,0,0 +2013,10,16,3,EV,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,12,0,1526,24,1,0 +2013,4,24,3,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1930,-3,0,2230,21,1,0 +2013,9,27,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,815,-6,0,852,-5,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1020,8,0,1043,-1,0,0 +2013,9,8,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1826,-4,0,1925,-12,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-7,0,1125,-12,0,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-8,0,940,-10,0,0 +2013,6,16,7,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1210,-5,0,1318,-8,0,0 +2013,8,4,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,1,0,2115,4,0,0 +2013,4,6,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1643,-6,0,1906,-8,0,0 +2013,6,14,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1650,-1,0,1810,14,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,805,6,0,1125,3,0,0 +2013,9,20,5,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1359,11,0,1511,4,0,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2249,4,0,643,-8,0,0 +2013,10,20,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-4,0,1135,-11,0,0 +2013,4,12,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,950,-16,0,0 +2013,4,8,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1915,-4,0,2100,-9,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1045,16,1,1330,20,1,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-4,0,1021,4,0,0 +2013,9,1,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,8,0,2215,-5,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-4,0,2345,6,0,0 +2013,8,29,4,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1732,23,1,2001,36,1,0 +2013,10,25,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1513,-4,0,1631,-7,0,0 +2013,5,15,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-3,0,1710,-3,0,0 +2013,4,5,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,5,0,2007,-12,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2036,-8,0,2157,-9,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1958,11,0,2200,0,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1035,-3,0,1201,-13,0,0 +2013,9,26,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,936,-5,0,1047,-4,0,0 +2013,8,16,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1105,31,1,1115,22,1,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,6,0,1900,-8,0,0 +2013,7,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1905,10,0,2020,25,1,0 +2013,7,22,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,111,1,1727,183,1,0 +2013,4,28,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-10,0,1015,-4,0,0 +2013,4,9,2,EV,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1115,-13,0,1258,-5,0,0 +2013,6,14,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1720,-4,0,1850,0,1,1 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,28,1,1245,-3,0,0 +2013,10,9,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,630,-2,0,745,11,0,0 +2013,7,2,2,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1450,41,1,1620,29,1,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1208,-8,0,1328,-28,0,0 +2013,9,23,1,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,-1,0,1730,-6,0,0 +2013,9,28,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1601,-4,0,1712,-15,0,0 +2013,6,21,5,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,0,0,1305,-1,0,0 +2013,7,30,2,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-6,0,1746,-11,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,20,1,1745,20,1,0 +2013,7,17,3,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,700,-1,0,1045,-11,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1735,17,1,2000,19,1,0 +2013,9,25,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,634,-5,0,829,-6,0,0 +2013,5,2,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,650,-1,0,855,13,0,0 +2013,4,29,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,1,0,1920,3,0,0 +2013,7,31,3,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1001,-3,0,1130,-8,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1755,7,0,1900,0,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1620,-1,0,2330,12,0,0 +2013,8,4,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,-3,0,2243,-9,0,0 +2013,6,23,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1305,-2,0,1450,-11,0,0 +2013,10,27,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,830,-1,0,1000,-3,0,0 +2013,9,5,4,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,8,0,1614,-8,0,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,5,0,2058,1,0,0 +2013,6,24,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1239,1,0,1338,-4,0,0 +2013,4,7,7,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1548,-1,0,1903,19,1,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,-3,0,1410,-16,0,0 +2013,9,29,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-5,0,2000,9,0,0 +2013,7,29,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2259,131,1,133,130,1,0 +2013,6,30,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,700,0,0,856,3,0,0 +2013,7,29,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,7,0,712,31,1,0 +2013,6,25,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,630,44,1,808,39,1,0 +2013,5,17,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1655,-5,0,1915,-11,0,0 +2013,10,6,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1320,4,0,1535,-14,0,0 +2013,6,22,6,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,2,0,1028,-21,0,0 +2013,8,6,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,740,-6,0,0 +2013,5,2,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1735,-10,0,1849,22,1,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1454,-1,0,1608,8,0,0 +2013,4,1,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,815,-15,0,1515,45,1,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-2,0,1430,-11,0,0 +2013,5,27,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1625,-11,0,1904,-29,0,0 +2013,10,8,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1033,7,0,1154,22,1,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,1,0,1004,1,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,16,1,1900,10,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,730,-4,0,935,-10,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,1,0,925,-7,0,0 +2013,7,15,1,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1659,12,0,1853,-20,0,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,840,-4,0,1029,-8,0,0 +2013,8,30,5,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1005,-4,0,1455,-21,0,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1935,-5,0,2302,-6,0,0 +2013,7,21,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1720,-4,0,1840,-10,0,0 +2013,5,17,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,-4,0,1559,-17,0,0 +2013,6,24,1,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1426,-2,0,1646,-14,0,0 +2013,8,1,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-2,0,1055,16,1,0 +2013,6,1,6,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1641,18,1,1816,80,1,0 +2013,8,9,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1108,-2,0,1510,-13,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1859,0,,2329,0,1,1 +2013,5,24,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,-5,0,1349,-12,0,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,630,-4,0,926,-2,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1344,40,1,1515,15,1,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1620,17,1,1818,26,1,0 +2013,5,1,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1150,-5,0,1305,-18,0,0 +2013,4,16,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,8,0,2125,10,0,0 +2013,4,20,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1625,-2,0,1735,-8,0,0 +2013,5,5,7,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,3,0,2225,4,0,0 +2013,6,11,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-3,0,920,-10,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1344,0,0,1458,-13,0,0 +2013,6,19,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1230,3,0,1345,-6,0,0 +2013,8,17,6,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,600,0,0,900,5,0,0 +2013,10,31,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,0,,2135,0,1,1 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2040,56,1,2250,64,1,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,-13,0,2337,6,0,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,25,1,2125,25,1,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2045,-4,0,2238,-42,0,0 +2013,7,19,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1144,6,0,1342,-2,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,13,0,1615,16,1,0 +2013,5,23,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,700,-4,0,936,-22,0,0 +2013,5,29,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1225,0,0,1320,-4,0,0 +2013,8,25,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-6,0,1555,-11,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1639,76,1,2003,57,1,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,-2,0,939,2,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,4,0,2348,10,0,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,817,7,0,1359,-10,0,0 +2013,9,5,4,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,-6,0,1933,-26,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,0,0,1558,22,1,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1356,2,0,1719,2,0,0 +2013,5,1,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1210,-4,0,1529,-37,0,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,6,0,2335,-10,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-3,0,1432,-13,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1530,38,1,1650,32,1,0 +2013,9,6,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1515,21,1,1640,10,0,0 +2013,6,6,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1815,0,0,2016,15,1,0 +2013,4,4,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1904,-15,0,2359,-27,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1050,-2,0,1150,-16,0,0 +2013,8,28,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-11,0,1335,-21,0,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,7,0,1835,1,0,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,67,1,2340,62,1,0 +2013,6,20,4,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,-4,0,1350,-17,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,640,-5,0,1023,-18,0,0 +2013,9,5,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1031,-5,0,1226,-5,0,0 +2013,5,7,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1806,-10,0,0 +2013,4,15,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1429,4,0,1644,16,1,0 +2013,9,18,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-5,0,849,-6,0,0 +2013,10,7,1,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1821,-3,0,2309,-14,0,0 +2013,9,16,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,4,0,813,-17,0,0 +2013,10,31,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1425,-8,0,2245,-2,0,0 +2013,4,1,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,7,0,1145,-3,0,0 +2013,5,10,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,630,-8,0,820,-9,0,0 +2013,4,28,7,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,618,-5,0,935,-12,0,0 +2013,7,25,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,91,1,853,83,1,0 +2013,10,7,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1557,0,0,1747,-1,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1045,8,0,1828,2,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1614,-2,0,1655,-18,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,900,-5,0,1142,-15,0,0 +2013,5,27,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,15,1,1947,14,0,0 +2013,6,9,7,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-2,0,1105,-9,0,0 +2013,6,23,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,950,-8,0,1105,-24,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1359,-4,0,1530,-18,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2100,14,0,2309,8,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-2,0,2237,-5,0,0 +2013,7,14,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1649,-2,0,1818,-16,0,0 +2013,7,29,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,17,1,1911,3,0,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1311,-3,0,1625,13,0,0 +2013,9,25,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1905,-2,0,2130,-9,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,5,0,1609,19,1,0 +2013,4,27,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1020,-6,0,1310,-10,0,0 +2013,4,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,814,-4,0,911,-4,0,0 +2013,9,30,1,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1735,-3,0,1922,-24,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,915,164,1,1054,152,1,0 +2013,8,18,7,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,10,0,501,13,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1440,54,1,1545,49,1,0 +2013,6,14,5,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,1,0,1510,-11,0,0 +2013,9,28,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,33,0,0,608,-8,0,0 +2013,5,5,7,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1900,0,0,2005,-17,0,0 +2013,4,1,1,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1325,3,0,1620,-8,0,0 +2013,4,21,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,809,-1,0,1635,-15,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1950,-2,0,2115,-14,0,0 +2013,7,17,3,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1255,-3,0,1405,-8,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,923,1,0,1200,8,0,0 +2013,9,25,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-11,0,1559,-18,0,0 +2013,4,25,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1610,3,0,1725,42,1,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1941,-4,0,2152,-3,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2020,56,1,2235,43,1,0 +2013,5,5,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1518,38,1,1747,24,1,0 +2013,5,17,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,915,-4,0,1649,6,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,-1,0,1320,-8,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,940,4,0,1045,15,1,0 +2013,9,10,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-6,0,1605,-16,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,-3,0,103,0,0,0 +2013,4,6,6,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,720,16,1,905,8,0,0 +2013,5,20,1,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1221,28,1,2057,57,1,0 +2013,9,27,5,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1635,24,1,1820,41,1,0 +2013,6,22,6,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,9,0,2020,11,0,0 +2013,8,10,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,800,-18,0,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1005,19,1,1157,12,0,0 +2013,10,3,4,YV,14100,Philadelphia International,Philadelphia,PA,14524,Richmond International,Richmond,VA,939,-5,0,1040,-14,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,13,0,1330,-1,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2000,2,0,2100,-4,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,-3,0,1250,2,0,0 +2013,8,23,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1735,-7,0,1855,-5,0,0 +2013,7,16,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,61,1,2031,49,1,0 +2013,4,15,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-1,0,1130,6,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1309,4,0,1448,-4,0,0 +2013,10,7,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-7,0,641,-1,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-9,0,1134,-9,0,0 +2013,6,4,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1325,-5,0,1654,-3,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1520,18,1,1610,11,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,14,0,1925,11,0,0 +2013,5,11,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1640,-9,0,1850,-20,0,0 +2013,7,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,-1,0,755,2,0,0 +2013,5,22,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,-13,0,1215,-28,0,0 +2013,10,1,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-6,0,1453,-22,0,0 +2013,9,18,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1359,-8,0,1654,-36,0,0 +2013,6,6,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,1,0,1636,19,1,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2007,-5,0,2206,-17,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1345,6,0,1455,-6,0,0 +2013,8,11,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-4,0,810,-3,0,0 +2013,7,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1605,-3,0,1652,-6,0,0 +2013,9,11,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,747,-5,0,901,-14,0,0 +2013,7,8,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,5,0,2010,-5,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,-5,0,1235,-10,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,2005,15,1,4,15,1,0 +2013,10,13,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1540,55,1,1645,46,1,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1115,6,0,1234,8,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1200,-4,0,1332,-13,0,0 +2013,7,27,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,825,-5,0,1547,-29,0,0 +2013,6,18,2,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,64,1,1032,42,1,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,72,1,1245,69,1,0 +2013,5,4,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1225,-5,0,1453,-14,0,0 +2013,7,12,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,23,1,2050,11,0,0 +2013,9,6,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2345,-5,0,545,-15,0,0 +2013,6,20,4,OO,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,750,3,0,950,-2,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1500,37,1,1830,32,1,0 +2013,8,21,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,841,0,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2118,-8,0,2359,-22,0,0 +2013,6,21,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1600,0,0,1710,-10,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,-2,0,1905,-13,0,0 +2013,5,29,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-11,0,2146,-19,0,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1410,-2,0,1645,-22,0,0 +2013,6,8,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,-6,0,1810,-12,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1440,7,0,1800,6,0,0 +2013,4,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,6,0,2134,-3,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,34,1,1530,38,1,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,726,-1,0,901,-11,0,0 +2013,4,12,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-6,0,852,-24,0,0 +2013,4,19,5,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-2,0,1625,-26,0,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,745,-1,0,1215,-7,0,0 +2013,10,11,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2320,5,0,830,-13,0,0 +2013,5,17,5,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1859,86,1,2130,57,1,0 +2013,9,30,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1924,-3,0,2031,-7,0,0 +2013,10,15,2,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-2,0,850,14,0,0 +2013,6,9,7,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,0,0,900,-11,0,0 +2013,5,17,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1558,-3,0,1938,-7,0,0 +2013,10,12,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,1,0,1527,3,0,0 +2013,4,13,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2255,-3,0,2359,-11,0,0 +2013,4,30,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2040,-2,0,2215,-1,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1655,3,0,1755,-2,0,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,-1,0,1153,-18,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-3,0,1912,1,0,0 +2013,10,30,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1035,-7,0,1345,-13,0,0 +2013,6,12,3,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1705,-6,0,2004,-16,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,3,0,2012,-25,0,0 +2013,7,3,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,24,1,29,33,1,0 +2013,8,1,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,915,4,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,15,1,2205,2,0,0 +2013,8,18,7,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,855,-13,0,1037,-8,0,0 +2013,9,19,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-10,0,1015,-19,0,0 +2013,10,17,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-5,0,914,-9,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1154,1,0,1736,21,1,0 +2013,4,16,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1350,56,1,1500,51,1,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,4,0,1931,-4,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,-2,0,2349,-16,0,0 +2013,6,9,7,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,3,0,2330,-3,0,0 +2013,6,1,6,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,830,-8,0,940,-22,0,0 +2013,6,7,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-7,0,1730,-18,0,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,23,1,1920,18,1,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1635,-1,0,2019,-2,0,0 +2013,6,12,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1426,-3,0,1750,-14,0,0 +2013,6,23,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,850,-1,0,1205,-6,0,0 +2013,9,19,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1822,33,1,1942,38,1,0 +2013,10,24,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,705,-2,0,845,-6,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,705,-4,0,920,-7,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,953,2,0,1457,-7,0,0 +2013,10,18,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1610,16,1,2005,15,1,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1359,-3,0,1729,-21,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,950,-6,0,1159,-34,0,0 +2013,9,27,5,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1114,14,0,1659,10,0,0 +2013,6,15,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-6,0,1630,-16,0,0 +2013,10,8,2,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,0,0,610,-9,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1300,-9,0,2135,4,0,0 +2013,8,25,7,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,23,1,1235,8,0,0 +2013,7,28,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-4,0,1315,-2,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1912,105,1,2030,99,1,0 +2013,4,1,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,555,-4,0,731,-9,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1003,13,0,1538,-14,0,0 +2013,4,25,4,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,99,1,1956,122,1,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1740,12,0,1945,8,0,0 +2013,6,25,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,16,1,2035,6,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1725,66,1,1921,122,1,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,6,0,1034,-10,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,2,0,1620,-19,0,0 +2013,9,17,2,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,4,0,1400,-5,0,0 +2013,7,5,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,-5,0,1100,-26,0,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,-4,0,2327,-4,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,50,1,1820,34,1,0 +2013,8,22,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-4,0,1559,2,0,0 +2013,9,16,1,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,725,-3,0,754,-11,0,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,0,0,2235,-3,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2019,76,1,2228,46,1,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,3,0,2250,3,0,0 +2013,9,28,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,135,1,1725,144,1,0 +2013,7,23,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,815,-5,0,1000,-12,0,0 +2013,8,8,4,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,27,1,1556,41,1,0 +2013,4,9,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,7,0,816,-6,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,0,0,1756,5,0,0 +2013,8,13,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,910,7,0,1035,3,0,0 +2013,9,29,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2050,-16,0,2237,-17,0,0 +2013,9,18,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,830,1,0,1631,-5,0,0 +2013,4,26,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1436,-5,0,1623,-12,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,-4,0,1620,11,0,0 +2013,8,7,3,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-5,0,2101,-7,0,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1111,-5,0,1152,-6,0,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1306,-9,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,720,0,0,1240,-18,0,0 +2013,8,9,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,11,0,932,9,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,135,1,2302,120,1,0 +2013,9,11,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1830,1,0,1905,4,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,-1,0,1803,-9,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1130,-3,0,1252,-9,0,0 +2013,5,19,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1505,-10,0,2350,-20,0,0 +2013,10,3,4,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,700,-7,0,928,-4,0,0 +2013,4,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1405,-2,0,1630,5,0,0 +2013,9,11,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1015,-4,0,1129,-11,0,0 +2013,4,30,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,-3,0,1735,-5,0,0 +2013,6,3,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1246,-1,0,1430,-11,0,0 +2013,4,25,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1243,-4,0,1430,2,0,0 +2013,8,18,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,282,1,924,286,1,0 +2013,7,10,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,700,-3,0,750,8,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,0,0,2150,1,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1750,65,1,2055,56,1,0 +2013,7,10,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1220,17,1,1350,21,1,0 +2013,5,16,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,627,7,0,752,-13,0,0 +2013,7,8,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,-1,0,1848,-19,0,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,850,1,0,1255,-12,0,0 +2013,10,3,4,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,845,-6,0,1031,-15,0,0 +2013,9,13,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,-1,0,1659,2,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1549,1,0,1912,-14,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,-5,0,2245,-3,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1540,27,1,1830,12,0,0 +2013,9,29,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-1,0,1100,-13,0,0 +2013,7,24,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,933,0,0,1235,6,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1530,-4,0,1803,-4,0,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1155,-9,0,2026,-12,0,0 +2013,6,7,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1415,109,1,1524,113,1,0 +2013,6,16,7,9E,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-10,0,852,-22,0,0 +2013,9,22,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,827,-16,0,0 +2013,6,22,6,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1945,7,0,2210,-7,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1315,48,1,1530,55,1,0 +2013,10,11,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-11,0,2105,-14,0,0 +2013,5,17,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1544,-7,0,1832,-24,0,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,703,-3,0,933,0,0,0 +2013,7,1,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,0,,1630,0,1,1 +2013,8,13,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1535,-2,0,1700,5,0,0 +2013,10,13,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-5,0,920,0,0,0 +2013,9,12,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1530,5,0,1701,21,1,0 +2013,6,24,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1945,-2,0,2115,19,1,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1005,17,1,1130,0,0,0 +2013,10,23,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,840,0,0,950,-3,0,0 +2013,8,15,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,3,0,1632,-12,0,0 +2013,4,16,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2045,-2,0,2215,2,0,0 +2013,6,17,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,169,1,1710,171,1,0 +2013,10,23,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,13,0,1425,13,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,957,-5,0,1236,-21,0,0 +2013,5,15,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,1035,0,0,0 +2013,5,15,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,600,-1,0,715,-2,0,0 +2013,5,31,5,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,196,1,1700,181,1,0 +2013,7,5,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,12,0,1555,-11,0,0 +2013,8,29,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1400,-8,0,1515,-16,0,0 +2013,8,21,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-5,0,2150,-18,0,0 +2013,7,14,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-4,0,828,-6,0,0 +2013,7,27,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,1,0,1630,-10,0,0 +2013,10,24,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1942,30,1,2250,40,1,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1850,-9,0,2103,-7,0,0 +2013,8,29,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1334,-6,0,1727,-2,0,0 +2013,8,8,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,16,1,2150,12,0,0 +2013,9,16,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,25,1,1545,20,1,0 +2013,7,27,6,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2100,4,0,2225,8,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,2,0,1247,-13,0,0 +2013,7,13,6,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1854,12,0,2159,15,1,0 +2013,8,20,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,-1,0,1135,-15,0,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,2000,-3,0,2150,-30,0,0 +2013,7,2,2,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-4,0,1109,-5,0,0 +2013,9,9,1,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1200,-5,0,1319,-10,0,0 +2013,4,7,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,855,-4,0,1455,-26,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-1,0,1321,3,0,0 +2013,7,19,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1450,-11,0,1627,-30,0,0 +2013,8,30,5,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1401,-6,0,1615,-22,0,0 +2013,4,21,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,505,-2,0,923,-16,0,0 +2013,8,16,5,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-8,0,2154,0,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1345,10,0,1525,22,1,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-4,0,1715,-2,0,0 +2013,6,18,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,926,36,1,1119,16,1,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1925,35,1,2250,31,1,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2025,10,0,2310,3,0,0 +2013,5,26,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-5,0,1838,-7,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,16,1,30,-10,0,0 +2013,5,16,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,146,1,1155,139,1,0 +2013,4,15,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,-9,0,2300,-22,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,745,-3,0,850,-8,0,0 +2013,7,6,6,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,801,-2,0,1036,-23,0,0 +2013,10,24,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,101,1,954,90,1,0 +2013,9,9,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1115,30,1,1710,28,1,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2005,0,,2320,0,1,1 +2013,9,25,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2024,-10,0,2113,-14,0,0 +2013,7,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,0,0,1735,-2,0,0 +2013,7,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,930,0,0,1500,-16,0,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1553,-6,0,1709,57,1,0 +2013,5,20,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1755,10,0,1915,10,0,0 +2013,5,5,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1910,-1,0,2126,0,0,0 +2013,8,7,3,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1821,9,0,2017,11,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1230,-2,0,1246,-3,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,6,0,1545,-16,0,0 +2013,6,10,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,56,1,2024,48,1,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,10,0,838,0,0,0 +2013,10,21,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1515,0,0,1630,-5,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1549,-4,0,1833,-16,0,0 +2013,5,1,3,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,800,-23,0,0 +2013,4,3,3,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1305,10,0,0 +2013,4,1,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1515,39,1,1648,38,1,0 +2013,8,22,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-3,0,1517,-10,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1712,-6,0,2342,-2,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,-1,0,1312,-8,0,0 +2013,4,23,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,23,1,1900,17,1,0 +2013,8,5,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1728,-7,0,1900,-4,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,926,17,1,1120,26,1,0 +2013,4,15,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,932,29,1,1042,16,1,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,730,1,0,1115,-10,0,0 +2013,8,6,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2130,7,0,15,1,0,0 +2013,7,18,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,26,1,1956,30,1,0 +2013,5,29,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1055,-6,0,1120,-8,0,0 +2013,8,26,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1510,-5,0,1620,5,0,0 +2013,6,17,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,-3,0,1330,-2,0,0 +2013,8,30,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,611,-9,0,707,-7,0,0 +2013,4,14,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,950,-1,0,1105,-1,0,0 +2013,8,14,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1320,10,0,1645,3,0,0 +2013,5,12,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,740,-3,0,915,-1,0,0 +2013,10,14,1,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,28,1,1745,24,1,0 +2013,7,2,2,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,540,-9,0,700,-12,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1744,-3,0,1920,-14,0,0 +2013,6,14,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1205,-6,0,1503,-16,0,0 +2013,10,24,4,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,640,-1,0,810,-9,0,0 +2013,4,8,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1640,0,0,1858,15,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1700,4,0,1839,-7,0,0 +2013,8,3,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1325,16,1,1500,7,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1408,10,0,1434,2,0,0 +2013,9,11,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,732,-10,0,900,-10,0,0 +2013,8,29,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1625,62,1,1750,41,1,0 +2013,5,9,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1415,55,1,1555,33,1,0 +2013,5,12,7,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,950,-4,0,1244,-19,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,845,1,0,1027,-9,0,0 +2013,7,17,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,830,0,0,1014,1,0,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2100,30,1,2150,23,1,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1455,-4,0,1750,-26,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,730,-2,0,915,7,0,0 +2013,8,7,3,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1650,-2,0,2055,-25,0,0 +2013,5,14,2,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1329,-9,0,1526,-20,0,0 +2013,6,17,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,29,1,1251,32,1,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,-1,0,1025,-5,0,0 +2013,9,11,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1415,-1,0,1600,-2,0,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1658,0,,2016,0,1,1 +2013,10,30,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,803,223,1,932,225,1,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,835,-2,0,1012,-8,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1555,25,1,1710,21,1,0 +2013,7,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,0,0,750,2,0,0 +2013,5,24,5,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,1,0,839,-17,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2025,159,1,2115,154,1,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,655,-3,0,830,-18,0,0 +2013,5,3,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,2020,2,0,2110,0,0,0 +2013,7,24,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,740,34,1,0 +2013,7,27,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1905,12,0,2210,-6,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,12,0,1030,6,0,0 +2013,6,4,2,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-3,0,2015,-13,0,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1710,-9,0,2340,9,0,0 +2013,4,1,1,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1345,0,0,1635,-16,0,0 +2013,5,5,7,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1140,-2,0,2017,-22,0,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,905,-5,0,1029,-8,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,-3,0,1623,-8,0,0 +2013,7,1,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1553,155,1,1709,168,1,0 +2013,5,23,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1900,0,,2031,0,1,1 +2013,4,19,5,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,0,0,1355,-9,0,0 +2013,6,17,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2110,6,0,2225,-2,0,0 +2013,6,11,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,40,2,0,655,-11,0,0 +2013,5,23,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,635,-2,0,812,-13,0,0 +2013,5,15,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2304,0,0,30,-13,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1630,2,0,2010,-3,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,955,-2,0,1055,-3,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,635,5,0,740,-2,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1050,13,0,1715,5,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,26,1,1552,31,1,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2155,-2,0,2300,-3,0,0 +2013,6,25,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,13,0,2012,0,0,0 +2013,8,22,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,2,0,2005,-30,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,650,-2,0,1055,-12,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1405,167,1,1840,142,1,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,20,1,1441,2,0,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2135,-2,0,35,-11,0,0 +2013,9,5,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2005,-4,0,2135,5,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1310,88,1,1446,103,1,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,3,0,2320,1,0,0 +2013,9,11,3,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1048,-10,0,1220,-10,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,0,0,1130,-16,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1745,32,1,1902,11,0,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-3,0,1344,-15,0,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,635,-4,0,820,-9,0,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1115,2,0,1206,9,0,0 +2013,5,19,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1607,15,1,1759,88,1,0 +2013,8,6,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1423,4,0,1609,-13,0,0 +2013,7,8,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,104,1,2130,135,1,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1405,-3,0,1500,-7,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1459,12,0,1639,15,1,0 +2013,10,14,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-7,0,1115,-2,0,0 +2013,9,26,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,-8,0,1250,-18,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1530,0,0,1623,1,0,0 +2013,10,13,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-10,0,833,-40,0,0 +2013,8,21,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-8,0,2110,5,0,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,645,-9,0,809,-25,0,0 +2013,5,26,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,739,0,0,1035,5,0,0 +2013,10,9,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-6,0,1257,-17,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-3,0,840,1,0,0 +2013,4,24,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,752,58,1,948,53,1,0 +2013,5,20,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1130,-4,0,1345,-19,0,0 +2013,6,20,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,9,0,904,-4,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1045,-2,0,1410,-6,0,0 +2013,6,4,2,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1345,-7,0,2203,-18,0,0 +2013,5,5,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2058,-7,0,2202,-20,0,0 +2013,7,14,7,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1650,27,1,1749,22,1,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,0,0,1345,21,1,0 +2013,9,12,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,0,0,1114,4,0,0 +2013,10,17,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,17,1,1526,8,0,0 +2013,5,8,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,940,29,1,1236,46,1,0 +2013,4,9,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1055,-4,0,1155,-15,0,0 +2013,10,27,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1545,-5,0,1908,-9,0,0 +2013,6,22,6,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1700,-7,0,2141,-8,0,0 +2013,4,23,2,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,605,-7,0,750,5,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1550,2,0,1930,-19,0,0 +2013,10,1,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1205,-2,0,1345,-13,0,0 +2013,6,12,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-8,0,2003,-4,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,11,0,1247,13,0,0 +2013,10,27,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1730,36,1,1821,34,1,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1658,-6,0,2210,-7,0,0 +2013,10,21,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1610,-5,0,1735,-11,0,0 +2013,8,5,1,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-5,0,810,-4,0,0 +2013,8,28,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1035,-10,0,1050,-5,0,0 +2013,6,28,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-8,0,1155,-7,0,0 +2013,7,10,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,555,-3,0,725,-9,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1505,18,1,1845,17,1,0 +2013,4,19,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,1,0,835,-7,0,0 +2013,7,3,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,33,1,1543,32,1,0 +2013,8,28,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1155,-8,0,1315,-11,0,0 +2013,9,3,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,840,-7,0,1248,-23,0,0 +2013,9,22,7,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,-3,0,2255,-20,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2110,29,1,2246,10,0,0 +2013,10,16,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1745,2,0,1840,0,0,0 +2013,7,16,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-4,0,1254,-14,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1130,125,1,1252,132,1,0 +2013,6,28,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,755,-2,0,845,-6,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,25,1,1430,13,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,2,0,1811,-1,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1240,17,1,1732,-1,0,0 +2013,8,14,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1630,16,1,1750,5,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,1,0,2004,14,0,0 +2013,6,23,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,1,0,1645,-15,0,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,5,0,1045,3,0,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1415,3,0,1600,-9,0,0 +2013,10,8,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1011,-3,0,1217,-19,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1107,-3,0,1231,-13,0,0 +2013,9,4,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2025,-5,0,2140,-22,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1650,28,1,1800,23,1,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,-5,0,1912,-20,0,0 +2013,10,7,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1305,-4,0,1355,-6,0,0 +2013,5,22,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1125,5,0,1903,5,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,7,0,1255,4,0,0 +2013,5,14,2,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1733,6,0,2020,-20,0,0 +2013,5,17,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,1,0,2043,13,0,0 +2013,9,20,5,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,720,0,0,940,-19,0,0 +2013,8,13,2,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,80,1,1400,102,1,0 +2013,4,3,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,827,16,1,1001,5,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1720,-1,0,2000,-10,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,555,0,0,925,-16,0,0 +2013,6,21,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,740,2,0,859,1,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-3,0,1205,-13,0,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1050,-5,0,1824,-27,0,0 +2013,6,27,4,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1230,33,1,1450,31,1,0 +2013,4,14,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1553,0,0,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1930,6,0,2247,-5,0,0 +2013,9,6,5,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1805,-5,0,2055,-21,0,0 +2013,7,24,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1053,-3,0,1230,18,1,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1045,0,0,1923,6,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1145,-1,0,1255,-4,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2040,-1,0,2125,2,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,6,0,1516,-7,0,0 +2013,5,22,3,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1215,48,1,1333,40,1,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,909,6,0,1350,0,0,0 +2013,5,18,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,815,-2,0,925,-10,0,0 +2013,6,3,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,-4,0,1825,-23,0,0 +2013,7,30,2,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1859,9,0,2121,14,0,0 +2013,7,11,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1320,0,0,1435,3,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,705,-1,0,1026,-8,0,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1325,8,0,1445,5,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,-3,0,15,-9,0,0 +2013,7,21,7,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,154,1,2105,148,1,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1600,4,0,1730,3,0,0 +2013,10,29,2,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,740,-4,0,1035,-17,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,1,0,2310,2,0,0 +2013,7,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1652,-6,0,1757,-9,0,0 +2013,8,14,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1620,40,1,2020,27,1,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1350,4,0,1615,0,0,0 +2013,9,9,1,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1845,-9,0,2134,3,0,0 +2013,9,8,7,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-6,0,928,-12,0,0 +2013,4,17,3,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,23,1,2135,33,1,0 +2013,4,14,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1227,-7,0,1515,5,0,0 +2013,5,19,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1037,-3,0,1410,-3,0,0 +2013,6,27,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-6,0,848,-3,0,0 +2013,4,12,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,836,-4,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-4,0,940,-8,0,0 +2013,5,16,4,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1315,5,0,1600,2,0,0 +2013,9,15,7,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,755,-3,0,1554,-13,0,0 +2013,9,22,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,1,0,1117,-9,0,0 +2013,10,3,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-3,0,1546,-1,0,0 +2013,6,3,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,-3,0,1135,-19,0,0 +2013,5,15,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1805,-5,0,2045,-13,0,0 +2013,8,12,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2040,10,0,2245,1,0,0 +2013,4,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-3,0,959,-11,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-2,0,1251,-6,0,0 +2013,5,3,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,23,1,1800,20,1,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1910,7,0,2308,-14,0,0 +2013,4,10,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-2,0,1021,-5,0,0 +2013,10,27,7,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1210,-8,0,1415,-9,0,0 +2013,6,1,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,7,0,1239,7,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,0,,2335,0,1,1 +2013,7,5,5,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,720,-1,0,1444,-4,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,-4,0,1005,-14,0,0 +2013,8,14,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,24,1,1412,18,1,0 +2013,4,3,3,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,655,-4,0,935,18,1,0 +2013,4,15,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,0,0,1807,-8,0,0 +2013,6,1,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,1,0,1541,12,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1000,49,1,1306,27,1,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,32,1,1605,23,1,0 +2013,7,8,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,1,0,1850,-9,0,0 +2013,6,8,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1228,5,0,1347,1,0,0 +2013,7,7,7,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,69,1,2027,58,1,0 +2013,9,3,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1339,-27,0,0 +2013,7,15,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1015,-4,0,1025,-11,0,0 +2013,8,14,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-10,0,1333,-10,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1115,-6,0,1310,-9,0,0 +2013,9,30,1,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,-11,0,1921,-6,0,0 +2013,9,16,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-3,0,940,-16,0,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,-8,0,1819,-7,0,0 +2013,8,8,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,650,3,0,730,0,0,0 +2013,4,22,1,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-8,0,1318,-7,0,0 +2013,8,2,5,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1910,-9,0,2027,-7,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2115,-1,0,2255,-19,0,0 +2013,8,27,2,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1557,-16,0,2020,-27,0,0 +2013,8,19,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-4,0,1843,-16,0,0 +2013,4,5,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2028,13,0,2154,19,1,0 +2013,10,1,2,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-8,0,646,0,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2030,-3,0,10,-14,0,0 +2013,8,8,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1637,57,1,1810,46,1,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,630,-2,0,735,-1,0,0 +2013,5,26,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,2,0,1640,-2,0,0 +2013,8,15,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1201,-1,0,1314,-21,0,0 +2013,6,30,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1215,18,1,1525,43,1,0 +2013,6,16,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,30,-1,0,814,-16,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1505,7,0,1758,-1,0,0 +2013,8,9,5,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1122,17,1,0 +2013,4,19,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,-5,0,724,-23,0,0 +2013,7,22,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1230,-3,0,1558,15,1,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,604,61,1,941,43,1,0 +2013,10,13,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-3,0,659,0,0,0 +2013,5,9,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1652,-5,0,1955,5,0,0 +2013,4,1,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1010,-5,0,1131,2,0,0 +2013,4,11,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,-1,0,2029,9,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-1,0,1005,4,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,-4,0,1606,-1,0,0 +2013,10,22,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1450,0,,1613,0,1,1 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,855,3,0,1035,-13,0,0 +2013,4,5,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1152,-4,0,1240,-12,0,0 +2013,6,2,7,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1210,42,1,1455,28,1,0 +2013,9,6,5,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,620,-1,0,653,1,0,0 +2013,6,18,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1045,-3,0,1145,-8,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,-5,0,1816,-23,0,0 +2013,10,3,4,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1535,23,1,1805,13,0,0 +2013,6,5,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,610,-5,0,848,2,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,2051,31,1,2354,38,1,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,1,0,1255,-8,0,0 +2013,8,2,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1745,50,1,1926,122,1,0 +2013,7,2,2,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1000,-9,0,1225,-10,0,0 +2013,5,15,3,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,800,-3,0,1157,-3,0,0 +2013,10,19,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,830,-1,0,945,-3,0,0 +2013,5,23,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,905,-12,0,0 +2013,7,29,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,900,1,0,1210,-16,0,0 +2013,7,3,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,6,0,745,12,0,0 +2013,6,28,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-6,0,1323,9,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2039,101,1,2211,89,1,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1050,-5,0,1430,-18,0,0 +2013,4,12,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1144,43,1,1359,39,1,0 +2013,6,8,6,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1650,-1,0,1807,-15,0,0 +2013,10,1,2,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,832,-3,0,1000,-30,0,0 +2013,4,10,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,835,258,1,1024,249,1,0 +2013,6,11,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,-3,0,1520,5,0,0 +2013,6,28,5,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1735,43,1,2145,36,1,0 +2013,7,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,43,1,1615,37,1,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1800,9,0,2130,-21,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2015,-2,0,2229,-3,0,0 +2013,4,26,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,123,1,1931,124,1,0 +2013,7,18,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,916,-8,0,1013,-9,0,0 +2013,7,26,5,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,17,1,2155,0,0,0 +2013,10,16,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1714,35,1,2004,34,1,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1124,5,0,1457,-2,0,0 +2013,8,29,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1435,144,1,1450,128,1,0 +2013,9,6,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,96,1,1445,147,1,0 +2013,6,24,1,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-7,0,2145,-24,0,0 +2013,9,4,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-11,0,1650,-14,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1650,-3,0,1747,-17,0,0 +2013,9,29,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1520,5,0,1711,7,0,0 +2013,8,22,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1208,125,1,1525,137,1,0 +2013,4,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1503,22,1,1530,7,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1725,-7,0,1939,-25,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,3,0,1605,-3,0,0 +2013,10,14,1,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1054,13,0,1638,-15,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,28,1,1633,22,1,0 +2013,6,25,2,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1658,2,0,1915,5,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,0,0,1607,19,1,0 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1800,10,0,1913,-8,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,-2,0,1410,-3,0,0 +2013,8,15,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-7,0,1325,5,0,0 +2013,10,5,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,8,0,1620,6,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2008,-5,0,2125,-11,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1550,39,1,1705,33,1,0 +2013,4,30,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-2,0,843,-20,0,0 +2013,5,5,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-5,0,1225,-9,0,0 +2013,7,9,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,0,,1128,0,1,1 +2013,10,3,4,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1053,-7,0,1239,-15,0,0 +2013,10,14,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2146,-3,0,2245,3,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,0,0,1909,-13,0,0 +2013,10,29,2,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,725,-3,0,935,2,0,0 +2013,6,18,2,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,547,33,1,800,26,1,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,30,1,2055,18,1,0 +2013,5,25,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,800,-9,0,925,-14,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1745,8,0,2200,-16,0,0 +2013,6,18,2,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,0,0,2000,-32,0,0 +2013,5,11,6,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,645,-2,0,1250,4,0,0 +2013,6,29,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1019,6,0,0 +2013,4,8,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1730,1,0,2040,-8,0,0 +2013,9,15,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,845,-2,0,905,-8,0,0 +2013,7,28,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-1,0,854,-10,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1135,1,0,1700,4,0,0 +2013,4,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1940,7,0,2030,3,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-6,0,1407,-9,0,0 +2013,6,25,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,30,-4,0,810,-9,0,0 +2013,10,1,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1727,-3,0,2019,5,0,0 +2013,5,20,1,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1725,3,0,1840,11,0,0 +2013,9,20,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-6,0,1331,-17,0,0 +2013,4,11,4,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1635,70,1,2040,122,1,0 +2013,4,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,-3,0,943,-25,0,0 +2013,6,25,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,75,1,621,93,1,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,950,5,0,1745,6,0,0 +2013,10,22,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1820,1,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1358,6,0,1649,-16,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1900,26,1,2254,25,1,0 +2013,10,9,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1545,19,1,1705,14,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,1,0,1700,4,0,0 +2013,8,3,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-1,0,1942,-6,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2018,-4,0,2135,-14,0,0 +2013,6,7,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,-8,0,1658,-9,0,0 +2013,4,27,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,-4,0,1816,-4,0,0 +2013,9,27,5,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,827,-6,0,1011,-16,0,0 +2013,10,6,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1125,64,1,1324,62,1,0 +2013,4,12,5,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,650,18,1,905,5,0,0 +2013,9,4,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,7,0,1430,8,0,0 +2013,10,20,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1020,5,0,1324,-1,0,0 +2013,8,2,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1940,-7,0,2040,0,0,0 +2013,4,15,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,-5,0,1507,-12,0,0 +2013,10,14,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,940,9,0,1155,17,1,0 +2013,5,20,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1821,39,1,2025,71,1,0 +2013,6,18,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,25,1,2017,33,1,0 +2013,8,10,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,-2,0,1255,7,0,0 +2013,9,28,6,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,-1,0,722,-9,0,0 +2013,5,31,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,-8,0,1420,-16,0,0 +2013,7,16,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1908,-7,0,2229,-9,0,0 +2013,9,30,1,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,-7,0,2040,12,0,0 +2013,9,10,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,635,-5,0,1025,-2,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,615,0,0,815,-13,0,0 +2013,5,12,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1337,-2,0,1412,-3,0,0 +2013,10,31,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,1,0,1420,-20,0,0 +2013,8,16,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,0,0,1935,-10,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1521,-1,0,1807,-2,0,0 +2013,10,7,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1654,31,1,1934,9,0,0 +2013,6,26,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,92,1,1740,109,1,0 +2013,6,19,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,630,-4,0,930,-2,0,0 +2013,10,30,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1715,-2,0,1837,-9,0,0 +2013,8,15,4,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,0,0,1857,12,0,0 +2013,6,13,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,605,-3,0,1020,-7,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,815,7,0,930,2,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1055,-1,0,1220,-9,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1115,-2,0,1220,-5,0,0 +2013,10,23,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1335,2,0,1700,3,0,0 +2013,7,13,6,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1700,-2,0,1836,-3,0,0 +2013,7,19,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,40,1,1919,27,1,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,2,0,2055,5,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,955,-1,0,1046,-16,0,0 +2013,10,17,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1820,-3,0,1950,-12,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,-4,0,1209,-11,0,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,740,-1,0,1042,-4,0,0 +2013,7,7,7,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1847,12,0,2135,10,0,0 +2013,8,20,2,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,810,4,0,1000,-20,0,0 +2013,5,8,3,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-9,0,1747,-11,0,0 +2013,10,6,7,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,0,0,2335,6,0,0 +2013,10,16,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1605,-1,0,1753,-17,0,0 +2013,4,15,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-1,0,2022,-25,0,0 +2013,8,17,6,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1340,-9,0,1600,0,0,0 +2013,9,14,6,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,44,1,1900,32,1,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1210,-4,0,1449,19,1,0 +2013,6,17,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-1,0,1503,19,1,0 +2013,4,18,4,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-4,0,935,-10,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1700,0,0,1755,-7,0,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,725,-4,0,1045,-5,0,0 +2013,5,12,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1655,6,0,1750,25,1,0 +2013,8,16,5,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1055,-1,0,1235,8,0,0 +2013,4,10,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,802,-5,0,1636,-1,0,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,935,0,0,1227,-19,0,0 +2013,7,10,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-5,0,1906,-19,0,0 +2013,9,27,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,7,0,1830,-9,0,0 +2013,10,28,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1345,-3,0,1529,3,0,0 +2013,9,29,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,825,-2,0,928,-12,0,0 +2013,4,4,4,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,-2,0,2005,-5,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1850,0,0,2015,-2,0,0 +2013,6,17,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-1,0,940,-15,0,0 +2013,8,24,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,3,0,1514,23,1,0 +2013,8,19,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-4,0,1955,-29,0,0 +2013,8,17,6,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-5,0,1122,-13,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,7,0,1820,24,1,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,900,-2,0,1015,-13,0,0 +2013,8,26,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,615,1,0,740,5,0,0 +2013,8,30,5,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,-9,0,1425,-27,0,0 +2013,10,1,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-2,0,1019,-30,0,0 +2013,4,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,24,1,1320,27,1,0 +2013,7,26,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,545,16,1,909,10,0,0 +2013,4,7,7,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,711,-5,0,845,-9,0,0 +2013,8,19,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,-7,0,1520,-18,0,0 +2013,10,6,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1309,-5,0,1355,-14,0,0 +2013,6,18,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,800,-11,0,0 +2013,5,29,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,605,6,0,819,-4,0,0 +2013,6,25,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1825,0,,2005,0,1,1 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2050,12,0,2307,13,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,950,5,0,1228,-9,0,0 +2013,10,15,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,640,-4,0,910,-13,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1816,-23,0,0 +2013,7,7,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-1,0,1235,-31,0,0 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2205,-4,0,2258,11,0,0 +2013,8,28,3,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,755,-2,0,0 +2013,9,11,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,-9,0,945,10,0,0 +2013,6,26,3,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1031,89,1,1301,85,1,0 +2013,10,27,7,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1140,-2,0,1420,-17,0,0 +2013,7,18,4,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1930,-9,0,2137,-23,0,0 +2013,5,14,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,41,1,1240,37,1,0 +2013,8,25,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1030,-10,0,1121,-11,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-8,0,1252,-34,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,-3,0,1130,-10,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,719,-3,0,856,-18,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1105,-2,0,1435,-5,0,0 +2013,6,3,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1935,-5,0,2120,-16,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1520,91,1,2302,101,1,0 +2013,6,18,2,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,0,0,1331,2,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1955,-8,0,2255,-4,0,0 +2013,4,29,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,-3,0,1517,-15,0,0 +2013,7,3,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,89,1,1915,123,1,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1615,-1,0,1818,-20,0,0 +2013,5,5,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,0,0,55,-10,0,0 +2013,10,12,6,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1735,3,0,1953,9,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,945,7,0,1120,-16,0,0 +2013,9,9,1,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,945,-5,0,1125,-2,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,815,-3,0,935,-3,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1735,4,0,2215,-18,0,0 +2013,5,28,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-5,0,1835,-6,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1000,-2,0,1220,-11,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1757,-1,0,2004,-23,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1419,29,1,1625,31,1,0 +2013,8,28,3,9E,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1935,0,,2223,0,1,1 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1130,2,0,1240,0,0,0 +2013,10,16,3,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-7,0,1901,-4,0,0 +2013,4,18,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,600,-9,0,844,-9,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2155,29,1,5,45,1,0 +2013,10,16,3,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-5,0,1055,-26,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2051,6,0,2358,-11,0,0 +2013,7,19,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,552,-2,0,730,-10,0,0 +2013,9,17,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1600,-2,0,1852,-18,0,0 +2013,4,13,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,33,1,1734,23,1,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,1,0,2139,-12,0,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,9,0,1053,33,1,0 +2013,10,1,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1605,4,0,1830,10,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1935,1,0,2335,-17,0,0 +2013,5,13,1,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,-8,0,1736,-17,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,166,1,1816,177,1,0 +2013,8,11,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1310,-10,0,1432,-17,0,0 +2013,4,26,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-2,0,1730,7,0,0 +2013,10,29,2,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,10,0,2300,1,0,0 +2013,4,1,1,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1443,-7,0,1630,-12,0,0 +2013,6,15,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,13,0,1415,10,0,0 +2013,4,16,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,226,1,1630,0,1,1 +2013,5,24,5,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1850,-1,0,1935,-13,0,0 +2013,5,12,7,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-2,0,2025,-24,0,0 +2013,7,16,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,-6,0,2012,0,0,0 +2013,4,7,7,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-7,0,1216,-22,0,0 +2013,10,15,2,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1500,10,0,1825,0,0,0 +2013,9,4,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1620,5,0,2020,0,0,0 +2013,4,17,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-4,0,1814,12,0,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2030,7,0,2315,-1,0,0 +2013,8,28,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-2,0,1014,-7,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-8,0,1738,-19,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1328,69,1,1815,38,1,0 +2013,10,3,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1504,-7,0,1727,-29,0,0 +2013,4,1,1,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1940,-2,0,2322,-25,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1650,1,0,2105,-19,0,0 +2013,5,8,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1130,-4,0,0 +2013,4,29,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1735,84,1,2057,85,1,0 +2013,7,29,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,741,-20,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1815,4,0,1945,13,0,0 +2013,7,29,1,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1403,-8,0,1810,-23,0,0 +2013,9,4,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1230,-4,0,1445,-6,0,0 +2013,8,21,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,830,0,0,1014,-11,0,0 +2013,7,9,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-6,0,1116,-4,0,0 +2013,8,26,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,625,-1,0,725,5,0,0 +2013,6,16,7,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-3,0,1115,16,1,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1315,12,0,1900,3,0,0 +2013,7,13,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,15,1,2020,3,0,0 +2013,9,27,5,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,-11,0,2247,-21,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1105,-1,0,1210,-12,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,740,81,1,926,82,1,0 +2013,8,21,3,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,-3,0,1325,-5,0,0 +2013,5,16,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1715,1,0,1848,-12,0,0 +2013,7,6,6,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-8,0,1213,-5,0,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1045,-3,0,1824,-17,0,0 +2013,9,26,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1508,0,0,1648,-1,0,0 +2013,8,12,1,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,-9,0,2005,-7,0,0 +2013,5,3,5,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,0,0,1500,1,0,0 +2013,4,3,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1440,-11,0,1546,-18,0,0 +2013,7,24,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1416,8,0,1644,15,1,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,620,-1,0,755,-10,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-11,0,2237,1,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1005,-5,0,1038,0,0,0 +2013,4,12,5,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1312,15,1,1455,24,1,0 +2013,5,17,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,0,0,1705,6,0,0 +2013,5,12,7,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1755,87,1,2030,49,1,0 +2013,4,19,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-4,0,750,-9,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,950,-3,0,1109,3,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,32,1,930,3,0,0 +2013,6,27,4,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1350,-6,0,1644,-7,0,0 +2013,10,16,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1405,37,1,2000,58,1,0 +2013,6,2,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,910,6,0,0 +2013,7,21,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,30,1,2245,16,1,0 +2013,8,3,6,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1710,0,0,2005,12,0,0 +2013,8,30,5,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1746,-3,0,1912,-2,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,610,-8,0,756,-7,0,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-1,0,922,2,0,0 +2013,4,30,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,10,0,1120,2,0,0 +2013,8,22,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,-6,0,1900,-20,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,-5,0,1026,-15,0,0 +2013,8,6,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2303,9,0,2359,6,0,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,-7,0,1510,11,0,0 +2013,4,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,15,1,1740,8,0,0 +2013,8,30,5,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2055,-5,0,515,4,0,0 +2013,7,24,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1350,10,0,1504,13,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,17,1,2300,21,1,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,95,1,2251,72,1,0 +2013,5,19,7,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1305,9,0,1410,4,0,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,724,1,0,1003,8,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1825,7,0,2330,1,0,0 +2013,6,24,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1500,30,1,1510,24,1,0 +2013,4,11,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1711,-4,0,1910,-7,0,0 +2013,10,9,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1855,4,0,2225,-8,0,0 +2013,4,3,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-8,0,2135,2,0,0 +2013,10,12,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,1,0,1827,-16,0,0 +2013,7,21,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1456,0,0,1517,-7,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,5,0,1442,10,0,0 +2013,5,10,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1210,-4,0,1340,4,0,0 +2013,8,19,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1406,-14,0,1845,-34,0,0 +2013,6,17,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1710,73,1,2015,110,1,0 +2013,4,17,3,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,809,-5,0,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,855,-2,0,1000,7,0,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1240,-2,0,1410,-12,0,0 +2013,5,15,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-3,0,1112,3,0,0 +2013,10,7,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-14,0,1032,-28,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,650,5,0,820,32,1,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2214,-2,0,615,-10,0,0 +2013,10,14,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1500,-4,0,2256,-30,0,0 +2013,4,25,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-8,0,1620,-12,0,0 +2013,9,7,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1910,-2,0,2159,-7,0,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1748,-5,0,1914,-22,0,0 +2013,9,3,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,708,-20,0,0 +2013,8,31,6,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,-6,0,742,-7,0,0 +2013,4,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,-4,0,1733,-11,0,0 +2013,6,2,7,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1620,11,0,1827,-16,0,0 +2013,4,3,3,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1420,-6,0,1652,-21,0,0 +2013,8,20,2,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,0,0,2012,-18,0,0 +2013,8,1,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,0,,1445,0,1,1 +2013,9,5,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-8,0,835,-15,0,0 +2013,8,3,6,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,-4,0,2135,-1,0,0 +2013,7,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,920,0,0,1020,-8,0,0 +2013,9,13,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-7,0,1920,-1,0,0 +2013,4,22,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1124,-3,0,1514,20,1,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2145,8,0,2340,6,0,0 +2013,6,4,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2054,-3,0,2228,11,0,0 +2013,10,5,6,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,-6,0,1735,0,0,0 +2013,5,8,3,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2009,90,1,2148,90,1,0 +2013,8,24,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-7,0,1310,-24,0,0 +2013,5,21,2,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,918,-11,0,1210,-11,0,0 +2013,7,9,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1503,11,0,1659,43,1,0 +2013,6,24,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-5,0,936,-15,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,905,19,1,1420,40,1,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,16,1,5,-3,0,0 +2013,4,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2350,-9,0,611,-23,0,0 +2013,9,23,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1115,-6,0,1240,-17,0,0 +2013,4,5,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-8,0,1650,-31,0,0 +2013,9,1,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1635,-7,0,1742,-21,0,0 +2013,8,14,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1550,2,0,1724,-12,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1231,-2,0,1424,-3,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,-5,0,2247,-29,0,0 +2013,5,5,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2117,23,1,2349,8,0,0 +2013,9,22,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,700,-5,0,1447,-17,0,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,27,1,1230,22,1,0 +2013,7,11,4,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,625,-9,0,706,-18,0,0 +2013,6,15,6,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,0,0,850,-7,0,0 +2013,5,15,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-9,0,1355,-11,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2015,14,0,2145,-4,0,0 +2013,8,21,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,31,1,1255,6,0,0 +2013,7,18,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1503,1,0,0 +2013,8,14,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1950,-3,0,2130,-10,0,0 +2013,10,14,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,4,0,714,2,0,0 +2013,8,8,4,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,550,-1,0,800,-6,0,0 +2013,7,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,838,-4,0,1105,-9,0,0 +2013,4,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14570,Reno/Tahoe International,Reno,NV,905,0,0,955,-2,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1429,-4,0,1533,-9,0,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1005,-6,0,1320,-21,0,0 +2013,8,15,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1335,-11,0,1555,-21,0,0 +2013,7,22,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1910,37,1,2215,20,1,0 +2013,4,28,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1416,17,1,1557,18,1,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1514,-3,0,1635,-8,0,0 +2013,6,17,1,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1825,0,0,2145,-33,0,0 +2013,5,10,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1345,25,1,1605,33,1,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,830,9,0,1050,-3,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,-1,0,1055,2,0,0 +2013,8,31,6,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-4,0,901,-1,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1038,1,0,1305,1,0,0 +2013,6,14,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,60,1,2155,58,1,0 +2013,5,16,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1605,-5,0,1713,-15,0,0 +2013,4,13,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1429,-8,0,1739,21,1,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,5,0,1529,-6,0,0 +2013,5,2,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1640,1,0,1920,-2,0,0 +2013,6,22,6,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,735,-12,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1450,354,1,1810,357,1,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,-1,0,1026,12,0,0 +2013,8,8,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,-2,0,1309,-13,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2130,16,1,58,20,1,0 +2013,8,12,1,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-2,0,1218,-4,0,0 +2013,6,22,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2021,6,0,2142,43,1,0 +2013,4,26,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2345,-12,0,711,5,0,0 +2013,9,7,6,YV,14100,Philadelphia International,Philadelphia,PA,14524,Richmond International,Richmond,VA,943,-5,0,1044,-12,0,0 +2013,8,31,6,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,31,1,1116,-3,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1632,-4,0,1754,-17,0,0 +2013,7,21,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,835,-4,0,940,-18,0,0 +2013,9,22,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1912,-13,0,2019,-24,0,0 +2013,7,12,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1915,46,1,2125,45,1,0 +2013,8,18,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1212,6,0,1955,3,0,0 +2013,9,3,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,-7,0,2119,-8,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1443,-15,0,0 +2013,4,18,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-1,0,806,-12,0,0 +2013,8,14,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-6,0,1359,-16,0,0 +2013,4,24,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,914,-12,0,1130,-8,0,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1700,6,0,2020,-3,0,0 +2013,6,7,5,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1231,4,0,1349,5,0,0 +2013,7,27,6,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,9,0,2335,-3,0,0 +2013,4,21,7,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,6,0,1950,-7,0,0 +2013,10,6,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1705,59,1,1830,57,1,0 +2013,4,27,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1030,1,0,1307,-35,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1655,0,0,1800,-4,0,0 +2013,8,4,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1405,-13,0,1544,-25,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1615,0,0,1719,-19,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1259,30,1,1549,32,1,0 +2013,8,19,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1310,-3,0,1603,-22,0,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,800,197,1,930,202,1,0 +2013,5,30,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-8,0,2047,-16,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,14,0,1809,16,1,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1020,1,0,1210,-27,0,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,800,-4,0,959,-3,0,0 +2013,8,3,6,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,-6,0,840,-15,0,0 +2013,7,19,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1250,5,0,2108,-10,0,0 +2013,10,20,7,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1944,14,0,2111,2,0,0 +2013,8,22,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1659,0,,1921,0,1,1 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,640,-4,0,810,-12,0,0 +2013,10,9,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2110,5,0,2303,-7,0,0 +2013,8,4,7,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1120,-8,0,1400,-16,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,2,0,1110,-5,0,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,-4,0,1635,-13,0,0 +2013,8,10,6,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1855,17,1,2000,19,1,0 +2013,4,16,2,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1838,-7,0,2108,-21,0,0 +2013,8,17,6,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,-9,0,1905,-24,0,0 +2013,7,30,2,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2146,10,0,42,6,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,58,1,1227,45,1,0 +2013,4,5,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1500,-5,0,2040,-19,0,0 +2013,10,10,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1140,12,0,1311,0,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1430,14,0,1750,17,1,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2130,94,1,2240,75,1,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,0,0,2345,-4,0,0 +2013,8,7,3,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,-1,0,15,-19,0,0 +2013,8,1,4,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-4,0,1145,-11,0,0 +2013,8,30,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-9,0,2051,-7,0,0 +2013,4,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,722,6,0,1130,17,1,0 +2013,10,21,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1235,13,0,1345,12,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-4,0,1627,-15,0,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1020,20,1,1115,22,1,0 +2013,7,23,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2045,4,0,449,-4,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,0,0,1125,0,0,0 +2013,8,27,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1940,-9,0,2110,-11,0,0 +2013,5,6,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2031,-9,0,2209,-13,0,0 +2013,6,3,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,-3,0,1921,-18,0,0 +2013,6,12,3,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1305,109,1,1610,105,1,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1602,39,1,1732,54,1,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-4,0,1325,1,0,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1423,1,0,1650,-4,0,0 +2013,8,19,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,1117,-7,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1800,153,1,2105,150,1,0 +2013,7,28,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,-3,0,2000,5,0,0 +2013,9,26,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1850,23,1,1945,26,1,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,829,-6,0,959,-11,0,0 +2013,9,16,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,815,1,0,1000,7,0,0 +2013,6,27,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-5,0,1655,-12,0,0 +2013,7,22,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2020,27,1,2120,23,1,0 +2013,4,15,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-7,0,853,-16,0,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,625,0,0,940,-12,0,0 +2013,9,1,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-10,0,2010,8,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1915,3,0,2205,-1,0,0 +2013,5,9,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2315,-8,0,707,-6,0,0 +2013,8,10,6,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-6,0,1420,-15,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,930,-2,0,1203,-8,0,0 +2013,5,9,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1703,2,0,1803,12,0,0 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-5,0,1440,-14,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1135,-2,0,1230,0,0,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,835,25,1,1010,7,0,0 +2013,7,28,7,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,604,-9,0,749,-6,0,0 +2013,4,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1540,16,1,1634,16,1,0 +2013,4,13,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2206,-10,0,2325,-17,0,0 +2013,8,24,6,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1446,69,1,1642,41,1,0 +2013,6,26,3,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1510,-2,0,1900,5,0,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-4,0,2159,6,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1546,-4,0,1657,-16,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1410,2,0,1655,-4,0,0 +2013,6,8,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-5,0,1720,-10,0,0 +2013,9,6,5,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-1,0,905,-7,0,0 +2013,4,2,2,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,700,-2,0,920,-1,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1905,15,1,2010,2,0,0 +2013,6,22,6,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,1,0,930,-10,0,0 +2013,8,2,5,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,9,0,1040,5,0,0 +2013,6,18,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,1,0,1900,-1,0,0 +2013,7,23,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,7,0,620,-5,0,0 +2013,7,13,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1020,-5,0,1250,-22,0,0 +2013,9,8,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-5,0,1240,-4,0,0 +2013,4,7,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1021,-5,0,1305,-18,0,0 +2013,10,4,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2017,-4,0,2,-7,0,0 +2013,8,12,1,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,855,3,0,1110,22,1,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,4,0,1400,2,0,0 +2013,7,28,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1925,23,1,2136,5,0,0 +2013,5,27,1,9E,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1955,9,0,2253,-29,0,0 +2013,9,8,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,-5,0,1805,0,0,0 +2013,6,18,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1945,30,1,2105,24,1,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-6,0,832,-12,0,0 +2013,8,3,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1644,7,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,116,1,1600,103,1,0 +2013,4,20,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,1,0,1013,12,0,0 +2013,5,28,2,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-2,0,554,-1,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2155,19,1,2250,14,0,0 +2013,5,24,5,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1327,21,1,1545,10,0,0 +2013,10,13,7,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1200,-7,0,1345,-17,0,0 +2013,8,7,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,545,-2,0,645,-4,0,0 +2013,5,3,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,17,1,2047,-3,0,0 +2013,4,13,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1010,-2,0,1131,-5,0,0 +2013,4,21,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-7,0,622,-14,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1150,0,,1320,0,1,1 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1915,-8,0,2041,-16,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,8,0,2110,-9,0,0 +2013,4,30,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-6,0,2040,-12,0,0 +2013,9,24,2,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1859,0,0,2127,1,0,0 +2013,4,3,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1020,-2,0,1625,-5,0,0 +2013,6,6,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1756,1,0,1914,-3,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1255,2,0,1345,11,0,0 +2013,4,24,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1150,-10,0,1258,-4,0,0 +2013,10,4,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1024,-12,0,1413,0,0,0 +2013,5,10,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,601,-1,0,1001,-3,0,0 +2013,9,28,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,850,0,0,1345,-26,0,0 +2013,9,12,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1330,67,1,1445,67,1,0 +2013,8,25,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1012,-12,0,1303,-23,0,0 +2013,8,18,7,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,-6,0,600,15,1,0 +2013,4,20,6,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1021,-5,0,1145,-9,0,0 +2013,10,11,5,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,3,0,1115,-8,0,0 +2013,8,11,7,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-1,0,1430,-22,0,0 +2013,7,28,7,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,738,-1,0,1052,-5,0,0 +2013,6,30,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,11,0,2006,-2,0,0 +2013,8,28,3,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2140,-3,0,35,12,0,0 +2013,5,11,6,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-7,0,1633,-10,0,0 +2013,6,25,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,33,1,1645,30,1,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1042,1,0,1545,-18,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,-2,0,2142,-12,0,0 +2013,9,4,3,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,832,-6,0,1128,-12,0,0 +2013,10,1,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1111,-7,0,1210,-16,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,958,-1,0,1007,-14,0,0 +2013,5,28,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,640,-3,0,1434,-5,0,0 +2013,8,29,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1445,4,0,1811,0,0,0 +2013,8,8,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,720,40,1,750,37,1,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1420,0,0,1545,-6,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1453,148,1,1604,132,1,0 +2013,6,20,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1805,26,1,1850,23,1,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1330,8,0,1525,2,0,0 +2013,6,10,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1649,-3,0,1800,-6,0,0 +2013,10,27,7,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-5,0,922,5,0,0 +2013,8,14,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,-1,0,1033,13,0,0 +2013,8,22,4,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-7,0,1803,2,0,0 +2013,9,30,1,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,-1,0,2139,-15,0,0 +2013,7,21,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-7,0,1435,-15,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1755,7,0,2038,-6,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2130,4,0,2240,21,1,0 +2013,6,17,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1355,5,0,1955,16,1,0 +2013,5,22,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1002,6,0,1134,1,0,0 +2013,5,11,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,942,-2,0,1301,-2,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1230,78,1,1419,88,1,0 +2013,10,24,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1659,-2,0,1959,-5,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,10,0,1955,15,1,0 +2013,10,21,1,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,-2,0,542,-17,0,0 +2013,10,12,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,846,-3,0,935,-5,0,0 +2013,8,23,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1941,-8,0,2140,-15,0,0 +2013,8,18,7,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,900,-5,0,1150,23,1,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-8,0,1155,-33,0,0 +2013,4,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,945,79,1,1114,107,1,0 +2013,7,8,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,28,1,22,-24,0,0 +2013,8,3,6,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1921,-3,0,2337,-17,0,0 +2013,9,26,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1409,-7,0,1505,-11,0,0 +2013,10,10,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,9,0,2012,12,0,0 +2013,5,8,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,610,-9,0,745,-38,0,0 +2013,9,10,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1753,-8,0,2059,-20,0,0 +2013,4,18,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-3,0,700,-14,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1715,-9,0,2340,-3,0,0 +2013,5,28,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-4,0,800,-10,0,0 +2013,7,27,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,715,-3,0,830,-10,0,0 +2013,6,21,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,603,-7,0,1000,-24,0,0 +2013,5,21,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,625,-7,0,806,-21,0,0 +2013,4,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1920,-1,0,2230,4,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,910,14,0,1048,-4,0,0 +2013,10,28,1,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,3,0,2124,-35,0,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1027,3,0,1221,-9,0,0 +2013,8,15,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1830,3,0,2030,-8,0,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1100,-6,0,1335,-28,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,711,-3,0,1038,-6,0,0 +2013,9,28,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-11,0,1010,-26,0,0 +2013,10,12,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-1,0,1208,6,0,0 +2013,4,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1205,10,0,1315,14,0,0 +2013,7,9,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1530,58,1,1640,64,1,0 +2013,6,6,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1153,-5,0,1234,10,0,0 +2013,9,3,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1352,0,0,1958,-7,0,0 +2013,5,9,4,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1545,-3,0,1643,-13,0,0 +2013,8,27,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,838,-6,0,939,-2,0,0 +2013,8,18,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1105,-6,0,1630,-4,0,0 +2013,6,9,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12953,LaGuardia,New York,NY,1610,-4,0,1811,-9,0,0 +2013,8,28,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,825,-18,0,0 +2013,10,10,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,29,1,2025,18,1,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,13,0,1400,7,0,0 +2013,10,14,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1235,23,1,1400,34,1,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,735,-3,0,901,-9,0,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,-5,0,1906,-39,0,0 +2013,8,19,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,2,0,952,8,0,0 +2013,6,8,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-4,0,1946,-25,0,0 +2013,4,29,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-2,0,2022,-2,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,-2,0,2129,-14,0,0 +2013,10,13,7,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-1,0,1208,-35,0,0 +2013,4,5,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-5,0,1811,-10,0,0 +2013,5,23,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,3,0,1746,-9,0,0 +2013,9,16,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-7,0,714,0,0,0 +2013,9,29,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1423,132,1,1610,108,1,0 +2013,6,8,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1505,-3,0,1553,0,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,941,-2,0,1201,-29,0,0 +2013,4,27,6,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-7,0,1154,-29,0,0 +2013,8,23,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,-4,0,2210,-13,0,0 +2013,4,10,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2001,203,1,2015,202,1,0 +2013,8,24,6,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,703,-10,0,850,-3,0,0 +2013,4,14,7,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2100,106,1,520,80,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2145,16,1,2342,0,0,0 +2013,5,1,3,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,69,1,1425,56,1,0 +2013,8,9,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2315,1,0,512,-15,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1954,-3,0,2112,-13,0,0 +2013,8,24,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1650,-2,0,1749,-7,0,0 +2013,7,13,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1015,0,0,1545,-7,0,0 +2013,9,20,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,12,0,1850,15,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1645,-4,0,1813,-9,0,0 +2013,10,9,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1530,32,1,1655,29,1,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1515,53,1,1839,48,1,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,44,1,1955,26,1,0 +2013,9,13,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1630,0,0,2235,1,0,0 +2013,9,18,3,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,700,-1,0,730,-7,0,0 +2013,7,15,1,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1100,9,0,1415,-21,0,0 +2013,8,4,7,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,7,0,1955,2,0,0 +2013,7,9,2,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,-4,0,1140,-15,0,0 +2013,9,10,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-3,0,816,-10,0,0 +2013,7,15,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,12,0,1329,3,0,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2008,-5,0,2257,-14,0,0 +2013,8,23,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,630,-3,0,1501,-5,0,0 +2013,8,7,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2343,12,0,725,2,0,0 +2013,10,29,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,951,-3,0,1335,12,0,0 +2013,8,27,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-3,0,1137,-19,0,0 +2013,9,1,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1530,-6,0,1827,-3,0,0 +2013,6,10,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1140,-3,0,1455,-16,0,0 +2013,8,4,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,145,1,1205,149,1,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1200,0,0,1330,6,0,0 +2013,5,27,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2155,9,0,2245,10,0,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,17,1,1302,2,0,0 +2013,4,22,1,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1711,48,1,1835,47,1,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1242,34,1,1414,30,1,0 +2013,9,5,4,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1925,-5,0,2032,-17,0,0 +2013,8,27,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-6,0,701,-14,0,0 +2013,7,9,2,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,730,6,0,1020,-2,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1810,47,1,2042,34,1,0 +2013,5,18,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,735,-6,0,1010,-16,0,0 +2013,5,2,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,-10,0,1259,-27,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-1,0,1222,-9,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,710,18,1,815,15,1,0 +2013,4,25,4,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,1,0,555,-6,0,0 +2013,7,7,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1120,117,1,2000,152,1,0 +2013,6,11,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-5,0,1045,-17,0,0 +2013,5,13,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1752,0,0,2020,-16,0,0 +2013,6,21,5,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-2,0,1510,-10,0,0 +2013,10,7,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,-4,0,1232,3,0,0 +2013,6,8,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-10,0,940,-13,0,0 +2013,8,28,3,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,802,-2,0,1008,-18,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,0,,1735,0,1,1 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1927,31,1,2057,11,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1905,14,0,2135,-32,0,0 +2013,8,18,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1714,-6,0,1821,-17,0,0 +2013,10,7,1,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,1,0,1025,-10,0,0 +2013,6,10,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1430,88,1,1555,81,1,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,17,1,2035,8,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,7,0,1354,3,0,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,14,0,1240,19,1,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1300,-5,0,1410,-11,0,0 +2013,6,11,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,1,0,2040,-7,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1735,7,0,1859,9,0,0 +2013,8,27,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-2,0,1439,22,1,0 +2013,8,1,4,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1725,17,1,1730,11,0,0 +2013,9,2,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1955,0,0,2135,-8,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2110,15,1,2230,5,0,0 +2013,5,15,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1045,0,0,1225,0,0,0 +2013,4,25,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,-7,0,32,-22,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,0,0,1610,0,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1825,26,1,2057,24,1,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1327,-7,0,1600,-9,0,0 +2013,4,23,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,6,0,1735,-5,0,0 +2013,5,28,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,640,1,0,836,6,0,0 +2013,5,29,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,751,-1,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,945,-4,0,1121,-8,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2320,-3,0,610,-2,0,0 +2013,7,21,7,YV,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,0,0,1908,-1,0,0 +2013,6,21,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,4,0,1800,-2,0,0 +2013,7,14,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-10,0,2118,-8,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,-1,0,1420,-6,0,0 +2013,6,24,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,2047,133,1,2302,133,1,0 +2013,7,5,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-8,0,1405,-8,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,-4,0,2028,-6,0,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,725,-5,0,845,-5,0,0 +2013,9,27,5,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,1,0,709,-7,0,0 +2013,10,7,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,-4,0,2040,-15,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1420,-2,0,1525,-5,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1620,25,1,2155,6,0,0 +2013,4,6,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-5,0,1105,-27,0,0 +2013,4,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-1,0,1720,-11,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,959,-6,0,1306,-18,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1557,-4,0,1727,-29,0,0 +2013,5,31,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1705,33,1,1927,22,1,0 +2013,10,14,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-9,0,1230,-33,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2130,15,1,2255,11,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1203,52,1,1438,44,1,0 +2013,8,13,2,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,603,8,0,950,-8,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1255,-5,0,1600,-15,0,0 +2013,6,17,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,950,1,0,1105,0,0,0 +2013,9,1,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-2,0,1200,-12,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1945,32,1,2115,30,1,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,34,1,1920,21,1,0 +2013,9,6,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2010,-4,0,2120,-6,0,0 +2013,5,15,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,600,-11,0,800,-10,0,0 +2013,10,21,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-2,0,1010,-22,0,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,520,-1,0,845,-12,0,0 +2013,10,24,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2020,2,0,2120,0,0,0 +2013,9,25,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1655,-3,0,1825,-13,0,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1928,187,1,2131,191,1,0 +2013,9,11,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1640,23,1,2005,28,1,0 +2013,8,28,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,800,-3,0,905,-3,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,26,1,2154,18,1,0 +2013,10,1,2,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,2017,-11,0,2115,-18,0,0 +2013,8,18,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,-8,0,1125,-24,0,0 +2013,5,3,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1657,20,1,1825,8,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1425,119,1,1550,105,1,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1105,-2,0,1500,-9,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1610,-6,0,2200,-11,0,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1100,3,0,1145,1,0,0 +2013,5,29,3,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1655,7,0,1820,10,0,0 +2013,10,20,7,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1306,-7,0,1419,-7,0,0 +2013,4,21,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-8,0,810,-14,0,0 +2013,5,28,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-8,0,1922,9,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,3,0,1953,-3,0,0 +2013,6,12,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1737,3,0,2047,0,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1615,28,1,1755,19,1,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,850,-3,0,1015,-7,0,0 +2013,5,9,4,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,704,-7,0,904,-36,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,-3,0,1707,-19,0,0 +2013,10,13,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1130,24,1,1254,15,1,0 +2013,6,12,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,-5,0,1727,2,0,0 +2013,4,16,2,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1137,-7,0,1624,-25,0,0 +2013,8,4,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2211,-4,0,2330,-9,0,0 +2013,10,21,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,940,-4,0,1050,-11,0,0 +2013,4,25,4,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1056,-8,0,1300,-23,0,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,730,6,0,1115,9,0,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-6,0,1250,-17,0,0 +2013,9,1,7,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-13,0,1132,-19,0,0 +2013,6,26,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1718,100,1,1819,96,1,0 +2013,9,16,1,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1457,7,0,1812,7,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,25,1,2219,18,1,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-7,0,1133,-14,0,0 +2013,6,27,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1855,11,0,107,35,1,0 +2013,7,11,4,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1729,-6,0,1855,-11,0,0 +2013,8,26,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1630,68,1,1800,79,1,0 +2013,10,22,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1540,0,0,1715,-1,0,0 +2013,8,31,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,130,-7,0,800,-15,0,0 +2013,9,15,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1720,42,1,1845,35,1,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,940,3,0,1100,0,0,0 +2013,9,30,1,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,700,-1,0,825,-6,0,0 +2013,4,10,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1336,-10,0,0 +2013,9,13,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1425,47,1,1550,38,1,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,53,1,2310,49,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1405,8,0,1759,11,0,0 +2013,8,10,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,-3,0,930,-18,0,0 +2013,5,2,4,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,940,3,0,1030,-7,0,0 +2013,7,17,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,-6,0,1145,-11,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,810,11,0,1215,7,0,0 +2013,9,20,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,830,-19,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2005,28,1,2045,28,1,0 +2013,10,14,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1700,10,0,1800,9,0,0 +2013,10,13,7,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,4,0,1905,4,0,0 +2013,6,20,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1115,8,0,1259,1,0,0 +2013,5,6,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1434,-4,0,1631,-1,0,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,605,0,0,857,-12,0,0 +2013,8,9,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,810,10,0,0 +2013,4,20,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1510,-3,0,1610,2,0,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1200,3,0,1335,0,0,0 +2013,6,13,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,76,1,1646,96,1,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1730,-1,0,1908,-22,0,0 +2013,4,24,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,730,-5,0,1023,-18,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1123,-4,0,1143,5,0,0 +2013,7,19,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,-10,0,842,-11,0,0 +2013,7,11,4,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,625,-3,0,750,-16,0,0 +2013,10,11,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1035,1,0,1200,-7,0,0 +2013,7,4,4,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1021,-4,0,1350,3,0,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,161,1,1917,162,1,0 +2013,5,19,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,1,0,1445,-2,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1940,0,,2245,0,1,1 +2013,6,15,6,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,650,-2,0,935,-16,0,0 +2013,8,10,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1249,-4,0,1549,-29,0,0 +2013,4,7,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,0,0,1205,17,1,0 +2013,10,27,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1215,12,0,1400,15,1,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1545,21,1,1859,26,1,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1745,29,1,2200,4,0,0 +2013,10,3,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1516,-6,0,2324,-12,0,0 +2013,9,2,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,829,-5,0,938,-8,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,31,1,1335,33,1,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-2,0,1130,1,0,0 +2013,8,20,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-9,0,1226,-1,0,0 +2013,4,30,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1508,-7,0,1614,-13,0,0 +2013,9,13,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1742,31,1,2149,24,1,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1130,-4,0,1515,-28,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,844,1,0,1009,-13,0,0 +2013,4,5,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1405,0,,2213,0,1,1 +2013,6,8,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-1,0,1330,2,0,0 +2013,8,22,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,0,0,1015,-9,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1119,-7,0,1241,-7,0,0 +2013,8,7,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,820,101,1,1047,78,1,0 +2013,8,11,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,38,1,1400,36,1,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,805,0,0,855,-1,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2210,-5,0,2340,-20,0,0 +2013,7,3,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1255,22,1,1504,25,1,0 +2013,9,27,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,4,0,1949,4,0,0 +2013,6,11,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,725,-9,0,1020,-9,0,0 +2013,9,30,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1759,-3,0,2024,-19,0,0 +2013,5,11,6,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,823,-5,0,1032,-17,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1105,5,0,1640,-24,0,0 +2013,9,12,4,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1525,99,1,1630,175,1,0 +2013,4,18,4,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1720,34,1,1840,36,1,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-2,0,750,-7,0,0 +2013,7,31,3,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2100,15,1,15,11,0,0 +2013,5,22,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,547,55,1,1204,31,1,0 +2013,5,22,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1840,-5,0,1930,-1,0,0 +2013,9,13,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1758,-1,0,2354,-8,0,0 +2013,8,10,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,7,0,2250,19,1,0 +2013,6,6,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-4,0,550,-5,0,0 +2013,6,20,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,1307,15,1,0 +2013,4,15,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1410,-5,0,1655,12,0,0 +2013,5,4,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1042,-10,0,1211,-7,0,0 +2013,7,3,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1622,76,1,1756,93,1,0 +2013,10,31,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1145,-1,0,1430,-15,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,-4,0,1515,10,0,0 +2013,6,13,4,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,91,1,2000,94,1,0 +2013,6,28,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,710,-3,0,830,-17,0,0 +2013,8,14,3,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,-3,0,1845,-4,0,0 +2013,10,11,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-1,0,1132,-11,0,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,20,1,1835,23,1,0 +2013,8,4,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1850,50,1,1935,48,1,0 +2013,4,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1110,6,0,1327,-6,0,0 +2013,9,28,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,550,-2,0,702,-7,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,655,13,0,1012,4,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1625,-5,0,1903,-21,0,0 +2013,5,12,7,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1821,-4,0,2025,19,1,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,600,4,0,1030,9,0,0 +2013,4,3,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,22,1,1344,13,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,34,1,1715,39,1,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,5,0,1330,4,0,0 +2013,9,26,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1850,-1,0,2055,-26,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1820,28,1,2230,25,1,0 +2013,8,6,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1439,102,1,1644,102,1,0 +2013,5,19,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,830,1,0,1205,-20,0,0 +2013,6,11,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,650,-2,0,750,-10,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,625,11,0,1040,25,1,0 +2013,8,17,6,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1725,15,1,2235,6,0,0 +2013,6,3,1,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1300,-2,0,1840,-17,0,0 +2013,7,6,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,852,-10,0,941,-17,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1220,1,0,1345,13,0,0 +2013,10,25,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,-3,0,540,-2,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,745,-1,0,900,-14,0,0 +2013,10,28,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2147,-5,0,2257,-12,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,905,56,1,1640,68,1,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1150,-2,0,1255,-6,0,0 +2013,8,14,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,-3,0,1025,-2,0,0 +2013,4,2,2,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,-1,0,1425,-9,0,0 +2013,5,1,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,905,-5,0,1011,-2,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,7,0,1155,-17,0,0 +2013,8,5,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,615,-6,0,945,-20,0,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,19,1,1651,36,1,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,-2,0,2220,-33,0,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1735,3,0,2040,-5,0,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1555,40,1,1725,28,1,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1130,-8,0,1247,-12,0,0 +2013,5,29,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,113,1,1315,118,1,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1625,-1,0,1715,-9,0,0 +2013,6,29,6,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1510,27,1,1627,42,1,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,800,5,0,1551,-5,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1555,1,0,1729,-6,0,0 +2013,7,16,2,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-2,0,1945,0,0,0 +2013,5,8,3,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,850,-1,0,1117,4,0,0 +2013,10,1,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2005,-4,0,2319,-4,0,0 +2013,5,5,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,700,-5,0,959,-16,0,0 +2013,8,6,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1150,15,1,1425,-2,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,813,7,0,1421,-5,0,0 +2013,6,6,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,35,1,1459,80,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,820,-2,0,1041,-29,0,0 +2013,4,17,3,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,900,5,0,0 +2013,10,10,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-12,0,2055,-4,0,0 +2013,8,26,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1830,20,1,2228,29,1,0 +2013,10,25,5,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1729,40,1,2001,36,1,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1320,0,0,1725,-2,0,0 +2013,4,10,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1029,-23,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1345,0,0,1551,-6,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1201,0,0,1445,-27,0,0 +2013,4,27,6,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1950,-2,0,2340,-64,0,0 +2013,8,2,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-2,0,1210,1,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,28,1,1742,22,1,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1015,-2,0,1158,-10,0,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1015,-11,0,1348,2,0,0 +2013,9,11,3,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,855,-8,0,1108,-17,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,746,-1,0,901,-3,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,-5,0,1135,-1,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2303,-18,0,15,-27,0,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1746,-1,0,2023,-25,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1225,8,0,1430,2,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,73,1,2337,65,1,0 +2013,4,27,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-7,0,912,2,0,0 +2013,7,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,0,0,1740,0,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-1,0,1835,-1,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,930,-3,0,1300,3,0,0 +2013,10,6,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1542,9,0,1814,11,0,0 +2013,4,17,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,4,0,1905,-3,0,0 +2013,9,29,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1740,22,1,1900,26,1,0 +2013,6,16,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,-8,0,2130,-15,0,0 +2013,8,18,7,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,-4,0,1508,-24,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,-1,0,1000,-7,0,0 +2013,7,22,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1225,11,0,1335,14,0,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1016,3,0,1840,1,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-5,0,1349,-18,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1005,-1,0,1640,-5,0,0 +2013,6,30,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1946,-5,0,2116,4,0,0 +2013,8,14,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,721,-6,0,955,8,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1015,56,1,1355,47,1,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1105,15,1,1820,-1,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2040,35,1,2335,27,1,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1112,-4,0,1206,-19,0,0 +2013,8,3,6,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-5,0,904,-15,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1500,-2,0,1545,4,0,0 +2013,10,10,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-1,0,825,-1,0,0 +2013,9,16,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-5,0,920,-7,0,0 +2013,7,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-4,0,1357,-9,0,0 +2013,7,1,1,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-5,0,717,-7,0,0 +2013,7,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,840,0,0,1000,-6,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2032,52,1,2350,102,1,0 +2013,4,9,2,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1145,-4,0,1431,-21,0,0 +2013,6,10,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-8,0,1016,-23,0,0 +2013,9,26,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1400,-2,0,1525,-10,0,0 +2013,9,11,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1405,-5,0,1530,0,0,0 +2013,6,7,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,815,48,1,1111,30,1,0 +2013,7,10,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1555,9,0,1710,7,0,0 +2013,10,29,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1850,-5,0,2321,-35,0,0 +2013,6,29,6,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-7,0,717,-15,0,0 +2013,9,23,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,-5,0,1830,-23,0,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1705,105,1,2000,125,1,0 +2013,4,20,6,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1123,-15,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2000,2,0,2045,-16,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,752,-4,0,923,-11,0,0 +2013,5,10,5,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,5,0,1932,10,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,726,-4,0,913,-15,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1551,51,1,1659,62,1,0 +2013,5,22,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1015,5,0,1037,-6,0,0 +2013,6,11,2,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2151,-1,0,2309,15,1,0 +2013,8,21,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,705,-4,0,0 +2013,9,13,5,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1315,-10,0,1426,-11,0,0 +2013,7,24,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1144,-7,0,1305,-13,0,0 +2013,4,27,6,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1351,-5,0,1507,-18,0,0 +2013,9,20,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,19,1,1710,9,0,0 +2013,4,10,3,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,706,-2,0,915,-8,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2155,-2,0,2305,-4,0,0 +2013,7,19,5,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-4,0,917,7,0,0 +2013,6,21,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,545,-7,0,715,-21,0,0 +2013,5,12,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1354,-4,0,1545,-13,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,0,0,945,3,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,-5,0,1503,23,1,0 +2013,9,9,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1615,-10,0,1804,-1,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-1,0,948,-4,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-6,0,2009,-10,0,0 +2013,7,16,2,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,1100,1,0,1655,-14,0,0 +2013,6,12,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,841,-8,0,940,-3,0,0 +2013,6,1,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,242,1,1811,229,1,0 +2013,5,31,5,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,1400,-24,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1715,13,0,2020,39,1,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,34,1,2340,15,1,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1150,33,1,1505,27,1,0 +2013,4,25,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,845,41,1,945,39,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1630,-3,0,1808,-17,0,0 +2013,10,17,4,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1515,-9,0,655,-26,0,0 +2013,10,18,5,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1451,-5,0,1609,-17,0,0 +2013,9,28,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1830,16,1,1940,15,1,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,820,-2,0,1000,-2,0,0 +2013,5,27,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1825,-5,0,2005,-36,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,10,0,1554,-7,0,0 +2013,6,6,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,-9,0,2003,1,0,0 +2013,9,14,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-2,0,556,4,0,0 +2013,7,22,1,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1818,3,0,2015,31,1,0 +2013,5,25,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2030,-2,0,2217,-20,0,0 +2013,9,7,6,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-6,0,906,-46,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1235,5,0,1430,-2,0,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,929,50,1,1234,16,1,0 +2013,10,28,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,800,-4,0,855,6,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,1,0,1245,-2,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1725,-4,0,2111,-2,0,0 +2013,5,6,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-3,0,1348,2,0,0 +2013,10,13,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-4,0,1652,-6,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,840,-2,0,1049,-19,0,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1515,-9,0,2040,-22,0,0 +2013,9,15,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-1,0,1955,1,0,0 +2013,5,4,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1844,-5,0,2007,-4,0,0 +2013,7,25,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1141,3,0,1340,-11,0,0 +2013,7,31,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,724,-2,0,1020,-1,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1015,-2,0,1258,-14,0,0 +2013,9,27,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,-2,0,816,-23,0,0 +2013,10,25,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-5,0,1130,-15,0,0 +2013,5,29,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1934,-9,0,2200,-15,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,-6,0,1115,32,1,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,24,1,1220,13,0,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,805,4,0,850,10,0,0 +2013,7,8,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1850,0,,2014,0,1,1 +2013,8,17,6,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,900,-1,0,1305,-23,0,0 +2013,7,3,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-10,0,715,-20,0,0 +2013,5,30,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,740,-7,0,915,-14,0,0 +2013,9,24,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,22,1,1405,16,1,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,-3,0,945,-16,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,-5,0,2205,-13,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1220,25,1,1815,17,1,0 +2013,4,13,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-8,0,1352,-3,0,0 +2013,10,11,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,23,1,1640,17,1,0 +2013,9,30,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,4,0,930,0,0,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1729,85,1,1750,93,1,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-2,0,2245,11,0,0 +2013,10,10,4,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1700,0,0,1928,7,0,0 +2013,8,24,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,941,10,0,0 +2013,6,4,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1635,-4,0,1815,3,0,0 +2013,9,7,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1525,-6,0,1840,-49,0,0 +2013,7,25,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-5,0,2141,42,1,0 +2013,7,10,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-3,0,1216,-9,0,0 +2013,4,13,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2051,10,0,2124,13,0,0 +2013,4,1,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-6,0,1605,-11,0,0 +2013,6,14,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1955,81,1,2143,77,1,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1855,-3,0,2116,6,0,0 +2013,8,2,5,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1336,10,0,1444,9,0,0 +2013,6,10,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,2,0,815,9,0,0 +2013,6,7,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-1,0,1741,-7,0,0 +2013,8,20,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,751,-19,0,0 +2013,6,6,4,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,600,0,0,607,11,0,0 +2013,4,6,6,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1045,2,0,1515,39,1,0 +2013,9,20,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-9,0,1111,-13,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1315,20,1,1825,3,0,0 +2013,9,7,6,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1355,-1,0,1940,-3,0,0 +2013,6,30,7,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,925,-1,0,1040,-4,0,0 +2013,6,9,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-1,0,1623,-7,0,0 +2013,9,5,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,-8,0,515,11,0,0 +2013,9,29,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-3,0,2200,-13,0,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1210,-2,0,1330,-18,0,0 +2013,8,21,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-6,0,1343,-19,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,2,0,1955,9,0,0 +2013,10,23,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,64,1,1335,59,1,0 +2013,4,26,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1059,-3,0,1226,-7,0,0 +2013,6,17,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,-2,0,1206,0,0,0 +2013,10,18,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,5,0,1150,2,0,0 +2013,10,30,3,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1744,3,0,1946,11,0,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,-1,0,1805,-15,0,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-3,0,1217,-12,0,0 +2013,8,30,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1715,6,0,2235,34,1,0 +2013,7,1,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,0,0,940,-7,0,0 +2013,7,14,7,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1136,6,0,1338,-13,0,0 +2013,10,26,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,33,1,1510,50,1,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-4,0,1612,-7,0,0 +2013,7,28,7,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1855,108,1,1953,105,1,0 +2013,6,1,6,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,855,-2,0,1000,-3,0,0 +2013,6,24,1,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-3,0,1143,-7,0,0 +2013,7,23,2,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,-3,0,500,-1,0,0 +2013,7,14,7,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1030,-9,0,1248,-33,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1026,-2,0,1245,-3,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1150,1,0,1549,-10,0,0 +2013,10,8,2,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1609,-7,0,1818,19,1,0 +2013,8,5,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1412,-3,0,1658,-6,0,0 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,545,-2,0,907,10,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1415,-2,0,1630,-16,0,0 +2013,9,27,5,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,858,-5,0,1037,13,0,0 +2013,9,3,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,1253,-3,0,0 +2013,5,19,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,925,-1,0,1211,-40,0,0 +2013,10,29,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,625,15,1,940,13,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2123,1,0,2255,-14,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1950,-2,0,2136,-11,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,3,0,1605,1,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,2,0,910,3,0,0 +2013,9,27,5,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,730,37,1,1110,22,1,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,12,0,1426,10,0,0 +2013,4,16,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1130,5,0,1305,-1,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,1,0,1845,-10,0,0 +2013,5,14,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11042,Cleveland-Hopkins International,Cleveland,OH,600,-3,0,702,2,0,0 +2013,6,15,6,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,53,1,1455,57,1,0 +2013,6,9,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,158,1,1945,156,1,0 +2013,7,16,2,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,800,-6,0,1131,2,0,0 +2013,5,13,1,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,640,-1,0,849,0,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1011,-4,0,1406,-4,0,0 +2013,9,7,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,720,-4,0,1000,9,0,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1045,2,0,1150,-4,0,0 +2013,5,18,6,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-1,0,841,1,0,0 +2013,4,23,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1919,92,1,2100,82,1,0 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,30,-1,0,549,-10,0,0 +2013,10,16,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,-2,0,1125,-4,0,0 +2013,8,6,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,3,0,2259,13,0,0 +2013,4,30,2,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1315,-5,0,1505,-7,0,0 +2013,6,16,7,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-2,0,857,-1,0,0 +2013,5,7,2,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,545,146,1,901,133,1,0 +2013,8,17,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1735,-2,0,1845,-10,0,0 +2013,9,19,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1530,39,1,1540,71,1,0 +2013,9,11,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,0,0,1033,-9,0,0 +2013,5,17,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1119,254,1,1715,238,1,0 +2013,10,22,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-13,0,1325,-6,0,0 +2013,10,13,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,900,-5,0,1010,-15,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1530,-10,0,1805,-10,0,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-5,0,1412,-5,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-5,0,1240,-22,0,0 +2013,8,9,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1105,-6,0,1528,4,0,0 +2013,9,7,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1256,5,0,2135,-3,0,0 +2013,10,1,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1049,-9,0,1215,-29,0,0 +2013,7,5,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,620,-3,0,750,-15,0,0 +2013,8,6,2,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1000,-1,0,1050,15,1,0 +2013,5,19,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,79,1,1517,64,1,0 +2013,6,18,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,5,0,1010,-10,0,0 +2013,10,15,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1355,-1,0,1636,-4,0,0 +2013,5,22,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1057,-3,0,1411,-10,0,0 +2013,4,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1635,10,0,1815,4,0,0 +2013,5,23,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,13,0,1442,-3,0,0 +2013,7,20,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1125,-3,0,1428,19,1,0 +2013,8,5,1,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-9,0,1609,-14,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,25,1,1450,20,1,0 +2013,10,25,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,600,-3,0,725,-11,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1800,2,0,2320,6,0,0 +2013,9,11,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1928,-10,0,2110,-14,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2135,89,1,43,66,1,0 +2013,6,6,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1721,-3,0,1859,9,0,0 +2013,6,11,2,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-4,0,1040,-18,0,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1045,15,1,1145,16,1,0 +2013,5,1,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1120,-1,0,1514,-4,0,0 +2013,6,7,5,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2006,14,0,2246,0,0,0 +2013,9,30,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,44,-1,0,555,-31,0,0 +2013,5,11,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,830,-3,0,942,21,1,0 +2013,4,26,5,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,171,1,1127,150,1,0 +2013,8,20,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1030,32,1,1140,22,1,0 +2013,9,1,7,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2015,150,1,2245,136,1,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,0,0,1049,-4,0,0 +2013,5,11,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1130,-9,0,0 +2013,10,4,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1225,4,0,1325,0,0,0 +2013,5,7,2,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1136,-7,0,1234,-14,0,0 +2013,9,11,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,749,-6,0,919,-14,0,0 +2013,7,21,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1216,-9,0,1409,-13,0,0 +2013,6,6,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,50,1,2055,40,1,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,955,-3,0,1115,-11,0,0 +2013,8,6,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,52,1,1404,46,1,0 +2013,10,16,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1740,-4,0,2045,-17,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1610,13,0,1740,-1,0,0 +2013,7,24,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,0,0,745,-1,0,0 +2013,8,31,6,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1230,-4,0,1824,-10,0,0 +2013,10,8,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1820,-8,0,1955,-2,0,0 +2013,5,5,7,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,1955,-4,0,2235,1,0,0 +2013,4,24,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,3,0,1515,18,1,0 +2013,5,28,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-7,0,651,-15,0,0 +2013,4,2,2,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1005,-3,0,1325,13,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1453,37,1,1604,45,1,0 +2013,6,28,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1925,38,1,2048,35,1,0 +2013,8,8,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1730,111,1,2110,165,1,0 +2013,5,24,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,722,-1,0,853,1,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,76,1,1110,95,1,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1135,5,0,1355,-6,0,0 +2013,5,26,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1100,-5,0,1220,6,0,0 +2013,5,24,5,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1854,10,0,2125,8,0,0 +2013,8,11,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1910,-3,0,2142,-2,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,0,0,921,7,0,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2140,-2,0,2232,-3,0,0 +2013,6,9,7,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1205,-4,0,1320,-11,0,0 +2013,4,17,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1950,6,0,2139,-3,0,0 +2013,6,2,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1711,3,0,110,4,0,0 +2013,8,16,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,11,0,1715,-6,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,735,-1,0,1050,-20,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1510,0,0,1615,-9,0,0 +2013,5,19,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1120,-5,0,1440,-13,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1920,-3,0,2244,-4,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,815,-1,0,1125,-2,0,0 +2013,5,26,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-5,0,1620,-2,0,0 +2013,5,27,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,13,0,1235,12,0,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1920,5,0,2045,-1,0,0 +2013,6,27,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,40,1,1912,35,1,0 +2013,5,18,6,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1935,-23,0,2119,7,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1115,8,0,1311,10,0,0 +2013,10,4,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,2,0,829,-3,0,0 +2013,9,28,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1545,-7,0,1705,-16,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,929,-1,0,1115,35,1,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,-3,0,2155,2,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,-2,0,1040,-18,0,0 +2013,8,13,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,68,1,1503,82,1,0 +2013,4,10,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,340,1,0,646,-3,0,0 +2013,10,1,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1400,9,0,2000,-1,0,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1230,28,1,1605,17,1,0 +2013,7,12,5,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2153,48,1,105,60,1,0 +2013,10,15,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1713,-9,0,2008,-4,0,0 +2013,10,7,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1540,-6,0,2336,-5,0,0 +2013,5,19,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,850,-16,0,0 +2013,6,3,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,79,1,1735,72,1,0 +2013,8,15,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1435,35,1,1740,14,0,0 +2013,6,21,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,0,0,1415,-5,0,0 +2013,9,23,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1133,-18,0,0 +2013,4,21,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1655,15,1,1849,31,1,0 +2013,5,4,6,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-10,0,802,-18,0,0 +2013,5,22,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1435,43,1,1550,37,1,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,13,0,2002,5,0,0 +2013,5,16,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1500,45,1,1812,41,1,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1857,-2,0,2027,-8,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1156,110,1,1449,203,1,0 +2013,10,1,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-1,0,1410,-7,0,0 +2013,4,23,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-7,0,1120,9,0,0 +2013,4,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1312,-6,0,1435,1,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,-5,0,1342,-9,0,0 +2013,10,22,2,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,-2,0,1610,-22,0,0 +2013,10,18,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1259,0,0,1529,3,0,0 +2013,5,7,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1400,-1,0,1450,-5,0,0 +2013,5,4,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1030,-3,0,1155,-11,0,0 +2013,4,12,5,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1140,72,1,1242,54,1,0 +2013,4,25,4,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1348,-1,0,1454,-11,0,0 +2013,10,4,5,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,-7,0,1513,-10,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,1,0,2213,1,0,0 +2013,8,16,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,-1,0,1150,-10,0,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-9,0,2021,-24,0,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,-2,0,1018,-6,0,0 +2013,6,11,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,49,1,2040,28,1,0 +2013,5,9,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,11,0,1950,-2,0,0 +2013,9,28,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1605,-5,0,1715,-8,0,0 +2013,5,17,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1530,33,1,1837,22,1,0 +2013,7,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,3,0,2340,-11,0,0 +2013,10,5,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1129,-7,0,1400,-13,0,0 +2013,4,2,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1120,-2,0,1440,1,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1725,-3,0,2016,-45,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2220,6,0,2315,-5,0,0 +2013,10,22,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1435,-7,0,1450,-10,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,245,1,1911,255,1,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,-1,0,1839,-18,0,0 +2013,4,8,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-4,0,604,-6,0,0 +2013,10,13,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,-17,0,1232,8,0,0 +2013,10,18,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1515,3,0,1633,1,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,-8,0,1510,-36,0,0 +2013,10,12,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1120,-1,0,1435,-8,0,0 +2013,6,8,6,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-3,0,707,-13,0,0 +2013,5,6,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1345,0,0,1515,-12,0,0 +2013,4,17,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,807,-3,0,1048,8,0,0 +2013,7,13,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1257,-8,0,1830,-17,0,0 +2013,6,12,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-2,0,800,-4,0,0 +2013,10,19,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,55,1,1652,35,1,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,2,0,1529,15,1,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1935,23,1,2105,5,0,0 +2013,8,22,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-2,0,920,-9,0,0 +2013,10,21,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1736,10,0,1930,5,0,0 +2013,4,16,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-9,0,1627,-5,0,0 +2013,5,18,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,755,-13,0,1515,-26,0,0 +2013,8,13,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1230,26,1,1325,25,1,0 +2013,5,19,7,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,635,-1,0,710,-4,0,0 +2013,7,6,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-9,0,955,-16,0,0 +2013,4,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2015,2,0,2127,-7,0,0 +2013,10,14,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1735,16,1,1825,10,0,0 +2013,8,3,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1250,-5,0,1520,-9,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,-5,0,532,-9,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,8,0,1100,-6,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,712,0,0,902,4,0,0 +2013,4,24,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,0,0,616,-19,0,0 +2013,4,25,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1800,9,0,2031,-6,0,0 +2013,6,27,4,EV,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1911,22,1,2026,22,1,0 +2013,8,19,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,0,0,1115,4,0,0 +2013,4,26,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1350,-5,0,1524,-4,0,0 +2013,7,2,2,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,-2,0,1228,-13,0,0 +2013,5,10,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,856,1,0,1040,-9,0,0 +2013,4,1,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1651,37,1,1759,25,1,0 +2013,5,15,3,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1200,3,0,1409,-9,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-6,0,2153,-7,0,0 +2013,7,2,2,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1944,96,1,2304,96,1,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,815,-6,0,940,-13,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,3,0,1340,3,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,635,1,0,955,9,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,-1,0,1317,-5,0,0 +2013,10,2,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,700,-5,0,830,-8,0,0 +2013,6,15,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1000,11,0,1259,10,0,0 +2013,6,8,6,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,22,1,2149,17,1,0 +2013,10,13,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,1,0,1100,-1,0,0 +2013,10,14,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,826,0,0,0 +2013,4,1,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,-8,0,1742,-13,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-5,0,1238,1,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2115,-10,0,2300,-21,0,0 +2013,5,5,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,3,0,2250,5,0,0 +2013,5,21,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,720,45,1,1107,30,1,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,82,1,1949,174,1,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1700,-3,0,1940,-18,0,0 +2013,4,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2115,85,1,2243,78,1,0 +2013,5,31,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1240,6,0,1355,-10,0,0 +2013,6,9,7,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,-1,0,2115,8,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1350,3,0,1555,-7,0,0 +2013,7,6,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1255,1,0,1520,-6,0,0 +2013,5,4,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1225,-2,0,1505,-16,0,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1430,3,0,1840,-6,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1220,11,0,1335,11,0,0 +2013,9,20,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,-5,0,1314,-9,0,0 +2013,9,7,6,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1515,-5,0,1700,11,0,0 +2013,10,14,1,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1826,166,1,1900,174,1,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2014,328,1,2225,309,1,0 +2013,7,8,1,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1835,3,0,2140,0,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,-7,0,1835,-31,0,0 +2013,10,31,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1344,-6,0,1745,-1,0,0 +2013,4,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1044,-1,0,1353,-7,0,0 +2013,8,15,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1235,4,0,1420,-2,0,0 +2013,6,3,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1103,-9,0,1252,-28,0,0 +2013,4,30,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-5,0,1412,-20,0,0 +2013,4,6,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,815,-3,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,920,25,1,1050,18,1,0 +2013,4,20,6,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1410,-3,0,1645,-15,0,0 +2013,6,17,1,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-5,0,1644,-4,0,0 +2013,4,19,5,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,730,30,1,1029,29,1,0 +2013,10,2,3,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,-5,0,1308,-33,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1030,-9,0,1144,9,0,0 +2013,10,19,6,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,1,0,1605,-6,0,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1415,0,0,1530,-6,0,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,850,-3,0,1006,-36,0,0 +2013,9,4,3,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,-4,0,744,-7,0,0 +2013,10,1,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-9,0,1352,-25,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1720,46,1,2025,43,1,0 +2013,9,13,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,0,0,1140,-16,0,0 +2013,4,11,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-9,0,1030,10,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-5,0,1405,22,1,0 +2013,10,5,6,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-3,0,1700,-11,0,0 +2013,10,17,4,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1215,5,0,1255,5,0,0 +2013,7,11,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1512,15,1,1835,7,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-4,0,930,-5,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1255,118,1,1620,107,1,0 +2013,7,24,3,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,28,1,1614,11,0,0 +2013,8,2,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-1,0,915,11,0,0 +2013,7,1,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,-3,0,1220,-14,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,6,0,2352,41,1,0 +2013,10,3,4,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,810,-3,0,1005,-8,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1500,16,1,1705,8,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1356,-2,0,1605,-15,0,0 +2013,10,21,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,528,-9,0,604,-13,0,0 +2013,6,30,7,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,6,0,1025,-11,0,0 +2013,5,31,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-6,0,1455,-16,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1025,51,1,1345,40,1,0 +2013,5,2,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1536,-4,0,1830,1,0,0 +2013,7,21,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1314,1,0,1640,1,0,0 +2013,8,4,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-5,0,1313,3,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,640,-6,0,858,-18,0,0 +2013,10,25,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,-7,0,1845,-9,0,0 +2013,6,26,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,-3,0,1237,-20,0,0 +2013,5,9,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,34,1,1733,113,1,0 +2013,8,2,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,640,-1,0,840,34,1,0 +2013,5,17,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1430,20,1,1545,23,1,0 +2013,10,31,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1315,65,1,1424,69,1,0 +2013,10,22,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1440,-3,0,1630,-13,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1353,0,0,1540,-5,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,638,-4,0,911,-13,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,10,0,1845,9,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,55,1,1020,45,1,0 +2013,4,5,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-6,0,1305,-23,0,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,620,0,0,820,-3,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,3,0,1240,-1,0,0 +2013,7,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,855,36,1,1030,27,1,0 +2013,10,27,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1915,9,0,2102,6,0,0 +2013,7,25,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1525,40,1,1700,34,1,0 +2013,9,22,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1430,1,0,1505,-2,0,0 +2013,10,6,7,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,745,-6,0,1033,-19,0,0 +2013,10,4,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1524,-1,0,1809,-11,0,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,705,-2,0,855,-10,0,0 +2013,10,6,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,-4,0,2151,-3,0,0 +2013,7,18,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-10,0,804,-19,0,0 +2013,9,30,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1245,-8,0,1413,-3,0,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1456,-2,0,1759,-16,0,0 +2013,8,27,2,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,55,1,1445,61,1,0 +2013,8,29,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1652,13,0,1835,32,1,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,156,1,2025,151,1,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,79,1,1815,73,1,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,844,23,1,1646,20,1,0 +2013,4,19,5,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1135,41,1,1447,42,1,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,635,-6,0,924,-11,0,0 +2013,5,29,3,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1121,-4,0,1827,-4,0,0 +2013,5,20,1,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1201,24,1,1520,17,1,0 +2013,9,16,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-2,0,1445,-5,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1005,-7,0,1130,-1,0,0 +2013,7,5,5,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,-7,0,1245,-16,0,0 +2013,5,12,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-5,0,1606,-1,0,0 +2013,7,9,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,540,4,0,955,-4,0,0 +2013,9,3,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-6,0,2115,-21,0,0 +2013,8,25,7,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1955,-3,0,2104,-14,0,0 +2013,10,8,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,1,0,1440,-5,0,0 +2013,6,1,6,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,930,-2,0,1800,-22,0,0 +2013,10,1,2,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1720,-5,0,2005,-31,0,0 +2013,6,26,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,851,-2,0,1116,-14,0,0 +2013,10,30,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,725,-3,0,1019,-2,0,0 +2013,6,27,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1600,40,1,1750,39,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,0,0,1736,0,0,0 +2013,10,17,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1405,9,0,1610,-8,0,0 +2013,10,13,7,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1931,1,0,2305,-14,0,0 +2013,4,23,2,EV,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1657,-2,0,1917,-6,0,0 +2013,8,6,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,850,0,0,932,-4,0,0 +2013,5,28,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-7,0,1357,-14,0,0 +2013,4,2,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-2,0,1600,34,1,0 +2013,6,8,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,715,0,0,825,-3,0,0 +2013,9,26,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1115,1,0,1300,-10,0,0 +2013,7,25,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1320,2,0,1850,-17,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-4,0,950,-13,0,0 +2013,10,11,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1735,-4,0,1840,-7,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,90,1,2152,78,1,0 +2013,10,5,6,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1635,18,1,1820,2,0,0 +2013,4,14,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-7,0,935,-13,0,0 +2013,9,25,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,815,-11,0,925,-12,0,0 +2013,4,16,2,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1720,-7,0,1840,-3,0,0 +2013,7,15,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,810,-5,0,825,-9,0,0 +2013,10,22,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,740,3,0,825,-1,0,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,35,1,1131,36,1,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1402,-6,0,1745,-22,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1730,18,1,1835,28,1,0 +2013,6,12,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1957,-10,0,2259,-33,0,0 +2013,8,26,1,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2200,6,0,501,19,1,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1920,2,0,55,-3,0,0 +2013,10,11,5,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1250,-8,0,1505,-12,0,0 +2013,6,11,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1242,5,0,1345,-2,0,0 +2013,8,12,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1130,4,0,1305,-1,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,111,1,18,87,1,0 +2013,5,17,5,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-1,0,1105,-6,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,8,0,1539,14,0,0 +2013,9,8,7,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-6,0,1809,0,0,0 +2013,8,10,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1100,-7,0,1430,-36,0,0 +2013,4,20,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-7,0,1215,-10,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2205,-8,0,4,-12,0,0 +2013,7,27,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,750,18,1,956,13,0,0 +2013,10,21,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-5,0,740,-11,0,0 +2013,10,29,2,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,600,-11,0,1029,-11,0,0 +2013,10,6,7,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,710,8,0,1439,12,0,0 +2013,4,1,1,DL,13244,Memphis International,Memphis,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1327,-3,0,1644,-6,0,0 +2013,4,5,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,900,-4,0,1051,-9,0,0 +2013,6,8,6,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-12,0,915,-31,0,0 +2013,8,9,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1825,92,1,2011,88,1,0 +2013,4,30,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-5,0,1205,-28,0,0 +2013,10,3,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1929,-3,0,2106,-2,0,0 +2013,7,24,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1114,-4,0,1443,-2,0,0 +2013,7,11,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,16,1,1440,5,0,0 +2013,9,23,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,12,0,1722,13,0,0 +2013,8,17,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1725,-11,0,1941,-3,0,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1413,5,0,1546,14,0,0 +2013,9,2,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,-1,0,2119,50,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,22,1,1035,28,1,0 +2013,4,3,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,-6,0,2318,0,0,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1305,2,0,1625,-18,0,0 +2013,10,2,3,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,940,-3,0,1055,-14,0,0 +2013,7,18,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1639,-6,0,1750,-13,0,0 +2013,6,20,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,-7,0,2120,-14,0,0 +2013,8,16,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,600,0,0,725,-7,0,0 +2013,9,14,6,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1530,-1,0,2115,-5,0,0 +2013,10,8,2,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-7,0,900,18,1,0 +2013,7,7,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,-4,0,1444,-5,0,0 +2013,10,23,3,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,-3,0,1900,-25,0,0 +2013,8,14,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1025,-2,0,1135,-15,0,0 +2013,5,7,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-7,0,635,-9,0,0 +2013,7,7,7,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,-5,0,2020,-24,0,0 +2013,6,4,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1705,2,0,1830,-14,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,-4,0,1623,8,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,6,0,1340,-17,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2045,1,0,2309,-11,0,0 +2013,4,16,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,705,-4,0,1446,-16,0,0 +2013,8,10,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,620,15,1,755,5,0,0 +2013,10,1,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2107,-10,0,2154,-10,0,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,715,0,0,840,24,1,0 +2013,9,23,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1828,-9,0,2024,-12,0,0 +2013,5,8,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-1,0,1750,5,0,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,637,-7,0,1421,-5,0,0 +2013,8,2,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1420,-9,0,1600,-20,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1150,36,1,1320,29,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2205,38,1,7,17,1,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,845,7,0,1329,30,1,0 +2013,9,26,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,620,-3,0,930,-12,0,0 +2013,10,23,3,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,6,0,1038,-1,0,0 +2013,6,16,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,855,-2,0,1020,-7,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,-2,0,2255,-4,0,0 +2013,8,25,7,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1005,-14,0,0 +2013,7,23,2,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1905,32,1,1940,22,1,0 +2013,10,26,6,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,920,10,0,1205,25,1,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,19,1,2350,15,1,0 +2013,10,7,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1809,-9,0,2008,-16,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1554,19,1,1848,74,1,0 +2013,6,8,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-5,0,1011,-3,0,0 +2013,4,8,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-3,0,710,-8,0,0 +2013,5,26,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1737,-3,0,1814,-2,0,0 +2013,7,19,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,603,-5,0,731,-20,0,0 +2013,7,9,2,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-1,0,1130,5,0,0 +2013,4,17,3,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1240,1,0,2034,15,1,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1456,39,1,1629,29,1,0 +2013,7,10,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,2,0,1410,-15,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,0,,1810,0,1,1 +2013,4,1,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,914,25,1,0 +2013,5,12,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,802,-8,0,0 +2013,5,16,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,45,1,2100,33,1,0 +2013,9,14,6,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1505,112,1,1635,101,1,0 +2013,9,11,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,855,-15,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,-2,0,1618,-8,0,0 +2013,5,29,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-5,0,835,-11,0,0 +2013,6,18,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,803,7,0,950,-6,0,0 +2013,8,18,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1824,51,1,1915,55,1,0 +2013,6,11,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,615,-10,0,0 +2013,9,29,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1238,15,1,0 +2013,9,10,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2125,0,,30,0,1,1 +2013,6,2,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-4,0,712,-10,0,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1008,-3,0,1200,-8,0,0 +2013,8,14,3,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1650,-6,0,1846,-20,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1908,17,1,2100,9,0,0 +2013,5,14,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,749,-6,0,905,-22,0,0 +2013,8,29,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,5,0,1900,-22,0,0 +2013,9,30,1,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,800,-7,0,1355,-37,0,0 +2013,9,7,6,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-9,0,1055,-2,0,0 +2013,6,6,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-3,0,1315,4,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1738,-5,0,1901,-9,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,6,0,1349,-6,0,0 +2013,5,16,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1545,1,0,1826,-16,0,0 +2013,8,1,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-5,0,1359,21,1,0 +2013,8,23,5,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-6,0,856,0,0,0 +2013,8,3,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1950,-2,0,2041,-10,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,68,1,1538,44,1,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1940,10,0,2210,3,0,0 +2013,5,12,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1904,0,0,2053,-6,0,0 +2013,6,12,3,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,1100,-2,0,1655,-13,0,0 +2013,5,6,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-7,0,1810,-10,0,0 +2013,5,11,6,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2200,-2,0,853,-17,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,3,0,1743,-25,0,0 +2013,8,5,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1530,-1,0,1605,-13,0,0 +2013,4,15,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,705,1,0,800,-1,0,0 +2013,8,8,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,3,0,1935,13,0,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,0,0,2300,-18,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,33,1,1845,31,1,0 +2013,9,12,4,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,79,1,2022,144,1,0 +2013,8,5,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,840,-10,0,1015,-5,0,0 +2013,10,11,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1820,121,1,1950,112,1,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1135,15,1,1700,19,1,0 +2013,9,1,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,1009,-16,0,0 +2013,7,4,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1525,1,0,1650,-10,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1840,17,1,2130,29,1,0 +2013,9,22,7,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1451,10,0,1634,2,0,0 +2013,10,3,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2040,42,1,2205,42,1,0 +2013,7,6,6,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,735,263,1,840,260,1,0 +2013,10,23,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2010,16,1,2115,24,1,0 +2013,5,6,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1650,25,1,1801,0,0,0 +2013,9,7,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-1,0,930,-16,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1005,-7,0,1129,-11,0,0 +2013,9,4,3,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1855,-4,0,2020,-9,0,0 +2013,6,13,4,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1000,30,1,1208,52,1,0 +2013,7,3,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,2115,4,0,2225,-7,0,0 +2013,7,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,11,0,2205,11,0,0 +2013,4,14,7,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,830,0,0,1115,-25,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,708,-5,0,1547,9,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,1554,-13,0,0 +2013,4,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,44,1,2110,46,1,0 +2013,4,10,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,0,0,745,-2,0,0 +2013,7,31,3,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-1,0,1655,-2,0,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2050,-1,0,2225,-19,0,0 +2013,7,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1505,-8,0,1603,-20,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1115,-4,0,1158,-8,0,0 +2013,5,24,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1818,-5,0,2000,-19,0,0 +2013,4,14,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,8,0,2135,0,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,-7,0,2357,12,0,0 +2013,10,17,4,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1500,0,0,1700,-9,0,0 +2013,8,17,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1525,-3,0,1747,-2,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1429,-2,0,1533,-6,0,0 +2013,5,29,3,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,2,0,1030,-4,0,0 +2013,4,29,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,4,0,1601,-10,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2020,4,0,2215,-9,0,0 +2013,4,1,1,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1935,52,1,2056,16,1,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,0,0,2155,-21,0,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1546,-10,0,1729,10,0,0 +2013,5,25,6,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,-2,0,1217,23,1,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,808,-7,0,929,-20,0,0 +2013,9,4,3,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,-11,0,1636,-16,0,0 +2013,9,25,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-7,0,2031,-12,0,0 +2013,8,23,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,825,85,1,1148,77,1,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,10,0,1330,19,1,0 +2013,4,18,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,707,-4,0,1028,-3,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-2,0,920,-11,0,0 +2013,5,5,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1745,26,1,2126,0,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,915,-1,0,1255,-7,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1617,8,0,1739,4,0,0 +2013,5,22,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,750,-6,0,1124,-17,0,0 +2013,7,26,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1125,-4,0,1140,-5,0,0 +2013,7,28,7,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,800,-5,0,935,-3,0,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,-4,0,1930,-10,0,0 +2013,4,16,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,0,,1805,0,1,1 +2013,9,30,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1856,18,1,2023,15,1,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1530,2,0,1850,-6,0,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1759,0,,2019,0,1,1 +2013,9,8,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-4,0,641,-4,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,830,-2,0,935,-7,0,0 +2013,6,12,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,515,3,0,1040,-1,0,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,10,0,1703,-6,0,0 +2013,9,14,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1610,18,1,2035,12,0,0 +2013,10,31,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,700,-8,0,832,-13,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1235,-4,0,1540,13,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,17,1,1351,31,1,0 +2013,4,3,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-8,0,641,-6,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1348,-1,0,1505,-33,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2219,17,1,626,-2,0,0 +2013,5,15,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1210,-19,0,0 +2013,6,8,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,900,4,0,1024,9,0,0 +2013,7,27,6,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2335,10,0,759,-18,0,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2030,0,,2258,0,1,1 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1510,6,0,1843,36,1,0 +2013,8,22,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1355,-4,0,1639,42,1,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,615,-4,0,835,-2,0,0 +2013,6,6,4,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1625,46,1,1730,38,1,0 +2013,5,22,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1650,8,0,1745,7,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1754,-7,0,2046,-20,0,0 +2013,4,4,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,847,-5,0,1101,-5,0,0 +2013,10,28,1,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1850,30,1,2210,21,1,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1727,-5,0,1806,-15,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2045,23,1,2150,25,1,0 +2013,9,7,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-9,0,1415,-15,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1640,15,1,1825,7,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,7,0,2123,8,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1952,165,1,2141,152,1,0 +2013,5,17,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1400,-8,0,1730,-34,0,0 +2013,6,7,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,6,0,2201,-5,0,0 +2013,4,12,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,835,-2,0,1135,-11,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1400,-7,0,1510,-25,0,0 +2013,5,18,6,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,-4,0,1610,-12,0,0 +2013,5,31,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-1,0,1800,6,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1900,-5,0,2255,-20,0,0 +2013,7,23,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,710,244,1,844,247,1,0 +2013,4,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1120,-4,0,1341,-4,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,915,-4,0,1040,-8,0,0 +2013,4,19,5,OO,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1136,-5,0,1433,-3,0,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2130,-3,0,2305,-23,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,645,0,0,1040,-11,0,0 +2013,10,24,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1559,-4,0,1724,-12,0,0 +2013,10,6,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-10,0,1230,-1,0,0 +2013,6,30,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-2,0,1750,-6,0,0 +2013,8,30,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,3,0,1155,-2,0,0 +2013,8,9,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,555,1,0,720,-12,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1356,22,1,1450,-2,0,0 +2013,8,2,5,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-3,0,1132,0,0,0 +2013,5,26,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-8,0,2200,-19,0,0 +2013,6,8,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,-6,0,2227,-5,0,0 +2013,7,10,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1735,45,1,1835,37,1,0 +2013,5,8,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,3,0,2105,-6,0,0 +2013,5,16,4,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1854,103,1,2144,81,1,0 +2013,10,14,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1605,-1,0,1650,-5,0,0 +2013,4,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1100,-2,0,1157,-15,0,0 +2013,6,16,7,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1305,-5,0,1435,-14,0,0 +2013,9,30,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1800,10,0,1925,-6,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1556,12,0,1925,0,0,0 +2013,4,12,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,5,0,1420,-8,0,0 +2013,5,14,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1200,-5,0,1335,-20,0,0 +2013,5,18,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,7,0,1903,1,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,63,1,2122,55,1,0 +2013,6,2,7,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,0,,1830,0,1,1 +2013,10,25,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1145,-5,0,1403,4,0,0 +2013,4,9,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2145,-4,0,2245,-7,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2055,-1,0,2208,-8,0,0 +2013,5,31,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1430,47,1,1635,35,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,0,0,1340,-8,0,0 +2013,10,6,7,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,2157,-5,0,2316,-17,0,0 +2013,5,4,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,8,0,1030,9,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,4,0,1624,14,0,0 +2013,6,22,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,540,-6,0,637,-16,0,0 +2013,6,19,3,9E,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-5,0,1123,-6,0,0 +2013,8,1,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,33,1,1600,51,1,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1330,11,0,1455,15,1,0 +2013,10,29,2,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1337,-6,0,1729,3,0,0 +2013,6,10,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1205,-3,0,2014,-24,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1220,47,1,1355,48,1,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,20,1,1920,19,1,0 +2013,10,5,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1521,-8,0,1537,-6,0,0 +2013,6,15,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,900,10,0,1020,6,0,0 +2013,5,21,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,715,-7,0,1019,-13,0,0 +2013,9,12,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-4,0,1357,40,1,0 +2013,9,1,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1220,4,0,1555,-7,0,0 +2013,9,22,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,735,-4,0,831,-3,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,4,0,1300,-5,0,0 +2013,6,28,5,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1254,22,1,1501,6,0,0 +2013,4,21,7,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1155,8,0,1335,-3,0,0 +2013,7,30,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,-7,0,1335,-15,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,3,0,1647,25,1,0 +2013,6,15,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,0,0,1950,15,1,0 +2013,10,19,6,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,621,-6,0,815,-18,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,811,8,0,1036,6,0,0 +2013,8,19,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,20,1,1627,38,1,0 +2013,7,20,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,1,0,1040,-4,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1635,4,0,2145,16,1,0 +2013,10,9,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,58,1,1011,41,1,0 +2013,10,22,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-7,0,2033,-10,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,805,-4,0,855,0,0,0 +2013,8,3,6,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,27,1,950,28,1,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1005,12,0,1320,-2,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2233,3,0,701,14,0,0 +2013,5,3,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,5,0,1200,4,0,0 +2013,10,22,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,-2,0,915,-15,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1745,16,1,1952,1,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1210,3,0,1421,9,0,0 +2013,10,24,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1816,-5,0,1930,16,1,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1015,149,1,1148,143,1,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-1,0,1630,-9,0,0 +2013,5,29,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1620,-1,0,1725,-7,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1455,12,0,1810,-10,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1830,69,1,2038,50,1,0 +2013,10,18,5,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,955,71,1,1314,51,1,0 +2013,6,25,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,-6,0,1145,-15,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-4,0,2358,-10,0,0 +2013,5,31,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,10,0,1445,9,0,0 +2013,5,28,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,55,1,2225,56,1,0 +2013,6,12,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,19,1,2046,6,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,655,-4,0,905,-14,0,0 +2013,8,20,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,4,0,1627,-10,0,0 +2013,7,15,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,854,-2,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1305,-3,0,1739,-7,0,0 +2013,5,26,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1040,0,0,1205,-13,0,0 +2013,6,13,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,152,1,2015,149,1,0 +2013,6,6,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,224,1,1815,220,1,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1345,36,1,1455,43,1,0 +2013,5,5,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,25,1,1745,27,1,0 +2013,7,23,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,1,0,2225,2,0,0 +2013,10,12,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,-3,0,1320,-24,0,0 +2013,4,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2155,124,1,50,104,1,0 +2013,7,5,5,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1345,-3,0,1640,-23,0,0 +2013,9,4,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1316,-8,0,1436,-18,0,0 +2013,5,13,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1705,0,0,2030,-2,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1010,20,1,1115,18,1,0 +2013,5,15,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,-5,0,1807,0,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1735,-5,0,1742,-5,0,0 +2013,8,21,3,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-5,0,1454,-19,0,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,630,18,1,950,-5,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1540,21,1,1809,-11,0,0 +2013,4,17,3,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,25,1,2005,43,1,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-7,0,201,-2,0,0 +2013,4,15,1,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,4,0,1900,7,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1938,-6,0,2104,15,1,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,5,0,2100,-1,0,0 +2013,9,5,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,740,-4,0,900,-11,0,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1835,-13,0,2155,-5,0,0 +2013,5,21,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,5,0,2007,7,0,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,-8,0,2125,-12,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,1,0,1340,-18,0,0 +2013,7,6,6,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1959,-1,0,2232,-6,0,0 +2013,6,15,6,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,-4,0,2015,-5,0,0 +2013,4,21,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-4,0,1542,-15,0,0 +2013,6,18,2,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,706,5,0,935,12,0,0 +2013,7,3,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,46,1,2140,31,1,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-2,0,2132,-4,0,0 +2013,9,22,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-8,0,1709,1,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2010,-1,0,2340,-5,0,0 +2013,5,12,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,11,0,2005,-6,0,0 +2013,4,3,3,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1635,38,1,1954,23,1,0 +2013,6,21,5,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1141,-4,0,1409,-12,0,0 +2013,7,27,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-8,0,1030,-1,0,0 +2013,6,16,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1340,21,1,1515,14,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,725,-2,0,801,-13,0,0 +2013,10,21,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,935,-3,0,1154,-2,0,0 +2013,5,13,1,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,840,-3,0,1012,-27,0,0 +2013,5,4,6,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1435,16,1,1615,24,1,0 +2013,5,21,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1643,8,0,1958,32,1,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1100,29,1,1249,18,1,0 +2013,8,19,1,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1030,-20,0,0 +2013,6,28,5,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,-3,0,600,2,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,0,0,1620,22,1,0 +2013,10,16,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,-3,0,1048,-23,0,0 +2013,7,18,4,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1835,4,0,2155,45,1,0 +2013,6,21,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,-1,0,1857,2,0,0 +2013,6,12,3,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,925,-2,0,1142,-10,0,0 +2013,5,3,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1953,-5,0,2214,-3,0,0 +2013,6,12,3,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,50,1,555,29,1,0 +2013,9,23,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,-5,0,2143,-34,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-4,0,1827,-9,0,0 +2013,5,29,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1805,-3,0,2050,-5,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1835,28,1,2300,25,1,0 +2013,5,26,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,941,-21,0,0 +2013,4,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,0,0,940,-10,0,0 +2013,4,26,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,8,0,1055,1,0,0 +2013,6,30,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-8,0,1824,-16,0,0 +2013,5,21,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1511,37,1,1825,36,1,0 +2013,6,12,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1310,8,0,1801,5,0,0 +2013,8,6,2,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,935,-10,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,52,1,1030,45,1,0 +2013,9,24,2,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,9,0,649,-1,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1439,-4,0,1627,-5,0,0 +2013,5,20,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1853,53,1,2100,44,1,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,925,-2,0,1255,-6,0,0 +2013,9,9,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1415,0,0,1525,-4,0,0 +2013,8,7,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,15,1,2200,13,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1010,25,1,1430,37,1,0 +2013,6,19,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1935,-11,0,2137,-22,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1010,2,0,1720,-1,0,0 +2013,6,30,7,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2339,49,1,553,50,1,0 +2013,8,21,3,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1925,-3,0,2105,-11,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,800,54,1,1112,46,1,0 +2013,8,7,3,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,93,1,2004,135,1,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-2,0,1735,7,0,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1515,24,1,1640,20,1,0 +2013,8,22,4,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1019,64,1,1249,72,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,13,0,2217,15,1,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1744,-7,0,2330,-23,0,0 +2013,10,20,7,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-8,0,1015,-3,0,0 +2013,4,16,2,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1200,-5,0,1337,-16,0,0 +2013,7,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,930,-5,0,1150,-14,0,0 +2013,6,27,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,5,0,1810,-10,0,0 +2013,9,11,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1942,-4,0,2155,-4,0,0 +2013,6,1,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1720,5,0,2000,-4,0,0 +2013,10,24,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,500,-7,0,614,-20,0,0 +2013,4,17,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1338,-10,0,1450,-1,0,0 +2013,6,17,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,615,-1,0,855,1,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,59,1,727,57,1,0 +2013,8,8,4,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,940,-3,0,1100,-8,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1259,14,0,1614,5,0,0 +2013,4,18,4,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1015,-6,0,1130,-7,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1754,2,0,1930,-19,0,0 +2013,8,1,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1931,71,1,2057,64,1,0 +2013,5,16,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1655,13,0,1820,7,0,0 +2013,9,16,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,0,0,1925,-3,0,0 +2013,4,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-1,0,750,-24,0,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-1,0,1745,-11,0,0 +2013,10,13,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-5,0,1516,-4,0,0 +2013,8,10,6,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1527,6,0,1628,4,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-2,0,854,-2,0,0 +2013,8,20,2,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1034,-8,0,1420,-19,0,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,955,2,0,1614,8,0,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,1,0,1040,-11,0,0 +2013,7,14,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,10,0,857,25,1,0 +2013,5,10,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,-4,0,730,-25,0,0 +2013,9,12,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-4,0,908,-13,0,0 +2013,10,20,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,-9,0,1835,-7,0,0 +2013,7,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1426,23,1,1700,10,0,0 +2013,6,7,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-2,0,1527,3,0,0 +2013,10,24,4,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1535,-1,0,1805,-22,0,0 +2013,8,3,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,8,0,1205,-6,0,0 +2013,6,12,3,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1410,8,0,1750,3,0,0 +2013,8,7,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1800,21,1,1905,10,0,0 +2013,10,1,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1554,-4,0,1833,-17,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,49,1,1711,124,1,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2010,-3,0,2135,-4,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,-1,0,1533,9,0,0 +2013,4,29,1,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,645,5,0,825,-17,0,0 +2013,9,23,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,8,0,1411,-6,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,738,-3,0,931,-6,0,0 +2013,7,23,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,0,,1030,0,1,1 +2013,9,6,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1710,-1,0,2329,23,1,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,-6,0,1201,-15,0,0 +2013,6,9,7,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,26,1,1639,19,1,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1605,4,0,1830,-2,0,0 +2013,5,20,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,600,-1,0,735,-2,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2250,26,1,2359,37,1,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,6,0,1455,-7,0,0 +2013,7,28,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-1,0,1257,-6,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2040,25,1,2305,38,1,0 +2013,7,20,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,730,6,0,1035,-5,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1425,2,0,1550,-4,0,0 +2013,5,21,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,12,0,1250,6,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1900,151,1,2225,150,1,0 +2013,8,5,1,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,-4,0,1950,0,1,1 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2000,107,1,2134,94,1,0 +2013,5,10,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1540,91,1,1650,63,1,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1610,-5,0,1840,-18,0,0 +2013,7,3,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-4,0,1400,-2,0,0 +2013,5,10,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,756,-2,0,0 +2013,6,25,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1325,1,0,1450,-5,0,0 +2013,9,30,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1345,-3,0,1436,-8,0,0 +2013,6,9,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1730,18,1,1935,17,1,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,6,0,1600,-1,0,0 +2013,7,14,7,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,0,0,1631,4,0,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,1415,-10,0,0 +2013,10,1,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1911,-3,0,2018,-7,0,0 +2013,6,14,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,33,1,1127,28,1,0 +2013,7,29,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-3,0,2118,-8,0,0 +2013,7,5,5,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,-4,0,1600,1,0,0 +2013,8,17,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1830,8,0,2008,1,0,0 +2013,9,9,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,-7,0,1717,-9,0,0 +2013,10,30,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,-2,0,712,-4,0,0 +2013,7,14,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1131,86,1,1238,73,1,0 +2013,5,4,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1344,-6,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1610,27,1,1734,25,1,0 +2013,9,7,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1458,-4,0,1756,3,0,0 +2013,5,20,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-9,0,1105,-6,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2001,7,0,2252,6,0,0 +2013,5,13,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1710,-6,0,1948,-21,0,0 +2013,7,27,6,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,20,1,1211,6,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,5,0,1935,-5,0,0 +2013,10,2,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,750,-2,0,840,-6,0,0 +2013,5,19,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1345,-4,0,1510,-7,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1355,16,1,1655,9,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1701,-1,0,1722,-10,0,0 +2013,5,21,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-1,0,1041,2,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,7,0,1100,3,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1500,2,0,1830,-20,0,0 +2013,5,12,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1050,-6,0,1145,-7,0,0 +2013,6,12,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,0,,2115,0,1,1 +2013,9,12,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1530,-6,0,1625,-6,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1645,-7,0,1836,-14,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,915,43,1,1255,34,1,0 +2013,10,15,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,900,-3,0,1645,-37,0,0 +2013,8,27,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,655,1,0,1252,3,0,0 +2013,7,8,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1655,93,1,2005,90,1,0 +2013,10,5,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1715,-1,0,2015,-15,0,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,705,-4,0,1523,-18,0,0 +2013,5,1,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1430,37,1,1545,37,1,0 +2013,5,18,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,615,-10,0,735,-11,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2155,11,0,22,-11,0,0 +2013,10,29,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1302,64,1,1522,55,1,0 +2013,4,26,5,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2235,-2,0,550,-20,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-2,0,916,-16,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1721,-3,0,1833,-25,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,35,1,1510,27,1,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-5,0,2152,-6,0,0 +2013,5,21,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2020,35,1,2332,19,1,0 +2013,9,27,5,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,820,-5,0,1121,-18,0,0 +2013,6,15,6,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-3,0,1627,-8,0,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,22,1,1000,18,1,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,910,120,1,1605,114,1,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1007,2,0,1330,-13,0,0 +2013,9,2,1,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,919,-14,0,1000,-5,0,0 +2013,9,10,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,908,57,1,1102,33,1,0 +2013,10,30,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,-1,0,1902,1,0,0 +2013,4,22,1,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1155,-3,0,1430,-3,0,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,4,0,1120,0,0,0 +2013,9,27,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2320,0,,750,0,1,1 +2013,6,3,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,841,-1,0,0 +2013,8,4,7,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,914,67,1,1037,62,1,0 +2013,5,22,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1957,-1,0,2107,-7,0,0 +2013,5,4,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2017,-1,0,2059,7,0,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,730,-24,0,0 +2013,5,16,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,840,-4,0,1022,-17,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1006,1,0,1416,-6,0,0 +2013,7,24,3,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1800,0,0,2009,0,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,549,-7,0,912,-8,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,-1,0,1330,-13,0,0 +2013,10,23,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1050,95,1,1615,82,1,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,959,1,0,1124,-18,0,0 +2013,6,3,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1317,-4,0,1457,9,0,0 +2013,10,21,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-9,0,1930,5,0,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,7,0,1150,-8,0,0 +2013,8,8,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,12,0,620,5,0,0 +2013,10,19,6,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,21,1,1705,-1,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-9,0,847,-22,0,0 +2013,8,1,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,617,7,0,1145,-2,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,730,-6,0,915,18,1,0 +2013,6,8,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,-3,0,1903,-13,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1640,197,1,1941,226,1,0 +2013,6,23,7,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,757,1,0,1027,0,0,0 +2013,10,23,3,OO,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1510,-3,0,1832,-12,0,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1000,7,0,1220,-4,0,0 +2013,5,3,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,813,117,1,1047,71,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,44,1,1335,32,1,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,847,-2,0,1129,-30,0,0 +2013,4,29,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,-1,0,1650,-16,0,0 +2013,8,21,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1325,-8,0,1505,-27,0,0 +2013,7,29,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1920,-9,0,2110,-19,0,0 +2013,8,17,6,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,-1,0,1914,-13,0,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1245,-3,0,1616,-13,0,0 +2013,10,2,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-6,0,1850,-5,0,0 +2013,7,6,6,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1415,-5,0,1544,15,1,0 +2013,9,29,7,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,1,0,1847,-8,0,0 +2013,9,25,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1915,-5,0,2045,-10,0,0 +2013,9,13,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2025,-6,0,2058,-8,0,0 +2013,7,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,1,0,2025,-5,0,0 +2013,7,7,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1430,-6,0,1605,-19,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,6,0,1105,-13,0,0 +2013,8,1,4,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2035,64,1,2208,57,1,0 +2013,6,1,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,900,52,1,1034,48,1,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,835,18,1,1025,47,1,0 +2013,9,11,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1331,35,1,1650,58,1,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-5,0,945,-12,0,0 +2013,6,10,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,92,1,2153,107,1,0 +2013,6,18,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,8,0,1555,17,1,0 +2013,5,6,1,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,627,37,1,752,14,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,740,45,1,1045,50,1,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2120,34,1,20,35,1,0 +2013,7,26,5,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,10,0,1245,3,0,0 +2013,4,8,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1115,18,1,1236,6,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1510,13,0,1639,12,0,0 +2013,8,18,7,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-2,0,745,-6,0,0 +2013,9,23,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1650,-1,0,1815,-6,0,0 +2013,6,8,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,850,-2,0,1052,-27,0,0 +2013,4,3,3,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,725,-9,0,1030,-10,0,0 +2013,8,9,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1015,0,0,1140,17,1,0 +2013,10,21,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1922,4,0,2256,-12,0,0 +2013,6,17,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1935,27,1,1955,29,1,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,20,1,1710,0,0,0 +2013,10,29,2,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1054,-3,0,1638,-28,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,850,-2,0,1058,11,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-6,0,1017,2,0,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,925,-5,0,1050,-19,0,0 +2013,7,1,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-5,0,1828,11,0,0 +2013,6,28,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,45,1,1135,69,1,0 +2013,8,15,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,103,1,1615,88,1,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-8,0,2147,-21,0,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,15,1,9,15,1,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1225,1,0,1529,-25,0,0 +2013,10,14,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,659,-9,0,0 +2013,4,3,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,-5,0,720,-20,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,930,168,1,1155,169,1,0 +2013,4,13,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1235,5,0,2109,13,0,0 +2013,7,23,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,1524,4,0,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,0,0,1216,-1,0,0 +2013,4,26,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1710,-6,0,1730,-13,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,0,0,815,-12,0,0 +2013,7,25,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,-3,0,1359,-19,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1223,-10,0,1334,-28,0,0 +2013,8,25,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,930,5,0,1120,4,0,0 +2013,5,8,3,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,9,0,657,25,1,0 +2013,4,5,5,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-5,0,1240,-5,0,0 +2013,4,1,1,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2156,-3,0,2246,-9,0,0 +2013,10,4,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1639,1,0,1947,0,0,0 +2013,10,3,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,750,19,1,1546,10,0,0 +2013,4,14,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1515,2,0,1555,-6,0,0 +2013,6,13,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1835,11,0,2140,5,0,0 +2013,8,8,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,852,10,0,1022,103,1,0 +2013,10,20,7,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1350,11,0,1445,5,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1240,4,0,1255,-6,0,0 +2013,9,26,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1142,-7,0,1628,-17,0,0 +2013,9,20,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1735,9,0,1840,31,1,0 +2013,6,1,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-5,0,1005,-15,0,0 +2013,4,12,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,-4,0,1849,1,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-2,0,1648,5,0,0 +2013,8,25,7,HA,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1405,-5,0,2205,-2,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-4,0,1010,-17,0,0 +2013,8,17,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1342,-1,0,1637,-19,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,-1,0,2253,-8,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,855,-7,0,1336,-15,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,62,1,1451,118,1,0 +2013,5,16,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,15,1,1215,1,0,0 +2013,5,28,2,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,-8,0,2000,3,0,0 +2013,10,5,6,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,-10,0,1902,-37,0,0 +2013,5,2,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2025,-8,0,2155,3,0,0 +2013,8,17,6,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-10,0,810,10,0,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1535,37,1,1730,26,1,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,605,-2,0,855,-4,0,0 +2013,7,29,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,43,1,1306,57,1,0 +2013,9,14,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1618,-4,0,1705,5,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,900,-3,0,958,-17,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2151,-5,0,2331,-15,0,0 +2013,5,6,1,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,14,0,1805,0,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,759,-2,0,1100,20,1,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1550,0,0,1905,-6,0,0 +2013,5,5,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,1,0,1737,4,0,0 +2013,8,26,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,0,0,1007,13,0,0 +2013,7,13,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,4,0,1313,-23,0,0 +2013,7,26,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,810,-3,0,925,-8,0,0 +2013,7,23,2,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,6,0,2203,23,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,910,1,0,1034,9,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1610,139,1,1829,196,1,0 +2013,8,8,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1319,16,1,1455,10,0,0 +2013,7,20,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,615,-5,0,743,-16,0,0 +2013,6,14,5,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1350,-1,0,1945,-10,0,0 +2013,8,12,1,EV,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1743,-7,0,1900,-5,0,0 +2013,9,22,7,OO,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,806,3,0,920,11,0,0 +2013,9,26,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,830,-10,0,1126,-23,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,2004,36,1,2353,33,1,0 +2013,4,10,3,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1632,-13,0,1920,4,0,0 +2013,10,28,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,0,0,1744,15,1,0 +2013,6,11,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,32,1,1910,31,1,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1530,-4,0,1755,-15,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2215,202,1,2330,196,1,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2155,17,1,2305,17,1,0 +2013,9,11,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1720,-2,0,1820,-3,0,0 +2013,10,27,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,27,1,850,23,1,0 +2013,8,1,4,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1415,-1,0,2215,8,0,0 +2013,7,9,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-6,0,2215,-17,0,0 +2013,7,22,1,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1450,7,0,1634,0,1,1 +2013,4,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1045,0,0,1215,-10,0,0 +2013,6,12,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,753,-2,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,7,0,2335,6,0,0 +2013,7,11,4,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1746,-2,0,1905,9,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,1,0,1525,-4,0,0 +2013,7,23,2,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1900,29,1,2035,17,1,0 +2013,7,11,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,802,18,1,855,10,0,0 +2013,10,29,2,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1249,-3,0,1512,-22,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,-5,0,1450,-28,0,0 +2013,4,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-4,0,1427,-11,0,0 +2013,6,9,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,-8,0,937,-12,0,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1627,-6,0,13,-18,0,0 +2013,7,15,1,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,-3,0,950,-21,0,0 +2013,7,13,6,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-8,0,2020,5,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2230,6,0,2340,-1,0,0 +2013,8,20,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,3,0,2135,2,0,0 +2013,7,5,5,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-8,0,1634,-18,0,0 +2013,7,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,-2,0,1740,0,0,0 +2013,9,5,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1407,-8,0,0 +2013,8,21,3,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,-8,0,1757,-16,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,2000,253,1,2330,247,1,0 +2013,4,24,3,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1440,-3,0,1650,-2,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2258,60,1,44,37,1,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1925,15,1,2250,-6,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,846,-5,0,1125,-26,0,0 +2013,7,19,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,-3,0,1720,-17,0,0 +2013,6,25,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2120,6,0,2215,5,0,0 +2013,6,28,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1626,-5,0,1835,-2,0,0 +2013,6,12,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1531,1,0,0 +2013,8,21,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,740,0,0,750,-7,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2106,71,1,2343,33,1,0 +2013,4,29,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,2,0,812,3,0,0 +2013,4,15,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-5,0,733,11,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,0,0,1210,-4,0,0 +2013,10,12,6,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1306,-5,0,1419,12,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1958,34,1,2128,30,1,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1520,-4,0,1715,-23,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,1,0,1955,-3,0,0 +2013,5,28,2,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1950,-5,0,2200,30,1,0 +2013,5,16,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2156,8,0,2300,-2,0,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1004,0,,1224,0,1,1 +2013,6,20,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-1,0,1615,-23,0,0 +2013,6,5,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-3,0,853,-11,0,0 +2013,8,14,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-1,0,2058,5,0,0 +2013,9,25,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-3,0,1955,-5,0,0 +2013,7,23,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1322,14,0,1539,24,1,0 +2013,6,1,6,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-10,0,1006,-14,0,0 +2013,10,31,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,29,1,1425,27,1,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,8,0,1832,-1,0,0 +2013,5,3,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-2,0,1520,-17,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,-2,0,940,0,0,0 +2013,5,27,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1121,-6,0,1322,-14,0,0 +2013,8,23,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1127,-4,0,1327,-11,0,0 +2013,10,11,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,615,-6,0,750,-11,0,0 +2013,6,19,3,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-6,0,1300,-22,0,0 +2013,6,30,7,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1401,21,1,1615,0,1,1 +2013,4,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,955,-9,0,1630,-19,0,0 +2013,7,4,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1343,0,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2100,33,1,2350,38,1,0 +2013,4,24,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1651,24,1,1936,61,1,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1323,0,0,1545,-12,0,0 +2013,7,1,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1723,156,1,1742,189,1,0 +2013,4,11,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-5,0,1840,-8,0,0 +2013,6,3,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1720,123,1,1839,123,1,0 +2013,8,2,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-7,0,1357,-23,0,0 +2013,4,12,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-11,0,1828,-9,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1035,5,0,1240,2,0,0 +2013,4,30,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,856,-6,0,1020,-31,0,0 +2013,7,15,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1055,-4,0,1425,-10,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,730,0,0,825,-6,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,930,8,0,1155,2,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2250,20,1,100,12,0,0 +2013,6,22,6,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,720,-3,0,1000,-11,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1550,-1,0,1810,-7,0,0 +2013,5,11,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1101,-1,0,1354,-10,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-3,0,2151,6,0,0 +2013,9,12,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,36,1,2100,8,0,0 +2013,4,21,7,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1310,-2,0,1510,6,0,0 +2013,5,15,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,56,-6,0,607,-23,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,600,2,0,940,-12,0,0 +2013,5,1,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1410,1,0,0 +2013,6,25,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-8,0,2140,-13,0,0 +2013,5,16,4,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,910,-10,0,1144,-12,0,0 +2013,5,4,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-4,0,2209,-7,0,0 +2013,5,30,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,-10,0,2125,-3,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2125,23,1,2255,3,0,0 +2013,6,20,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,2,0,815,-11,0,0 +2013,5,26,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,0,0,2054,-9,0,0 +2013,4,18,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1715,-7,0,2000,-8,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1926,6,0,2121,-4,0,0 +2013,10,7,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-6,0,1020,-10,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,945,-1,0,1202,-10,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1130,-4,0,1327,9,0,0 +2013,4,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1205,23,1,1315,23,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1058,-1,0,1207,12,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1740,-6,0,1910,-24,0,0 +2013,6,26,3,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,0,0,1124,6,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1130,4,0,1230,2,0,0 +2013,4,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,700,0,0,815,-4,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1330,6,0,1428,0,0,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,650,12,0,822,14,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1500,21,1,1830,11,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,5,0,1146,8,0,0 +2013,9,3,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1339,85,1,1450,64,1,0 +2013,8,3,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-1,0,1053,-12,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-3,0,1949,1,0,0 +2013,9,5,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-8,0,2205,-41,0,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1155,-4,0,1300,-5,0,0 +2013,8,11,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,620,-5,0,716,-11,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1650,-2,0,2045,-17,0,0 +2013,7,23,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1115,29,1,1304,18,1,0 +2013,10,8,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,50,0,0,545,20,1,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1825,160,1,2035,166,1,0 +2013,9,5,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1435,13,0,1610,-2,0,0 +2013,10,2,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1200,-5,0,1335,-13,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,0,0,1803,-10,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1913,1,0,2006,-4,0,0 +2013,10,4,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1222,-3,0,1428,-6,0,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,1,0,1030,-8,0,0 +2013,10,20,7,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2018,1,0,2144,-24,0,0 +2013,8,31,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,812,-3,0,1200,-7,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,3,0,1000,-7,0,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1515,1,0,1640,-2,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1940,65,1,2245,69,1,0 +2013,10,18,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1437,-3,0,1609,-10,0,0 +2013,6,8,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-2,0,1142,1,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2005,60,1,2257,49,1,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,2,0,1050,-10,0,0 +2013,4,6,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-12,0,805,-20,0,0 +2013,9,4,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,540,-4,0,745,-7,0,0 +2013,7,16,2,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,0,0,1646,-12,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,0,0,938,-15,0,0 +2013,10,2,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1747,-7,0,1934,-5,0,0 +2013,9,5,4,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1645,-3,0,1910,-19,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,851,-6,0,1022,-23,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,605,139,1,900,140,1,0 +2013,9,27,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,603,6,0,943,2,0,0 +2013,10,3,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,833,-6,0,1242,-15,0,0 +2013,5,1,3,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-4,0,1800,-2,0,0 +2013,7,9,2,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,20,1,1421,11,0,0 +2013,4,18,4,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-6,0,1412,20,1,0 +2013,4,30,2,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1020,7,0,1150,7,0,0 +2013,4,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1742,8,0,2102,7,0,0 +2013,6,26,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,-4,0,1630,-18,0,0 +2013,10,18,5,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,710,-3,0,1000,8,0,0 +2013,5,22,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,64,1,1335,60,1,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2220,4,0,2340,3,0,0 +2013,7,21,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-4,0,1602,-2,0,0 +2013,8,7,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,25,1,2020,60,1,0 +2013,4,15,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1105,-5,0,1153,-7,0,0 +2013,4,23,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1800,78,1,1935,78,1,0 +2013,4,18,4,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2105,15,1,510,17,1,0 +2013,8,13,2,OO,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1435,1,0,1709,-7,0,0 +2013,5,18,6,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1720,-8,0,2243,-12,0,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1331,0,0,1643,-8,0,0 +2013,10,27,7,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,725,-6,0,1112,-11,0,0 +2013,7,27,6,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,96,1,1715,75,1,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1520,26,1,1820,28,1,0 +2013,7,17,3,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,18,1,1046,8,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-1,0,1333,-28,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2150,-1,0,2315,-13,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1950,1,0,2155,0,0,0 +2013,9,13,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,-2,0,1049,-13,0,0 +2013,6,22,6,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1854,-11,0,0 +2013,10,9,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,43,1,2105,30,1,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,819,-1,0,1348,0,0,0 +2013,10,6,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,800,-8,0,929,-13,0,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1855,1,0,2135,5,0,0 +2013,6,8,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,1,0,1320,-11,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2045,35,1,2210,40,1,0 +2013,7,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1215,-2,0,1326,-3,0,0 +2013,6,27,4,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,6,0,1149,9,0,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,14,0,2100,15,1,0 +2013,8,14,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1325,60,1,1505,51,1,0 +2013,7,28,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,17,1,825,0,0,0 +2013,8,16,5,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1120,-3,0,1417,16,1,0 +2013,6,18,2,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,801,-4,0,918,-14,0,0 +2013,4,9,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1420,-7,0,1636,-15,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,0,0,1705,-10,0,0 +2013,7,18,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,8,0,1310,-6,0,0 +2013,8,24,6,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2026,-13,0,2157,-15,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1645,6,0,2003,-8,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1935,28,1,2210,16,1,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,6,0,2330,-2,0,0 +2013,10,25,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-6,0,1248,-25,0,0 +2013,4,30,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1605,26,1,1656,21,1,0 +2013,5,28,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-1,0,1110,-11,0,0 +2013,10,12,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1420,28,1,1805,13,0,0 +2013,10,1,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,0,0,740,-5,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,4,0,1635,-4,0,0 +2013,7,21,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,144,1,2130,168,1,0 +2013,10,10,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1255,11,0,1425,1,0,0 +2013,4,15,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2050,36,1,2110,38,1,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,-4,0,2120,-6,0,0 +2013,10,5,6,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,0,0,1715,-4,0,0 +2013,7,20,6,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1127,0,0,1434,6,0,0 +2013,7,7,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,2,0,1028,9,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1634,6,0,2246,0,0,0 +2013,10,17,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-7,0,756,-5,0,0 +2013,9,24,2,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-5,0,1534,0,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-6,0,1035,12,0,0 +2013,6,12,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1909,60,1,44,62,1,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,930,-5,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1705,0,0,2114,-31,0,0 +2013,10,11,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1628,-7,0,1900,2,0,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,642,-4,0,808,-4,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2050,-7,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1325,-2,0,1527,12,0,0 +2013,7,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1755,47,1,1855,45,1,0 +2013,6,18,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-22,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1353,-2,0,1604,24,1,0 +2013,4,10,3,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,37,1,2259,42,1,0 +2013,6,15,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1650,100,1,1935,107,1,0 +2013,8,5,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,1,0,1820,-17,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1520,14,0,2302,30,1,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1135,1,0,1355,-12,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,1,0,1700,-12,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-3,0,1823,-15,0,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,12,0,1701,6,0,0 +2013,6,20,4,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1640,29,1,1950,20,1,0 +2013,7,11,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1540,13,0,1649,20,1,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,945,8,0,1350,-4,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1029,-1,0,1246,-3,0,0 +2013,6,14,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,715,-2,0,820,-4,0,0 +2013,4,5,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1655,-7,0,1924,-19,0,0 +2013,6,26,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,179,1,1405,210,1,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1411,25,1,1543,8,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1515,-4,0,1638,0,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2037,-4,0,2236,-10,0,0 +2013,10,2,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,-6,0,2025,-15,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1910,13,0,2125,-17,0,0 +2013,8,3,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,14,0,2353,-9,0,0 +2013,7,18,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,820,-1,0,935,-16,0,0 +2013,9,6,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,824,-10,0,1029,-32,0,0 +2013,9,17,2,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1128,-8,0,1403,-3,0,0 +2013,10,28,1,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-1,0,1913,17,1,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1000,8,0,1259,-10,0,0 +2013,10,27,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1145,11,0,1620,-3,0,0 +2013,4,19,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,705,-6,0,850,4,0,0 +2013,7,6,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1144,0,0,1240,-7,0,0 +2013,9,29,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1205,-5,0,1425,-7,0,0 +2013,6,12,3,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,805,2,0,1305,1,0,0 +2013,4,29,1,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1527,21,1,1707,2,0,0 +2013,6,28,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-8,0,1005,-6,0,0 +2013,9,8,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,700,-6,0,930,7,0,0 +2013,9,10,2,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,910,-11,0,1450,-10,0,0 +2013,9,7,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,11,0,1841,-5,0,0 +2013,9,26,4,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-7,0,1955,-15,0,0 +2013,5,12,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,5,0,1720,5,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1550,0,0,1931,-7,0,0 +2013,6,28,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2111,182,1,2238,173,1,0 +2013,10,31,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1855,5,0,2000,1,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1715,10,0,2255,3,0,0 +2013,9,20,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1331,-1,0,1406,-1,0,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1155,-3,0,1300,-12,0,0 +2013,6,18,2,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1625,33,1,1730,28,1,0 +2013,8,19,1,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1145,-7,0,1445,-13,0,0 +2013,4,27,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1659,-5,0,2157,-21,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-5,0,1047,-1,0,0 +2013,8,31,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1448,-21,0,0 +2013,4,20,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1725,-3,0,1845,-12,0,0 +2013,4,30,2,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,3,0,1632,11,0,0 +2013,8,19,1,EV,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1743,-3,0,1900,-20,0,0 +2013,7,31,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,915,-4,0,1710,-14,0,0 +2013,8,5,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1015,75,1,1216,63,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,0,0,1440,0,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,1,0,1914,-1,0,0 +2013,9,17,2,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1459,-3,0,1730,-2,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,841,-7,0,1004,0,0,0 +2013,6,22,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1114,-7,0,1219,-4,0,0 +2013,9,30,1,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1925,0,0,2015,-7,0,0 +2013,10,16,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1924,1,0,2031,-2,0,0 +2013,10,11,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-6,0,905,16,1,0 +2013,4,26,5,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1101,-1,0,1554,-8,0,0 +2013,7,7,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1510,5,0,1625,56,1,0 +2013,4,4,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2018,151,1,2105,151,1,0 +2013,7,28,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1710,166,1,1910,151,1,0 +2013,7,30,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,700,-6,0,945,25,1,0 +2013,7,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1130,9,0,0 +2013,5,14,2,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1445,-4,0,1945,6,0,0 +2013,7,25,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,720,-6,0,0 +2013,9,21,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,0,0,1655,8,0,0 +2013,9,2,1,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1213,-3,0,1330,-5,0,0 +2013,4,15,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1711,-7,0,1910,-18,0,0 +2013,7,26,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,711,-5,0,1034,-11,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1650,28,1,1740,18,1,0 +2013,7,11,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1651,30,1,1927,26,1,0 +2013,8,4,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,510,-7,0,647,-4,0,0 +2013,4,2,2,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1402,-9,0,0 +2013,6,10,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,745,2,0,845,-3,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1840,26,1,2210,31,1,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,0,0,1950,-3,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2020,14,0,2335,9,0,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,855,0,0,1130,-2,0,0 +2013,7,12,5,9E,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,846,-2,0,1034,1,0,0 +2013,9,2,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1115,-4,0,1246,-11,0,0 +2013,8,1,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2155,24,1,105,18,1,0 +2013,8,16,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,625,0,0,915,1,0,0 +2013,8,16,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,1407,-5,0,0 +2013,7,20,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,10,0,1649,96,1,0 +2013,10,2,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1645,-4,0,1800,-16,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,14,0,1400,-3,0,0 +2013,6,26,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1808,6,0,2000,-15,0,0 +2013,9,13,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1005,-7,0,1105,-8,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,-1,0,2217,2,0,0 +2013,6,19,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1442,20,1,1624,42,1,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1255,24,1,1345,40,1,0 +2013,10,18,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1710,-2,0,2315,-17,0,0 +2013,5,5,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1744,-4,0,1955,5,0,0 +2013,8,2,5,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1425,-8,0,1621,-10,0,0 +2013,10,16,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1630,-5,0,1810,-29,0,0 +2013,7,1,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,0,0,1346,2,0,0 +2013,8,28,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1840,0,0,1900,-13,0,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1948,71,1,2047,68,1,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1114,-4,0,1419,-47,0,0 +2013,5,6,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,0,0,1912,-2,0,0 +2013,7,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-6,0,935,-2,0,0 +2013,10,18,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,0,0,2215,-3,0,0 +2013,9,22,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1430,50,1,1545,45,1,0 +2013,4,9,2,OO,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-9,0,1556,-7,0,0 +2013,8,31,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,825,-3,0,837,72,1,0 +2013,4,30,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-6,0,1633,-12,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1330,208,1,1550,227,1,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,-2,0,1210,-37,0,0 +2013,10,28,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,907,-6,0,1130,-17,0,0 +2013,7,20,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-7,0,1030,-20,0,0 +2013,8,30,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1406,-7,0,2055,16,1,0 +2013,8,18,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1556,2,0,1745,6,0,0 +2013,6,12,3,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,194,1,1949,184,1,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1359,-10,0,1507,1,0,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,919,40,1,1101,44,1,0 +2013,4,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1855,-4,0,2130,-6,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1942,28,1,2238,38,1,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-6,0,1058,-3,0,0 +2013,7,7,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,1,0,1345,-2,0,0 +2013,4,27,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1610,-6,0,1757,-19,0,0 +2013,5,23,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1215,-3,0,1320,4,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,31,1,1140,44,1,0 +2013,7,26,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1435,9,0,1547,6,0,0 +2013,8,3,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,6,0,1853,-7,0,0 +2013,7,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1845,60,1,2005,66,1,0 +2013,6,7,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1350,4,0,1550,0,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1009,-7,0,1109,-4,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1230,5,0,1620,6,0,0 +2013,6,10,1,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2305,19,1,731,13,0,0 +2013,5,15,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-5,0,1209,-1,0,0 +2013,5,12,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,905,-8,0,1035,-1,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1016,15,1,1049,21,1,0 +2013,5,29,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1559,-2,0,0 +2013,9,14,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,-4,0,1506,-16,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,24,1,1035,12,0,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,-1,0,1425,0,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,-3,0,1900,-7,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-2,0,2305,0,0,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1055,5,0,1230,3,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-1,0,1627,-17,0,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,22,1,1610,14,0,0 +2013,6,21,5,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,149,1,1904,136,1,0 +2013,7,7,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,33,1,1242,22,1,0 +2013,6,19,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1044,30,1,1619,18,1,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,0,0,2024,-9,0,0 +2013,5,30,4,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1445,3,0,1641,-8,0,0 +2013,10,9,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,-4,0,1125,-22,0,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-6,0,1642,-1,0,0 +2013,7,26,5,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,6,0,920,30,1,0 +2013,6,19,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2246,-3,0,648,-16,0,0 +2013,8,14,3,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1530,11,0,1710,5,0,0 +2013,9,19,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-1,0,850,5,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,12,0,1505,0,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1730,0,0,2018,-17,0,0 +2013,8,19,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,605,-5,0,745,9,0,0 +2013,7,10,3,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,10,0,1937,60,1,0 +2013,5,14,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1500,-6,0,0 +2013,8,12,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1304,16,1,0 +2013,6,10,1,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,600,1,0,1420,-9,0,0 +2013,7,11,4,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,36,1,1039,42,1,0 +2013,4,16,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,0,,1213,0,1,1 +2013,7,5,5,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,-6,0,1903,-25,0,0 +2013,8,21,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,930,0,0,1218,-16,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1915,11,0,2100,11,0,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,-4,0,1550,-29,0,0 +2013,4,1,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1200,20,1,2003,-11,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,1,0,1005,-11,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,3,0,1417,-6,0,0 +2013,6,8,6,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,0,,1545,0,1,1 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1020,-5,0,1315,-24,0,0 +2013,8,5,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1455,0,0,2320,-10,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,51,1,948,32,1,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,4,0,1834,-25,0,0 +2013,6,22,6,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,815,-6,0,1026,-24,0,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2144,12,0,2238,0,0,0 +2013,10,14,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-5,0,747,0,0,0 +2013,10,31,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,955,-10,0,1110,-13,0,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1335,-4,0,0 +2013,4,30,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1729,-5,0,1920,-5,0,0 +2013,4,22,1,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,930,-6,0,1020,-6,0,0 +2013,7,28,7,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,920,2,0,1010,0,0,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1905,19,1,2015,0,0,0 +2013,10,22,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,615,-8,0,750,-8,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1950,-1,0,2150,-32,0,0 +2013,8,13,2,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1925,21,1,2055,36,1,0 +2013,6,20,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1002,55,1,1140,36,1,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1530,0,0,1810,-6,0,0 +2013,9,7,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1334,30,1,1419,33,1,0 +2013,4,26,5,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1825,88,1,2005,73,1,0 +2013,4,24,3,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,90,1,1725,68,1,0 +2013,6,17,1,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1415,-6,0,1645,-23,0,0 +2013,5,30,4,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1645,-2,0,1851,-16,0,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2050,-6,0,2221,-29,0,0 +2013,8,30,5,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-4,0,626,-4,0,0 +2013,7,1,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-9,0,1004,-11,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,10,0,1421,4,0,0 +2013,9,21,6,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1729,-4,0,1930,-15,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1830,32,1,1945,39,1,0 +2013,9,11,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-1,0,2220,-11,0,0 +2013,7,23,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,129,1,2053,115,1,0 +2013,10,11,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1300,80,1,1622,66,1,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-6,0,1021,-5,0,0 +2013,4,18,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,730,-3,0,947,1,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,740,-3,0,950,6,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-7,0,1135,-14,0,0 +2013,7,19,5,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1030,8,0,0 +2013,9,16,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1520,-1,0,0 +2013,4,28,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1451,12,0,1746,7,0,0 +2013,9,15,7,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,915,13,0,1655,12,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1925,80,1,2227,120,1,0 +2013,10,9,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,18,1,803,16,1,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,-1,0,2320,-7,0,0 +2013,5,8,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,745,-1,0,1045,-33,0,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,2115,0,0,2214,9,0,0 +2013,5,2,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,-6,0,1012,4,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1935,-3,0,2032,0,0,0 +2013,8,22,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1725,-1,0,1838,5,0,0 +2013,7,30,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1835,6,0,1955,4,0,0 +2013,4,28,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,-4,0,2055,-12,0,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,64,1,2240,63,1,0 +2013,4,24,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-8,0,844,-8,0,0 +2013,6,18,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,936,-2,0,1024,-5,0,0 +2013,4,2,2,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1312,-6,0,1455,-3,0,0 +2013,7,22,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,857,4,0,0 +2013,4,13,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,645,1,0,750,0,0,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1940,-4,0,2255,-37,0,0 +2013,10,9,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1506,-2,0,1838,7,0,0 +2013,9,7,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1500,-7,0,1723,-17,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,33,1,1157,59,1,0 +2013,8,14,3,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1155,14,0,1300,6,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,34,1,1525,49,1,0 +2013,7,11,4,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-8,0,855,-24,0,0 +2013,8,3,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,30,1,2159,32,1,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1848,-5,0,1948,-2,0,0 +2013,9,16,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-8,0,2057,-19,0,0 +2013,5,24,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1650,5,0,1910,20,1,0 +2013,4,7,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1455,-5,0,1724,49,1,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,852,-5,0,1019,-5,0,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1045,0,,1205,0,1,1 +2013,9,6,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,735,-8,0,1031,-19,0,0 +2013,6,23,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,919,-7,0,1039,-19,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,2000,8,0,2320,11,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,915,7,0,1625,2,0,0 +2013,7,5,5,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,-2,0,1951,10,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1118,2,0,1250,7,0,0 +2013,8,30,5,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,545,-5,0,715,-2,0,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,900,3,0,1030,2,0,0 +2013,8,28,3,FL,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1125,-3,0,1235,-17,0,0 +2013,5,29,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,843,-7,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,849,11,0,1634,21,1,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,1,0,1411,-23,0,0 +2013,10,24,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,1420,-3,0,1640,-5,0,0 +2013,9,26,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1515,-6,0,1631,-14,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,60,1,2004,45,1,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,16,1,2145,-4,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,805,4,0,1240,-3,0,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1154,-3,0,1453,16,1,0 +2013,10,16,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,604,-9,0,703,-21,0,0 +2013,10,27,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-6,0,637,-13,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1435,-2,0,1602,-3,0,0 +2013,10,8,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1400,-7,0,1506,-21,0,0 +2013,6,13,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,640,2,0,750,-1,0,0 +2013,4,23,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-10,0,1520,-13,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2000,3,0,2130,5,0,0 +2013,6,5,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,-3,0,1255,-16,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1531,1,0,1648,-3,0,0 +2013,9,4,3,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,1,0,1343,7,0,0 +2013,6,1,6,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,800,-1,0,935,-6,0,0 +2013,6,13,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-3,0,649,-5,0,0 +2013,4,6,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2220,-2,0,605,-18,0,0 +2013,8,8,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-6,0,806,-7,0,0 +2013,8,23,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,605,2,0,710,-1,0,0 +2013,8,27,2,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1532,18,1,1720,-2,0,0 +2013,9,30,1,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,-1,0,1550,-24,0,0 +2013,7,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-1,0,2115,-2,0,0 +2013,10,23,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-1,0,1137,-21,0,0 +2013,5,21,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,9,0,745,-8,0,0 +2013,10,15,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,727,-2,0,1048,10,0,0 +2013,7,5,5,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1040,-4,0,1315,8,0,0 +2013,5,1,3,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2100,-5,0,2345,-6,0,0 +2013,10,30,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2053,15,1,500,1,0,0 +2013,9,19,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-5,0,1010,-6,0,0 +2013,9,29,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1715,31,1,2005,51,1,0 +2013,8,26,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1650,-3,0,1805,-9,0,0 +2013,7,8,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1053,37,1,1210,66,1,0 +2013,10,2,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,630,-3,0,813,-4,0,0 +2013,6,5,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-17,0,1020,1,0,0 +2013,10,3,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-1,0,1220,-3,0,0 +2013,10,10,4,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1535,4,0,1625,0,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,905,-2,0,1028,-22,0,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,-8,0,1523,0,0,0 +2013,10,14,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1611,12,0,1728,4,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,7,0,1605,17,1,0 +2013,9,19,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,6,0,2040,-2,0,0 +2013,7,19,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,1,0,1405,10,0,0 +2013,5,24,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1608,0,0,1921,2,0,0 +2013,7,25,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,730,0,0,930,-5,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1635,-5,0,1825,-13,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,136,1,1505,128,1,0 +2013,5,5,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,-1,0,1825,-14,0,0 +2013,9,6,5,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1226,-1,0,1358,-3,0,0 +2013,9,6,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,-6,0,1402,-22,0,0 +2013,7,19,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,5,0,930,1,0,0 +2013,8,31,6,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-6,0,930,-37,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1017,-14,0,0 +2013,10,12,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,17,1,1350,20,1,0 +2013,4,1,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,15376,Tucson International,Tucson,AZ,1100,-6,0,1115,-16,0,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-4,0,1022,9,0,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,26,1,2055,15,1,0 +2013,5,28,2,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-3,0,1830,-22,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-1,0,2230,17,1,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,840,15,1,1018,24,1,0 +2013,4,12,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,2,0,1015,-9,0,0 +2013,8,17,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1017,18,1,1200,39,1,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1520,37,1,1640,12,0,0 +2013,8,26,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-8,0,1118,-11,0,0 +2013,6,16,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-1,0,1820,4,0,0 +2013,7,27,6,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1115,-5,0,1400,-9,0,0 +2013,6,14,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,13,0,2018,5,0,0 +2013,8,23,5,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1744,193,1,2111,191,1,0 +2013,10,1,2,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,811,-6,0,929,-9,0,0 +2013,7,3,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,849,-8,0,926,-6,0,0 +2013,8,31,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,935,1,0,1128,19,1,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2240,9,0,37,7,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,-5,0,1628,-19,0,0 +2013,4,19,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,938,6,0,1050,1,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,-2,0,1830,-7,0,0 +2013,6,4,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1945,-3,0,2123,-2,0,0 +2013,6,14,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,836,-25,0,0 +2013,6,17,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,825,-10,0,1040,-7,0,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-2,0,1305,9,0,0 +2013,7,6,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1715,1,0,1942,-32,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,2006,-5,0,2103,-13,0,0 +2013,6,2,7,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1400,4,0,1610,-3,0,0 +2013,5,18,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1445,-6,0,1655,-19,0,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,818,3,0,1035,14,0,0 +2013,5,24,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,196,1,2020,195,1,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1100,11,0,1245,6,0,0 +2013,8,6,2,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,814,5,0,1058,11,0,0 +2013,10,1,2,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,-3,0,1945,-8,0,0 +2013,8,20,2,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,8,0,2110,-18,0,0 +2013,7,21,7,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1450,39,1,1634,87,1,0 +2013,7,6,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1615,8,0,1800,-12,0,0 +2013,7,29,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,800,-2,0,1045,-1,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,855,4,0,1542,3,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,800,-2,0,935,-9,0,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1240,0,,1710,0,1,1 +2013,5,1,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-9,0,1106,10,0,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,700,-9,0,814,-13,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1240,13,0,1605,-2,0,0 +2013,5,15,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,0,0,1855,-6,0,0 +2013,4,6,6,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,815,-8,0,1620,-33,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,801,6,0,1304,7,0,0 +2013,6,9,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1125,-5,0,1305,-37,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,-4,0,830,-8,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2200,-1,0,2328,4,0,0 +2013,9,23,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,935,-9,0,1037,-5,0,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1800,19,1,2025,20,1,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2110,1,0,2225,-9,0,0 +2013,8,16,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1654,47,1,2200,28,1,0 +2013,6,14,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-5,0,1225,-22,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,0,0,1015,-7,0,0 +2013,8,1,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1225,-6,0,1310,4,0,0 +2013,6,1,6,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-1,0,1035,-8,0,0 +2013,10,14,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2102,-1,0,510,-21,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,13,0,2251,-3,0,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,6,0,1500,-3,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1531,-4,0,1815,-17,0,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1845,3,0,1955,27,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,839,-4,0,1026,-19,0,0 +2013,7,3,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,100,1,2014,104,1,0 +2013,10,16,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,104,1,1039,98,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1535,0,0,1648,0,0,0 +2013,10,28,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1235,7,0,1320,8,0,0 +2013,5,6,1,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,8,0,1733,-2,0,0 +2013,7,9,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2140,-3,0,2240,-4,0,0 +2013,10,13,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1217,-3,0,1500,4,0,0 +2013,4,17,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-8,0,1938,1,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1655,34,1,1820,105,1,0 +2013,5,25,6,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1550,3,0,1905,-11,0,0 +2013,7,2,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-2,0,905,-7,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,825,9,0,1000,18,1,0 +2013,7,1,1,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1010,8,0,1245,-8,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,840,-3,0,1050,7,0,0 +2013,7,12,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,26,1,1856,37,1,0 +2013,4,28,7,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-11,0,1130,-21,0,0 +2013,9,6,5,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,14,0,1945,6,0,0 +2013,9,17,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1215,0,0,1353,-13,0,0 +2013,5,2,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,10,0,1600,-2,0,0 +2013,6,10,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,600,0,0,725,4,0,0 +2013,6,6,4,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2255,13,0,731,22,1,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1025,-2,0,1135,-6,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2155,1,0,2324,-11,0,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,830,-1,0,1125,-7,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2005,17,1,2213,7,0,0 +2013,8,19,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2231,20,1,226,25,1,0 +2013,5,24,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,600,2,0,705,2,0,0 +2013,4,13,6,UA,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1845,-7,0,2032,-3,0,0 +2013,5,1,3,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1905,145,1,2008,155,1,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,-1,0,2100,-22,0,0 +2013,7,28,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1326,1,0,1934,-6,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2100,107,1,2255,107,1,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1305,-3,0,1410,-16,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1345,38,1,1725,41,1,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1710,-1,0,1952,-14,0,0 +2013,8,28,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,61,1,1315,63,1,0 +2013,5,24,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-7,0,2007,-10,0,0 +2013,6,17,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-8,0,840,35,1,0 +2013,5,16,4,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,855,-2,0,1140,34,1,0 +2013,6,15,6,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1348,13,0,1603,4,0,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,-7,0,1207,19,1,0 +2013,10,4,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-7,0,835,-10,0,0 +2013,7,13,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1400,25,1,1540,10,0,0 +2013,9,20,5,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,955,8,0,1110,-5,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2019,10,0,2227,12,0,0 +2013,5,10,5,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1701,5,0,1803,15,1,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1640,-3,0,2310,-21,0,0 +2013,7,25,4,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1332,-1,0,1438,-3,0,0 +2013,9,12,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1840,162,1,2120,156,1,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1359,5,0,1507,13,0,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1040,-2,0,1245,-11,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,28,1,1610,28,1,0 +2013,9,23,1,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1810,-8,0,2055,-34,0,0 +2013,4,16,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1220,12,0,0 +2013,8,29,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,830,0,0,940,-4,0,0 +2013,6,30,7,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,2,0,1950,-15,0,0 +2013,5,19,7,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1159,-2,0,1907,-11,0,0 +2013,10,20,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-7,0,1917,-13,0,0 +2013,8,14,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-2,0,1441,-5,0,0 +2013,5,17,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1630,-9,0,45,6,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,809,-1,0,1014,4,0,0 +2013,8,30,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,96,1,927,86,1,0 +2013,10,2,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1123,-4,0,1456,-20,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1200,9,0,1310,8,0,0 +2013,10,15,2,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,44,1,2205,15,1,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,21,1,2300,40,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2135,-2,0,2347,-9,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1730,211,1,2017,201,1,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,715,-8,0,850,-18,0,0 +2013,10,2,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1455,17,1,1630,9,0,0 +2013,7,30,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1105,6,0,1630,-19,0,0 +2013,7,14,7,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1040,0,0,1615,-1,0,0 +2013,10,3,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,-4,0,1925,-2,0,0 +2013,6,2,7,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,6,0,1805,-2,0,0 +2013,6,9,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,0,0,708,-1,0,0 +2013,10,24,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-1,0,1215,-10,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1005,265,1,1355,255,1,0 +2013,4,2,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,-2,0,2021,5,0,0 +2013,9,18,3,9E,12339,Indianapolis International,Indianapolis,IN,12953,LaGuardia,New York,NY,1306,-11,0,1515,-12,0,0 +2013,6,17,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,710,-3,0,837,-10,0,0 +2013,6,6,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,0,0,1807,-5,0,0 +2013,5,11,6,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,0,0,825,-7,0,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1005,2,0,1225,-9,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,-7,0,2220,-12,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,910,-4,0,1029,-8,0,0 +2013,6,10,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1546,96,1,2129,104,1,0 +2013,7,11,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,940,-4,0,1140,-19,0,0 +2013,5,22,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1738,-7,0,0 +2013,8,21,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1830,-1,0,2038,-17,0,0 +2013,4,30,2,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1221,62,1,1449,60,1,0 +2013,7,31,3,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,3,0,618,-18,0,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,-1,0,816,-4,0,0 +2013,4,27,6,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,845,-1,0,950,-17,0,0 +2013,7,23,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1049,0,0,1220,-22,0,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1955,-6,0,2115,-13,0,0 +2013,6,24,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1043,34,1,1200,58,1,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-2,0,1054,1,0,0 +2013,10,19,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1942,-2,0,2134,-18,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1400,8,0,1525,2,0,0 +2013,10,14,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,1,0,2020,32,1,0 +2013,8,8,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,630,2,0,720,-2,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,-2,0,2307,-10,0,0 +2013,10,5,6,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,907,-7,0,1231,-10,0,0 +2013,4,11,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1222,-7,0,1305,-7,0,0 +2013,6,1,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-8,0,2310,-8,0,0 +2013,10,11,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-6,0,1155,-11,0,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,-3,0,615,6,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1255,3,0,1615,-3,0,0 +2013,4,16,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1540,-6,0,1713,-12,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1430,1,0,1520,0,0,0 +2013,4,26,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1801,326,1,2131,271,1,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1115,-4,0,1250,-7,0,0 +2013,7,2,2,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1817,8,0,1918,-8,0,0 +2013,8,12,1,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,-2,0,2053,7,0,0 +2013,4,15,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,11,0,2114,22,1,0 +2013,7,8,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1439,0,,1644,0,1,1 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1058,-8,0,1156,1,0,0 +2013,10,20,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-3,0,2235,-13,0,0 +2013,7,26,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1136,-1,0,1307,-11,0,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1023,2,0,1236,-23,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-10,0,1045,-4,0,0 +2013,9,3,2,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1555,22,1,1755,24,1,0 +2013,7,11,4,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-7,0,10,-10,0,0 +2013,7,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1605,36,1,1756,37,1,0 +2013,5,13,1,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1703,-6,0,1848,-1,0,0 +2013,4,4,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,0,,1513,0,1,1 +2013,6,11,2,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,41,1,2213,11,0,0 +2013,6,14,5,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,835,16,1,937,10,0,0 +2013,5,27,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1718,-7,0,2000,-22,0,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-5,0,1928,-12,0,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,-3,0,2330,-8,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1620,0,0,1745,-13,0,0 +2013,8,18,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,17,1,1905,9,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,956,6,0,1528,32,1,0 +2013,5,1,3,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,833,33,1,1003,39,1,0 +2013,6,3,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1415,1,0,1530,-8,0,0 +2013,6,6,4,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1252,12,0,1557,22,1,0 +2013,6,30,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1907,-13,0,2033,-25,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1955,-2,0,2125,24,1,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1857,8,0,2027,2,0,0 +2013,6,5,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1625,0,,45,0,1,1 +2013,5,4,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,808,-4,0,1013,-8,0,0 +2013,8,24,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,725,0,0,840,15,1,0 +2013,8,20,2,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1050,-1,0,1826,-2,0,0 +2013,10,27,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,-1,0,1210,-2,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1939,61,1,2108,51,1,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-3,0,1330,-17,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,1930,-7,0,2351,-22,0,0 +2013,5,21,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,29,1,820,19,1,0 +2013,5,6,1,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1810,40,1,2013,25,1,0 +2013,9,25,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,927,0,0,1226,-5,0,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1435,66,1,1800,71,1,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1020,-3,0,1318,12,0,0 +2013,7,22,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1445,9,0,1620,23,1,0 +2013,4,25,4,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,-9,0,2055,-10,0,0 +2013,5,20,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,915,-2,0,1445,-21,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,59,1,1645,60,1,0 +2013,9,18,3,OO,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,62,1,1030,48,1,0 +2013,8,5,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,1,0,1420,-10,0,0 +2013,10,13,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,-2,0,1000,-5,0,0 +2013,10,19,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,640,-3,0,907,-5,0,0 +2013,9,19,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1216,3,0,1340,5,0,0 +2013,10,26,6,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-6,0,911,-22,0,0 +2013,4,16,2,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,2050,-6,0,2335,-9,0,0 +2013,6,9,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-2,0,1919,-3,0,0 +2013,9,12,4,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-8,0,1640,9,0,0 +2013,7,9,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1425,0,0,2020,21,1,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1755,178,1,1935,174,1,0 +2013,5,4,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,-2,0,1150,-9,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,0,0,1405,-19,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,915,0,0,1040,6,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,9,0,2155,18,1,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2305,30,1,13,18,1,0 +2013,5,25,6,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,2,0,1919,-2,0,0 +2013,5,26,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-3,0,757,-5,0,0 +2013,8,5,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1820,-2,0,2052,9,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,14,0,1500,6,0,0 +2013,6,8,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,0,0,2135,-8,0,0 +2013,6,6,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1601,7,0,1704,-3,0,0 +2013,4,26,5,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1122,-5,0,1427,-13,0,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1010,6,0,1755,-1,0,0 +2013,4,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1445,7,0,1610,1,0,0 +2013,6,30,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1334,-20,0,0 +2013,5,2,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1032,-10,0,1310,-28,0,0 +2013,9,2,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1209,4,0,1308,-7,0,0 +2013,4,19,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1213,-4,0,2040,19,1,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1450,-1,0,1555,-8,0,0 +2013,9,27,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-5,0,1505,-10,0,0 +2013,6,13,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,-12,0,10,-2,0,0 +2013,5,30,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1149,17,1,1414,15,1,0 +2013,5,29,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1632,2,0,1753,7,0,0 +2013,5,10,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-4,0,2102,-16,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,3,0,1720,-8,0,0 +2013,4,30,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1345,-3,0,1647,4,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,905,0,0,1025,-3,0,0 +2013,7,9,2,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1439,103,1,1549,119,1,0 +2013,8,24,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,130,-6,0,800,-7,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2010,-6,0,2141,-8,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1856,80,1,2112,69,1,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1840,-5,0,2357,-24,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,0,0,1613,-14,0,0 +2013,7,21,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1000,-7,0,1126,-18,0,0 +2013,9,18,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1118,-6,0,1226,-21,0,0 +2013,10,8,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1655,1,0,1800,-7,0,0 +2013,8,12,1,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1725,31,1,1908,11,0,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,645,-1,0,800,-12,0,0 +2013,10,3,4,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1731,-6,0,1947,-9,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2240,12,0,40,26,1,0 +2013,6,14,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,-5,0,1156,-7,0,0 +2013,5,21,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,759,-3,0,1615,21,1,0 +2013,8,1,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-7,0,1233,-18,0,0 +2013,6,26,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,909,19,1,1210,8,0,0 +2013,8,25,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,-5,0,2202,1,0,0 +2013,9,9,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,903,-2,0,1028,-12,0,0 +2013,10,1,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1735,-5,0,1905,-12,0,0 +2013,6,5,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1205,18,1,1805,-7,0,0 +2013,9,6,5,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-5,0,1218,-18,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,-2,0,1310,-6,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1225,8,0,1703,-9,0,0 +2013,7,8,1,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,9,0,1905,3,0,0 +2013,5,19,7,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,926,15,1,0 +2013,4,16,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,501,-5,0,856,3,0,0 +2013,4,15,1,EV,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-8,0,1747,-1,0,0 +2013,7,5,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,0,0,1130,-1,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1915,-5,0,2052,-9,0,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-3,0,906,-14,0,0 +2013,9,24,2,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1205,0,0,1410,-9,0,0 +2013,8,24,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1632,-11,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1349,-6,0,1724,-17,0,0 +2013,4,15,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-6,0,1834,2,0,0 +2013,4,13,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,925,67,1,935,69,1,0 +2013,5,6,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1047,2,0,1209,-14,0,0 +2013,4,29,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1805,-2,0,1915,-9,0,0 +2013,7,9,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1235,100,1,1830,104,1,0 +2013,5,31,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1845,-2,0,2010,-7,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1319,-1,0,1559,-13,0,0 +2013,8,9,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,4,0,1112,11,0,0 +2013,4,22,1,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1830,34,1,1940,25,1,0 +2013,5,21,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1106,25,1,1203,17,1,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-3,0,921,-15,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1200,-8,0,1358,-9,0,0 +2013,10,22,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1320,-5,0,1505,-8,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1525,8,0,1712,-1,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2035,4,0,5,35,1,0 +2013,6,17,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-8,0,1000,-9,0,0 +2013,5,31,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,720,0,0,942,-8,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,22,1,2225,4,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,840,-5,0,1100,3,0,0 +2013,10,7,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-8,0,1449,47,1,0 +2013,7,24,3,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1000,-4,0,1209,-9,0,0 +2013,4,5,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1320,1,0,1425,9,0,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1200,0,0,1215,-12,0,0 +2013,4,4,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2055,-11,0,2215,-12,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1955,12,0,2130,7,0,0 +2013,9,11,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-2,0,1229,-12,0,0 +2013,10,22,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1255,-6,0,1706,-32,0,0 +2013,5,28,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1049,-9,0,0 +2013,7,10,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,65,1,1910,64,1,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2154,0,0,2330,5,0,0 +2013,7,10,3,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2115,161,1,2230,157,1,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1140,52,1,1410,55,1,0 +2013,7,22,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-7,0,1135,-15,0,0 +2013,5,17,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1230,2,0,1428,29,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,840,-5,0,952,3,0,0 +2013,4,8,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-7,0,1128,-15,0,0 +2013,7,18,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,844,-4,0,1109,-15,0,0 +2013,6,17,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-4,0,1310,-6,0,0 +2013,8,29,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1930,17,1,2125,16,1,0 +2013,9,30,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,-2,0,1720,-6,0,0 +2013,5,14,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,-5,0,1720,-21,0,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,26,1,1910,17,1,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1857,5,0,1950,19,1,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,838,21,1,1003,11,0,0 +2013,6,4,2,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,3,0,1225,-4,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,10,0,2001,5,0,0 +2013,5,19,7,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1255,-1,0,1522,-5,0,0 +2013,6,25,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-9,0,1302,-12,0,0 +2013,8,24,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-5,0,1356,-9,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1310,-2,0,1410,-7,0,0 +2013,6,26,3,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,945,17,1,1040,2,0,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,0,,1835,0,1,1 +2013,7,7,7,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,1815,-10,0,2130,-7,0,0 +2013,4,1,1,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1116,-1,0,1830,-8,0,0 +2013,8,14,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,840,5,0,1210,-15,0,0 +2013,4,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1510,-10,0,1719,-3,0,0 +2013,8,17,6,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,810,6,0,950,-8,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-2,0,1655,-23,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,820,3,0,929,-4,0,0 +2013,7,11,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,18,1,1635,30,1,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,0,0,812,1,0,0 +2013,7,22,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1822,0,,2020,0,1,1 +2013,8,9,5,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,600,-1,0,820,-1,0,0 +2013,9,8,7,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,-3,0,2109,-5,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1720,16,1,1820,4,0,0 +2013,9,18,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1530,-7,0,1820,-6,0,0 +2013,7,25,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-8,0,1216,-7,0,0 +2013,9,13,5,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,73,1,2237,64,1,0 +2013,5,14,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1348,3,0,1448,2,0,0 +2013,8,19,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1835,7,0,1935,8,0,0 +2013,9,8,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,930,-4,0,1103,-22,0,0 +2013,9,18,3,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-1,0,2037,-24,0,0 +2013,6,24,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,61,1,2245,55,1,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1348,-3,0,1642,-18,0,0 +2013,5,30,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-8,0,837,-12,0,0 +2013,10,12,6,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-6,0,1358,-12,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1015,12,0,1500,2,0,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1520,67,1,1635,78,1,0 +2013,4,17,3,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1206,31,1,1615,15,1,0 +2013,8,14,3,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,0,0,1805,-11,0,0 +2013,7,23,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1705,-5,0,2020,-1,0,0 +2013,7,9,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-3,0,1835,-18,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1201,0,0,1334,-12,0,0 +2013,4,24,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1247,-10,0,1350,-9,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1657,11,0,1840,-6,0,0 +2013,5,20,1,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1731,-1,0,2044,1,0,0 +2013,6,9,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1835,0,0,2109,9,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1754,36,1,2013,11,0,0 +2013,7,15,1,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-5,0,1632,5,0,0 +2013,7,17,3,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1321,-6,0,1515,-22,0,0 +2013,7,14,7,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1325,-5,0,1432,-15,0,0 +2013,5,15,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,97,1,2230,84,1,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,755,-5,0,855,-17,0,0 +2013,5,3,5,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1120,-7,0,1625,-5,0,0 +2013,9,27,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,1,0,1630,-26,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,-2,0,812,7,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,16,1,1640,18,1,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1245,111,1,1820,121,1,0 +2013,8,1,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-7,0,2101,-1,0,0 +2013,9,28,6,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,650,-2,0,955,8,0,0 +2013,6,22,6,EV,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1011,74,1,1156,46,1,0 +2013,5,30,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,-2,0,1521,-9,0,0 +2013,4,21,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,11,0,2227,4,0,0 +2013,10,3,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-6,0,1025,-14,0,0 +2013,7,17,3,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,2030,39,1,2325,37,1,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1655,-1,0,1929,0,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2255,41,1,5,36,1,0 +2013,6,21,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1840,17,1,2053,17,1,0 +2013,7,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1034,-6,0,1231,-13,0,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1136,-4,0,1234,-8,0,0 +2013,9,5,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,36,1,740,24,1,0 +2013,5,20,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1929,38,1,2105,19,1,0 +2013,4,4,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-3,0,1000,0,0,0 +2013,9,6,5,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1035,-3,0,1607,22,1,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1150,8,0,1245,-1,0,0 +2013,10,29,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-6,0,1015,-10,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,2,0,1949,-8,0,0 +2013,9,23,1,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,-8,0,1346,-25,0,0 +2013,5,22,3,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1557,102,1,1858,101,1,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,601,-2,0,729,-8,0,0 +2013,4,14,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,833,-8,0,1041,-2,0,0 +2013,5,29,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,615,0,0,0 +2013,8,4,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,9,0,2202,18,1,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,19,1,2236,24,1,0 +2013,6,8,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-3,0,1221,14,0,0 +2013,8,13,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1005,4,0,1120,-1,0,0 +2013,7,2,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2202,11,0,2359,26,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1020,-2,0,1210,-40,0,0 +2013,10,9,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-2,0,1220,-22,0,0 +2013,8,22,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1420,-4,0,1721,-4,0,0 +2013,7,24,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1615,3,0,1725,0,0,0 +2013,8,18,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-1,0,1653,-5,0,0 +2013,4,11,4,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-7,0,1637,-2,0,0 +2013,5,5,7,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-2,0,2150,-16,0,0 +2013,5,23,4,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-2,0,1235,3,0,0 +2013,7,30,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,929,-15,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,-2,0,1624,-6,0,0 +2013,7,28,7,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,850,-5,0,1022,-11,0,0 +2013,7,25,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,9,0,2109,13,0,0 +2013,4,11,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,923,-8,0,1058,-1,0,0 +2013,4,4,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1540,8,0,1715,4,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,855,22,1,1005,15,1,0 +2013,5,6,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-3,0,1914,-10,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,12,0,1252,-1,0,0 +2013,5,16,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1855,115,1,2130,116,1,0 +2013,4,2,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1743,-7,0,2017,15,1,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-2,0,1048,-18,0,0 +2013,4,11,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-3,0,656,7,0,0 +2013,9,28,6,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1535,-8,0,1700,-19,0,0 +2013,8,5,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1200,-2,0,1341,-16,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,2,0,1830,7,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,8,0,1213,16,1,0 +2013,4,25,4,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1725,-4,0,2020,-1,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,845,3,0,1315,1,0,0 +2013,5,4,6,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,900,-8,0,1126,-5,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,825,4,0,1000,7,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2035,85,1,2145,100,1,0 +2013,9,26,4,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,-2,0,955,3,0,0 +2013,4,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,15,1,1840,-8,0,0 +2013,10,13,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2200,4,0,2305,-4,0,0 +2013,6,4,2,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,0,0,1030,-2,0,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1702,-3,0,2023,-7,0,0 +2013,8,13,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1501,-10,0,0 +2013,5,18,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,-8,0,1359,-9,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,0,0,1109,15,1,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1100,-2,0,1450,32,1,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1802,0,0,2009,4,0,0 +2013,9,2,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,0,0,1100,-11,0,0 +2013,7,8,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1850,3,0,2135,-10,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1835,1,0,2030,-16,0,0 +2013,5,28,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2130,184,1,2305,170,1,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1027,2,0,1149,-10,0,0 +2013,7,26,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,122,1,1642,120,1,0 +2013,10,16,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1033,-5,0,1154,-15,0,0 +2013,5,1,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1140,32,1,1220,25,1,0 +2013,7,10,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,617,92,1,730,97,1,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,2,0,750,-3,0,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1425,-5,0,1751,-28,0,0 +2013,7,30,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1020,6,0,1202,5,0,0 +2013,5,4,6,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-5,0,1140,-4,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2145,0,0,2245,0,0,0 +2013,5,2,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,1,0,1305,3,0,0 +2013,4,17,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,309,1,2227,305,1,0 +2013,10,19,6,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1656,1,0,2000,-17,0,0 +2013,7,2,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,0,0,1432,4,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-3,0,1740,0,0,0 +2013,7,8,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1305,-6,0,1555,1,0,0 +2013,4,23,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-9,0,827,-19,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,109,1,2359,98,1,0 +2013,8,10,6,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1055,-1,0,1230,-3,0,0 +2013,10,5,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1935,-1,0,2229,-23,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,2,0,1200,7,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,700,1,0,840,2,0,0 +2013,5,23,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,700,-4,0,940,-12,0,0 +2013,5,3,5,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1215,-10,0,1440,-1,0,0 +2013,8,16,5,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1710,-2,0,1952,8,0,0 +2013,7,30,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-4,0,2103,-14,0,0 +2013,4,17,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,12,0,1240,7,0,0 +2013,6,9,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,6,0,1115,-2,0,0 +2013,9,28,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,705,-18,0,0 +2013,6,15,6,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,0,0,1500,-9,0,0 +2013,5,29,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1840,12,0,1955,0,0,0 +2013,5,25,6,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1450,-4,0,1745,-18,0,0 +2013,6,27,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,841,-10,0,1159,-22,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,30,1,1830,17,1,0 +2013,8,9,5,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1205,38,1,2017,58,1,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-8,0,2323,4,0,0 +2013,10,20,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2000,-3,0,2214,-10,0,0 +2013,4,1,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,900,10,0,1149,-1,0,0 +2013,5,1,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1300,3,0,1505,-5,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,725,-2,0,850,-16,0,0 +2013,5,14,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1245,-3,0,2048,-50,0,0 +2013,9,28,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1611,-4,0,1625,-12,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-5,0,1844,-14,0,0 +2013,5,19,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1245,-4,0,1446,-20,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,700,4,0,805,-4,0,0 +2013,9,1,7,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1214,-10,0,1317,-19,0,0 +2013,8,31,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1035,75,1,1220,36,1,0 +2013,4,14,7,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2135,-5,0,123,-15,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1858,21,1,2114,19,1,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,908,-1,0,1046,-6,0,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,810,8,0,1326,-3,0,0 +2013,6,30,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-2,0,600,-12,0,0 +2013,8,10,6,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,-1,0,2305,0,0,0 +2013,6,19,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,9,0,1255,5,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-10,0,1055,-9,0,0 +2013,5,24,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1230,12,0,1420,5,0,0 +2013,4,16,2,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1021,9,0,1352,7,0,0 +2013,9,3,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1052,-5,0,1255,-10,0,0 +2013,4,24,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,940,68,1,1050,61,1,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,-6,0,1420,-21,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2200,15,1,2355,-2,0,0 +2013,7,28,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,0,0,855,-6,0,0 +2013,8,25,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1210,4,0,1310,11,0,0 +2013,10,10,4,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,-2,0,1715,-13,0,0 +2013,9,24,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-6,0,1256,-9,0,0 +2013,7,25,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-14,0,0 +2013,5,15,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1900,-3,0,1957,6,0,0 +2013,8,27,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1108,-3,0,1322,3,0,0 +2013,4,23,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-3,0,1618,-12,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,810,-4,0,833,-19,0,0 +2013,6,13,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,98,1,1615,138,1,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,40,1,1635,22,1,0 +2013,6,17,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,9,0,715,1,0,0 +2013,8,16,5,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-1,0,1211,-8,0,0 +2013,6,16,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,1,0,1115,-4,0,0 +2013,7,13,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,-8,0,1610,-11,0,0 +2013,6,1,6,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1355,0,0,2114,23,1,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1830,226,1,2000,238,1,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1710,16,1,1915,11,0,0 +2013,4,11,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,650,-1,0,855,-14,0,0 +2013,4,26,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,8,0,635,-3,0,0 +2013,5,28,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-10,0,2326,-6,0,0 +2013,7,9,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,530,-6,0,719,-7,0,0 +2013,6,20,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,3,0,1210,-7,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,0,0,1730,-1,0,0 +2013,9,29,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1850,17,1,2015,-2,0,0 +2013,4,13,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,831,-1,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-1,0,901,-3,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,26,1,2044,14,0,0 +2013,10,26,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,10,0,1420,3,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1328,-5,0,1717,-16,0,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1315,4,0,1840,5,0,0 +2013,7,12,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,608,-8,0,719,-22,0,0 +2013,4,16,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,700,-7,0,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,207,1,1744,276,1,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1940,2,0,2042,1,0,0 +2013,5,9,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,167,1,1740,182,1,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-5,0,841,6,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2242,-6,0,715,-8,0,0 +2013,6,2,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1448,-8,0,2010,-4,0,0 +2013,7,12,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1730,-2,0,1917,-14,0,0 +2013,7,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,-4,0,1120,-9,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,11,0,1505,6,0,0 +2013,7,13,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,855,-3,0,1010,-15,0,0 +2013,10,2,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1741,-5,0,1935,0,0,0 +2013,5,6,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,-5,0,1117,-14,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,3,0,1350,14,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1500,48,1,2030,37,1,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1749,7,0,1927,8,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1325,37,1,1640,31,1,0 +2013,9,4,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2344,4,0,752,9,0,0 +2013,4,26,5,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1515,-5,0,1740,-2,0,0 +2013,10,7,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1251,86,1,0 +2013,4,11,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-6,0,905,-18,0,0 +2013,6,7,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,91,1,1304,105,1,0 +2013,5,10,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,0,0,1820,37,1,0 +2013,8,17,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,933,-10,0,1235,-22,0,0 +2013,4,16,2,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-9,0,1910,-5,0,0 +2013,8,5,1,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1943,17,1,2105,35,1,0 +2013,5,3,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1745,15,1,1905,18,1,0 +2013,4,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,820,-5,0,1020,-15,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,0,0,2222,-32,0,0 +2013,7,5,5,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,1145,-4,0,1235,-13,0,0 +2013,4,5,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1100,18,1,1245,21,1,0 +2013,10,16,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-3,0,1755,-23,0,0 +2013,6,22,6,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,954,-5,0,1224,-2,0,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2000,1,0,2203,-16,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1100,-2,0,1200,7,0,0 +2013,6,25,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,58,1,1440,58,1,0 +2013,6,26,3,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1425,4,0,2025,-1,0,0 +2013,8,24,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,840,-1,0,1025,-1,0,0 +2013,8,24,6,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-7,0,1104,-22,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,9,0,1410,5,0,0 +2013,7,11,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,121,1,948,122,1,0 +2013,8,28,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,957,-9,0,1053,-10,0,0 +2013,6,23,7,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,603,33,1,639,26,1,0 +2013,9,15,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1130,-2,0,2001,-23,0,0 +2013,9,27,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,830,-26,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-7,0,802,-26,0,0 +2013,6,17,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1445,60,1,1655,56,1,0 +2013,8,19,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,615,-7,0,855,-11,0,0 +2013,10,31,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,730,-1,0,845,6,0,0 +2013,5,9,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,830,-2,0,1639,11,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1745,9,0,1757,52,1,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1615,19,1,2200,9,0,0 +2013,7,10,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,34,1,2103,35,1,0 +2013,4,27,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,-2,0,1318,-13,0,0 +2013,4,26,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1300,-15,0,1416,-33,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1355,-1,0,1536,-13,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,14,0,954,51,1,0 +2013,10,16,3,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,700,-2,0,755,-12,0,0 +2013,8,5,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,755,-6,0,915,-4,0,0 +2013,4,4,4,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1840,1,0,2205,0,0,0 +2013,7,3,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-7,0,1148,8,0,0 +2013,8,12,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1600,-3,0,1730,13,0,0 +2013,5,12,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-1,0,1031,-14,0,0 +2013,8,6,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1710,44,1,1910,36,1,0 +2013,10,23,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2045,16,1,505,-6,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,630,-1,0,720,-9,0,0 +2013,6,4,2,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1315,7,0,1800,-12,0,0 +2013,8,9,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1435,1,0,1535,-5,0,0 +2013,6,2,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-9,0,955,-12,0,0 +2013,5,25,6,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1720,0,0,1859,0,0,0 +2013,5,10,5,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-8,0,705,-21,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,39,1,2105,29,1,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,630,-3,0,930,-5,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2155,32,1,2255,24,1,0 +2013,8,2,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,7,0,620,-5,0,0 +2013,10,20,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1605,-2,0,1810,-14,0,0 +2013,9,14,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,43,1,900,34,1,0 +2013,5,23,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1705,25,1,1805,22,1,0 +2013,4,14,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1020,1,0,1315,-12,0,0 +2013,10,27,7,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-6,0,809,-15,0,0 +2013,7,31,3,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,-1,0,2308,-3,0,0 +2013,4,6,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1745,38,1,2035,25,1,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,-5,0,2122,-12,0,0 +2013,4,3,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1205,-5,0,1345,-7,0,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,955,1,0,1130,-6,0,0 +2013,7,21,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-1,0,940,0,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,-3,0,1600,1,0,0 +2013,5,15,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-3,0,2000,-11,0,0 +2013,5,20,1,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1510,-1,0,1715,-24,0,0 +2013,9,8,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1940,3,0,2135,-6,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,-3,0,1245,-39,0,0 +2013,4,8,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1915,220,1,2148,251,1,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1750,10,0,1905,4,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,900,2,0,1735,-3,0,0 +2013,9,14,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,9,0,1625,4,0,0 +2013,6,26,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1653,-4,0,1814,-7,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,959,-1,0,1342,0,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1106,27,1,1222,56,1,0 +2013,10,17,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1950,18,1,2140,36,1,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1300,0,0,1614,-20,0,0 +2013,10,29,2,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1915,-5,0,2252,-24,0,0 +2013,8,23,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2059,-2,0,2358,-30,0,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1405,115,1,1655,99,1,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,-2,0,830,-8,0,0 +2013,8,3,6,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1810,-4,0,2035,4,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,810,-1,0,925,-14,0,0 +2013,6,6,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,0,0,1010,-8,0,0 +2013,6,20,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,846,1,0,0 +2013,4,29,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,18,1,1955,20,1,0 +2013,8,8,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1202,1,0,1307,-6,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1454,29,1,1608,33,1,0 +2013,5,1,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,2020,-2,0,2118,-7,0,0 +2013,4,20,6,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-6,0,1254,-9,0,0 +2013,7,16,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1359,3,0,1948,7,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1650,0,0,1815,3,0,0 +2013,7,29,1,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2030,-2,0,2115,-10,0,0 +2013,7,21,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-6,0,1137,-18,0,0 +2013,7,19,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,6,0,1137,12,0,0 +2013,8,16,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,659,-2,0,809,26,1,0 +2013,7,12,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1920,1,0,2100,-42,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1140,0,0,1425,2,0,0 +2013,9,9,1,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2100,-9,0,508,5,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1430,113,1,1840,95,1,0 +2013,10,18,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1048,-6,0,1215,12,0,0 +2013,7,2,2,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,-6,0,1455,-18,0,0 +2013,9,28,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,825,-3,0,950,-10,0,0 +2013,5,26,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1007,-10,0,1133,-12,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1305,0,0,1450,-7,0,0 +2013,6,30,7,9E,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1243,-5,0,1519,-24,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,70,1,2352,59,1,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1615,31,1,1948,46,1,0 +2013,10,9,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1335,-2,0,1455,-2,0,0 +2013,7,30,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1815,4,0,1940,-4,0,0 +2013,7,17,3,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,840,3,0,0 +2013,10,19,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-7,0,1415,-14,0,0 +2013,10,9,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1151,-7,0,1249,-13,0,0 +2013,6,14,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1251,-2,0,1521,-4,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,30,1,1025,38,1,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,0,0,1820,-18,0,0 +2013,9,28,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2011,-5,0,2110,-4,0,0 +2013,4,19,5,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-5,0,1815,-13,0,0 +2013,10,9,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1545,-3,0,1705,5,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1420,1,0,1520,-7,0,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-3,0,1311,16,1,0 +2013,6,24,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,-1,0,2225,-7,0,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2230,-4,0,645,-15,0,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1535,0,0,1735,-15,0,0 +2013,4,19,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1558,6,0,1842,-5,0,0 +2013,4,28,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-2,0,641,-4,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,820,11,0,1035,23,1,0 +2013,4,22,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,610,-3,0,620,-5,0,0 +2013,10,30,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1323,9,0,2149,-35,0,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,900,68,1,1201,60,1,0 +2013,4,30,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,11,0,1920,0,0,0 +2013,5,10,5,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,703,-9,0,0 +2013,4,16,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,600,0,0,940,-3,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2145,-2,0,2251,-4,0,0 +2013,7,17,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,835,-7,0,0 +2013,5,14,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-5,0,1620,-11,0,0 +2013,10,2,3,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-4,0,1950,-6,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,2,0,1258,-3,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2100,50,1,2229,51,1,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,-1,0,453,-8,0,0 +2013,5,13,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,0,0,900,5,0,0 +2013,7,28,7,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,4,0,1110,12,0,0 +2013,4,21,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2130,1,0,2350,-7,0,0 +2013,7,21,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1850,6,0,1955,-3,0,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2035,-1,0,2345,-5,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1915,44,1,35,83,1,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,2,0,1610,1,0,0 +2013,8,5,1,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1156,-9,0,1312,3,0,0 +2013,5,3,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2202,-5,0,2338,-17,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1105,12,0,1210,6,0,0 +2013,7,10,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1720,5,0,1937,9,0,0 +2013,10,14,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-6,0,1115,-1,0,0 +2013,9,6,5,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1827,-4,0,2105,-5,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,21,1,1912,19,1,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1025,-1,0,1238,-29,0,0 +2013,8,21,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-9,0,525,-12,0,0 +2013,5,10,5,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1755,-9,0,2049,-33,0,0 +2013,4,14,7,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-11,0,1238,-14,0,0 +2013,6,3,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,1,0,2008,-1,0,0 +2013,10,6,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-7,0,1900,43,1,0 +2013,5,17,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1840,0,0,2132,-29,0,0 +2013,4,8,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,0,0,1400,-7,0,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-3,0,1037,-16,0,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,2035,5,0,2335,-2,0,0 +2013,8,1,4,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,700,-11,0,833,-8,0,0 +2013,9,10,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1044,-6,0,1230,0,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-4,0,1208,-6,0,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-1,0,935,-9,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1955,16,1,2145,17,1,0 +2013,8,2,5,DL,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,1,0,1823,-5,0,0 +2013,5,12,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,-3,0,1816,-4,0,0 +2013,7,31,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,825,-1,0,1420,-13,0,0 +2013,7,11,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,-3,0,1655,-1,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1315,68,1,1610,66,1,0 +2013,4,1,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,-1,0,1132,-2,0,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,32,1,1605,25,1,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1950,-4,0,2254,-11,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-4,0,1252,-8,0,0 +2013,7,10,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,2,0,1200,-7,0,0 +2013,10,12,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-7,0,1659,-12,0,0 +2013,6,5,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2100,-2,0,2209,0,0,0 +2013,6,3,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2005,-6,0,2110,0,0,0 +2013,8,26,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1150,-1,0,1425,24,1,0 +2013,4,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,820,-1,0,930,4,0,0 +2013,7,22,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-6,0,817,-10,0,0 +2013,6,27,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1610,105,1,1735,113,1,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1040,-3,0,1315,-1,0,0 +2013,4,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,-11,0,2359,-11,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,715,130,1,849,141,1,0 +2013,10,5,6,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-2,0,1024,-28,0,0 +2013,4,30,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1705,-9,0,1830,-11,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1920,51,1,2300,51,1,0 +2013,5,20,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1825,-3,0,2009,-8,0,0 +2013,6,4,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1127,-4,0,1300,-21,0,0 +2013,4,23,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1550,-5,0,1655,0,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,755,15,1,0 +2013,6,27,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,0,0,1217,-1,0,0 +2013,8,18,7,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-6,0,1635,-10,0,0 +2013,10,12,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,1,0,1215,-12,0,0 +2013,9,11,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-3,0,830,-12,0,0 +2013,6,13,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,65,1,1356,65,1,0 +2013,10,8,2,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1841,-3,0,2018,-8,0,0 +2013,6,23,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1735,156,1,1850,168,1,0 +2013,5,28,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1523,28,1,1814,28,1,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2125,21,1,2350,5,0,0 +2013,7,19,5,AS,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,-8,0,152,-2,0,0 +2013,8,30,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1455,-3,0,1630,-10,0,0 +2013,6,27,4,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1859,-1,0,2014,-17,0,0 +2013,4,11,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,955,-4,0,1310,-21,0,0 +2013,7,25,4,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1120,-1,0,1711,9,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1835,8,0,2310,28,1,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,28,1,1910,23,1,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1745,124,1,30,109,1,0 +2013,7,3,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,-5,0,833,6,0,0 +2013,9,22,7,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1305,22,1,1335,16,1,0 +2013,7,17,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2055,86,1,2324,65,1,0 +2013,10,12,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,0,0,1200,32,1,0 +2013,10,30,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-5,0,1210,-8,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,28,1,1852,9,0,0 +2013,8,9,5,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,900,-7,0,1215,0,0,0 +2013,7,25,4,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,625,0,,720,0,1,1 +2013,5,26,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-6,0,2132,-17,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1030,-2,0,1405,-4,0,0 +2013,7,30,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1010,1,0,1105,-2,0,0 +2013,7,31,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,0,0,1156,-11,0,0 +2013,5,1,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1544,-2,0,2126,4,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1420,-4,0,1525,-5,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1735,19,1,2325,-3,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,6,0,1050,1,0,0 +2013,7,23,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-8,0,2135,6,0,0 +2013,7,5,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,810,-4,0,0 +2013,8,24,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-5,0,1333,-10,0,0 +2013,7,9,2,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1813,15,1,2054,9,0,0 +2013,7,26,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1415,11,0,1540,3,0,0 +2013,4,4,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1110,-2,0,1315,-7,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1710,-4,0,1820,-15,0,0 +2013,10,14,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,-6,0,1440,-14,0,0 +2013,6,6,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,112,1,1623,103,1,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,1,0,1057,-3,0,0 +2013,7,7,7,OO,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,20,1,1647,28,1,0 +2013,8,28,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,850,-4,0,1155,-7,0,0 +2013,9,7,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1710,30,1,1905,46,1,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1345,16,1,1615,14,0,0 +2013,6,28,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,-6,0,1413,-6,0,0 +2013,4,5,5,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1324,9,0,2106,19,1,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,-3,0,1820,15,1,0 +2013,9,5,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1800,22,1,2026,11,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1505,-2,0,1620,5,0,0 +2013,9,24,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1715,-4,0,2235,-14,0,0 +2013,7,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,715,28,1,1005,26,1,0 +2013,9,9,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,1,0,2200,-11,0,0 +2013,8,14,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,1,0,1355,-3,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1200,-1,0,1319,-4,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1430,-5,0,1602,-14,0,0 +2013,8,28,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-2,0,21,5,0,0 +2013,10,29,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1020,-1,0,1230,6,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,31,1,817,27,1,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2145,0,0,40,1,0,0 +2013,9,14,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,-1,0,2117,5,0,0 +2013,6,3,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1844,-1,0,1959,-7,0,0 +2013,8,9,5,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-3,0,816,49,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,23,1,1648,7,0,0 +2013,10,21,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1950,-15,0,2103,-15,0,0 +2013,10,4,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-2,0,1750,-7,0,0 +2013,4,2,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,-2,0,1915,1,0,0 +2013,10,13,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1810,-7,0,1920,-22,0,0 +2013,10,8,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,2,0,1045,-12,0,0 +2013,4,5,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,2,0,1740,-8,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1815,2,0,2200,-10,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2130,90,1,2225,87,1,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1450,-1,0,2145,-3,0,0 +2013,7,19,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-6,0,1238,-11,0,0 +2013,7,17,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-2,0,1538,16,1,0 +2013,4,10,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1205,13,0,1325,-1,0,0 +2013,9,2,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-2,0,1741,18,1,0 +2013,6,15,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,950,-2,0,1055,-5,0,0 +2013,10,17,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,739,-1,0,1001,-13,0,0 +2013,4,9,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1918,-5,0,2009,-7,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,923,-1,0,1304,-1,0,0 +2013,7,29,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2128,53,1,2347,57,1,0 +2013,8,4,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,2,0,612,-24,0,0 +2013,5,21,2,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1618,63,1,2009,62,1,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2205,-4,0,4,-34,0,0 +2013,8,11,7,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,-7,0,2042,0,0,0 +2013,10,7,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,1,0,925,-7,0,0 +2013,7,18,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,68,1,2235,52,1,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,6,0,2004,20,1,0 +2013,10,2,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,715,1,0,735,-4,0,0 +2013,4,20,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1436,-16,0,1755,-18,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1305,20,1,1715,24,1,0 +2013,5,29,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,18,1,1759,6,0,0 +2013,7,4,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,601,-3,0,910,-13,0,0 +2013,7,6,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,31,1,1850,27,1,0 +2013,9,11,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-8,0,1215,-14,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,3,0,1550,-1,0,0 +2013,10,3,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1331,-4,0,1443,8,0,0 +2013,7,9,2,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1325,-8,0,1505,-12,0,0 +2013,5,29,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,-5,0,1405,-17,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,8,0,1255,4,0,0 +2013,8,8,4,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1243,58,1,1545,48,1,0 +2013,7,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,1145,-9,0,0 +2013,5,27,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1121,-7,0,1229,-6,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,16,1,1305,14,0,0 +2013,6,7,5,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1240,6,0,1815,5,0,0 +2013,4,25,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1341,-6,0,1540,1,0,0 +2013,5,12,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,730,-1,0,855,-14,0,0 +2013,4,4,4,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,740,-4,0,1117,8,0,0 +2013,6,5,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-7,0,1627,9,0,0 +2013,4,10,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1453,0,0,1726,-5,0,0 +2013,4,9,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,816,21,1,942,15,1,0 +2013,7,1,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,957,-5,0,1326,-12,0,0 +2013,6,21,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-9,0,905,-9,0,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1359,5,0,1717,-20,0,0 +2013,4,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-6,0,1420,-3,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-7,0,2135,-6,0,0 +2013,5,23,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1609,-2,0,1930,-7,0,0 +2013,6,12,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,-9,0,1223,-22,0,0 +2013,4,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1759,-6,0,2136,-13,0,0 +2013,7,12,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,838,7,0,1213,2,0,0 +2013,5,6,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-9,0,1025,-6,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,655,5,0,1125,-7,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1920,1,0,50,-5,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1235,35,1,1502,28,1,0 +2013,10,16,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,8,0,1210,-2,0,0 +2013,10,26,6,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1745,0,0,2035,-19,0,0 +2013,10,22,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,730,-7,0,1103,-15,0,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,750,-2,0,1015,-10,0,0 +2013,8,27,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,805,0,0,925,-9,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1140,-1,0,1311,4,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1945,80,1,2140,80,1,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1030,0,0,1305,-12,0,0 +2013,4,4,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1310,99,1,1446,78,1,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1450,34,1,1815,41,1,0 +2013,9,28,6,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1111,-6,0,1309,-22,0,0 +2013,5,19,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,45,1,1442,78,1,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-7,0,1747,-28,0,0 +2013,6,21,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,25,1,2130,17,1,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,915,11,0,0 +2013,9,21,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1943,6,0,2036,-5,0,0 +2013,6,28,5,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1329,0,0,2140,-10,0,0 +2013,8,11,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,-16,0,2340,-16,0,0 +2013,7,14,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2321,12,0,701,14,0,0 +2013,4,4,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1305,31,1,1620,19,1,0 +2013,9,10,2,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,735,-8,0,1031,-14,0,0 +2013,8,1,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1330,-2,0,1515,3,0,0 +2013,5,17,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1615,7,0,1745,-7,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,1,0,852,4,0,0 +2013,9,10,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,6,0,1459,-7,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1549,-4,0,1825,-37,0,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,1,0,2155,-1,0,0 +2013,5,14,2,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1025,1,0,1210,-22,0,0 +2013,8,21,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1549,-7,0,1914,-31,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1620,-1,0,1747,-11,0,0 +2013,7,15,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,7,0,1210,0,0,0 +2013,10,1,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1100,10,0,1225,2,0,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,0,0,2025,-12,0,0 +2013,7,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,915,-4,0,1710,18,1,0 +2013,6,21,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,74,1,1015,81,1,0 +2013,4,3,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1900,-6,0,2110,-13,0,0 +2013,10,25,5,EV,12953,LaGuardia,New York,NY,13931,Norfolk International,Norfolk,VA,1545,31,1,1721,36,1,0 +2013,6,29,6,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,-1,0,604,-14,0,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1310,3,0,1500,1,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,737,-1,0,951,-36,0,0 +2013,5,29,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1500,12,0,1610,6,0,0 +2013,6,27,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,555,-1,0,656,-10,0,0 +2013,9,17,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1736,28,1,2005,38,1,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1925,43,1,2250,42,1,0 +2013,10,4,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,18,1,1850,18,1,0 +2013,7,4,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,800,101,1,847,91,1,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,1,0,1835,11,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,-2,0,1039,-15,0,0 +2013,6,16,7,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,23,1,2050,24,1,0 +2013,5,2,4,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,845,-6,0,1054,-22,0,0 +2013,8,9,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1456,15,1,1615,-4,0,0 +2013,8,8,4,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,-3,0,1914,-1,0,0 +2013,7,30,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2159,-9,0,2321,-18,0,0 +2013,10,19,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-1,0,1108,-4,0,0 +2013,5,22,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2115,10,0,530,-2,0,0 +2013,8,14,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1420,31,1,1600,19,1,0 +2013,6,1,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1031,-2,0,1326,-6,0,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1212,-1,0,1507,-5,0,0 +2013,9,9,1,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1420,2,0,2230,-2,0,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-7,0,1015,9,0,0 +2013,4,5,5,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,742,-4,0,838,0,0,0 +2013,7,5,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,-3,0,2355,-6,0,0 +2013,7,7,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,0,,2051,0,1,1 +2013,10,13,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,5,0,2120,-15,0,0 +2013,5,10,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1915,45,1,2155,42,1,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1335,-2,0,1725,-16,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,0,0,2234,-7,0,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,68,1,1810,67,1,0 +2013,10,15,2,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,800,-6,0,1117,-27,0,0 +2013,8,7,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-2,0,151,1,0,0 +2013,6,8,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1715,6,0,1841,-19,0,0 +2013,5,10,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1120,47,1,1300,67,1,0 +2013,9,5,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1655,-12,0,1845,-40,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,-2,0,1104,-12,0,0 +2013,7,30,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1650,-1,0,1805,-6,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2020,13,0,100,11,0,0 +2013,7,16,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-5,0,859,-2,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1548,7,0,2029,63,1,0 +2013,10,19,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1255,59,1,2049,44,1,0 +2013,6,11,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-6,0,1213,-20,0,0 +2013,8,15,4,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,800,-6,0,850,-7,0,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,1,0,2359,-2,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-1,0,1441,-13,0,0 +2013,7,9,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1040,-10,0,0 +2013,10,29,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,800,-3,0,920,1,0,0 +2013,10,21,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,14,0,1115,12,0,0 +2013,6,27,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1422,-1,0,1653,-7,0,0 +2013,8,8,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1725,-2,0,1843,-7,0,0 +2013,5,27,1,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,-9,0,1655,-2,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1429,-3,0,1607,-5,0,0 +2013,9,15,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2050,26,1,2235,13,0,0 +2013,7,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,605,-1,0,745,-5,0,0 +2013,7,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1123,-10,0,1937,1,0,0 +2013,10,15,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1710,-10,0,1851,-13,0,0 +2013,8,9,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,2,0,1859,-20,0,0 +2013,8,4,7,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1437,74,1,1754,86,1,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1045,-2,0,1640,7,0,0 +2013,9,3,2,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-2,0,1745,4,0,0 +2013,10,20,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1624,1,0,1800,1,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1338,46,1,1444,39,1,0 +2013,4,13,6,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1410,29,1,1720,22,1,0 +2013,5,29,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-6,0,941,6,0,0 +2013,10,20,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,750,-5,0,0 +2013,8,16,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,-7,0,2025,-3,0,0 +2013,9,23,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1825,1,0,2115,-13,0,0 +2013,7,4,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,5,0,1851,0,0,0 +2013,9,2,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1239,-2,0,1438,-14,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,730,0,0,923,4,0,0 +2013,6,29,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,645,-1,0,755,-2,0,0 +2013,9,25,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-2,0,915,0,1,1 +2013,5,2,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-7,0,730,15,1,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,945,-6,0,1250,-3,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,755,-1,0,1055,-13,0,0 +2013,5,1,3,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1425,22,1,1720,25,1,0 +2013,9,25,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-6,0,543,-16,0,0 +2013,8,19,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,13,0,951,9,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,-3,0,1940,-16,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1512,375,1,1754,383,1,0 +2013,10,15,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1020,15,1,1211,5,0,0 +2013,9,23,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-3,0,1130,-21,0,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,612,7,0,1142,-8,0,0 +2013,6,4,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-6,0,1010,-16,0,0 +2013,9,4,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-2,0,2245,-10,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,-2,0,1720,-10,0,0 +2013,9,24,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,29,1,2035,23,1,0 +2013,9,23,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1205,-4,0,1325,-4,0,0 +2013,9,11,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1316,-5,0,1524,-20,0,0 +2013,7,31,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2110,5,0,2235,7,0,0 +2013,8,16,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2011,38,1,2254,16,1,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1625,36,1,1750,40,1,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,746,-3,0,1109,-24,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1545,0,,2030,0,1,1 +2013,7,15,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,10,0,2336,14,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-6,0,904,-11,0,0 +2013,6,13,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-1,0,1653,8,0,0 +2013,8,5,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,535,-1,0,650,-5,0,0 +2013,7,21,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,0,,855,0,1,1 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1120,5,0,1435,1,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,1,0,2232,-10,0,0 +2013,5,18,6,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-4,0,1115,-14,0,0 +2013,7,17,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-7,0,753,-9,0,0 +2013,7,23,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1116,8,0,1350,8,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1925,2,0,2130,-14,0,0 +2013,10,28,1,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2240,0,0,635,-24,0,0 +2013,5,28,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1532,15,1,1735,45,1,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1106,1,0,1223,-15,0,0 +2013,9,6,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1937,-30,0,0 +2013,4,17,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,7,0,1717,3,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2303,-4,0,15,-14,0,0 +2013,8,4,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1259,8,0,1400,11,0,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1222,17,1,1743,16,1,0 +2013,6,4,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-5,0,1520,-12,0,0 +2013,8,9,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-6,0,1030,-8,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-10,0,1939,-6,0,0 +2013,8,22,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,-16,0,1514,-13,0,0 +2013,4,21,7,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1615,-10,0,1728,-19,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1720,-1,0,1826,-16,0,0 +2013,4,4,4,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,709,-2,0,1059,16,1,0 +2013,7,18,4,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,925,48,1,1132,45,1,0 +2013,7,23,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,628,-7,0,805,-22,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,855,181,1,1527,174,1,0 +2013,7,23,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,-4,0,1923,7,0,0 +2013,4,23,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-2,0,1029,-6,0,0 +2013,6,14,5,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,226,1,1151,233,1,0 +2013,4,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,55,0,0,626,-1,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2250,-1,0,2359,-10,0,0 +2013,7,12,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,-1,0,2005,11,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,-5,0,1615,-18,0,0 +2013,6,27,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2031,133,1,2327,132,1,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,4,0,2132,-8,0,0 +2013,5,9,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1935,2,0,2100,23,1,0 +2013,9,15,7,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,-8,0,928,-13,0,0 +2013,7,26,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,855,-3,0,1115,-12,0,0 +2013,5,20,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,1,0,730,0,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,517,-5,0,757,-8,0,0 +2013,9,17,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1915,-17,0,2100,-7,0,0 +2013,10,23,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1325,-4,0,1515,-5,0,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,655,9,0,1038,18,1,0 +2013,4,11,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1340,-1,0,1510,-10,0,0 +2013,10,27,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1027,-3,0,1204,-19,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1505,0,0,1715,-8,0,0 +2013,8,21,3,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1620,0,0,1935,-36,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1735,-5,0,1938,-27,0,0 +2013,4,18,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1520,-6,0,1605,-7,0,0 +2013,7,28,7,DL,14679,San Diego International,San Diego,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-8,0,1902,-18,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1051,-5,0,1119,-19,0,0 +2013,10,25,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2330,-5,0,520,1,0,0 +2013,8,19,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-2,0,743,-4,0,0 +2013,8,26,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,24,1,2235,14,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-3,0,2132,30,1,0 +2013,8,22,4,OO,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1225,-6,0,1401,-13,0,0 +2013,4,10,3,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2049,-7,0,510,-4,0,0 +2013,8,7,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1425,12,0,1630,13,0,0 +2013,8,16,5,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1400,-5,0,1705,2,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1130,-8,0,1228,-14,0,0 +2013,10,20,7,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1826,-1,0,1900,-6,0,0 +2013,10,17,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1619,16,1,2030,-7,0,0 +2013,4,3,3,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1529,52,1,1725,54,1,0 +2013,4,23,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,14,0,1830,2,0,0 +2013,5,28,2,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1037,-1,0,1604,-17,0,0 +2013,10,23,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2150,-3,0,2315,3,0,0 +2013,7,6,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1450,0,0,1610,-8,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2155,5,0,2300,-3,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,22,1,1757,47,1,0 +2013,4,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-6,0,908,-25,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,-6,0,1202,-34,0,0 +2013,7,28,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1739,0,,2018,0,1,1 +2013,9,29,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2035,6,0,2135,-7,0,0 +2013,10,16,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,627,-6,0,747,-3,0,0 +2013,5,11,6,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1141,8,0,1437,0,0,0 +2013,6,5,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1700,-12,0,1855,-18,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2155,1,0,2308,-8,0,0 +2013,7,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1400,-2,0,1538,-11,0,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-2,0,2245,-3,0,0 +2013,8,8,4,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,637,-2,0,744,3,0,0 +2013,7,18,4,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,16,1,1930,10,0,0 +2013,10,1,2,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-1,0,1930,-1,0,0 +2013,10,31,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-3,0,2033,-6,0,0 +2013,4,10,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,19,1,1327,6,0,0 +2013,9,3,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-9,0,1630,2,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,835,-5,0,1105,-3,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,7,0,1900,2,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-2,0,1152,-5,0,0 +2013,10,2,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1420,-8,0,1600,-27,0,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1010,-6,0,1145,-27,0,0 +2013,4,27,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,-10,0,2137,-23,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1750,-4,0,2300,-13,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,2,0,1301,7,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1240,1,0,1330,-7,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1741,-2,0,2059,-18,0,0 +2013,5,25,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1420,18,1,1700,-8,0,0 +2013,6,30,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-4,0,1228,-22,0,0 +2013,4,8,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1650,11,0,1820,12,0,0 +2013,8,14,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-3,0,2359,2,0,0 +2013,10,5,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1225,6,0,1415,-5,0,0 +2013,4,10,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1959,-6,0,2126,-18,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1803,8,0,2055,5,0,0 +2013,9,29,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,4,0,1755,-13,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-2,0,745,-8,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,-3,0,2333,-14,0,0 +2013,7,24,3,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,132,1,1950,120,1,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,929,-5,0,1056,5,0,0 +2013,9,14,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,846,-1,0,0 +2013,7,8,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,812,-10,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1301,0,,1422,0,1,1 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,601,-1,0,1030,-18,0,0 +2013,5,5,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-7,0,1005,6,0,0 +2013,9,17,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,620,64,1,755,38,1,0 +2013,7,28,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1130,-3,0,1230,-6,0,0 +2013,7,7,7,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,1626,-5,0,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,715,-7,0,850,-27,0,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1653,-1,0,1749,-13,0,0 +2013,4,7,7,DL,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1855,-10,0,2243,-20,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1320,32,1,1650,18,1,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1725,153,1,1918,171,1,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-4,0,1039,-23,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1620,-4,0,2105,-4,0,0 +2013,6,23,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,163,1,2135,151,1,0 +2013,5,29,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,56,1,2140,63,1,0 +2013,10,21,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2320,-1,0,830,-27,0,0 +2013,7,21,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,-1,0,1409,-9,0,0 +2013,9,26,4,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1510,-2,0,1735,-1,0,0 +2013,4,7,7,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1935,-10,0,2056,-7,0,0 +2013,10,2,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1355,-3,0,1530,-13,0,0 +2013,10,23,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,6,0,1740,11,0,0 +2013,9,1,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1809,-3,0,2143,-24,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-3,0,922,-10,0,0 +2013,10,31,4,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,8,0,1605,6,0,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-1,0,1115,-19,0,0 +2013,8,26,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,955,36,1,1600,29,1,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,1,0,1758,-8,0,0 +2013,9,9,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,910,-10,0,1052,-26,0,0 +2013,6,11,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-5,0,1805,-2,0,0 +2013,10,12,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-5,0,1120,-8,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,635,-4,0,750,-4,0,0 +2013,5,30,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,40,1,2255,44,1,0 +2013,7,16,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,917,-6,0,1235,-3,0,0 +2013,4,28,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-7,0,1515,-24,0,0 +2013,9,26,4,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,545,-2,0,1152,-18,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1800,-4,0,1904,-6,0,0 +2013,7,19,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,848,-3,0,922,-1,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,88,1,2305,78,1,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1947,-4,0,36,-27,0,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,555,4,0,915,4,0,0 +2013,6,20,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,815,-6,0,949,8,0,0 +2013,10,9,3,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,635,8,0,800,1,0,0 +2013,5,29,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,1,0,724,-7,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,0,0,2125,-14,0,0 +2013,6,3,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1155,-5,0,1455,-1,0,0 +2013,7,5,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,-1,0,1215,-10,0,0 +2013,8,15,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-2,0,906,-4,0,0 +2013,6,26,3,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1640,25,1,1830,54,1,0 +2013,6,18,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,58,1,1605,51,1,0 +2013,4,25,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,7,0,1943,1,0,0 +2013,4,12,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1035,5,0,1200,6,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,-2,0,2055,0,0,0 +2013,7,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14057,Portland International,Portland,OR,1806,6,0,2013,-24,0,0 +2013,7,5,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,813,-4,0,1200,-16,0,0 +2013,5,19,7,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1815,49,1,2105,58,1,0 +2013,6,28,5,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1031,125,1,1217,119,1,0 +2013,4,12,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,941,-2,0,1133,-6,0,0 +2013,9,12,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,-2,0,2250,-3,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1036,39,1,1413,30,1,0 +2013,5,21,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-1,0,715,-6,0,0 +2013,5,18,6,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1600,0,0,1920,-24,0,0 +2013,9,27,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1020,-6,0,1211,-29,0,0 +2013,7,13,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2035,211,1,2206,195,1,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,0,0,1445,-9,0,0 +2013,7,25,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1909,4,0,2200,0,0,0 +2013,9,13,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,-10,0,1847,-25,0,0 +2013,5,29,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,-5,0,2013,-21,0,0 +2013,4,10,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,530,0,0,800,-9,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,0,0,1940,19,1,0 +2013,10,7,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-3,0,1453,-10,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-3,0,1005,-14,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,835,-5,0,1105,-29,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,38,1,1200,27,1,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,2008,-2,0,2331,-5,0,0 +2013,10,1,2,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,630,-7,0,813,-16,0,0 +2013,7,17,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1130,-3,0,1255,-1,0,0 +2013,6,4,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,0,0,930,-8,0,0 +2013,5,19,7,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1730,47,1,2028,37,1,0 +2013,4,30,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,23,1,1825,35,1,0 +2013,8,21,3,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1725,-2,0,1838,20,1,0 +2013,4,12,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1057,-7,0,0 +2013,7,19,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-5,0,2257,14,0,0 +2013,9,1,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-4,0,1315,-5,0,0 +2013,4,12,5,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,285,1,2039,270,1,0 +2013,8,21,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1501,1,0,1550,0,0,0 +2013,10,31,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-1,0,954,-21,0,0 +2013,9,17,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1405,-1,0,1505,-1,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,2,0,1321,-17,0,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,600,-5,0,700,11,0,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1820,1,0,2200,26,1,0 +2013,8,9,5,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,610,-11,0,805,-16,0,0 +2013,10,29,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,847,-7,0,1155,-26,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,11,0,2107,17,1,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1310,-3,0,1420,0,0,0 +2013,4,6,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,835,-3,0,918,-1,0,0 +2013,8,1,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,196,1,1919,186,1,0 +2013,4,20,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1226,-10,0,1443,6,0,0 +2013,9,6,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,-1,0,1352,-18,0,0 +2013,8,8,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-6,0,1538,-5,0,0 +2013,7,18,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,10,0,1830,13,0,0 +2013,6,3,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,-6,0,2050,-7,0,0 +2013,7,14,7,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-2,0,2047,2,0,0 +2013,4,10,3,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1057,-3,0,1302,-14,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,40,1,1915,27,1,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,845,0,0,1110,14,0,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,47,1,2250,23,1,0 +2013,10,18,5,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1831,-4,0,2100,-6,0,0 +2013,6,30,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-2,0,2255,1,0,0 +2013,10,2,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,-7,0,1638,-9,0,0 +2013,7,27,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,4,0,2010,-4,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1200,-4,0,1515,-17,0,0 +2013,8,18,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,0,0,1148,-3,0,0 +2013,5,25,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-2,0,910,4,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-6,0,1510,-2,0,0 +2013,8,7,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-1,0,805,9,0,0 +2013,6,1,6,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1710,3,0,1853,2,0,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-6,0,1010,-8,0,0 +2013,6,11,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,38,1,1532,20,1,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-9,0,2320,-27,0,0 +2013,10,23,3,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2101,-2,0,2342,-11,0,0 +2013,6,15,6,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1400,4,0,1700,3,0,0 +2013,8,23,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1428,21,1,1615,41,1,0 +2013,7,22,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1600,25,1,1632,40,1,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-3,0,1010,33,1,0 +2013,8,29,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1320,34,1,1425,37,1,0 +2013,5,21,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1626,6,0,1714,8,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1020,0,0,1320,-11,0,0 +2013,7,4,4,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1640,-5,0,1750,-11,0,0 +2013,9,23,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1610,-4,0,1625,-3,0,0 +2013,9,11,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,18,1,1600,25,1,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1535,37,1,2040,23,1,0 +2013,6,3,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-2,0,1205,12,0,0 +2013,6,13,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1215,11,0,1315,6,0,0 +2013,5,3,5,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-4,0,2015,-5,0,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1355,3,0,1702,-14,0,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,8,0,2035,18,1,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,935,-2,0,1114,-4,0,0 +2013,4,28,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,922,-2,0,0 +2013,7,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-8,0,900,-21,0,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,905,-5,0,1734,-4,0,0 +2013,7,3,3,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1145,-10,0,1445,-18,0,0 +2013,7,18,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1425,24,1,1535,20,1,0 +2013,9,23,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,31,1,1332,42,1,0 +2013,7,3,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-2,0,1635,-2,0,0 +2013,4,22,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,804,5,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,0,0,903,-5,0,0 +2013,4,29,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1030,-5,0,1130,-7,0,0 +2013,6,13,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1040,5,0,1105,16,1,0 +2013,8,25,7,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1005,10,0,1110,14,0,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1030,7,0,1309,-1,0,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,27,1,1625,33,1,0 +2013,10,13,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1314,-4,0,1915,-26,0,0 +2013,9,15,7,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,824,-5,0,901,-11,0,0 +2013,4,20,6,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1627,-6,0,1744,-5,0,0 +2013,8,22,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1540,137,1,1725,136,1,0 +2013,10,16,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,-6,0,1642,-8,0,0 +2013,4,18,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,850,1,0,1020,-3,0,0 +2013,5,12,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,5,0,1358,10,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-4,0,1158,-5,0,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2130,21,1,615,20,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1721,135,1,1923,126,1,0 +2013,4,9,2,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1530,27,1,1650,34,1,0 +2013,5,16,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,845,-5,0,1047,-19,0,0 +2013,7,16,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-7,0,1637,24,1,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,801,126,1,929,113,1,0 +2013,4,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-1,0,1352,2,0,0 +2013,6,20,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,1,0,1116,1,0,0 +2013,8,25,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1600,1,0,2355,13,0,0 +2013,9,11,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,926,-6,0,1117,-23,0,0 +2013,10,17,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,0,0,1350,-15,0,0 +2013,6,30,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1813,104,1,2017,106,1,0 +2013,9,18,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1450,-8,0,1605,-11,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,7,0,2316,4,0,0 +2013,5,21,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-2,0,920,-8,0,0 +2013,9,23,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-5,0,1420,-15,0,0 +2013,8,20,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1855,-1,0,2110,-1,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2120,-3,0,2345,-5,0,0 +2013,4,27,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,705,-8,0,949,-15,0,0 +2013,4,3,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,2,0,1010,-4,0,0 +2013,4,5,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1505,66,1,1703,46,1,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,618,135,1,853,135,1,0 +2013,7,11,4,YV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,959,2,0,1133,-11,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2200,125,1,2328,126,1,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1540,7,0,1645,5,0,0 +2013,4,28,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1303,-5,0,1444,-15,0,0 +2013,5,14,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-3,0,854,-15,0,0 +2013,10,24,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2320,2,0,655,-21,0,0 +2013,10,24,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1120,21,1,1250,43,1,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,650,2,0,815,2,0,0 +2013,5,10,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,-3,0,1115,4,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1715,8,0,1840,-2,0,0 +2013,8,6,2,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1800,2,0,2009,-12,0,0 +2013,10,11,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,724,6,0,929,5,0,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,18,1,1624,3,0,0 +2013,7,30,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1940,10,0,2035,5,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1020,6,0,1310,-2,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1940,-1,0,2338,-33,0,0 +2013,8,26,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1850,11,0,1945,10,0,0 +2013,8,19,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2005,-10,0,2326,-32,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1238,-3,0,1828,-34,0,0 +2013,8,8,4,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1435,-5,0,1635,-20,0,0 +2013,5,3,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1920,-5,0,2050,-17,0,0 +2013,9,10,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1825,-4,0,2005,-8,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,13,0,1210,6,0,0 +2013,4,26,5,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-7,0,1020,-10,0,0 +2013,4,16,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,-8,0,1110,0,0,0 +2013,6,23,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,606,-10,0,811,-23,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,2,0,1627,-32,0,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,950,-4,0,1235,-3,0,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1333,61,1,1449,68,1,0 +2013,9,24,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1538,-6,0,1720,-11,0,0 +2013,4,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1810,-3,0,1915,-14,0,0 +2013,5,27,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,916,-2,0,1042,-19,0,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,0,0,2121,5,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1813,-4,0,1953,-8,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1558,-3,0,1730,-7,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1319,-1,0,1519,-14,0,0 +2013,9,1,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,1045,-19,0,0 +2013,10,24,4,EV,11618,Newark Liberty International,Newark,NJ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,12,0,939,29,1,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-7,0,2152,-14,0,0 +2013,9,22,7,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,640,29,1,755,9,0,0 +2013,4,23,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1750,24,1,2110,6,0,0 +2013,9,18,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,800,-5,0,900,-8,0,0 +2013,8,24,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-1,0,1415,-14,0,0 +2013,4,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-6,0,1843,-21,0,0 +2013,4,4,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,920,-1,0,1010,-10,0,0 +2013,10,6,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1016,-5,0,1311,-2,0,0 +2013,8,29,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1345,-5,0,1636,-20,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1635,8,0,1830,15,1,0 +2013,5,7,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-10,0,914,-5,0,0 +2013,10,24,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1426,5,0,1658,-8,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2058,25,1,537,15,1,0 +2013,6,26,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2100,38,1,2230,36,1,0 +2013,7,11,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-7,0,1415,-2,0,0 +2013,8,2,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,10,0,750,6,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1005,2,0,1150,-10,0,0 +2013,4,26,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1816,1,0,2009,7,0,0 +2013,7,30,2,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1910,-7,0,2043,12,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,642,-8,0,808,-18,0,0 +2013,9,6,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,-6,0,2212,-37,0,0 +2013,9,26,4,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,26,1,1826,-12,0,0 +2013,8,21,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,640,-7,0,750,-8,0,0 +2013,7,29,1,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,-8,0,1532,5,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1205,0,,1650,0,1,1 +2013,6,1,6,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-5,0,910,11,0,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,138,1,2130,122,1,0 +2013,5,13,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,730,3,0,855,0,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1321,0,0,1454,5,0,0 +2013,10,1,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2051,-7,0,2140,3,0,0 +2013,10,9,3,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1327,-5,0,1429,-5,0,0 +2013,8,24,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,602,-4,0,729,-14,0,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,2,0,1414,5,0,0 +2013,10,10,4,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-2,0,2000,5,0,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-1,0,1635,10,0,0 +2013,6,23,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,1,0,1825,-12,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1945,-5,0,2045,-11,0,0 +2013,7,31,3,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1855,14,0,2204,8,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,8,0,2200,14,0,0 +2013,4,29,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,-2,0,1222,-13,0,0 +2013,8,12,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1140,-4,0,1331,-9,0,0 +2013,10,2,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,907,18,1,1040,-4,0,0 +2013,4,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-5,0,1835,-18,0,0 +2013,7,13,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,-5,0,2305,-3,0,0 +2013,10,13,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1805,185,1,2327,190,1,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1515,0,0,1605,1,0,0 +2013,10,28,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2205,0,0,2358,-18,0,0 +2013,10,19,6,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-12,0,1210,-18,0,0 +2013,8,12,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1931,1,0,2320,13,0,0 +2013,10,11,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,-6,0,1733,-8,0,0 +2013,4,14,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-6,0,1650,-10,0,0 +2013,6,9,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,935,-8,0,1050,-15,0,0 +2013,10,20,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2340,0,0,607,-10,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-3,0,855,-4,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1325,7,0,1430,11,0,0 +2013,7,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1605,0,0,1756,3,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,7,0,1110,7,0,0 +2013,5,4,6,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1630,8,0,2000,-9,0,0 +2013,8,4,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-3,0,705,-7,0,0 +2013,6,19,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,0,0,620,-14,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1850,0,0,2108,23,1,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,630,7,0,855,2,0,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,-2,0,2025,6,0,0 +2013,10,10,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,5,0,601,7,0,0 +2013,5,23,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2055,82,1,2230,63,1,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,800,10,0,1245,-9,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,-3,0,2307,-9,0,0 +2013,10,19,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-4,0,1550,-16,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,41,1,1810,31,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1255,0,0,1424,-15,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,10,0,1759,-13,0,0 +2013,7,29,1,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,3,0,1239,11,0,0 +2013,10,3,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-9,0,922,12,0,0 +2013,4,2,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,-4,0,1255,-2,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,46,1,2225,44,1,0 +2013,7,13,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-3,0,1430,6,0,0 +2013,10,27,7,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2140,-5,0,35,0,0,0 +2013,8,1,4,DL,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-1,0,1831,-13,0,0 +2013,7,15,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1245,5,0,1348,4,0,0 +2013,7,1,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,900,-1,0,1024,38,1,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,712,-3,0,1126,8,0,0 +2013,8,21,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-5,0,1557,-8,0,0 +2013,9,29,7,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1039,-7,0,1051,-18,0,0 +2013,8,29,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1315,6,0,1645,10,0,0 +2013,9,3,2,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,800,5,0,1355,-11,0,0 +2013,4,9,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1800,6,0,2040,-2,0,0 +2013,4,18,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,1,0,1535,-11,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1210,-2,0,1335,-10,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1940,4,0,2040,1,0,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,827,-4,0,1706,-16,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,1,0,1110,-5,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2250,-5,0,36,-20,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,833,43,1,1419,38,1,0 +2013,5,11,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,3,0,1400,7,0,0 +2013,8,2,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1140,-7,0,1352,-19,0,0 +2013,9,11,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,910,-6,0,1031,-3,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1900,7,0,2005,-2,0,0 +2013,8,2,5,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,38,1,1230,49,1,0 +2013,10,26,6,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1300,-9,0,1438,0,0,0 +2013,7,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,1,0,1735,16,1,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1853,-4,0,2018,-9,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1450,23,1,1610,24,1,0 +2013,5,29,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1522,-14,0,2319,35,1,0 +2013,7,30,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,705,-17,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2157,-9,0,2333,-3,0,0 +2013,4,3,3,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-6,0,920,-12,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,-3,0,1148,-11,0,0 +2013,5,20,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,1,0,1436,-13,0,0 +2013,6,17,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-11,0,1023,-12,0,0 +2013,8,29,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,160,1,147,198,1,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2304,-3,0,729,4,0,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2129,-2,0,17,2,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1607,19,1,1751,15,1,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,5,0,2352,-3,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1815,24,1,2020,8,0,0 +2013,7,14,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,925,0,0,1215,7,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,-4,0,955,-16,0,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,955,12,0,1545,33,1,0 +2013,9,1,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2135,58,1,615,64,1,0 +2013,6,30,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,1,0,943,-2,0,0 +2013,10,6,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1605,3,0,1720,-7,0,0 +2013,5,18,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,957,0,0,1215,-5,0,0 +2013,9,25,3,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-2,0,1451,-1,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2035,23,1,2145,22,1,0 +2013,5,22,3,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,819,-8,0,941,-26,0,0 +2013,5,7,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,940,-5,0,1050,9,0,0 +2013,9,11,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1356,24,1,1547,-6,0,0 +2013,5,20,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,34,1,2200,26,1,0 +2013,9,20,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-5,0,1930,-1,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2210,-1,0,2355,4,0,0 +2013,10,16,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1115,-2,0,1255,-8,0,0 +2013,8,27,2,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,730,-6,0,1021,-22,0,0 +2013,4,4,4,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-8,0,1036,-7,0,0 +2013,9,26,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,4,0,1015,9,0,0 +2013,5,27,1,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,20,1,2230,36,1,0 +2013,8,22,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1155,16,1,1430,-1,0,0 +2013,6,17,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-5,0,817,-9,0,0 +2013,10,22,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1859,-12,0,2159,-14,0,0 +2013,8,6,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,0,0,1900,-17,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2230,0,0,658,-21,0,0 +2013,9,20,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,5,0,1420,5,0,0 +2013,5,7,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1542,-3,0,1736,-4,0,0 +2013,8,12,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1420,24,1,1515,54,1,0 +2013,8,1,4,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1245,6,0,1530,-4,0,0 +2013,6,29,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1700,5,0,1815,-12,0,0 +2013,4,21,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1710,-4,0,1747,-3,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1020,75,1,1410,52,1,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,945,-9,0,1750,-30,0,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1620,-3,0,2215,1,0,0 +2013,6,30,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,846,-10,0,1016,6,0,0 +2013,4,21,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1410,-11,0,1827,-29,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1210,-3,0,1232,-12,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1030,0,0,1345,-1,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,-6,0,950,-13,0,0 +2013,8,3,6,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1535,0,,1634,0,1,1 +2013,8,28,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1349,-6,0,1717,4,0,0 +2013,10,22,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1452,-5,0,1759,10,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2250,-3,0,2355,3,0,0 +2013,4,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1035,-9,0,1309,-14,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,-6,0,1631,-16,0,0 +2013,10,14,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1938,32,1,2044,26,1,0 +2013,8,21,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1800,-5,0,2000,-28,0,0 +2013,7,17,3,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2105,23,1,2355,13,0,0 +2013,10,15,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-2,0,1438,-3,0,0 +2013,10,24,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,11,0,2017,17,1,0 +2013,8,12,1,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,56,1,1632,89,1,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1835,14,0,2000,-1,0,0 +2013,4,10,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,-7,0,1214,-11,0,0 +2013,7,5,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,72,1,1742,59,1,0 +2013,8,15,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1918,103,1,2229,105,1,0 +2013,4,27,6,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1400,-5,0,1724,-12,0,0 +2013,8,15,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,0,0,2031,-14,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,630,-4,0,1015,-13,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,1,0,1550,-7,0,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,14,0,2230,21,1,0 +2013,5,31,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,2,0,915,-4,0,0 +2013,5,28,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1300,-5,0,1550,-22,0,0 +2013,7,24,3,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,0,,1930,0,1,1 +2013,4,5,5,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,-1,0,535,2,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,844,2,0,1647,16,1,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1818,2,0,2029,-13,0,0 +2013,6,22,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,3,0,1343,2,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1429,-3,0,1531,-3,0,0 +2013,9,22,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-8,0,1220,-14,0,0 +2013,4,5,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,640,-2,0,747,-22,0,0 +2013,5,16,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,-2,0,2245,2,0,0 +2013,8,31,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-6,0,1722,-4,0,0 +2013,5,30,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1910,65,1,2040,57,1,0 +2013,9,18,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2216,-1,0,548,-8,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,825,-4,0,1008,-16,0,0 +2013,9,26,4,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,900,0,0,1050,-6,0,0 +2013,4,2,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,900,2,0,1025,-12,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,-7,0,2257,-17,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1518,1,0,1935,-1,0,0 +2013,4,10,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,10,0,1018,13,0,0 +2013,6,6,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,920,82,1,1055,84,1,0 +2013,5,21,2,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1218,-14,0,1300,-18,0,0 +2013,9,29,7,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1242,-5,0,1642,-21,0,0 +2013,6,4,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1237,-2,0,2108,-5,0,0 +2013,4,1,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-5,0,839,24,1,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1645,-4,0,2100,-40,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1117,-3,0,1320,-1,0,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,0,0,2220,2,0,0 +2013,6,17,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1816,13,0,2159,39,1,0 +2013,5,21,2,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,700,-4,0,925,-6,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-4,0,824,-11,0,0 +2013,10,13,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,41,1,2349,41,1,0 +2013,7,2,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1115,-7,0,1406,8,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,835,46,1,1225,48,1,0 +2013,9,19,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,1,0,813,1,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,1,0,1126,-9,0,0 +2013,4,10,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1552,272,1,1739,262,1,0 +2013,8,9,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,655,0,0,820,-7,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,523,-2,0,1224,0,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,930,-2,0,1650,-24,0,0 +2013,4,28,7,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1057,-9,0,1443,-3,0,0 +2013,10,6,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1050,36,1,1225,32,1,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,143,1,1120,136,1,0 +2013,8,25,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,1,0,1130,1,0,0 +2013,8,14,3,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,8,0,1035,-1,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1030,-5,0,1405,-15,0,0 +2013,5,24,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,21,1,1402,30,1,0 +2013,9,30,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1730,-3,0,1825,-8,0,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-4,0,1838,-12,0,0 +2013,9,9,1,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1114,-3,0,1346,-11,0,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2105,60,1,2210,52,1,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,-4,0,1039,2,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2000,28,1,2300,13,0,0 +2013,7,5,5,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-4,0,2113,-16,0,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,948,-6,0,1051,-2,0,0 +2013,9,25,3,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1645,-5,0,1915,-7,0,0 +2013,8,1,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1717,56,1,1945,81,1,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,0,0,1610,-4,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,945,-4,0,1301,0,0,0 +2013,4,22,1,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,856,-4,0,1330,-13,0,0 +2013,5,2,4,UA,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1901,-3,0,1921,-8,0,0 +2013,8,12,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1440,7,0,1555,5,0,0 +2013,8,18,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,610,-6,0,1220,-6,0,0 +2013,5,14,2,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,8,0,1335,0,0,0 +2013,5,16,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1530,-2,0,1650,-8,0,0 +2013,5,5,7,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,2045,-8,0,2330,-17,0,0 +2013,7,13,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1429,0,0,1554,-8,0,0 +2013,4,15,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1320,11,0,1525,16,1,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2125,-1,0,2230,8,0,0 +2013,9,28,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-3,0,1638,-10,0,0 +2013,6,9,7,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,845,-4,0,1105,-9,0,0 +2013,5,14,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1855,-10,0,2149,-8,0,0 +2013,7,15,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,5,0,1707,-7,0,0 +2013,10,15,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1004,18,1,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,1,0,1721,-2,0,0 +2013,4,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1117,-4,0,1231,-9,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,640,-5,0,856,-16,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,-1,0,2359,12,0,0 +2013,7,29,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-9,0,2103,-9,0,0 +2013,6,23,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1955,-9,0,2145,8,0,0 +2013,7,31,3,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1425,28,1,2218,36,1,0 +2013,7,13,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,23,1,725,33,1,0 +2013,5,29,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1012,-6,0,1315,-6,0,0 +2013,10,7,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1436,124,1,1621,118,1,0 +2013,6,27,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,105,1,1236,96,1,0 +2013,5,7,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1505,-2,0,1655,-24,0,0 +2013,9,23,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1117,-7,0,1233,-8,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,935,24,1,1055,21,1,0 +2013,6,23,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1456,12,0,1627,4,0,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,951,6,0,1552,-8,0,0 +2013,4,6,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,955,7,0,1235,1,0,0 +2013,4,25,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,30,1,1517,36,1,0 +2013,9,26,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1816,-8,0,1930,41,1,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1350,1,0,1535,3,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-3,0,1608,-4,0,0 +2013,6,7,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1835,27,1,1955,21,1,0 +2013,6,23,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1500,7,0,1525,16,1,0 +2013,5,7,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1005,0,0,1125,-9,0,0 +2013,9,16,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1620,-2,0,1753,-13,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,844,-4,0,1105,-4,0,0 +2013,8,24,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1829,-5,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1902,25,1,2314,-20,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-3,0,2246,-1,0,0 +2013,7,6,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1751,-5,0,1943,-5,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,110,1,26,90,1,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,835,-5,0,1115,-36,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,18,1,926,18,1,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1227,16,1,1836,19,1,0 +2013,8,10,6,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1515,-5,0,1835,-18,0,0 +2013,4,27,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1850,-12,0,2211,-29,0,0 +2013,8,23,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,29,1,947,14,0,0 +2013,4,9,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1112,-14,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1935,23,1,2125,17,1,0 +2013,10,4,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,6,0,1336,22,1,0 +2013,4,11,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,-1,0,1445,-8,0,0 +2013,4,18,4,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,720,71,1,1235,71,1,0 +2013,4,4,4,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1435,-1,0,2240,-2,0,0 +2013,5,23,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,8,0,1315,-12,0,0 +2013,9,17,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,0,0,1515,-11,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,0,0,1347,-1,0,0 +2013,6,16,7,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1325,-2,0,1525,3,0,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-3,0,1135,-15,0,0 +2013,7,28,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1250,-1,0,1530,-18,0,0 +2013,4,1,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,618,-7,0,650,0,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1016,2,0,1240,-6,0,0 +2013,7,16,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,825,-9,0,0 +2013,5,2,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,746,0,0,1042,-4,0,0 +2013,5,12,7,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-5,0,1855,-1,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1737,-3,0,1852,-15,0,0 +2013,9,27,5,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1128,-11,0,1403,-4,0,0 +2013,5,17,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1810,8,0,2005,7,0,0 +2013,7,30,2,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-8,0,1040,-14,0,0 +2013,9,4,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1438,-6,0,1619,-6,0,0 +2013,4,5,5,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1020,27,1,1205,8,0,0 +2013,8,11,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,-6,0,1823,-12,0,0 +2013,6,4,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,815,17,1,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,29,-12,0,600,-17,0,0 +2013,8,20,2,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2210,11,0,30,5,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,0,0,1740,-2,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,36,1,1735,35,1,0 +2013,10,27,7,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-6,0,1410,0,0,0 +2013,8,22,4,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,745,58,1,850,54,1,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,7,0,1420,5,0,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1603,11,0,1800,3,0,0 +2013,10,7,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,751,-12,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1305,-2,0,1442,1,0,0 +2013,9,21,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1526,12,0,1712,11,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1600,9,0,1851,-6,0,0 +2013,6,8,6,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-2,0,1445,-11,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1550,34,1,1900,28,1,0 +2013,5,25,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,31,1,1920,29,1,0 +2013,6,29,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1930,21,1,2340,13,0,0 +2013,7,11,4,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1420,6,0,1605,-4,0,0 +2013,6,29,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,21,1,1140,15,1,0 +2013,9,3,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1153,-2,0,0 +2013,5,3,5,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1200,80,1,1453,78,1,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2145,-1,0,520,-22,0,0 +2013,4,21,7,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,0,0,2315,3,0,0 +2013,8,21,3,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,615,-6,0,755,-11,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2205,-4,0,2347,-2,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,-4,0,855,-10,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2015,1,0,2155,-11,0,0 +2013,5,6,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-5,0,855,-9,0,0 +2013,5,8,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,25,-8,0,803,9,0,0 +2013,4,5,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,0,0,1602,1,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1305,6,0,1755,-19,0,0 +2013,8,25,7,YV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1225,68,1,1403,62,1,0 +2013,10,29,2,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1015,5,0,1825,-34,0,0 +2013,6,20,4,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-7,0,711,-27,0,0 +2013,8,6,2,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1815,-4,0,2336,-11,0,0 +2013,7,5,5,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-12,0,908,-10,0,0 +2013,10,18,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1605,-3,0,1715,-10,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-8,0,1133,-15,0,0 +2013,5,26,7,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,555,-3,0,900,-13,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1602,-2,0,1715,1,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,-2,0,1220,-8,0,0 +2013,7,1,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,2,0,1524,3,0,0 +2013,6,26,3,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,10,0,1330,-4,0,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,32,1,2249,42,1,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-2,0,1705,-3,0,0 +2013,7,10,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,3,0,2115,-6,0,0 +2013,4,7,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,-5,0,1135,-18,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1134,-4,0,1310,-6,0,0 +2013,5,23,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-4,0,1252,-8,0,0 +2013,9,29,7,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-4,0,801,-11,0,0 +2013,9,12,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1200,0,0,1328,-3,0,0 +2013,9,20,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,443,1,1004,437,1,0 +2013,10,2,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1822,-6,0,2109,-23,0,0 +2013,6,27,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1010,20,1,1110,29,1,0 +2013,7,9,2,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,815,-5,0,950,-25,0,0 +2013,6,25,2,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-12,0,2135,-12,0,0 +2013,8,4,7,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,0,0,1930,-23,0,0 +2013,8,29,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,2,0,830,-2,0,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,705,-3,0,920,-5,0,0 +2013,7,31,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,848,-6,0,913,-11,0,0 +2013,6,22,6,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1915,-10,0,2159,-22,0,0 +2013,8,9,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1110,-4,0,1442,-10,0,0 +2013,8,5,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1254,1,0,1613,-29,0,0 +2013,7,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,715,-4,0,902,9,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,-7,0,1000,-13,0,0 +2013,6,20,4,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1620,-2,0,1800,-18,0,0 +2013,10,25,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1206,-3,0,1445,0,0,0 +2013,7,31,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-7,0,755,-10,0,0 +2013,10,8,2,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,601,25,1,915,20,1,0 +2013,8,23,5,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,-3,0,1553,-8,0,0 +2013,9,12,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,0,0,1145,-4,0,0 +2013,8,6,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1040,-2,0,1318,8,0,0 +2013,7,13,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,28,1,1641,23,1,0 +2013,9,5,4,AA,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1840,-9,0,2010,-3,0,0 +2013,5,10,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,950,4,0,0 +2013,7,25,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,730,20,1,930,-1,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1539,3,0,1824,-23,0,0 +2013,7,7,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1750,-3,0,1915,-7,0,0 +2013,10,3,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,835,0,0,1041,-11,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,24,1,1410,16,1,0 +2013,4,13,6,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,605,0,0,738,-11,0,0 +2013,4,13,6,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,900,-12,0,1106,-5,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,20,1,1750,43,1,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1405,31,1,1645,30,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1057,-2,0,1109,-11,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1610,12,0,1840,9,0,0 +2013,10,28,1,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-6,0,1945,26,1,0 +2013,5,25,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-5,0,1000,-2,0,0 +2013,4,12,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2015,145,1,2304,124,1,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,910,6,0,1010,-1,0,0 +2013,10,5,6,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,910,-8,0,1110,-29,0,0 +2013,5,7,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,625,12,0,1441,45,1,0 +2013,9,20,5,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-11,0,525,-26,0,0 +2013,4,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2040,108,1,2145,100,1,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1741,-4,0,1930,-1,0,0 +2013,9,13,5,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,0,0,849,3,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,3,0,1345,-7,0,0 +2013,8,28,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1646,0,0,1833,-18,0,0 +2013,10,16,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1953,-6,0,2109,-5,0,0 +2013,7,26,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,800,1,0,1045,4,0,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2115,14,0,20,4,0,0 +2013,4,3,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1815,9,0,2142,0,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1920,91,1,2010,86,1,0 +2013,10,15,2,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1222,2,0,1322,-2,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2000,5,0,2130,-8,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,32,1,1910,27,1,0 +2013,4,28,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,16,1,2119,29,1,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-8,0,1835,-17,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1610,-2,0,1817,3,0,0 +2013,9,5,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1243,-15,0,1408,-14,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,36,1,2344,53,1,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2030,-1,0,2156,7,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-4,0,2346,-6,0,0 +2013,8,17,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,18,1,1155,6,0,0 +2013,6,1,6,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,11,0,1435,11,0,0 +2013,10,28,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,34,1,2100,10,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1655,21,1,2230,11,0,0 +2013,6,13,4,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1535,50,1,1920,35,1,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1825,17,1,1930,7,0,0 +2013,6,2,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1620,6,0,1734,2,0,0 +2013,10,15,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1619,-4,0,1750,-14,0,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2330,1,0,800,-16,0,0 +2013,10,11,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1421,-2,0,1533,-8,0,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,-4,0,1539,-11,0,0 +2013,9,22,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1512,-5,0,1636,-10,0,0 +2013,9,9,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-4,0,1640,-13,0,0 +2013,8,7,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,42,1,1900,45,1,0 +2013,8,19,1,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-7,0,1608,-2,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1335,-8,0,1743,-37,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2220,34,1,2354,16,1,0 +2013,9,16,1,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,-5,0,2000,-24,0,0 +2013,4,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,110,1,1622,138,1,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1015,-5,0,1344,5,0,0 +2013,6,22,6,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1750,-3,0,2045,-20,0,0 +2013,7,30,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,0,,1253,0,1,1 +2013,6,18,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1010,-8,0,1128,2,0,0 +2013,8,17,6,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,708,-5,0,823,-8,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1755,-3,0,2033,-14,0,0 +2013,9,27,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-6,0,1108,-7,0,0 +2013,4,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,-2,0,1550,-9,0,0 +2013,5,7,2,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,-3,0,1852,-6,0,0 +2013,6,8,6,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-4,0,1805,-10,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,830,61,1,1130,58,1,0 +2013,8,4,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1130,3,0,1340,-3,0,0 +2013,4,7,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1500,-1,0,1614,0,0,0 +2013,9,17,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1625,0,0,1755,-4,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1700,13,0,2140,-5,0,0 +2013,7,18,4,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1455,234,1,1800,229,1,0 +2013,10,31,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1537,88,1,1739,79,1,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,3,0,2303,19,1,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1815,24,1,2015,15,1,0 +2013,6,11,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1755,-1,0,2016,-35,0,0 +2013,5,4,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,1,0,1345,5,0,0 +2013,6,24,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,205,1,2155,176,1,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1546,-3,0,1602,-12,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1930,14,0,2205,22,1,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1345,-2,0,1512,11,0,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1030,-1,0,1248,12,0,0 +2013,7,13,6,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,627,-8,0,806,-4,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-6,0,1155,-21,0,0 +2013,5,24,5,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,834,15,1,1018,28,1,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,4,0,2254,6,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1725,36,1,1830,33,1,0 +2013,9,8,7,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,827,-6,0,1305,9,0,0 +2013,8,2,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,838,-1,0,1213,-9,0,0 +2013,5,11,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,213,1,1015,207,1,0 +2013,6,25,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,3,0,1830,-13,0,0 +2013,10,20,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,615,-3,0,828,-1,0,0 +2013,8,1,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,0,0,2100,-12,0,0 +2013,9,16,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1056,-10,0,1215,11,0,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1610,-3,0,1732,-8,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,730,-2,0,850,-11,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1940,-2,0,2155,-16,0,0 +2013,8,24,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1725,89,1,1911,76,1,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,920,5,0,1125,19,1,0 +2013,9,9,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1738,18,1,1959,-2,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-8,0,1612,1,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1224,2,0,1339,-21,0,0 +2013,9,6,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1359,-4,0,1531,6,0,0 +2013,4,6,6,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1310,16,1,1523,9,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-3,0,2200,-16,0,0 +2013,9,16,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,1,0,1500,-2,0,0 +2013,9,8,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1331,-12,0,0 +2013,6,3,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,747,-7,0,914,-10,0,0 +2013,5,20,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,740,-14,0,0 +2013,9,11,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,0,0,830,-5,0,0 +2013,9,15,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1228,0,,1413,0,1,1 +2013,10,27,7,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,615,-5,0,930,-19,0,0 +2013,7,24,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,855,-13,0,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1015,5,0,1125,-1,0,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-2,0,920,-10,0,0 +2013,7,17,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1425,5,0,1618,-6,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,-5,0,2229,-35,0,0 +2013,8,5,1,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,2115,8,0,2225,3,0,0 +2013,4,6,6,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-10,0,1020,-20,0,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2045,-7,0,2215,-24,0,0 +2013,5,1,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1705,2,0,1806,13,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,825,6,0,1315,-5,0,0 +2013,6,16,7,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,948,52,1,1035,54,1,0 +2013,7,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,945,-6,0,1105,-9,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,3,0,1410,3,0,0 +2013,8,16,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1330,-7,0,1520,3,0,0 +2013,6,7,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,4,0,1615,20,1,0 +2013,6,23,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2242,0,0,636,-12,0,0 +2013,6,26,3,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2100,1,0,507,6,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2050,15,1,2305,1,0,0 +2013,4,16,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1005,-4,0,1140,-18,0,0 +2013,7,7,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,-9,0,1304,-19,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,-5,0,1453,-9,0,0 +2013,5,23,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,953,-2,0,1309,-2,0,0 +2013,6,28,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1321,-3,0,1423,-19,0,0 +2013,9,29,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,942,7,0,1221,19,1,0 +2013,7,13,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,25,1,1653,19,1,0 +2013,6,8,6,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1345,20,1,2000,10,0,0 +2013,6,14,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,2005,0,0,2106,-10,0,0 +2013,6,28,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,915,-4,0,1015,-8,0,0 +2013,6,5,3,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-7,0,1020,-22,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,0,0,1946,-3,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1340,39,1,1555,47,1,0 +2013,9,11,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,72,1,2110,67,1,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,41,1,1954,71,1,0 +2013,7,15,1,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,835,18,1,1144,12,0,0 +2013,5,22,3,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1911,-8,0,2136,26,1,0 +2013,8,18,7,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,2030,14,0,2246,-9,0,0 +2013,9,21,6,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1551,0,0,1720,-3,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1835,-1,0,2215,-19,0,0 +2013,7,13,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,-9,0,1145,-14,0,0 +2013,8,2,5,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,850,-2,0,1105,1,0,0 +2013,9,11,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1858,-1,0,2008,-5,0,0 +2013,7,2,2,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1140,4,0,1701,10,0,0 +2013,8,30,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-6,0,931,-8,0,0 +2013,6,24,1,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1254,116,1,1752,120,1,0 +2013,6,26,3,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,955,-2,0,1445,2,0,0 +2013,8,16,5,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,0,0,1705,-14,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1345,-3,0,1512,-4,0,0 +2013,7,31,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,31,1,1831,8,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,0,0,2319,-9,0,0 +2013,10,19,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,600,-3,0,840,-16,0,0 +2013,10,27,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-6,0,1027,-10,0,0 +2013,8,1,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,643,-4,0,855,-9,0,0 +2013,5,2,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,605,-3,0,710,0,0,0 +2013,7,12,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1722,17,1,1835,9,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,75,1,816,77,1,0 +2013,4,15,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,0,0,1230,-10,0,0 +2013,7,26,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-3,0,2203,36,1,0 +2013,10,9,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-6,0,1140,-11,0,0 +2013,10,15,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1440,8,0,1555,5,0,0 +2013,5,30,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-6,0,655,-8,0,0 +2013,8,24,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,48,1,2000,36,1,0 +2013,8,20,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,-6,0,730,-30,0,0 +2013,9,1,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,828,-5,0,0 +2013,6,4,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1410,22,1,1555,16,1,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,40,1,1201,71,1,0 +2013,10,28,1,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,0,0,2055,-21,0,0 +2013,4,28,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,10,0,2135,25,1,0 +2013,5,3,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1747,-2,0,1922,-15,0,0 +2013,4,18,4,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,950,14,0,1706,17,1,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1253,0,,1413,0,1,1 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1615,-3,0,1720,-27,0,0 +2013,6,19,3,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,14,0,930,13,0,0 +2013,8,18,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1650,-6,0,2010,-39,0,0 +2013,10,6,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,751,-1,0,933,-3,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,11,0,1958,6,0,0 +2013,7,11,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,802,18,1,900,33,1,0 +2013,8,24,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,855,-2,0,1205,-21,0,0 +2013,7,10,3,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1153,-5,0,2023,43,1,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1835,14,0,2050,20,1,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1717,6,0,2125,-8,0,0 +2013,10,2,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1248,11,0,2101,-5,0,0 +2013,10,25,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,6,0,1400,7,0,0 +2013,10,1,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-7,0,1819,8,0,0 +2013,7,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1405,-1,0,1610,-4,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,26,1,2155,31,1,0 +2013,4,13,6,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-9,0,901,-14,0,0 +2013,6,10,1,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-2,0,2025,-4,0,0 +2013,9,3,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1255,17,1,2134,-5,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,3,0,1500,6,0,0 +2013,5,5,7,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,1,0,1335,-11,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1720,5,0,2010,2,0,0 +2013,9,20,5,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,735,-9,0,1605,-14,0,0 +2013,10,14,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,704,5,0,1220,9,0,0 +2013,6,30,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,11,0,1615,15,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1755,-5,0,1935,-4,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1129,-6,0,1440,-32,0,0 +2013,9,26,4,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-7,0,1045,-9,0,0 +2013,6,6,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,0,0,2000,6,0,0 +2013,8,18,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1705,3,0,1805,-5,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,8,0,1825,-9,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,835,8,0,1135,4,0,0 +2013,5,18,6,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1539,5,0,1543,-8,0,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1710,14,0,1915,20,1,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,1,0,1845,-3,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,23,1,1615,28,1,0 +2013,7,17,3,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1455,-2,0,1905,-27,0,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1425,1,0,1555,-5,0,0 +2013,10,2,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,14,0,1457,24,1,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1144,12,0,1311,0,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,201,1,1109,192,1,0 +2013,10,14,1,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1535,19,1,1800,19,1,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1058,-3,0,1156,-4,0,0 +2013,5,20,1,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1010,-4,0,1455,-3,0,0 +2013,5,16,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,0,0,2224,-5,0,0 +2013,8,30,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,635,-3,0,925,-17,0,0 +2013,8,4,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-2,0,1230,15,1,0 +2013,5,27,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,2005,-3,0,2150,-13,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1311,3,0,1705,-7,0,0 +2013,7,17,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1830,2,0,2124,-3,0,0 +2013,8,20,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1025,-8,0,1301,-1,0,0 +2013,5,4,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1135,-5,0,1345,8,0,0 +2013,10,11,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-1,0,1351,-6,0,0 +2013,10,4,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1610,31,1,1725,27,1,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,6,0,1153,-2,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,-1,0,1535,-7,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,101,1,2226,102,1,0 +2013,5,2,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,745,-23,0,0 +2013,10,27,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-4,0,1650,-6,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-1,0,1053,-15,0,0 +2013,9,9,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-2,0,1221,-12,0,0 +2013,5,25,6,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1131,0,0,1234,-6,0,0 +2013,9,10,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,-5,0,2150,-4,0,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-8,0,2235,-15,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2005,-1,0,2059,-5,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1115,2,0,1310,-4,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2050,4,0,15,-8,0,0 +2013,5,27,1,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-4,0,2045,-16,0,0 +2013,5,13,1,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-5,0,1300,-9,0,0 +2013,4,24,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,8,0,1805,-16,0,0 +2013,5,22,3,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-4,0,818,-1,0,0 +2013,9,12,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,855,-6,0,949,-15,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,0,0,1720,14,0,0 +2013,8,22,4,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1815,-12,0,2102,-14,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1820,43,1,2245,43,1,0 +2013,4,26,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,-3,0,35,2,0,0 +2013,9,22,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-1,0,740,-7,0,0 +2013,4,25,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,1,0,820,-14,0,0 +2013,5,12,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,91,1,959,87,1,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1111,-1,0,1207,10,0,0 +2013,7,16,2,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1616,-6,0,1821,3,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1325,5,0,1435,5,0,0 +2013,5,1,3,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1221,-1,0,2057,-10,0,0 +2013,9,26,4,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,9,0,1831,-1,0,0 +2013,6,13,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1530,227,1,1815,235,1,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1114,1,0,1405,-13,0,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1725,73,1,2005,83,1,0 +2013,5,30,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1335,2,0,1540,-15,0,0 +2013,7,26,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2055,2,0,2225,0,0,0 +2013,4,5,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-2,0,1310,-3,0,0 +2013,9,12,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-7,0,826,-1,0,0 +2013,5,6,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1420,46,1,1505,49,1,0 +2013,7,23,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,-2,0,1505,-10,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1935,45,1,2130,27,1,0 +2013,5,15,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-3,0,1747,-13,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1900,109,1,2031,92,1,0 +2013,9,25,3,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1211,-2,0,1459,-13,0,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,700,0,0,850,-5,0,0 +2013,7,1,1,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1035,7,0,1630,3,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,52,1,2355,51,1,0 +2013,7,5,5,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1921,-2,0,2337,15,1,0 +2013,4,1,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,910,-3,0,1025,-11,0,0 +2013,7,19,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,2,0,2118,1,0,0 +2013,7,3,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,-6,0,1552,-9,0,0 +2013,7,8,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,0,0,935,5,0,0 +2013,6,27,4,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,915,3,0,935,7,0,0 +2013,7,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,7,0,1110,1,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1035,2,0,1335,7,0,0 +2013,5,17,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1119,-5,0,1259,-14,0,0 +2013,9,16,1,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-7,0,1240,-8,0,0 +2013,8,5,1,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1409,-8,0,1645,-6,0,0 +2013,8,23,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1848,-10,0,2018,-3,0,0 +2013,4,14,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1135,48,1,1355,50,1,0 +2013,5,15,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,3,0,2250,12,0,0 +2013,8,5,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1030,2,0,1035,-2,0,0 +2013,8,26,1,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,730,-6,0,1021,-18,0,0 +2013,5,15,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1800,0,,2026,0,1,1 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,700,-2,0,900,-3,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2050,14,0,2210,0,0,0 +2013,4,24,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-3,0,1956,1,0,0 +2013,10,30,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1830,-5,0,2124,-45,0,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,555,-1,0,915,-3,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,725,-5,0,1156,-18,0,0 +2013,5,2,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,645,-5,0,1508,-15,0,0 +2013,10,29,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1745,-5,0,2152,-18,0,0 +2013,6,26,3,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,740,11,0,1014,4,0,0 +2013,7,28,7,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,132,1,1755,214,1,0 +2013,6,28,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,65,1,1133,56,1,0 +2013,4,5,5,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,1225,6,0,1320,-3,0,0 +2013,5,20,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,825,-5,0,1030,-5,0,0 +2013,9,20,5,DL,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,700,3,0,835,-9,0,0 +2013,8,22,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-1,0,1845,-20,0,0 +2013,5,2,4,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,-4,0,1040,-21,0,0 +2013,10,23,3,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,715,11,0,1155,2,0,0 +2013,7,21,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,66,1,2215,83,1,0 +2013,4,1,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1100,22,1,1220,16,1,0 +2013,9,11,3,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1344,4,0,1556,0,0,0 +2013,6,5,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1428,-3,0,1513,-11,0,0 +2013,4,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,60,1,2259,47,1,0 +2013,9,13,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,0,,716,0,1,1 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1105,-3,0,1340,4,0,0 +2013,10,29,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,710,-5,0,1050,-20,0,0 +2013,9,14,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,-4,0,2014,-15,0,0 +2013,7,22,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,0,0,1920,1,0,0 +2013,8,4,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,43,1,1415,40,1,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2103,111,1,9,106,1,0 +2013,7,4,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,829,-11,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,0,0,5,-4,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,23,1,2019,14,0,0 +2013,7,26,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1745,231,1,1820,255,1,0 +2013,8,1,4,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,824,-7,0,933,-16,0,0 +2013,6,27,4,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1115,0,0,1252,-12,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1040,-3,0,1259,-10,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,830,-4,0,935,-11,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1812,67,1,1941,33,1,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,-2,0,2250,2,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2205,47,1,2258,46,1,0 +2013,5,6,1,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,-2,0,1745,-27,0,0 +2013,7,18,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1018,0,0,1150,-3,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,4,0,2355,2,0,0 +2013,10,2,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-7,0,1527,-9,0,0 +2013,9,8,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1139,1,0,1239,-1,0,0 +2013,5,9,4,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1848,-5,0,1955,-3,0,0 +2013,8,24,6,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-4,0,1028,-36,0,0 +2013,10,13,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,18,1,2318,56,1,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1255,3,0,1420,-1,0,0 +2013,7,3,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,31,1,1535,35,1,0 +2013,4,9,2,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1255,73,1,1432,47,1,0 +2013,9,24,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,-4,0,1121,-2,0,0 +2013,7,30,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1619,2,0,2042,14,0,0 +2013,10,11,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,4,0,2130,-1,0,0 +2013,10,16,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1000,-13,0,1030,-20,0,0 +2013,8,16,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,825,1,0,920,-11,0,0 +2013,8,15,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,833,-8,0,1007,-30,0,0 +2013,10,22,2,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-1,0,1534,-10,0,0 +2013,4,12,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1936,0,,2256,0,1,1 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1817,-2,0,1915,7,0,0 +2013,8,28,3,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-5,0,2101,-4,0,0 +2013,7,3,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,93,1,1735,84,1,0 +2013,6,1,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-6,0,1235,-26,0,0 +2013,9,7,6,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1700,0,0,2000,-21,0,0 +2013,9,7,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1847,-7,0,2034,-19,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2220,-3,0,15,-4,0,0 +2013,7,25,4,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,0,0,1105,1,0,0 +2013,7,19,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,705,-2,0,800,-10,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1539,241,1,1824,227,1,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1625,15,1,1740,5,0,0 +2013,6,2,7,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,-3,0,2140,-7,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,9,0,2350,3,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,10,0,1313,-1,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,-3,0,1256,21,1,0 +2013,9,18,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1659,-3,0,1859,-9,0,0 +2013,10,28,1,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,1650,10,0,1820,-1,0,0 +2013,9,28,6,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,655,0,0,920,-14,0,0 +2013,6,24,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2050,0,,2205,0,1,1 +2013,9,12,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1455,28,1,1633,56,1,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,1,0,1049,3,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,3,0,1250,15,1,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2140,-1,0,2317,-17,0,0 +2013,4,14,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1251,15,1,1500,12,0,0 +2013,6,4,2,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1320,7,0,1350,6,0,0 +2013,10,5,6,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,643,16,1,940,0,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-5,0,2040,-4,0,0 +2013,8,6,2,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1216,-7,0,1302,-17,0,0 +2013,9,28,6,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1345,-1,0,1935,-24,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,945,1,0,1040,-8,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1401,-5,0,1515,-13,0,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,745,-5,0,855,-7,0,0 +2013,7,20,6,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1158,6,0,1440,11,0,0 +2013,7,16,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,-4,0,1500,-15,0,0 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1305,25,1,2104,23,1,0 +2013,9,11,3,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1630,54,1,1809,30,1,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1840,0,0,2045,-13,0,0 +2013,6,29,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,700,14,0,953,-4,0,0 +2013,4,19,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1302,0,,1820,0,1,1 +2013,4,22,1,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1729,-3,0,2044,7,0,0 +2013,8,11,7,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1430,16,1,1520,12,0,0 +2013,4,16,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1545,0,0,1831,3,0,0 +2013,7,3,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,5,0,1015,29,1,0 +2013,4,12,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-4,0,1030,9,0,0 +2013,6,6,4,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,16,1,2015,-4,0,0 +2013,8,8,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,910,-9,0,1105,-27,0,0 +2013,8,23,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1759,4,0,2013,4,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1817,13,0,2004,32,1,0 +2013,6,30,7,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,-6,0,1900,-47,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1830,14,0,2100,-19,0,0 +2013,8,7,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1030,13,0,1245,7,0,0 +2013,10,4,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1251,-6,0,1501,-4,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,144,1,614,133,1,0 +2013,5,11,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1105,1,0,1350,-28,0,0 +2013,8,5,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-8,0,1518,-10,0,0 +2013,5,12,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,742,0,0,910,-5,0,0 +2013,6,30,7,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2105,6,0,2215,6,0,0 +2013,5,21,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1255,-5,0,1700,-5,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1545,57,1,1730,59,1,0 +2013,10,7,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1855,10,0,2020,7,0,0 +2013,9,26,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1620,-2,0,1753,2,0,0 +2013,9,10,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,909,-14,0,1044,-16,0,0 +2013,8,19,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1938,-13,0,2104,-21,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1810,1,0,1915,-8,0,0 +2013,5,24,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,-5,0,2018,-11,0,0 +2013,4,9,2,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1835,-7,0,2050,-13,0,0 +2013,10,30,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,33,1,951,20,1,0 +2013,7,4,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1010,-6,0,1248,-24,0,0 +2013,10,21,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,616,-4,0,815,-11,0,0 +2013,9,21,6,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2015,-5,0,2142,6,0,0 +2013,8,22,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1605,34,1,1805,17,1,0 +2013,8,3,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,-6,0,1100,-4,0,0 +2013,6,2,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-2,0,1127,4,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1829,-2,0,2133,8,0,0 +2013,4,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,830,12,0,956,20,1,0 +2013,10,7,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,810,11,0,910,16,1,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,72,1,2112,73,1,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-3,0,1530,-20,0,0 +2013,5,20,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,9,0,900,14,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,-1,0,1018,-3,0,0 +2013,6,7,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,4,0,2101,0,0,0 +2013,8,30,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1727,59,1,1752,145,1,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-6,0,1210,-18,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,625,7,0,735,-10,0,0 +2013,8,16,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,13,0,1535,6,0,0 +2013,5,29,3,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1510,-4,0,655,-12,0,0 +2013,9,7,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1040,2,0,1210,-4,0,0 +2013,7,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1350,-9,0,1518,-9,0,0 +2013,6,14,5,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1730,-2,0,1858,86,1,0 +2013,10,10,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-6,0,1415,-6,0,0 +2013,10,9,3,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,758,-3,0,1103,-3,0,0 +2013,5,8,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,0,0,2255,-2,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,745,20,1,1100,12,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,1,0,830,-10,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-6,0,930,-13,0,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-1,0,730,-6,0,0 +2013,5,7,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1143,-7,0,1520,-14,0,0 +2013,9,13,5,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1520,-3,0,655,-12,0,0 +2013,5,5,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,13,0,5,3,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1351,0,0,1528,-3,0,0 +2013,8,8,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1656,-7,0,1918,-10,0,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2201,-5,0,2312,-18,0,0 +2013,4,15,1,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,9,0,1855,8,0,0 +2013,6,10,1,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,825,-6,0,1130,-17,0,0 +2013,5,1,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-3,0,1152,-28,0,0 +2013,4,27,6,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1015,0,0,1140,-1,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1628,-3,0,1659,-5,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,-2,0,1540,-8,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2240,0,0,112,8,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1025,13,0,1345,56,1,0 +2013,9,2,1,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,13,0,1058,19,1,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1942,44,1,2100,35,1,0 +2013,7,13,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1707,75,1,1924,40,1,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,915,-3,0,1025,-4,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,850,-4,0,1030,0,0,0 +2013,7,5,5,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-1,0,1332,-12,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1115,6,0,1230,8,0,0 +2013,7,2,2,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,17,1,2224,-3,0,0 +2013,8,14,3,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1917,31,1,2019,19,1,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,2005,-5,0,4,-23,0,0 +2013,6,11,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-7,0,1441,-15,0,0 +2013,6,28,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1345,-11,0,0 +2013,7,6,6,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1708,-8,0,1805,-13,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-6,0,1110,-16,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,655,-1,0,819,-4,0,0 +2013,4,12,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,-2,0,1825,-7,0,0 +2013,6,5,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1540,-8,0,1741,-22,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,1,0,1915,14,0,0 +2013,10,24,4,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1115,12,0,1650,2,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,31,1,1415,17,1,0 +2013,7,15,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2349,-10,0,747,0,0,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1150,17,1,1335,2,0,0 +2013,4,6,6,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1940,-1,0,2315,-14,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1940,24,1,2255,10,0,0 +2013,8,8,4,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,850,69,1,1031,70,1,0 +2013,4,15,1,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,700,2,0,800,-6,0,0 +2013,10,4,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,29,1,1035,9,0,0 +2013,4,16,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1310,24,1,2121,7,0,0 +2013,7,29,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2155,0,0,543,-26,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1216,-2,0,1352,-8,0,0 +2013,5,30,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-3,0,1858,-8,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1245,-1,0,1515,6,0,0 +2013,4,11,4,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1508,78,1,1640,69,1,0 +2013,7,26,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,95,1,1905,91,1,0 +2013,4,8,1,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1215,46,1,1453,31,1,0 +2013,7,11,4,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,620,-1,0,900,-2,0,0 +2013,9,13,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-3,0,2128,-17,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,3,0,1104,4,0,0 +2013,6,6,4,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,930,-3,0,1800,-22,0,0 +2013,7,24,3,OO,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1232,-10,0,1606,-28,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2035,9,0,2330,7,0,0 +2013,9,30,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-4,0,2000,-38,0,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1749,-3,0,1838,-8,0,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,7,0,2012,1,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,11,0,1055,17,1,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1107,3,0,1231,-22,0,0 +2013,4,27,6,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2205,1,0,550,11,0,0 +2013,6,8,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-13,0,1920,-18,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,650,16,1,820,12,0,0 +2013,4,8,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,19,1,2140,-9,0,0 +2013,9,19,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-3,0,1014,-21,0,0 +2013,9,21,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1734,-3,0,2009,-32,0,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2030,21,1,2145,25,1,0 +2013,4,7,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,830,-2,0,925,-8,0,0 +2013,4,16,2,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1345,-7,0,2204,-29,0,0 +2013,9,28,6,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1030,-3,0,1200,-6,0,0 +2013,8,28,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,840,3,0,925,-6,0,0 +2013,6,18,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1040,-9,0,1320,-8,0,0 +2013,9,1,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,-8,0,2255,-12,0,0 +2013,10,18,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,25,1,1910,15,1,0 +2013,7,8,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1705,-3,0,1935,-10,0,0 +2013,9,18,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1415,10,0,1758,-1,0,0 +2013,4,3,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-2,0,935,-1,0,0 +2013,7,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,25,1,1840,21,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,10,0,923,16,1,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,-1,0,920,0,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,910,-2,0,1015,-9,0,0 +2013,4,6,6,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,942,-8,0,1136,-20,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,29,1,1550,32,1,0 +2013,10,30,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1420,14,0,1550,14,0,0 +2013,6,27,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1239,5,0,1338,-3,0,0 +2013,4,21,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-6,0,1800,-2,0,0 +2013,6,21,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,6,0,2227,5,0,0 +2013,6,19,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,630,-2,0,645,-5,0,0 +2013,8,11,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-2,0,901,4,0,0 +2013,10,27,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-2,0,2126,13,0,0 +2013,7,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1350,-5,0,1641,4,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,26,1,2300,22,1,0 +2013,7,16,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-7,0,1019,-24,0,0 +2013,4,16,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2143,4,0,2359,-9,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,8,0,1555,-3,0,0 +2013,5,7,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,720,-3,0,918,-17,0,0 +2013,6,17,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1725,85,1,2045,87,1,0 +2013,6,5,3,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,-7,0,1830,-34,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1505,2,0,1825,-5,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1415,25,1,1602,7,0,0 +2013,10,16,3,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1729,-5,0,2001,-9,0,0 +2013,6,4,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,630,-1,0,720,-9,0,0 +2013,6,29,6,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,800,-2,0,1145,12,0,0 +2013,10,13,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,-8,0,813,-33,0,0 +2013,6,11,2,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,840,-6,0,1130,-35,0,0 +2013,7,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,2010,25,1,6,46,1,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,26,1,2320,4,0,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2020,-2,0,2335,-12,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1500,386,1,1813,414,1,0 +2013,8,27,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,556,-5,0,805,-15,0,0 +2013,7,30,2,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-4,0,925,-4,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,-2,0,1915,-12,0,0 +2013,7,6,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1650,54,1,1750,30,1,0 +2013,10,11,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,16,1,1905,10,0,0 +2013,8,12,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,0,0,1359,0,0,0 +2013,4,8,1,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-4,0,836,-1,0,0 +2013,9,16,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1538,-1,0,1720,0,0,0 +2013,6,5,3,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2050,41,1,2255,32,1,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1612,13,0,1929,-14,0,0 +2013,10,6,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1541,13,0,1730,35,1,0 +2013,6,16,7,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-8,0,1404,-2,0,0 +2013,10,17,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,4,0,1257,22,1,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,7,0,2018,39,1,0 +2013,8,17,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,0,0,745,-2,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1025,2,0,1210,-5,0,0 +2013,10,4,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-2,0,740,-13,0,0 +2013,10,20,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1035,11,0,1433,-18,0,0 +2013,8,17,6,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,0,0,1535,-16,0,0 +2013,9,21,6,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,849,-6,0,1020,-3,0,0 +2013,5,18,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,508,1,1248,485,1,0 +2013,4,5,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,42,1,2025,27,1,0 +2013,7,24,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2005,-1,0,2115,27,1,0 +2013,8,14,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1535,1,0,1710,1,0,0 +2013,6,6,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,139,1,1619,130,1,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,610,-5,0,855,-18,0,0 +2013,10,30,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,-9,0,2103,-15,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2140,11,0,2355,-6,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1529,-1,0,1723,-14,0,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1040,-2,0,1217,-17,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,859,7,0,1602,6,0,0 +2013,4,10,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,725,-2,0,0 +2013,6,29,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,905,-5,0,1015,-19,0,0 +2013,6,17,1,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,0,0,1631,5,0,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-3,0,1115,8,0,0 +2013,8,1,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-14,0,1821,-16,0,0 +2013,4,17,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-5,0,2040,4,0,0 +2013,10,1,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1435,-7,0,1620,-23,0,0 +2013,4,4,4,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1925,-3,0,2241,-9,0,0 +2013,7,31,3,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,2,0,1030,-7,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,950,-5,0,1246,-30,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1445,1,0,1628,-23,0,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1450,15,1,1730,-4,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,-2,0,2324,0,0,0 +2013,4,26,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,87,1,2210,79,1,0 +2013,6,2,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2235,64,1,307,49,1,0 +2013,8,6,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1600,8,0,2007,-4,0,0 +2013,9,6,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2130,-7,0,535,-26,0,0 +2013,4,9,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2020,7,0,2150,-3,0,0 +2013,7,29,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,122,1,1655,112,1,0 +2013,5,15,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,53,1,2002,45,1,0 +2013,8,6,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2347,-2,0,544,0,0,0 +2013,10,5,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,-3,0,1045,-6,0,0 +2013,6,18,2,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,720,9,0,1020,10,0,0 +2013,4,5,5,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,-5,0,1918,-9,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,-3,0,830,-8,0,0 +2013,6,19,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1035,-1,0,1300,-10,0,0 +2013,5,3,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,0,0,2225,6,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,2,0,1655,5,0,0 +2013,4,7,7,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,945,0,0,1315,-10,0,0 +2013,10,16,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1705,0,0,1830,-7,0,0 +2013,5,7,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1302,-4,0,1611,2,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1235,8,0,1430,-1,0,0 +2013,10,3,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,940,2,0,1633,-15,0,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,945,2,0,1506,-20,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,720,-2,0,1010,-15,0,0 +2013,9,24,2,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1600,-9,0,1741,-9,0,0 +2013,7,19,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,730,-3,0,845,-20,0,0 +2013,8,25,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1200,-2,0,1415,-14,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,0,,2349,0,1,1 +2013,10,23,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,20,1,1435,1,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,6,0,1648,24,1,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2102,54,1,2229,48,1,0 +2013,7,24,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,1,0,2000,-1,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,929,5,0,1205,-6,0,0 +2013,8,15,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1145,-20,0,0 +2013,6,6,4,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,655,-4,0,940,-1,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,26,1,950,6,0,0 +2013,4,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1215,-3,0,1400,7,0,0 +2013,5,14,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,-4,0,940,-30,0,0 +2013,5,21,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,21,1,1408,14,0,0 +2013,7,20,6,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2029,-2,0,2359,-2,0,0 +2013,7,8,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-1,0,905,-3,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,915,-1,0,1020,-4,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,-1,0,1410,-1,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,800,-4,0,1040,-8,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1748,-5,0,1914,-17,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,2,0,1410,-7,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1055,57,1,1310,55,1,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2039,-2,0,2341,28,1,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,2,0,2000,3,0,0 +2013,4,21,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-8,0,1245,-15,0,0 +2013,7,2,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,21,1,1925,1,0,0 +2013,7,13,6,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,650,28,1,815,32,1,0 +2013,9,4,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1125,-8,0,1900,-26,0,0 +2013,4,18,4,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-6,0,1815,13,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1410,47,1,1625,86,1,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1257,31,1,1722,32,1,0 +2013,10,13,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1920,3,0,2011,8,0,0 +2013,6,7,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1640,111,1,1745,124,1,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,27,1,950,25,1,0 +2013,8,15,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,15,1,1420,16,1,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,-1,0,910,-9,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1815,-2,0,1905,-7,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1156,-1,0,2035,-7,0,0 +2013,10,31,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-3,0,1113,-4,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1230,3,0,1535,19,1,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1859,-1,0,2230,4,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,-2,0,1321,0,0,0 +2013,6,20,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,654,-4,0,755,-7,0,0 +2013,9,13,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,264,1,1435,246,1,0 +2013,9,13,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1730,-3,0,1845,-14,0,0 +2013,8,18,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-1,0,1227,-10,0,0 +2013,10,24,4,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1656,-6,0,1843,-15,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1015,107,1,1410,127,1,0 +2013,9,15,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,-4,0,1950,-15,0,0 +2013,5,28,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1700,31,1,1959,11,0,0 +2013,8,16,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,14,0,815,45,1,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1802,-4,0,2056,-6,0,0 +2013,10,19,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1120,-9,0,1230,-10,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,915,4,0,0 +2013,4,20,6,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-7,0,859,0,0,0 +2013,6,21,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1701,114,1,1918,111,1,0 +2013,7,13,6,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1055,-4,0,1345,18,1,0 +2013,8,6,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,-1,0,2105,-6,0,0 +2013,4,7,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-5,0,2211,-9,0,0 +2013,8,25,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-13,0,848,-2,0,0 +2013,9,19,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,1,0,730,3,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-2,0,806,7,0,0 +2013,10,20,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,709,-3,0,943,-13,0,0 +2013,6,16,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1720,-4,0,1900,15,1,0 +2013,6,26,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-6,0,728,-14,0,0 +2013,9,2,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,14,0,2257,14,0,0 +2013,4,19,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1520,34,1,1624,21,1,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1345,7,0,1435,-2,0,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,725,-2,0,824,0,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-1,0,2059,-18,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1306,-4,0,1614,-12,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,815,0,0,1150,-9,0,0 +2013,7,16,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1122,11,0,1420,7,0,0 +2013,7,17,3,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,33,1,2005,44,1,0 +2013,5,15,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-9,0,1904,14,0,0 +2013,5,16,4,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1923,-8,0,2055,-17,0,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2222,86,1,634,82,1,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,-5,0,2055,-8,0,0 +2013,9,24,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1640,13,0,1820,4,0,0 +2013,9,13,5,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,25,1,1035,25,1,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-1,0,1349,-3,0,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2220,176,1,2350,157,1,0 +2013,5,29,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,-2,0,932,-2,0,0 +2013,7,17,3,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,-3,0,1940,-9,0,0 +2013,4,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,951,-7,0,1614,-11,0,0 +2013,6,16,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1154,-3,0,1453,-28,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,5,0,2230,12,0,0 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,7,0,1430,-5,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-1,0,910,-25,0,0 +2013,10,22,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-9,0,1621,-14,0,0 +2013,9,11,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1635,247,1,1844,296,1,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1809,-3,0,2026,-5,0,0 +2013,9,20,5,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,2,0,740,-6,0,0 +2013,6,29,6,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1651,37,1,2013,39,1,0 +2013,8,30,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,700,-4,0,1528,-18,0,0 +2013,9,29,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1452,-8,0,1649,9,0,0 +2013,4,13,6,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1834,-9,0,2037,-27,0,0 +2013,6,27,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,610,-2,0,740,-6,0,0 +2013,10,19,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,940,1,0,1305,-14,0,0 +2013,8,10,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1035,-4,0,1135,-6,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1054,-5,0,1856,-15,0,0 +2013,6,19,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,555,-5,0,735,-14,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,843,-5,0,957,-14,0,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,3,0,2233,17,1,0 +2013,8,11,7,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,-8,0,2146,-31,0,0 +2013,4,4,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1945,2,0,2100,-2,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-4,0,1132,-6,0,0 +2013,4,4,4,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1855,7,0,2010,-3,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1257,-1,0,1412,2,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1055,-2,0,1206,-15,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1945,9,0,2045,6,0,0 +2013,9,16,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,830,-4,0,940,-9,0,0 +2013,4,26,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,11,0,1510,40,1,0 +2013,6,20,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,1028,-7,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,2,0,1640,0,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1655,6,0,2230,3,0,0 +2013,6,3,1,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1530,-4,0,1835,-2,0,0 +2013,4,17,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,717,-10,0,945,-15,0,0 +2013,7,17,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1602,-2,0,1744,-10,0,0 +2013,10,12,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1705,25,1,1825,12,0,0 +2013,5,6,1,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1425,8,0,1530,4,0,0 +2013,4,24,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,29,1,1041,12,0,0 +2013,5,20,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1750,-5,0,2036,-10,0,0 +2013,6,10,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1515,-3,0,1635,-12,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-3,0,2159,3,0,0 +2013,5,6,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,58,1,1305,54,1,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,30,1,1233,88,1,0 +2013,7,24,3,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1433,-6,0,1546,-18,0,0 +2013,6,9,7,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,-2,0,1425,-15,0,0 +2013,9,25,3,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1040,0,0,1150,5,0,0 +2013,10,13,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1820,-3,0,1935,-9,0,0 +2013,5,18,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,1,0,1309,-7,0,0 +2013,7,15,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1853,-13,0,2229,3,0,0 +2013,4,22,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,-7,0,1132,-12,0,0 +2013,6,14,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,18,1,1635,21,1,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,800,-2,0,1230,5,0,0 +2013,6,21,5,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1640,92,1,1751,97,1,0 +2013,5,7,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-4,0,1851,-35,0,0 +2013,10,28,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-4,0,752,-7,0,0 +2013,4,13,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-5,0,750,-7,0,0 +2013,8,18,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1300,9,0,1813,4,0,0 +2013,10,18,5,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1117,12,0,1839,5,0,0 +2013,7,14,7,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1915,66,1,2140,52,1,0 +2013,6,25,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,37,1,1315,39,1,0 +2013,7,19,5,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,-2,0,1711,-5,0,0 +2013,5,8,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-20,0,1926,-3,0,0 +2013,10,29,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1618,41,1,1709,40,1,0 +2013,8,15,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1125,4,0,1300,6,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1615,15,1,1623,0,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1810,-3,0,2119,-15,0,0 +2013,6,4,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,25,1,1746,15,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-3,0,903,-4,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1040,-3,0,1916,-16,0,0 +2013,10,14,1,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,3,0,1540,18,1,0 +2013,8,4,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1004,-6,0,1100,-4,0,0 +2013,9,18,3,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2016,-3,0,1153,18,1,0 +2013,6,20,4,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-3,0,733,-11,0,0 +2013,10,10,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-3,0,1450,5,0,0 +2013,4,6,6,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,759,0,0,1029,-15,0,0 +2013,7,16,2,DL,14679,San Diego International,San Diego,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-8,0,1902,1,0,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,820,1,0,925,-4,0,0 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1315,13,0,1603,5,0,0 +2013,6,7,5,EV,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,835,1,0,1028,-3,0,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,132,1,1550,164,1,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,-3,0,1130,12,0,0 +2013,8,5,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,735,-5,0,905,-7,0,0 +2013,6,18,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-6,0,1601,1,0,0 +2013,8,4,7,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1847,-5,0,2135,-17,0,0 +2013,10,2,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1734,-5,0,1923,-7,0,0 +2013,9,4,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1850,-8,0,2052,6,0,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1905,10,0,2140,1,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,900,-4,0,1105,2,0,0 +2013,7,18,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1702,3,0,2003,7,0,0 +2013,4,27,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,-8,0,2151,-6,0,0 +2013,8,26,1,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1307,-15,0,1800,-13,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,36,1,1505,25,1,0 +2013,9,29,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1730,-5,0,1748,1,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2103,4,0,2350,-12,0,0 +2013,6,19,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1128,-10,0,1515,6,0,0 +2013,4,15,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,700,22,1,940,19,1,0 +2013,7,24,3,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,4,0,827,5,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,3,0,2030,2,0,0 +2013,7,29,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1735,20,1,1845,24,1,0 +2013,7,11,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1753,-7,0,1935,-6,0,0 +2013,7,18,4,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1205,-5,0,1330,-15,0,0 +2013,8,23,5,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-10,0,1031,-18,0,0 +2013,8,19,1,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,-7,0,1925,2,0,0 +2013,8,17,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-11,0,1350,-14,0,0 +2013,4,30,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1705,-16,0,1835,-14,0,0 +2013,6,17,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1254,4,0,1532,-6,0,0 +2013,9,7,6,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-10,0,1118,-14,0,0 +2013,7,14,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1650,1,0,1805,-2,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,16,1,1909,5,0,0 +2013,5,5,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1415,8,0,1540,8,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1500,17,1,1925,0,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1054,20,1,1224,-3,0,0 +2013,7,28,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1015,-3,0,1353,5,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,830,-3,0,929,11,0,0 +2013,7,3,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2028,7,0,2341,5,0,0 +2013,4,18,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,30,1,1715,20,1,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,2,0,1349,-13,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,-3,0,956,-16,0,0 +2013,8,18,7,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,2,0,2308,-42,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,7,0,1345,13,0,0 +2013,9,4,3,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1705,3,0,1850,-9,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-1,0,859,-10,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1553,9,0,1754,15,1,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1520,14,0,1650,5,0,0 +2013,4,28,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1608,4,0,1755,13,0,0 +2013,7,8,1,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1928,6,0,2103,7,0,0 +2013,4,5,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-1,0,1115,11,0,0 +2013,8,6,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1005,99,1,1152,102,1,0 +2013,8,24,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1405,-2,0,1550,-15,0,0 +2013,6,7,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,4,0,1642,-9,0,0 +2013,5,22,3,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,101,1,2033,97,1,0 +2013,10,29,2,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1808,5,0,2029,-2,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,0,0,1253,-23,0,0 +2013,8,23,5,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,710,8,0,1510,4,0,0 +2013,4,11,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-10,0,1857,-2,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1509,65,1,1729,75,1,0 +2013,10,2,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-5,0,900,-18,0,0 +2013,5,9,4,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1856,9,0,2118,17,1,0 +2013,9,16,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,34,1,755,24,1,0 +2013,6,8,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,855,-2,0,1107,7,0,0 +2013,8,5,1,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1420,-7,0,1551,15,1,0 +2013,6,20,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,800,-4,0,910,-2,0,0 +2013,5,21,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,0,,820,0,1,1 +2013,9,9,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1126,-10,0,1420,-22,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,156,1,1225,150,1,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1740,-7,0,1828,-9,0,0 +2013,6,3,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1420,-5,0,1527,-4,0,0 +2013,5,30,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,6,0,1030,3,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,-2,0,1034,-24,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1615,-3,0,1720,-12,0,0 +2013,8,7,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,0,0,2142,13,0,0 +2013,10,8,2,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,755,4,0,1212,14,0,0 +2013,7,8,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1738,0,0,1958,-6,0,0 +2013,8,27,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1816,-10,0,1930,19,1,0 +2013,4,27,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1059,-1,0,1657,6,0,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1445,0,,1545,0,1,1 +2013,7,10,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1205,24,1,1249,18,1,0 +2013,7,16,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,530,-5,0,705,-15,0,0 +2013,6,28,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1420,193,1,1600,187,1,0 +2013,4,27,6,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-11,0,10,-17,0,0 +2013,10,24,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-9,0,817,-21,0,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1955,-3,0,2120,-24,0,0 +2013,4,15,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-2,0,2051,-14,0,0 +2013,5,12,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-12,0,700,3,0,0 +2013,10,19,6,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-8,0,1014,-14,0,0 +2013,9,15,7,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2156,-2,0,2313,-12,0,0 +2013,8,27,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-8,0,911,-8,0,0 +2013,10,26,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,920,-17,0,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-4,0,1124,34,1,0 +2013,6,3,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,-4,0,1330,-16,0,0 +2013,4,21,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1013,-3,0,1139,-10,0,0 +2013,5,9,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-6,0,1255,0,0,0 +2013,5,16,4,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,12,0,609,-3,0,0 +2013,6,7,5,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2054,60,1,2314,61,1,0 +2013,5,17,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,728,-2,0,906,-5,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,935,3,0,1055,-1,0,0 +2013,8,7,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,925,-1,0,1040,1,0,0 +2013,8,4,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-4,0,1122,-16,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1950,-7,0,2110,-5,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1140,0,,1458,0,1,1 +2013,10,23,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2006,8,0,2137,19,1,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-3,0,1639,13,0,0 +2013,9,26,4,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-6,0,2036,-7,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2256,8,0,21,-3,0,0 +2013,10,8,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1742,-18,0,0 +2013,10,25,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1535,-4,0,1750,-17,0,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1700,-2,0,1854,-3,0,0 +2013,5,12,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,700,0,0,820,-11,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1801,-5,0,1945,-8,0,0 +2013,7,31,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,845,13,0,1645,10,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2050,24,1,2305,2,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1001,0,,1304,0,1,1 +2013,8,27,2,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,850,135,1,1220,121,1,0 +2013,7,25,4,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1646,-5,0,1811,5,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1427,93,1,1623,81,1,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1625,7,0,1835,2,0,0 +2013,6,3,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1629,54,1,1814,66,1,0 +2013,7,4,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,600,-5,0,722,-13,0,0 +2013,7,5,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,5,0,2052,-11,0,0 +2013,8,7,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,921,-3,0,1201,-11,0,0 +2013,10,29,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,800,-6,0,1022,16,1,0 +2013,10,4,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,43,1,1850,49,1,0 +2013,6,17,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1938,58,1,2048,40,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,730,-2,0,1055,-11,0,0 +2013,9,15,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1926,-7,0,2033,-14,0,0 +2013,6,9,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,36,1,1635,39,1,0 +2013,5,10,5,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1455,-12,0,1646,-26,0,0 +2013,10,21,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,540,7,0,637,2,0,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,825,0,,950,0,1,1 +2013,10,20,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1005,18,1,1105,23,1,0 +2013,4,26,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1255,-7,0,1441,-25,0,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1735,99,1,2325,88,1,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1544,21,1,1753,9,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,4,0,2115,13,0,0 +2013,5,25,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1154,1,0,1328,-15,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1145,-2,0,1513,-19,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1300,-4,0,1625,-26,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1000,1,0,1125,-21,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,2,0,1825,15,1,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1147,32,1,2023,3,0,0 +2013,8,26,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,458,1,1210,447,1,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,5,0,949,3,0,0 +2013,7,14,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1624,8,0,1729,1,0,0 +2013,9,18,3,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,820,-2,0,1530,-9,0,0 +2013,10,22,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1300,20,1,1315,14,0,0 +2013,4,29,1,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,941,-3,0,1151,1,0,0 +2013,8,6,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-4,0,1629,9,0,0 +2013,10,4,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1350,13,0,1404,8,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1839,-4,0,2359,1,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1728,-4,0,1751,-14,0,0 +2013,6,16,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1021,1,0,1304,3,0,0 +2013,5,6,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1829,1,0,0 +2013,9,2,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,115,1,1910,103,1,0 +2013,5,26,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-1,0,1735,-16,0,0 +2013,4,22,1,DL,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,1831,-6,0,2059,-25,0,0 +2013,9,8,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1035,2,0,1335,-21,0,0 +2013,7,2,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,923,-2,0,0 +2013,9,2,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-4,0,1522,-7,0,0 +2013,6,18,2,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,-2,0,1642,-14,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,1,0,2110,6,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1354,-4,0,1626,-15,0,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1331,-1,0,1724,-1,0,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1201,26,1,1525,9,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2020,35,1,2245,36,1,0 +2013,7,20,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,25,1,1505,14,0,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1859,3,0,2217,-13,0,0 +2013,8,13,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,930,-2,0,1055,-19,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-4,0,1120,2,0,0 +2013,5,22,3,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1230,9,0,1420,14,0,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-4,0,1038,-11,0,0 +2013,5,15,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1340,-4,0,1450,-16,0,0 +2013,5,26,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,55,87,1,623,84,1,0 +2013,6,8,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1340,40,1,1510,14,0,0 +2013,8,6,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,900,4,0,0 +2013,10,23,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1739,-8,0,1821,-6,0,0 +2013,4,10,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,623,-6,0,1059,-33,0,0 +2013,6,9,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1740,17,1,2105,79,1,0 +2013,7,3,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1217,-6,0,0 +2013,8,21,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,530,-7,0,840,-13,0,0 +2013,8,7,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1559,-6,0,1627,-10,0,0 +2013,9,21,6,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,652,-8,0,740,-6,0,0 +2013,6,2,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1640,187,1,1730,193,1,0 +2013,4,22,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,8,0,1625,-6,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1900,2,0,2025,-14,0,0 +2013,7,2,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,753,33,1,1018,-1,0,0 +2013,10,27,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1826,42,1,1950,43,1,0 +2013,7,7,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2110,36,1,2225,34,1,0 +2013,5,10,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-6,0,1806,12,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1355,30,1,1650,16,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-3,0,1248,-16,0,0 +2013,8,15,4,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1058,1,0,1351,-9,0,0 +2013,9,19,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1520,102,1,2115,106,1,0 +2013,9,17,2,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-2,0,925,-16,0,0 +2013,7,30,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,4,0,825,11,0,0 +2013,5,26,7,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1100,-7,0,1245,-7,0,0 +2013,8,26,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1650,0,0,1818,-14,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1553,0,0,1728,-15,0,0 +2013,4,24,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1123,-3,0,1400,-9,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,29,1,2255,34,1,0 +2013,4,24,3,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,925,-4,0,1302,-5,0,0 +2013,6,2,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,119,1,2040,116,1,0 +2013,5,18,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,-3,0,1735,7,0,0 +2013,9,7,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-10,0,610,-30,0,0 +2013,8,29,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,6,0,830,-18,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,56,1,1914,60,1,0 +2013,9,16,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-3,0,1036,-1,0,0 +2013,5,29,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,1514,-1,0,0 +2013,6,13,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1715,43,1,1957,46,1,0 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,846,-5,0,1732,-13,0,0 +2013,7,26,5,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1950,-2,0,2149,-14,0,0 +2013,10,20,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1733,-15,0,2045,-20,0,0 +2013,5,8,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1045,16,1,1150,12,0,0 +2013,8,26,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1900,4,0,2135,-4,0,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,11,0,2120,9,0,0 +2013,6,13,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2045,83,1,2313,81,1,0 +2013,10,15,2,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,605,-7,0,840,-4,0,0 +2013,4,1,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,2011,-16,0,0 +2013,10,15,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,620,-7,0,1000,-9,0,0 +2013,8,15,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2100,19,1,2210,16,1,0 +2013,6,19,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-17,0,1033,-37,0,0 +2013,7,8,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,1,0,1450,16,1,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,654,-4,0,957,-9,0,0 +2013,8,10,6,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,826,-5,0,1020,-3,0,0 +2013,7,26,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,46,1,1117,24,1,0 +2013,6,18,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1545,6,0,1754,-4,0,0 +2013,6,20,4,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,901,-4,0,1204,5,0,0 +2013,9,20,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1718,-8,0,1805,0,0,0 +2013,6,16,7,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1959,17,1,2018,17,1,0 +2013,5,30,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,-11,0,2322,4,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,54,1,2035,48,1,0 +2013,5,2,4,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1632,10,0,1755,-6,0,0 +2013,8,2,5,VX,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,50,13,0,625,19,1,0 +2013,6,28,5,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1825,20,1,1935,13,0,0 +2013,7,30,2,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,710,-12,0,906,-15,0,0 +2013,7,31,3,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2005,0,0,2245,-5,0,0 +2013,6,21,5,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,645,-6,0,715,-18,0,0 +2013,9,4,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-5,0,1545,-15,0,0 +2013,6,18,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,835,-2,0,1205,-4,0,0 +2013,4,7,7,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-1,0,915,-11,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1124,-2,0,1720,-3,0,0 +2013,10,18,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1059,11,0,1904,-19,0,0 +2013,6,15,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-2,0,1858,-9,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,0,0,2222,-15,0,0 +2013,9,15,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-5,0,1006,-11,0,0 +2013,7,5,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,1,0,1439,17,1,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-5,0,1131,-9,0,0 +2013,9,30,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,812,-5,0,930,-11,0,0 +2013,9,9,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,932,-8,0,1220,-5,0,0 +2013,9,21,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,26,1,641,19,1,0 +2013,6,16,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1220,-4,0,1420,-7,0,0 +2013,4,28,7,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1530,3,0,1835,7,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2000,12,0,2205,2,0,0 +2013,8,3,6,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1452,23,1,1832,71,1,0 +2013,9,7,6,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-2,0,820,9,0,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1738,24,1,2051,20,1,0 +2013,4,24,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1120,36,1,1245,29,1,0 +2013,5,17,5,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1853,13,0,2100,-13,0,0 +2013,4,1,1,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,0,0,1245,10,0,0 +2013,9,26,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1035,-1,0,1136,-23,0,0 +2013,10,12,6,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1002,-4,0,1210,0,0,0 +2013,9,20,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,-4,0,1648,-3,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1425,252,1,1510,259,1,0 +2013,5,8,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,9,0,809,-2,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,846,-2,0,1638,-22,0,0 +2013,7,7,7,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,-9,0,2120,-5,0,0 +2013,5,14,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,756,-8,0,0 +2013,6,7,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1942,-5,0,2106,-20,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1035,-2,0,1240,-4,0,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,36,1,1832,48,1,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1716,39,1,145,28,1,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1911,-4,0,2307,-15,0,0 +2013,8,28,3,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,-4,0,1315,17,1,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,700,-6,0,829,-17,0,0 +2013,9,27,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1535,-7,0,1737,-21,0,0 +2013,8,22,4,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,710,-13,0,825,-2,0,0 +2013,8,8,4,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,-3,0,1740,-14,0,0 +2013,9,18,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,625,-3,0,1214,0,0,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1446,17,1,1744,2,0,0 +2013,4,21,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,855,1,0,1100,-3,0,0 +2013,8,3,6,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1600,21,1,1908,14,0,0 +2013,7,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-2,0,1557,-16,0,0 +2013,6,20,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,947,-4,0,1135,-24,0,0 +2013,5,30,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,39,1,1624,123,1,0 +2013,9,15,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,947,-10,0,1030,-3,0,0 +2013,10,28,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-7,0,1329,-13,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1826,4,0,2043,20,1,0 +2013,6,21,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,1,0,2205,-10,0,0 +2013,6,25,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1630,37,1,1910,15,1,0 +2013,4,12,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1824,-5,0,2115,-2,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2103,-1,0,2222,-15,0,0 +2013,7,12,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,-1,0,2302,5,0,0 +2013,4,22,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1357,43,1,1610,35,1,0 +2013,7,3,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,2,0,1900,-4,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,758,11,0,923,12,0,0 +2013,5,21,2,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,840,0,0,1435,-12,0,0 +2013,10,13,7,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,925,-6,0,1800,-7,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1955,13,0,2330,3,0,0 +2013,4,13,6,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,710,-8,0,930,-2,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2250,-3,0,2328,-18,0,0 +2013,7,19,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,1258,12,0,0 +2013,9,23,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,38,1,2040,32,1,0 +2013,6,21,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,1,0,1825,18,1,0 +2013,7,20,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1340,26,1,1405,24,1,0 +2013,10,2,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,16,1,2013,17,1,0 +2013,8,21,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,0,0,1025,-5,0,0 +2013,5,14,2,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1020,8,0,1140,-1,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,2006,-4,0,2105,-29,0,0 +2013,7,2,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1755,19,1,2035,5,0,0 +2013,8,26,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,32,1,2126,12,0,0 +2013,5,12,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1315,13,0,1540,3,0,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1740,2,0,2341,-7,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-6,0,1113,-23,0,0 +2013,4,18,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1745,-7,0,1905,-7,0,0 +2013,8,6,2,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,0,0,549,-12,0,0 +2013,10,12,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1925,-2,0,2010,-6,0,0 +2013,10,5,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-1,0,2043,5,0,0 +2013,8,25,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1100,-10,0,1349,-37,0,0 +2013,8,5,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-5,0,911,10,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,730,-3,0,935,-7,0,0 +2013,10,31,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1114,-10,0,0 +2013,7,23,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,8,0,1939,14,0,0 +2013,6,21,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1810,1,0,1925,-1,0,0 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,-3,0,920,-7,0,0 +2013,7,27,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,36,1,1556,44,1,0 +2013,7,31,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,66,1,1235,65,1,0 +2013,9,11,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-7,0,2000,-4,0,0 +2013,8,2,5,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,20,1,1730,71,1,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,-2,0,951,-4,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1251,4,0,1845,6,0,0 +2013,9,14,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1840,45,1,1912,53,1,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1632,54,1,2018,39,1,0 +2013,8,20,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1355,-10,0,1432,-6,0,0 +2013,9,19,4,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2125,0,0,2345,12,0,0 +2013,5,3,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,-10,0,2040,0,0,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-6,0,2022,5,0,0 +2013,8,19,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1534,8,0,1700,23,1,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1712,-2,0,2000,17,1,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1107,2,0,1257,-12,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,0,0,2135,19,1,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1943,2,0,2150,16,1,0 +2013,10,22,2,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1057,-7,0,1224,-9,0,0 +2013,7,27,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1410,85,1,1520,90,1,0 +2013,7,28,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,10,0,1435,7,0,0 +2013,9,30,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1430,-10,0,1605,0,0,0 +2013,5,29,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,755,-4,0,921,2,0,0 +2013,6,19,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,-6,0,1635,7,0,0 +2013,5,22,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1620,20,1,1725,9,0,0 +2013,6,13,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,722,2,0,1130,-6,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1845,-1,0,1955,-6,0,0 +2013,8,22,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2000,10,0,2139,16,1,0 +2013,6,25,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-1,0,2105,-9,0,0 +2013,6,1,6,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,930,-1,0,1120,-13,0,0 +2013,7,30,2,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2119,6,0,2354,0,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2030,12,0,2340,9,0,0 +2013,10,6,7,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-7,0,1810,4,0,0 +2013,7,19,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-2,0,930,-8,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2115,229,1,2320,213,1,0 +2013,7,11,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,108,1,1954,120,1,0 +2013,4,10,3,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,630,-2,0,820,-21,0,0 +2013,7,4,4,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1840,-12,0,2150,-26,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,-5,0,2110,-34,0,0 +2013,9,18,3,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1100,-5,0,1222,-9,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,0,0,1124,-16,0,0 +2013,6,24,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,0,0,1649,0,1,1 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1000,58,1,1245,21,1,0 +2013,5,1,3,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1135,45,1,1623,90,1,0 +2013,5,24,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1445,-5,0,2010,-15,0,0 +2013,6,8,6,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,935,-5,0,1155,-13,0,0 +2013,8,19,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1740,2,0,1845,-9,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,-5,0,55,-23,0,0 +2013,9,17,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1710,-6,0,2003,-1,0,0 +2013,6,20,4,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,645,-6,0,749,-1,0,0 +2013,6,2,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1430,-3,0,1546,-7,0,0 +2013,10,26,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,750,0,0,915,-3,0,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,945,8,0,1126,26,1,0 +2013,10,28,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,-1,0,2034,-30,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1610,112,1,1800,121,1,0 +2013,5,12,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-2,0,2140,-8,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,45,1,2206,28,1,0 +2013,5,26,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-8,0,1640,-27,0,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1420,59,1,1555,52,1,0 +2013,5,20,1,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,62,1,904,32,1,0 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,48,1,2150,50,1,0 +2013,8,12,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2135,-4,0,7,-12,0,0 +2013,6,1,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,-5,0,2350,-10,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2125,4,0,20,-5,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1255,2,0,1615,-1,0,0 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1025,14,0,1210,23,1,0 +2013,5,17,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1003,-6,0,1139,-22,0,0 +2013,9,21,6,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,-4,0,2110,-11,0,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,700,-4,0,830,-11,0,0 +2013,6,20,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-4,0,745,-19,0,0 +2013,5,14,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-6,0,959,-11,0,0 +2013,10,25,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1408,-8,0,1923,-30,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,-4,0,1942,0,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1605,25,1,1705,9,0,0 +2013,4,19,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,7,0,1700,-3,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,725,-2,0,906,-2,0,0 +2013,5,22,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1844,-7,0,2008,-17,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-3,0,929,-17,0,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,723,1,0,1000,0,0,0 +2013,9,15,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,700,-5,0,840,-13,0,0 +2013,8,16,5,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1959,-2,0,2232,-5,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,20,1,1725,9,0,0 +2013,10,22,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1410,2,0,2234,-20,0,0 +2013,4,6,6,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1235,17,1,1450,-3,0,0 +2013,4,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2200,29,1,2312,22,1,0 +2013,7,26,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1707,13,0,1830,12,0,0 +2013,9,1,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,935,-1,0,1210,-6,0,0 +2013,10,3,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1610,0,0,1647,3,0,0 +2013,6,14,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1745,19,1,145,0,0,0 +2013,6,28,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,710,-2,0,910,-18,0,0 +2013,6,23,7,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1742,133,1,2002,173,1,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1525,-19,0,0 +2013,10,23,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1115,-4,0,1950,-24,0,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2040,39,1,2350,35,1,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,836,-5,0,1029,-14,0,0 +2013,9,4,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1930,29,1,2015,28,1,0 +2013,10,10,4,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1700,60,1,1854,35,1,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,3,0,2215,0,0,0 +2013,4,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,-4,0,1045,-19,0,0 +2013,9,28,6,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,-11,0,1150,-16,0,0 +2013,5,4,6,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1415,158,1,1535,141,1,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,559,-6,0,1434,-10,0,0 +2013,6,13,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,20,1,1633,50,1,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-5,0,1948,-30,0,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2120,163,1,2302,162,1,0 +2013,8,24,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1520,-4,0,2038,-6,0,0 +2013,6,22,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1830,9,0,2145,-4,0,0 +2013,10,27,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-3,0,1357,-6,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,11,0,1150,18,1,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1145,31,1,1845,15,1,0 +2013,4,26,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1024,-6,0,1311,-16,0,0 +2013,4,2,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,36,1,2109,14,0,0 +2013,8,9,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2245,-6,0,700,-35,0,0 +2013,8,19,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1140,-5,0,1433,5,0,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,9,0,2311,17,1,0 +2013,9,22,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1115,-13,0,0 +2013,6,18,2,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,1023,3,0,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,73,1,1825,77,1,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,1,0,1817,-10,0,0 +2013,9,27,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,855,-5,0,1225,-7,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1302,-7,0,1542,-15,0,0 +2013,7,12,5,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1115,-11,0,1330,-17,0,0 +2013,9,20,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,835,-2,0,852,-6,0,0 +2013,4,11,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,9,0,1520,-2,0,0 +2013,6,21,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2004,0,0,2108,12,0,0 +2013,10,22,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-5,0,1223,0,0,0 +2013,9,13,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,741,-7,0,1525,11,0,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,615,0,0,715,-4,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1010,5,0,1120,-3,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,1,0,1054,-4,0,0 +2013,7,29,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,1,0,623,-4,0,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1755,-6,0,1937,-11,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2020,6,0,2110,17,1,0 +2013,8,26,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1710,3,0,1850,8,0,0 +2013,9,6,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1500,-1,0,1815,-11,0,0 +2013,5,19,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1352,-1,0,1617,-14,0,0 +2013,7,17,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-1,0,840,-25,0,0 +2013,4,9,2,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,0,,1746,0,1,1 +2013,8,19,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,2,0,1030,-6,0,0 +2013,10,10,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,0,0,1025,10,0,0 +2013,6,1,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,910,14,0,1345,10,0,0 +2013,4,9,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-6,0,1830,-6,0,0 +2013,5,8,3,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1555,-3,0,1813,-10,0,0 +2013,6,28,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-5,0,648,-5,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2225,5,0,2325,-2,0,0 +2013,10,21,1,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1700,22,1,1815,3,0,0 +2013,5,7,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1610,-2,0,1710,-9,0,0 +2013,9,15,7,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,830,-3,0,1436,-20,0,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1925,5,0,2055,-11,0,0 +2013,4,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-6,0,919,-7,0,0 +2013,8,29,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1511,-1,0,1900,-10,0,0 +2013,4,29,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,15,1,1327,-4,0,0 +2013,6,24,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,96,1,2141,84,1,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,925,-4,0,1325,20,1,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2107,-1,0,2228,-8,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,730,-3,0,903,-20,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1905,10,0,10,10,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2240,5,0,112,20,1,0 +2013,9,24,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1420,-3,0,1753,-13,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1630,89,1,1959,105,1,0 +2013,10,7,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,930,3,0,1112,-2,0,0 +2013,5,21,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-7,0,2110,-1,0,0 +2013,8,28,3,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,37,1,2135,38,1,0 +2013,4,14,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,72,1,2140,92,1,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1358,34,1,1640,37,1,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,715,2,0,951,3,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,-7,0,847,-9,0,0 +2013,4,15,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,35,1,2055,41,1,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,745,0,0,1144,6,0,0 +2013,4,24,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,645,-8,0,741,-1,0,0 +2013,5,16,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1540,-3,0,1735,-21,0,0 +2013,5,2,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1017,-11,0,1300,-15,0,0 +2013,4,12,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1720,-13,0,1956,6,0,0 +2013,8,9,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,24,1,2047,17,1,0 +2013,6,26,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,3,0,1825,1,0,0 +2013,5,11,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,950,-1,0,1025,-9,0,0 +2013,5,21,2,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,107,1,1330,95,1,0 +2013,6,19,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1015,-1,0,1255,-18,0,0 +2013,10,3,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,635,45,1,1454,31,1,0 +2013,6,7,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,630,9,0,720,-1,0,0 +2013,8,9,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1556,92,1,1848,70,1,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1750,15,1,2040,17,1,0 +2013,8,6,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,940,-4,0,1140,-13,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,18,1,1135,21,1,0 +2013,6,3,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,555,1,0,725,-3,0,0 +2013,6,4,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,744,-1,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1450,12,0,1725,5,0,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,1,0,1425,-4,0,0 +2013,9,15,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1630,34,1,1750,35,1,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,107,1,1535,86,1,0 +2013,9,11,3,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1030,8,0,1247,21,1,0 +2013,5,12,7,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-6,0,1029,-23,0,0 +2013,5,9,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1803,19,1,1947,25,1,0 +2013,5,12,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1558,-7,0,1710,-15,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-2,0,1405,-10,0,0 +2013,5,10,5,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1520,32,1,1700,33,1,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1400,17,1,1920,3,0,0 +2013,4,30,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,-1,0,1035,-3,0,0 +2013,6,11,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1358,5,0,1420,-5,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1915,-6,0,2047,-15,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,755,0,0,922,-5,0,0 +2013,8,14,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,-1,0,805,0,0,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2150,0,0,2245,-5,0,0 +2013,6,1,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,0,0,1352,-1,0,0 +2013,4,6,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,855,-1,0,1025,-30,0,0 +2013,8,18,7,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1808,19,1,2100,3,0,0 +2013,8,6,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-9,0,1220,-17,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,850,-8,0,1220,-18,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,-3,0,1015,-20,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,-1,0,1600,-8,0,0 +2013,6,8,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1215,32,1,1430,25,1,0 +2013,6,8,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1855,66,1,2030,56,1,0 +2013,9,17,2,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1850,-6,0,2052,-4,0,0 +2013,10,4,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1645,18,1,1825,15,1,0 +2013,7,31,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1705,-4,0,1842,1,0,0 +2013,7,10,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2040,132,1,2313,130,1,0 +2013,8,17,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,900,-2,0,1015,-13,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1005,7,0,1055,9,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2159,0,,2358,0,1,1 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1440,202,1,1735,200,1,0 +2013,5,4,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,34,1,1140,30,1,0 +2013,7,8,1,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1755,1,0,1925,-9,0,0 +2013,5,15,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1143,16,1,1457,8,0,0 +2013,4,25,4,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,1000,-16,0,0 +2013,10,10,4,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1821,-4,0,2309,-14,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,622,41,1,849,29,1,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,905,-7,0,1729,16,1,0 +2013,5,21,2,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,83,1,1723,109,1,0 +2013,9,17,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-5,0,1205,-10,0,0 +2013,4,15,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2025,1,0,2140,-6,0,0 +2013,6,22,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,16,1,2011,21,1,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,11,0,1245,15,1,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,5,0,1510,15,1,0 +2013,7,30,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1803,42,1,2133,32,1,0 +2013,10,26,6,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1701,-6,0,1921,-26,0,0 +2013,10,30,3,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,43,1,703,29,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2130,0,0,2235,-4,0,0 +2013,5,20,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2025,-3,0,2130,-4,0,0 +2013,10,16,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,655,0,0,800,0,1,1 +2013,9,9,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1355,9,0,1520,8,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,16,1,2230,15,1,0 +2013,5,9,4,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1602,1,0,1814,-3,0,0 +2013,7,11,4,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,11,0,827,-1,0,0 +2013,9,19,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,26,1,800,51,1,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1711,0,0,1952,17,1,0 +2013,6,23,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,9,0,1015,6,0,0 +2013,4,11,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,634,-5,0,920,-20,0,0 +2013,8,19,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-2,0,1005,-15,0,0 +2013,10,21,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,2,0,1905,3,0,0 +2013,7,11,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1025,0,0,1120,-13,0,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,132,1,1841,142,1,0 +2013,8,21,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-9,0,1006,-7,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1450,10,0,1632,-2,0,0 +2013,10,4,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-1,0,1000,-6,0,0 +2013,7,2,2,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1800,159,1,2255,148,1,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,845,-5,0,1110,5,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1750,145,1,2022,133,1,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,820,101,1,925,100,1,0 +2013,5,13,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1440,0,0,1614,-10,0,0 +2013,10,9,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1153,-6,0,1311,-24,0,0 +2013,6,25,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,272,1,1956,277,1,0 +2013,9,10,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-5,0,1332,-9,0,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,2,0,720,-5,0,0 +2013,9,27,5,FL,13232,Chicago Midway International,Chicago,IL,13244,Memphis International,Memphis,TN,830,17,1,1002,40,1,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,-5,0,1554,-20,0,0 +2013,6,4,2,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1200,-4,0,1532,-42,0,0 +2013,5,28,2,US,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-7,0,1857,-17,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,-1,0,1308,2,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,4,0,1618,2,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1044,-4,0,1401,-4,0,0 +2013,8,27,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1254,-7,0,1450,19,1,0 +2013,10,28,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,740,-7,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1220,5,0,1420,4,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2201,-3,0,2312,-16,0,0 +2013,4,7,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,32,1,2325,36,1,0 +2013,6,26,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,640,-7,0,0 +2013,8,29,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1400,-10,0,1527,-12,0,0 +2013,6,3,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,3,0,1214,-4,0,0 +2013,4,17,3,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-12,0,1742,-21,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,146,1,2357,135,1,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,730,9,0,935,1,0,0 +2013,7,23,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1536,-5,0,1700,-5,0,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,900,1,0,1425,-23,0,0 +2013,7,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1305,2,0,1620,-5,0,0 +2013,8,6,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1035,-7,0,1400,-3,0,0 +2013,4,1,1,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,610,-4,0,856,-20,0,0 +2013,4,1,1,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,65,1,1435,55,1,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,900,1,0,1125,4,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,935,-2,0,1055,19,1,0 +2013,7,4,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1009,-6,0,1335,-23,0,0 +2013,8,12,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1725,63,1,1800,98,1,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1310,6,0,1610,-1,0,0 +2013,4,12,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,10,0,1550,1,0,0 +2013,10,11,5,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,68,1,2247,33,1,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1640,17,1,2315,18,1,0 +2013,7,27,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,35,1,1400,38,1,0 +2013,9,26,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,735,2,0,830,-2,0,0 +2013,4,12,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-4,0,806,-8,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,935,18,1,1259,15,1,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-2,0,1535,-7,0,0 +2013,4,28,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,905,-7,0,1154,-9,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2035,40,1,2315,34,1,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1800,2,0,1950,-11,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,900,2,0,1217,-23,0,0 +2013,9,7,6,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-2,0,1115,-1,0,0 +2013,5,4,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1310,1,0,1553,-10,0,0 +2013,8,22,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,49,1,2000,14,0,0 +2013,10,12,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1512,-1,0,1912,-7,0,0 +2013,4,26,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1343,22,1,1522,13,0,0 +2013,8,22,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1252,12,0,1435,-3,0,0 +2013,6,3,1,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,1,0,1555,-9,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,13,0,2025,25,1,0 +2013,8,13,2,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1305,-1,0,1435,-12,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,941,27,1,1322,12,0,0 +2013,10,25,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2010,185,1,2245,155,1,0 +2013,9,26,4,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1745,-3,0,1850,5,0,0 +2013,7,20,6,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1100,-3,0,1155,-9,0,0 +2013,4,19,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1005,17,1,0 +2013,7,14,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,0,0,1530,11,0,0 +2013,6,16,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,-1,0,1425,-11,0,0 +2013,7,25,4,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,928,-5,0,1051,-7,0,0 +2013,7,25,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1255,4,0,1620,-17,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2040,-1,0,2140,-7,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2305,64,1,13,64,1,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,0,0,1039,23,1,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,925,-6,0,1119,-14,0,0 +2013,7,5,5,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-9,0,929,-1,0,0 +2013,4,15,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1714,-2,0,2019,9,0,0 +2013,7,9,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,745,-4,0,919,-13,0,0 +2013,6,2,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1305,23,1,1434,18,1,0 +2013,10,8,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,808,46,1,1415,29,1,0 +2013,5,28,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1125,12,0,1910,1,0,0 +2013,7,28,7,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1430,3,0,1555,-7,0,0 +2013,6,11,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,27,1,2016,18,1,0 +2013,8,10,6,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1234,11,0,2103,-14,0,0 +2013,7,6,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-3,0,805,21,1,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,2,0,1700,-25,0,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,-3,0,1921,10,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1005,2,0,1144,-12,0,0 +2013,10,27,7,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2140,-2,0,610,0,0,0 +2013,6,1,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1605,92,1,1704,93,1,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1559,160,1,1908,177,1,0 +2013,6,5,3,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1934,-7,0,2105,-34,0,0 +2013,10,4,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1705,2,0,1710,5,0,0 +2013,5,12,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,839,-2,0,1006,-21,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-7,0,1311,-32,0,0 +2013,6,19,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2220,-3,0,209,-13,0,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,4,0,957,-9,0,0 +2013,7,14,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2014,7,0,2229,-6,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,17,1,1005,14,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2200,12,0,2305,26,1,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2040,-4,0,2350,-18,0,0 +2013,8,23,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1107,13,0,1450,5,0,0 +2013,5,13,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,-5,0,615,-2,0,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,0,0,1945,14,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-2,0,1612,3,0,0 +2013,4,26,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1859,61,1,2157,57,1,0 +2013,6,4,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1023,-5,0,1544,-9,0,0 +2013,8,31,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1921,14,0,2204,8,0,0 +2013,10,1,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,-3,0,1855,-9,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,857,-3,0,1009,-16,0,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,4,0,2155,-6,0,0 +2013,6,29,6,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1235,-3,0,1357,-4,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,830,11,0,1020,-7,0,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,0,0,1808,57,1,0 +2013,5,5,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,847,-4,0,1023,-10,0,0 +2013,9,29,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,-2,0,2120,-10,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,57,1,1920,52,1,0 +2013,8,6,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1446,-5,0,1622,-13,0,0 +2013,7,26,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,20,1,940,31,1,0 +2013,8,30,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1218,0,0,0 +2013,9,12,4,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,630,-4,0,1235,14,0,0 +2013,5,12,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-8,0,2035,24,1,0 +2013,7,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,-2,0,1950,-12,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2140,-2,0,515,3,0,0 +2013,9,3,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-12,0,925,-17,0,0 +2013,5,17,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-7,0,919,-2,0,0 +2013,4,8,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-7,0,806,-22,0,0 +2013,5,27,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,802,-4,0,900,-21,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1115,-3,0,1254,7,0,0 +2013,7,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,6,0,1751,3,0,0 +2013,9,17,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1705,-6,0,2304,-1,0,0 +2013,8,6,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1247,-4,0,1835,0,0,0 +2013,10,2,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1850,0,0,2005,-2,0,0 +2013,9,19,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,161,1,1121,167,1,0 +2013,4,18,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,854,5,0,1025,0,0,0 +2013,7,23,2,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,-5,0,1510,5,0,0 +2013,5,24,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1705,70,1,1905,40,1,0 +2013,8,25,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,620,56,1,910,38,1,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1256,-3,0,1700,21,1,0 +2013,9,24,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,655,-2,0,725,-5,0,0 +2013,4,19,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,-1,0,2017,4,0,0 +2013,10,2,3,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-11,0,1819,-5,0,0 +2013,5,9,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1615,17,1,1740,10,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1210,4,0,1525,-10,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1345,0,0,1551,-10,0,0 +2013,7,29,1,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1025,2,0,1210,9,0,0 +2013,4,26,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1425,10,0,1519,6,0,0 +2013,4,4,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1829,-6,0,2104,-27,0,0 +2013,6,7,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1050,0,0,1300,-11,0,0 +2013,10,31,4,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,45,1,1915,53,1,0 +2013,10,19,6,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1104,2,0,1210,2,0,0 +2013,10,29,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,600,-4,0,840,-24,0,0 +2013,10,30,3,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,700,-6,0,928,-12,0,0 +2013,8,8,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,4,0,1414,8,0,0 +2013,7,3,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-8,0,1756,8,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1816,61,1,2027,36,1,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,820,21,1,935,12,0,0 +2013,9,1,7,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,804,10,0,1125,-31,0,0 +2013,6,26,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,35,1,930,15,1,0 +2013,10,7,1,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1805,-7,0,1948,-10,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1700,23,1,2225,27,1,0 +2013,9,23,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-4,0,1640,-38,0,0 +2013,6,3,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1552,-3,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1445,14,0,1725,8,0,0 +2013,10,1,2,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,1,0,1605,-39,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,735,-1,0,840,-14,0,0 +2013,4,28,7,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1335,-4,0,1541,-13,0,0 +2013,8,30,5,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1050,-2,0,1300,-8,0,0 +2013,8,2,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-2,0,2203,-21,0,0 +2013,7,31,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,0,0,820,-2,0,0 +2013,8,5,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1628,46,1,1851,56,1,0 +2013,8,20,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1205,64,1,1328,61,1,0 +2013,4,23,2,9E,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,0,,2031,0,1,1 +2013,10,29,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-1,0,1739,16,1,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1100,-6,0,1227,-14,0,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1952,100,1,2235,88,1,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1425,-4,0,1709,-25,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,44,1,1929,48,1,0 +2013,5,22,3,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1910,-5,0,2135,-10,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,726,-3,0,904,-9,0,0 +2013,4,16,2,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2210,-5,0,2256,3,0,0 +2013,4,20,6,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1020,2,0,1450,-10,0,0 +2013,7,16,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1915,0,0,2205,-12,0,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1925,8,0,2230,-8,0,0 +2013,9,8,7,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1845,26,1,2030,10,0,0 +2013,10,15,2,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,5,0,1509,-5,0,0 +2013,4,1,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,40,1,1610,41,1,0 +2013,7,20,6,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1734,-2,0,2024,2,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,830,-3,0,935,-17,0,0 +2013,10,21,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,1,0,2130,3,0,0 +2013,9,27,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1231,-2,0,1517,-22,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1100,-1,0,1325,-3,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,18,1,1558,42,1,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,622,-1,0,900,-17,0,0 +2013,5,23,4,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,-9,0,1655,-8,0,0 +2013,8,5,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,920,-3,0,1120,-12,0,0 +2013,6,12,3,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,903,-2,0,957,-7,0,0 +2013,9,3,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-9,0,2355,-9,0,0 +2013,4,2,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,0,,2128,0,1,1 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1630,42,1,1755,32,1,0 +2013,7,19,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-8,0,918,-1,0,0 +2013,7,20,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,720,-10,0,1507,11,0,0 +2013,10,30,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,21,1,2039,22,1,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1825,5,0,2018,2,0,0 +2013,6,12,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,600,0,0,1155,-12,0,0 +2013,10,9,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,-2,0,1039,-9,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,-2,0,2025,-12,0,0 +2013,10,31,4,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,51,1,1950,64,1,0 +2013,9,24,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1355,-7,0,1710,-8,0,0 +2013,6,9,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,87,1,2015,73,1,0 +2013,8,19,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2000,-4,0,2158,-4,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,700,2,0,1035,-13,0,0 +2013,9,7,6,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1938,-7,0,2050,-16,0,0 +2013,4,26,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1602,-6,0,0 +2013,5,31,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1745,-1,0,1910,-1,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1125,6,0,1300,-7,0,0 +2013,4,18,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,600,-13,0,852,-5,0,0 +2013,6,19,3,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,0,,1041,0,1,1 +2013,6,19,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1245,1,0,1447,-10,0,0 +2013,10,31,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,900,-5,0,1227,-32,0,0 +2013,4,30,2,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,4,0,2010,7,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,19,1,938,19,1,0 +2013,8,30,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,2000,34,1,2344,21,1,0 +2013,9,29,7,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,621,-12,0,815,-20,0,0 +2013,9,13,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,31,1,1340,15,1,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,2,0,1240,-9,0,0 +2013,5,9,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1725,6,0,2025,8,0,0 +2013,7,31,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2005,-6,0,2200,-5,0,0 +2013,7,11,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1011,0,0,1241,-21,0,0 +2013,4,4,4,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1219,-12,0,1340,-22,0,0 +2013,5,6,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1100,4,0,1405,-1,0,0 +2013,5,27,1,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,630,-5,0,1452,-15,0,0 +2013,5,23,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-5,0,1926,-5,0,0 +2013,7,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1157,3,0,1651,17,1,0 +2013,8,24,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-6,0,1405,3,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1020,3,0,1215,-13,0,0 +2013,6,16,7,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1235,-3,0,2030,-21,0,0 +2013,6,3,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1945,168,1,2130,151,1,0 +2013,8,9,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,5,0,2354,-1,0,0 +2013,10,10,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1747,-6,0,1907,9,0,0 +2013,5,21,2,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,44,1,1755,93,1,0 +2013,5,31,5,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-4,0,1345,-12,0,0 +2013,7,7,7,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,281,1,1908,283,1,0 +2013,7,21,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1555,6,0,1800,-14,0,0 +2013,5,12,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1323,30,1,1410,17,1,0 +2013,5,25,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,-3,0,1210,8,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,155,1,1305,140,1,0 +2013,8,23,5,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,952,-6,0,1105,-9,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1715,-9,0,2010,-19,0,0 +2013,10,26,6,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1933,7,0,810,-12,0,0 +2013,5,23,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,14,0,2100,18,1,0 +2013,7,20,6,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,-4,0,1735,29,1,0 +2013,8,12,1,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,46,1,1303,56,1,0 +2013,8,13,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1755,9,0,2000,-10,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,1117,-11,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1540,8,0,1718,-7,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-5,0,930,-22,0,0 +2013,7,4,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1820,6,0,1959,-2,0,0 +2013,7,8,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,2333,47,1,508,40,1,0 +2013,7,15,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-6,0,1523,18,1,0 +2013,10,12,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,900,-6,0,1020,-8,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,102,1,1920,102,1,0 +2013,9,9,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-7,0,955,-27,0,0 +2013,9,24,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,0,0,1935,-16,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,-4,0,1710,-10,0,0 +2013,6,8,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1530,-2,0,1815,9,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,630,-5,0,924,3,0,0 +2013,6,20,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,0,0,1935,-15,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,35,1,2212,36,1,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2100,-1,0,2240,-6,0,0 +2013,7,9,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,700,2,0,905,5,0,0 +2013,8,12,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2003,55,1,2212,45,1,0 +2013,8,27,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1516,0,0,1654,-9,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1735,6,0,2000,0,0,0 +2013,9,7,6,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,850,-2,0,1135,-10,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,800,7,0,1110,-7,0,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,0,0,1820,-12,0,0 +2013,5,26,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-11,0,1533,-24,0,0 +2013,8,13,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,2,0,1200,0,0,0 +2013,9,29,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1230,-13,0,0 +2013,7,17,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,709,-9,0,0 +2013,7,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1555,2,0,1705,-3,0,0 +2013,8,5,1,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,900,-3,0,1150,7,0,0 +2013,9,8,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-4,0,2355,-4,0,0 +2013,9,30,1,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-2,0,647,3,0,0 +2013,7,28,7,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1436,-5,0,1610,-6,0,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2205,11,0,2327,-9,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,816,-2,0,925,-14,0,0 +2013,5,15,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-3,0,1216,-22,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1120,1,0,1320,5,0,0 +2013,10,11,5,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1234,-7,0,1534,-15,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1549,23,1,1721,2,0,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,-6,0,937,0,0,0 +2013,10,2,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,830,-9,0,907,-16,0,0 +2013,9,15,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,48,1,2258,46,1,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1110,19,1,1540,15,1,0 +2013,9,1,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-3,0,1845,-33,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2055,6,0,2221,14,0,0 +2013,9,29,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,725,-2,0,1022,7,0,0 +2013,8,17,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,-6,0,2259,-3,0,0 +2013,6,28,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-5,0,1859,3,0,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,1,0,1640,-10,0,0 +2013,6,25,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,-5,0,1856,8,0,0 +2013,6,10,1,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1056,0,0,1220,-6,0,0 +2013,7,22,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-5,0,1915,-11,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1941,-5,0,2104,-22,0,0 +2013,5,20,1,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1611,14,0,1845,30,1,0 +2013,9,5,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-7,0,1601,-14,0,0 +2013,8,26,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1110,5,0,1222,11,0,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1825,11,0,2037,-2,0,0 +2013,10,1,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-9,0,1650,-27,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,940,-4,0,1310,-22,0,0 +2013,9,7,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-5,0,715,-2,0,0 +2013,7,16,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1040,267,1,1429,267,1,0 +2013,9,2,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,28,1,1237,20,1,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,-4,0,1040,-18,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,1,0,2225,-13,0,0 +2013,6,9,7,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,0,0,1320,-6,0,0 +2013,10,12,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,935,-6,0,1040,-14,0,0 +2013,10,2,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,0,0,1400,-10,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1440,13,0,1735,-1,0,0 +2013,4,7,7,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-1,0,1124,13,0,0 +2013,4,7,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-3,0,1253,-2,0,0 +2013,8,17,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,640,-6,0,1000,13,0,0 +2013,9,2,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,0,0,1917,7,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1640,97,1,1835,93,1,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,-2,0,1410,-4,0,0 +2013,4,3,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1800,42,1,2205,22,1,0 +2013,7,25,4,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1213,-3,0,1425,-14,0,0 +2013,10,28,1,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2016,21,1,2146,12,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,9,0,729,9,0,0 +2013,9,8,7,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,715,-2,0,927,-28,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1600,65,1,1905,56,1,0 +2013,6,13,4,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1930,133,1,2132,118,1,0 +2013,5,22,3,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1650,-3,0,1802,-3,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,745,-6,0,911,-11,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1350,-7,0,1716,-7,0,0 +2013,6,19,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1735,1,0,1825,3,0,0 +2013,10,17,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,757,-4,0,910,-11,0,0 +2013,6,24,1,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,854,100,1,1035,148,1,0 +2013,9,14,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,1,0,1240,-9,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,740,-4,0,950,1,0,0 +2013,8,8,4,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1200,12,0,1446,28,1,0 +2013,6,28,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,755,0,0,958,-27,0,0 +2013,4,23,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-2,0,1741,-13,0,0 +2013,10,23,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1355,12,0,1555,11,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,-1,0,1730,-2,0,0 +2013,7,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,0,0,1414,-7,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1225,-2,0,1942,-20,0,0 +2013,9,15,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,0,0,1519,27,1,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,-2,0,1200,-10,0,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2258,-1,0,2351,11,0,0 +2013,9,16,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,750,-4,0,1115,-6,0,0 +2013,6,5,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-9,0,1015,-26,0,0 +2013,5,19,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1319,16,1,1630,6,0,0 +2013,9,10,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,715,-8,0,1034,-7,0,0 +2013,5,2,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1900,135,1,1935,145,1,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1852,13,0,2158,48,1,0 +2013,9,25,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,1,0,755,-13,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,4,0,1115,2,0,0 +2013,9,4,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,20,1,2020,8,0,0 +2013,6,2,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,3,0,1656,-6,0,0 +2013,4,22,1,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1844,47,1,2105,40,1,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,-1,0,1500,2,0,0 +2013,7,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,0,0,906,-8,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,945,0,,1125,0,1,1 +2013,8,10,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,-2,0,1510,-4,0,0 +2013,9,14,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1840,-4,0,2002,-2,0,0 +2013,8,17,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,4,0,1645,-8,0,0 +2013,6,23,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,-4,0,2355,-11,0,0 +2013,8,29,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1302,-2,0,1443,-5,0,0 +2013,4,5,5,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,2014,-10,0,2248,-20,0,0 +2013,6,9,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-10,0,815,-15,0,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1235,26,1,1845,28,1,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1540,-2,0,1617,1,0,0 +2013,8,10,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,0,,835,0,1,1 +2013,10,8,2,YV,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-13,0,1507,-11,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,23,1,1158,26,1,0 +2013,4,6,6,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,-1,0,1055,32,1,0 +2013,5,17,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,800,11,0,1013,8,0,0 +2013,5,5,7,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1240,1,0,1520,3,0,0 +2013,4,15,1,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,7,0,2210,-2,0,0 +2013,10,1,2,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1140,-3,0,1410,-1,0,0 +2013,5,5,7,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,-5,0,1852,-1,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1740,23,1,2110,4,0,0 +2013,4,9,2,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1458,124,1,1629,118,1,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-1,0,1620,0,0,0 +2013,7,30,2,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,925,5,0,1112,19,1,0 +2013,9,27,5,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,955,-3,0,1116,-7,0,0 +2013,8,27,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,-8,0,814,5,0,0 +2013,8,9,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,846,2,0,0 +2013,4,2,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-7,0,905,-10,0,0 +2013,10,16,3,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1701,-2,0,1920,-4,0,0 +2013,9,22,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,30,1,2135,35,1,0 +2013,4,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,910,-7,0,1030,4,0,0 +2013,10,21,1,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1239,-3,0,1804,-16,0,0 +2013,10,15,2,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,-3,0,1335,-10,0,0 +2013,10,18,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,918,-4,0,1215,-11,0,0 +2013,4,7,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1545,-7,0,1914,-20,0,0 +2013,5,1,3,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-5,0,1615,-11,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,18,1,1042,5,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2135,-1,0,2315,4,0,0 +2013,8,15,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-4,0,1124,-22,0,0 +2013,5,2,4,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,181,1,557,170,1,0 +2013,8,11,7,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,9,0,1545,-9,0,0 +2013,10,1,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1505,-6,0,1802,-38,0,0 +2013,8,22,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1548,-5,0,1715,-11,0,0 +2013,7,10,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-7,0,746,-10,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1400,-2,0,1505,-9,0,0 +2013,8,1,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1258,-7,0,1413,-14,0,0 +2013,4,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-3,0,1640,-11,0,0 +2013,7,24,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,6,0,1012,-2,0,0 +2013,7,11,4,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-3,0,1412,-9,0,0 +2013,8,16,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-14,0,1030,-8,0,0 +2013,8,20,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,656,-2,0,944,-21,0,0 +2013,8,16,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1300,1,0,1415,-1,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1031,77,1,1815,55,1,0 +2013,9,23,1,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,28,1,2056,4,0,0 +2013,7,22,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,810,-8,0,1031,-14,0,0 +2013,6,6,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,831,-3,0,1420,0,0,0 +2013,10,11,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,919,-2,0,1015,5,0,0 +2013,6,30,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1910,7,0,1935,4,0,0 +2013,9,16,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1535,22,1,1635,29,1,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1543,12,0,1742,31,1,0 +2013,10,15,2,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1010,-6,0,1158,-23,0,0 +2013,4,6,6,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,850,4,0,1040,0,0,0 +2013,7,17,3,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2030,0,0,2225,-2,0,0 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,700,23,1,1033,20,1,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1155,48,1,1320,42,1,0 +2013,8,29,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,835,-5,0,1035,-20,0,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,-3,0,2225,19,1,0 +2013,5,26,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-4,0,1341,-7,0,0 +2013,10,2,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-8,0,2130,-1,0,0 +2013,9,25,3,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1723,4,0,1904,-10,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-7,0,1335,-18,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,925,-2,0,1152,-14,0,0 +2013,8,30,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,2,0,1015,9,0,0 +2013,7,7,7,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1348,4,0,1950,0,0,0 +2013,10,3,4,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1945,24,1,2252,31,1,0 +2013,6,24,1,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,47,1,1720,36,1,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,71,1,1739,60,1,0 +2013,5,30,4,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,2005,-7,0,48,8,0,0 +2013,4,8,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,710,0,0,830,-7,0,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-5,0,2159,8,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,31,1,1435,106,1,0 +2013,7,8,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,840,-3,0,1115,8,0,0 +2013,5,16,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2055,12,0,2215,27,1,0 +2013,4,10,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2225,-7,0,2351,-12,0,0 +2013,7,18,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,820,11,0,1026,11,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,-1,0,1927,-8,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-3,0,1830,-12,0,0 +2013,7,19,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,22,1,955,16,1,0 +2013,9,9,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,715,0,0,1000,1,0,0 +2013,6,14,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,2,0,1225,2,0,0 +2013,4,13,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,6,0,1845,0,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1330,31,1,1445,24,1,0 +2013,10,15,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,648,17,1,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,-3,0,1915,-13,0,0 +2013,7,25,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2130,7,0,2245,8,0,0 +2013,7,15,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-2,0,1305,-6,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,2,0,1145,19,1,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1040,-1,0,1315,-12,0,0 +2013,7,25,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-4,0,655,-6,0,0 +2013,8,27,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,3,0,1300,-16,0,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-4,0,2202,-12,0,0 +2013,7,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1035,-5,0,1419,-8,0,0 +2013,8,27,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-5,0,1830,-7,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,-3,0,1500,-5,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,800,-4,0,1240,-4,0,0 +2013,8,12,1,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-9,0,1355,-25,0,0 +2013,8,18,7,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1540,28,1,1843,31,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-1,0,1549,-2,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1940,-3,0,2202,12,0,0 +2013,10,21,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1735,6,0,1905,-6,0,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-3,0,918,-22,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2120,234,1,2230,203,1,0 +2013,4,21,7,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,958,17,1,1447,13,0,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2135,-9,0,2310,4,0,0 +2013,5,16,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1315,94,1,1435,89,1,0 +2013,8,12,1,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1427,21,1,2233,16,1,0 +2013,5,5,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,52,1,1854,68,1,0 +2013,4,21,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-2,0,1255,7,0,0 +2013,9,1,7,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1455,23,1,1810,26,1,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1115,2,0,1340,-3,0,0 +2013,5,14,2,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1905,-4,0,2132,-22,0,0 +2013,8,22,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1404,26,1,1700,38,1,0 +2013,9,13,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1200,2,0,1310,1,0,0 +2013,7,15,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-4,0,1507,3,0,0 +2013,5,11,6,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-1,0,1059,-13,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1503,34,1,1755,11,0,0 +2013,4,24,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-3,0,930,9,0,0 +2013,7,26,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-10,0,1110,25,1,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1610,25,1,1725,20,1,0 +2013,6,20,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2156,-7,0,2342,-10,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2003,-1,0,2145,-13,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1827,-6,0,2050,-26,0,0 +2013,9,22,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1910,-5,0,2147,-22,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1430,35,1,1550,22,1,0 +2013,7,10,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-1,0,905,6,0,0 +2013,5,9,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,7,0,1115,29,1,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,40,1,1820,19,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1925,-2,0,2109,-19,0,0 +2013,10,5,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1617,-4,0,1859,-2,0,0 +2013,10,10,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1334,-8,0,1454,-20,0,0 +2013,10,7,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,850,3,0,945,-5,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1145,-4,0,1520,-14,0,0 +2013,9,23,1,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2005,-3,0,2250,-6,0,0 +2013,8,31,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,7,0,1242,0,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,725,4,0,845,-3,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1940,29,1,2325,26,1,0 +2013,10,9,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,645,-6,0,840,-16,0,0 +2013,6,18,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1129,0,0,1428,30,1,0 +2013,6,20,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,0,0,1410,-3,0,0 +2013,8,30,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2025,18,1,2110,14,0,0 +2013,7,7,7,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,850,-7,0,1031,-9,0,0 +2013,10,22,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1425,3,0,2300,-5,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1048,2,0,1850,-15,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,0,0,1709,-9,0,0 +2013,10,24,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1450,4,0,1540,2,0,0 +2013,10,15,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1840,0,0,2125,-22,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1230,-3,0,1525,-8,0,0 +2013,6,16,7,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1335,-3,0,1853,-12,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1225,-2,0,1655,-1,0,0 +2013,4,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1610,-5,0,1800,-26,0,0 +2013,7,9,2,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1715,0,0,1913,-9,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1550,2,0,1907,-13,0,0 +2013,6,14,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1750,-4,0,2333,-28,0,0 +2013,6,27,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,905,2,0,1249,3,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2045,9,0,2215,6,0,0 +2013,8,2,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,842,0,0,1425,-10,0,0 +2013,9,8,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1653,-6,0,1845,-28,0,0 +2013,6,3,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-5,0,821,-16,0,0 +2013,6,20,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,6,0,1430,11,0,0 +2013,4,13,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1005,4,0,1315,5,0,0 +2013,9,23,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-8,0,1226,-21,0,0 +2013,5,31,5,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1000,138,1,1319,129,1,0 +2013,10,12,6,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-9,0,821,-16,0,0 +2013,10,26,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,1,0,1755,-4,0,0 +2013,9,28,6,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1015,0,0,1155,5,0,0 +2013,6,20,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-1,0,1117,-10,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1610,44,1,1715,41,1,0 +2013,4,1,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1110,10,0,1255,6,0,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-1,0,838,-3,0,0 +2013,5,9,4,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-3,0,1523,24,1,0 +2013,8,16,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,6,0,1846,-7,0,0 +2013,5,2,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,-6,0,1318,-24,0,0 +2013,7,27,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,11,0,2036,13,0,0 +2013,7,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-1,0,1037,13,0,0 +2013,7,3,3,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1325,1,0,2053,17,1,0 +2013,10,19,6,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,448,1,1240,431,1,0 +2013,7,4,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,31,1,1745,20,1,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,-5,0,2035,-7,0,0 +2013,7,30,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,4,0,1642,-11,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1420,233,1,1650,265,1,0 +2013,9,17,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,26,1,1835,32,1,0 +2013,10,28,1,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,2,0,1024,-8,0,0 +2013,7,16,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,3,0,955,-21,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2000,-1,0,2056,-11,0,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1350,24,1,1515,14,0,0 +2013,6,5,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,721,-3,0,905,5,0,0 +2013,9,17,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,-1,0,2140,-10,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1940,21,1,2210,15,1,0 +2013,7,12,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,720,-7,0,919,-31,0,0 +2013,10,18,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1625,-4,0,1730,-9,0,0 +2013,6,20,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,-4,0,1522,6,0,0 +2013,6,24,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-5,0,1652,65,1,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,900,-4,0,1055,-3,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,929,-6,0,1044,-24,0,0 +2013,4,25,4,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,835,-2,0,1151,30,1,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,2,0,2215,-8,0,0 +2013,4,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1330,28,1,1350,25,1,0 +2013,6,20,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,5,0,1815,6,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-1,0,2250,-12,0,0 +2013,10,23,3,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,830,-3,0,1026,-1,0,0 +2013,5,6,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1844,-9,0,2017,-21,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,40,1,1646,41,1,0 +2013,6,24,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-8,0,628,-23,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1500,38,1,1605,28,1,0 +2013,9,24,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1815,2,0,1957,5,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,600,2,0,805,-4,0,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,-1,0,1710,-8,0,0 +2013,5,10,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,600,-1,0,725,2,0,0 +2013,6,21,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-2,0,1652,-23,0,0 +2013,10,1,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1315,8,0,1610,7,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-7,0,1545,-19,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1844,-1,0,2107,-9,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1026,-4,0,1159,-18,0,0 +2013,9,8,7,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1710,3,0,1935,-11,0,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1254,-1,0,1752,-12,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1132,-2,0,1349,-39,0,0 +2013,4,20,6,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,930,3,0,1244,8,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,22,1,1345,21,1,0 +2013,9,21,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,824,6,0,1013,-11,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1630,-2,0,1730,-16,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-3,0,1000,-1,0,0 +2013,6,7,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,910,-2,0,1044,-7,0,0 +2013,9,28,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1710,-8,0,2132,7,0,0 +2013,6,23,7,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,655,-5,0,950,1,0,0 +2013,5,11,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1935,41,1,2025,31,1,0 +2013,10,1,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1500,-7,0,1740,-45,0,0 +2013,7,14,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,32,1,1435,26,1,0 +2013,7,23,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-1,0,921,-8,0,0 +2013,6,10,1,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2050,58,1,2255,66,1,0 +2013,6,12,3,EV,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-8,0,1322,-11,0,0 +2013,8,21,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1646,1,0,1847,13,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,1,0,1148,-19,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1035,-2,0,1310,-7,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-1,0,1407,-14,0,0 +2013,10,5,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1830,3,0,1950,-14,0,0 +2013,7,9,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2045,-5,0,449,-13,0,0 +2013,7,24,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-7,0,1707,3,0,0 +2013,7,6,6,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1430,0,0,1525,-13,0,0 +2013,7,31,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,735,-13,0,0 +2013,8,6,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1626,-1,0,1829,-10,0,0 +2013,7,23,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,33,1,1856,26,1,0 +2013,4,10,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1545,4,0,1715,1,0,0 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,615,-4,0,815,12,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1939,20,1,2140,19,1,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2155,-3,0,10,-6,0,0 +2013,8,22,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1510,2,0,2351,-25,0,0 +2013,5,18,6,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,2,0,1910,8,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,-1,0,1250,-19,0,0 +2013,10,5,6,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2130,-17,0,535,-8,0,0 +2013,6,30,7,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,813,-20,0,0 +2013,5,31,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2105,7,0,2305,-5,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1555,4,0,1712,-3,0,0 +2013,4,21,7,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2155,0,,2310,0,1,1 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,938,-2,0,1317,-7,0,0 +2013,7,21,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1350,-2,0,1505,-16,0,0 +2013,6,22,6,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1535,-1,0,1610,-6,0,0 +2013,8,8,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,316,1,1632,342,1,0 +2013,8,21,3,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,6,0,654,8,0,0 +2013,9,13,5,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,835,-4,0,1150,-16,0,0 +2013,8,1,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,735,-5,0,828,0,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1815,65,1,2030,72,1,0 +2013,7,9,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,79,1,1048,78,1,0 +2013,10,19,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,734,-10,0,0 +2013,6,16,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,50,1,2122,54,1,0 +2013,9,3,2,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,1,0,1755,9,0,0 +2013,8,4,7,DL,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-8,0,1110,-17,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2010,65,1,2115,58,1,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,-7,0,1110,-12,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-3,0,1415,-5,0,0 +2013,7,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,5,0,1225,8,0,0 +2013,6,11,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,915,-2,0,1035,-14,0,0 +2013,5,5,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-7,0,1045,-24,0,0 +2013,7,31,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-8,0,1333,-35,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1307,-2,0,1443,0,0,0 +2013,9,13,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1920,-12,0,2045,-24,0,0 +2013,6,22,6,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-1,0,1945,-9,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1055,0,0,1219,7,0,0 +2013,6,10,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,120,-8,0,515,-25,0,0 +2013,5,28,2,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,16,1,1935,9,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2120,70,1,2235,67,1,0 +2013,6,27,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-6,0,1409,-6,0,0 +2013,7,23,2,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1647,17,1,1735,13,0,0 +2013,4,2,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1455,4,0,1705,-15,0,0 +2013,7,25,4,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,715,-3,0,940,-5,0,0 +2013,9,20,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1635,26,1,1800,4,0,0 +2013,4,21,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1620,13,0,1725,8,0,0 +2013,4,3,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,4,0,1229,-1,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,0,0,825,-2,0,0 +2013,5,20,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,700,0,0,831,-12,0,0 +2013,10,10,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-6,0,849,49,1,0 +2013,9,23,1,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1940,-6,0,28,-12,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1935,249,1,2155,251,1,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2015,2,0,2155,-9,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1622,2,0,1754,1,0,0 +2013,10,28,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,-11,0,2039,8,0,0 +2013,5,8,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1000,-2,0,1105,-13,0,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,945,44,1,1350,48,1,0 +2013,9,16,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,8,0,2201,-3,0,0 +2013,8,10,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-8,0,821,-19,0,0 +2013,7,20,6,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1925,-1,0,2048,-10,0,0 +2013,5,2,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,840,-3,0,1034,15,1,0 +2013,6,12,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1845,0,,1958,0,1,1 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,-3,0,1608,-14,0,0 +2013,4,1,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1958,-5,0,2148,3,0,0 +2013,7,27,6,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,37,1,2315,27,1,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1415,-2,0,1640,-9,0,0 +2013,9,7,6,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1519,-7,0,1814,-14,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,26,1,1903,17,1,0 +2013,10,10,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,709,-5,0,902,-16,0,0 +2013,6,19,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1038,-8,0,1209,-18,0,0 +2013,7,5,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1735,-15,0,1823,-8,0,0 +2013,7,12,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-2,0,1040,-9,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-4,0,1905,-24,0,0 +2013,4,5,5,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1353,12,0,2125,2,0,0 +2013,9,18,3,US,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,52,1,1917,37,1,0 +2013,9,13,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1035,0,0,1131,2,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1645,3,0,2207,4,0,0 +2013,7,10,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,6,0,1850,4,0,0 +2013,10,5,6,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1538,10,0,1720,8,0,0 +2013,6,15,6,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1920,-5,0,2025,8,0,0 +2013,8,24,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1104,-10,0,1232,-7,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1715,97,1,1930,76,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,-2,0,1050,-6,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1550,1,0,1931,-12,0,0 +2013,8,9,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1255,-9,0,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1350,9,0,1515,1,0,0 +2013,7,19,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1320,2,0,1935,-1,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1001,-2,0,1149,-7,0,0 +2013,9,21,6,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1110,27,1,1315,11,0,0 +2013,8,17,6,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,929,-5,0,1650,-7,0,0 +2013,9,29,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,610,-7,0,714,-11,0,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,640,35,1,800,146,1,0 +2013,4,18,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1040,41,1,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1448,-3,0,1625,-4,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,853,0,0,1703,12,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1630,-3,0,1815,-10,0,0 +2013,7,28,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,750,-2,0,918,4,0,0 +2013,10,5,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1119,-6,0,1158,-4,0,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,-4,0,1304,24,1,0 +2013,4,5,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1516,0,0,1646,-5,0,0 +2013,4,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1507,33,1,1723,27,1,0 +2013,4,21,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1345,26,1,1510,31,1,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1910,15,1,2335,18,1,0 +2013,5,12,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,-1,0,1205,13,0,0 +2013,10,16,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1500,6,0,1849,-14,0,0 +2013,10,13,7,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-4,0,1917,-17,0,0 +2013,9,4,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1725,-6,0,1910,-12,0,0 +2013,4,13,6,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,750,0,0,945,10,0,0 +2013,8,24,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,830,0,0,1011,2,0,0 +2013,4,16,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,946,-6,0,1248,-4,0,0 +2013,7,21,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,0,0,2155,-7,0,0 +2013,9,9,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,829,-3,0,1139,-3,0,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1407,-3,0,1509,6,0,0 +2013,5,4,6,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1215,-5,0,1335,-14,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,915,15,1,1040,-5,0,0 +2013,8,5,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,530,-7,0,719,-10,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1539,2,0,1720,-6,0,0 +2013,5,29,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1850,6,0,2045,-2,0,0 +2013,7,25,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,-2,0,650,-5,0,0 +2013,10,23,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,645,-6,0,748,-19,0,0 +2013,8,12,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2258,3,0,702,2,0,0 +2013,10,22,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,31,1,838,34,1,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1029,-3,0,1240,-24,0,0 +2013,5,7,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-4,0,1135,7,0,0 +2013,10,18,5,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,-7,0,1710,-10,0,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1910,-5,0,1955,-4,0,0 +2013,5,13,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1648,3,0,1825,-7,0,0 +2013,10,24,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,6,0,2019,2,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1622,-1,0,1745,-9,0,0 +2013,9,26,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1315,29,1,1430,32,1,0 +2013,8,24,6,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1754,-6,0,2000,-5,0,0 +2013,8,17,6,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1600,0,0,1720,-6,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2235,111,1,2330,109,1,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-4,0,1807,-9,0,0 +2013,7,16,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,640,-5,0,805,-9,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-4,0,2357,-13,0,0 +2013,10,29,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1403,-10,0,1653,-8,0,0 +2013,4,18,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,645,-2,0,800,-3,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1305,58,1,1739,68,1,0 +2013,5,10,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-5,0,1430,-5,0,0 +2013,8,26,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,5,0,950,0,0,0 +2013,10,5,6,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1127,-7,0,1129,-6,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1350,8,0,1525,-2,0,0 +2013,9,13,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,-4,0,1426,-2,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1249,-3,0,1459,-7,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2225,18,1,2318,11,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1725,-6,0,2047,8,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,849,-3,0,1043,-9,0,0 +2013,10,23,3,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,-11,0,2305,-15,0,0 +2013,8,27,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,3,0,1230,11,0,0 +2013,6,3,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-6,0,1825,-22,0,0 +2013,8,3,6,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,-4,0,1550,-32,0,0 +2013,4,4,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,41,1,1434,37,1,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-5,0,1303,2,0,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,625,-3,0,907,-17,0,0 +2013,7,25,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,5,0,2130,5,0,0 +2013,10,14,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,950,-4,0,1310,-24,0,0 +2013,10,19,6,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-1,0,2020,-18,0,0 +2013,10,21,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,759,0,0,1100,-19,0,0 +2013,8,4,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1306,36,1,1435,20,1,0 +2013,8,18,7,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,16,1,1905,10,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1038,8,0,1215,15,1,0 +2013,8,3,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,36,1,1837,51,1,0 +2013,5,28,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1100,5,0,1200,3,0,0 +2013,10,1,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-7,0,1449,-19,0,0 +2013,4,28,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-8,0,1559,-9,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1526,-5,0,1654,-19,0,0 +2013,7,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-2,0,1025,-12,0,0 +2013,10,24,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,820,-3,0,1050,-3,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1425,-1,0,1635,-1,0,0 +2013,6,3,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,800,-9,0,1015,-30,0,0 +2013,5,12,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,840,-4,0,1026,-9,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1235,9,0,1550,22,1,0 +2013,8,8,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,658,50,1,921,53,1,0 +2013,10,5,6,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1951,0,0,2057,-15,0,0 +2013,4,22,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,841,-12,0,1040,7,0,0 +2013,7,8,1,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1525,-5,0,1904,-8,0,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1215,23,1,1500,-15,0,0 +2013,7,11,4,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,722,-3,0,1021,18,1,0 +2013,9,24,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1756,-10,0,1915,-15,0,0 +2013,9,23,1,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,16,1,2110,18,1,0 +2013,4,24,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1400,-4,0,1555,-4,0,0 +2013,6,21,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1906,0,0,2053,-20,0,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,8,0,1630,10,0,0 +2013,10,18,5,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1555,-1,0,1922,-12,0,0 +2013,7,3,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,91,1,1735,96,1,0 +2013,6,9,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,0,,1220,0,1,1 +2013,7,2,2,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-12,0,1040,-5,0,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,5,0,1240,4,0,0 +2013,10,15,2,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-7,0,1015,-13,0,0 +2013,5,5,7,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1635,14,0,1805,11,0,0 +2013,10,23,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,-6,0,1550,17,1,0 +2013,8,9,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,27,1,1305,25,1,0 +2013,7,18,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,0,0,900,-6,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1037,30,1,1224,16,1,0 +2013,7,16,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,0,,1152,0,1,1 +2013,10,8,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,655,-7,0,815,-17,0,0 +2013,5,31,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-5,0,2134,-22,0,0 +2013,4,6,6,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1555,-7,0,1755,-17,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-1,0,1044,-3,0,0 +2013,7,18,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,552,-2,0,730,-10,0,0 +2013,9,16,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1622,-4,0,1900,-3,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,752,0,0,929,-6,0,0 +2013,5,5,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,15,1,1732,5,0,0 +2013,8,10,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1250,-3,0,1547,-5,0,0 +2013,7,8,1,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-5,0,1213,-19,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1740,0,0,1943,-10,0,0 +2013,5,5,7,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1800,-6,0,2100,-17,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1551,-2,0,1845,4,0,0 +2013,7,7,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,930,-9,0,1327,-16,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,755,-5,0,1350,-11,0,0 +2013,6,3,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2055,0,0,2225,-9,0,0 +2013,10,8,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1425,9,0,1721,-4,0,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1410,48,1,1528,35,1,0 +2013,4,30,2,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,755,-2,0,1600,4,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,900,4,0,1010,13,0,0 +2013,9,15,7,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2055,16,1,2359,-3,0,0 +2013,10,2,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,845,-5,0,1054,-15,0,0 +2013,8,14,3,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,12,0,2139,21,1,0 +2013,8,5,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,950,14,0,1219,18,1,0 +2013,4,4,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1300,-4,0,1437,5,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2105,-7,0,2303,-7,0,0 +2013,7,17,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,-1,0,1315,-13,0,0 +2013,6,18,2,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,745,-3,0,1035,-17,0,0 +2013,10,27,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1350,-1,0,1506,-1,0,0 +2013,4,18,4,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1143,-7,0,1520,-11,0,0 +2013,4,16,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,0,,1410,0,1,1 +2013,6,13,4,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1430,16,1,1718,11,0,0 +2013,8,21,3,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,-2,0,1842,-1,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,20,1,1807,14,0,0 +2013,8,7,3,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1540,30,1,1843,34,1,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2100,3,0,2230,2,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1930,67,1,2030,66,1,0 +2013,10,20,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1007,-1,0,1222,-10,0,0 +2013,6,27,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1755,1,0,2013,-12,0,0 +2013,6,7,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-1,0,2045,-3,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,851,0,0,1025,-2,0,0 +2013,5,16,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1455,8,0,1735,0,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1740,34,1,2335,27,1,0 +2013,4,25,4,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,-9,0,2227,-13,0,0 +2013,6,25,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,92,1,1631,83,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2210,6,0,2317,-5,0,0 +2013,7,27,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1850,45,1,2055,35,1,0 +2013,5,1,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1440,-1,0,1614,0,0,0 +2013,8,29,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1645,10,0,1910,2,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1830,40,1,2110,37,1,0 +2013,10,8,2,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,820,-1,0,1230,-29,0,0 +2013,9,4,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1040,-4,0,1258,-13,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1120,0,0,1309,-2,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,6,0,2351,-4,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1726,-6,0,1739,-18,0,0 +2013,10,11,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-10,0,1416,-23,0,0 +2013,7,16,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,745,-11,0,830,-17,0,0 +2013,6,2,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-4,0,1112,-17,0,0 +2013,9,24,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1125,-7,0,1227,-13,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,2,0,2340,-12,0,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,745,-1,0,1040,-9,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,856,-3,0,1105,-12,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1517,-2,0,1755,-3,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,50,1,1445,47,1,0 +2013,7,4,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-4,0,930,-10,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1315,1,0,1730,9,0,0 +2013,7,31,3,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1208,14,0,1311,8,0,0 +2013,10,22,2,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1004,-6,0,1331,-7,0,0 +2013,10,13,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,825,1,0,1630,-29,0,0 +2013,8,1,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,854,-15,0,1032,-10,0,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1740,-5,0,2045,-16,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,625,4,0,725,5,0,0 +2013,7,3,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-2,0,1329,4,0,0 +2013,8,25,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1239,1,0,1554,-33,0,0 +2013,7,29,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1553,-1,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,-4,0,2148,-11,0,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-2,0,1850,2,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2145,50,1,16,28,1,0 +2013,9,24,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1800,-12,0,1953,-36,0,0 +2013,7,14,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1902,-4,0,2105,-18,0,0 +2013,6,10,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1245,12,0,1510,13,0,0 +2013,8,25,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-7,0,2316,-23,0,0 +2013,4,13,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1505,79,1,1913,93,1,0 +2013,4,22,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,835,-9,0,1020,25,1,0 +2013,5,17,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,-1,0,1452,3,0,0 +2013,10,25,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1355,81,1,1530,67,1,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1510,38,1,1620,24,1,0 +2013,10,3,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1200,-5,0,1500,-8,0,0 +2013,8,25,7,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-7,0,1104,-25,0,0 +2013,4,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1505,-5,0,1557,-14,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2235,-2,0,2325,-6,0,0 +2013,4,25,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,3,0,1325,-9,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-5,0,1240,-6,0,0 +2013,10,6,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1004,4,0,0 +2013,10,31,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,940,2,0,1055,3,0,0 +2013,4,29,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1024,-4,0,0 +2013,7,7,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,-1,0,1320,-7,0,0 +2013,9,1,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1710,-3,0,1835,0,0,0 +2013,10,17,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1752,1,0,2119,-6,0,0 +2013,8,26,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2153,22,1,2246,18,1,0 +2013,5,5,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1035,-8,0,1629,-4,0,0 +2013,10,25,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,13,0,2020,29,1,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1310,105,1,1626,99,1,0 +2013,4,23,2,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2200,34,1,2312,57,1,0 +2013,5,9,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,1,0,1633,-12,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,-2,0,2310,-15,0,0 +2013,7,2,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,20,1,2230,42,1,0 +2013,5,15,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,97,1,2209,73,1,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,111,1,2252,94,1,0 +2013,10,24,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1605,0,0,1650,-5,0,0 +2013,4,3,3,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1449,-8,0,1602,-13,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1250,1,0,1410,-8,0,0 +2013,4,23,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,828,-3,0,905,0,0,0 +2013,4,7,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,4,0,1115,1,0,0 +2013,6,5,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-10,0,1150,-9,0,0 +2013,5,12,7,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1021,11,0,1352,7,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,800,-1,0,1235,-8,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1910,28,1,2045,27,1,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1405,-4,0,1750,-2,0,0 +2013,8,15,4,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-4,0,1653,4,0,0 +2013,10,25,5,9E,12451,Jacksonville International,Jacksonville,FL,12953,LaGuardia,New York,NY,1125,-3,0,1345,-21,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1040,-2,0,1133,-3,0,0 +2013,10,17,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,656,-7,0,821,-1,0,0 +2013,9,18,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,720,-2,0,840,-8,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,18,1,1745,21,1,0 +2013,8,8,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1411,84,1,1543,82,1,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,1,0,1623,-5,0,0 +2013,8,30,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1032,-4,0,1551,12,0,0 +2013,4,10,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-7,0,1410,20,1,0 +2013,7,19,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,940,-2,0,1050,-5,0,0 +2013,10,12,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-4,0,1405,-1,0,0 +2013,9,6,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1924,77,1,2031,75,1,0 +2013,4,11,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1100,150,1,1213,182,1,0 +2013,8,1,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,955,-2,0,1055,-10,0,0 +2013,5,7,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1331,-13,0,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1850,93,1,2154,98,1,0 +2013,4,16,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1215,9,0,1331,4,0,0 +2013,4,12,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,1535,-13,0,0 +2013,9,28,6,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-5,0,1258,-11,0,0 +2013,4,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-5,0,1920,7,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-3,0,1255,2,0,0 +2013,4,9,2,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,752,-18,0,0 +2013,4,14,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1415,-3,0,1700,-23,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1130,41,1,1240,34,1,0 +2013,10,27,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-2,0,2127,-9,0,0 +2013,7,3,3,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,-3,0,2120,6,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,-1,0,55,-18,0,0 +2013,5,26,7,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,-4,0,1455,-6,0,0 +2013,5,26,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,-2,0,1613,-8,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1950,-6,0,2130,-18,0,0 +2013,4,23,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,843,-4,0,1120,-2,0,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,-1,0,20,-9,0,0 +2013,10,21,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,4,0,1459,-12,0,0 +2013,5,11,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1617,-10,0,1705,-7,0,0 +2013,6,19,3,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1514,-6,0,1735,-10,0,0 +2013,10,22,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,7,0,1552,1,0,0 +2013,8,3,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-6,0,1158,-9,0,0 +2013,10,6,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,545,1,0,712,-2,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-1,0,1205,-11,0,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2019,-3,0,2045,-12,0,0 +2013,5,21,2,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1315,0,0,1600,-21,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1640,113,1,1850,142,1,0 +2013,4,30,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-10,0,2001,-22,0,0 +2013,8,6,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,625,-1,0,735,-9,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,750,-5,0,1048,-7,0,0 +2013,6,13,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,715,-5,0,1004,-7,0,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,81,1,2039,75,1,0 +2013,7,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1500,2,0,1720,-11,0,0 +2013,5,30,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,637,-5,0,1421,30,1,0 +2013,5,14,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1605,-2,0,1805,-5,0,0 +2013,5,30,4,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1429,88,1,1615,104,1,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-2,0,1414,2,0,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1012,-7,0,1048,3,0,0 +2013,9,2,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-2,0,805,-13,0,0 +2013,10,21,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1548,0,0,1911,-18,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-4,0,1614,-31,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,13,0,1735,2,0,0 +2013,8,16,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1740,7,0,1855,-3,0,0 +2013,5,13,1,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1100,-8,0,1452,-18,0,0 +2013,8,18,7,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-4,0,1949,6,0,0 +2013,6,2,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1835,24,1,1935,22,1,0 +2013,8,30,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-3,0,1745,7,0,0 +2013,4,15,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,8,0,1054,6,0,0 +2013,4,30,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,41,1,1719,32,1,0 +2013,7,28,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1859,151,1,2038,133,1,0 +2013,6,30,7,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,75,1,1642,90,1,0 +2013,9,15,7,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,700,-5,0,753,-16,0,0 +2013,4,28,7,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,1,0,1640,-13,0,0 +2013,6,28,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1740,-5,0,1900,-6,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1730,10,0,2205,-7,0,0 +2013,5,24,5,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1655,34,1,1930,14,0,0 +2013,4,26,5,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-11,0,1938,-18,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1650,13,0,1820,10,0,0 +2013,9,5,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-5,0,2232,-38,0,0 +2013,7,31,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,-1,0,932,0,0,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,2,0,930,9,0,0 +2013,10,22,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1750,-4,0,1948,-18,0,0 +2013,10,14,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1335,9,0,1449,-3,0,0 +2013,4,9,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,600,-10,0,720,-17,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1102,-2,0,1341,13,0,0 +2013,9,27,5,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-6,0,1903,-8,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1345,0,0,1621,-21,0,0 +2013,7,1,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,852,90,1,1205,104,1,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1754,1,0,1930,-11,0,0 +2013,8,12,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,735,-3,0,857,-9,0,0 +2013,10,31,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1213,-5,0,1505,-14,0,0 +2013,7,1,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,705,7,0,944,14,0,0 +2013,7,2,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,0,0,1004,-4,0,0 +2013,6,5,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1240,64,1,1410,57,1,0 +2013,4,18,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-5,0,2314,-6,0,0 +2013,4,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,-5,0,1301,-6,0,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,815,5,0,1640,16,1,0 +2013,8,7,3,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,0,0,1200,-4,0,0 +2013,5,31,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2130,-8,0,2308,0,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,8,0,2146,11,0,0 +2013,5,12,7,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-6,0,2039,-20,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1850,10,0,2045,30,1,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1745,74,1,145,56,1,0 +2013,6,7,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1710,60,1,2000,68,1,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2040,-4,0,2235,-9,0,0 +2013,10,27,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1621,-3,0,1915,1,0,0 +2013,5,31,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,22,1,1623,41,1,0 +2013,10,12,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1725,62,1,1835,46,1,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,850,-6,0,1125,-10,0,0 +2013,6,29,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,12,0,1030,-12,0,0 +2013,4,24,3,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,902,25,1,1024,27,1,0 +2013,6,17,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1705,9,0,1805,2,0,0 +2013,9,19,4,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,800,225,1,859,263,1,0 +2013,10,14,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,712,-10,0,0 +2013,8,15,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,720,104,1,740,90,1,0 +2013,4,22,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,11,0,1740,16,1,0 +2013,6,20,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-3,0,1018,13,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1412,9,0,1550,3,0,0 +2013,8,22,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,27,1,2144,28,1,0 +2013,8,19,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1335,-8,0,1555,-19,0,0 +2013,5,4,6,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-1,0,640,-24,0,0 +2013,10,2,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-12,0,1726,-10,0,0 +2013,6,24,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,1819,13,0,0 +2013,6,15,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1025,20,1,1135,8,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1345,1,0,1627,-11,0,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,5,0,2045,-22,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1532,8,0,1726,-5,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,645,-4,0,950,-8,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,920,9,0,1335,-1,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-7,0,24,-9,0,0 +2013,6,30,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-5,0,1100,-16,0,0 +2013,5,24,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,141,1,2043,130,1,0 +2013,6,12,3,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1730,22,1,1950,0,0,0 +2013,10,25,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1500,-5,0,1723,-13,0,0 +2013,9,21,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1724,-2,0,2004,-10,0,0 +2013,6,6,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1147,7,0,1255,7,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1715,58,1,2020,44,1,0 +2013,10,31,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,805,-4,0,840,-8,0,0 +2013,6,23,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1945,76,1,2006,70,1,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,600,-5,0,900,4,0,0 +2013,6,2,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,927,11,0,1111,-7,0,0 +2013,10,31,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1740,15,1,1920,12,0,0 +2013,4,27,6,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1530,-5,0,1915,-13,0,0 +2013,7,3,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1235,-9,0,1440,1,0,0 +2013,7,5,5,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1559,-5,0,1810,-11,0,0 +2013,4,19,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,834,-5,0,946,-29,0,0 +2013,7,31,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1350,9,0,1550,25,1,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,-5,0,1600,-8,0,0 +2013,6,1,6,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1155,-9,0,1405,-13,0,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,715,38,1,1053,53,1,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,-5,0,5,-14,0,0 +2013,8,30,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1117,-5,0,1250,-4,0,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1720,0,0,1805,-6,0,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-7,0,758,-16,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,155,1,1459,163,1,0 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,856,-1,0,908,5,0,0 +2013,4,15,1,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1432,-1,0,1928,-28,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,930,2,0,1650,0,0,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,0,0,2250,6,0,0 +2013,8,1,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,825,-11,0,0 +2013,7,5,5,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,910,-2,0,1120,1,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1449,-4,0,1629,8,0,0 +2013,6,7,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,1,0,1825,-14,0,0 +2013,8,26,1,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,635,-6,0,739,-7,0,0 +2013,4,13,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,800,-6,0,930,-18,0,0 +2013,10,21,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1730,-5,0,1825,-6,0,0 +2013,4,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1525,65,1,1745,66,1,0 +2013,5,2,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1345,-5,0,1433,-12,0,0 +2013,5,13,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,555,-6,0,847,-23,0,0 +2013,7,1,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-5,0,725,-2,0,0 +2013,7,17,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,859,0,0,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-5,0,1135,-21,0,0 +2013,7,5,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-9,0,451,-14,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,710,-5,0,1548,6,0,0 +2013,5,19,7,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,715,-1,0,810,-5,0,0 +2013,9,27,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1342,3,0,1509,-6,0,0 +2013,9,11,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,-8,0,2154,23,1,0 +2013,10,13,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,916,-2,0,1029,-11,0,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2145,10,0,10,-12,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,830,-2,0,1115,-8,0,0 +2013,5,26,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-4,0,1500,-14,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,-5,0,1922,-8,0,0 +2013,10,26,6,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,9,0,1605,6,0,0 +2013,10,1,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,0,0,1420,-8,0,0 +2013,8,14,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-4,0,648,-11,0,0 +2013,4,18,4,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,101,1,1230,108,1,0 +2013,9,25,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,737,44,1,931,13,0,0 +2013,4,1,1,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1005,-6,0,1435,9,0,0 +2013,7,23,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1116,-7,0,1151,-7,0,0 +2013,6,21,5,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-4,0,1750,-15,0,0 +2013,6,15,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1515,4,0,1849,2,0,0 +2013,9,6,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-6,0,900,-11,0,0 +2013,9,3,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,622,-6,0,1207,19,1,0 +2013,8,12,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1120,-9,0,0 +2013,5,13,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-6,0,1955,-15,0,0 +2013,7,13,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1903,74,1,2004,60,1,0 +2013,6,7,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1450,-11,0,2320,-3,0,0 +2013,7,30,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,-7,0,1459,-26,0,0 +2013,4,16,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-1,0,1900,-15,0,0 +2013,7,2,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1400,0,0,1440,-15,0,0 +2013,10,31,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1450,0,0,1545,2,0,0 +2013,4,5,5,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1854,22,1,2135,6,0,0 +2013,5,17,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,1,0,1955,-13,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1410,-2,0,1425,-21,0,0 +2013,8,21,3,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1135,68,1,1325,74,1,0 +2013,7,29,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,18,1,2310,13,0,0 +2013,6,7,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-8,0,1744,-22,0,0 +2013,8,26,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-7,0,1635,-22,0,0 +2013,7,11,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,24,1,1955,147,1,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,849,21,1,1215,3,0,0 +2013,6,15,6,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,5,0,2039,-15,0,0 +2013,4,3,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1800,19,1,1925,9,0,0 +2013,6,24,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,27,-4,0,633,-5,0,0 +2013,5,13,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1703,-8,0,1803,-11,0,0 +2013,7,25,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-5,0,2102,-4,0,0 +2013,7,5,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1940,50,1,2215,53,1,0 +2013,9,13,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,49,1,917,45,1,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,835,4,0,1100,-25,0,0 +2013,9,13,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,-7,0,1316,-23,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,-6,0,1803,-12,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1535,1,0,1730,-16,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1825,67,1,2144,71,1,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,955,-2,0,1231,-9,0,0 +2013,5,4,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,630,-3,0,820,4,0,0 +2013,8,28,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1154,20,1,1453,105,1,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2230,18,1,644,18,1,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,1,0,1755,-1,0,0 +2013,4,27,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,750,-3,0,855,11,0,0 +2013,8,3,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1755,-1,0,1900,3,0,0 +2013,7,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,725,26,1,1130,32,1,0 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-2,0,1025,-14,0,0 +2013,6,1,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1659,-8,0,1932,-17,0,0 +2013,4,28,7,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,1020,-13,0,1809,-24,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2005,0,0,2125,-3,0,0 +2013,8,24,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1540,0,0,1700,6,0,0 +2013,8,15,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1305,-5,0,1414,-23,0,0 +2013,7,10,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1035,18,1,1154,8,0,0 +2013,10,3,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,1,0,1651,-8,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1155,-4,0,2035,-9,0,0 +2013,6,27,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2103,15,1,2219,19,1,0 +2013,6,7,5,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1450,86,1,1641,81,1,0 +2013,10,16,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,3,0,2130,-14,0,0 +2013,4,16,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1036,0,0,1050,-1,0,0 +2013,10,8,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1348,9,0,1418,13,0,0 +2013,8,8,4,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,545,-3,0,656,-9,0,0 +2013,7,28,7,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-1,0,1356,-8,0,0 +2013,6,14,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,1,0,732,-3,0,0 +2013,9,21,6,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1039,-10,0,1211,-11,0,0 +2013,4,7,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1030,-8,0,1505,-13,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,46,1,954,31,1,0 +2013,10,9,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1639,2,0,1905,-4,0,0 +2013,9,25,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,2,0,1530,6,0,0 +2013,9,24,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1155,-8,0,1245,-20,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-1,0,1640,-13,0,0 +2013,5,3,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,640,-3,0,740,-15,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,58,1,1210,47,1,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,900,-1,0,1015,-8,0,0 +2013,6,12,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,0,0,1300,-1,0,0 +2013,8,10,6,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,1,0,2130,1,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1140,2,0,1300,0,0,0 +2013,10,30,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1936,13,0,2244,23,1,0 +2013,10,31,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-5,0,752,10,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2101,3,0,2227,-2,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2025,20,1,2155,14,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2020,-5,0,2202,-15,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,-6,0,1935,-8,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,0,0,1357,-6,0,0 +2013,9,9,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,-7,0,1830,-9,0,0 +2013,9,8,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1635,-10,0,1900,-15,0,0 +2013,5,30,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1240,-1,0,1425,19,1,0 +2013,7,3,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-7,0,2045,-7,0,0 +2013,5,30,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2055,665,1,2200,646,1,0 +2013,9,23,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,-5,0,1600,-30,0,0 +2013,7,5,5,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,-4,0,1925,-7,0,0 +2013,9,28,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1629,-6,0,1859,-17,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,820,5,0,1250,-8,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2025,-3,0,2300,-28,0,0 +2013,7,21,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-5,0,754,2,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1735,-3,0,1845,-15,0,0 +2013,8,2,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-6,0,905,-3,0,0 +2013,10,28,1,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,-3,0,1836,-6,0,0 +2013,6,17,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1407,14,0,1600,26,1,0 +2013,7,10,3,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,851,-6,0,0 +2013,5,3,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,104,1,1255,136,1,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-3,0,1550,-9,0,0 +2013,4,30,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,-7,0,2036,-9,0,0 +2013,8,18,7,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-6,0,1130,-27,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1928,-2,0,2114,-6,0,0 +2013,8,6,2,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1715,6,0,2048,6,0,0 +2013,8,6,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1855,35,1,2015,26,1,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1150,-5,0,1629,-47,0,0 +2013,5,27,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,4,0,1905,-7,0,0 +2013,7,11,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1925,56,1,2035,55,1,0 +2013,4,9,2,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1921,-6,0,2147,-1,0,0 +2013,5,20,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-1,0,1649,-5,0,0 +2013,10,8,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,-2,0,2225,10,0,0 +2013,8,8,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,0,0,2021,30,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1625,19,1,1738,1,0,0 +2013,6,17,1,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1508,-3,0,1625,-8,0,0 +2013,10,25,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,905,-5,0,939,-4,0,0 +2013,5,21,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1059,-3,0,1918,3,0,0 +2013,6,1,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,824,2,0,1106,6,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,925,9,0,1040,10,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-7,0,1544,-7,0,0 +2013,4,19,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,635,161,1,810,177,1,0 +2013,7,5,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1453,-1,0,1755,-13,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1515,-1,0,1855,0,0,0 +2013,9,17,2,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1410,128,1,2225,119,1,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,835,-1,0,1040,-6,0,0 +2013,8,5,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,740,-6,0,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1910,-4,0,2244,-8,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,35,1,2106,49,1,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,-3,0,1633,-19,0,0 +2013,4,16,2,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1223,-5,0,1343,-5,0,0 +2013,7,11,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,121,1,1920,171,1,0 +2013,7,24,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-5,0,1227,-14,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-9,0,2202,-1,0,0 +2013,6,21,5,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1659,3,0,1941,-6,0,0 +2013,9,8,7,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,950,-1,0,1100,-6,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,0,2250,-10,0,0 +2013,5,19,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1340,-8,0,1500,-14,0,0 +2013,8,24,6,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-3,0,1316,-24,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,850,137,1,1253,126,1,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1249,139,1,1350,123,1,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,-6,0,1711,8,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1445,-4,0,1718,-1,0,0 +2013,8,15,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1534,14,0,1723,-4,0,0 +2013,9,5,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1145,-7,0,1314,-10,0,0 +2013,6,13,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-9,0,910,-23,0,0 +2013,6,8,6,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1230,-1,0,1300,-7,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2015,0,0,2130,19,1,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,800,0,0,1315,-1,0,0 +2013,6,3,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,3,0,1405,2,0,0 +2013,6,1,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,1,0,1411,4,0,0 +2013,8,5,1,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1915,4,0,2140,-3,0,0 +2013,10,4,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,635,3,0,1454,-17,0,0 +2013,10,27,7,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1329,-12,0,1529,-19,0,0 +2013,5,22,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-20,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,925,12,0,1235,15,1,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1535,3,0,1625,0,0,0 +2013,10,31,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-6,0,1057,-2,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-4,0,1524,-15,0,0 +2013,4,18,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1341,113,1,1646,103,1,0 +2013,5,5,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2314,14,0,504,39,1,0 +2013,5,14,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,849,-7,0,930,-19,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1132,67,1,1350,37,1,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,18,1,1626,4,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1217,-3,0,1248,-8,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,-7,0,903,1,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2030,-4,0,2225,-6,0,0 +2013,9,21,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1617,12,0,1859,0,0,0 +2013,4,23,2,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1435,-4,0,1720,-10,0,0 +2013,9,28,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1910,-2,0,2159,-30,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-2,0,1911,-9,0,0 +2013,6,6,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-7,0,2110,-11,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2125,17,1,2305,8,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1310,0,0,1640,-5,0,0 +2013,9,7,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-9,0,1040,-16,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1610,8,0,1840,1,0,0 +2013,7,20,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,0,0,1618,-12,0,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2200,20,1,2305,20,1,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2015,-5,0,2215,-8,0,0 +2013,4,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,-7,0,2324,-9,0,0 +2013,7,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,-5,0,1714,-7,0,0 +2013,10,22,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,-4,0,1705,-17,0,0 +2013,6,22,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1745,36,1,1905,43,1,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1250,2,0,1430,-14,0,0 +2013,8,28,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1216,-9,0,1255,-4,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,641,-4,0,810,11,0,0 +2013,5,4,6,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1430,15,1,2229,26,1,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1010,-7,0,1418,-18,0,0 +2013,8,31,6,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1340,-7,0,1555,-22,0,0 +2013,5,24,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1836,-6,0,1940,-14,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,852,-3,0,1156,-32,0,0 +2013,9,22,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-2,0,1425,-16,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1225,74,1,1336,58,1,0 +2013,6,21,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,0,0,1425,2,0,0 +2013,10,13,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1130,22,1,1349,-1,0,0 +2013,8,23,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,715,14,0,914,2,0,0 +2013,5,23,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1743,126,1,2023,108,1,0 +2013,10,7,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-1,0,914,-6,0,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1835,7,0,2255,3,0,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-4,0,922,-1,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,726,-3,0,904,-12,0,0 +2013,8,9,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-2,0,1213,-5,0,0 +2013,6,14,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1930,-6,0,2050,-17,0,0 +2013,10,26,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,715,-8,0,832,18,1,0 +2013,5,3,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-2,0,2220,-36,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1805,14,0,1935,41,1,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2010,-10,0,2312,-18,0,0 +2013,10,16,3,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1209,2,0,0 +2013,9,3,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,-8,0,1800,-16,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-9,0,1010,-14,0,0 +2013,7,21,7,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1225,0,0,1800,-3,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1511,-6,0,1841,-7,0,0 +2013,9,4,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1244,-1,0,1725,9,0,0 +2013,5,2,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1333,30,1,1444,70,1,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1315,-5,0,1659,-31,0,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,850,10,0,1020,19,1,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1115,0,0,1220,-5,0,0 +2013,4,29,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1945,70,1,2009,47,1,0 +2013,7,26,5,B6,13796,Metropolitan Oakland International,Oakland,CA,10721,Logan International,Boston,MA,2359,23,1,822,7,0,0 +2013,6,15,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,900,39,1,950,38,1,0 +2013,4,28,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-2,0,1413,-5,0,0 +2013,9,11,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-10,0,837,3,0,0 +2013,4,15,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2210,41,1,15,43,1,0 +2013,10,12,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,923,1,0,1434,-17,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1305,-3,0,1558,-6,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,96,1,2316,87,1,0 +2013,5,4,6,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1135,-4,0,1325,-20,0,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1505,0,0,1845,2,0,0 +2013,4,1,1,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1539,-4,0,1735,-1,0,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,-4,0,853,-11,0,0 +2013,9,10,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1002,-2,0,1630,-10,0,0 +2013,9,13,5,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1655,-1,0,1923,-9,0,0 +2013,8,6,2,DL,13244,Memphis International,Memphis,TN,14747,Seattle/Tacoma International,Seattle,WA,1940,-2,0,2212,-7,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1611,43,1,1814,26,1,0 +2013,7,4,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1525,4,0,1700,0,0,0 +2013,7,8,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,3,0,1522,7,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,5,0,1130,1,0,0 +2013,5,2,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,-3,0,2215,-13,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2301,5,0,502,4,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2040,-3,0,2355,-3,0,0 +2013,6,6,4,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1745,27,1,2106,-7,0,0 +2013,6,7,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,830,9,0,955,1,0,0 +2013,9,8,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,37,1,1935,44,1,0 +2013,5,23,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1020,56,1,1602,73,1,0 +2013,7,9,2,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1600,118,1,1734,112,1,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-4,0,905,-1,0,0 +2013,8,13,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,900,-4,0,1455,-20,0,0 +2013,4,21,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1120,5,0,1245,0,0,0 +2013,4,6,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,715,-4,0,830,-12,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1755,12,0,2140,27,1,0 +2013,8,9,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1850,-7,0,2020,-8,0,0 +2013,8,14,3,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1417,-6,0,1630,-13,0,0 +2013,4,1,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1350,-2,0,1545,-9,0,0 +2013,7,12,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,844,2,0,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1205,0,0,1318,-12,0,0 +2013,10,14,1,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,848,-8,0,1040,0,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,105,1,2255,88,1,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-3,0,715,-5,0,0 +2013,10,21,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1340,0,0,1500,-4,0,0 +2013,9,8,7,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,856,2,0,0 +2013,9,1,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,-2,0,1540,-1,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1810,1,0,2023,-6,0,0 +2013,4,13,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1059,-5,0,1225,-14,0,0 +2013,8,28,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,-4,0,2155,-4,0,0 +2013,7,14,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,115,-6,0,545,-12,0,0 +2013,10,29,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-5,0,720,-8,0,0 +2013,10,16,3,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1046,-6,0,1210,-1,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2203,0,0,100,-19,0,0 +2013,4,28,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1230,-8,0,1401,-21,0,0 +2013,8,16,5,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,-1,0,130,-7,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,25,1,1529,5,0,0 +2013,5,10,5,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1610,23,1,1751,2,0,0 +2013,5,14,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1910,0,0,2128,-41,0,0 +2013,9,6,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-10,0,852,-10,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,740,-1,0,1125,10,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1700,121,1,1800,124,1,0 +2013,6,19,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-5,0,1310,-6,0,0 +2013,8,13,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1913,23,1,2224,20,1,0 +2013,6,20,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,57,1,1937,58,1,0 +2013,8,12,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-1,0,951,20,1,0 +2013,10,23,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,905,-2,0,1700,-28,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1359,-9,0,1439,-8,0,0 +2013,4,23,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1055,9,0,1208,0,0,0 +2013,5,22,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,4,0,1904,13,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,19,1,805,19,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,1,0,1624,-10,0,0 +2013,6,25,2,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1255,-3,0,1430,-10,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2010,8,0,2250,-2,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,28,1,904,38,1,0 +2013,4,29,1,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,9,0,1830,5,0,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,7,0,1245,12,0,0 +2013,10,28,1,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,710,-7,0,935,-17,0,0 +2013,7,22,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1558,9,0,0 +2013,7,29,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,700,0,0,814,-2,0,0 +2013,5,20,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2012,-8,0,2048,-3,0,0 +2013,9,15,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1855,-1,0,2130,-8,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1505,100,1,1751,86,1,0 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1830,113,1,2235,117,1,0 +2013,4,1,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1015,3,0,1315,11,0,0 +2013,9,19,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1053,-3,0,1219,10,0,0 +2013,10,5,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2118,-4,0,2241,8,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-5,0,1525,-14,0,0 +2013,6,1,6,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-2,0,735,4,0,0 +2013,9,15,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1710,-2,0,1835,-18,0,0 +2013,7,3,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1555,42,1,1700,36,1,0 +2013,6,11,2,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1053,-4,0,1830,-15,0,0 +2013,4,8,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,925,17,1,1135,3,0,0 +2013,9,29,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-4,0,1551,-5,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,805,-3,0,1105,-13,0,0 +2013,4,11,4,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1217,-4,0,1304,-15,0,0 +2013,4,28,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1531,3,0,1643,-11,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1756,25,1,1925,16,1,0 +2013,8,5,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-1,0,2245,-12,0,0 +2013,5,9,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,46,1,1800,32,1,0 +2013,9,28,6,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,820,0,0,1100,13,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,1,0,1006,8,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,-6,0,1613,-22,0,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,920,6,0,1050,-8,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,555,-3,0,1405,-25,0,0 +2013,7,21,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,-6,0,2230,-9,0,0 +2013,7,24,3,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,730,-6,0,1021,-19,0,0 +2013,9,25,3,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-7,0,915,-13,0,0 +2013,7,12,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,-1,0,1130,1,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-3,0,1301,-10,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,72,1,1643,83,1,0 +2013,9,17,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,936,-4,0,1047,5,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,1,0,1351,11,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2035,-1,0,2330,-5,0,0 +2013,5,26,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1450,-5,0,1755,-22,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1015,0,0,1155,-3,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1005,-4,0,1127,-10,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,0,0,1015,5,0,0 +2013,9,19,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,806,-5,0,0 +2013,10,9,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-5,0,2033,-10,0,0 +2013,8,1,4,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1735,0,0,1755,4,0,0 +2013,6,13,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1314,10,0,1400,-2,0,0 +2013,8,16,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-4,0,1049,-14,0,0 +2013,10,23,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1855,-4,0,1949,-7,0,0 +2013,6,1,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1530,75,1,1815,88,1,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1705,4,0,1830,-5,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2010,7,0,2310,13,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,34,1,2250,35,1,0 +2013,5,27,1,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1305,-10,0,1435,-16,0,0 +2013,6,14,5,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,845,-5,0,1125,-9,0,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,705,-7,0,755,-12,0,0 +2013,8,10,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-3,0,1747,-11,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1053,19,1,1630,8,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1804,3,0,2007,-5,0,0 +2013,4,8,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2105,30,1,2220,36,1,0 +2013,9,15,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1005,-1,0,1236,18,1,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1310,-9,0,1440,-17,0,0 +2013,5,17,5,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1635,-4,0,2040,-9,0,0 +2013,4,15,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,-3,0,1910,-13,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,1,0,2000,0,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,1,0,1445,-5,0,0 +2013,8,19,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1650,0,0,1748,-13,0,0 +2013,5,13,1,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-1,0,915,-13,0,0 +2013,7,21,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-2,0,1605,-1,0,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,643,-1,0,820,-4,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1900,-1,0,2050,-8,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1025,7,0,1240,32,1,0 +2013,9,20,5,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-1,0,2230,-20,0,0 +2013,7,28,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1505,-2,0,1630,-2,0,0 +2013,4,19,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1246,1,0,1453,19,1,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,639,25,1,753,8,0,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,-5,0,1100,-10,0,0 +2013,8,15,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-8,0,1045,-31,0,0 +2013,8,10,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,79,1,1910,65,1,0 +2013,7,8,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1859,96,1,2100,85,1,0 +2013,4,3,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,709,-1,0,1000,-8,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,720,-4,0,1157,-30,0,0 +2013,7,11,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2341,38,1,800,42,1,0 +2013,10,29,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1110,-9,0,1340,0,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,26,1,2052,20,1,0 +2013,10,3,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,615,-6,0,955,-15,0,0 +2013,10,14,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1100,0,0,1225,2,0,0 +2013,8,15,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1328,-2,0,1530,-13,0,0 +2013,9,26,4,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,-4,0,1848,-24,0,0 +2013,8,21,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-4,0,754,-4,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1218,-5,0,1314,-8,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1415,-4,0,1633,-16,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1635,14,0,2000,13,0,0 +2013,4,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-6,0,1327,-15,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,59,1,1735,48,1,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,737,33,1,834,20,1,0 +2013,7,15,1,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,955,1,0,1210,-17,0,0 +2013,10,17,4,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,600,-6,0,736,-23,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-6,0,1837,-24,0,0 +2013,7,2,2,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1223,-2,0,1340,-13,0,0 +2013,6,28,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1545,7,0,1650,2,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1005,-7,0,1155,-9,0,0 +2013,7,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1358,-2,0,1651,-5,0,0 +2013,9,26,4,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1130,-2,0,1305,-5,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,18,1,2340,35,1,0 +2013,5,4,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,849,-9,0,1008,-35,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,925,12,0,1100,-4,0,0 +2013,6,3,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,2,0,1039,31,1,0 +2013,9,21,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,845,0,,1005,0,1,1 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-8,0,1014,-15,0,0 +2013,6,6,4,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1155,-2,0,1420,-23,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,0,0,1040,5,0,0 +2013,5,30,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1929,6,0,2105,-11,0,0 +2013,6,16,7,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,4,0,1355,10,0,0 +2013,7,1,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1115,109,1,1305,104,1,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1325,154,1,1711,169,1,0 +2013,7,12,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-7,0,1014,-4,0,0 +2013,4,3,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,658,-7,0,825,-16,0,0 +2013,8,23,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,3,0,641,7,0,0 +2013,6,4,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-4,0,848,-4,0,0 +2013,10,7,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,625,-7,0,832,10,0,0 +2013,9,7,6,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,530,-5,0,806,-47,0,0 +2013,7,5,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1301,0,0,1810,-4,0,0 +2013,5,18,6,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,11,0,1530,6,0,0 +2013,10,22,2,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1000,-2,0,1605,-9,0,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1013,0,0,1608,-19,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1045,-2,0,1210,-3,0,0 +2013,8,31,6,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1100,-3,0,1331,-16,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,-7,0,2228,-9,0,0 +2013,6,5,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,845,-4,0,1030,-25,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,935,-3,0,1150,10,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1835,131,1,1940,124,1,0 +2013,4,3,3,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,700,-3,0,839,5,0,0 +2013,5,19,7,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1145,2,0,1250,-4,0,0 +2013,6,17,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,6,0,1540,-4,0,0 +2013,9,25,3,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-11,0,1050,-14,0,0 +2013,6,15,6,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1030,9,0,1455,11,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1810,2,0,2047,-40,0,0 +2013,8,31,6,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,98,1,1915,73,1,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,2,0,1645,-19,0,0 +2013,10,13,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1153,17,1,1442,0,0,0 +2013,5,29,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1845,82,1,2015,81,1,0 +2013,4,25,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1743,-7,0,2105,-17,0,0 +2013,9,2,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,-3,0,1309,0,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1311,-3,0,1423,-20,0,0 +2013,7,15,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-10,0,1020,-9,0,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1220,-1,0,1345,1,0,0 +2013,5,29,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,845,-3,0,945,-8,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1720,42,1,2055,25,1,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1331,-2,0,1645,-26,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2145,27,1,2356,12,0,0 +2013,4,6,6,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2125,-4,0,522,-4,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1411,-3,0,1543,-10,0,0 +2013,10,2,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-12,0,845,-24,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,725,-1,0,840,-3,0,0 +2013,8,16,5,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,720,-4,0,1445,-6,0,0 +2013,8,23,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-3,0,1748,2,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,-10,0,2240,-29,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,949,-1,0,1242,-19,0,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1335,11,0,1500,1,0,0 +2013,7,3,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2029,23,1,453,12,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,929,7,0,1053,26,1,0 +2013,6,6,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2145,7,0,600,-15,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1335,-1,0,1509,-16,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1445,68,1,1617,71,1,0 +2013,4,17,3,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1753,-3,0,1838,-3,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,930,55,1,1248,37,1,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,0,,1725,0,1,1 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1923,43,1,2020,41,1,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1710,6,0,2235,4,0,0 +2013,4,28,7,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,540,7,0,904,-1,0,0 +2013,10,10,4,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2305,-6,0,702,8,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1610,41,1,1840,66,1,0 +2013,5,30,4,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,635,-10,0,758,-14,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-6,0,1532,-18,0,0 +2013,5,20,1,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,40,1,655,2,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,171,1,1915,162,1,0 +2013,9,19,4,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1620,177,1,1730,175,1,0 +2013,7,8,1,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,612,1,0,745,-9,0,0 +2013,5,5,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,650,-12,0,1035,-22,0,0 +2013,9,27,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,2,0,1630,-3,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,12,0,1010,16,1,0 +2013,5,7,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1713,-3,0,2137,2,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1905,7,0,2140,11,0,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2026,24,1,2147,8,0,0 +2013,7,8,1,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-1,0,1205,-2,0,0 +2013,4,11,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1145,5,0,1240,-3,0,0 +2013,9,27,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,745,-3,0,915,1,0,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1300,2,0,1425,-2,0,0 +2013,5,18,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-8,0,853,-21,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,8,0,1030,18,1,0 +2013,8,12,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1230,-7,0,1440,17,1,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1735,-14,0,1830,-20,0,0 +2013,8,6,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,154,1,1845,146,1,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,830,50,1,1005,54,1,0 +2013,9,28,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1243,-11,0,1510,-19,0,0 +2013,5,4,6,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1551,2,0,1635,-13,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2015,3,0,2335,-13,0,0 +2013,7,22,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1850,-1,0,1955,-16,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1530,-1,0,1705,-8,0,0 +2013,5,11,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,615,-5,0,1451,-15,0,0 +2013,6,14,5,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-11,0,1626,-28,0,0 +2013,6,14,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1830,1,0,1950,20,1,0 +2013,10,15,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1715,-9,0,2005,-40,0,0 +2013,8,5,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,0,0,924,-4,0,0 +2013,7,5,5,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,700,0,0,810,4,0,0 +2013,7,16,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-10,0,848,-17,0,0 +2013,9,2,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,138,1,2244,117,1,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2210,0,0,14,-13,0,0 +2013,10,2,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,827,-3,0,1112,-17,0,0 +2013,8,29,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-5,0,840,-22,0,0 +2013,6,4,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,845,0,0,1254,-21,0,0 +2013,10,2,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,947,-7,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2057,10,0,2247,4,0,0 +2013,8,17,6,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,740,46,1,1012,19,1,0 +2013,9,11,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1717,-1,0,1958,-17,0,0 +2013,4,2,2,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-2,0,917,4,0,0 +2013,7,29,1,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1959,0,0,2232,-15,0,0 +2013,8,28,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1318,-2,0,1757,-10,0,0 +2013,5,9,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1509,24,1,1629,12,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,23,1,1215,22,1,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1150,59,1,1420,65,1,0 +2013,7,25,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2059,-4,0,2322,12,0,0 +2013,8,11,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-3,0,1604,-3,0,0 +2013,9,10,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,945,-4,0,1800,-8,0,0 +2013,7,18,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,-1,0,1345,1,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1445,12,0,1920,1,0,0 +2013,6,30,7,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,245,1,1910,225,1,0 +2013,10,22,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-6,0,1356,-18,0,0 +2013,9,23,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1942,8,0,2105,6,0,0 +2013,10,27,7,9E,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1815,-3,0,1946,-7,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1911,40,1,2242,20,1,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1100,2,0,1337,-10,0,0 +2013,7,1,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-1,0,1945,9,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1124,13,0,1306,-6,0,0 +2013,5,30,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,832,38,1,1121,26,1,0 +2013,6,18,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,13,0,2050,-2,0,0 +2013,10,15,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1934,36,1,2231,36,1,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1440,20,1,1714,2,0,0 +2013,6,3,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-6,0,1040,-19,0,0 +2013,8,22,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,30,1,2114,15,1,0 +2013,4,1,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,600,-1,0,750,1,0,0 +2013,4,3,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1125,-5,0,1150,-11,0,0 +2013,4,28,7,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1745,38,1,2250,40,1,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1940,-4,0,2150,-3,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,1250,-6,0,0 +2013,6,26,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,28,1,943,17,1,0 +2013,5,13,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-6,0,1018,-9,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1010,11,0,1315,-3,0,0 +2013,4,1,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,650,6,0,715,7,0,0 +2013,6,23,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,3,0,1346,-3,0,0 +2013,10,1,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,945,-5,0,1015,-11,0,0 +2013,9,3,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,12,0,1343,7,0,0 +2013,10,24,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1107,3,0,1354,2,0,0 +2013,6,24,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1710,-1,0,1830,7,0,0 +2013,8,5,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1143,-9,0,1330,-21,0,0 +2013,10,21,1,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-3,0,1219,-18,0,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1320,12,0,1530,28,1,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,1,0,1015,-8,0,0 +2013,4,1,1,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,825,-5,0,1012,-10,0,0 +2013,5,29,3,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1825,37,1,2005,1,0,0 +2013,7,16,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2113,0,0,2245,-15,0,0 +2013,4,14,7,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,1100,-24,0,0 +2013,8,20,2,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-9,0,1909,-23,0,0 +2013,4,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2107,121,1,2251,124,1,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,50,1,2120,40,1,0 +2013,9,24,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-8,0,1501,-14,0,0 +2013,9,30,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,0,0,1314,-7,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,-1,0,1709,-3,0,0 +2013,9,5,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-1,0,1615,-30,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1425,-6,0,1601,-18,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1925,4,0,2130,3,0,0 +2013,10,5,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,728,-1,0,910,-9,0,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2025,-5,0,2148,-13,0,0 +2013,4,16,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,-5,0,1930,-14,0,0 +2013,8,20,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,-7,0,2044,-22,0,0 +2013,6,12,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,130,1,2025,159,1,0 +2013,8,29,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,730,-7,0,910,-21,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,845,48,1,1350,44,1,0 +2013,4,3,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1314,-13,0,1459,8,0,0 +2013,10,4,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,110,1,1416,100,1,0 +2013,5,28,2,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-1,0,1105,-9,0,0 +2013,9,13,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,1,0,1643,1,0,0 +2013,7,1,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1029,8,0,1323,5,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1310,-3,0,1652,-16,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,0,0,1319,-19,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1115,-4,0,1204,0,0,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,-5,0,1800,-14,0,0 +2013,5,6,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2330,12,0,730,-4,0,0 +2013,5,13,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-4,0,1441,-10,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1435,-2,0,1637,1,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1510,16,1,1846,-5,0,0 +2013,7,10,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1630,17,1,1835,10,0,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,700,-3,0,950,-8,0,0 +2013,5,3,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,815,-3,0,1122,-8,0,0 +2013,10,27,7,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1005,-3,0,1130,2,0,0 +2013,4,10,3,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,86,1,2015,78,1,0 +2013,7,5,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-4,0,2035,-8,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,640,9,0,815,24,1,0 +2013,5,28,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,210,-14,0,630,-21,0,0 +2013,8,7,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,905,-9,0,1220,-20,0,0 +2013,7,24,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,57,1,1721,49,1,0 +2013,6,6,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-6,0,1409,-15,0,0 +2013,8,12,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,720,-2,0,740,-18,0,0 +2013,9,23,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1556,5,0,1735,-6,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,27,1,1204,23,1,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2130,0,0,2306,-16,0,0 +2013,6,12,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,0,0,1210,8,0,0 +2013,10,25,5,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1834,19,1,2135,-12,0,0 +2013,8,1,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,-3,0,2024,5,0,0 +2013,8,6,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-6,0,2030,-11,0,0 +2013,8,19,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-6,0,821,-19,0,0 +2013,4,30,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,-5,0,2020,-1,0,0 +2013,6,12,3,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1542,12,0,1724,4,0,0 +2013,5,15,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2003,13,0,2333,43,1,0 +2013,6,17,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,0,,1725,0,1,1 +2013,7,24,3,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1936,20,1,2155,24,1,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2225,-1,0,420,-23,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1730,60,1,2050,49,1,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1245,-2,0,1500,-9,0,0 +2013,8,30,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,955,-4,0,1310,-10,0,0 +2013,8,16,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-1,0,1427,-6,0,0 +2013,6,28,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1955,129,1,2115,124,1,0 +2013,9,27,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,850,3,0,1115,-14,0,0 +2013,8,27,2,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,0,0,2230,-10,0,0 +2013,7,31,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,2,0,2205,-12,0,0 +2013,9,4,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1315,-5,0,1440,-10,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,7,0,1104,2,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,2,0,1332,1,0,0 +2013,8,21,3,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1500,35,1,1745,34,1,0 +2013,9,1,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-8,0,1006,-30,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1536,17,1,1820,12,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,4,0,1005,-3,0,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1005,21,1,1250,43,1,0 +2013,7,3,3,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1850,-3,0,2154,-12,0,0 +2013,9,1,7,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2156,-6,0,2342,-8,0,0 +2013,7,24,3,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2225,47,1,630,34,1,0 +2013,9,11,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,-2,0,1838,0,0,0 +2013,5,5,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,900,-4,0,1210,2,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,840,-5,0,1014,-7,0,0 +2013,5,24,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,915,-3,0,1037,-19,0,0 +2013,9,2,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1350,2,0,1644,-4,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,3,0,1031,-9,0,0 +2013,8,14,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,31,1,2105,12,0,0 +2013,6,23,7,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1425,-10,0,1535,-2,0,0 +2013,7,5,5,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,42,1,1645,46,1,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2150,2,0,2337,1,0,0 +2013,9,18,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-7,0,1528,-8,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1725,14,0,1845,13,0,0 +2013,7,15,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1410,14,0,1510,49,1,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,7,0,2030,3,0,0 +2013,10,19,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1325,-2,0,1450,-13,0,0 +2013,7,30,2,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2030,-5,0,2206,-42,0,0 +2013,6,16,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1407,62,1,1524,67,1,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2115,24,1,2230,8,0,0 +2013,10,14,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1822,-8,0,2003,-16,0,0 +2013,4,22,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1240,4,0,1525,-13,0,0 +2013,8,13,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,14,0,1540,11,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1315,19,1,1510,11,0,0 +2013,6,19,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-10,0,1035,-12,0,0 +2013,4,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,0,0,1125,1,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1514,18,1,1753,19,1,0 +2013,5,12,7,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,715,-1,0,1010,23,1,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,4,0,2230,-16,0,0 +2013,9,21,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,3,0,1905,-24,0,0 +2013,10,16,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,545,-8,0,738,-23,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,57,1,1355,41,1,0 +2013,8,1,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,-2,0,2310,1,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2050,-3,0,7,-23,0,0 +2013,7,10,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,0,0,1640,-12,0,0 +2013,10,22,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-14,0,2135,-20,0,0 +2013,9,1,7,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1005,9,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1600,-10,0,1737,-21,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1535,33,1,1835,38,1,0 +2013,7,14,7,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,13,0,1859,-20,0,0 +2013,6,29,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,-3,0,830,-13,0,0 +2013,9,13,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1125,74,1,1255,62,1,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-3,0,1103,-21,0,0 +2013,5,23,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,827,-6,0,1100,-19,0,0 +2013,4,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-3,0,845,-20,0,0 +2013,4,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1502,-3,0,1555,-14,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1940,-1,0,2204,21,1,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-2,0,1315,-9,0,0 +2013,10,23,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,2,0,2036,-6,0,0 +2013,5,3,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,-3,0,2310,-19,0,0 +2013,8,24,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,605,-2,0,1020,-5,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,0,0,835,-3,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,905,-6,0,1030,-8,0,0 +2013,8,30,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-2,0,815,-3,0,0 +2013,9,16,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1439,-4,0,1807,-18,0,0 +2013,8,22,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,5,0,1635,10,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1010,-2,0,1655,-3,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,700,0,0,845,-9,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-2,0,1100,-12,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1050,-10,0,1924,-5,0,0 +2013,10,26,6,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1414,0,0,1603,-17,0,0 +2013,9,27,5,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1034,-12,0,1418,-18,0,0 +2013,7,12,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,1,0,1915,-4,0,0 +2013,10,27,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1312,-3,0,1628,-17,0,0 +2013,10,22,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,-1,0,1530,3,0,0 +2013,10,28,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-5,0,1335,-19,0,0 +2013,7,30,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,835,199,1,1205,191,1,0 +2013,8,2,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1745,-2,0,1900,52,1,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,-1,0,28,30,1,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2125,81,1,2250,68,1,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1925,6,0,2110,-16,0,0 +2013,10,27,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1055,0,0,1610,3,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,-5,0,104,-10,0,0 +2013,6,22,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1755,-9,0,1920,-27,0,0 +2013,5,11,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,725,-6,0,825,-30,0,0 +2013,10,12,6,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,745,-3,0,913,-3,0,0 +2013,5,19,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-10,0,715,-16,0,0 +2013,4,15,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1545,15,1,1715,-1,0,0 +2013,7,17,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,530,0,0,1115,1,0,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,1259,6,0,1657,-8,0,0 +2013,5,31,5,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1037,43,1,1153,31,1,0 +2013,9,27,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,615,1,0,740,-7,0,0 +2013,8,25,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,-2,0,1651,-23,0,0 +2013,10,29,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,-2,0,1845,6,0,0 +2013,5,26,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1346,30,1,1621,21,1,0 +2013,6,24,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1825,104,1,2025,81,1,0 +2013,9,19,4,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,2,0,740,6,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,0,0,2325,-15,0,0 +2013,4,17,3,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1115,35,1,1250,41,1,0 +2013,6,30,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1511,96,1,1722,93,1,0 +2013,6,19,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1103,-7,0,1224,-6,0,0 +2013,5,22,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1744,35,1,1901,22,1,0 +2013,6,10,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1325,0,,1435,0,1,1 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,23,1,2000,18,1,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1415,-2,0,1649,-4,0,0 +2013,9,2,1,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,552,-2,0,832,-11,0,0 +2013,5,21,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1104,0,0,1700,0,0,0 +2013,5,15,3,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,700,3,0,945,-21,0,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1200,16,1,1441,13,0,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,851,32,1,1454,35,1,0 +2013,4,8,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,945,19,1,1641,17,1,0 +2013,6,23,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-10,0,1447,3,0,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,653,-2,0,1520,0,0,0 +2013,8,28,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1224,-16,0,1430,-8,0,0 +2013,7,8,1,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,630,-4,0,924,0,0,0 +2013,4,29,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1735,-11,0,2035,-16,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1000,-1,0,1125,-7,0,0 +2013,8,23,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,6,0,1538,3,0,0 +2013,9,4,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1715,-8,0,1830,-14,0,0 +2013,8,28,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2040,160,1,2210,143,1,0 +2013,6,7,5,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,-1,0,2247,-12,0,0 +2013,9,9,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,-3,0,1405,-9,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,725,-6,0,805,-19,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,-7,0,1816,20,1,0 +2013,4,17,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-1,0,1009,-14,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,27,1,2355,18,1,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,14,0,2349,-13,0,0 +2013,8,1,4,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2159,6,0,2321,4,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1050,2,0,1715,-18,0,0 +2013,9,23,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1811,-10,0,2107,-16,0,0 +2013,7,22,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1646,17,1,1944,22,1,0 +2013,8,9,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1723,-6,0,1956,5,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,816,-4,0,920,-2,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-5,0,830,11,0,0 +2013,9,24,2,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1439,-9,0,1607,-18,0,0 +2013,8,19,1,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1150,-10,0,1443,-27,0,0 +2013,10,15,2,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1820,-11,0,2038,0,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1639,-1,0,104,-30,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2200,73,1,2305,69,1,0 +2013,4,1,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1705,11,0,1830,8,0,0 +2013,4,4,4,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1441,5,0,1655,14,0,0 +2013,8,17,6,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,855,-6,0,1115,-22,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2010,5,0,2300,0,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2036,-4,0,2143,2,0,0 +2013,7,30,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1716,-3,0,1844,-11,0,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1820,17,1,2035,10,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1755,0,0,1947,14,0,0 +2013,8,17,6,EV,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-5,0,1707,-12,0,0 +2013,5,11,6,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1045,-4,0,1252,10,0,0 +2013,6,10,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,-4,0,2227,-2,0,0 +2013,6,10,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,27,1,1628,31,1,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,600,-4,0,835,-7,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,2,0,1802,-7,0,0 +2013,6,11,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,925,-4,0,1220,-27,0,0 +2013,6,12,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1805,-3,0,1930,-13,0,0 +2013,9,6,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1340,7,0,1500,24,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,855,-3,0,1000,-11,0,0 +2013,10,30,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1204,-5,0,1457,1,0,0 +2013,6,10,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,2,0,1255,-3,0,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,916,-6,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,605,-3,0,915,-13,0,0 +2013,8,26,1,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-7,0,1857,-38,0,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1920,9,0,2252,8,0,0 +2013,5,28,2,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1915,-1,0,2140,11,0,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2021,-3,0,2341,5,0,0 +2013,10,21,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,14,0,1140,0,0,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1010,0,0,1542,-14,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,-4,0,1755,-9,0,0 +2013,4,25,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1850,52,1,2047,60,1,0 +2013,5,24,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-4,0,2000,-10,0,0 +2013,4,24,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1309,-6,0,1425,-2,0,0 +2013,8,16,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,4,0,1115,-12,0,0 +2013,6,17,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-1,0,1035,12,0,0 +2013,5,18,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,621,-11,0,0 +2013,7,24,3,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1633,18,1,1909,17,1,0 +2013,4,7,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,6,0,1320,11,0,0 +2013,7,18,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1745,-2,0,1900,-31,0,0 +2013,10,3,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,4,0,2127,-9,0,0 +2013,8,8,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1510,-1,0,1800,-28,0,0 +2013,4,30,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-8,0,712,7,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,6,0,1825,3,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1135,82,1,1450,90,1,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1240,-6,0,1615,-22,0,0 +2013,5,8,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,0,0,1040,-10,0,0 +2013,6,12,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1115,90,1,1310,83,1,0 +2013,5,3,5,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-3,0,2332,-22,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,1,0,1325,-7,0,0 +2013,5,13,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1845,-1,0,1955,-1,0,0 +2013,5,25,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,86,1,2040,69,1,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1555,54,1,1930,58,1,0 +2013,7,24,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1508,80,1,1819,91,1,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1732,13,0,2015,6,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,800,2,0,905,2,0,0 +2013,8,17,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-12,0,1640,-16,0,0 +2013,7,5,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,-3,0,925,-13,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-7,0,1021,-4,0,0 +2013,9,8,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-4,0,958,-12,0,0 +2013,5,31,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,14,0,1800,9,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2205,16,1,2333,5,0,0 +2013,6,16,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1615,0,0,1710,-14,0,0 +2013,9,12,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1135,39,1,1330,27,1,0 +2013,5,10,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,733,-7,0,900,-9,0,0 +2013,6,10,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,72,1,1614,80,1,0 +2013,5,1,3,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-6,0,1916,-18,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,955,-3,0,1134,12,0,0 +2013,5,2,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-5,0,819,-7,0,0 +2013,8,20,2,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,840,-11,0,1015,-24,0,0 +2013,5,25,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-3,0,1557,-1,0,0 +2013,10,17,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,21,1,813,35,1,0 +2013,9,19,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,604,-7,0,705,32,1,0 +2013,6,25,2,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,50,1,1815,75,1,0 +2013,10,3,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1500,3,0,1849,14,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-3,0,1111,-14,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,93,1,1635,74,1,0 +2013,4,8,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1245,-10,0,1352,-15,0,0 +2013,8,22,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1620,2,0,1749,2,0,0 +2013,8,16,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,702,-3,0,907,7,0,0 +2013,9,23,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,-3,0,738,7,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,35,1,2214,20,1,0 +2013,7,30,2,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1435,-4,0,1750,-18,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,6,0,1555,-6,0,0 +2013,9,15,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,922,-7,0,1232,-4,0,0 +2013,9,1,7,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,-3,0,1730,-1,0,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,850,2,0,1003,-9,0,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,0,0,1840,-4,0,0 +2013,9,12,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-7,0,1028,-11,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1120,3,0,1330,-21,0,0 +2013,8,9,5,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-1,0,2140,2,0,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1130,4,0,1406,-34,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1130,19,1,1405,2,0,0 +2013,8,27,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,0,0,1925,-9,0,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1756,-7,0,1925,-23,0,0 +2013,5,28,2,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-6,0,904,6,0,0 +2013,5,9,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-8,0,845,-15,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,835,-6,0,1259,-42,0,0 +2013,8,27,2,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1415,-4,0,1601,-16,0,0 +2013,10,1,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1550,-7,0,1846,-3,0,0 +2013,5,13,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1755,-2,0,2016,-23,0,0 +2013,8,8,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1106,1,0,1208,-4,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2145,1,0,2315,-5,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1635,7,0,2215,4,0,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1501,-2,0,1553,11,0,0 +2013,10,20,7,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,2,0,2010,-21,0,0 +2013,7,8,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,-6,0,859,-8,0,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,7,0,1400,7,0,0 +2013,4,27,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-2,0,732,-7,0,0 +2013,7,28,7,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,906,0,0,1134,-7,0,0 +2013,8,15,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,915,-3,0,1209,-4,0,0 +2013,5,5,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,920,-2,0,1530,3,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1455,9,0,1649,11,0,0 +2013,6,27,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,1,0,1712,-15,0,0 +2013,10,20,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-11,0,716,-13,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1834,-5,0,2031,-10,0,0 +2013,5,27,1,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1015,23,1,1059,45,1,0 +2013,6,9,7,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1400,14,0,2250,-10,0,0 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,-3,0,749,-5,0,0 +2013,7,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1729,-3,0,1750,-11,0,0 +2013,7,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2210,-5,0,2315,-1,0,0 +2013,5,24,5,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2135,1,0,548,-5,0,0 +2013,9,20,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,-1,0,1414,4,0,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,814,-7,0,1335,-5,0,0 +2013,6,26,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1352,0,,1511,0,1,1 +2013,7,27,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1310,-8,0,1450,-33,0,0 +2013,4,21,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1010,-3,0,1139,2,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2240,16,1,40,5,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,12,0,835,4,0,0 +2013,5,15,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-3,0,828,0,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,909,-5,0,1000,-3,0,0 +2013,9,30,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,756,14,0,947,2,0,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,826,-9,0,1003,-8,0,0 +2013,8,3,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,-7,0,2116,-15,0,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,810,-4,0,1310,-24,0,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1435,25,1,1545,20,1,0 +2013,6,25,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,1,0,621,1,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-6,0,1004,-1,0,0 +2013,7,14,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-2,0,1631,1,0,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,4,0,1651,-5,0,0 +2013,6,9,7,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1157,-11,0,1304,-4,0,0 +2013,5,18,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1105,-3,0,1210,-7,0,0 +2013,10,31,4,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1127,21,1,1315,37,1,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1057,-5,0,1338,3,0,0 +2013,10,29,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,600,-10,0,800,-12,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,740,5,0,1010,-8,0,0 +2013,4,22,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1144,5,0,1356,-1,0,0 +2013,10,3,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,1111,-18,0,0 +2013,8,3,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1736,-1,0,2134,-12,0,0 +2013,6,21,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,-4,0,2059,-31,0,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1709,-5,0,2310,-20,0,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1120,0,0,1213,-10,0,0 +2013,6,13,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,0,0,1825,-6,0,0 +2013,5,6,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1230,-2,0,1520,-3,0,0 +2013,6,28,5,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1141,41,1,1409,53,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,844,12,0,1031,0,0,0 +2013,9,17,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1745,-3,0,1845,0,0,0 +2013,8,4,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,11,0,1940,13,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,0,0,1710,-13,0,0 +2013,10,25,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-7,0,1910,-25,0,0 +2013,9,26,4,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1835,-3,0,2158,-40,0,0 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2125,36,1,2355,23,1,0 +2013,10,26,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1600,-1,0,1720,16,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1255,-3,0,1424,-6,0,0 +2013,10,13,7,EV,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,750,-5,0,1055,-15,0,0 +2013,5,6,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1910,-4,0,2244,10,0,0 +2013,7,6,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,0,,2120,0,1,1 +2013,9,1,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,24,1,1811,18,1,0 +2013,4,10,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,610,-1,0,1205,3,0,0 +2013,7,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1415,-4,0,1641,0,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1057,-2,0,1519,6,0,0 +2013,10,9,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,59,1,1122,46,1,0 +2013,9,30,1,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1400,-3,0,1619,-2,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,-4,0,1151,-7,0,0 +2013,6,12,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,-6,0,1658,10,0,0 +2013,6,10,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,934,-5,0,1036,-20,0,0 +2013,7,31,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,-2,0,1015,16,1,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,52,1,1210,53,1,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,-4,0,1823,4,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,910,2,0,1203,8,0,0 +2013,8,30,5,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1835,19,1,1950,4,0,0 +2013,5,10,5,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,700,-1,0,850,1,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-3,0,1337,-20,0,0 +2013,4,7,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2059,-8,0,2147,-10,0,0 +2013,7,18,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1150,-1,0,1441,-11,0,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,736,-9,0,1011,-37,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1035,11,0,1500,-2,0,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,705,-1,0,951,-8,0,0 +2013,9,8,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-6,0,1642,-18,0,0 +2013,7,19,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,47,1,2205,63,1,0 +2013,4,19,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,915,0,0,1649,31,1,0 +2013,5,12,7,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-6,0,1625,-9,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,857,1,0,1112,4,0,0 +2013,4,24,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1534,13,0,1830,12,0,0 +2013,8,29,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,0,0,1815,-9,0,0 +2013,4,10,3,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1335,14,0,1525,7,0,0 +2013,5,25,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,620,-5,0,825,-13,0,0 +2013,8,22,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1250,-1,0,1355,-24,0,0 +2013,4,8,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,515,3,0,624,-1,0,0 +2013,7,22,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2130,19,1,2235,15,1,0 +2013,10,5,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,712,0,0,905,-13,0,0 +2013,5,5,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1900,109,1,2010,145,1,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,-3,0,1240,4,0,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1802,44,1,2007,33,1,0 +2013,4,14,7,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,-10,0,618,5,0,0 +2013,4,11,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1705,7,0,1930,-15,0,0 +2013,8,13,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1106,169,1,1237,155,1,0 +2013,6,14,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2020,35,1,447,16,1,0 +2013,10,3,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,-1,0,1310,0,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1430,7,0,1710,-8,0,0 +2013,7,21,7,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,935,3,0,1130,-7,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,655,3,0,938,-2,0,0 +2013,8,10,6,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1220,-2,0,1336,7,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1749,6,0,2030,0,0,0 +2013,8,23,5,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2010,31,1,2100,23,1,0 +2013,6,9,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1210,16,1,1335,5,0,0 +2013,6,10,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,46,1,1746,53,1,0 +2013,4,11,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1833,29,1,2041,10,0,0 +2013,4,13,6,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1014,24,1,1155,33,1,0 +2013,9,15,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1706,33,1,2218,24,1,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,-6,0,1245,-10,0,0 +2013,6,24,1,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,828,30,1,1128,44,1,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,15,1,1425,17,1,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,950,-4,0,1145,6,0,0 +2013,4,22,1,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,840,13,0,943,2,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,849,-1,0,1516,-12,0,0 +2013,10,9,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1510,1,0,1645,-4,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2105,-4,0,2210,-6,0,0 +2013,8,31,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1655,4,0,1840,-7,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,1,0,2250,-7,0,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1121,16,1,1244,20,1,0 +2013,4,29,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,600,0,0,745,-8,0,0 +2013,6,23,7,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-5,0,2040,-40,0,0 +2013,10,29,2,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-4,0,1045,-27,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2050,-1,0,2325,1,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1415,4,0,1540,-12,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,804,1,0,1041,-3,0,0 +2013,5,18,6,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,4,0,1705,-6,0,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2110,2,0,2303,-12,0,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1157,27,1,1432,31,1,0 +2013,9,18,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1120,-11,0,1259,-8,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1800,22,1,2030,3,0,0 +2013,8,30,5,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,850,-5,0,1025,-1,0,0 +2013,8,26,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,124,1,1150,114,1,0 +2013,6,11,2,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-5,0,1201,-2,0,0 +2013,10,26,6,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1402,8,0,1530,1,0,0 +2013,8,26,1,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,-7,0,1903,-14,0,0 +2013,9,17,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,955,3,0,1310,-9,0,0 +2013,7,14,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1215,-5,0,1500,-11,0,0 +2013,6,10,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,4,0,1025,11,0,0 +2013,5,23,4,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,600,-5,0,755,-13,0,0 +2013,8,16,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,735,-1,0,830,-2,0,0 +2013,7,9,2,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,600,-8,0,745,24,1,0 +2013,10,23,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1616,-5,0,1725,-12,0,0 +2013,4,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,943,-2,0,1330,-1,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1435,-3,0,1613,-15,0,0 +2013,6,15,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,4,0,1840,-4,0,0 +2013,6,30,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1805,-2,0,2120,-1,0,0 +2013,7,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,22,1,1150,4,0,0 +2013,10,25,5,EV,12953,LaGuardia,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,845,-7,0,1030,-40,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,0,0,1905,19,1,0 +2013,6,6,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1650,16,1,1755,10,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1840,3,0,1945,10,0,0 +2013,8,13,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,742,-7,0,929,-24,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2056,118,1,2226,123,1,0 +2013,7,15,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-5,0,1400,-4,0,0 +2013,8,20,2,FL,13244,Memphis International,Memphis,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1547,-5,0,1853,-6,0,0 +2013,4,30,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,852,12,0,0 +2013,5,5,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,8,0,2220,-1,0,0 +2013,6,5,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,11,0,1135,18,1,0 +2013,10,21,1,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1055,-9,0,1315,-22,0,0 +2013,7,20,6,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,11,0,2006,30,1,0 +2013,5,9,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,910,1,0,1020,-22,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1306,3,0,1710,11,0,0 +2013,6,6,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,850,-5,0,951,-10,0,0 +2013,10,25,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,14,0,835,4,0,0 +2013,10,16,3,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1015,-2,0,1825,-19,0,0 +2013,9,8,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1155,-6,0,1245,-3,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2050,34,1,2222,25,1,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,58,1,2005,59,1,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,-1,0,2020,-2,0,0 +2013,8,15,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2210,15,1,2337,7,0,0 +2013,5,1,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,655,-3,0,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1440,2,0,1737,-16,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1645,-3,0,1830,-3,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,850,-8,0,1240,-14,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,-4,0,2225,-7,0,0 +2013,4,27,6,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1540,1,0,1544,-8,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1215,-5,0,1510,-15,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,905,-9,0,1157,-19,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2114,37,1,30,40,1,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-2,0,1552,-3,0,0 +2013,10,24,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2017,11,0,2320,-3,0,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,7,0,1315,-10,0,0 +2013,6,5,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,0,0,1315,28,1,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2110,11,0,2225,7,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1340,74,1,1505,63,1,0 +2013,5,24,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,755,1,0,940,-23,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1016,-1,0,1240,-3,0,0 +2013,7,16,2,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-4,0,1238,-8,0,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,620,4,0,750,-6,0,0 +2013,4,23,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-4,0,949,-15,0,0 +2013,5,14,2,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,-6,0,2306,-26,0,0 +2013,5,29,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-6,0,1222,12,0,0 +2013,10,11,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1155,2,0,1940,-13,0,0 +2013,8,27,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,-2,0,2105,-6,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,952,0,0,1456,-1,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1600,49,1,1805,51,1,0 +2013,6,23,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,97,1,2155,97,1,0 +2013,7,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1707,47,1,2318,29,1,0 +2013,8,23,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,644,-6,0,810,-13,0,0 +2013,8,2,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-3,0,1635,-37,0,0 +2013,8,15,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1912,-4,0,2056,-21,0,0 +2013,8,11,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,24,1,1411,12,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1515,10,0,1835,-12,0,0 +2013,6,3,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-12,0,2035,-24,0,0 +2013,4,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,855,2,0,1000,11,0,0 +2013,7,17,3,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1536,-8,0,2044,-20,0,0 +2013,4,27,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1010,63,1,1135,66,1,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-4,0,1829,-7,0,0 +2013,8,16,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1345,-5,0,1524,-8,0,0 +2013,4,4,4,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,857,-4,0,1424,11,0,0 +2013,8,28,3,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,840,-2,0,1050,-12,0,0 +2013,9,29,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,825,-7,0,1440,-34,0,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1453,95,1,1620,94,1,0 +2013,10,22,2,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2129,-9,0,2222,-15,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,11,0,2005,3,0,0 +2013,6,4,2,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-3,0,1355,3,0,0 +2013,8,1,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,15,1,1610,22,1,0 +2013,8,19,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1205,36,1,1345,31,1,0 +2013,9,3,2,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1334,-3,0,1453,-8,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-4,0,1307,-12,0,0 +2013,6,12,3,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,600,-5,0,840,-15,0,0 +2013,8,4,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-6,0,1255,-23,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1135,-6,0,1233,-5,0,0 +2013,4,8,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-8,0,1255,-25,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,-1,0,1908,7,0,0 +2013,6,17,1,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1155,3,0,2030,-18,0,0 +2013,9,19,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1144,-7,0,1403,0,0,0 +2013,7,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,86,1,1046,68,1,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1000,0,0,1131,-11,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1659,10,0,1953,15,1,0 +2013,8,1,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-2,0,2135,-4,0,0 +2013,4,17,3,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1310,4,0,1620,-3,0,0 +2013,5,29,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1305,0,0,1610,2,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,755,-5,0,850,-11,0,0 +2013,8,8,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,2,0,1945,15,1,0 +2013,4,2,2,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,845,-1,0,1429,-25,0,0 +2013,6,6,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-5,0,1705,-12,0,0 +2013,5,12,7,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,730,-2,0,855,-8,0,0 +2013,9,10,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,600,-3,0,750,-12,0,0 +2013,4,2,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-2,0,925,-5,0,0 +2013,7,31,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-12,0,1425,-15,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1755,18,1,2325,11,0,0 +2013,10,3,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1401,-12,0,1552,-8,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,615,-1,0,740,43,1,0 +2013,7,3,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-6,0,922,-21,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2142,19,1,2314,0,0,0 +2013,8,19,1,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1536,-5,0,2044,-1,0,0 +2013,10,8,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,620,2,0,1230,-12,0,0 +2013,7,20,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-6,0,759,-9,0,0 +2013,4,13,6,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,727,-1,0,951,-23,0,0 +2013,9,11,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1625,23,1,1755,18,1,0 +2013,4,12,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,810,-11,0,920,-10,0,0 +2013,9,2,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-6,0,1930,-9,0,0 +2013,10,25,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,945,2,0,1130,11,0,0 +2013,10,21,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1358,-3,0,1542,-6,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-3,0,1202,-25,0,0 +2013,5,9,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1400,15,1,1730,-20,0,0 +2013,8,1,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1725,54,1,2020,41,1,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,11,0,1825,1,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,6,0,2359,3,0,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,9,0,1230,9,0,0 +2013,6,16,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1725,-3,0,1835,0,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,75,1,1440,64,1,0 +2013,10,31,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-5,0,2055,30,1,0 +2013,8,28,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,3,0,1319,-8,0,0 +2013,7,30,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1445,14,0,1620,7,0,0 +2013,5,20,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2005,91,1,2220,99,1,0 +2013,6,13,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1037,-3,0,1421,-2,0,0 +2013,4,4,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-3,0,1615,0,0,0 +2013,10,20,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1110,14,0,1355,-4,0,0 +2013,6,17,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,700,-1,0,735,3,0,0 +2013,9,12,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,-2,0,1653,2,0,0 +2013,9,18,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,950,6,0,1124,10,0,0 +2013,5,18,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1120,19,1,1220,2,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,600,12,0,935,0,0,0 +2013,9,4,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1235,-2,0,1420,0,0,0 +2013,7,8,1,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,2,0,1315,-4,0,0 +2013,8,2,5,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1350,4,0,1837,5,0,0 +2013,5,13,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,855,12,0,1230,2,0,0 +2013,9,23,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1150,37,1,1345,20,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1400,1,0,1825,-22,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,19,1,1756,5,0,0 +2013,4,24,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,640,0,0,805,-3,0,0 +2013,8,25,7,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,50,1,2205,56,1,0 +2013,5,28,2,OO,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,1,0,1601,-12,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,925,19,1,1235,19,1,0 +2013,10,22,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-6,0,2059,-13,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1835,16,1,2135,16,1,0 +2013,10,2,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,927,-4,0,1226,-7,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,616,-5,0,850,-4,0,0 +2013,8,4,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1250,23,1,1825,16,1,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,839,0,0,1450,-17,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,825,6,0,1400,5,0,0 +2013,4,4,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1239,-1,0,1829,-10,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1735,-1,0,2029,-4,0,0 +2013,8,13,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1115,-5,0,1205,-8,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,727,-4,0,1601,1,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1915,-8,0,2044,-17,0,0 +2013,9,21,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1238,-2,0,0 +2013,8,20,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,-11,0,1845,-30,0,0 +2013,6,2,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,-3,0,1335,-8,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2155,-7,0,5,-6,0,0 +2013,6,20,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,0,1239,2,0,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,2000,4,0,2255,1,0,0 +2013,4,27,6,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1235,43,1,1850,45,1,0 +2013,8,25,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,0,0,2135,1,0,0 +2013,9,3,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1224,-5,0,1512,-19,0,0 +2013,9,15,7,EV,13931,Norfolk International,Norfolk,VA,12953,LaGuardia,New York,NY,1828,-7,0,1959,3,0,0 +2013,7,12,5,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,745,0,0,950,-23,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,0,0,846,15,1,0 +2013,6,2,7,EV,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,132,1,1923,136,1,0 +2013,7,27,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1350,0,0,1510,-12,0,0 +2013,7,28,7,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2154,8,0,115,-11,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,-6,0,2359,0,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,-1,0,1825,34,1,0 +2013,6,11,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-3,0,1011,-10,0,0 +2013,6,17,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,707,3,0,920,-3,0,0 +2013,6,29,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,859,-3,0,948,1,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1310,6,0,1605,6,0,0 +2013,8,25,7,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-8,0,810,-25,0,0 +2013,5,28,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,735,-3,0,820,-8,0,0 +2013,10,5,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1205,-2,0,1255,-6,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,8,0,1940,4,0,0 +2013,4,23,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-7,0,705,12,0,0 +2013,4,29,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1215,-7,0,1350,-8,0,0 +2013,4,3,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,2020,-3,0,2055,-13,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,71,1,1245,72,1,0 +2013,5,1,3,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,615,-8,0,720,0,0,0 +2013,10,1,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,603,-4,0,943,-31,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,-1,0,925,-6,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1520,1,0,1720,-9,0,0 +2013,5,16,4,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1535,12,0,1745,4,0,0 +2013,5,13,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,1,0,2125,-2,0,0 +2013,8,3,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-1,0,1150,-7,0,0 +2013,4,8,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-1,0,1355,2,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2300,-2,0,47,-8,0,0 +2013,6,24,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-3,0,2052,1,0,0 +2013,5,1,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1635,151,1,1846,150,1,0 +2013,7,11,4,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-6,0,1029,2,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-1,0,900,-15,0,0 +2013,7,30,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-8,0,821,-13,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1243,78,1,1514,68,1,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2152,103,1,2338,108,1,0 +2013,6,5,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1324,-2,0,1449,-23,0,0 +2013,6,1,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-13,0,940,-11,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1203,-20,0,0 +2013,8,16,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-1,0,852,-1,0,0 +2013,8,23,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,805,-13,0,0 +2013,7,23,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-2,0,1930,-19,0,0 +2013,5,28,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1345,101,1,1520,91,1,0 +2013,6,25,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,12,0,617,15,1,0 +2013,7,22,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-3,0,1126,0,0,0 +2013,5,19,7,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1438,6,0,1700,1,0,0 +2013,10,10,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,62,1,1126,39,1,0 +2013,4,27,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,-5,0,1140,-12,0,0 +2013,5,15,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1040,-2,0,1305,0,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1905,11,0,2115,2,0,0 +2013,5,13,1,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-8,0,1820,18,1,0 +2013,4,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1015,-3,0,1205,-11,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2030,0,0,2235,20,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,28,1,950,23,1,0 +2013,4,24,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,630,-3,0,820,4,0,0 +2013,9,4,3,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1322,9,0,1606,-4,0,0 +2013,8,5,1,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,3,0,1019,28,1,0 +2013,9,19,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,42,1,2030,29,1,0 +2013,6,10,1,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1520,324,1,1838,306,1,0 +2013,9,18,3,OO,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1343,-3,0,1415,-8,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,5,0,1910,-7,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,715,4,0,915,-4,0,0 +2013,10,11,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1655,156,1,1820,125,1,0 +2013,5,1,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,745,26,1,1055,22,1,0 +2013,9,22,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1035,8,0,1140,34,1,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1150,-4,0,1255,0,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2234,4,0,446,-3,0,0 +2013,5,22,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,87,1,1730,100,1,0 +2013,7,27,6,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,940,3,0,0 +2013,9,10,2,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1401,6,0,1640,40,1,0 +2013,10,4,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-6,0,1846,-25,0,0 +2013,6,15,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,955,2,0,1153,-19,0,0 +2013,8,29,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,105,1,1035,94,1,0 +2013,8,8,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2045,16,1,2155,12,0,0 +2013,7,25,4,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2050,-1,0,2310,-11,0,0 +2013,4,21,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1215,0,0,1240,6,0,0 +2013,10,13,7,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,530,1,0,850,-2,0,0 +2013,6,30,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1115,0,0,1319,20,1,0 +2013,7,16,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,0,0,2057,20,1,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,103,1,1958,91,1,0 +2013,4,18,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,755,65,1,1049,63,1,0 +2013,5,14,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2045,171,1,2110,166,1,0 +2013,4,10,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,947,226,1,1448,217,1,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-2,0,1135,3,0,0 +2013,7,4,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1630,1,0,1840,2,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,183,1,1940,174,1,0 +2013,5,14,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,-5,0,827,-22,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1910,18,1,2256,15,1,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1110,-8,0,1331,2,0,0 +2013,4,30,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-3,0,1635,-11,0,0 +2013,9,18,3,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1500,0,0,2020,1,0,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,635,-8,0,953,-15,0,0 +2013,6,8,6,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-2,0,840,-7,0,0 +2013,10,15,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1340,-1,0,1550,-4,0,0 +2013,6,6,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-13,0,1639,-9,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,14,0,1040,20,1,0 +2013,5,18,6,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1515,-6,0,1750,-20,0,0 +2013,8,8,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1917,29,1,2003,22,1,0 +2013,10,11,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,83,1,2130,92,1,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2030,3,0,2215,15,1,0 +2013,5,6,1,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1110,-11,0,1328,-21,0,0 +2013,6,22,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,1007,0,0,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,-8,0,1545,-21,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,2,0,2100,-6,0,0 +2013,10,3,4,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,700,1,0,823,11,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2142,1,0,2250,-8,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2120,82,1,2235,72,1,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1825,-3,0,2051,24,1,0 +2013,8,30,5,OO,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1843,0,0,2005,-16,0,0 +2013,6,7,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,1,0,745,-2,0,0 +2013,4,7,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,-1,0,2047,-16,0,0 +2013,6,12,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1100,-5,0,1522,6,0,0 +2013,6,21,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1235,0,0,1356,-3,0,0 +2013,7,24,3,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1015,3,0,1434,-5,0,0 +2013,8,26,1,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1756,-3,0,2013,-20,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,915,-6,0,1738,-2,0,0 +2013,9,14,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-7,0,1113,0,0,0 +2013,8,3,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,55,-10,0,459,-23,0,0 +2013,9,17,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,-6,0,810,-19,0,0 +2013,9,13,5,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,15,1,2020,32,1,0 +2013,5,28,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,-5,0,1930,-12,0,0 +2013,10,8,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,49,1,1009,24,1,0 +2013,9,26,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-1,0,1940,-12,0,0 +2013,4,8,1,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-10,0,714,-5,0,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1939,63,1,2234,32,1,0 +2013,5,10,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1505,32,1,1923,64,1,0 +2013,9,9,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,645,-10,0,844,-22,0,0 +2013,6,26,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1112,79,1,1550,58,1,0 +2013,7,23,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,1,0,1829,7,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1140,-10,0,1322,3,0,0 +2013,8,3,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1335,16,1,1945,-14,0,0 +2013,7,9,2,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1410,17,1,1750,19,1,0 +2013,9,26,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1745,-10,0,1925,-18,0,0 +2013,10,25,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-6,0,1250,-7,0,0 +2013,9,4,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,-13,0,2355,-18,0,0 +2013,4,24,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,700,-6,0,1135,-12,0,0 +2013,9,28,6,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2305,11,0,728,9,0,0 +2013,8,22,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1242,-8,0,1345,-1,0,0 +2013,4,14,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1545,-4,0,1855,86,1,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2105,-1,0,2252,2,0,0 +2013,10,30,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,705,-2,0,825,4,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1750,-1,0,2040,2,0,0 +2013,8,21,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1522,0,0,1830,2,0,0 +2013,9,2,1,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,19,1,2105,40,1,0 +2013,7,25,4,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1740,-2,0,1950,-12,0,0 +2013,10,20,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,-5,0,1115,-4,0,0 +2013,7,10,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,37,1,1455,22,1,0 +2013,8,27,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1925,8,0,2105,2,0,0 +2013,10,11,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1500,-3,0,1815,-13,0,0 +2013,10,4,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,820,3,0,1130,-1,0,0 +2013,7,28,7,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-10,0,1609,1,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1905,3,0,2121,-13,0,0 +2013,4,27,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1620,36,1,1850,9,0,0 +2013,8,4,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1120,2,0,1905,5,0,0 +2013,5,16,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,1,0,2025,4,0,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,846,128,1,956,98,1,0 +2013,10,25,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-1,0,1705,-2,0,0 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,4,0,1814,-11,0,0 +2013,8,21,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,7,0,1750,-1,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-5,0,1313,26,1,0 +2013,10,17,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,920,8,0,1235,-14,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-1,0,1851,-10,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1715,25,1,2255,31,1,0 +2013,6,11,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-9,0,1147,-8,0,0 +2013,9,27,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,1,0,2025,0,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1935,6,0,0 +2013,8,6,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1545,25,1,1906,-2,0,0 +2013,9,6,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1030,-16,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,-4,0,1506,-12,0,0 +2013,4,9,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-10,0,806,-5,0,0 +2013,4,14,7,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1345,-5,0,1649,-19,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,905,5,0,1022,-11,0,0 +2013,9,8,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,12,0,1420,8,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,-1,0,1910,1,0,0 +2013,5,18,6,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1545,-1,0,1720,-12,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-3,0,1813,6,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1515,51,1,1648,45,1,0 +2013,4,8,1,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1355,74,1,1652,59,1,0 +2013,6,7,5,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,713,-4,0,901,6,0,0 +2013,5,15,3,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,948,-4,0,1440,-9,0,0 +2013,8,16,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1120,5,0,1330,1,0,0 +2013,7,25,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,9,0,2022,2,0,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2201,-3,0,2301,-12,0,0 +2013,5,25,6,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2015,-3,0,2200,-11,0,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2035,-3,0,2346,-15,0,0 +2013,6,27,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1530,10,0,1825,7,0,0 +2013,4,30,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,11,0,1155,-2,0,0 +2013,8,17,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,652,1,0,1040,-8,0,0 +2013,5,16,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1006,-8,0,1128,3,0,0 +2013,4,28,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1036,-5,0,1337,-15,0,0 +2013,5,10,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-7,0,1057,3,0,0 +2013,10,16,3,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,950,-6,0,1111,1,0,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,954,-3,0,1340,-13,0,0 +2013,4,10,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,830,-10,0,1242,-22,0,0 +2013,7,7,7,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1656,-8,0,1852,-13,0,0 +2013,4,16,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,734,-11,0,1116,-9,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,12,0,2300,-7,0,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,845,-3,0,1031,-13,0,0 +2013,6,24,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-2,0,1250,3,0,0 +2013,10,23,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,605,-6,0,720,-14,0,0 +2013,9,3,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-5,0,2200,-23,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1325,4,0,1440,12,0,0 +2013,10,24,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,21,1,1917,0,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,825,1,0,1045,-7,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,600,-2,0,920,0,0,0 +2013,6,21,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,45,1,1447,28,1,0 +2013,6,29,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,700,-1,0,1020,-3,0,0 +2013,10,31,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1300,-3,0,1400,-2,0,0 +2013,8,13,2,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1122,86,1,1403,89,1,0 +2013,8,5,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1610,-12,0,1803,-3,0,0 +2013,7,14,7,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2041,3,0,2150,-5,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,30,-6,0,835,-18,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1410,8,0,1536,-6,0,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,-5,0,1005,-18,0,0 +2013,5,14,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-9,0,1850,-17,0,0 +2013,9,22,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,840,-1,0,955,-2,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,20,1,1215,18,1,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,46,1,1949,32,1,0 +2013,7,6,6,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2145,-11,0,540,-22,0,0 +2013,10,10,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1605,2,0,1725,-3,0,0 +2013,8,31,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1446,4,0,1747,-22,0,0 +2013,10,19,6,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1113,10,0,1326,2,0,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1702,53,1,2023,73,1,0 +2013,4,23,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2025,12,0,2155,6,0,0 +2013,6,27,4,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,700,-10,0,949,13,0,0 +2013,8,29,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,2150,-6,0,154,-8,0,0 +2013,4,2,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,-7,0,1405,-18,0,0 +2013,9,13,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1011,-4,0,1132,-8,0,0 +2013,4,4,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1827,-6,0,0 +2013,10,14,1,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,10,0,1755,0,0,0 +2013,6,5,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1815,4,0,2020,-3,0,0 +2013,10,29,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,645,-4,0,655,-8,0,0 +2013,6,30,7,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,17,1,1835,10,0,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,0,,1912,0,1,1 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,0,,1010,0,1,1 +2013,8,6,2,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2014,-6,0,2259,-14,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,2035,-8,0,2145,-5,0,0 +2013,8,23,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-3,0,754,-2,0,0 +2013,4,4,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,47,1,1845,34,1,0 +2013,8,16,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,700,-3,0,1312,-8,0,0 +2013,9,3,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,935,-8,0,1153,-10,0,0 +2013,7,10,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,3,0,1940,4,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,31,1,1555,26,1,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1205,-7,0,1328,14,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1355,-2,0,2158,-25,0,0 +2013,4,13,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,26,1,1945,14,0,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1445,-2,0,1539,-6,0,0 +2013,4,22,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,-1,0,2045,-16,0,0 +2013,8,4,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,0,0,1155,6,0,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1225,193,1,1745,230,1,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,-1,0,2112,-19,0,0 +2013,5,30,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,632,-6,0,758,-6,0,0 +2013,10,23,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1215,-2,0,1255,-8,0,0 +2013,10,7,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1130,0,0,1223,6,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,1,0,1005,55,1,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,0,0,1820,-6,0,0 +2013,4,10,3,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2225,54,1,620,52,1,0 +2013,6,19,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-1,0,1337,1,0,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,-6,0,1610,10,0,0 +2013,8,5,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,915,-1,0,1005,-10,0,0 +2013,6,26,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,-2,0,1721,-12,0,0 +2013,5,28,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1130,-8,0,1431,-15,0,0 +2013,7,24,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1935,-12,0,2110,0,0,0 +2013,8,2,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,10,0,920,6,0,0 +2013,5,11,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,20,6,0,535,12,0,0 +2013,6,21,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,934,12,0,1206,4,0,0 +2013,10,18,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1930,18,1,2254,14,0,0 +2013,6,22,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,-8,0,1800,-8,0,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,0,0,1420,-14,0,0 +2013,5,22,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,11,0,1319,-6,0,0 +2013,9,3,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,600,2,0,732,-4,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1325,-3,0,1520,-6,0,0 +2013,6,2,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-5,0,1003,-14,0,0 +2013,9,23,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-2,0,1009,-3,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1200,-1,0,1318,-21,0,0 +2013,5,10,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2100,99,1,2226,97,1,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1240,19,1,1616,46,1,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,955,6,0,1130,11,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,89,1,2015,62,1,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,7,0,1540,3,0,0 +2013,9,30,1,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1710,-8,0,1844,-19,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1319,28,1,1452,29,1,0 +2013,7,30,2,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,730,2,0,840,10,0,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1006,5,0,1236,-23,0,0 +2013,4,10,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1805,0,,1925,0,1,1 +2013,4,25,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,-5,0,2108,-8,0,0 +2013,7,12,5,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-2,0,1440,-23,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,5,0,1240,10,0,0 +2013,8,7,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1530,-5,0,1648,-20,0,0 +2013,7,30,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,55,1,2247,55,1,0 +2013,6,14,5,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,640,0,,730,0,1,1 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1210,0,0,1316,-12,0,0 +2013,8,17,6,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1806,-10,0,2107,-11,0,0 +2013,10,16,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1653,-1,0,1925,-2,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1926,56,1,2210,46,1,0 +2013,6,9,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,167,1,2159,168,1,0 +2013,5,1,3,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,18,1,557,26,1,0 +2013,4,8,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,946,1,0,1255,-10,0,0 +2013,7,7,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,2002,-1,0,2109,-8,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1545,44,1,1720,85,1,0 +2013,8,31,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-3,0,1105,3,0,0 +2013,8,16,5,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1630,0,0,1805,-6,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1910,18,1,2010,20,1,0 +2013,5,2,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,0,0,1652,19,1,0 +2013,9,17,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1140,17,1,1320,13,0,0 +2013,10,31,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1700,12,0,1800,6,0,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,0,0,1145,-5,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1655,12,0,1820,10,0,0 +2013,10,17,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1850,25,1,1925,16,1,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1419,-1,0,1625,-1,0,0 +2013,10,5,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1320,6,0,1340,3,0,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1130,-10,0,1304,-13,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1055,0,0,1226,4,0,0 +2013,4,2,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1829,58,1,2045,65,1,0 +2013,6,4,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,725,-1,0,1045,10,0,0 +2013,4,6,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,93,1,1255,115,1,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1355,4,0,1655,1,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,845,-3,0,1110,13,0,0 +2013,8,28,3,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,812,-5,0,928,-6,0,0 +2013,4,17,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-2,0,1530,-16,0,0 +2013,8,10,6,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,555,4,0,721,-14,0,0 +2013,8,12,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1345,48,1,1540,45,1,0 +2013,5,1,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,605,-5,0,700,-19,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1355,0,0,1600,-8,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,844,9,0,1000,0,0,0 +2013,7,18,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-8,0,1340,-3,0,0 +2013,5,20,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,2020,10,0,2118,8,0,0 +2013,7,8,1,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1117,-4,0,1208,6,0,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1035,1,0,1520,-10,0,0 +2013,6,27,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1926,-2,0,2153,-19,0,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1825,4,0,2001,-30,0,0 +2013,7,25,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,849,-9,0,926,-7,0,0 +2013,9,12,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1150,14,0,1440,5,0,0 +2013,10,26,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,830,-2,0,1031,-2,0,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,700,-3,0,1039,-9,0,0 +2013,5,3,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-7,0,855,-12,0,0 +2013,9,13,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1552,-5,0,1718,3,0,0 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,940,6,0,1045,-5,0,0 +2013,9,27,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,61,1,654,65,1,0 +2013,4,17,3,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1120,5,0,1930,12,0,0 +2013,9,22,7,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1042,-10,0,1256,-18,0,0 +2013,5,1,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,743,-11,0,0 +2013,6,30,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-2,0,820,-7,0,0 +2013,7,19,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1725,10,0,1845,13,0,0 +2013,10,3,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,905,-1,0,1030,-7,0,0 +2013,8,28,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,-6,0,1925,5,0,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1919,3,0,2234,-9,0,0 +2013,7,30,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,705,-8,0,808,-13,0,0 +2013,6,2,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-6,0,809,-8,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1729,1,0,1849,-11,0,0 +2013,8,23,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,-13,0,643,-10,0,0 +2013,9,10,2,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,-7,0,2248,-49,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1645,33,1,2020,39,1,0 +2013,9,15,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-10,0,1515,-7,0,0 +2013,4,13,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,-5,0,2019,0,0,0 +2013,6,4,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-1,0,1035,-10,0,0 +2013,10,23,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-4,0,1000,1,0,0 +2013,9,7,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-9,0,1635,-18,0,0 +2013,6,14,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1801,12,0,2015,4,0,0 +2013,9,13,5,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-5,0,1630,-27,0,0 +2013,10,23,3,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,-7,0,2140,-12,0,0 +2013,10,10,4,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-4,0,1050,-17,0,0 +2013,8,4,7,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-4,0,930,-14,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,99,1,1615,104,1,0 +2013,7,3,3,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,5,0,820,-3,0,0 +2013,10,28,1,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1051,-9,0,1236,-4,0,0 +2013,5,2,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,5,0,1607,-5,0,0 +2013,4,1,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,855,10,0,1041,0,0,0 +2013,8,9,5,DL,13244,Memphis International,Memphis,TN,14747,Seattle/Tacoma International,Seattle,WA,1940,-3,0,2212,-18,0,0 +2013,10,12,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1540,-3,0,1655,-2,0,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1000,-1,0,1248,4,0,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1804,18,1,2025,28,1,0 +2013,9,15,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1441,30,1,1531,24,1,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,0,0,1244,0,0,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,840,0,0,1025,-25,0,0 +2013,6,28,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,1,0,1036,-3,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1258,-6,0,1702,-16,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,935,12,0,1200,52,1,0 +2013,7,24,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,35,1,1538,36,1,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-4,0,2011,-5,0,0 +2013,5,30,4,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-4,0,555,-19,0,0 +2013,4,22,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-5,0,937,1,0,0 +2013,7,22,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1420,0,,1712,0,1,1 +2013,7,15,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1855,-4,0,2301,-3,0,0 +2013,7,10,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1403,88,1,2155,88,1,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1925,2,0,2150,-2,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,825,-2,0,915,1,0,0 +2013,9,3,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1530,5,0,1706,24,1,0 +2013,6,27,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-8,0,658,-6,0,0 +2013,5,2,4,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1045,1,0,1240,-23,0,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1929,-6,0,2235,23,1,0 +2013,4,4,4,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,745,10,0,1045,-3,0,0 +2013,9,11,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,924,-6,0,0 +2013,8,22,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-2,0,629,1,0,0 +2013,10,31,4,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1119,-4,0,1705,-24,0,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-5,0,1950,-11,0,0 +2013,10,15,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,840,-3,0,1005,-13,0,0 +2013,6,2,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1725,-4,0,1850,-5,0,0 +2013,9,7,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,844,-1,0,1013,-31,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,954,-1,0,1128,-13,0,0 +2013,7,26,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1405,32,1,2200,30,1,0 +2013,5,19,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1545,19,1,1855,31,1,0 +2013,9,20,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-6,0,2226,-6,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1755,-8,0,1910,-22,0,0 +2013,6,29,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1100,-1,0,1225,-3,0,0 +2013,9,29,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1133,-6,0,1320,-3,0,0 +2013,8,5,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,810,1,0,1330,-6,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1945,-2,0,110,-3,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-4,0,1237,0,0,0 +2013,5,2,4,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1745,-4,0,1915,3,0,0 +2013,6,18,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,-1,0,1610,-9,0,0 +2013,8,16,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,-8,0,2014,-8,0,0 +2013,10,21,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1044,-2,0,1324,-18,0,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,935,2,0,1620,8,0,0 +2013,4,14,7,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,708,-3,0,1026,48,1,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,905,-5,0,1025,8,0,0 +2013,10,10,4,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2153,0,0,2303,-9,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1525,10,0,1710,10,0,0 +2013,5,10,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,855,54,1,1338,47,1,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,749,-5,0,1041,-22,0,0 +2013,5,20,1,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,2331,-5,0,644,8,0,0 +2013,8,4,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-6,0,1808,-7,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1550,0,0,1723,37,1,0 +2013,7,20,6,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,630,1,0,1225,-9,0,0 +2013,9,6,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-8,0,1252,-13,0,0 +2013,10,16,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-6,0,1917,-5,0,0 +2013,5,5,7,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1150,-6,0,1303,-12,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,912,11,0,1125,27,1,0 +2013,9,15,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-9,0,1402,-1,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1355,9,0,1650,39,1,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2200,0,0,2255,0,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,146,1,1535,136,1,0 +2013,6,15,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1525,-4,0,1644,0,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-5,0,1006,-22,0,0 +2013,10,5,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1707,9,0,2216,14,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,904,-5,0,1035,-23,0,0 +2013,9,8,7,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1045,-6,0,1351,-7,0,0 +2013,8,17,6,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,759,-6,0,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,545,-4,0,706,-4,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1146,0,0,1355,-6,0,0 +2013,5,4,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,745,-4,0,0 +2013,9,28,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1315,7,0,1600,0,0,0 +2013,8,22,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1835,32,1,2004,20,1,0 +2013,9,22,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1335,91,1,1440,91,1,0 +2013,10,24,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,2006,-5,0,2213,-3,0,0 +2013,7,27,6,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,5,0,1730,29,1,0 +2013,5,11,6,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,914,23,1,1227,16,1,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2035,-7,0,2135,-13,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1955,22,1,2210,19,1,0 +2013,4,20,6,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1810,-3,0,2055,9,0,0 +2013,4,30,2,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,920,1,0,1150,-10,0,0 +2013,10,22,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-6,0,944,-5,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1715,20,1,2255,21,1,0 +2013,7,8,1,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2003,30,1,2243,3,0,0 +2013,8,26,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-8,0,609,-5,0,0 +2013,9,20,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,645,-2,0,815,2,0,0 +2013,9,1,7,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-13,0,1031,-25,0,0 +2013,5,7,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1050,1,0,1220,-10,0,0 +2013,5,4,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-7,0,1140,-8,0,0 +2013,7,25,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,819,-4,0,0 +2013,8,25,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-3,0,2150,-17,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1415,6,0,1604,-6,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2035,-3,0,2217,-19,0,0 +2013,5,16,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-8,0,914,0,0,0 +2013,8,28,3,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1559,146,1,1914,109,1,0 +2013,10,23,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1940,-7,0,2229,-35,0,0 +2013,5,1,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1610,-7,0,1724,-13,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,2,0,1326,-8,0,0 +2013,7,27,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1020,13,0,1145,18,1,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,0,0,1029,-3,0,0 +2013,4,7,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,740,-10,0,1520,-18,0,0 +2013,5,30,4,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,618,-3,0,752,-7,0,0 +2013,5,28,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,1903,-5,0,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,9,0,1735,8,0,0 +2013,7,2,2,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1638,-8,0,1727,-21,0,0 +2013,4,16,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1200,-5,0,1450,-3,0,0 +2013,8,29,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-6,0,1843,-11,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,1,0,1955,-10,0,0 +2013,6,7,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,545,-6,0,905,0,0,0 +2013,9,7,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,825,-6,0,837,-7,0,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,67,1,1416,51,1,0 +2013,5,14,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-7,0,1217,-32,0,0 +2013,9,9,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,29,1,1247,7,0,0 +2013,5,10,5,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,600,0,0,850,-12,0,0 +2013,8,23,5,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-3,0,1025,-29,0,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1959,-5,0,2157,-8,0,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1255,-4,0,1550,-8,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,11,0,1315,13,0,0 +2013,5,15,3,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-5,0,1720,-11,0,0 +2013,7,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1850,3,0,2005,-5,0,0 +2013,7,21,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1230,9,0,1335,10,0,0 +2013,7,19,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1415,72,1,1540,70,1,0 +2013,5,20,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,-7,0,1359,-2,0,0 +2013,7,11,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,35,1,2010,38,1,0 +2013,5,5,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,820,-4,0,1024,0,0,0 +2013,5,24,5,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1341,17,1,1651,16,1,0 +2013,6,15,6,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1830,5,0,2016,-34,0,0 +2013,5,20,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,-4,0,1816,-25,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1053,2,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,76,1,1940,166,1,0 +2013,5,29,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1740,-6,0,1905,-3,0,0 +2013,8,8,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1011,-7,0,1120,-17,0,0 +2013,8,5,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1455,35,1,1610,27,1,0 +2013,10,6,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-7,0,2035,-9,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-3,0,1357,-12,0,0 +2013,10,24,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1956,-3,0,2155,3,0,0 +2013,7,21,7,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,8,0,1454,10,0,0 +2013,5,10,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1005,130,1,1135,114,1,0 +2013,9,22,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,15,1,2015,3,0,0 +2013,4,23,2,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-4,0,1145,5,0,0 +2013,8,6,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1940,-7,0,2050,20,1,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1720,11,0,1940,20,1,0 +2013,9,18,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1125,-2,0,1420,-11,0,0 +2013,9,30,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,-4,0,1630,-18,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,740,-2,0,1245,-13,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,18,1,2149,3,0,0 +2013,4,22,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,-5,0,1850,-3,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2055,22,1,2320,20,1,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1430,52,1,1615,64,1,0 +2013,6,15,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,12,0,1621,5,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1930,4,0,5,-10,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1400,-6,0,1525,6,0,0 +2013,10,13,7,OO,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1756,1,0,2049,-9,0,0 +2013,4,15,1,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-7,0,841,-10,0,0 +2013,8,5,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-4,0,2051,-10,0,0 +2013,9,6,5,YV,14100,Philadelphia International,Philadelphia,PA,14730,Louisville International-Standiford Field,Louisville,KY,2045,-5,0,2246,-25,0,0 +2013,6,4,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1505,-7,0,1630,12,0,0 +2013,9,23,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1245,-6,0,1444,1,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1315,7,0,1445,-4,0,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1845,0,0,1945,3,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1515,17,1,1715,3,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,65,1,2216,19,1,0 +2013,5,17,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1337,14,0,1655,2,0,0 +2013,7,9,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1625,69,1,1640,111,1,0 +2013,9,23,1,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1154,5,0,2025,-5,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1525,8,0,1733,12,0,0 +2013,10,16,3,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1020,-3,0,1220,-12,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,-5,0,2237,-15,0,0 +2013,5,31,5,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1204,-10,0,1704,-26,0,0 +2013,5,23,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1740,32,1,1940,23,1,0 +2013,6,17,1,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,630,1,0,823,-18,0,0 +2013,7,22,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1354,-6,0,1450,-11,0,0 +2013,10,19,6,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,-6,0,1009,-4,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1515,-6,0,1839,-13,0,0 +2013,6,4,2,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,845,5,0,0 +2013,9,23,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,5,0,1250,11,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-4,0,1520,-10,0,0 +2013,5,31,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1855,4,0,2005,1,0,0 +2013,5,7,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1956,41,1,2122,41,1,0 +2013,4,19,5,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1930,-10,0,2230,4,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1920,13,0,2040,12,0,0 +2013,8,16,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,955,2,0,1320,-1,0,0 +2013,9,30,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,905,-5,0,1250,-13,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,16,1,1840,16,1,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,5,0,1810,12,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1000,-2,0,1225,-4,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1815,6,0,1953,59,1,0 +2013,5,11,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2230,-2,0,2320,-9,0,0 +2013,8,14,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,845,-5,0,955,-3,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1755,-1,0,2009,-23,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,32,1,2010,8,0,0 +2013,7,10,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,705,4,0,840,12,0,0 +2013,4,1,1,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,2200,14,0,2359,4,0,0 +2013,8,7,3,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1655,-10,0,2015,-22,0,0 +2013,5,2,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1451,8,0,1549,-1,0,0 +2013,7,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1053,-8,0,1202,-16,0,0 +2013,5,13,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-9,0,929,2,0,0 +2013,4,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-6,0,1956,-17,0,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,-3,0,2221,-10,0,0 +2013,5,21,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1825,23,1,2002,18,1,0 +2013,10,30,3,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1659,15,1,2007,-1,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,724,-2,0,1127,-13,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,-1,0,1250,-14,0,0 +2013,10,17,4,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1920,-4,0,2030,-14,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1604,29,1,1735,11,0,0 +2013,5,14,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2015,17,1,2037,5,0,0 +2013,8,25,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1601,-9,0,2025,-21,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1042,-4,0,1154,-7,0,0 +2013,6,10,1,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-3,0,2023,-28,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2050,13,0,2305,5,0,0 +2013,7,25,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-6,0,1340,-10,0,0 +2013,10,5,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,550,3,0,1159,10,0,0 +2013,7,18,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-10,0,1254,-15,0,0 +2013,9,25,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,946,-5,0,1325,-24,0,0 +2013,10,14,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-1,0,1258,-4,0,0 +2013,5,9,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,920,1,0,1050,-5,0,0 +2013,6,19,3,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1110,-4,0,1229,-18,0,0 +2013,7,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1515,-5,0,1630,-7,0,0 +2013,5,5,7,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1219,5,0,1318,-6,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,1600,9,0,2355,-3,0,0 +2013,8,27,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1730,28,1,2000,12,0,0 +2013,5,14,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1159,0,0,1352,1,0,0 +2013,6,19,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,1,0,1320,-22,0,0 +2013,9,5,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2025,-14,0,2156,-13,0,0 +2013,10,16,3,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,1900,-7,0,2130,-31,0,0 +2013,4,21,7,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,629,-5,0,744,-17,0,0 +2013,6,25,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,709,8,0,1029,-9,0,0 +2013,6,23,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,840,-7,0,0 +2013,4,16,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1805,0,,1925,0,1,1 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,820,53,1,1020,67,1,0 +2013,10,16,3,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1049,-7,0,1830,-38,0,0 +2013,8,25,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,-7,0,1547,-5,0,0 +2013,6,15,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1635,25,1,1755,15,1,0 +2013,6,14,5,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,-11,0,1856,-20,0,0 +2013,6,17,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1940,-3,0,2030,-9,0,0 +2013,7,21,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,13,0,2354,4,0,0 +2013,8,17,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1257,-11,0,0 +2013,8,24,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,11,0,1530,19,1,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2035,20,1,2205,-5,0,0 +2013,6,27,4,9E,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,-3,0,2046,-1,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,4,0,1624,3,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,-3,0,1958,-10,0,0 +2013,5,22,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1510,13,0,1710,3,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2040,2,0,2353,-4,0,0 +2013,7,20,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,114,1,1925,115,1,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1310,0,,1504,0,1,1 +2013,10,14,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1004,53,1,1352,45,1,0 +2013,9,30,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,-4,0,1114,-20,0,0 +2013,4,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,4,0,1755,3,0,0 +2013,8,2,5,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1650,-6,0,1910,-16,0,0 +2013,8,16,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1250,-2,0,1547,-19,0,0 +2013,4,5,5,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,915,-6,0,1034,11,0,0 +2013,7,10,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,40,1,2025,30,1,0 +2013,10,22,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,1031,-11,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,-5,0,2308,-42,0,0 +2013,8,19,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,-10,0,2115,-24,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2025,2,0,2135,0,0,0 +2013,10,18,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,4,0,1330,-2,0,0 +2013,10,12,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1445,-13,0,1522,-11,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,19,1,2140,8,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,-8,0,922,-10,0,0 +2013,5,5,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1235,-8,0,1405,-19,0,0 +2013,4,20,6,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1147,-3,0,1610,-20,0,0 +2013,6,2,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1540,10,0,2349,14,0,0 +2013,7,22,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1058,48,1,1912,59,1,0 +2013,9,3,2,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,700,-7,0,1516,-8,0,0 +2013,9,28,6,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1510,12,0,1645,6,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,719,70,1,1550,46,1,0 +2013,6,14,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1714,-4,0,2331,-11,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,720,0,0,840,-4,0,0 +2013,5,21,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1740,-1,0,1900,12,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2130,-7,0,2308,-2,0,0 +2013,9,28,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,725,-2,0,840,-5,0,0 +2013,9,2,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1155,-12,0,1245,-24,0,0 +2013,7,27,6,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1700,4,0,1845,-1,0,0 +2013,8,5,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-7,0,2130,-6,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,7,0,806,21,1,0 +2013,9,22,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2005,-4,0,2135,2,0,0 +2013,6,10,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,2005,-4,0,2100,-4,0,0 +2013,6,10,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1245,81,1,1425,73,1,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,-14,0,1307,-6,0,0 +2013,10,30,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,800,-9,0,936,-14,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1207,3,0,1529,-17,0,0 +2013,8,6,2,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1,0,0,505,2,0,0 +2013,6,3,1,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,601,26,1,1201,-1,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1215,137,1,1445,137,1,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-4,0,810,2,0,0 +2013,9,18,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,6,0,1547,0,0,0 +2013,6,17,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,706,0,0,840,3,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,16,1,2131,13,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,90,1,2215,112,1,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,726,-6,0,913,-7,0,0 +2013,10,3,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,615,-6,0,725,-20,0,0 +2013,9,16,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,942,25,1,1141,5,0,0 +2013,7,26,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1540,28,1,1741,50,1,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1320,4,0,1700,22,1,0 +2013,4,24,3,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-8,0,2315,-10,0,0 +2013,5,18,6,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,810,-5,0,1050,-26,0,0 +2013,10,21,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-7,0,1637,-4,0,0 +2013,5,31,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-5,0,1010,-12,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2145,-7,0,2222,-18,0,0 +2013,5,15,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-1,0,937,-11,0,0 +2013,7,6,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,602,-4,0,843,-24,0,0 +2013,9,5,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-4,0,1420,-10,0,0 +2013,6,7,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,4,0,1341,3,0,0 +2013,9,26,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,0,0,2030,-14,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-5,0,1912,-20,0,0 +2013,4,3,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1235,5,0,1751,-11,0,0 +2013,6,30,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-7,0,1436,6,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1602,4,0,1732,-6,0,0 +2013,4,20,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1212,-5,0,1318,-1,0,0 +2013,9,29,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2257,-9,0,19,-18,0,0 +2013,7,30,2,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,948,-1,0,1311,-4,0,0 +2013,5,5,7,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1840,-3,0,1939,-11,0,0 +2013,8,25,7,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,39,1,600,27,1,0 +2013,5,17,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,1,0,2119,23,1,0 +2013,4,18,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1735,-2,0,2050,-12,0,0 +2013,9,9,1,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,700,63,1,826,70,1,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1420,49,1,1705,40,1,0 +2013,4,19,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1415,0,,1759,0,1,1 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1939,19,1,2234,13,0,0 +2013,4,5,5,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10,41,1,800,39,1,0 +2013,5,22,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,2,0,1720,-5,0,0 +2013,9,29,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-4,0,1252,-8,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1750,147,1,2310,161,1,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,18,1,1225,18,1,0 +2013,6,25,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1920,0,,2100,0,1,1 +2013,7,8,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1530,-3,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,6,0,1245,10,0,0 +2013,6,3,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1409,27,1,1517,12,0,0 +2013,10,26,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,2002,-7,0,2245,-18,0,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-5,0,902,12,0,0 +2013,6,15,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1700,-1,0,1820,-1,0,0 +2013,6,12,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-2,0,1000,1,0,0 +2013,6,13,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,7,0,1335,1,0,0 +2013,5,22,3,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1310,-5,0,2121,3,0,0 +2013,6,11,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,458,1,945,440,1,0 +2013,7,22,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,20,1,1900,8,0,0 +2013,4,22,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1735,-5,0,1815,-7,0,0 +2013,6,17,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1912,7,0,2150,-2,0,0 +2013,6,17,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,119,1,1250,107,1,0 +2013,8,27,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-8,0,1545,-3,0,0 +2013,6,19,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,28,1,1646,8,0,0 +2013,9,13,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1716,8,0,2010,19,1,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,940,-2,0,1230,11,0,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,12,0,2309,-9,0,0 +2013,7,10,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-7,0,1520,-19,0,0 +2013,10,18,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,759,5,0,1045,-8,0,0 +2013,9,11,3,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1429,8,0,1658,6,0,0 +2013,8,25,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,19,1,1327,20,1,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,950,-4,0,1209,-28,0,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1737,34,1,1924,24,1,0 +2013,10,6,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2351,-8,0,700,-19,0,0 +2013,10,31,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1120,-3,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,940,6,0,1155,36,1,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1630,6,0,1830,1,0,0 +2013,7,22,1,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,835,-2,0,1115,-11,0,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-5,0,1610,-10,0,0 +2013,6,21,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,735,-5,0,805,-12,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,11,0,2250,7,0,0 +2013,9,16,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1400,-3,0,1550,-21,0,0 +2013,10,8,2,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,3,0,1420,2,0,0 +2013,10,29,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,49,1,2035,28,1,0 +2013,8,30,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-3,0,805,-23,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,6,0,1155,2,0,0 +2013,6,19,3,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,6,0,1545,1,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,3,0,1915,8,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,8,0,1720,14,0,0 +2013,5,4,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,44,1,2134,32,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1407,1,0,1614,4,0,0 +2013,4,12,5,OO,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1515,3,0,1700,14,0,0 +2013,7,12,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,805,1,0,0 +2013,8,11,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1350,6,0,1430,20,1,0 +2013,10,27,7,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1456,7,0,1556,-2,0,0 +2013,10,20,7,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1334,-4,0,1650,4,0,0 +2013,9,24,2,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1515,-8,0,1831,-17,0,0 +2013,6,21,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,8,0,930,7,0,0 +2013,10,16,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-4,0,1007,0,0,0 +2013,10,24,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-6,0,1055,-8,0,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2015,16,1,2309,10,0,0 +2013,7,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1859,-2,0,2213,-15,0,0 +2013,8,28,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,-1,0,1420,-17,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1855,0,0,1955,0,0,0 +2013,4,24,3,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1215,129,1,1355,113,1,0 +2013,8,31,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,645,-4,0,805,-13,0,0 +2013,6,13,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1056,18,1,1828,1,0,0 +2013,6,8,6,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1435,134,1,1624,116,1,0 +2013,8,10,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,959,-5,0,1147,-24,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1056,-3,0,1157,-13,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-2,0,949,-10,0,0 +2013,8,14,3,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,1000,20,1,1230,1,0,0 +2013,5,11,6,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,927,-2,0,1200,-19,0,0 +2013,7,20,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1137,-4,0,1332,15,1,0 +2013,7,26,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1505,0,0,1755,-13,0,0 +2013,6,21,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,31,1,2108,28,1,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,38,1,2240,37,1,0 +2013,8,2,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,7,0,1705,13,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1355,-3,0,1729,-8,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1520,-3,0,1645,-13,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2120,1,0,2210,10,0,0 +2013,8,1,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1810,19,1,1925,14,0,0 +2013,7,1,1,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1220,-1,0,1357,-2,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1455,4,0,1607,2,0,0 +2013,7,24,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,658,7,0,1300,12,0,0 +2013,10,12,6,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-2,0,905,-8,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1635,0,0,1803,3,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-4,0,1950,-7,0,0 +2013,9,3,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1520,0,0,1615,-5,0,0 +2013,5,15,3,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,800,127,1,1105,131,1,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,900,-5,0,1200,-7,0,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,846,-7,0,1048,-6,0,0 +2013,4,29,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-1,0,1713,-4,0,0 +2013,6,19,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,3,0,1018,18,1,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,715,-4,0,1000,-8,0,0 +2013,10,29,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1436,-5,0,1559,-17,0,0 +2013,7,20,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2129,-4,0,556,-28,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1249,63,1,1401,53,1,0 +2013,4,6,6,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-4,0,1035,0,0,0 +2013,9,23,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2156,-4,0,600,-24,0,0 +2013,5,23,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1855,75,1,2019,61,1,0 +2013,6,15,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,700,0,0,735,13,0,0 +2013,6,21,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-3,0,1020,-15,0,0 +2013,6,4,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1718,44,1,1940,34,1,0 +2013,6,11,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-6,0,1635,6,0,0 +2013,5,3,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-4,0,1138,-1,0,0 +2013,6,3,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-14,0,1332,-19,0,0 +2013,5,18,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1610,-6,0,1721,-29,0,0 +2013,4,30,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,800,-1,0,930,-7,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,3,0,2325,17,1,0 +2013,7,18,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1758,21,1,1824,14,0,0 +2013,9,8,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,1736,-9,0,0 +2013,4,3,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1055,17,1,1855,7,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,0,0,1638,2,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1515,2,0,1825,-2,0,0 +2013,6,2,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,930,14,0,0 +2013,6,27,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-3,0,1445,-7,0,0 +2013,4,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1740,8,0,1855,-1,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,2,0,1315,-17,0,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1510,23,1,1705,17,1,0 +2013,10,16,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1751,2,0,1825,2,0,0 +2013,4,13,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,910,-7,0,1158,-6,0,0 +2013,7,5,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1745,16,1,1915,8,0,0 +2013,4,17,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1900,10,0,2050,33,1,0 +2013,9,9,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1630,9,0,1806,-2,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,720,12,0,925,8,0,0 +2013,5,24,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,53,1,1910,54,1,0 +2013,5,17,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,9,0,2235,0,0,0 +2013,9,17,2,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1720,17,1,1829,13,0,0 +2013,4,19,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,81,1,1655,137,1,0 +2013,7,9,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,700,-1,0,1000,-10,0,0 +2013,6,30,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,620,0,0,825,7,0,0 +2013,7,29,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,16,1,630,21,1,0 +2013,6,9,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,14,0,1810,2,0,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,4,0,1815,11,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-5,0,1349,-5,0,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,710,-3,0,1535,-7,0,0 +2013,7,10,3,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,0,0,856,-3,0,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,-4,0,1903,-22,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1515,-3,0,1640,7,0,0 +2013,4,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1300,0,0,1431,0,0,0 +2013,8,20,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,60,1,2144,51,1,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,930,-2,0,1155,-11,0,0 +2013,8,19,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,800,-3,0,850,-14,0,0 +2013,4,5,5,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,-5,0,1940,-26,0,0 +2013,8,28,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-3,0,1040,-7,0,0 +2013,4,5,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1553,8,0,1806,-6,0,0 +2013,7,23,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1841,-5,0,2300,-10,0,0 +2013,6,13,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1053,-7,0,1131,-7,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,839,-1,0,1450,44,1,0 +2013,5,14,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,101,1,847,104,1,0 +2013,5,20,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,-2,0,2051,4,0,0 +2013,8,9,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-10,0,1918,-9,0,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,800,-9,0,940,-11,0,0 +2013,5,17,5,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1855,14,0,2010,8,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,827,-4,0,850,-8,0,0 +2013,9,24,2,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1440,7,0,1820,-1,0,0 +2013,6,17,1,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,0,,1625,0,1,1 +2013,7,26,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1835,42,1,2010,58,1,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1740,30,1,30,50,1,0 +2013,5,16,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1926,49,1,2030,44,1,0 +2013,4,30,2,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1920,-4,0,2050,-5,0,0 +2013,6,19,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1312,5,0,1604,-12,0,0 +2013,4,19,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-8,0,1245,-3,0,0 +2013,10,25,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,3,0,1603,16,1,0 +2013,5,6,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-5,0,920,-9,0,0 +2013,6,27,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2130,0,,2245,0,1,1 +2013,8,10,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1025,-1,0,1157,4,0,0 +2013,8,28,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-10,0,1905,-11,0,0 +2013,6,20,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1203,-3,0,1344,-2,0,0 +2013,6,4,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,-5,0,1815,2,0,0 +2013,9,13,5,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1930,-3,0,807,-14,0,0 +2013,9,19,4,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2109,-7,0,530,-5,0,0 +2013,10,9,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1325,-4,0,1515,-16,0,0 +2013,4,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,2,0,1910,4,0,0 +2013,6,12,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,857,-14,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1348,-2,0,1502,17,1,0 +2013,10,3,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,605,13,0,735,2,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2155,-1,0,27,-13,0,0 +2013,4,8,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2015,35,1,2250,7,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,725,-2,0,1040,-9,0,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,12,0,1545,0,0,0 +2013,9,10,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,8,0,2215,-13,0,0 +2013,5,16,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-4,0,754,-3,0,0 +2013,9,26,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1925,-5,0,2030,-3,0,0 +2013,6,19,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,0,0,1729,-15,0,0 +2013,8,13,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-3,0,1629,-15,0,0 +2013,9,6,5,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-8,0,1453,-1,0,0 +2013,5,22,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1916,56,1,2100,57,1,0 +2013,10,16,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,645,-6,0,748,-16,0,0 +2013,8,29,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,29,1,1238,19,1,0 +2013,9,7,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1215,13,0,1425,5,0,0 +2013,10,7,1,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1447,31,1,1559,0,1,1 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,11,0,1034,-3,0,0 +2013,5,23,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1721,-5,0,1811,-13,0,0 +2013,10,23,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1025,0,,1145,0,1,1 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-4,0,2227,-9,0,0 +2013,8,29,4,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,715,-3,0,725,-3,0,0 +2013,8,24,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,606,10,0,737,2,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,649,-5,0,1306,-14,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2155,18,1,2325,10,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,758,2,0,0 +2013,10,4,5,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,759,-8,0,0 +2013,4,12,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1845,46,1,2300,30,1,0 +2013,5,5,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,725,-2,0,1009,2,0,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,750,-2,0,905,-8,0,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,0,0,1100,-5,0,0 +2013,9,15,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2019,17,1,2145,11,0,0 +2013,8,22,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,12,0,2347,27,1,0 +2013,10,19,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,801,-3,0,1028,-5,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,1,0,2214,-5,0,0 +2013,10,26,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,759,-6,0,934,-13,0,0 +2013,6,28,5,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,925,-3,0,1210,-8,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,750,-2,0,1055,1,0,0 +2013,6,24,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,935,1,0,1153,31,1,0 +2013,6,30,7,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-1,0,1045,-36,0,0 +2013,5,23,4,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1530,12,0,1710,1,0,0 +2013,5,9,4,DL,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1929,-6,0,2105,-18,0,0 +2013,7,11,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,755,13,0,0 +2013,7,18,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-2,0,820,2,0,0 +2013,7,28,7,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,60,1,2329,45,1,0 +2013,7,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,910,-5,0,1305,-10,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1305,1,0,1557,-8,0,0 +2013,8,1,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1245,4,0,1415,0,0,0 +2013,7,12,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,-4,0,1033,-7,0,0 +2013,10,14,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1710,127,1,1750,116,1,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,6,0,1500,9,0,0 +2013,8,15,4,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1600,13,0,1901,4,0,0 +2013,5,4,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1042,-7,0,1425,-5,0,0 +2013,5,1,3,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1405,2,0,2215,4,0,0 +2013,8,12,1,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1120,0,0,1302,-4,0,0 +2013,5,8,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1542,-1,0,1736,-6,0,0 +2013,5,21,2,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1350,-3,0,1505,-2,0,0 +2013,8,27,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-6,0,758,-11,0,0 +2013,8,16,5,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1550,75,1,1940,63,1,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1035,25,1,1355,18,1,0 +2013,10,1,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-7,0,1010,-15,0,0 +2013,7,8,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,-1,0,1440,-12,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-5,0,1219,14,0,0 +2013,9,7,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-2,0,2125,-3,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-4,0,1250,-7,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,2,0,851,-8,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2025,4,0,2230,19,1,0 +2013,8,30,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1828,-7,0,1958,-16,0,0 +2013,7,7,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,0,0,2135,-11,0,0 +2013,7,28,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1201,8,0,1314,3,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,-4,0,1635,-6,0,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1935,206,1,2035,200,1,0 +2013,7,11,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1114,45,1,1443,53,1,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1510,27,1,1749,8,0,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,-1,0,2335,-20,0,0 +2013,4,9,2,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-5,0,803,-15,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1510,51,1,1950,42,1,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,605,-7,0,751,-13,0,0 +2013,9,11,3,OO,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1205,8,0,1436,13,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1940,4,0,2030,-2,0,0 +2013,7,5,5,HA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1355,9,0,2205,6,0,0 +2013,9,20,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-8,0,920,-5,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1525,0,0,1920,1,0,0 +2013,6,25,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,710,6,0,805,34,1,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1830,27,1,2255,35,1,0 +2013,7,14,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,-1,0,1348,-5,0,0 +2013,8,16,5,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,619,-2,0,921,-22,0,0 +2013,6,28,5,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2106,-6,0,30,-13,0,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1600,68,1,1715,57,1,0 +2013,4,22,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1350,2,0,1435,2,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2045,2,0,2246,-4,0,0 +2013,6,19,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,-1,0,745,5,0,0 +2013,10,26,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1705,-7,0,2057,-12,0,0 +2013,9,26,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1853,21,1,2049,15,1,0 +2013,6,25,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,600,9,0,1155,3,0,0 +2013,9,4,3,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-14,0,1050,-21,0,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1508,0,0,1658,-14,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,3,0,1320,-4,0,0 +2013,6,12,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1400,1,0,1735,-18,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,815,7,0,1150,1,0,0 +2013,9,2,1,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-7,0,841,25,1,0 +2013,10,20,7,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1355,-6,0,1542,-2,0,0 +2013,10,13,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,905,-2,0,1505,-13,0,0 +2013,7,26,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-6,0,2140,8,0,0 +2013,4,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,0,,1105,0,1,1 +2013,10,30,3,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-6,0,1033,-10,0,0 +2013,8,10,6,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1020,-5,0,1125,5,0,0 +2013,5,10,5,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,705,-2,0,820,-4,0,0 +2013,5,28,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1345,5,0,1520,-2,0,0 +2013,4,11,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,-2,0,1510,13,0,0 +2013,10,25,5,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-4,0,2033,-3,0,0 +2013,9,20,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1140,0,0,1445,7,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1025,-5,0,1207,-7,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,4,0,2253,-3,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,1,0,1540,7,0,0 +2013,4,29,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2155,87,1,2320,80,1,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-6,0,1601,-12,0,0 +2013,8,4,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,-5,0,2135,46,1,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,43,1,2248,35,1,0 +2013,9,25,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,730,-2,0,1045,-24,0,0 +2013,7,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1656,-2,0,1755,-8,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,30,1,1805,23,1,0 +2013,10,8,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1350,-5,0,1512,-22,0,0 +2013,6,27,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1513,9,0,1720,-9,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-2,0,1238,-11,0,0 +2013,9,1,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-10,0,1645,3,0,0 +2013,8,29,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,1,0,722,-4,0,0 +2013,9,28,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1250,-8,0,1400,-16,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1640,10,0,1740,-1,0,0 +2013,8,27,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1745,1,0,2005,-23,0,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1917,81,1,2238,74,1,0 +2013,8,4,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,-3,0,1345,-18,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,935,18,1,1055,14,0,0 +2013,8,7,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,5,0,1529,-5,0,0 +2013,6,3,1,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1605,-14,0,1903,-7,0,0 +2013,7,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1025,12,0,1135,3,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,940,0,0,1045,11,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1210,-2,0,1351,-9,0,0 +2013,5,17,5,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-5,0,1820,16,1,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1511,17,1,1857,-16,0,0 +2013,9,2,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,935,-15,0,1037,-14,0,0 +2013,7,2,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,-5,0,1916,-10,0,0 +2013,4,27,6,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-9,0,935,-2,0,0 +2013,9,26,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,920,-1,0,1220,-1,0,0 +2013,5,15,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1625,20,1,1740,19,1,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,1,0,1240,6,0,0 +2013,5,10,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,1,0,1150,-3,0,0 +2013,7,16,2,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1840,212,1,2150,181,1,0 +2013,7,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,2017,-4,0,108,3,0,0 +2013,5,20,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,725,-7,0,820,8,0,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1600,-1,0,1830,-8,0,0 +2013,4,23,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,1,0,2225,-7,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1925,0,,2230,0,1,1 +2013,8,7,3,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,0,0,1225,11,0,0 +2013,5,18,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2035,-4,0,2150,-12,0,0 +2013,4,2,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,901,-26,0,0 +2013,7,9,2,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,3,0,1345,-3,0,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1703,-6,0,1729,-12,0,0 +2013,5,1,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-8,0,902,-17,0,0 +2013,5,3,5,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-3,0,1940,12,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1820,3,0,2005,-3,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,830,-5,0,940,-2,0,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1845,48,1,1930,64,1,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,-2,0,2145,-12,0,0 +2013,5,19,7,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,1955,8,0,2235,1,0,0 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1909,-3,0,44,-2,0,0 +2013,8,12,1,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,-2,0,1620,0,0,0 +2013,4,22,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1440,-5,0,1658,-13,0,0 +2013,8,17,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-7,0,1925,-8,0,0 +2013,5,14,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,-8,0,1311,-5,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-4,0,1520,-27,0,0 +2013,6,22,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-10,0,1315,-16,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,-5,0,1230,21,1,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2005,76,1,2313,59,1,0 +2013,4,19,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,34,1,1934,36,1,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1730,3,0,1825,-8,0,0 +2013,4,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2045,15,1,2215,9,0,0 +2013,5,30,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,2,0,1758,11,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,830,32,1,955,30,1,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,8,0,1927,4,0,0 +2013,5,8,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1640,-1,0,1922,-24,0,0 +2013,5,30,4,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1551,162,1,1845,145,1,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,850,2,0,1245,-9,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1849,44,1,1949,36,1,0 +2013,6,20,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2255,3,0,129,3,0,0 +2013,7,11,4,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1136,166,1,1338,153,1,0 +2013,10,31,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1436,-4,0,1559,-22,0,0 +2013,10,7,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,1,0,2058,-21,0,0 +2013,5,25,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-13,0,1046,-24,0,0 +2013,5,29,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,938,-1,0,1040,-10,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-4,0,1130,-20,0,0 +2013,10,21,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,-2,0,2145,5,0,0 +2013,4,14,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1931,-7,0,2055,-8,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,732,-3,0,1006,-7,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1150,-3,0,1549,2,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,820,2,0,1055,1,0,0 +2013,10,12,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-2,0,838,-11,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2055,-10,0,2341,-33,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,800,-5,0,1034,-12,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1200,28,1,1346,26,1,0 +2013,10,13,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,0,0,2214,-18,0,0 +2013,9,2,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,17,1,1255,27,1,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,920,2,0,1055,7,0,0 +2013,9,13,5,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2055,-4,0,515,-8,0,0 +2013,8,1,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1743,20,1,1848,26,1,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1235,1,0,1430,-16,0,0 +2013,8,29,4,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1127,-11,0,1344,-6,0,0 +2013,10,28,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,615,-7,0,725,-3,0,0 +2013,6,24,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-6,0,901,14,0,0 +2013,4,8,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,950,0,0,1120,-12,0,0 +2013,8,23,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1200,-4,0,1256,-6,0,0 +2013,4,27,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1233,-4,0,1500,-6,0,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,17,1,2155,9,0,0 +2013,6,9,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1648,-3,0,1942,-23,0,0 +2013,8,31,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,610,-12,0,1130,-4,0,0 +2013,5,18,6,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,800,-1,0,1050,-2,0,0 +2013,8,31,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1645,-4,0,1855,-24,0,0 +2013,6,2,7,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1947,5,0,110,5,0,0 +2013,9,19,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1323,18,1,1831,5,0,0 +2013,9,30,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,-1,0,1730,-15,0,0 +2013,5,22,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-1,0,1111,-3,0,0 +2013,4,11,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-7,0,720,-11,0,0 +2013,9,5,4,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1600,2,0,1843,-8,0,0 +2013,6,7,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-2,0,624,-29,0,0 +2013,6,8,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-1,0,1643,22,1,0 +2013,9,1,7,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1205,1,0,1325,4,0,0 +2013,5,2,4,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,645,-1,0,755,-15,0,0 +2013,4,23,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,21,1,1210,36,1,0 +2013,10,21,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1432,0,0,1613,14,0,0 +2013,5,8,3,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,956,34,1,1803,33,1,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,0,0,926,-11,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,9,0,2041,0,0,0 +2013,8,31,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1629,0,0,1953,-25,0,0 +2013,6,6,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1805,45,1,1930,46,1,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,83,1,1305,77,1,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,-4,0,40,1,0,0 +2013,9,15,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-8,0,959,5,0,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1210,27,1,1255,21,1,0 +2013,5,31,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1216,-5,0,1356,2,0,0 +2013,7,16,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,8,0,1850,-3,0,0 +2013,7,12,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-3,0,1107,-10,0,0 +2013,10,2,3,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1745,-1,0,2005,-3,0,0 +2013,5,9,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2022,-4,0,2205,-15,0,0 +2013,5,1,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2202,-1,0,2338,-5,0,0 +2013,10,15,2,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,925,-2,0,1207,-31,0,0 +2013,7,8,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1329,75,1,1518,75,1,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2130,13,0,2250,3,0,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1645,-2,0,1800,-10,0,0 +2013,10,8,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,855,-9,0,1029,-7,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1012,-4,0,1109,-12,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,635,0,0,955,19,1,0 +2013,9,15,7,OO,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-6,0,1957,-16,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1610,-4,0,1621,-18,0,0 +2013,8,5,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1728,-14,0,2110,-22,0,0 +2013,10,25,5,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1516,-1,0,1710,-2,0,0 +2013,6,28,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,842,270,1,943,262,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1050,7,0,1152,15,1,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1745,-4,0,2250,-29,0,0 +2013,6,6,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1948,14,0,2212,-2,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,-3,0,2110,-2,0,0 +2013,4,10,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,645,10,0,805,26,1,0 +2013,5,18,6,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,-5,0,1637,-14,0,0 +2013,4,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1325,-3,0,1450,13,0,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1854,12,0,2207,20,1,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1816,-2,0,2009,2,0,0 +2013,10,17,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1730,-2,0,1747,4,0,0 +2013,7,5,5,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1120,-4,0,1515,-15,0,0 +2013,8,20,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,2,0,920,-9,0,0 +2013,10,4,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,16,1,2125,-1,0,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,51,1,2005,38,1,0 +2013,7,29,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,-4,0,1100,-8,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,645,-3,0,950,14,0,0 +2013,8,16,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1730,20,1,2009,3,0,0 +2013,4,2,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-10,0,715,-9,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,9,0,2130,8,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,14,0,55,-1,0,0 +2013,8,10,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-8,0,807,-4,0,0 +2013,4,29,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,640,-3,0,740,-10,0,0 +2013,10,19,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-6,0,857,-12,0,0 +2013,10,4,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-9,0,812,-18,0,0 +2013,8,20,2,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-8,0,1815,-22,0,0 +2013,5,20,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,716,-4,0,905,-1,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,4,0,2010,1,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,845,3,0,1015,-8,0,0 +2013,6,28,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-2,0,609,-16,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1245,17,1,1450,10,0,0 +2013,5,28,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,6,0,2055,11,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,5,0,1125,21,1,0 +2013,6,16,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,606,-2,0,945,1,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,958,0,0,1133,-6,0,0 +2013,9,9,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,715,-3,0,1034,2,0,0 +2013,6,1,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1253,3,0,1618,-3,0,0 +2013,9,26,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1706,-5,0,2218,-24,0,0 +2013,4,16,2,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-6,0,1759,-22,0,0 +2013,8,22,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1135,-2,0,1316,6,0,0 +2013,8,14,3,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,-6,0,2226,-2,0,0 +2013,7,23,2,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1735,-4,0,2108,36,1,0 +2013,8,11,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,3,0,2250,8,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1850,14,0,2000,1,0,0 +2013,6,26,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1215,109,1,1835,107,1,0 +2013,6,25,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1559,14,0,1727,18,1,0 +2013,6,4,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,807,71,1,1105,58,1,0 +2013,6,2,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1020,6,0,1150,-11,0,0 +2013,6,14,5,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1735,6,0,1856,-2,0,0 +2013,10,16,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-1,0,1750,-9,0,0 +2013,9,19,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,748,0,0,838,12,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,915,6,0,1130,-11,0,0 +2013,6,16,7,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1050,-9,0,1914,-36,0,0 +2013,8,12,1,OO,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2105,16,1,2311,45,1,0 +2013,9,25,3,EV,13871,Eppley Airfield,Omaha,NE,12953,LaGuardia,New York,NY,702,-15,0,1059,-28,0,0 +2013,7,23,2,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1858,-7,0,2159,-21,0,0 +2013,5,30,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1005,4,0,1203,1,0,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-8,0,1336,2,0,0 +2013,7,24,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,35,1,1206,31,1,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,-5,0,1425,-14,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2129,-3,0,2248,-27,0,0 +2013,7,5,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2105,0,0,2220,1,0,0 +2013,7,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,0,0,1945,-7,0,0 +2013,6,17,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-2,0,1329,1,0,0 +2013,7,6,6,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-3,0,1030,-3,0,0 +2013,7,18,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2158,-4,0,2339,-24,0,0 +2013,9,21,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,846,1,0,1210,-29,0,0 +2013,8,26,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,640,0,0,1441,7,0,0 +2013,7,17,3,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,710,-9,0,830,-28,0,0 +2013,6,30,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1232,15,1,2040,18,1,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1300,1,0,1505,1,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1525,-1,0,1640,1,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,-5,0,1120,-17,0,0 +2013,9,5,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,837,25,1,1029,10,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,741,-6,0,1051,-4,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1205,5,0,1610,5,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-7,0,1355,-6,0,0 +2013,7,19,5,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2210,-4,0,2300,-2,0,0 +2013,6,4,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1915,11,0,1940,9,0,0 +2013,9,5,4,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,9,0,1450,3,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1645,-4,0,1905,9,0,0 +2013,8,1,4,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,805,6,0,1020,17,1,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,-1,0,1802,19,1,0 +2013,8,2,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,-6,0,2243,-25,0,0 +2013,9,27,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1733,-4,0,1743,-8,0,0 +2013,5,5,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1554,77,1,1644,81,1,0 +2013,8,28,3,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-3,0,1153,-17,0,0 +2013,4,2,2,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1224,0,0,1343,-2,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2230,-3,0,442,-17,0,0 +2013,5,9,4,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1825,8,0,1945,9,0,0 +2013,7,1,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,63,1,1956,56,1,0 +2013,7,10,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,0,0,1526,0,0,0 +2013,4,28,7,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2105,33,1,514,42,1,0 +2013,6,13,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1645,138,1,1842,155,1,0 +2013,10,27,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1834,1,0,2108,0,0,0 +2013,4,21,7,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1519,38,1,1639,56,1,0 +2013,4,25,4,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,640,1,0,748,1,0,0 +2013,9,9,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-8,0,1214,-16,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1555,33,1,1916,30,1,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1740,31,1,1955,24,1,0 +2013,9,23,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,39,1,947,35,1,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,726,-2,0,1048,-39,0,0 +2013,8,23,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,8,0,2039,2,0,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,659,-5,0,909,-24,0,0 +2013,10,4,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-3,0,1132,-4,0,0 +2013,9,18,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-3,0,801,-18,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,900,-1,0,1321,12,0,0 +2013,10,6,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1325,4,0,1450,-6,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,745,6,0,1030,7,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1040,-1,0,1251,-28,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,845,4,0,1435,-20,0,0 +2013,9,14,6,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,925,-1,0,1027,-18,0,0 +2013,5,6,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-7,0,1504,0,0,0 +2013,9,18,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-5,0,856,-4,0,0 +2013,8,12,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,10,0,1705,22,1,0 +2013,9,18,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1856,63,1,2146,58,1,0 +2013,10,3,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1545,-4,0,1701,-13,0,0 +2013,9,24,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-2,0,805,-3,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,25,1,2115,26,1,0 +2013,5,20,1,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-2,0,840,-28,0,0 +2013,7,15,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,3,0,1250,-8,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2040,9,0,2335,9,0,0 +2013,4,6,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-4,0,1855,-15,0,0 +2013,10,27,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,17,1,1358,2,0,0 +2013,10,9,3,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1655,-3,0,1823,-6,0,0 +2013,7,30,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,844,-5,0,0 +2013,6,24,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,848,-6,0,922,-4,0,0 +2013,9,6,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,13,0,1545,6,0,0 +2013,4,15,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1100,-5,0,1313,-23,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,-5,0,2240,15,1,0 +2013,8,28,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,34,1,814,26,1,0 +2013,8,8,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1955,-6,0,2204,-5,0,0 +2013,9,3,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-5,0,1057,-6,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1925,-2,0,2334,13,0,0 +2013,9,30,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,604,-6,0,730,-21,0,0 +2013,4,18,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1300,71,1,1700,47,1,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1830,8,0,2110,16,1,0 +2013,8,28,3,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1310,-1,0,1435,0,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,-5,0,2112,5,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1335,23,1,1805,27,1,0 +2013,8,26,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,-5,0,1750,-9,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1930,47,1,5,47,1,0 +2013,8,9,5,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,-8,0,535,-8,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,815,-4,0,910,-16,0,0 +2013,6,12,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,0,,1705,0,1,1 +2013,6,13,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1455,34,1,1820,96,1,0 +2013,5,18,6,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1555,0,0,1731,-11,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,740,9,0,1150,2,0,0 +2013,6,5,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,840,0,0,1120,-1,0,0 +2013,5,22,3,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2329,5,0,659,2,0,0 +2013,7,12,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1355,53,1,1739,64,1,0 +2013,6,5,3,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,0,0,1540,-15,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1840,33,1,2210,23,1,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,930,0,0,1035,-6,0,0 +2013,8,24,6,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-7,0,2005,-11,0,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1425,8,0,1530,-9,0,0 +2013,4,27,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1825,-10,0,1959,-13,0,0 +2013,6,27,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1435,-5,0,1750,-20,0,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1000,-5,0,1100,-6,0,0 +2013,4,14,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-9,0,841,-12,0,0 +2013,8,9,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,0,0,835,-6,0,0 +2013,7,21,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1255,-5,0,0 +2013,10,31,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1900,18,1,1950,17,1,0 +2013,5,29,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1008,98,1,1152,99,1,0 +2013,7,14,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,729,-4,0,0 +2013,8,25,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,-3,0,1630,-17,0,0 +2013,9,29,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1301,71,1,1655,97,1,0 +2013,8,11,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1905,15,1,2110,4,0,0 +2013,9,11,3,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-2,0,855,-7,0,0 +2013,4,17,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1310,-2,0,1405,2,0,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,14747,Seattle/Tacoma International,Seattle,WA,920,2,0,1210,-1,0,0 +2013,6,14,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,745,-2,0,905,-19,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1800,11,0,2105,9,0,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,723,-3,0,836,-7,0,0 +2013,10,21,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1759,-7,0,1853,-17,0,0 +2013,7,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,843,2,0,0 +2013,5,2,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1035,17,1,1630,5,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1608,47,1,1839,88,1,0 +2013,4,15,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,-5,0,1600,-11,0,0 +2013,7,11,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,5,0,1200,2,0,0 +2013,10,24,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-1,0,1024,-1,0,0 +2013,4,2,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1440,4,0,1603,-5,0,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-5,0,1047,1,0,0 +2013,4,16,2,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,720,-4,0,805,2,0,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2035,4,0,2159,1,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,-2,0,1303,-13,0,0 +2013,7,30,2,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1332,-3,0,1528,-5,0,0 +2013,8,25,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2042,-8,0,2158,-8,0,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,715,0,0,840,-1,0,0 +2013,7,9,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,-1,0,1920,8,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-6,0,1630,-11,0,0 +2013,8,25,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-3,0,1230,-16,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,74,1,1910,76,1,0 +2013,10,31,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,-6,0,2025,-22,0,0 +2013,8,23,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1745,29,1,1820,29,1,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1129,6,0,1352,-2,0,0 +2013,10,17,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,957,-2,0,1600,-24,0,0 +2013,8,5,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1610,23,1,1740,12,0,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,800,0,0,1045,-11,0,0 +2013,8,20,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,65,1,2035,45,1,0 +2013,5,9,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,-8,0,1350,-23,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1825,-4,0,2018,3,0,0 +2013,7,22,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1252,-2,0,1629,-20,0,0 +2013,5,25,6,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,171,1,1955,176,1,0 +2013,10,30,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1743,-9,0,0 +2013,5,28,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,-5,0,1108,22,1,0 +2013,9,23,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1822,-2,0,1924,-6,0,0 +2013,4,30,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,5,0,825,2,0,0 +2013,5,4,6,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,850,-2,0,1025,-21,0,0 +2013,6,30,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,602,-2,0,900,-7,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-1,0,800,-10,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,709,-4,0,959,10,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1620,5,0,1749,-3,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,-2,0,2015,-2,0,0 +2013,7,1,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1708,171,1,1848,161,1,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,756,-3,0,952,8,0,0 +2013,4,4,4,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,175,1,1806,190,1,0 +2013,9,26,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,951,-4,0,1316,-12,0,0 +2013,7,12,5,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2311,3,0,724,-17,0,0 +2013,5,22,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,0,0,2215,-5,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,11,0,2150,3,0,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,836,-5,0,913,-3,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,-4,0,2255,8,0,0 +2013,6,3,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,0,0,815,1,0,0 +2013,10,28,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,715,2,0,907,4,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-7,0,945,-6,0,0 +2013,10,15,2,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1223,7,0,1819,-18,0,0 +2013,9,7,6,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1150,9,0,1505,1,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-7,0,933,-10,0,0 +2013,8,2,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1415,5,0,1530,-1,0,0 +2013,7,24,3,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1020,-8,0,1245,-7,0,0 +2013,9,21,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-6,0,654,-18,0,0 +2013,10,1,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,0,0,1440,-12,0,0 +2013,8,1,4,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,925,-3,0,1132,-7,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,951,6,0,1232,0,0,0 +2013,10,30,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1530,1,0,1936,-3,0,0 +2013,10,17,4,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1505,13,0,1815,7,0,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,825,2,0,1112,27,1,0 +2013,8,17,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,730,0,0,950,-5,0,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1100,31,1,1315,22,1,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,745,-6,0,1039,-14,0,0 +2013,6,1,6,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1625,4,0,1805,-12,0,0 +2013,5,13,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1005,0,0,1252,-11,0,0 +2013,5,6,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,640,17,1,828,23,1,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,-3,0,950,-4,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1910,13,0,2225,1,0,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1922,64,1,2304,67,1,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1145,22,1,1425,14,0,0 +2013,5,7,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1135,-5,0,1305,-17,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,26,1,1631,49,1,0 +2013,10,21,1,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,635,23,1,1454,14,0,0 +2013,9,26,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,34,1,2055,42,1,0 +2013,6,7,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1525,0,0,1550,-10,0,0 +2013,4,20,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,830,50,1,1110,69,1,0 +2013,9,30,1,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1049,0,0,1830,-1,0,0 +2013,7,29,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1047,-6,0,1505,-14,0,0 +2013,9,6,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1425,-1,0,1612,-15,0,0 +2013,4,27,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,-1,0,1623,-2,0,0 +2013,10,9,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,0,0,744,-14,0,0 +2013,9,5,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1425,-4,0,1630,-15,0,0 +2013,5,1,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1643,76,1,1958,66,1,0 +2013,7,22,1,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1119,6,0,1254,7,0,0 +2013,9,15,7,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1910,36,1,2025,22,1,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1759,2,0,2115,1,0,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,-3,0,950,15,1,0 +2013,8,1,4,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2148,-4,0,555,-13,0,0 +2013,7,21,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,2002,-1,0,2109,-9,0,0 +2013,7,30,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-9,0,1538,-9,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,0,0,2037,-20,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1025,15,1,1238,7,0,0 +2013,5,31,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,6,0,1626,26,1,0 +2013,4,8,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1450,-5,0,1630,-12,0,0 +2013,9,6,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1959,27,1,2127,13,0,0 +2013,10,12,6,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,910,-5,0,1110,-27,0,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,-2,0,1005,-8,0,0 +2013,9,5,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1030,7,0,1400,11,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1755,0,0,2055,4,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1052,-2,0,1325,-11,0,0 +2013,4,19,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1250,95,1,1420,80,1,0 +2013,6,20,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,14,0,2050,9,0,0 +2013,8,13,2,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1153,44,1,2023,83,1,0 +2013,6,24,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,921,-8,0,1201,-11,0,0 +2013,9,10,2,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-8,0,947,5,0,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,10,0,1405,15,1,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,908,89,1,1152,108,1,0 +2013,8,31,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,44,1,1625,33,1,0 +2013,4,28,7,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2016,31,1,2159,24,1,0 +2013,7,29,1,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1015,-7,0,1315,-4,0,0 +2013,4,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1031,-8,0,1116,-9,0,0 +2013,7,7,7,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1935,-3,0,2159,-5,0,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1755,9,0,2305,11,0,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1511,11,0,1638,1,0,0 +2013,4,6,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1820,31,1,2035,21,1,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,-4,0,1300,-13,0,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,705,5,0,830,4,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,726,7,0,900,7,0,0 +2013,7,22,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1942,0,,2140,0,1,1 +2013,6,4,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,2,0,1135,-12,0,0 +2013,4,27,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1739,10,0,2008,-12,0,0 +2013,5,21,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1725,2,0,1849,1,0,0 +2013,8,13,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,700,-3,0,947,24,1,0 +2013,5,5,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-3,0,1029,-7,0,0 +2013,6,10,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1943,94,1,2130,69,1,0 +2013,8,28,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1320,-5,0,1551,0,0,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,3,0,1730,-2,0,0 +2013,7,12,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,2,0,800,-15,0,0 +2013,5,6,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1003,-5,0,1248,-23,0,0 +2013,8,12,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2053,-15,0,2219,0,0,0 +2013,8,21,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,800,10,0,940,-1,0,0 +2013,5,1,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,1610,-9,0,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-3,0,1010,1,0,0 +2013,6,5,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,19,1,1930,7,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1457,-3,0,1711,-19,0,0 +2013,4,8,1,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-5,0,912,-16,0,0 +2013,4,10,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,299,1,1605,299,1,0 +2013,5,23,4,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-1,0,1355,5,0,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,600,-7,0,1420,-14,0,0 +2013,4,10,3,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1450,-1,0,1627,-14,0,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1700,-5,0,2005,12,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1005,8,0,1145,24,1,0 +2013,4,23,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1044,2,0,0 +2013,4,28,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,845,-10,0,1036,-20,0,0 +2013,4,22,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,720,0,0,919,0,0,0 +2013,6,7,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,953,-3,0,1517,1,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1455,13,0,1605,26,1,0 +2013,9,3,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1230,-8,0,0 +2013,10,16,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-1,0,1525,-7,0,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,850,2,0,1025,-6,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,60,1,2329,54,1,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,736,5,0,826,6,0,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,850,-8,0,1013,-8,0,0 +2013,4,26,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,3,0,1838,-12,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,10,0,1700,6,0,0 +2013,10,13,7,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-3,0,915,1,0,0 +2013,4,12,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,13,0,1704,1,0,0 +2013,7,27,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,112,1,1405,106,1,0 +2013,10,21,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1500,-2,0,1815,-2,0,0 +2013,5,27,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1200,12,0,1325,3,0,0 +2013,4,11,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-5,0,1755,11,0,0 +2013,7,23,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,26,1,1557,15,1,0 +2013,6,26,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1555,4,0,1904,-9,0,0 +2013,9,13,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-3,0,1357,-13,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2030,-2,0,2212,-16,0,0 +2013,5,23,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1020,-1,0,1316,-11,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,2,0,2030,16,1,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,3,0,2250,4,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1215,-3,0,1320,-27,0,0 +2013,9,19,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1915,-3,0,2117,-24,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,3,0,1725,4,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1000,5,0,1115,13,0,0 +2013,7,11,4,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1903,0,,2117,0,1,1 +2013,6,26,3,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1340,42,1,1800,39,1,0 +2013,9,6,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,4,0,1407,6,0,0 +2013,8,7,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1153,-2,0,1357,4,0,0 +2013,8,20,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-6,0,1919,-15,0,0 +2013,5,20,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1700,73,1,2025,55,1,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,846,-6,0,1122,4,0,0 +2013,6,14,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-4,0,1213,-13,0,0 +2013,9,24,2,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1107,1,0,1618,-10,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,725,-2,0,819,-4,0,0 +2013,9,9,1,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,750,-1,0,1345,-9,0,0 +2013,6,4,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2200,-4,0,2304,-26,0,0 +2013,4,7,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1050,-4,0,1301,3,0,0 +2013,9,19,4,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,655,83,1,1255,186,1,0 +2013,9,22,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-9,0,1455,-16,0,0 +2013,5,18,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1450,-4,0,1755,-21,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2041,-2,0,2151,-12,0,0 +2013,4,2,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1027,-2,0,1254,-4,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,735,-9,0,1031,-17,0,0 +2013,5,17,5,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1412,-6,0,1530,18,1,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2225,-1,0,2340,-9,0,0 +2013,10,16,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1029,-5,0,1214,-5,0,0 +2013,9,29,7,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,729,3,0,846,-19,0,0 +2013,5,28,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1115,-1,0,1203,2,0,0 +2013,4,2,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,11,0,2245,11,0,0 +2013,9,29,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1610,23,1,1710,16,1,0 +2013,6,3,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1117,16,1,1302,-10,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-3,0,1232,-6,0,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,5,0,1510,12,0,0 +2013,5,16,4,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,-4,0,2359,-16,0,0 +2013,4,10,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,945,-9,0,1031,-15,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1217,4,0,1455,-12,0,0 +2013,4,2,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-4,0,1910,-18,0,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,9,0,1420,2,0,0 +2013,7,17,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1428,1,0,1626,-12,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2040,15,1,2340,3,0,0 +2013,9,28,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-3,0,1508,0,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1535,2,0,1815,-16,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,49,1,1455,56,1,0 +2013,6,20,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1630,-2,0,1910,-11,0,0 +2013,6,26,3,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,625,-4,0,808,-15,0,0 +2013,6,15,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-7,0,735,-11,0,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2110,25,1,2225,23,1,0 +2013,7,12,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1535,-2,0,2105,-7,0,0 +2013,10,12,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,804,5,0,1109,-5,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1100,-2,0,1820,2,0,0 +2013,5,13,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,-6,0,1019,-11,0,0 +2013,5,25,6,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,2,0,931,2,0,0 +2013,8,21,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-3,0,1056,-5,0,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1735,12,0,1944,1,0,0 +2013,8,8,4,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1420,0,0,1751,-10,0,0 +2013,10,15,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-2,0,1700,-9,0,0 +2013,10,22,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1125,-10,0,1259,2,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1719,14,0,1829,21,1,0 +2013,10,24,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1455,-3,0,1759,4,0,0 +2013,8,1,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-1,0,945,3,0,0 +2013,6,24,1,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,708,0,0,1015,52,1,0 +2013,5,11,6,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1337,0,0,1614,-5,0,0 +2013,6,11,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1005,-1,0,1245,-7,0,0 +2013,4,7,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,-2,0,2102,-5,0,0 +2013,9,10,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,-12,0,2125,-7,0,0 +2013,6,27,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,5,0,1912,12,0,0 +2013,4,20,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,715,-6,0,825,-15,0,0 +2013,5,31,5,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1610,-5,0,1740,-11,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-5,0,1745,8,0,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1352,-3,0,1459,-16,0,0 +2013,9,15,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,640,-5,0,915,-9,0,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,2025,80,1,2340,65,1,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,0,0,2350,-13,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,42,1,1100,36,1,0 +2013,5,12,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1113,-10,0,1445,-6,0,0 +2013,6,6,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2000,4,0,2115,-13,0,0 +2013,8,30,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1050,-10,0,1220,-19,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1142,10,0,1334,27,1,0 +2013,8,16,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,78,1,1205,75,1,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,1,0,650,-7,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2210,13,0,2330,12,0,0 +2013,9,12,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,25,1,1648,52,1,0 +2013,5,8,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1355,-3,0,1643,-7,0,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1118,2,0,1310,-17,0,0 +2013,4,3,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,920,-3,0,1715,-12,0,0 +2013,10,29,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1334,5,0,1925,-23,0,0 +2013,9,25,3,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,26,1,2159,-20,0,0 +2013,7,18,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1656,-2,0,1831,-12,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1434,211,1,1620,230,1,0 +2013,5,22,3,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2205,0,,2252,0,1,1 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1600,-2,0,2310,8,0,0 +2013,8,2,5,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-7,0,1625,-29,0,0 +2013,6,14,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,83,1,1210,76,1,0 +2013,9,16,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1710,0,0,1850,-16,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,730,-5,0,1300,-21,0,0 +2013,8,4,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1610,-9,0,0 +2013,10,4,5,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,22,1,1918,8,0,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2130,93,1,2245,79,1,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1629,7,0,1739,5,0,0 +2013,5,20,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-4,0,1148,-8,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,19,1,2230,14,0,0 +2013,6,5,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,20,1,2032,32,1,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,905,0,0,1420,26,1,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1320,2,0,1445,9,0,0 +2013,9,29,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,-6,0,1310,-21,0,0 +2013,7,16,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1514,7,0,1644,2,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1505,0,0,1653,-16,0,0 +2013,7,1,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,645,-5,0,1435,-17,0,0 +2013,6,14,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1031,-1,0,1350,-22,0,0 +2013,6,3,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,30,1,1935,24,1,0 +2013,8,22,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1706,-9,0,1838,45,1,0 +2013,9,2,1,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-8,0,608,0,0,0 +2013,6,8,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-3,0,1850,3,0,0 +2013,6,24,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1135,51,1,1259,66,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-5,0,1325,-12,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1430,-1,0,1624,-9,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1805,53,1,2022,33,1,0 +2013,10,2,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,18,1,1945,9,0,0 +2013,10,9,3,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,-2,0,2205,-8,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,2155,160,1,2312,154,1,0 +2013,8,12,1,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,68,1,1821,60,1,0 +2013,7,5,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1851,-5,0,2057,3,0,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1500,-3,0,1609,-4,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1249,-3,0,2059,-11,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1149,-8,0,1400,-9,0,0 +2013,5,29,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1750,21,1,1935,12,0,0 +2013,9,19,4,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-7,0,1044,-5,0,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1450,-7,0,1637,-30,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1105,27,1,1323,3,0,0 +2013,7,31,3,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,12,0,745,-6,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,-2,0,1240,-6,0,0 +2013,8,2,5,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,65,1,1340,53,1,0 +2013,8,30,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,610,-8,0,930,-17,0,0 +2013,5,16,4,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-3,0,1910,-25,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1650,40,1,2045,53,1,0 +2013,7,4,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-5,0,726,-8,0,0 +2013,9,6,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,9,0,1625,9,0,0 +2013,7,30,2,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1710,3,0,1835,2,0,0 +2013,5,2,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1055,-1,0,1505,7,0,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2210,-2,0,2327,-6,0,0 +2013,8,25,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-5,0,2015,-10,0,0 +2013,10,30,3,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-2,0,2250,-4,0,0 +2013,7,15,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-1,0,2205,-21,0,0 +2013,9,1,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1625,-5,0,1833,-45,0,0 +2013,10,30,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,-1,0,1928,-9,0,0 +2013,9,8,7,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1059,-7,0,1349,-18,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1630,-1,0,1906,-30,0,0 +2013,7,3,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,80,1,1824,103,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1235,10,0,1435,0,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-6,0,1155,-11,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,820,-6,0,945,-16,0,0 +2013,8,24,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,905,-2,0,1020,-17,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,7,0,1609,7,0,0 +2013,6,6,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,622,-10,0,750,-9,0,0 +2013,8,27,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1400,0,0,1425,-3,0,0 +2013,10,24,4,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,950,113,1,1302,98,1,0 +2013,5,12,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,-6,0,1217,17,1,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2030,-5,0,2145,-8,0,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,630,-4,0,725,-8,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,24,1,2135,11,0,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1415,-1,0,1547,4,0,0 +2013,6,14,5,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,59,1,525,59,1,0 +2013,9,30,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,-3,0,1558,3,0,0 +2013,6,24,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,730,-2,0,820,13,0,0 +2013,4,25,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,810,-3,0,945,-15,0,0 +2013,4,14,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1210,14,0,1335,1,0,0 +2013,4,15,1,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1235,15,1,1450,2,0,0 +2013,6,12,3,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1817,9,0,2108,-10,0,0 +2013,4,15,1,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,1310,-3,0,1735,-6,0,0 +2013,5,8,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1557,40,1,1914,0,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1030,-5,0,1135,-13,0,0 +2013,8,16,5,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2152,-2,0,2314,-7,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1355,0,0,1715,-29,0,0 +2013,10,27,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1540,137,1,1705,137,1,0 +2013,8,16,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1935,20,1,2005,9,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,729,-2,0,750,-18,0,0 +2013,5,17,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,715,0,0,850,-5,0,0 +2013,10,18,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1550,49,1,1825,49,1,0 +2013,6,2,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1538,-12,0,1613,-25,0,0 +2013,6,10,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,-3,0,1633,2,0,0 +2013,6,15,6,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1235,-2,0,1540,-11,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,19,1,2126,9,0,0 +2013,8,29,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,68,1,924,63,1,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1610,0,0,1735,-14,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,721,-6,0,1113,-15,0,0 +2013,6,3,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1745,-4,0,2010,4,0,0 +2013,8,9,5,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,11,0,1820,0,0,0 +2013,4,16,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,914,-5,0,1126,8,0,0 +2013,5,30,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-8,0,1114,-15,0,0 +2013,5,12,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,-6,0,1300,8,0,0 +2013,10,3,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1700,75,1,1800,70,1,0 +2013,9,24,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,12,0,1830,7,0,0 +2013,8,4,7,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1735,-5,0,2030,42,1,0 +2013,6,15,6,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,1,0,730,4,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,3,0,1750,-2,0,0 +2013,6,30,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-2,0,1010,3,0,0 +2013,9,11,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1040,-4,0,1131,7,0,0 +2013,9,2,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,-2,0,2013,-12,0,0 +2013,9,5,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-7,0,1008,-14,0,0 +2013,5,24,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1730,6,0,1935,-5,0,0 +2013,4,6,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1835,-4,0,2000,-8,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,2030,83,1,35,71,1,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1555,-6,0,1650,-13,0,0 +2013,5,16,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1114,0,0,1349,-11,0,0 +2013,6,28,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,905,0,,1249,0,1,1 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1024,0,0,1413,9,0,0 +2013,4,30,2,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2255,-5,0,725,9,0,0 +2013,8,14,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,-10,0,833,-17,0,0 +2013,6,13,4,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,3,0,1122,11,0,0 +2013,5,16,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-2,0,1549,-20,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1300,0,0,1730,0,0,0 +2013,9,10,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,-6,0,1627,-16,0,0 +2013,9,19,4,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1048,237,1,1220,250,1,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,816,28,1,1017,44,1,0 +2013,4,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1130,-8,0,1158,-16,0,0 +2013,5,11,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-3,0,830,12,0,0 +2013,9,12,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1656,31,1,1820,22,1,0 +2013,7,14,7,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1641,42,1,1821,32,1,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,940,36,1,1055,33,1,0 +2013,10,23,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-9,0,740,-13,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,1,0,1146,12,0,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1735,0,0,2100,-13,0,0 +2013,4,22,1,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1113,6,0,1830,-9,0,0 +2013,7,12,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1545,25,1,1710,20,1,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1500,-1,0,1745,5,0,0 +2013,6,16,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,900,2,0,1105,3,0,0 +2013,9,9,1,OO,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1805,-8,0,1953,-2,0,0 +2013,4,11,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1220,-2,0,1350,1,0,0 +2013,7,6,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-12,0,2257,-7,0,0 +2013,7,1,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,46,30,1,855,51,1,0 +2013,5,30,4,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2359,-11,0,249,-20,0,0 +2013,7,22,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,28,1,1645,25,1,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-2,0,1114,-13,0,0 +2013,6,17,1,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,15,1,950,35,1,0 +2013,6,5,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-6,0,1505,-15,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1523,66,1,1716,49,1,0 +2013,10,31,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,0,,935,0,1,1 +2013,8,13,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,4,0,1827,1,0,0 +2013,4,7,7,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1855,2,0,2010,0,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1315,102,1,1405,101,1,0 +2013,8,12,1,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1600,1,0,1825,-7,0,0 +2013,8,23,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1530,-6,0,1648,-12,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-1,0,826,13,0,0 +2013,5,13,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,1020,-4,0,0 +2013,8,18,7,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,-1,0,550,-7,0,0 +2013,6,21,5,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-4,0,1206,-15,0,0 +2013,7,9,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1040,-9,0,1208,-22,0,0 +2013,6,9,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1015,-7,0,1305,-22,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1726,45,1,1739,58,1,0 +2013,10,15,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,2,0,1444,2,0,0 +2013,6,9,7,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1409,-1,0,1619,-16,0,0 +2013,9,26,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1050,-4,0,1225,-18,0,0 +2013,5,26,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1242,-23,0,0 +2013,7,16,2,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-1,0,1645,-6,0,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1730,1,0,1835,-3,0,0 +2013,4,19,5,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1040,1158,1,1310,1172,1,0 +2013,5,21,2,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,745,-4,0,1615,6,0,0 +2013,9,11,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-1,0,849,18,1,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1847,-5,0,18,-10,0,0 +2013,7,13,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1107,0,0,1419,-4,0,0 +2013,5,31,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2040,-4,0,2150,-14,0,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,820,-4,0,1130,-10,0,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,10,0,913,-2,0,0 +2013,8,20,2,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1905,0,0,2056,-13,0,0 +2013,5,18,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-3,0,1251,9,0,0 +2013,6,7,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-1,0,1759,4,0,0 +2013,4,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1125,0,,1338,0,1,1 +2013,8,19,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,0,0,2112,-7,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2020,257,1,2225,251,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1526,4,0,1654,-6,0,0 +2013,9,13,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1050,11,0,1140,15,1,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,725,10,0,845,10,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1715,7,0,2230,-3,0,0 +2013,9,15,7,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1259,0,0,1412,2,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1232,5,0,1458,9,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-4,0,1310,-10,0,0 +2013,6,3,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-1,0,1159,-4,0,0 +2013,9,22,7,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1550,1,0,1725,1,0,0 +2013,10,26,6,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,4,0,1235,11,0,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1800,38,1,1910,31,1,0 +2013,10,28,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,55,2,0,905,-31,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-5,0,1807,-8,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,35,1,1750,23,1,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,-6,0,1053,-5,0,0 +2013,5,2,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1251,-4,0,1845,-1,0,0 +2013,6,13,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,812,2,0,0 +2013,6,11,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,114,15,1,629,2,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-3,0,1612,-4,0,0 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,815,-1,0,1105,-24,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1744,-4,0,1920,-11,0,0 +2013,8,18,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,20,1,2040,12,0,0 +2013,4,1,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,835,6,0,930,3,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,745,2,0,855,-1,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-4,0,2110,-2,0,0 +2013,10,7,1,EV,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,124,1,925,128,1,0 +2013,4,29,1,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1745,-4,0,1910,-11,0,0 +2013,9,26,4,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1743,-1,0,1910,9,0,0 +2013,4,11,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-8,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1100,6,0,1337,-13,0,0 +2013,6,25,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,2,0,1655,-3,0,0 +2013,9,15,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,10,0,1322,-1,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1555,1,0,2155,-17,0,0 +2013,4,1,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2045,-6,0,2108,-5,0,0 +2013,5,21,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2018,-8,0,2300,-19,0,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2214,-3,0,2244,-4,0,0 +2013,8,14,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,835,-8,0,1440,4,0,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1946,14,0,2242,11,0,0 +2013,5,30,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,630,-5,0,803,16,1,0 +2013,8,9,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,911,-4,0,1043,-7,0,0 +2013,8,21,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2057,14,0,450,4,0,0 +2013,6,25,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,735,-13,0,0 +2013,10,7,1,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1311,29,1,2105,26,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1031,-3,0,1056,-14,0,0 +2013,8,24,6,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1200,17,1,1457,3,0,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1826,29,1,2056,27,1,0 +2013,4,16,2,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,635,-4,0,1455,-22,0,0 +2013,5,9,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-7,0,1408,-14,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1838,3,0,2033,-6,0,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1246,-1,0,1514,-14,0,0 +2013,9,10,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-5,0,1039,16,1,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,830,27,1,1415,9,0,0 +2013,6,19,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,819,10,0,1210,-5,0,0 +2013,10,8,2,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1625,-1,0,1655,-13,0,0 +2013,9,30,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-4,0,1742,-20,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1610,-3,0,1820,1,0,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,-8,0,2223,-10,0,0 +2013,9,7,6,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1035,0,0,1120,-8,0,0 +2013,5,6,1,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,82,1,2206,75,1,0 +2013,5,18,6,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-5,0,1803,-5,0,0 +2013,9,5,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,907,40,1,957,36,1,0 +2013,8,29,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,-10,0,930,-1,0,0 +2013,9,13,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1116,1,0,1435,-7,0,0 +2013,4,28,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1610,-7,0,1640,-15,0,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-1,0,904,4,0,0 +2013,6,18,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-5,0,1017,-3,0,0 +2013,6,18,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2035,59,1,2045,50,1,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,925,5,0,1806,-18,0,0 +2013,9,21,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,930,-1,0,1305,-43,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1042,1,0,1922,0,0,0 +2013,4,15,1,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2324,5,0,540,-9,0,0 +2013,5,25,6,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,927,-7,0,1200,-17,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,805,12,0,855,9,0,0 +2013,5,26,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,-11,0,2229,-29,0,0 +2013,5,29,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-5,0,2134,-4,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1924,1,0,2042,2,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1148,-3,0,1427,-9,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1115,12,0,1740,-4,0,0 +2013,4,25,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,0,0,1800,-15,0,0 +2013,8,28,3,YV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1219,11,0,1351,37,1,0 +2013,9,19,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,0,0,1944,3,0,0 +2013,5,29,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1810,-10,0,1922,-12,0,0 +2013,7,22,1,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1520,-9,0,2328,-14,0,0 +2013,10,13,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,11,0,1730,13,0,0 +2013,6,9,7,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-10,0,1209,-23,0,0 +2013,5,15,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,-1,0,1806,-3,0,0 +2013,7,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,850,8,0,1055,0,0,0 +2013,8,15,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-9,0,1256,-12,0,0 +2013,10,7,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,-4,0,947,-18,0,0 +2013,8,10,6,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2135,-9,0,7,-22,0,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2045,0,0,505,-19,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1923,-1,0,2240,-7,0,0 +2013,6,12,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-1,0,1553,6,0,0 +2013,7,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-7,0,929,-17,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2205,-1,0,2300,3,0,0 +2013,8,15,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,620,-3,0,717,-2,0,0 +2013,7,29,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1641,-1,0,1941,1,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1801,0,0,1934,-9,0,0 +2013,8,16,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,735,-10,0,828,-3,0,0 +2013,9,15,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1100,8,0,1355,7,0,0 +2013,7,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1300,33,1,1425,35,1,0 +2013,4,12,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1200,60,1,1245,57,1,0 +2013,4,4,4,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1422,1,0,1723,5,0,0 +2013,9,12,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,7,0,2055,0,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,12,0,1755,5,0,0 +2013,8,21,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1529,51,1,1810,55,1,0 +2013,8,20,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,630,6,0,1235,17,1,0 +2013,7,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,55,1,1252,50,1,0 +2013,4,24,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1520,8,0,1635,1,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,849,0,0,1028,24,1,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1835,19,1,2159,9,0,0 +2013,5,19,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,847,-8,0,1023,-13,0,0 +2013,7,6,6,OO,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,746,0,0,905,-10,0,0 +2013,8,25,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-4,0,914,-12,0,0 +2013,7,27,6,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1310,52,1,1659,50,1,0 +2013,5,25,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,838,-7,0,1110,-18,0,0 +2013,5,25,6,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,-4,0,1409,-12,0,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,934,5,0,1249,6,0,0 +2013,5,27,1,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-3,0,1523,2,0,0 +2013,10,7,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,19,1,1740,16,1,0 +2013,5,8,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-14,0,920,-18,0,0 +2013,10,16,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-5,0,809,-4,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2110,78,1,2222,58,1,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,-3,0,1920,6,0,0 +2013,9,18,3,9E,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,720,-4,0,1051,-26,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,8,0,1149,10,0,0 +2013,9,8,7,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1710,-5,0,1930,-39,0,0 +2013,4,19,5,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1026,118,1,1325,121,1,0 +2013,10,9,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-9,0,1315,4,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1311,-2,0,1456,-19,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1540,72,1,1800,70,1,0 +2013,6,2,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-11,0,1725,-27,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1039,13,0,1216,19,1,0 +2013,5,21,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,628,29,1,917,1,0,0 +2013,4,19,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,715,-5,0,913,2,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,24,1,1520,8,0,0 +2013,8,31,6,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1325,-6,0,1518,-34,0,0 +2013,4,21,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1035,1,0,1145,-1,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,810,-1,0,1110,-12,0,0 +2013,7,16,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,530,-8,0,740,-19,0,0 +2013,10,15,2,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,720,280,1,850,291,1,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2000,39,1,2317,30,1,0 +2013,10,3,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1027,-1,0,1153,-4,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,3,0,1550,-7,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,715,-4,0,955,-18,0,0 +2013,10,11,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1625,-4,0,1800,-8,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1246,-7,0,1556,-26,0,0 +2013,9,15,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,937,-6,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1245,42,1,1505,39,1,0 +2013,6,11,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1401,42,1,1530,36,1,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,931,-5,0,1759,-3,0,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-3,0,1039,-7,0,0 +2013,7,18,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-6,0,800,-7,0,0 +2013,10,12,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1100,-5,0,1245,-5,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1450,19,1,2337,30,1,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2120,77,1,2358,46,1,0 +2013,9,11,3,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1430,8,0,1515,4,0,0 +2013,8,7,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1835,106,1,2148,202,1,0 +2013,4,16,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1521,16,1,1628,18,1,0 +2013,7,9,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,14,0,1455,9,0,0 +2013,7,21,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,13,0,1800,0,0,0 +2013,4,14,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-6,0,1425,19,1,0 +2013,8,3,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,14,0,1844,13,0,0 +2013,5,17,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,21,1,1615,15,1,0 +2013,9,25,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,-1,0,805,-2,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1459,-7,0,1657,-10,0,0 +2013,6,26,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,10,0,1655,34,1,0 +2013,6,29,6,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,845,-2,0,1026,-18,0,0 +2013,8,27,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,0,0,1240,3,0,0 +2013,5,30,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1012,-10,0,1315,-22,0,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-3,0,1300,-33,0,0 +2013,8,13,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-1,0,1820,69,1,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,-1,0,1933,-12,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,-3,0,21,-2,0,0 +2013,10,2,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1055,-1,0,1210,-5,0,0 +2013,5,12,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1406,2,0,1631,7,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1832,-2,0,2315,-16,0,0 +2013,10,5,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-5,0,1459,6,0,0 +2013,6,10,1,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,700,-3,0,949,3,0,0 +2013,10,16,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1745,-9,0,2003,-12,0,0 +2013,5,17,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-2,0,1156,-5,0,0 +2013,7,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1140,-1,0,1805,6,0,0 +2013,10,26,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2225,-3,0,2325,-11,0,0 +2013,4,23,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-2,0,1413,-15,0,0 +2013,9,13,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,46,1,2025,37,1,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-10,0,1053,-25,0,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,0,0,1235,11,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1320,3,0,1636,15,1,0 +2013,6,3,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-3,0,2005,-9,0,0 +2013,10,20,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1955,0,0,2159,-2,0,0 +2013,4,6,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1505,18,1,1640,16,1,0 +2013,4,22,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,9,0,2350,-5,0,0 +2013,8,12,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1742,2,0,1846,1,0,0 +2013,6,19,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,-2,0,2110,4,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,1,0,2141,0,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,920,16,1,1015,4,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1926,32,1,2218,20,1,0 +2013,10,3,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,-6,0,1513,-3,0,0 +2013,5,1,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-4,0,931,-16,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2220,-4,0,105,0,0,0 +2013,4,20,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1507,17,1,1650,6,0,0 +2013,7,28,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1846,11,0,0 +2013,9,30,1,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1415,-2,0,1715,-20,0,0 +2013,5,15,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1355,-5,0,1542,-17,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1146,2,0,1423,9,0,0 +2013,10,13,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,0,0,1819,13,0,0 +2013,9,10,2,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1148,-9,0,1412,-17,0,0 +2013,8,21,3,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1653,16,1,1752,8,0,0 +2013,6,6,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1100,-4,0,1151,-4,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1930,7,0,2150,33,1,0 +2013,7,31,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1635,-5,0,1649,2,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1800,63,1,2101,90,1,0 +2013,5,25,6,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,-4,0,1530,-7,0,0 +2013,10,24,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,630,-7,0,0 +2013,5,30,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,2,0,2125,-2,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,24,1,1640,6,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1615,-1,0,1706,3,0,0 +2013,4,7,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,700,-1,0,930,-4,0,0 +2013,4,10,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,5,0,1905,65,1,0 +2013,8,23,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1300,-2,0,1415,-7,0,0 +2013,6,18,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,815,32,1,1319,4,0,0 +2013,9,12,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1645,5,0,1750,2,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1215,-2,0,1346,-5,0,0 +2013,8,9,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1730,2,0,1825,3,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,2055,0,0,2235,-6,0,0 +2013,10,7,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,-1,0,1631,40,1,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2005,-5,0,2137,9,0,0 +2013,5,6,1,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1728,-4,0,1810,-15,0,0 +2013,7,2,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1425,30,1,1615,13,0,0 +2013,6,18,2,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,1,0,920,6,0,0 +2013,8,24,6,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,-2,0,1350,2,0,0 +2013,9,5,4,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1344,-8,0,1554,-10,0,0 +2013,9,4,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,745,-7,0,1020,-13,0,0 +2013,9,18,3,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2233,42,1,2345,38,1,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-1,0,1804,10,0,0 +2013,9,24,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,700,-5,0,818,-11,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1950,1,0,2305,-2,0,0 +2013,9,15,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1020,69,1,1105,70,1,0 +2013,5,11,6,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,0,0,2145,-28,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1300,62,1,1400,57,1,0 +2013,7,24,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1254,8,0,1543,-12,0,0 +2013,9,10,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,700,37,1,740,28,1,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1305,9,0,2000,6,0,0 +2013,10,1,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1455,2,0,1548,-2,0,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,-7,0,1511,-15,0,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-9,0,1458,-18,0,0 +2013,4,2,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1633,-5,0,1845,-24,0,0 +2013,10,9,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1920,21,1,2010,6,0,0 +2013,9,3,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-6,0,1425,-7,0,0 +2013,10,23,3,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1819,16,1,1930,16,1,0 +2013,7,7,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,4,0,1915,4,0,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-6,0,1809,-10,0,0 +2013,6,24,1,9E,13244,Memphis International,Memphis,TN,11066,Port Columbus International,Columbus,OH,1438,-9,0,1720,2,0,0 +2013,7,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1409,-4,0,2030,17,1,0 +2013,5,12,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-5,0,645,-14,0,0 +2013,4,5,5,WN,13931,Norfolk International,Norfolk,VA,15304,Tampa International,Tampa,FL,905,-5,0,1110,19,1,0 +2013,6,8,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1543,33,1,1809,4,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1320,-2,0,1800,-34,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,-5,0,2105,-11,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-5,0,1433,-22,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,-5,0,1922,-12,0,0 +2013,5,5,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1720,-5,0,1945,-5,0,0 +2013,5,3,5,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1710,-7,0,1858,-18,0,0 +2013,7,22,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,53,1,2041,86,1,0 +2013,6,20,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1800,-6,0,2035,-15,0,0 +2013,4,3,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1525,0,0,1635,-3,0,0 +2013,6,18,2,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2030,29,1,2115,38,1,0 +2013,9,9,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-1,0,725,-8,0,0 +2013,9,13,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2010,19,1,2230,21,1,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1710,42,1,2025,36,1,0 +2013,5,8,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,0,0,520,7,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,-5,0,1554,-5,0,0 +2013,10,23,3,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,925,-8,0,1207,1,0,0 +2013,5,30,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,2005,1,0,2110,-1,0,0 +2013,4,1,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1553,55,1,6,24,1,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2104,2,0,2349,-3,0,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1505,-3,0,1822,-22,0,0 +2013,7,17,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,839,-10,0,1004,-20,0,0 +2013,5,23,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,78,1,1135,85,1,0 +2013,9,30,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,859,-4,0,1047,-6,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,818,26,1,1029,35,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,0,,945,0,1,1 +2013,5,25,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1002,54,1,1320,32,1,0 +2013,7,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,2020,-7,0,2214,-1,0,0 +2013,7,25,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,705,-2,0,935,1,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1745,-1,0,1757,-21,0,0 +2013,7,20,6,OO,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,15,1,1722,17,1,0 +2013,9,14,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,944,-10,0,1125,-17,0,0 +2013,6,20,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-1,0,1943,-6,0,0 +2013,9,7,6,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,705,0,0,830,-6,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1010,-5,0,1117,-8,0,0 +2013,9,5,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,44,1,1913,17,1,0 +2013,9,4,3,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-2,0,1226,-12,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,8,0,1015,-1,0,0 +2013,6,19,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,37,1,1908,25,1,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1740,140,1,1945,132,1,0 +2013,7,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1035,13,0,1355,3,0,0 +2013,9,2,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1806,-10,0,2050,-11,0,0 +2013,9,26,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,721,-9,0,0 +2013,10,20,7,9E,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,-7,0,1424,-5,0,0 +2013,8,18,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,-3,0,1740,-28,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1650,3,0,2105,-14,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,2000,-4,0,2157,-10,0,0 +2013,6,6,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-2,0,1750,-6,0,0 +2013,4,4,4,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,800,-1,0,915,-15,0,0 +2013,6,20,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,3,0,1010,12,0,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,138,1,2246,134,1,0 +2013,10,1,2,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,5,0,729,1,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,23,1,110,22,1,0 +2013,10,8,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1425,4,0,2300,9,0,0 +2013,9,8,7,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1731,3,0,1810,2,0,0 +2013,5,18,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,955,6,0,1209,-15,0,0 +2013,4,13,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,-2,0,1830,-17,0,0 +2013,8,7,3,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1138,197,1,1228,195,1,0 +2013,9,29,7,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1205,-3,0,1255,-2,0,0 +2013,6,16,7,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,-1,0,1155,-24,0,0 +2013,10,31,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1442,-3,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,-4,0,1335,-21,0,0 +2013,4,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1341,37,1,1646,32,1,0 +2013,5,9,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1754,-3,0,1931,-3,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1810,-3,0,2054,-16,0,0 +2013,9,27,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1205,-10,0,1329,-7,0,0 +2013,6,25,2,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1820,1,0,2005,-9,0,0 +2013,7,1,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1700,30,1,1910,21,1,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1956,17,1,2108,16,1,0 +2013,7,3,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-9,0,945,-7,0,0 +2013,7,9,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1534,114,1,2215,116,1,0 +2013,9,18,3,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,750,-4,0,1345,-12,0,0 +2013,8,17,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,759,-8,0,1105,-22,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1725,3,0,2135,5,0,0 +2013,6,25,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2050,48,1,2205,52,1,0 +2013,9,8,7,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,21,1,1359,9,0,0 +2013,9,6,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,2,0,2110,-7,0,0 +2013,10,8,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1550,0,0,1735,-18,0,0 +2013,7,15,1,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1035,-6,0,1405,-5,0,0 +2013,4,16,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,-4,0,1335,-16,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1743,1,0,2058,0,0,0 +2013,7,5,5,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1130,61,1,1345,51,1,0 +2013,10,16,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1544,1,0,2359,-29,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,47,1,1555,52,1,0 +2013,9,1,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,818,26,1,1117,18,1,0 +2013,10,25,5,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1034,-2,0,1418,-16,0,0 +2013,10,1,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-1,0,1055,20,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,826,-3,0,913,-18,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1448,13,0,1745,-25,0,0 +2013,9,13,5,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,702,-8,0,920,-10,0,0 +2013,4,9,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,27,1,1910,19,1,0 +2013,7,21,7,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1350,59,1,1945,51,1,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,745,-1,0,1010,-1,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,23,1,1140,9,0,0 +2013,5,20,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1630,29,1,1815,25,1,0 +2013,8,6,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,935,-1,0,1055,1,0,0 +2013,9,7,6,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-1,0,907,7,0,0 +2013,10,24,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-8,0,1016,-11,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2025,203,1,2325,193,1,0 +2013,6,9,7,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,6,0,2120,-3,0,0 +2013,7,3,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1225,3,0,1345,-19,0,0 +2013,5,14,2,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1845,-7,0,2155,-33,0,0 +2013,8,2,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,931,-27,0,0 +2013,10,9,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1300,-4,0,1423,-12,0,0 +2013,6,20,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,639,-7,0,935,-18,0,0 +2013,6,3,1,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,905,-7,0,0 +2013,4,8,1,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,615,-4,0,830,-11,0,0 +2013,7,13,6,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,-5,0,1655,7,0,0 +2013,10,16,3,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-1,0,1029,-12,0,0 +2013,4,25,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,600,-7,0,850,-17,0,0 +2013,5,2,4,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1014,0,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1755,31,1,2005,22,1,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,5,0,1621,-13,0,0 +2013,5,7,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,7,0,1802,-25,0,0 +2013,9,16,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1525,3,0,1645,0,0,0 +2013,4,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-6,0,1418,-13,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,-1,0,1435,-6,0,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1200,19,1,1735,21,1,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,5,0,1709,16,1,0 +2013,10,20,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-6,0,1748,-12,0,0 +2013,7,6,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1254,14,0,1552,29,1,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,2,0,2226,-11,0,0 +2013,7,3,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-10,0,1239,-36,0,0 +2013,9,20,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,1,0,1949,0,0,0 +2013,7,18,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1415,-5,0,1645,-26,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1035,51,1,1200,36,1,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,915,0,0,1025,-6,0,0 +2013,9,26,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,10,0,1640,15,1,0 +2013,5,15,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1915,-7,0,2107,-8,0,0 +2013,4,14,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,41,1,1935,33,1,0 +2013,5,3,5,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-4,0,540,19,1,0 +2013,10,7,1,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1800,130,1,2016,106,1,0 +2013,5,8,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1145,95,1,1429,94,1,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-1,0,940,-11,0,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,0,0,1409,-6,0,0 +2013,10,31,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1602,-9,0,1720,-17,0,0 +2013,9,15,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1209,-1,0,1446,-20,0,0 +2013,4,6,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1135,-1,0,1428,-15,0,0 +2013,5,15,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1555,-1,0,1833,-3,0,0 +2013,7,31,3,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,0,0,2010,6,0,0 +2013,10,25,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2040,16,1,452,12,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,615,0,0,730,-10,0,0 +2013,5,3,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,-3,0,1523,10,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,68,1,2340,55,1,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-7,0,915,6,0,0 +2013,6,30,7,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,6,0,1711,36,1,0 +2013,5,1,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1742,-8,0,1913,13,0,0 +2013,4,16,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,955,-8,0,1140,4,0,0 +2013,9,8,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-7,0,1835,-10,0,0 +2013,5,16,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1420,0,0,1559,13,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2200,-2,0,2322,-9,0,0 +2013,4,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-10,0,845,1,0,0 +2013,8,14,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-4,0,727,-11,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-7,0,849,-25,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,837,0,0,1650,-16,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,643,-6,0,849,-14,0,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-3,0,824,7,0,0 +2013,10,7,1,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,822,0,0,1615,0,0,0 +2013,6,10,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1212,145,1,1331,146,1,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1215,-2,0,1450,-20,0,0 +2013,10,7,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-12,0,900,-7,0,0 +2013,5,24,5,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,18,1,1855,14,0,0 +2013,6,9,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,9,0,1741,11,0,0 +2013,10,25,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1908,8,0,2023,8,0,0 +2013,9,29,7,OO,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,850,-3,0,1042,-5,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,2,0,1440,-4,0,0 +2013,7,28,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2235,-2,0,653,-4,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2015,-3,0,2123,7,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-1,0,2300,-3,0,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1220,40,1,1525,76,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2259,4,0,11,1,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1745,-6,0,1851,-11,0,0 +2013,9,4,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,2,0,1725,-19,0,0 +2013,4,11,4,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1431,16,1,1544,29,1,0 +2013,4,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2000,86,1,2120,72,1,0 +2013,5,16,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1341,75,1,1542,78,1,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1435,27,1,1610,22,1,0 +2013,5,31,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1210,-5,0,1616,-16,0,0 +2013,4,19,5,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1805,-5,0,2044,1,0,0 +2013,10,25,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-1,0,1420,2,0,0 +2013,6,14,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,10,0,1459,27,1,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,9,0,1140,9,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-3,0,1630,-19,0,0 +2013,6,23,7,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1712,2,0,1820,2,0,0 +2013,5,17,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-14,0,1005,-7,0,0 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2045,-11,0,2224,-14,0,0 +2013,6,25,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-6,0,1645,-11,0,0 +2013,6,28,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2205,12,0,10,44,1,0 +2013,6,27,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,28,1,1641,21,1,0 +2013,6,19,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,0,0,1740,-19,0,0 +2013,10,20,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1720,-5,0,1833,-9,0,0 +2013,8,20,2,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1351,63,1,1925,63,1,0 +2013,4,4,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-7,0,1355,-10,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1620,0,0,1745,-8,0,0 +2013,8,6,2,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,745,-1,0,920,-13,0,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,2,0,2125,-5,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1325,0,0,1425,-2,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,71,1,922,67,1,0 +2013,4,25,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2040,-1,0,2210,-6,0,0 +2013,10,8,2,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,-14,0,1611,-35,0,0 +2013,6,25,2,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,2335,-10,0,641,-20,0,0 +2013,10,12,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-8,0,1907,-12,0,0 +2013,10,13,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1500,6,0,2256,12,0,0 +2013,8,9,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,-7,0,1440,-14,0,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,820,0,0,1005,26,1,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1429,-2,0,1604,-14,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1944,91,1,2343,66,1,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1947,79,1,2146,63,1,0 +2013,4,28,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-5,0,1227,6,0,0 +2013,7,6,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,46,1,611,34,1,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2155,-1,0,2250,8,0,0 +2013,6,24,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-5,0,659,27,1,0 +2013,4,15,1,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-5,0,1044,-15,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,9,0,1510,-6,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-1,0,925,-3,0,0 +2013,6,16,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1715,32,1,1835,26,1,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1100,3,0,1255,-13,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1235,5,0,1445,-5,0,0 +2013,4,5,5,OO,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,730,-3,0,1132,8,0,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,5,0,1210,-2,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,54,1,2221,49,1,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1925,3,0,2302,-12,0,0 +2013,7,20,6,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1405,5,0,1455,2,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1210,-2,0,1415,-17,0,0 +2013,6,6,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,-5,0,815,-10,0,0 +2013,6,17,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,18,1,2340,12,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-4,0,1606,-10,0,0 +2013,10,3,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1845,13,0,1935,13,0,0 +2013,7,25,4,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,0,0,604,16,1,0 +2013,5,24,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,954,28,1,1215,23,1,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,10,0,1330,-2,0,0 +2013,9,8,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,3,0,1300,-6,0,0 +2013,10,30,3,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1436,0,0,1440,-15,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1054,8,0,1325,4,0,0 +2013,10,16,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,230,-1,0,704,-17,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1120,0,0,1323,-14,0,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1350,20,1,1905,31,1,0 +2013,7,20,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,13,0,1811,7,0,0 +2013,7,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,34,1,1150,33,1,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,933,-4,0,1156,63,1,0 +2013,9,27,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-3,0,1311,-31,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,55,1,1815,23,1,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1820,5,0,2115,19,1,0 +2013,4,25,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-1,0,1101,-15,0,0 +2013,9,28,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1930,-5,0,2136,-12,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1457,-1,0,1555,-10,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1540,-3,0,1635,0,0,0 +2013,8,4,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-7,0,1251,-19,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1340,68,1,1710,69,1,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-3,0,2013,-13,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,931,-5,0,1812,-27,0,0 +2013,6,6,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,6,0,1940,-12,0,0 +2013,5,16,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,720,-3,0,905,-11,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1755,66,1,1940,44,1,0 +2013,9,28,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-7,0,1220,-3,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,-1,0,905,-9,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1815,10,0,55,-6,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,36,1,1335,31,1,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,15,1,2245,4,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,814,0,0,903,-1,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-2,0,1150,-8,0,0 +2013,10,26,6,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1730,22,1,1903,-5,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1650,20,1,1935,23,1,0 +2013,5,9,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1047,-2,0,1209,-1,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1252,1,0,1407,-11,0,0 +2013,8,31,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,11,0,1620,-1,0,0 +2013,4,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1320,-6,0,1440,-5,0,0 +2013,6,23,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2035,-11,0,2206,8,0,0 +2013,9,29,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,-7,0,1837,-19,0,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,928,-1,0,1131,44,1,0 +2013,8,23,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-2,0,840,-23,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1615,15,1,1725,6,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-5,0,1003,3,0,0 +2013,9,22,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,815,-9,0,1036,-14,0,0 +2013,8,22,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1652,132,1,1855,133,1,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,600,0,0,930,-15,0,0 +2013,10,14,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1820,-2,0,1940,-9,0,0 +2013,7,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-3,0,1450,-6,0,0 +2013,10,15,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-8,0,826,-11,0,0 +2013,6,28,5,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-5,0,1908,-11,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-2,0,2100,2,0,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1630,285,1,1945,258,1,0 +2013,5,26,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1243,-10,0,1430,-22,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,16,1,1757,17,1,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,735,0,0,929,26,1,0 +2013,9,21,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,2,0,1638,-7,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1341,0,0,1502,-10,0,0 +2013,5,19,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,2,0,2235,-5,0,0 +2013,6,20,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2040,-5,0,2235,-8,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,638,46,1,911,34,1,0 +2013,4,24,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1118,-15,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1945,-3,0,2202,-4,0,0 +2013,6,11,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1936,-2,0,2125,4,0,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1859,2,0,2020,-9,0,0 +2013,9,20,5,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,830,22,1,848,13,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,13,0,1801,6,0,0 +2013,8,28,3,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1627,-5,0,1904,-9,0,0 +2013,4,15,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,510,-5,0,648,-19,0,0 +2013,6,10,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1050,-4,0,1353,-9,0,0 +2013,5,22,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1825,21,1,2050,97,1,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1150,55,1,1315,51,1,0 +2013,10,21,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1100,67,1,1220,60,1,0 +2013,6,12,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-3,0,1823,26,1,0 +2013,5,4,6,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1215,29,1,1505,28,1,0 +2013,4,15,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,6,0,1215,1,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1503,-1,0,1658,4,0,0 +2013,8,18,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1005,-7,0,1135,2,0,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1815,0,0,2008,-2,0,0 +2013,7,26,5,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2015,-6,0,2300,-9,0,0 +2013,8,27,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,2,0,1922,6,0,0 +2013,10,22,2,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1307,2,0,1602,5,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,4,0,14,3,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1915,178,1,2255,171,1,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1155,-2,0,1405,19,1,0 +2013,7,29,1,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,615,-2,0,715,19,1,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1301,-2,0,1446,14,0,0 +2013,4,4,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-5,0,805,15,1,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1150,9,0,1629,-2,0,0 +2013,10,25,5,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1545,35,1,1705,55,1,0 +2013,6,2,7,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,655,-4,0,1022,-7,0,0 +2013,5,17,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-3,0,1640,23,1,0 +2013,7,21,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,23,1,1925,10,0,0 +2013,7,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1740,79,1,1935,77,1,0 +2013,7,27,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,803,-2,0,854,-1,0,0 +2013,8,3,6,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,925,-2,0,1050,-18,0,0 +2013,7,21,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,0,0,2210,-17,0,0 +2013,7,12,5,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,725,-10,0,948,-22,0,0 +2013,9,18,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1849,-1,0,2137,1,0,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1735,-6,0,1930,-11,0,0 +2013,9,15,7,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,809,-6,0,937,-5,0,0 +2013,9,30,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1920,15,1,2045,4,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,-2,0,1620,6,0,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,1,0,915,24,1,0 +2013,5,23,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,6,0,2101,-3,0,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,-2,0,1150,-14,0,0 +2013,8,4,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1525,10,0,1645,4,0,0 +2013,9,12,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,645,-6,0,740,-11,0,0 +2013,4,20,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1432,-5,0,1607,-10,0,0 +2013,6,6,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1015,17,1,1253,3,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,0,0,1937,-2,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-6,0,1310,2,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1455,-2,0,1610,6,0,0 +2013,9,15,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1935,55,1,2158,54,1,0 +2013,10,27,7,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,820,-8,0,1113,-7,0,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,813,-1,0,938,10,0,0 +2013,7,20,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-11,0,850,-23,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1415,0,0,1510,-7,0,0 +2013,6,20,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,-3,0,815,-13,0,0 +2013,6,18,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1107,2,0,0 +2013,7,19,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,600,-2,0,720,-7,0,0 +2013,4,19,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-2,0,641,-1,0,0 +2013,9,8,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,745,0,0,920,13,0,0 +2013,5,1,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,-6,0,1505,-3,0,0 +2013,4,25,4,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-7,0,2055,3,0,0 +2013,4,14,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-2,0,1930,2,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,-3,0,1144,-8,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2115,-1,0,2330,-3,0,0 +2013,9,14,6,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1415,-1,0,1530,2,0,0 +2013,8,27,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-7,0,1720,-28,0,0 +2013,8,21,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-12,0,2155,-9,0,0 +2013,10,2,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,3,0,1451,1,0,0 +2013,10,5,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2020,-10,0,2145,-14,0,0 +2013,8,14,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1146,11,0,1628,-15,0,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1132,-2,0,1416,-14,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,-4,0,2255,-1,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1730,20,1,2040,20,1,0 +2013,5,24,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1045,7,0,1150,0,0,0 +2013,8,26,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-8,0,1012,-7,0,0 +2013,10,28,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1130,7,0,1224,13,0,0 +2013,7,5,5,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1420,16,1,1510,44,1,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,68,1,1057,48,1,0 +2013,7,22,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,-2,0,2045,8,0,0 +2013,8,24,6,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,725,3,0,845,-18,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,100,1,1146,90,1,0 +2013,9,6,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-3,0,733,-7,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,0,0,1235,-18,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,-2,0,2102,11,0,0 +2013,5,25,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,46,1,1406,30,1,0 +2013,4,11,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,645,-3,0,910,-18,0,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,-2,0,1915,-3,0,0 +2013,7,3,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1208,3,0,1452,6,0,0 +2013,7,19,5,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,735,-4,0,1050,-7,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,0,0,1505,-6,0,0 +2013,10,23,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1850,21,1,2215,9,0,0 +2013,5,8,3,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1655,13,0,1930,-6,0,0 +2013,8,19,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-3,0,2250,2,0,0 +2013,4,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1500,2,0,1551,6,0,0 +2013,9,29,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,10,0,1355,7,0,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-7,0,2039,-19,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1520,-7,0,1907,-15,0,0 +2013,7,19,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-1,0,825,-11,0,0 +2013,9,22,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1330,12,0,1510,0,0,0 +2013,6,19,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1835,1,0,2100,-6,0,0 +2013,5,28,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,-6,0,1042,-3,0,0 +2013,8,30,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1445,-4,0,1905,5,0,0 +2013,4,16,2,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-9,0,802,-30,0,0 +2013,9,27,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1407,5,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1005,56,1,1340,38,1,0 +2013,5,8,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1632,94,1,1731,85,1,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1259,25,1,1614,14,0,0 +2013,7,26,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,745,3,0,905,-20,0,0 +2013,4,4,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,630,-5,0,730,-15,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2255,-4,0,5,6,0,0 +2013,6,4,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2011,34,1,2328,18,1,0 +2013,7,14,7,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,16,1,1720,-11,0,0 +2013,8,28,3,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-10,0,1031,-19,0,0 +2013,6,12,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2044,7,0,2324,16,1,0 +2013,8,28,3,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1150,23,1,1505,13,0,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,800,-6,0,1116,-5,0,0 +2013,7,25,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,18,1,905,25,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1726,10,0,1739,-7,0,0 +2013,7,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1715,7,0,1840,4,0,0 +2013,9,12,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,610,21,1,729,27,1,0 +2013,7,21,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,729,-4,0,0 +2013,5,13,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1600,-10,0,1630,-10,0,0 +2013,10,25,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,33,1,1115,24,1,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,0,0,1120,-11,0,0 +2013,6,16,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-1,0,1605,-4,0,0 +2013,4,27,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1232,34,1,1428,20,1,0 +2013,9,29,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1248,-6,0,2119,4,0,0 +2013,9,22,7,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-4,0,1815,-18,0,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,740,-3,0,840,0,0,0 +2013,8,1,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,9,0,1530,-5,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1825,17,1,2010,14,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1059,-6,0,1340,32,1,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,-4,0,1546,-10,0,0 +2013,5,6,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-5,0,1040,-33,0,0 +2013,9,11,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-6,0,827,-22,0,0 +2013,7,27,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,27,1,1338,26,1,0 +2013,8,4,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-7,0,1005,-20,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,81,1,2335,75,1,0 +2013,9,12,4,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-6,0,1445,-34,0,0 +2013,6,17,1,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,740,-4,0,1020,-15,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,941,-5,0,1152,-10,0,0 +2013,7,2,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-3,0,815,-8,0,0 +2013,9,14,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1000,14,0,1520,2,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,0,0,1137,-4,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,20,1,1705,20,1,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,13,0,2045,11,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1200,-3,0,1325,-13,0,0 +2013,5,23,4,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,20,1,2015,32,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,-2,0,1253,-5,0,0 +2013,7,23,2,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1735,14,0,1925,6,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1642,-4,0,1834,-13,0,0 +2013,5,5,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,700,0,0,735,-3,0,0 +2013,9,11,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1850,-3,0,2046,-16,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,-2,0,2224,-35,0,0 +2013,4,28,7,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1200,-1,0,1518,-28,0,0 +2013,4,26,5,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1640,0,0,2100,-1,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1925,0,0,2153,2,0,0 +2013,5,16,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,0,0,2120,-8,0,0 +2013,5,22,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1622,0,,1735,0,1,1 +2013,10,28,1,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,17,1,825,23,1,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-3,0,1152,-10,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,-1,0,1608,1,0,0 +2013,7,13,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1500,3,0,1755,-5,0,0 +2013,5,30,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,930,-5,0,1120,-10,0,0 +2013,7,14,7,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,928,1,0,1050,3,0,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2139,-6,0,600,-31,0,0 +2013,7,4,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2354,-2,0,549,-6,0,0 +2013,9,3,2,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1058,-4,0,1906,-6,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1310,94,1,1446,107,1,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-8,0,1320,-17,0,0 +2013,7,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1034,1,0,1409,6,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,8,0,2230,-3,0,0 +2013,9,20,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-3,0,541,1,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,-2,0,1430,-16,0,0 +2013,7,11,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1435,25,1,1526,24,1,0 +2013,6,9,7,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,2,0,1305,-6,0,0 +2013,6,6,4,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,3,0,1950,-7,0,0 +2013,8,22,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1127,-6,0,1146,-4,0,0 +2013,9,4,3,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1330,-14,0,1435,-20,0,0 +2013,10,23,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-3,0,1855,7,0,0 +2013,8,29,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-6,0,2124,-9,0,0 +2013,7,18,4,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,948,-3,0,1311,4,0,0 +2013,8,8,4,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2050,75,1,2344,76,1,0 +2013,6,14,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1517,-16,0,1650,-24,0,0 +2013,9,29,7,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-8,0,1254,-14,0,0 +2013,4,5,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1725,24,1,2017,25,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2300,-2,0,27,-14,0,0 +2013,8,16,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,3,0,1217,4,0,0 +2013,7,2,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2005,-1,0,2245,1,0,0 +2013,5,13,1,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1505,-3,0,2350,-5,0,0 +2013,4,27,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1835,-4,0,2146,-22,0,0 +2013,6,30,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,745,-1,0,905,-17,0,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1620,0,0,1935,-4,0,0 +2013,7,6,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,834,-1,0,1015,-1,0,0 +2013,6,19,3,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-6,0,2152,0,0,0 +2013,8,22,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,181,1,1551,174,1,0 +2013,5,17,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,8,0,1625,16,1,0 +2013,7,11,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1630,-3,0,1800,-18,0,0 +2013,8,18,7,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1230,-5,0,1441,-5,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,945,-4,0,1625,-11,0,0 +2013,7,27,6,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,615,-11,0,720,-20,0,0 +2013,4,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1700,14,0,1805,12,0,0 +2013,5,7,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,-4,0,1403,-2,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1205,1,0,1310,2,0,0 +2013,4,18,4,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,172,1,1638,0,1,1 +2013,9,16,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1730,-4,0,2059,-5,0,0 +2013,10,24,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1900,23,1,2000,19,1,0 +2013,9,8,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,0,0,1545,-4,0,0 +2013,9,4,3,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1719,1,0,1840,-6,0,0 +2013,5,17,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,18,1,1517,7,0,0 +2013,10,3,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-4,0,1436,-1,0,0 +2013,7,15,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1455,8,0,1605,-4,0,0 +2013,9,11,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1150,-4,0,1505,-12,0,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,-1,0,1130,-23,0,0 +2013,7,31,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,0,0,815,-2,0,0 +2013,4,10,3,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1936,3,0,811,16,1,0 +2013,6,10,1,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1353,16,1,1649,5,0,0 +2013,6,13,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,-4,0,1054,-9,0,0 +2013,5,25,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2039,-5,0,2210,-3,0,0 +2013,8,2,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,4,0,1653,-14,0,0 +2013,7,15,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-3,0,1227,1,0,0 +2013,5,27,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-5,0,1604,-2,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,725,-2,0,824,-3,0,0 +2013,6,4,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,600,-1,0,840,0,0,0 +2013,9,4,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-1,0,2000,-10,0,0 +2013,8,1,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,910,-5,0,1245,22,1,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1545,-5,0,1850,-9,0,0 +2013,4,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-6,0,1146,-8,0,0 +2013,9,21,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-8,0,747,-4,0,0 +2013,6,29,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,0,0,1455,-5,0,0 +2013,5,13,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,830,-10,0,1015,-24,0,0 +2013,6,23,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,630,-7,0,733,-17,0,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1115,0,,1310,0,1,1 +2013,4,8,1,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,-5,0,1522,-13,0,0 +2013,8,9,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-4,0,1511,-18,0,0 +2013,5,31,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,-2,0,2033,-17,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,1325,5,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1430,-2,0,1515,-6,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,835,14,0,1055,9,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,5,0,2217,9,0,0 +2013,7,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1355,-5,0,1709,2,0,0 +2013,9,28,6,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2207,2,0,2340,2,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,239,1,1814,244,1,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,940,-3,0,1050,-11,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,630,-3,0,847,-35,0,0 +2013,8,13,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2325,24,1,525,16,1,0 +2013,4,6,6,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,615,-2,0,1434,-20,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1555,27,1,1725,25,1,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,805,-12,0,0 +2013,6,20,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-6,0,1340,-22,0,0 +2013,10,16,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,-3,0,1355,4,0,0 +2013,10,28,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,15,1,1710,9,0,0 +2013,8,8,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1125,5,0,1300,8,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,730,-1,0,1058,-10,0,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1520,25,1,1639,13,0,0 +2013,9,2,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1320,386,1,1340,395,1,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1253,-7,0,1815,1,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,3,0,1410,10,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2119,4,0,2245,10,0,0 +2013,9,16,1,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1150,-1,0,1400,-2,0,0 +2013,4,22,1,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1945,129,1,2049,130,1,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1129,57,1,1315,59,1,0 +2013,9,19,4,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,937,-10,0,1214,-19,0,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,-2,0,2045,-2,0,0 +2013,6,15,6,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1100,-3,0,1250,-16,0,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1150,-2,0,1330,-5,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1900,20,1,1955,21,1,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,755,-1,0,910,-6,0,0 +2013,4,19,5,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1445,-10,0,1753,0,0,0 +2013,8,31,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,2,0,1755,-12,0,0 +2013,8,13,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1150,12,0,1400,4,0,0 +2013,7,2,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,20,1,1205,12,0,0 +2013,10,28,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,90,1,1538,79,1,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1906,0,0,2200,-9,0,0 +2013,8,10,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1125,9,0,1245,9,0,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-4,0,1831,16,1,0 +2013,5,18,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1034,0,0,1419,5,0,0 +2013,4,8,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1700,-5,0,1732,-1,0,0 +2013,4,20,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,-2,0,940,-15,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,-3,0,2354,-27,0,0 +2013,9,6,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-3,0,1505,2,0,0 +2013,6,28,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1545,98,1,1814,113,1,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1258,-6,0,1419,-1,0,0 +2013,4,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1132,-4,0,1342,5,0,0 +2013,6,23,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1119,-7,0,1234,-7,0,0 +2013,9,9,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1415,11,0,1510,4,0,0 +2013,9,6,5,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,18,1,1355,2,0,0 +2013,7,23,2,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1115,-6,0,1330,-4,0,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2225,1,0,2355,24,1,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1315,12,0,1545,13,0,0 +2013,5,14,2,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1252,-5,0,1412,-6,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1615,3,0,1935,-8,0,0 +2013,6,30,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,11,0,2220,1,0,0 +2013,9,22,7,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1610,36,1,1945,22,1,0 +2013,9,18,3,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1305,3,0,1910,31,1,0 +2013,7,30,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-4,0,627,-3,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,-5,0,1402,-13,0,0 +2013,5,29,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1558,-2,0,1620,-3,0,0 +2013,5,11,6,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1111,38,1,1409,24,1,0 +2013,5,21,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1522,45,1,2321,47,1,0 +2013,10,4,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1540,102,1,1815,99,1,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1435,-3,0,1605,-14,0,0 +2013,6,16,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1825,0,0,2005,-14,0,0 +2013,5,25,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,645,-5,0,705,-16,0,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1610,60,1,1755,39,1,0 +2013,7,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,805,0,0,1110,1,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,4,0,1022,-2,0,0 +2013,10,16,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1650,-4,0,1747,-7,0,0 +2013,7,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1920,16,1,2050,15,1,0 +2013,8,3,6,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1745,35,1,1920,19,1,0 +2013,8,28,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,6,0,2030,-18,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,600,5,0,805,2,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,5,0,2245,-14,0,0 +2013,8,11,7,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,848,-10,0,1020,-14,0,0 +2013,10,1,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,615,-3,0,840,-4,0,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,740,4,0,1045,-4,0,0 +2013,8,4,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1120,-5,0,1409,-17,0,0 +2013,7,3,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1331,7,0,1501,-10,0,0 +2013,4,12,5,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-4,0,1104,-3,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1805,125,1,2240,128,1,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1750,20,1,2310,15,1,0 +2013,8,19,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1135,52,1,1250,41,1,0 +2013,9,20,5,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,833,149,1,1015,134,1,0 +2013,4,25,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1420,-13,0,1450,-32,0,0 +2013,4,3,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1455,20,1,2002,20,1,0 +2013,7,7,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-1,0,1130,-3,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2114,2,0,2224,3,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,0,0,2055,-15,0,0 +2013,10,8,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-1,0,1840,-12,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1855,11,0,2050,15,1,0 +2013,5,12,7,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1830,35,1,1935,34,1,0 +2013,7,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1205,-3,0,1335,-20,0,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2240,-5,0,704,15,1,0 +2013,5,1,3,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1950,-6,0,2200,-4,0,0 +2013,7,11,4,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1753,2,0,1900,-9,0,0 +2013,10,29,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-3,0,1654,12,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-10,0,2200,-3,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1440,0,0,1805,-2,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,810,27,1,1025,25,1,0 +2013,9,21,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1805,1,0,1915,-7,0,0 +2013,9,16,1,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,810,3,0,1000,-5,0,0 +2013,4,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,51,1,2210,30,1,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1825,84,1,2010,60,1,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2005,-1,0,2059,-10,0,0 +2013,10,15,2,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1210,64,1,1425,73,1,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-1,0,1417,-2,0,0 +2013,5,11,6,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,-6,0,1105,-13,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,744,-7,0,920,-15,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,3,0,1720,-18,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,741,-5,0,911,-5,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,-4,0,1717,-17,0,0 +2013,7,3,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,0,0,900,3,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,956,-1,0,1148,-5,0,0 +2013,8,8,4,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,2,0,2025,-2,0,0 +2013,9,14,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,-3,0,1220,0,0,0 +2013,9,2,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,6,0,2258,44,1,0 +2013,6,3,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1720,-5,0,1939,-9,0,0 +2013,7,16,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,737,-5,0,935,-1,0,0 +2013,7,29,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-5,0,2117,-15,0,0 +2013,6,18,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,0,0,2230,-6,0,0 +2013,10,4,5,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2200,-3,0,2334,-11,0,0 +2013,8,22,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-11,0,1030,-23,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1910,50,1,2125,31,1,0 +2013,6,11,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1625,-4,0,2025,12,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1905,179,1,2355,161,1,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,820,-20,0,0 +2013,5,31,5,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,645,-4,0,755,-14,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1655,-4,0,1800,-1,0,0 +2013,6,11,2,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,11,0,1305,22,1,0 +2013,5,17,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1633,-7,0,0 +2013,7,26,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-3,0,1010,-15,0,0 +2013,9,14,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-1,0,854,-9,0,0 +2013,9,20,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,-4,0,2053,-15,0,0 +2013,6,28,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,102,1,2200,97,1,0 +2013,5,20,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1520,69,1,1725,77,1,0 +2013,6,6,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-4,0,1534,48,1,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1000,-2,0,1715,-12,0,0 +2013,6,6,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1310,-7,0,1510,-4,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,0,0,2140,14,0,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-3,0,1520,-25,0,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1835,-5,0,2052,16,1,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1453,0,0,1549,-5,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,28,1,2335,16,1,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1927,44,1,2200,28,1,0 +2013,9,1,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,13,0,940,-14,0,0 +2013,7,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-1,0,1053,-22,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1710,38,1,1810,26,1,0 +2013,8,14,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1240,-1,0,1344,-13,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1518,2,0,1935,-5,0,0 +2013,8,23,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-6,0,1325,-31,0,0 +2013,6,16,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-4,0,152,-5,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,48,1,9,46,1,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1711,27,1,1952,22,1,0 +2013,5,2,4,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2120,75,1,2340,75,1,0 +2013,8,15,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1530,-4,0,1555,-3,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,844,3,0,1604,2,0,0 +2013,6,26,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1750,76,1,1924,116,1,0 +2013,7,27,6,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,735,0,0,910,-2,0,0 +2013,8,10,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1828,-3,0,2031,5,0,0 +2013,4,28,7,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2115,-7,0,2326,-9,0,0 +2013,7,9,2,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,720,5,0,1000,-3,0,0 +2013,6,18,2,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,815,0,0,1124,19,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1208,0,0,1341,3,0,0 +2013,10,4,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1120,-4,0,1229,5,0,0 +2013,10,8,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-7,0,1335,-10,0,0 +2013,10,6,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,15,1,2246,17,1,0 +2013,9,1,7,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1915,12,0,2025,5,0,0 +2013,6,30,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1730,8,0,1940,6,0,0 +2013,7,18,4,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1655,-4,0,1833,-19,0,0 +2013,4,17,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-3,0,1035,-5,0,0 +2013,6,29,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-4,0,1040,-14,0,0 +2013,6,2,7,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1255,125,1,1415,112,1,0 +2013,9,30,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,823,-13,0,0 +2013,10,4,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,5,0,1757,8,0,0 +2013,5,31,5,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1710,52,1,1915,39,1,0 +2013,4,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1006,-2,0,1118,-11,0,0 +2013,8,21,3,YV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1955,54,1,2011,55,1,0 +2013,8,7,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-1,0,750,-6,0,0 +2013,10,10,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,1,0,1610,-6,0,0 +2013,9,28,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,825,-7,0,1440,-28,0,0 +2013,7,2,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,-1,0,1005,-12,0,0 +2013,6,17,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1926,-7,0,2045,-17,0,0 +2013,9,17,2,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,700,-8,0,830,-8,0,0 +2013,10,16,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1537,-2,0,1649,-5,0,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-3,0,1527,4,0,0 +2013,10,6,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,800,6,0,1025,6,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,741,-3,0,1042,-26,0,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1710,-1,0,1901,-2,0,0 +2013,6,15,6,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,0,0,1640,1,0,0 +2013,10,29,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,600,-7,0,826,-12,0,0 +2013,8,18,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,840,10,0,1205,11,0,0 +2013,7,19,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1235,0,0,1422,-9,0,0 +2013,10,28,1,9E,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-3,0,918,-18,0,0 +2013,7,31,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2220,6,0,110,-1,0,0 +2013,5,21,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-7,0,1250,-5,0,0 +2013,8,22,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,2,0,1309,-6,0,0 +2013,9,23,1,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1605,-6,0,1901,-9,0,0 +2013,9,20,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,715,-5,0,749,-13,0,0 +2013,8,9,5,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,-8,0,840,-6,0,0 +2013,10,2,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,3,0,1950,5,0,0 +2013,5,14,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-7,0,1255,-39,0,0 +2013,7,31,3,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1535,10,0,1650,15,1,0 +2013,5,1,3,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1835,-16,0,1958,-21,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,615,-1,0,1100,-2,0,0 +2013,4,9,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1405,-8,0,2121,-17,0,0 +2013,4,4,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,935,-5,0,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,78,1,2210,69,1,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1812,13,0,2155,-2,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,83,1,1655,97,1,0 +2013,9,2,1,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,-8,0,1504,-16,0,0 +2013,10,7,1,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,-3,0,1255,-14,0,0 +2013,9,23,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,804,6,0,0 +2013,5,19,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-7,0,1746,-2,0,0 +2013,10,8,2,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1345,-4,0,1524,-8,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1900,20,1,2128,11,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1913,11,0,2251,-11,0,0 +2013,10,11,5,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,935,-1,0,1420,-8,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-4,0,2059,-21,0,0 +2013,4,13,6,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,21,1,2150,8,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,720,1,0,1100,2,0,0 +2013,8,21,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1320,-3,0,1615,-10,0,0 +2013,5,7,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,9,0,1440,4,0,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,805,0,0,1049,-3,0,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1035,11,0,1350,16,1,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,910,-2,0,1025,10,0,0 +2013,7,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2209,-6,0,2304,-11,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,855,-5,0,1332,0,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1611,-2,0,1814,-9,0,0 +2013,7,11,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-2,0,1840,38,1,0 +2013,6,24,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,2,0,2259,-5,0,0 +2013,10,25,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1245,-2,0,1540,-19,0,0 +2013,10,11,5,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1621,7,0,1808,25,1,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,1332,-14,0,0 +2013,9,4,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-6,0,751,-2,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,0,0,1315,-8,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,845,-1,0,1130,-11,0,0 +2013,7,20,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,-1,0,750,-7,0,0 +2013,10,13,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,755,-9,0,1546,-35,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1231,0,0,1515,-24,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1310,0,0,1446,1,0,0 +2013,6,18,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-1,0,627,-6,0,0 +2013,6,11,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,-9,0,935,-23,0,0 +2013,7,24,3,OO,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1804,-6,0,1844,-12,0,0 +2013,5,21,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1825,85,1,2127,67,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2145,-7,0,11,-23,0,0 +2013,9,26,4,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,715,-4,0,750,-10,0,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1302,0,0,2129,4,0,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1049,-4,0,1220,-11,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,12,0,1645,3,0,0 +2013,5,28,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-2,0,846,2,0,0 +2013,8,3,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,8,0,1415,12,0,0 +2013,9,24,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,610,342,1,930,373,1,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-3,0,2240,-2,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2117,-8,0,2351,-14,0,0 +2013,4,30,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1035,-1,0,1420,14,0,0 +2013,6,30,7,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-5,0,1522,4,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,12,0,1830,21,1,0 +2013,6,27,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-2,0,1341,-1,0,0 +2013,8,16,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1313,71,1,1521,72,1,0 +2013,9,5,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,840,-2,0,1006,-19,0,0 +2013,6,10,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,-5,0,1740,-20,0,0 +2013,10,24,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1806,-10,0,2200,-33,0,0 +2013,7,11,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,900,5,0,0 +2013,9,8,7,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,929,22,1,1129,-2,0,0 +2013,4,30,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,1,0,2124,-7,0,0 +2013,7,17,3,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,5,0,1853,1,0,0 +2013,8,18,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,0,0,1615,-16,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1012,-6,0,1337,-20,0,0 +2013,4,7,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1017,-6,0,1221,-12,0,0 +2013,4,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1430,116,1,1810,112,1,0 +2013,5,26,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-5,0,1556,7,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1000,11,0,1130,-1,0,0 +2013,9,30,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1219,1,0,1459,-4,0,0 +2013,6,4,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,-4,0,1426,-3,0,0 +2013,8,22,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,600,-10,0,729,-19,0,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,0,0,1205,12,0,0 +2013,10,17,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1240,4,0,1333,-8,0,0 +2013,9,11,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1850,0,,2025,0,1,1 +2013,9,23,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1843,1,0,2041,-6,0,0 +2013,8,19,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,11,0,1139,-18,0,0 +2013,8,2,5,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1235,3,0,1415,3,0,0 +2013,5,29,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,943,9,0,1444,-3,0,0 +2013,8,1,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,54,1,805,44,1,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1115,15,1,1210,10,0,0 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,620,2,0,935,12,0,0 +2013,9,26,4,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,52,1,1005,27,1,0 +2013,6,26,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1025,85,1,1040,105,1,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,1,0,2155,14,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1515,1,0,1726,-3,0,0 +2013,10,8,2,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1420,-4,0,1613,-11,0,0 +2013,7,15,1,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,2,0,2110,1,0,0 +2013,5,30,4,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1107,0,0,1340,-15,0,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1610,0,0,1720,13,0,0 +2013,10,10,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-5,0,944,-2,0,0 +2013,6,27,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,-7,0,1430,-9,0,0 +2013,4,18,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,0,0,1935,-6,0,0 +2013,6,2,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1945,-7,0,2202,12,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,38,1,1825,22,1,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,-4,0,2340,0,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1620,62,1,1935,48,1,0 +2013,10,20,7,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1205,0,0,1400,0,0,0 +2013,4,24,3,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,815,-15,0,1040,-16,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-5,0,2015,-12,0,0 +2013,8,9,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,915,7,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1600,0,0,1705,-8,0,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,-1,0,839,0,0,0 +2013,9,29,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,12,0,1815,6,0,0 +2013,4,16,2,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,90,1,1737,71,1,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-4,0,916,-17,0,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1645,-6,0,1709,-3,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1240,-1,0,1502,-5,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,,2255,0,1,1 +2013,10,23,3,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,12,0,1055,3,0,0 +2013,4,9,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-2,0,913,-8,0,0 +2013,9,13,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1325,3,0,2059,4,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,821,-4,0,943,-14,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1003,-2,0,1254,-17,0,0 +2013,8,27,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,5,0,2025,10,0,0 +2013,9,10,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1815,4,0,1915,2,0,0 +2013,8,21,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,-15,0,1610,-15,0,0 +2013,4,5,5,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1510,14,0,1809,35,1,0 +2013,8,8,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,922,30,1,1232,20,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,0,0,1238,-4,0,0 +2013,8,14,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2015,30,1,2140,31,1,0 +2013,10,5,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-6,0,1421,-15,0,0 +2013,5,23,4,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1810,161,1,2114,141,1,0 +2013,9,23,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,-3,0,1915,-9,0,0 +2013,10,20,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1120,-1,0,1130,-4,0,0 +2013,7,9,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1015,15,1,1135,14,0,0 +2013,8,18,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,6,0,1501,5,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2010,1,0,2310,-4,0,0 +2013,7,16,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-5,0,1117,-19,0,0 +2013,9,24,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-9,0,1756,-12,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1540,-1,0,1735,-4,0,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1755,17,1,2026,25,1,0 +2013,4,22,1,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,47,1,1620,39,1,0 +2013,7,3,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,1,0,1127,20,1,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2015,1,0,2125,-3,0,0 +2013,4,5,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1450,-8,0,1810,-11,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-2,0,824,-14,0,0 +2013,10,24,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1455,18,1,1610,10,0,0 +2013,4,18,4,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1500,5,0,1810,7,0,0 +2013,5,9,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,2005,-2,0,2150,-7,0,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2150,-2,0,2315,5,0,0 +2013,5,1,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,1128,6,0,0 +2013,4,1,1,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1515,-6,0,1745,15,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1007,0,0,1150,-10,0,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-4,0,1133,-15,0,0 +2013,6,15,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1209,-7,0,1423,4,0,0 +2013,8,31,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,26,1,1100,26,1,0 +2013,10,3,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,-3,0,835,-1,0,0 +2013,8,17,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,29,1,2302,13,0,0 +2013,5,17,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-3,0,2035,6,0,0 +2013,8,30,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,17,1,2032,9,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,4,0,1407,0,0,0 +2013,4,6,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-2,0,1111,-5,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1605,-1,0,1734,-12,0,0 +2013,8,1,4,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,720,-3,0,1000,19,1,0 +2013,6,21,5,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,708,12,0,1030,12,0,0 +2013,10,24,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1730,91,1,2104,63,1,0 +2013,4,24,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,4,0,2305,-5,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-3,0,1443,8,0,0 +2013,9,10,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1750,-4,0,1935,-14,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,720,-6,0,940,-20,0,0 +2013,4,26,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,607,7,0,900,-4,0,0 +2013,7,13,6,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1347,0,0,1419,-7,0,0 +2013,5,27,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,806,3,0,1408,4,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,1,0,1856,-15,0,0 +2013,8,25,7,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1712,0,0,1907,-17,0,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1911,22,1,2047,33,1,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,11,0,2326,0,0,0 +2013,4,2,2,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1821,60,1,2000,44,1,0 +2013,8,16,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-5,0,859,-16,0,0 +2013,8,16,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1625,9,0,1720,-9,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,15,1,1440,7,0,0 +2013,8,6,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1050,-4,0,1305,-20,0,0 +2013,9,10,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1317,-5,0,1440,-9,0,0 +2013,9,9,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1845,-5,0,2125,0,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-6,0,1810,-12,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1242,1,0,1814,-3,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,52,1,1915,72,1,0 +2013,5,7,2,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1426,-8,0,1703,-20,0,0 +2013,5,25,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-5,0,643,8,0,0 +2013,4,26,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1610,-5,0,2304,1,0,0 +2013,9,16,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1115,1,0,1210,-9,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2058,10,0,2219,-10,0,0 +2013,5,22,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,125,1,1633,125,1,0 +2013,5,31,5,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,0,0,1859,-8,0,0 +2013,10,25,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,9,0,2125,-2,0,0 +2013,5,13,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1725,-1,0,1849,-4,0,0 +2013,10,20,7,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1015,28,1,1825,30,1,0 +2013,7,13,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,730,50,1,1010,68,1,0 +2013,4,16,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,825,-8,0,1030,-1,0,0 +2013,6,12,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,-4,0,745,7,0,0 +2013,4,21,7,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,710,-8,0,1250,-18,0,0 +2013,5,31,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,17,1,2010,14,0,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,6,0,2259,7,0,0 +2013,9,24,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,-5,0,1711,3,0,0 +2013,9,19,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,3,0,1105,-3,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,-2,0,1605,-7,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,-2,0,1903,3,0,0 +2013,4,15,1,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1039,-9,0,1604,-35,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1500,100,1,1729,95,1,0 +2013,8,10,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,910,-4,0,1139,-9,0,0 +2013,10,15,2,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1057,83,1,1501,69,1,0 +2013,10,12,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-5,0,1113,-20,0,0 +2013,7,7,7,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,928,-4,0,1050,1,0,0 +2013,5,16,4,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,2017,-7,0,2200,1,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,804,-2,0,932,-11,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1544,205,1,2100,209,1,0 +2013,5,12,7,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1652,-9,0,1812,-11,0,0 +2013,9,15,7,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1155,0,0,1330,-15,0,0 +2013,5,10,5,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,-9,0,1912,-20,0,0 +2013,6,19,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-3,0,848,25,1,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,915,9,0,1210,11,0,0 +2013,8,4,7,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1427,32,1,1721,25,1,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2025,142,1,2305,125,1,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-4,0,959,13,0,0 +2013,6,3,1,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,745,-5,0,1543,-21,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1410,20,1,1533,7,0,0 +2013,4,3,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1325,-5,0,1435,-12,0,0 +2013,10,28,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,908,-8,0,1204,-19,0,0 +2013,8,2,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,-1,0,2354,-21,0,0 +2013,7,24,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2100,-1,0,2230,-11,0,0 +2013,4,21,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,3,0,1918,11,0,0 +2013,7,16,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,18,1,2130,14,0,0 +2013,8,9,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,853,-3,0,1129,-4,0,0 +2013,6,6,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-1,0,2146,-11,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,-1,0,2215,10,0,0 +2013,6,29,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,715,0,0,1227,-4,0,0 +2013,5,23,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1720,0,0,1825,-12,0,0 +2013,4,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-4,0,2347,10,0,0 +2013,4,4,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,15,1,1457,11,0,0 +2013,6,29,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-8,0,1750,-10,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,16,1,1245,-8,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,745,-1,0,955,-10,0,0 +2013,8,8,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,2,0,1925,-7,0,0 +2013,6,21,5,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-5,0,1020,5,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-3,0,907,-4,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,850,-5,0,1015,-10,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,0,0,1426,17,1,0 +2013,10,17,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,839,-7,0,1100,-5,0,0 +2013,7,7,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,3,0,1627,-7,0,0 +2013,8,24,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1445,1,0,2320,5,0,0 +2013,10,13,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-8,0,1408,-6,0,0 +2013,5,30,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,852,-12,0,1229,-4,0,0 +2013,6,3,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,709,-7,0,1539,-38,0,0 +2013,8,11,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1459,16,1,1548,10,0,0 +2013,6,19,3,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,630,-8,0,920,-3,0,0 +2013,6,15,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-10,0,1326,-8,0,0 +2013,7,18,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1510,5,0,1745,-18,0,0 +2013,4,2,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,515,-7,0,620,-7,0,0 +2013,6,18,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,630,-3,0,726,1,0,0 +2013,8,9,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-8,0,1120,-6,0,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1624,20,1,1926,6,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2016,-2,0,2359,-16,0,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2200,-3,0,2258,10,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,635,-1,0,840,0,0,0 +2013,6,23,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1505,-1,0,1635,-14,0,0 +2013,6,30,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,800,-1,0,930,52,1,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,-4,0,1550,-7,0,0 +2013,6,19,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2239,33,1,445,48,1,0 +2013,4,12,5,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,-2,0,606,-1,0,0 +2013,4,26,5,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2119,-6,0,2330,-9,0,0 +2013,9,25,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1230,-5,0,1405,-14,0,0 +2013,9,16,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,50,4,0,513,24,1,0 +2013,9,8,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,730,-7,0,910,-7,0,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1610,25,1,1745,17,1,0 +2013,6,25,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1105,-4,0,1529,3,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1435,2,0,1605,-4,0,0 +2013,7,4,4,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1150,-5,0,1443,-19,0,0 +2013,6,11,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,650,-2,0,720,-14,0,0 +2013,4,16,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1315,-2,0,1420,0,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1650,-2,0,2035,-20,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1735,11,0,2054,14,0,0 +2013,7,28,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,9,0,2200,14,0,0 +2013,10,6,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1105,0,,1210,0,1,1 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,3,0,1700,2,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,845,1,0,1000,-7,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1410,18,1,1550,16,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,839,-3,0,1026,-20,0,0 +2013,10,12,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,45,1,1251,32,1,0 +2013,4,5,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,-3,0,1029,21,1,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,32,1,1039,15,1,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-4,0,1015,-8,0,0 +2013,8,19,1,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1657,-11,0,1838,-16,0,0 +2013,8,9,5,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1129,-7,0,1326,-5,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,53,1,1850,50,1,0 +2013,7,1,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2130,1,0,2255,-6,0,0 +2013,10,19,6,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1840,-6,0,2005,-6,0,0 +2013,9,28,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-1,0,845,-11,0,0 +2013,7,23,2,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1210,24,1,1257,23,1,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,1119,-10,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,-3,0,2218,-8,0,0 +2013,5,15,3,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,-4,0,2306,-25,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1548,21,1,1801,4,0,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1135,20,1,2006,24,1,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1130,0,0,1655,-3,0,0 +2013,7,18,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1915,26,1,2140,0,0,0 +2013,10,18,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1205,6,0,1511,-9,0,0 +2013,7,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,0,0,936,-6,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1548,2,0,1949,-3,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,0,0,1109,1,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1725,0,0,2015,-19,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,939,-3,0,1127,-25,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,615,0,0,845,-13,0,0 +2013,8,19,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-2,0,1250,-19,0,0 +2013,7,19,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-8,0,900,-14,0,0 +2013,6,19,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,0,0,2255,-7,0,0 +2013,7,1,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1420,4,0,1515,-9,0,0 +2013,7,22,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,36,1,1858,53,1,0 +2013,5,21,2,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1733,62,1,1815,74,1,0 +2013,7,16,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-1,0,1604,-3,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,2015,38,1,2112,44,1,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,944,-5,0,1302,-8,0,0 +2013,6,5,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1625,-2,0,1655,-5,0,0 +2013,10,28,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,910,-13,0,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,5,0,2226,-2,0,0 +2013,6,30,7,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,710,3,0,905,-27,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,838,-16,0,0 +2013,5,29,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1415,-6,0,1633,-13,0,0 +2013,5,12,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1825,-11,0,2115,-31,0,0 +2013,7,6,6,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-8,0,759,-23,0,0 +2013,6,12,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,58,1,1915,59,1,0 +2013,7,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,22,1,2018,21,1,0 +2013,4,4,4,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1156,18,1,1349,10,0,0 +2013,9,5,4,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,-1,0,1545,-8,0,0 +2013,10,26,6,EV,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-7,0,1134,-24,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-5,0,1220,38,1,0 +2013,7,15,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2015,50,1,2309,33,1,0 +2013,8,22,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,640,-3,0,815,-10,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1519,-4,0,1820,-26,0,0 +2013,8,6,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-2,0,1002,-20,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,-1,0,1720,-13,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,15,1,1539,23,1,0 +2013,9,21,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,911,-3,0,1117,-13,0,0 +2013,9,20,5,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,7,0,1905,-1,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1915,0,0,2340,-13,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,720,0,0,917,-12,0,0 +2013,5,28,2,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-7,0,1030,-18,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,19,1,1025,17,1,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,66,1,2135,74,1,0 +2013,5,3,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-5,0,1258,-2,0,0 +2013,10,23,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,730,-7,0,850,21,1,0 +2013,7,26,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-2,0,809,-1,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,7,0,1937,18,1,0 +2013,4,26,5,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1943,32,1,0 +2013,6,11,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,3,0,1320,-12,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1251,0,0,1422,-9,0,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1740,5,0,1850,3,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1450,-4,0,1647,-9,0,0 +2013,6,25,2,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1655,8,0,1910,-8,0,0 +2013,4,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1400,3,0,1505,-2,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,1,0,910,2,0,0 +2013,9,4,3,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,0,0,1035,4,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2115,14,0,20,4,0,0 +2013,8,25,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1030,58,1,1158,43,1,0 +2013,9,21,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,610,-3,0,855,-14,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1640,28,1,1835,20,1,0 +2013,10,23,3,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,750,-6,0,1010,-8,0,0 +2013,6,5,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,923,-16,0,0 +2013,8,16,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1315,-4,0,1450,-4,0,0 +2013,5,6,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1435,15,1,1600,19,1,0 +2013,10,8,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,-3,0,940,-1,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1425,-3,0,1621,-18,0,0 +2013,10,24,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1340,-5,0,1503,-8,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,940,0,0,1100,-12,0,0 +2013,7,25,4,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-3,0,910,-7,0,0 +2013,9,20,5,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,725,1,0,925,-20,0,0 +2013,4,13,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-3,0,1531,7,0,0 +2013,7,12,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1940,-5,0,2034,-4,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,-2,0,1104,-8,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,5,0,1610,9,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-4,0,1440,-12,0,0 +2013,4,2,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,755,-6,0,855,-17,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,700,0,0,916,8,0,0 +2013,10,24,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1940,17,1,2125,-2,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1352,-3,0,1438,-1,0,0 +2013,10,22,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1830,7,0,2025,14,0,0 +2013,4,26,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1340,-1,0,1529,-13,0,0 +2013,7,30,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1936,170,1,2120,161,1,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2020,103,1,2135,101,1,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1315,6,0,1645,1,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1610,22,1,1630,12,0,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2155,2,0,2250,8,0,0 +2013,7,26,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1215,15,1,1411,4,0,0 +2013,6,4,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,720,-2,0,1020,-16,0,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1925,-3,0,2025,-3,0,0 +2013,4,18,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,88,1,1855,58,1,0 +2013,4,13,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1535,87,1,1640,83,1,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,932,-2,0,1310,-7,0,0 +2013,9,21,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,805,-7,0,1050,-1,0,0 +2013,9,27,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,952,-14,0,1116,-17,0,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1525,33,1,1733,32,1,0 +2013,9,22,7,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,624,-3,0,751,5,0,0 +2013,6,16,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,1,0,1030,-4,0,0 +2013,7,11,4,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,805,16,1,1305,21,1,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-2,0,850,-6,0,0 +2013,7,15,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1300,-2,0,1325,-9,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1845,0,0,2010,6,0,0 +2013,5,27,1,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,650,22,1,810,99,1,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,825,3,0,1010,1,0,0 +2013,10,21,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1503,7,0,1645,0,0,0 +2013,7,3,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,-5,0,2018,1,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,-3,0,1450,-13,0,0 +2013,6,23,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2135,-6,0,7,-4,0,0 +2013,8,9,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-4,0,1415,-13,0,0 +2013,7,7,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-10,0,712,-9,0,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,55,1,1310,51,1,0 +2013,9,30,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1827,-5,0,2107,-34,0,0 +2013,8,11,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,753,-13,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1905,47,1,2200,39,1,0 +2013,10,13,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-9,0,2020,-10,0,0 +2013,10,15,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2050,11,0,500,-13,0,0 +2013,9,13,5,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,48,1,1950,43,1,0 +2013,4,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1545,123,1,1655,124,1,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1140,9,0,1620,2,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,-6,0,1250,-15,0,0 +2013,4,19,5,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1235,-5,0,1620,-6,0,0 +2013,5,28,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,615,6,0,0 +2013,9,12,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-1,0,842,-9,0,0 +2013,4,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,15,1,2110,17,1,0 +2013,7,18,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,26,1,1225,23,1,0 +2013,9,3,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,955,5,0,1110,-3,0,0 +2013,4,12,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,-5,0,2110,-12,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,3,0,1948,5,0,0 +2013,8,5,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,1,0,1535,-5,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1328,-5,0,1724,17,1,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,121,1,1949,174,1,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1725,52,1,1922,38,1,0 +2013,7,25,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1546,-2,0,1648,-17,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1053,-7,0,1203,-8,0,0 +2013,10,6,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1540,4,0,1645,0,0,0 +2013,7,15,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1200,19,1,1323,16,1,0 +2013,5,17,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1520,40,1,1835,29,1,0 +2013,10,5,6,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1735,37,1,2010,11,0,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1653,3,0,1751,-4,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1455,10,0,1559,7,0,0 +2013,8,9,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-1,0,2110,10,0,0 +2013,8,9,5,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,2,0,1320,2,0,0 +2013,10,25,5,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,700,40,1,1049,15,1,0 +2013,5,1,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1545,-5,0,1736,-20,0,0 +2013,5,30,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1232,15,1,1615,74,1,0 +2013,9,17,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1139,-7,0,1650,-16,0,0 +2013,10,1,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1024,-6,0,1107,5,0,0 +2013,7,29,1,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,758,-7,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2155,130,1,2310,156,1,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2240,0,0,21,-7,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,43,1,2212,27,1,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,66,1,2025,52,1,0 +2013,4,9,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,12,0,1159,23,1,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1824,-5,0,2013,-24,0,0 +2013,9,2,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,66,1,2030,53,1,0 +2013,4,12,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1145,16,1,1245,12,0,0 +2013,8,29,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2007,-1,0,2104,-8,0,0 +2013,5,29,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1428,13,0,1610,15,1,0 +2013,7,6,6,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1020,1,0,1255,4,0,0 +2013,9,11,3,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1226,3,0,1501,-26,0,0 +2013,9,28,6,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,10,0,2154,-25,0,0 +2013,6,25,2,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1644,0,,1753,0,1,1 +2013,10,8,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1451,-7,0,1710,-6,0,0 +2013,7,20,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1040,3,0,1410,-10,0,0 +2013,7,23,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-1,0,1541,13,0,0 +2013,4,10,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2015,149,1,2318,122,1,0 +2013,6,28,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1825,181,1,2006,156,1,0 +2013,4,13,6,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-9,0,605,-20,0,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,-8,0,1502,-11,0,0 +2013,7,2,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-5,0,2305,-15,0,0 +2013,4,10,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-7,0,753,1,0,0 +2013,4,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1145,-4,0,1525,-7,0,0 +2013,4,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-1,0,1335,10,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,555,-5,0,715,-16,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1340,-1,0,1440,-10,0,0 +2013,5,17,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1501,-7,0,0 +2013,6,25,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1836,261,1,2143,251,1,0 +2013,7,31,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,-3,0,1850,-2,0,0 +2013,5,26,7,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-4,0,1405,-9,0,0 +2013,6,17,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1057,-6,0,1336,-17,0,0 +2013,4,7,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-1,0,846,-15,0,0 +2013,5,1,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,-5,0,1649,-1,0,0 +2013,5,31,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,38,1,1900,25,1,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1022,-5,0,1451,-20,0,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-1,0,1346,-3,0,0 +2013,6,4,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-9,0,804,-9,0,0 +2013,5,8,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1940,-2,0,2050,-1,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,37,1,1808,32,1,0 +2013,6,14,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,51,1,1725,44,1,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1230,1,0,1325,3,0,0 +2013,9,20,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,11,0,1745,14,0,0 +2013,5,5,7,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-15,0,1401,-20,0,0 +2013,7,12,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,7,0,1712,0,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2010,144,1,2105,141,1,0 +2013,6,17,1,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1845,1,0,2001,1,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,624,-2,0,900,-14,0,0 +2013,6,25,2,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1239,-6,0,1406,-1,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1520,0,0,1845,-2,0,0 +2013,5,2,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,827,-1,0,1100,-5,0,0 +2013,7,19,5,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,700,-6,0,1249,0,0,0 +2013,9,8,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1525,-1,0,1645,-23,0,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1205,-4,0,1721,-11,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,1,0,1130,-11,0,0 +2013,5,8,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-5,0,1620,-15,0,0 +2013,7,20,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,2250,4,0,615,-1,0,0 +2013,10,5,6,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1115,-6,0,1340,-11,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,41,1,1125,13,0,0 +2013,8,1,4,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1610,-1,0,1740,-5,0,0 +2013,8,16,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,830,2,0,0 +2013,10,31,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1231,1,0,1444,20,1,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,69,1,955,61,1,0 +2013,8,14,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-2,0,1826,-17,0,0 +2013,6,27,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1126,0,0,1415,-25,0,0 +2013,7,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,54,1,2016,43,1,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1431,13,0,1535,9,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,903,-5,0,1134,-7,0,0 +2013,8,8,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-2,0,940,-22,0,0 +2013,4,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,820,5,0,925,-4,0,0 +2013,8,17,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,755,-5,0,855,-10,0,0 +2013,5,8,3,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,-7,0,1014,-3,0,0 +2013,10,23,3,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1800,1,0,2215,-24,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1200,80,1,1455,80,1,0 +2013,10,16,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,-3,0,1500,-1,0,0 +2013,6,28,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,162,1,1940,203,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1405,0,0,1612,-28,0,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,105,1,2205,116,1,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,719,-6,0,1140,-3,0,0 +2013,6,1,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,652,-3,0,1402,-13,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2145,-2,0,50,-10,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,113,0,0,808,22,1,0 +2013,8,29,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1005,-4,0,1116,-14,0,0 +2013,6,17,1,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1145,5,0,1441,10,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1755,33,1,2032,22,1,0 +2013,7,11,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1923,35,1,2115,28,1,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,18,1,1725,-7,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1145,-4,0,1219,-3,0,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2045,-7,0,2354,-3,0,0 +2013,8,19,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,940,-2,0,1035,-1,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1740,80,1,2255,73,1,0 +2013,6,5,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,700,0,0,820,-14,0,0 +2013,8,11,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,825,-1,0,1105,-15,0,0 +2013,7,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1004,0,0,1100,-8,0,0 +2013,7,20,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,-5,0,1303,-6,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1255,10,0,1840,-5,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,600,-4,0,939,-6,0,0 +2013,10,7,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1220,-2,0,1250,4,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,2200,-6,0,620,-23,0,0 +2013,8,16,5,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,620,-6,0,1029,-25,0,0 +2013,5,13,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-5,0,2226,4,0,0 +2013,4,4,4,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,5,0,1420,-15,0,0 +2013,4,5,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,810,-6,0,904,-6,0,0 +2013,8,21,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,7,0,2210,5,0,0 +2013,7,20,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,18,1,1555,15,1,0 +2013,5,22,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1445,44,1,1610,36,1,0 +2013,10,14,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1248,-10,0,1801,-21,0,0 +2013,9,10,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2238,-4,0,633,-12,0,0 +2013,8,30,5,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,2,0,2034,-23,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-6,0,1133,-3,0,0 +2013,8,9,5,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1647,89,1,1800,86,1,0 +2013,7,17,3,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1115,142,1,1254,141,1,0 +2013,5,18,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1825,-6,0,2134,-11,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1850,-8,0,2003,-16,0,0 +2013,4,23,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-9,0,1559,-10,0,0 +2013,5,10,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1947,41,1,2136,45,1,0 +2013,9,5,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-10,0,1720,-31,0,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,920,-8,0,1504,-25,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1540,9,0,1820,-4,0,0 +2013,6,24,1,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,-6,0,1145,26,1,0 +2013,7,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,755,-3,0,905,5,0,0 +2013,7,13,6,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2010,17,1,1148,4,0,0 +2013,9,17,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1943,-2,0,2159,-18,0,0 +2013,8,19,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1237,0,,1354,0,1,1 +2013,5,10,5,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1010,-2,0,1531,25,1,0 +2013,8,10,6,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,937,-5,0,1803,-25,0,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1955,9,0,2155,-7,0,0 +2013,8,17,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1415,3,0,1535,-5,0,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2010,0,0,2120,0,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1000,-5,0,1227,-15,0,0 +2013,10,13,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,745,-4,0,755,5,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,30,1,1225,16,1,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1540,122,1,1655,114,1,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1035,-4,0,1215,-8,0,0 +2013,6,25,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,0,0,725,-9,0,0 +2013,8,29,4,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1331,-6,0,1523,-19,0,0 +2013,10,22,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,-3,0,1330,1,0,0 +2013,9,2,1,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,-8,0,2000,-20,0,0 +2013,8,26,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-3,0,1225,11,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1705,1,0,1855,-7,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,18,1,1808,-2,0,0 +2013,5,20,1,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2130,7,0,2357,5,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1900,0,0,2240,-3,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1040,26,1,1251,36,1,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1925,-4,0,2150,-12,0,0 +2013,6,11,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,600,0,0,918,2,0,0 +2013,7,25,4,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,955,2,0,1750,-7,0,0 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-2,0,1120,7,0,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,5,0,1405,4,0,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1624,-5,0,1842,22,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1225,32,1,1335,33,1,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,845,-4,0,1005,-3,0,0 +2013,5,10,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-3,0,1112,-14,0,0 +2013,8,25,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1530,5,0,1645,-3,0,0 +2013,7,25,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,-1,0,2105,-5,0,0 +2013,4,28,7,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,805,-5,0,1330,-19,0,0 +2013,5,7,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1627,10,0,1916,11,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,-1,0,1335,-6,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,16,1,2240,2,0,0 +2013,5,14,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1240,-24,0,0 +2013,7,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1510,-1,0,1755,-14,0,0 +2013,9,28,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-4,0,838,-7,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,92,1,1625,92,1,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,8,0,1750,-3,0,0 +2013,4,28,7,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,810,-1,0,1035,-7,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1010,-4,0,1220,3,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2110,44,1,2235,37,1,0 +2013,10,17,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,454,0,0,925,-14,0,0 +2013,7,29,1,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,2,0,2109,-6,0,0 +2013,10,17,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,2,0,1525,-5,0,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1835,36,1,2144,2,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1900,6,0,2000,0,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,46,1,5,49,1,0 +2013,5,14,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,545,-10,0,747,-11,0,0 +2013,9,5,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-3,0,1355,13,0,0 +2013,9,17,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1256,-7,0,1420,-18,0,0 +2013,4,21,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,8,0,2145,9,0,0 +2013,6,26,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-4,0,1254,-6,0,0 +2013,10,13,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-2,0,1912,-12,0,0 +2013,6,26,3,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1730,-3,0,1954,-23,0,0 +2013,6,13,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,27,1,1915,22,1,0 +2013,6,11,2,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1626,-1,0,1918,-2,0,0 +2013,7,29,1,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,724,-1,0,830,-13,0,0 +2013,6,29,6,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,12,0,1125,5,0,0 +2013,4,11,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1913,164,1,2135,156,1,0 +2013,7,17,3,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-1,0,1635,-7,0,0 +2013,10,6,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,825,-2,0,928,-3,0,0 +2013,6,28,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,0,0,720,12,0,0 +2013,10,3,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-9,0,1019,-19,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,43,1,1730,40,1,0 +2013,10,10,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,25,1,1335,17,1,0 +2013,5,31,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1358,17,1,1715,-22,0,0 +2013,4,10,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,825,-3,0,1028,-14,0,0 +2013,5,16,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,850,-3,0,1146,-8,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1005,6,0,1150,7,0,0 +2013,5,16,4,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1300,1,0,2115,4,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,7,0,1755,12,0,0 +2013,5,23,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,14,0,1309,21,1,0 +2013,5,14,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,2,0,1954,5,0,0 +2013,8,24,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2057,2,0,448,-3,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,2200,-6,0,513,-19,0,0 +2013,7,13,6,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,955,3,0,1125,-16,0,0 +2013,6,2,7,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,845,-2,0,1125,-11,0,0 +2013,6,13,4,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,4,0,1530,2,0,0 +2013,9,4,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,4,0,2038,-11,0,0 +2013,4,27,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1820,1,0,2030,3,0,0 +2013,5,21,2,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1400,-5,0,1702,-12,0,0 +2013,5,3,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,11,0,1332,22,1,0 +2013,7,10,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1355,22,1,1450,34,1,0 +2013,5,14,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1824,-2,0,2038,-34,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,2,0,1725,-7,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-1,0,1425,-4,0,0 +2013,8,27,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,-3,0,1156,-5,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1605,11,0,1738,12,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1345,-2,0,1629,-16,0,0 +2013,4,19,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,610,-3,0,735,-6,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,21,1,1054,24,1,0 +2013,7,3,3,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,-6,0,2203,-10,0,0 +2013,10,22,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1251,-6,0,1413,-11,0,0 +2013,7,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-5,0,749,-9,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,-5,0,1835,-17,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1145,18,1,1315,27,1,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2145,-5,0,2222,-17,0,0 +2013,10,16,3,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,0,0,1642,-18,0,0 +2013,4,15,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1800,-4,0,2109,-25,0,0 +2013,5,27,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1611,-6,0,1846,-15,0,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1200,-7,0,1309,1,0,0 +2013,6,12,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-8,0,1013,5,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2030,6,0,2155,-6,0,0 +2013,7,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,737,-2,0,820,-7,0,0 +2013,9,10,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,0,,2145,0,1,1 +2013,4,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1240,0,0,1600,-8,0,0 +2013,5,10,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2155,13,0,2310,20,1,0 +2013,8,17,6,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,-4,0,1630,14,0,0 +2013,10,8,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1818,-6,0,2039,6,0,0 +2013,4,7,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1812,-2,0,2100,-21,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1740,25,1,1850,8,0,0 +2013,8,12,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-2,0,1015,-13,0,0 +2013,10,14,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1650,34,1,1800,25,1,0 +2013,6,19,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1215,-1,0,1310,-12,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1050,-2,0,1220,-4,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,640,1,0,1110,1,0,0 +2013,8,17,6,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-5,0,1230,-5,0,0 +2013,6,2,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1920,-6,0,2117,-12,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,2,0,1034,-7,0,0 +2013,6,4,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,5,0,1325,-1,0,0 +2013,9,29,7,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1815,-10,0,2058,-11,0,0 +2013,8,1,4,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,118,1,2110,102,1,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1945,0,0,2115,-8,0,0 +2013,6,22,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,915,-1,0,1642,44,1,0 +2013,5,9,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,630,-3,0,725,-9,0,0 +2013,8,2,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1910,-2,0,2015,-7,0,0 +2013,10,13,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1127,58,1,1214,53,1,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,7,0,1600,1,0,0 +2013,7,27,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,14,0,1540,3,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,18,1,2246,18,1,0 +2013,6,5,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,-5,0,2128,1,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,22,1,908,5,0,0 +2013,4,15,1,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-7,0,1023,-7,0,0 +2013,9,18,3,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,905,-3,0,1155,0,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,730,16,1,900,7,0,0 +2013,10,1,2,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,725,-5,0,752,-24,0,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1420,1,0,1555,-5,0,0 +2013,6,27,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1959,-3,0,2,10,0,0 +2013,5,28,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1420,-4,0,1520,-12,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,61,1,2305,58,1,0 +2013,4,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,635,15,1,755,27,1,0 +2013,7,16,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1935,18,1,1950,12,0,0 +2013,4,10,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,840,8,0,0 +2013,4,9,2,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-3,0,835,-8,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1355,-3,0,1517,-3,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,15,1,1000,17,1,0 +2013,5,25,6,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,952,-2,0,1230,-7,0,0 +2013,5,27,1,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1205,-2,0,1325,-13,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1440,7,0,1755,0,0,0 +2013,6,7,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,2010,1,0,2325,5,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,849,0,0,1623,15,1,0 +2013,7,7,7,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-6,0,1033,-41,0,0 +2013,8,28,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,800,53,1,1100,37,1,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2120,56,1,2250,46,1,0 +2013,7,2,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-3,0,840,-6,0,0 +2013,9,9,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,-10,0,1355,-25,0,0 +2013,7,29,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,728,-14,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,-5,0,1124,-12,0,0 +2013,8,16,5,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,-5,0,730,-5,0,0 +2013,7,8,1,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-5,0,917,-12,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-3,0,1629,-2,0,0 +2013,4,13,6,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,934,-5,0,1149,15,1,0 +2013,6,14,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,56,1,1905,62,1,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1635,121,1,1735,112,1,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,738,-9,0,1006,9,0,0 +2013,10,4,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,1,0,1452,14,0,0 +2013,9,13,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,146,1,2035,136,1,0 +2013,7,31,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2210,-5,0,2358,-1,0,0 +2013,10,1,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1038,-11,0,1141,-25,0,0 +2013,10,25,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,7,0,1649,30,1,0 +2013,4,29,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,0,0,1105,-6,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,15,1,2250,8,0,0 +2013,6,7,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2140,-9,0,540,-20,0,0 +2013,5,27,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,-7,0,1025,-17,0,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,32,1,1930,20,1,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1815,7,0,2355,5,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2155,32,1,5,45,1,0 +2013,10,4,5,9E,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1445,0,,1755,0,1,1 +2013,7,27,6,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1659,-7,0,1826,-28,0,0 +2013,5,10,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-4,0,1835,-21,0,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1207,14,0,1343,13,0,0 +2013,8,25,7,EV,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1438,-6,0,1707,-9,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1405,184,1,1509,236,1,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,11,0,1826,7,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1523,-1,0,1716,-6,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,2,0,1955,-14,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,-1,0,2035,4,0,0 +2013,7,3,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,835,-1,0,955,-8,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,71,1,2149,52,1,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,846,-10,0,1730,-23,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,939,3,0,1150,-10,0,0 +2013,5,12,7,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,740,-4,0,930,-5,0,0 +2013,8,23,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-2,0,1309,1,0,0 +2013,9,18,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-9,0,849,-6,0,0 +2013,10,13,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-2,0,1440,-7,0,0 +2013,4,10,3,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,0,0,1614,-15,0,0 +2013,5,19,7,VX,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,945,-4,0,1800,-16,0,0 +2013,6,22,6,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,823,-1,0,1023,-19,0,0 +2013,5,9,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,18,1,1048,7,0,0 +2013,10,27,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1550,-5,0,1735,-8,0,0 +2013,5,31,5,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1937,-8,0,2110,-8,0,0 +2013,8,28,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1337,-2,0,1437,-1,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1935,13,0,2125,35,1,0 +2013,5,22,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,87,1,1950,84,1,0 +2013,5,13,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,1046,-16,0,0 +2013,8,23,5,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-2,0,1355,-12,0,0 +2013,5,6,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1333,-11,0,1439,-13,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2140,33,1,20,25,1,0 +2013,6,19,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-4,0,1601,-11,0,0 +2013,6,7,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1550,15,1,2005,-7,0,0 +2013,5,23,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,20,1,1550,20,1,0 +2013,8,19,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-9,0,1206,-5,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1615,23,1,2205,11,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,837,-4,0,901,0,0,0 +2013,4,22,1,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2100,2,0,2354,8,0,0 +2013,8,20,2,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1337,-9,0,1521,-8,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,2,0,2110,-9,0,0 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,800,120,1,1050,129,1,0 +2013,9,7,6,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-5,0,1239,-50,0,0 +2013,4,24,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-3,0,1645,11,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1415,12,0,1636,-6,0,0 +2013,5,5,7,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,600,-5,0,827,3,0,0 +2013,5,5,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1655,24,1,1815,36,1,0 +2013,4,8,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,16,1,1040,16,1,0 +2013,7,14,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1745,-3,0,1820,4,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-4,0,1636,1,0,0 +2013,6,4,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,815,-8,0,0 +2013,7,25,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,820,10,0,1335,15,1,0 +2013,5,2,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,-3,0,1225,0,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2100,13,0,2316,21,1,0 +2013,4,30,2,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-2,0,1912,-7,0,0 +2013,5,22,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1625,17,1,1740,11,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-5,0,2150,-20,0,0 +2013,7,6,6,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,645,-4,0,822,-17,0,0 +2013,10,3,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,49,1,1600,30,1,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2050,17,1,2235,16,1,0 +2013,7,10,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,548,-12,0,755,-11,0,0 +2013,5,16,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,0,0,1645,10,0,0 +2013,10,3,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,659,-8,0,0 +2013,5,2,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-3,0,601,-6,0,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,815,4,0,905,0,0,0 +2013,8,28,3,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,-4,0,1343,-6,0,0 +2013,4,4,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2209,6,0,2356,19,1,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1655,16,1,1800,20,1,0 +2013,8,31,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,550,-6,0,720,2,0,0 +2013,9,9,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1325,9,0,1640,32,1,0 +2013,5,6,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-10,0,1425,22,1,0 +2013,9,7,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1545,0,0,1650,-3,0,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-4,0,1135,-17,0,0 +2013,4,20,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-5,0,1820,-16,0,0 +2013,7,8,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,-3,0,1540,2,0,0 +2013,4,19,5,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2010,4,0,1152,-16,0,0 +2013,4,5,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,700,-13,0,846,-21,0,0 +2013,10,16,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,1614,-9,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1730,6,0,2016,-1,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,6,0,915,1,0,0 +2013,8,6,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,2,0,1635,5,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,1,0,1555,-9,0,0 +2013,5,26,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,12,0,1015,38,1,0 +2013,8,8,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,815,-5,0,0 +2013,5,16,4,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1340,-8,0,1529,-10,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1845,13,0,2015,6,0,0 +2013,6,25,2,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,831,26,1,1053,24,1,0 +2013,10,2,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1320,-7,0,1640,-9,0,0 +2013,9,10,2,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1325,16,1,1510,-5,0,0 +2013,6,13,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,4,0,1235,-9,0,0 +2013,7,10,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1129,-5,0,1523,-19,0,0 +2013,5,14,2,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,-1,0,1442,-5,0,0 +2013,5,17,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,625,1,0,810,-9,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1540,80,1,1645,83,1,0 +2013,6,16,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1715,-7,0,1915,-24,0,0 +2013,8,23,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,723,60,1,805,64,1,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1040,96,1,1250,73,1,0 +2013,5,3,5,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,625,-2,0,941,-22,0,0 +2013,5,27,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2110,228,1,2236,225,1,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1042,23,1,1545,-3,0,0 +2013,6,5,3,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1023,-10,0,1305,-15,0,0 +2013,9,19,4,EV,12953,LaGuardia,New York,NY,13931,Norfolk International,Norfolk,VA,840,0,0,1023,-23,0,0 +2013,4,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,-4,0,2356,7,0,0 +2013,9,26,4,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,-8,0,1915,4,0,0 +2013,10,18,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,615,-2,0,1442,-12,0,0 +2013,8,20,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1435,189,1,1626,170,1,0 +2013,10,3,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2140,-5,0,2319,-7,0,0 +2013,8,24,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,5,0,1940,1,0,0 +2013,8,22,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,5,0,1912,4,0,0 +2013,7,11,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1320,-10,0,1850,-25,0,0 +2013,10,10,4,9E,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1240,41,1,1438,13,0,0 +2013,7,24,3,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-4,0,1019,-17,0,0 +2013,5,31,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,600,-8,0,821,-7,0,0 +2013,7,14,7,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,5,0,1205,2,0,0 +2013,7,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,45,1,1705,49,1,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,27,1,1809,19,1,0 +2013,4,19,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1310,105,1,1600,86,1,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2155,39,1,2335,34,1,0 +2013,10,17,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,41,1,810,34,1,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,-3,0,1448,-7,0,0 +2013,9,6,5,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1625,-5,0,1922,-3,0,0 +2013,10,16,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-4,0,1216,-18,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1150,-7,0,1330,-14,0,0 +2013,9,28,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1715,25,1,1825,13,0,0 +2013,7,17,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1734,-6,0,1855,-14,0,0 +2013,4,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,905,7,0,1050,2,0,0 +2013,9,19,4,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,17,1,1935,11,0,0 +2013,10,13,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2216,8,0,2359,-8,0,0 +2013,9,2,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,837,-16,0,1047,-25,0,0 +2013,9,3,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1309,-10,0,1416,-17,0,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,840,-3,0,1719,-28,0,0 +2013,4,19,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1945,269,1,2240,314,1,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1905,14,0,2030,15,1,0 +2013,10,16,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,-8,0,1957,-1,0,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1605,52,1,1720,42,1,0 +2013,4,24,3,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1934,1,0,2104,-10,0,0 +2013,10,20,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1556,-3,0,1900,12,0,0 +2013,5,27,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1655,-6,0,1815,-16,0,0 +2013,7,21,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1159,-8,0,1344,-17,0,0 +2013,6,6,4,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1641,98,1,2020,87,1,0 +2013,5,3,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,-2,0,1942,-4,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1759,-1,0,2324,2,0,0 +2013,10,5,6,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-11,0,1305,-40,0,0 +2013,7,5,5,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,-5,0,1340,-12,0,0 +2013,9,10,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-13,0,1330,-20,0,0 +2013,10,9,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,28,1,2030,8,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,-6,0,1209,-53,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1357,-4,0,1432,-13,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1721,-2,0,1923,-16,0,0 +2013,6,6,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,630,-1,0,645,0,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,740,-7,0,1200,-20,0,0 +2013,8,13,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1050,-2,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,-3,0,1904,-8,0,0 +2013,9,13,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1407,-2,0,1551,-18,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1604,-8,0,1938,-23,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-3,0,1005,-12,0,0 +2013,5,8,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,535,-5,0,950,-6,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1605,27,1,1835,24,1,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2016,19,1,2346,0,0,0 +2013,5,14,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1135,-5,0,1305,-13,0,0 +2013,9,21,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1635,-2,0,1950,-15,0,0 +2013,10,31,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,9,0,1730,-9,0,0 +2013,9,20,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1438,-2,0,1619,-21,0,0 +2013,4,19,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1857,66,1,1921,67,1,0 +2013,6,26,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-4,0,1005,-11,0,0 +2013,7,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-5,0,914,-23,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2023,92,1,2149,75,1,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1700,0,0,1935,-31,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1729,-4,0,2012,-30,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,0,0,2000,-4,0,0 +2013,5,23,4,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,705,-5,0,822,-12,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-3,0,947,-1,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1455,6,0,1555,1,0,0 +2013,7,8,1,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2155,88,1,43,71,1,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1125,-5,0,1425,-10,0,0 +2013,10,29,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,834,15,1,1056,32,1,0 +2013,6,22,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-9,0,2045,2,0,0 +2013,9,26,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1125,9,0,1300,-7,0,0 +2013,4,26,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,657,-3,0,915,-9,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,840,-1,0,1030,-16,0,0 +2013,4,26,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,952,-1,0,1207,-4,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1310,-5,0,1634,-13,0,0 +2013,6,19,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-5,0,1535,-12,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-5,0,1545,-21,0,0 +2013,7,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,-4,0,1353,2,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1930,18,1,2059,21,1,0 +2013,5,12,7,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2117,23,1,2351,10,0,0 +2013,5,2,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2150,0,0,2315,-5,0,0 +2013,9,1,7,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,0,0,1425,-11,0,0 +2013,9,30,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1010,-6,0,1100,-20,0,0 +2013,8,25,7,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,805,-6,0,1105,-16,0,0 +2013,7,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,10,0,935,27,1,0 +2013,10,19,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,730,-4,0,927,-15,0,0 +2013,4,10,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1245,3,0,1420,-10,0,0 +2013,7,28,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,900,11,0,1017,-5,0,0 +2013,5,5,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-4,0,1811,7,0,0 +2013,5,17,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1300,1,0,1430,6,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1434,12,0,1528,38,1,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,12,0,959,10,0,0 +2013,7,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,715,4,0,820,5,0,0 +2013,6,10,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1007,1,0,1318,2,0,0 +2013,9,28,6,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,920,14,0,1325,-4,0,0 +2013,9,4,3,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1400,4,0,1905,16,1,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1540,15,1,2320,30,1,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,-3,0,1446,-2,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,0,0,1220,-14,0,0 +2013,5,30,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,27,1,2010,22,1,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,1,0,1451,-5,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,-2,0,1608,-17,0,0 +2013,10,16,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1942,-6,0,2140,-5,0,0 +2013,10,29,2,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1355,-8,0,1542,-15,0,0 +2013,6,8,6,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1450,5,0,1700,4,0,0 +2013,8,30,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1052,-15,0,1452,-24,0,0 +2013,6,18,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,28,1,2115,24,1,0 +2013,5,15,3,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,820,-7,0,1116,-25,0,0 +2013,8,4,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-1,0,1303,-5,0,0 +2013,7,10,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,902,9,0,948,8,0,0 +2013,9,27,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,4,0,1249,12,0,0 +2013,7,8,1,US,14893,Sacramento International,Sacramento,CA,14100,Philadelphia International,Philadelphia,PA,2159,-5,0,602,4,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,935,19,1,1305,6,0,0 +2013,5,5,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,947,-8,0,1317,-4,0,0 +2013,6,4,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-1,0,2053,-13,0,0 +2013,4,14,7,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,11,0,1328,53,1,0 +2013,4,2,2,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,5,0,927,12,0,0 +2013,7,22,1,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,-5,0,2145,-13,0,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-2,0,1010,-2,0,0 +2013,6,12,3,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,0,0,825,6,0,0 +2013,6,10,1,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,515,-1,0,626,-1,0,0 +2013,4,20,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-9,0,1315,-12,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1245,17,1,1345,9,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1635,0,0,1755,3,0,0 +2013,7,1,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-9,0,1106,-10,0,0 +2013,8,14,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1715,-1,0,2026,-5,0,0 +2013,10,18,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,942,-8,0,0 +2013,5,8,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1500,44,1,1741,55,1,0 +2013,6,18,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1155,0,0,1852,-6,0,0 +2013,4,3,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,2348,-2,0,530,-14,0,0 +2013,7,17,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,12,0,1530,-2,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2237,25,1,659,2,0,0 +2013,5,29,3,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,833,-1,0,1139,-8,0,0 +2013,4,15,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1230,-3,0,1512,-12,0,0 +2013,6,17,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-12,0,925,-26,0,0 +2013,9,23,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1150,1,0,1320,7,0,0 +2013,10,17,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,620,-1,0,750,-12,0,0 +2013,6,9,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1934,1,0,2115,-10,0,0 +2013,9,6,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,856,-20,0,0 +2013,7,4,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1440,-6,0,1608,-16,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1739,93,1,2005,71,1,0 +2013,9,19,4,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,645,51,1,935,43,1,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,955,5,0,1100,4,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,-3,0,1825,-15,0,0 +2013,9,10,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-8,0,1342,-21,0,0 +2013,6,7,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,7,0,1925,-16,0,0 +2013,5,30,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,530,-12,0,727,-10,0,0 +2013,10,30,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1818,94,1,2100,78,1,0 +2013,8,25,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,1207,-10,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,25,1,2248,17,1,0 +2013,9,22,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1215,0,0,1353,2,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1317,34,1,1612,23,1,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,551,40,1,700,36,1,0 +2013,10,15,2,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,730,5,0,814,10,0,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1940,1,0,2210,8,0,0 +2013,5,5,7,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1250,-1,0,1605,-13,0,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,63,1,2235,86,1,0 +2013,10,23,3,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,730,-2,0,1600,-25,0,0 +2013,10,16,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,1025,-13,0,0 +2013,4,1,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,600,2,0,730,-4,0,0 +2013,7,14,7,EV,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,0,0,1837,2,0,0 +2013,4,24,3,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,843,-5,0,1120,11,0,0 +2013,7,4,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,0,0,2153,-20,0,0 +2013,5,5,7,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2207,-4,0,2343,-10,0,0 +2013,4,25,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,804,-17,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,935,-3,0,1055,-30,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1115,-4,0,1320,-4,0,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,630,-7,0,811,-14,0,0 +2013,6,23,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1355,-3,0,1739,10,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,720,-5,0,1050,1,0,0 +2013,5,28,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1533,-8,0,1830,-12,0,0 +2013,4,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1858,-3,0,2056,-11,0,0 +2013,9,15,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1730,-2,0,1825,-8,0,0 +2013,6,30,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1600,13,0,1722,5,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,2,0,1303,-11,0,0 +2013,4,8,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,7,0,1215,-6,0,0 +2013,5,14,2,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,23,1,1520,12,0,0 +2013,5,9,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1115,-4,0,1354,11,0,0 +2013,4,14,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1600,39,1,1656,42,1,0 +2013,6,23,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-2,0,2230,-6,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1215,-6,0,1518,-30,0,0 +2013,7,27,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,10,0,1340,1,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,955,49,1,1305,38,1,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,0,0,1349,-15,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,22,1,2135,8,0,0 +2013,10,13,7,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,37,1,2008,30,1,0 +2013,5,22,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,630,1,0,840,-1,0,0 +2013,10,21,1,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1455,-4,0,1759,-12,0,0 +2013,4,11,4,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,800,26,1,1254,25,1,0 +2013,7,5,5,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,27,1,1927,6,0,0 +2013,10,14,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1400,18,1,2000,-8,0,0 +2013,6,5,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2010,53,1,2144,54,1,0 +2013,8,6,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1046,-12,0,1212,12,0,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1315,18,1,1825,23,1,0 +2013,10,29,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,855,-7,0,1016,-10,0,0 +2013,8,21,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,-2,0,2213,-7,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-4,0,1616,-5,0,0 +2013,5,5,7,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,-8,0,2021,-55,0,0 +2013,9,26,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-7,0,1520,-23,0,0 +2013,8,25,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,815,-6,0,1053,-6,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1945,-2,0,2128,-12,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,27,1,1345,19,1,0 +2013,6,30,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,33,1,1640,10,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,859,76,1,1142,30,1,0 +2013,8,2,5,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,11,0,1610,9,0,0 +2013,8,23,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-4,0,1935,-12,0,0 +2013,9,16,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1247,-2,0,1535,-1,0,0 +2013,7,7,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,0,0,2123,-7,0,0 +2013,10,18,5,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,13,0,1651,26,1,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,0,0,1522,-22,0,0 +2013,5,26,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1210,-4,0,1515,-25,0,0 +2013,9,4,3,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1331,-7,0,1604,-24,0,0 +2013,9,28,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1250,-3,0,1541,-1,0,0 +2013,9,30,1,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-5,0,1313,-10,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,12,0,1825,20,1,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1030,-3,0,1200,13,0,0 +2013,4,1,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-1,0,1645,-2,0,0 +2013,7,1,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1340,-2,0,1505,-6,0,0 +2013,4,13,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-5,0,950,-5,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1315,-5,0,1530,0,0,0 +2013,5,18,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,-7,0,2130,-8,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,0,,1430,0,1,1 +2013,9,20,5,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,905,-5,0,1125,-22,0,0 +2013,5,2,4,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1758,2,0,2110,11,0,0 +2013,9,25,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1928,-1,0,2110,4,0,0 +2013,6,3,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1920,20,1,2114,5,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,1,0,2058,3,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1255,0,0,1415,-7,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,-2,0,835,-15,0,0 +2013,9,17,2,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,835,-4,0,1145,-31,0,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,3,0,2145,-14,0,0 +2013,6,26,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1020,12,0,1227,1,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,1,0,2305,-1,0,0 +2013,5,6,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,34,1,1917,20,1,0 +2013,4,27,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,905,-1,0,1154,-4,0,0 +2013,4,7,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1800,9,0,1925,23,1,0 +2013,4,14,7,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1735,6,0,1945,10,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,957,-16,0,0 +2013,4,6,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,710,-1,0,840,-10,0,0 +2013,5,14,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1501,-2,0,1820,-15,0,0 +2013,8,21,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1650,-2,0,1740,6,0,0 +2013,4,3,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,0,0,1219,-16,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1045,-1,0,1315,-26,0,0 +2013,6,9,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1851,55,1,1955,47,1,0 +2013,5,19,7,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1213,44,1,1405,40,1,0 +2013,8,11,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-3,0,1445,0,0,0 +2013,10,27,7,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1800,7,0,2015,20,1,0 +2013,8,16,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,650,0,,810,0,1,1 +2013,6,21,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,-5,0,1915,-18,0,0 +2013,4,26,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,-5,0,1916,-3,0,0 +2013,4,3,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1554,64,1,1859,42,1,0 +2013,8,31,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,835,-4,0,1030,-28,0,0 +2013,8,10,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1039,-2,0,1207,-18,0,0 +2013,4,17,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,7,0,1345,-6,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,635,-4,0,845,-21,0,0 +2013,4,28,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,9,0,2025,5,0,0 +2013,8,4,7,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,700,-5,0,833,-2,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1355,-1,0,1658,-5,0,0 +2013,6,9,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,4,0,1855,2,0,0 +2013,4,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-4,0,1336,-8,0,0 +2013,4,18,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1635,348,1,1820,354,1,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,900,35,1,1156,31,1,0 +2013,6,22,6,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,930,-4,0,1110,3,0,0 +2013,5,2,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,4,0,1355,-6,0,0 +2013,6,11,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-3,0,1011,0,0,0 +2013,5,31,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-1,0,1510,-12,0,0 +2013,7,18,4,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,800,-2,0,1140,2,0,0 +2013,6,16,7,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,-2,0,1711,-10,0,0 +2013,7,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,19,1,1948,10,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,945,18,1,1230,10,0,0 +2013,6,18,2,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,-7,0,1749,4,0,0 +2013,7,3,3,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,80,1,629,95,1,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1415,-4,0,1744,-23,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1248,-2,0,1408,-20,0,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1402,-7,0,1701,11,0,0 +2013,10,12,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,2,0,1550,-3,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,-4,0,1415,6,0,0 +2013,4,24,3,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,815,-5,0,1047,-13,0,0 +2013,4,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1810,9,0,1950,10,0,0 +2013,6,1,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,-3,0,2102,-18,0,0 +2013,4,12,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1635,3,0,1800,-1,0,0 +2013,5,22,3,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,-4,0,1720,-16,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1705,13,0,1841,10,0,0 +2013,5,1,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,907,-10,0,1021,-18,0,0 +2013,8,1,4,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,11,0,1229,3,0,0 +2013,7,10,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1534,3,0,2215,18,1,0 +2013,7,15,1,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,600,-1,0,900,-11,0,0 +2013,4,29,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1311,-3,0,1527,10,0,0 +2013,7,5,5,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2245,-10,0,654,-24,0,0 +2013,9,3,2,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1330,-7,0,1608,-10,0,0 +2013,9,10,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-1,0,1230,-11,0,0 +2013,8,6,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,0,0,1607,-7,0,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,814,-7,0,1035,-16,0,0 +2013,8,27,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1620,-7,0,1730,-12,0,0 +2013,9,13,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,801,0,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,920,11,0,1225,4,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,6,0,2315,-2,0,0 +2013,9,3,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1400,-2,0,1620,-3,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2155,69,1,2335,68,1,0 +2013,7,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,725,-2,0,820,-5,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,845,4,0,1120,-15,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1015,22,1,1500,16,1,0 +2013,8,16,5,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,921,14,0,1318,-9,0,0 +2013,9,17,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-8,0,917,6,0,0 +2013,5,14,2,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1249,-6,0,1454,-13,0,0 +2013,9,30,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2015,-5,0,2135,-7,0,0 +2013,5,6,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,4,0,1415,-2,0,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2005,57,1,2149,51,1,0 +2013,4,2,2,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2100,-1,0,2225,-7,0,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1950,54,1,2125,84,1,0 +2013,5,15,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-12,0,700,-19,0,0 +2013,9,3,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1523,-6,0,2329,-27,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2025,3,0,2255,-21,0,0 +2013,10,12,6,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-4,0,1021,-32,0,0 +2013,9,22,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,-4,0,1549,0,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-8,0,1628,7,0,0 +2013,8,18,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,625,-9,0,747,-35,0,0 +2013,10,24,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1225,0,0,1545,10,0,0 +2013,8,23,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-6,0,608,-3,0,0 +2013,9,2,1,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-9,0,1649,-22,0,0 +2013,10,26,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,28,1,2350,13,0,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,-4,0,2045,-7,0,0 +2013,10,26,6,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2119,1,0,2229,-3,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,-4,0,2126,-14,0,0 +2013,7,4,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1730,0,0,1825,0,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,-1,0,1128,-11,0,0 +2013,9,20,5,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-1,0,1030,-17,0,0 +2013,5,10,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1653,-4,0,1814,-12,0,0 +2013,7,21,7,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1525,-5,0,1605,-7,0,0 +2013,7,28,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-7,0,904,-12,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1332,110,1,1733,80,1,0 +2013,6,7,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1030,13,0,1210,-15,0,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,3,0,2020,-3,0,0 +2013,9,10,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-8,0,852,4,0,0 +2013,5,24,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1210,31,1,1255,34,1,0 +2013,10,12,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-1,0,750,-7,0,0 +2013,10,3,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1029,-4,0,1230,-5,0,0 +2013,10,17,4,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,810,-3,0,1111,-11,0,0 +2013,10,27,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1755,7,0,1858,-8,0,0 +2013,6,11,2,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1252,6,0,1819,11,0,0 +2013,10,28,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1721,-3,0,2100,-15,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,12,0,939,18,1,0 +2013,6,29,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,22,1,1857,20,1,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,-1,0,1805,0,0,0 +2013,4,3,3,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1850,-7,0,2115,-10,0,0 +2013,8,20,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-3,0,1821,2,0,0 +2013,5,30,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1047,-5,0,1235,-10,0,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,-3,0,2052,-11,0,0 +2013,10,9,3,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-2,0,1950,3,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-8,0,2202,-13,0,0 +2013,4,12,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-3,0,1202,-12,0,0 +2013,5,12,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-7,0,1535,-17,0,0 +2013,8,12,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1830,22,1,1935,13,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,1,0,1705,13,0,0 +2013,10,24,4,OO,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1030,-5,0,0 +2013,10,29,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-5,0,1350,-16,0,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,8,0,1635,2,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,-5,0,858,-7,0,0 +2013,7,26,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,7,0,950,-8,0,0 +2013,4,4,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2040,40,1,2200,26,1,0 +2013,4,9,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1737,-10,0,1814,-10,0,0 +2013,5,31,5,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1932,0,,2042,0,1,1 +2013,8,2,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1535,11,0,1700,5,0,0 +2013,10,29,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1650,-2,0,1855,24,1,0 +2013,4,22,1,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,1,0,1255,-7,0,0 +2013,5,19,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1905,5,0,2115,-11,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,815,-5,0,1119,-7,0,0 +2013,7,10,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,146,1,1916,179,1,0 +2013,10,17,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1559,-2,0,1906,-43,0,0 +2013,9,4,3,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1055,-8,0,1501,-4,0,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,805,-6,0,930,-6,0,0 +2013,7,27,6,EV,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,823,-6,0,944,-22,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,13,0,1540,6,0,0 +2013,7,25,4,DL,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,16,1,1823,26,1,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,705,-2,0,811,-16,0,0 +2013,4,21,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,905,-2,0,1010,-1,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,2,0,845,-8,0,0 +2013,4,13,6,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1638,-6,0,1927,-1,0,0 +2013,7,13,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-4,0,610,15,1,0 +2013,6,30,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1414,7,0,1602,-8,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1230,3,0,1605,40,1,0 +2013,8,18,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,-2,0,1923,6,0,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,2015,0,0,130,0,0,0 +2013,5,30,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-5,0,1926,9,0,0 +2013,4,1,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,-3,0,1054,-21,0,0 +2013,5,17,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,1,0,1329,-5,0,0 +2013,10,30,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,43,1,1900,31,1,0 +2013,5,20,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1937,-3,0,2155,-23,0,0 +2013,10,7,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,740,6,0,1039,2,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1315,13,0,1625,5,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1510,-2,0,1830,15,1,0 +2013,9,27,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-1,0,1155,-2,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1620,-4,0,1818,-8,0,0 +2013,8,24,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,705,-7,0,1048,-3,0,0 +2013,6,4,2,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,-2,0,1849,-16,0,0 +2013,8,23,5,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,756,5,0,901,0,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,113,1,24,92,1,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1905,23,1,2100,6,0,0 +2013,7,23,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,-8,0,2135,-2,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,920,-2,0,1740,0,0,0 +2013,6,6,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2110,15,1,2125,18,1,0 +2013,4,6,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1335,0,0,1455,-7,0,0 +2013,10,9,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,-4,0,717,-10,0,0 +2013,5,9,4,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,755,-3,0,1051,1,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-2,0,1132,-10,0,0 +2013,5,7,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-5,0,1459,-2,0,0 +2013,6,30,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1851,22,1,2057,26,1,0 +2013,6,29,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-7,0,1045,-29,0,0 +2013,6,13,4,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1215,53,1,1342,72,1,0 +2013,9,11,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,-14,0,720,1,0,0 +2013,9,1,7,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,0,0,1705,-14,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1205,38,1,1310,33,1,0 +2013,7,14,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1140,1,0,1428,-13,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,-2,0,1402,2,0,0 +2013,4,25,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1108,9,0,1417,-2,0,0 +2013,6,21,5,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-11,0,936,-17,0,0 +2013,8,15,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2104,-4,0,512,-18,0,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,10,0,1636,-3,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,12,0,1535,1,0,0 +2013,5,30,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,-6,0,2054,-28,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1716,4,0,1913,1,0,0 +2013,10,4,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1205,-8,0,1420,-25,0,0 +2013,5,1,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1925,1,0,2105,-47,0,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1641,89,1,1821,93,1,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1005,-4,0,1140,-11,0,0 +2013,5,4,6,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1558,-2,0,2004,9,0,0 +2013,6,12,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,7,0,2058,11,0,0 +2013,4,29,1,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,915,109,1,1745,116,1,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,922,-6,0,1135,-34,0,0 +2013,6,26,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,90,1,2213,111,1,0 +2013,7,26,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,628,-8,0,805,-11,0,0 +2013,8,29,4,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1440,0,0,1721,-1,0,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,855,23,1,1430,7,0,0 +2013,4,24,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-2,0,1940,-34,0,0 +2013,6,30,7,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,-1,0,612,-3,0,0 +2013,8,30,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-8,0,1215,-26,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1315,0,0,1540,1,0,0 +2013,8,23,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,-6,0,2113,-7,0,0 +2013,9,1,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1225,-3,0,1948,-9,0,0 +2013,9,8,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-7,0,1000,-7,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,50,1,5,0,1,1 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1305,-4,0,1610,-18,0,0 +2013,5,12,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-8,0,1421,-12,0,0 +2013,9,20,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1105,21,1,1205,20,1,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1222,-4,0,1410,-16,0,0 +2013,7,10,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,847,-4,0,1042,20,1,0 +2013,4,2,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-5,0,1639,8,0,0 +2013,6,18,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,902,9,0,1116,-12,0,0 +2013,6,25,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,600,-4,0,752,8,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,900,-1,0,1253,-28,0,0 +2013,10,17,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1608,-6,0,1725,-9,0,0 +2013,7,19,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,605,-2,0,620,1,0,0 +2013,10,24,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1955,-7,0,2121,-7,0,0 +2013,10,14,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,2,0,1715,6,0,0 +2013,9,6,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1643,6,0,0 +2013,8,22,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-6,0,1408,-15,0,0 +2013,7,22,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,22,1,810,16,1,0 +2013,4,1,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1655,74,1,2205,61,1,0 +2013,4,18,4,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,20,1,920,18,1,0 +2013,6,14,5,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-1,0,1309,-10,0,0 +2013,7,15,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1038,-12,0,1137,-34,0,0 +2013,7,16,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1226,42,1,1425,79,1,0 +2013,5,14,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1650,-8,0,0 +2013,10,8,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1555,-1,0,1705,-9,0,0 +2013,10,10,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1300,-6,0,1440,1,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,841,-8,0,1138,-17,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,-3,0,1320,-7,0,0 +2013,6,12,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,6,0,2225,-14,0,0 +2013,4,24,3,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1658,4,0,1828,21,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1400,0,0,1625,-7,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-8,0,201,5,0,0 +2013,8,8,4,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1307,62,1,1800,75,1,0 +2013,7,12,5,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-13,0,1020,-18,0,0 +2013,8,5,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1446,0,0,1745,-16,0,0 +2013,6,14,5,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,0,0,1231,-6,0,0 +2013,7,7,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,831,-6,0,0 +2013,8,2,5,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1512,-4,0,1835,-27,0,0 +2013,8,31,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2042,66,1,2319,58,1,0 +2013,6,15,6,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,1,0,2224,16,1,0 +2013,9,22,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1935,18,1,2005,32,1,0 +2013,7,7,7,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,30,1,1300,24,1,0 +2013,6,7,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,0,0,1517,29,1,0 +2013,8,4,7,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1940,8,0,2225,13,0,0 +2013,4,8,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,4,0,750,-8,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,41,1,1915,34,1,0 +2013,4,25,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-2,0,2210,-13,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1135,5,0,1245,16,1,0 +2013,9,14,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-6,0,2355,10,0,0 +2013,6,16,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,8,0,2000,-4,0,0 +2013,5,1,3,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,22,1,1630,57,1,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,3,0,1340,-16,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,855,7,0,1210,1,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1640,5,0,1800,8,0,0 +2013,6,21,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,855,-2,0,1115,-2,0,0 +2013,8,23,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1355,-3,0,1615,-14,0,0 +2013,8,4,7,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1119,-12,0,1254,-22,0,0 +2013,4,8,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2323,-1,0,519,-12,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,720,8,0,919,-8,0,0 +2013,9,13,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,950,-5,0,1119,7,0,0 +2013,9,24,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-9,0,1155,-25,0,0 +2013,10,23,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,930,-3,0,1200,-16,0,0 +2013,10,15,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,10,0,2120,18,1,0 +2013,4,18,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,851,-10,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,35,1,2042,32,1,0 +2013,7,19,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1410,-6,0,1444,1,0,0 +2013,6,13,4,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1039,-6,0,1119,-15,0,0 +2013,7,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1425,2,0,1725,9,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,2,0,1355,-7,0,0 +2013,6,14,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1120,3,0,1145,1,0,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1010,-6,0,1133,-10,0,0 +2013,10,8,2,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,67,1,2028,49,1,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1315,-6,0,1659,-23,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1355,5,0,1745,3,0,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,952,5,0,0 +2013,4,2,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1920,-4,0,2247,-7,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,-3,0,1440,1,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1435,10,0,1625,18,1,0 +2013,9,9,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2009,-4,0,2350,-2,0,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,1,0,1120,-11,0,0 +2013,8,10,6,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,712,-8,0,1035,-9,0,0 +2013,4,13,6,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-5,0,910,-6,0,0 +2013,7,28,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,-1,0,1235,7,0,0 +2013,10,30,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-6,0,1636,-31,0,0 +2013,9,3,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1700,-4,0,2032,0,0,0 +2013,6,16,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1650,0,0,1805,-2,0,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1745,5,0,1910,0,0,0 +2013,6,29,6,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-6,0,1016,20,1,0 +2013,5,13,1,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,-6,0,1723,-12,0,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-7,0,1130,-15,0,0 +2013,9,24,2,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,840,-1,0,1245,-13,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1610,-1,0,1728,-5,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1745,28,1,2025,41,1,0 +2013,9,10,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1708,-3,0,1833,-12,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,12,0,2232,4,0,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,5,0,1323,1,0,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2304,-5,0,2359,5,0,0 +2013,4,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1230,-7,0,1354,-8,0,0 +2013,8,24,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,845,-9,0,1237,-25,0,0 +2013,6,8,6,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2123,-2,0,555,-1,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1905,33,1,2111,18,1,0 +2013,9,9,1,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,-3,0,1104,-13,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-3,0,825,-12,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2030,9,0,2215,27,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1510,0,0,1706,-12,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,700,-5,0,845,-8,0,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2215,1,0,2335,1,0,0 +2013,9,30,1,HA,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,1,0,2205,0,0,0 +2013,5,10,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-10,0,804,-17,0,0 +2013,8,22,4,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-9,0,928,-12,0,0 +2013,4,6,6,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1039,2,0,1344,6,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,-3,0,938,-13,0,0 +2013,4,29,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,945,10,0,1755,1,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,17,1,900,14,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,2,0,1800,8,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,950,9,0,1420,-9,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,5,0,1227,-14,0,0 +2013,5,15,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-10,0,1645,0,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1055,2,0,1200,-1,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,920,0,0,1030,9,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,-3,0,1043,-3,0,0 +2013,7,26,5,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2145,-8,0,540,-22,0,0 +2013,7,22,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1416,111,1,1639,113,1,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1520,-8,0,1646,-11,0,0 +2013,9,12,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,947,-3,0,1253,-4,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1450,2,0,1725,-10,0,0 +2013,4,30,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1955,-2,0,2125,-11,0,0 +2013,8,11,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1820,-5,0,1955,-26,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-3,0,1030,-16,0,0 +2013,9,9,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-11,0,2125,-26,0,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2039,-5,0,2335,-5,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1935,-3,0,2205,-27,0,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,-1,0,2104,1,0,0 +2013,5,16,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1137,-6,0,1341,-22,0,0 +2013,6,26,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1005,10,0,1105,7,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,0,0,1850,-6,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1800,-4,0,2020,-18,0,0 +2013,8,28,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1900,20,1,2230,8,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1020,-2,0,1351,-10,0,0 +2013,4,5,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1540,0,0,1640,-10,0,0 +2013,8,27,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,81,1,1740,64,1,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-7,0,1748,-1,0,0 +2013,6,27,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-2,0,1825,9,0,0 +2013,9,16,1,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-12,0,2000,-12,0,0 +2013,4,23,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,21,1,804,17,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1051,4,0,1237,-5,0,0 +2013,8,14,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,950,23,1,1100,20,1,0 +2013,9,13,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,36,1,1620,35,1,0 +2013,7,2,2,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1645,44,1,1935,88,1,0 +2013,7,25,4,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1935,8,0,2125,5,0,0 +2013,9,8,7,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,-6,0,2018,-4,0,0 +2013,6,19,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,847,-1,0,0 +2013,6,22,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1723,22,1,2124,30,1,0 +2013,4,12,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,26,1,1429,21,1,0 +2013,5,7,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1306,4,0,1820,-8,0,0 +2013,10,6,7,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1035,-4,0,1630,-2,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,-1,0,1135,-12,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-7,0,950,-9,0,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,-4,0,1527,-8,0,0 +2013,4,7,7,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-7,0,1628,-11,0,0 +2013,5,16,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1936,64,1,2323,51,1,0 +2013,9,5,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1349,37,1,1758,26,1,0 +2013,9,20,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-4,0,2358,-7,0,0 +2013,7,25,4,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,0,0,1455,-10,0,0 +2013,5,17,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1712,-2,0,1957,-16,0,0 +2013,4,5,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1405,-3,0,1555,-9,0,0 +2013,10,15,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1655,13,0,1800,0,0,0 +2013,7,10,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1845,0,,2030,0,1,1 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,18,1,2028,15,1,0 +2013,5,30,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,734,-6,0,920,-1,0,0 +2013,7,7,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-3,0,1950,-22,0,0 +2013,6,30,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,6,0,1825,23,1,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,745,-1,0,1033,-4,0,0 +2013,6,6,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2026,149,1,2158,149,1,0 +2013,7,22,1,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2130,19,1,535,7,0,0 +2013,4,7,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1210,-6,0,1509,-9,0,0 +2013,9,6,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-5,0,1005,-9,0,0 +2013,9,16,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1921,-13,0,2204,-24,0,0 +2013,10,5,6,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1453,-1,0,1849,0,0,0 +2013,6,4,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2147,-7,0,2202,-14,0,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,21,1,2018,13,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1548,9,0,1801,5,0,0 +2013,9,4,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1610,-4,0,1630,-14,0,0 +2013,9,29,7,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-1,0,1355,12,0,0 +2013,7,1,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,601,-2,0,854,-1,0,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,221,1,1504,219,1,0 +2013,4,2,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1145,-10,0,1302,-24,0,0 +2013,5,24,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1400,7,0,1414,1,0,0 +2013,7,31,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1620,-17,0,0 +2013,5,12,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1438,-5,0,1559,-7,0,0 +2013,7,3,3,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,-2,0,1315,-12,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,850,-2,0,1105,-18,0,0 +2013,5,10,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1415,1,0,1545,9,0,0 +2013,9,25,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1500,35,1,1630,27,1,0 +2013,5,30,4,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,21,1,1358,36,1,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,4,0,1455,8,0,0 +2013,6,6,4,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,-2,0,1846,-23,0,0 +2013,5,3,5,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-6,0,1106,0,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,24,1,845,24,1,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1929,3,0,2040,-9,0,0 +2013,7,25,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2010,-5,0,2050,-6,0,0 +2013,5,29,3,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1858,52,1,2130,33,1,0 +2013,4,6,6,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,655,-6,0,820,-4,0,0 +2013,8,2,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1554,-1,0,1715,-7,0,0 +2013,5,5,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,820,0,0,925,-3,0,0 +2013,4,12,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,630,-8,0,915,-7,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,-2,0,2034,-7,0,0 +2013,10,16,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1720,-4,0,2005,-19,0,0 +2013,9,17,2,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,925,-12,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2200,-2,0,2250,24,1,0 +2013,4,16,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,25,1,1314,49,1,0 +2013,10,7,1,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1734,192,1,2020,182,1,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1655,19,1,1944,-6,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,0,0,2206,-6,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1923,175,1,2020,164,1,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1035,0,0,1505,-6,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1120,55,1,2000,28,1,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,14,0,1445,11,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-1,0,1107,-5,0,0 +2013,9,9,1,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1635,0,0,1820,11,0,0 +2013,6,4,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,707,10,0,840,17,1,0 +2013,4,30,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1430,-4,0,1554,-6,0,0 +2013,4,27,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-1,0,1322,6,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,909,1,0,1155,-3,0,0 +2013,6,26,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-7,0,1252,-4,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,-4,0,2017,9,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,-1,0,1057,-13,0,0 +2013,4,14,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1956,-4,0,2141,-1,0,0 +2013,6,15,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-13,0,1457,-33,0,0 +2013,5,22,3,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1515,13,0,1645,-6,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,948,19,1,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,741,-6,0,925,9,0,0 +2013,8,6,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-7,0,1737,-38,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1752,129,1,2359,110,1,0 +2013,7,20,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,810,-1,0,1101,-5,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1800,1,0,2105,9,0,0 +2013,6,4,2,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,0,,1455,0,1,1 +2013,9,2,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1315,-2,0,1645,-9,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2135,14,0,2320,28,1,0 +2013,10,14,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-6,0,835,7,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,6,0,1310,1,0,0 +2013,7,1,1,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,31,1,1635,42,1,0 +2013,5,17,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1713,-6,0,2137,2,0,0 +2013,6,2,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,45,1,1555,37,1,0 +2013,4,1,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1840,-3,0,1950,-10,0,0 +2013,6,29,6,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1532,5,0,1707,3,0,0 +2013,7,29,1,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-2,0,1349,-10,0,0 +2013,6,12,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1740,6,0,1855,17,1,0 +2013,8,4,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,0,0,1255,16,1,0 +2013,10,29,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1600,9,0,1730,2,0,0 +2013,10,14,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-6,0,1900,14,0,0 +2013,4,13,6,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,17,1,1901,54,1,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2113,62,1,2235,69,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,0,0,1547,-16,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,2,0,1758,-10,0,0 +2013,5,20,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,700,-7,0,826,-32,0,0 +2013,5,29,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1950,9,0,2050,10,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1820,0,0,2108,11,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1408,-4,0,1451,-7,0,0 +2013,7,29,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,2,0,1010,-13,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,940,0,0,1050,-16,0,0 +2013,7,27,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,0,0,740,8,0,0 +2013,7,7,7,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1425,25,1,1710,17,1,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,4,0,1910,-12,0,0 +2013,5,29,3,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,9,0,1535,6,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,8,0,915,1,0,0 +2013,6,11,2,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1217,-3,0,1352,-19,0,0 +2013,7,28,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-4,0,912,-11,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-1,0,1751,12,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1820,13,0,1956,8,0,0 +2013,7,28,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,-9,0,2350,-5,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,945,2,0,1350,-1,0,0 +2013,4,12,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1145,13,0,1330,-6,0,0 +2013,10,14,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1224,0,0,1441,-11,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1747,31,1,1918,47,1,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,715,15,1,910,9,0,0 +2013,10,28,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1330,-1,0,1450,-2,0,0 +2013,7,11,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,24,1,1041,20,1,0 +2013,6,29,6,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,755,10,0,1009,-24,0,0 +2013,5,19,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,535,-9,0,950,-9,0,0 +2013,4,9,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1102,-3,0,1345,2,0,0 +2013,8,8,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,17,1,2155,3,0,0 +2013,8,10,6,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,6,0,1458,-13,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1000,3,0,1220,-14,0,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,39,1,1435,89,1,0 +2013,9,29,7,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1030,-1,0,1534,-4,0,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,-1,0,2133,-3,0,0 +2013,7,3,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1046,-4,0,1110,-25,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1415,49,1,1625,45,1,0 +2013,6,10,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2030,78,1,2217,113,1,0 +2013,5,31,5,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2205,-6,0,2317,-15,0,0 +2013,4,19,5,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1538,49,1,1732,53,1,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-5,0,1001,-9,0,0 +2013,7,15,1,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,705,-5,0,720,-12,0,0 +2013,7,17,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,745,-3,0,1520,-17,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,850,14,0,1030,-12,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-3,0,1502,-12,0,0 +2013,7,3,3,EV,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1735,0,0,1823,-9,0,0 +2013,5,9,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1940,6,0,55,4,0,0 +2013,9,19,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1245,118,1,1415,142,1,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1720,4,0,1940,0,0,0 +2013,10,2,3,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,827,-7,0,1011,-13,0,0 +2013,6,7,5,FL,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,1,0,1710,44,1,0 +2013,8,24,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2125,1,0,15,3,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1306,11,0,1514,6,0,0 +2013,10,30,3,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,-5,0,1605,-25,0,0 +2013,7,6,6,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1730,20,1,2031,-6,0,0 +2013,6,27,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,1,0,1550,-1,0,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,13,0,1700,7,0,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1030,20,1,1336,3,0,0 +2013,9,12,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1420,21,1,1540,14,0,0 +2013,10,15,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-4,0,920,-3,0,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1810,8,0,1925,6,0,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,835,169,1,1027,151,1,0 +2013,9,30,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,658,-3,0,1302,-13,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2059,16,1,2234,-4,0,0 +2013,5,1,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,63,1,1855,40,1,0 +2013,9,30,1,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-3,0,2140,-11,0,0 +2013,6,16,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,27,1,1635,25,1,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1525,2,0,1625,0,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1950,177,1,2115,173,1,0 +2013,8,30,5,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,855,10,0,1101,-9,0,0 +2013,8,6,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-4,0,1255,-14,0,0 +2013,9,12,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1826,10,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,-3,0,1030,-7,0,0 +2013,8,25,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-7,0,1140,-11,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,550,1,0,1421,-20,0,0 +2013,6,28,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,306,1,1839,294,1,0 +2013,5,19,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-10,0,1926,-8,0,0 +2013,7,10,3,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1805,3,0,1840,14,0,0 +2013,6,16,7,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1327,-2,0,1545,13,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,10,0,1105,-20,0,0 +2013,6,23,7,9E,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,645,33,1,821,90,1,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1240,39,1,1500,56,1,0 +2013,5,29,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-9,0,904,-15,0,0 +2013,10,30,3,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1105,-11,0,1229,-20,0,0 +2013,10,20,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-1,0,1542,-10,0,0 +2013,9,30,1,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,35,1,2115,35,1,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1047,1,0,1827,-8,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1925,-2,0,2315,-6,0,0 +2013,4,27,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,740,-3,0,1010,-13,0,0 +2013,10,26,6,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1408,-10,0,0 +2013,4,20,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,11,0,1702,-9,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2030,7,0,2139,0,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1931,38,1,2216,26,1,0 +2013,7,23,2,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,124,1,1635,113,1,0 +2013,4,17,3,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,6,0,1025,17,1,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,0,0,1440,-7,0,0 +2013,10,16,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1910,-4,0,2155,-19,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1720,54,1,1835,49,1,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,745,49,1,1040,44,1,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-6,0,1740,-4,0,0 +2013,8,3,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,1,0,1135,-8,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1041,-7,0,1313,-23,0,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1325,2,0,1545,-18,0,0 +2013,9,19,4,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,745,0,0,940,-2,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1345,-2,0,1545,-3,0,0 +2013,4,9,2,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,700,0,0,800,3,0,0 +2013,8,21,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1845,5,0,1930,2,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-3,0,2215,-8,0,0 +2013,5,12,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,926,3,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,16,1,1951,15,1,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1615,28,1,1900,6,0,0 +2013,9,12,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-6,0,1034,1,0,0 +2013,8,13,2,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2030,-3,0,2206,19,1,0 +2013,7,1,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1737,-4,0,1921,-2,0,0 +2013,5,14,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,720,4,0,845,-16,0,0 +2013,5,10,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,-6,0,1825,-12,0,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,719,0,0,856,-8,0,0 +2013,10,23,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,639,-9,0,835,-31,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,8,0,1948,15,1,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1335,12,0,1700,13,0,0 +2013,7,21,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-7,0,849,-7,0,0 +2013,8,9,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-3,0,1230,-14,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1630,-1,0,1810,-15,0,0 +2013,7,25,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1935,1,0,1950,16,1,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2105,14,0,10,1,0,0 +2013,5,13,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-7,0,1040,-24,0,0 +2013,4,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,732,-5,0,900,-2,0,0 +2013,7,14,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,854,-8,0,1040,-28,0,0 +2013,9,5,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-1,0,1905,0,0,0 +2013,6,14,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-11,0,2128,-15,0,0 +2013,8,17,6,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1710,-3,0,1920,-4,0,0 +2013,8,5,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,17,1,1341,19,1,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,65,1,2200,57,1,0 +2013,10,26,6,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,800,-2,0,1310,-18,0,0 +2013,6,12,3,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,854,-6,0,1040,-15,0,0 +2013,9,4,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-2,0,1013,-11,0,0 +2013,6,18,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,8,0,1805,17,1,0 +2013,4,2,2,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,645,-6,0,820,-8,0,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,30,15,1,610,-2,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-1,0,1115,-14,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,-7,0,1100,-28,0,0 +2013,6,27,4,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,16,1,2140,33,1,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,849,-1,0,1028,-6,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,910,0,0,1640,3,0,0 +2013,9,21,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1440,-7,0,1612,-14,0,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-6,0,1309,7,0,0 +2013,10,22,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,-4,0,1700,-14,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-3,0,1848,-17,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1450,43,1,1810,37,1,0 +2013,7,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,3,0,1130,-8,0,0 +2013,9,2,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,-5,0,957,-8,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,8,0,2059,-6,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1540,-10,0,1751,-6,0,0 +2013,10,23,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-2,0,1939,-12,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,930,10,0,1040,16,1,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,805,0,0,1114,-9,0,0 +2013,7,26,5,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,645,-3,0,850,-13,0,0 +2013,10,25,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,1420,-3,0,1640,-3,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2050,1,0,40,13,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2215,-4,0,20,4,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1905,21,1,2240,21,1,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-7,0,1326,-12,0,0 +2013,8,3,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1555,50,1,1651,55,1,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1308,-8,0,1455,-9,0,0 +2013,5,30,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,42,1,1645,69,1,0 +2013,7,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1850,0,0,2100,5,0,0 +2013,9,24,2,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1530,-7,0,1715,-7,0,0 +2013,6,1,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,2,0,1230,3,0,0 +2013,5,16,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,21,1,1820,12,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1915,-3,0,2038,-13,0,0 +2013,7,10,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1930,397,1,2232,364,1,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,750,9,0,1025,2,0,0 +2013,10,6,7,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,650,-6,0,848,-22,0,0 +2013,5,4,6,EV,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,804,11,0,1026,24,1,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1535,12,0,1718,4,0,0 +2013,5,31,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-12,0,1420,-14,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,44,1,1525,26,1,0 +2013,7,31,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1004,-4,0,1100,-10,0,0 +2013,7,1,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,19,1,1905,24,1,0 +2013,9,6,5,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1034,-6,0,1158,-22,0,0 +2013,7,12,5,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-8,0,655,-2,0,0 +2013,9,8,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1215,-3,0,2018,-10,0,0 +2013,6,10,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,110,1,1749,100,1,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2055,-1,0,2221,-27,0,0 +2013,10,29,2,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1300,18,1,1439,10,0,0 +2013,10,31,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,-7,0,1130,2,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1630,35,1,1910,25,1,0 +2013,7,25,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1440,-3,0,0 +2013,5,1,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1845,13,0,2015,1,0,0 +2013,7,10,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1235,-4,0,1705,-7,0,0 +2013,10,7,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-6,0,1405,10,0,0 +2013,7,10,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-3,0,754,3,0,0 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1210,-4,0,1435,3,0,0 +2013,4,19,5,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,10,0,2154,-3,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,21,1,1455,6,0,0 +2013,9,3,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2110,44,1,2255,26,1,0 +2013,5,25,6,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2359,-5,0,601,-9,0,0 +2013,7,29,1,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1635,111,1,2010,181,1,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,15,1,1835,12,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1524,-5,0,1655,39,1,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,3,0,1405,6,0,0 +2013,4,12,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1825,-5,0,2115,-2,0,0 +2013,4,28,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,16,1,810,0,0,0 +2013,7,28,7,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1455,-4,0,1715,-12,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,1,0,1622,6,0,0 +2013,10,10,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,825,-2,0,1023,0,0,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,925,-3,0,1155,-12,0,0 +2013,10,12,6,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,925,15,1,1110,-2,0,0 +2013,10,4,5,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,710,-3,0,1000,0,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,2,0,2246,-12,0,0 +2013,6,30,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,122,1,1900,120,1,0 +2013,8,8,4,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,1,0,1040,15,1,0 +2013,7,7,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,6,0,1525,-4,0,0 +2013,7,2,2,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,813,-5,0,954,-13,0,0 +2013,5,2,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-3,0,2040,3,0,0 +2013,6,5,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-7,0,1247,-22,0,0 +2013,8,4,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1501,1,0,1800,9,0,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,740,1,0,1010,8,0,0 +2013,5,15,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1220,2,0,1422,13,0,0 +2013,4,25,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,0,0,810,-7,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,8,0,1840,0,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,49,1,35,40,1,0 +2013,7,25,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,55,1,1615,41,1,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,955,-2,0,1125,4,0,0 +2013,10,17,4,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-10,0,610,-21,0,0 +2013,6,11,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,5,0,1939,-11,0,0 +2013,5,27,1,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1748,-6,0,1919,-5,0,0 +2013,10,5,6,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-11,0,1005,-10,0,0 +2013,6,30,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,-8,0,1855,38,1,0 +2013,5,4,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1655,-2,0,1725,-20,0,0 +2013,4,19,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,1,0,1135,14,0,0 +2013,4,28,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,0,0,1934,-34,0,0 +2013,4,18,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-4,0,1656,-9,0,0 +2013,4,24,3,UA,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,913,0,0,1032,-1,0,0 +2013,10,27,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,0,0,2040,-1,0,0 +2013,4,7,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1810,-2,0,2037,-13,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,12,0,2148,6,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,3,0,1913,3,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1051,-2,0,1237,-17,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,0,0,1256,-16,0,0 +2013,6,12,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1040,-5,0,1223,-2,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1755,8,0,2204,-4,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,24,1,2245,20,1,0 +2013,7,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1545,-2,0,1649,-9,0,0 +2013,8,21,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,6,0,1016,8,0,0 +2013,6,18,2,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,-5,0,725,12,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,0,0,1555,-5,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1525,53,1,1630,43,1,0 +2013,8,11,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-6,0,1555,-18,0,0 +2013,5,4,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-7,0,1735,-11,0,0 +2013,6,5,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,925,-3,0,1035,-1,0,0 +2013,8,31,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-6,0,1544,7,0,0 +2013,4,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1252,45,1,1528,38,1,0 +2013,6,24,1,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-1,0,1313,-6,0,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1120,-3,0,1445,-9,0,0 +2013,10,17,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1350,13,0,2010,1,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,3,0,6,-1,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1315,27,1,1430,28,1,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,1,0,1915,-7,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,42,1,1333,26,1,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1857,-5,0,2022,-9,0,0 +2013,5,1,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,81,1,2233,96,1,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1940,5,0,2145,1,0,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2050,117,1,2215,118,1,0 +2013,8,23,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-5,0,830,-26,0,0 +2013,6,20,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2345,4,0,714,-7,0,0 +2013,6,11,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,22,1,2044,5,0,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-5,0,838,-9,0,0 +2013,10,1,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1127,-1,0,1315,-9,0,0 +2013,7,25,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1640,142,1,1715,173,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2040,13,0,2152,-4,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-3,0,1246,12,0,0 +2013,8,18,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,954,-5,0,1340,-10,0,0 +2013,5,13,1,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1610,-36,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,70,1,1700,54,1,0 +2013,6,10,1,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1150,-1,0,1400,2,0,0 +2013,8,23,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1915,0,0,2211,-41,0,0 +2013,4,18,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1045,0,0,1413,7,0,0 +2013,6,24,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1523,7,0,0 +2013,9,28,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1110,4,0,1444,-1,0,0 +2013,8,11,7,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,612,20,1,751,13,0,0 +2013,4,30,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-9,0,926,-12,0,0 +2013,8,23,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1725,21,1,1845,20,1,0 +2013,6,8,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,-7,0,500,3,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1056,3,0,1231,-3,0,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2005,2,0,2125,-9,0,0 +2013,7,13,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-11,0,1040,-22,0,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1446,-11,0,1629,-27,0,0 +2013,8,30,5,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,8,0,1430,-19,0,0 +2013,7,12,5,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1650,24,1,2055,34,1,0 +2013,7,21,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,940,-4,0,1100,-8,0,0 +2013,7,13,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1009,-3,0,1200,-12,0,0 +2013,5,16,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,845,-3,0,1254,-8,0,0 +2013,4,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2140,-6,0,2250,-16,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1750,-2,0,1903,-18,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1453,-2,0,1614,-9,0,0 +2013,5,6,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,1,0,825,-14,0,0 +2013,10,25,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1349,-6,0,2003,-15,0,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,720,-1,0,810,-6,0,0 +2013,6,8,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1737,-9,0,1922,-10,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,740,12,0,1100,12,0,0 +2013,7,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-9,0,1259,-30,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1617,6,0,1739,7,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,3,0,1105,-18,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,815,-5,0,950,11,0,0 +2013,5,30,4,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,950,-4,0,1434,3,0,0 +2013,6,28,5,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,42,1,2235,62,1,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,5,0,2003,8,0,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1625,0,0,1740,0,0,0 +2013,7,1,1,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,641,-2,0,805,-6,0,0 +2013,5,28,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,850,-20,0,0 +2013,6,10,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,738,0,,1530,0,1,1 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1901,5,0,2219,-6,0,0 +2013,9,28,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-4,0,1413,74,1,0 +2013,5,6,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1322,41,1,1525,37,1,0 +2013,6,2,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,841,-3,0,1054,-11,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2135,34,1,2300,25,1,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,44,1,1912,34,1,0 +2013,5,16,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,745,2,0,900,-2,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1535,31,1,1640,43,1,0 +2013,10,8,2,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1054,0,0,1638,-6,0,0 +2013,6,27,4,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,5,0,901,6,0,0 +2013,4,24,3,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1314,32,1,2104,4,0,0 +2013,10,15,2,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,116,1,1305,96,1,0 +2013,6,10,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,555,-1,0,735,13,0,0 +2013,8,22,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2115,-7,0,535,-25,0,0 +2013,9,13,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,-2,0,1918,-2,0,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1436,10,0,1846,-23,0,0 +2013,5,13,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2016,47,1,2159,43,1,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1456,0,0,1622,-15,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1450,37,1,2020,27,1,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1240,0,0,1435,4,0,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1830,3,0,2049,30,1,0 +2013,8,18,7,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1250,1,0,1658,-18,0,0 +2013,7,7,7,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1000,-1,0,1322,7,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,14,0,920,1,0,0 +2013,7,21,7,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,900,0,0,1215,-1,0,0 +2013,8,4,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1130,-3,0,1304,-7,0,0 +2013,10,7,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1113,8,0,1259,29,1,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2050,178,1,2140,171,1,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,800,1,0,1230,-13,0,0 +2013,6,20,4,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1722,-5,0,1855,-23,0,0 +2013,5,7,2,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1005,-4,0,1205,-13,0,0 +2013,5,17,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,-8,0,1803,-19,0,0 +2013,9,4,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,11,0,2015,31,1,0 +2013,7,16,2,9E,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1710,-6,0,1850,-9,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2115,0,0,2255,3,0,0 +2013,8,9,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1013,34,1,1201,27,1,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1130,-1,0,1258,-2,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,925,-4,0,1050,-11,0,0 +2013,7,31,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,11,0,1440,-12,0,0 +2013,10,19,6,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1231,-1,0,1329,-9,0,0 +2013,9,18,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,1,0,2050,-6,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1745,-7,0,1937,-14,0,0 +2013,4,5,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1053,-4,0,1405,-3,0,0 +2013,6,26,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1311,2,0,1432,3,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,950,-2,0,1001,-13,0,0 +2013,5,18,6,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1220,16,1,1505,10,0,0 +2013,4,6,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-5,0,1428,-5,0,0 +2013,5,31,5,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-2,0,1909,-2,0,0 +2013,7,16,2,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1415,-7,0,1601,-2,0,0 +2013,10,12,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,5,0,2109,0,0,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,-6,0,1040,-22,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2010,25,1,2147,11,0,0 +2013,9,6,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1605,4,0,1725,-4,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,0,0,1530,10,0,0 +2013,4,17,3,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1205,-6,0,1514,3,0,0 +2013,8,25,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,23,1,0,601,-17,0,0 +2013,8,15,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,55,4,0,555,-2,0,0 +2013,5,8,3,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,222,1,1906,264,1,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-6,0,947,-11,0,0 +2013,7,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1455,15,1,1605,7,0,0 +2013,10,6,7,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,1730,24,1,1909,0,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1550,-5,0,1711,-2,0,0 +2013,7,1,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1159,13,0,1450,46,1,0 +2013,5,23,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1015,-2,0,1309,1,0,0 +2013,9,14,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,600,-3,0,808,-1,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,816,-7,0,918,-9,0,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1015,-3,0,1715,-13,0,0 +2013,8,13,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1420,-8,0,1554,-14,0,0 +2013,5,29,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1640,7,0,1820,3,0,0 +2013,5,20,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,21,1,838,24,1,0 +2013,10,3,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-3,0,1100,-5,0,0 +2013,5,17,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,0,0,2200,-13,0,0 +2013,7,29,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-1,0,1607,7,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,900,-5,0,1035,-13,0,0 +2013,5,8,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1405,56,1,1435,51,1,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1845,52,1,2330,45,1,0 +2013,5,19,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,123,1,1645,130,1,0 +2013,7,1,1,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1725,-2,0,2100,-12,0,0 +2013,6,7,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,0,0,1808,3,0,0 +2013,8,11,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-8,0,2108,-13,0,0 +2013,10,4,5,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1640,-10,0,1834,-13,0,0 +2013,10,31,4,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1835,11,0,2149,0,0,0 +2013,8,10,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1805,-2,0,1930,-8,0,0 +2013,6,22,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1221,-3,0,1757,-17,0,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1645,22,1,1910,10,0,0 +2013,6,8,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,840,0,0,1000,4,0,0 +2013,10,15,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,-7,0,1700,-17,0,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,845,-2,0,1056,-14,0,0 +2013,10,30,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1956,-5,0,2155,-1,0,0 +2013,10,30,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,-5,0,2132,-12,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1000,-2,0,1230,-14,0,0 +2013,4,28,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1234,2,0,0 +2013,10,24,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,700,-2,0,1056,-27,0,0 +2013,6,15,6,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,854,-2,0,1040,-4,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1205,3,0,1405,0,0,0 +2013,6,9,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1454,21,1,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,930,95,1,1116,144,1,0 +2013,5,25,6,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1703,5,0,1922,-8,0,0 +2013,6,16,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1925,-3,0,2135,-11,0,0 +2013,4,2,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1120,0,0,1530,-4,0,0 +2013,4,9,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-5,0,930,-19,0,0 +2013,5,17,5,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-5,0,1917,3,0,0 +2013,4,27,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1519,-4,0,1738,-16,0,0 +2013,5,31,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,2,0,1735,-14,0,0 +2013,4,17,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1923,25,1,2135,23,1,0 +2013,6,3,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1410,21,1,2010,0,0,0 +2013,7,22,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,-3,0,1133,-6,0,0 +2013,9,22,7,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1315,8,0,1900,-2,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,61,1,2155,48,1,0 +2013,7,17,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1053,-5,0,1645,-3,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,700,1,0,1200,-19,0,0 +2013,10,27,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1417,-1,0,2009,1,0,0 +2013,9,26,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1123,-1,0,1448,-19,0,0 +2013,7,8,1,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1655,2,0,1810,-9,0,0 +2013,4,24,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,725,-2,0,1014,-5,0,0 +2013,6,22,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2052,16,1,2319,-14,0,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,830,-6,0,935,-10,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1840,6,0,2245,0,0,0 +2013,7,24,3,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,800,105,1,847,101,1,0 +2013,5,9,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1700,-5,0,1753,-20,0,0 +2013,7,22,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,13,0,1131,19,1,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1805,-3,0,2035,-7,0,0 +2013,6,4,2,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,1,0,2025,7,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1408,12,0,1434,11,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,278,1,1245,267,1,0 +2013,6,11,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,0,0,815,-11,0,0 +2013,4,26,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,728,-9,0,830,-14,0,0 +2013,4,27,6,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1530,-1,0,1720,-13,0,0 +2013,10,9,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1431,19,1,1538,12,0,0 +2013,4,5,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,755,-1,0,920,-2,0,0 +2013,10,27,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1557,7,0,1730,3,0,0 +2013,5,20,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1230,-7,0,1442,-16,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1830,14,0,2255,33,1,0 +2013,7,17,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1917,-5,0,2003,0,0,0 +2013,8,2,5,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,618,-1,0,825,4,0,0 +2013,10,21,1,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1855,-4,0,2205,-16,0,0 +2013,7,2,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,745,-7,0,0 +2013,6,16,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1100,-1,0,1145,-3,0,0 +2013,6,19,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1223,-8,0,2045,-17,0,0 +2013,10,20,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1906,31,1,1925,37,1,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,22,1,1440,7,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,-1,0,2059,-11,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,-5,0,1543,-17,0,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,647,5,0,918,4,0,0 +2013,5,18,6,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1059,-9,0,1308,-25,0,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2112,7,0,2246,-10,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,-4,0,1140,-8,0,0 +2013,9,11,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1010,-7,0,1445,-15,0,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2105,25,1,2240,21,1,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-4,0,949,19,1,0 +2013,7,17,3,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,2340,-6,0,700,2,0,0 +2013,9,29,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,1,0,1510,-9,0,0 +2013,10,23,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,-2,0,1025,-13,0,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1945,14,0,2120,6,0,0 +2013,8,17,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,628,-5,0,804,-4,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,-1,0,1005,-14,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,735,3,0,1305,-12,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,9,0,1315,9,0,0 +2013,4,29,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1005,-7,0,1124,-19,0,0 +2013,10,10,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,4,0,1928,-22,0,0 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,7,0,1437,4,0,0 +2013,10,7,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-7,0,2047,-7,0,0 +2013,10,6,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1505,13,0,1736,-5,0,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-2,0,1349,-6,0,0 +2013,8,17,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,11,0,1740,4,0,0 +2013,10,18,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2010,62,1,2155,54,1,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,147,1,1425,149,1,0 +2013,6,10,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1040,106,1,1140,84,1,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1842,62,1,1935,51,1,0 +2013,10,13,7,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,12,0,1440,-5,0,0 +2013,8,4,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,115,1,1635,131,1,0 +2013,5,19,7,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,30,1,2119,23,1,0 +2013,7,14,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-9,0,2210,-21,0,0 +2013,4,20,6,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,600,-4,0,853,-15,0,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1505,0,0,2251,3,0,0 +2013,9,5,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,731,-5,0,920,-6,0,0 +2013,9,28,6,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1356,-3,0,1920,-13,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,56,1,1904,51,1,0 +2013,5,10,5,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,27,1,1425,23,1,0 +2013,5,19,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,-4,0,1740,-7,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1338,52,1,1811,61,1,0 +2013,7,13,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-7,0,1348,-14,0,0 +2013,4,24,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1130,16,1,1132,24,1,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1439,3,0,1627,8,0,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,828,33,1,1431,16,1,0 +2013,10,6,7,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1254,-8,0,1411,-7,0,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1330,4,0,1545,-9,0,0 +2013,6,1,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1710,-6,0,1820,-8,0,0 +2013,5,26,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1114,11,0,1403,11,0,0 +2013,6,25,2,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1250,-1,0,1535,-11,0,0 +2013,6,2,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1620,-5,0,1925,6,0,0 +2013,7,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,-1,0,1110,-10,0,0 +2013,4,16,2,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1827,-11,0,2115,-23,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1916,18,1,2047,1,0,0 +2013,5,16,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-1,0,1648,-12,0,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,-4,0,2332,-4,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1025,-1,0,1207,-3,0,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1515,-8,0,1649,1,0,0 +2013,9,26,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2000,1,0,2055,6,0,0 +2013,4,21,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1408,0,0,1535,-1,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-5,0,1920,0,0,0 +2013,4,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1400,1,0,1540,-1,0,0 +2013,9,9,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-3,0,1435,4,0,0 +2013,7,5,5,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1613,63,1,44,59,1,0 +2013,6,21,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,-11,0,1413,-12,0,0 +2013,9,5,4,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,-4,0,1035,-24,0,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-1,0,2143,-18,0,0 +2013,6,16,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1555,1,0,1715,-2,0,0 +2013,7,9,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1002,49,1,1225,57,1,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1310,4,0,1535,-7,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1435,25,1,2140,22,1,0 +2013,9,14,6,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2150,-8,0,558,-27,0,0 +2013,5,26,7,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,835,-5,0,1005,-12,0,0 +2013,8,5,1,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,248,1,1940,244,1,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1735,30,1,1855,10,0,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2248,10,0,657,-5,0,0 +2013,7,8,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,510,-5,0,647,1,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1259,-3,0,1805,-20,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1610,4,0,1807,15,1,0 +2013,6,17,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,0,,1011,0,1,1 +2013,8,12,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,933,2,0,1235,14,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1729,10,0,1848,29,1,0 +2013,8,16,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,930,-3,0,1030,6,0,0 +2013,6,10,1,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-4,0,2000,-10,0,0 +2013,10,29,2,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1315,-1,0,1630,-9,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-5,0,1053,-7,0,0 +2013,5,27,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,720,-4,0,1519,-16,0,0 +2013,10,16,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,1,0,720,-5,0,0 +2013,7,14,7,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,13,0,1027,14,0,0 +2013,8,16,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-1,0,720,-8,0,0 +2013,6,6,4,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,-4,0,942,-1,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,-1,0,1730,-7,0,0 +2013,5,30,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-4,0,1855,-11,0,0 +2013,6,21,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1056,-7,0,1243,-4,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,4,0,1100,3,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1150,2,0,1255,-5,0,0 +2013,7,23,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,31,1,2130,14,0,0 +2013,9,15,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1855,-6,0,2200,-4,0,0 +2013,7,14,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,3,0,1655,-8,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2140,588,1,2320,615,1,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1800,-1,0,1901,-8,0,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-9,0,1051,-19,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,728,-1,0,906,-4,0,0 +2013,4,27,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1225,-4,0,1355,-11,0,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,21,1,2255,18,1,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1910,16,1,55,7,0,0 +2013,6,22,6,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1545,116,1,1730,101,1,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,3,0,1156,3,0,0 +2013,7,21,7,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,6,0,1557,8,0,0 +2013,4,19,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1510,55,1,1835,43,1,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,835,-7,0,953,-10,0,0 +2013,5,19,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1533,-2,0,1905,-9,0,0 +2013,7,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-1,0,1625,-7,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2005,23,1,2255,22,1,0 +2013,4,29,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1136,65,1,1640,70,1,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,0,0,2200,-8,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1352,20,1,1632,-4,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,0,0,2255,-3,0,0 +2013,9,1,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1305,0,0,1425,-8,0,0 +2013,7,26,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,-1,0,1615,-12,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,-1,0,2039,5,0,0 +2013,4,2,2,OO,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1215,1,0,1339,-1,0,0 +2013,8,17,6,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,0,0,922,1,0,0 +2013,10,19,6,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,-7,0,1220,-9,0,0 +2013,6,28,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1615,-2,0,1725,-7,0,0 +2013,4,28,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-4,0,1220,-6,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1320,119,1,1612,115,1,0 +2013,5,14,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1200,-1,0,1420,-3,0,0 +2013,10,2,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1120,-9,0,1250,1,0,0 +2013,4,7,7,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,11,0,2200,9,0,0 +2013,10,5,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,-2,0,1255,-8,0,0 +2013,9,16,1,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1808,13,0,2056,14,0,0 +2013,5,31,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-5,0,1340,-30,0,0 +2013,8,22,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-1,0,1110,-2,0,0 +2013,10,26,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-4,0,1102,-6,0,0 +2013,8,20,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,700,-9,0,905,-20,0,0 +2013,5,30,4,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,846,-5,0,1036,-2,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,0,0,2159,-10,0,0 +2013,9,27,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,17,1,1809,15,1,0 +2013,8,8,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,2,0,1450,14,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-6,0,1807,-10,0,0 +2013,5,3,5,EV,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,835,-7,0,1028,-33,0,0 +2013,5,21,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,12,0,2025,-5,0,0 +2013,10,30,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,6,0,1855,19,1,0 +2013,9,5,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,22,1,846,37,1,0 +2013,6,4,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1423,33,1,1517,20,1,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,78,1,2330,73,1,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,3,0,1948,10,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1520,0,,1800,0,1,1 +2013,6,9,7,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1045,4,0,1155,-4,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1624,17,1,1907,-13,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1855,5,0,2015,-4,0,0 +2013,7,10,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,11,0,1530,45,1,0 +2013,8,9,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,-1,0,1902,-11,0,0 +2013,5,29,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-5,0,1450,1,0,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,-2,0,1200,-3,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1123,20,1,1207,8,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-1,0,1634,-8,0,0 +2013,4,7,7,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-6,0,800,-4,0,0 +2013,6,25,2,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2000,2,0,2258,-6,0,0 +2013,8,18,7,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1950,-16,0,2149,-37,0,0 +2013,4,29,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-7,0,2152,-22,0,0 +2013,8,12,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,54,1,1525,69,1,0 +2013,6,10,1,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1905,140,1,2110,112,1,0 +2013,6,30,7,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1300,-3,0,1635,-9,0,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,845,3,0,1014,-5,0,0 +2013,5,3,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,-1,0,1535,8,0,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,832,51,1,1710,80,1,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2225,9,0,135,26,1,0 +2013,6,2,7,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-2,0,1046,-1,0,0 +2013,8,25,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1458,0,0,1839,7,0,0 +2013,5,15,3,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-1,0,1205,1,0,0 +2013,10,7,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1430,1,0,1555,-5,0,0 +2013,4,4,4,EV,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1523,17,1,1754,-2,0,0 +2013,8,22,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1800,-4,0,1848,10,0,0 +2013,7,22,1,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1350,14,0,1945,14,0,0 +2013,8,31,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,940,2,0,1145,-19,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,4,0,1520,-3,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,11,0,1925,12,0,0 +2013,4,8,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,-4,0,1359,0,0,0 +2013,8,2,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-5,0,837,-19,0,0 +2013,5,4,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1114,2,0,0 +2013,7,19,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1015,-4,0,1115,-5,0,0 +2013,4,28,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1111,-6,0,1244,-16,0,0 +2013,7,15,1,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,69,1,1205,62,1,0 +2013,4,1,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,-3,0,1930,-5,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2110,75,1,2240,71,1,0 +2013,7,24,3,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,-9,0,1000,-30,0,0 +2013,4,15,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,8,0,1807,25,1,0 +2013,5,9,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-2,0,1652,16,1,0 +2013,8,22,4,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-6,0,2046,2,0,0 +2013,7,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1510,0,0,1755,-20,0,0 +2013,5,1,3,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1322,4,0,1525,-12,0,0 +2013,9,7,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2135,-2,0,530,-1,0,0 +2013,6,22,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-6,0,723,-13,0,0 +2013,10,31,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,0,0,1304,-4,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,930,-4,0,1210,-12,0,0 +2013,4,21,7,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1845,-6,0,2017,-7,0,0 +2013,4,17,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,914,8,0,0 +2013,8,13,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,835,-14,0,0 +2013,5,18,6,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1457,-15,0,1600,-9,0,0 +2013,7,23,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1629,-6,0,1955,-8,0,0 +2013,8,4,7,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1115,-13,0,1330,-18,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2010,0,,2135,0,1,1 +2013,8,14,3,US,14893,Sacramento International,Sacramento,CA,11057,Charlotte Douglas International,Charlotte,NC,2258,-1,0,637,-21,0,0 +2013,7,19,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,77,1,1946,72,1,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1714,-1,0,1910,-20,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1933,3,0,2215,-11,0,0 +2013,8,29,4,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-4,0,1614,-11,0,0 +2013,8,30,5,EV,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1743,-5,0,1900,-25,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1850,18,1,2110,16,1,0 +2013,4,8,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,6,0,1757,-10,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,2,0,1135,-8,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,83,1,2122,86,1,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1955,2,0,2115,5,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,840,-2,0,1023,-4,0,0 +2013,5,31,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-4,0,2327,-8,0,0 +2013,9,9,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,615,-3,0,955,-11,0,0 +2013,8,30,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1216,2,0,1510,8,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1630,5,0,1859,-13,0,0 +2013,5,28,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,27,1,2225,15,1,0 +2013,5,31,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1831,45,1,2029,50,1,0 +2013,5,15,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1130,-2,0,1255,-11,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,605,0,0,740,-8,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1205,0,0,1400,-4,0,0 +2013,8,18,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,0,0,1132,6,0,0 +2013,5,16,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1035,-6,0,1200,-13,0,0 +2013,10,24,4,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1655,86,1,1920,79,1,0 +2013,9,30,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-5,0,1155,-3,0,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2110,14,0,2300,16,1,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,838,-3,0,1715,-15,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,727,-2,0,1048,0,0,0 +2013,5,26,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-4,0,820,-1,0,0 +2013,7,19,5,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,933,49,1,1221,53,1,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1025,52,1,1115,41,1,0 +2013,9,26,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1653,-4,0,1935,-17,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1645,-3,0,1815,-10,0,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,845,2,0,955,-11,0,0 +2013,7,16,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,3,0,1925,-2,0,0 +2013,5,3,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,-5,0,1120,-14,0,0 +2013,9,5,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14307,Theodore Francis Green State,Providence,RI,2010,-6,0,2151,-15,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,-2,0,2059,1,0,0 +2013,7,29,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2042,72,1,2319,66,1,0 +2013,9,20,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-10,0,1215,-27,0,0 +2013,7,7,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-3,0,910,-17,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1431,0,0,1531,-14,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,7,0,1110,9,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-1,0,2200,-19,0,0 +2013,7,31,3,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1500,15,1,1645,-2,0,0 +2013,8,18,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,900,0,0,1418,-4,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,820,-3,0,1155,1,0,0 +2013,6,2,7,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-6,0,1324,-30,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1500,0,0,1620,-7,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1440,39,1,1601,64,1,0 +2013,5,5,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,0,0,2054,18,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,20,1,1315,16,1,0 +2013,10,7,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1940,5,0,57,1,0,0 +2013,4,16,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-3,0,914,6,0,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1320,-5,0,1653,-2,0,0 +2013,8,15,4,YV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1225,-6,0,1400,-23,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1510,-1,0,1640,13,0,0 +2013,9,28,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1410,-5,0,1540,-12,0,0 +2013,9,9,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,7,0,1742,25,1,0 +2013,7,14,7,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1954,-6,0,2103,-21,0,0 +2013,4,1,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,730,0,0,1025,-26,0,0 +2013,5,13,1,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,610,-2,0,812,-7,0,0 +2013,7,18,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,-5,0,1028,-16,0,0 +2013,4,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,31,1,1733,12,0,0 +2013,5,14,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1210,-6,0,1340,-5,0,0 +2013,8,5,1,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,13,0,1740,-10,0,0 +2013,5,16,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1922,-9,0,1956,-8,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2109,58,1,2347,38,1,0 +2013,7,5,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1945,-4,0,2105,-7,0,0 +2013,8,5,1,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,0,0,1903,-1,0,0 +2013,9,29,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,757,16,1,923,11,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-7,0,1757,-8,0,0 +2013,5,26,7,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1310,0,0,2135,6,0,0 +2013,10,14,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,6,0,2022,-8,0,0 +2013,7,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1416,0,0,1601,-26,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,11,0,1215,1,0,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1210,-4,0,1443,-1,0,0 +2013,10,31,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,41,1,2010,38,1,0 +2013,10,9,3,9E,12339,Indianapolis International,Indianapolis,IN,12953,LaGuardia,New York,NY,1310,42,1,1514,34,1,0 +2013,10,22,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1333,2,0,2159,-20,0,0 +2013,9,6,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1335,21,1,1440,31,1,0 +2013,7,23,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,933,-2,0,1215,1,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1040,31,1,1920,21,1,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,855,26,1,1605,28,1,0 +2013,8,29,4,UA,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1333,1,0,1503,-10,0,0 +2013,9,26,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,0,0,1624,5,0,0 +2013,5,15,3,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,-7,0,903,0,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,20,1,2307,2,0,0 +2013,10,14,1,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1220,-3,0,1437,-15,0,0 +2013,8,10,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1235,-8,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,13,0,1955,13,0,0 +2013,6,10,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1743,0,0,2034,-5,0,0 +2013,6,2,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,855,-2,0,1055,2,0,0 +2013,7,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2130,0,0,2250,-2,0,0 +2013,5,2,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1345,36,1,1445,40,1,0 +2013,7,15,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,857,2,0,0 +2013,6,30,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1104,-2,0,1125,3,0,0 +2013,4,2,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,-2,0,1827,-19,0,0 +2013,10,13,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1525,20,1,1710,16,1,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1215,-3,0,1435,-25,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1545,105,1,1825,146,1,0 +2013,10,23,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-8,0,2143,-17,0,0 +2013,5,4,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1245,-5,0,1345,-15,0,0 +2013,7,24,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1200,-8,0,1341,-12,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1557,20,1,1724,7,0,0 +2013,8,19,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1700,-1,0,2014,10,0,0 +2013,5,3,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1635,-3,0,1954,-19,0,0 +2013,9,3,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,915,0,0,1025,-3,0,0 +2013,10,29,2,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1253,-5,0,1540,-9,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,821,2,0,1415,-10,0,0 +2013,9,15,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-9,0,930,-8,0,0 +2013,10,15,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,0,0,1515,-5,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,6,0,1000,16,1,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1010,-9,0,1157,-20,0,0 +2013,7,17,3,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,60,1,1840,39,1,0 +2013,4,24,3,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,940,-1,0,1030,20,1,0 +2013,7,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,-1,0,1623,-3,0,0 +2013,10,24,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,650,-4,0,1225,14,0,0 +2013,10,11,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1730,-3,0,1858,-6,0,0 +2013,5,18,6,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1730,7,0,1955,11,0,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,1,0,1325,-9,0,0 +2013,4,23,2,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1630,18,1,1825,23,1,0 +2013,7,17,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-1,0,1010,-16,0,0 +2013,4,30,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,87,1,1905,96,1,0 +2013,4,11,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1015,1,0,1325,4,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1000,-7,0,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,-4,0,1355,-12,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,845,56,1,1035,45,1,0 +2013,5,5,7,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1603,4,0,1708,3,0,0 +2013,5,2,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1602,247,1,1837,250,1,0 +2013,5,27,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-6,0,1538,-16,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,-5,0,1051,-22,0,0 +2013,4,25,4,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1859,9,0,2049,14,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1000,-2,0,1137,-2,0,0 +2013,7,4,4,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1030,-2,0,1140,-21,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,830,2,0,1010,-8,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1125,24,1,1235,28,1,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,25,1,1650,19,1,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1935,-6,0,2326,-12,0,0 +2013,10,11,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,8,0,1232,-18,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1035,55,1,1155,76,1,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,-3,0,825,-5,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1800,-3,0,1905,-13,0,0 +2013,8,16,5,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1545,-2,0,1808,-1,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2014,24,1,2317,27,1,0 +2013,8,12,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1423,-4,0,1722,-22,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1050,-1,0,1430,-8,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-3,0,2303,6,0,0 +2013,4,1,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1125,-3,0,1300,-19,0,0 +2013,4,23,2,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,840,0,,943,0,1,1 +2013,4,16,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,2,0,1951,4,0,0 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1356,0,0,1435,-6,0,0 +2013,5,6,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,2,0,1030,-2,0,0 +2013,8,29,4,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,802,-7,0,930,-12,0,0 +2013,5,22,3,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,0,0,909,1,0,0 +2013,5,21,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1830,10,0,2100,-9,0,0 +2013,6,2,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1130,49,1,1245,33,1,0 +2013,5,13,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,755,-3,0,1004,9,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,64,1,2100,108,1,0 +2013,6,17,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1711,-6,0,1757,-5,0,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1920,-3,0,2020,-22,0,0 +2013,9,12,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,0,0,1120,0,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-1,0,1250,8,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1935,14,0,2155,-1,0,0 +2013,4,26,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2101,-10,0,2149,-20,0,0 +2013,9,20,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1224,-8,0,1512,-22,0,0 +2013,10,8,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1035,3,0,1914,-7,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1040,15,1,1425,14,0,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,748,15,1,1355,3,0,0 +2013,7,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1126,-4,0,1426,-1,0,0 +2013,10,24,4,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1505,15,1,1815,7,0,0 +2013,6,22,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-1,0,1945,-12,0,0 +2013,4,7,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-7,0,1341,-11,0,0 +2013,10,26,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,813,-5,0,0 +2013,8,3,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,45,1,1155,54,1,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,80,1,1125,59,1,0 +2013,7,24,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,945,1,0,1654,-13,0,0 +2013,9,26,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1423,6,0,1559,13,0,0 +2013,5,29,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,547,9,0,845,-8,0,0 +2013,6,1,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,-3,0,1524,-2,0,0 +2013,5,20,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,700,-10,0,735,-6,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,0,0,2205,-20,0,0 +2013,5,24,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,5,0,2104,23,1,0 +2013,5,14,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,-2,0,2053,-10,0,0 +2013,4,14,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1555,22,1,1910,49,1,0 +2013,9,22,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1055,15,1,1410,10,0,0 +2013,8,13,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,604,4,0,1201,10,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-1,0,830,-7,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-8,0,1922,-17,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,835,12,0,1125,-5,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2000,6,0,2100,21,1,0 +2013,4,23,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1230,-8,0,1443,-19,0,0 +2013,9,29,7,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-4,0,2008,-6,0,0 +2013,8,26,1,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,750,-4,0,1025,-1,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2040,15,1,2310,5,0,0 +2013,8,11,7,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1926,-9,0,2222,-20,0,0 +2013,9,27,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1205,-1,0,1315,-4,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2130,-4,0,38,-19,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,0,0,1235,22,1,0 +2013,4,25,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-6,0,1127,-16,0,0 +2013,9,13,5,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1210,-10,0,1330,0,0,0 +2013,4,21,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-5,0,840,-19,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1208,-1,0,1341,9,0,0 +2013,7,3,3,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,810,4,0,1115,-37,0,0 +2013,5,20,1,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,5,0,1915,-4,0,0 +2013,8,6,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1621,8,0,1946,-3,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1930,-4,0,2015,4,0,0 +2013,6,27,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,5,0,1800,58,1,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,820,-4,0,1110,-10,0,0 +2013,8,19,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2042,15,1,454,30,1,0 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,-8,0,1950,-2,0,0 +2013,7,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1750,4,0,2115,-3,0,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1115,-2,0,1225,8,0,0 +2013,10,23,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1935,-4,0,2059,-3,0,0 +2013,4,9,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-10,0,2005,-10,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1235,0,0,1340,-6,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,1,0,1845,-26,0,0 +2013,8,2,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1346,1,0,1540,4,0,0 +2013,6,11,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1100,2,0,1151,5,0,0 +2013,4,25,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,720,0,0,1003,25,1,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1315,32,1,1545,20,1,0 +2013,5,2,4,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,700,-5,0,945,-6,0,0 +2013,7,28,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-4,0,2045,-15,0,0 +2013,4,16,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,600,-2,0,830,12,0,0 +2013,10,22,2,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1645,3,0,1840,-5,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1830,35,1,2010,53,1,0 +2013,6,4,2,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,700,-1,0,905,-4,0,0 +2013,9,15,7,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,825,-1,0,1040,-15,0,0 +2013,4,22,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1610,0,,1720,0,1,1 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,930,-4,0,1039,-20,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1855,-3,0,2215,5,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,43,1,2305,27,1,0 +2013,5,18,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,639,-7,0,808,-17,0,0 +2013,7,15,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1842,-4,0,2119,-42,0,0 +2013,5,9,4,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1412,83,1,1530,80,1,0 +2013,5,7,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1855,-4,0,2130,-20,0,0 +2013,9,20,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,5,0,2235,-18,0,0 +2013,10,29,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1810,1,0,1920,2,0,0 +2013,7,15,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,-8,0,1945,-2,0,0 +2013,6,22,6,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1055,3,0,1710,-1,0,0 +2013,6,26,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,15,1,2058,5,0,0 +2013,10,1,2,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,4,0,1920,-4,0,0 +2013,6,29,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1751,23,1,1929,25,1,0 +2013,4,26,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,1,0,1528,-2,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1320,14,0,1725,2,0,0 +2013,9,2,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1920,24,1,2110,3,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1929,-3,0,2126,-17,0,0 +2013,9,3,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1630,-4,0,1810,-25,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1805,15,1,1935,12,0,0 +2013,6,20,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-5,0,705,-5,0,0 +2013,4,19,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1200,-8,0,1525,-37,0,0 +2013,5,1,3,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1748,1,0,1919,-11,0,0 +2013,10,13,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1549,-1,0,2110,-13,0,0 +2013,6,7,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,-2,0,848,-1,0,0 +2013,9,26,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1355,-3,0,1615,-5,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2255,-1,0,2327,-10,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,26,1,1916,7,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1750,-4,0,1915,6,0,0 +2013,10,26,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,835,-3,0,935,-12,0,0 +2013,7,4,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,638,2,0,914,-4,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,10,0,1250,5,0,0 +2013,9,29,7,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1535,-3,0,1725,-20,0,0 +2013,5,9,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,630,-3,0,700,-10,0,0 +2013,5,19,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1110,-3,0,1300,-5,0,0 +2013,8,15,4,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1745,252,1,1755,253,1,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1400,3,0,1515,9,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1425,-1,0,1711,-30,0,0 +2013,10,2,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1105,-9,0,1357,-34,0,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2204,7,0,48,-13,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1311,-2,0,1454,-6,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,645,-1,0,916,-9,0,0 +2013,9,15,7,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1042,4,0,1256,2,0,0 +2013,9,18,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,905,-9,0,924,-15,0,0 +2013,5,19,7,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1904,143,1,2054,124,1,0 +2013,5,4,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1410,1,0,1530,-9,0,0 +2013,4,17,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1855,211,1,2101,191,1,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2115,0,,2326,0,1,1 +2013,9,29,7,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1830,6,0,2020,0,0,0 +2013,9,20,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,9,0,1401,-9,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,-3,0,925,-15,0,0 +2013,10,28,1,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1955,21,1,2241,0,0,0 +2013,10,20,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1418,-6,0,0 +2013,6,14,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,30,1,2111,25,1,0 +2013,7,11,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-4,0,1045,-9,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,28,1,1410,29,1,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,1335,-18,0,0 +2013,5,12,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1902,-3,0,2037,-36,0,0 +2013,6,8,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,700,-10,0,902,-11,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,601,-1,0,1030,-11,0,0 +2013,5,15,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-8,0,1847,-30,0,0 +2013,8,4,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,-5,0,1807,-7,0,0 +2013,6,10,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1255,11,0,1410,6,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-5,0,2204,-9,0,0 +2013,10,30,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,931,-5,0,1005,-22,0,0 +2013,6,7,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1600,11,0,1719,2,0,0 +2013,5,21,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1555,2,0,1849,-16,0,0 +2013,5,26,7,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1220,-4,0,1455,-3,0,0 +2013,9,22,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,-5,0,1933,-11,0,0 +2013,7,23,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-6,0,1107,8,0,0 +2013,6,30,7,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1141,57,1,1237,50,1,0 +2013,9,21,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1640,-1,0,1805,-4,0,0 +2013,9,2,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,853,-5,0,1703,3,0,0 +2013,5,18,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1910,-6,0,2020,-11,0,0 +2013,10,10,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,930,-6,0,1040,-11,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,3,0,1613,7,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1910,16,1,2345,11,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,847,-1,0,1035,-6,0,0 +2013,4,22,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,12,0,1412,12,0,0 +2013,8,28,3,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,-6,0,1224,-5,0,0 +2013,10,26,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,47,2,0,536,-5,0,0 +2013,7,7,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-10,0,2321,0,0,0 +2013,7,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,-1,0,943,-15,0,0 +2013,5,25,6,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-3,0,1207,-13,0,0 +2013,5,17,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1346,-2,0,1621,-10,0,0 +2013,7,20,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1215,-3,0,1235,-1,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1105,-5,0,1420,-13,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,-1,0,1005,7,0,0 +2013,9,16,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,745,-5,0,1023,-13,0,0 +2013,5,1,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,7,0,1343,1,0,0 +2013,5,2,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1453,-8,0,1539,-8,0,0 +2013,4,19,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1325,153,1,1410,164,1,0 +2013,6,2,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1925,3,0,2115,-9,0,0 +2013,8,21,3,EV,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-7,0,1004,-13,0,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1230,-6,0,0 +2013,9,9,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-5,0,1147,-10,0,0 +2013,10,18,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,10,0,1740,5,0,0 +2013,4,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,947,62,1,1130,51,1,0 +2013,10,31,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1955,-5,0,2145,-29,0,0 +2013,9,3,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1123,0,0,1336,-10,0,0 +2013,4,8,1,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1715,-4,0,1950,-17,0,0 +2013,10,1,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,-3,0,1400,-8,0,0 +2013,5,22,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,920,-10,0,0 +2013,6,1,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1215,-2,0,1300,-11,0,0 +2013,10,6,7,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1740,-5,0,1931,-10,0,0 +2013,4,21,7,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1057,0,0,1443,2,0,0 +2013,8,9,5,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1820,-4,0,2025,-6,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,-4,0,735,-39,0,0 +2013,8,10,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1715,-4,0,1830,-6,0,0 +2013,7,3,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,-6,0,1240,-10,0,0 +2013,5,10,5,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,4,0,2350,13,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,820,-2,0,938,-1,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-5,0,1027,-8,0,0 +2013,9,13,5,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-3,0,1205,-10,0,0 +2013,5,17,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,645,1,0,835,-6,0,0 +2013,5,31,5,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2340,-4,0,725,21,1,0 +2013,7,3,3,9E,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1935,115,1,2223,93,1,0 +2013,6,10,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-2,0,1329,-8,0,0 +2013,6,17,1,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,715,-1,0,935,4,0,0 +2013,8,7,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1822,-8,0,2017,-8,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-7,0,2049,-9,0,0 +2013,8,20,2,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,81,1,1238,52,1,0 +2013,5,19,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1100,-13,0,1340,-23,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1733,1,0,1845,-13,0,0 +2013,7,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1353,29,1,1700,101,1,0 +2013,5,18,6,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,2,0,900,-5,0,0 +2013,8,5,1,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,600,-5,0,820,4,0,0 +2013,5,26,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-3,0,1800,-12,0,0 +2013,10,4,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,-5,0,2112,-13,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,112,1,1850,112,1,0 +2013,6,12,3,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,833,-4,0,1043,-11,0,0 +2013,7,21,7,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,-6,0,1425,17,1,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-3,0,1805,14,0,0 +2013,5,30,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-1,0,1540,-10,0,0 +2013,4,12,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2125,1,0,2255,-5,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,-4,0,1610,10,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,5,0,1515,14,0,0 +2013,7,14,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1007,-12,0,1132,-25,0,0 +2013,6,26,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-2,0,900,-7,0,0 +2013,4,30,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1855,-8,0,2130,-14,0,0 +2013,5,5,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1756,12,0,1930,8,0,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,633,-6,0,745,10,0,0 +2013,4,25,4,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,37,1,1019,54,1,0 +2013,10,7,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1355,1,0,1546,-5,0,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,0,0,1055,-6,0,0 +2013,5,26,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,10,0,1900,-5,0,0 +2013,9,30,1,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-9,0,1340,-32,0,0 +2013,7,4,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1140,2,0,1330,-5,0,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,809,-9,0,932,-13,0,0 +2013,8,30,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,2,0,2015,-6,0,0 +2013,7,16,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1655,29,1,1705,22,1,0 +2013,6,23,7,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,-5,0,945,-23,0,0 +2013,6,29,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,23,1,1815,34,1,0 +2013,7,18,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-5,0,940,-14,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1610,31,1,2315,25,1,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,0,0,2055,-12,0,0 +2013,4,3,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1458,-7,0,1715,3,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1525,5,0,1650,11,0,0 +2013,4,25,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1156,3,0,1359,5,0,0 +2013,4,14,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1315,5,0,1440,1,0,0 +2013,9,20,5,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1840,-12,0,2005,-16,0,0 +2013,4,28,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,34,-16,0,502,-41,0,0 +2013,10,23,3,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,600,-7,0,748,-14,0,0 +2013,9,11,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,21,1,1350,12,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1950,6,0,2318,0,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2030,-6,0,2259,-15,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1155,-5,0,1510,2,0,0 +2013,5,17,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1729,-8,0,1939,-21,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1628,0,0,1659,9,0,0 +2013,5,22,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1200,-1,0,1350,-19,0,0 +2013,10,29,2,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1957,-14,0,2316,-32,0,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1715,306,1,1938,313,1,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1144,12,0,1550,8,0,0 +2013,5,3,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-5,0,925,-15,0,0 +2013,10,3,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2100,18,1,2205,16,1,0 +2013,5,24,5,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,-2,0,2310,-8,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,4,0,1515,13,0,0 +2013,10,6,7,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1305,4,0,1835,14,0,0 +2013,10,18,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1236,-2,0,1450,-18,0,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1940,1,0,15,-4,0,0 +2013,9,15,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,801,-6,0,1014,-4,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1626,-2,0,1849,-5,0,0 +2013,9,7,6,EV,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1030,-13,0,1250,-30,0,0 +2013,9,8,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1520,20,1,1711,17,1,0 +2013,10,12,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1950,10,0,2125,11,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2315,-1,0,518,-11,0,0 +2013,7,13,6,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1543,109,1,1700,116,1,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,2,0,835,-9,0,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1905,-3,0,2015,-9,0,0 +2013,8,21,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-1,0,1507,3,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,2359,11,0,529,-3,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1115,7,0,1225,-1,0,0 +2013,5,19,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-10,0,1308,-25,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1741,-4,0,1825,-15,0,0 +2013,6,7,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,14,0,1831,40,1,0 +2013,7,12,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2035,28,1,2052,30,1,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1355,-3,0,1610,21,1,0 +2013,5,30,4,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,835,-10,0,1104,-20,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,940,2,0,1415,-1,0,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,845,-8,0,1013,-22,0,0 +2013,6,19,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,705,-2,0,1519,-3,0,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-6,0,1950,-13,0,0 +2013,6,4,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1451,6,0,2009,-10,0,0 +2013,6,5,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,14,0,2227,19,1,0 +2013,8,30,5,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1745,11,0,2040,14,0,0 +2013,6,30,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,2,0,2102,3,0,0 +2013,9,19,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1950,0,0,2055,-3,0,0 +2013,6,22,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,819,-4,0,1336,-28,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,7,0,1400,-8,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,732,-9,0,857,-23,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1610,28,1,2125,28,1,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,3,0,1140,2,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2159,46,1,2348,35,1,0 +2013,5,31,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1455,-3,0,1955,-8,0,0 +2013,6,5,3,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,605,-3,0,730,9,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-2,0,1703,-12,0,0 +2013,6,15,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1845,5,0,1945,1,0,0 +2013,5,27,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,10,0,2042,3,0,0 +2013,9,19,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1118,-4,0,1640,7,0,0 +2013,5,16,4,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1650,63,1,1813,76,1,0 +2013,4,2,2,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1441,-4,0,1655,-8,0,0 +2013,10,25,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1814,9,0,2143,-2,0,0 +2013,5,25,6,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,950,-4,0,1050,-5,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1415,-3,0,1605,4,0,0 +2013,7,4,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1325,-2,0,1415,-8,0,0 +2013,6,11,2,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,1223,-13,0,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1520,-5,0,1754,-10,0,0 +2013,7,9,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1230,1,0,1441,-12,0,0 +2013,9,7,6,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,0,0,1535,4,0,0 +2013,6,4,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-2,0,1018,9,0,0 +2013,4,13,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1205,-3,0,1305,-10,0,0 +2013,5,25,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2012,-5,0,2048,0,0,0 +2013,8,16,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,6,0,1500,-13,0,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,847,-3,0,1015,-1,0,0 +2013,7,19,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1457,-25,0,0 +2013,9,3,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-12,0,1540,5,0,0 +2013,6,8,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,835,-3,0,1016,5,0,0 +2013,4,18,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-7,0,810,1,0,0 +2013,8,28,3,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,2035,44,1,2201,20,1,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2008,-4,0,2230,-35,0,0 +2013,5,20,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,0,0,1840,2,0,0 +2013,9,3,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1230,-2,0,1545,-6,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1120,0,0,1310,-11,0,0 +2013,4,19,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1829,0,0,2104,-12,0,0 +2013,7,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,-5,0,1015,-8,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-2,0,851,-4,0,0 +2013,8,17,6,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2200,-3,0,550,-9,0,0 +2013,9,1,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2115,0,0,535,-6,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1005,15,1,1320,-4,0,0 +2013,10,13,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1301,-2,0,1430,-2,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,2,0,1025,-5,0,0 +2013,4,3,3,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,8,0,1020,21,1,0 +2013,9,12,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-2,0,900,-10,0,0 +2013,6,26,3,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,-1,0,2105,-29,0,0 +2013,4,15,1,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1112,8,0,1148,5,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,0,0,2350,-8,0,0 +2013,10,9,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1500,9,0,1545,3,0,0 +2013,6,28,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,0,,1206,0,1,1 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,-1,0,1240,-18,0,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,620,-8,0,747,-9,0,0 +2013,6,23,7,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1948,3,0,2058,1,0,0 +2013,10,28,1,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1830,44,1,2025,49,1,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,0,0,2300,-12,0,0 +2013,10,25,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1345,19,1,1435,10,0,0 +2013,9,8,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-3,0,1130,3,0,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1840,-2,0,1950,-6,0,0 +2013,10,10,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1519,-21,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1630,2,0,1833,-11,0,0 +2013,4,9,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,834,-21,0,0 +2013,5,16,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2255,-9,0,4,-18,0,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1051,49,1,1824,43,1,0 +2013,10,11,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,-3,0,1849,-7,0,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1910,2,0,2046,0,0,0 +2013,4,20,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-4,0,1430,-4,0,0 +2013,6,23,7,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1422,43,1,1653,47,1,0 +2013,10,20,7,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1241,-4,0,1629,-4,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,840,-1,0,1120,-9,0,0 +2013,9,21,6,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,2015,-1,0,2155,22,1,0 +2013,9,12,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,942,-13,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2156,10,0,2359,2,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,6,0,1520,-3,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,1,0,1105,-5,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,608,-10,0,827,-21,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1725,-3,0,2050,8,0,0 +2013,6,25,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1824,18,1,2109,14,0,0 +2013,4,12,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-6,0,933,-18,0,0 +2013,5,17,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1905,-8,0,2015,-21,0,0 +2013,6,26,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-9,0,845,-10,0,0 +2013,6,25,2,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,118,1,1639,133,1,0 +2013,9,28,6,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,-5,0,734,-15,0,0 +2013,10,4,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-6,0,1420,-15,0,0 +2013,4,24,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,1,0,1435,-1,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1100,-4,0,1227,3,0,0 +2013,6,21,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,750,8,0,1005,1,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,-9,0,1820,-24,0,0 +2013,5,2,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,850,-8,0,1027,-22,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1353,-1,0,1604,-19,0,0 +2013,8,15,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1210,-10,0,1350,-9,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1505,53,1,1645,41,1,0 +2013,8,2,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1925,-4,0,2025,-8,0,0 +2013,4,28,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,909,-9,0,1415,-13,0,0 +2013,4,25,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,-5,0,2125,-10,0,0 +2013,8,5,1,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-7,0,1858,7,0,0 +2013,4,9,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1045,-6,0,1322,0,0,0 +2013,5,18,6,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,-13,0,810,-28,0,0 +2013,10,30,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1041,-2,0,1600,-18,0,0 +2013,5,27,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-5,0,1607,-8,0,0 +2013,9,20,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1025,2,0,1859,-18,0,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,-2,0,1705,-21,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,3,0,1630,-6,0,0 +2013,7,31,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1029,3,0,1320,4,0,0 +2013,9,10,2,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1430,4,0,1800,-5,0,0 +2013,6,9,7,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1445,-2,0,1612,-29,0,0 +2013,7,20,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,10,0,1226,32,1,0 +2013,5,14,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,810,-3,0,935,-12,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1815,16,1,2033,-1,0,0 +2013,9,16,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-1,0,1710,-1,0,0 +2013,6,22,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-4,0,1655,5,0,0 +2013,6,26,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,16,1,1020,24,1,0 +2013,8,1,4,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1830,1,0,1950,0,0,0 +2013,9,10,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1428,-6,0,1548,-13,0,0 +2013,7,21,7,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1844,26,1,2015,10,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1610,2,0,2315,11,0,0 +2013,6,29,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,9,0,800,1,0,0 +2013,5,16,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1506,0,0,1720,7,0,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,11,0,1755,-1,0,0 +2013,5,28,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,15,1,2223,9,0,0 +2013,8,21,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,10,0,1831,8,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1813,12,0,2037,21,1,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,-12,0,2259,-17,0,0 +2013,5,11,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,-2,0,1109,2,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1500,26,1,1719,49,1,0 +2013,7,23,2,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1556,-10,0,1657,-18,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1735,-3,0,1922,-23,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,15,1,1310,11,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1429,28,1,1623,26,1,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1345,10,0,1356,12,0,0 +2013,9,9,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1610,-8,0,0 +2013,6,14,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,2,0,1010,5,0,0 +2013,7,26,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1330,-1,0,1340,-9,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1510,2,0,1840,3,0,0 +2013,7,2,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,65,1,14,67,1,0 +2013,10,20,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1839,-9,0,2156,-24,0,0 +2013,5,8,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2143,61,1,2258,89,1,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,700,-2,0,926,0,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2019,37,1,2332,20,1,0 +2013,5,18,6,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1925,-1,0,2155,-7,0,0 +2013,5,4,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,6,0,2104,-10,0,0 +2013,5,30,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1243,44,1,1346,43,1,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1455,3,0,1635,-4,0,0 +2013,10,21,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1340,4,0,1621,13,0,0 +2013,8,11,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1010,45,1,1150,32,1,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2021,-1,0,2217,5,0,0 +2013,7,31,3,OO,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,720,-5,0,952,10,0,0 +2013,7,27,6,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,940,-11,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,600,-1,0,1025,-19,0,0 +2013,9,14,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,-5,0,1200,-17,0,0 +2013,6,13,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2135,16,1,2225,17,1,0 +2013,8,30,5,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1114,4,0,1228,-7,0,0 +2013,8,15,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1015,0,0,1353,1,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1150,-1,0,1305,-6,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1050,25,1,1920,28,1,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,3,0,1605,-2,0,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1651,49,1,1819,52,1,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1755,42,1,1925,36,1,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,850,-4,0,1024,-25,0,0 +2013,6,17,1,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1625,20,1,2114,19,1,0 +2013,5,14,2,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,-5,0,722,-14,0,0 +2013,5,20,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,62,1,2046,59,1,0 +2013,4,28,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1135,-3,0,2010,-7,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2100,9,0,2350,0,0,0 +2013,10,17,4,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1225,25,1,2025,-22,0,0 +2013,9,7,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-6,0,1113,-1,0,0 +2013,5,28,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1122,-2,0,1407,3,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,910,-2,0,1025,-8,0,0 +2013,9,25,3,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2025,-12,0,2303,8,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,0,0,2123,-10,0,0 +2013,4,8,1,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,2045,94,1,15,88,1,0 +2013,4,8,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1040,14,0,1140,51,1,0 +2013,10,26,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-11,0,1310,-21,0,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,-4,0,2334,4,0,0 +2013,4,27,6,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1500,-3,0,1640,-19,0,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1031,-6,0,1315,-4,0,0 +2013,10,11,5,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1635,2,0,2042,-15,0,0 +2013,10,7,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-2,0,941,-3,0,0 +2013,6,10,1,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1022,8,0,1353,25,1,0 +2013,7,10,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-3,0,840,-19,0,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1250,-6,0,1547,-1,0,0 +2013,5,10,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-1,0,753,-12,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1957,-4,0,2127,-14,0,0 +2013,4,20,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,12,0,2102,-7,0,0 +2013,10,6,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,902,-10,0,1020,-7,0,0 +2013,6,17,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1033,58,1,1405,34,1,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,630,18,1,850,20,1,0 +2013,4,25,4,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,9,0,1140,0,0,0 +2013,7,9,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,740,-3,0,835,-6,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,835,2,0,1010,-7,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1210,-2,0,1414,-20,0,0 +2013,9,1,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,710,-6,0,835,-37,0,0 +2013,4,7,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-3,0,1115,-21,0,0 +2013,4,4,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2150,-7,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,900,7,0,1155,14,0,0 +2013,10,5,6,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,650,-2,0,905,1,0,0 +2013,6,8,6,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,-2,0,1355,-13,0,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1308,-2,0,1559,0,0,0 +2013,8,2,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-5,0,1305,-6,0,0 +2013,10,27,7,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,940,-3,0,1055,-7,0,0 +2013,8,11,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-3,0,1006,-8,0,0 +2013,5,6,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-1,0,759,-4,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2040,-6,0,2201,-20,0,0 +2013,5,16,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,929,-6,0,1208,-3,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1405,156,1,1459,155,1,0 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,4,0,1825,-12,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,15,1,1100,11,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-2,0,900,1,0,0 +2013,4,5,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1122,-5,0,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1840,0,0,2100,-15,0,0 +2013,6,9,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1013,-4,0,1140,4,0,0 +2013,8,18,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-6,0,1030,-19,0,0 +2013,10,27,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,735,-2,0,830,0,0,0 +2013,7,23,2,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,42,1,1950,30,1,0 +2013,4,28,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-2,0,1355,-6,0,0 +2013,4,30,2,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1709,45,1,1846,46,1,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,-2,0,2240,-2,0,0 +2013,4,24,3,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,800,-2,0,1140,7,0,0 +2013,7,17,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-2,0,1240,-3,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1050,-3,0,1435,-8,0,0 +2013,7,26,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,11,0,1155,13,0,0 +2013,5,6,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1333,0,,1440,0,1,1 +2013,5,7,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1700,26,1,1805,25,1,0 +2013,4,2,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1614,-2,0,29,-32,0,0 +2013,6,29,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1600,-3,0,1755,-12,0,0 +2013,5,24,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-2,0,1709,-14,0,0 +2013,7,15,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-10,0,728,-26,0,0 +2013,4,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1950,-4,0,2241,2,0,0 +2013,10,29,2,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1955,-8,0,2138,-11,0,0 +2013,6,1,6,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,110,1,1908,107,1,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,800,-8,0,905,-10,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1050,-4,0,1240,-22,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1611,-3,0,1814,-16,0,0 +2013,7,13,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1345,9,0,1430,18,1,0 +2013,10,12,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1442,-11,0,1613,-15,0,0 +2013,10,23,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1000,-5,0,1200,0,0,0 +2013,6,10,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-4,0,1910,-1,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1547,-5,0,1725,-12,0,0 +2013,5,20,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-1,0,1050,-5,0,0 +2013,5,8,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,11,0,2051,-6,0,0 +2013,9,27,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,754,-11,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1505,-2,0,1525,-16,0,0 +2013,7,23,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1434,179,1,1640,211,1,0 +2013,7,30,2,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1455,18,1,1812,5,0,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1925,9,0,2040,10,0,0 +2013,4,21,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1730,11,0,2017,-1,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1530,6,0,1655,-1,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,940,-2,0,1052,-9,0,0 +2013,4,13,6,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,-4,0,2155,-19,0,0 +2013,6,20,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,2,0,1230,1,0,0 +2013,10,7,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,610,-3,0,936,-18,0,0 +2013,6,19,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1755,-8,0,2016,-10,0,0 +2013,6,27,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-1,0,715,0,0,0 +2013,7,28,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1115,10,0,1405,30,1,0 +2013,6,24,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1735,6,0,1925,19,1,0 +2013,6,17,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1224,2,0,1340,20,1,0 +2013,10,6,7,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-9,0,1525,6,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2122,56,1,2344,53,1,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1420,5,0,1656,-1,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,725,-1,0,1040,-5,0,0 +2013,8,25,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1335,-3,0,1610,-1,0,0 +2013,5,18,6,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,900,15,1,1130,0,0,0 +2013,6,18,2,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1131,-5,0,1609,12,0,0 +2013,8,1,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,643,-2,0,0 +2013,10,1,2,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1756,51,1,1956,38,1,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1150,-1,0,1415,-15,0,0 +2013,9,30,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,-3,0,2214,-9,0,0 +2013,6,7,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,630,-2,0,1225,-15,0,0 +2013,8,11,7,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-3,0,804,-6,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1915,41,1,2048,26,1,0 +2013,9,18,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-11,0,826,14,0,0 +2013,5,11,6,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1815,26,1,1850,17,1,0 +2013,9,17,2,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1309,-11,0,1604,-11,0,0 +2013,5,1,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1750,-3,0,2110,-9,0,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,815,-2,0,935,-3,0,0 +2013,9,13,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,1015,-17,0,0 +2013,9,5,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1010,0,,1135,0,1,1 +2013,9,14,6,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,1355,-16,0,0 +2013,7,10,3,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1825,148,1,2057,136,1,0 +2013,5,22,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,5,0,2331,-11,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,-3,0,1005,-7,0,0 +2013,10,15,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,7,0,1400,-10,0,0 +2013,4,2,2,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-3,0,1515,-5,0,0 +2013,8,5,1,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,625,6,0,836,28,1,0 +2013,7,20,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1435,0,0,1801,-1,0,0 +2013,5,8,3,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-8,0,1509,7,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1000,18,1,1238,9,0,0 +2013,6,30,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,700,-2,0,840,-12,0,0 +2013,5,4,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-7,0,934,7,0,0 +2013,7,4,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,1,0,1810,-14,0,0 +2013,4,2,2,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1720,5,0,1859,16,1,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2032,0,0,2301,-5,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1040,-1,0,1308,-26,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,605,-3,0,835,-13,0,0 +2013,7,26,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2205,-3,0,10,-10,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,-2,0,2241,-22,0,0 +2013,6,20,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1514,-1,0,1824,-9,0,0 +2013,9,23,1,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-1,0,1350,-10,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,844,4,0,1647,30,1,0 +2013,7,24,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,0,0,1815,3,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1340,61,1,1440,53,1,0 +2013,7,23,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1735,90,1,1915,153,1,0 +2013,10,31,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1859,-10,0,2157,-13,0,0 +2013,10,27,7,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1532,-4,0,1750,-10,0,0 +2013,8,6,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,15,1,720,29,1,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,1,0,2146,12,0,0 +2013,4,8,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,840,-19,0,0 +2013,8,21,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-6,0,1634,-3,0,0 +2013,8,13,2,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-4,0,1543,-6,0,0 +2013,5,4,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,32,1,2102,21,1,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-6,0,1105,-11,0,0 +2013,8,24,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1525,-1,0,1747,-5,0,0 +2013,8,12,1,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1940,-2,0,2225,-8,0,0 +2013,5,6,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1808,22,1,1946,7,0,0 +2013,9,22,7,EV,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1007,41,1,1456,27,1,0 +2013,5,22,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,111,1,1403,129,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1101,-3,0,1244,16,1,0 +2013,7,17,3,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1605,44,1,1906,56,1,0 +2013,7,23,2,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1220,21,1,1431,22,1,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2020,49,1,2115,38,1,0 +2013,4,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,-1,0,940,-2,0,0 +2013,4,1,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1155,4,0,1445,-8,0,0 +2013,4,27,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,845,-3,0,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1205,2,0,1320,-4,0,0 +2013,5,5,7,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1312,6,0,1658,-1,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1405,-2,0,1734,-8,0,0 +2013,9,16,1,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1652,-2,0,1846,-9,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1840,-4,0,2110,-29,0,0 +2013,10,17,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,-6,0,1822,2,0,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1550,3,0,1841,-29,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2025,17,1,2155,3,0,0 +2013,10,20,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2122,2,0,510,-13,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1015,-5,0,1410,1,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1335,-2,0,1615,15,1,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2055,6,0,2205,-5,0,0 +2013,10,30,3,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,-5,0,2342,-29,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1001,3,0,1047,6,0,0 +2013,8,20,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,811,110,1,928,131,1,0 +2013,7,8,1,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,736,-5,0,1532,-12,0,0 +2013,5,5,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1423,1,0,1748,-9,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,755,-2,0,905,-12,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-5,0,1219,-23,0,0 +2013,9,26,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,820,-3,0,930,-11,0,0 +2013,8,20,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-2,0,725,-15,0,0 +2013,5,1,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1300,5,0,1335,12,0,0 +2013,6,17,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,35,1,17,40,1,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1153,-4,0,1418,-13,0,0 +2013,6,20,4,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,-6,0,1755,-11,0,0 +2013,8,15,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,47,1,1345,56,1,0 +2013,8,26,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1505,5,0,1835,-26,0,0 +2013,8,1,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,546,-2,0,905,-2,0,0 +2013,10,11,5,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1250,-6,0,1400,-15,0,0 +2013,10,22,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1459,-2,0,1645,-4,0,0 +2013,9,14,6,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-6,0,2150,-7,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1320,12,0,1630,2,0,0 +2013,8,25,7,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1355,5,0,1655,2,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,89,1,1901,66,1,0 +2013,6,5,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,818,-4,0,1100,-10,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1457,-4,0,1555,-5,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2045,-1,0,2150,-2,0,0 +2013,5,14,2,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,930,-4,0,1231,0,0,0 +2013,8,14,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,9,0,2137,7,0,0 +2013,10,24,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,835,-10,0,0 +2013,4,26,5,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1105,-6,0,1325,-5,0,0 +2013,8,24,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1556,-10,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1840,0,0,2115,0,0,0 +2013,8,7,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-1,0,1727,28,1,0 +2013,4,2,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1325,-3,0,1530,-8,0,0 +2013,7,20,6,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,14,0,549,8,0,0 +2013,4,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,845,-2,0,1255,-6,0,0 +2013,10,13,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2010,30,1,2225,-2,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,27,1,2145,37,1,0 +2013,8,15,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,9,0,810,0,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1631,-6,0,1758,-13,0,0 +2013,5,7,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-1,0,2100,-2,0,0 +2013,6,15,6,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-6,0,1508,-9,0,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2326,69,1,15,62,1,0 +2013,9,11,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1532,55,1,1717,68,1,0 +2013,9,11,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-4,0,1917,-4,0,0 +2013,7,17,3,9E,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1931,-5,0,2115,-15,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2045,78,1,2239,60,1,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,810,25,1,1013,-5,0,0 +2013,7,26,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1342,66,1,1510,61,1,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,-5,0,2359,-20,0,0 +2013,4,14,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1636,-7,0,1955,-15,0,0 +2013,6,26,3,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,745,-4,0,920,-18,0,0 +2013,6,5,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,505,36,1,751,22,1,0 +2013,5,8,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1648,134,1,1825,185,1,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1320,147,1,1530,154,1,0 +2013,6,19,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-2,0,1255,-2,0,0 +2013,6,9,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1117,-1,0,1303,-4,0,0 +2013,5,18,6,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-3,0,1355,-12,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,18,1,2010,22,1,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1016,2,0,1155,-9,0,0 +2013,5,12,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1253,4,0,2056,-27,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1804,1,0,1904,-5,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2210,-5,0,2327,-10,0,0 +2013,7,11,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-5,0,922,-8,0,0 +2013,9,8,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-3,0,1757,-10,0,0 +2013,5,21,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1025,-3,0,1100,-8,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1620,-1,0,2330,12,0,0 +2013,10,14,1,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1716,-1,0,1803,0,0,0 +2013,4,9,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,-8,0,915,-6,0,0 +2013,8,5,1,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1234,36,1,2103,14,0,0 +2013,4,19,5,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1319,0,0,1610,1,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,-5,0,1100,-1,0,0 +2013,8,12,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1745,14,0,1910,24,1,0 +2013,8,20,2,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,606,-2,0,755,0,0,0 +2013,6,10,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2100,118,1,2230,107,1,0 +2013,5,3,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1140,3,0,1310,-13,0,0 +2013,7,17,3,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,-3,0,1357,-3,0,0 +2013,7,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1124,-8,0,1309,4,0,0 +2013,9,30,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1940,-7,0,2059,-13,0,0 +2013,8,6,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,31,1,1625,11,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,0,0,1252,-8,0,0 +2013,6,7,5,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,610,2,0,745,-11,0,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1105,-8,0,1232,-22,0,0 +2013,5,4,6,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1057,0,0,1410,-8,0,0 +2013,6,5,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1810,107,1,1922,113,1,0 +2013,10,19,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-10,0,1025,-23,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,39,1,2350,35,1,0 +2013,4,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,855,6,0,1230,-13,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1750,2,0,2040,-14,0,0 +2013,9,27,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-4,0,1325,-14,0,0 +2013,5,21,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1330,-10,0,1558,-11,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1000,10,0,1217,-3,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,-3,0,1236,-15,0,0 +2013,6,8,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-12,0,1441,-14,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1520,-4,0,1912,-16,0,0 +2013,7,7,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1917,12,0,2003,5,0,0 +2013,4,24,3,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1015,-2,0,1200,-9,0,0 +2013,8,18,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,3,0,1759,-1,0,0 +2013,5,29,3,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1500,4,0,1645,-2,0,0 +2013,9,19,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,920,287,1,1214,305,1,0 +2013,6,10,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2005,-7,0,2024,-6,0,0 +2013,10,24,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1908,12,0,2026,26,1,0 +2013,4,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-2,0,2019,-8,0,0 +2013,6,30,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1730,6,0,2017,68,1,0 +2013,9,9,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1018,23,1,1100,29,1,0 +2013,9,24,2,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1705,-8,0,1924,-15,0,0 +2013,10,4,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,-1,0,1123,10,0,0 +2013,5,22,3,9E,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,859,-7,0,1016,-14,0,0 +2013,10,13,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1145,-10,0,1309,11,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1920,10,0,2058,0,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,-2,0,2209,2,0,0 +2013,8,26,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1350,16,1,1510,20,1,0 +2013,4,11,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-6,0,1206,6,0,0 +2013,7,16,2,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1850,2,0,2045,-18,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1339,-7,0,1619,-26,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,955,16,1,1405,-9,0,0 +2013,7,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1205,10,0,1249,3,0,0 +2013,10,24,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,830,-12,0,948,-4,0,0 +2013,5,27,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,1,0,1434,-13,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,0,0,1055,6,0,0 +2013,4,20,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-6,0,1742,-12,0,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1552,-4,0,1718,47,1,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1005,-3,0,1241,2,0,0 +2013,7,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1357,6,0,1803,1,0,0 +2013,5,15,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1025,-3,0,1035,-9,0,0 +2013,8,14,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-7,0,756,5,0,0 +2013,6,12,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,750,3,0,930,-4,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1610,-3,0,1751,-16,0,0 +2013,8,30,5,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2055,66,1,2314,81,1,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2030,68,1,2307,0,1,1 +2013,10,6,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,930,-4,0,1135,-23,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1131,0,0,1408,1,0,0 +2013,9,18,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1510,6,0,1620,-2,0,0 +2013,10,16,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-2,0,1545,-8,0,0 +2013,6,28,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,-2,0,2030,-11,0,0 +2013,10,17,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1350,1,0,1445,-2,0,0 +2013,5,28,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,12,0,1705,4,0,0 +2013,7,31,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-1,0,712,1,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2145,46,1,15,42,1,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,64,1,2155,63,1,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1700,57,1,1800,58,1,0 +2013,10,24,4,WN,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-7,0,945,-5,0,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1609,39,1,1833,0,0,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2015,18,1,2358,-35,0,0 +2013,10,2,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2200,-1,0,30,-14,0,0 +2013,9,3,2,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-11,0,1015,-12,0,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1759,-7,0,2115,-7,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1300,0,,1415,0,1,1 +2013,4,20,6,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1930,12,0,2217,2,0,0 +2013,8,18,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,2005,-5,0,2129,-6,0,0 +2013,7,8,1,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,550,-2,0,750,2,0,0 +2013,8,15,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1221,-7,0,1357,-28,0,0 +2013,10,24,4,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1420,-2,0,1721,-7,0,0 +2013,6,6,4,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1251,-3,0,1527,-11,0,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,4,0,921,-13,0,0 +2013,4,29,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1030,0,0,1205,-9,0,0 +2013,9,28,6,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-4,0,1445,-9,0,0 +2013,9,14,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1050,87,1,1250,94,1,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,930,0,0,1245,-9,0,0 +2013,4,9,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,648,-4,0,0 +2013,4,18,4,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,94,1,1630,74,1,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,12,0,2259,11,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1757,35,1,1956,31,1,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1230,-2,0,1355,-3,0,0 +2013,8,12,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,-2,0,1415,-11,0,0 +2013,8,21,3,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1020,-4,0,1259,1,0,0 +2013,9,13,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1610,27,1,2359,28,1,0 +2013,5,25,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,615,-3,0,1451,-8,0,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2005,21,1,2130,21,1,0 +2013,9,2,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-6,0,915,-12,0,0 +2013,9,19,4,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-9,0,1238,1,0,0 +2013,4,26,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1940,23,1,2130,11,0,0 +2013,6,7,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,3,0,1633,-2,0,0 +2013,9,19,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-2,0,1800,-9,0,0 +2013,4,22,1,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,630,15,1,840,27,1,0 +2013,10,3,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1350,121,1,1502,115,1,0 +2013,4,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1125,2,0,1310,-14,0,0 +2013,8,23,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-6,0,716,15,1,0 +2013,7,19,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1535,-12,0,1759,-15,0,0 +2013,9,12,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1854,28,1,2017,33,1,0 +2013,8,9,5,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,62,1,1642,96,1,0 +2013,7,6,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1450,13,0,1600,17,1,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1220,-5,0,1741,-14,0,0 +2013,9,27,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,650,0,0,810,22,1,0 +2013,5,24,5,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1709,41,1,1845,29,1,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1020,11,0,1430,11,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1436,-1,0,1602,-12,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,752,-6,0,926,7,0,0 +2013,5,3,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,-3,0,2050,-4,0,0 +2013,7,21,7,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1350,16,1,1647,6,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,15,1,2240,23,1,0 +2013,6,27,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,-3,0,1605,-10,0,0 +2013,7,17,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,728,-2,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1250,22,1,1750,9,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-6,0,1506,-22,0,0 +2013,6,23,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1154,121,1,2000,122,1,0 +2013,8,7,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-3,0,525,-12,0,0 +2013,5,4,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-8,0,32,-13,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-4,0,1118,-10,0,0 +2013,9,25,3,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-8,0,1111,-23,0,0 +2013,8,24,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2127,-1,0,2242,0,0,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1055,-4,0,1310,-11,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,-1,0,1618,-10,0,0 +2013,7,20,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,843,-3,0,0 +2013,6,19,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,0,0,805,-13,0,0 +2013,5,11,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,4,0,1843,-7,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1439,177,1,2251,156,1,0 +2013,5,15,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,63,1,1925,57,1,0 +2013,5,29,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-11,0,1942,-12,0,0 +2013,8,27,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1045,-4,0,1259,-7,0,0 +2013,5,19,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1056,24,1,0 +2013,4,29,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1215,-3,0,1435,-21,0,0 +2013,6,8,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1445,11,0,1630,-7,0,0 +2013,7,6,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,5,0,1416,-11,0,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,4,0,1550,-21,0,0 +2013,6,28,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,17,1,1135,15,1,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1709,23,1,1844,-7,0,0 +2013,6,9,7,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,805,-2,0,1027,-8,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1210,0,0,1351,6,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1120,18,1,1320,11,0,0 +2013,7,19,5,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-4,0,1815,12,0,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2147,0,0,2222,-1,0,0 +2013,8,2,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-3,0,2124,4,0,0 +2013,6,17,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1935,-6,0,2110,-12,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,18,1,1225,4,0,0 +2013,10,12,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1110,-5,0,1448,-11,0,0 +2013,6,8,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1008,14,0,1149,16,1,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2220,4,0,2320,-12,0,0 +2013,8,3,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,829,-11,0,0 +2013,8,12,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1250,-3,0,1547,9,0,0 +2013,7,8,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,0,,1228,0,1,1 +2013,7,6,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-3,0,1555,-11,0,0 +2013,8,29,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-8,0,1012,-16,0,0 +2013,4,12,5,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1054,-4,0,1218,2,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2205,0,0,30,5,0,0 +2013,5,13,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1650,2,0,1740,-21,0,0 +2013,5,11,6,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,810,0,0,1050,-21,0,0 +2013,6,22,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1415,16,1,1520,3,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,600,0,0,840,-17,0,0 +2013,7,23,2,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1630,-7,0,1805,-3,0,0 +2013,9,28,6,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1350,0,0,1620,-3,0,0 +2013,7,2,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-4,0,2025,-2,0,0 +2013,5,4,6,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,112,1,2125,105,1,0 +2013,7,13,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-14,0,500,-25,0,0 +2013,6,16,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1921,32,1,2049,32,1,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1541,6,0,1757,-9,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1500,-1,0,1700,-37,0,0 +2013,10,1,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-6,0,929,-2,0,0 +2013,5,2,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,1,0,1315,3,0,0 +2013,10,4,5,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-3,0,1219,-13,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2230,1,0,55,-4,0,0 +2013,5,17,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1535,6,0,1700,3,0,0 +2013,5,16,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-3,0,1114,-6,0,0 +2013,7,8,1,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1327,14,0,1429,7,0,0 +2013,10,22,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,20,1,2120,-2,0,0 +2013,8,14,3,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-2,0,1335,-28,0,0 +2013,7,24,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,708,-5,0,810,0,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2040,27,1,2305,22,1,0 +2013,6,10,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1925,-5,0,2120,-14,0,0 +2013,9,7,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,852,-4,0,1110,-42,0,0 +2013,9,18,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1600,3,0,1735,6,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1618,0,,1710,0,1,1 +2013,7,22,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1910,-3,0,1935,-3,0,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,720,-2,0,1000,-10,0,0 +2013,8,27,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-5,0,1654,-27,0,0 +2013,7,22,1,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1845,0,,2058,0,1,1 +2013,6,16,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1415,-4,0,1710,-9,0,0 +2013,8,10,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-5,0,1150,-16,0,0 +2013,8,31,6,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,1,0,1401,-4,0,0 +2013,5,9,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,-5,0,1405,-1,0,0 +2013,6,22,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1120,-3,0,1510,14,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,0,,1130,0,1,1 +2013,8,20,2,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1745,19,1,2145,26,1,0 +2013,8,1,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1505,23,1,1635,18,1,0 +2013,4,17,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1829,-4,0,2122,-12,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-6,0,903,-12,0,0 +2013,4,30,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1125,0,0,1225,6,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,-3,0,946,-13,0,0 +2013,6,30,7,UA,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,-1,0,917,-22,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2145,14,0,2321,4,0,0 +2013,6,30,7,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2045,18,1,2232,20,1,0 +2013,7,9,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,12,0,749,13,0,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,6,0,1411,5,0,0 +2013,10,30,3,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1804,-4,0,1930,-6,0,0 +2013,5,26,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1635,-3,0,1755,-5,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,0,0,1005,-5,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-3,0,1612,-15,0,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,-2,0,1530,-7,0,0 +2013,10,15,2,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,825,-2,0,1135,-11,0,0 +2013,7,30,2,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1725,17,1,1910,15,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2050,52,1,2210,31,1,0 +2013,4,10,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-3,0,1538,-19,0,0 +2013,8,6,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1745,-3,0,1900,-14,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1230,56,1,1402,41,1,0 +2013,4,23,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,945,60,1,1059,43,1,0 +2013,10,31,4,EV,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1120,26,1,1252,17,1,0 +2013,8,7,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1830,27,1,2015,20,1,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,-6,0,2125,-13,0,0 +2013,8,14,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,23,1,1215,28,1,0 +2013,6,16,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1210,113,1,1435,105,1,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-1,0,2128,-1,0,0 +2013,6,8,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-3,0,1440,-24,0,0 +2013,9,23,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1159,-12,0,1524,-5,0,0 +2013,6,13,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,-7,0,745,-22,0,0 +2013,10,21,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1740,-9,0,2015,-23,0,0 +2013,7,21,7,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,850,-3,0,1105,-6,0,0 +2013,9,13,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,-1,0,1240,-5,0,0 +2013,5,22,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,61,1,1115,41,1,0 +2013,8,5,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-3,0,1740,-6,0,0 +2013,7,25,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2040,-8,0,2142,2,0,0 +2013,10,28,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1052,132,1,1424,144,1,0 +2013,6,29,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,700,-3,0,852,-4,0,0 +2013,7,20,6,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1459,24,1,1746,33,1,0 +2013,5,21,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,700,-13,0,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1155,9,0,1320,9,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1155,20,1,1725,17,1,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-9,0,2056,-14,0,0 +2013,6,30,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1118,7,0,1510,23,1,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1510,-4,0,1610,-13,0,0 +2013,8,10,6,YV,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1208,-5,0,1331,-2,0,0 +2013,5,26,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,20,1,2054,19,1,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-1,0,2140,-19,0,0 +2013,5,17,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-8,0,840,-12,0,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,930,-3,0,1129,-1,0,0 +2013,10,8,2,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2320,-9,0,655,-18,0,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-6,0,916,-4,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,755,-4,0,925,-15,0,0 +2013,10,4,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-3,0,1300,-17,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1420,0,0,1555,-8,0,0 +2013,6,19,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1850,-1,0,2020,4,0,0 +2013,10,14,1,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2028,32,1,2145,38,1,0 +2013,6,22,6,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-1,0,1950,19,1,0 +2013,4,15,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1825,24,1,2010,45,1,0 +2013,4,6,6,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1255,7,0,1605,6,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,-6,0,2348,26,1,0 +2013,6,27,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-6,0,1450,-12,0,0 +2013,9,24,2,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-6,0,2035,-2,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,-1,0,1355,-6,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1055,-1,0,1229,6,0,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1035,2,0,1205,-2,0,0 +2013,10,3,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1257,134,1,1414,131,1,0 +2013,4,21,7,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1210,-7,0,1346,-6,0,0 +2013,5,27,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1346,-10,0,1551,-15,0,0 +2013,6,8,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1405,-1,0,1600,-8,0,0 +2013,4,19,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2027,21,1,2154,17,1,0 +2013,9,8,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2050,0,0,2237,1,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2108,-4,0,2359,-25,0,0 +2013,4,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-3,0,2125,-10,0,0 +2013,6,5,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,2,0,2050,-1,0,0 +2013,5,2,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,7,0,1617,-3,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1330,0,0,1425,-10,0,0 +2013,4,3,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-9,0,1325,0,0,0 +2013,8,1,4,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,929,11,0,1050,27,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,755,-5,0,1015,-11,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,32,1,1735,14,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,745,-5,0,900,-6,0,0 +2013,5,6,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,820,0,0,930,-9,0,0 +2013,7,2,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2056,15,1,512,14,0,0 +2013,5,23,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,13,0,2125,16,1,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1355,0,0,1515,-10,0,0 +2013,6,2,7,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,605,-7,0,855,-23,0,0 +2013,9,8,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2000,4,0,2005,8,0,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,-4,0,1420,-7,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1800,16,1,1910,40,1,0 +2013,10,5,6,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,851,-9,0,1120,-10,0,0 +2013,7,3,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,62,1,2020,83,1,0 +2013,5,24,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,0,0,1016,-23,0,0 +2013,10,27,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,830,-3,0,930,-3,0,0 +2013,10,17,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1154,-3,0,1525,-7,0,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1315,45,1,1405,43,1,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,710,-4,0,1209,-10,0,0 +2013,10,13,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1112,-13,0,1233,-17,0,0 +2013,10,26,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,930,89,1,1305,73,1,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1505,-7,0,1654,-16,0,0 +2013,5,19,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,2,0,1114,-18,0,0 +2013,7,18,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,826,-30,0,0 +2013,10,1,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,948,-8,0,1512,-23,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,0,0,1802,3,0,0 +2013,9,2,1,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,742,-17,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2020,-6,0,2233,7,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,635,-5,0,1005,-19,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,-7,0,1606,-16,0,0 +2013,6,18,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1010,16,1,1125,3,0,0 +2013,4,1,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1200,-6,0,1225,-25,0,0 +2013,9,22,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-7,0,2020,12,0,0 +2013,6,25,2,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2220,-4,0,605,-18,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,911,-1,0,1030,-2,0,0 +2013,9,22,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1411,-25,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,-3,0,1340,-25,0,0 +2013,7,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,3,0,2105,1,0,0 +2013,5,5,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1500,5,0,1610,3,0,0 +2013,5,8,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-5,0,652,-10,0,0 +2013,5,27,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1333,-3,0,1444,-9,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,61,1,1005,55,1,0 +2013,6,27,4,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2035,57,1,505,63,1,0 +2013,5,31,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,4,0,1455,19,1,0 +2013,10,19,6,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,949,-7,0,1237,-5,0,0 +2013,4,24,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1301,148,1,1430,139,1,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,15,1,2250,33,1,0 +2013,8,30,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1557,-4,0,2059,-5,0,0 +2013,8,9,5,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1640,4,0,1830,-12,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,910,-7,0,1020,-18,0,0 +2013,5,24,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1301,9,0,1412,-7,0,0 +2013,10,1,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,630,0,0,1208,-4,0,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1928,5,0,2058,9,0,0 +2013,4,23,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,902,-8,0,951,-7,0,0 +2013,4,6,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,50,-1,0,626,-18,0,0 +2013,8,20,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,9,0,1238,18,1,0 +2013,5,1,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-10,0,1255,-5,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1900,21,1,2330,14,0,0 +2013,5,17,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1009,-7,0,1216,-2,0,0 +2013,10,6,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1910,3,0,2040,-5,0,0 +2013,8,3,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1425,-4,0,2300,-52,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1625,44,1,2030,23,1,0 +2013,4,24,3,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-6,0,1751,-3,0,0 +2013,7,21,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1340,14,0,1648,2,0,0 +2013,6,25,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1434,41,1,1608,41,1,0 +2013,4,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1115,-7,0,1241,1,0,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1130,-5,0,1505,-7,0,0 +2013,8,3,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,7,0,1630,-19,0,0 +2013,4,25,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1115,-6,0,1240,-11,0,0 +2013,6,22,6,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-4,0,1645,11,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-7,0,1833,3,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,15,1,1450,11,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1145,6,0,1310,-4,0,0 +2013,9,19,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,-9,0,1941,-22,0,0 +2013,7,18,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,0,,1639,0,1,1 +2013,8,31,6,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,-6,0,1110,-11,0,0 +2013,4,2,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-6,0,1505,-16,0,0 +2013,7,13,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,61,1,1809,68,1,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2200,24,1,2359,27,1,0 +2013,9,25,3,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1640,12,0,1800,2,0,0 +2013,5,6,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,742,-5,0,1053,2,0,0 +2013,5,20,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1955,166,1,2115,150,1,0 +2013,9,8,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-5,0,1715,-11,0,0 +2013,8,14,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1003,-4,0,1045,-10,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1205,-3,0,1354,-11,0,0 +2013,6,25,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1120,90,1,1953,85,1,0 +2013,8,20,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,845,-2,0,1140,-11,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,703,-3,0,1026,-14,0,0 +2013,8,22,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-2,0,743,0,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-4,0,1356,-14,0,0 +2013,9,25,3,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1125,0,0,1335,-3,0,0 +2013,6,2,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2055,-4,0,2210,-11,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,59,1,1946,38,1,0 +2013,7,25,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,-8,0,1148,-13,0,0 +2013,9,19,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1505,248,1,1607,269,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2145,76,1,2302,54,1,0 +2013,10,14,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-4,0,1617,-23,0,0 +2013,9,27,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1013,0,0,0 +2013,9,20,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,850,1,0,1210,-17,0,0 +2013,7,7,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-5,0,848,-2,0,0 +2013,5,2,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-6,0,1054,-1,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1110,7,0,1230,0,0,0 +2013,9,25,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1550,5,0,1725,-2,0,0 +2013,8,14,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-15,0,920,-8,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2255,56,1,2355,51,1,0 +2013,6,14,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,10,0,2005,44,1,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,856,1,0,1559,-9,0,0 +2013,4,21,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,805,-4,0,935,23,1,0 +2013,6,1,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1120,-3,0,1440,-17,0,0 +2013,5,6,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,2,0,753,-2,0,0 +2013,4,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2125,0,0,2230,-3,0,0 +2013,7,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-2,0,1010,-7,0,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1835,5,0,2010,0,0,0 +2013,6,24,1,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2153,131,1,558,128,1,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-3,0,1026,-4,0,0 +2013,10,22,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1415,7,0,1615,-6,0,0 +2013,8,6,2,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1400,13,0,1450,1,0,0 +2013,8,25,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1125,27,1,1255,16,1,0 +2013,6,17,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1541,24,1,1654,13,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2149,31,1,2330,29,1,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,-2,0,2346,35,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,-4,0,1559,-13,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,815,0,0,954,-12,0,0 +2013,10,18,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-4,0,1925,-6,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1958,-1,0,2135,-1,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,24,1,1820,17,1,0 +2013,10,11,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1025,-3,0,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,18,1,1556,2,0,0 +2013,8,26,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1359,81,1,1556,63,1,0 +2013,4,5,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,-2,0,1934,-9,0,0 +2013,10,15,2,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,715,-7,0,818,1,0,0 +2013,8,17,6,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1459,-3,0,1746,7,0,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1055,20,1,1229,21,1,0 +2013,9,2,1,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,-6,0,2206,-13,0,0 +2013,10,6,7,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1800,5,0,2016,-10,0,0 +2013,10,8,2,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,810,8,0,1005,-11,0,0 +2013,4,1,1,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1315,14,0,1440,15,1,0 +2013,6,22,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-6,0,1011,-25,0,0 +2013,8,23,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,820,-4,0,930,-8,0,0 +2013,8,29,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,758,-6,0,1020,-15,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,-4,0,1605,-9,0,0 +2013,7,27,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-4,0,950,-8,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1840,13,0,2210,8,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1030,6,0,1250,-4,0,0 +2013,10,22,2,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1830,0,0,2051,-15,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1254,-3,0,1614,2,0,0 +2013,4,27,6,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-7,0,1612,-11,0,0 +2013,5,2,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,1,0,2020,5,0,0 +2013,9,17,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2025,-3,0,2205,-25,0,0 +2013,5,24,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,70,1,1031,76,1,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1745,-4,0,2335,6,0,0 +2013,5,31,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,13,0,2015,47,1,0 +2013,6,18,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,4,0,1340,-15,0,0 +2013,7,15,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,47,1,1910,40,1,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1135,32,1,1835,42,1,0 +2013,8,2,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-4,0,2250,-6,0,0 +2013,7,31,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2022,3,0,12,-3,0,0 +2013,5,6,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-1,0,1855,-15,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1445,42,1,1545,41,1,0 +2013,5,31,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1310,1,0,1553,0,0,0 +2013,9,30,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,14,0,1207,21,1,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,140,1,1315,133,1,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2055,14,0,2205,7,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1715,0,,1849,0,1,1 +2013,10,22,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,-10,0,720,-1,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2020,-3,0,2240,-13,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,24,1,2155,41,1,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,705,9,0,938,11,0,0 +2013,4,29,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1114,-10,0,1229,2,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,-6,0,2130,4,0,0 +2013,6,15,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1403,4,0,1531,-6,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1303,-6,0,1539,-18,0,0 +2013,8,12,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1705,1,0,1751,25,1,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,910,-3,0,1442,10,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2200,0,0,2250,-7,0,0 +2013,10,16,3,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1405,21,1,1635,15,1,0 +2013,10,22,2,EV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,959,-6,0,1135,-17,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1141,-5,0,1620,-35,0,0 +2013,10,3,4,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,3,0,1550,-2,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1425,20,1,1950,3,0,0 +2013,7,28,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-9,0,2151,-14,0,0 +2013,6,30,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,1,0,2058,4,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,-3,0,1820,-17,0,0 +2013,6,29,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1106,-2,0,1649,-11,0,0 +2013,7,16,2,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,-11,0,813,-15,0,0 +2013,8,1,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,833,-21,0,0 +2013,6,16,7,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,-2,0,1050,3,0,0 +2013,4,30,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,-5,0,2202,-12,0,0 +2013,6,19,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1505,-4,0,1552,5,0,0 +2013,4,9,2,WN,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1135,-3,0,1420,-14,0,0 +2013,4,22,1,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,3,0,1250,-7,0,0 +2013,7,12,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-3,0,2000,-4,0,0 +2013,8,27,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-11,0,500,-23,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-2,0,1936,-3,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1512,-1,0,1914,-17,0,0 +2013,4,14,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1915,3,0,2105,-13,0,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-3,0,1644,-26,0,0 +2013,8,23,5,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1915,-5,0,2010,-4,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,25,1,1805,17,1,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,-2,0,1525,-8,0,0 +2013,8,2,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2140,0,0,2255,2,0,0 +2013,10,29,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,56,1,1220,46,1,0 +2013,10,28,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,2,0,1205,-20,0,0 +2013,7,2,2,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1133,-3,0,1300,-16,0,0 +2013,10,23,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-8,0,1106,-6,0,0 +2013,7,15,1,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,54,1,2104,29,1,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-4,0,1416,-25,0,0 +2013,10,4,5,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-10,0,2059,-4,0,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1935,-1,0,2256,-29,0,0 +2013,9,16,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2115,10,0,538,1,0,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1740,36,1,1857,25,1,0 +2013,6,25,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-2,0,1913,-11,0,0 +2013,6,24,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-5,0,1610,-6,0,0 +2013,6,23,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,0,0,1450,-3,0,0 +2013,8,8,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1725,18,1,2056,21,1,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-6,0,808,6,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-7,0,940,-21,0,0 +2013,4,23,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1901,11,0,2154,-5,0,0 +2013,9,13,5,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1918,49,1,2159,45,1,0 +2013,8,13,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1654,-6,0,2200,-11,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,0,0,1033,1,0,0 +2013,5,29,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-8,0,1804,-19,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1005,9,0,1310,-1,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1200,28,1,1315,28,1,0 +2013,8,9,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1702,146,1,2003,138,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,275,1,1710,283,1,0 +2013,4,15,1,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1500,17,1,1621,14,0,0 +2013,8,4,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-1,0,920,-1,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1100,4,0,1200,4,0,0 +2013,7,5,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-7,0,750,-8,0,0 +2013,6,10,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,32,1,2128,37,1,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2010,-2,0,2124,-5,0,0 +2013,8,4,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1541,6,0,1744,12,0,0 +2013,9,5,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1745,-5,0,2048,-21,0,0 +2013,4,3,3,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1508,-8,0,1840,-39,0,0 +2013,7,27,6,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,655,-1,0,755,-4,0,0 +2013,10,12,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1942,1,0,2134,15,1,0 +2013,9,2,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-2,0,1415,-5,0,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-2,0,1633,-12,0,0 +2013,5,5,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1500,4,0,2330,-3,0,0 +2013,6,20,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,99,1,2125,85,1,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1750,-2,0,2319,-19,0,0 +2013,4,1,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1025,0,0,1155,-13,0,0 +2013,6,2,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-7,0,1241,-8,0,0 +2013,6,15,6,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1400,-1,0,1530,-10,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1342,-3,0,1829,-32,0,0 +2013,7,29,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2055,9,0,2115,3,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1510,9,0,1605,2,0,0 +2013,7,9,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1010,-1,0,1315,-11,0,0 +2013,6,14,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1725,7,0,1850,0,0,0 +2013,7,11,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,54,1,1310,44,1,0 +2013,7,15,1,YV,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-4,0,1908,-5,0,0 +2013,4,11,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-1,0,1220,-8,0,0 +2013,8,3,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1843,-2,0,2135,-15,0,0 +2013,8,28,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,815,-3,0,1000,-2,0,0 +2013,5,12,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,17,1,2125,7,0,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1024,-9,0,1545,-6,0,0 +2013,5,10,5,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,7,0,1700,3,0,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1800,5,0,1926,-9,0,0 +2013,9,20,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,835,3,0,1215,-2,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2130,29,1,2310,13,0,0 +2013,7,12,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1803,-2,0,1937,-14,0,0 +2013,7,21,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,-4,0,1254,1,0,0 +2013,6,26,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,12,0,1054,7,0,0 +2013,5,25,6,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,905,-1,0,1025,-7,0,0 +2013,8,27,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1820,-2,0,2140,-21,0,0 +2013,7,9,2,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2345,59,1,820,45,1,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1335,14,0,1945,12,0,0 +2013,5,5,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,16,1,2015,22,1,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1335,7,0,1515,-1,0,0 +2013,7,29,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1425,10,0,1545,-6,0,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1835,-4,0,1950,-14,0,0 +2013,8,29,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1215,-3,0,1450,-9,0,0 +2013,6,18,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1415,51,1,1555,40,1,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,825,-7,0,920,-9,0,0 +2013,4,5,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,635,-6,0,800,-5,0,0 +2013,6,9,7,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-4,0,1350,-20,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1605,13,0,2255,24,1,0 +2013,6,24,1,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-3,0,1645,-3,0,0 +2013,8,11,7,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,710,0,0,830,-13,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1435,2,0,1710,-8,0,0 +2013,5,4,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,-3,0,1530,8,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,28,1,1445,51,1,0 +2013,5,15,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,-3,0,2338,-3,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,-2,0,1820,-1,0,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,22,1,1705,17,1,0 +2013,8,17,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,-3,0,903,-8,0,0 +2013,4,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1340,2,0,1455,-6,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,1000,-6,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1643,164,1,2129,171,1,0 +2013,8,24,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,-2,0,1601,-1,0,0 +2013,7,19,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1639,0,,1750,0,1,1 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1355,-4,0,1830,-29,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,-5,0,1210,-13,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,95,1,1905,101,1,0 +2013,8,12,1,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1500,-3,0,2020,-24,0,0 +2013,10,4,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1730,-5,0,1926,-11,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1950,3,0,2049,-2,0,0 +2013,9,2,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1400,48,1,1530,45,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1215,30,1,1404,20,1,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2145,8,0,15,-2,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-4,0,2039,-7,0,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1025,9,0,1621,2,0,0 +2013,5,18,6,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,625,-3,0,940,-18,0,0 +2013,10,28,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-9,0,2113,-26,0,0 +2013,9,2,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-2,0,1751,-2,0,0 +2013,7,13,6,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1120,5,0,1205,1,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1548,-4,0,1934,-27,0,0 +2013,4,12,5,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,10,0,616,16,1,0 +2013,10,4,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-5,0,1024,0,0,0 +2013,8,23,5,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-5,0,656,-12,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1035,-4,0,1215,-6,0,0 +2013,10,12,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-6,0,2043,-15,0,0 +2013,4,12,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-6,0,1218,-18,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,11,0,2100,-4,0,0 +2013,7,31,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1555,-7,0,1715,-7,0,0 +2013,7,8,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,11,0,2120,-13,0,0 +2013,10,25,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,-2,0,1611,-5,0,0 +2013,6,19,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,25,1,2258,16,1,0 +2013,10,30,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,15,1,1940,6,0,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,827,23,1,1318,12,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1535,53,1,2015,41,1,0 +2013,10,8,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1249,36,1,1352,28,1,0 +2013,8,4,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2125,2,0,2250,-5,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,-6,0,2128,6,0,0 +2013,4,20,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,-1,0,1425,-14,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,925,-1,0,1215,-5,0,0 +2013,7,11,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-1,0,1015,-5,0,0 +2013,7,8,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,905,-24,0,0 +2013,7,26,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,0,0,1329,14,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-1,0,1655,-10,0,0 +2013,8,11,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,955,3,0,1200,15,1,0 +2013,5,12,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,-2,0,1617,-14,0,0 +2013,4,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-5,0,813,15,1,0 +2013,6,2,7,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,1,0,1035,1,0,0 +2013,6,2,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,3,0,2257,14,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,955,0,0,1058,21,1,0 +2013,9,17,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1010,4,0,1135,18,1,0 +2013,9,27,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1145,-2,0,1335,-9,0,0 +2013,5,15,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,-1,0,1840,-10,0,0 +2013,9,12,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1339,-8,0,1951,-9,0,0 +2013,7,26,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-7,0,1503,-10,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1010,2,0,1355,-5,0,0 +2013,8,17,6,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1052,24,1,1641,17,1,0 +2013,10,8,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-6,0,900,-20,0,0 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,11,0,2046,-2,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1351,-4,0,1519,-21,0,0 +2013,7,30,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1635,63,1,1649,56,1,0 +2013,6,28,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1910,46,1,1915,51,1,0 +2013,6,5,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,50,1,929,45,1,0 +2013,5,28,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,630,-2,0,0 +2013,9,9,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,2050,1,0,2114,8,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,3,0,1840,-4,0,0 +2013,6,8,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,720,-4,0,1204,-16,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-3,0,1334,-21,0,0 +2013,5,8,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,-1,0,2029,10,0,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-6,0,659,-11,0,0 +2013,8,11,7,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,0,0,2154,11,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-4,0,2214,-16,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1803,88,1,2045,145,1,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2105,0,0,2340,2,0,0 +2013,4,29,1,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1700,-2,0,1855,-16,0,0 +2013,6,27,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-4,0,1228,-3,0,0 +2013,7,29,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2040,-8,0,2235,-16,0,0 +2013,6,6,4,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-3,0,713,2,0,0 +2013,10,20,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1625,24,1,1909,11,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1945,0,0,2038,-18,0,0 +2013,10,30,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1310,-7,0,1600,-9,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,916,0,0,1155,-32,0,0 +2013,10,10,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-6,0,1400,20,1,0 +2013,10,20,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1305,6,0,1610,13,0,0 +2013,8,7,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1900,20,1,2110,9,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,42,1,1833,30,1,0 +2013,5,21,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2005,0,,2151,0,1,1 +2013,4,3,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1845,4,0,1950,2,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-2,0,1703,-9,0,0 +2013,5,27,1,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,910,-5,0,1158,-6,0,0 +2013,6,29,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1315,27,1,1518,20,1,0 +2013,8,15,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,-3,0,1145,-4,0,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,600,7,0,932,10,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,905,-6,0,1348,-14,0,0 +2013,9,12,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1045,2,0,1210,1,0,0 +2013,4,23,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1820,-4,0,2105,-18,0,0 +2013,4,18,4,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,708,-9,0,1031,-27,0,0 +2013,5,13,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,86,1,1210,87,1,0 +2013,8,13,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,632,-5,0,745,5,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1000,13,0,1715,16,1,0 +2013,10,25,5,9E,14524,Richmond International,Richmond,VA,12478,John F. Kennedy International,New York,NY,1230,-5,0,1353,1,0,0 +2013,8,9,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1537,42,1,1740,38,1,0 +2013,5,20,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-1,0,720,9,0,0 +2013,7,2,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-7,0,534,11,0,0 +2013,4,19,5,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1345,-1,0,1647,1,0,0 +2013,5,24,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1516,17,1,2011,-6,0,0 +2013,4,5,5,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1730,-3,0,1920,-15,0,0 +2013,8,9,5,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,610,-1,0,640,-10,0,0 +2013,9,30,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1150,0,0,1305,-7,0,0 +2013,4,29,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-7,0,1040,-21,0,0 +2013,4,27,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1000,-1,0,1125,-8,0,0 +2013,6,4,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,-9,0,2018,-10,0,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,-3,0,1750,-14,0,0 +2013,10,24,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,32,1,1314,41,1,0 +2013,5,14,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,600,-3,0,750,-26,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-4,0,1807,-13,0,0 +2013,7,1,1,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1550,-4,0,1740,-8,0,0 +2013,6,6,4,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1426,-2,0,1647,-8,0,0 +2013,8,9,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-5,0,1621,-13,0,0 +2013,8,12,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1820,5,0,1857,3,0,0 +2013,5,16,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2045,4,0,2110,-8,0,0 +2013,10,7,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,1,0,1640,-6,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,855,0,0,1103,-8,0,0 +2013,7,10,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2054,100,1,2228,114,1,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,13,0,1651,10,0,0 +2013,6,25,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1410,-2,0,1555,-15,0,0 +2013,9,12,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,2,0,1409,77,1,0 +2013,9,9,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,600,-4,0,750,-17,0,0 +2013,10,31,4,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,905,-3,0,1105,0,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1214,18,1,1959,30,1,0 +2013,6,27,4,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,-4,0,2255,-16,0,0 +2013,8,16,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1005,2,0,1115,0,0,0 +2013,9,19,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1434,-2,0,1609,-14,0,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,835,0,0,1125,-12,0,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1540,11,0,1724,17,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,0,0,1000,-20,0,0 +2013,6,28,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1100,0,0,1145,10,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,-3,0,1314,1,0,0 +2013,7,30,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1250,-4,0,1535,-21,0,0 +2013,4,26,5,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1245,-5,0,1605,-19,0,0 +2013,7,12,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2115,2,0,2220,-9,0,0 +2013,6,19,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1328,1,0,1613,5,0,0 +2013,4,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-1,0,1210,8,0,0 +2013,4,23,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2245,0,0,615,-29,0,0 +2013,8,27,2,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1855,-7,0,2130,-25,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2010,-1,0,2236,-11,0,0 +2013,8,23,5,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-4,0,810,-14,0,0 +2013,4,5,5,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-5,0,930,-2,0,0 +2013,8,20,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1355,115,1,1955,92,1,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1103,-2,0,1345,3,0,0 +2013,8,9,5,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,605,1,0,730,4,0,0 +2013,4,28,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1359,70,1,1518,63,1,0 +2013,8,15,4,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1654,-1,0,1836,-2,0,0 +2013,9,29,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-10,0,2150,-21,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1100,-4,0,1228,-5,0,0 +2013,5,30,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-1,0,1610,-1,0,0 +2013,10,12,6,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-10,0,1258,-24,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1445,30,1,1715,35,1,0 +2013,9,6,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,12,0,1353,20,1,0 +2013,6,14,5,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1925,3,0,2145,-9,0,0 +2013,9,18,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,-4,0,1558,-6,0,0 +2013,10,22,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-4,0,1109,-1,0,0 +2013,9,13,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,-3,0,1840,-19,0,0 +2013,9,11,3,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1035,27,1,1645,9,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,740,-4,0,934,-13,0,0 +2013,5,9,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,842,-18,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,28,1,2046,21,1,0 +2013,10,11,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1855,0,0,2245,3,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,835,25,1,1005,23,1,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,116,1,1850,116,1,0 +2013,7,8,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1835,11,0,1930,9,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1517,-14,0,0 +2013,8,18,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,1404,6,0,0 +2013,10,4,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,43,1,1540,38,1,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,740,-1,0,1110,1,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1431,66,1,1525,63,1,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,845,6,0,1018,8,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,-4,0,1335,-4,0,0 +2013,6,10,1,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1220,161,1,1435,152,1,0 +2013,4,27,6,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,720,-3,0,904,-19,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1510,0,0,1719,17,1,0 +2013,9,16,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,1431,-17,0,0 +2013,6,19,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1344,-1,0,1621,4,0,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1706,-3,0,2104,-25,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1800,24,1,1905,10,0,0 +2013,8,2,5,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1430,23,1,1615,12,0,0 +2013,5,23,4,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1100,7,0,1303,76,1,0 +2013,6,14,5,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,2,0,2023,-1,0,0 +2013,7,27,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1230,83,1,2023,85,1,0 +2013,5,1,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1052,17,1,1410,9,0,0 +2013,7,30,2,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1835,-10,0,2150,-39,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1540,7,0,1700,7,0,0 +2013,8,12,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,-2,0,2112,11,0,0 +2013,8,4,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1732,4,0,1854,-9,0,0 +2013,8,22,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-6,0,2020,-20,0,0 +2013,6,18,2,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,-2,0,604,21,1,0 +2013,8,10,6,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1425,1,0,1559,9,0,0 +2013,5,9,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1017,-6,0,1300,3,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2255,142,1,2355,138,1,0 +2013,6,17,1,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1155,-1,0,1550,-10,0,0 +2013,7,9,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,60,1,1013,58,1,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,7,0,1434,10,0,0 +2013,9,17,2,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1922,-10,0,2053,-22,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1310,11,0,1525,24,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2148,8,0,2355,-1,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,-6,0,2336,-13,0,0 +2013,6,5,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1609,-7,0,0 +2013,9,30,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-1,0,1325,-13,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-2,0,1435,-19,0,0 +2013,5,7,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,600,-8,0,818,-10,0,0 +2013,5,22,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,2005,-1,0,2200,82,1,0 +2013,6,17,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1754,21,1,1957,33,1,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,-2,0,1909,-10,0,0 +2013,8,3,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1905,4,0,2210,12,0,0 +2013,5,24,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1417,-3,0,1456,1,0,0 +2013,4,23,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1338,-3,0,1706,-6,0,0 +2013,7,25,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,655,-6,0,825,0,0,0 +2013,5,12,7,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,-9,0,1500,-21,0,0 +2013,5,26,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,906,1,0,1253,-2,0,0 +2013,4,6,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,0,0,920,-4,0,0 +2013,4,14,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,905,1,0,1035,-14,0,0 +2013,7,23,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1803,5,0,2109,24,1,0 +2013,7,29,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1714,-8,0,2025,-10,0,0 +2013,10,1,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-7,0,2136,-18,0,0 +2013,8,29,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,41,1,720,31,1,0 +2013,8,21,3,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1832,26,1,2008,19,1,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1920,-4,0,2123,-4,0,0 +2013,10,5,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1059,26,1,1206,35,1,0 +2013,5,2,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1245,81,1,1400,90,1,0 +2013,8,26,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1040,-3,0,1135,-4,0,0 +2013,9,20,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1852,0,,2013,0,1,1 +2013,8,22,4,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,-4,0,729,-17,0,0 +2013,5,14,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1112,-7,0,1450,-6,0,0 +2013,10,10,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2200,-2,0,30,8,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,707,-4,0,938,3,0,0 +2013,6,3,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,940,-5,0,1052,-20,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1135,22,1,1300,16,1,0 +2013,10,2,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,-5,0,1106,-10,0,0 +2013,6,1,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,800,-1,0,935,-15,0,0 +2013,5,21,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,0,0,1440,-1,0,0 +2013,5,2,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,13,0,1849,1,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1630,-3,0,1830,-14,0,0 +2013,8,2,5,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,73,1,856,72,1,0 +2013,5,8,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-3,0,1250,-10,0,0 +2013,4,28,7,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-11,0,1940,-15,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,36,1,2250,35,1,0 +2013,4,13,6,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,1,0,1020,-11,0,0 +2013,10,3,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-18,0,1050,3,0,0 +2013,7,23,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-8,0,853,-4,0,0 +2013,8,7,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,946,157,1,1007,144,1,0 +2013,9,17,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,8,0,1430,10,0,0 +2013,7,22,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-12,0,1334,-5,0,0 +2013,4,24,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1442,-5,0,1603,-1,0,0 +2013,6,10,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,740,5,0,1014,-3,0,0 +2013,6,16,7,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1005,62,1,1450,56,1,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1507,0,0,1645,-2,0,0 +2013,5,2,4,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-3,0,714,2,0,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-10,0,949,-6,0,0 +2013,7,1,1,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,-3,0,1308,-21,0,0 +2013,4,20,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1635,102,1,1939,69,1,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1127,-4,0,1757,22,1,0 +2013,7,7,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1637,14,0,1840,8,0,0 +2013,4,12,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-5,0,754,-1,0,0 +2013,7,28,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1930,0,,2253,0,1,1 +2013,7,11,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2158,46,1,2339,39,1,0 +2013,5,18,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-5,0,705,16,1,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2335,0,0,620,-3,0,0 +2013,9,28,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2030,-5,0,2106,-5,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,910,1,0,1112,-3,0,0 +2013,8,18,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,3,0,2105,-6,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,9,0,1625,-5,0,0 +2013,10,31,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-6,0,1755,1,0,0 +2013,9,27,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,365,1,1900,348,1,0 +2013,8,30,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,19,1,1305,13,0,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,715,1,0,849,-7,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1410,15,1,1540,9,0,0 +2013,10,5,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,11,0,1720,14,0,0 +2013,8,15,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-3,0,1618,-1,0,0 +2013,8,30,5,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,19,1,1422,12,0,0 +2013,7,24,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,0,0,1325,-14,0,0 +2013,6,27,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1225,3,0,1340,-5,0,0 +2013,8,6,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1315,0,0,1440,-5,0,0 +2013,9,3,2,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-4,0,621,-8,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,-4,0,948,1,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,720,16,1,855,14,0,0 +2013,10,12,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,910,-3,0,1225,2,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,857,9,0,1427,29,1,0 +2013,4,6,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-8,0,1023,-18,0,0 +2013,4,17,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,-6,0,1943,-13,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,-1,0,1250,-10,0,0 +2013,10,15,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2245,-2,0,635,-17,0,0 +2013,4,25,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,725,-1,0,820,-6,0,0 +2013,10,22,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,827,-4,0,1112,-12,0,0 +2013,9,7,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,75,1,1725,78,1,0 +2013,7,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1020,-4,0,1228,-9,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,-9,0,1032,-20,0,0 +2013,7,15,1,FL,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1726,169,1,1936,163,1,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,72,1,2155,78,1,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2157,18,1,2322,-5,0,0 +2013,9,26,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,48,1,2125,39,1,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,20,1,1615,23,1,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,0,0,129,-16,0,0 +2013,4,11,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,902,1,0,1110,0,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2002,-6,0,2157,-20,0,0 +2013,4,14,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1048,7,0,1424,12,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1045,-3,0,1210,-8,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-4,0,2140,-9,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,635,-7,0,845,-10,0,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1030,-4,0,1358,-2,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,4,0,1310,-1,0,0 +2013,5,8,3,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1815,17,1,2135,27,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1350,-4,0,1715,1,0,0 +2013,8,9,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-2,0,1710,-2,0,0 +2013,4,1,1,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1207,-10,0,1452,4,0,0 +2013,10,24,4,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1035,-2,0,1310,3,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2120,46,1,2325,35,1,0 +2013,4,7,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1345,21,1,1505,15,1,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,6,0,2205,-7,0,0 +2013,6,20,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,842,-7,0,1251,-17,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1720,20,1,2000,6,0,0 +2013,8,1,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,13,0,1755,1,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-2,0,1058,-5,0,0 +2013,4,12,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1015,-4,0,1212,5,0,0 +2013,8,2,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,3,0,725,0,0,0 +2013,10,31,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1110,13,0,1230,20,1,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,-5,0,1608,-20,0,0 +2013,10,6,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-3,0,1243,-4,0,0 +2013,9,16,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-3,0,2020,-9,0,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,3,0,1412,11,0,0 +2013,7,29,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,730,-5,0,1122,-18,0,0 +2013,7,6,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,910,22,1,1505,20,1,0 +2013,9,1,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1555,-7,0,1850,-20,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1755,163,1,1929,151,1,0 +2013,8,14,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1135,14,0,1310,3,0,0 +2013,8,10,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1750,2,0,2125,-8,0,0 +2013,5,18,6,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-7,0,1254,-16,0,0 +2013,8,29,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1226,13,0,1422,8,0,0 +2013,8,2,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,0,0,1000,1,0,0 +2013,7,28,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,22,1,2135,14,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1300,58,1,1355,53,1,0 +2013,9,27,5,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1525,-5,0,1645,-9,0,0 +2013,6,27,4,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1758,316,1,2033,301,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2210,11,0,2332,21,1,0 +2013,5,22,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-7,0,1017,-18,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,644,-3,0,920,-17,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1125,2,0,1705,-5,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,715,-1,0,820,-6,0,0 +2013,10,18,5,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1020,39,1,1331,29,1,0 +2013,10,7,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1610,10,0,1645,7,0,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1515,6,0,1800,15,1,0 +2013,8,7,3,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1120,1,0,1302,6,0,0 +2013,7,2,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,840,-2,0,1014,3,0,0 +2013,8,11,7,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1324,-1,0,1432,1,0,0 +2013,5,24,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-7,0,1554,0,0,0 +2013,5,28,2,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1312,4,0,1658,-1,0,0 +2013,5,1,3,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1900,-1,0,2010,0,0,0 +2013,7,19,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,1,0,1035,5,0,0 +2013,9,20,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1800,-5,0,2045,0,0,0 +2013,5,14,2,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2252,-9,0,15,-12,0,0 +2013,8,19,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1645,-2,0,1755,-9,0,0 +2013,10,20,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-7,0,1904,-20,0,0 +2013,8,17,6,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,800,65,1,1041,56,1,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,34,1,2155,31,1,0 +2013,6,30,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,859,-4,0,0 +2013,5,27,1,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,1,0,1455,-2,0,0 +2013,10,14,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,1,0,2328,-3,0,0 +2013,6,1,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,8,0,1819,5,0,0 +2013,8,31,6,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1104,35,1,1354,35,1,0 +2013,8,8,4,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1720,-3,0,1901,12,0,0 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,840,29,1,1045,17,1,0 +2013,7,8,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1145,24,1,1330,10,0,0 +2013,10,16,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1525,109,1,1635,105,1,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-6,0,1044,-30,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1210,4,0,1425,-1,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,9,0,1505,5,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,935,9,0,1555,-4,0,0 +2013,9,4,3,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1119,-3,0,1828,-22,0,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1555,1,0,1916,-6,0,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,-4,0,1302,6,0,0 +2013,4,7,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,2,0,925,-3,0,0 +2013,10,25,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1810,11,0,1925,9,0,0 +2013,6,2,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2144,-1,0,2238,-16,0,0 +2013,9,24,2,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1054,14,0,1534,16,1,0 +2013,4,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,188,1,1715,173,1,0 +2013,5,26,7,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1925,-1,0,2120,-4,0,0 +2013,9,27,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1135,-3,0,1415,-12,0,0 +2013,7,18,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,73,1,1319,22,1,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1410,2,0,1635,0,0,0 +2013,4,25,4,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1347,6,0,1558,2,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,2,0,2330,22,1,0 +2013,10,13,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1705,-4,0,1802,-6,0,0 +2013,5,4,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-5,0,1856,-8,0,0 +2013,9,28,6,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,945,-4,0,1125,-16,0,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-7,0,2014,-17,0,0 +2013,8,9,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,23,1,822,28,1,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,710,-1,0,815,-16,0,0 +2013,10,11,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1538,32,1,1632,22,1,0 +2013,7,29,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1820,-4,0,2052,4,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1445,3,0,1536,-1,0,0 +2013,7,15,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,751,3,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1125,20,1,1245,17,1,0 +2013,7,23,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,0,0,1400,5,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,619,-7,0,756,-6,0,0 +2013,10,25,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1330,0,0,2120,-21,0,0 +2013,8,15,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,-6,0,2152,-26,0,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,910,2,0,1050,-10,0,0 +2013,4,4,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,905,-6,0,1002,-18,0,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,8,0,1250,2,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,605,48,1,729,30,1,0 +2013,8,4,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-3,0,2151,-19,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,700,-3,0,926,-13,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,1,0,1330,-7,0,0 +2013,8,14,3,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,1,0,1030,-3,0,0 +2013,10,26,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-7,0,1655,7,0,0 +2013,6,19,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1219,-1,0,1937,-13,0,0 +2013,10,7,1,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1241,89,1,1409,88,1,0 +2013,5,7,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,1,0,2119,-4,0,0 +2013,5,11,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-6,0,941,-5,0,0 +2013,6,24,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,1,0,1146,-3,0,0 +2013,7,7,7,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1625,0,0,1745,6,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1700,4,0,1908,8,0,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,740,-4,0,1045,2,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,755,-2,0,923,-11,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1145,0,0,1240,-3,0,0 +2013,9,10,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1400,-6,0,1504,-2,0,0 +2013,7,19,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1935,45,1,2105,92,1,0 +2013,4,21,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,15,1,2034,8,0,0 +2013,4,5,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,938,90,1,1230,65,1,0 +2013,6,23,7,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,3,0,2200,-6,0,0 +2013,4,26,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,6,0,1608,-2,0,0 +2013,9,26,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-1,0,1634,3,0,0 +2013,7,5,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-2,0,1737,-6,0,0 +2013,8,31,6,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1525,-1,0,1637,-9,0,0 +2013,9,18,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1650,-8,0,1855,-5,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1959,20,1,2208,15,1,0 +2013,4,10,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,81,1,2021,67,1,0 +2013,8,4,7,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,2,0,1410,-25,0,0 +2013,9,10,2,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1149,3,0,1358,23,1,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1055,-3,0,1229,-7,0,0 +2013,9,2,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,5,0,1846,-7,0,0 +2013,8,2,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,0,0,1341,-9,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,17,1,1445,4,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1750,2,0,1950,-2,0,0 +2013,6,20,4,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,-1,0,2034,0,0,0 +2013,4,28,7,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1934,-1,0,2104,1,0,0 +2013,10,13,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1745,1,0,1840,-3,0,0 +2013,6,12,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,2042,-8,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,750,-8,0,1055,-13,0,0 +2013,8,8,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-7,0,735,-16,0,0 +2013,5,1,3,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,6,0,1120,-3,0,0 +2013,6,16,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1035,-11,0,1105,-1,0,0 +2013,4,9,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,2,0,949,-14,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1235,33,1,1615,25,1,0 +2013,8,7,3,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,-7,0,1004,10,0,0 +2013,10,21,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1029,-3,0,1459,-10,0,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1941,-2,0,2034,-19,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,14,0,1545,13,0,0 +2013,7,25,4,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2333,27,1,500,21,1,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,6,0,2151,-1,0,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1310,20,1,1522,-8,0,0 +2013,8,17,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-6,0,1200,9,0,0 +2013,5,9,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,8,0,2045,10,0,0 +2013,6,15,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1425,0,0,1555,-3,0,0 +2013,10,5,6,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2105,3,0,2345,16,1,0 +2013,4,10,3,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1410,79,1,1626,66,1,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,845,18,1,1105,19,1,0 +2013,6,2,7,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,226,1,2050,223,1,0 +2013,7,6,6,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,0,0,648,-16,0,0 +2013,7,30,2,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,900,-6,0,1359,-17,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1502,-1,0,1654,-5,0,0 +2013,7,17,3,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,645,0,0,750,-18,0,0 +2013,8,26,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,0,0,1621,-19,0,0 +2013,4,15,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1025,-5,0,1135,-1,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,1,0,1501,0,0,0 +2013,10,18,5,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1740,6,0,1840,-1,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-4,0,1655,-3,0,0 +2013,6,18,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,0,0,812,5,0,0 +2013,4,24,3,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-1,0,1150,-12,0,0 +2013,4,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1200,0,0,1300,-4,0,0 +2013,9,23,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,924,-2,0,1117,-2,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,-8,0,448,-22,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,1,0,1815,-30,0,0 +2013,7,15,1,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1959,36,1,2146,50,1,0 +2013,4,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1050,-5,0,0 +2013,8,13,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,0,0,1710,-6,0,0 +2013,8,11,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2029,7,0,453,-31,0,0 +2013,5,29,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-5,0,1255,-3,0,0 +2013,4,4,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,755,0,0,905,3,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1342,-2,0,1747,25,1,0 +2013,7,9,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2200,27,1,2216,14,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1230,-9,0,1510,-6,0,0 +2013,5,5,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,120,-7,0,515,-4,0,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1630,-1,0,1915,-17,0,0 +2013,9,27,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1339,-1,0,1430,1,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,953,3,0,1309,2,0,0 +2013,7,15,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-1,0,1750,7,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,815,-7,0,1207,-2,0,0 +2013,5,23,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,925,33,1,1215,33,1,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,79,1,2234,68,1,0 +2013,8,20,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,-1,0,2011,-5,0,0 +2013,9,13,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1705,-7,0,1824,-16,0,0 +2013,5,14,2,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,-6,0,1858,-14,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2025,11,0,50,-6,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1045,0,,1210,0,1,1 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,40,1,1750,23,1,0 +2013,10,28,1,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1646,-9,0,1737,-13,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-6,0,2159,4,0,0 +2013,8,30,5,F9,11042,Cleveland-Hopkins International,Cleveland,OH,14122,Pittsburgh International,Pittsburgh,PA,805,-12,0,845,-12,0,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,910,26,1,1013,18,1,0 +2013,7,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,2,0,1430,-5,0,0 +2013,8,27,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1857,61,1,2104,43,1,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,-3,0,2145,18,1,0 +2013,7,25,4,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,20,1,1425,31,1,0 +2013,7,17,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1315,4,0,1616,-5,0,0 +2013,4,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1700,-4,0,1808,-20,0,0 +2013,9,11,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,-2,0,825,-4,0,0 +2013,5,13,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2340,-9,0,653,-40,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,28,1,1947,14,0,0 +2013,10,3,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1300,-6,0,1420,6,0,0 +2013,5,22,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,925,-5,0,1005,-30,0,0 +2013,8,8,4,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-6,0,2103,-1,0,0 +2013,10,1,2,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1112,-3,0,1207,-18,0,0 +2013,9,28,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,600,0,0,850,7,0,0 +2013,6,11,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,605,-11,0,715,-13,0,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,0,0,1606,6,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1341,-7,0,1648,-3,0,0 +2013,4,26,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,48,1,1005,60,1,0 +2013,7,30,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,645,3,0,959,-2,0,0 +2013,10,18,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1729,1,0,1859,-3,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1045,-4,0,1246,1,0,0 +2013,10,8,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1450,0,0,1835,0,0,0 +2013,4,6,6,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,30,-15,0,552,-8,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-2,0,1107,-1,0,0 +2013,6,2,7,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,13,0,1735,13,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,0,0,2243,6,0,0 +2013,4,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,750,-4,0,1010,-18,0,0 +2013,6,5,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1016,-4,0,1155,12,0,0 +2013,9,20,5,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,10,0,2300,2,0,0 +2013,9,1,7,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-5,0,1620,1,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-2,0,2316,-8,0,0 +2013,6,26,3,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,645,-2,0,715,-12,0,0 +2013,10,8,2,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1935,-5,0,2010,-18,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1055,0,0,1115,8,0,0 +2013,9,10,2,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1705,8,0,1950,19,1,0 +2013,9,11,3,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,820,-7,0,1100,-13,0,0 +2013,9,28,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,834,-4,0,928,-5,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1130,12,0,1247,-1,0,0 +2013,4,12,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1115,-9,0,0 +2013,8,26,1,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1700,1,0,1820,2,0,0 +2013,9,22,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1920,-3,0,2045,-9,0,0 +2013,10,20,7,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,709,-1,0,1520,9,0,0 +2013,9,28,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,800,-6,0,1025,-19,0,0 +2013,5,18,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1340,53,1,1729,64,1,0 +2013,6,29,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1752,0,,1930,0,1,1 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,850,-6,0,1123,-13,0,0 +2013,5,22,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1455,0,0,1733,112,1,0 +2013,8,1,4,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,2,0,820,-1,0,0 +2013,6,6,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,-6,0,930,10,0,0 +2013,7,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-3,0,1310,-5,0,0 +2013,8,14,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,631,3,0,757,8,0,0 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,945,-2,0,1134,-10,0,0 +2013,5,31,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,-5,0,1211,-3,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,0,0,1450,-15,0,0 +2013,6,11,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-4,0,810,-13,0,0 +2013,9,5,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,66,1,1705,52,1,0 +2013,6,24,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,740,8,0,845,3,0,0 +2013,4,22,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-1,0,1215,-2,0,0 +2013,9,7,6,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,0,0,1015,-10,0,0 +2013,9,7,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1310,-5,0,1600,-9,0,0 +2013,4,29,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-3,0,1032,-6,0,0 +2013,7,15,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1930,107,1,2105,81,1,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1530,0,0,1700,-1,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,635,-2,0,820,-2,0,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1930,32,1,2245,24,1,0 +2013,9,20,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,940,-7,0,1110,-22,0,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1709,2,0,1925,12,0,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1530,-5,0,1755,-13,0,0 +2013,7,24,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-2,0,1741,-4,0,0 +2013,7,11,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1815,77,1,1932,68,1,0 +2013,10,23,3,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1001,-2,0,1420,-3,0,0 +2013,4,22,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1310,-5,0,1405,-15,0,0 +2013,5,3,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,3,0,1355,-1,0,0 +2013,5,7,2,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-6,0,1805,-15,0,0 +2013,4,9,2,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,554,-4,0,739,-30,0,0 +2013,9,17,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,920,-1,0,1220,-18,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1435,6,0,1805,2,0,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2135,-1,0,123,-9,0,0 +2013,6,27,4,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,946,0,0,1140,4,0,0 +2013,10,21,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,0,0,2114,-12,0,0 +2013,6,4,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,-1,0,1005,-9,0,0 +2013,4,16,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,2135,-5,0,2255,-4,0,0 +2013,10,3,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-8,0,1923,-24,0,0 +2013,5,15,3,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1256,28,1,1523,33,1,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1800,21,1,1935,10,0,0 +2013,8,22,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,-6,0,1917,-3,0,0 +2013,4,26,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1725,-5,0,1855,-15,0,0 +2013,7,23,2,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,840,-7,0,1017,4,0,0 +2013,7,2,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1010,9,0,1250,1,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1700,1,0,1825,-7,0,0 +2013,5,16,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,0,0,1018,-3,0,0 +2013,10,5,6,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1550,24,1,1850,-9,0,0 +2013,9,15,7,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,610,-3,0,706,-8,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1238,-2,0,1431,-5,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1055,-6,0,1245,-2,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1745,-4,0,2200,-27,0,0 +2013,5,13,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,-20,0,6,-23,0,0 +2013,6,23,7,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,947,-9,0,1141,-11,0,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,-5,0,2030,-18,0,0 +2013,10,15,2,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1200,37,1,1345,24,1,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1456,9,0,1722,2,0,0 +2013,9,13,5,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-3,0,745,-9,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1105,22,1,1235,25,1,0 +2013,7,26,5,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1215,-4,0,1342,-15,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1755,-2,0,1935,-23,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,630,-4,0,840,-8,0,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,705,-3,0,931,0,0,0 +2013,7,26,5,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1445,14,0,1725,10,0,0 +2013,9,14,6,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-9,0,1355,-12,0,0 +2013,4,7,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1019,-7,0,1120,-11,0,0 +2013,4,24,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,27,1,1908,35,1,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,0,0,1717,-9,0,0 +2013,10,22,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,855,23,1,1235,19,1,0 +2013,8,17,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-7,0,1115,10,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1023,-3,0,1640,-19,0,0 +2013,5,24,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1150,-2,0,1750,4,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1150,12,0,1340,-18,0,0 +2013,4,22,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-5,0,712,1,0,0 +2013,10,15,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-11,0,1210,-28,0,0 +2013,7,6,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1656,-9,0,2100,-10,0,0 +2013,10,27,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,-7,0,2255,-14,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,159,1,1138,165,1,0 +2013,7,30,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-4,0,1915,-38,0,0 +2013,8,20,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,-6,0,2120,-25,0,0 +2013,4,22,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1755,-2,0,2050,34,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,31,1,1215,64,1,0 +2013,5,15,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1119,-6,0,1222,-10,0,0 +2013,5,26,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-9,0,1945,-20,0,0 +2013,8,2,5,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,2100,2,0,2250,15,1,0 +2013,9,19,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1740,168,1,1905,167,1,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,37,1,1450,47,1,0 +2013,6,5,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,600,-1,0,640,5,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,64,1,2245,69,1,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1640,77,1,1941,63,1,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1038,-4,0,1152,-18,0,0 +2013,5,14,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-2,0,1710,-5,0,0 +2013,7,9,2,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,4,0,1425,-1,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,720,-1,0,925,-5,0,0 +2013,4,26,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,2011,5,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1510,7,0,1855,10,0,0 +2013,8,2,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,745,-4,0,855,-24,0,0 +2013,7,30,2,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,1,0,1648,-1,0,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,606,-2,0,1439,15,1,0 +2013,8,27,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,700,3,0,1515,23,1,0 +2013,6,7,5,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,15,1,930,12,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2020,0,0,2345,9,0,0 +2013,6,26,3,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1150,-1,0,1755,2,0,0 +2013,10,7,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1540,16,1,1705,8,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-5,0,1016,17,1,0 +2013,5,23,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,0,0,940,-20,0,0 +2013,9,12,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1745,0,0,2110,9,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1905,5,0,2328,-18,0,0 +2013,4,3,3,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,-7,0,1540,-24,0,0 +2013,6,9,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2200,-4,0,2335,3,0,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1500,20,1,1824,20,1,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1840,-1,0,2052,-15,0,0 +2013,6,16,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,-17,0,1900,-28,0,0 +2013,7,20,6,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,-3,0,1338,-12,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1210,0,0,1330,-3,0,0 +2013,10,14,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1030,-7,0,1320,-23,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,1,0,1005,-8,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1220,-5,0,1442,5,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1314,-2,0,1430,-15,0,0 +2013,8,28,3,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1119,26,1,1255,12,0,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1618,-1,0,1755,-20,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1540,26,1,1835,19,1,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1325,-4,0,1654,-21,0,0 +2013,10,8,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,-8,0,1220,-16,0,0 +2013,10,18,5,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1530,12,0,1813,14,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-2,0,1312,-5,0,0 +2013,8,19,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-9,0,2054,-17,0,0 +2013,7,20,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,630,0,0,755,4,0,0 +2013,4,30,2,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1433,-1,0,1544,-9,0,0 +2013,10,6,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1735,1,0,2055,-12,0,0 +2013,9,30,1,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1500,34,1,1758,7,0,0 +2013,6,14,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1515,18,1,1630,10,0,0 +2013,6,5,3,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1520,13,0,1628,39,1,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,836,12,0,1004,-1,0,0 +2013,6,11,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1858,-5,0,1958,-3,0,0 +2013,7,10,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,24,1,1905,26,1,0 +2013,6,8,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,-13,0,2045,-32,0,0 +2013,9,9,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-3,0,849,-10,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,15,1,2250,3,0,0 +2013,4,3,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,2,0,1758,2,0,0 +2013,4,10,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,6,0,1655,-2,0,0 +2013,6,7,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1936,-2,0,2000,-19,0,0 +2013,10,16,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-5,0,810,9,0,0 +2013,10,30,3,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-6,0,1111,-23,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1115,15,1,1236,7,0,0 +2013,10,22,2,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1020,-7,0,1331,-16,0,0 +2013,4,10,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,0,0,2113,-2,0,0 +2013,9,3,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,4,0,1210,-4,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,82,1,1907,78,1,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,-3,0,715,-10,0,0 +2013,5,27,1,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,900,0,0,955,5,0,0 +2013,6,18,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,11,0,1159,6,0,0 +2013,10,15,2,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1215,-8,0,1322,-15,0,0 +2013,7,12,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,810,-3,0,1200,-3,0,0 +2013,8,10,6,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-5,0,1018,7,0,0 +2013,5,1,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-3,0,635,-20,0,0 +2013,7,21,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,-4,0,2046,-25,0,0 +2013,10,18,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-2,0,1510,-7,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,-5,0,1735,-23,0,0 +2013,7,2,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1022,-8,0,1152,-24,0,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,0,0,1946,-5,0,0 +2013,4,2,2,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1525,4,0,2345,0,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1145,26,1,1325,30,1,0 +2013,8,1,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,14,0,1552,26,1,0 +2013,5,5,7,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1925,-2,0,2231,-1,0,0 +2013,7,25,4,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,925,-6,0,1132,-14,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1915,129,1,2052,108,1,0 +2013,5,11,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,824,23,1,1113,16,1,0 +2013,4,17,3,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1022,-12,0,1310,6,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-5,0,2101,0,0,0 +2013,9,22,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,916,-6,0,1214,-20,0,0 +2013,7,23,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,9,0,1325,-24,0,0 +2013,4,13,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,617,-10,0,750,-13,0,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,-1,0,1005,-10,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,923,-6,0,1100,-28,0,0 +2013,10,16,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,820,-4,0,1026,4,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,46,1,1755,40,1,0 +2013,9,13,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,20,1,920,17,1,0 +2013,8,6,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-10,0,2125,-7,0,0 +2013,10,12,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,850,0,0,1015,-1,0,0 +2013,6,18,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,-1,0,1335,-11,0,0 +2013,7,27,6,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1750,-5,0,2000,-17,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1425,-4,0,1605,-29,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,7,0,1720,4,0,0 +2013,6,27,4,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,951,50,1,1350,62,1,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1155,-2,0,2035,-10,0,0 +2013,5,3,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1425,1,0,1635,-10,0,0 +2013,9,14,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,905,1,0,1130,-8,0,0 +2013,6,13,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,615,-4,0,941,-7,0,0 +2013,5,7,2,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1442,23,1,1751,21,1,0 +2013,9,26,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1845,81,1,2010,72,1,0 +2013,9,16,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1630,-5,0,1805,-19,0,0 +2013,5,15,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-3,0,1805,20,1,0 +2013,7,30,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,-6,0,1526,3,0,0 +2013,6,18,2,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1545,2,0,1735,-18,0,0 +2013,10,20,7,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,0,1810,2,0,0 +2013,6,22,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-10,0,845,-12,0,0 +2013,10,25,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1322,0,0,1530,-20,0,0 +2013,8,3,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-1,0,1434,-14,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,0,0,1135,1,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,-4,0,1415,-15,0,0 +2013,8,14,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,27,1,1356,7,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1240,3,0,1540,-14,0,0 +2013,6,25,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1110,3,0,1400,-4,0,0 +2013,7,28,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1434,31,1,1614,46,1,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1100,19,1,1221,16,1,0 +2013,10,19,6,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-1,0,2008,0,0,0 +2013,8,21,3,9E,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,935,-4,0,1131,-20,0,0 +2013,5,22,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1030,0,0,1515,-7,0,0 +2013,9,10,2,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1037,4,0,1508,1,0,0 +2013,10,18,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1428,-6,0,1654,-10,0,0 +2013,7,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,190,1,2034,184,1,0 +2013,4,15,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1325,-5,0,1444,-17,0,0 +2013,9,18,3,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,900,-2,0,1146,-19,0,0 +2013,10,13,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-3,0,613,-23,0,0 +2013,8,31,6,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,925,-1,0,1010,-8,0,0 +2013,4,4,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,-4,0,1610,-13,0,0 +2013,7,1,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,-2,0,727,-17,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1040,1,0,1251,-25,0,0 +2013,9,2,1,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-3,0,1937,7,0,0 +2013,9,28,6,EV,10792,Buffalo Niagara International,Buffalo,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1024,-5,0,1127,-12,0,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,6,0,1047,0,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1315,21,1,1615,9,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-5,0,1832,-37,0,0 +2013,4,18,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1936,0,,2044,0,1,1 +2013,10,26,6,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1610,136,1,2101,108,1,0 +2013,7,7,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1700,-10,0,2054,-15,0,0 +2013,10,4,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,36,1,1135,33,1,0 +2013,7,15,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1905,215,1,2227,218,1,0 +2013,5,19,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1935,39,1,2309,43,1,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,-3,0,2324,2,0,0 +2013,9,4,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1033,68,1,1355,94,1,0 +2013,10,6,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,38,1,1230,24,1,0 +2013,6,23,7,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,0,0,1000,-3,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1735,-6,0,2310,-7,0,0 +2013,10,2,3,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-4,0,1615,-19,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,825,-2,0,955,-8,0,0 +2013,5,15,3,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-6,0,1007,-7,0,0 +2013,5,22,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-5,0,1939,2,0,0 +2013,4,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,-4,0,1715,-8,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1445,6,0,1545,31,1,0 +2013,9,9,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1025,-2,0,1110,-8,0,0 +2013,6,1,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1800,11,0,1925,7,0,0 +2013,5,9,4,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-4,0,1115,12,0,0 +2013,7,7,7,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1600,3,0,1740,-18,0,0 +2013,7,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1034,6,0,1409,3,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,740,-3,0,840,-3,0,0 +2013,10,17,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1600,7,0,1835,1,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,75,1,2056,77,1,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1825,-3,0,2005,9,0,0 +2013,8,30,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-1,0,1609,-4,0,0 +2013,9,28,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,74,1,1723,62,1,0 +2013,9,13,5,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1746,-7,0,2114,-13,0,0 +2013,5,27,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1453,85,1,1607,76,1,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,-2,0,1624,4,0,0 +2013,8,21,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,0,0,1735,3,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1940,0,0,2220,-5,0,0 +2013,4,27,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,0,0,1030,2,0,0 +2013,4,26,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1300,-1,0,2039,-1,0,0 +2013,5,1,3,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1435,-4,0,1654,-4,0,0 +2013,6,26,3,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,0,0,915,-3,0,0 +2013,6,4,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,46,1,929,48,1,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1430,0,0,1840,-9,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,851,9,0,1045,7,0,0 +2013,4,11,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1750,6,0,2045,2,0,0 +2013,5,13,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,655,-5,0,1018,-17,0,0 +2013,4,25,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,42,1,2338,37,1,0 +2013,5,24,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2235,13,0,121,13,0,0 +2013,6,10,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1947,4,0,0 +2013,8,21,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1805,1,0,2140,2,0,0 +2013,7,11,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,5,0,1413,-4,0,0 +2013,8,11,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1800,-9,0,1939,-9,0,0 +2013,9,16,1,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,-1,0,1905,-4,0,0 +2013,4,2,2,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1850,20,1,2310,10,0,0 +2013,6,19,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-1,0,2050,6,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-5,0,2140,-17,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,4,0,1025,-4,0,0 +2013,6,5,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1220,0,0,0 +2013,10,5,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1125,-6,0,1259,-16,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1040,1,0,1155,-2,0,0 +2013,5,17,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,600,-10,0,913,-18,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1200,15,1,1313,6,0,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1420,-4,0,1614,3,0,0 +2013,10,16,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-10,0,847,-4,0,0 +2013,8,22,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,37,1,1115,44,1,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-4,0,1815,-13,0,0 +2013,5,24,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,9,0,1950,6,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,28,1,1251,34,1,0 +2013,4,16,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,1230,-15,0,0 +2013,5,3,5,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-3,0,1815,-2,0,0 +2013,5,28,2,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1830,0,0,2125,7,0,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1131,5,0,1258,22,1,0 +2013,5,4,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1945,-4,0,2040,-9,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,36,1,1343,30,1,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,28,1,1450,-6,0,0 +2013,6,4,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,31,1,1358,34,1,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2020,106,1,2235,111,1,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1040,-2,0,1149,-11,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-3,0,1300,4,0,0 +2013,10,31,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,855,-3,0,1225,-21,0,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1630,-2,0,1950,-12,0,0 +2013,4,25,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,952,4,0,1329,-10,0,0 +2013,10,8,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-7,0,1434,1,0,0 +2013,6,30,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,0,0,1210,-8,0,0 +2013,5,3,5,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2113,20,1,2344,15,1,0 +2013,7,20,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,186,1,1822,199,1,0 +2013,8,23,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1320,7,0,1450,0,0,0 +2013,10,16,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,9,0,904,3,0,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,638,-7,0,853,5,0,0 +2013,8,22,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1334,-23,0,0 +2013,4,1,1,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,645,2,0,755,-1,0,0 +2013,6,28,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1140,-2,0,1350,-7,0,0 +2013,4,19,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,11,0,2001,39,1,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2159,-1,0,2357,2,0,0 +2013,9,7,6,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1425,-2,0,1535,-4,0,0 +2013,6,27,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2023,-8,0,2118,-15,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,925,0,0,1050,2,0,0 +2013,7,21,7,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-7,0,1629,-12,0,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,643,-3,0,820,1,0,0 +2013,9,11,3,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-11,0,2043,-9,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-13,0,1007,4,0,0 +2013,6,9,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,29,1,1827,29,1,0 +2013,7,5,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,-7,0,1355,6,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,117,1,1850,135,1,0 +2013,8,10,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,9,0,1535,3,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1945,3,0,2205,1,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1315,-5,0,1432,-7,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2158,129,1,37,128,1,0 +2013,5,11,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1110,15,1,1545,-12,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,720,-3,0,850,-4,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-5,0,1305,-8,0,0 +2013,7,29,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,651,-2,0,905,-8,0,0 +2013,10,9,3,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,810,-15,0,954,-26,0,0 +2013,4,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1530,105,1,1836,101,1,0 +2013,5,19,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,810,45,1,1058,18,1,0 +2013,7,2,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-7,0,1332,-20,0,0 +2013,4,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2209,0,0,2356,14,0,0 +2013,8,18,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,92,1,2125,72,1,0 +2013,5,6,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,600,-1,0,720,-10,0,0 +2013,4,17,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,725,-1,0,840,-13,0,0 +2013,10,24,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-7,0,1814,-13,0,0 +2013,6,9,7,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1134,-3,0,1346,-14,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1320,6,0,1425,-2,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,77,1,2112,69,1,0 +2013,5,9,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,-7,0,1042,-9,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,25,1,2220,34,1,0 +2013,4,2,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,720,0,0,919,5,0,0 +2013,7,31,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,0,0,1001,4,0,0 +2013,5,20,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1954,36,1,2146,36,1,0 +2013,4,28,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1355,-8,0,1959,-13,0,0 +2013,6,7,5,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,956,3,0,1432,-3,0,0 +2013,10,24,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1615,17,1,1725,9,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,6,0,1850,2,0,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,843,-7,0,1215,-20,0,0 +2013,5,3,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1738,7,0,1924,16,1,0 +2013,8,11,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1715,11,0,1755,-10,0,0 +2013,7,11,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-2,0,840,7,0,0 +2013,4,16,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,0,0,1015,-1,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,19,1,2155,19,1,0 +2013,9,21,6,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-3,0,1334,8,0,0 +2013,4,1,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1155,0,0,1325,-8,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,1,0,1000,1,0,0 +2013,8,18,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1448,16,1,1655,13,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,855,5,0,1025,-12,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1600,-8,0,1705,-14,0,0 +2013,7,4,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,0,0,1005,-11,0,0 +2013,6,25,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1545,28,1,1700,18,1,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2055,-5,0,2300,-10,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1945,-2,0,2050,-12,0,0 +2013,6,2,7,UA,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,2014,-7,0,2202,-27,0,0 +2013,5,28,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1820,0,0,2127,-5,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,24,1,2355,1,0,0 +2013,5,30,4,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,735,-6,0,1340,-10,0,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,0,0,1950,-9,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,17,1,110,19,1,0 +2013,4,13,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1423,-12,0,1548,-19,0,0 +2013,4,11,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1455,9,0,1645,-10,0,0 +2013,5,21,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1005,-3,0,1203,2,0,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1010,1,0,1130,9,0,0 +2013,4,8,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,629,-5,0,825,0,0,0 +2013,5,31,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1458,-2,0,1744,-9,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1505,-1,0,1645,-8,0,0 +2013,5,18,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,3,0,1013,17,1,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1500,-4,0,1545,-5,0,0 +2013,10,1,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2020,14,0,2145,6,0,0 +2013,8,1,4,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,815,0,0,1040,1,0,0 +2013,4,26,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-4,0,1405,-18,0,0 +2013,4,3,3,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,956,-10,0,1017,-15,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1225,-1,0,1826,-28,0,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1355,8,0,1515,3,0,0 +2013,10,25,5,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2330,-1,0,639,-10,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2030,3,0,2240,10,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1425,0,0,1550,-5,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1041,-5,0,1313,-18,0,0 +2013,10,25,5,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,-4,0,1343,-13,0,0 +2013,8,27,2,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,0,0,1430,-8,0,0 +2013,5,24,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,730,0,0,947,-13,0,0 +2013,4,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1200,9,0,1310,14,0,0 +2013,8,24,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1700,8,0,1805,8,0,0 +2013,10,2,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1605,-6,0,1755,-26,0,0 +2013,10,8,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1810,105,1,1933,128,1,0 +2013,8,20,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1059,-2,0,1425,-8,0,0 +2013,5,28,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-5,0,1912,-18,0,0 +2013,6,26,3,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,850,-1,0,1110,-17,0,0 +2013,9,18,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,0,1750,-8,0,0 +2013,8,10,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-12,0,2107,-22,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1450,29,1,1830,41,1,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1243,-4,0,1500,6,0,0 +2013,6,13,4,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,735,-8,0,1030,-6,0,0 +2013,6,7,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,943,-4,0,1043,-21,0,0 +2013,10,19,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,705,-4,0,950,3,0,0 +2013,10,31,4,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1842,0,0,2014,-8,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,-2,0,1150,7,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,719,3,0,1550,-11,0,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,0,0,1055,-11,0,0 +2013,8,12,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2335,10,0,722,11,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1045,0,0,1145,-3,0,0 +2013,5,26,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-12,0,903,10,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1810,33,1,2200,60,1,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1758,14,0,1955,-7,0,0 +2013,5,5,7,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,700,-5,0,1525,6,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1255,-2,0,1355,1,0,0 +2013,9,7,6,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,715,0,0,815,-20,0,0 +2013,8,26,1,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,745,-2,0,940,-20,0,0 +2013,9,10,2,OO,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,850,-8,0,1042,7,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,0,0,1004,-10,0,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2155,-4,0,2320,9,0,0 +2013,4,14,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2200,-6,0,2245,-12,0,0 +2013,6,18,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-7,0,641,-4,0,0 +2013,4,14,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-21,0,0 +2013,7,29,1,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1848,207,1,2058,179,1,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,9,0,2248,15,1,0 +2013,4,18,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,-6,0,2028,-2,0,0 +2013,5,5,7,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,830,-5,0,1030,-14,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1935,36,1,2242,25,1,0 +2013,7,17,3,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,913,-4,0,1430,-8,0,0 +2013,8,23,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,-6,0,2205,-11,0,0 +2013,6,9,7,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-5,0,1013,-27,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-2,0,2153,-10,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1035,6,0,1135,3,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1305,1,0,2000,2,0,0 +2013,4,22,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,930,-8,0,1045,-21,0,0 +2013,9,25,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,700,-1,0,1447,-11,0,0 +2013,4,2,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,915,-7,0,1105,-14,0,0 +2013,4,22,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1150,-1,0,1858,8,0,0 +2013,4,7,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1045,2,0,1400,-11,0,0 +2013,6,22,6,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,19,1,1555,20,1,0 +2013,4,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1415,-2,0,1640,-7,0,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1405,0,0,1809,-17,0,0 +2013,10,27,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-1,0,2034,-5,0,0 +2013,7,17,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-1,0,1120,-7,0,0 +2013,9,25,3,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,26,1,1035,35,1,0 +2013,7,7,7,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,30,1,920,1,0,0 +2013,8,17,6,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-6,0,809,3,0,0 +2013,9,20,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,13,0,1220,19,1,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1025,26,1,1510,12,0,0 +2013,10,14,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1300,35,1,1622,27,1,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2030,99,1,2155,88,1,0 +2013,7,30,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,723,-7,0,948,-23,0,0 +2013,4,8,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-6,0,1633,-16,0,0 +2013,8,20,2,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-3,0,656,6,0,0 +2013,6,15,6,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,805,-5,0,913,4,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,-2,0,626,-12,0,0 +2013,6,11,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-1,0,721,-4,0,0 +2013,10,10,4,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,-2,0,1710,18,1,0 +2013,7,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1445,-3,0,1609,-11,0,0 +2013,10,6,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1345,3,0,1700,5,0,0 +2013,5,26,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1525,2,0,1650,1,0,0 +2013,4,12,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,726,-4,0,1225,-6,0,0 +2013,4,14,7,9E,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2000,55,1,2248,41,1,0 +2013,4,14,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1405,164,1,1545,150,1,0 +2013,6,18,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,31,1,828,22,1,0 +2013,4,30,2,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1155,54,1,1450,35,1,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1251,5,0,1425,-7,0,0 +2013,9,28,6,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,0,0,2056,-1,0,0 +2013,5,12,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2115,-4,0,2246,-2,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1900,24,1,2005,19,1,0 +2013,9,5,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,735,-5,0,825,-8,0,0 +2013,8,22,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,0,0,1435,-2,0,0 +2013,9,15,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,655,-5,0,745,-15,0,0 +2013,6,21,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,87,1,1505,151,1,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-3,0,1430,-1,0,0 +2013,8,16,5,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1014,1,0,1205,-9,0,0 +2013,7,28,7,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1529,-10,0,0 +2013,7,8,1,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1050,0,0,1217,26,1,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1345,8,0,1515,-3,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,751,-1,0,852,6,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1740,9,0,2315,3,0,0 +2013,7,27,6,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2005,-6,0,2355,-26,0,0 +2013,4,30,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-8,0,700,-17,0,0 +2013,7,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,46,1,2347,37,1,0 +2013,4,18,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,829,-4,0,1024,2,0,0 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,-3,0,1613,-16,0,0 +2013,5,9,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-4,0,1524,-11,0,0 +2013,5,14,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,1,0,2025,-8,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-5,0,1415,-18,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,2,0,1608,0,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,1,0,1827,-29,0,0 +2013,7,30,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,1,0,1853,-7,0,0 +2013,4,14,7,FL,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1440,-6,0,1752,23,1,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1400,-2,0,1915,-9,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1020,5,0,1320,-6,0,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1911,4,0,2111,-12,0,0 +2013,9,1,7,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,830,7,0,1002,0,0,0 +2013,5,19,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,6,0,1906,1,0,0 +2013,9,9,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-3,0,1715,-6,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1810,10,0,2040,4,0,0 +2013,10,7,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,1,0,1910,3,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,638,2,0,853,3,0,0 +2013,4,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1825,17,1,1945,13,0,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,805,-1,0,935,-14,0,0 +2013,10,3,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1500,-5,0,1616,-6,0,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1010,-1,0,1110,-4,0,0 +2013,9,16,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-15,0,2009,-30,0,0 +2013,8,24,6,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,0,,1640,0,1,1 +2013,8,12,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,545,-7,0,559,-12,0,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1545,1,0,1710,5,0,0 +2013,9,17,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,913,-6,0,1159,-6,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1115,-6,0,1245,-21,0,0 +2013,7,31,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,471,1,1749,449,1,0 +2013,7,6,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,48,1,1405,42,1,0 +2013,9,25,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-6,0,1817,3,0,0 +2013,4,16,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-6,0,1227,-13,0,0 +2013,10,23,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-7,0,1025,17,1,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-5,0,1245,-24,0,0 +2013,10,10,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1254,0,0,1441,-8,0,0 +2013,10,14,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1229,0,0,1528,-5,0,0 +2013,8,30,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2345,83,1,545,61,1,0 +2013,8,3,6,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-5,0,905,-11,0,0 +2013,4,25,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,-6,0,2000,9,0,0 +2013,8,6,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,4,0,1729,-1,0,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1310,-5,0,1415,0,0,0 +2013,8,22,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,1750,-6,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1505,3,0,1755,-9,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-5,0,2202,-14,0,0 +2013,5,28,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1432,-8,0,1530,-10,0,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,11,0,1510,16,1,0 +2013,6,26,3,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1050,17,1,1905,17,1,0 +2013,9,13,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1920,51,1,2110,51,1,0 +2013,7,23,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1343,-3,0,1715,19,1,0 +2013,9,5,4,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,-9,0,1809,-15,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,-1,0,900,0,0,0 +2013,7,9,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,945,-6,0,1305,-47,0,0 +2013,5,31,5,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1615,7,0,1800,0,0,0 +2013,6,6,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,55,-4,0,624,-17,0,0 +2013,8,1,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1722,-9,0,1808,-13,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,-5,0,1542,-17,0,0 +2013,6,27,4,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1910,-1,0,2027,0,0,0 +2013,9,27,5,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-7,0,1917,-8,0,0 +2013,10,12,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-4,0,1657,-17,0,0 +2013,4,19,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,-9,0,1918,-14,0,0 +2013,8,20,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,17,1,2256,15,1,0 +2013,6,4,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,600,-10,0,745,-25,0,0 +2013,9,16,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1313,-12,0,1400,-23,0,0 +2013,10,26,6,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-1,0,1015,-8,0,0 +2013,10,14,1,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,803,-11,0,1019,19,1,0 +2013,8,30,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2003,28,1,2114,13,0,0 +2013,9,3,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1340,9,0,1425,-7,0,0 +2013,5,6,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,600,-4,0,930,-13,0,0 +2013,6,14,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1729,-6,0,1905,-20,0,0 +2013,10,15,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1444,2,0,1544,-3,0,0 +2013,4,12,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,29,1,1248,25,1,0 +2013,6,5,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1352,-8,0,1455,-17,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2045,50,1,2150,41,1,0 +2013,4,1,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1444,-4,0,1735,-2,0,0 +2013,7,23,2,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-6,0,2015,-16,0,0 +2013,7,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,70,1,2243,47,1,0 +2013,6,23,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-7,0,944,-14,0,0 +2013,7,30,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1515,228,1,1730,223,1,0 +2013,6,17,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1649,70,1,1846,75,1,0 +2013,6,13,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,121,1,2136,118,1,0 +2013,8,4,7,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1455,17,1,1600,18,1,0 +2013,4,2,2,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1947,-7,0,2013,-29,0,0 +2013,10,20,7,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,-5,0,1836,-20,0,0 +2013,4,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,600,-1,0,1150,-30,0,0 +2013,4,19,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1900,19,1,2240,75,1,0 +2013,9,19,4,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,735,-4,0,1031,-12,0,0 +2013,7,27,6,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1626,40,1,1835,31,1,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1405,35,1,2005,17,1,0 +2013,5,13,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-2,0,1029,-12,0,0 +2013,4,22,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1705,16,1,1820,10,0,0 +2013,6,9,7,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,13,0,2000,11,0,0 +2013,6,22,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1005,-3,0,1020,2,0,0 +2013,9,15,7,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,0,0,1833,-3,0,0 +2013,10,7,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1345,-8,0,1638,1,0,0 +2013,4,27,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1800,2,0,2045,-10,0,0 +2013,10,2,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1300,-2,0,1651,9,0,0 +2013,6,29,6,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,33,1,1603,24,1,0 +2013,6,25,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1727,176,1,1748,202,1,0 +2013,8,29,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,55,1,1150,55,1,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,13,0,1326,24,1,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,5,0,1505,-1,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1735,-1,0,1825,-2,0,0 +2013,10,3,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-2,0,1325,-24,0,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,645,0,0,845,7,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1720,-3,0,1750,-22,0,0 +2013,7,29,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,9,0,1844,12,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1455,15,1,1617,13,0,0 +2013,10,23,3,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,600,5,0,1200,8,0,0 +2013,5,10,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1855,0,0,2132,-13,0,0 +2013,4,3,3,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1810,37,1,2025,27,1,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2025,0,,2202,0,1,1 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,840,-1,0,1020,1,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2100,2,0,15,-8,0,0 +2013,7,2,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1655,-2,0,1802,-3,0,0 +2013,8,28,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1400,-7,0,1930,-3,0,0 +2013,9,11,3,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,700,-8,0,1047,-8,0,0 +2013,10,26,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,20,1,1420,13,0,0 +2013,5,7,2,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,-7,0,2255,-15,0,0 +2013,4,27,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1530,-1,0,1931,-1,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1353,0,0,1540,-2,0,0 +2013,5,12,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1525,-7,0,1829,-23,0,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,16,1,915,12,0,0 +2013,9,22,7,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,0,0,501,-18,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,845,2,0,1315,3,0,0 +2013,9,9,1,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-8,0,1959,3,0,0 +2013,10,3,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1000,96,1,1307,97,1,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1335,19,1,1640,5,0,0 +2013,5,23,4,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,37,1,1755,47,1,0 +2013,4,29,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1055,0,0,1145,-6,0,0 +2013,8,8,4,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1341,-9,0,1450,-11,0,0 +2013,9,1,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1525,-1,0,1802,-12,0,0 +2013,5,28,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,2,0,1130,0,0,0 +2013,4,10,3,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-5,0,915,-24,0,0 +2013,9,9,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1555,17,1,1715,10,0,0 +2013,10,28,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-6,0,1604,-5,0,0 +2013,5,29,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1405,-4,0,1555,-19,0,0 +2013,10,7,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,745,-4,0,1122,-19,0,0 +2013,5,3,5,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1245,-6,0,1513,-9,0,0 +2013,7,12,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,223,1,2125,188,1,0 +2013,9,3,2,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,-7,0,110,-21,0,0 +2013,4,1,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-5,0,1535,-9,0,0 +2013,4,24,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,6,0,2215,13,0,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,131,1,2127,138,1,0 +2013,10,11,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1654,-2,0,1841,-10,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1822,-5,0,2014,-20,0,0 +2013,7,21,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-7,0,2117,-28,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1240,36,1,1430,25,1,0 +2013,8,31,6,B6,13796,Metropolitan Oakland International,Oakland,CA,10721,Logan International,Boston,MA,2359,112,1,822,108,1,0 +2013,7,29,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-2,0,1252,1,0,0 +2013,6,15,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,-4,0,1214,-8,0,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-4,0,1235,-9,0,0 +2013,6,11,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-3,0,845,8,0,0 +2013,4,20,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,1015,-24,0,0 +2013,8,22,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,0,0,1300,-4,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1100,-1,0,1239,-12,0,0 +2013,7,21,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1040,-4,0,1325,-13,0,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1341,1,0,2205,-5,0,0 +2013,6,23,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,69,1,1947,85,1,0 +2013,8,4,7,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1500,-6,0,1626,-17,0,0 +2013,4,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,2200,-2,0,46,-10,0,0 +2013,6,25,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,12,0,1652,-4,0,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2110,-3,0,2240,-12,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1520,6,0,1845,3,0,0 +2013,5,26,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2130,0,0,2353,-7,0,0 +2013,7,18,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-6,0,905,8,0,0 +2013,6,14,5,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2035,224,1,505,204,1,0 +2013,7,24,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,-5,0,1309,-8,0,0 +2013,9,27,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-10,0,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1015,12,0,1115,21,1,0 +2013,7,16,2,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,804,-13,0,0 +2013,10,8,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-6,0,2155,-6,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-1,0,1010,-7,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1306,-6,0,1442,-15,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-1,0,928,5,0,0 +2013,10,15,2,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1735,13,0,1900,9,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,7,0,2350,15,1,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2215,9,0,2335,-2,0,0 +2013,9,20,5,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1050,16,1,1435,12,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,-5,0,1236,-16,0,0 +2013,5,8,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,153,1,1655,169,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1053,-3,0,1205,-15,0,0 +2013,10,4,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,2055,70,1,2215,67,1,0 +2013,8,15,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,2250,-3,0,615,-29,0,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1025,22,1,1305,23,1,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1850,90,1,2310,109,1,0 +2013,6,30,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1416,2,0,1954,-8,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,2005,184,1,2210,205,1,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,950,-1,0,1100,-9,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1036,-4,0,1335,-16,0,0 +2013,4,15,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,815,-4,0,1034,-8,0,0 +2013,7,3,3,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,-3,0,1510,0,0,0 +2013,7,29,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1155,-2,0,1310,34,1,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,29,1,1133,35,1,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,2155,44,1,2335,39,1,0 +2013,10,4,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,12,0,1930,-11,0,0 +2013,4,6,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-3,0,1639,4,0,0 +2013,6,12,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2005,132,1,2024,149,1,0 +2013,6,26,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,745,-1,0,830,1,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1520,22,1,1810,60,1,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-8,0,1101,-14,0,0 +2013,8,5,1,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-10,0,1905,4,0,0 +2013,5,9,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-2,0,1725,4,0,0 +2013,10,28,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1519,16,1,1834,3,0,0 +2013,6,20,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,835,11,0,930,8,0,0 +2013,8,3,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,-1,0,1040,6,0,0 +2013,8,16,5,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,-7,0,625,-2,0,0 +2013,8,22,4,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,810,-4,0,1055,10,0,0 +2013,9,5,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1756,-7,0,1903,-16,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2020,45,1,2320,32,1,0 +2013,7,8,1,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,620,0,0,717,1,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2155,12,0,30,3,0,0 +2013,10,2,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1800,-7,0,2118,2,0,0 +2013,6,24,1,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1454,58,1,1710,0,1,1 +2013,8,6,2,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,11,0,1019,11,0,0 +2013,7,31,3,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-8,0,925,-19,0,0 +2013,7,19,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,535,3,0,650,3,0,0 +2013,5,5,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,-3,0,1350,7,0,0 +2013,4,15,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1935,-2,0,2120,-8,0,0 +2013,4,7,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-4,0,1855,15,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,-2,0,1158,-12,0,0 +2013,4,14,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-5,0,2025,-15,0,0 +2013,10,28,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,846,-13,0,1007,-23,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1529,26,1,1847,26,1,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1656,-1,0,1825,11,0,0 +2013,6,13,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,40,1,1654,83,1,0 +2013,6,19,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1845,1,0,2005,-3,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1415,-3,0,1604,-25,0,0 +2013,4,26,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,540,-4,0,722,5,0,0 +2013,4,8,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-8,0,1015,-31,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-5,0,1429,-15,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1701,13,0,1722,4,0,0 +2013,7,31,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-2,0,846,-2,0,0 +2013,5,2,4,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,815,1,0,1320,-2,0,0 +2013,8,11,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1943,5,0,100,12,0,0 +2013,8,1,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-3,0,1220,1,0,0 +2013,8,27,2,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-12,0,915,-1,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2135,1,0,2230,2,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1530,5,0,1713,-1,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,930,1,0,1530,-13,0,0 +2013,7,3,3,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,940,-5,0,1202,-20,0,0 +2013,8,31,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1010,19,1,1055,22,1,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1405,81,1,1740,67,1,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,735,2,0,920,-2,0,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,729,-7,0,914,-11,0,0 +2013,7,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-10,0,904,-26,0,0 +2013,4,4,4,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,-7,0,1105,-22,0,0 +2013,9,30,1,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-11,0,1658,-5,0,0 +2013,10,24,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,545,-10,0,700,-16,0,0 +2013,6,9,7,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,27,1,1425,26,1,0 +2013,9,18,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-6,0,1252,-23,0,0 +2013,5,21,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,-4,0,1740,2,0,0 +2013,5,23,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1155,66,1,1240,53,1,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2000,197,1,2159,190,1,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,639,-3,0,852,-19,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,933,11,0,1300,10,0,0 +2013,7,15,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,-2,0,1845,3,0,0 +2013,10,18,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,915,1,0,945,-2,0,0 +2013,6,26,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,13,0,1750,20,1,0 +2013,5,5,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-2,0,1425,-25,0,0 +2013,9,11,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,755,-10,0,905,-31,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-3,0,1411,17,1,0 +2013,8,2,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1700,16,1,1818,18,1,0 +2013,8,9,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-8,0,1027,6,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,19,1,2108,28,1,0 +2013,7,20,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1955,2,0,2229,47,1,0 +2013,5,9,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,1617,-17,0,0 +2013,10,23,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,-3,0,1358,9,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,5,0,1050,-2,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2105,15,1,2230,-1,0,0 +2013,10,23,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,935,-5,0,1100,-11,0,0 +2013,8,10,6,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1120,54,1,1233,61,1,0 +2013,6,7,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1236,19,1,2111,12,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,-2,0,1049,-9,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1835,31,1,1940,24,1,0 +2013,4,17,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,745,-6,0,1000,-15,0,0 +2013,10,3,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1320,-6,0,1527,8,0,0 +2013,9,11,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,859,-8,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1650,25,1,1840,14,0,0 +2013,5,7,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1340,0,0,1455,-5,0,0 +2013,8,1,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,735,-10,0,905,-8,0,0 +2013,10,1,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-4,0,851,-7,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1125,96,1,1255,96,1,0 +2013,6,2,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1019,1,0,1141,0,0,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,940,0,0,1030,-6,0,0 +2013,5,19,7,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,1,0,1115,8,0,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,-1,0,1609,-3,0,0 +2013,5,22,3,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1545,-2,0,2108,-11,0,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,650,1,0,920,1,0,0 +2013,6,16,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1005,33,1,1500,23,1,0 +2013,4,14,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,645,-8,0,1021,-17,0,0 +2013,6,15,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,75,1,2008,73,1,0 +2013,4,19,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,0,0,1308,6,0,0 +2013,8,23,5,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1120,-2,0,1230,-5,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1548,39,1,2029,30,1,0 +2013,10,18,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-7,0,605,-20,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1535,-3,0,1707,-15,0,0 +2013,6,4,2,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-8,0,1704,-5,0,0 +2013,9,2,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,626,-8,0,745,-23,0,0 +2013,4,17,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-4,0,1851,5,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,820,5,0,950,10,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1959,4,0,2117,1,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2325,-9,0,520,-14,0,0 +2013,7,27,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1140,-4,0,1430,-14,0,0 +2013,10,18,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,941,-5,0,1054,38,1,0 +2013,7,18,4,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,2,0,745,-4,0,0 +2013,10,10,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1446,136,1,1706,144,1,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1755,53,1,1910,57,1,0 +2013,8,8,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,519,-10,0,842,-8,0,0 +2013,8,6,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,10,0,1856,17,1,0 +2013,7,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,850,-2,0,1056,-11,0,0 +2013,8,6,2,EV,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1858,92,1,2038,91,1,0 +2013,4,14,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,179,1,1905,176,1,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-5,0,1344,-12,0,0 +2013,8,2,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-5,0,1128,-11,0,0 +2013,9,3,2,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,6,0,938,1,0,0 +2013,4,15,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,32,1,1850,30,1,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1705,5,0,2000,43,1,0 +2013,5,17,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1610,-15,0,0 +2013,8,5,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1704,11,0,1830,11,0,0 +2013,9,29,7,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,2157,-2,0,2316,-14,0,0 +2013,4,26,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,2,0,1021,-1,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1535,4,0,2255,-12,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1525,15,1,2055,12,0,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,1,0,30,-16,0,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1335,11,0,1445,9,0,0 +2013,8,14,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-2,0,1641,-3,0,0 +2013,8,6,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,645,11,0,959,4,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1337,-1,0,1522,-9,0,0 +2013,7,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,53,1,1820,55,1,0 +2013,8,8,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1451,-7,0,1715,-22,0,0 +2013,7,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,48,1,938,56,1,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,830,4,0,1045,-7,0,0 +2013,9,30,1,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-9,0,1148,-8,0,0 +2013,6,4,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,10,0,1730,9,0,0 +2013,8,28,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,709,-7,0,743,-6,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1010,7,0,1510,11,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2040,1,0,2308,3,0,0 +2013,7,19,5,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,735,-2,0,954,-46,0,0 +2013,10,4,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,830,-16,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,-2,0,800,-4,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,-6,0,1340,-24,0,0 +2013,7,20,6,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-9,0,1304,-22,0,0 +2013,5,6,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1633,19,1,1748,9,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1420,-9,0,1552,0,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1526,21,1,1641,-5,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,9,0,2100,3,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1314,-1,0,1628,-14,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,9,0,2357,-4,0,0 +2013,10,30,3,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1859,-7,0,2024,-6,0,0 +2013,10,30,3,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,-5,0,942,-9,0,0 +2013,4,5,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,-5,0,2105,11,0,0 +2013,4,1,1,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,615,10,0,1434,-6,0,0 +2013,6,19,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,800,-3,0,1040,1,0,0 +2013,10,16,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,2,0,1750,-3,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-6,0,1021,-11,0,0 +2013,8,27,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,-1,0,1305,-2,0,0 +2013,6,26,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,4,0,147,-3,0,0 +2013,10,5,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1525,77,1,1635,74,1,0 +2013,5,27,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1858,183,1,2141,146,1,0 +2013,4,28,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1041,78,1,1135,67,1,0 +2013,5,14,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1401,-4,0,1515,-15,0,0 +2013,4,29,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-5,0,1953,-18,0,0 +2013,10,6,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-6,0,1121,-11,0,0 +2013,9,19,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1100,-1,0,1222,1,0,0 +2013,5,14,2,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1945,-9,0,2115,-27,0,0 +2013,9,26,4,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1926,-13,0,2113,-21,0,0 +2013,10,18,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,19,1,1625,16,1,0 +2013,10,4,5,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,-4,0,800,-9,0,0 +2013,10,29,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,625,-7,0,856,16,1,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,811,-6,0,1027,-14,0,0 +2013,5,1,3,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1500,7,0,1700,4,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,2015,-5,0,2235,-1,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1420,28,1,1520,24,1,0 +2013,7,12,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,10,0,1709,8,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1300,-4,0,1435,3,0,0 +2013,7,19,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,957,-6,0,1208,-24,0,0 +2013,6,28,5,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,2340,-11,0,808,-11,0,0 +2013,5,30,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1859,-2,0,2250,-13,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1935,-5,0,2140,-26,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1420,74,1,1606,65,1,0 +2013,4,19,5,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,608,-9,0,711,-10,0,0 +2013,8,16,5,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,-4,0,1820,-5,0,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,-5,0,1105,-6,0,0 +2013,7,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1855,9,0,2227,2,0,0 +2013,9,30,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-5,0,1400,-10,0,0 +2013,7,4,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1820,-8,0,1915,-23,0,0 +2013,6,26,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,41,1,1906,42,1,0 +2013,4,14,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,6,0,2227,14,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,830,-9,0,0 +2013,4,12,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1420,-2,0,1636,15,1,0 +2013,4,13,6,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1845,1,0,2000,-8,0,0 +2013,10,22,2,EV,13871,Eppley Airfield,Omaha,NE,12953,LaGuardia,New York,NY,700,-11,0,1053,-29,0,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,900,-2,0,1015,-5,0,0 +2013,6,13,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,648,-6,0,0 +2013,5,21,2,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-4,0,2106,-15,0,0 +2013,4,2,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,-4,0,1238,-9,0,0 +2013,8,30,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-2,0,945,-4,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,0,0,905,13,0,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1610,-4,0,1731,-2,0,0 +2013,4,27,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,-2,0,1020,-8,0,0 +2013,10,10,4,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1723,-7,0,2033,-17,0,0 +2013,10,23,3,EV,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1722,-4,0,1839,-21,0,0 +2013,4,8,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1948,-11,0,2117,-14,0,0 +2013,10,21,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1345,-4,0,1544,-11,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2020,37,1,2235,31,1,0 +2013,5,22,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,36,1,2315,27,1,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,22,1,1850,27,1,0 +2013,6,26,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,915,-1,0,1740,-15,0,0 +2013,6,8,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1615,7,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-2,0,1432,-10,0,0 +2013,5,22,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,-1,0,1100,0,0,0 +2013,5,21,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,920,0,0,1050,-10,0,0 +2013,8,14,3,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,67,1,1715,56,1,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,713,-9,0,1109,-27,0,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,-1,0,1655,-8,0,0 +2013,5,22,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1110,-5,0,1300,-8,0,0 +2013,7,6,6,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,818,40,1,1001,22,1,0 +2013,10,11,5,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1245,13,0,2110,8,0,0 +2013,8,2,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1615,-4,0,1726,-17,0,0 +2013,7,19,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1500,9,0,2330,7,0,0 +2013,5,23,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,89,1,2012,82,1,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1120,4,0,1309,-5,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,645,-4,0,810,-3,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1843,7,0,2330,-13,0,0 +2013,4,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1210,9,0,1453,28,1,0 +2013,7,5,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1639,-2,0,1750,0,0,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1956,13,0,2132,-5,0,0 +2013,4,24,3,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,5,0,2240,-25,0,0 +2013,6,28,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,2,0,1415,0,0,0 +2013,8,12,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,655,-4,0,745,-1,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,935,35,1,1315,27,1,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1930,38,1,2015,39,1,0 +2013,7,22,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,0,0,801,-18,0,0 +2013,4,26,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1936,-3,0,2140,-3,0,0 +2013,8,24,6,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,615,1,0,900,-19,0,0 +2013,8,24,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,-1,0,750,-6,0,0 +2013,7,26,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2105,-16,0,2230,-10,0,0 +2013,5,3,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,830,-3,0,1110,-4,0,0 +2013,5,7,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,755,-4,0,1032,-15,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2220,2,0,2353,1,0,0 +2013,6,20,4,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,845,9,0,1125,6,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,1,0,2044,-9,0,0 +2013,5,3,5,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1125,-3,0,1715,-15,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,26,1,2325,20,1,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1320,6,0,1636,21,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1505,-6,0,1654,-7,0,0 +2013,6,24,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,855,0,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1125,-5,0,1335,-6,0,0 +2013,10,18,5,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-5,0,901,-3,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1345,-3,0,1440,-18,0,0 +2013,9,11,3,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1041,5,0,1255,26,1,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1742,-5,0,1923,64,1,0 +2013,8,28,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-4,0,955,-24,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1530,-5,0,1650,10,0,0 +2013,8,27,2,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,-7,0,1051,-23,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,630,-2,0,725,-3,0,0 +2013,9,15,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2320,3,0,655,-13,0,0 +2013,4,5,5,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1430,7,0,1520,-1,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1742,11,0,1925,-3,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1210,-1,0,1330,-6,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1625,-1,0,1745,-4,0,0 +2013,10,13,7,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1758,-4,0,2000,-4,0,0 +2013,8,30,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-7,0,1225,-6,0,0 +2013,5,5,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1340,10,0,1445,10,0,0 +2013,8,6,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,8,0,1200,-1,0,0 +2013,4,6,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-9,0,1320,-24,0,0 +2013,4,29,1,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,2110,13,0,40,5,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,7,0,2019,4,0,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2130,-2,0,2340,7,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-3,0,1844,-13,0,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2015,37,1,2115,32,1,0 +2013,6,23,7,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,-1,0,1128,-7,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,928,-4,0,1214,-31,0,0 +2013,9,30,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1330,4,0,1440,-1,0,0 +2013,5,9,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,625,19,1,918,-3,0,0 +2013,5,31,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1232,-9,0,1810,-11,0,0 +2013,9,13,5,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1645,7,0,2015,-10,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1640,0,0,1920,-28,0,0 +2013,5,17,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,36,1,1226,30,1,0 +2013,5,16,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,22,1,1650,12,0,0 +2013,6,12,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-7,0,1025,-18,0,0 +2013,6,28,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,3,0,2221,9,0,0 +2013,9,28,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,808,-5,0,929,-2,0,0 +2013,10,29,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1815,-4,0,2019,-6,0,0 +2013,7,9,2,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,940,-8,0,1202,-1,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1656,-8,0,1932,-10,0,0 +2013,8,26,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,7,0,1207,-1,0,0 +2013,10,23,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1535,-1,0,1740,-15,0,0 +2013,4,23,2,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1050,-3,0,1855,-29,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1944,2,0,2329,84,1,0 +2013,9,8,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1435,-3,0,1715,-6,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,5,0,1640,24,1,0 +2013,8,30,5,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,-6,0,812,-8,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,3,0,1440,3,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,7,0,2225,-1,0,0 +2013,8,30,5,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1559,-7,0,1657,-12,0,0 +2013,7,23,2,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,550,-3,0,750,-12,0,0 +2013,8,4,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,649,-11,0,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,3,0,1027,-2,0,0 +2013,6,7,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,944,2,0,1245,-10,0,0 +2013,6,2,7,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1705,-6,0,1927,8,0,0 +2013,9,30,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1920,4,0,2010,-11,0,0 +2013,6,21,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-5,0,910,-10,0,0 +2013,8,13,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1220,7,0,1337,32,1,0 +2013,10,18,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2055,-10,0,2156,8,0,0 +2013,4,9,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,2125,-3,0,5,-1,0,0 +2013,4,20,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1150,-3,0,1450,-7,0,0 +2013,4,23,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,26,1,1917,20,1,0 +2013,9,15,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,0,0,855,-10,0,0 +2013,7,15,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,836,-7,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,726,-8,0,900,3,0,0 +2013,7,26,5,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,5,0,629,-8,0,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,703,-5,0,1019,-22,0,0 +2013,7,28,7,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2153,149,1,558,144,1,0 +2013,4,10,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1140,149,1,1730,172,1,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-2,0,1433,-17,0,0 +2013,5,17,5,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1115,-8,0,1409,16,1,0 +2013,9,14,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,-7,0,1730,-23,0,0 +2013,9,25,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1210,3,0,1309,-7,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-4,0,1703,-17,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1025,13,0,1550,16,1,0 +2013,4,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1506,-5,0,1607,-17,0,0 +2013,10,26,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1846,-10,0,2008,-17,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1530,2,0,1740,40,1,0 +2013,4,6,6,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1930,-2,0,2253,-13,0,0 +2013,8,15,4,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1415,0,0,2240,-1,0,0 +2013,9,3,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-2,0,1405,-15,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2020,10,0,2240,28,1,0 +2013,6,3,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-1,0,1632,10,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1153,-6,0,1306,-8,0,0 +2013,8,29,4,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1844,78,1,2154,65,1,0 +2013,4,2,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,0,0,1233,14,0,0 +2013,4,17,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-5,0,2128,2,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1630,-2,0,1918,-13,0,0 +2013,10,9,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1719,2,0,1910,6,0,0 +2013,7,2,2,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,945,-3,0,1040,4,0,0 +2013,4,28,7,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1742,-8,0,2023,-29,0,0 +2013,4,10,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,174,1,1203,159,1,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,25,1,2314,-3,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1640,48,1,1915,30,1,0 +2013,9,23,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1450,-2,0,1605,-3,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1510,21,1,1850,8,0,0 +2013,5,1,3,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1530,2,0,1645,-16,0,0 +2013,8,12,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1305,102,1,1500,101,1,0 +2013,8,28,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1145,3,0,1335,-5,0,0 +2013,6,4,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2015,49,1,2037,29,1,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1317,-5,0,1441,0,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,700,30,1,920,16,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,123,1,2231,115,1,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1540,42,1,1650,38,1,0 +2013,7,8,1,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1920,3,0,50,-8,0,0 +2013,9,6,5,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1220,-5,0,1515,0,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,-3,0,919,4,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1046,-4,0,1204,-14,0,0 +2013,5,27,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,0,0,2335,-8,0,0 +2013,10,2,3,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1410,-4,0,1755,-6,0,0 +2013,4,30,2,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1435,-3,0,2240,-3,0,0 +2013,8,20,2,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1620,-6,0,1843,-9,0,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1600,6,0,1725,0,0,0 +2013,6,27,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1750,-3,0,1905,-7,0,0 +2013,4,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2141,4,0,2237,15,1,0 +2013,8,31,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-10,0,1557,0,1,1 +2013,5,6,1,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-5,0,1215,-5,0,0 +2013,9,29,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1125,6,0,1225,-4,0,0 +2013,7,16,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,935,2,0,941,12,0,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,615,-2,0,730,3,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,925,-8,0,1255,-12,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1610,4,0,1725,-12,0,0 +2013,7,19,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1030,-1,0,1035,-2,0,0 +2013,4,24,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,840,-9,0,1704,-16,0,0 +2013,9,26,4,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1005,0,0,1245,8,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,-5,0,1520,-6,0,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,1034,15,1,0 +2013,9,10,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10,-6,0,505,-8,0,0 +2013,10,6,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,910,0,0,1020,2,0,0 +2013,5,11,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1610,4,0,1725,-2,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1035,-4,0,1217,-10,0,0 +2013,9,25,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1105,32,1,1145,29,1,0 +2013,7,27,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1250,33,1,2112,31,1,0 +2013,8,19,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1215,-8,0,1512,-4,0,0 +2013,7,19,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1905,-2,0,2140,39,1,0 +2013,6,15,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,5,0,1720,-2,0,0 +2013,4,6,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,55,-11,0,741,-30,0,0 +2013,9,3,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2052,68,1,2257,71,1,0 +2013,4,26,5,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2335,-1,0,740,-8,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1911,2,0,2047,-8,0,0 +2013,10,7,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,825,0,0,1210,-8,0,0 +2013,8,1,4,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2057,7,0,450,11,0,0 +2013,10,29,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,21,1,2132,21,1,0 +2013,7,24,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,1,0,40,-11,0,0 +2013,8,4,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-8,0,754,1,0,0 +2013,4,20,6,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1625,28,1,2215,4,0,0 +2013,9,8,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-7,0,2018,-4,0,0 +2013,10,9,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2200,-1,0,30,-16,0,0 +2013,4,3,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1614,-5,0,1857,7,0,0 +2013,9,26,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,17,1,1710,21,1,0 +2013,4,7,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,-2,0,1733,-11,0,0 +2013,10,28,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,810,-1,0,920,-1,0,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,44,1,2110,41,1,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,8,0,1755,-5,0,0 +2013,10,17,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,715,56,1,857,60,1,0 +2013,7,3,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,830,0,,950,0,1,1 +2013,6,3,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,-3,0,2125,5,0,0 +2013,10,8,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-7,0,1059,-1,0,0 +2013,8,2,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,1,0,2055,1,0,0 +2013,6,12,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,27,1,2100,17,1,0 +2013,5,11,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1255,2,0,1550,-4,0,0 +2013,5,10,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1923,33,1,2120,59,1,0 +2013,8,2,5,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,732,-3,0,1037,-8,0,0 +2013,6,21,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2000,52,1,2035,62,1,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1345,2,0,1513,-6,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1625,4,0,1817,-1,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,-1,0,1331,-6,0,0 +2013,7,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,840,-3,0,1000,-6,0,0 +2013,6,19,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,0,,830,0,1,1 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1617,-3,0,1813,3,0,0 +2013,10,16,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1815,1,0,2054,2,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,-7,0,929,-12,0,0 +2013,4,9,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,905,-5,0,1116,-7,0,0 +2013,10,20,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2327,0,0,725,-24,0,0 +2013,10,15,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-5,0,925,-14,0,0 +2013,8,22,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,13,0,1437,8,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1320,-2,0,1725,-11,0,0 +2013,5,17,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,0,0,1625,-3,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,840,12,0,1105,8,0,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1701,9,0,1833,-5,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,27,1,1952,21,1,0 +2013,6,25,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,27,1,2047,0,0,0 +2013,7,11,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1016,18,1,1201,10,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-5,0,1326,6,0,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1837,-1,0,2157,5,0,0 +2013,5,31,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1406,10,0,2100,25,1,0 +2013,8,6,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1605,14,0,1730,25,1,0 +2013,10,9,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1550,8,0,1825,7,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1000,-1,0,1220,-9,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-5,0,1718,11,0,0 +2013,7,13,6,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-3,0,1131,3,0,0 +2013,6,1,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-2,0,1455,-17,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2208,-2,0,2,-8,0,0 +2013,7,4,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,-4,0,2135,-13,0,0 +2013,9,26,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2125,-8,0,2215,-26,0,0 +2013,7,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,13,0,2105,9,0,0 +2013,8,22,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,710,-4,0,832,-1,0,0 +2013,10,5,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-4,0,1106,-3,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,1,0,1415,3,0,0 +2013,5,21,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,41,1,1540,38,1,0 +2013,7,25,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,600,0,,729,0,1,1 +2013,10,8,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-7,0,1206,-11,0,0 +2013,9,17,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1657,-8,0,1812,-19,0,0 +2013,8,23,5,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,640,1,0,1441,8,0,0 +2013,6,21,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1930,130,1,2059,132,1,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1140,2,0,1300,-10,0,0 +2013,8,20,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,610,-5,0,725,-17,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-4,0,1923,-16,0,0 +2013,10,9,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1315,-1,0,1415,0,0,0 +2013,9,13,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,-3,0,1644,1,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,805,-5,0,855,-8,0,0 +2013,4,8,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2000,128,1,2323,128,1,0 +2013,6,9,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1608,24,1,1658,26,1,0 +2013,6,9,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,0,0,1610,-13,0,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,-3,0,1100,-1,0,0 +2013,9,13,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,2015,-4,0,2155,-6,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,2003,18,1,2128,3,0,0 +2013,7,11,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,4,0,1125,-8,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1235,1,0,1340,-4,0,0 +2013,10,25,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,4,0,930,4,0,0 +2013,6,23,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,25,1,1341,22,1,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,157,1,1835,173,1,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1925,8,0,2250,12,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,2,0,2155,7,0,0 +2013,5,1,3,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,1800,-3,0,2039,-6,0,0 +2013,5,26,7,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,0,0,1305,5,0,0 +2013,6,5,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1205,-2,0,1311,-12,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-4,0,1433,7,0,0 +2013,4,3,3,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1935,-8,0,2056,-4,0,0 +2013,10,25,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,-4,0,2015,3,0,0 +2013,4,12,5,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1735,171,1,2005,158,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1220,-1,0,1335,-10,0,0 +2013,4,25,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1217,-6,0,1527,-3,0,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1958,139,1,2200,113,1,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,915,-4,0,1100,-16,0,0 +2013,7,2,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1730,2,0,2027,32,1,0 +2013,10,28,1,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1349,7,0,1556,26,1,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,6,0,930,-5,0,0 +2013,4,27,6,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,2015,39,1,2154,34,1,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2215,68,1,2350,59,1,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1705,-4,0,1800,-3,0,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,-3,0,2044,-9,0,0 +2013,10,20,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1609,-6,0,1732,-4,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,-6,0,1355,-43,0,0 +2013,4,19,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,640,-6,0,828,8,0,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1435,1,0,1535,0,0,0 +2013,7,26,5,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1823,17,1,2110,1,0,0 +2013,4,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,845,0,0,1005,10,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,835,7,0,925,0,0,0 +2013,8,31,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,815,-6,0,1106,-17,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1825,-4,0,2119,-1,0,0 +2013,7,20,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1445,50,1,1740,61,1,0 +2013,10,15,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,0,0,1714,-4,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1936,-6,0,2110,-24,0,0 +2013,4,26,5,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1548,4,0,1645,27,1,0 +2013,6,19,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1720,9,0,1833,-5,0,0 +2013,9,10,2,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-7,0,2130,-7,0,0 +2013,8,6,2,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1119,-5,0,1254,1,0,0 +2013,4,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,16,1,1629,21,1,0 +2013,10,20,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,7,0,1315,-2,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,615,-5,0,730,-10,0,0 +2013,9,7,6,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1538,0,0,1631,-8,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,647,-5,0,926,-21,0,0 +2013,9,13,5,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1010,-8,0,1212,-14,0,0 +2013,9,10,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1429,-6,0,1536,-2,0,0 +2013,8,12,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,940,-3,0,1140,12,0,0 +2013,4,27,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,846,-5,0,1050,5,0,0 +2013,10,14,1,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,2,0,1552,5,0,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,935,17,1,1225,14,0,0 +2013,9,7,6,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-8,0,718,-14,0,0 +2013,10,1,2,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1632,124,1,1800,102,1,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2230,-4,0,702,4,0,0 +2013,6,12,3,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1747,-6,0,2030,7,0,0 +2013,10,23,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-10,0,2055,9,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-4,0,757,6,0,0 +2013,7,24,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1650,-2,0,1755,-6,0,0 +2013,4,30,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,815,-6,0,1040,-14,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-2,0,1330,0,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1614,28,1,1800,30,1,0 +2013,9,19,4,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1810,264,1,1940,257,1,0 +2013,6,8,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1800,-3,0,2026,10,0,0 +2013,8,14,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,-1,0,1450,-1,0,0 +2013,6,26,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-1,0,1110,12,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,1,0,1430,-11,0,0 +2013,8,12,1,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1713,-1,0,2057,-13,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2155,1,0,2338,-11,0,0 +2013,8,26,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,38,1,1922,21,1,0 +2013,5,5,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,8,0,2145,9,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,49,1,2040,40,1,0 +2013,6,21,5,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,30,-5,0,810,-1,0,0 +2013,7,20,6,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,650,-3,0,812,7,0,0 +2013,4,9,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,745,0,0,950,-21,0,0 +2013,5,13,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1659,0,0,1829,-17,0,0 +2013,9,5,4,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2339,-13,0,805,-4,0,0 +2013,4,11,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2047,5,0,2213,-9,0,0 +2013,5,31,5,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,903,34,1,1035,29,1,0 +2013,6,26,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1708,32,1,1845,42,1,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,0,0,850,1,0,0 +2013,4,15,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-8,0,638,7,0,0 +2013,7,22,1,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,14,0,1645,8,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,616,0,0,921,-11,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,733,5,0,1102,-17,0,0 +2013,9,24,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1540,7,0,1655,1,0,0 +2013,7,5,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-5,0,1314,-9,0,0 +2013,4,25,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,930,-2,0,1056,11,0,0 +2013,4,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,720,-5,0,1109,-12,0,0 +2013,10,7,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1540,18,1,1650,-1,0,0 +2013,8,4,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-3,0,1923,0,0,0 +2013,10,11,5,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1829,-4,0,2014,-11,0,0 +2013,8,18,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1709,12,0,1844,15,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,1,0,1835,-4,0,0 +2013,4,13,6,9E,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1345,-3,0,1639,-13,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,830,4,0,935,7,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,71,1,1833,98,1,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,28,1,1450,66,1,0 +2013,7,28,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,530,-3,0,711,-3,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1155,-2,0,1635,-23,0,0 +2013,5,21,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,-10,0,1650,10,0,0 +2013,9,8,7,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,-2,0,2000,-10,0,0 +2013,6,24,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,-1,0,2256,6,0,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1554,-6,0,1845,-1,0,0 +2013,10,17,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,635,0,0,650,-9,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1450,2,0,1745,-2,0,0 +2013,9,8,7,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,817,0,0,1023,-5,0,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2035,139,1,2240,134,1,0 +2013,8,18,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,0,0,1905,-2,0,0 +2013,8,6,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1821,98,1,2122,91,1,0 +2013,6,2,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-7,0,1357,6,0,0 +2013,6,10,1,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1934,105,1,2105,150,1,0 +2013,9,16,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,-2,0,2230,3,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,38,1,2110,31,1,0 +2013,10,7,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,6,0,1930,-10,0,0 +2013,5,4,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-12,0,2028,-24,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1520,-2,0,1810,-22,0,0 +2013,9,4,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-1,0,1746,5,0,0 +2013,7,30,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,8,0,755,13,0,0 +2013,8,12,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1341,47,1,1443,37,1,0 +2013,7,23,2,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,735,1,0,1600,-10,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1155,49,1,1545,89,1,0 +2013,9,27,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,-3,0,1015,-18,0,0 +2013,7,17,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,21,1,2020,23,1,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,917,-2,0,1515,9,0,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,-2,0,1152,-10,0,0 +2013,9,6,5,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-4,0,1536,-16,0,0 +2013,7,8,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,810,2,0,825,-8,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1855,-5,0,1949,-8,0,0 +2013,6,15,6,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1120,20,1,1210,9,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-2,0,950,-16,0,0 +2013,7,28,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1311,12,0,1431,38,1,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1240,0,0,1521,-18,0,0 +2013,4,3,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1159,0,0,1352,-2,0,0 +2013,8,31,6,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,825,37,1,954,61,1,0 +2013,8,24,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1925,-5,0,1959,-5,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-3,0,1135,-22,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1040,-5,0,1300,19,1,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1835,0,,2155,0,1,1 +2013,6,27,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1549,34,1,1724,24,1,0 +2013,9,27,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1700,28,1,1952,18,1,0 +2013,9,13,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,34,1,2232,33,1,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,-7,0,110,-11,0,0 +2013,6,22,6,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,8,0,2115,12,0,0 +2013,6,9,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1135,-7,0,1255,-5,0,0 +2013,7,30,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1945,0,0,2105,0,0,0 +2013,10,8,2,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-6,0,1846,6,0,0 +2013,4,5,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1230,13,0,1327,4,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1920,6,0,2225,-15,0,0 +2013,10,2,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1730,-2,0,2104,-28,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1100,1,0,1225,-11,0,0 +2013,4,22,1,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1440,26,1,1744,1,0,0 +2013,10,14,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-5,0,2145,7,0,0 +2013,8,20,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,830,-6,0,1023,0,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1835,-2,0,2110,-28,0,0 +2013,8,26,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-5,0,950,-16,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1730,12,0,2017,-7,0,0 +2013,4,29,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,632,-6,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2159,-5,0,2301,3,0,0 +2013,9,1,7,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,-3,0,1040,0,0,0 +2013,5,28,2,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,-5,0,1045,-13,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,2,0,1815,0,0,0 +2013,6,6,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,1,0,903,11,0,0 +2013,4,19,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1915,-2,0,2035,-6,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1415,-1,0,2300,-30,0,0 +2013,8,4,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-7,0,1157,-23,0,0 +2013,9,14,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-3,0,1010,2,0,0 +2013,5,3,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,19,1,2100,24,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,952,69,1,1116,56,1,0 +2013,8,14,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1517,-7,0,1655,-1,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1450,-1,0,1517,-8,0,0 +2013,5,18,6,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,10,0,1630,7,0,0 +2013,10,25,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-2,0,1650,-1,0,0 +2013,8,29,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1812,-2,0,1942,-4,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,826,-2,0,919,-3,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,0,,2345,0,1,1 +2013,5,5,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1938,13,0,2111,28,1,0 +2013,5,20,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1120,-2,0,1233,0,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1900,8,0,2050,1,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2155,1,0,2255,7,0,0 +2013,6,3,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-11,0,1119,-15,0,0 +2013,10,23,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-6,0,1208,0,0,0 +2013,4,13,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2012,-4,0,2112,-15,0,0 +2013,5,19,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1555,18,1,1850,13,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,-2,0,1538,-17,0,0 +2013,9,11,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-7,0,1230,-16,0,0 +2013,7,27,6,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1330,-5,0,2011,-13,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2040,20,1,2140,18,1,0 +2013,4,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2135,-5,0,2245,-15,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,-1,0,1355,-6,0,0 +2013,9,7,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-4,0,756,-9,0,0 +2013,4,19,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-5,0,1018,7,0,0 +2013,7,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,8,0,2050,13,0,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1936,70,1,2044,54,1,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,815,-4,0,923,-13,0,0 +2013,4,2,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1345,321,1,1545,294,1,0 +2013,5,19,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1555,9,0,1659,12,0,0 +2013,8,15,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,1951,-12,0,0 +2013,9,15,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-3,0,1617,-4,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,-5,0,1206,-14,0,0 +2013,6,8,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,935,-3,0,1122,-10,0,0 +2013,10,25,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1325,0,0,1455,-2,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,913,-1,0,1138,3,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1853,127,1,2330,117,1,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,820,23,1,1025,28,1,0 +2013,9,30,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,825,-5,0,926,-4,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,1,0,1505,5,0,0 +2013,4,17,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-4,0,1240,-3,0,0 +2013,8,30,5,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1157,-10,0,2023,-7,0,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,755,-5,0,1055,-15,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1610,-6,0,1718,-15,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,-3,0,1758,15,1,0 +2013,8,2,5,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,7,0,1620,5,0,0 +2013,4,4,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,844,-5,0,0 +2013,9,18,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,621,-4,0,1227,-12,0,0 +2013,8,18,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-7,0,920,-12,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,11,0,1501,-1,0,0 +2013,10,11,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2150,78,1,2335,67,1,0 +2013,5,21,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,-4,0,2045,-5,0,0 +2013,10,3,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,700,-6,0,946,-14,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,-4,0,2330,-14,0,0 +2013,5,10,5,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-3,0,500,-4,0,0 +2013,5,2,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1550,45,1,1755,32,1,0 +2013,9,13,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1942,97,1,2105,109,1,0 +2013,9,23,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,747,-3,0,828,-2,0,0 +2013,10,9,3,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1225,-4,0,1446,-11,0,0 +2013,8,22,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1400,128,1,1630,122,1,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,24,1,1915,7,0,0 +2013,6,14,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,-4,0,1633,-9,0,0 +2013,6,6,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-9,0,852,-23,0,0 +2013,4,18,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,13,0,2125,18,1,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1705,-1,0,1820,-1,0,0 +2013,6,25,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1349,33,1,1504,25,1,0 +2013,9,6,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,52,1,1600,36,1,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,65,1,2330,41,1,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1614,156,1,1735,159,1,0 +2013,6,6,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,40,-7,0,853,7,0,0 +2013,7,8,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,615,-15,0,0 +2013,9,27,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,-1,0,2120,-8,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,811,-5,0,1013,-18,0,0 +2013,10,31,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1230,16,1,1744,13,0,0 +2013,6,2,7,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2016,0,,2159,0,1,1 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1405,51,1,1840,34,1,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1346,-5,0,1536,-11,0,0 +2013,7,12,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2100,-2,0,2215,-9,0,0 +2013,10,12,6,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-7,0,1645,-19,0,0 +2013,7,16,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1649,-4,0,1726,-2,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,705,-1,0,810,-13,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1710,23,1,2225,28,1,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1930,-8,0,2049,4,0,0 +2013,9,23,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1050,-1,0,1330,-4,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1640,130,1,1740,122,1,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,850,12,0,1313,19,1,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1242,25,1,1520,24,1,0 +2013,5,30,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1412,0,0,1635,-21,0,0 +2013,5,22,3,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1253,-16,0,0 +2013,8,29,4,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1849,0,0,2159,9,0,0 +2013,8,22,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1142,26,1,1707,22,1,0 +2013,8,1,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,635,-3,0,837,3,0,0 +2013,7,29,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2225,-4,0,630,-30,0,0 +2013,5,17,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1955,30,1,2108,51,1,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1028,-2,0,1426,-1,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1347,-1,0,1417,-7,0,0 +2013,5,19,7,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,814,-10,0,1035,-6,0,0 +2013,5,19,7,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1235,-4,0,1620,-16,0,0 +2013,7,2,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1202,-3,0,1252,-10,0,0 +2013,9,30,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-8,0,915,-7,0,0 +2013,9,15,7,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1125,-10,0,1300,-38,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1410,5,0,1536,42,1,0 +2013,5,13,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,0,0,845,2,0,0 +2013,8,6,2,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2122,13,0,2344,8,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,-6,0,1730,-18,0,0 +2013,8,27,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-9,0,1710,-25,0,0 +2013,4,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,59,1,2255,39,1,0 +2013,9,21,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1555,-3,0,1910,-3,0,0 +2013,4,10,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1705,31,1,1845,48,1,0 +2013,7,31,3,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,4,0,1200,5,0,0 +2013,6,27,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,17,1,1525,1,0,0 +2013,10,24,4,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,855,-1,0,1016,0,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1610,4,0,1740,-19,0,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,931,0,0,1205,-17,0,0 +2013,9,4,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1930,-10,0,2040,-20,0,0 +2013,8,29,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-8,0,2300,-9,0,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1220,-3,0,1452,8,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-1,0,1110,-14,0,0 +2013,5,29,3,9E,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1955,72,1,2253,47,1,0 +2013,7,3,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,535,-2,0,850,-15,0,0 +2013,8,1,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1725,89,1,1746,91,1,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1720,0,0,2055,-15,0,0 +2013,9,16,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1605,19,1,1725,10,0,0 +2013,8,25,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1435,-4,0,1740,-6,0,0 +2013,9,17,2,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1015,4,0,1123,0,0,0 +2013,6,7,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1150,2,0,1335,-9,0,0 +2013,7,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-3,0,2135,-19,0,0 +2013,7,15,1,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1120,-6,0,1502,-9,0,0 +2013,9,8,7,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,2,0,2134,-24,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1855,4,0,2113,-11,0,0 +2013,7,2,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1007,16,1,1130,12,0,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1530,1,0,1915,5,0,0 +2013,6,23,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2015,-7,0,2344,-12,0,0 +2013,8,9,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1744,4,0,2009,7,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1256,5,0,1407,9,0,0 +2013,6,12,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,-12,0,1815,14,0,0 +2013,7,17,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,6,0,1950,25,1,0 +2013,5,16,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,1,0,1840,-15,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,-3,0,1041,-6,0,0 +2013,9,20,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1244,9,0,1530,17,1,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1026,-8,0,1157,-13,0,0 +2013,4,1,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,2000,-2,0,2109,-13,0,0 +2013,5,25,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,99,1,1707,94,1,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-4,0,750,-3,0,0 +2013,9,30,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,740,-10,0,1029,-6,0,0 +2013,10,21,1,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1720,-2,0,1833,41,1,0 +2013,9,10,2,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,626,-4,0,758,-30,0,0 +2013,8,15,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,-1,0,1045,-12,0,0 +2013,4,1,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1450,1,0,1830,-4,0,0 +2013,8,17,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-7,0,1155,-9,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,705,-1,0,925,0,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2005,0,0,2103,34,1,0 +2013,4,16,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,3,0,740,-7,0,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1950,1,0,2205,19,1,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2055,7,0,2155,5,0,0 +2013,7,29,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1930,-1,0,2050,-1,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2145,7,0,2338,-7,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1440,2,0,2115,4,0,0 +2013,9,20,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,-5,0,930,-10,0,0 +2013,4,6,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2105,-1,0,2215,-4,0,0 +2013,8,19,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1124,-9,0,1333,-22,0,0 +2013,4,27,6,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-12,0,1607,-19,0,0 +2013,6,6,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,935,163,1,1055,156,1,0 +2013,4,22,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,600,1,0,725,2,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1155,-6,0,1300,-17,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-5,0,1305,-24,0,0 +2013,9,17,2,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,9,0,853,5,0,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1221,-5,0,1500,-12,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,33,1,1900,27,1,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,10,0,1855,16,1,0 +2013,8,12,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,32,1,2052,30,1,0 +2013,6,27,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,820,-2,0,945,0,0,0 +2013,8,11,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1450,68,1,1615,68,1,0 +2013,5,27,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1410,0,0,2240,15,1,0 +2013,5,21,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1743,38,1,2023,29,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,62,1,2119,40,1,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1200,9,0,1355,-8,0,0 +2013,10,12,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-4,0,1028,-2,0,0 +2013,6,3,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1215,83,1,1400,88,1,0 +2013,8,12,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,-9,0,2118,-16,0,0 +2013,10,10,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,659,-2,0,859,2,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1053,0,0,1303,-20,0,0 +2013,5,1,3,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-7,0,1640,-7,0,0 +2013,10,4,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-5,0,1100,-4,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1320,22,1,1435,25,1,0 +2013,6,11,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-2,0,651,-1,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,0,0,2245,-9,0,0 +2013,10,24,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1005,-6,0,1138,-2,0,0 +2013,9,29,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,-9,0,1501,-19,0,0 +2013,9,30,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,-6,0,1255,-15,0,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1220,58,1,1815,61,1,0 +2013,8,14,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1230,-1,0,1345,-5,0,0 +2013,5,27,1,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,-1,0,1350,9,0,0 +2013,6,28,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-3,0,725,-15,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,3,0,1402,13,0,0 +2013,4,14,7,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-3,0,1131,-28,0,0 +2013,4,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-4,0,1210,-18,0,0 +2013,6,24,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,7,0,1655,26,1,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,5,0,1410,6,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,924,-6,0,1211,-12,0,0 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,800,23,1,959,19,1,0 +2013,10,4,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,831,18,1,929,39,1,0 +2013,5,31,5,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,4,0,2020,6,0,0 +2013,9,18,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1645,-6,0,2140,-20,0,0 +2013,10,28,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-4,0,1007,-11,0,0 +2013,6,4,2,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,955,0,0,1419,-8,0,0 +2013,9,2,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1210,85,1,1330,74,1,0 +2013,7,5,5,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1730,5,0,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,930,51,1,1805,24,1,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,949,-1,0,1212,-6,0,0 +2013,7,21,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,1155,-24,0,0 +2013,6,23,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1416,40,1,1644,41,1,0 +2013,9,9,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,600,-5,0,905,-22,0,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,717,-4,0,902,2,0,0 +2013,4,11,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-4,0,850,-6,0,0 +2013,4,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,845,39,1,1255,12,0,0 +2013,8,26,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,-1,0,1237,-8,0,0 +2013,5,4,6,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1217,0,0,1414,7,0,0 +2013,5,6,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1050,-2,0,1310,-9,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,7,0,1149,1,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,730,-3,0,1103,-14,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1055,-3,0,1145,-4,0,0 +2013,4,8,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,910,8,0,1158,-11,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1730,-4,0,2017,-8,0,0 +2013,8,4,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,745,-6,0,840,-8,0,0 +2013,7,21,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,5,0,1820,-5,0,0 +2013,10,20,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1815,1,0,2055,-1,0,0 +2013,7,25,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,932,-3,0,1750,15,1,0 +2013,8,6,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,0,0,2014,25,1,0 +2013,5,27,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,16,1,1812,24,1,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,615,1,0,830,3,0,0 +2013,5,21,2,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1610,11,0,1911,5,0,0 +2013,7,1,1,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1850,36,1,2116,34,1,0 +2013,9,14,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,-3,0,1455,-2,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1911,0,0,2211,-2,0,0 +2013,4,15,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,2,0,945,-11,0,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,900,-7,0,1016,-14,0,0 +2013,8,5,1,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,802,-7,0,930,-5,0,0 +2013,10,8,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1259,-10,0,1716,2,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,850,-1,0,1130,-3,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2150,15,1,2250,16,1,0 +2013,10,6,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1035,-9,0,1329,-22,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1345,26,1,1629,17,1,0 +2013,7,7,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,845,-1,0,1143,-24,0,0 +2013,9,18,3,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2000,75,1,2307,118,1,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-5,0,1525,-3,0,0 +2013,4,13,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1757,-8,0,1900,-17,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,31,1,1735,49,1,0 +2013,6,16,7,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1455,-3,0,1945,-16,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1835,-4,0,2032,-9,0,0 +2013,10,23,3,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,11,0,2124,11,0,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,61,1,2100,69,1,0 +2013,5,4,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,559,-5,0,652,-9,0,0 +2013,7,7,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,5,0,2317,9,0,0 +2013,4,16,2,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1326,4,0,1413,2,0,0 +2013,7,20,6,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,955,46,1,1145,44,1,0 +2013,5,30,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1408,9,0,1700,9,0,0 +2013,10,8,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1742,-6,0,2110,-12,0,0 +2013,10,9,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1959,-2,0,2201,8,0,0 +2013,4,19,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,8,0,1530,-1,0,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1720,68,1,2137,68,1,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,-2,0,1627,-7,0,0 +2013,5,16,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,-3,0,1730,0,0,0 +2013,5,15,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,-9,0,1920,-8,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1823,0,0,2119,-10,0,0 +2013,10,6,7,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1045,-7,0,1219,-28,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,15,1,1933,34,1,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-1,0,1650,-6,0,0 +2013,10,29,2,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1745,-4,0,2132,1,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,15,1,1402,12,0,0 +2013,5,25,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1410,19,1,1628,1,0,0 +2013,7,31,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1436,0,0,1645,1,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,2,0,1250,2,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-7,0,1617,-7,0,0 +2013,4,19,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,11,0,1807,-3,0,0 +2013,7,28,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-13,0,2124,-10,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1115,1,0,1500,-22,0,0 +2013,6,5,3,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1027,4,0,1328,-11,0,0 +2013,4,26,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1450,-4,0,1554,-4,0,0 +2013,9,3,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-4,0,1740,2,0,0 +2013,9,19,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1330,171,1,1435,259,1,0 +2013,8,2,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1742,68,1,1805,58,1,0 +2013,9,1,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-4,0,1344,-16,0,0 +2013,6,4,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1802,3,0,2017,3,0,0 +2013,5,1,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1900,21,1,2010,19,1,0 +2013,5,21,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,27,1,2129,42,1,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1500,37,1,2200,19,1,0 +2013,6,26,3,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1414,87,1,2245,108,1,0 +2013,10,6,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1445,1,0,0 +2013,8,18,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2130,25,1,2328,61,1,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,833,0,0,1030,-2,0,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,735,-1,0,1010,2,0,0 +2013,9,3,2,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1400,53,1,1545,50,1,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1135,-2,0,1315,-8,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,-1,0,1558,-21,0,0 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-5,0,1229,-7,0,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,-3,0,1345,-4,0,0 +2013,7,10,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,230,1,1928,222,1,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,910,-5,0,1034,-1,0,0 +2013,7,7,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,11,0,1010,0,0,0 +2013,8,26,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,-1,0,745,-7,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1458,-6,0,1624,-22,0,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1855,-2,0,2051,-9,0,0 +2013,6,18,2,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1025,4,0,1510,-11,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,15,1,1200,2,0,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1850,0,0,2025,1,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-1,0,1041,-20,0,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,2010,85,1,2325,94,1,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,206,1,2030,211,1,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1635,28,1,2045,28,1,0 +2013,4,22,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,0,0,1400,-22,0,0 +2013,9,11,3,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,39,0,0,501,11,0,0 +2013,10,30,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,2,0,1942,-6,0,0 +2013,5,7,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-6,0,1515,-13,0,0 +2013,6,17,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,-2,0,1155,0,0,0 +2013,8,6,2,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1905,0,0,2056,-16,0,0 +2013,7,24,3,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-4,0,1905,1,0,0 +2013,9,4,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1950,-5,0,2200,-36,0,0 +2013,4,29,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,830,-3,0,1242,6,0,0 +2013,8,20,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,905,39,1,1225,6,0,0 +2013,6,8,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,600,24,1,714,22,1,0 +2013,4,27,6,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,720,-5,0,845,-16,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,-4,0,2245,-19,0,0 +2013,6,24,1,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,30,1,2235,82,1,0 +2013,8,28,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,815,-24,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,-1,0,1605,4,0,0 +2013,8,13,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1615,72,1,1730,69,1,0 +2013,10,22,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-6,0,1652,-9,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1750,2,0,1942,-8,0,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,855,43,1,1030,32,1,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1830,52,1,2340,42,1,0 +2013,10,4,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1216,-3,0,1532,3,0,0 +2013,4,3,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1900,-6,0,2016,-28,0,0 +2013,7,11,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-7,0,654,6,0,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1020,0,0,1320,-3,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1407,17,1,1614,-2,0,0 +2013,9,29,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,-6,0,1652,2,0,0 +2013,6,27,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2105,0,0,2225,-2,0,0 +2013,7,5,5,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1711,-1,0,1827,12,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1222,-4,0,1423,-22,0,0 +2013,5,10,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,63,1,2039,186,1,0 +2013,4,1,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1630,-2,0,1918,-6,0,0 +2013,10,22,2,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-6,0,916,-12,0,0 +2013,6,10,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,102,1,5,104,1,0 +2013,7,23,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,625,0,0,1428,-14,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1000,-1,0,1248,4,0,0 +2013,4,8,1,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,23,1,1320,24,1,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,32,1,1720,11,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,-5,0,1254,-28,0,0 +2013,7,25,4,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1025,-4,0,1305,-17,0,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1115,25,1,1215,32,1,0 +2013,7,23,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1400,27,1,1605,9,0,0 +2013,9,18,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1334,-7,0,1727,-13,0,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-2,0,902,-13,0,0 +2013,7,14,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,73,1,2145,56,1,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1050,24,1,1515,6,0,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1825,18,1,1959,13,0,0 +2013,9,7,6,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1645,-4,0,1955,-8,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2209,7,0,2252,2,0,0 +2013,10,25,5,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1845,40,1,2150,22,1,0 +2013,4,9,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,0,0,1840,8,0,0 +2013,4,28,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2150,11,0,2345,4,0,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,0,0,830,5,0,0 +2013,7,20,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1546,1,0,1635,3,0,0 +2013,4,12,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1350,5,0,1520,3,0,0 +2013,9,20,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1134,164,1,1248,163,1,0 +2013,6,7,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,92,1,2048,159,1,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1900,15,1,2050,6,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,4,0,835,13,0,0 +2013,9,10,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,-1,0,1623,-5,0,0 +2013,4,11,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,34,1,1340,58,1,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,734,0,0,912,2,0,0 +2013,6,28,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,2,0,1255,9,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-5,0,1135,-19,0,0 +2013,5,8,3,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,633,-17,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,635,1,0,955,14,0,0 +2013,8,9,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,20,1,2135,18,1,0 +2013,9,29,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1540,12,0,1705,4,0,0 +2013,4,13,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,27,1,1418,35,1,0 +2013,6,5,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2110,12,0,2125,5,0,0 +2013,4,8,1,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,27,1,2153,35,1,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,4,0,2025,-9,0,0 +2013,5,11,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1100,-3,0,1105,-6,0,0 +2013,6,27,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1720,8,0,1815,6,0,0 +2013,7,6,6,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1830,-11,0,2044,-13,0,0 +2013,5,13,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1120,0,0,1716,-18,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,720,-4,0,925,3,0,0 +2013,7,24,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-13,0,1211,0,0,0 +2013,5,7,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2055,-9,0,2155,-16,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1000,0,0,1259,-7,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,10,0,1925,-18,0,0 +2013,10,10,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1611,-5,0,1702,-8,0,0 +2013,9,30,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2122,-6,0,510,-15,0,0 +2013,4,16,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-2,0,1100,-1,0,0 +2013,4,20,6,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,-4,0,1956,-21,0,0 +2013,6,8,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-4,0,2104,4,0,0 +2013,9,15,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,830,0,0,1030,-21,0,0 +2013,7,18,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,-2,0,1854,-3,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,0,0,1206,-32,0,0 +2013,8,5,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,916,-5,0,1035,-22,0,0 +2013,7,11,4,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2200,-3,0,550,2,0,0 +2013,9,29,7,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,916,-8,0,1037,0,0,0 +2013,7,8,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1301,18,1,1419,13,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,2,0,1805,14,0,0 +2013,4,3,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1255,1,0,1405,4,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,934,0,0,1207,-1,0,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1410,-5,0,1725,-19,0,0 +2013,6,4,2,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,730,-10,0,1031,-27,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-5,0,1735,-29,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,-3,0,1609,-10,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1715,-7,0,1952,-21,0,0 +2013,6,17,1,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,55,1,840,32,1,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,752,-3,0,1405,-16,0,0 +2013,6,9,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,645,-1,0,1507,-30,0,0 +2013,10,24,4,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,11,0,1710,-1,0,0 +2013,4,19,5,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1119,-7,0,1305,-23,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,0,,1915,0,1,1 +2013,8,5,1,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1934,73,1,2230,63,1,0 +2013,9,28,6,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-4,0,1634,-22,0,0 +2013,7,21,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2125,-4,0,2250,-4,0,0 +2013,4,5,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,800,-4,0,930,-19,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-1,0,1846,-10,0,0 +2013,7,12,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2020,50,1,2120,46,1,0 +2013,6,14,5,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1454,23,1,1535,10,0,0 +2013,8,15,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-7,0,1627,-11,0,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2140,114,1,2250,116,1,0 +2013,5,13,1,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1043,36,1,1245,33,1,0 +2013,10,5,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1840,-2,0,2046,-4,0,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,610,-8,0,845,-38,0,0 +2013,6,1,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1130,-6,0,2010,-4,0,0 +2013,6,26,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,147,1,2234,157,1,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1257,79,1,2140,69,1,0 +2013,7,23,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,45,1,2125,37,1,0 +2013,10,28,1,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1135,8,0,1255,15,1,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1935,-4,0,2255,-11,0,0 +2013,10,31,4,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,950,7,0,1730,-5,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-4,0,1307,12,0,0 +2013,6,26,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,13,0,950,28,1,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,745,-2,0,941,-22,0,0 +2013,9,17,2,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-1,0,1228,9,0,0 +2013,5,27,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,920,-10,0,1059,-1,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2130,-4,0,2245,17,1,0 +2013,7,24,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,30,1,2044,9,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,87,1,1905,87,1,0 +2013,7,14,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,815,2,0,930,-1,0,0 +2013,10,27,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,52,1,2205,22,1,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1311,-4,0,1620,-5,0,0 +2013,5,11,6,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,1830,22,1,2110,18,1,0 +2013,8,12,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1853,-10,0,2229,-24,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1521,-3,0,1819,-3,0,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1455,-1,0,1811,-1,0,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1035,6,0,1640,7,0,0 +2013,9,7,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-9,0,1155,-24,0,0 +2013,7,12,5,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,925,-2,0,1115,-1,0,0 +2013,10,30,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1750,2,0,1845,6,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,-1,0,2030,-15,0,0 +2013,10,25,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-2,0,628,-14,0,0 +2013,7,3,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1020,6,0,1325,10,0,0 +2013,6,28,5,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1330,-12,0,1555,-16,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1754,5,0,1929,8,0,0 +2013,6,17,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,600,-5,0,605,-5,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,6,0,2140,3,0,0 +2013,9,6,5,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1010,-8,0,1314,-21,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,955,14,0,1214,2,0,0 +2013,6,21,5,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1945,6,0,2130,-1,0,0 +2013,10,8,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1610,-6,0,1715,-18,0,0 +2013,5,13,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-8,0,1635,1,0,0 +2013,4,11,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1025,7,0,1130,18,1,0 +2013,5,20,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1155,-1,0,1449,12,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1203,1,0,1434,-16,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2035,4,0,2320,-3,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1812,46,1,2056,21,1,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1615,-2,0,1747,-20,0,0 +2013,5,3,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,94,1,1619,78,1,0 +2013,8,23,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1057,66,1,1354,60,1,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,818,-8,0,1152,-6,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,-4,0,1320,-11,0,0 +2013,8,11,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1205,19,1,1450,6,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,43,1,2112,32,1,0 +2013,8,30,5,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,725,-1,0,840,-24,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1950,6,0,2240,-3,0,0 +2013,7,21,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,-7,0,1825,-25,0,0 +2013,4,11,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1022,-10,0,1224,-28,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1025,3,0,1450,-3,0,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2122,14,0,602,-12,0,0 +2013,5,30,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,-1,0,2209,-17,0,0 +2013,7,7,7,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1005,3,0,1130,-5,0,0 +2013,4,25,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,725,-1,0,840,-12,0,0 +2013,4,19,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,835,15,1,1235,21,1,0 +2013,10,26,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,600,-3,0,720,-4,0,0 +2013,4,28,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,0,0,1635,11,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1325,0,0,1440,-5,0,0 +2013,9,28,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1425,-4,0,1610,-4,0,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1313,-5,0,1918,-8,0,0 +2013,4,19,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1633,30,1,1834,22,1,0 +2013,6,15,6,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1450,10,0,1632,-18,0,0 +2013,9,15,7,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,49,1,2255,34,1,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-4,0,1122,-6,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1519,5,0,1802,-6,0,0 +2013,5,22,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1904,8,0,2249,8,0,0 +2013,4,13,6,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,1,0,800,-6,0,0 +2013,8,6,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,0,,2110,0,1,1 +2013,8,15,4,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1656,24,1,1852,15,1,0 +2013,10,16,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1803,-4,0,1959,0,0,0 +2013,8,23,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,1,0,2030,-8,0,0 +2013,9,10,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,735,-9,0,905,-15,0,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1245,58,1,1820,46,1,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1325,20,1,1520,26,1,0 +2013,4,15,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1745,6,0,1910,-1,0,0 +2013,9,19,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,-2,0,1659,-9,0,0 +2013,5,7,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1425,-2,0,1512,-7,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1145,16,1,1310,5,0,0 +2013,9,21,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-2,0,1053,5,0,0 +2013,4,17,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,0,,1940,0,1,1 +2013,10,10,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,4,0,1600,18,1,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-2,0,1234,-4,0,0 +2013,4,12,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,2115,-5,0,2245,0,0,0 +2013,9,17,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1636,-2,0,1856,-2,0,0 +2013,5,25,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-1,0,626,-16,0,0 +2013,6,30,7,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,12954,Long Beach Airport,Long Beach,CA,106,3,0,720,11,0,0 +2013,5,5,7,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1140,-6,0,1421,-12,0,0 +2013,10,2,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-1,0,1303,-32,0,0 +2013,5,29,3,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,8,0,2210,8,0,0 +2013,7,17,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,-5,0,1710,-18,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1635,8,0,1910,-8,0,0 +2013,7,19,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-13,0,2051,15,1,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,850,-3,0,1030,-13,0,0 +2013,6,29,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,-4,0,1505,-14,0,0 +2013,4,7,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-3,0,1943,-19,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1830,17,1,2340,21,1,0 +2013,6,2,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-1,0,1535,-5,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1010,7,0,1444,-13,0,0 +2013,8,10,6,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2225,-6,0,628,-10,0,0 +2013,7,31,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1850,-3,0,2100,-22,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1123,-5,0,1340,-17,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1500,-4,0,1600,-11,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2030,105,1,2240,95,1,0 +2013,10,3,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,605,-3,0,734,4,0,0 +2013,6,19,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1040,7,0,1254,0,0,0 +2013,5,7,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-3,0,2125,-12,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,-3,0,1508,9,0,0 +2013,10,30,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-8,0,1550,13,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,0,0,1629,33,1,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1405,-1,0,1802,-33,0,0 +2013,10,2,3,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1627,-2,0,1905,3,0,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,700,11,0,1004,47,1,0 +2013,8,3,6,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,-5,0,820,-10,0,0 +2013,5,21,2,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1945,-5,0,2120,5,0,0 +2013,10,8,2,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1635,-1,0,1815,-20,0,0 +2013,8,13,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1737,49,1,2020,66,1,0 +2013,10,20,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,730,-4,0,825,0,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1900,50,1,2227,79,1,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,915,4,0,1140,7,0,0 +2013,10,30,3,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1132,-5,0,1355,-1,0,0 +2013,8,6,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1328,-1,0,1400,4,0,0 +2013,7,29,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,39,1,1831,17,1,0 +2013,4,7,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,550,-2,0,1203,-6,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,650,0,0,935,-11,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1830,32,1,2235,33,1,0 +2013,8,20,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1725,10,0,2045,-6,0,0 +2013,4,2,2,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1749,13,0,2103,-8,0,0 +2013,9,2,1,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1030,-7,0,1150,-12,0,0 +2013,4,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,-3,0,2247,-21,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,747,7,0,947,3,0,0 +2013,10,30,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,755,-5,0,935,2,0,0 +2013,7,8,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,725,3,0,859,5,0,0 +2013,5,10,5,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1100,0,,1452,0,1,1 +2013,7,11,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1824,32,1,2022,15,1,0 +2013,4,29,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1735,15,1,1955,-1,0,0 +2013,9,30,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,640,2,0,800,-17,0,0 +2013,6,30,7,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-7,0,2147,-21,0,0 +2013,10,11,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1115,10,0,1334,10,0,0 +2013,9,1,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1255,72,1,2136,60,1,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1950,-2,0,2352,-9,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,905,14,0,1420,18,1,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-7,0,1022,-10,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1359,-3,0,1539,5,0,0 +2013,10,18,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,0,0,1652,-5,0,0 +2013,7,29,1,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1038,0,0,1144,-6,0,0 +2013,4,28,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,-1,0,1818,-7,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1120,112,1,1320,113,1,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,8,0,5,-15,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,600,-5,0,735,-19,0,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1329,15,1,1811,-26,0,0 +2013,10,31,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1050,-2,0,1230,12,0,0 +2013,9,22,7,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,929,-8,0,1143,-18,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1549,-6,0,1825,-41,0,0 +2013,6,8,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-1,0,1705,0,0,0 +2013,6,22,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1131,-2,0,1331,-11,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1830,-8,0,2008,-18,0,0 +2013,8,16,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,-1,0,930,23,1,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2140,-3,0,2300,-9,0,0 +2013,4,13,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,-1,0,1425,-12,0,0 +2013,10,4,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,0,0,1726,-2,0,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,940,-2,0,1055,-15,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1145,10,0,1325,2,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,625,-3,0,825,0,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-5,0,1522,-5,0,0 +2013,10,29,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,620,-7,0,816,-10,0,0 +2013,4,17,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1848,107,1,2101,98,1,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,5,0,1125,6,0,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-6,0,2355,-11,0,0 +2013,6,15,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1356,-8,0,1700,-1,0,0 +2013,10,9,3,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-1,0,1205,-1,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,-1,0,1814,0,0,0 +2013,7,16,2,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1724,6,0,1935,0,0,0 +2013,8,23,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1716,9,0,1956,3,0,0 +2013,6,18,2,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2010,12,0,2240,4,0,0 +2013,7,5,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1015,-1,0,1135,-12,0,0 +2013,4,12,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1251,2,0,1539,4,0,0 +2013,9,13,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1455,-5,0,1630,-27,0,0 +2013,4,23,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1325,-3,0,1450,-5,0,0 +2013,4,17,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1711,14,0,1910,0,1,1 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,0,0,2221,-34,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2100,6,0,2325,10,0,0 +2013,7,20,6,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1302,381,1,1408,372,1,0 +2013,8,25,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1305,5,0,1430,1,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1955,7,0,2145,-15,0,0 +2013,6,22,6,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,911,-18,0,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1935,-5,0,2155,-10,0,0 +2013,9,7,6,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-8,0,925,-3,0,0 +2013,6,24,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1220,-7,0,1353,-1,0,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,615,1,0,710,-1,0,0 +2013,5,12,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1420,-3,0,1625,-1,0,0 +2013,4,24,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1140,-6,0,0 +2013,4,15,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,-6,0,1405,-44,0,0 +2013,6,20,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1216,12,0,1424,10,0,0 +2013,4,30,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-10,0,931,8,0,0 +2013,7,11,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-4,0,1917,-6,0,0 +2013,8,12,1,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1126,5,0,1426,24,1,0 +2013,7,27,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2305,-8,0,656,-17,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-2,0,1332,-12,0,0 +2013,10,7,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-8,0,2135,-16,0,0 +2013,6,26,3,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,107,1,1157,89,1,0 +2013,4,10,3,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,0,0,1125,-17,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1355,4,0,1925,8,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2050,2,0,2340,7,0,0 +2013,5,18,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-4,0,1845,-20,0,0 +2013,5,29,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2035,0,0,2045,-9,0,0 +2013,10,11,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1450,-6,0,1850,-14,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,44,1,2128,40,1,0 +2013,7,30,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,0,0,825,15,1,0 +2013,9,8,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1530,-1,0,1735,-11,0,0 +2013,8,10,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,17,1,1538,20,1,0 +2013,10,1,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-5,0,1325,-6,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1909,41,1,2128,48,1,0 +2013,5,11,6,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1100,-1,0,1705,20,1,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,839,0,0,1119,13,0,0 +2013,5,17,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2002,0,0,2130,-6,0,0 +2013,9,8,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,843,0,0,1403,-9,0,0 +2013,7,20,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,638,-4,0,758,-11,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1243,91,1,1602,74,1,0 +2013,5,18,6,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1032,-4,0,1557,3,0,0 +2013,8,7,3,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,724,-2,0,931,-18,0,0 +2013,8,2,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1255,57,1,1600,48,1,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2143,-3,0,2237,-7,0,0 +2013,5,24,5,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1900,113,1,2155,67,1,0 +2013,9,6,5,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,610,-4,0,732,-7,0,0 +2013,4,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,630,-3,0,945,7,0,0 +2013,8,5,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2130,31,1,2240,20,1,0 +2013,9,28,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,900,1,0,1217,-41,0,0 +2013,9,12,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1610,0,0,1713,42,1,0 +2013,8,3,6,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-7,0,1017,-16,0,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,37,1,1040,34,1,0 +2013,9,19,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1128,-4,0,1317,-9,0,0 +2013,5,22,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1651,42,1,2015,34,1,0 +2013,4,5,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,7,0,1610,0,0,0 +2013,8,21,3,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-7,0,851,4,0,0 +2013,5,5,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1415,-1,0,1545,-5,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2355,-4,0,723,0,0,0 +2013,5,16,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1936,17,1,2000,40,1,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1545,8,0,1813,27,1,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1205,3,0,1405,5,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,4,0,1020,2,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1925,-3,0,2310,-5,0,0 +2013,7,16,2,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1240,4,0,1610,6,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1837,-2,0,2157,-31,0,0 +2013,4,10,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1325,0,0,1420,-7,0,0 +2013,9,1,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-11,0,1747,-20,0,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1459,-6,0,1630,-20,0,0 +2013,7,1,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1407,-3,0,1559,13,0,0 +2013,7,15,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1609,-8,0,1954,-8,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,2012,21,1,2320,6,0,0 +2013,4,21,7,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,45,1,2130,10,0,0 +2013,10,25,5,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1215,12,0,1334,13,0,0 +2013,8,18,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1220,-1,0,2049,-16,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,8,0,1430,15,1,0 +2013,6,19,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,5,0,2300,7,0,0 +2013,7,3,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1405,-2,0,1515,-4,0,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,8,0,1505,11,0,0 +2013,7,2,2,EV,11618,Newark Liberty International,Newark,NJ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1629,88,1,1745,61,1,0 +2013,5,5,7,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1718,-8,0,1951,-17,0,0 +2013,7,10,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,930,-3,0,935,-2,0,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,-1,0,725,-1,0,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,1,0,2350,8,0,0 +2013,10,28,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2240,11,0,635,-21,0,0 +2013,7,19,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-8,0,940,-25,0,0 +2013,10,25,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1440,17,1,1739,35,1,0 +2013,9,13,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-1,0,840,-7,0,0 +2013,7,31,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1300,-3,0,1417,-18,0,0 +2013,7,12,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,26,1,2225,26,1,0 +2013,9,21,6,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1411,1,0,1535,-11,0,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1647,-6,0,1723,-12,0,0 +2013,7,2,2,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1425,21,1,1710,92,1,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,0,0,2342,-7,0,0 +2013,9,1,7,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1720,-3,0,2000,53,1,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,-3,0,2235,-19,0,0 +2013,5,30,4,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1922,-10,0,2159,-18,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,0,0,1835,-9,0,0 +2013,5,5,7,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,815,-10,0,943,-24,0,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,700,-3,0,1528,9,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1020,-1,0,1730,-3,0,0 +2013,5,15,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1500,33,1,1605,26,1,0 +2013,9,4,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,729,-11,0,0 +2013,6,10,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,1,0,609,-9,0,0 +2013,6,1,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,15,1,1410,6,0,0 +2013,10,25,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-7,0,820,1,0,0 +2013,6,25,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2201,16,1,2258,19,1,0 +2013,9,25,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1755,5,0,2053,-7,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,714,11,0,848,9,0,0 +2013,7,29,1,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,-2,0,920,-2,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,-2,0,1820,-8,0,0 +2013,8,24,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1510,-3,0,1757,-26,0,0 +2013,8,19,1,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1959,-7,0,2232,-13,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1005,5,0,1308,0,0,0 +2013,4,30,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1413,0,0,1600,-21,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,640,10,0,1025,-1,0,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2145,-5,0,2250,17,1,0 +2013,7,15,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1615,17,1,1726,29,1,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1541,59,1,1822,57,1,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-3,0,1810,-11,0,0 +2013,6,6,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-11,0,1844,-8,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1540,6,0,1821,31,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1505,23,1,1720,3,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2040,-4,0,2218,-26,0,0 +2013,8,25,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,14,0,1555,17,1,0 +2013,9,6,5,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,925,-12,0,1201,-39,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-5,0,1410,-6,0,0 +2013,8,27,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1540,-5,0,1646,-16,0,0 +2013,4,16,2,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1930,0,0,2045,0,0,0 +2013,5,13,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-6,0,1109,-8,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,625,-3,0,740,-7,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,905,-11,0,1252,-25,0,0 +2013,5,18,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1045,12,0,1205,-1,0,0 +2013,4,12,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-3,0,1022,-8,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,715,-3,0,856,-12,0,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1220,-1,0,1920,-25,0,0 +2013,9,2,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1559,-1,0,1839,8,0,0 +2013,9,12,4,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1820,156,1,2109,190,1,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1900,2,0,2039,5,0,0 +2013,4,24,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,2,0,2045,-14,0,0 +2013,5,17,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-5,0,1620,-15,0,0 +2013,5,1,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-2,0,818,-12,0,0 +2013,6,19,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-2,0,900,0,0,0 +2013,10,12,6,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,710,-4,0,725,-8,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,11,0,1841,-3,0,0 +2013,4,19,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1701,29,1,1843,21,1,0 +2013,4,29,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,4,0,1853,1,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2001,-5,0,2100,-4,0,0 +2013,6,18,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,720,13,0,1127,-5,0,0 +2013,9,17,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2110,1,0,2235,5,0,0 +2013,9,20,5,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2056,-2,0,2205,-1,0,0 +2013,7,28,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,640,-2,0,753,-9,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,625,22,1,853,4,0,0 +2013,7,20,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,-2,0,1430,-9,0,0 +2013,6,17,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,14,0,1905,7,0,0 +2013,9,29,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1045,18,1,1150,15,1,0 +2013,7,13,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,-6,0,1550,-4,0,0 +2013,8,10,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1721,-11,0,1828,-16,0,0 +2013,8,7,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,12,0,1919,38,1,0 +2013,8,30,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-3,0,1855,-10,0,0 +2013,8,16,5,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-4,0,928,-17,0,0 +2013,5,17,5,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1104,-5,0,1414,-23,0,0 +2013,5,24,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1352,4,0,1649,3,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,12,0,2003,-11,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1505,108,1,1600,154,1,0 +2013,8,21,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,800,-13,0,1050,-14,0,0 +2013,4,3,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,732,-4,0,815,-7,0,0 +2013,4,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1010,-7,0,1215,-18,0,0 +2013,6,17,1,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1335,14,0,1929,9,0,0 +2013,10,30,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-9,0,1304,-11,0,0 +2013,9,26,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,6,0,854,12,0,0 +2013,4,11,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,925,4,0,0 +2013,9,8,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2055,30,1,2220,24,1,0 +2013,4,18,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1058,-1,0,1228,-11,0,0 +2013,10,10,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,1,0,2025,-4,0,0 +2013,7,9,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,932,-4,0,1750,1,0,0 +2013,4,22,1,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1435,53,1,1615,47,1,0 +2013,7,17,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1415,1,0,1530,-6,0,0 +2013,8,17,6,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1340,-5,0,1615,-23,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,1,0,1620,20,1,0 +2013,5,3,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1402,-1,0,1955,21,1,0 +2013,7,8,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-4,0,705,-6,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1310,35,1,2155,23,1,0 +2013,10,17,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1827,-1,0,2105,-2,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1130,5,0,1435,-4,0,0 +2013,6,30,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1947,5,0,2107,6,0,0 +2013,4,11,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,725,2,0,850,-4,0,0 +2013,5,6,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1514,6,0,1612,4,0,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,715,8,0,1050,2,0,0 +2013,4,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,845,10,0,1020,-2,0,0 +2013,6,17,1,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1134,4,0,1346,2,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,47,1,1355,38,1,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-3,0,922,-6,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,-2,0,2010,-25,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1405,111,1,1750,139,1,0 +2013,8,12,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,1,0,904,11,0,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1300,2,0,1415,2,0,0 +2013,6,7,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2115,95,1,2235,90,1,0 +2013,7,7,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1122,3,0,1420,19,1,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1420,-1,0,1620,10,0,0 +2013,7,16,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1555,-27,0,0 +2013,10,13,7,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1345,-2,0,1915,-22,0,0 +2013,4,27,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1137,-1,0,1340,-3,0,0 +2013,6,28,5,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-1,0,1820,-3,0,0 +2013,7,10,3,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,226,1,2012,235,1,0 +2013,6,19,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1050,6,0,0 +2013,7,15,1,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,955,15,1,1445,13,0,0 +2013,6,28,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,18,1,1915,22,1,0 +2013,6,12,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,630,-1,0,720,-1,0,0 +2013,5,16,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,820,-2,0,920,-4,0,0 +2013,10,7,1,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1811,32,1,2130,13,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1255,6,0,1430,-10,0,0 +2013,5,24,5,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-2,0,2218,-22,0,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-4,0,2141,-9,0,0 +2013,7,3,3,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,910,0,0,1255,-15,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1040,73,1,1410,75,1,0 +2013,7,3,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1758,-8,0,1927,-3,0,0 +2013,4,22,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-4,0,1016,-18,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,20,12,0,620,-11,0,0 +2013,10,30,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-6,0,1520,-19,0,0 +2013,4,5,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,3,0,2105,-6,0,0 +2013,9,30,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1930,5,0,2005,-15,0,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,6,0,1505,-13,0,0 +2013,8,2,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-2,0,1645,-9,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2020,-2,0,2115,0,0,0 +2013,8,4,7,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,650,-1,0,825,14,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,46,1,2117,33,1,0 +2013,9,20,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1515,-13,0,1831,-27,0,0 +2013,7,5,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-3,0,1607,-6,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1924,0,0,2201,1,0,0 +2013,6,18,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,720,-7,0,1204,-14,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1840,-3,0,10,-7,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2245,1,0,2335,3,0,0 +2013,9,1,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1405,-23,0,1516,-28,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1323,2,0,1455,-9,0,0 +2013,8,6,2,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-10,0,2000,-2,0,0 +2013,9,27,5,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,0,0,1950,-19,0,0 +2013,7,28,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1150,4,0,1847,2,0,0 +2013,4,16,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,2021,-6,0,2330,-8,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1940,4,0,2320,-18,0,0 +2013,9,30,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,96,1,944,82,1,0 +2013,10,8,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,753,-7,0,1012,-30,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1435,7,0,1645,4,0,0 +2013,5,5,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1210,2,0,1330,-12,0,0 +2013,6,16,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1835,31,1,1939,28,1,0 +2013,6,13,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1120,387,1,1220,458,1,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,17,1,1646,4,0,0 +2013,7,29,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,5,0,1917,5,0,0 +2013,5,17,5,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1930,-5,0,2236,-18,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1155,-3,0,1318,-13,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1210,0,,1425,0,1,1 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1455,16,1,1605,9,0,0 +2013,9,12,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,912,5,0,1026,5,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,625,29,1,920,41,1,0 +2013,7,9,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-7,0,1250,-21,0,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-3,0,1248,-4,0,0 +2013,6,16,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1525,23,1,1640,19,1,0 +2013,9,21,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,13,0,1405,6,0,0 +2013,5,4,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1450,-1,0,2249,0,0,0 +2013,9,22,7,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1300,-7,0,2129,-2,0,0 +2013,9,23,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-3,0,835,-15,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1020,-2,0,1315,-16,0,0 +2013,10,5,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,4,0,815,-5,0,0 +2013,6,4,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,-9,0,1949,-8,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,3,0,2344,18,1,0 +2013,10,1,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1223,-14,0,0 +2013,4,21,7,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1843,-6,0,1943,-15,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1355,53,1,1915,60,1,0 +2013,5,29,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1715,14,0,1823,21,1,0 +2013,10,10,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1102,118,1,1929,102,1,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1103,0,0,1414,6,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1840,-1,0,2110,-10,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1418,-11,0,0 +2013,9,9,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-3,0,1411,2,0,0 +2013,5,22,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,13,0,2200,8,0,0 +2013,5,14,2,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1130,-13,0,1233,-27,0,0 +2013,10,26,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,5,0,1507,-2,0,0 +2013,6,28,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1617,3,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1011,-4,0,1406,-22,0,0 +2013,9,11,3,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,825,-6,0,1113,-8,0,0 +2013,6,26,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1230,2,0,1451,-9,0,0 +2013,7,9,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1929,59,1,2233,80,1,0 +2013,5,11,6,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1539,24,1,1810,11,0,0 +2013,9,24,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1459,-6,0,1814,-5,0,0 +2013,10,22,2,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1755,15,1,2052,0,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2241,15,1,18,-1,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1540,6,0,1705,-2,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,602,-3,0,1212,-4,0,0 +2013,7,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1148,38,1,1444,28,1,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,855,2,0,0 +2013,4,25,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1455,72,1,2245,66,1,0 +2013,5,7,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1602,-8,0,1832,-7,0,0 +2013,6,17,1,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,-1,0,1944,4,0,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1025,-5,0,1329,-4,0,0 +2013,5,11,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,900,-11,0,1050,-7,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,851,-1,0,0 +2013,8,29,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-8,0,715,-9,0,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1045,8,0,1205,3,0,0 +2013,6,12,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,7,0,1300,-4,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2200,26,1,2305,37,1,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1245,25,1,1455,5,0,0 +2013,5,25,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,-4,0,901,-16,0,0 +2013,6,26,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,20,1,2200,35,1,0 +2013,9,11,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1302,-15,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,-2,0,1517,9,0,0 +2013,6,28,5,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1823,0,,2140,0,1,1 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1319,10,0,1519,1,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1630,-4,0,1825,-27,0,0 +2013,6,20,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,615,28,1,941,22,1,0 +2013,10,9,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,27,1,1514,22,1,0 +2013,7,30,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,1,0,1525,0,0,0 +2013,7,15,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1730,-6,0,1941,9,0,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1402,-5,0,1607,12,0,0 +2013,7,20,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1730,-6,0,2042,-30,0,0 +2013,4,28,7,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1615,63,1,1805,53,1,0 +2013,8,23,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,10,0,2005,-8,0,0 +2013,7,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1130,3,0,1655,-14,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,1,0,1545,-1,0,0 +2013,8,25,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-7,0,1401,-18,0,0 +2013,4,14,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1855,102,1,2130,113,1,0 +2013,6,2,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,835,-9,0,941,-11,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,825,-1,0,1045,18,1,0 +2013,7,2,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-8,0,1451,-5,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-3,0,849,-5,0,0 +2013,8,3,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,95,1,1741,66,1,0 +2013,8,7,3,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-6,0,945,3,0,0 +2013,4,22,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1217,39,1,1455,60,1,0 +2013,5,9,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,7,0,2234,11,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1720,117,1,1948,112,1,0 +2013,9,4,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-9,0,858,-17,0,0 +2013,10,12,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-2,0,1015,3,0,0 +2013,7,22,1,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1953,29,1,2101,32,1,0 +2013,5,29,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,756,-23,0,0 +2013,4,27,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,70,1,1435,57,1,0 +2013,4,1,1,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,630,-4,0,709,1,0,0 +2013,7,24,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,6,0,1825,3,0,0 +2013,9,2,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-7,0,1250,4,0,0 +2013,7,22,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1455,12,0,1800,4,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1255,4,0,1422,-6,0,0 +2013,10,9,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,705,-8,0,910,8,0,0 +2013,10,12,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,932,-6,0,0 +2013,6,2,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,0,0,1519,0,0,0 +2013,5,8,3,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1011,-2,0,1536,-2,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-8,0,818,-17,0,0 +2013,8,25,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,710,-3,0,930,-22,0,0 +2013,5,20,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1303,-10,0,1428,-2,0,0 +2013,9,18,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-6,0,720,-36,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,915,-4,0,1510,-8,0,0 +2013,6,3,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,17,1,1200,7,0,0 +2013,4,8,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,830,-4,0,0 +2013,4,25,4,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1405,-1,0,1641,-11,0,0 +2013,8,28,3,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,436,1,1919,399,1,0 +2013,6,30,7,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1819,176,1,2046,138,1,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,950,10,0,1345,32,1,0 +2013,9,22,7,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1608,2,0,2053,-1,0,0 +2013,6,7,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-10,0,1420,-5,0,0 +2013,9,5,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,849,-3,0,1021,-9,0,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,843,3,0,958,11,0,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,13,0,1334,0,0,0 +2013,5,30,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,900,-2,0,1115,-28,0,0 +2013,9,7,6,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1117,47,1,1214,48,1,0 +2013,5,8,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-11,0,1041,-16,0,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,79,1,2320,72,1,0 +2013,4,5,5,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1216,-10,0,1404,-25,0,0 +2013,4,5,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-6,0,956,-1,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1030,-5,0,1107,-7,0,0 +2013,10,5,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,824,-4,0,0 +2013,5,19,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1205,-2,0,1325,-7,0,0 +2013,9,4,3,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1400,-1,0,1619,4,0,0 +2013,4,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,635,-3,0,950,18,1,0 +2013,6,10,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,805,16,1,850,5,0,0 +2013,5,8,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1115,-2,0,1300,-5,0,0 +2013,6,9,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,1,0,2107,-8,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-4,0,905,-24,0,0 +2013,10,1,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-4,0,1225,4,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,1,0,2016,13,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,33,1,1240,28,1,0 +2013,9,18,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,127,1,2359,122,1,0 +2013,10,21,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1715,9,0,1830,1,0,0 +2013,9,15,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1651,0,0,2100,15,1,0 +2013,5,11,6,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1105,23,1,1700,31,1,0 +2013,9,3,2,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-5,0,1005,-18,0,0 +2013,5,4,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1800,-4,0,2055,-2,0,0 +2013,5,19,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,732,-4,0,0 +2013,4,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,18,1,2310,2,0,0 +2013,7,28,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-5,0,1003,-25,0,0 +2013,6,25,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1025,1,0,1120,-10,0,0 +2013,8,8,4,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1030,-8,0,1330,-1,0,0 +2013,8,7,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,810,-2,0,950,15,1,0 +2013,10,13,7,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1754,-3,0,2046,-15,0,0 +2013,9,10,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-5,0,1925,-11,0,0 +2013,9,14,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,758,-3,0,0 +2013,7,24,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,-4,0,1959,15,1,0 +2013,4,3,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,0,0,1345,1,0,0 +2013,9,27,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-6,0,628,-18,0,0 +2013,8,5,1,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,0,0,1615,1,0,0 +2013,4,23,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,605,-2,0,730,-5,0,0 +2013,6,15,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1340,-5,0,1507,-9,0,0 +2013,4,23,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1935,41,1,2050,37,1,0 +2013,4,21,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,-3,0,1225,-5,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,915,1,0,1049,3,0,0 +2013,10,10,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2025,12,0,2145,5,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2305,129,1,1,118,1,0 +2013,4,2,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1500,0,0,1600,13,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1750,15,1,2022,18,1,0 +2013,5,18,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,605,-7,0,754,-15,0,0 +2013,6,30,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-3,0,1227,7,0,0 +2013,6,6,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-7,0,2055,-3,0,0 +2013,9,8,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1759,-8,0,1918,-16,0,0 +2013,6,5,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1205,11,0,1530,-2,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,12,0,2335,25,1,0 +2013,4,7,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1700,-3,0,1854,-2,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,-4,0,1845,-14,0,0 +2013,8,5,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,34,1,722,27,1,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-1,0,1237,-10,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2050,26,1,2230,26,1,0 +2013,10,9,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,848,-4,0,1040,-18,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,24,1,1345,29,1,0 +2013,10,7,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,937,4,0,1129,1,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,-2,0,1025,-7,0,0 +2013,4,24,3,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1642,18,1,2110,-14,0,0 +2013,4,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,0,0,820,-1,0,0 +2013,6,19,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,850,-6,0,0 +2013,7,18,4,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2329,60,1,757,65,1,0 +2013,6,3,1,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,4,0,1600,-5,0,0 +2013,7,25,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-1,0,2016,-12,0,0 +2013,9,23,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1355,17,1,1650,12,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1235,0,0,1450,-2,0,0 +2013,4,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1346,1,0,1753,15,1,0 +2013,7,26,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1050,-1,0,1235,-13,0,0 +2013,6,20,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-5,0,1820,-10,0,0 +2013,7,19,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-3,0,2250,14,0,0 +2013,9,13,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1234,-3,0,1334,0,0,0 +2013,9,18,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1745,0,0,2110,-6,0,0 +2013,10,19,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1140,7,0,1255,10,0,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1716,27,1,2308,12,0,0 +2013,10,8,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1735,-2,0,1841,11,0,0 +2013,4,17,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,-4,0,2128,-16,0,0 +2013,6,1,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,925,-1,0,1045,2,0,0 +2013,5,24,5,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,837,23,1,1013,0,0,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2055,-5,0,2255,-26,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1650,-3,0,1805,-32,0,0 +2013,9,1,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1640,106,1,1752,110,1,0 +2013,5,7,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-3,0,2104,-19,0,0 +2013,6,13,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1418,75,1,2242,60,1,0 +2013,8,18,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-10,0,847,-5,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1430,0,0,1710,-6,0,0 +2013,10,24,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2049,3,0,2318,15,1,0 +2013,8,8,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,630,3,0,1225,0,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1857,221,1,2211,210,1,0 +2013,9,9,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,1,0,1440,-4,0,0 +2013,4,26,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1115,9,0,1325,2,0,0 +2013,7,27,6,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,1,0,2152,8,0,0 +2013,10,18,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,39,1,920,30,1,0 +2013,5,15,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,840,-2,0,935,-2,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,20,1,915,-2,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1205,11,0,1610,8,0,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1755,45,1,2335,37,1,0 +2013,7,16,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-4,0,810,1,0,0 +2013,4,8,1,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1335,-6,0,1525,-14,0,0 +2013,5,2,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,43,1,1850,36,1,0 +2013,6,28,5,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1107,121,1,1349,123,1,0 +2013,4,9,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,900,-6,0,935,7,0,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1550,-12,0,1835,-13,0,0 +2013,6,1,6,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1357,-15,0,2214,-21,0,0 +2013,7,8,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,3,0,846,5,0,0 +2013,8,2,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,0,,1555,0,1,1 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,52,1,1520,42,1,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,-1,0,2347,-7,0,0 +2013,9,9,1,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,835,-6,0,1150,-14,0,0 +2013,8,18,7,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1625,66,1,1928,52,1,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,910,-6,0,1045,-19,0,0 +2013,7,11,4,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1748,19,1,2155,-4,0,0 +2013,6,26,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-7,0,1652,17,1,0 +2013,5,12,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1310,-4,0,1420,-11,0,0 +2013,4,22,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1104,6,0,1930,-5,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,-3,0,915,-4,0,0 +2013,9,29,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1510,-1,0,1804,1,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1705,21,1,1815,13,0,0 +2013,10,20,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1535,1,0,1715,-5,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,930,17,1,1145,12,0,0 +2013,8,31,6,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1111,-8,0,1304,-14,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1128,-4,0,1253,-12,0,0 +2013,5,29,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,620,6,0,753,-15,0,0 +2013,4,13,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,646,-8,0,812,-10,0,0 +2013,6,25,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,755,-7,0,1047,-12,0,0 +2013,9,5,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-5,0,1702,6,0,0 +2013,8,31,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1346,-4,0,1516,-7,0,0 +2013,6,29,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1042,37,1,1908,36,1,0 +2013,4,14,7,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1816,187,1,2118,213,1,0 +2013,6,10,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1655,45,1,2005,31,1,0 +2013,5,3,5,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,630,215,1,709,221,1,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2059,51,1,2228,51,1,0 +2013,10,18,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1414,53,1,1730,34,1,0 +2013,7,22,1,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1650,-1,0,1846,-8,0,0 +2013,7,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-8,0,1326,-9,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-3,0,903,-5,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1045,-3,0,1145,-12,0,0 +2013,6,8,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,-6,0,1505,17,1,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,16,1,1600,4,0,0 +2013,5,14,2,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,-10,0,1642,-16,0,0 +2013,4,11,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2312,-9,0,743,1,0,0 +2013,10,31,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1200,-4,0,1304,5,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1930,4,0,2211,-31,0,0 +2013,7,10,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,13,0,2000,10,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2005,2,0,2045,5,0,0 +2013,10,18,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1428,-16,0,0 +2013,8,13,2,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1230,11,0,1441,6,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1140,-4,0,1339,-19,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1935,31,1,55,24,1,0 +2013,8,3,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,2,0,1540,1,0,0 +2013,10,21,1,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,925,8,0,1800,-1,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,34,1,2255,30,1,0 +2013,7,21,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,2010,103,1,2020,122,1,0 +2013,6,16,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,910,-2,0,1105,-10,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1905,26,1,2240,29,1,0 +2013,8,15,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,645,-10,0,940,-14,0,0 +2013,10,27,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1938,-4,0,2044,-5,0,0 +2013,4,3,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-7,0,1910,-9,0,0 +2013,10,5,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1730,1,0,1913,-13,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1240,29,1,1800,14,0,0 +2013,4,21,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-1,0,1415,-17,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1320,5,0,1545,-6,0,0 +2013,6,30,7,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,710,0,0,1111,4,0,0 +2013,7,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1931,-3,0,2231,-7,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,740,22,1,955,30,1,0 +2013,8,25,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-5,0,1024,-8,0,0 +2013,9,28,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,735,6,0,950,-16,0,0 +2013,8,28,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1350,5,0,1401,4,0,0 +2013,10,27,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1615,116,1,1740,108,1,0 +2013,10,11,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1524,-9,0,0 +2013,6,17,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1750,0,0,1857,-13,0,0 +2013,4,27,6,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1300,-1,0,1523,2,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1938,-4,0,115,-28,0,0 +2013,8,3,6,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,908,-2,0,1400,8,0,0 +2013,8,4,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,-7,0,1320,-2,0,0 +2013,8,18,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1455,-2,0,1812,1,0,0 +2013,8,27,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,744,-6,0,820,-4,0,0 +2013,7,25,4,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,2128,17,1,2308,7,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2105,32,1,2255,35,1,0 +2013,5,18,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1829,-4,0,2020,-11,0,0 +2013,8,22,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,20,1,2004,31,1,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2030,2,0,5,10,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1310,-1,0,1504,15,1,0 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,7,0,1805,0,0,0 +2013,10,20,7,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,-2,0,1130,-4,0,0 +2013,5,5,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1435,-2,0,1600,-23,0,0 +2013,7,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1045,13,0,1650,-5,0,0 +2013,4,27,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1700,0,0,1829,7,0,0 +2013,10,17,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-13,0,1705,5,0,0 +2013,6,5,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,45,1,1610,36,1,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2055,-2,0,2259,-12,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1545,-4,0,1825,58,1,0 +2013,5,22,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-1,0,2202,-4,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1630,-1,0,1759,-23,0,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,2105,7,0,2340,3,0,0 +2013,8,27,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-2,0,1830,-14,0,0 +2013,8,2,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1305,138,1,1440,135,1,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,9,0,1911,17,1,0 +2013,7,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1200,5,0,1315,-11,0,0 +2013,6,29,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1325,52,1,1604,57,1,0 +2013,9,10,2,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,945,-2,0,1031,-11,0,0 +2013,6,9,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,74,1,1925,95,1,0 +2013,7,9,2,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1822,4,0,2033,2,0,0 +2013,8,19,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1150,-3,0,1505,-15,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1238,-1,0,1431,-4,0,0 +2013,5,8,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,735,6,0,820,7,0,0 +2013,9,20,5,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,925,0,0,1305,-9,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1815,101,1,2340,93,1,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1235,18,1,1520,15,1,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1950,20,1,2155,9,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,20,1,800,19,1,0 +2013,7,31,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,715,-3,0,950,-6,0,0 +2013,8,11,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1830,17,1,1936,3,0,0 +2013,8,18,7,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,7,0,2030,-1,0,0 +2013,6,2,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1310,31,1,2155,19,1,0 +2013,5,21,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1934,40,1,2037,54,1,0 +2013,9,21,6,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1745,31,1,1910,26,1,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1601,22,1,1825,26,1,0 +2013,7,17,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,2,0,1800,1,0,0 +2013,10,13,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,-7,0,735,-24,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,-5,0,1325,4,0,0 +2013,9,6,5,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1440,-3,0,1545,4,0,0 +2013,8,20,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,1946,40,1,451,11,0,0 +2013,8,23,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-10,0,2013,3,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1905,-4,0,2230,-8,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1355,-5,0,1729,-13,0,0 +2013,7,9,2,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,725,0,0,845,-23,0,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,-2,0,1149,-5,0,0 +2013,4,5,5,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,845,-2,0,1001,-4,0,0 +2013,4,18,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1255,-10,0,1546,-19,0,0 +2013,8,13,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1341,100,1,1734,81,1,0 +2013,10,23,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-2,0,1650,-12,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,920,-26,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1905,2,0,2240,0,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,-6,0,1719,-6,0,0 +2013,7,9,2,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1310,-2,0,1610,-15,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,33,1,1711,59,1,0 +2013,4,14,7,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,912,-3,0,1010,-13,0,0 +2013,8,22,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1555,1,0,1659,-2,0,0 +2013,6,2,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2125,27,1,2225,15,1,0 +2013,8,20,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1736,0,0,2005,1,0,0 +2013,5,8,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,18,1,2018,38,1,0 +2013,4,18,4,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2000,-10,0,2257,-7,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,900,-6,0,1341,-17,0,0 +2013,8,9,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,831,22,1,0 +2013,9,13,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-7,0,1040,-17,0,0 +2013,10,8,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-4,0,915,5,0,0 +2013,7,1,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,520,-1,0,642,5,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,-1,0,2304,-1,0,0 +2013,9,20,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1943,11,0,2055,20,1,0 +2013,7,18,4,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1535,0,,1634,0,1,1 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,-2,0,1445,-28,0,0 +2013,5,11,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-4,0,1844,-8,0,0 +2013,10,25,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-4,0,1130,-11,0,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-5,0,1330,-7,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1859,127,1,2020,115,1,0 +2013,9,8,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,830,-15,0,0 +2013,7,3,3,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-2,0,2145,9,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1432,2,0,1559,-8,0,0 +2013,6,28,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1345,15,1,1659,3,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1645,5,0,2000,17,1,0 +2013,9,4,3,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-7,0,1035,-12,0,0 +2013,9,7,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,2,0,1906,3,0,0 +2013,7,16,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1711,-6,0,1850,-13,0,0 +2013,7,3,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1255,3,0,1541,20,1,0 +2013,7,19,5,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1805,26,1,2040,86,1,0 +2013,5,25,6,UA,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1922,7,0,2052,-3,0,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2210,2,0,2355,-12,0,0 +2013,9,8,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,-3,0,1611,-11,0,0 +2013,10,16,3,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1635,-6,0,1815,-26,0,0 +2013,10,25,5,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1408,-1,0,1703,-2,0,0 +2013,9,3,2,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,4,0,2110,-12,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,815,1,0,1145,-5,0,0 +2013,6,10,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,17,1,1121,19,1,0 +2013,8,2,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,915,0,0,1644,-13,0,0 +2013,7,13,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1015,8,0,1313,11,0,0 +2013,5,21,2,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-4,0,1856,-26,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-3,0,1434,4,0,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,0,,1850,0,1,1 +2013,5,1,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,600,-3,0,940,-3,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1520,-4,0,1820,-17,0,0 +2013,4,4,4,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,900,-3,0,1145,-3,0,0 +2013,6,19,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1015,0,0,1126,-4,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,905,4,0,1146,-1,0,0 +2013,6,27,4,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1410,18,1,1810,15,1,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,-5,0,2255,4,0,0 +2013,4,4,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,-5,0,1405,-19,0,0 +2013,7,23,2,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1041,-2,0,1244,8,0,0 +2013,6,2,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1131,-2,0,1359,-13,0,0 +2013,4,26,5,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,-5,0,1033,7,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,10,0,1200,7,0,0 +2013,6,21,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,1,0,1922,4,0,0 +2013,5,1,3,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,959,1,0,1259,-5,0,0 +2013,7,5,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-5,0,1914,-4,0,0 +2013,4,15,1,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1618,-4,0,1733,-12,0,0 +2013,5,13,1,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1420,8,0,1920,20,1,0 +2013,5,15,3,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,630,8,0,1230,-13,0,0 +2013,10,22,2,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1450,-4,0,1700,-10,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,-4,0,1808,-12,0,0 +2013,10,21,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,7,0,813,-5,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2054,-9,0,2225,-16,0,0 +2013,8,7,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,13,0,1345,13,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,0,,40,0,1,1 +2013,9,13,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-9,0,1310,-8,0,0 +2013,10,30,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,955,-9,0,1140,-13,0,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,0,,2125,0,1,1 +2013,5,13,1,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1725,-6,0,0 +2013,10,11,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,5,0,2135,7,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,946,-2,0,1038,-5,0,0 +2013,9,8,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1541,-6,0,1835,-12,0,0 +2013,8,16,5,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-5,0,1239,-16,0,0 +2013,7,17,3,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-7,0,1923,-3,0,0 +2013,7,30,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1624,22,1,1819,26,1,0 +2013,5,28,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-9,0,1408,-11,0,0 +2013,8,28,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1430,3,0,1520,-2,0,0 +2013,10,18,5,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-7,0,854,1,0,0 +2013,5,3,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,15,1,845,-7,0,0 +2013,4,15,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,-2,0,1930,-6,0,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1805,0,0,1930,-13,0,0 +2013,7,13,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-7,0,1358,77,1,0 +2013,7,19,5,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1134,-2,0,1455,15,1,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1420,-1,0,1600,-3,0,0 +2013,5,22,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-2,0,913,9,0,0 +2013,7,27,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,2,0,2310,-4,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2050,3,0,2225,2,0,0 +2013,5,10,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-3,0,641,-4,0,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1358,-4,0,1424,-1,0,0 +2013,5,23,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1050,42,1,1354,26,1,0 +2013,8,10,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,-4,0,1235,-20,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,35,1,1330,16,1,0 +2013,5,1,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-5,0,700,9,0,0 +2013,6,17,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-7,0,935,-12,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,134,1,2139,158,1,0 +2013,5,3,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,924,24,1,1216,36,1,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,745,2,0,900,7,0,0 +2013,4,2,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,720,-3,0,1109,-16,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1306,-5,0,1503,-11,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1355,-2,0,2228,12,0,0 +2013,6,11,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,909,12,0,1210,13,0,0 +2013,6,16,7,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1455,18,1,1800,22,1,0 +2013,6,6,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,13,0,1045,7,0,0 +2013,6,4,2,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-7,0,1722,-16,0,0 +2013,9,5,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1355,-6,0,1646,-13,0,0 +2013,8,15,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1530,-4,0,1625,-6,0,0 +2013,4,16,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1515,54,1,1605,48,1,0 +2013,9,29,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1630,34,1,1830,21,1,0 +2013,7,2,2,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1329,51,1,1925,76,1,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-4,0,1008,-19,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,747,32,1,925,34,1,0 +2013,8,31,6,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1436,-2,0,1651,-11,0,0 +2013,10,4,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,735,-8,0,855,-6,0,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1426,-6,0,1635,-18,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1250,2,0,1505,9,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-4,0,2159,18,1,0 +2013,4,2,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1228,-7,0,1407,-12,0,0 +2013,5,3,5,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1855,-10,0,2240,-8,0,0 +2013,7,5,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,-6,0,1526,-24,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1307,-3,0,1605,-6,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-5,0,1809,-2,0,0 +2013,4,10,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1730,-11,0,1911,-7,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1550,-2,0,1810,10,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1825,57,1,1940,61,1,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1310,6,0,1446,18,1,0 +2013,6,29,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,0,0,833,-6,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,7,0,1450,21,1,0 +2013,10,14,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,739,-4,0,845,-3,0,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1255,17,1,1606,-4,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1359,-6,0,1511,-14,0,0 +2013,7,27,6,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,10,0,2047,-6,0,0 +2013,9,20,5,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1530,10,0,1745,15,1,0 +2013,7,6,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1655,2,0,1745,-2,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,925,1,0,1210,-5,0,0 +2013,4,20,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1420,-12,0,1450,-29,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1725,-5,0,1833,-10,0,0 +2013,10,10,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-10,0,859,-10,0,0 +2013,6,17,1,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1210,-6,0,1545,-21,0,0 +2013,9,25,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1005,0,0,1130,-2,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2040,33,1,2205,24,1,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-2,0,855,-8,0,0 +2013,7,17,3,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1805,41,1,2259,66,1,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-6,0,1429,-14,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,925,-3,0,1255,-11,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-4,0,1155,-12,0,0 +2013,6,1,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,716,-2,0,959,-29,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,845,-6,0,1356,-9,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-2,0,1911,8,0,0 +2013,8,29,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,13,0,1625,7,0,0 +2013,4,16,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-3,0,1410,-3,0,0 +2013,10,9,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,-4,0,1852,-12,0,0 +2013,5,10,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-4,0,1747,-3,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2210,-2,0,2300,-6,0,0 +2013,10,27,7,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1230,-6,0,1432,-10,0,0 +2013,5,27,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1647,-6,0,1948,-27,0,0 +2013,7,23,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,0,0,1407,-12,0,0 +2013,6,25,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,815,32,1,930,34,1,0 +2013,7,25,4,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-3,0,2023,4,0,0 +2013,7,31,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,1,0,755,-22,0,0 +2013,7,4,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,515,-2,0,856,-22,0,0 +2013,10,5,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,800,-3,0,1100,-11,0,0 +2013,10,22,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1315,-6,0,2052,-14,0,0 +2013,4,22,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,734,-9,0,0 +2013,7,12,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1050,30,1,1220,18,1,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,732,-3,0,916,-2,0,0 +2013,10,2,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,545,-10,0,630,-11,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1939,-3,0,2115,-5,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,950,-6,0,1105,-6,0,0 +2013,4,4,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1311,-7,0,1612,-20,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,-5,0,1120,-8,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2050,0,0,22,10,0,0 +2013,9,27,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1851,4,0,2102,-17,0,0 +2013,8,4,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2115,12,0,131,-6,0,0 +2013,8,24,6,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,814,-6,0,1409,-3,0,0 +2013,4,20,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,650,-7,0,810,-18,0,0 +2013,8,2,5,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1735,45,1,1915,61,1,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-8,0,2118,-9,0,0 +2013,4,24,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1716,-3,0,1955,-9,0,0 +2013,7,12,5,OO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-1,0,1620,-4,0,0 +2013,4,10,3,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,81,1,1315,81,1,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1003,11,0,1559,-2,0,0 +2013,10,18,5,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1304,0,0,2131,-20,0,0 +2013,5,6,1,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,4,0,923,-2,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2005,62,1,2057,67,1,0 +2013,10,26,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1125,-6,0,1420,-6,0,0 +2013,5,20,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1520,61,1,1628,52,1,0 +2013,4,2,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1945,9,0,2240,14,0,0 +2013,7,26,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2155,5,0,105,1,0,0 +2013,8,21,3,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1005,-3,0,1310,-11,0,0 +2013,7,15,1,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2003,17,1,2243,1,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,27,1,2125,24,1,0 +2013,6,26,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,835,-12,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-4,0,943,-10,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,8,0,1310,-13,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1620,-1,0,1747,-4,0,0 +2013,7,25,4,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,0,0,1757,10,0,0 +2013,5,26,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1600,-4,0,1805,-9,0,0 +2013,8,5,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1800,61,1,1950,46,1,0 +2013,10,23,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1508,-3,0,2119,-17,0,0 +2013,10,2,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,900,5,0,1015,7,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1915,51,1,2030,42,1,0 +2013,4,19,5,EV,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1348,224,1,1855,223,1,0 +2013,4,24,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1855,18,1,2215,15,1,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,-4,0,1737,9,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1840,1,0,2106,-16,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,945,4,0,1757,7,0,0 +2013,8,7,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1710,13,0,1830,8,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1046,0,0,1150,-11,0,0 +2013,6,11,2,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1425,2,0,1725,4,0,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,13,0,1942,-10,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,831,9,0,950,3,0,0 +2013,5,10,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-3,0,654,1,0,0 +2013,10,12,6,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,-2,0,25,-16,0,0 +2013,8,22,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-9,0,804,-9,0,0 +2013,7,18,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,83,1,1815,85,1,0 +2013,4,21,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2109,7,0,525,0,0,0 +2013,9,4,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1851,-7,0,1941,-10,0,0 +2013,10,1,2,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,3,0,2115,-8,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,12,0,1850,17,1,0 +2013,7,16,2,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1341,4,0,1450,-6,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1420,12,0,1945,9,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,-2,0,1430,-13,0,0 +2013,9,30,1,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1531,12,0,1951,13,0,0 +2013,6,8,6,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1430,4,0,1640,2,0,0 +2013,10,17,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1541,-3,0,1855,-11,0,0 +2013,8,26,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1807,-10,0,2015,-30,0,0 +2013,5,5,7,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,2130,4,0,2240,10,0,0 +2013,9,6,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,1252,-1,0,0 +2013,6,11,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1448,109,1,1740,89,1,0 +2013,8,15,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,843,-2,0,908,22,1,0 +2013,5,30,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,520,18,1,810,4,0,0 +2013,4,5,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-8,0,1130,-29,0,0 +2013,10,15,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-7,0,2135,12,0,0 +2013,5,8,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,0,0,1000,-14,0,0 +2013,7,11,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1434,-2,0,1610,-4,0,0 +2013,9,16,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1205,0,0,1302,0,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1505,-3,0,1600,-5,0,0 +2013,10,4,5,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,722,-2,0,922,-13,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2008,2,0,2256,-2,0,0 +2013,4,2,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1310,56,1,1605,34,1,0 +2013,4,22,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,-10,0,1943,5,0,0 +2013,6,14,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,0,,1955,0,1,1 +2013,7,9,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,7,0,1412,7,0,0 +2013,4,4,4,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1845,-5,0,22,-12,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2118,-7,0,2359,-34,0,0 +2013,9,22,7,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,11,0,745,11,0,0 +2013,10,8,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-10,0,1600,-19,0,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1255,27,1,1541,3,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,925,3,0,1159,-5,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,1,0,2030,-13,0,0 +2013,10,31,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1200,-5,0,1300,-16,0,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1040,-2,0,1235,-9,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1430,-1,0,1630,3,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,4,0,1540,-9,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,18,1,1325,17,1,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-3,0,1130,-6,0,0 +2013,5,15,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,640,-4,0,740,-6,0,0 +2013,5,5,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1620,41,1,1925,35,1,0 +2013,5,3,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2140,-9,0,540,-7,0,0 +2013,7,19,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1051,-7,0,1333,-9,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1624,0,0,1907,-14,0,0 +2013,4,12,5,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,39,1,1220,28,1,0 +2013,6,23,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1054,-6,0,1309,-9,0,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1430,31,1,1550,29,1,0 +2013,5,3,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-4,0,1014,-25,0,0 +2013,4,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1859,-4,0,2228,0,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,110,1,2215,136,1,0 +2013,10,31,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,8,0,1740,5,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,-1,0,2229,1,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,740,-5,0,1132,-2,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-4,0,1125,-15,0,0 +2013,5,14,2,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,830,0,0,1128,-31,0,0 +2013,10,1,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1645,-9,0,1825,-14,0,0 +2013,7,9,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1748,114,1,2035,131,1,0 +2013,8,11,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,630,-2,0,800,-5,0,0 +2013,7,12,5,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,-6,0,1530,-13,0,0 +2013,5,28,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,-9,0,2020,-13,0,0 +2013,6,27,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,-3,0,935,-8,0,0 +2013,4,26,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,-3,0,1543,-8,0,0 +2013,10,14,1,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1140,-7,0,1410,6,0,0 +2013,5,24,5,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,620,0,0,755,-8,0,0 +2013,4,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,715,-10,0,1246,-39,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,0,0,2217,0,0,0 +2013,8,12,1,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1525,1,0,1720,-12,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2218,-5,0,2347,-5,0,0 +2013,9,7,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1555,38,1,1810,22,1,0 +2013,7,18,4,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,9,0,1857,-1,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,2,0,1201,-6,0,0 +2013,7,20,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,11,0,1506,4,0,0 +2013,7,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1024,-5,0,1416,-20,0,0 +2013,6,24,1,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1930,0,,2112,0,1,1 +2013,9,20,5,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,8,0,2105,-15,0,0 +2013,7,18,4,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1510,-2,0,1900,-10,0,0 +2013,7,15,1,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1708,18,1,1810,14,0,0 +2013,6,7,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-9,0,1016,-3,0,0 +2013,4,25,4,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1240,4,0,2034,7,0,0 +2013,4,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2011,34,1,2120,26,1,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1245,149,1,1435,125,1,0 +2013,9,11,3,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,-6,0,1922,22,1,0 +2013,9,28,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-10,0,833,-29,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,23,1,2050,23,1,0 +2013,4,3,3,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1639,-1,0,1756,-4,0,0 +2013,4,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,-5,0,1938,-4,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,-6,0,2210,-8,0,0 +2013,5,30,4,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,3,0,557,0,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1115,-8,0,1340,-4,0,0 +2013,6,28,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1811,21,1,2015,3,0,0 +2013,10,8,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-2,0,1634,-6,0,0 +2013,7,15,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1448,1,0,1655,4,0,0 +2013,8,3,6,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,0,0,548,-1,0,0 +2013,5,13,1,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1405,-2,0,1630,-7,0,0 +2013,10,10,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1610,7,0,1720,8,0,0 +2013,5,24,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,-2,0,1208,-2,0,0 +2013,6,2,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,603,-4,0,1429,-17,0,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1750,-4,0,2036,-20,0,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1820,1,0,1910,1,0,0 +2013,6,2,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,840,-2,0,1000,-7,0,0 +2013,8,18,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-5,0,1358,5,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2210,76,1,2330,94,1,0 +2013,7,8,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2100,-3,0,2220,13,0,0 +2013,7,10,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,24,1,930,60,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1301,10,0,1434,15,1,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-5,0,1230,-8,0,0 +2013,5,16,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,0,0,1735,-4,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1230,-2,0,1800,8,0,0 +2013,8,12,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,848,-3,0,913,-4,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1643,8,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1556,58,1,1925,69,1,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1552,8,0,1840,-8,0,0 +2013,7,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,730,3,0,852,1,0,0 +2013,9,30,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2012,-2,0,2134,-2,0,0 +2013,7,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,1,0,1654,-16,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-1,0,1725,-17,0,0 +2013,7,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,837,-9,0,901,-12,0,0 +2013,4,14,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1111,0,0,1244,34,1,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1450,-5,0,1604,-17,0,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,710,-6,0,926,4,0,0 +2013,7,5,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1841,26,1,2030,46,1,0 +2013,7,28,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1225,-1,0,1400,3,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,2,0,1201,4,0,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,825,28,1,1000,15,1,0 +2013,7,8,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1848,66,1,2057,50,1,0 +2013,9,13,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1930,25,1,2046,23,1,0 +2013,5,7,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,1,0,840,-6,0,0 +2013,6,21,5,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,-4,0,2216,-19,0,0 +2013,8,16,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-4,0,1641,4,0,0 +2013,5,30,4,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-8,0,2229,17,1,0 +2013,5,13,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,0,0,1245,-17,0,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,52,1,945,54,1,0 +2013,9,22,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12451,Jacksonville International,Jacksonville,FL,1000,27,1,1357,14,0,0 +2013,6,5,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1610,-7,0,1640,-11,0,0 +2013,7,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1201,-3,0,1420,-4,0,0 +2013,6,18,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1515,0,0,1815,-8,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1615,17,1,2120,15,1,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-7,0,1620,-13,0,0 +2013,9,22,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,1,0,2041,-4,0,0 +2013,9,22,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1247,-5,0,1637,-15,0,0 +2013,5,4,6,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,0,0,711,-3,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,-3,0,700,-24,0,0 +2013,10,24,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-8,0,1743,10,0,0 +2013,9,5,4,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,936,25,1,1230,14,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,30,1,2103,21,1,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1615,13,0,1720,9,0,0 +2013,6,27,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,0,0,1345,-7,0,0 +2013,7,7,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,-6,0,936,-18,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,5,0,1350,8,0,0 +2013,9,27,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1625,23,1,1715,11,0,0 +2013,5,20,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,814,-2,0,1035,6,0,0 +2013,8,15,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1030,-14,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-8,0,909,-14,0,0 +2013,5,15,3,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1625,48,1,1910,37,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1850,24,1,2025,19,1,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-4,0,1412,-12,0,0 +2013,10,7,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1910,99,1,2149,88,1,0 +2013,10,14,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1050,1,0,1110,5,0,0 +2013,9,23,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1054,1,0,1309,-10,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,915,28,1,1250,33,1,0 +2013,9,19,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,805,-5,0,1412,42,1,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1940,10,0,2045,4,0,0 +2013,7,5,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-10,0,1230,-8,0,0 +2013,5,24,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,-3,0,2000,-31,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,-2,0,1914,-22,0,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1130,3,0,1245,4,0,0 +2013,4,26,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-5,0,1245,-3,0,0 +2013,7,1,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,0,0,1555,-6,0,0 +2013,4,19,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1420,-4,0,1623,6,0,0 +2013,9,4,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1352,-4,0,1946,-11,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,-5,0,1807,-6,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1049,-4,0,1221,-24,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,46,1,2213,5,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,0,0,44,40,1,0 +2013,6,14,5,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1206,-6,0,1322,-6,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,700,-5,0,815,-21,0,0 +2013,8,14,3,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,942,-5,0,1134,-7,0,0 +2013,8,16,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1319,21,1,2055,16,1,0 +2013,7,30,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1018,-2,0,1150,-7,0,0 +2013,7,15,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,650,-3,0,720,-17,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1020,80,1,1215,56,1,0 +2013,10,31,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1751,-5,0,1825,1,0,0 +2013,8,8,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,-8,0,1610,-11,0,0 +2013,6,26,3,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,7,0,1305,5,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1030,116,1,1350,109,1,0 +2013,4,24,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,815,-2,0,940,-9,0,0 +2013,4,18,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1542,0,,1855,0,1,1 +2013,4,10,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1615,-4,0,1806,5,0,0 +2013,8,17,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1656,-10,0,1804,-6,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1100,16,1,1337,8,0,0 +2013,6,17,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-8,0,1200,-5,0,0 +2013,10,22,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1510,-2,0,1719,0,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2020,-1,0,2225,-10,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,711,-2,0,946,-13,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,6,0,1809,-5,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,-6,0,1240,-13,0,0 +2013,8,5,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-1,0,1621,-10,0,0 +2013,8,5,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,700,-3,0,1310,-37,0,0 +2013,6,19,3,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,4,0,1620,5,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,-1,0,1918,2,0,0 +2013,4,5,5,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1300,21,1,1622,9,0,0 +2013,9,12,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,841,-3,0,1038,-19,0,0 +2013,7,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1212,12,0,1347,-2,0,0 +2013,4,15,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1015,-5,0,1325,8,0,0 +2013,5,2,4,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1103,18,1,1447,11,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-3,0,1939,-11,0,0 +2013,6,4,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1740,11,0,1940,17,1,0 +2013,8,22,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,40,1,1624,25,1,0 +2013,10,23,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,-6,0,921,12,0,0 +2013,5,3,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-2,0,1040,-4,0,0 +2013,6,9,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,856,3,0,1024,32,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2235,90,1,2335,77,1,0 +2013,6,24,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1807,0,0,1955,-4,0,0 +2013,5,10,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,910,-2,0,1030,1,0,0 +2013,5,26,7,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-3,0,1017,-4,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,735,-2,0,927,-5,0,0 +2013,8,28,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-3,0,1936,-17,0,0 +2013,4,1,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,4,0,1510,5,0,0 +2013,5,27,1,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-9,0,1011,-2,0,0 +2013,6,30,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-9,0,1115,-15,0,0 +2013,8,30,5,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-5,0,858,-17,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1008,-6,0,1220,-10,0,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,20,129,1,528,124,1,0 +2013,7,20,6,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1234,-6,0,2048,-7,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1750,-2,0,1900,-14,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,144,1,2215,147,1,0 +2013,9,2,1,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2051,-3,0,2358,20,1,0 +2013,8,17,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-12,0,1010,-6,0,0 +2013,4,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-5,0,1210,-16,0,0 +2013,7,20,6,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,11,0,1045,-9,0,0 +2013,9,20,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,-4,0,1525,-20,0,0 +2013,10,1,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1014,-8,0,1452,-24,0,0 +2013,5,4,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1210,2,0,1611,3,0,0 +2013,6,9,7,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-6,0,920,-10,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-1,0,1442,-6,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,5,0,2235,-9,0,0 +2013,7,2,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1350,-4,0,1505,-8,0,0 +2013,8,29,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-10,0,1750,-15,0,0 +2013,5,23,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,3,0,2051,-3,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2300,30,1,27,29,1,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,945,-2,0,1535,0,0,0 +2013,7,26,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,-5,0,1130,-9,0,0 +2013,5,22,3,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1930,32,1,2215,61,1,0 +2013,7,25,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1845,16,1,2047,30,1,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2000,-2,0,2130,-17,0,0 +2013,4,6,6,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,824,-3,0,1014,-29,0,0 +2013,7,29,1,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1946,-7,0,2049,-4,0,0 +2013,7,12,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-3,0,1341,-6,0,0 +2013,7,25,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,0,,1311,0,1,1 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1205,-4,0,1319,-12,0,0 +2013,4,1,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1505,-5,0,1800,-18,0,0 +2013,7,30,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,31,1,1540,26,1,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,-4,0,1221,-7,0,0 +2013,4,9,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1700,-1,0,1805,-6,0,0 +2013,7,1,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,25,1,930,32,1,0 +2013,4,28,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1150,-7,0,1305,-18,0,0 +2013,4,18,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,-2,0,624,-9,0,0 +2013,4,28,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,727,-1,0,909,-3,0,0 +2013,8,11,7,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,740,-8,0,1602,-7,0,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,29,1,2015,22,1,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1032,-8,0,1605,-11,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1127,-2,0,1252,-16,0,0 +2013,7,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1225,-2,0,1335,-10,0,0 +2013,7,15,1,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,-7,0,1140,0,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1105,13,0,1330,14,0,0 +2013,4,8,1,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1515,-2,0,1720,-10,0,0 +2013,10,17,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-1,0,1802,-8,0,0 +2013,9,23,1,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1150,33,1,1505,15,1,0 +2013,5,19,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,14,0,1625,-1,0,0 +2013,6,10,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2130,-5,0,2250,-12,0,0 +2013,4,14,7,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1625,6,0,1810,22,1,0 +2013,10,26,6,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1120,1,0,1345,-18,0,0 +2013,9,27,5,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1552,-4,0,1736,-19,0,0 +2013,7,25,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1545,26,1,1700,26,1,0 +2013,5,15,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-4,0,1200,-16,0,0 +2013,9,24,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,-2,0,1055,7,0,0 +2013,6,13,4,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-2,0,2330,-12,0,0 +2013,5,7,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1010,-1,0,1145,-14,0,0 +2013,7,21,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,179,1,2059,164,1,0 +2013,4,2,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2045,5,0,2354,0,0,0 +2013,5,13,1,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1000,-3,0,1208,-20,0,0 +2013,4,11,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,645,0,0,940,-16,0,0 +2013,4,4,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-5,0,1834,-17,0,0 +2013,6,27,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,530,2,0,1115,-3,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,840,4,0,1105,-19,0,0 +2013,6,4,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,-4,0,850,1,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1020,-1,0,1136,-7,0,0 +2013,6,29,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2018,-2,0,2118,0,0,0 +2013,10,18,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,20,1,2125,4,0,0 +2013,7,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2016,-4,0,2346,-21,0,0 +2013,10,22,2,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1840,-5,0,2010,-4,0,0 +2013,7,9,2,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1450,0,0,1745,-11,0,0 +2013,7,20,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1707,-8,0,1754,-4,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1000,9,0,1715,-2,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1340,13,0,1403,5,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1627,5,0,1805,2,0,0 +2013,4,21,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,609,0,0,725,-27,0,0 +2013,10,18,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1822,-10,0,2109,-16,0,0 +2013,10,9,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1953,108,1,2109,113,1,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,-2,0,1814,-21,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2125,7,0,2300,-1,0,0 +2013,5,16,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,0,0,1938,15,1,0 +2013,8,1,4,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,745,-4,0,1025,-5,0,0 +2013,4,4,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,4,0,956,13,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1450,0,0,1653,-5,0,0 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,855,23,1,1125,15,1,0 +2013,7,7,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,-6,0,1350,-6,0,0 +2013,5,9,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,650,-4,0,808,-30,0,0 +2013,5,17,5,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2111,-6,0,509,-15,0,0 +2013,8,9,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,137,1,1550,136,1,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,905,-1,0,1424,22,1,0 +2013,4,24,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,655,146,1,955,129,1,0 +2013,7,10,3,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1710,12,0,1838,10,0,0 +2013,8,30,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,65,1,1540,82,1,0 +2013,8,26,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,-8,0,1720,7,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1035,-3,0,1146,12,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-2,0,2030,-8,0,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1150,-1,0,1505,-7,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,31,1,1940,18,1,0 +2013,10,14,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,710,1,0,825,-9,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,0,0,929,6,0,0 +2013,7,13,6,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,42,1,1430,52,1,0 +2013,5,4,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,5,0,1515,6,0,0 +2013,10,15,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,802,-3,0,1331,-2,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1730,2,0,55,-5,0,0 +2013,6,3,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1940,78,1,2113,78,1,0 +2013,5,10,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1740,30,1,2025,27,1,0 +2013,7,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1441,-4,0,1650,-8,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1230,3,0,1605,-6,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-6,0,1519,-2,0,0 +2013,6,4,2,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,2,0,1936,-18,0,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1611,19,1,1842,21,1,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,803,19,1,1041,6,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,94,1,2246,113,1,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1312,0,0,1411,-9,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,820,13,0,1015,15,1,0 +2013,7,5,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,7,0,1455,-6,0,0 +2013,6,29,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-7,0,1345,-7,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1944,-5,0,2039,-5,0,0 +2013,7,4,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2245,42,1,135,27,1,0 +2013,8,14,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1052,-6,0,1214,-9,0,0 +2013,8,26,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,-6,0,1235,-12,0,0 +2013,4,29,1,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1645,-5,0,1902,-30,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,31,1,1835,22,1,0 +2013,10,9,3,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-4,0,912,11,0,0 +2013,10,4,5,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1257,1,0,1414,-16,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,2,0,1336,-10,0,0 +2013,7,15,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,40,1,2230,33,1,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,-6,0,1535,-20,0,0 +2013,8,14,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1309,-3,0,1705,-6,0,0 +2013,9,1,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,935,7,0,1130,-4,0,0 +2013,9,3,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,838,-2,0,0 +2013,4,5,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,-6,0,1831,-8,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,35,1,1500,29,1,0 +2013,5,26,7,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1110,9,0,1240,1,0,0 +2013,4,7,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,837,-6,0,1015,-9,0,0 +2013,9,17,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,5,0,815,21,1,0 +2013,10,25,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,3,0,2025,-1,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2005,1,0,2200,23,1,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1500,9,0,1615,2,0,0 +2013,4,24,3,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1104,-1,0,1450,-21,0,0 +2013,4,18,4,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1000,6,0,1105,-4,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2040,2,0,2300,-8,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1314,20,1,1509,12,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1214,8,0,1348,-12,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-6,0,1353,-11,0,0 +2013,5,12,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1800,52,1,1915,48,1,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1225,6,0,1705,2,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1310,8,0,1550,27,1,0 +2013,8,22,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,45,1,2230,23,1,0 +2013,8,15,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,3,0,1925,-9,0,0 +2013,8,25,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1310,21,1,1603,14,0,0 +2013,6,2,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1726,8,0,1910,39,1,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1930,-2,0,5,-19,0,0 +2013,10,20,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1325,1,0,1455,-11,0,0 +2013,5,22,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,0,0,1710,-8,0,0 +2013,5,27,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-10,0,1750,-5,0,0 +2013,7,19,5,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,0,0,1212,-4,0,0 +2013,6,15,6,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,925,0,0,1210,19,1,0 +2013,10,22,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-4,0,1525,-3,0,0 +2013,8,2,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-8,0,735,-14,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1320,-3,0,1450,-17,0,0 +2013,7,27,6,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1117,16,1,1333,82,1,0 +2013,7,7,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1125,0,0,1300,-12,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,838,-9,0,939,-8,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1040,15,1,1300,48,1,0 +2013,5,19,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,755,-5,0,1032,-9,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,920,53,1,1030,51,1,0 +2013,9,18,3,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,-5,0,2248,-53,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,-3,0,923,-20,0,0 +2013,6,5,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1940,-3,0,2113,-11,0,0 +2013,9,27,5,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,0,0,1054,9,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,4,0,1440,-4,0,0 +2013,8,22,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1240,-2,0,1554,-6,0,0 +2013,9,17,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,605,-7,0,718,-22,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1100,18,1,1250,12,0,0 +2013,4,10,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1455,20,1,1615,5,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,1,0,735,28,1,0 +2013,10,12,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,545,4,0,737,-16,0,0 +2013,8,25,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,4,0,1816,-20,0,0 +2013,8,30,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1735,35,1,1825,56,1,0 +2013,8,22,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1330,6,0,1335,15,1,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1555,-6,0,1655,-13,0,0 +2013,5,19,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,0,0,2055,12,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1802,110,1,2010,145,1,0 +2013,5,30,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1810,10,0,2125,-4,0,0 +2013,9,18,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,-6,0,815,-20,0,0 +2013,4,22,1,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1955,11,0,2145,22,1,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1050,-2,0,1150,-1,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1540,0,0,1745,-21,0,0 +2013,9,20,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,923,10,0,1233,12,0,0 +2013,6,19,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,-2,0,903,-21,0,0 +2013,4,6,6,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2015,-4,0,2145,-1,0,0 +2013,7,4,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,1414,-5,0,0 +2013,9,6,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1720,58,1,1845,56,1,0 +2013,4,13,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-7,0,1756,14,0,0 +2013,10,28,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,8,0,1740,-6,0,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2140,-5,0,2249,-22,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,6,0,1645,14,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,824,0,0,1014,-4,0,0 +2013,5,17,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1630,-4,0,2323,-8,0,0 +2013,5,17,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,6,0,1125,-1,0,0 +2013,5,14,2,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1930,42,1,2117,20,1,0 +2013,9,6,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,800,-7,0,1112,-23,0,0 +2013,9,9,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-4,0,2057,-5,0,0 +2013,8,16,5,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,725,-4,0,850,1,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1431,-3,0,1710,-18,0,0 +2013,5,28,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1602,-9,0,1837,-9,0,0 +2013,9,16,1,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1805,29,1,2120,17,1,0 +2013,7,11,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,11,0,1917,24,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,15,1,2119,61,1,0 +2013,6,2,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1839,12,0,2045,-1,0,0 +2013,10,11,5,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1315,93,1,1355,80,1,0 +2013,6,25,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-7,0,1040,-20,0,0 +2013,6,3,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,-2,0,2305,-16,0,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,800,-2,0,1050,18,1,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1040,12,0,1250,14,0,0 +2013,8,14,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,13,0,1706,13,0,0 +2013,7,10,3,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,2029,102,1,2115,101,1,0 +2013,8,21,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,940,-5,0,1027,-12,0,0 +2013,8,3,6,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1406,-6,0,2011,-28,0,0 +2013,8,4,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1942,7,0,2102,10,0,0 +2013,7,20,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2340,-4,0,750,-3,0,0 +2013,6,11,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1115,24,1,1405,19,1,0 +2013,4,16,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,9,0,1257,3,0,0 +2013,4,24,3,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-8,0,918,-11,0,0 +2013,5,14,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1410,1,0,1642,19,1,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,5,0,1130,-7,0,0 +2013,9,23,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-9,0,1205,-13,0,0 +2013,8,8,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1510,19,1,1825,31,1,0 +2013,8,19,1,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1730,26,1,1910,10,0,0 +2013,7,14,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2054,57,1,2258,43,1,0 +2013,9,20,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1835,81,1,2000,80,1,0 +2013,10,9,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1100,-22,0,0 +2013,6,18,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1145,3,0,1240,4,0,0 +2013,10,26,6,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1210,0,0,1426,-3,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,6,0,1835,2,0,0 +2013,4,22,1,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1915,-10,0,2035,-15,0,0 +2013,5,25,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1210,-1,0,1340,4,0,0 +2013,6,14,5,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-5,0,1635,-16,0,0 +2013,10,16,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1831,-4,0,2105,-16,0,0 +2013,5,30,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,625,-2,0,725,-3,0,0 +2013,9,30,1,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1949,4,0,2025,3,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1025,41,1,1500,35,1,0 +2013,7,31,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-3,0,1230,-9,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,1,0,1500,-14,0,0 +2013,6,23,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1705,25,1,1820,25,1,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,47,1,2008,37,1,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,0,0,2104,-18,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2050,4,0,2210,0,0,0 +2013,8,18,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1040,0,0,1855,-18,0,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1900,-9,0,2233,-29,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,844,-2,0,1033,-16,0,0 +2013,7,4,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,-4,0,1250,-15,0,0 +2013,7,17,3,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1805,4,0,1840,-2,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2358,130,1,817,142,1,0 +2013,6,21,5,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2147,-4,0,555,-24,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1255,-4,0,1355,-5,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,29,1,2115,36,1,0 +2013,8,7,3,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1420,0,0,2227,-15,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1121,-4,0,1233,-23,0,0 +2013,7,12,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1615,9,0,1800,34,1,0 +2013,9,26,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-8,0,2132,-9,0,0 +2013,10,2,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2045,-6,0,2318,-5,0,0 +2013,8,21,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1320,-5,0,2155,-6,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2115,12,0,2310,3,0,0 +2013,7,12,5,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,0,0,1600,-2,0,0 +2013,6,27,4,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,12,0,1410,10,0,0 +2013,10,23,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1533,8,0,1824,5,0,0 +2013,10,6,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1641,2,0,0 +2013,5,20,1,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1153,-2,0,1420,-9,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2140,46,1,2255,41,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1400,1,0,1515,-2,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1738,0,0,1859,-29,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1257,-7,0,1722,-9,0,0 +2013,7,8,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,700,-1,0,820,-6,0,0 +2013,9,22,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-3,0,1252,12,0,0 +2013,7,31,3,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1035,-8,0,1405,-20,0,0 +2013,7,13,6,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-4,0,855,-36,0,0 +2013,7,14,7,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,33,1,2035,17,1,0 +2013,10,21,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,35,1,915,13,0,0 +2013,6,7,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,-2,0,910,8,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,835,1,0,940,-3,0,0 +2013,6,7,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1151,10,0,1350,-1,0,0 +2013,4,16,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-5,0,1025,-8,0,0 +2013,6,9,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-9,0,1748,-10,0,0 +2013,7,9,2,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1655,21,1,1825,63,1,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2110,0,,2353,0,1,1 +2013,7,21,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,67,1,1730,141,1,0 +2013,4,26,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1050,8,0,1215,1,0,0 +2013,7,28,7,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1735,7,0,2025,-1,0,0 +2013,10,8,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,-2,0,1700,-16,0,0 +2013,7,1,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1300,-5,0,1550,-8,0,0 +2013,8,10,6,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,-1,0,2006,-18,0,0 +2013,5,26,7,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1640,0,0,1800,-12,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,900,-3,0,1030,9,0,0 +2013,9,19,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,30,1,2135,111,1,0 +2013,5,8,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1810,-8,0,2005,-12,0,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,-4,0,1245,-27,0,0 +2013,10,1,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1251,-6,0,1413,-18,0,0 +2013,10,11,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1716,-1,0,1840,-7,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,-1,0,2235,13,0,0 +2013,5,18,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,13,0,1320,13,0,0 +2013,6,16,7,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-6,0,1345,-17,0,0 +2013,5,15,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1515,-1,0,1755,-2,0,0 +2013,9,23,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1115,44,1,1220,32,1,0 +2013,4,14,7,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,810,7,0,0 +2013,8,10,6,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1910,3,0,2132,-15,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1127,-1,0,1326,-15,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1815,8,0,2300,7,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,530,2,0,810,-12,0,0 +2013,4,12,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1009,79,1,1230,65,1,0 +2013,4,16,2,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,0,0,1810,-16,0,0 +2013,8,15,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1150,-2,0,1241,15,1,0 +2013,5,9,4,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,3,0,2145,-1,0,0 +2013,7,10,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,58,1,2220,47,1,0 +2013,10,21,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-7,0,2237,-10,0,0 +2013,6,11,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1140,-5,0,1730,-3,0,0 +2013,4,6,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,700,-3,0,939,-13,0,0 +2013,5,5,7,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1400,95,1,2235,111,1,0 +2013,10,7,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1924,-12,0,2046,-16,0,0 +2013,9,20,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,750,0,0,1010,27,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1022,-2,0,1212,2,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2142,-3,0,2250,-14,0,0 +2013,9,4,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1555,-4,0,1755,-16,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1939,2,0,2215,-8,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,-2,0,1520,-11,0,0 +2013,7,31,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,11,0,1847,12,0,0 +2013,5,14,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-6,0,1120,-43,0,0 +2013,10,30,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1430,-1,0,1715,-32,0,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,6,0,1739,13,0,0 +2013,7,16,2,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1458,9,0,1600,-5,0,0 +2013,8,9,5,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,930,41,1,1745,40,1,0 +2013,10,23,3,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,-9,0,2250,-9,0,0 +2013,7,9,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-7,0,906,-25,0,0 +2013,10,4,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2046,-17,0,2206,-15,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1020,-5,0,1136,4,0,0 +2013,9,15,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,-3,0,1327,-8,0,0 +2013,7,14,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-5,0,1000,-12,0,0 +2013,6,7,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1715,35,1,2040,9,0,0 +2013,8,12,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1500,14,0,1635,11,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,4,0,1042,16,1,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2010,24,1,2320,32,1,0 +2013,8,13,2,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1222,12,0,1432,4,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1435,24,1,1640,1,0,0 +2013,7,3,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,68,1,1755,69,1,0 +2013,10,13,7,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1120,4,0,1300,13,0,0 +2013,7,26,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,0,0,850,-13,0,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,8,0,2159,4,0,0 +2013,9,22,7,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1735,38,1,2000,58,1,0 +2013,9,9,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-10,0,830,0,0,0 +2013,10,21,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,0,0,1650,5,0,0 +2013,9,29,7,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1136,-2,0,1355,-3,0,0 +2013,4,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1725,0,0,2002,-5,0,0 +2013,10,11,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1030,0,0,1155,0,1,1 +2013,10,30,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-5,0,1014,-14,0,0 +2013,4,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1450,1,0,1605,-3,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2120,12,0,2249,0,0,0 +2013,10,28,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,15,1,1508,22,1,0 +2013,7,19,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,10,0,1915,15,1,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,650,-4,0,920,-1,0,0 +2013,9,26,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-6,0,1116,0,0,0 +2013,8,13,2,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-13,0,936,-16,0,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1417,10,0,1732,-3,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1640,-1,0,1740,30,1,0 +2013,6,24,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1050,6,0,1230,2,0,0 +2013,9,9,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,905,3,0,920,-3,0,0 +2013,5,12,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1140,-3,0,1254,-13,0,0 +2013,5,10,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1345,0,,1505,0,1,1 +2013,7,10,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,905,5,0,0 +2013,5,27,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-3,0,1002,-11,0,0 +2013,9,11,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1015,-2,0,1120,-3,0,0 +2013,9,6,5,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,-1,0,1150,-9,0,0 +2013,7,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,600,-5,0,938,-11,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2155,58,1,2335,47,1,0 +2013,6,8,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-2,0,834,4,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1030,-4,0,1400,-3,0,0 +2013,5,31,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,730,-1,0,1013,-12,0,0 +2013,6,17,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-7,0,1458,-8,0,0 +2013,10,7,1,9E,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1550,0,,1816,0,1,1 +2013,5,24,5,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,11,0,1826,-7,0,0 +2013,5,25,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-2,0,1725,-12,0,0 +2013,6,1,6,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1500,-2,0,1615,-9,0,0 +2013,4,7,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,748,-21,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-4,0,1705,7,0,0 +2013,7,3,3,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1708,-2,0,1842,-1,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-2,0,1148,-7,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,739,54,1,848,39,1,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,-2,0,1916,-28,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-4,0,2103,-19,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,-4,0,2352,-9,0,0 +2013,8,15,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,-2,0,1414,-9,0,0 +2013,9,4,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,-2,0,1630,0,0,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,-1,0,2217,8,0,0 +2013,8,20,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1543,12,0,2359,19,1,0 +2013,10,21,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1150,31,1,1315,36,1,0 +2013,5,27,1,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1110,-4,0,1615,-23,0,0 +2013,7,14,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,-3,0,1915,-1,0,0 +2013,4,27,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,645,-1,0,805,-8,0,0 +2013,4,13,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,1,0,615,2,0,0 +2013,5,2,4,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,12,0,1045,10,0,0 +2013,10,10,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,855,35,1,1225,37,1,0 +2013,6,18,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,750,-2,0,1045,-14,0,0 +2013,8,15,4,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-1,0,912,-26,0,0 +2013,4,27,6,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1225,-7,0,1345,-12,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1515,7,0,1615,-2,0,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1010,-5,0,1156,-10,0,0 +2013,7,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2055,13,0,2300,3,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,820,-8,0,0 +2013,5,17,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1000,2,0,1140,-6,0,0 +2013,9,25,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1330,6,0,1445,0,0,0 +2013,4,15,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1925,-5,0,2105,-29,0,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2105,1,0,2340,-2,0,0 +2013,6,19,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1935,-5,0,2125,9,0,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-5,0,1800,-14,0,0 +2013,7,19,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1945,105,1,2104,90,1,0 +2013,7,9,2,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-3,0,1540,-21,0,0 +2013,10,17,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1125,-6,0,1212,1,0,0 +2013,7,14,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,831,-10,0,0 +2013,10,28,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,621,-3,0,0 +2013,7,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,825,-1,0,1055,-9,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,1,0,1934,11,0,0 +2013,7,10,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1705,7,0,1751,-1,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1945,9,0,2044,5,0,0 +2013,5,13,1,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,2,0,715,-20,0,0 +2013,10,1,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,3,0,2155,-29,0,0 +2013,5,7,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1859,-2,0,2052,-1,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1925,54,1,2215,32,1,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,6,0,1715,-4,0,0 +2013,6,17,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,3,0,2345,-3,0,0 +2013,9,20,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,1,0,648,-5,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1030,35,1,1545,26,1,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1430,21,1,1752,5,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1918,32,1,2202,20,1,0 +2013,4,23,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-6,0,930,-4,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-2,0,1210,3,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1901,134,1,2213,149,1,0 +2013,9,19,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1054,0,0,0 +2013,6,12,3,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-7,0,2132,-19,0,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1505,17,1,2251,-13,0,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,850,-2,0,1144,-20,0,0 +2013,4,17,3,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1125,15,1,1338,20,1,0 +2013,8,24,6,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1250,46,1,1425,33,1,0 +2013,6,29,6,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,600,-5,0,815,-8,0,0 +2013,7,31,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-9,0,1555,-14,0,0 +2013,5,25,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,-7,0,1648,-13,0,0 +2013,7,16,2,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,-3,0,1150,1,0,0 +2013,6,11,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,640,18,1,750,6,0,0 +2013,8,5,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-6,0,820,-10,0,0 +2013,8,26,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-4,0,2217,-2,0,0 +2013,5,1,3,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1030,113,1,1402,137,1,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,-4,0,2023,9,0,0 +2013,9,20,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1730,124,1,2008,108,1,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,21,1,1645,13,0,0 +2013,10,24,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1955,7,0,2112,-5,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,-5,0,2125,-4,0,0 +2013,5,29,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,20,1,951,31,1,0 +2013,4,3,3,EV,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-8,0,1127,-5,0,0 +2013,8,1,4,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,24,1,1815,20,1,0 +2013,5,15,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1523,-8,0,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1130,1,0,1440,-5,0,0 +2013,4,3,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1615,-1,0,1803,-10,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,955,-1,0,1307,4,0,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1352,-4,0,2216,-4,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,25,1,1833,56,1,0 +2013,8,31,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1945,6,0,40,31,1,0 +2013,4,7,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,929,-6,0,1137,-20,0,0 +2013,6,19,3,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1031,15,1,1315,6,0,0 +2013,7,31,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1445,-7,0,1605,-28,0,0 +2013,9,19,4,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1410,8,0,2225,-20,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,810,59,1,925,54,1,0 +2013,7,4,4,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-6,0,1300,-13,0,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,8,0,1948,30,1,0 +2013,7,24,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,28,1,1035,37,1,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,800,-2,0,1240,-3,0,0 +2013,8,3,6,VX,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,50,4,0,625,8,0,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-5,0,2200,-12,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1534,34,1,2029,-11,0,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1435,-5,0,1655,-14,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1105,0,0,1322,-13,0,0 +2013,4,28,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1950,-7,0,2209,-5,0,0 +2013,5,18,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1656,-7,0,0 +2013,8,11,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,605,-3,0,710,-7,0,0 +2013,5,9,4,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2111,0,,2359,0,1,1 +2013,7,19,5,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1004,5,0,0 +2013,5,4,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,36,1,2032,5,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1121,-7,0,1441,-2,0,0 +2013,9,4,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,115,1,2045,119,1,0 +2013,4,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,42,1,2120,45,1,0 +2013,8,13,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,956,15,1,1145,19,1,0 +2013,8,19,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-14,0,2326,-9,0,0 +2013,10,15,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,905,-7,0,1032,-19,0,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2210,72,1,30,72,1,0 +2013,4,16,2,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1745,25,1,2250,2,0,0 +2013,6,27,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1835,40,1,2109,43,1,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1405,-2,0,1750,1,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,13,0,1345,14,0,0 +2013,9,20,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1450,3,0,1620,-4,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1735,0,0,1819,-9,0,0 +2013,7,20,6,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,-2,0,1427,-3,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,0,0,925,-5,0,0 +2013,9,29,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,13,0,2030,5,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,-2,0,735,1,0,0 +2013,5,21,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1324,-7,0,1449,-1,0,0 +2013,7,30,2,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,808,21,1,1038,20,1,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1255,19,1,1355,15,1,0 +2013,6,22,6,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,-4,0,1430,-10,0,0 +2013,5,9,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,-2,0,1305,-1,0,0 +2013,8,24,6,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,810,-1,0,1026,-13,0,0 +2013,6,22,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1806,33,1,1957,-12,0,0 +2013,10,22,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2052,-6,0,2232,-23,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,736,-1,0,1155,-1,0,0 +2013,9,24,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,-5,0,1230,-21,0,0 +2013,9,27,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1315,1,0,1425,-18,0,0 +2013,5,30,4,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-10,0,555,-12,0,0 +2013,7,3,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2020,5,0,2302,-5,0,0 +2013,6,3,1,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1141,103,1,1437,96,1,0 +2013,5,6,1,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-3,0,858,-43,0,0 +2013,7,13,6,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1204,-6,0,1244,-3,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1550,5,0,1655,-2,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1456,13,0,1641,6,0,0 +2013,4,2,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,0,0,2055,-20,0,0 +2013,10,30,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1211,-10,0,0 +2013,8,9,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,50,1,2144,67,1,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1355,25,1,2000,19,1,0 +2013,6,1,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,0,0,1239,-14,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,835,1,0,1005,3,0,0 +2013,5,9,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,801,1,0,1129,-6,0,0 +2013,8,8,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,-8,0,756,-29,0,0 +2013,10,30,3,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2140,-19,0,2346,-6,0,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1651,-3,0,1819,-9,0,0 +2013,10,29,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1015,-1,0,1340,-8,0,0 +2013,5,7,2,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-6,0,1912,-23,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1910,38,1,5,39,1,0 +2013,5,9,4,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1830,-7,0,2047,-27,0,0 +2013,10,27,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2305,-3,0,720,-7,0,0 +2013,10,18,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1335,-6,0,1435,-7,0,0 +2013,10,8,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,609,-10,0,623,-14,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1105,-2,0,1245,-8,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,855,-2,0,1055,1,0,0 +2013,6,24,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1810,13,0,2059,30,1,0 +2013,6,17,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,545,-7,0,650,-13,0,0 +2013,9,28,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1450,-5,0,1550,-9,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-3,0,1139,-9,0,0 +2013,5,3,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1545,39,1,1710,20,1,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1820,-1,0,2035,-9,0,0 +2013,7,5,5,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,815,-8,0,1011,-14,0,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,-4,0,1923,-16,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1215,0,0,1325,8,0,0 +2013,10,14,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-7,0,1252,-10,0,0 +2013,7,8,1,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-7,0,840,-12,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,4,0,1535,-2,0,0 +2013,9,24,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1159,-5,0,1453,-6,0,0 +2013,8,5,1,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1721,-4,0,1900,12,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1720,36,1,1905,23,1,0 +2013,6,9,7,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-12,0,707,-32,0,0 +2013,10,7,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-8,0,919,-4,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,2026,2,0,2359,-13,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,0,0,27,-6,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1100,-3,0,1235,-9,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1122,-5,0,1306,-6,0,0 +2013,9,2,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1700,-7,0,1802,-17,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1457,-3,0,1653,-15,0,0 +2013,9,1,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,830,8,0,1128,-3,0,0 +2013,8,24,6,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,705,-2,0,1005,-26,0,0 +2013,6,23,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,550,-3,0,1314,7,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,940,-1,0,1100,-10,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1759,112,1,1956,132,1,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,730,0,0,1330,3,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1242,-1,0,1432,24,1,0 +2013,10,19,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,955,21,1,1215,8,0,0 +2013,4,2,2,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,640,-8,0,922,-1,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1940,9,0,2035,13,0,0 +2013,4,30,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2038,-7,0,2200,-12,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-8,0,1307,-20,0,0 +2013,10,28,1,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1729,31,1,1951,47,1,0 +2013,4,7,7,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1435,7,0,1600,3,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2220,-6,0,2305,4,0,0 +2013,4,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,-3,0,1515,-15,0,0 +2013,4,19,5,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1906,32,1,2046,14,0,0 +2013,7,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,730,0,0,845,1,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,43,1,2251,23,1,0 +2013,7,3,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,98,1,2003,108,1,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1946,180,1,2038,176,1,0 +2013,8,11,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1305,-8,0,1610,-23,0,0 +2013,4,19,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,-3,0,1050,-24,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,0,0,1855,-3,0,0 +2013,5,24,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,97,1,2310,116,1,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,554,-3,0,914,-8,0,0 +2013,10,7,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,21,1,1720,2,0,0 +2013,10,14,1,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1740,6,0,1909,2,0,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1103,35,1,1414,30,1,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,655,-1,0,819,2,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,6,0,1445,3,0,0 +2013,10,25,5,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1505,-6,0,1834,-15,0,0 +2013,7,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1355,-4,0,1745,-17,0,0 +2013,8,10,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,740,-14,0,0 +2013,9,16,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1535,16,1,1655,12,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,-2,0,1402,-12,0,0 +2013,4,7,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,6,0,1730,-23,0,0 +2013,4,8,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1855,7,0,2153,39,1,0 +2013,6,1,6,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,-2,0,1812,-8,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,10,0,2004,7,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-4,0,1006,-7,0,0 +2013,7,28,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1130,1,0,1720,-7,0,0 +2013,4,9,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1534,2,0,1704,6,0,0 +2013,7,31,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-6,0,1345,-12,0,0 +2013,8,13,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2005,113,1,2125,100,1,0 +2013,6,24,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-7,0,1554,19,1,0 +2013,10,2,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,725,-1,0,830,-5,0,0 +2013,7,22,1,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1659,-15,0,1836,-12,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,739,-4,0,1010,-14,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1558,-4,0,2051,-16,0,0 +2013,9,9,1,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,30,0,0,610,8,0,0 +2013,6,11,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1315,82,1,1442,81,1,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1855,0,0,1951,-8,0,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,57,1,2310,61,1,0 +2013,4,2,2,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,600,3,0,852,1,0,0 +2013,6,7,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1530,8,0,1620,4,0,0 +2013,8,19,1,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,47,1,649,65,1,0 +2013,5,18,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1000,0,0,1246,-1,0,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1846,-5,0,2004,-10,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,2,0,1443,14,0,0 +2013,6,28,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,69,1,729,75,1,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,80,1,1428,88,1,0 +2013,7,21,7,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,0,0,820,-9,0,0 +2013,4,17,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1701,10,0,1843,-19,0,0 +2013,5,9,4,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,825,-3,0,1210,-18,0,0 +2013,7,17,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,-3,0,2039,-7,0,0 +2013,7,17,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,900,-3,0,0 +2013,4,30,2,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1800,-5,0,2205,-10,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,29,1,2030,14,0,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1521,-12,0,0 +2013,4,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1348,-5,0,2018,-11,0,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,1,0,2240,-8,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-1,0,930,-11,0,0 +2013,4,7,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,39,1,1920,17,1,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-6,0,1111,6,0,0 +2013,4,11,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,811,24,1,942,25,1,0 +2013,8,20,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2146,0,0,30,-24,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2030,-3,0,2252,-8,0,0 +2013,4,18,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,-6,0,1200,12,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,18,1,2355,-2,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1300,31,1,1441,27,1,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,29,1,1310,10,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-7,0,1512,2,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,14,0,1054,61,1,0 +2013,7,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1005,-2,0,1227,-21,0,0 +2013,5,18,6,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1455,-2,0,1729,-10,0,0 +2013,7,31,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1802,11,0,1848,13,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1932,61,1,2018,60,1,0 +2013,4,23,2,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1936,-5,0,2058,-1,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1130,2,0,1510,10,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2130,-5,0,2306,2,0,0 +2013,5,19,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-7,0,1232,-3,0,0 +2013,6,5,3,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1733,-6,0,41,-37,0,0 +2013,6,10,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1329,3,0,2140,-14,0,0 +2013,10,11,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1915,-5,0,2131,4,0,0 +2013,8,18,7,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2235,-3,0,700,2,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,-6,0,1929,-7,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1641,75,1,1913,164,1,0 +2013,10,3,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1325,4,0,1440,25,1,0 +2013,7,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,0,0,750,-14,0,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1900,-1,0,2225,1,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1618,21,1,2221,5,0,0 +2013,10,2,3,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1603,-1,0,1742,-14,0,0 +2013,6,15,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1513,7,0,1738,13,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1016,0,,1153,0,1,1 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,12,0,1425,3,0,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1340,26,1,1620,8,0,0 +2013,7,22,1,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,600,-6,0,835,-2,0,0 +2013,7,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1640,60,1,1808,51,1,0 +2013,8,23,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,610,-4,0,715,-4,0,0 +2013,8,19,1,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,655,1,0,830,4,0,0 +2013,5,24,5,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,0,0,1350,-14,0,0 +2013,10,11,5,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1306,16,1,1419,19,1,0 +2013,8,15,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1645,-4,0,1827,-4,0,0 +2013,4,9,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1955,-2,0,2340,-16,0,0 +2013,5,22,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1305,23,1,1635,18,1,0 +2013,7,3,3,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-15,0,1143,-29,0,0 +2013,8,31,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1413,-16,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,752,-4,0,926,2,0,0 +2013,10,14,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1920,79,1,2010,78,1,0 +2013,8,14,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,12,0,2056,27,1,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,14,0,1815,23,1,0 +2013,4,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1240,0,0,1440,5,0,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1425,0,,1730,0,1,1 +2013,9,3,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1435,21,1,1605,-2,0,0 +2013,7,29,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,3,0,1225,5,0,0 +2013,7,22,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,640,-8,0,1441,-1,0,0 +2013,5,15,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2005,122,1,2151,105,1,0 +2013,6,4,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-9,0,1214,-1,0,0 +2013,9,8,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-7,0,1748,7,0,0 +2013,5,16,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-3,0,1440,9,0,0 +2013,8,7,3,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2200,-4,0,550,-14,0,0 +2013,4,28,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,730,-8,0,1330,2,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,745,-3,0,919,-15,0,0 +2013,8,31,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,855,2,0,1125,22,1,0 +2013,4,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,2110,4,0,15,-2,0,0 +2013,5,5,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1000,-2,0,1131,4,0,0 +2013,10,4,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,0,0,2052,14,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1850,8,0,2000,-8,0,0 +2013,7,28,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,800,-6,0,815,-19,0,0 +2013,10,21,1,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,810,2,0,923,-7,0,0 +2013,7,12,5,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,-8,0,1303,-14,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-2,0,1450,3,0,0 +2013,7,5,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1054,146,1,1145,144,1,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1920,0,0,2301,-4,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,805,36,1,1240,32,1,0 +2013,8,8,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,11,0,1910,10,0,0 +2013,9,6,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1539,-1,0,1704,-8,0,0 +2013,6,28,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,0,0,1033,-2,0,0 +2013,9,1,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1439,-3,0,1614,-19,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1500,-8,0,1655,-25,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1510,86,1,1830,68,1,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1240,2,0,1515,-18,0,0 +2013,9,14,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-12,0,1326,-1,0,0 +2013,6,6,4,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,53,1,2306,44,1,0 +2013,9,1,7,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1824,-2,0,2129,-24,0,0 +2013,4,24,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,9,0,1628,7,0,0 +2013,8,26,1,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2350,-5,0,548,13,0,0 +2013,4,27,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-9,0,2034,-19,0,0 +2013,4,3,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1235,20,1,1400,14,0,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,516,-8,0,800,-43,0,0 +2013,5,23,4,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1851,-2,0,2015,-14,0,0 +2013,9,28,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1640,7,0,0 +2013,6,3,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,0,0,2110,8,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-3,0,1349,13,0,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1326,-6,0,1934,-12,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,48,1,2204,26,1,0 +2013,7,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,-7,0,1346,3,0,0 +2013,7,4,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-6,0,541,-2,0,0 +2013,5,5,7,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1645,-8,0,1820,-6,0,0 +2013,6,14,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1320,10,0,1325,8,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,745,-2,0,1005,-5,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2208,-6,0,2359,-20,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,10,0,2005,8,0,0 +2013,8,29,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,0,0,1100,-1,0,0 +2013,8,25,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-6,0,1936,-10,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2210,4,0,2305,8,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1632,-3,0,1754,-17,0,0 +2013,9,12,4,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1643,0,,1826,0,1,1 +2013,4,15,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2111,34,1,526,25,1,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1755,5,0,1925,-8,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1340,6,0,1450,-6,0,0 +2013,10,7,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1329,33,1,1509,157,1,0 +2013,10,9,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,14,0,1928,2,0,0 +2013,6,28,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,39,1,1340,11,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1015,28,1,1141,10,0,0 +2013,4,30,2,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,0,0,1420,-10,0,0 +2013,5,16,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1300,-7,0,1615,-6,0,0 +2013,9,7,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,920,-3,0,1045,-11,0,0 +2013,10,14,1,US,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-6,0,910,-9,0,0 +2013,4,4,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,811,-4,0,930,-7,0,0 +2013,7,26,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1235,7,0,2110,20,1,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,905,-1,0,1155,1,0,0 +2013,7,27,6,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1706,-3,0,1710,1,0,0 +2013,8,18,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1429,-2,0,1605,8,0,0 +2013,9,6,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,-2,0,1540,-1,0,0 +2013,9,10,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1528,-4,0,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1855,20,1,2015,13,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1925,-2,0,2302,-8,0,0 +2013,7,11,4,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,2,0,1845,-5,0,0 +2013,6,17,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,4,0,1450,0,0,0 +2013,5,29,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1000,0,0,1050,-14,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,955,0,0,1153,19,1,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1733,10,0,1909,0,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1255,0,0,1424,-4,0,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,0,0,2251,-7,0,0 +2013,10,28,1,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,941,-2,0,1229,-3,0,0 +2013,4,18,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2020,27,1,2150,14,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1242,9,0,1502,-12,0,0 +2013,4,2,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1433,-9,0,1543,22,1,0 +2013,5,17,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1624,-2,0,44,-8,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,800,-7,0,1109,-7,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1555,50,1,1742,31,1,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1335,16,1,1620,13,0,0 +2013,7,10,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,905,-1,0,1015,-11,0,0 +2013,5,18,6,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1915,-4,0,2242,-5,0,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,11,0,830,-1,0,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1420,8,0,2015,6,0,0 +2013,6,17,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1905,44,1,2307,31,1,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1105,-3,0,1123,-5,0,0 +2013,8,10,6,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,2002,-5,0,2323,-23,0,0 +2013,5,4,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-1,0,1326,-1,0,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,845,16,1,1010,12,0,0 +2013,9,19,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-3,0,1640,-15,0,0 +2013,5,31,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-8,0,1516,-10,0,0 +2013,8,25,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1340,8,0,1405,-6,0,0 +2013,9,7,6,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,6,0,1227,18,1,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,930,135,1,1140,112,1,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1614,-6,0,1734,-18,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,955,25,1,1510,42,1,0 +2013,5,24,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1055,-9,0,0 +2013,9,3,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,0,0,735,-7,0,0 +2013,7,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2017,-8,0,2115,-4,0,0 +2013,4,30,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-7,0,811,-7,0,0 +2013,9,20,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1506,84,1,1629,75,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-3,0,1605,-2,0,0 +2013,6,15,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1234,18,1,1557,40,1,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,4,0,1953,2,0,0 +2013,10,9,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1435,-7,0,1620,-2,0,0 +2013,5,27,1,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,-2,0,2213,-8,0,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,926,2,0,0 +2013,10,17,4,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1915,16,1,2303,-3,0,0 +2013,9,14,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1550,-5,0,1846,-4,0,0 +2013,8,18,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,-8,0,1229,-9,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1940,0,0,2305,-3,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,647,-2,0,1024,2,0,0 +2013,5,25,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1110,-4,0,1230,-13,0,0 +2013,8,29,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2050,30,1,2211,16,1,0 +2013,4,30,2,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1113,137,1,1830,142,1,0 +2013,10,4,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,9,0,1450,-1,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,2,0,1500,-4,0,0 +2013,4,4,4,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,758,-10,0,1035,-12,0,0 +2013,8,23,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1510,-3,0,2318,-14,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1445,-1,0,1705,-7,0,0 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-1,0,1440,-10,0,0 +2013,8,28,3,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1800,-3,0,2015,-21,0,0 +2013,6,8,6,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2024,-6,0,2155,-7,0,0 +2013,8,23,5,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,0,0,1615,-2,0,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,27,1,2126,16,1,0 +2013,5,26,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,-5,0,2018,-12,0,0 +2013,9,1,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-8,0,1154,-35,0,0 +2013,9,7,6,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1004,0,0,1120,-4,0,0 +2013,8,5,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1458,4,0,1600,17,1,0 +2013,5,1,3,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,924,-5,0,1050,-11,0,0 +2013,8,1,4,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,59,1,1755,52,1,0 +2013,6,30,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1910,18,1,2105,15,1,0 +2013,6,7,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-1,0,1643,22,1,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-3,0,825,-12,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1246,-3,0,1407,-6,0,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1205,0,0,1325,-2,0,0 +2013,7,10,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,-5,0,1350,-5,0,0 +2013,7,7,7,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1400,3,0,1440,-5,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1555,-2,0,1705,-8,0,0 +2013,8,8,4,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1650,4,0,1840,-12,0,0 +2013,7,3,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1118,-3,0,1510,17,1,0 +2013,4,20,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,649,2,0,845,-11,0,0 +2013,9,16,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-3,0,1921,5,0,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-9,0,1313,9,0,0 +2013,7,6,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,-10,0,2233,-19,0,0 +2013,5,11,6,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1219,1,0,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1609,-6,0,57,-35,0,0 +2013,10,24,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-5,0,2100,-10,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,805,-4,0,1125,-6,0,0 +2013,4,1,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,943,-12,0,0 +2013,4,23,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1140,-2,0,1730,-14,0,0 +2013,10,6,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1535,1,0,1840,-23,0,0 +2013,6,22,6,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1615,-1,0,1803,-20,0,0 +2013,10,19,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,905,1,0,935,-2,0,0 +2013,10,13,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-9,0,1333,-13,0,0 +2013,4,29,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1418,-6,0,1545,-14,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,11,0,2310,11,0,0 +2013,7,21,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,0,,1347,0,1,1 +2013,10,5,6,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,920,-2,0,1230,-11,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,9,0,1739,5,0,0 +2013,8,25,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1518,11,0,2359,-10,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1625,-3,0,1738,-9,0,0 +2013,4,29,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1243,-3,0,1402,-1,0,0 +2013,9,15,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1319,19,1,1817,8,0,0 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,7,0,1450,9,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,23,1,1630,15,1,0 +2013,5,15,3,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,918,-11,0,1210,-18,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,-2,0,830,-6,0,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1755,1,0,1850,-3,0,0 +2013,9,12,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-8,0,840,-19,0,0 +2013,8,7,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1918,26,1,2229,26,1,0 +2013,5,11,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,622,-2,0,750,-6,0,0 +2013,4,22,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1200,77,1,1450,94,1,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1215,16,1,1450,3,0,0 +2013,7,26,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,2,0,1843,-11,0,0 +2013,7,6,6,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-6,0,2015,-9,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1315,-5,0,1432,10,0,0 +2013,9,29,7,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-2,0,1332,-5,0,0 +2013,10,7,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-11,0,2115,-8,0,0 +2013,4,14,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1250,12,0,1355,2,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1955,108,1,2225,82,1,0 +2013,5,17,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,600,0,0,720,-12,0,0 +2013,9,11,3,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1435,-9,0,2243,-16,0,0 +2013,8,1,4,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2050,32,1,2310,28,1,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1724,88,1,1929,100,1,0 +2013,8,7,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,1,0,1327,13,0,0 +2013,4,4,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1020,-2,0,1140,-7,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,0,0,906,-17,0,0 +2013,5,27,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1744,6,0,2016,0,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,-2,0,1705,-15,0,0 +2013,8,23,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,12,0,1340,5,0,0 +2013,10,21,1,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1439,-11,0,1619,-11,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1900,72,1,2325,66,1,0 +2013,5,28,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1429,-8,0,1733,-18,0,0 +2013,10,16,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,829,-5,0,1139,-24,0,0 +2013,7,19,5,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1845,-5,0,2058,88,1,0 +2013,4,13,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1710,10,0,2005,-2,0,0 +2013,4,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1515,88,1,2043,78,1,0 +2013,8,18,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1825,2,0,2126,-11,0,0 +2013,10,29,2,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1013,0,0,1826,-28,0,0 +2013,4,9,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,0,0,610,-2,0,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1517,33,1,1639,25,1,0 +2013,5,30,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,5,0,1649,15,1,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,800,-5,0,1235,1,0,0 +2013,9,28,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-5,0,756,2,0,0 +2013,10,17,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,0,0,1335,0,0,0 +2013,5,12,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1300,30,1,1525,15,1,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,-3,0,1420,-10,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,0,,1030,0,1,1 +2013,7,14,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,857,1,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,-1,0,1723,-16,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1540,5,0,1745,14,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,-3,0,1628,-29,0,0 +2013,7,21,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,17,1,1319,-3,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-3,0,1800,-11,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1445,2,0,1705,-8,0,0 +2013,6,13,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,0,0,930,-5,0,0 +2013,8,1,4,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1440,7,0,2245,-3,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-5,0,1111,-1,0,0 +2013,9,29,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1008,2,0,1353,-5,0,0 +2013,9,16,1,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-7,0,1044,-10,0,0 +2013,8,29,4,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-3,0,1405,-11,0,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,7,0,650,7,0,0 +2013,4,11,4,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1515,17,1,1600,16,1,0 +2013,8,2,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,600,1,0,850,18,1,0 +2013,10,28,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1355,-8,0,1535,-26,0,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1310,35,1,1605,61,1,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2130,-1,0,2311,4,0,0 +2013,6,25,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1138,0,0,1228,-5,0,0 +2013,7,19,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,6,0,1523,11,0,0 +2013,8,22,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1047,-2,0,1505,1,0,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,750,0,0,1354,-11,0,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,119,1,1754,118,1,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1857,-5,0,2030,-11,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,900,-8,0,1155,-8,0,0 +2013,7,18,4,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1541,-5,0,1729,-27,0,0 +2013,5,29,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,650,1,0,815,-6,0,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-4,0,1312,5,0,0 +2013,9,12,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,12,0,1435,1,0,0 +2013,9,27,5,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1150,-3,0,1505,-11,0,0 +2013,10,6,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-5,0,1100,0,1,1 +2013,8,29,4,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,8,0,905,-6,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2010,-2,0,2055,7,0,0 +2013,6,9,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1355,-3,0,1502,-8,0,0 +2013,6,20,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1208,0,0,1446,3,0,0 +2013,8,15,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1511,19,1,1728,1,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1415,0,0,1845,-6,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,1,0,1145,0,0,0 +2013,9,15,7,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,4,0,1854,8,0,0 +2013,6,9,7,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1600,10,0,1740,15,1,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-2,0,1406,-21,0,0 +2013,10,29,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-1,0,1720,-19,0,0 +2013,5,24,5,FL,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1440,64,1,1752,79,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,945,1,0,1202,-12,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,24,1,1750,39,1,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-2,0,1005,4,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1725,60,1,2250,53,1,0 +2013,5,8,3,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,842,2,0,1025,7,0,0 +2013,4,4,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1328,-5,0,1836,-6,0,0 +2013,5,22,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,0,,1624,0,1,1 +2013,7,12,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,4,0,1225,46,1,0 +2013,5,11,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-5,0,2035,-11,0,0 +2013,4,7,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,905,14,0,1016,7,0,0 +2013,8,13,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1358,1,0,2013,-4,0,0 +2013,5,3,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1839,-5,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1547,-2,0,1652,-13,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,3,0,1745,-4,0,0 +2013,10,24,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1214,-3,0,1327,15,1,0 +2013,8,15,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2133,-4,0,2155,-23,0,0 +2013,4,14,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1231,-5,0,1511,12,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,600,-2,0,726,-3,0,0 +2013,4,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,40,1,2050,35,1,0 +2013,10,19,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,9,0,1300,5,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1055,-1,0,1403,-10,0,0 +2013,10,10,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,950,11,0,1050,11,0,0 +2013,7,8,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1540,5,0,1858,4,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-5,0,2035,-18,0,0 +2013,6,15,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1540,-8,0,1833,-8,0,0 +2013,10,4,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,549,-6,0,712,12,0,0 +2013,4,30,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1325,3,0,1450,-2,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1825,1,0,1930,-4,0,0 +2013,9,30,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1301,0,0,1655,-1,0,0 +2013,8,16,5,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,13,0,1551,19,1,0 +2013,4,23,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1420,1,0,1636,-14,0,0 +2013,5,27,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,730,1,0,845,-3,0,0 +2013,6,9,7,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,725,-4,0,845,-1,0,0 +2013,9,3,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1529,7,0,1655,10,0,0 +2013,6,30,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1446,210,1,1626,207,1,0 +2013,7,5,5,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-5,0,1625,-8,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,850,-1,0,932,-9,0,0 +2013,8,21,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-10,0,930,-8,0,0 +2013,4,11,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,-3,0,1120,-14,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1915,14,0,2140,12,0,0 +2013,8,23,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1545,23,1,1725,19,1,0 +2013,7,15,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,-2,0,2120,-4,0,0 +2013,7,6,6,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,5,0,1935,-2,0,0 +2013,4,22,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,545,-9,0,921,-16,0,0 +2013,8,30,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,-5,0,2105,-13,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1207,-7,0,1404,-37,0,0 +2013,9,29,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1510,-1,0,1719,-10,0,0 +2013,5,28,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,-7,0,2220,-4,0,0 +2013,7,16,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1314,0,,1517,0,1,1 +2013,7,22,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,42,1,1500,30,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,32,1,1835,27,1,0 +2013,4,23,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1125,1,0,1903,-6,0,0 +2013,5,25,6,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1325,1,0,1551,-5,0,0 +2013,4,29,1,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,34,1,1940,29,1,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-1,0,828,3,0,0 +2013,7,30,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1215,-9,0,1411,-33,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,31,1,1911,33,1,0 +2013,6,13,4,9E,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-7,0,1706,-1,0,0 +2013,6,15,6,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-11,0,1345,-13,0,0 +2013,6,18,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1145,9,0,1500,27,1,0 +2013,10,10,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1645,7,0,2156,20,1,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,-3,0,847,0,0,0 +2013,8,8,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2008,107,1,2158,112,1,0 +2013,8,29,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,2020,0,0,2214,2,0,0 +2013,10,7,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,650,1,0,820,-9,0,0 +2013,7,13,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,51,1,2105,60,1,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1005,-3,0,1140,15,1,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1619,-6,0,1749,-17,0,0 +2013,5,18,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-4,0,1254,-17,0,0 +2013,7,23,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-1,0,1118,7,0,0 +2013,5,7,2,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1440,3,0,1655,-27,0,0 +2013,7,31,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1130,-2,0,1655,-16,0,0 +2013,5,16,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1254,-1,0,1354,-9,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,103,1,1650,88,1,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,839,-5,0,1420,20,1,0 +2013,6,5,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-4,0,910,-6,0,0 +2013,7,17,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,649,-14,0,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,-7,0,738,16,1,0 +2013,4,6,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,-7,0,1553,9,0,0 +2013,4,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1405,7,0,1530,15,1,0 +2013,4,27,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,15,1,1555,15,1,0 +2013,10,1,2,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1034,-1,0,1418,4,0,0 +2013,4,8,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,-8,0,2025,-28,0,0 +2013,10,11,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-3,0,618,0,0,0 +2013,4,5,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-3,0,2256,-20,0,0 +2013,10,17,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-5,0,1755,-13,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,735,-2,0,1050,-13,0,0 +2013,7,3,3,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1111,114,1,1409,132,1,0 +2013,10,22,2,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-4,0,1020,-8,0,0 +2013,4,24,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,946,14,0,1129,7,0,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,2,0,1200,-3,0,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1519,-2,0,1714,-12,0,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2000,-3,0,2125,-8,0,0 +2013,4,29,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,-13,0,2202,-12,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,600,1,0,735,-4,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-5,0,1555,-15,0,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,700,0,0,815,-4,0,0 +2013,5,16,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1548,-3,0,1630,-16,0,0 +2013,6,11,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-4,0,931,-9,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,35,1,1545,41,1,0 +2013,4,4,4,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,735,-3,0,810,-11,0,0 +2013,6,20,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,-2,0,2300,3,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,0,0,1054,0,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,815,-1,0,1100,-25,0,0 +2013,10,17,4,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1205,-5,0,1400,-3,0,0 +2013,9,15,7,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1505,5,0,1814,8,0,0 +2013,10,5,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,730,-2,0,1258,2,0,0 +2013,10,20,7,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-7,0,1805,-9,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,-6,0,2035,-3,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1845,0,0,2030,15,1,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,829,-7,0,1704,-6,0,0 +2013,6,7,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,33,1,2054,29,1,0 +2013,4,16,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,820,-4,0,1035,-15,0,0 +2013,7,30,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-4,0,1023,4,0,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1031,14,0,1248,17,1,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1635,-4,0,2000,-10,0,0 +2013,10,12,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1514,-1,0,1607,-2,0,0 +2013,7,10,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,852,11,0,0 +2013,7,28,7,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,-6,0,2330,12,0,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,3,0,1734,-1,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1400,26,1,1625,20,1,0 +2013,7,5,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1420,-4,0,1610,-4,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1215,-2,0,1320,-8,0,0 +2013,6,13,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,115,1,1712,136,1,0 +2013,7,3,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,626,0,0,817,6,0,0 +2013,7,27,6,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1455,13,0,1610,15,1,0 +2013,5,1,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,611,3,0,1050,-6,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,0,0,910,-25,0,0 +2013,8,7,3,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-9,0,1041,5,0,0 +2013,10,10,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1100,-7,0,1525,-31,0,0 +2013,9,16,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,854,-10,0,928,-27,0,0 +2013,5,11,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1500,-10,0,1625,-37,0,0 +2013,10,26,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1000,12,0,1135,10,0,0 +2013,10,6,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1749,4,0,2014,9,0,0 +2013,10,30,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-9,0,1432,5,0,0 +2013,10,28,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1545,-3,0,1705,2,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1715,2,0,2015,-11,0,0 +2013,4,24,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-1,0,1205,-2,0,0 +2013,8,20,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1430,0,0,1630,-10,0,0 +2013,7,20,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,-7,0,1250,0,0,0 +2013,10,4,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1940,-33,0,0 +2013,4,12,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-2,0,1325,-11,0,0 +2013,10,18,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1950,17,1,2125,1,0,0 +2013,10,22,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,116,1,1700,126,1,0 +2013,6,3,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-5,0,2005,-24,0,0 +2013,9,12,4,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2214,115,1,601,102,1,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,745,2,0,850,1,0,0 +2013,6,8,6,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-9,0,1025,-18,0,0 +2013,6,24,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1713,184,1,1941,199,1,0 +2013,5,3,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,2,0,715,6,0,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1930,16,1,2035,-1,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,2001,2,0,2314,12,0,0 +2013,6,5,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-7,0,1610,-17,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,-5,0,1508,12,0,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1741,27,1,2037,-8,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1705,16,1,2230,33,1,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1445,-3,0,1740,-8,0,0 +2013,5,28,2,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1008,-8,0,1139,-13,0,0 +2013,6,30,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,755,0,0,915,-4,0,0 +2013,7,7,7,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1230,85,1,1450,76,1,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,17,1,1654,97,1,0 +2013,7,12,5,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,37,1,1749,32,1,0 +2013,5,4,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-4,0,1515,-18,0,0 +2013,7,25,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1450,35,1,1545,61,1,0 +2013,4,13,6,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1555,1,0,1820,-7,0,0 +2013,4,23,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,4,0,2140,8,0,0 +2013,8,4,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,-2,0,1532,-13,0,0 +2013,8,31,6,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,720,12,0,820,8,0,0 +2013,8,3,6,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1325,-5,0,1540,-9,0,0 +2013,7,13,6,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1612,145,1,1847,145,1,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1305,-1,0,1610,-20,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1810,52,1,1905,41,1,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2120,45,1,2235,40,1,0 +2013,7,13,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-6,0,1850,4,0,0 +2013,5,1,3,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-6,0,1955,-36,0,0 +2013,5,31,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,745,2,0,950,-4,0,0 +2013,9,8,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-1,0,852,-13,0,0 +2013,8,19,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,843,8,0,1045,10,0,0 +2013,4,6,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1725,1,0,1825,-11,0,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,806,-4,0,1643,-18,0,0 +2013,5,29,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,87,1,2229,79,1,0 +2013,6,13,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2010,7,0,2050,4,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-9,0,922,-7,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1418,2,0,1801,-12,0,0 +2013,4,3,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-4,0,2054,-3,0,0 +2013,6,23,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,13,0,2305,11,0,0 +2013,8,7,3,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1148,19,1,1354,25,1,0 +2013,5,19,7,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1255,-2,0,1550,-22,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2022,-4,0,2246,30,1,0 +2013,8,18,7,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,4,0,1105,3,0,0 +2013,4,13,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1700,-6,0,1854,-17,0,0 +2013,8,18,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1350,18,1,1450,11,0,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1011,80,1,1256,87,1,0 +2013,8,16,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1710,5,0,1946,4,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1035,7,0,1221,-7,0,0 +2013,5,29,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1720,-7,0,2031,-24,0,0 +2013,8,3,6,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1700,0,,1837,0,1,1 +2013,10,20,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1455,2,0,1650,6,0,0 +2013,9,17,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2238,0,0,633,-16,0,0 +2013,8,13,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-1,0,925,9,0,0 +2013,8,21,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,2,0,1115,5,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,734,-1,0,925,-14,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-2,0,1520,-9,0,0 +2013,7,14,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1708,38,1,1835,26,1,0 +2013,4,9,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1430,-1,0,1520,-6,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1305,7,0,1640,0,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2020,21,1,2110,21,1,0 +2013,4,24,3,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,20,1,1650,4,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1020,8,0,1140,3,0,0 +2013,10,10,4,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1408,0,0,1703,1,0,0 +2013,7,23,2,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,730,-3,0,1033,-8,0,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-1,0,1850,-2,0,0 +2013,5,28,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,920,-1,0,1530,-7,0,0 +2013,10,29,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,43,1,1551,47,1,0 +2013,8,12,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1248,15,1,1625,26,1,0 +2013,5,10,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,838,-9,0,0 +2013,10,17,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1700,18,1,1838,16,1,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,745,1,0,852,4,0,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1115,1,0,1702,-29,0,0 +2013,7,12,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1540,2,0,1826,13,0,0 +2013,8,17,6,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1700,0,0,2000,-7,0,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-6,0,1832,-25,0,0 +2013,9,20,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2320,-6,0,655,-21,0,0 +2013,10,19,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-6,0,1302,-14,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-2,0,2329,-9,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1610,0,0,2012,-15,0,0 +2013,7,23,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,638,-4,0,758,8,0,0 +2013,10,11,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,-7,0,2253,-5,0,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,705,-7,0,951,-5,0,0 +2013,4,4,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1540,10,0,1655,5,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,-1,0,2000,-15,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,925,-4,0,1118,-8,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,812,-1,0,1015,-13,0,0 +2013,8,7,3,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1327,-6,0,1429,4,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2220,16,1,2349,12,0,0 +2013,9,30,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1540,10,0,1705,9,0,0 +2013,7,25,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,13,0,840,18,1,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,829,-9,0,959,-7,0,0 +2013,6,17,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,2047,0,0,2302,-3,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1720,0,0,2000,-7,0,0 +2013,9,30,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-8,0,2143,-13,0,0 +2013,10,29,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-4,0,1923,-19,0,0 +2013,5,30,4,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-2,0,902,-45,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1955,9,0,2330,2,0,0 +2013,6,7,5,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1940,6,0,2030,-2,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1505,-3,0,1650,4,0,0 +2013,9,9,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-2,0,1312,-13,0,0 +2013,10,20,7,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-6,0,1044,-9,0,0 +2013,8,4,7,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,810,4,0,1026,-17,0,0 +2013,8,20,2,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1752,3,0,2159,-7,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1640,5,0,2110,-18,0,0 +2013,5,13,1,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,615,7,0,654,-5,0,0 +2013,10,20,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1349,-7,0,1628,-7,0,0 +2013,6,29,6,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,10,0,1455,16,1,0 +2013,5,25,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2247,-10,0,656,-7,0,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1735,1,0,2205,-9,0,0 +2013,10,2,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-9,0,2107,-10,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,36,1,1030,29,1,0 +2013,7,6,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,0,0,2003,-2,0,0 +2013,6,17,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,-7,0,1700,-6,0,0 +2013,10,14,1,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,634,-5,0,759,-9,0,0 +2013,7,25,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1040,6,0,1905,-14,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1725,63,1,2000,41,1,0 +2013,5,12,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-4,0,1021,-16,0,0 +2013,6,30,7,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-8,0,707,1,0,0 +2013,7,15,1,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1120,-2,0,1240,-21,0,0 +2013,9,13,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1835,24,1,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1714,46,1,1959,34,1,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,-4,0,859,-12,0,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1220,6,0,1815,5,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,835,-3,0,920,-4,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,-1,0,1430,-8,0,0 +2013,8,27,2,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1640,-4,0,1833,-10,0,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1249,-4,0,1347,-21,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,730,0,0,915,-9,0,0 +2013,7,14,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-7,0,1417,-12,0,0 +2013,6,2,7,OO,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1424,8,0,1604,23,1,0 +2013,10,6,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,18,1,1450,12,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,720,9,0,810,2,0,0 +2013,8,14,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,548,-3,0,705,-16,0,0 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,-1,0,1435,-10,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1504,-3,0,1622,37,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,38,1,1522,23,1,0 +2013,4,4,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,0,0,947,3,0,0 +2013,5,4,6,OO,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1650,-9,0,1820,-4,0,0 +2013,7,5,5,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1035,-1,0,1310,-8,0,0 +2013,9,8,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,839,-2,0,1100,-16,0,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2152,45,1,613,15,1,0 +2013,10,18,5,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-9,0,922,-12,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,13,0,1100,-3,0,0 +2013,4,21,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-4,0,930,-24,0,0 +2013,4,11,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,915,0,0,1105,2,0,0 +2013,6,26,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,149,1,1659,149,1,0 +2013,4,29,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-5,0,1255,-3,0,0 +2013,7,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1700,-3,0,2045,-17,0,0 +2013,4,29,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,10,0,2005,5,0,0 +2013,6,17,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,3,0,845,-10,0,0 +2013,5,30,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1135,11,0,1210,21,1,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,920,-3,0,1201,-26,0,0 +2013,4,19,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,818,-6,0,928,17,1,0 +2013,10,3,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,2,0,1855,8,0,0 +2013,6,23,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,-1,0,1915,-22,0,0 +2013,9,14,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1640,20,1,1805,17,1,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2037,-5,0,2202,-20,0,0 +2013,5,9,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1856,75,1,2150,74,1,0 +2013,8,3,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1725,10,0,2330,-21,0,0 +2013,8,15,4,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2300,-9,0,615,-2,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,615,-7,0,740,-14,0,0 +2013,4,18,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,18,1,2010,12,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1325,20,1,1550,25,1,0 +2013,10,6,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,955,17,1,1415,12,0,0 +2013,5,1,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,3,0,2225,2,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1935,79,1,2155,81,1,0 +2013,5,13,1,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,830,-6,0,1128,-36,0,0 +2013,4,13,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,712,109,1,1014,94,1,0 +2013,10,30,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,1604,-8,0,0 +2013,9,5,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1043,-2,0,1220,-15,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,-5,0,1449,-7,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,700,-6,0,1008,-24,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,-1,0,1715,1,0,0 +2013,9,20,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1920,63,1,2035,56,1,0 +2013,9,26,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,920,-6,0,1214,-12,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,0,0,2032,-12,0,0 +2013,5,16,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1742,31,1,1850,11,0,0 +2013,6,10,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-6,0,830,-19,0,0 +2013,8,1,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1925,20,1,2115,23,1,0 +2013,6,14,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-5,0,1213,-21,0,0 +2013,7,4,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-6,0,935,-7,0,0 +2013,10,18,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1109,-7,0,0 +2013,8,5,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,28,1,2203,3,0,0 +2013,8,28,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1144,-4,0,1305,-11,0,0 +2013,8,13,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,901,-1,0,0 +2013,6,26,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-3,0,2045,45,1,0 +2013,10,26,6,AA,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1840,-9,0,2010,-18,0,0 +2013,4,25,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1345,-21,0,0 +2013,5,25,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1035,10,0,1215,2,0,0 +2013,7,21,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1010,7,0,1125,10,0,0 +2013,4,16,2,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1205,256,1,1325,261,1,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1850,4,0,2210,-21,0,0 +2013,4,1,1,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1124,0,0,1319,25,1,0 +2013,9,22,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1354,1,0,1948,6,0,0 +2013,9,30,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2016,-6,0,2128,-9,0,0 +2013,7,1,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1425,-6,0,1550,-18,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1935,10,0,2045,7,0,0 +2013,5,2,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2105,5,0,2115,7,0,0 +2013,5,11,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,756,-6,0,954,-17,0,0 +2013,5,22,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,-7,0,1348,-6,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1250,24,1,1410,13,0,0 +2013,4,18,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,146,1,1535,128,1,0 +2013,7,31,3,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1915,5,0,2100,27,1,0 +2013,6,26,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1120,92,1,1155,99,1,0 +2013,4,24,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,-11,0,1152,-12,0,0 +2013,10,22,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2119,-10,0,2229,-14,0,0 +2013,8,22,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-8,0,1040,-24,0,0 +2013,6,14,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,0,0,1255,-9,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,849,0,0,1517,3,0,0 +2013,4,25,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1011,-3,0,1315,-10,0,0 +2013,7,1,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1550,15,1,1825,18,1,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1945,-4,0,2153,-7,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1405,18,1,1515,58,1,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,5,0,1445,-13,0,0 +2013,5,3,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1518,-6,0,1646,-8,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1520,1,0,1610,-9,0,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1920,13,0,2056,-12,0,0 +2013,10,27,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,13,0,2045,15,1,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-4,0,2240,-29,0,0 +2013,9,1,7,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1725,-6,0,1858,-12,0,0 +2013,5,23,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1201,0,,1520,0,1,1 +2013,9,27,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1910,71,1,20,61,1,0 +2013,6,2,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1350,18,1,1553,13,0,0 +2013,6,18,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1726,3,0,1917,29,1,0 +2013,10,11,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1523,-3,0,1650,-7,0,0 +2013,7,23,2,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,-2,0,1110,0,0,0 +2013,4,20,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1645,17,1,1810,10,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1023,-3,0,1257,-15,0,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,955,4,0,1230,-20,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1915,-3,0,2110,-5,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,-2,0,2205,-1,0,0 +2013,6,18,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,640,-5,0,926,-14,0,0 +2013,4,19,5,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,840,-5,0,943,-16,0,0 +2013,6,3,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1259,10,0,1648,18,1,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1122,-3,0,1220,-3,0,0 +2013,6,8,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,0,0,855,3,0,0 +2013,8,5,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-2,0,958,9,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1246,3,0,1655,-1,0,0 +2013,9,4,3,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,758,-3,0,917,-8,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,915,3,0,1005,-5,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1720,3,0,2025,7,0,0 +2013,5,18,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,-5,0,1005,-19,0,0 +2013,10,1,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1016,-6,0,1157,-4,0,0 +2013,10,1,2,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,635,-9,0,745,-1,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2055,19,1,2210,18,1,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,820,2,0,1155,-8,0,0 +2013,8,1,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,25,1,2125,25,1,0 +2013,6,28,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,43,1,1813,50,1,0 +2013,5,9,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-3,0,1045,-21,0,0 +2013,7,3,3,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1740,12,0,2015,-16,0,0 +2013,4,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,741,-1,0,1141,-12,0,0 +2013,5,12,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1440,11,0,1628,32,1,0 +2013,6,11,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,22,1,1810,26,1,0 +2013,4,29,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-4,0,1031,31,1,0 +2013,5,5,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,710,-4,0,915,-22,0,0 +2013,4,2,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-4,0,1655,-14,0,0 +2013,8,21,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,-4,0,1255,-4,0,0 +2013,9,28,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-2,0,2005,-5,0,0 +2013,4,24,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,-5,0,1629,-20,0,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1727,-4,0,1824,-10,0,0 +2013,5,13,1,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1550,68,1,1905,69,1,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1835,7,0,2010,-9,0,0 +2013,9,22,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,2003,44,1,2200,23,1,0 +2013,8,8,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,-2,0,1020,4,0,0 +2013,10,5,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1000,-9,0,1320,-25,0,0 +2013,5,13,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1125,-4,0,1220,-3,0,0 +2013,4,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1652,-3,0,1753,-4,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1407,-4,0,2243,-32,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,749,2,0,1003,10,0,0 +2013,10,12,6,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-1,0,1130,3,0,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,17,1,1735,1,0,0 +2013,5,21,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,846,-4,0,1058,26,1,0 +2013,5,9,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1050,77,1,1354,77,1,0 +2013,8,9,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,-1,0,745,-3,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,0,0,922,-3,0,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2005,0,,2204,0,1,1 +2013,10,9,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,6,0,1135,3,0,0 +2013,10,9,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-8,0,1405,-10,0,0 +2013,8,8,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1300,-9,0,1409,-14,0,0 +2013,4,27,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,834,-2,0,1020,-10,0,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1415,28,1,1740,15,1,0 +2013,10,8,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,720,-6,0,820,-13,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-2,0,1437,-6,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,3,0,1136,11,0,0 +2013,5,2,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-3,0,1642,-4,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,4,0,1555,2,0,0 +2013,9,6,5,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,0,0,1035,14,0,0 +2013,10,3,4,OO,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,850,1,0,1044,-3,0,0 +2013,8,20,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1400,7,0,1525,2,0,0 +2013,8,11,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1205,8,0,1345,2,0,0 +2013,6,28,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,232,1,1218,264,1,0 +2013,6,20,4,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-6,0,1914,-13,0,0 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,959,-2,0,1237,-15,0,0 +2013,6,7,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-6,0,1003,2,0,0 +2013,10,29,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1110,144,1,1230,146,1,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,25,1,1635,24,1,0 +2013,9,13,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-6,0,1130,6,0,0 +2013,9,15,7,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,929,-4,0,1143,-14,0,0 +2013,7,13,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2155,55,1,2330,29,1,0 +2013,5,6,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,-12,0,618,40,1,0 +2013,5,4,6,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,800,-9,0,1153,-14,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,835,19,1,1055,7,0,0 +2013,4,20,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1540,-5,0,1735,-11,0,0 +2013,5,1,3,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-11,0,1335,-15,0,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1750,-4,0,1911,-14,0,0 +2013,8,1,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1716,5,0,2341,45,1,0 +2013,8,26,1,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-5,0,1615,-4,0,0 +2013,8,30,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1639,-5,0,1919,4,0,0 +2013,5,29,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1205,3,0,1315,-8,0,0 +2013,10,31,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-7,0,612,-18,0,0 +2013,5,1,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1333,7,0,1522,0,0,0 +2013,7,30,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1850,0,0,1925,8,0,0 +2013,5,13,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,645,0,0,800,-6,0,0 +2013,10,24,4,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1600,8,0,1843,-1,0,0 +2013,8,26,1,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1110,-7,0,1339,-13,0,0 +2013,4,11,4,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1545,25,1,1907,19,1,0 +2013,5,4,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,-9,0,1938,-5,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1125,55,1,1310,64,1,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1455,50,1,1630,50,1,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,955,-2,0,1248,-7,0,0 +2013,5,9,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,605,-2,0,735,-11,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2030,38,1,2215,26,1,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1430,-7,0,1545,15,1,0 +2013,7,24,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,607,-5,0,1203,-2,0,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,852,-6,0,1126,-12,0,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1036,-3,0,1335,-15,0,0 +2013,4,22,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1055,0,0,1223,-3,0,0 +2013,5,24,5,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1600,62,1,1846,50,1,0 +2013,10,6,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1505,-9,0,1740,-13,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,847,-3,0,933,-13,0,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1122,-3,0,1304,-12,0,0 +2013,5,13,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1859,-8,0,2210,-4,0,0 +2013,9,22,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,14,0,956,-7,0,0 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,0,,1600,0,1,1 +2013,6,22,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1602,-9,0,1759,-5,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,-1,0,1555,-4,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1750,28,1,1925,16,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2200,-2,0,2303,-13,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,-4,0,1200,-5,0,0 +2013,9,17,2,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1730,1,0,2015,10,0,0 +2013,4,26,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,-8,0,1255,-14,0,0 +2013,8,19,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-1,0,809,3,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1605,5,0,1655,10,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,743,-6,0,1114,-40,0,0 +2013,10,11,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,850,-5,0,1010,-13,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,20,1,1416,14,0,0 +2013,7,12,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1110,0,0,1240,-17,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,-10,0,1300,-18,0,0 +2013,10,22,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,951,63,1,1133,44,1,0 +2013,7,16,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,935,-2,0,1153,1,0,0 +2013,8,20,2,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,11,0,2046,21,1,0 +2013,4,20,6,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1245,-1,0,1305,-8,0,0 +2013,4,21,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,2006,-6,0,2115,-15,0,0 +2013,4,9,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1022,-2,0,1301,-8,0,0 +2013,8,16,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-4,0,1130,2,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-3,0,1408,-2,0,0 +2013,7,26,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-9,0,914,-6,0,0 +2013,6,12,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1250,1,0,1400,-15,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1910,21,1,2015,14,0,0 +2013,7,31,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-2,0,1225,-14,0,0 +2013,8,15,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,0,0,830,10,0,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,-4,0,2140,-8,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1550,16,1,2225,21,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,1,0,1107,-6,0,0 +2013,6,17,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,133,1,2155,134,1,0 +2013,7,13,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,50,1,820,53,1,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1621,3,0,1742,-9,0,0 +2013,6,14,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-1,0,1257,-12,0,0 +2013,5,31,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2056,20,1,500,8,0,0 +2013,5,31,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2050,-5,0,2200,-12,0,0 +2013,7,27,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1410,-1,0,1645,6,0,0 +2013,4,13,6,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-3,0,1356,-20,0,0 +2013,8,14,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,915,-6,0,1122,23,1,0 +2013,5,8,3,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2022,-6,0,2205,14,0,0 +2013,10,11,5,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1723,-7,0,2047,-9,0,0 +2013,4,17,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1023,-8,0,1148,3,0,0 +2013,5,6,1,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1740,9,0,1943,-4,0,0 +2013,10,18,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,740,-5,0,1509,-28,0,0 +2013,5,5,7,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1750,32,1,2036,39,1,0 +2013,7,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1055,5,0,1235,10,0,0 +2013,4,23,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,910,56,1,1110,87,1,0 +2013,7,7,7,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1159,16,1,1753,41,1,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1440,-3,0,1805,-9,0,0 +2013,4,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1545,0,,1740,0,1,1 +2013,4,8,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,620,-2,0,1428,-6,0,0 +2013,8,23,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-7,0,733,-16,0,0 +2013,10,21,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,2,0,1715,1,0,0 +2013,8,23,5,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,755,16,1,1057,3,0,0 +2013,5,31,5,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,4,0,2015,-5,0,0 +2013,7,27,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,740,-2,0,900,-5,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1130,2,0,1235,-1,0,0 +2013,4,28,7,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1755,14,0,2045,13,0,0 +2013,6,5,3,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,600,2,0,705,11,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,-1,0,920,-7,0,0 +2013,6,3,1,OO,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1755,4,0,1955,6,0,0 +2013,4,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,832,-2,0,940,-11,0,0 +2013,5,6,1,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1720,-5,0,1850,-25,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1955,32,1,2144,15,1,0 +2013,7,16,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,710,-4,0,829,-7,0,0 +2013,5,27,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1055,0,0,1145,-5,0,0 +2013,6,6,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1519,108,1,1845,115,1,0 +2013,8,1,4,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1119,-5,0,1234,-12,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-4,0,1520,-26,0,0 +2013,5,30,4,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1450,33,1,1615,38,1,0 +2013,4,18,4,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,800,-4,0,1050,-22,0,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,166,1,2130,220,1,0 +2013,10,8,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,-3,0,1930,-7,0,0 +2013,9,27,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-5,0,744,-3,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,829,-3,0,944,18,1,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1606,1,0,1859,-2,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,853,-4,0,1212,-44,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,-2,0,1540,-19,0,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,815,5,0,935,5,0,0 +2013,10,3,4,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,0,0,925,-5,0,0 +2013,8,4,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,-2,0,1900,13,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,716,-6,0,853,-17,0,0 +2013,4,9,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-7,0,2133,-15,0,0 +2013,4,22,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,1528,56,1,1759,56,1,0 +2013,5,6,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1220,-2,0,1455,-5,0,0 +2013,9,14,6,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,-8,0,950,-8,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,221,1,2320,216,1,0 +2013,4,18,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1530,13,0,1815,19,1,0 +2013,8,22,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1121,12,0,1259,-6,0,0 +2013,10,30,3,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,28,1,1810,30,1,0 +2013,10,18,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1058,-5,0,1132,6,0,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,841,-4,0,1201,-9,0,0 +2013,9,11,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-8,0,1015,-42,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,-4,0,2331,1,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2020,-5,0,2126,7,0,0 +2013,4,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14570,Reno/Tahoe International,Reno,NV,1925,53,1,2015,49,1,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2030,-3,0,2145,-8,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,838,-7,0,1027,-12,0,0 +2013,6,8,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-3,0,1255,-4,0,0 +2013,5,1,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1156,-3,0,1359,2,0,0 +2013,7,8,1,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,735,-6,0,1340,-17,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1726,41,1,2009,59,1,0 +2013,6,15,6,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,800,-5,0,1056,-31,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,759,-5,0,1034,-7,0,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,0,0,1038,-15,0,0 +2013,9,27,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-8,0,835,-19,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1805,2,0,2105,1,0,0 +2013,10,30,3,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-1,0,909,2,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,810,-5,0,1025,-4,0,0 +2013,4,19,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-5,0,1108,2,0,0 +2013,8,2,5,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,17,1,1105,21,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,817,-2,0,919,-6,0,0 +2013,7,7,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-2,0,1010,0,0,0 +2013,9,16,1,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,-3,0,945,-8,0,0 +2013,7,22,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11618,Newark Liberty International,Newark,NJ,1400,-6,0,1529,3,0,0 +2013,4,30,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2015,73,1,2304,72,1,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,215,1,2215,191,1,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,700,-4,0,745,-4,0,0 +2013,9,19,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,720,0,0,908,-17,0,0 +2013,10,9,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2015,8,0,2130,-11,0,0 +2013,8,17,6,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-7,0,2049,-18,0,0 +2013,8,7,3,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,175,1,1355,173,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1150,-1,0,1245,-12,0,0 +2013,6,16,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1112,-3,0,1200,-9,0,0 +2013,4,23,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1455,-4,0,1705,-27,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1900,7,0,2050,-11,0,0 +2013,4,12,5,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,628,-1,0,1400,-26,0,0 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1200,7,0,1315,-4,0,0 +2013,9,8,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1115,-1,0,1245,-9,0,0 +2013,5,23,4,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,855,-3,0,1140,-31,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1645,5,0,1750,-2,0,0 +2013,4,22,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-4,0,845,-8,0,0 +2013,7,12,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2045,-5,0,449,-9,0,0 +2013,8,25,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1804,-4,0,2148,-26,0,0 +2013,4,3,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1125,20,1,1345,-3,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-5,0,1045,-12,0,0 +2013,8,15,4,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,619,0,0,921,0,0,0 +2013,7,19,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-10,0,735,-15,0,0 +2013,4,23,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,-1,0,1917,-8,0,0 +2013,5,23,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1220,10,0,1422,19,1,0 +2013,8,3,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1535,-4,0,1707,-19,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1117,-5,0,1404,-25,0,0 +2013,8,28,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1920,26,1,2235,21,1,0 +2013,5,24,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-3,0,2151,4,0,0 +2013,9,13,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1135,23,1,1710,-4,0,0 +2013,9,29,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,545,-11,0,723,-11,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,-4,0,1940,-16,0,0 +2013,4,8,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,-5,0,1034,-11,0,0 +2013,9,24,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1430,5,0,1752,-9,0,0 +2013,4,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,942,-5,0,1332,-15,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2145,-1,0,2320,13,0,0 +2013,10,14,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-6,0,1635,8,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,-2,0,1035,-12,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,645,26,1,805,18,1,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,55,1,1825,46,1,0 +2013,4,1,1,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1659,-1,0,1949,19,1,0 +2013,10,26,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1815,-1,0,1930,-15,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2105,8,0,2340,3,0,0 +2013,8,27,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-2,0,1240,-27,0,0 +2013,10,22,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,-7,0,711,-1,0,0 +2013,4,26,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1125,-3,0,1337,15,1,0 +2013,9,22,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-4,0,1433,-7,0,0 +2013,10,10,4,9E,12339,Indianapolis International,Indianapolis,IN,12953,LaGuardia,New York,NY,1310,40,1,1514,43,1,0 +2013,8,29,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1300,3,0,2105,1,0,0 +2013,8,16,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-5,0,853,-16,0,0 +2013,9,17,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-5,0,1010,-3,0,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1558,85,1,13,63,1,0 +2013,10,25,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2045,0,0,2159,-4,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2215,-1,0,45,-15,0,0 +2013,10,5,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1555,-2,0,1720,-12,0,0 +2013,9,3,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-5,0,1431,-17,0,0 +2013,8,27,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,4,0,1737,-25,0,0 +2013,9,20,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1730,-4,0,1909,-5,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,-4,0,937,-7,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,755,5,0,1055,7,0,0 +2013,9,24,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1350,9,0,1450,13,0,0 +2013,4,13,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1500,64,1,1710,63,1,0 +2013,6,10,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,515,-2,0,848,-10,0,0 +2013,5,3,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1630,-8,0,1801,-20,0,0 +2013,5,20,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1800,-31,0,0 +2013,4,9,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1700,20,1,1825,15,1,0 +2013,10,10,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,826,-4,0,1219,5,0,0 +2013,5,1,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,928,-10,0,0 +2013,10,25,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,-6,0,2110,-12,0,0 +2013,4,2,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-5,0,546,-12,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1113,-3,0,1300,-12,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1040,-5,0,1825,-28,0,0 +2013,5,22,3,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,615,-6,0,805,25,1,0 +2013,8,1,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,644,-1,0,809,-5,0,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,707,-7,0,926,-1,0,0 +2013,5,7,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,920,-10,0,1530,-2,0,0 +2013,8,5,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1745,11,0,1926,8,0,0 +2013,7,11,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1935,30,1,2000,39,1,0 +2013,5,28,2,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1915,-4,0,2031,-8,0,0 +2013,7,5,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,645,1,0,1021,-7,0,0 +2013,8,12,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-8,0,1555,-14,0,0 +2013,8,7,3,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,77,1,1829,85,1,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1010,-4,0,1308,-31,0,0 +2013,4,21,7,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1245,-8,0,1403,0,0,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-2,0,935,3,0,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1600,30,1,1725,27,1,0 +2013,7,20,6,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1355,-4,0,2114,0,0,0 +2013,5,4,6,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,929,39,1,1141,34,1,0 +2013,6,4,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1940,2,0,2055,41,1,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,2110,63,1,2308,64,1,0 +2013,8,28,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2205,-4,0,2306,-18,0,0 +2013,7,1,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,48,1,1910,50,1,0 +2013,6,1,6,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1005,25,1,1330,15,1,0 +2013,4,28,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,19,1,1235,11,0,0 +2013,10,24,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,16,1,2120,-4,0,0 +2013,8,14,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,1,0,1420,2,0,0 +2013,7,29,1,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-7,0,1754,-1,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,-3,0,1140,-14,0,0 +2013,10,24,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,855,1,0,1120,12,0,0 +2013,4,12,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,-6,0,1750,-5,0,0 +2013,7,2,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-4,0,2030,9,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,-2,0,2350,-7,0,0 +2013,7,16,2,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,935,14,0,1235,1,0,0 +2013,7,4,4,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-2,0,1017,-4,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,7,0,1535,-4,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1852,0,0,2259,10,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,0,0,2300,2,0,0 +2013,8,29,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-1,0,725,-16,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,659,-4,0,1000,-41,0,0 +2013,4,9,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,-7,0,1320,-12,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2150,1,0,2300,-9,0,0 +2013,7,15,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,902,-6,0,948,-12,0,0 +2013,6,17,1,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1514,-7,0,1735,-13,0,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,-7,0,1933,-4,0,0 +2013,7,17,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1010,3,0,1125,-9,0,0 +2013,5,22,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-2,0,1845,-13,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2147,-3,0,14,-11,0,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,-5,0,2041,-27,0,0 +2013,9,7,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1411,-4,0,2230,-7,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,29,1,929,27,1,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1135,23,1,1332,11,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,710,-3,0,955,-17,0,0 +2013,9,23,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,101,1,1920,106,1,0 +2013,7,22,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-3,0,1755,-7,0,0 +2013,8,28,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2135,8,0,615,-2,0,0 +2013,9,8,7,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1525,7,0,1642,4,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1729,8,0,2046,-3,0,0 +2013,8,28,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1115,-2,0,1322,-18,0,0 +2013,5,30,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1256,18,1,1336,8,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1745,-6,0,2205,-27,0,0 +2013,6,10,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,703,-1,0,1047,-23,0,0 +2013,7,27,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1141,28,1,1500,11,0,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-4,0,1003,-32,0,0 +2013,8,27,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-5,0,725,-4,0,0 +2013,4,4,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1120,29,1,1530,41,1,0 +2013,8,13,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-3,0,900,-12,0,0 +2013,6,29,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1440,-3,0,1755,-4,0,0 +2013,8,24,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,745,-1,0,1005,-10,0,0 +2013,4,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2053,-5,0,2359,-13,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1550,13,0,1740,7,0,0 +2013,7,11,4,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1115,272,1,1254,263,1,0 +2013,6,6,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2216,-10,0,715,-31,0,0 +2013,4,12,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1205,1,0,1310,-4,0,0 +2013,4,28,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1430,-6,0,1624,-18,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,33,1,1150,37,1,0 +2013,10,7,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1120,-2,0,1213,-8,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1335,198,1,1640,203,1,0 +2013,7,20,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2150,0,0,2259,63,1,0 +2013,6,24,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,0,0,1633,-14,0,0 +2013,7,7,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-1,0,2151,-12,0,0 +2013,4,29,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-7,0,1505,-9,0,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1930,7,0,2035,-9,0,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1706,87,1,2019,75,1,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1120,79,1,1355,67,1,0 +2013,8,26,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1942,-11,0,2155,-10,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1550,17,1,1655,20,1,0 +2013,4,17,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1251,-8,0,1539,-12,0,0 +2013,9,12,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,0,0,1110,-1,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1745,-2,0,1925,-3,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-7,0,2325,-9,0,0 +2013,4,21,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1840,6,0,2105,-10,0,0 +2013,5,16,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,-2,0,1625,-1,0,0 +2013,5,13,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-4,0,1635,-12,0,0 +2013,10,29,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-8,0,2327,4,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-1,0,30,-23,0,0 +2013,7,14,7,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,-4,0,2020,26,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1630,1,0,1833,-5,0,0 +2013,7,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1715,-3,0,1840,-8,0,0 +2013,9,27,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,0,0,1032,-6,0,0 +2013,5,10,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,-7,0,1243,-20,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,-3,0,1910,11,0,0 +2013,8,9,5,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1035,3,0,1630,4,0,0 +2013,7,16,2,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,730,55,1,945,67,1,0 +2013,5,27,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1425,-1,0,1512,-2,0,0 +2013,9,25,3,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-2,0,717,-2,0,0 +2013,6,19,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,753,1,0,0 +2013,7,11,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,0,0,650,-5,0,0 +2013,7,25,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1400,37,1,1525,41,1,0 +2013,9,23,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2130,28,1,2350,18,1,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,0,0,2359,-7,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1333,90,1,1654,58,1,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1100,5,0,1450,-17,0,0 +2013,6,28,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1800,57,1,1905,44,1,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,1112,-14,0,0 +2013,9,1,7,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1850,-1,0,2210,2,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1120,-6,0,1247,-34,0,0 +2013,5,11,6,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,26,1,1135,19,1,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,0,0,1435,-8,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-7,0,1006,-10,0,0 +2013,6,22,6,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,6,0,2010,-21,0,0 +2013,10,9,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,835,-8,0,1028,-3,0,0 +2013,8,9,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1845,78,1,2030,83,1,0 +2013,10,7,1,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,622,56,1,1039,47,1,0 +2013,6,23,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1304,-2,0,1556,5,0,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1610,22,1,2015,20,1,0 +2013,4,1,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,0,,1408,0,1,1 +2013,10,28,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1625,-8,0,1750,-14,0,0 +2013,7,3,3,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1245,9,0,1631,21,1,0 +2013,10,27,7,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2203,-3,0,115,-21,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,4,0,915,1,0,0 +2013,8,28,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,-2,0,2105,-6,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,2,0,1525,12,0,0 +2013,5,13,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-3,0,1315,-3,0,0 +2013,4,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,934,1,0,1044,5,0,0 +2013,4,8,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1020,-6,0,1105,-2,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,630,-5,0,951,-7,0,0 +2013,10,7,1,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,640,-5,0,807,-13,0,0 +2013,8,9,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1101,26,1,1206,4,0,0 +2013,8,14,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1745,8,0,2110,6,0,0 +2013,6,10,1,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,715,-2,0,823,-17,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,4,0,830,-1,0,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1220,-3,0,1315,-3,0,0 +2013,10,19,6,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,900,-4,0,1157,-6,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,829,3,0,1424,-12,0,0 +2013,10,25,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1950,-13,0,2140,25,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-4,0,1345,-4,0,0 +2013,5,31,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1745,-5,0,2031,-26,0,0 +2013,5,26,7,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-2,0,1319,-4,0,0 +2013,5,20,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1845,8,0,2010,4,0,0 +2013,4,13,6,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-3,0,1407,-11,0,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1755,6,0,2005,-7,0,0 +2013,6,27,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-7,0,1255,-13,0,0 +2013,6,16,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,5,0,1232,-7,0,0 +2013,5,4,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-1,0,825,12,0,0 +2013,8,1,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-6,0,1828,-6,0,0 +2013,5,22,3,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,9,0,830,3,0,0 +2013,9,4,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,813,-6,0,1104,-11,0,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1350,43,1,1525,37,1,0 +2013,7,9,2,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,3,0,2335,9,0,0 +2013,6,8,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-1,0,820,-2,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-3,0,1239,-26,0,0 +2013,6,28,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2045,28,1,2330,29,1,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1200,-1,0,1355,-6,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,-1,0,1425,-14,0,0 +2013,4,4,4,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1716,-6,0,1902,-25,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1145,0,0,1513,-1,0,0 +2013,4,30,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-3,0,839,-21,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,6,0,1003,4,0,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1400,1,0,1620,-24,0,0 +2013,4,4,4,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,952,-1,0,0 +2013,7,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1127,25,1,1253,19,1,0 +2013,10,29,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1738,-1,0,2005,-4,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,44,1,1311,27,1,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-6,0,2200,-18,0,0 +2013,10,14,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1226,-4,0,1400,-16,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,216,1,1926,195,1,0 +2013,6,1,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,15,1,1835,-2,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,700,-3,0,825,-14,0,0 +2013,10,6,7,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1855,49,1,2159,35,1,0 +2013,10,18,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,647,-3,0,1148,-11,0,0 +2013,10,21,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,600,-7,0,718,-17,0,0 +2013,8,31,6,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-4,0,1541,-8,0,0 +2013,5,2,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2016,34,1,2041,40,1,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,5,0,1620,10,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1915,-4,0,2044,-7,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,0,0,1500,-13,0,0 +2013,4,28,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-5,0,1510,-23,0,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1357,-7,0,1740,-26,0,0 +2013,6,7,5,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1859,118,1,2134,182,1,0 +2013,9,27,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2025,-5,0,2156,-6,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,1,0,1817,-13,0,0 +2013,4,22,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-1,0,1633,-20,0,0 +2013,5,28,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,852,15,1,1229,5,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1037,6,0,1215,8,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1611,0,0,2359,-34,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1615,20,1,1720,13,0,0 +2013,9,17,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1236,-4,0,1311,2,0,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,2,0,2235,-12,0,0 +2013,9,6,5,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,-7,0,736,-27,0,0 +2013,10,20,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1810,5,0,1930,-6,0,0 +2013,6,23,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,718,-8,0,1444,-3,0,0 +2013,4,17,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,-4,0,2100,-32,0,0 +2013,5,2,4,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1315,-5,0,1600,-34,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2215,13,0,2358,9,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,-1,0,1600,4,0,0 +2013,8,14,3,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,-10,0,1035,3,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1340,11,0,1445,-1,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1538,-5,0,1649,-17,0,0 +2013,5,15,3,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1405,5,0,1647,9,0,0 +2013,10,3,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,900,11,0,1150,10,0,0 +2013,7,31,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,-2,0,855,18,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1515,0,0,1850,-16,0,0 +2013,8,3,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1625,9,0,1725,16,1,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1715,27,1,2305,38,1,0 +2013,10,11,5,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1225,0,,1552,0,1,1 +2013,5,12,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,13,0,1832,6,0,0 +2013,7,11,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1755,11,0,1940,10,0,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-1,0,1040,-10,0,0 +2013,10,22,2,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1406,-3,0,1540,-15,0,0 +2013,4,13,6,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1845,0,,2205,0,1,1 +2013,7,9,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,43,1,530,49,1,0 +2013,6,30,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-3,0,1002,-8,0,0 +2013,8,16,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-1,0,1220,2,0,0 +2013,6,13,4,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,11,0,1538,12,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,0,0,750,-8,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2115,18,1,2230,7,0,0 +2013,9,5,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,-1,0,1830,-5,0,0 +2013,8,12,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-2,0,1215,-6,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,909,4,0,1127,12,0,0 +2013,8,7,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,19,1,2310,6,0,0 +2013,5,29,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1245,-6,0,2042,-7,0,0 +2013,4,29,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1015,-8,0,1325,-14,0,0 +2013,10,24,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1451,0,0,1601,-8,0,0 +2013,7,29,1,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,-8,0,1145,-17,0,0 +2013,8,29,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1440,-7,0,0 +2013,10,2,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,-11,0,2241,-7,0,0 +2013,5,23,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,627,10,0,1000,-19,0,0 +2013,4,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2136,-1,0,2245,-8,0,0 +2013,7,28,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1614,7,0,1659,11,0,0 +2013,5,2,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,720,2,0,825,5,0,0 +2013,9,1,7,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1000,-3,0,1043,-3,0,0 +2013,4,22,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,850,7,0,0 +2013,10,29,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1316,0,0,1503,-4,0,0 +2013,4,11,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,12,0,1425,-2,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,645,-3,0,805,-3,0,0 +2013,10,3,4,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1735,24,1,1900,31,1,0 +2013,9,25,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-3,0,1715,-3,0,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,830,-3,0,1145,-25,0,0 +2013,8,4,7,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-3,0,614,-5,0,0 +2013,7,19,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-6,0,1036,-5,0,0 +2013,5,31,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,95,1,1447,89,1,0 +2013,9,11,3,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1943,-5,0,2247,-4,0,0 +2013,10,29,2,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1700,20,1,1952,17,1,0 +2013,10,25,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,12,0,851,4,0,0 +2013,8,30,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,750,-5,0,1115,-7,0,0 +2013,7,20,6,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,640,-3,0,908,-8,0,0 +2013,5,3,5,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1310,15,1,1422,2,0,0 +2013,5,16,4,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,79,1,1640,69,1,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1830,15,1,2125,53,1,0 +2013,4,13,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,810,-5,0,956,6,0,0 +2013,7,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,630,-6,0,856,-26,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,0,0,1055,-11,0,0 +2013,6,13,4,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,828,-2,0,1022,-16,0,0 +2013,5,5,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1214,6,0,1305,0,0,0 +2013,8,19,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,-4,0,1744,-15,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,42,1,2140,53,1,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1145,-4,0,1305,-9,0,0 +2013,5,7,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-1,0,850,15,1,0 +2013,5,7,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2020,209,1,2200,195,1,0 +2013,5,6,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1430,60,1,1545,53,1,0 +2013,6,4,2,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,-2,0,2023,-10,0,0 +2013,9,9,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1616,-6,0,1922,12,0,0 +2013,6,22,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1635,0,0,1820,-18,0,0 +2013,6,12,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,-4,0,2120,30,1,0 +2013,7,29,1,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,6,0,735,11,0,0 +2013,9,2,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,-1,0,722,-12,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,6,0,1740,-6,0,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2030,86,1,2235,98,1,0 +2013,7,4,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1150,-7,0,1455,-10,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,3,0,1810,-21,0,0 +2013,8,14,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,7,0,1133,7,0,0 +2013,8,19,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1919,-1,0,2100,-4,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,2005,27,1,2330,22,1,0 +2013,4,28,7,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,1,0,2000,9,0,0 +2013,5,17,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1114,1,0,1224,6,0,0 +2013,4,12,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1505,44,1,1530,35,1,0 +2013,8,17,6,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2053,-9,0,500,-6,0,0 +2013,4,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1650,7,0,1930,2,0,0 +2013,6,29,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,855,0,0,922,8,0,0 +2013,4,29,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1350,-5,0,1655,-9,0,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1830,9,0,2207,9,0,0 +2013,6,2,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1845,-9,0,2110,12,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,753,-5,0,1013,-8,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1415,-3,0,1542,-10,0,0 +2013,4,21,7,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1930,14,0,2133,12,0,0 +2013,7,16,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2120,-2,0,2240,-7,0,0 +2013,5,23,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,0,,2010,0,1,1 +2013,9,22,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,-6,0,2039,-22,0,0 +2013,4,4,4,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,645,-3,0,1235,-3,0,0 +2013,7,8,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,0,0,1338,-8,0,0 +2013,9,15,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1605,56,1,1725,47,1,0 +2013,6,18,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-5,0,745,7,0,0 +2013,5,4,6,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1750,-2,0,2045,-31,0,0 +2013,9,22,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,5,0,2132,2,0,0 +2013,4,6,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,2,0,925,-6,0,0 +2013,7,8,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1241,49,1,1601,54,1,0 +2013,7,4,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1055,-2,0,1335,-5,0,0 +2013,4,12,5,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1620,147,1,1916,161,1,0 +2013,8,28,3,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,957,-1,0,1321,7,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,16,1,1020,13,0,0 +2013,10,13,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1750,-8,0,1905,-7,0,0 +2013,8,11,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1045,-1,0,1306,8,0,0 +2013,10,26,6,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1631,-3,0,1817,2,0,0 +2013,10,26,6,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1135,-7,0,1355,-19,0,0 +2013,6,14,5,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-3,0,1458,-8,0,0 +2013,5,21,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,4,0,1435,-4,0,0 +2013,5,6,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,0,0,830,-13,0,0 +2013,8,4,7,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1145,-6,0,1357,-15,0,0 +2013,8,11,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-2,0,1650,6,0,0 +2013,5,8,3,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,720,2,0,935,-22,0,0 +2013,5,8,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,75,1,2227,84,1,0 +2013,9,5,4,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-13,0,1420,-16,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1710,4,0,1925,10,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1945,51,1,2123,45,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,12,0,2222,-10,0,0 +2013,7,6,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-5,0,1214,-6,0,0 +2013,4,12,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,0,,2000,0,1,1 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,945,-5,0,1430,-12,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,61,1,1555,63,1,0 +2013,5,24,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-7,0,1353,-8,0,0 +2013,7,29,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1346,-3,0,1531,-5,0,0 +2013,7,8,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,715,82,1,734,78,1,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,14,0,1355,1,0,0 +2013,10,25,5,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1655,13,0,2000,-7,0,0 +2013,6,14,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-5,0,720,-15,0,0 +2013,9,8,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1620,21,1,2020,6,0,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-3,0,2055,-3,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1040,4,0,1155,4,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1715,4,0,2230,-12,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,-3,0,2250,1,0,0 +2013,9,23,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,846,-5,0,1119,-8,0,0 +2013,5,14,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1256,6,0,1601,-6,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-2,0,1836,2,0,0 +2013,5,24,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,-6,0,833,1,0,0 +2013,6,2,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,69,1,1815,48,1,0 +2013,8,30,5,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1802,-4,0,1917,-11,0,0 +2013,6,4,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1110,-3,0,1215,-17,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1708,38,1,1810,24,1,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-5,0,1920,10,0,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1515,-6,0,1806,-26,0,0 +2013,6,30,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,15,1,2155,37,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,810,-2,0,957,-15,0,0 +2013,5,23,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,23,1,1930,59,1,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,-4,0,1905,-16,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,836,-20,0,0 +2013,7,24,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-1,0,1340,-2,0,0 +2013,7,29,1,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1055,152,1,1335,138,1,0 +2013,4,14,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1550,1,0,1655,-6,0,0 +2013,4,25,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,22,1,1652,5,0,0 +2013,6,4,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1835,-5,0,1930,-2,0,0 +2013,8,8,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,949,27,1,1103,33,1,0 +2013,6,30,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1743,0,,1915,0,1,1 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1010,0,0,1605,-15,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,-1,0,2213,-7,0,0 +2013,10,7,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1632,-5,0,0 +2013,4,30,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2040,-1,0,2250,4,0,0 +2013,7,21,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-6,0,825,-5,0,0 +2013,6,10,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1522,22,1,1640,18,1,0 +2013,4,3,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1945,7,0,2030,-11,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2005,55,1,2311,48,1,0 +2013,5,21,2,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1925,4,0,2030,0,0,0 +2013,4,16,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-7,0,2111,-28,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-4,0,1335,-19,0,0 +2013,6,30,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1625,-1,0,1935,20,1,0 +2013,6,7,5,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,845,-19,0,0 +2013,6,24,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,58,1,1840,44,1,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1124,12,0,1303,15,1,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,945,2,0,1115,35,1,0 +2013,8,17,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,10,0,2038,9,0,0 +2013,10,3,4,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,630,-5,0,929,-16,0,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1240,-2,0,1600,-6,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,3,0,1735,3,0,0 +2013,8,15,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1122,-8,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2155,55,1,2310,52,1,0 +2013,10,14,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,810,-5,0,955,-21,0,0 +2013,4,18,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2111,6,0,526,8,0,0 +2013,10,2,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1920,-9,0,44,0,0,0 +2013,6,16,7,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,1009,-12,0,0 +2013,8,11,7,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1215,5,0,1342,-4,0,0 +2013,4,5,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1137,13,0,1624,1,0,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-10,0,1051,-7,0,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1650,12,0,1815,13,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,53,1,2244,46,1,0 +2013,8,24,6,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1430,19,1,1615,7,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,168,1,1740,170,1,0 +2013,6,30,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1141,9,0,1457,-4,0,0 +2013,9,4,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,44,1,1125,39,1,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,-1,0,1140,-2,0,0 +2013,8,28,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1600,-1,0,1630,-12,0,0 +2013,10,6,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,727,-2,0,905,-4,0,0 +2013,7,22,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,20,1,1545,30,1,0 +2013,5,6,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,923,17,1,1126,6,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,-1,0,1530,-21,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-2,0,1335,3,0,0 +2013,4,6,6,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,-16,0,2056,-24,0,0 +2013,10,28,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1230,-6,0,1422,0,0,0 +2013,5,5,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,930,-6,0,1100,-5,0,0 +2013,8,1,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,7,0,1959,-7,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1250,-3,0,1430,-13,0,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-2,0,1336,15,1,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2008,-3,0,2138,-13,0,0 +2013,6,26,3,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,600,118,1,725,140,1,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,30,-11,0,552,-7,0,0 +2013,10,14,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1905,-5,0,2045,-11,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1635,10,0,1805,3,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-3,0,1830,5,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1405,99,1,1845,86,1,0 +2013,4,9,2,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,617,-6,0,1100,-20,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,-3,0,1535,-6,0,0 +2013,7,13,6,UA,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,2202,15,1,2328,-2,0,0 +2013,7,15,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-4,0,812,2,0,0 +2013,9,9,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,13,0,2215,-12,0,0 +2013,5,16,4,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1915,63,1,2154,65,1,0 +2013,5,12,7,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1608,-5,0,2053,2,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1912,-5,0,2043,-5,0,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1825,186,1,15,178,1,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2252,-8,0,2314,-16,0,0 +2013,10,11,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1535,3,0,1735,1,0,0 +2013,8,29,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,9,0,2029,16,1,0 +2013,7,25,4,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1559,77,1,1828,84,1,0 +2013,4,30,2,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1131,-6,0,2000,-7,0,0 +2013,9,5,4,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,920,4,0,1504,0,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2045,103,1,2215,102,1,0 +2013,7,14,7,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,711,-4,0,805,-12,0,0 +2013,4,26,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,1245,-19,0,0 +2013,10,14,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-6,0,1829,-14,0,0 +2013,4,26,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,735,0,0,820,6,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,740,37,1,915,37,1,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2210,18,1,48,13,0,0 +2013,5,2,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,-3,0,940,-13,0,0 +2013,10,29,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1836,-10,0,2015,-12,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1525,0,0,1640,14,0,0 +2013,8,11,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,945,8,0,1100,10,0,0 +2013,7,11,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1722,128,1,1835,122,1,0 +2013,10,17,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2045,-5,0,505,-32,0,0 +2013,8,6,2,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,29,1,2010,19,1,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,95,1,2217,101,1,0 +2013,9,22,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1500,54,1,1630,70,1,0 +2013,7,14,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-6,0,1633,-9,0,0 +2013,5,2,4,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,2017,41,1,2200,36,1,0 +2013,9,16,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,-6,0,2123,-4,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,-2,0,14,-8,0,0 +2013,10,18,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,1,0,930,2,0,0 +2013,6,30,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1825,0,,2006,0,1,1 +2013,5,24,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,10,0,1955,10,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1410,10,0,1645,-22,0,0 +2013,10,16,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,1009,-5,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1410,-4,0,1815,-4,0,0 +2013,10,8,2,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1120,-10,0,1230,-12,0,0 +2013,10,21,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2210,-2,0,2355,-23,0,0 +2013,7,26,5,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,15,1,605,20,1,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,35,1,1600,23,1,0 +2013,5,22,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-2,0,1026,-4,0,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1901,11,0,2213,32,1,0 +2013,8,26,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-6,0,1238,-28,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1621,-5,0,1917,-19,0,0 +2013,7,11,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,25,1,1949,18,1,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2135,4,0,35,-5,0,0 +2013,8,16,5,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,631,125,1,808,120,1,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,745,-2,0,1115,-13,0,0 +2013,4,30,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-11,0,1030,-22,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2055,15,1,30,-7,0,0 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,5,0,943,-5,0,0 +2013,5,8,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-4,0,900,-11,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2045,34,1,2210,22,1,0 +2013,7,30,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1600,30,1,15,18,1,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1155,0,,1300,0,1,1 +2013,9,3,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1622,0,0,1743,-7,0,0 +2013,8,31,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,555,-2,0,1420,-2,0,0 +2013,6,5,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2100,-4,0,2230,-14,0,0 +2013,5,26,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,0,0,1116,-5,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,1,0,1529,-13,0,0 +2013,5,10,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1136,118,1,1232,110,1,0 +2013,6,14,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,-1,0,1357,-1,0,0 +2013,7,23,2,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,1350,-6,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1953,81,1,2230,53,1,0 +2013,4,23,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-5,0,1420,0,0,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,854,1,0,1046,-16,0,0 +2013,6,12,3,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1944,-8,0,2256,-15,0,0 +2013,5,13,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1830,-4,0,0 +2013,8,25,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,9,0,722,8,0,0 +2013,10,4,5,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-6,0,1904,11,0,0 +2013,6,13,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2040,12,0,2140,4,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1338,-2,0,1446,-16,0,0 +2013,4,4,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1035,-3,0,1232,-30,0,0 +2013,5,20,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,935,12,0,1055,-8,0,0 +2013,10,14,1,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1521,-8,0,1933,-21,0,0 +2013,4,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,1,0,1749,-4,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2149,-7,0,2303,-3,0,0 +2013,4,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2100,21,1,2211,-1,0,0 +2013,4,22,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,-8,0,735,1,0,0 +2013,6,8,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,925,-13,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1650,-2,0,2045,-14,0,0 +2013,8,15,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1039,3,0,1210,-11,0,0 +2013,4,23,2,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,-1,0,1453,-15,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,4,0,1525,-2,0,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1620,19,1,1720,8,0,0 +2013,7,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1005,3,0,1210,-13,0,0 +2013,6,1,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,-9,0,1350,-21,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2100,138,1,2255,158,1,0 +2013,6,16,7,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1949,-3,0,2100,-2,0,0 +2013,7,22,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,0,0,2046,-6,0,0 +2013,6,22,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-1,0,1557,-2,0,0 +2013,7,18,4,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-4,0,1535,-22,0,0 +2013,10,2,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1453,20,1,1628,13,0,0 +2013,5,25,6,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,-11,0,1413,-8,0,0 +2013,5,10,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-6,0,810,-11,0,0 +2013,6,15,6,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1425,7,0,1640,7,0,0 +2013,6,19,3,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,635,0,0,755,-4,0,0 +2013,6,29,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1315,23,1,1545,22,1,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,-5,0,1419,-20,0,0 +2013,7,21,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-8,0,1229,5,0,0 +2013,5,28,2,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1557,16,1,1914,11,0,0 +2013,10,2,3,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1935,-11,0,2047,-10,0,0 +2013,4,28,7,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1330,5,0,1450,-12,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1955,11,0,2125,14,0,0 +2013,7,28,7,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,5,0,1809,6,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1230,118,1,1525,98,1,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1031,13,0,1246,-4,0,0 +2013,8,24,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1529,1,0,1656,3,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1230,-3,0,1435,-15,0,0 +2013,5,21,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1120,1,0,1250,-2,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1340,45,1,1445,56,1,0 +2013,8,11,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1415,-3,0,1505,-8,0,0 +2013,5,17,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,6,0,650,1,0,0 +2013,8,26,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,610,-7,0,1220,-5,0,0 +2013,7,4,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-2,0,921,1,0,0 +2013,5,19,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1405,1,0,2000,12,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,61,1,1624,43,1,0 +2013,6,13,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1501,0,0,1645,-3,0,0 +2013,6,28,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1110,-8,0,1240,-8,0,0 +2013,10,28,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1230,7,0,1741,-11,0,0 +2013,5,17,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-4,0,1505,-36,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,13,0,1006,-4,0,0 +2013,10,22,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1230,0,0,1744,9,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1605,0,0,1745,-9,0,0 +2013,7,30,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1344,101,1,1430,99,1,0 +2013,5,17,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,650,7,0,815,-5,0,0 +2013,5,4,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,-3,0,1302,-17,0,0 +2013,9,16,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-1,0,1049,-13,0,0 +2013,10,7,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,700,-2,0,958,-10,0,0 +2013,9,15,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,-7,0,1832,-6,0,0 +2013,9,16,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1835,-6,0,1940,-6,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1258,-2,0,1416,-19,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1845,-5,0,1955,-17,0,0 +2013,6,27,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,2,0,1532,9,0,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1555,-5,0,2200,-28,0,0 +2013,4,16,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-3,0,1105,-13,0,0 +2013,5,30,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1330,-3,0,1504,-14,0,0 +2013,4,3,3,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1415,-3,0,1642,-27,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,0,0,1130,1,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,903,-6,0,1029,6,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,49,1,910,80,1,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1823,-5,0,2119,-17,0,0 +2013,4,16,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,640,-6,0,747,-14,0,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2330,23,1,702,10,0,0 +2013,6,24,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,141,1,1600,125,1,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1335,2,0,1430,6,0,0 +2013,8,28,3,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1832,20,1,2122,10,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1044,30,1,1246,30,1,0 +2013,8,17,6,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-1,0,1607,1,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,5,0,1717,-15,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1002,1,0,1221,-12,0,0 +2013,4,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1835,2,0,1945,-6,0,0 +2013,4,11,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,-5,0,1435,-2,0,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1700,-3,0,1945,-10,0,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2020,83,1,2110,83,1,0 +2013,8,30,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,710,-3,0,815,-19,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1105,0,0,1249,-1,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,4,0,1730,1,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2130,24,1,2255,19,1,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,167,1,1855,157,1,0 +2013,4,24,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1913,-7,0,6,-23,0,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1730,24,1,1940,52,1,0 +2013,9,22,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1650,-8,0,1815,3,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,19,1,1310,20,1,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,1,0,1014,-3,0,0 +2013,5,21,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,-7,0,2335,3,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,0,0,1516,-4,0,0 +2013,4,8,1,9E,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,28,1,1205,10,0,0 +2013,6,21,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,12,0,1955,1,0,0 +2013,10,21,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-6,0,2145,6,0,0 +2013,9,9,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,800,-1,0,920,-2,0,0 +2013,5,11,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1125,-4,0,1305,-16,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,14,0,1245,7,0,0 +2013,6,29,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,645,-2,0,822,-19,0,0 +2013,6,28,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,-10,0,1350,-10,0,0 +2013,7,31,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,46,1,1550,30,1,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1655,41,1,1830,31,1,0 +2013,9,1,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2025,0,0,2058,1,0,0 +2013,9,20,5,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-5,0,1303,-19,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1013,-3,0,1550,-13,0,0 +2013,9,10,2,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1635,-5,0,1815,-41,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,6,0,2056,-4,0,0 +2013,10,9,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,950,-5,0,1108,5,0,0 +2013,5,2,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2130,85,1,2305,66,1,0 +2013,8,29,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1027,-5,0,1302,-2,0,0 +2013,8,15,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,39,1,1315,29,1,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,5,0,910,7,0,0 +2013,4,4,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,-5,0,1643,9,0,0 +2013,10,5,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1230,14,0,1820,41,1,0 +2013,4,5,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-8,0,1525,-27,0,0 +2013,5,12,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-1,0,925,6,0,0 +2013,6,30,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1016,-13,0,0 +2013,10,12,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1651,-3,0,2059,-26,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,58,1,1251,66,1,0 +2013,8,6,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1225,-2,0,1340,-3,0,0 +2013,6,30,7,EV,14122,Pittsburgh International,Pittsburgh,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,55,1,1755,63,1,0 +2013,9,8,7,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-7,0,810,-8,0,0 +2013,4,29,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,902,7,0,0 +2013,8,25,7,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1455,0,0,1625,-11,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,825,5,0,1000,0,0,0 +2013,6,24,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,5,0,1813,4,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1620,-4,0,1917,-11,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,29,1,1915,18,1,0 +2013,9,2,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-13,0,2050,-11,0,0 +2013,9,5,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,28,64,1,604,42,1,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,650,-1,0,940,-2,0,0 +2013,9,2,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1641,-1,0,0 +2013,4,10,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2020,88,1,2030,88,1,0 +2013,5,11,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1205,10,0,1305,8,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-4,0,2123,-15,0,0 +2013,6,20,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,-5,0,910,10,0,0 +2013,10,28,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,185,1,2154,163,1,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1440,18,1,1805,20,1,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,610,0,0,715,-3,0,0 +2013,10,9,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2040,-5,0,2251,-1,0,0 +2013,9,12,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1605,-4,0,2113,7,0,0 +2013,6,17,1,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,1,0,1025,7,0,0 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,3,0,1045,11,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1020,50,1,1556,70,1,0 +2013,9,23,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2054,2,0,2359,0,0,0 +2013,4,20,6,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1457,-4,0,1621,-2,0,0 +2013,6,6,4,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1410,0,0,1610,3,0,0 +2013,9,6,5,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1425,4,0,1554,-4,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,58,1,1710,70,1,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2005,3,0,2101,-1,0,0 +2013,4,16,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1147,-9,0,1315,5,0,0 +2013,8,15,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2025,19,1,2125,13,0,0 +2013,5,20,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1923,-4,0,2135,-7,0,0 +2013,4,5,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-10,0,1402,-6,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2015,25,1,2120,23,1,0 +2013,9,18,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1229,-3,0,1343,-4,0,0 +2013,4,3,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,855,4,0,950,0,0,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,7,0,1305,-5,0,0 +2013,6,6,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-8,0,1700,-13,0,0 +2013,9,21,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-3,0,1725,-7,0,0 +2013,9,12,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1746,-6,0,2114,4,0,0 +2013,7,21,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1006,-4,0,1131,-27,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1435,1,0,2145,-8,0,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,840,4,0,1000,0,0,0 +2013,8,6,2,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1810,1,0,2357,-10,0,0 +2013,10,24,4,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1510,46,1,1920,49,1,0 +2013,8,5,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-2,0,804,8,0,0 +2013,7,12,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,908,-7,0,1031,-39,0,0 +2013,10,23,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1936,-12,0,2130,-19,0,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2030,21,1,2130,21,1,0 +2013,5,22,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1403,13,0,2000,1,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,1,0,1442,-6,0,0 +2013,9,19,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,28,1,2005,55,1,0 +2013,5,10,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,-5,0,824,-2,0,0 +2013,4,7,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1740,-3,0,1935,-17,0,0 +2013,6,10,1,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1659,6,0,1946,-8,0,0 +2013,10,18,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1224,-2,0,1440,-12,0,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,0,0,957,-15,0,0 +2013,6,21,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1037,-6,0,1421,-26,0,0 +2013,10,28,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,930,4,0,1640,8,0,0 +2013,6,4,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,830,6,0,1015,-2,0,0 +2013,6,10,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,22,1,2100,16,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,-3,0,1535,-14,0,0 +2013,7,10,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,4,0,1040,1,0,0 +2013,4,12,5,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1305,3,0,1630,3,0,0 +2013,10,20,7,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1015,3,0,1455,-19,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1324,0,,1617,0,1,1 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-6,0,2205,-16,0,0 +2013,7,26,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,810,-6,0,835,-12,0,0 +2013,9,8,7,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1705,2,0,1950,4,0,0 +2013,10,8,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,-8,0,1037,-3,0,0 +2013,4,5,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1235,-22,0,0 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,2,0,1920,15,1,0 +2013,4,11,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1901,70,1,2014,70,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,-2,0,2316,-9,0,0 +2013,10,3,4,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-3,0,647,-6,0,0 +2013,8,6,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,2,0,2215,-5,0,0 +2013,5,19,7,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1251,267,1,1446,261,1,0 +2013,9,24,2,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,620,-5,0,814,-10,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,1,0,1135,-6,0,0 +2013,9,11,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1335,-5,0,1345,4,0,0 +2013,9,10,2,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1650,0,0,1805,-4,0,0 +2013,10,13,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,814,-5,0,1102,-7,0,0 +2013,5,29,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1924,-7,0,2110,-6,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2155,173,1,2305,184,1,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1339,-4,0,1534,-17,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1617,-1,0,1815,-6,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-3,0,1520,-8,0,0 +2013,9,13,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-1,0,1349,0,0,0 +2013,7,3,3,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,-12,0,1104,-3,0,0 +2013,5,2,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,13,0,1613,15,1,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,1,0,2035,4,0,0 +2013,4,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-4,0,1725,-8,0,0 +2013,9,20,5,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1100,-2,0,1245,-13,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,804,0,0,942,-2,0,0 +2013,4,30,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1600,-6,0,2112,3,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1155,9,0,1330,8,0,0 +2013,7,25,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1933,-7,0,2125,-21,0,0 +2013,7,10,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,0,1225,17,1,0 +2013,4,22,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,1120,-24,0,0 +2013,8,2,5,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1705,29,1,2020,6,0,0 +2013,10,11,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1749,-10,0,2004,-7,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1505,1,0,1825,4,0,0 +2013,8,8,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,-4,0,1825,-16,0,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,-8,0,2148,-3,0,0 +2013,8,24,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1700,-3,0,1800,-17,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,755,-1,0,1045,-10,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1820,14,0,1930,3,0,0 +2013,10,20,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-6,0,1100,14,0,0 +2013,8,30,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1540,39,1,1840,35,1,0 +2013,8,12,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,50,60,1,543,43,1,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2136,58,1,2241,62,1,0 +2013,10,7,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1900,0,0,2000,-6,0,0 +2013,4,3,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-5,0,1016,-10,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1535,4,0,1850,-2,0,0 +2013,7,5,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,12,0,1556,6,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1811,17,1,2125,-5,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1730,77,1,2010,79,1,0 +2013,4,17,3,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1725,-2,0,2040,37,1,0 +2013,4,15,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,740,-7,0,901,-9,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1125,0,0,1420,-13,0,0 +2013,4,24,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,735,4,0,820,3,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1543,3,0,1826,-7,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,932,-2,0,1312,-9,0,0 +2013,4,28,7,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,941,-5,0,1047,-13,0,0 +2013,6,22,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1855,-5,0,2024,-5,0,0 +2013,7,20,6,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1141,-3,0,1340,-10,0,0 +2013,10,8,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2027,-5,0,2135,-12,0,0 +2013,8,19,1,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,812,-4,0,1014,-6,0,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1955,15,1,2115,6,0,0 +2013,8,24,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1046,-6,0,1348,-18,0,0 +2013,9,3,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1045,-4,0,1325,-16,0,0 +2013,9,6,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-3,0,805,2,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1145,-5,0,1311,-16,0,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-4,0,1233,-17,0,0 +2013,5,2,4,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,830,-9,0,1128,-25,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1850,-1,0,2240,-14,0,0 +2013,8,16,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,655,-2,0,855,-10,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1245,-4,0,1450,-11,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,0,0,614,8,0,0 +2013,10,20,7,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1535,5,0,1625,-2,0,0 +2013,10,9,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,824,-9,0,1019,-26,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-7,0,1840,-17,0,0 +2013,7,4,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1114,0,0,1349,-2,0,0 +2013,4,26,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,600,-2,0,713,-11,0,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-9,0,1255,-30,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,740,62,1,1300,50,1,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-4,0,1612,-8,0,0 +2013,10,20,7,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1600,248,1,1906,248,1,0 +2013,9,11,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1759,1,0,1926,-11,0,0 +2013,5,14,2,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1550,-11,0,1750,-48,0,0 +2013,4,26,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-5,0,711,-4,0,0 +2013,7,1,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-7,0,635,-5,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-2,0,2340,-9,0,0 +2013,6,19,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,-3,0,1905,-6,0,0 +2013,4,29,1,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1241,-10,0,1534,-13,0,0 +2013,5,11,6,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,9,0,1006,25,1,0 +2013,5,18,6,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1900,-4,0,2125,-4,0,0 +2013,6,10,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,27,1,1832,14,0,0 +2013,9,18,3,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1205,8,0,1410,-2,0,0 +2013,5,22,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,3,0,715,2,0,0 +2013,6,5,3,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,39,1,900,37,1,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,720,-6,0,1025,-15,0,0 +2013,4,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1035,-2,0,1310,-5,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,18,1,1625,13,0,0 +2013,4,17,3,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1010,-5,0,1323,-5,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1700,30,1,1850,50,1,0 +2013,4,29,1,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,710,13,0,1040,2,0,0 +2013,6,25,2,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1027,-9,0,1216,-13,0,0 +2013,7,12,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1925,7,0,2115,-13,0,0 +2013,4,19,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,8,0,1407,24,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,-1,0,2025,-15,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-5,0,1158,-9,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,755,-2,0,915,-22,0,0 +2013,10,12,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1103,1,0,1249,8,0,0 +2013,6,16,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1547,-5,0,2028,-27,0,0 +2013,5,25,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-1,0,1251,-2,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,915,0,0,1035,-17,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,742,-9,0,835,-10,0,0 +2013,8,14,3,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1900,-1,0,2143,-3,0,0 +2013,6,11,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1715,0,0,1840,-10,0,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1540,-2,0,1705,6,0,0 +2013,8,15,4,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1458,-12,0,1607,-16,0,0 +2013,5,7,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,25,1,1620,1,0,0 +2013,9,30,1,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1345,-8,0,1524,-1,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,2,0,2159,-7,0,0 +2013,8,31,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1000,-16,0,0 +2013,4,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2055,1,0,2155,-14,0,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1744,187,1,1920,172,1,0 +2013,8,19,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1346,15,1,1540,4,0,0 +2013,7,29,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,20,1,1025,11,0,0 +2013,10,10,4,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-10,0,911,-15,0,0 +2013,9,19,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1835,263,1,1955,267,1,0 +2013,8,13,2,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,615,-2,0,715,9,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14570,Reno/Tahoe International,Reno,NV,958,-7,0,1149,-28,0,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1727,11,0,1824,11,0,0 +2013,7,29,1,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-7,0,1643,-18,0,0 +2013,5,1,3,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1625,-2,0,1900,-15,0,0 +2013,4,25,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1115,182,1,1248,173,1,0 +2013,6,24,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,-5,0,1635,0,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-2,0,1524,-24,0,0 +2013,5,12,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1920,13,0,2021,-4,0,0 +2013,7,9,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-3,0,2015,-9,0,0 +2013,9,15,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-3,0,1702,-38,0,0 +2013,6,28,5,OO,14307,Theodore Francis Green State,Providence,RI,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,22,1,2033,8,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,21,1,1207,11,0,0 +2013,6,24,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1512,164,1,1618,172,1,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,-2,0,920,-2,0,0 +2013,10,5,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1525,19,1,1535,18,1,0 +2013,8,1,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,3,0,1920,-4,0,0 +2013,5,28,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1815,38,1,2125,45,1,0 +2013,9,18,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-6,0,837,7,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-2,0,1810,-5,0,0 +2013,10,2,3,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1825,-8,0,1855,-3,0,0 +2013,8,12,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1220,10,0,1330,8,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,955,-2,0,1153,0,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,3,0,1210,3,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-1,0,1847,-11,0,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1055,-2,0,1607,-14,0,0 +2013,10,10,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1827,3,0,2107,-20,0,0 +2013,10,27,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1025,-7,0,1220,-24,0,0 +2013,7,30,2,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1434,1,0,1929,-1,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1805,5,0,1935,7,0,0 +2013,8,24,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,31,1,2250,41,1,0 +2013,7,19,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-8,0,801,-7,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,3,0,1103,-9,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1615,6,0,1710,-11,0,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2237,1,0,20,-25,0,0 +2013,5,26,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1910,16,1,2040,9,0,0 +2013,10,11,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1225,-3,0,1452,-18,0,0 +2013,5,11,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,23,1,1020,14,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,11,0,1505,0,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1733,2,0,1916,-10,0,0 +2013,5,20,1,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,57,1,1902,105,1,0 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-1,0,928,-10,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,34,1,2255,23,1,0 +2013,5,9,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1230,18,1,1427,16,1,0 +2013,6,4,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1650,-1,0,1755,-10,0,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1903,-1,0,2007,-14,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,600,0,0,920,-1,0,0 +2013,10,29,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1530,10,0,1655,15,1,0 +2013,5,30,4,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1122,110,1,1457,100,1,0 +2013,5,31,5,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1834,30,1,2036,12,0,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,0,0,2045,2,0,0 +2013,9,8,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,1952,-2,0,0 +2013,10,27,7,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,840,0,0,955,5,0,0 +2013,9,18,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1201,-9,0,1416,-20,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1225,0,0,1942,-20,0,0 +2013,8,27,2,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,839,-10,0,1125,-21,0,0 +2013,5,7,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1520,0,,1620,0,1,1 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1555,-1,0,1725,-8,0,0 +2013,4,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,-2,0,1340,-4,0,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1507,-3,0,1657,9,0,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1330,4,0,1455,1,0,0 +2013,5,19,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1900,6,0,2010,1,0,0 +2013,4,12,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1457,3,0,1600,0,0,0 +2013,9,9,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1320,14,0,1425,20,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,955,-3,0,1214,-20,0,0 +2013,10,10,4,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,-1,0,1909,-2,0,0 +2013,5,5,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1015,-4,0,1309,0,0,0 +2013,7,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1402,-5,0,1756,-7,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1043,-7,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1535,0,0,1812,-9,0,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1030,-5,0,1135,-11,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1447,-5,0,1606,-11,0,0 +2013,10,26,6,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-2,0,1555,-34,0,0 +2013,7,23,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,625,-2,0,720,-9,0,0 +2013,6,23,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,-1,0,2317,-10,0,0 +2013,9,11,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,8,0,1950,6,0,0 +2013,5,19,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1155,-1,0,1310,-6,0,0 +2013,9,9,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,0,0,825,-11,0,0 +2013,10,24,4,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,915,1,0,1155,1,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,-3,0,1755,-12,0,0 +2013,6,10,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1627,-5,0,1904,-4,0,0 +2013,10,31,4,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,17,1,2110,-9,0,0 +2013,5,5,7,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1045,141,1,1420,123,1,0 +2013,9,26,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-7,0,1335,-13,0,0 +2013,6,22,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1500,8,0,1615,8,0,0 +2013,5,16,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,-3,0,825,-1,0,0 +2013,10,18,5,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1620,38,1,1825,16,1,0 +2013,7,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1433,153,1,1952,150,1,0 +2013,8,5,1,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1904,13,0,2033,-4,0,0 +2013,6,2,7,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1834,141,1,1938,177,1,0 +2013,6,11,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,0,0,1845,-16,0,0 +2013,10,1,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,820,-3,0,945,0,0,0 +2013,8,9,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1835,6,0,1930,3,0,0 +2013,5,26,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-10,0,1346,-19,0,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1830,-3,0,2053,-9,0,0 +2013,5,30,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-3,0,2211,-13,0,0 +2013,5,16,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,7,0,1724,-10,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1400,54,1,1525,52,1,0 +2013,5,23,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,610,-2,0,630,-5,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1020,64,1,1145,52,1,0 +2013,7,1,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-5,0,2056,-10,0,0 +2013,10,8,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1530,-7,0,1650,-14,0,0 +2013,8,6,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,-2,0,820,-10,0,0 +2013,6,9,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1545,-6,0,1700,-14,0,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1425,1,0,1540,11,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1356,0,0,1548,9,0,0 +2013,10,21,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1500,6,0,1610,-2,0,0 +2013,5,26,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1715,-2,0,1855,-14,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1654,-4,0,2120,-6,0,0 +2013,7,31,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,-4,0,1437,-8,0,0 +2013,7,23,2,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,845,6,0,1653,2,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,745,4,0,1010,3,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2321,1,0,310,-7,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,933,7,0,1332,-2,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,915,-3,0,1015,-3,0,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1550,16,1,1707,22,1,0 +2013,9,11,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1245,2,0,1410,2,0,0 +2013,4,15,1,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1835,-10,0,2120,-30,0,0 +2013,8,29,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-4,0,1640,-22,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1955,37,1,2145,60,1,0 +2013,5,8,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,1,0,1922,-8,0,0 +2013,10,28,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1945,4,0,2112,-3,0,0 +2013,8,22,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1315,-1,0,1520,-10,0,0 +2013,4,28,7,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1420,5,0,1920,-3,0,0 +2013,9,24,2,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,715,-1,0,927,-3,0,0 +2013,4,1,1,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,752,-14,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1515,7,0,1654,4,0,0 +2013,8,12,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,915,-2,0,1029,-3,0,0 +2013,5,20,1,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,1800,31,1,2039,34,1,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,22,1,1522,36,1,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1614,-7,0,1734,-30,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,835,-3,0,1100,-41,0,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-3,0,2323,-19,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1247,-3,0,1835,5,0,0 +2013,6,30,7,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-9,0,1105,-22,0,0 +2013,6,27,4,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,-4,0,2355,27,1,0 +2013,10,23,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1535,-3,0,1707,-5,0,0 +2013,10,28,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,65,1,1725,75,1,0 +2013,10,22,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-6,0,1825,-17,0,0 +2013,6,8,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-8,0,2040,-13,0,0 +2013,8,13,2,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,827,0,,1217,0,1,1 +2013,6,11,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1052,19,1,1426,9,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1315,9,0,1840,6,0,0 +2013,9,1,7,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,936,-3,0,1230,-12,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-1,0,1930,-21,0,0 +2013,8,22,4,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,750,-4,0,856,-24,0,0 +2013,4,11,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,15,1,1800,-3,0,0 +2013,5,24,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1734,12,0,1841,28,1,0 +2013,8,18,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,0,0,1003,-12,0,0 +2013,6,23,7,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1711,36,1,2039,48,1,0 +2013,5,20,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-4,0,1759,-3,0,0 +2013,9,5,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1259,-7,0,1557,-13,0,0 +2013,8,3,6,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2329,57,1,757,27,1,0 +2013,9,29,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-1,0,1740,-2,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1015,-1,0,1124,-8,0,0 +2013,5,7,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,-2,0,1904,0,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2025,-1,0,2130,-1,0,0 +2013,8,30,5,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-3,0,610,30,1,0 +2013,9,24,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,722,-6,0,901,-7,0,0 +2013,8,12,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1035,-2,0,1415,7,0,0 +2013,8,7,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,-3,0,1046,2,0,0 +2013,10,19,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1500,-15,0,1600,-9,0,0 +2013,8,18,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1836,7,0,2000,0,0,0 +2013,8,16,5,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1743,-12,0,44,-6,0,0 +2013,6,19,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,805,-5,0,923,-17,0,0 +2013,4,28,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1208,19,1,1531,-10,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-1,0,1500,-9,0,0 +2013,10,2,3,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,840,-5,0,1146,-10,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2100,69,1,2250,85,1,0 +2013,8,2,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1514,75,1,1644,69,1,0 +2013,8,7,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-10,0,958,2,0,0 +2013,8,27,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1211,-1,0,1405,-6,0,0 +2013,7,24,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,720,-1,0,1145,-1,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2155,10,0,2315,-1,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,13,0,2300,29,1,0 +2013,9,29,7,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,30,1,1940,24,1,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,45,1,1542,31,1,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,-1,0,2247,-5,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1735,79,1,2300,83,1,0 +2013,6,30,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,713,-3,0,1015,-7,0,0 +2013,4,1,1,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,645,1,0,800,0,0,0 +2013,10,12,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,707,0,0,930,8,0,0 +2013,4,8,1,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,748,-8,0,1355,-33,0,0 +2013,5,3,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1005,-4,0,1253,-9,0,0 +2013,9,22,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-9,0,1230,-8,0,0 +2013,6,16,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1945,-10,0,2055,-16,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1730,-8,0,2050,-30,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,847,-1,0,1037,-8,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1819,4,0,2128,-1,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1835,52,1,2050,64,1,0 +2013,5,16,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1848,-4,0,2000,6,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,65,1,2115,70,1,0 +2013,5,20,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,845,-1,0,1054,5,0,0 +2013,7,27,6,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2215,-4,0,647,-18,0,0 +2013,6,23,7,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,-5,0,749,-27,0,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1845,4,0,2155,-18,0,0 +2013,9,19,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,616,-6,0,754,-7,0,0 +2013,8,17,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,6,0,619,9,0,0 +2013,7,26,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-3,0,851,-9,0,0 +2013,4,12,5,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1115,72,1,1355,72,1,0 +2013,4,3,3,WN,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1225,-6,0,1515,-10,0,0 +2013,6,28,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,0,0,1107,22,1,0 +2013,5,12,7,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1226,-6,0,1649,-22,0,0 +2013,4,26,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-10,0,1155,-7,0,0 +2013,8,7,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1138,73,1,1700,89,1,0 +2013,6,26,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,715,-3,0,950,-13,0,0 +2013,10,20,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1225,-3,0,1555,-21,0,0 +2013,7,13,6,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-2,0,1955,-10,0,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2045,-6,0,2215,-3,0,0 +2013,9,9,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,959,-7,0,1144,0,0,0 +2013,7,15,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-5,0,720,-16,0,0 +2013,4,3,3,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1700,-8,0,1835,-21,0,0 +2013,7,30,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-2,0,1804,-7,0,0 +2013,8,11,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1855,18,1,2000,16,1,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1710,7,0,2005,4,0,0 +2013,5,1,3,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-5,0,1215,-14,0,0 +2013,5,7,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,905,-7,0,1122,-19,0,0 +2013,6,25,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1047,-1,0,1505,-15,0,0 +2013,5,7,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,-3,0,2210,13,0,0 +2013,8,4,7,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1434,0,0,1607,-10,0,0 +2013,7,7,7,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,-1,0,920,-15,0,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,126,1,1620,116,1,0 +2013,7,29,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1611,1,0,1940,-5,0,0 +2013,6,10,1,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2045,-4,0,2339,-6,0,0 +2013,4,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1607,-2,0,1838,-8,0,0 +2013,4,30,2,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,1340,0,0,1935,-9,0,0 +2013,4,11,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-8,0,1031,-19,0,0 +2013,10,17,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1155,6,0,1430,0,0,0 +2013,9,19,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,4,0,1917,3,0,0 +2013,8,31,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,7,0,1418,9,0,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1645,2,0,1709,-4,0,0 +2013,7,4,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1145,-8,0,1320,-23,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,600,-2,0,1025,-16,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1507,91,1,1657,88,1,0 +2013,8,20,2,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,10,0,1133,0,0,0 +2013,10,16,3,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2045,-19,0,2150,-12,0,0 +2013,9,30,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,4,0,910,5,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1220,2,0,1445,-9,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2040,46,1,2155,22,1,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-1,0,2355,-10,0,0 +2013,5,13,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-7,0,1308,-14,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1055,-3,0,1206,2,0,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,19,1,1721,4,0,0 +2013,5,13,1,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,5,0,1555,4,0,0 +2013,10,6,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1115,1,0,1220,-4,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1611,0,0,1629,5,0,0 +2013,9,5,4,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1015,-3,0,1123,-7,0,0 +2013,5,18,6,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1705,7,0,1825,-14,0,0 +2013,8,29,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,65,1,1905,49,1,0 +2013,6,28,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1737,0,,2047,0,1,1 +2013,6,22,6,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-7,0,1409,-15,0,0 +2013,9,6,5,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1115,-10,0,1246,-26,0,0 +2013,5,17,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,6,0,1105,14,0,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1100,118,1,1249,101,1,0 +2013,4,15,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1008,-2,0,1102,-2,0,0 +2013,8,17,6,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-5,0,1030,-15,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,-3,0,2327,-2,0,0 +2013,8,28,3,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1555,-4,0,1805,-33,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,-2,0,1835,1,0,0 +2013,9,20,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1040,-5,0,1240,-12,0,0 +2013,7,30,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1930,-4,0,2050,-10,0,0 +2013,4,19,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1005,-1,0,1345,-27,0,0 +2013,4,17,3,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1915,40,1,2015,62,1,0 +2013,8,8,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,11,0,1735,39,1,0 +2013,4,23,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1313,18,1,2103,3,0,0 +2013,8,8,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,7,0,1856,1,0,0 +2013,10,23,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-2,0,810,16,1,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1909,-4,0,2235,-1,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,5,0,1150,-15,0,0 +2013,9,2,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-6,0,1515,-3,0,0 +2013,9,7,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,-3,0,1512,-6,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,806,-1,0,1640,3,0,0 +2013,5,14,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,931,-6,0,1123,-4,0,0 +2013,5,29,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1325,-5,0,1450,-5,0,0 +2013,9,21,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1205,8,0,1310,5,0,0 +2013,10,15,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-5,0,2132,-5,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,21,1,1644,11,0,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1030,11,0,1610,5,0,0 +2013,8,4,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,900,-6,0,1040,1,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2006,1,0,2145,-12,0,0 +2013,8,25,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-4,0,1048,-1,0,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1700,-5,0,2025,-17,0,0 +2013,4,19,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,9,0,1750,-6,0,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1545,-2,0,1740,-10,0,0 +2013,4,15,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-3,0,750,-7,0,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,840,-4,0,1017,-3,0,0 +2013,7,9,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,555,-4,0,743,-22,0,0 +2013,6,19,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,27,1,2130,7,0,0 +2013,4,12,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-4,0,1755,0,0,0 +2013,10,5,6,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1715,3,0,1953,-26,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-3,0,1338,-9,0,0 +2013,7,18,4,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1132,-6,0,1400,-22,0,0 +2013,5,26,7,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,-2,0,931,-13,0,0 +2013,5,2,4,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2100,120,1,2345,99,1,0 +2013,5,18,6,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,618,-9,0,858,-1,0,0 +2013,7,20,6,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,-9,0,649,-31,0,0 +2013,7,13,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,30,1,1310,23,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1915,9,0,2038,-12,0,0 +2013,10,3,4,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1737,35,1,1911,39,1,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1855,4,0,2111,-7,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,-1,0,2155,1,0,0 +2013,7,28,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1110,-4,0,1634,-19,0,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1810,56,1,2215,59,1,0 +2013,7,13,6,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,730,1,0,933,-11,0,0 +2013,4,15,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1220,-5,0,1254,-18,0,0 +2013,6,8,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,-4,0,1714,-11,0,0 +2013,6,2,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1112,60,1,1359,80,1,0 +2013,8,16,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,728,-9,0,1346,-24,0,0 +2013,7,5,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,604,-3,0,845,-25,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,-1,0,1035,-12,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2135,155,1,2255,149,1,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-2,0,1114,-8,0,0 +2013,10,1,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,920,-2,0,1045,-6,0,0 +2013,9,23,1,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1325,2,0,1415,-3,0,0 +2013,4,30,2,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1155,-6,0,1453,-7,0,0 +2013,10,12,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,-3,0,2007,-22,0,0 +2013,10,31,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1900,0,0,2045,-11,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1215,125,1,1930,160,1,0 +2013,6,18,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,655,2,0,820,2,0,0 +2013,9,15,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1359,19,1,2205,4,0,0 +2013,6,12,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,640,0,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,-4,0,1820,-25,0,0 +2013,7,22,1,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1534,10,0,1838,-10,0,0 +2013,9,24,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,10,0,2055,4,0,0 +2013,10,18,5,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1300,9,0,2144,-21,0,0 +2013,4,10,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1530,24,1,1620,10,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,-5,0,1750,-8,0,0 +2013,7,26,5,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,1,0,643,-20,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-6,0,1832,-10,0,0 +2013,7,19,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-1,0,2354,-9,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2037,2,0,2204,-15,0,0 +2013,8,14,3,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,850,37,1,1325,11,0,0 +2013,10,31,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-13,0,1223,-8,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1803,56,1,2250,37,1,0 +2013,6,9,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,1,0,1745,-6,0,0 +2013,4,18,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2100,96,1,2225,95,1,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,732,-7,0,906,-15,0,0 +2013,4,22,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-5,0,1033,-15,0,0 +2013,5,30,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,-6,0,1525,-3,0,0 +2013,8,16,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-8,0,755,-15,0,0 +2013,7,23,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,835,-1,0,1205,-11,0,0 +2013,7,25,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,728,-15,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,951,27,1,1217,42,1,0 +2013,6,28,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1405,2,0,1515,-11,0,0 +2013,5,31,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,9,0,2359,5,0,0 +2013,7,10,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,700,1,0,905,-3,0,0 +2013,7,15,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1557,25,1,1800,19,1,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,4,0,1420,4,0,0 +2013,9,5,4,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1630,-2,0,1805,-23,0,0 +2013,8,27,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1330,-6,0,1335,-9,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,730,78,1,1010,129,1,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2210,4,0,2330,0,0,0 +2013,10,14,1,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1325,18,1,1830,3,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1030,0,0,1405,7,0,0 +2013,5,22,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,22,1,2026,28,1,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1600,15,1,1730,0,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1105,-1,0,1245,-11,0,0 +2013,5,20,1,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,5,0,1945,-5,0,0 +2013,9,10,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,600,-9,0,850,-14,0,0 +2013,5,28,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1346,23,1,1516,48,1,0 +2013,10,28,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,-1,0,1048,1,0,0 +2013,10,21,1,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,1222,0,0,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1227,-5,0,1454,-37,0,0 +2013,4,14,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-4,0,1523,1,0,0 +2013,5,8,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,63,1,730,77,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1210,-3,0,1232,-6,0,0 +2013,4,27,6,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-11,0,1124,-13,0,0 +2013,8,10,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,939,3,0,1055,28,1,0 +2013,10,26,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,855,-2,0,1055,-8,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2005,9,0,2241,1,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1135,0,0,1345,18,1,0 +2013,5,23,4,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1930,0,,2155,0,1,1 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,710,13,0,840,1,0,0 +2013,9,14,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1504,-2,0,1555,-14,0,0 +2013,7,7,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,-1,0,2040,12,0,0 +2013,9,30,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-2,0,842,-6,0,0 +2013,9,3,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,844,9,0,0 +2013,8,19,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-5,0,955,-8,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1205,38,1,1405,36,1,0 +2013,4,19,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1215,200,1,1320,200,1,0 +2013,4,26,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1442,-1,0,1615,1,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1335,12,0,1430,27,1,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,950,12,0,1055,5,0,0 +2013,4,6,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1115,-2,0,1215,-12,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1041,-3,0,1155,-10,0,0 +2013,7,26,5,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-7,0,1056,-18,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2130,2,0,2250,-17,0,0 +2013,4,15,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1651,-9,0,1758,-12,0,0 +2013,5,3,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,605,-6,0,710,3,0,0 +2013,5,23,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1015,13,0,1147,5,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,17,1,2230,11,0,0 +2013,10,17,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1719,-8,0,2012,-24,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,0,0,1930,27,1,0 +2013,6,13,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1242,0,0,1427,-8,0,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1415,-3,0,1551,11,0,0 +2013,7,25,4,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1032,22,1,1158,17,1,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,-6,0,1909,1,0,0 +2013,10,23,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2329,-7,0,507,-4,0,0 +2013,4,11,4,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1820,65,1,2003,47,1,0 +2013,6,11,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,935,10,0,1105,3,0,0 +2013,6,15,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,726,-1,0,1000,1,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,-3,0,1425,-4,0,0 +2013,8,4,7,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1034,-1,0,1152,4,0,0 +2013,10,31,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-1,0,1305,-11,0,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2231,8,0,2358,-7,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,15,1,1620,-1,0,0 +2013,10,22,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1719,-4,0,1840,-8,0,0 +2013,4,17,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1659,96,1,129,96,1,0 +2013,4,26,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,67,1,2235,50,1,0 +2013,7,11,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-6,0,915,3,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1935,1,0,2040,0,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2032,98,1,2239,95,1,0 +2013,8,22,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1812,146,1,2040,169,1,0 +2013,5,5,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-6,0,2153,-7,0,0 +2013,9,7,6,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,938,-2,0,1232,-9,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,3,0,1503,-5,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1500,-6,0,1815,-24,0,0 +2013,5,24,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,46,1,1853,49,1,0 +2013,9,30,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1341,-5,0,1530,-17,0,0 +2013,10,24,4,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-5,0,2143,10,0,0 +2013,7,6,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1210,9,0,1325,14,0,0 +2013,8,16,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,950,27,1,1150,23,1,0 +2013,9,20,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-1,0,2015,-4,0,0 +2013,5,11,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,925,6,0,1240,-16,0,0 +2013,8,18,7,EV,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1625,-2,0,1851,5,0,0 +2013,5,11,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,1346,6,0,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1010,1,0,1135,2,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1036,-5,0,1213,-10,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1211,277,1,1402,283,1,0 +2013,7,20,6,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,47,1,1830,37,1,0 +2013,7,12,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,715,3,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2230,6,0,709,13,0,0 +2013,7,11,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,47,1,1013,34,1,0 +2013,8,17,6,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-5,0,1040,-5,0,0 +2013,7,9,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,-4,0,1459,-12,0,0 +2013,8,8,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-3,0,1455,-28,0,0 +2013,7,13,6,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,740,40,1,950,24,1,0 +2013,10,18,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,30,1,1705,25,1,0 +2013,10,15,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2050,7,0,2212,-3,0,0 +2013,8,26,1,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,813,1,0,930,-5,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1935,33,1,2045,33,1,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,719,-1,0,1559,-4,0,0 +2013,7,13,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1900,134,1,2013,115,1,0 +2013,9,5,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,845,-1,0,1010,-4,0,0 +2013,4,25,4,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,0,0,1755,12,0,0 +2013,9,25,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-3,0,1629,-16,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1355,3,0,1610,-3,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,2,0,1900,-3,0,0 +2013,8,19,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1901,5,0,2000,4,0,0 +2013,6,28,5,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1840,160,1,2150,208,1,0 +2013,6,8,6,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1107,-10,0,1256,-7,0,0 +2013,6,20,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-8,0,1345,-16,0,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1305,10,0,1410,6,0,0 +2013,5,6,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-12,0,940,-18,0,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,929,-4,0,1241,36,1,0 +2013,4,7,7,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2340,-2,0,624,-21,0,0 +2013,10,7,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1940,-2,0,2240,-18,0,0 +2013,5,28,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-7,0,1858,8,0,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,32,1,1815,14,0,0 +2013,9,10,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-4,0,1029,-15,0,0 +2013,10,23,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,0,0,935,1,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2000,18,1,2130,3,0,0 +2013,10,15,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1505,1,0,1740,10,0,0 +2013,6,13,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1227,-5,0,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1015,3,0,1135,23,1,0 +2013,5,5,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,635,-7,0,810,-12,0,0 +2013,7,14,7,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,735,-12,0,1000,-25,0,0 +2013,5,19,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1105,4,0,1700,5,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1220,0,0,1335,0,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2055,30,1,2359,23,1,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,19,1,2205,18,1,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1755,-5,0,1937,-10,0,0 +2013,9,8,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,4,0,1515,-15,0,0 +2013,10,17,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,704,-12,0,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1500,-7,0,1723,-12,0,0 +2013,7,7,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-7,0,1535,-12,0,0 +2013,8,23,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1907,-1,0,2112,-6,0,0 +2013,9,5,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,605,1,0,700,-18,0,0 +2013,5,17,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1135,29,1,1254,22,1,0 +2013,5,29,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,12,0,2234,9,0,0 +2013,4,29,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,24,1,1025,26,1,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,16,1,2305,15,1,0 +2013,4,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,-3,0,1029,-13,0,0 +2013,7,29,1,OO,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,700,-1,0,815,-13,0,0 +2013,7,12,5,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2345,43,1,820,43,1,0 +2013,5,16,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2035,-5,0,2305,-23,0,0 +2013,10,5,6,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1200,-9,0,1735,-2,0,0 +2013,7,26,5,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,830,-2,0,1117,-9,0,0 +2013,10,7,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,10,0,1114,14,0,0 +2013,9,14,6,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-5,0,1259,2,0,0 +2013,4,12,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,0,,1520,0,1,1 +2013,4,29,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1010,-2,0,1135,-15,0,0 +2013,9,5,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1724,5,0,1907,10,0,0 +2013,7,29,1,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1245,273,1,1425,280,1,0 +2013,10,22,2,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1203,-8,0,1327,-14,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1055,-11,0,1442,-28,0,0 +2013,6,8,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,54,1,1600,54,1,0 +2013,8,21,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1730,-1,0,2144,-18,0,0 +2013,9,17,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1710,-7,0,1835,-14,0,0 +2013,5,2,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,0,0,911,14,0,0 +2013,4,5,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,859,21,1,1213,-15,0,0 +2013,7,31,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,-1,0,1253,-12,0,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1510,24,1,1825,22,1,0 +2013,6,16,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,3,0,1930,16,1,0 +2013,7,22,1,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,17,1,2005,15,1,0 +2013,4,12,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,3,0,953,-30,0,0 +2013,8,10,6,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-5,0,1940,14,0,0 +2013,9,19,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2200,35,1,38,10,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-8,0,1804,-13,0,0 +2013,7,4,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1750,-5,0,2030,-23,0,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,2,0,1600,0,0,0 +2013,9,14,6,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1032,0,0,1613,-15,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1120,-1,0,1309,-21,0,0 +2013,8,30,5,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2148,-2,0,2301,-6,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1000,112,1,1209,77,1,0 +2013,7,19,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2130,48,1,2235,42,1,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,3,0,2035,-11,0,0 +2013,9,5,4,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,940,-1,0,1135,-14,0,0 +2013,4,21,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1146,-2,0,1630,-44,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-5,0,1215,-15,0,0 +2013,8,6,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,-12,0,1800,-19,0,0 +2013,9,9,1,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-7,0,1124,-10,0,0 +2013,10,15,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2249,-1,0,721,-8,0,0 +2013,5,12,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1630,-1,0,2323,3,0,0 +2013,8,19,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,0,0,1507,-11,0,0 +2013,6,8,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,0,0,1710,-20,0,0 +2013,5,8,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,-4,0,828,-21,0,0 +2013,5,4,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1420,0,0,1640,-15,0,0 +2013,4,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,640,59,1,806,58,1,0 +2013,8,21,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1355,6,0,1510,-5,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,710,-5,0,830,-9,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,0,0,801,-1,0,0 +2013,10,22,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-8,0,1049,-13,0,0 +2013,4,2,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,1,0,1040,-1,0,0 +2013,4,30,2,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,-3,0,2125,-9,0,0 +2013,8,30,5,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1030,-5,0,1341,-3,0,0 +2013,4,1,1,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1540,8,0,1826,24,1,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,7,0,1558,48,1,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1835,23,1,2152,24,1,0 +2013,6,9,7,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-3,0,845,-6,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1545,-2,0,1850,-11,0,0 +2013,5,29,3,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,4,0,1515,-7,0,0 +2013,7,31,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,-2,0,2045,-37,0,0 +2013,5,26,7,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-13,0,955,-27,0,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,815,82,1,1125,70,1,0 +2013,5,17,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-5,0,805,-18,0,0 +2013,5,30,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1953,20,1,2214,10,0,0 +2013,8,2,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,8,0,2020,10,0,0 +2013,6,23,7,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1210,-7,0,1257,-12,0,0 +2013,5,1,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-6,0,1325,-3,0,0 +2013,7,7,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,6,0,1033,16,1,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,0,0,2317,15,1,0 +2013,9,30,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-4,0,849,-1,0,0 +2013,7,10,3,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,-1,0,1231,-5,0,0 +2013,6,18,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,13,0,2055,21,1,0 +2013,7,6,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,0,0,1315,-6,0,0 +2013,5,6,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,60,1,1844,49,1,0 +2013,8,2,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-2,0,1712,7,0,0 +2013,5,16,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,50,1,1925,58,1,0 +2013,10,31,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1210,7,0,1240,-6,0,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1610,-2,0,1755,-17,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,-7,0,1605,-9,0,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1735,3,0,2045,5,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2151,-6,0,2346,-3,0,0 +2013,7,3,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-6,0,1805,0,0,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,45,1,1315,40,1,0 +2013,10,5,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,705,2,0,830,-4,0,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,710,-4,0,822,-15,0,0 +2013,5,11,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1035,0,0,1210,-11,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1710,-6,0,1751,-10,0,0 +2013,9,1,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1435,-11,0,1610,-24,0,0 +2013,9,3,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1317,-6,0,1536,-5,0,0 +2013,7,7,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,2010,0,0,2109,0,0,0 +2013,6,24,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-7,0,820,-6,0,0 +2013,8,19,1,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,11,0,1010,8,0,0 +2013,7,11,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-2,0,900,-22,0,0 +2013,10,10,4,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1028,-3,0,1132,-2,0,0 +2013,6,10,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,610,1,0,640,-4,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,7,0,2249,-6,0,0 +2013,4,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-6,0,1420,6,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2205,-1,0,2320,-5,0,0 +2013,8,7,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,758,2,0,0 +2013,7,3,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,17,1,1720,5,0,0 +2013,7,12,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,8,0,1505,30,1,0 +2013,8,29,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,3,0,1425,-7,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1340,26,1,1455,34,1,0 +2013,7,9,2,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-2,0,1132,-4,0,0 +2013,8,13,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,839,-4,0,0 +2013,5,21,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,-3,0,2025,9,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1254,-10,0,1424,-25,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1113,19,1,1239,5,0,0 +2013,10,14,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1004,17,1,1141,0,0,0 +2013,7,2,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-5,0,1024,-20,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,610,9,0,720,-1,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1721,-1,0,1923,-16,0,0 +2013,7,27,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,845,6,0,950,3,0,0 +2013,5,15,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-5,0,1820,-29,0,0 +2013,9,12,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-4,0,2035,3,0,0 +2013,7,2,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1340,2,0,1700,3,0,0 +2013,5,24,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-2,0,1926,3,0,0 +2013,7,14,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,640,-2,0,835,-4,0,0 +2013,7,19,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-4,0,1249,-7,0,0 +2013,9,18,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-5,0,958,-5,0,0 +2013,9,3,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1950,24,1,2110,27,1,0 +2013,9,6,5,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1720,58,1,1842,61,1,0 +2013,9,27,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,815,-5,0,1052,-4,0,0 +2013,5,2,4,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1455,131,1,1840,139,1,0 +2013,5,16,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-1,0,925,-8,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2025,-3,0,2305,-20,0,0 +2013,4,25,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1050,-5,0,1234,-15,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1605,1,0,2345,-19,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1730,-3,0,2043,-27,0,0 +2013,4,8,1,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1106,-3,0,1250,-18,0,0 +2013,10,5,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1455,-3,0,1756,-3,0,0 +2013,9,29,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1055,10,0,1202,-1,0,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,2,0,1405,0,0,0 +2013,5,15,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,-10,0,2053,-9,0,0 +2013,9,1,7,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1249,-6,0,1427,-13,0,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1559,-7,0,1906,-32,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,0,0,2255,8,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1415,1,0,1510,-2,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,20,1,1020,7,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,909,-1,0,1350,-15,0,0 +2013,8,8,4,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1045,6,0,1130,-6,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2145,-5,0,50,-17,0,0 +2013,10,13,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1547,-2,0,1617,-11,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1012,-4,0,1332,-16,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1610,-2,0,2216,-4,0,0 +2013,10,20,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,4,0,1257,3,0,0 +2013,4,29,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,-5,0,1950,-11,0,0 +2013,5,26,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1205,0,0,1319,-1,0,0 +2013,5,17,5,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1340,-10,0,1500,-6,0,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,-8,0,1558,-24,0,0 +2013,10,3,4,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,730,-4,0,850,-3,0,0 +2013,7,22,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1400,-6,0,1504,-23,0,0 +2013,4,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1255,-5,0,1535,-2,0,0 +2013,10,18,5,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,2,0,754,-9,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1150,-2,0,1310,-7,0,0 +2013,8,3,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,628,-4,0,816,-22,0,0 +2013,9,6,5,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,40,1,915,-1,0,0 +2013,10,11,5,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1515,77,1,1829,129,1,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1933,-1,0,2111,-5,0,0 +2013,10,28,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-12,0,2130,-12,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,727,-4,0,845,-14,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,-2,0,1330,-7,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1240,-8,0,1930,-2,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1800,16,1,2009,13,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1730,26,1,2205,12,0,0 +2013,6,18,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1615,23,1,1944,22,1,0 +2013,6,3,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2050,-3,0,2205,0,0,0 +2013,6,1,6,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,-4,0,1301,0,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1710,15,1,1830,12,0,0 +2013,10,14,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,28,1,1625,25,1,0 +2013,9,9,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,21,1,1240,13,0,0 +2013,7,23,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,705,-6,0,910,-4,0,0 +2013,6,25,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1355,-5,0,1500,-10,0,0 +2013,4,21,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,35,1,2000,28,1,0 +2013,6,18,2,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,845,36,1,1420,16,1,0 +2013,10,31,4,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-3,0,1218,-24,0,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,730,-3,0,1056,-11,0,0 +2013,10,6,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-6,0,1052,12,0,0 +2013,5,16,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,925,-1,0,1105,-4,0,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1216,162,1,1814,144,1,0 +2013,9,23,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1935,-6,0,2105,-22,0,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1845,-7,0,2212,20,1,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1320,0,0,1620,20,1,0 +2013,4,23,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,-3,0,920,-7,0,0 +2013,6,9,7,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-10,0,1523,-7,0,0 +2013,9,4,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-7,0,1825,-17,0,0 +2013,5,3,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1000,78,1,1105,116,1,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-3,0,1031,-7,0,0 +2013,4,4,4,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,950,25,1,1706,28,1,0 +2013,4,8,1,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,924,-9,0,0 +2013,8,5,1,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1300,4,0,1425,-1,0,0 +2013,5,5,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,4,0,1133,1,0,0 +2013,4,14,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,810,-17,0,1145,-25,0,0 +2013,10,16,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,12,0,1940,2,0,0 +2013,4,29,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,828,-3,0,1036,-12,0,0 +2013,10,31,4,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1610,7,0,1710,4,0,0 +2013,4,25,4,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1105,-2,0,1325,6,0,0 +2013,9,11,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,800,-7,0,941,-28,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1820,-2,0,2001,15,1,0 +2013,8,11,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1755,-1,0,2035,-2,0,0 +2013,8,29,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1530,17,1,1555,25,1,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,800,-1,0,930,-9,0,0 +2013,5,5,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1832,11,0,2108,20,1,0 +2013,10,11,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1012,-1,0,1243,2,0,0 +2013,4,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1810,11,0,2015,-3,0,0 +2013,4,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1310,0,0,1635,-17,0,0 +2013,8,15,4,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1458,13,0,1600,3,0,0 +2013,9,11,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-4,0,740,-23,0,0 +2013,6,15,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-5,0,951,-9,0,0 +2013,9,26,4,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1727,-2,0,1930,1,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,2,0,2335,-12,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,37,1,2005,51,1,0 +2013,4,22,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-5,0,1950,-4,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2050,-2,0,10,-10,0,0 +2013,6,7,5,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,-6,0,1848,-4,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1601,29,1,1733,19,1,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1712,-5,0,2223,-8,0,0 +2013,9,21,6,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,855,-1,0,1110,4,0,0 +2013,5,26,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1710,-2,0,1920,-14,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,928,1,0,1114,-13,0,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-2,0,1125,-8,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-11,0,2326,-3,0,0 +2013,5,29,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,11,0,1348,-6,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1002,15,1,1154,10,0,0 +2013,6,15,6,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,710,-7,0,955,-11,0,0 +2013,7,13,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,835,-8,0,1440,11,0,0 +2013,4,24,3,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,-1,0,1135,5,0,0 +2013,6,24,1,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1109,-3,0,1339,13,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-2,0,1827,8,0,0 +2013,8,25,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,28,1,1600,20,1,0 +2013,4,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-7,0,1050,-12,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1440,7,0,1915,6,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1507,0,0,1645,-12,0,0 +2013,9,2,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1709,-4,0,1758,-5,0,0 +2013,9,27,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-12,0,1507,-1,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,920,41,1,1035,52,1,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,920,-4,0,1200,-12,0,0 +2013,6,4,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,5,0,830,1,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-5,0,1549,-6,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1455,-2,0,1800,-3,0,0 +2013,8,6,2,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-2,0,2030,-11,0,0 +2013,8,27,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1845,24,1,2005,25,1,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2157,-10,0,2226,-1,0,0 +2013,10,6,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,955,16,1,1117,10,0,0 +2013,7,10,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1740,51,1,1855,52,1,0 +2013,7,22,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-1,0,922,-7,0,0 +2013,10,4,5,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,9,0,2344,0,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,908,-5,0,1041,-13,0,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,30,1,1935,17,1,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,-7,0,818,-23,0,0 +2013,6,9,7,EV,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,713,-8,0,831,4,0,0 +2013,9,16,1,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,3,0,2120,-17,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,743,9,0,909,-5,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,830,-4,0,1050,14,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2211,-3,0,2349,-12,0,0 +2013,7,9,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,56,1,1625,39,1,0 +2013,8,2,5,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,-2,0,1445,-5,0,0 +2013,5,26,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-6,0,1804,-17,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1726,-2,0,1840,20,1,0 +2013,10,31,4,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,530,2,0,853,4,0,0 +2013,9,8,7,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2025,-8,0,2348,-8,0,0 +2013,9,19,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1104,-6,0,1210,-11,0,0 +2013,10,4,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-2,0,1742,-3,0,0 +2013,6,20,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-5,0,2008,-9,0,0 +2013,4,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-1,0,725,-11,0,0 +2013,7,26,5,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,2338,10,0,706,14,0,0 +2013,9,1,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1150,-4,0,1842,-4,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2020,43,1,2245,35,1,0 +2013,9,6,5,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1711,-7,0,1919,-24,0,0 +2013,4,28,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-3,0,1846,-8,0,0 +2013,7,16,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1845,159,1,1945,152,1,0 +2013,9,20,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,615,-4,0,730,8,0,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1541,6,0,1656,2,0,0 +2013,9,11,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1955,3,0,2250,-1,0,0 +2013,6,13,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1321,154,1,1423,164,1,0 +2013,7,23,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,-6,0,1223,-3,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,-1,0,1634,-8,0,0 +2013,10,20,7,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,4,0,1400,-8,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1310,10,0,1540,6,0,0 +2013,7,6,6,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,712,-7,0,1035,12,0,0 +2013,8,13,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,57,1,1735,54,1,0 +2013,5,27,1,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2100,-6,0,512,-15,0,0 +2013,9,22,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,4,0,1825,6,0,0 +2013,5,10,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1805,101,1,1855,87,1,0 +2013,6,5,3,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1050,-7,0,1410,-16,0,0 +2013,4,19,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1235,-6,0,1505,-13,0,0 +2013,6,7,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,752,0,,932,0,1,1 +2013,9,9,1,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,-1,0,1112,2,0,0 +2013,7,14,7,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1410,-2,0,1750,-2,0,0 +2013,7,4,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,915,0,0,0 +2013,10,21,1,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-8,0,636,-15,0,0 +2013,8,25,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1705,-5,0,1855,-30,0,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,-3,0,1655,-1,0,0 +2013,7,19,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,8,0,1755,35,1,0 +2013,9,8,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,-7,0,2028,-12,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2040,-8,0,2305,-5,0,0 +2013,9,26,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1730,-10,0,1909,-15,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2005,1,0,2235,16,1,0 +2013,10,8,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1630,-2,0,1855,-1,0,0 +2013,8,6,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-7,0,1121,2,0,0 +2013,6,6,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,-2,0,1825,-3,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,725,9,0,1040,6,0,0 +2013,7,4,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-9,0,2102,-11,0,0 +2013,9,23,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,1,0,1753,-6,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2235,30,1,50,29,1,0 +2013,4,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1520,-1,0,1620,-10,0,0 +2013,10,18,5,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-6,0,904,-20,0,0 +2013,4,7,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1700,14,0,1820,6,0,0 +2013,4,29,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,10,0,2137,-16,0,0 +2013,4,6,6,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1610,32,1,1742,-2,0,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-1,0,1305,3,0,0 +2013,5,3,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1245,36,1,1420,45,1,0 +2013,5,31,5,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1337,-3,0,1504,-2,0,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,755,6,0,855,8,0,0 +2013,7,6,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1755,70,1,1920,51,1,0 +2013,4,29,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,-3,0,735,-18,0,0 +2013,5,10,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,45,1,1455,40,1,0 +2013,9,30,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,1,0,1240,-3,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,725,-1,0,845,7,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,0,0,925,-11,0,0 +2013,8,6,2,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2130,-8,0,2250,-12,0,0 +2013,5,5,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1750,-2,0,1915,-2,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1557,0,0,1719,-4,0,0 +2013,8,7,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1652,-1,0,1727,-5,0,0 +2013,5,11,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,640,1,0,805,-5,0,0 +2013,6,2,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1715,-4,0,1843,-7,0,0 +2013,5,10,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,-5,0,1638,-12,0,0 +2013,7,25,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1347,-1,0,1644,-22,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,-3,0,2138,6,0,0 +2013,8,29,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,907,0,0,1019,5,0,0 +2013,8,16,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-7,0,2018,-18,0,0 +2013,4,20,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,12,0,824,11,0,0 +2013,9,3,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1030,-2,0,1245,-11,0,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1215,29,1,1525,31,1,0 +2013,4,4,4,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-5,0,1747,-9,0,0 +2013,8,2,5,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,0,0,1200,-1,0,0 +2013,4,13,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,630,-1,0,750,3,0,0 +2013,8,21,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,0,0,1825,9,0,0 +2013,5,15,3,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-9,0,1602,-19,0,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1220,-6,0,1455,-1,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-2,0,1151,-6,0,0 +2013,9,8,7,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,805,-1,0,955,-18,0,0 +2013,7,10,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,42,1,1012,35,1,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,24,1,2305,32,1,0 +2013,8,2,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,33,1,1919,32,1,0 +2013,6,21,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-2,0,1155,-15,0,0 +2013,4,4,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1409,-10,0,1525,7,0,0 +2013,6,9,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,602,-8,0,754,-25,0,0 +2013,6,6,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,615,-1,0,1140,-5,0,0 +2013,8,13,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,845,-4,0,950,0,0,0 +2013,10,5,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-3,0,1318,-6,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-2,0,2204,5,0,0 +2013,6,30,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-6,0,1127,0,0,0 +2013,8,18,7,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,5,0,1435,6,0,0 +2013,6,5,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-5,0,820,-3,0,0 +2013,10,10,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,13,0,1641,5,0,0 +2013,4,13,6,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1835,-7,0,2110,-20,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2020,47,1,2145,42,1,0 +2013,9,26,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1710,-4,0,1851,7,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1220,11,0,1420,-5,0,0 +2013,8,15,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,4,0,1330,15,1,0 +2013,5,27,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-7,0,1744,-18,0,0 +2013,6,25,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,0,0,1900,14,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1940,7,0,2101,11,0,0 +2013,5,22,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,740,-4,0,855,-8,0,0 +2013,7,27,6,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,15,1,1855,3,0,0 +2013,4,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,800,-3,0,925,-5,0,0 +2013,10,17,4,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1345,17,1,1633,50,1,0 +2013,7,14,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1350,34,1,1505,33,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1915,-1,0,2048,-3,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,855,4,0,950,4,0,0 +2013,4,2,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1720,-5,0,1857,26,1,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,747,1,0,1544,8,0,0 +2013,5,24,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1113,75,1,1624,85,1,0 +2013,4,18,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,710,-7,0,832,-16,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2035,24,1,2335,21,1,0 +2013,6,9,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,-6,0,950,-12,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,1,0,1155,2,0,0 +2013,4,26,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,626,-6,0,800,4,0,0 +2013,5,18,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,0,0,1949,7,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1350,3,0,1657,19,1,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,0,0,1320,-2,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1850,-5,0,2108,-2,0,0 +2013,7,16,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-1,0,1341,-13,0,0 +2013,7,11,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,1,0,1858,3,0,0 +2013,9,13,5,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1655,-6,0,1930,-21,0,0 +2013,8,1,4,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1723,8,0,2014,-9,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1305,-5,0,1530,-16,0,0 +2013,5,28,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,635,46,1,851,27,1,0 +2013,7,26,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,56,1,1915,60,1,0 +2013,8,29,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,650,0,0,800,-9,0,0 +2013,8,7,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,650,2,0,705,10,0,0 +2013,8,8,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,904,0,0,0 +2013,5,7,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1212,-4,0,1407,1,0,0 +2013,7,25,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1704,57,1,1830,50,1,0 +2013,6,15,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-4,0,901,-22,0,0 +2013,10,21,1,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,0,0,2059,-18,0,0 +2013,10,27,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,850,-6,0,1005,-8,0,0 +2013,5,1,3,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,605,-5,0,745,-10,0,0 +2013,7,23,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,905,-5,0,0 +2013,8,30,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-2,0,1725,-3,0,0 +2013,4,27,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,640,-4,0,925,-1,0,0 +2013,6,5,3,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1115,-3,0,1250,-8,0,0 +2013,6,6,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,602,-6,0,754,-18,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2030,29,1,10,30,1,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1725,0,0,1855,-3,0,0 +2013,9,19,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1655,-4,0,1744,-1,0,0 +2013,10,5,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1455,-8,0,1626,-2,0,0 +2013,7,19,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,645,-3,0,940,13,0,0 +2013,6,26,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-1,0,1048,2,0,0 +2013,8,18,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-2,0,2111,-6,0,0 +2013,7,30,2,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-2,0,1245,-20,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,16,1,1704,5,0,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1744,-6,0,1920,-29,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,30,1,1210,34,1,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,31,1,1325,23,1,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,715,-1,0,910,4,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,735,-1,0,925,11,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1123,4,0,1415,2,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1719,-1,0,1832,-19,0,0 +2013,10,1,2,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1657,-6,0,1745,-10,0,0 +2013,6,2,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,13,0,915,13,0,0 +2013,5,25,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,845,35,1,1020,22,1,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1340,-1,0,1505,-3,0,0 +2013,6,22,6,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1359,-6,0,1558,-14,0,0 +2013,7,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,-5,0,1320,-4,0,0 +2013,8,25,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1531,53,1,1708,68,1,0 +2013,4,28,7,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-3,0,520,6,0,0 +2013,6,23,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,8,0,1810,4,0,0 +2013,8,20,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,844,18,1,0 +2013,8,1,4,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1410,0,,1530,0,1,1 +2013,7,22,1,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,824,-11,0,933,-20,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,133,1,1850,129,1,0 +2013,5,30,4,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1121,0,0,1249,32,1,0 +2013,5,16,4,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1310,0,0,1801,-23,0,0 +2013,4,6,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,715,-3,0,835,-7,0,0 +2013,9,23,1,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,600,-5,0,740,-28,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,845,-6,0,1015,-25,0,0 +2013,10,18,5,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-2,0,1450,-14,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2055,-10,0,2228,-5,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,841,-3,0,1138,-16,0,0 +2013,4,8,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-2,0,913,-16,0,0 +2013,10,4,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1145,-5,0,1424,-13,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,-1,0,1800,-10,0,0 +2013,8,25,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,750,-7,0,855,-14,0,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1340,-7,0,1600,-11,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1020,-3,0,1655,4,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1545,0,,2030,0,1,1 +2013,9,11,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,0,0,1435,-12,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1836,119,1,2215,95,1,0 +2013,10,8,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,700,4,0,832,-9,0,0 +2013,6,6,4,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1711,-8,0,1850,23,1,0 +2013,9,14,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,7,0,1830,5,0,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2009,15,1,2257,20,1,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,2,0,1505,8,0,0 +2013,9,17,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,925,1,0,1025,2,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,902,-1,0,1705,-14,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1730,10,0,2106,1,0,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1305,-1,0,1625,-15,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,-4,0,16,-14,0,0 +2013,5,3,5,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,751,-9,0,951,-32,0,0 +2013,7,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1720,-1,0,1819,-12,0,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1200,32,1,1445,84,1,0 +2013,10,14,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-3,0,1015,-12,0,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1659,0,,1833,0,1,1 +2013,4,15,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1215,28,1,1445,15,1,0 +2013,9,7,6,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1345,-3,0,1524,-2,0,0 +2013,8,24,6,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,6,0,1800,5,0,0 +2013,10,2,3,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-5,0,932,-16,0,0 +2013,8,4,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,-2,0,2005,-17,0,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,24,1,1605,25,1,0 +2013,5,9,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1415,0,0,1813,-20,0,0 +2013,10,25,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,-2,0,940,-9,0,0 +2013,7,29,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-4,0,1911,-8,0,0 +2013,4,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,850,0,0,1000,2,0,0 +2013,7,24,3,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,2105,19,1,2155,11,0,0 +2013,5,24,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2340,-9,0,609,6,0,0 +2013,8,7,3,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,847,-7,0,1207,-25,0,0 +2013,8,26,1,9E,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1655,29,1,1923,8,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1050,0,0,1435,-1,0,0 +2013,4,5,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1138,-4,0,1418,-4,0,0 +2013,5,2,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1358,-2,0,1423,-2,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,855,-2,0,1300,-10,0,0 +2013,8,27,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1523,-11,0,2329,-21,0,0 +2013,6,7,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,23,1,1540,14,0,0 +2013,8,7,3,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1332,45,1,1456,39,1,0 +2013,6,16,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1630,-10,0,1826,-18,0,0 +2013,4,21,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,-1,0,825,-16,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1145,5,0,1425,1,0,0 +2013,4,11,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-2,0,1236,-3,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1410,10,0,1550,7,0,0 +2013,5,28,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-4,0,1408,16,1,0 +2013,10,23,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2030,3,0,2158,1,0,0 +2013,9,9,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1806,-6,0,2200,5,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,600,-7,0,942,-17,0,0 +2013,4,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1710,-5,0,1752,-15,0,0 +2013,10,8,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-8,0,1108,-10,0,0 +2013,6,3,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,7,0,1706,13,0,0 +2013,10,5,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1555,-11,0,1635,-12,0,0 +2013,9,27,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-1,0,1015,-4,0,0 +2013,10,5,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,5,0,1816,8,0,0 +2013,10,12,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2149,3,0,600,-7,0,0 +2013,8,12,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1655,-2,0,49,-25,0,0 +2013,9,24,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,953,2,0,1522,-9,0,0 +2013,5,12,7,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,-1,0,2140,-13,0,0 +2013,9,4,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1745,-8,0,1902,-17,0,0 +2013,5,20,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,2005,12,0,2150,11,0,0 +2013,4,12,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,0,,1255,0,1,1 +2013,5,1,3,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1948,-3,0,115,-5,0,0 +2013,10,1,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-6,0,1346,20,1,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1345,6,0,1515,-15,0,0 +2013,7,23,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2150,189,1,100,168,1,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1042,2,0,1922,-39,0,0 +2013,5,22,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1200,-2,0,1440,-5,0,0 +2013,5,31,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,610,-1,0,850,-6,0,0 +2013,4,26,5,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1430,16,1,1611,15,1,0 +2013,6,10,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,17,1,1130,6,0,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1510,57,1,1825,68,1,0 +2013,10,1,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2110,-4,0,2255,-11,0,0 +2013,9,28,6,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,15,1,2300,13,0,0 +2013,9,26,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1736,14,0,1755,0,0,0 +2013,6,11,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1825,2,0,1916,-3,0,0 +2013,10,4,5,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,-2,0,1030,-22,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-8,0,1010,-17,0,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1335,15,1,1640,34,1,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1959,6,0,2308,-4,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1040,-1,0,1415,9,0,0 +2013,4,6,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-6,0,1435,-9,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,820,-2,0,1130,-17,0,0 +2013,9,15,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-8,0,1300,-13,0,0 +2013,8,23,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-2,0,930,-4,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,710,-4,0,831,-22,0,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,1033,-19,0,0 +2013,5,6,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2010,-1,0,2235,0,0,0 +2013,6,22,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1511,-2,0,1559,-11,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1358,108,1,1642,96,1,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,39,1,2105,28,1,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,66,1,1845,60,1,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1257,23,1,1621,18,1,0 +2013,4,16,2,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,725,0,0,940,5,0,0 +2013,10,9,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,835,1,0,955,-3,0,0 +2013,4,29,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1200,-7,0,1337,-19,0,0 +2013,5,11,6,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2105,-4,0,2330,-14,0,0 +2013,7,6,6,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1100,-1,0,1705,-11,0,0 +2013,8,14,3,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1647,36,1,1800,31,1,0 +2013,4,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1525,13,0,1810,32,1,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1300,-2,0,1625,-16,0,0 +2013,4,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2000,10,0,2120,7,0,0 +2013,4,1,1,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,37,1,2020,18,1,0 +2013,8,6,2,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-5,0,1645,-23,0,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1200,-5,0,1438,-30,0,0 +2013,4,27,6,WN,14635,Southwest Florida International,Fort Myers,FL,14307,Theodore Francis Green State,Providence,RI,1240,36,1,1530,44,1,0 +2013,4,29,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1515,15,1,0 +2013,8,20,2,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1101,-4,0,1226,-5,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1630,-3,0,1930,2,0,0 +2013,6,20,4,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-2,0,1208,-1,0,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,-4,0,1004,-26,0,0 +2013,10,26,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,820,245,1,1114,238,1,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,830,-1,0,1034,-8,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1335,33,1,1615,28,1,0 +2013,4,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,2115,-6,0,20,-20,0,0 +2013,9,23,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,720,-1,0,908,-2,0,0 +2013,4,3,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1015,-5,0,1256,-8,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,28,1,3,3,0,0 +2013,6,24,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1200,-3,0,1358,1,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,830,-4,0,935,-4,0,0 +2013,10,31,4,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,-1,0,2035,-3,0,0 +2013,9,28,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1529,-17,0,0 +2013,6,18,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,1,0,909,5,0,0 +2013,6,9,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1629,-9,0,1800,-25,0,0 +2013,4,23,2,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1012,-4,0,1130,-8,0,0 +2013,8,26,1,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1150,5,0,1710,-2,0,0 +2013,9,2,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,730,9,0,955,12,0,0 +2013,5,27,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2025,-5,0,2155,-9,0,0 +2013,9,18,3,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1003,0,0,1110,1,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,-6,0,2146,-10,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,14,0,2330,22,1,0 +2013,4,22,1,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,2210,-2,0,2338,-9,0,0 +2013,7,4,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13232,Chicago Midway International,Chicago,IL,1430,-5,0,2030,-4,0,0 +2013,4,22,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1253,85,1,1459,71,1,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1849,38,1,1951,30,1,0 +2013,9,10,2,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,-10,0,1013,-4,0,0 +2013,4,25,4,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,153,1,1955,141,1,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,815,-4,0,1057,-13,0,0 +2013,8,9,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,68,1,1949,63,1,0 +2013,6,4,2,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,31,1,1510,22,1,0 +2013,7,12,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-8,0,2102,-16,0,0 +2013,6,17,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1130,3,0,1349,7,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,645,0,0,908,-8,0,0 +2013,5,27,1,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2010,-2,0,2105,-6,0,0 +2013,4,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-5,0,1000,-10,0,0 +2013,9,28,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1630,6,0,1730,11,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,9,0,2345,18,1,0 +2013,4,16,2,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1330,-10,0,1529,-21,0,0 +2013,6,10,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,51,1,2110,49,1,0 +2013,10,18,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,19,1,1850,30,1,0 +2013,8,28,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1000,-5,0,1115,-14,0,0 +2013,8,22,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,2,0,1200,13,0,0 +2013,5,19,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1815,-2,0,1920,7,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2213,0,0,2330,-3,0,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,9,0,1904,-14,0,0 +2013,7,19,5,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,4,0,2308,11,0,0 +2013,5,29,3,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1829,-7,0,2109,-11,0,0 +2013,7,27,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,-5,0,2128,-30,0,0 +2013,5,24,5,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1710,56,1,1915,38,1,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,2,0,1255,5,0,0 +2013,7,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2259,57,1,133,54,1,0 +2013,8,30,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-6,0,1015,-38,0,0 +2013,9,21,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1435,20,1,1605,18,1,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,18,1,2050,11,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,-5,0,2149,-23,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1535,16,1,1640,8,0,0 +2013,10,4,5,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,810,0,0,1025,-16,0,0 +2013,4,14,7,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1640,1,0,34,-16,0,0 +2013,8,30,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1528,-5,0,2209,6,0,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,610,-5,0,945,-4,0,0 +2013,10,31,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1014,-6,0,1244,-3,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,16,1,1127,13,0,0 +2013,8,7,3,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-11,0,1700,-24,0,0 +2013,9,3,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1640,4,0,1815,-2,0,0 +2013,7,31,3,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,0,0,757,-11,0,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,0,0,1555,22,1,0 +2013,10,24,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-5,0,700,1,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,9,0,130,29,1,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,-7,0,1221,-9,0,0 +2013,10,28,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,-1,0,830,-6,0,0 +2013,8,1,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,6,0,1650,-2,0,0 +2013,7,28,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,900,1,0,1024,4,0,0 +2013,6,28,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1501,131,1,1800,138,1,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2035,0,0,2315,-8,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,-5,0,1537,-14,0,0 +2013,10,9,3,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1855,-4,0,2140,-29,0,0 +2013,8,27,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,545,-2,0,911,-6,0,0 +2013,7,17,3,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2029,0,0,2200,4,0,0 +2013,8,8,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,17,1,545,6,0,0 +2013,6,20,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2330,-6,0,844,2,0,0 +2013,5,2,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,630,-4,0,915,-9,0,0 +2013,5,30,4,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,755,-3,0,1020,-11,0,0 +2013,4,29,1,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2110,7,0,2355,26,1,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,820,44,1,1045,37,1,0 +2013,6,25,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1857,10,0,2032,5,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1435,79,1,1540,73,1,0 +2013,4,25,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1010,-5,0,1220,-5,0,0 +2013,8,9,5,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,2,0,1853,45,1,0 +2013,6,29,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,0,0,1247,3,0,0 +2013,4,18,4,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1400,201,1,1450,208,1,0 +2013,8,31,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,14,0,2012,10,0,0 +2013,9,3,2,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2200,-1,0,2333,20,1,0 +2013,8,30,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1321,-1,0,1528,5,0,0 +2013,4,13,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1510,11,0,1658,15,1,0 +2013,7,5,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-2,0,837,2,0,0 +2013,7,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1530,20,1,1635,33,1,0 +2013,9,29,7,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,802,-7,0,930,-1,0,0 +2013,6,24,1,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,839,-7,0,1004,-24,0,0 +2013,5,6,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-4,0,1410,-4,0,0 +2013,9,25,3,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1424,-8,0,1600,-25,0,0 +2013,5,9,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,836,1,0,944,-9,0,0 +2013,7,10,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,66,1,2056,75,1,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-2,0,2323,-3,0,0 +2013,10,24,4,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,920,20,1,1205,19,1,0 +2013,5,30,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1920,3,0,2045,-4,0,0 +2013,6,25,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1436,6,0,1610,12,0,0 +2013,4,13,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,-2,0,2020,-5,0,0 +2013,6,7,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,957,0,,1326,0,1,1 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,650,2,0,813,-5,0,0 +2013,6,11,2,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1035,-7,0,1255,-9,0,0 +2013,6,15,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,12,0,2120,3,0,0 +2013,10,29,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1315,-9,0,1520,-23,0,0 +2013,9,30,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-3,0,1617,-22,0,0 +2013,6,8,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1936,-10,0,2149,-29,0,0 +2013,7,30,2,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,13,0,518,-4,0,0 +2013,6,5,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,-8,0,620,-20,0,0 +2013,4,11,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,1,0,1640,-1,0,0 +2013,8,13,2,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1910,-10,0,1955,-17,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1333,-4,0,1447,-8,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,-2,0,2000,-8,0,0 +2013,7,9,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,635,-2,0,730,-14,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2225,-1,0,120,-7,0,0 +2013,9,14,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1440,-2,0,1624,-2,0,0 +2013,7,8,1,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1850,93,1,2134,84,1,0 +2013,8,22,4,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,613,-7,0,715,-14,0,0 +2013,9,27,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,1,0,1745,-7,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1810,89,1,1905,75,1,0 +2013,5,5,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1645,-3,0,1925,-11,0,0 +2013,8,8,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2205,-5,0,2300,-13,0,0 +2013,5,25,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,955,-3,0,1121,15,1,0 +2013,4,15,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,-1,0,1710,1,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1020,-2,0,1533,-2,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,725,-3,0,830,-11,0,0 +2013,8,11,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,850,1,0,1030,-29,0,0 +2013,7,13,6,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-10,0,1347,-11,0,0 +2013,7,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-7,0,1440,-18,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1750,18,1,2036,20,1,0 +2013,10,7,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-3,0,841,8,0,0 +2013,8,20,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,835,-10,0,1144,-28,0,0 +2013,10,20,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,40,1,2225,26,1,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2134,1,0,2309,3,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2151,6,0,2301,-10,0,0 +2013,8,24,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,1548,-3,0,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1123,-4,0,1249,3,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1247,107,1,1834,70,1,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1535,-3,0,1750,-7,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,829,8,0,1705,5,0,0 +2013,4,14,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1935,44,1,2035,39,1,0 +2013,5,21,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,625,-5,0,920,8,0,0 +2013,9,1,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,6,0,1035,5,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1910,68,1,2015,70,1,0 +2013,5,1,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1500,-5,0,1607,-11,0,0 +2013,5,17,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,0,0,2125,-12,0,0 +2013,10,4,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,530,23,1,853,17,1,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1540,2,0,1930,-7,0,0 +2013,4,3,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-6,0,1600,0,0,0 +2013,5,17,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1755,-9,0,1957,-15,0,0 +2013,8,31,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1539,-13,0,1659,13,0,0 +2013,8,6,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-2,0,1635,-18,0,0 +2013,7,18,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1952,-4,0,2252,-24,0,0 +2013,9,7,6,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-18,0,2054,-37,0,0 +2013,5,5,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,-5,0,1755,-18,0,0 +2013,8,3,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1945,5,0,2030,-1,0,0 +2013,5,14,2,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1908,-8,0,2055,-19,0,0 +2013,5,15,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,12,0,2011,31,1,0 +2013,8,30,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,600,0,0,1342,5,0,0 +2013,8,25,7,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,1,0,902,-6,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2150,0,,40,0,1,1 +2013,10,19,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2145,-1,0,140,-9,0,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2102,-1,0,2359,-4,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-4,0,1118,-8,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1320,-3,0,1809,-41,0,0 +2013,6,8,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14307,Theodore Francis Green State,Providence,RI,757,-6,0,941,-21,0,0 +2013,8,18,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,715,-4,0,904,-12,0,0 +2013,10,6,7,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1615,-17,0,1921,-29,0,0 +2013,7,24,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,800,-19,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1003,4,0,1528,-4,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1355,6,0,1621,12,0,0 +2013,8,8,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,107,1,1905,105,1,0 +2013,9,5,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,859,-11,0,1049,-12,0,0 +2013,4,1,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1625,-9,0,1803,-5,0,0 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,625,-3,0,805,-8,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,855,-3,0,1300,-22,0,0 +2013,10,22,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,36,1,1910,29,1,0 +2013,8,9,5,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,2215,-5,0,622,16,1,0 +2013,9,20,5,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1424,4,0,1709,9,0,0 +2013,4,11,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,820,-5,0,939,-10,0,0 +2013,5,31,5,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2015,-6,0,500,-27,0,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-4,0,858,-13,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1708,2,0,1840,-2,0,0 +2013,7,17,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1144,-1,0,1305,0,0,0 +2013,5,14,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2017,-3,0,2114,-3,0,0 +2013,4,7,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-4,0,1914,-5,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-2,0,922,-3,0,0 +2013,4,25,4,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,6,0,1615,-12,0,0 +2013,7,18,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1811,-1,0,2000,-6,0,0 +2013,7,14,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,13,0,1530,23,1,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,13,0,2210,12,0,0 +2013,5,1,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1920,-1,0,2050,-11,0,0 +2013,6,16,7,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1004,5,0,1110,0,0,0 +2013,10,11,5,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,704,-8,0,825,-19,0,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1900,43,1,2125,45,1,0 +2013,5,5,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1820,-10,0,2216,-18,0,0 +2013,10,10,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,1,0,2200,-3,0,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1755,-1,0,2004,-13,0,0 +2013,9,11,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1118,-2,0,1400,-7,0,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,-6,0,1120,-9,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1805,22,1,1930,11,0,0 +2013,5,15,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1405,-4,0,1555,-5,0,0 +2013,8,28,3,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1728,137,1,2014,112,1,0 +2013,4,23,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,915,15,1,1038,9,0,0 +2013,10,24,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-2,0,1750,-17,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1640,7,0,2315,0,0,0 +2013,7,25,4,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1442,15,1,1633,-3,0,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,851,27,1,1255,23,1,0 +2013,8,20,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,719,-2,0,900,-25,0,0 +2013,7,1,1,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1252,-3,0,1819,-1,0,0 +2013,6,13,4,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-3,0,1409,-7,0,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1530,-4,0,1620,-7,0,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1636,66,1,1805,52,1,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1930,3,0,35,18,1,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1405,-7,0,1615,-5,0,0 +2013,7,3,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,639,48,1,819,38,1,0 +2013,7,11,4,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,855,-1,0,1037,9,0,0 +2013,7,16,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1240,250,1,1537,244,1,0 +2013,6,30,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1830,22,1,1940,20,1,0 +2013,7,29,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1225,-4,0,1350,-2,0,0 +2013,10,19,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1107,-14,0,1406,-37,0,0 +2013,4,30,2,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,2,0,1357,5,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2105,10,0,2215,6,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,35,1,10,31,1,0 +2013,7,12,5,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-3,0,1208,6,0,0 +2013,7,29,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,20,1,1028,32,1,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1248,-2,0,1355,-9,0,0 +2013,4,6,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1045,110,1,1132,118,1,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1433,-3,0,1559,-21,0,0 +2013,4,16,2,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1233,-4,0,1445,0,0,0 +2013,8,30,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,69,1,1810,71,1,0 +2013,10,3,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1805,-9,0,2045,-14,0,0 +2013,7,19,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-5,0,725,-16,0,0 +2013,5,10,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,925,-6,0,1217,3,0,0 +2013,4,10,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1245,-5,0,1425,-22,0,0 +2013,5,30,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2115,1,0,521,-6,0,0 +2013,8,6,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1330,0,0,1445,-1,0,0 +2013,7,10,3,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,630,2,0,753,32,1,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1805,0,0,2050,-7,0,0 +2013,7,11,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-9,0,1619,-4,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,44,1,1340,16,1,0 +2013,9,30,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1401,-6,0,1640,-18,0,0 +2013,8,1,4,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,640,22,1,1009,6,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,4,0,1310,0,0,0 +2013,8,6,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1836,-6,0,2258,-21,0,0 +2013,8,28,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1045,-4,0,1210,-10,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1115,-1,0,1300,0,1,1 +2013,8,28,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,-3,0,1915,-7,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1311,-5,0,1913,6,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1802,50,1,1934,29,1,0 +2013,7,24,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,-4,0,1133,-11,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,3,0,858,-3,0,0 +2013,7,16,2,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-10,0,800,-9,0,0 +2013,4,12,5,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1353,2,0,2125,-13,0,0 +2013,10,30,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,29,1,1045,18,1,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,0,0,1617,4,0,0 +2013,9,10,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,-1,0,1430,-8,0,0 +2013,6,10,1,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1845,36,1,2001,40,1,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2130,33,1,2335,44,1,0 +2013,7,23,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1045,2,0,1200,-9,0,0 +2013,6,9,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-4,0,617,-10,0,0 +2013,6,27,4,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1954,2,0,2103,-1,0,0 +2013,7,26,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2005,20,1,2228,20,1,0 +2013,8,24,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1955,2,0,2159,-23,0,0 +2013,10,14,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1145,2,0,1240,-1,0,0 +2013,7,22,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,558,-3,0,945,-4,0,0 +2013,10,22,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-5,0,1120,-7,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1444,-2,0,1606,-12,0,0 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1210,29,1,1438,25,1,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1805,7,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-7,0,1913,-12,0,0 +2013,4,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-2,0,1605,-14,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,1,0,2055,-8,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,700,-3,0,1155,-5,0,0 +2013,5,9,4,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1900,8,0,2005,-5,0,0 +2013,6,9,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-4,0,1724,6,0,0 +2013,7,9,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,32,1,2220,21,1,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1211,4,0,1406,-15,0,0 +2013,9,26,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,918,-5,0,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1155,40,1,1455,38,1,0 +2013,7,1,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,830,23,1,940,25,1,0 +2013,7,2,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-3,0,1900,12,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1740,-4,0,1913,-13,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2114,2,0,2340,-6,0,0 +2013,5,2,4,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,25,1,1955,-3,0,0 +2013,7,13,6,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,930,0,0,1115,-6,0,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,-1,0,1840,4,0,0 +2013,6,6,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1341,12,0,1508,1,0,0 +2013,8,28,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,905,79,1,1700,75,1,0 +2013,7,10,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,29,1,1042,31,1,0 +2013,6,6,4,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2056,74,1,512,62,1,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1105,-3,0,1435,-19,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1110,-14,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1515,-11,0,1540,-19,0,0 +2013,5,25,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1015,-9,0,1305,-10,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1955,-2,0,2115,6,0,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1210,-6,0,1530,-15,0,0 +2013,5,19,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1730,1,0,2010,-8,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1150,8,0,2029,-26,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1000,29,1,1315,17,1,0 +2013,7,6,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,26,1,1740,11,0,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1310,0,0,1500,-1,0,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,4,0,2240,-5,0,0 +2013,7,11,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,829,-17,0,0 +2013,6,25,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1442,223,1,1624,233,1,0 +2013,7,23,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,630,-6,0,856,12,0,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1745,5,0,2000,1,0,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1725,8,0,2310,25,1,0 +2013,5,2,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,8,0,1408,8,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1915,32,1,2035,91,1,0 +2013,8,21,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-5,0,1110,-16,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,-5,0,2359,-11,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2025,-3,0,2304,1,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1756,14,0,1929,7,0,0 +2013,9,16,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1154,9,0,1248,-1,0,0 +2013,7,20,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1333,-7,0,1419,-13,0,0 +2013,4,13,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1600,77,1,1752,58,1,0 +2013,9,11,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,2,0,858,10,0,0 +2013,10,2,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1310,-4,0,1425,-14,0,0 +2013,7,13,6,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1654,22,1,1805,3,0,0 +2013,10,4,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-1,0,1120,-7,0,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,856,18,1,1038,5,0,0 +2013,9,16,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,1435,3,0,1625,2,0,0 +2013,8,8,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,2,0,2245,13,0,0 +2013,4,7,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,5,0,1220,0,0,0 +2013,7,17,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,88,1,2106,93,1,0 +2013,9,20,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1510,61,1,1714,78,1,0 +2013,9,28,6,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,-6,0,1715,0,0,0 +2013,10,24,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-1,0,1106,0,0,0 +2013,5,15,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1705,-1,0,1843,-12,0,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1740,116,1,1950,112,1,0 +2013,7,16,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,-5,0,1055,4,0,0 +2013,4,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1155,2,0,1320,0,0,0 +2013,4,12,5,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,-5,0,2200,-34,0,0 +2013,10,12,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-1,0,905,-3,0,0 +2013,6,21,5,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1240,6,0,1455,2,0,0 +2013,5,19,7,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1015,-1,0,1130,0,0,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1200,8,0,1518,7,0,0 +2013,10,30,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,735,-4,0,950,-10,0,0 +2013,10,11,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,1,0,515,2,0,0 +2013,7,13,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,67,1,1746,94,1,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,0,0,1538,-17,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,900,49,1,1155,80,1,0 +2013,4,21,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1525,-9,0,1715,16,1,0 +2013,9,1,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-12,0,1315,-19,0,0 +2013,5,15,3,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-3,0,951,-24,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-2,0,1811,4,0,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2104,13,0,2347,12,0,0 +2013,6,2,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1505,-2,0,1639,0,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1600,0,0,1737,-22,0,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1415,34,1,1740,12,0,0 +2013,5,26,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2322,13,0,527,-1,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1825,-4,0,2130,52,1,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1445,6,0,1610,-1,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-8,0,27,-11,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1635,-1,0,1715,-8,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,3,0,1625,0,0,0 +2013,5,1,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1010,-8,0,1155,-14,0,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1830,105,1,2049,141,1,0 +2013,10,24,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,855,4,0,1225,-4,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,955,-3,0,1119,-11,0,0 +2013,6,3,1,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,8,0,1438,19,1,0 +2013,10,29,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,652,-2,0,954,58,1,0 +2013,10,25,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,9,0,1610,3,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1315,0,,1425,0,1,1 +2013,4,19,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1640,21,1,1730,32,1,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2100,28,1,2220,20,1,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1059,-7,0,1205,-9,0,0 +2013,9,18,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-10,0,2355,-15,0,0 +2013,7,5,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,720,4,0,740,-3,0,0 +2013,6,27,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1328,-10,0,1530,-24,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1800,-4,0,2103,-11,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,0,0,504,-22,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,4,0,1523,-14,0,0 +2013,6,22,6,WN,14679,San Diego International,San Diego,CA,15016,Lambert-St. Louis International,St. Louis,MO,930,-2,0,1505,-21,0,0 +2013,5,22,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2055,0,,2230,0,1,1 +2013,8,8,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,-8,0,1514,-5,0,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1235,-6,0,1827,-9,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1930,7,0,2233,-4,0,0 +2013,7,24,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,620,-17,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1720,4,0,1849,-23,0,0 +2013,5,10,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1620,61,1,1905,52,1,0 +2013,6,16,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,9,0,1911,13,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,-3,0,1500,-7,0,0 +2013,5,7,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,13,0,2127,-2,0,0 +2013,9,9,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1630,22,1,1720,20,1,0 +2013,6,8,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1718,-8,0,1902,-44,0,0 +2013,4,9,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,955,-3,0,1310,-16,0,0 +2013,9,16,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1315,13,0,1645,11,0,0 +2013,4,10,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,857,-15,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1305,3,0,1440,-11,0,0 +2013,10,30,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-5,0,2130,-11,0,0 +2013,5,25,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-4,0,1330,-15,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1020,3,0,1536,-8,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,166,1,2205,160,1,0 +2013,7,26,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,5,0,1255,9,0,0 +2013,5,6,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1550,86,1,1907,59,1,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1955,23,1,2220,18,1,0 +2013,7,24,3,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1301,-1,0,1810,7,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,-4,0,2119,-6,0,0 +2013,7,24,3,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1230,-8,0,1451,-10,0,0 +2013,9,23,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,7,0,1035,-1,0,0 +2013,6,7,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1124,10,0,1357,-8,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,720,-2,0,1035,-9,0,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,600,1,0,725,-9,0,0 +2013,6,13,4,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,6,0,559,-11,0,0 +2013,5,15,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,828,2,0,1344,-11,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,-1,0,2000,-1,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,-6,0,1148,-16,0,0 +2013,9,15,7,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1704,-6,0,1932,-3,0,0 +2013,6,8,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1100,7,0,1250,-4,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1030,-2,0,1216,-11,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1449,23,1,1650,17,1,0 +2013,6,26,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-7,0,1615,-20,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1052,-2,0,1229,-18,0,0 +2013,8,18,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-3,0,450,4,0,0 +2013,7,13,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,758,-3,0,940,-25,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1240,-2,0,1335,-9,0,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,-4,0,1807,-10,0,0 +2013,9,19,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1238,-3,0,1825,27,1,0 +2013,7,20,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1755,-8,0,1935,21,1,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1730,5,0,2010,-3,0,0 +2013,9,11,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1920,-1,0,2246,8,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,610,10,0,820,-3,0,0 +2013,10,3,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1910,-3,0,2025,-4,0,0 +2013,9,1,7,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-11,0,925,-25,0,0 +2013,10,11,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,0,0,1215,-5,0,0 +2013,9,24,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-3,0,1335,-3,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,-1,0,1313,-8,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2145,-1,0,2332,-3,0,0 +2013,5,3,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,755,-5,0,855,1,0,0 +2013,6,13,4,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-2,0,846,-15,0,0 +2013,7,6,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,-12,0,1645,-21,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,0,0,1923,-12,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1530,-1,0,1730,5,0,0 +2013,10,31,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1235,32,1,1345,29,1,0 +2013,7,21,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-12,0,1555,-14,0,0 +2013,9,1,7,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,950,73,1,1240,72,1,0 +2013,7,22,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-2,0,745,-18,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1900,27,1,2040,30,1,0 +2013,5,16,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-6,0,1510,-13,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,831,0,0,1001,-14,0,0 +2013,5,5,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1615,-3,0,1910,-10,0,0 +2013,8,29,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,0,0,2040,-8,0,0 +2013,9,25,3,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,815,0,0,1201,-21,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,46,1,2215,46,1,0 +2013,4,10,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2155,29,1,2315,23,1,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1554,-7,0,1825,-14,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1840,-2,0,2110,-14,0,0 +2013,8,15,4,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-3,0,825,-9,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,8,0,1627,-1,0,0 +2013,7,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1804,-2,0,1932,-9,0,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,-3,0,1245,-4,0,0 +2013,4,12,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,-3,0,1155,3,0,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1835,-2,0,1945,-15,0,0 +2013,8,16,5,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-4,0,2101,-6,0,0 +2013,7,28,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,0,0,2300,10,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1200,21,1,1355,24,1,0 +2013,6,21,5,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1040,15,1,1217,20,1,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1020,-1,0,1203,-3,0,0 +2013,4,27,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1515,-3,0,1620,-10,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1815,15,1,1917,3,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,0,0,1314,6,0,0 +2013,5,12,7,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-9,0,1520,-1,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1500,17,1,1721,38,1,0 +2013,6,16,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-7,0,1200,-21,0,0 +2013,6,25,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1118,147,1,1230,149,1,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1026,-1,0,1153,0,0,0 +2013,4,4,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,840,-3,0,1150,-40,0,0 +2013,10,24,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1256,-4,0,1602,-9,0,0 +2013,5,21,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1810,3,0,2005,9,0,0 +2013,6,6,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-3,0,1216,4,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1712,75,1,2022,78,1,0 +2013,8,20,2,OO,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1654,3,0,1830,14,0,0 +2013,10,17,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-6,0,2103,-22,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,-2,0,730,-17,0,0 +2013,10,7,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1105,11,0,1220,6,0,0 +2013,8,1,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1225,6,0,1340,7,0,0 +2013,9,23,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2005,9,0,2016,0,0,0 +2013,9,18,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,710,144,1,1010,144,1,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,840,47,1,1058,34,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1530,29,1,1709,37,1,0 +2013,8,31,6,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1445,0,0,1720,-11,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1544,0,0,1708,-9,0,0 +2013,6,9,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,16,1,2105,17,1,0 +2013,7,1,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,61,1,1659,69,1,0 +2013,9,17,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1117,-1,0,1250,14,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-4,0,1224,-14,0,0 +2013,6,3,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,542,-1,0,808,-12,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1915,-2,0,2047,-18,0,0 +2013,4,28,7,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,634,-2,0,1024,-18,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1456,-3,0,1558,-11,0,0 +2013,5,27,1,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1030,-9,0,1830,26,1,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-2,0,1545,-32,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1800,35,1,2055,28,1,0 +2013,10,30,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1030,-5,0,1300,-6,0,0 +2013,7,3,3,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,-1,0,1025,-27,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1041,-3,0,1155,-10,0,0 +2013,6,15,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1706,-18,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,-5,0,1135,3,0,0 +2013,7,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,8,0,2155,6,0,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1130,53,1,1435,46,1,0 +2013,6,8,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1835,39,1,2000,33,1,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1322,18,1,1508,12,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,700,5,0,825,15,1,0 +2013,6,14,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1653,-1,0,1744,3,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2209,6,0,44,12,0,0 +2013,9,1,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1112,-3,0,1520,-15,0,0 +2013,5,28,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1730,-4,0,1935,-19,0,0 +2013,8,27,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1806,-11,0,1955,-14,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-3,0,1045,-2,0,0 +2013,9,16,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,610,-4,0,750,-10,0,0 +2013,5,7,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,-7,0,945,-30,0,0 +2013,5,14,2,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,-4,0,1230,3,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1331,-4,0,1500,-34,0,0 +2013,7,25,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1756,-2,0,1951,-11,0,0 +2013,8,18,7,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1921,36,1,2337,24,1,0 +2013,10,20,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,0,0,1710,-1,0,0 +2013,9,30,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,711,-1,0,851,-10,0,0 +2013,9,27,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,610,56,1,725,71,1,0 +2013,6,27,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-2,0,1117,-10,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,-1,0,1624,-14,0,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1030,-3,0,1309,-8,0,0 +2013,5,13,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1145,-6,0,1311,-21,0,0 +2013,5,4,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,26,1,1452,44,1,0 +2013,6,10,1,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,100,1,2029,102,1,0 +2013,10,24,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,700,-5,0,946,-17,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2050,53,1,2150,61,1,0 +2013,9,26,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1550,7,0,2110,-2,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,126,1,1855,126,1,0 +2013,6,30,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,838,-14,0,1029,-29,0,0 +2013,8,1,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-6,0,1923,-8,0,0 +2013,6,14,5,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1430,2,0,1615,-14,0,0 +2013,4,7,7,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1530,6,0,1849,-2,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,-6,0,1118,-8,0,0 +2013,10,6,7,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,900,1,0,1115,-3,0,0 +2013,5,22,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,3,0,900,-4,0,0 +2013,5,29,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,600,-2,0,655,-4,0,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,805,0,0,1235,-9,0,0 +2013,5,17,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1046,2,0,1327,-6,0,0 +2013,6,8,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1520,124,1,1625,124,1,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,950,3,0,1110,12,0,0 +2013,4,14,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-12,0,1242,-16,0,0 +2013,7,19,5,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,620,6,0,1225,21,1,0 +2013,6,13,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,710,0,0,837,-5,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,-1,0,1332,18,1,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,55,1,1925,59,1,0 +2013,7,26,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,-4,0,2105,-7,0,0 +2013,10,29,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,-4,0,1957,-5,0,0 +2013,7,26,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,2150,2,0,202,-7,0,0 +2013,6,1,6,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1705,-10,0,1841,-7,0,0 +2013,7,24,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1720,-2,0,1840,-12,0,0 +2013,5,3,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1050,15,1,0 +2013,7,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1050,45,1,1230,50,1,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,935,1,0,1114,2,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,600,-4,0,740,-31,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,-1,0,1005,-11,0,0 +2013,5,10,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-3,0,1803,-4,0,0 +2013,8,4,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,6,0,937,-6,0,0 +2013,6,20,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,719,-3,0,1103,-4,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,2,0,1315,2,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1345,16,1,1545,17,1,0 +2013,10,30,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,710,-5,0,852,-12,0,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1845,-8,0,2000,-4,0,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1525,3,0,1810,-15,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,9,0,1020,10,0,0 +2013,5,25,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1350,-9,0,1644,-19,0,0 +2013,9,11,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1450,-8,0,1555,-17,0,0 +2013,8,31,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,725,-3,0,919,-24,0,0 +2013,6,4,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1852,-1,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,4,0,1330,8,0,0 +2013,9,18,3,EV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,540,-3,0,703,-5,0,0 +2013,7,24,3,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,3,0,1005,10,0,0 +2013,7,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1125,-1,0,1230,-2,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,856,-1,0,1200,-13,0,0 +2013,6,18,2,FL,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1718,54,1,1833,72,1,0 +2013,9,11,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1943,-4,0,2305,-13,0,0 +2013,8,28,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-7,0,815,-9,0,0 +2013,6,28,5,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,20,1,2247,24,1,0 +2013,7,30,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1850,-5,0,2014,-3,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1745,0,0,2205,-22,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1318,13,0,1454,-3,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1705,3,0,1922,-9,0,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1128,83,1,1453,71,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2200,0,0,2330,-22,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1253,-1,0,1426,6,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2035,-5,0,2245,5,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,-2,0,2359,-1,0,0 +2013,4,2,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,929,-3,0,1135,-19,0,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1850,10,0,2020,32,1,0 +2013,7,12,5,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,0,0,1315,1,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,-5,0,1527,-14,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1035,-2,0,1525,-21,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2000,0,0,2134,-2,0,0 +2013,4,26,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,-2,0,2100,-4,0,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1659,5,0,2006,-32,0,0 +2013,5,27,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,-2,0,2310,-8,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,717,8,0,1555,-9,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2019,25,1,2332,-1,0,0 +2013,9,12,4,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1635,0,,1815,0,1,1 +2013,5,14,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1409,19,1,2002,-2,0,0 +2013,5,6,1,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1610,-1,0,1911,-12,0,0 +2013,10,17,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-4,0,1220,-19,0,0 +2013,9,1,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,730,-3,0,1130,-13,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,920,0,0,1210,-4,0,0 +2013,4,24,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1631,-2,0,1920,-5,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1012,0,0,1159,-13,0,0 +2013,6,7,5,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1751,48,1,2006,93,1,0 +2013,5,22,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,-2,0,1025,-14,0,0 +2013,6,9,7,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,-7,0,1852,2,0,0 +2013,4,3,3,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1143,-2,0,1322,-13,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,11,0,1635,2,0,0 +2013,10,23,3,AA,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1840,-5,0,2010,0,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,825,-1,0,1000,-3,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1300,-2,0,1624,-22,0,0 +2013,4,17,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1111,15,1,1312,-8,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,30,1,2220,21,1,0 +2013,8,12,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,845,-4,0,1420,-27,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1936,85,1,2100,61,1,0 +2013,7,12,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1655,38,1,1835,38,1,0 +2013,5,23,4,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1353,-4,0,1520,-15,0,0 +2013,6,19,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-3,0,1734,-9,0,0 +2013,6,9,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-6,0,1010,6,0,0 +2013,9,30,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,519,-5,0,606,-14,0,0 +2013,5,28,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,805,-2,0,930,-3,0,0 +2013,9,3,2,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1720,-4,0,2200,16,1,0 +2013,10,28,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1410,2,0,1536,12,0,0 +2013,6,6,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1123,0,0,1207,-10,0,0 +2013,7,9,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1225,-6,0,1800,3,0,0 +2013,5,30,4,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,749,-14,0,0 +2013,8,15,4,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,8,0,1415,-10,0,0 +2013,7,26,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1730,-5,0,1900,-25,0,0 +2013,8,29,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1053,-9,0,1637,-23,0,0 +2013,8,15,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,8,0,810,14,0,0 +2013,8,3,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-5,0,1415,-15,0,0 +2013,4,6,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-2,0,905,9,0,0 +2013,10,13,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,810,-5,0,910,1,0,0 +2013,4,15,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-6,0,1930,-14,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,113,1,2046,99,1,0 +2013,9,8,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2026,58,1,2120,70,1,0 +2013,9,24,2,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1802,-1,0,1917,-2,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1925,34,1,2230,22,1,0 +2013,5,9,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-1,0,1505,-3,0,0 +2013,8,4,7,YV,12339,Indianapolis International,Indianapolis,IN,14100,Philadelphia International,Philadelphia,PA,1801,23,1,1947,16,1,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,910,10,0,1040,-5,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,2,0,1150,-3,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1805,6,0,2010,-4,0,0 +2013,4,18,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1617,4,0,1810,0,0,0 +2013,7,28,7,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,236,1,1853,253,1,0 +2013,4,13,6,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1815,-6,0,1930,-11,0,0 +2013,10,14,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,910,-1,0,1040,-6,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2100,66,1,2340,56,1,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,-4,0,1610,1,0,0 +2013,5,2,4,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,-3,0,1347,-12,0,0 +2013,8,11,7,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1415,29,1,1544,35,1,0 +2013,10,12,6,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1805,-20,0,1959,-27,0,0 +2013,9,11,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-4,0,1749,-3,0,0 +2013,4,7,7,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,710,-7,0,832,-19,0,0 +2013,7,19,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,0,0,1254,9,0,0 +2013,4,8,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1339,31,1,1701,16,1,0 +2013,8,15,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,615,-5,0,855,-12,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,752,7,0,1405,-1,0,0 +2013,4,21,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1215,-7,0,1436,-19,0,0 +2013,9,27,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1515,40,1,1620,32,1,0 +2013,8,18,7,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,614,-2,0,808,10,0,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1812,23,1,1957,27,1,0 +2013,10,28,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,655,-4,0,800,-6,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-1,0,1349,65,1,0 +2013,4,8,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-3,0,1820,-11,0,0 +2013,6,15,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1415,42,1,1555,42,1,0 +2013,9,7,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,709,-7,0,743,-9,0,0 +2013,9,20,5,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,0,0,925,1,0,0 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2055,0,0,2359,21,1,0 +2013,10,21,1,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1240,9,0,1640,-16,0,0 +2013,4,20,6,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1414,0,0,1534,-3,0,0 +2013,8,19,1,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,830,-2,0,1014,2,0,0 +2013,7,9,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1006,-2,0,1158,-6,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2030,11,0,2135,5,0,0 +2013,10,20,7,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1347,-7,0,1520,-9,0,0 +2013,10,2,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,752,189,1,1049,177,1,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1130,-3,0,1339,-12,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1145,27,1,1310,24,1,0 +2013,5,5,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1540,-2,0,1820,-24,0,0 +2013,10,21,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1547,15,1,1630,18,1,0 +2013,10,8,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1423,-6,0,1604,-23,0,0 +2013,4,29,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,-7,0,1335,-25,0,0 +2013,9,30,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1451,-9,0,1620,-15,0,0 +2013,5,2,4,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1934,31,1,2105,25,1,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,900,1,0,1028,3,0,0 +2013,7,25,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2045,30,1,2155,28,1,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,-1,0,2255,-8,0,0 +2013,8,30,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,2,0,940,-17,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,-1,0,1929,-16,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,77,1,2357,84,1,0 +2013,5,28,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1755,-2,0,1924,3,0,0 +2013,10,4,5,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,0,0,1245,11,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1305,0,0,1620,-23,0,0 +2013,7,30,2,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,732,-3,0,1046,-2,0,0 +2013,7,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1315,26,1,1510,28,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,-4,0,1845,-7,0,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2105,8,0,2221,3,0,0 +2013,4,1,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2205,115,1,552,101,1,0 +2013,8,7,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-7,0,1253,-11,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,12,0,2005,13,0,0 +2013,9,23,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2110,33,1,2231,31,1,0 +2013,6,1,6,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1040,-7,0,1425,-23,0,0 +2013,8,29,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,745,-3,0,835,-4,0,0 +2013,9,13,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1050,-6,0,1140,-3,0,0 +2013,5,14,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1510,5,0,1835,-14,0,0 +2013,8,19,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,-2,0,1355,-7,0,0 +2013,7,22,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1515,8,0,1915,7,0,0 +2013,10,8,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,2,0,1210,-1,0,0 +2013,5,29,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-10,0,1601,-18,0,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,24,1,2249,8,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,25,1,1550,23,1,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,1,0,910,-5,0,0 +2013,9,28,6,WN,11278,Ronald Reagan Washington National,Washington,DC,12191,William P Hobby,Houston,TX,1600,-7,0,1820,-38,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,-4,0,1507,-13,0,0 +2013,4,30,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1210,117,1,1230,123,1,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1405,97,1,1500,124,1,0 +2013,5,2,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2140,0,,2250,0,1,1 +2013,5,4,6,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,815,-6,0,1014,-8,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1630,18,1,1802,-4,0,0 +2013,9,6,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1937,6,0,2143,-3,0,0 +2013,9,28,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1435,-10,0,1600,0,0,0 +2013,4,17,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-3,0,1515,2,0,0 +2013,8,6,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1035,-5,0,1320,-14,0,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1915,25,1,13,20,1,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1930,28,1,2210,3,0,0 +2013,9,23,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1749,-6,0,1924,-9,0,0 +2013,9,19,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,-3,0,1627,4,0,0 +2013,7,25,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1830,5,0,2015,4,0,0 +2013,7,31,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,710,-5,0,844,22,1,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-1,0,1240,13,0,0 +2013,10,18,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1025,48,1,1315,51,1,0 +2013,6,6,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,0,0,825,-18,0,0 +2013,8,11,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1840,6,0,2000,-2,0,0 +2013,4,11,4,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1845,33,1,2110,21,1,0 +2013,5,9,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,3,0,1531,-2,0,0 +2013,7,5,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,59,1,1015,59,1,0 +2013,10,8,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,630,-3,0,745,0,0,0 +2013,4,21,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,530,80,1,800,76,1,0 +2013,5,22,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-4,0,851,-12,0,0 +2013,4,9,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,1350,-10,0,0 +2013,4,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1358,-7,0,1424,-7,0,0 +2013,7,31,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,730,-6,0,852,-5,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1310,11,0,1520,19,1,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1652,-2,0,1747,-4,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1740,56,1,1945,76,1,0 +2013,7,23,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-5,0,1302,-2,0,0 +2013,6,19,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2018,32,1,2300,18,1,0 +2013,9,18,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-6,0,1756,3,0,0 +2013,8,21,3,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-5,0,1225,-16,0,0 +2013,9,14,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1145,-9,0,1335,0,0,0 +2013,10,9,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,840,-7,0,1020,25,1,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,643,5,0,906,-10,0,0 +2013,8,31,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1016,-4,0,1205,-6,0,0 +2013,9,12,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,0,0,1240,-7,0,0 +2013,4,27,6,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,-2,0,1055,-8,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1510,11,0,1605,11,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-2,0,1547,-13,0,0 +2013,10,10,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,2,0,845,-5,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,-4,0,2319,2,0,0 +2013,7,15,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-7,0,1245,6,0,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,-6,0,1945,28,1,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1025,-1,0,1400,-8,0,0 +2013,5,1,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,-3,0,1210,-2,0,0 +2013,4,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1430,-2,0,1821,-12,0,0 +2013,9,7,6,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-5,0,2229,-3,0,0 +2013,7,17,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,18,1,815,21,1,0 +2013,4,19,5,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1454,21,1,1749,-2,0,0 +2013,9,22,7,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1114,0,0,1659,-17,0,0 +2013,6,16,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,902,6,0,1116,-5,0,0 +2013,5,16,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1440,-8,0,1737,-11,0,0 +2013,4,2,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-3,0,1124,-17,0,0 +2013,8,3,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1345,2,0,1445,5,0,0 +2013,8,12,1,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,805,-3,0,1014,14,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2002,23,1,2346,7,0,0 +2013,5,12,7,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,730,-1,0,927,-8,0,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1230,9,0,1330,1,0,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-3,0,1529,-4,0,0 +2013,8,10,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-9,0,1205,6,0,0 +2013,9,29,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-4,0,809,-21,0,0 +2013,4,26,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1455,1,0,1620,-5,0,0 +2013,4,26,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,11,0,955,10,0,0 +2013,4,27,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-6,0,838,-14,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,745,-2,0,1315,-8,0,0 +2013,7,25,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,835,-4,0,958,-3,0,0 +2013,9,3,2,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,945,-9,0,1029,-18,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-5,0,1628,-13,0,0 +2013,7,19,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,619,-7,0,803,-11,0,0 +2013,5,8,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1015,-4,0,1526,4,0,0 +2013,6,2,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-1,0,1515,-10,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1020,-8,0,0 +2013,8,31,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,0,0,1135,-4,0,0 +2013,5,13,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-8,0,1315,-16,0,0 +2013,4,30,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1740,-6,0,1910,4,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2000,56,1,2215,67,1,0 +2013,4,15,1,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1312,-13,0,1500,7,0,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1555,30,1,1830,15,1,0 +2013,8,24,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,957,-4,0,1054,-4,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-5,0,927,-2,0,0 +2013,6,21,5,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1105,24,1,1330,9,0,0 +2013,7,2,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-6,0,1105,-8,0,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2029,56,1,2253,59,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1905,-1,0,2026,-13,0,0 +2013,7,9,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,635,-15,0,0 +2013,7,20,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-5,0,1012,-2,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,27,1,1135,24,1,0 +2013,5,15,3,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,23,1,1126,11,0,0 +2013,6,2,7,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,842,51,1,1109,48,1,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1920,-1,0,2104,-20,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,-1,0,1155,-2,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2010,0,0,2148,-16,0,0 +2013,6,16,7,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1855,-6,0,2015,-9,0,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1215,20,1,1500,7,0,0 +2013,5,19,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2155,-2,0,2250,-5,0,0 +2013,9,28,6,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,1,0,2014,-9,0,0 +2013,6,9,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1925,5,0,2135,-1,0,0 +2013,6,4,2,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-2,0,1955,-17,0,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1745,3,0,2340,1,0,0 +2013,8,14,3,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-2,0,2041,-23,0,0 +2013,10,30,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-5,0,1348,-3,0,0 +2013,4,24,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1557,-7,0,0 +2013,9,29,7,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1213,-4,0,1413,-8,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1130,19,1,1435,8,0,0 +2013,6,16,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1904,13,0,2055,-13,0,0 +2013,7,22,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2030,42,1,2345,28,1,0 +2013,10,23,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,17,1,1939,11,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,1,0,2148,-6,0,0 +2013,4,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1345,-5,0,1512,-9,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2114,1,0,2359,10,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,-3,0,1125,-8,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,-2,0,1717,-11,0,0 +2013,5,20,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2015,118,1,2220,148,1,0 +2013,6,24,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,11,0,2105,16,1,0 +2013,5,27,1,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1425,69,1,1644,79,1,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1706,5,0,1727,-9,0,0 +2013,7,13,6,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,16,1,2216,56,1,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1615,27,1,1921,1,0,0 +2013,9,16,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,627,-1,0,837,-7,0,0 +2013,8,22,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1540,38,1,1705,28,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1052,-6,0,1223,-6,0,0 +2013,7,9,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1735,86,1,1850,79,1,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,-2,0,2347,-1,0,0 +2013,8,5,1,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1715,139,1,1945,134,1,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-2,0,849,-4,0,0 +2013,8,4,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-9,0,2105,-23,0,0 +2013,10,14,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1812,-6,0,1912,5,0,0 +2013,5,7,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1230,7,0,1410,-5,0,0 +2013,5,14,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1000,-5,0,1105,-14,0,0 +2013,8,20,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,9,0,1815,-12,0,0 +2013,5,30,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,15,1,1126,5,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1010,-2,0,1200,-25,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,920,13,0,1055,11,0,0 +2013,6,19,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1705,3,0,1830,-10,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,2,0,1245,-13,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,-4,0,2059,-6,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,4,0,1120,-2,0,0 +2013,5,22,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1154,36,1,1715,83,1,0 +2013,10,10,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,629,-8,0,929,-18,0,0 +2013,10,14,1,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,7,0,1425,-14,0,0 +2013,8,26,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1535,-7,0,2100,-8,0,0 +2013,6,28,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,64,1,930,54,1,0 +2013,7,12,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1900,41,1,2145,39,1,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-6,0,1359,-9,0,0 +2013,6,2,7,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1658,-5,0,1848,-15,0,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,935,-1,0,1600,-14,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,15,1,1219,4,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,38,1,2000,29,1,0 +2013,5,3,5,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1201,-7,0,1313,-19,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,813,-1,0,1046,16,1,0 +2013,10,18,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,-8,0,1256,-11,0,0 +2013,9,30,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-2,0,1350,-9,0,0 +2013,10,14,1,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,1,0,1708,-26,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1200,-1,0,1332,-13,0,0 +2013,6,19,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1835,113,1,2109,114,1,0 +2013,7,17,3,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,-1,0,820,-9,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,710,-1,0,1010,-5,0,0 +2013,7,18,4,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1026,-5,0,1200,-22,0,0 +2013,8,21,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1825,132,1,1955,118,1,0 +2013,8,4,7,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1129,-8,0,1326,-20,0,0 +2013,10,2,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,-6,0,2353,-13,0,0 +2013,6,26,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,839,37,1,1032,16,1,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2003,-5,0,2120,-6,0,0 +2013,4,22,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-9,0,1641,-18,0,0 +2013,6,10,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,14,0,1832,25,1,0 +2013,10,25,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,0,0,1520,-20,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,950,-1,0,1001,-12,0,0 +2013,9,8,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-5,0,1559,-10,0,0 +2013,4,18,4,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1845,136,1,2019,123,1,0 +2013,5,17,5,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,42,1,2101,13,0,0 +2013,5,8,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1851,15,1,2024,19,1,0 +2013,9,27,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,138,1,2035,126,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1905,44,1,2036,45,1,0 +2013,4,10,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,731,-1,0,913,-7,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,13,0,2110,-4,0,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1130,-3,0,1234,-6,0,0 +2013,7,4,4,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1450,-1,0,1907,17,1,0 +2013,6,12,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,6,0,2150,-6,0,0 +2013,8,19,1,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1700,4,0,1825,-7,0,0 +2013,10,12,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,920,-4,0,1025,-10,0,0 +2013,4,28,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,802,4,0,1408,14,0,0 +2013,6,13,4,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-3,0,1204,40,1,0 +2013,8,15,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,900,0,0,1043,-10,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1100,-4,0,1235,-7,0,0 +2013,4,22,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1620,5,0,1925,28,1,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,-1,0,855,-2,0,0 +2013,10,6,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,61,1,1545,56,1,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1730,10,0,1855,4,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,717,-1,0,1159,-19,0,0 +2013,9,29,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,12,0,2149,-18,0,0 +2013,7,11,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,0,0,2230,25,1,0 +2013,6,26,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,1,0,850,-6,0,0 +2013,10,7,1,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1651,1,0,1957,3,0,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,806,134,1,1253,126,1,0 +2013,6,13,4,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1920,-13,0,2029,-8,0,0 +2013,7,24,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-2,0,753,-20,0,0 +2013,10,2,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1915,-7,0,2117,-22,0,0 +2013,7,28,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1700,-7,0,1756,4,0,0 +2013,4,15,1,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-1,0,922,-23,0,0 +2013,5,10,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,-6,0,1650,-4,0,0 +2013,5,6,1,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,-4,0,2200,-75,0,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,-3,0,1222,-7,0,0 +2013,8,8,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,705,-1,0,840,6,0,0 +2013,8,9,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,808,-5,0,925,-4,0,0 +2013,4,9,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1212,-8,0,1351,-11,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1205,0,0,1312,7,0,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1947,54,1,2337,58,1,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,8,0,1330,-5,0,0 +2013,10,21,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1450,19,1,1500,15,1,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,9,0,735,14,0,0 +2013,10,5,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1415,-4,0,1527,4,0,0 +2013,10,27,7,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1859,4,0,2019,-16,0,0 +2013,5,19,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1620,-9,0,1925,-6,0,0 +2013,6,11,2,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,951,-8,0,1758,-9,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,820,3,0,1100,-4,0,0 +2013,10,10,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,-3,0,1929,-4,0,0 +2013,10,28,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,620,1,0,725,19,1,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,-3,0,1541,-13,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,925,7,0,1053,0,0,0 +2013,7,20,6,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1657,5,0,1744,19,1,0 +2013,7,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,75,1,2055,83,1,0 +2013,9,6,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-5,0,1252,-13,0,0 +2013,6,8,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,11,0,815,-2,0,0 +2013,9,3,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2040,-2,0,2210,-12,0,0 +2013,8,2,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,649,-7,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,850,0,0,1115,-20,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,12,0,2230,6,0,0 +2013,7,21,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1115,106,1,1625,104,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2205,-3,0,2331,-12,0,0 +2013,6,27,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-2,0,1940,1,0,0 +2013,6,18,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,2,0,2200,1,0,0 +2013,10,16,3,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1925,15,1,2010,8,0,0 +2013,8,27,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,848,-6,0,1442,-24,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,9,0,1052,-16,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,-2,0,1258,-7,0,0 +2013,9,16,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1345,0,0,1440,-13,0,0 +2013,7,6,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1730,0,,1845,0,1,1 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1025,36,1,1237,9,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1631,3,0,1730,4,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1240,16,1,1720,4,0,0 +2013,10,13,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1950,-7,0,2100,-11,0,0 +2013,4,9,2,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,959,-4,0,1530,31,1,0 +2013,7,1,1,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,0,,1720,0,1,1 +2013,4,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,2,0,2203,-12,0,0 +2013,4,3,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-12,0,1304,-11,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1853,0,,1949,0,1,1 +2013,4,17,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,951,47,1,1035,53,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2230,0,0,2330,16,1,0 +2013,7,16,2,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,730,5,0,835,-7,0,0 +2013,4,18,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-1,0,804,-16,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1520,25,1,1615,15,1,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1305,-9,0,1600,7,0,0 +2013,8,29,4,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1710,44,1,1901,34,1,0 +2013,5,4,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-10,0,1145,-22,0,0 +2013,10,12,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1337,-7,0,1715,9,0,0 +2013,8,20,2,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,800,-5,0,1110,-24,0,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,-4,0,2110,-11,0,0 +2013,7,11,4,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1119,-9,0,1234,-15,0,0 +2013,4,17,3,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,50,1,2125,40,1,0 +2013,4,23,2,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1955,-5,0,2130,-9,0,0 +2013,10,13,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1959,-5,0,2111,19,1,0 +2013,4,3,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,104,1,1345,104,1,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1310,-1,0,1600,-6,0,0 +2013,5,11,6,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1629,108,1,1754,142,1,0 +2013,5,26,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-9,0,1011,-17,0,0 +2013,9,1,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1240,-2,0,1423,2,0,0 +2013,6,14,5,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,71,1,2145,85,1,0 +2013,7,3,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1600,46,1,1724,45,1,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,7,0,1920,4,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1518,-2,0,1710,-6,0,0 +2013,6,7,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,50,-4,0,622,-2,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1945,61,1,110,73,1,0 +2013,7,24,3,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1121,4,0,1445,11,0,0 +2013,8,27,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,52,1,1105,38,1,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,-1,0,855,-12,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1805,-2,0,2030,20,1,0 +2013,9,11,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,14,0,1235,9,0,0 +2013,8,12,1,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1915,2,0,2159,-19,0,0 +2013,10,25,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1205,4,0,1330,8,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2250,-1,0,14,-6,0,0 +2013,8,28,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-6,0,920,-4,0,0 +2013,7,28,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1730,9,0,1800,0,0,0 +2013,5,20,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-4,0,906,6,0,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,1,0,1200,-11,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1440,31,1,1555,18,1,0 +2013,6,8,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1641,96,1,1941,75,1,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,1,0,1010,-8,0,0 +2013,4,20,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,801,-10,0,0 +2013,8,16,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,144,1,920,122,1,0 +2013,6,14,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,923,-11,0,0 +2013,7,25,4,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1610,16,1,1740,11,0,0 +2013,5,10,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,21,1,1910,10,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,82,1,1635,62,1,0 +2013,9,11,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-3,0,1300,-5,0,0 +2013,4,27,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,2030,-6,0,2146,-35,0,0 +2013,4,21,7,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,835,-2,0,1215,-5,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-8,0,1811,2,0,0 +2013,10,17,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,517,101,1,757,102,1,0 +2013,10,28,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,199,1,1310,206,1,0 +2013,4,7,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1730,-10,0,2023,-20,0,0 +2013,9,22,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1250,33,1,1541,20,1,0 +2013,6,26,3,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,945,14,0,1427,6,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,71,1,2126,72,1,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,720,2,0,1240,-5,0,0 +2013,10,23,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1600,-8,0,1657,-12,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1935,-6,0,2335,7,0,0 +2013,4,6,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1600,12,0,1646,6,0,0 +2013,8,18,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-5,0,2041,4,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1614,4,0,1821,6,0,0 +2013,9,18,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1429,-5,0,1821,-15,0,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,4,0,2120,0,0,0 +2013,6,24,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1720,-2,0,1840,-11,0,0 +2013,8,7,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-2,0,925,-9,0,0 +2013,8,15,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1908,5,0,2128,11,0,0 +2013,7,18,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2117,74,1,2247,57,1,0 +2013,6,26,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-5,0,1055,-15,0,0 +2013,9,3,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-4,0,1702,2,0,0 +2013,6,14,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,3,0,2213,6,0,0 +2013,8,8,4,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2045,25,1,2320,51,1,0 +2013,10,14,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1654,2,0,1831,-9,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,0,0,1426,17,1,0 +2013,5,12,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,4,0,1340,14,0,0 +2013,9,23,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,533,-7,0,632,-8,0,0 +2013,8,21,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2037,-2,0,2158,-12,0,0 +2013,10,18,5,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-6,0,1810,-11,0,0 +2013,4,14,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1354,4,0,1610,-11,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1834,49,1,1959,35,1,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,5,0,951,8,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,741,19,1,854,27,1,0 +2013,4,8,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,933,2,0,1025,7,0,0 +2013,10,10,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,4,0,1648,38,1,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,611,-4,0,722,6,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1218,-1,0,1333,3,0,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1725,32,1,2155,13,0,0 +2013,5,24,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,835,51,1,945,40,1,0 +2013,4,15,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,47,1,930,54,1,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-4,0,1905,-16,0,0 +2013,5,7,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1201,0,,1412,0,1,1 +2013,9,17,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,43,1,1802,62,1,0 +2013,5,28,2,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,815,7,0,1011,6,0,0 +2013,10,29,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1115,-3,0,1255,-12,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2221,8,0,702,-10,0,0 +2013,10,16,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,7,0,1700,-5,0,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,2,0,712,-10,0,0 +2013,5,21,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,2,0,1412,13,0,0 +2013,8,7,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1100,9,0,1210,11,0,0 +2013,8,27,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1707,170,1,1829,159,1,0 +2013,6,30,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,6,0,1717,6,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1038,-7,0,1156,-11,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-5,0,904,-4,0,0 +2013,7,6,6,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-8,0,1330,-22,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2135,0,0,35,-2,0,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-7,0,1238,-12,0,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,630,1,0,952,-13,0,0 +2013,7,27,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1735,-5,0,1855,-4,0,0 +2013,9,10,2,FL,13232,Chicago Midway International,Chicago,IL,13244,Memphis International,Memphis,TN,830,-1,0,1002,-5,0,0 +2013,9,22,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1435,-2,0,1634,-13,0,0 +2013,9,12,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1947,4,0,2030,32,1,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1016,2,0,1333,-12,0,0 +2013,6,7,5,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1440,2,0,2245,26,1,0 +2013,4,26,5,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-7,0,2025,-14,0,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1402,-4,0,1752,-13,0,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1740,-2,0,2335,-29,0,0 +2013,9,28,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-4,0,1750,-15,0,0 +2013,8,13,2,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,-4,0,130,-12,0,0 +2013,8,28,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1233,-2,0,1602,-8,0,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-2,0,1003,7,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,38,1,1915,23,1,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1950,11,0,20,11,0,0 +2013,5,19,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1114,-5,0,1235,-12,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1115,-5,0,1158,-24,0,0 +2013,10,4,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,0,0,1021,-12,0,0 +2013,8,14,3,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1640,33,1,1833,41,1,0 +2013,6,19,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,37,1,2355,41,1,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,9,0,1739,15,1,0 +2013,10,17,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1320,43,1,1340,41,1,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,11,0,1149,11,0,0 +2013,9,9,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1315,1,0,1520,-11,0,0 +2013,7,8,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1248,-17,0,0 +2013,7,6,6,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,819,45,1,1103,27,1,0 +2013,7,22,1,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1227,-3,0,1455,-9,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,-1,0,1335,-2,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1255,8,0,1825,2,0,0 +2013,7,9,2,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1910,42,1,1955,40,1,0 +2013,8,22,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2015,17,1,2105,-4,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1011,0,0,1345,-21,0,0 +2013,5,30,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1810,13,0,2005,15,1,0 +2013,4,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1600,-3,0,1730,-15,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,0,,2225,0,1,1 +2013,6,12,3,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1435,-3,0,1710,-5,0,0 +2013,10,10,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,836,-11,0,0 +2013,7,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1545,5,0,1935,-7,0,0 +2013,5,9,4,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1721,13,0,1853,-1,0,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2010,58,1,2115,51,1,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2110,42,1,2240,21,1,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,9,0,2323,5,0,0 +2013,5,13,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2007,57,1,2230,45,1,0 +2013,4,20,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-6,0,950,-19,0,0 +2013,7,21,7,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,-4,0,1516,13,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,810,13,0,1045,31,1,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2010,-4,0,2141,-6,0,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1705,0,0,1925,6,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,0,,1115,0,1,1 +2013,5,21,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,9,0,806,-7,0,0 +2013,6,30,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,22,1,1405,32,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-4,0,1252,-3,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,-4,0,2325,-24,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1614,2,0,1814,3,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,600,16,1,1215,-4,0,0 +2013,9,2,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-6,0,1144,-12,0,0 +2013,10,3,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1445,-3,0,1905,-12,0,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,-1,0,1550,-18,0,0 +2013,4,8,1,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1740,26,1,2020,53,1,0 +2013,10,13,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,17,1,1840,14,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1655,0,0,2039,-19,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,15,1,1846,6,0,0 +2013,5,6,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,6,0,1844,1,0,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1220,20,1,1705,20,1,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,725,-6,0,830,-11,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,940,-5,0,1255,-39,0,0 +2013,10,4,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-5,0,955,-5,0,0 +2013,9,24,2,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1133,-11,0,1358,-24,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,710,-1,0,1147,-7,0,0 +2013,5,28,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1333,1,0,1454,7,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1959,81,1,2129,59,1,0 +2013,8,26,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1710,102,1,2019,96,1,0 +2013,10,18,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1940,0,,2135,0,1,1 +2013,7,6,6,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1235,-3,0,1400,-5,0,0 +2013,4,15,1,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,835,-10,0,1050,13,0,0 +2013,9,6,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2353,-9,0,658,-8,0,0 +2013,6,13,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,27,1,1120,39,1,0 +2013,7,10,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,67,1,2116,76,1,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,11,0,1600,4,0,0 +2013,7,10,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1120,-4,0,2000,-21,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-3,0,1333,-2,0,0 +2013,4,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,0,0,1710,10,0,0 +2013,5,11,6,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-4,0,1950,-12,0,0 +2013,6,19,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1425,-1,0,1550,-1,0,0 +2013,5,17,5,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,601,-4,0,1201,-3,0,0 +2013,9,30,1,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1900,-4,0,2025,-5,0,0 +2013,10,10,4,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,708,-9,0,1035,-4,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1740,59,1,2335,51,1,0 +2013,10,11,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1535,8,0,1635,-13,0,0 +2013,6,26,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1615,78,1,1838,72,1,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1335,9,0,1655,-7,0,0 +2013,10,8,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,735,-2,0,1050,-9,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-6,0,1335,-14,0,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,852,4,0,1126,2,0,0 +2013,4,20,6,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,0,0,1120,0,0,0 +2013,10,29,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-7,0,747,-22,0,0 +2013,6,6,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1850,61,1,2253,55,1,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,725,-5,0,904,-6,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,705,-6,0,1225,-12,0,0 +2013,5,6,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1605,12,0,1740,0,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-6,0,1238,-13,0,0 +2013,8,21,3,OO,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1010,-2,0,1139,9,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1230,0,0,1605,0,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1914,43,1,2318,32,1,0 +2013,4,10,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,635,0,0,805,-18,0,0 +2013,4,24,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1107,-5,0,1640,28,1,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1715,78,1,1909,65,1,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1110,-5,0,1220,-13,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-4,0,1826,-14,0,0 +2013,6,2,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,4,0,1228,16,1,0 +2013,6,12,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,-1,0,2044,-9,0,0 +2013,8,28,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-4,0,743,-14,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,853,0,0,1701,0,1,1 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2210,6,0,14,-6,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1850,10,0,2310,20,1,0 +2013,9,16,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1200,22,1,1310,20,1,0 +2013,9,6,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1510,-5,0,1826,-6,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2320,-5,0,15,-8,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1630,26,1,2017,20,1,0 +2013,6,18,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,25,1,2115,24,1,0 +2013,6,6,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,30,1,1857,27,1,0 +2013,6,29,6,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1735,-5,0,2030,-18,0,0 +2013,8,29,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,958,19,1,1230,19,1,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1010,5,0,1211,1,0,0 +2013,8,31,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,-7,0,1933,-10,0,0 +2013,6,11,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-5,0,1314,-19,0,0 +2013,10,10,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,755,4,0,910,-11,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,900,11,0,1045,-3,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1720,8,0,1915,5,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1027,-3,0,1149,-9,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,950,-3,0,1209,-17,0,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1435,13,0,1605,9,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,655,-7,0,1125,-20,0,0 +2013,7,14,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1606,15,1,1915,11,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1740,143,1,2255,139,1,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1415,-6,0,1600,-11,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2210,-3,0,25,-14,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,11,0,1354,4,0,0 +2013,9,7,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1922,1,0,1956,2,0,0 +2013,7,26,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,64,1,2040,48,1,0 +2013,5,12,7,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1350,-7,0,1625,-9,0,0 +2013,8,15,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-5,0,1853,14,0,0 +2013,7,3,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,10,0,1839,5,0,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,640,2,0,800,-6,0,0 +2013,6,22,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,-3,0,910,-15,0,0 +2013,4,9,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,850,1,0,1653,-10,0,0 +2013,5,21,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-2,0,931,-16,0,0 +2013,7,31,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1835,0,0,1930,-4,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1915,-4,0,2048,-17,0,0 +2013,9,12,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1528,1,0,0 +2013,6,29,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,-4,0,735,-8,0,0 +2013,5,10,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-6,0,1904,-24,0,0 +2013,7,30,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1125,15,1,1332,21,1,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,-1,0,1030,3,0,0 +2013,4,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1800,81,1,2120,93,1,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,0,0,1630,-6,0,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1315,-4,0,1721,-18,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-2,0,855,-20,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1010,-6,0,1302,-10,0,0 +2013,4,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1330,2,0,1430,-4,0,0 +2013,8,8,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1215,2,0,1350,9,0,0 +2013,7,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1906,17,1,2111,10,0,0 +2013,6,28,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,827,-2,0,0 +2013,4,4,4,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-7,0,1703,-3,0,0 +2013,10,18,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1004,-2,0,1141,-14,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1635,70,1,2215,142,1,0 +2013,7,29,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,6,0,2140,3,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,-1,0,2104,-16,0,0 +2013,4,11,4,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,845,-5,0,1112,-12,0,0 +2013,9,10,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,-6,0,2359,0,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,925,0,0,1130,10,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1223,311,1,1501,310,1,0 +2013,9,20,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,745,-13,0,920,-21,0,0 +2013,4,25,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1020,-3,0,1140,1,0,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1716,5,0,1956,-11,0,0 +2013,9,27,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,19,1,1730,14,0,0 +2013,7,5,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,141,1,1755,167,1,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,-5,0,2226,-17,0,0 +2013,10,22,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1353,-1,0,2100,-3,0,0 +2013,6,28,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2025,110,1,2155,179,1,0 +2013,9,6,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1415,-4,0,1644,8,0,0 +2013,7,18,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-1,0,1001,-15,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1412,4,0,1550,-10,0,0 +2013,5,31,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1557,5,0,1921,0,0,0 +2013,10,28,1,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1717,1,0,1908,-5,0,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1755,-1,0,1940,-7,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1225,163,1,1948,176,1,0 +2013,4,30,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1330,5,0,1455,-1,0,0 +2013,8,12,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-14,0,1556,-21,0,0 +2013,5,2,4,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1625,-2,0,1916,-8,0,0 +2013,9,9,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,810,-6,0,910,-21,0,0 +2013,4,10,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,1,0,2055,-17,0,0 +2013,4,16,2,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,707,-16,0,1028,-8,0,0 +2013,6,11,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1533,-8,0,1653,-21,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1123,1,0,1251,-7,0,0 +2013,5,28,2,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-4,0,1510,-13,0,0 +2013,6,28,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,-2,0,1807,-6,0,0 +2013,6,9,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1621,-4,0,1800,1,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,0,0,1535,-14,0,0 +2013,5,18,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,0,0,2100,48,1,0 +2013,8,26,1,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1624,-9,0,1806,-7,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2102,-1,0,2233,-9,0,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1315,-2,0,1800,-5,0,0 +2013,9,4,3,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1915,15,1,9,23,1,0 +2013,7,9,2,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-8,0,1409,-13,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1429,-5,0,1531,-2,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,-5,0,1420,-10,0,0 +2013,7,7,7,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1155,-2,0,1550,-8,0,0 +2013,8,19,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,630,-1,0,829,9,0,0 +2013,5,1,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,855,-5,0,910,-16,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-1,0,2153,-12,0,0 +2013,7,27,6,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2010,13,0,2230,11,0,0 +2013,9,19,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,7,0,2131,-15,0,0 +2013,5,29,3,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1710,15,1,1915,12,0,0 +2013,6,3,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,5,0,1755,2,0,0 +2013,5,31,5,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-8,0,1249,-20,0,0 +2013,9,6,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,724,-6,0,920,-3,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1640,-2,0,1825,13,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1230,23,1,1410,39,1,0 +2013,6,19,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,26,1,2220,7,0,0 +2013,7,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,735,4,0,1024,-4,0,0 +2013,6,12,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,20,1,1415,6,0,0 +2013,7,19,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-5,0,1710,-33,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1410,-6,0,1624,8,0,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2145,7,0,2222,-3,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,2,0,800,-6,0,0 +2013,10,4,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1125,3,0,1858,-2,0,0 +2013,6,10,1,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1653,-6,0,1824,-15,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1250,8,0,1505,5,0,0 +2013,7,21,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,630,-1,0,735,-2,0,0 +2013,6,14,5,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,-2,0,1535,-8,0,0 +2013,4,30,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1140,-19,0,1225,-23,0,0 +2013,6,26,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-1,0,1145,-2,0,0 +2013,8,8,4,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,545,3,0,905,-2,0,0 +2013,8,6,2,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,3,0,719,1,0,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2000,-10,0,2248,-23,0,0 +2013,10,21,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1140,-1,0,1355,-2,0,0 +2013,9,8,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1240,15,1,1352,5,0,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1252,-2,0,1504,-4,0,0 +2013,5,27,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,2,0,850,-6,0,0 +2013,6,28,5,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1043,18,1,1840,78,1,0 +2013,6,17,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,5,0,1456,17,1,0 +2013,5,23,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1740,13,0,1845,5,0,0 +2013,6,19,3,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,545,-9,0,709,-13,0,0 +2013,5,25,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2047,15,1,450,11,0,0 +2013,10,3,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,855,-5,0,1152,-17,0,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,747,-8,0,1623,-4,0,0 +2013,6,8,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1504,-3,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1735,3,0,1955,17,1,0 +2013,5,9,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,-3,0,1902,-14,0,0 +2013,10,2,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1334,-11,0,1507,-17,0,0 +2013,8,15,4,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1650,-3,0,1827,0,0,0 +2013,6,8,6,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-1,0,1800,-37,0,0 +2013,7,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,39,1,2110,25,1,0 +2013,9,20,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1500,-2,0,1819,-26,0,0 +2013,10,19,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1615,-5,0,1735,-15,0,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1435,-3,0,1615,-18,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1305,27,1,1640,23,1,0 +2013,10,19,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1010,19,1,1150,15,1,0 +2013,5,3,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1830,-5,0,2105,-9,0,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1605,20,1,1650,30,1,0 +2013,10,29,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,1334,-21,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-7,0,1019,-51,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1355,24,1,1925,-6,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1100,78,1,1249,54,1,0 +2013,7,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1727,9,0,2010,4,0,0 +2013,6,18,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,-6,0,1135,20,1,0 +2013,4,13,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-9,0,1332,11,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-6,0,1016,-4,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,16,1,1705,9,0,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1900,17,1,2050,64,1,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1445,37,1,1650,37,1,0 +2013,10,29,2,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,720,-5,0,949,-6,0,0 +2013,4,10,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,-9,0,2205,1,0,0 +2013,8,16,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,918,-8,0,1130,-19,0,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2030,79,1,2135,78,1,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,32,1,1430,20,1,0 +2013,4,12,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,64,1,1755,53,1,0 +2013,6,23,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-9,0,835,12,0,0 +2013,5,7,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1215,-2,0,1240,-5,0,0 +2013,5,5,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-5,0,1000,-5,0,0 +2013,5,28,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-3,0,1000,-11,0,0 +2013,10,25,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,-3,0,1809,-4,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-4,0,1504,-8,0,0 +2013,4,12,5,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1945,-8,0,2214,-18,0,0 +2013,6,12,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2000,-3,0,2112,19,1,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1511,-4,0,1729,-2,0,0 +2013,5,5,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-2,0,2040,-15,0,0 +2013,5,22,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1450,8,0,1738,-23,0,0 +2013,7,14,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,3,0,1230,0,0,0 +2013,4,18,4,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,725,69,1,1015,86,1,0 +2013,5,22,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1525,30,1,1715,9,0,0 +2013,5,19,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-6,0,1555,-14,0,0 +2013,8,1,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-10,0,1405,-16,0,0 +2013,5,16,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1550,25,1,1845,24,1,0 +2013,5,23,4,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,20,1,554,7,0,0 +2013,5,29,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-7,0,840,-15,0,0 +2013,6,4,2,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,26,1,2048,20,1,0 +2013,7,23,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,-5,0,910,-11,0,0 +2013,10,27,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-10,0,2055,-13,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,838,1,0,1008,-8,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1630,12,0,1835,5,0,0 +2013,8,26,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1950,-8,0,2236,-24,0,0 +2013,8,9,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1525,11,0,1550,5,0,0 +2013,6,6,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,941,-1,0,1038,-6,0,0 +2013,6,19,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1410,-4,0,1555,-1,0,0 +2013,6,2,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1823,118,1,2123,113,1,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1252,41,1,1752,3,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,4,0,2200,0,0,0 +2013,7,31,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,1,0,615,0,0,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1205,107,1,1340,96,1,0 +2013,8,1,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1545,167,1,1655,166,1,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2135,-4,0,20,-13,0,0 +2013,8,9,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,1,0,2055,-1,0,0 +2013,10,11,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,0,0,1613,-13,0,0 +2013,8,10,6,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1125,18,1,1340,15,1,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1735,9,0,1955,32,1,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,159,1,2020,139,1,0 +2013,5,27,1,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1415,-5,0,1527,-17,0,0 +2013,5,22,3,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,951,-25,0,0 +2013,5,29,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,9,0,935,6,0,0 +2013,6,14,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1448,1,0,1740,-10,0,0 +2013,10,23,3,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,700,-15,0,823,-16,0,0 +2013,5,12,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,5,0,831,-15,0,0 +2013,4,9,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,817,50,1,1055,40,1,0 +2013,8,8,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1025,-2,0,1040,4,0,0 +2013,7,31,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,43,1,1600,40,1,0 +2013,6,5,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,-5,0,1700,-3,0,0 +2013,7,20,6,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-2,0,844,-23,0,0 +2013,9,25,3,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1839,27,1,1909,15,1,0 +2013,9,15,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-2,0,1339,-13,0,0 +2013,9,7,6,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,24,1,1945,4,0,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,-3,0,2255,-8,0,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,832,110,1,930,108,1,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,830,0,0,1145,-2,0,0 +2013,5,16,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1205,0,0,1303,-1,0,0 +2013,10,3,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-1,0,1907,-6,0,0 +2013,9,16,1,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,946,1,0,1152,-10,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,2,0,2210,-2,0,0 +2013,10,3,4,9E,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1445,-5,0,1755,-11,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1235,11,0,1436,2,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1850,22,1,1940,16,1,0 +2013,9,19,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,43,1,1845,47,1,0 +2013,6,11,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1201,-11,0,1450,-23,0,0 +2013,7,14,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2040,-2,0,2159,-14,0,0 +2013,5,30,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1220,10,0,1815,64,1,0 +2013,10,21,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1320,-4,0,1602,-6,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,2035,87,1,2235,78,1,0 +2013,7,5,5,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,930,6,0,1745,3,0,0 +2013,4,17,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1017,-3,0,1135,4,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,4,0,1820,0,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1954,-5,0,2123,-7,0,0 +2013,4,11,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1251,-11,0,1539,-13,0,0 +2013,6,9,7,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2326,-5,0,547,2,0,0 +2013,9,16,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1257,63,1,1559,53,1,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2235,58,1,130,33,1,0 +2013,5,31,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-6,0,944,21,1,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,10,0,1425,6,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1155,-2,0,1305,-10,0,0 +2013,9,30,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,102,1,2050,83,1,0 +2013,9,12,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,55,1,2128,40,1,0 +2013,8,29,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1509,-2,0,1556,-6,0,0 +2013,6,13,4,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,746,-6,0,0 +2013,10,17,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1805,-4,0,1845,-12,0,0 +2013,7,8,1,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1947,104,1,2030,91,1,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2006,-1,0,2059,-7,0,0 +2013,4,17,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1225,97,1,1335,196,1,0 +2013,9,30,1,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,1155,-6,0,0 +2013,9,6,5,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-5,0,1629,-37,0,0 +2013,6,10,1,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,715,-5,0,921,-19,0,0 +2013,5,25,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1640,1,0,1810,59,1,0 +2013,6,5,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,740,2,0,805,-15,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1545,15,1,2015,15,1,0 +2013,7,29,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,935,-4,0,1105,7,0,0 +2013,7,25,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,17,1,1955,17,1,0 +2013,7,1,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1840,-2,0,1915,0,0,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1432,2,0,1556,5,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,0,0,2215,2,0,0 +2013,8,2,5,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,615,3,0,855,3,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,857,-3,0,1137,-11,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1120,-5,0,1239,6,0,0 +2013,8,13,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1315,-1,0,1616,-6,0,0 +2013,8,25,7,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,554,-7,0,648,-20,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1615,-4,0,1805,-8,0,0 +2013,6,22,6,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1445,29,1,1650,59,1,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1056,-1,0,1208,-15,0,0 +2013,5,12,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,700,-8,0,1120,-12,0,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,915,-1,0,1305,-9,0,0 +2013,7,18,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1723,28,1,1955,37,1,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,2026,-2,0,2249,-32,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,944,-2,0,1145,-29,0,0 +2013,5,9,4,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,66,1,1800,79,1,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,755,8,0,1410,11,0,0 +2013,10,9,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1602,12,0,15,-5,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2013,246,1,2234,224,1,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,725,-4,0,1020,7,0,0 +2013,6,6,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1627,139,1,1718,129,1,0 +2013,4,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1120,-1,0,1245,7,0,0 +2013,5,30,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,550,-2,0,850,-11,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1915,-4,0,9,-13,0,0 +2013,7,1,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,915,0,0,1642,22,1,0 +2013,9,17,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1615,-10,0,2007,-22,0,0 +2013,9,4,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,0,,1340,0,1,1 +2013,10,14,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2024,-3,0,2113,-12,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1715,-2,0,1849,-11,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,-5,0,15,-32,0,0 +2013,8,5,1,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,5,0,2339,0,0,0 +2013,10,13,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1205,-9,0,1656,-13,0,0 +2013,5,31,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1629,-7,0,1814,-6,0,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2113,124,1,2340,108,1,0 +2013,5,18,6,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1947,-10,0,2105,-18,0,0 +2013,5,17,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1825,-1,0,1945,-10,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,8,0,1300,26,1,0 +2013,9,17,2,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-9,0,1914,-9,0,0 +2013,4,11,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-3,0,850,-6,0,0 +2013,8,18,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1220,0,0,1240,-5,0,0 +2013,6,17,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1051,-5,0,0 +2013,4,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1957,152,1,2150,126,1,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,940,-1,0,1045,-2,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,640,-2,0,800,-10,0,0 +2013,5,7,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,600,11,0,1428,32,1,0 +2013,6,24,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1150,-7,0,1337,-7,0,0 +2013,9,4,3,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1002,-11,0,1225,-1,0,0 +2013,10,29,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1430,1,0,1715,-8,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,-3,0,1222,3,0,0 +2013,9,27,5,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1615,-22,0,1915,-11,0,0 +2013,8,26,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1340,-1,0,1450,-2,0,0 +2013,6,4,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,96,1,1818,81,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1350,0,0,1603,12,0,0 +2013,7,12,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1448,32,1,1650,15,1,0 +2013,7,19,5,9E,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1710,-8,0,1850,22,1,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,-4,0,1203,15,1,0 +2013,9,16,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1554,-5,0,1628,2,0,0 +2013,8,18,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2040,98,1,2150,88,1,0 +2013,5,6,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-5,0,1211,-4,0,0 +2013,9,25,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,-2,0,2140,-9,0,0 +2013,9,13,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,16,1,1715,17,1,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,825,0,0,950,39,1,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1222,-3,0,1423,-13,0,0 +2013,4,15,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,615,-6,0,1123,-15,0,0 +2013,6,2,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,2006,-5,0,2152,17,1,0 +2013,5,3,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,715,-2,0,830,-8,0,0 +2013,10,3,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1055,-4,0,0 +2013,4,25,4,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2152,-1,0,109,-11,0,0 +2013,10,23,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1528,-6,0,1659,5,0,0 +2013,8,25,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1515,3,0,1610,-5,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1755,0,0,1933,-7,0,0 +2013,4,7,7,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-5,0,913,-18,0,0 +2013,7,21,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1329,1,0,1544,-9,0,0 +2013,4,5,5,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1124,99,1,1322,89,1,0 +2013,4,10,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1540,-3,0,1710,-7,0,0 +2013,9,6,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1405,-6,0,1505,-2,0,0 +2013,10,17,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1325,12,0,1450,1,0,0 +2013,5,17,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,920,37,1,1055,33,1,0 +2013,6,8,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1400,13,0,1550,10,0,0 +2013,4,2,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1637,-6,0,1928,-4,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1545,182,1,2220,156,1,0 +2013,10,18,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,15,1,1405,23,1,0 +2013,10,14,1,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1620,-7,0,2155,-36,0,0 +2013,10,25,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,941,-1,0,1130,1,0,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,800,-1,0,910,-5,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1615,-2,0,2120,0,0,0 +2013,4,23,2,OO,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,819,-6,0,1051,-8,0,0 +2013,10,4,5,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2102,12,0,510,2,0,0 +2013,7,23,2,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,810,109,1,1630,94,1,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-3,0,1035,-4,0,0 +2013,7,2,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1040,-7,0,1320,1,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,630,-4,0,914,-26,0,0 +2013,9,30,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,700,2,0,1520,10,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1307,-5,0,1611,-12,0,0 +2013,6,12,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,859,-5,0,0 +2013,5,6,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1945,-1,0,2045,11,0,0 +2013,8,1,4,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,852,-4,0,1205,-7,0,0 +2013,4,6,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-2,0,1326,-11,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,22,1,1930,1,0,0 +2013,9,30,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1405,-5,0,1600,-7,0,0 +2013,10,24,4,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1430,55,1,1600,49,1,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,900,12,0,1030,18,1,0 +2013,4,9,2,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,-2,0,1555,-5,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,0,0,1730,15,1,0 +2013,6,17,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1002,37,1,1232,44,1,0 +2013,10,2,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,930,-3,0,1640,-23,0,0 +2013,6,14,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-1,0,805,2,0,0 +2013,7,5,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,2000,4,0,2115,-5,0,0 +2013,9,24,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1340,-7,0,1525,-4,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1045,-5,0,1203,-37,0,0 +2013,10,4,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,16,1,2139,26,1,0 +2013,9,9,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1545,12,0,1825,-2,0,0 +2013,10,1,2,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-2,0,925,-7,0,0 +2013,8,30,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,28,1,1630,15,1,0 +2013,8,26,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,0,0,715,-3,0,0 +2013,5,17,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,2,0,2205,-4,0,0 +2013,9,10,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,640,3,0,810,-17,0,0 +2013,6,8,6,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,800,1,0,935,-25,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,-2,0,2216,-1,0,0 +2013,10,13,7,OO,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1029,-4,0,1305,-10,0,0 +2013,4,23,2,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1834,115,1,2000,91,1,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,759,1,0,1100,6,0,0 +2013,8,9,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-1,0,745,-8,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,-4,0,1351,-3,0,0 +2013,8,30,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-9,0,930,-21,0,0 +2013,4,3,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,932,-7,0,1205,8,0,0 +2013,9,21,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,11,0,1651,-12,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,9,0,2350,8,0,0 +2013,6,8,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,-3,0,1831,-22,0,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1355,76,1,1559,69,1,0 +2013,10,20,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1345,-4,0,1450,-9,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1809,60,1,2256,117,1,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1800,-2,0,2008,-11,0,0 +2013,8,19,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1005,-10,0,1154,-28,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,10,0,1246,11,0,0 +2013,6,28,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,30,1,1532,40,1,0 +2013,5,27,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,-10,0,2012,-12,0,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,5,0,1150,5,0,0 +2013,8,3,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1630,22,1,1705,27,1,0 +2013,9,14,6,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,-4,0,1022,-7,0,0 +2013,7,10,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1710,-1,0,1945,2,0,0 +2013,8,2,5,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1735,70,1,1845,60,1,0 +2013,7,30,2,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,730,6,0,835,3,0,0 +2013,8,27,2,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1734,-10,0,1818,-20,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,50,1,1156,29,1,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,2155,-14,0,0 +2013,5,9,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1020,24,1,1310,26,1,0 +2013,8,28,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,24,1,1810,9,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1135,-2,0,1300,3,0,0 +2013,9,3,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,-1,0,1310,1,0,0 +2013,8,20,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1757,86,1,1921,77,1,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,1,0,2057,-9,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,-2,0,1841,-10,0,0 +2013,10,7,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1030,-3,0,1230,-2,0,0 +2013,8,1,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,-1,0,940,-7,0,0 +2013,6,10,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,1,0,1805,-4,0,0 +2013,10,1,2,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1140,21,1,1450,18,1,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,7,0,2145,4,0,0 +2013,6,24,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,710,-1,0,830,5,0,0 +2013,6,7,5,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,605,-5,0,735,-8,0,0 +2013,8,24,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,-2,0,1325,-5,0,0 +2013,10,16,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-3,0,927,-18,0,0 +2013,7,8,1,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2045,-4,0,2320,-7,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,950,59,1,1209,41,1,0 +2013,10,6,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,0,0,1739,-7,0,0 +2013,7,31,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-4,0,1430,-9,0,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1302,-2,0,1522,1,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,105,1,1915,117,1,0 +2013,9,8,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2025,14,0,2230,-6,0,0 +2013,9,26,4,9E,12339,Indianapolis International,Indianapolis,IN,12953,LaGuardia,New York,NY,1306,-2,0,1515,0,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-5,0,40,-9,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2155,49,1,48,61,1,0 +2013,7,28,7,OO,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1655,-7,0,1810,-12,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,920,7,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,18,1,1750,-21,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2200,0,0,2332,-15,0,0 +2013,5,6,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-2,0,1025,-1,0,0 +2013,8,15,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,0,0,1259,-8,0,0 +2013,10,15,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1425,0,0,1620,-1,0,0 +2013,4,24,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,52,1,2057,34,1,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1030,0,0,1213,-6,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,14,0,2120,10,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-4,0,1237,-8,0,0 +2013,5,1,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-5,0,1054,-3,0,0 +2013,6,25,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1505,24,1,1706,13,0,0 +2013,4,20,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,610,0,0,724,-24,0,0 +2013,10,22,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1724,16,1,2004,0,0,0 +2013,7,18,4,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1035,-3,0,1245,-8,0,0 +2013,7,31,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2010,19,1,2125,21,1,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,-2,0,2348,-4,0,0 +2013,7,1,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1821,-4,0,2028,-31,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-4,0,935,-6,0,0 +2013,7,23,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-13,0,2035,-25,0,0 +2013,4,12,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,-3,0,1840,2,0,0 +2013,5,11,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-12,0,715,-4,0,0 +2013,8,19,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,-8,0,2223,0,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,655,-7,0,1125,-45,0,0 +2013,10,13,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1942,11,0,2250,-11,0,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,13,0,1905,4,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1215,55,1,1348,45,1,0 +2013,6,11,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,720,78,1,741,72,1,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-7,0,1831,-1,0,0 +2013,4,26,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2055,2,0,2155,-9,0,0 +2013,8,15,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-4,0,1849,-23,0,0 +2013,9,25,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-5,0,1635,-4,0,0 +2013,6,4,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-1,0,940,-10,0,0 +2013,9,16,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1920,-2,0,2011,16,1,0 +2013,5,26,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1720,-3,0,2031,-22,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1150,-3,0,1629,-42,0,0 +2013,5,30,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,21,1,1925,17,1,0 +2013,8,11,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,0,0,650,3,0,0 +2013,6,11,2,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1905,2,0,2020,-3,0,0 +2013,8,13,2,9E,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1116,1,0,1305,2,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1135,10,0,1410,13,0,0 +2013,10,6,7,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,-5,0,1608,-24,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-3,0,858,6,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,31,1,1950,22,1,0 +2013,4,3,3,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1845,-6,0,2008,-15,0,0 +2013,10,26,6,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1540,1,0,1725,-2,0,0 +2013,10,2,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1825,-5,0,2115,-11,0,0 +2013,5,7,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,815,-5,0,1015,-43,0,0 +2013,5,24,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2130,16,1,2250,6,0,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1600,41,1,1710,26,1,0 +2013,4,19,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,-1,0,1133,20,1,0 +2013,8,24,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,140,1,1640,130,1,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,-5,0,40,-12,0,0 +2013,4,6,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2020,-8,0,2135,-30,0,0 +2013,9,24,2,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,930,-10,0,1139,-16,0,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1640,20,1,2000,17,1,0 +2013,6,24,1,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,8,0,2010,-4,0,0 +2013,5,30,4,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1000,-5,0,1150,-3,0,0 +2013,8,27,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,842,-8,0,1034,-16,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1636,3,0,1827,11,0,0 +2013,5,1,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,2140,-5,0,2350,-32,0,0 +2013,4,16,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1710,-6,0,1821,-15,0,0 +2013,6,21,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1350,-4,0,1555,4,0,0 +2013,6,25,2,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,9,0,1735,-4,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,14,0,1156,32,1,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1500,-4,0,1605,-4,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1340,12,0,1445,11,0,0 +2013,5,23,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,37,1,1843,48,1,0 +2013,6,27,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,34,1,1955,20,1,0 +2013,8,15,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1105,4,0,1420,-4,0,0 +2013,7,28,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,942,-15,0,0 +2013,8,6,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,836,-1,0,1003,-20,0,0 +2013,4,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,845,0,0,1057,-26,0,0 +2013,7,2,2,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,5,0,1400,2,0,0 +2013,10,13,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,820,15,1,945,6,0,0 +2013,4,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2018,-4,0,2120,-13,0,0 +2013,7,19,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,0,,2010,0,1,1 +2013,10,27,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,0,0,1530,0,0,0 +2013,10,18,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1345,-3,0,1638,-10,0,0 +2013,4,11,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1810,-8,0,2037,-16,0,0 +2013,5,25,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,829,0,0,1024,-22,0,0 +2013,8,3,6,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1136,68,1,1455,47,1,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1950,-4,0,2145,-12,0,0 +2013,6,23,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1935,-3,0,2110,-16,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-8,0,1205,-9,0,0 +2013,4,10,3,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-5,0,807,-1,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1910,-4,0,2035,-2,0,0 +2013,6,26,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2246,0,,14,0,1,1 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,905,7,0,1150,-3,0,0 +2013,5,19,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2102,6,0,2359,8,0,0 +2013,7,29,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,-8,0,1055,-15,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1733,-5,0,1916,-4,0,0 +2013,4,6,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1945,-8,0,2240,-13,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1514,27,1,1648,16,1,0 +2013,6,30,7,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1040,3,0,1640,8,0,0 +2013,7,22,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1134,27,1,1305,33,1,0 +2013,8,29,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,41,1,809,35,1,0 +2013,6,18,2,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-3,0,1305,-4,0,0 +2013,5,19,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1629,-12,0,1814,-15,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,935,-1,0,1215,-21,0,0 +2013,5,18,6,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,600,5,0,1043,-4,0,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1635,-4,0,1931,-18,0,0 +2013,10,25,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-6,0,1415,-25,0,0 +2013,7,30,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,-10,0,745,-8,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,0,0,1100,17,1,0 +2013,6,17,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1734,55,1,1913,42,1,0 +2013,8,2,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-1,0,725,7,0,0 +2013,7,15,1,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2045,104,1,2320,100,1,0 +2013,5,30,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,720,0,0,825,3,0,0 +2013,8,20,2,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-6,0,1217,8,0,0 +2013,7,10,3,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,940,-17,0,0 +2013,6,10,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,18,1,2128,15,1,0 +2013,5,13,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-8,0,1926,-14,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,720,-1,0,917,-5,0,0 +2013,8,7,3,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,1,0,1300,-2,0,0 +2013,4,29,1,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-5,0,545,18,1,0 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1910,-6,0,2044,-21,0,0 +2013,6,19,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1321,-8,0,1617,-18,0,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-4,0,1105,4,0,0 +2013,10,7,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1120,-3,0,1245,-10,0,0 +2013,6,27,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,8,0,1018,4,0,0 +2013,4,10,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-4,0,2107,12,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-9,0,1356,-7,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1720,0,,1850,0,1,1 +2013,7,31,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2325,-3,0,712,-10,0,0 +2013,8,23,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1824,-23,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1805,3,0,2028,10,0,0 +2013,5,18,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-9,0,1442,-10,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,1,0,1550,-6,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,-6,0,2122,4,0,0 +2013,4,22,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-8,0,1029,-18,0,0 +2013,8,25,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-8,0,2058,-7,0,0 +2013,8,25,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,8,0,1800,-18,0,0 +2013,9,25,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-1,0,2048,-3,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,4,0,1935,-2,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1605,28,1,1725,18,1,0 +2013,7,20,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1456,-10,0,1819,5,0,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1720,55,1,1845,33,1,0 +2013,7,13,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-1,0,1236,-16,0,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,112,1,2125,107,1,0 +2013,5,5,7,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1856,-7,0,2118,10,0,0 +2013,4,23,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,13,0,1224,-3,0,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,-4,0,1355,-11,0,0 +2013,9,23,1,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,2,0,1035,-6,0,0 +2013,5,22,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,0,0,1012,7,0,0 +2013,9,30,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,600,-5,0,718,-13,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,600,1,2135,602,1,0 +2013,9,25,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,4,0,1941,9,0,0 +2013,7,29,1,DL,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1920,0,0,2045,3,0,0 +2013,10,27,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1830,-4,0,2124,-27,0,0 +2013,9,4,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1620,0,0,1832,-10,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2010,-1,0,2130,-18,0,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1625,220,1,1905,197,1,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1420,-5,0,1520,0,0,0 +2013,7,27,6,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1650,45,1,1827,36,1,0 +2013,4,24,3,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,1420,-8,0,1722,-34,0,0 +2013,9,29,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1135,-35,0,0 +2013,6,23,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1227,18,1,1422,22,1,0 +2013,6,15,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1610,0,0,1710,15,1,0 +2013,8,14,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-1,0,1812,43,1,0 +2013,5,16,4,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-6,0,1755,2,0,0 +2013,6,14,5,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1455,6,0,1710,5,0,0 +2013,9,21,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,-5,0,2227,-11,0,0 +2013,8,22,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-2,0,1907,-14,0,0 +2013,9,2,1,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-7,0,2108,-12,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,1300,11,0,1721,-4,0,0 +2013,10,11,5,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-3,0,1300,-13,0,0 +2013,7,10,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,-2,0,1348,2,0,0 +2013,5,4,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,-18,0,17,-29,0,0 +2013,9,20,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1800,-10,0,1920,-6,0,0 +2013,4,5,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1945,1,0,2005,-7,0,0 +2013,8,1,4,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2050,-2,0,2344,1,0,0 +2013,5,24,5,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,166,1,2210,161,1,0 +2013,7,12,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1126,7,0,1246,7,0,0 +2013,5,22,3,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-2,0,1916,0,1,1 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,1,0,2305,-7,0,0 +2013,8,12,1,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-6,0,1446,-19,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,750,2,0,915,-5,0,0 +2013,4,13,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-5,0,1049,-15,0,0 +2013,6,14,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,-1,0,2102,-17,0,0 +2013,4,29,1,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-4,0,1222,-27,0,0 +2013,9,18,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1615,-10,0,1804,-10,0,0 +2013,4,7,7,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1715,18,1,1905,18,1,0 +2013,10,14,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,-5,0,1348,-23,0,0 +2013,4,15,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1515,-2,0,1611,11,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1130,4,0,1258,-8,0,0 +2013,8,4,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-1,0,1530,13,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1255,0,0,1845,-3,0,0 +2013,4,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,837,1,0,940,5,0,0 +2013,9,3,2,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1435,17,1,1625,-3,0,0 +2013,9,21,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,805,-6,0,1110,-24,0,0 +2013,4,7,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1815,3,0,1950,-2,0,0 +2013,9,30,1,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,950,4,0,1205,10,0,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2110,68,1,2327,62,1,0 +2013,6,6,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1810,4,0,2001,-9,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1920,27,1,2116,41,1,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1537,204,1,1740,198,1,0 +2013,4,2,2,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1950,8,0,2100,8,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1741,6,0,1834,-8,0,0 +2013,6,29,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1753,-1,0,2015,-6,0,0 +2013,9,11,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,1,0,1642,-8,0,0 +2013,10,28,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-2,0,1015,29,1,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,2,0,1025,-7,0,0 +2013,5,6,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1654,-6,0,1928,-17,0,0 +2013,8,31,6,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1056,3,0,1223,-13,0,0 +2013,9,26,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-6,0,809,-5,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2147,21,1,2303,41,1,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,3,0,2010,15,1,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-2,0,2128,-10,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-4,0,1049,-8,0,0 +2013,6,30,7,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,36,1,2010,57,1,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,838,-1,0,1212,-8,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,600,2,0,1420,-1,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1500,64,1,1605,65,1,0 +2013,8,26,1,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-4,0,841,-15,0,0 +2013,6,2,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1925,45,1,2043,140,1,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2100,2,0,2337,-12,0,0 +2013,9,6,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-5,0,1605,-16,0,0 +2013,7,16,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1930,0,0,2100,-3,0,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,817,-8,0,1127,5,0,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,77,1,2320,58,1,0 +2013,5,15,3,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1930,8,0,2045,-2,0,0 +2013,6,10,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,1,0,1700,-8,0,0 +2013,6,30,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1800,0,0,1905,-3,0,0 +2013,10,3,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-9,0,751,-23,0,0 +2013,10,13,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1244,-33,0,0 +2013,10,23,3,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1535,-2,0,1847,-9,0,0 +2013,9,19,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1725,62,1,1800,89,1,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,600,-4,0,817,-2,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1500,16,1,1605,28,1,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1505,4,0,1600,-7,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-7,0,833,-2,0,0 +2013,8,29,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1529,-2,0,1656,-2,0,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,816,0,0,1007,0,0,0 +2013,4,30,2,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1005,-10,0,1115,-15,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2251,5,0,30,13,0,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,840,-1,0,1040,-5,0,0 +2013,5,31,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2135,-3,0,2353,3,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1455,-4,0,1555,-8,0,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1135,16,1,1725,5,0,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,835,-2,0,1215,-9,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1430,-1,0,2035,26,1,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,15,1,1210,3,0,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2039,-12,0,2204,-11,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,615,-4,0,1041,-13,0,0 +2013,9,21,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,-1,0,2010,-18,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1108,-4,0,1542,-23,0,0 +2013,4,17,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1108,6,0,1405,-21,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1750,-1,0,2000,-11,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,15,1,1555,14,0,0 +2013,8,26,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1846,-13,0,0 +2013,10,2,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1810,17,1,1900,18,1,0 +2013,7,31,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,-11,0,1720,-11,0,0 +2013,8,27,2,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,725,27,1,840,1,0,0 +2013,5,28,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-5,0,1414,-5,0,0 +2013,8,29,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1010,-3,0,1138,-5,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,719,-1,0,1140,3,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-7,0,905,6,0,0 +2013,10,10,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,72,1,1643,69,1,0 +2013,9,11,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,2,0,1905,-1,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,850,17,1,958,12,0,0 +2013,8,23,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,600,3,0,1424,-4,0,0 +2013,10,7,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1759,130,1,2023,120,1,0 +2013,8,16,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1940,-7,0,2235,-9,0,0 +2013,6,3,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1734,-9,0,1841,-1,0,0 +2013,8,2,5,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,-4,0,2010,-16,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,910,21,1,1420,6,0,0 +2013,6,11,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,111,1,1635,111,1,0 +2013,8,19,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,1,0,1405,-1,0,0 +2013,5,24,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-1,0,1200,-4,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,850,-4,0,1659,-32,0,0 +2013,4,28,7,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1414,12,0,1515,-2,0,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1630,4,0,1910,-21,0,0 +2013,10,31,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,820,-11,0,0 +2013,8,14,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,805,2,0,925,-1,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2120,10,0,30,5,0,0 +2013,4,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1545,30,1,1655,28,1,0 +2013,4,7,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1212,-4,0,1454,-11,0,0 +2013,6,29,6,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1550,15,1,1740,-4,0,0 +2013,8,19,1,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-5,0,1130,-7,0,0 +2013,10,27,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1720,-10,0,2132,-31,0,0 +2013,4,22,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,935,-4,0,1105,-20,0,0 +2013,10,10,4,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,1315,-3,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1455,8,0,1750,-13,0,0 +2013,5,5,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,0,0,1000,-25,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1130,3,0,1310,-5,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1450,0,0,1705,-7,0,0 +2013,9,30,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,156,1,1900,146,1,0 +2013,7,5,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,-4,0,2233,-16,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1145,1,0,1840,-12,0,0 +2013,6,21,5,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,-3,0,1830,-21,0,0 +2013,6,2,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,5,0,805,3,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-5,0,1809,4,0,0 +2013,8,29,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1408,-6,0,0 +2013,9,30,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-3,0,1340,-7,0,0 +2013,7,21,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,38,1,1400,39,1,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-3,0,1037,-11,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1307,1,0,1605,-5,0,0 +2013,4,26,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1933,36,1,2107,29,1,0 +2013,9,12,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1616,35,1,1922,41,1,0 +2013,9,4,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,825,-7,0,850,-19,0,0 +2013,10,25,5,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1349,6,0,1622,2,0,0 +2013,6,7,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1740,2,0,1945,-33,0,0 +2013,10,27,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1430,-10,0,1605,-32,0,0 +2013,10,6,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,822,-17,0,0 +2013,6,23,7,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1011,-3,0,1108,-11,0,0 +2013,10,1,2,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1306,-7,0,1539,-10,0,0 +2013,4,6,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1525,-11,0,1834,-10,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2005,6,0,2255,18,1,0 +2013,7,20,6,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1139,8,0,1254,17,1,0 +2013,9,16,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1355,13,0,1905,8,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1800,5,0,1910,-3,0,0 +2013,7,17,3,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1337,12,0,1520,0,0,0 +2013,4,8,1,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-3,0,1051,1,0,0 +2013,4,2,2,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,852,-12,0,1014,-21,0,0 +2013,8,7,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,3,0,1630,-8,0,0 +2013,10,17,4,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,7,0,2005,25,1,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2055,3,0,2150,11,0,0 +2013,4,7,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2300,-2,0,2346,7,0,0 +2013,5,31,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,-3,0,1335,-20,0,0 +2013,10,9,3,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1225,-1,0,1540,-6,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,-2,0,2042,-7,0,0 +2013,5,30,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1037,29,1,1147,35,1,0 +2013,6,13,4,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,7,0,1415,3,0,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2035,46,1,2240,44,1,0 +2013,9,5,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,-2,0,2300,-3,0,0 +2013,4,10,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,655,-13,0,918,-34,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,9,0,1620,-11,0,0 +2013,5,20,1,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,-8,0,2125,11,0,0 +2013,4,9,2,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,600,-10,0,845,-11,0,0 +2013,7,17,3,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-1,0,1625,5,0,0 +2013,10,30,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-9,0,1253,-9,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,735,-4,0,1101,-3,0,0 +2013,10,17,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2325,-2,0,608,-26,0,0 +2013,9,27,5,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1451,8,0,1620,22,1,0 +2013,4,24,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,1906,-6,0,0 +2013,10,1,2,YV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,758,-2,0,915,-8,0,0 +2013,9,4,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2000,-4,0,2033,-18,0,0 +2013,7,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-1,0,1321,-10,0,0 +2013,4,30,2,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1600,-2,0,1930,12,0,0 +2013,5,19,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,26,1,1915,17,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,820,9,0,958,-2,0,0 +2013,8,21,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,600,-5,0,729,-4,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1711,1,0,1844,-8,0,0 +2013,10,17,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1024,0,0,1107,12,0,0 +2013,5,3,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,825,8,0,1030,11,0,0 +2013,8,6,2,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,2,0,920,11,0,0 +2013,5,23,4,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-11,0,900,-18,0,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1540,0,0,1747,-18,0,0 +2013,7,27,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,957,6,0,1128,20,1,0 +2013,10,19,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,845,3,0,1055,-8,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1820,20,1,1950,3,0,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1418,9,0,1646,-11,0,0 +2013,9,22,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1440,2,0,1731,-10,0,0 +2013,8,6,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-3,0,2025,-1,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,910,-1,0,1010,-9,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,812,19,1,953,7,0,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,82,1,1550,85,1,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1845,18,1,2010,18,1,0 +2013,10,1,2,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1104,33,1,1505,32,1,0 +2013,6,22,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,845,-4,0,1420,-6,0,0 +2013,7,28,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,0,0,1058,-10,0,0 +2013,6,1,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,62,1,1445,92,1,0 +2013,10,20,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,-7,0,1300,-19,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,44,1,1629,32,1,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1550,0,0,2035,-16,0,0 +2013,4,19,5,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1228,-1,0,1359,-6,0,0 +2013,10,14,1,OO,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1432,119,1,1657,137,1,0 +2013,10,11,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1300,26,1,1315,15,1,0 +2013,9,18,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,659,-7,0,859,-19,0,0 +2013,6,3,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1910,-4,0,2030,12,0,0 +2013,9,18,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-4,0,935,-8,0,0 +2013,9,18,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-12,0,730,-24,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2155,30,1,2250,27,1,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1645,-1,0,1856,-7,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1340,-4,0,1403,-9,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1810,-8,0,2027,-7,0,0 +2013,8,10,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-5,0,1428,-14,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,-1,0,1250,-1,0,0 +2013,4,2,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,1015,-1,0,0 +2013,8,27,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,830,0,0,1100,-10,0,0 +2013,8,21,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-9,0,810,-5,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,940,-1,0,1410,-31,0,0 +2013,4,4,4,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-6,0,1629,-30,0,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2012,61,1,2100,52,1,0 +2013,9,11,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,-2,0,1720,-10,0,0 +2013,5,9,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1055,75,1,1200,75,1,0 +2013,4,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1235,5,0,1530,6,0,0 +2013,6,8,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,832,0,0,1000,-1,0,0 +2013,8,2,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,-1,0,2045,-4,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2000,-4,0,2154,-13,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1840,-3,0,2000,-13,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2036,146,1,2156,140,1,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,825,-7,0,1120,-11,0,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-1,0,1915,5,0,0 +2013,8,5,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1705,9,0,1751,42,1,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1830,35,1,1940,28,1,0 +2013,4,21,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-11,0,729,-16,0,0 +2013,8,11,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2045,26,1,2200,21,1,0 +2013,5,11,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,35,1,1600,34,1,0 +2013,8,19,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,7,0,1435,-6,0,0 +2013,8,29,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-5,0,2217,-7,0,0 +2013,4,5,5,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1235,-2,0,1700,1,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1310,0,0,1453,-6,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2100,19,1,2212,4,0,0 +2013,9,27,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,64,1,1632,35,1,0 +2013,8,2,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1010,-6,0,1247,-20,0,0 +2013,9,23,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1451,-11,0,1620,-16,0,0 +2013,9,4,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,9,0,2255,5,0,0 +2013,7,2,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-1,0,1916,-3,0,0 +2013,5,29,3,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1311,-10,0,1412,-21,0,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,-9,0,1659,7,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1900,33,1,35,5,0,0 +2013,9,28,6,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1300,2,0,1515,-16,0,0 +2013,10,21,1,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1554,122,1,1727,115,1,0 +2013,6,13,4,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,-4,0,1205,24,1,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1800,70,1,1905,61,1,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,13,0,1505,7,0,0 +2013,6,19,3,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1425,79,1,2235,63,1,0 +2013,9,27,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-9,0,856,-26,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1725,15,1,2245,11,0,0 +2013,7,15,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,821,-6,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1410,-7,0,1649,-7,0,0 +2013,6,13,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2000,0,,2140,0,1,1 +2013,6,25,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1835,28,1,2354,7,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1630,7,0,1833,-2,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1815,11,0,1953,62,1,0 +2013,8,11,7,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,900,-6,0,1155,-9,0,0 +2013,7,5,5,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,724,-7,0,931,-26,0,0 +2013,4,17,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1430,3,0,1535,-10,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,605,-2,0,745,-28,0,0 +2013,7,1,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,163,1,1915,169,1,0 +2013,9,29,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,1940,-6,0,0 +2013,9,6,5,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1535,11,0,1700,18,1,0 +2013,10,3,4,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1125,58,1,1230,47,1,0 +2013,10,7,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,830,21,1,1035,-16,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,-4,0,1045,-13,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,-1,0,2210,-10,0,0 +2013,7,14,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-12,0,912,-7,0,0 +2013,4,28,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1320,-3,0,1710,1,0,0 +2013,8,9,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,-4,0,1411,-6,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1607,5,0,1755,-10,0,0 +2013,8,7,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-5,0,1831,-20,0,0 +2013,4,6,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1504,-13,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2120,0,0,10,-18,0,0 +2013,10,2,3,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,-5,0,1629,-24,0,0 +2013,5,30,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,620,-8,0,825,-12,0,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,-4,0,1923,-9,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1459,-2,0,1657,-14,0,0 +2013,4,7,7,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,2105,-3,0,2305,-16,0,0 +2013,10,24,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,33,1,1911,16,1,0 +2013,8,17,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,14,0,1945,8,0,0 +2013,8,5,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2052,15,1,22,1,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1018,31,1,1406,39,1,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,14,0,26,-1,0,0 +2013,5,31,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1004,-13,0,0 +2013,6,14,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,93,1,1929,79,1,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,735,-7,0,1258,-12,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1530,118,1,1630,109,1,0 +2013,7,31,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,845,-4,0,950,-7,0,0 +2013,5,7,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,-2,0,940,-2,0,0 +2013,10,23,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,-7,0,1515,-7,0,0 +2013,5,19,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1022,-6,0,1220,-15,0,0 +2013,8,22,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,-8,0,816,-14,0,0 +2013,9,18,3,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1359,177,1,1703,148,1,0 +2013,8,2,5,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-6,0,1214,-16,0,0 +2013,9,20,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,600,-2,0,730,-11,0,0 +2013,5,3,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,-4,0,2041,-10,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-4,0,2205,3,0,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1847,3,0,2017,-3,0,0 +2013,6,8,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,1020,-9,0,1230,-7,0,0 +2013,9,22,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1150,0,0,1315,-4,0,0 +2013,8,26,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-2,0,1055,-4,0,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,747,-6,0,914,2,0,0 +2013,5,27,1,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1715,14,0,1938,2,0,0 +2013,7,5,5,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-2,0,1745,-24,0,0 +2013,10,6,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,841,79,1,1440,69,1,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,910,0,0,1044,6,0,0 +2013,6,15,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1641,-6,0,1829,-17,0,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-3,0,1610,-8,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,8,0,1343,21,1,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,34,1,2246,19,1,0 +2013,10,4,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1921,-10,0,2100,1,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,700,18,1,846,44,1,0 +2013,5,22,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1355,2,0,1643,-7,0,0 +2013,4,26,5,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-4,0,841,-11,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,13,0,1817,6,0,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,0,0,1833,-1,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1647,0,,1808,0,1,1 +2013,9,18,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,645,-4,0,810,-17,0,0 +2013,8,3,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,740,6,0,0 +2013,5,24,5,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1058,8,0,1455,32,1,0 +2013,5,13,1,WN,10529,Bradley International,Hartford,CT,14635,Southwest Florida International,Fort Myers,FL,1040,-4,0,1345,0,0,0 +2013,10,9,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-10,0,1809,-1,0,0 +2013,9,2,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,14,0,1735,24,1,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,44,1,1740,36,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1809,4,0,1954,13,0,0 +2013,10,4,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1000,5,0,1125,0,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-3,0,1328,2,0,0 +2013,5,24,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-9,0,1243,-18,0,0 +2013,4,8,1,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,615,-1,0,1440,-9,0,0 +2013,9,6,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,745,-2,0,905,-5,0,0 +2013,9,29,7,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1410,25,1,1725,14,0,0 +2013,4,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2130,-7,0,2255,-9,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1012,-2,0,1049,2,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,840,-4,0,1105,10,0,0 +2013,8,23,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,915,1,0,1644,2,0,0 +2013,10,27,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-6,0,1824,-8,0,0 +2013,5,12,7,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,635,-6,0,710,-12,0,0 +2013,5,1,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2027,-2,0,2118,10,0,0 +2013,7,24,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-2,0,2152,-7,0,0 +2013,6,6,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,845,5,0,956,-1,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1231,5,0,1424,31,1,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-5,0,2246,1,0,0 +2013,4,18,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1435,290,1,1604,295,1,0 +2013,8,19,1,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1711,-9,0,2015,-12,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1445,-5,0,1704,-8,0,0 +2013,8,23,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,615,-5,0,743,-9,0,0 +2013,10,23,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,23,1,1714,14,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,600,-1,0,845,-5,0,0 +2013,10,27,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1645,-3,0,1953,-17,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,2000,2,0,2359,12,0,0 +2013,5,9,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,-5,0,912,-11,0,0 +2013,5,13,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1015,18,1,1129,1,0,0 +2013,8,4,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,610,-5,0,945,-2,0,0 +2013,8,17,6,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-7,0,1610,-3,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,845,7,0,950,3,0,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,20,1,1740,16,1,0 +2013,6,9,7,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1210,5,0,1335,5,0,0 +2013,10,2,3,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,-3,0,1545,-25,0,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-2,0,945,-13,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,805,-4,0,1105,-20,0,0 +2013,5,2,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,0,0,838,-1,0,0 +2013,6,19,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-2,0,1924,7,0,0 +2013,4,18,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-4,0,856,-29,0,0 +2013,5,10,5,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,615,-3,0,728,-2,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,-2,0,1850,-12,0,0 +2013,4,23,2,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-8,0,1518,-34,0,0 +2013,4,20,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,246,1,915,246,1,0 +2013,6,30,7,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,25,1,549,7,0,0 +2013,5,6,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1120,0,0,1250,-11,0,0 +2013,6,7,5,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,1,0,1050,-2,0,0 +2013,7,9,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1900,50,1,2110,36,1,0 +2013,6,17,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,53,1,1800,64,1,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1811,-7,0,1845,-23,0,0 +2013,9,10,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1710,10,0,1850,-3,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1213,1,0,1333,-31,0,0 +2013,10,1,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,755,-2,0,955,6,0,0 +2013,8,11,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,537,-3,0,654,-10,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,0,0,2250,0,0,0 +2013,6,21,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,-1,0,2025,-3,0,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1359,44,1,1452,50,1,0 +2013,5,4,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1225,-1,0,1340,-2,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1915,0,0,2205,16,1,0 +2013,7,1,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,3,0,1010,11,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1255,-1,0,1541,-29,0,0 +2013,7,8,1,DL,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-5,0,1110,-5,0,0 +2013,6,24,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,715,-7,0,821,-20,0,0 +2013,9,13,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1952,-3,0,2210,1,0,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1310,-2,0,1630,-19,0,0 +2013,7,22,1,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1257,-9,0,1435,-15,0,0 +2013,5,5,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,8,0,1329,30,1,0 +2013,6,24,1,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,735,-4,0,910,-11,0,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1440,41,1,1800,22,1,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1715,10,0,2240,1,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2145,-3,0,2355,-8,0,0 +2013,10,12,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1525,3,0,1659,-10,0,0 +2013,10,23,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,-7,0,1034,-30,0,0 +2013,10,20,7,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,835,-5,0,1110,-20,0,0 +2013,6,23,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-2,0,2102,-7,0,0 +2013,7,24,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1124,-12,0,1417,-12,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1245,-10,0,1418,-19,0,0 +2013,8,22,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1211,48,1,1730,28,1,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,1545,-9,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,20,1,2320,-6,0,0 +2013,10,15,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1359,-6,0,1608,-8,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,109,1,1421,105,1,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1415,3,0,1550,-14,0,0 +2013,9,20,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,810,-7,0,1422,2,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1449,-3,0,1626,-2,0,0 +2013,10,27,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,53,1,1428,35,1,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1935,110,1,2355,96,1,0 +2013,5,29,3,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-9,0,845,-16,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,5,0,1530,-5,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,1,0,1740,-8,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1125,11,0,1645,12,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1720,58,1,2255,62,1,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,2,0,1150,-7,0,0 +2013,8,15,4,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1855,10,0,2055,19,1,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,805,29,1,1315,23,1,0 +2013,7,26,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-8,0,1004,-7,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1820,12,0,55,0,0,0 +2013,9,8,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1605,12,0,1720,-5,0,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2140,10,0,35,2,0,0 +2013,10,23,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1236,-3,0,1450,1,0,0 +2013,6,27,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1156,6,0,1402,-3,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-5,0,2020,-24,0,0 +2013,4,26,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,0,0,1903,-2,0,0 +2013,4,13,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1923,-10,0,2135,-19,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1347,25,1,1545,11,0,0 +2013,7,29,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,0,0,1828,-1,0,0 +2013,10,21,1,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,-5,0,1745,-22,0,0 +2013,4,6,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-4,0,830,-14,0,0 +2013,10,31,4,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,730,-5,0,920,-17,0,0 +2013,7,22,1,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-5,0,1045,-29,0,0 +2013,8,21,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1957,4,0,2151,21,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,1,0,1643,-5,0,0 +2013,7,1,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,-9,0,1721,9,0,0 +2013,4,4,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1805,6,0,2152,21,1,0 +2013,8,25,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,838,-3,0,1140,-32,0,0 +2013,5,4,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,1,0,2035,7,0,0 +2013,8,23,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1340,3,0,1500,1,0,0 +2013,8,27,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,-7,0,813,-16,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,-1,0,2259,-21,0,0 +2013,7,11,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1511,-6,0,1845,-18,0,0 +2013,5,2,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1550,11,0,1655,-9,0,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1040,21,1,1310,19,1,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1230,-2,0,1400,-12,0,0 +2013,5,30,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,-2,0,1305,-6,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1613,3,0,1821,-14,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1410,-3,0,0 +2013,9,14,6,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1215,-2,0,2100,-21,0,0 +2013,10,19,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-6,0,1901,-4,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1343,13,0,1510,6,0,0 +2013,8,20,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-2,0,955,-7,0,0 +2013,5,8,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-5,0,930,-11,0,0 +2013,4,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1840,-21,0,0 +2013,4,11,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,-1,0,2040,-21,0,0 +2013,5,27,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1915,6,0,2125,1,0,0 +2013,9,18,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1015,60,1,1143,58,1,0 +2013,8,25,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,-4,0,1900,15,1,0 +2013,5,22,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1603,2,0,2018,8,0,0 +2013,6,6,4,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,2,0,1540,10,0,0 +2013,8,2,5,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1855,-4,0,2055,-16,0,0 +2013,5,5,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-11,0,1329,-58,0,0 +2013,10,11,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1055,-2,0,1126,-8,0,0 +2013,7,15,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-2,0,1250,0,0,0 +2013,7,27,6,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,4,0,648,22,1,0 +2013,4,3,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-4,0,1934,10,0,0 +2013,4,17,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1739,-3,0,2030,-22,0,0 +2013,10,11,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1450,13,0,1500,8,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1704,23,1,1844,9,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1307,37,1,1423,19,1,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1445,16,1,2205,-15,0,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1727,2,0,1824,-2,0,0 +2013,7,5,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,-4,0,1515,-7,0,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1345,-4,0,1515,-24,0,0 +2013,9,25,3,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1451,84,1,1609,79,1,0 +2013,6,13,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-4,0,1315,-11,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,-1,0,2215,-2,0,0 +2013,9,2,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1639,-8,0,0 +2013,7,10,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1725,-6,0,1843,-7,0,0 +2013,9,16,1,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,820,-1,0,1010,-5,0,0 +2013,5,20,1,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1230,-7,0,1515,-7,0,0 +2013,6,26,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,-10,0,1750,-9,0,0 +2013,10,31,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,10,0,1900,-4,0,0 +2013,10,20,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1140,-4,0,1343,-22,0,0 +2013,10,9,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1931,-3,0,2200,3,0,0 +2013,9,15,7,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1915,-12,0,2255,-30,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,87,1,1851,65,1,0 +2013,4,29,1,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,720,0,0,845,-18,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,-4,0,1914,23,1,0 +2013,8,9,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1822,-1,0,1930,-4,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1215,-1,0,1315,-7,0,0 +2013,10,21,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,720,0,0,1330,-2,0,0 +2013,5,5,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1509,-7,0,1735,-10,0,0 +2013,4,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1705,-3,0,1935,-7,0,0 +2013,10,2,3,EV,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,927,-4,0,1112,-18,0,0 +2013,8,5,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1129,34,1,1523,46,1,0 +2013,9,10,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1614,-3,0,0 +2013,4,23,2,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1005,-4,0,1210,-8,0,0 +2013,5,25,6,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1443,1,0,2305,12,0,0 +2013,8,18,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1910,-7,0,2142,19,1,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1803,8,0,2056,20,1,0 +2013,6,22,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,-1,0,1837,8,0,0 +2013,8,28,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-4,0,1920,-3,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,-6,0,1715,9,0,0 +2013,7,4,4,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1910,-5,0,1955,-21,0,0 +2013,8,30,5,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,11,0,2110,2,0,0 +2013,5,13,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-3,0,726,10,0,0 +2013,5,29,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1550,0,0,1817,-8,0,0 +2013,10,6,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1315,1,0,2052,5,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1515,45,1,1647,36,1,0 +2013,9,17,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,6,0,2110,-15,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1935,3,0,2136,-15,0,0 +2013,7,27,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1540,0,0,1710,-14,0,0 +2013,6,16,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1134,-4,0,1305,2,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1650,-5,0,1810,1,0,0 +2013,10,6,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1058,14,0,1132,20,1,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,11,0,2152,19,1,0 +2013,7,10,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-4,0,1348,-9,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2115,-3,0,2340,-12,0,0 +2013,7,2,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1448,17,1,1744,24,1,0 +2013,10,18,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1415,99,1,1556,86,1,0 +2013,6,24,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,707,14,0,920,3,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1737,-1,0,1852,-9,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-3,0,1005,-9,0,0 +2013,10,6,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-6,0,1755,-6,0,0 +2013,10,13,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1355,-5,0,1450,-6,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1757,0,0,2004,-24,0,0 +2013,9,6,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,628,-7,0,757,-15,0,0 +2013,5,2,4,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1127,-4,0,1420,-10,0,0 +2013,6,10,1,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1705,67,1,1900,51,1,0 +2013,5,10,5,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-6,0,1355,15,1,0 +2013,6,13,4,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1415,0,,1533,0,1,1 +2013,4,20,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,10,0,1629,-8,0,0 +2013,6,30,7,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-10,0,1637,-11,0,0 +2013,10,11,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-3,0,1506,-3,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1535,0,0,1820,-9,0,0 +2013,5,4,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2150,-6,0,19,-15,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,-2,0,925,-5,0,0 +2013,5,8,3,DL,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,72,1,2144,70,1,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1640,30,1,2310,12,0,0 +2013,10,18,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1810,-3,0,1915,0,0,0 +2013,8,28,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1435,76,1,1740,77,1,0 +2013,6,9,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,925,-1,0,1035,-4,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,810,-10,0,905,-15,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,36,1,1855,47,1,0 +2013,8,9,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1733,-3,0,1902,12,0,0 +2013,8,15,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1758,-5,0,2059,9,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,0,0,1500,-11,0,0 +2013,8,1,4,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-13,0,1557,4,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,25,1,2124,28,1,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1000,13,0,1245,-9,0,0 +2013,8,9,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1905,19,1,50,-2,0,0 +2013,8,23,5,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1146,-1,0,1704,-10,0,0 +2013,9,12,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,-4,0,2156,-16,0,0 +2013,7,8,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1455,-1,0,2320,10,0,0 +2013,9,9,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,841,-4,0,941,-3,0,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,745,-3,0,1130,-13,0,0 +2013,9,21,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,825,4,0,935,9,0,0 +2013,8,23,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1110,-8,0,1455,12,0,0 +2013,4,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1910,-2,0,2045,-11,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1545,14,0,1736,-1,0,0 +2013,4,11,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,609,-3,0,725,-22,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2057,20,1,2133,0,0,0 +2013,7,11,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-4,0,837,-15,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,735,-8,0,1031,-24,0,0 +2013,7,21,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,1,0,1813,-15,0,0 +2013,4,23,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1025,0,0,1140,-9,0,0 +2013,4,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1225,-11,0,1327,-10,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-5,0,1550,-2,0,0 +2013,6,15,6,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1530,5,0,1715,-1,0,0 +2013,4,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1050,-6,0,1405,-8,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1559,3,0,1721,-7,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,17,1,1140,14,0,0 +2013,4,10,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1810,86,1,2125,104,1,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,-6,0,1055,-11,0,0 +2013,6,16,7,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,621,-4,0,749,20,1,0 +2013,9,17,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1640,-4,0,1730,-5,0,0 +2013,8,10,6,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1515,10,0,1650,-10,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1416,-5,0,1606,-16,0,0 +2013,9,10,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,-13,0,2030,-16,0,0 +2013,9,15,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1145,0,0,1335,4,0,0 +2013,7,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1855,34,1,2227,12,0,0 +2013,6,30,7,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1840,23,1,2045,22,1,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-5,0,910,-22,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1835,-1,0,2015,0,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-6,0,1618,-22,0,0 +2013,5,17,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,754,-1,0,948,17,1,0 +2013,6,11,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,-5,0,815,-4,0,0 +2013,7,28,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,52,1,1643,62,1,0 +2013,9,6,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-7,0,1030,-7,0,0 +2013,4,12,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1810,0,0,2005,-15,0,0 +2013,4,10,3,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,959,25,1,1110,22,1,0 +2013,10,16,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1745,-1,0,1902,14,0,0 +2013,5,26,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1617,-4,0,1705,-12,0,0 +2013,7,26,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1230,11,0,1419,13,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,906,5,0,1205,31,1,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1010,1,0,1725,1,0,0 +2013,6,12,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1313,-6,0,1433,-14,0,0 +2013,7,17,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1612,-6,0,1810,-35,0,0 +2013,4,13,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,1125,-5,0,0 +2013,4,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,752,-9,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1450,1,0,1635,-15,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1720,13,0,1856,-2,0,0 +2013,8,12,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-17,0,2010,0,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1443,-1,0,1800,-18,0,0 +2013,8,30,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,223,1,2255,222,1,0 +2013,7,27,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,755,-5,0,845,-10,0,0 +2013,5,24,5,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1358,-5,0,1456,-17,0,0 +2013,4,9,2,B6,10792,Buffalo Niagara International,Buffalo,NY,14635,Southwest Florida International,Fort Myers,FL,710,-5,0,1006,-13,0,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,955,3,0,1125,-4,0,0 +2013,5,28,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2120,86,1,2240,72,1,0 +2013,7,25,4,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1010,2,0,1245,1,0,0 +2013,8,11,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,812,-4,0,0 +2013,4,14,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,-2,0,1708,5,0,0 +2013,4,12,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1114,-2,0,1241,-4,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1855,5,0,1955,4,0,0 +2013,4,25,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-3,0,1744,-8,0,0 +2013,5,25,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1510,5,0,1735,0,0,0 +2013,9,1,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1513,-11,0,1944,-9,0,0 +2013,6,2,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1805,9,0,0 +2013,10,25,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-3,0,1621,-10,0,0 +2013,8,5,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1820,-7,0,1955,-16,0,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1325,28,1,1425,43,1,0 +2013,4,3,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,758,-4,0,1548,-10,0,0 +2013,7,23,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1005,-11,0,1135,-17,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,710,2,0,1111,-6,0,0 +2013,7,28,7,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1725,28,1,1730,22,1,0 +2013,10,3,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,-16,0,1240,-13,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1922,6,0,2257,13,0,0 +2013,9,29,7,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2000,-6,0,2122,-16,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2015,17,1,2125,30,1,0 +2013,7,25,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-1,0,1638,21,1,0 +2013,6,24,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,705,-3,0,1037,-12,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1730,22,1,1913,6,0,0 +2013,10,19,6,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2338,-7,0,718,-13,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1632,27,1,1705,13,0,0 +2013,5,4,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1609,5,0,0 +2013,8,8,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1324,11,0,1528,16,1,0 +2013,5,18,6,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,730,-4,0,1029,0,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,635,1,0,955,-5,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1455,8,0,1700,1,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,2,0,1723,-4,0,0 +2013,7,12,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,705,54,1,1015,58,1,0 +2013,6,10,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,914,-6,0,1035,-21,0,0 +2013,5,20,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1140,-2,0,1315,-13,0,0 +2013,6,6,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1300,-4,0,2104,-11,0,0 +2013,6,27,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1415,47,1,1555,47,1,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,13,0,1416,18,1,0 +2013,5,30,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2155,4,0,2305,0,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,82,1,1620,59,1,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1340,-3,0,1445,-5,0,0 +2013,9,5,4,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2109,-4,0,530,-6,0,0 +2013,10,2,3,UA,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1058,-12,0,1137,-10,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,-4,0,1430,-15,0,0 +2013,6,9,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1135,24,1,1920,34,1,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1455,-2,0,1605,-11,0,0 +2013,8,19,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1234,-5,0,1447,-14,0,0 +2013,4,12,5,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,21,1,10,8,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1435,-6,0,1800,-4,0,0 +2013,8,14,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1120,6,0,1955,6,0,0 +2013,8,7,3,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1002,-3,0,1309,4,0,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2106,7,0,2343,2,0,0 +2013,9,23,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-4,0,1450,-26,0,0 +2013,5,12,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,2130,-1,0,2300,-42,0,0 +2013,7,12,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-2,0,1010,-4,0,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2200,18,1,2359,16,1,0 +2013,6,2,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,1,0,2221,-8,0,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1215,6,0,1335,11,0,0 +2013,6,10,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,6,0,745,-9,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1425,-2,0,1520,-3,0,0 +2013,4,8,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-7,0,1859,-8,0,0 +2013,5,22,3,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,-2,0,1315,-10,0,0 +2013,7,25,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1240,-9,0,1350,-18,0,0 +2013,4,9,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1035,2,0,1125,9,0,0 +2013,9,27,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-5,0,1115,-5,0,0 +2013,8,11,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1200,-2,0,2015,11,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1925,-2,0,2120,-17,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,0,0,915,-9,0,0 +2013,7,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1415,-4,0,2020,-9,0,0 +2013,5,12,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1017,-5,0,1300,1,0,0 +2013,10,5,6,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,801,14,0,1014,4,0,0 +2013,8,24,6,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,1,0,1914,2,0,0 +2013,10,28,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1114,-9,0,1300,-12,0,0 +2013,8,25,7,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-4,0,1306,-17,0,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,910,-1,0,1029,1,0,0 +2013,4,30,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1729,5,0,2031,-9,0,0 +2013,6,27,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1745,0,,2110,0,1,1 +2013,7,18,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1330,-7,0,1500,-9,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,940,27,1,1230,52,1,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1115,2,0,1740,-13,0,0 +2013,4,23,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1419,-4,0,1609,-15,0,0 +2013,7,10,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,950,-8,0,1115,-15,0,0 +2013,5,25,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,820,25,1,915,20,1,0 +2013,7,23,2,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1755,5,0,1854,-1,0,0 +2013,10,31,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1659,23,1,1748,23,1,0 +2013,8,21,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1846,12,0,2020,16,1,0 +2013,4,28,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1013,2,0,1139,1,0,0 +2013,8,6,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,634,-3,0,758,-2,0,0 +2013,7,1,1,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-7,0,603,0,0,0 +2013,10,8,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,600,-1,0,905,-5,0,0 +2013,4,18,4,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1810,42,1,1925,41,1,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,847,-1,0,939,1,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2250,3,0,2339,-4,0,0 +2013,4,17,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,950,-14,0,0 +2013,7,2,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1619,-1,0,2042,3,0,0 +2013,6,4,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2055,-7,0,2200,-24,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1635,-2,0,1805,-8,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,5,0,2145,4,0,0 +2013,10,18,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,8,0,1509,22,1,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,-4,0,1125,-5,0,0 +2013,9,2,1,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-3,0,1215,-19,0,0 +2013,4,13,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,540,-9,0,1406,-23,0,0 +2013,6,13,4,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,71,1,2152,71,1,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1644,-15,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,615,-2,0,950,-11,0,0 +2013,4,9,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1612,-1,0,1921,-11,0,0 +2013,5,8,3,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1500,1,0,1624,-1,0,0 +2013,7,23,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1531,-1,0,1812,-2,0,0 +2013,10,25,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,-4,0,1150,-11,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1054,-2,0,1922,-9,0,0 +2013,10,12,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-2,0,1000,1,0,0 +2013,6,21,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,121,1,820,130,1,0 +2013,6,15,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1340,-2,0,1405,-18,0,0 +2013,10,2,3,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1525,-10,0,1746,-1,0,0 +2013,4,9,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1410,-8,0,1646,-30,0,0 +2013,8,7,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,46,1,1643,40,1,0 +2013,7,24,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,42,1,1345,33,1,0 +2013,10,23,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,707,-11,0,1042,-4,0,0 +2013,10,5,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1555,10,0,1655,32,1,0 +2013,8,9,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2054,15,1,509,-11,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-4,0,1105,-18,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-1,0,1725,-9,0,0 +2013,6,24,1,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,810,-1,0,1055,-6,0,0 +2013,9,4,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-6,0,1029,-19,0,0 +2013,9,8,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1101,-6,0,1256,-13,0,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1045,7,0,1320,2,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2215,1,0,622,-14,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1935,6,0,2249,20,1,0 +2013,5,6,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1959,-6,0,2126,-15,0,0 +2013,4,30,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1340,35,1,1600,22,1,0 +2013,9,27,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1030,-3,0,1245,-9,0,0 +2013,8,16,5,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-11,0,525,-10,0,0 +2013,6,11,2,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,-6,0,845,-32,0,0 +2013,4,15,1,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1635,26,1,1820,23,1,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,4,0,1310,-3,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,850,1,0,1240,0,0,0 +2013,7,29,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-7,0,2020,-19,0,0 +2013,9,21,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,925,-1,0,1120,2,0,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2040,166,1,2250,157,1,0 +2013,7,5,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,15,1,2135,11,0,0 +2013,9,22,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,7,0,1905,-1,0,0 +2013,9,6,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,737,-5,0,0 +2013,8,18,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,804,-10,0,855,15,1,0 +2013,8,1,4,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,1420,-8,0,1721,-15,0,0 +2013,6,11,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,0,0,1815,1,0,0 +2013,4,14,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,10,0,747,12,0,0 +2013,10,29,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,710,-8,0,852,-15,0,0 +2013,4,4,4,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1750,24,1,1921,26,1,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,0,0,1505,4,0,0 +2013,10,29,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1850,-5,0,2056,-12,0,0 +2013,4,12,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-8,0,1000,-14,0,0 +2013,5,1,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-3,0,904,-5,0,0 +2013,4,5,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1757,-7,0,2020,-3,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,1,0,2114,-5,0,0 +2013,6,3,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-2,0,1524,2,0,0 +2013,6,14,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-3,0,1235,-2,0,0 +2013,6,25,2,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,8,0,1435,-5,0,0 +2013,8,7,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,211,14,0,559,25,1,0 +2013,7,3,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,8,0,1524,26,1,0 +2013,8,17,6,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-9,0,846,1,0,0 +2013,5,27,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1340,2,0,1920,-5,0,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1035,2,0,1355,18,1,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2235,-4,0,28,-31,0,0 +2013,8,29,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1655,28,1,1745,20,1,0 +2013,10,2,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1836,-4,0,2015,-1,0,0 +2013,5,19,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,548,20,1,1204,40,1,0 +2013,4,10,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,610,0,,705,0,1,1 +2013,4,1,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,940,14,0,1045,3,0,0 +2013,6,18,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,27,1,1505,22,1,0 +2013,5,4,6,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1245,45,1,1605,49,1,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,22,1,2047,7,0,0 +2013,5,5,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1730,-7,0,1855,-11,0,0 +2013,6,23,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,0,0,1725,-10,0,0 +2013,5,21,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1347,-5,0,1652,-4,0,0 +2013,5,20,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-1,0,951,-24,0,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1345,61,1,1450,51,1,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,31,1,1730,18,1,0 +2013,4,14,7,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,838,-5,0,1017,-3,0,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,5,0,1040,-4,0,0 +2013,7,9,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,0,0,1117,25,1,0 +2013,4,12,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,745,-8,0,0 +2013,8,3,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,-4,0,2120,-15,0,0 +2013,6,21,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1651,10,0,1812,12,0,0 +2013,4,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,830,2,0,930,1,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,0,0,1355,-9,0,0 +2013,4,16,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,948,-9,0,1114,-5,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,1,0,2347,-6,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-5,0,727,9,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1005,19,1,1145,30,1,0 +2013,10,27,7,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1840,-3,0,2005,-19,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2010,-3,0,2055,-6,0,0 +2013,5,12,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-9,0,1011,-8,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,715,40,1,1000,34,1,0 +2013,9,26,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1020,-5,0,1222,-8,0,0 +2013,10,24,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,73,1,1440,59,1,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,0,0,2139,-13,0,0 +2013,8,30,5,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,904,7,0,0 +2013,4,6,6,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1435,88,1,2240,59,1,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,3,0,1300,-1,0,0 +2013,9,16,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-6,0,920,-8,0,0 +2013,7,8,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-10,0,1249,-9,0,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1225,6,0,1700,-5,0,0 +2013,8,1,4,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,103,1,1735,87,1,0 +2013,10,30,3,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,804,-3,0,903,2,0,0 +2013,6,20,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,10,0,1854,11,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1340,70,1,1710,76,1,0 +2013,9,10,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,942,-8,0,1221,3,0,0 +2013,5,1,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-15,0,1342,-28,0,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,-2,0,1410,0,0,0 +2013,4,15,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1131,1,0,1633,-18,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1449,-5,0,1629,2,0,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,820,0,0,945,-8,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,0,0,1705,-14,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1025,2,0,1305,-16,0,0 +2013,5,8,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,700,0,0,735,-14,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,900,-6,0,1033,-8,0,0 +2013,7,25,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,804,0,0,1027,-7,0,0 +2013,10,8,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,7,0,1420,-1,0,0 +2013,6,16,7,UA,14570,Reno/Tahoe International,Reno,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1230,118,1,1814,85,1,0 +2013,8,21,3,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,-3,0,1525,-7,0,0 +2013,10,2,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,-3,0,1205,9,0,0 +2013,8,6,2,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,8,0,2110,13,0,0 +2013,6,27,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1220,15,1,1353,2,0,0 +2013,4,10,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1040,143,1,1140,156,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,9,0,1235,5,0,0 +2013,5,16,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,852,23,1,1035,18,1,0 +2013,7,12,5,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1255,5,0,1620,56,1,0 +2013,5,10,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-1,0,815,-1,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1055,1,0,1605,-4,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,820,15,1,1000,18,1,0 +2013,7,11,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,-5,0,1855,-48,0,0 +2013,7,15,1,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1312,57,1,1624,45,1,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1157,-1,0,1438,-4,0,0 +2013,4,14,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-5,0,1500,-38,0,0 +2013,6,21,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1528,-1,0,1721,-1,0,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,900,-6,0,1700,-23,0,0 +2013,6,28,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-5,0,1849,-10,0,0 +2013,8,21,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1506,-6,0,1557,-16,0,0 +2013,5,5,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,27,1,1702,19,1,0 +2013,6,10,1,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-3,0,1128,-12,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,944,7,0,1105,2,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1540,-3,0,1557,-18,0,0 +2013,6,19,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-5,0,701,14,0,0 +2013,10,28,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,545,-1,0,719,0,0,0 +2013,8,2,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1953,83,1,2101,91,1,0 +2013,9,16,1,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1952,-1,0,2223,-24,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1435,27,1,1645,17,1,0 +2013,7,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,50,1,2200,51,1,0 +2013,8,6,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,-6,0,1700,-6,0,0 +2013,10,18,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1535,-2,0,1735,-13,0,0 +2013,4,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1654,-7,0,1807,-11,0,0 +2013,5,30,4,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,915,-2,0,1140,8,0,0 +2013,5,19,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1830,42,1,1940,42,1,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1555,31,1,1655,20,1,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1730,5,0,1922,-13,0,0 +2013,5,24,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,223,1,2145,218,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1945,4,0,2155,-3,0,0 +2013,8,26,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1951,-1,0,2229,-7,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,20,1,1835,-22,0,0 +2013,10,29,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,908,8,0,1231,-4,0,0 +2013,8,26,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,735,-3,0,800,-6,0,0 +2013,6,27,4,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,825,-7,0,1129,-5,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,31,1,1003,35,1,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,-2,0,1200,-9,0,0 +2013,10,22,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,700,0,0,958,-8,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,-1,0,2120,-6,0,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,4,0,1617,22,1,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,14,0,2045,11,0,0 +2013,5,1,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-6,0,1939,-10,0,0 +2013,10,23,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,-2,0,1928,-28,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1611,5,0,1822,-2,0,0 +2013,10,14,1,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1344,0,0,1745,-5,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2035,14,0,2315,40,1,0 +2013,4,8,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,800,77,1,1000,61,1,0 +2013,5,8,3,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1515,-2,0,1614,-21,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,-3,0,1230,1,0,0 +2013,7,22,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,22,1,1938,16,1,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,-3,0,1830,-10,0,0 +2013,5,3,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,730,-3,0,1506,-14,0,0 +2013,4,16,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1913,-6,0,2135,-15,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1206,-1,0,1342,9,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1410,31,1,1745,14,0,0 +2013,7,2,2,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-6,0,1016,-13,0,0 +2013,6,28,5,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,605,-7,0,1201,-14,0,0 +2013,6,14,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1040,-3,0,1325,-7,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1425,77,1,1530,65,1,0 +2013,6,18,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-6,0,925,-15,0,0 +2013,9,6,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,-3,0,505,-10,0,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1340,16,1,1610,14,0,0 +2013,9,8,7,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1719,8,0,1940,-10,0,0 +2013,8,30,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1721,-5,0,1904,-8,0,0 +2013,4,23,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,3,0,1257,-4,0,0 +2013,7,14,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,165,1,2110,159,1,0 +2013,6,23,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-8,0,2225,16,1,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,821,5,0,1103,-1,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2020,-5,0,2153,-20,0,0 +2013,10,4,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1341,100,1,1513,79,1,0 +2013,9,9,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-7,0,823,-7,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1235,59,1,1433,63,1,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1450,50,1,1759,45,1,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,710,-5,0,952,-10,0,0 +2013,5,22,3,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1115,5,0,1250,9,0,0 +2013,7,30,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,17,1,1610,7,0,0 +2013,5,16,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,-3,0,2105,-10,0,0 +2013,4,16,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-3,0,1535,-15,0,0 +2013,7,9,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-6,0,832,-1,0,0 +2013,9,27,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1736,-4,0,2005,3,0,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1725,-4,0,1918,-12,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,-3,0,1235,-14,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,756,-5,0,935,16,1,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1910,70,1,2050,78,1,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-5,0,1122,-13,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,7,0,2240,1,0,0 +2013,4,15,1,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1435,0,0,1615,-7,0,0 +2013,10,30,3,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,4,0,1857,-5,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,14,0,1805,18,1,0 +2013,7,1,1,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,825,-3,0,1101,5,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1849,3,0,111,-21,0,0 +2013,7,18,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,645,-3,0,1156,4,0,0 +2013,7,7,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-7,0,850,-15,0,0 +2013,8,17,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1310,-4,0,1440,-6,0,0 +2013,4,27,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1337,-1,0,1412,0,0,0 +2013,10,16,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,700,0,0,1035,-17,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,106,1,2357,106,1,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2000,29,1,2130,22,1,0 +2013,9,19,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,0,0,1247,2,0,0 +2013,5,10,5,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1948,-2,0,2248,-11,0,0 +2013,8,8,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1027,0,0,1510,-11,0,0 +2013,9,17,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,1,0,800,-4,0,0 +2013,7,7,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1546,-6,0,1702,-12,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1945,62,1,1955,48,1,0 +2013,4,28,7,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1515,-7,0,1755,-15,0,0 +2013,9,7,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,550,83,1,911,79,1,0 +2013,6,23,7,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-1,0,1459,-17,0,0 +2013,9,17,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,735,-10,0,855,8,0,0 +2013,4,9,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-4,0,940,-19,0,0 +2013,5,13,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1640,17,1,1800,17,1,0 +2013,4,30,2,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1500,-5,0,1621,-9,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,-2,0,1505,-11,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2155,48,1,35,41,1,0 +2013,6,12,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-7,0,915,-3,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,3,0,1349,-6,0,0 +2013,6,28,5,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2043,81,1,2145,75,1,0 +2013,10,11,5,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1000,10,0,1335,5,0,0 +2013,5,12,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,-13,0,2100,-16,0,0 +2013,5,9,4,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,815,234,1,1122,226,1,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1310,-1,0,1445,3,0,0 +2013,6,24,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,185,1,735,173,1,0 +2013,6,24,1,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,700,8,0,1045,-3,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,-1,0,1310,4,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,725,-5,0,908,-20,0,0 +2013,10,10,4,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,107,1,1915,77,1,0 +2013,4,23,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1030,0,,1239,0,1,1 +2013,5,22,3,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-1,0,1805,-7,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,-6,0,1245,-10,0,0 +2013,6,18,2,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1626,-7,0,0 +2013,7,9,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,21,1,745,14,0,0 +2013,9,13,5,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,-2,0,1920,4,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,9,0,1050,6,0,0 +2013,6,23,7,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1735,45,1,1925,73,1,0 +2013,9,30,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1007,-2,0,1304,5,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,108,1,1942,104,1,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1116,-3,0,1304,-19,0,0 +2013,9,10,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1051,0,0,1425,5,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1712,48,1,2250,84,1,0 +2013,5,21,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1345,37,1,1545,32,1,0 +2013,7,18,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,38,0,0,554,-17,0,0 +2013,7,6,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,-4,0,1600,-13,0,0 +2013,6,6,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-4,0,1130,-2,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1035,6,0,1210,31,1,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2005,-1,0,2326,1,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2010,19,1,2220,7,0,0 +2013,6,24,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1820,0,,2005,0,1,1 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,600,1,0,939,-6,0,0 +2013,5,26,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1830,1,0,2140,-6,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1630,8,0,1835,-5,0,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1740,5,0,2255,-14,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1920,23,1,2040,9,0,0 +2013,5,22,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-1,0,955,-7,0,0 +2013,6,12,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,600,-5,0,1420,-4,0,0 +2013,5,1,3,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,5,0,1550,-13,0,0 +2013,6,23,7,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,625,0,0,942,0,1,1 +2013,5,27,1,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1103,7,0,1342,-1,0,0 +2013,5,16,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-2,0,624,-3,0,0 +2013,5,25,6,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2146,-8,0,602,-15,0,0 +2013,9,16,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1500,-2,0,1521,-5,0,0 +2013,4,17,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1715,36,1,1815,35,1,0 +2013,5,23,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1730,-5,0,2014,-20,0,0 +2013,8,6,2,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,740,3,0,920,-5,0,0 +2013,6,30,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,715,-4,0,849,-24,0,0 +2013,5,22,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,-4,0,1035,-16,0,0 +2013,8,7,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,741,4,0,854,-6,0,0 +2013,7,13,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-4,0,1601,7,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,28,1,1445,21,1,0 +2013,6,10,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,847,2,0,0 +2013,4,11,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1530,55,1,1840,53,1,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,-2,0,1539,-7,0,0 +2013,10,13,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,7,0,1921,-2,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2105,84,1,2225,81,1,0 +2013,6,1,6,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1328,0,0,1819,37,1,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-8,0,1020,-6,0,0 +2013,4,7,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,5,0,1339,15,1,0 +2013,8,28,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,-1,0,1929,-18,0,0 +2013,5,6,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,615,-1,0,725,-6,0,0 +2013,7,7,7,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,640,-4,0,0 +2013,9,23,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1100,28,1,1149,20,1,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,-6,0,1900,-20,0,0 +2013,10,4,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-2,0,1912,-5,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1430,0,0,1611,-3,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1700,0,0,1930,-21,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,-2,0,1305,-20,0,0 +2013,5,28,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1915,20,1,2041,6,0,0 +2013,4,9,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,4,0,1950,-5,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2025,60,1,50,53,1,0 +2013,9,16,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1622,-9,0,1915,-22,0,0 +2013,8,7,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1244,3,0,1356,-7,0,0 +2013,8,15,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1540,5,0,1705,-5,0,0 +2013,4,24,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2154,6,0,29,23,1,0 +2013,7,14,7,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,-8,0,833,-14,0,0 +2013,7,10,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-10,0,1200,-11,0,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,810,-1,0,925,-8,0,0 +2013,9,14,6,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,0,0,1250,-2,0,0 +2013,8,27,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1910,-6,0,2045,-17,0,0 +2013,5,25,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1355,4,0,1520,-8,0,0 +2013,9,30,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,635,-2,0,1415,-10,0,0 +2013,8,10,6,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,700,-4,0,1020,-6,0,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,22,56,1,534,45,1,0 +2013,8,1,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1015,0,0,1219,10,0,0 +2013,6,19,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,903,78,1,1224,72,1,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,925,-1,0,1150,4,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,54,1,2200,38,1,0 +2013,8,7,3,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1111,-6,0,1847,-12,0,0 +2013,10,5,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-3,0,2031,-11,0,0 +2013,5,6,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1110,-2,0,1409,-25,0,0 +2013,6,25,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-6,0,1432,-15,0,0 +2013,8,12,1,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,0,0,1125,11,0,0 +2013,10,26,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,917,-8,0,1039,-15,0,0 +2013,10,27,7,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,53,1,1204,61,1,0 +2013,4,18,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2014,0,,2104,0,1,1 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,1,0,1920,6,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-1,0,1251,-2,0,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,14,0,2112,21,1,0 +2013,10,21,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-7,0,1605,-9,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,0,0,1954,4,0,0 +2013,4,28,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-5,0,1249,-2,0,0 +2013,8,4,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-3,0,2025,-16,0,0 +2013,8,28,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2109,-8,0,2218,-13,0,0 +2013,6,19,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,730,82,1,909,83,1,0 +2013,9,3,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-9,0,911,-2,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1015,-6,0,1320,-12,0,0 +2013,4,23,2,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-13,0,1350,-5,0,0 +2013,4,8,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1825,-6,0,2011,12,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,943,0,0,1043,-7,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,-1,0,542,-39,0,0 +2013,6,7,5,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,19,1,1230,8,0,0 +2013,7,11,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-8,0,2015,-7,0,0 +2013,10,7,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-11,0,2100,-5,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1121,1,0,1350,-20,0,0 +2013,5,13,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-7,0,1430,-3,0,0 +2013,8,28,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-5,0,1725,-11,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-7,0,1353,19,1,0 +2013,8,6,2,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1020,29,1,1238,16,1,0 +2013,8,13,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,-2,0,1305,4,0,0 +2013,7,21,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,3,0,1505,-9,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,640,-5,0,745,-9,0,0 +2013,5,25,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1550,-4,0,1742,-10,0,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2340,12,0,750,13,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,810,-2,0,1245,-18,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,45,1,1835,42,1,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,18,1,1922,4,0,0 +2013,8,2,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1332,10,0,1438,9,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,36,1,2241,22,1,0 +2013,8,25,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1055,-3,0,1220,-9,0,0 +2013,5,22,3,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1548,0,,1630,0,1,1 +2013,5,12,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-8,0,1530,5,0,0 +2013,9,22,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-3,0,1916,-3,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,950,5,0,1003,-10,0,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,7,0,6,-9,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1940,6,0,2045,2,0,0 +2013,8,1,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,13,0,1825,12,0,0 +2013,7,12,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1513,0,,1728,0,1,1 +2013,8,13,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1001,-4,0,1139,-24,0,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1035,-2,0,1335,-13,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1729,-1,0,1929,-29,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,910,1,0,1148,0,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1530,-3,0,1634,23,1,0 +2013,10,2,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,755,30,1,930,21,1,0 +2013,5,25,6,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,8,0,1448,-1,0,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1330,15,1,1435,7,0,0 +2013,8,6,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,939,-6,0,1120,-5,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1719,45,1,1909,61,1,0 +2013,10,31,4,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-3,0,2014,1,0,0 +2013,8,5,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,-1,0,1115,7,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,810,0,0,925,-1,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1015,-7,0,1230,-26,0,0 +2013,6,26,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,120,1,2320,110,1,0 +2013,7,15,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,700,-7,0,816,-9,0,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,64,1,2215,47,1,0 +2013,9,8,7,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,840,-1,0,1025,-3,0,0 +2013,5,22,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1429,18,1,1531,97,1,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1600,118,1,1730,113,1,0 +2013,9,26,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,0,0,1715,-3,0,0 +2013,5,5,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-4,0,915,-18,0,0 +2013,10,18,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-4,0,2056,1,0,0 +2013,8,31,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1650,93,1,1814,81,1,0 +2013,10,9,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,5,0,1610,5,0,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1555,-2,0,1736,-17,0,0 +2013,5,31,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,600,-2,0,715,2,0,0 +2013,8,18,7,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1740,-3,0,1935,0,0,0 +2013,9,16,1,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1247,-9,0,1425,-15,0,0 +2013,7,22,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1212,-1,0,1955,-15,0,0 +2013,5,22,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,751,-3,0,1544,17,1,0 +2013,4,20,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,6,0,1150,2,0,0 +2013,5,5,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1915,-6,0,2101,-12,0,0 +2013,10,14,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1128,-6,0,1359,16,1,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-4,0,1433,-22,0,0 +2013,9,4,3,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1720,-7,0,1850,-25,0,0 +2013,6,7,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-7,0,1939,-7,0,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1255,0,0,2138,10,0,0 +2013,7,6,6,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,610,-4,0,735,-9,0,0 +2013,9,16,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-5,0,1355,-9,0,0 +2013,4,3,3,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,530,-4,0,756,-3,0,0 +2013,10,9,3,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1645,39,1,1830,25,1,0 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,-3,0,1755,37,1,0 +2013,7,22,1,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,2147,1,0,610,2,0,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1100,1,0,1225,-10,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1800,13,0,2040,38,1,0 +2013,6,22,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,755,-18,0,0 +2013,9,9,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,2,0,1340,15,1,0 +2013,6,29,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,951,12,0,1033,9,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1725,4,0,2155,10,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,940,-1,0,1055,-6,0,0 +2013,9,28,6,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1530,3,0,1710,-9,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-7,0,1054,-15,0,0 +2013,8,28,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-2,0,850,-2,0,0 +2013,7,22,1,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1245,2,0,1631,9,0,0 +2013,5,18,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1400,-3,0,1430,-12,0,0 +2013,10,19,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1020,-1,0,1213,-4,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1730,-3,0,1915,-16,0,0 +2013,8,15,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1053,-6,0,1924,-9,0,0 +2013,4,19,5,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1945,-7,0,2240,-9,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1131,59,1,1341,56,1,0 +2013,9,9,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,-3,0,2129,1,0,0 +2013,8,2,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2211,107,1,2330,92,1,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,740,-3,0,941,-13,0,0 +2013,6,6,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,800,-1,0,913,-12,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-1,0,1130,-6,0,0 +2013,9,30,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,840,-7,0,1013,-22,0,0 +2013,8,28,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1600,43,1,1725,47,1,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1900,15,1,2035,11,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1855,-4,0,2135,-3,0,0 +2013,10,22,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1739,-2,0,1950,-7,0,0 +2013,8,10,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1345,1,0,1530,-6,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1643,31,1,1818,47,1,0 +2013,4,30,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-7,0,1135,-28,0,0 +2013,5,7,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,1,0,730,-13,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2205,41,1,2334,26,1,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,-4,0,1709,-3,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,3,0,1144,-12,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,1,0,930,-8,0,0 +2013,5,30,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1005,-12,0,1257,-1,0,0 +2013,7,17,3,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,-5,0,1900,-27,0,0 +2013,6,3,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,27,1,1645,34,1,0 +2013,4,5,5,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,716,-3,0,926,-9,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1705,-6,0,2000,-20,0,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1605,-2,0,1730,-21,0,0 +2013,6,27,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,13,0,1135,2,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1810,30,1,2215,29,1,0 +2013,6,12,3,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-7,0,1238,-14,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1242,21,1,1349,13,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,815,-2,0,1000,-12,0,0 +2013,8,11,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-12,0,1225,-20,0,0 +2013,5,6,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,-3,0,2119,21,1,0 +2013,4,1,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1717,-10,0,1829,-12,0,0 +2013,7,29,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1115,-2,0,1350,-9,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1500,43,1,1610,38,1,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1905,6,0,2015,7,0,0 +2013,9,12,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,5,0,1230,4,0,0 +2013,7,15,1,OO,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-6,0,1748,22,1,0 +2013,10,30,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1140,31,1,1315,23,1,0 +2013,8,9,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-2,0,1105,-4,0,0 +2013,7,16,2,OO,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,933,-7,0,1244,-9,0,0 +2013,6,24,1,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,856,3,0,1149,-3,0,0 +2013,4,28,7,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,631,-9,0,748,-21,0,0 +2013,4,28,7,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1638,-11,0,2049,-35,0,0 +2013,4,27,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,-7,0,2054,-24,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1612,-4,0,1735,-10,0,0 +2013,5,2,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1642,9,0,1943,15,1,0 +2013,9,16,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,814,-2,0,0 +2013,7,18,4,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1105,99,1,1330,118,1,0 +2013,6,1,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1130,120,1,1221,112,1,0 +2013,9,23,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2005,39,1,2150,16,1,0 +2013,7,27,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1745,47,1,2123,49,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2300,-7,0,47,-7,0,0 +2013,9,13,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-1,0,1315,20,1,0 +2013,5,23,4,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1154,7,0,1800,11,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-2,0,2105,-18,0,0 +2013,10,26,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1055,9,0,1428,6,0,0 +2013,5,15,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-7,0,2039,-8,0,0 +2013,7,25,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1540,11,0,1741,17,1,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,-7,0,1409,4,0,0 +2013,8,15,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-4,0,1230,-9,0,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,10,0,1326,-3,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,2,0,1317,2,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,2,0,2100,0,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,805,3,0,1040,20,1,0 +2013,6,2,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2340,-1,0,710,-18,0,0 +2013,7,11,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,600,-1,0,735,-5,0,0 +2013,6,7,5,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1625,183,1,1745,174,1,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1945,26,1,2205,25,1,0 +2013,7,6,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,535,-1,0,907,-28,0,0 +2013,6,19,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1935,-3,0,2143,19,1,0 +2013,7,13,6,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,900,-4,0,1203,-24,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2036,0,0,2306,-1,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1700,1,0,1850,-7,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,718,14,0,834,16,1,0 +2013,10,11,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,925,1,0,1015,-1,0,0 +2013,6,2,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,56,1,1955,57,1,0 +2013,6,8,6,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1350,11,0,1535,-1,0,0 +2013,4,10,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-2,0,1247,-11,0,0 +2013,4,10,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,-7,0,1630,-6,0,0 +2013,10,24,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,910,-8,0,955,-10,0,0 +2013,5,20,1,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,850,81,1,1027,77,1,0 +2013,10,1,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1125,-6,0,1225,-7,0,0 +2013,4,8,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,1,0,1007,-7,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1350,0,0,1541,13,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1457,9,0,1643,57,1,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,615,-3,0,920,1,0,0 +2013,7,23,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,530,-4,0,740,-21,0,0 +2013,6,27,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-7,0,1055,-9,0,0 +2013,10,9,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1535,27,1,1715,11,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1041,-6,0,0 +2013,6,8,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1130,-5,0,1400,8,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,-3,0,1715,3,0,0 +2013,5,23,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,1937,-8,0,0 +2013,5,9,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,-1,0,1745,-10,0,0 +2013,10,28,1,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1155,-4,0,1425,1,0,0 +2013,8,7,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,-5,0,914,17,1,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,630,1,0,1120,0,0,0 +2013,8,20,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1950,20,1,2110,18,1,0 +2013,6,18,2,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-2,0,1014,0,0,0 +2013,4,7,7,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1355,1,0,1950,-14,0,0 +2013,8,2,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1515,15,1,1815,2,0,0 +2013,7,15,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,-14,0,1820,-18,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1905,-1,0,2020,-10,0,0 +2013,8,7,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-3,0,2103,1,0,0 +2013,4,4,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,1,0,1200,9,0,0 +2013,8,16,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-4,0,1740,5,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1101,-5,0,1218,-22,0,0 +2013,8,12,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,35,1,1820,34,1,0 +2013,7,15,1,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,18,1,935,22,1,0 +2013,10,9,3,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,810,-1,0,1055,-2,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-1,0,1924,4,0,0 +2013,10,4,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10423,Austin - Bergstrom International,Austin,TX,840,-2,0,1050,-12,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1619,144,1,1949,164,1,0 +2013,10,2,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,39,1,2139,22,1,0 +2013,10,30,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,625,0,0,920,4,0,0 +2013,4,9,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,840,1,0,1409,29,1,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2054,66,1,2359,53,1,0 +2013,10,19,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,77,1,1524,64,1,0 +2013,9,21,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1935,14,0,2105,6,0,0 +2013,5,28,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-5,0,1124,-2,0,0 +2013,8,18,7,YV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1640,0,0,1806,-10,0,0 +2013,4,28,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,4,0,1800,0,0,0 +2013,4,30,2,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1300,-10,0,1450,-22,0,0 +2013,4,13,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-8,0,1336,-11,0,0 +2013,9,30,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1951,-3,0,2150,-25,0,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,735,-6,0,1016,-35,0,0 +2013,4,23,2,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,700,-6,0,945,7,0,0 +2013,10,8,2,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1919,-8,0,2234,-38,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,725,-1,0,1050,2,0,0 +2013,7,8,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,815,-1,0,1141,-16,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,4,0,1506,-17,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1459,-8,0,1746,-6,0,0 +2013,9,22,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1710,0,0,2005,0,0,0 +2013,7,18,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,17,1,1635,-4,0,0 +2013,7,21,7,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1425,-4,0,1655,-6,0,0 +2013,10,2,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,915,-6,0,1350,-3,0,0 +2013,4,8,1,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1735,4,0,1930,-6,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1810,11,0,2025,5,0,0 +2013,4,10,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,61,1,2020,49,1,0 +2013,7,13,6,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,925,0,0,1048,-5,0,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1920,6,0,2325,-6,0,0 +2013,7,15,1,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,0,0,2145,-9,0,0 +2013,6,4,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1150,8,0,1255,20,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,840,6,0,1023,2,0,0 +2013,9,10,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1310,-2,0,1515,15,1,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2155,1,0,15,12,0,0 +2013,5,26,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,-6,0,2239,-26,0,0 +2013,6,6,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1545,79,1,1720,60,1,0 +2013,9,26,4,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,910,-6,0,1730,-11,0,0 +2013,4,24,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,814,-10,0,929,-23,0,0 +2013,9,24,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1020,-5,0,1105,-11,0,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1325,4,0,2159,-15,0,0 +2013,8,21,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,1,0,1206,6,0,0 +2013,10,5,6,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,520,15,1,643,12,0,0 +2013,4,6,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,0,0,1557,-3,0,0 +2013,7,1,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,915,-11,0,1155,2,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2000,3,0,2235,10,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1735,23,1,5,4,0,0 +2013,6,8,6,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1646,-2,0,1820,-17,0,0 +2013,7,22,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,0,,2310,0,1,1 +2013,10,27,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,830,-4,0,1105,-28,0,0 +2013,8,1,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,850,-5,0,924,-9,0,0 +2013,8,20,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1240,11,0,1400,15,1,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1035,7,0,1310,1,0,0 +2013,10,28,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1025,-4,0,1340,-16,0,0 +2013,5,20,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-8,0,1028,-8,0,0 +2013,4,4,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1338,-6,0,1548,-18,0,0 +2013,7,6,6,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1850,-10,0,2154,-33,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,110,1,30,113,1,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-4,0,1325,-14,0,0 +2013,8,26,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,-4,0,1325,-9,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1429,28,1,1607,25,1,0 +2013,10,24,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,0,0,1150,21,1,0 +2013,5,25,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,-5,0,1342,-11,0,0 +2013,7,4,4,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,-5,0,1740,5,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2014,-2,0,2153,-20,0,0 +2013,8,23,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-2,0,1519,-10,0,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,916,18,1,1125,10,0,0 +2013,5,16,4,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1915,118,1,2155,126,1,0 +2013,8,13,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,750,5,0,900,-3,0,0 +2013,10,15,2,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1410,-1,0,1528,-9,0,0 +2013,9,18,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-11,0,1735,0,0,0 +2013,5,31,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2018,-8,0,2300,3,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2145,-3,0,40,-10,0,0 +2013,9,10,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-8,0,2120,-12,0,0 +2013,9,5,4,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1936,-10,0,2140,-23,0,0 +2013,4,17,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1030,-4,0,1242,-14,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1127,12,0,1604,-3,0,0 +2013,6,26,3,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1840,195,1,2103,179,1,0 +2013,10,5,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1056,-19,0,0 +2013,9,9,1,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,13,0,2005,24,1,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1135,-3,0,1700,-18,0,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1729,-5,0,1836,-9,0,0 +2013,7,12,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,26,1,543,41,1,0 +2013,8,13,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-9,0,1955,-14,0,0 +2013,10,30,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-9,0,1818,-28,0,0 +2013,9,26,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,705,-9,0,1030,-16,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1550,27,1,2035,-9,0,0 +2013,5,12,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1245,-4,0,1850,-25,0,0 +2013,7,16,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1241,3,0,1340,-18,0,0 +2013,4,16,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1545,3,0,1725,-3,0,0 +2013,8,15,4,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1557,65,1,1850,65,1,0 +2013,9,24,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1425,-2,0,1800,-28,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1135,-3,0,1415,-11,0,0 +2013,6,19,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,530,-3,0,805,-16,0,0 +2013,5,16,4,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1710,110,1,2157,88,1,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1447,-5,0,1543,-9,0,0 +2013,6,4,2,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,2005,-5,0,48,-16,0,0 +2013,6,11,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,224,1,2014,204,1,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,36,1,1822,2,0,0 +2013,9,24,2,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1540,-4,0,2150,-14,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,21,1,1454,-1,0,0 +2013,6,26,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1410,-3,0,1510,-13,0,0 +2013,8,22,4,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,14,0,1710,5,0,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1545,-8,0,1620,-13,0,0 +2013,5,19,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,813,0,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,630,-1,0,1125,2,0,0 +2013,10,25,5,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-6,0,1827,-15,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,825,1,0,1050,-33,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1433,57,1,1525,57,1,0 +2013,5,17,5,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,710,-2,0,843,-3,0,0 +2013,5,28,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,-7,0,1012,2,0,0 +2013,4,6,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,9,0,2027,-3,0,0 +2013,7,15,1,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1235,73,1,1540,73,1,0 +2013,6,25,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1324,3,0,1425,-6,0,0 +2013,5,26,7,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,105,1,1655,99,1,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,22,1,1610,24,1,0 +2013,6,10,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,800,0,0,905,-8,0,0 +2013,8,30,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,955,2,0,1105,-3,0,0 +2013,7,21,7,UA,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,850,15,1,1014,0,0,0 +2013,7,27,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1410,-3,0,1618,-7,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1940,16,1,50,7,0,0 +2013,9,14,6,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1540,-7,0,1718,-16,0,0 +2013,7,15,1,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1220,4,0,1506,-1,0,0 +2013,5,26,7,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1350,-2,0,1517,-13,0,0 +2013,10,23,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1320,-2,0,1535,-21,0,0 +2013,8,19,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,3,0,1122,4,0,0 +2013,6,29,6,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,6,0,1800,1,0,0 +2013,8,3,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-4,0,607,-9,0,0 +2013,9,9,1,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1940,15,1,28,17,1,0 +2013,8,16,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-8,0,1602,-6,0,0 +2013,7,17,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1504,0,0,1806,20,1,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1618,0,0,59,-22,0,0 +2013,5,18,6,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,825,-10,0,1119,-28,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,0,0,1440,-22,0,0 +2013,10,14,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,845,-5,0,1013,2,0,0 +2013,9,20,5,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1045,11,0,1255,9,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,940,0,0,1105,-1,0,0 +2013,7,18,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-5,0,838,-10,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,730,-5,0,850,-9,0,0 +2013,7,15,1,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1031,26,1,1340,32,1,0 +2013,4,16,2,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1000,-9,0,1221,-10,0,0 +2013,6,11,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,547,2,0,908,-10,0,0 +2013,10,19,6,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1610,81,1,1835,78,1,0 +2013,8,26,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,15,1,1115,27,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-1,0,840,-2,0,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,2115,-4,0,2359,-11,0,0 +2013,7,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2030,223,1,2145,220,1,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1520,17,1,1741,-1,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1454,0,0,1651,-5,0,0 +2013,5,17,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,3,0,2128,10,0,0 +2013,5,23,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,261,1,1900,293,1,0 +2013,8,26,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1320,-6,0,2135,-26,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,1,0,910,4,0,0 +2013,7,21,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1611,13,0,1940,14,0,0 +2013,6,29,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,30,1,1555,36,1,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2045,-9,0,2230,-19,0,0 +2013,7,2,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1048,-5,0,1422,-19,0,0 +2013,10,5,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1125,-8,0,1420,-21,0,0 +2013,6,27,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,814,-4,0,1025,0,0,0 +2013,8,10,6,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1050,5,0,1905,-19,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,44,1,104,33,1,0 +2013,7,6,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1544,-5,0,1836,3,0,0 +2013,5,12,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,0,0,1908,-20,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1045,1,0,1150,-11,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2059,121,1,2324,108,1,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-6,0,1801,-13,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1548,-4,0,1727,-21,0,0 +2013,5,24,5,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,-2,0,1922,-20,0,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1341,1,0,1717,-14,0,0 +2013,8,28,3,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,825,-12,0,1111,-35,0,0 +2013,5,5,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1235,102,1,1400,104,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1454,-2,0,1603,-18,0,0 +2013,6,10,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1335,6,0,1700,-3,0,0 +2013,8,15,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,804,0,0,0 +2013,7,9,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,0,0,912,-18,0,0 +2013,7,30,2,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1542,-10,0,1803,-9,0,0 +2013,5,16,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1920,-6,0,2017,-12,0,0 +2013,4,21,7,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1055,-4,0,1140,-11,0,0 +2013,6,22,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1730,0,,1841,0,1,1 +2013,10,10,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,6,0,1420,-15,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,717,-1,0,1201,-23,0,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,840,-8,0,1038,3,0,0 +2013,4,18,4,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,243,1,1835,217,1,0 +2013,7,18,4,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,645,-5,0,850,-22,0,0 +2013,5,2,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,845,-10,0,1030,-22,0,0 +2013,5,6,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1223,0,0,1500,-11,0,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,751,-1,0,921,-6,0,0 +2013,4,11,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-5,0,2052,10,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1010,70,1,1200,66,1,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-3,0,1715,3,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1310,14,0,1755,7,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,808,0,0,1001,-6,0,0 +2013,5,29,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-6,0,1853,32,1,0 +2013,5,20,1,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1420,-5,0,1640,-7,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,4,0,2049,-5,0,0 +2013,7,17,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,6,0,1320,5,0,0 +2013,10,11,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1035,103,1,1133,90,1,0 +2013,5,28,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-7,0,700,-18,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1540,3,0,1743,2,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1750,32,1,1956,16,1,0 +2013,8,12,1,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-5,0,1857,0,0,0 +2013,7,7,7,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1401,7,0,1615,-7,0,0 +2013,6,6,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,,1520,0,1,1 +2013,7,18,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,845,-8,0,1420,12,0,0 +2013,10,29,2,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1824,-5,0,2039,-18,0,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,623,-1,0,901,-18,0,0 +2013,6,27,4,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-1,0,2040,111,1,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1730,5,0,1955,-1,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1124,-3,0,1227,-5,0,0 +2013,5,5,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1137,-10,0,1424,1,0,0 +2013,6,27,4,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,20,1,1800,38,1,0 +2013,5,13,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-5,0,1315,-10,0,0 +2013,4,11,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1425,-4,0,1605,44,1,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2022,-5,0,2155,9,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,-3,0,1806,-10,0,0 +2013,5,8,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,840,-3,0,1310,-2,0,0 +2013,5,11,6,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1620,5,0,1847,22,1,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,5,0,1210,4,0,0 +2013,6,7,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-5,0,2017,-20,0,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2233,10,0,655,3,0,0 +2013,4,26,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,810,-6,0,920,-7,0,0 +2013,8,21,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1415,3,0,1534,5,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-7,0,1207,-6,0,0 +2013,6,7,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,17,1,1621,11,0,0 +2013,7,15,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1103,-3,0,1639,-12,0,0 +2013,10,30,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1440,-3,0,1545,-3,0,0 +2013,6,22,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,0,0,643,4,0,0 +2013,10,6,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-1,0,940,-25,0,0 +2013,6,2,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-4,0,1925,-24,0,0 +2013,7,16,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1531,6,0,1658,44,1,0 +2013,9,17,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,627,-5,0,1143,-6,0,0 +2013,6,17,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1356,-1,0,1700,-11,0,0 +2013,4,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-5,0,2127,-18,0,0 +2013,4,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2100,95,1,2211,110,1,0 +2013,10,9,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1325,-7,0,1615,-4,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,745,-1,0,1030,-4,0,0 +2013,6,22,6,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2005,3,0,2245,-7,0,0 +2013,4,20,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1745,-8,0,1905,-11,0,0 +2013,10,17,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-3,0,905,1,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-3,0,2356,-7,0,0 +2013,9,9,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,-8,0,2032,-3,0,0 +2013,4,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,19,1,2100,17,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1408,18,1,1434,6,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1310,47,1,1430,37,1,0 +2013,6,22,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1945,4,0,2126,-14,0,0 +2013,10,4,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,919,-4,0,1103,-17,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1312,7,0,1510,0,0,0 +2013,8,8,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1105,76,1,1301,70,1,0 +2013,5,13,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-15,0,645,-30,0,0 +2013,4,3,3,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-7,0,859,-28,0,0 +2013,7,28,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,0,0,1128,5,0,0 +2013,5,20,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,540,0,0,908,-8,0,0 +2013,6,30,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1728,42,1,2020,39,1,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1627,14,0,1816,9,0,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-3,0,1629,-4,0,0 +2013,8,10,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1245,8,0,1345,12,0,0 +2013,5,4,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,-4,0,1020,-23,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,0,0,1525,7,0,0 +2013,10,25,5,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,1,0,2057,-9,0,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1245,24,1,1613,23,1,0 +2013,8,5,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-7,0,1812,-19,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2050,-1,0,2300,-15,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1608,16,1,1839,77,1,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,750,-1,0,1044,-19,0,0 +2013,5,22,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-6,0,701,-10,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-5,0,1810,-11,0,0 +2013,4,10,3,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-1,0,1200,56,1,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1948,-1,0,2047,1,0,0 +2013,9,12,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-3,0,1052,-26,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1155,7,0,1410,-8,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,6,0,1620,10,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,835,172,1,1100,145,1,0 +2013,5,3,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1344,88,1,1523,72,1,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2356,-8,0,600,-15,0,0 +2013,6,5,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,37,1,2005,76,1,0 +2013,7,20,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-5,0,705,-12,0,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1450,-6,0,1759,-11,0,0 +2013,7,5,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1930,2,0,2040,33,1,0 +2013,7,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-3,0,2021,24,1,0 +2013,8,24,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1249,1,0,1345,-3,0,0 +2013,6,2,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1745,1,0,2117,62,1,0 +2013,8,19,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1505,55,1,1834,18,1,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,55,1,2206,57,1,0 +2013,9,29,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,722,-5,0,901,-19,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1601,-4,0,1655,4,0,0 +2013,9,28,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-16,0,1133,-46,0,0 +2013,8,16,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,0,0,1031,4,0,0 +2013,5,28,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,-5,0,1542,-17,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-5,0,1342,-18,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,-2,0,1654,-29,0,0 +2013,8,29,4,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1620,0,0,1935,-47,0,0 +2013,5,14,2,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,850,-7,0,1117,1,0,0 +2013,4,27,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1020,-10,0,1138,-12,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,-6,0,1125,-15,0,0 +2013,9,9,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1920,-8,0,1935,-3,0,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1725,134,1,2027,110,1,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,11,0,1900,4,0,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1652,-4,0,1823,-22,0,0 +2013,10,15,2,DL,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-3,0,912,-33,0,0 +2013,9,30,1,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2345,-8,0,800,-27,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1850,25,1,2000,9,0,0 +2013,8,8,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-3,0,649,-5,0,0 +2013,4,22,1,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1328,2,0,1819,7,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1245,0,0,1435,-7,0,0 +2013,5,27,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,833,-6,0,1041,-2,0,0 +2013,4,12,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,-3,0,1838,-3,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1452,6,0,1747,-4,0,0 +2013,4,1,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1840,90,1,2020,97,1,0 +2013,7,25,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,54,1,2020,43,1,0 +2013,10,3,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1605,195,1,2353,179,1,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,-3,0,2352,13,0,0 +2013,5,30,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,-2,0,930,-14,0,0 +2013,10,13,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2157,5,0,2246,2,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,953,-1,0,1044,-2,0,0 +2013,8,3,6,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-2,0,1305,24,1,0 +2013,4,12,5,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,920,-1,0,1215,-11,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1030,-3,0,1213,-8,0,0 +2013,6,18,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,221,1,1840,195,1,0 +2013,9,15,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1200,3,0,1305,4,0,0 +2013,7,1,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,1145,-7,0,0 +2013,5,27,1,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1035,24,1,1325,10,0,0 +2013,8,9,5,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,825,-8,0,1111,-4,0,0 +2013,10,28,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,545,0,0,712,49,1,0 +2013,7,11,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,3,0,615,-1,0,0 +2013,6,20,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1947,-13,0,0 +2013,4,28,7,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,2020,3,0,2110,-3,0,0 +2013,7,2,2,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,610,-4,0,640,-16,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,925,-2,0,1010,-3,0,0 +2013,8,18,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1710,4,0,1946,7,0,0 +2013,4,6,6,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1225,-2,0,1400,-25,0,0 +2013,4,9,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,9,0,1059,0,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2110,40,1,2235,33,1,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,28,1,1715,21,1,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1310,-6,0,2149,7,0,0 +2013,9,25,3,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2000,-3,0,2324,-9,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1910,34,1,2335,40,1,0 +2013,10,21,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,3,0,1945,8,0,0 +2013,8,4,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1037,-13,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1150,5,0,1405,4,0,0 +2013,5,29,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,-2,0,1800,-18,0,0 +2013,4,3,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,5,0,1608,-2,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,58,1,2059,31,1,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,900,12,0,1105,21,1,0 +2013,8,13,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-1,0,2309,-6,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1301,-5,0,1430,-18,0,0 +2013,6,24,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-1,0,1337,0,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1708,-4,0,1825,-12,0,0 +2013,6,20,4,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,710,-4,0,1111,-17,0,0 +2013,5,21,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,955,31,1,1215,24,1,0 +2013,8,3,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2254,39,1,444,17,1,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,46,1,1620,31,1,0 +2013,10,23,3,AA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,810,-12,0,1545,-7,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-3,0,1405,27,1,0 +2013,7,19,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,600,-2,0,840,-21,0,0 +2013,7,26,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1005,0,0,1245,-10,0,0 +2013,10,26,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1148,-11,0,1756,13,0,0 +2013,9,29,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,12,0,2200,18,1,0 +2013,7,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1040,4,0,1245,7,0,0 +2013,9,3,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1415,-10,0,1740,-19,0,0 +2013,4,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,833,-4,0,935,-25,0,0 +2013,8,26,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-1,0,1100,6,0,0 +2013,4,21,7,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1341,-5,0,1604,-30,0,0 +2013,6,30,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1820,58,1,2134,54,1,0 +2013,7,24,3,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1115,-6,0,1235,4,0,0 +2013,9,5,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,620,-3,0,653,2,0,0 +2013,10,2,3,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1111,-7,0,1210,4,0,0 +2013,7,31,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1945,11,0,2105,9,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1815,5,0,1956,-6,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,855,-5,0,1542,-1,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1230,14,0,1410,7,0,0 +2013,5,25,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,800,-1,0,905,-12,0,0 +2013,9,6,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-5,0,1334,0,0,0 +2013,10,28,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,600,-1,0,740,-9,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1210,-5,0,1315,-2,0,0 +2013,7,12,5,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,8,0,705,24,1,0 +2013,8,22,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1312,7,0,1610,10,0,0 +2013,10,10,4,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1020,-2,0,1455,-4,0,0 +2013,5,31,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1655,11,0,1820,7,0,0 +2013,4,4,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-3,0,1205,3,0,0 +2013,10,1,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1610,3,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,0,0,1906,-4,0,0 +2013,5,17,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,929,-3,0,1241,-9,0,0 +2013,6,20,4,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,48,1,1850,60,1,0 +2013,10,2,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,900,0,0,1200,-6,0,0 +2013,10,6,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,8,0,1500,1,0,0 +2013,5,20,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1726,19,1,1916,23,1,0 +2013,7,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1108,22,1,1510,13,0,0 +2013,5,23,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,915,16,1,1445,13,0,0 +2013,6,6,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,722,-3,0,0 +2013,10,6,7,9E,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1600,-5,0,1740,-28,0,0 +2013,5,2,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-3,0,1000,-1,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-7,0,834,-26,0,0 +2013,9,2,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1008,-12,0,0 +2013,6,2,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,-9,0,930,-7,0,0 +2013,7,10,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,7,0,1518,126,1,0 +2013,10,17,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,4,0,2033,-6,0,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,5,0,1140,-14,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,940,61,1,1045,58,1,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,835,-5,0,1225,0,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,814,-2,0,1054,-13,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,4,0,1333,0,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-2,0,1651,-7,0,0 +2013,6,1,6,FL,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1832,-12,0,2000,-13,0,0 +2013,8,17,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,1,0,2305,-3,0,0 +2013,7,29,1,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,353,1,505,348,1,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,44,1,1655,29,1,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,2,0,1850,-7,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-3,0,1401,-11,0,0 +2013,4,2,2,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1205,21,1,1345,13,0,0 +2013,10,22,2,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1729,-6,0,2015,-20,0,0 +2013,10,3,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,852,-4,0,1130,-4,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,-6,0,1120,-5,0,0 +2013,9,2,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1800,149,1,1925,142,1,0 +2013,5,5,7,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-1,0,1805,-2,0,0 +2013,6,20,4,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1230,-1,0,1558,-36,0,0 +2013,8,11,7,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-21,0,2038,-19,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-1,0,1343,0,0,0 +2013,7,31,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,815,-8,0,935,-22,0,0 +2013,8,13,2,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-4,0,728,-8,0,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,600,-1,0,1144,-6,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1438,-3,0,1528,8,0,0 +2013,8,10,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,15,1,1945,33,1,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,-2,0,858,-14,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-7,0,1219,1,0,0 +2013,10,6,7,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,3,0,1650,4,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,809,-3,0,836,-11,0,0 +2013,4,16,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,620,-5,0,945,9,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,-6,0,1501,-23,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,38,1,1911,41,1,0 +2013,9,13,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,1634,-9,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-4,0,815,5,0,0 +2013,7,16,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1822,120,1,2100,118,1,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2115,-3,0,2235,-4,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1410,42,1,1550,51,1,0 +2013,9,24,2,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1615,-4,0,1915,-8,0,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,10,0,1525,7,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-2,0,1351,-14,0,0 +2013,7,9,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,826,2,0,954,-9,0,0 +2013,4,23,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1305,5,0,2120,12,0,0 +2013,4,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-6,0,1636,-10,0,0 +2013,4,4,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,700,8,0,735,22,1,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,98,1,1310,98,1,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,5,0,1307,-5,0,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1241,74,1,1819,81,1,0 +2013,10,31,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,46,1,824,16,1,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,-1,0,1342,9,0,0 +2013,5,26,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1555,-7,0,1646,-9,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,16,1,2320,25,1,0 +2013,5,13,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1310,-7,0,1553,5,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,-2,0,2055,-12,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1835,0,0,1940,-12,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1010,13,0,1225,-7,0,0 +2013,5,7,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,804,2,0,1310,-5,0,0 +2013,7,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,835,2,0,955,-6,0,0 +2013,6,10,1,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1720,69,1,2000,56,1,0 +2013,7,20,6,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1643,25,1,1949,41,1,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1358,-8,0,1704,-35,0,0 +2013,7,11,4,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-7,0,1240,10,0,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,-4,0,542,-19,0,0 +2013,7,25,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,15,1,1615,10,0,0 +2013,7,13,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,720,-4,0,955,-10,0,0 +2013,7,5,5,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1015,2,0,1215,-3,0,0 +2013,6,11,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,27,1,1922,27,1,0 +2013,4,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1216,-5,0,1309,-10,0,0 +2013,4,4,4,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,700,-3,0,1005,-27,0,0 +2013,10,11,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1135,-3,0,1421,17,1,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,956,-7,0,1158,-15,0,0 +2013,6,19,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-1,0,2354,3,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,13,0,1335,24,1,0 +2013,10,1,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1620,-1,0,1825,-9,0,0 +2013,10,26,6,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1535,2,0,1625,4,0,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,3,0,2045,18,1,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1000,20,1,1259,15,1,0 +2013,5,15,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1423,-4,0,1540,-2,0,0 +2013,5,1,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1130,-5,0,1345,-11,0,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1735,-1,0,2005,-10,0,0 +2013,10,14,1,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2035,54,1,2340,46,1,0 +2013,8,4,7,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1635,0,0,1847,1,0,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2136,5,0,2245,15,1,0 +2013,10,10,4,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1034,0,0,1418,0,0,0 +2013,5,7,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-5,0,1747,-20,0,0 +2013,9,27,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1710,0,0,1944,-13,0,0 +2013,6,2,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1505,2,0,1615,-7,0,0 +2013,9,28,6,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1835,-8,0,2155,-39,0,0 +2013,5,5,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1432,51,1,1629,59,1,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1310,15,1,1630,8,0,0 +2013,5,8,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,-2,0,1830,-8,0,0 +2013,7,7,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-3,0,1154,-11,0,0 +2013,6,19,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,62,1,2010,49,1,0 +2013,5,9,4,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1210,3,0,1344,-5,0,0 +2013,7,17,3,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1925,20,1,2221,21,1,0 +2013,10,25,5,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1440,19,1,1820,6,0,0 +2013,8,30,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-4,0,1100,-20,0,0 +2013,8,20,2,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,735,-7,0,1600,-20,0,0 +2013,8,7,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-5,0,1920,3,0,0 +2013,4,22,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2320,-7,0,514,-13,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-3,0,2058,-1,0,0 +2013,8,4,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,-1,0,2045,1,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1409,-1,0,2229,5,0,0 +2013,6,13,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1845,3,0,1915,9,0,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1400,-6,0,1707,-54,0,0 +2013,7,10,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1115,1,0,1125,-6,0,0 +2013,6,9,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1307,40,1,1353,29,1,0 +2013,9,12,4,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,-1,0,1450,-3,0,0 +2013,8,30,5,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1050,2,0,1250,-6,0,0 +2013,7,12,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,11,0,1935,5,0,0 +2013,5,5,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-4,0,930,-2,0,0 +2013,8,17,6,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2135,-8,0,7,-21,0,0 +2013,9,25,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1110,-3,0,1430,-17,0,0 +2013,7,31,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,-12,0,1605,-16,0,0 +2013,6,27,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1927,10,0,2109,0,0,0 +2013,5,12,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,-5,0,1909,-24,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1630,20,1,1815,23,1,0 +2013,5,22,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1016,-4,0,1207,2,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,1,0,1745,-6,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,820,5,0,1115,-11,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1815,3,0,2046,-10,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,945,-3,0,1050,-14,0,0 +2013,4,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1955,-1,0,2115,25,1,0 +2013,6,2,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,940,-2,0,1057,3,0,0 +2013,7,22,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1610,-1,0,1718,22,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,-2,0,1032,-7,0,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,830,-2,0,1047,-16,0,0 +2013,10,11,5,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-3,0,2100,-4,0,0 +2013,8,16,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1335,2,0,1610,6,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,14,0,923,5,0,0 +2013,4,18,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1700,0,0,1735,12,0,0 +2013,10,14,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1533,17,1,1824,14,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,-4,0,2217,-1,0,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,1112,-8,0,0 +2013,7,29,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1440,9,0,1610,-9,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1500,13,0,2020,17,1,0 +2013,6,20,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,7,0,1750,1,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1855,-6,0,2050,-23,0,0 +2013,10,28,1,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,730,-3,0,1600,-34,0,0 +2013,7,1,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,0,0,2024,-8,0,0 +2013,10,23,3,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1211,-7,0,1459,2,0,0 +2013,5,17,5,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-2,0,617,-24,0,0 +2013,6,16,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2338,21,1,500,12,0,0 +2013,5,18,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-1,0,840,11,0,0 +2013,8,21,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1535,-4,0,1733,-4,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,0,,1710,0,1,1 +2013,6,9,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,645,-2,0,715,-11,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2015,16,1,2155,1,0,0 +2013,6,20,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1539,-8,0,1610,-1,0,0 +2013,10,23,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-10,0,830,-20,0,0 +2013,7,23,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,815,23,1,930,13,0,0 +2013,7,29,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,2,0,1230,-2,0,0 +2013,10,26,6,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-4,0,1945,-14,0,0 +2013,10,11,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,-4,0,805,-5,0,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1420,3,0,1758,-6,0,0 +2013,6,27,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,3,0,1357,13,0,0 +2013,9,30,1,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,745,-4,0,1501,1,0,0 +2013,5,22,3,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1358,1,0,1704,-23,0,0 +2013,9,20,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-9,0,1933,12,0,0 +2013,9,8,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1720,18,1,1800,14,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1735,9,0,1835,0,0,0 +2013,7,1,1,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1201,-9,0,1337,-1,0,0 +2013,6,9,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1701,4,0,2334,-18,0,0 +2013,8,5,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-9,0,821,-20,0,0 +2013,4,16,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-1,0,1645,-6,0,0 +2013,8,9,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,734,-7,0,852,-6,0,0 +2013,6,27,4,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-5,0,705,-15,0,0 +2013,10,16,3,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-2,0,2000,-8,0,0 +2013,10,10,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,5,0,1757,2,0,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1843,130,1,2023,142,1,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,-4,0,2324,-9,0,0 +2013,8,22,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,82,1,2019,100,1,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,11,0,1315,-1,0,0 +2013,9,13,5,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1615,14,0,1825,-1,0,0 +2013,7,26,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1508,17,1,1554,7,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,36,1,1607,25,1,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,920,10,0,1235,-3,0,0 +2013,8,24,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,75,1,2046,60,1,0 +2013,9,7,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1630,-9,0,1838,-14,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1658,3,0,2204,8,0,0 +2013,10,27,7,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1110,-1,0,1305,-4,0,0 +2013,8,31,6,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,815,-2,0,1305,-17,0,0 +2013,8,1,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1752,19,1,2010,61,1,0 +2013,5,5,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,605,0,0,755,-11,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1440,32,1,1713,22,1,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2030,-3,0,2135,2,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1201,0,0,1317,-21,0,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1310,2,0,1505,-4,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,56,1,1605,34,1,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1005,-5,0,1110,-7,0,0 +2013,5,16,4,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,6,0,845,-4,0,0 +2013,5,21,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,56,1,2200,47,1,0 +2013,8,6,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,730,-2,0,845,7,0,0 +2013,6,4,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1411,-12,0,1740,-16,0,0 +2013,9,2,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1953,-5,0,2115,-2,0,0 +2013,8,30,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1316,49,1,1524,32,1,0 +2013,4,23,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1200,5,0,1305,-2,0,0 +2013,4,13,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-7,0,851,-15,0,0 +2013,10,18,5,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,545,-6,0,858,6,0,0 +2013,10,24,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1520,0,0,2115,0,0,0 +2013,10,19,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,711,-4,0,1014,-11,0,0 +2013,6,5,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1045,-3,0,1106,-13,0,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1755,-5,0,2035,-1,0,0 +2013,6,11,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,30,1,1455,10,0,0 +2013,10,13,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,850,2,0,910,9,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,0,0,1157,-2,0,0 +2013,5,28,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,2058,-9,0,0 +2013,7,7,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1235,51,1,2025,64,1,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1017,-1,0,1324,-8,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1525,13,0,1640,2,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,645,-4,0,900,-21,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,6,0,935,-6,0,0 +2013,10,5,6,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-13,0,2037,-33,0,0 +2013,10,31,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-7,0,753,-15,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,40,1,1355,30,1,0 +2013,6,19,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2135,9,0,2225,6,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1210,9,0,1315,45,1,0 +2013,8,14,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-7,0,712,-9,0,0 +2013,9,17,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1245,30,1,1325,35,1,0 +2013,6,27,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1655,40,1,1805,26,1,0 +2013,8,4,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1730,-7,0,1940,-8,0,0 +2013,6,28,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,652,0,0,748,71,1,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-4,0,950,-13,0,0 +2013,9,3,2,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-6,0,1655,0,0,0 +2013,7,7,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1145,-6,0,1155,-14,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-2,0,919,0,0,0 +2013,7,10,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,-6,0,1253,-18,0,0 +2013,8,19,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,952,-5,0,1136,-8,0,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,820,0,0,1020,6,0,0 +2013,10,15,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1611,-1,0,1702,3,0,0 +2013,8,23,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1815,54,1,1910,54,1,0 +2013,10,1,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,80,1,1825,74,1,0 +2013,8,21,3,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,9,0,1810,5,0,0 +2013,10,21,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,659,-5,0,919,-9,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1650,-4,0,1805,-14,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1415,26,1,2258,-1,0,0 +2013,9,26,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2055,6,0,2304,-3,0,0 +2013,8,27,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1855,-4,0,2050,-7,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,943,3,0,1054,-10,0,0 +2013,7,9,2,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,949,-6,0,1130,-9,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-2,0,901,-7,0,0 +2013,8,9,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-2,0,1556,57,1,0 +2013,8,28,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,638,-10,0,930,-35,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1430,-4,0,1520,-8,0,0 +2013,10,2,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,-2,0,1654,-9,0,0 +2013,8,8,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1715,19,1,2026,18,1,0 +2013,6,10,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1312,208,1,1552,203,1,0 +2013,5,7,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1220,0,0,1410,-15,0,0 +2013,6,4,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,0,0,1728,-6,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,915,23,1,1100,11,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,820,-17,0,0 +2013,4,19,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1010,-4,0,1243,-16,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,-5,0,2045,-14,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2000,287,1,2208,285,1,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1006,10,0,1158,-3,0,0 +2013,6,10,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1359,0,0,1724,-32,0,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,-6,0,1155,-11,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1005,17,1,1115,12,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1820,0,0,2040,-15,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1340,17,1,1445,7,0,0 +2013,10,14,1,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1727,182,1,1806,190,1,0 +2013,6,18,2,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-2,0,1950,-14,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1140,8,0,1359,2,0,0 +2013,10,19,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,743,-14,0,1040,-15,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1225,57,1,1330,45,1,0 +2013,7,2,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1135,-5,0,1230,-13,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1117,-4,0,1649,-20,0,0 +2013,8,30,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,830,-3,0,935,-11,0,0 +2013,7,28,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,27,1,759,13,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,20,1,855,15,1,0 +2013,10,6,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1000,86,1,1319,85,1,0 +2013,5,23,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,23,1,1818,11,0,0 +2013,10,7,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-8,0,1923,-14,0,0 +2013,10,28,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1524,-2,0,1647,-11,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1630,3,0,1840,-3,0,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1719,-1,0,1855,-11,0,0 +2013,8,28,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-3,0,1806,15,1,0 +2013,8,23,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1935,-12,0,2110,4,0,0 +2013,7,11,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2005,-3,0,2210,-7,0,0 +2013,6,8,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,955,46,1,1115,37,1,0 +2013,4,10,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-1,0,915,-12,0,0 +2013,7,7,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,2,0,1942,18,1,0 +2013,9,25,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2125,-13,0,2230,-31,0,0 +2013,6,7,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,700,-4,0,903,7,0,0 +2013,6,5,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-3,0,654,-5,0,0 +2013,9,30,1,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,605,-4,0,910,-18,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1200,-3,0,1405,-5,0,0 +2013,8,20,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1810,-5,0,1933,-13,0,0 +2013,4,15,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1830,-3,0,1957,-3,0,0 +2013,9,28,6,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-6,0,758,-7,0,0 +2013,6,27,4,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,14,0,1903,3,0,0 +2013,5,9,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,849,-5,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-2,0,2326,-13,0,0 +2013,5,19,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1415,-7,0,1656,13,0,0 +2013,7,8,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-4,0,1214,-6,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,4,0,1034,-2,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1133,-2,0,1451,-13,0,0 +2013,8,25,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,700,-1,0,947,-7,0,0 +2013,10,25,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-1,0,925,-4,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2114,-2,0,2359,11,0,0 +2013,8,2,5,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-5,0,1332,-12,0,0 +2013,9,2,1,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1730,14,0,1910,10,0,0 +2013,8,10,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,515,25,1,848,20,1,0 +2013,9,14,6,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1705,0,0,2021,-21,0,0 +2013,8,20,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1118,-3,0,1421,-27,0,0 +2013,5,24,5,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2150,35,1,542,31,1,0 +2013,4,26,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,2,0,1655,-7,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,15,1,614,18,1,0 +2013,6,29,6,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,15,1,549,12,0,0 +2013,7,28,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1321,74,1,1409,64,1,0 +2013,8,26,1,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,6,0,1855,-5,0,0 +2013,9,30,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1504,-1,0,1727,-6,0,0 +2013,10,31,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2045,2,0,2318,-7,0,0 +2013,6,11,2,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1853,-6,0,2201,16,1,0 +2013,7,10,3,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,0,0,1129,-3,0,0 +2013,6,26,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1330,17,1,1425,15,1,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1200,0,0,1325,-12,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1942,-5,0,2041,-23,0,0 +2013,7,29,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1620,279,1,1728,292,1,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,750,6,0,905,-1,0,0 +2013,6,9,7,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-3,0,715,-11,0,0 +2013,6,16,7,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1645,-21,0,0 +2013,7,21,7,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,39,1,1722,26,1,0 +2013,9,2,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1516,18,1,1630,15,1,0 +2013,5,29,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,-2,0,1030,8,0,0 +2013,8,16,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1621,-5,0,1828,0,0,0 +2013,6,11,2,OO,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-7,0,854,-7,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,1,0,1630,4,0,0 +2013,6,5,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,13,0,1620,2,0,0 +2013,8,7,3,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1711,46,1,2039,61,1,0 +2013,9,12,4,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1656,188,1,1856,184,1,0 +2013,10,5,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1630,-3,0,1855,-15,0,0 +2013,9,26,4,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-10,0,2010,-9,0,0 +2013,10,3,4,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,810,149,1,1111,139,1,0 +2013,8,3,6,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1115,-6,0,1330,-7,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,905,4,0,1025,1,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,-6,0,1545,-7,0,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,0,0,851,-13,0,0 +2013,8,28,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,2100,-5,0,0 +2013,5,10,5,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,745,-13,0,0 +2013,9,18,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,-3,0,1505,-22,0,0 +2013,7,13,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,100,1,2310,79,1,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1625,-2,0,1920,7,0,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1241,0,0,1516,3,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1625,-1,0,1740,-1,0,0 +2013,7,7,7,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1820,269,1,2048,287,1,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1835,7,0,2100,4,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,0,0,1130,-19,0,0 +2013,8,25,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,5,0,1512,-9,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1410,2,0,1745,2,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,2,0,1455,6,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1451,-5,0,1559,-11,0,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1124,0,,1246,0,1,1 +2013,7,24,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,28,1,1315,24,1,0 +2013,4,7,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,825,-7,0,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,3,0,1947,1,0,0 +2013,5,27,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-5,0,1500,-4,0,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-11,0,2320,-15,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1610,3,0,1720,-6,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1101,-4,0,1301,-2,0,0 +2013,9,12,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,94,1,1205,84,1,0 +2013,5,1,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,650,14,0,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1320,4,0,1530,13,0,0 +2013,9,14,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1300,15,1,1355,13,0,0 +2013,8,29,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1158,-4,0,1327,-23,0,0 +2013,10,7,1,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,714,-4,0,1030,-19,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,131,1,2000,121,1,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1440,41,1,1715,35,1,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2210,-2,0,2340,-5,0,0 +2013,8,22,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,7,0,1508,-4,0,0 +2013,10,29,2,AA,10529,Bradley International,Hartford,CT,12892,Los Angeles International,Los Angeles,CA,920,225,1,1235,225,1,0 +2013,6,22,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-1,0,950,-1,0,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,19,1,1655,14,0,0 +2013,10,28,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,6,0,1015,14,0,0 +2013,4,13,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,-3,0,930,-14,0,0 +2013,10,6,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-5,0,809,-10,0,0 +2013,8,26,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2015,8,0,2140,8,0,0 +2013,9,15,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1253,-9,0,0 +2013,7,9,2,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,600,-2,0,729,-18,0,0 +2013,5,29,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1125,-7,0,1200,-2,0,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1420,-6,0,1559,-2,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2045,70,1,2205,69,1,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-4,0,1909,-18,0,0 +2013,9,11,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1240,-1,0,1350,-6,0,0 +2013,5,31,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,7,0,1405,0,0,0 +2013,10,11,5,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1436,0,,1440,0,1,1 +2013,6,19,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,39,1,947,45,1,0 +2013,4,6,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1810,-9,0,1939,-7,0,0 +2013,9,9,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-5,0,2057,-6,0,0 +2013,6,12,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1201,-3,0,1314,-16,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1945,0,,2235,0,1,1 +2013,5,22,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,34,1,1344,31,1,0 +2013,7,17,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,610,-8,0,739,4,0,0 +2013,9,4,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1934,4,0,2054,-7,0,0 +2013,6,1,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,6,0,1712,-5,0,0 +2013,6,13,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1830,1,0,2015,-12,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1535,-5,0,1814,-12,0,0 +2013,10,27,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,853,-5,0,1045,-27,0,0 +2013,6,14,5,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,615,0,0,645,-1,0,0 +2013,7,3,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1457,131,1,1609,118,1,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,850,3,0,1115,13,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1725,-5,0,1840,-27,0,0 +2013,9,25,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,-2,0,1530,-2,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,87,1,1508,90,1,0 +2013,4,29,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,620,13,0,715,5,0,0 +2013,5,1,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,14,0,1845,0,0,0 +2013,5,13,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1000,24,1,1105,18,1,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,-1,0,2225,-1,0,0 +2013,9,13,5,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1448,39,1,1601,50,1,0 +2013,7,14,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,737,-8,0,830,-12,0,0 +2013,4,10,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-5,0,1832,-27,0,0 +2013,4,13,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2028,11,0,2156,0,0,0 +2013,4,16,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1905,-10,0,2107,-3,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1018,-7,0,1406,-18,0,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,-1,0,1840,-8,0,0 +2013,10,31,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1120,36,1,1130,30,1,0 +2013,9,25,3,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-1,0,1910,-19,0,0 +2013,4,11,4,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2255,0,0,705,0,0,0 +2013,5,7,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1550,10,0,1804,-11,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1917,-2,0,2055,-22,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1814,-9,0,2109,38,1,0 +2013,5,16,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-1,0,740,-11,0,0 +2013,6,28,5,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-2,0,2145,16,1,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,0,0,2346,0,0,0 +2013,5,10,5,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-10,0,759,-13,0,0 +2013,9,26,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,3,0,1735,0,0,0 +2013,8,8,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-1,0,701,-8,0,0 +2013,4,10,3,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2315,252,1,647,231,1,0 +2013,6,13,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1824,39,1,2135,57,1,0 +2013,6,25,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,705,4,0,935,0,0,0 +2013,5,6,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1920,-1,0,2045,-9,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1010,1,0,1110,11,0,0 +2013,9,7,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-8,0,1019,-16,0,0 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,610,-1,0,835,2,0,0 +2013,10,9,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1024,-4,0,1413,0,0,0 +2013,4,26,5,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1620,20,1,1900,7,0,0 +2013,6,6,4,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1815,2,0,2135,12,0,0 +2013,9,7,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,715,-7,0,735,-11,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1135,-1,0,1245,-10,0,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-9,0,1810,-15,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2220,-8,0,2340,5,0,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1714,-4,0,1855,-14,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2047,-9,0,2213,-19,0,0 +2013,5,13,1,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2003,-8,0,2347,-1,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,0,0,950,-4,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1315,-10,0,1426,-7,0,0 +2013,8,4,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-2,0,1648,9,0,0 +2013,10,25,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2155,-7,0,2247,-6,0,0 +2013,6,19,3,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,600,-5,0,729,-7,0,0 +2013,7,8,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,40,1,1344,44,1,0 +2013,5,27,1,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1900,-6,0,2155,-38,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1315,-2,0,1705,9,0,0 +2013,5,31,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,86,1,2104,65,1,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1425,-4,0,1701,-38,0,0 +2013,9,9,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,1,0,1715,-5,0,0 +2013,9,22,7,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1507,-23,0,0 +2013,8,2,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,18,1,2130,28,1,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1000,-6,0,1147,3,0,0 +2013,6,10,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-4,0,941,-1,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1815,2,0,2030,-3,0,0 +2013,4,25,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-4,0,715,-8,0,0 +2013,4,16,2,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1500,15,1,1812,-3,0,0 +2013,6,9,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1231,-15,0,0 +2013,6,2,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,3,0,910,-21,0,0 +2013,6,25,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,630,-1,0,725,-2,0,0 +2013,6,22,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,30,1,1915,33,1,0 +2013,7,18,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,221,1,710,227,1,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1725,10,0,1850,9,0,0 +2013,5,25,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,130,1,1935,105,1,0 +2013,10,3,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,5,0,754,15,1,0 +2013,7,26,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,63,1,1135,54,1,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,23,1,2310,6,0,0 +2013,10,10,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,-4,0,1115,11,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1955,25,1,2145,26,1,0 +2013,6,22,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,2020,70,1,2345,69,1,0 +2013,7,31,3,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1400,-4,0,1652,-17,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,63,1,1625,100,1,0 +2013,10,5,6,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,559,87,1,645,89,1,0 +2013,9,6,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,825,-5,0,850,-3,0,0 +2013,4,12,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,12,0,1635,8,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1625,-4,0,2001,-9,0,0 +2013,10,6,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-7,0,2129,-3,0,0 +2013,9,20,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,750,10,0,900,-2,0,0 +2013,4,4,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1210,11,0,1509,4,0,0 +2013,10,29,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1705,-12,0,1950,-17,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1650,7,0,1820,-1,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,625,3,0,825,-3,0,0 +2013,5,2,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1215,-3,0,1320,-7,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1720,15,1,1843,18,1,0 +2013,6,4,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-9,0,851,-12,0,0 +2013,8,14,3,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,2,0,1630,-22,0,0 +2013,7,10,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,-8,0,1155,-13,0,0 +2013,8,26,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,-8,0,1122,-13,0,0 +2013,9,27,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1159,0,0,1524,35,1,0 +2013,7,30,2,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,1,0,1810,-7,0,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,-4,0,1635,-19,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2208,-3,0,2,-13,0,0 +2013,9,14,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-7,0,1638,-2,0,0 +2013,4,18,4,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,-6,0,2055,-13,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1839,27,1,2033,42,1,0 +2013,9,8,7,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,827,-9,0,932,-16,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2055,0,0,5,-8,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,555,-3,0,715,-11,0,0 +2013,4,23,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1255,-1,0,1420,-8,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,5,0,1856,-12,0,0 +2013,9,15,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1825,7,0,2140,-4,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1855,20,1,2320,16,1,0 +2013,6,10,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-3,0,1655,-13,0,0 +2013,5,5,7,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-8,0,1417,-12,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,725,-3,0,830,-10,0,0 +2013,9,3,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1610,-2,0,1800,-26,0,0 +2013,10,7,1,YV,13342,General Mitchell International,Milwaukee,WI,11057,Charlotte Douglas International,Charlotte,NC,1625,63,1,1925,58,1,0 +2013,9,24,2,FL,13244,Memphis International,Memphis,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1609,-1,0,1915,-10,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,725,-2,0,906,-3,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1825,0,0,2340,-14,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1212,-8,0,1350,-27,0,0 +2013,7,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1335,17,1,1445,11,0,0 +2013,5,4,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1654,3,0,2005,-40,0,0 +2013,6,6,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,752,-6,0,952,-4,0,0 +2013,9,19,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1625,31,1,1755,15,1,0 +2013,8,18,7,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1035,-1,0,1645,-7,0,0 +2013,5,25,6,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2055,3,0,531,-15,0,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,-1,0,1600,-3,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,914,-5,0,1121,-19,0,0 +2013,9,15,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1835,-3,0,1940,-8,0,0 +2013,5,1,3,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2113,27,1,2344,18,1,0 +2013,7,28,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,5,0,1858,-8,0,0 +2013,10,6,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1723,-8,0,1900,-20,0,0 +2013,4,2,2,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1115,-5,0,1231,-8,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1015,11,0,1255,-7,0,0 +2013,4,30,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,5,0,905,3,0,0 +2013,10,13,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-2,0,743,2,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1942,0,,2251,0,1,1 +2013,7,16,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,6,0,1902,-3,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-2,0,1332,-22,0,0 +2013,8,23,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,849,12,0,1030,-10,0,0 +2013,4,17,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,935,-8,0,1040,15,1,0 +2013,5,24,5,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1631,75,1,1835,92,1,0 +2013,7,8,1,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,908,-6,0,1400,6,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,840,-4,0,1030,8,0,0 +2013,10,19,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1128,0,0,0 +2013,7,22,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1530,109,1,1648,99,1,0 +2013,7,28,7,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1921,56,1,2110,53,1,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-3,0,1100,-6,0,0 +2013,9,27,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1004,0,0,0 +2013,5,22,3,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1158,3,0,1804,-2,0,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1721,-2,0,2244,-29,0,0 +2013,6,8,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,6,0,1106,5,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,940,-2,0,1230,-11,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-1,0,1250,-9,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1700,25,1,1828,12,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1005,1,0,1135,-5,0,0 +2013,5,26,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-3,0,1302,-5,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1750,35,1,2335,32,1,0 +2013,7,10,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1600,-5,0,15,28,1,0 +2013,10,6,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-2,0,1823,4,0,0 +2013,5,6,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,705,71,1,755,78,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,755,5,0,915,-6,0,0 +2013,8,5,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,54,1,545,38,1,0 +2013,6,3,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,19,1,1900,29,1,0 +2013,5,16,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,940,20,1,1041,29,1,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1420,-5,0,1840,-4,0,0 +2013,8,28,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,600,-6,0,641,-11,0,0 +2013,5,14,2,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1855,40,1,2223,37,1,0 +2013,9,3,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,46,1,847,41,1,0 +2013,5,9,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1145,-2,0,1404,1,0,0 +2013,7,28,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,1,0,1840,-2,0,0 +2013,9,22,7,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,955,-7,0,1745,-12,0,0 +2013,9,28,6,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,840,0,0,1015,-3,0,0 +2013,5,20,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-2,0,912,-7,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1425,-5,0,1900,-10,0,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,11,0,15,8,0,0 +2013,10,18,5,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-6,0,1858,-22,0,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1335,7,0,1511,-8,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1747,-5,0,1910,-8,0,0 +2013,10,10,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2340,0,0,605,-12,0,0 +2013,5,12,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,-1,0,2020,34,1,0 +2013,4,11,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,9,0,1413,4,0,0 +2013,4,20,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1030,10,0,1250,-18,0,0 +2013,7,21,7,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1946,-4,0,2049,-5,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2027,21,1,2201,16,1,0 +2013,6,11,2,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,934,-4,0,1225,-10,0,0 +2013,10,23,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1425,3,0,1620,-12,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1905,16,1,2059,17,1,0 +2013,7,7,7,OO,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-5,0,1840,-12,0,0 +2013,8,4,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,-6,0,2108,-17,0,0 +2013,10,31,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1300,-17,0,1450,-20,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,820,1,0,915,-4,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,16,1,1641,-4,0,0 +2013,10,21,1,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,14,0,601,10,0,0 +2013,8,29,4,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1303,-3,0,1431,-10,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-5,0,1305,8,0,0 +2013,5,24,5,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,-4,0,1945,8,0,0 +2013,9,27,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-4,0,808,3,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,3,0,1955,-3,0,0 +2013,9,18,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1425,-3,0,1533,-9,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,625,1,0,750,3,0,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2213,14,0,28,19,1,0 +2013,4,9,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2051,-3,0,2124,-2,0,0 +2013,6,21,5,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-10,0,950,-14,0,0 +2013,4,21,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1215,-7,0,1451,0,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,-4,0,1825,-24,0,0 +2013,4,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,912,-1,0,1315,43,1,0 +2013,10,13,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-7,0,1336,-9,0,0 +2013,6,9,7,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-6,0,808,-7,0,0 +2013,6,10,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1330,-3,0,1425,-9,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1222,-5,0,1545,-21,0,0 +2013,10,12,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1125,-29,0,0 +2013,4,21,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1405,46,1,1545,24,1,0 +2013,5,28,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-2,0,849,-2,0,0 +2013,7,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1045,0,0,1325,-12,0,0 +2013,4,19,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,126,1,910,139,1,0 +2013,9,23,1,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-1,0,809,13,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-6,0,1556,-4,0,0 +2013,5,28,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1125,-11,0,0 +2013,10,27,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,0,0,1425,-8,0,0 +2013,8,28,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,1,0,1031,6,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,59,1,2005,66,1,0 +2013,10,15,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1715,41,1,1905,52,1,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-2,0,1450,-11,0,0 +2013,6,18,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,135,1,2200,130,1,0 +2013,6,2,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,58,1,1857,56,1,0 +2013,5,6,1,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1055,-2,0,1525,-4,0,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1905,47,1,55,30,1,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,-3,0,1421,-10,0,0 +2013,8,25,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,19,1,1510,20,1,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1120,-2,0,1239,-12,0,0 +2013,6,9,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-3,0,1945,19,1,0 +2013,5,14,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-7,0,1523,2,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,545,-3,0,835,-10,0,0 +2013,5,11,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,932,-7,0,1236,19,1,0 +2013,5,22,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1545,18,1,1849,-10,0,0 +2013,4,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,-2,0,1030,-10,0,0 +2013,6,8,6,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,73,1,913,88,1,0 +2013,7,1,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1237,24,1,1800,2,0,0 +2013,8,10,6,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,5,0,1927,9,0,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1700,26,1,2000,29,1,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,0,0,2102,-1,0,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1510,-5,0,2048,-17,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2205,90,1,2341,89,1,0 +2013,6,4,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1935,5,0,2100,-1,0,0 +2013,6,12,3,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,-5,0,1258,-9,0,0 +2013,9,25,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,705,-7,0,903,10,0,0 +2013,4,10,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-3,0,1213,-11,0,0 +2013,9,12,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1048,-1,0,1215,14,0,0 +2013,7,3,3,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1850,-3,0,2025,-6,0,0 +2013,10,12,6,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1305,-3,0,1900,-10,0,0 +2013,5,3,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,755,-7,0,1004,-25,0,0 +2013,10,1,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1135,-10,0,1355,-11,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2040,1,0,2245,-14,0,0 +2013,8,4,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1104,-1,0,1233,-2,0,0 +2013,4,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,840,-6,0,935,-10,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,-5,0,2047,27,1,0 +2013,4,10,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-3,0,825,-3,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,850,-4,0,1659,2,0,0 +2013,4,14,7,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1036,2,0,1610,-9,0,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,55,1,2110,7,0,0 +2013,7,26,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,630,-4,0,740,-2,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1115,-4,0,1247,-16,0,0 +2013,7,1,1,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-7,0,1545,-15,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-5,0,805,-9,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1359,-5,0,1511,-18,0,0 +2013,7,25,4,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1640,-8,0,1755,-24,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2100,54,1,2316,46,1,0 +2013,7,12,5,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1655,7,0,1910,-13,0,0 +2013,10,29,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1420,24,1,1625,10,0,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1515,17,1,1655,9,0,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,638,-6,0,1232,26,1,0 +2013,8,4,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,106,1,1122,96,1,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1805,26,1,2040,18,1,0 +2013,10,2,3,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-7,0,1626,-16,0,0 +2013,9,16,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1705,26,1,1825,31,1,0 +2013,4,24,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,108,1,2138,87,1,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,-1,0,30,3,0,0 +2013,4,19,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1400,34,1,2250,40,1,0 +2013,4,24,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-6,0,1453,-29,0,0 +2013,7,28,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1907,91,1,2029,65,1,0 +2013,7,17,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1907,-5,0,2003,-8,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,3,0,1245,-11,0,0 +2013,5,21,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1557,-6,0,0 +2013,4,28,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-2,0,2140,19,1,0 +2013,6,15,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,0,0,1155,2,0,0 +2013,8,6,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1911,51,1,30,55,1,0 +2013,7,31,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1252,6,0,1450,12,0,0 +2013,10,10,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1333,6,0,1435,-4,0,0 +2013,6,5,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1659,-4,0,2310,-12,0,0 +2013,10,23,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-5,0,940,0,0,0 +2013,7,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1007,1,0,1128,2,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-4,0,1920,6,0,0 +2013,5,6,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1829,-6,0,0 +2013,8,25,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2005,67,1,2147,43,1,0 +2013,6,20,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,15,1,2009,16,1,0 +2013,7,20,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1347,-8,0,1400,-14,0,0 +2013,7,20,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,755,0,0,915,-4,0,0 +2013,9,3,2,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-9,0,2045,-13,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,744,-5,0,920,-16,0,0 +2013,10,27,7,EV,12953,LaGuardia,New York,NY,13931,Norfolk International,Norfolk,VA,1545,-5,0,1721,-33,0,0 +2013,10,15,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2340,-5,0,510,-22,0,0 +2013,6,24,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1805,-11,0,2020,0,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1240,-3,0,1356,-19,0,0 +2013,7,15,1,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2110,-5,0,550,-6,0,0 +2013,10,18,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-7,0,900,-21,0,0 +2013,10,10,4,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,-6,0,1830,-25,0,0 +2013,10,28,1,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-4,0,1707,-2,0,0 +2013,5,2,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-1,0,1015,3,0,0 +2013,4,29,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1530,11,0,1650,8,0,0 +2013,8,2,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-1,0,1928,-11,0,0 +2013,8,29,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1915,45,1,2131,47,1,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1735,43,1,2255,18,1,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2251,30,1,28,7,0,0 +2013,7,14,7,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,930,-2,0,1340,3,0,0 +2013,6,30,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,193,1,1237,185,1,0 +2013,5,22,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,-1,0,951,1,0,0 +2013,7,18,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,610,-1,0,929,-15,0,0 +2013,9,27,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,1006,10,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,2,0,2352,15,1,0 +2013,7,13,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,45,18,1,645,25,1,0 +2013,7,22,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1615,0,0,1703,-1,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1739,-3,0,2000,-29,0,0 +2013,10,7,1,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1800,58,1,2005,50,1,0 +2013,5,7,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,726,55,1,920,25,1,0 +2013,5,29,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1150,49,1,1305,55,1,0 +2013,9,1,7,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1915,-11,0,2020,-18,0,0 +2013,4,28,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1530,-7,0,1810,-28,0,0 +2013,8,3,6,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1225,40,1,1818,17,1,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,-2,0,2125,-14,0,0 +2013,7,22,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,9,0,1014,27,1,0 +2013,4,16,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1130,-9,0,1132,-13,0,0 +2013,8,22,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,17,1,1625,21,1,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1057,3,0,1109,-8,0,0 +2013,5,15,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-4,0,726,-3,0,0 +2013,8,9,5,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,855,2,0,1037,-1,0,0 +2013,8,16,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,850,8,0,1115,9,0,0 +2013,9,14,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1020,0,,1211,0,1,1 +2013,9,20,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1842,0,0,1949,-13,0,0 +2013,7,21,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,4,0,1730,10,0,0 +2013,4,20,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1644,17,1,1800,0,0,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1508,34,1,1720,26,1,0 +2013,9,5,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,606,-4,0,730,-7,0,0 +2013,4,7,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,-2,0,2110,-10,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1125,-7,0,1515,-22,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-1,0,915,-6,0,0 +2013,6,7,5,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-2,0,1655,-12,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,-3,0,1555,-2,0,0 +2013,10,16,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,500,-7,0,754,-2,0,0 +2013,6,26,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,97,1,1853,75,1,0 +2013,10,1,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-5,0,1140,-16,0,0 +2013,5,4,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1830,-5,0,2105,-8,0,0 +2013,5,20,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,737,0,,848,0,1,1 +2013,10,11,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,751,-11,0,0 +2013,5,19,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-2,0,1751,-11,0,0 +2013,7,21,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1101,-4,0,1246,-16,0,0 +2013,6,26,3,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1345,83,1,1535,75,1,0 +2013,5,28,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,-1,0,1945,-10,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1525,16,1,1720,-1,0,0 +2013,9,7,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,3,0,2030,-15,0,0 +2013,5,24,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1605,-7,0,1740,-11,0,0 +2013,5,30,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1045,-3,0,1106,-7,0,0 +2013,8,20,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,720,1,0,1019,-15,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1220,-8,0,1509,-7,0,0 +2013,10,20,7,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1208,0,0,1449,-17,0,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1855,46,1,2025,35,1,0 +2013,5,5,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,2,0,1926,-8,0,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1726,-1,0,1916,1,0,0 +2013,8,6,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,855,4,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,58,1,1855,46,1,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,830,-1,0,1000,-10,0,0 +2013,4,9,2,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,83,1,1245,104,1,0 +2013,7,22,1,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,-4,0,1205,-8,0,0 +2013,6,30,7,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1455,48,1,1710,39,1,0 +2013,9,12,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,722,-15,0,0 +2013,6,21,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-2,0,733,0,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1215,-1,0,1500,-14,0,0 +2013,6,11,2,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1719,1,0,1915,-14,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1700,0,0,1935,13,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,6,0,2102,5,0,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-5,0,949,6,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1945,94,1,110,90,1,0 +2013,10,22,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,929,-10,0,0 +2013,7,24,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,905,-2,0,1020,-4,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1500,-5,0,1710,-22,0,0 +2013,5,22,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,630,15,1,825,9,0,0 +2013,4,30,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1935,-10,0,2111,-17,0,0 +2013,5,24,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-2,0,1630,2,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1020,7,0,1110,2,0,0 +2013,7,23,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,0,,1415,0,1,1 +2013,7,19,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-3,0,1120,-10,0,0 +2013,9,29,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-11,0,1715,-13,0,0 +2013,9,11,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1840,0,0,2000,-5,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,955,0,0,1208,2,0,0 +2013,5,7,2,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,923,19,1,1046,3,0,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,845,12,0,1653,7,0,0 +2013,9,10,2,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,115,-10,0,515,-28,0,0 +2013,5,27,1,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1550,-2,0,1905,-13,0,0 +2013,4,21,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,940,4,0,1035,-2,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,655,-6,0,815,-28,0,0 +2013,5,7,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,605,-2,0,750,-4,0,0 +2013,8,8,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,3,0,932,14,0,0 +2013,5,22,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,816,-24,0,0 +2013,5,29,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1555,0,0,1629,12,0,0 +2013,7,2,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1935,-3,0,2107,-15,0,0 +2013,4,20,6,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,5,0,1043,8,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1910,40,1,2050,60,1,0 +2013,8,18,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1840,-1,0,2100,8,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1645,-4,0,2015,12,0,0 +2013,5,17,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1448,4,0,1527,8,0,0 +2013,9,16,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1925,20,1,2055,7,0,0 +2013,9,5,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,-6,0,1758,-37,0,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,929,24,1,1214,37,1,0 +2013,6,12,3,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1031,-6,0,1217,-10,0,0 +2013,4,3,3,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,1030,4,0,1630,-5,0,0 +2013,7,28,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1625,21,1,1735,9,0,0 +2013,7,27,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,24,1,1936,36,1,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,944,-9,0,1205,-10,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2040,20,1,2303,1,0,0 +2013,5,14,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-5,0,1636,-14,0,0 +2013,7,2,2,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1507,3,0,1612,3,0,0 +2013,6,14,5,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1954,0,0,2103,-9,0,0 +2013,5,7,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1940,0,0,2220,5,0,0 +2013,7,9,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,6,0,2025,6,0,0 +2013,9,12,4,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1325,30,1,1545,0,1,1 +2013,6,12,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,0,0,1025,-13,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1255,25,1,1541,11,0,0 +2013,5,15,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,945,-7,0,1701,5,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,1,0,2009,10,0,0 +2013,9,6,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1907,44,1,38,43,1,0 +2013,6,18,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1020,-1,0,1208,-8,0,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,-5,0,2357,-14,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1935,-1,0,2045,-7,0,0 +2013,4,9,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-9,0,28,24,1,0 +2013,6,25,2,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,40,1,1952,34,1,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-5,0,1947,-15,0,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1725,132,1,1825,130,1,0 +2013,7,11,4,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-4,0,1334,2,0,0 +2013,5,20,1,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,645,2,0,835,-2,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,-3,0,1145,-9,0,0 +2013,8,19,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-5,0,1647,-21,0,0 +2013,5,21,2,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,800,28,1,1024,-3,0,0 +2013,6,12,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1020,-1,0,1150,-2,0,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1317,-4,0,1632,-13,0,0 +2013,10,18,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,605,-2,0,720,0,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,710,29,1,815,22,1,0 +2013,8,25,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-8,0,1450,-17,0,0 +2013,5,2,4,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-3,0,1210,-12,0,0 +2013,4,12,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1315,1,0,1611,10,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1530,75,1,1850,135,1,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1643,-1,0,1800,-7,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1715,-2,0,2240,-16,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1046,-4,0,1148,-14,0,0 +2013,9,21,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1030,7,0,1340,-9,0,0 +2013,6,29,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,2,0,1020,-12,0,0 +2013,10,16,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1500,-10,0,2256,-21,0,0 +2013,8,14,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,26,1,1555,15,1,0 +2013,10,7,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,5,0,1931,-6,0,0 +2013,8,6,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1850,24,1,2005,16,1,0 +2013,8,24,6,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,925,-9,0,1750,12,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,820,33,1,1015,39,1,0 +2013,6,25,2,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1450,29,1,1643,10,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-6,0,1712,-13,0,0 +2013,6,18,2,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,22,1,1910,12,0,0 +2013,7,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1035,5,0,1145,-2,0,0 +2013,9,22,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1555,26,1,1735,2,0,0 +2013,4,23,2,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2115,-2,0,728,-6,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,-2,0,1321,-5,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-5,0,1640,11,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,731,-2,0,847,-3,0,0 +2013,4,10,3,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,730,-1,0,1030,-3,0,0 +2013,6,21,5,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,615,3,0,830,1,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1855,9,0,2040,10,0,0 +2013,7,30,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,800,15,1,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,10,0,1510,-4,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,-2,0,1205,-14,0,0 +2013,9,29,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1602,24,1,1649,43,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1240,74,1,1340,67,1,0 +2013,6,3,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-5,0,930,-7,0,0 +2013,6,21,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-8,0,1446,-25,0,0 +2013,9,24,2,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1715,20,1,1835,12,0,0 +2013,6,22,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1532,-1,0,1757,-11,0,0 +2013,5,9,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,73,1,1730,44,1,0 +2013,6,22,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,0,0,1555,-10,0,0 +2013,7,22,1,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1255,0,0,1430,-1,0,0 +2013,5,12,7,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1250,11,0,1405,0,0,0 +2013,6,3,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1819,1,0,1904,16,1,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2024,71,1,2119,75,1,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,-1,0,1003,-17,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1230,-1,0,1605,-14,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1215,-1,0,1545,-5,0,0 +2013,7,12,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,10,0,643,0,0,0 +2013,9,17,2,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1736,-12,0,2030,-14,0,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-3,0,1320,-3,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1624,7,0,1842,-14,0,0 +2013,6,17,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-4,0,1725,-11,0,0 +2013,10,3,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,38,1,1625,26,1,0 +2013,4,26,5,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,11,0,2047,5,0,0 +2013,5,11,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-3,0,1925,-9,0,0 +2013,4,2,2,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1130,6,0,1410,-12,0,0 +2013,6,23,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,60,1,2149,60,1,0 +2013,6,26,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1537,50,1,1752,48,1,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-3,0,1912,-12,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1243,25,1,1813,12,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1855,18,1,2110,0,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1345,35,1,1440,24,1,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,730,-2,0,1115,-7,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,56,1,2145,45,1,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,0,0,730,-16,0,0 +2013,10,28,1,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,810,-2,0,1055,-9,0,0 +2013,7,31,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,-2,0,1608,3,0,0 +2013,5,12,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-1,0,2151,0,0,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1730,2,0,1917,8,0,0 +2013,6,19,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1856,-18,0,2042,-13,0,0 +2013,9,7,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,850,2,0,1055,-4,0,0 +2013,5,1,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,-2,0,1920,-21,0,0 +2013,7,30,2,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1546,-6,0,1648,-23,0,0 +2013,6,7,5,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,0,0,1611,-5,0,0 +2013,8,16,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,-4,0,1730,9,0,0 +2013,6,14,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-6,0,2015,-9,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1320,42,1,1620,31,1,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,720,-5,0,930,-32,0,0 +2013,7,7,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2155,-2,0,2323,-26,0,0 +2013,4,15,1,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,646,-9,0,1050,-25,0,0 +2013,7,21,7,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,800,-7,0,1131,-13,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,26,1,1750,6,0,0 +2013,9,27,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,1,0,1652,5,0,0 +2013,7,24,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,3,0,825,25,1,0 +2013,5,16,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1045,-6,0,1201,-10,0,0 +2013,4,25,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,850,0,0,900,3,0,0 +2013,8,25,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-8,0,900,-19,0,0 +2013,10,12,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,15,1,2041,-11,0,0 +2013,10,29,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1855,-1,0,2000,11,0,0 +2013,4,8,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,847,-6,0,1145,-21,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,0,0,2058,14,0,0 +2013,10,22,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,0,,1358,0,1,1 +2013,4,30,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1600,-14,0,1745,-22,0,0 +2013,9,18,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1745,-3,0,2000,8,0,0 +2013,7,9,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,83,1,1828,96,1,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2140,70,1,2320,81,1,0 +2013,5,9,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,-5,0,929,1,0,0 +2013,10,27,7,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1928,-6,0,2048,-13,0,0 +2013,9,4,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1034,-2,0,1820,-16,0,0 +2013,7,25,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,48,1,1641,61,1,0 +2013,6,16,7,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1640,52,1,1813,21,1,0 +2013,9,30,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1605,7,0,1715,-4,0,0 +2013,5,31,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,-3,0,1605,-9,0,0 +2013,10,26,6,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1525,25,1,2020,26,1,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,940,10,0,1605,5,0,0 +2013,4,1,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1803,-2,0,1932,1,0,0 +2013,8,2,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,18,1,1003,40,1,0 +2013,10,3,4,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1410,-8,0,2220,-2,0,0 +2013,8,7,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1225,-1,0,1345,-6,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1115,-3,0,1304,-12,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1045,2,0,1330,-6,0,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,959,43,1,1631,26,1,0 +2013,7,2,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-2,0,1955,0,0,0 +2013,7,1,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,700,-1,0,815,-10,0,0 +2013,4,1,1,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1350,0,0,1643,-3,0,0 +2013,6,11,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-5,0,1156,-16,0,0 +2013,6,10,1,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,4,0,1145,-1,0,0 +2013,6,3,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,800,201,1,940,197,1,0 +2013,5,18,6,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,-1,0,2151,-20,0,0 +2013,5,9,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1122,-6,0,1256,-4,0,0 +2013,6,8,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-4,0,1625,-27,0,0 +2013,4,1,1,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1945,-1,0,2100,-11,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,24,1,2124,13,0,0 +2013,5,1,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1620,-10,0,1800,-6,0,0 +2013,6,4,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2030,-2,0,2145,-13,0,0 +2013,7,24,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1413,41,1,1813,22,1,0 +2013,7,4,4,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1800,-9,0,2012,-14,0,0 +2013,4,22,1,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1208,-1,0,1746,-10,0,0 +2013,5,26,7,WN,15376,Tucson International,Tucson,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1005,-6,0,1205,-10,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,17,1,1455,0,0,0 +2013,8,6,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,758,16,1,0 +2013,10,3,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,0,0,2005,-9,0,0 +2013,5,6,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1506,-9,0,1720,-17,0,0 +2013,5,28,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,600,-5,0,745,-14,0,0 +2013,4,20,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1145,-6,0,1323,-21,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-4,0,1438,-3,0,0 +2013,7,25,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,605,0,,710,0,1,1 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-4,0,1335,-15,0,0 +2013,9,23,1,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,818,-8,0,930,-7,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,605,-2,0,735,-4,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1940,7,0,2210,-6,0,0 +2013,4,3,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1400,-10,0,1518,-23,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,21,1,1650,44,1,0 +2013,6,8,6,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1828,-3,0,2110,-8,0,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,1,0,2010,-15,0,0 +2013,8,2,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1905,12,0,2035,65,1,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-3,0,1103,-11,0,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1345,8,0,1545,10,0,0 +2013,7,27,6,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1014,0,0,1134,-15,0,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2220,-3,0,2305,0,0,0 +2013,9,1,7,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2035,-4,0,2220,-21,0,0 +2013,8,31,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1530,33,1,1735,30,1,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1550,4,0,1820,-2,0,0 +2013,8,7,3,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,804,-3,0,959,4,0,0 +2013,4,24,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,-9,0,1555,-8,0,0 +2013,5,16,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1743,-6,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1040,5,0,1425,9,0,0 +2013,4,10,3,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-2,0,1235,-5,0,0 +2013,8,20,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1211,-6,0,1405,-6,0,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,930,2,0,1135,-5,0,0 +2013,7,14,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1725,55,1,1950,44,1,0 +2013,7,5,5,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,-11,0,2019,-20,0,0 +2013,9,9,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1850,8,0,2010,12,0,0 +2013,5,24,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,847,69,1,1015,61,1,0 +2013,4,30,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1815,-4,0,1840,-11,0,0 +2013,6,30,7,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,700,-3,0,1155,-15,0,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1355,-4,0,1445,-7,0,0 +2013,5,17,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-2,0,950,-18,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1610,5,0,1755,-4,0,0 +2013,8,19,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1935,-8,0,1955,-22,0,0 +2013,9,4,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1517,-22,0,0 +2013,7,25,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,0,0,1035,-7,0,0 +2013,4,12,5,OO,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1000,9,0,1202,16,1,0 +2013,5,28,2,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,-3,0,1230,-5,0,0 +2013,6,21,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2209,40,1,2326,45,1,0 +2013,9,14,6,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1103,149,1,1245,120,1,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,-2,0,1625,-2,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,929,11,0,1132,7,0,0 +2013,8,28,3,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1606,13,0,1624,8,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1440,14,0,1550,16,1,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,2,0,1428,-5,0,0 +2013,8,8,4,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,36,1,2256,32,1,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,825,-1,0,1112,-10,0,0 +2013,8,21,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1853,-7,0,1907,-3,0,0 +2013,10,11,5,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1522,21,1,1605,17,1,0 +2013,8,1,4,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,711,-3,0,805,-16,0,0 +2013,8,8,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-5,0,1329,-16,0,0 +2013,5,20,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1705,3,0,1910,-6,0,0 +2013,8,15,4,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2130,-3,0,2359,-8,0,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2015,18,1,2258,37,1,0 +2013,4,3,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1440,-9,0,1606,-19,0,0 +2013,8,21,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2155,-6,0,543,-13,0,0 +2013,8,17,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1900,-5,0,2135,-1,0,0 +2013,7,7,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-4,0,1341,-15,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-1,0,1104,-2,0,0 +2013,5,12,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,-5,0,2145,-13,0,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1855,-7,0,2222,-12,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,817,-4,0,1054,-8,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,14,0,1645,-1,0,0 +2013,6,22,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,945,-1,0,1335,-9,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1530,-5,0,1753,-15,0,0 +2013,9,10,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2109,-5,0,2218,-14,0,0 +2013,4,4,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1026,79,1,1137,62,1,0 +2013,4,15,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,18,1,1545,21,1,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1845,-7,0,2125,-10,0,0 +2013,5,30,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1136,-7,0,1245,-17,0,0 +2013,7,12,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,819,-1,0,930,8,0,0 +2013,8,15,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-2,0,2056,3,0,0 +2013,4,26,5,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,842,-4,0,1025,-6,0,0 +2013,10,4,5,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1900,-4,0,2025,-16,0,0 +2013,5,12,7,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-4,0,1936,-17,0,0 +2013,5,16,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,650,-6,0,834,-18,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,930,-4,0,1100,-12,0,0 +2013,6,24,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-5,0,2025,-16,0,0 +2013,7,11,4,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1725,1,0,1950,-10,0,0 +2013,5,31,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1231,-4,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-4,0,1849,-16,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1355,22,1,1649,23,1,0 +2013,10,14,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1516,-22,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,9,0,2004,27,1,0 +2013,4,16,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2125,-3,0,2220,0,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1438,3,0,1628,58,1,0 +2013,9,10,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1155,-6,0,1805,-13,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,715,-2,0,1037,-13,0,0 +2013,7,5,5,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1115,-1,0,1405,-2,0,0 +2013,8,8,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-7,0,805,-17,0,0 +2013,4,29,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,539,-7,0,718,-7,0,0 +2013,7,18,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1114,-4,0,1259,-24,0,0 +2013,8,27,2,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1555,-6,0,1739,-22,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1810,-6,0,1905,-13,0,0 +2013,10,9,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1910,70,1,2030,52,1,0 +2013,7,17,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,826,-30,0,0 +2013,7,19,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,725,-1,0,1020,-7,0,0 +2013,10,19,6,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1951,-9,0,2057,-3,0,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,-2,0,1155,-12,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,-5,0,2018,-16,0,0 +2013,9,27,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,-2,0,1323,-13,0,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1128,41,1,1324,71,1,0 +2013,5,28,2,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2047,20,1,2235,-11,0,0 +2013,8,10,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-9,0,1208,-15,0,0 +2013,6,5,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,38,1,1010,24,1,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2005,32,1,2213,20,1,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1640,15,1,1835,13,0,0 +2013,4,12,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1805,-6,0,1932,-13,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,-5,0,750,-7,0,0 +2013,7,6,6,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,750,-2,0,854,-4,0,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,905,-4,0,1205,-18,0,0 +2013,10,13,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,56,1,1634,60,1,0 +2013,8,9,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,900,-5,0,1140,-6,0,0 +2013,4,6,6,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1445,-14,0,1755,-11,0,0 +2013,4,13,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1134,7,0,1249,10,0,0 +2013,7,24,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,923,-10,0,0 +2013,6,3,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1850,-1,0,2015,-5,0,0 +2013,6,6,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1457,75,1,1837,61,1,0 +2013,8,22,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,739,-6,0,845,-3,0,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1944,90,1,2343,53,1,0 +2013,5,26,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1915,-3,0,2105,0,0,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,47,1,1140,35,1,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,-1,0,2303,-12,0,0 +2013,9,26,4,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-4,0,1655,-16,0,0 +2013,7,14,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1735,58,1,2108,0,0,0 +2013,10,23,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1801,-11,0,1945,0,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1500,4,0,1725,65,1,0 +2013,4,12,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,838,-2,0,858,-9,0,0 +2013,10,8,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,-4,0,1839,2,0,0 +2013,9,27,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1104,-5,0,1200,8,0,0 +2013,8,14,3,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1825,10,0,2115,18,1,0 +2013,10,20,7,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1100,19,1,1611,19,1,0 +2013,10,17,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,-4,0,1112,-27,0,0 +2013,9,16,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1655,0,,1810,0,1,1 +2013,6,7,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,839,-2,0,1032,-3,0,0 +2013,7,30,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,933,3,0,1221,4,0,0 +2013,5,11,6,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,825,-8,0,1119,-15,0,0 +2013,6,17,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1755,0,0,1935,-3,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1314,0,,1602,0,1,1 +2013,7,25,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1920,0,0,2100,-11,0,0 +2013,10,8,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1122,-7,0,1332,-16,0,0 +2013,8,20,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1615,-2,0,1705,-11,0,0 +2013,7,24,3,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-5,0,1305,-11,0,0 +2013,4,26,5,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-7,0,1543,-11,0,0 +2013,4,4,4,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1910,-14,0,1946,-19,0,0 +2013,5,8,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1800,0,0,1935,-20,0,0 +2013,10,20,7,OO,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2012,22,1,2214,28,1,0 +2013,7,28,7,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1520,-3,0,1705,11,0,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,24,1,1636,47,1,0 +2013,7,24,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-5,0,2025,-7,0,0 +2013,4,21,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,3,0,1320,2,0,0 +2013,4,3,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1055,-5,0,1210,-6,0,0 +2013,5,15,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,703,18,1,0 +2013,8,26,1,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2108,-4,0,11,-11,0,0 +2013,6,18,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1329,18,1,1509,45,1,0 +2013,8,5,1,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1725,0,0,1908,-35,0,0 +2013,8,5,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,18,1,1615,19,1,0 +2013,7,26,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,4,0,855,-2,0,0 +2013,4,7,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-7,0,1019,-23,0,0 +2013,7,15,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1550,-3,0,1848,-18,0,0 +2013,5,5,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1130,18,1,1230,17,1,0 +2013,6,22,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-10,0,1858,-23,0,0 +2013,4,24,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1759,1,0,2136,8,0,0 +2013,8,14,3,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,-3,0,1525,-5,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,-4,0,2125,-15,0,0 +2013,9,2,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1731,143,1,2256,157,1,0 +2013,10,6,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1104,-9,0,1908,-18,0,0 +2013,9,24,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1158,-10,0,1338,-11,0,0 +2013,8,19,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-9,0,533,-8,0,0 +2013,6,7,5,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,606,5,0,726,3,0,0 +2013,4,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,840,-2,0,936,-7,0,0 +2013,5,7,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,-3,0,1225,-10,0,0 +2013,5,19,7,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,815,-5,0,1011,-9,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1705,0,0,1840,-3,0,0 +2013,8,8,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-10,0,841,-6,0,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,4,0,1205,7,0,0 +2013,8,19,1,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,950,3,0,1424,-13,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,530,5,0,801,8,0,0 +2013,6,3,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1230,-15,0,0 +2013,10,3,4,OO,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1135,-10,0,1257,-14,0,0 +2013,10,23,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1304,-2,0,1343,-1,0,0 +2013,7,29,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,0,,1550,0,1,1 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1105,-1,0,1127,0,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1220,0,0,1650,-10,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,1,0,1800,10,0,0 +2013,5,16,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1718,-2,0,2000,-8,0,0 +2013,6,28,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1845,56,1,1915,42,1,0 +2013,9,3,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,22,1,1015,6,0,0 +2013,8,26,1,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1002,-15,0,1255,-17,0,0 +2013,5,30,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1036,-9,0,1138,-23,0,0 +2013,8,31,6,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-7,0,1032,-7,0,0 +2013,5,8,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1800,0,0,1832,20,1,0 +2013,8,29,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1525,-6,0,1840,-46,0,0 +2013,7,21,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,940,-1,0,1050,-5,0,0 +2013,10,4,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1501,-7,0,0 +2013,6,14,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-1,0,915,11,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1530,-1,0,1635,-15,0,0 +2013,5,29,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-5,0,1308,-15,0,0 +2013,10,11,5,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1830,30,1,2147,32,1,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,650,0,0,1015,-5,0,0 +2013,5,26,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,-5,0,2307,-25,0,0 +2013,4,4,4,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1725,-11,0,0 +2013,10,6,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1130,-1,0,1908,20,1,0 +2013,4,7,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,840,0,0,1020,-13,0,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,19,1,1115,82,1,0 +2013,9,17,2,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-6,0,1035,-14,0,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1650,3,0,1743,-2,0,0 +2013,10,16,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-6,0,1025,0,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,45,1,1837,62,1,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,741,-4,0,1051,-15,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1205,-1,0,1337,-3,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-3,0,1038,-19,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1447,-4,0,1606,1,0,0 +2013,8,27,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,800,7,0,1605,16,1,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,735,-7,0,1035,-4,0,0 +2013,5,29,3,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,-1,0,2314,46,1,0 +2013,5,28,2,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,4,0,1045,11,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,919,-1,0,1058,-21,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,1,0,1915,-18,0,0 +2013,4,28,7,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1508,-4,0,1840,-10,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1021,13,0,1350,12,0,0 +2013,8,4,7,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,908,2,0,1400,3,0,0 +2013,9,25,3,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-4,0,1015,-12,0,0 +2013,7,18,4,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,22,1,1041,29,1,0 +2013,10,22,2,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1356,193,1,1645,177,1,0 +2013,5,7,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,0,0,2130,-18,0,0 +2013,4,2,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,750,9,0,910,4,0,0 +2013,10,18,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,823,-2,0,1114,-8,0,0 +2013,6,13,4,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,0,0,1809,16,1,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2010,61,1,2125,52,1,0 +2013,5,20,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1115,-5,0,1945,-15,0,0 +2013,4,15,1,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,5,0,1910,-5,0,0 +2013,4,19,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,600,-9,0,818,-14,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,23,1,1832,1,0,0 +2013,6,3,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1910,-5,0,2220,-9,0,0 +2013,9,14,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1805,-12,0,2105,-16,0,0 +2013,8,29,4,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1810,0,0,1905,-3,0,0 +2013,7,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,-2,0,820,0,0,0 +2013,6,16,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,0,0,1552,4,0,0 +2013,8,29,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,13,0,2035,7,0,0 +2013,10,28,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1130,10,0,1349,-14,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,0,0,2100,-9,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1105,9,0,1325,6,0,0 +2013,7,17,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-3,0,1050,-27,0,0 +2013,6,8,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1122,43,1,1256,29,1,0 +2013,5,12,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1150,0,0,1750,-24,0,0 +2013,10,25,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,837,-6,0,1029,-26,0,0 +2013,4,23,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,27,1,2125,13,0,0 +2013,5,20,1,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,914,-9,0,0 +2013,10,29,2,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1220,-5,0,1510,7,0,0 +2013,7,27,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,5,0,1002,14,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,57,1,1448,37,1,0 +2013,9,5,4,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1155,-6,0,1443,-11,0,0 +2013,8,21,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1043,-3,0,1607,-2,0,0 +2013,7,29,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2209,-1,0,2326,-11,0,0 +2013,6,15,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,900,-1,0,1045,3,0,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,0,0,2030,-1,0,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1507,-1,0,1556,-1,0,0 +2013,9,3,2,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1434,2,0,1607,3,0,0 +2013,9,4,3,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,605,-11,0,725,-29,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,10,0,915,5,0,0 +2013,7,29,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1117,383,1,1335,394,1,0 +2013,5,8,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,4,0,2010,-12,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2110,25,1,2355,20,1,0 +2013,5,17,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-1,0,1648,-12,0,0 +2013,5,15,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1110,-5,0,1324,1,0,0 +2013,10,26,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1524,-5,0,0 +2013,5,13,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1344,-1,0,1635,-7,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,705,-4,0,850,-12,0,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1535,20,1,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-3,0,1156,-17,0,0 +2013,6,6,4,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,750,0,0,1345,-4,0,0 +2013,10,4,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,-2,0,720,-11,0,0 +2013,5,3,5,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1015,216,1,1059,211,1,0 +2013,9,9,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,750,-1,0,915,7,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,87,1,2222,82,1,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1200,2,0,1443,-5,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2035,38,1,2250,56,1,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1716,62,1,1859,65,1,0 +2013,10,17,4,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,932,3,0,1130,-6,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,901,0,0,1118,-20,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-2,0,1912,-5,0,0 +2013,5,20,1,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2359,0,0,601,12,0,0 +2013,8,18,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-3,0,1525,-6,0,0 +2013,8,24,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,0,,1557,0,1,1 +2013,8,7,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,0,0,1720,-6,0,0 +2013,6,1,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-10,0,1520,-16,0,0 +2013,9,1,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,930,0,0,1115,0,0,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,516,-7,0,756,-39,0,0 +2013,7,3,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2325,-2,0,525,3,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1725,81,1,1830,75,1,0 +2013,6,17,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-2,0,2000,-11,0,0 +2013,8,30,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1910,-13,0,2040,-14,0,0 +2013,9,14,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,20,3,0,528,-3,0,0 +2013,10,12,6,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1715,11,0,2105,-16,0,0 +2013,6,11,2,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,730,0,0,930,-9,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-2,0,1833,-3,0,0 +2013,9,6,5,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,552,9,0,832,-7,0,0 +2013,4,2,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,705,-9,0,835,-14,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2305,-2,0,32,-15,0,0 +2013,9,12,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,-11,0,1314,-10,0,0 +2013,4,7,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,1,0,656,-8,0,0 +2013,8,18,7,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1946,118,1,2049,108,1,0 +2013,5,27,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-4,0,1026,-4,0,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-3,0,1206,18,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1410,61,1,1425,50,1,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1905,6,0,2026,9,0,0 +2013,10,3,4,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,23,1,1928,2,0,0 +2013,10,28,1,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,2,0,1125,9,0,0 +2013,4,18,4,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,0,0,1033,43,1,0 +2013,5,15,3,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,948,-6,0,1230,-13,0,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2055,-2,0,2300,-6,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-3,0,1248,-9,0,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2344,-9,0,338,-8,0,0 +2013,5,3,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-5,0,920,-8,0,0 +2013,6,2,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1325,22,1,1435,19,1,0 +2013,10,20,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1610,14,0,1645,12,0,0 +2013,8,19,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1100,-6,0,1216,-20,0,0 +2013,10,30,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,855,-11,0,1028,-19,0,0 +2013,4,26,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1435,1,0,1620,-2,0,0 +2013,6,27,4,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,811,5,0,1051,3,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1448,13,0,1745,-10,0,0 +2013,4,12,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1419,55,1,1609,39,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,-4,0,2232,-15,0,0 +2013,9,5,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,-2,0,2210,-6,0,0 +2013,4,3,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,-4,0,1219,-13,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,750,-2,0,0 +2013,6,25,2,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1325,-1,0,1600,-18,0,0 +2013,9,21,6,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-4,0,1544,18,1,0 +2013,7,29,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,8,0,2128,18,1,0 +2013,4,2,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,5,0,1522,8,0,0 +2013,6,1,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-2,0,830,-7,0,0 +2013,8,7,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,0,,1418,0,1,1 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1325,-2,0,2054,-11,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,7,0,1400,-2,0,0 +2013,8,26,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,955,21,1,1310,10,0,0 +2013,4,16,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,3,0,1347,17,1,0 +2013,8,1,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,2002,48,1,2109,44,1,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,-5,0,1009,-18,0,0 +2013,10,20,7,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1140,1,0,1305,3,0,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2205,111,1,13,94,1,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1745,66,1,2101,69,1,0 +2013,6,20,4,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1214,-3,0,1809,11,0,0 +2013,10,24,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-5,0,1659,-27,0,0 +2013,5,25,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,705,-1,0,830,-11,0,0 +2013,9,27,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1049,-6,0,1158,-11,0,0 +2013,4,21,7,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1014,3,0,1114,-7,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1135,51,1,1235,45,1,0 +2013,10,15,2,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1625,11,0,1655,6,0,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1725,22,1,2350,13,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,0,0,1111,-16,0,0 +2013,5,16,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-1,0,1050,9,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,6,0,1042,5,0,0 +2013,7,3,3,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-4,0,758,-14,0,0 +2013,7,19,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1306,-8,0,1633,-18,0,0 +2013,10,18,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,15,1,1250,4,0,0 +2013,6,28,5,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1210,53,1,1451,40,1,0 +2013,7,27,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1455,22,1,1620,9,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1640,16,1,2345,4,0,0 +2013,7,30,2,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,-2,0,905,-3,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1555,5,0,1710,-3,0,0 +2013,7,5,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-8,0,1014,-20,0,0 +2013,8,9,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,610,-5,0,615,-8,0,0 +2013,5,18,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1310,-5,0,1415,-8,0,0 +2013,7,26,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,1,0,1133,-4,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1909,-1,0,2006,-6,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1930,15,1,35,17,1,0 +2013,5,29,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,-1,0,1127,-17,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-1,0,1201,-1,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1558,2,0,1733,-10,0,0 +2013,5,24,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,6,0,2042,-17,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,1,0,1050,-9,0,0 +2013,4,15,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,-4,0,1626,15,1,0 +2013,4,19,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,32,1,1728,36,1,0 +2013,4,18,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-4,0,910,-19,0,0 +2013,9,17,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,855,-2,0,1152,-10,0,0 +2013,9,20,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1810,20,1,1910,20,1,0 +2013,7,8,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,138,1,2215,121,1,0 +2013,6,18,2,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1940,-8,0,2227,9,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2005,18,1,45,14,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,950,9,0,1105,6,0,0 +2013,8,25,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-3,0,1546,-47,0,0 +2013,9,21,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1140,2,0,1245,9,0,0 +2013,7,19,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,600,-3,0,725,-5,0,0 +2013,10,28,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-4,0,1005,-5,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1432,21,1,1619,20,1,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,39,1,1925,93,1,0 +2013,7,7,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,73,1,1610,62,1,0 +2013,6,3,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1145,-15,0,0 +2013,7,30,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1805,-7,0,1950,-39,0,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2029,-4,0,2337,-13,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-1,0,1520,-13,0,0 +2013,9,28,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1430,10,0,1600,10,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,924,-5,0,1115,-14,0,0 +2013,4,16,2,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-8,0,956,15,1,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1736,-3,0,1817,-12,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,8,0,2059,-4,0,0 +2013,4,26,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-6,0,1715,-2,0,0 +2013,5,12,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,1,0,1039,-12,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,805,-5,0,1012,-19,0,0 +2013,10,10,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-4,0,1257,-5,0,0 +2013,8,6,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,800,-4,0,1106,-25,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,5,0,1251,8,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1250,-4,0,1430,0,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,920,-1,0,1055,-16,0,0 +2013,6,7,5,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-1,0,2155,-1,0,0 +2013,7,15,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,2051,-7,0,2306,-44,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,15,1,2028,25,1,0 +2013,7,21,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-2,0,1410,1,0,0 +2013,8,4,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1112,-7,0,1403,-17,0,0 +2013,10,26,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-10,0,1725,-15,0,0 +2013,4,15,1,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1144,2,0,1424,-14,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1420,-4,0,1545,-15,0,0 +2013,4,18,4,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1730,0,0,1858,-1,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-2,0,950,-11,0,0 +2013,9,28,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1025,-3,0,1135,-14,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,604,5,0,853,-23,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,0,0,2210,-12,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,6,0,1613,13,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1241,-4,0,1516,-9,0,0 +2013,10,13,7,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-14,0,1748,-21,0,0 +2013,5,28,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-7,0,2102,-14,0,0 +2013,10,13,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,2030,-11,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,710,-4,0,820,-18,0,0 +2013,8,2,5,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,2128,-7,0,2308,-14,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1255,17,1,1410,10,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2220,0,0,2354,-6,0,0 +2013,6,10,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,10,0,2015,2,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,-2,0,1820,3,0,0 +2013,9,10,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1220,61,1,1245,66,1,0 +2013,5,13,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1730,5,0,1910,-4,0,0 +2013,5,16,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-6,0,1059,-15,0,0 +2013,10,4,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1054,-5,0,0 +2013,7,15,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-2,0,1748,-1,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,171,1,2329,150,1,0 +2013,10,1,2,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1312,7,0,1624,-24,0,0 +2013,10,15,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,-5,0,1255,-28,0,0 +2013,6,22,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-9,0,857,-13,0,0 +2013,8,21,3,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-3,0,2245,-7,0,0 +2013,10,1,2,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-3,0,1230,1,0,0 +2013,9,11,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1852,15,1,2130,16,1,0 +2013,7,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,715,-9,0,818,-3,0,0 +2013,6,25,2,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,853,24,1,1212,42,1,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,103,1,1904,174,1,0 +2013,9,7,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,21,1,1910,4,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1352,13,0,1438,9,0,0 +2013,9,20,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1950,35,1,2228,9,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,810,-3,0,945,-19,0,0 +2013,9,15,7,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1325,11,0,1545,-6,0,0 +2013,4,17,3,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,1020,2,0,1809,-38,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-6,0,1720,-1,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,14,0,1035,-3,0,0 +2013,8,11,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1119,1,0,1304,-21,0,0 +2013,7,24,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-4,0,1439,-12,0,0 +2013,6,10,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,20,1,2016,19,1,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,750,133,1,1135,135,1,0 +2013,6,16,7,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,20,1,1915,13,0,0 +2013,8,3,6,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-5,0,1011,-11,0,0 +2013,7,27,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1649,145,1,1813,126,1,0 +2013,7,20,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-7,0,1447,-6,0,0 +2013,10,11,5,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1255,4,0,1510,5,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,14,0,1030,9,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-4,0,1045,-18,0,0 +2013,9,17,2,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,735,-6,0,1000,-23,0,0 +2013,5,20,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,11,0,2145,-11,0,0 +2013,6,29,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,835,-17,0,0 +2013,6,16,7,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1755,-1,0,1846,-13,0,0 +2013,10,22,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2059,-1,0,58,-3,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1814,-2,0,2011,-20,0,0 +2013,8,15,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,-10,0,2115,-24,0,0 +2013,4,6,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1911,-13,0,2119,-18,0,0 +2013,4,4,4,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,23,1,759,30,1,0 +2013,7,22,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-4,0,2125,-22,0,0 +2013,7,22,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,0,,1815,0,1,1 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,9,0,1116,2,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,0,,720,0,1,1 +2013,6,8,6,EV,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,-5,0,1140,-13,0,0 +2013,6,15,6,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1644,-4,0,2108,-23,0,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,825,11,0,955,8,0,0 +2013,8,3,6,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-9,0,1211,-18,0,0 +2013,5,21,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,9,0,1447,10,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,915,23,1,1140,7,0,0 +2013,7,14,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2054,61,1,2328,62,1,0 +2013,5,23,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,6,0,1359,7,0,0 +2013,7,20,6,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,-4,0,1818,-3,0,0 +2013,5,31,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,-2,0,1820,-7,0,0 +2013,6,9,7,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1455,15,1,1710,32,1,0 +2013,8,28,3,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1920,-7,0,2034,-14,0,0 +2013,9,16,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-5,0,1252,-9,0,0 +2013,9,20,5,9E,12451,Jacksonville International,Jacksonville,FL,12953,LaGuardia,New York,NY,1125,-4,0,1345,-15,0,0 +2013,5,2,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,6,0,2215,1,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1921,50,1,2049,30,1,0 +2013,9,18,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1759,-9,0,1850,0,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1500,21,1,1640,28,1,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,83,1,2241,70,1,0 +2013,8,24,6,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1500,1,0,1615,-10,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,940,-4,0,1156,-13,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2025,0,,2130,0,1,1 +2013,7,17,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1835,70,1,2150,50,1,0 +2013,7,8,1,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,0,0,1314,-15,0,0 +2013,8,31,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1138,-4,0,1353,-11,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,-2,0,2105,-5,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1330,-1,0,1545,-7,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1330,19,1,1535,16,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,4,0,1745,-16,0,0 +2013,9,29,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-10,0,840,-4,0,0 +2013,8,4,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,758,32,1,1009,25,1,0 +2013,5,21,2,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-4,0,550,-1,0,0 +2013,8,5,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,957,-4,0,1201,0,0,0 +2013,6,13,4,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,755,11,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1310,19,1,1640,5,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1525,5,0,1655,4,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1100,-2,0,1239,-17,0,0 +2013,7,2,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2325,3,0,525,25,1,0 +2013,8,19,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2210,-10,0,2328,-21,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,740,-6,0,845,-16,0,0 +2013,4,28,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-5,0,1204,-19,0,0 +2013,10,4,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2010,181,1,2145,169,1,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,5,0,2255,-1,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2135,-2,0,43,-24,0,0 +2013,8,4,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,1108,-16,0,0 +2013,9,13,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,0,0,811,5,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1620,-3,0,1720,7,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1002,-3,0,1247,-18,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,625,-2,0,740,-6,0,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1528,-6,0,1644,-5,0,0 +2013,10,5,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1435,-8,0,1656,-13,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,3,0,1340,-7,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,4,0,1320,-16,0,0 +2013,4,26,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1050,-5,0,1234,-23,0,0 +2013,4,9,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1421,8,0,1750,11,0,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1810,12,0,1943,10,0,0 +2013,7,12,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,954,-5,0,1028,1,0,0 +2013,7,17,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,705,-6,0,1524,8,0,0 +2013,5,7,2,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1020,-2,0,1150,-13,0,0 +2013,7,9,2,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2010,8,0,2220,12,0,0 +2013,7,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1741,-1,0,1857,-16,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,1,0,2252,14,0,0 +2013,8,25,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1555,2,0,1715,-3,0,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,720,0,0,926,-1,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1001,-8,0,1149,-4,0,0 +2013,7,19,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1200,-6,0,2015,21,1,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,925,-5,0,1227,-18,0,0 +2013,10,27,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1446,-2,0,1753,-16,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-5,0,1418,-8,0,0 +2013,10,1,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,0,0,1013,2,0,0 +2013,5,5,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-4,0,1811,-1,0,0 +2013,8,11,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,40,1,2255,43,1,0 +2013,6,11,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1035,4,0,1218,5,0,0 +2013,6,17,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,0,0,815,2,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-6,0,1019,-6,0,0 +2013,9,8,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-5,0,1933,-16,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,3,0,1505,-23,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,10,0,1510,-10,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,2135,-9,0,2344,-26,0,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1810,27,1,1915,18,1,0 +2013,6,15,6,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2021,0,,2245,0,1,1 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,810,-2,0,1125,0,0,0 +2013,9,30,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2052,19,1,2212,18,1,0 +2013,7,9,2,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,84,1,12,63,1,0 +2013,10,8,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,6,0,1707,13,0,0 +2013,6,16,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,753,-4,0,931,-15,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,740,8,0,1000,-2,0,0 +2013,9,19,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,641,-11,0,0 +2013,5,30,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1255,1,0,1430,-1,0,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1008,-3,0,1148,3,0,0 +2013,5,11,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1212,34,1,1406,24,1,0 +2013,4,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-4,0,2011,-12,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,0,0,1223,-20,0,0 +2013,7,24,3,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,921,-9,0,0 +2013,9,24,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1555,-8,0,1833,-11,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,810,-1,0,1230,13,0,0 +2013,5,6,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1625,-3,0,1720,-10,0,0 +2013,8,30,5,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,2,0,1800,-10,0,0 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1345,1,0,1534,-12,0,0 +2013,6,25,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,7,0,1329,-1,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,9,0,2050,-4,0,0 +2013,6,16,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,650,0,0,825,-2,0,0 +2013,4,20,6,DL,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,2245,-7,0,601,-19,0,0 +2013,6,22,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1130,27,1,1150,22,1,0 +2013,4,3,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1930,-1,0,2016,-3,0,0 +2013,8,13,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1040,-3,0,1155,-5,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,8,0,1624,4,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1950,-2,0,2045,-4,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1430,12,0,1530,10,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,2000,17,1,2135,20,1,0 +2013,9,22,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-9,0,1323,-11,0,0 +2013,9,4,3,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1127,1,0,0 +2013,8,14,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,-5,0,1815,-28,0,0 +2013,6,3,1,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,43,1,1645,26,1,0 +2013,9,25,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,645,-5,0,750,-13,0,0 +2013,10,15,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,3,0,5,12,0,0 +2013,4,11,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,750,2,0,1030,16,1,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1400,-3,0,1650,2,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1655,-5,0,1800,-11,0,0 +2013,9,11,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,5,0,1759,4,0,0 +2013,8,11,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,757,-2,0,959,-8,0,0 +2013,5,10,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,600,-9,0,734,-17,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-5,0,1228,-11,0,0 +2013,10,11,5,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,20,1,1835,1,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1805,56,1,1920,52,1,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1625,0,0,1932,-5,0,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2231,94,1,2358,91,1,0 +2013,7,28,7,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,600,-4,0,729,-15,0,0 +2013,6,7,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,720,0,0,905,-1,0,0 +2013,4,2,2,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1823,-8,0,2100,-8,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,1,0,20,4,0,0 +2013,9,3,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2115,-1,0,2350,-16,0,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2015,13,0,2105,11,0,0 +2013,4,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,600,22,1,720,6,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,801,0,0,1037,-15,0,0 +2013,8,28,3,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,736,-6,0,750,-10,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,-5,0,1431,-12,0,0 +2013,7,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,4,0,1749,-5,0,0 +2013,6,4,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-3,0,2008,-7,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,4,0,1445,-6,0,0 +2013,6,6,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-6,0,715,-14,0,0 +2013,6,7,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,-10,0,147,-33,0,0 +2013,10,11,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,19,1,1045,14,0,0 +2013,6,28,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-8,0,1316,16,1,0 +2013,6,16,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,-8,0,1721,-16,0,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1600,3,0,1725,27,1,0 +2013,5,7,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,605,-12,0,800,-17,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,-2,0,2300,-9,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,-5,0,2359,-4,0,0 +2013,10,13,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1700,20,1,51,33,1,0 +2013,8,4,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,86,1,1240,72,1,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1825,0,0,1955,8,0,0 +2013,4,5,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-3,0,1407,65,1,0 +2013,6,23,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1805,-9,0,1905,-10,0,0 +2013,5,21,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1755,148,1,1850,156,1,0 +2013,9,25,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,2201,-20,0,0 +2013,10,3,4,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,555,-9,0,830,-18,0,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-2,0,830,-3,0,0 +2013,5,12,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1855,11,0,2132,2,0,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,-3,0,1613,-12,0,0 +2013,6,9,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2035,-5,0,2206,6,0,0 +2013,9,14,6,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,815,-6,0,933,-4,0,0 +2013,10,8,2,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,950,-3,0,1111,-7,0,0 +2013,5,26,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1510,0,0,1701,-3,0,0 +2013,8,20,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1445,-6,0,1723,-8,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1244,-5,0,1431,-7,0,0 +2013,10,24,4,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1159,-3,0,1344,-16,0,0 +2013,5,9,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1301,37,1,1425,32,1,0 +2013,7,11,4,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,700,0,,810,0,1,1 +2013,5,3,5,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1620,-7,0,1815,-23,0,0 +2013,4,24,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,33,1,1625,22,1,0 +2013,6,3,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,751,-2,0,1042,-11,0,0 +2013,8,24,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,545,-5,0,709,-12,0,0 +2013,6,29,6,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1310,-4,0,1657,7,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,845,7,0,1005,12,0,0 +2013,5,16,4,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1500,28,1,1700,22,1,0 +2013,7,9,2,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,710,-3,0,906,-8,0,0 +2013,6,30,7,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1730,-3,0,2007,-2,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,7,0,2257,2,0,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1521,4,0,1645,3,0,0 +2013,9,9,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,700,-7,0,809,-15,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,258,1,2341,251,1,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,855,0,,1040,0,1,1 +2013,4,12,5,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-2,0,1640,-13,0,0 +2013,10,5,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1320,-1,0,1528,-9,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,5,0,1920,-3,0,0 +2013,7,23,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,53,1,1235,54,1,0 +2013,10,19,6,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1400,-7,0,1627,-7,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-6,0,1410,-13,0,0 +2013,10,26,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-5,0,1937,0,0,0 +2013,6,18,2,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1705,30,1,1835,26,1,0 +2013,6,5,3,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1200,7,0,1453,5,0,0 +2013,5,5,7,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,700,-1,0,915,-3,0,0 +2013,8,10,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,-6,0,1950,-12,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-3,0,1600,-13,0,0 +2013,8,14,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,0,0,1135,23,1,0 +2013,10,4,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-4,0,1320,-15,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1310,-4,0,1435,-19,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,815,-3,0,945,-18,0,0 +2013,4,26,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,845,13,0,940,7,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,940,7,0,1050,4,0,0 +2013,6,8,6,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1620,83,1,1755,72,1,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1700,-4,0,1840,-14,0,0 +2013,9,8,7,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,-5,0,2056,-11,0,0 +2013,7,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,7,0,1545,0,0,0 +2013,7,9,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-8,0,1408,-8,0,0 +2013,6,24,1,B6,13796,Metropolitan Oakland International,Oakland,CA,10721,Logan International,Boston,MA,2359,149,1,822,153,1,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,0,0,1942,-9,0,0 +2013,6,15,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,730,2,0,1128,-5,0,0 +2013,9,28,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-3,0,2129,-3,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1940,11,0,2210,18,1,0 +2013,8,25,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1102,2,0,1204,-4,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,40,1,1600,55,1,0 +2013,10,4,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,57,1,2231,50,1,0 +2013,4,5,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,4,0,1910,-3,0,0 +2013,6,19,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1440,-3,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-2,0,825,1,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,-3,0,1700,-5,0,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1900,18,1,2000,12,0,0 +2013,7,21,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,705,-5,0,913,-5,0,0 +2013,10,8,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-1,0,635,-1,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1755,0,0,1900,-12,0,0 +2013,9,7,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,-1,0,1135,-10,0,0 +2013,5,2,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-7,0,1031,4,0,0 +2013,4,28,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-7,0,1807,-11,0,0 +2013,5,16,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,4,0,1838,4,0,0 +2013,5,4,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1715,-1,0,1835,-7,0,0 +2013,5,26,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-9,0,1428,-9,0,0 +2013,8,17,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1815,7,0,1930,-1,0,0 +2013,9,4,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1055,-4,0,1205,-1,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,600,-1,0,900,-16,0,0 +2013,7,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,62,1,1548,75,1,0 +2013,5,3,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,945,42,1,1020,44,1,0 +2013,5,3,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1440,7,0,1805,-11,0,0 +2013,7,11,4,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,2,0,1623,36,1,0 +2013,6,10,1,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1252,7,0,1358,-1,0,0 +2013,5,31,5,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1734,-2,0,2232,-22,0,0 +2013,7,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1826,-9,0,2059,-18,0,0 +2013,7,27,6,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,57,1,1114,52,1,0 +2013,4,4,4,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,702,6,0,821,17,1,0 +2013,8,28,3,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,700,-2,0,1047,-9,0,0 +2013,8,29,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-6,0,1800,-1,0,0 +2013,10,22,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,741,-5,0,1520,-10,0,0 +2013,5,22,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-8,0,828,5,0,0 +2013,8,12,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1529,24,1,1830,57,1,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,825,2,0,1100,15,1,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1026,-2,0,1245,-15,0,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1300,9,0,1612,32,1,0 +2013,9,22,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,40,1,1520,25,1,0 +2013,7,16,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1030,27,1,1352,30,1,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,910,0,0,1010,-5,0,0 +2013,6,30,7,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1310,9,0,1610,18,1,0 +2013,4,23,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,74,1,1427,76,1,0 +2013,6,3,1,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1455,33,1,1620,18,1,0 +2013,10,4,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1245,3,0,1415,-3,0,0 +2013,9,23,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,14,0,1124,0,0,0 +2013,6,16,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1247,34,1,1622,23,1,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,1,0,2110,-20,0,0 +2013,8,1,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,5,0,2223,12,0,0 +2013,5,6,1,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1730,-9,0,2026,-9,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-4,0,1917,11,0,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1945,27,1,2115,13,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,3,0,2210,-17,0,0 +2013,7,15,1,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1940,46,1,2115,49,1,0 +2013,4,3,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,16,1,1200,12,0,0 +2013,8,11,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1620,-18,0,0 +2013,4,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,645,0,0,900,-12,0,0 +2013,7,20,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1015,2,0,1620,6,0,0 +2013,6,30,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,70,1,2246,56,1,0 +2013,4,27,6,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,800,-1,0,840,-12,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-5,0,2036,-7,0,0 +2013,7,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1055,8,0,1310,5,0,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,-6,0,622,6,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2205,-7,0,616,-45,0,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,9,0,2235,9,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,16,1,2105,25,1,0 +2013,10,6,7,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1600,-10,0,1752,-32,0,0 +2013,6,3,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,600,6,0,705,5,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1810,80,1,2008,93,1,0 +2013,6,21,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,705,6,0,944,33,1,0 +2013,5,26,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,900,-2,0,1215,-1,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1536,17,1,1658,7,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1550,24,1,1710,21,1,0 +2013,5,19,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-3,0,1329,-3,0,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1040,23,1,1200,12,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1340,-3,0,1505,2,0,0 +2013,10,23,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,0,0,1420,1,0,0 +2013,5,28,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1144,1,0,1334,-13,0,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,740,-3,0,1110,-12,0,0 +2013,10,26,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,603,29,1,906,11,0,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1645,14,0,1840,6,0,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1125,55,1,1425,57,1,0 +2013,5,30,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1630,0,0,1945,-6,0,0 +2013,8,18,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,1,0,758,-1,0,0 +2013,9,24,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-6,0,1320,-10,0,0 +2013,8,23,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,825,1,1710,811,1,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,0,0,1745,-4,0,0 +2013,5,24,5,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,16,1,1912,4,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1450,-2,0,1601,-13,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1729,1,0,1857,-14,0,0 +2013,6,24,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1443,228,1,1623,216,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1645,13,0,1830,17,1,0 +2013,8,19,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2209,-10,0,2306,-9,0,0 +2013,8,23,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1208,8,0,1805,4,0,0 +2013,9,10,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,638,-3,0,1020,-2,0,0 +2013,10,7,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,925,-7,0,1025,-21,0,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1845,23,1,19,28,1,0 +2013,9,19,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,655,-4,0,809,-10,0,0 +2013,10,29,2,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1557,-1,0,1849,0,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1430,40,1,1515,37,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,954,22,1,1146,8,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,929,-1,0,1241,-21,0,0 +2013,10,9,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,635,1,0,1454,3,0,0 +2013,6,25,2,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,13,0,1915,-1,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,-4,0,1102,-10,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1105,22,1,1325,-7,0,0 +2013,6,21,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,727,-3,0,909,-11,0,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1535,17,1,1635,17,1,0 +2013,5,9,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,32,1,1755,31,1,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1938,-8,0,2145,-17,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,1,0,1935,-1,0,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,7,0,1435,2,0,0 +2013,5,14,2,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1420,-3,0,1920,-9,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1105,-3,0,1435,-10,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1815,52,1,1939,41,1,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1020,-4,0,1459,-12,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,-7,0,1200,-33,0,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-3,0,1242,-8,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1530,-3,0,1745,-5,0,0 +2013,7,17,3,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1150,-10,0,1443,-16,0,0 +2013,9,27,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1735,2,0,1857,20,1,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1345,20,1,1540,22,1,0 +2013,10,1,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-6,0,705,-5,0,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1600,19,1,1730,20,1,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1745,-2,0,2340,4,0,0 +2013,10,13,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,850,-2,0,1025,4,0,0 +2013,6,7,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1705,3,0,1900,1,0,0 +2013,8,23,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-10,0,1434,-28,0,0 +2013,7,24,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1850,0,0,1935,-1,0,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,745,-2,0,845,-11,0,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,5,0,1315,11,0,0 +2013,10,29,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,1,0,1202,12,0,0 +2013,6,21,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,847,1,0,0 +2013,10,4,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,226,1,1950,218,1,0 +2013,8,11,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-1,0,2135,-6,0,0 +2013,6,23,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-5,0,801,-12,0,0 +2013,6,14,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1658,3,0,1757,20,1,0 +2013,6,21,5,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,-5,0,541,-3,0,0 +2013,8,29,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1000,0,0,1100,5,0,0 +2013,10,13,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-10,0,1703,-19,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1045,-1,0,1205,-4,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1825,-2,0,2051,-12,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1611,165,1,1822,166,1,0 +2013,5,26,7,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-3,0,1715,-19,0,0 +2013,4,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2105,42,1,2251,47,1,0 +2013,7,28,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,1,0,1015,-15,0,0 +2013,9,4,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-5,0,740,-11,0,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1321,46,1,1626,34,1,0 +2013,7,20,6,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1825,-3,0,2115,-13,0,0 +2013,5,13,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1429,4,0,1531,-3,0,0 +2013,6,12,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,905,-7,0,1220,-13,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1940,17,1,2040,15,1,0 +2013,6,15,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,-5,0,2010,-17,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1135,2,0,1315,2,0,0 +2013,7,31,3,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,849,63,1,1013,55,1,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1425,6,0,1645,-8,0,0 +2013,10,22,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1620,10,0,2155,4,0,0 +2013,9,20,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1540,37,1,1630,60,1,0 +2013,7,9,2,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-8,0,2010,-21,0,0 +2013,7,25,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,36,1,1715,40,1,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,21,1,1515,17,1,0 +2013,9,16,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,-5,0,1425,-13,0,0 +2013,8,14,3,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,740,-8,0,1602,-1,0,0 +2013,8,3,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,702,-5,0,825,-14,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1525,-2,0,1728,-7,0,0 +2013,9,19,4,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1925,0,,2138,0,1,1 +2013,10,30,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-4,0,920,-13,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,-1,0,1530,-8,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,0,0,2327,-10,0,0 +2013,6,5,3,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1635,-7,0,2040,-31,0,0 +2013,8,17,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1025,-5,0,1157,26,1,0 +2013,10,22,2,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,2,0,2020,-7,0,0 +2013,7,12,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1150,38,1,1445,67,1,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1311,-4,0,1423,-12,0,0 +2013,8,5,1,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,844,-1,0,1125,5,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,5,0,1020,4,0,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,-4,0,1812,-13,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2100,160,1,2253,142,1,0 +2013,7,19,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1500,16,1,1711,27,1,0 +2013,8,17,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,2000,26,1,2205,7,0,0 +2013,8,28,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1112,10,0,1229,4,0,0 +2013,5,19,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1020,3,0,1230,-4,0,0 +2013,4,3,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1152,2,0,1755,-11,0,0 +2013,6,3,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1730,102,1,1923,102,1,0 +2013,7,4,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1542,2,0,1716,-6,0,0 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1445,11,0,1704,9,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,107,1,2055,102,1,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,1,0,1809,6,0,0 +2013,6,20,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,14,0,1415,7,0,0 +2013,7,17,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,7,0,1113,-5,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1705,15,1,1922,3,0,0 +2013,4,5,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,0,0,1630,-4,0,0 +2013,10,21,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,37,1,1905,32,1,0 +2013,9,13,5,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1005,19,1,1600,7,0,0 +2013,4,17,3,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,2120,-5,0,5,-15,0,0 +2013,10,6,7,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1500,-4,0,1700,2,0,0 +2013,7,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1725,73,1,1859,84,1,0 +2013,5,18,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,29,-6,0,604,-12,0,0 +2013,8,7,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,49,1,1151,49,1,0 +2013,10,17,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-2,0,916,-18,0,0 +2013,6,5,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1423,-7,0,1554,-27,0,0 +2013,8,29,4,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,27,1,2019,20,1,0 +2013,10,9,3,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2305,3,0,702,2,0,0 +2013,8,6,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,530,-3,0,705,-16,0,0 +2013,4,29,1,OO,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,615,-11,0,805,-18,0,0 +2013,10,24,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-1,0,1405,-15,0,0 +2013,7,14,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,713,0,0,810,-18,0,0 +2013,10,17,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1840,79,1,1958,87,1,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1120,-4,0,1259,8,0,0 +2013,5,25,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,14,0,2125,5,0,0 +2013,6,3,1,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1650,94,1,1901,76,1,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,947,-2,0,1108,-10,0,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2030,1,0,2259,-2,0,0 +2013,6,12,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1740,0,,1900,0,1,1 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,16,1,1226,8,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1345,23,1,1410,19,1,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1525,47,1,1915,45,1,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2110,28,1,2249,30,1,0 +2013,5,16,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2130,10,0,2250,7,0,0 +2013,4,14,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1252,14,0,1352,4,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2009,4,0,2206,-1,0,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,900,57,1,958,40,1,0 +2013,7,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-4,0,1619,14,0,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1020,3,0,1140,-1,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,-3,0,1959,-22,0,0 +2013,10,27,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1920,-8,0,2237,-29,0,0 +2013,8,3,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,918,-1,0,1038,-11,0,0 +2013,6,4,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-3,0,1447,-5,0,0 +2013,7,15,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-2,0,1415,6,0,0 +2013,7,31,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,610,-6,0,730,-22,0,0 +2013,5,27,1,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1815,15,1,2005,69,1,0 +2013,9,17,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1520,-5,0,1637,-8,0,0 +2013,8,6,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1710,3,0,2035,-1,0,0 +2013,6,14,5,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,840,79,1,1025,83,1,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-1,0,1920,-13,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1141,-2,0,1730,8,0,0 +2013,6,8,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1704,-6,0,1845,-19,0,0 +2013,6,28,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2315,10,0,504,-6,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,650,1,0,750,27,1,0 +2013,4,8,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-11,0,909,-19,0,0 +2013,7,14,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-4,0,1741,-1,0,0 +2013,9,3,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1828,5,0,2125,-5,0,0 +2013,4,4,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1733,-4,0,1929,8,0,0 +2013,5,6,1,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-4,0,1105,-7,0,0 +2013,10,24,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1600,63,1,1930,35,1,0 +2013,5,30,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-3,0,1117,-25,0,0 +2013,7,1,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-3,0,1100,20,1,0 +2013,4,10,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-3,0,1501,-1,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1630,37,1,1725,34,1,0 +2013,7,29,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1503,-2,0,1650,0,0,0 +2013,5,14,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-1,0,1447,-21,0,0 +2013,4,23,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-6,0,1700,9,0,0 +2013,7,13,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1230,0,0,1404,-18,0,0 +2013,6,25,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-5,0,1805,-10,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1735,-2,0,2055,-4,0,0 +2013,4,18,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,610,-10,0,909,-15,0,0 +2013,5,11,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1655,-4,0,1950,-19,0,0 +2013,10,11,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1417,-7,0,0 +2013,5,27,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,0,0,2255,-4,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1845,28,1,2000,24,1,0 +2013,6,28,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-4,0,944,-4,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,0,,1745,0,1,1 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1116,-4,0,1304,6,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1210,8,0,1525,5,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,925,75,1,1020,73,1,0 +2013,5,25,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1500,20,1,1750,18,1,0 +2013,4,4,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,810,-1,0,1000,-7,0,0 +2013,5,22,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,847,-1,0,1135,37,1,0 +2013,4,13,6,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1515,-3,0,2318,-8,0,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,801,-8,0,0 +2013,7,4,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-1,0,1155,1,0,0 +2013,10,22,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-1,0,1230,-14,0,0 +2013,6,19,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2109,30,1,2221,23,1,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,40,1,2215,44,1,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,715,3,0,920,-11,0,0 +2013,8,5,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,-9,0,2202,-24,0,0 +2013,4,13,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1345,-1,0,1648,3,0,0 +2013,5,20,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2155,27,1,2245,33,1,0 +2013,10,13,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1435,14,0,1545,6,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,-2,0,1305,20,1,0 +2013,4,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-3,0,1109,6,0,0 +2013,5,17,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,600,-6,0,835,-13,0,0 +2013,6,13,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,622,-8,0,750,-7,0,0 +2013,6,8,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1112,-6,0,1449,-8,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2232,9,0,716,-2,0,0 +2013,7,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2020,0,,2115,0,1,1 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1200,4,0,1335,7,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1020,5,0,1145,-18,0,0 +2013,4,5,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1355,51,1,1705,23,1,0 +2013,6,27,4,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,13,0,1915,-3,0,0 +2013,10,12,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,735,-4,0,1301,-33,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1255,-1,0,1446,-1,0,0 +2013,8,8,4,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1910,21,1,2105,1,0,0 +2013,5,23,4,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1300,52,1,2115,65,1,0 +2013,4,12,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,2,0,1515,-11,0,0 +2013,9,14,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-5,0,809,-4,0,0 +2013,10,9,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,0,0,1255,-14,0,0 +2013,7,4,4,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1950,-10,0,2149,-33,0,0 +2013,10,5,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1345,-7,0,1658,1,0,0 +2013,7,4,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,825,-5,0,1230,2,0,0 +2013,6,29,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1055,2,0,1220,-7,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,730,-8,0,903,-7,0,0 +2013,7,17,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1230,-11,0,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,600,0,0,725,4,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1020,-7,0,1533,22,1,0 +2013,6,11,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,3,0,2105,-4,0,0 +2013,8,4,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,0,0,1535,-3,0,0 +2013,7,30,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,21,1,815,21,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1210,-3,0,1300,-16,0,0 +2013,7,12,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1120,-1,0,1350,-9,0,0 +2013,5,1,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1700,243,1,2018,231,1,0 +2013,4,3,3,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1214,-5,0,1430,12,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,759,10,0,933,0,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-3,0,2350,-6,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1415,-7,0,1752,-15,0,0 +2013,10,22,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1805,-2,0,2030,-3,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-4,0,1240,-13,0,0 +2013,10,9,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1915,-1,0,2053,-8,0,0 +2013,9,22,7,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,833,1,0,1135,-3,0,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-6,0,1623,-10,0,0 +2013,8,24,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-5,0,1521,-12,0,0 +2013,10,21,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-1,0,1004,4,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,7,0,2110,-12,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1450,20,1,1705,43,1,0 +2013,10,24,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1125,-4,0,1310,-26,0,0 +2013,7,31,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-10,0,2029,1,0,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1158,4,0,2029,63,1,0 +2013,8,22,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1539,1,0,1639,-9,0,0 +2013,4,4,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2225,-6,0,644,-5,0,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1315,5,0,1425,-1,0,0 +2013,8,8,4,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-5,0,1627,-8,0,0 +2013,6,28,5,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,935,105,1,1235,102,1,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1635,-1,0,1927,-13,0,0 +2013,10,12,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-9,0,1417,-6,0,0 +2013,8,10,6,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2221,-8,0,420,-37,0,0 +2013,9,29,7,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1955,7,0,2240,1,0,0 +2013,4,4,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1440,7,0,1606,6,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1450,6,0,1830,-9,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,710,-3,0,930,-6,0,0 +2013,7,13,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1225,-3,0,1402,-16,0,0 +2013,5,9,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,945,-1,0,1100,4,0,0 +2013,7,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,-3,0,1130,-4,0,0 +2013,5,13,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,800,-1,0,1157,-19,0,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,110,1,1958,84,1,0 +2013,7,11,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,0,,1157,0,1,1 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1310,46,1,1630,34,1,0 +2013,5,21,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1904,-5,0,2249,-1,0,0 +2013,4,1,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,5,0,1642,-18,0,0 +2013,10,18,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,13,0,910,1,0,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,18,1,1016,13,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,-5,0,845,-15,0,0 +2013,4,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1459,-6,0,1657,-12,0,0 +2013,7,20,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,830,28,1,850,19,1,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,4,0,1500,-3,0,0 +2013,5,10,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,2,0,1345,-6,0,0 +2013,6,9,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1549,29,1,1742,46,1,0 +2013,6,7,5,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,15,1,1020,30,1,0 +2013,6,5,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2135,-5,0,2255,-11,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,97,1,1034,106,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,0,0,1940,-7,0,0 +2013,10,4,5,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1440,-7,0,2305,-2,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1459,-3,0,1538,-20,0,0 +2013,8,7,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1452,0,,1538,0,1,1 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,852,-10,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1010,-4,0,1725,7,0,0 +2013,5,1,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,3,0,2255,-4,0,0 +2013,6,30,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,-4,0,2128,49,1,0 +2013,10,25,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,715,-3,0,0 +2013,5,13,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-7,0,1606,-7,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1745,14,0,1753,-1,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,-3,0,2059,-16,0,0 +2013,9,26,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-1,0,809,-3,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,18,1,1000,10,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,0,,1658,0,1,1 +2013,6,30,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1745,-5,0,2028,-20,0,0 +2013,10,2,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-5,0,2115,-19,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1940,15,1,2210,6,0,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1025,-4,0,1158,-14,0,0 +2013,10,6,7,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1335,-7,0,1750,-36,0,0 +2013,4,10,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-9,0,1146,-23,0,0 +2013,4,12,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1701,92,1,1843,81,1,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1740,2,0,1904,-6,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,600,-4,0,716,-12,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,940,-2,0,1240,-5,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,7,0,1347,3,0,0 +2013,10,20,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,800,0,0,1117,-7,0,0 +2013,9,25,3,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,805,27,1,1050,29,1,0 +2013,6,8,6,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1452,114,1,1832,114,1,0 +2013,6,1,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,63,1,2354,47,1,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,715,9,0,1005,3,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,-4,0,1140,-17,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,69,1,2325,48,1,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,299,1,1200,311,1,0 +2013,4,9,2,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,835,-2,0,1655,1,0,0 +2013,9,10,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2020,-10,0,2145,-10,0,0 +2013,8,17,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1900,-8,0,2145,-31,0,0 +2013,5,5,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,730,-1,0,0 +2013,5,13,1,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-3,0,1241,-30,0,0 +2013,5,24,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,940,-7,0,0 +2013,6,12,3,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,30,-5,0,835,-12,0,0 +2013,10,20,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-9,0,942,-32,0,0 +2013,10,9,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1730,36,1,1840,31,1,0 +2013,4,15,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-5,0,1750,-4,0,0 +2013,7,27,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1705,-6,0,1850,-13,0,0 +2013,5,18,6,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,-10,0,1846,-12,0,0 +2013,10,14,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-9,0,837,-6,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,8,0,900,6,0,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-5,0,1247,-27,0,0 +2013,6,11,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2040,-7,0,2200,-6,0,0 +2013,5,26,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,605,-6,0,901,-17,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,-2,0,1723,-10,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1330,-2,0,2149,-10,0,0 +2013,6,16,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,21,1,1955,34,1,0 +2013,7,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,5,0,1015,3,0,0 +2013,4,10,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,905,0,0,1116,-4,0,0 +2013,10,8,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2125,-4,0,2300,-16,0,0 +2013,6,5,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1545,12,0,1820,-17,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,-4,0,2019,-7,0,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1455,0,0,2245,-6,0,0 +2013,7,20,6,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-10,0,603,-23,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,9,0,1405,4,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2055,-2,0,2208,6,0,0 +2013,8,2,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,1,0,2101,-10,0,0 +2013,5,22,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1655,4,0,1750,2,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,-1,0,128,-16,0,0 +2013,7,23,2,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1319,-6,0,1500,11,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-8,0,1307,-2,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1635,203,1,1900,191,1,0 +2013,8,22,4,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,850,-6,0,1014,57,1,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1025,-4,0,1135,-9,0,0 +2013,4,30,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,265,1,1815,242,1,0 +2013,5,23,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1344,354,1,1621,354,1,0 +2013,9,17,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,848,29,1,1442,16,1,0 +2013,8,17,6,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,13,0,1809,-1,0,0 +2013,7,31,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,25,1,1715,59,1,0 +2013,5,7,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1305,-4,0,1635,-4,0,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1720,55,1,1845,49,1,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-6,0,1003,-10,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1725,36,1,1833,27,1,0 +2013,10,7,1,YV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1629,0,,1750,0,1,1 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2241,62,1,635,55,1,0 +2013,10,9,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-7,0,2020,-11,0,0 +2013,4,27,6,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,950,-2,0,1125,-14,0,0 +2013,5,24,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-6,0,2237,5,0,0 +2013,8,3,6,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1223,-5,0,1436,-23,0,0 +2013,4,5,5,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2010,-3,0,2323,-15,0,0 +2013,4,8,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2155,31,1,2310,20,1,0 +2013,4,24,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1233,0,0,1500,24,1,0 +2013,10,24,4,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1520,59,1,1740,41,1,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2305,-3,0,2359,-3,0,0 +2013,9,8,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,-4,0,2125,3,0,0 +2013,10,20,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,905,-7,0,939,-6,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,6,0,1543,5,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1029,10,0,1149,-8,0,0 +2013,5,22,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,645,-7,0,847,-17,0,0 +2013,6,29,6,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1003,75,1,1535,59,1,0 +2013,10,5,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,910,2,0,1025,-4,0,0 +2013,6,30,7,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,15,1,1645,-5,0,0 +2013,9,11,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,519,-10,0,542,-26,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,840,1,0,1023,4,0,0 +2013,4,27,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-7,0,1443,-6,0,0 +2013,5,20,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-2,0,1209,-5,0,0 +2013,10,19,6,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,43,1,1417,39,1,0 +2013,5,23,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,57,1,2308,33,1,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1800,-3,0,2052,-5,0,0 +2013,8,26,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,9,0,2105,-4,0,0 +2013,4,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1006,-8,0,1324,-22,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,0,0,2220,3,0,0 +2013,5,15,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1745,-7,0,1925,-4,0,0 +2013,7,21,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,0,0,1201,42,1,0 +2013,6,6,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1310,4,0,1553,3,0,0 +2013,6,26,3,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,735,20,1,925,24,1,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1910,-2,0,2233,-20,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1242,-4,0,1500,-12,0,0 +2013,6,13,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,929,20,1,1022,51,1,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,82,1,2044,61,1,0 +2013,6,19,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,715,-22,0,0 +2013,6,6,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-9,0,1345,-16,0,0 +2013,9,23,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,8,0,1045,8,0,0 +2013,5,13,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1228,0,0,1412,9,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1325,21,1,1445,13,0,0 +2013,4,18,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1215,225,1,1425,223,1,0 +2013,5,16,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1340,11,0,1445,3,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-4,0,1054,-6,0,0 +2013,4,9,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1206,-5,0,1750,-29,0,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,755,-1,0,900,-9,0,0 +2013,6,4,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,739,-9,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1950,5,0,2155,-12,0,0 +2013,9,15,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,17,1,1355,10,0,0 +2013,6,5,3,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1810,20,1,1935,13,0,0 +2013,6,7,5,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1058,26,1,1455,46,1,0 +2013,10,2,3,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1401,-7,0,1525,-16,0,0 +2013,7,7,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1720,0,0,1820,-1,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2010,25,1,2325,28,1,0 +2013,5,3,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1352,-3,0,1537,-7,0,0 +2013,4,23,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1505,-1,0,1808,22,1,0 +2013,4,4,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,840,-9,0,1120,-22,0,0 +2013,7,28,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,20,2,0,732,-1,0,0 +2013,4,21,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-6,0,931,0,0,0 +2013,5,5,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,635,-6,0,755,14,0,0 +2013,8,24,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,-3,0,1125,-11,0,0 +2013,9,3,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1010,-4,0,1301,-1,0,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,905,5,0,1729,15,1,0 +2013,9,15,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1802,-3,0,2008,-1,0,0 +2013,10,1,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,2,0,2135,3,0,0 +2013,7,5,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1540,0,0,1826,-15,0,0 +2013,10,29,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,655,-5,0,1018,-17,0,0 +2013,6,30,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1154,-4,0,1451,-6,0,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,18,1,2251,20,1,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2005,48,1,2155,35,1,0 +2013,9,16,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,755,-5,0,1036,-9,0,0 +2013,7,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,951,-7,0,1319,4,0,0 +2013,9,16,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,923,116,1,1040,135,1,0 +2013,10,27,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1415,7,0,1615,22,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1950,38,1,2330,35,1,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1435,-1,0,1845,-36,0,0 +2013,8,30,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1510,-1,0,1612,4,0,0 +2013,10,15,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1334,3,0,1935,-8,0,0 +2013,7,25,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,-8,0,1906,-7,0,0 +2013,5,1,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-3,0,2045,-14,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,-10,0,2348,-10,0,0 +2013,7,14,7,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1940,-2,0,50,-1,0,0 +2013,6,9,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,735,-6,0,1450,-18,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-1,0,1323,-6,0,0 +2013,6,3,1,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1250,-2,0,2114,6,0,0 +2013,7,16,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-2,0,1130,-1,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1945,-3,0,2159,-5,0,0 +2013,9,13,5,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,730,34,1,948,44,1,0 +2013,9,19,4,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1711,-8,0,1943,-19,0,0 +2013,4,25,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1541,-6,0,1620,10,0,0 +2013,10,11,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-3,0,840,-23,0,0 +2013,6,11,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1235,4,0,1355,1,0,0 +2013,9,26,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,-3,0,2209,-10,0,0 +2013,8,15,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1114,0,0,1202,-1,0,0 +2013,5,31,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1752,1,0,2020,-12,0,0 +2013,7,14,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1208,-17,0,1515,-25,0,0 +2013,10,18,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1107,-5,0,1216,-21,0,0 +2013,6,19,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-6,0,2200,1,0,0 +2013,6,30,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1815,-4,0,1940,-6,0,0 +2013,10,21,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1605,-5,0,2113,-20,0,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,849,6,0,1623,5,0,0 +2013,9,26,4,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1630,-1,0,1825,14,0,0 +2013,5,16,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1940,-6,0,2243,-7,0,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2115,87,1,20,86,1,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1302,4,0,1634,0,0,0 +2013,7,31,3,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1743,-2,0,2014,-7,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1620,2,0,1801,-4,0,0 +2013,6,8,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,7,0,817,-8,0,0 +2013,6,23,7,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,11,0,608,1,0,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,32,1,1800,51,1,0 +2013,5,29,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-6,0,1038,-13,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1506,0,0,1743,-14,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1511,-4,0,1841,-11,0,0 +2013,4,2,2,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1300,-5,0,2149,-13,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-4,0,1349,0,0,0 +2013,7,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2000,-8,0,2126,-19,0,0 +2013,10,21,1,9E,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-4,0,1301,-21,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1715,8,0,1840,9,0,0 +2013,10,13,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1259,23,1,1432,27,1,0 +2013,5,28,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,835,-1,0,940,-3,0,0 +2013,8,16,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-6,0,2110,-5,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-8,0,1415,-29,0,0 +2013,9,18,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1014,-7,0,1129,-24,0,0 +2013,7,15,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,605,15,1,931,-26,0,0 +2013,7,9,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1431,1,0,1605,-30,0,0 +2013,5,22,3,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1607,-8,0,1758,-34,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,-1,0,735,3,0,0 +2013,8,8,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,2,0,2203,-8,0,0 +2013,7,30,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1840,14,0,2100,12,0,0 +2013,9,3,2,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,-2,0,1220,-27,0,0 +2013,9,3,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-13,0,2112,11,0,0 +2013,5,23,4,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1530,-2,0,1805,31,1,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1530,-1,0,1835,3,0,0 +2013,4,19,5,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,-5,0,841,-35,0,0 +2013,10,21,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-1,0,859,2,0,0 +2013,8,5,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,1,0,1641,6,0,0 +2013,5,25,6,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1315,32,1,1435,24,1,0 +2013,5,7,2,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1510,22,1,1800,11,0,0 +2013,10,25,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,40,-2,0,530,-16,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2200,-2,0,2343,-6,0,0 +2013,7,17,3,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1034,-2,0,1152,-4,0,0 +2013,6,10,1,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,948,-8,0,1230,-15,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,755,-1,0,910,-3,0,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1455,10,0,1610,4,0,0 +2013,9,24,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1100,54,1,1210,67,1,0 +2013,6,3,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-9,0,1450,2,0,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2235,-5,0,130,-27,0,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-8,0,1328,0,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,53,1,1328,21,1,0 +2013,7,15,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-10,0,810,-9,0,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1705,6,0,1805,5,0,0 +2013,5,27,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,924,-10,0,1219,-15,0,0 +2013,4,7,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,545,-2,0,758,-11,0,0 +2013,10,10,4,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1710,7,0,2033,-23,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2105,51,1,2325,55,1,0 +2013,10,11,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,0,0,1925,0,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1705,-2,0,1815,-15,0,0 +2013,9,22,7,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,648,-4,0,1105,-8,0,0 +2013,5,27,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1805,3,0,2050,-9,0,0 +2013,9,26,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1330,-4,0,1505,-11,0,0 +2013,8,29,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,14,0,1950,-11,0,0 +2013,7,10,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,820,0,,940,0,1,1 +2013,4,21,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,945,-4,0,1641,-5,0,0 +2013,9,13,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-6,0,1925,-11,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1130,-3,0,1405,-1,0,0 +2013,5,19,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1048,-2,0,1257,-16,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,710,-5,0,1110,-1,0,0 +2013,5,28,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1114,0,,1710,0,1,1 +2013,9,28,6,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1500,-3,0,1615,-2,0,0 +2013,6,26,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,36,1,1600,14,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1736,7,0,1851,33,1,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,-3,0,2000,-15,0,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1948,-5,0,2216,-15,0,0 +2013,4,15,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,-8,0,1830,-30,0,0 +2013,9,26,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,124,1,2155,121,1,0 +2013,8,1,4,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1305,11,0,1455,9,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1735,0,0,2100,-10,0,0 +2013,5,7,2,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1208,-4,0,1502,-29,0,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,610,3,0,735,-10,0,0 +2013,7,4,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,127,-7,0,758,-17,0,0 +2013,10,6,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,3,0,1630,-6,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,935,11,0,1725,-4,0,0 +2013,9,2,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1026,-4,0,0 +2013,8,15,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,16,1,1523,13,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1525,35,1,1815,38,1,0 +2013,8,24,6,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,-2,0,1645,-5,0,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-3,0,922,8,0,0 +2013,5,19,7,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-6,0,1916,-23,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,-1,0,1100,-6,0,0 +2013,5,31,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1554,7,0,1820,-3,0,0 +2013,9,1,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-1,0,1320,-2,0,0 +2013,8,28,3,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1221,-9,0,1406,-3,0,0 +2013,4,15,1,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1959,5,0,2239,-9,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,30,1,1740,27,1,0 +2013,4,6,6,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1659,52,1,1959,36,1,0 +2013,4,24,3,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,0,,2044,0,1,1 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1010,4,0,1445,-13,0,0 +2013,10,9,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-3,0,1600,-4,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1920,32,1,2035,29,1,0 +2013,4,24,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,924,16,1,1216,11,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1745,9,0,1757,-4,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,30,1,2030,24,1,0 +2013,9,4,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2231,-6,0,2351,-2,0,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,-7,0,2349,-7,0,0 +2013,10,13,7,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1035,-15,0,1305,-5,0,0 +2013,10,25,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,615,-1,0,933,-4,0,0 +2013,10,27,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-2,0,1911,-9,0,0 +2013,5,19,7,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1757,46,1,2130,42,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,-2,0,1105,-22,0,0 +2013,7,22,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1120,-3,0,1249,7,0,0 +2013,6,8,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,5,0,1608,-1,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2006,3,0,2145,-12,0,0 +2013,8,19,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,930,-17,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1800,47,1,1944,24,1,0 +2013,5,10,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,47,1,2045,79,1,0 +2013,5,10,5,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1130,-6,0,1228,0,0,0 +2013,7,22,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1805,120,1,2030,138,1,0 +2013,6,22,6,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1230,-4,0,1500,-10,0,0 +2013,5,7,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,600,-6,0,745,-11,0,0 +2013,8,18,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1501,1,0,1553,1,0,0 +2013,7,22,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,-2,0,841,-3,0,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,630,-3,0,945,-12,0,0 +2013,10,5,6,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,650,4,0,935,-15,0,0 +2013,7,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,835,6,0,955,-1,0,0 +2013,6,3,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-10,0,1414,0,0,0 +2013,6,15,6,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,850,-6,0,1243,-34,0,0 +2013,10,27,7,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1540,8,0,1635,0,0,0 +2013,8,5,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-9,0,904,-12,0,0 +2013,9,4,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-1,0,1055,-25,0,0 +2013,9,18,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-8,0,854,-15,0,0 +2013,10,14,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1025,46,1,1135,44,1,0 +2013,8,16,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,758,-3,0,834,3,0,0 +2013,9,10,2,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,-5,0,1529,-5,0,0 +2013,5,23,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,1,0,1005,-10,0,0 +2013,7,28,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1237,2,0,1359,-11,0,0 +2013,9,7,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-7,0,2125,-15,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,15,1,1825,4,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-2,0,1555,-12,0,0 +2013,9,23,1,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1600,-10,0,1720,-9,0,0 +2013,10,28,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1125,-11,0,1304,-12,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1825,13,0,55,3,0,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,810,-5,0,1140,-10,0,0 +2013,6,20,4,EV,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-8,0,1840,-20,0,0 +2013,6,13,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,925,-5,0,1040,-7,0,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,-1,0,1420,0,0,0 +2013,10,1,2,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-9,0,445,-9,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-2,0,900,-13,0,0 +2013,10,19,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1425,5,0,1720,10,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1640,13,0,2310,4,0,0 +2013,4,6,6,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-5,0,1235,-14,0,0 +2013,8,26,1,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1150,5,0,1415,-33,0,0 +2013,4,13,6,OO,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-13,0,1556,-13,0,0 +2013,7,31,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,30,-2,0,814,-13,0,0 +2013,4,16,2,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1120,51,1,1930,26,1,0 +2013,6,5,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1357,-5,0,1609,14,0,0 +2013,6,25,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-4,0,1012,3,0,0 +2013,9,20,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,20,1,1756,11,0,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,956,-5,0,1527,10,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,4,0,1305,-21,0,0 +2013,10,6,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,0,0,1320,-7,0,0 +2013,8,27,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1010,-3,0,1247,12,0,0 +2013,6,11,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1620,-11,0,0 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1105,-3,0,1335,-15,0,0 +2013,7,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,838,-5,0,1213,-9,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1600,59,1,1737,54,1,0 +2013,10,8,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1836,13,0,2115,12,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,10,0,2007,-15,0,0 +2013,9,27,5,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1930,9,0,2247,0,0,0 +2013,6,28,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1040,0,0,1355,10,0,0 +2013,10,8,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1700,21,1,1759,20,1,0 +2013,8,20,2,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1113,-10,0,1348,-14,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,10,0,2148,-1,0,0 +2013,10,27,7,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,4,0,1913,1,0,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-2,0,1349,-13,0,0 +2013,10,15,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,-2,0,2028,0,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,850,4,0,1230,-5,0,0 +2013,4,19,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1556,-8,0,1654,-11,0,0 +2013,4,4,4,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1903,5,0,2100,-9,0,0 +2013,6,19,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,68,1,1935,72,1,0 +2013,10,29,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-11,0,854,-31,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,0,0,1720,-19,0,0 +2013,9,28,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,1938,-22,0,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,67,1,1935,61,1,0 +2013,8,20,2,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1455,12,0,1625,-3,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,48,1,2032,42,1,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1131,16,1,1423,10,0,0 +2013,6,17,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-8,0,1355,-21,0,0 +2013,5,7,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1345,-2,0,1910,-18,0,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,3,0,1131,-19,0,0 +2013,7,21,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1430,-4,0,1810,-9,0,0 +2013,9,9,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1155,3,0,1330,-7,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-4,0,1445,-3,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,-4,0,2347,-16,0,0 +2013,9,23,1,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,640,-2,0,755,1,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,-3,0,1158,-2,0,0 +2013,9,8,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,0,0,2015,14,0,0 +2013,9,18,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,-6,0,2250,-5,0,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-1,0,841,-22,0,0 +2013,9,4,3,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,-4,0,1847,-7,0,0 +2013,5,29,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1035,-3,0,1144,-4,0,0 +2013,4,24,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,-5,0,1740,-16,0,0 +2013,7,24,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,8,0,1940,3,0,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,59,-3,0,629,-9,0,0 +2013,7,10,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-5,0,1235,4,0,0 +2013,5,24,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1120,-1,0,1335,-2,0,0 +2013,5,6,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,7,0,2055,-9,0,0 +2013,10,30,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1540,3,0,1630,24,1,0 +2013,4,14,7,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1450,19,1,1615,25,1,0 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,645,6,0,915,-17,0,0 +2013,5,17,5,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1856,-3,0,2118,-10,0,0 +2013,9,12,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,47,1,1234,8,0,0 +2013,5,8,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1535,-1,0,1640,-8,0,0 +2013,10,4,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,920,11,0,1045,4,0,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1135,5,0,1300,-1,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,2,0,1034,-8,0,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1400,186,1,1505,182,1,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1405,0,0,1500,7,0,0 +2013,5,2,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,29,1,1905,2,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,-3,0,1355,-7,0,0 +2013,7,22,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,0,0,1040,12,0,0 +2013,8,7,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,20,1,1916,17,1,0 +2013,9,27,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,715,-3,0,749,-16,0,0 +2013,10,11,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,-9,0,842,-2,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1630,0,0,2010,-9,0,0 +2013,6,21,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1410,4,0,1555,20,1,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,12,0,1835,2,0,0 +2013,5,19,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1455,0,0,1610,-4,0,0 +2013,7,10,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1325,0,,1335,0,1,1 +2013,4,2,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1210,80,1,1636,63,1,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1400,8,0,1450,1,0,0 +2013,5,5,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1905,2,0,2020,-2,0,0 +2013,10,15,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-4,0,1029,-10,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,925,5,0,1040,2,0,0 +2013,5,19,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1700,15,1,2200,5,0,0 +2013,8,20,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,39,1,1728,32,1,0 +2013,5,19,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1955,5,0,2210,-16,0,0 +2013,4,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1145,-2,0,1355,-5,0,0 +2013,6,19,3,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,930,-12,0,1105,-13,0,0 +2013,6,22,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,700,-1,0,853,-2,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1145,-1,0,1350,-3,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1310,18,1,1640,10,0,0 +2013,4,20,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,-4,0,1330,3,0,0 +2013,4,21,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,900,-6,0,1011,-21,0,0 +2013,10,4,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,-5,0,2018,-14,0,0 +2013,4,14,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,6,0,1435,-3,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1120,-1,0,1715,9,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,21,1,1720,11,0,0 +2013,8,11,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,2,0,1025,-13,0,0 +2013,9,11,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1905,15,1,2005,17,1,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1936,2,0,2155,17,1,0 +2013,8,9,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1220,-1,0,1350,-6,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,940,20,1,1045,38,1,0 +2013,4,20,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-4,0,1345,-10,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,5,0,2240,5,0,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,78,1,2320,74,1,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2130,2,0,2255,-9,0,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2130,11,0,2350,8,0,0 +2013,10,23,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-1,0,1316,-10,0,0 +2013,8,25,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-9,0,854,-22,0,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1527,-5,0,1701,-7,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1331,-3,0,1500,-22,0,0 +2013,4,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,42,1,1140,45,1,0 +2013,7,24,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-7,0,1756,7,0,0 +2013,10,24,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-2,0,2135,-10,0,0 +2013,4,9,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1655,86,1,1731,83,1,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1455,-5,0,1625,-9,0,0 +2013,8,23,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1345,-13,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-5,0,1320,-13,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1735,-5,0,1855,-6,0,0 +2013,4,19,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-5,0,1401,-15,0,0 +2013,8,28,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1101,-4,0,1246,-10,0,0 +2013,4,22,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,624,-8,0,752,-10,0,0 +2013,8,8,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2055,17,1,2220,11,0,0 +2013,9,19,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,834,-7,0,929,2,0,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,835,19,1,1004,12,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1035,38,1,1130,33,1,0 +2013,6,24,1,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,84,1,1818,107,1,0 +2013,8,18,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,18,1,2346,-3,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1640,42,1,1911,16,1,0 +2013,8,29,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,3,0,950,-9,0,0 +2013,10,10,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,-5,0,2128,-1,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1655,66,1,2130,53,1,0 +2013,7,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,63,1,1452,106,1,0 +2013,8,16,5,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,-5,0,1845,-18,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2055,5,0,2320,-5,0,0 +2013,7,8,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1153,73,1,1359,88,1,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2130,58,1,2235,40,1,0 +2013,10,19,6,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1206,-3,0,1415,8,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,9,0,1427,10,0,0 +2013,8,26,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,5,0,1306,-3,0,0 +2013,7,28,7,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,0,,1810,0,1,1 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,-2,0,1907,-11,0,0 +2013,5,18,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1205,0,0,1305,-4,0,0 +2013,6,12,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,0,0,1048,-1,0,0 +2013,5,16,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,751,-9,0,0 +2013,7,20,6,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-3,0,851,5,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1555,1,0,2305,-6,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,810,-9,0,854,-11,0,0 +2013,10,1,2,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1145,-5,0,1335,-19,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1740,3,0,1956,-18,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1627,-4,0,1912,-1,0,0 +2013,4,10,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1510,31,1,1920,40,1,0 +2013,7,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1040,4,0,1205,-10,0,0 +2013,9,2,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1744,160,1,1900,147,1,0 +2013,5,14,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,7,0,1100,-40,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,705,-4,0,925,-8,0,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-5,0,1630,-12,0,0 +2013,9,26,4,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1630,-2,0,1805,-10,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,61,1,1354,55,1,0 +2013,9,14,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,-5,0,1636,-12,0,0 +2013,5,31,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,-9,0,2105,-17,0,0 +2013,8,7,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,-3,0,905,-2,0,0 +2013,9,30,1,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1355,19,1,1842,10,0,0 +2013,10,31,4,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,902,-4,0,1110,-13,0,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,900,76,1,1015,68,1,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,-2,0,1040,8,0,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,20,1,2300,14,0,0 +2013,10,9,3,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,28,1,1935,32,1,0 +2013,7,7,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,-5,0,1923,-7,0,0 +2013,10,11,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1115,-2,0,1255,-5,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,1,0,1330,0,0,0 +2013,5,11,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,32,1,2050,28,1,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1529,14,0,1729,11,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2015,22,1,2258,-8,0,0 +2013,7,14,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,15,1,1245,0,0,0 +2013,6,16,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1047,-4,0,1205,-19,0,0 +2013,5,27,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2035,-10,0,2055,-4,0,0 +2013,9,2,1,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,0,0,845,7,0,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,835,-6,0,1012,-11,0,0 +2013,5,1,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-5,0,1500,-6,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,4,0,1005,5,0,0 +2013,6,15,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1245,6,0,1345,5,0,0 +2013,8,30,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-2,0,1915,-11,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1053,-16,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,-2,0,1950,18,1,0 +2013,9,10,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,59,-2,0,630,-3,0,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1910,-3,0,2015,-2,0,0 +2013,10,5,6,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,832,-8,0,954,-13,0,0 +2013,6,7,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,0,,2110,0,1,1 +2013,6,8,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-3,0,1439,-17,0,0 +2013,9,6,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-2,0,1903,5,0,0 +2013,8,26,1,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1010,25,1,1150,26,1,0 +2013,10,28,1,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,728,20,1,925,22,1,0 +2013,10,15,2,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1205,-3,0,2040,-38,0,0 +2013,9,15,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,36,1,1305,32,1,0 +2013,6,10,1,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,7,0,1737,5,0,0 +2013,8,9,5,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,-1,0,2139,-7,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1133,-4,0,2004,28,1,0 +2013,7,16,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-3,0,1227,10,0,0 +2013,5,30,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,831,-6,0,1102,-24,0,0 +2013,9,5,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,0,0,1905,-11,0,0 +2013,7,22,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,46,1,1125,42,1,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,-4,0,2243,-27,0,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,-1,0,2359,0,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,-1,0,1420,-21,0,0 +2013,4,8,1,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,858,0,0,1020,12,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,840,0,,1010,0,1,1 +2013,9,5,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-5,0,1746,-11,0,0 +2013,5,15,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1217,81,1,1317,75,1,0 +2013,5,31,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-2,0,1300,-7,0,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,905,48,1,1734,43,1,0 +2013,4,2,2,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1450,8,0,1655,17,1,0 +2013,8,12,1,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1050,-10,0,1900,0,0,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1557,-5,0,1717,-12,0,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,840,15,1,1405,17,1,0 +2013,5,3,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1515,-1,0,1810,-8,0,0 +2013,5,17,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1053,-4,0,1210,-11,0,0 +2013,7,17,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,5,0,2125,-5,0,0 +2013,6,13,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1348,16,1,1939,20,1,0 +2013,8,22,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1942,0,0,2113,-6,0,0 +2013,7,13,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,34,1,1055,40,1,0 +2013,10,27,7,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1655,-15,0,1840,-13,0,0 +2013,6,24,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2130,11,0,2235,4,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1247,-4,0,1422,-8,0,0 +2013,8,1,4,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,545,-4,0,656,-6,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,5,0,1852,-22,0,0 +2013,7,20,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2200,17,1,534,1,0,0 +2013,7,28,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,33,1,2354,28,1,0 +2013,9,22,7,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-4,0,1815,-14,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1536,4,0,1820,6,0,0 +2013,9,10,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,-1,0,1300,-5,0,0 +2013,7,24,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,755,-1,0,837,-5,0,0 +2013,6,8,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,2,0,1652,-2,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,-4,0,740,-12,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,930,7,0,1035,2,0,0 +2013,10,20,7,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,1,0,1230,-5,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1452,4,0,1614,-15,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,8,0,1840,8,0,0 +2013,8,8,4,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1317,77,1,1505,66,1,0 +2013,10,7,1,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1630,9,0,1804,-8,0,0 +2013,7,15,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,6,0,1700,53,1,0 +2013,8,10,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,748,-3,0,1030,-20,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,0,0,1025,-11,0,0 +2013,10,26,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,953,14,0,1451,8,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,47,1,1631,30,1,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,710,-3,0,822,-18,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,3,0,1150,7,0,0 +2013,5,3,5,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1930,16,1,2153,7,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,77,1,2240,83,1,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2014,-6,0,2324,-5,0,0 +2013,5,26,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1118,-5,0,1144,-11,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,18,1,5,-3,0,0 +2013,9,5,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,643,0,0,808,-9,0,0 +2013,9,20,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-1,0,1725,-5,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,630,-3,0,952,-22,0,0 +2013,5,19,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,955,0,0,1049,-9,0,0 +2013,4,25,4,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,27,1,1830,39,1,0 +2013,8,2,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,16,1,2105,-4,0,0 +2013,5,31,5,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-2,0,805,-9,0,0 +2013,8,30,5,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,614,-1,0,748,-14,0,0 +2013,4,28,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1855,-2,0,1955,-7,0,0 +2013,4,7,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1522,-1,0,1712,-3,0,0 +2013,7,25,4,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1153,73,1,2023,80,1,0 +2013,10,21,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1900,-5,0,2000,-13,0,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1655,-3,0,1744,1,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,-3,0,2222,-18,0,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1750,16,1,1950,13,0,0 +2013,10,18,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,20,1,2155,27,1,0 +2013,7,22,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2100,2,0,2220,3,0,0 +2013,9,29,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2030,-5,0,502,-31,0,0 +2013,9,10,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,2,0,944,2,0,0 +2013,6,16,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,2,0,1803,6,0,0 +2013,5,23,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1034,73,1,1119,63,1,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2035,20,1,2151,22,1,0 +2013,5,17,5,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1245,0,0,2027,11,0,0 +2013,5,25,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1800,130,1,2155,119,1,0 +2013,8,20,2,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1845,43,1,2325,48,1,0 +2013,10,14,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,61,1,1845,63,1,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2110,24,1,2355,12,0,0 +2013,4,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-2,0,1801,3,0,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,515,-3,0,800,-36,0,0 +2013,5,27,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1452,1,0,1759,-17,0,0 +2013,10,4,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,929,15,1,1129,0,0,0 +2013,8,22,4,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,742,42,1,1056,40,1,0 +2013,5,3,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1853,0,,1913,0,1,1 +2013,7,4,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1205,-2,0,1419,7,0,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1040,5,0,1216,13,0,0 +2013,7,14,7,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1305,-2,0,1435,-12,0,0 +2013,8,15,4,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-12,0,1046,-14,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2255,6,0,5,-21,0,0 +2013,8,2,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,0,0,1911,-2,0,0 +2013,7,26,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-5,0,850,5,0,0 +2013,7,30,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,839,-11,0,1013,-1,0,0 +2013,7,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1201,-1,0,1302,-10,0,0 +2013,8,30,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,-6,0,1600,-36,0,0 +2013,8,20,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,930,-7,0,1218,-28,0,0 +2013,10,6,7,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1627,3,0,1857,-7,0,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1015,25,1,1225,43,1,0 +2013,6,17,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1045,-2,0,1135,-3,0,0 +2013,4,14,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1810,34,1,1935,30,1,0 +2013,6,25,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1814,0,,1935,0,1,1 +2013,4,18,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,610,-5,0,745,0,1,1 +2013,6,14,5,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,-3,0,2127,3,0,0 +2013,6,6,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1250,21,1,1825,21,1,0 +2013,4,14,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-3,0,805,-6,0,0 +2013,7,13,6,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,-3,0,1605,-13,0,0 +2013,9,2,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,0,0,1825,-6,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,-4,0,1910,-22,0,0 +2013,4,29,1,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,638,-9,0,809,-18,0,0 +2013,6,19,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-3,0,1240,-6,0,0 +2013,8,10,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1820,3,0,2100,12,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,6,0,1907,-20,0,0 +2013,7,31,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1314,31,1,1517,16,1,0 +2013,8,27,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,634,-6,0,827,-24,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1530,-5,0,1755,-8,0,0 +2013,5,13,1,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1931,-9,0,2256,-13,0,0 +2013,9,30,1,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,-10,0,1605,-11,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1155,45,1,1410,28,1,0 +2013,5,9,4,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1430,-4,0,1610,-6,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1320,13,0,1545,3,0,0 +2013,10,9,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,940,-2,0,1050,-4,0,0 +2013,4,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,845,-7,0,922,-5,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,11,0,1525,-8,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,600,-3,0,905,-8,0,0 +2013,8,9,5,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,928,-1,0,1051,6,0,0 +2013,7,28,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2035,2,0,2145,11,0,0 +2013,8,7,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,2,0,1610,-9,0,0 +2013,8,7,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,9,0,1910,19,1,0 +2013,9,29,7,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,842,-7,0,1234,-11,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,6,0,1540,-8,0,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1905,10,0,2157,-6,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,1,0,1600,-14,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1400,3,0,1740,0,0,0 +2013,5,16,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,545,-3,0,803,-2,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,62,1,2252,42,1,0 +2013,6,6,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1640,26,1,1730,21,1,0 +2013,4,12,5,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,600,1,0,755,-4,0,0 +2013,4,4,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1655,49,1,1925,80,1,0 +2013,6,21,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1320,-2,0,1520,2,0,0 +2013,10,1,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1030,-3,0,1310,-7,0,0 +2013,8,8,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,47,1,1523,30,1,0 +2013,5,1,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,955,-7,0,1140,-34,0,0 +2013,4,28,7,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,1,0,1335,-20,0,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1030,0,0,1149,-19,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-4,0,2159,-13,0,0 +2013,10,24,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,723,-4,0,805,-3,0,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,715,2,0,820,0,0,0 +2013,6,13,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,9,0,1705,8,0,0 +2013,9,1,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-6,0,1845,9,0,0 +2013,5,30,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1520,-2,0,1640,-8,0,0 +2013,8,12,1,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1727,60,1,2010,57,1,0 +2013,9,23,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1857,-4,0,2030,-21,0,0 +2013,6,26,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,710,-8,0,835,-21,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,11,0,1615,16,1,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,-6,0,1408,-11,0,0 +2013,4,29,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1315,-3,0,1540,-5,0,0 +2013,10,27,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1915,-8,0,1949,-7,0,0 +2013,9,6,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-6,0,1614,-7,0,0 +2013,5,16,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1439,59,1,1535,52,1,0 +2013,10,3,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,840,-10,0,1006,-29,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,-1,0,2205,-3,0,0 +2013,8,13,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1210,-5,0,1350,-8,0,0 +2013,7,19,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1437,0,,1546,0,1,1 +2013,8,18,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-6,0,1320,-16,0,0 +2013,7,18,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,930,-5,0,1245,-8,0,0 +2013,8,21,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,742,-5,0,900,6,0,0 +2013,9,25,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-5,0,1756,-2,0,0 +2013,7,1,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,1,0,1446,-9,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1335,34,1,1440,42,1,0 +2013,5,26,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2059,-9,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1715,-9,0,1843,-31,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,830,-2,0,940,4,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,10,0,1616,-2,0,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,941,-5,0,1619,-9,0,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,256,1,1629,263,1,0 +2013,8,19,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,-1,0,759,9,0,0 +2013,6,18,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,-4,0,1214,-8,0,0 +2013,9,24,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,545,0,0,855,-26,0,0 +2013,10,25,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,28,1,1652,23,1,0 +2013,6,24,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,13,0,1602,18,1,0 +2013,9,12,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1830,12,0,2155,11,0,0 +2013,7,21,7,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1543,93,1,1835,126,1,0 +2013,6,2,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,42,1,1943,93,1,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1830,0,0,2055,-22,0,0 +2013,8,15,4,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,715,-6,0,840,-16,0,0 +2013,10,10,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2254,-3,0,2359,-11,0,0 +2013,4,20,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,6,0,2100,-9,0,0 +2013,5,24,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1225,18,1,1337,15,1,0 +2013,6,23,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1835,4,0,2005,6,0,0 +2013,4,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1355,1,0,1515,-8,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1435,5,0,1750,-3,0,0 +2013,5,24,5,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,842,-8,0,1022,18,1,0 +2013,7,12,5,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2015,54,1,2258,26,1,0 +2013,7,7,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,847,0,0,934,-4,0,0 +2013,4,5,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1305,-7,0,1455,-17,0,0 +2013,5,3,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,958,3,0,1309,17,1,0 +2013,5,11,6,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1134,-6,0,1404,21,1,0 +2013,10,4,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,112,1,1340,101,1,0 +2013,7,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1855,0,0,20,1,0,0 +2013,6,29,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-5,0,815,-12,0,0 +2013,7,23,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1050,-8,0,1220,-8,0,0 +2013,7,31,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1441,3,0,1629,10,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1500,3,0,1610,-5,0,0 +2013,7,30,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1525,-5,0,1940,-12,0,0 +2013,7,20,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,45,1,1022,33,1,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1930,3,0,2100,1,0,0 +2013,6,21,5,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1914,-1,0,2049,-8,0,0 +2013,6,25,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-1,0,603,5,0,0 +2013,8,13,2,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-7,0,1805,-4,0,0 +2013,4,12,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,820,156,1,938,170,1,0 +2013,6,24,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,45,1,1928,136,1,0 +2013,8,22,4,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,3,0,2120,7,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,8,0,2131,11,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,101,1,1232,94,1,0 +2013,5,3,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1520,-2,0,1620,-5,0,0 +2013,10,2,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,550,-6,0,720,-4,0,0 +2013,9,20,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1735,2,0,2305,-5,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,-4,0,1524,-12,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,27,1,2259,7,0,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1825,-1,0,1945,-11,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1015,0,0,1124,-4,0,0 +2013,4,17,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1602,90,1,1800,83,1,0 +2013,10,4,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1815,133,1,2135,129,1,0 +2013,6,24,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,0,0,2000,-7,0,0 +2013,5,25,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,20,1,615,14,0,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1310,51,1,1535,26,1,0 +2013,7,7,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-5,0,1305,-10,0,0 +2013,5,25,6,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,2,0,1951,-14,0,0 +2013,7,14,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2042,23,1,2319,36,1,0 +2013,10,24,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1535,-6,0,1735,-22,0,0 +2013,9,24,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,-10,0,1511,-19,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,20,1,2130,6,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,35,1,2344,6,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,7,0,1723,28,1,0 +2013,8,20,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,810,-5,0,910,-8,0,0 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1617,-8,0,1710,2,0,0 +2013,6,27,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,26,1,1940,27,1,0 +2013,8,25,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1855,13,0,2225,19,1,0 +2013,9,25,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,-5,0,823,-8,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1122,82,1,1250,73,1,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2146,30,1,42,29,1,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1025,-3,0,1427,-17,0,0 +2013,5,14,2,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1630,-2,0,1800,-14,0,0 +2013,8,5,1,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,630,-6,0,750,-18,0,0 +2013,6,2,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1225,-16,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,4,0,1125,11,0,0 +2013,9,12,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1640,13,0,1815,-2,0,0 +2013,6,25,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1720,11,0,2000,12,0,0 +2013,7,16,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,835,-1,0,935,12,0,0 +2013,6,7,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1019,-10,0,1141,-8,0,0 +2013,9,30,1,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1820,5,0,1959,5,0,0 +2013,4,15,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-7,0,1558,-10,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2050,0,0,10,9,0,0 +2013,8,8,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,804,-5,0,1027,-17,0,0 +2013,7,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1220,0,0,1400,-14,0,0 +2013,8,11,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2100,55,1,2255,44,1,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1905,-3,0,2230,-18,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1912,-4,0,2139,-7,0,0 +2013,9,25,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1945,142,1,2040,138,1,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,72,1,2144,61,1,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,47,1,1325,44,1,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1935,12,0,55,5,0,0 +2013,7,30,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-10,0,1128,-16,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,845,-9,0,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,816,5,0,1304,2,0,0 +2013,4,3,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1754,-4,0,1920,-6,0,0 +2013,6,27,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,910,-10,0,0 +2013,8,30,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,39,1,1940,30,1,0 +2013,9,15,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-6,0,1547,-9,0,0 +2013,6,23,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,102,1,1633,108,1,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1555,2,0,1910,4,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1556,3,0,1917,-2,0,0 +2013,6,25,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,5,0,2235,1,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,900,-2,0,1049,-15,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1942,-1,0,2251,-10,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1520,2,0,1648,-23,0,0 +2013,8,9,5,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1602,-3,0,1918,-20,0,0 +2013,8,12,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1645,-3,0,1750,0,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,20,12,0,556,3,0,0 +2013,5,23,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,53,1,1945,54,1,0 +2013,8,24,6,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1618,1,0,1926,12,0,0 +2013,9,1,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,-3,0,1045,-4,0,0 +2013,10,26,6,FL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1440,-2,0,1539,6,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1615,53,1,2222,77,1,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,819,-7,0,924,3,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1520,19,1,1720,15,1,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1835,-7,0,2057,-8,0,0 +2013,4,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,0,0,2015,-5,0,0 +2013,4,12,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1345,-6,0,1515,-20,0,0 +2013,7,31,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-9,0,1334,-10,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1618,-2,0,1817,-5,0,0 +2013,7,15,1,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,730,-4,0,835,-28,0,0 +2013,4,28,7,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,854,-7,0,1040,-14,0,0 +2013,10,16,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1210,-2,0,1318,-12,0,0 +2013,4,25,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1651,4,0,1936,-1,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2015,-8,0,2213,-9,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2055,26,1,2318,14,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-6,0,1407,-13,0,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1025,-2,0,1309,-18,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1000,-2,0,1130,-14,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,-7,0,1605,-1,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1101,-2,0,1236,1,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1530,-6,0,1850,-19,0,0 +2013,5,18,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-6,0,935,-3,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,-3,0,1745,-12,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,755,7,0,922,-1,0,0 +2013,8,12,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,8,0,1058,36,1,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1805,-2,0,1930,-5,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1421,8,0,1748,-2,0,0 +2013,4,25,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,715,-2,0,955,-13,0,0 +2013,10,25,5,9E,12953,LaGuardia,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1920,39,1,2053,65,1,0 +2013,7,31,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,25,1,2035,23,1,0 +2013,5,11,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,630,-1,0,835,-9,0,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1830,32,1,2038,27,1,0 +2013,5,13,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,18,1,2035,9,0,0 +2013,8,14,3,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1910,1,0,2027,-4,0,0 +2013,7,6,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-7,0,1217,-11,0,0 +2013,10,19,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1345,-6,0,1658,-22,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1200,-4,0,1305,-11,0,0 +2013,9,12,4,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1910,116,1,2235,100,1,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1416,46,1,1644,47,1,0 +2013,6,3,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1426,-5,0,1703,-18,0,0 +2013,7,16,2,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,700,-3,0,750,-7,0,0 +2013,5,28,2,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1207,5,0,1340,3,0,0 +2013,5,26,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1042,5,0,1426,-2,0,0 +2013,7,27,6,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,730,1,0,1031,-17,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,920,10,0,1030,4,0,0 +2013,7,9,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1430,66,1,1610,58,1,0 +2013,9,20,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1050,29,1,1215,28,1,0 +2013,9,24,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,-5,0,1940,-5,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,1,0,1102,-26,0,0 +2013,4,10,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,12,0,647,20,1,0 +2013,8,3,6,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,750,3,0,1010,-12,0,0 +2013,5,26,7,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,0,,1522,0,1,1 +2013,7,26,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1241,0,0,1340,-9,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1438,-4,0,1528,-11,0,0 +2013,9,11,3,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,0,0,1220,-15,0,0 +2013,5,9,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1112,-6,0,1238,-15,0,0 +2013,10,16,3,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-4,0,1815,-4,0,0 +2013,8,12,1,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,840,-5,0,930,-10,0,0 +2013,10,12,6,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,615,-3,0,932,6,0,0 +2013,10,5,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,830,-7,0,1118,3,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1810,3,0,2200,-4,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1045,6,0,1210,-4,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,-1,0,1835,-9,0,0 +2013,6,20,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1511,-10,0,1600,-17,0,0 +2013,6,8,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1229,-6,0,1630,-7,0,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1555,95,1,1810,97,1,0 +2013,7,11,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,42,1,1720,47,1,0 +2013,5,22,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,72,1,1832,60,1,0 +2013,6,23,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,38,1,2207,24,1,0 +2013,6,29,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,12,0,1310,24,1,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1150,0,0,1410,-7,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1425,10,0,1635,5,0,0 +2013,7,2,2,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1635,13,0,1820,7,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,15,1,2357,26,1,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,-6,0,1245,-18,0,0 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1600,4,0,1916,-3,0,0 +2013,10,31,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1350,-1,0,1900,-18,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,38,1,2059,34,1,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1259,6,0,1538,-1,0,0 +2013,6,11,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1120,-4,0,1235,-7,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1310,-4,0,2145,-15,0,0 +2013,10,14,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,6,0,810,-5,0,0 +2013,8,22,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,16,1,2159,23,1,0 +2013,7,30,2,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1353,-7,0,1520,-10,0,0 +2013,7,7,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,700,-3,0,833,6,0,0 +2013,6,8,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,0,0,1359,-3,0,0 +2013,6,3,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1510,2,0,1605,-1,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,940,-7,0,1050,-27,0,0 +2013,8,30,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1541,-3,0,1835,-15,0,0 +2013,4,24,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1555,9,0,1629,11,0,0 +2013,4,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1111,12,0,1405,9,0,0 +2013,5,10,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,740,-2,0,855,-3,0,0 +2013,6,3,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,2,0,1240,-6,0,0 +2013,7,22,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2059,79,1,2226,151,1,0 +2013,7,2,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-3,0,1106,-12,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,952,-3,0,1154,15,1,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-5,0,1510,-26,0,0 +2013,8,17,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1235,41,1,1357,30,1,0 +2013,6,12,3,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1338,8,0,1518,9,0,0 +2013,8,1,4,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,835,19,1,1115,9,0,0 +2013,9,9,1,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1201,-10,0,1259,-19,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1730,-6,0,1915,-30,0,0 +2013,5,15,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,613,-7,0,935,-13,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,7,0,1623,7,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1215,-4,0,1415,-16,0,0 +2013,10,29,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-6,0,1252,9,0,0 +2013,5,26,7,OO,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1650,-6,0,1738,3,0,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,630,-6,0,816,-22,0,0 +2013,6,8,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1835,-4,0,1920,-13,0,0 +2013,8,6,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-5,0,1830,-19,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2025,87,1,2135,81,1,0 +2013,10,17,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,940,-2,0,1055,-10,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-8,0,1917,-14,0,0 +2013,9,25,3,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2305,11,0,635,-10,0,0 +2013,4,2,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-6,0,1712,-12,0,0 +2013,5,31,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,710,-5,0,923,-14,0,0 +2013,6,21,5,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,2020,9,0,2300,13,0,0 +2013,9,25,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,27,1,1942,25,1,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1438,-5,0,1528,-7,0,0 +2013,8,22,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1535,128,1,1715,126,1,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,630,-1,0,952,-1,0,0 +2013,5,23,4,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-3,0,2035,-20,0,0 +2013,4,8,1,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1725,0,0,2149,-14,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,-3,0,1110,7,0,0 +2013,7,20,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,700,2,0,1020,23,1,0 +2013,9,7,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,-11,0,1651,-3,0,0 +2013,8,30,5,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,859,-17,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,3,0,1420,-13,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1309,1,0,1448,-14,0,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1725,0,0,1950,2,0,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1020,10,0,1225,12,0,0 +2013,8,8,4,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,-4,0,1000,-17,0,0 +2013,5,19,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2115,-11,0,2355,-9,0,0 +2013,10,2,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,735,-9,0,905,-24,0,0 +2013,9,18,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,950,-16,0,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1335,2,0,1501,-12,0,0 +2013,7,26,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-6,0,1235,-12,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-1,0,857,-14,0,0 +2013,6,25,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1224,-1,0,1326,-10,0,0 +2013,9,11,3,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1538,230,1,1658,296,1,0 +2013,8,3,6,YV,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1208,-3,0,1331,1,0,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1205,20,1,1325,13,0,0 +2013,6,21,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,957,9,0,0 +2013,9,3,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1710,16,1,1810,16,1,0 +2013,5,16,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1807,12,0,2130,27,1,0 +2013,6,13,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2205,123,1,2323,120,1,0 +2013,7,28,7,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1150,-5,0,1305,-7,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2045,47,1,2215,42,1,0 +2013,5,22,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1250,-13,0,0 +2013,5,16,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1303,22,1,2130,4,0,0 +2013,4,27,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-6,0,950,8,0,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1334,16,1,1432,25,1,0 +2013,8,3,6,9E,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,-7,0,1451,-9,0,0 +2013,9,26,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1330,-6,0,1631,-5,0,0 +2013,7,20,6,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1315,0,0,1905,-14,0,0 +2013,9,3,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-2,0,1335,-11,0,0 +2013,6,23,7,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2229,41,1,425,29,1,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1305,27,1,1600,37,1,0 +2013,7,15,1,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-5,0,2019,-34,0,0 +2013,4,25,4,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,0,0,1227,22,1,0 +2013,9,12,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1649,-5,0,1911,-3,0,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1610,-3,0,1803,6,0,0 +2013,4,23,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1520,6,0,1629,14,0,0 +2013,10,3,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,0,,1150,0,1,1 +2013,6,6,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1600,1,0,2025,-5,0,0 +2013,4,29,1,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-10,0,940,-6,0,0 +2013,9,23,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1026,-1,0,1130,-5,0,0 +2013,5,13,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-5,0,1806,-10,0,0 +2013,7,19,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-6,0,712,-1,0,0 +2013,8,3,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,3,0,1858,-20,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,955,14,0,1510,25,1,0 +2013,6,10,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,41,1,1655,75,1,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,3,0,2130,5,0,0 +2013,10,12,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1600,-2,0,1815,23,1,0 +2013,5,14,2,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-7,0,740,-14,0,0 +2013,6,22,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-6,0,1809,34,1,0 +2013,9,29,7,DL,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,2235,-8,0,556,-23,0,0 +2013,9,7,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-8,0,753,-13,0,0 +2013,5,7,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,-7,0,1112,-3,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1335,20,1,1450,18,1,0 +2013,5,3,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1032,-4,0,1130,-6,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-5,0,1010,-21,0,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,550,-1,0,911,-6,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1640,38,1,2320,31,1,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1350,32,1,1458,38,1,0 +2013,10,25,5,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1748,8,0,2316,-7,0,0 +2013,8,29,4,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2350,41,1,548,58,1,0 +2013,5,24,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1355,25,1,2000,16,1,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,4,0,2104,-4,0,0 +2013,10,14,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,833,-5,0,1242,-5,0,0 +2013,5,16,4,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,1834,-8,0,1900,-18,0,0 +2013,9,10,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13244,Memphis International,Memphis,TN,1655,-5,0,1800,14,0,0 +2013,10,21,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1905,-7,0,2006,-12,0,0 +2013,5,5,7,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,-8,0,845,-42,0,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1632,2,0,1758,-1,0,0 +2013,4,10,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1444,-3,0,1633,-13,0,0 +2013,9,16,1,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1901,4,0,2110,-1,0,0 +2013,7,11,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,1,0,1355,-4,0,0 +2013,7,22,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-3,0,851,-14,0,0 +2013,5,1,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,800,0,0,832,7,0,0 +2013,8,26,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-4,0,903,-19,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,120,1,1550,124,1,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1030,7,0,1300,4,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1915,25,1,2255,31,1,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1607,-1,0,1756,-19,0,0 +2013,8,16,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-6,0,1530,-2,0,0 +2013,8,11,7,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1750,3,0,1940,-14,0,0 +2013,8,23,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1910,-6,0,2126,3,0,0 +2013,7,15,1,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,-6,0,1205,0,0,0 +2013,4,24,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1900,31,1,1935,36,1,0 +2013,4,19,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-6,0,840,-30,0,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,835,-2,0,1035,-5,0,0 +2013,10,9,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,851,1,0,0 +2013,4,25,4,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,720,1,0,1235,-11,0,0 +2013,10,30,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1110,-9,0,1327,-16,0,0 +2013,9,28,6,EV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1240,-3,0,1432,-4,0,0 +2013,9,16,1,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1522,36,1,1840,25,1,0 +2013,8,1,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1510,8,0,1605,11,0,0 +2013,8,23,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1315,20,1,1430,27,1,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1755,192,1,2120,187,1,0 +2013,6,16,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,-3,0,1319,-14,0,0 +2013,7,29,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,840,5,0,1020,-14,0,0 +2013,4,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-1,0,1334,-7,0,0 +2013,7,25,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,-1,0,838,5,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,19,1,1354,29,1,0 +2013,8,13,2,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,630,15,1,1120,35,1,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,640,8,0,845,0,0,0 +2013,10,4,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,4,0,1137,-16,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,-5,0,2311,-3,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1015,-4,0,1154,7,0,0 +2013,8,25,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,745,-8,0,920,-9,0,0 +2013,6,2,7,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,915,-4,0,1205,-19,0,0 +2013,4,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,19,1,1359,19,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,37,1,1245,37,1,0 +2013,9,15,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,21,1,2053,14,0,0 +2013,10,28,1,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1710,8,0,1829,4,0,0 +2013,6,14,5,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,114,1,835,108,1,0 +2013,7,5,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,2,0,1217,-8,0,0 +2013,7,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1215,14,0,1310,-1,0,0 +2013,5,20,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,3,0,1030,-10,0,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1020,-3,0,1310,-9,0,0 +2013,8,18,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1053,-7,0,1131,-8,0,0 +2013,4,17,3,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1215,-1,0,1405,-1,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,655,11,0,1200,-2,0,0 +2013,8,10,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1045,3,0,1135,-11,0,0 +2013,9,22,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,735,-8,0,1036,-14,0,0 +2013,9,25,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1915,-6,0,2058,-7,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1133,9,0,1309,15,1,0 +2013,5,2,4,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,1945,-28,0,0 +2013,6,13,4,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,600,28,1,716,31,1,0 +2013,4,14,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1100,-4,0,1245,-25,0,0 +2013,10,9,3,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-10,0,911,-9,0,0 +2013,4,26,5,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1600,-1,0,1952,-14,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1040,10,0,1600,-19,0,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,830,-3,0,1125,8,0,0 +2013,7,27,6,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1245,154,1,1538,185,1,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,950,20,1,1145,38,1,0 +2013,5,26,7,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1910,1,0,2050,-3,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1003,18,1,1255,9,0,0 +2013,9,22,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,10,0,2215,-22,0,0 +2013,8,17,6,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-4,0,846,6,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1505,-3,0,1650,-24,0,0 +2013,6,16,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,923,-8,0,0 +2013,10,28,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2213,-3,0,28,-22,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,11,0,1410,-4,0,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,729,-3,0,914,-25,0,0 +2013,6,12,3,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,5,0,2303,39,1,0 +2013,4,8,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-3,0,1222,-17,0,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,2030,49,1,2220,37,1,0 +2013,6,4,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-1,0,820,-5,0,0 +2013,4,8,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-1,0,836,-7,0,0 +2013,4,17,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1412,117,1,2014,138,1,0 +2013,5,14,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,750,20,1,920,-9,0,0 +2013,7,18,4,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,-1,0,1019,-7,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,941,18,1,1116,15,1,0 +2013,10,16,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,2,0,1825,0,0,0 +2013,9,21,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1910,0,0,2159,13,0,0 +2013,10,19,6,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-10,0,1438,-16,0,0 +2013,10,8,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-7,0,1917,-12,0,0 +2013,7,23,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,-5,0,1550,-31,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-7,0,1657,-35,0,0 +2013,9,25,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,725,-2,0,730,24,1,0 +2013,7,6,6,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,600,-5,0,1415,-23,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1919,6,0,2244,-11,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1512,0,0,1715,-11,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1245,23,1,1435,156,1,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1603,40,1,1740,38,1,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1250,-3,0,1445,-17,0,0 +2013,6,17,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-2,0,1555,-2,0,0 +2013,6,1,6,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,8,0,2254,7,0,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,820,-1,0,925,-9,0,0 +2013,5,7,2,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,635,0,0,845,-6,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2020,1,0,2352,4,0,0 +2013,6,24,1,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1036,-18,0,0 +2013,5,23,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1425,0,0,1747,-1,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1449,-2,0,1626,-16,0,0 +2013,10,11,5,F9,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1940,-63,0,2034,-23,0,0 +2013,6,30,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,650,-2,0,820,-8,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2045,-6,0,2150,1,0,0 +2013,7,6,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1030,-8,0,1245,-14,0,0 +2013,5,10,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,24,1,1510,13,0,0 +2013,6,17,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1434,15,1,1616,-1,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2040,-2,0,2220,-12,0,0 +2013,9,1,7,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,845,19,1,955,0,0,0 +2013,6,28,5,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,820,-4,0,940,-14,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2135,41,1,2235,32,1,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,835,4,0,1027,-17,0,0 +2013,9,21,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1640,30,1,1815,30,1,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,600,0,0,935,11,0,0 +2013,6,7,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,23,1,1255,19,1,0 +2013,9,6,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-4,0,1108,3,0,0 +2013,5,24,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,615,0,,818,0,1,1 +2013,9,25,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2140,-9,0,2250,-25,0,0 +2013,8,11,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1731,-13,0,1849,11,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1609,-11,0,2012,-4,0,0 +2013,7,6,6,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,725,2,0,742,-12,0,0 +2013,10,2,3,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-14,0,2020,-14,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,811,-5,0,1008,-30,0,0 +2013,8,26,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1104,14,0,1229,37,1,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,24,1,1415,25,1,0 +2013,6,29,6,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1215,7,0,1345,2,0,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1440,-4,0,1600,-23,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1510,-3,0,1944,-5,0,0 +2013,10,7,1,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,835,-4,0,1110,-12,0,0 +2013,9,13,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,948,-5,0,1205,-11,0,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1214,132,1,1959,126,1,0 +2013,7,8,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-3,0,1352,-11,0,0 +2013,5,14,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,805,-6,0,935,-12,0,0 +2013,9,16,1,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1210,-8,0,2029,-6,0,0 +2013,7,18,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,5,0,2040,-1,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1710,0,0,1844,14,0,0 +2013,4,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1106,-1,0,1204,-14,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,2125,37,1,5,24,1,0 +2013,6,7,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,920,0,0,1020,-12,0,0 +2013,10,9,3,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1850,-6,0,2011,6,0,0 +2013,8,9,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1845,-9,0,2047,6,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,0,0,1555,-2,0,0 +2013,7,29,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,35,1,1900,23,1,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1345,-1,0,1532,-14,0,0 +2013,4,11,4,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-7,0,816,-9,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,-6,0,1130,6,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,2,0,1025,-3,0,0 +2013,10,25,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-7,0,843,-17,0,0 +2013,7,14,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,15,1,1420,7,0,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2015,13,0,2115,10,0,0 +2013,8,16,5,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1455,-3,0,1715,-34,0,0 +2013,9,18,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,1,0,1850,-2,0,0 +2013,6,17,1,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2010,143,1,2240,128,1,0 +2013,6,5,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-5,0,712,11,0,0 +2013,10,31,4,9E,12451,Jacksonville International,Jacksonville,FL,12953,LaGuardia,New York,NY,1125,-1,0,1345,-10,0,0 +2013,9,20,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-6,0,950,-11,0,0 +2013,8,9,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,714,-6,0,1111,-25,0,0 +2013,4,22,1,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1329,-3,0,1416,-13,0,0 +2013,10,5,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,645,-4,0,938,-30,0,0 +2013,4,12,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1220,71,1,1310,70,1,0 +2013,4,5,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1134,-13,0,1249,-17,0,0 +2013,6,6,4,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1710,-1,0,1915,-30,0,0 +2013,8,19,1,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,715,83,1,840,72,1,0 +2013,5,31,5,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1941,-7,0,2309,-18,0,0 +2013,4,18,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,81,1,2205,58,1,0 +2013,8,23,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,6,0,1416,9,0,0 +2013,5,13,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2000,0,0,2115,-1,0,0 +2013,8,28,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,0,,1359,0,1,1 +2013,9,21,6,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1800,-9,0,2007,-3,0,0 +2013,7,11,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-6,0,541,-4,0,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,47,1,1823,44,1,0 +2013,5,16,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,49,1,1635,44,1,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1210,-1,0,1530,-14,0,0 +2013,7,3,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,0,,730,0,1,1 +2013,4,22,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,955,3,0,1215,-2,0,0 +2013,5,17,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,32,1,1915,31,1,0 +2013,7,5,5,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1524,2,0,1645,23,1,0 +2013,9,17,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1035,0,0,1155,-9,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,-4,0,2013,10,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2145,-5,0,2334,-6,0,0 +2013,7,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2112,20,1,15,27,1,0 +2013,6,15,6,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,-7,0,2213,-9,0,0 +2013,7,29,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-4,0,2105,3,0,0 +2013,10,13,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,1,0,1220,-18,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,820,5,0,1041,14,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,730,18,1,830,17,1,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2355,32,1,345,30,1,0 +2013,5,21,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,605,0,0,729,-7,0,0 +2013,8,7,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-6,0,739,5,0,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,63,1,2129,74,1,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-5,0,1621,3,0,0 +2013,7,7,7,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1930,12,0,35,9,0,0 +2013,8,1,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,14,0,2020,18,1,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1250,-3,0,1625,-18,0,0 +2013,7,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1935,11,0,2107,13,0,0 +2013,9,4,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-6,0,1415,-22,0,0 +2013,10,22,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1015,-8,0,1142,-18,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1645,-1,0,1940,-4,0,0 +2013,8,28,3,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1219,69,1,1747,67,1,0 +2013,8,26,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,0,0,1338,-1,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1145,-2,0,1240,-8,0,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2135,-4,0,12,-14,0,0 +2013,4,3,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1155,0,0,1325,-11,0,0 +2013,10,29,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,722,-9,0,0 +2013,7,9,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1018,142,1,1210,140,1,0 +2013,6,6,4,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-6,0,1527,-26,0,0 +2013,10,6,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1015,-4,0,1605,8,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1745,-4,0,1931,-26,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1807,3,0,2120,2,0,0 +2013,5,1,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,-3,0,1830,-9,0,0 +2013,5,16,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1045,-5,0,1214,-11,0,0 +2013,6,17,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,76,1,1721,140,1,0 +2013,4,20,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,630,-1,0,835,-8,0,0 +2013,6,18,2,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1107,-7,0,1208,-19,0,0 +2013,8,25,7,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,0,0,2000,-2,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-8,0,2206,-11,0,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-7,0,1143,-12,0,0 +2013,8,31,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,610,-4,0,707,-6,0,0 +2013,8,19,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,31,1,2110,-3,0,0 +2013,7,5,5,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,1300,8,0,1727,-31,0,0 +2013,4,16,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-3,0,1054,-10,0,0 +2013,7,2,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1130,-2,0,1226,-10,0,0 +2013,4,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,-4,0,2155,-14,0,0 +2013,4,27,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,820,0,0,950,-10,0,0 +2013,9,29,7,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1735,1,0,1810,-8,0,0 +2013,9,28,6,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,840,-8,0,1005,-26,0,0 +2013,6,29,6,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1830,8,0,2044,-19,0,0 +2013,4,17,3,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1040,-2,0,1250,-6,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-6,0,1133,-10,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,905,11,0,1150,-9,0,0 +2013,7,11,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,835,0,0,1043,-3,0,0 +2013,5,28,2,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,647,-6,0,1047,-13,0,0 +2013,10,20,7,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,940,1,0,1055,-10,0,0 +2013,6,20,4,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,0,,1051,0,1,1 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2305,-4,0,2333,-9,0,0 +2013,10,17,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1510,-3,0,1830,-10,0,0 +2013,7,31,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,-7,0,1459,-8,0,0 +2013,10,22,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-6,0,1715,-3,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1539,35,1,1808,20,1,0 +2013,4,6,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,64,1,1050,63,1,0 +2013,5,21,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1005,-2,0,1253,0,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1715,-4,0,2230,-15,0,0 +2013,8,1,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2128,-7,0,2347,-18,0,0 +2013,7,10,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-3,0,1050,-12,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-3,0,2159,-18,0,0 +2013,7,27,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,5,0,1310,-2,0,0 +2013,6,12,3,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,615,-3,0,715,-6,0,0 +2013,5,16,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,545,-4,0,716,-11,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-1,0,1801,-6,0,0 +2013,8,28,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1805,64,1,2115,65,1,0 +2013,4,21,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,78,1,2104,54,1,0 +2013,5,11,6,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1035,0,0,1215,-3,0,0 +2013,10,29,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-5,0,1856,10,0,0 +2013,4,7,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,733,-5,0,910,-12,0,0 +2013,8,13,2,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1711,28,1,2015,30,1,0 +2013,6,14,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,13,0,1832,30,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-1,0,1220,-6,0,0 +2013,10,22,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-1,0,1735,-4,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,2010,0,0,57,-5,0,0 +2013,9,23,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,16,1,2030,28,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,-3,0,1311,-4,0,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,4,0,1335,6,0,0 +2013,6,14,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-8,0,1633,-11,0,0 +2013,4,15,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-3,0,1125,-2,0,0 +2013,9,24,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,630,83,1,831,72,1,0 +2013,10,28,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2201,-8,0,2230,-4,0,0 +2013,7,30,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1304,6,0,0 +2013,9,15,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-3,0,2100,8,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,0,0,2245,-4,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,-4,0,1735,-16,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,3,0,1745,15,1,0 +2013,9,10,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,830,-5,0,0 +2013,9,27,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1930,-1,0,2137,-4,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,-3,0,1003,-14,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1445,-4,0,1610,-10,0,0 +2013,9,20,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1940,116,1,28,116,1,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1445,-1,0,1723,-5,0,0 +2013,8,25,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,728,-3,0,1000,-2,0,0 +2013,10,26,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1002,-4,0,1018,-20,0,0 +2013,6,27,4,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,540,11,0,645,1,0,0 +2013,6,30,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-4,0,1202,-14,0,0 +2013,4,2,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,835,5,0,0 +2013,6,13,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1302,109,1,1430,106,1,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,9,0,2225,-8,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1915,49,1,2048,34,1,0 +2013,5,29,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,836,1,0,1012,-4,0,0 +2013,6,2,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1830,230,1,1920,240,1,0 +2013,9,15,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1355,33,1,2112,25,1,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1540,0,0,1823,-7,0,0 +2013,6,2,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-3,0,1202,-11,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1840,28,1,2245,25,1,0 +2013,7,28,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,638,-11,0,758,-5,0,0 +2013,9,2,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1742,-6,0,0 +2013,4,21,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-5,0,1232,-14,0,0 +2013,4,17,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1105,9,0,1420,-4,0,0 +2013,6,28,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-2,0,1740,-20,0,0 +2013,10,8,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1945,-6,0,2330,-25,0,0 +2013,8,15,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,907,-6,0,1129,-10,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,940,-2,0,1105,-11,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-4,0,1114,-9,0,0 +2013,4,23,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1445,-2,0,1610,-7,0,0 +2013,8,19,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1645,16,1,1750,10,0,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1955,98,1,2115,78,1,0 +2013,4,12,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,1015,-26,0,0 +2013,6,19,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,16,1,1730,10,0,0 +2013,5,7,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-6,0,2140,-20,0,0 +2013,6,26,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,647,-2,0,735,-5,0,0 +2013,8,25,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1744,-10,0,1906,-7,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1740,5,0,2110,0,0,0 +2013,7,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-3,0,935,-21,0,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-5,0,1729,-4,0,0 +2013,4,28,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1455,1,0,1805,0,0,0 +2013,9,21,6,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1540,-7,0,1718,-10,0,0 +2013,7,12,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,91,1,2150,84,1,0 +2013,10,30,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,2,0,940,10,0,0 +2013,7,15,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,-1,0,650,-7,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,18,1,1131,15,1,0 +2013,7,10,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,710,-3,0,930,-22,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1725,4,0,1855,-9,0,0 +2013,7,3,3,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,6,0,100,3,0,0 +2013,4,6,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1137,0,0,1900,-7,0,0 +2013,6,8,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,955,-5,0,1121,-5,0,0 +2013,6,20,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,-6,0,1530,-10,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1210,23,1,1438,5,0,0 +2013,9,21,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,645,21,1,1012,20,1,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,610,9,0,833,8,0,0 +2013,4,8,1,WN,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1300,-4,0,1510,-11,0,0 +2013,10,26,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,-3,0,1940,-20,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2059,89,1,2211,86,1,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,-1,0,2231,-6,0,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1455,-3,0,1745,-5,0,0 +2013,8,27,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1313,-20,0,0 +2013,7,31,3,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-5,0,1040,10,0,0 +2013,5,26,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1131,-3,0,1229,-7,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2140,-4,0,2355,-22,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1505,-1,0,1648,-3,0,0 +2013,10,29,2,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,10,0,1500,-1,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1440,8,0,1705,-23,0,0 +2013,4,11,4,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1345,3,0,1455,-1,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1205,-2,0,1312,-10,0,0 +2013,9,9,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,-5,0,1525,-9,0,0 +2013,7,11,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1410,1,0,2210,7,0,0 +2013,4,11,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1732,32,1,1923,26,1,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,900,6,0,1145,-21,0,0 +2013,4,12,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,650,122,1,750,113,1,0 +2013,9,11,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1500,14,0,1615,19,1,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,51,1,1945,50,1,0 +2013,4,8,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1444,14,0,1735,-5,0,0 +2013,5,2,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-1,0,1210,-5,0,0 +2013,8,1,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,0,0,850,-10,0,0 +2013,7,17,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,1015,2,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1155,65,1,1330,70,1,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,644,-2,0,916,-15,0,0 +2013,8,26,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,603,-10,0,716,10,0,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-3,0,1648,16,1,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1038,-5,0,1305,-9,0,0 +2013,8,11,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-6,0,1421,2,0,0 +2013,8,9,5,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,75,1,2029,100,1,0 +2013,9,23,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,35,-7,0,816,-31,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2015,-1,0,2344,-4,0,0 +2013,10,26,6,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1352,-7,0,1624,-2,0,0 +2013,5,4,6,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1749,-8,0,1838,-18,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1205,3,0,1305,4,0,0 +2013,9,4,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1143,-2,0,1434,-15,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1050,-3,0,1140,-11,0,0 +2013,5,21,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1926,-2,0,2030,-4,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,0,0,2041,7,0,0 +2013,6,8,6,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1339,-3,0,1458,-10,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,820,-3,0,1000,-7,0,0 +2013,7,6,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-6,0,1641,-15,0,0 +2013,7,15,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1641,-4,0,1941,-13,0,0 +2013,4,26,5,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1120,36,1,1355,50,1,0 +2013,8,10,6,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,11,0,2029,8,0,0 +2013,9,10,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,752,-7,0,904,-11,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,805,6,0,855,8,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,738,122,1,932,128,1,0 +2013,5,8,3,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,555,-1,0,900,-1,0,0 +2013,7,13,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,-9,0,1110,-6,0,0 +2013,6,27,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,950,-3,0,1134,-12,0,0 +2013,7,31,3,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1111,-4,0,1409,-14,0,0 +2013,4,8,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-4,0,745,-3,0,0 +2013,8,21,3,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,0,0,1220,-31,0,0 +2013,4,18,4,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,11,0,2255,16,1,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,-4,0,940,-8,0,0 +2013,4,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,605,3,0,730,4,0,0 +2013,6,4,2,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1642,29,1,1907,34,1,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,830,-4,0,1125,-20,0,0 +2013,4,25,4,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,804,-2,0,1311,-7,0,0 +2013,10,20,7,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,-5,0,1445,-31,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2240,-1,0,2350,-1,0,0 +2013,6,7,5,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-9,0,604,-6,0,0 +2013,7,28,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-5,0,655,-14,0,0 +2013,5,27,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1600,48,1,1604,40,1,0 +2013,6,26,3,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,600,7,0,840,-8,0,0 +2013,7,29,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,600,-3,0,615,-4,0,0 +2013,5,20,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-6,0,1925,22,1,0 +2013,6,18,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,10,0,850,9,0,0 +2013,9,11,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,3,0,1635,-1,0,0 +2013,9,24,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,941,-1,0,1123,4,0,0 +2013,7,24,3,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-16,0,1127,-31,0,0 +2013,8,10,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,830,-9,0,0 +2013,9,18,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-4,0,1635,-22,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1630,28,1,1745,16,1,0 +2013,4,6,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,4,0,1029,8,0,0 +2013,10,13,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1344,80,1,1907,59,1,0 +2013,7,17,3,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,0,0,2019,-1,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,-1,0,2100,-3,0,0 +2013,9,15,7,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1249,22,1,1427,52,1,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,1000,-12,0,0 +2013,6,28,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-2,0,905,-3,0,0 +2013,6,13,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1511,172,1,1722,277,1,0 +2013,5,28,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1348,13,0,1558,-8,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,714,78,1,952,61,1,0 +2013,5,6,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,44,1,1609,61,1,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1435,5,0,1558,-7,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-4,0,1058,-8,0,0 +2013,5,18,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-4,0,1345,-9,0,0 +2013,10,5,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,759,-7,0,950,-20,0,0 +2013,9,16,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1247,1,0,1359,13,0,0 +2013,10,15,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,11,0,2013,20,1,0 +2013,8,9,5,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,2029,112,1,2115,102,1,0 +2013,9,19,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-3,0,1300,10,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1247,-4,0,1419,-16,0,0 +2013,6,7,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1557,-19,0,0 +2013,5,23,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-5,0,851,-14,0,0 +2013,4,13,6,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,17,1,1750,11,0,0 +2013,10,14,1,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1405,-7,0,1531,-10,0,0 +2013,5,28,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,3,0,1823,-9,0,0 +2013,6,18,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1900,31,1,2025,40,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1236,0,0,1416,-14,0,0 +2013,7,13,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-4,0,1032,-28,0,0 +2013,7,14,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,0,0,2135,-5,0,0 +2013,9,21,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1800,-2,0,2001,-22,0,0 +2013,9,24,2,9E,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-9,0,917,-16,0,0 +2013,10,23,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,750,-1,0,1640,-19,0,0 +2013,6,23,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-8,0,1005,-9,0,0 +2013,10,11,5,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1445,1,0,1635,-8,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1250,-2,0,1650,-15,0,0 +2013,10,1,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,-3,0,2130,3,0,0 +2013,8,12,1,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,-5,0,2357,-23,0,0 +2013,9,18,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-5,0,1200,4,0,0 +2013,4,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1745,-2,0,1952,7,0,0 +2013,8,12,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-4,0,2205,-4,0,0 +2013,9,8,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1025,-1,0,1140,-9,0,0 +2013,4,12,5,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,-2,0,1700,-23,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-4,0,935,-12,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,925,6,0,1200,-10,0,0 +2013,4,9,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,2040,-2,0,2205,-10,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,29,1,1420,22,1,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,800,21,1,951,10,0,0 +2013,7,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1830,21,1,1925,13,0,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,840,-4,0,1102,-38,0,0 +2013,10,10,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-4,0,2221,7,0,0 +2013,10,8,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1305,0,0,1415,-16,0,0 +2013,7,18,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1528,-2,0,1647,-8,0,0 +2013,6,26,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1754,30,1,2100,5,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,730,0,0,928,1,0,0 +2013,9,9,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,700,-4,0,830,-12,0,0 +2013,7,21,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,2030,66,1,2320,58,1,0 +2013,6,2,7,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1054,-4,0,1331,-3,0,0 +2013,7,10,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1420,0,,1530,0,1,1 +2013,10,1,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,-2,0,1135,-5,0,0 +2013,10,25,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1350,-7,0,1512,-21,0,0 +2013,10,17,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,810,0,0,1410,-6,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1140,44,1,1725,21,1,0 +2013,7,28,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1835,-9,0,2102,-5,0,0 +2013,6,9,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,181,1,1730,181,1,0 +2013,10,20,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,-6,0,2139,-10,0,0 +2013,6,18,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1825,16,1,1850,17,1,0 +2013,5,6,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-1,0,1353,7,0,0 +2013,4,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1115,198,1,1409,191,1,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,812,-1,0,1019,-18,0,0 +2013,4,5,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,0,0,1254,-11,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1130,36,1,1510,18,1,0 +2013,8,19,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1318,-6,0,1440,-11,0,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-4,0,1255,-22,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1310,24,1,1540,14,0,0 +2013,4,9,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,555,-3,0,804,-15,0,0 +2013,4,1,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1710,9,0,1955,14,0,0 +2013,4,10,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-11,0,543,7,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,738,-4,0,851,-10,0,0 +2013,5,9,4,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-7,0,2153,-22,0,0 +2013,10,1,2,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1210,1,0,2029,-42,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1810,2,0,1954,-6,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1345,14,0,1510,6,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-4,0,956,-15,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1325,14,0,1415,9,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1230,7,0,1335,-1,0,0 +2013,8,8,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1802,-8,0,1915,-13,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,15,1,1915,12,0,0 +2013,4,16,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1855,3,0,2240,-8,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1620,381,1,1808,374,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-2,0,1005,-11,0,0 +2013,5,15,3,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1725,9,0,2052,26,1,0 +2013,4,5,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,940,0,0,1110,-9,0,0 +2013,8,25,7,FL,13244,Memphis International,Memphis,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1547,29,1,1853,34,1,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1005,-8,0,1302,-34,0,0 +2013,7,4,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,2,0,1845,-34,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,703,-3,0,815,-1,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2004,-1,0,2126,-6,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1548,1,0,1720,-26,0,0 +2013,9,26,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,751,-4,0,1314,-21,0,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,0,0,1240,-6,0,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,15,1,2109,-2,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1552,-1,0,1840,-15,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,810,-3,0,852,2,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,4,0,2307,41,1,0 +2013,8,3,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,803,-6,0,1040,-9,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-6,0,1819,-8,0,0 +2013,10,15,2,YV,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1753,55,1,1935,55,1,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1658,17,1,2015,13,0,0 +2013,7,6,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,915,-5,0,1036,-21,0,0 +2013,5,12,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,925,-17,0,0 +2013,6,10,1,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,-5,0,1833,-4,0,0 +2013,8,10,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,700,-1,0,932,-1,0,0 +2013,10,14,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1305,-1,0,1610,-10,0,0 +2013,7,15,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1205,-4,0,1350,-19,0,0 +2013,8,11,7,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,932,21,1,1123,5,0,0 +2013,8,20,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-4,0,2134,-8,0,0 +2013,5,19,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1610,-7,0,1911,-15,0,0 +2013,4,30,2,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,718,-5,0,1002,-3,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,836,4,0,1715,-16,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,17,1,1605,9,0,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1935,5,0,2035,-3,0,0 +2013,4,2,2,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1118,7,0,1239,-2,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,800,2,0,905,-9,0,0 +2013,8,13,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1500,4,0,2257,-22,0,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-6,0,2354,5,0,0 +2013,4,7,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-1,0,840,-19,0,0 +2013,8,22,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1600,-2,0,2322,1,0,0 +2013,7,4,4,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1345,-3,0,1525,-9,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,-7,0,1830,-9,0,0 +2013,6,1,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,0,0,724,-11,0,0 +2013,10,9,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1959,-3,0,2229,-6,0,0 +2013,6,6,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,-6,0,1505,-4,0,0 +2013,6,14,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,0,0,725,-7,0,0 +2013,7,9,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1351,25,1,1630,32,1,0 +2013,8,27,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,625,-8,0,920,-17,0,0 +2013,5,23,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1110,24,1,1300,16,1,0 +2013,10,31,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,742,-3,0,801,-9,0,0 +2013,10,28,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,50,-6,0,619,-18,0,0 +2013,5,1,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,600,-7,0,835,-15,0,0 +2013,10,25,5,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1354,-2,0,1950,-10,0,0 +2013,4,21,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1520,9,0,1640,6,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-3,0,902,-9,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,1,0,1958,-13,0,0 +2013,6,26,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1945,-1,0,2115,-11,0,0 +2013,9,11,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-6,0,1513,-17,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1555,0,0,1755,3,0,0 +2013,9,15,7,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1755,-5,0,2237,17,1,0 +2013,6,5,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1630,2,0,1835,16,1,0 +2013,10,1,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,9,0,2010,-6,0,0 +2013,10,13,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1951,-5,0,2107,0,0,0 +2013,6,16,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1605,3,0,1640,1,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,3,0,1150,4,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1100,0,0,1830,-12,0,0 +2013,8,27,2,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1332,17,1,1528,3,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,-2,0,1705,-1,0,0 +2013,9,13,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1508,-9,0,0 +2013,5,29,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1650,4,0,1925,21,1,0 +2013,5,29,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,-2,0,1622,-7,0,0 +2013,7,31,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,910,-6,0,1245,-4,0,0 +2013,8,17,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,14,0,1448,8,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1840,-5,0,2055,-15,0,0 +2013,6,22,6,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1700,24,1,1930,29,1,0 +2013,8,2,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,311,1,835,301,1,0 +2013,5,22,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,4,0,1209,5,0,0 +2013,4,21,7,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1630,1,0,1805,-16,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1410,-5,0,1745,2,0,0 +2013,6,6,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,2,0,1828,4,0,0 +2013,10,21,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1431,15,1,1645,8,0,0 +2013,6,13,4,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1718,25,1,1838,20,1,0 +2013,8,8,4,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1055,-7,0,1220,-19,0,0 +2013,5,27,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,0,0,1435,-13,0,0 +2013,10,26,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1258,-2,0,1614,-3,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2005,6,0,2225,6,0,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1730,193,1,2050,183,1,0 +2013,9,27,5,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1300,-3,0,1440,-4,0,0 +2013,7,12,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-11,0,1254,-11,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1450,16,1,1652,13,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,845,-5,0,959,-16,0,0 +2013,5,7,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1744,-6,0,1835,-7,0,0 +2013,6,30,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,-4,0,1135,20,1,0 +2013,7,29,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,-2,0,735,6,0,0 +2013,6,13,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1344,92,1,1621,146,1,0 +2013,10,6,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,-4,0,1124,-10,0,0 +2013,10,5,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,905,0,0,1025,-7,0,0 +2013,5,25,6,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1415,11,0,1705,1,0,0 +2013,9,2,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1325,-4,0,1450,-9,0,0 +2013,9,8,7,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1335,0,0,1525,-34,0,0 +2013,10,10,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-7,0,927,-17,0,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,9,0,2027,11,0,0 +2013,6,27,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-3,0,836,-12,0,0 +2013,7,14,7,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-7,0,1349,-2,0,0 +2013,9,16,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,740,-5,0,911,-8,0,0 +2013,8,26,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,658,-5,0,1028,-10,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1745,19,1,1920,52,1,0 +2013,7,1,1,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,59,1,1959,17,1,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,-3,0,1630,57,1,0 +2013,8,25,7,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,2,0,2135,-8,0,0 +2013,4,11,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1520,0,0,1629,0,0,0 +2013,6,23,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1305,20,1,1555,46,1,0 +2013,6,8,6,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1135,0,0,1520,-23,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,0,0,1633,-10,0,0 +2013,5,20,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,910,0,0,1030,-1,0,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2125,-6,0,2355,-7,0,0 +2013,5,16,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,29,1,1118,28,1,0 +2013,5,12,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1155,27,1,1332,29,1,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,600,11,0,1155,-2,0,0 +2013,9,17,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,-10,0,1030,-19,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,730,95,1,1040,105,1,0 +2013,5,11,6,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,3,0,926,7,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1245,17,1,1353,17,1,0 +2013,6,24,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1816,0,0,2159,-12,0,0 +2013,6,6,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,9,0,1729,7,0,0 +2013,9,3,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-6,0,1525,-6,0,0 +2013,10,31,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-4,0,1609,-14,0,0 +2013,5,29,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-3,0,1255,2,0,0 +2013,4,7,7,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,605,0,0,700,-3,0,0 +2013,6,18,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1119,-3,0,1230,-10,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1510,-3,0,1843,7,0,0 +2013,7,28,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1120,4,0,1210,6,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-6,0,824,3,0,0 +2013,4,4,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1745,15,1,1922,11,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,726,0,0,901,-13,0,0 +2013,10,9,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-8,0,1005,-30,0,0 +2013,9,30,1,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,855,0,0,1504,-19,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,1,0,1655,-3,0,0 +2013,4,28,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-6,0,1959,15,1,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,950,10,0,1221,5,0,0 +2013,5,4,6,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1337,15,1,1505,19,1,0 +2013,10,9,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,705,-9,0,953,4,0,0 +2013,10,27,7,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,915,-10,0,1041,-31,0,0 +2013,5,9,4,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1705,8,0,1925,7,0,0 +2013,5,21,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-6,0,1325,3,0,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1015,0,0,1250,-6,0,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,1547,-4,0,0 +2013,10,28,1,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,835,-2,0,1000,1,0,0 +2013,4,30,2,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2100,8,0,2345,2,0,0 +2013,9,10,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,650,-1,0,810,-1,0,0 +2013,8,15,4,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,735,-1,0,1203,-2,0,0 +2013,10,31,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,10,0,1450,7,0,0 +2013,6,14,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1756,-3,0,1916,0,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1610,40,1,1732,50,1,0 +2013,7,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1910,17,1,2105,16,1,0 +2013,9,14,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-3,0,1630,-2,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,71,1,2245,71,1,0 +2013,4,3,3,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,-6,0,555,-4,0,0 +2013,4,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1645,0,0,1930,3,0,0 +2013,9,20,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1959,-2,0,2203,-6,0,0 +2013,6,14,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1410,-9,0,1646,-17,0,0 +2013,9,3,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1305,-5,0,1547,-6,0,0 +2013,7,15,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,8,0,1800,21,1,0 +2013,9,4,3,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1615,-3,0,2347,-12,0,0 +2013,5,4,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,2,0,1010,-1,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,829,-2,0,1152,1,0,0 +2013,5,17,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1909,10,0,2214,-4,0,0 +2013,6,26,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1335,69,1,1623,64,1,0 +2013,9,27,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1110,-11,0,1245,11,0,0 +2013,5,12,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1425,-10,0,1700,-9,0,0 +2013,9,30,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-8,0,622,14,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1220,-2,0,1325,-5,0,0 +2013,6,1,6,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1410,57,1,1654,80,1,0 +2013,5,2,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,600,-4,0,719,-13,0,0 +2013,4,7,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1045,-5,0,1355,-9,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,17,1,1736,26,1,0 +2013,7,24,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,20,1,1355,10,0,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,13,0,1950,13,0,0 +2013,10,10,4,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2016,101,1,2128,102,1,0 +2013,4,3,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1921,-3,0,2011,-19,0,0 +2013,5,6,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1336,-7,0,1458,-12,0,0 +2013,8,23,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1428,-2,0,1553,-11,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1613,0,0,1736,-14,0,0 +2013,4,6,6,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1110,-14,0,0 +2013,6,7,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1400,-5,0,1702,-8,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1505,0,0,1751,8,0,0 +2013,7,3,3,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2010,20,1,1148,18,1,0 +2013,7,21,7,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-9,0,1425,-9,0,0 +2013,9,13,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1119,-3,0,1214,-9,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1511,-2,0,1729,-13,0,0 +2013,4,19,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1419,64,1,1552,77,1,0 +2013,9,12,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,0,0,1135,5,0,0 +2013,9,29,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,800,-9,0,900,-31,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,10,0,1359,8,0,0 +2013,4,3,3,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1102,-6,0,1258,-4,0,0 +2013,6,24,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,837,-2,0,952,-13,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1209,-6,0,1346,-11,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1340,0,0,1600,-6,0,0 +2013,8,29,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,815,-6,0,924,3,0,0 +2013,8,27,2,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1220,-3,0,1350,-14,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,5,0,1747,-14,0,0 +2013,7,9,2,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1845,104,1,2058,87,1,0 +2013,10,1,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-9,0,626,-1,0,0 +2013,8,7,3,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1903,12,0,2117,-1,0,0 +2013,7,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-6,0,959,-16,0,0 +2013,5,12,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,4,0,1105,2,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2013,107,1,2220,99,1,0 +2013,7,30,2,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,2155,-8,0,2329,-31,0,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1750,38,1,2103,43,1,0 +2013,5,15,3,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1210,0,0,1455,-4,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1115,3,0,1220,0,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,650,2,0,805,-3,0,0 +2013,5,22,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1309,5,0,1414,22,1,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,0,0,45,-24,0,0 +2013,10,31,4,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1525,34,1,1637,24,1,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1015,-2,0,1115,-2,0,0 +2013,7,24,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-8,0,1035,6,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1040,29,1,1335,31,1,0 +2013,9,26,4,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1215,-8,0,2100,-39,0,0 +2013,9,1,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1050,-9,0,1305,-6,0,0 +2013,7,24,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1227,-3,0,2020,-4,0,0 +2013,7,15,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,825,83,1,950,83,1,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,755,-4,0,925,-12,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1540,1,0,1845,-12,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1006,-3,0,1533,-13,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1820,-4,0,1945,-14,0,0 +2013,5,26,7,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,810,-4,0,910,-21,0,0 +2013,8,15,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,627,-7,0,800,-11,0,0 +2013,8,9,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,82,1,1345,95,1,0 +2013,7,20,6,EV,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-1,0,1130,-9,0,0 +2013,5,23,4,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,646,-7,0,810,-3,0,0 +2013,6,6,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1605,-2,0,1820,18,1,0 +2013,6,21,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,64,1,1720,61,1,0 +2013,9,20,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1115,125,1,1240,118,1,0 +2013,9,7,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,644,-6,0,855,-45,0,0 +2013,5,14,2,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1608,-8,0,1815,-38,0,0 +2013,7,13,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,648,-6,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1612,68,1,1929,73,1,0 +2013,6,25,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,810,6,0,930,3,0,0 +2013,10,8,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1523,-2,0,1701,-26,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1505,1,0,1700,-14,0,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1515,25,1,1825,24,1,0 +2013,9,16,1,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1515,-7,0,1646,-30,0,0 +2013,9,27,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1345,-10,0,1425,2,0,0 +2013,10,17,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-1,0,1419,3,0,0 +2013,6,27,4,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,905,-5,0,1225,-21,0,0 +2013,9,22,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-2,0,1724,0,0,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1455,49,1,2320,60,1,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1645,27,1,2135,18,1,0 +2013,7,26,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1449,38,1,1748,46,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,101,1,1715,88,1,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1600,1,0,1716,-6,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1040,6,0,1215,-6,0,0 +2013,10,25,5,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1336,-3,0,1647,-11,0,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,951,20,1,1350,12,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,710,-1,0,815,-9,0,0 +2013,7,18,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1835,1,0,1930,-6,0,0 +2013,8,27,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,20,1,1220,5,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,2010,-3,0,2238,-5,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,835,37,1,1100,31,1,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1619,32,1,1949,36,1,0 +2013,5,19,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1712,5,0,1950,8,0,0 +2013,4,28,7,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,605,-8,0,743,-21,0,0 +2013,4,23,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-10,0,1313,-21,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1952,0,0,2332,-26,0,0 +2013,10,18,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1940,4,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,8,0,2150,3,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,20,1,1540,13,0,0 +2013,9,9,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-4,0,1617,-11,0,0 +2013,9,15,7,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1110,-1,0,1655,4,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1610,114,1,2315,122,1,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1840,112,1,2055,107,1,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,-1,0,1720,-11,0,0 +2013,8,5,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,83,1,949,89,1,0 +2013,8,2,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,930,0,0,1055,4,0,0 +2013,6,30,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1229,-7,0,1337,0,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1700,9,0,1805,-5,0,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,647,-4,0,943,-13,0,0 +2013,6,19,3,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1432,-3,0,1925,-12,0,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1715,1,0,1825,9,0,0 +2013,5,19,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,61,1,1937,61,1,0 +2013,6,7,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-6,0,1940,8,0,0 +2013,10,6,7,UA,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,952,0,0,1123,-19,0,0 +2013,4,23,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,-9,0,1515,-4,0,0 +2013,6,3,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,-5,0,815,-8,0,0 +2013,5,14,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,80,1,838,75,1,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2020,0,0,2155,-11,0,0 +2013,6,25,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,31,1,1325,26,1,0 +2013,8,26,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,-2,0,1120,-10,0,0 +2013,4,23,2,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1241,-7,0,1534,1,0,0 +2013,5,5,7,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2055,-15,0,2223,-32,0,0 +2013,10,3,4,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-4,0,1038,-9,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2004,12,0,2141,10,0,0 +2013,5,27,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-4,0,1242,19,1,0 +2013,8,14,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,-5,0,1925,-7,0,0 +2013,8,15,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-6,0,1017,4,0,0 +2013,9,4,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1600,35,1,1610,38,1,0 +2013,7,4,4,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2007,-3,0,2259,-36,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2000,-3,0,2105,20,1,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2050,25,1,2315,25,1,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2140,51,1,2315,32,1,0 +2013,8,14,3,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2030,4,0,2211,-1,0,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1235,96,1,1615,91,1,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1230,1,0,1525,2,0,0 +2013,9,9,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,700,-5,0,1516,-3,0,0 +2013,4,20,6,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,900,-1,0,1025,-10,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-1,0,1150,-8,0,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2317,-8,0,731,-7,0,0 +2013,7,23,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,600,-11,0,850,-25,0,0 +2013,4,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1658,6,0,2259,-15,0,0 +2013,7,5,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-7,0,1356,-15,0,0 +2013,6,15,6,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-3,0,1022,-17,0,0 +2013,5,6,1,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-5,0,1350,-18,0,0 +2013,9,29,7,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-7,0,1011,-6,0,0 +2013,10,21,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,9,0,1920,24,1,0 +2013,5,20,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,645,-3,0,810,-10,0,0 +2013,10,13,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1830,38,1,1940,40,1,0 +2013,4,19,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1552,56,1,2158,51,1,0 +2013,9,2,1,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1528,-15,0,1722,-10,0,0 +2013,6,20,4,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1016,-1,0,1315,-3,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-1,0,1754,-5,0,0 +2013,4,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1935,60,1,2045,88,1,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,910,11,0,1045,4,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,22,1,1825,14,0,0 +2013,6,12,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,11,0,1959,8,0,0 +2013,5,3,5,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1445,-24,0,1753,-35,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1015,-10,0,1148,-11,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,835,-6,0,1259,-4,0,0 +2013,8,8,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1319,-5,0,2055,18,1,0 +2013,7,1,1,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-1,0,1625,-12,0,0 +2013,8,8,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1005,17,1,1210,32,1,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2150,50,1,2300,42,1,0 +2013,5,19,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,41,1,1127,15,1,0 +2013,7,24,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1620,0,,1820,0,1,1 +2013,10,29,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-5,0,1005,-23,0,0 +2013,10,11,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1545,57,1,1920,45,1,0 +2013,6,14,5,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,815,-3,0,1000,-1,0,0 +2013,6,28,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1900,175,1,2025,176,1,0 +2013,9,14,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1323,89,1,1510,85,1,0 +2013,8,23,5,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1740,9,0,2010,12,0,0 +2013,9,19,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,625,-2,0,1010,2,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1850,0,0,2154,-4,0,0 +2013,7,24,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1020,-8,0,1203,-34,0,0 +2013,9,20,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1900,38,1,2025,32,1,0 +2013,8,15,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1020,-6,0,1120,-16,0,0 +2013,9,9,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1935,-1,0,2232,-10,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,13,0,1624,-9,0,0 +2013,9,5,4,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1007,-9,0,1121,-13,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1220,8,0,1420,3,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1310,88,1,2149,88,1,0 +2013,6,15,6,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,7,0,1922,-16,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,-13,0,2025,19,1,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-3,0,2325,-12,0,0 +2013,4,7,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1710,9,0,1800,8,0,0 +2013,8,10,6,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,640,4,0,1140,-3,0,0 +2013,8,20,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,-7,0,1633,7,0,0 +2013,7,2,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,758,-2,0,0 +2013,6,27,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,1,0,1857,28,1,0 +2013,10,2,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1215,4,0,1255,9,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1150,13,0,1315,7,0,0 +2013,6,23,7,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2100,1,0,2325,-1,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,-3,0,1005,-3,0,0 +2013,7,8,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1546,0,0,1553,-4,0,0 +2013,10,24,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1340,-2,0,2048,-5,0,0 +2013,9,19,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,26,1,1552,48,1,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,24,1,2235,29,1,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1305,-3,0,1625,-2,0,0 +2013,5,27,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1600,22,1,1915,15,1,0 +2013,10,4,5,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,3,0,2106,-6,0,0 +2013,5,18,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1507,5,0,1554,6,0,0 +2013,8,8,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,43,1,2105,31,1,0 +2013,9,10,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,710,-19,0,0 +2013,10,3,4,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,641,-5,0,805,-12,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,5,0,1115,-2,0,0 +2013,6,5,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1836,-2,0,1940,-10,0,0 +2013,7,26,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-6,0,920,-7,0,0 +2013,5,6,1,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1146,0,0,1358,-15,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1930,32,1,2200,28,1,0 +2013,8,2,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1043,-6,0,1357,-17,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1727,33,1,1739,20,1,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,-2,0,1045,-3,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1450,2,0,1555,-5,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1501,10,0,1538,-10,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2155,3,0,2324,-9,0,0 +2013,5,12,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,-9,0,951,-10,0,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1650,-2,0,1814,-8,0,0 +2013,7,16,2,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,6,0,1303,-2,0,0 +2013,5,5,7,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,935,-14,0,0 +2013,10,26,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1932,45,1,2233,40,1,0 +2013,5,26,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1915,-4,0,2308,-14,0,0 +2013,7,12,5,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1735,23,1,1755,16,1,0 +2013,10,15,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,755,0,0,920,-15,0,0 +2013,6,25,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1350,27,1,1500,24,1,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,543,-2,0,918,-10,0,0 +2013,6,10,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2205,78,1,2258,72,1,0 +2013,7,17,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,41,1,2005,40,1,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,-1,0,1235,1,0,0 +2013,4,24,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,18,1,1516,24,1,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,742,-9,0,849,-18,0,0 +2013,5,1,3,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,600,-5,0,720,-14,0,0 +2013,5,16,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1708,35,1,1840,37,1,0 +2013,9,4,3,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1711,-9,0,1943,-15,0,0 +2013,4,22,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1059,1,0,1240,1,0,0 +2013,6,15,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1234,8,0,1830,-16,0,0 +2013,7,6,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,935,-7,0,1100,-16,0,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,826,-2,0,1014,11,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,625,14,0,830,-20,0,0 +2013,9,14,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-6,0,1130,3,0,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,735,1,0,1007,1,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,9,0,2105,17,1,0 +2013,9,13,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,745,-1,0,0 +2013,9,27,5,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,2150,23,1,2305,11,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1614,4,0,1752,-11,0,0 +2013,10,31,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1845,3,0,1855,9,0,0 +2013,4,19,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-4,0,1128,-1,0,0 +2013,8,14,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,644,-3,0,809,2,0,0 +2013,8,5,1,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2101,35,1,2334,17,1,0 +2013,9,6,5,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1113,-5,0,1329,3,0,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1910,137,1,2040,143,1,0 +2013,6,7,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1130,55,1,1345,36,1,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1720,10,0,2025,19,1,0 +2013,6,3,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1210,16,1,1355,13,0,0 +2013,9,28,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1223,-12,0,0 +2013,9,3,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1737,-2,0,1832,16,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,-5,0,1504,-22,0,0 +2013,7,24,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,7,0,2014,10,0,0 +2013,4,9,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1827,0,0,0 +2013,6,7,5,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1043,-1,0,1159,-9,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,4,0,1818,58,1,0 +2013,5,8,3,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,1642,6,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1456,13,0,2306,25,1,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,602,7,0,728,-2,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1140,-4,0,1240,-15,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1330,1,0,1550,-20,0,0 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,-5,0,1501,31,1,0 +2013,7,28,7,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-6,0,549,-7,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1050,1,0,1405,-1,0,0 +2013,6,12,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1852,199,1,2135,203,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1422,5,0,1552,0,0,0 +2013,9,11,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1340,-7,0,1520,-15,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,18,1,1645,-8,0,0 +2013,6,10,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1042,13,0,1337,19,1,0 +2013,9,13,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,800,-16,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1625,-4,0,1803,0,0,0 +2013,8,6,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2117,-7,0,2247,-1,0,0 +2013,5,14,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,37,1,1535,5,0,0 +2013,10,10,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-5,0,905,10,0,0 +2013,10,20,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,-12,0,1250,-12,0,0 +2013,6,15,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,655,-5,0,740,-12,0,0 +2013,9,12,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,0,,1818,0,1,1 +2013,7,5,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1410,-1,0,2210,6,0,0 +2013,10,20,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1814,-7,0,1939,5,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1959,19,1,2237,23,1,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,750,6,0,1025,-9,0,0 +2013,9,16,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1158,-7,0,1243,-21,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,1817,-2,0,2046,6,0,0 +2013,4,23,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1222,8,0,1334,7,0,0 +2013,6,3,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,-4,0,1430,-12,0,0 +2013,4,27,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-6,0,1029,-1,0,0 +2013,10,7,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,181,1,1815,162,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,910,-2,0,1033,4,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-3,0,1631,-3,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1659,-4,0,2006,-17,0,0 +2013,10,24,4,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1425,-1,0,2300,-10,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,740,-1,0,1305,-8,0,0 +2013,9,17,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,19,1,1940,6,0,0 +2013,6,3,1,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,813,298,1,1025,278,1,0 +2013,5,9,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,72,1,2320,30,1,0 +2013,8,9,5,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,1,0,1930,104,1,0 +2013,10,14,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,-2,0,1830,-43,0,0 +2013,6,7,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,830,-6,0,950,-2,0,0 +2013,4,7,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1810,-2,0,1915,3,0,0 +2013,5,17,5,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,710,-3,0,1001,-35,0,0 +2013,9,3,2,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1113,-4,0,1348,6,0,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1305,-9,0,1438,-3,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2210,5,0,2327,-3,0,0 +2013,10,6,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,0,0,606,15,1,0 +2013,4,14,7,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,1,0,1411,14,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,-3,0,1811,-14,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1315,182,1,1530,185,1,0 +2013,4,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1425,-2,0,1525,-5,0,0 +2013,4,24,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1836,88,1,1940,97,1,0 +2013,4,20,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1535,-16,0,0 +2013,9,23,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,0,0,1805,3,0,0 +2013,8,19,1,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-6,0,1225,-8,0,0 +2013,7,23,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,118,1,1922,124,1,0 +2013,8,12,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,10,0,1409,10,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,-3,0,1153,-16,0,0 +2013,9,26,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,655,-5,0,740,-4,0,0 +2013,7,10,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1359,9,0,1544,34,1,0 +2013,9,7,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-9,0,549,-2,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1520,-5,0,1958,-5,0,0 +2013,10,5,6,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1650,14,0,1840,6,0,0 +2013,5,21,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1744,7,0,2006,57,1,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-3,0,1405,-2,0,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1735,6,0,2305,1,0,0 +2013,10,3,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-4,0,1336,2,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-5,0,2323,-8,0,0 +2013,6,5,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1848,1,0,2132,26,1,0 +2013,7,13,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-4,0,636,-2,0,0 +2013,9,30,1,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2205,0,0,2316,1,0,0 +2013,8,13,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,847,-7,0,1042,-6,0,0 +2013,9,29,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1519,5,0,1644,-3,0,0 +2013,5,26,7,9E,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1935,-5,0,2155,-20,0,0 +2013,9,5,4,WN,11278,Ronald Reagan Washington National,Washington,DC,12191,William P Hobby,Houston,TX,655,-3,0,915,-21,0,0 +2013,10,28,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,730,9,0,825,15,1,0 +2013,7,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1640,-2,0,1735,-13,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1910,1,0,2044,14,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,926,-5,0,1113,-16,0,0 +2013,4,22,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1210,-2,0,1410,6,0,0 +2013,6,6,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,18,1,1915,3,0,0 +2013,5,30,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1436,-6,0,1623,-20,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,80,1,1740,133,1,0 +2013,9,12,4,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1409,-7,0,1646,-14,0,0 +2013,6,21,5,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,19,1,2135,6,0,0 +2013,9,22,7,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,720,-2,0,845,-21,0,0 +2013,4,7,7,9E,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,805,24,1,1030,44,1,0 +2013,5,3,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1406,-4,0,2100,4,0,0 +2013,9,26,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1538,-5,0,1646,-9,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,22,1,1835,17,1,0 +2013,10,3,4,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-2,0,1526,-8,0,0 +2013,6,27,4,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,33,1,1510,33,1,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1738,16,1,1836,1,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,707,-7,0,837,-9,0,0 +2013,7,2,2,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,40,1,2125,41,1,0 +2013,7,25,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1348,33,1,1510,27,1,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2118,-2,0,15,10,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1932,157,1,2056,160,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,923,6,0,1152,-16,0,0 +2013,8,3,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,704,5,0,811,-11,0,0 +2013,4,5,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-3,0,1557,-17,0,0 +2013,7,27,6,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,89,1,2050,90,1,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,-3,0,1225,-8,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,1,0,1510,-10,0,0 +2013,6,21,5,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-2,0,1635,27,1,0 +2013,6,10,1,FL,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,900,-5,0,1040,-19,0,0 +2013,5,16,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2000,-1,0,2125,-3,0,0 +2013,8,20,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,-4,0,1655,-12,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2045,-9,0,2226,-1,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,900,3,0,1625,-15,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,950,1,0,1230,7,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,56,1,1130,60,1,0 +2013,7,8,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,-13,0,1900,-27,0,0 +2013,6,26,3,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,0,,2055,0,1,1 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-4,0,1310,-5,0,0 +2013,8,2,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1320,2,0,1445,-2,0,0 +2013,4,3,3,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,926,-6,0,1130,-16,0,0 +2013,4,12,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,811,-5,0,942,-1,0,0 +2013,9,2,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,50,1,2130,48,1,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1844,-5,0,2005,-17,0,0 +2013,10,26,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2245,-7,0,448,-18,0,0 +2013,8,3,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,4,0,950,4,0,0 +2013,9,20,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,43,1,2120,30,1,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2142,-5,0,2359,-21,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-6,0,1914,-16,0,0 +2013,6,4,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-7,0,1410,-14,0,0 +2013,7,2,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,1121,-6,0,0 +2013,4,1,1,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2125,0,0,530,-35,0,0 +2013,8,6,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1715,15,1,1945,4,0,0 +2013,6,25,2,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1946,0,,2049,0,1,1 +2013,7,26,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1038,-9,0,1137,-18,0,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1125,-2,0,1430,-9,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2145,-5,0,50,-24,0,0 +2013,7,6,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-12,0,1251,-5,0,0 +2013,4,12,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,810,-5,0,929,-17,0,0 +2013,9,10,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,-6,0,1055,-8,0,0 +2013,4,11,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,64,1,1221,64,1,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2005,62,1,2057,71,1,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1700,-1,0,1827,-14,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-4,0,1047,-13,0,0 +2013,8,14,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,24,1,1625,42,1,0 +2013,6,12,3,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,53,1,1645,48,1,0 +2013,6,12,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2055,3,0,450,-5,0,0 +2013,4,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,600,-3,0,715,-8,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2030,27,1,2305,32,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,101,1,1911,121,1,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1434,63,1,1619,44,1,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,15,1,1515,12,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,0,0,930,-2,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,833,0,0,1448,-15,0,0 +2013,7,13,6,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,31,1,1405,11,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1010,5,0,1140,-17,0,0 +2013,8,21,3,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,955,0,0,1317,6,0,0 +2013,9,19,4,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1148,3,0,1412,13,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1035,-2,0,1235,-4,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,18,1,1518,13,0,0 +2013,9,29,7,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,900,-8,0,1024,-9,0,0 +2013,4,17,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-5,0,804,0,0,0 +2013,9,14,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-3,0,755,-5,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,845,27,1,1120,27,1,0 +2013,10,4,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,735,-2,0,920,-12,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-3,0,1615,-19,0,0 +2013,5,24,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1142,16,1,1630,11,0,0 +2013,10,7,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1816,-5,0,2053,-14,0,0 +2013,10,8,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-5,0,1257,-18,0,0 +2013,6,12,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1530,16,1,1810,6,0,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2045,-7,0,2206,-24,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,916,4,0,1522,32,1,0 +2013,7,25,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1855,2,0,2205,2,0,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1600,6,0,1734,1,0,0 +2013,9,4,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,-6,0,1628,-19,0,0 +2013,4,5,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,940,-4,0,1050,-22,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-4,0,1911,8,0,0 +2013,8,3,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-3,0,1119,10,0,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12191,William P Hobby,Houston,TX,1250,2,0,1915,-6,0,0 +2013,4,9,2,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1319,3,0,1810,46,1,0 +2013,7,20,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,2,0,649,8,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1500,21,1,1811,15,1,0 +2013,6,15,6,9E,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1745,129,1,1909,124,1,0 +2013,9,23,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1707,-12,0,2004,2,0,0 +2013,9,27,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1125,17,1,1250,15,1,0 +2013,6,13,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,35,1,2115,12,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,25,1,1825,15,1,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-1,0,1802,10,0,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2100,57,1,2313,61,1,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1755,72,1,2335,44,1,0 +2013,4,22,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,735,-8,0,905,-20,0,0 +2013,5,9,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-8,0,905,-44,0,0 +2013,5,9,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,650,5,0,750,4,0,0 +2013,6,25,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,0,0,2019,7,0,0 +2013,4,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1750,2,0,1855,-2,0,0 +2013,7,8,1,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,800,13,0,1021,-7,0,0 +2013,6,21,5,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,2,0,1705,-9,0,0 +2013,4,5,5,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1051,-6,0,1225,-8,0,0 +2013,8,19,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,0,0,1840,-6,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2145,10,0,2306,-9,0,0 +2013,9,15,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1215,-5,0,1505,9,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1457,6,0,1938,-13,0,0 +2013,4,10,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1137,-15,0,1325,-5,0,0 +2013,7,17,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1450,-9,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1020,9,0,1043,14,0,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1111,23,1,1707,-1,0,0 +2013,6,9,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1052,-2,0,1352,-19,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,907,-1,0,1049,-8,0,0 +2013,4,21,7,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1710,5,0,1839,-6,0,0 +2013,6,15,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1700,13,0,1920,12,0,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-4,0,1256,-21,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1920,14,0,55,17,1,0 +2013,4,18,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1640,22,1,34,23,1,0 +2013,9,15,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1830,58,1,2122,42,1,0 +2013,5,12,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1500,-3,0,1610,0,0,0 +2013,9,4,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-6,0,1115,-9,0,0 +2013,8,8,4,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1741,2,0,1904,-3,0,0 +2013,5,16,4,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,31,1,1955,5,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,905,23,1,1110,32,1,0 +2013,6,23,7,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1105,27,1,1330,19,1,0 +2013,9,20,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,627,-4,0,837,1,0,0 +2013,10,18,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,12,0,1809,8,0,0 +2013,5,9,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,-3,0,2307,5,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1715,18,1,2240,12,0,0 +2013,6,3,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,37,1,1435,34,1,0 +2013,9,8,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,1,0,705,-2,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,16,1,1020,8,0,0 +2013,4,16,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,5,0,1633,0,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,942,3,0,1116,-1,0,0 +2013,8,1,4,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,2000,-7,0,2020,8,0,0 +2013,9,24,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,-7,0,1802,2,0,0 +2013,8,1,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1035,24,1,1200,22,1,0 +2013,7,8,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,1009,-19,0,0 +2013,7,11,4,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,0,,1615,0,1,1 +2013,9,4,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,730,-8,0,850,-12,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1015,-2,0,1418,-2,0,0 +2013,4,3,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-2,0,755,-3,0,0 +2013,5,14,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-1,0,736,-6,0,0 +2013,6,10,1,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,700,0,0,825,7,0,0 +2013,8,12,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1525,43,1,1645,30,1,0 +2013,10,28,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,44,1,2225,38,1,0 +2013,10,3,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1225,0,0,1345,-7,0,0 +2013,10,1,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,1001,-22,0,0 +2013,10,31,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1710,-3,0,1914,-5,0,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,109,1,1330,105,1,0 +2013,8,6,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,711,0,0,1155,-5,0,0 +2013,5,17,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1310,-10,0,2135,-9,0,0 +2013,10,29,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1455,-3,0,1605,-4,0,0 +2013,6,7,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1416,-2,0,1736,10,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1455,7,0,1910,-9,0,0 +2013,5,14,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-9,0,1322,-3,0,0 +2013,7,13,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1925,-4,0,2221,-36,0,0 +2013,8,9,5,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1954,1,0,2103,-6,0,0 +2013,4,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1015,-5,0,1205,-14,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1425,-4,0,1624,-14,0,0 +2013,5,8,3,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1557,-9,0,1850,-14,0,0 +2013,5,9,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1840,11,0,2237,0,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1905,4,0,2015,21,1,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1805,53,1,1925,49,1,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1025,115,1,1310,127,1,0 +2013,7,27,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-8,0,1540,-18,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1745,36,1,2250,32,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1959,67,1,2136,64,1,0 +2013,10,29,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1904,-6,0,2018,-24,0,0 +2013,7,1,1,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,700,0,0,1045,-6,0,0 +2013,5,6,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,645,-2,0,800,-16,0,0 +2013,9,11,3,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1156,-6,0,1520,-6,0,0 +2013,10,20,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1955,18,1,2115,13,0,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,-3,0,2050,-8,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1930,166,1,2025,160,1,0 +2013,4,28,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,161,1,1800,151,1,0 +2013,10,9,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,-4,0,1722,-12,0,0 +2013,4,22,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,755,-2,0,0 +2013,4,2,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,0,0,2250,-12,0,0 +2013,6,15,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1120,16,1,1350,-1,0,0 +2013,5,24,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,815,-1,0,935,-9,0,0 +2013,6,24,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,4,0,1515,4,0,0 +2013,8,26,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1010,-7,0,0 +2013,10,24,4,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,4,0,1820,-7,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1755,-1,0,2033,-22,0,0 +2013,9,29,7,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1552,-6,0,1736,-27,0,0 +2013,6,28,5,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1155,-2,0,2030,34,1,0 +2013,5,6,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1119,9,0,1715,40,1,0 +2013,6,1,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1140,0,0,1836,4,0,0 +2013,4,11,4,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,725,-1,0,800,-13,0,0 +2013,10,19,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1156,256,1,1438,288,1,0 +2013,7,25,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-2,0,1826,-10,0,0 +2013,4,30,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1130,9,0,1834,-1,0,0 +2013,8,2,5,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1923,53,1,2049,50,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1339,5,0,1506,-7,0,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,740,-4,0,931,10,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1135,40,1,1405,28,1,0 +2013,6,5,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,947,0,0,1214,-6,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,8,0,1003,-13,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1113,-4,0,1256,-26,0,0 +2013,6,8,6,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,1,0,840,-13,0,0 +2013,4,25,4,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,424,1,1720,423,1,0 +2013,8,21,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,715,-2,0,743,-5,0,0 +2013,6,20,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1504,-1,0,1624,5,0,0 +2013,10,26,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1520,94,1,1723,87,1,0 +2013,7,30,2,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,-3,0,1853,-19,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1205,5,0,1214,-7,0,0 +2013,5,12,7,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,-5,0,1712,1,0,0 +2013,8,6,2,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,1100,0,0,1655,-4,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,7,0,1335,-8,0,0 +2013,8,21,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-6,0,1323,-4,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,11,0,800,12,0,0 +2013,7,23,2,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,829,-4,0,1045,-4,0,0 +2013,9,9,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1340,-1,0,1440,-5,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,730,-6,0,830,-9,0,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,715,-4,0,921,-33,0,0 +2013,6,6,4,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,600,-3,0,856,-9,0,0 +2013,8,26,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,60,1,1850,47,1,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,935,5,0,1100,15,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1542,-6,0,1709,-1,0,0 +2013,5,24,5,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,925,-2,0,1005,-9,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,640,-2,0,820,-14,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,855,-16,0,0 +2013,6,23,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1754,40,1,1931,48,1,0 +2013,6,13,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-5,0,1341,-16,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,700,6,0,805,3,0,0 +2013,4,3,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,19,1,1710,0,0,0 +2013,9,27,5,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,600,-7,0,730,1,0,0 +2013,9,3,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1450,-2,0,1550,2,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-7,0,855,-12,0,0 +2013,8,18,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,604,-4,0,845,2,0,0 +2013,4,8,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1830,-4,0,1944,-14,0,0 +2013,10,12,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,-2,0,2130,6,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1957,-4,0,2011,-9,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,62,1,2315,75,1,0 +2013,6,19,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,1,0,1229,-7,0,0 +2013,7,10,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,-1,0,1450,-4,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1620,-2,0,1801,-15,0,0 +2013,9,13,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,75,1,1435,75,1,0 +2013,9,24,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1306,-5,0,2128,-25,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,600,-3,0,710,-6,0,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,-4,0,1825,-12,0,0 +2013,6,15,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,22,1,2046,13,0,0 +2013,4,26,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,600,-2,0,700,-19,0,0 +2013,9,16,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,-3,0,1556,-12,0,0 +2013,7,12,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,903,-2,0,937,-5,0,0 +2013,10,8,2,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2155,44,1,540,44,1,0 +2013,6,2,7,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1216,12,0,1343,4,0,0 +2013,5,1,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1205,0,0,1500,-2,0,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2040,16,1,2210,9,0,0 +2013,8,1,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,745,-6,0,855,-22,0,0 +2013,6,7,5,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,15,1,1903,2,0,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1415,108,1,1550,116,1,0 +2013,4,28,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1345,0,0,1515,-16,0,0 +2013,5,26,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1750,4,0,1910,6,0,0 +2013,10,2,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-4,0,1037,-20,0,0 +2013,4,29,1,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,-1,0,1836,-25,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1135,1,0,1725,5,0,0 +2013,10,14,1,9E,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-4,0,1955,-10,0,0 +2013,6,25,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,0,,710,0,1,1 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2030,-3,0,2235,0,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,-2,0,1826,-16,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1540,16,1,1656,14,0,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1955,16,1,2105,28,1,0 +2013,8,28,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1355,23,1,1515,22,1,0 +2013,7,5,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,49,1,1837,54,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1915,1,0,2033,-17,0,0 +2013,7,6,6,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,0,0,1851,5,0,0 +2013,9,17,2,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,2,0,1559,-3,0,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1425,-4,0,1545,-7,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,80,1,2255,75,1,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1820,70,1,2000,60,1,0 +2013,5,14,2,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-4,0,1633,-20,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1450,-1,0,1745,-8,0,0 +2013,5,12,7,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1325,-5,0,1658,-14,0,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,8,0,1615,-32,0,0 +2013,7,20,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,720,0,0,825,-6,0,0 +2013,7,7,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2125,287,1,2300,255,1,0 +2013,8,29,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1643,56,1,1907,25,1,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1235,21,1,1405,13,0,0 +2013,4,2,2,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1652,-18,0,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,900,-4,0,1156,-7,0,0 +2013,5,5,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1654,-3,0,1744,-7,0,0 +2013,9,17,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-10,0,1240,-12,0,0 +2013,4,9,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1640,0,0,1755,-4,0,0 +2013,5,19,7,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,54,1,1901,49,1,0 +2013,6,13,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,22,1,1805,32,1,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,22,1,1816,14,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1840,2,0,2000,-7,0,0 +2013,7,13,6,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,-1,0,1220,-36,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1310,-1,0,1525,-12,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,900,4,0,1655,-19,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1450,1,0,1647,-11,0,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1535,-11,0,0 +2013,5,30,4,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,31,1,1505,26,1,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-4,0,1040,0,0,0 +2013,7,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1207,84,1,1343,65,1,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1033,2,0,1340,11,0,0 +2013,8,21,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,952,3,0,1040,-9,0,0 +2013,4,18,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,800,63,1,1252,80,1,0 +2013,10,26,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1305,-4,0,1511,-13,0,0 +2013,4,26,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,619,-7,0,752,-12,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,910,2,0,1140,-2,0,0 +2013,10,26,6,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1750,-6,0,1917,-6,0,0 +2013,8,20,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2055,-7,0,2219,-22,0,0 +2013,9,3,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1818,-6,0,1959,-17,0,0 +2013,7,7,7,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1215,1,0,1710,12,0,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1540,-6,0,1735,-19,0,0 +2013,5,23,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-2,0,1310,-3,0,0 +2013,8,28,3,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1930,33,1,2245,36,1,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1235,18,1,1415,5,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1905,35,1,1954,23,1,0 +2013,8,8,4,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2112,13,0,15,44,1,0 +2013,6,23,7,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-1,0,1405,-5,0,0 +2013,10,25,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,720,-1,0,845,-1,0,0 +2013,6,18,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-1,0,2058,-20,0,0 +2013,6,27,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1512,-2,0,1618,-11,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,810,6,0,950,0,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1050,-4,0,1205,-5,0,0 +2013,10,1,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,955,-8,0,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1040,5,0,1920,5,0,0 +2013,4,27,6,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,1056,-7,0,0 +2013,7,14,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1025,-3,0,1309,-21,0,0 +2013,8,26,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,840,-19,0,0 +2013,8,24,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-1,0,825,-4,0,0 +2013,6,19,3,OO,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,5,0,1923,-5,0,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1235,10,0,1517,-14,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,707,-7,0,813,-17,0,0 +2013,8,2,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,23,1,1235,36,1,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,850,-1,0,1020,-15,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2220,4,0,2349,8,0,0 +2013,5,14,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-1,0,1225,-16,0,0 +2013,6,12,3,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1909,-5,0,2014,-8,0,0 +2013,9,7,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1525,13,0,1640,4,0,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2150,55,1,2300,46,1,0 +2013,5,21,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,649,-10,0,815,-14,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2150,2,0,2250,4,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,179,1,1520,175,1,0 +2013,9,17,2,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,716,-7,0,1040,-18,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1615,15,1,1717,9,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,645,0,0,1040,6,0,0 +2013,9,2,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1507,-3,0,1729,-29,0,0 +2013,7,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,530,-1,0,627,-7,0,0 +2013,9,3,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,610,-2,0,1204,-22,0,0 +2013,10,26,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1003,-12,0,1216,-17,0,0 +2013,5,29,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-6,0,1327,-5,0,0 +2013,10,17,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1815,20,1,1925,16,1,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,910,36,1,1104,89,1,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,121,1,1740,135,1,0 +2013,8,22,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,65,1,1240,89,1,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,805,8,0,845,0,0,0 +2013,8,27,2,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-6,0,1345,-10,0,0 +2013,10,30,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1315,92,1,1405,103,1,0 +2013,4,1,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-8,0,1712,-10,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,77,1,2030,68,1,0 +2013,6,3,1,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-4,0,1950,-8,0,0 +2013,5,28,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1830,-1,0,1905,22,1,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1005,6,0,1135,9,0,0 +2013,7,2,2,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,555,-3,0,830,-28,0,0 +2013,6,29,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,620,4,0,716,-3,0,0 +2013,8,1,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,51,1,1532,47,1,0 +2013,7,23,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1937,-5,0,2039,-10,0,0 +2013,10,25,5,9E,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,623,-6,0,805,-6,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,930,-2,0,1203,-7,0,0 +2013,9,9,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,855,-4,0,1225,-10,0,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2230,-3,0,2340,1,0,0 +2013,7,17,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,3,0,2330,4,0,0 +2013,7,25,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-3,0,800,20,1,0 +2013,4,29,1,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1540,179,1,1835,179,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1425,-3,0,1602,-15,0,0 +2013,9,19,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1400,-8,0,1525,-14,0,0 +2013,8,22,4,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,805,5,0,1113,-2,0,0 +2013,7,21,7,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-1,0,825,-1,0,0 +2013,8,12,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,11,0,1015,4,0,0 +2013,8,29,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1430,24,1,1545,14,0,0 +2013,5,18,6,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,829,-10,0,1130,-16,0,0 +2013,4,15,1,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1026,-6,0,1325,-18,0,0 +2013,9,18,3,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,855,2,0,1046,-6,0,0 +2013,8,29,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,10,0,923,-4,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,-2,0,1135,-2,0,0 +2013,6,15,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-7,0,649,-12,0,0 +2013,10,21,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1530,-1,0,1701,-3,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1215,6,0,1430,-4,0,0 +2013,10,14,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,-4,0,1335,12,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,1112,3,0,0 +2013,6,4,2,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-4,0,1543,-3,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1230,49,1,1400,40,1,0 +2013,5,30,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-6,0,918,-14,0,0 +2013,6,28,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,21,1,1205,16,1,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,-5,0,1150,-15,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1335,26,1,1805,21,1,0 +2013,7,17,3,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1448,-3,0,1709,-6,0,0 +2013,5,8,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,705,2,0,903,13,0,0 +2013,7,24,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,835,1,0,933,-5,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,902,-3,0,1602,-8,0,0 +2013,9,30,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-2,0,808,-13,0,0 +2013,10,11,5,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,2,0,744,-7,0,0 +2013,5,13,1,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-5,0,1859,-43,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,6,0,845,-6,0,0 +2013,6,18,2,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2205,22,1,2326,25,1,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,0,0,1620,-2,0,0 +2013,6,17,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1435,91,1,1535,91,1,0 +2013,9,15,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,1,0,1700,-4,0,0 +2013,10,2,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,750,-21,0,0 +2013,10,24,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1539,-2,0,1655,-4,0,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1117,-4,0,1631,-19,0,0 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,840,14,0,1000,20,1,0 +2013,6,18,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,930,71,1,1235,72,1,0 +2013,7,14,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1323,-10,0,1442,-17,0,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1355,10,0,1955,-6,0,0 +2013,6,10,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,1008,-3,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2006,-1,0,2044,0,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,13,0,1024,26,1,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1235,-10,0,1430,-15,0,0 +2013,10,17,4,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,635,0,0,746,9,0,0 +2013,9,18,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1950,23,1,2110,21,1,0 +2013,9,2,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,1,0,1340,6,0,0 +2013,10,20,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,-1,0,1627,-17,0,0 +2013,10,11,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1529,25,1,1820,52,1,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,78,1,1937,72,1,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-8,0,1642,24,1,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,850,0,,955,0,1,1 +2013,4,21,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2040,8,0,2303,1,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2040,-1,0,2305,-2,0,0 +2013,6,29,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1540,-6,0,1705,-25,0,0 +2013,6,15,6,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1040,-3,0,1215,-23,0,0 +2013,7,28,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1007,-2,0,0 +2013,10,11,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1000,-5,0,1205,8,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1200,-7,0,1413,-2,0,0 +2013,10,27,7,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,620,5,0,816,-5,0,0 +2013,5,2,4,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1000,8,0,1320,8,0,0 +2013,9,28,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-4,0,1437,-8,0,0 +2013,9,25,3,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,929,-9,0,1110,-2,0,0 +2013,6,28,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1710,-4,0,1756,6,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,820,-3,0,925,-17,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1635,-2,0,1815,-19,0,0 +2013,5,28,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-6,0,1103,-11,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1930,1,0,2247,-2,0,0 +2013,4,15,1,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,616,-9,0,1206,-37,0,0 +2013,6,22,6,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,-1,0,549,-11,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,855,-2,0,1214,-6,0,0 +2013,10,27,7,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,620,10,0,915,0,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,-5,0,855,-11,0,0 +2013,5,13,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,830,16,1,0 +2013,4,30,2,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,-4,0,1550,0,0,0 +2013,7,13,6,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,930,-2,0,1745,2,0,0 +2013,4,18,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,703,-7,0,1021,-3,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-3,0,1250,-19,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,11,0,1153,17,1,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,830,2,0,1230,-18,0,0 +2013,10,4,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1715,-4,0,1749,-1,0,0 +2013,10,29,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,930,13,0,1055,12,0,0 +2013,6,16,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-14,0,1910,-20,0,0 +2013,9,21,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1600,-1,0,1915,-35,0,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,-1,0,1605,-7,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,12,0,1520,8,0,0 +2013,5,6,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1720,5,0,2137,2,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,10,0,2245,3,0,0 +2013,8,16,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,7,0,1850,8,0,0 +2013,7,1,1,DL,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1921,2,0,2045,-24,0,0 +2013,7,28,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,630,-6,0,1501,-27,0,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1750,20,1,2102,19,1,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1024,-4,0,1123,-7,0,0 +2013,8,21,3,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,-8,0,1940,-6,0,0 +2013,10,18,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,3,0,1500,-5,0,0 +2013,8,17,6,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1536,-7,0,1700,18,1,0 +2013,8,16,5,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1555,13,0,1755,3,0,0 +2013,4,27,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,-6,0,1605,-13,0,0 +2013,10,12,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1915,-3,0,1949,-1,0,0 +2013,8,4,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1526,-20,0,0 +2013,4,16,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-2,0,1341,-2,0,0 +2013,9,20,5,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-3,0,1910,-5,0,0 +2013,8,28,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-8,0,1730,8,0,0 +2013,4,16,2,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,715,-8,0,1008,-17,0,0 +2013,6,22,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1540,1,0,1755,-14,0,0 +2013,8,30,5,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,16,1,1710,19,1,0 +2013,10,13,7,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1600,25,1,1752,0,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1100,-1,0,1535,-3,0,0 +2013,9,8,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1518,46,1,1636,41,1,0 +2013,5,24,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,605,-4,0,800,-12,0,0 +2013,8,26,1,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1020,-2,0,1301,-12,0,0 +2013,6,12,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,13,0,1829,7,0,0 +2013,5,4,6,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,800,-2,0,1030,-47,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,820,-5,0,941,-23,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,0,0,1650,-12,0,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-1,0,1849,-12,0,0 +2013,4,17,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2135,0,,2157,0,1,1 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,-2,0,1615,-23,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1353,14,0,1705,10,0,0 +2013,4,3,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1136,-6,0,1435,-8,0,0 +2013,5,1,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1820,0,0,1935,-19,0,0 +2013,8,9,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,0,0,910,-7,0,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1535,1,0,1655,2,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,930,-4,0,1125,-29,0,0 +2013,8,30,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,710,-1,0,835,-4,0,0 +2013,4,9,2,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,3,0,2020,-18,0,0 +2013,5,2,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,51,1,1831,54,1,0 +2013,7,2,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,69,1,1733,88,1,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,910,104,1,1151,98,1,0 +2013,4,30,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1240,65,1,1355,57,1,0 +2013,8,13,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,0,0,930,32,1,0 +2013,8,29,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1240,8,0,1335,-7,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1558,-5,0,2005,-24,0,0 +2013,10,17,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,600,12,0,854,7,0,0 +2013,4,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1800,1,0,1920,-15,0,0 +2013,8,11,7,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1155,-11,0,1430,-20,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1920,0,0,2116,-16,0,0 +2013,8,23,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1205,4,0,1359,16,1,0 +2013,9,11,3,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1410,0,0,1535,-5,0,0 +2013,6,7,5,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,803,-6,0,1643,0,0,0 +2013,7,30,2,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1117,-1,0,1208,8,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1015,0,0,1115,2,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,12,0,1255,3,0,0 +2013,9,2,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1530,-6,0,1820,-14,0,0 +2013,9,11,3,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1117,-15,0,0 +2013,4,16,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,11,0,1226,6,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1950,268,1,2055,261,1,0 +2013,8,13,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,730,-4,0,1130,18,1,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,274,1,1930,270,1,0 +2013,8,19,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,11,0,1730,4,0,0 +2013,9,15,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1720,27,1,1930,27,1,0 +2013,5,30,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,27,1,740,16,1,0 +2013,8,4,7,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,0,0,1755,-2,0,0 +2013,9,8,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1055,-4,0,1617,-15,0,0 +2013,5,3,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1032,-10,0,1310,-23,0,0 +2013,8,25,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,7,0,1413,14,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2107,-1,0,2314,-10,0,0 +2013,9,25,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1706,0,0,2218,-16,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1435,17,1,1625,4,0,0 +2013,9,3,2,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,-6,0,1310,-15,0,0 +2013,4,11,4,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-4,0,1104,-22,0,0 +2013,10,12,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,924,10,0,1112,22,1,0 +2013,5,13,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1430,46,1,1640,24,1,0 +2013,4,22,1,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,-3,0,1045,-18,0,0 +2013,8,6,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,9,0,1145,-1,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,730,1,0,835,-6,0,0 +2013,4,15,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,29,1,2000,6,0,0 +2013,5,27,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,0,0,1150,-13,0,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2055,19,1,2220,20,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,0,0,1549,-4,0,0 +2013,7,17,3,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2333,12,0,500,17,1,0 +2013,10,7,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-1,0,1340,-5,0,0 +2013,6,18,2,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,59,1,608,40,1,0 +2013,7,7,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,-2,0,2105,10,0,0 +2013,6,9,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-8,0,1021,-1,0,0 +2013,6,23,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,1,0,821,-5,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,55,1,2152,36,1,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1250,63,1,1513,87,1,0 +2013,8,17,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,537,-8,0,654,-8,0,0 +2013,7,28,7,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,-3,0,600,-21,0,0 +2013,7,4,4,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1001,-10,0,1130,-11,0,0 +2013,6,17,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,9,0,730,2,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,949,8,0,1149,23,1,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1814,11,0,2040,-19,0,0 +2013,5,27,1,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,923,-34,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,815,-3,0,946,-22,0,0 +2013,7,8,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1820,-2,0,2105,-13,0,0 +2013,4,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,630,-2,0,750,-6,0,0 +2013,10,24,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-5,0,1916,-10,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1133,60,1,1309,53,1,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,846,-4,0,953,-21,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1330,1,0,1440,15,1,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,2000,18,1,2255,10,0,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1919,7,0,2257,-19,0,0 +2013,7,11,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1522,-3,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1617,9,0,1815,4,0,0 +2013,4,12,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,940,-1,0,1225,7,0,0 +2013,8,17,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1250,77,1,1529,63,1,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1305,17,1,1620,15,1,0 +2013,10,9,3,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-3,0,1305,-23,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1045,68,1,1215,80,1,0 +2013,6,9,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-3,0,627,-11,0,0 +2013,6,24,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-1,0,923,-9,0,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1558,131,1,1732,124,1,0 +2013,6,15,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1715,-8,0,1829,-26,0,0 +2013,6,25,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,54,1,1820,61,1,0 +2013,4,29,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,950,-9,0,1115,-19,0,0 +2013,7,13,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-4,0,2057,-19,0,0 +2013,9,20,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-2,0,1459,-14,0,0 +2013,6,5,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,842,8,0,0 +2013,7,1,1,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,30,1,1750,56,1,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1547,-3,0,1905,-14,0,0 +2013,4,11,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-7,0,1101,-16,0,0 +2013,5,2,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-1,0,1236,0,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1205,-2,0,1305,-9,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1300,-5,0,1427,-14,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1026,12,0,1245,0,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1555,16,1,1659,7,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1500,-4,0,2200,9,0,0 +2013,8,3,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,-7,0,1845,1,0,0 +2013,10,22,2,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1745,0,0,2005,11,0,0 +2013,6,28,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1323,-3,0,1442,-4,0,0 +2013,8,1,4,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-3,0,1529,-5,0,0 +2013,7,8,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,67,1,635,52,1,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2145,-3,0,158,-5,0,0 +2013,9,26,4,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-8,0,1552,-8,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1511,1,0,1741,13,0,0 +2013,10,7,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1840,148,1,2118,135,1,0 +2013,7,28,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1030,-5,0,1340,-7,0,0 +2013,6,5,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,705,10,0,903,2,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,23,1,1740,40,1,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1945,73,1,2235,78,1,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,830,1,0,945,-11,0,0 +2013,9,8,7,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,-4,0,1955,-22,0,0 +2013,5,16,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1205,82,1,1530,98,1,0 +2013,10,13,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,723,-8,0,1055,-22,0,0 +2013,10,28,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,33,1,1805,2,0,0 +2013,10,27,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1740,31,1,1920,17,1,0 +2013,9,28,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-6,0,1035,-27,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1126,-4,0,1246,-18,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1639,28,1,1817,23,1,0 +2013,8,26,1,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,-2,0,2025,-32,0,0 +2013,4,28,7,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,740,9,0,825,0,0,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2050,11,0,2135,10,0,0 +2013,6,23,7,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,2034,5,0,2350,7,0,0 +2013,9,3,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,-6,0,1829,-1,0,0 +2013,4,19,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,9,0,1535,-3,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2210,11,0,2357,11,0,0 +2013,9,15,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-8,0,2103,-21,0,0 +2013,5,16,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,2001,-6,0,2210,-22,0,0 +2013,5,13,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-2,0,1154,-19,0,0 +2013,9,18,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,6,0,1510,0,0,0 +2013,6,16,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,741,-9,0,0 +2013,8,5,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,900,105,1,1210,76,1,0 +2013,4,27,6,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,955,-6,0,1119,-15,0,0 +2013,9,8,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,-1,0,2020,-13,0,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,725,-1,0,820,22,1,0 +2013,9,9,1,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1927,-4,0,2138,-6,0,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,-1,0,1735,-4,0,0 +2013,4,17,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,7,0,1206,-5,0,0 +2013,4,8,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,610,-3,0,847,-12,0,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2035,84,1,2250,79,1,0 +2013,7,22,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1555,27,1,1700,23,1,0 +2013,10,18,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,752,5,0,907,11,0,0 +2013,5,19,7,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,700,-6,0,1525,9,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,3,0,1245,-29,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-6,0,834,-17,0,0 +2013,4,11,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-10,0,920,-29,0,0 +2013,10,21,1,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,5,0,1836,1,0,0 +2013,9,8,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1220,-3,0,1525,0,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,-5,0,2218,-11,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1113,-1,0,1300,-10,0,0 +2013,8,31,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1407,10,0,1555,15,1,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1715,22,1,2240,35,1,0 +2013,6,15,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,89,1,2115,55,1,0 +2013,5,24,5,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,710,-1,0,910,-17,0,0 +2013,4,30,2,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1405,0,0,2215,22,1,0 +2013,5,24,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1309,-4,0,1819,20,1,0 +2013,8,23,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2100,-4,0,2215,-9,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,630,-3,0,925,-13,0,0 +2013,7,27,6,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,710,-7,0,1002,2,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1540,0,,1825,0,1,1 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1020,29,1,1110,26,1,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1735,12,0,1819,4,0,0 +2013,7,30,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,945,-6,0,1130,-18,0,0 +2013,6,12,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1210,0,,1655,0,1,1 +2013,4,13,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1545,-2,0,1828,-14,0,0 +2013,4,1,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-5,0,1811,-6,0,0 +2013,4,18,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,6,0,1727,6,0,0 +2013,4,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,1,0,1025,-10,0,0 +2013,7,6,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,1958,-8,0,510,-22,0,0 +2013,5,5,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1735,11,0,1855,7,0,0 +2013,7,11,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1034,6,0,1310,-3,0,0 +2013,8,7,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1120,-1,0,1230,-4,0,0 +2013,9,13,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1704,-1,0,2314,-3,0,0 +2013,5,7,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2035,-4,0,2300,-17,0,0 +2013,6,10,1,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1350,37,1,1945,25,1,0 +2013,9,28,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1355,0,0,1435,-6,0,0 +2013,6,11,2,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1843,19,1,2052,2,0,0 +2013,10,15,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-3,0,1017,1,0,0 +2013,6,23,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1315,-3,0,0 +2013,5,25,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1710,75,1,2005,61,1,0 +2013,8,15,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-7,0,843,-21,0,0 +2013,4,17,3,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,730,-4,0,905,-6,0,0 +2013,4,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1943,-1,0,2248,-17,0,0 +2013,6,18,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,105,1,2035,101,1,0 +2013,9,18,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,-3,0,1045,-5,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,6,0,1547,17,1,0 +2013,7,24,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1003,-14,0,1113,-23,0,0 +2013,5,5,7,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,925,-4,0,1145,7,0,0 +2013,4,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-1,0,910,-7,0,0 +2013,7,13,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,630,-2,0,740,-5,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1912,-4,0,2359,0,0,0 +2013,9,20,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1656,-6,0,0 +2013,6,10,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1727,1,0,2100,3,0,0 +2013,4,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,23,1,2115,21,1,0 +2013,8,1,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,933,15,1,1235,77,1,0 +2013,5,13,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1230,-1,0,1651,-4,0,0 +2013,5,4,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1810,-4,0,1921,-15,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-3,0,930,-8,0,0 +2013,9,29,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1640,-6,0,1730,-8,0,0 +2013,8,29,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,610,-3,0,735,-8,0,0 +2013,10,30,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1710,-6,0,1757,-7,0,0 +2013,4,17,3,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,-6,0,1650,2,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1517,87,1,1620,68,1,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1425,-3,0,1605,-22,0,0 +2013,9,10,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,7,0,1411,9,0,0 +2013,5,24,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1005,-3,0,1330,-21,0,0 +2013,4,20,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,67,1,835,67,1,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,911,58,1,1201,29,1,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-6,0,1631,-12,0,0 +2013,5,2,4,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,0,,1117,0,1,1 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,1,0,1045,-10,0,0 +2013,10,7,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2025,0,0,2350,-17,0,0 +2013,10,1,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,942,-3,0,0 +2013,5,26,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,751,-15,0,0 +2013,7,11,4,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1216,14,0,1302,8,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,745,1,0,1120,11,0,0 +2013,8,26,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,950,4,0,1115,-10,0,0 +2013,6,16,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,837,98,1,923,84,1,0 +2013,6,3,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,606,-4,0,813,-16,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2202,1,0,2344,0,0,0 +2013,10,21,1,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-1,0,847,-5,0,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1635,-3,0,1800,-22,0,0 +2013,4,17,3,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1515,-6,0,1756,-7,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1440,-5,0,1708,3,0,0 +2013,9,12,4,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,700,1,0,847,6,0,0 +2013,8,14,3,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1745,-6,0,1911,2,0,0 +2013,7,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2240,-2,0,11,-7,0,0 +2013,5,27,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1430,-5,0,1733,-12,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,-2,0,1002,-22,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1010,198,1,1445,192,1,0 +2013,4,27,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1914,4,0,2214,-15,0,0 +2013,8,19,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,2,0,1338,-10,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,700,237,1,825,237,1,0 +2013,7,2,2,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1155,29,1,1430,19,1,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1735,64,1,1941,53,1,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,845,3,0,1025,-1,0,0 +2013,8,15,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-6,0,1010,-12,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-8,0,1311,16,1,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,4,0,2247,19,1,0 +2013,6,8,6,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-1,0,1024,-12,0,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1345,1,0,1500,5,0,0 +2013,5,8,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,730,-8,0,926,-3,0,0 +2013,6,24,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,-2,0,1024,-8,0,0 +2013,7,25,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,41,1,2029,30,1,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1220,6,0,1353,0,0,0 +2013,7,29,1,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1620,119,1,1923,100,1,0 +2013,10,20,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1430,35,1,1635,26,1,0 +2013,5,12,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2044,-5,0,2159,-17,0,0 +2013,4,25,4,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,801,-4,0,1100,-13,0,0 +2013,7,26,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,820,38,1,1154,29,1,0 +2013,8,17,6,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,930,-1,0,1115,-5,0,0 +2013,6,19,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-3,0,1050,-15,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,-5,0,1650,-11,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1645,9,0,2020,4,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1640,27,1,2000,30,1,0 +2013,8,30,5,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,16,1,1607,14,0,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,5,0,1359,1,0,0 +2013,6,30,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,64,1,1600,62,1,0 +2013,7,31,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,0,0,2155,-12,0,0 +2013,4,11,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-1,0,1410,0,0,0 +2013,6,11,2,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1411,11,0,1520,-3,0,0 +2013,9,5,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,705,-6,0,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1905,-5,0,2009,-23,0,0 +2013,6,11,2,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,10,0,1109,-1,0,0 +2013,7,20,6,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-8,0,934,-11,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1325,4,0,1435,-6,0,0 +2013,7,1,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,2050,-7,0,2309,-6,0,0 +2013,4,15,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1315,18,1,1325,18,1,0 +2013,4,22,1,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1635,-3,0,1740,-8,0,0 +2013,4,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,600,7,0,930,17,1,0 +2013,10,9,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,-7,0,921,-16,0,0 +2013,6,27,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,47,1,621,40,1,0 +2013,10,10,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-4,0,1413,-11,0,0 +2013,10,14,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1659,-10,0,1748,-18,0,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,3,0,1210,-14,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1326,-9,0,1607,-18,0,0 +2013,4,9,2,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1600,-2,0,1705,-5,0,0 +2013,9,2,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1510,8,0,1620,4,0,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-6,0,1843,-5,0,0 +2013,5,11,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-7,0,2105,11,0,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1700,0,0,1935,-9,0,0 +2013,9,25,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,850,-3,0,1003,4,0,0 +2013,9,26,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-1,0,1340,-4,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1747,6,0,2130,0,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-8,0,1247,-17,0,0 +2013,7,12,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1620,2,0,0 +2013,10,4,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,84,1,2356,78,1,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1915,80,1,2045,71,1,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-2,0,1130,-3,0,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-3,0,1048,-14,0,0 +2013,10,29,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,1244,-17,0,0 +2013,9,9,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,700,-3,0,800,-7,0,0 +2013,9,25,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,53,1,1830,37,1,0 +2013,8,4,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1130,-4,0,1725,-26,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1405,54,1,1955,56,1,0 +2013,6,17,1,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1405,26,1,1645,20,1,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2250,11,0,32,-2,0,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2143,138,1,2333,128,1,0 +2013,8,31,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1640,15,1,1805,0,0,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1000,0,0,1110,3,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1745,5,0,2200,-20,0,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,3,0,1258,-6,0,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,-5,0,1320,3,0,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,-3,0,1342,-14,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1630,-1,0,1808,-9,0,0 +2013,5,17,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-2,0,1050,-4,0,0 +2013,6,30,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1415,210,1,1540,202,1,0 +2013,9,20,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1430,5,0,1555,6,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,0,0,2310,-22,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,-1,0,1145,-4,0,0 +2013,9,6,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1345,-5,0,1455,-10,0,0 +2013,5,26,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,953,-1,0,1515,-2,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1855,15,1,2100,13,0,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1340,-4,0,1445,-5,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2045,0,0,2255,2,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,700,28,1,1040,17,1,0 +2013,4,3,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,7,0,1831,15,1,0 +2013,8,20,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,0,0,1401,-1,0,0 +2013,8,22,4,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,545,-5,0,707,-23,0,0 +2013,7,6,6,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,66,1,2135,100,1,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2055,36,1,2223,12,0,0 +2013,10,31,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,2050,-2,0,2343,-8,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1607,-3,0,2030,-35,0,0 +2013,5,28,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1225,-13,0,0 +2013,4,25,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,25,1,1435,33,1,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1115,27,1,1805,18,1,0 +2013,8,6,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,21,1,1330,22,1,0 +2013,9,27,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-2,0,1241,-1,0,0 +2013,7,1,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,55,-2,0,620,-3,0,0 +2013,9,3,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1730,13,0,1931,-10,0,0 +2013,5,25,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,945,-5,0,1036,-13,0,0 +2013,7,12,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1815,-2,0,1932,-9,0,0 +2013,5,13,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-4,0,845,-2,0,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,655,3,0,1000,-4,0,0 +2013,5,15,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1116,13,0,1237,13,0,0 +2013,6,4,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-1,0,1416,-7,0,0 +2013,6,5,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,955,-4,0,1435,-16,0,0 +2013,7,16,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,-5,0,1505,-25,0,0 +2013,7,14,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1039,-5,0,1914,2,0,0 +2013,9,3,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-1,0,806,10,0,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-1,0,1407,-16,0,0 +2013,5,18,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,930,25,1,1126,8,0,0 +2013,8,5,1,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1455,46,1,1615,41,1,0 +2013,10,29,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,605,0,0,720,-4,0,0 +2013,5,7,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,600,-6,0,1334,12,0,0 +2013,7,23,2,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1654,-7,0,1825,-17,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1300,-8,0,1614,-13,0,0 +2013,9,30,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1315,-5,0,1524,-9,0,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,21,1,2230,23,1,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,14,0,2040,-11,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,99,1,1530,79,1,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1520,28,1,1640,27,1,0 +2013,4,8,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1347,74,1,1355,89,1,0 +2013,6,11,2,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1600,0,0,2205,-10,0,0 +2013,6,23,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1416,-5,0,1955,0,0,0 +2013,4,2,2,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1145,29,1,1530,27,1,0 +2013,9,19,4,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2205,60,1,607,72,1,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1310,1,0,1825,1,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,605,-4,0,739,12,0,0 +2013,5,7,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1115,-4,0,1354,6,0,0 +2013,5,7,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,14,0,1825,-1,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-3,0,1642,14,0,0 +2013,6,17,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1305,-8,0,1435,-20,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1940,-2,0,2118,4,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1930,21,1,2155,22,1,0 +2013,4,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1251,3,0,1352,-5,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,-7,0,1823,-22,0,0 +2013,4,1,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,850,-6,0,1009,-14,0,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1030,12,0,1107,1,0,0 +2013,8,22,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2205,16,1,2257,10,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1410,22,1,1605,16,1,0 +2013,5,31,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2142,-2,0,2245,-17,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1545,64,1,1850,50,1,0 +2013,8,19,1,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,-7,0,2256,4,0,0 +2013,9,11,3,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-6,0,1555,-24,0,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1335,26,1,1500,24,1,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,718,-2,0,1026,-3,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,755,-3,0,925,-17,0,0 +2013,9,11,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1730,-7,0,1825,1,0,0 +2013,7,28,7,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,23,1,709,4,0,0 +2013,10,30,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1520,4,0,1649,-5,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1445,46,1,1740,34,1,0 +2013,10,29,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,630,0,0,755,-4,0,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1130,-4,0,1252,-7,0,0 +2013,4,7,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1659,-7,0,1824,-4,0,0 +2013,7,15,1,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,825,-7,0,1010,-23,0,0 +2013,9,11,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1159,-3,0,1524,7,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1730,12,0,1922,10,0,0 +2013,5,23,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,3,0,604,6,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1134,6,0,1300,10,0,0 +2013,5,3,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,71,1,2045,63,1,0 +2013,6,11,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1005,-4,0,1220,-2,0,0 +2013,7,20,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,17,1,1425,21,1,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1650,0,0,1755,-8,0,0 +2013,10,1,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-8,0,1014,-26,0,0 +2013,5,9,4,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-6,0,700,-15,0,0 +2013,5,17,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-11,0,1023,-12,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,709,1,0,1539,57,1,0 +2013,8,25,7,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,125,1,1905,121,1,0 +2013,8,31,6,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1155,5,0,1310,-19,0,0 +2013,6,20,4,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1501,18,1,1919,-5,0,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1713,-3,0,2137,0,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,21,1,1455,20,1,0 +2013,10,9,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1020,-9,0,1242,-25,0,0 +2013,4,17,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,733,11,0,905,-7,0,0 +2013,6,15,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,2000,-3,0,2315,-44,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,810,21,1,1135,18,1,0 +2013,4,5,5,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1932,-3,0,2105,-12,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,-7,0,2241,-30,0,0 +2013,9,21,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,710,-10,0,1035,-13,0,0 +2013,6,29,6,OO,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1254,57,1,1530,56,1,0 +2013,6,23,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,-1,0,1540,5,0,0 +2013,10,20,7,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,50,1,1845,49,1,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1503,3,0,1832,-9,0,0 +2013,8,17,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1309,-6,0,1430,-15,0,0 +2013,8,28,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-7,0,1057,7,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,-2,0,1426,-12,0,0 +2013,4,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1205,5,0,1350,-9,0,0 +2013,6,6,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1852,10,0,1942,35,1,0 +2013,4,29,1,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,630,2,0,1235,11,0,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1840,20,1,2006,14,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,850,19,1,1020,15,1,0 +2013,9,29,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-5,0,1927,-19,0,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-6,0,1833,2,0,0 +2013,5,9,4,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,815,-7,0,1656,23,1,0 +2013,10,17,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,29,1,2105,11,0,0 +2013,8,28,3,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,845,1,0,1040,-8,0,0 +2013,10,19,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,4,0,1114,10,0,0 +2013,7,23,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1932,69,1,2141,83,1,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1317,125,1,1543,129,1,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,925,6,0,1040,-1,0,0 +2013,6,11,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1058,24,1,1315,8,0,0 +2013,8,7,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-1,0,1729,0,0,0 +2013,10,9,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1145,-4,0,1430,-18,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,3,0,1745,-8,0,0 +2013,10,14,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,813,-10,0,0 +2013,4,7,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1630,-9,0,1750,-21,0,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,1,0,1923,12,0,0 +2013,6,28,5,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1815,140,1,1945,138,1,0 +2013,4,3,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1600,13,0,1925,7,0,0 +2013,10,26,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-5,0,1702,-15,0,0 +2013,10,6,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,4,0,1757,9,0,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,820,27,1,1150,56,1,0 +2013,4,10,3,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,850,-2,0,1115,-8,0,0 +2013,5,26,7,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1209,-5,0,1508,2,0,0 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1235,-4,0,1457,-10,0,0 +2013,10,13,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-4,0,1746,-12,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1650,3,0,1900,-3,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,-1,0,1145,-7,0,0 +2013,8,12,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1745,12,0,2010,16,1,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1820,8,0,1930,-4,0,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1215,0,0,1409,-11,0,0 +2013,4,18,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1900,-5,0,1935,-1,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1245,10,0,1455,-8,0,0 +2013,9,13,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,35,3,0,816,-7,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1235,52,1,1520,39,1,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,-2,0,1003,-3,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,0,0,1230,7,0,0 +2013,8,21,3,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1319,-5,0,1430,-23,0,0 +2013,7,15,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1332,-4,0,1415,64,1,0 +2013,8,20,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,800,-7,0,0 +2013,8,11,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,36,1,1609,30,1,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,1,0,1100,5,0,0 +2013,4,21,7,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1035,2,0,1330,-3,0,0 +2013,10,5,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-5,0,1140,5,0,0 +2013,5,23,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,940,26,1,1040,53,1,0 +2013,4,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1750,30,1,1935,15,1,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,0,0,1247,-24,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,13,0,1810,14,0,0 +2013,7,8,1,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,49,1,1720,37,1,0 +2013,9,18,3,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-6,0,1137,-5,0,0 +2013,8,6,2,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1403,6,0,1440,8,0,0 +2013,5,15,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,-8,0,2128,-18,0,0 +2013,7,12,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,48,1,1823,48,1,0 +2013,7,19,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1553,48,1,1641,45,1,0 +2013,8,20,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,740,-3,0,855,-10,0,0 +2013,10,3,4,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-5,0,1043,-11,0,0 +2013,7,18,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,0,0,1338,-13,0,0 +2013,4,10,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1710,-5,0,2000,-22,0,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,25,1,1440,27,1,0 +2013,5,6,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1048,-5,0,1420,-1,0,0 +2013,5,8,3,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,28,1,2021,-16,0,0 +2013,8,30,5,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1730,1,0,2005,22,1,0 +2013,6,3,1,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,0,0,1552,-4,0,0 +2013,7,15,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-5,0,1624,-18,0,0 +2013,4,27,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1005,-1,0,1100,-8,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1759,-10,0,2026,-35,0,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,21,1,1426,11,0,0 +2013,10,16,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1900,37,1,2020,25,1,0 +2013,10,24,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,-6,0,1953,-9,0,0 +2013,8,2,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-3,0,1215,-12,0,0 +2013,8,29,4,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,-3,0,1840,-37,0,0 +2013,5,21,2,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1120,-3,0,1355,-14,0,0 +2013,6,11,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1926,-4,0,2153,-5,0,0 +2013,7,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1400,12,0,1515,1,0,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-2,0,935,-11,0,0 +2013,5,17,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,-3,0,2025,-4,0,0 +2013,7,15,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,4,0,715,-7,0,0 +2013,9,5,4,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,655,-3,0,830,-1,0,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,20,1,1300,16,1,0 +2013,10,28,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1505,2,0,1600,-1,0,0 +2013,5,24,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,735,-2,0,1050,-2,0,0 +2013,10,4,5,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1444,1,0,1615,-14,0,0 +2013,10,16,3,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2335,-4,0,750,-12,0,0 +2013,9,13,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,838,11,0,1444,20,1,0 +2013,5,14,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,810,3,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,1,0,1654,10,0,0 +2013,5,5,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-1,0,1021,-28,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1725,9,0,2000,-9,0,0 +2013,8,24,6,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1440,-1,0,1535,-3,0,0 +2013,6,23,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,4,0,2154,0,0,0 +2013,6,5,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1140,1,0,1324,-8,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1750,-4,0,2005,-12,0,0 +2013,8,25,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,500,-1,0,1020,-6,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1450,4,0,1610,-3,0,0 +2013,8,17,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1000,-2,0,1650,5,0,0 +2013,9,1,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1430,-5,0,1840,27,1,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2155,-3,0,2339,5,0,0 +2013,10,7,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1115,-7,0,1952,6,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,845,9,0,1055,8,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,630,56,1,755,76,1,0 +2013,9,10,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1721,5,0,2100,2,0,0 +2013,10,12,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,35,1,1305,45,1,0 +2013,8,21,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,-9,0,1130,-24,0,0 +2013,10,11,5,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1445,21,1,1625,16,1,0 +2013,5,18,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,-8,0,1127,-34,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,,1755,0,1,1 +2013,8,18,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1720,-1,0,2000,-8,0,0 +2013,9,16,1,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,1038,-1,0,0 +2013,10,8,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1940,12,0,2050,-2,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,620,4,0,825,-8,0,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2055,21,1,2205,18,1,0 +2013,6,7,5,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,0,0,1015,-2,0,0 +2013,8,23,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-9,0,2210,-19,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2120,73,1,2300,62,1,0 +2013,9,7,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-10,0,900,-14,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1010,4,0,1445,10,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-1,0,1115,-1,0,0 +2013,10,16,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1500,23,1,1616,29,1,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,0,0,2240,-16,0,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2020,2,0,2145,14,0,0 +2013,8,18,7,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1051,-2,0,1425,-17,0,0 +2013,4,18,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-1,0,1230,-12,0,0 +2013,4,25,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,750,-7,0,855,-9,0,0 +2013,5,11,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,23,1,1232,36,1,0 +2013,9,6,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1505,1,0,1828,6,0,0 +2013,7,21,7,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2007,22,1,2259,18,1,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1355,1,0,1640,16,1,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2115,84,1,2205,74,1,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1203,-6,0,1435,-1,0,0 +2013,9,15,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1859,29,1,2059,26,1,0 +2013,9,13,5,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,905,-6,0,1125,-24,0,0 +2013,8,27,2,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1925,145,1,2055,137,1,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,31,1,918,33,1,0 +2013,8,4,7,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,630,-2,0,915,-15,0,0 +2013,4,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,51,1,1750,48,1,0 +2013,10,24,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1100,3,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1605,-1,0,1705,-4,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1135,5,0,1240,-2,0,0 +2013,10,1,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1204,-4,0,1439,-5,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,2,0,901,10,0,0 +2013,4,11,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1056,1,0,1428,24,1,0 +2013,6,12,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1205,0,0,1310,-5,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,23,1,1911,31,1,0 +2013,6,27,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,155,1,2135,140,1,0 +2013,10,6,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1549,0,0,2110,-4,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,1300,-1,0,1719,-7,0,0 +2013,5,3,5,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,855,-4,0,1100,-20,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1405,41,1,1630,25,1,0 +2013,8,8,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,910,-3,0,1305,-4,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1755,0,0,1955,0,0,0 +2013,6,6,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,1,0,1013,7,0,0 +2013,4,21,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1343,3,0,1640,9,0,0 +2013,7,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1015,51,1,1131,35,1,0 +2013,7,20,6,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,801,0,0,1036,12,0,0 +2013,9,21,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1215,-2,0,1355,-11,0,0 +2013,9,6,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2040,-8,0,2205,-23,0,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,-5,0,1651,22,1,0 +2013,6,2,7,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1031,11,0,1504,1,0,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,730,7,0,1025,21,1,0 +2013,9,10,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,853,-3,0,957,9,0,0 +2013,5,25,6,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1020,16,1,1115,21,1,0 +2013,10,3,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-5,0,2155,5,0,0 +2013,6,20,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1845,-4,0,2030,-18,0,0 +2013,5,2,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,0,0,1435,-16,0,0 +2013,6,7,5,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1533,-2,0,1539,-2,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1925,19,1,2045,12,0,0 +2013,8,23,5,YV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1811,-3,0,1925,-13,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1550,21,1,1915,8,0,0 +2013,6,12,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,856,-1,0,1149,-8,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,113,1,1309,117,1,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,110,1,1305,107,1,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,257,1,2200,247,1,0 +2013,10,2,3,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1650,27,1,1940,20,1,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2040,20,1,2130,17,1,0 +2013,8,14,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-6,0,1859,12,0,0 +2013,6,8,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-8,0,1740,-5,0,0 +2013,4,28,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,-3,0,1630,1,0,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,7,0,1605,9,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-4,0,1302,-9,0,0 +2013,9,23,1,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,800,3,0,1044,-16,0,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1245,69,1,1410,75,1,0 +2013,6,12,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,9,0,2215,7,0,0 +2013,10,16,3,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-6,0,819,-10,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1903,84,1,2146,62,1,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,-3,0,1253,-20,0,0 +2013,8,22,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1423,25,1,1600,11,0,0 +2013,5,12,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-12,0,1020,-14,0,0 +2013,5,13,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1250,20,1,0 +2013,5,17,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,7,0,1605,0,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2045,142,1,2211,134,1,0 +2013,9,24,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-2,0,1315,-3,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-1,0,925,-14,0,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2120,-5,0,2330,-9,0,0 +2013,4,1,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,0,0,1645,-7,0,0 +2013,5,30,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1811,31,1,2109,12,0,0 +2013,4,1,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,1505,-22,0,0 +2013,9,26,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1045,16,1,1145,12,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-3,0,2326,-24,0,0 +2013,4,12,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1005,0,0,1125,-6,0,0 +2013,6,17,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-7,0,1201,-7,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1000,-3,0,1320,-14,0,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,825,-2,0,950,-11,0,0 +2013,9,24,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,35,1,2150,7,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,800,-3,0,855,-5,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,13,0,2255,-5,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,907,7,0,1726,16,1,0 +2013,5,4,6,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,950,-4,0,1125,-11,0,0 +2013,10,3,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,-4,0,1945,-5,0,0 +2013,7,19,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,820,-3,0,1639,8,0,0 +2013,9,6,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-10,0,835,-20,0,0 +2013,5,9,4,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1105,-5,0,1229,-11,0,0 +2013,4,3,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1558,-6,0,0 +2013,6,29,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1639,17,1,1824,2,0,0 +2013,7,12,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,1434,-3,0,0 +2013,9,23,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,-2,0,825,4,0,0 +2013,4,18,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1936,-5,0,2140,14,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,8,0,1415,8,0,0 +2013,9,4,3,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1811,-7,0,1921,-19,0,0 +2013,8,17,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,8,0,344,-3,0,0 +2013,7,11,4,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1350,4,0,1550,9,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,801,-7,0,0 +2013,4,10,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1005,-17,0,0 +2013,9,20,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,955,3,0,1245,-9,0,0 +2013,7,13,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,800,-3,0,825,-10,0,0 +2013,6,24,1,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1735,2,0,1830,-11,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,-3,0,1930,17,1,0 +2013,5,28,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1122,0,0,1630,-12,0,0 +2013,7,5,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-6,0,1715,-14,0,0 +2013,5,5,7,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1709,-3,0,1844,-25,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,730,-5,0,912,-6,0,0 +2013,8,9,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-1,0,2140,36,1,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,79,1,2016,77,1,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,-5,0,1200,-6,0,0 +2013,4,24,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,620,-4,0,723,-10,0,0 +2013,6,10,1,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1700,-7,0,1931,8,0,0 +2013,5,26,7,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-5,0,1200,-21,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1130,-2,0,1230,-10,0,0 +2013,7,14,7,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1425,-6,0,1655,2,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1030,24,1,1309,18,1,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1550,-4,0,2359,14,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,40,1,901,37,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,-3,0,1025,-8,0,0 +2013,9,7,6,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,-1,0,1235,4,0,0 +2013,8,31,6,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,829,-4,0,1427,-3,0,0 +2013,8,14,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1232,-7,0,1511,-12,0,0 +2013,8,9,5,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1441,102,1,1607,97,1,0 +2013,5,26,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1333,-3,0,1423,-1,0,0 +2013,5,4,6,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,92,1,2000,99,1,0 +2013,4,23,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,-5,0,1130,2,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,750,-1,0,917,-10,0,0 +2013,5,23,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2145,9,0,2335,-9,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,-10,0,542,-23,0,0 +2013,10,31,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,721,-7,0,1000,7,0,0 +2013,5,19,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,859,-5,0,1008,17,1,0 +2013,4,11,4,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1100,0,,1453,0,1,1 +2013,4,27,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-7,0,1639,-4,0,0 +2013,6,22,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1900,-3,0,2110,-25,0,0 +2013,7,26,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,650,-2,0,820,-8,0,0 +2013,7,8,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,8,0,2059,10,0,0 +2013,4,20,6,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-4,0,1050,-27,0,0 +2013,6,27,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,104,1,1730,121,1,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1745,9,0,1855,-6,0,0 +2013,7,6,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-8,0,617,-12,0,0 +2013,8,19,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-1,0,1650,-6,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2045,-8,0,2215,-15,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1155,9,0,1330,8,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2040,39,1,2155,29,1,0 +2013,7,28,7,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,31,1,505,35,1,0 +2013,9,6,5,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,-1,0,1820,4,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,730,-1,0,935,-3,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,927,-7,0,1309,-7,0,0 +2013,5,7,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1755,-1,0,2103,-17,0,0 +2013,8,22,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,0,0,925,-10,0,0 +2013,4,4,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,0,0,1303,3,0,0 +2013,8,26,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1516,-5,0,1654,-16,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,16,1,1235,20,1,0 +2013,10,2,3,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,-4,0,2015,-19,0,0 +2013,9,24,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1645,-3,0,1755,-3,0,0 +2013,8,31,6,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1810,15,1,2118,-19,0,0 +2013,4,2,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-2,0,1955,6,0,0 +2013,10,6,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,14,0,1854,25,1,0 +2013,6,23,7,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,135,1,1552,140,1,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,615,-4,0,745,-14,0,0 +2013,5,30,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-10,0,711,-7,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2125,-6,0,2245,6,0,0 +2013,9,7,6,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1430,2,0,1720,-13,0,0 +2013,7,18,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-8,0,1643,-23,0,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,57,1,1955,50,1,0 +2013,4,3,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1330,9,0,1607,8,0,0 +2013,10,17,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,-5,0,2155,-10,0,0 +2013,10,29,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-5,0,1500,-20,0,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2145,11,0,2245,5,0,0 +2013,10,23,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1720,-3,0,2100,-17,0,0 +2013,10,11,5,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,700,-11,0,946,-22,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,69,1,1247,116,1,0 +2013,5,18,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,709,-7,0,1531,-8,0,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1155,16,1,1630,-4,0,0 +2013,9,2,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,3,0,614,-1,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,905,0,0,1032,-9,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1735,0,0,1928,-15,0,0 +2013,6,10,1,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,14,0,1815,5,0,0 +2013,6,17,1,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,1,0,935,9,0,0 +2013,9,5,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,-5,0,855,-7,0,0 +2013,10,4,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-5,0,1343,6,0,0 +2013,9,26,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,2145,-6,0,152,-4,0,0 +2013,9,21,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-10,0,635,-16,0,0 +2013,7,31,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,900,-17,0,0 +2013,7,5,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1942,-7,0,2100,-28,0,0 +2013,4,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,955,-5,0,1235,-14,0,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1130,-4,0,1338,-25,0,0 +2013,9,11,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,825,-7,0,1002,-10,0,0 +2013,7,16,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1034,1,0,1200,38,1,0 +2013,5,13,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,-5,0,1826,2,0,0 +2013,4,17,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-4,0,1900,-15,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1400,0,0,1515,-12,0,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1545,10,0,1725,-5,0,0 +2013,10,30,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-8,0,1740,-14,0,0 +2013,7,6,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-6,0,1955,-11,0,0 +2013,8,21,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,32,1,1843,44,1,0 +2013,5,21,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,-5,0,935,3,0,0 +2013,8,21,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1417,-6,0,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,958,-3,0,1452,-18,0,0 +2013,6,16,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1803,-5,0,2114,-7,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,6,0,30,-2,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,-3,0,615,20,1,0 +2013,7,30,2,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,829,-3,0,1637,-26,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1420,20,1,1515,24,1,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,908,-26,0,0 +2013,10,3,4,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-4,0,1139,-11,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,0,0,1035,-9,0,0 +2013,9,27,5,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,911,-1,0,1439,-7,0,0 +2013,4,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1200,5,0,1400,21,1,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1906,2,0,2226,-15,0,0 +2013,6,14,5,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-11,0,1310,-15,0,0 +2013,6,11,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2000,57,1,2015,82,1,0 +2013,10,14,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,3,0,1650,1,0,0 +2013,8,23,5,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,-14,0,1028,-29,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2108,124,1,133,105,1,0 +2013,10,6,7,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1238,7,0,1409,4,0,0 +2013,4,2,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,747,-3,0,0 +2013,6,25,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,610,-6,0,805,-26,0,0 +2013,4,30,2,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1934,3,0,2104,6,0,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1605,9,0,2145,85,1,0 +2013,8,28,3,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-5,0,925,-8,0,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-9,0,1348,-53,0,0 +2013,5,31,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-8,0,953,1,0,0 +2013,7,12,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2105,42,1,2200,41,1,0 +2013,10,10,4,F9,11042,Cleveland-Hopkins International,Cleveland,OH,14122,Pittsburgh International,Pittsburgh,PA,745,-13,0,826,-11,0,0 +2013,10,16,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,-7,0,1115,-1,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1520,53,1,1650,66,1,0 +2013,7,29,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2135,-7,0,2325,-21,0,0 +2013,8,5,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,-6,0,1114,-8,0,0 +2013,8,26,1,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1120,-3,0,1302,-5,0,0 +2013,9,1,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,6,0,30,22,1,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,955,-6,0,1750,-7,0,0 +2013,8,2,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,815,-18,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,1,0,1710,-24,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1145,4,0,1840,16,1,0 +2013,10,4,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1445,0,0,1628,-15,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,950,1,0,1110,-21,0,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2253,12,0,650,-6,0,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,22,1,2316,15,1,0 +2013,4,20,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-1,0,1745,-14,0,0 +2013,5,3,5,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1620,-2,0,1827,-18,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1937,63,1,2301,68,1,0 +2013,4,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1135,-7,0,1256,-5,0,0 +2013,10,25,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,-2,0,1930,2,0,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-3,0,1623,6,0,0 +2013,10,8,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1832,-10,0,1948,3,0,0 +2013,6,15,6,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,41,1,1630,30,1,0 +2013,6,21,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2210,-9,0,2315,12,0,0 +2013,8,6,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-7,0,648,-6,0,0 +2013,5,14,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,850,-13,0,0 +2013,5,7,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-5,0,1806,1,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-1,0,1151,-7,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2030,7,0,2329,2,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,807,25,1,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,24,1,50,12,0,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-1,0,1130,-12,0,0 +2013,9,21,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1355,-2,0,1437,-7,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1450,35,1,1550,51,1,0 +2013,8,8,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1656,30,1,1840,20,1,0 +2013,6,22,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,843,13,0,1138,11,0,0 +2013,7,15,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-5,0,732,-4,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1215,21,1,1545,18,1,0 +2013,4,9,2,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1435,0,0,1655,3,0,0 +2013,10,3,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,901,-11,0,0 +2013,8,30,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,915,-10,0,1035,-3,0,0 +2013,10,18,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-8,0,1814,-19,0,0 +2013,10,26,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,903,-2,0,1157,-8,0,0 +2013,6,10,1,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1355,121,1,1651,133,1,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2040,4,0,2155,9,0,0 +2013,9,15,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,-8,0,1033,-18,0,0 +2013,9,21,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1629,-1,0,1915,-2,0,0 +2013,5,4,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-8,0,935,-3,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1320,-3,0,1435,-7,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1750,13,0,1903,23,1,0 +2013,8,9,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-5,0,957,-12,0,0 +2013,4,26,5,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,4,0,1910,5,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1605,56,1,2125,48,1,0 +2013,10,21,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,7,0,1500,-6,0,0 +2013,6,22,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,900,-10,0,958,-11,0,0 +2013,5,5,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,751,-4,0,1042,2,0,0 +2013,6,6,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-3,0,1912,-7,0,0 +2013,4,13,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1110,-3,0,1230,-4,0,0 +2013,7,26,5,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1535,0,0,1920,-9,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,813,0,0,910,6,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2035,8,0,2205,6,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,955,-3,0,1200,-3,0,0 +2013,7,30,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-7,0,2050,-21,0,0 +2013,8,18,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1245,-4,0,1442,-21,0,0 +2013,7,1,1,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-7,0,1133,-17,0,0 +2013,9,25,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1334,-5,0,1453,-29,0,0 +2013,6,29,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-3,0,935,-12,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-7,0,805,-20,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,-2,0,1355,-6,0,0 +2013,10,19,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1645,25,1,1800,26,1,0 +2013,4,24,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1730,0,0,2041,7,0,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2215,-1,0,23,-13,0,0 +2013,5,7,2,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-10,0,1603,-14,0,0 +2013,4,19,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-6,0,1210,-4,0,0 +2013,10,31,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1540,28,1,1705,20,1,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-2,0,1432,-5,0,0 +2013,10,18,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1059,-12,0,1254,-10,0,0 +2013,7,21,7,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-5,0,1227,-3,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,0,0,1235,-1,0,0 +2013,10,18,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1919,-6,0,2026,7,0,0 +2013,7,21,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1601,-1,0,1734,20,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2303,96,1,13,86,1,0 +2013,6,7,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,845,0,0,1230,-10,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,2,0,1210,4,0,0 +2013,9,5,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1112,-2,0,1233,-5,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1520,-3,0,1820,-23,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2000,-4,0,2208,-8,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,13830,Kahului Airport,Kahului,HI,1215,-4,0,1547,-24,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,910,1,0,1320,4,0,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1136,95,1,1234,100,1,0 +2013,7,16,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2105,-2,0,2235,-6,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2115,17,1,2353,0,0,0 +2013,9,20,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-3,0,1916,-3,0,0 +2013,4,13,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,9,0,2210,-10,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,0,0,1946,-11,0,0 +2013,9,13,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,14,0,1625,10,0,0 +2013,5,5,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1448,-6,0,2010,-18,0,0 +2013,10,6,7,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-10,0,1123,-40,0,0 +2013,9,24,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1320,5,0,1645,-16,0,0 +2013,8,3,6,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-4,0,2047,-6,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,-4,0,2035,-12,0,0 +2013,9,11,3,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-6,0,1421,-10,0,0 +2013,10,10,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,705,-7,0,1030,-17,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-2,0,1919,-4,0,0 +2013,10,18,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,-2,0,1320,-7,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,1,0,1449,-7,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1620,2,0,2000,-17,0,0 +2013,5,11,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,951,16,1,1126,6,0,0 +2013,4,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-2,0,1312,1,0,0 +2013,5,12,7,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,13,0,2015,-1,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,925,20,1,1040,23,1,0 +2013,5,29,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1055,-3,0,1225,-4,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1705,24,1,2045,14,0,0 +2013,6,4,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1256,27,1,1655,19,1,0 +2013,8,7,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-8,0,1612,-21,0,0 +2013,5,12,7,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,755,-3,0,1600,-6,0,0 +2013,4,23,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1755,12,0,1930,2,0,0 +2013,9,16,1,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1255,-6,0,0 +2013,9,3,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,1,0,1820,-14,0,0 +2013,4,27,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1553,-6,0,1848,-29,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1320,17,1,1650,29,1,0 +2013,6,18,2,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1730,78,1,1843,85,1,0 +2013,9,6,5,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,52,1,2230,49,1,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2040,0,,2205,0,1,1 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1535,17,1,1620,19,1,0 +2013,6,13,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,48,1,1000,48,1,0 +2013,4,29,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,1,0,1925,-11,0,0 +2013,6,8,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,648,-19,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,29,1,2203,8,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,5,0,1830,8,0,0 +2013,8,30,5,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-2,0,525,-5,0,0 +2013,7,16,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,13,0,2000,14,0,0 +2013,5,31,5,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1230,13,0,1626,29,1,0 +2013,5,3,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,8,0,906,-1,0,0 +2013,8,26,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-10,0,2035,-25,0,0 +2013,9,25,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,850,6,0,0 +2013,6,20,4,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-14,0,1046,-8,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,11,0,2100,-2,0,0 +2013,9,24,2,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1615,-3,0,1805,-2,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1530,25,1,2040,15,1,0 +2013,9,27,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1119,-9,0,1249,-21,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1550,16,1,1940,15,1,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,0,0,1120,-11,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-1,0,1340,-1,0,0 +2013,6,15,6,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1115,-6,0,1300,4,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2240,-7,0,21,-12,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,4,0,2035,-4,0,0 +2013,8,3,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1459,19,1,1654,25,1,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1820,0,0,2014,-8,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1345,3,0,1640,4,0,0 +2013,6,12,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,919,1,0,951,1,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,7,0,1255,-1,0,0 +2013,5,1,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,6,0,1910,-3,0,0 +2013,8,27,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,752,-5,0,904,-13,0,0 +2013,7,30,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,2,0,1102,5,0,0 +2013,7,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1324,-8,0,1451,-6,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1240,-6,0,1415,-4,0,0 +2013,7,10,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1741,0,,1904,0,1,1 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2030,-3,0,2240,-17,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1325,-3,0,1445,-3,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1326,-7,0,1717,-12,0,0 +2013,5,24,5,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1215,14,0,1333,6,0,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,3,0,923,-1,0,0 +2013,6,27,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1348,27,1,1939,16,1,0 +2013,8,12,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,51,1,1735,44,1,0 +2013,8,1,4,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,930,-5,0,1105,2,0,0 +2013,4,14,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-2,0,1550,-10,0,0 +2013,9,3,2,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1158,-5,0,1440,-14,0,0 +2013,9,11,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-10,0,1147,-14,0,0 +2013,10,19,6,US,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,0,0,910,-8,0,0 +2013,9,29,7,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1740,-6,0,2015,-1,0,0 +2013,10,21,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,756,3,0,0 +2013,10,22,2,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,655,-5,0,905,-14,0,0 +2013,8,30,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1240,-4,0,1545,8,0,0 +2013,6,20,4,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1200,-1,0,1500,5,0,0 +2013,5,7,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1823,-6,0,2123,-21,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1135,4,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1329,24,1,1814,1,0,0 +2013,4,9,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,53,1,905,57,1,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1310,1,0,1446,10,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1910,22,1,2045,10,0,0 +2013,6,10,1,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,321,1,1020,326,1,0 +2013,7,14,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1053,23,1,1340,14,0,0 +2013,7,14,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1930,-12,0,2205,-12,0,0 +2013,4,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2230,0,0,640,2,0,0 +2013,5,3,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,850,-6,0,1025,-6,0,0 +2013,7,5,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,800,14,0,915,12,0,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-2,0,2235,-8,0,0 +2013,4,27,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2015,-8,0,2220,-18,0,0 +2013,9,20,5,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1250,22,1,1530,16,1,0 +2013,10,16,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,-3,0,1725,-5,0,0 +2013,7,11,4,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1332,0,,1528,0,1,1 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,745,-9,0,900,-13,0,0 +2013,5,15,3,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-1,0,955,-11,0,0 +2013,8,8,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1951,-5,0,2316,-18,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2105,-1,0,2235,-17,0,0 +2013,9,18,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,854,-6,0,1014,-11,0,0 +2013,9,29,7,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1650,-9,0,1939,2,0,0 +2013,10,26,6,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,805,-7,0,1034,-6,0,0 +2013,10,25,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1304,4,0,1410,1,0,0 +2013,10,16,3,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1857,-10,0,2058,-17,0,0 +2013,10,25,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,650,-5,0,815,-7,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1005,0,0,1438,-6,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1815,148,1,1945,120,1,0 +2013,6,6,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1206,-8,0,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,930,6,0,1210,-5,0,0 +2013,5,5,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,815,-2,0,1055,-7,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,-5,0,1515,-8,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,12,0,846,16,1,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,-5,0,1555,-13,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2005,61,1,2305,48,1,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,-1,0,939,30,1,0 +2013,9,28,6,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-10,0,1419,-10,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,87,1,1940,76,1,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1335,8,0,1500,8,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,1,0,1030,3,0,0 +2013,6,1,6,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-1,0,656,2,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1245,-2,0,1515,-12,0,0 +2013,10,13,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1742,89,1,2110,88,1,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2040,5,0,2205,-3,0,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1000,4,0,1520,-12,0,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,730,0,0,1056,-10,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,25,1,1750,36,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,805,24,1,1145,28,1,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,810,82,1,1245,79,1,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1702,69,1,1939,72,1,0 +2013,7,26,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1518,-2,0,2359,-7,0,0 +2013,6,10,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1536,-4,0,1750,-7,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-4,0,2135,-2,0,0 +2013,8,2,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,835,-4,0,940,-10,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1720,16,1,2053,7,0,0 +2013,6,28,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,10,0,805,10,0,0 +2013,8,9,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1352,-8,0,1438,-22,0,0 +2013,4,12,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1605,99,1,1903,86,1,0 +2013,7,3,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,-2,0,1310,-8,0,0 +2013,9,19,4,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,840,-1,0,1007,3,0,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,11,0,1542,8,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-4,0,2308,15,1,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1545,2,0,1715,12,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2040,32,1,2140,26,1,0 +2013,8,11,7,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,-5,0,1835,-2,0,0 +2013,10,12,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-8,0,1620,-19,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,3,0,1740,-10,0,0 +2013,9,18,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1235,0,0,1445,-12,0,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1659,-2,0,2006,-31,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1030,15,1,1800,8,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1320,6,0,1445,10,0,0 +2013,8,1,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,9,0,1128,-16,0,0 +2013,6,21,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1416,-10,0,1535,-27,0,0 +2013,9,9,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1233,-1,0,1400,8,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2245,-4,0,2335,-6,0,0 +2013,5,14,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-7,0,1038,-15,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1105,2,0,1235,-4,0,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1122,19,1,1427,18,1,0 +2013,4,13,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1625,-1,0,1950,5,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2225,17,1,2325,22,1,0 +2013,4,30,2,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1156,-3,0,1619,-16,0,0 +2013,7,1,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1320,-2,0,1350,0,0,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,-3,0,2049,16,1,0 +2013,8,28,3,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1635,3,0,1740,-15,0,0 +2013,4,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1600,-4,0,1620,-7,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,0,0,1635,-6,0,0 +2013,6,4,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,-7,0,1535,-34,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,910,13,0,1130,21,1,0 +2013,6,16,7,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,644,10,0,752,3,0,0 +2013,8,5,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1900,29,1,2210,35,1,0 +2013,9,20,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1800,-4,0,1953,-15,0,0 +2013,5,23,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1037,5,0,1147,-9,0,0 +2013,8,12,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,-1,0,940,-8,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,730,-11,0,859,1,0,0 +2013,6,6,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,740,-3,0,950,-19,0,0 +2013,10,7,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,20,1,1506,49,1,0 +2013,7,25,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-1,0,1006,-4,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-1,0,1035,-5,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1025,-5,0,1232,-3,0,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1134,-3,0,1404,10,0,0 +2013,9,15,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,-4,0,910,-20,0,0 +2013,10,11,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2010,2,0,2055,-11,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,755,16,1,0 +2013,8,16,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,11,0,1450,9,0,0 +2013,10,17,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1733,23,1,2012,20,1,0 +2013,10,9,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-10,0,1120,16,1,0 +2013,5,22,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,846,3,0,924,-2,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1315,133,1,1645,150,1,0 +2013,5,20,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-1,0,1325,-14,0,0 +2013,7,21,7,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,9,0,735,9,0,0 +2013,8,23,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2030,16,1,2055,22,1,0 +2013,4,29,1,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1805,2,0,2055,-24,0,0 +2013,7,10,3,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-5,0,1615,-16,0,0 +2013,8,8,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1725,33,1,1834,33,1,0 +2013,8,1,4,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1433,-8,0,1546,-22,0,0 +2013,7,5,5,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-2,0,1140,-5,0,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,21,1,1030,4,0,0 +2013,4,15,1,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,805,-3,0,1000,-17,0,0 +2013,8,16,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-3,0,1250,-22,0,0 +2013,7,6,6,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-2,0,2145,3,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1053,-6,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2005,-1,0,2255,-10,0,0 +2013,10,27,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1902,40,1,2100,29,1,0 +2013,5,22,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,22,1,1315,5,0,0 +2013,7,14,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,0,,1000,0,1,1 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1915,-2,0,2151,-14,0,0 +2013,6,30,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,24,1,1155,34,1,0 +2013,8,13,2,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-4,0,1632,-3,0,0 +2013,6,9,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1115,56,1,1233,65,1,0 +2013,7,13,6,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1620,159,1,1923,139,1,0 +2013,9,5,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1225,-6,0,1511,-32,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,7,0,1915,-9,0,0 +2013,8,4,7,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,-6,0,1155,-13,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1810,-6,0,2009,-4,0,0 +2013,7,1,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,49,1,1040,82,1,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,905,4,0,1610,18,1,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,-3,0,2042,15,1,0 +2013,9,24,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,-4,0,1702,-8,0,0 +2013,4,12,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,-3,0,1841,-25,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,725,-5,0,915,-1,0,0 +2013,8,19,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1940,-5,0,2040,0,0,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1100,15,1,1155,14,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,955,1,0,1320,-2,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1800,86,1,2130,99,1,0 +2013,8,26,1,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1719,-7,0,1854,-1,0,0 +2013,8,19,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2014,-6,0,2105,9,0,0 +2013,10,20,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-14,0,1705,-9,0,0 +2013,8,15,4,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,920,-1,0,1045,-12,0,0 +2013,9,15,7,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,0,0,1218,-3,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,-5,0,2149,-4,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,900,3,0,945,0,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-7,0,1925,-15,0,0 +2013,10,23,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2110,-3,0,2233,-13,0,0 +2013,5,17,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1210,-6,0,1340,15,1,0 +2013,4,18,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,72,1,1835,62,1,0 +2013,6,1,6,EV,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,621,141,1,710,135,1,0 +2013,8,14,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1710,-8,0,1945,-1,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1910,109,1,2245,123,1,0 +2013,6,14,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-2,0,853,-9,0,0 +2013,4,8,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1425,-6,0,1605,-15,0,0 +2013,10,17,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2155,-3,0,2310,-5,0,0 +2013,10,31,4,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,63,1,2005,74,1,0 +2013,9,7,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1125,24,1,1416,14,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1005,4,0,1115,-4,0,0 +2013,9,5,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,49,1,2015,35,1,0 +2013,7,30,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,758,-8,0,0 +2013,9,16,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2135,1,0,2357,-6,0,0 +2013,6,28,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,-7,0,1615,8,0,0 +2013,4,11,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1108,21,1,1405,-7,0,0 +2013,10,3,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,1403,-11,0,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,12,0,1650,1,0,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2029,150,1,2248,128,1,0 +2013,5,30,4,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,11,0,1420,-5,0,0 +2013,6,9,7,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,6,0,2115,-4,0,0 +2013,8,2,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,13,0,1557,9,0,0 +2013,9,13,5,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1842,55,1,2019,46,1,0 +2013,10,18,5,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,1,0,1925,-13,0,0 +2013,7,22,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1055,-2,0,1150,-3,0,0 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,7,0,1130,4,0,0 +2013,9,25,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-3,0,910,-2,0,0 +2013,9,18,3,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1400,-4,0,1547,-20,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,915,-5,0,1445,-8,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1501,-2,0,1546,-8,0,0 +2013,4,11,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1055,12,0,1250,9,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,14,0,1510,12,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,830,7,0,1049,-11,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-2,0,1648,-7,0,0 +2013,5,26,7,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,0,0,1225,1,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1710,16,1,2020,24,1,0 +2013,8,2,5,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2057,2,0,450,5,0,0 +2013,6,6,4,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1425,10,0,1710,15,1,0 +2013,4,30,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,905,-7,0,1024,1,0,0 +2013,6,5,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1650,2,0,1805,0,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1320,1,0,1415,-2,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,640,0,0,805,-9,0,0 +2013,9,2,1,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,55,1,2030,111,1,0 +2013,5,14,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-11,0,1410,-12,0,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1145,154,1,1425,145,1,0 +2013,10,22,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1006,-5,0,1630,-24,0,0 +2013,8,2,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,5,0,1635,6,0,0 +2013,7,24,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,-6,0,930,-5,0,0 +2013,10,15,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2106,-7,0,16,8,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,740,-4,0,855,-7,0,0 +2013,4,23,2,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1210,89,1,1520,82,1,0 +2013,5,24,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2000,62,1,2159,58,1,0 +2013,8,8,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1926,149,1,2106,132,1,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1230,-8,0,1447,-9,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,850,-2,0,1615,-17,0,0 +2013,8,26,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,830,-4,0,955,-16,0,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2055,-7,0,2219,5,0,0 +2013,9,25,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,24,1,740,5,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1415,-3,0,1525,-9,0,0 +2013,6,16,7,OO,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,908,24,1,1219,13,0,0 +2013,4,26,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,137,1,2110,154,1,0 +2013,4,24,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2315,-10,0,518,-1,0,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1440,-1,0,1730,-20,0,0 +2013,10,25,5,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-2,0,1130,13,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,55,1,1406,68,1,0 +2013,9,15,7,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,-5,0,1105,-17,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,0,,1325,0,1,1 +2013,5,9,4,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1714,14,0,1923,22,1,0 +2013,4,22,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,840,15,1,0 +2013,4,13,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,941,-5,0,1132,-6,0,0 +2013,6,2,7,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,38,1,1852,38,1,0 +2013,10,23,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1655,-1,0,1840,-9,0,0 +2013,6,19,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-8,0,712,20,1,0 +2013,10,14,1,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1700,52,1,1940,51,1,0 +2013,8,3,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,1002,-5,0,0 +2013,8,16,5,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1600,-3,0,1805,-13,0,0 +2013,10,9,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-2,0,1757,-18,0,0 +2013,8,9,5,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1220,-4,0,1431,-9,0,0 +2013,5,24,5,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1731,-10,0,1907,-22,0,0 +2013,10,17,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,-5,0,1034,-9,0,0 +2013,5,6,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2045,-5,0,2110,-3,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,828,-14,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,21,1,1134,7,0,0 +2013,10,27,7,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2151,18,1,617,6,0,0 +2013,10,25,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2030,-5,0,2147,0,0,0 +2013,4,5,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1535,-1,0,1625,3,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2115,16,1,2230,2,0,0 +2013,8,13,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1545,20,1,1555,19,1,0 +2013,9,13,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1950,1,0,2103,18,1,0 +2013,7,13,6,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1019,0,0,1440,9,0,0 +2013,5,28,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,605,-9,0,800,-13,0,0 +2013,10,13,7,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,-1,0,720,-6,0,0 +2013,9,5,4,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1850,-9,0,1945,-24,0,0 +2013,9,2,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1011,-13,0,1034,-25,0,0 +2013,5,30,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,600,-1,0,725,-5,0,0 +2013,8,13,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1510,-3,0,1735,-10,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-6,0,1111,-13,0,0 +2013,9,26,4,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1703,-9,0,1928,4,0,0 +2013,8,29,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1909,-10,0,0 +2013,7,13,6,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1230,1,0,1420,0,0,0 +2013,8,16,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1535,37,1,1655,43,1,0 +2013,7,20,6,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1041,9,0,1157,17,1,0 +2013,7,20,6,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1035,-4,0,1340,-3,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1750,25,1,1940,22,1,0 +2013,5,21,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,600,-4,0,745,0,0,0 +2013,5,20,1,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1650,-2,0,1802,0,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1800,0,0,1932,-1,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1355,-2,0,1510,-10,0,0 +2013,5,12,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1945,0,0,2110,-4,0,0 +2013,9,10,2,EV,12953,LaGuardia,New York,NY,13931,Norfolk International,Norfolk,VA,1550,10,0,1728,3,0,0 +2013,8,6,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,840,-2,0,1132,-19,0,0 +2013,10,28,1,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2058,115,1,500,87,1,0 +2013,7,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,23,1,1149,12,0,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,16,1,1355,11,0,0 +2013,4,18,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1745,-5,0,1905,-17,0,0 +2013,10,25,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,11,0,1110,0,0,0 +2013,5,23,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1105,-13,0,1333,-18,0,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2025,0,0,2235,10,0,0 +2013,10,19,6,EV,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,756,-1,0,853,2,0,0 +2013,7,25,4,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,700,-10,0,950,0,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-4,0,1753,4,0,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1530,6,0,1745,-4,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1755,60,1,2140,66,1,0 +2013,7,11,4,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,20,1,1931,3,0,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,905,14,0,1125,-4,0,0 +2013,4,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1200,-3,0,1325,-11,0,0 +2013,8,2,5,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1443,11,0,1644,6,0,0 +2013,8,22,4,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2035,-1,0,2220,-19,0,0 +2013,10,21,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1450,-11,0,1850,-25,0,0 +2013,9,15,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,853,1,0,0 +2013,4,24,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1530,-3,0,1855,-17,0,0 +2013,4,7,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,900,-4,0,1025,-13,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,835,8,0,950,21,1,0 +2013,5,17,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,-7,0,1904,3,0,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1608,-8,0,1752,1,0,0 +2013,4,12,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1232,81,1,2100,55,1,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1032,-5,0,1217,-10,0,0 +2013,9,30,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1345,0,0,1445,-7,0,0 +2013,6,25,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-11,0,2040,-14,0,0 +2013,4,24,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,-9,0,1615,65,1,0 +2013,6,15,6,EV,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1551,-3,0,1824,-27,0,0 +2013,4,13,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2000,-6,0,2125,-4,0,0 +2013,9,29,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,12,0,1949,16,1,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1858,36,1,2114,36,1,0 +2013,6,3,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1251,-8,0,1521,-9,0,0 +2013,5,3,5,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,0,0,1351,-12,0,0 +2013,8,16,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-1,0,1024,-11,0,0 +2013,7,12,5,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1405,20,1,1645,34,1,0 +2013,8,22,4,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,1045,-25,0,0 +2013,10,9,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1614,-7,0,1739,-5,0,0 +2013,5,18,6,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1348,11,0,1619,-2,0,0 +2013,7,28,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1657,10,0,1850,-3,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,710,-3,0,850,-16,0,0 +2013,4,17,3,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,635,-7,0,852,-26,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,43,1,2105,42,1,0 +2013,10,16,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-9,0,1703,-4,0,0 +2013,9,3,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-7,0,1827,-29,0,0 +2013,5,3,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,1,0,1645,-8,0,0 +2013,5,17,5,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,-8,0,1630,-3,0,0 +2013,10,12,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1207,-2,0,1457,-11,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,2,0,2145,-5,0,0 +2013,10,29,2,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,1,0,805,28,1,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1940,15,1,2240,20,1,0 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1743,17,1,2018,14,0,0 +2013,6,6,4,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1930,15,1,2034,17,1,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1905,29,1,2035,17,1,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1739,1,0,1932,-11,0,0 +2013,7,12,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,720,-7,0,1222,-10,0,0 +2013,4,23,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1707,56,1,2005,62,1,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2040,4,0,2305,-20,0,0 +2013,9,27,5,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1822,-4,0,1928,-14,0,0 +2013,5,18,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,925,4,0,1355,2,0,0 +2013,5,27,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1355,-7,0,1455,-5,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,44,1,2159,23,1,0 +2013,7,25,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1800,-3,0,1915,-13,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,802,24,1,1123,-5,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1529,-4,0,1723,-13,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2255,-1,0,5,-9,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,600,2,0,726,-1,0,0 +2013,7,8,1,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,630,-1,0,730,-3,0,0 +2013,5,24,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,743,-4,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1115,0,0,1355,-1,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1325,8,0,1625,14,0,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,2145,-5,0,2300,-15,0,0 +2013,5,17,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1555,1,0,1650,-2,0,0 +2013,8,16,5,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2155,1,0,543,3,0,0 +2013,8,6,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,900,-2,0,1140,-12,0,0 +2013,4,8,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,25,-5,0,532,-19,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,15,1,1635,14,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1924,0,0,2246,-22,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1047,-1,0,1900,-4,0,0 +2013,5,19,7,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,637,-6,0,715,-10,0,0 +2013,4,7,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,834,-4,0,1047,0,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-2,0,2302,34,1,0 +2013,6,10,1,OO,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1051,-9,0,1512,-6,0,0 +2013,9,8,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1129,171,1,1405,162,1,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1100,-5,0,1225,-16,0,0 +2013,4,1,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2000,23,1,2120,12,0,0 +2013,6,29,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1300,28,1,1410,27,1,0 +2013,4,10,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,733,-10,0,905,-30,0,0 +2013,9,14,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,-1,0,1230,-6,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1525,2,0,1750,-2,0,0 +2013,9,26,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,-5,0,1843,-5,0,0 +2013,9,25,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2025,-1,0,2140,-11,0,0 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1609,0,0,57,-27,0,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,739,-3,0,841,-15,0,0 +2013,7,27,6,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1100,-12,0,1309,-15,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2040,37,1,2205,32,1,0 +2013,4,24,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,802,-7,0,1636,-46,0,0 +2013,4,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1600,-1,0,1758,-10,0,0 +2013,10,10,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,40,1,1835,34,1,0 +2013,9,1,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1220,-3,0,1310,-7,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,841,-1,0,944,16,1,0 +2013,5,22,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1446,67,1,1623,71,1,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-2,0,1310,-13,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1615,2,0,1832,-16,0,0 +2013,8,16,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2210,80,1,37,64,1,0 +2013,7,9,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-6,0,857,7,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1725,23,1,2300,0,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1140,16,1,1337,16,1,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,750,-2,0,1546,-17,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1840,-4,0,2215,-18,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,835,-1,0,1110,0,0,0 +2013,4,12,5,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1220,71,1,1600,74,1,0 +2013,8,11,7,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1705,14,0,2004,11,0,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1025,-5,0,1150,-4,0,0 +2013,7,1,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1340,63,1,1425,63,1,0 +2013,5,3,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,1,0,1749,2,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1530,-3,0,1650,-5,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1105,4,0,1350,-24,0,0 +2013,4,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2018,4,0,2334,-11,0,0 +2013,4,5,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,18,1,2211,3,0,0 +2013,7,15,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,915,-6,0,1130,-15,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,-5,0,832,-11,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,750,0,,1025,0,1,1 +2013,9,25,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,724,-9,0,1022,-10,0,0 +2013,7,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,855,-2,0,1030,-11,0,0 +2013,8,2,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1558,92,1,2014,65,1,0 +2013,6,7,5,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,822,-2,0,1630,-20,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1320,24,1,1430,24,1,0 +2013,5,8,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,9,0,1320,9,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-5,0,1529,-16,0,0 +2013,6,23,7,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,-4,0,1006,-23,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1135,-7,0,1724,-5,0,0 +2013,9,9,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,0,0,1934,-6,0,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-7,0,920,-26,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1150,-2,0,1255,-9,0,0 +2013,7,31,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1120,-3,0,1145,-4,0,0 +2013,9,16,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1456,41,1,1847,35,1,0 +2013,7,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1840,0,0,1945,-6,0,0 +2013,7,23,2,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-2,0,2005,-7,0,0 +2013,8,6,2,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-12,0,835,1,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1935,-2,0,2117,-15,0,0 +2013,5,28,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,640,-3,0,926,-8,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,925,4,0,1105,-10,0,0 +2013,8,23,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-7,0,1555,-13,0,0 +2013,9,29,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-5,0,1245,8,0,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1110,2,0,1331,11,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,1,0,2311,-18,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2020,-1,0,2115,-8,0,0 +2013,6,29,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,37,1,1850,26,1,0 +2013,8,8,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,710,-6,0,844,-18,0,0 +2013,8,28,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1426,71,1,1558,53,1,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,1,0,2245,-14,0,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,652,4,0,954,-17,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2000,11,0,2100,4,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2040,7,0,25,9,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1725,-1,0,1824,24,1,0 +2013,9,22,7,OO,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-7,0,1957,-5,0,0 +2013,5,8,3,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-8,0,10,-8,0,0 +2013,5,19,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1725,2,0,1835,-6,0,0 +2013,8,13,2,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1903,-5,0,2108,5,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,14,0,1305,10,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,12,0,935,8,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1700,9,0,1820,9,0,0 +2013,9,11,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,-17,0,2243,-25,0,0 +2013,10,23,3,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,605,-13,0,840,2,0,0 +2013,4,16,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1705,-10,0,1912,-11,0,0 +2013,7,31,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,231,1,2130,203,1,0 +2013,8,30,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1930,13,0,2125,10,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1719,2,0,1912,-12,0,0 +2013,8,20,2,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,40,1,1815,20,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2300,14,0,47,10,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,4,0,2125,2,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,955,2,0,1700,-10,0,0 +2013,9,17,2,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,-3,0,2230,-13,0,0 +2013,9,24,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1655,151,1,1952,141,1,0 +2013,4,22,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1545,4,0,0 +2013,4,3,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1915,-4,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1615,16,1,1720,1,0,0 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1505,33,1,1620,26,1,0 +2013,8,8,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1917,-1,0,2105,-1,0,0 +2013,9,9,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1455,8,0,1605,4,0,0 +2013,5,28,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2234,3,0,650,0,0,0 +2013,9,25,3,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,710,-3,0,1508,-9,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1506,2,0,1743,1,0,0 +2013,10,30,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-3,0,1742,-6,0,0 +2013,9,29,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1555,53,1,1810,24,1,0 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,1,0,2022,14,0,0 +2013,9,16,1,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1240,-10,0,1545,-18,0,0 +2013,10,2,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1010,23,1,1100,9,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,21,1,1958,17,1,0 +2013,5,7,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-6,0,920,-1,0,0 +2013,6,13,4,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,833,-3,0,1043,9,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,10,0,2244,-2,0,0 +2013,7,19,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,809,-4,0,0 +2013,9,18,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,940,1,0,1510,-9,0,0 +2013,4,29,1,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,805,-4,0,1000,-11,0,0 +2013,10,20,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2125,-6,0,547,-13,0,0 +2013,8,29,4,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1755,24,1,2005,22,1,0 +2013,4,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,16,1,2125,0,0,0 +2013,8,20,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,1,0,1654,3,0,0 +2013,5,23,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,0,,1956,0,1,1 +2013,7,30,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,2,0,842,4,0,0 +2013,10,6,7,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-5,0,1913,-5,0,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,835,-3,0,1145,-7,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,18,1,1420,9,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,905,3,0,1440,-8,0,0 +2013,9,30,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1600,-4,0,1629,-12,0,0 +2013,5,26,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,111,1,1836,98,1,0 +2013,10,2,3,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-9,0,1055,-15,0,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,6,0,1530,4,0,0 +2013,10,27,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,640,-2,0,810,6,0,0 +2013,4,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1510,17,1,1641,9,0,0 +2013,9,17,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,659,-5,0,919,-17,0,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,-3,0,1950,1,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,13,0,1932,6,0,0 +2013,10,11,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,8,0,933,38,1,0 +2013,6,11,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1930,-7,0,2240,-23,0,0 +2013,6,22,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,236,1,1001,224,1,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1700,38,1,2011,28,1,0 +2013,4,28,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,1,0,1604,5,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,-1,0,2112,5,0,0 +2013,6,27,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,23,1,1555,14,0,0 +2013,4,13,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1025,44,1,1040,40,1,0 +2013,6,13,4,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,945,1,0,1145,1,0,0 +2013,4,29,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1232,14,0,1519,22,1,0 +2013,4,13,6,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1441,-7,0,1655,-4,0,0 +2013,9,7,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2035,-2,0,2222,-6,0,0 +2013,4,28,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-7,0,1335,-9,0,0 +2013,7,5,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-9,0,2130,-11,0,0 +2013,6,22,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1310,-3,0,1435,-3,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,1,0,1530,4,0,0 +2013,7,31,3,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,951,-1,0,1308,-2,0,0 +2013,6,19,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,9,0,10,17,1,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,-9,0,812,-4,0,0 +2013,9,23,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-1,0,915,-10,0,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1750,-3,0,1850,0,0,0 +2013,4,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,-2,0,2025,-17,0,0 +2013,4,28,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1112,-4,0,0 +2013,9,17,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,2030,52,1,2220,54,1,0 +2013,9,5,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-4,0,1038,-5,0,0 +2013,4,21,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1535,2,0,1655,-5,0,0 +2013,7,8,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1143,4,0,1330,1,0,0 +2013,7,18,4,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1602,128,1,1918,129,1,0 +2013,6,1,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,-9,0,1452,7,0,0 +2013,8,11,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,910,-5,0,1035,-10,0,0 +2013,8,23,5,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,700,-5,0,825,-17,0,0 +2013,10,30,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2020,-5,0,2225,-4,0,0 +2013,5,10,5,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,27,1,1844,40,1,0 +2013,9,6,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-2,0,1211,-17,0,0 +2013,8,20,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-6,0,1345,-12,0,0 +2013,9,25,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-2,0,2013,-10,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1205,-7,0,1330,-20,0,0 +2013,6,1,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-9,0,909,3,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,-3,0,1735,-14,0,0 +2013,9,5,4,9E,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,855,-4,0,1210,-26,0,0 +2013,7,3,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,93,1,1235,90,1,0 +2013,5,27,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1735,-17,0,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1540,-3,0,1723,5,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,910,-4,0,1015,-2,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,810,0,0,950,-11,0,0 +2013,5,7,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-6,0,1925,-20,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1505,100,1,1820,94,1,0 +2013,7,29,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,615,-8,0,745,-19,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1110,107,1,1340,95,1,0 +2013,6,23,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-7,0,1512,-5,0,0 +2013,7,17,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,615,-2,0,900,1,0,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1157,-1,0,1438,55,1,0 +2013,7,30,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,730,-9,0,845,-27,0,0 +2013,4,18,4,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,-2,0,2047,-4,0,0 +2013,10,31,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,33,1,1403,34,1,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,21,1,2015,4,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1805,150,1,2240,129,1,0 +2013,10,3,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1049,0,0,1622,-16,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1130,12,0,1255,6,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,0,0,1053,6,0,0 +2013,10,13,7,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,3,0,1537,13,0,0 +2013,9,12,4,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,-7,0,1150,-10,0,0 +2013,7,4,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-4,0,853,-13,0,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,175,1,1244,154,1,0 +2013,7,7,7,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,600,-3,0,1417,-11,0,0 +2013,5,8,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,940,-2,0,1030,-7,0,0 +2013,10,4,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1740,38,1,2021,47,1,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,2,0,1035,-6,0,0 +2013,6,6,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,555,-1,0,720,-8,0,0 +2013,4,29,1,9E,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1930,-7,0,2253,-9,0,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,12,0,2304,4,0,0 +2013,7,11,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,630,0,0,856,-5,0,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2036,-3,0,2312,-15,0,0 +2013,4,19,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,900,-2,0,1115,-10,0,0 +2013,8,29,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,48,1,2130,48,1,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,3,0,1500,-5,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-7,0,1146,5,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,740,71,1,855,67,1,0 +2013,6,1,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-4,0,2105,0,0,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-1,0,2155,0,0,0 +2013,4,2,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-3,0,1819,-10,0,0 +2013,10,9,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1225,58,1,1345,72,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1017,-6,0,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,1,0,1310,-3,0,0 +2013,7,7,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2335,1,0,609,8,0,0 +2013,4,28,7,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1247,-10,0,1700,-27,0,0 +2013,9,26,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,44,1,1705,20,1,0 +2013,8,3,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,73,1,1655,38,1,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,22,1,2250,15,1,0 +2013,8,1,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-4,0,2000,-2,0,0 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2125,-7,0,545,-3,0,0 +2013,7,11,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,756,-5,0,950,-23,0,0 +2013,4,9,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,710,0,0,830,0,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1412,14,0,1755,-4,0,0 +2013,7,10,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-3,0,1357,15,1,0 +2013,9,19,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-2,0,931,-9,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1600,-10,0,1755,5,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1115,1,0,1210,-2,0,0 +2013,8,16,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,5,0,935,-12,0,0 +2013,7,19,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-7,0,1658,-15,0,0 +2013,8,30,5,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,-8,0,1703,-10,0,0 +2013,9,25,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1230,-7,0,0 +2013,4,18,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1325,57,1,1607,46,1,0 +2013,7,15,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1355,1,0,1615,-7,0,0 +2013,10,13,7,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1105,-1,0,1500,-1,0,0 +2013,9,22,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1332,2,0,1600,17,1,0 +2013,10,6,7,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1840,-4,0,2201,14,0,0 +2013,5,28,2,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1715,25,1,1840,32,1,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,-4,0,1915,-10,0,0 +2013,4,19,5,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1700,175,1,1843,234,1,0 +2013,6,2,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1000,1,0,1237,-19,0,0 +2013,8,9,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-6,0,1030,3,0,0 +2013,8,11,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-1,0,2150,-13,0,0 +2013,10,9,3,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2120,2,0,2349,-5,0,0 +2013,9,17,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,700,-4,0,948,-4,0,0 +2013,7,15,1,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1910,-8,0,1955,-15,0,0 +2013,5,12,7,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1930,23,1,809,13,0,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,600,-3,0,714,-9,0,0 +2013,7,18,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1403,6,0,1440,4,0,0 +2013,7,27,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,621,32,1,756,24,1,0 +2013,5,14,2,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1755,-2,0,2115,-35,0,0 +2013,5,9,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1934,7,0,2037,2,0,0 +2013,9,5,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,8,0,928,-3,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2040,-4,0,2300,-4,0,0 +2013,6,9,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,16,1,2000,8,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1945,73,1,2205,58,1,0 +2013,8,15,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,31,1,1014,27,1,0 +2013,7,21,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,-4,0,1840,-16,0,0 +2013,5,14,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,755,-2,0,1515,-14,0,0 +2013,6,14,5,YV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1700,12,0,1820,2,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1212,-4,0,1459,-13,0,0 +2013,9,28,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1345,14,0,1700,82,1,0 +2013,7,27,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-6,0,853,0,0,0 +2013,6,14,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,4,0,1110,7,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-4,0,1256,-28,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-1,0,1148,-4,0,0 +2013,7,17,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,62,1,1550,64,1,0 +2013,8,10,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,920,-9,0,0 +2013,6,1,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,2104,0,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,3,0,1251,-15,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-3,0,2059,0,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,6,0,1832,10,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1459,15,1,1637,3,0,0 +2013,4,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,755,11,0,925,4,0,0 +2013,10,27,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,611,-6,0,912,-20,0,0 +2013,7,23,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,87,1,2205,78,1,0 +2013,8,12,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2005,0,0,2245,-9,0,0 +2013,8,29,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-2,0,1320,-4,0,0 +2013,5,4,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-2,0,1936,1,0,0 +2013,10,14,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,0,0,1210,-7,0,0 +2013,8,6,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-5,0,649,-11,0,0 +2013,4,5,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,835,2,0,1135,1,0,0 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2155,54,1,2330,43,1,0 +2013,7,19,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,102,1,2159,106,1,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1418,95,1,2157,62,1,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,34,1,2205,28,1,0 +2013,6,22,6,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,-5,0,1033,-9,0,0 +2013,7,16,2,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,705,55,1,813,35,1,0 +2013,4,10,3,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-4,0,1610,-17,0,0 +2013,7,31,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-6,0,1107,1,0,0 +2013,6,9,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,55,1,1420,40,1,0 +2013,9,25,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,-6,0,1330,-2,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,4,0,1556,12,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1226,-4,0,0 +2013,9,12,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1100,-6,0,1335,-3,0,0 +2013,8,28,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1850,35,1,2014,92,1,0 +2013,10,24,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10,-6,0,505,-21,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,10,0,1824,13,0,0 +2013,10,1,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,900,-14,0,1130,1,0,0 +2013,4,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,735,-2,0,850,-11,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,19,1,1920,11,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1825,9,0,2010,5,0,0 +2013,10,13,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1425,0,0,1721,0,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-3,0,1850,-16,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,835,2,0,1115,-22,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,601,-3,0,721,1,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,2,0,2259,-11,0,0 +2013,4,12,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,615,1,0,730,-11,0,0 +2013,9,11,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,-8,0,1425,-38,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,833,-1,0,1110,-14,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2010,37,1,2305,14,0,0 +2013,9,18,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-5,0,1330,4,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,0,0,1330,-2,0,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,715,-8,0,820,-15,0,0 +2013,4,5,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2230,-5,0,607,-14,0,0 +2013,10,22,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,857,13,0,926,42,1,0 +2013,7,28,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1254,-3,0,1343,-3,0,0 +2013,8,11,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,935,-8,0,950,-20,0,0 +2013,5,3,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,-5,0,1806,-1,0,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,3,0,1416,4,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-7,0,1021,-2,0,0 +2013,6,28,5,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,605,-2,0,635,-8,0,0 +2013,4,24,3,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,720,1,0,1235,-12,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1016,-2,0,1049,1,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,730,-6,0,900,-6,0,0 +2013,9,22,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1908,110,1,2021,98,1,0 +2013,5,22,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,2000,20,1,2340,5,0,0 +2013,6,10,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-2,0,1722,-11,0,0 +2013,4,28,7,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1035,-6,0,1255,-3,0,0 +2013,8,6,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,823,-7,0,855,-7,0,0 +2013,5,12,7,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,545,-3,0,1148,-9,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,645,-4,0,820,-17,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,20,1,1050,17,1,0 +2013,4,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,605,0,0,740,-4,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,840,-5,0,1010,-19,0,0 +2013,8,21,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-6,0,913,-21,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,7,0,945,-2,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1955,-3,0,2107,-21,0,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1310,10,0,1423,-2,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,-4,0,1355,-32,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2305,-2,0,32,-10,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2150,41,1,2335,31,1,0 +2013,8,15,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2135,40,1,7,30,1,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-7,0,1103,-11,0,0 +2013,7,18,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-1,0,1459,5,0,0 +2013,9,15,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-5,0,1035,-4,0,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-3,0,1415,-1,0,0 +2013,10,22,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-1,0,800,9,0,0 +2013,4,17,3,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,600,-3,0,720,-3,0,0 +2013,9,2,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1511,-4,0,1633,3,0,0 +2013,6,14,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,610,-1,0,625,-4,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2155,5,0,10,5,0,0 +2013,9,14,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1956,-3,0,2341,-4,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1800,5,0,2000,3,0,0 +2013,5,11,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-3,0,925,0,0,0 +2013,8,23,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1649,-9,0,1808,-11,0,0 +2013,5,13,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,1,0,1730,-8,0,0 +2013,5,20,1,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1609,-3,0,1835,-11,0,0 +2013,9,13,5,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,832,110,1,1124,99,1,0 +2013,4,18,4,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1205,-12,0,1428,1,0,0 +2013,8,28,3,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1430,-10,0,1608,-25,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2320,-1,0,610,-20,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1255,14,0,1600,15,1,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1728,105,1,1938,90,1,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-7,0,1040,-10,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-7,0,1347,-22,0,0 +2013,8,26,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,635,-2,0,740,2,0,0 +2013,6,19,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,747,13,0,942,-8,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1929,26,1,2126,15,1,0 +2013,5,14,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,65,1,1744,60,1,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1655,14,0,1840,18,1,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,115,-4,0,802,3,0,0 +2013,5,20,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,50,-7,0,622,-14,0,0 +2013,8,18,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1245,0,0,1624,-13,0,0 +2013,6,14,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1037,12,0,1421,-12,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,0,0,2259,4,0,0 +2013,7,3,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-7,0,1705,-16,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1840,52,1,2100,50,1,0 +2013,5,25,6,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-7,0,1029,2,0,0 +2013,5,31,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1021,-1,0,1304,-3,0,0 +2013,5,4,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1738,6,0,1939,-1,0,0 +2013,5,3,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-7,0,1613,-7,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-2,0,1232,0,0,0 +2013,5,5,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-5,0,1558,4,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,-4,0,1230,0,0,0 +2013,8,21,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1315,4,0,1440,14,0,0 +2013,9,3,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1600,0,0,1630,-10,0,0 +2013,5,5,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1155,-5,0,1335,-17,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,738,-5,0,828,-2,0,0 +2013,10,10,4,EV,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,927,-3,0,1112,-17,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1230,5,0,1605,-9,0,0 +2013,4,9,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1940,-3,0,2243,-10,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1505,4,0,1650,-4,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1410,74,1,1625,90,1,0 +2013,9,25,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1908,-10,0,2026,-30,0,0 +2013,7,21,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,0,0,841,-12,0,0 +2013,5,17,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-6,0,1105,-25,0,0 +2013,7,16,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-4,0,1907,-9,0,0 +2013,8,31,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1930,-2,0,2100,-3,0,0 +2013,9,26,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,716,-5,0,953,-42,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,4,0,1132,-20,0,0 +2013,8,26,1,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,700,3,0,900,-24,0,0 +2013,7,27,6,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2038,-11,0,2303,-28,0,0 +2013,4,4,4,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1339,-2,0,1655,-27,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,72,1,1437,69,1,0 +2013,6,10,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,9,0,1515,3,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1045,34,1,1919,10,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2155,10,0,2305,-3,0,0 +2013,5,24,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1700,6,0,1753,-1,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1730,26,1,1955,11,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,27,1,2340,21,1,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,5,0,1940,4,0,0 +2013,7,22,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,46,1,0,855,8,0,0 +2013,10,27,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2025,-1,0,2150,-18,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2055,7,0,2215,-1,0,0 +2013,7,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1127,-5,0,1253,-8,0,0 +2013,6,13,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-2,0,1750,-9,0,0 +2013,6,9,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1900,-3,0,2018,-16,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1425,-3,0,1605,-30,0,0 +2013,7,2,2,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,720,-1,0,907,-15,0,0 +2013,10,24,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,850,0,0,0 +2013,6,12,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-9,0,1128,-22,0,0 +2013,8,12,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,18,1,1905,95,1,0 +2013,5,20,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,1,0,1500,-17,0,0 +2013,10,8,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,2,0,1845,7,0,0 +2013,6,27,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,830,7,0,1000,1,0,0 +2013,6,16,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-6,0,1922,-27,0,0 +2013,6,24,1,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1229,10,0,1639,-10,0,0 +2013,8,16,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1332,10,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,-6,0,1419,-8,0,0 +2013,6,23,7,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1530,182,1,1845,183,1,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,0,0,1440,-3,0,0 +2013,7,19,5,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,101,1,2135,96,1,0 +2013,9,13,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1215,12,0,1250,20,1,0 +2013,5,7,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,7,0,1343,6,0,0 +2013,4,18,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2030,134,1,2145,132,1,0 +2013,5,15,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1135,10,0,1425,-17,0,0 +2013,8,16,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2035,-4,0,2202,-11,0,0 +2013,9,11,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1244,-5,0,1725,36,1,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,745,-9,0,936,-8,0,0 +2013,9,23,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,14,0,1800,3,0,0 +2013,5,5,7,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,-9,0,1844,-28,0,0 +2013,4,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,830,28,1,849,22,1,0 +2013,4,22,1,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1715,-14,0,2032,-37,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,740,15,1,1010,3,0,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,6,0,920,-3,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1436,61,1,1913,55,1,0 +2013,9,25,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-7,0,1049,-1,0,0 +2013,10,2,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,550,-6,0,732,-17,0,0 +2013,6,4,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-9,0,1309,18,1,0 +2013,6,21,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-5,0,1015,-1,0,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,-1,0,1725,-4,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,0,,2145,0,1,1 +2013,7,25,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-8,0,754,10,0,0 +2013,8,2,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1135,0,,1405,0,1,1 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1103,-2,0,1426,-29,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1505,-6,0,1654,-14,0,0 +2013,5,10,5,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1133,-4,0,1406,-9,0,0 +2013,4,2,2,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1156,-4,0,1608,-13,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1200,4,0,1415,18,1,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,8,0,1154,8,0,0 +2013,7,12,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1844,87,1,2058,77,1,0 +2013,5,29,3,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1710,32,1,2045,22,1,0 +2013,5,2,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-5,0,740,-19,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1325,75,1,1645,82,1,0 +2013,10,15,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-6,0,809,7,0,0 +2013,9,15,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,11,0,2322,17,1,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,6,0,1830,4,0,0 +2013,5,5,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-5,0,1204,-26,0,0 +2013,8,15,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1815,-7,0,2055,-12,0,0 +2013,8,19,1,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1740,22,1,2010,19,1,0 +2013,4,9,2,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1926,33,1,2055,57,1,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,835,-5,0,933,4,0,0 +2013,9,7,6,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,1010,-13,0,1724,13,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1606,-2,0,2020,-4,0,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2040,14,0,2315,18,1,0 +2013,4,23,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-7,0,1821,-25,0,0 +2013,9,23,1,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1645,19,1,1915,5,0,0 +2013,5,29,3,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2359,-5,0,604,-38,0,0 +2013,9,6,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1336,-7,0,1948,-9,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,36,1,1000,6,0,0 +2013,8,30,5,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,550,37,1,1409,28,1,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,10,0,1110,-14,0,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,8,0,1325,-3,0,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-7,0,1049,-4,0,0 +2013,6,24,1,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1400,-4,0,1652,-4,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,1,0,550,-15,0,0 +2013,7,29,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-5,0,1900,-8,0,0 +2013,9,10,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1339,-13,0,0 +2013,4,28,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1355,-2,0,1520,-17,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1950,17,1,2136,-1,0,0 +2013,8,1,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1640,86,1,1715,97,1,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1451,-5,0,1611,-11,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,800,0,0,1614,5,0,0 +2013,8,31,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-1,0,1734,-10,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1918,2,0,2035,-6,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1100,7,0,1325,22,1,0 +2013,10,28,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1005,-2,0,1319,-1,0,0 +2013,5,22,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,2,0,1053,13,0,0 +2013,5,16,4,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,197,1,1014,188,1,0 +2013,9,7,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1124,-10,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1310,-6,0,1625,-24,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1640,-1,0,1810,-3,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,755,-4,0,916,21,1,0 +2013,9,21,6,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1600,-2,0,1739,-15,0,0 +2013,7,7,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1105,-5,0,1220,-4,0,0 +2013,7,13,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,26,1,955,27,1,0 +2013,8,1,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-7,0,1354,-3,0,0 +2013,6,22,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1700,-1,0,1810,-4,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,605,-5,0,858,-17,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,9,0,1644,28,1,0 +2013,7,26,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,0,0,1130,1,0,0 +2013,9,13,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,-6,0,1134,-9,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,810,-4,0,1125,-2,0,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,11,0,2020,18,1,0 +2013,9,27,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1435,70,1,1545,69,1,0 +2013,6,6,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,600,-1,0,900,-28,0,0 +2013,6,18,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1601,63,1,1747,46,1,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1525,5,0,1749,1,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,20,1,2250,23,1,0 +2013,8,8,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1015,-3,0,1115,-7,0,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,855,4,0,0 +2013,7,20,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1050,0,0,1205,-8,0,0 +2013,4,22,1,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,27,1,1515,40,1,0 +2013,5,3,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1732,-5,0,0 +2013,10,23,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2045,0,0,2153,8,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1304,-3,0,1430,-20,0,0 +2013,10,11,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-3,0,2100,-9,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2025,156,1,2150,141,1,0 +2013,9,16,1,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,-5,0,1950,-1,0,0 +2013,9,4,3,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2000,-3,0,2300,-26,0,0 +2013,4,3,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,1,0,1305,-11,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,7,0,1630,-10,0,0 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1135,20,1,1420,7,0,0 +2013,4,20,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1325,8,0,1505,32,1,0 +2013,4,8,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,0,0,2022,-18,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,-5,0,1618,-14,0,0 +2013,7,2,2,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1041,4,0,1244,11,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1118,-4,0,1146,-13,0,0 +2013,6,15,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-6,0,1608,-12,0,0 +2013,10,5,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,11,0,930,-1,0,0 +2013,8,10,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1210,12,0,1320,2,0,0 +2013,4,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,605,-11,0,752,22,1,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,755,-3,0,1245,-16,0,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1430,8,0,1742,-6,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1016,-4,0,1055,-13,0,0 +2013,9,12,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1305,-4,0,1511,4,0,0 +2013,8,24,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-9,0,1531,-12,0,0 +2013,7,18,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,812,2,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2029,-10,0,2331,-37,0,0 +2013,5,21,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1315,7,0,1435,10,0,0 +2013,7,8,1,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1934,50,1,2230,47,1,0 +2013,8,12,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1415,56,1,1534,57,1,0 +2013,8,2,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1505,2,0,1755,-5,0,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1735,19,1,1825,30,1,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2000,-3,0,2242,-29,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1952,10,0,2105,-3,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,814,-5,0,918,-15,0,0 +2013,6,2,7,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1642,17,1,1907,29,1,0 +2013,9,14,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1435,2,0,1656,-16,0,0 +2013,5,15,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1005,5,0,1330,-10,0,0 +2013,7,12,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1115,5,0,1230,-17,0,0 +2013,8,8,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,60,1,1001,69,1,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1630,0,0,1905,-19,0,0 +2013,10,15,2,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1745,-3,0,2130,-24,0,0 +2013,5,23,4,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-2,0,752,-13,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1115,-5,0,1340,19,1,0 +2013,9,9,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,-4,0,1123,-12,0,0 +2013,4,12,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,30,1,1345,28,1,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,904,-2,0,1035,-8,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,24,1,2220,16,1,0 +2013,9,23,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-11,0,1254,-23,0,0 +2013,5,28,2,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,6,0,1950,-12,0,0 +2013,9,5,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1652,-11,0,1835,-31,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-4,0,1835,8,0,0 +2013,4,28,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-4,0,1805,-14,0,0 +2013,4,3,3,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1030,-5,0,1202,4,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,-2,0,2205,-5,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1825,3,0,2009,2,0,0 +2013,5,2,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-8,0,800,-12,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,-1,0,1310,-7,0,0 +2013,6,30,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1106,-4,0,1649,-20,0,0 +2013,5,9,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,70,1,2300,59,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-2,0,905,-4,0,0 +2013,6,5,3,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1545,9,0,2316,-14,0,0 +2013,6,21,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1430,-6,0,1647,-1,0,0 +2013,9,16,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1355,-6,0,1737,-3,0,0 +2013,7,19,5,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1053,-7,0,1333,-13,0,0 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1305,-1,0,1435,-4,0,0 +2013,4,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,-1,0,1319,6,0,0 +2013,4,18,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1307,272,1,1447,253,1,0 +2013,4,5,5,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1700,1,0,1929,-16,0,0 +2013,6,15,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,20,-6,0,815,-21,0,0 +2013,5,12,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1820,3,0,2111,-5,0,0 +2013,6,11,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,905,10,0,1020,-1,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,740,-4,0,919,-5,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1545,31,1,1840,20,1,0 +2013,5,16,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1134,0,0,1300,-1,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-8,0,1939,-15,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2000,32,1,2130,22,1,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2250,14,0,15,9,0,0 +2013,7,31,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,702,-7,0,1222,0,0,0 +2013,5,21,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1737,-5,0,1814,-8,0,0 +2013,10,9,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1647,-8,0,1803,-14,0,0 +2013,7,10,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,4,0,1650,4,0,0 +2013,6,9,7,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,727,-6,0,810,-4,0,0 +2013,9,22,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1220,-13,0,1250,-17,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1030,0,,1155,0,1,1 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,-1,0,2246,-12,0,0 +2013,7,29,1,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1305,3,0,0 +2013,7,16,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,-3,0,1623,-11,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-4,0,1643,-22,0,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1645,69,1,1940,77,1,0 +2013,8,3,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1405,-2,0,1643,-17,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,955,4,0,1600,-4,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,0,0,1828,-13,0,0 +2013,5,13,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1521,44,1,1705,17,1,0 +2013,8,9,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1630,33,1,1800,95,1,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1115,-2,0,1305,-4,0,0 +2013,4,10,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1500,30,1,1959,24,1,0 +2013,5,16,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-3,0,1438,-19,0,0 +2013,8,24,6,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-4,0,1815,-13,0,0 +2013,5,25,6,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2159,27,1,2344,3,0,0 +2013,9,26,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1452,-2,0,1759,-21,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-8,0,1251,9,0,0 +2013,9,20,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,830,109,1,940,106,1,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,0,0,1045,1,0,0 +2013,6,4,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1440,2,0,1510,5,0,0 +2013,4,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2135,-10,0,2355,6,0,0 +2013,8,5,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1440,0,0,1510,-3,0,0 +2013,6,27,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,-4,0,814,0,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1209,-2,0,1346,-11,0,0 +2013,4,8,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2130,-3,0,2353,25,1,0 +2013,4,9,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1801,-10,0,1927,1,0,0 +2013,4,3,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-3,0,1402,-16,0,0 +2013,5,3,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,921,-3,0,1044,-10,0,0 +2013,6,6,4,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,21,1,1235,24,1,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,949,1,0,1112,-4,0,0 +2013,4,23,2,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,745,-7,0,1100,-36,0,0 +2013,7,26,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1345,32,1,1535,26,1,0 +2013,10,9,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-7,0,1918,-9,0,0 +2013,4,27,6,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,-2,0,1841,-8,0,0 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,942,2,0,1223,-8,0,0 +2013,8,7,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,-5,0,1705,-22,0,0 +2013,9,17,2,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1119,3,0,1253,21,1,0 +2013,9,26,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1850,3,0,2110,-15,0,0 +2013,8,21,3,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1123,-4,0,1320,-30,0,0 +2013,5,5,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1410,1,0,1650,-6,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,715,-4,0,820,-15,0,0 +2013,6,9,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-8,0,1357,-14,0,0 +2013,7,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1018,-8,0,1150,-17,0,0 +2013,10,31,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,39,1,1600,36,1,0 +2013,10,12,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,64,1,730,62,1,0 +2013,10,24,4,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1200,0,0,1434,3,0,0 +2013,10,26,6,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1045,-6,0,1320,-14,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1114,-6,0,1202,-7,0,0 +2013,5,22,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,655,-5,0,913,-8,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2040,49,1,2320,48,1,0 +2013,7,4,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1445,36,1,1603,25,1,0 +2013,9,28,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,820,0,0,920,-3,0,0 +2013,5,19,7,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1015,-12,0,1620,-2,0,0 +2013,4,2,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1252,28,1,1420,25,1,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1155,1,0,1305,-3,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2155,-4,0,2314,-20,0,0 +2013,7,12,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1150,0,0,1320,-2,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,43,1,1313,31,1,0 +2013,10,14,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1544,9,0,2359,-19,0,0 +2013,5,13,1,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1646,2,0,1805,10,0,0 +2013,8,15,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,-6,0,1148,-18,0,0 +2013,5,23,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1940,-5,0,2114,-10,0,0 +2013,5,4,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-4,0,1951,3,0,0 +2013,4,17,3,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,146,1,2037,133,1,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,730,3,0,1040,-14,0,0 +2013,7,9,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1319,59,1,1405,51,1,0 +2013,5,8,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,850,-2,0,900,8,0,0 +2013,9,20,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1440,22,1,1739,19,1,0 +2013,4,17,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,810,-15,0,0 +2013,4,5,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,620,-4,0,815,-8,0,0 +2013,5,28,2,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,12,0,815,-13,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1531,-6,0,1734,-18,0,0 +2013,6,6,4,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,29,1,2028,20,1,0 +2013,9,15,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,640,-3,0,928,-4,0,0 +2013,7,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1528,-1,0,1707,-17,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1605,27,1,1725,24,1,0 +2013,5,4,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,26,1,1340,9,0,0 +2013,4,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,-1,0,2120,-10,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,-6,0,1447,-17,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,820,3,0,1000,2,0,0 +2013,4,29,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,854,-6,0,1025,-32,0,0 +2013,7,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,-3,0,1950,-8,0,0 +2013,6,21,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-6,0,1707,-10,0,0 +2013,6,30,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,710,0,0,855,1,0,0 +2013,8,16,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-8,0,1310,-9,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1620,17,1,2250,25,1,0 +2013,7,24,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1455,61,1,1812,64,1,0 +2013,8,5,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,1524,-21,0,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,17,1,19,33,1,0 +2013,5,5,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1506,0,0,1554,1,0,0 +2013,4,12,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1328,18,1,1544,-2,0,0 +2013,6,30,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-10,0,2140,-12,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1520,22,1,1640,11,0,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,6,0,2227,16,1,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1900,31,1,2100,0,0,0 +2013,8,31,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1436,-4,0,1828,-16,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1840,-3,0,2215,-8,0,0 +2013,9,23,1,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-3,0,1228,-4,0,0 +2013,6,30,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-10,0,1613,-21,0,0 +2013,6,8,6,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1332,-5,0,1722,-19,0,0 +2013,9,26,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-3,0,1521,-17,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,29,1,2150,-4,0,0 +2013,6,27,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-5,0,705,-5,0,0 +2013,4,20,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,730,1,0,1005,-2,0,0 +2013,6,15,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1005,7,0,1120,-4,0,0 +2013,4,15,1,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,805,8,0,1640,-22,0,0 +2013,7,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1855,25,1,2227,12,0,0 +2013,7,15,1,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,-1,0,2308,-3,0,0 +2013,5,27,1,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,625,-10,0,713,-19,0,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1315,228,1,1630,241,1,0 +2013,8,12,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-7,0,2045,-16,0,0 +2013,8,25,7,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,815,-2,0,1105,-21,0,0 +2013,4,7,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-5,0,1335,-10,0,0 +2013,4,17,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1720,35,1,2000,33,1,0 +2013,10,19,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,-5,0,1636,-15,0,0 +2013,9,7,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,630,-2,0,815,-12,0,0 +2013,7,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1050,58,1,1353,36,1,0 +2013,6,3,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1040,-6,0,1621,8,0,0 +2013,4,11,4,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,17,1,1636,17,1,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,35,1,1911,26,1,0 +2013,5,21,2,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,722,-3,0,1121,-21,0,0 +2013,9,12,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1720,9,0,1845,1,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1500,15,1,1728,-3,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1620,34,1,1730,28,1,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-7,0,1049,-21,0,0 +2013,5,1,3,EV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1440,-5,0,1640,-13,0,0 +2013,9,17,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-5,0,920,-3,0,0 +2013,10,1,2,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1355,-7,0,1643,4,0,0 +2013,6,27,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1215,-1,0,1326,-9,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-4,0,1016,-8,0,0 +2013,8,4,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,945,8,0,1210,-3,0,0 +2013,9,2,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,-5,0,1904,-14,0,0 +2013,7,5,5,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,0,0,940,-21,0,0 +2013,4,21,7,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,0,0,2240,16,1,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1645,15,1,1750,21,1,0 +2013,5,19,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1307,3,0,1818,-16,0,0 +2013,4,2,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,615,103,1,758,95,1,0 +2013,8,10,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1935,-5,0,2250,-15,0,0 +2013,9,21,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-1,0,1015,-10,0,0 +2013,4,28,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-9,0,1103,-19,0,0 +2013,5,31,5,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-1,0,1030,-10,0,0 +2013,7,6,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,933,-5,0,1221,-2,0,0 +2013,4,26,5,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,735,-5,0,1010,-14,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,845,-7,0,1135,-16,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1325,-2,0,1801,-6,0,0 +2013,10,3,4,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-3,0,822,-28,0,0 +2013,4,29,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1835,-4,0,2205,-16,0,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,735,2,0,825,2,0,0 +2013,9,10,2,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2207,-6,0,552,9,0,0 +2013,10,4,5,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,730,-1,0,1127,-7,0,0 +2013,5,14,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1915,116,1,1940,107,1,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1710,7,0,1820,3,0,0 +2013,6,2,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2302,13,0,28,-2,0,0 +2013,5,20,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-4,0,1015,-8,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,655,-2,0,1120,5,0,0 +2013,8,18,7,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-7,0,803,-14,0,0 +2013,4,1,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1645,11,0,2030,-2,0,0 +2013,7,22,1,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1020,-5,0,1238,2,0,0 +2013,5,14,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,650,-7,0,810,-10,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,647,112,1,809,113,1,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,810,49,1,930,43,1,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1830,7,0,2105,-6,0,0 +2013,9,24,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1840,-5,0,1957,-7,0,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,-4,0,1032,1,0,0 +2013,9,11,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1440,-11,0,1731,-23,0,0 +2013,9,6,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1255,91,1,1505,99,1,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1810,1,0,2054,4,0,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1401,-9,0,1511,-21,0,0 +2013,4,8,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,828,-6,0,1044,-4,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,0,0,2046,-12,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1425,1,0,1551,-9,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1100,5,0,1205,-2,0,0 +2013,8,18,7,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-5,0,2015,-16,0,0 +2013,4,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,1,0,2150,-8,0,0 +2013,7,19,5,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1303,38,1,1419,21,1,0 +2013,8,22,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1210,6,0,1314,0,0,0 +2013,9,13,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,1,0,2105,-10,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,943,-1,0,0 +2013,4,17,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1547,278,1,1719,310,1,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1730,4,0,2004,-3,0,0 +2013,4,13,6,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1805,4,0,2030,-2,0,0 +2013,10,25,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,22,1,1405,11,0,0 +2013,4,1,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,45,1,1121,33,1,0 +2013,6,16,7,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,640,-7,0,746,-8,0,0 +2013,5,31,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,845,-14,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1620,-6,0,2155,28,1,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1550,6,0,1810,58,1,0 +2013,6,20,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1858,1,0,2038,-12,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,245,1,1910,233,1,0 +2013,7,1,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,73,1,1927,75,1,0 +2013,5,31,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-2,0,1227,-1,0,0 +2013,7,2,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1136,8,0,1300,-4,0,0 +2013,6,2,7,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1830,-4,0,0 +2013,6,15,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1345,24,1,1555,37,1,0 +2013,6,9,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-3,0,1610,-13,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1325,-6,0,1711,-30,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,650,62,1,935,63,1,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2056,-3,0,2222,-12,0,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-4,0,1047,6,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,11,0,920,-10,0,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1615,0,0,1720,-7,0,0 +2013,9,2,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,1518,-7,0,0 +2013,5,23,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1911,88,1,1925,100,1,0 +2013,5,12,7,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,-4,0,2025,29,1,0 +2013,6,2,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,3,0,618,-21,0,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,930,-2,0,1500,-13,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,13,0,2245,14,0,0 +2013,9,17,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-10,0,2055,-21,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1937,2,0,2244,41,1,0 +2013,9,17,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,19,1,1055,10,0,0 +2013,7,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,745,-1,0,845,-4,0,0 +2013,7,27,6,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-5,0,1258,-16,0,0 +2013,7,20,6,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1010,46,1,1309,50,1,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,722,-2,0,852,-11,0,0 +2013,9,24,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-3,0,1830,-9,0,0 +2013,7,29,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,2,0,805,-7,0,0 +2013,7,15,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-5,0,2124,-1,0,0 +2013,7,9,2,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,21,1,1950,57,1,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1825,-3,0,2056,-3,0,0 +2013,5,9,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,715,-4,0,0 +2013,10,7,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1430,17,1,1535,7,0,0 +2013,7,3,3,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1655,-7,0,2015,2,0,0 +2013,6,23,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1805,0,0,1850,-9,0,0 +2013,6,12,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,905,-4,0,1015,-13,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1735,0,0,1908,-10,0,0 +2013,5,3,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,-6,0,2130,-14,0,0 +2013,9,5,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,825,-6,0,1050,-11,0,0 +2013,9,27,5,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1058,4,0,1139,-1,0,0 +2013,4,12,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1155,71,1,1325,67,1,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,735,-5,0,1031,-6,0,0 +2013,8,22,4,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,831,-7,0,1015,2,0,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,930,19,1,1055,6,0,0 +2013,10,9,3,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1159,18,1,1620,10,0,0 +2013,4,29,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1930,-8,0,2057,-12,0,0 +2013,10,31,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1650,-2,0,1757,0,0,0 +2013,5,7,2,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1955,-6,0,2110,-11,0,0 +2013,4,1,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,800,0,0,915,-6,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,33,1,1430,34,1,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1210,-7,0,1315,-7,0,0 +2013,10,18,5,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1927,-4,0,2148,-20,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,4,0,1617,15,1,0 +2013,8,11,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1150,-7,0,1315,-20,0,0 +2013,4,19,5,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1150,0,0,1345,-19,0,0 +2013,10,18,5,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1640,-1,0,1955,-3,0,0 +2013,4,3,3,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,700,-2,0,1450,-4,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1944,-4,0,2123,-17,0,0 +2013,4,8,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,645,9,0,1249,26,1,0 +2013,9,30,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,5,0,1041,-1,0,0 +2013,8,19,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-2,0,2122,14,0,0 +2013,8,8,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,26,1,642,28,1,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,8,0,1923,0,0,0 +2013,5,4,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,835,-4,0,1009,0,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1601,2,0,2349,-20,0,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-6,0,806,-3,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1224,5,0,1336,-6,0,0 +2013,9,14,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1332,-5,0,1600,-9,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1213,-2,0,1434,-7,0,0 +2013,7,17,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,36,1,1630,31,1,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1515,20,1,1745,17,1,0 +2013,4,28,7,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,2,0,1615,-25,0,0 +2013,6,17,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-12,0,1120,0,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,825,1,0,1000,0,0,0 +2013,5,29,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,739,-10,0,911,-16,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1210,-5,0,1330,-11,0,0 +2013,6,11,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,-2,0,930,-13,0,0 +2013,8,2,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1949,7,0,2100,1,0,0 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,755,8,0,1040,9,0,0 +2013,6,17,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1531,0,0,1657,-9,0,0 +2013,8,28,3,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,959,-7,0,1144,9,0,0 +2013,4,13,6,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,940,-5,0,1020,-9,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1839,-5,0,2359,-9,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-6,0,1335,-6,0,0 +2013,4,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-2,0,2127,-8,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1545,53,1,1655,61,1,0 +2013,8,24,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-7,0,1630,-23,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1505,-5,0,1628,-2,0,0 +2013,8,20,2,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,515,-7,0,622,-16,0,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2235,23,1,710,33,1,0 +2013,4,21,7,UA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,540,0,0,744,-18,0,0 +2013,8,29,4,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-1,0,2005,11,0,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1440,4,0,1850,-13,0,0 +2013,8,9,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1456,145,1,1751,133,1,0 +2013,4,23,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,-8,0,845,-5,0,0 +2013,7,23,2,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,800,-9,0,1131,-29,0,0 +2013,10,19,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,815,-2,0,1050,-10,0,0 +2013,9,5,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1018,-9,0,1100,-21,0,0 +2013,9,23,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,2250,-25,0,0 +2013,5,28,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-4,0,905,-16,0,0 +2013,6,7,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1400,18,1,1610,2,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2108,12,0,2359,0,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1855,-3,0,2120,-13,0,0 +2013,9,13,5,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-1,0,1903,-16,0,0 +2013,8,13,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,8,0,1335,1,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,-4,0,1737,22,1,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1840,-2,0,2356,-4,0,0 +2013,10,28,1,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1211,1,0,1459,-3,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1535,53,1,1840,40,1,0 +2013,6,1,6,9E,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1935,14,0,2151,24,1,0 +2013,8,13,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,58,1,2030,53,1,0 +2013,10,20,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,750,-4,0,1042,-11,0,0 +2013,8,11,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,34,1,1845,26,1,0 +2013,9,6,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,-7,0,1847,7,0,0 +2013,5,8,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-5,0,1425,-6,0,0 +2013,9,28,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1710,16,1,1940,2,0,0 +2013,8,2,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1805,115,1,1949,144,1,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,826,-6,0,1200,-24,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1505,13,0,1825,3,0,0 +2013,4,2,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1810,-3,0,1925,-16,0,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1555,0,0,1830,10,0,0 +2013,4,10,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,909,4,0,1415,7,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,32,1,1420,22,1,0 +2013,6,13,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-10,0,807,7,0,0 +2013,5,19,7,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1015,-2,0,1200,-3,0,0 +2013,4,7,7,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1654,65,1,2359,38,1,0 +2013,8,5,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1430,6,0,1700,1,0,0 +2013,8,10,6,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,821,-1,0,1015,-14,0,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,605,0,0,730,-3,0,0 +2013,8,17,6,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,628,-2,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,629,-3,0,1331,-1,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,-4,0,2354,-16,0,0 +2013,6,22,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1040,-13,0,0 +2013,10,26,6,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2018,78,1,2142,72,1,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,8,0,1505,22,1,0 +2013,6,6,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-5,0,1645,-2,0,0 +2013,4,5,5,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-8,0,1655,-19,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1211,-1,0,1440,-11,0,0 +2013,5,8,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,744,-2,0,1046,3,0,0 +2013,8,14,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1340,0,,1450,0,1,1 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2050,4,0,2315,9,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,10,0,1710,-6,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,820,3,0,1055,-2,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,18,1,31,9,0,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,14,0,1026,-1,0,0 +2013,4,9,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1650,-18,0,0 +2013,7,28,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-1,0,1329,11,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,-3,0,1208,-9,0,0 +2013,5,30,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1220,-3,0,1340,-7,0,0 +2013,8,12,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-5,0,1914,-15,0,0 +2013,6,21,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1040,3,0,1355,-11,0,0 +2013,4,27,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1010,-5,0,1210,-12,0,0 +2013,9,1,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,6,0,1603,29,1,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,-12,0,1634,-18,0,0 +2013,8,3,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-6,0,1235,-18,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1530,43,1,1700,38,1,0 +2013,6,18,2,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1710,288,1,1815,290,1,0 +2013,8,10,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1725,56,1,2320,47,1,0 +2013,5,16,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1352,-5,0,1649,-19,0,0 +2013,10,27,7,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1716,68,1,1840,57,1,0 +2013,8,25,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1558,-1,0,1627,2,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-1,0,1102,-6,0,0 +2013,4,19,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-4,0,859,-6,0,0 +2013,6,20,4,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,744,-4,0,850,-18,0,0 +2013,10,31,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,825,-2,0,1630,-27,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1505,-4,0,1632,4,0,0 +2013,4,2,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1510,-9,0,1928,-28,0,0 +2013,9,24,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-9,0,1659,-11,0,0 +2013,4,15,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-7,0,1350,-9,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-9,0,1735,-21,0,0 +2013,9,22,7,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2029,-3,0,2248,-10,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,635,-6,0,930,-3,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1935,61,1,2154,96,1,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1051,-5,0,1153,-5,0,0 +2013,9,6,5,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,949,-11,0,1118,-27,0,0 +2013,5,15,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-7,0,1225,-23,0,0 +2013,5,5,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1730,-5,0,2320,-2,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1000,6,0,1050,5,0,0 +2013,4,16,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,801,-4,0,857,-16,0,0 +2013,4,16,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1125,0,0,1245,-2,0,0 +2013,5,1,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-8,0,1724,-17,0,0 +2013,6,22,6,F9,11292,Denver International,Denver,CO,14635,Southwest Florida International,Fort Myers,FL,1130,-5,0,1704,-9,0,0 +2013,4,27,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1750,-8,0,0 +2013,7,4,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1335,-4,0,1510,-13,0,0 +2013,5,18,6,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,-3,0,1335,-16,0,0 +2013,5,31,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-5,0,1950,-24,0,0 +2013,6,22,6,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1844,12,0,2058,24,1,0 +2013,9,5,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1200,3,0,1755,2,0,0 +2013,7,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,825,1,0,1230,-8,0,0 +2013,6,19,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1338,7,0,1453,4,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,850,-3,0,1615,-5,0,0 +2013,10,8,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-2,0,1405,-16,0,0 +2013,8,26,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-5,0,1558,4,0,0 +2013,8,16,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1830,10,0,2130,-2,0,0 +2013,8,27,2,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,-4,0,845,-1,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,4,0,912,6,0,0 +2013,4,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-3,0,2255,1,0,0 +2013,9,12,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,7,0,815,-8,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1126,-3,0,1411,-16,0,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1045,-6,0,1202,-10,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,-1,0,2321,-5,0,0 +2013,9,11,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,297,1,1759,284,1,0 +2013,5,22,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1031,-7,0,1327,-7,0,0 +2013,9,28,6,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,840,-8,0,1025,-9,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1815,0,0,2340,8,0,0 +2013,9,11,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,635,-2,0,953,-7,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1530,-4,0,1644,12,0,0 +2013,6,21,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2020,166,1,2145,146,1,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1619,5,0,2206,-3,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2030,9,0,2235,8,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-5,0,1324,-3,0,0 +2013,8,19,1,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,930,6,0,1530,-5,0,0 +2013,7,12,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12191,William P Hobby,Houston,TX,1250,28,1,1915,29,1,0 +2013,4,2,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2045,-5,0,2206,-20,0,0 +2013,9,1,7,FL,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-9,0,1410,-17,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,948,2,0,1259,-7,0,0 +2013,4,19,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-1,0,1715,23,1,0 +2013,4,19,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1915,2,0,2155,9,0,0 +2013,8,4,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1220,-6,0,0 +2013,6,4,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1726,-8,0,1748,-12,0,0 +2013,6,5,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,32,1,1915,13,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2253,-2,0,2357,-14,0,0 +2013,9,18,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,730,4,0,950,-9,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,-3,0,745,-16,0,0 +2013,9,25,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,810,5,0,936,9,0,0 +2013,8,12,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,755,-20,0,0 +2013,6,29,6,WN,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,640,-4,0,855,-11,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,2,0,538,-7,0,0 +2013,6,9,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1005,-4,0,1050,-5,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1350,10,0,1620,4,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,25,1,1451,9,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1810,-1,0,2119,-10,0,0 +2013,6,13,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,0,0,1334,-21,0,0 +2013,8,4,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1140,-3,0,1350,-8,0,0 +2013,6,30,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-6,0,1016,-11,0,0 +2013,5,28,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1745,3,0,1849,0,0,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,7,0,1305,2,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,-1,0,1729,-11,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2100,24,1,15,31,1,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,37,1,2145,35,1,0 +2013,4,16,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,-5,0,1955,-7,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,7,0,1145,-11,0,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,720,-2,0,942,-18,0,0 +2013,4,19,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1920,-4,0,2050,-15,0,0 +2013,10,28,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2042,-8,0,2330,-11,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,-4,0,1635,2,0,0 +2013,8,17,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1430,-3,0,1725,-6,0,0 +2013,10,25,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,735,0,0,1040,-7,0,0 +2013,6,28,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,27,1,1618,53,1,0 +2013,6,30,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1656,119,1,1913,121,1,0 +2013,7,28,7,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,12,0,1905,13,0,0 +2013,8,22,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1923,14,0,2224,-11,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1246,-2,0,1655,-18,0,0 +2013,4,2,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,-2,0,839,-2,0,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1600,-3,0,1734,-5,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1740,-4,0,1915,-15,0,0 +2013,7,20,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,58,1,1508,58,1,0 +2013,10,10,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-2,0,945,18,1,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,17,1,2252,9,0,0 +2013,6,26,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2100,190,1,2215,184,1,0 +2013,6,22,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1457,-6,0,1644,-15,0,0 +2013,7,27,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,710,-3,0,855,0,0,0 +2013,5,21,2,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-8,0,1238,-12,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1850,47,1,1955,55,1,0 +2013,10,23,3,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,22,1,1440,22,1,0 +2013,5,17,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-6,0,1025,-6,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,1,0,1605,-12,0,0 +2013,6,10,1,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,755,-1,0,1130,-15,0,0 +2013,4,20,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2159,-14,0,2311,-30,0,0 +2013,9,28,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,735,-2,0,830,-7,0,0 +2013,8,29,4,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1355,146,1,1919,149,1,0 +2013,8,19,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1637,0,0,1819,19,1,0 +2013,6,15,6,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,600,-6,0,849,3,0,0 +2013,6,26,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1642,5,0,1758,-4,0,0 +2013,7,9,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,730,-10,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1940,17,1,2105,17,1,0 +2013,8,28,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,15,1,1735,10,0,0 +2013,5,16,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-4,0,1238,-11,0,0 +2013,5,22,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1120,10,0,1714,109,1,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1900,-2,0,2035,-14,0,0 +2013,7,28,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,930,8,0,1055,9,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1942,0,0,2115,-13,0,0 +2013,4,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,-1,0,1805,-10,0,0 +2013,7,18,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,700,-3,0,820,-18,0,0 +2013,9,12,4,AA,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,955,-6,0,1715,-4,0,0 +2013,5,6,1,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1010,58,1,1137,41,1,0 +2013,10,31,4,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,2,0,1655,-3,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,0,0,2118,1,0,0 +2013,10,31,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2125,81,1,2220,61,1,0 +2013,8,27,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,-6,0,1934,-6,0,0 +2013,10,29,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1446,-6,0,1505,-9,0,0 +2013,4,19,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,626,-1,0,755,-10,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2200,2,0,2343,-14,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1356,-4,0,1548,-12,0,0 +2013,7,15,1,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1740,61,1,1858,46,1,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-10,0,1051,-20,0,0 +2013,6,23,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,825,-4,0,1420,-14,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,8,0,2026,-4,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2058,-1,0,2324,5,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1539,-4,0,1817,-13,0,0 +2013,7,16,2,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1440,13,0,1725,-4,0,0 +2013,6,22,6,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,617,16,1,903,41,1,0 +2013,7,31,3,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,0,0,823,-9,0,0 +2013,9,2,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,-10,0,1934,-5,0,0 +2013,10,19,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-3,0,1049,-13,0,0 +2013,5,27,1,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-2,0,2113,-33,0,0 +2013,5,28,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1311,4,0,1435,-4,0,0 +2013,8,20,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1920,-5,0,2051,-11,0,0 +2013,7,7,7,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,26,1,1907,35,1,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,8,0,2250,-2,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2115,30,1,2357,33,1,0 +2013,8,14,3,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,50,1,1600,58,1,0 +2013,6,26,3,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-7,0,1601,-16,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-7,0,1708,-9,0,0 +2013,9,1,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1107,-4,0,1155,-15,0,0 +2013,6,26,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,810,-5,0,925,-17,0,0 +2013,8,13,2,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,942,-3,0,1332,-2,0,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1535,-1,0,1810,-6,0,0 +2013,9,10,2,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1600,-12,0,2353,-8,0,0 +2013,5,12,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1308,-8,0,1430,-33,0,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,850,2,0,1141,-4,0,0 +2013,7,7,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1909,-3,0,2024,-6,0,0 +2013,5,12,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2118,34,1,2310,49,1,0 +2013,4,27,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1534,82,1,1815,80,1,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,12,0,1845,14,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-4,0,1627,49,1,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2108,-3,0,2347,-22,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1815,-4,0,1939,-12,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,29,1,2013,24,1,0 +2013,6,16,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,-5,0,840,-9,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2210,-6,0,2310,-1,0,0 +2013,10,8,2,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1444,1,0,1624,-34,0,0 +2013,9,15,7,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,621,-1,0,755,-7,0,0 +2013,4,26,5,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,807,-3,0,1048,-9,0,0 +2013,5,21,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1059,-3,0,1306,-20,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,-1,0,2253,-9,0,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1523,69,1,2105,45,1,0 +2013,9,13,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,16,1,1314,15,1,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2220,-7,0,13,-20,0,0 +2013,9,8,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-5,0,1019,-3,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1810,-2,0,2240,-11,0,0 +2013,6,15,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-6,0,1345,-8,0,0 +2013,4,29,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,0,0,1035,2,0,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,94,1,2230,90,1,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,8,0,1034,-2,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2105,37,1,5,55,1,0 +2013,4,12,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,46,1,2128,66,1,0 +2013,9,10,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1227,-3,0,1250,-12,0,0 +2013,4,6,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-7,0,1841,3,0,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2145,20,1,2340,13,0,0 +2013,6,10,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,6,0,1156,-2,0,0 +2013,6,26,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1920,-4,0,2053,-14,0,0 +2013,4,7,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2340,-4,0,710,-15,0,0 +2013,5,30,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1821,177,1,1953,162,1,0 +2013,5,29,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,12,0,1305,12,0,0 +2013,6,17,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,911,-5,0,1043,5,0,0 +2013,4,1,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1245,9,0,1405,2,0,0 +2013,6,1,6,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,100,1,1940,90,1,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,12,0,1401,2,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,1,0,2025,0,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1749,-4,0,2030,-11,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1705,74,1,2000,53,1,0 +2013,6,16,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-2,0,1024,-17,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2205,-4,0,2347,-4,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,10,0,1349,-1,0,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,1,0,1455,-2,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,26,1,1225,18,1,0 +2013,8,17,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-2,0,728,-9,0,0 +2013,9,5,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,-2,0,2210,11,0,0 +2013,10,10,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2030,-7,0,2257,-7,0,0 +2013,5,17,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,0,0,750,14,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1859,41,1,2030,43,1,0 +2013,7,6,6,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1000,4,0,1130,-3,0,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,4,0,1655,-17,0,0 +2013,5,27,1,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,4,0,1100,4,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1425,-1,0,1740,15,1,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1246,-4,0,1403,-7,0,0 +2013,7,29,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-4,0,2020,5,0,0 +2013,9,26,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1212,-4,0,1324,-4,0,0 +2013,5,22,3,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,837,115,1,1013,107,1,0 +2013,10,3,4,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,0,0,1035,-1,0,0 +2013,10,23,3,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,545,-6,0,710,-13,0,0 +2013,10,7,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,-1,0,1850,-6,0,0 +2013,4,16,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,733,-10,0,927,-2,0,0 +2013,10,30,3,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-6,0,1746,-7,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1955,2,0,2105,-2,0,0 +2013,8,6,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,0,0,2130,-9,0,0 +2013,4,14,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-10,0,1023,-9,0,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,1055,-1,0,1615,0,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1915,5,0,35,-2,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1025,11,0,1620,14,0,0 +2013,6,25,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-9,0,904,-8,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1450,17,1,1705,8,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,0,0,1300,-9,0,0 +2013,5,23,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,11,0,1935,4,0,0 +2013,10,9,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1700,4,0,1958,-16,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,-2,0,2300,-8,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,15,1,2210,10,0,0 +2013,8,19,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,9,0,1334,20,1,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2250,0,0,2355,18,1,0 +2013,6,3,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1730,5,0,1956,13,0,0 +2013,4,27,6,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1457,-8,0,1621,17,1,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2015,-3,0,2109,-10,0,0 +2013,5,21,2,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,0,,815,0,1,1 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1755,-4,0,1940,3,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1547,4,0,1738,-15,0,0 +2013,7,19,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1840,-2,0,2005,-4,0,0 +2013,10,10,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-8,0,1250,-12,0,0 +2013,8,26,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,8,0,1019,-6,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,1,0,1325,-10,0,0 +2013,8,18,7,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,42,1,1755,35,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1505,-1,0,1629,63,1,0 +2013,8,29,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1405,29,1,1605,11,0,0 +2013,9,18,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1940,-4,0,2036,5,0,0 +2013,7,9,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,750,-2,0,1542,-14,0,0 +2013,8,2,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-1,0,1031,-1,0,0 +2013,6,15,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-6,0,1451,-8,0,0 +2013,6,22,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,-2,0,1640,62,1,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1107,-4,0,1434,-7,0,0 +2013,9,19,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,32,1,1145,21,1,0 +2013,9,25,3,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-7,0,1127,25,1,0 +2013,7,7,7,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,740,8,0,1021,0,0,0 +2013,6,7,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1339,2,0,1630,16,1,0 +2013,10,8,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,935,-4,0,1040,-16,0,0 +2013,5,18,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-5,0,1845,-20,0,0 +2013,4,5,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,-4,0,1235,-9,0,0 +2013,5,13,1,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1135,-7,0,1546,-10,0,0 +2013,6,3,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1704,86,1,2227,71,1,0 +2013,7,19,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,728,-1,0,1000,-3,0,0 +2013,9,28,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,29,1,1336,22,1,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-3,0,850,11,0,0 +2013,9,1,7,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,0,0,1645,-12,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1509,6,0,1741,-7,0,0 +2013,8,18,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-3,0,1840,-4,0,0 +2013,8,25,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1600,176,1,2155,165,1,0 +2013,10,19,6,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,725,-2,0,815,-18,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,7,0,1420,6,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1244,12,0,1655,-15,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,1,0,1445,74,1,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,709,0,0,1037,-13,0,0 +2013,8,5,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,-2,0,2057,-13,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2005,1,0,2255,-38,0,0 +2013,4,1,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,-3,0,1357,7,0,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2253,-8,0,715,-25,0,0 +2013,6,19,3,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,739,-7,0,1035,5,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2203,6,0,625,-14,0,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1040,105,1,1315,103,1,0 +2013,10,24,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-2,0,1520,-7,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1030,-2,0,1320,-12,0,0 +2013,8,4,7,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,9,0,2145,-2,0,0 +2013,8,29,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,3,0,1830,-11,0,0 +2013,6,9,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,720,-5,0,850,-12,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1514,7,0,1648,-2,0,0 +2013,10,9,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,930,1,0,1055,-4,0,0 +2013,5,7,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2020,-5,0,2125,-13,0,0 +2013,7,16,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,95,1,2115,79,1,0 +2013,10,3,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,28,1,838,17,1,0 +2013,6,2,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,-10,0,1705,-12,0,0 +2013,10,21,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,0,0,915,-3,0,0 +2013,5,19,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,730,-7,0,947,-17,0,0 +2013,9,11,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1840,47,1,2121,35,1,0 +2013,5,21,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-5,0,1144,-28,0,0 +2013,10,28,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,-11,0,1403,5,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-1,0,1555,-10,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,645,-4,0,820,-4,0,0 +2013,9,14,6,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1930,-3,0,2247,-24,0,0 +2013,7,30,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,115,-1,0,545,7,0,0 +2013,9,18,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,605,-4,0,735,-2,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,87,1,1925,83,1,0 +2013,4,8,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,-3,0,2303,-14,0,0 +2013,5,4,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1239,-14,0,1409,-17,0,0 +2013,4,5,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1545,-5,0,1740,-3,0,0 +2013,10,29,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,1639,-17,0,0 +2013,6,13,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,3,0,1546,-2,0,0 +2013,5,6,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,8,0,1920,3,0,0 +2013,9,16,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,640,1,0,810,-19,0,0 +2013,7,16,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-1,0,1305,-10,0,0 +2013,8,14,3,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,850,-7,0,1121,-1,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1506,-4,0,1550,-12,0,0 +2013,4,8,1,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1536,14,0,1845,3,0,0 +2013,7,9,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1530,0,0,1635,-7,0,0 +2013,10,4,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-9,0,1145,-15,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1545,-6,0,1826,-37,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1415,-4,0,1611,-15,0,0 +2013,6,23,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1100,-5,0,1349,-18,0,0 +2013,10,25,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,7,0,2005,3,0,0 +2013,9,4,3,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,913,-11,0,1159,-16,0,0 +2013,8,4,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,810,-19,0,0 +2013,10,21,1,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1835,-9,0,2154,-31,0,0 +2013,4,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1555,-3,0,1650,-5,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1650,-2,0,2105,-16,0,0 +2013,4,22,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,0,0,902,-12,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1530,-5,0,1811,-9,0,0 +2013,7,20,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-3,0,1055,-4,0,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1350,48,1,1500,40,1,0 +2013,7,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,-3,0,1914,17,1,0 +2013,5,13,1,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1210,-5,0,1455,-16,0,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1805,1,0,1930,-7,0,0 +2013,6,19,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,26,1,1930,17,1,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1758,-1,0,2025,-17,0,0 +2013,9,14,6,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,1,0,1010,2,0,0 +2013,4,6,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,745,-12,0,1045,-20,0,0 +2013,7,22,1,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1314,16,1,1620,43,1,0 +2013,7,29,1,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,-2,0,1455,-19,0,0 +2013,7,4,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,12,0,1747,-9,0,0 +2013,6,26,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2145,79,1,2302,72,1,0 +2013,9,18,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,81,1,1910,68,1,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1735,21,1,1840,42,1,0 +2013,8,28,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,4,0,1750,-6,0,0 +2013,9,2,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2040,86,1,2313,83,1,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,24,1,2118,27,1,0 +2013,9,11,3,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,5,0,1623,1,0,0 +2013,9,21,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-3,0,815,-2,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2211,0,0,2358,5,0,0 +2013,9,16,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1925,-4,0,2105,-10,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2045,23,1,2255,12,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1150,4,0,1445,-1,0,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2130,16,1,2320,8,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,15,1,1247,7,0,0 +2013,4,18,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,56,1,2055,54,1,0 +2013,9,30,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-4,0,858,-19,0,0 +2013,9,19,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1853,52,1,2130,45,1,0 +2013,6,21,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1841,120,1,1903,111,1,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,10,0,1326,1,0,0 +2013,5,18,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-8,0,1705,-10,0,0 +2013,7,14,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1210,-34,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1020,3,0,1555,-8,0,0 +2013,8,9,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,44,1,1904,73,1,0 +2013,8,21,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,3,0,820,15,1,0 +2013,8,22,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-6,0,909,-6,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,4,0,1245,-4,0,0 +2013,10,13,7,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-6,0,811,-13,0,0 +2013,5,17,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1945,19,1,2145,12,0,0 +2013,6,12,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,1,0,2110,-6,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1954,-1,0,2151,-28,0,0 +2013,5,16,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,10,0,1530,10,0,0 +2013,8,7,3,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,194,1,1537,181,1,0 +2013,4,2,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-7,0,1840,0,0,0 +2013,5,13,1,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1940,-5,0,2159,-33,0,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1645,-7,0,2006,-7,0,0 +2013,8,15,4,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1315,7,0,1505,6,0,0 +2013,6,26,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,17,1,1635,2,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,3,0,1958,10,0,0 +2013,6,21,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,154,1,1350,163,1,0 +2013,6,14,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-1,0,758,3,0,0 +2013,4,12,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,905,-1,0,1154,25,1,0 +2013,9,18,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,622,-11,0,1207,-13,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1640,228,1,1803,209,1,0 +2013,6,15,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1159,-2,0,0 +2013,7,31,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,54,1,1225,52,1,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,926,8,0,1119,15,1,0 +2013,9,30,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,-7,0,1514,-30,0,0 +2013,4,16,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,37,1,1950,8,0,0 +2013,6,9,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1530,-6,0,1620,-13,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1944,0,0,2021,-2,0,0 +2013,5,30,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1235,-6,0,1325,-6,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2035,114,1,2240,94,1,0 +2013,5,9,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1355,-8,0,1502,-15,0,0 +2013,6,11,2,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,18,1,2101,13,0,0 +2013,7,6,6,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,1145,-6,0,1235,-12,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,0,0,1330,-25,0,0 +2013,4,9,2,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1935,18,1,2113,-6,0,0 +2013,5,31,5,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,102,1,1950,118,1,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1835,19,1,1958,17,1,0 +2013,9,13,5,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,636,0,0,932,-11,0,0 +2013,7,27,6,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,-4,0,1904,-9,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2040,8,0,2305,0,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1530,-8,0,2355,-14,0,0 +2013,4,23,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,555,-7,0,744,11,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1300,42,1,1455,20,1,0 +2013,10,7,1,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1700,27,1,1915,12,0,0 +2013,10,18,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,625,-2,0,943,33,1,0 +2013,4,6,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-7,0,627,-21,0,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1355,5,0,1515,-3,0,0 +2013,10,10,4,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,555,-3,0,1420,-27,0,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,0,0,945,-9,0,0 +2013,9,28,6,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1013,-4,0,1725,-27,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1510,8,0,1610,10,0,0 +2013,8,22,4,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-3,0,1759,1,0,0 +2013,8,18,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,940,-2,0,1100,-9,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1535,0,0,1900,-5,0,0 +2013,5,7,2,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1425,-6,0,1537,-13,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-3,0,1417,-6,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1455,9,0,2140,11,0,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2020,-4,0,2318,-22,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,600,-1,0,730,-15,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1550,-2,0,1710,-8,0,0 +2013,6,20,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,-5,0,750,-7,0,0 +2013,4,26,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1425,14,0,1549,15,1,0 +2013,6,5,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,16,1,1632,27,1,0 +2013,10,12,6,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-5,0,1109,-8,0,0 +2013,10,6,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1825,-1,0,2045,-32,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1005,-6,0,1210,-16,0,0 +2013,6,11,2,UA,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,808,22,1,956,10,0,0 +2013,6,8,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,6,0,1320,0,0,0 +2013,5,11,6,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,833,-8,0,1139,-32,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,601,6,0,731,0,0,0 +2013,7,22,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,700,-3,0,805,-4,0,0 +2013,7,24,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,0,,1113,0,1,1 +2013,8,30,5,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1810,-8,0,2030,-7,0,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,4,0,1710,4,0,0 +2013,9,14,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,839,27,1,946,18,1,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-4,0,1002,-10,0,0 +2013,5,3,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,2,0,1030,-10,0,0 +2013,7,12,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,48,1,947,58,1,0 +2013,10,30,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2200,-7,0,2307,-14,0,0 +2013,9,17,2,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-12,0,559,-24,0,0 +2013,5,22,3,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1340,-4,0,1705,-8,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,300,1,1710,329,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-3,0,1114,-13,0,0 +2013,4,8,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-8,0,2044,24,1,0 +2013,8,1,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,900,14,0,0 +2013,10,8,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1434,-2,0,1655,1,0,0 +2013,7,2,2,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,0,0,603,32,1,0 +2013,9,9,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-8,0,1812,0,0,0 +2013,4,10,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1815,-6,0,2103,-14,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1653,20,1,1901,19,1,0 +2013,8,6,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1402,-5,0,1835,-17,0,0 +2013,6,10,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,10,0,2000,-24,0,0 +2013,5,5,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1200,-8,0,1440,-15,0,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2025,16,1,2255,-2,0,0 +2013,5,24,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,-4,0,1145,-1,0,0 +2013,9,2,1,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,-4,0,1005,-6,0,0 +2013,7,21,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,958,6,0,0 +2013,10,30,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1152,10,0,1445,8,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-3,0,905,-14,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,5,0,1710,11,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1400,24,1,1450,20,1,0 +2013,9,28,6,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,1150,-7,0,1240,-11,0,0 +2013,7,15,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-7,0,1725,-5,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1815,21,1,1930,19,1,0 +2013,8,14,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1602,-3,0,1700,10,0,0 +2013,4,18,4,EV,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,747,25,1,847,23,1,0 +2013,7,28,7,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,10,0,1845,0,0,0 +2013,4,14,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,-2,0,1705,-14,0,0 +2013,9,21,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1057,3,0,1700,45,1,0 +2013,7,9,2,HA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1355,45,1,2205,31,1,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1120,11,0,1225,1,0,0 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,-11,0,1159,-14,0,0 +2013,6,12,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,827,-2,0,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1451,0,0,1746,-9,0,0 +2013,8,26,1,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-3,0,1634,-11,0,0 +2013,10,26,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1255,-10,0,1445,9,0,0 +2013,9,20,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2028,-1,0,443,-35,0,0 +2013,5,16,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1253,-3,0,1459,-13,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1525,1,0,1655,-8,0,0 +2013,9,4,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1807,-5,0,2159,-11,0,0 +2013,4,27,6,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-4,0,2015,-10,0,0 +2013,4,25,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1800,9,0,1925,4,0,0 +2013,9,30,1,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1305,-8,0,1438,-19,0,0 +2013,5,12,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1030,-8,0,1210,-37,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,13,0,1659,9,0,0 +2013,4,2,2,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,650,5,0,750,-3,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,-4,0,1004,-11,0,0 +2013,9,10,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,-3,0,1614,-6,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1727,-4,0,1833,-8,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1145,5,0,1340,1,0,0 +2013,4,2,2,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1035,-6,0,1210,-19,0,0 +2013,7,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,-5,0,1840,21,1,0 +2013,6,17,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1540,59,1,1910,48,1,0 +2013,9,21,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,-4,0,1250,26,1,0 +2013,4,14,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,0,0,1918,-14,0,0 +2013,6,12,3,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1230,-10,0,1451,-9,0,0 +2013,8,28,3,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1230,107,1,1455,140,1,0 +2013,6,27,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-1,0,1600,-14,0,0 +2013,7,13,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1959,83,1,1,69,1,0 +2013,9,3,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2120,-2,0,555,-15,0,0 +2013,5,27,1,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,746,-9,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1820,122,1,2140,112,1,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,73,1,2210,61,1,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2150,-2,0,43,12,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1317,-1,0,1440,-9,0,0 +2013,8,19,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,88,1,1859,91,1,0 +2013,10,10,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1410,2,0,1540,-15,0,0 +2013,8,27,2,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1230,-12,0,1810,-22,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1106,-4,0,1223,-12,0,0 +2013,7,1,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,25,1,1730,8,0,0 +2013,4,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,830,-2,0,930,-6,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1843,9,0,2330,3,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1527,-18,0,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1939,26,1,2115,11,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1525,125,1,2200,129,1,0 +2013,7,2,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1728,-8,0,2110,-10,0,0 +2013,7,6,6,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,1,0,745,-13,0,0 +2013,7,3,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,-3,0,1720,-8,0,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,-4,0,1425,-32,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-3,0,1415,-4,0,0 +2013,4,10,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,12,0,1715,15,1,0 +2013,10,21,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1355,-5,0,1546,-7,0,0 +2013,8,9,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,2000,4,0,2107,-3,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1845,1,0,1950,-6,0,0 +2013,8,6,2,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1505,-2,0,1825,-11,0,0 +2013,9,30,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,2,0,1436,7,0,0 +2013,9,22,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,900,2,0,1700,-9,0,0 +2013,6,9,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1859,-6,0,2210,-4,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-7,0,1809,-6,0,0 +2013,7,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,739,0,0,1029,0,0,0 +2013,5,3,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-2,0,1540,-19,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1820,67,1,2148,56,1,0 +2013,9,25,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,635,-3,0,1415,-12,0,0 +2013,6,5,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,-4,0,2145,-21,0,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,836,-8,0,1012,-19,0,0 +2013,5,20,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1230,51,1,1605,65,1,0 +2013,8,22,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-3,0,1000,-11,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1845,-3,0,2345,-25,0,0 +2013,10,6,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1645,-3,0,1803,-8,0,0 +2013,7,25,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1731,27,1,1821,17,1,0 +2013,5,5,7,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,930,-2,0,1800,-7,0,0 +2013,10,15,2,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1120,-3,0,1230,-3,0,0 +2013,9,28,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-2,0,1223,-3,0,0 +2013,8,28,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2200,-2,0,2307,-11,0,0 +2013,6,12,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1505,10,0,1630,12,0,0 +2013,7,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,-3,0,1852,-17,0,0 +2013,10,13,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-10,0,1445,-17,0,0 +2013,4,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1510,38,1,1830,23,1,0 +2013,10,27,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-4,0,1721,5,0,0 +2013,4,15,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1300,-7,0,1556,-35,0,0 +2013,6,30,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1130,18,1,1515,6,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1113,3,0,1218,-13,0,0 +2013,9,27,5,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,91,1,1922,88,1,0 +2013,10,9,3,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,-1,0,732,14,0,0 +2013,9,9,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-5,0,1335,-27,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2250,-6,0,15,-11,0,0 +2013,9,15,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-3,0,920,-14,0,0 +2013,5,12,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-1,0,1631,-24,0,0 +2013,5,13,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,-8,0,2050,-13,0,0 +2013,5,30,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,1,0,2215,-10,0,0 +2013,4,13,6,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1710,-9,0,1918,-5,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1310,-1,0,1415,-5,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-2,0,1333,-13,0,0 +2013,4,24,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1940,-4,0,2028,-9,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,755,14,0,1055,4,0,0 +2013,6,21,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,-5,0,1135,-8,0,0 +2013,10,16,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,1,0,2135,-6,0,0 +2013,6,9,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-3,0,1010,-15,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,55,1,1155,99,1,0 +2013,10,21,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2025,9,0,2150,-4,0,0 +2013,10,18,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,935,4,0,942,14,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1216,20,1,1355,11,0,0 +2013,6,20,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1835,49,1,2109,45,1,0 +2013,5,10,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1855,4,0,2207,22,1,0 +2013,10,14,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1741,64,1,1944,83,1,0 +2013,4,23,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,611,-11,0,724,-16,0,0 +2013,6,25,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,0,,851,0,1,1 +2013,6,19,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,-2,0,745,14,0,0 +2013,7,31,3,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,-3,0,2032,-10,0,0 +2013,7,3,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,95,1,1813,77,1,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2055,-4,0,2259,-27,0,0 +2013,4,12,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1846,-5,0,2014,-11,0,0 +2013,6,12,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,725,-4,0,930,-18,0,0 +2013,7,24,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1149,12,0,1400,23,1,0 +2013,7,6,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1420,93,1,1600,88,1,0 +2013,6,25,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-4,0,941,-10,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1310,9,0,1615,-5,0,0 +2013,7,18,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1225,-7,0,1400,-12,0,0 +2013,9,19,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,730,-4,0,1103,-9,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1910,6,0,2050,-18,0,0 +2013,6,21,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,-7,0,1807,3,0,0 +2013,4,15,1,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1500,81,1,1825,65,1,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1520,13,0,1720,13,0,0 +2013,5,2,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1447,-5,0,1814,-5,0,0 +2013,4,8,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,745,3,0,915,0,0,0 +2013,9,16,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1355,49,1,1455,46,1,0 +2013,5,26,7,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1033,-1,0,1554,19,1,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,3,0,1000,47,1,0 +2013,8,7,3,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-7,0,1945,-6,0,0 +2013,4,29,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1837,26,1,2108,9,0,0 +2013,7,5,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,4,0,1632,4,0,0 +2013,7,18,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,44,1,2135,47,1,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,815,0,0,950,4,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,1,0,1045,-12,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1405,22,1,1750,10,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1457,-5,0,1555,-3,0,0 +2013,4,24,3,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1447,23,1,1756,15,1,0 +2013,6,6,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1744,0,0,2016,-2,0,0 +2013,6,3,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1120,8,0,1245,6,0,0 +2013,10,30,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,-3,0,915,11,0,0 +2013,8,4,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,2,0,648,-4,0,0 +2013,8,15,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-7,0,906,7,0,0 +2013,7,4,4,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,857,-12,0,1247,-17,0,0 +2013,9,15,7,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-3,0,1403,6,0,0 +2013,8,5,1,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1620,-6,0,1853,-32,0,0 +2013,7,20,6,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2130,6,0,535,-5,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,855,-8,0,1200,-15,0,0 +2013,10,11,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-8,0,1107,-10,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1355,6,0,1729,-3,0,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1107,16,1,1208,7,0,0 +2013,8,9,5,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,1,0,935,6,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,7,0,1505,-6,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1555,0,0,1738,-19,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1359,14,0,1729,0,0,0 +2013,8,2,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-5,0,1405,8,0,0 +2013,5,28,2,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,712,-5,0,1033,-35,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1255,48,1,1345,28,1,0 +2013,4,14,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-3,0,833,16,1,0 +2013,6,21,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,147,1,807,145,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1630,20,1,1843,-19,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2034,1,0,2149,-10,0,0 +2013,9,14,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1200,-3,0,1216,-19,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,-2,0,1605,2,0,0 +2013,4,15,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1640,3,0,1820,-4,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1405,7,0,1750,5,0,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,0,,2005,0,1,1 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1730,-1,0,1850,-13,0,0 +2013,10,1,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-2,0,1125,7,0,0 +2013,10,14,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,88,1,1740,74,1,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,7,0,1529,-7,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-4,0,1415,-4,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2020,95,1,2235,88,1,0 +2013,9,6,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2030,-6,0,2159,-14,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1601,4,0,1930,-13,0,0 +2013,6,15,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,938,0,0,1125,-4,0,0 +2013,10,14,1,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1454,125,1,1616,113,1,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1930,-3,0,2113,3,0,0 +2013,6,29,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1513,37,1,1835,30,1,0 +2013,5,20,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1455,-4,0,1600,-20,0,0 +2013,4,6,6,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,0,0,1856,-8,0,0 +2013,8,24,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,751,-34,0,0 +2013,9,11,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,600,-6,0,745,-13,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1432,-4,0,1600,-20,0,0 +2013,9,4,3,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,614,-7,0,729,-14,0,0 +2013,5,12,7,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1148,14,0,1415,-2,0,0 +2013,10,20,7,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1357,10,0,1609,-3,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,954,-8,0,1340,-18,0,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-3,0,1058,1,0,0 +2013,5,28,2,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,650,-6,0,810,5,0,0 +2013,6,17,1,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,840,-5,0,1025,-8,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1741,16,1,1825,7,0,0 +2013,10,21,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1430,-1,0,1551,-4,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1300,2,0,1405,3,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,78,1,2215,85,1,0 +2013,10,8,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-2,0,845,-6,0,0 +2013,6,3,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-8,0,629,-7,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,925,-1,0,1320,2,0,0 +2013,5,22,3,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2108,-5,0,530,-3,0,0 +2013,7,27,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1845,-1,0,2005,-6,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,16,1,1920,20,1,0 +2013,8,2,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,859,-7,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-2,0,1540,-14,0,0 +2013,10,4,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1715,-6,0,1830,-3,0,0 +2013,10,29,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,820,-4,0,1057,-26,0,0 +2013,5,29,3,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,615,-3,0,835,-18,0,0 +2013,7,13,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,-11,0,1901,-4,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1058,27,1,1207,15,1,0 +2013,7,27,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,610,-7,0,750,5,0,0 +2013,8,4,7,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1735,5,0,1915,-2,0,0 +2013,7,18,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1735,2,0,1855,37,1,0 +2013,10,2,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-7,0,1244,-11,0,0 +2013,10,17,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1344,-4,0,0 +2013,5,17,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-5,0,900,-8,0,0 +2013,7,1,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,-5,0,2044,-19,0,0 +2013,4,11,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1115,-1,0,1215,2,0,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,609,41,1,740,51,1,0 +2013,8,26,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1745,11,0,1930,12,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1420,15,1,1520,10,0,0 +2013,7,6,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-7,0,807,-26,0,0 +2013,5,29,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2140,59,1,2245,58,1,0 +2013,9,29,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,0,0,1921,-4,0,0 +2013,10,29,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1228,-5,0,1417,-14,0,0 +2013,9,6,5,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,805,-2,0,1615,13,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-11,0,901,-17,0,0 +2013,7,23,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-3,0,1404,-18,0,0 +2013,7,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2010,7,0,2039,-9,0,0 +2013,7,5,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-6,0,1017,-11,0,0 +2013,10,8,2,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,25,1,1750,25,1,0 +2013,6,9,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-4,0,511,-11,0,0 +2013,8,6,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1835,10,0,2115,9,0,0 +2013,6,18,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,3,0,2113,-4,0,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1005,0,0,1220,-14,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1711,14,0,1904,-4,0,0 +2013,10,1,2,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,810,5,0,1005,-13,0,0 +2013,4,19,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-4,0,910,-14,0,0 +2013,4,20,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,821,8,0,1030,5,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,31,1,2355,12,0,0 +2013,8,31,6,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,901,-8,0,1143,-34,0,0 +2013,7,5,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-6,0,1413,-15,0,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,915,0,0,1028,-7,0,0 +2013,10,29,2,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1915,-4,0,2020,-10,0,0 +2013,6,10,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2115,-5,0,2220,-8,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,12,0,1152,5,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,-3,0,1256,-9,0,0 +2013,4,17,3,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,821,7,0,1106,-15,0,0 +2013,8,19,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,-13,0,1848,-16,0,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,600,1,0,836,-28,0,0 +2013,4,15,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2155,21,1,2259,19,1,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1815,30,1,2310,19,1,0 +2013,4,30,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,42,-2,0,531,-13,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,0,0,1800,-9,0,0 +2013,6,3,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,700,-3,0,820,-3,0,0 +2013,7,27,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-5,0,2300,-8,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2100,-7,0,2242,1,0,0 +2013,5,12,7,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1730,120,1,2028,106,1,0 +2013,6,21,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1736,67,1,1920,60,1,0 +2013,7,12,5,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,-4,0,820,-18,0,0 +2013,9,9,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-6,0,950,-11,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1650,4,0,1840,-1,0,0 +2013,4,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1135,-5,0,1256,-7,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,-6,0,1951,4,0,0 +2013,10,18,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1420,5,0,2200,-20,0,0 +2013,5,29,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1600,-3,0,2025,-6,0,0 +2013,9,13,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,14,0,1840,0,0,0 +2013,5,10,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2141,-3,0,2336,-22,0,0 +2013,6,4,2,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,600,1,0,820,10,0,0 +2013,6,14,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,952,-29,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1420,0,0,1600,-16,0,0 +2013,4,14,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,727,-1,0,1309,-15,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1555,2,0,1850,-3,0,0 +2013,8,25,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-4,0,1507,9,0,0 +2013,10,12,6,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,6,0,914,-3,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2155,-2,0,55,-11,0,0 +2013,9,18,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1830,117,1,2147,135,1,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1810,-5,0,2047,-7,0,0 +2013,4,11,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,30,1,1625,29,1,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,849,-4,0,1153,-5,0,0 +2013,9,4,3,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-3,0,2110,-6,0,0 +2013,9,7,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1650,1,0,1755,10,0,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,-6,0,2019,1,0,0 +2013,6,30,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1535,-9,0,1814,-14,0,0 +2013,4,18,4,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1110,-1,0,1252,0,0,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,840,35,1,1050,26,1,0 +2013,6,7,5,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,-4,0,1852,-13,0,0 +2013,6,14,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1835,2,0,1939,2,0,0 +2013,6,29,6,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,730,-2,0,1000,-9,0,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1100,-3,0,1245,-14,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,830,-2,0,925,-6,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1335,16,1,1640,15,1,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,70,1,2155,43,1,0 +2013,9,28,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1215,-5,0,1315,-9,0,0 +2013,7,8,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1532,9,0,1900,0,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,905,7,0,1620,-19,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,805,-6,0,1020,-16,0,0 +2013,6,28,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-1,0,855,-8,0,0 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,836,-6,0,914,7,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,66,1,2120,55,1,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,2,0,2225,-15,0,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,35,1,1735,25,1,0 +2013,6,16,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1842,16,1,2044,2,0,0 +2013,8,10,6,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1221,7,0,1949,45,1,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1306,-5,0,1545,-14,0,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2244,-2,0,14,7,0,0 +2013,7,7,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13244,Memphis International,Memphis,TN,135,0,0,737,-13,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1603,-4,0,1730,-13,0,0 +2013,5,18,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-3,0,1856,-18,0,0 +2013,9,21,6,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,-4,0,1430,3,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,0,0,1230,-5,0,0 +2013,4,21,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,74,1,1910,71,1,0 +2013,5,5,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1706,4,0,2005,-28,0,0 +2013,5,27,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1845,5,0,2110,10,0,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,1,0,1730,-7,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2205,-1,0,2252,-13,0,0 +2013,8,25,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,1,0,2244,-15,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1022,-5,0,1410,1,0,0 +2013,10,30,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,18,1,1335,51,1,0 +2013,10,16,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1118,10,0,1120,24,1,0 +2013,7,23,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1250,1,0,1547,9,0,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,-2,0,1455,6,0,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,-4,0,2300,10,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1730,30,1,1905,18,1,0 +2013,4,30,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,5,0,2055,15,1,0 +2013,9,5,4,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1320,-4,0,1415,3,0,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,1,0,2244,-4,0,0 +2013,9,1,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,930,-4,0,1030,-5,0,0 +2013,6,3,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1220,-4,0,1319,-12,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1611,-3,0,1758,-10,0,0 +2013,4,5,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1930,-4,0,2148,-33,0,0 +2013,5,4,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1200,-7,0,1255,-18,0,0 +2013,9,25,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1345,-1,0,1500,-23,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1535,8,0,1918,-12,0,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1155,34,1,1410,13,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-3,0,1300,-18,0,0 +2013,6,16,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2050,15,1,2205,30,1,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1458,4,0,1959,32,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1246,-7,0,1408,-12,0,0 +2013,6,27,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2111,23,1,2238,21,1,0 +2013,9,14,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,825,10,0,837,-1,0,0 +2013,7,14,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1625,0,,1935,0,1,1 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,-5,0,2259,-20,0,0 +2013,8,24,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2125,-8,0,2237,-11,0,0 +2013,6,14,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1750,3,0,2125,-6,0,0 +2013,10,18,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-4,0,900,-5,0,0 +2013,4,23,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,828,17,1,1403,0,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,1,0,930,22,1,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1708,3,0,1843,9,0,0 +2013,6,2,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1310,-5,0,1525,-15,0,0 +2013,5,10,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,-2,0,2305,-6,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1555,-6,0,2055,-22,0,0 +2013,7,29,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-3,0,2103,-30,0,0 +2013,7,1,1,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1153,184,1,2023,233,1,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1550,123,1,1840,110,1,0 +2013,5,19,7,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1650,-10,0,1802,-11,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,-7,0,2353,-12,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,-5,0,2345,-16,0,0 +2013,8,16,5,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,710,-1,0,1305,-7,0,0 +2013,5,28,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,835,-7,0,0 +2013,10,2,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1830,-4,0,1935,-14,0,0 +2013,8,17,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,517,-3,0,612,-14,0,0 +2013,8,19,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-10,0,1600,-10,0,0 +2013,9,9,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1940,-7,0,2110,-11,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,638,2,0,926,-19,0,0 +2013,10,27,7,WN,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1515,5,0,1755,6,0,0 +2013,6,20,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1256,-9,0,1515,-9,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2105,9,0,2210,-7,0,0 +2013,10,7,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,710,-3,0,800,-16,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,19,1,1515,3,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1020,26,1,1140,21,1,0 +2013,10,16,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1150,-1,0,1505,-10,0,0 +2013,7,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1712,-1,0,2043,3,0,0 +2013,8,23,5,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-4,0,1543,-6,0,0 +2013,5,24,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-5,0,1023,-9,0,0 +2013,10,29,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-9,0,1240,-1,0,0 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,105,0,0,635,-5,0,0 +2013,6,2,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,833,-5,0,939,-20,0,0 +2013,8,9,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,-4,0,1456,1,0,0 +2013,4,1,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1446,43,1,1609,34,1,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1035,-2,0,1430,-2,0,0 +2013,9,16,1,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1455,-7,0,1730,-17,0,0 +2013,10,23,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,-2,0,2139,-1,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,830,6,0,1100,25,1,0 +2013,4,16,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1215,-3,0,1320,-11,0,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1202,-1,0,1754,-21,0,0 +2013,9,3,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1051,112,1,1333,108,1,0 +2013,5,28,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1235,-1,0,1442,-8,0,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1016,0,0,1840,15,1,0 +2013,5,19,7,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,59,1,2025,81,1,0 +2013,5,24,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,5,0,1542,0,0,0 +2013,10,21,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-5,0,1115,15,1,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,13,0,1754,15,1,0 +2013,6,3,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,744,-4,0,842,-8,0,0 +2013,6,14,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,750,-4,0,855,-11,0,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-9,0,1330,-37,0,0 +2013,10,13,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,900,1,0,1021,-10,0,0 +2013,6,4,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-4,0,1140,-6,0,0 +2013,10,29,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1408,-5,0,1505,4,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,-3,0,1008,-6,0,0 +2013,8,1,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,66,1,2029,63,1,0 +2013,6,9,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1555,7,0,1730,-4,0,0 +2013,4,10,3,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,842,-8,0,1028,-27,0,0 +2013,6,6,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,-1,0,1425,-11,0,0 +2013,7,29,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,58,1,1825,91,1,0 +2013,5,6,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,605,-6,0,735,5,0,0 +2013,7,21,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,116,1,2346,117,1,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,15,1,2122,4,0,0 +2013,5,15,3,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1212,-1,0,1439,-28,0,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2155,-4,0,2315,-10,0,0 +2013,4,17,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1916,-4,0,2042,-6,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1117,0,0,1259,-4,0,0 +2013,7,27,6,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-4,0,1427,-13,0,0 +2013,7,30,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,610,-1,0,710,-12,0,0 +2013,5,8,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,-7,0,1807,6,0,0 +2013,9,7,6,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1401,-9,0,1551,0,0,0 +2013,8,29,4,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,820,8,0,1405,-2,0,0 +2013,9,27,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,13,0,2029,-8,0,0 +2013,5,5,7,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1446,12,0,1628,5,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1545,-5,0,1710,-16,0,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,841,-5,0,1029,-28,0,0 +2013,5,14,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-4,0,1802,2,0,0 +2013,10,8,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1540,21,1,1815,18,1,0 +2013,9,24,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1035,0,0,1205,2,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,-1,0,2349,-14,0,0 +2013,6,2,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,535,-3,0,950,-14,0,0 +2013,5,10,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1817,1,0,1854,5,0,0 +2013,4,14,7,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,905,-1,0,1015,-7,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1135,-6,0,1245,-16,0,0 +2013,6,26,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,-1,0,951,-8,0,0 +2013,5,14,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1020,-5,0,1258,-23,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,45,1,1440,40,1,0 +2013,5,13,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1738,62,1,2016,35,1,0 +2013,9,5,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1850,-5,0,2249,-18,0,0 +2013,8,19,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1750,-7,0,2125,-11,0,0 +2013,6,15,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,635,0,0,1005,-9,0,0 +2013,9,23,1,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,5,0,2110,-3,0,0 +2013,8,3,6,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,640,-7,0,908,-13,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,8,0,1021,13,0,0 +2013,10,15,2,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1855,-15,0,2123,-11,0,0 +2013,4,30,2,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1130,-6,0,1345,-13,0,0 +2013,8,19,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,47,1,2210,32,1,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1405,46,1,1500,42,1,0 +2013,4,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1117,9,0,1649,-3,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1527,23,1,1637,11,0,0 +2013,9,25,3,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-6,0,900,-5,0,0 +2013,5,18,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,-5,0,1645,-28,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1242,-5,0,1401,-19,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,900,-2,0,1120,-11,0,0 +2013,8,3,6,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1325,9,0,1620,7,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,700,-3,0,845,-6,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,10,0,2259,31,1,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,907,29,1,1044,26,1,0 +2013,9,1,7,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,1841,-15,0,0 +2013,6,19,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1420,-7,0,1814,4,0,0 +2013,4,10,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1130,2,0,1140,2,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,18,1,2357,22,1,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,-6,0,2115,-22,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1020,0,0,1150,8,0,0 +2013,7,14,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,600,0,0,715,-7,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1440,-4,0,1920,6,0,0 +2013,5,14,2,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1127,-3,0,1420,14,0,0 +2013,6,13,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,844,-3,0,1214,-14,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1215,-4,0,1409,-26,0,0 +2013,8,4,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-5,0,945,-4,0,0 +2013,10,16,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1005,10,0,1240,18,1,0 +2013,5,29,3,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-15,0,1704,-25,0,0 +2013,6,11,2,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1710,-2,0,1925,-11,0,0 +2013,5,9,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1333,8,0,1702,-2,0,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1050,0,0,1825,-11,0,0 +2013,10,9,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,720,0,0,840,1,0,0 +2013,10,21,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,15,1,2152,-2,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1150,25,1,1625,40,1,0 +2013,4,4,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2115,70,1,3,47,1,0 +2013,7,2,2,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-4,0,1631,-6,0,0 +2013,4,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1135,-4,0,1300,-16,0,0 +2013,4,27,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-1,0,1845,-20,0,0 +2013,10,23,3,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1455,-2,0,1640,-5,0,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,12,0,1934,18,1,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,1,0,1725,-1,0,0 +2013,5,8,3,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,643,-5,0,947,0,0,0 +2013,10,26,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1045,-7,0,1215,-7,0,0 +2013,10,8,2,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-5,0,1555,-21,0,0 +2013,8,2,5,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,955,-6,0,1750,0,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1010,-4,0,1430,-2,0,0 +2013,10,16,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,15,1,2359,10,0,0 +2013,10,17,4,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,108,1,2028,94,1,0 +2013,7,3,3,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1325,26,1,1545,21,1,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1110,1,0,1331,13,0,0 +2013,7,1,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,4,0,830,-3,0,0 +2013,9,10,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,9,0,1115,9,0,0 +2013,6,19,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1758,-16,0,1927,-13,0,0 +2013,6,20,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,1,0,2155,-1,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2055,-7,0,2259,-10,0,0 +2013,10,16,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1047,-6,0,1420,-4,0,0 +2013,6,6,4,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1310,2,0,1423,11,0,0 +2013,7,3,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,-2,0,1240,-6,0,0 +2013,6,17,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,1122,-15,0,0 +2013,7,28,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1703,69,1,1810,70,1,0 +2013,9,15,7,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2120,-3,0,555,-26,0,0 +2013,5,31,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,941,-8,0,1549,-24,0,0 +2013,10,1,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,13,0,1540,-8,0,0 +2013,8,1,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1809,81,1,2020,78,1,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,835,-5,0,1259,-12,0,0 +2013,7,15,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1425,3,0,1710,-14,0,0 +2013,6,14,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,19,1,1530,18,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-2,0,1000,-13,0,0 +2013,10,9,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,7,0,1600,-11,0,0 +2013,8,12,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,76,1,1555,70,1,0 +2013,6,25,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1249,-5,0,1343,-6,0,0 +2013,10,5,6,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,800,0,0,930,-10,0,0 +2013,6,18,2,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,0,0,825,10,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1655,19,1,1830,4,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1924,3,0,2200,2,0,0 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2320,15,1,510,-1,0,0 +2013,8,8,4,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1121,30,1,1445,19,1,0 +2013,8,10,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2356,37,1,707,40,1,0 +2013,10,17,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-4,0,1223,-15,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,0,0,1200,-5,0,0 +2013,10,25,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-1,0,1703,-2,0,0 +2013,8,14,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,635,-4,0,830,-1,0,0 +2013,7,8,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-1,0,1325,-1,0,0 +2013,7,2,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1730,9,0,1820,7,0,0 +2013,7,22,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,9,0,1805,11,0,0 +2013,5,28,2,9E,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1247,-1,0,1532,-22,0,0 +2013,8,13,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,-1,0,559,-17,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1501,1,0,1538,4,0,0 +2013,8,20,2,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,600,-9,0,835,-2,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,3,0,1450,-2,0,0 +2013,6,27,4,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,-1,0,1853,81,1,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1710,161,1,2155,145,1,0 +2013,6,24,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-4,0,1251,-14,0,0 +2013,8,12,1,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1312,12,0,2044,-10,0,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1845,24,1,2210,15,1,0 +2013,7,18,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,826,0,0,0 +2013,4,26,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2126,86,1,2239,93,1,0 +2013,7,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1735,0,0,1921,2,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-4,0,730,-3,0,0 +2013,6,10,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,955,126,1,1115,137,1,0 +2013,7,23,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,1,0,2245,-8,0,0 +2013,4,8,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-6,0,1906,-5,0,0 +2013,4,27,6,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,40,1,1235,36,1,0 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,-5,0,1734,-11,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,-5,0,1625,-38,0,0 +2013,8,11,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1910,65,1,2015,67,1,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1305,3,0,1602,-15,0,0 +2013,8,17,6,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-10,0,1036,-5,0,0 +2013,9,17,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1910,59,1,2240,59,1,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,-3,0,1500,-9,0,0 +2013,9,24,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,-1,0,1530,12,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,6,0,31,-2,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2010,-5,0,2145,-6,0,0 +2013,7,3,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1530,14,0,1721,41,1,0 +2013,5,30,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,-1,0,1903,-6,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,920,2,0,1110,-6,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,2,0,950,-8,0,0 +2013,6,12,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-6,0,1035,3,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1556,29,1,1735,22,1,0 +2013,6,28,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-5,0,1230,-2,0,0 +2013,6,15,6,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1135,4,0,1725,-14,0,0 +2013,4,12,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1910,21,1,2040,24,1,0 +2013,10,26,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1330,-1,0,1455,-6,0,0 +2013,10,16,3,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-5,0,905,-20,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1530,3,0,1755,-3,0,0 +2013,7,19,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1710,18,1,1830,9,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1050,6,0,1515,-4,0,0 +2013,9,17,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1720,50,1,1845,49,1,0 +2013,8,24,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1900,-2,0,1948,-3,0,0 +2013,7,6,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,8,0,1850,-3,0,0 +2013,8,29,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2005,-3,0,2106,-17,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1208,-8,0,1452,-38,0,0 +2013,4,27,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1640,-8,0,1730,-14,0,0 +2013,7,23,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-3,0,1604,3,0,0 +2013,6,22,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1250,-2,0,1547,-24,0,0 +2013,4,19,5,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1834,105,1,2049,89,1,0 +2013,7,20,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1740,71,1,1845,68,1,0 +2013,4,16,2,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1355,233,1,1652,254,1,0 +2013,5,15,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1510,-7,0,1741,-20,0,0 +2013,9,10,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-6,0,1056,-6,0,0 +2013,4,10,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,605,-3,0,710,4,0,0 +2013,7,16,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,66,1,1425,59,1,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1550,76,1,1705,61,1,0 +2013,7,2,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-2,0,1730,-13,0,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1221,2,0,1459,-9,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1759,-6,0,1924,-20,0,0 +2013,8,1,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,940,-4,0,1053,-1,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1910,-2,0,2050,28,1,0 +2013,9,21,6,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1306,3,0,1419,-5,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,745,-6,0,1041,-10,0,0 +2013,10,17,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1747,13,0,2119,36,1,0 +2013,5,30,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,950,-7,0,1324,-4,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1735,-1,0,2110,-21,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1935,160,1,2325,147,1,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2020,-5,0,2352,-10,0,0 +2013,6,10,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,-5,0,1635,-10,0,0 +2013,4,20,6,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1330,-2,0,1610,-17,0,0 +2013,5,20,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1735,47,1,2035,57,1,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,39,1,1510,33,1,0 +2013,8,5,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-10,0,1317,-11,0,0 +2013,10,3,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,-1,0,1700,1,0,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1548,30,1,1727,44,1,0 +2013,6,11,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1800,-5,0,2035,0,0,0 +2013,6,29,6,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,700,0,0,1215,-4,0,0 +2013,10,8,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-6,0,1015,-10,0,0 +2013,9,13,5,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1945,3,0,2040,-2,0,0 +2013,10,15,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,-6,0,1424,-22,0,0 +2013,8,28,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1024,-2,0,1419,-1,0,0 +2013,8,14,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,720,-5,0,830,-9,0,0 +2013,5,4,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1940,0,,2105,0,1,1 +2013,8,13,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-8,0,1045,12,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,730,-7,0,1004,-7,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,-1,0,1911,-6,0,0 +2013,9,24,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,279,1,1925,268,1,0 +2013,7,24,3,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1920,-7,0,2110,-29,0,0 +2013,6,25,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-4,0,921,-6,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,-6,0,59,-7,0,0 +2013,4,28,7,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1050,16,1,1115,10,0,0 +2013,8,12,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,939,-10,0,1028,-4,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,1810,1,0,0 +2013,6,22,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,7,0,1049,5,0,0 +2013,6,25,2,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1855,156,1,2035,176,1,0 +2013,10,30,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1840,14,0,2120,10,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-5,0,1556,-12,0,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,5,0,1225,-2,0,0 +2013,7,13,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,-3,0,1252,-2,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1755,49,1,2030,48,1,0 +2013,6,3,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-3,0,712,-2,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1054,-5,0,1830,-20,0,0 +2013,6,12,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,5,0,942,3,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1350,-2,0,1450,34,1,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,22,1,2200,28,1,0 +2013,5,28,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,-3,0,945,-8,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1020,22,1,1602,32,1,0 +2013,5,17,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-6,0,1245,7,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1555,25,1,1655,26,1,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1920,1,0,2040,-13,0,0 +2013,7,30,2,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,540,-7,0,728,-17,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1750,45,1,1929,21,1,0 +2013,5,3,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2129,-10,0,2220,-10,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1830,-6,0,2220,-10,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,4,0,2110,-17,0,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,-5,0,1155,10,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2010,4,0,2110,-2,0,0 +2013,9,3,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,745,-6,0,855,-9,0,0 +2013,8,4,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1254,38,1,1909,17,1,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1920,152,1,25,145,1,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1120,-6,0,1310,-15,0,0 +2013,5,10,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-7,0,1904,-8,0,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,840,-6,0,932,-9,0,0 +2013,10,20,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-9,0,857,-16,0,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1650,27,1,1815,19,1,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,545,-7,0,719,-20,0,0 +2013,8,14,3,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2152,-12,0,2258,-19,0,0 +2013,7,26,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,854,-10,0,1032,-12,0,0 +2013,7,25,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1304,-15,0,0 +2013,7,27,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,705,-8,0,1058,-11,0,0 +2013,8,14,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-2,0,2100,-5,0,0 +2013,6,23,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,831,-1,0,1459,11,0,0 +2013,7,3,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-5,0,733,-10,0,0 +2013,6,22,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-7,0,1005,-17,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-3,0,1300,12,0,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1550,29,1,1753,18,1,0 +2013,10,22,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,605,-3,0,720,0,0,0 +2013,4,8,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-7,0,1517,-6,0,0 +2013,7,10,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,7,0,1129,-12,0,0 +2013,6,28,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,550,0,,700,0,1,1 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,13,0,1315,10,0,0 +2013,6,22,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1055,-5,0,1220,-13,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1728,-2,0,2008,-27,0,0 +2013,5,24,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,550,-2,0,850,-18,0,0 +2013,10,3,4,OO,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1550,7,0,1728,25,1,0 +2013,5,12,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,0,0,1705,-8,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1630,-4,0,1830,-1,0,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,13,0,2005,0,0,0 +2013,6,28,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,615,-3,0,856,-8,0,0 +2013,7,15,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2335,7,0,722,19,1,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1031,14,0,1056,5,0,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,0,0,1223,10,0,0 +2013,6,17,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,-1,0,1319,-10,0,0 +2013,8,14,3,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,31,1,735,32,1,0 +2013,8,23,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-7,0,904,16,1,0 +2013,8,7,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,52,1,1237,31,1,0 +2013,5,21,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1535,7,0,1640,2,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,1,0,1144,-3,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1025,0,0,1310,-6,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-1,0,1424,20,1,0 +2013,6,7,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1645,15,1,1810,6,0,0 +2013,4,22,1,EV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1426,-7,0,1608,-7,0,0 +2013,6,6,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-1,0,1040,-7,0,0 +2013,5,13,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1609,3,0,1728,-9,0,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2257,23,1,713,17,1,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,-4,0,2347,1,0,0 +2013,4,17,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,2,0,1040,9,0,0 +2013,9,11,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1323,15,1,1549,39,1,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,-5,0,1705,6,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1745,-5,0,1911,6,0,0 +2013,8,28,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1135,-1,0,1230,-7,0,0 +2013,5,10,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1655,18,1,1820,8,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,600,-1,0,725,-5,0,0 +2013,5,5,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1405,21,1,2213,43,1,0 +2013,10,20,7,US,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,26,1,910,11,0,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-9,0,1159,0,0,0 +2013,9,9,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,815,-8,0,852,-7,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1925,3,0,2110,2,0,0 +2013,8,8,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1509,107,1,1830,130,1,0 +2013,5,29,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,955,77,1,1618,73,1,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1720,-1,0,2045,-26,0,0 +2013,4,8,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,1,0,1130,1,0,0 +2013,10,28,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1455,22,1,1615,11,0,0 +2013,5,31,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,652,3,0,1404,-6,0,0 +2013,8,16,5,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1100,-10,0,1425,-13,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2120,71,1,30,158,1,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,-7,0,2027,-11,0,0 +2013,5,18,6,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1301,21,1,1420,23,1,0 +2013,5,22,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,-4,0,835,-9,0,0 +2013,4,27,6,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1029,0,0,1613,-13,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,16,1,2231,33,1,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,7,0,2113,12,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1635,22,1,1915,24,1,0 +2013,8,28,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1010,-7,0,0 +2013,4,20,6,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,732,-8,0,931,-23,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1740,4,0,1840,4,0,0 +2013,10,2,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2317,-8,0,701,-15,0,0 +2013,6,22,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1845,3,0,2158,-30,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1042,1,0,1527,-12,0,0 +2013,7,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,745,-4,0,900,-28,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,41,1,1504,39,1,0 +2013,5,13,1,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1242,7,0,2036,0,0,0 +2013,7,7,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,715,-4,0,930,-7,0,0 +2013,9,2,1,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,800,0,0,1355,-20,0,0 +2013,8,3,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,-8,0,1405,-2,0,0 +2013,10,16,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,929,-9,0,1129,-1,0,0 +2013,6,20,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1540,-5,0,1937,-8,0,0 +2013,8,29,4,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2120,-4,0,514,-25,0,0 +2013,5,11,6,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,937,-5,0,1241,6,0,0 +2013,7,11,4,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1535,17,1,1650,-1,0,0 +2013,4,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1330,-5,0,1440,-8,0,0 +2013,8,20,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,-1,0,800,-2,0,0 +2013,7,25,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1224,-10,0,1339,-13,0,0 +2013,5,8,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1337,130,1,1502,159,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1459,-1,0,1538,-16,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,44,1,2120,51,1,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2210,-3,0,2359,-4,0,0 +2013,7,3,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-2,0,2112,-19,0,0 +2013,7,22,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2035,-7,0,2254,-5,0,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1620,13,0,1735,8,0,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1530,13,0,1825,21,1,0 +2013,4,24,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,0,0,2030,-2,0,0 +2013,5,19,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1740,-3,0,1805,-18,0,0 +2013,10,7,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1954,0,,2057,0,1,1 +2013,6,12,3,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1100,-1,0,1913,-19,0,0 +2013,10,23,3,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1425,-5,0,1606,-25,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1030,-2,0,1145,-23,0,0 +2013,7,15,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,945,-2,0,1105,-3,0,0 +2013,6,23,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1115,-3,0,1135,-24,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1305,6,0,1405,1,0,0 +2013,9,20,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-9,0,831,-6,0,0 +2013,6,7,5,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1215,1,0,1336,-5,0,0 +2013,8,28,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,640,-9,0,0 +2013,4,14,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-4,0,905,7,0,0 +2013,9,26,4,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1840,-10,0,2005,-5,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2056,-3,0,2218,-29,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,2,0,1010,8,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2105,-1,0,2320,2,0,0 +2013,5,11,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,930,18,1,1015,9,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1729,27,1,1857,35,1,0 +2013,7,31,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1220,38,1,1353,44,1,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,-3,0,1713,-28,0,0 +2013,8,11,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,705,-5,0,944,-1,0,0 +2013,8,29,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1705,0,0,1835,3,0,0 +2013,4,17,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1835,-3,0,2205,17,1,0 +2013,7,2,2,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,5,0,1914,10,0,0 +2013,7,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1850,5,0,2055,-13,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1330,-3,0,1440,14,0,0 +2013,5,1,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1524,3,0,0 +2013,9,24,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,615,-10,0,748,-9,0,0 +2013,6,9,7,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1656,-5,0,2005,-16,0,0 +2013,9,28,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1050,-1,0,1155,-7,0,0 +2013,5,12,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1010,0,0,1125,3,0,0 +2013,8,30,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2048,0,,2105,0,1,1 +2013,9,11,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2018,-1,0,2135,-8,0,0 +2013,5,25,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1357,-8,0,1709,1,0,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,9,0,1850,29,1,0 +2013,10,4,5,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,24,1,1706,12,0,0 +2013,5,17,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,705,10,0,1036,-3,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1025,-3,0,1214,-8,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,-2,0,1637,-14,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,247,1,2035,254,1,0 +2013,9,23,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,731,-9,0,920,-16,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2045,8,0,2304,-13,0,0 +2013,6,13,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-2,0,1611,-10,0,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1705,12,0,1805,6,0,0 +2013,9,23,1,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1425,-1,0,1615,13,0,0 +2013,4,23,2,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,-1,0,2047,0,0,0 +2013,8,8,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,3,0,1820,-15,0,0 +2013,9,5,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,905,-10,0,924,-10,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,855,-5,0,1300,-24,0,0 +2013,8,2,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-3,0,1955,-18,0,0 +2013,5,26,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-3,0,1605,14,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1855,16,1,2110,2,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2000,147,1,2315,146,1,0 +2013,8,24,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-8,0,1430,-17,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,-6,0,2330,9,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-4,0,1526,-11,0,0 +2013,6,29,6,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1255,23,1,1600,11,0,0 +2013,6,17,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-4,0,1215,-11,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,615,-5,0,740,-19,0,0 +2013,8,11,7,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-8,0,955,-25,0,0 +2013,6,27,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,107,1,2056,112,1,0 +2013,10,22,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1050,-1,0,1230,7,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,16,1,800,10,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1435,14,0,1640,2,0,0 +2013,5,14,2,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1348,1,0,1606,-9,0,0 +2013,7,9,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,104,1,1806,173,1,0 +2013,4,3,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,11,0,1345,10,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2005,6,0,2043,17,1,0 +2013,8,25,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-3,0,1210,13,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1400,-1,0,1505,1,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1634,18,1,2005,-4,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,835,-2,0,1000,32,1,0 +2013,9,7,6,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1715,-7,0,2025,-13,0,0 +2013,6,23,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,2,0,1858,3,0,0 +2013,10,9,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1615,-2,0,1905,9,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,8,0,2255,16,1,0 +2013,7,28,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,211,1,1915,211,1,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1818,0,0,2120,-19,0,0 +2013,7,16,2,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1045,-3,0,1130,-6,0,0 +2013,4,2,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1500,3,0,1615,-3,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1905,9,0,2120,4,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,830,-1,0,1054,-15,0,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,845,-4,0,950,-17,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,2,0,2341,-4,0,0 +2013,5,5,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,94,1,1135,100,1,0 +2013,9,26,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1850,-8,0,1925,-2,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-3,0,1256,-10,0,0 +2013,4,9,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,700,-4,0,1525,-15,0,0 +2013,6,28,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,925,-2,0,945,-14,0,0 +2013,8,21,3,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,755,-6,0,855,1,0,0 +2013,9,23,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,838,-2,0,1712,-23,0,0 +2013,10,28,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1405,-4,0,2059,-8,0,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-2,0,1050,-12,0,0 +2013,7,26,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-4,0,1357,-26,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1240,42,1,1325,36,1,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1530,-6,0,1849,-18,0,0 +2013,10,31,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,857,0,,1105,0,1,1 +2013,9,16,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,500,-8,0,754,-14,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1210,-5,0,1435,-14,0,0 +2013,8,12,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1755,-6,0,1935,-13,0,0 +2013,5,9,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1346,-7,0,1535,-14,0,0 +2013,10,1,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1115,-3,0,1235,-6,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1445,21,1,1610,17,1,0 +2013,6,2,7,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,1,0,815,25,1,0 +2013,4,22,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1008,-6,0,1102,-11,0,0 +2013,7,2,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1115,3,0,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,35,1,1025,26,1,0 +2013,10,29,2,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1956,102,1,2143,97,1,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,851,5,0,1659,1,0,0 +2013,10,30,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-6,0,1434,-18,0,0 +2013,5,25,6,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2100,7,0,2325,2,0,0 +2013,8,21,3,OO,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,0,0,1748,33,1,0 +2013,7,11,4,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2010,58,1,2240,55,1,0 +2013,7,19,5,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1550,16,1,1715,13,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-2,0,725,34,1,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-5,0,1033,-12,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1300,-2,0,1625,-16,0,0 +2013,4,10,3,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,1000,-6,0,1300,-12,0,0 +2013,8,17,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,-2,0,9,-7,0,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2240,6,0,124,8,0,0 +2013,6,13,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1424,20,1,1800,15,1,0 +2013,5,29,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,14,0,1956,11,0,0 +2013,8,30,5,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,-9,0,1600,-34,0,0 +2013,6,21,5,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,645,0,0,930,-7,0,0 +2013,6,29,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,2000,54,1,2205,41,1,0 +2013,9,23,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,917,-7,0,1209,-16,0,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,815,2,0,1706,-9,0,0 +2013,4,15,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,4,0,630,-32,0,0 +2013,8,23,5,OO,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1515,-10,0,1653,5,0,0 +2013,4,15,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1635,2,0,1805,-15,0,0 +2013,9,9,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1253,11,0,1804,1,0,0 +2013,9,4,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1015,-2,0,1120,-5,0,0 +2013,10,15,2,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,915,1,0,1035,-7,0,0 +2013,7,9,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-6,0,1345,39,1,0 +2013,5,2,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-3,0,2025,-2,0,0 +2013,5,23,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2157,14,0,2338,73,1,0 +2013,5,3,5,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1104,21,1,1414,8,0,0 +2013,7,3,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,27,1,2005,1,0,0 +2013,5,29,3,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1121,-4,0,1242,-17,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1330,7,0,1905,23,1,0 +2013,9,25,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,-7,0,2117,-10,0,0 +2013,8,10,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1516,-8,0,1635,-4,0,0 +2013,5,28,2,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,700,-5,0,955,-16,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,25,1,1932,23,1,0 +2013,10,8,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2020,-1,0,2145,-16,0,0 +2013,10,30,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1210,12,0,1405,17,1,0 +2013,7,14,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,916,-6,0,1035,-22,0,0 +2013,5,7,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1300,0,0,1645,5,0,0 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1040,11,0,1310,10,0,0 +2013,7,28,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-2,0,1303,-3,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1435,4,0,1540,-4,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,805,6,0,930,1,0,0 +2013,8,9,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1135,1,0,1255,6,0,0 +2013,7,31,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,68,1,2147,54,1,0 +2013,4,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1957,-5,0,2150,-19,0,0 +2013,9,3,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1335,0,0,1440,-10,0,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,830,5,0,1335,1,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1452,4,0,1758,-24,0,0 +2013,5,21,2,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,0,,1550,0,1,1 +2013,4,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1600,32,1,1709,23,1,0 +2013,7,24,3,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,710,47,1,830,39,1,0 +2013,5,22,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-1,0,835,2,0,0 +2013,4,10,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,1,0,1931,-12,0,0 +2013,9,17,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,750,21,1,1007,0,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1000,4,0,1119,2,0,0 +2013,8,2,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-1,0,1639,-10,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,72,1,1509,72,1,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,23,1,2254,23,1,0 +2013,7,5,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,0,,1610,0,1,1 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1339,-1,0,1816,-22,0,0 +2013,7,17,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-1,0,1400,-11,0,0 +2013,9,26,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,805,-7,0,910,-4,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,840,160,1,1030,153,1,0 +2013,4,28,7,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1140,5,0,2016,12,0,0 +2013,9,12,4,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1600,-2,0,1650,-7,0,0 +2013,8,24,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,750,1,0,922,-9,0,0 +2013,4,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1555,17,1,1650,6,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1120,-4,0,1245,-7,0,0 +2013,7,17,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,3,0,2008,145,1,0 +2013,4,13,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,-2,0,2034,2,0,0 +2013,6,22,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,800,-2,0,905,-8,0,0 +2013,7,8,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,-3,0,1759,3,0,0 +2013,10,5,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1005,0,0,1305,-10,0,0 +2013,8,21,3,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1525,19,1,1720,10,0,0 +2013,7,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,945,-1,0,1001,-6,0,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-1,0,743,-20,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1128,94,1,1258,100,1,0 +2013,4,8,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,915,-1,0,1209,-8,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,-4,0,923,38,1,0 +2013,6,15,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-3,0,1856,-4,0,0 +2013,10,29,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1820,10,0,2005,13,0,0 +2013,6,2,7,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1459,10,0,1626,6,0,0 +2013,5,22,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1720,4,0,1920,31,1,0 +2013,9,10,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-7,0,1554,-5,0,0 +2013,8,5,1,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1930,8,0,2246,-1,0,0 +2013,8,11,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,22,1,1635,11,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,16,1,2110,20,1,0 +2013,4,23,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-10,0,627,-12,0,0 +2013,6,9,7,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,846,-5,0,1036,0,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,-3,0,2330,-9,0,0 +2013,4,5,5,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1953,-7,0,2105,-4,0,0 +2013,8,17,6,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,740,-5,0,1005,1,0,0 +2013,7,20,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,0,0,2254,36,1,0 +2013,9,24,2,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,650,-5,0,917,-5,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2035,25,1,2240,21,1,0 +2013,8,1,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,78,1,2115,55,1,0 +2013,6,9,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1346,-7,0,1540,-3,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1442,-3,0,1610,-18,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2210,35,1,2315,30,1,0 +2013,9,17,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,1,0,1820,-4,0,0 +2013,4,22,1,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1310,84,1,1620,73,1,0 +2013,8,10,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1835,-3,0,2035,-14,0,0 +2013,9,3,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-6,0,932,9,0,0 +2013,7,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1514,1,0,1840,-6,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1920,-2,0,2035,-10,0,0 +2013,9,12,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,915,-7,0,1050,-14,0,0 +2013,6,10,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1435,63,1,1600,74,1,0 +2013,9,18,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2145,62,1,2355,88,1,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1010,-3,0,1155,-34,0,0 +2013,5,23,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,848,100,1,950,86,1,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1359,81,1,1558,71,1,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2105,33,1,2210,29,1,0 +2013,7,30,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,950,-1,0,1105,-6,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1412,170,1,1730,187,1,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,716,1,0,1034,-4,0,0 +2013,5,13,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1057,83,1,1411,68,1,0 +2013,4,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1532,-3,0,1741,-19,0,0 +2013,8,5,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2133,6,0,2205,12,0,0 +2013,4,20,6,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,805,-2,0,925,-5,0,0 +2013,5,7,2,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1402,-2,0,1455,3,0,0 +2013,4,8,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,105,1,1015,98,1,0 +2013,6,13,4,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,-4,0,745,-5,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1314,5,0,1439,-2,0,0 +2013,7,30,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2150,-5,0,100,-12,0,0 +2013,8,18,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,6,0,929,5,0,0 +2013,10,25,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,2,0,1740,12,0,0 +2013,4,29,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1622,-4,0,1746,-11,0,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1911,69,1,2047,87,1,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,-4,0,1440,-12,0,0 +2013,9,29,7,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,730,-1,0,1015,-10,0,0 +2013,8,18,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,745,66,1,845,58,1,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,2010,11,0,2238,0,0,0 +2013,4,1,1,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,730,0,0,1015,-15,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1643,10,0,1818,-5,0,0 +2013,8,20,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,-5,0,1455,-2,0,0 +2013,10,26,6,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,0,0,1745,-20,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,625,6,0,735,-1,0,0 +2013,5,29,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-9,0,730,-22,0,0 +2013,4,26,5,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,846,-10,0,1035,8,0,0 +2013,5,10,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,831,-20,0,0 +2013,10,19,6,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1355,-4,0,1603,1,0,0 +2013,6,7,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1125,-2,0,1305,-12,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2100,27,1,2232,21,1,0 +2013,7,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,635,-2,0,740,-4,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2020,7,0,2240,1,0,0 +2013,6,4,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,0,0,1210,3,0,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1457,63,1,1634,58,1,0 +2013,10,28,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,-1,0,1530,-6,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1610,-2,0,1735,-3,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,830,-3,0,1100,-7,0,0 +2013,5,13,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1037,-7,0,1835,19,1,0 +2013,4,12,5,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1515,-11,0,1745,3,0,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,754,6,0,1118,-1,0,0 +2013,8,24,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,810,-3,0,1010,-2,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1256,-3,0,1517,-22,0,0 +2013,5,4,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1451,-4,0,1806,-12,0,0 +2013,10,9,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-5,0,1650,-5,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,6,0,1110,21,1,0 +2013,9,14,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,30,1,1355,27,1,0 +2013,7,21,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1825,-4,0,2110,-8,0,0 +2013,9,7,6,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,800,-5,0,1036,-24,0,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2015,18,1,2120,12,0,0 +2013,5,13,1,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-6,0,540,-4,0,0 +2013,7,5,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,2,0,1510,-7,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2135,-11,0,516,-16,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2007,55,1,2121,61,1,0 +2013,6,23,7,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1022,-5,0,1353,7,0,0 +2013,6,30,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-4,0,1430,-13,0,0 +2013,5,14,2,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1121,-1,0,1249,-15,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,845,8,0,1035,-7,0,0 +2013,9,23,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-12,0,756,-14,0,0 +2013,10,20,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1739,-7,0,2131,-36,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-5,0,1115,-18,0,0 +2013,10,13,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1630,6,0,1700,-6,0,0 +2013,5,5,7,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,645,-7,0,946,-6,0,0 +2013,8,26,1,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1724,-3,0,2027,-15,0,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,116,1,1545,101,1,0 +2013,6,13,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,51,1,1419,115,1,0 +2013,4,6,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,615,-7,0,855,-25,0,0 +2013,5,4,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,650,-4,0,750,-4,0,0 +2013,10,13,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,26,1,2145,24,1,0 +2013,4,11,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-5,0,2030,1,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,-2,0,1458,-17,0,0 +2013,4,26,5,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,625,-6,0,900,-14,0,0 +2013,8,12,1,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1518,10,0,1628,-5,0,0 +2013,8,29,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,10,0,1507,9,0,0 +2013,4,2,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,615,-1,0,1434,-28,0,0 +2013,7,26,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-4,0,1110,15,1,0 +2013,4,4,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1533,7,0,1735,-10,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1550,-3,0,1810,-20,0,0 +2013,10,22,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-10,0,1925,-16,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1357,-3,0,1532,-23,0,0 +2013,6,12,3,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,-8,0,1810,4,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1830,63,1,2105,63,1,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,10,0,1915,-3,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-3,0,2159,0,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2115,32,1,2300,35,1,0 +2013,5,31,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-8,0,1026,-2,0,0 +2013,4,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1730,0,0,1753,-11,0,0 +2013,9,30,1,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,-4,0,1808,3,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,-1,0,1546,-16,0,0 +2013,8,23,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,-1,0,1655,-3,0,0 +2013,8,9,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,714,-9,0,934,-20,0,0 +2013,10,1,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-6,0,1452,-23,0,0 +2013,8,20,2,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,0,0,1425,-5,0,0 +2013,5,24,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1300,66,1,1525,49,1,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,0,0,1549,12,0,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,0,0,845,-8,0,0 +2013,7,30,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,35,1,1820,21,1,0 +2013,6,11,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-1,0,1501,8,0,0 +2013,8,17,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,-2,0,2115,-10,0,0 +2013,8,2,5,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1130,-6,0,1245,-15,0,0 +2013,7,16,2,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-6,0,1010,-9,0,0 +2013,7,28,7,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1235,17,1,1415,17,1,0 +2013,8,28,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,-3,0,742,-7,0,0 +2013,5,20,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-7,0,913,-49,0,0 +2013,5,30,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,810,-4,0,945,-19,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-2,0,2304,-2,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1621,-1,0,1910,-5,0,0 +2013,7,9,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1104,-7,0,1234,-17,0,0 +2013,10,12,6,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1500,-7,0,1710,-7,0,0 +2013,5,18,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,2,0,648,-3,0,0 +2013,10,24,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1650,4,0,2000,-13,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1450,8,0,1600,-1,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,4,0,1632,19,1,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1305,-3,0,1755,-13,0,0 +2013,4,30,2,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1735,14,0,1930,4,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,21,1,1825,17,1,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-2,0,1404,-9,0,0 +2013,8,20,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-9,0,837,-22,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,76,1,1911,120,1,0 +2013,6,25,2,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-7,0,1810,-22,0,0 +2013,6,13,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,650,-1,0,720,-15,0,0 +2013,5,30,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,725,0,0,840,-8,0,0 +2013,5,30,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-3,0,955,-8,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2005,49,1,2125,81,1,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,0,0,1050,13,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,2,0,1922,-7,0,0 +2013,6,25,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1955,41,1,2204,51,1,0 +2013,5,2,4,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1655,0,0,1800,-12,0,0 +2013,8,21,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,2,0,950,-6,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-8,0,1239,-18,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1505,-5,0,1715,-5,0,0 +2013,9,12,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1004,-9,0,1137,12,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,-1,0,2307,-14,0,0 +2013,10,10,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,832,-16,0,0 +2013,10,17,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,10,0,1240,9,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,0,0,1405,-5,0,0 +2013,8,2,5,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,-5,0,2150,5,0,0 +2013,4,27,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2040,-2,0,2350,-1,0,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1540,7,0,2215,8,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1035,7,0,1200,6,0,0 +2013,6,8,6,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,938,-5,0,1010,-19,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,2015,-13,0,2154,-9,0,0 +2013,7,13,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1410,-4,0,1543,4,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,3,0,1815,15,1,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,925,-1,0,1205,-2,0,0 +2013,8,7,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1045,56,1,1500,64,1,0 +2013,5,30,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,2005,-4,0,2150,-14,0,0 +2013,4,16,2,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-8,0,730,-20,0,0 +2013,8,7,3,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1417,6,0,1630,-6,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1230,-7,0,1330,-11,0,0 +2013,5,16,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,957,-12,0,1040,-17,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,-1,0,1946,-4,0,0 +2013,5,26,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-3,0,1747,-17,0,0 +2013,5,7,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-4,0,1605,-11,0,0 +2013,6,20,4,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1856,0,0,2103,-7,0,0 +2013,6,10,1,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1555,-5,0,2359,-18,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1030,-5,0,1155,-6,0,0 +2013,9,21,6,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1815,17,1,2025,13,0,0 +2013,7,9,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,2,0,1816,8,0,0 +2013,8,3,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1910,54,1,2043,51,1,0 +2013,9,29,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1032,-14,0,1115,-10,0,0 +2013,10,6,7,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,927,-14,0,0 +2013,6,17,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,655,-5,0,850,0,0,0 +2013,5,31,5,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,-8,0,1935,-17,0,0 +2013,4,11,4,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-6,0,2055,-40,0,0 +2013,5,11,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1800,6,0,1920,3,0,0 +2013,8,8,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,-1,0,2049,-4,0,0 +2013,4,12,5,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-1,0,1630,-2,0,0 +2013,9,24,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,1125,-7,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1257,-5,0,1621,-6,0,0 +2013,10,12,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1846,-8,0,2008,-22,0,0 +2013,4,3,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-7,0,849,5,0,0 +2013,5,6,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-4,0,1710,-15,0,0 +2013,4,24,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,629,21,1,825,9,0,0 +2013,5,8,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,755,-1,0,1032,-13,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,-3,0,1851,-10,0,0 +2013,7,10,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,530,-2,0,707,-8,0,0 +2013,9,1,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,3,0,1825,-5,0,0 +2013,4,21,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-6,0,1345,-20,0,0 +2013,8,10,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1205,-1,0,1325,14,0,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,-3,0,1030,-5,0,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-5,0,1120,-13,0,0 +2013,6,21,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2128,-6,0,2200,-7,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1425,40,1,1635,48,1,0 +2013,8,9,5,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1615,0,0,1805,97,1,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,-1,0,735,-6,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2206,-3,0,2326,-5,0,0 +2013,8,21,3,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-9,0,1800,-3,0,0 +2013,9,26,4,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1314,-8,0,1704,14,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-4,0,2246,-10,0,0 +2013,4,19,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,625,1,0,855,23,1,0 +2013,10,11,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,-4,0,2039,6,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1930,12,0,2246,21,1,0 +2013,7,5,5,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-3,0,715,-12,0,0 +2013,4,30,2,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1430,4,0,1610,-5,0,0 +2013,4,2,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,0,0,1155,-19,0,0 +2013,8,7,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,26,1,21,16,1,0 +2013,8,22,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-2,0,845,-1,0,0 +2013,5,2,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1536,145,1,1555,181,1,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,0,0,1955,21,1,0 +2013,5,18,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-7,0,1910,-16,0,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,832,-6,0,1032,-15,0,0 +2013,9,29,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1311,-1,0,1656,-3,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2039,-7,0,2256,-7,0,0 +2013,4,4,4,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,828,-2,0,1020,-30,0,0 +2013,4,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-5,0,1609,-13,0,0 +2013,5,30,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1525,18,1,1635,36,1,0 +2013,4,11,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1255,-20,0,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,800,-2,0,900,-11,0,0 +2013,5,31,5,EV,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1050,-4,0,1303,8,0,0 +2013,9,5,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2315,-10,0,705,-1,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-1,0,1125,-2,0,0 +2013,5,29,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-5,0,2010,0,0,0 +2013,7,11,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,4,0,2130,-4,0,0 +2013,6,6,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-1,0,1115,-23,0,0 +2013,8,31,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1155,0,0,1940,30,1,0 +2013,10,25,5,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,1820,0,0,2140,-23,0,0 +2013,7,7,7,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1810,1,0,2357,-5,0,0 +2013,10,7,1,F9,14122,Pittsburgh International,Pittsburgh,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1730,-12,0,1820,-16,0,0 +2013,7,23,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,540,-4,0,625,-9,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2050,16,1,2243,0,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-1,0,1214,-10,0,0 +2013,5,2,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,39,1,2240,-32,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2005,12,0,2255,5,0,0 +2013,8,26,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-6,0,2115,-14,0,0 +2013,4,17,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1350,-2,0,1515,-7,0,0 +2013,9,27,5,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,913,-9,0,1159,-10,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,-4,0,917,-15,0,0 +2013,5,5,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1715,-2,0,1848,-21,0,0 +2013,10,4,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1352,-3,0,1733,-2,0,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,0,0,1315,6,0,0 +2013,9,15,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,7,0,1556,17,1,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,820,-4,0,1055,-2,0,0 +2013,8,7,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2105,20,1,2230,34,1,0 +2013,5,16,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,632,-6,0,920,-14,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,22,1,1030,17,1,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,142,1,2335,137,1,0 +2013,8,2,5,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,-2,0,1927,-26,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1050,13,0,1520,6,0,0 +2013,8,22,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,17,1,620,10,0,0 +2013,10,10,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,11,0,1703,19,1,0 +2013,5,9,4,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-3,0,1258,-3,0,0 +2013,4,10,3,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,0,,2300,0,1,1 +2013,10,20,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,71,1,2105,63,1,0 +2013,5,14,2,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,720,3,0,845,-22,0,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,1,0,2235,-27,0,0 +2013,8,14,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,0,0,2350,-14,0,0 +2013,4,17,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,814,-4,0,929,-14,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1920,4,0,55,-4,0,0 +2013,8,3,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-5,0,1935,-14,0,0 +2013,5,19,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-2,0,1142,-11,0,0 +2013,9,10,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-3,0,1140,-8,0,0 +2013,9,8,7,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,730,-4,0,927,-5,0,0 +2013,4,24,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1046,-4,0,1233,-8,0,0 +2013,10,1,2,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,0,0,906,6,0,0 +2013,10,31,4,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1545,-1,0,1635,-18,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,6,0,1830,-4,0,0 +2013,8,28,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,181,1,1325,217,1,0 +2013,10,6,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,950,-9,0,1310,-20,0,0 +2013,9,13,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,7,0,1930,20,1,0 +2013,9,18,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,51,1,1525,45,1,0 +2013,10,30,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1617,-2,0,1757,-12,0,0 +2013,10,15,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,840,-2,0,1040,-4,0,0 +2013,6,16,7,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1752,-3,0,2000,-8,0,0 +2013,8,22,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,630,-10,0,800,-25,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2055,27,1,2322,15,1,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1540,69,1,1705,80,1,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2035,-5,0,2156,-16,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1955,3,0,2259,12,0,0 +2013,10,15,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1740,-4,0,1915,-9,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1915,-2,0,2249,-23,0,0 +2013,6,4,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1559,-13,0,0 +2013,4,29,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1738,-4,0,1818,-14,0,0 +2013,10,27,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1130,32,1,1349,40,1,0 +2013,9,5,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-8,0,1310,-17,0,0 +2013,8,17,6,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,12,0,1510,10,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1730,-3,0,2141,-18,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,135,1,1955,188,1,0 +2013,6,1,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1105,-1,0,1350,-22,0,0 +2013,7,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-3,0,1104,-3,0,0 +2013,4,27,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1730,-6,0,1902,-15,0,0 +2013,10,21,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2142,-13,0,2252,-27,0,0 +2013,7,27,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,730,-1,0,850,-4,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2050,-6,0,2256,-15,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,0,0,55,-1,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2115,16,1,2313,-4,0,0 +2013,8,24,6,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-3,0,1017,-8,0,0 +2013,8,7,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-11,0,2025,-9,0,0 +2013,6,2,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,831,-11,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,715,-1,0,840,-10,0,0 +2013,10,3,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,-3,0,1256,2,0,0 +2013,8,3,6,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1015,-2,0,1140,-11,0,0 +2013,7,4,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-1,0,1220,-15,0,0 +2013,9,25,3,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1755,20,1,1915,21,1,0 +2013,10,17,4,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-7,0,1115,-3,0,0 +2013,6,27,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1720,50,1,1905,94,1,0 +2013,8,11,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1958,111,1,2149,95,1,0 +2013,5,26,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1729,-3,0,2054,-24,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,6,0,2030,-3,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,6,0,2320,13,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1000,-2,0,1250,-7,0,0 +2013,10,2,3,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1829,34,1,2014,11,0,0 +2013,8,7,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,25,1,2005,31,1,0 +2013,9,17,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2048,-3,0,2105,17,1,0 +2013,9,13,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,6,0,2155,-4,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1520,104,1,1707,98,1,0 +2013,10,25,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1725,-8,0,1810,-17,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,0,0,1230,5,0,0 +2013,5,28,2,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,700,10,0,800,-10,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1758,0,0,1933,-24,0,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,15,1,1245,20,1,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2010,-5,0,2150,-12,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,10,0,1245,11,0,0 +2013,8,23,5,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2359,-6,0,556,-2,0,0 +2013,10,13,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,5,0,1929,-11,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,12,0,1705,3,0,0 +2013,9,16,1,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,920,2,0,1504,-6,0,0 +2013,10,31,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,959,33,1,1306,55,1,0 +2013,8,27,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,1,0,2020,-9,0,0 +2013,5,4,6,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-3,0,2213,-32,0,0 +2013,4,7,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,605,-5,0,721,-20,0,0 +2013,8,13,2,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-6,0,1229,-14,0,0 +2013,8,30,5,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,638,-3,0,850,-16,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,935,-3,0,1435,-19,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1240,-2,0,1340,25,1,0 +2013,8,14,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1055,168,1,1345,164,1,0 +2013,4,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,30,1,2100,34,1,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,8,0,1459,14,0,0 +2013,6,27,4,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1207,-7,0,1331,-21,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-3,0,949,-1,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,19,1,1320,15,1,0 +2013,10,29,2,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,-3,0,625,-17,0,0 +2013,9,23,1,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1949,-7,0,2025,-12,0,0 +2013,6,2,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,46,1,2159,56,1,0 +2013,4,6,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-2,0,1349,-13,0,0 +2013,10,1,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,1105,2,0,0 +2013,7,10,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,919,-7,0,0 +2013,7,11,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1420,5,0,1643,0,0,0 +2013,6,5,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,915,-7,0,935,-22,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,730,-1,0,935,-12,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2113,27,1,2235,15,1,0 +2013,4,26,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,-2,0,825,-1,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,2,0,1350,8,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-2,0,1817,-9,0,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,17,1,1038,53,1,0 +2013,5,8,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,1,0,1024,9,0,0 +2013,9,28,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,79,1,1201,71,1,0 +2013,10,8,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1905,2,0,2050,-17,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1640,-3,0,1900,-6,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1705,23,1,2314,1,0,0 +2013,9,9,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,737,0,0,931,-5,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,5,0,1430,14,0,0 +2013,5,23,4,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,0,,1846,0,1,1 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1435,-2,0,1555,-20,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2110,68,1,2300,42,1,0 +2013,6,14,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1612,12,0,1810,14,0,0 +2013,4,28,7,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1855,-1,0,2110,0,0,0 +2013,9,21,6,9E,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1240,71,1,1513,63,1,0 +2013,4,15,1,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1510,19,1,1800,24,1,0 +2013,9,1,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-11,0,848,2,0,0 +2013,7,26,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1541,0,0,1835,-24,0,0 +2013,9,30,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1722,93,1,1845,125,1,0 +2013,6,20,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1945,-4,0,2245,-17,0,0 +2013,7,21,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-6,0,910,-3,0,0 +2013,5,15,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1110,7,0,1215,1,0,0 +2013,8,3,6,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,0,0,1037,-14,0,0 +2013,6,26,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2015,38,1,2130,36,1,0 +2013,9,17,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,19,1,1900,19,1,0 +2013,7,24,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1302,-4,0,1430,-8,0,0 +2013,5,12,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1138,2,0,1334,4,0,0 +2013,6,12,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,31,1,2025,28,1,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,-3,0,1442,-5,0,0 +2013,6,24,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,905,-3,0,1015,-2,0,0 +2013,8,11,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,5,0,1941,-3,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1010,-4,0,1725,-9,0,0 +2013,9,16,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,855,4,0,1152,-23,0,0 +2013,5,16,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-8,0,1530,1,0,0 +2013,7,23,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1255,-9,0,1440,17,1,0 +2013,10,4,5,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-7,0,543,-14,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2130,16,1,2250,12,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1601,5,0,1925,26,1,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,805,-6,0,1044,-33,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1100,16,1,1220,16,1,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1930,-2,0,2100,-17,0,0 +2013,4,23,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1535,-7,0,1648,-19,0,0 +2013,7,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-1,0,830,-3,0,0 +2013,9,26,4,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,700,-3,0,925,-9,0,0 +2013,9,4,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1700,-2,0,1952,-22,0,0 +2013,8,10,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-6,0,1555,-5,0,0 +2013,7,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,5,0,1811,10,0,0 +2013,5,10,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-7,0,1021,-6,0,0 +2013,4,7,7,9E,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,13,0,1630,15,1,0 +2013,4,25,4,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-3,0,937,18,1,0 +2013,5,1,3,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,9,0,1950,-5,0,0 +2013,6,7,5,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1350,50,1,1657,45,1,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,-1,0,1855,-3,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,4,0,2250,6,0,0 +2013,7,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1940,-2,0,2056,1,0,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,625,-1,0,855,1,0,0 +2013,10,23,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1425,0,0,1630,-11,0,0 +2013,6,21,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1159,-3,0,1344,4,0,0 +2013,6,9,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1705,0,0,1805,-5,0,0 +2013,5,19,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-8,0,1040,-38,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1425,26,1,1845,28,1,0 +2013,10,21,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,7,0,2131,-11,0,0 +2013,5,1,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1359,-1,0,1642,2,0,0 +2013,7,18,4,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2350,7,0,800,16,1,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,7,0,1839,1,0,0 +2013,7,16,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1615,-2,0,1730,-5,0,0 +2013,7,31,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,555,-6,0,735,-14,0,0 +2013,5,9,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,38,1,1459,53,1,0 +2013,8,31,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-7,0,1835,-16,0,0 +2013,5,11,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,5,0,1400,8,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1415,0,0,1636,-8,0,0 +2013,8,18,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1347,-5,0,1644,-22,0,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-3,0,2356,1,0,0 +2013,7,22,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2235,10,0,609,8,0,0 +2013,8,8,4,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1233,10,0,1354,14,0,0 +2013,9,16,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,640,-2,0,910,24,1,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1955,12,0,2216,56,1,0 +2013,9,6,5,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1433,-7,0,2222,40,1,0 +2013,8,9,5,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1237,-5,0,1654,-20,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-2,0,1921,-19,0,0 +2013,6,12,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1637,-8,0,0 +2013,8,27,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1655,-8,0,1814,-6,0,0 +2013,6,2,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1955,210,1,2220,222,1,0 +2013,6,27,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,2024,-1,0,0 +2013,8,13,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-7,0,1015,4,0,0 +2013,8,9,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2023,95,1,2149,99,1,0 +2013,4,30,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1030,63,1,1210,44,1,0 +2013,6,25,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1455,14,0,1520,18,1,0 +2013,4,16,2,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1040,-2,0,1310,-2,0,0 +2013,6,25,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1901,29,1,113,7,0,0 +2013,7,2,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1415,-2,0,1459,-6,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,86,1,1310,83,1,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,910,-2,0,1052,-26,0,0 +2013,5,22,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-3,0,1337,0,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1850,24,1,2015,14,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2145,-1,0,2309,-17,0,0 +2013,7,11,4,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1435,125,1,1710,107,1,0 +2013,5,15,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,-2,0,1632,-9,0,0 +2013,10,27,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,740,-7,0,0 +2013,4,20,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-7,0,1344,2,0,0 +2013,7,22,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-8,0,719,-8,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,254,1,2305,240,1,0 +2013,5,31,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1149,0,,1237,0,1,1 +2013,9,20,5,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1357,3,0,1610,12,0,0 +2013,8,30,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,56,1,1747,37,1,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,21,1,1935,16,1,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,2,0,1350,2,0,0 +2013,8,27,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1850,-9,0,2056,-21,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1459,0,0,1725,-26,0,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,615,-3,0,1504,-3,0,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,705,-4,0,936,-16,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1755,4,0,1905,7,0,0 +2013,7,28,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-2,0,1418,-7,0,0 +2013,5,10,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,819,-3,0,1100,-24,0,0 +2013,10,10,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1655,7,0,1755,3,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2155,0,0,2310,-3,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-3,0,1230,-8,0,0 +2013,7,24,3,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,720,0,0,908,-9,0,0 +2013,9,1,7,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1232,-6,0,1426,16,1,0 +2013,7,13,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1516,21,1,1803,37,1,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,837,-15,0,0 +2013,7,21,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1757,67,1,1856,73,1,0 +2013,6,25,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,3,0,1028,6,0,0 +2013,10,17,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1628,2,0,2030,17,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,6,0,1000,-3,0,0 +2013,7,29,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1835,43,1,2140,55,1,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1150,6,0,1305,4,0,0 +2013,9,22,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2225,-7,0,614,-16,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1340,4,0,1738,-1,0,0 +2013,6,1,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1830,-12,0,1941,-14,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-6,0,1401,0,0,0 +2013,5,8,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,-4,0,1155,-15,0,0 +2013,10,23,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1810,2,0,1900,1,0,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1054,0,0,1922,-26,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,84,1,1935,86,1,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,87,1,1610,70,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,-7,0,1355,-14,0,0 +2013,8,6,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1110,-6,0,1245,-14,0,0 +2013,5,16,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2015,-7,0,2037,-23,0,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2227,10,0,59,18,1,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,69,1,2018,69,1,0 +2013,4,30,2,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2010,2,0,2105,-9,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1858,-4,0,2031,-11,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,1,0,1245,0,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1120,2,0,1655,-19,0,0 +2013,7,6,6,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1551,-7,0,1732,-20,0,0 +2013,10,16,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,0,0,1037,-17,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,47,1,1425,42,1,0 +2013,5,6,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,-2,0,828,2,0,0 +2013,9,13,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1150,-6,0,2009,-2,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-1,0,1520,-3,0,0 +2013,7,22,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1020,-6,0,1206,-9,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1235,9,0,1410,0,0,0 +2013,10,6,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2305,-5,0,635,-15,0,0 +2013,10,1,2,EV,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1645,-2,0,1838,-19,0,0 +2013,9,20,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1420,4,0,1530,-4,0,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2005,-5,0,2110,-18,0,0 +2013,8,23,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-4,0,1751,-3,0,0 +2013,8,14,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1250,2,0,1355,14,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2035,-3,0,2145,-9,0,0 +2013,5,19,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1203,-8,0,1314,0,0,0 +2013,5,16,4,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,-1,0,812,-6,0,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1420,0,0,1530,-8,0,0 +2013,6,11,2,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-7,0,1601,-9,0,0 +2013,7,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-2,0,725,-12,0,0 +2013,9,24,2,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1331,-7,0,1724,-4,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1230,30,1,1435,19,1,0 +2013,6,26,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,845,48,1,1025,28,1,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,22,1,2350,18,1,0 +2013,6,24,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1553,71,1,1709,97,1,0 +2013,8,20,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1120,0,0,1205,-12,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,3,0,1800,16,1,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-3,0,1355,-24,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1319,-4,0,1519,-15,0,0 +2013,7,26,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1034,-3,0,1200,5,0,0 +2013,9,15,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1635,-10,0,1756,-15,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1655,11,0,2025,21,1,0 +2013,7,11,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,615,0,0,700,-6,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,645,1,0,950,19,1,0 +2013,10,6,7,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,955,-5,0,1459,-16,0,0 +2013,7,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2145,-5,0,2350,-13,0,0 +2013,5,5,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-5,0,2058,-12,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1103,-8,0,1241,-10,0,0 +2013,6,5,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,16,1,900,-1,0,0 +2013,4,23,2,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,745,7,0,911,-9,0,0 +2013,7,25,4,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1800,0,0,1920,-7,0,0 +2013,10,2,3,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1435,-4,0,2255,-9,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,-1,0,1235,-10,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1339,-5,0,1534,1,0,0 +2013,6,15,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,1,0,1407,-7,0,0 +2013,5,9,4,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1821,-2,0,1931,-19,0,0 +2013,6,19,3,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1230,-2,0,1520,32,1,0 +2013,10,4,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-3,0,2021,-5,0,0 +2013,9,9,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-2,0,12,-32,0,0 +2013,7,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1225,-1,0,1315,-7,0,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-3,0,935,-19,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,-4,0,1350,-8,0,0 +2013,7,20,6,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,333,1,1020,334,1,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1615,175,1,30,162,1,0 +2013,7,8,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,11,0,2040,-9,0,0 +2013,7,20,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1355,-3,0,1425,-10,0,0 +2013,9,27,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,-8,0,1414,-8,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1746,11,0,2001,28,1,0 +2013,5,4,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-5,0,1635,-14,0,0 +2013,6,19,3,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,710,-5,0,1305,-11,0,0 +2013,5,19,7,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,-2,0,928,-6,0,0 +2013,7,14,7,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2000,-3,0,2310,-47,0,0 +2013,5,28,2,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-3,0,2200,-20,0,0 +2013,5,5,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,830,0,,1205,0,1,1 +2013,9,24,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1111,-9,0,1446,-26,0,0 +2013,6,21,5,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1627,6,0,1904,-5,0,0 +2013,9,30,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,-5,0,1347,-5,0,0 +2013,10,20,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,605,-2,0,905,-18,0,0 +2013,10,6,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-7,0,810,1,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,830,70,1,1230,71,1,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1115,6,0,1250,-4,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1310,0,0,1610,4,0,0 +2013,4,22,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,-2,0,1915,29,1,0 +2013,9,5,4,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,-2,0,1800,-9,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,630,9,0,750,2,0,0 +2013,7,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,2025,-3,0,2345,-6,0,0 +2013,7,23,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,634,-7,0,819,-7,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1918,19,1,2033,8,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1345,-1,0,1700,-18,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,815,5,0,1055,-37,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1725,16,1,1840,23,1,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2007,77,1,2259,55,1,0 +2013,5,25,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-2,0,1645,-14,0,0 +2013,7,14,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-7,0,1414,22,1,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1350,-3,0,1705,-4,0,0 +2013,4,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,715,4,0,1050,-5,0,0 +2013,8,21,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,1,0,1800,9,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-8,0,1240,-11,0,0 +2013,5,3,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,650,-1,0,920,17,1,0 +2013,10,21,1,OO,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1604,3,0,1714,10,0,0 +2013,4,19,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,822,-1,0,1100,18,1,0 +2013,9,27,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-4,0,750,0,0,0 +2013,7,29,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,-3,0,1941,-8,0,0 +2013,9,17,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,32,1,2035,26,1,0 +2013,4,6,6,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1545,-4,0,1750,-1,0,0 +2013,7,18,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,9,0,2003,12,0,0 +2013,4,15,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,3,0,1950,-3,0,0 +2013,5,19,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2155,18,1,50,9,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-11,0,1003,-22,0,0 +2013,7,8,1,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-3,0,1905,-10,0,0 +2013,5,18,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,756,-7,0,819,-18,0,0 +2013,8,30,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,-2,0,1200,-7,0,0 +2013,6,9,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1119,19,1,1651,8,0,0 +2013,5,18,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1025,1,0,1155,-7,0,0 +2013,4,18,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,4,0,950,40,1,0 +2013,7,24,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-5,0,834,-8,0,0 +2013,4,26,5,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-4,0,1011,-19,0,0 +2013,8,20,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,29,1,2105,-3,0,0 +2013,10,24,4,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,11,0,1738,-7,0,0 +2013,10,16,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-11,0,1001,0,0,0 +2013,10,14,1,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1024,-11,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1245,-2,0,1837,-4,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1820,36,1,2112,33,1,0 +2013,5,17,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-3,0,1455,-5,0,0 +2013,8,3,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1225,58,1,1353,51,1,0 +2013,9,5,4,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1355,15,1,1643,11,0,0 +2013,10,14,1,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,38,1,1825,27,1,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-3,0,1330,28,1,0 +2013,6,19,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1733,80,1,2105,79,1,0 +2013,9,20,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1310,35,1,1535,48,1,0 +2013,6,8,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1710,-7,0,1830,-14,0,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,725,5,0,830,-3,0,0 +2013,10,24,4,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,858,-4,0,1132,-11,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1055,-3,0,1420,-8,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1425,-1,0,1552,-13,0,0 +2013,9,5,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2015,-4,0,2140,0,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1640,71,1,1850,56,1,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,849,1,0,1700,-26,0,0 +2013,5,27,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-7,0,1055,-18,0,0 +2013,10,28,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1436,-8,0,1559,-28,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1000,1,0,1220,-22,0,0 +2013,10,27,7,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,938,-3,0,1143,-19,0,0 +2013,10,31,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-5,0,1124,-21,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,810,12,0,931,3,0,0 +2013,4,16,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,755,39,1,816,40,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1205,0,0,1355,-23,0,0 +2013,6,5,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,0,0,943,-14,0,0 +2013,4,9,2,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-9,0,1901,4,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1305,-1,0,1430,-2,0,0 +2013,5,11,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-7,0,1433,-8,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1805,94,1,2015,103,1,0 +2013,4,10,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1301,21,1,1624,-11,0,0 +2013,5,9,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,190,1,2215,183,1,0 +2013,8,6,2,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,46,1,1225,32,1,0 +2013,5,14,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-1,0,1749,-5,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,615,-4,0,715,-7,0,0 +2013,9,27,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1830,21,1,2030,21,1,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1020,2,0,1115,-6,0,0 +2013,6,22,6,9E,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1255,-6,0,1439,-13,0,0 +2013,5,19,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-4,0,1717,12,0,0 +2013,5,12,7,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1541,-2,0,1740,-31,0,0 +2013,6,10,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1847,3,0,2151,-1,0,0 +2013,6,22,6,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,930,0,0,1650,5,0,0 +2013,6,2,7,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1002,-2,0,1454,-10,0,0 +2013,4,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2251,15,1,15,16,1,0 +2013,7,25,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1512,110,1,1830,125,1,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2240,5,0,37,28,1,0 +2013,8,30,5,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,-9,0,1758,3,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1835,39,1,2215,14,0,0 +2013,9,27,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,810,12,0,910,0,0,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1220,7,0,1543,37,1,0 +2013,8,8,4,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,2,0,1848,-16,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1918,3,0,2355,-27,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,30,1,2121,29,1,0 +2013,8,2,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,8,0,940,4,0,0 +2013,7,31,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,3,0,1348,12,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,725,-4,0,1050,0,0,0 +2013,7,20,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,36,1,1240,32,1,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1910,11,0,2035,19,1,0 +2013,8,15,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1545,0,,1655,0,1,1 +2013,8,3,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1205,18,1,1359,20,1,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1929,36,1,2103,26,1,0 +2013,7,20,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,-8,0,2110,4,0,0 +2013,9,11,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1215,-1,0,1335,-11,0,0 +2013,9,4,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,620,0,0,730,2,0,0 +2013,6,26,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,107,1,1350,107,1,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1445,21,1,1915,23,1,0 +2013,7,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,-1,0,1155,-8,0,0 +2013,10,31,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,739,-7,0,759,10,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1635,23,1,2045,19,1,0 +2013,4,12,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1058,-6,0,1228,-11,0,0 +2013,8,22,4,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1441,-8,0,1631,-12,0,0 +2013,5,24,5,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,12,0,1905,15,1,0 +2013,8,16,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1344,3,0,1530,0,0,0 +2013,9,1,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2040,-1,0,2230,-7,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2125,2,0,2244,-9,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1910,-7,0,2105,-17,0,0 +2013,10,26,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1510,35,1,1800,26,1,0 +2013,10,16,3,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1710,-3,0,1916,-10,0,0 +2013,4,19,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,1,0,1930,17,1,0 +2013,7,6,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,1,0,1530,-8,0,0 +2013,9,30,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1850,-5,0,2125,-10,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1220,5,0,1315,4,0,0 +2013,7,27,6,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1929,78,1,2153,89,1,0 +2013,5,29,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1509,-3,0,1629,-7,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,-1,0,1145,-6,0,0 +2013,7,31,3,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,825,-6,0,1130,-19,0,0 +2013,5,20,1,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1100,-1,0,1320,9,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,0,0,1152,-3,0,0 +2013,9,25,3,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,1055,9,0,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,1211,-6,0,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,3,0,2059,-3,0,0 +2013,9,29,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1511,-5,0,1600,-14,0,0 +2013,6,20,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2020,-7,0,514,-11,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,20,1,1053,1,0,0 +2013,7,11,4,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1957,28,1,2130,37,1,0 +2013,6,6,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-6,0,757,-6,0,0 +2013,4,14,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1420,-3,0,1623,-1,0,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,2,0,1048,-2,0,0 +2013,4,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1505,-6,0,1720,-9,0,0 +2013,4,27,6,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-1,0,1955,-14,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-4,0,1326,-10,0,0 +2013,6,17,1,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1121,-2,0,1305,8,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,-2,0,1730,-10,0,0 +2013,4,23,2,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2105,-11,0,510,-27,0,0 +2013,5,3,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,31,1,2250,43,1,0 +2013,4,19,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,0,0,1155,14,0,0 +2013,8,12,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1025,0,0,1320,0,0,0 +2013,10,15,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1731,24,1,1915,31,1,0 +2013,5,14,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1205,40,1,1500,45,1,0 +2013,8,3,6,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1550,5,0,1715,-8,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1930,121,1,2245,107,1,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,5,0,25,-14,0,0 +2013,6,13,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-4,0,1915,-14,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1153,-2,0,1306,-21,0,0 +2013,8,29,4,EV,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-6,0,1004,-10,0,0 +2013,6,6,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1300,-5,0,2146,9,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1700,-3,0,1911,-5,0,0 +2013,5,18,6,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1115,-1,0,1330,-11,0,0 +2013,4,19,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,24,1,841,25,1,0 +2013,4,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1835,112,1,2138,107,1,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1645,-1,0,2200,-5,0,0 +2013,5,9,4,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,35,1,832,49,1,0 +2013,10,8,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1952,-13,0,2055,-13,0,0 +2013,4,15,1,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1738,-3,0,1926,-17,0,0 +2013,6,7,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1438,50,1,1559,35,1,0 +2013,5,25,6,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1515,-1,0,1700,-4,0,0 +2013,6,27,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-4,0,2103,17,1,0 +2013,5,14,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,955,0,0,1130,-7,0,0 +2013,10,17,4,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1830,21,1,1940,9,0,0 +2013,10,11,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1416,69,1,1700,82,1,0 +2013,7,31,3,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,-3,0,1041,6,0,0 +2013,10,22,2,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,720,0,0,820,0,0,0 +2013,5,28,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1805,8,0,2019,-7,0,0 +2013,8,29,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1500,-7,0,1600,-13,0,0 +2013,6,24,1,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1523,4,0,1826,11,0,0 +2013,10,25,5,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1445,-2,0,1727,-12,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1240,-6,0,1446,-21,0,0 +2013,4,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-6,0,1610,-16,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,72,1,1731,82,1,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1615,8,0,1707,22,1,0 +2013,6,15,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,3,0,1446,-11,0,0 +2013,7,6,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-3,0,1750,22,1,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,5,0,2245,-8,0,0 +2013,10,20,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1745,12,0,1915,15,1,0 +2013,10,28,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,841,-7,0,1011,-9,0,0 +2013,6,14,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1855,23,1,2100,29,1,0 +2013,9,5,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1930,1,0,2049,15,1,0 +2013,9,3,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,-2,0,1523,-7,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1244,-2,0,1422,-4,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,910,-3,0,1015,-6,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,613,-4,0,1129,6,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1050,-2,0,1140,-8,0,0 +2013,4,1,1,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,-3,0,1630,-6,0,0 +2013,6,15,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,930,5,0,1035,5,0,0 +2013,8,19,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,16,1,1302,37,1,0 +2013,7,25,4,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,2,0,1025,-2,0,0 +2013,10,30,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-2,0,1455,-5,0,0 +2013,4,22,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-5,0,1909,5,0,0 +2013,9,12,4,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,715,-5,0,825,-16,0,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1235,4,0,1715,-5,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1658,-1,0,2129,4,0,0 +2013,8,23,5,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,710,220,1,855,213,1,0 +2013,9,14,6,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,0,0,2145,-12,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1755,0,0,2143,-8,0,0 +2013,8,16,5,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,35,1,1655,27,1,0 +2013,4,16,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-6,0,1943,-25,0,0 +2013,9,19,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1930,14,0,2125,9,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1435,-1,0,1607,-33,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1755,26,1,2040,10,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-2,0,1529,-5,0,0 +2013,4,20,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-2,0,1605,4,0,0 +2013,8,9,5,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1810,8,0,1925,2,0,0 +2013,5,25,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1015,0,0,1110,-13,0,0 +2013,6,4,2,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,830,26,1,957,16,1,0 +2013,9,19,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,-3,0,2130,-2,0,0 +2013,9,15,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1545,18,1,1645,8,0,0 +2013,8,18,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1100,-2,0,1210,2,0,0 +2013,4,17,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-4,0,843,-10,0,0 +2013,4,19,5,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,0,0,1018,-18,0,0 +2013,6,24,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1128,-6,0,1216,-1,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,-4,0,2357,-9,0,0 +2013,4,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1155,0,0,1325,-7,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,2146,0,0,2305,13,0,0 +2013,4,19,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,920,-7,0,940,-18,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2100,174,1,2227,161,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1054,-1,0,1131,1,0,0 +2013,10,22,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1253,0,,1420,0,1,1 +2013,4,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,6,0,750,6,0,0 +2013,10,16,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,952,-1,0,1118,-6,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,0,0,1430,2,0,0 +2013,6,21,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1656,-8,0,1918,-12,0,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,35,1,2305,30,1,0 +2013,8,8,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1717,143,1,1847,152,1,0 +2013,7,17,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-5,0,1225,-18,0,0 +2013,8,14,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1901,-2,0,1951,-9,0,0 +2013,4,23,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1910,3,0,2045,-4,0,0 +2013,5,8,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-9,0,851,54,1,0 +2013,9,3,2,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1100,1,0,1329,-26,0,0 +2013,6,9,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-1,0,840,-8,0,0 +2013,6,1,6,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-2,0,1611,-16,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,-7,0,922,-12,0,0 +2013,7,29,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1320,-8,0,1524,-3,0,0 +2013,9,24,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1341,-3,0,1420,-2,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,12,0,2320,11,0,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1425,5,0,1625,-9,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1130,12,0,1338,-4,0,0 +2013,9,26,4,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1924,-7,0,2031,-13,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,15,1,1745,27,1,0 +2013,9,5,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1345,-6,0,1440,-17,0,0 +2013,8,13,2,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,619,-8,0,803,-22,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1000,0,0,1151,28,1,0 +2013,10,20,7,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1145,10,0,1407,16,1,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1257,6,0,1621,-3,0,0 +2013,8,17,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-6,0,534,-4,0,0 +2013,7,4,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,818,21,1,1100,-4,0,0 +2013,6,30,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1702,147,1,1807,141,1,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1805,24,1,1950,25,1,0 +2013,4,26,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,745,-14,0,911,-16,0,0 +2013,8,7,3,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1033,-3,0,1259,0,0,0 +2013,5,28,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1425,-4,0,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1950,16,1,2258,-5,0,0 +2013,6,24,1,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,2,0,1034,10,0,0 +2013,6,20,4,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,0,0,2247,-8,0,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,825,0,0,1055,-2,0,0 +2013,10,29,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,800,-3,0,1121,-20,0,0 +2013,10,20,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1355,29,1,1436,15,1,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,1,0,1520,-6,0,0 +2013,8,29,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1500,-18,0,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,835,6,0,1035,2,0,0 +2013,10,5,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1005,-4,0,1255,5,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1340,0,0,1840,125,1,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2000,-9,0,2100,-14,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2108,76,1,2354,55,1,0 +2013,6,26,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-6,0,1155,-9,0,0 +2013,10,2,3,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,7,0,1800,-1,0,0 +2013,6,2,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,939,-10,0,1104,-13,0,0 +2013,6,27,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1010,1,0,1125,-4,0,0 +2013,5,10,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,1140,0,0,1524,0,0,0 +2013,9,15,7,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-7,0,1822,-14,0,0 +2013,5,25,6,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,901,-4,0,1035,-9,0,0 +2013,8,5,1,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,850,-1,0,1135,3,0,0 +2013,7,30,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,3,0,1235,-9,0,0 +2013,7,26,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,17,1,1338,13,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2140,-2,0,516,2,0,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1123,1,0,1710,-29,0,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1001,-3,0,1250,-6,0,0 +2013,8,30,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1454,-8,0,1710,-27,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2105,4,0,2225,-8,0,0 +2013,9,12,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-8,0,2150,-5,0,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,-8,0,816,-22,0,0 +2013,5,13,1,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1328,7,0,1819,6,0,0 +2013,6,20,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1115,24,1,1243,21,1,0 +2013,4,7,7,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,-8,0,1720,-12,0,0 +2013,6,3,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,-2,0,1050,-6,0,0 +2013,7,1,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,3,0,1610,28,1,0 +2013,10,17,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1107,8,0,1235,-5,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1805,51,1,1942,48,1,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1655,25,1,1755,29,1,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-4,0,2204,19,1,0 +2013,5,26,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-6,0,1732,-16,0,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,833,-7,0,1139,-16,0,0 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,841,75,1,1054,78,1,0 +2013,5,2,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1347,299,1,1543,294,1,0 +2013,4,21,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1327,-4,0,1522,4,0,0 +2013,7,23,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,935,0,0,955,-9,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,930,10,0,1650,-4,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,20,1,750,8,0,0 +2013,7,30,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-4,0,2130,-2,0,0 +2013,8,12,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,710,0,0,830,-11,0,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,710,-18,0,805,8,0,0 +2013,6,17,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-2,0,1601,3,0,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2205,64,1,13,56,1,0 +2013,5,31,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1540,40,1,1735,99,1,0 +2013,9,10,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-8,0,1517,-6,0,0 +2013,4,21,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1725,-3,0,1851,-5,0,0 +2013,7,24,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-9,0,750,-8,0,0 +2013,8,8,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,-7,0,928,9,0,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,825,0,0,935,-14,0,0 +2013,7,14,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1700,12,0,1756,4,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1415,0,0,1636,5,0,0 +2013,4,7,7,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1221,4,0,1400,-7,0,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,50,1,1740,43,1,0 +2013,4,16,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,825,-5,0,1051,-17,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,52,1,2140,41,1,0 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1855,27,1,2125,66,1,0 +2013,4,16,2,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1855,-12,0,2139,-27,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2135,32,1,2320,46,1,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,925,-2,0,1425,-14,0,0 +2013,6,25,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,0,0,1019,6,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,0,0,1713,-12,0,0 +2013,4,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1305,-1,0,1420,-5,0,0 +2013,5,15,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,907,1,0,0 +2013,10,27,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2013,7,0,2025,11,0,0 +2013,5,17,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-3,0,1814,-6,0,0 +2013,5,19,7,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1708,-9,0,1840,-12,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,-6,0,729,-14,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,15,1,1727,3,0,0 +2013,6,27,4,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1925,122,1,2048,114,1,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-3,0,1020,-6,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,-4,0,2235,-19,0,0 +2013,4,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-5,0,1629,-14,0,0 +2013,5,9,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1441,11,0,1648,25,1,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,0,0,1500,-26,0,0 +2013,9,14,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1310,-2,0,1600,-15,0,0 +2013,9,7,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,823,2,0,1045,20,1,0 +2013,9,3,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,742,-5,0,900,-3,0,0 +2013,7,28,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1525,-2,0,1759,-18,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2302,0,0,12,-7,0,0 +2013,6,27,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1511,20,1,1722,17,1,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,630,-3,0,745,-7,0,0 +2013,5,2,4,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1035,-9,0,1400,-18,0,0 +2013,4,4,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1945,5,0,2237,-13,0,0 +2013,5,22,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,830,4,0,1110,1,0,0 +2013,5,17,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-4,0,650,-2,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,1,0,852,8,0,0 +2013,4,22,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,2,0,1830,1,0,0 +2013,8,30,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,6,0,1430,0,0,0 +2013,10,4,5,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1327,-3,0,1621,-2,0,0 +2013,7,22,1,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2230,12,0,120,-4,0,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1505,16,1,2210,16,1,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-5,0,945,-5,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,91,1,1359,66,1,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1403,-1,0,1539,-3,0,0 +2013,4,6,6,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,1104,94,1,1325,90,1,0 +2013,6,20,4,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2135,14,0,8,16,1,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1838,77,1,2033,93,1,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1248,-5,0,2118,-34,0,0 +2013,9,10,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,950,73,1,1315,76,1,0 +2013,5,15,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-2,0,1539,-16,0,0 +2013,6,10,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-3,0,712,0,0,0 +2013,7,12,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,0,,810,0,1,1 +2013,7,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,-3,0,1344,-18,0,0 +2013,9,30,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-6,0,1438,-3,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,28,1,1255,23,1,0 +2013,10,2,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,545,-10,0,700,-10,0,0 +2013,4,5,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,5,0,835,17,1,0 +2013,9,11,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2010,122,1,2159,126,1,0 +2013,5,15,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1855,23,1,2020,25,1,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1245,-1,0,1450,-6,0,0 +2013,7,20,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,115,1,1951,144,1,0 +2013,10,16,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1055,0,0,1320,-10,0,0 +2013,4,20,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1352,-14,0,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,910,-5,0,1505,-15,0,0 +2013,9,30,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,832,-5,0,919,0,0,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,805,16,1,945,11,0,0 +2013,9,6,5,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-7,0,2014,-15,0,0 +2013,9,6,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-7,0,1346,-15,0,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1112,34,1,1421,22,1,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,-6,0,1606,-13,0,0 +2013,6,21,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-4,0,1530,-8,0,0 +2013,10,25,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1111,-3,0,1210,-8,0,0 +2013,8,21,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1510,11,0,1805,10,0,0 +2013,4,9,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1400,144,1,1714,133,1,0 +2013,4,16,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,0,0,1221,-23,0,0 +2013,5,9,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1720,59,1,1839,124,1,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,-1,0,2125,-7,0,0 +2013,8,6,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,612,-3,0,1201,-9,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,-4,0,1459,53,1,0 +2013,7,19,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-7,0,1912,-13,0,0 +2013,10,12,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1527,-4,0,1657,-3,0,0 +2013,8,3,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1325,34,1,1650,16,1,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1640,-3,0,2002,3,0,0 +2013,8,28,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,1117,8,0,0 +2013,9,30,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1400,6,0,1506,3,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,21,1,1530,18,1,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1733,-3,0,1938,-4,0,0 +2013,10,16,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,942,-6,0,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1520,-3,0,2025,-7,0,0 +2013,8,7,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1038,-9,0,1129,-3,0,0 +2013,5,22,3,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,18,1,1230,7,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,111,1,1024,98,1,0 +2013,5,9,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,645,-9,0,847,-18,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,0,0,1750,-21,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,0,0,1550,-19,0,0 +2013,8,1,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,725,8,0,1130,-8,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1246,0,0,1556,-7,0,0 +2013,6,20,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1622,-7,0,1800,-18,0,0 +2013,7,27,6,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,705,-5,0,945,-17,0,0 +2013,8,20,2,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,708,-2,0,1033,10,0,0 +2013,8,4,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,-9,0,1755,-40,0,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1645,11,0,1815,2,0,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,48,1,2255,57,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,-3,0,2250,-6,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1325,-2,0,1445,0,0,0 +2013,9,2,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-6,0,1110,-25,0,0 +2013,10,17,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,-2,0,940,15,1,0 +2013,9,18,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-8,0,649,-18,0,0 +2013,7,25,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,19,1,1800,10,0,0 +2013,4,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,3,0,2255,-6,0,0 +2013,8,5,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-8,0,1500,-14,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,730,-3,0,836,-10,0,0 +2013,7,2,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,800,1,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1050,-6,0,1223,-16,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,41,1,1809,35,1,0 +2013,4,26,5,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,920,-5,0,1200,-3,0,0 +2013,9,28,6,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1344,3,0,1552,2,0,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1340,37,1,1639,33,1,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,29,1,2303,14,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,-1,0,2200,41,1,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,23,-10,0,559,-13,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,46,1,1040,74,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1944,15,1,2039,7,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,11,0,1740,-2,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2257,-1,0,53,-2,0,0 +2013,10,24,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-1,0,805,-2,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,6,0,1043,4,0,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1805,-1,0,2035,-1,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,-1,0,1125,-33,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,13,0,1530,8,0,0 +2013,10,8,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1140,-17,0,1226,-8,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1255,18,1,1600,10,0,0 +2013,4,18,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,918,-6,0,1056,43,1,0 +2013,9,18,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-2,0,2140,-1,0,0 +2013,5,4,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1730,-7,0,2026,-15,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,552,12,0,804,6,0,0 +2013,7,31,3,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1748,-4,0,2114,-4,0,0 +2013,5,11,6,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1143,8,0,1520,-3,0,0 +2013,8,10,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1808,-14,0,0 +2013,7,16,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,-9,0,2220,8,0,0 +2013,9,28,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1750,91,1,1855,75,1,0 +2013,10,6,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2320,-8,0,655,-5,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1210,33,1,1325,30,1,0 +2013,6,5,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,120,-5,0,515,-17,0,0 +2013,9,23,1,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,530,-2,0,655,-23,0,0 +2013,6,25,2,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,43,1,1914,27,1,0 +2013,8,6,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2105,2,0,2340,-8,0,0 +2013,7,1,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-2,0,1657,-1,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1544,52,1,1708,31,1,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2125,16,1,2255,0,0,0 +2013,10,28,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1710,-6,0,2130,4,0,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,-3,0,1710,-10,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1113,-5,0,1155,-4,0,0 +2013,9,25,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1515,4,0,1600,-1,0,0 +2013,7,11,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1947,16,1,2135,14,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1056,21,1,1300,6,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,84,1,1052,100,1,0 +2013,10,7,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1617,3,0,1755,-5,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1002,-7,0,1131,-16,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1025,8,0,1550,11,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,29,1,1850,41,1,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1731,-1,0,2044,-10,0,0 +2013,8,17,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-7,0,1759,-5,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1359,-4,0,1523,-2,0,0 +2013,5,14,2,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,1,0,928,-3,0,0 +2013,6,12,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1306,-4,0,2135,-26,0,0 +2013,10,2,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1215,-2,0,1505,1,0,0 +2013,5,19,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,718,-5,0,1004,-13,0,0 +2013,10,11,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1845,8,0,2131,8,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,152,1,2320,263,1,0 +2013,4,5,5,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,632,-1,0,745,-2,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,518,-5,0,800,-23,0,0 +2013,9,24,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,627,-1,0,723,-9,0,0 +2013,8,26,1,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-2,0,705,-14,0,0 +2013,10,6,7,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1514,-5,0,1847,-24,0,0 +2013,8,23,5,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,635,-2,0,745,-13,0,0 +2013,4,6,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,710,13,0,1005,5,0,0 +2013,7,8,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2210,11,0,2300,1,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,-3,0,2345,-2,0,0 +2013,8,14,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,0,0,955,-6,0,0 +2013,4,9,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,-1,0,1040,-8,0,0 +2013,6,24,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1050,-2,0,1235,-14,0,0 +2013,8,25,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1755,-3,0,1925,2,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,7,0,2105,-9,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,725,-7,0,1146,-14,0,0 +2013,4,19,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2055,37,1,455,10,0,0 +2013,8,1,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1105,-6,0,1225,68,1,0 +2013,10,30,3,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,-10,0,1250,-44,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1901,13,0,2206,-9,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,-4,0,2205,-25,0,0 +2013,7,9,2,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,0,0,1655,6,0,0 +2013,8,28,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,835,-11,0,926,-18,0,0 +2013,5,23,4,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1740,15,1,1935,28,1,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1751,12,0,1919,0,0,0 +2013,4,12,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1638,13,0,1820,20,1,0 +2013,7,1,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-8,0,850,-16,0,0 +2013,6,14,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-9,0,1340,-4,0,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,20,1,1440,6,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,-4,0,1850,6,0,0 +2013,7,29,1,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,0,0,1645,-18,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,714,53,1,924,50,1,0 +2013,6,27,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,0,0,2049,-1,0,0 +2013,8,8,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1445,17,1,1500,13,0,0 +2013,10,2,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1337,-6,0,1455,-20,0,0 +2013,9,13,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2016,-5,0,2135,-6,0,0 +2013,8,30,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1715,-9,0,1837,8,0,0 +2013,6,24,1,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1330,-3,0,1434,14,0,0 +2013,9,6,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,1,0,2015,2,0,0 +2013,10,16,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1120,-7,0,1309,-28,0,0 +2013,9,8,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1135,6,0,1330,16,1,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1010,1,0,1420,-5,0,0 +2013,7,29,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1331,4,0,1620,-12,0,0 +2013,9,25,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1115,-5,0,1205,-7,0,0 +2013,6,28,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-3,0,1224,-9,0,0 +2013,4,23,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-4,0,717,36,1,0 +2013,4,14,7,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,605,-7,0,743,-2,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,849,-8,0,1138,-25,0,0 +2013,6,4,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1839,-1,0,0 +2013,8,8,4,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,38,1,1853,110,1,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,901,3,0,1033,-2,0,0 +2013,8,24,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,856,-5,0,1006,-9,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2030,6,0,2259,18,1,0 +2013,4,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-9,0,920,11,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1305,139,1,1438,134,1,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1346,-7,0,1513,-9,0,0 +2013,6,10,1,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,40,1,1850,43,1,0 +2013,4,25,4,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1243,0,0,2025,-16,0,0 +2013,6,13,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,644,-10,0,825,70,1,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1720,31,1,1925,37,1,0 +2013,6,21,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1105,-10,0,1842,-1,0,0 +2013,6,15,6,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,2,0,2232,-24,0,0 +2013,5,9,4,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1508,-4,0,1641,-16,0,0 +2013,6,21,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-11,0,2210,-31,0,0 +2013,7,14,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1115,-1,0,1305,10,0,0 +2013,6,27,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,635,-3,0,920,2,0,0 +2013,9,12,4,EV,12953,LaGuardia,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,840,-6,0,1022,-19,0,0 +2013,8,6,2,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2015,-8,0,2300,-14,0,0 +2013,8,22,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1201,53,1,1215,99,1,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,36,1,1635,36,1,0 +2013,6,22,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,715,-3,0,1045,-13,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1950,7,0,2002,19,1,0 +2013,9,5,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,900,-10,0,1645,-14,0,0 +2013,10,10,4,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1735,115,1,1953,129,1,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1835,-3,0,1945,0,0,0 +2013,5,21,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,735,-3,0,820,-6,0,0 +2013,9,2,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,611,-7,0,1427,-12,0,0 +2013,10,2,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1004,-7,0,1141,-9,0,0 +2013,9,15,7,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1655,-4,0,1845,-22,0,0 +2013,4,24,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,1055,-4,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,720,-3,0,845,-4,0,0 +2013,4,5,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,27,1,1628,21,1,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2020,16,1,2225,9,0,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1108,103,1,1156,94,1,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,2,0,1311,22,1,0 +2013,10,30,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,859,1,0,1007,3,0,0 +2013,5,18,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,624,-2,0,737,-11,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,730,-2,0,830,-8,0,0 +2013,8,26,1,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2100,-5,0,521,6,0,0 +2013,4,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1520,-3,0,1615,-13,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2040,9,0,2305,1,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1915,27,1,2040,13,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,705,-3,0,810,-8,0,0 +2013,8,16,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,-1,0,2105,13,0,0 +2013,5,29,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,-6,0,2018,12,0,0 +2013,5,13,1,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,714,-8,0,1040,2,0,0 +2013,4,10,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,24,1,1349,8,0,0 +2013,5,4,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,850,-4,0,1653,-10,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1900,40,1,2040,45,1,0 +2013,4,25,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,12,0,1230,1,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1805,10,0,2035,-15,0,0 +2013,6,8,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,1,0,848,4,0,0 +2013,7,31,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-4,0,1332,3,0,0 +2013,9,15,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1445,8,0,1708,31,1,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,107,1,2155,105,1,0 +2013,9,8,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,950,4,0,1110,7,0,0 +2013,7,2,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,-1,0,2011,0,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2210,-3,0,2346,-13,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,820,12,0,1035,-2,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2155,-4,0,2347,-3,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,825,0,0,1055,4,0,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,9,0,1715,-7,0,0 +2013,8,10,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1145,-2,0,1255,-15,0,0 +2013,5,23,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,-1,0,1353,10,0,0 +2013,5,18,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1030,-2,0,1300,-26,0,0 +2013,5,8,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,627,13,0,807,6,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1945,-5,0,2044,-11,0,0 +2013,4,28,7,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1842,-1,0,2220,-18,0,0 +2013,7,28,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1135,-2,0,1420,-12,0,0 +2013,8,26,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2156,-7,0,2354,-27,0,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2117,8,0,2320,-5,0,0 +2013,5,31,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-4,0,1250,-31,0,0 +2013,8,7,3,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2212,3,0,610,-5,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,0,0,1850,-8,0,0 +2013,9,10,2,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,3,0,1743,-5,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1230,1,0,1655,-11,0,0 +2013,9,29,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1245,-2,0,1345,-14,0,0 +2013,8,4,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,4,0,2140,19,1,0 +2013,9,22,7,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,35,1,1900,28,1,0 +2013,8,13,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,130,1,1559,127,1,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1610,15,1,1715,11,0,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1155,6,0,1715,-1,0,0 +2013,7,26,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,30,1,1600,32,1,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,846,-2,0,1119,-4,0,0 +2013,6,8,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1145,-4,0,1450,17,1,0 +2013,8,4,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,3,0,2145,-22,0,0 +2013,7,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1502,107,1,1608,104,1,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1040,-2,0,1100,6,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1123,-6,0,1143,-6,0,0 +2013,7,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,3,0,1520,-1,0,0 +2013,7,28,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,757,1,0,852,-12,0,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,17,1,2117,12,0,0 +2013,6,22,6,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2059,-6,0,2226,-12,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1744,-2,0,2159,-27,0,0 +2013,6,24,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1210,-6,0,1318,-12,0,0 +2013,10,16,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,6,0,1407,-4,0,0 +2013,5,13,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,632,-4,0,758,-13,0,0 +2013,7,22,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-4,0,913,-2,0,0 +2013,10,20,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,720,-5,0,919,-24,0,0 +2013,4,15,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1615,15,1,1932,33,1,0 +2013,9,27,5,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1327,14,0,1359,24,1,0 +2013,8,7,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1538,-10,0,1610,43,1,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,108,1,1247,103,1,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,645,2,0,811,-20,0,0 +2013,8,18,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-3,0,1545,15,1,0 +2013,10,14,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1327,22,1,2127,-4,0,0 +2013,4,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,710,-1,0,745,-11,0,0 +2013,8,9,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,15,1,1540,1,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,805,12,0,925,14,0,0 +2013,10,2,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,639,-6,0,835,0,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,14,0,2219,21,1,0 +2013,10,29,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2345,-7,0,601,-29,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,815,-2,0,935,-12,0,0 +2013,8,10,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1830,55,1,1936,47,1,0 +2013,6,21,5,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1415,0,,1611,0,1,1 +2013,10,5,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1055,-5,0,1120,-9,0,0 +2013,10,7,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,85,1,1730,85,1,0 +2013,7,30,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,-6,0,1630,-33,0,0 +2013,9,25,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1710,9,0,2315,-16,0,0 +2013,9,6,5,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1959,-2,0,2117,-6,0,0 +2013,4,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,800,-5,0,1549,-22,0,0 +2013,5,7,2,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,1834,-5,0,1900,-10,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,838,75,1,1431,59,1,0 +2013,6,10,1,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-8,0,939,-28,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1005,70,1,1232,57,1,0 +2013,5,27,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1405,-1,0,1530,-10,0,0 +2013,7,28,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,0,0,1325,2,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,853,-5,0,1138,-22,0,0 +2013,7,24,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1900,-6,0,2005,-25,0,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1440,0,0,1640,11,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1850,33,1,2330,23,1,0 +2013,4,25,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,351,1,745,342,1,0 +2013,9,24,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,-10,0,2140,-4,0,0 +2013,7,23,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,6,0,1730,12,0,0 +2013,9,1,7,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,0,,1126,0,1,1 +2013,4,3,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-1,0,2145,-18,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1059,-2,0,1331,-2,0,0 +2013,4,5,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,619,-5,0,752,12,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2227,61,1,59,56,1,0 +2013,8,24,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,12,0,1350,8,0,0 +2013,6,30,7,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,45,1,1659,48,1,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1245,-3,0,1525,-18,0,0 +2013,8,22,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1543,-6,0,2359,-11,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,-1,0,920,12,0,0 +2013,4,15,1,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,8,0,1700,0,0,0 +2013,8,30,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,852,12,0,0 +2013,4,21,7,9E,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-3,0,2327,-13,0,0 +2013,10,12,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,-2,0,1314,-2,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1400,-2,0,1648,20,1,0 +2013,4,8,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1125,128,1,1400,116,1,0 +2013,5,22,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,759,-6,0,1615,-4,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1231,-5,0,1427,-19,0,0 +2013,5,2,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-4,0,1903,3,0,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-5,0,2156,-6,0,0 +2013,7,16,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,0,,1555,0,1,1 +2013,9,30,1,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-3,0,1205,10,0,0 +2013,6,11,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1251,-10,0,2109,-19,0,0 +2013,9,11,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,9,0,1416,4,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1930,4,0,5,3,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1040,4,0,1259,-15,0,0 +2013,6,9,7,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1716,248,1,1815,256,1,0 +2013,9,4,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1544,-1,0,2359,-8,0,0 +2013,4,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-4,0,704,-16,0,0 +2013,10,3,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-1,0,1110,-12,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,805,13,0,1040,27,1,0 +2013,4,16,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1151,8,0,1804,15,1,0 +2013,7,3,3,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,-10,0,1755,-3,0,0 +2013,9,23,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-2,0,754,-13,0,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1355,22,1,1950,9,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1010,16,1,1034,8,0,0 +2013,5,30,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,-5,0,930,-9,0,0 +2013,10,7,1,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1910,-4,0,2020,-4,0,0 +2013,4,13,6,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1306,-2,0,1423,-7,0,0 +2013,8,18,7,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1000,-4,0,1347,-24,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1046,-1,0,1249,-16,0,0 +2013,5,27,1,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1845,0,0,2130,-1,0,0 +2013,7,28,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,-4,0,1335,-5,0,0 +2013,6,20,4,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,7,0,2350,3,0,0 +2013,7,16,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2132,9,0,527,10,0,0 +2013,6,21,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1058,-4,0,1208,-13,0,0 +2013,5,16,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1625,0,0,1904,4,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-4,0,1931,-17,0,0 +2013,8,21,3,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-10,0,1026,-4,0,0 +2013,5,16,4,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1345,-6,0,1530,-16,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,88,1,1820,51,1,0 +2013,10,25,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1555,-3,0,1705,-9,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1920,-2,0,2108,-21,0,0 +2013,6,4,2,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1620,-3,0,1748,-21,0,0 +2013,7,12,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-3,0,1251,-26,0,0 +2013,8,13,2,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,43,1,1440,42,1,0 +2013,9,2,1,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1706,54,1,1844,40,1,0 +2013,5,7,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1125,0,0,1336,2,0,0 +2013,8,8,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,740,-2,0,840,-3,0,0 +2013,4,23,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,93,1,1803,77,1,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,915,-4,0,1050,-16,0,0 +2013,7,5,5,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,-5,0,535,-10,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,4,0,1648,-4,0,0 +2013,6,17,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2135,40,1,2250,31,1,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,-5,0,1750,2,0,0 +2013,7,12,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,-12,0,2209,-17,0,0 +2013,5,6,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,20,1,2130,8,0,0 +2013,4,11,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,175,1,1024,160,1,0 +2013,8,27,2,9E,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-1,0,811,-4,0,0 +2013,4,5,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-8,0,1305,-14,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,925,-1,0,1440,-10,0,0 +2013,5,9,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1911,0,,1925,0,1,1 +2013,10,31,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1431,41,1,1700,29,1,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-7,0,1124,-11,0,0 +2013,9,1,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,47,1,1704,57,1,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2110,25,1,2310,28,1,0 +2013,5,26,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-4,0,1655,-23,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2000,-2,0,2130,5,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,956,-5,0,0 +2013,5,14,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1659,26,1,1843,24,1,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,601,0,0,1201,-18,0,0 +2013,7,20,6,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1640,1,0,1915,-6,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2020,-3,0,2235,7,0,0 +2013,5,26,7,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,601,-6,0,710,-11,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1236,-1,0,1338,-13,0,0 +2013,6,21,5,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,925,-7,0,1750,4,0,0 +2013,7,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1601,-4,0,1824,-20,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,13,0,2224,6,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,-1,0,935,-3,0,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,35,1,2240,35,1,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,-3,0,855,-19,0,0 +2013,7,19,5,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,800,26,1,1108,33,1,0 +2013,8,27,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,700,-5,0,958,-44,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1625,-2,0,2030,24,1,0 +2013,9,3,2,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,9,0,1614,-6,0,0 +2013,7,26,5,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-6,0,1454,-3,0,0 +2013,10,6,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,1,0,1610,-1,0,0 +2013,4,24,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,0,0,1345,-10,0,0 +2013,10,25,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,5,0,1610,-12,0,0 +2013,6,24,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,2,0,825,0,0,0 +2013,5,3,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-2,0,1202,1,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,0,0,1155,-5,0,0 +2013,7,17,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-5,0,1400,-16,0,0 +2013,6,25,2,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,-6,0,1800,33,1,0 +2013,6,27,4,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1235,-2,0,1639,-7,0,0 +2013,10,28,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,-3,0,1522,-11,0,0 +2013,5,2,4,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1705,12,0,2055,25,1,0 +2013,9,19,4,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1110,9,0,1655,13,0,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1622,36,1,54,30,1,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1109,114,1,1203,112,1,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1610,-2,0,1715,-4,0,0 +2013,4,9,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2055,33,1,2200,36,1,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-3,0,1004,-11,0,0 +2013,9,24,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,622,-10,0,1207,-12,0,0 +2013,5,27,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1957,-10,0,2255,-16,0,0 +2013,10,25,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-6,0,635,-7,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1945,-3,0,2135,0,0,0 +2013,5,12,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,955,-2,0,1115,-16,0,0 +2013,5,31,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,605,-4,0,735,-14,0,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,35,1,1717,28,1,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-2,0,2059,-4,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-4,0,208,-22,0,0 +2013,9,26,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-12,0,1012,2,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,928,-1,0,1114,0,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1709,30,1,1812,46,1,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1005,6,0,1438,-2,0,0 +2013,5,24,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,924,-2,0,1050,-8,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,755,4,0,1055,-10,0,0 +2013,9,2,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-7,0,945,-19,0,0 +2013,6,6,4,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,6,0,1454,-1,0,0 +2013,5,7,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,7,0,1435,-13,0,0 +2013,5,30,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1113,2,0,1234,23,1,0 +2013,5,5,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1740,1,0,2022,-20,0,0 +2013,4,25,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,4,0,935,11,0,0 +2013,10,9,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,935,-5,0,952,-12,0,0 +2013,5,22,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,2050,136,1,2245,118,1,0 +2013,10,10,4,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2015,-10,0,2145,15,1,0 +2013,6,11,2,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,708,182,1,901,162,1,0 +2013,9,3,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-7,0,1256,-9,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1615,19,1,30,-3,0,0 +2013,5,29,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,645,-10,0,808,-9,0,0 +2013,8,9,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,610,0,0,710,-5,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,930,94,1,1125,108,1,0 +2013,5,11,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-7,0,1523,-4,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1449,-3,0,1720,-9,0,0 +2013,7,14,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,618,-4,0,1445,4,0,0 +2013,5,2,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1552,-3,0,2359,-4,0,0 +2013,10,10,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1925,-12,0,2030,-3,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1405,-2,0,1510,-9,0,0 +2013,9,18,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,625,-7,0,800,-19,0,0 +2013,4,12,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,-2,0,1320,-12,0,0 +2013,8,25,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,7,0,1910,-12,0,0 +2013,9,12,4,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1850,33,1,2154,26,1,0 +2013,9,4,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1715,-1,0,1825,-3,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1425,29,1,1610,18,1,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,845,5,0,1248,-10,0,0 +2013,8,26,1,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,2,0,1154,1,0,0 +2013,9,20,5,YV,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1724,41,1,1907,19,1,0 +2013,4,4,4,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,6,0,1655,-9,0,0 +2013,8,17,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1100,0,0,1205,-5,0,0 +2013,9,9,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-11,0,955,-30,0,0 +2013,8,31,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,620,-3,0,717,-9,0,0 +2013,4,3,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1717,-4,0,1908,5,0,0 +2013,6,16,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-8,0,1618,-12,0,0 +2013,6,20,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1855,1,0,2015,-1,0,0 +2013,7,11,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2115,44,1,131,3,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,835,-7,0,935,-11,0,0 +2013,5,6,1,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-5,0,1145,-24,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1739,-5,0,2005,-23,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1120,1,0,1330,-19,0,0 +2013,10,18,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,5,0,1709,10,0,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-3,0,2250,-3,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1320,1,0,1440,-4,0,0 +2013,10,21,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,2,0,1905,-11,0,0 +2013,4,12,5,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1125,74,1,1355,68,1,0 +2013,5,8,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,859,-2,0,1008,9,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2030,19,1,2345,19,1,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,10,0,1725,4,0,0 +2013,9,28,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,720,-1,0,919,7,0,0 +2013,6,28,5,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,730,6,0,840,-4,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,2,0,2110,-18,0,0 +2013,4,24,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,853,19,1,1030,10,0,0 +2013,10,28,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1400,13,0,1635,2,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1930,-7,0,2107,-29,0,0 +2013,7,10,3,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1935,-1,0,2319,6,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1737,17,1,1903,20,1,0 +2013,7,22,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,0,0,1515,-9,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,745,-5,0,950,-9,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1620,-6,0,1808,-2,0,0 +2013,7,20,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,6,0,1250,8,0,0 +2013,5,21,2,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1755,8,0,2049,22,1,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1141,2,0,1620,-20,0,0 +2013,5,22,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,720,15,1,1020,13,0,0 +2013,7,21,7,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2050,38,1,2230,29,1,0 +2013,7,28,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,1,0,1058,-5,0,0 +2013,8,29,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1242,-9,0,1345,-13,0,0 +2013,8,22,4,EV,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1848,-7,0,2049,-20,0,0 +2013,10,14,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1250,-6,0,1505,3,0,0 +2013,5,29,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,940,8,0,1339,-5,0,0 +2013,9,21,6,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1150,70,1,1340,78,1,0 +2013,4,29,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,-6,0,1553,-11,0,0 +2013,10,16,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1130,-4,0,1500,11,0,0 +2013,7,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1543,0,0,1658,-13,0,0 +2013,10,2,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1443,-15,0,1615,-23,0,0 +2013,4,3,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,21,1,2110,13,0,0 +2013,6,27,4,OO,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,15,1,1651,22,1,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1825,0,0,1940,-18,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,12,0,1028,-1,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,835,-1,0,1030,-2,0,0 +2013,8,23,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,30,1,2037,41,1,0 +2013,5,19,7,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1130,3,0,2010,-2,0,0 +2013,9,14,6,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,906,-4,0,1033,-12,0,0 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1637,10,0,1958,3,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-4,0,1710,-7,0,0 +2013,7,15,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,835,-3,0,940,-21,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,0,0,1102,-11,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1516,39,1,1716,26,1,0 +2013,4,9,2,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1535,12,0,1715,-17,0,0 +2013,10,18,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-6,0,918,11,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2000,31,1,2220,31,1,0 +2013,6,15,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1903,-7,0,1925,-21,0,0 +2013,9,19,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-10,0,929,-8,0,0 +2013,9,7,6,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1410,-1,0,1530,-20,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,850,-2,0,932,-9,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1800,13,0,2005,-2,0,0 +2013,9,8,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,15,1,1350,1,0,0 +2013,5,20,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-14,0,807,3,0,0 +2013,7,24,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,630,-2,0,827,-13,0,0 +2013,7,8,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1512,164,1,1830,172,1,0 +2013,7,18,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1900,21,1,2025,15,1,0 +2013,8,16,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,1,0,1255,-8,0,0 +2013,8,6,2,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1821,-5,0,1920,-10,0,0 +2013,9,10,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,1212,-3,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1725,9,0,1845,4,0,0 +2013,5,7,2,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1856,-2,0,2051,8,0,0 +2013,6,23,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1636,4,0,1805,4,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-5,0,1346,-7,0,0 +2013,4,1,1,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1929,-2,0,2247,-24,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2257,27,1,2302,15,1,0 +2013,8,13,2,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1400,10,0,1535,-12,0,0 +2013,8,27,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,-5,0,1440,-5,0,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1423,1,0,1709,-11,0,0 +2013,7,26,5,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1120,-7,0,1417,-16,0,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1700,-2,0,1911,17,1,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,800,9,0,925,0,0,0 +2013,10,23,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1225,-10,0,1555,-20,0,0 +2013,10,27,7,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2145,25,1,522,-6,0,0 +2013,4,14,7,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1600,14,0,1810,5,0,0 +2013,10,2,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,-2,0,1720,-18,0,0 +2013,7,29,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,8,0,853,16,1,0 +2013,8,18,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-5,0,1335,-13,0,0 +2013,7,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,-1,0,1935,0,0,0 +2013,6,18,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1815,9,0,1954,27,1,0 +2013,5,7,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,6,0,1735,-17,0,0 +2013,4,5,5,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1430,14,0,1809,7,0,0 +2013,4,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-5,0,704,0,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1634,46,1,2244,32,1,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1240,18,1,1340,15,1,0 +2013,6,7,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1951,-3,0,2101,-8,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,700,-3,0,1110,18,1,0 +2013,4,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1314,8,0,1447,4,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-2,0,1544,2,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2155,74,1,2335,60,1,0 +2013,10,21,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,-2,0,1335,-16,0,0 +2013,6,15,6,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,39,1,1355,26,1,0 +2013,10,12,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,710,-8,0,945,-11,0,0 +2013,4,8,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1950,-5,0,2120,-7,0,0 +2013,10,3,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-4,0,1420,-13,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,605,-4,0,858,-23,0,0 +2013,10,23,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,901,-7,0,0 +2013,8,10,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,-7,0,1925,-21,0,0 +2013,7,26,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1935,-6,0,2000,0,0,0 +2013,8,15,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,38,1,2100,32,1,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,4,0,1330,6,0,0 +2013,6,12,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,715,-6,0,921,-22,0,0 +2013,4,13,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1155,-1,0,1335,-14,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,254,1,2020,229,1,0 +2013,9,10,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-1,0,2030,-2,0,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,-2,0,1845,9,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,-4,0,1911,-8,0,0 +2013,7,30,2,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2015,118,1,2353,94,1,0 +2013,4,3,3,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1820,9,0,1955,0,0,0 +2013,4,9,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-6,0,1206,-17,0,0 +2013,8,4,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,-12,0,1220,-12,0,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-5,0,922,-1,0,0 +2013,6,16,7,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,3,0,1035,-5,0,0 +2013,10,19,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1725,-1,0,1928,1,0,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,845,0,0,1050,-3,0,0 +2013,8,8,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,941,-4,0,1225,7,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,-4,0,816,6,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-2,0,1800,-12,0,0 +2013,4,1,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1950,-4,0,2104,-1,0,0 +2013,6,19,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1745,-2,0,1904,4,0,0 +2013,5,7,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,8,0,2250,1,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,-1,0,1034,-9,0,0 +2013,7,29,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1100,0,0,1524,11,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2105,-3,0,10,-6,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1623,-2,0,1728,1,0,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1035,-3,0,1154,-18,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,35,1,1525,25,1,0 +2013,10,5,6,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1645,6,0,2015,2,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,-3,0,1620,-22,0,0 +2013,6,6,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,650,5,0,825,-5,0,0 +2013,8,7,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1108,44,1,1321,46,1,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1823,6,0,2055,4,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1822,9,0,2032,4,0,0 +2013,6,18,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1235,35,1,1620,31,1,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,-3,0,1947,-35,0,0 +2013,10,26,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,2,0,1722,0,0,0 +2013,7,12,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,918,-2,0,1130,-7,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1944,1,0,2158,-8,0,0 +2013,10,3,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,40,1,1535,33,1,0 +2013,9,16,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,606,-1,0,730,14,0,0 +2013,10,24,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1625,39,1,1730,54,1,0 +2013,10,18,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1055,1,0,1921,-11,0,0 +2013,9,29,7,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,908,-7,0,1048,-10,0,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1649,-5,0,1819,-9,0,0 +2013,10,28,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1008,8,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,735,12,0,1155,13,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1529,-2,0,1715,-10,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1540,50,1,1630,42,1,0 +2013,4,16,2,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,920,0,0,1050,-12,0,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1230,4,0,1320,8,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1335,11,0,1520,8,0,0 +2013,4,16,2,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,703,-7,0,836,-15,0,0 +2013,7,31,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,19,1,1707,15,1,0 +2013,4,1,1,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1350,-1,0,1545,5,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1739,0,0,1850,-12,0,0 +2013,5,20,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1845,2,0,1944,0,0,0 +2013,10,16,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1455,-7,0,1759,-18,0,0 +2013,5,10,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1800,-5,0,0 +2013,6,18,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,29,1,1740,28,1,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,5,0,1850,4,0,0 +2013,8,29,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1425,-11,0,1536,-6,0,0 +2013,8,12,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-1,0,1918,4,0,0 +2013,6,6,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-9,0,2050,-15,0,0 +2013,6,16,7,EV,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,0,0,1004,3,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2135,23,1,2240,27,1,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2211,30,1,2318,20,1,0 +2013,7,29,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,26,1,1018,25,1,0 +2013,6,17,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1800,-3,0,2015,-11,0,0 +2013,6,9,7,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1135,5,0,1623,0,0,0 +2013,7,17,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-6,0,1035,-3,0,0 +2013,6,17,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,-8,0,1211,-20,0,0 +2013,6,2,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,9,0,2259,4,0,0 +2013,10,3,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,945,-3,0,1130,-6,0,0 +2013,7,9,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-1,0,1303,-2,0,0 +2013,10,22,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-6,0,1630,-14,0,0 +2013,5,27,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,-2,0,1605,-20,0,0 +2013,8,23,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1345,0,0,1425,10,0,0 +2013,10,12,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1830,58,1,2010,54,1,0 +2013,4,5,5,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-4,0,953,-6,0,0 +2013,7,28,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1356,-7,0,1640,24,1,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,4,0,1625,-1,0,0 +2013,8,13,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,-5,0,2135,5,0,0 +2013,7,27,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1445,43,1,1517,51,1,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1859,10,0,2012,4,0,0 +2013,6,15,6,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-5,0,902,3,0,0 +2013,4,21,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1433,-3,0,1607,-22,0,0 +2013,8,2,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1212,-3,0,1314,-9,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,13,0,2230,9,0,0 +2013,5,27,1,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1033,-4,0,1135,-12,0,0 +2013,7,20,6,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1208,-4,0,1432,-7,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,10,0,1125,5,0,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,9,0,2255,7,0,0 +2013,8,8,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,855,0,0,1115,19,1,0 +2013,6,28,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1721,0,,1929,0,1,1 +2013,4,30,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,-1,0,1110,5,0,0 +2013,6,30,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,0,0,1741,2,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2110,-1,0,2355,-11,0,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,25,1,1155,13,0,0 +2013,8,11,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-3,0,1911,2,0,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,-4,0,1604,-18,0,0 +2013,6,22,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1930,0,0,2240,-14,0,0 +2013,9,3,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-6,0,1310,-11,0,0 +2013,5,6,1,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,720,-2,0,746,-8,0,0 +2013,6,1,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-4,0,1942,-5,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,-5,0,1651,-17,0,0 +2013,9,4,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-9,0,730,-17,0,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-3,0,1205,-19,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1755,11,0,2035,8,0,0 +2013,6,27,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-6,0,1215,-16,0,0 +2013,5,13,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2000,11,0,2005,1,0,0 +2013,7,13,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-8,0,1120,-32,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,920,6,0,1225,-6,0,0 +2013,5,19,7,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,117,1,2204,99,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,17,1,1505,21,1,0 +2013,6,27,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,12,0,1635,44,1,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1000,0,0,1245,-12,0,0 +2013,8,9,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1705,162,1,1842,171,1,0 +2013,5,22,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,0,0,2230,-9,0,0 +2013,8,25,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1609,2,0,1655,0,0,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-7,0,1818,-14,0,0 +2013,5,14,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-6,0,1920,-12,0,0 +2013,8,19,1,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,-2,0,1959,-23,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,3,0,2200,5,0,0 +2013,7,19,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,-1,0,1647,-5,0,0 +2013,4,11,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,605,-9,0,1409,-18,0,0 +2013,6,16,7,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,5,0,1311,5,0,0 +2013,6,7,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1445,55,1,1517,67,1,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,751,-2,0,1041,-1,0,0 +2013,9,4,3,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,942,-10,0,1130,-13,0,0 +2013,7,17,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,-2,0,1300,-9,0,0 +2013,6,28,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-2,0,810,2,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1345,-1,0,1706,17,1,0 +2013,9,11,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-10,0,2057,11,0,0 +2013,6,12,3,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2305,-1,0,731,14,0,0 +2013,5,18,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,926,8,0,0 +2013,8,26,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-8,0,1225,-4,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2045,0,,2250,0,1,1 +2013,10,16,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1637,3,0,1814,14,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,722,-3,0,1559,6,0,0 +2013,5,9,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,943,1,0,1043,18,1,0 +2013,5,5,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,7,0,945,-10,0,0 +2013,4,29,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1842,-3,0,1916,-4,0,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1340,2,0,1615,-5,0,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,7,0,830,-3,0,0 +2013,8,25,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,4,0,1635,-25,0,0 +2013,7,10,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-3,0,1524,-5,0,0 +2013,5,2,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,0,0,1053,10,0,0 +2013,6,16,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,755,1,0,900,9,0,0 +2013,6,26,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1843,-4,0,2023,20,1,0 +2013,4,12,5,FL,14635,Southwest Florida International,Fort Myers,FL,10792,Buffalo Niagara International,Buffalo,NY,1255,8,0,1550,-14,0,0 +2013,5,26,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2012,-9,0,2048,-10,0,0 +2013,8,28,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,38,1,2018,14,0,0 +2013,10,18,5,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,8,0,1537,5,0,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,714,-9,0,1550,-6,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-4,0,2200,-19,0,0 +2013,7,7,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,-6,0,1735,-9,0,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,604,236,1,909,252,1,0 +2013,8,16,5,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-3,0,2229,10,0,0 +2013,5,29,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,700,-2,0,735,-14,0,0 +2013,10,28,1,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,605,-7,0,745,-15,0,0 +2013,10,10,4,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,930,-2,0,1100,1,0,0 +2013,6,12,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,-3,0,1755,-18,0,0 +2013,10,29,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-4,0,1137,-11,0,0 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2115,-3,0,2353,-26,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1245,18,1,1515,16,1,0 +2013,9,29,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1620,0,,1754,0,1,1 +2013,9,28,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,755,0,0,905,-7,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,7,0,1450,0,0,0 +2013,8,25,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,-5,0,2135,-4,0,0 +2013,9,24,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,-2,0,1100,-11,0,0 +2013,7,10,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,845,-5,0,1010,-1,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1015,3,0,1335,3,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1725,48,1,55,37,1,0 +2013,5,29,3,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,739,-9,0,0 +2013,7,3,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1929,4,0,2212,-24,0,0 +2013,10,30,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,952,0,0,1116,-2,0,0 +2013,7,8,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,-9,0,1514,-6,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,615,-2,0,745,-8,0,0 +2013,4,4,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,640,-4,0,747,-6,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-5,0,1005,-31,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,110,1,1650,91,1,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2110,28,1,2355,20,1,0 +2013,5,28,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,615,-2,0,625,-8,0,0 +2013,9,12,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1452,0,,1650,0,1,1 +2013,9,3,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1755,22,1,1850,14,0,0 +2013,7,27,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-9,0,1915,-13,0,0 +2013,8,10,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1705,-6,0,1850,-17,0,0 +2013,4,14,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1400,41,1,1522,34,1,0 +2013,8,4,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,8,0,1518,-22,0,0 +2013,5,22,3,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,17,1,1640,43,1,0 +2013,7,4,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-8,0,825,-12,0,0 +2013,5,29,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,920,0,0,1035,-4,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1341,0,0,1453,64,1,0 +2013,8,17,6,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,840,-1,0,1205,-8,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,6,0,915,-1,0,0 +2013,5,4,6,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1659,-12,0,1959,-54,0,0 +2013,6,12,3,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,-7,0,1853,-11,0,0 +2013,9,12,4,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,925,-5,0,1048,-7,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,14,0,950,2,0,0 +2013,6,27,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,-5,0,1400,-9,0,0 +2013,9,24,2,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,815,-10,0,0 +2013,5,11,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1523,8,0,1814,18,1,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,149,1,2340,160,1,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,955,36,1,1115,32,1,0 +2013,4,28,7,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,813,-2,0,1159,-17,0,0 +2013,8,26,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,4,0,823,-8,0,0 +2013,8,8,4,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,520,-6,0,642,-9,0,0 +2013,10,20,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-3,0,1445,-3,0,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1909,-5,0,2026,-15,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2150,8,0,2240,1,0,0 +2013,5,21,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-6,0,1610,-2,0,0 +2013,10,30,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,721,-7,0,1000,-7,0,0 +2013,9,29,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1419,15,1,1555,-6,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,30,1,1315,33,1,0 +2013,6,10,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,87,1,1948,81,1,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1250,4,0,1355,-3,0,0 +2013,8,6,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,15,1,1610,15,1,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1255,1,0,1406,-2,0,0 +2013,5,2,4,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,854,11,0,1127,-8,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,818,-6,0,920,-7,0,0 +2013,10,16,3,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,800,-1,0,1250,-13,0,0 +2013,8,20,2,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-6,0,505,-10,0,0 +2013,4,4,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,51,1,1745,36,1,0 +2013,5,22,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1725,-2,0,1955,6,0,0 +2013,5,17,5,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,835,-8,0,1220,-16,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,-2,0,1550,-11,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1510,-6,0,2048,-23,0,0 +2013,6,10,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,8,0,2355,12,0,0 +2013,7,4,4,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1317,-6,0,1610,-4,0,0 +2013,9,21,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,845,-4,0,0 +2013,9,3,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2101,-1,0,2347,0,0,0 +2013,8,22,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1330,-1,0,1535,0,0,0 +2013,6,23,7,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-4,0,1231,-2,0,0 +2013,10,28,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,-5,0,1619,-11,0,0 +2013,6,13,4,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,815,-6,0,1011,-23,0,0 +2013,8,24,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-9,0,910,-16,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1525,0,0,1805,-20,0,0 +2013,6,9,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,-5,0,1645,-35,0,0 +2013,9,19,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1150,-1,0,1425,-10,0,0 +2013,4,21,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,160,1,2045,138,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2151,113,1,2334,98,1,0 +2013,9,14,6,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1430,-9,0,1605,-14,0,0 +2013,5,26,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,6,0,1720,-6,0,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1850,-2,0,2154,-13,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,721,0,,952,0,1,1 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2029,-1,0,2333,-21,0,0 +2013,6,14,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1130,-2,0,1229,-8,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1115,4,0,1459,5,0,0 +2013,6,2,7,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1650,0,0,1920,4,0,0 +2013,8,2,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,16,1,1809,12,0,0 +2013,10,1,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1530,-6,0,1805,-4,0,0 +2013,4,11,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,930,-2,0,1045,-20,0,0 +2013,5,22,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1339,-2,0,2050,-5,0,0 +2013,5,29,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-6,0,1327,-13,0,0 +2013,5,13,1,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,710,-5,0,935,-30,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2105,-5,0,2301,5,0,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,-6,0,812,-18,0,0 +2013,10,5,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1350,4,0,1758,63,1,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,952,52,1,1312,63,1,0 +2013,5,8,3,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,2255,-10,0,715,-20,0,0 +2013,9,22,7,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1119,-9,0,1245,-13,0,0 +2013,8,27,2,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,9,0,1000,35,1,0 +2013,5,11,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-12,0,2026,-14,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-3,0,1325,-4,0,0 +2013,6,9,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1250,0,,1355,0,1,1 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1027,-2,0,1234,-18,0,0 +2013,7,22,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-3,0,1751,4,0,0 +2013,7,28,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-5,0,1019,-15,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1906,0,0,2033,-9,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1454,3,0,1651,-3,0,0 +2013,4,25,4,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1127,-5,0,1420,-4,0,0 +2013,8,1,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-3,0,820,-22,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,1,0,2110,3,0,0 +2013,5,6,1,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,238,1,1830,224,1,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2009,-1,0,2102,-3,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,1,0,1529,-5,0,0 +2013,6,23,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,3,0,1830,0,0,0 +2013,10,19,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,0,0,2126,18,1,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1030,-1,0,1220,-2,0,0 +2013,5,18,6,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-2,0,1815,-2,0,0 +2013,4,28,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,4,0,1205,0,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,730,-19,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2335,-8,0,624,2,0,0 +2013,8,7,3,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1230,9,0,1441,4,0,0 +2013,7,16,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,555,-13,0,740,-17,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1135,1,0,1245,15,1,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,710,-4,0,820,3,0,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,42,1,2149,47,1,0 +2013,10,5,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1702,-18,0,2059,-14,0,0 +2013,4,11,4,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1859,-7,0,2120,-4,0,0 +2013,7,8,1,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-3,0,2147,-12,0,0 +2013,5,7,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1832,-12,0,0 +2013,7,23,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,-4,0,730,-12,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1424,5,0,1523,-7,0,0 +2013,9,19,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1450,-2,0,1835,-7,0,0 +2013,10,25,5,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1145,-1,0,1350,-5,0,0 +2013,10,8,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1603,-16,0,1710,-18,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1826,-6,0,2049,-15,0,0 +2013,10,1,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,605,-7,0,734,-10,0,0 +2013,8,26,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1731,23,1,1940,27,1,0 +2013,5,23,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,0,0,931,8,0,0 +2013,8,31,6,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1905,5,0,2210,1,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1910,1,0,2025,-11,0,0 +2013,6,4,2,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,1,0,2148,0,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2008,-3,0,2140,-11,0,0 +2013,10,12,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1755,-8,0,2000,-16,0,0 +2013,5,28,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,-2,0,1637,-13,0,0 +2013,5,3,5,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-7,0,1147,-16,0,0 +2013,10,3,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2105,9,0,2230,7,0,0 +2013,10,8,2,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1825,0,0,2100,-13,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1605,55,1,1835,50,1,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,835,-4,0,1145,-9,0,0 +2013,7,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1510,-3,0,1825,4,0,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,47,1,2050,47,1,0 +2013,6,12,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1859,7,0,2026,-8,0,0 +2013,7,3,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,28,1,2018,-11,0,0 +2013,8,9,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1535,-4,0,1810,-12,0,0 +2013,10,28,1,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-7,0,1634,-29,0,0 +2013,6,8,6,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-4,0,1005,-18,0,0 +2013,9,20,5,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,63,1,2124,67,1,0 +2013,5,26,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2115,41,1,2245,34,1,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1100,25,1,1210,24,1,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1550,117,1,1818,92,1,0 +2013,8,3,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,715,-2,0,1441,-29,0,0 +2013,4,3,3,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1910,-5,0,1946,-11,0,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1010,-1,0,1200,-9,0,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,43,1,1323,34,1,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1955,9,0,2340,8,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-5,0,1642,19,1,0 +2013,9,2,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1027,-7,0,1305,-13,0,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-5,0,1925,-27,0,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1430,10,0,1530,6,0,0 +2013,10,30,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1334,-4,0,1507,-14,0,0 +2013,5,1,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1730,14,0,1905,-6,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,-2,0,1401,-22,0,0 +2013,6,21,5,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,-10,0,1303,-12,0,0 +2013,7,21,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2015,-7,0,2110,-15,0,0 +2013,5,1,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-4,0,1216,-2,0,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,-2,0,1055,-5,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2125,33,1,2250,33,1,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1125,-8,0,1245,-2,0,0 +2013,9,20,5,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1130,7,0,1354,-3,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,555,0,0,925,-3,0,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,23,1,2323,23,1,0 +2013,9,7,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,841,-7,0,1100,-39,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-4,0,925,-12,0,0 +2013,4,11,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1530,1,0,1732,4,0,0 +2013,6,5,3,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1557,32,1,1850,28,1,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2100,42,1,2200,39,1,0 +2013,4,7,7,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1500,10,0,1621,16,1,0 +2013,8,4,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,904,-7,0,1036,8,0,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2155,2,0,2315,-11,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1555,-5,0,1911,-18,0,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-1,0,1926,-30,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1835,14,0,2210,-1,0,0 +2013,8,2,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-3,0,1210,-11,0,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,831,-5,0,1459,-16,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,96,1,1625,113,1,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,705,-2,0,854,-21,0,0 +2013,8,18,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,34,1,2035,23,1,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,605,3,0,914,-6,0,0 +2013,10,4,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1955,7,0,2125,-3,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1755,-2,0,1910,-20,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2110,34,1,2355,28,1,0 +2013,10,29,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1520,-5,0,1641,-2,0,0 +2013,8,31,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-10,0,1655,8,0,0 +2013,5,4,6,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-1,0,910,-6,0,0 +2013,10,30,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1648,33,1,1801,70,1,0 +2013,6,28,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,16,1,1940,11,0,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,31,1,345,25,1,0 +2013,5,29,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,-15,0,2036,-7,0,0 +2013,5,19,7,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1411,-7,0,1526,-31,0,0 +2013,8,5,1,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2015,47,1,2353,35,1,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1729,73,1,2022,63,1,0 +2013,7,28,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-7,0,1319,-5,0,0 +2013,5,24,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1730,33,1,1850,25,1,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,-6,0,1253,-5,0,0 +2013,5,26,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1916,1,0,2211,-41,0,0 +2013,9,20,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-8,0,820,-10,0,0 +2013,6,24,1,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1540,39,1,1750,34,1,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,-6,0,2351,-7,0,0 +2013,7,29,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,62,1,1310,60,1,0 +2013,10,12,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,908,45,1,1133,50,1,0 +2013,4,9,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,52,1,1300,43,1,0 +2013,5,9,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,-5,0,1832,-6,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1926,2,0,2107,-6,0,0 +2013,10,28,1,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,730,4,0,830,-1,0,0 +2013,9,3,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1250,-10,0,1637,-5,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1800,0,0,2103,-19,0,0 +2013,10,20,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,-5,0,1330,0,0,0 +2013,8,29,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1909,-2,0,2105,-7,0,0 +2013,4,28,7,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,9,0,2054,22,1,0 +2013,10,14,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1257,13,0,1819,-6,0,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,935,14,0,1555,5,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1410,36,1,1550,29,1,0 +2013,10,20,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1114,-11,0,1300,-18,0,0 +2013,6,1,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,835,-8,0,1207,-3,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1535,-4,0,1840,10,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1522,75,1,1654,72,1,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,645,-2,0,946,-1,0,0 +2013,10,30,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1815,-11,0,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1040,1,0,1855,6,0,0 +2013,9,27,5,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-4,0,1205,-1,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,814,0,0,958,-33,0,0 +2013,7,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,756,1,0,858,-11,0,0 +2013,8,20,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,845,34,1,0 +2013,9,27,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1820,0,0,1845,-16,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,1,0,1654,-6,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,7,0,1410,6,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1155,0,0,1410,-20,0,0 +2013,8,12,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,7,0,1931,65,1,0 +2013,6,5,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,-6,0,1857,-7,0,0 +2013,5,15,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,5,0,935,5,0,0 +2013,6,23,7,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1150,2,0,1810,-2,0,0 +2013,7,4,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1140,-2,0,1311,-18,0,0 +2013,10,25,5,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,-10,0,810,2,0,0 +2013,10,8,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,9,0,1637,31,1,0 +2013,6,18,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,27,1,1450,25,1,0 +2013,8,11,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,42,1,2115,35,1,0 +2013,9,12,4,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-5,0,1140,0,0,0 +2013,6,13,4,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,735,8,0,1340,-5,0,0 +2013,10,4,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1255,-7,0,2116,-17,0,0 +2013,7,19,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-4,0,1228,-8,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1942,-2,0,2100,-33,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,2,0,1255,2,0,0 +2013,6,23,7,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2339,67,1,718,65,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-3,0,2154,-30,0,0 +2013,5,5,7,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-3,0,1630,11,0,0 +2013,7,28,7,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1359,-7,0,1556,51,1,0 +2013,10,8,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,829,-5,0,913,-3,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1949,53,1,2115,40,1,0 +2013,6,28,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1320,15,1,1410,9,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1932,66,1,2018,46,1,0 +2013,7,20,6,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1645,33,1,1833,13,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,47,1,1540,38,1,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1708,-1,0,1811,-10,0,0 +2013,5,31,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,17,1,1840,12,0,0 +2013,8,22,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,1020,-11,0,0 +2013,6,16,7,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-3,0,1908,-14,0,0 +2013,8,9,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1533,78,1,1724,69,1,0 +2013,4,6,6,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,954,-5,0,1222,-13,0,0 +2013,10,14,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-3,0,756,-15,0,0 +2013,8,13,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,0,,1855,0,1,1 +2013,10,10,4,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1015,9,0,1440,3,0,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,900,-1,0,1116,-26,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-1,0,1936,-11,0,0 +2013,8,29,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,805,-14,0,0 +2013,7,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1325,3,0,1930,-16,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,750,1,0,1035,6,0,0 +2013,6,18,2,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,759,1,0,0 +2013,8,24,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1230,4,0,0 +2013,5,7,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,831,-4,0,1102,-19,0,0 +2013,8,13,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1725,-5,0,2020,-7,0,0 +2013,7,10,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-2,0,1236,-22,0,0 +2013,8,28,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1025,-1,0,1140,-18,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1155,-3,0,1300,-5,0,0 +2013,4,22,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-7,0,1310,36,1,0 +2013,6,23,7,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,-4,0,1053,-9,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-2,0,2200,-12,0,0 +2013,10,4,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-10,0,754,-1,0,0 +2013,8,15,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1720,58,1,1845,58,1,0 +2013,7,24,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-1,0,958,-19,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,805,1,0,930,-13,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,615,0,0,825,-12,0,0 +2013,5,8,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,25,1,2325,26,1,0 +2013,10,10,4,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,-4,0,1643,-18,0,0 +2013,9,9,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,-2,0,2005,-12,0,0 +2013,8,26,1,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,14,0,2000,-14,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,-1,0,1620,-23,0,0 +2013,8,4,7,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-3,0,825,-17,0,0 +2013,6,11,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1629,95,1,1955,88,1,0 +2013,10,14,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-10,0,1939,-10,0,0 +2013,10,4,5,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,0,0,1639,-11,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,3,0,1500,2,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,-4,0,1355,-34,0,0 +2013,6,19,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1305,43,1,1525,22,1,0 +2013,8,6,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1750,11,0,2125,10,0,0 +2013,5,4,6,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1455,-2,0,2000,-8,0,0 +2013,8,28,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,817,-7,0,0 +2013,5,29,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1100,2,0,1200,1,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1250,2,0,1500,-16,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1130,36,1,1310,45,1,0 +2013,10,21,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,31,1,2045,25,1,0 +2013,4,23,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1705,23,1,1755,24,1,0 +2013,9,17,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1156,9,0,1647,5,0,0 +2013,10,3,4,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,22,1,1806,18,1,0 +2013,5,23,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,34,1,2045,43,1,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,815,15,1,920,10,0,0 +2013,5,2,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,2,0,940,-5,0,0 +2013,5,11,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-9,0,1837,-8,0,0 +2013,10,20,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1310,-4,0,2107,-14,0,0 +2013,8,9,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1912,21,1,2109,0,0,0 +2013,7,11,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1918,0,,2229,0,1,1 +2013,7,10,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1430,-1,0,2255,-6,0,0 +2013,4,24,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1720,-8,0,1904,-17,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-1,0,835,-5,0,0 +2013,9,4,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,140,1,2004,139,1,0 +2013,10,20,7,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1905,1,0,2131,1,0,0 +2013,10,10,4,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,745,-5,0,1033,9,0,0 +2013,10,9,3,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,615,-1,0,740,-16,0,0 +2013,7,28,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,25,1,1800,19,1,0 +2013,6,17,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1743,-1,0,2034,-16,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,-5,0,2123,-5,0,0 +2013,8,22,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-7,0,1349,1,0,0 +2013,5,15,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-7,0,1232,-37,0,0 +2013,10,29,2,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1225,-3,0,1552,-29,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1955,-1,0,2115,-9,0,0 +2013,6,5,3,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,816,-11,0,929,-10,0,0 +2013,9,23,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,90,1,928,86,1,0 +2013,6,16,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1420,-5,0,1531,-24,0,0 +2013,5,28,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-8,0,912,-25,0,0 +2013,9,18,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,730,-9,0,820,-15,0,0 +2013,8,15,4,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1050,0,0,1250,-6,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1533,5,0,1845,-11,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,630,10,0,940,-4,0,0 +2013,4,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1240,16,1,1620,7,0,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1903,-1,0,2239,-10,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,28,1,1435,20,1,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,4,0,800,-4,0,0 +2013,10,11,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,6,0,710,0,0,0 +2013,7,12,5,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1733,-1,0,1814,6,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,3,0,2115,0,0,0 +2013,7,24,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,2,0,2300,-6,0,0 +2013,5,30,4,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,-4,0,1349,10,0,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1220,-1,0,1725,-20,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,837,-5,0,1110,-4,0,0 +2013,4,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-5,0,1830,-17,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,945,-4,0,1420,13,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,-1,0,2215,-6,0,0 +2013,9,6,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1155,-4,0,1453,-1,0,0 +2013,5,4,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,0,0,1238,0,0,0 +2013,9,5,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,846,-4,0,939,-3,0,0 +2013,6,6,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-5,0,1635,-4,0,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1855,3,0,2130,1,0,0 +2013,5,9,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,40,1,2230,37,1,0 +2013,6,11,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1755,1,0,1940,-1,0,0 +2013,5,16,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1653,-6,0,1738,-6,0,0 +2013,9,9,1,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,514,-2,0,626,-5,0,0 +2013,10,8,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,7,0,2058,0,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1730,214,1,1955,218,1,0 +2013,8,8,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2105,-3,0,2220,30,1,0 +2013,9,14,6,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1822,0,0,2002,-8,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,-7,0,17,-13,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,5,0,1949,0,0,0 +2013,4,29,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,-7,0,2250,-15,0,0 +2013,7,13,6,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1509,24,1,1611,21,1,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,625,-1,0,750,-2,0,0 +2013,10,19,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1400,-9,0,1506,-18,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,18,1,1055,14,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1732,-4,0,1930,-23,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-6,0,1243,-24,0,0 +2013,10,24,4,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1620,-2,0,1825,3,0,0 +2013,7,15,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,540,-5,0,625,-19,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-1,0,2103,-7,0,0 +2013,9,17,2,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,-3,0,1125,-6,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1045,-1,0,1315,-11,0,0 +2013,7,2,2,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1410,46,1,1750,57,1,0 +2013,4,19,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1218,285,1,1430,284,1,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,14,0,2230,36,1,0 +2013,4,23,2,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1435,47,1,2229,38,1,0 +2013,7,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1910,11,0,2140,6,0,0 +2013,8,5,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2156,-3,0,16,-17,0,0 +2013,10,6,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,4,0,1810,21,1,0 +2013,4,8,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1350,0,,1652,0,1,1 +2013,8,23,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,-4,0,2018,-25,0,0 +2013,8,9,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1643,0,,1907,0,1,1 +2013,8,19,1,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-6,0,914,3,0,0 +2013,6,23,7,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2214,0,0,2327,0,0,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1725,-2,0,128,3,0,0 +2013,5,11,6,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1447,0,,1639,0,1,1 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1030,-4,0,1145,-9,0,0 +2013,7,21,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-4,0,1307,6,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1432,-4,0,1523,-2,0,0 +2013,8,1,4,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,850,-7,0,1105,-16,0,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,640,-4,0,806,-13,0,0 +2013,4,14,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-1,0,1520,-14,0,0 +2013,5,12,7,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-6,0,1633,-9,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1245,16,1,1400,15,1,0 +2013,7,17,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-10,0,934,-21,0,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,600,-3,0,930,-16,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,4,0,2205,-6,0,0 +2013,4,18,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-2,0,1421,-10,0,0 +2013,6,21,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,740,5,0,950,-9,0,0 +2013,9,10,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1210,-3,0,1400,-1,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1708,17,1,1843,5,0,0 +2013,5,26,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,800,-4,0,914,-19,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,700,-1,0,1109,-4,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,800,0,0,905,-5,0,0 +2013,9,4,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1920,-13,0,2045,-3,0,0 +2013,9,9,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,-4,0,2155,2,0,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,7,0,1643,9,0,0 +2013,8,26,1,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1850,4,0,1907,3,0,0 +2013,9,20,5,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,920,5,0,1045,4,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,-3,0,1320,-5,0,0 +2013,5,2,4,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,851,-4,0,1138,-11,0,0 +2013,4,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1630,0,0,1950,-12,0,0 +2013,4,22,1,EV,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,1715,-3,0,1840,-11,0,0 +2013,9,18,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-2,0,800,1,0,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1540,-5,0,1655,-3,0,0 +2013,9,1,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-10,0,1336,-9,0,0 +2013,5,5,7,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-5,0,2202,-13,0,0 +2013,5,18,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,66,1,1343,60,1,0 +2013,7,2,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,700,2,0,1235,12,0,0 +2013,9,2,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,2000,32,1,2153,3,0,0 +2013,9,16,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,-4,0,2030,-3,0,0 +2013,10,27,7,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1930,-3,0,2158,-16,0,0 +2013,5,7,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,-4,0,1720,-16,0,0 +2013,4,21,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1748,23,1,1853,20,1,0 +2013,9,29,7,9E,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,859,-3,0,1027,-5,0,0 +2013,7,17,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1822,7,0,2119,-1,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1215,12,0,1430,14,0,0 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1050,33,1,1210,26,1,0 +2013,8,19,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,-9,0,2146,-50,0,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,-8,0,1235,-19,0,0 +2013,4,28,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1450,2,0,1735,-20,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,-3,0,1340,-18,0,0 +2013,7,13,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1045,-3,0,1325,-16,0,0 +2013,5,9,4,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,600,0,0,735,-19,0,0 +2013,7,24,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,20,1,2102,6,0,0 +2013,7,16,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-1,0,1454,8,0,0 +2013,5,9,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-3,0,1230,-16,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1950,3,0,2045,-4,0,0 +2013,8,21,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,655,-7,0,745,13,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1010,-7,0,1302,-5,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-3,0,1307,-22,0,0 +2013,9,20,5,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1130,-3,0,1400,-24,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1412,-12,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2155,63,1,2325,58,1,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1356,-4,0,1545,-7,0,0 +2013,4,29,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1730,100,1,1927,96,1,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,735,171,1,815,166,1,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1010,-4,0,1146,-8,0,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1950,-1,0,2115,-14,0,0 +2013,10,5,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1800,-4,0,2040,-16,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-4,0,1054,-3,0,0 +2013,10,13,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,1,0,920,-3,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,-1,0,1115,-2,0,0 +2013,10,7,1,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,-2,0,1713,-11,0,0 +2013,6,27,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1035,5,0,1210,-2,0,0 +2013,8,1,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,625,-4,0,1245,-17,0,0 +2013,5,26,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,629,21,1,815,14,0,0 +2013,4,12,5,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1002,-5,0,1342,2,0,0 +2013,4,24,3,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1215,-8,0,1459,13,0,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1420,6,0,2010,27,1,0 +2013,10,1,2,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-11,0,858,-11,0,0 +2013,4,30,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,11,0,1305,3,0,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,905,59,1,1050,38,1,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,13,0,2342,9,0,0 +2013,9,8,7,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1010,-8,0,1310,-24,0,0 +2013,6,26,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-4,0,1620,-8,0,0 +2013,6,10,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2015,7,0,2115,-1,0,0 +2013,7,14,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1013,-1,0,1304,-9,0,0 +2013,4,4,4,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,0,0,2133,-1,0,0 +2013,8,14,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-8,0,1003,-2,0,0 +2013,4,30,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2145,2,0,105,-40,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,19,1,1420,9,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1006,-5,0,1241,-10,0,0 +2013,7,6,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1111,-4,0,0 +2013,8,10,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,-5,0,1155,-21,0,0 +2013,7,24,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,11,0,2025,5,0,0 +2013,6,30,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,730,3,0,845,-15,0,0 +2013,6,14,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1946,-4,0,2055,-11,0,0 +2013,10,18,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1729,34,1,1900,39,1,0 +2013,10,15,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,500,-5,0,615,-19,0,0 +2013,9,29,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,640,52,1,815,53,1,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,12,0,1200,23,1,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2010,-9,0,2300,-22,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1319,0,0,1544,-5,0,0 +2013,7,17,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,-2,0,1619,-3,0,0 +2013,7,23,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1240,0,,1350,0,1,1 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1058,0,0,1207,-1,0,0 +2013,7,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2055,-2,0,2250,-5,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,-2,0,845,16,1,0 +2013,6,19,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1751,23,1,2058,16,1,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,-4,0,917,-8,0,0 +2013,6,15,6,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,755,7,0,815,0,0,0 +2013,9,13,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,0,0,1558,-10,0,0 +2013,8,30,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-3,0,1740,8,0,0 +2013,10,29,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,846,-5,0,1039,-14,0,0 +2013,7,14,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1310,0,0,1440,0,0,0 +2013,5,27,1,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1345,2,0,1520,-1,0,0 +2013,4,26,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1550,-10,0,1655,-14,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,835,-3,0,953,0,0,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,1,0,735,-4,0,0 +2013,10,5,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,830,1,0,945,4,0,0 +2013,8,10,6,DL,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1950,-8,0,2125,-13,0,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1735,20,1,2255,7,0,0 +2013,8,29,4,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,2,0,1306,-7,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,80,1,2359,74,1,0 +2013,7,21,7,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,75,1,2156,49,1,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1430,-2,0,1808,17,1,0 +2013,4,28,7,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,835,-7,0,1220,-9,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-10,0,1657,41,1,0 +2013,8,26,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1050,-3,0,1145,-5,0,0 +2013,9,21,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-10,0,2135,-8,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1837,-1,0,2151,12,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,1,0,1535,1,0,0 +2013,6,29,6,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,-5,0,1010,-2,0,0 +2013,7,24,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1210,-2,0,1655,-7,0,0 +2013,8,31,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,843,-4,0,944,-13,0,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-1,0,1800,-1,0,0 +2013,10,4,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,538,16,1,715,0,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,945,66,1,1540,53,1,0 +2013,7,3,3,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-1,0,1627,5,0,0 +2013,7,26,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,935,-1,0,1100,-8,0,0 +2013,5,11,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1710,17,1,1720,11,0,0 +2013,8,9,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1314,-3,0,1640,5,0,0 +2013,9,19,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1715,40,1,1954,31,1,0 +2013,10,26,6,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1415,-1,0,1538,-7,0,0 +2013,6,12,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1710,-2,0,1835,0,0,0 +2013,10,8,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2107,-4,0,2154,-5,0,0 +2013,8,6,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,-2,0,1605,-15,0,0 +2013,5,7,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,6,0,1215,-2,0,0 +2013,5,16,4,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,-1,0,2202,-8,0,0 +2013,5,24,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1745,-7,0,1905,-13,0,0 +2013,10,3,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,3,0,1825,2,0,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1500,-2,0,1954,-4,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1505,87,1,1525,69,1,0 +2013,5,31,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1225,-5,0,1337,-2,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,-4,0,1150,-10,0,0 +2013,10,24,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,653,-5,0,820,-7,0,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1725,-10,0,1922,-10,0,0 +2013,8,21,3,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-5,0,1645,-5,0,0 +2013,4,19,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,645,0,0,735,-7,0,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1932,-4,0,2113,-26,0,0 +2013,7,1,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1457,60,1,1644,60,1,0 +2013,8,7,3,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1929,43,1,2233,36,1,0 +2013,9,18,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-7,0,1810,-11,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-3,0,1054,-16,0,0 +2013,5,29,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,0,0,1730,26,1,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-3,0,1254,-16,0,0 +2013,6,25,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1514,7,0,1624,9,0,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-4,0,829,-15,0,0 +2013,9,1,7,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2053,206,1,500,226,1,0 +2013,9,21,6,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-6,0,1445,-19,0,0 +2013,5,22,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,715,-2,0,750,-17,0,0 +2013,8,5,1,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,840,-3,0,1015,0,0,0 +2013,7,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-4,0,1211,-6,0,0 +2013,6,4,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1235,31,1,1830,22,1,0 +2013,6,23,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1440,-8,0,1530,-20,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,1,0,1040,-18,0,0 +2013,8,6,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1657,-9,0,0 +2013,7,15,1,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,18,1,2219,25,1,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,-5,0,2140,-17,0,0 +2013,4,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2350,-1,0,612,-13,0,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1625,0,0,1755,-5,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,810,-3,0,1004,-16,0,0 +2013,6,16,7,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,-14,0,1520,-22,0,0 +2013,9,15,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,848,-8,0,1442,-3,0,0 +2013,5,13,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1501,-2,0,1715,-7,0,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1030,0,0,1305,1,0,0 +2013,4,6,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,-5,0,1800,-19,0,0 +2013,9,19,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,3,0,1650,-29,0,0 +2013,9,25,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1000,2,0,1005,-8,0,0 +2013,5,29,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1005,-3,0,1345,-25,0,0 +2013,9,24,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,916,-5,0,1126,-8,0,0 +2013,5,30,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,945,-5,0,1040,-22,0,0 +2013,4,1,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1015,-7,0,1133,-9,0,0 +2013,8,17,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-3,0,1300,-17,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,602,21,1,906,11,0,0 +2013,7,29,1,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1809,39,1,2121,35,1,0 +2013,9,19,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1640,5,0,1947,-13,0,0 +2013,8,25,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,626,1,0,1155,-10,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,68,1,1823,54,1,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1200,7,0,1335,11,0,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1021,-6,0,1356,-14,0,0 +2013,7,14,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,620,0,,931,0,1,1 +2013,4,6,6,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1231,-4,0,1402,-9,0,0 +2013,6,8,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1025,-5,0,1204,-13,0,0 +2013,6,8,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-7,0,1554,-15,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-5,0,1558,-7,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,-4,0,1235,-19,0,0 +2013,7,30,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-5,0,730,-8,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-2,0,1748,-14,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1440,1,0,1625,-2,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,11,0,1548,1,0,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,-5,0,2359,0,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,-1,0,1215,-2,0,0 +2013,4,19,5,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-4,0,1350,1,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,33,1,1819,7,0,0 +2013,6,25,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,35,1,1650,45,1,0 +2013,10,28,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,-3,0,2225,-9,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2225,4,0,120,11,0,0 +2013,4,27,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,610,-1,0,716,-3,0,0 +2013,6,22,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-4,0,1310,-14,0,0 +2013,4,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1126,29,1,1252,17,1,0 +2013,10,12,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,720,1,0,740,5,0,0 +2013,10,10,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1230,5,0,1509,-8,0,0 +2013,9,23,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,737,-6,0,1105,13,0,0 +2013,6,23,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1601,-14,0,0 +2013,6,23,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,5,0,2010,-14,0,0 +2013,9,1,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,4,0,1012,0,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2145,-2,0,50,0,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1905,-3,0,2145,-22,0,0 +2013,9,6,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,7,0,2156,7,0,0 +2013,4,24,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,635,-1,0,920,-5,0,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,706,-8,0,830,-6,0,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,-4,0,1925,-3,0,0 +2013,4,5,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1705,7,0,1820,-11,0,0 +2013,6,16,7,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1425,-1,0,1710,7,0,0 +2013,7,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,0,0,1405,-5,0,0 +2013,10,20,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1210,-5,0,1350,17,1,0 +2013,7,13,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1855,45,1,1945,41,1,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1022,320,1,1256,379,1,0 +2013,7,31,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,-5,0,2025,6,0,0 +2013,10,27,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1719,39,1,1902,25,1,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1715,0,0,2140,-17,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-4,0,2231,15,1,0 +2013,5,22,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1415,8,0,1655,-12,0,0 +2013,10,4,5,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1806,-9,0,2200,-5,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,7,0,1024,15,1,0 +2013,7,13,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1659,6,0,1902,10,0,0 +2013,5,7,2,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2012,4,0,2300,-17,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1310,-3,0,1400,-8,0,0 +2013,5,27,1,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1811,29,1,1931,34,1,0 +2013,7,6,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,151,1,1820,132,1,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,953,-6,0,1800,-1,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1540,-6,0,1616,-3,0,0 +2013,7,20,6,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,121,1,1826,126,1,0 +2013,4,2,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1108,-2,0,1319,3,0,0 +2013,7,19,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-8,0,755,-6,0,0 +2013,4,5,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,810,3,0,1028,18,1,0 +2013,5,2,4,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,26,1,839,-10,0,0 +2013,10,15,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2147,-9,0,530,-35,0,0 +2013,7,20,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,10,0,2135,22,1,0 +2013,5,20,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1535,-5,0,1655,-14,0,0 +2013,5,20,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1305,-10,0,1450,-1,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,-6,0,1932,-3,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-1,0,645,18,1,0 +2013,6,10,1,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1448,2,0,1614,-6,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1210,57,1,1315,33,1,0 +2013,10,3,4,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,935,-3,0,0 +2013,10,1,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1620,-12,0,1725,-23,0,0 +2013,9,27,5,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1700,3,0,1940,-12,0,0 +2013,4,25,4,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1102,-3,0,1313,-12,0,0 +2013,4,11,4,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,740,-4,0,1117,2,0,0 +2013,8,31,6,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1627,4,0,1709,28,1,0 +2013,9,29,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1952,-5,0,2210,-13,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-4,0,1238,-18,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,925,18,1,1210,43,1,0 +2013,10,29,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1340,1,0,1615,6,0,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1630,12,0,1945,-14,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1905,0,,2148,0,1,1 +2013,10,28,1,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1642,-7,0,0 +2013,5,30,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-9,0,1949,-4,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,-4,0,1000,-14,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,7,0,900,19,1,0 +2013,4,21,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1120,-9,0,1235,-13,0,0 +2013,7,6,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-8,0,2300,-16,0,0 +2013,7,28,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1943,7,0,2050,8,0,0 +2013,10,5,6,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,801,-5,0,919,-18,0,0 +2013,10,22,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1340,-1,0,1505,-17,0,0 +2013,7,12,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1255,15,1,1425,9,0,0 +2013,6,14,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,46,1,0,855,-1,0,0 +2013,4,7,7,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,45,12,0,622,-1,0,0 +2013,10,20,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1252,-11,0,0 +2013,5,7,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,87,1,2034,79,1,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,634,-8,0,845,-13,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1515,2,0,1815,-24,0,0 +2013,9,5,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,630,-3,0,831,-15,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1931,-4,0,130,-10,0,0 +2013,8,15,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,99,1,1015,91,1,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,-4,0,1615,-17,0,0 +2013,7,9,2,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1716,59,1,1851,57,1,0 +2013,4,9,2,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,720,-5,0,1050,19,1,0 +2013,8,8,4,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,87,1,2316,91,1,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,44,1,1810,34,1,0 +2013,6,16,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-3,0,910,-13,0,0 +2013,9,11,3,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2156,-3,0,2242,-13,0,0 +2013,5,11,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-1,0,853,23,1,0 +2013,9,8,7,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-6,0,1425,-26,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,12,0,2315,21,1,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1020,-2,0,1655,-13,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1805,0,0,1915,-7,0,0 +2013,4,19,5,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,925,-3,0,1205,-13,0,0 +2013,10,2,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,857,-2,0,926,-4,0,0 +2013,8,19,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1955,48,1,144,39,1,0 +2013,6,5,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-8,0,2036,3,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2040,52,1,2140,53,1,0 +2013,10,9,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1800,-6,0,1920,14,0,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,11,0,1955,9,0,0 +2013,4,22,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-8,0,750,-12,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1910,12,0,2210,15,1,0 +2013,10,18,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1450,3,0,1540,-8,0,0 +2013,7,10,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1705,32,1,1855,35,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1633,-3,0,1749,-2,0,0 +2013,7,22,1,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-2,0,1545,10,0,0 +2013,8,2,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1645,1,0,1800,19,1,0 +2013,9,1,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-2,0,1441,21,1,0 +2013,4,14,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13232,Chicago Midway International,Chicago,IL,845,44,1,1440,13,0,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2054,20,1,2358,5,0,0 +2013,6,1,6,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1335,7,0,1454,8,0,0 +2013,6,8,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,2,0,1815,-38,0,0 +2013,8,20,2,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,31,1,2339,26,1,0 +2013,6,21,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1531,-2,0,1740,-8,0,0 +2013,9,8,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2208,-1,0,555,-7,0,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1625,-4,0,1838,-7,0,0 +2013,7,11,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,700,-8,0,807,-5,0,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,940,-8,0,0 +2013,4,11,4,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,17,1,1950,25,1,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,1705,14,0,1950,-9,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1623,0,0,1728,-11,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1500,-4,0,1630,-10,0,0 +2013,10,16,3,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1135,-6,0,1250,3,0,0 +2013,7,7,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,3,0,1810,-11,0,0 +2013,5,28,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-4,0,1951,24,1,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2045,41,1,2231,31,1,0 +2013,5,7,2,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,2,0,1833,-45,0,0 +2013,5,9,4,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1425,17,1,1720,38,1,0 +2013,10,6,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1125,-2,0,1259,-5,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1205,19,1,1318,14,0,0 +2013,5,3,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2110,3,0,2355,-2,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,2,0,1750,-25,0,0 +2013,7,19,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,925,0,0,1215,2,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-4,0,1525,-7,0,0 +2013,9,14,6,OO,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,759,4,0,913,0,0,0 +2013,4,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2005,29,1,2145,39,1,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,6,0,1847,2,0,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,30,1,1925,34,1,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1426,16,1,1558,4,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1312,3,0,1512,27,1,0 +2013,8,19,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1415,14,0,1625,6,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1935,23,1,55,12,0,0 +2013,7,5,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,6,0,1820,3,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,1,0,710,-5,0,0 +2013,4,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-7,0,1610,17,1,0 +2013,9,18,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,-6,0,1914,-10,0,0 +2013,4,8,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1310,20,1,1510,25,1,0 +2013,10,6,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-4,0,2125,-3,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,825,20,1,955,10,0,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,15,1,1700,13,0,0 +2013,9,24,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1615,-7,0,1804,-11,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,0,0,1320,0,0,0 +2013,8,9,5,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1825,-4,0,2110,2,0,0 +2013,7,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,97,1,928,99,1,0 +2013,4,22,1,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,17,1,1630,32,1,0 +2013,8,16,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2231,30,1,226,37,1,0 +2013,9,7,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,0,0,1010,10,0,0 +2013,6,19,3,OO,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,751,-6,0,913,0,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2202,38,1,2330,25,1,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1015,-5,0,1148,-16,0,0 +2013,10,20,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1030,-1,0,1250,5,0,0 +2013,9,24,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1053,-6,0,1637,-21,0,0 +2013,8,11,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-6,0,1923,-5,0,0 +2013,7,9,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,29,1,1238,4,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1006,-6,0,1635,-13,0,0 +2013,4,18,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1650,46,1,1925,81,1,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,4,0,1255,4,0,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1332,-2,0,1526,-19,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,22,1,2350,16,1,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2125,38,1,2359,49,1,0 +2013,6,27,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,605,-7,0,1020,-1,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1759,1,0,1958,-7,0,0 +2013,7,20,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-7,0,734,-24,0,0 +2013,9,19,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-2,0,1049,-16,0,0 +2013,4,13,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,705,-7,0,910,0,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,45,1,1831,37,1,0 +2013,7,11,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1230,70,1,1352,57,1,0 +2013,7,28,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-6,0,749,-16,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,5,0,2010,-3,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1545,46,1,1630,33,1,0 +2013,5,20,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,12,0,1358,13,0,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,4,0,2230,-6,0,0 +2013,7,11,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,705,-10,0,930,-12,0,0 +2013,6,6,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1335,-2,0,1455,-15,0,0 +2013,7,21,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1033,-8,0,1445,-30,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1821,3,0,2102,17,1,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1920,11,0,25,0,0,0 +2013,6,18,2,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1055,-8,0,1455,14,0,0 +2013,9,27,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1137,-2,0,1344,5,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1715,14,0,1837,20,1,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1005,-4,0,1355,-24,0,0 +2013,10,12,6,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2347,-9,0,552,-23,0,0 +2013,7,15,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,650,4,0,825,-2,0,0 +2013,10,2,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1825,-10,0,2100,-12,0,0 +2013,9,11,3,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-1,0,912,-13,0,0 +2013,9,14,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,605,-4,0,1035,-15,0,0 +2013,10,11,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,21,1,922,53,1,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1840,14,0,2000,10,0,0 +2013,8,19,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1215,-7,0,1452,1,0,0 +2013,5,22,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,0,0,1150,-7,0,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,735,1,0,1013,-17,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,34,1,1225,27,1,0 +2013,4,6,6,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1235,-2,0,1515,-3,0,0 +2013,9,26,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,-6,0,1649,-12,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,939,18,1,1805,8,0,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2200,-5,0,2350,4,0,0 +2013,10,27,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,-4,0,1753,6,0,0 +2013,6,2,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1400,-5,0,1735,-16,0,0 +2013,4,27,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1116,5,0,1401,4,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,70,1,2302,62,1,0 +2013,10,17,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1950,51,1,1955,52,1,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1941,-2,0,2152,-11,0,0 +2013,7,23,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,-8,0,1319,-20,0,0 +2013,8,10,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,710,-5,0,837,-8,0,0 +2013,6,17,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,-7,0,1620,14,0,0 +2013,6,6,4,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1040,7,0,1244,-3,0,0 +2013,4,27,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-3,0,807,-4,0,0 +2013,5,23,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,-2,0,940,9,0,0 +2013,6,2,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1055,9,0,1225,5,0,0 +2013,5,15,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1625,-4,0,1835,-11,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,-6,0,1608,-4,0,0 +2013,5,11,6,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,45,1,2227,75,1,0 +2013,7,31,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,0,0,1659,-9,0,0 +2013,7,15,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1850,62,1,2020,42,1,0 +2013,8,8,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-2,0,803,-14,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1357,4,0,1532,-1,0,0 +2013,10,2,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,0,0,1737,4,0,0 +2013,7,27,6,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,600,-4,0,745,-12,0,0 +2013,8,1,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,920,-10,0,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-3,0,758,16,1,0 +2013,10,9,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,625,-3,0,1010,-12,0,0 +2013,8,24,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1420,-5,0,1640,-17,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1305,-1,0,1410,-13,0,0 +2013,5,19,7,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1010,22,1,1139,25,1,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,835,-1,0,1025,-2,0,0 +2013,7,5,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,2000,-11,0,2315,-38,0,0 +2013,7,13,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1325,37,1,1410,18,1,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1509,9,0,1750,-11,0,0 +2013,9,14,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,2,0,1530,-7,0,0 +2013,10,13,7,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,630,0,0,840,4,0,0 +2013,10,18,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,-6,0,1627,-18,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1255,-3,0,1720,-17,0,0 +2013,6,8,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1715,5,0,1930,-18,0,0 +2013,6,24,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1236,6,0,0 +2013,10,7,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1926,-3,0,2102,-5,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1535,23,1,2015,17,1,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,-1,0,1150,1,0,0 +2013,5,9,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1957,42,1,2107,30,1,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,1,0,800,-3,0,0 +2013,7,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,-5,0,2046,-29,0,0 +2013,9,24,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1700,-3,0,1950,-20,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-2,0,1725,-7,0,0 +2013,4,16,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-2,0,1117,2,0,0 +2013,9,22,7,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-4,0,1920,-17,0,0 +2013,5,12,7,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,-1,0,1915,-14,0,0 +2013,7,17,3,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1450,-3,0,1755,-2,0,0 +2013,6,14,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,850,-2,0,1140,-15,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1000,5,0,1221,-7,0,0 +2013,9,2,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,106,1,1955,136,1,0 +2013,10,9,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,1404,8,0,0 +2013,9,11,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1905,-7,0,2022,-12,0,0 +2013,5,15,3,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1459,-5,0,1635,-16,0,0 +2013,7,7,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-6,0,1000,1,0,0 +2013,7,10,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,29,1,1304,38,1,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,841,-4,0,1054,9,0,0 +2013,8,24,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-2,0,1640,9,0,0 +2013,6,23,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1646,-1,0,1732,21,1,0 +2013,8,1,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1717,3,0,1838,6,0,0 +2013,9,30,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1830,-3,0,1940,-5,0,0 +2013,9,14,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1705,-7,0,2225,-16,0,0 +2013,5,28,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-5,0,1030,-20,0,0 +2013,7,1,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1630,74,1,1825,62,1,0 +2013,6,29,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2005,26,1,2141,11,0,0 +2013,5,25,6,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,125,1,1530,118,1,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1450,121,1,1613,123,1,0 +2013,9,11,3,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,0,0,1833,5,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1927,-5,0,2121,-1,0,0 +2013,7,13,6,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1928,11,0,2029,10,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,22,1,955,33,1,0 +2013,10,6,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-6,0,1145,-11,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2159,-8,0,2301,-18,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,540,-5,0,807,-7,0,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-3,0,2107,-22,0,0 +2013,9,26,4,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,832,-3,0,1110,-22,0,0 +2013,7,20,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1944,-11,0,2129,-10,0,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,-4,0,2130,-23,0,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,-5,0,1055,7,0,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,0,0,1705,5,0,0 +2013,8,1,4,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1222,0,0,1417,-3,0,0 +2013,10,24,4,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,826,-10,0,1014,4,0,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,36,1,1250,33,1,0 +2013,10,15,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1051,29,1,1310,25,1,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,-2,0,1235,-1,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1041,-4,0,1313,-22,0,0 +2013,4,14,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,801,9,0,858,18,1,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1920,11,0,2035,7,0,0 +2013,10,8,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1740,59,1,2015,73,1,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1110,0,0,1340,-10,0,0 +2013,9,10,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,18,1,1210,29,1,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1720,18,1,1909,7,0,0 +2013,5,15,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-4,0,825,0,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1945,-2,0,2335,-1,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-6,0,1343,-1,0,0 +2013,8,26,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,830,-1,0,1040,-24,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1010,22,1,1115,22,1,0 +2013,10,16,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-1,0,930,-7,0,0 +2013,10,23,3,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1113,-7,0,1326,-20,0,0 +2013,9,9,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,2,0,2135,5,0,0 +2013,6,14,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1050,4,0,0 +2013,6,5,3,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1708,211,1,2020,277,1,0 +2013,6,17,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,920,19,1,1020,21,1,0 +2013,9,20,5,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,900,-1,0,1125,-7,0,0 +2013,9,2,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1056,48,1,1215,40,1,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2335,-9,0,624,-4,0,0 +2013,5,29,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,629,-8,0,820,-15,0,0 +2013,7,20,6,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,16,1,1355,-2,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1530,0,,1635,0,1,1 +2013,9,24,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1657,49,1,1849,43,1,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,75,1,2134,73,1,0 +2013,10,31,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1054,-9,0,1400,-10,0,0 +2013,7,10,3,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-2,0,1800,-5,0,0 +2013,10,22,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-7,0,1919,-3,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-4,0,1621,-11,0,0 +2013,10,28,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1813,19,1,1942,53,1,0 +2013,7,24,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,925,7,0,1105,13,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,-4,0,1515,36,1,0 +2013,7,6,6,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1845,7,0,2128,11,0,0 +2013,7,3,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1110,15,1,1240,19,1,0 +2013,4,15,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1704,13,0,1723,15,1,0 +2013,7,13,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,-2,0,1254,8,0,0 +2013,10,8,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,840,-5,0,955,-10,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1735,24,1,1900,13,0,0 +2013,9,2,1,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1415,-1,0,1505,-5,0,0 +2013,4,22,1,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1722,20,1,1959,34,1,0 +2013,9,21,6,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1700,13,0,2233,3,0,0 +2013,6,8,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,0,0,2152,-12,0,0 +2013,10,24,4,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,730,-6,0,1009,-16,0,0 +2013,7,17,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,140,1,2020,186,1,0 +2013,4,28,7,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,705,1,0,859,-7,0,0 +2013,7,11,4,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,550,0,,1202,0,1,1 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2155,22,1,5,18,1,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,1,0,1650,-10,0,0 +2013,10,12,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,840,-13,0,857,-6,0,0 +2013,6,6,4,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1016,-9,0,0 +2013,7,17,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,1115,-18,0,0 +2013,7,5,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-3,0,1925,-4,0,0 +2013,5,13,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1720,22,1,1945,7,0,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1433,-6,0,1526,-7,0,0 +2013,8,28,3,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,703,-10,0,850,-11,0,0 +2013,8,13,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-8,0,828,-2,0,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-3,0,1610,3,0,0 +2013,4,27,6,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1808,-2,0,2032,-20,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1640,9,0,1740,7,0,0 +2013,10,2,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,609,16,1,1430,-17,0,0 +2013,7,12,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,640,6,0,735,-1,0,0 +2013,6,22,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,640,2,0,820,-3,0,0 +2013,7,16,2,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2213,-6,0,605,19,1,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1630,19,1,1830,19,1,0 +2013,5,23,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,0,0,656,1,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,8,0,1845,-12,0,0 +2013,7,24,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,1415,-7,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1720,94,1,1849,87,1,0 +2013,8,2,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,60,1,1930,60,1,0 +2013,10,10,4,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,2205,-3,0,2346,-16,0,0 +2013,7,8,1,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1710,192,1,2000,180,1,0 +2013,5,18,6,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1529,-3,0,1647,-10,0,0 +2013,10,29,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1723,-5,0,1900,-11,0,0 +2013,9,9,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-2,0,1830,-17,0,0 +2013,4,19,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,51,1,1350,111,1,0 +2013,10,21,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,5,0,1352,9,0,0 +2013,8,6,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1735,-2,0,1835,-14,0,0 +2013,8,19,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,-11,0,1415,-31,0,0 +2013,8,9,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,915,-3,0,1039,7,0,0 +2013,7,13,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1050,-1,0,0 +2013,7,12,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,96,1,2108,88,1,0 +2013,4,21,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1155,0,0,1305,-6,0,0 +2013,10,17,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1905,-1,0,2022,-5,0,0 +2013,8,6,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,7,0,2303,-8,0,0 +2013,6,13,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,834,-4,0,1006,-4,0,0 +2013,4,17,3,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1635,0,,1830,0,1,1 +2013,4,7,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1130,-2,0,1402,-13,0,0 +2013,6,19,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,20,0,,815,0,1,1 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,926,0,0,1225,11,0,0 +2013,7,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1835,-5,0,1955,-8,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,-3,0,2148,-13,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2205,-4,0,2331,-6,0,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1030,-2,0,1250,1,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1230,-4,0,1335,-6,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2140,2,0,2255,-5,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,9,0,2045,7,0,0 +2013,9,13,5,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,605,-4,0,700,-5,0,0 +2013,6,21,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-2,0,848,6,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,538,-6,0,808,-2,0,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1110,0,0,1225,-1,0,0 +2013,4,5,5,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1133,-9,0,1447,-24,0,0 +2013,10,2,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1045,-13,0,1200,-27,0,0 +2013,8,30,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,700,-9,0,823,-10,0,0 +2013,4,2,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,700,-8,0,946,-1,0,0 +2013,9,5,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1017,-1,0,1130,-13,0,0 +2013,6,12,3,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,650,1,0,1108,-2,0,0 +2013,7,9,2,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1105,-5,0,1229,-11,0,0 +2013,6,15,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1035,-4,0,1135,-7,0,0 +2013,4,26,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1415,2,0,1700,-6,0,0 +2013,9,10,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-3,0,2351,-13,0,0 +2013,10,26,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1425,-4,0,2255,-11,0,0 +2013,5,5,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-5,0,1202,3,0,0 +2013,7,2,2,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,840,5,0,1110,-1,0,0 +2013,7,13,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,-6,0,40,-7,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,17,1,1005,25,1,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,-5,0,1145,-14,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,-1,0,1616,3,0,0 +2013,9,5,4,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,745,-2,0,850,-16,0,0 +2013,4,30,2,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1425,2,0,1720,10,0,0 +2013,7,25,4,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1710,1,0,1945,-2,0,0 +2013,4,25,4,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,840,0,0,1110,2,0,0 +2013,7,19,5,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,4,0,1255,-12,0,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-4,0,1030,4,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1454,-1,0,1651,-9,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1140,-6,0,1313,-3,0,0 +2013,9,9,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,6,0,2055,9,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2020,71,1,2240,74,1,0 +2013,5,29,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-4,0,1610,0,0,0 +2013,9,22,7,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1409,-5,0,1646,-3,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1050,-4,0,1234,-22,0,0 +2013,5,14,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,625,-2,0,1441,20,1,0 +2013,5,18,6,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1158,-5,0,1451,-18,0,0 +2013,10,13,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,0,0,940,-14,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2028,11,0,459,-10,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1905,3,0,2235,1,0,0 +2013,6,10,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,1,0,1855,-14,0,0 +2013,9,12,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1125,14,0,1255,4,0,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,845,68,1,1200,66,1,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-5,0,1737,-6,0,0 +2013,7,15,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-6,0,900,-21,0,0 +2013,8,3,6,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,625,1,0,1230,-27,0,0 +2013,6,10,1,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-7,0,1256,-6,0,0 +2013,4,10,3,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-6,0,1051,18,1,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-2,0,1100,-6,0,0 +2013,7,28,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-2,0,1435,5,0,0 +2013,5,3,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,62,1,1235,57,1,0 +2013,10,9,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1850,48,1,2025,51,1,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,915,-1,0,1100,-9,0,0 +2013,4,23,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1215,-7,0,1342,-6,0,0 +2013,10,14,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1255,1,0,1706,10,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,23,1,2215,19,1,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,77,1,1957,74,1,0 +2013,5,17,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,710,-5,0,923,0,0,0 +2013,5,8,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-2,0,2000,-19,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-2,0,1115,10,0,0 +2013,7,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1737,156,1,1817,150,1,0 +2013,7,31,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-9,0,1254,-13,0,0 +2013,9,11,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1755,-3,0,1857,-20,0,0 +2013,4,22,1,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,1219,-10,0,1703,-12,0,0 +2013,8,20,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-2,0,930,-17,0,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,-4,0,954,-4,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1230,-2,0,1553,-27,0,0 +2013,5,1,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1350,176,1,1759,165,1,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1919,7,0,15,8,0,0 +2013,8,8,4,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1910,-3,0,1955,2,0,0 +2013,10,18,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2020,6,0,2140,-7,0,0 +2013,7,7,7,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,0,0,1746,33,1,0 +2013,5,5,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1205,-13,0,1530,-12,0,0 +2013,10,21,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2120,-14,0,2215,-13,0,0 +2013,4,22,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1855,-3,0,2032,-4,0,0 +2013,8,29,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1332,-1,0,1415,-7,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1115,-5,0,1305,-23,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,-3,0,1555,-14,0,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,-2,0,1558,5,0,0 +2013,9,12,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,945,-6,0,1129,1,0,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2320,3,0,508,-7,0,0 +2013,6,4,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1721,-6,0,1845,-10,0,0 +2013,8,3,6,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1555,6,0,2155,1,0,0 +2013,8,26,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-12,0,1008,-25,0,0 +2013,7,7,7,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1212,103,1,1503,90,1,0 +2013,10,3,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,-3,0,1201,-13,0,0 +2013,7,3,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1119,-6,0,1403,-10,0,0 +2013,5,20,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,909,-2,0,0 +2013,9,8,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,-4,0,1855,4,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-6,0,910,-8,0,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,530,-3,0,900,1,0,0 +2013,4,2,2,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,920,-1,0,1235,6,0,0 +2013,9,10,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,16,1,2201,7,0,0 +2013,5,31,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,8,0,1550,-2,0,0 +2013,4,20,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,740,0,0,815,-5,0,0 +2013,10,1,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1330,-2,0,1445,-10,0,0 +2013,10,7,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1417,0,,1523,0,1,1 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,900,-10,0,1217,-31,0,0 +2013,6,12,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14057,Portland International,Portland,OR,1825,0,,2035,0,1,1 +2013,10,11,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,1353,-16,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1215,-2,0,1935,-12,0,0 +2013,4,1,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2010,30,1,2125,29,1,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1220,0,0,1516,128,1,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,16,1,1822,-16,0,0 +2013,8,15,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-3,0,1458,22,1,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1511,-3,0,1600,-6,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1512,-1,0,1646,-9,0,0 +2013,8,30,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-4,0,740,-10,0,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1720,31,1,1915,19,1,0 +2013,5,17,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1722,-5,0,1953,-26,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-3,0,1646,18,1,0 +2013,9,10,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-5,0,725,-10,0,0 +2013,8,3,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-6,0,858,0,0,0 +2013,6,11,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-2,0,1128,0,0,0 +2013,6,26,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,11,0,1454,8,0,0 +2013,4,23,2,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1243,1,0,1503,-19,0,0 +2013,10,27,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,-6,0,1035,-14,0,0 +2013,5,26,7,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,715,-1,0,1010,-44,0,0 +2013,8,25,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,20,9,0,719,28,1,0 +2013,8,20,2,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-8,0,1409,-7,0,0 +2013,10,27,7,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1213,96,1,1523,83,1,0 +2013,10,28,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,645,-4,0,931,-5,0,0 +2013,7,31,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-10,0,908,-24,0,0 +2013,8,29,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-5,0,1236,-9,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2013,-6,0,2220,-10,0,0 +2013,9,1,7,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2205,0,0,845,-15,0,0 +2013,9,24,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-7,0,2020,-17,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1230,24,1,1335,29,1,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1425,-4,0,1654,4,0,0 +2013,4,30,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2255,-2,0,2348,-7,0,0 +2013,9,13,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,700,-2,0,1052,-17,0,0 +2013,4,18,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-7,0,1410,-21,0,0 +2013,4,27,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-11,0,1959,-11,0,0 +2013,8,1,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,904,-7,0,1036,-14,0,0 +2013,6,29,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,647,1,725,665,1,0 +2013,8,18,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1720,19,1,1820,18,1,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1458,-1,0,1625,-4,0,0 +2013,9,3,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1405,-5,0,2100,-3,0,0 +2013,4,19,5,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1952,-5,0,2258,-15,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,710,-1,0,940,-1,0,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2105,20,1,2205,0,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,-4,0,1908,-7,0,0 +2013,4,26,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1830,39,1,2110,41,1,0 +2013,8,3,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1430,2,0,1530,-7,0,0 +2013,10,20,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-8,0,1024,-24,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2010,-2,0,2055,0,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1425,7,0,1835,10,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1740,29,1,1923,88,1,0 +2013,10,3,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,600,21,1,725,16,1,0 +2013,4,26,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-8,0,1513,28,1,0 +2013,4,22,1,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1829,0,,2143,0,1,1 +2013,9,5,4,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1535,0,,1700,0,1,1 +2013,5,7,2,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,900,-7,0,1025,-13,0,0 +2013,8,31,6,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2200,-4,0,501,6,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,840,-3,0,1117,-13,0,0 +2013,7,5,5,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,3,0,1325,-11,0,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,7,0,1135,4,0,0 +2013,9,19,4,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,640,-5,0,1110,3,0,0 +2013,6,15,6,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1831,-6,0,2110,-6,0,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1025,65,1,1130,52,1,0 +2013,10,3,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-12,0,808,-21,0,0 +2013,9,1,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1120,-4,0,1240,-4,0,0 +2013,10,7,1,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-3,0,1038,4,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,-5,0,1915,-15,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,62,1,1440,54,1,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1150,51,1,1625,27,1,0 +2013,9,5,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2147,-3,0,2222,-4,0,0 +2013,10,31,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-5,0,1420,-17,0,0 +2013,4,22,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2020,-5,0,2235,-5,0,0 +2013,8,20,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1310,0,0,1615,-4,0,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2010,51,1,2141,72,1,0 +2013,4,23,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,9,0,2150,-1,0,0 +2013,4,3,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1001,0,,1304,0,1,1 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2225,-1,0,2356,-7,0,0 +2013,6,29,6,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,6,0,1849,15,1,0 +2013,4,14,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1007,-7,0,1109,-2,0,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,-9,0,1435,-17,0,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,959,-3,0,1659,-8,0,0 +2013,9,8,7,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,-1,0,1708,-17,0,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,-1,0,1025,-18,0,0 +2013,6,25,2,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-2,0,1915,-3,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,6,0,1520,-4,0,0 +2013,4,25,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-5,0,1650,-12,0,0 +2013,8,5,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-7,0,1812,-8,0,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1940,-5,0,2030,-7,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,935,19,1,1150,19,1,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,-4,0,1913,10,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-5,0,1055,-2,0,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1420,18,1,1535,5,0,0 +2013,4,15,1,EV,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,8,0,1533,2,0,0 +2013,5,24,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1656,61,1,2013,58,1,0 +2013,7,8,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1351,111,1,1630,120,1,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1825,-4,0,2125,-5,0,0 +2013,7,27,6,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,918,0,0,1130,-1,0,0 +2013,10,24,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,20,1,2145,16,1,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1615,-2,0,40,-8,0,0 +2013,5,21,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-1,0,1327,-7,0,0 +2013,9,6,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2040,78,1,2210,73,1,0 +2013,7,8,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-8,0,1408,-13,0,0 +2013,7,2,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-4,0,1825,0,0,0 +2013,6,24,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-8,0,1530,-6,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,0,0,1835,-16,0,0 +2013,4,27,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-3,0,1108,-5,0,0 +2013,10,31,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1345,-2,0,1435,-15,0,0 +2013,8,24,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,810,-3,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,49,1,1833,32,1,0 +2013,6,17,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,540,-7,0,625,-10,0,0 +2013,10,21,1,UA,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1846,-4,0,2004,-17,0,0 +2013,7,13,6,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-6,0,1635,-11,0,0 +2013,9,30,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,805,-5,0,840,-10,0,0 +2013,10,30,3,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1735,-7,0,1900,-9,0,0 +2013,4,22,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,0,0,1435,16,1,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,700,3,0,1155,-24,0,0 +2013,8,25,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1705,27,1,1815,20,1,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-7,0,2136,-9,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1804,1,0,1956,-15,0,0 +2013,7,5,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-7,0,1433,-27,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,845,-1,0,1343,-18,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,-3,0,750,-5,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,830,-2,0,1145,-7,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1340,-2,0,1602,-9,0,0 +2013,8,28,3,EV,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1354,-7,0,1708,-8,0,0 +2013,9,8,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1545,5,0,1644,-9,0,0 +2013,8,8,4,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,4,0,1516,25,1,0 +2013,9,20,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,825,-4,0,1017,-8,0,0 +2013,5,6,1,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1656,2,0,1843,-21,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1700,-5,0,1830,-13,0,0 +2013,5,16,4,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1330,-4,0,1402,4,0,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,11,0,1750,5,0,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1205,10,0,1315,0,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1500,0,0,1900,-4,0,0 +2013,8,15,4,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,545,-9,0,700,-36,0,0 +2013,10,23,3,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,835,0,0,1110,4,0,0 +2013,10,20,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1840,32,1,2025,53,1,0 +2013,9,12,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1910,-4,0,2140,-18,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1710,123,1,2005,138,1,0 +2013,5,22,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1936,-2,0,2151,66,1,0 +2013,6,12,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1127,-5,0,1216,-3,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1230,-1,0,1246,1,0,0 +2013,4,7,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,-10,0,844,-6,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,-2,0,1930,-12,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,600,0,0,820,-7,0,0 +2013,5,29,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1435,-5,0,1709,-12,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,0,0,1144,-8,0,0 +2013,6,10,1,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1238,86,1,1356,81,1,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,25,1,1535,16,1,0 +2013,4,7,7,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,720,-3,0,825,-9,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,1033,-20,0,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2141,-2,0,2234,2,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1810,5,0,2030,-3,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1352,131,1,1605,135,1,0 +2013,7,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,820,1,0,925,-16,0,0 +2013,4,30,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1700,-2,0,1855,-19,0,0 +2013,4,5,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,25,1,1840,28,1,0 +2013,5,8,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,9,0,1633,-6,0,0 +2013,7,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,700,-6,0,830,-8,0,0 +2013,6,8,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-1,0,1724,-10,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,2,0,2350,2,0,0 +2013,9,23,1,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2320,-5,0,504,-9,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,705,7,0,0 +2013,8,8,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2023,51,1,2149,64,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1700,-3,0,1937,3,0,0 +2013,5,28,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,630,0,0,1125,13,0,0 +2013,10,17,4,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,7,0,1500,-8,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2105,0,0,10,-1,0,0 +2013,7,29,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,12,0,1813,13,0,0 +2013,9,18,3,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,758,128,1,917,123,1,0 +2013,10,6,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-5,0,829,-14,0,0 +2013,7,24,3,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1650,55,1,1846,40,1,0 +2013,9,19,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,-3,0,2117,3,0,0 +2013,4,3,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1035,-8,0,1157,-8,0,0 +2013,10,22,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,636,-13,0,745,-15,0,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,23,1,1659,27,1,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1925,58,1,2240,53,1,0 +2013,7,6,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,-2,0,1752,-11,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1945,-7,0,2104,-21,0,0 +2013,5,8,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,0,0,851,-14,0,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,41,1,1730,36,1,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1133,-2,0,1304,-27,0,0 +2013,5,18,6,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1815,-2,0,1955,-13,0,0 +2013,6,15,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2010,4,0,2130,4,0,0 +2013,8,30,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,610,48,1,916,43,1,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,-7,0,2314,16,1,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1929,39,1,2209,24,1,0 +2013,9,18,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1608,13,0,1734,-13,0,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,615,1,0,1215,30,1,0 +2013,5,28,2,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1521,-2,0,1706,-1,0,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,23,1,1749,44,1,0 +2013,9,12,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1822,-10,0,2108,-14,0,0 +2013,8,5,1,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1134,-3,0,1455,-16,0,0 +2013,5,28,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,10,0,1654,17,1,0 +2013,8,30,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,-4,0,2135,-2,0,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1345,-5,0,1603,-13,0,0 +2013,7,14,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,650,1,0,730,-10,0,0 +2013,4,21,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,86,1,1757,82,1,0 +2013,6,23,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,104,1,2115,92,1,0 +2013,4,16,2,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1155,-3,0,1540,-17,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1040,16,1,1135,14,0,0 +2013,6,28,5,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-6,0,1208,5,0,0 +2013,8,29,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-5,0,1415,-12,0,0 +2013,5,22,3,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,0,0,1010,-12,0,0 +2013,7,27,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,943,-5,0,1000,-11,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1005,6,0,1250,3,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1011,-6,0,1202,-33,0,0 +2013,8,7,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,-4,0,2105,-3,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,131,1,1429,127,1,0 +2013,5,19,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,0,0,750,-13,0,0 +2013,4,17,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1425,1305,1,1535,1440,1,0 +2013,10,14,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,8,0,2330,3,0,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-2,0,1349,14,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1249,11,0,1641,2,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,811,1,0,1015,-5,0,0 +2013,5,2,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-8,0,1510,-11,0,0 +2013,6,28,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,88,1,735,80,1,0 +2013,4,30,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1555,-3,0,1730,-29,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,909,-2,0,1032,-24,0,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,-7,0,2152,-14,0,0 +2013,9,5,4,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1510,-6,0,1735,-5,0,0 +2013,8,21,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1138,-6,0,1429,-21,0,0 +2013,4,24,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2145,-6,0,2333,-23,0,0 +2013,9,29,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1554,2,0,0 +2013,5,6,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-4,0,1348,-15,0,0 +2013,10,31,4,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,-5,0,1345,-12,0,0 +2013,7,12,5,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1537,67,1,1718,59,1,0 +2013,9,26,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1100,-10,0,1431,-17,0,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,-4,0,1724,-7,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,60,1,1813,55,1,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,-4,0,1820,-13,0,0 +2013,4,17,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,-3,0,910,-15,0,0 +2013,5,9,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1740,22,1,2105,15,1,0 +2013,7,18,4,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-3,0,945,-16,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,8,0,2148,38,1,0 +2013,7,14,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1150,-8,0,1320,-20,0,0 +2013,5,22,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-2,0,2017,-1,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1955,38,1,2115,17,1,0 +2013,7,28,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-6,0,1905,-6,0,0 +2013,9,1,7,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1005,-12,0,1242,-29,0,0 +2013,10,30,3,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,530,0,0,801,22,1,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2001,0,0,2100,-12,0,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1139,-5,0,1254,-4,0,0 +2013,5,10,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,-1,0,1455,-9,0,0 +2013,7,20,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1930,-10,0,2133,-3,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1355,118,1,1705,107,1,0 +2013,9,8,7,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1029,-5,0,1244,-23,0,0 +2013,4,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-7,0,1928,-7,0,0 +2013,6,4,2,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,815,20,1,928,17,1,0 +2013,8,26,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-2,0,1309,-10,0,0 +2013,7,13,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-10,0,825,-9,0,0 +2013,9,12,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-8,0,2028,-11,0,0 +2013,9,13,5,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,800,44,1,1020,32,1,0 +2013,5,15,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1114,-5,0,1349,-17,0,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1350,3,0,2050,1,0,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,3,0,2100,2,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-6,0,1257,-16,0,0 +2013,4,28,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,8,0,1650,0,0,0 +2013,7,26,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,4,0,855,-2,0,0 +2013,10,31,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,13,0,1700,-3,0,0 +2013,10,29,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1706,17,1,2020,6,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,828,130,1,1056,122,1,0 +2013,9,30,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1610,25,1,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1410,-2,0,1624,1,0,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,604,14,0,725,-14,0,0 +2013,9,24,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,-8,0,912,-2,0,0 +2013,10,23,3,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,714,-9,0,1030,0,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,34,1,1200,22,1,0 +2013,6,14,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1327,-6,0,1434,-12,0,0 +2013,8,16,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,-7,0,1025,-5,0,0 +2013,5,31,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,905,-1,0,1011,-2,0,0 +2013,9,23,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1825,0,0,2015,-15,0,0 +2013,9,18,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-5,0,1115,-18,0,0 +2013,8,19,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1135,0,0,1245,-13,0,0 +2013,10,20,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1435,-7,0,1620,-6,0,0 +2013,7,6,6,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1300,-1,0,1435,-10,0,0 +2013,7,2,2,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-5,0,900,9,0,0 +2013,8,3,6,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1324,-4,0,1639,1,0,0 +2013,5,14,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,700,-3,0,831,-11,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,830,8,0,1045,41,1,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1205,3,0,1310,-2,0,0 +2013,10,4,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2305,-2,0,635,-33,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,1,0,2220,-9,0,0 +2013,8,23,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,755,-3,0,1256,0,0,0 +2013,6,29,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2015,121,1,2225,149,1,0 +2013,8,7,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,22,1,2020,9,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,-2,0,1945,-9,0,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-1,0,1344,-11,0,0 +2013,4,15,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-8,0,1615,-18,0,0 +2013,8,24,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1044,-9,0,1157,-18,0,0 +2013,7,16,2,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,20,1,2103,22,1,0 +2013,10,27,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,945,7,0,1209,1,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,-3,0,1056,16,1,0 +2013,8,19,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1649,-7,0,1726,-8,0,0 +2013,8,30,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2005,5,0,2147,-6,0,0 +2013,8,30,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2000,-3,0,2139,47,1,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,-1,0,2354,-26,0,0 +2013,9,8,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1829,-4,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,21,1,1740,0,0,0 +2013,8,20,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,4,0,1310,-13,0,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-6,0,1718,-12,0,0 +2013,7,27,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-9,0,1159,-7,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,755,1,0,1025,2,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2005,11,0,2310,5,0,0 +2013,5,19,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,4,0,2000,-23,0,0 +2013,5,22,3,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,10,0,750,8,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2105,19,1,2250,-14,0,0 +2013,9,10,2,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,-2,0,1925,-23,0,0 +2013,7,19,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,932,-6,0,1750,4,0,0 +2013,6,6,4,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,3,0,1411,-2,0,0 +2013,6,1,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-4,0,1705,-18,0,0 +2013,5,13,1,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,0,0,706,-4,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-1,0,2008,-2,0,0 +2013,7,28,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,22,1,2000,30,1,0 +2013,9,26,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1520,-2,0,1810,-10,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1325,-1,0,1625,-8,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1616,2,0,1708,15,1,0 +2013,7,30,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2325,53,1,525,50,1,0 +2013,10,1,2,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1825,3,0,1944,1,0,0 +2013,9,21,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1710,-2,0,2045,-33,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2040,6,0,2242,-5,0,0 +2013,4,9,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,600,0,0,715,-5,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,0,0,1332,-16,0,0 +2013,9,25,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1835,-4,0,1940,-11,0,0 +2013,10,11,5,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,1117,4,0,1350,3,0,0 +2013,7,8,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-6,0,2200,-5,0,0 +2013,9,9,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1120,-1,0,1225,-2,0,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1620,7,0,1931,1,0,0 +2013,10,8,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-4,0,1221,-23,0,0 +2013,6,27,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1110,-2,0,1245,-22,0,0 +2013,7,30,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-1,0,1020,2,0,0 +2013,10,5,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,939,-5,0,1127,-14,0,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1007,-1,0,1629,-17,0,0 +2013,7,3,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,9,0,1040,3,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1944,133,1,2300,120,1,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1458,6,0,1959,23,1,0 +2013,4,23,2,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-10,0,1238,-10,0,0 +2013,9,11,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,954,-14,0,1310,-28,0,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1530,6,0,1650,-5,0,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1520,15,1,1820,7,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,0,0,1640,13,0,0 +2013,9,23,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,-9,0,2152,-1,0,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1735,3,0,1916,-16,0,0 +2013,6,30,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2230,2,0,440,14,0,0 +2013,7,28,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,-4,0,1745,5,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2115,36,1,2320,33,1,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1919,-1,0,2234,-10,0,0 +2013,10,5,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1356,-4,0,2005,-20,0,0 +2013,9,27,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,-5,0,110,-20,0,0 +2013,5,14,2,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1950,-4,0,2204,-8,0,0 +2013,9,27,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1115,6,0,1245,-14,0,0 +2013,8,25,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-3,0,834,-20,0,0 +2013,8,20,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-6,0,655,-11,0,0 +2013,9,6,5,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1900,0,0,2131,-31,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1225,29,1,1430,20,1,0 +2013,7,13,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1100,0,0,1225,-8,0,0 +2013,9,2,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2049,56,1,2153,45,1,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,55,1,1652,40,1,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-3,0,1233,-13,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2030,17,1,10,17,1,0 +2013,6,5,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-9,0,1225,-24,0,0 +2013,10,3,4,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,-7,0,2110,-17,0,0 +2013,8,24,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1118,-6,0,1213,-18,0,0 +2013,6,17,1,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,801,-9,0,852,-14,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,850,-3,0,1108,-21,0,0 +2013,5,24,5,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1040,10,0,1155,13,0,0 +2013,7,24,3,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,-4,0,1540,-2,0,0 +2013,5,28,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1336,11,0,1935,-12,0,0 +2013,6,20,4,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-8,0,803,1,0,0 +2013,5,14,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1837,-20,0,0 +2013,9,26,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1801,-5,0,2359,-33,0,0 +2013,7,24,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-6,0,1556,7,0,0 +2013,9,26,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,935,5,0,1105,-8,0,0 +2013,6,22,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1723,4,0,1830,3,0,0 +2013,9,12,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,0,,1729,0,1,1 +2013,4,28,7,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,705,10,0,934,-21,0,0 +2013,5,2,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-4,0,745,-17,0,0 +2013,6,11,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-4,0,2205,-18,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2155,31,1,2310,35,1,0 +2013,10,29,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-7,0,2136,-9,0,0 +2013,4,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,915,5,0,1515,-4,0,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1920,-2,0,2302,-6,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1736,0,0,2015,4,0,0 +2013,9,2,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-5,0,754,-9,0,0 +2013,6,5,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-2,0,2055,-5,0,0 +2013,9,22,7,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-1,0,1621,-9,0,0 +2013,4,21,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1115,-5,0,1448,-16,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,2,0,1311,-8,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-8,0,2352,-25,0,0 +2013,8,20,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1745,43,1,1945,34,1,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1305,6,0,1610,51,1,0 +2013,8,23,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1117,-9,0,1635,-29,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,8,0,1540,-1,0,0 +2013,8,11,7,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1215,0,,1411,0,1,1 +2013,7,11,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,17,1,1845,20,1,0 +2013,6,1,6,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-8,0,914,-13,0,0 +2013,8,8,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-6,0,2229,6,0,0 +2013,4,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,-6,0,947,-9,0,0 +2013,8,8,4,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1038,-5,0,1202,-16,0,0 +2013,8,4,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,-6,0,1934,25,1,0 +2013,6,10,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,-1,0,1335,-1,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,-5,0,1446,8,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,5,0,1857,-15,0,0 +2013,8,25,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-3,0,1408,2,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2030,14,0,5,-28,0,0 +2013,5,8,3,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-1,0,1817,14,0,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,655,-7,0,905,-16,0,0 +2013,4,17,3,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,910,0,0,1105,6,0,0 +2013,8,2,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1306,1,0,1514,14,0,0 +2013,9,23,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-2,0,1819,-15,0,0 +2013,5,28,2,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,-9,0,1740,-10,0,0 +2013,9,7,6,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-10,0,1013,-29,0,0 +2013,8,28,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-9,0,1334,-25,0,0 +2013,4,18,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,29,1,2100,63,1,0 +2013,7,5,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,3,0,900,-10,0,0 +2013,8,18,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1025,-10,0,1205,-38,0,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,7,0,1620,0,0,0 +2013,9,18,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,805,4,0,1140,-17,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,750,8,0,920,13,0,0 +2013,4,6,6,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,635,-8,0,920,-11,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,920,-5,0,1058,-18,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,52,1,1613,22,1,0 +2013,6,9,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1840,-1,0,1945,0,0,0 +2013,8,30,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1428,-1,0,1548,2,0,0 +2013,9,29,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,722,-14,0,0 +2013,4,4,4,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,600,-11,0,815,-30,0,0 +2013,9,27,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1430,-1,0,1545,-11,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1535,-3,0,1815,-19,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1935,53,1,2155,54,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2159,0,0,2357,-9,0,0 +2013,6,21,5,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,2,0,500,5,0,0 +2013,4,22,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,800,-2,0,950,-8,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1242,14,0,1455,4,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1905,40,1,2030,45,1,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2122,64,1,602,71,1,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1245,-6,0,1650,-23,0,0 +2013,10,24,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-3,0,1258,-17,0,0 +2013,4,7,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-4,0,913,-5,0,0 +2013,10,27,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1103,33,1,1245,90,1,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2130,29,1,2303,26,1,0 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2145,33,1,2255,31,1,0 +2013,5,16,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1855,11,0,1957,3,0,0 +2013,7,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1420,-4,0,1712,-17,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1602,11,0,1732,7,0,0 +2013,4,20,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-7,0,1200,-9,0,0 +2013,8,8,4,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,0,,1415,0,1,1 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,805,65,1,0 +2013,10,7,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,844,72,1,1440,70,1,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,844,-6,0,1126,-20,0,0 +2013,9,7,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1155,-10,0,1420,11,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,11,0,1905,-1,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1930,231,1,2230,219,1,0 +2013,7,5,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,840,1,0,1032,4,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1050,14,0,1750,25,1,0 +2013,4,12,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1113,19,1,1252,11,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-8,0,937,7,0,0 +2013,8,26,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,828,-6,0,1037,-12,0,0 +2013,6,26,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,-1,0,2305,2,0,0 +2013,9,30,1,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1119,-9,0,1213,-8,0,0 +2013,5,9,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-5,0,1212,13,0,0 +2013,5,12,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,1929,-20,0,0 +2013,6,19,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,735,-12,0,911,-20,0,0 +2013,4,19,5,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1025,-10,0,1309,3,0,0 +2013,4,18,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1635,0,,1655,0,1,1 +2013,9,3,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1005,-3,0,1135,4,0,0 +2013,7,27,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-5,0,1705,6,0,0 +2013,10,30,3,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,932,-5,0,1130,-6,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,-5,0,2215,-9,0,0 +2013,7,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,65,1,930,78,1,0 +2013,9,27,5,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1104,-5,0,1254,-13,0,0 +2013,10,10,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,653,-1,0,820,-17,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-3,0,1200,-11,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1906,-3,0,1958,-10,0,0 +2013,8,22,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-5,0,701,-9,0,0 +2013,5,1,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,700,-2,0,800,3,0,0 +2013,4,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2045,-5,0,2329,-18,0,0 +2013,4,23,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1220,9,0,1335,1,0,0 +2013,5,25,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,55,1,1450,43,1,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2320,13,0,738,-9,0,0 +2013,10,26,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-3,0,1638,-12,0,0 +2013,7,7,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,810,-8,0,835,-22,0,0 +2013,8,30,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-2,0,1830,-1,0,0 +2013,4,13,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,950,-22,0,0 +2013,4,15,1,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,950,-5,0,1050,22,1,0 +2013,5,20,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,813,-3,0,1035,-23,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,9,0,1310,16,1,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,-7,0,630,-12,0,0 +2013,4,7,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,645,-4,0,1041,-14,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,14,0,2200,14,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,945,17,1,1415,11,0,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1457,-2,0,1634,-19,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,0,0,1609,-7,0,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1803,21,1,2106,15,1,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2113,80,1,30,42,1,0 +2013,6,2,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-1,0,1504,11,0,0 +2013,7,12,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-10,0,827,-7,0,0 +2013,5,17,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,-9,0,1130,-18,0,0 +2013,4,23,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1218,-11,0,1330,-22,0,0 +2013,5,23,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,7,0,1825,-8,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,2,0,2330,3,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,-5,0,1110,0,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1645,6,0,1858,13,0,0 +2013,4,7,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1435,-2,0,1605,13,0,0 +2013,7,8,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,6,0,1705,-5,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1900,7,0,2040,1,0,0 +2013,4,21,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,3,0,1500,-9,0,0 +2013,10,14,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1625,70,1,1905,64,1,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-9,0,2239,-16,0,0 +2013,9,9,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,1355,9,0,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,805,2,0,1000,-8,0,0 +2013,4,23,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,905,-4,0,1216,-1,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-1,0,1210,-8,0,0 +2013,6,10,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-11,0,807,-10,0,0 +2013,8,28,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2020,1,0,2140,-2,0,0 +2013,8,14,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,0,0,1335,-9,0,0 +2013,4,3,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-2,0,707,-2,0,0 +2013,4,19,5,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,-3,0,2145,-5,0,0 +2013,7,26,5,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,-3,0,59,33,1,0 +2013,7,30,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1653,-4,0,2200,-22,0,0 +2013,7,22,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-1,0,1523,-8,0,0 +2013,4,11,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,710,2,0,914,44,1,0 +2013,6,27,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1130,9,0,1655,-5,0,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1644,17,1,115,50,1,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,0,0,1430,-15,0,0 +2013,4,16,2,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,-4,0,753,-8,0,0 +2013,6,22,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1245,0,0,1415,-3,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,39,1,1442,13,0,0 +2013,6,7,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,22,1,1200,20,1,0 +2013,10,17,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1721,28,1,2100,10,0,0 +2013,8,30,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1130,26,1,1305,47,1,0 +2013,10,8,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1050,-9,0,1502,-14,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1412,43,1,1655,117,1,0 +2013,10,9,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2035,-12,0,2300,-30,0,0 +2013,9,6,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1425,54,1,1550,53,1,0 +2013,4,28,7,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1717,4,0,2039,-26,0,0 +2013,8,28,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1150,5,0,1255,-5,0,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1220,-1,0,1509,-6,0,0 +2013,7,4,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,606,-5,0,705,-24,0,0 +2013,9,15,7,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1850,22,1,2205,9,0,0 +2013,10,26,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1922,-6,0,2031,-4,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1620,2,0,2110,0,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1030,68,1,1133,50,1,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1001,-3,0,1335,-11,0,0 +2013,8,20,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,625,12,0,740,10,0,0 +2013,7,3,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,5,0,1755,12,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2200,7,0,2310,5,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2100,-3,0,2235,0,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,85,1,1955,90,1,0 +2013,6,24,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1720,0,,1806,0,1,1 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2110,0,0,2215,-9,0,0 +2013,8,19,1,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1630,13,0,1805,-2,0,0 +2013,7,19,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1907,20,1,2023,14,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1945,31,1,2125,42,1,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,850,74,1,1018,59,1,0 +2013,4,26,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,845,19,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1514,6,0,1635,10,0,0 +2013,10,10,4,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,5,0,2250,-13,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,115,1,2354,112,1,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,1026,24,1,0 +2013,6,12,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1426,-2,0,1558,-10,0,0 +2013,7,7,7,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,90,1,1937,151,1,0 +2013,4,7,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,605,0,0,715,-20,0,0 +2013,4,9,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-8,0,1559,-10,0,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1805,23,1,1910,20,1,0 +2013,10,6,7,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,715,8,0,1017,11,0,0 +2013,7,5,5,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1810,71,1,1932,71,1,0 +2013,8,2,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1550,-4,0,1724,-8,0,0 +2013,4,30,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-8,0,1854,-20,0,0 +2013,4,1,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,-3,0,1445,-7,0,0 +2013,7,14,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,6,0,2008,6,0,0 +2013,9,22,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,2,0,1225,1,0,0 +2013,8,5,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-9,0,1316,-21,0,0 +2013,10,2,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,0,0,1450,-11,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,-1,0,1815,-11,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1050,-1,0,1240,-10,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1240,2,0,1325,7,0,0 +2013,7,23,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1105,0,0,1230,-7,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,0,0,1400,2,0,0 +2013,7,2,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,0,0,2054,-5,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,8,0,1116,-3,0,0 +2013,5,29,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1044,35,1,1455,25,1,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,640,-3,0,955,-15,0,0 +2013,6,5,3,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-1,0,952,-9,0,0 +2013,9,7,6,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1745,-9,0,2019,-12,0,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1600,-2,0,1815,-15,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,44,1,1705,34,1,0 +2013,4,10,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1500,29,1,1810,40,1,0 +2013,4,25,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1959,-8,0,2126,-14,0,0 +2013,9,9,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2105,-1,0,2335,-24,0,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1304,-2,0,2139,6,0,0 +2013,10,6,7,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1725,-4,0,2002,-4,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,-8,0,2136,-17,0,0 +2013,5,14,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,847,-7,0,1023,-11,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1030,10,0,1245,22,1,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,830,7,0,935,0,0,0 +2013,10,5,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-10,0,752,-17,0,0 +2013,8,7,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,4,0,1230,4,0,0 +2013,5,5,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,2115,-8,0,20,-1,0,0 +2013,4,19,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,11,0,2020,-1,0,0 +2013,10,27,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1930,-6,0,2204,-19,0,0 +2013,10,29,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,747,-3,0,901,-10,0,0 +2013,8,21,3,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1508,62,1,1609,50,1,0 +2013,7,18,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,59,1,2025,55,1,0 +2013,10,15,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1919,122,1,2215,100,1,0 +2013,6,14,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-4,0,2132,-13,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1725,-1,0,1855,-11,0,0 +2013,4,18,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1114,62,1,1229,57,1,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,955,21,1,1154,7,0,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,850,-2,0,1325,-3,0,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1444,16,1,1844,38,1,0 +2013,7,16,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,611,-7,0,822,5,0,0 +2013,10,30,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1323,-5,0,1553,-5,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,25,1,1730,10,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,-2,0,1038,-3,0,0 +2013,6,25,2,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,18,1,1920,21,1,0 +2013,9,3,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1930,-6,0,2040,-13,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-1,0,1500,-1,0,0 +2013,4,7,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1520,9,0,1650,-4,0,0 +2013,10,2,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,0,0,1106,-18,0,0 +2013,6,16,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1925,1,0,2115,2,0,0 +2013,4,22,1,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1605,174,1,1924,196,1,0 +2013,4,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,842,14,0,1050,15,1,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1655,-3,0,1825,2,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-4,0,1029,-6,0,0 +2013,10,10,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,739,2,0,759,-10,0,0 +2013,4,26,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,-3,0,1359,0,0,0 +2013,10,10,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1444,0,,1544,0,1,1 +2013,8,5,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1950,7,0,2244,11,0,0 +2013,5,4,6,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1441,-8,0,1552,-35,0,0 +2013,9,5,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1759,-6,0,1938,-31,0,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2105,62,1,2246,54,1,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1511,5,0,1806,-8,0,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,623,-4,0,856,-3,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,547,-5,0,719,-24,0,0 +2013,8,18,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2100,-5,0,2348,-2,0,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,800,-8,0,925,-11,0,0 +2013,10,12,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-1,0,2020,0,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,615,-3,0,825,-17,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,856,0,0,1038,-1,0,0 +2013,4,4,4,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2240,0,0,552,-7,0,0 +2013,8,3,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-1,0,1028,23,1,0 +2013,9,26,4,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,720,-2,0,1000,-31,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-4,0,1220,-13,0,0 +2013,5,10,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,9,0,1447,6,0,0 +2013,10,14,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,735,10,0,835,4,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,-5,0,1940,-17,0,0 +2013,8,13,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,930,0,0,1035,15,1,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,10,0,1700,8,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-2,0,1913,-11,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1715,13,0,2240,0,0,0 +2013,5,13,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2125,-5,0,2250,-2,0,0 +2013,8,10,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,730,-1,0,900,9,0,0 +2013,10,24,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2129,-10,0,2159,-15,0,0 +2013,9,18,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1127,-6,0,1328,-15,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,850,1,0,1051,-3,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1935,68,1,2100,68,1,0 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,-4,0,1719,-16,0,0 +2013,6,14,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1115,2,0,1310,4,0,0 +2013,7,19,5,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1615,1,0,1921,8,0,0 +2013,6,29,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,41,1,1414,33,1,0 +2013,10,5,6,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1150,10,0,1430,-18,0,0 +2013,6,27,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,0,0,1206,-3,0,0 +2013,5,6,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-5,0,1117,-13,0,0 +2013,10,13,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1125,-8,0,1245,-4,0,0 +2013,4,17,3,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1201,-5,0,2041,-13,0,0 +2013,8,6,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,3,0,911,-7,0,0 +2013,8,15,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-7,0,2001,-6,0,0 +2013,7,25,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,3,0,1211,-1,0,0 +2013,8,19,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-4,0,2126,-4,0,0 +2013,7,13,6,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,917,-1,0,1129,-2,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1819,12,0,2012,-2,0,0 +2013,6,13,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,13,0,1115,25,1,0 +2013,6,5,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,-3,0,1638,-14,0,0 +2013,6,4,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1400,2,0,1440,-5,0,0 +2013,6,14,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-2,0,1100,2,0,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1200,-3,0,1445,9,0,0 +2013,9,13,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-8,0,1036,-12,0,0 +2013,8,27,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,805,-5,0,915,-10,0,0 +2013,4,10,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1431,463,1,1609,454,1,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1420,0,0,1530,-7,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,715,-2,0,844,-15,0,0 +2013,10,21,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1437,45,1,1609,22,1,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1920,28,1,5,3,0,0 +2013,7,28,7,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,2128,-8,0,2308,16,1,0 +2013,7,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2003,96,1,2327,87,1,0 +2013,10,18,5,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,18,1,2020,7,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1715,-2,0,2010,-17,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1525,-4,0,1653,4,0,0 +2013,10,1,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,10,0,1825,10,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1910,-2,0,2045,-15,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,2035,12,0,2220,4,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,6,0,1805,2,0,0 +2013,9,23,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1216,-17,0,1340,3,0,0 +2013,9,9,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-7,0,1348,-3,0,0 +2013,6,15,6,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1716,0,0,1850,3,0,0 +2013,9,8,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2035,1,0,2223,-6,0,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1550,6,0,1724,19,1,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,900,7,0,1105,0,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,-2,0,1110,-6,0,0 +2013,8,2,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1942,7,0,2051,2,0,0 +2013,6,2,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2011,-7,0,2328,-12,0,0 +2013,7,30,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,600,-5,0,725,-6,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1510,-7,0,1738,5,0,0 +2013,6,4,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,822,-22,0,0 +2013,7,6,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-1,0,1122,0,0,0 +2013,6,11,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,6,0,1915,8,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1637,172,1,1958,158,1,0 +2013,7,2,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,9,0,2320,30,1,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1425,54,1,1747,37,1,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1930,6,0,2228,-6,0,0 +2013,9,16,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1920,8,0,2035,7,0,0 +2013,6,23,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1315,1,0,1435,8,0,0 +2013,9,16,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2125,-6,0,2220,-13,0,0 +2013,4,28,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,750,-3,0,810,-11,0,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,625,-5,0,740,-14,0,0 +2013,4,22,1,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,-7,0,1234,-13,0,0 +2013,6,8,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1705,26,1,1845,9,0,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-2,0,845,-4,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1205,0,0,1305,0,0,0 +2013,8,5,1,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1740,-5,0,2045,6,0,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,-9,0,1718,-15,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,84,1,1246,154,1,0 +2013,6,22,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-4,0,908,-12,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,5,0,1155,-13,0,0 +2013,8,3,6,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-4,0,1455,0,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1220,47,1,1345,60,1,0 +2013,8,29,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,0,0,1315,-20,0,0 +2013,4,21,7,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-4,0,1300,-8,0,0 +2013,6,17,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1350,-2,0,1504,9,0,0 +2013,7,2,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-10,0,1020,-12,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1055,1,0,1215,-6,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1925,0,0,2133,-13,0,0 +2013,4,14,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-3,0,1805,-25,0,0 +2013,7,8,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1557,-8,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,715,0,0,1054,-2,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,745,-2,0,1005,-7,0,0 +2013,5,23,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,4,0,1435,11,0,0 +2013,5,8,3,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-6,0,1215,-25,0,0 +2013,10,25,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1759,-2,0,2023,-5,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,66,1,2357,59,1,0 +2013,8,18,7,OO,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1506,11,0,1643,26,1,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2018,-5,0,2115,-22,0,0 +2013,8,26,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,-5,0,1657,7,0,0 +2013,10,10,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,-5,0,947,-16,0,0 +2013,5,1,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,-6,0,903,-10,0,0 +2013,10,12,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1028,3,0,1418,0,0,0 +2013,8,21,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-8,0,1849,-24,0,0 +2013,10,18,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,72,1,2132,61,1,0 +2013,8,28,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1436,-2,0,1623,-22,0,0 +2013,10,10,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1854,-6,0,2136,-5,0,0 +2013,5,17,5,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,606,-8,0,755,1,0,0 +2013,9,22,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1933,15,1,2045,11,0,0 +2013,6,23,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,-3,0,1615,-9,0,0 +2013,9,10,2,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1240,34,1,1335,16,1,0 +2013,7,22,1,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,5,0,2055,61,1,0 +2013,4,5,5,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,1200,-6,0,0 +2013,10,8,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1315,6,0,1405,3,0,0 +2013,8,8,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,0,0,1155,-3,0,0 +2013,4,20,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1335,30,1,1515,29,1,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-6,0,1256,-8,0,0 +2013,5,15,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,834,-9,0,1350,-24,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2035,5,0,2216,-11,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-2,0,1740,-7,0,0 +2013,4,6,6,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1315,19,1,1625,6,0,0 +2013,8,25,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-4,0,1007,-10,0,0 +2013,6,25,2,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,86,1,1600,88,1,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,71,1,1425,58,1,0 +2013,7,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1725,0,0,1940,33,1,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1755,8,0,2131,0,0,0 +2013,10,14,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,43,1,1014,42,1,0 +2013,5,9,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-6,0,1354,-16,0,0 +2013,9,27,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,645,-3,0,1519,-12,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,-1,0,1720,21,1,0 +2013,10,12,6,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,920,0,0,1005,1,0,0 +2013,7,9,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,745,-4,0,810,7,0,0 +2013,5,14,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,-4,0,1008,-4,0,0 +2013,7,25,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2105,57,1,2235,54,1,0 +2013,8,14,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,0,0,1525,0,0,0 +2013,6,25,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1035,24,1,1105,107,1,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-1,0,1155,-8,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1020,-5,0,1310,3,0,0 +2013,4,30,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2045,-5,0,2200,7,0,0 +2013,8,20,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,15,1,1615,3,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2000,0,,2100,0,1,1 +2013,10,18,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-4,0,1335,-5,0,0 +2013,6,30,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1135,-7,0,1230,-6,0,0 +2013,8,27,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1528,-8,0,1830,-25,0,0 +2013,8,23,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,10,0,1010,7,0,0 +2013,4,7,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,1350,-18,0,0 +2013,5,10,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1600,0,,1645,0,1,1 +2013,5,23,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1506,36,1,1720,38,1,0 +2013,7,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1845,2,0,2000,-5,0,0 +2013,9,17,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,747,0,0,828,4,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2045,8,0,2225,-10,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,6,0,943,-7,0,0 +2013,4,13,6,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1510,26,1,1655,5,0,0 +2013,9,26,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-7,0,1356,-13,0,0 +2013,9,15,7,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1750,-7,0,1938,27,1,0 +2013,8,3,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1110,21,1,1226,-1,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,2,0,1651,-4,0,0 +2013,8,27,2,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,-5,0,2139,-3,0,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,735,-3,0,1012,-16,0,0 +2013,10,30,3,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1629,3,0,1950,-18,0,0 +2013,9,6,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1937,1,0,2056,-27,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,905,-2,0,1252,-6,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1940,1,0,50,6,0,0 +2013,7,17,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,730,-9,0,1019,-7,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,630,0,0,800,6,0,0 +2013,6,23,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1115,-7,0,1230,-28,0,0 +2013,6,29,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,1,0,1305,0,0,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2325,11,0,730,7,0,0 +2013,5,27,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1846,-11,0,1945,-13,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,738,-5,0,828,-3,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,21,1,2120,15,1,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1829,-6,0,2011,9,0,0 +2013,5,31,5,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1509,42,1,1845,45,1,0 +2013,7,17,3,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-6,0,1922,-31,0,0 +2013,5,28,2,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,834,-5,0,1054,-10,0,0 +2013,4,24,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,72,1,2129,71,1,0 +2013,5,11,6,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,1530,32,1,1746,8,0,0 +2013,8,31,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1200,1,0,1230,11,0,0 +2013,7,11,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,64,1,2045,128,1,0 +2013,9,24,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,905,-2,0,1022,-9,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,-2,0,1806,-10,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2146,-6,0,2346,-22,0,0 +2013,10,11,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1359,34,1,2205,25,1,0 +2013,6,8,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1415,67,1,1645,72,1,0 +2013,7,24,3,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-1,0,813,-3,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1346,-1,0,1513,-6,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,-7,0,1445,-5,0,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,845,-1,0,1205,-11,0,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,5,0,1550,15,1,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2005,-7,0,2130,-15,0,0 +2013,10,4,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-4,0,1836,3,0,0 +2013,9,22,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-4,0,1810,-21,0,0 +2013,5,16,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-7,0,1031,-13,0,0 +2013,10,7,1,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-6,0,1024,-8,0,0 +2013,9,12,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1535,0,,1704,0,1,1 +2013,7,26,5,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,0,0,1240,-4,0,0 +2013,9,13,5,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,84,1,2110,101,1,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,910,1,0,1050,-7,0,0 +2013,6,26,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1030,134,1,1123,171,1,0 +2013,8,8,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1011,11,0,1241,2,0,0 +2013,8,15,4,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1305,41,1,1910,38,1,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1100,26,1,1233,8,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-4,0,825,-11,0,0 +2013,6,29,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1411,0,0,1543,1,0,0 +2013,10,1,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2050,-2,0,2210,-7,0,0 +2013,5,27,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,-4,0,1310,-17,0,0 +2013,8,7,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1100,-7,0,1432,5,0,0 +2013,9,15,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,16,1,2056,15,1,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1923,3,0,2240,-3,0,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,-5,0,1207,-8,0,0 +2013,10,11,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1300,-2,0,1335,-3,0,0 +2013,8,23,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1725,3,0,1900,-4,0,0 +2013,5,21,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1425,-2,0,2300,2,0,0 +2013,5,21,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,754,-5,0,948,-7,0,0 +2013,4,15,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1514,-2,0,2200,-16,0,0 +2013,8,8,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,935,0,0,1100,-6,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,740,-3,0,1545,31,1,0 +2013,10,21,1,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1900,201,1,2101,173,1,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,-8,0,737,-25,0,0 +2013,10,8,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1252,-4,0,1550,-5,0,0 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,-3,0,1350,-17,0,0 +2013,6,17,1,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1214,10,0,1819,-16,0,0 +2013,8,16,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,6,0,2029,1,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1609,41,1,1739,32,1,0 +2013,4,22,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1834,20,1,2104,61,1,0 +2013,4,28,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,729,347,1,854,376,1,0 +2013,8,2,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,-1,0,1925,-7,0,0 +2013,7,29,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1500,-2,0,1845,-12,0,0 +2013,7,19,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1145,2,0,1750,-21,0,0 +2013,5,19,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1510,-4,0,1716,1,0,0 +2013,9,9,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-13,0,2030,-5,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2010,121,1,2158,135,1,0 +2013,8,19,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-6,0,700,-11,0,0 +2013,6,1,6,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-7,0,2227,-16,0,0 +2013,7,24,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,-1,0,1941,1,0,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,9,0,1800,0,0,0 +2013,5,13,1,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,25,1,1335,13,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-8,0,1243,-31,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,-3,0,903,-7,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,0,0,1200,-4,0,0 +2013,7,29,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1517,29,1,1621,21,1,0 +2013,6,13,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-4,0,1112,-5,0,0 +2013,4,14,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,725,-3,0,1040,-21,0,0 +2013,4,18,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1710,78,1,1925,66,1,0 +2013,10,19,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,15,1,2053,6,0,0 +2013,8,18,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,629,-3,0,900,-29,0,0 +2013,9,7,6,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,3,0,2110,14,0,0 +2013,9,22,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,-4,0,750,-14,0,0 +2013,8,31,6,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1320,-4,0,1615,-8,0,0 +2013,5,19,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,-5,0,1733,-15,0,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1410,2,0,1505,0,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,22,1,1023,28,1,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1910,-5,0,2135,-3,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1930,-2,0,2100,2,0,0 +2013,8,18,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-2,0,1157,-7,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1530,6,0,2000,-24,0,0 +2013,9,30,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1026,-3,0,1130,-4,0,0 +2013,5,18,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,222,1,920,216,1,0 +2013,10,29,2,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,-4,0,1756,-10,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,9,0,1550,-3,0,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,69,1,1335,64,1,0 +2013,10,5,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-2,0,1614,-2,0,0 +2013,8,7,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1254,4,0,1613,-30,0,0 +2013,8,20,2,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,815,-4,0,1017,-9,0,0 +2013,10,9,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1020,-4,0,1135,-10,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,956,-3,0,1129,-2,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,-3,0,956,15,1,0 +2013,5,9,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1755,-8,0,1957,4,0,0 +2013,8,13,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-7,0,1414,-6,0,0 +2013,9,23,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,952,-1,0,1120,-10,0,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1050,16,1,1210,7,0,0 +2013,10,4,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-5,0,625,-22,0,0 +2013,9,5,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,813,-2,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1014,1,0,1138,0,0,0 +2013,6,19,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1100,-3,0,1459,-13,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1850,6,0,2205,3,0,0 +2013,4,8,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-2,0,612,6,0,0 +2013,10,20,7,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1750,4,0,1855,-15,0,0 +2013,8,24,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11042,Cleveland-Hopkins International,Cleveland,OH,630,-5,0,1347,-17,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1050,-2,0,1241,-26,0,0 +2013,9,25,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,-3,0,1925,-1,0,0 +2013,5,4,6,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,0,0,1805,1,0,0 +2013,9,26,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-2,0,1526,-13,0,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,755,-6,0,855,5,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,924,-3,0,1048,-5,0,0 +2013,10,6,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-3,0,1325,-23,0,0 +2013,8,30,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,757,0,0,952,0,0,0 +2013,7,1,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,52,1,1940,52,1,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2015,13,0,2336,1,0,0 +2013,10,29,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1545,38,1,1920,1,0,0 +2013,9,14,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1255,-6,0,1445,-21,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1940,0,0,2245,-17,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-2,0,1110,-4,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,0,0,1543,7,0,0 +2013,6,12,3,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,6,0,1845,12,0,0 +2013,5,5,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,22,1,1910,9,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1445,9,0,1730,1,0,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1620,-1,0,2215,16,1,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,2,0,928,-7,0,0 +2013,8,31,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1440,36,1,1600,21,1,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,805,-2,0,925,-4,0,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,840,-1,0,1000,-5,0,0 +2013,6,15,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,2,0,1351,4,0,0 +2013,7,13,6,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1155,0,0,1440,5,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-5,0,1800,-2,0,0 +2013,9,5,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,930,6,0,1120,-10,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,16,1,1149,19,1,0 +2013,7,19,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1038,-6,0,1137,-7,0,0 +2013,9,11,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1914,-8,0,2021,-5,0,0 +2013,5,24,5,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,48,13,0,630,3,0,0 +2013,6,20,4,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1320,8,0,1935,10,0,0 +2013,6,18,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1615,-5,0,1822,-15,0,0 +2013,7,24,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1117,-6,0,1331,-7,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,4,0,1755,1,0,0 +2013,10,30,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1855,2,0,2113,-11,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2105,19,1,2300,-19,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2227,275,1,59,258,1,0 +2013,8,18,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,38,1,1840,27,1,0 +2013,10,22,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,841,0,0,949,29,1,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-7,0,1055,-19,0,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,3,0,1500,-6,0,0 +2013,7,28,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-8,0,955,-21,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1849,-4,0,2139,-26,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-2,0,1200,-13,0,0 +2013,8,17,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1437,18,1,1626,9,0,0 +2013,4,13,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,955,0,0,1230,-12,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1113,0,0,1400,-15,0,0 +2013,5,26,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-1,0,1120,-21,0,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1055,-3,0,1411,-4,0,0 +2013,8,17,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,12,0,805,24,1,0 +2013,4,23,2,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1200,10,0,1518,8,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1325,8,0,1545,6,0,0 +2013,8,1,4,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2100,-5,0,2325,-8,0,0 +2013,6,2,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,810,-1,0,1650,-3,0,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,-4,0,1500,-6,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2025,0,0,2115,-1,0,0 +2013,5,18,6,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-23,0,500,-24,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2259,62,1,2358,64,1,0 +2013,10,21,1,EV,11618,Newark Liberty International,Newark,NJ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,-2,0,939,-10,0,0 +2013,10,23,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,-3,0,955,-2,0,0 +2013,9,13,5,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-10,0,1631,-33,0,0 +2013,9,26,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,176,1,1943,162,1,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1904,6,0,2055,-16,0,0 +2013,6,18,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,-8,0,1315,-11,0,0 +2013,6,23,7,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,715,24,1,852,13,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-4,0,1914,-11,0,0 +2013,6,14,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1124,0,0,1357,-8,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,810,22,1,1022,14,0,0 +2013,10,24,4,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1015,7,0,1825,-1,0,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-7,0,758,-10,0,0 +2013,10,12,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-3,0,940,-4,0,0 +2013,4,12,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1436,2,0,1623,-7,0,0 +2013,4,1,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,615,-5,0,721,-6,0,0 +2013,9,11,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,720,-2,0,1330,6,0,0 +2013,4,5,5,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,819,2,0,1059,41,1,0 +2013,4,3,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1653,-4,0,1802,-2,0,0 +2013,7,20,6,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,-10,0,2203,-25,0,0 +2013,7,22,1,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1715,-3,0,2048,-19,0,0 +2013,8,26,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-9,0,739,4,0,0 +2013,7,20,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-5,0,1129,-7,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1610,11,0,1630,8,0,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,831,-3,0,1128,-4,0,0 +2013,6,7,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,0,,1312,0,1,1 +2013,8,8,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,655,-7,0,825,-2,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2112,-1,0,129,0,0,0 +2013,6,3,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,-6,0,1330,-13,0,0 +2013,9,13,5,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,29,1,1750,24,1,0 +2013,8,18,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1830,-1,0,2038,-10,0,0 +2013,6,16,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,21,1,1937,44,1,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1521,18,1,1650,9,0,0 +2013,6,22,6,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-3,0,720,-25,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2036,-9,0,2204,-14,0,0 +2013,8,16,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1127,-2,0,1537,1,0,0 +2013,10,3,4,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2325,-2,0,543,-1,0,0 +2013,10,7,1,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,655,-1,0,1255,-13,0,0 +2013,7,23,2,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1532,47,1,1633,40,1,0 +2013,5,2,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1911,-2,0,2028,-16,0,0 +2013,10,13,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,704,203,1,1220,192,1,0 +2013,4,8,1,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1610,-3,0,1758,-20,0,0 +2013,7,16,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,830,-4,0,940,-14,0,0 +2013,7,27,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1703,21,1,1807,20,1,0 +2013,6,8,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,855,0,0,1105,-2,0,0 +2013,4,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,75,1,1054,60,1,0 +2013,8,17,6,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1618,-4,0,1926,-24,0,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-6,0,2050,-2,0,0 +2013,9,4,3,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,615,-1,0,740,-11,0,0 +2013,10,22,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-4,0,1844,-6,0,0 +2013,5,26,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-10,0,1040,-26,0,0 +2013,7,12,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-1,0,1217,-6,0,0 +2013,4,28,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-8,0,1730,-7,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1500,4,0,1610,-2,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,37,1,859,25,1,0 +2013,7,15,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1800,55,1,1905,80,1,0 +2013,4,11,4,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1310,5,0,1800,-6,0,0 +2013,9,16,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1759,12,0,1926,1,0,0 +2013,6,6,4,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,7,0,1820,-15,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,820,26,1,1041,21,1,0 +2013,4,24,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,2,0,1035,-3,0,0 +2013,10,3,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1235,73,1,1403,72,1,0 +2013,6,6,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,17,1,1330,23,1,0 +2013,8,11,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1605,28,1,2024,10,0,0 +2013,10,31,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1003,-1,0,1045,-3,0,0 +2013,8,20,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,0,0,1334,-4,0,0 +2013,5,6,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-6,0,1529,1,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2155,17,1,2320,14,0,0 +2013,4,12,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,720,-3,0,1109,26,1,0 +2013,9,6,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,7,0,1418,-7,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,-2,0,1815,10,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-2,0,930,-8,0,0 +2013,7,21,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1835,-8,0,2102,4,0,0 +2013,6,6,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,48,1,1705,76,1,0 +2013,9,11,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,701,-4,0,919,-6,0,0 +2013,6,20,4,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,650,-6,0,956,-7,0,0 +2013,8,19,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1100,-4,0,1200,-3,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-5,0,2005,-29,0,0 +2013,5,27,1,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,825,-5,0,1232,11,0,0 +2013,7,6,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1138,-7,0,1700,-9,0,0 +2013,10,1,2,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1356,-3,0,1528,-3,0,0 +2013,7,8,1,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2100,-2,0,525,3,0,0 +2013,10,29,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-6,0,1425,-4,0,0 +2013,8,30,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,12,0,1935,9,0,0 +2013,4,28,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2237,-4,0,711,12,0,0 +2013,5,29,3,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,4,0,2028,-4,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1600,36,1,1810,43,1,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1610,-3,0,2157,-17,0,0 +2013,4,4,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-1,0,1032,-5,0,0 +2013,8,21,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-7,0,1105,-25,0,0 +2013,10,4,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,910,-1,0,1145,5,0,0 +2013,5,21,2,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1731,-3,0,2044,0,0,0 +2013,4,16,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-6,0,1854,-20,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,18,1,1720,0,0,0 +2013,8,21,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-5,0,1922,-20,0,0 +2013,10,10,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1739,-1,0,1821,-7,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,106,1,1740,89,1,0 +2013,9,4,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1900,-2,0,2010,-5,0,0 +2013,9,18,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-2,0,458,-15,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1356,-4,0,1605,2,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,5,0,1635,-14,0,0 +2013,8,3,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1151,4,0,1259,3,0,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1420,5,0,1721,84,1,0 +2013,6,24,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,700,3,0,820,1,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2201,-4,0,2312,15,1,0 +2013,9,22,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,2,0,1221,-6,0,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,13,0,1057,45,1,0 +2013,5,10,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-5,0,1229,3,0,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,630,17,1,1230,3,0,0 +2013,8,19,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,22,1,2056,26,1,0 +2013,10,24,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1901,-2,0,2215,-20,0,0 +2013,6,14,5,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,-2,0,2110,0,0,0 +2013,7,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1226,-3,0,1421,25,1,0 +2013,5,19,7,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,1,0,2049,-13,0,0 +2013,4,18,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1125,179,1,1220,176,1,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1357,-2,0,1455,-8,0,0 +2013,7,4,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,925,-1,0,1105,-8,0,0 +2013,4,3,3,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,605,-11,0,743,-20,0,0 +2013,4,6,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1450,3,0,1605,1,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1125,6,0,1452,-4,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1730,27,1,1925,13,0,0 +2013,7,18,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1010,-5,0,0 +2013,5,31,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1000,-9,0,1116,-11,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1245,15,1,1500,8,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2218,-4,0,2347,-24,0,0 +2013,10,18,5,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,955,-2,0,1116,-6,0,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1510,150,1,1559,145,1,0 +2013,9,9,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-5,0,1045,23,1,0 +2013,4,25,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,18,1,2045,5,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,64,1,1320,85,1,0 +2013,7,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,755,-1,0,1125,-7,0,0 +2013,6,2,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1910,17,1,2050,39,1,0 +2013,9,6,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-1,0,1625,-11,0,0 +2013,8,17,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2121,-3,0,521,-1,0,0 +2013,10,25,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,0,0,1500,-12,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-3,0,1010,-6,0,0 +2013,9,2,1,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-6,0,2003,-6,0,0 +2013,6,26,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,141,1,1922,144,1,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1935,-7,0,2058,7,0,0 +2013,7,29,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-3,0,636,-1,0,0 +2013,5,22,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1325,45,1,1443,23,1,0 +2013,10,29,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1910,7,0,2035,-11,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1557,20,1,2137,36,1,0 +2013,10,11,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,940,-9,0,1046,-7,0,0 +2013,4,29,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,755,-3,0,1049,-7,0,0 +2013,8,25,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1905,6,0,2035,-8,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1935,-1,0,2136,-20,0,0 +2013,10,9,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,952,-8,0,1118,-24,0,0 +2013,7,24,3,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-2,0,1408,-8,0,0 +2013,5,13,1,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,29,1,2300,-29,0,0 +2013,6,9,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1503,-6,0,1516,-13,0,0 +2013,8,18,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1525,25,1,1645,26,1,0 +2013,7,19,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,-4,0,2215,-15,0,0 +2013,4,6,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,700,-7,0,819,-10,0,0 +2013,7,31,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1004,22,1,1218,15,1,0 +2013,9,23,1,OO,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1815,86,1,2220,72,1,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,7,0,1327,12,0,0 +2013,7,23,2,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,808,-6,0,926,-3,0,0 +2013,4,30,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1400,-10,0,1714,0,0,0 +2013,10,8,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2309,-8,0,721,-2,0,0 +2013,5,11,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,-7,0,1845,-15,0,0 +2013,10,10,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1824,81,1,1958,71,1,0 +2013,4,11,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,720,-4,0,919,4,0,0 +2013,7,18,4,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,-5,0,2305,13,0,0 +2013,8,12,1,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,22,1,1718,8,0,0 +2013,9,9,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-6,0,625,-11,0,0 +2013,6,25,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1041,-3,0,1155,-13,0,0 +2013,8,22,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,50,1,1630,43,1,0 +2013,4,10,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1555,-7,0,1715,-8,0,0 +2013,7,3,3,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2339,12,0,553,26,1,0 +2013,7,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,620,-1,0,1208,5,0,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,0,0,1825,-11,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,629,-4,0,1330,8,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,2000,-2,0,2320,-6,0,0 +2013,5,18,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1605,23,1,43,7,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,-4,0,2000,14,0,0 +2013,8,27,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1900,13,0,2015,14,0,0 +2013,5,2,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,-2,0,1845,15,1,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,-9,0,1500,55,1,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,20,1,1725,20,1,0 +2013,9,30,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1108,-7,0,1214,0,0,0 +2013,5,4,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-8,0,2326,0,0,0 +2013,8,19,1,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,925,-1,0,1305,-4,0,0 +2013,5,18,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1654,-6,0,1840,-14,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1453,11,0,1604,10,0,0 +2013,9,8,7,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1241,54,1,1629,66,1,0 +2013,9,13,5,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,124,1,928,127,1,0 +2013,10,13,7,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1408,-10,0,1611,-17,0,0 +2013,7,9,2,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1437,0,,1610,0,1,1 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1330,58,1,1800,50,1,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-1,0,1516,19,1,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,2,0,2055,-2,0,0 +2013,9,10,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1554,-7,0,1628,-3,0,0 +2013,10,25,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2213,-7,0,2349,-16,0,0 +2013,9,15,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,-8,0,2131,-10,0,0 +2013,7,15,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,2045,5,0,2140,-11,0,0 +2013,4,23,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-7,0,1013,1,0,0 +2013,10,7,1,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1850,0,0,2212,-10,0,0 +2013,7,13,6,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-3,0,1540,-8,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,5,0,1930,1,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1740,-2,0,2100,-8,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2045,15,1,2222,9,0,0 +2013,10,19,6,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,855,-1,0,1205,-2,0,0 +2013,5,29,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-7,0,1005,5,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1645,0,,1905,0,1,1 +2013,5,16,4,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1908,19,1,2055,25,1,0 +2013,5,22,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,834,-10,0,1350,-24,0,0 +2013,6,14,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1415,8,0,1555,6,0,0 +2013,5,15,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1523,0,0,1814,1,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1640,-1,0,1850,-6,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,2,0,1056,-10,0,0 +2013,6,4,2,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,1105,0,0,1330,-9,0,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1308,14,0,1413,32,1,0 +2013,10,24,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1827,-4,0,2105,-7,0,0 +2013,9,15,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,4,0,1506,-3,0,0 +2013,6,18,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,12,0,801,15,1,0 +2013,7,18,4,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1029,0,0,1035,-8,0,0 +2013,7,9,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1945,19,1,2105,10,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1635,2,0,1800,-12,0,0 +2013,8,14,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,44,1,932,48,1,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1600,16,1,1730,0,0,0 +2013,5,28,2,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,720,-7,0,940,-23,0,0 +2013,9,1,7,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1803,18,1,2109,9,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1440,-5,0,1850,-10,0,0 +2013,8,30,5,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,0,0,2145,-5,0,0 +2013,6,30,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,9,0,1319,12,0,0 +2013,4,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,830,6,0,1005,5,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1300,17,1,1505,10,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-4,0,1058,-11,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1505,15,1,2251,32,1,0 +2013,8,21,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1415,6,0,1525,-1,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1455,8,0,1600,11,0,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1740,13,0,2300,26,1,0 +2013,5,5,7,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1740,-13,0,1943,-14,0,0 +2013,7,12,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-2,0,1408,10,0,0 +2013,7,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,39,1,1458,29,1,0 +2013,6,20,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,31,1,2215,16,1,0 +2013,5,7,2,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,-12,0,758,-19,0,0 +2013,7,14,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1111,-7,0,1250,-26,0,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1552,-4,0,1726,-6,0,0 +2013,5,7,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-4,0,2215,-11,0,0 +2013,4,4,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1451,132,1,1746,160,1,0 +2013,5,5,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-9,0,1004,-6,0,0 +2013,7,1,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,1,0,923,9,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1410,15,1,1725,7,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1030,-3,0,1302,-5,0,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1210,85,1,1325,95,1,0 +2013,8,20,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,-4,0,2119,22,1,0 +2013,8,6,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,850,12,0,1010,4,0,0 +2013,7,15,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,83,1,2156,59,1,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,-1,0,1543,-12,0,0 +2013,7,21,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1536,6,0,2044,-6,0,0 +2013,10,4,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,925,2,0,1440,-9,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2035,-2,0,2330,13,0,0 +2013,9,19,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,958,-3,0,1648,0,0,0 +2013,4,24,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-9,0,1155,5,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1205,2,0,1650,-4,0,0 +2013,9,15,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,38,1,1510,36,1,0 +2013,9,29,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1935,-2,0,2101,-13,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1500,-1,0,1835,-12,0,0 +2013,9,8,7,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2007,-6,0,2326,-8,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1735,52,1,2255,34,1,0 +2013,4,29,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1015,-2,0,1259,-18,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2000,7,0,2130,-2,0,0 +2013,5,9,4,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1200,0,,1409,0,1,1 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,-4,0,1311,-8,0,0 +2013,8,28,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-6,0,641,-4,0,0 +2013,6,18,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-9,0,1035,-14,0,0 +2013,10,21,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-4,0,1043,-15,0,0 +2013,4,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1812,75,1,2032,73,1,0 +2013,5,19,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,721,-2,0,909,-9,0,0 +2013,8,23,5,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,6,0,2110,-5,0,0 +2013,10,30,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1529,13,0,1845,18,1,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1750,0,0,2045,4,0,0 +2013,5,23,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2032,-3,0,2254,-2,0,0 +2013,10,19,6,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,2,0,845,-2,0,0 +2013,6,22,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1525,111,1,1636,102,1,0 +2013,8,6,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-2,0,840,-12,0,0 +2013,10,31,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,7,0,1819,-13,0,0 +2013,7,3,3,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2255,7,0,612,7,0,0 +2013,9,7,6,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-7,0,902,-48,0,0 +2013,9,17,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,730,-6,0,1110,-21,0,0 +2013,5,23,4,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1347,-2,0,1558,-5,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1840,60,1,2210,67,1,0 +2013,6,1,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,0,0,1858,-9,0,0 +2013,10,29,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,20,1,750,-14,0,0 +2013,7,11,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,0,0,820,4,0,0 +2013,7,17,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,-1,0,1740,-23,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,835,1,0,1045,-1,0,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1530,-1,0,1730,-5,0,0 +2013,6,23,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,905,-4,0,1020,-17,0,0 +2013,9,16,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,-2,0,1900,-2,0,0 +2013,8,12,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,1,0,1405,-11,0,0 +2013,7,16,2,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,-6,0,1747,-6,0,0 +2013,4,22,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2154,33,1,23,71,1,0 +2013,5,5,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1732,-4,0,1927,-14,0,0 +2013,6,6,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1315,-3,0,1440,-17,0,0 +2013,5,15,3,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1040,-2,0,1250,-4,0,0 +2013,4,25,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2315,-2,0,518,-1,0,0 +2013,5,15,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,-2,0,2300,-13,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1518,-4,0,1616,-13,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-2,0,1137,13,0,0 +2013,6,14,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1200,-3,0,1310,-17,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,-3,0,1333,-16,0,0 +2013,9,26,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,951,-3,0,1135,-2,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1700,2,0,1815,-14,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,0,0,1735,-5,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,12,0,15,6,0,0 +2013,4,28,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1445,-2,0,1600,-9,0,0 +2013,8,3,6,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,-2,0,1040,-16,0,0 +2013,5,9,4,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,1,0,730,10,0,0 +2013,10,28,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,-6,0,1815,-14,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1010,-1,0,1531,8,0,0 +2013,8,14,3,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1035,3,0,1509,-3,0,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-4,0,2150,0,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,10,0,5,2,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1325,-3,0,1520,-10,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-5,0,1708,-2,0,0 +2013,9,14,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-5,0,1608,5,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-3,0,1210,-4,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2235,-4,0,2325,-7,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1307,78,1,1611,65,1,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2110,103,1,2327,94,1,0 +2013,7,16,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-5,0,1815,16,1,0 +2013,10,12,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1700,-8,0,2043,-19,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,959,-5,0,1005,-10,0,0 +2013,6,5,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1015,-6,0,1130,-22,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,1605,-12,0,0 +2013,4,25,4,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1942,-1,0,2314,-16,0,0 +2013,9,25,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,1730,-8,0,1854,-12,0,0 +2013,10,28,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1529,-6,0,1649,22,1,0 +2013,6,17,1,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1235,0,0,2100,-27,0,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1515,6,0,1650,4,0,0 +2013,5,19,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1326,6,0,1459,3,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1118,-8,0,1253,-8,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,757,-7,0,1214,15,1,0 +2013,7,8,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,1,0,1559,-6,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,8,0,1640,23,1,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,48,1,1915,42,1,0 +2013,6,21,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-3,0,1855,-9,0,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1502,70,1,1608,67,1,0 +2013,10,22,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1329,1,0,1655,-20,0,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,5,0,1455,0,0,0 +2013,10,22,2,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1755,-8,0,2018,-16,0,0 +2013,6,21,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1516,5,0,0 +2013,7,24,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-3,0,1925,-11,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,705,-1,0,830,-1,0,0 +2013,10,26,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-6,0,2059,-11,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,20,1,1205,43,1,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,-1,0,915,-1,0,0 +2013,6,11,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1450,-5,0,1613,-3,0,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2003,-3,0,2220,14,0,0 +2013,6,26,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,805,11,0,855,7,0,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,4,0,1515,7,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1944,37,1,2047,27,1,0 +2013,6,18,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2205,32,1,2350,23,1,0 +2013,6,9,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,-1,0,951,-3,0,0 +2013,9,20,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2015,5,0,2140,6,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,940,9,0,1125,0,0,0 +2013,4,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1755,-2,0,1930,-28,0,0 +2013,8,14,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-3,0,1015,-13,0,0 +2013,4,30,2,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1530,-5,0,1855,-38,0,0 +2013,7,11,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1226,6,0,2017,-16,0,0 +2013,6,3,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,28,1,1058,30,1,0 +2013,9,16,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1734,0,0,1949,-15,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,920,2,0,1235,19,1,0 +2013,4,30,2,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,700,-10,0,1120,-5,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1920,1,0,2135,-6,0,0 +2013,9,29,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,725,7,0,1020,6,0,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,830,0,0,1125,-5,0,0 +2013,7,2,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-3,0,1628,-7,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,47,1,2115,48,1,0 +2013,7,23,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,900,-6,0,1455,-3,0,0 +2013,4,3,3,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1455,-3,0,1735,-3,0,0 +2013,5,24,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,24,1,1900,5,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1045,4,0,1210,-6,0,0 +2013,7,30,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1150,-1,0,1452,6,0,0 +2013,4,13,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1910,-2,0,2010,0,0,0 +2013,6,15,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-2,0,1413,-14,0,0 +2013,5,25,6,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,825,-15,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1610,17,1,1720,-3,0,0 +2013,7,28,7,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,100,1,2229,111,1,0 +2013,10,11,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1840,-6,0,2029,-11,0,0 +2013,7,9,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,24,1,2044,9,0,0 +2013,7,17,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,0,0,1335,-3,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,850,-4,0,1020,-14,0,0 +2013,7,27,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-4,0,1814,-15,0,0 +2013,5,6,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,27,1,1643,23,1,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,710,-4,0,1200,-32,0,0 +2013,9,12,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,706,-2,0,1052,13,0,0 +2013,8,29,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1355,-7,0,1455,-15,0,0 +2013,7,13,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1104,-1,0,1450,5,0,0 +2013,6,10,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1255,-8,0,1504,60,1,0 +2013,9,1,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,840,3,0,1205,3,0,0 +2013,8,15,4,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,123,1,1924,103,1,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,-5,0,2154,4,0,0 +2013,4,28,7,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-16,0,1029,-13,0,0 +2013,5,10,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-1,0,2130,6,0,0 +2013,7,26,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-3,0,1023,-9,0,0 +2013,7,18,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-5,0,2031,-14,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,745,0,0,1500,-16,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1310,29,1,1630,26,1,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1700,-3,0,1900,3,0,0 +2013,7,20,6,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1825,-4,0,2123,-35,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,930,-1,0,1045,-10,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2120,-2,0,20,-3,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,42,1,2045,28,1,0 +2013,6,4,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,-6,0,1405,5,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1815,3,0,1941,22,1,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2100,3,0,2150,-3,0,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1155,-2,0,1320,-17,0,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,712,-4,0,947,-9,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,817,9,0,1412,30,1,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1605,72,1,1720,57,1,0 +2013,5,10,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1030,-2,0,1220,-8,0,0 +2013,8,10,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,6,0,1836,-8,0,0 +2013,8,30,5,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2055,20,1,605,25,1,0 +2013,10,14,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1250,4,0,1606,-13,0,0 +2013,10,30,3,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1117,11,0,1235,3,0,0 +2013,8,28,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,835,10,0,1431,1,0,0 +2013,9,14,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1340,3,0,1445,0,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,730,-5,0,850,-9,0,0 +2013,10,16,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1500,0,0,1810,-14,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1128,-5,0,1312,-4,0,0 +2013,4,29,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,905,-3,0,1035,-9,0,0 +2013,5,12,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1529,-8,0,1550,-14,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1037,-3,0,1155,1,0,0 +2013,7,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,1029,-11,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,825,-2,0,1008,-15,0,0 +2013,7,5,5,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1205,-9,0,1316,-6,0,0 +2013,10,28,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1640,30,1,1840,18,1,0 +2013,8,19,1,UA,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1011,-2,0,1134,-9,0,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,703,0,0,1047,-16,0,0 +2013,7,29,1,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1000,-1,0,1255,-13,0,0 +2013,8,26,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,920,9,0,1220,-35,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1305,7,0,1755,-6,0,0 +2013,4,27,6,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1315,4,0,2122,-12,0,0 +2013,4,23,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1653,-2,0,1827,-20,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,725,-2,0,1040,-14,0,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1705,14,0,1825,25,1,0 +2013,4,28,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1015,-8,0,1259,-16,0,0 +2013,10,22,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-10,0,949,11,0,0 +2013,10,21,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1047,11,0,1420,7,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1031,-7,0,1056,-21,0,0 +2013,7,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1350,3,0,1550,-17,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2204,31,1,2339,21,1,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1200,-5,0,1252,-5,0,0 +2013,8,8,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,-4,0,1010,-11,0,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1140,-2,0,1245,0,0,0 +2013,8,4,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-4,0,1114,-19,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1251,-4,0,1405,-15,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1727,4,0,2008,-8,0,0 +2013,7,24,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1722,-10,0,1808,-17,0,0 +2013,9,10,2,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1053,-9,0,1239,-19,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2248,0,0,712,-21,0,0 +2013,5,28,2,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-2,0,915,-18,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1518,13,0,1740,-3,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1855,3,0,2245,-8,0,0 +2013,6,30,7,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1629,-6,0,1916,-8,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2051,-1,0,2358,12,0,0 +2013,5,1,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1402,-4,0,1745,-14,0,0 +2013,8,16,5,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,810,19,1,1000,8,0,0 +2013,4,17,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1225,104,1,1355,127,1,0 +2013,5,9,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,815,-1,0,940,7,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,-5,0,1614,-4,0,0 +2013,4,20,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-1,0,1630,-3,0,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1510,-5,0,1819,-33,0,0 +2013,9,12,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,748,-2,0,1033,14,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1710,33,1,2300,51,1,0 +2013,7,28,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,-7,0,2028,-12,0,0 +2013,6,10,1,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,10,0,1455,44,1,0 +2013,4,10,3,EV,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1308,-8,0,1520,-5,0,0 +2013,10,8,2,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,-4,0,1710,5,0,0 +2013,10,3,4,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1450,191,1,1820,200,1,0 +2013,5,28,2,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,27,1,1919,5,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1730,44,1,2315,37,1,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1315,-1,0,1420,-8,0,0 +2013,7,11,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,-3,0,1840,-7,0,0 +2013,4,20,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1715,-1,0,1810,-9,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,940,2,0,1030,-2,0,0 +2013,5,18,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,1245,-3,0,1437,-24,0,0 +2013,10,25,5,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1927,-4,0,2148,-9,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,811,5,0,1207,-10,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2155,-5,0,2308,-18,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1010,-5,0,1302,-19,0,0 +2013,9,22,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2232,-9,0,707,-25,0,0 +2013,10,29,2,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2015,-8,0,2145,-3,0,0 +2013,9,4,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1000,-3,0,1128,-26,0,0 +2013,7,4,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,42,1,2135,38,1,0 +2013,10,23,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1919,24,1,2105,24,1,0 +2013,5,17,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1724,5,0,2010,-21,0,0 +2013,7,29,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-3,0,1500,-12,0,0 +2013,6,20,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2016,-2,0,2207,-12,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,845,-2,0,1025,-20,0,0 +2013,9,11,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1350,-4,0,1634,-14,0,0 +2013,5,18,6,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,-1,0,2225,-10,0,0 +2013,6,23,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1340,-4,0,1440,-8,0,0 +2013,6,23,7,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,17,1,1840,17,1,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,65,1,2154,73,1,0 +2013,9,16,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1118,-7,0,1242,-17,0,0 +2013,9,22,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,930,0,0,1111,-11,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1600,15,1,2325,13,0,0 +2013,10,8,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-6,0,1134,5,0,0 +2013,6,26,3,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1807,169,1,2121,178,1,0 +2013,6,29,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,941,56,1,1229,49,1,0 +2013,7,18,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-4,0,1240,-1,0,0 +2013,10,1,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1820,-7,0,1958,-11,0,0 +2013,8,22,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1440,1,0,1550,-3,0,0 +2013,8,20,2,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2025,35,1,2321,19,1,0 +2013,5,8,3,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,705,-4,0,820,-14,0,0 +2013,10,24,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1245,0,0,1415,-19,0,0 +2013,6,3,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,2,0,1610,1,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1238,-4,0,1800,-9,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1540,7,0,1930,24,1,0 +2013,7,3,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,25,1,2135,51,1,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1017,-1,0,1510,-5,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,10,0,1440,10,0,0 +2013,4,11,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1903,94,1,1925,93,1,0 +2013,9,12,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,39,1,1705,46,1,0 +2013,4,26,5,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1405,-1,0,1641,9,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1059,-1,0,1338,-12,0,0 +2013,6,1,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-2,0,1806,-2,0,0 +2013,6,10,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-2,0,1805,-13,0,0 +2013,10,22,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1148,32,1,1436,22,1,0 +2013,5,17,5,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1550,10,0,1700,8,0,0 +2013,10,9,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1352,-6,0,1624,-26,0,0 +2013,8,3,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1555,-5,0,1728,-7,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1520,56,1,1610,50,1,0 +2013,4,13,6,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1145,-14,0,0 +2013,10,20,7,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2147,-7,0,530,-24,0,0 +2013,5,17,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,706,18,1,1000,2,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,5,0,740,-4,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-2,0,1409,-9,0,0 +2013,6,15,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,836,-15,0,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1920,-4,0,2035,-7,0,0 +2013,9,24,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,11,0,1955,5,0,0 +2013,8,22,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1925,-7,0,1959,-4,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1911,0,0,2212,-4,0,0 +2013,10,6,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1031,-3,0,1135,1,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1955,16,1,2255,25,1,0 +2013,5,16,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,550,0,0,715,-9,0,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-2,0,1415,-2,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2050,-3,0,2220,-17,0,0 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,950,3,0,1120,-3,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-1,0,1630,-7,0,0 +2013,6,25,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,-3,0,1028,-9,0,0 +2013,10,2,3,AA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1630,-9,0,1850,-31,0,0 +2013,7,21,7,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,702,-6,0,908,1,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1244,0,0,1655,-10,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1021,2,0,1124,-1,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-2,0,1411,-16,0,0 +2013,4,3,3,EV,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,845,-8,0,1112,-1,0,0 +2013,8,28,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1855,32,1,2301,30,1,0 +2013,6,2,7,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-5,0,1205,-7,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-2,0,1021,13,0,0 +2013,10,30,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,-2,0,1355,-11,0,0 +2013,4,10,3,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1020,-7,0,1249,-24,0,0 +2013,6,1,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1755,-3,0,2013,-24,0,0 +2013,10,27,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,725,-1,0,945,-6,0,0 +2013,7,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1015,-3,0,1115,-13,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1520,109,1,2302,110,1,0 +2013,8,25,7,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,3,0,1053,-1,0,0 +2013,10,6,7,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,2152,28,1,2305,65,1,0 +2013,4,24,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-8,0,2213,6,0,0 +2013,10,9,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1505,38,1,1615,38,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,19,1,1912,4,0,0 +2013,7,7,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1145,-4,0,1500,-8,0,0 +2013,7,15,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,-3,0,2225,-8,0,0 +2013,5,20,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1311,-7,0,1559,-15,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2035,57,1,2200,49,1,0 +2013,6,30,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-1,0,1709,5,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1730,24,1,1855,15,1,0 +2013,5,24,5,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,850,-1,0,1123,-15,0,0 +2013,9,25,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,941,-8,0,1122,-1,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,-3,0,2325,-7,0,0 +2013,4,11,4,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1339,75,1,1550,65,1,0 +2013,4,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1546,0,0,1735,6,0,0 +2013,6,6,4,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1027,8,0,1216,-5,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,66,1,2105,54,1,0 +2013,5,9,4,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,8,0,1547,0,0,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,-1,0,1738,-6,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,630,2,0,755,-3,0,0 +2013,5,10,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,63,1,1625,58,1,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2145,15,1,2329,7,0,0 +2013,6,8,6,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,751,-8,0,1004,-26,0,0 +2013,6,10,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,850,-2,0,1105,-13,0,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,110,1,1737,113,1,0 +2013,4,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1015,4,0,1355,15,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,825,-5,0,945,-1,0,0 +2013,4,10,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,36,1,1948,17,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1205,1,0,1345,-6,0,0 +2013,6,10,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1735,8,0,1915,-1,0,0 +2013,10,30,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1203,-10,0,1343,12,0,0 +2013,6,12,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1628,-7,0,1920,-18,0,0 +2013,9,3,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,905,-3,0,1700,-1,0,0 +2013,7,11,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-8,0,754,-5,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,76,1,1105,81,1,0 +2013,10,10,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,111,1,2125,114,1,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1640,0,,1845,0,1,1 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,930,20,1,1650,22,1,0 +2013,9,12,4,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1257,-7,0,1429,-16,0,0 +2013,6,25,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,859,38,1,1004,27,1,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,21,1,1658,9,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1800,31,1,1941,19,1,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,-5,0,1003,-5,0,0 +2013,9,30,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,840,-4,0,1210,-6,0,0 +2013,10,28,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,1844,-10,0,0 +2013,5,14,2,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1103,0,0,1447,-6,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1358,5,0,1635,-20,0,0 +2013,10,1,2,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-6,0,1600,-13,0,0 +2013,9,27,5,9E,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1600,-5,0,1744,-17,0,0 +2013,10,15,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-4,0,1000,-9,0,0 +2013,8,18,7,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,3,0,2130,-8,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,-2,0,1151,-9,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1449,7,0,1659,5,0,0 +2013,7,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1642,-4,0,1914,-12,0,0 +2013,10,2,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1430,-7,0,1605,8,0,0 +2013,8,5,1,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,-5,0,1200,-9,0,0 +2013,7,21,7,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,0,0,1631,-12,0,0 +2013,9,12,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1250,-8,0,1536,12,0,0 +2013,6,9,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1440,-6,0,1600,-5,0,0 +2013,7,22,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,2,0,957,1,0,0 +2013,5,5,7,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,3,0,1940,-32,0,0 +2013,10,26,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1610,13,0,1735,14,0,0 +2013,10,10,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1610,-8,0,1647,-6,0,0 +2013,9,16,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1707,-5,0,1829,-15,0,0 +2013,8,10,6,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,710,0,0,1002,-11,0,0 +2013,8,29,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1523,25,1,1642,5,0,0 +2013,5,10,5,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,2035,-6,0,2330,-2,0,0 +2013,6,2,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,500,-5,0,643,-9,0,0 +2013,6,14,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,37,1,2137,21,1,0 +2013,6,1,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-2,0,1633,-14,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,45,1,1705,41,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,-3,0,1719,-24,0,0 +2013,5,27,1,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1252,-12,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,0,0,1125,7,0,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-6,0,959,-14,0,0 +2013,9,5,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1705,-9,0,1800,-15,0,0 +2013,9,3,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-7,0,900,-36,0,0 +2013,5,28,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1030,-2,0,1302,-25,0,0 +2013,5,10,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-6,0,1340,2,0,0 +2013,4,22,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1416,131,1,1800,184,1,0 +2013,7,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1640,-1,0,1850,-1,0,0 +2013,5,12,7,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1915,-6,0,2155,5,0,0 +2013,6,29,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1443,47,1,1644,33,1,0 +2013,8,11,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,910,-5,0,1105,-18,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1225,-3,0,1812,-17,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1140,-4,0,1245,-16,0,0 +2013,7,19,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,41,1,2025,96,1,0 +2013,5,9,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1730,3,0,1949,6,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1600,5,0,1735,-11,0,0 +2013,10,25,5,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1525,-6,0,1530,2,0,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,935,12,0,1115,21,1,0 +2013,4,19,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2010,59,1,2230,51,1,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-7,0,2152,-23,0,0 +2013,8,15,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1605,2,0,1720,-17,0,0 +2013,10,26,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-9,0,1755,-14,0,0 +2013,10,2,3,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-8,0,1940,-18,0,0 +2013,8,21,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,12,0,2100,27,1,0 +2013,5,23,4,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,704,8,0,835,-10,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2012,-2,0,2215,-2,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,-1,0,1035,-11,0,0 +2013,8,26,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,-11,0,2233,-13,0,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1532,-6,0,1624,-16,0,0 +2013,10,13,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1710,-3,0,2045,-18,0,0 +2013,9,2,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1045,-6,0,1215,-11,0,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,650,1,0,920,-4,0,0 +2013,9,25,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,-8,0,1628,-5,0,0 +2013,9,28,6,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1250,-5,0,1440,-11,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1100,9,0,1432,-3,0,0 +2013,4,15,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,-2,0,1916,-13,0,0 +2013,7,27,6,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,945,7,0,1215,8,0,0 +2013,6,28,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1601,-11,0,0 +2013,4,17,3,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1322,-5,0,1420,-16,0,0 +2013,10,16,3,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1800,11,0,2000,7,0,0 +2013,8,5,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-13,0,1155,-20,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,916,-4,0,1350,0,0,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1600,3,0,1740,-4,0,0 +2013,5,15,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,4,0,2104,-5,0,0 +2013,6,9,7,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,-9,0,1638,19,1,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2015,-6,0,2125,-4,0,0 +2013,9,21,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1845,11,0,2026,0,0,0 +2013,4,13,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1255,-7,0,1425,-28,0,0 +2013,10,10,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,640,-3,0,810,-20,0,0 +2013,4,15,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1005,6,0,1125,0,0,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1611,-3,0,10,-17,0,0 +2013,4,14,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,6,0,2125,0,0,0 +2013,6,4,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,0,0,1805,-8,0,0 +2013,5,8,3,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,1,0,1639,-9,0,0 +2013,8,25,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,758,-5,0,1018,-28,0,0 +2013,9,3,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-17,0,2056,-34,0,0 +2013,5,15,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,551,-8,0,905,-9,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1200,0,0,1315,-24,0,0 +2013,7,7,7,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1425,-5,0,1621,-13,0,0 +2013,7,31,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,810,-10,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2024,2,0,2150,-7,0,0 +2013,6,1,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-9,0,1722,-3,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-9,0,1108,-12,0,0 +2013,10,13,7,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1314,17,1,2043,-2,0,0 +2013,8,1,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-9,0,2130,-15,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1345,-3,0,1538,-9,0,0 +2013,5,14,2,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1150,-2,0,1440,-18,0,0 +2013,10,14,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1349,16,1,2003,3,0,0 +2013,8,30,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,0,0,2302,10,0,0 +2013,5,26,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-1,0,845,-14,0,0 +2013,5,9,4,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,17,1,2243,-14,0,0 +2013,10,16,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1725,-1,0,1912,-9,0,0 +2013,7,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,723,-6,0,924,-13,0,0 +2013,8,29,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1957,-4,0,2120,-7,0,0 +2013,5,24,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,181,1,820,166,1,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,14,0,1055,27,1,0 +2013,9,7,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,-7,0,1905,9,0,0 +2013,8,26,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1317,10,0,1505,-4,0,0 +2013,8,17,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1215,-2,0,1408,-14,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,19,1,1505,14,0,0 +2013,10,4,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2003,-6,0,502,-20,0,0 +2013,8,30,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2012,-6,0,2142,-11,0,0 +2013,4,14,7,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-14,0,1122,-15,0,0 +2013,6,25,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,1,0,1128,20,1,0 +2013,8,26,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1640,-3,0,1815,-22,0,0 +2013,5,4,6,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,17,1,1143,2,0,0 +2013,6,23,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,-7,0,1310,-15,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-10,0,1815,-12,0,0 +2013,5,8,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,615,1,0,0 +2013,6,20,4,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,640,-2,0,0 +2013,9,22,7,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,845,39,1,1021,27,1,0 +2013,5,20,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1727,1,0,1900,-2,0,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1010,40,1,1230,25,1,0 +2013,8,30,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1025,15,1,1455,17,1,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,-3,0,1157,-15,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,10,0,1730,8,0,0 +2013,4,19,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1006,6,0,1158,-7,0,0 +2013,9,16,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1615,5,0,1805,0,0,0 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1350,32,1,1500,27,1,0 +2013,6,12,3,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1456,-7,0,1641,-13,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2020,17,1,2235,18,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1730,2,0,1837,-8,0,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2055,18,1,2255,4,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,905,36,1,1145,10,0,0 +2013,5,8,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-5,0,1505,-5,0,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1120,4,0,1240,-3,0,0 +2013,4,12,5,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,150,259,1,500,233,1,0 +2013,5,8,3,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,251,1,2000,278,1,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1005,13,0,1250,9,0,0 +2013,10,5,6,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-3,0,915,10,0,0 +2013,5,11,6,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,700,-1,0,1040,28,1,0 +2013,8,15,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,0,0,1858,-4,0,0 +2013,7,13,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-5,0,1011,-2,0,0 +2013,5,6,1,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1957,-13,0,2104,-9,0,0 +2013,9,17,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1150,-2,0,1228,5,0,0 +2013,5,14,2,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,-12,0,1425,-11,0,0 +2013,9,29,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1605,-8,0,1711,2,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-2,0,1525,-10,0,0 +2013,10,2,3,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,755,80,1,957,78,1,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1840,63,1,2310,56,1,0 +2013,6,28,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,819,-1,0,1107,13,0,0 +2013,7,16,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2025,-2,0,2150,-8,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1355,53,1,1830,35,1,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2220,-7,0,105,-4,0,0 +2013,5,9,4,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,92,1,1935,74,1,0 +2013,5,25,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1721,5,0,1830,-10,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1235,-4,0,1540,15,1,0 +2013,4,21,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,755,8,0,0 +2013,5,28,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2210,75,1,102,79,1,0 +2013,7,29,1,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1251,160,1,1500,142,1,0 +2013,9,4,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-6,0,1010,-13,0,0 +2013,5,15,3,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,0,0,1435,6,0,0 +2013,7,9,2,9E,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-6,0,1123,-7,0,0 +2013,8,30,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,0,0,745,-10,0,0 +2013,5,8,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1840,0,0,0 +2013,5,15,3,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1638,-9,0,1927,-11,0,0 +2013,6,28,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,83,1,2256,158,1,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,13,0,1430,-7,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-2,0,1555,-7,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1810,-6,0,2110,-16,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,1,0,1350,-14,0,0 +2013,7,4,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1724,-20,0,1935,-27,0,0 +2013,7,24,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,0,0,2310,-17,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,854,0,0,1011,-4,0,0 +2013,8,2,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1329,-8,0,1518,5,0,0 +2013,5,21,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1032,17,1,1626,56,1,0 +2013,9,13,5,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,858,-4,0,1046,-7,0,0 +2013,7,24,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1546,4,0,2359,-13,0,0 +2013,9,3,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-7,0,915,-7,0,0 +2013,9,30,1,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,2,0,1650,-4,0,0 +2013,7,10,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,0,0,1853,0,0,0 +2013,4,7,7,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,2255,-4,0,602,-13,0,0 +2013,7,11,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,-3,0,1415,-3,0,0 +2013,4,26,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1436,10,0,1642,18,1,0 +2013,8,28,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,2,0,1625,-3,0,0 +2013,4,21,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1236,18,1,1517,-2,0,0 +2013,10,9,3,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1010,1,0,1115,-11,0,0 +2013,9,27,5,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1621,-12,0,1808,-4,0,0 +2013,6,21,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1500,69,1,1635,74,1,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,759,9,0,857,7,0,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1755,12,0,2020,9,0,0 +2013,6,3,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,703,-23,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2202,-5,0,2344,-15,0,0 +2013,6,26,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1457,-12,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1243,2,0,1502,-14,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2004,-2,0,2139,18,1,0 +2013,7,9,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,15,1,1655,24,1,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1820,6,0,2240,5,0,0 +2013,6,1,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1650,5,0,1805,-6,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2205,-3,0,53,-8,0,0 +2013,9,17,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,-3,0,1404,-10,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,850,9,0,1615,-19,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,50,1,2235,52,1,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1335,-1,0,1705,-4,0,0 +2013,4,21,7,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,805,-13,0,1010,-37,0,0 +2013,4,1,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1820,-4,0,1956,-26,0,0 +2013,7,21,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,650,-2,0,705,-2,0,0 +2013,10,14,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,635,-6,0,751,-4,0,0 +2013,9,21,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,655,1,0,845,-4,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2025,1,0,2150,5,0,0 +2013,7,19,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,1,0,1445,3,0,0 +2013,9,13,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1140,18,1,1445,10,0,0 +2013,10,13,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,28,1,1826,17,1,0 +2013,8,6,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1506,-4,0,1553,-7,0,0 +2013,7,26,5,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1705,1,0,2105,-5,0,0 +2013,4,12,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,720,0,0,1017,2,0,0 +2013,4,8,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-1,0,1220,13,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2239,-5,0,631,-38,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1135,-3,0,1700,-1,0,0 +2013,6,1,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2140,-6,0,2249,-15,0,0 +2013,10,29,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-10,0,2214,-8,0,0 +2013,10,4,5,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,740,-2,0,810,-7,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,31,1,1500,21,1,0 +2013,5,20,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,14,0,2315,-2,0,0 +2013,10,19,6,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1736,-6,0,2004,-22,0,0 +2013,9,8,7,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1035,-10,0,1301,5,0,0 +2013,8,3,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,751,-5,0,1059,-8,0,0 +2013,9,4,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,1,0,1326,-8,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,-5,0,1245,10,0,0 +2013,7,14,7,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1348,-7,0,1355,-23,0,0 +2013,7,17,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,9,0,1440,-5,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1300,-2,0,1446,0,1,1 +2013,6,10,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,44,1,1120,50,1,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,805,-4,0,1000,-1,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,-6,0,1430,-16,0,0 +2013,9,2,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,33,1,1755,40,1,0 +2013,8,24,6,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1746,-13,0,1911,-15,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-5,0,1631,-2,0,0 +2013,6,22,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,-2,0,1505,23,1,0 +2013,9,4,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,-7,0,1602,-6,0,0 +2013,8,19,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,25,1,1900,15,1,0 +2013,10,3,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1015,-2,0,1140,-3,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1100,12,0,1441,6,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2205,-6,0,4,-25,0,0 +2013,7,19,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1452,-7,0,1538,-6,0,0 +2013,6,17,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-5,0,1956,28,1,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,28,1,2210,30,1,0 +2013,6,29,6,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-4,0,1153,-25,0,0 +2013,10,25,5,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,955,-2,0,1140,8,0,0 +2013,4,19,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,0,,1148,0,1,1 +2013,6,22,6,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,640,-3,0,802,-1,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,0,,1830,0,1,1 +2013,5,28,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-2,0,1011,-5,0,0 +2013,4,24,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1630,-4,0,2205,-29,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,-5,0,1342,-7,0,0 +2013,9,24,2,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2000,4,0,2211,-24,0,0 +2013,5,3,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1120,33,1,1240,25,1,0 +2013,7,8,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1440,-4,0,1605,32,1,0 +2013,10,21,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1127,-5,0,1315,-16,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1515,-2,0,1745,-34,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,650,-4,0,813,-6,0,0 +2013,9,10,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-4,0,1108,-4,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2218,57,1,2347,39,1,0 +2013,9,17,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,735,-3,0,825,1,0,0 +2013,5,23,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1345,0,0,1510,-4,0,0 +2013,6,10,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1010,2,0,1220,5,0,0 +2013,10,16,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1115,14,0,1245,14,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,2,0,1027,-6,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1330,11,0,1550,3,0,0 +2013,7,11,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,31,1,655,29,1,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1750,82,1,1950,84,1,0 +2013,6,9,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1849,6,0,2013,9,0,0 +2013,8,12,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-1,0,2206,-8,0,0 +2013,8,26,1,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,-2,0,2022,-23,0,0 +2013,6,8,6,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1135,-7,0,1620,-10,0,0 +2013,4,18,4,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,846,-1,0,1025,1,0,0 +2013,5,20,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,5,0,1624,13,0,0 +2013,6,21,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,720,-6,0,1019,-5,0,0 +2013,9,23,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1950,9,0,2110,0,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2119,5,0,2221,13,0,0 +2013,7,29,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,15,1,1458,12,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1320,-3,0,1620,18,1,0 +2013,9,23,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,39,1,1907,20,1,0 +2013,4,21,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,26,1,2129,76,1,0 +2013,5,2,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,21,1,1520,31,1,0 +2013,8,18,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,745,-3,0,915,-5,0,0 +2013,8,11,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,20,1,720,27,1,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-2,0,209,-2,0,0 +2013,8,9,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1130,9,0,1255,10,0,0 +2013,5,3,5,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1248,4,0,1553,10,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1952,12,0,2332,-5,0,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1239,-7,0,1407,-2,0,0 +2013,5,23,4,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,-8,0,1858,-25,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-10,0,1525,-13,0,0 +2013,6,3,1,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-6,0,1540,-9,0,0 +2013,9,9,1,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1234,-7,0,1646,0,0,0 +2013,4,28,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1049,-5,0,1834,5,0,0 +2013,5,3,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,205,1,1855,184,1,0 +2013,7,2,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,1013,2,0,0 +2013,8,5,1,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1055,14,0,1455,4,0,0 +2013,6,14,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1846,1,0,2033,-5,0,0 +2013,10,1,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1855,3,0,2230,-3,0,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,925,-2,0,1025,0,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1407,-4,0,1509,-21,0,0 +2013,7,6,6,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-11,0,912,-6,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,7,0,2115,37,1,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1015,-1,0,1141,1,0,0 +2013,5,4,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-11,0,1325,-23,0,0 +2013,8,30,5,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,800,-1,0,940,-19,0,0 +2013,9,14,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1640,-2,0,1805,2,0,0 +2013,8,28,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,640,-3,0,750,-5,0,0 +2013,7,5,5,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1905,3,0,2044,-17,0,0 +2013,7,8,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,0,0,1229,14,0,0 +2013,4,26,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,640,0,0,747,20,1,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1624,2,0,1944,-2,0,0 +2013,6,7,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1010,-6,0,1143,25,1,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2140,101,1,2300,95,1,0 +2013,7,20,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,150,1,1826,182,1,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,11,0,1440,13,0,0 +2013,5,8,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2325,0,0,612,18,1,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1045,16,1,1145,11,0,0 +2013,5,1,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,603,15,1,752,12,0,0 +2013,9,2,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1117,26,1,1250,11,0,0 +2013,4,6,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1120,12,0,1440,7,0,0 +2013,8,22,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1040,5,0,1325,-8,0,0 +2013,9,23,1,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,759,38,1,1019,6,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,730,-3,0,1135,-3,0,0 +2013,7,11,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1238,16,1,0 +2013,7,16,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,11,0,1641,-3,0,0 +2013,6,1,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,710,-6,0,915,-2,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,28,1,2220,38,1,0 +2013,9,25,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1235,27,1,1350,26,1,0 +2013,10,22,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-6,0,839,-21,0,0 +2013,4,26,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,4,0,810,-13,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2105,-2,0,2337,-16,0,0 +2013,10,15,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1942,107,1,2140,80,1,0 +2013,10,13,7,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,-2,0,1804,-12,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2205,8,0,2305,0,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,835,-8,0,945,-21,0,0 +2013,10,24,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,810,-1,0,1410,1,0,0 +2013,7,24,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,-2,0,1514,19,1,0 +2013,10,24,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,629,-3,0,841,-12,0,0 +2013,9,15,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,730,0,0,1110,0,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1345,35,1,1615,27,1,0 +2013,5,24,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-3,0,2055,2,0,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,-1,0,2039,28,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,-4,0,1203,-6,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1127,-1,0,1604,-15,0,0 +2013,4,3,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,-5,0,1420,-15,0,0 +2013,4,16,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1120,-3,0,1220,-9,0,0 +2013,7,11,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-10,0,912,-4,0,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2115,7,0,2245,0,0,0 +2013,10,20,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,802,-7,0,928,1,0,0 +2013,4,19,5,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1054,165,1,1220,152,1,0 +2013,4,29,1,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-6,0,913,-12,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,-4,0,1235,11,0,0 +2013,7,2,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-9,0,1211,-13,0,0 +2013,8,2,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,37,1,1946,46,1,0 +2013,10,25,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1620,-6,0,1730,-1,0,0 +2013,5,14,2,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,-3,0,1915,-2,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,-4,0,2230,-7,0,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-5,0,750,-12,0,0 +2013,4,11,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,32,1,1504,37,1,0 +2013,9,11,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,1730,-9,0,1854,27,1,0 +2013,8,27,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,0,0,1230,1,0,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1620,0,0,1936,4,0,0 +2013,5,9,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,169,1,1745,239,1,0 +2013,6,15,6,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,-4,0,2154,-41,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1955,-6,0,2115,-11,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,-2,0,2045,-7,0,0 +2013,7,30,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,9,0,1810,2,0,0 +2013,5,13,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2045,-2,0,2110,-6,0,0 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,610,-1,0,735,4,0,0 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,-1,0,2331,-10,0,0 +2013,4,29,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,6,0,2140,1,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,39,1,2112,37,1,0 +2013,7,28,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1430,6,0,1810,-7,0,0 +2013,8,19,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,1,0,1200,-1,0,0 +2013,9,14,6,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,0,0,1445,-16,0,0 +2013,6,28,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,830,-5,0,1050,-3,0,0 +2013,8,27,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1735,8,0,1850,4,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1545,2,0,1710,6,0,0 +2013,7,20,6,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-2,0,740,-18,0,0 +2013,10,30,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1007,21,1,1248,29,1,0 +2013,4,25,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1623,6,0,1840,30,1,0 +2013,9,18,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1655,-6,0,1825,-13,0,0 +2013,10,25,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-10,0,2210,-22,0,0 +2013,6,9,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1415,34,1,1540,27,1,0 +2013,8,12,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1230,30,1,1441,44,1,0 +2013,5,23,4,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,0,,742,0,1,1 +2013,9,2,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,177,1,2230,162,1,0 +2013,5,31,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,17,1,1839,21,1,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2055,4,0,2210,1,0,0 +2013,6,12,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1134,487,1,2006,485,1,0 +2013,7,11,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,13,0,1800,9,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2125,137,1,35,133,1,0 +2013,8,11,7,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,755,0,0,1007,-6,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,10,0,1312,-9,0,0 +2013,8,11,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,645,-12,0,813,-20,0,0 +2013,8,28,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-4,0,2125,-3,0,0 +2013,7,24,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13244,Memphis International,Memphis,TN,135,-5,0,737,-31,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-3,0,1510,-18,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-3,0,2202,-20,0,0 +2013,4,12,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1106,-2,0,1204,-6,0,0 +2013,10,25,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,655,-10,0,950,30,1,0 +2013,8,19,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,659,-7,0,809,48,1,0 +2013,4,18,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-3,0,1538,-8,0,0 +2013,7,15,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1045,-3,0,1130,-6,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1000,5,0,1125,38,1,0 +2013,6,4,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1350,-1,0,1625,-14,0,0 +2013,8,8,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,0,,1548,0,1,1 +2013,7,13,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1035,-13,0,1105,-23,0,0 +2013,8,2,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1800,-10,0,0 +2013,10,8,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-6,0,1111,1,0,0 +2013,10,28,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,28,1,2120,18,1,0 +2013,10,28,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1935,6,0,2010,10,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1300,6,0,1930,7,0,0 +2013,8,15,4,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1259,1,0,1620,-5,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,-4,0,1900,7,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1650,-1,0,1810,-24,0,0 +2013,6,13,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1555,7,0,1705,6,0,0 +2013,5,16,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1135,4,0,1155,17,1,0 +2013,7,14,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-2,0,1217,-6,0,0 +2013,5,17,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1213,108,1,1307,103,1,0 +2013,7,7,7,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1900,-1,0,2013,-1,0,0 +2013,10,21,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1240,9,0,1640,6,0,0 +2013,9,20,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,0,0,1252,-2,0,0 +2013,8,7,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,3,0,1225,7,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,955,-1,0,1130,-7,0,0 +2013,4,23,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,752,-7,0,1045,-10,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1306,5,0,1540,-5,0,0 +2013,5,7,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-4,0,1100,-3,0,0 +2013,10,7,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1750,13,0,1935,27,1,0 +2013,4,1,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,2,0,650,7,0,0 +2013,10,4,5,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1400,-4,0,1435,-6,0,0 +2013,4,28,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,-7,0,2044,-12,0,0 +2013,4,17,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,150,6,0,500,10,0,0 +2013,7,9,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,710,-8,0,855,-6,0,0 +2013,4,8,1,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2045,-4,0,2145,-1,0,0 +2013,6,16,7,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,945,1,0,1505,-17,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-2,0,1040,-6,0,0 +2013,6,28,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,14,0,1035,5,0,0 +2013,6,29,6,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,103,1,1440,99,1,0 +2013,5,19,7,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1900,12,0,2050,15,1,0 +2013,7,23,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1620,-5,0,1728,-6,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,2,0,1805,-7,0,0 +2013,6,15,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-3,0,1145,-5,0,0 +2013,8,6,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,1,0,1925,-7,0,0 +2013,5,19,7,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1509,109,1,1845,118,1,0 +2013,10,14,1,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-7,0,1040,-17,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,-1,0,930,-22,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,722,-3,0,1130,-7,0,0 +2013,6,20,4,9E,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-4,0,821,-8,0,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1020,-4,0,1129,-10,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,37,1,1410,31,1,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1740,-1,0,1830,-2,0,0 +2013,8,5,1,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-5,0,1331,7,0,0 +2013,10,31,4,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1048,-8,0,1334,-13,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1606,8,0,1859,-2,0,0 +2013,7,7,7,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1232,5,0,1451,-7,0,0 +2013,4,1,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,605,0,0,755,-12,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2010,-3,0,2135,-3,0,0 +2013,6,21,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-7,0,1309,-6,0,0 +2013,8,9,5,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-10,0,1924,-20,0,0 +2013,7,30,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,1,0,830,-1,0,0 +2013,10,8,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1359,-10,0,1523,-24,0,0 +2013,10,20,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2020,20,1,2140,11,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1105,14,0,1820,3,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,600,11,0,725,8,0,0 +2013,8,5,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1520,-7,0,1705,0,0,0 +2013,8,22,4,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-12,0,919,-6,0,0 +2013,10,18,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,618,-6,0,850,12,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1732,-3,0,1939,0,0,0 +2013,5,10,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2340,-5,0,710,-19,0,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,715,-2,0,945,0,0,0 +2013,5,13,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2000,-4,0,2130,2,0,0 +2013,6,23,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,-2,0,1833,-6,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1025,-4,0,1231,-13,0,0 +2013,6,9,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,0,0,1052,-16,0,0 +2013,6,16,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1530,20,1,1810,8,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,-7,0,1458,-15,0,0 +2013,9,10,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1215,-18,0,0 +2013,4,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,1,0,201,42,1,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,6,0,2235,25,1,0 +2013,9,19,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-5,0,1530,29,1,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,-4,0,1320,-5,0,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1320,9,0,1620,1,0,0 +2013,5,2,4,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1700,4,0,1730,5,0,0 +2013,9,9,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,850,-1,0,1027,3,0,0 +2013,4,4,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-5,0,748,-12,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,1,0,939,-14,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,705,1,0,925,2,0,0 +2013,9,10,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,920,-9,0,1209,-16,0,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1625,-4,0,1740,-18,0,0 +2013,9,10,2,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,945,-5,0,1130,-27,0,0 +2013,5,28,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,720,-6,0,1117,0,0,0 +2013,8,26,1,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,9,0,935,-3,0,0 +2013,4,9,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,2,0,941,29,1,0 +2013,9,30,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,705,-3,0,0 +2013,7,18,4,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,940,-7,0,1212,-26,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,52,1,1825,59,1,0 +2013,6,30,7,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1522,0,,1640,0,1,1 +2013,6,2,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,635,-7,0,837,-23,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,707,-4,0,1115,-21,0,0 +2013,6,4,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,-3,0,1630,15,1,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1715,102,1,114,92,1,0 +2013,10,5,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,4,0,1930,-4,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-1,0,1005,-15,0,0 +2013,6,13,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,620,-2,0,750,-10,0,0 +2013,8,20,2,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,27,1,2052,-14,0,0 +2013,10,19,6,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,2,0,1740,-17,0,0 +2013,5,9,4,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,48,1,2213,14,0,0 +2013,5,30,4,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1640,-6,0,1956,69,1,0 +2013,8,25,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1940,-5,0,2059,-12,0,0 +2013,6,7,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,76,1,1329,107,1,0 +2013,10,22,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1100,0,0,1225,-2,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,825,-2,0,905,-7,0,0 +2013,5,17,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-6,0,1238,-13,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-2,0,1210,-18,0,0 +2013,8,31,6,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,-2,0,941,3,0,0 +2013,10,30,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1429,-11,0,1548,-28,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1501,10,0,1546,1,0,0 +2013,4,4,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2115,11,0,2225,16,1,0 +2013,4,5,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1258,88,1,1609,48,1,0 +2013,5,4,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1705,-1,0,1830,-3,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1604,44,1,1735,27,1,0 +2013,6,12,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,41,1,1245,36,1,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,735,-1,0,1050,-13,0,0 +2013,7,21,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1849,43,1,2109,63,1,0 +2013,6,14,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,945,-19,0,1240,-31,0,0 +2013,5,13,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1715,-1,0,1830,3,0,0 +2013,10,27,7,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,-5,0,1115,-21,0,0 +2013,8,4,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-10,0,1220,-8,0,0 +2013,7,20,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,9,0,1905,-7,0,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,0,0,1225,1,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1835,6,0,2015,9,0,0 +2013,10,5,6,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1738,-9,0,1909,-3,0,0 +2013,6,7,5,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,-5,0,1445,3,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2040,151,1,2250,139,1,0 +2013,4,26,5,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,800,-4,0,1116,26,1,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,5,0,1550,-10,0,0 +2013,7,27,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1415,-2,0,1550,2,0,0 +2013,7,8,1,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1317,13,0,1610,12,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,0,0,2050,38,1,0 +2013,7,16,2,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1640,18,1,1830,-7,0,0 +2013,8,9,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,745,-2,0,855,-8,0,0 +2013,4,23,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1850,52,1,2035,51,1,0 +2013,4,30,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2210,3,0,700,0,0,0 +2013,10,15,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1230,5,0,1422,-3,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-4,0,2355,-8,0,0 +2013,5,20,1,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,3,0,1900,-3,0,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1745,-5,0,1937,-24,0,0 +2013,7,27,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1525,2,0,1644,21,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2150,0,0,19,-21,0,0 +2013,7,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,945,-3,0,1325,-17,0,0 +2013,9,23,1,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1430,-1,0,1535,-5,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-6,0,1309,7,0,0 +2013,7,5,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1503,4,0,1619,1,0,0 +2013,5,23,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,125,1,2113,171,1,0 +2013,7,25,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2158,2,0,2339,1,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1720,12,0,2025,24,1,0 +2013,9,11,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,835,-3,0,950,-5,0,0 +2013,9,28,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,710,-1,0,835,7,0,0 +2013,5,22,3,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1405,7,0,1645,-10,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2000,56,1,2115,52,1,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,740,-3,0,941,2,0,0 +2013,8,7,3,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1917,4,0,2105,1,0,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2000,5,0,2159,-5,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1950,-5,0,2123,-5,0,0 +2013,6,22,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1715,-2,0,1840,-11,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-4,0,1247,20,1,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2030,16,1,2217,21,1,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,11,0,913,4,0,0 +2013,10,24,4,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1110,19,1,1400,0,0,0 +2013,6,12,3,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1823,0,,1927,0,1,1 +2013,8,6,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-4,0,1805,-3,0,0 +2013,7,12,5,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1600,123,1,1940,117,1,0 +2013,8,25,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1835,-11,0,2140,-10,0,0 +2013,5,1,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,3,0,922,29,1,0 +2013,6,19,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,848,-5,0,1058,-7,0,0 +2013,9,29,7,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,20,1,1230,22,1,0 +2013,4,10,3,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1350,144,1,1625,208,1,0 +2013,9,12,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1034,-10,0,1158,-24,0,0 +2013,6,19,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,608,-10,0,752,-15,0,0 +2013,8,31,6,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,-9,0,1635,-26,0,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,850,0,0,1015,7,0,0 +2013,8,3,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1340,-6,0,1505,-2,0,0 +2013,10,3,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,805,-1,0,910,-4,0,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2155,47,1,2305,46,1,0 +2013,5,5,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2040,161,1,2140,143,1,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1636,36,1,1915,32,1,0 +2013,7,17,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1105,-4,0,1528,-17,0,0 +2013,5,22,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2130,16,1,2305,21,1,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,907,-4,0,1230,-28,0,0 +2013,6,24,1,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1830,0,,2101,0,1,1 +2013,4,23,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1821,-5,0,2025,25,1,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,16,1,1030,-5,0,0 +2013,4,1,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-1,0,1031,-16,0,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,755,-3,0,927,-4,0,0 +2013,10,21,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,825,-1,0,1210,-8,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,845,-2,0,1120,7,0,0 +2013,9,6,5,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-6,0,445,0,0,0 +2013,10,26,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,710,-7,0,1144,-35,0,0 +2013,8,5,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,3,0,1810,3,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,179,1,1850,186,1,0 +2013,6,23,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,3,0,1650,-2,0,0 +2013,4,6,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1940,42,1,2030,35,1,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,10,0,2059,2,0,0 +2013,4,13,6,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,8,0,1830,-3,0,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,10,0,2105,4,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1125,3,0,1420,2,0,0 +2013,10,26,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,840,-1,0,1640,-11,0,0 +2013,5,19,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1105,-3,0,1413,8,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1335,4,0,1515,-2,0,0 +2013,4,21,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1508,-3,0,1819,41,1,0 +2013,4,17,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,923,-4,0,0 +2013,8,15,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1530,-3,0,1649,-8,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2015,0,0,2120,-2,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,650,7,0,1005,-1,0,0 +2013,7,24,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-6,0,900,4,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1440,0,0,1635,-13,0,0 +2013,8,13,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,5,0,1600,9,0,0 +2013,4,28,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,2030,12,0,2105,18,1,0 +2013,10,20,7,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2035,-12,0,2257,-17,0,0 +2013,7,1,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1045,-4,0,1145,-8,0,0 +2013,6,25,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1219,20,1,1937,8,0,0 +2013,9,12,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,0,0,820,-12,0,0 +2013,8,12,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,837,-15,0,0 +2013,6,29,6,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,830,16,1,920,5,0,0 +2013,5,14,2,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1525,-3,0,1635,1,0,0 +2013,6,19,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1155,-1,0,1310,-6,0,0 +2013,6,1,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,10,0,2125,-10,0,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-2,0,906,-5,0,0 +2013,6,6,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1415,-3,0,1555,-31,0,0 +2013,4,21,7,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-7,0,1859,-12,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1820,10,0,1940,-2,0,0 +2013,10,14,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,0,0,1015,1,0,0 +2013,6,21,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1500,-4,0,2330,10,0,0 +2013,10,15,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,817,-3,0,1400,-18,0,0 +2013,9,25,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1935,81,1,2045,73,1,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1726,5,0,1846,3,0,0 +2013,7,26,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,44,1,2056,55,1,0 +2013,8,15,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,828,-7,0,1109,-19,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1514,6,0,1753,4,0,0 +2013,5,6,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,-4,0,600,-20,0,0 +2013,9,5,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,953,-13,0,1451,-2,0,0 +2013,8,20,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,715,0,0,830,-15,0,0 +2013,5,21,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-3,0,831,4,0,0 +2013,4,20,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1418,1,0,1615,-17,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1950,-1,0,2101,-5,0,0 +2013,6,3,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,17,1,1250,8,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1400,-4,0,1515,-8,0,0 +2013,5,15,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,906,92,1,1253,85,1,0 +2013,5,27,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,-5,0,2212,-21,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1800,15,1,2100,15,1,0 +2013,8,24,6,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,720,-4,0,920,-11,0,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,14,0,2345,-10,0,0 +2013,10,8,2,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1305,29,1,1520,22,1,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1127,-6,0,1300,6,0,0 +2013,8,20,2,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,0,0,2005,-4,0,0 +2013,8,16,5,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1210,17,1,1655,6,0,0 +2013,5,5,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,750,-5,0,1210,-13,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-2,0,1155,7,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1355,-4,0,1810,-15,0,0 +2013,4,12,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,819,-5,0,1345,-8,0,0 +2013,10,20,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-5,0,730,-7,0,0 +2013,10,15,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,100,1,1411,76,1,0 +2013,9,22,7,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-8,0,1038,-12,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,-1,0,2205,1,0,0 +2013,7,2,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,23,1,1416,14,0,0 +2013,10,24,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,751,0,0,1314,-15,0,0 +2013,8,18,7,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2040,34,1,2155,25,1,0 +2013,4,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,941,-5,0,1151,-21,0,0 +2013,5,25,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1604,-7,0,1706,-24,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,0,0,1733,-4,0,0 +2013,6,30,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,1,0,1525,2,0,0 +2013,7,23,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1120,25,1,1249,20,1,0 +2013,5,5,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,12,0,1335,4,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,0,0,1035,-7,0,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1924,-4,0,2050,-9,0,0 +2013,7,19,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,-8,0,1914,-22,0,0 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1455,8,0,2015,-8,0,0 +2013,9,18,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1110,-1,0,1220,7,0,0 +2013,4,25,4,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1157,0,,1305,0,1,1 +2013,10,29,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,820,-7,0,1638,-20,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-2,0,1720,-19,0,0 +2013,7,26,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1855,-5,0,2204,-4,0,0 +2013,10,1,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,645,-10,0,903,-8,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1235,3,0,1340,-6,0,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,840,-4,0,1014,-5,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1730,8,0,1840,-1,0,0 +2013,5,5,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,0,1235,-23,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1802,6,0,2058,1,0,0 +2013,7,11,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1205,13,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1555,37,1,1910,39,1,0 +2013,9,24,2,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1055,13,0,1333,9,0,0 +2013,8,23,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1125,28,1,1250,47,1,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,929,-2,0,1129,-26,0,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,820,43,1,1150,39,1,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,910,-4,0,1330,-18,0,0 +2013,9,7,6,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,826,-11,0,1354,3,0,0 +2013,8,28,3,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-3,0,1317,-13,0,0 +2013,9,27,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1830,2,0,2148,-39,0,0 +2013,5,10,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1400,-1,0,1620,-31,0,0 +2013,4,6,6,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,909,-11,0,1256,-14,0,0 +2013,5,26,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,942,7,0,1302,4,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,-2,0,1830,3,0,0 +2013,8,15,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,-4,0,2322,-7,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,19,1,1115,8,0,0 +2013,4,20,6,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1435,24,1,1615,21,1,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,-8,0,1120,-13,0,0 +2013,6,20,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2040,43,1,2153,35,1,0 +2013,5,29,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,26,1,1911,5,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1425,-5,0,1602,-3,0,0 +2013,8,19,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,69,1,654,79,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,20,1,2015,14,0,0 +2013,10,23,3,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1629,-2,0,1950,-46,0,0 +2013,4,25,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-3,0,2030,-4,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,-3,0,1940,-16,0,0 +2013,6,12,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-3,0,511,-11,0,0 +2013,9,7,6,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1915,0,0,2147,-1,0,0 +2013,4,22,1,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1205,2,0,1336,2,0,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1917,-6,0,2216,-8,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,925,10,0,1055,4,0,0 +2013,9,5,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1010,-5,0,1135,-23,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,920,30,1,1149,28,1,0 +2013,5,5,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1115,-6,0,1240,-18,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,805,88,1,946,85,1,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2130,18,1,2303,8,0,0 +2013,9,2,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,1,0,2020,-7,0,0 +2013,7,21,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1730,-3,0,1848,3,0,0 +2013,4,17,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,750,0,0,858,11,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-6,0,2044,-15,0,0 +2013,5,3,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,-4,0,655,-24,0,0 +2013,5,23,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,27,1,1828,25,1,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,-6,0,1105,-15,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1545,42,1,1655,36,1,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,0,0,2011,-7,0,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1200,-4,0,1432,6,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1258,-4,0,1425,-3,0,0 +2013,6,3,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-5,0,2015,-9,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,19,1,1525,-1,0,0 +2013,7,6,6,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,0,,1610,0,1,1 +2013,9,21,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,720,-6,0,1000,-5,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-7,0,1430,-9,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1040,16,1,1140,16,1,0 +2013,4,1,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,-6,0,1831,16,1,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,-5,0,1130,-8,0,0 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,620,10,0,935,46,1,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1433,-2,0,1607,7,0,0 +2013,8,26,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1720,11,0,1845,0,0,0 +2013,10,16,3,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1209,-4,0,1346,-20,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1743,-4,0,1920,-7,0,0 +2013,5,24,5,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1559,-1,0,1814,21,1,0 +2013,8,10,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-13,0,1754,-21,0,0 +2013,6,8,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,4,0,1441,1,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1810,4,0,1825,8,0,0 +2013,6,20,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,845,-2,0,1420,0,0,0 +2013,7,11,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-7,0,1712,-8,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1030,-1,0,1300,-4,0,0 +2013,5,8,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,2,0,1225,-32,0,0 +2013,8,26,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1428,-4,0,1553,4,0,0 +2013,8,6,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1145,-1,0,1500,-12,0,0 +2013,8,25,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,11,0,1019,4,0,0 +2013,8,24,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1110,-9,0,1219,4,0,0 +2013,7,9,2,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1241,-1,0,1518,-12,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1210,-7,0,1438,-14,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,-3,0,1850,-4,0,0 +2013,7,19,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,16,1,1725,18,1,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,1,0,1520,12,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,31,1,1511,17,1,0 +2013,5,21,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-6,0,1410,1,0,0 +2013,7,28,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1813,6,0,2105,-7,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,705,-3,0,823,-20,0,0 +2013,5,26,7,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,741,-6,0,900,-18,0,0 +2013,9,13,5,AA,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,955,-4,0,1715,-2,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,-3,0,1003,5,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-2,0,1929,9,0,0 +2013,10,21,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1855,5,0,2015,0,0,0 +2013,4,15,1,EV,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1654,99,1,1822,132,1,0 +2013,8,15,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-5,0,2051,-22,0,0 +2013,10,26,6,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1717,81,1,1920,98,1,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1345,43,1,1545,41,1,0 +2013,9,30,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1850,-1,0,2025,-4,0,0 +2013,5,31,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1505,9,0,1620,5,0,0 +2013,10,28,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1243,-5,0,1513,-1,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1916,42,1,2047,31,1,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,20,1,1134,11,0,0 +2013,5,2,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,0,0,1055,-9,0,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,0,0,1622,2,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1750,-2,0,2012,-2,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1625,-1,0,1920,-19,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,-2,0,1737,3,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,0,0,25,-11,0,0 +2013,6,2,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1415,13,0,1525,-1,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2005,12,0,2305,6,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,-1,0,1037,-19,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1635,15,1,1820,-5,0,0 +2013,9,13,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,49,1,1315,50,1,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1530,58,1,1635,63,1,0 +2013,5,12,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1506,-6,0,1554,-24,0,0 +2013,10,4,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,915,6,0,1115,-2,0,0 +2013,9,30,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1435,-5,0,1700,-21,0,0 +2013,7,27,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-3,0,1858,-6,0,0 +2013,8,26,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,-7,0,2147,-26,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1535,-3,0,1921,-9,0,0 +2013,9,11,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,40,1,1600,32,1,0 +2013,8,9,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,2010,30,1,2325,19,1,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,840,41,1,1105,30,1,0 +2013,6,5,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1220,8,0,0 +2013,8,26,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1040,-3,0,1155,-4,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1735,15,1,45,18,1,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,240,1,2056,229,1,0 +2013,8,12,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,2,0,945,-17,0,0 +2013,8,1,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,0,0,750,1,0,0 +2013,9,22,7,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1855,-8,0,2123,-8,0,0 +2013,7,1,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,-2,0,840,34,1,0 +2013,7,11,4,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,620,0,0,825,-7,0,0 +2013,7,4,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-1,0,1555,15,1,0 +2013,7,27,6,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-2,0,1129,-22,0,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,-2,0,1055,0,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2220,56,1,2320,50,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1420,4,0,1606,-2,0,0 +2013,4,26,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,610,-1,0,850,-8,0,0 +2013,10,12,6,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1215,13,0,1333,-1,0,0 +2013,8,4,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1615,-6,0,1800,-11,0,0 +2013,9,26,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-5,0,820,-10,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1541,47,1,1911,53,1,0 +2013,6,29,6,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,600,-3,0,900,12,0,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,740,-2,0,1101,-7,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,-3,0,1840,-7,0,0 +2013,10,2,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,-12,0,2004,-17,0,0 +2013,6,6,4,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,-7,0,2202,-2,0,0 +2013,4,9,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1610,14,0,2304,2,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,935,-4,0,1525,-19,0,0 +2013,6,2,7,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1805,-4,0,2030,-22,0,0 +2013,7,1,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,113,1,608,118,1,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,18,1,2045,37,1,0 +2013,6,4,2,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1717,-13,0,1840,-17,0,0 +2013,10,12,6,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,-1,0,2206,-13,0,0 +2013,4,10,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1835,0,,1935,0,1,1 +2013,9,23,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1835,0,,1950,0,1,1 +2013,6,19,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1110,-17,0,1240,-23,0,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,0,0,2045,-5,0,0 +2013,4,25,4,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1405,-2,0,2215,7,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1030,15,1,1150,5,0,0 +2013,4,6,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1615,-3,0,1730,-1,0,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-3,0,1938,-3,0,0 +2013,4,10,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,641,7,0,754,6,0,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1547,13,0,2130,40,1,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1125,11,0,1324,10,0,0 +2013,6,10,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,52,1,1707,63,1,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1810,45,1,1915,37,1,0 +2013,7,27,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,42,1,1126,26,1,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1738,2,0,1956,-2,0,0 +2013,6,27,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-3,0,840,5,0,0 +2013,8,15,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,800,0,0,925,-3,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,600,28,1,728,7,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1509,-7,0,1729,27,1,0 +2013,5,27,1,DL,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,-4,0,2144,-36,0,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,1,0,2335,6,0,0 +2013,9,9,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1824,-4,0,2110,-11,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,66,1,2359,41,1,0 +2013,7,18,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2034,135,1,2328,126,1,0 +2013,7,31,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1100,-1,0,1155,-7,0,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,615,-3,0,835,-4,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2055,-5,0,2300,-16,0,0 +2013,8,23,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1200,-1,0,1215,-15,0,0 +2013,8,13,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1830,40,1,2125,40,1,0 +2013,7,26,5,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,600,-3,0,717,-8,0,0 +2013,10,9,3,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1535,-13,0,1727,-40,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,600,2,0,925,-7,0,0 +2013,4,10,3,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1230,248,1,1420,270,1,0 +2013,7,26,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,934,57,1,1215,48,1,0 +2013,8,6,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1830,0,0,1935,-2,0,0 +2013,5,1,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1337,0,0,1502,-9,0,0 +2013,5,6,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,11,0,1208,-3,0,0 +2013,5,2,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,-7,0,1717,-13,0,0 +2013,4,1,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,11,0,1905,7,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1549,12,0,1721,32,1,0 +2013,8,6,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,34,1,1341,28,1,0 +2013,5,20,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,0,0,1656,58,1,0 +2013,8,7,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,840,0,0,1255,10,0,0 +2013,9,11,3,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1010,-12,0,1310,-24,0,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1430,-5,0,1840,-17,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1715,-4,0,1855,-13,0,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,1,0,1709,24,1,0 +2013,10,6,7,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,238,1,1055,224,1,0 +2013,4,22,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1756,23,1,2016,18,1,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,609,-3,0,810,-11,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1406,5,0,1452,-3,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1105,-6,0,1218,1,0,0 +2013,4,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1805,187,1,2134,199,1,0 +2013,5,26,7,UA,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,645,43,1,818,28,1,0 +2013,5,11,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-7,0,900,-8,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,100,1,2320,89,1,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,630,23,1,1015,19,1,0 +2013,9,3,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-5,0,852,-5,0,0 +2013,4,3,3,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,4,0,1051,-5,0,0 +2013,9,12,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1710,16,1,1810,10,0,0 +2013,4,15,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,710,-2,0,1540,-23,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,2140,29,1,2258,18,1,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1510,25,1,1610,20,1,0 +2013,8,30,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1205,-2,0,1424,-7,0,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1220,12,0,1353,24,1,0 +2013,8,8,4,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,835,-2,0,1002,20,1,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1306,-1,0,1614,-2,0,0 +2013,4,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,625,-5,0,810,-7,0,0 +2013,9,11,3,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,-3,0,1743,-14,0,0 +2013,5,5,7,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1305,-2,0,1630,-9,0,0 +2013,7,29,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-6,0,1820,-3,0,0 +2013,7,15,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-3,0,947,-12,0,0 +2013,8,14,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,42,1,1845,40,1,0 +2013,7,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,-2,0,1500,0,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1705,10,0,2350,2,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1050,-3,0,1203,-26,0,0 +2013,6,9,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1347,21,1,1506,28,1,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,2,0,910,-21,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-4,0,1023,-10,0,0 +2013,4,8,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,617,-9,0,930,-30,0,0 +2013,4,19,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,149,1,2020,147,1,0 +2013,7,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-3,0,950,-3,0,0 +2013,10,24,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-3,0,845,-18,0,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,-5,0,1633,-12,0,0 +2013,10,21,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,855,41,1,1152,41,1,0 +2013,4,20,6,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,39,1,1009,19,1,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-6,0,1440,-20,0,0 +2013,6,5,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,3,0,805,-9,0,0 +2013,6,30,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,78,1,2205,61,1,0 +2013,6,30,7,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2010,22,1,2055,14,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1730,-3,0,1825,2,0,0 +2013,4,13,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,8,0,1835,-2,0,0 +2013,5,23,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1830,0,,2100,0,1,1 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,-3,0,1135,-5,0,0 +2013,4,12,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,-3,0,1454,-4,0,0 +2013,5,24,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2045,110,1,2255,111,1,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1425,143,1,1740,136,1,0 +2013,4,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1200,12,0,1300,35,1,0 +2013,6,4,2,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,8,0,2039,-4,0,0 +2013,7,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1624,0,0,1926,-17,0,0 +2013,4,28,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1045,-8,0,1225,-26,0,0 +2013,5,20,1,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,-2,0,1701,-4,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,645,-9,0,946,-11,0,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1721,31,1,1919,44,1,0 +2013,5,31,5,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,2,0,2042,15,1,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1000,1,0,1151,9,0,0 +2013,6,5,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1915,16,1,2020,17,1,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1543,-1,0,1742,3,0,0 +2013,8,23,5,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,900,7,0,1145,-3,0,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1125,-2,0,1448,-13,0,0 +2013,7,7,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,255,1,1624,243,1,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2050,-5,0,2237,-19,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2025,5,0,2125,1,0,0 +2013,9,25,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-9,0,1559,-28,0,0 +2013,4,23,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,-4,0,1820,-19,0,0 +2013,4,21,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,1003,-20,0,0 +2013,10,28,1,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,925,4,0,1800,-12,0,0 +2013,9,12,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1325,15,1,1450,9,0,0 +2013,8,7,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,545,-4,0,859,-6,0,0 +2013,9,16,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,-3,0,1821,-12,0,0 +2013,6,28,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,82,1,1252,79,1,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1820,65,1,2335,48,1,0 +2013,10,19,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1710,-6,0,1834,-14,0,0 +2013,6,23,7,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,833,4,0,1043,-2,0,0 +2013,5,16,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1350,3,0,1955,-18,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1850,-2,0,2105,-7,0,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1120,1,0,1300,18,1,0 +2013,6,27,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,-10,0,1025,-34,0,0 +2013,4,19,5,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1220,93,1,1401,105,1,0 +2013,5,20,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1125,-6,0,1338,-12,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,820,2,0,1025,-16,0,0 +2013,10,15,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,645,-1,0,655,-6,0,0 +2013,4,23,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1044,2,0,1347,-6,0,0 +2013,7,8,1,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1213,-3,0,1425,-18,0,0 +2013,8,23,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-6,0,1200,-13,0,0 +2013,6,6,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,-4,0,1110,-11,0,0 +2013,8,28,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1725,12,0,1835,9,0,0 +2013,4,18,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,347,1,935,346,1,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2128,34,1,44,28,1,0 +2013,4,8,1,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,0,0,1350,-17,0,0 +2013,10,19,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-10,0,1704,-14,0,0 +2013,4,9,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-6,0,1955,-18,0,0 +2013,9,20,5,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1331,-2,0,1650,-8,0,0 +2013,7,31,3,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,0,0,1405,-17,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,919,-2,0,1052,-5,0,0 +2013,4,4,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,905,1,0,1145,-17,0,0 +2013,5,23,4,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,1055,4,0,1615,2,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1311,6,0,1502,-7,0,0 +2013,5,2,4,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1217,-3,0,1758,-12,0,0 +2013,8,16,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,605,-6,0,1008,-31,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,25,1,1555,4,0,0 +2013,6,16,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-5,0,1720,-9,0,0 +2013,9,29,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,850,-5,0,1027,-9,0,0 +2013,7,28,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,735,-5,0,855,-19,0,0 +2013,9,11,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1007,-6,0,1705,-20,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1743,0,,2159,0,1,1 +2013,7,11,4,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1213,20,1,1425,41,1,0 +2013,6,5,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,650,-5,0,808,-16,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1502,-1,0,1700,-10,0,0 +2013,5,24,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,830,-3,0,925,-2,0,0 +2013,5,5,7,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1635,-7,0,2040,-19,0,0 +2013,5,7,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1140,-8,0,1455,-2,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1310,-8,0,1652,-3,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-7,0,1351,2,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,0,0,1537,-19,0,0 +2013,10,24,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1345,21,1,1445,26,1,0 +2013,7,15,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1605,1,0,1730,0,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2125,-7,0,547,-6,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,-6,0,1426,-16,0,0 +2013,4,23,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1640,-7,0,1933,-10,0,0 +2013,7,16,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-5,0,2102,42,1,0 +2013,4,27,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,-6,0,2200,-15,0,0 +2013,6,26,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,738,-7,0,1530,-29,0,0 +2013,7,30,2,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,521,1,928,522,1,0 +2013,9,24,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,-1,0,2050,2,0,0 +2013,8,23,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2053,-1,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1415,0,,1845,0,1,1 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2155,0,0,2308,-6,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1105,-14,0,1245,-17,0,0 +2013,4,27,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1955,11,0,2347,46,1,0 +2013,10,21,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1755,-7,0,1934,-23,0,0 +2013,10,30,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1035,-4,0,1300,-6,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,0,0,1745,-5,0,0 +2013,6,3,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,-2,0,2020,5,0,0 +2013,7,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2055,40,1,2220,35,1,0 +2013,4,29,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,1551,-10,0,1841,-19,0,0 +2013,5,8,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,155,1,2010,149,1,0 +2013,10,9,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,29,1,1355,30,1,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,100,1,2013,109,1,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,635,4,0,720,5,0,0 +2013,4,28,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,0,0,1135,-1,0,0 +2013,8,14,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,1,0,1759,-6,0,0 +2013,6,13,4,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-7,0,1420,-13,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1120,-2,0,1445,-5,0,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,-3,0,1240,-8,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1511,1,0,1739,-12,0,0 +2013,9,29,7,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2115,9,0,553,5,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-2,0,1411,-7,0,0 +2013,10,4,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,855,-1,0,1152,-8,0,0 +2013,5,15,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1604,-11,0,1857,-11,0,0 +2013,9,12,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1221,5,0,1519,18,1,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1539,22,1,1700,22,1,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,18,1,2250,-2,0,0 +2013,6,29,6,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,-3,0,2026,-29,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1500,29,1,2020,54,1,0 +2013,7,7,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1811,9,0,2000,0,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,10,0,1404,2,0,0 +2013,4,4,4,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1334,-7,0,1603,-10,0,0 +2013,7,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,16,1,2030,3,0,0 +2013,8,17,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1411,86,1,1702,89,1,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1920,50,1,2200,48,1,0 +2013,6,24,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1713,-7,0,2139,-21,0,0 +2013,6,4,2,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,1,0,1640,3,0,0 +2013,6,5,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-10,0,1443,-17,0,0 +2013,8,2,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-3,0,1329,8,0,0 +2013,8,21,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1135,0,0,1316,5,0,0 +2013,6,11,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1515,42,1,1630,36,1,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1258,-6,0,1410,-12,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,30,1,1210,27,1,0 +2013,7,15,1,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1200,4,0,1932,7,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1530,4,0,1850,5,0,0 +2013,10,5,6,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,-1,0,850,-3,0,0 +2013,9,16,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,0,0,2035,22,1,0 +2013,8,12,1,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1355,18,1,1655,12,0,0 +2013,7,13,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,958,41,1,1220,32,1,0 +2013,9,21,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,190,1,1450,194,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-3,0,1414,-17,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,-6,0,2353,-10,0,0 +2013,5,3,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1510,-3,0,1835,-13,0,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1856,-3,0,2143,-4,0,0 +2013,5,26,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,-5,0,19,1,0,0 +2013,5,7,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,555,-7,0,847,-23,0,0 +2013,4,25,4,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2255,-5,0,725,3,0,0 +2013,4,9,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,635,1,0,1235,-9,0,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,830,3,0,1045,25,1,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1742,27,1,2102,28,1,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1609,2,0,1627,0,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1847,-4,0,2022,-44,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1450,3,0,1635,-7,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1221,39,1,1537,14,0,0 +2013,8,18,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,22,1,1645,15,1,0 +2013,8,4,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,2,0,1010,19,1,0 +2013,7,20,6,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1425,-8,0,2235,14,0,0 +2013,4,24,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1630,-4,0,1917,-8,0,0 +2013,7,17,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,710,26,1,903,22,1,0 +2013,6,19,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,4,0,1345,-1,0,0 +2013,5,9,4,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1259,1,0,1604,1,0,0 +2013,5,18,6,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1721,-3,0,1845,-9,0,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1530,-3,0,1717,-2,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,8,0,2357,40,1,0 +2013,6,22,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-1,0,1050,-12,0,0 +2013,6,7,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,946,34,1,1448,25,1,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,2,0,1430,-16,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,14,0,1805,16,1,0 +2013,9,23,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1920,-4,0,2246,9,0,0 +2013,8,7,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,58,1,1735,66,1,0 +2013,9,13,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,849,1,0,1041,-24,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,13,0,1240,9,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,951,13,0,1158,1,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1705,55,1,2015,55,1,0 +2013,5,20,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-1,0,1200,2,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2130,84,1,2250,52,1,0 +2013,7,23,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,642,-3,0,725,-4,0,0 +2013,9,10,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-6,0,1456,-11,0,0 +2013,4,16,2,EV,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,835,-4,0,1022,-15,0,0 +2013,6,30,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,104,1,500,117,1,0 +2013,5,26,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,2140,0,0,2350,-16,0,0 +2013,10,2,3,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1445,-1,0,1710,-11,0,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,-2,0,1951,-6,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,46,1,2055,37,1,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-4,0,1635,-10,0,0 +2013,4,15,1,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1740,-11,0,1943,-11,0,0 +2013,5,9,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-8,0,1013,-13,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,0,,1835,0,1,1 +2013,9,15,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-5,0,1551,-15,0,0 +2013,6,30,7,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1740,15,1,2015,-9,0,0 +2013,4,12,5,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1035,-1,0,1317,3,0,0 +2013,7,5,5,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,601,7,0,1329,1,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1230,0,0,1435,-2,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,700,3,0,831,-1,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-1,0,919,-8,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1335,-1,0,1547,-21,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1300,-2,0,1410,7,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1025,-5,0,1328,3,0,0 +2013,9,24,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-2,0,2200,-4,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,36,1,2235,49,1,0 +2013,8,11,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1059,-6,0,1650,-24,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2230,-7,0,653,-25,0,0 +2013,4,13,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-3,0,835,-24,0,0 +2013,6,11,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1730,17,1,1800,15,1,0 +2013,6,22,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,3,0,2051,3,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,1,0,1210,-1,0,0 +2013,10,21,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,835,5,0,1025,-8,0,0 +2013,7,11,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,-13,0,2133,-30,0,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2005,127,1,2110,114,1,0 +2013,5,29,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1215,-2,0,1240,-3,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1525,10,0,1820,5,0,0 +2013,10,5,6,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,855,-10,0,1130,-9,0,0 +2013,4,21,7,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1330,40,1,1548,27,1,0 +2013,5,7,2,EV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1440,-3,0,1640,-1,0,0 +2013,4,21,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2059,-5,0,2314,-11,0,0 +2013,5,16,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-8,0,2020,-25,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,-3,0,1615,19,1,0 +2013,9,10,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-9,0,929,-14,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-3,0,1506,-7,0,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,52,1,2050,46,1,0 +2013,7,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-5,0,1140,-16,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,-5,0,1255,-2,0,0 +2013,6,4,2,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1515,-4,0,1736,-13,0,0 +2013,8,9,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-2,0,1334,-13,0,0 +2013,5,23,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-3,0,809,-13,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,0,,1555,0,1,1 +2013,10,15,2,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,700,-4,0,755,0,0,0 +2013,6,30,7,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1850,6,0,2110,-8,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1810,4,0,2042,-2,0,0 +2013,7,31,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-4,0,1205,4,0,0 +2013,4,15,1,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2140,0,0,545,-22,0,0 +2013,8,26,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,950,52,1,1240,70,1,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2145,14,0,15,9,0,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,925,5,0,1145,-26,0,0 +2013,5,29,3,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1245,1,0,1553,-11,0,0 +2013,9,29,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1559,82,1,1719,69,1,0 +2013,8,25,7,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1032,-6,0,1336,-8,0,0 +2013,5,12,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1000,0,0,1225,-5,0,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,7,0,916,8,0,0 +2013,6,4,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,602,-4,0,803,-15,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1920,239,1,2035,210,1,0 +2013,7,12,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1528,5,0,1647,18,1,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,38,1,1540,20,1,0 +2013,7,10,3,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,113,1,1510,127,1,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1800,-2,0,2225,3,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,825,70,1,1100,86,1,0 +2013,7,26,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1545,3,0,1710,7,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1845,31,1,2030,126,1,0 +2013,4,7,7,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1205,-13,0,1300,-15,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1558,12,0,1732,9,0,0 +2013,7,11,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1535,31,1,1730,19,1,0 +2013,9,11,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-7,0,630,-20,0,0 +2013,5,31,5,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,950,-1,0,1434,-5,0,0 +2013,9,21,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1230,29,1,1745,7,0,0 +2013,9,9,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1840,5,0,1858,3,0,0 +2013,9,13,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,710,-7,0,1025,-23,0,0 +2013,5,25,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,0,0,1405,-6,0,0 +2013,7,18,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,839,-10,0,1013,-48,0,0 +2013,8,9,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1705,51,1,1855,61,1,0 +2013,7,21,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2100,-2,0,120,-12,0,0 +2013,4,13,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1050,-3,0,1255,-11,0,0 +2013,10,1,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1949,-3,0,2127,16,1,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2155,121,1,2335,99,1,0 +2013,10,23,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,-6,0,1352,4,0,0 +2013,4,26,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,1,0,1435,-9,0,0 +2013,7,25,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-1,0,921,-7,0,0 +2013,7,12,5,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1325,1,0,1546,-1,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2151,-6,0,2350,-22,0,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,715,16,1,945,4,0,0 +2013,4,6,6,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,2100,1,0,2252,-15,0,0 +2013,4,1,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1415,11,0,2018,-16,0,0 +2013,4,24,3,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,47,1,1630,41,1,0 +2013,6,22,6,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1050,52,1,1235,39,1,0 +2013,5,31,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-5,0,1015,-5,0,0 +2013,5,31,5,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1910,1,0,2155,-7,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1514,-5,0,1733,-17,0,0 +2013,7,20,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2214,5,0,100,5,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1325,1,0,1510,-14,0,0 +2013,4,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,1,0,2345,3,0,0 +2013,7,7,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-9,0,1055,-8,0,0 +2013,5,1,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1950,-2,0,2254,2,0,0 +2013,6,22,6,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1803,6,0,2109,-5,0,0 +2013,5,11,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-6,0,1053,-18,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,830,-2,0,1125,-28,0,0 +2013,6,11,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1750,-5,0,1924,-13,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1335,0,0,1620,1,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,15,1,2259,13,0,0 +2013,8,11,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,35,1,1445,26,1,0 +2013,5,21,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,745,15,1,1015,10,0,0 +2013,8,1,4,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,-8,0,1930,4,0,0 +2013,5,27,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,-3,0,1145,-7,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,14,0,1735,3,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,0,0,1814,8,0,0 +2013,10,7,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,15,1,1840,5,0,0 +2013,4,11,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,625,-1,0,1021,-10,0,0 +2013,7,1,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,21,1,1200,15,1,0 +2013,5,3,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,700,-7,0,825,0,0,0 +2013,9,12,4,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1907,-2,0,38,-11,0,0 +2013,4,1,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1738,25,1,1818,44,1,0 +2013,9,11,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-3,0,910,-6,0,0 +2013,10,11,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2236,27,1,2359,22,1,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1610,15,1,1735,-13,0,0 +2013,6,13,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,8,0,2227,13,0,0 +2013,7,8,1,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,700,2,0,1235,-1,0,0 +2013,10,20,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-9,0,1430,-8,0,0 +2013,7,10,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2239,70,1,633,61,1,0 +2013,9,29,7,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1806,-1,0,2051,-9,0,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2005,237,1,2250,235,1,0 +2013,8,7,3,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-1,0,910,-10,0,0 +2013,5,21,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1035,98,1,1400,114,1,0 +2013,7,28,7,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2119,-2,0,2349,4,0,0 +2013,4,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1938,31,1,2104,27,1,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1405,-1,0,1510,1,0,0 +2013,7,10,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,0,0,2035,-10,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1230,7,0,1800,2,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-3,0,755,-4,0,0 +2013,9,28,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,900,1,0,1005,16,1,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1757,27,1,2229,13,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,1105,-8,0,0 +2013,6,4,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,7,0,1230,-12,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1515,20,1,1840,6,0,0 +2013,7,1,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1312,8,0,1606,10,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1900,24,1,35,-21,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,-4,0,1154,-2,0,0 +2013,5,26,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,6,0,1642,14,0,0 +2013,4,12,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,0,0,1119,-4,0,0 +2013,8,14,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,-7,0,1940,-15,0,0 +2013,10,29,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-4,0,810,-2,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-4,0,1027,-3,0,0 +2013,4,1,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,810,0,0,1115,7,0,0 +2013,4,25,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,-2,0,752,-27,0,0 +2013,5,28,2,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-8,0,911,6,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1124,8,0,1253,21,1,0 +2013,6,26,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1200,48,1,1500,42,1,0 +2013,7,16,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,915,-4,0,1740,-10,0,0 +2013,10,11,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-8,0,1200,-13,0,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,830,-13,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,0,0,2006,0,0,0 +2013,7,8,1,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1332,-4,0,1528,9,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-3,0,2152,0,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,-1,0,1340,1,0,0 +2013,5,11,6,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,-1,0,950,-6,0,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,805,0,0,1044,-1,0,0 +2013,10,29,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1050,-4,0,1235,2,0,0 +2013,4,28,7,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,605,-5,0,906,-2,0,0 +2013,5,12,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,5,0,1750,-3,0,0 +2013,5,27,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,2,0,1900,-13,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,17,1,2315,26,1,0 +2013,9,20,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1330,0,0,1447,0,0,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,3,0,2055,2,0,0 +2013,8,25,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1620,-4,0,1749,-16,0,0 +2013,4,30,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2230,-7,0,643,-2,0,0 +2013,5,20,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,4,0,940,4,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1215,2,0,1650,16,1,0 +2013,9,8,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,59,1,2056,69,1,0 +2013,6,5,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1120,-9,0,1226,-19,0,0 +2013,6,1,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,855,-7,0,1337,-12,0,0 +2013,6,8,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1935,21,1,2049,19,1,0 +2013,10,19,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-4,0,1048,-20,0,0 +2013,10,30,3,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2057,-4,0,2236,-33,0,0 +2013,10,27,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-1,0,1006,-10,0,0 +2013,8,1,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1340,44,1,1505,48,1,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,845,2,0,1120,-7,0,0 +2013,6,19,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-6,0,1010,-3,0,0 +2013,8,6,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,43,1,1450,40,1,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1950,-4,0,2110,-12,0,0 +2013,4,6,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1025,-4,0,1040,-13,0,0 +2013,5,27,1,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1311,-5,0,1441,-2,0,0 +2013,7,27,6,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-2,0,928,2,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1355,7,0,1925,-3,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,921,-4,0,0 +2013,6,1,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-6,0,749,11,0,0 +2013,4,5,5,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-2,0,10,4,0,0 +2013,9,28,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1250,2,0,1618,-6,0,0 +2013,7,11,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-2,0,2108,-10,0,0 +2013,10,17,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,837,-3,0,0 +2013,7,12,5,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1946,53,1,2103,42,1,0 +2013,10,22,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,715,-2,0,825,-1,0,0 +2013,9,15,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1040,0,0,1635,-17,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,0,0,1630,-1,0,0 +2013,5,26,7,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-7,0,1818,-13,0,0 +2013,10,7,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1935,-6,0,2105,-13,0,0 +2013,7,20,6,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,639,29,1,757,11,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,0,0,1229,-3,0,0 +2013,10,21,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,129,1,1705,125,1,0 +2013,8,17,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1113,-6,0,1348,1,0,0 +2013,7,30,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-8,0,1257,-15,0,0 +2013,4,28,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,946,36,1,1148,16,1,0 +2013,8,31,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,900,0,0,1005,-4,0,0 +2013,4,29,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,-10,0,1152,-28,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1835,60,1,2330,60,1,0 +2013,7,17,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,841,3,0,1411,-15,0,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,9,0,1430,7,0,0 +2013,6,17,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,850,-7,0,1022,-15,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1725,2,0,55,-12,0,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,42,1,2115,31,1,0 +2013,8,11,7,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1244,50,1,1733,33,1,0 +2013,8,1,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-1,0,1413,-7,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,604,15,1,909,3,0,0 +2013,8,5,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,824,0,0,1017,-2,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,819,-2,0,925,2,0,0 +2013,7,11,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1025,19,1,1308,18,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1430,-2,0,1605,-10,0,0 +2013,8,2,5,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-17,0,2015,-24,0,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-5,0,2008,-7,0,0 +2013,10,21,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1655,21,1,1800,12,0,0 +2013,8,18,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2015,5,0,2155,7,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1700,57,1,2250,65,1,0 +2013,9,2,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2015,45,1,2215,37,1,0 +2013,6,26,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,845,89,1,1125,115,1,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1255,34,1,1405,22,1,0 +2013,6,18,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-4,0,1126,-3,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1125,3,0,1705,-13,0,0 +2013,6,24,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,540,3,0,720,-10,0,0 +2013,9,29,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-7,0,1500,-8,0,0 +2013,9,5,4,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,752,-3,0,904,-16,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,-1,0,1605,7,0,0 +2013,6,15,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-2,0,728,-7,0,0 +2013,4,14,7,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,840,-6,0,1152,-4,0,0 +2013,10,14,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,22,1,1920,19,1,0 +2013,10,12,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1420,0,0,1600,-14,0,0 +2013,8,13,2,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-6,0,1425,-9,0,0 +2013,6,15,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1700,-11,0,2054,3,0,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,805,-3,0,1640,2,0,0 +2013,4,23,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,-7,0,1250,-14,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2030,40,1,2240,21,1,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1600,19,1,1715,25,1,0 +2013,5,22,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-2,0,1305,-19,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,-3,0,1408,-9,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1710,-3,0,1819,-4,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-3,0,2002,1,0,0 +2013,6,7,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1050,-9,0,0 +2013,4,15,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1650,0,0,1800,-7,0,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,-2,0,1950,-8,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1700,33,1,1830,20,1,0 +2013,10,30,3,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,9,0,1655,-5,0,0 +2013,10,13,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2000,0,0,2200,-22,0,0 +2013,7,2,2,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,707,-8,0,832,-10,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1815,24,1,1954,10,0,0 +2013,10,11,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1119,0,0,1158,-2,0,0 +2013,7,10,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,24,1,1435,35,1,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1025,1,0,1350,-6,0,0 +2013,6,8,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-1,0,1359,-20,0,0 +2013,8,15,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,735,2,0,830,-1,0,0 +2013,10,1,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-2,0,1030,-8,0,0 +2013,7,4,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,840,-6,0,1110,-9,0,0 +2013,10,27,7,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,940,47,1,1255,37,1,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,31,1,2159,31,1,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2015,-5,0,2155,-17,0,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,805,1,0,1040,0,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-3,0,1524,-4,0,0 +2013,7,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,900,-1,0,1130,-1,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,29,1,1250,1,0,0 +2013,4,7,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1200,2,0,1325,3,0,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,843,-4,0,957,-9,0,0 +2013,10,17,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1406,15,1,1729,-1,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1426,-1,0,1729,-22,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1344,5,0,1504,3,0,0 +2013,9,5,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,13,0,730,6,0,0 +2013,10,14,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,-6,0,2109,16,1,0 +2013,9,3,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,955,22,1,1050,12,0,0 +2013,4,25,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1300,-5,0,2145,0,0,0 +2013,9,26,4,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,845,-7,0,956,-17,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1545,-1,0,1909,-7,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,733,-3,0,925,-18,0,0 +2013,10,16,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,835,-5,0,1659,-25,0,0 +2013,4,3,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1530,-1,0,1852,-9,0,0 +2013,9,30,1,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-5,0,855,-23,0,0 +2013,5,31,5,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,-9,0,1727,13,0,0 +2013,10,13,7,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,820,40,1,1027,18,1,0 +2013,6,23,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1540,207,1,1858,269,1,0 +2013,4,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2125,24,1,2300,18,1,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,-2,0,730,-11,0,0 +2013,8,4,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1425,-1,0,2020,-25,0,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1357,4,0,1736,0,0,0 +2013,8,13,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,3,0,1214,-6,0,0 +2013,8,13,2,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1543,21,1,1806,19,1,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-4,0,1112,-30,0,0 +2013,4,18,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1830,3,0,2110,3,0,0 +2013,6,17,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1959,9,0,2120,-3,0,0 +2013,7,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,14,0,1830,-9,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1505,33,1,1720,33,1,0 +2013,6,15,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1111,-2,0,1207,-8,0,0 +2013,9,16,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1250,-5,0,1637,-2,0,0 +2013,6,18,2,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,-3,0,2127,-23,0,0 +2013,7,7,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-5,0,1545,34,1,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2158,215,1,2226,205,1,0 +2013,5,19,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,920,11,0,1530,-3,0,0 +2013,10,7,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,931,-9,0,1235,-5,0,0 +2013,4,1,1,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,812,36,1,1035,24,1,0 +2013,4,1,1,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1515,-5,0,1700,4,0,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,857,-4,0,1047,-16,0,0 +2013,7,31,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1135,0,0,1423,9,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2030,-7,0,2155,-6,0,0 +2013,6,6,4,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,10,0,1910,26,1,0 +2013,10,13,7,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,0,0,543,-15,0,0 +2013,10,30,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,-8,0,2018,5,0,0 +2013,7,9,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1809,78,1,2100,78,1,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,16,1,2040,-5,0,0 +2013,10,6,7,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,-10,0,1605,-14,0,0 +2013,6,12,3,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1000,-1,0,1145,-5,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,56,1,1835,67,1,0 +2013,4,11,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,7,0,1534,-5,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1630,-1,0,1810,5,0,0 +2013,5,12,7,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1845,1,0,2040,7,0,0 +2013,6,23,7,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1431,-9,0,1627,-12,0,0 +2013,10,22,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,840,-7,0,1006,-24,0,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1815,23,1,1935,20,1,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1952,8,0,2320,-3,0,0 +2013,10,7,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,814,54,1,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1025,1,0,1140,2,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-2,0,910,-18,0,0 +2013,6,5,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1012,-6,0,1314,-10,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1620,53,1,1812,53,1,0 +2013,6,8,6,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1025,-1,0,1140,0,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1940,3,0,2230,7,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,13,0,2200,9,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,13,0,2045,5,0,0 +2013,6,14,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,-5,0,945,-11,0,0 +2013,8,6,2,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,557,3,0,931,-7,0,0 +2013,5,20,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,622,3,0,654,6,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1456,-1,0,1611,7,0,0 +2013,5,27,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,7,0,831,-2,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,830,-2,0,1025,5,0,0 +2013,10,4,5,9E,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1214,-7,0,1505,-10,0,0 +2013,4,22,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-1,0,2011,-7,0,0 +2013,10,2,3,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-4,0,1124,-23,0,0 +2013,9,8,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1715,-8,0,1830,-14,0,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1320,-6,0,1711,-20,0,0 +2013,10,15,2,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2120,-5,0,2349,-7,0,0 +2013,7,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,58,1,720,75,1,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,855,-2,0,1605,-15,0,0 +2013,6,16,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1459,49,1,1654,68,1,0 +2013,6,23,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1340,30,1,1505,23,1,0 +2013,6,24,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1255,5,0,0 +2013,4,12,5,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1133,-11,0,1335,-6,0,0 +2013,4,2,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2145,30,1,29,18,1,0 +2013,5,27,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,-8,0,954,-17,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,8,0,2102,50,1,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1835,9,0,1935,3,0,0 +2013,6,20,4,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-3,0,1945,-1,0,0 +2013,5,6,1,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1515,8,0,2035,0,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,-1,0,2130,-2,0,0 +2013,4,10,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1435,-2,0,1605,-15,0,0 +2013,5,3,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,715,-5,0,925,-5,0,0 +2013,5,24,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,4,0,1830,-12,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1734,87,1,1817,81,1,0 +2013,8,8,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-2,0,1222,-5,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,850,88,1,1015,75,1,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-5,0,930,-5,0,0 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,51,1,1106,24,1,0 +2013,6,5,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,830,-6,0,1647,-7,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2015,37,1,2237,21,1,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,935,-4,0,1059,-5,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1211,-2,0,1402,10,0,0 +2013,7,18,4,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1800,1,0,1920,-5,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,838,-6,0,1715,-21,0,0 +2013,6,5,3,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,839,25,1,1002,11,0,0 +2013,8,27,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-1,0,1734,13,0,0 +2013,5,19,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1037,-8,0,1147,-3,0,0 +2013,6,3,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,635,-1,0,740,-7,0,0 +2013,8,6,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-8,0,957,-1,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,811,-4,0,1036,-16,0,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,930,2,0,1059,-5,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1225,12,0,1503,10,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1030,-1,0,1300,1,0,0 +2013,9,19,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-4,0,1400,-3,0,0 +2013,4,7,7,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,-1,0,1425,-5,0,0 +2013,9,19,4,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1800,19,1,2005,0,0,0 +2013,7,27,6,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,83,1,1520,138,1,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,755,2,0,1105,0,0,0 +2013,5,29,3,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1102,-2,0,1948,2,0,0 +2013,6,27,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,840,-9,0,1014,-11,0,0 +2013,6,13,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,810,2,0,930,0,0,0 +2013,6,19,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,8,0,1955,2,0,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1717,2,0,2043,12,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,82,1,1244,68,1,0 +2013,9,6,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1521,-6,0,1649,-8,0,0 +2013,6,20,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1400,-6,0,1735,-18,0,0 +2013,4,8,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1525,5,0,2326,-5,0,0 +2013,6,13,4,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2207,-5,0,2345,-22,0,0 +2013,6,12,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-6,0,1016,-3,0,0 +2013,10,22,2,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1135,1,0,1255,-18,0,0 +2013,5,24,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,800,-14,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1550,9,0,2110,18,1,0 +2013,8,21,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1500,-4,0,1548,-1,0,0 +2013,6,19,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,-15,0,2220,-4,0,0 +2013,10,29,2,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,2157,56,1,2316,51,1,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2017,76,1,2159,100,1,0 +2013,9,11,3,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-7,0,1525,-15,0,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,915,-2,0,1035,-8,0,0 +2013,4,6,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1455,15,1,1622,2,0,0 +2013,7,16,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,1,0,1026,16,1,0 +2013,9,12,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1445,0,0,1550,1,0,0 +2013,6,4,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-13,0,2042,-22,0,0 +2013,10,22,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1445,-2,0,1905,-3,0,0 +2013,4,19,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1912,-17,0,0 +2013,10,18,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1215,-6,0,1505,-13,0,0 +2013,6,17,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1245,-6,0,1442,-15,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1940,9,0,2320,-14,0,0 +2013,6,15,6,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-4,0,2015,-9,0,0 +2013,6,8,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,-3,0,1903,-3,0,0 +2013,9,27,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,8,0,1735,4,0,0 +2013,10,5,6,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,934,-3,0,1213,-26,0,0 +2013,10,5,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1520,0,0,1633,-7,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,13,0,2157,-5,0,0 +2013,10,3,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,710,9,0,740,-3,0,0 +2013,4,29,1,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,750,-2,0,1038,5,0,0 +2013,6,19,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-2,0,2155,-6,0,0 +2013,6,30,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,25,1,901,17,1,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,11,0,2055,0,0,0 +2013,9,20,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,752,-6,0,904,-8,0,0 +2013,6,2,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-10,0,854,-26,0,0 +2013,5,14,2,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1416,34,1,1715,44,1,0 +2013,7,17,3,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1650,9,0,1845,-28,0,0 +2013,8,2,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2000,-1,0,2218,-5,0,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,645,-3,0,820,4,0,0 +2013,4,14,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,8,0,849,10,0,0 +2013,8,4,7,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1926,-8,0,2222,-14,0,0 +2013,10,24,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,22,1,1300,19,1,0 +2013,8,22,4,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,635,-6,0,748,-19,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,800,3,0,1245,4,0,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,2055,30,1,2155,19,1,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1935,3,0,2225,-22,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1800,4,0,2150,-5,0,0 +2013,8,1,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,0,0,1325,-8,0,0 +2013,9,17,2,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1630,1,0,1805,-3,0,0 +2013,10,24,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,47,1,1840,43,1,0 +2013,6,27,4,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1457,17,1,1600,7,0,0 +2013,10,24,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1255,-2,0,1400,-7,0,0 +2013,4,10,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-5,0,1230,-13,0,0 +2013,4,22,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1455,45,1,1811,59,1,0 +2013,4,1,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,3,0,2000,-1,0,0 +2013,4,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,0,0,2325,-6,0,0 +2013,5,29,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2252,3,0,15,3,0,0 +2013,4,8,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1105,0,0,1234,-12,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,-4,0,855,0,0,0 +2013,10,15,2,UA,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-4,0,719,-11,0,0 +2013,7,2,2,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1655,25,1,1935,11,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1931,-3,0,2305,-25,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,1,0,930,-33,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,557,7,0,932,2,0,0 +2013,9,20,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,2,0,1805,4,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,20,1,1556,9,0,0 +2013,5,4,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,3,0,1903,-4,0,0 +2013,8,3,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1425,3,0,1550,8,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1840,66,1,2000,61,1,0 +2013,8,8,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2328,-8,0,710,-19,0,0 +2013,4,30,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1225,-7,0,1426,-21,0,0 +2013,8,15,4,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,930,-1,0,1320,-11,0,0 +2013,9,27,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,601,-7,0,946,-8,0,0 +2013,5,23,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-6,0,1115,2,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2105,26,1,2225,14,0,0 +2013,10,23,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,11,0,1127,5,0,0 +2013,9,20,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,845,-8,0,941,4,0,0 +2013,5,11,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,116,1,928,95,1,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1745,4,0,1930,-1,0,0 +2013,7,3,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-10,0,1413,-5,0,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,-4,0,1731,-2,0,0 +2013,6,30,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1445,90,1,1655,79,1,0 +2013,10,3,4,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,900,11,0,1420,6,0,0 +2013,5,6,1,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1940,-2,0,2243,-14,0,0 +2013,5,10,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1950,52,1,2145,51,1,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,-4,0,2003,2,0,0 +2013,8,31,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,18,1,1915,5,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1950,15,1,2002,28,1,0 +2013,6,29,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,46,1,1615,55,1,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,6,0,2210,17,1,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2045,-8,0,2313,-6,0,0 +2013,10,24,4,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-4,0,1205,-16,0,0 +2013,5,16,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1110,21,1,1240,11,0,0 +2013,5,20,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,615,10,0,815,11,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,-6,0,2354,-6,0,0 +2013,5,17,5,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1550,85,1,1942,70,1,0 +2013,9,29,7,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,830,-5,0,1415,-17,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,900,-3,0,1028,-20,0,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1950,11,0,2115,11,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,950,1,0,1100,-14,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,13,0,1948,11,0,0 +2013,6,10,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1720,0,,1806,0,1,1 +2013,4,30,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,710,-9,0,917,-23,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,5,0,1235,-3,0,0 +2013,4,17,3,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,6,0,1630,-7,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,740,2,0,840,-8,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1308,14,0,1816,48,1,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,47,1,2030,41,1,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,-2,0,2357,-20,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,745,1,0,919,-13,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1140,36,1,1300,33,1,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1655,10,0,1955,-1,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-1,0,1349,-2,0,0 +2013,10,12,6,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-1,0,1124,-17,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,6,0,1835,7,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,0,0,1330,-8,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1743,6,0,2009,23,1,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1759,-1,0,2115,-10,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1311,13,0,1456,10,0,0 +2013,6,23,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-5,0,1530,-14,0,0 +2013,8,10,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2253,-5,0,715,-24,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1310,-4,0,1735,-12,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1515,1,0,1837,-12,0,0 +2013,9,29,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1330,-4,0,1447,-10,0,0 +2013,7,1,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1351,18,1,1510,25,1,0 +2013,4,18,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-7,0,628,-17,0,0 +2013,6,19,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,0,0,1433,-16,0,0 +2013,7,16,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,1,0,544,-26,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1559,-2,0,1919,-28,0,0 +2013,6,17,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,2005,11,0,2309,6,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,710,-3,0,1002,-3,0,0 +2013,8,27,2,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,730,-3,0,915,-16,0,0 +2013,7,19,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,20,1,1709,19,1,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1849,7,0,2145,-3,0,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,1243,-18,0,0 +2013,5,3,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1215,-4,0,1525,-14,0,0 +2013,8,15,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-3,0,1147,-6,0,0 +2013,4,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1609,0,0,1700,-6,0,0 +2013,9,27,5,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,840,-1,0,1050,-5,0,0 +2013,5,19,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,3,0,2105,8,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1540,8,0,1655,-5,0,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-6,0,945,5,0,0 +2013,5,27,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1740,89,1,2017,56,1,0 +2013,10,6,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-6,0,920,-4,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1820,1,0,2035,-20,0,0 +2013,9,7,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1035,9,0,1301,3,0,0 +2013,6,22,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,-12,0,1145,-3,0,0 +2013,6,18,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,935,9,0,1130,6,0,0 +2013,7,28,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,397,1,2059,380,1,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,-1,0,1707,-6,0,0 +2013,10,26,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1656,-3,0,2228,-11,0,0 +2013,9,15,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1810,17,1,2157,7,0,0 +2013,7,12,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2255,37,1,144,44,1,0 +2013,6,21,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1705,-2,0,1805,-8,0,0 +2013,4,23,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,81,1,1810,64,1,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-5,0,1651,5,0,0 +2013,5,6,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,0,0,1932,-13,0,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,10,0,1250,25,1,0 +2013,4,18,4,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1334,-2,0,1542,-11,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2020,-2,0,2202,-5,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,830,13,0,1020,0,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,740,193,1,910,204,1,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-4,0,921,-3,0,0 +2013,10,22,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1300,-3,0,1622,12,0,0 +2013,10,31,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1131,-14,0,1409,-8,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1117,3,0,1259,6,0,0 +2013,8,21,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1520,-1,0,1615,-4,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1155,-3,0,1320,-12,0,0 +2013,4,29,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1130,-7,0,1429,-6,0,0 +2013,8,18,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,43,1,1825,15,1,0 +2013,9,9,1,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1306,-6,0,1419,-3,0,0 +2013,7,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-5,0,1045,-4,0,0 +2013,5,13,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1541,-4,0,1734,-5,0,0 +2013,4,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1658,6,0,2315,-8,0,0 +2013,8,5,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1845,-4,0,2104,-6,0,0 +2013,4,25,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,7,0,1740,2,0,0 +2013,9,17,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1440,0,0,1731,9,0,0 +2013,8,16,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,815,0,0,905,-5,0,0 +2013,6,24,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-6,0,2115,-8,0,0 +2013,4,8,1,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1110,-6,0,1305,-15,0,0 +2013,4,18,4,OO,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1136,-15,0,1433,-23,0,0 +2013,9,2,1,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,625,-5,0,836,-24,0,0 +2013,7,30,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1955,113,1,2246,108,1,0 +2013,5,16,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,85,1,5,85,1,0 +2013,10,26,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,3,0,1352,-11,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2230,123,1,2330,116,1,0 +2013,5,19,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-5,0,1800,-12,0,0 +2013,10,29,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,1,0,755,21,1,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,0,0,1052,-3,0,0 +2013,4,8,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1055,-10,0,0 +2013,4,30,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,902,33,1,1705,68,1,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1535,88,1,1735,88,1,0 +2013,9,12,4,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,929,-8,0,0 +2013,6,1,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-2,0,1045,-12,0,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1900,35,1,2110,32,1,0 +2013,7,11,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,900,-8,0,1140,-20,0,0 +2013,6,7,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,-6,0,520,-21,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,725,-6,0,824,7,0,0 +2013,4,26,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,1,0,1049,-2,0,0 +2013,4,13,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,852,-4,0,1214,-10,0,0 +2013,6,28,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,44,1,1225,36,1,0 +2013,8,12,1,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-4,0,1916,-3,0,0 +2013,7,27,6,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,13,0,1355,12,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,752,0,0,929,-5,0,0 +2013,5,9,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,-6,0,954,-14,0,0 +2013,6,1,6,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-4,0,1852,4,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1625,35,1,2030,9,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1245,27,1,1435,13,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1550,8,0,1900,-9,0,0 +2013,10,19,6,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,700,0,0,744,0,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,0,0,1345,-9,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,-4,0,1521,-10,0,0 +2013,4,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1015,-9,0,1200,-12,0,0 +2013,8,12,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,1,0,725,1,0,0 +2013,10,28,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1712,1,0,1849,-6,0,0 +2013,10,15,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1835,61,1,1945,74,1,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1725,6,0,1850,19,1,0 +2013,4,19,5,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1845,20,1,2130,19,1,0 +2013,9,23,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,0,0,1220,-20,0,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,810,-8,0,1140,-13,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1430,7,0,1605,13,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,850,10,0,932,-2,0,0 +2013,10,9,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-7,0,829,-11,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1355,4,0,1455,0,0,0 +2013,8,22,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,748,-7,0,922,-12,0,0 +2013,8,22,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,11,0,1812,0,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,957,-3,0,1124,0,0,0 +2013,4,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-2,0,848,10,0,0 +2013,5,28,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-8,0,2359,-15,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1915,3,0,2050,-14,0,0 +2013,9,9,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,2,0,857,2,0,0 +2013,7,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,805,-1,0,910,-14,0,0 +2013,5,7,2,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1100,-1,0,1440,7,0,0 +2013,8,6,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1656,-2,0,1831,-11,0,0 +2013,6,23,7,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,700,-4,0,905,-1,0,0 +2013,6,9,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,740,-3,0,1545,4,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,0,,1915,0,1,1 +2013,4,18,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,69,1,2154,61,1,0 +2013,8,2,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,20,1,1315,17,1,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,835,0,0,1010,4,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1720,7,0,1940,7,0,0 +2013,8,14,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,728,-13,0,0 +2013,5,18,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,-6,0,1710,-14,0,0 +2013,4,5,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-3,0,1549,-6,0,0 +2013,6,18,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,730,6,0,845,14,0,0 +2013,8,23,5,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1650,-1,0,1910,19,1,0 +2013,8,8,4,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1659,8,0,1836,6,0,0 +2013,4,10,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,-4,0,1602,-26,0,0 +2013,7,18,4,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1655,13,0,1825,-14,0,0 +2013,7,16,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-1,0,1144,-13,0,0 +2013,6,13,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1202,153,1,1435,158,1,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1330,18,1,1555,22,1,0 +2013,6,25,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-1,0,1048,-12,0,0 +2013,5,13,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,0,0,1427,-21,0,0 +2013,7,5,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,-1,0,1816,-3,0,0 +2013,8,15,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1125,-5,0,1130,-6,0,0 +2013,7,18,4,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,32,1,1821,21,1,0 +2013,8,16,5,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,0,0,2029,11,0,0 +2013,7,3,3,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,715,-28,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-6,0,1835,-9,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,0,0,1340,-1,0,0 +2013,5,10,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1144,-5,0,1334,-17,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1845,90,1,2030,77,1,0 +2013,7,24,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,0,0,1230,1,0,0 +2013,7,13,6,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,47,1,1455,65,1,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,-6,0,1322,-11,0,0 +2013,7,6,6,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,735,-4,0,1000,-21,0,0 +2013,8,18,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-5,0,1623,-10,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,945,-3,0,1202,-1,0,0 +2013,7,1,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,-1,0,1220,-13,0,0 +2013,5,22,3,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,934,-9,0,1111,-23,0,0 +2013,8,5,1,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,10,0,1805,-2,0,0 +2013,6,18,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,740,-4,0,855,-4,0,0 +2013,5,5,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,0,0,2024,15,1,0 +2013,7,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1702,-5,0,2241,26,1,0 +2013,7,1,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,-10,0,823,-14,0,0 +2013,6,7,5,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-3,0,1635,-2,0,0 +2013,4,28,7,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1245,-5,0,2103,10,0,0 +2013,4,24,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,-3,0,845,53,1,0 +2013,10,7,1,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1415,53,1,1715,126,1,0 +2013,8,22,4,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1901,0,0,2000,-13,0,0 +2013,4,18,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1037,3,0,1316,-12,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1703,9,0,1924,8,0,0 +2013,5,25,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-5,0,812,-13,0,0 +2013,7,26,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1920,5,0,2030,-3,0,0 +2013,5,16,4,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,815,12,0,1122,-12,0,0 +2013,4,3,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1821,-6,0,1933,-8,0,0 +2013,10,31,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1231,44,1,1338,51,1,0 +2013,8,3,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2115,7,0,126,-2,0,0 +2013,7,24,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1235,2,0,1830,-16,0,0 +2013,10,7,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-6,0,1230,-7,0,0 +2013,4,10,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,102,1,1109,96,1,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1558,0,0,13,-14,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2029,0,0,2333,-28,0,0 +2013,4,28,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,821,-12,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2236,-3,0,11,-28,0,0 +2013,7,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1855,-1,0,2015,-6,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1420,25,1,1520,22,1,0 +2013,5,29,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1705,-2,0,1843,-10,0,0 +2013,6,5,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1820,6,0,1905,6,0,0 +2013,8,18,7,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1250,-11,0,1535,-10,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2050,0,0,2222,-16,0,0 +2013,9,21,6,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2125,-4,0,2345,16,1,0 +2013,6,24,1,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2030,5,0,2115,-11,0,0 +2013,4,10,3,EV,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,918,-8,0,1014,-23,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,8,0,17,-9,0,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,-2,0,1140,4,0,0 +2013,4,17,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,1,0,911,-5,0,0 +2013,4,28,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,-5,0,1013,-25,0,0 +2013,5,6,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1925,10,0,2129,-15,0,0 +2013,8,3,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-1,0,1302,-2,0,0 +2013,6,18,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1725,47,1,1834,119,1,0 +2013,6,11,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1440,23,1,1555,18,1,0 +2013,6,3,1,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2335,-3,0,805,-24,0,0 +2013,4,12,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,842,32,1,1015,10,0,0 +2013,9,28,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-1,0,1559,3,0,0 +2013,5,1,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1600,-5,0,11,-6,0,0 +2013,4,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,744,-3,0,908,-8,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,930,-3,0,1020,-10,0,0 +2013,5,4,6,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-5,0,1925,12,0,0 +2013,8,18,7,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,38,1,1259,32,1,0 +2013,4,20,6,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1837,-1,0,1926,-5,0,0 +2013,5,7,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,-7,0,1435,-12,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1145,19,1,1310,14,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,4,0,2123,0,0,0 +2013,4,24,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-7,0,1738,7,0,0 +2013,9,26,4,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,0,0,1343,2,0,0 +2013,5,18,6,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1245,10,0,1543,-9,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1545,2,0,1630,5,0,0 +2013,4,16,2,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2105,14,0,2347,37,1,0 +2013,7,10,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,844,21,1,0 +2013,9,7,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1003,-4,0,1136,-10,0,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,3,0,957,-12,0,0 +2013,6,25,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1646,150,1,1855,142,1,0 +2013,9,7,6,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1205,-3,0,1329,7,0,0 +2013,5,7,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,715,0,0,1508,2,0,0 +2013,7,8,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-2,0,1341,-3,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,850,45,1,1035,28,1,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,3,0,1222,-5,0,0 +2013,5,18,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1510,-3,0,1920,-22,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,72,1,2150,74,1,0 +2013,9,22,7,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,804,0,0,1125,-4,0,0 +2013,7,23,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,8,0,1820,3,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,1,0,1747,-3,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1125,-2,0,1645,-15,0,0 +2013,8,20,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,520,-3,0,623,2,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,-5,0,1350,-5,0,0 +2013,5,7,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,615,-9,0,750,-31,0,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,-2,0,2257,16,1,0 +2013,4,9,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,36,1,1845,20,1,0 +2013,5,5,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1700,0,,1732,0,1,1 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1205,-4,0,1610,-5,0,0 +2013,4,11,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1000,100,1,1105,104,1,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,1,0,1100,16,1,0 +2013,10,5,6,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1500,184,1,1725,189,1,0 +2013,9,9,1,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1956,-10,0,2116,-10,0,0 +2013,8,18,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,34,1,1910,33,1,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,-5,0,1947,-6,0,0 +2013,4,30,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-7,0,1028,-12,0,0 +2013,10,16,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,2,0,2054,-6,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2050,-2,0,2214,-6,0,0 +2013,10,10,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,52,1,2340,30,1,0 +2013,6,30,7,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1543,59,1,1835,81,1,0 +2013,4,17,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,135,1,1447,147,1,0 +2013,8,29,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,0,0,635,3,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,15,1,1620,16,1,0 +2013,8,14,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-7,0,2015,23,1,0 +2013,4,7,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1321,-1,0,1630,-17,0,0 +2013,7,9,2,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1830,1,0,1950,-16,0,0 +2013,9,23,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1803,58,1,2044,48,1,0 +2013,6,5,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1909,8,0,2154,-5,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1300,-4,0,1647,-14,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,24,1,1420,26,1,0 +2013,4,26,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1030,-8,0,1505,-5,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1112,-6,0,1238,-4,0,0 +2013,9,24,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1450,4,0,1728,-3,0,0 +2013,9,13,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1129,10,0,1236,3,0,0 +2013,5,9,4,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1432,15,1,1620,14,0,0 +2013,6,24,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,-4,0,1410,-18,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1642,23,1,2000,32,1,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,855,-3,0,1000,-27,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2035,0,0,2201,-6,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2200,-3,0,2255,-8,0,0 +2013,9,5,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,-4,0,2125,-5,0,0 +2013,8,22,4,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1342,3,0,1607,-7,0,0 +2013,8,31,6,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,936,-7,0,1120,7,0,0 +2013,7,26,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,0,0,1842,18,1,0 +2013,6,21,5,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1701,10,0,1841,4,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2159,0,0,2356,7,0,0 +2013,8,6,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,-5,0,2255,-2,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,12,0,1855,38,1,0 +2013,4,17,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1135,-1,0,1449,0,0,0 +2013,7,14,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,732,-5,0,1032,-9,0,0 +2013,10,10,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-5,0,600,-32,0,0 +2013,5,9,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2035,-3,0,2300,4,0,0 +2013,6,9,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1430,1,0,1605,23,1,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,620,-2,0,845,-4,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2100,55,1,2305,49,1,0 +2013,7,13,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,16,1,1655,-13,0,0 +2013,10,20,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1455,0,0,1744,-15,0,0 +2013,4,21,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1659,-5,0,1829,-17,0,0 +2013,8,30,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,610,-8,0,730,-23,0,0 +2013,4,9,2,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,235,6,0,634,17,1,0 +2013,8,29,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1108,-8,0,1206,-6,0,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,805,-4,0,1120,-19,0,0 +2013,6,5,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,835,-9,0,935,-26,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,550,-6,0,703,-11,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1630,0,0,2010,-8,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1305,0,0,1445,9,0,0 +2013,6,4,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-7,0,1314,-15,0,0 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-2,0,1145,-9,0,0 +2013,8,17,6,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,702,-20,0,0 +2013,8,16,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1358,-6,0,1509,-15,0,0 +2013,4,16,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1159,-5,0,2000,-28,0,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1445,0,0,1720,-12,0,0 +2013,7,12,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-7,0,1016,79,1,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1800,8,0,1917,-3,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1635,1,0,1745,-10,0,0 +2013,10,9,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1008,-9,0,1123,-11,0,0 +2013,5,18,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1231,7,0,1620,22,1,0 +2013,4,4,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,630,-2,0,801,-12,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,715,-2,0,805,-13,0,0 +2013,7,18,4,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1740,28,1,2020,34,1,0 +2013,5,13,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1512,-9,0,2054,-24,0,0 +2013,8,25,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1806,17,1,1925,6,0,0 +2013,5,3,5,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-9,0,1257,-15,0,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1105,-2,0,1205,-6,0,0 +2013,4,20,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,-5,0,1650,-14,0,0 +2013,10,28,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,-2,0,2220,12,0,0 +2013,6,29,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1250,7,0,1628,31,1,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,907,21,1,1254,31,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-1,0,903,14,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,835,44,1,1115,51,1,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2002,-3,0,2159,-23,0,0 +2013,9,16,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-3,0,1810,-22,0,0 +2013,10,10,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-7,0,753,-7,0,0 +2013,5,9,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,160,1,1520,149,1,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1820,25,1,2230,8,0,0 +2013,9,1,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1330,-4,0,1447,-12,0,0 +2013,8,7,3,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-6,0,1254,-10,0,0 +2013,7,7,7,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1740,14,0,1905,0,0,0 +2013,6,26,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1730,55,1,1848,57,1,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,-7,0,2106,-41,0,0 +2013,9,28,6,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,4,0,1220,7,0,0 +2013,10,28,1,YV,13342,General Mitchell International,Milwaukee,WI,11057,Charlotte Douglas International,Charlotte,NC,1626,13,0,1926,3,0,0 +2013,6,18,2,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1915,8,0,2010,11,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1611,141,1,1822,153,1,0 +2013,6,8,6,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,30,1,1900,26,1,0 +2013,8,12,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,-8,0,2130,-16,0,0 +2013,8,7,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,-5,0,1255,-19,0,0 +2013,6,21,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,600,6,0,642,5,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1125,-1,0,1734,0,0,0 +2013,6,4,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1020,10,0,1140,7,0,0 +2013,9,5,4,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,617,10,0,1430,-5,0,0 +2013,7,15,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,-6,0,1835,-7,0,0 +2013,5,27,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1727,-2,0,1900,-9,0,0 +2013,9,21,6,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1545,10,0,1618,17,1,0 +2013,10,27,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1633,-3,0,2020,6,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,3,0,1925,-8,0,0 +2013,10,22,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,-7,0,1720,-12,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,-3,0,1539,-12,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1810,38,1,2245,38,1,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,14,0,1055,-3,0,0 +2013,4,30,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,645,-7,0,1029,-1,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1140,0,0,1540,-8,0,0 +2013,6,19,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,823,-5,0,1412,-11,0,0 +2013,8,10,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1852,-4,0,2019,-20,0,0 +2013,6,12,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,2,0,2230,-2,0,0 +2013,10,12,6,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-5,0,845,-2,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,13,0,1245,0,0,0 +2013,8,29,4,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,2,0,2104,-32,0,0 +2013,7,19,5,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,49,1,2040,36,1,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2208,13,0,2359,8,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1310,16,1,1527,-8,0,0 +2013,9,4,3,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-6,0,849,-11,0,0 +2013,6,16,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,26,1,1755,25,1,0 +2013,9,27,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-2,0,1925,-15,0,0 +2013,10,4,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,934,-2,0,1045,-2,0,0 +2013,6,10,1,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1142,-2,0,1402,-9,0,0 +2013,8,6,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-4,0,1451,-6,0,0 +2013,6,19,3,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-8,0,1722,-5,0,0 +2013,9,21,6,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1040,37,1,1604,21,1,0 +2013,8,31,6,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1955,-11,0,2318,-21,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1200,-3,0,1346,-9,0,0 +2013,5,1,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2055,0,0,2130,-6,0,0 +2013,7,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1559,-6,0,1627,-10,0,0 +2013,5,4,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,5,0,2127,6,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,602,-4,0,729,-10,0,0 +2013,6,29,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-7,0,2023,-12,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1600,40,1,1705,23,1,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,1,0,1230,1,0,0 +2013,10,4,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-5,0,2051,-8,0,0 +2013,9,3,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1655,-4,0,1800,-19,0,0 +2013,7,18,4,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-9,0,1125,-5,0,0 +2013,8,2,5,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1656,-2,0,1916,-12,0,0 +2013,6,12,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1108,-6,0,1310,-7,0,0 +2013,5,21,2,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,640,-6,0,851,-14,0,0 +2013,10,2,3,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1415,-1,0,1515,8,0,0 +2013,4,4,4,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,829,-2,0,1057,3,0,0 +2013,5,5,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,732,-5,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1635,46,1,1855,49,1,0 +2013,5,18,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1352,-6,0,1440,-9,0,0 +2013,8,21,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1557,-1,0,2059,-1,0,0 +2013,9,27,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1505,20,1,1745,-1,0,0 +2013,4,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1900,7,0,2055,1,0,0 +2013,10,24,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1148,-4,0,1343,-17,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,635,-2,0,1005,-14,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2000,3,0,2130,0,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1345,-1,0,1725,-11,0,0 +2013,7,23,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,11,0,1255,15,1,0 +2013,5,13,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1430,-3,0,1659,-3,0,0 +2013,10,25,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,700,-6,0,800,-9,0,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,-4,0,1740,-7,0,0 +2013,5,16,4,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1035,0,0,1325,-1,0,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1955,16,1,2115,19,1,0 +2013,9,11,3,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,925,-1,0,1115,-5,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,8,0,1053,3,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1535,46,1,1640,35,1,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,945,12,0,1100,9,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2159,-5,0,2301,-6,0,0 +2013,4,17,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,850,-4,0,1018,42,1,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1938,-1,0,2104,8,0,0 +2013,10,13,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,10,0,2105,-15,0,0 +2013,10,21,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1415,23,1,1556,4,0,0 +2013,7,19,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2212,-8,0,2350,-25,0,0 +2013,8,12,1,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,9,0,643,-12,0,0 +2013,8,6,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1125,85,1,1255,75,1,0 +2013,5,5,7,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-8,0,1145,-12,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-2,0,2330,-2,0,0 +2013,7,3,3,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,12,0,1915,-3,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,905,-7,0,1606,5,0,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1540,13,0,1720,2,0,0 +2013,9,1,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1145,-3,0,1211,1,0,0 +2013,5,3,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-5,0,850,7,0,0 +2013,4,20,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1230,-3,0,1525,-25,0,0 +2013,4,8,1,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,745,4,0,1024,-4,0,0 +2013,5,2,4,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,850,21,1,1110,4,0,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1929,-10,0,2105,1,0,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,13,0,1720,41,1,0 +2013,6,12,3,9E,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-2,0,1716,4,0,0 +2013,6,28,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,635,15,1,725,2,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2055,11,0,2225,19,1,0 +2013,6,19,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1710,-4,0,1910,-7,0,0 +2013,10,10,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,710,-18,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,955,13,0,1337,-1,0,0 +2013,4,1,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,720,-4,0,1545,-4,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1033,28,1,1311,28,1,0 +2013,9,1,7,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1405,4,0,1605,-9,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,19,1,2135,13,0,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-2,0,1019,-11,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1710,24,1,1915,17,1,0 +2013,4,16,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,0,0,1958,2,0,0 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,830,-4,0,849,-16,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,600,2,0,1025,-9,0,0 +2013,8,25,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,125,1,2220,129,1,0 +2013,6,1,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,901,22,1,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,0,0,1652,-13,0,0 +2013,5,29,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1635,38,1,1840,24,1,0 +2013,7,7,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,-1,0,957,-2,0,0 +2013,6,1,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,0,0,1425,-11,0,0 +2013,4,23,2,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,-5,0,1900,19,1,0 +2013,8,2,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1015,-2,0,1353,-21,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1155,4,0,1815,-11,0,0 +2013,5,17,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,830,-3,0,900,1,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2044,2,0,2324,-11,0,0 +2013,5,7,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,925,54,1,1134,33,1,0 +2013,9,13,5,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1936,10,0,2140,3,0,0 +2013,7,1,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,2,0,2220,4,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2130,6,0,2250,1,0,0 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,925,8,0,1035,3,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1253,48,1,1517,36,1,0 +2013,6,26,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,21,1,1824,2,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1405,0,0,1655,-7,0,0 +2013,8,15,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-7,0,1554,-15,0,0 +2013,10,19,6,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1535,-10,0,1700,-5,0,0 +2013,5,14,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,922,-3,0,0 +2013,8,9,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,900,-15,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,-4,0,1040,15,1,0 +2013,4,26,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,-7,0,1904,0,0,0 +2013,8,24,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1119,32,1,1716,22,1,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-5,0,1153,0,0,0 +2013,6,12,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,8,0,1239,3,0,0 +2013,9,4,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-5,0,2143,6,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1203,-6,0,1435,-18,0,0 +2013,4,5,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,3,0,854,57,1,0 +2013,6,12,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2005,10,0,2120,7,0,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,77,1,1102,65,1,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1724,60,1,1851,60,1,0 +2013,8,1,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2100,5,0,2215,1,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,828,-5,0,954,-6,0,0 +2013,4,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1610,-5,0,1826,-9,0,0 +2013,5,9,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,900,0,0,1025,6,0,0 +2013,7,14,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2055,-1,0,2115,-8,0,0 +2013,7,8,1,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,600,-3,0,719,-17,0,0 +2013,8,12,1,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,705,-14,0,832,-28,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1735,0,0,2022,14,0,0 +2013,9,12,4,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2345,139,1,800,133,1,0 +2013,6,3,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1715,4,0,1840,-1,0,0 +2013,5,7,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1711,-4,0,1815,-12,0,0 +2013,5,21,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-6,0,1300,-22,0,0 +2013,10,28,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,627,-1,0,811,-1,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,809,12,0,935,1,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,730,-1,0,900,-2,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,16,1,1955,-4,0,0 +2013,5,24,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,33,1,2125,24,1,0 +2013,4,25,4,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-5,0,910,-6,0,0 +2013,6,14,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,44,1,1720,31,1,0 +2013,7,25,4,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,2158,-2,0,29,-16,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1750,61,1,1928,38,1,0 +2013,10,29,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,17,1,2010,-8,0,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,625,1,0,800,40,1,0 +2013,8,9,5,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,948,9,0,1311,8,0,0 +2013,10,29,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,-7,0,1611,-8,0,0 +2013,4,26,5,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-7,0,1520,-13,0,0 +2013,10,14,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,750,0,0,840,0,0,0 +2013,6,2,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,-4,0,813,-2,0,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,9,0,2125,40,1,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,-3,0,1949,-2,0,0 +2013,9,25,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-4,0,912,-30,0,0 +2013,9,23,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,936,-3,0,1130,-7,0,0 +2013,5,21,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1000,-7,0,1225,-6,0,0 +2013,4,23,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1225,17,1,1600,8,0,0 +2013,4,22,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1545,158,1,1827,178,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1510,134,1,1850,180,1,0 +2013,5,7,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,-2,0,2027,-4,0,0 +2013,6,25,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1235,-4,0,1705,-9,0,0 +2013,4,6,6,B6,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,921,-11,0,1224,-3,0,0 +2013,5,10,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,79,1,1535,72,1,0 +2013,8,30,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1345,5,0,1505,8,0,0 +2013,10,14,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,23,1,1130,11,0,0 +2013,6,23,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,-10,0,2035,-5,0,0 +2013,8,11,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2007,-1,0,2026,-16,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,815,5,0,0 +2013,7,27,6,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,2010,1,0,2219,-12,0,0 +2013,9,1,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1150,-2,0,1315,2,0,0 +2013,6,17,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1308,1,0,1428,-11,0,0 +2013,6,12,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1346,5,0,1436,8,0,0 +2013,8,22,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-12,0,1540,-13,0,0 +2013,9,3,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,0,0,1125,-1,0,0 +2013,6,17,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1045,-2,0,1333,-7,0,0 +2013,6,23,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,950,34,1,1134,9,0,0 +2013,10,3,4,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,824,-4,0,1038,-22,0,0 +2013,4,12,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2054,152,1,2158,154,1,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,750,-3,0,1044,-27,0,0 +2013,9,10,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1214,-3,0,1316,-12,0,0 +2013,7,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,850,7,0,958,-8,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,13,0,2215,10,0,0 +2013,7,25,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2010,9,0,2130,-7,0,0 +2013,9,8,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-4,0,725,-22,0,0 +2013,4,8,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-1,0,1215,0,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1940,9,0,2258,5,0,0 +2013,8,5,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,2,0,1640,16,1,0 +2013,7,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2021,0,0,2151,-4,0,0 +2013,7,10,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,835,-16,0,0 +2013,4,14,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,45,1,1310,41,1,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1602,-2,0,1824,-11,0,0 +2013,10,30,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1119,-8,0,1154,-1,0,0 +2013,4,20,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,-1,0,805,-14,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1925,57,1,2250,43,1,0 +2013,9,11,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,655,1,0,1016,13,0,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1500,-12,0,1632,15,1,0 +2013,4,16,2,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,658,-6,0,1000,-25,0,0 +2013,10,3,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,0,0,1705,-6,0,0 +2013,9,5,4,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,820,-5,0,1121,-18,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,850,77,1,1106,129,1,0 +2013,7,27,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1845,-5,0,1945,-7,0,0 +2013,8,19,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,-2,0,1554,-16,0,0 +2013,6,19,3,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1852,-4,0,2018,-6,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1125,1,0,1245,-2,0,0 +2013,8,26,1,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1845,3,0,2059,10,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1149,25,1,1418,32,1,0 +2013,4,17,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-7,0,750,10,0,0 +2013,10,3,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-6,0,916,-2,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1650,4,0,1930,-2,0,0 +2013,6,8,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,119,1,1017,116,1,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,722,-1,0,851,-6,0,0 +2013,4,24,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1500,6,0,1605,1,0,0 +2013,4,28,7,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,13,0,1915,2,0,0 +2013,8,28,3,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1454,-8,0,0 +2013,8,7,3,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2028,0,0,2247,68,1,0 +2013,9,27,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1555,-6,0,1805,4,0,0 +2013,7,28,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-7,0,1902,19,1,0 +2013,7,20,6,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,600,-1,0,730,-5,0,0 +2013,7,10,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,2,0,1035,4,0,0 +2013,9,15,7,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1941,33,1,2024,25,1,0 +2013,8,14,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,49,1,1345,44,1,0 +2013,7,26,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1710,14,0,1840,14,0,0 +2013,6,22,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,21,1,1620,13,0,0 +2013,10,18,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,700,-2,0,830,-11,0,0 +2013,6,20,4,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1138,-4,0,1228,2,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1140,-5,0,1335,-5,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,820,-3,0,1000,-12,0,0 +2013,10,6,7,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1052,-3,0,1318,-2,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2005,4,0,2204,-3,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-1,0,2303,-8,0,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-3,0,1054,-5,0,0 +2013,5,2,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-5,0,857,2,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1020,0,0,1218,-3,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,830,-2,0,1130,-4,0,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,5,0,2217,-10,0,0 +2013,5,4,6,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1520,194,1,1550,181,1,0 +2013,6,2,7,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,2,0,2147,23,1,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,925,-3,0,1227,-31,0,0 +2013,10,10,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1952,-1,0,2150,-10,0,0 +2013,4,4,4,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,650,4,0,1022,-4,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-3,0,1122,9,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1450,9,0,1750,1,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,740,-2,0,1305,-4,0,0 +2013,9,6,5,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-11,0,1220,-18,0,0 +2013,9,11,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1915,58,1,2215,56,1,0 +2013,9,8,7,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,0,0,1914,-6,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1633,-4,0,1751,-17,0,0 +2013,5,28,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,758,-18,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,900,-1,0,1625,7,0,0 +2013,7,12,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,9,0,2200,10,0,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,843,-5,0,1057,-12,0,0 +2013,6,16,7,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,710,12,0,1305,4,0,0 +2013,4,23,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,832,-3,0,951,-11,0,0 +2013,10,24,4,B6,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,920,-7,0,1226,6,0,0 +2013,6,21,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,1,0,2015,1,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1925,0,0,2146,-20,0,0 +2013,4,23,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-5,0,541,0,0,0 +2013,6,18,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1442,-2,0,1624,14,0,0 +2013,5,6,1,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1000,-1,0,1319,-9,0,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1325,37,1,1440,21,1,0 +2013,5,23,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2105,179,1,2115,172,1,0 +2013,10,28,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,-6,0,1831,-21,0,0 +2013,4,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1257,0,0,1702,8,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1935,-1,0,2255,-10,0,0 +2013,6,23,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,11,0,1846,9,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2105,-3,0,2354,-10,0,0 +2013,9,14,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,59,1,1525,49,1,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2255,-2,0,2351,-9,0,0 +2013,7,15,1,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,-1,0,1645,-7,0,0 +2013,5,15,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1310,-6,0,1510,-16,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1815,-9,0,2030,-9,0,0 +2013,8,17,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,-2,0,718,-6,0,0 +2013,10,22,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,701,11,0,827,3,0,0 +2013,4,3,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1510,0,0,2345,-4,0,0 +2013,6,6,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,21,1,901,12,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,7,0,1437,14,0,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1914,-1,0,2048,37,1,0 +2013,7,1,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1235,-15,0,0 +2013,9,5,4,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,-8,0,2105,-24,0,0 +2013,8,27,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-4,0,1519,3,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,644,-8,0,920,-17,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1306,7,0,1545,-14,0,0 +2013,8,11,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1415,3,0,1650,-5,0,0 +2013,8,5,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,-3,0,1705,-6,0,0 +2013,5,27,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1330,-1,0,1450,2,0,0 +2013,6,17,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-3,0,845,0,0,0 +2013,9,13,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-6,0,1013,-19,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1853,12,0,2213,1,0,0 +2013,5,2,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-3,0,2010,2,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1150,4,0,1337,6,0,0 +2013,4,24,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,804,13,0,940,56,1,0 +2013,9,24,2,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1120,12,0,1445,-11,0,0 +2013,9,9,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,725,-2,0,0 +2013,10,15,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1050,3,0,1110,0,0,0 +2013,5,20,1,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,950,15,1,1244,8,0,0 +2013,7,30,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,743,-7,0,847,-12,0,0 +2013,10,23,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,843,0,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,79,1,2056,64,1,0 +2013,10,17,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1105,38,1,1210,36,1,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,10,0,2112,3,0,0 +2013,8,21,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,-6,0,1505,-13,0,0 +2013,6,10,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,-5,0,845,12,0,0 +2013,6,6,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,6,0,935,-4,0,0 +2013,8,6,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,28,1,1630,16,1,0 +2013,6,26,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-1,0,1155,21,1,0 +2013,10,28,1,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1436,13,0,2216,-3,0,0 +2013,6,4,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-7,0,1324,-8,0,0 +2013,9,7,6,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-1,0,1019,-4,0,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1525,23,1,1640,18,1,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1205,-4,0,1610,-21,0,0 +2013,9,6,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1340,15,1,1538,19,1,0 +2013,4,10,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,11,0,1524,7,0,0 +2013,7,10,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1546,10,0,1612,1,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1715,45,1,1815,43,1,0 +2013,5,24,5,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1600,28,1,1810,65,1,0 +2013,8,17,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,-3,0,1253,-14,0,0 +2013,8,15,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-4,0,924,-1,0,0 +2013,6,11,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,0,0,1645,1,0,0 +2013,8,12,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,850,-7,0,1030,4,0,0 +2013,9,17,2,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,955,-4,0,1745,2,0,0 +2013,5,31,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1348,-6,0,1619,-10,0,0 +2013,6,9,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1625,8,0,1915,6,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1930,56,1,2341,96,1,0 +2013,10,8,2,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1425,-7,0,1606,-28,0,0 +2013,5,27,1,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1351,-5,0,1605,-20,0,0 +2013,4,2,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-4,0,1425,8,0,0 +2013,4,30,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,651,-4,0,1255,-12,0,0 +2013,5,3,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2330,-8,0,730,-31,0,0 +2013,5,16,4,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-2,0,810,-7,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,950,16,1,1115,18,1,0 +2013,9,7,6,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,957,-6,0,1321,6,0,0 +2013,5,10,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,-10,0,2009,-33,0,0 +2013,5,30,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,-8,0,1715,-7,0,0 +2013,8,16,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,0,0,840,3,0,0 +2013,5,19,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,630,-7,0,820,-11,0,0 +2013,10,23,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,10,0,1740,18,1,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1350,10,0,1625,8,0,0 +2013,6,12,3,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1043,-1,0,1159,7,0,0 +2013,7,23,2,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,-4,0,1711,-7,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,725,-1,0,900,8,0,0 +2013,9,21,6,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,830,44,1,1145,44,1,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1600,37,1,1730,59,1,0 +2013,10,17,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1935,151,1,2242,122,1,0 +2013,5,31,5,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1010,-5,0,1321,11,0,0 +2013,8,25,7,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,805,-5,0,919,-4,0,0 +2013,8,2,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,-3,0,1630,-11,0,0 +2013,9,17,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-6,0,2120,-15,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1520,-2,0,1632,-11,0,0 +2013,6,8,6,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,645,-1,0,946,-3,0,0 +2013,8,8,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,7,0,1421,-12,0,0 +2013,6,10,1,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1620,0,0,2000,21,1,0 +2013,9,24,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,827,-8,0,0 +2013,6,27,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,930,35,1,1409,16,1,0 +2013,4,8,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1650,0,0,1725,-8,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-5,0,755,-14,0,0 +2013,7,30,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1523,-10,0,1628,-23,0,0 +2013,9,25,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,755,-1,0,855,-2,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,910,0,0,1055,-22,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,2,0,2000,-12,0,0 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,-1,0,1335,41,1,0 +2013,10,31,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,-2,0,1445,-12,0,0 +2013,6,2,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1355,31,1,2206,23,1,0 +2013,6,18,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1035,-3,0,1218,1,0,0 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,-1,0,2015,-7,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1731,8,0,2012,-11,0,0 +2013,8,1,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2000,75,1,2015,73,1,0 +2013,5,31,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,715,-1,0,830,-7,0,0 +2013,8,12,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,618,1,0,715,2,0,0 +2013,8,3,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,5,0,1641,-3,0,0 +2013,10,16,3,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1358,-12,0,1622,-19,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,820,-4,0,1150,4,0,0 +2013,8,29,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,-5,0,609,6,0,0 +2013,7,22,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,38,1,2220,23,1,0 +2013,6,22,6,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,0,0,1033,1,0,0 +2013,9,17,2,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1515,-11,0,1831,-20,0,0 +2013,8,12,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,3,0,1000,-3,0,0 +2013,7,25,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-7,0,1525,9,0,0 +2013,6,26,3,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1350,113,1,1640,116,1,0 +2013,6,11,2,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,935,8,0,1527,-9,0,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,67,1,2119,65,1,0 +2013,9,12,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1651,60,1,1937,109,1,0 +2013,8,29,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1252,-1,0,1435,-7,0,0 +2013,7,13,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-6,0,641,-4,0,0 +2013,7,9,2,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,555,-6,0,753,-12,0,0 +2013,10,10,4,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1650,14,0,1659,2,0,0 +2013,7,1,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,26,1,1829,20,1,0 +2013,4,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-4,0,1255,-7,0,0 +2013,10,22,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2256,3,0,501,8,0,0 +2013,7,12,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,148,1,2020,151,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,-5,0,1155,-6,0,0 +2013,6,21,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-14,0,1430,-13,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1345,24,1,1640,17,1,0 +2013,8,9,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1530,0,0,1640,-8,0,0 +2013,9,25,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1042,-2,0,1143,-10,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1525,-1,0,1655,-4,0,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1603,28,1,1736,7,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1548,7,0,1831,-7,0,0 +2013,9,30,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,827,3,0,1112,-10,0,0 +2013,4,13,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,-5,0,2030,-6,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,29,1,2050,28,1,0 +2013,4,1,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1916,27,1,2207,44,1,0 +2013,8,29,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2015,-2,0,2125,-7,0,0 +2013,9,5,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,-6,0,1830,19,1,0 +2013,6,22,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1640,-5,0,1800,-37,0,0 +2013,4,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,61,1,1600,39,1,0 +2013,9,27,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1935,74,1,2005,62,1,0 +2013,9,23,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1217,54,1,1320,37,1,0 +2013,10,23,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,6,0,1314,4,0,0 +2013,6,3,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1116,0,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1136,0,0,1307,-11,0,0 +2013,6,23,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1201,15,1,1420,19,1,0 +2013,9,17,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,-2,0,2125,0,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1100,-1,0,1231,-14,0,0 +2013,9,26,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-8,0,1746,-14,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,900,1,0,1035,-14,0,0 +2013,8,8,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1110,6,0,1213,-1,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,824,-3,0,1703,6,0,0 +2013,10,14,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1002,-2,0,1210,-6,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,-2,0,1537,-1,0,0 +2013,5,4,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1417,-1,0,1525,3,0,0 +2013,5,25,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1620,-7,0,1657,0,0,0 +2013,9,30,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1201,-11,0,1344,-27,0,0 +2013,5,17,5,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,-2,0,2350,-4,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,-4,0,1345,12,0,0 +2013,8,26,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1850,13,0,2056,-7,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,8,0,1510,7,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,45,1,2041,54,1,0 +2013,7,10,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,57,1,1840,57,1,0 +2013,5,14,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,0,0,2015,-7,0,0 +2013,9,11,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1805,-8,0,2045,9,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,34,1,1720,26,1,0 +2013,6,28,5,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,344,1,1510,344,1,0 +2013,9,8,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2030,2,0,2124,13,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,26,1,2320,11,0,0 +2013,5,12,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1910,4,0,2126,6,0,0 +2013,10,4,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,630,-6,0,745,-1,0,0 +2013,4,8,1,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1759,-1,0,1957,-17,0,0 +2013,6,10,1,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1000,-7,0,0 +2013,4,10,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1309,90,1,1819,79,1,0 +2013,9,4,3,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1537,-5,0,1929,-2,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1610,-6,0,1806,-11,0,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,625,0,0,800,-2,0,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,6,0,1120,-9,0,0 +2013,5,31,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,-7,0,1555,-20,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1455,2,0,1940,-1,0,0 +2013,5,15,3,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,852,-12,0,1030,-32,0,0 +2013,9,25,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-5,0,944,-6,0,0 +2013,8,23,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1420,-5,0,2010,-11,0,0 +2013,4,11,4,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1500,0,0,1735,-12,0,0 +2013,8,9,5,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-1,0,1036,10,0,0 +2013,10,7,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1120,16,1,1250,-2,0,0 +2013,10,9,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1635,26,1,1750,23,1,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,745,-5,0,915,-5,0,0 +2013,5,13,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1310,38,1,1356,36,1,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1825,5,0,2011,79,1,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-3,0,1919,-2,0,0 +2013,8,8,4,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,715,1,0,915,0,0,0 +2013,4,18,4,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,3,0,1900,-6,0,0 +2013,10,22,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1320,-5,0,1556,-17,0,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1055,-2,0,1220,-32,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,0,0,828,-1,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,900,-9,0,0 +2013,8,24,6,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1720,-9,0,1905,-20,0,0 +2013,7,6,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1656,-3,0,1916,-9,0,0 +2013,7,19,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1543,63,1,1909,33,1,0 +2013,7,10,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,81,1,1854,67,1,0 +2013,10,28,1,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1710,-11,0,2300,-33,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1625,12,0,1715,-5,0,0 +2013,9,22,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1940,-12,0,0 +2013,8,10,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,836,-11,0,0 +2013,9,28,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,930,-2,0,1305,-44,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2059,1,0,2200,22,1,0 +2013,4,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1212,-8,0,1319,7,0,0 +2013,8,31,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-6,0,650,-4,0,0 +2013,4,28,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1455,18,1,1515,6,0,0 +2013,5,19,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-1,0,1308,-10,0,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1113,210,1,1400,222,1,0 +2013,4,29,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,800,-4,0,832,1,0,0 +2013,9,14,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,855,1,0,1125,0,0,0 +2013,6,4,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1914,7,0,2029,6,0,0 +2013,7,26,5,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1659,-3,0,1853,-15,0,0 +2013,10,16,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1555,5,0,1930,2,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1235,0,0,1450,13,0,0 +2013,6,29,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1005,-7,0,1129,-14,0,0 +2013,7,23,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,18,1,2013,33,1,0 +2013,4,4,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1650,26,1,1805,25,1,0 +2013,9,15,7,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1410,83,1,2225,63,1,0 +2013,7,27,6,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,745,-4,0,1614,-18,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-1,0,2154,7,0,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,610,-10,0,934,-3,0,0 +2013,7,6,6,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,815,-3,0,910,-7,0,0 +2013,7,10,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,600,77,1,1410,70,1,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1255,22,1,1532,25,1,0 +2013,7,18,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,605,-3,0,700,-1,0,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,-2,0,1734,-21,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2155,21,1,10,27,1,0 +2013,9,5,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,-1,0,1722,-2,0,0 +2013,5,13,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-6,0,1106,2,0,0 +2013,6,20,4,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1045,-2,0,1130,-3,0,0 +2013,5,17,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,-7,0,615,-12,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,112,1,1720,130,1,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1540,73,1,1616,77,1,0 +2013,6,22,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,615,5,0,1500,-9,0,0 +2013,10,13,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-1,0,901,-1,0,0 +2013,9,1,7,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,5,0,1330,-15,0,0 +2013,6,21,5,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1200,-1,0,1435,1,0,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2100,32,1,510,32,1,0 +2013,5,19,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1108,-4,0,1214,-9,0,0 +2013,9,25,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1820,-6,0,2000,-11,0,0 +2013,6,9,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1710,-6,0,1850,-11,0,0 +2013,5,5,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1211,-4,0,1312,-14,0,0 +2013,9,18,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,929,-9,0,0 +2013,5,4,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-1,0,740,5,0,0 +2013,10,14,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-6,0,1257,9,0,0 +2013,4,9,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-1,0,1220,-9,0,0 +2013,10,5,6,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1558,-8,0,1659,-4,0,0 +2013,6,10,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1615,45,1,1726,30,1,0 +2013,5,17,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1005,31,1,1120,29,1,0 +2013,6,13,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,605,0,0,741,-6,0,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1915,-3,0,2030,-4,0,0 +2013,5,4,6,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,618,-3,0,810,-7,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,847,26,1,1145,9,0,0 +2013,10,6,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1846,0,0,2130,-33,0,0 +2013,7,4,4,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-10,0,1925,-35,0,0 +2013,10,7,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,34,1,2050,28,1,0 +2013,4,27,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,845,0,0,1245,12,0,0 +2013,7,18,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,700,-2,0,832,2,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1531,5,0,1648,-4,0,0 +2013,9,18,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,-3,0,2327,-6,0,0 +2013,4,1,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-5,0,1400,-21,0,0 +2013,4,17,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,745,-16,0,0 +2013,7,31,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,27,1,1457,23,1,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1317,15,1,1527,16,1,0 +2013,7,7,7,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,2040,29,1,2115,22,1,0 +2013,10,14,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,6,0,920,4,0,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1929,5,0,2155,12,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1546,-1,0,1722,-16,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,9,0,1035,4,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,47,1,2151,44,1,0 +2013,5,13,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,-5,0,1405,-3,0,0 +2013,6,27,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-3,0,608,12,0,0 +2013,4,2,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,0,0,1543,-2,0,0 +2013,6,20,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2043,-11,0,2145,27,1,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1450,-3,0,1830,-6,0,0 +2013,6,12,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-6,0,720,-18,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1022,-4,0,1547,-13,0,0 +2013,10,29,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,-3,0,1442,-7,0,0 +2013,10,31,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,72,1,1500,58,1,0 +2013,10,10,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2012,4,0,2112,1,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,905,17,1,1125,7,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1120,-6,0,1301,-8,0,0 +2013,9,11,3,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1045,-7,0,1442,-19,0,0 +2013,4,30,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-4,0,1953,-17,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1749,12,0,2030,1,0,0 +2013,10,15,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1829,-6,0,2122,-6,0,0 +2013,8,2,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-3,0,1205,12,0,0 +2013,9,15,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1915,7,0,2147,7,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1910,-2,0,2129,-9,0,0 +2013,4,12,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1051,-1,0,1213,-8,0,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1951,-3,0,2027,1,0,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,815,1,0,950,1,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1148,5,0,2025,-10,0,0 +2013,6,12,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1113,-8,0,1307,0,0,0 +2013,7,19,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,6,0,1315,-13,0,0 +2013,5,9,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1245,-3,0,1605,-22,0,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1140,2,0,1250,-12,0,0 +2013,6,12,3,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,44,1,2150,34,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,12,0,1905,-12,0,0 +2013,4,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2045,-5,0,2255,-13,0,0 +2013,5,11,6,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,2000,106,1,2210,95,1,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1905,-6,0,2335,-7,0,0 +2013,5,17,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1530,-2,0,1717,-1,0,0 +2013,9,4,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,4,0,1205,2,0,0 +2013,5,17,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,2059,18,1,2344,2,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2115,1,0,2230,2,0,0 +2013,9,22,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-3,0,1158,-14,0,0 +2013,10,26,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1114,-3,0,1250,-11,0,0 +2013,5,14,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,4,0,2215,-3,0,0 +2013,5,5,7,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1118,-8,0,1249,-25,0,0 +2013,10,29,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,650,-7,0,710,4,0,0 +2013,7,11,4,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1520,8,0,1741,2,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1537,-2,0,1735,-17,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1527,26,1,1637,12,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1939,-8,0,2247,-17,0,0 +2013,10,2,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,800,0,0,910,-3,0,0 +2013,6,21,5,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1142,2,0,1330,-10,0,0 +2013,6,9,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1215,18,1,1445,74,1,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,-2,0,1910,-10,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1728,9,0,2057,-24,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,0,,1210,0,1,1 +2013,8,10,6,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-3,0,1303,-12,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1046,-1,0,1153,-16,0,0 +2013,6,15,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,57,1,1750,45,1,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1130,4,0,1340,-2,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1520,0,0,1640,-5,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-4,0,1203,-9,0,0 +2013,4,4,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,745,-3,0,950,12,0,0 +2013,9,20,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,-7,0,833,-10,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1530,1,0,1730,3,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,4,0,1904,-4,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,-5,0,705,-8,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1015,12,0,1755,19,1,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,715,-8,0,815,-14,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1350,35,1,1638,16,1,0 +2013,9,27,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1200,-1,0,1340,-3,0,0 +2013,8,5,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,18,1,927,6,0,0 +2013,8,11,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2035,-5,0,2202,-15,0,0 +2013,10,4,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,0,0,1810,-15,0,0 +2013,5,24,5,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,740,-5,0,930,-3,0,0 +2013,10,9,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-6,0,2036,-11,0,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-5,0,2250,-21,0,0 +2013,10,29,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,850,-3,0,1000,-14,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1730,16,1,1922,-7,0,0 +2013,4,24,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,621,-3,0,721,-4,0,0 +2013,8,1,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1725,5,0,2045,6,0,0 +2013,10,28,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,76,1,1357,90,1,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,745,-2,0,1320,1,0,0 +2013,5,18,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-4,0,1909,-17,0,0 +2013,10,20,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,630,-5,0,1230,-23,0,0 +2013,8,17,6,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-5,0,657,-16,0,0 +2013,7,12,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2155,125,1,105,127,1,0 +2013,4,16,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,122,1,1810,109,1,0 +2013,9,13,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,628,-7,0,757,-25,0,0 +2013,4,23,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,0,0,1008,8,0,0 +2013,5,20,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,3,0,1709,-4,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1115,11,0,1225,3,0,0 +2013,4,26,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,34,-5,0,502,-15,0,0 +2013,10,10,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-1,0,940,-1,0,0 +2013,6,16,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1345,4,0,1425,11,0,0 +2013,4,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1735,16,1,1900,10,0,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2045,18,1,2155,10,0,0 +2013,4,10,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1845,-5,0,2049,-14,0,0 +2013,4,23,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-3,0,905,4,0,0 +2013,5,25,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-6,0,1249,-9,0,0 +2013,8,28,3,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1705,-1,0,1950,7,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,733,-3,0,847,-15,0,0 +2013,7,12,5,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-8,0,735,-6,0,0 +2013,8,7,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-3,0,2005,-29,0,0 +2013,7,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,905,2,0,1040,-9,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,915,6,0,1625,18,1,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1427,9,0,1527,-6,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,815,-3,0,920,-7,0,0 +2013,4,5,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1135,-1,0,1305,-7,0,0 +2013,6,3,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,812,0,0,0 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1650,50,1,1800,34,1,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2140,2,0,2225,32,1,0 +2013,8,16,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,729,0,0,0 +2013,8,22,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,-7,0,2240,15,1,0 +2013,7,10,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,3,0,1017,-7,0,0 +2013,10,28,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,3,0,835,-4,0,0 +2013,7,13,6,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1618,-1,0,1809,7,0,0 +2013,7,26,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,902,-4,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,905,24,1,1125,41,1,0 +2013,5,9,4,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-10,0,1239,-13,0,0 +2013,10,27,7,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,23,1,1525,10,0,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,104,1,1006,131,1,0 +2013,7,26,5,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,530,45,1,634,40,1,0 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1015,-3,0,1129,-8,0,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,825,-2,0,955,-10,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,-1,0,1110,-22,0,0 +2013,9,23,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1352,7,0,1946,-10,0,0 +2013,9,6,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-2,0,1725,-10,0,0 +2013,10,1,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,-5,0,1905,-3,0,0 +2013,8,27,2,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1004,-8,0,1136,-11,0,0 +2013,10,4,5,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1535,-10,0,1727,-30,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1435,-2,0,1642,-20,0,0 +2013,7,31,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1817,9,0,1918,17,1,0 +2013,6,9,7,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1355,21,1,1559,3,0,0 +2013,4,14,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1750,58,1,1905,58,1,0 +2013,6,21,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,63,1,1524,48,1,0 +2013,10,22,2,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,630,-5,0,1230,-13,0,0 +2013,8,4,7,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1004,17,1,0 +2013,7,20,6,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-4,0,1305,-16,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1630,41,1,1910,23,1,0 +2013,4,13,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,850,-1,0,950,-6,0,0 +2013,10,15,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1119,-5,0,1154,3,0,0 +2013,7,26,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1210,12,0,1310,17,1,0 +2013,6,11,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,725,-2,0,820,-5,0,0 +2013,6,10,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1515,30,1,1730,29,1,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,25,1,10,34,1,0 +2013,6,30,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,30,1,751,10,0,0 +2013,7,19,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,0,0,641,3,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,60,1,2120,45,1,0 +2013,10,2,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,86,1,1937,78,1,0 +2013,7,14,7,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1913,23,1,2033,40,1,0 +2013,9,15,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1320,-5,0,1535,-4,0,0 +2013,5,23,4,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1345,94,1,1601,99,1,0 +2013,9,12,4,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1731,185,1,1947,282,1,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1050,-5,0,1207,-2,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2105,10,0,10,6,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,800,-4,0,1050,30,1,0 +2013,4,18,4,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1907,-3,0,2230,-27,0,0 +2013,8,19,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1515,-8,0,1815,-8,0,0 +2013,10,26,6,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-5,0,1332,-1,0,0 +2013,9,27,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1922,-3,0,2109,-8,0,0 +2013,5,22,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,19,1,655,-1,0,0 +2013,8,22,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,925,76,1,1050,69,1,0 +2013,10,11,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-8,0,1313,-9,0,0 +2013,8,26,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1548,-5,0,1715,-14,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,5,0,1832,22,1,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1020,-4,0,1218,-9,0,0 +2013,6,26,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,1951,-7,0,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1950,3,0,2115,8,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,845,-5,0,945,-12,0,0 +2013,9,9,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-8,0,934,-17,0,0 +2013,10,30,3,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,710,-3,0,845,-2,0,0 +2013,6,5,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2135,20,1,2335,14,0,0 +2013,10,27,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1529,-15,0,0 +2013,10,19,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,-5,0,1510,-18,0,0 +2013,4,19,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,3,0,1105,4,0,0 +2013,5,29,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,915,-10,0,1058,-8,0,0 +2013,4,29,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-2,0,2225,0,0,0 +2013,5,2,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1821,52,1,2015,51,1,0 +2013,6,22,6,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1240,-1,0,1615,4,0,0 +2013,6,12,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-10,0,1230,-23,0,0 +2013,6,26,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,755,-2,0,1125,-5,0,0 +2013,8,23,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,85,1,1725,81,1,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-1,0,1033,1,0,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1544,-3,0,2100,-2,0,0 +2013,5,7,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1228,6,0,1335,5,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,-4,0,850,-9,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,3,0,1550,5,0,0 +2013,9,26,4,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,-6,0,500,-14,0,0 +2013,10,8,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-10,0,753,-12,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1609,10,0,1739,18,1,0 +2013,10,11,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,-4,0,1130,-21,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,-6,0,1035,-8,0,0 +2013,6,29,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1657,17,1,1834,8,0,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,857,-4,0,1017,-22,0,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1214,6,0,1520,-28,0,0 +2013,9,16,1,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,5,0,1524,19,1,0 +2013,5,30,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,0,0,1655,8,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1900,2,0,2230,15,1,0 +2013,4,15,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,941,9,0,1148,29,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2050,18,1,2216,10,0,0 +2013,10,19,6,OO,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,-2,0,1123,-8,0,0 +2013,4,17,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1740,-1,0,1858,-14,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,2,0,1525,-2,0,0 +2013,7,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1136,20,1,1300,35,1,0 +2013,5,6,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-9,0,1155,-18,0,0 +2013,9,10,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,1001,-3,0,0 +2013,10,16,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,835,-3,0,1025,-4,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,940,27,1,1410,11,0,0 +2013,9,8,7,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,956,0,0,1657,4,0,0 +2013,10,19,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1130,3,0,1250,11,0,0 +2013,7,5,5,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1720,0,0,2213,1,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-3,0,1258,-10,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,287,1,1356,362,1,0 +2013,10,14,1,YV,14100,Philadelphia International,Philadelphia,PA,14524,Richmond International,Richmond,VA,939,-2,0,1040,7,0,0 +2013,8,5,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,0,0,1440,-24,0,0 +2013,6,3,1,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1816,-1,0,1926,7,0,0 +2013,7,7,7,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1703,171,1,1923,181,1,0 +2013,5,14,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1228,-5,0,1335,-7,0,0 +2013,9,30,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1035,-3,0,1640,-13,0,0 +2013,9,23,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-5,0,1105,1,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,835,3,0,1100,-6,0,0 +2013,10,28,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,820,-2,0,1100,-8,0,0 +2013,6,2,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1935,36,1,2120,44,1,0 +2013,8,13,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-5,0,1650,-19,0,0 +2013,4,3,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1940,-3,0,2313,-17,0,0 +2013,4,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-7,0,1216,-8,0,0 +2013,6,24,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,185,1,1535,186,1,0 +2013,6,6,4,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1435,-4,0,2305,12,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,745,-7,0,936,-16,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,835,-1,0,1025,-5,0,0 +2013,6,12,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-2,0,805,-17,0,0 +2013,6,24,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1440,14,0,1510,9,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1535,35,1,1820,26,1,0 +2013,8,9,5,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,700,-6,0,950,6,0,0 +2013,8,3,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1729,8,0,1926,3,0,0 +2013,9,9,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1200,-7,0,1515,-42,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1334,-3,0,1528,6,0,0 +2013,9,20,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,600,-10,0,708,-12,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,2,0,1035,-6,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1121,-2,0,1209,-2,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1915,6,0,2100,-5,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,825,-6,0,1115,-26,0,0 +2013,8,17,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,0,0,1310,-17,0,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,-7,0,812,3,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,1,0,1620,5,0,0 +2013,4,25,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1020,-2,0,1315,-7,0,0 +2013,10,15,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1709,-1,0,1830,10,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,0,0,1200,1,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1240,-3,0,1447,-10,0,0 +2013,5,31,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-8,0,1542,-9,0,0 +2013,9,5,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1730,-3,0,2100,-39,0,0 +2013,9,23,1,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,-1,0,800,-16,0,0 +2013,5,22,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,940,-3,0,1050,-6,0,0 +2013,4,3,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1040,3,0,1140,-10,0,0 +2013,10,4,5,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,1815,10,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,4,0,1622,-7,0,0 +2013,4,8,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1855,-4,0,2154,-17,0,0 +2013,8,2,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,954,-3,0,1340,-14,0,0 +2013,8,13,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1839,-8,0,1939,-31,0,0 +2013,9,28,6,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,-10,0,2135,-12,0,0 +2013,8,18,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,5,0,1910,11,0,0 +2013,6,1,6,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-3,0,1835,-7,0,0 +2013,4,19,5,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1822,127,1,1945,124,1,0 +2013,6,30,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,63,1,2314,45,1,0 +2013,4,17,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,-4,0,1008,0,0,0 +2013,4,6,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,14,0,1516,23,1,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,1050,21,1,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2030,3,0,2235,-9,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2130,-2,0,2322,-17,0,0 +2013,7,24,3,9E,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1332,-4,0,1456,-8,0,0 +2013,10,27,7,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1146,-6,0,1300,-20,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2256,-4,0,2258,-10,0,0 +2013,4,10,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-8,0,844,-24,0,0 +2013,4,25,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-10,0,925,-18,0,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1812,16,1,2034,5,0,0 +2013,7,31,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-5,0,1114,-8,0,0 +2013,6,9,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,19,1,1552,13,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,650,5,0,1025,-4,0,0 +2013,9,8,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1940,11,0,2049,3,0,0 +2013,4,15,1,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1645,9,0,1829,63,1,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-1,0,1850,-27,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,945,7,0,1046,-4,0,0 +2013,10,28,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,845,0,0,1023,6,0,0 +2013,5,11,6,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1705,0,0,1810,-5,0,0 +2013,8,18,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,69,1,1351,94,1,0 +2013,5,16,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1745,110,1,1915,108,1,0 +2013,6,5,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,8,0,1800,6,0,0 +2013,8,30,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,229,1,1940,240,1,0 +2013,4,17,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-8,0,853,-11,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1900,7,0,2144,-27,0,0 +2013,6,29,6,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1215,-4,0,1510,-1,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,12,0,1915,10,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1656,1,0,1825,2,0,0 +2013,4,13,6,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1650,-9,0,1859,-11,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,28,1,1505,22,1,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-4,0,2335,-5,0,0 +2013,5,27,1,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-7,0,1112,-11,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,44,1,1529,41,1,0 +2013,10,18,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1720,9,0,1835,7,0,0 +2013,9,13,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1305,-5,0,1509,-7,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1740,42,1,2100,32,1,0 +2013,8,2,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,2,0,1356,6,0,0 +2013,10,20,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,-7,0,1052,-36,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1359,0,0,1559,-2,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1725,-1,0,1957,-12,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,1311,-18,0,0 +2013,4,4,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,832,-3,0,0 +2013,6,3,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,0,0,1730,-3,0,0 +2013,6,18,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,850,-1,0,1135,-8,0,0 +2013,6,24,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-2,0,843,-9,0,0 +2013,9,9,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-3,0,1648,0,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,805,-10,0,0 +2013,8,16,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-9,0,1335,-7,0,0 +2013,4,12,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,2,0,800,9,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,920,5,0,1149,7,0,0 +2013,6,16,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1015,-1,0,1135,-1,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,830,-4,0,1402,-20,0,0 +2013,6,17,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,19,1,2048,19,1,0 +2013,9,6,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,13,0,1930,9,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,1030,-6,0,0 +2013,8,12,1,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1150,0,0,1415,21,1,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1205,9,0,1650,-5,0,0 +2013,9,21,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1052,-5,0,1159,-5,0,0 +2013,7,2,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1135,-6,0,1350,-19,0,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1935,-4,0,2122,-18,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-5,0,209,2,0,0 +2013,4,29,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1359,28,1,1520,4,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1405,78,1,1650,80,1,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,35,1,1930,30,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,125,1,1933,120,1,0 +2013,10,4,5,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,610,-13,0,745,-20,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1252,-1,0,1352,-9,0,0 +2013,10,31,4,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,950,1,0,1302,-5,0,0 +2013,6,27,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1117,13,0,1221,3,0,0 +2013,5,23,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1800,-7,0,2030,-2,0,0 +2013,10,23,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,3,0,1649,-8,0,0 +2013,4,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1210,-2,0,1440,-17,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2245,29,1,640,25,1,0 +2013,6,29,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1859,8,0,1956,29,1,0 +2013,8,10,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-5,0,1343,13,0,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,746,-3,0,1109,21,1,0 +2013,7,30,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,-2,0,830,-12,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-1,0,940,-6,0,0 +2013,10,27,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1734,162,1,1923,160,1,0 +2013,10,20,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,-4,0,2151,-20,0,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,-2,0,1530,-32,0,0 +2013,6,25,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,104,1,1757,105,1,0 +2013,10,20,7,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1459,-8,0,1621,-16,0,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1805,9,0,1910,-3,0,0 +2013,4,16,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-1,0,606,-22,0,0 +2013,10,24,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,625,-4,0,725,-8,0,0 +2013,9,2,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1920,-1,0,2040,23,1,0 +2013,9,23,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,1,0,2017,7,0,0 +2013,5,12,7,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,745,-3,0,1550,-20,0,0 +2013,5,26,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-5,0,1745,-15,0,0 +2013,4,28,7,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1705,6,0,1929,-8,0,0 +2013,6,11,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,0,0,1840,-12,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,-1,0,1505,-2,0,0 +2013,5,17,5,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1345,-2,0,1457,-5,0,0 +2013,5,28,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,7,0,2118,40,1,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1410,-5,0,1505,-2,0,0 +2013,5,6,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,6,0,1525,-2,0,0 +2013,4,25,4,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1328,43,1,1653,52,1,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1335,3,0,1440,12,0,0 +2013,6,24,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,8,0,1712,22,1,0 +2013,4,15,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,-3,0,1650,-23,0,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,2016,-4,0,2358,-20,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1925,81,1,2138,66,1,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,955,-7,0,1700,-8,0,0 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1015,-8,0,1155,-16,0,0 +2013,5,14,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,925,0,0,1040,-3,0,0 +2013,7,17,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,1,0,1228,-1,0,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,725,-5,0,820,-2,0,0 +2013,5,12,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,625,-10,0,1440,26,1,0 +2013,8,22,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1330,-2,0,1520,-7,0,0 +2013,4,2,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,811,-8,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1025,16,1,1615,-4,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,8,0,2035,1,0,0 +2013,5,3,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,942,-3,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1455,0,0,1825,-13,0,0 +2013,9,25,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,700,-4,0,840,-2,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2225,-5,0,9,-17,0,0 +2013,8,3,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-4,0,1824,25,1,0 +2013,5,12,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,833,-1,0,946,0,0,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2140,-4,0,35,6,0,0 +2013,7,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,550,41,1,711,26,1,0 +2013,10,1,2,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,955,-8,0,1049,-5,0,0 +2013,9,3,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,1,0,900,2,0,0 +2013,9,3,2,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,743,-3,0,1048,1,0,0 +2013,8,17,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1312,1,0,1515,-11,0,0 +2013,7,20,6,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,740,3,0,850,-5,0,0 +2013,4,19,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2015,94,1,2304,130,1,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,68,1,2249,63,1,0 +2013,5,19,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,2030,11,0,2115,11,0,0 +2013,9,11,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-6,0,731,-4,0,0 +2013,10,1,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,29,1,2015,1,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,8,0,1125,-6,0,0 +2013,5,30,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,800,-4,0,920,-9,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1725,54,1,2250,33,1,0 +2013,9,8,7,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1810,-1,0,1920,-5,0,0 +2013,6,3,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,-10,0,509,-17,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1902,-6,0,2007,-22,0,0 +2013,8,31,6,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,0,0,1645,1,0,0 +2013,7,16,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1523,29,1,1739,47,1,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,920,-2,0,1430,-8,0,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1920,10,0,2200,-1,0,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1005,-6,0,1135,-7,0,0 +2013,7,26,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-7,0,1424,-21,0,0 +2013,4,21,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1550,-1,0,1750,7,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,900,-4,0,1005,-7,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,27,1,2355,27,1,0 +2013,10,13,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-4,0,1105,-6,0,0 +2013,6,11,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-5,0,1535,-20,0,0 +2013,5,10,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2056,-1,0,2209,-9,0,0 +2013,9,17,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,66,1,2020,68,1,0 +2013,6,23,7,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,-1,0,2308,-2,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1135,20,1,1430,9,0,0 +2013,8,24,6,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,-2,0,1825,-7,0,0 +2013,7,21,7,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1155,27,1,1340,15,1,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,-4,0,1235,-8,0,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,-8,0,32,-20,0,0 +2013,8,12,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,22,1,1430,19,1,0 +2013,8,18,7,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1425,-2,0,1603,-17,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,750,3,0,910,0,0,0 +2013,7,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,952,-2,0,1305,-10,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1830,117,1,1935,110,1,0 +2013,9,16,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-2,0,1407,-6,0,0 +2013,4,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1930,2,0,2237,-14,0,0 +2013,5,18,6,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1230,-3,0,1505,-12,0,0 +2013,5,12,7,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1805,4,0,2040,3,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,745,-4,0,850,1,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1154,100,1,1419,130,1,0 +2013,7,1,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2045,35,1,2150,29,1,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,35,1,1140,25,1,0 +2013,10,28,1,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,39,1,1445,40,1,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2020,-4,0,2120,-10,0,0 +2013,10,13,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1230,-14,0,1405,-13,0,0 +2013,9,5,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1055,0,0,0 +2013,10,4,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,8,0,1537,9,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,629,-4,0,806,-3,0,0 +2013,10,29,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-1,0,2105,-5,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1850,1,0,2005,6,0,0 +2013,8,13,2,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1011,-2,0,1248,-1,0,0 +2013,7,15,1,OO,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-5,0,1301,-8,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,3,0,922,9,0,0 +2013,6,25,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,4,0,930,-16,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1130,0,0,1515,-7,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,2,0,1924,10,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1900,12,0,2320,9,0,0 +2013,4,30,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,950,-2,0,1100,-6,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,845,-1,0,1455,-11,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1452,11,0,1747,6,0,0 +2013,5,16,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1240,0,0,1520,-6,0,0 +2013,7,6,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-9,0,1055,-13,0,0 +2013,4,17,3,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1845,35,1,22,4,0,0 +2013,10,19,6,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1135,-10,0,1313,-2,0,0 +2013,10,28,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1700,-7,0,1837,-24,0,0 +2013,6,25,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,17,1,1251,15,1,0 +2013,6,11,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,-5,0,2152,6,0,0 +2013,7,11,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,11,0,2257,5,0,0 +2013,10,13,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1735,30,1,2305,25,1,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2205,13,0,2347,7,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1825,2,0,2127,-6,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,-8,0,1110,-10,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1520,-1,0,1646,-19,0,0 +2013,8,20,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,700,77,1,815,63,1,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,736,-4,0,856,-3,0,0 +2013,7,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1443,74,1,1644,64,1,0 +2013,6,6,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,845,10,0,1015,-2,0,0 +2013,8,1,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,10,0,2022,7,0,0 +2013,9,11,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2020,3,0,2145,0,0,0 +2013,6,21,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1325,-1,0,1345,-4,0,0 +2013,5,23,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1021,14,0,1145,11,0,0 +2013,10,3,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1250,-2,0,1315,4,0,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1527,10,0,1637,14,0,0 +2013,4,20,6,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,-4,0,1915,-14,0,0 +2013,8,30,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-4,0,1240,-7,0,0 +2013,4,21,7,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-6,0,910,-7,0,0 +2013,7,1,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-6,0,901,-27,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1939,35,1,2115,8,0,0 +2013,5,28,2,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,850,2,0,1117,5,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2130,4,0,2328,-9,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1400,8,0,1550,0,0,0 +2013,9,20,5,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,840,5,0,1100,5,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1210,-5,0,1229,12,0,0 +2013,10,1,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-4,0,2050,-11,0,0 +2013,5,28,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,828,-1,0,1344,-7,0,0 +2013,10,7,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,845,-8,0,1013,0,0,0 +2013,8,5,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,658,-7,0,910,-11,0,0 +2013,7,21,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,9,0,1705,6,0,0 +2013,7,18,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,0,0,2225,29,1,0 +2013,10,6,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1055,6,0,1155,6,0,0 +2013,9,10,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,732,-5,0,907,-13,0,0 +2013,10,28,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,840,-2,0,1208,2,0,0 +2013,5,24,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,2059,21,1,2344,5,0,0 +2013,9,5,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,-3,0,1312,7,0,0 +2013,10,19,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,5,0,2226,5,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1045,5,0,1150,-7,0,0 +2013,9,3,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1726,113,1,2006,112,1,0 +2013,4,15,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1505,63,1,1605,66,1,0 +2013,10,19,6,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1730,17,1,1903,-3,0,0 +2013,8,9,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,78,1,1630,81,1,0 +2013,6,26,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1752,10,0,1854,4,0,0 +2013,10,30,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1014,28,1,1313,35,1,0 +2013,10,25,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,700,1,0,1220,2,0,0 +2013,8,27,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,-1,0,1810,12,0,0 +2013,6,9,7,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,0,0,2010,-4,0,0 +2013,10,8,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1229,-10,0,1435,-29,0,0 +2013,8,4,7,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,810,3,0,1022,-7,0,0 +2013,9,10,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,-16,0,2235,-15,0,0 +2013,5,5,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,5,0,1857,-4,0,0 +2013,6,18,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2030,55,1,2140,51,1,0 +2013,5,29,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,821,-9,0,933,-6,0,0 +2013,9,16,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1415,0,0,1525,-4,0,0 +2013,5,28,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-3,0,2102,-9,0,0 +2013,6,9,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-4,0,1357,-14,0,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,830,-2,0,935,-18,0,0 +2013,5,31,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1310,-1,0,1358,-6,0,0 +2013,9,25,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-3,0,753,-3,0,0 +2013,5,2,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,1125,-11,0,0 +2013,7,21,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1210,6,0,1350,-17,0,0 +2013,8,12,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,-1,0,1759,-9,0,0 +2013,4,1,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,920,-4,0,1032,-15,0,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1530,-5,0,1805,7,0,0 +2013,7,12,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,45,1,1100,34,1,0 +2013,4,28,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,21,1,2045,38,1,0 +2013,7,16,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,-3,0,2300,-12,0,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-11,0,2116,-7,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1453,9,0,1900,6,0,0 +2013,7,5,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,810,-6,0,904,-12,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,1,0,1210,-5,0,0 +2013,7,19,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,945,-6,0,1105,-10,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,19,1,1020,8,0,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1234,0,,1350,0,1,1 +2013,8,8,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,635,-2,0,730,-10,0,0 +2013,4,7,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,24,1,2245,17,1,0 +2013,5,16,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1050,8,0,1100,9,0,0 +2013,10,12,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,0,0,1728,-1,0,0 +2013,4,25,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,-1,0,2140,-9,0,0 +2013,4,18,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1730,34,1,2025,39,1,0 +2013,9,14,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1142,95,1,1533,175,1,0 +2013,5,11,6,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,8,0,1230,6,0,0 +2013,7,16,2,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1730,7,0,1950,-34,0,0 +2013,8,16,5,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1643,4,0,1842,-14,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1430,6,0,1955,-10,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-7,0,1159,-24,0,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,609,-5,0,904,-17,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1440,24,1,1625,8,0,0 +2013,5,17,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1152,123,1,1317,121,1,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1120,16,1,1330,4,0,0 +2013,9,2,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,701,-6,0,802,-10,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1755,17,1,1940,1,0,0 +2013,4,12,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,619,-6,0,0 +2013,5,6,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,515,-4,0,640,9,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,733,-4,0,753,-10,0,0 +2013,8,19,1,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,-8,0,1420,-24,0,0 +2013,7,18,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-5,0,1147,-10,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,24,1,1223,16,1,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2030,0,0,2247,-19,0,0 +2013,8,16,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1513,-19,0,0 +2013,8,1,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,46,1,2115,35,1,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1905,-3,0,2130,-13,0,0 +2013,9,22,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1807,2,0,2028,8,0,0 +2013,8,15,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1543,-1,0,1910,-17,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,-2,0,1603,20,1,0 +2013,7,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,11,0,1140,7,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1706,-3,0,1855,-9,0,0 +2013,5,20,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1512,-3,0,2054,-14,0,0 +2013,5,15,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-10,0,841,-21,0,0 +2013,7,23,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,103,1,2135,94,1,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,1,0,2123,-17,0,0 +2013,6,21,5,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1640,43,1,1830,49,1,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,620,1,0,1050,6,0,0 +2013,6,2,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,2,0,1725,4,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1655,0,0,1850,-5,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1855,6,0,2020,-2,0,0 +2013,9,23,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,759,-4,0,912,4,0,0 +2013,10,2,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1700,11,0,1800,3,0,0 +2013,7,12,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,80,1,1240,89,1,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-8,0,909,4,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2301,-2,0,730,18,1,0 +2013,6,29,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1837,-1,0,2229,-6,0,0 +2013,8,30,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1230,2,0,1545,22,1,0 +2013,10,19,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1355,-7,0,1610,-18,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2040,27,1,2235,15,1,0 +2013,6,13,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,25,1,1557,15,1,0 +2013,10,26,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1456,-6,0,1553,-13,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1555,-5,0,1723,-12,0,0 +2013,7,30,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1655,16,1,44,-3,0,0 +2013,7,19,5,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,623,-7,0,1034,-31,0,0 +2013,4,1,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,0,0,2110,-3,0,0 +2013,6,4,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2130,1,0,2250,0,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,0,0,1720,-10,0,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1915,15,1,2110,-2,0,0 +2013,5,8,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,835,-10,0,0 +2013,8,12,1,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,102,1,2015,108,1,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1605,15,1,1810,7,0,0 +2013,9,3,2,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1715,1,0,1848,-4,0,0 +2013,7,30,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,40,-5,0,853,-6,0,0 +2013,8,29,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,-6,0,650,-5,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,700,-2,0,925,-5,0,0 +2013,4,11,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1925,73,1,2219,73,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,855,-1,0,1110,-16,0,0 +2013,7,5,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,600,11,0,850,1,0,0 +2013,4,20,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1710,-5,0,1830,-14,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,30,1,1925,23,1,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2050,63,1,2255,36,1,0 +2013,7,19,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,750,-5,0,1542,-25,0,0 +2013,9,2,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1105,-2,0,1228,-10,0,0 +2013,8,18,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-1,0,2150,-23,0,0 +2013,9,22,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,-2,0,1609,-6,0,0 +2013,6,7,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,710,-4,0,1010,-22,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,-3,0,915,-6,0,0 +2013,7,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1345,1,0,1710,13,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2235,-4,0,5,-25,0,0 +2013,8,3,6,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,15,1,940,-1,0,0 +2013,4,5,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-2,0,1910,-8,0,0 +2013,9,1,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1745,-6,0,1910,-14,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1315,127,1,1500,124,1,0 +2013,9,17,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1118,-8,0,1400,-18,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1502,4,0,1654,3,0,0 +2013,8,9,5,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,9,0,1850,-8,0,0 +2013,10,4,5,AS,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-3,0,1604,-18,0,0 +2013,5,28,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,-4,0,1215,-10,0,0 +2013,4,4,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1509,5,0,0 +2013,5,27,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,2,0,1014,-6,0,0 +2013,10,8,2,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1800,29,1,2000,16,1,0 +2013,5,29,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1000,1,0,1323,-4,0,0 +2013,10,28,1,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1350,12,0,1705,0,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,-9,0,1355,-16,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1650,7,0,1755,-7,0,0 +2013,10,19,6,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,720,-2,0,1240,-6,0,0 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1226,-1,0,1359,-15,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2145,0,0,7,-14,0,0 +2013,4,22,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1255,5,0,1535,32,1,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1405,7,0,1510,3,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2035,5,0,2221,-1,0,0 +2013,7,21,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,631,-3,0,756,-16,0,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1055,0,0,1855,-10,0,0 +2013,5,10,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1300,-4,0,1645,-7,0,0 +2013,10,23,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,-11,0,2104,-22,0,0 +2013,9,26,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,4,0,1730,1,0,0 +2013,8,1,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1535,13,0,1700,9,0,0 +2013,7,3,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,91,1,1315,94,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1630,-2,0,1851,-16,0,0 +2013,6,29,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-1,0,855,-12,0,0 +2013,7,7,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1141,8,0,1239,-4,0,0 +2013,4,28,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1135,-8,0,1655,-13,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1535,4,0,1620,4,0,0 +2013,6,10,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-10,0,1415,-16,0,0 +2013,9,23,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1525,-4,0,1759,-21,0,0 +2013,9,8,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,750,-10,0,840,-19,0,0 +2013,6,4,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-3,0,1000,-16,0,0 +2013,6,12,3,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-8,0,1645,-8,0,0 +2013,6,21,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,18,1,1710,7,0,0 +2013,4,8,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-1,0,1530,-1,0,0 +2013,5,30,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2155,2,0,2340,4,0,0 +2013,8,30,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1520,-7,0,1750,47,1,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1715,82,1,2255,75,1,0 +2013,7,19,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1047,-3,0,1505,-3,0,0 +2013,8,8,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1448,65,1,1650,77,1,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1256,0,0,1620,-12,0,0 +2013,6,1,6,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1649,0,0,1819,1,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1345,144,1,1512,137,1,0 +2013,7,2,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2055,52,1,2239,62,1,0 +2013,10,16,3,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1814,25,1,1958,20,1,0 +2013,8,28,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1335,10,0,1550,-3,0,0 +2013,4,22,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1425,-2,0,1549,13,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,15,1,2335,28,1,0 +2013,8,6,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,0,,720,0,1,1 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2155,18,1,2307,3,0,0 +2013,7,8,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,835,0,0,1000,-8,0,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1430,-4,0,1624,-19,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,719,-8,0,817,-18,0,0 +2013,5,29,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,26,1,1555,28,1,0 +2013,7,17,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,0,0,1635,16,1,0 +2013,7,25,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-4,0,1104,13,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1540,-2,0,1710,-26,0,0 +2013,9,30,1,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1400,16,1,1700,-10,0,0 +2013,6,3,1,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1845,95,1,2150,91,1,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1735,9,0,1935,-7,0,0 +2013,9,10,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2020,5,0,2140,1,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-8,0,1614,-16,0,0 +2013,8,18,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,21,1,1845,16,1,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1119,2,0,1443,-7,0,0 +2013,4,7,7,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,5,0,1900,10,0,0 +2013,7,29,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,0,0,855,-2,0,0 +2013,7,1,1,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,600,-1,0,820,16,1,0 +2013,9,3,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1055,18,1,1220,14,0,0 +2013,9,17,2,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,1830,-8,0,2000,-3,0,0 +2013,10,11,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,810,20,1,952,13,0,0 +2013,9,28,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,915,-9,0,1035,-7,0,0 +2013,8,26,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1440,-1,0,1654,-20,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,0,0,1417,-11,0,0 +2013,5,28,2,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2010,-11,0,2254,-7,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,1,0,1305,-1,0,0 +2013,10,9,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-4,0,1632,-11,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2010,20,1,2135,13,0,0 +2013,7,12,5,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1735,74,1,1915,94,1,0 +2013,10,24,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,940,18,1,1137,15,1,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,10,0,1745,-5,0,0 +2013,5,11,6,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1840,14,0,2047,27,1,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,18,1,1540,15,1,0 +2013,8,21,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1025,22,1,1305,19,1,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1930,0,0,2030,-3,0,0 +2013,9,5,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,0,0,1435,8,0,0 +2013,8,3,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-6,0,1405,-24,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1640,90,1,2002,84,1,0 +2013,9,9,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1436,-5,0,1645,-12,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1700,26,1,2350,16,1,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,0,,1745,0,1,1 +2013,10,25,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1718,-6,0,1921,-6,0,0 +2013,6,4,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-4,0,1110,-16,0,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2225,-1,0,2325,-12,0,0 +2013,10,15,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1633,-12,0,2100,-28,0,0 +2013,7,30,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,114,-1,0,629,-6,0,0 +2013,8,30,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1040,-1,0,1240,-8,0,0 +2013,6,12,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1020,-17,0,0 +2013,6,29,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,-2,0,1729,3,0,0 +2013,6,26,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,735,-11,0,0 +2013,5,21,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,40,1,2110,32,1,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1140,1,0,1315,-15,0,0 +2013,5,15,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1340,12,0,1950,-7,0,0 +2013,10,13,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-1,0,1257,9,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1431,-1,0,1601,-5,0,0 +2013,5,12,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1711,-3,0,1927,-42,0,0 +2013,10,26,6,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-17,0,610,-47,0,0 +2013,5,17,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-4,0,853,-10,0,0 +2013,8,8,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,194,1,1959,189,1,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,655,0,0,945,-5,0,0 +2013,6,26,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1931,-6,0,2041,-12,0,0 +2013,7,29,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-2,0,1440,-5,0,0 +2013,5,22,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1925,258,1,2129,218,1,0 +2013,8,25,7,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1400,19,1,1705,-14,0,0 +2013,10,13,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1228,-6,0,0 +2013,10,7,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-11,0,1304,-11,0,0 +2013,6,14,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,-3,0,1325,-1,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,2,0,2050,1,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2005,-4,0,2120,-12,0,0 +2013,4,14,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1337,-1,0,1655,6,0,0 +2013,5,29,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,3,0,1805,-3,0,0 +2013,9,24,2,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1425,16,1,1533,17,1,0 +2013,10,24,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1054,73,1,1830,62,1,0 +2013,6,21,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-2,0,1201,21,1,0 +2013,10,2,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,-5,0,1627,-13,0,0 +2013,6,22,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,2,0,1140,-5,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-1,0,1940,-8,0,0 +2013,8,10,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,3,0,1508,-9,0,0 +2013,7,28,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1210,8,0,1310,75,1,0 +2013,10,17,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,850,6,0,0 +2013,5,6,1,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,26,1,2145,42,1,0 +2013,8,28,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-5,0,1341,-10,0,0 +2013,6,26,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-4,0,1210,-11,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,11,0,2005,-17,0,0 +2013,8,28,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,610,-5,0,725,-12,0,0 +2013,8,10,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1110,3,0,1250,-8,0,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1421,-1,0,1718,-27,0,0 +2013,7,31,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,818,0,0,1359,-12,0,0 +2013,4,11,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,0,0,801,51,1,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2220,-3,0,2300,-2,0,0 +2013,10,20,7,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,830,0,0,1020,-14,0,0 +2013,5,10,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,14,0,1235,4,0,0 +2013,7,10,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1803,-2,0,1915,-5,0,0 +2013,9,16,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1324,-12,0,1457,-18,0,0 +2013,8,10,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1335,-2,0,1945,-15,0,0 +2013,5,12,7,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,1010,2,0,1600,-1,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,171,1,2106,156,1,0 +2013,8,8,4,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1318,43,1,1554,54,1,0 +2013,6,4,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1930,0,0,2050,-8,0,0 +2013,4,21,7,OO,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1518,-2,0,1706,15,1,0 +2013,6,20,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,0,0,1925,-10,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1000,-2,0,1051,-8,0,0 +2013,5,3,5,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-1,0,1045,-27,0,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,1,0,1105,-10,0,0 +2013,10,14,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1315,39,1,1415,29,1,0 +2013,4,3,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,610,0,0,730,-11,0,0 +2013,7,11,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1040,-12,0,1320,-7,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1607,-2,0,1926,14,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,18,1,1710,-12,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-4,0,2001,-24,0,0 +2013,7,20,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1735,-2,0,1800,15,1,0 +2013,4,5,5,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1600,-5,0,1705,-9,0,0 +2013,9,22,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1700,-9,0,2031,-13,0,0 +2013,4,15,1,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,846,-12,0,1120,-11,0,0 +2013,9,21,6,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1154,-4,0,2025,-8,0,0 +2013,9,18,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1700,-6,0,1849,-15,0,0 +2013,8,15,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,14,0,2022,13,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1500,-2,0,1828,-15,0,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,801,14,0,929,8,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,19,1,1248,23,1,0 +2013,9,13,5,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1059,87,1,1215,91,1,0 +2013,9,25,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,1938,-16,0,0 +2013,10,28,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,745,-6,0,920,-20,0,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1300,-3,0,1425,-6,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,19,1,1505,10,0,0 +2013,8,10,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,14,0,1123,7,0,0 +2013,6,5,3,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,6,0,2330,-4,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,13,0,1710,0,0,0 +2013,6,4,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,-1,0,820,-9,0,0 +2013,5,11,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1537,-2,0,1813,30,1,0 +2013,9,30,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-3,0,935,-21,0,0 +2013,10,25,5,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-4,0,1021,2,0,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1645,-3,0,1856,-16,0,0 +2013,9,11,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1355,-8,0,2112,-16,0,0 +2013,9,24,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,735,-8,0,1040,-17,0,0 +2013,9,6,5,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,653,-7,0,1110,-4,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,1102,1,0,1648,-5,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1835,92,1,1945,91,1,0 +2013,9,25,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1529,-4,0,1845,-9,0,0 +2013,8,13,2,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-2,0,545,-16,0,0 +2013,4,2,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,28,1,1516,14,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,48,1,45,35,1,0 +2013,10,13,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1435,-11,0,1610,-30,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,801,-18,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1412,0,0,1749,-8,0,0 +2013,6,13,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,0,,930,0,1,1 +2013,7,14,7,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1455,8,0,2320,39,1,0 +2013,4,29,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1545,-3,0,1652,11,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,52,1,1400,52,1,0 +2013,7,12,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2145,0,0,2225,15,1,0 +2013,10,12,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,752,-7,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1955,20,1,2230,19,1,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1038,-2,0,1245,-10,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,900,30,1,1105,20,1,0 +2013,7,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,93,1,1700,91,1,0 +2013,4,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1655,-8,0,2255,-24,0,0 +2013,9,5,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1815,67,1,2058,67,1,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,8,0,2140,1,0,0 +2013,6,13,4,OO,14307,Theodore Francis Green State,Providence,RI,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-1,0,2033,2,0,0 +2013,9,4,3,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,3,0,1800,9,0,0 +2013,10,29,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,24,1,1910,12,0,0 +2013,10,26,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,830,-6,0,933,-10,0,0 +2013,10,17,4,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1110,1,0,1250,-13,0,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,850,109,1,1209,123,1,0 +2013,7,12,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1058,-4,0,1912,12,0,0 +2013,10,13,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2105,23,1,2225,3,0,0 +2013,10,22,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,-6,0,1314,-9,0,0 +2013,5,4,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,820,-4,0,1020,-53,0,0 +2013,4,21,7,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-4,0,1617,-24,0,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,815,-2,0,1640,5,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,17,1,2215,17,1,0 +2013,5,31,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2117,0,0,535,2,0,0 +2013,8,2,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1910,82,1,2142,77,1,0 +2013,7,18,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,45,1,2153,30,1,0 +2013,7,2,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-1,0,2200,-6,0,0 +2013,9,9,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,8,0,1935,-14,0,0 +2013,10,15,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-11,0,925,3,0,0 +2013,6,27,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,5,0,1829,-13,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,730,174,1,824,212,1,0 +2013,5,22,3,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1110,0,0,1345,-9,0,0 +2013,9,16,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1714,-8,0,2019,-27,0,0 +2013,7,28,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1659,13,0,1821,77,1,0 +2013,8,10,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,0,0,1815,-13,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,-8,0,922,-9,0,0 +2013,9,24,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,-4,0,729,1,0,0 +2013,7,11,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1523,94,1,1739,108,1,0 +2013,6,5,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-2,0,700,-13,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2145,-6,0,2311,-19,0,0 +2013,6,17,1,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1951,29,1,2100,21,1,0 +2013,9,20,5,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1056,-11,0,1304,10,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,19,1,2202,17,1,0 +2013,7,17,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1415,126,1,1551,119,1,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1355,-6,0,1510,-10,0,0 +2013,4,15,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-6,0,1655,-20,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1855,-2,0,2136,-10,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2305,61,1,2359,58,1,0 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,7,0,1552,11,0,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,13,0,1529,20,1,0 +2013,10,30,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1105,23,1,1355,5,0,0 +2013,6,26,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1130,102,1,1255,91,1,0 +2013,5,2,4,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,-1,0,1845,14,0,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,279,1,1610,280,1,0 +2013,4,24,3,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2032,-6,0,2257,0,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1355,-7,0,1510,-10,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1658,-2,0,1841,-12,0,0 +2013,8,18,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,900,153,1,1052,161,1,0 +2013,6,26,3,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,188,1,2110,185,1,0 +2013,10,23,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1118,27,1,1720,9,0,0 +2013,8,3,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1019,41,1,1815,16,1,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1650,9,0,1835,11,0,0 +2013,4,27,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1900,-5,0,2150,-17,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2140,79,1,2359,90,1,0 +2013,10,15,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,0,0,1045,-11,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1150,0,0,1305,-8,0,0 +2013,6,16,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,945,-3,0,1045,-8,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1235,-3,0,1358,-2,0,0 +2013,9,10,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-1,0,1510,-1,0,0 +2013,10,15,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,-5,0,2000,-1,0,0 +2013,8,28,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-5,0,1019,-11,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1545,-3,0,1730,-18,0,0 +2013,10,27,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-4,0,2000,-28,0,0 +2013,5,3,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,13,0,1920,-9,0,0 +2013,6,2,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-4,0,1114,-1,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,4,0,1736,-4,0,0 +2013,9,26,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1655,29,1,1800,23,1,0 +2013,9,9,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1205,-3,0,1315,-10,0,0 +2013,7,20,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,645,-8,0,823,-12,0,0 +2013,8,15,4,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1105,-5,0,1342,-26,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1755,0,0,2005,-3,0,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1825,59,1,2121,49,1,0 +2013,9,23,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1605,4,0,1939,-16,0,0 +2013,8,15,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1500,13,0,1635,9,0,0 +2013,6,2,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-6,0,2153,-6,0,0 +2013,7,11,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,801,-9,0,0 +2013,9,17,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1120,18,1,1220,25,1,0 +2013,5,4,6,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-1,0,1845,-14,0,0 +2013,9,11,3,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-3,0,1904,-26,0,0 +2013,10,22,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1130,3,0,1908,-10,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1715,-3,0,1825,16,1,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,635,-2,0,740,-11,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,-3,0,1930,1,0,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1030,-6,0,1144,-16,0,0 +2013,6,25,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2020,84,1,2151,84,1,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,925,28,1,1425,19,1,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-4,0,827,3,0,0 +2013,7,30,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-3,0,920,2,0,0 +2013,10,17,4,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,815,-5,0,1056,-2,0,0 +2013,9,12,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,0,,2124,0,1,1 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1840,83,1,1958,63,1,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1045,-7,0,1221,-14,0,0 +2013,10,19,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1300,-3,0,1505,-11,0,0 +2013,5,28,2,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,10,0,2005,10,0,0 +2013,9,16,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,0,0,1710,-9,0,0 +2013,8,15,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1340,0,0,1505,1,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1130,-4,0,0 +2013,9,12,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,0,0,1015,6,0,0 +2013,10,13,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1449,-9,0,1639,-25,0,0 +2013,10,16,3,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2058,-3,0,2347,-9,0,0 +2013,8,9,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,-4,0,1255,-13,0,0 +2013,4,7,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,51,1,1845,47,1,0 +2013,6,13,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1505,70,1,1755,56,1,0 +2013,7,26,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2005,21,1,2320,25,1,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,45,1,1525,38,1,0 +2013,5,11,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,-10,0,1005,-32,0,0 +2013,5,10,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1425,63,1,1730,77,1,0 +2013,9,17,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1415,-7,0,2205,-11,0,0 +2013,7,6,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1352,-2,0,1536,-14,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1915,8,0,2040,-4,0,0 +2013,4,1,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1754,-5,0,1918,4,0,0 +2013,9,24,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,836,-10,0,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,-8,0,1439,-4,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1415,31,1,1640,21,1,0 +2013,7,17,3,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2040,7,0,2142,25,1,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1505,28,1,1750,23,1,0 +2013,9,4,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-9,0,1244,17,1,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2200,-2,0,2310,3,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,-4,0,2259,-20,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1345,-2,0,1525,12,0,0 +2013,5,6,1,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1817,-8,0,2108,-23,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-7,0,1024,-3,0,0 +2013,4,17,3,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,0,,1055,0,1,1 +2013,6,11,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-1,0,2205,-13,0,0 +2013,5,6,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1540,92,1,1655,80,1,0 +2013,7,21,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2046,-2,0,2213,1,0,0 +2013,8,4,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1110,-3,0,1445,-12,0,0 +2013,10,30,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,848,-5,0,1040,7,0,0 +2013,4,16,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1610,-5,0,1758,-19,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1903,49,1,2025,38,1,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1935,-2,0,2025,-7,0,0 +2013,10,6,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1807,-4,0,2119,-5,0,0 +2013,10,20,7,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1520,-1,0,1740,-23,0,0 +2013,7,6,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,-2,0,915,-14,0,0 +2013,6,24,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,147,1,545,150,1,0 +2013,6,15,6,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1220,14,0,1355,-4,0,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1410,-3,0,1730,-12,0,0 +2013,5,7,2,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1610,4,0,1807,-41,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-4,0,2143,-19,0,0 +2013,6,8,6,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,650,4,0,810,-3,0,0 +2013,5,15,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1425,-5,0,1635,1,0,0 +2013,5,17,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,605,0,0,940,-9,0,0 +2013,4,22,1,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2329,49,1,511,67,1,0 +2013,6,12,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-5,0,1455,-13,0,0 +2013,7,5,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1241,-1,0,1340,-13,0,0 +2013,9,9,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1140,2,0,1320,-6,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1030,0,0,1250,2,0,0 +2013,6,22,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,2,0,751,-14,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1042,-6,0,1922,-25,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1310,2,0,1425,14,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,838,-4,0,930,-10,0,0 +2013,4,17,3,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1036,-3,0,1155,-13,0,0 +2013,7,5,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,39,1,1654,30,1,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,3,0,1735,2,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1535,4,0,1643,4,0,0 +2013,5,20,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-8,0,1912,-4,0,0 +2013,5,9,4,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1242,0,0,2036,8,0,0 +2013,5,28,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1309,0,0,1819,-13,0,0 +2013,9,9,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-1,0,2110,-4,0,0 +2013,7,8,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,0,0,1122,-10,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1546,-5,0,1812,3,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1920,-1,0,2040,-13,0,0 +2013,4,11,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1752,5,0,1936,-16,0,0 +2013,9,13,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,611,-3,0,843,-3,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,815,-3,0,920,-2,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1420,3,0,1652,-11,0,0 +2013,5,2,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1225,-4,0,1350,-10,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1750,-6,0,2045,-20,0,0 +2013,4,12,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,-10,0,1259,-20,0,0 +2013,5,25,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1650,6,0,2025,1,0,0 +2013,5,2,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-10,0,1947,-14,0,0 +2013,7,18,4,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1345,-4,0,1525,-15,0,0 +2013,10,26,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1500,-2,0,1655,-32,0,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1015,-2,0,1148,-10,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1320,133,1,1415,133,1,0 +2013,4,29,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,700,-1,0,915,-4,0,0 +2013,8,4,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,22,1,1550,14,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,22,1,2234,16,1,0 +2013,8,21,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1714,10,0,1841,11,0,0 +2013,6,27,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,34,1,2053,13,0,0 +2013,7,10,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,-5,0,911,0,0,0 +2013,5,29,3,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1030,2,0,1121,-5,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,-6,0,1410,-20,0,0 +2013,10,18,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-3,0,1910,-11,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1845,15,1,2210,4,0,0 +2013,6,20,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,-6,0,2110,1,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,10,0,1920,7,0,0 +2013,10,17,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,13,0,1805,-11,0,0 +2013,5,4,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1359,91,1,1530,87,1,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1820,14,0,1915,11,0,0 +2013,10,2,3,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1420,5,0,1625,-14,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-5,0,922,-6,0,0 +2013,10,2,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-1,0,925,-4,0,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2031,93,1,2348,146,1,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1000,-8,0,1237,-12,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1955,30,1,2105,23,1,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-6,0,2202,-22,0,0 +2013,9,19,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-6,0,1638,9,0,0 +2013,4,27,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1015,-6,0,1130,-17,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1745,-6,0,1931,-6,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,15,1,1620,9,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1255,-3,0,1600,2,0,0 +2013,9,6,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1120,-4,0,1320,-9,0,0 +2013,4,29,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,900,-5,0,1210,-11,0,0 +2013,9,10,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,5,0,1310,2,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1220,-6,0,1946,-20,0,0 +2013,7,22,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1915,-4,0,2205,-14,0,0 +2013,7,4,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,619,-7,0,803,-8,0,0 +2013,6,21,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1330,35,1,1410,34,1,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1240,-2,0,1255,-15,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-1,0,1015,-14,0,0 +2013,5,30,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,28,1,2105,29,1,0 +2013,4,2,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1935,-5,0,2045,-2,0,0 +2013,6,10,1,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-7,0,841,6,0,0 +2013,6,2,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-2,0,1951,-12,0,0 +2013,4,17,3,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1525,-4,0,1620,9,0,0 +2013,5,21,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1847,-2,0,2151,-1,0,0 +2013,10,5,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1001,-1,0,1138,2,0,0 +2013,7,24,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,-4,0,1035,-24,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1240,4,0,1255,-8,0,0 +2013,5,15,3,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1630,-6,0,2041,-25,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1218,-4,0,1516,-18,0,0 +2013,7,3,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1225,0,0,1350,3,0,0 +2013,6,2,7,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1805,-2,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1120,-2,0,1500,-10,0,0 +2013,8,25,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1355,-14,0,0 +2013,8,22,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,29,1,1914,23,1,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,-2,0,2117,-6,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1929,-4,0,2227,-13,0,0 +2013,9,18,3,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1855,21,1,2024,13,0,0 +2013,10,24,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,2,0,1705,-1,0,0 +2013,10,30,3,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,-1,0,1912,0,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,12,0,2050,7,0,0 +2013,6,5,3,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1723,-9,0,1905,-17,0,0 +2013,5,25,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,88,1,1805,79,1,0 +2013,6,28,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,-1,0,2030,9,0,0 +2013,10,25,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-7,0,1453,11,0,0 +2013,5,29,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1437,-7,0,1647,-27,0,0 +2013,6,30,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,-5,0,1639,-19,0,0 +2013,10,15,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-7,0,1749,2,0,0 +2013,9,3,2,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,635,-9,0,745,1,0,0 +2013,4,7,7,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1610,-3,0,1730,-9,0,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1855,-3,0,2245,-17,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,17,1,2345,18,1,0 +2013,8,7,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1747,-10,0,2118,-4,0,0 +2013,9,9,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1100,-2,0,1220,11,0,0 +2013,4,8,1,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-6,0,1245,-2,0,0 +2013,6,30,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1230,-10,0,1626,-27,0,0 +2013,9,11,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,96,1,910,80,1,0 +2013,10,11,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1056,-2,0,1259,-12,0,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-3,0,830,-9,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2145,-2,0,2250,-20,0,0 +2013,7,13,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,0,0,1400,-5,0,0 +2013,9,20,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1601,31,1,1743,71,1,0 +2013,5,15,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-7,0,1228,-13,0,0 +2013,9,8,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,741,-4,0,1015,-31,0,0 +2013,7,9,2,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,630,-3,0,900,-6,0,0 +2013,10,14,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,930,11,0,1112,1,0,0 +2013,10,7,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1910,1,0,2035,-2,0,0 +2013,8,29,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,-1,0,928,-1,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,118,1,2300,107,1,0 +2013,6,26,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-13,0,1244,-10,0,0 +2013,8,31,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,132,1,650,152,1,0 +2013,6,6,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,2,0,1930,-11,0,0 +2013,7,15,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,915,-2,0,1055,1,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,21,1,955,5,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,5,0,1925,-8,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,3,0,1135,14,0,0 +2013,5,12,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1325,6,0,1654,-9,0,0 +2013,4,8,1,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-6,0,1500,-10,0,0 +2013,7,23,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1940,82,1,2235,72,1,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,655,0,0,940,-2,0,0 +2013,8,27,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,-6,0,2243,-7,0,0 +2013,8,19,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-1,0,1443,5,0,0 +2013,8,7,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-2,0,1817,-12,0,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1547,45,1,2130,55,1,0 +2013,9,16,1,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1655,14,0,1901,8,0,0 +2013,8,10,6,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,93,1,629,88,1,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,835,-5,0,1135,-17,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-7,0,1155,-12,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1735,30,1,2000,13,0,0 +2013,5,11,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,855,-1,0,1210,7,0,0 +2013,9,3,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1713,-6,0,1840,-23,0,0 +2013,10,7,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,107,1,1343,105,1,0 +2013,6,21,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1230,-2,0,1405,-17,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,63,1,1820,56,1,0 +2013,8,19,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-12,0,2215,-4,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,751,-2,0,1012,-24,0,0 +2013,4,9,2,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1734,110,1,2015,134,1,0 +2013,5,9,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-6,0,1649,-9,0,0 +2013,8,3,6,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,3,0,1004,18,1,0 +2013,7,20,6,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1335,-5,0,1545,-8,0,0 +2013,10,4,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1344,82,1,1449,113,1,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-5,0,1210,-20,0,0 +2013,5,26,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,608,0,0,640,11,0,0 +2013,9,9,1,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1614,-10,0,1741,-14,0,0 +2013,5,7,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,615,-19,0,0 +2013,5,31,5,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1010,-9,0,1137,-22,0,0 +2013,5,12,7,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1330,-1,0,1643,-17,0,0 +2013,5,22,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1351,30,1,1554,54,1,0 +2013,10,18,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2045,-3,0,2230,-7,0,0 +2013,6,29,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1220,6,0,1415,-10,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,22,1,1911,11,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,835,-2,0,935,-7,0,0 +2013,7,2,2,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-2,0,1024,13,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,-5,0,1457,-16,0,0 +2013,9,10,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,828,-1,0,1044,-18,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1855,-2,0,2345,-1,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,37,1,1515,30,1,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1049,-6,0,1442,-25,0,0 +2013,10,8,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1527,-8,0,1653,-20,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,14,0,1009,25,1,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-1,0,1555,-20,0,0 +2013,6,6,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,804,15,1,1142,-6,0,0 +2013,5,8,3,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,5,0,2130,-10,0,0 +2013,4,23,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1000,1,0,1050,-6,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,127,1,1700,136,1,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1803,0,0,2250,-42,0,0 +2013,7,30,2,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,730,3,0,933,-7,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1141,11,0,1222,-4,0,0 +2013,7,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1320,0,,1516,0,1,1 +2013,9,29,7,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,833,-10,0,1027,-26,0,0 +2013,10,28,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,935,3,0,1125,20,1,0 +2013,6,13,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-2,0,1032,-14,0,0 +2013,10,30,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1020,6,0,1220,22,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,8,0,1720,5,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,552,-7,0,804,-11,0,0 +2013,6,17,1,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,112,1,1538,178,1,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1355,-7,0,1450,-10,0,0 +2013,6,5,3,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,854,11,0,1127,-4,0,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,0,0,1620,-12,0,0 +2013,7,29,1,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,44,1,1423,29,1,0 +2013,8,31,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-4,0,1247,-14,0,0 +2013,8,19,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1505,45,1,1625,30,1,0 +2013,4,14,7,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1230,-4,0,1421,-15,0,0 +2013,7,30,2,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1904,-10,0,2033,-25,0,0 +2013,10,20,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,900,230,1,945,230,1,0 +2013,7,18,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-7,0,1008,3,0,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,807,-7,0,924,-12,0,0 +2013,5,20,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-3,0,1257,-1,0,0 +2013,8,27,2,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1820,16,1,2048,-6,0,0 +2013,8,10,6,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,1955,-4,0,2238,7,0,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,26,1,2200,18,1,0 +2013,5,23,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1425,129,1,1445,127,1,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2255,0,0,626,-13,0,0 +2013,7,20,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1156,7,0,1420,-7,0,0 +2013,8,30,5,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1135,4,0,1839,2,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-6,0,1441,-4,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1345,3,0,1510,4,0,0 +2013,6,15,6,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1335,3,0,1545,-11,0,0 +2013,7,31,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,600,-2,0,725,3,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1427,2,0,1707,-12,0,0 +2013,5,6,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1020,-2,0,1625,-7,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1753,21,1,1843,23,1,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1615,36,1,45,52,1,0 +2013,9,26,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-7,0,1400,-19,0,0 +2013,8,2,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,830,5,0,1145,-8,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1105,-1,0,1435,4,0,0 +2013,5,29,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-3,0,900,-14,0,0 +2013,6,12,3,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1003,1,0,1141,-6,0,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1205,-2,0,1353,-1,0,0 +2013,5,11,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,815,-2,0,0 +2013,6,23,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,1,0,1345,-10,0,0 +2013,6,4,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1644,8,0,1844,12,0,0 +2013,7,18,4,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,41,1,1006,34,1,0 +2013,7,20,6,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-3,0,2020,-8,0,0 +2013,8,28,3,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,-3,0,1741,2,0,0 +2013,4,27,6,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,815,20,1,1040,-4,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1840,74,1,2154,38,1,0 +2013,8,9,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2000,161,1,2135,169,1,0 +2013,5,9,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1625,-6,0,1840,75,1,0 +2013,7,23,2,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,161,1,2308,183,1,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,-5,0,1710,-24,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1255,-2,0,1423,9,0,0 +2013,9,10,2,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,910,2,0,1148,-6,0,0 +2013,7,27,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1050,-5,0,0 +2013,8,27,2,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,5,0,1420,-4,0,0 +2013,7,7,7,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1244,45,1,1733,42,1,0 +2013,7,4,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1725,-18,0,1908,-43,0,0 +2013,10,7,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,-3,0,1822,2,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2206,-13,0,2343,-25,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1515,20,1,1758,17,1,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,-2,0,2043,-29,0,0 +2013,9,5,4,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,740,7,0,934,-7,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-1,0,2358,2,0,0 +2013,9,16,1,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1608,5,0,2053,5,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,841,-3,0,1004,3,0,0 +2013,5,26,7,DL,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2245,-7,0,641,-9,0,0 +2013,7,31,3,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,804,-5,0,959,0,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,14,0,1535,7,0,0 +2013,5,20,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,22,1,2100,47,1,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2000,0,0,2045,1,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,-4,0,1940,-11,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1055,1,0,1540,-12,0,0 +2013,10,25,5,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1959,-3,0,2117,-10,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,844,-5,0,1126,-13,0,0 +2013,6,5,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1251,-11,0,1521,-15,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,-3,0,1130,-4,0,0 +2013,4,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1446,-7,0,1618,0,0,0 +2013,8,20,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-4,0,2058,7,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,0,0,2152,-15,0,0 +2013,6,20,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-1,0,950,-6,0,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1250,-2,0,1626,-14,0,0 +2013,7,6,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,6,0,1516,4,0,0 +2013,9,2,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,-5,0,12,-11,0,0 +2013,8,24,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1320,8,0,1425,55,1,0 +2013,4,5,5,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,932,23,1,1032,20,1,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1850,51,1,2205,64,1,0 +2013,4,1,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2135,-3,0,2255,0,0,0 +2013,4,14,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,19,1,1820,14,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-2,0,1500,-13,0,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1321,-8,0,1434,-18,0,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,910,4,0,1245,-8,0,0 +2013,8,4,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-5,0,2300,-7,0,0 +2013,9,18,3,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1455,7,0,1720,-2,0,0 +2013,8,4,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1421,34,1,1615,31,1,0 +2013,4,14,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,700,-5,0,814,-10,0,0 +2013,7,9,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1855,0,,2020,0,1,1 +2013,7,24,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1940,0,0,2034,47,1,0 +2013,9,16,1,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1606,-10,0,1624,-10,0,0 +2013,6,9,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1710,6,0,2333,18,1,0 +2013,5,2,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,57,1,509,70,1,0 +2013,4,3,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1515,-4,0,1720,-10,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-3,0,1643,-7,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-6,0,2149,-15,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,60,1,40,37,1,0 +2013,7,1,1,9E,11066,Port Columbus International,Columbus,OH,10721,Logan International,Boston,MA,1700,13,0,1904,7,0,0 +2013,9,13,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1805,68,1,1925,120,1,0 +2013,5,3,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1515,0,0,1555,-15,0,0 +2013,7,2,2,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,900,6,0,1213,-16,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,900,-3,0,1200,-18,0,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1314,-3,0,1605,1,0,0 +2013,8,2,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,15,1,1855,40,1,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,60,1,1612,65,1,0 +2013,6,23,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,15,1,1820,-4,0,0 +2013,9,6,5,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,2005,-7,0,2128,-3,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2035,4,0,2330,6,0,0 +2013,8,25,7,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1101,-1,0,1311,-5,0,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,1,0,1914,3,0,0 +2013,6,12,3,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1445,-4,0,1710,-7,0,0 +2013,9,5,4,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-3,0,1825,-20,0,0 +2013,5,7,2,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1550,-11,0,1942,-12,0,0 +2013,10,6,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1940,7,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,10,0,1757,19,1,0 +2013,6,6,4,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1116,-1,0,1228,-1,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,920,3,0,1225,-7,0,0 +2013,6,27,4,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,14,0,1640,-8,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,-3,0,1305,-14,0,0 +2013,4,15,1,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,913,279,1,1025,268,1,0 +2013,8,21,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-4,0,755,-15,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1605,3,0,1655,-3,0,0 +2013,7,10,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,83,1,1457,75,1,0 +2013,6,10,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-10,0,912,-18,0,0 +2013,9,4,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1620,84,1,1745,90,1,0 +2013,7,13,6,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1650,-4,0,1807,18,1,0 +2013,5,22,3,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-1,0,713,-34,0,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-5,0,2118,-4,0,0 +2013,6,12,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1210,-5,0,1320,78,1,0 +2013,5,23,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1040,74,1,1905,77,1,0 +2013,4,7,7,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2048,-5,0,2359,-15,0,0 +2013,8,8,4,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1258,-3,0,1526,-11,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1946,4,0,2257,-13,0,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1500,3,0,2247,12,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,104,1,26,85,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1246,-4,0,1404,-12,0,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1500,10,0,1815,-6,0,0 +2013,8,13,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,739,-3,0,856,-12,0,0 +2013,6,2,7,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-5,0,1505,-14,0,0 +2013,5,18,6,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,55,1,2042,83,1,0 +2013,10,21,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,830,-9,0,948,-13,0,0 +2013,7,26,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,740,3,0,855,3,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1435,-2,0,1625,-1,0,0 +2013,4,24,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,3,0,1735,9,0,0 +2013,4,6,6,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,645,-1,0,935,-7,0,0 +2013,10,28,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1905,-6,0,2200,-12,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,-8,0,1003,14,0,0 +2013,5,1,3,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1110,-10,0,1328,-9,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,2000,33,1,2354,29,1,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1455,22,1,1600,19,1,0 +2013,10,13,7,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,740,34,1,934,36,1,0 +2013,5,18,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1052,-7,0,0 +2013,4,18,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,740,-2,0,850,-6,0,0 +2013,8,22,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,-4,0,2345,38,1,0 +2013,7,5,5,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1040,21,1,1215,21,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,4,0,923,17,1,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,931,-2,0,1205,-16,0,0 +2013,10,20,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1624,57,1,1635,49,1,0 +2013,4,8,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-2,0,1739,-14,0,0 +2013,5,5,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-2,0,1101,-5,0,0 +2013,5,11,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1545,48,1,1635,37,1,0 +2013,9,4,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1005,14,0,1552,17,1,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1910,15,1,2125,7,0,0 +2013,9,22,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-7,0,1340,-5,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,954,-7,0,1145,-13,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1123,-7,0,1415,-16,0,0 +2013,6,26,3,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1735,198,1,1845,190,1,0 +2013,10,14,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-4,0,1836,-5,0,0 +2013,6,13,4,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,2030,64,1,2211,74,1,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1510,40,1,1735,32,1,0 +2013,4,6,6,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2032,-5,0,2257,-9,0,0 +2013,5,27,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,810,-2,0,1046,-20,0,0 +2013,5,18,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-5,0,1607,-20,0,0 +2013,4,16,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,3,0,1720,-4,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1610,19,1,2125,22,1,0 +2013,7,31,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-5,0,1925,-17,0,0 +2013,6,29,6,9E,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,0,,1508,0,1,1 +2013,10,27,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,-7,0,1320,-9,0,0 +2013,5,29,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,955,0,0,1115,-4,0,0 +2013,10,3,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1014,-1,0,1153,-1,0,0 +2013,8,9,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,0,,2214,0,1,1 +2013,6,29,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,622,-7,0,754,-23,0,0 +2013,5,11,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,811,-1,0,0 +2013,7,12,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1722,-2,0,1808,-10,0,0 +2013,8,22,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1405,15,1,1505,19,1,0 +2013,5,28,2,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1314,-1,0,1517,-10,0,0 +2013,4,26,5,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-2,0,1320,3,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1730,-1,0,2026,2,0,0 +2013,8,31,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,915,-9,0,0 +2013,9,29,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-7,0,736,-29,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1310,27,1,1450,30,1,0 +2013,10,21,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1555,0,0,1850,-5,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,805,2,0,1020,-2,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2307,0,0,27,-2,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1000,2,0,1105,4,0,0 +2013,8,17,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,9,0,1400,6,0,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-4,0,1802,-10,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,600,3,0,1025,-6,0,0 +2013,10,4,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-11,0,2100,-16,0,0 +2013,10,15,2,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,2,0,1915,6,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2100,-5,0,2240,-8,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1245,-5,0,1610,-13,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,-5,0,1520,-5,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,830,9,0,935,0,0,0 +2013,10,30,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1248,-2,0,1450,-17,0,0 +2013,7,9,2,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,953,-10,0,1159,-11,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,15,1,1038,-7,0,0 +2013,10,21,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,740,-1,0,900,17,1,0 +2013,4,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1315,8,0,1515,-1,0,0 +2013,10,3,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-4,0,613,-8,0,0 +2013,10,14,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1405,22,1,1426,16,1,0 +2013,10,11,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1700,1,0,1827,8,0,0 +2013,6,4,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-5,0,1442,-5,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2114,15,1,2320,9,0,0 +2013,7,30,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-7,0,1434,-30,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1309,-5,0,1601,-3,0,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2014,-3,0,2122,-7,0,0 +2013,5,19,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,77,1,615,84,1,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1615,5,0,59,1,0,0 +2013,4,20,6,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,-9,0,845,-13,0,0 +2013,6,9,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2202,-5,0,2253,-5,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1555,-2,0,1825,19,1,0 +2013,8,29,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-4,0,2355,-3,0,0 +2013,10,30,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,755,-5,0,905,-12,0,0 +2013,9,8,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,2030,23,1,2220,13,0,0 +2013,5,7,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1515,1,0,1810,-2,0,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,935,8,0,1620,-6,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,850,10,0,1110,6,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1810,-1,0,1946,-12,0,0 +2013,9,29,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,6,0,1850,-1,0,0 +2013,6,12,3,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2050,6,0,2310,-5,0,0 +2013,6,21,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1217,-2,0,0 +2013,4,5,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2135,-2,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2110,11,0,2253,-5,0,0 +2013,9,25,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,10,0,1140,1,0,0 +2013,4,17,3,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-8,0,1751,-12,0,0 +2013,10,26,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,923,3,0,1434,0,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,0,0,805,-12,0,0 +2013,5,24,5,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,810,-7,0,1015,-9,0,0 +2013,9,14,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,-9,0,1125,-23,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,-3,0,1645,3,0,0 +2013,8,21,3,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-5,0,2041,-11,0,0 +2013,8,21,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1046,4,0,1350,13,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-8,0,2000,-9,0,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1515,35,1,1835,22,1,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,800,8,0,1025,-7,0,0 +2013,5,20,1,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-2,0,2005,-31,0,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,-4,0,25,-8,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-4,0,1844,-26,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,7,0,1850,1,0,0 +2013,4,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1310,19,1,1555,4,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2304,78,1,27,71,1,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1801,145,1,2014,161,1,0 +2013,7,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1005,6,0,1245,1,0,0 +2013,8,27,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,18,1,1040,-6,0,0 +2013,10,2,3,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,700,-5,0,847,-5,0,0 +2013,5,29,3,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-2,0,1109,22,1,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,940,0,0,1158,-9,0,0 +2013,9,11,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,805,-5,0,1002,-15,0,0 +2013,4,24,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-2,0,1438,-6,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1445,9,0,1920,5,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1346,0,0,1753,-16,0,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1909,-7,0,2235,-4,0,0 +2013,10,16,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,854,-6,0,1213,3,0,0 +2013,8,30,5,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-5,0,2043,-11,0,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2135,4,0,2225,-3,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1435,7,0,1545,3,0,0 +2013,8,28,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,17,1,1620,23,1,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1548,-2,0,1831,-22,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1015,-3,0,1037,2,0,0 +2013,7,20,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,22,1,1725,16,1,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1723,-6,0,2135,-25,0,0 +2013,8,11,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,-2,0,2020,-9,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,66,1,1813,64,1,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,48,1,2205,42,1,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,740,-8,0,1110,-13,0,0 +2013,10,10,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1136,2,0,1420,10,0,0 +2013,4,30,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1420,-7,0,1935,-5,0,0 +2013,7,4,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1004,-34,0,0 +2013,4,30,2,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1925,-15,0,2132,-21,0,0 +2013,5,17,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,1,0,2025,2,0,0 +2013,10,20,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1252,-2,0,1550,-12,0,0 +2013,8,21,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-6,0,1100,-20,0,0 +2013,10,21,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,840,-15,0,0 +2013,9,2,1,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1148,-6,0,1448,-2,0,0 +2013,7,4,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-3,0,900,-14,0,0 +2013,7,30,2,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,0,0,609,-14,0,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1825,-1,0,2125,24,1,0 +2013,10,1,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1139,-2,0,1330,12,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-7,0,905,-4,0,0 +2013,8,8,4,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1157,42,1,2023,20,1,0 +2013,10,18,5,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1007,-6,0,1122,-10,0,0 +2013,4,4,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,36,1,2131,43,1,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1705,17,1,1835,7,0,0 +2013,4,24,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1715,-7,0,1847,-22,0,0 +2013,7,29,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,0,,1030,0,1,1 +2013,8,25,7,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1215,11,0,1342,-17,0,0 +2013,5,26,7,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1630,10,0,1825,-2,0,0 +2013,9,22,7,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,840,0,0,1035,-9,0,0 +2013,5,29,3,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,620,-4,0,902,-21,0,0 +2013,8,6,2,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-3,0,500,-14,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-4,0,1133,-6,0,0 +2013,9,3,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2135,-8,0,2336,-13,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1043,-2,0,1549,-34,0,0 +2013,7,14,7,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,10,0,1455,0,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2050,7,0,2355,-12,0,0 +2013,7,13,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,-1,0,1133,-6,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,103,1,2110,82,1,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-5,0,1825,-10,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,16,1,1650,2,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,0,0,2105,-13,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1017,-7,0,1151,-21,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,11,0,915,18,1,0 +2013,10,6,7,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,900,-10,0,1024,-19,0,0 +2013,10,12,6,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-6,0,1118,-5,0,0 +2013,5,2,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,-9,0,606,-13,0,0 +2013,8,13,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-1,0,1206,76,1,0 +2013,4,20,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1810,22,1,1935,19,1,0 +2013,9,20,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-13,0,904,-5,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1459,9,0,1651,-29,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,925,-3,0,1150,-17,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2158,-4,0,2359,-16,0,0 +2013,9,30,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,36,1,1123,16,1,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,731,0,0,1008,20,1,0 +2013,10,28,1,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,114,1,2045,84,1,0 +2013,9,4,3,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,1000,-6,0,1225,-21,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1132,-3,0,1246,-7,0,0 +2013,8,20,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-2,0,2009,11,0,0 +2013,4,5,5,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,4,0,828,4,0,0 +2013,4,13,6,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,5,0,1901,-5,0,0 +2013,6,2,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-5,0,1530,-2,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1849,49,1,2131,37,1,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,0,0,1130,-8,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1550,35,1,1745,28,1,0 +2013,7,26,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1935,13,0,2125,26,1,0 +2013,5,10,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,20,1,850,5,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-7,0,1415,-21,0,0 +2013,6,29,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1645,6,0,1735,13,0,0 +2013,9,17,2,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1451,-6,0,1648,-19,0,0 +2013,10,26,6,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1348,-6,0,1418,-4,0,0 +2013,5,3,5,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,2,0,1523,0,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,-1,0,1100,-5,0,0 +2013,10,15,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-2,0,1022,-17,0,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1328,-14,0,1507,-16,0,0 +2013,9,6,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-6,0,1123,-4,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,28,1,1535,20,1,0 +2013,4,10,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,-7,0,1255,-23,0,0 +2013,9,19,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-3,0,822,5,0,0 +2013,9,23,1,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1810,-2,0,2009,-12,0,0 +2013,10,27,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2005,226,1,2135,222,1,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,6,0,950,5,0,0 +2013,6,27,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1313,-2,0,1434,-6,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1440,18,1,1655,6,0,0 +2013,5,1,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,-6,0,740,4,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,0,0,915,-18,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,6,0,1536,-7,0,0 +2013,8,10,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1745,14,0,1855,12,0,0 +2013,9,12,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-8,0,1211,-18,0,0 +2013,9,6,5,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-12,0,1050,-30,0,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1335,179,1,2215,178,1,0 +2013,10,31,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,645,-3,0,1504,-16,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1610,-3,0,1622,-18,0,0 +2013,8,24,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,-4,0,1551,-9,0,0 +2013,5,20,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,710,-2,0,832,-8,0,0 +2013,4,30,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-4,0,1245,-7,0,0 +2013,7,8,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1158,-4,0,1435,9,0,0 +2013,7,26,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,4,0,1710,7,0,0 +2013,6,21,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,243,1,2035,237,1,0 +2013,9,24,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1527,-13,0,0 +2013,8,26,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,-10,0,2005,-24,0,0 +2013,10,18,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-3,0,2124,-15,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1840,-3,0,2005,-10,0,0 +2013,8,9,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,-5,0,1934,-9,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,804,15,1,924,2,0,0 +2013,6,30,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,900,-7,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1640,18,1,2000,-1,0,0 +2013,6,30,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-8,0,1610,-7,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,19,1,2320,19,1,0 +2013,9,19,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1714,-3,0,2334,-3,0,0 +2013,7,3,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1815,91,1,2345,94,1,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,-2,0,2052,-6,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,957,5,0,1224,-8,0,0 +2013,6,28,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1530,4,0,1648,13,0,0 +2013,8,29,4,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,700,-2,0,1300,-8,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1815,47,1,2000,20,1,0 +2013,4,17,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,725,-3,0,820,-15,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,16,1,1835,7,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,-1,0,1515,-9,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1030,3,0,1356,-16,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1150,-4,0,1505,-10,0,0 +2013,6,7,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,106,1,2128,120,1,0 +2013,6,28,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,2,0,1125,-3,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,-1,0,1005,-4,0,0 +2013,8,3,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,725,-9,0,1024,-21,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,-3,0,2200,-15,0,0 +2013,8,16,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-5,0,1949,-14,0,0 +2013,6,19,3,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,3,0,2213,-16,0,0 +2013,9,19,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1150,46,1,1310,43,1,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,3,0,615,19,1,0 +2013,10,11,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,-5,0,1705,-12,0,0 +2013,7,25,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-6,0,1802,-6,0,0 +2013,9,9,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-7,0,1232,-10,0,0 +2013,7,5,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-6,0,1309,-24,0,0 +2013,4,10,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-8,0,850,3,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1900,25,1,2025,24,1,0 +2013,6,9,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,1,0,1615,-8,0,0 +2013,8,5,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1353,0,0,1400,-9,0,0 +2013,9,26,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,23,1,1715,20,1,0 +2013,9,24,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1041,-9,0,1255,-10,0,0 +2013,4,4,4,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1525,-1,0,2326,5,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,810,1,0,1320,-20,0,0 +2013,9,27,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,2,0,1625,-20,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1924,-7,0,2201,-19,0,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,52,1,2335,46,1,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1820,11,0,55,14,0,0 +2013,5,9,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1410,28,1,1530,52,1,0 +2013,5,27,1,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1730,45,1,2030,32,1,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1510,2,0,1520,9,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,-2,0,1201,-8,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2035,69,1,2145,67,1,0 +2013,4,3,3,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,20,1,2143,29,1,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,809,1,1925,795,1,0 +2013,4,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,-3,0,2035,-4,0,0 +2013,9,18,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1609,-9,0,1732,-11,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,710,-4,0,957,-30,0,0 +2013,7,22,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,14,0,1832,10,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,846,-2,0,1119,-2,0,0 +2013,6,17,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,755,6,0,845,28,1,0 +2013,8,28,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1625,-5,0,2042,4,0,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-9,0,1448,-14,0,0 +2013,7,12,5,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1715,-2,0,1855,-39,0,0 +2013,9,2,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1342,-7,0,1429,-10,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,-1,0,1810,23,1,0 +2013,4,27,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1117,30,1,1408,24,1,0 +2013,8,14,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1025,1,0,1040,6,0,0 +2013,5,15,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,-8,0,1900,-28,0,0 +2013,7,26,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-7,0,542,-14,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1438,-7,0,1528,-14,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2200,70,1,2310,66,1,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,925,-1,0,1150,2,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1245,2,0,1500,2,0,0 +2013,10,8,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-6,0,930,-5,0,0 +2013,4,19,5,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1550,87,1,1905,108,1,0 +2013,7,11,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1123,8,0,1937,8,0,0 +2013,6,10,1,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,-3,0,2210,-12,0,0 +2013,9,2,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1825,-2,0,2115,-7,0,0 +2013,7,17,3,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,0,0,1821,-2,0,0 +2013,4,7,7,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,-2,0,2145,-10,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,41,1,2030,33,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1425,-4,0,1606,-1,0,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1617,-4,0,114,-33,0,0 +2013,7,23,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,650,-4,0,835,-7,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1705,-3,0,2317,-25,0,0 +2013,4,27,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-3,0,722,-11,0,0 +2013,8,18,7,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,948,12,0,1205,5,0,0 +2013,9,24,2,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1040,-3,0,1351,-7,0,0 +2013,5,28,2,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1710,0,0,2157,13,0,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1245,-2,0,1410,-3,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,750,-2,0,1025,-12,0,0 +2013,6,8,6,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1129,33,1,1322,27,1,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1805,4,0,2015,-24,0,0 +2013,9,14,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,7,0,1113,-6,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,30,1,905,17,1,0 +2013,7,26,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1944,13,0,2129,16,1,0 +2013,9,30,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2013,-17,0,2025,-24,0,0 +2013,4,14,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-6,0,949,-16,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,830,-5,0,1155,-10,0,0 +2013,4,2,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,-4,0,1115,-21,0,0 +2013,7,22,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-1,0,720,5,0,0 +2013,10,5,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1555,-4,0,1930,-13,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1650,-5,0,2030,-15,0,0 +2013,6,23,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,707,7,0,828,-3,0,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,1,0,855,0,0,0 +2013,5,7,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1420,-4,0,1550,-11,0,0 +2013,8,22,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-9,0,1352,-14,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,620,-2,0,755,-8,0,0 +2013,8,27,2,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1016,9,0,1247,18,1,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-5,0,1405,5,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1425,0,0,1645,-5,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2037,34,1,2236,16,1,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-2,0,1356,4,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,857,-2,0,1050,6,0,0 +2013,7,11,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-2,0,851,-6,0,0 +2013,10,7,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1136,-1,0,1335,-4,0,0 +2013,5,22,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1743,8,0,2023,-4,0,0 +2013,7,18,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,5,0,1750,-5,0,0 +2013,10,30,3,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,735,-8,0,1000,13,0,0 +2013,4,28,7,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,2,0,1031,-1,0,0 +2013,7,23,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,842,25,1,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,2,0,2252,1,0,0 +2013,4,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1645,-1,0,1745,-6,0,0 +2013,10,13,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1210,-5,0,1805,-42,0,0 +2013,8,17,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,17,1,1912,27,1,0 +2013,4,29,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,-5,0,1340,-28,0,0 +2013,8,3,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-3,0,1326,-9,0,0 +2013,4,11,4,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,34,1,1950,39,1,0 +2013,7,29,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,915,13,0,0 +2013,8,7,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,9,0,2245,-9,0,0 +2013,9,28,6,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,950,-3,0,1115,-13,0,0 +2013,6,27,4,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,0,0,707,16,1,0 +2013,5,19,7,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1854,-4,0,2144,-13,0,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,1,0,1000,16,1,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1830,72,1,2049,66,1,0 +2013,8,3,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,17,1,1845,8,0,0 +2013,7,22,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,-5,0,1655,-7,0,0 +2013,4,4,4,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1410,-6,0,1618,-1,0,0 +2013,6,24,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,803,-5,0,950,-24,0,0 +2013,8,18,7,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,640,-2,0,1441,6,0,0 +2013,6,18,2,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,10,0,920,29,1,0 +2013,8,18,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,955,-15,0,0 +2013,5,16,4,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1710,-6,0,1858,-10,0,0 +2013,10,12,6,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,915,5,0,1115,3,0,0 +2013,8,30,5,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-6,0,1026,2,0,0 +2013,8,8,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1400,22,1,1504,21,1,0 +2013,6,17,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,730,-14,0,0 +2013,8,4,7,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-13,0,711,-22,0,0 +2013,6,11,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1256,23,1,1416,19,1,0 +2013,5,10,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1450,7,0,1624,1,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1000,2,0,1323,-9,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-7,0,1929,-9,0,0 +2013,8,24,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1500,12,0,1740,1,0,0 +2013,8,31,6,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,615,16,1,735,2,0,0 +2013,8,11,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1945,81,1,2113,74,1,0 +2013,9,13,5,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,8,0,2035,-11,0,0 +2013,5,1,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1423,-12,0,1517,-18,0,0 +2013,8,25,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-5,0,1615,-21,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,920,-3,0,1100,3,0,0 +2013,8,3,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1140,-3,0,1426,-15,0,0 +2013,8,1,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1709,176,1,1954,164,1,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1548,-4,0,1831,8,0,0 +2013,4,30,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,45,1,1852,44,1,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1005,-2,0,1145,-3,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1350,-3,0,1507,-18,0,0 +2013,9,26,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-1,0,1229,-34,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2115,19,1,2330,20,1,0 +2013,10,21,1,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,-2,0,2250,-5,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1955,174,1,2210,170,1,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,-3,0,1158,-6,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,700,0,0,800,-6,0,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1835,5,0,2140,9,0,0 +2013,8,10,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,2,0,1035,-8,0,0 +2013,9,8,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1505,19,1,1840,19,1,0 +2013,8,25,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1625,16,1,1915,13,0,0 +2013,5,12,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,-5,0,1820,-7,0,0 +2013,6,19,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,2,0,1947,-8,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2115,54,1,2335,44,1,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,-3,0,44,-2,0,0 +2013,10,6,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-4,0,747,3,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,4,0,1943,-2,0,0 +2013,10,18,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1805,-3,0,1910,-8,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-3,0,1334,-20,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,-6,0,2006,5,0,0 +2013,6,20,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,8,0,830,5,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,10,0,1020,0,0,0 +2013,8,18,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,6,0,1550,-5,0,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1550,4,0,1729,-15,0,0 +2013,9,14,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,735,-4,0,921,-3,0,0 +2013,5,7,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2145,-5,0,105,-65,0,0 +2013,6,5,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-5,0,1824,-26,0,0 +2013,5,13,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,725,8,0,1045,6,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1144,3,0,1240,0,0,0 +2013,9,6,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1826,-9,0,1953,1,0,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,927,-8,0,1136,-12,0,0 +2013,4,10,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,700,-2,0,810,21,1,0 +2013,7,16,2,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,-5,0,1840,-20,0,0 +2013,10,22,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,730,-9,0,1300,-13,0,0 +2013,10,13,7,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,1008,-26,0,0 +2013,10,23,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1920,6,0,2031,17,1,0 +2013,9,5,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-1,0,1305,-3,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,49,1,1710,49,1,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2300,-3,0,655,-26,0,0 +2013,4,10,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,802,171,1,1410,167,1,0 +2013,4,21,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1010,-3,0,1125,2,0,0 +2013,8,29,4,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,-3,0,1735,7,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,645,-3,0,802,7,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2140,69,1,50,61,1,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1215,12,0,1550,11,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,-7,0,2025,-6,0,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,5,0,1230,5,0,0 +2013,9,19,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-1,0,2005,4,0,0 +2013,6,11,2,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1553,-3,0,1709,1,0,0 +2013,10,18,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1633,1,0,2100,-8,0,0 +2013,8,4,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,658,-8,0,910,-16,0,0 +2013,9,26,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,79,1,1259,70,1,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1129,-2,0,1401,-13,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1345,-3,0,1640,-2,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,853,-1,0,1330,-20,0,0 +2013,9,17,2,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1135,-3,0,1250,-1,0,0 +2013,4,9,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,-9,0,1623,-11,0,0 +2013,4,2,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1245,-1,0,1405,-3,0,0 +2013,6,8,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1346,23,1,1551,13,0,0 +2013,9,10,2,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-7,0,1805,-5,0,0 +2013,10,10,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1125,0,0,1858,-12,0,0 +2013,6,19,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1131,1,0,1305,9,0,0 +2013,10,30,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1830,-8,0,2030,-13,0,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1905,2,0,2015,-8,0,0 +2013,8,11,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,0,0,1250,-4,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2010,-6,0,2141,-15,0,0 +2013,6,23,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,0,0,643,4,0,0 +2013,10,17,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,19,1,1850,15,1,0 +2013,9,4,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1240,-3,0,1545,-6,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,15,1,1910,5,0,0 +2013,6,10,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,0,0,1820,1,0,0 +2013,10,2,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-8,0,701,1,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,0,0,1314,-3,0,0 +2013,7,7,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,-7,0,1945,-29,0,0 +2013,8,14,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-1,0,1034,4,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1505,27,1,1550,50,1,0 +2013,10,11,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1710,-8,0,1949,-17,0,0 +2013,10,21,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1840,25,1,2010,20,1,0 +2013,5,23,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-2,0,1720,-6,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,810,-2,0,945,-9,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,0,0,2225,-39,0,0 +2013,9,23,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,-5,0,1255,-18,0,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2200,201,1,5,192,1,0 +2013,10,1,2,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,720,-2,0,755,-11,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,78,1,2310,102,1,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1459,10,0,1725,13,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1815,11,0,2259,-9,0,0 +2013,7,6,6,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2005,12,0,2300,-19,0,0 +2013,4,7,7,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,-6,0,1746,-23,0,0 +2013,9,2,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2020,331,1,2302,309,1,0 +2013,8,14,3,FL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1038,4,0,1336,-1,0,0 +2013,6,28,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,33,1,1955,35,1,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,0,0,2130,-5,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-2,0,1220,-6,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-2,0,2100,35,1,0 +2013,10,22,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1910,11,0,2010,9,0,0 +2013,6,16,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-5,0,1306,6,0,0 +2013,10,13,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1250,6,0,1634,24,1,0 +2013,9,15,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1205,4,0,2024,-7,0,0 +2013,8,14,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1705,19,1,1855,-3,0,0 +2013,8,4,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,4,0,1940,6,0,0 +2013,7,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,835,-1,0,940,2,0,0 +2013,9,5,4,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,600,0,0,753,-10,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2050,1,0,2230,-8,0,0 +2013,6,28,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,78,1,840,68,1,0 +2013,9,8,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,46,1,1725,3,0,0 +2013,10,27,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,820,-7,0,1434,-6,0,0 +2013,10,4,5,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,-4,0,1018,-10,0,0 +2013,9,17,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1645,-10,0,1804,-19,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1254,2,0,1645,-30,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-7,0,1045,-31,0,0 +2013,5,20,1,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,26,1,2000,29,1,0 +2013,4,12,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2015,6,0,2250,-9,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1750,-5,0,1917,-10,0,0 +2013,8,23,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1855,12,0,2204,6,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1613,4,0,1837,11,0,0 +2013,5,31,5,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1235,-8,0,1423,-16,0,0 +2013,9,23,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1543,-7,0,1745,-7,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1433,0,0,1525,0,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,0,0,2126,-6,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,-3,0,1255,48,1,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1029,-6,0,1235,-23,0,0 +2013,5,6,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-2,0,1219,-7,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1939,-2,0,2215,23,1,0 +2013,6,27,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-1,0,701,-4,0,0 +2013,5,9,4,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1442,8,0,1751,17,1,0 +2013,5,2,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1440,4,0,1605,-5,0,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,-10,0,2228,21,1,0 +2013,7,24,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,617,-4,0,1145,-7,0,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,34,1,1315,32,1,0 +2013,8,14,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,932,-4,0,1750,-9,0,0 +2013,9,21,6,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1456,33,1,1636,55,1,0 +2013,5,8,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,11,0,1844,-6,0,0 +2013,8,27,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1610,-3,0,1705,-6,0,0 +2013,6,15,6,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,16,1,1415,11,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1955,58,1,2130,50,1,0 +2013,9,11,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,850,0,,1015,0,1,1 +2013,4,5,5,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1615,-4,0,1859,-33,0,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2015,13,0,2120,3,0,0 +2013,9,18,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-9,0,756,-13,0,0 +2013,4,8,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1145,3,0,1245,6,0,0 +2013,8,24,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1749,9,0,1944,4,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1020,-4,0,1318,8,0,0 +2013,7,29,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1241,0,0,1340,3,0,0 +2013,4,19,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2320,23,1,740,-2,0,0 +2013,10,5,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,639,-6,0,722,4,0,0 +2013,5,30,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1825,-4,0,2146,-9,0,0 +2013,5,18,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,3,0,1305,4,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,18,1,1610,4,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,0,0,1000,-15,0,0 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,555,15,1,1204,36,1,0 +2013,9,11,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1755,11,0,1910,5,0,0 +2013,8,12,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1830,88,1,2015,80,1,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1710,137,1,2005,149,1,0 +2013,6,7,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1035,-6,0,1144,2,0,0 +2013,7,19,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1615,41,1,1715,40,1,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1310,1,0,1600,-3,0,0 +2013,8,21,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,915,11,0,1030,12,0,0 +2013,4,15,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1841,-1,0,2148,-10,0,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2055,11,0,2250,8,0,0 +2013,8,29,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1245,2,0,1410,-5,0,0 +2013,7,20,6,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,0,,1843,0,1,1 +2013,7,1,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1635,40,1,1805,49,1,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,2015,-5,0,2211,-14,0,0 +2013,6,19,3,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1121,114,1,1305,125,1,0 +2013,8,9,5,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,30,1,1757,32,1,0 +2013,6,19,3,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1616,-3,0,1821,-7,0,0 +2013,7,25,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-6,0,1035,-2,0,0 +2013,4,17,3,EV,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1652,-4,0,1836,5,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,855,-1,0,1129,6,0,0 +2013,6,5,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,-3,0,1745,-10,0,0 +2013,8,10,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2058,0,,2143,0,1,1 +2013,8,17,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,700,-5,0,815,-12,0,0 +2013,7,25,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1550,5,0,1830,-9,0,0 +2013,8,8,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-3,0,1305,-6,0,0 +2013,9,10,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,6,0,1535,27,1,0 +2013,7,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-4,0,1956,45,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,816,15,1,1016,15,1,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1305,11,0,1618,-13,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,759,0,0,1103,-30,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,-3,0,1140,-3,0,0 +2013,8,18,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,8,0,1024,9,0,0 +2013,9,20,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1545,19,1,1725,24,1,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1810,12,0,1930,24,1,0 +2013,6,17,1,VX,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,800,11,0,1610,2,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1515,-13,0,0 +2013,9,23,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1040,-7,0,1240,-14,0,0 +2013,9,18,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,130,1,2320,142,1,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,34,1,2135,17,1,0 +2013,4,3,3,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1650,-2,0,1845,-13,0,0 +2013,6,14,5,OO,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1441,-2,0,1608,-8,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,0,0,2155,17,1,0 +2013,4,10,3,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1420,-1,0,1711,-11,0,0 +2013,4,18,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1356,96,1,1716,74,1,0 +2013,4,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1205,0,,1417,0,1,1 +2013,4,22,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1148,-6,0,1259,26,1,0 +2013,8,23,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2040,22,1,2205,21,1,0 +2013,9,23,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2140,-5,0,2259,-12,0,0 +2013,9,15,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1155,-6,0,1804,-13,0,0 +2013,8,6,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1115,-2,0,1405,0,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-2,0,838,-13,0,0 +2013,8,4,7,YV,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-7,0,1147,-15,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,-6,0,1755,1,0,0 +2013,9,19,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1610,16,1,1810,17,1,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,132,-3,0,731,-11,0,0 +2013,4,28,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1345,51,1,1510,50,1,0 +2013,8,17,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,930,-5,0,1140,-2,0,0 +2013,10,9,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,-5,0,2019,-25,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1346,-4,0,1535,-13,0,0 +2013,10,3,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,53,1,1945,57,1,0 +2013,7,29,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-5,0,1307,6,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1505,-2,0,1650,-5,0,0 +2013,8,19,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1828,19,1,2125,19,1,0 +2013,6,13,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2120,2,0,528,8,0,0 +2013,4,2,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,0,0,1220,-3,0,0 +2013,9,9,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1900,124,1,2015,109,1,0 +2013,8,25,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,829,0,0,1004,-14,0,0 +2013,6,13,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,29,1,1430,22,1,0 +2013,8,25,7,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,16,1,2308,4,0,0 +2013,4,8,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1055,6,0,1120,1,0,0 +2013,7,15,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,28,1,1555,29,1,0 +2013,5,10,5,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,551,23,1,805,16,1,0 +2013,10,30,3,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,-9,0,1836,15,1,0 +2013,5,13,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1804,-4,0,2159,-1,0,0 +2013,8,10,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1530,-2,0,1715,-5,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1930,10,0,2055,0,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,530,1,0,820,7,0,0 +2013,8,13,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,-6,0,1800,-28,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2110,10,0,2225,9,0,0 +2013,8,19,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,950,-2,0,1334,-3,0,0 +2013,5,23,4,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,21,1,1640,5,0,0 +2013,6,4,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1300,-4,0,1550,-3,0,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1705,0,0,2021,6,0,0 +2013,9,14,6,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,850,-1,0,1135,-6,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,6,0,1340,-10,0,0 +2013,4,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1117,1,0,1649,-7,0,0 +2013,9,29,7,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1240,0,0,1540,10,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1141,1,0,1620,-16,0,0 +2013,8,15,4,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1845,33,1,1950,25,1,0 +2013,9,21,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-5,0,1022,-2,0,0 +2013,9,4,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2210,-4,0,2355,-20,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2243,2,0,15,1,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1910,8,0,2037,0,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,7,0,1534,35,1,0 +2013,9,3,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1200,-4,0,1735,14,0,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1845,1,0,2158,4,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1930,-1,0,2259,-8,0,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,3,0,1226,-6,0,0 +2013,4,2,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1900,59,1,1935,62,1,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,2,0,1430,-9,0,0 +2013,10,10,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1742,-6,0,2025,3,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,1,0,1255,0,0,0 +2013,6,22,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-5,0,1457,-7,0,0 +2013,9,9,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1815,-3,0,1835,-18,0,0 +2013,4,5,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,835,-12,0,1020,-10,0,0 +2013,4,4,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,630,-2,0,705,-8,0,0 +2013,7,5,5,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,-5,0,1600,-16,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1820,2,0,2040,-7,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1151,-3,0,1330,-5,0,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2015,11,0,2105,10,0,0 +2013,10,22,2,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,810,-3,0,955,-3,0,0 +2013,6,16,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,-2,0,1346,-13,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,5,0,2040,1,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2155,3,0,2250,2,0,0 +2013,5,22,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1918,5,0,2213,-1,0,0 +2013,9,6,5,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,-5,0,1052,-13,0,0 +2013,8,23,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,20,1,1845,18,1,0 +2013,7,16,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2200,72,1,2216,56,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,21,1,1927,18,1,0 +2013,6,30,7,EV,10792,Buffalo Niagara International,Buffalo,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1644,0,,1747,0,1,1 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2010,42,1,2115,40,1,0 +2013,9,1,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-4,0,1925,-13,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1740,-2,0,2045,-10,0,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,3,0,1715,-3,0,0 +2013,10,23,3,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,625,-2,0,705,-15,0,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,29,1,1455,27,1,0 +2013,10,3,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1844,-4,0,2044,-20,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,18,1,1130,48,1,0 +2013,6,15,6,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1510,58,1,1628,47,1,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,1,0,2315,1,0,0 +2013,8,17,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,1125,-4,0,0 +2013,6,19,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,24,1,2035,11,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,630,0,0,847,-28,0,0 +2013,6,13,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1425,2,0,2020,14,0,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1403,-5,0,2030,2,0,0 +2013,5,4,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,23,1,2000,10,0,0 +2013,10,7,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1255,39,1,1706,77,1,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,-4,0,1355,-9,0,0 +2013,7,31,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-3,0,1900,0,0,0 +2013,6,17,1,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,640,3,0,0 +2013,6,25,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,-6,0,735,-9,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,10,0,2150,-3,0,0 +2013,8,25,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,-5,0,2125,-18,0,0 +2013,6,22,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1445,-3,0,1549,-21,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,10,0,2100,-7,0,0 +2013,5,6,1,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,-3,0,1335,-5,0,0 +2013,9,12,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-2,0,1310,-1,0,0 +2013,6,12,3,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1205,4,0,1320,1,0,0 +2013,8,16,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1415,2,0,1510,-12,0,0 +2013,8,5,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,540,-6,0,908,-8,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1935,-3,0,2140,-25,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,21,1,2037,23,1,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,820,4,0,1025,-2,0,0 +2013,8,25,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-1,0,1655,3,0,0 +2013,6,18,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,800,14,0,1015,15,1,0 +2013,6,22,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,-6,0,1309,-15,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1228,-10,0,1404,-24,0,0 +2013,6,24,1,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,8,0,1425,13,0,0 +2013,8,6,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-6,0,1918,0,0,0 +2013,5,13,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1618,-6,0,1913,-13,0,0 +2013,5,17,5,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1705,-8,0,1841,13,0,0 +2013,10,14,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,31,1,2151,-1,0,0 +2013,5,26,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2015,-5,0,2109,-16,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,745,-8,0,1130,-22,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1312,4,0,1535,-2,0,0 +2013,5,5,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2205,-10,0,2252,-15,0,0 +2013,10,6,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-7,0,1255,-17,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2214,11,0,2244,1,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1840,10,0,2130,24,1,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1930,7,0,2120,4,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2213,-6,0,632,-10,0,0 +2013,10,13,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1100,-9,0,0 +2013,7,3,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-1,0,1348,0,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1905,14,0,2355,15,1,0 +2013,7,23,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-3,0,1039,30,1,0 +2013,7,31,3,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1200,-8,0,1932,-35,0,0 +2013,8,17,6,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-4,0,1746,-9,0,0 +2013,8,9,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1242,10,0,1433,-6,0,0 +2013,10,29,2,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1715,20,1,1835,28,1,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,915,46,1,1307,47,1,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,6,0,900,-3,0,0 +2013,10,27,7,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,645,2,0,1240,-6,0,0 +2013,4,30,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1740,41,1,2105,67,1,0 +2013,7,21,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1735,13,0,1855,9,0,0 +2013,9,11,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,841,-2,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,0,0,1915,12,0,0 +2013,10,24,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-7,0,2235,-4,0,0 +2013,8,11,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1645,-3,0,1805,6,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,11,0,2353,-9,0,0 +2013,5,12,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,7,0,2235,-7,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,1,0,925,-5,0,0 +2013,5,26,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-4,0,1744,19,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-5,0,2017,-19,0,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-7,0,1115,7,0,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,735,3,0,840,1,0,0 +2013,7,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-6,0,1108,-25,0,0 +2013,6,19,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2115,5,0,2328,17,1,0 +2013,4,13,6,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1545,-3,0,1911,-34,0,0 +2013,10,19,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,10,0,1150,3,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,740,-7,0,950,-9,0,0 +2013,9,11,3,US,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-9,0,910,-2,0,0 +2013,10,14,1,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1800,32,1,2005,23,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,655,-5,0,815,-2,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-4,0,2150,-2,0,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,-1,0,1446,0,0,0 +2013,4,5,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-8,0,1218,-8,0,0 +2013,10,14,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,31,1,1615,28,1,0 +2013,7,31,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1710,-4,0,1840,-4,0,0 +2013,8,7,3,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1155,118,1,1550,116,1,0 +2013,10,9,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-4,0,1558,-5,0,0 +2013,10,11,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-3,0,1005,0,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,725,22,1,1039,14,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,6,0,2050,0,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-2,0,1409,-12,0,0 +2013,10,16,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1412,-6,0,1659,-8,0,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,21,1,1510,9,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1310,1,0,1640,-12,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,-6,0,2327,-10,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-4,0,1109,-19,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,835,22,1,1000,9,0,0 +2013,7,27,6,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,2025,15,1,2110,6,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1210,34,1,1322,33,1,0 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1535,-2,0,1725,14,0,0 +2013,6,3,1,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,800,7,0,1101,-15,0,0 +2013,4,10,3,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,0,,2125,0,1,1 +2013,6,20,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2000,-2,0,2015,8,0,0 +2013,4,6,6,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-3,0,1135,1,0,0 +2013,5,21,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,720,5,0,825,1,0,0 +2013,8,7,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1103,-4,0,1414,11,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,31,1,1930,17,1,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,951,-5,0,1202,-15,0,0 +2013,5,19,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2055,-7,0,2346,-1,0,0 +2013,10,7,1,UA,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1712,18,1,1845,6,0,0 +2013,8,21,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1013,3,0,1154,-5,0,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,89,1,1918,136,1,0 +2013,8,20,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,800,-1,0,915,-1,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1625,16,1,1738,0,0,0 +2013,6,6,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1840,-4,0,0 +2013,7,8,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1845,-6,0,2047,-3,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,-3,0,1520,-9,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1120,13,0,1655,21,1,0 +2013,10,7,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1049,-6,0,1158,-12,0,0 +2013,7,18,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2100,-2,0,2215,-6,0,0 +2013,8,4,7,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1521,-9,0,0 +2013,4,14,7,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,910,-6,0,1158,7,0,0 +2013,7,4,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,-2,0,1959,-13,0,0 +2013,4,6,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2145,-9,0,48,-13,0,0 +2013,8,24,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-11,0,759,-18,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,14,0,1720,9,0,0 +2013,4,22,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1945,107,1,2300,114,1,0 +2013,9,9,1,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,700,-6,0,925,9,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,855,21,1,1250,13,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1145,17,1,1340,12,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2125,-8,0,8,-11,0,0 +2013,10,18,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-1,0,1230,2,0,0 +2013,9,27,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1315,24,1,1435,19,1,0 +2013,10,13,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1709,-8,0,2000,-17,0,0 +2013,5,5,7,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,8,0,2020,15,1,0 +2013,8,1,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,800,-1,0,0 +2013,8,10,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1712,0,0,2024,9,0,0 +2013,6,13,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1147,181,1,1454,186,1,0 +2013,5,31,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,905,-3,0,1105,-6,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1738,38,1,2015,16,1,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1100,14,0,1205,15,1,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1015,14,0,1115,19,1,0 +2013,6,9,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1740,-9,0,2025,-14,0,0 +2013,4,26,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,30,1,2315,26,1,0 +2013,8,11,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,-5,0,1426,-12,0,0 +2013,9,30,1,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1350,2,0,1445,-8,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1325,13,0,1850,3,0,0 +2013,4,22,1,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1740,32,1,1935,36,1,0 +2013,10,13,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1555,-27,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1655,-1,0,1915,1,0,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,755,33,1,1048,18,1,0 +2013,7,31,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-8,0,1210,-1,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1750,15,1,2020,-8,0,0 +2013,6,19,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,750,1,0,1640,-12,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2005,23,1,2045,23,1,0 +2013,7,22,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,656,-2,0,817,2,0,0 +2013,4,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1730,-2,0,1855,-16,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,635,-4,0,755,-13,0,0 +2013,9,25,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-2,0,1630,-12,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,224,1,1756,280,1,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1632,3,0,1758,9,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1203,0,0,1435,-9,0,0 +2013,5,28,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1250,15,1,1415,7,0,0 +2013,5,12,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2135,-6,0,2229,-16,0,0 +2013,5,30,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,-7,0,1911,-21,0,0 +2013,9,24,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,15,1,1945,10,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,2,0,2300,-10,0,0 +2013,5,26,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1543,-4,0,1648,-1,0,0 +2013,6,17,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,53,1,2255,59,1,0 +2013,9,24,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-4,0,1000,-13,0,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-7,0,2202,-42,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,804,-3,0,922,-10,0,0 +2013,10,2,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-1,0,1544,0,0,0 +2013,8,1,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,1256,-14,0,0 +2013,8,27,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-5,0,1350,1,0,0 +2013,5,21,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,-7,0,1405,-28,0,0 +2013,10,25,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1640,-5,0,1817,-25,0,0 +2013,10,30,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,655,-5,0,907,-7,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-3,0,1023,-3,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-7,0,852,4,0,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1630,10,0,1835,-8,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,-1,0,2323,-2,0,0 +2013,7,22,1,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1245,6,0,1507,1,0,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-1,0,1745,-4,0,0 +2013,4,28,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-1,0,2315,-5,0,0 +2013,7,25,4,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,-4,0,2205,-1,0,0 +2013,9,14,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,-1,0,1055,-1,0,0 +2013,4,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1450,-2,0,1800,-9,0,0 +2013,8,15,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,22,1,1215,6,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1555,29,1,1710,20,1,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,925,-14,0,0 +2013,10,17,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,306,1,2054,292,1,0 +2013,10,21,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1051,-6,0,1129,-8,0,0 +2013,10,14,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,49,1,1545,34,1,0 +2013,5,27,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-5,0,705,-13,0,0 +2013,4,14,7,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1300,22,1,1450,31,1,0 +2013,10,7,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2322,127,1,510,110,1,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1346,-4,0,1535,-13,0,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1120,26,1,1205,29,1,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1605,-2,0,1705,-5,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2159,60,1,2324,41,1,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-1,0,1223,-10,0,0 +2013,4,8,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2020,10,0,2120,7,0,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,840,-11,0,1007,-2,0,0 +2013,7,9,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1447,12,0,2029,75,1,0 +2013,5,8,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1140,-5,0,1730,-10,0,0 +2013,9,8,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1554,-12,0,0 +2013,6,10,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,1,0,940,0,0,0 +2013,5,19,7,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1825,-2,0,2028,-8,0,0 +2013,10,5,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1431,12,0,1606,18,1,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2125,14,0,35,12,0,0 +2013,7,30,2,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,24,1,1740,11,0,0 +2013,6,23,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-5,0,736,-12,0,0 +2013,5,1,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1210,0,0,1335,-14,0,0 +2013,5,4,6,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,645,-2,0,1250,-9,0,0 +2013,8,19,1,EV,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,149,1,1900,132,1,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,741,-8,0,1051,-7,0,0 +2013,8,6,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-4,0,900,-4,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2250,-2,0,2355,0,0,0 +2013,6,20,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2151,-3,0,2325,-3,0,0 +2013,5,20,1,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1220,6,0,1455,-8,0,0 +2013,8,9,5,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-3,0,1019,-24,0,0 +2013,4,4,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,22,1,1959,8,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1125,-6,0,1220,-5,0,0 +2013,8,22,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,655,-1,0,740,0,0,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1945,-4,0,2058,-16,0,0 +2013,6,19,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1850,-5,0,2020,24,1,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,-1,0,1140,10,0,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,11,0,905,7,0,0 +2013,4,24,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-4,0,1746,-6,0,0 +2013,7,18,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1237,-13,0,1805,-2,0,0 +2013,7,30,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1748,-1,0,2035,-17,0,0 +2013,10,18,5,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2124,19,1,2337,42,1,0 +2013,6,21,5,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,714,5,0,1046,-11,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,22,1,1530,1,0,0 +2013,6,4,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-1,0,1319,-5,0,0 +2013,10,16,3,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1320,7,0,2130,-7,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-6,0,1219,6,0,0 +2013,10,10,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1415,120,1,1556,132,1,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,840,0,0,935,-3,0,0 +2013,8,11,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1111,-2,0,1326,-8,0,0 +2013,6,28,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,620,-11,0,0 +2013,7,31,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,844,0,0,1104,2,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1958,25,1,2205,5,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1340,-1,0,1410,-5,0,0 +2013,8,14,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,710,-3,0,815,-19,0,0 +2013,9,22,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,0,0,1813,-7,0,0 +2013,7,13,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,750,-1,0,955,-12,0,0 +2013,9,2,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,730,3,0,854,-12,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,-4,0,2310,-10,0,0 +2013,4,5,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,98,1,1304,86,1,0 +2013,10,21,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1400,3,0,1705,-6,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1620,2,0,1730,-5,0,0 +2013,6,26,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-1,0,1252,-10,0,0 +2013,4,19,5,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-9,0,1200,7,0,0 +2013,7,14,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1455,-4,0,1830,-56,0,0 +2013,8,6,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-3,0,1415,-17,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,16,1,1500,21,1,0 +2013,7,18,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,-6,0,1615,-10,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2000,9,0,2317,-6,0,0 +2013,6,3,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-4,0,950,-16,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1810,94,1,2359,101,1,0 +2013,4,14,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1355,-7,0,1411,-10,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2200,-4,0,2255,-16,0,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1655,7,0,1810,20,1,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,540,-1,0,1145,-1,0,0 +2013,6,5,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1414,0,0,1652,-10,0,0 +2013,10,10,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,12,0,1930,14,0,0 +2013,5,7,2,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,3,0,1445,7,0,0 +2013,10,5,6,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1115,3,0,1305,-14,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1920,133,1,2058,130,1,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1540,31,1,2100,35,1,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,-5,0,1315,-23,0,0 +2013,5,9,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1711,4,0,1815,18,1,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1615,11,0,1720,-1,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,730,8,0,1045,-13,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-9,0,2216,-23,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1949,-1,0,2115,-14,0,0 +2013,10,29,2,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1400,-10,0,1646,-25,0,0 +2013,5,13,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2259,-6,0,659,-6,0,0 +2013,5,4,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,9,0,915,-7,0,0 +2013,10,18,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1735,-5,0,1945,-23,0,0 +2013,10,29,2,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,725,-10,0,752,-14,0,0 +2013,8,16,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1945,27,1,2055,27,1,0 +2013,8,27,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1252,-5,0,1435,-15,0,0 +2013,7,1,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,120,1,1232,120,1,0 +2013,5,10,5,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2009,105,1,2148,103,1,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,954,-1,0,1340,-8,0,0 +2013,6,25,2,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-8,0,1056,-27,0,0 +2013,6,30,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1725,13,0,2330,11,0,0 +2013,6,10,1,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1830,26,1,1950,31,1,0 +2013,9,25,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-10,0,1055,-21,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,9,0,1036,-9,0,0 +2013,6,8,6,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-8,0,1140,-26,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2227,36,1,2359,27,1,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1810,36,1,2200,27,1,0 +2013,7,14,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1425,9,0,1615,-5,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1251,7,0,1617,-4,0,0 +2013,9,28,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,710,-7,0,1144,-20,0,0 +2013,6,10,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,0,0,1607,27,1,0 +2013,10,1,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,915,24,1,1111,18,1,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,910,-3,0,1028,-28,0,0 +2013,5,2,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2132,-1,0,2239,-9,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-4,0,1450,-4,0,0 +2013,7,14,7,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,804,-4,0,959,-4,0,0 +2013,9,12,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,845,19,1,1100,20,1,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,845,19,1,1645,24,1,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2114,-3,0,2242,0,0,0 +2013,8,19,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1930,59,1,2025,39,1,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1350,7,0,1630,-16,0,0 +2013,7,29,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,16,1,1800,13,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,830,10,0,1145,1,0,0 +2013,7,7,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,300,-4,0,658,-22,0,0 +2013,4,18,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,710,-6,0,917,-20,0,0 +2013,5,27,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1410,2,0,1540,4,0,0 +2013,10,19,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1620,7,0,1740,8,0,0 +2013,6,6,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1410,66,1,2015,64,1,0 +2013,6,30,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,749,8,0,1555,14,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1130,-2,0,1425,-8,0,0 +2013,8,20,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,730,-4,0,850,-2,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1105,5,0,1340,-1,0,0 +2013,6,20,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1005,-5,0,1120,-21,0,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,730,-1,0,900,-23,0,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,24,1,1425,20,1,0 +2013,6,30,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,116,1,1729,132,1,0 +2013,7,28,7,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1435,34,1,1625,39,1,0 +2013,5,26,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1935,-7,0,2045,-13,0,0 +2013,8,6,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,1,0,1556,-2,0,0 +2013,4,11,4,EV,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1626,17,1,1756,27,1,0 +2013,10,8,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2030,0,0,2155,-18,0,0 +2013,8,10,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1425,34,1,1607,19,1,0 +2013,6,7,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-3,0,912,1,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,623,-6,0,858,-6,0,0 +2013,6,19,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1500,4,0,1555,11,0,0 +2013,6,6,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1940,54,1,2030,49,1,0 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-5,0,1834,-6,0,0 +2013,7,1,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,-5,0,1220,-7,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,920,-4,0,1750,-39,0,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1010,-5,0,1351,-5,0,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,15,1,1045,2,0,0 +2013,8,18,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2225,22,1,700,10,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-2,0,925,-11,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1135,6,0,1300,7,0,0 +2013,9,3,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1810,-2,0,1910,-8,0,0 +2013,4,25,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1245,-2,0,1445,38,1,0 +2013,5,15,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2110,8,0,2125,-3,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1100,-3,0,1205,-9,0,0 +2013,4,9,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1110,5,0,1235,4,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1955,23,1,2135,28,1,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,-3,0,1954,-9,0,0 +2013,5,9,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1630,9,0,1815,15,1,0 +2013,7,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,19,1,1930,24,1,0 +2013,5,14,2,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1315,11,0,1616,-2,0,0 +2013,4,10,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,48,1,2030,47,1,0 +2013,8,19,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1000,-4,0,1135,-21,0,0 +2013,4,21,7,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,825,-4,0,920,-1,0,0 +2013,7,6,6,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,912,1,0,943,-11,0,0 +2013,9,15,7,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1325,-6,0,1551,4,0,0 +2013,4,25,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-3,0,1105,0,0,0 +2013,8,2,5,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,945,1,0,1145,3,0,0 +2013,10,27,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-7,0,2130,33,1,0 +2013,8,5,1,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1823,0,,2140,0,1,1 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,8,0,1345,-7,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1816,47,1,2137,42,1,0 +2013,10,1,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-5,0,1425,-9,0,0 +2013,4,22,1,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,59,1,2314,93,1,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1110,1,0,1315,-8,0,0 +2013,9,26,4,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1238,-2,0,0 +2013,10,5,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1043,6,0,1150,4,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1253,-4,0,1622,-17,0,0 +2013,9,13,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,605,-4,0,830,14,0,0 +2013,5,15,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,930,-10,0,1130,-24,0,0 +2013,4,4,4,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,-1,0,1255,-10,0,0 +2013,8,22,4,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1210,43,1,1545,48,1,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2211,39,1,2358,51,1,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1214,-2,0,1958,-4,0,0 +2013,6,7,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1621,-10,0,1903,-6,0,0 +2013,9,10,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1540,-6,0,1635,-17,0,0 +2013,6,30,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1800,1,0,1915,-17,0,0 +2013,5,16,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,925,-3,0,1217,-4,0,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1651,79,1,1957,79,1,0 +2013,6,26,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-7,0,2300,-18,0,0 +2013,10,12,6,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,615,-3,0,930,-20,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-9,0,2311,-29,0,0 +2013,8,3,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1615,-2,0,1800,-19,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1105,-4,0,1325,-25,0,0 +2013,5,30,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2100,10,0,2226,15,1,0 +2013,7,9,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1540,-3,0,1826,24,1,0 +2013,8,7,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,-3,0,1200,-6,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,821,2,0,1038,-1,0,0 +2013,5,8,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,615,-1,0,725,-6,0,0 +2013,9,6,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,2,0,2015,-35,0,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,943,-6,0,1521,-20,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,1,0,1625,0,0,0 +2013,4,13,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2345,23,1,545,10,0,0 +2013,4,1,1,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1820,-7,0,2150,30,1,0 +2013,6,27,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,1320,-20,0,0 +2013,9,21,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,1515,8,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1730,-5,0,1928,-19,0,0 +2013,10,28,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,640,0,0,910,6,0,0 +2013,6,16,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2100,9,0,125,13,0,0 +2013,8,17,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1135,16,1,1420,-2,0,0 +2013,5,31,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,8,0,1130,-1,0,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,900,-4,0,1015,-9,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,610,-3,0,700,8,0,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1535,-1,0,1730,6,0,0 +2013,6,16,7,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1515,6,0,655,-13,0,0 +2013,7,17,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,2,0,2300,6,0,0 +2013,7,12,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,-6,0,2115,-8,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,853,82,1,1212,62,1,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1630,-2,0,1750,-6,0,0 +2013,9,24,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,-9,0,2130,-18,0,0 +2013,6,2,7,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1120,-6,0,1945,33,1,0 +2013,8,1,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,905,-5,0,1050,-8,0,0 +2013,9,4,3,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,800,-3,0,1016,12,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1825,43,1,2121,76,1,0 +2013,6,8,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1945,-3,0,2228,-20,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-8,0,1238,-3,0,0 +2013,8,16,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1240,-2,0,1400,-2,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1430,-9,0,1555,-15,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,-2,0,1945,2,0,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1905,-5,0,2335,-4,0,0 +2013,8,18,7,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,12,0,2010,-5,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2020,31,1,2150,16,1,0 +2013,4,26,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-4,0,2040,-23,0,0 +2013,4,3,3,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,2255,-3,0,715,-16,0,0 +2013,10,22,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,0,0,1015,-17,0,0 +2013,8,4,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-3,0,820,-7,0,0 +2013,7,26,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-6,0,1645,-17,0,0 +2013,10,6,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-5,0,1012,-4,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,-4,0,2335,-6,0,0 +2013,10,30,3,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,32,1,1955,61,1,0 +2013,6,19,3,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1658,24,1,1835,17,1,0 +2013,10,16,3,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1706,-4,0,1850,9,0,0 +2013,4,4,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,0,0,1425,18,1,0 +2013,4,25,4,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1513,2,0,1625,4,0,0 +2013,7,27,6,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1824,202,1,1923,189,1,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,-3,0,1623,-2,0,0 +2013,8,5,1,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1410,3,0,1610,-5,0,0 +2013,9,2,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,4,0,815,-2,0,0 +2013,8,29,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1545,48,1,1655,42,1,0 +2013,10,9,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1400,13,0,1705,10,0,0 +2013,6,3,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-6,0,1404,-1,0,0 +2013,7,12,5,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,15,1,550,33,1,0 +2013,7,16,2,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1115,-1,0,1235,-13,0,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1809,0,0,1955,0,0,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,32,1,1832,21,1,0 +2013,5,14,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,-4,0,1105,-27,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1921,26,1,2050,18,1,0 +2013,6,6,4,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,18,1,1434,14,0,0 +2013,10,11,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1518,-1,0,1636,2,0,0 +2013,5,7,2,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,23,1,2139,-3,0,0 +2013,5,24,5,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,825,12,0,1053,6,0,0 +2013,4,10,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,801,-7,0,1126,-19,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,40,1,1240,14,0,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,19,1,2254,-4,0,0 +2013,8,21,3,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,0,0,1635,9,0,0 +2013,8,29,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2040,-2,0,2313,-11,0,0 +2013,10,16,3,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,650,-3,0,1509,-18,0,0 +2013,4,26,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,705,-4,0,1446,-9,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,10,0,1420,-4,0,0 +2013,10,6,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,19,1,1907,-1,0,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,14,0,1505,6,0,0 +2013,6,4,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1725,-7,0,2004,-13,0,0 +2013,10,25,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,-2,0,2225,-15,0,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,24,1,2335,-17,0,0 +2013,9,18,3,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-9,0,928,8,0,0 +2013,9,28,6,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,950,-4,0,1136,-18,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,-2,0,1036,-28,0,0 +2013,5,12,7,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1735,4,0,1835,-24,0,0 +2013,10,18,5,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1925,-6,0,2010,-18,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,850,-2,0,1018,-20,0,0 +2013,10,29,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-6,0,1641,-28,0,0 +2013,5,15,3,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,-4,0,1628,-1,0,0 +2013,7,12,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,24,1,1745,15,1,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,-1,0,1245,8,0,0 +2013,4,26,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,-9,0,1215,-24,0,0 +2013,7,11,4,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1456,0,,1641,0,1,1 +2013,8,9,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-5,0,1943,-5,0,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,930,5,0,1030,-2,0,0 +2013,8,4,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-13,0,1026,-14,0,0 +2013,5,19,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,85,1,1709,84,1,0 +2013,5,23,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,924,-4,0,1219,-14,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1747,-6,0,1930,-8,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1505,56,1,1600,51,1,0 +2013,8,14,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2115,40,1,131,65,1,0 +2013,6,6,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-4,0,1559,-4,0,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2000,-2,0,2105,-13,0,0 +2013,7,18,4,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1224,29,1,1355,11,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,-5,0,923,-15,0,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,807,-8,0,944,-6,0,0 +2013,8,25,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-6,0,643,3,0,0 +2013,6,21,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-4,0,1252,0,0,0 +2013,9,23,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,1,0,1225,-14,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1900,29,1,35,10,0,0 +2013,5,29,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,755,0,0,1515,-3,0,0 +2013,7,30,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-1,0,1339,-3,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,725,19,1,906,28,1,0 +2013,8,30,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2010,-8,0,2140,-21,0,0 +2013,7,2,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-3,0,2000,-7,0,0 +2013,4,5,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1945,-5,0,2300,0,0,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-1,0,1929,1,0,0 +2013,10,15,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-7,0,1537,-9,0,0 +2013,5,9,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-3,0,1710,-6,0,0 +2013,6,14,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1818,68,1,2323,56,1,0 +2013,10,13,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,850,-5,0,1000,0,0,0 +2013,6,3,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,1,0,1725,-4,0,0 +2013,9,7,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-6,0,1545,-29,0,0 +2013,7,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1515,0,0,1630,-6,0,0 +2013,5,6,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,835,-5,0,947,-23,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1648,208,1,1918,191,1,0 +2013,6,1,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,945,4,0,1120,23,1,0 +2013,9,29,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,837,-5,0,1029,-13,0,0 +2013,8,2,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,6,0,1620,-5,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1515,0,0,1735,-2,0,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,650,1,0,1210,-1,0,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,3,0,1425,-3,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,845,-1,0,1602,11,0,0 +2013,8,3,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1245,-2,0,1340,-6,0,0 +2013,9,3,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,930,-2,0,1134,-11,0,0 +2013,5,3,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-6,0,1554,-6,0,0 +2013,10,18,5,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-6,0,1033,-3,0,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1755,20,1,1935,24,1,0 +2013,7,17,3,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,176,1,1843,184,1,0 +2013,6,23,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1946,-13,0,2323,-13,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,-2,0,1409,-19,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1028,29,1,1610,39,1,0 +2013,4,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,-6,0,1935,-4,0,0 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1855,-1,0,2207,-18,0,0 +2013,5,30,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,-1,0,1520,4,0,0 +2013,4,29,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1835,0,0,1940,-2,0,0 +2013,4,11,4,WN,13931,Norfolk International,Norfolk,VA,15304,Tampa International,Tampa,FL,905,-3,0,1110,-10,0,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,-3,0,1717,-35,0,0 +2013,5,13,1,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,645,-5,0,733,-9,0,0 +2013,6,16,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1735,39,1,1825,36,1,0 +2013,8,16,5,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,20,1,1430,10,0,0 +2013,9,13,5,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,123,1,1052,109,1,0 +2013,10,16,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,23,1,1855,34,1,0 +2013,8,24,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,-5,0,940,-18,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1450,-2,0,1635,-30,0,0 +2013,5,15,3,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1037,1,0,1604,10,0,0 +2013,7,11,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,704,-9,0,1030,-7,0,0 +2013,4,16,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,6,0,1015,-4,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,-2,0,1821,-21,0,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,850,-2,0,924,-8,0,0 +2013,5,11,6,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,11,0,2140,-6,0,0 +2013,5,22,3,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,839,9,0,1415,1,0,0 +2013,10,8,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,170,1,855,159,1,0 +2013,10,3,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,625,-7,0,832,-21,0,0 +2013,6,4,2,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1755,-3,0,2101,-1,0,0 +2013,4,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1415,-2,0,1510,-1,0,0 +2013,8,24,6,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,713,-2,0,927,-12,0,0 +2013,7,14,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,-7,0,2045,-28,0,0 +2013,9,18,3,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1705,41,1,1850,40,1,0 +2013,8,24,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,-3,0,1110,-10,0,0 +2013,7,15,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-6,0,733,-6,0,0 +2013,8,25,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1817,249,1,2015,247,1,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1826,-5,0,2103,-29,0,0 +2013,8,25,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-5,0,1645,-18,0,0 +2013,5,6,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-3,0,950,-7,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1921,-4,0,2013,-25,0,0 +2013,6,13,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,60,1,1825,92,1,0 +2013,7,13,6,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,730,16,1,1040,20,1,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-7,0,2132,-13,0,0 +2013,10,12,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1405,66,1,1743,53,1,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,920,10,0,1335,-2,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1600,13,0,2030,-5,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,23,1,1905,47,1,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,750,9,0,920,-9,0,0 +2013,6,3,1,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-9,0,1700,2,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,920,-4,0,1010,-11,0,0 +2013,8,10,6,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1412,-1,0,1645,-1,0,0 +2013,5,2,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-5,0,1909,-13,0,0 +2013,4,3,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1010,-7,0,1125,14,0,0 +2013,4,24,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,945,0,0,1040,-4,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,-1,0,1507,-19,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,-7,0,1102,-9,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1000,-4,0,1405,6,0,0 +2013,8,24,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,940,11,0,1329,14,0,0 +2013,8,4,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,29,1,2000,31,1,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,740,42,1,1150,39,1,0 +2013,4,23,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1752,3,0,1936,-8,0,0 +2013,10,27,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,284,1,2035,317,1,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1109,-8,0,1315,2,0,0 +2013,6,20,4,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,745,-8,0,1003,-28,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-5,0,2331,-10,0,0 +2013,6,26,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1620,118,1,1947,136,1,0 +2013,8,31,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1125,-2,0,1245,-7,0,0 +2013,10,8,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2251,1,0,28,-17,0,0 +2013,10,28,1,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1425,-2,0,1710,-13,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-4,0,1430,-3,0,0 +2013,6,13,4,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,845,-4,0,1105,-5,0,0 +2013,7,16,2,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,630,-12,0,750,-14,0,0 +2013,4,11,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,99,1,1650,80,1,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1000,0,0,1345,-6,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,13,0,1750,-14,0,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1248,-2,0,1625,6,0,0 +2013,10,4,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-10,0,805,-15,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1255,-2,0,1840,-41,0,0 +2013,6,18,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1852,222,1,2054,206,1,0 +2013,6,28,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1353,-9,0,1738,-7,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,-2,0,2059,-13,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,-4,0,2035,-14,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1835,-8,0,2028,-13,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1020,24,1,1320,19,1,0 +2013,10,10,4,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-5,0,1634,-10,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1220,-3,0,1350,-10,0,0 +2013,7,25,4,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,4,0,1208,-2,0,0 +2013,5,29,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,-8,0,1727,-20,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-2,0,1536,-15,0,0 +2013,7,20,6,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,44,1,2135,48,1,0 +2013,10,2,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1610,-4,0,1713,-15,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,9,0,2350,4,0,0 +2013,10,15,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-8,0,1655,-15,0,0 +2013,5,16,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1435,10,0,1550,0,0,0 +2013,8,14,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-2,0,736,6,0,0 +2013,7,16,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,825,-5,0,1050,12,0,0 +2013,10,27,7,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,805,2,0,922,-1,0,0 +2013,7,28,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1646,9,0,1733,21,1,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,-5,0,2255,-1,0,0 +2013,6,25,2,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,236,1,2245,227,1,0 +2013,4,17,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,822,1,0,1026,20,1,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,21,1,1130,19,1,0 +2013,8,14,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1951,27,1,2316,13,0,0 +2013,5,14,2,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1955,-10,0,2157,-4,0,0 +2013,5,19,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,20,1,2118,29,1,0 +2013,5,17,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,839,-9,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1340,-2,0,1527,-10,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1320,0,0,1425,3,0,0 +2013,10,1,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-6,0,1950,-2,0,0 +2013,5,14,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1935,0,0,2328,-9,0,0 +2013,5,1,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1625,170,1,45,158,1,0 +2013,6,2,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,17,1,1125,11,0,0 +2013,8,3,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-5,0,1050,-6,0,0 +2013,6,2,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1150,18,1,1750,7,0,0 +2013,4,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,718,2,0,1038,8,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,820,8,0,950,4,0,0 +2013,7,21,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1301,-2,0,1419,-3,0,0 +2013,5,13,1,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,809,4,0,0 +2013,8,13,2,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-2,0,1955,-6,0,0 +2013,4,30,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1400,117,1,1555,126,1,0 +2013,9,4,3,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,650,-6,0,904,-15,0,0 +2013,5,29,3,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1326,17,1,1830,30,1,0 +2013,6,6,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1845,10,0,2009,-2,0,0 +2013,7,25,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,216,1,1905,220,1,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,13,0,2025,5,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,90,1,2335,78,1,0 +2013,8,26,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,35,1,1556,22,1,0 +2013,6,20,4,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1121,-6,0,1305,-5,0,0 +2013,9,11,3,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1457,-6,0,1812,-6,0,0 +2013,7,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,-2,0,1110,-2,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,849,152,1,1005,147,1,0 +2013,10,23,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1004,-1,0,1352,-19,0,0 +2013,10,6,7,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1830,4,0,2147,18,1,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2200,156,1,5,154,1,0 +2013,6,19,3,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,-7,0,1425,-11,0,0 +2013,7,19,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1415,-1,0,1710,1,0,0 +2013,8,26,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,850,-4,0,1022,-1,0,0 +2013,4,16,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1925,-6,0,2219,-9,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1928,96,1,2048,88,1,0 +2013,7,9,2,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1543,16,1,1831,24,1,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1730,5,0,2030,0,0,0 +2013,10,29,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1251,-6,0,1413,-20,0,0 +2013,6,28,5,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1905,19,1,1940,6,0,0 +2013,8,25,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,3,0,957,8,0,0 +2013,5,23,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1820,96,1,12,71,1,0 +2013,10,25,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,10,0,1327,0,0,0 +2013,8,1,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1221,-6,0,0 +2013,8,19,1,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-7,0,1625,-12,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1925,36,1,2146,52,1,0 +2013,8,28,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2040,21,1,2350,15,1,0 +2013,9,22,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,855,-4,0,955,-7,0,0 +2013,5,21,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,55,1,1916,52,1,0 +2013,8,3,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,22,1,1140,23,1,0 +2013,10,10,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-1,0,1014,8,0,0 +2013,5,22,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,-3,0,2110,-11,0,0 +2013,4,18,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,930,-3,0,1255,8,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1012,-1,0,1148,-16,0,0 +2013,4,19,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,223,1,2230,219,1,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,5,0,1040,0,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,925,1,0,1030,2,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,-4,0,912,-5,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,181,1,2115,172,1,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1847,-9,0,2358,-14,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,5,0,1826,-12,0,0 +2013,6,7,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,815,-3,0,1122,24,1,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,625,-1,0,740,-3,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1325,0,0,1550,-3,0,0 +2013,6,15,6,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1625,62,1,1900,47,1,0 +2013,9,8,7,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,-4,0,1150,-13,0,0 +2013,5,15,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1231,9,0,1405,16,1,0 +2013,5,25,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1738,28,1,1921,21,1,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-3,0,2150,1,0,0 +2013,7,8,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,829,-4,0,1014,-3,0,0 +2013,5,5,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-2,0,1834,-5,0,0 +2013,10,30,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-2,0,1835,15,1,0 +2013,10,29,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1825,-8,0,1940,2,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,950,1,0,1105,1,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1800,78,1,1935,71,1,0 +2013,9,12,4,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1545,17,1,1705,0,1,1 +2013,9,14,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1620,-3,0,1740,-5,0,0 +2013,5,21,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1610,-4,0,1816,-6,0,0 +2013,7,24,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,1,0,805,-7,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,605,-7,0,833,-15,0,0 +2013,5,28,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1105,-3,0,1636,-17,0,0 +2013,9,28,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1101,19,1,1418,-18,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,10,0,629,12,0,0 +2013,8,6,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-7,0,1446,-15,0,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1250,28,1,1535,11,0,0 +2013,7,23,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,-6,0,1345,10,0,0 +2013,10,12,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-2,0,1755,-10,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1917,2,0,2051,2,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1030,-1,0,1420,-6,0,0 +2013,7,18,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1935,171,1,2110,162,1,0 +2013,6,13,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1029,-1,0,1155,-3,0,0 +2013,10,7,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1540,11,0,1909,6,0,0 +2013,5,15,3,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,2010,-6,0,2125,-12,0,0 +2013,10,9,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1010,-7,0,1124,-21,0,0 +2013,6,2,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,-6,0,2202,-23,0,0 +2013,5,15,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,605,-3,0,750,-1,0,0 +2013,6,23,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1802,76,1,2005,60,1,0 +2013,8,25,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,630,-6,0,1501,-12,0,0 +2013,8,8,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-4,0,2154,-4,0,0 +2013,4,8,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-6,0,959,-18,0,0 +2013,9,6,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1955,-8,0,2254,-7,0,0 +2013,5,26,7,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1950,-1,0,2255,-3,0,0 +2013,5,27,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,41,1,2140,42,1,0 +2013,10,31,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,754,-20,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1644,72,1,2025,93,1,0 +2013,9,29,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,610,-3,0,1130,1,0,0 +2013,9,9,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,-6,0,725,3,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,28,1,1735,22,1,0 +2013,9,1,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1855,0,0,2225,-5,0,0 +2013,4,2,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,811,1,0,1359,-28,0,0 +2013,5,13,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1351,27,1,1554,18,1,0 +2013,7,5,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1439,7,0,2251,-2,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,-6,0,910,-3,0,0 +2013,10,30,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1320,-8,0,1520,-3,0,0 +2013,7,8,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1344,0,,1530,0,1,1 +2013,10,25,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1805,18,1,2015,20,1,0 +2013,7,23,2,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,170,1,1914,162,1,0 +2013,6,12,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1245,4,0,1344,-2,0,0 +2013,5,21,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,189,1,2030,166,1,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1600,1,0,2030,-12,0,0 +2013,6,14,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1010,-6,0,1304,-8,0,0 +2013,8,30,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1559,9,0,1828,-10,0,0 +2013,6,27,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1545,10,0,1700,2,0,0 +2013,8,30,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1125,-4,0,1231,-2,0,0 +2013,8,1,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-9,0,1007,-15,0,0 +2013,4,24,3,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,610,-4,0,825,-7,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1550,15,1,1810,1,0,0 +2013,9,9,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,810,-7,0,955,-14,0,0 +2013,5,1,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,601,9,0,1156,13,0,0 +2013,6,23,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,-4,0,725,-29,0,0 +2013,7,22,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-5,0,1720,-10,0,0 +2013,5,29,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1535,7,0,1640,-3,0,0 +2013,7,5,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1051,17,1,1333,31,1,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1945,-6,0,2105,-16,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1617,-3,0,1722,-6,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1750,-1,0,1840,-6,0,0 +2013,6,25,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-6,0,640,-18,0,0 +2013,9,21,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2103,-1,0,459,4,0,0 +2013,5,1,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-3,0,1348,-10,0,0 +2013,4,13,6,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,-3,0,1618,-16,0,0 +2013,5,30,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,30,1,1905,29,1,0 +2013,9,25,3,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,0,0,905,-16,0,0 +2013,6,22,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,-4,0,1005,-7,0,0 +2013,4,13,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1534,19,1,1815,-6,0,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1305,46,1,1611,38,1,0 +2013,5,12,7,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-8,0,1122,-6,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,1,0,1201,0,0,0 +2013,6,3,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1445,6,0,1450,6,0,0 +2013,9,11,3,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-9,0,1755,5,0,0 +2013,4,29,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1035,31,1,1255,32,1,0 +2013,7,20,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,4,0,1445,3,0,0 +2013,9,28,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-6,0,801,-11,0,0 +2013,5,8,3,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,820,0,0,1116,16,1,0 +2013,9,17,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2216,-11,0,548,-11,0,0 +2013,7,23,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1700,-12,0,2108,10,0,0 +2013,6,27,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1103,0,0,1216,4,0,0 +2013,4,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-2,0,1028,6,0,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,610,-2,0,855,-9,0,0 +2013,4,25,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,28,1,2010,22,1,0 +2013,7,19,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-6,0,1242,-4,0,0 +2013,9,4,3,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-1,0,1725,-25,0,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,930,-4,0,1155,-13,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,50,1,1555,38,1,0 +2013,5,8,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-1,0,1216,-18,0,0 +2013,4,4,4,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1820,15,1,1955,10,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,195,1,1345,220,1,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1430,-2,0,1710,-21,0,0 +2013,4,28,7,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1109,-3,0,1246,-19,0,0 +2013,7,14,7,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,2,0,2014,31,1,0 +2013,10,31,4,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1450,-2,0,1738,0,0,0 +2013,9,2,1,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,1,0,1746,-4,0,0 +2013,4,4,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1130,2,0,1140,-4,0,0 +2013,9,10,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-6,0,1110,-9,0,0 +2013,10,13,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,0,0,1315,23,1,0 +2013,7,31,3,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1233,-5,0,1354,-7,0,0 +2013,5,14,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1400,87,1,1420,75,1,0 +2013,10,7,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1612,4,0,1811,-13,0,0 +2013,6,4,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-2,0,2125,-1,0,0 +2013,6,2,7,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,750,-2,0,1035,-5,0,0 +2013,7,29,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,314,1,1534,292,1,0 +2013,7,2,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,900,15,1,950,1,0,0 +2013,6,25,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,7,0,2150,16,1,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1357,-5,0,1530,-4,0,0 +2013,6,15,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1600,47,1,1925,25,1,0 +2013,8,19,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-7,0,1230,-8,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,953,58,1,1355,57,1,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,0,0,2009,-5,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1400,-3,0,1605,-16,0,0 +2013,9,23,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-1,0,1010,-8,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1650,1,0,2045,-17,0,0 +2013,4,3,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2215,4,0,640,-4,0,0 +2013,5,23,4,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-3,0,1103,-8,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-1,0,905,-11,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,705,-5,0,830,-10,0,0 +2013,6,14,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,13,0,1340,9,0,0 +2013,10,17,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1815,36,1,1835,28,1,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1840,-9,0,2029,-24,0,0 +2013,5,4,6,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,931,-5,0,1122,-7,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,-5,0,1301,-8,0,0 +2013,9,26,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1028,-5,0,1157,-2,0,0 +2013,8,18,7,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1700,18,1,1825,6,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1359,-9,0,2227,-22,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,35,1,1518,35,1,0 +2013,4,25,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,15,1,1905,9,0,0 +2013,9,15,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1443,-2,0,1820,0,0,0 +2013,7,31,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,609,-6,0,905,-9,0,0 +2013,10,1,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1817,-8,0,1904,-9,0,0 +2013,4,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,800,9,0,1325,-13,0,0 +2013,4,12,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1015,-8,0,1305,-1,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,11,0,5,-2,0,0 +2013,10,7,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,735,-3,0,905,-9,0,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1225,-2,0,1415,10,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1950,9,0,2305,9,0,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1511,114,1,1705,136,1,0 +2013,6,19,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1755,-5,0,1940,-10,0,0 +2013,8,25,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,-4,0,1742,-15,0,0 +2013,4,13,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-6,0,1821,-18,0,0 +2013,8,31,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,720,20,1,1007,32,1,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,625,-2,0,740,-7,0,0 +2013,6,18,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1354,4,0,1450,6,0,0 +2013,10,15,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,-5,0,1525,3,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1148,-6,0,1259,-11,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-4,0,2246,-3,0,0 +2013,4,7,7,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,6,0,821,-17,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,5,0,1852,21,1,0 +2013,10,30,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1420,21,1,1535,21,1,0 +2013,7,21,7,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1225,-5,0,1359,-11,0,0 +2013,6,18,2,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,46,1,1355,33,1,0 +2013,4,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1050,57,1,1349,42,1,0 +2013,6,20,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,-10,0,2003,0,0,0 +2013,4,5,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1059,-5,0,1117,-16,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,-3,0,1409,9,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1810,-3,0,2009,-7,0,0 +2013,8,26,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,27,1,931,18,1,0 +2013,10,14,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1159,-5,0,1344,-9,0,0 +2013,9,10,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-1,0,810,5,0,0 +2013,7,9,2,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2005,55,1,2115,55,1,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1655,40,1,1955,31,1,0 +2013,10,28,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1320,26,1,1505,12,0,0 +2013,5,24,5,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,833,-5,0,1054,-11,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,940,11,0,1100,5,0,0 +2013,4,21,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1705,25,1,2030,71,1,0 +2013,7,15,1,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1659,-4,0,1853,-16,0,0 +2013,4,14,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1039,-3,0,1207,-22,0,0 +2013,6,9,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2015,-5,0,2140,6,0,0 +2013,7,23,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,59,1,2233,41,1,0 +2013,6,2,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,725,-7,0,820,-6,0,0 +2013,5,13,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,629,4,0,935,-31,0,0 +2013,8,14,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,840,5,0,1255,-9,0,0 +2013,10,25,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1955,26,1,2121,13,0,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2040,11,0,2310,15,1,0 +2013,9,6,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,920,-5,0,1040,-4,0,0 +2013,7,26,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1100,-3,0,1320,-13,0,0 +2013,9,24,2,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1224,-8,0,1512,-19,0,0 +2013,8,9,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1240,-5,0,1517,-7,0,0 +2013,9,13,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,530,0,0,712,-13,0,0 +2013,7,20,6,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1414,-3,0,2245,-7,0,0 +2013,6,16,7,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1420,3,0,1650,-8,0,0 +2013,9,15,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-1,0,935,-2,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,10,0,2005,19,1,0 +2013,7,30,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,-2,0,1205,-8,0,0 +2013,4,11,4,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1903,70,1,2029,80,1,0 +2013,9,11,3,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1111,-7,0,1309,-17,0,0 +2013,5,5,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1359,-4,0,0 +2013,9,7,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,745,1,0,815,-5,0,0 +2013,6,29,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,847,14,0,1015,19,1,0 +2013,10,23,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-5,0,1015,-10,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1540,-1,0,1815,-17,0,0 +2013,8,25,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-1,0,1020,-6,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1025,1,0,1207,-3,0,0 +2013,9,15,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1810,0,0,1831,4,0,0 +2013,8,13,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,742,-6,0,907,-12,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1315,-2,0,1630,5,0,0 +2013,5,1,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-7,0,825,-16,0,0 +2013,5,29,3,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1550,-6,0,1905,-17,0,0 +2013,4,20,6,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1625,-8,0,1825,-17,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,36,1,2355,58,1,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1500,-2,0,1645,-12,0,0 +2013,6,12,3,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2335,-8,0,805,-29,0,0 +2013,7,10,3,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,,1340,0,1,1 +2013,5,17,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,47,1,2009,45,1,0 +2013,4,23,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,938,57,1,1230,75,1,0 +2013,6,28,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,940,-13,0,0 +2013,6,27,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,750,44,1,1035,38,1,0 +2013,9,2,1,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,624,1,0,1448,7,0,0 +2013,6,27,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-5,0,1645,6,0,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1622,6,0,54,30,1,0 +2013,5,30,4,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1148,-11,0,1659,-22,0,0 +2013,10,1,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,600,-8,0,722,-21,0,0 +2013,4,30,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1404,-6,0,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2100,-5,0,2212,-11,0,0 +2013,4,11,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1425,-6,0,1555,-14,0,0 +2013,6,10,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1055,7,0,1210,-19,0,0 +2013,8,3,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,7,0,1341,9,0,0 +2013,8,7,3,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1910,-5,0,2030,-5,0,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,955,5,0,1115,3,0,0 +2013,6,9,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1630,31,1,1820,28,1,0 +2013,5,30,4,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,828,-7,0,1056,-23,0,0 +2013,4,11,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1005,-3,0,1100,-9,0,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,0,0,1400,-8,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-6,0,1148,-6,0,0 +2013,8,21,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-9,0,712,-23,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,3,0,1525,2,0,0 +2013,4,28,7,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-7,0,1635,-6,0,0 +2013,8,3,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1045,5,0,1150,-4,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-6,0,1356,-13,0,0 +2013,7,5,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1858,-8,0,2159,-35,0,0 +2013,8,8,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,920,37,1,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,-12,0,2342,-15,0,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,104,1,2250,98,1,0 +2013,4,22,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-2,0,800,-7,0,0 +2013,6,22,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,-5,0,2059,-20,0,0 +2013,9,13,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1105,13,0,1205,17,1,0 +2013,7,15,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,930,-9,0,1327,0,0,0 +2013,8,5,1,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,648,-9,0,948,-7,0,0 +2013,6,10,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,-1,0,2059,-20,0,0 +2013,6,26,3,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1452,0,0,1832,-6,0,0 +2013,7,10,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1615,-13,0,1800,-2,0,0 +2013,7,2,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,1,0,1637,-7,0,0 +2013,10,13,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,545,-1,0,907,-23,0,0 +2013,8,18,7,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,625,0,0,750,4,0,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1746,-3,0,1931,2,0,0 +2013,10,10,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-2,0,2055,-9,0,0 +2013,7,15,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1523,15,1,1739,1,0,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,935,-4,0,1040,0,0,0 +2013,7,31,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,5,0,1522,19,1,0 +2013,8,2,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,805,20,1,850,11,0,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,23,1,1351,10,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1440,15,1,1545,8,0,0 +2013,8,25,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1302,-2,0,1909,-19,0,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-3,0,1750,-3,0,0 +2013,10,19,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-1,0,839,6,0,0 +2013,4,21,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-4,0,1340,-18,0,0 +2013,6,4,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1210,24,1,1330,20,1,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,925,-1,0,1040,1,0,0 +2013,6,3,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1546,-1,0,1700,-7,0,0 +2013,5,28,2,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-8,0,1740,-15,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-4,0,1831,26,1,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,2020,-4,0,2304,-34,0,0 +2013,5,7,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1643,-3,0,1958,-35,0,0 +2013,8,11,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-2,0,929,-14,0,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1400,73,1,1555,55,1,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,13,0,830,10,0,0 +2013,9,22,7,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2240,1,0,635,-14,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,2,0,1155,-7,0,0 +2013,5,14,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,0,0,1353,-6,0,0 +2013,10,28,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,17,1,1325,27,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,759,-3,0,1034,-25,0,0 +2013,10,27,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1514,-4,0,1600,-1,0,0 +2013,9,29,7,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1300,-1,0,2144,-30,0,0 +2013,8,15,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-8,0,935,-12,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,2025,63,1,2245,51,1,0 +2013,5,21,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1215,52,1,1331,40,1,0 +2013,4,14,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-2,0,2050,-17,0,0 +2013,6,16,7,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1318,-5,0,1455,-14,0,0 +2013,4,27,6,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-1,0,1530,-2,0,0 +2013,4,21,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,2,0,2100,-9,0,0 +2013,9,1,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1011,-6,0,1203,-29,0,0 +2013,10,23,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,-6,0,1654,-29,0,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,925,0,0,1050,9,0,0 +2013,8,12,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-6,0,1620,-6,0,0 +2013,9,24,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1045,-3,0,1210,-4,0,0 +2013,9,3,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,0,0,1357,-6,0,0 +2013,6,23,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-3,0,809,-5,0,0 +2013,9,26,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,948,4,0,1747,-4,0,0 +2013,4,6,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2052,-6,0,2140,2,0,0 +2013,10,21,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-8,0,1845,0,0,0 +2013,4,20,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2100,48,1,520,23,1,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2155,26,1,25,29,1,0 +2013,9,2,1,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2028,0,0,443,-14,0,0 +2013,4,3,3,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,655,-3,0,815,-7,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-4,0,1655,-8,0,0 +2013,8,8,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1538,30,1,1710,17,1,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2100,29,1,2253,40,1,0 +2013,9,16,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,8,0,2015,9,0,0 +2013,6,13,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,218,1,1830,203,1,0 +2013,6,26,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1612,3,0,1810,-5,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,3,0,1651,-25,0,0 +2013,4,15,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1530,-1,0,1836,-14,0,0 +2013,10,20,7,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,935,-2,0,1420,4,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-5,0,1043,-8,0,0 +2013,7,7,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1344,2,0,1429,11,0,0 +2013,9,17,2,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1900,-8,0,2135,5,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,19,1,1632,58,1,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1320,-4,0,1457,0,0,0 +2013,5,25,6,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,2,0,810,-7,0,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-6,0,948,-7,0,0 +2013,8,1,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1355,21,1,1955,5,0,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,8,0,2140,23,1,0 +2013,9,25,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1015,18,1,1155,7,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,0,0,1819,-4,0,0 +2013,8,16,5,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1954,-5,0,2103,-16,0,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-1,0,2110,14,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,2,0,1200,-10,0,0 +2013,8,28,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,711,-7,0,1045,10,0,0 +2013,4,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,925,11,0,1125,14,0,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,2,0,2200,1,0,0 +2013,10,3,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,700,-4,0,820,-8,0,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1355,11,0,1710,7,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2015,-3,0,2240,-26,0,0 +2013,7,16,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1730,-7,0,1800,-14,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,24,1,1320,16,1,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1220,22,1,1505,24,1,0 +2013,8,30,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1555,76,1,1916,135,1,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1916,16,1,2214,13,0,0 +2013,10,19,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1715,18,1,1900,20,1,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,740,-3,0,1004,-18,0,0 +2013,7,8,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,102,1,2140,85,1,0 +2013,7,20,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1901,20,1,1925,33,1,0 +2013,5,19,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,845,-9,0,1030,-12,0,0 +2013,4,26,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1730,-6,0,1919,-9,0,0 +2013,8,5,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1720,58,1,1825,59,1,0 +2013,10,16,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,650,-3,0,804,-14,0,0 +2013,4,8,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,81,1,1350,83,1,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,20,1,1602,7,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,2,0,2253,-27,0,0 +2013,9,4,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,-6,0,1209,-9,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,-6,0,901,-5,0,0 +2013,9,18,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,29,1,2110,22,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,-3,0,1527,-12,0,0 +2013,4,26,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1815,-10,0,1915,-9,0,0 +2013,7,27,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1405,-3,0,1550,-35,0,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1725,-2,0,1830,5,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2000,89,1,2315,77,1,0 +2013,8,6,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,540,-5,0,637,8,0,0 +2013,4,16,2,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1835,-4,0,2110,-2,0,0 +2013,4,28,7,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,554,-4,0,739,-4,0,0 +2013,7,16,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1450,-10,0,1623,-13,0,0 +2013,5,22,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,95,1,1819,107,1,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,1,0,1335,70,1,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1028,10,0,1256,-5,0,0 +2013,6,14,5,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1708,202,1,1835,212,1,0 +2013,4,13,6,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1608,3,0,1830,7,0,0 +2013,4,25,4,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1805,-5,0,2057,-11,0,0 +2013,4,30,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1552,11,0,1615,12,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,4,0,2105,5,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,822,8,0,959,-2,0,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,27,1,2150,45,1,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1752,-5,0,2058,-6,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1215,-6,0,1344,-12,0,0 +2013,5,8,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,134,1,1837,117,1,0 +2013,4,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1031,-6,0,1130,-1,0,0 +2013,4,11,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,17,1,1411,12,0,0 +2013,9,8,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2055,15,1,2220,8,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1455,3,0,1601,-9,0,0 +2013,7,1,1,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,-6,0,719,-13,0,0 +2013,8,10,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1046,14,0,1137,18,1,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1215,-2,0,1446,-11,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1920,23,1,2120,15,1,0 +2013,8,17,6,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,635,-4,0,755,-13,0,0 +2013,9,12,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1330,30,1,1645,34,1,0 +2013,4,10,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-11,0,850,1,0,0 +2013,4,1,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,61,1,2048,57,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1444,19,1,1603,23,1,0 +2013,4,21,7,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,-1,0,1900,1,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1854,0,0,2358,9,0,0 +2013,9,18,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1210,-9,0,1520,-11,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1927,8,0,42,3,0,0 +2013,10,19,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,705,-2,0,820,-10,0,0 +2013,6,29,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1819,79,1,2118,112,1,0 +2013,8,9,5,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-3,0,1635,2,0,0 +2013,5,17,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1135,8,0,1235,11,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,4,0,1350,-1,0,0 +2013,9,16,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-3,0,1139,-4,0,0 +2013,10,28,1,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-3,0,1045,-21,0,0 +2013,10,16,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1505,15,1,1655,25,1,0 +2013,5,13,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1102,-3,0,1234,-15,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,20,1,2320,28,1,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1040,-4,0,1200,-5,0,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1355,9,0,1702,-14,0,0 +2013,10,16,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1810,-5,0,1840,-7,0,0 +2013,7,24,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-3,0,1501,2,0,0 +2013,7,13,6,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,700,-1,0,1020,2,0,0 +2013,8,6,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,7,0,1155,-1,0,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,853,0,0,1111,-5,0,0 +2013,5,21,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,652,138,1,1254,131,1,0 +2013,5,18,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-9,0,1650,-41,0,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,45,1,1615,29,1,0 +2013,10,28,1,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1500,5,0,1700,9,0,0 +2013,10,13,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,2,0,1905,-12,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2107,0,0,2155,-18,0,0 +2013,9,3,2,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,-2,0,759,-12,0,0 +2013,9,20,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1555,3,0,1805,10,0,0 +2013,5,1,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,740,-4,0,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1305,-1,0,1625,-18,0,0 +2013,4,19,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,815,44,1,1114,28,1,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,858,-19,0,0 +2013,8,28,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,124,1,2105,131,1,0 +2013,6,8,6,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-8,0,1215,-1,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2201,9,0,2312,0,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1101,-4,0,1443,-18,0,0 +2013,5,9,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,800,1,0,1101,-23,0,0 +2013,8,3,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1615,-8,0,1915,-31,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2130,16,1,2255,16,1,0 +2013,9,11,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-5,0,2150,1,0,0 +2013,10,7,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,600,-1,0,720,1,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-6,0,1842,-25,0,0 +2013,8,5,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-6,0,1250,-13,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1410,13,0,1545,12,0,0 +2013,5,27,1,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,846,-12,0,1035,-6,0,0 +2013,5,6,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2144,-7,0,2238,-14,0,0 +2013,7,10,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-8,0,2159,-5,0,0 +2013,8,31,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1450,0,0,1600,-4,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-2,0,1620,0,0,0 +2013,8,22,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-6,0,1225,-13,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,-3,0,2220,-30,0,0 +2013,6,24,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,0,,1925,0,1,1 +2013,5,7,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-4,0,1510,5,0,0 +2013,8,16,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,16,1,2030,17,1,0 +2013,8,26,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-9,0,1333,-1,0,0 +2013,7,10,3,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,600,-4,0,717,-12,0,0 +2013,6,20,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1050,9,0,1230,5,0,0 +2013,7,29,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,-4,0,1533,1,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1910,14,0,2120,6,0,0 +2013,10,11,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1122,-2,0,1332,-13,0,0 +2013,10,1,2,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,850,-5,0,1025,-17,0,0 +2013,5,10,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1835,8,0,2005,12,0,0 +2013,7,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,930,4,0,1500,-7,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,33,1,1513,1,0,0 +2013,4,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,925,0,0,1515,-14,0,0 +2013,8,30,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-6,0,732,-7,0,0 +2013,8,13,2,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1110,15,1,1300,23,1,0 +2013,9,7,6,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,-4,0,1122,-5,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,635,-1,0,840,0,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,918,-3,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,3,0,1654,-3,0,0 +2013,6,13,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2116,-4,0,2359,5,0,0 +2013,5,5,7,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,-2,0,2145,-5,0,0 +2013,7,20,6,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,89,1,1114,76,1,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-7,0,1815,17,1,0 +2013,9,10,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1210,13,0,1309,2,0,0 +2013,8,20,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-5,0,1740,-2,0,0 +2013,5,29,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,815,-4,0,940,10,0,0 +2013,4,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1738,-4,0,1818,-2,0,0 +2013,6,21,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1845,156,1,2030,121,1,0 +2013,6,3,1,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-5,0,1213,-14,0,0 +2013,7,26,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,-2,0,1310,-8,0,0 +2013,4,17,3,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1805,0,0,2017,-2,0,0 +2013,6,29,6,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,940,-10,0,1202,4,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1040,-3,0,1259,-26,0,0 +2013,9,25,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,915,-8,0,1045,-3,0,0 +2013,8,13,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,54,1,2120,46,1,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-3,0,1150,-16,0,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,2005,34,1,2110,15,1,0 +2013,7,14,7,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,24,1,2115,19,1,0 +2013,5,11,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,60,1,1543,71,1,0 +2013,6,4,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1228,7,0,1510,9,0,0 +2013,5,7,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1818,29,1,2030,21,1,0 +2013,10,10,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-2,0,1840,-2,0,0 +2013,9,20,5,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1205,7,0,1436,19,1,0 +2013,5,5,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-3,0,2102,9,0,0 +2013,8,8,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,705,-2,0,935,-9,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,630,-6,0,753,-26,0,0 +2013,7,30,2,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,6,0,1422,2,0,0 +2013,10,19,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1240,-6,0,1400,-13,0,0 +2013,5,13,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,50,1,1918,52,1,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1128,-4,0,1312,4,0,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-1,0,834,3,0,0 +2013,10,31,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1529,-6,0,0 +2013,6,18,2,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,9,0,2039,-9,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1613,-1,0,1722,-15,0,0 +2013,6,30,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1345,4,0,1710,6,0,0 +2013,5,9,4,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1755,8,0,2035,4,0,0 +2013,7,3,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,34,1,1734,72,1,0 +2013,8,26,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,753,-5,0,1030,-6,0,0 +2013,5,11,6,OO,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,2205,1,0,2323,-7,0,0 +2013,6,5,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1533,-5,0,1830,42,1,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,11,0,2148,11,0,0 +2013,7,15,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1535,-6,0,1700,-17,0,0 +2013,6,30,7,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,68,1,1630,93,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,815,17,1,946,28,1,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,-4,0,1910,-22,0,0 +2013,4,19,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,1639,3,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1545,28,1,1735,10,0,0 +2013,6,15,6,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,6,0,1033,-2,0,0 +2013,7,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1805,20,1,2120,10,0,0 +2013,7,22,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2335,15,1,722,5,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,625,-3,0,715,-13,0,0 +2013,4,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2000,-5,0,2102,-17,0,0 +2013,5,19,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1010,94,1,1125,83,1,0 +2013,6,18,2,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1553,8,0,1748,15,1,0 +2013,4,29,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,-4,0,1205,-10,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,14,0,2225,-4,0,0 +2013,9,15,7,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,-5,0,1805,-13,0,0 +2013,4,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1608,-1,0,1835,4,0,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1450,1,0,1615,-9,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2007,-1,0,2206,-13,0,0 +2013,10,6,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,0,0,1355,15,1,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1115,-1,0,1241,-27,0,0 +2013,4,22,1,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,620,0,0,907,-7,0,0 +2013,4,25,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1723,6,0,2004,18,1,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,630,0,0,1125,-10,0,0 +2013,6,22,6,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,823,2,0,1015,-22,0,0 +2013,9,29,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1100,-7,0,1432,-18,0,0 +2013,7,20,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,-1,0,1235,-3,0,0 +2013,5,28,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-4,0,1035,-4,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1720,28,1,2055,10,0,0 +2013,10,18,5,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,14,0,2028,3,0,0 +2013,10,25,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1004,-4,0,1352,-22,0,0 +2013,7,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,5,0,1127,-2,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1425,5,0,1911,23,1,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1105,-3,0,1224,-8,0,0 +2013,7,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2205,-1,0,2356,-15,0,0 +2013,4,13,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-5,0,1603,-11,0,0 +2013,5,25,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1015,-1,0,1142,-11,0,0 +2013,10,3,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-1,0,2020,-3,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,737,-1,0,1300,-11,0,0 +2013,6,9,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,47,1,2155,51,1,0 +2013,10,15,2,WN,11278,Ronald Reagan Washington National,Washington,DC,12191,William P Hobby,Houston,TX,1600,-6,0,1820,-19,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-5,0,1045,-18,0,0 +2013,10,28,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1747,30,1,1907,35,1,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-9,0,1108,-18,0,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,22,1,1030,20,1,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1230,-1,0,1605,-19,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1205,78,1,1328,85,1,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1640,-5,0,1924,-15,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,944,5,0,1020,-7,0,0 +2013,5,25,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1130,33,1,1455,27,1,0 +2013,4,24,3,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1715,-13,0,1900,-13,0,0 +2013,7,24,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1054,-12,0,1309,-16,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,0,1515,-8,0,0 +2013,5,9,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,-7,0,825,-19,0,0 +2013,10,1,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1327,-9,0,1429,-15,0,0 +2013,10,6,7,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1635,14,0,1825,-11,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1459,19,1,1639,26,1,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1328,31,1,1724,109,1,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1615,-13,0,1714,-21,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,858,-4,0,1256,-2,0,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1335,-2,0,1646,-27,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1955,4,0,2156,-2,0,0 +2013,4,26,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,600,5,0,720,0,0,0 +2013,9,11,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1055,8,0,1345,1,0,0 +2013,6,7,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-5,0,1646,-15,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1200,-7,0,1425,-32,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2140,39,1,2300,25,1,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,1325,-5,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,830,-1,0,1230,-14,0,0 +2013,5,8,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,-6,0,1623,-6,0,0 +2013,5,25,6,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1715,-15,0,2045,-37,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1333,-4,0,1647,-12,0,0 +2013,4,28,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,53,1,5,50,1,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,-4,0,2220,-10,0,0 +2013,6,27,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,957,-2,0,1325,-3,0,0 +2013,5,22,3,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,816,-3,0,943,-12,0,0 +2013,5,24,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1055,21,1,1225,25,1,0 +2013,10,14,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1855,22,1,2240,2,0,0 +2013,8,29,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1230,34,1,1351,47,1,0 +2013,10,24,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-2,0,735,-6,0,0 +2013,7,24,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-1,0,805,-2,0,0 +2013,8,16,5,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-2,0,505,-13,0,0 +2013,9,26,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1930,-12,0,2231,-15,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1645,14,0,1820,-3,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,855,-4,0,1005,-4,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1855,3,0,2214,-11,0,0 +2013,5,7,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1121,11,0,1303,-18,0,0 +2013,4,4,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,853,-8,0,920,-19,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1840,44,1,2100,45,1,0 +2013,6,1,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1832,-3,0,2235,-22,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1240,-2,0,1330,11,0,0 +2013,6,20,4,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,42,1,2130,41,1,0 +2013,8,4,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-1,0,1639,-9,0,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1840,2,0,2310,-8,0,0 +2013,4,20,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,600,-2,0,940,-14,0,0 +2013,6,23,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,900,-9,0,1040,-6,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2100,51,1,2345,53,1,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2003,-6,0,2253,18,1,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,6,0,1517,-7,0,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,-6,0,1208,-3,0,0 +2013,8,28,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,-6,0,1514,3,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1003,4,0,1344,-1,0,0 +2013,4,22,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1731,234,1,2030,247,1,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1145,0,0,1315,-17,0,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1007,-6,0,1320,-21,0,0 +2013,5,10,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,700,-14,0,828,-13,0,0 +2013,10,8,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1310,18,1,1604,-9,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1535,-3,0,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2020,78,1,2310,79,1,0 +2013,8,14,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1850,0,0,2035,22,1,0 +2013,10,16,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1610,1,0,1735,1,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,22,1,1709,5,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1604,35,1,1737,24,1,0 +2013,5,8,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1516,-9,0,1645,-6,0,0 +2013,10,29,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1500,13,0,1801,9,0,0 +2013,6,10,1,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1025,3,0,1210,-2,0,0 +2013,6,8,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,32,1,1252,26,1,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,10,0,2006,6,0,0 +2013,7,18,4,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,0,0,1915,-11,0,0 +2013,6,4,2,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1445,-6,0,1725,-16,0,0 +2013,5,13,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1000,2,0,1210,-2,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,0,0,1313,-2,0,0 +2013,9,13,5,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,750,-3,0,947,-9,0,0 +2013,10,13,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,951,-2,0,1335,1,0,0 +2013,9,24,2,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1110,-3,0,1428,-15,0,0 +2013,7,24,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-2,0,1029,-6,0,0 +2013,9,13,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,1440,-13,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1608,-4,0,1950,1,0,0 +2013,7,28,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,4,0,1635,19,1,0 +2013,10,14,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1445,0,0,1610,-7,0,0 +2013,9,1,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,127,1,1832,129,1,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,814,-4,0,903,-10,0,0 +2013,10,13,7,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1830,-5,0,2041,-3,0,0 +2013,4,2,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1740,-6,0,2025,-13,0,0 +2013,10,2,3,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1611,-4,0,1900,-21,0,0 +2013,8,24,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-6,0,1302,-11,0,0 +2013,7,11,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-5,0,1817,-19,0,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,0,0,2350,2,0,0 +2013,6,27,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1735,9,0,2045,14,0,0 +2013,6,9,7,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1000,14,0,1140,2,0,0 +2013,8,2,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-2,0,1010,-4,0,0 +2013,8,13,2,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,950,-3,0,1110,3,0,0 +2013,6,11,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,4,0,2035,3,0,0 +2013,6,10,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,0,0,815,-6,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,2005,-3,0,2350,0,0,0 +2013,4,30,2,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,-8,0,2250,7,0,0 +2013,4,21,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,-5,0,1930,-1,0,0 +2013,6,18,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,-3,0,745,-8,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,730,-4,0,908,-10,0,0 +2013,7,12,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,705,0,0,745,-10,0,0 +2013,6,21,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,38,1,2346,30,1,0 +2013,8,5,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-9,0,845,-8,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,-4,0,912,-6,0,0 +2013,6,8,6,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,-2,0,956,1,0,0 +2013,5,23,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,740,4,0,840,3,0,0 +2013,5,9,4,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2115,-3,0,2350,-9,0,0 +2013,5,21,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,840,76,1,1053,81,1,0 +2013,10,2,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1835,-10,0,2029,9,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,13,0,1420,14,0,0 +2013,8,15,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-2,0,635,0,0,0 +2013,9,8,7,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1530,-4,0,1650,-6,0,0 +2013,10,23,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1801,-7,0,2359,-11,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1245,4,0,1455,-21,0,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-1,0,1705,8,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,648,-4,0,913,0,0,0 +2013,8,26,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2157,40,1,18,10,0,0 +2013,10,3,4,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,605,0,0,840,3,0,0 +2013,4,14,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2225,-8,0,622,-22,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1715,-5,0,1752,-21,0,0 +2013,10,28,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,79,1,1825,83,1,0 +2013,9,6,5,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,737,-11,0,1105,-20,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,0,0,1200,1,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1215,43,1,1420,23,1,0 +2013,7,15,1,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,915,-3,0,1039,-27,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,845,-5,0,1025,-1,0,0 +2013,8,30,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,4,0,1806,-7,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1617,2,0,1817,-9,0,0 +2013,5,23,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1730,0,,1930,0,1,1 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,850,6,0,1015,-2,0,0 +2013,10,17,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1435,4,0,1725,8,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2114,21,1,2340,6,0,0 +2013,6,8,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,0,,2027,0,1,1 +2013,6,11,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,40,1,1650,33,1,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1015,6,0,1440,9,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,905,1,0,1205,-6,0,0 +2013,7,19,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-3,0,1114,-28,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1650,15,1,1935,0,0,0 +2013,6,24,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,945,-4,0,1230,-16,0,0 +2013,7,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1205,-2,0,1419,6,0,0 +2013,5,10,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1635,1,0,1810,-3,0,0 +2013,9,18,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1019,-8,0,1323,-7,0,0 +2013,5,7,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-3,0,1732,9,0,0 +2013,9,11,3,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1930,0,0,807,-7,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1930,4,0,2050,-3,0,0 +2013,5,10,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1909,61,1,2154,35,1,0 +2013,5,2,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,20,1,1850,15,1,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-1,0,845,-14,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,17,1,1115,26,1,0 +2013,9,10,2,YV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,2056,-3,0,2359,-20,0,0 +2013,8,27,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,-2,0,1851,-13,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1045,17,1,1410,3,0,0 +2013,6,15,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1400,5,0,1520,8,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,725,-5,0,850,-9,0,0 +2013,8,1,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,-1,0,2105,-16,0,0 +2013,5,8,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1444,10,0,1619,-4,0,0 +2013,4,28,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1200,-7,0,2003,14,0,0 +2013,8,25,7,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,2,0,2210,5,0,0 +2013,9,15,7,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1219,0,0,1338,3,0,0 +2013,6,13,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,0,0,1218,-7,0,0 +2013,9,27,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,1,0,1730,-1,0,0 +2013,7,17,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1546,-9,0,1553,-7,0,0 +2013,5,22,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1602,-3,0,1920,-8,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1940,-3,0,2145,-3,0,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-4,0,958,0,0,0 +2013,10,6,7,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,14,0,1310,15,1,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,39,1,1310,25,1,0 +2013,10,1,2,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,615,0,0,740,-7,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2010,215,1,2130,201,1,0 +2013,9,13,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,725,-8,0,1022,-14,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,0,,1504,0,1,1 +2013,7,10,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-11,0,1015,10,0,0 +2013,8,23,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,21,1,1930,21,1,0 +2013,7,16,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-1,0,815,-7,0,0 +2013,5,10,5,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-4,0,2035,-22,0,0 +2013,8,23,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1205,0,,1335,0,1,1 +2013,10,9,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1535,3,0,1840,-24,0,0 +2013,6,7,5,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-3,0,812,-23,0,0 +2013,6,12,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,-3,0,1946,-8,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,14,0,2218,12,0,0 +2013,8,7,3,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1717,38,1,1945,12,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,-6,0,1426,1,0,0 +2013,6,25,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1935,87,1,2231,84,1,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,815,13,0,1040,7,0,0 +2013,10,15,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,823,8,0,0 +2013,10,21,1,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,640,-1,0,805,-16,0,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1713,-4,0,1919,5,0,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2250,-6,0,124,-31,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-1,0,1616,-1,0,0 +2013,5,11,6,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,15,1,1830,0,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2025,41,1,50,37,1,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1630,25,1,1828,11,0,0 +2013,8,31,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,755,-7,0,905,-2,0,0 +2013,4,16,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1425,-9,0,1640,-4,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-4,0,1839,-5,0,0 +2013,4,20,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-7,0,1018,-5,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1655,44,1,1900,27,1,0 +2013,5,22,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2150,7,0,19,3,0,0 +2013,5,22,3,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1255,16,1,1405,20,1,0 +2013,7,6,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-6,0,1053,-4,0,0 +2013,4,2,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1130,112,1,1421,106,1,0 +2013,7,23,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,183,1,1137,176,1,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1635,-2,0,1951,3,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1440,100,1,1800,105,1,0 +2013,7,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,17,1,1458,21,1,0 +2013,8,27,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,-4,0,1117,0,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,809,-4,0,1309,5,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,8,0,1243,-1,0,0 +2013,8,7,3,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2045,6,0,2320,5,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,-3,0,1015,-13,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1330,6,0,1410,7,0,0 +2013,8,30,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,725,-4,0,830,-11,0,0 +2013,10,21,1,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,-4,0,2040,-25,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1640,18,1,1830,1,0,0 +2013,9,8,7,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,-6,0,1605,-9,0,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,43,1,1334,42,1,0 +2013,8,25,7,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1730,69,1,2005,75,1,0 +2013,5,15,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2020,7,0,2125,-2,0,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1610,-2,0,1734,-8,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1355,12,0,1520,-2,0,0 +2013,5,30,4,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1405,52,1,1715,49,1,0 +2013,7,9,2,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,1116,-9,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,0,0,1040,-4,0,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1510,0,0,1846,-3,0,0 +2013,7,11,4,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-8,0,2055,-7,0,0 +2013,4,20,6,EV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1735,-5,0,1922,-15,0,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,914,-4,0,1433,-22,0,0 +2013,8,9,5,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2350,93,1,548,82,1,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1830,-6,0,2053,-7,0,0 +2013,5,10,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1110,4,0,1705,7,0,0 +2013,4,25,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1918,-7,0,2009,-16,0,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1518,15,1,1644,8,0,0 +2013,8,29,4,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,829,2,0,0 +2013,6,3,1,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2115,-10,0,2220,-16,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,0,0,1854,12,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,16,1,2005,6,0,0 +2013,7,12,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,0,0,1010,-18,0,0 +2013,5,16,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2145,0,0,2340,-11,0,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1425,4,0,1553,19,1,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,27,1,1107,2,0,0 +2013,10,27,7,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1704,-9,0,2023,-18,0,0 +2013,8,1,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,34,1,2103,32,1,0 +2013,9,25,3,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1639,-7,0,1730,-15,0,0 +2013,7,7,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-3,0,2226,-7,0,0 +2013,4,7,7,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,947,-8,0,1225,-14,0,0 +2013,7,18,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-4,0,914,-4,0,0 +2013,7,15,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,34,1,2155,16,1,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,10,0,1105,-5,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,800,-8,0,1129,-11,0,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,905,18,1,1145,2,0,0 +2013,7,31,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1250,2,0,1400,-4,0,0 +2013,4,5,5,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,550,-3,0,826,-38,0,0 +2013,7,27,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1730,-5,0,2045,-15,0,0 +2013,9,17,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-10,0,1527,-25,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,67,1,2145,48,1,0 +2013,7,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-2,0,1300,1,0,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,139,1,2205,159,1,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,-5,0,2130,-12,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,108,1,1106,112,1,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2015,-3,0,2125,-8,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1155,0,0,1455,-1,0,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1402,-4,0,1556,3,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1545,6,0,1915,-11,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,-3,0,859,3,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1210,-2,0,1410,-14,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1320,11,0,1440,8,0,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1035,44,1,1155,33,1,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,3,0,1020,1,0,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,9,0,2155,16,1,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1507,110,1,1618,104,1,0 +2013,6,24,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-1,0,1612,-4,0,0 +2013,6,11,2,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,36,1,2010,33,1,0 +2013,8,19,1,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-6,0,1541,-5,0,0 +2013,8,3,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,5,0,1810,1,0,0 +2013,6,12,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1711,0,,1757,0,1,1 +2013,7,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1300,9,0,1630,3,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,854,-5,0,1346,-22,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1825,24,1,2010,10,0,0 +2013,10,13,7,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1314,-13,0,1502,-14,0,0 +2013,4,19,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-8,0,1235,-12,0,0 +2013,8,21,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1315,-1,0,1420,-2,0,0 +2013,6,9,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1355,-7,0,2015,-5,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1252,17,1,1745,-3,0,0 +2013,8,6,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,9,0,1135,0,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1945,0,0,2150,10,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1230,-2,0,1340,-1,0,0 +2013,10,4,5,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,605,-8,0,840,0,0,0 +2013,5,24,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-1,0,1822,-14,0,0 +2013,9,9,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1435,58,1,1450,40,1,0 +2013,10,12,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1722,0,0,2007,-7,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2150,2,0,2223,-6,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1955,155,1,45,175,1,0 +2013,7,16,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,46,1,2255,45,1,0 +2013,9,10,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1625,-7,0,1750,0,0,0 +2013,10,3,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-7,0,849,-6,0,0 +2013,4,16,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,61,1,1406,49,1,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1835,-4,0,1920,0,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,745,-5,0,855,-10,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1813,0,0,1953,23,1,0 +2013,8,25,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-5,0,2035,10,0,0 +2013,10,26,6,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,759,-3,0,1059,-21,0,0 +2013,7,16,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-4,0,1258,-20,0,0 +2013,6,24,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,129,1,2345,127,1,0 +2013,10,6,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1851,-2,0,2038,-15,0,0 +2013,4,9,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1100,-3,0,1354,22,1,0 +2013,6,6,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1215,-2,0,1525,6,0,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,829,5,0,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,955,-3,0,1250,10,0,0 +2013,9,17,2,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,845,1,0,1040,9,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1205,0,0,1319,-17,0,0 +2013,7,15,1,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,15,1,1455,4,0,0 +2013,4,9,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,2,0,1354,-8,0,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,0,0,344,7,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1100,-6,0,1432,20,1,0 +2013,8,25,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1730,14,0,1843,34,1,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,5,0,1920,0,0,0 +2013,9,16,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2330,-2,0,642,0,0,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,126,1,2155,127,1,0 +2013,4,12,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,32,1,1300,35,1,0 +2013,10,15,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,3,0,930,0,0,0 +2013,10,10,4,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,545,-6,0,705,-23,0,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1124,2,0,1253,40,1,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1430,2,0,1840,-8,0,0 +2013,5,8,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,-2,0,1523,-6,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2110,25,1,2240,19,1,0 +2013,6,12,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,-9,0,1740,-37,0,0 +2013,6,23,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,725,-6,0,930,0,0,0 +2013,6,21,5,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-1,0,1015,-14,0,0 +2013,9,11,3,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,14,0,1429,4,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1541,41,1,1715,20,1,0 +2013,6,10,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,1,0,2030,-6,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-8,0,2342,0,0,0 +2013,5,31,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1155,3,0,1233,4,0,0 +2013,10,30,3,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1115,-2,0,1846,-34,0,0 +2013,9,8,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,940,-3,0,1050,-15,0,0 +2013,9,1,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,810,-3,0,910,-14,0,0 +2013,5,22,3,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,36,1,1435,42,1,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1345,241,1,1538,272,1,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2055,14,0,2327,2,0,0 +2013,4,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1605,158,1,1821,175,1,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,735,-1,0,845,-6,0,0 +2013,7,28,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-3,0,2110,0,0,0 +2013,10,30,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1815,91,1,2021,135,1,0 +2013,10,13,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,46,1,2125,51,1,0 +2013,10,20,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1122,-3,0,1315,26,1,0 +2013,5,15,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1555,-7,0,1715,-9,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2107,183,1,2245,163,1,0 +2013,8,6,2,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,647,0,0,950,7,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1011,-7,0,1317,14,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,13,0,810,23,1,0 +2013,8,7,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,0,0,2000,-17,0,0 +2013,6,5,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,0,0,1130,-13,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1005,40,1,1227,46,1,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2120,0,0,2302,-4,0,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1940,-3,0,50,0,0,0 +2013,5,19,7,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,196,1,1905,225,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,725,1,0,819,-6,0,0 +2013,5,31,5,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1725,0,0,2000,-17,0,0 +2013,6,13,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-2,0,1123,-9,0,0 +2013,6,13,4,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,29,1,2156,69,1,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1455,72,1,1750,54,1,0 +2013,9,26,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1000,-6,0,1205,5,0,0 +2013,10,8,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1615,-9,0,1747,-24,0,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-8,0,935,-18,0,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1355,-1,0,1640,14,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,0,0,1205,-7,0,0 +2013,5,20,1,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1732,-1,0,1954,-12,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,950,0,0,1121,-7,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1000,52,1,1100,41,1,0 +2013,4,19,5,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-1,0,2015,11,0,0 +2013,10,27,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-7,0,901,1,0,0 +2013,5,26,7,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-1,0,1558,-6,0,0 +2013,10,15,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1335,-4,0,1509,-13,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1805,0,0,1905,-13,0,0 +2013,6,20,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1130,43,1,1349,37,1,0 +2013,9,18,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1335,4,0,1345,3,0,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,19,1,1145,18,1,0 +2013,6,26,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,-2,0,1413,-1,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,16,1,1308,9,0,0 +2013,8,9,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,356,1,1007,355,1,0 +2013,4,4,4,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,930,-3,0,1020,-7,0,0 +2013,9,17,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,35,0,0,816,-3,0,0 +2013,5,15,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,120,1,1135,135,1,0 +2013,8,13,2,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2230,-6,0,120,-21,0,0 +2013,7,30,2,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,2029,-6,0,2115,-7,0,0 +2013,5,13,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,15,1,2115,31,1,0 +2013,8,23,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,843,-11,0,1045,-18,0,0 +2013,4,16,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,939,-5,0,1249,-6,0,0 +2013,5,15,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-3,0,1936,-8,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-4,0,1321,12,0,0 +2013,8,15,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-6,0,2030,-15,0,0 +2013,8,21,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,857,-5,0,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1625,0,0,2001,-3,0,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,69,1,1539,66,1,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2130,18,1,2315,7,0,0 +2013,7,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,715,26,1,818,22,1,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1000,-3,0,1110,-11,0,0 +2013,7,10,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1226,-8,0,1343,29,1,0 +2013,9,28,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,615,-7,0,917,-12,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1725,-1,0,1950,-18,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,155,1,2249,142,1,0 +2013,8,25,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,1247,-9,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,10,0,850,8,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2030,-3,0,2110,-1,0,0 +2013,6,17,1,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,0,0,555,-20,0,0 +2013,9,8,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1525,30,1,1630,30,1,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,625,9,0,800,7,0,0 +2013,4,21,7,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2355,9,0,815,-10,0,0 +2013,10,3,4,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1811,7,0,1931,4,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,6,0,2255,0,0,0 +2013,8,23,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,940,-8,0,1027,0,0,0 +2013,8,30,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,21,1,2250,18,1,0 +2013,10,16,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,5,0,1330,-5,0,0 +2013,9,20,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1539,8,0,1844,-40,0,0 +2013,4,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,0,0,913,-14,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,168,1,1632,159,1,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,21,1,2040,51,1,0 +2013,6,5,3,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1740,0,0,1950,22,1,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-3,0,1118,5,0,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,920,27,1,1050,11,0,0 +2013,9,14,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1330,-6,0,1534,-11,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,610,-1,0,740,-7,0,0 +2013,8,11,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1025,2,0,1135,-5,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1705,329,1,1958,317,1,0 +2013,5,27,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,549,4,0,702,4,0,0 +2013,7,22,1,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1135,-7,0,1253,-9,0,0 +2013,8,2,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1525,6,0,1645,-6,0,0 +2013,8,12,1,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,0,0,745,-13,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1525,26,1,1635,21,1,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,0,0,840,2,0,0 +2013,9,18,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,-4,0,1544,-6,0,0 +2013,10,4,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1420,-1,0,1535,-3,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,2,0,1529,-11,0,0 +2013,10,29,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,800,-3,0,855,-5,0,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1455,1,0,1749,-21,0,0 +2013,8,21,3,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1155,-7,0,1300,-17,0,0 +2013,6,20,4,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,-2,0,935,-3,0,0 +2013,9,27,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1840,7,0,1940,9,0,0 +2013,8,4,7,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-2,0,2041,-16,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1210,9,0,1438,6,0,0 +2013,5,8,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1405,-1,0,2121,-3,0,0 +2013,10,5,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-3,0,1132,-9,0,0 +2013,9,6,5,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1610,189,1,1750,186,1,0 +2013,10,21,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,-2,0,1308,-3,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2030,43,1,2135,48,1,0 +2013,4,12,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,23,1,1310,15,1,0 +2013,4,28,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,-8,0,940,-2,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2015,0,0,2255,-7,0,0 +2013,10,7,1,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,745,-1,0,850,2,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,750,-2,0,920,0,0,0 +2013,4,12,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2155,64,1,48,70,1,0 +2013,10,23,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,545,-7,0,606,-23,0,0 +2013,8,3,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,-6,0,2130,-5,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1445,62,1,1615,51,1,0 +2013,8,23,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1820,7,0,0 +2013,7,23,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-6,0,835,-20,0,0 +2013,5,30,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-6,0,1636,21,1,0 +2013,6,21,5,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,20,1,1605,31,1,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1425,13,0,1624,9,0,0 +2013,7,7,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,2019,-15,0,2046,-19,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1155,-4,0,2035,11,0,0 +2013,6,26,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,0,,1133,0,1,1 +2013,10,16,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2005,-6,0,2103,-11,0,0 +2013,9,5,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1415,4,0,1600,-9,0,0 +2013,5,19,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-1,0,652,-4,0,0 +2013,9,8,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1919,8,0,2113,-10,0,0 +2013,5,30,4,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,2005,3,0,2309,-9,0,0 +2013,5,16,4,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1540,19,1,1835,30,1,0 +2013,6,16,7,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,914,6,0,1026,-16,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,21,1,2205,8,0,0 +2013,10,3,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-3,0,825,-6,0,0 +2013,8,15,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1235,0,0,1345,-12,0,0 +2013,5,1,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,0,0,1610,-7,0,0 +2013,7,8,1,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,920,24,1,1140,27,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-3,0,1015,-1,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1709,-3,0,1829,-13,0,0 +2013,5,21,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,11,0,1515,47,1,0 +2013,10,19,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,850,9,0,0 +2013,6,12,3,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,0,0,921,16,1,0 +2013,7,2,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-1,0,1010,-10,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,9,0,1920,-1,0,0 +2013,7,28,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,9,0,1413,17,1,0 +2013,5,22,3,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1645,1,0,1827,2,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2045,-4,0,2129,-14,0,0 +2013,4,14,7,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,10,0,1805,3,0,0 +2013,5,29,3,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1000,-1,0,1150,2,0,0 +2013,6,23,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,20,1,2205,31,1,0 +2013,7,29,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1450,175,1,1627,168,1,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1310,25,1,1735,4,0,0 +2013,5,28,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,0,0,2202,-5,0,0 +2013,5,22,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,850,11,0,950,6,0,0 +2013,7,21,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-10,0,2010,-3,0,0 +2013,10,10,4,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-7,0,915,-6,0,0 +2013,9,5,4,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,-5,0,1950,-19,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2107,-1,0,2148,-15,0,0 +2013,8,26,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1950,-1,0,2115,-7,0,0 +2013,10,17,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,600,10,0,858,5,0,0 +2013,5,10,5,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1644,-7,0,1829,-18,0,0 +2013,4,25,4,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-4,0,1630,-9,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,800,-4,0,1106,15,1,0 +2013,10,25,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1420,-1,0,1625,-22,0,0 +2013,9,8,7,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,-7,0,1638,-2,0,0 +2013,7,10,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-6,0,851,-4,0,0 +2013,4,7,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,640,-2,0,740,-14,0,0 +2013,5,4,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1610,-5,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2257,23,1,2302,12,0,0 +2013,6,30,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,-4,0,1250,24,1,0 +2013,4,16,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,-5,0,1252,-20,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,4,0,1250,-17,0,0 +2013,9,22,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1920,-2,0,2035,-7,0,0 +2013,5,4,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-4,0,855,-17,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1415,10,0,1525,7,0,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2105,0,0,2212,-6,0,0 +2013,6,28,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,76,1,1459,96,1,0 +2013,10,4,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,800,-2,0,855,-12,0,0 +2013,4,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,700,-4,0,820,-9,0,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1135,-1,0,1235,-1,0,0 +2013,4,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,835,17,1,1200,-3,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-2,0,1320,-15,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-8,0,1007,-20,0,0 +2013,7,20,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-5,0,910,-3,0,0 +2013,8,4,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,182,1,735,145,1,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1725,0,0,2050,-5,0,0 +2013,5,28,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,840,-5,0,1157,-26,0,0 +2013,9,11,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,-1,0,1735,2,0,0 +2013,6,6,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,12,0,1423,11,0,0 +2013,9,23,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1715,-12,0,2235,-32,0,0 +2013,7,30,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1040,57,1,1425,44,1,0 +2013,9,29,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-1,0,839,-8,0,0 +2013,8,14,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,0,0,1145,-14,0,0 +2013,10,2,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,720,1,0,840,-5,0,0 +2013,4,16,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1345,28,1,1545,28,1,0 +2013,10,2,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2035,-1,0,2150,-8,0,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,5,0,2215,6,0,0 +2013,7,22,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1825,0,,2005,0,1,1 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1200,-1,0,1355,-22,0,0 +2013,10,18,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,941,4,0,1218,0,0,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1855,160,1,2156,153,1,0 +2013,8,7,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,610,-5,0,755,-6,0,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1826,2,0,2254,9,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1100,-4,0,1436,-12,0,0 +2013,5,18,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,36,1,1757,28,1,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2155,-1,0,10,-4,0,0 +2013,10,4,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,0,0,1225,-2,0,0 +2013,10,25,5,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,0,0,2051,-9,0,0 +2013,7,9,2,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-2,0,856,-26,0,0 +2013,7,13,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1304,3,0,1629,4,0,0 +2013,8,28,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1403,3,0,1958,-10,0,0 +2013,8,4,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-6,0,1325,-17,0,0 +2013,9,4,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,947,-11,0,1103,-16,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,53,1,945,44,1,0 +2013,5,10,5,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,-3,0,1500,23,1,0 +2013,9,5,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,15,1,2135,12,0,0 +2013,6,17,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,859,-4,0,954,-5,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,850,15,1,1415,23,1,0 +2013,5,14,2,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,37,1,2015,37,1,0 +2013,6,21,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,232,1,1735,231,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1200,5,0,1332,0,0,0 +2013,6,23,7,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,19,1,930,13,0,0 +2013,10,3,4,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1015,9,0,1259,5,0,0 +2013,5,8,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,-10,0,739,-19,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,815,0,,1125,0,1,1 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,9,0,1150,8,0,0 +2013,4,23,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1515,8,0,1555,10,0,0 +2013,6,21,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,92,1,2220,77,1,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,942,-7,0,1551,-21,0,0 +2013,9,26,4,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,935,-5,0,1420,-10,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,600,1,0,1115,5,0,0 +2013,4,25,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,700,-2,0,810,6,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,-1,0,1627,-3,0,0 +2013,10,10,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,45,1,2125,34,1,0 +2013,4,8,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-6,0,1415,-13,0,0 +2013,5,6,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1115,1,0,1230,-5,0,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2050,85,1,2140,98,1,0 +2013,4,7,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,606,-9,0,1435,-27,0,0 +2013,6,24,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1930,92,1,2153,69,1,0 +2013,10,4,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1513,-2,0,1637,-7,0,0 +2013,10,27,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1605,-4,0,1753,-14,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1645,0,0,1857,-26,0,0 +2013,8,13,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1543,98,1,2359,73,1,0 +2013,5,28,2,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-6,0,1029,-10,0,0 +2013,4,11,4,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1600,-5,0,1705,-7,0,0 +2013,4,20,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1341,267,1,1646,235,1,0 +2013,8,14,3,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1645,73,1,1834,72,1,0 +2013,8,6,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-7,0,1015,-3,0,0 +2013,5,5,7,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1945,16,1,50,10,0,0 +2013,5,27,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1135,-1,0,1300,-11,0,0 +2013,8,5,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-3,0,1340,-10,0,0 +2013,9,28,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,910,-6,0,1450,-25,0,0 +2013,10,11,5,EV,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,843,-10,0,1003,-6,0,0 +2013,10,9,3,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,700,-4,0,840,-16,0,0 +2013,6,5,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,800,-1,0,929,2,0,0 +2013,10,25,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1343,7,0,1514,0,0,0 +2013,4,4,4,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,905,-3,0,1215,19,1,0 +2013,5,3,5,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,810,0,0,1035,-1,0,0 +2013,8,18,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,736,-3,0,904,-15,0,0 +2013,10,19,6,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1056,19,1,1228,17,1,0 +2013,8,20,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,27,1,14,34,1,0 +2013,7,9,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-8,0,1451,-6,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,-9,0,2107,-17,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,20,1,1310,2,0,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-6,0,1915,10,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,11,0,1023,19,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,11,0,2357,21,1,0 +2013,7,7,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1113,-7,0,0 +2013,4,9,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,0,,753,0,1,1 +2013,8,26,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1350,-6,0,1641,-12,0,0 +2013,5,18,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,825,11,0,1030,12,0,0 +2013,10,8,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1610,-6,0,1647,-8,0,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1425,-5,0,1545,-10,0,0 +2013,7,17,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-5,0,1012,2,0,0 +2013,9,28,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,0,0,1635,39,1,0 +2013,5,9,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,2125,-2,0,2155,-15,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1115,7,0,1158,1,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1820,-5,0,2040,-7,0,0 +2013,5,27,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,2040,-3,0,2130,-1,0,0 +2013,10,30,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2043,58,1,2157,48,1,0 +2013,6,19,3,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,919,10,0,1059,3,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,-3,0,1550,-10,0,0 +2013,7,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,-3,0,1015,-6,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,747,-6,0,1254,-39,0,0 +2013,4,21,7,9E,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1630,-4,0,1859,-1,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,-2,0,755,-4,0,0 +2013,7,4,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-6,0,623,-11,0,0 +2013,5,16,4,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1909,-6,0,2235,8,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,-1,0,1115,-6,0,0 +2013,10,17,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,618,31,1,659,40,1,0 +2013,6,10,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,0,,2049,0,1,1 +2013,7,19,5,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,1755,26,1,1849,22,1,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1225,7,0,1349,1,0,0 +2013,7,27,6,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,0,0,1820,-2,0,0 +2013,6,30,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,6,0,1318,-12,0,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,802,0,0,1103,-21,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1055,-2,0,1200,-7,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-10,0,2125,26,1,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,19,1,2305,2,0,0 +2013,5,16,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1205,2,0,1305,3,0,0 +2013,8,2,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2145,0,0,605,-21,0,0 +2013,8,8,4,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,545,-1,0,845,7,0,0 +2013,4,30,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-3,0,1315,-8,0,0 +2013,8,4,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1810,-3,0,1845,-14,0,0 +2013,9,19,4,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,-2,0,1340,-15,0,0 +2013,7,17,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,741,-28,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1915,7,0,2049,4,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1739,-2,0,1921,-13,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1715,33,1,2020,30,1,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1015,4,0,1440,-17,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1645,4,0,1850,15,1,0 +2013,9,12,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,0,0,1550,-7,0,0 +2013,7,28,7,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,-1,0,2135,-7,0,0 +2013,10,10,4,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1445,-2,0,1727,-6,0,0 +2013,8,24,6,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1217,-2,0,1301,-8,0,0 +2013,5,28,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1126,2,0,1425,-15,0,0 +2013,10,18,5,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,0,0,2248,44,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,-2,0,1235,-6,0,0 +2013,8,25,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,815,-5,0,935,0,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1425,8,0,1731,16,1,0 +2013,4,26,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1345,-16,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1346,0,0,1525,-5,0,0 +2013,6,20,4,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,2105,13,0,2355,10,0,0 +2013,7,23,2,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1540,94,1,1825,88,1,0 +2013,5,7,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,0,0,1125,0,0,0 +2013,5,9,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,605,-5,0,755,-21,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1930,7,0,2230,-10,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-2,0,1453,-4,0,0 +2013,7,18,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-6,0,1042,-6,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,940,1,0,1119,-5,0,0 +2013,5,14,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,755,18,1,920,15,1,0 +2013,5,15,3,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1800,-1,0,2025,-13,0,0 +2013,4,5,5,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-8,0,917,-3,0,0 +2013,5,22,3,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1415,0,0,1718,-4,0,0 +2013,7,8,1,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1144,9,0,1400,-3,0,0 +2013,10,14,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-1,0,1124,-1,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,-5,0,1425,-11,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1820,-2,0,2040,-12,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,15,1,1530,17,1,0 +2013,6,26,3,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1549,-3,0,1724,-7,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1725,40,1,1855,52,1,0 +2013,5,31,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1724,88,1,1905,69,1,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2005,-5,0,2142,-18,0,0 +2013,8,22,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,720,-6,0,926,-13,0,0 +2013,10,20,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-5,0,1335,-12,0,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2210,-2,0,102,-6,0,0 +2013,9,13,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,910,-6,0,1013,-13,0,0 +2013,5,24,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,0,0,1825,-9,0,0 +2013,7,11,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-6,0,859,-11,0,0 +2013,8,26,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1920,8,0,2050,5,0,0 +2013,9,1,7,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,-4,0,2339,-22,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1205,-2,0,1345,-4,0,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1925,4,0,2230,-8,0,0 +2013,5,3,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1120,120,1,1235,117,1,0 +2013,8,30,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2047,15,1,2159,12,0,0 +2013,4,20,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,-6,0,1545,-15,0,0 +2013,6,7,5,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1115,-5,0,1409,-35,0,0 +2013,5,29,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,2,0,1726,6,0,0 +2013,10,21,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,-6,0,1659,-11,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,700,-4,0,845,-13,0,0 +2013,5,28,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1120,-3,0,1456,-4,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2000,12,0,2210,-3,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1105,-1,0,1355,-6,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-3,0,1207,-9,0,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,840,2,0,935,-6,0,0 +2013,10,5,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1700,18,1,1945,9,0,0 +2013,7,19,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1215,13,0,1310,-2,0,0 +2013,9,11,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1627,-4,0,1905,8,0,0 +2013,10,26,6,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,956,-5,0,1309,-16,0,0 +2013,8,18,7,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-1,0,626,-7,0,0 +2013,4,28,7,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,24,1,945,17,1,0 +2013,7,21,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1805,103,1,1944,89,1,0 +2013,8,18,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,607,-4,0,1402,16,1,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1320,-2,0,1450,-11,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,918,-1,0,0 +2013,7,26,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1419,0,0,1559,19,1,0 +2013,10,31,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,0,0,1355,3,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,820,30,1,1030,25,1,0 +2013,10,8,2,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1000,-4,0,1335,-4,0,0 +2013,6,23,7,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,548,14,0,705,-1,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,810,-4,0,1013,-1,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1317,-2,0,1434,6,0,0 +2013,4,4,4,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1415,-9,0,1531,-24,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,2125,-2,0,50,0,0,0 +2013,7,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,903,-5,0,937,0,0,0 +2013,4,18,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1540,20,1,1713,9,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1525,10,0,1805,8,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1119,-4,0,1304,-17,0,0 +2013,9,28,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,735,-6,0,848,-10,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1015,3,0,1440,-3,0,0 +2013,5,12,7,9E,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,940,-6,0,1110,-19,0,0 +2013,6,17,1,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,-2,0,2113,-8,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,740,-1,0,840,-13,0,0 +2013,10,6,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-3,0,1130,-10,0,0 +2013,6,25,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1000,-7,0,1235,-16,0,0 +2013,9,2,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1410,35,1,1525,34,1,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1610,17,1,2125,7,0,0 +2013,10,31,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1025,-1,0,1140,-20,0,0 +2013,9,17,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,8,0,2126,12,0,0 +2013,6,2,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1835,17,1,2048,4,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1040,63,1,1309,59,1,0 +2013,6,20,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,-3,0,1622,-7,0,0 +2013,4,6,6,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-3,0,1320,-10,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1610,-2,0,1950,3,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1025,-4,0,1238,-6,0,0 +2013,5,17,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,-3,0,1254,-6,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,-3,0,1005,-9,0,0 +2013,5,6,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-8,0,1435,-30,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1857,15,1,2151,-2,0,0 +2013,5,9,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1907,-9,0,2151,-8,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,600,2,0,822,-1,0,0 +2013,9,27,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1105,25,1,1115,31,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1535,-5,0,1648,-15,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2025,92,1,2150,94,1,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,-7,0,2340,-6,0,0 +2013,9,22,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1520,16,1,1705,4,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,16,1,2135,11,0,0 +2013,10,29,2,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,11,0,1504,1,0,0 +2013,5,7,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1435,-6,0,1635,-4,0,0 +2013,7,6,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,61,1,1930,65,1,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1905,45,1,2130,48,1,0 +2013,4,29,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1855,-3,0,2253,-15,0,0 +2013,4,11,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1145,3,0,1330,-8,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,600,-5,0,755,-12,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,-4,0,1545,-11,0,0 +2013,10,8,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1936,11,0,0 +2013,9,9,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,750,4,0,920,0,0,0 +2013,10,6,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1030,-5,0,1614,-2,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1405,21,1,1840,-7,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,12,0,2230,6,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1940,0,0,1958,-11,0,0 +2013,9,9,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,-5,0,1000,0,0,0 +2013,8,6,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,14,0,1821,3,0,0 +2013,4,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1008,0,0,1413,8,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1940,42,1,2301,76,1,0 +2013,6,22,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1956,-12,0,2304,-24,0,0 +2013,5,31,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1144,-12,0,1334,-30,0,0 +2013,8,3,6,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-8,0,1752,-18,0,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,950,1,0,1230,0,0,0 +2013,8,23,5,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-8,0,1122,-9,0,0 +2013,5,26,7,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,835,0,0,1107,-9,0,0 +2013,7,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-2,0,905,-20,0,0 +2013,9,9,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1024,13,0,1413,-3,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,846,-5,0,1122,25,1,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,845,-5,0,1040,-4,0,0 +2013,4,24,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,947,-4,0,0 +2013,5,1,3,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,655,0,0,935,-1,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2215,9,0,2350,17,1,0 +2013,6,9,7,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1146,64,1,1358,48,1,0 +2013,10,20,7,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1152,1,0,2005,-2,0,0 +2013,9,15,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1910,25,1,2015,20,1,0 +2013,7,1,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,715,-7,0,1159,-23,0,0 +2013,9,14,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,0,0,834,2,0,0 +2013,8,23,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1408,-2,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1027,-2,0,1232,-9,0,0 +2013,10,4,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,-5,0,2117,-13,0,0 +2013,5,1,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1800,-7,0,2035,-3,0,0 +2013,9,2,1,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1310,-4,0,1355,-17,0,0 +2013,6,23,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1523,48,1,1637,87,1,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,-4,0,2332,-22,0,0 +2013,5,1,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-4,0,1223,-6,0,0 +2013,9,6,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,62,1,1920,64,1,0 +2013,8,1,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1550,4,0,1710,5,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1129,0,0,1302,3,0,0 +2013,4,3,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-10,0,2225,-10,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2025,0,0,2350,-42,0,0 +2013,6,15,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-5,0,1405,-16,0,0 +2013,6,4,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,849,-5,0,930,-13,0,0 +2013,7,19,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2000,76,1,2258,67,1,0 +2013,5,12,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-6,0,1325,-13,0,0 +2013,10,10,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,854,-4,0,1014,-8,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,0,0,2240,-20,0,0 +2013,5,1,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,722,-7,0,1010,-8,0,0 +2013,10,27,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1709,-11,0,1759,-15,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1959,14,0,2156,4,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,645,43,1,919,35,1,0 +2013,5,18,6,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,24,1,1833,41,1,0 +2013,9,9,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,755,-2,0,1036,15,1,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,8,0,1110,12,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,-5,0,31,-24,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,846,-2,0,1048,6,0,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1232,-3,0,1530,-2,0,0 +2013,8,2,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1005,2,0,1135,-6,0,0 +2013,5,7,2,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1815,-6,0,2045,5,0,0 +2013,5,1,3,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,199,1,1846,189,1,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,7,0,1738,-6,0,0 +2013,7,19,5,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1546,0,,1553,0,1,1 +2013,10,2,3,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1524,33,1,1647,28,1,0 +2013,6,2,7,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1154,3,0,1359,-12,0,0 +2013,10,10,4,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1625,27,1,1953,-11,0,0 +2013,10,5,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1525,-2,0,1902,22,1,0 +2013,10,12,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,750,-6,0,851,-19,0,0 +2013,10,19,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1420,8,0,1610,23,1,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,650,-7,0,848,9,0,0 +2013,10,23,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1550,3,0,1735,-4,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1701,4,0,1833,-13,0,0 +2013,8,6,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,2010,-1,0,2020,-6,0,0 +2013,6,26,3,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2216,1,0,715,2,0,0 +2013,5,17,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,840,11,0,900,0,0,0 +2013,8,20,2,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1010,-7,0,1322,-17,0,0 +2013,9,29,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-4,0,1545,-17,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1805,-4,0,1940,-12,0,0 +2013,4,9,2,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,7,0,2034,3,0,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1317,-2,0,1527,-3,0,0 +2013,9,3,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-3,0,1917,-1,0,0 +2013,10,31,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-7,0,945,27,1,0 +2013,7,4,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1559,-3,0,1624,-6,0,0 +2013,9,6,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,-2,0,1405,-8,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2130,60,1,2340,53,1,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,4,0,1747,21,1,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1420,25,1,1555,16,1,0 +2013,4,4,4,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-6,0,1216,-24,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,843,79,1,1531,61,1,0 +2013,4,1,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,5,0,1117,12,0,0 +2013,9,9,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1811,-4,0,2107,-11,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1700,9,0,2130,4,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2005,7,0,2305,0,0,0 +2013,10,24,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,800,-8,0,936,-10,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1732,3,0,2012,-19,0,0 +2013,10,14,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,-2,0,1525,22,1,0 +2013,10,8,2,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1345,-2,0,1640,4,0,0 +2013,7,10,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,-5,0,920,1,0,0 +2013,4,16,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-6,0,1634,-39,0,0 +2013,5,20,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-6,0,640,-11,0,0 +2013,6,6,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-6,0,2237,-11,0,0 +2013,4,8,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,855,-5,0,946,-4,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1622,3,0,1740,51,1,0 +2013,5,12,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-2,0,1405,2,0,0 +2013,10,1,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,935,-1,0,1050,-2,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,3,0,1829,-13,0,0 +2013,8,29,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,600,-1,0,819,0,0,0 +2013,9,15,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-6,0,2033,-8,0,0 +2013,7,11,4,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1000,-5,0,1145,-9,0,0 +2013,6,6,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2039,-1,0,2316,-4,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1921,-3,0,2242,17,1,0 +2013,6,27,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,948,51,1,1045,34,1,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1642,15,1,1753,14,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,920,-2,0,1010,-6,0,0 +2013,6,23,7,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-8,0,1634,18,1,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,725,-2,0,820,-7,0,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,825,-5,0,1112,-19,0,0 +2013,8,16,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,920,-2,0,1040,3,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1245,-1,0,1410,-2,0,0 +2013,9,27,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-7,0,1248,-5,0,0 +2013,10,19,6,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,945,1,0,0 +2013,9,23,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1658,-5,0,1755,-15,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1826,3,0,2043,1,0,0 +2013,10,27,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,935,-7,0,1009,-12,0,0 +2013,5,20,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1638,121,1,1942,137,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1341,-4,0,1453,-13,0,0 +2013,10,2,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-6,0,931,-3,0,0 +2013,8,10,6,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,0,0,1951,0,0,0 +2013,7,8,1,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1700,-2,0,1844,-4,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2240,-7,0,112,-3,0,0 +2013,9,20,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1330,-7,0,1439,-20,0,0 +2013,6,11,2,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1539,11,0,1835,10,0,0 +2013,4,12,5,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-4,0,1159,16,1,0 +2013,10,2,3,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1654,-2,0,1851,-18,0,0 +2013,6,8,6,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,730,39,1,850,19,1,0 +2013,8,3,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1257,-8,0,1427,-23,0,0 +2013,6,15,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2247,-14,0,729,-61,0,0 +2013,5,17,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1045,6,0,1201,1,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,-5,0,1642,3,0,0 +2013,5,12,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1809,-2,0,1935,-6,0,0 +2013,10,7,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1228,262,1,1417,293,1,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,750,-3,0,1015,-18,0,0 +2013,4,26,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,956,-17,0,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1855,26,1,2222,8,0,0 +2013,7,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,930,-5,0,1054,-15,0,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1330,64,1,1446,66,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,-2,0,1005,-9,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,825,25,1,940,16,1,0 +2013,5,18,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,605,-2,0,758,-18,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1505,6,0,1750,6,0,0 +2013,5,1,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1256,-7,0,1434,-23,0,0 +2013,6,9,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,559,-9,0,804,-31,0,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,47,1,1710,43,1,0 +2013,7,31,3,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1010,27,1,1245,43,1,0 +2013,9,7,6,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,855,-4,0,1025,-34,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,5,0,2217,-5,0,0 +2013,9,27,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1737,-5,0,1928,-13,0,0 +2013,8,31,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,930,5,0,1045,-5,0,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,710,-3,0,850,-12,0,0 +2013,6,4,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,734,31,1,848,25,1,0 +2013,5,20,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,743,-4,0,0 +2013,7,9,2,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,730,31,1,945,37,1,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2118,0,0,2344,-13,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1435,9,0,1558,9,0,0 +2013,10,16,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1355,0,0,1625,-2,0,0 +2013,8,17,6,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,925,-3,0,1750,-2,0,0 +2013,8,13,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1020,0,0,1140,-9,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,935,-4,0,1100,-4,0,0 +2013,4,19,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,5,0,1330,-1,0,0 +2013,9,20,5,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2050,-10,0,2235,-24,0,0 +2013,9,12,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1643,-12,0,1815,-3,0,0 +2013,8,15,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1640,1,0,1730,-9,0,0 +2013,6,27,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-6,0,1310,-14,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1623,17,1,100,-9,0,0 +2013,8,9,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,3,0,2215,-12,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,840,2,0,1115,-6,0,0 +2013,5,28,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1740,-7,0,2105,-4,0,0 +2013,10,6,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1747,155,1,1934,184,1,0 +2013,4,22,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-2,0,1005,-24,0,0 +2013,9,12,4,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1730,38,1,2005,38,1,0 +2013,9,30,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,720,-1,0,845,1,0,0 +2013,7,7,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-1,0,1645,-11,0,0 +2013,10,7,1,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,605,-5,0,755,-16,0,0 +2013,9,2,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,-1,0,936,3,0,0 +2013,8,17,6,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,46,-5,0,606,-7,0,0 +2013,10,3,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,38,1,1405,48,1,0 +2013,5,31,5,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,610,2,0,737,27,1,0 +2013,7,28,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,45,1,2153,42,1,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2217,43,1,2359,22,1,0 +2013,5,22,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1106,-5,0,1203,-22,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1740,-2,0,2100,9,0,0 +2013,10,7,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-3,0,1637,-6,0,0 +2013,6,3,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-5,0,1604,-17,0,0 +2013,7,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-1,0,823,2,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1010,69,1,1305,61,1,0 +2013,5,14,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,705,-8,0,1223,-12,0,0 +2013,4,1,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1500,-3,0,1738,17,1,0 +2013,6,13,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-3,0,1222,-1,0,0 +2013,10,6,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11042,Cleveland-Hopkins International,Cleveland,OH,1100,59,1,1424,42,1,0 +2013,9,22,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-11,0,2035,-15,0,0 +2013,7,17,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1401,-14,0,1530,-1,0,0 +2013,7,7,7,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,5,0,1515,-5,0,0 +2013,7,7,7,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,-8,0,1755,-2,0,0 +2013,7,16,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,8,0,844,13,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1150,5,0,1445,-10,0,0 +2013,5,17,5,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,925,-3,0,1300,-13,0,0 +2013,10,19,6,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1845,-18,0,2138,-50,0,0 +2013,4,28,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1602,0,0,2207,-18,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,900,-2,0,1035,-16,0,0 +2013,7,4,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-9,0,1740,-13,0,0 +2013,8,31,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,915,6,0,1150,2,0,0 +2013,10,24,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1759,-2,0,2053,-16,0,0 +2013,8,31,6,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1735,-10,0,2048,-21,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,640,-7,0,1025,-4,0,0 +2013,4,15,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-3,0,913,-5,0,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1815,-2,0,2340,-4,0,0 +2013,7,31,3,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1818,-4,0,2015,30,1,0 +2013,6,4,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1150,-6,0,1305,-2,0,0 +2013,9,15,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,11,0,1617,-1,0,0 +2013,7,4,4,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,625,-6,0,926,-22,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1405,-3,0,1645,-8,0,0 +2013,9,13,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1803,-4,0,0 +2013,8,10,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,925,-3,0,1153,-15,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2045,15,1,2330,15,1,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-1,0,1737,1,0,0 +2013,9,4,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,739,7,0,1036,7,0,0 +2013,10,22,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,545,-2,0,1140,-16,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,645,-1,0,915,-14,0,0 +2013,4,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,22,1,845,4,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,635,-5,0,745,-1,0,0 +2013,4,25,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,705,2,0,845,-9,0,0 +2013,8,13,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,0,0,1220,-18,0,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-3,0,1441,-15,0,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,640,4,0,1200,-10,0,0 +2013,6,10,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1135,2,0,1300,3,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1730,107,1,1955,87,1,0 +2013,6,21,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-9,0,900,-11,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,7,0,1407,-2,0,0 +2013,10,20,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1200,-3,0,1305,-11,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1420,-5,0,1617,-20,0,0 +2013,5,7,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1101,-15,0,0 +2013,6,16,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1755,19,1,1855,15,1,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1955,0,0,2325,-17,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1830,3,0,2035,1,0,0 +2013,4,9,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1127,-10,0,0 +2013,5,1,3,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1100,-3,0,1310,-15,0,0 +2013,4,13,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,730,4,0,916,-10,0,0 +2013,6,17,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,550,10,0,715,11,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1500,-2,0,1900,-3,0,0 +2013,8,4,7,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,647,-3,0,950,-1,0,0 +2013,9,18,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,755,-8,0,1035,0,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-7,0,1758,-6,0,0 +2013,6,29,6,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,2030,21,1,2154,-4,0,0 +2013,8,15,4,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,545,-1,0,715,-5,0,0 +2013,10,9,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1810,4,0,1840,-16,0,0 +2013,7,28,7,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,1340,19,1,1940,-2,0,0 +2013,9,13,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,945,5,0,1100,1,0,0 +2013,5,19,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,1,0,1821,-6,0,0 +2013,10,31,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1750,4,0,2342,-13,0,0 +2013,4,1,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,650,-1,0,755,-13,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2211,5,0,2358,-7,0,0 +2013,7,2,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-2,0,815,-23,0,0 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1848,-2,0,1948,-8,0,0 +2013,9,28,6,FL,13232,Chicago Midway International,Chicago,IL,13244,Memphis International,Memphis,TN,2110,6,0,2238,1,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,146,1,1410,150,1,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,12,0,1820,2,0,0 +2013,6,30,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1603,3,0,1653,-5,0,0 +2013,5,2,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,-4,0,1920,-8,0,0 +2013,6,16,7,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-4,0,1856,-9,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2005,13,0,2206,17,1,0 +2013,5,28,2,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2016,13,0,2157,20,1,0 +2013,4,30,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,9,0,1948,23,1,0 +2013,8,8,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-8,0,1345,-11,0,0 +2013,4,28,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-15,0,1130,2,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,805,7,0,1145,10,0,0 +2013,9,4,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1849,0,0,2137,12,0,0 +2013,8,30,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-7,0,1356,1,0,0 +2013,10,29,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1135,-5,0,1250,-4,0,0 +2013,9,19,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1825,-7,0,2118,-1,0,0 +2013,4,28,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1955,31,1,2115,40,1,0 +2013,4,3,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1720,1,0,1951,8,0,0 +2013,6,27,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-3,0,1636,36,1,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1020,-4,0,1122,-9,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,715,-1,0,810,-11,0,0 +2013,9,2,1,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,4,0,1935,-14,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1808,-3,0,2001,-12,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-3,0,1118,8,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,10,0,1908,9,0,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,929,2,0,1056,-8,0,0 +2013,5,14,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1125,-1,0,1200,-1,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,1,0,40,-20,0,0 +2013,6,14,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-7,0,1050,-8,0,0 +2013,6,13,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1732,2,0,2015,12,0,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2055,-1,0,2320,-1,0,0 +2013,4,25,4,OO,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,814,2,0,0 +2013,10,5,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1425,-3,0,1525,17,1,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1014,-3,0,1135,77,1,0 +2013,8,23,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,830,-7,0,935,-9,0,0 +2013,4,2,2,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1945,-9,0,2243,-17,0,0 +2013,6,19,3,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1255,154,1,1620,150,1,0 +2013,8,14,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1405,8,0,1525,12,0,0 +2013,6,17,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,58,1,1540,46,1,0 +2013,7,31,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,0,0,1040,-9,0,0 +2013,7,11,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,900,70,1,1045,122,1,0 +2013,5,8,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,2005,-8,0,2150,-6,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1905,-2,0,2200,-30,0,0 +2013,4,22,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,2,0,2045,0,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,845,7,0,1106,8,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,805,-10,0,1155,-19,0,0 +2013,8,27,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2052,-5,0,2245,-31,0,0 +2013,5,17,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,9,0,1745,-11,0,0 +2013,5,26,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,815,0,0,930,-3,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1910,0,0,2241,-12,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-2,0,915,-15,0,0 +2013,7,31,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,-3,0,1820,-13,0,0 +2013,4,15,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-5,0,720,3,0,0 +2013,10,12,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1053,-19,0,0 +2013,4,12,5,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,156,1,1915,149,1,0 +2013,9,20,5,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1027,13,0,1328,16,1,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,840,-2,0,1020,-15,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1505,-10,0,1735,-10,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1000,4,0,1435,16,1,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,1,0,1905,-4,0,0 +2013,5,23,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,833,-6,0,946,6,0,0 +2013,8,4,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1850,3,0,2014,-8,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1016,-7,0,1154,2,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1524,213,1,1825,269,1,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2055,78,1,2150,73,1,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1910,47,1,2205,30,1,0 +2013,6,18,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1310,27,1,1511,24,1,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2020,2,0,2345,2,0,0 +2013,10,30,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,719,-3,0,1015,-12,0,0 +2013,10,10,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,21,1,2155,16,1,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-5,0,2140,-13,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1650,22,1,1820,21,1,0 +2013,8,14,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,-2,0,1506,4,0,0 +2013,10,20,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2020,3,0,2145,-5,0,0 +2013,7,17,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1720,-9,0,2000,-2,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-4,0,1154,-15,0,0 +2013,7,18,4,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-9,0,2020,-13,0,0 +2013,8,25,7,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1501,-7,0,1608,-15,0,0 +2013,5,26,7,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1435,-12,0,1710,-32,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,620,-5,0,755,-10,0,0 +2013,4,29,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,710,-4,0,1035,-29,0,0 +2013,10,12,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,645,-5,0,938,-26,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1115,0,0,1815,-10,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,1,0,1910,-27,0,0 +2013,6,20,4,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1723,56,1,2000,44,1,0 +2013,5,2,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1004,9,0,0 +2013,4,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1800,104,1,2130,147,1,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1750,19,1,2315,-1,0,0 +2013,5,12,7,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,-2,0,940,-9,0,0 +2013,10,6,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1455,13,0,1525,13,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,39,1,1820,30,1,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,-3,0,2300,-12,0,0 +2013,7,23,2,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,0,0,1235,1,0,0 +2013,10,4,5,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2015,-8,0,1155,-34,0,0 +2013,5,17,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,12,0,2056,29,1,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1559,44,1,1712,34,1,0 +2013,6,30,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,17,1,915,9,0,0 +2013,8,9,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,86,1,1817,61,1,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1735,160,1,1840,173,1,0 +2013,10,6,7,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,-2,0,1611,-38,0,0 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-1,0,945,-2,0,0 +2013,5,7,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,725,-2,0,935,-25,0,0 +2013,6,11,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,720,0,0,1000,-8,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1319,-5,0,1635,2,0,0 +2013,8,14,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,24,1,1955,12,0,0 +2013,9,1,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,1,0,1203,-6,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1410,84,1,1445,75,1,0 +2013,7,14,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1030,0,0,1145,-5,0,0 +2013,8,17,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1405,7,0,1525,5,0,0 +2013,6,7,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1608,232,1,1815,292,1,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1225,0,0,1502,-2,0,0 +2013,9,14,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,550,-5,0,720,-17,0,0 +2013,4,16,2,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,945,-7,0,1245,-6,0,0 +2013,6,19,3,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1855,2,0,2044,9,0,0 +2013,5,8,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,705,18,1,735,10,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2100,104,1,15,98,1,0 +2013,9,21,6,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1156,-4,0,1519,-11,0,0 +2013,6,8,6,EV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,846,-6,0,1150,-16,0,0 +2013,9,27,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2050,-2,0,500,0,0,0 +2013,10,8,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,710,-10,0,1144,-12,0,0 +2013,6,16,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,835,-3,0,948,-11,0,0 +2013,4,27,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,0,0,1800,6,0,0 +2013,4,25,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1750,37,1,2000,25,1,0 +2013,5,5,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1647,-7,0,1705,10,0,0 +2013,10,30,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1005,9,0,1105,7,0,0 +2013,9,11,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,1340,0,0,1550,-21,0,0 +2013,8,11,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1515,16,1,1650,25,1,0 +2013,7,21,7,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1600,2,0,1940,-6,0,0 +2013,5,27,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1703,15,1,1847,10,0,0 +2013,8,25,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-9,0,2117,-16,0,0 +2013,5,11,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1415,2,0,1535,0,0,0 +2013,7,26,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,-2,0,1425,-1,0,0 +2013,10,18,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-2,0,803,5,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-2,0,1619,-16,0,0 +2013,7,31,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-1,0,2255,4,0,0 +2013,8,16,5,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-7,0,2015,-8,0,0 +2013,6,27,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-6,0,1337,-5,0,0 +2013,10,10,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,-5,0,1931,-12,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1105,32,1,1435,25,1,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2000,0,0,2210,-11,0,0 +2013,5,11,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1125,0,,1210,0,1,1 +2013,7,26,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,25,1,2031,25,1,0 +2013,6,10,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-6,0,1450,-9,0,0 +2013,7,19,5,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1144,5,0,1400,-4,0,0 +2013,4,27,6,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1630,-6,0,1852,-5,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,901,3,0,1231,1,0,0 +2013,7,26,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1925,-5,0,2115,14,0,0 +2013,5,6,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-8,0,1314,-14,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2023,1,0,2205,8,0,0 +2013,4,9,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1945,-4,0,2100,-9,0,0 +2013,4,24,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,-1,0,1820,2,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,62,1,1837,75,1,0 +2013,5,6,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1940,0,0,0 +2013,5,18,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2005,-2,0,2115,-19,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,901,6,0,1231,-4,0,0 +2013,8,8,4,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1456,8,0,1636,2,0,0 +2013,10,8,2,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-6,0,1055,-19,0,0 +2013,7,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1625,19,1,1655,15,1,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,855,4,0,1300,-3,0,0 +2013,7,9,2,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,815,-3,0,1110,-26,0,0 +2013,7,12,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1010,-8,0,1023,-18,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,842,-1,0,1033,1,0,0 +2013,8,7,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1345,-3,0,1620,14,0,0 +2013,8,11,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1406,-1,0,1554,-10,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,58,1,1914,46,1,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1010,-3,0,1219,-2,0,0 +2013,7,21,7,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1034,-2,0,1152,-3,0,0 +2013,6,1,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,24,1,720,7,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,103,1,1310,132,1,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-4,0,2057,-6,0,0 +2013,4,12,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-4,0,1520,-8,0,0 +2013,4,25,4,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1330,-1,0,2147,-8,0,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,830,0,0,1125,18,1,0 +2013,7,16,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,0,0,809,-1,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1815,213,1,2030,213,1,0 +2013,8,26,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,909,-3,0,1022,-4,0,0 +2013,8,5,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1051,-1,0,1333,9,0,0 +2013,6,24,1,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1353,42,1,1520,46,1,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2005,0,0,2255,-5,0,0 +2013,10,12,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1025,-8,0,1130,-23,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,-5,0,1118,-7,0,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1241,86,1,1821,101,1,0 +2013,6,5,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1625,0,0,2054,-18,0,0 +2013,5,24,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,-4,0,1126,-7,0,0 +2013,7,28,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,91,1,1310,86,1,0 +2013,4,14,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1829,-7,0,2039,-4,0,0 +2013,7,29,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-1,0,836,-7,0,0 +2013,10,7,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-8,0,1610,-13,0,0 +2013,4,20,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,365,1,945,337,1,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1635,28,1,1900,-6,0,0 +2013,6,17,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2047,37,1,508,8,0,0 +2013,6,24,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1900,77,1,2025,75,1,0 +2013,4,14,7,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,-7,0,2325,-11,0,0 +2013,5,21,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-3,0,1631,-11,0,0 +2013,6,17,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1726,110,1,1917,100,1,0 +2013,9,23,1,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,636,3,0,932,-8,0,0 +2013,9,30,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1844,-6,0,2000,6,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1810,-1,0,2016,-4,0,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,-2,0,1855,2,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1325,15,1,1435,21,1,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1726,0,,1738,0,1,1 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1046,-5,0,1202,-12,0,0 +2013,4,19,5,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,35,1,1026,21,1,0 +2013,9,22,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1505,2,0,2110,-6,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2000,13,0,2105,22,1,0 +2013,10,10,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1915,111,1,2100,112,1,0 +2013,4,12,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1340,-1,0,1500,-5,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,940,18,1,1100,11,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2140,-1,0,2354,-4,0,0 +2013,4,20,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1405,-4,0,1650,15,1,0 +2013,10,21,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,624,-1,0,859,-17,0,0 +2013,9,30,1,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1119,-4,0,1350,-22,0,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1155,-6,0,1300,-17,0,0 +2013,7,20,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1425,20,1,1815,-2,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1255,-3,0,1400,-2,0,0 +2013,7,10,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,739,-8,0,0 +2013,10,16,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1444,83,1,1544,80,1,0 +2013,9,18,3,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1455,26,1,1625,12,0,0 +2013,6,22,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2000,46,1,2105,39,1,0 +2013,10,8,2,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1100,9,0,1351,-4,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2200,12,0,2322,13,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1610,54,1,1720,40,1,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,950,-1,0,1105,3,0,0 +2013,6,21,5,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,952,4,0,1213,-12,0,0 +2013,7,14,7,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1455,16,1,1600,14,0,0 +2013,10,13,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,-5,0,915,-14,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,-1,0,1210,6,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,41,1,1019,3,0,0 +2013,9,28,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1625,-9,0,1800,-11,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2205,6,0,616,-13,0,0 +2013,6,5,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,-3,0,1655,-18,0,0 +2013,5,8,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,752,-4,0,1022,-20,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1352,-1,0,1551,-13,0,0 +2013,4,4,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1555,-1,0,1715,4,0,0 +2013,8,2,5,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,-5,0,535,-11,0,0 +2013,9,20,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,644,2,0,1507,-25,0,0 +2013,9,16,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-2,0,2059,-5,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2059,17,1,2324,-5,0,0 +2013,4,2,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1230,-6,0,1420,-5,0,0 +2013,10,17,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,-1,0,1455,-1,0,0 +2013,9,27,5,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,700,1,0,730,-4,0,0 +2013,6,27,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1400,39,1,1511,36,1,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,10,0,2335,0,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1526,-3,0,1656,-12,0,0 +2013,9,17,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1237,-31,0,0 +2013,6,14,5,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-3,0,1205,2,0,0 +2013,8,26,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,902,-10,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,103,1,913,102,1,0 +2013,9,15,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1345,12,0,1610,9,0,0 +2013,5,11,6,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1640,5,0,1845,16,1,0 +2013,9,9,1,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2225,-7,0,607,0,0,0 +2013,8,12,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,15,1,2153,11,0,0 +2013,4,3,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,-3,0,1825,2,0,0 +2013,6,30,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1440,1,0,1530,-10,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-3,0,1420,-13,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1850,13,0,2020,2,0,0 +2013,7,11,4,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1357,-1,0,1630,11,0,0 +2013,10,20,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1250,9,0,1440,2,0,0 +2013,4,19,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,38,1,1603,38,1,0 +2013,5,13,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1500,17,1,1605,5,0,0 +2013,6,25,2,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,808,-1,0,1024,-8,0,0 +2013,5,22,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,71,1,1130,69,1,0 +2013,5,20,1,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,610,0,0,800,-19,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1618,8,0,23,-5,0,0 +2013,7,29,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1725,-8,0,1944,-8,0,0 +2013,5,17,5,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1015,-4,0,1620,-10,0,0 +2013,6,17,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1735,11,0,1845,9,0,0 +2013,7,12,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,908,-8,0,1200,-22,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1420,-1,0,1840,-10,0,0 +2013,7,31,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,625,-3,0,1428,-6,0,0 +2013,6,3,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-4,0,1827,-5,0,0 +2013,9,10,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,850,1,0,1210,15,1,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-1,0,828,8,0,0 +2013,6,27,4,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-5,0,918,-2,0,0 +2013,6,10,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,5,0,1645,11,0,0 +2013,6,5,3,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-11,0,1316,-16,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,-1,0,2112,1,0,0 +2013,9,18,3,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2035,-5,0,2220,-15,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-1,0,1830,6,0,0 +2013,5,13,1,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,725,-5,0,1015,4,0,0 +2013,9,5,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-1,0,1914,-15,0,0 +2013,4,23,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,605,-2,0,729,-6,0,0 +2013,8,30,5,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1518,-1,0,1628,55,1,0 +2013,7,4,4,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,825,2,0,1310,-10,0,0 +2013,7,26,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,605,6,0,730,5,0,0 +2013,6,13,4,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1315,3,0,1910,-19,0,0 +2013,8,16,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,2145,29,1,37,22,1,0 +2013,6,21,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-5,0,1828,14,0,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,653,-6,0,1003,-10,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1655,5,0,1940,-13,0,0 +2013,6,6,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-10,0,906,19,1,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,2,0,1725,-8,0,0 +2013,7,16,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,-3,0,1522,-12,0,0 +2013,8,31,6,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,-7,0,1513,-10,0,0 +2013,10,7,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,37,1,1910,30,1,0 +2013,7,23,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1130,9,0,1720,-3,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,35,1,1546,24,1,0 +2013,5,4,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1400,9,0,1606,7,0,0 +2013,9,3,2,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,730,-8,0,948,-4,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,-4,0,1311,-4,0,0 +2013,8,7,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-4,0,1900,9,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1630,2,0,2325,4,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,18,1,1155,22,1,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1726,-3,0,1919,-14,0,0 +2013,4,11,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,945,-5,0,1129,-24,0,0 +2013,4,26,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,11,0,910,30,1,0 +2013,7,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1253,27,1,1421,31,1,0 +2013,4,4,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,940,-3,0,1225,0,0,0 +2013,7,18,4,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,1,0,920,-5,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-5,0,1310,2,0,0 +2013,7,29,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,0,0,950,-6,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,846,-3,0,1123,-17,0,0 +2013,7,19,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,0,,2220,0,1,1 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-2,0,1636,-16,0,0 +2013,10,10,4,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1705,5,0,1912,26,1,0 +2013,9,10,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2005,41,1,2130,30,1,0 +2013,8,6,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1715,-9,0,2122,-18,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,2025,-4,0,2305,-6,0,0 +2013,6,21,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-7,0,1700,-6,0,0 +2013,9,4,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1230,54,1,1405,30,1,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1315,13,0,1405,3,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1541,0,0,2028,-13,0,0 +2013,4,16,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,732,-9,0,817,-17,0,0 +2013,7,20,6,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,756,0,0,1008,-6,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,955,-2,0,1153,-8,0,0 +2013,5,19,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1606,19,1,1831,11,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,29,1,1633,36,1,0 +2013,10,27,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-8,0,1520,-26,0,0 +2013,5,25,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,51,1,1005,52,1,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,-4,0,905,-14,0,0 +2013,10,17,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,7,0,1419,17,1,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,-3,0,955,-17,0,0 +2013,6,25,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,78,1,1400,85,1,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,600,-1,0,805,-11,0,0 +2013,4,23,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,2006,-20,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1920,14,0,2116,-3,0,0 +2013,6,3,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1510,-10,0,1625,-15,0,0 +2013,8,29,4,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,120,1,2343,117,1,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1510,-2,0,1640,2,0,0 +2013,5,9,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,956,14,0,1619,4,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1616,4,0,1652,-5,0,0 +2013,6,17,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,22,1,1810,1,0,0 +2013,7,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,610,-1,0,655,-12,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1005,1,0,1250,-1,0,0 +2013,4,3,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1215,12,0,1310,11,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-4,0,935,17,1,0 +2013,8,31,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1650,-11,0,1757,-27,0,0 +2013,10,9,3,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,39,1,2124,16,1,0 +2013,8,26,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1122,-3,0,1710,19,1,0 +2013,6,15,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,64,1,1655,62,1,0 +2013,4,14,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,20,1,2120,39,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,734,-6,0,925,-9,0,0 +2013,10,18,5,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1230,-12,0,1432,-12,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,-2,0,1705,-17,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1445,-3,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,10,0,1120,11,0,0 +2013,7,17,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1431,29,1,1605,32,1,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,835,-1,0,1000,1,0,0 +2013,8,15,4,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,725,13,0,925,14,0,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,735,-3,0,915,-19,0,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2100,-3,0,2220,3,0,0 +2013,9,27,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1210,4,0,1445,5,0,0 +2013,4,17,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,212,1,1925,221,1,0 +2013,6,9,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,1,0,1820,13,0,0 +2013,9,12,4,UA,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1623,0,0,1921,-7,0,0 +2013,8,4,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-2,0,1302,0,0,0 +2013,10,5,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-3,0,1635,-9,0,0 +2013,6,5,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1440,-6,0,2220,4,0,0 +2013,7,18,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,32,1,2020,23,1,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1800,4,0,2350,5,0,0 +2013,7,9,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-5,0,2021,1,0,0 +2013,4,17,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,-6,0,1733,-3,0,0 +2013,9,9,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1825,-5,0,1952,0,0,0 +2013,9,10,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,-4,0,2200,-8,0,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2125,-8,0,10,-19,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2145,158,1,50,146,1,0 +2013,4,28,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,644,-9,0,0 +2013,7,27,6,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1150,-4,0,1325,-14,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2130,-1,0,2311,-3,0,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,10529,Bradley International,Hartford,CT,2355,4,0,810,10,0,0 +2013,5,6,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1030,-7,0,1210,-14,0,0 +2013,10,16,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-3,0,2257,-10,0,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1445,12,0,1605,7,0,0 +2013,6,7,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-8,0,920,-19,0,0 +2013,6,26,3,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1430,343,1,1555,335,1,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1955,11,0,2200,8,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2005,111,1,2305,132,1,0 +2013,10,2,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1910,-3,0,2015,-8,0,0 +2013,8,6,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,911,-6,0,1110,-2,0,0 +2013,10,23,3,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1110,0,0,1230,-11,0,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1745,33,1,1935,29,1,0 +2013,5,10,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,133,1,1300,135,1,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,16,1,1314,1,0,0 +2013,7,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,-7,0,1042,-7,0,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,727,-1,0,900,-7,0,0 +2013,8,21,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1705,0,0,1850,-1,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,-3,0,2155,-2,0,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,710,-3,0,840,-9,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1246,-3,0,1700,-24,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,820,101,1,1020,102,1,0 +2013,5,27,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,3,0,2225,-1,0,0 +2013,5,16,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-5,0,1117,-7,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,10,0,1158,14,0,0 +2013,6,7,5,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,23,1,1755,36,1,0 +2013,10,17,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-6,0,1049,-23,0,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-5,0,935,-7,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-1,0,1115,-4,0,0 +2013,6,4,2,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,-5,0,2236,-18,0,0 +2013,10,24,4,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1804,-11,0,1930,-8,0,0 +2013,9,18,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-4,0,900,-23,0,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1835,-6,0,2135,-17,0,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,9,0,1150,4,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-5,0,915,-11,0,0 +2013,5,11,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,740,56,1,1033,72,1,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2221,0,0,702,-23,0,0 +2013,5,29,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,39,1,2043,39,1,0 +2013,10,6,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1055,-3,0,1205,-8,0,0 +2013,7,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1940,7,0,2215,2,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,905,-4,0,1032,-4,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1935,-3,0,2159,-15,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,-1,0,725,-16,0,0 +2013,7,22,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1630,44,1,1735,39,1,0 +2013,6,15,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,938,-10,0,1125,-32,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,-4,0,1906,-6,0,0 +2013,6,8,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,-6,0,852,-15,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1347,-2,0,1531,-15,0,0 +2013,6,20,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1047,-2,0,1505,-10,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,57,1,1445,58,1,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,-4,0,2112,-4,0,0 +2013,9,24,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,700,-1,0,840,3,0,0 +2013,10,8,2,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1225,8,0,1446,-4,0,0 +2013,6,22,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1435,-4,0,1545,-12,0,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,747,87,1,1623,95,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,61,1,1339,43,1,0 +2013,6,18,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1359,74,1,2159,61,1,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1435,-4,0,1755,-8,0,0 +2013,5,2,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,545,-6,0,759,-25,0,0 +2013,5,19,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1925,106,1,2123,126,1,0 +2013,6,15,6,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1835,-5,0,2126,-19,0,0 +2013,8,1,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,935,-8,0,950,-9,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1630,80,1,1755,116,1,0 +2013,7,7,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,1,0,1040,-15,0,0 +2013,10,28,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,638,-4,0,1225,-11,0,0 +2013,10,17,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1939,52,1,2300,29,1,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,830,9,0,1034,-8,0,0 +2013,7,22,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,816,0,0,929,-10,0,0 +2013,8,3,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,-7,0,913,-17,0,0 +2013,5,14,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,935,0,0,1110,-2,0,0 +2013,8,18,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,-8,0,909,-15,0,0 +2013,7,19,5,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,66,1,1019,39,1,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,740,-2,0,840,-1,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1246,-13,0,1556,-8,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,19,1,1525,19,1,0 +2013,4,1,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,2045,-10,0,2318,-17,0,0 +2013,8,26,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1225,-6,0,1315,-15,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,-5,0,1354,-14,0,0 +2013,4,4,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,-3,0,1630,19,1,0 +2013,4,10,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,-6,0,146,-22,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1100,-1,0,1222,-24,0,0 +2013,6,23,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-5,0,915,-1,0,0 +2013,4,1,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,740,-2,0,1021,-4,0,0 +2013,7,22,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,-6,0,1028,-8,0,0 +2013,5,24,5,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,846,-5,0,1035,4,0,0 +2013,10,14,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1653,-1,0,2005,-20,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1145,-6,0,1340,-9,0,0 +2013,5,27,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,925,0,0,1105,-4,0,0 +2013,10,6,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1330,26,1,1510,5,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1805,8,0,1905,10,0,0 +2013,9,17,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1605,-6,0,1747,-4,0,0 +2013,5,22,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,-2,0,1542,24,1,0 +2013,7,5,5,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,750,0,0,1345,8,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1100,-2,0,1220,-5,0,0 +2013,4,9,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1617,-6,0,1810,-16,0,0 +2013,8,8,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1445,14,0,1846,20,1,0 +2013,7,25,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,940,0,0,1050,-5,0,0 +2013,9,6,5,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1829,0,,1939,0,1,1 +2013,10,16,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,805,-15,0,1608,-67,0,0 +2013,5,24,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1445,29,1,1805,28,1,0 +2013,4,15,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,-9,0,1425,4,0,0 +2013,9,21,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2030,-9,0,2106,-10,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2225,12,0,2340,7,0,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,955,5,0,1455,-3,0,0 +2013,5,24,5,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2209,-5,0,30,-25,0,0 +2013,7,2,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-1,0,1435,-6,0,0 +2013,9,27,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1841,3,0,2010,-6,0,0 +2013,5,16,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-8,0,2031,-1,0,0 +2013,8,26,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1557,-7,0,2020,-11,0,0 +2013,5,26,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-9,0,1635,-22,0,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1005,9,0,1125,-2,0,0 +2013,4,28,7,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,9,0,10,4,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1001,-1,0,1211,-8,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1650,7,0,2035,-1,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,109,1,1642,131,1,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,1,0,2055,-18,0,0 +2013,9,2,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1617,1,0,1913,6,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,17,1,2009,17,1,0 +2013,10,21,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-8,0,1251,4,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,-4,0,2004,15,1,0 +2013,5,10,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,605,-3,0,749,2,0,0 +2013,8,24,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-4,0,1217,-3,0,0 +2013,10,3,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-1,0,1124,-12,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1540,-2,0,1616,-3,0,0 +2013,6,26,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,182,1,1720,200,1,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,750,-4,0,943,-15,0,0 +2013,4,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,855,-2,0,955,-4,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1040,-1,0,1235,-1,0,0 +2013,5,9,4,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,1400,-1,0,1543,-21,0,0 +2013,5,23,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-3,0,1414,-5,0,0 +2013,4,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1620,1,0,1915,-4,0,0 +2013,5,21,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2115,17,1,2210,21,1,0 +2013,6,3,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,5,0,2345,-1,0,0 +2013,4,16,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1400,5,0,1500,5,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1530,-3,0,1735,-1,0,0 +2013,8,7,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-4,0,1621,-23,0,0 +2013,6,30,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,847,-1,0,914,0,0,0 +2013,6,25,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2204,-6,0,2257,-13,0,0 +2013,4,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,847,16,1,1045,26,1,0 +2013,6,19,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,4,0,2152,-7,0,0 +2013,9,21,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-6,0,1311,1,0,0 +2013,8,2,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,37,1,2030,35,1,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1950,41,1,2305,44,1,0 +2013,4,30,2,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1516,2,0,2011,-1,0,0 +2013,5,19,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,605,-2,0,705,-17,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-4,0,913,0,0,0 +2013,4,11,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1505,-1,0,1630,-10,0,0 +2013,9,30,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1645,27,1,1800,14,0,0 +2013,7,14,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1753,-5,0,1935,4,0,0 +2013,10,5,6,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,915,-7,0,945,-15,0,0 +2013,7,4,4,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-6,0,1405,-15,0,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1325,-1,0,1440,-2,0,0 +2013,9,14,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,740,45,1,1537,42,1,0 +2013,4,13,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-5,0,1723,-13,0,0 +2013,9,11,3,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,1,0,1945,-5,0,0 +2013,4,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,18,1,1530,12,0,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1545,-5,0,1650,-16,0,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,841,3,0,1054,2,0,0 +2013,4,5,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1655,57,1,2004,32,1,0 +2013,7,6,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,625,-4,0,745,-15,0,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,720,-4,0,820,-5,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,735,-5,0,1155,-6,0,0 +2013,10,30,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,0,0,610,1,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2037,33,1,30,14,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1800,9,0,1845,9,0,0 +2013,10,5,6,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-3,0,1929,-9,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,-4,0,1204,-11,0,0 +2013,8,8,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1940,5,0,2040,7,0,0 +2013,6,11,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-6,0,2140,-2,0,0 +2013,8,14,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1145,-1,0,1345,-3,0,0 +2013,4,5,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1935,-2,0,2125,-11,0,0 +2013,6,4,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-5,0,910,7,0,0 +2013,10,29,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-6,0,1919,-26,0,0 +2013,10,1,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,700,-6,0,847,-16,0,0 +2013,10,8,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1037,-8,0,1324,-10,0,0 +2013,6,29,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-1,0,848,-6,0,0 +2013,7,10,3,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1400,34,1,1605,39,1,0 +2013,5,12,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-3,0,1115,5,0,0 +2013,5,22,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1659,137,1,1804,125,1,0 +2013,10,1,2,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-7,0,955,-32,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1358,5,0,1642,1,0,0 +2013,8,7,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1745,6,0,2055,-2,0,0 +2013,6,17,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-8,0,629,-8,0,0 +2013,8,28,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1000,-5,0,1115,-13,0,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1415,-2,0,1542,-3,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1350,-7,0,1458,-21,0,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1150,28,1,1350,24,1,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1751,2,0,1926,20,1,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,840,0,0,955,10,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1927,124,1,2041,102,1,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,-1,0,1445,-11,0,0 +2013,9,29,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,618,-6,0,716,-15,0,0 +2013,9,14,6,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,740,-2,0,904,-6,0,0 +2013,8,18,7,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,0,0,1625,-4,0,0 +2013,8,23,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1920,6,0,2254,6,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,-4,0,2001,4,0,0 +2013,4,9,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1115,-8,0,1236,-23,0,0 +2013,7,1,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1120,25,1,2000,45,1,0 +2013,4,14,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,610,-3,0,932,41,1,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,945,2,0,1120,-25,0,0 +2013,5,7,2,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1254,0,0,1740,-19,0,0 +2013,6,15,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1445,-6,0,1605,27,1,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1725,28,1,1855,14,0,0 +2013,10,28,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1100,-6,0,1309,-20,0,0 +2013,5,30,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1512,-1,0,2054,2,0,0 +2013,9,15,7,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1537,-5,0,1728,-39,0,0 +2013,9,29,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1127,36,1,1338,42,1,0 +2013,6,24,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1957,24,1,2259,19,1,0 +2013,10,5,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1229,1,0,1551,2,0,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2015,-4,0,2140,-8,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,9,0,2330,-5,0,0 +2013,5,28,2,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,2,0,830,-10,0,0 +2013,5,14,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,900,-1,0,955,-14,0,0 +2013,9,23,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1552,1,0,1651,-11,0,0 +2013,6,28,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1800,0,,2000,0,1,1 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,925,-1,0,1150,-9,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,0,0,1042,18,1,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,16,1,928,4,0,0 +2013,8,3,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-5,0,726,-14,0,0 +2013,8,19,1,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,191,1,1600,213,1,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1310,0,0,1630,-11,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1940,165,1,2207,155,1,0 +2013,9,8,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1742,1,0,1906,2,0,0 +2013,7,9,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1055,7,0,1150,5,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1925,4,0,2354,36,1,0 +2013,4,8,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1220,-2,0,1544,-7,0,0 +2013,6,2,7,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,25,1,1959,-15,0,0 +2013,8,16,5,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1315,8,0,1505,1,0,0 +2013,7,2,2,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,809,5,0,0 +2013,4,9,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1450,0,0,1635,-17,0,0 +2013,9,30,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,-7,0,955,-29,0,0 +2013,9,30,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-6,0,823,13,0,0 +2013,5,22,3,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-3,0,1817,-11,0,0 +2013,7,12,5,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,700,-2,0,930,27,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1240,-1,0,1345,7,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,50,1,2330,48,1,0 +2013,8,1,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1216,2,0,1814,4,0,0 +2013,7,25,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1007,2,0,1045,1,0,0 +2013,4,22,1,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,6,0,1435,8,0,0 +2013,7,3,3,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1338,10,0,1634,-25,0,0 +2013,5,30,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1554,36,1,1703,30,1,0 +2013,7,31,3,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1455,33,1,1710,20,1,0 +2013,5,5,7,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2315,69,1,735,55,1,0 +2013,7,31,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,0,,859,0,1,1 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,46,1,1459,44,1,0 +2013,8,15,4,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1340,-4,0,1639,5,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1540,2,0,1845,-14,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1617,1,0,1915,-9,0,0 +2013,6,18,2,EV,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,232,1,1525,228,1,0 +2013,10,2,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-6,0,1343,-11,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1355,-4,0,1650,-3,0,0 +2013,9,27,5,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1016,-1,0,1230,-10,0,0 +2013,8,6,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1925,-6,0,2105,-12,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,40,1,2246,52,1,0 +2013,8,11,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1830,2,0,2155,4,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,8,0,2255,-1,0,0 +2013,10,20,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-6,0,747,-7,0,0 +2013,10,11,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,184,1,2215,156,1,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1940,26,1,2045,20,1,0 +2013,7,4,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1235,0,0,1400,-4,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-6,0,2235,8,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1255,-1,0,1659,-7,0,0 +2013,4,14,7,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,14,0,2020,22,1,0 +2013,7,19,5,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1529,17,1,1830,34,1,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1550,-3,0,1640,-2,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1239,-3,0,1801,-12,0,0 +2013,8,24,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,8,0,735,4,0,0 +2013,4,6,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,921,-4,0,1427,-5,0,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1251,1,0,1845,7,0,0 +2013,5,22,3,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-4,0,1355,-9,0,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1100,19,1,1235,12,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,1,0,1735,4,0,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,710,1,0,830,0,0,0 +2013,10,11,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-4,0,1821,-11,0,0 +2013,6,10,1,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-8,0,1917,-14,0,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-4,0,1000,-1,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1759,-4,0,2026,12,0,0 +2013,7,28,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1400,2,0,1636,-1,0,0 +2013,7,20,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,715,-3,0,835,-9,0,0 +2013,7,8,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1145,3,0,1300,-3,0,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,745,-2,0,840,-20,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,0,0,1445,12,0,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1445,4,0,1610,-4,0,0 +2013,4,4,4,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,729,-6,0,0 +2013,5,3,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1045,1,0,1145,-14,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,614,-6,0,729,-7,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1555,135,1,1659,121,1,0 +2013,5,2,4,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-9,0,1123,15,1,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2030,1,0,2140,-6,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,66,1,1255,59,1,0 +2013,4,11,4,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,700,-1,0,1009,-6,0,0 +2013,10,3,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1508,92,1,1648,87,1,0 +2013,5,31,5,9E,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1109,-7,0,1249,7,0,0 +2013,9,17,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,800,1,0,900,-2,0,0 +2013,6,24,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1529,-3,0,1629,-11,0,0 +2013,6,21,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,935,-1,0,1221,-16,0,0 +2013,5,8,3,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,715,-3,0,1534,11,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,9,0,2025,15,1,0 +2013,10,16,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1250,0,0,1606,-6,0,0 +2013,5,19,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,4,0,1628,-6,0,0 +2013,6,16,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,12,0,2152,30,1,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1705,0,0,1925,-6,0,0 +2013,5,8,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,69,1,2305,49,1,0 +2013,4,19,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1835,152,1,2005,139,1,0 +2013,6,22,6,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,11,0,850,13,0,0 +2013,4,27,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-6,0,2041,-19,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,950,7,0,1220,-4,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2005,54,1,2100,56,1,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,0,0,1105,-11,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-1,0,1750,-7,0,0 +2013,7,11,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1419,109,1,1659,109,1,0 +2013,7,25,4,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,5,0,1930,14,0,0 +2013,10,10,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1415,-2,0,2205,-15,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1705,-5,0,1910,24,1,0 +2013,4,30,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2015,-9,0,2032,-19,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2100,-1,0,2225,-1,0,0 +2013,4,1,1,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1359,109,1,1533,99,1,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,64,1,1745,52,1,0 +2013,6,27,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1320,-1,0,1435,2,0,0 +2013,9,13,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,41,1,2125,51,1,0 +2013,7,16,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-5,0,1024,-16,0,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-4,0,1729,-9,0,0 +2013,7,27,6,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2200,23,1,501,34,1,0 +2013,5,15,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2005,10,0,2120,14,0,0 +2013,5,17,5,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-4,0,2350,2,0,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,2,0,1245,-21,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1900,28,1,2040,16,1,0 +2013,10,14,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1237,47,1,1345,34,1,0 +2013,8,30,5,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,923,7,0,1045,-7,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,810,-3,0,1000,-10,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2000,-2,0,2245,-6,0,0 +2013,6,5,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1010,3,0,1125,-7,0,0 +2013,10,29,2,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2119,-7,0,2209,-5,0,0 +2013,9,7,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,-9,0,1231,-18,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,22,1,2329,7,0,0 +2013,10,26,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1040,-3,0,1140,-4,0,0 +2013,9,18,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-6,0,1239,-22,0,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1600,26,1,1725,16,1,0 +2013,5,17,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,7,0,1520,1,0,0 +2013,9,20,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1543,-4,0,1745,-20,0,0 +2013,6,20,4,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1625,-5,0,2010,18,1,0 +2013,8,16,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,-12,0,1735,-13,0,0 +2013,4,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1140,9,0,1400,2,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,741,17,1,1030,12,0,0 +2013,10,3,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,-6,0,1445,-24,0,0 +2013,6,23,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1808,10,0,2000,2,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1930,23,1,2150,22,1,0 +2013,4,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1055,-3,0,1200,-4,0,0 +2013,6,26,3,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,3,0,1230,-5,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,2,0,1204,-5,0,0 +2013,4,5,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1915,27,1,1940,34,1,0 +2013,4,10,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,910,-10,0,1158,-21,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1940,114,1,2245,119,1,0 +2013,10,19,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1923,-4,0,2254,-27,0,0 +2013,6,30,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,720,-3,0,1204,-18,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2134,8,0,44,22,1,0 +2013,7,24,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,-2,0,1721,5,0,0 +2013,5,20,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,0,0,1310,-37,0,0 +2013,9,12,4,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1802,3,0,1917,10,0,0 +2013,7,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1600,59,1,1725,62,1,0 +2013,7,9,2,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1120,9,0,1711,15,1,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1820,-4,0,2040,-7,0,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1935,112,1,2135,86,1,0 +2013,7,4,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1035,-1,0,1200,-15,0,0 +2013,10,22,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-3,0,1340,-2,0,0 +2013,8,1,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-1,0,1755,3,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2250,-2,0,14,-12,0,0 +2013,5,12,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1658,-6,0,2107,-7,0,0 +2013,9,7,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,845,-2,0,1005,-12,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,93,1,40,100,1,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1628,0,,1851,0,1,1 +2013,8,19,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1935,7,0,2105,-1,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1245,8,0,1610,-16,0,0 +2013,8,27,2,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1740,7,0,2045,-2,0,0 +2013,10,17,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,22,1,1632,15,1,0 +2013,9,26,4,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2130,4,0,535,-12,0,0 +2013,7,14,7,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,-19,0,2247,-19,0,0 +2013,4,16,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,33,1,1005,41,1,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,920,39,1,1130,28,1,0 +2013,10,21,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1025,-1,0,1305,-1,0,0 +2013,7,4,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,825,13,0,0 +2013,8,13,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-9,0,1105,1,0,0 +2013,9,5,4,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,751,-3,0,920,-2,0,0 +2013,9,17,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1515,29,1,1735,6,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1610,3,0,1803,11,0,0 +2013,8,19,1,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,827,-9,0,1217,3,0,0 +2013,10,15,2,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,604,1,1038,597,1,0 +2013,7,23,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-2,0,1900,0,0,0 +2013,9,15,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-7,0,1704,-11,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-1,0,1201,1,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1020,3,0,1210,0,0,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1345,1,0,1610,2,0,0 +2013,6,21,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,0,,1223,0,1,1 +2013,6,14,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-4,0,1635,-1,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,-8,0,1000,-18,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1630,-1,0,1855,-1,0,0 +2013,6,19,3,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,615,1,0,830,-12,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2039,0,,2316,0,1,1 +2013,7,26,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1341,-1,0,1651,34,1,0 +2013,6,27,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,855,-5,0,953,-9,0,0 +2013,6,14,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,850,-7,0,924,-5,0,0 +2013,7,13,6,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,-4,0,2215,-11,0,0 +2013,6,26,3,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,840,266,1,1116,273,1,0 +2013,7,24,3,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,700,-3,0,1020,-8,0,0 +2013,4,15,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-3,0,2205,-12,0,0 +2013,10,17,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,41,1,1947,30,1,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,-1,0,1735,6,0,0 +2013,4,22,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-2,0,1520,-22,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2030,-1,0,2259,-6,0,0 +2013,10,27,7,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1640,35,1,1855,13,0,0 +2013,9,21,6,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-1,0,906,-21,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1800,6,0,1855,37,1,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1740,0,0,2007,-22,0,0 +2013,8,14,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,0,,1630,0,1,1 +2013,8,31,6,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-8,0,1306,-12,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,716,-2,0,942,-14,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,820,3,0,1130,-1,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,740,-7,0,931,-9,0,0 +2013,8,8,4,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1120,-8,0,1302,-12,0,0 +2013,10,23,3,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,2,0,2106,-26,0,0 +2013,8,31,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,-4,0,1739,-5,0,0 +2013,9,25,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1930,-6,0,2105,-10,0,0 +2013,9,27,5,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,621,-10,0,721,-16,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,42,1,2148,24,1,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,129,1,20,143,1,0 +2013,10,4,5,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,-1,0,2140,-6,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,706,-8,0,1026,5,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1430,-5,0,1555,-3,0,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1215,-5,0,1430,3,0,0 +2013,4,1,1,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,1,0,1912,-11,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,1,0,1800,1,0,0 +2013,5,5,7,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,710,-10,0,836,-19,0,0 +2013,5,19,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1905,24,1,2020,23,1,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1640,0,0,1914,-15,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,835,-2,0,1100,-1,0,0 +2013,10,13,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,1044,1,0,0 +2013,4,22,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1357,-7,0,1540,-21,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1607,-5,0,2010,-8,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2210,0,0,2341,-8,0,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,-5,0,1033,-19,0,0 +2013,5,24,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,739,-10,0,0 +2013,9,9,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1240,2,0,1800,1,0,0 +2013,8,12,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1835,-5,0,2116,21,1,0 +2013,7,11,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,10,0,1934,11,0,0 +2013,8,13,2,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1245,-8,0,1507,-8,0,0 +2013,10,13,7,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-4,0,1220,2,0,0 +2013,7,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2002,-4,0,2346,10,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,62,1,1420,42,1,0 +2013,5,23,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,2,0,1330,-5,0,0 +2013,9,18,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1418,-13,0,1559,-27,0,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,855,2,0,912,-10,0,0 +2013,8,10,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,655,-3,0,825,-8,0,0 +2013,8,16,5,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1214,-5,0,1313,-13,0,0 +2013,8,3,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-1,0,1854,-4,0,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,910,-1,0,1040,-6,0,0 +2013,8,29,4,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,95,1,1949,68,1,0 +2013,4,11,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,607,124,1,900,111,1,0 +2013,4,6,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1408,17,1,1520,16,1,0 +2013,4,4,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1233,-11,0,0 +2013,4,28,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1529,3,0,1819,1,0,0 +2013,4,14,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,705,-4,0,1030,-18,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,-4,0,2134,-3,0,0 +2013,10,16,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1405,-5,0,1415,-7,0,0 +2013,4,12,5,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,720,56,1,955,45,1,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,2,0,1415,6,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1815,51,1,2030,63,1,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1525,8,0,1749,-5,0,0 +2013,4,25,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,900,-11,0,1005,12,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,750,-2,0,920,-3,0,0 +2013,4,24,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-9,0,1012,2,0,0 +2013,8,3,6,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1914,10,0,2059,32,1,0 +2013,4,25,4,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,24,1,1835,15,1,0 +2013,8,22,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1753,-7,0,1907,-20,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,-1,0,1953,4,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,11,0,2023,-10,0,0 +2013,8,9,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1550,30,1,1804,30,1,0 +2013,5,31,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-6,0,812,-13,0,0 +2013,9,20,5,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,-1,0,2122,-38,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2230,-8,0,640,1,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1720,-2,0,1955,-9,0,0 +2013,6,29,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1505,167,1,1710,167,1,0 +2013,6,11,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1823,0,0,2030,-13,0,0 +2013,6,12,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-10,0,1017,-19,0,0 +2013,5,26,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-5,0,2140,-23,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,64,1,2105,58,1,0 +2013,7,16,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1742,0,,1901,0,1,1 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1909,-4,0,2027,-6,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,910,15,1,1230,11,0,0 +2013,10,16,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1100,-6,0,1220,-13,0,0 +2013,10,23,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,940,0,0,1225,-9,0,0 +2013,10,28,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,638,-9,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,-2,0,2117,-3,0,0 +2013,9,18,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2008,-11,0,2322,-26,0,0 +2013,8,18,7,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,0,0,2115,-13,0,0 +2013,4,29,1,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1516,-7,0,2011,-8,0,0 +2013,10,5,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1540,-4,0,1909,-6,0,0 +2013,8,31,6,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1614,-1,0,1855,1,0,0 +2013,5,6,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,645,-3,0,808,-8,0,0 +2013,6,16,7,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,717,0,0,1043,4,0,0 +2013,8,18,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1115,-6,0,1210,-5,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,755,2,0,915,6,0,0 +2013,5,8,3,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,262,1,2048,232,1,0 +2013,4,17,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1048,-3,0,1154,-5,0,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1950,-2,0,2200,-9,0,0 +2013,10,18,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,855,-22,0,0 +2013,7,22,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,6,0,1650,2,0,0 +2013,4,25,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1530,49,1,1931,41,1,0 +2013,8,9,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1615,-6,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1050,-3,0,1327,-8,0,0 +2013,10,12,6,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1409,7,0,1949,-3,0,0 +2013,6,24,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,35,1,1735,98,1,0 +2013,4,12,5,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,917,-3,0,1020,-1,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1340,0,0,1727,-9,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,1,0,2059,-8,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,-2,0,2114,-8,0,0 +2013,8,2,5,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,-2,0,2357,-13,0,0 +2013,9,1,7,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1655,1,0,2059,-17,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1906,-2,0,2318,-23,0,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,-6,0,2217,1,0,0 +2013,7,26,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1135,-2,0,1255,-5,0,0 +2013,6,29,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,825,-2,0,1420,-1,0,0 +2013,5,10,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1925,-5,0,2219,-2,0,0 +2013,9,18,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,0,0,2152,-14,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1320,148,1,1719,142,1,0 +2013,10,11,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1204,61,1,1235,66,1,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,705,-2,0,1138,-25,0,0 +2013,7,4,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1230,-2,0,1345,0,0,0 +2013,4,5,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1411,10,0,1608,-17,0,0 +2013,4,2,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-7,0,1945,-15,0,0 +2013,6,11,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,0,0,855,3,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1630,108,1,1945,95,1,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1255,1,0,1845,24,1,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,959,-1,0,1020,-12,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,930,-1,0,1115,-14,0,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1935,7,0,2244,-26,0,0 +2013,10,12,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,-10,0,1835,11,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,-5,0,1602,0,0,0 +2013,4,13,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,17,1,1709,22,1,0 +2013,8,30,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,5,0,1326,4,0,0 +2013,10,28,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-2,0,839,-15,0,0 +2013,10,11,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,40,1,1115,90,1,0 +2013,10,6,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1615,24,1,1804,50,1,0 +2013,7,27,6,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-4,0,2205,-18,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1930,16,1,2021,4,0,0 +2013,8,30,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-11,0,900,-8,0,0 +2013,10,15,2,9E,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,28,1,1345,32,1,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1118,-3,0,1237,-11,0,0 +2013,6,30,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1106,109,1,1157,101,1,0 +2013,10,8,2,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1630,12,0,1940,-12,0,0 +2013,7,10,3,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,21,1,1451,28,1,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,8,0,1140,8,0,0 +2013,4,25,4,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1235,-4,0,1450,-9,0,0 +2013,8,19,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1729,4,0,2020,-11,0,0 +2013,10,30,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,10,0,1750,6,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1515,70,1,1840,54,1,0 +2013,5,6,1,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-3,0,920,-19,0,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-5,0,1854,-2,0,0 +2013,4,14,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-5,0,2209,-21,0,0 +2013,7,26,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1620,-1,0,1728,0,0,0 +2013,7,17,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,936,-7,0,1220,-9,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1242,65,1,1450,99,1,0 +2013,9,14,6,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1430,15,1,1620,15,1,0 +2013,10,18,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,70,1,1830,71,1,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1623,-3,0,1728,-9,0,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,-5,0,1120,-10,0,0 +2013,7,13,6,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,1,0,1445,-1,0,0 +2013,7,4,4,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1120,-7,0,1418,-4,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,820,4,0,940,4,0,0 +2013,9,30,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-8,0,648,-18,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-5,0,1107,-33,0,0 +2013,9,17,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1705,30,1,1825,39,1,0 +2013,10,8,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1825,-4,0,1955,-15,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2138,22,1,45,1,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1535,1,0,1700,-2,0,0 +2013,5,3,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1440,46,1,1640,33,1,0 +2013,5,13,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-1,0,1712,10,0,0 +2013,7,22,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,600,0,0,725,-6,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2130,41,1,2300,31,1,0 +2013,7,19,5,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1020,-5,0,1238,-15,0,0 +2013,5,12,7,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,923,-5,0,1041,2,0,0 +2013,9,30,1,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1251,60,1,1429,57,1,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1139,-3,0,1540,-25,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,6,0,1711,5,0,0 +2013,10,25,5,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1315,-8,0,1355,-5,0,0 +2013,6,3,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,900,0,,1025,0,1,1 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-4,0,1921,-6,0,0 +2013,5,4,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-8,0,1757,-6,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,87,1,1950,77,1,0 +2013,4,18,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,32,1,1120,49,1,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1725,22,1,2305,17,1,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-3,0,2159,13,0,0 +2013,6,7,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1757,-7,0,1958,-5,0,0 +2013,10,20,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1835,-2,0,1940,-3,0,0 +2013,5,19,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2010,52,1,2214,57,1,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,1,0,1955,-6,0,0 +2013,4,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,801,-2,0,1011,-3,0,0 +2013,7,22,1,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,1,0,1420,9,0,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1420,1,0,1945,0,0,0 +2013,10,14,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,920,0,0,1055,-8,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,24,1,2355,17,1,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1815,-5,0,2020,2,0,0 +2013,8,31,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,-5,0,1755,-8,0,0 +2013,5,11,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-6,0,1552,-19,0,0 +2013,10,2,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-4,0,852,-18,0,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,50,1,2216,80,1,0 +2013,9,18,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,5,0,1315,-11,0,0 +2013,6,25,2,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,843,18,1,958,13,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1905,3,0,2120,-2,0,0 +2013,7,13,6,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1440,12,0,1655,-4,0,0 +2013,6,7,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1150,23,1,1806,12,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,0,,1540,0,1,1 +2013,10,15,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1210,-4,0,1520,-19,0,0 +2013,5,28,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-8,0,746,-8,0,0 +2013,4,20,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1040,-7,0,1100,-11,0,0 +2013,6,24,1,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1630,113,1,1805,106,1,0 +2013,8,18,7,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,6,0,1852,-23,0,0 +2013,4,29,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1450,12,0,1800,12,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1845,21,1,2030,13,0,0 +2013,6,26,3,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,-2,0,1915,-23,0,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1240,-3,0,1405,-6,0,0 +2013,6,2,7,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,9,0,2155,7,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,811,3,0,1036,13,0,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,800,-2,0,937,-16,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,0,0,1807,-16,0,0 +2013,9,7,6,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,7,0,1809,24,1,0 +2013,6,6,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1335,2,0,1510,2,0,0 +2013,5,14,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1220,35,1,1410,21,1,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-3,0,845,0,0,0 +2013,6,20,4,FL,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,64,1,1710,70,1,0 +2013,10,19,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1951,-3,0,2130,-16,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-3,0,915,-5,0,0 +2013,4,22,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,820,-2,0,939,81,1,0 +2013,6,28,5,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1040,0,0,1402,1,0,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1335,86,1,1500,71,1,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1110,4,0,1230,-2,0,0 +2013,10,24,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-4,0,903,-6,0,0 +2013,7,22,1,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1815,80,1,2020,66,1,0 +2013,4,24,3,9E,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1935,-7,0,2129,-12,0,0 +2013,8,6,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,25,1,1435,18,1,0 +2013,9,26,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,16,1,1520,5,0,0 +2013,7,24,3,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1650,-7,0,2055,-30,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,10,0,1525,1,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-2,0,2320,-6,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1715,54,1,2230,34,1,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1015,8,0,1500,2,0,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1320,1,0,1440,0,0,0 +2013,9,19,4,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,959,-3,0,1318,-6,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,858,-2,0,1256,-12,0,0 +2013,6,23,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,854,-13,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2010,1,0,2141,-7,0,0 +2013,8,8,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,-5,0,730,-15,0,0 +2013,6,8,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,700,-2,0,903,1,0,0 +2013,4,11,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-1,0,1633,5,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,-7,0,1948,-25,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2222,1,0,2344,25,1,0 +2013,8,30,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-9,0,1335,-10,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-1,0,1632,-10,0,0 +2013,5,21,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,48,1,2255,36,1,0 +2013,4,27,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-4,0,2135,-18,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1205,3,0,1305,-6,0,0 +2013,6,28,5,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,839,8,0,1020,11,0,0 +2013,10,3,4,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1530,5,0,1848,-6,0,0 +2013,9,3,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,800,1,0,920,-4,0,0 +2013,5,10,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,-11,0,2049,-5,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,941,19,1,1112,26,1,0 +2013,5,25,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,5,0,1800,3,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1340,0,,1445,0,1,1 +2013,5,21,2,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1435,14,0,1630,-7,0,0 +2013,8,25,7,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1800,62,1,2347,71,1,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1218,-2,0,1405,-29,0,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1630,40,1,1855,31,1,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,815,-8,0,1025,-10,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,15,1,1335,7,0,0 +2013,6,27,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1310,-4,0,1424,-3,0,0 +2013,5,29,3,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1208,0,0,1430,-9,0,0 +2013,5,8,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1150,1,0,1430,-5,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1040,9,0,1155,2,0,0 +2013,10,24,4,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1450,20,1,1820,15,1,0 +2013,8,14,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,30,1,2035,22,1,0 +2013,9,6,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,-1,0,1300,-4,0,0 +2013,5,26,7,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,900,-1,0,1055,9,0,0 +2013,8,16,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-6,0,1542,-13,0,0 +2013,4,16,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-7,0,1305,-8,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-4,0,2015,-6,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,750,14,0,927,21,1,0 +2013,5,22,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,6,0,930,-18,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1930,-1,0,2152,10,0,0 +2013,9,23,1,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-4,0,900,23,1,0 +2013,8,3,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,-2,0,1559,-4,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1450,0,0,1710,-1,0,0 +2013,4,1,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,811,3,0,912,-2,0,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,725,58,1,1317,37,1,0 +2013,10,17,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-5,0,1315,-16,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1450,-1,0,1738,-8,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1900,-3,0,2040,-8,0,0 +2013,9,3,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2010,1,0,2245,5,0,0 +2013,8,6,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1515,-6,0,1716,0,0,0 +2013,7,16,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,1,0,2128,-9,0,0 +2013,5,16,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1605,-3,0,1729,5,0,0 +2013,10,9,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,-3,0,805,-7,0,0 +2013,6,5,3,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1120,-4,0,1408,-17,0,0 +2013,5,2,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2045,-1,0,2200,-11,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1736,0,0,2021,4,0,0 +2013,8,12,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1550,19,1,1850,5,0,0 +2013,5,14,2,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,810,0,0,950,-7,0,0 +2013,5,5,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,0,0,1540,2,0,0 +2013,9,4,3,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,600,30,1,729,31,1,0 +2013,7,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-4,0,845,-4,0,0 +2013,4,10,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1153,-1,0,1300,-14,0,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,8,0,1745,4,0,0 +2013,8,24,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-2,0,2240,-40,0,0 +2013,9,29,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1030,-3,0,1305,-13,0,0 +2013,7,18,4,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1345,-3,0,1535,-16,0,0 +2013,4,29,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1147,-8,0,2029,23,1,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,-2,0,1935,-25,0,0 +2013,6,22,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,643,0,0,731,-6,0,0 +2013,7,10,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1110,5,0,1240,6,0,0 +2013,8,15,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,755,-5,0,1400,-15,0,0 +2013,7,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1930,2,0,2136,-17,0,0 +2013,9,16,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1040,0,,1125,0,1,1 +2013,7,25,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-6,0,1905,-8,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,18,1,1820,20,1,0 +2013,5,16,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,5,0,2006,15,1,0 +2013,7,26,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,49,1,1125,47,1,0 +2013,4,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-4,0,2227,-15,0,0 +2013,6,16,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1510,47,1,1825,36,1,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,95,1,2355,71,1,0 +2013,10,27,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,24,1,1005,13,0,0 +2013,6,11,2,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1650,-2,0,1840,-13,0,0 +2013,7,4,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-9,0,1925,-22,0,0 +2013,10,18,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-9,0,1805,-20,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1235,-6,0,1400,-4,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,855,-1,0,1049,-15,0,0 +2013,9,25,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-7,0,635,-25,0,0 +2013,7,21,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1319,25,1,1430,15,1,0 +2013,4,26,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1730,-3,0,2041,-18,0,0 +2013,4,28,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1140,10,0,1455,14,0,0 +2013,6,26,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1219,251,1,1337,261,1,0 +2013,9,30,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,-5,0,1511,-8,0,0 +2013,4,9,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,-2,0,1319,-6,0,0 +2013,7,12,5,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2146,73,1,42,82,1,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,846,-5,0,1636,10,0,0 +2013,9,20,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2200,-8,0,2305,-11,0,0 +2013,7,11,4,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1150,-1,0,1755,0,0,0 +2013,5,7,2,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,640,-3,0,851,-30,0,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,-8,0,2152,-3,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,0,0,1635,2,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,42,1,2231,14,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1150,-4,0,1340,-17,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,-2,0,1628,-12,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,709,-6,0,1016,7,0,0 +2013,9,29,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-5,0,845,-29,0,0 +2013,8,31,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,4,0,809,0,0,0 +2013,5,26,7,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1550,-6,0,1845,-28,0,0 +2013,7,29,1,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2051,63,1,2358,44,1,0 +2013,4,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1910,6,0,2125,-2,0,0 +2013,8,1,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-7,0,1045,-5,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,838,-8,0,1431,-32,0,0 +2013,5,9,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1814,-6,0,1836,-9,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,7,0,1145,-19,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1615,45,1,1710,41,1,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,810,-3,0,1000,-15,0,0 +2013,6,11,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-6,0,1607,-10,0,0 +2013,5,23,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,66,1,1935,60,1,0 +2013,8,26,1,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-6,0,1805,-14,0,0 +2013,8,7,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2055,-5,0,2220,-10,0,0 +2013,8,21,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1427,8,0,1543,66,1,0 +2013,7,3,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,0,920,-13,0,0 +2013,4,5,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,600,2,0,940,1,0,0 +2013,7,1,1,YV,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2005,32,1,2235,26,1,0 +2013,6,7,5,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1609,4,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1935,-6,0,55,16,1,0 +2013,9,18,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1646,7,0,1948,20,1,0 +2013,7,25,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,840,-2,0,0 +2013,9,29,7,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1020,0,0,1455,0,0,0 +2013,9,26,4,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-5,0,1404,-21,0,0 +2013,6,2,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,847,-5,0,1023,-3,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2155,58,1,2337,65,1,0 +2013,10,12,6,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1308,-5,0,1419,-4,0,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,-3,0,1810,-28,0,0 +2013,10,22,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,10,0,1320,1,0,0 +2013,9,17,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,922,59,1,1108,51,1,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,-2,0,2340,-9,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,940,-3,0,1105,-10,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,621,-1,0,859,-10,0,0 +2013,4,9,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1259,-15,0,0 +2013,9,18,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,10,0,2110,1,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,-5,0,921,-9,0,0 +2013,6,3,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,0,0,1114,-5,0,0 +2013,6,28,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,1,0,1514,7,0,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,-4,0,1035,-5,0,0 +2013,6,27,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,-5,0,2041,-18,0,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,715,-1,0,1545,-19,0,0 +2013,5,18,6,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1705,-9,0,1841,-2,0,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,-6,0,930,-11,0,0 +2013,6,4,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1525,9,0,1736,-2,0,0 +2013,4,21,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1818,-4,0,2030,-19,0,0 +2013,7,21,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-3,0,1105,-4,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,908,63,1,1102,36,1,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1915,33,1,2020,17,1,0 +2013,10,21,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,14,0,925,16,1,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,-3,0,2145,-9,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1915,47,1,2031,38,1,0 +2013,6,22,6,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-1,0,1634,2,0,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,220,1,2140,220,1,0 +2013,8,19,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-6,0,840,4,0,0 +2013,4,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1656,-1,0,1726,2,0,0 +2013,5,22,3,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1337,-3,0,1614,3,0,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1220,-3,0,1445,-4,0,0 +2013,9,13,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1015,-2,0,1139,-17,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1540,7,0,1655,-11,0,0 +2013,7,19,5,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,540,-5,0,908,-8,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,805,-22,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1459,-1,0,1657,-17,0,0 +2013,9,29,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1905,5,0,2227,-11,0,0 +2013,9,19,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,265,1,1126,280,1,0 +2013,7,31,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1546,-5,0,1648,-16,0,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1920,13,0,2050,-5,0,0 +2013,7,12,5,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2210,-7,0,30,-16,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1630,-7,0,1822,-32,0,0 +2013,4,30,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1607,-1,0,29,14,0,0 +2013,8,20,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1715,-6,0,1941,-20,0,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2145,-1,0,37,-2,0,0 +2013,4,12,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,-7,0,1943,-13,0,0 +2013,6,29,6,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1840,68,1,2131,79,1,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,22,1,940,18,1,0 +2013,4,22,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1937,-2,0,2155,-20,0,0 +2013,7,3,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1935,22,1,2259,17,1,0 +2013,8,31,6,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,-1,0,1825,-4,0,0 +2013,10,20,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,67,1,1530,64,1,0 +2013,5,2,4,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1220,36,1,1705,30,1,0 +2013,6,15,6,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,1505,-25,0,0 +2013,9,13,5,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,922,69,1,1044,78,1,0 +2013,10,11,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2000,-1,0,2128,4,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1958,-3,0,2131,-14,0,0 +2013,5,30,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1259,-9,0,1425,-31,0,0 +2013,6,16,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,804,0,,1020,0,1,1 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1030,-4,0,1850,-9,0,0 +2013,8,14,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-6,0,1014,-10,0,0 +2013,8,4,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2339,118,1,810,83,1,0 +2013,8,20,2,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1150,-3,0,1443,-21,0,0 +2013,8,23,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2327,-10,0,709,0,0,0 +2013,10,3,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1725,9,0,1915,-7,0,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1345,-4,0,1535,-23,0,0 +2013,9,29,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1540,13,0,2120,10,0,0 +2013,7,11,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,600,-6,0,615,-8,0,0 +2013,8,8,4,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1222,-6,0,1417,-13,0,0 +2013,8,6,2,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1735,0,0,2030,-2,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1835,15,1,2055,2,0,0 +2013,4,23,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,59,1,1845,59,1,0 +2013,5,3,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1210,-5,0,1529,-34,0,0 +2013,8,16,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-5,0,2226,-8,0,0 +2013,6,13,4,DL,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,630,-3,0,752,27,1,0 +2013,10,19,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,-1,0,755,0,0,0 +2013,6,21,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,709,-4,0,830,-9,0,0 +2013,5,18,6,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,-2,0,1535,-22,0,0 +2013,5,21,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2055,-1,0,28,-9,0,0 +2013,5,3,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1450,-6,0,1720,-15,0,0 +2013,7,3,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,33,1,806,21,1,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1020,-1,0,1625,-20,0,0 +2013,4,26,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,28,1,2200,11,0,0 +2013,4,8,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1559,-3,0,1856,16,1,0 +2013,9,3,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-2,0,1655,-9,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1444,-3,0,1606,15,1,0 +2013,6,22,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1235,-7,0,1620,-13,0,0 +2013,7,27,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1505,-6,0,1721,-2,0,0 +2013,9,9,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1230,4,0,0 +2013,10,23,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,0,0,2335,-2,0,0 +2013,7,10,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,12,0,1858,0,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2335,-4,0,646,-8,0,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,910,0,0,1040,-9,0,0 +2013,8,18,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,828,-3,0,1645,-2,0,0 +2013,5,13,1,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1711,-1,0,1923,-7,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,750,-5,0,943,-15,0,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2155,38,1,2305,31,1,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,940,-3,0,1201,-36,0,0 +2013,5,20,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,66,1,1915,79,1,0 +2013,7,26,5,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1045,4,0,1155,0,0,0 +2013,8,21,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,-6,0,2048,-3,0,0 +2013,4,3,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,754,9,0,0 +2013,6,19,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,530,-8,0,616,-11,0,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2200,-5,0,2247,-13,0,0 +2013,5,22,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,26,1,1405,110,1,0 +2013,9,8,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1855,3,0,2050,0,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1425,-2,0,1639,-19,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,7,0,1000,-7,0,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,-3,0,914,-22,0,0 +2013,10,2,3,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1955,7,0,2241,29,1,0 +2013,7,14,7,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1741,0,,1904,0,1,1 +2013,10,16,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,-4,0,1720,-9,0,0 +2013,5,22,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,842,102,1,1010,95,1,0 +2013,10,19,6,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,804,-2,0,933,-6,0,0 +2013,6,6,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1130,39,1,1655,44,1,0 +2013,7,29,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1635,-11,0,1649,-14,0,0 +2013,8,7,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1200,1,0,1412,1,0,0 +2013,7,8,1,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,545,0,0,650,-7,0,0 +2013,10,15,2,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1705,5,0,1900,-1,0,0 +2013,7,3,3,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1350,15,1,1910,35,1,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,615,-4,0,845,-4,0,0 +2013,5,20,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,0,0,1835,12,0,0 +2013,9,27,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1011,-4,0,1132,-10,0,0 +2013,9,30,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1945,-1,0,2100,-7,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,850,-12,0,1121,-20,0,0 +2013,6,5,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,1,0,1115,-16,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,845,0,0,1410,-2,0,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1040,4,0,1635,-6,0,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,933,23,1,1332,25,1,0 +2013,8,4,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,2,0,1800,-9,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2145,11,0,2342,-11,0,0 +2013,6,24,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2312,0,,2359,0,1,1 +2013,10,14,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1817,-7,0,2118,0,0,0 +2013,9,7,6,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1217,-2,0,1336,-11,0,0 +2013,7,10,3,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-4,0,1030,-23,0,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1322,83,1,1410,84,1,0 +2013,10,7,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1615,30,1,1913,39,1,0 +2013,5,18,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1230,-2,0,1309,1,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1733,4,0,1850,-3,0,0 +2013,10,1,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-7,0,1400,2,0,0 +2013,6,18,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1043,0,,1425,0,1,1 +2013,9,9,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1215,10,0,1421,11,0,0 +2013,4,12,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1634,9,0,1845,-10,0,0 +2013,9,30,1,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,1815,-14,0,0 +2013,6,1,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2157,-16,0,2226,-21,0,0 +2013,8,4,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-3,0,1018,-15,0,0 +2013,10,10,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,-4,0,1404,-3,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,2155,0,0,2335,-3,0,0 +2013,5,6,1,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,845,-1,0,1119,-22,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1530,12,0,1630,17,1,0 +2013,4,24,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1725,121,1,1835,103,1,0 +2013,10,29,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1107,-4,0,1139,22,1,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1020,7,0,1345,-4,0,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1450,96,1,1910,86,1,0 +2013,7,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,138,1,1937,168,1,0 +2013,6,27,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,9,0,1140,19,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2150,1,0,2250,-5,0,0 +2013,9,15,7,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1550,2,0,1659,-7,0,0 +2013,9,5,4,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1640,14,0,1835,-2,0,0 +2013,5,8,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,600,-8,0,818,-19,0,0 +2013,5,10,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1459,9,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,-2,0,2358,-9,0,0 +2013,7,30,2,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-7,0,1317,-9,0,0 +2013,5,1,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1759,10,0,1834,-6,0,0 +2013,6,29,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,59,1,1541,45,1,0 +2013,6,25,2,HA,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,24,1,2145,7,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,915,6,0,1445,-13,0,0 +2013,7,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,710,-3,0,805,-1,0,0 +2013,7,12,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,-2,0,940,-6,0,0 +2013,8,6,2,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-8,0,1238,-22,0,0 +2013,10,14,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1827,-3,0,2110,-4,0,0 +2013,4,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1615,36,1,1745,29,1,0 +2013,6,14,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1651,2,0,1753,-2,0,0 +2013,4,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,-5,0,1055,-2,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1715,-4,0,2000,-11,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,-4,0,1735,-2,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1650,24,1,1935,22,1,0 +2013,6,12,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1805,35,1,1905,33,1,0 +2013,5,3,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,12,0,1950,11,0,0 +2013,6,29,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,13,0,2245,-13,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,833,0,0,1536,5,0,0 +2013,7,27,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,910,19,1,1230,5,0,0 +2013,7,21,7,EV,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-4,0,1839,-23,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,0,0,1550,-22,0,0 +2013,5,17,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1844,-2,0,2008,-14,0,0 +2013,6,9,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2018,-1,0,2115,-2,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2100,3,0,2229,4,0,0 +2013,5,21,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1145,18,1,1500,9,0,0 +2013,6,2,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,11,0,2130,11,0,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1000,-4,0,1125,-32,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1120,8,0,1330,-15,0,0 +2013,9,20,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-3,0,840,-5,0,0 +2013,7,30,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,-4,0,1925,-18,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,627,-5,0,758,-13,0,0 +2013,4,14,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2150,-2,0,2305,-10,0,0 +2013,9,26,4,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1101,-4,0,1418,-22,0,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1405,-4,0,1615,-12,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1454,10,0,1608,-7,0,0 +2013,5,6,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1440,2,0,1720,-24,0,0 +2013,7,1,1,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,115,46,1,830,39,1,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,45,1,2303,44,1,0 +2013,4,14,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,3,0,1915,5,0,0 +2013,8,14,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,835,14,0,0 +2013,4,8,1,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1045,-5,0,1320,1,0,0 +2013,7,25,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1215,-7,0,1500,-20,0,0 +2013,6,13,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2020,17,1,2255,14,0,0 +2013,10,3,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1337,-6,0,1729,-3,0,0 +2013,7,22,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1115,5,0,1200,-7,0,0 +2013,6,1,6,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,-6,0,2020,-8,0,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2235,5,0,2355,-2,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-2,0,808,-3,0,0 +2013,5,10,5,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1035,117,1,1400,107,1,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,825,-1,0,949,14,0,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,-2,0,2101,-11,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,855,-2,0,1025,-9,0,0 +2013,4,25,4,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1338,-4,0,1905,-12,0,0 +2013,6,21,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-3,0,1805,-3,0,0 +2013,7,1,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,7,0,1855,8,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,749,-2,0,1101,-9,0,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1355,4,0,2000,-4,0,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,800,8,0,1108,37,1,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,856,-6,0,1205,7,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1010,-1,0,1430,-3,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-4,0,1323,-3,0,0 +2013,8,2,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1630,77,1,1805,0,1,1 +2013,8,14,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,14,0,1935,15,1,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2155,27,1,2325,13,0,0 +2013,7,7,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1525,-4,0,1637,-7,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,-4,0,2057,3,0,0 +2013,5,21,2,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,-1,0,1227,-6,0,0 +2013,10,25,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2045,-1,0,2150,-10,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,940,9,0,1035,8,0,0 +2013,10,31,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1810,-10,0,1847,-11,0,0 +2013,5,1,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,12,0,1635,11,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1725,87,1,1840,57,1,0 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1231,0,0,1252,8,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1535,2,0,1825,-13,0,0 +2013,7,9,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2215,20,1,700,-8,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,-4,0,1209,-20,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1737,-1,0,1818,-1,0,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1020,-7,0,1310,0,0,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,-3,0,2215,-1,0,0 +2013,9,1,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,-6,0,1751,-20,0,0 +2013,5,30,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1200,-4,0,1519,-17,0,0 +2013,4,14,7,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,755,-3,0,1020,-10,0,0 +2013,5,5,7,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1055,-7,0,1418,-1,0,0 +2013,4,26,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,610,-5,0,745,0,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1729,51,1,2022,68,1,0 +2013,7,17,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1920,14,0,2045,18,1,0 +2013,8,14,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1945,-6,0,2245,-21,0,0 +2013,10,8,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1603,20,1,1845,10,0,0 +2013,4,12,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,600,0,0,620,-7,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-4,0,2151,41,1,0 +2013,8,10,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1119,0,0,1506,-1,0,0 +2013,10,16,3,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,-6,0,2248,22,1,0 +2013,8,30,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,241,1,1639,265,1,0 +2013,5,14,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,825,-8,0,950,-12,0,0 +2013,9,16,1,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,-5,0,2110,5,0,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,840,-5,0,1000,-10,0,0 +2013,8,25,7,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,-8,0,1754,-2,0,0 +2013,10,31,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-11,0,1545,-6,0,0 +2013,8,28,3,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,815,1,0,1201,0,0,0 +2013,9,20,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-3,0,1200,-9,0,0 +2013,10,11,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-9,0,1111,-5,0,0 +2013,10,10,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,815,-10,0,0 +2013,6,24,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1749,20,1,2118,16,1,0 +2013,10,29,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-4,0,2235,-12,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1156,0,0,1320,-2,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1855,35,1,2320,19,1,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1440,16,1,1617,12,0,0 +2013,9,29,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1659,77,1,1748,75,1,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,815,-2,0,1000,-12,0,0 +2013,8,21,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,-7,0,1040,-6,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2154,-2,0,2309,-14,0,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,-3,0,1807,-10,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2210,-1,0,2327,-7,0,0 +2013,8,26,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,600,0,0,729,-2,0,0 +2013,9,8,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,910,-10,0,1450,-14,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1535,12,0,1921,-1,0,0 +2013,7,27,6,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2300,239,1,704,237,1,0 +2013,6,12,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1958,1,0,2126,-18,0,0 +2013,6,8,6,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1500,-6,0,1812,9,0,0 +2013,6,18,2,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,0,,1905,0,1,1 +2013,8,6,2,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,22,1,2127,13,0,0 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,9,0,2015,13,0,0 +2013,6,23,7,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1030,-1,0,1325,16,1,0 +2013,8,17,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-4,0,1750,-17,0,0 +2013,7,12,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1605,-2,0,1731,-11,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,4,0,1740,-11,0,0 +2013,10,23,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1105,4,0,0 +2013,10,17,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-2,0,1350,-5,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,955,16,1,1305,2,0,0 +2013,5,4,6,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1620,44,1,1826,32,1,0 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,800,-11,0,925,-9,0,0 +2013,9,4,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,620,-4,0,750,-9,0,0 +2013,4,11,4,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2011,76,1,2354,56,1,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1715,277,1,2025,266,1,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1625,4,0,1735,5,0,0 +2013,4,21,7,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1805,13,0,1925,15,1,0 +2013,9,17,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,-7,0,1556,-9,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,-2,0,1520,-17,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,4,0,2000,6,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1800,2,0,2025,17,1,0 +2013,7,9,2,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,-9,0,832,6,0,0 +2013,9,1,7,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,-3,0,1914,20,1,0 +2013,5,10,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,116,1,1820,121,1,0 +2013,6,23,7,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1210,13,0,1335,4,0,0 +2013,10,25,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,830,0,0,950,18,1,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-3,0,1026,-22,0,0 +2013,8,27,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-7,0,1411,-10,0,0 +2013,10,11,5,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-5,0,2000,-5,0,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,2,0,910,-8,0,0 +2013,5,30,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-4,0,1604,-14,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,650,-1,0,920,0,0,0 +2013,5,27,1,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-1,0,1405,-6,0,0 +2013,7,14,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1040,-9,0,1201,-14,0,0 +2013,6,13,4,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2222,-7,0,634,-22,0,0 +2013,9,10,2,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-7,0,1125,-30,0,0 +2013,7,30,2,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,5,0,1745,8,0,0 +2013,8,14,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1956,-3,0,2048,-11,0,0 +2013,7,4,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1710,26,1,2015,21,1,0 +2013,10,13,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1700,33,1,1800,26,1,0 +2013,4,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1110,-2,0,1245,-13,0,0 +2013,10,24,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1628,11,0,1818,-3,0,0 +2013,4,30,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,104,1,2140,94,1,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,36,1,1747,22,1,0 +2013,10,7,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1810,-11,0,1905,-10,0,0 +2013,8,5,1,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1003,6,0,1700,-12,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1010,-2,0,1715,-7,0,0 +2013,5,11,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1015,-2,0,1110,0,0,0 +2013,8,16,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1830,-2,0,2038,6,0,0 +2013,9,26,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1640,20,1,1820,15,1,0 +2013,6,25,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,4,0,2003,7,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1450,68,1,1647,61,1,0 +2013,6,15,6,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1754,45,1,2000,41,1,0 +2013,9,7,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,2018,-8,0,0 +2013,9,27,5,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1415,-2,0,1515,-8,0,0 +2013,10,28,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2341,-7,0,735,-46,0,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1550,52,1,1835,99,1,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1551,-1,0,1704,-37,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,-7,0,945,-2,0,0 +2013,6,23,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-3,0,1637,-8,0,0 +2013,10,14,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,1255,5,0,0 +2013,7,13,6,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1042,-4,0,1343,-13,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1345,17,1,1515,-1,0,0 +2013,10,9,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,955,5,0,1055,4,0,0 +2013,8,17,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-4,0,925,8,0,0 +2013,5,27,1,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1415,-2,0,1640,-15,0,0 +2013,8,29,4,OO,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,648,-9,0,945,-9,0,0 +2013,10,15,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2105,28,1,2220,18,1,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-1,0,1115,2,0,0 +2013,7,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,-2,0,1842,3,0,0 +2013,4,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2045,28,1,2215,35,1,0 +2013,9,3,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,639,-5,0,850,-17,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1500,37,1,1820,12,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-6,0,859,-21,0,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2130,35,1,2240,34,1,0 +2013,9,10,2,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1127,-8,0,1344,-7,0,0 +2013,8,4,7,UA,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,615,-6,0,658,-22,0,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,1,0,1505,11,0,0 +2013,6,19,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,830,0,,1015,0,1,1 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,905,43,1,1440,31,1,0 +2013,7,20,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1122,-7,0,1418,2,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1205,-4,0,1428,-21,0,0 +2013,9,24,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1511,-4,0,1606,3,0,0 +2013,6,23,7,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1410,-13,0,1820,-23,0,0 +2013,10,13,7,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,902,-6,0,1110,-11,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,915,-1,0,1350,-1,0,0 +2013,5,17,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1730,100,1,1905,91,1,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1130,2,0,1256,-4,0,0 +2013,6,3,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,841,-3,0,1635,-9,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,5,0,1145,-5,0,0 +2013,7,17,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,-1,0,1901,9,0,0 +2013,4,2,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-3,0,2019,-10,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1924,-5,0,2045,-15,0,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1050,8,0,1205,4,0,0 +2013,4,30,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1255,-3,0,2138,3,0,0 +2013,7,18,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,36,1,1733,20,1,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,75,1,1054,67,1,0 +2013,5,11,6,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,2000,118,1,2217,116,1,0 +2013,6,30,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1020,-2,0,1140,-8,0,0 +2013,5,10,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,-5,0,1318,-21,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,26,1,1253,27,1,0 +2013,9,19,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1755,-6,0,2120,-8,0,0 +2013,4,18,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1025,192,1,1135,237,1,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-3,0,1000,-12,0,0 +2013,7,22,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,853,-2,0,1204,-2,0,0 +2013,5,18,6,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-4,0,906,-10,0,0 +2013,6,9,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-4,0,1857,-10,0,0 +2013,4,7,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,840,13,0,1310,7,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1235,27,1,1705,18,1,0 +2013,5,8,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1451,-11,0,1828,-8,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-5,0,1000,-9,0,0 +2013,6,21,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1255,-1,0,1405,-5,0,0 +2013,10,15,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1337,-6,0,1455,-16,0,0 +2013,10,30,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,6,0,1553,16,1,0 +2013,6,7,5,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2123,-5,0,555,-2,0,0 +2013,8,10,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-5,0,855,3,0,0 +2013,6,16,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-6,0,2150,8,0,0 +2013,10,28,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1529,-2,0,1746,21,1,0 +2013,8,21,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,959,25,1,0 +2013,4,26,5,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,2,0,1751,-2,0,0 +2013,5,18,6,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-12,0,2054,-36,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1510,19,1,1635,25,1,0 +2013,8,27,2,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1435,-1,0,1625,-20,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1755,10,0,2012,-13,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1405,8,0,1553,-14,0,0 +2013,4,24,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,49,1,2140,76,1,0 +2013,8,15,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2200,29,1,2258,16,1,0 +2013,10,7,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,934,-4,0,1036,-16,0,0 +2013,5,27,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1650,-6,0,1809,-20,0,0 +2013,6,16,7,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1115,-4,0,1250,-8,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1905,12,0,2210,16,1,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,-4,0,1935,-11,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,850,-1,0,1552,5,0,0 +2013,8,1,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,1000,8,0,0 +2013,5,31,5,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1149,10,0,1414,5,0,0 +2013,10,28,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,645,-2,0,815,0,0,0 +2013,9,21,6,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,945,-6,0,1210,-13,0,0 +2013,8,29,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,0,0,855,-26,0,0 +2013,6,2,7,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1630,-5,0,2041,-15,0,0 +2013,9,27,5,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,830,0,0,1028,-23,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1255,5,0,1355,-2,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,0,,1445,0,1,1 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1035,2,0,1220,-9,0,0 +2013,9,14,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,10,0,2324,13,0,0 +2013,10,23,3,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1638,-10,0,1759,-14,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1635,40,1,2345,18,1,0 +2013,9,28,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,-4,0,1125,-4,0,0 +2013,10,5,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1100,-4,0,1221,-12,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1010,-5,0,1215,-2,0,0 +2013,8,20,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1723,1,0,1956,5,0,0 +2013,6,22,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1215,-1,0,1430,7,0,0 +2013,4,10,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1950,6,0,2209,7,0,0 +2013,8,22,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1120,8,0,1205,-7,0,0 +2013,4,23,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,21,1,1250,19,1,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1105,-3,0,1226,-12,0,0 +2013,8,20,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,2135,-20,0,0 +2013,7,15,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2135,-5,0,2250,-5,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1545,-4,0,1825,9,0,0 +2013,7,23,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,757,-12,0,0 +2013,10,18,5,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-1,0,2130,-1,0,0 +2013,8,18,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1312,-12,0,1515,5,0,0 +2013,4,27,6,9E,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-10,0,1204,-29,0,0 +2013,5,10,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,-2,0,1219,-13,0,0 +2013,7,14,7,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-8,0,848,-10,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1405,14,0,1759,32,1,0 +2013,9,27,5,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-5,0,1038,-8,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,34,1,1015,26,1,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,916,-9,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1350,18,1,1541,-2,0,0 +2013,7,24,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1336,-10,0,1512,-20,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1353,-2,0,1540,6,0,0 +2013,4,19,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,8,0,2315,-8,0,0 +2013,8,10,6,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1159,-1,0,1656,-10,0,0 +2013,6,21,5,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-10,0,1007,-18,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-7,0,1133,-11,0,0 +2013,4,18,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,1,0,1328,4,0,0 +2013,6,1,6,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1230,-4,0,1605,-10,0,0 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-5,0,1135,-10,0,0 +2013,4,30,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1010,-5,0,1135,-15,0,0 +2013,5,12,7,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,9,0,2151,4,0,0 +2013,6,30,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1606,-2,0,1909,27,1,0 +2013,7,7,7,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,14,0,1925,10,0,0 +2013,8,16,5,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,40,1,1730,47,1,0 +2013,7,8,1,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,0,0,920,-8,0,0 +2013,9,1,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,15,1,1810,-24,0,0 +2013,8,30,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-6,0,1346,-11,0,0 +2013,10,28,1,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1447,-2,0,1559,11,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1734,0,0,2046,-2,0,0 +2013,5,27,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-1,0,1819,-9,0,0 +2013,7,5,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1540,-4,0,1937,-12,0,0 +2013,7,13,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,120,1,2255,110,1,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,600,-1,0,1050,-5,0,0 +2013,9,7,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,615,-6,0,730,-11,0,0 +2013,9,21,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,742,-9,0,0 +2013,5,20,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,16,1,1425,5,0,0 +2013,6,24,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,850,-4,0,1105,-15,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1010,15,1,1430,34,1,0 +2013,6,19,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,946,1,0,1448,-7,0,0 +2013,10,24,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1500,2,0,1801,-23,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1327,129,1,1600,131,1,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1705,5,0,1850,-7,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,-1,0,1253,-3,0,0 +2013,6,14,5,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,1,0,1205,15,1,0 +2013,6,30,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,-8,0,1151,-8,0,0 +2013,5,31,5,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,810,-5,0,1015,-7,0,0 +2013,5,10,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,-1,0,1120,-5,0,0 +2013,10,31,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1642,-5,0,1913,-5,0,0 +2013,5,23,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1800,99,1,2035,155,1,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,3,0,1635,-8,0,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1155,-3,0,1454,-14,0,0 +2013,6,16,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-6,0,2015,1,0,0 +2013,7,25,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1145,6,0,1245,-13,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,46,1,1556,45,1,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1252,-4,0,1448,-8,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1735,-5,0,1857,-4,0,0 +2013,5,1,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1538,-4,0,1855,49,1,0 +2013,8,12,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,828,-4,0,1031,-9,0,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1425,37,1,1530,30,1,0 +2013,9,27,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,10,0,1805,30,1,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,-5,0,1134,0,0,0 +2013,9,28,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1053,-8,0,1219,-13,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2057,80,1,2221,62,1,0 +2013,5,17,5,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-3,0,1459,-5,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1451,-2,0,1607,-20,0,0 +2013,5,22,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,1845,-12,0,0 +2013,6,19,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-4,0,2014,12,0,0 +2013,5,3,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1509,3,0,2027,-10,0,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1344,-4,0,1515,-17,0,0 +2013,6,4,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2315,5,0,508,-12,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1730,-8,0,1935,-5,0,0 +2013,6,28,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,839,0,,1032,0,1,1 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,34,1,2100,23,1,0 +2013,6,28,5,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,952,-5,0,1309,-1,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1855,-3,0,2040,-3,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,-3,0,1025,-31,0,0 +2013,5,8,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,-2,0,940,-4,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1030,17,1,1843,16,1,0 +2013,7,9,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,10,0,1707,4,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1230,-4,0,1246,-12,0,0 +2013,8,18,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,100,1,1800,108,1,0 +2013,8,14,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,0,0,758,2,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,30,1,1815,39,1,0 +2013,5,4,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,921,-8,0,1218,-32,0,0 +2013,9,29,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,-2,0,810,-14,0,0 +2013,5,13,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1400,-4,0,1525,-3,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2035,-2,0,2254,5,0,0 +2013,4,18,4,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1745,-6,0,1916,-25,0,0 +2013,5,24,5,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-9,0,1259,-15,0,0 +2013,8,24,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,750,0,0,910,-5,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2255,2,0,5,-8,0,0 +2013,8,11,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,4,0,2300,-12,0,0 +2013,9,10,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-11,0,1050,-13,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2055,-4,0,2155,-11,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1840,1,0,2155,-12,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1230,-4,0,2023,-20,0,0 +2013,8,22,4,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,37,1,1951,38,1,0 +2013,4,2,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1122,-2,0,1239,-1,0,0 +2013,6,27,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,-2,0,1923,20,1,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1820,6,0,1945,1,0,0 +2013,10,17,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,-6,0,1705,-26,0,0 +2013,6,9,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1811,139,1,2014,149,1,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1055,142,1,1115,142,1,0 +2013,7,22,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1720,5,0,1830,0,0,0 +2013,6,7,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1505,14,0,1755,1,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1251,-4,0,1617,-13,0,0 +2013,4,16,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1950,-4,0,2110,-8,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1210,48,1,1325,41,1,0 +2013,9,29,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1920,-11,0,2129,-11,0,0 +2013,7,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2021,-3,0,2151,-5,0,0 +2013,4,29,1,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,608,-7,0,711,-24,0,0 +2013,5,23,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,1,0,1825,7,0,0 +2013,7,20,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,630,-3,0,740,-5,0,0 +2013,4,11,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1700,34,1,2015,41,1,0 +2013,4,20,6,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,2,0,652,2,0,0 +2013,7,24,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,-4,0,2205,-7,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,635,1,0,750,-13,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1301,-1,0,2137,-17,0,0 +2013,10,21,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,738,0,0,1455,9,0,0 +2013,5,3,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,8,0,1427,92,1,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,611,-6,0,922,-15,0,0 +2013,5,29,3,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,23,1,1846,18,1,0 +2013,9,3,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1350,-2,0,1634,4,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-4,0,1335,-20,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1045,-2,0,1150,-11,0,0 +2013,7,25,4,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,46,1,1535,38,1,0 +2013,4,5,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,940,-2,0,1050,2,0,0 +2013,4,7,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1205,3,0,1325,-10,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1608,80,1,1839,81,1,0 +2013,4,15,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,605,1,0,730,-4,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1100,-6,0,1223,-15,0,0 +2013,8,4,7,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1519,1,0,1621,-13,0,0 +2013,5,17,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-5,0,819,10,0,0 +2013,7,28,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1339,-7,0,1449,-1,0,0 +2013,8,19,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1428,109,1,1647,102,1,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,710,-3,0,926,3,0,0 +2013,9,4,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,-10,0,833,-31,0,0 +2013,4,21,7,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1105,20,1,1235,20,1,0 +2013,7,1,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-1,0,2014,-6,0,0 +2013,6,7,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2325,-2,0,612,-6,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1110,-4,0,1245,-1,0,0 +2013,6,20,4,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2205,71,1,2326,72,1,0 +2013,5,26,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,1,0,1645,-9,0,0 +2013,6,12,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-9,0,1119,-12,0,0 +2013,6,22,6,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1107,62,1,1505,79,1,0 +2013,9,24,2,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,700,-8,0,840,-15,0,0 +2013,5,13,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,-1,0,2010,-7,0,0 +2013,9,6,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,-4,0,1650,-9,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1710,12,0,2155,0,0,0 +2013,4,8,1,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,20,1,1900,35,1,0 +2013,6,5,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,800,-17,0,0 +2013,9,9,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1056,-9,0,1215,-9,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1505,-5,0,1645,-19,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,-2,0,1306,-9,0,0 +2013,6,21,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-5,0,1734,-17,0,0 +2013,9,24,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1713,-8,0,1840,-23,0,0 +2013,9,13,5,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1614,50,1,1909,60,1,0 +2013,4,11,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,0,0,1355,-6,0,0 +2013,7,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,852,-2,0,1022,2,0,0 +2013,5,1,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1126,16,1,1425,-10,0,0 +2013,7,14,7,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-2,0,1615,21,1,0 +2013,4,30,2,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,734,-4,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,608,4,0,750,-24,0,0 +2013,7,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1557,-6,0,1718,-10,0,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,6,0,1430,-3,0,0 +2013,10,17,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1830,64,1,2041,67,1,0 +2013,8,19,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,1,0,1820,8,0,0 +2013,9,20,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,844,-1,0,931,7,0,0 +2013,10,20,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1823,-6,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-5,0,1113,-18,0,0 +2013,9,25,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1342,-6,0,1510,-16,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,754,2,0,913,-12,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2145,-2,0,2358,-5,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1450,16,1,1800,10,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,-1,0,1446,-7,0,0 +2013,9,1,7,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1120,0,0,1400,0,0,0 +2013,6,22,6,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1115,0,0,1453,-7,0,0 +2013,4,5,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1735,4,0,1841,-13,0,0 +2013,8,14,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,843,-2,0,1137,16,1,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1047,9,0,1653,22,1,0 +2013,6,3,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1310,-7,0,1410,-9,0,0 +2013,6,4,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,2,0,1335,-13,0,0 +2013,5,6,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,805,57,1,935,79,1,0 +2013,6,22,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,20,1,1635,0,0,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,9,0,1055,39,1,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,610,-6,0,725,-18,0,0 +2013,10,5,6,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1500,-6,0,2256,15,1,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1720,-5,0,1835,-8,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1236,4,0,1516,16,1,0 +2013,8,28,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1240,36,1,1554,44,1,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,945,1,0,1100,2,0,0 +2013,4,12,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1458,1,0,1629,2,0,0 +2013,10,20,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1815,53,1,2145,43,1,0 +2013,4,10,3,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,2,0,2205,13,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2005,88,1,2235,76,1,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1450,90,1,1647,66,1,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1255,39,1,1610,55,1,0 +2013,4,8,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1955,-2,0,2212,-9,0,0 +2013,7,16,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1348,-4,0,1458,-23,0,0 +2013,4,3,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2209,-6,0,2356,10,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2110,-7,0,2212,-16,0,0 +2013,9,20,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,125,1,2120,129,1,0 +2013,9,10,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,915,72,1,1030,71,1,0 +2013,6,9,7,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1510,188,1,1608,175,1,0 +2013,8,30,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-7,0,2102,-5,0,0 +2013,4,22,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1453,95,1,1726,82,1,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,844,-4,0,1719,-2,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1036,-5,0,1242,-18,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,925,-1,0,1040,-7,0,0 +2013,7,22,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,-6,0,1155,-10,0,0 +2013,8,14,3,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1145,17,1,1230,23,1,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,20,1,1255,15,1,0 +2013,5,11,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,1,0,1715,3,0,0 +2013,10,1,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1910,0,0,2149,-21,0,0 +2013,4,23,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1821,0,0,1957,7,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1805,8,0,2036,2,0,0 +2013,6,14,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1940,4,0,2115,-8,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,927,-1,0,1307,-13,0,0 +2013,7,23,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,9,0,1055,1,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,605,-2,0,846,7,0,0 +2013,7,29,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,-1,0,815,-18,0,0 +2013,6,15,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,730,37,1,1330,50,1,0 +2013,9,30,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,845,-6,0,1109,7,0,0 +2013,9,9,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1249,11,0,1419,31,1,0 +2013,9,15,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,-8,0,1840,-9,0,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,609,-6,0,1429,38,1,0 +2013,7,2,2,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1031,-4,0,1248,6,0,0 +2013,4,25,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1554,36,1,2059,27,1,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,13,0,1235,12,0,0 +2013,7,26,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1700,0,,1816,0,1,1 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,740,-3,0,838,-5,0,0 +2013,5,1,3,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,-9,0,745,-21,0,0 +2013,5,18,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,800,23,1,1156,5,0,0 +2013,10,31,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-6,0,821,-7,0,0 +2013,7,16,2,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1035,0,0,1630,7,0,0 +2013,7,19,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,5,0,1516,9,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,-1,0,40,-10,0,0 +2013,10,24,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,957,-2,0,1600,-16,0,0 +2013,9,27,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,700,-4,0,830,9,0,0 +2013,9,9,1,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,825,3,0,1021,-13,0,0 +2013,4,29,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,710,-6,0,910,-12,0,0 +2013,9,3,2,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,835,-3,0,1007,-16,0,0 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,57,-1,0,630,-25,0,0 +2013,7,22,1,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,71,1,758,61,1,0 +2013,8,13,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,57,1,2205,48,1,0 +2013,8,28,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1325,29,1,1633,101,1,0 +2013,4,11,4,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1715,19,1,1905,23,1,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,134,1,1535,126,1,0 +2013,7,28,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1602,14,0,1700,5,0,0 +2013,7,3,3,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,520,-2,0,845,8,0,0 +2013,8,12,1,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1905,-5,0,2056,3,0,0 +2013,7,28,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1225,-3,0,1320,-8,0,0 +2013,9,5,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1324,-9,0,1457,-12,0,0 +2013,7,14,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1332,105,1,1438,114,1,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1659,-7,0,2016,9,0,0 +2013,7,1,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1220,1,0,1416,-16,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1000,-3,0,1241,-25,0,0 +2013,6,4,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1245,-4,0,1416,-20,0,0 +2013,8,28,3,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1031,-1,0,1340,-4,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2030,-3,0,2212,-13,0,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,-1,0,2059,-12,0,0 +2013,4,28,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,730,-5,0,1550,11,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,12,0,1050,11,0,0 +2013,4,15,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1345,-7,0,1510,-8,0,0 +2013,4,29,1,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1230,-3,0,1535,-10,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1510,390,1,1850,391,1,0 +2013,6,9,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,0,0,2357,-2,0,0 +2013,6,1,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,0,0,1754,-4,0,0 +2013,10,22,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2140,-4,0,610,-40,0,0 +2013,4,25,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,4,0,2015,-11,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1745,88,1,1925,85,1,0 +2013,9,6,5,9E,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1808,-6,0,2120,-5,0,0 +2013,5,20,1,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1303,8,0,2130,31,1,0 +2013,6,1,6,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,615,-1,0,908,-10,0,0 +2013,5,27,1,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,113,1,2251,105,1,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1931,-9,0,2100,-18,0,0 +2013,8,13,2,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,24,1,1655,-1,0,0 +2013,10,18,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,0,2113,-5,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,-3,0,2148,-8,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,725,-1,0,955,-14,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,900,-1,0,1046,-12,0,0 +2013,8,30,5,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2325,-1,0,509,2,0,0 +2013,8,30,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,2,0,635,-6,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1725,2,0,1959,-3,0,0 +2013,4,1,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-2,0,947,13,0,0 +2013,4,12,5,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1740,-3,0,2150,-10,0,0 +2013,7,23,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,743,-8,0,847,-10,0,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,950,8,0,1221,0,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2130,19,1,2345,16,1,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-1,0,1555,-3,0,0 +2013,5,15,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,0,,2100,0,1,1 +2013,4,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2230,-5,0,2320,-6,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1945,180,1,2123,185,1,0 +2013,4,24,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1955,123,1,2347,148,1,0 +2013,7,21,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,2,0,800,-13,0,0 +2013,8,3,6,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1430,-2,0,1740,-17,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,844,-1,0,1126,-3,0,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,38,1,1755,38,1,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1840,33,1,2210,26,1,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,0,0,2055,-14,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,-2,0,1236,-5,0,0 +2013,9,15,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,815,-8,0,1221,0,0,0 +2013,7,31,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1643,10,0,2000,2,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,-6,0,1631,-12,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1105,-1,0,1410,-15,0,0 +2013,5,15,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1630,-2,0,1830,-2,0,0 +2013,8,19,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,6,0,1630,16,1,0 +2013,5,14,2,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1647,73,1,1752,61,1,0 +2013,8,6,2,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-4,0,1020,-18,0,0 +2013,8,13,2,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1146,-7,0,1704,-14,0,0 +2013,9,26,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1306,3,0,1345,8,0,0 +2013,8,25,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,6,0,2054,-2,0,0 +2013,10,16,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-3,0,1045,-21,0,0 +2013,7,23,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1515,50,1,1650,34,1,0 +2013,4,24,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,9,0,1850,11,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,730,-4,0,1100,-23,0,0 +2013,10,5,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,37,1,2113,27,1,0 +2013,9,25,3,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2339,61,1,805,67,1,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1530,-2,0,1847,-4,0,0 +2013,5,24,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,12,0,2140,19,1,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-5,0,1347,-10,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1115,-4,0,1158,-12,0,0 +2013,6,19,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1503,0,0,1658,-3,0,0 +2013,5,4,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1300,-3,0,1500,-13,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,2,0,1420,-2,0,0 +2013,8,15,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2040,28,1,2230,23,1,0 +2013,7,18,4,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-1,0,1745,-24,0,0 +2013,8,4,7,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,2,0,2155,-6,0,0 +2013,4,23,2,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-7,0,1250,19,1,0 +2013,6,25,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,600,-4,0,700,-8,0,0 +2013,9,12,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1119,-18,0,0 +2013,9,28,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1759,-7,0,2115,-7,0,0 +2013,9,10,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-1,0,2025,8,0,0 +2013,4,2,2,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1035,6,0,1349,6,0,0 +2013,8,1,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2020,23,1,2151,13,0,0 +2013,10,2,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1005,-4,0,1119,-5,0,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,825,0,0,1025,-8,0,0 +2013,9,3,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,700,0,0,1034,-5,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1255,14,0,1406,4,0,0 +2013,6,26,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2035,-4,0,2305,-20,0,0 +2013,9,30,1,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-4,0,1634,-15,0,0 +2013,6,13,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1307,-12,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,-5,0,1945,-2,0,0 +2013,8,30,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,845,-4,0,1215,-8,0,0 +2013,8,11,7,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1101,-11,0,1359,-30,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,-3,0,2107,-15,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2135,56,1,2240,47,1,0 +2013,5,27,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1045,-13,0,1201,-23,0,0 +2013,10,12,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1213,-1,0,1529,-4,0,0 +2013,6,2,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-3,0,1613,-7,0,0 +2013,5,20,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1102,-10,0,1234,-15,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1210,-4,0,1357,0,0,0 +2013,4,19,5,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1115,35,1,1250,48,1,0 +2013,8,24,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1510,-8,0,1641,2,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1005,-1,0,1600,-24,0,0 +2013,8,7,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1751,50,1,2058,53,1,0 +2013,10,17,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,730,-8,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1845,7,0,2010,2,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2040,-3,0,2152,-13,0,0 +2013,5,9,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,-2,0,2249,-8,0,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2115,-1,0,2230,5,0,0 +2013,9,19,4,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-4,0,912,-1,0,0 +2013,4,22,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,755,0,0,925,-3,0,0 +2013,8,2,5,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-5,0,911,-10,0,0 +2013,5,23,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,956,0,,1619,0,1,1 +2013,6,3,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-5,0,1100,-3,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2140,6,0,2225,-2,0,0 +2013,4,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1610,-3,0,1710,3,0,0 +2013,5,29,3,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,630,43,1,1125,41,1,0 +2013,7,27,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-7,0,1520,-20,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1700,0,,1839,0,1,1 +2013,6,28,5,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,630,0,0,858,-6,0,0 +2013,7,4,4,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1528,-14,0,1637,-18,0,0 +2013,9,22,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1315,-10,0,0 +2013,9,23,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1721,-3,0,1828,-7,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-1,0,1450,-15,0,0 +2013,7,2,2,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,1158,-7,0,1330,-18,0,0 +2013,7,9,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,-7,0,1901,-5,0,0 +2013,5,18,6,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1955,13,0,2157,3,0,0 +2013,8,12,1,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,637,-6,0,830,-22,0,0 +2013,8,27,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-3,0,1805,-18,0,0 +2013,5,28,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1400,1,0,1530,-16,0,0 +2013,8,12,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,946,-9,0,1007,-15,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1500,53,1,1605,44,1,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1620,7,0,1725,3,0,0 +2013,6,18,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,620,-5,0,746,-25,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1739,4,0,1850,11,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1907,29,1,2244,42,1,0 +2013,9,27,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,17,1,2055,9,0,0 +2013,7,10,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1104,3,0,1233,6,0,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,5,0,940,2,0,0 +2013,5,10,5,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1740,73,1,2102,69,1,0 +2013,8,16,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1935,-7,0,2120,-15,0,0 +2013,8,16,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,1,0,905,10,0,0 +2013,7,17,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1800,19,1,1915,1,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1307,-5,0,1634,-16,0,0 +2013,9,20,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,626,21,1,745,26,1,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-6,0,1640,-2,0,0 +2013,10,22,2,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-4,0,1555,-8,0,0 +2013,8,25,7,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1104,-14,0,1545,-8,0,0 +2013,10,1,2,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-11,0,1005,1,0,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,955,11,0,1614,7,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,-2,0,700,-5,0,0 +2013,5,23,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1426,5,0,1527,10,0,0 +2013,5,2,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,17,1,1303,31,1,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-6,0,2233,7,0,0 +2013,10,28,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,2,0,2328,-2,0,0 +2013,7,14,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1723,-6,0,1955,22,1,0 +2013,9,5,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,832,-7,0,921,-17,0,0 +2013,4,29,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-7,0,1705,-6,0,0 +2013,10,30,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-6,0,1857,15,1,0 +2013,6,23,7,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,-8,0,1205,-17,0,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1450,-6,0,1654,-22,0,0 +2013,9,5,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,908,-7,0,1021,-20,0,0 +2013,6,18,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1523,-2,0,1752,-1,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1045,-4,0,1210,-9,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,148,1,2105,185,1,0 +2013,10,6,7,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,13,0,2115,8,0,0 +2013,10,11,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,640,-1,0,743,-22,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1220,-3,0,1325,-12,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,-3,0,1521,-7,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1215,0,0,1317,-8,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2110,-3,0,2238,-7,0,0 +2013,9,12,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1334,-11,0,1453,-18,0,0 +2013,5,9,4,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,710,-4,0,1001,-9,0,0 +2013,10,26,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1054,-1,0,1226,9,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,76,1,1610,95,1,0 +2013,8,28,3,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1840,-2,0,2140,-29,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,615,2,0,810,-3,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1950,30,1,2110,40,1,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-3,0,1612,12,0,0 +2013,5,17,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-1,0,1319,-3,0,0 +2013,9,1,7,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-2,0,905,-10,0,0 +2013,10,4,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1210,-4,0,1612,-4,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1508,221,1,2046,204,1,0 +2013,5,9,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1116,11,0,1237,46,1,0 +2013,10,29,2,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1451,-6,0,1609,0,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1405,1,0,1500,-9,0,0 +2013,6,14,5,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,74,1,2010,54,1,0 +2013,9,21,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1545,-7,0,1650,-15,0,0 +2013,8,30,5,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1120,-2,0,1320,-2,0,0 +2013,6,3,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1314,-8,0,1535,21,1,0 +2013,6,9,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,-4,0,940,1,0,0 +2013,8,3,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1850,141,1,2045,128,1,0 +2013,7,4,4,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-6,0,1104,-16,0,0 +2013,5,31,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,846,-1,0,1058,-8,0,0 +2013,9,9,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1700,-3,0,1910,0,0,0 +2013,9,19,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2114,7,0,542,-19,0,0 +2013,8,8,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,104,1,1209,103,1,0 +2013,4,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-5,0,1950,-10,0,0 +2013,8,22,4,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1845,9,0,2014,-18,0,0 +2013,6,2,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-5,0,1008,-24,0,0 +2013,10,27,7,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-6,0,1825,-29,0,0 +2013,7,21,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-3,0,915,-8,0,0 +2013,7,18,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1015,3,0,1124,2,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1704,8,0,1952,-19,0,0 +2013,9,1,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,182,1,1615,194,1,0 +2013,10,2,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-4,0,807,-16,0,0 +2013,4,25,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,725,-2,0,850,-5,0,0 +2013,5,17,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,2,0,1845,3,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1432,-3,0,1619,10,0,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1055,-5,0,1230,-21,0,0 +2013,8,8,4,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,20,1,840,-5,0,0 +2013,10,3,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-2,0,1833,-10,0,0 +2013,8,10,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,749,-3,0,1040,-17,0,0 +2013,5,2,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,947,1,0,1349,1,0,0 +2013,9,29,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1250,-8,0,0 +2013,10,20,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1839,-7,0,2232,-1,0,0 +2013,7,23,2,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,-1,0,2133,10,0,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-4,0,815,-3,0,0 +2013,9,2,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1146,-10,0,1334,-33,0,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1323,3,0,1717,-31,0,0 +2013,9,24,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1602,-3,0,1719,-2,0,0 +2013,6,27,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,600,-1,0,716,-1,0,0 +2013,4,28,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1721,-2,0,1845,-4,0,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,2,0,1800,6,0,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,69,1,1250,60,1,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1525,13,0,1635,23,1,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2035,-2,0,2145,2,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,1,0,2000,7,0,0 +2013,5,24,5,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1842,134,1,2005,136,1,0 +2013,9,20,5,AS,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,8,0,1735,8,0,0 +2013,6,12,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,835,5,0,940,-2,0,0 +2013,10,25,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2055,-1,0,2205,-17,0,0 +2013,10,14,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1820,4,0,1930,-1,0,0 +2013,7,8,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,12,0,1400,0,0,0 +2013,6,12,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,835,-3,0,931,-4,0,0 +2013,8,18,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1545,1,0,1645,-8,0,0 +2013,4,12,5,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,-6,0,1515,-8,0,0 +2013,6,21,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,710,-3,0,910,5,0,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1720,4,0,2000,1,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1620,31,1,2000,34,1,0 +2013,7,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1621,-5,0,1946,-22,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2155,12,0,2315,6,0,0 +2013,8,13,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2025,-8,0,2125,4,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1010,0,0,1725,-18,0,0 +2013,4,21,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1225,-5,0,1320,-11,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1415,18,1,1640,-18,0,0 +2013,8,28,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1715,70,1,2026,90,1,0 +2013,4,10,3,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1250,-2,0,1555,-10,0,0 +2013,8,26,1,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1910,17,1,2140,4,0,0 +2013,7,24,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1638,-6,0,1800,-26,0,0 +2013,4,17,3,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,600,-1,0,700,2,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,830,124,1,925,141,1,0 +2013,9,18,3,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1530,-2,0,1745,-11,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,817,-4,0,1359,2,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1725,-6,0,1838,-23,0,0 +2013,5,28,2,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1803,16,1,1946,11,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-3,0,1150,-3,0,0 +2013,10,10,4,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,6,0,1943,6,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1235,-2,0,1505,-13,0,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,935,69,1,1300,101,1,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1415,-5,0,1649,-22,0,0 +2013,9,18,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1755,9,0,1850,89,1,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1932,5,0,2018,-7,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1750,0,0,1915,-7,0,0 +2013,7,28,7,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1400,1,0,1450,4,0,0 +2013,7,16,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1824,19,1,2148,-4,0,0 +2013,10,5,6,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,855,0,0,1050,-8,0,0 +2013,4,12,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,2010,-2,0,57,-7,0,0 +2013,10,19,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,36,1,1928,35,1,0 +2013,5,22,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-4,0,543,-6,0,0 +2013,6,15,6,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1700,38,1,1810,35,1,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1507,-3,0,1555,13,0,0 +2013,8,9,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,0,0,1550,-10,0,0 +2013,8,20,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,954,-7,0,1305,-6,0,0 +2013,8,2,5,OO,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2105,3,0,2311,12,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1605,30,1,1714,18,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,838,-3,0,1030,-4,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1518,319,1,1722,316,1,0 +2013,5,29,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1457,-3,0,1751,-10,0,0 +2013,10,6,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-2,0,1318,-6,0,0 +2013,7,17,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1550,-2,0,1645,-16,0,0 +2013,5,22,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,144,1,2119,145,1,0 +2013,6,5,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-4,0,705,-25,0,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2220,83,1,15,87,1,0 +2013,4,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1750,0,0,1915,-7,0,0 +2013,10,2,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1545,-2,0,1605,7,0,0 +2013,5,25,6,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,-5,0,1001,-3,0,0 +2013,5,31,5,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,840,-7,0,947,-21,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1432,-2,0,1606,-19,0,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,940,1,0,1045,6,0,0 +2013,6,11,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1256,7,0,1655,-6,0,0 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,22,1,1700,21,1,0 +2013,5,2,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1715,-5,0,1829,-15,0,0 +2013,5,20,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1225,10,0,1325,0,0,0 +2013,10,15,2,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2335,-5,0,750,-40,0,0 +2013,4,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2136,-2,0,2245,-1,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1930,-2,0,2059,-13,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1054,-2,0,1217,-15,0,0 +2013,8,9,5,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,9,0,1230,8,0,0 +2013,8,5,1,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1336,-3,0,1444,-11,0,0 +2013,10,6,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-3,0,950,-12,0,0 +2013,9,16,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1735,-10,0,1854,8,0,0 +2013,6,11,2,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2030,114,1,2211,83,1,0 +2013,5,17,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1410,0,0,1540,3,0,0 +2013,4,22,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1510,1,0,2011,-9,0,0 +2013,4,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1535,-3,0,1812,-8,0,0 +2013,7,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,105,1,1108,91,1,0 +2013,10,6,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,6,0,1855,7,0,0 +2013,9,4,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1915,-15,0,2100,-34,0,0 +2013,4,13,6,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1740,21,1,1945,7,0,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1305,28,1,1715,18,1,0 +2013,5,30,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1315,41,1,2124,32,1,0 +2013,6,19,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,10,0,1327,3,0,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1120,-3,0,1417,-17,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1540,20,1,1735,22,1,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1715,25,1,2330,39,1,0 +2013,7,18,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,1415,-3,0,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2024,-10,0,2149,-16,0,0 +2013,9,11,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,910,-4,0,1450,-21,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-1,0,1453,19,1,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2040,28,1,2155,32,1,0 +2013,4,2,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-3,0,945,3,0,0 +2013,4,8,1,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1305,-16,0,1440,-20,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-4,0,1101,-6,0,0 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1345,-2,0,1550,5,0,0 +2013,9,6,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,-1,0,1940,-8,0,0 +2013,10,12,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,725,-7,0,1112,-21,0,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-4,0,1130,-9,0,0 +2013,7,1,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-1,0,1315,33,1,0 +2013,10,14,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,910,32,1,1020,31,1,0 +2013,9,24,2,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,-11,0,501,-23,0,0 +2013,9,27,5,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,6,0,1706,-1,0,0 +2013,8,26,1,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1500,16,1,1725,30,1,0 +2013,5,3,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1146,-7,0,1358,-19,0,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1025,-2,0,1130,-14,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1603,-5,0,1730,-18,0,0 +2013,8,26,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1959,5,0,2103,-3,0,0 +2013,6,10,1,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-2,0,853,-5,0,0 +2013,4,25,4,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1217,-1,0,1322,-13,0,0 +2013,9,30,1,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-3,0,1303,-14,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2105,16,1,2210,12,0,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1550,-2,0,1747,-8,0,0 +2013,9,2,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1918,-8,0,2010,-10,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-3,0,1448,-18,0,0 +2013,8,2,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,939,6,0,1056,13,0,0 +2013,5,16,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,0,0,2358,-11,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,0,0,2123,4,0,0 +2013,5,23,4,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,605,5,0,741,-5,0,0 +2013,10,30,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,908,7,0,1231,-3,0,0 +2013,4,10,3,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-5,0,912,-5,0,0 +2013,8,6,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-8,0,1541,-32,0,0 +2013,4,19,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,0,0,1635,-1,0,0 +2013,8,30,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1359,14,0,1724,-22,0,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,810,14,0,1116,-9,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1530,-1,0,1630,1,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,2,0,1720,-11,0,0 +2013,8,18,7,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,-2,0,1515,-4,0,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,2,0,1448,7,0,0 +2013,9,13,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1710,-4,0,1755,-12,0,0 +2013,5,31,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,2003,-14,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,7,0,1410,6,0,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,-3,0,2247,-16,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,9,0,828,37,1,0 +2013,8,23,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1401,-11,0,1530,-10,0,0 +2013,9,16,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,610,2,0,710,-11,0,0 +2013,9,26,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,35,1,1815,28,1,0 +2013,4,11,4,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,-1,0,2025,5,0,0 +2013,7,6,6,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-9,0,1125,-5,0,0 +2013,8,18,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,0,0,1828,0,0,0 +2013,4,3,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1135,-3,0,2010,-10,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,20,1,2056,29,1,0 +2013,4,6,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1352,0,0,1536,-12,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1440,3,0,1805,-8,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,31,1,1953,62,1,0 +2013,4,4,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1050,-4,0,1308,-13,0,0 +2013,8,28,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,740,-2,0,1015,-21,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-3,0,1118,-26,0,0 +2013,9,14,6,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,720,-7,0,1000,-28,0,0 +2013,9,19,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-3,0,1908,5,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,6,0,1141,34,1,0 +2013,5,3,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,945,-5,0,1240,9,0,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1125,4,0,1700,14,0,0 +2013,9,3,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-1,0,1125,-5,0,0 +2013,4,7,7,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,725,-2,0,1018,0,0,0 +2013,8,28,3,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,810,-1,0,1029,-7,0,0 +2013,10,6,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1205,11,0,1315,2,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,16,1,1830,9,0,0 +2013,5,30,4,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1634,110,1,1757,127,1,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1235,10,0,1436,1,0,0 +2013,10,23,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-8,0,708,-19,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,120,-8,0,615,6,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1440,-2,0,1800,-17,0,0 +2013,4,11,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1743,40,1,2105,89,1,0 +2013,6,10,1,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,625,-7,0,808,-18,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,1,0,1825,-3,0,0 +2013,4,24,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1020,-1,0,1205,12,0,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,727,-2,0,900,12,0,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2215,-6,0,20,-15,0,0 +2013,5,6,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,19,1,1645,-18,0,0 +2013,8,2,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,-9,0,1015,-18,0,0 +2013,7,24,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-10,0,2135,-12,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,10,0,1829,13,0,0 +2013,8,11,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-3,0,1003,-26,0,0 +2013,8,8,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,900,-5,0,951,3,0,0 +2013,7,15,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,-8,0,1615,-10,0,0 +2013,5,1,3,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,0,0,2204,18,1,0 +2013,5,24,5,9E,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,805,-1,0,1030,0,0,0 +2013,10,31,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,0,0,1014,29,1,0 +2013,4,28,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,1024,-29,0,0 +2013,5,21,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-2,0,930,-1,0,0 +2013,8,21,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1550,-5,0,1810,-9,0,0 +2013,4,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,261,1,930,298,1,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-7,0,1149,-33,0,0 +2013,5,6,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1450,-8,0,1633,-28,0,0 +2013,5,26,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,1,0,1802,-7,0,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,0,0,2105,6,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,841,1,0,1606,-1,0,0 +2013,9,27,5,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1815,-5,0,1917,-13,0,0 +2013,4,21,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1120,-5,0,1512,-21,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1656,-2,0,1726,-12,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,148,1,2213,160,1,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,940,0,0,1514,-21,0,0 +2013,8,15,4,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1957,-6,0,2130,2,0,0 +2013,9,14,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1445,2,0,1740,-18,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,725,-1,0,850,-15,0,0 +2013,7,30,2,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1942,-2,0,2100,-22,0,0 +2013,8,1,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,1,0,915,12,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,169,1,848,166,1,0 +2013,7,3,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,11,0,1930,2,0,0 +2013,4,9,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1829,0,,2010,0,1,1 +2013,9,12,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,13,0,1411,8,0,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1825,2,0,1939,-13,0,0 +2013,9,18,3,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1947,9,0,2030,0,1,1 +2013,8,5,1,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-3,0,2055,-7,0,0 +2013,5,7,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,-6,0,545,-3,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1647,51,1,1834,101,1,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,-7,0,620,-10,0,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,957,-2,0,1215,-15,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1800,-3,0,1918,-22,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-5,0,1851,-15,0,0 +2013,5,15,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1733,0,0,1821,11,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1425,10,0,2000,-7,0,0 +2013,5,4,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1555,-2,0,1833,-8,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1212,-6,0,1357,-13,0,0 +2013,6,12,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,705,-6,0,1519,-1,0,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,-4,0,2124,-11,0,0 +2013,5,22,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-3,0,1414,-9,0,0 +2013,9,22,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,49,1,759,36,1,0 +2013,7,26,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,-6,0,1455,-12,0,0 +2013,6,12,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1455,1,0,1545,-4,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,2016,171,1,2358,170,1,0 +2013,5,24,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,715,-2,0,1246,-3,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,14,0,1815,20,1,0 +2013,4,1,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1542,-4,0,1734,-1,0,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-2,0,1829,-4,0,0 +2013,4,1,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1650,68,1,1806,60,1,0 +2013,7,9,2,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1850,101,1,2138,104,1,0 +2013,9,18,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-4,0,2143,-28,0,0 +2013,7,9,2,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,-3,0,2020,1,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,851,-7,0,1223,-14,0,0 +2013,7,5,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,1,0,2011,8,0,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,2359,-7,0,529,-37,0,0 +2013,10,7,1,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,940,-2,0,1055,-14,0,0 +2013,6,28,5,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2050,188,1,2255,183,1,0 +2013,4,9,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,0,,1528,0,1,1 +2013,7,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2055,0,0,2220,-7,0,0 +2013,7,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,-6,0,1311,0,0,0 +2013,7,7,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,15,1,1750,0,0,0 +2013,5,23,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1800,138,1,1943,126,1,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-1,0,2045,3,0,0 +2013,5,31,5,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,26,1,1820,4,0,0 +2013,9,16,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,6,0,2000,9,0,0 +2013,5,14,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,-3,0,2113,-26,0,0 +2013,4,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,900,2,0,1015,-8,0,0 +2013,6,19,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,911,-4,0,1132,-9,0,0 +2013,8,11,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1728,-7,0,1802,4,0,0 +2013,8,4,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-7,0,1559,-12,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,1,0,1535,-5,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1805,13,0,1915,0,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,900,9,0,1405,30,1,0 +2013,4,24,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,3,0,1955,-7,0,0 +2013,8,9,5,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1029,-4,0,1035,-20,0,0 +2013,7,6,6,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-7,0,1800,-25,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1600,0,,1830,0,1,1 +2013,9,4,3,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1130,-3,0,1615,-31,0,0 +2013,5,23,4,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,700,7,0,1525,-10,0,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-4,0,1758,0,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,185,1,1913,173,1,0 +2013,4,11,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,745,-35,0,1000,-6,0,0 +2013,6,16,7,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,-17,0,1030,-14,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1940,34,1,2245,24,1,0 +2013,9,19,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,38,1,1905,17,1,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-10,0,1822,-57,0,0 +2013,5,8,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1428,31,1,1513,29,1,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2115,45,1,2246,47,1,0 +2013,6,29,6,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,19,1,1027,13,0,0 +2013,5,23,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2040,15,1,2140,13,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1553,4,0,1728,15,1,0 +2013,5,16,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,832,-4,0,1059,-9,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,941,-2,0,1120,-24,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,43,1,1655,39,1,0 +2013,4,25,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,11,0,2135,8,0,0 +2013,10,19,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1315,-7,0,1435,-17,0,0 +2013,9,9,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,16,1,1055,12,0,0 +2013,9,7,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,0,0,1325,3,0,0 +2013,5,30,4,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,50,1,2039,88,1,0 +2013,9,2,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1135,-5,0,1330,-15,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1810,8,0,1940,3,0,0 +2013,10,25,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1812,-5,0,1955,-8,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1145,0,0,1240,-3,0,0 +2013,7,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-3,0,1425,-6,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1911,1,0,2242,-1,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1030,45,1,1843,63,1,0 +2013,10,6,7,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1315,-4,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1435,13,0,1950,16,1,0 +2013,9,26,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1920,9,0,1935,5,0,0 +2013,9,28,6,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,735,-4,0,1028,-15,0,0 +2013,6,30,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,710,-8,0,805,-20,0,0 +2013,9,12,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-6,0,1230,-7,0,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1545,-5,0,1736,-12,0,0 +2013,4,16,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1840,-3,0,2005,-12,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1510,1,0,1605,13,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,820,20,1,915,15,1,0 +2013,6,29,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1657,5,0,1742,8,0,0 +2013,6,3,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,-4,0,932,-12,0,0 +2013,5,30,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,738,-18,0,0 +2013,10,26,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1505,-6,0,1820,-23,0,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2009,16,1,2102,11,0,0 +2013,6,21,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1752,-10,0,0 +2013,10,13,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1501,20,1,1720,8,0,0 +2013,5,4,6,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-2,0,1301,-3,0,0 +2013,9,4,3,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-8,0,1220,-19,0,0 +2013,5,23,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-1,0,1520,-1,0,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,600,0,0,725,-1,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,30,1,2305,38,1,0 +2013,9,5,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-13,0,2058,-23,0,0 +2013,10,20,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,910,-8,0,1055,-31,0,0 +2013,8,26,1,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-5,0,1238,-13,0,0 +2013,6,20,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1848,-3,0,1949,-18,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1535,3,0,1640,1,0,0 +2013,6,26,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1354,-4,0,1450,-5,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-3,0,1250,-24,0,0 +2013,6,28,5,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1906,-9,0,2101,-18,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,846,11,0,1134,10,0,0 +2013,10,7,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1459,-1,0,1756,-8,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,-4,0,2035,-14,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1330,0,,1550,0,1,1 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,14,0,1030,9,0,0 +2013,10,9,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-5,0,1937,2,0,0 +2013,10,10,4,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,249,1,2035,226,1,0 +2013,6,4,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-4,0,1555,-4,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1718,-1,0,1854,-17,0,0 +2013,10,18,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1230,-5,0,1509,4,0,0 +2013,4,2,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1435,14,0,2009,3,0,0 +2013,8,24,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,30,1,1625,22,1,0 +2013,7,20,6,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1330,-5,0,1433,-14,0,0 +2013,7,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-2,0,1556,-1,0,0 +2013,7,25,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,20,1,1946,0,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1935,29,1,2049,10,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2145,1,0,2305,-12,0,0 +2013,4,5,5,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,845,-2,0,1235,-5,0,0 +2013,10,24,4,WN,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,6,0,1445,11,0,0 +2013,8,3,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2010,3,0,2135,4,0,0 +2013,6,2,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1115,-9,0,0 +2013,8,28,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-10,0,1055,-19,0,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,2155,3,0,2335,9,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-4,0,801,-3,0,0 +2013,10,28,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2001,-9,0,2019,-14,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1715,-7,0,2059,10,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1915,-3,0,2145,-19,0,0 +2013,7,19,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1850,-8,0,2033,10,0,0 +2013,5,16,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,915,44,1,1649,40,1,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,715,-6,0,913,-25,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1345,10,0,1615,-2,0,0 +2013,8,24,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,8,0,1656,-8,0,0 +2013,4,8,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1745,66,1,1925,55,1,0 +2013,10,6,7,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,1639,-7,0,0 +2013,5,10,5,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2111,72,1,2359,68,1,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,1,0,2135,3,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2125,0,0,20,-11,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,0,0,1333,-15,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,939,-4,0,1150,-16,0,0 +2013,10,3,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-5,0,1916,-3,0,0 +2013,8,1,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2213,-10,0,2306,-15,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,77,1,2025,71,1,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1810,6,0,2009,-6,0,0 +2013,6,29,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2145,0,0,2301,-6,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-2,0,1442,-5,0,0 +2013,4,26,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1855,-1,0,1955,-11,0,0 +2013,7,14,7,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-4,0,845,-12,0,0 +2013,5,11,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2150,-3,0,28,-24,0,0 +2013,6,11,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,0,0,1252,-8,0,0 +2013,7,5,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,610,0,0,730,0,0,0 +2013,8,20,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-4,0,1749,-30,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1910,29,1,2045,49,1,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1210,-2,0,1310,-4,0,0 +2013,6,10,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1344,0,,1530,0,1,1 +2013,9,19,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1305,55,1,1500,60,1,0 +2013,7,5,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-14,0,2050,-13,0,0 +2013,5,17,5,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,920,-6,0,0 +2013,5,13,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1625,-3,0,1904,3,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,-2,0,2119,-9,0,0 +2013,10,4,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,0,0,1634,-21,0,0 +2013,9,15,7,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1845,-4,0,2125,-13,0,0 +2013,4,12,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1510,-1,0,1813,-4,0,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,52,1,1105,40,1,0 +2013,7,26,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,-9,0,2200,-18,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,710,-4,0,937,-13,0,0 +2013,10,20,7,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1905,150,1,2027,150,1,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1030,-2,0,1350,-16,0,0 +2013,8,6,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1850,1,0,2130,-1,0,0 +2013,4,3,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2259,-2,0,609,1,0,0 +2013,8,13,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1150,5,0,1220,5,0,0 +2013,5,11,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1025,-3,0,1155,-8,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,945,-1,0,1202,-13,0,0 +2013,10,28,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,13,0,1400,5,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1730,-2,0,2205,3,0,0 +2013,10,8,2,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,825,-4,0,1041,-14,0,0 +2013,7,3,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,-5,0,2115,-13,0,0 +2013,6,23,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1000,0,0,1255,-20,0,0 +2013,7,2,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,1411,-2,0,1945,-5,0,0 +2013,6,14,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2055,0,0,2300,-7,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2230,-7,0,2330,-10,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1510,40,1,2048,27,1,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2025,-2,0,2355,-7,0,0 +2013,4,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1555,18,1,1755,10,0,0 +2013,7,21,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1110,-7,0,1317,-8,0,0 +2013,4,10,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1913,79,1,2135,76,1,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1450,-4,0,1630,-4,0,0 +2013,10,28,1,US,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-9,0,1900,-18,0,0 +2013,7,13,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1340,0,0,1405,10,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-3,0,1437,-12,0,0 +2013,4,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1610,11,0,1800,-6,0,0 +2013,7,31,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-9,0,955,-21,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,737,-4,0,1300,-6,0,0 +2013,10,16,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,1,0,930,-2,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2015,29,1,2155,33,1,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-2,0,1601,-7,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,2055,7,0,2245,13,0,0 +2013,10,13,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1831,32,1,2125,21,1,0 +2013,10,26,6,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,732,0,,954,0,1,1 +2013,4,20,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1156,-2,0,1248,-16,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-1,0,1917,-13,0,0 +2013,8,31,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1600,1,0,1750,-11,0,0 +2013,5,5,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,600,-3,0,755,-33,0,0 +2013,10,7,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1335,27,1,1500,156,1,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1640,36,1,1800,42,1,0 +2013,7,6,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,545,-10,0,759,-27,0,0 +2013,5,24,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1424,30,1,1531,63,1,0 +2013,10,14,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1741,17,1,1848,7,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1440,18,1,2000,-5,0,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2130,13,0,2222,4,0,0 +2013,8,9,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,7,0,800,30,1,0 +2013,7,26,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-6,0,901,-15,0,0 +2013,5,17,5,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,630,1,0,700,-6,0,0 +2013,10,10,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,35,1,1905,20,1,0 +2013,10,22,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,707,-2,0,813,-8,0,0 +2013,10,14,1,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,745,-3,0,1501,17,1,0 +2013,7,25,4,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2053,-7,0,500,-13,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1311,-5,0,1452,-23,0,0 +2013,4,17,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,650,2,0,750,-8,0,0 +2013,7,15,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1602,-6,0,1744,-7,0,0 +2013,5,11,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,610,-3,0,848,-4,0,0 +2013,6,1,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1535,156,1,1655,144,1,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,959,-1,0,1342,-19,0,0 +2013,9,29,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,755,-11,0,905,-24,0,0 +2013,7,31,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1150,9,0,1810,-12,0,0 +2013,4,2,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1956,31,1,2115,35,1,0 +2013,6,18,2,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1239,-2,0,1406,-9,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2240,-6,0,115,-10,0,0 +2013,6,16,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1911,7,0,2229,-12,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1100,-2,0,1223,-11,0,0 +2013,5,25,6,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1551,-9,0,2359,-22,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1249,-3,0,1615,-10,0,0 +2013,6,1,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,830,-1,0,1013,-2,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1550,108,1,1655,122,1,0 +2013,5,17,5,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-6,0,919,-9,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-1,0,1655,-8,0,0 +2013,7,6,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,551,-3,0,700,-16,0,0 +2013,6,24,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,935,150,1,1801,176,1,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1435,14,0,1805,8,0,0 +2013,8,17,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-13,0,2347,-5,0,0 +2013,8,15,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,2,0,1050,-9,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,700,-2,0,750,0,0,0 +2013,6,9,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,1205,-10,0,0 +2013,10,4,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1505,0,0,1600,-8,0,0 +2013,8,17,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,710,-1,0,939,-13,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,844,-2,0,1041,-12,0,0 +2013,10,13,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,919,-5,0,1128,-18,0,0 +2013,6,20,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,4,0,1950,-9,0,0 +2013,5,11,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,940,-1,0,1040,-3,0,0 +2013,7,15,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-3,0,2155,-14,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,-2,0,2350,0,0,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-2,0,1830,-18,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,-2,0,850,-9,0,0 +2013,9,10,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,817,-5,0,1404,14,0,0 +2013,6,9,7,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,-2,0,2059,3,0,0 +2013,8,11,7,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2030,2,0,2211,-5,0,0 +2013,10,15,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1817,-4,0,2118,7,0,0 +2013,7,22,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-1,0,838,14,0,0 +2013,9,26,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,650,-10,0,1012,-34,0,0 +2013,6,25,2,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2120,156,1,2255,143,1,0 +2013,7,24,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1100,-1,0,1432,-10,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2010,92,1,2310,86,1,0 +2013,10,6,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,750,0,,1014,0,1,1 +2013,6,11,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1518,-3,0,1622,13,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1445,12,0,1705,14,0,0 +2013,8,9,5,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2011,11,0,705,-10,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1209,2,0,1346,-17,0,0 +2013,9,9,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,-11,0,2104,2,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,-5,0,1209,-19,0,0 +2013,4,26,5,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-2,0,1024,4,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1532,1,0,1721,-22,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,-1,0,1116,-2,0,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1200,239,1,2039,209,1,0 +2013,8,25,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-6,0,1320,-14,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1540,162,1,1735,149,1,0 +2013,5,10,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-3,0,909,2,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1120,40,1,1306,32,1,0 +2013,10,23,3,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1700,-1,0,1952,-10,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,815,-3,0,1003,6,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,5,0,1525,8,0,0 +2013,4,2,2,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,-5,0,809,-21,0,0 +2013,10,20,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1719,0,0,2112,-16,0,0 +2013,6,9,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,35,1,520,40,1,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,820,7,0,1310,-7,0,0 +2013,5,22,3,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,830,-3,0,957,-7,0,0 +2013,10,3,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1310,15,1,1445,14,0,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2140,20,1,35,23,1,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1043,-1,0,1220,-14,0,0 +2013,6,1,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,705,-3,0,900,-7,0,0 +2013,7,5,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,538,-11,0,655,-14,0,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1810,121,1,1950,113,1,0 +2013,5,31,5,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-6,0,759,-16,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,845,1,0,1110,18,1,0 +2013,6,15,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-9,0,1052,-3,0,0 +2013,8,4,7,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-3,0,1035,5,0,0 +2013,8,16,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1725,4,0,1838,-2,0,0 +2013,6,25,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,610,2,0,710,-6,0,0 +2013,4,25,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-4,0,1859,-7,0,0 +2013,8,12,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,50,1,2254,28,1,0 +2013,6,30,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1917,-3,0,15,-13,0,0 +2013,7,25,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1900,0,0,2145,-3,0,0 +2013,5,17,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,600,25,1,700,7,0,0 +2013,7,11,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2335,-6,0,720,20,1,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2022,-2,0,2352,-18,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,13,0,1150,5,0,0 +2013,4,30,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,7,0,949,10,0,0 +2013,9,29,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,7,0,1315,-3,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1301,-2,0,1633,-24,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,645,-2,0,855,-9,0,0 +2013,6,1,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-2,0,830,-10,0,0 +2013,5,6,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,-7,0,1434,-13,0,0 +2013,4,8,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1350,0,0,1718,-2,0,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1515,70,1,1555,84,1,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,10,0,1355,75,1,0 +2013,8,6,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-5,0,2104,-12,0,0 +2013,8,20,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1446,3,0,2029,10,0,0 +2013,10,3,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,17,1,2005,0,0,0 +2013,10,3,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1700,41,1,1815,36,1,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2258,102,1,44,84,1,0 +2013,7,14,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-2,0,1115,1,0,0 +2013,5,14,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,629,-8,0,825,-24,0,0 +2013,8,16,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,0,0,720,2,0,0 +2013,8,25,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,530,-6,0,740,-1,0,0 +2013,7,30,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1334,-19,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-2,0,40,-17,0,0 +2013,10,27,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1035,-4,0,1155,-11,0,0 +2013,5,31,5,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,10,0,1945,6,0,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,35,1,1515,42,1,0 +2013,8,7,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,2,0,1128,37,1,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,855,-1,0,1005,25,1,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1810,5,0,2000,7,0,0 +2013,4,21,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,16,1,1906,6,0,0 +2013,6,8,6,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,608,-7,0,814,-12,0,0 +2013,4,22,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1135,-1,0,1305,-13,0,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1038,-6,0,1247,-6,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1920,21,1,2232,4,0,0 +2013,4,29,1,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,704,-2,0,832,-8,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1720,2,0,2045,-9,0,0 +2013,10,31,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1629,-3,0,1919,-8,0,0 +2013,7,17,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-9,0,1505,-33,0,0 +2013,6,19,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,515,-6,0,635,-18,0,0 +2013,7,4,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1453,10,0,1755,-5,0,0 +2013,6,15,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-5,0,2011,-13,0,0 +2013,10,25,5,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-4,0,2105,-40,0,0 +2013,4,6,6,F9,13871,Eppley Airfield,Omaha,NE,13204,Orlando International,Orlando,FL,1703,-7,0,2055,-6,0,0 +2013,9,22,7,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1949,-1,0,2025,4,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2029,-3,0,2331,-24,0,0 +2013,7,22,1,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-6,0,901,-1,0,0 +2013,4,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2147,4,0,2247,-3,0,0 +2013,8,18,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-8,0,1404,-12,0,0 +2013,5,17,5,FL,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1440,-2,0,1752,-5,0,0 +2013,8,3,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1656,-1,0,1754,-2,0,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1920,1,0,2243,-5,0,0 +2013,4,21,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1143,-13,0,0 +2013,10,5,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1845,-3,0,1950,-19,0,0 +2013,6,9,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,923,-5,0,955,-6,0,0 +2013,6,16,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-6,0,622,-16,0,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,730,-1,0,1016,-20,0,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,-2,0,755,-5,0,0 +2013,7,6,6,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-3,0,1018,4,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1730,-1,0,2250,-6,0,0 +2013,10,14,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1742,-5,0,1850,-4,0,0 +2013,9,12,4,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1317,0,0,1505,-7,0,0 +2013,4,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,730,83,1,910,58,1,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1945,24,1,2255,14,0,0 +2013,6,5,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1905,2,0,2020,-8,0,0 +2013,7,5,5,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1254,0,0,1747,-1,0,0 +2013,8,1,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,908,-4,0,1200,13,0,0 +2013,6,13,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,-6,0,729,-2,0,0 +2013,4,24,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,-4,0,1800,-6,0,0 +2013,4,16,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-8,0,622,-7,0,0 +2013,5,5,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-5,0,753,-26,0,0 +2013,9,5,4,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1520,12,0,655,16,1,0 +2013,5,22,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,8,0,1850,0,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,825,-1,0,945,-5,0,0 +2013,6,19,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1529,11,0,1535,11,0,0 +2013,6,9,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,15,1,840,36,1,0 +2013,5,5,7,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1750,-1,0,2005,-18,0,0 +2013,8,2,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1525,9,0,1757,8,0,0 +2013,5,19,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,-6,0,1210,-5,0,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1150,4,0,1315,1,0,0 +2013,5,24,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1520,2,0,1620,1,0,0 +2013,9,20,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1803,3,0,1848,-2,0,0 +2013,5,8,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,-6,0,740,-27,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1035,-4,0,1430,-3,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2155,94,1,2315,93,1,0 +2013,9,10,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,-10,0,2017,-4,0,0 +2013,8,2,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,645,-3,0,1156,19,1,0 +2013,9,4,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-5,0,849,-3,0,0 +2013,9,18,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,850,8,0,1552,0,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,-4,0,1025,-8,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2050,-6,0,2302,-20,0,0 +2013,8,21,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1915,-3,0,2211,-31,0,0 +2013,7,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1201,-3,0,1302,-7,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1750,47,1,2008,27,1,0 +2013,7,8,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,-3,0,2100,-8,0,0 +2013,5,27,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1344,246,1,1635,236,1,0 +2013,7,14,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1726,-6,0,2110,-19,0,0 +2013,4,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1640,9,0,1750,-4,0,0 +2013,9,15,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2026,16,1,454,5,0,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,-3,0,1755,-39,0,0 +2013,8,26,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,735,2,0,830,-2,0,0 +2013,9,12,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,-5,0,853,3,0,0 +2013,5,6,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,9,0,745,-6,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1749,-1,0,1915,-24,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1710,155,1,2340,152,1,0 +2013,10,22,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-2,0,1807,-17,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-12,0,1010,-6,0,0 +2013,10,5,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,747,27,1,828,19,1,0 +2013,10,15,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,-7,0,1915,13,0,0 +2013,9,10,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1348,-13,0,0 +2013,10,11,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2205,22,1,2358,-3,0,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,-4,0,519,-8,0,0 +2013,10,8,2,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,835,-3,0,1110,-11,0,0 +2013,10,18,5,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,905,-4,0,1150,-7,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,805,-5,0,1125,-10,0,0 +2013,7,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-5,0,1624,-15,0,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,900,-3,0,1201,-5,0,0 +2013,9,6,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1156,-3,0,1352,-19,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1715,63,1,1940,59,1,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-6,0,1235,-18,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,68,1,1303,84,1,0 +2013,9,17,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1649,-8,0,1726,-16,0,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1105,-4,0,1155,-11,0,0 +2013,9,22,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2046,-1,0,2206,-10,0,0 +2013,8,14,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,625,-2,0,725,-1,0,0 +2013,7,27,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,645,-2,0,1030,-9,0,0 +2013,9,23,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,1,0,750,-11,0,0 +2013,4,19,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,56,1,2307,134,1,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,5,0,1705,7,0,0 +2013,8,29,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-11,0,2019,-11,0,0 +2013,9,5,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-7,0,648,-24,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-1,0,1500,1,0,0 +2013,5,23,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,3,0,1240,6,0,0 +2013,8,5,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,810,-5,0,1200,-14,0,0 +2013,8,7,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,751,14,0,926,58,1,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1746,-7,0,1840,-16,0,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1710,36,1,2025,28,1,0 +2013,4,7,7,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,730,-5,0,1113,-22,0,0 +2013,9,18,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1415,28,1,1600,18,1,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,924,3,0,1048,-5,0,0 +2013,10,27,7,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1645,-2,0,1840,-7,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,5,0,2030,1,0,0 +2013,8,1,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,610,-1,0,655,-7,0,0 +2013,9,24,2,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1855,-5,0,2130,4,0,0 +2013,9,5,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2030,-10,0,2302,-2,0,0 +2013,5,18,6,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1248,-3,0,1500,-11,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1310,21,1,1435,12,0,0 +2013,9,7,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1747,-5,0,1934,-11,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2210,0,,2355,0,1,1 +2013,8,5,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,1302,-5,0,0 +2013,5,9,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,1,0,710,-1,0,0 +2013,9,10,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,-2,0,1425,-6,0,0 +2013,6,6,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-10,0,1517,-5,0,0 +2013,7,14,7,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,700,-1,0,800,-11,0,0 +2013,4,12,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-3,0,840,44,1,0 +2013,5,28,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-10,0,1920,-9,0,0 +2013,10,22,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,1,0,1853,-3,0,0 +2013,10,5,6,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,555,-6,0,830,-20,0,0 +2013,6,29,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-3,0,1633,-4,0,0 +2013,5,3,5,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1200,3,0,1412,-5,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1750,9,0,2005,3,0,0 +2013,6,20,4,YV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1817,-3,0,1853,-16,0,0 +2013,4,1,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1408,4,0,1655,33,1,0 +2013,4,4,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,-6,0,1558,-4,0,0 +2013,6,22,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,1130,-23,0,0 +2013,9,3,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1411,-3,0,1537,13,0,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,21,1,2300,15,1,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1510,-3,0,1745,-6,0,0 +2013,8,14,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,709,-8,0,848,3,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-9,0,1033,-7,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1100,-3,0,1320,0,0,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,95,1,2105,129,1,0 +2013,9,21,6,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,630,28,1,753,31,1,0 +2013,6,7,5,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-6,0,1538,-1,0,0 +2013,4,5,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2020,-6,0,2200,-22,0,0 +2013,4,25,4,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,642,-6,0,845,-32,0,0 +2013,6,26,3,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2106,1,0,30,-9,0,0 +2013,4,15,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,33,1,2140,33,1,0 +2013,6,29,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1315,2,0,1345,10,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,0,0,1105,-7,0,0 +2013,4,14,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1620,-11,0,1914,-19,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,7,0,940,12,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1130,-5,0,1510,-7,0,0 +2013,4,19,5,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1338,-3,0,1706,5,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,12,0,2315,14,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2010,3,0,2325,4,0,0 +2013,9,21,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,847,-5,0,1050,-9,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1905,56,1,2035,55,1,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,755,6,0,900,0,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,76,1,1815,68,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1958,17,1,2200,19,1,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1035,-8,0,1650,-31,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,34,1,1617,26,1,0 +2013,5,20,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-5,0,1122,-21,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,-5,0,1357,17,1,0 +2013,8,4,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,2,0,825,-10,0,0 +2013,7,21,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1651,-10,0,2000,11,0,0 +2013,9,5,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-7,0,1420,-12,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1754,0,0,2025,-9,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1757,-1,0,1934,5,0,0 +2013,9,10,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1940,-3,0,2120,-27,0,0 +2013,8,3,6,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2000,5,0,2308,-24,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-6,0,1034,11,0,0 +2013,4,13,6,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1530,-5,0,1646,-10,0,0 +2013,10,16,3,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1229,-5,0,1515,-21,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,1,0,935,2,0,0 +2013,4,15,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-2,0,1623,9,0,0 +2013,4,25,4,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,835,75,1,1020,104,1,0 +2013,6,21,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1856,0,,2042,0,1,1 +2013,10,15,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1855,14,0,1945,15,1,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1211,-4,0,1346,-14,0,0 +2013,7,9,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,19,1,2202,14,0,0 +2013,10,3,4,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-3,0,847,-12,0,0 +2013,4,22,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1055,15,1,1320,-1,0,0 +2013,6,16,7,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1115,-7,0,1330,-13,0,0 +2013,7,10,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,116,1,1846,125,1,0 +2013,10,24,4,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-2,0,2045,-11,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1915,7,0,2205,5,0,0 +2013,4,17,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,945,-6,0,1131,-5,0,0 +2013,5,24,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2112,10,0,2243,8,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1135,34,1,1315,46,1,0 +2013,10,17,4,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1855,-1,0,2209,-12,0,0 +2013,6,18,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1634,4,0,1805,-1,0,0 +2013,8,21,3,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,0,0,1532,-10,0,0 +2013,8,2,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1745,-4,0,1855,-7,0,0 +2013,8,7,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-5,0,1159,-12,0,0 +2013,5,6,1,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1225,1,0,2055,24,1,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1310,85,1,1525,79,1,0 +2013,7,6,6,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1640,0,,2201,0,1,1 +2013,7,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,26,1,2205,23,1,0 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,630,0,,725,0,1,1 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,919,15,1,1052,34,1,0 +2013,9,18,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1428,-6,0,1548,-23,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1640,39,1,2320,25,1,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1011,13,0,1550,-5,0,0 +2013,9,22,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,-3,0,2353,-10,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1140,23,1,1330,-6,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,5,0,1038,-9,0,0 +2013,7,13,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1040,-5,0,1150,-10,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1355,-1,0,1519,3,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2059,-7,0,2245,-17,0,0 +2013,9,30,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-5,0,1919,-5,0,0 +2013,9,17,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1751,2,0,0 +2013,6,26,3,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-11,0,1213,2,0,0 +2013,7,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1758,23,1,1824,16,1,0 +2013,7,15,1,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-6,0,2230,20,1,0 +2013,4,4,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1309,5,0,1425,12,0,0 +2013,8,10,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1144,9,0,1240,2,0,0 +2013,4,8,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,-10,0,2015,-27,0,0 +2013,8,21,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1123,-1,0,1336,-1,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,23,1,1730,19,1,0 +2013,8,11,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,18,1,1450,11,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-1,0,1325,-3,0,0 +2013,8,9,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2201,-6,0,2301,-19,0,0 +2013,5,12,7,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1100,-1,0,1446,-20,0,0 +2013,4,17,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-3,0,946,-23,0,0 +2013,9,18,3,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2055,-4,0,2359,-13,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,830,-3,0,1117,-4,0,0 +2013,7,9,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1305,125,1,1616,133,1,0 +2013,7,7,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1105,-8,0,1630,-15,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,630,-2,0,905,-10,0,0 +2013,10,20,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-9,0,1336,-19,0,0 +2013,6,17,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1656,0,0,1918,-10,0,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1711,-1,0,2039,16,1,0 +2013,5,6,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1215,-3,0,1320,-16,0,0 +2013,8,10,6,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1601,130,1,1644,138,1,0 +2013,5,25,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-3,0,1829,-22,0,0 +2013,8,24,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1243,1,0,2101,-10,0,0 +2013,4,29,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1223,5,0,1443,-4,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,836,-4,0,959,-2,0,0 +2013,10,27,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1341,-11,0,0 +2013,5,7,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,2,0,1830,-4,0,0 +2013,6,19,3,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1805,1,0,2040,10,0,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,0,0,2004,-13,0,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1940,0,,2245,0,1,1 +2013,5,30,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1505,7,0,1605,8,0,0 +2013,10,28,1,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1900,71,1,2018,76,1,0 +2013,4,8,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,8,0,1205,-16,0,0 +2013,4,26,5,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1915,46,1,2155,50,1,0 +2013,7,21,7,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,0,0,955,-15,0,0 +2013,7,12,5,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2333,103,1,500,109,1,0 +2013,6,11,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1555,40,1,1730,52,1,0 +2013,10,17,4,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1531,6,0,1951,5,0,0 +2013,5,14,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,925,-13,0,0 +2013,10,6,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1230,-9,0,1410,-15,0,0 +2013,6,10,1,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1501,19,1,1919,46,1,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2021,11,0,2141,21,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,34,1,1305,35,1,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,845,-4,0,1035,-4,0,0 +2013,4,7,7,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,920,-7,0,1200,-11,0,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1609,7,0,1929,-12,0,0 +2013,10,2,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-11,0,1725,-17,0,0 +2013,4,6,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1011,0,0,0 +2013,8,28,3,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,957,-6,0,1055,-12,0,0 +2013,9,17,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1037,0,0,1139,-6,0,0 +2013,6,9,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1415,2,0,2020,4,0,0 +2013,7,31,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1030,-3,0,1142,-4,0,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1225,5,0,1820,-15,0,0 +2013,10,28,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,6,0,1928,-8,0,0 +2013,6,9,7,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1205,-6,0,1350,-28,0,0 +2013,6,6,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1645,-6,0,1824,-4,0,0 +2013,8,12,1,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1615,26,1,1805,30,1,0 +2013,7,21,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-7,0,1915,6,0,0 +2013,7,16,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-1,0,1415,2,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1745,7,0,1943,18,1,0 +2013,4,18,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,3,0,115,-3,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1129,-3,0,1302,-2,0,0 +2013,7,28,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1750,6,0,1915,49,1,0 +2013,10,16,3,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,802,1,0,1016,5,0,0 +2013,5,21,2,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1825,21,1,2005,-14,0,0 +2013,7,18,4,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,138,1,1806,163,1,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1015,17,1,1345,1,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1506,-1,0,1614,3,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,-3,0,2317,6,0,0 +2013,6,19,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-4,0,1015,-3,0,0 +2013,5,24,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1025,-4,0,1130,-14,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,610,1,0,735,-7,0,0 +2013,5,15,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,646,-6,0,812,-2,0,0 +2013,4,14,7,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1825,-5,0,2035,8,0,0 +2013,7,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,95,1,1311,83,1,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1755,4,0,2131,1,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1731,-1,0,1835,-4,0,0 +2013,9,11,3,DL,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1530,-7,0,1719,14,0,0 +2013,4,22,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1045,2,0,1150,-6,0,0 +2013,5,11,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,23,1,2020,7,0,0 +2013,8,6,2,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1019,3,0,1440,-7,0,0 +2013,9,29,7,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1500,-2,0,1718,-3,0,0 +2013,6,15,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,11,0,1201,16,1,0 +2013,9,19,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,33,1,2035,30,1,0 +2013,9,7,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,949,-7,0,1045,-13,0,0 +2013,5,16,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,728,9,0,906,-3,0,0 +2013,9,24,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1509,-2,0,1635,-12,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,-4,0,911,-5,0,0 +2013,10,6,7,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,725,3,0,1010,-7,0,0 +2013,10,11,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1225,-3,0,1507,-7,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,600,-5,0,1055,-12,0,0 +2013,9,27,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,857,-7,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1815,22,1,2335,6,0,0 +2013,6,22,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1305,-8,0,1525,-17,0,0 +2013,10,4,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,942,0,0,0 +2013,8,5,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,102,1,2010,97,1,0 +2013,5,20,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,940,-4,0,1110,-24,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1315,6,0,1630,1,0,0 +2013,8,17,6,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1446,-3,0,2029,-8,0,0 +2013,7,12,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1800,10,0,1820,6,0,0 +2013,5,19,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1722,65,1,1953,57,1,0 +2013,5,27,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1210,-4,0,1529,-7,0,0 +2013,5,19,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,243,1,739,249,1,0 +2013,10,14,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,44,1,1705,41,1,0 +2013,5,24,5,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,0,0,1249,2,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,700,-4,0,835,-9,0,0 +2013,6,12,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,31,1,1527,28,1,0 +2013,8,16,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2030,7,0,2155,-15,0,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,604,-3,0,905,-33,0,0 +2013,4,19,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1905,9,0,1955,-1,0,0 +2013,6,23,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1655,12,0,1805,8,0,0 +2013,5,5,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1649,169,1,1910,137,1,0 +2013,6,20,4,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1500,-3,0,1845,47,1,0 +2013,6,28,5,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,1340,234,1,1940,228,1,0 +2013,5,16,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-6,0,1821,-2,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1325,-2,0,1645,-17,0,0 +2013,10,16,3,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2140,-12,0,2346,-8,0,0 +2013,4,15,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-12,0,1221,-31,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1535,5,0,1710,-21,0,0 +2013,8,31,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,949,-7,0,1045,-7,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1800,9,0,2030,-13,0,0 +2013,9,27,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-5,0,1933,-14,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,13,0,1005,3,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,855,-1,0,1106,-3,0,0 +2013,8,20,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,618,0,,940,0,1,1 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,915,19,1,1037,0,0,0 +2013,4,16,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1935,54,1,2230,32,1,0 +2013,10,28,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1650,-9,0,1839,-13,0,0 +2013,8,24,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1116,-7,0,1212,-7,0,0 +2013,6,20,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,-2,0,1405,5,0,0 +2013,4,2,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,4,0,1535,-9,0,0 +2013,8,26,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,-5,0,1459,-17,0,0 +2013,4,8,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,910,-10,0,0 +2013,6,2,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1430,21,1,1555,10,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-4,0,930,-27,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,820,0,0,938,-18,0,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2040,35,1,2340,28,1,0 +2013,10,11,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,10,0,2140,9,0,0 +2013,8,1,4,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,7,0,1530,7,0,0 +2013,6,12,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,910,13,0,1015,0,0,0 +2013,7,28,7,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,550,-4,0,703,-16,0,0 +2013,5,15,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,752,-6,0,841,-12,0,0 +2013,4,18,4,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1149,0,,1418,0,1,1 +2013,10,10,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1005,63,1,1237,95,1,0 +2013,6,10,1,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,-2,0,2308,12,0,0 +2013,5,31,5,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1435,54,1,1624,37,1,0 +2013,10,2,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2200,-3,0,2247,-4,0,0 +2013,8,27,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-10,0,1900,-8,0,0 +2013,6,12,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,15,1,1943,-2,0,0 +2013,4,4,4,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,550,-4,0,826,23,1,0 +2013,5,14,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-6,0,1655,-4,0,0 +2013,9,25,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2016,-10,0,2135,-5,0,0 +2013,7,26,5,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,855,-1,0,1006,-9,0,0 +2013,9,8,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,15,1,2005,14,0,0 +2013,6,29,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,1233,-3,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1620,12,0,1750,2,0,0 +2013,9,9,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1150,48,1,1310,47,1,0 +2013,5,15,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,-4,0,1052,-31,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,29,1,1110,16,1,0 +2013,6,4,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-8,0,820,-15,0,0 +2013,9,28,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,22,1,1814,-15,0,0 +2013,10,31,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-7,0,1631,-15,0,0 +2013,7,15,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-5,0,840,-21,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,46,1,25,17,1,0 +2013,9,13,5,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,630,-4,0,920,22,1,0 +2013,5,28,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-6,0,1249,-17,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1041,-1,0,1203,5,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1251,-6,0,1646,9,0,0 +2013,9,17,2,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1755,4,0,2014,8,0,0 +2013,4,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1400,-11,0,1421,-23,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,650,1,0,933,-7,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,4,0,2300,-2,0,0 +2013,5,26,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,-3,0,2050,-10,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2118,14,0,2310,5,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1318,3,0,1805,9,0,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,130,1,1735,202,1,0 +2013,4,20,6,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,3,0,1855,-16,0,0 +2013,7,28,7,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-3,0,718,9,0,0 +2013,4,15,1,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,2025,-6,0,2323,-23,0,0 +2013,7,22,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,757,-19,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1050,-3,0,1140,-4,0,0 +2013,8,19,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1353,-4,0,1541,30,1,0 +2013,4,3,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1940,-7,0,2048,-15,0,0 +2013,9,1,7,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1005,1,0,1236,-4,0,0 +2013,8,7,3,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,-2,0,1550,-17,0,0 +2013,5,12,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-6,0,930,-10,0,0 +2013,8,20,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1759,9,0,2014,-3,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1303,0,0,1540,-7,0,0 +2013,9,17,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1230,-13,0,0 +2013,10,17,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1359,-5,0,1523,-15,0,0 +2013,4,29,1,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1837,-1,0,1926,-13,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1756,22,1,1920,-13,0,0 +2013,6,24,1,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1555,0,,1739,0,1,1 +2013,7,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1440,-3,0,1539,-15,0,0 +2013,10,22,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1337,-5,0,1530,6,0,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2145,30,1,2230,33,1,0 +2013,4,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2013,-7,0,2344,-24,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2000,-2,0,2045,-11,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-5,0,1055,1,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,12,0,2140,23,1,0 +2013,5,10,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1051,81,1,1145,92,1,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,4,0,2040,-3,0,0 +2013,5,22,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-6,0,1115,-14,0,0 +2013,6,18,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,0,,832,0,1,1 +2013,5,22,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-3,0,820,-31,0,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1215,-4,0,1510,-17,0,0 +2013,8,8,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1710,165,1,1840,169,1,0 +2013,6,21,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1916,2,0,2026,26,1,0 +2013,8,11,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1705,26,1,1950,22,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,605,8,0,913,7,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,-3,0,1635,-29,0,0 +2013,10,10,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-3,0,1035,-4,0,0 +2013,5,21,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-6,0,728,-12,0,0 +2013,6,17,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2325,127,1,500,141,1,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,6,0,1810,2,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,725,84,1,1050,77,1,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1255,7,0,1600,0,0,0 +2013,8,8,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,211,1,1501,198,1,0 +2013,5,24,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,-3,0,1738,-12,0,0 +2013,4,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1810,0,0,1950,-4,0,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,80,1,1700,70,1,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,34,1,1948,12,0,0 +2013,5,1,3,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,827,-27,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,1,0,1235,-6,0,0 +2013,10,4,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-2,0,1258,-17,0,0 +2013,6,15,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,645,0,0,740,-2,0,0 +2013,7,2,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,20,1,1515,19,1,0 +2013,7,14,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1448,0,0,1650,20,1,0 +2013,5,20,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1224,10,0,1445,-10,0,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1120,18,1,1350,15,1,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2105,-3,0,2232,-16,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-4,0,920,7,0,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-5,0,1045,-4,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,740,21,1,900,27,1,0 +2013,6,27,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-2,0,1940,8,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-2,0,918,-3,0,0 +2013,7,6,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,942,25,1,1121,18,1,0 +2013,6,18,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1611,217,1,1719,216,1,0 +2013,10,7,1,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1435,6,0,1645,-8,0,0 +2013,4,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,-2,0,1656,-8,0,0 +2013,7,3,3,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-11,0,1050,-27,0,0 +2013,5,19,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-7,0,805,-7,0,0 +2013,7,6,6,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,37,1,2055,22,1,0 +2013,4,16,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,-9,0,1325,-12,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,-5,0,1655,-16,0,0 +2013,6,10,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,940,-11,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1706,0,,2019,0,1,1 +2013,6,15,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-6,0,1120,-22,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,16,1,1410,11,0,0 +2013,5,23,4,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,820,-3,0,930,7,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,805,2,0,942,-10,0,0 +2013,5,28,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1620,2,0,1842,13,0,0 +2013,10,10,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2050,13,0,2237,25,1,0 +2013,8,29,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,1252,-1,0,0 +2013,4,8,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1024,-9,0,1225,-15,0,0 +2013,7,17,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,42,1,1720,36,1,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,600,0,0,745,-9,0,0 +2013,10,14,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,9,0,1740,9,0,0 +2013,4,3,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1223,-7,0,1312,-7,0,0 +2013,5,18,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1657,-4,0,1834,-29,0,0 +2013,5,3,5,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,140,2,0,721,-2,0,0 +2013,5,26,7,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,-5,0,1330,-4,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,-5,0,2025,3,0,0 +2013,9,29,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1035,7,0,1150,-4,0,0 +2013,6,27,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,19,1,1050,40,1,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,10,0,1722,13,0,0 +2013,7,15,1,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1336,-15,0,1444,-25,0,0 +2013,4,21,7,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,600,-9,0,755,-16,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1953,-4,0,115,-15,0,0 +2013,9,3,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,-16,0,1314,-26,0,0 +2013,4,7,7,OO,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2155,-7,0,113,-21,0,0 +2013,5,31,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-7,0,1055,5,0,0 +2013,10,5,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,705,-17,0,0 +2013,4,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1706,0,,1924,0,1,1 +2013,4,7,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,-6,0,1130,-8,0,0 +2013,10,12,6,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,745,-3,0,903,-18,0,0 +2013,10,30,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,-6,0,1953,-8,0,0 +2013,4,9,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1358,-5,0,1559,16,1,0 +2013,4,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,713,-5,0,1045,-12,0,0 +2013,4,1,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1915,-8,0,2034,-7,0,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,630,0,0,839,-4,0,0 +2013,7,27,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,815,28,1,0 +2013,10,2,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-8,0,1110,-18,0,0 +2013,5,23,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,600,-7,0,749,-8,0,0 +2013,10,28,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,-1,0,920,-16,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1135,-4,0,1450,-10,0,0 +2013,5,2,4,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,903,-6,0,1738,38,1,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1315,-3,0,1420,-4,0,0 +2013,8,25,7,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,-5,0,2215,-8,0,0 +2013,10,26,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,800,17,1,1055,11,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,2,0,2131,27,1,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1054,-5,0,1838,-11,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,740,0,0,840,0,0,0 +2013,6,11,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,39,1,2040,15,1,0 +2013,10,11,5,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,19,1,2105,16,1,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,13,0,1250,13,0,0 +2013,5,29,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,1,0,1335,-10,0,0 +2013,9,9,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1655,22,1,1810,21,1,0 +2013,4,20,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-3,0,1920,25,1,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-1,0,1848,-16,0,0 +2013,6,8,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1556,-6,0,1748,-19,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,732,-4,0,924,-6,0,0 +2013,7,30,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1150,-7,0,1315,-25,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,625,-4,0,910,-8,0,0 +2013,9,22,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,940,-3,0,1220,-13,0,0 +2013,8,21,3,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1945,-3,0,2217,15,1,0 +2013,4,25,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,15,1,1853,59,1,0 +2013,7,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1005,3,0,1230,1,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1520,121,1,1725,119,1,0 +2013,8,6,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-8,0,1335,-13,0,0 +2013,10,17,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1325,-1,0,1455,-10,0,0 +2013,4,3,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,805,-6,0,935,16,1,0 +2013,5,29,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,1,0,1255,5,0,0 +2013,7,9,2,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1450,-3,0,1634,-7,0,0 +2013,9,1,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2015,4,0,2140,5,0,0 +2013,4,18,4,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1856,7,0,2057,-1,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1820,62,1,2148,52,1,0 +2013,7,5,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-2,0,1320,-8,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-3,0,1335,-13,0,0 +2013,5,9,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1451,-5,0,1549,-14,0,0 +2013,7,18,4,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1129,-6,0,1326,-29,0,0 +2013,7,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,830,0,,921,0,1,1 +2013,5,16,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,101,1,2154,96,1,0 +2013,5,28,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,831,-8,0,0 +2013,5,10,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1515,63,1,1627,61,1,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1040,0,0,1355,-10,0,0 +2013,8,23,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,4,0,1830,2,0,0 +2013,5,11,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-6,0,1622,-31,0,0 +2013,7,8,1,VX,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,50,225,1,625,229,1,0 +2013,8,8,4,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,700,-1,0,930,-8,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-5,0,1835,-6,0,0 +2013,10,23,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-9,0,805,-8,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,5,0,1210,-4,0,0 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1340,-5,0,1644,-17,0,0 +2013,6,27,4,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1105,0,,1505,0,1,1 +2013,6,28,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,810,-5,0,825,-15,0,0 +2013,6,1,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-1,0,2159,12,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1107,-4,0,1231,-12,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-2,0,1605,17,1,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,939,45,1,1755,48,1,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-13,0,830,-12,0,0 +2013,5,13,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1522,13,0,2321,11,0,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-1,0,1120,-11,0,0 +2013,6,5,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-2,0,940,-11,0,0 +2013,8,12,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1810,-3,0,2100,-5,0,0 +2013,9,6,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-4,0,1015,-11,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,705,-3,0,835,-11,0,0 +2013,10,23,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1130,6,0,1340,8,0,0 +2013,4,5,5,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,94,1,1816,0,1,1 +2013,7,20,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,834,-12,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1205,-16,0,1354,-17,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1548,-3,0,1723,-21,0,0 +2013,5,23,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,601,12,0,1001,-9,0,0 +2013,9,29,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1800,-6,0,2001,-12,0,0 +2013,10,16,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-7,0,826,-10,0,0 +2013,10,1,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1420,21,1,1530,15,1,0 +2013,6,29,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1417,8,0,2258,8,0,0 +2013,9,3,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,6,0,1540,5,0,0 +2013,7,21,7,EV,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1540,5,0,1655,-7,0,0 +2013,4,19,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-6,0,925,-20,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,900,24,1,1105,34,1,0 +2013,4,17,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-1,0,2015,-7,0,0 +2013,7,17,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,600,1,0,722,-10,0,0 +2013,10,12,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,725,-6,0,730,-5,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1415,44,1,1905,41,1,0 +2013,4,26,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2155,-1,0,2250,-10,0,0 +2013,5,18,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,-4,0,1805,-14,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,33,1,1745,15,1,0 +2013,6,4,2,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-2,0,1925,9,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1335,7,0,1515,13,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1559,-1,0,1858,-23,0,0 +2013,4,5,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,910,-20,0,0 +2013,6,21,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-1,0,725,1,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1625,11,0,1817,9,0,0 +2013,8,18,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,39,1,1905,35,1,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1930,32,1,5,29,1,0 +2013,8,10,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-8,0,701,-10,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1615,-1,0,1707,-2,0,0 +2013,4,15,1,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1605,0,0,1805,9,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,-1,0,1135,-18,0,0 +2013,10,13,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13244,Memphis International,Memphis,TN,1652,1,0,1805,-7,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1755,26,1,2335,35,1,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1739,-1,0,2304,2,0,0 +2013,5,20,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2220,12,0,615,15,1,0 +2013,7,20,6,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,-7,0,1140,3,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1630,56,1,1905,61,1,0 +2013,7,1,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,840,-4,0,1115,-4,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,28,1,2019,25,1,0 +2013,8,17,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-7,0,1812,-21,0,0 +2013,9,6,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2035,80,1,2155,86,1,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-5,0,1103,-13,0,0 +2013,5,31,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,1,0,820,-20,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1900,3,0,2050,17,1,0 +2013,10,25,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1755,10,0,1930,-5,0,0 +2013,8,6,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,19,1,1855,16,1,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,611,5,0,915,-17,0,0 +2013,7,30,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,0,0,2123,14,0,0 +2013,8,7,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1935,-9,0,2058,-20,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2300,-6,0,105,-4,0,0 +2013,8,11,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,11,0,2205,44,1,0 +2013,10,12,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,3,0,1929,-3,0,0 +2013,6,8,6,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1240,0,0,1340,-5,0,0 +2013,8,14,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2123,14,0,529,-2,0,0 +2013,6,1,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1234,-11,0,1429,-17,0,0 +2013,8,17,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2020,-8,0,459,-9,0,0 +2013,4,4,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,935,-1,0,1101,36,1,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1820,17,1,1910,13,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-7,0,1854,-18,0,0 +2013,8,1,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,826,-3,0,954,-8,0,0 +2013,5,11,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1505,-6,0,0 +2013,9,18,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,757,-5,0,952,-18,0,0 +2013,10,21,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1257,-3,0,1459,-7,0,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2245,-3,0,8,-4,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-2,0,1044,-8,0,0 +2013,5,13,1,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2217,-6,0,620,-5,0,0 +2013,9,3,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,706,0,0,1052,12,0,0 +2013,8,18,7,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1910,4,0,2045,-3,0,0 +2013,9,17,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1915,0,0,2025,-7,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1005,3,0,1310,-6,0,0 +2013,9,17,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,-5,0,1255,1,0,0 +2013,10,18,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1850,130,1,2050,110,1,0 +2013,8,14,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,941,-1,0,1040,-1,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1955,12,0,2310,-5,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,0,,1025,0,1,1 +2013,10,28,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,722,-16,0,0 +2013,6,6,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1310,-3,0,2049,10,0,0 +2013,10,17,4,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1025,-7,0,1205,-20,0,0 +2013,10,22,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1120,-2,0,1250,-1,0,0 +2013,4,1,1,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1045,-2,0,1310,-2,0,0 +2013,6,7,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,14,0,1930,7,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,96,1,5,74,1,0 +2013,8,6,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,7,0,2105,5,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-3,0,1303,-1,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-1,0,1015,1,0,0 +2013,7,31,3,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1800,-3,0,2015,-5,0,0 +2013,4,16,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,20,23,1,535,13,0,0 +2013,9,28,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2115,-3,0,538,-22,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,0,0,1000,-1,0,0 +2013,6,24,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,335,1,1712,342,1,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1313,2,0,1623,-17,0,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1125,10,0,1324,5,0,0 +2013,8,19,1,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1512,-5,0,1835,-12,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1215,-1,0,1335,6,0,0 +2013,6,30,7,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1732,11,0,1816,10,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,800,-3,0,1112,-12,0,0 +2013,6,24,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1507,77,1,1725,73,1,0 +2013,7,16,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-1,0,922,11,0,0 +2013,9,8,7,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,600,-1,0,720,-11,0,0 +2013,10,15,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,-2,0,1605,-13,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,3,0,2225,-9,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,2105,29,1,2340,16,1,0 +2013,9,19,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,941,-10,0,1126,-10,0,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,6,0,1915,5,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1025,-5,0,1355,2,0,0 +2013,6,17,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1217,-5,0,0 +2013,4,20,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1935,-1,0,2113,-19,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,2000,8,0,2255,2,0,0 +2013,5,19,7,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,728,-29,0,0 +2013,8,18,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-6,0,1023,-14,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1456,0,0,1558,-4,0,0 +2013,7,31,3,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1555,-1,0,1740,-10,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,-3,0,1350,-4,0,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1610,43,1,1821,121,1,0 +2013,7,12,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1504,14,0,1624,15,1,0 +2013,6,7,5,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2155,-9,0,508,-59,0,0 +2013,9,19,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,9,0,1903,5,0,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1705,-3,0,2123,-8,0,0 +2013,5,4,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-1,0,2110,-4,0,0 +2013,8,12,1,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,-1,0,2202,-30,0,0 +2013,4,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1545,-2,0,1700,-10,0,0 +2013,7,19,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1635,-4,0,1815,1,0,0 +2013,6,15,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2110,6,0,2235,6,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1235,13,0,1830,-7,0,0 +2013,9,19,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,87,1,2209,100,1,0 +2013,7,31,3,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,-4,0,1415,-8,0,0 +2013,10,3,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,1,0,2100,-2,0,0 +2013,8,10,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,655,6,0,700,8,0,0 +2013,6,24,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-3,0,1413,5,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,25,1,2355,0,0,0 +2013,5,9,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-2,0,650,2,0,0 +2013,5,10,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1816,0,0,2009,12,0,0 +2013,7,7,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,604,-4,0,930,-8,0,0 +2013,8,6,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,720,-4,0,1222,-18,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1100,4,0,1405,3,0,0 +2013,8,18,7,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1719,-11,0,1952,-25,0,0 +2013,10,8,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,71,1,1500,72,1,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,25,1,1715,27,1,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1924,0,0,2220,-34,0,0 +2013,7,6,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,638,-9,0,758,-19,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,940,10,0,1045,9,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,-3,0,1349,-8,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1639,11,0,1816,0,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2010,37,1,2305,29,1,0 +2013,6,13,4,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1620,-4,0,1840,-3,0,0 +2013,9,11,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1210,6,0,1305,8,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,58,1,1731,67,1,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-4,0,1437,-21,0,0 +2013,8,3,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,935,-1,0,0 +2013,7,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,1,0,1110,-4,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2100,7,0,2230,3,0,0 +2013,9,9,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1055,2,0,1345,7,0,0 +2013,5,9,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,600,-6,0,811,-18,0,0 +2013,6,9,7,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,610,-11,0,710,-23,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,853,1,0,1140,-21,0,0 +2013,7,3,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,933,-6,0,1221,-1,0,0 +2013,10,4,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,4,0,1120,-7,0,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1035,0,0,1200,-15,0,0 +2013,9,1,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,-7,0,1830,-24,0,0 +2013,10,2,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-2,0,1652,5,0,0 +2013,8,7,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,-8,0,1310,-4,0,0 +2013,5,18,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-5,0,1252,-11,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,2,0,1615,-25,0,0 +2013,5,1,3,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1135,-5,0,1520,5,0,0 +2013,4,22,1,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,719,-5,0,902,-19,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,2015,135,1,2247,124,1,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,905,7,0,1146,1,0,0 +2013,5,12,7,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,650,-11,0,810,-14,0,0 +2013,4,7,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1424,0,0,1550,-22,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2029,-6,0,2337,-18,0,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1853,45,1,2200,35,1,0 +2013,4,17,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1427,10,0,1640,7,0,0 +2013,8,2,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1625,-6,0,1843,2,0,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1645,21,1,1815,3,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1935,11,0,2025,-1,0,0 +2013,4,18,4,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,12,0,1240,21,1,0 +2013,6,24,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2100,65,1,2207,67,1,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,-3,0,1949,-16,0,0 +2013,7,7,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,810,-6,0,925,-13,0,0 +2013,9,22,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-3,0,1544,12,0,0 +2013,9,2,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,950,-2,0,1120,0,0,0 +2013,10,14,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,710,-1,0,1101,-13,0,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1945,49,1,2055,39,1,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1600,-3,0,1721,-13,0,0 +2013,10,9,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2046,4,0,2206,0,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,12,0,1739,11,0,0 +2013,6,10,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,-4,0,733,-1,0,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-3,0,1035,-5,0,0 +2013,8,31,6,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-5,0,1227,-8,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,8,0,1750,26,1,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1910,-2,0,2040,-12,0,0 +2013,5,31,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,815,2,0,1030,13,0,0 +2013,9,24,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-2,0,818,-3,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1220,0,0,1420,-2,0,0 +2013,7,10,3,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,820,0,0,1043,-6,0,0 +2013,6,18,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,605,-9,0,715,-19,0,0 +2013,6,16,7,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1441,-1,0,1630,0,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,820,1,0,938,-24,0,0 +2013,6,15,6,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1140,13,0,1505,1,0,0 +2013,7,14,7,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1525,-7,0,1625,-15,0,0 +2013,10,22,2,WN,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-5,0,945,-10,0,0 +2013,6,26,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1900,114,1,2110,115,1,0 +2013,7,18,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,7,0,1740,-18,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1410,-4,0,1556,-18,0,0 +2013,8,24,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,9,0,2132,-11,0,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1948,26,1,2259,10,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1310,23,1,1640,11,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1805,-3,0,2033,-27,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,845,2,0,1010,-7,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2040,-4,0,2350,-1,0,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1950,2,0,2230,3,0,0 +2013,8,21,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,-1,0,1121,1,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,-4,0,2212,22,1,0 +2013,4,17,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-2,0,1900,-12,0,0 +2013,8,26,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,750,-4,0,1017,-18,0,0 +2013,6,28,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,-2,0,2135,-10,0,0 +2013,9,15,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1350,23,1,1629,21,1,0 +2013,5,15,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1538,0,0,1910,-6,0,0 +2013,8,4,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,701,-5,0,842,4,0,0 +2013,7,11,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1254,-2,0,1437,8,0,0 +2013,8,8,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,33,1,2008,44,1,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1843,-8,0,2023,-17,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-5,0,925,-9,0,0 +2013,9,25,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,-9,0,1148,11,0,0 +2013,8,21,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-5,0,2355,7,0,0 +2013,6,6,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,605,-4,0,750,1,0,0 +2013,4,18,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,167,1,854,171,1,0 +2013,10,17,4,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1715,-6,0,1847,-5,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1808,26,1,2004,24,1,0 +2013,8,24,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,30,1,1555,21,1,0 +2013,5,2,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-3,0,655,-5,0,0 +2013,8,5,1,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1316,6,0,1425,2,0,0 +2013,4,20,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,-7,0,2001,-16,0,0 +2013,10,13,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,0,0,925,0,0,0 +2013,6,21,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1553,-12,0,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1955,-1,0,2201,-9,0,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,62,1,2000,57,1,0 +2013,10,7,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1337,-8,0,1541,-12,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,57,1,1034,38,1,0 +2013,4,29,1,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,1,0,1640,-4,0,0 +2013,6,25,2,EV,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1845,93,1,2046,88,1,0 +2013,7,28,7,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-8,0,1538,-5,0,0 +2013,5,6,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,1,0,1615,-22,0,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-9,0,1330,-13,0,0 +2013,5,24,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,7,0,1904,8,0,0 +2013,7,14,7,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,645,20,1,1455,51,1,0 +2013,9,29,7,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1157,-3,0,1255,-14,0,0 +2013,7,28,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-4,0,758,-12,0,0 +2013,9,12,4,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1650,12,0,2140,6,0,0 +2013,10,13,7,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,615,-7,0,917,-4,0,0 +2013,8,23,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,-7,0,1215,10,0,0 +2013,10,24,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2000,85,1,2257,43,1,0 +2013,8,9,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,939,0,0,1028,11,0,0 +2013,4,16,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1812,-4,0,2100,-17,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1845,0,0,1950,-8,0,0 +2013,10,5,6,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1350,10,0,1525,10,0,0 +2013,8,16,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1850,-4,0,2135,-15,0,0 +2013,10,2,3,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1020,-9,0,1220,-28,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1518,6,0,1722,17,1,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-4,0,1810,-10,0,0 +2013,5,12,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,950,-6,0,1110,-20,0,0 +2013,10,28,1,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1025,6,0,1345,10,0,0 +2013,6,17,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,834,-10,0,1006,-15,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-5,0,2012,0,0,0 +2013,10,4,5,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1220,81,1,1337,86,1,0 +2013,5,9,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,-4,0,1300,-14,0,0 +2013,8,26,1,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-3,0,2113,-14,0,0 +2013,4,11,4,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,2055,-4,0,2310,-6,0,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,-1,0,1811,4,0,0 +2013,5,26,7,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1415,-2,0,2010,-7,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,3,0,1415,14,0,0 +2013,10,14,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,835,0,0,1643,-12,0,0 +2013,7,7,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1438,56,1,1551,54,1,0 +2013,7,19,5,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,550,-6,0,1202,-12,0,0 +2013,4,6,6,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1515,23,1,1710,12,0,0 +2013,5,21,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-7,0,1408,-10,0,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,750,-3,0,1148,4,0,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-5,0,1600,-20,0,0 +2013,8,1,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,0,0,1910,-5,0,0 +2013,7,28,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,630,188,1,800,182,1,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,-3,0,1546,-5,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,902,-5,0,1604,-3,0,0 +2013,4,27,6,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-9,0,907,-59,0,0 +2013,6,30,7,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1725,6,0,1950,1,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,750,-5,0,1025,-1,0,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1528,7,0,1659,-9,0,0 +2013,8,14,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1638,58,1,1835,49,1,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-6,0,1433,7,0,0 +2013,9,28,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1045,-4,0,1200,-19,0,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,730,229,1,1142,236,1,0 +2013,10,22,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-8,0,1206,-7,0,0 +2013,9,16,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1747,6,0,1945,-4,0,0 +2013,10,5,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,736,-12,0,900,-11,0,0 +2013,7,4,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1148,-9,0,1441,-24,0,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1705,40,1,1935,46,1,0 +2013,7,21,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,130,1,2102,146,1,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,851,-2,0,1135,-3,0,0 +2013,9,14,6,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1800,15,1,1850,5,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,-2,0,2259,-1,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,-3,0,1550,-10,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1310,6,0,1430,2,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,53,1,1609,59,1,0 +2013,6,9,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-3,0,1636,-7,0,0 +2013,4,8,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,-10,0,618,-22,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1035,-5,0,1130,1,0,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,101,1,1920,96,1,0 +2013,8,1,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,650,-4,0,725,-13,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1145,-1,0,1513,-3,0,0 +2013,5,29,3,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-3,0,2048,10,0,0 +2013,9,27,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1959,3,0,2106,-4,0,0 +2013,7,18,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,-5,0,1835,-5,0,0 +2013,9,22,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1215,-5,0,1509,-14,0,0 +2013,8,19,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,828,10,0,0 +2013,10,23,3,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,1222,0,0,0 +2013,8,18,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1359,13,0,1525,-2,0,0 +2013,7,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1205,0,0,1335,-21,0,0 +2013,9,18,3,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1054,16,1,1534,1,0,0 +2013,6,21,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-5,0,606,4,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2025,4,0,2155,-9,0,0 +2013,7,30,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,933,-4,0,1235,3,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1610,-5,0,1931,-10,0,0 +2013,4,26,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,2,0,1855,4,0,0 +2013,9,24,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1910,-2,0,2030,-13,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,950,3,0,1159,3,0,0 +2013,8,27,2,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,-2,0,1605,-19,0,0 +2013,10,4,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,20,1,1740,8,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,953,-2,0,1215,-4,0,0 +2013,6,26,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2350,-5,0,713,-12,0,0 +2013,8,19,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-9,0,2025,-23,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,-5,0,1040,-8,0,0 +2013,10,7,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,917,38,1,1716,34,1,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,-2,0,1253,-12,0,0 +2013,8,29,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2341,2,0,730,1,0,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1928,49,1,2306,38,1,0 +2013,6,9,7,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,-5,0,1605,-32,0,0 +2013,4,24,3,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1600,-4,0,1952,-13,0,0 +2013,9,7,6,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1121,-3,0,1252,-11,0,0 +2013,10,20,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,56,1,2125,47,1,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-2,0,945,-1,0,0 +2013,10,22,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1240,4,0,1545,-9,0,0 +2013,9,23,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-8,0,1057,-17,0,0 +2013,10,14,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-3,0,1840,11,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1930,35,1,2030,51,1,0 +2013,6,16,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,2047,-4,0,2302,-24,0,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,18,1,1853,-10,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,2,0,1410,-1,0,0 +2013,6,7,5,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1748,10,0,1919,5,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,61,1,652,51,1,0 +2013,9,21,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1007,-5,0,1030,-17,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-5,0,1415,-28,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1215,2,0,1919,-11,0,0 +2013,5,16,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,39,1,1726,31,1,0 +2013,8,4,7,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2045,-6,0,2320,-3,0,0 +2013,4,6,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,922,11,0,1220,0,0,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,705,-2,0,830,-6,0,0 +2013,8,8,4,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1000,-2,0,1340,-9,0,0 +2013,7,15,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-5,0,1055,-2,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,16,1,842,15,1,0 +2013,6,21,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,800,0,0,905,2,0,0 +2013,5,31,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1840,3,0,2237,-4,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1025,-3,0,1226,-3,0,0 +2013,8,12,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1548,2,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2300,-7,0,47,-10,0,0 +2013,7,12,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,36,1,2135,42,1,0 +2013,4,6,6,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-6,0,839,2,0,0 +2013,4,30,2,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1740,-5,0,2130,-1,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,750,-1,0,1015,-6,0,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1230,3,0,1350,-7,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1323,0,0,1634,-37,0,0 +2013,6,27,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,179,1,2030,179,1,0 +2013,9,17,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,640,-8,0,910,-4,0,0 +2013,9,25,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,16,1,930,4,0,0 +2013,6,4,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,1,0,1111,9,0,0 +2013,9,27,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1135,7,0,1250,23,1,0 +2013,5,15,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,0,0,1142,-4,0,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,750,-4,0,1020,-14,0,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,830,5,0,1310,-3,0,0 +2013,9,22,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,-2,0,1400,-13,0,0 +2013,8,25,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1910,-9,0,2125,-16,0,0 +2013,4,29,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1243,-1,0,1343,-1,0,0 +2013,8,20,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2006,-2,0,2042,3,0,0 +2013,9,2,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1020,-4,0,1120,-20,0,0 +2013,6,13,4,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1646,28,1,2110,20,1,0 +2013,8,27,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,-6,0,1506,-7,0,0 +2013,4,23,2,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1110,-8,0,1411,3,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,-9,0,1640,7,0,0 +2013,5,9,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,19,1,822,4,0,0 +2013,8,16,5,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-13,0,842,-37,0,0 +2013,7,15,1,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,10,0,1435,-29,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1030,-2,0,1135,-11,0,0 +2013,8,6,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,635,0,0,740,0,0,0 +2013,6,30,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,650,-2,0,825,-1,0,0 +2013,4,14,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,-1,0,1250,-11,0,0 +2013,4,3,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1200,-5,0,1420,-20,0,0 +2013,5,4,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,925,-4,0,1303,-44,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-6,0,1335,-8,0,0 +2013,9,10,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1605,-12,0,1755,-39,0,0 +2013,4,27,6,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1720,-11,0,1944,-6,0,0 +2013,9,28,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,2,0,1915,-3,0,0 +2013,4,23,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,810,-9,0,0 +2013,6,1,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,705,-1,0,830,-35,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,625,0,0,745,-10,0,0 +2013,7,19,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,33,1,1335,34,1,0 +2013,6,20,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-7,0,2115,-12,0,0 +2013,7,31,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1657,24,1,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,-3,0,1146,-5,0,0 +2013,5,22,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1745,4,0,1925,11,0,0 +2013,9,16,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1311,12,0,1436,11,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-6,0,838,-22,0,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,-1,0,1755,-1,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,744,-3,0,920,-12,0,0 +2013,8,4,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,18,1,1749,49,1,0 +2013,8,29,4,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,725,-6,0,1116,-2,0,0 +2013,10,6,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1740,-3,0,1856,30,1,0 +2013,10,26,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1510,-4,0,1625,-19,0,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,-10,0,1014,-19,0,0 +2013,10,24,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1910,6,0,2040,-2,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-1,0,2200,-26,0,0 +2013,6,6,4,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,-6,0,604,16,1,0 +2013,4,21,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,5,0,1405,-6,0,0 +2013,9,14,6,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-5,0,1636,3,0,0 +2013,10,9,3,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,650,-8,0,848,-14,0,0 +2013,10,28,1,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2307,21,1,719,12,0,0 +2013,5,13,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-3,0,1645,-22,0,0 +2013,6,10,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1500,9,0,1810,5,0,0 +2013,5,14,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,740,5,0,840,-2,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,750,20,1,830,14,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,800,-2,0,910,-8,0,0 +2013,7,19,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,1,0,1055,-2,0,0 +2013,9,9,1,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1730,5,0,1842,9,0,0 +2013,4,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2146,-6,0,2258,-15,0,0 +2013,7,30,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,15,1,2020,40,1,0 +2013,9,14,6,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,17,1,2104,-17,0,0 +2013,7,21,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-6,0,2111,-13,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2329,-7,0,659,-9,0,0 +2013,10,4,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1030,-9,0,1300,-4,0,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,-6,0,943,-8,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1455,-2,0,1603,-19,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,0,0,1924,-15,0,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1229,58,1,1404,48,1,0 +2013,10,13,7,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1504,-3,0,1726,-14,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1530,67,1,1700,78,1,0 +2013,7,16,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,809,-2,0,932,-9,0,0 +2013,4,27,6,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1149,-6,0,1430,-23,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1615,15,1,2345,-9,0,0 +2013,6,3,1,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1508,-2,0,1800,25,1,0 +2013,5,15,3,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,10,0,1520,9,0,0 +2013,6,8,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1050,-5,0,1308,-17,0,0 +2013,6,13,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,0,0,2005,0,0,0 +2013,9,27,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1811,-9,0,2032,-17,0,0 +2013,7,11,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,620,-2,0,755,-10,0,0 +2013,4,28,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,13,0,1700,0,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1620,5,0,2000,-13,0,0 +2013,5,27,1,YV,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1333,1,0,1730,-5,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,-1,0,2210,-2,0,0 +2013,4,26,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,941,10,0,1030,19,1,0 +2013,4,1,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,-4,0,1608,-5,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,600,-3,0,740,6,0,0 +2013,8,24,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1448,7,0,1744,104,1,0 +2013,6,9,7,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1114,1,0,1255,-28,0,0 +2013,6,17,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1516,-3,0,1753,23,1,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2130,14,0,2220,6,0,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,745,-4,0,1025,-13,0,0 +2013,4,17,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-8,0,1925,-13,0,0 +2013,10,8,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1055,-5,0,1126,-3,0,0 +2013,7,9,2,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1210,-1,0,1435,-6,0,0 +2013,8,6,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,21,1,1850,19,1,0 +2013,5,12,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1811,9,0,2109,17,1,0 +2013,9,8,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1557,20,1,1834,8,0,0 +2013,5,13,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,820,8,0,1022,-11,0,0 +2013,10,20,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,953,-4,0,1454,-10,0,0 +2013,5,4,6,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1646,-10,0,1951,-16,0,0 +2013,10,15,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1436,-1,0,1646,-4,0,0 +2013,7,12,5,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1855,75,1,2008,72,1,0 +2013,5,23,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1016,-5,0,1203,-10,0,0 +2013,8,12,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-9,0,958,16,1,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1930,22,1,2100,29,1,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2028,-3,0,2247,-37,0,0 +2013,7,29,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1112,99,1,1236,107,1,0 +2013,4,5,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1710,33,1,1800,25,1,0 +2013,10,22,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-1,0,1225,-6,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2009,3,0,2208,-5,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1758,-2,0,1955,-1,0,0 +2013,7,9,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1635,165,1,1844,146,1,0 +2013,5,30,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,831,-13,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,-1,0,1740,-3,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1510,1,0,1733,-5,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1037,5,0,1635,3,0,0 +2013,5,13,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,1355,-3,0,1519,-4,0,0 +2013,8,11,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,815,-5,0,945,13,0,0 +2013,9,4,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2325,-7,0,14,-7,0,0 +2013,7,1,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,910,-6,0,1105,-33,0,0 +2013,8,24,6,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1237,-3,0,1653,-13,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1241,153,1,1830,188,1,0 +2013,10,25,5,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,-2,0,1836,2,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1120,-6,0,1256,-5,0,0 +2013,9,15,7,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2025,-2,0,2350,-6,0,0 +2013,7,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1515,0,,1630,0,1,1 +2013,8,19,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,2,0,1620,0,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-5,0,1130,14,0,0 +2013,5,31,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1113,8,0,1217,-8,0,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,1,0,1445,-13,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1220,-4,0,1525,-2,0,0 +2013,7,12,5,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1055,-1,0,1650,-11,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2021,-4,0,2113,1,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1855,13,0,2050,-8,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1820,0,,1935,0,1,1 +2013,10,29,2,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1215,15,1,1329,8,0,0 +2013,6,26,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1928,2,0,2208,-3,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,732,-1,0,916,-24,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,32,1,2056,38,1,0 +2013,5,13,1,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1830,-3,0,1955,-8,0,0 +2013,6,3,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1131,-3,0,1305,-13,0,0 +2013,5,2,4,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,811,-2,0,1007,-15,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2050,33,1,2355,27,1,0 +2013,7,5,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2020,0,0,2230,-4,0,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-4,0,1835,-13,0,0 +2013,6,28,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-7,0,935,-2,0,0 +2013,10,21,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,840,-7,0,1013,-15,0,0 +2013,6,8,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-2,0,1130,-19,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1952,0,0,2320,-15,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1210,2,0,1325,-3,0,0 +2013,4,10,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,-6,0,1445,-18,0,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,710,-5,0,930,0,0,0 +2013,6,16,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,134,1,1600,117,1,0 +2013,8,5,1,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-8,0,1209,-14,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-2,0,850,-9,0,0 +2013,5,13,1,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2210,4,0,2359,-6,0,0 +2013,9,29,7,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1519,1,0,1634,1,0,0 +2013,10,10,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1620,-4,0,1745,1,0,0 +2013,10,28,1,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,915,24,1,1155,33,1,0 +2013,9,5,4,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1247,-6,0,1425,-16,0,0 +2013,7,5,5,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1414,-5,0,2245,2,0,0 +2013,4,14,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-4,0,1915,-4,0,0 +2013,8,4,7,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1529,-30,0,0 +2013,7,19,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,84,1,1956,76,1,0 +2013,6,17,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,0,0,855,-2,0,0 +2013,9,28,6,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-4,0,1712,2,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,137,1,1955,122,1,0 +2013,9,7,6,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1755,1,0,2005,-11,0,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,-5,0,1445,-14,0,0 +2013,8,24,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1827,0,0,2102,-8,0,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-3,0,2219,-11,0,0 +2013,6,3,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-9,0,543,-32,0,0 +2013,10,10,4,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,840,-10,0,1146,-13,0,0 +2013,9,4,3,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,-9,0,1125,-6,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,740,4,0,1205,-12,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1210,8,0,1410,-1,0,0 +2013,9,8,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,901,-5,0,959,-13,0,0 +2013,6,2,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1823,13,0,2209,17,1,0 +2013,9,23,1,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1120,10,0,1225,8,0,0 +2013,9,6,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,33,1,1937,26,1,0 +2013,7,17,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1005,-6,0,1155,-11,0,0 +2013,7,15,1,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1015,1,0,1145,-7,0,0 +2013,5,7,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1406,-4,0,2100,-4,0,0 +2013,7,25,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,3,0,1048,3,0,0 +2013,8,21,3,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1315,-3,0,1505,-13,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2151,8,0,2306,12,0,0 +2013,5,12,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2100,11,0,2339,-29,0,0 +2013,8,12,1,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,840,-1,0,1025,-8,0,0 +2013,4,17,3,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1602,13,0,1814,10,0,0 +2013,6,9,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,70,1,1910,63,1,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1030,42,1,1355,46,1,0 +2013,6,24,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,711,0,0,830,1,0,0 +2013,7,4,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,730,11,0,1253,24,1,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1655,17,1,1926,-1,0,0 +2013,10,29,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1440,10,0,1715,-20,0,0 +2013,10,13,7,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1121,-3,0,1303,4,0,0 +2013,5,24,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1610,-12,0,1640,-15,0,0 +2013,10,4,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,2,0,835,3,0,0 +2013,4,10,3,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1735,-5,0,1856,-13,0,0 +2013,6,28,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1720,50,1,1825,37,1,0 +2013,5,6,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,943,-2,0,1444,-10,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,8,0,1115,30,1,0 +2013,4,21,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-1,0,1245,-16,0,0 +2013,10,25,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-3,0,1419,-15,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1635,23,1,1800,18,1,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2005,-2,0,2219,-14,0,0 +2013,4,8,1,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,-1,0,1745,16,1,0 +2013,8,15,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,-10,0,2233,-19,0,0 +2013,7,26,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1012,-4,0,1209,-3,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,840,0,0,1120,-12,0,0 +2013,4,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-3,0,1420,3,0,0 +2013,4,29,1,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,720,-6,0,805,-10,0,0 +2013,6,24,1,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,846,-7,0,1041,-5,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1954,-2,0,2123,-10,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,6,0,1830,13,0,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1251,-5,0,1450,19,1,0 +2013,4,14,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1513,22,1,1656,21,1,0 +2013,9,25,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1010,-1,0,1229,3,0,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,15,1,2235,-20,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,0,0,1620,-17,0,0 +2013,6,1,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1345,-4,0,1745,-19,0,0 +2013,6,1,6,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1400,-14,0,0 +2013,8,6,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1534,30,1,1930,20,1,0 +2013,4,7,7,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2055,-10,0,2225,-21,0,0 +2013,7,11,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-7,0,2200,-13,0,0 +2013,4,8,1,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1625,-2,0,1950,5,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,-4,0,2018,-20,0,0 +2013,5,9,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-4,0,1607,-21,0,0 +2013,7,5,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,811,2,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-5,0,1045,-20,0,0 +2013,6,1,6,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,957,-9,0,1420,-7,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1645,-3,0,2009,29,1,0 +2013,10,24,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1645,129,1,1800,117,1,0 +2013,5,10,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,18,1,2025,14,0,0 +2013,4,18,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1455,1,0,1610,-2,0,0 +2013,7,4,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1929,-7,0,2233,-16,0,0 +2013,7,14,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-4,0,1302,1,0,0 +2013,5,18,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-5,0,854,-18,0,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,-2,0,2235,2,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1040,-2,0,1307,-4,0,0 +2013,9,6,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-9,0,1755,-3,0,0 +2013,10,31,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1950,2,0,2106,-12,0,0 +2013,5,4,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1200,-6,0,1345,-25,0,0 +2013,5,11,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,-3,0,1100,-6,0,0 +2013,6,26,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,170,1,2131,189,1,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-6,0,1725,-19,0,0 +2013,5,1,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2110,0,0,2355,-4,0,0 +2013,7,6,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-6,0,1914,-7,0,0 +2013,8,13,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1605,28,1,1720,2,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1450,31,1,2205,-4,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,2,0,1135,-27,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2015,-3,0,2225,-10,0,0 +2013,8,29,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,959,-19,0,0 +2013,9,4,3,YV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1547,-4,0,1714,-13,0,0 +2013,6,8,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1633,-5,0,1925,-12,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,-4,0,1210,-8,0,0 +2013,10,25,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1924,-5,0,2114,-23,0,0 +2013,5,2,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1700,3,0,1817,-4,0,0 +2013,5,3,5,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,710,5,0,1442,9,0,0 +2013,8,8,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,936,11,0,1200,7,0,0 +2013,8,4,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1420,1,0,1712,-10,0,0 +2013,6,20,4,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,838,-3,0,1105,9,0,0 +2013,6,15,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,810,-3,0,0 +2013,6,18,2,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-7,0,1300,-11,0,0 +2013,7,15,1,WN,14679,San Diego International,San Diego,CA,15016,Lambert-St. Louis International,St. Louis,MO,730,-2,0,1305,-1,0,0 +2013,5,2,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1750,-2,0,1905,-21,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1420,23,1,1600,12,0,0 +2013,7,21,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-3,0,1810,-10,0,0 +2013,5,9,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1754,81,1,1934,70,1,0 +2013,9,13,5,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,3,0,1555,1,0,0 +2013,8,30,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,930,-3,0,1110,-18,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1425,6,0,1550,15,1,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1433,8,0,1607,-6,0,0 +2013,6,30,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2349,-1,0,708,1,0,0 +2013,8,13,2,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1520,-9,0,2328,-12,0,0 +2013,6,23,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,4,0,1610,12,0,0 +2013,9,23,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1150,-7,0,1440,-11,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1925,9,0,2153,-4,0,0 +2013,5,30,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,2,0,1749,-1,0,0 +2013,5,21,2,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,810,-4,0,1100,-14,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,26,1,1216,31,1,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1825,9,0,55,-11,0,0 +2013,5,11,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1000,-5,0,1206,-3,0,0 +2013,8,9,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1656,-1,0,1918,-1,0,0 +2013,8,22,4,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2216,39,1,617,47,1,0 +2013,8,5,1,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1655,-1,0,1825,-21,0,0 +2013,9,30,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1919,6,0,2105,-12,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,955,-3,0,1305,-4,0,0 +2013,8,16,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,-8,0,1315,-10,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,908,29,1,1152,24,1,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2030,14,0,2139,11,0,0 +2013,7,15,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,-3,0,820,-12,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-4,0,1237,-6,0,0 +2013,4,24,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,0,0,1237,2,0,0 +2013,4,27,6,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1210,-6,0,1451,-13,0,0 +2013,5,31,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2115,9,0,2325,-8,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,845,-1,0,1124,-18,0,0 +2013,10,27,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1218,-1,0,1420,-8,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2045,7,0,2255,8,0,0 +2013,5,13,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1411,-12,0,1740,-19,0,0 +2013,7,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,-4,0,1414,-2,0,0 +2013,5,22,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,8,0,1041,-2,0,0 +2013,5,23,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1845,0,,2029,0,1,1 +2013,9,25,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,635,-2,0,0 +2013,4,25,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-3,0,1855,-8,0,0 +2013,6,4,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1415,-1,0,1530,-7,0,0 +2013,5,11,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,900,2,0,1205,10,0,0 +2013,10,28,1,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-3,0,731,-2,0,0 +2013,8,24,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-1,0,930,-11,0,0 +2013,7,27,6,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,625,-2,0,1230,-6,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,6,0,1408,-11,0,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1110,43,1,1315,37,1,0 +2013,10,10,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-1,0,1930,-18,0,0 +2013,7,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1905,6,0,2025,8,0,0 +2013,6,27,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,249,1,2215,235,1,0 +2013,4,27,6,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2358,-9,0,744,13,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-4,0,1414,-20,0,0 +2013,10,16,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,930,5,0,1200,8,0,0 +2013,7,16,2,EV,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-3,0,1010,-5,0,0 +2013,6,24,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1213,-11,0,1501,-17,0,0 +2013,8,26,1,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-4,0,803,14,0,0 +2013,7,2,2,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,12,0,1127,3,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1840,27,1,2210,16,1,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1459,-6,0,1637,-22,0,0 +2013,10,6,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,7,0,2130,-17,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1515,11,0,1724,15,1,0 +2013,7,21,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-1,0,920,-9,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,745,15,1,1005,10,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,715,0,0,1050,-4,0,0 +2013,8,7,3,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1740,11,0,1950,8,0,0 +2013,8,13,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,23,1,2030,58,1,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,755,-5,0,1057,-16,0,0 +2013,8,27,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,859,-12,0,1029,-33,0,0 +2013,9,18,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-5,0,1809,-1,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1525,-3,0,1704,-14,0,0 +2013,9,21,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1259,0,0,1522,8,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1840,92,1,2154,72,1,0 +2013,7,15,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1859,-7,0,2100,-28,0,0 +2013,7,8,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,-5,0,2211,2,0,0 +2013,10,17,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,600,-5,0,1420,-18,0,0 +2013,4,19,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2025,-6,0,2311,103,1,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1859,-4,0,2238,-12,0,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,0,,1735,0,1,1 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1745,128,1,2205,121,1,0 +2013,7,31,3,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,-4,0,1400,-14,0,0 +2013,4,29,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,2,0,1610,-5,0,0 +2013,8,4,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1347,-10,0,1433,-12,0,0 +2013,10,22,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1524,-7,0,1647,-16,0,0 +2013,7,26,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,824,4,0,1144,4,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1805,-8,0,2114,-20,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,845,4,0,950,7,0,0 +2013,6,14,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-5,0,937,-14,0,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1435,25,1,1540,56,1,0 +2013,10,5,6,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1505,1,0,1635,-2,0,0 +2013,4,9,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2146,1,0,142,-24,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,734,-2,0,925,-12,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,9,0,1335,-10,0,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1620,107,1,1929,89,1,0 +2013,8,28,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1328,-6,0,1344,-9,0,0 +2013,8,14,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-5,0,955,6,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-7,0,901,-20,0,0 +2013,4,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2020,33,1,2125,24,1,0 +2013,10,7,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-5,0,905,1,0,0 +2013,9,28,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1000,11,0,1050,6,0,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1113,7,0,1239,23,1,0 +2013,7,16,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-1,0,2106,-4,0,0 +2013,4,14,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1100,1,0,1250,9,0,0 +2013,10,3,4,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1225,-10,0,2016,-2,0,0 +2013,6,1,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-7,0,2053,-8,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,-4,0,2112,-17,0,0 +2013,9,4,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1711,-14,0,2104,-13,0,0 +2013,9,12,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,924,-2,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1720,46,1,1815,68,1,0 +2013,10,30,3,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1834,-1,0,2036,-6,0,0 +2013,7,12,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,0,0,2226,-2,0,0 +2013,6,26,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1310,-3,0,1525,-8,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1450,-8,0,2146,-23,0,0 +2013,8,21,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-7,0,1740,-28,0,0 +2013,9,29,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1355,5,0,1625,-12,0,0 +2013,7,25,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1045,0,,1259,0,1,1 +2013,10,27,7,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1715,-3,0,1840,-14,0,0 +2013,9,23,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1145,-3,0,1314,-5,0,0 +2013,8,15,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1730,33,1,1905,32,1,0 +2013,6,7,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,947,-5,0,1317,-7,0,0 +2013,9,1,7,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,-10,0,2029,-14,0,0 +2013,8,4,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-6,0,950,-5,0,0 +2013,9,4,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,31,1,1730,32,1,0 +2013,9,25,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1820,23,1,2000,24,1,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1500,-4,0,1715,-4,0,0 +2013,9,13,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,28,1,1654,22,1,0 +2013,9,27,5,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1530,35,1,1755,-3,0,0 +2013,9,24,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1300,-9,0,1416,-17,0,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1331,47,1,1610,25,1,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,920,-2,0,1030,-15,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1355,6,0,1530,4,0,0 +2013,9,22,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1142,10,0,1533,30,1,0 +2013,4,22,1,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-3,0,1545,-1,0,0 +2013,10,29,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,810,-7,0,1410,-29,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,-1,0,1430,-4,0,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1605,39,1,1720,34,1,0 +2013,7,28,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1440,5,0,1502,-2,0,0 +2013,7,15,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1645,7,0,1800,2,0,0 +2013,7,23,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1836,20,1,2258,-6,0,0 +2013,10,10,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,-5,0,1215,-18,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1917,197,1,2055,205,1,0 +2013,4,18,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1645,3,0,1800,-4,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1736,1,0,1926,-14,0,0 +2013,7,11,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,38,1,1915,73,1,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2150,13,0,2305,-1,0,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2045,-3,0,2215,-10,0,0 +2013,10,31,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1433,46,1,1527,56,1,0 +2013,5,21,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,69,1,1409,64,1,0 +2013,5,30,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,-5,0,935,-9,0,0 +2013,4,28,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1630,-2,0,1800,-9,0,0 +2013,5,10,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,700,-5,0,826,-8,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,1,0,2330,-6,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1610,1,0,1715,20,1,0 +2013,5,30,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,922,35,1,0 +2013,8,2,5,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,4,0,832,21,1,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,-1,0,1130,-3,0,0 +2013,10,3,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1025,1,0,1859,-13,0,0 +2013,7,2,2,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,-2,0,1935,1,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1025,-2,0,1140,-1,0,0 +2013,4,27,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1215,2,0,1325,2,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,-4,0,2237,-15,0,0 +2013,7,17,3,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-6,0,842,-17,0,0 +2013,8,14,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1400,-9,0,0 +2013,6,27,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2100,15,1,2234,-1,0,0 +2013,9,24,2,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,1,0,1710,7,0,0 +2013,6,2,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2100,-2,0,2230,-17,0,0 +2013,8,13,2,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1125,122,1,1300,107,1,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,152,1,2220,169,1,0 +2013,5,17,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1725,5,0,2005,-9,0,0 +2013,4,1,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-8,0,1328,-15,0,0 +2013,10,9,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,600,-2,0,703,-6,0,0 +2013,6,3,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,725,0,0,1030,4,0,0 +2013,8,1,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1310,15,1,1415,9,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,-4,0,1035,-14,0,0 +2013,7,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,750,6,0,1010,1,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1955,30,1,2330,24,1,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,-8,0,917,-17,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2259,-4,0,107,-25,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1305,-3,0,1427,1,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1315,0,,1420,0,1,1 +2013,5,21,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,950,2,0,1230,11,0,0 +2013,8,14,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,844,10,0,0 +2013,10,1,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,635,-3,0,820,-1,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1255,2,0,1615,2,0,0 +2013,4,12,5,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,947,11,0,1225,1,0,0 +2013,7,31,3,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1721,-6,0,1925,3,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1655,9,0,1805,-1,0,0 +2013,8,21,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-1,0,2354,-12,0,0 +2013,10,25,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1510,-1,0,1719,-11,0,0 +2013,5,13,1,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-5,0,916,-5,0,0 +2013,6,13,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1712,149,1,1957,146,1,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1015,0,0,1115,-2,0,0 +2013,10,10,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,647,9,0,939,4,0,0 +2013,6,18,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,2,0,1228,-9,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,28,1,1717,16,1,0 +2013,5,21,2,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1540,81,1,1736,51,1,0 +2013,4,3,3,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,2150,-1,0,29,-8,0,0 +2013,9,16,1,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-3,0,2027,-7,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,935,1,0,1140,-1,0,0 +2013,8,11,7,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1756,-3,0,2039,-8,0,0 +2013,10,13,7,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,0,0,930,14,0,0 +2013,8,1,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-4,0,948,3,0,0 +2013,4,10,3,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1731,74,1,1913,102,1,0 +2013,6,8,6,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1235,-12,0,1502,7,0,0 +2013,10,28,1,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1050,-2,0,1420,-7,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,13,0,1835,-11,0,0 +2013,4,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1546,-4,0,1735,23,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-3,0,1833,-5,0,0 +2013,7,30,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1435,3,0,1555,-11,0,0 +2013,7,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1121,-6,0,1235,-15,0,0 +2013,7,13,6,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-2,0,816,9,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,63,1,2040,59,1,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-8,0,1045,-14,0,0 +2013,8,15,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,108,1,1155,110,1,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,540,2,0,825,-5,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,-1,0,2046,-11,0,0 +2013,6,29,6,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,630,-6,0,755,-12,0,0 +2013,8,13,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1325,10,0,1420,6,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-2,0,1144,-12,0,0 +2013,5,7,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-4,0,1315,-10,0,0 +2013,9,26,4,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1625,19,1,1917,0,0,0 +2013,8,5,1,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,-7,0,957,4,0,0 +2013,7,19,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-6,0,1434,-3,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1425,0,0,1624,-14,0,0 +2013,7,5,5,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,75,1,1210,64,1,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1935,47,1,2137,18,1,0 +2013,6,11,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1856,21,1,2142,14,0,0 +2013,6,26,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1459,0,,1649,0,1,1 +2013,4,29,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1225,3,0,1327,-8,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-1,0,1118,-3,0,0 +2013,9,7,6,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-3,0,1555,-9,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,-6,0,1814,-10,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,22,1,2215,26,1,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1655,-7,0,1840,-21,0,0 +2013,10,9,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1345,10,0,1700,12,0,0 +2013,7,1,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-2,0,1002,4,0,0 +2013,8,3,6,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,17,1,2133,0,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1155,23,1,2035,26,1,0 +2013,5,20,1,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-6,0,1032,-16,0,0 +2013,5,19,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,20,2,0,535,-16,0,0 +2013,7,22,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1029,-2,0,1305,-5,0,0 +2013,7,24,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,910,-8,0,1035,-20,0,0 +2013,4,16,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,640,-3,0,809,-1,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2206,-4,0,2348,-3,0,0 +2013,8,21,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1833,47,1,2125,37,1,0 +2013,4,13,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1638,-10,0,1744,-17,0,0 +2013,5,26,7,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-7,0,940,-21,0,0 +2013,5,21,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,845,19,1,1025,58,1,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1042,0,0,1922,-29,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1255,-3,0,1422,-9,0,0 +2013,9,18,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,855,-8,0,1130,-24,0,0 +2013,7,24,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,655,-3,0,1010,-13,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,16,1,1005,16,1,0 +2013,4,4,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,13,0,142,-1,0,0 +2013,9,29,7,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,812,0,0,1119,4,0,0 +2013,6,12,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1747,-3,0,1956,-5,0,0 +2013,5,6,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2025,76,1,2150,65,1,0 +2013,5,27,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,0,0,1504,-16,0,0 +2013,9,28,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,0,0,825,-2,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,0,,1010,0,1,1 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,4,0,1155,3,0,0 +2013,9,1,7,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,935,62,1,1035,63,1,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1252,6,0,1425,-10,0,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-5,0,945,-5,0,0 +2013,8,2,5,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1228,49,1,1730,39,1,0 +2013,8,13,2,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1205,58,1,1325,57,1,0 +2013,7,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1300,-4,0,1525,-6,0,0 +2013,9,14,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1438,-5,0,1606,-8,0,0 +2013,9,14,6,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-3,0,902,2,0,0 +2013,4,7,7,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,840,10,0,1435,-16,0,0 +2013,7,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-5,0,1310,-6,0,0 +2013,9,5,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,-3,0,1558,3,0,0 +2013,6,26,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2145,48,1,2230,48,1,0 +2013,5,18,6,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1335,-5,0,1556,-9,0,0 +2013,9,26,4,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,14,0,654,-9,0,0 +2013,6,16,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,934,4,0,1047,12,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,3,0,1415,17,1,0 +2013,4,21,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1043,-1,0,1515,0,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,832,-7,0,935,-13,0,0 +2013,6,16,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-6,0,940,-18,0,0 +2013,5,4,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,-3,0,1935,-2,0,0 +2013,4,3,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1425,-8,0,1555,-16,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,8,0,1104,-5,0,0 +2013,7,2,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1105,-2,0,1220,-8,0,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-3,0,930,-11,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-2,0,1305,-17,0,0 +2013,8,8,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-7,0,1420,-17,0,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,14,0,930,3,0,0 +2013,8,12,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1230,-2,0,1510,-10,0,0 +2013,5,21,2,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,28,1,1800,35,1,0 +2013,7,1,1,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-3,0,724,-17,0,0 +2013,9,8,7,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1556,38,1,1641,31,1,0 +2013,9,8,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1408,-4,0,1528,-17,0,0 +2013,8,19,1,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1910,4,0,2025,-6,0,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1745,-3,0,1915,-6,0,0 +2013,6,28,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1012,47,1,1132,44,1,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1131,39,1,1343,48,1,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1300,1,0,1425,3,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,1,0,1020,0,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1426,-4,0,1558,28,1,0 +2013,6,4,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2110,9,0,2321,-3,0,0 +2013,7,28,7,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,-2,0,2237,0,0,0 +2013,9,17,2,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1315,-2,0,1426,-9,0,0 +2013,7,3,3,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1616,-9,0,1758,-16,0,0 +2013,10,23,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1106,1,0,1633,-12,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,738,-4,0,921,4,0,0 +2013,5,27,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1218,-6,0,1801,-26,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,935,-5,0,1221,-45,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,5,0,915,-7,0,0 +2013,5,3,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-2,0,638,-3,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-4,0,1238,-1,0,0 +2013,5,16,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-7,0,2000,-5,0,0 +2013,6,27,4,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,-4,0,749,-9,0,0 +2013,6,20,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,65,1,1455,70,1,0 +2013,4,28,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1902,-6,0,2001,-11,0,0 +2013,9,28,6,FL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1440,-3,0,1534,-3,0,0 +2013,6,4,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,19,1,1829,10,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,2010,16,1,57,3,0,0 +2013,10,31,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-5,0,2029,5,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1705,41,1,2015,27,1,0 +2013,5,30,4,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,745,2,0,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1425,12,0,1525,6,0,0 +2013,4,20,6,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1114,5,0,1319,3,0,0 +2013,4,24,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1745,16,1,2020,11,0,0 +2013,8,23,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1050,0,0,1130,3,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,20,1,1534,18,1,0 +2013,4,5,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1106,-1,0,1204,8,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2158,6,0,2255,-3,0,0 +2013,8,24,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,1130,-19,0,0 +2013,6,1,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1645,4,0,1813,-10,0,0 +2013,4,21,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,21,1,1850,14,0,0 +2013,9,16,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1145,9,0,1310,7,0,0 +2013,9,27,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1110,-2,0,1200,-4,0,0 +2013,8,19,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1529,-5,0,1713,-8,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,1,0,1737,5,0,0 +2013,7,10,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-4,0,1210,-23,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1155,-3,0,1635,0,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1743,171,1,2009,175,1,0 +2013,5,30,4,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1510,-1,0,655,30,1,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1535,-1,0,1643,10,0,0 +2013,5,10,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-5,0,927,-12,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1228,3,0,1437,24,1,0 +2013,6,18,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1044,-2,0,1619,8,0,0 +2013,7,19,5,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1040,-7,0,1217,-24,0,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,3,0,1135,2,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1400,3,0,1500,6,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-7,0,1610,-6,0,0 +2013,4,21,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,740,-8,0,1530,-26,0,0 +2013,6,3,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-9,0,539,-24,0,0 +2013,10,23,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1325,-5,0,1615,-25,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,3,0,1315,0,0,0 +2013,7,29,1,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-4,0,2054,-13,0,0 +2013,5,10,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,24,1,1524,26,1,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1945,3,0,2335,-13,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1700,1,0,2350,9,0,0 +2013,9,27,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1120,1,0,1723,-29,0,0 +2013,6,5,3,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1940,-7,0,2331,-37,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-3,0,1635,-7,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,910,18,1,1050,12,0,0 +2013,8,10,6,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1335,0,0,1623,-28,0,0 +2013,5,5,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2000,33,1,2120,43,1,0 +2013,10,6,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1024,21,1,1256,26,1,0 +2013,10,9,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,29,1,1905,38,1,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,755,2,0,1105,-12,0,0 +2013,6,11,2,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1029,28,1,1135,16,1,0 +2013,9,16,1,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,751,-4,0,920,-22,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-9,0,2351,-15,0,0 +2013,8,24,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,950,12,0,1100,-9,0,0 +2013,5,26,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-5,0,1650,-30,0,0 +2013,4,3,3,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,0,0,2117,-10,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,-1,0,2209,0,0,0 +2013,8,28,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-7,0,1345,-6,0,0 +2013,8,28,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1536,-10,0,1728,-26,0,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-3,0,1455,-7,0,0 +2013,7,5,5,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2217,-6,0,606,-10,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1045,-4,0,1205,-14,0,0 +2013,5,1,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,-10,0,2100,-7,0,0 +2013,5,22,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1149,4,0,1310,-9,0,0 +2013,8,19,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-5,0,1347,-12,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1410,-3,0,1425,-12,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,1,0,1605,-14,0,0 +2013,4,24,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,815,-7,0,1114,-13,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,20,1,1933,-4,0,0 +2013,5,8,3,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1230,0,0,1420,-1,0,0 +2013,6,28,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1525,0,,1655,0,1,1 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1315,24,1,1445,19,1,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,7,0,2055,5,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1001,115,1,1047,94,1,0 +2013,10,12,6,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,805,-5,0,1103,-14,0,0 +2013,7,28,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2045,112,1,2159,123,1,0 +2013,4,5,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,850,6,0,1010,-2,0,0 +2013,8,30,5,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,958,-7,0,1423,-3,0,0 +2013,8,24,6,9E,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-6,0,1521,-9,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1803,5,0,1901,-3,0,0 +2013,7,23,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1245,127,1,1530,145,1,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,825,0,0,940,-9,0,0 +2013,4,16,2,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-6,0,710,-13,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,-3,0,1648,-9,0,0 +2013,8,10,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,6,0,2040,-3,0,0 +2013,8,9,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2020,73,1,2205,70,1,0 +2013,10,11,5,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1755,175,1,2052,160,1,0 +2013,6,14,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,-5,0,829,-6,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,620,0,0,855,1,0,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1202,1,0,1454,6,0,0 +2013,10,10,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,635,-2,0,650,-11,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,925,0,0,1055,5,0,0 +2013,10,18,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,840,-5,0,1005,-3,0,0 +2013,4,24,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1630,-4,0,1835,-21,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-1,0,1847,-12,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1840,34,1,2310,42,1,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,900,-1,0,1005,3,0,0 +2013,4,5,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1439,65,1,1739,62,1,0 +2013,9,18,3,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1054,3,0,1135,5,0,0 +2013,10,14,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1920,68,1,2237,50,1,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,850,-1,0,1020,-11,0,0 +2013,7,29,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,-4,0,936,81,1,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-3,0,1729,-24,0,0 +2013,6,16,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,104,1,1839,115,1,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1930,3,0,2035,0,0,0 +2013,8,30,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1245,-6,0,2116,-5,0,0 +2013,7,17,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1302,6,0,1418,12,0,0 +2013,5,29,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-6,0,1249,-9,0,0 +2013,6,2,7,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1820,6,0,2005,4,0,0 +2013,7,16,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,12,0,1955,34,1,0 +2013,4,5,5,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1735,-8,0,1930,-1,0,0 +2013,9,25,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1008,-4,0,1334,3,0,0 +2013,8,26,1,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1947,76,1,2056,69,1,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,-5,0,1355,-28,0,0 +2013,4,12,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-6,0,802,-8,0,0 +2013,4,29,1,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1135,60,1,1320,43,1,0 +2013,9,29,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,-4,0,1528,-19,0,0 +2013,4,23,2,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1710,183,1,1930,188,1,0 +2013,10,4,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-1,0,1525,0,0,0 +2013,7,6,6,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1530,18,1,1715,1,0,0 +2013,8,11,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1004,-6,0,1058,-19,0,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,625,-2,0,910,-12,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,8,0,1750,-3,0,0 +2013,8,27,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,650,-2,0,1015,-2,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1400,7,0,1500,0,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,800,62,1,920,69,1,0 +2013,10,11,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,36,1,1739,22,1,0 +2013,8,21,3,FL,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-10,0,1410,-18,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1455,-2,0,1740,-14,0,0 +2013,10,10,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1125,-3,0,1720,-36,0,0 +2013,7,19,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2209,57,1,2326,57,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,0,0,1004,-26,0,0 +2013,9,23,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1759,0,0,2024,-7,0,0 +2013,5,5,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2025,-3,0,2220,0,0,0 +2013,9,26,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1330,18,1,1609,9,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,-4,0,2201,-9,0,0 +2013,4,4,4,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10,-5,0,800,-1,0,0 +2013,4,1,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-2,0,847,-11,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1935,0,0,2156,-10,0,0 +2013,10,30,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-5,0,1240,-10,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,69,1,1331,59,1,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1058,8,0,1348,-3,0,0 +2013,8,1,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,614,-3,0,808,-8,0,0 +2013,7,29,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,-8,0,1816,0,1,1 +2013,8,1,4,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,500,1,0,805,-11,0,0 +2013,4,18,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,47,1,1938,69,1,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,11,0,1505,14,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1845,163,1,2110,145,1,0 +2013,10,31,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1654,-1,0,1905,-13,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,-7,0,1140,-4,0,0 +2013,6,16,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-1,0,953,2,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1925,-5,0,2334,-20,0,0 +2013,5,27,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,-4,0,2000,-11,0,0 +2013,5,28,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-8,0,2332,-21,0,0 +2013,8,31,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1422,-7,0,1554,-15,0,0 +2013,5,11,6,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,605,-1,0,1135,5,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1840,27,1,2310,13,0,0 +2013,10,10,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2059,92,1,2220,97,1,0 +2013,10,8,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1150,-8,0,1205,-19,0,0 +2013,8,18,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,800,-9,0,1552,-11,0,0 +2013,9,4,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-5,0,950,-12,0,0 +2013,7,26,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,935,-4,0,1100,-8,0,0 +2013,6,6,4,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,-2,0,1216,33,1,0 +2013,4,25,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1229,-15,0,0 +2013,6,11,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-3,0,854,11,0,0 +2013,10,13,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1435,-6,0,1700,-23,0,0 +2013,6,2,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1000,19,1,1325,10,0,0 +2013,5,13,1,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,745,-5,0,1543,-17,0,0 +2013,10,26,6,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1335,-5,0,1630,-12,0,0 +2013,4,15,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1558,9,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1712,-3,0,2043,-9,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1800,1,0,2020,-9,0,0 +2013,4,22,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,700,-6,0,915,-6,0,0 +2013,4,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,-4,0,2053,-11,0,0 +2013,8,26,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-4,0,825,-13,0,0 +2013,6,3,1,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-1,0,1545,-11,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1820,163,1,2012,133,1,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1650,-6,0,1717,-19,0,0 +2013,6,16,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1457,-6,0,0 +2013,8,30,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,-4,0,1706,-3,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-1,0,913,-24,0,0 +2013,7,8,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,211,67,1,559,48,1,0 +2013,5,22,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1856,15,1,2150,89,1,0 +2013,4,26,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,737,-4,0,827,2,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1712,89,1,1907,105,1,0 +2013,8,25,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1108,-1,0,1322,-22,0,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,-2,0,705,-9,0,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,-1,0,2106,10,0,0 +2013,10,25,5,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1155,-11,0,1619,-24,0,0 +2013,8,24,6,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,855,0,0,1006,-1,0,0 +2013,5,17,5,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,838,-9,0,1055,-13,0,0 +2013,5,6,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1200,-5,0,1310,-14,0,0 +2013,9,5,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1247,-1,0,1359,-9,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,-1,0,1025,-2,0,0 +2013,6,29,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,745,-4,0,1610,-4,0,0 +2013,7,5,5,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1829,8,0,2054,-3,0,0 +2013,6,4,2,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-6,0,1950,-10,0,0 +2013,5,15,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,-2,0,2210,-11,0,0 +2013,5,13,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,725,-3,0,1040,-11,0,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1340,95,1,1800,91,1,0 +2013,10,7,1,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,629,-8,0,929,-20,0,0 +2013,4,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,39,1,2310,23,1,0 +2013,4,2,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1730,23,1,1929,11,0,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,820,2,0,1140,3,0,0 +2013,4,14,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1935,-3,0,2120,-8,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,21,1,2040,112,1,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,954,20,1,1217,24,1,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1225,12,0,1430,10,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,127,1,2055,100,1,0 +2013,7,21,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,730,-11,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,41,1,1000,31,1,0 +2013,5,20,1,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,601,9,0,1201,3,0,0 +2013,8,23,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,-6,0,2114,-2,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1005,0,0,1150,-3,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1605,25,1,1741,18,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1000,-2,0,1330,-10,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1925,1,0,2109,4,0,0 +2013,9,14,6,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,910,5,0,1155,1,0,0 +2013,6,14,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-6,0,1150,-12,0,0 +2013,5,22,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1245,-5,0,1533,-4,0,0 +2013,10,1,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1459,-2,0,1756,-7,0,0 +2013,6,25,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,610,3,0,835,37,1,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,42,1,2359,56,1,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,4,0,1850,-3,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,910,-3,0,1030,-7,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-3,0,2303,-12,0,0 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,824,-2,0,1014,-21,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1820,1,0,12,-5,0,0 +2013,5,20,1,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1131,-3,0,1609,-9,0,0 +2013,7,10,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1415,1,0,1530,-8,0,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1537,0,0,1740,-9,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1910,-4,0,2015,-9,0,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2200,38,1,2305,32,1,0 +2013,7,23,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-2,0,1545,-3,0,0 +2013,7,5,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11042,Cleveland-Hopkins International,Cleveland,OH,2327,-10,0,644,-23,0,0 +2013,7,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1600,-3,0,1721,7,0,0 +2013,7,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1405,-1,0,1600,-2,0,0 +2013,8,9,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,-3,0,1445,-14,0,0 +2013,6,19,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,-3,0,2045,-9,0,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1845,88,1,2015,89,1,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1746,0,0,1905,-10,0,0 +2013,4,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,2004,-2,0,6,-17,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,-2,0,1720,-2,0,0 +2013,9,12,4,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1215,98,1,2018,126,1,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1330,2,0,1445,-6,0,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1340,5,0,1544,7,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2105,-4,0,2338,-14,0,0 +2013,8,14,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,-4,0,2056,-3,0,0 +2013,9,28,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,87,1,1900,88,1,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,817,-4,0,1359,-5,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,845,16,1,1036,9,0,0 +2013,10,21,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-5,0,1235,0,0,0 +2013,8,15,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-6,0,747,-4,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1935,-2,0,2138,-17,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,851,-21,0,0 +2013,5,29,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,17,1,1013,15,1,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2110,1,0,2240,-5,0,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1335,162,1,1645,162,1,0 +2013,6,17,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-8,0,1009,-10,0,0 +2013,5,13,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,638,-13,0,0 +2013,10,11,5,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1004,-10,0,1331,-11,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1935,8,0,2325,5,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,800,-1,0,1055,-5,0,0 +2013,5,31,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,751,-5,0,1044,-7,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,815,-2,0,1030,-5,0,0 +2013,8,28,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,645,-4,0,815,-14,0,0 +2013,4,4,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1825,5,0,2050,-27,0,0 +2013,6,21,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1730,-5,0,2110,-22,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,930,1,0,1400,23,1,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,-6,0,624,-20,0,0 +2013,9,24,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,605,-2,0,725,-5,0,0 +2013,7,9,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,0,,1910,0,1,1 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,94,1,2339,93,1,0 +2013,5,6,1,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,-4,0,1105,-11,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1306,-4,0,1438,-13,0,0 +2013,5,4,6,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1513,0,0,1624,5,0,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1551,-8,0,1659,0,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,69,1,1605,83,1,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,0,,2041,0,1,1 +2013,8,28,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1430,-4,0,1524,-14,0,0 +2013,6,22,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1435,-3,0,1735,-36,0,0 +2013,8,10,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,907,0,0,1018,21,1,0 +2013,4,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,-4,0,2259,-7,0,0 +2013,9,25,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1210,1,0,1255,2,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-3,0,724,-17,0,0 +2013,6,5,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,707,31,1,808,48,1,0 +2013,5,31,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1205,88,1,1503,89,1,0 +2013,6,1,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1815,-15,0,2045,-24,0,0 +2013,7,29,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,0,,1140,0,1,1 +2013,10,10,4,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1430,-6,0,1600,-8,0,0 +2013,6,24,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,1,0,835,-6,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1645,4,0,1755,-6,0,0 +2013,6,3,1,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1830,0,0,1925,-4,0,0 +2013,6,21,5,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,9,0,628,20,1,0 +2013,6,4,2,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,935,-5,0,1235,-6,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,-4,0,1214,-6,0,0 +2013,8,26,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-5,0,1554,-20,0,0 +2013,4,28,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2030,-3,0,2106,14,0,0 +2013,5,28,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,76,1,2150,68,1,0 +2013,7,20,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,815,-2,0,1014,-26,0,0 +2013,10,20,7,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,199,1,1608,203,1,0 +2013,4,30,2,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,910,-10,0,1145,-38,0,0 +2013,10,9,3,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,26,1,2110,-11,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,720,68,1,830,65,1,0 +2013,5,30,4,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1006,-5,0,1124,-19,0,0 +2013,4,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-5,0,1546,-11,0,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,5,0,2040,-7,0,0 +2013,4,14,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1315,4,0,1430,0,0,0 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2028,1,0,2247,-26,0,0 +2013,8,30,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,0,0,1315,-2,0,0 +2013,10,19,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1005,3,0,1105,-1,0,0 +2013,4,3,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1750,9,0,2045,15,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,30,1,2136,48,1,0 +2013,6,4,2,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-6,0,648,0,0,0 +2013,10,21,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-6,0,1116,4,0,0 +2013,9,27,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,3,0,1400,1,0,0 +2013,9,9,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1905,-3,0,2048,-8,0,0 +2013,6,16,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2014,-3,0,2122,-7,0,0 +2013,10,8,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,618,-8,0,716,-9,0,0 +2013,5,29,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,742,-5,0,1053,-10,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2020,-5,0,2241,-6,0,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,3,0,2136,17,1,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,14,0,1625,33,1,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,859,-6,0,1602,-16,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2145,10,0,2221,-4,0,0 +2013,10,2,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,0,0,1916,2,0,0 +2013,8,2,5,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-5,0,550,7,0,0 +2013,9,15,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1809,21,1,2304,7,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,853,8,0,1551,15,1,0 +2013,6,3,1,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,955,-3,0,1215,-13,0,0 +2013,8,24,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,10,0,2025,9,0,0 +2013,4,15,1,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,640,-10,0,748,-18,0,0 +2013,7,17,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,750,23,1,935,10,0,0 +2013,5,3,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1030,181,1,1250,168,1,0 +2013,4,12,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,615,-4,0,1123,-12,0,0 +2013,5,16,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-3,0,1530,4,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,755,-3,0,1410,-33,0,0 +2013,10,29,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1024,-5,0,1107,-8,0,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,-6,0,1842,-11,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1300,14,0,1505,-13,0,0 +2013,7,7,7,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,0,0,1020,-2,0,0 +2013,7,13,6,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,18,1,1435,10,0,0 +2013,6,7,5,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1639,59,1,1824,28,1,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1716,2,0,1914,-3,0,0 +2013,10,25,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-1,0,930,-2,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,745,-1,0,919,-11,0,0 +2013,10,20,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,-2,0,1410,2,0,0 +2013,8,31,6,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-4,0,832,-3,0,0 +2013,8,23,5,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,0,0,1000,-5,0,0 +2013,5,2,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,14,0,1359,17,1,0 +2013,9,22,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2320,-6,0,607,-31,0,0 +2013,10,20,7,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1635,-4,0,2042,-8,0,0 +2013,9,3,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1327,-6,0,1359,-6,0,0 +2013,10,20,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1412,0,0,1556,-12,0,0 +2013,4,2,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-6,0,1257,-11,0,0 +2013,5,14,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-7,0,1905,-15,0,0 +2013,7,27,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-1,0,808,-4,0,0 +2013,7,3,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,0,0,1421,8,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1800,13,0,35,-3,0,0 +2013,4,5,5,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,600,5,0,717,4,0,0 +2013,6,14,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,926,-1,0,1119,-7,0,0 +2013,6,3,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1208,0,0,1446,3,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1120,-8,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,12,0,1209,-11,0,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2000,-11,0,2248,-17,0,0 +2013,8,9,5,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1047,-7,0,1259,-15,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1640,0,,2000,0,1,1 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1915,76,1,2015,78,1,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,-4,0,2155,4,0,0 +2013,4,20,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,1006,2,0,0 +2013,6,10,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,1,0,945,-7,0,0 +2013,10,13,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,21,1,1130,26,1,0 +2013,9,5,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-8,0,2044,-12,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,733,-1,0,1102,9,0,0 +2013,7,8,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2010,5,0,2230,16,1,0 +2013,7,9,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,1,0,2103,-3,0,0 +2013,8,24,6,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1834,30,1,2105,20,1,0 +2013,8,17,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,745,-3,0,815,-5,0,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1205,0,0,1310,0,0,0 +2013,10,13,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1805,-9,0,2013,-19,0,0 +2013,9,14,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1344,2,0,1956,23,1,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,605,-5,0,819,-3,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,10,0,1205,2,0,0 +2013,8,28,3,9E,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1710,-4,0,1850,-6,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1905,377,1,2111,351,1,0 +2013,5,5,7,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,615,-8,0,905,-5,0,0 +2013,4,11,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,42,1,2213,89,1,0 +2013,4,6,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,900,-6,0,1113,-35,0,0 +2013,8,13,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,715,2,0,810,-2,0,0 +2013,6,10,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1735,10,0,2025,-3,0,0 +2013,5,11,6,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,-10,0,1040,-39,0,0 +2013,7,10,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,21,1,2206,26,1,0 +2013,4,10,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,905,4,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1803,6,0,2117,19,1,0 +2013,10,10,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1811,-11,0,2032,7,0,0 +2013,5,17,5,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1432,0,0,1628,-16,0,0 +2013,7,5,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1626,12,0,1835,28,1,0 +2013,5,27,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,2,0,2220,-7,0,0 +2013,7,10,3,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,905,2,0,1115,-7,0,0 +2013,10,11,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1652,-4,0,1747,7,0,0 +2013,6,2,7,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,17,1,1515,10,0,0 +2013,5,30,4,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,751,-2,0,1045,-4,0,0 +2013,6,14,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,700,0,0,735,17,1,0 +2013,10,24,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-5,0,2031,-15,0,0 +2013,5,19,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,0,0,2042,-2,0,0 +2013,7,7,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,51,1,2050,48,1,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1000,-5,0,1150,-13,0,0 +2013,10,27,7,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,810,0,0,955,-8,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1305,8,0,1820,-1,0,0 +2013,10,2,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-2,0,1929,-3,0,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,151,1,2115,141,1,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1455,4,0,1605,13,0,0 +2013,8,25,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,-4,0,2347,-9,0,0 +2013,10,31,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,-6,0,2250,-4,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,5,0,1445,-8,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1921,5,0,1,2,0,0 +2013,6,7,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1936,27,1,2057,27,1,0 +2013,7,30,2,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1547,-15,0,1830,-13,0,0 +2013,10,31,4,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1413,-4,0,1801,-5,0,0 +2013,7,26,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1400,10,0,1540,22,1,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,604,-1,0,727,-4,0,0 +2013,8,27,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-3,0,1708,-9,0,0 +2013,4,30,2,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-2,0,638,-9,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1103,-5,0,1414,-5,0,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1711,123,1,1950,128,1,0 +2013,10,18,5,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1126,-4,0,1349,-8,0,0 +2013,9,4,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1828,-9,0,1939,-16,0,0 +2013,5,16,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-5,0,959,-12,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1314,72,1,1602,67,1,0 +2013,7,3,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2021,26,1,2341,21,1,0 +2013,4,14,7,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1331,48,1,1930,14,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2140,-1,0,2240,-13,0,0 +2013,9,17,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2110,15,1,2225,15,1,0 +2013,7,19,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2230,0,0,120,-9,0,0 +2013,6,16,7,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,0,0,1730,-7,0,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1935,-4,0,2115,-13,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-5,0,1227,3,0,0 +2013,4,21,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1125,-4,0,1250,-2,0,0 +2013,4,22,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,840,-1,0,0 +2013,7,19,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-8,0,1220,-12,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1515,2,0,1647,-14,0,0 +2013,8,7,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,759,-5,0,0 +2013,7,15,1,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1825,-6,0,1959,-11,0,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14570,Reno/Tahoe International,Reno,NV,1925,3,0,2015,-3,0,0 +2013,7,1,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1630,9,0,1915,2,0,0 +2013,5,1,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2125,-2,0,2220,-15,0,0 +2013,10,24,4,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-5,0,532,6,0,0 +2013,8,2,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,0,0,1520,-15,0,0 +2013,5,4,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,1,0,1510,14,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1530,4,0,1635,6,0,0 +2013,4,4,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,905,0,0,1149,-3,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1548,1,0,1934,-26,0,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,-5,0,942,-12,0,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2105,8,0,2200,6,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1335,37,1,1445,32,1,0 +2013,6,15,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,5,0,1900,14,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1451,39,1,1624,55,1,0 +2013,4,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1510,0,0,1620,6,0,0 +2013,5,12,7,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1745,-4,0,1925,-24,0,0 +2013,9,5,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-7,0,1303,-11,0,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1425,-3,0,1535,-11,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1605,12,0,1835,10,0,0 +2013,6,21,5,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1652,-5,0,1849,4,0,0 +2013,10,11,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,8,0,1640,26,1,0 +2013,8,28,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1248,10,0,1500,-2,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1235,-3,0,1519,-24,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-2,0,1705,-8,0,0 +2013,8,15,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,13,0,2115,21,1,0 +2013,8,16,5,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,730,-1,0,1020,3,0,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,88,1,2025,88,1,0 +2013,7,13,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-3,0,1252,5,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,645,-5,0,950,-24,0,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1702,257,1,1940,259,1,0 +2013,4,25,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1130,-3,0,1305,-14,0,0 +2013,10,4,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1856,-2,0,2108,-17,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,640,-1,0,845,-7,0,0 +2013,9,29,7,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,855,-6,0,1108,-28,0,0 +2013,8,15,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2115,31,1,2235,25,1,0 +2013,9,1,7,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,810,-4,0,1120,-5,0,0 +2013,8,9,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,720,13,0,1007,10,0,0 +2013,10,29,2,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,811,-5,0,929,-10,0,0 +2013,8,30,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1209,-7,0,1349,0,0,0 +2013,4,25,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,73,1,1235,58,1,0 +2013,10,5,6,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1544,-3,0,1658,-16,0,0 +2013,5,13,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,-2,0,1305,-17,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-3,0,1620,-19,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2100,26,1,2305,31,1,0 +2013,8,28,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,840,-11,0,1107,-13,0,0 +2013,5,8,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,725,-24,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1320,27,1,1640,113,1,0 +2013,9,26,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,540,0,0,1200,-41,0,0 +2013,9,11,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1255,31,1,1531,28,1,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1030,6,0,1200,-1,0,0 +2013,5,3,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,196,1,1505,199,1,0 +2013,6,12,3,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2005,11,0,2245,1,0,0 +2013,7,18,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-3,0,2340,-11,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1525,14,0,2100,20,1,0 +2013,4,24,3,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,606,-6,0,1150,-15,0,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,834,16,1,1032,0,0,0 +2013,10,19,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,9,0,1830,-3,0,0 +2013,8,1,4,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,4,0,2126,-9,0,0 +2013,7,11,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,829,14,0,0 +2013,8,24,6,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,-6,0,1110,-20,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,-1,0,1047,20,1,0 +2013,10,15,2,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1306,-3,0,1539,-12,0,0 +2013,7,14,7,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,705,-7,0,1535,40,1,0 +2013,6,24,1,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1626,129,1,1918,214,1,0 +2013,4,22,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1731,0,,1905,0,1,1 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1829,-5,0,2111,-9,0,0 +2013,8,8,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1035,-8,0,1320,-5,0,0 +2013,10,2,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,845,-6,0,1013,-18,0,0 +2013,10,21,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2025,15,1,2045,4,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,955,15,1,1540,3,0,0 +2013,8,21,3,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1315,-1,0,1910,13,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1325,0,0,1430,-6,0,0 +2013,9,5,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-1,0,826,-5,0,0 +2013,7,2,2,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,945,-1,0,1325,-13,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,845,2,0,1115,-1,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1820,-5,0,2014,8,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,17,1,1447,21,1,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-4,0,1402,6,0,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,36,1,1130,23,1,0 +2013,8,1,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,545,-5,0,657,-24,0,0 +2013,8,25,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1440,-5,0,1649,-7,0,0 +2013,6,8,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-5,0,1908,-11,0,0 +2013,10,30,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1525,0,0,1635,-8,0,0 +2013,9,21,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1450,22,1,1530,28,1,0 +2013,7,13,6,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1020,-1,0,1255,-24,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,4,0,2200,-1,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,810,-3,0,942,-19,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,905,-1,0,1440,4,0,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1850,27,1,16,50,1,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1548,19,1,1831,15,1,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1940,8,0,2045,14,0,0 +2013,5,31,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-3,0,1154,-2,0,0 +2013,7,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1555,-2,0,1800,-7,0,0 +2013,7,11,4,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,19,1,920,13,0,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2055,-3,0,2311,0,0,0 +2013,8,10,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,905,0,0,1025,-9,0,0 +2013,6,4,2,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1515,-10,0,1648,-1,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,2359,18,1,527,10,0,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1620,70,1,1720,58,1,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,0,0,1325,10,0,0 +2013,5,27,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,-5,0,1225,-13,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-5,0,920,-18,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,905,-2,0,1227,-30,0,0 +2013,4,30,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,-12,0,2015,-34,0,0 +2013,8,29,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,845,-1,0,1015,-12,0,0 +2013,8,5,1,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,-3,0,2034,15,1,0 +2013,9,22,7,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1407,11,0,1712,11,0,0 +2013,6,10,1,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1401,4,0,1433,0,0,0 +2013,7,16,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-1,0,1125,-2,0,0 +2013,7,19,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1706,43,1,1753,56,1,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,2,0,2040,10,0,0 +2013,5,31,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1616,8,0,1903,29,1,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,1,0,1405,6,0,0 +2013,10,1,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,0,0,2100,-5,0,0 +2013,9,15,7,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,15,1,1645,15,1,0 +2013,4,8,1,FL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,10,0,2025,4,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,18,1,1515,17,1,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1245,0,0,1600,-20,0,0 +2013,4,9,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1107,-6,0,1640,-21,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-3,0,2157,-14,0,0 +2013,10,24,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1827,-3,0,2107,-6,0,0 +2013,7,26,5,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1335,0,0,1920,-9,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1123,44,1,1415,30,1,0 +2013,7,17,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-4,0,2120,-8,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1710,-3,0,1900,-11,0,0 +2013,5,31,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1735,19,1,1905,16,1,0 +2013,5,14,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-6,0,1908,37,1,0 +2013,9,26,4,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,-9,0,2109,-16,0,0 +2013,9,13,5,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1045,-1,0,1310,-7,0,0 +2013,7,6,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,958,8,0,1020,-7,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,-2,0,1340,-22,0,0 +2013,4,29,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-4,0,650,-6,0,0 +2013,9,13,5,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,829,160,1,1122,149,1,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1350,-3,0,1515,-11,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1640,-8,0,1824,4,0,0 +2013,10,14,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,-2,0,1035,5,0,0 +2013,5,27,1,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1430,43,1,1603,45,1,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,2,0,1940,-17,0,0 +2013,5,23,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,918,-5,0,1056,13,0,0 +2013,8,27,2,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1809,-1,0,2135,-41,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2205,-3,0,15,-23,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1454,-1,0,1636,10,0,0 +2013,7,11,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,813,9,0,0 +2013,4,3,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,0,0,1438,0,0,0 +2013,4,4,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,-7,0,920,-10,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1750,5,0,1934,-8,0,0 +2013,8,24,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1705,-5,0,1950,-25,0,0 +2013,9,27,5,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,715,7,0,1432,-7,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2031,-5,0,2125,-13,0,0 +2013,8,19,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1720,0,0,1850,-15,0,0 +2013,6,2,7,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,1,0,1315,-4,0,0 +2013,4,18,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,11,0,1152,110,1,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1910,25,1,2334,-1,0,0 +2013,5,31,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-3,0,1744,9,0,0 +2013,5,18,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-4,0,1312,-4,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,-6,0,1712,-10,0,0 +2013,8,26,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-6,0,1920,0,0,0 +2013,5,14,2,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1242,21,1,2036,17,1,0 +2013,6,15,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1755,-7,0,2053,-13,0,0 +2013,7,2,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1003,23,1,1113,30,1,0 +2013,7,25,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-6,0,830,-13,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1129,187,1,1252,175,1,0 +2013,4,29,1,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,-6,0,2105,8,0,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,1,0,1808,-3,0,0 +2013,5,5,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,57,1,1552,45,1,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1735,-1,0,2125,-7,0,0 +2013,6,22,6,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,9,0,1959,-5,0,0 +2013,10,8,2,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1940,-7,0,2135,-9,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1745,15,1,1850,8,0,0 +2013,5,12,7,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,841,0,0,1040,1,0,0 +2013,7,30,2,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,-5,0,1735,-15,0,0 +2013,10,29,2,9E,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,-6,0,1713,-14,0,0 +2013,10,23,3,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1145,-3,0,1335,-21,0,0 +2013,8,15,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2029,77,1,2359,44,1,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1114,6,0,1250,-7,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-3,0,1830,-2,0,0 +2013,8,5,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1209,-4,0,1331,-12,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,805,1,0,1000,-14,0,0 +2013,5,9,4,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1300,22,1,1534,3,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,700,9,0,825,22,1,0 +2013,8,27,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,7,0,1735,-19,0,0 +2013,4,26,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2105,-9,0,2230,-18,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1940,-2,0,2135,-6,0,0 +2013,9,6,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,-4,0,1708,-6,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2120,29,1,2210,19,1,0 +2013,10,23,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,9,0,1054,-1,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1705,18,1,1941,18,1,0 +2013,6,28,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1725,266,1,1908,259,1,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1800,18,1,2005,16,1,0 +2013,10,8,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-2,0,718,-4,0,0 +2013,5,23,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1455,190,1,1753,252,1,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,-5,0,1458,-18,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,941,33,1,1322,11,0,0 +2013,8,31,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1125,22,1,1440,20,1,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,-1,0,951,-13,0,0 +2013,7,19,5,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-5,0,1852,-30,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1325,-7,0,1605,-27,0,0 +2013,5,18,6,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-4,0,1155,-9,0,0 +2013,10,9,3,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1625,32,1,1655,21,1,0 +2013,9,11,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,1001,12,0,0 +2013,5,24,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,10,0,1232,15,1,0 +2013,9,8,7,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,0,0,1910,-16,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1940,108,1,2235,125,1,0 +2013,7,25,4,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,922,0,0,1041,14,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,10,0,1051,-8,0,0 +2013,7,26,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,900,-5,0,1040,-13,0,0 +2013,5,23,4,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,0,,1804,0,1,1 +2013,8,5,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,-15,0,2125,-15,0,0 +2013,6,19,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1011,-4,0,1153,-9,0,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,647,56,1,809,48,1,0 +2013,5,4,6,WN,13931,Norfolk International,Norfolk,VA,15304,Tampa International,Tampa,FL,1350,-4,0,1555,-11,0,0 +2013,10,14,1,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-6,0,1300,-21,0,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-1,0,1623,-3,0,0 +2013,10,31,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-10,0,1304,-2,0,0 +2013,7,29,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,17,1,850,10,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1435,-3,0,1654,-11,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2150,-3,0,2337,-6,0,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1710,-1,0,1925,-16,0,0 +2013,5,15,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,43,1,1600,27,1,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1640,-1,0,1750,-16,0,0 +2013,5,9,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,620,-3,0,935,15,1,0 +2013,7,15,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1555,-9,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2015,-5,0,2225,-5,0,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1940,-4,0,2255,-12,0,0 +2013,6,22,6,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1238,-4,0,1337,-12,0,0 +2013,5,14,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1815,40,1,1955,45,1,0 +2013,7,23,2,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1642,-2,0,2054,-25,0,0 +2013,5,17,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,2,0,2105,25,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,805,-11,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1300,79,1,1515,90,1,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1745,50,1,2225,27,1,0 +2013,9,8,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-9,0,1030,-27,0,0 +2013,9,20,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,3,0,1949,2,0,0 +2013,7,2,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1418,-11,0,1547,9,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,1,0,1415,14,0,0 +2013,9,1,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-5,0,900,-12,0,0 +2013,9,2,1,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1904,183,1,2150,169,1,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1849,-7,0,1946,-2,0,0 +2013,10,1,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-6,0,811,-12,0,0 +2013,4,6,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-2,0,1005,4,0,0 +2013,5,27,1,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1620,-9,0,1847,-24,0,0 +2013,4,13,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,-6,0,1643,-3,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,-5,0,2107,-15,0,0 +2013,9,28,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-1,0,1010,7,0,0 +2013,9,20,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,951,-5,0,1335,2,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,0,0,1519,-4,0,0 +2013,7,19,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,35,1,2105,31,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-4,0,1551,-3,0,0 +2013,8,6,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,0,0,1620,-3,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1750,64,1,2040,84,1,0 +2013,5,15,3,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,920,-4,0,1150,0,0,0 +2013,9,25,3,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,811,8,0,931,13,0,0 +2013,8,24,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1055,-2,0,1220,-11,0,0 +2013,8,17,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,211,89,1,559,97,1,0 +2013,4,4,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,37,1,2022,22,1,0 +2013,10,21,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,0,0,1700,-8,0,0 +2013,5,5,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1605,3,0,1800,7,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1445,46,1,1610,50,1,0 +2013,9,25,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1330,-5,0,1439,-24,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,-2,0,2356,-4,0,0 +2013,9,20,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-6,0,1108,-15,0,0 +2013,7,29,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,-5,0,2018,0,0,0 +2013,6,9,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2149,-1,0,143,-23,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,5,0,2100,-2,0,0 +2013,9,2,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,7,0,1850,-15,0,0 +2013,4,17,3,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1745,-6,0,2105,-27,0,0 +2013,9,15,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1740,13,0,1855,14,0,0 +2013,6,20,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,0,0,1006,-11,0,0 +2013,7,24,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,12,0,1758,11,0,0 +2013,4,11,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1530,17,1,1836,6,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2010,39,1,2105,49,1,0 +2013,6,10,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1855,-9,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1455,-5,0,1807,-30,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1710,2,0,1850,-14,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1153,1,0,1320,-13,0,0 +2013,6,29,6,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1203,-2,0,1429,-11,0,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-2,0,1315,-5,0,0 +2013,6,8,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,810,-9,0,1104,-10,0,0 +2013,7,3,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1259,-5,0,1544,-17,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1630,19,1,1850,4,0,0 +2013,7,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-2,0,1326,-8,0,0 +2013,5,12,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,814,-8,0,1019,-14,0,0 +2013,5,22,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2005,35,1,2018,19,1,0 +2013,4,5,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1546,-4,0,1640,-12,0,0 +2013,10,2,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,655,-3,0,845,-14,0,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,842,-3,0,1027,12,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1710,16,1,1945,21,1,0 +2013,9,6,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-3,0,755,-13,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,6,0,1315,0,0,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-6,0,1855,-27,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,8,0,1909,1,0,0 +2013,10,10,4,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,950,-8,0,1108,-11,0,0 +2013,6,15,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,5,0,745,-2,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-2,0,1700,-15,0,0 +2013,9,15,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-4,0,1512,-7,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1145,-7,0,1658,8,0,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,21,1,2115,13,0,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,0,0,2332,-3,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2145,138,1,2315,148,1,0 +2013,10,20,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,738,-5,0,1318,-23,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1455,-3,0,1630,-3,0,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1310,34,1,1656,28,1,0 +2013,6,24,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,74,1,2047,43,1,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-4,0,1200,-14,0,0 +2013,10,13,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-5,0,1024,-4,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1630,122,1,1833,149,1,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-6,0,1013,-17,0,0 +2013,6,12,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-2,0,747,3,0,0 +2013,10,6,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,655,-6,0,828,-23,0,0 +2013,6,29,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-8,0,1235,-1,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,-6,0,2036,21,1,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1855,10,0,2051,0,0,0 +2013,10,24,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,2,0,2130,-2,0,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,910,-3,0,1210,-19,0,0 +2013,10,10,4,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,700,-3,0,1049,7,0,0 +2013,4,26,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-3,0,2125,-3,0,0 +2013,10,12,6,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,25,1,1459,12,0,0 +2013,8,19,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1107,0,0,1710,-5,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,20,1,1355,7,0,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2110,16,1,2200,14,0,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1810,13,0,2047,38,1,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,755,-2,0,915,-5,0,0 +2013,7,7,7,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1542,-11,0,1803,-13,0,0 +2013,7,12,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1005,30,1,1120,8,0,0 +2013,6,29,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1210,-11,0,1320,-33,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,74,1,1203,53,1,0 +2013,8,28,3,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1003,-1,0,1110,-19,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,1,0,2050,0,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1600,-5,0,1737,43,1,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1540,-1,0,1730,-18,0,0 +2013,10,2,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-10,0,810,-20,0,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,1,0,1345,-12,0,0 +2013,8,4,7,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1724,-5,0,1935,-11,0,0 +2013,4,21,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,727,-6,0,834,-4,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-5,0,1029,-14,0,0 +2013,8,22,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,600,1,0,1342,20,1,0 +2013,4,23,2,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1245,-3,0,1350,-12,0,0 +2013,4,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1825,7,0,2000,0,0,0 +2013,5,26,7,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,800,-2,0,1555,9,0,0 +2013,6,24,1,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1307,53,1,1800,54,1,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1520,73,1,1650,78,1,0 +2013,10,30,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-9,0,907,-21,0,0 +2013,10,21,1,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1529,-4,0,1826,-12,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,2,0,2036,14,0,0 +2013,6,7,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,8,0,952,4,0,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1045,2,0,1210,15,1,0 +2013,6,15,6,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,530,-2,0,937,-18,0,0 +2013,9,11,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1640,-9,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1659,9,0,2003,-4,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1736,-4,0,1831,7,0,0 +2013,9,24,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,-3,0,2010,-20,0,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,-2,0,2052,-10,0,0 +2013,7,8,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,64,1,2110,62,1,0 +2013,6,11,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,825,-4,0,0 +2013,9,20,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1600,6,0,1730,-5,0,0 +2013,7,6,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,-1,0,1400,-6,0,0 +2013,10,9,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-2,0,1710,-14,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1700,-4,0,1840,-23,0,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,841,-2,0,1411,-23,0,0 +2013,6,2,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,106,1,2215,113,1,0 +2013,9,10,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2010,6,0,2133,5,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,18,1,1605,16,1,0 +2013,7,16,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,59,1,1515,60,1,0 +2013,7,26,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,-3,0,1650,-16,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,-1,0,1115,-6,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1225,5,0,1404,-10,0,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-1,0,1605,10,0,0 +2013,5,10,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-4,0,830,-13,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-8,0,1328,-12,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,-1,0,2342,-27,0,0 +2013,4,25,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-2,0,1914,-19,0,0 +2013,9,26,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,620,2,0,705,1,0,0 +2013,7,14,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-5,0,1334,-20,0,0 +2013,5,17,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-2,0,1028,-8,0,0 +2013,6,24,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1043,-4,0,1159,-21,0,0 +2013,6,14,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,7,0,1930,7,0,0 +2013,10,26,6,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1530,-1,0,1720,-5,0,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,830,1,0,1111,7,0,0 +2013,5,2,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1225,29,1,1453,39,1,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,910,0,0,1210,3,0,0 +2013,9,15,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,30,1,2135,26,1,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2019,-3,0,2117,-3,0,0 +2013,9,28,6,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1535,-11,0,1817,-5,0,0 +2013,7,27,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-5,0,853,-14,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,5,0,955,-5,0,0 +2013,4,16,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1110,-6,0,1300,-14,0,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1715,4,0,2235,-9,0,0 +2013,6,25,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,65,1,2230,68,1,0 +2013,5,6,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-2,0,1857,0,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1020,-1,0,1530,37,1,0 +2013,8,21,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-3,0,1048,1,0,0 +2013,9,9,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,625,-1,0,800,-10,0,0 +2013,7,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1121,17,1,1223,12,0,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-4,0,1305,-10,0,0 +2013,7,1,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,1,0,1430,-23,0,0 +2013,8,16,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1750,18,1,1905,11,0,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,7,0,2015,6,0,0 +2013,6,10,1,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,730,16,1,1030,24,1,0 +2013,6,3,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,835,-3,0,1035,-1,0,0 +2013,4,14,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,-4,0,2325,1,0,0 +2013,5,23,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,835,-3,0,947,-22,0,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1830,10,0,2007,-8,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2125,-3,0,2226,-15,0,0 +2013,4,7,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1542,3,0,1912,-20,0,0 +2013,9,17,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,835,0,0,1103,9,0,0 +2013,10,20,7,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-4,0,1119,-19,0,0 +2013,6,1,6,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,19,1,1650,18,1,0 +2013,5,14,2,OO,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1136,-8,0,1437,-19,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1053,-2,0,1228,-8,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,941,-1,0,1322,6,0,0 +2013,8,25,7,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,0,0,1810,-3,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,1,0,1529,20,1,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,-1,0,925,3,0,0 +2013,8,2,5,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1220,109,1,1541,91,1,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1605,28,1,1815,21,1,0 +2013,8,3,6,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1400,43,1,2235,22,1,0 +2013,4,17,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,1125,-2,0,0 +2013,8,26,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,6,0,1755,-3,0,0 +2013,5,12,7,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,920,-19,0,0 +2013,10,5,6,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,953,-6,0,1327,-4,0,0 +2013,10,15,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-6,0,1950,1,0,0 +2013,10,14,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-7,0,1208,-3,0,0 +2013,7,19,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1144,-3,0,1305,-7,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1210,-6,0,1515,2,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,2,0,1835,8,0,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1840,1,0,2055,14,0,0 +2013,9,17,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-2,0,1340,-24,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,0,0,1600,-13,0,0 +2013,4,9,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,820,-4,0,1122,2,0,0 +2013,7,31,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-3,0,1335,-4,0,0 +2013,10,11,5,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1955,46,1,2245,50,1,0 +2013,5,20,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1004,-6,0,0 +2013,9,8,7,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,12,0,1210,13,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,48,1,1040,80,1,0 +2013,6,25,2,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1755,-1,0,1846,-6,0,0 +2013,9,17,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,-2,0,1729,-14,0,0 +2013,8,15,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1245,20,1,1850,11,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,82,1,1600,100,1,0 +2013,9,28,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1012,-5,0,1146,-15,0,0 +2013,9,19,4,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,805,86,1,935,77,1,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1535,-5,0,1625,-7,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1800,30,1,2005,15,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,33,1,2135,31,1,0 +2013,4,29,1,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1335,-3,0,1541,12,0,0 +2013,9,21,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,0,0,1315,3,0,0 +2013,9,26,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,610,-7,0,750,-13,0,0 +2013,4,22,1,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1004,-5,0,1130,-9,0,0 +2013,6,13,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1841,113,1,2019,101,1,0 +2013,10,24,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1120,9,0,1300,5,0,0 +2013,9,29,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1015,14,0,1107,12,0,0 +2013,9,18,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,0,0,1100,-8,0,0 +2013,5,12,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1811,-16,0,0 +2013,8,10,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1040,-14,0,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2302,15,1,44,3,0,0 +2013,8,17,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,2,0,1149,12,0,0 +2013,8,4,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1323,-8,0,1442,-13,0,0 +2013,8,14,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,704,25,1,835,21,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1030,11,0,1215,10,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,17,1,2010,27,1,0 +2013,6,4,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1245,0,0,1543,-28,0,0 +2013,4,25,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1845,-10,0,2017,-6,0,0 +2013,9,22,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1301,18,1,1514,16,1,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,610,0,0,910,-2,0,0 +2013,10,8,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,-8,0,2025,-12,0,0 +2013,8,12,1,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,800,0,0,1021,-4,0,0 +2013,9,4,3,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1910,117,1,2025,113,1,0 +2013,6,20,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,-4,0,1000,-4,0,0 +2013,6,16,7,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,-4,0,1230,-13,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1610,65,1,1910,58,1,0 +2013,6,27,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,50,1,2008,47,1,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,940,-4,0,1815,21,1,0 +2013,5,29,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1346,-7,0,1621,-1,0,0 +2013,6,4,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-10,0,903,-4,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,-5,0,1030,-32,0,0 +2013,6,30,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-3,0,1731,-14,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,13,0,2028,3,0,0 +2013,7,9,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,0,0,905,-15,0,0 +2013,5,3,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1329,-1,0,1526,-6,0,0 +2013,9,26,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1117,-2,0,1152,11,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,5,0,2220,-9,0,0 +2013,8,11,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1758,-8,0,2059,-19,0,0 +2013,5,24,5,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2300,-5,0,655,-2,0,0 +2013,6,12,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,831,5,0,1100,-10,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,20,1,1740,32,1,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1045,1,0,1420,-3,0,0 +2013,9,20,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,955,0,0,1614,-8,0,0 +2013,5,28,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,0,0,908,-19,0,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,819,-3,0,1146,-11,0,0 +2013,4,5,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1750,10,0,1910,4,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,149,1,1550,154,1,0 +2013,5,9,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-9,0,1324,-16,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,-4,0,910,-31,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1635,84,1,1735,96,1,0 +2013,5,14,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1759,-12,0,2025,-26,0,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1649,0,0,2229,-13,0,0 +2013,10,24,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1440,30,1,1555,17,1,0 +2013,4,30,2,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,630,2,0,1230,-14,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1622,-4,0,1655,-5,0,0 +2013,5,6,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,-5,0,1700,-10,0,0 +2013,10,20,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,900,88,1,1040,105,1,0 +2013,7,10,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,800,0,0,900,-4,0,0 +2013,9,28,6,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,18,1,1335,3,0,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1136,-7,0,1234,-16,0,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1725,42,1,1830,49,1,0 +2013,5,1,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-8,0,1922,-11,0,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1145,35,1,1748,29,1,0 +2013,5,16,4,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1442,79,1,1751,80,1,0 +2013,4,29,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,26,1,2300,24,1,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,925,54,1,1255,54,1,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1530,22,1,1635,30,1,0 +2013,6,19,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,2,0,1923,-1,0,0 +2013,8,7,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,25,1,2235,17,1,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,6,0,1109,-6,0,0 +2013,7,13,6,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1136,-4,0,1255,-16,0,0 +2013,7,14,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1818,45,1,2149,9,0,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,62,1,1810,65,1,0 +2013,7,3,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1706,4,0,1753,-1,0,0 +2013,10,21,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1752,-3,0,2119,-5,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,945,5,0,1200,4,0,0 +2013,6,27,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1937,147,1,2121,136,1,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1853,-3,0,2213,-23,0,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1020,-3,0,1138,-17,0,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,910,0,0,1040,-9,0,0 +2013,8,31,6,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1720,-12,0,1931,-16,0,0 +2013,8,22,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1710,56,1,1952,78,1,0 +2013,5,4,6,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1700,-5,0,1751,-4,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1301,-2,0,1640,-10,0,0 +2013,7,10,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,66,1,2108,73,1,0 +2013,7,21,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-8,0,1920,-8,0,0 +2013,5,4,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,905,-3,0,1110,-1,0,0 +2013,7,22,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1105,-5,0,1230,-14,0,0 +2013,9,24,2,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-5,0,1645,16,1,0 +2013,4,2,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,-2,0,2055,-3,0,0 +2013,6,8,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2359,-6,0,728,-22,0,0 +2013,10,23,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-5,0,1105,3,0,0 +2013,10,16,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,15,1,1705,3,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,0,0,534,-3,0,0 +2013,7,20,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,853,8,0,1144,33,1,0 +2013,4,6,6,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,600,-6,0,1131,-6,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1732,2,0,1853,0,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1753,4,0,1944,6,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,1,0,1235,-7,0,0 +2013,10,17,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,6,0,1359,-17,0,0 +2013,9,17,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-4,0,1420,-4,0,0 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1315,-5,0,0 +2013,5,30,4,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,0,0,15,3,0,0 +2013,8,24,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1550,-5,0,1640,-10,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2110,13,0,2343,-17,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1252,14,0,1745,-4,0,0 +2013,7,24,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,39,1,2130,35,1,0 +2013,4,25,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1006,-8,0,1140,-9,0,0 +2013,7,30,2,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,2,0,1520,2,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,-4,0,1321,-14,0,0 +2013,10,9,3,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1730,0,0,2253,-17,0,0 +2013,6,19,3,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,72,1,852,77,1,0 +2013,5,9,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,-3,0,1112,-13,0,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,-3,0,1101,4,0,0 +2013,10,6,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1545,3,0,1920,-23,0,0 +2013,8,22,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1425,1,0,1630,45,1,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-1,0,30,-8,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1638,30,1,1804,15,1,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1505,10,0,1735,-8,0,0 +2013,10,25,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,606,-9,0,855,-11,0,0 +2013,10,3,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1856,-1,0,2108,-2,0,0 +2013,6,29,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,144,1,1755,129,1,0 +2013,5,11,6,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1010,4,0,1200,-5,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1320,13,0,1630,-6,0,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,845,7,0,1124,6,0,0 +2013,4,4,4,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,740,-1,0,935,-5,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-2,0,1653,-22,0,0 +2013,6,18,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,39,1,1655,32,1,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-2,0,2154,-32,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1355,4,0,1455,-11,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,650,-2,0,821,-3,0,0 +2013,4,3,3,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,6,0,1555,-15,0,0 +2013,8,4,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1240,-7,0,1517,-4,0,0 +2013,10,19,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2118,-3,0,2241,-7,0,0 +2013,6,2,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1215,8,0,1350,7,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,-4,0,1455,-7,0,0 +2013,6,22,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1736,-2,0,1945,-10,0,0 +2013,4,4,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,0,0,1958,-14,0,0 +2013,10,24,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,-7,0,2110,-15,0,0 +2013,4,22,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1100,7,0,1224,-3,0,0 +2013,9,25,3,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,655,-12,0,800,-21,0,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,40,1,1633,35,1,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1917,0,0,2202,-10,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,55,1,1757,52,1,0 +2013,8,9,5,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-8,0,715,8,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2030,19,1,2245,17,1,0 +2013,5,7,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,700,-9,0,1120,-16,0,0 +2013,9,25,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-5,0,1023,-2,0,0 +2013,5,23,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,828,75,1,936,74,1,0 +2013,4,4,4,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1422,19,1,1549,9,0,0 +2013,10,14,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1739,-6,0,1950,-5,0,0 +2013,6,14,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,36,1,2000,27,1,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,-6,0,1034,-14,0,0 +2013,10,14,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1320,0,0,1535,6,0,0 +2013,10,6,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,1,0,1641,-8,0,0 +2013,10,18,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1315,5,0,1415,5,0,0 +2013,7,2,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,-2,0,2135,1,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,35,1,55,19,1,0 +2013,4,25,4,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,610,-10,0,825,-10,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-7,0,1335,-8,0,0 +2013,8,25,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1735,60,1,1943,61,1,0 +2013,6,29,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1310,82,1,1500,123,1,0 +2013,9,8,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-10,0,920,-5,0,0 +2013,5,1,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,900,-7,0,1039,-25,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,-3,0,2127,-8,0,0 +2013,5,26,7,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1200,-6,0,1331,-12,0,0 +2013,8,15,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,13,0,2118,10,0,0 +2013,6,12,3,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,925,-6,0,1132,-16,0,0 +2013,5,5,7,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-4,0,1735,6,0,0 +2013,7,15,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1930,0,0,2050,5,0,0 +2013,6,17,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,-5,0,1606,0,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1240,-2,0,1545,-25,0,0 +2013,8,24,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1339,-9,0,1625,-6,0,0 +2013,4,7,7,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-1,0,1555,-12,0,0 +2013,4,28,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,945,1,0,1255,-19,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-2,0,1623,-11,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,-6,0,1449,-4,0,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,929,-2,0,1220,0,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1135,-3,0,1235,4,0,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-3,0,1920,-20,0,0 +2013,10,9,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,756,-5,0,951,-8,0,0 +2013,8,4,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1735,6,0,1850,-16,0,0 +2013,5,26,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1005,-2,0,1110,-8,0,0 +2013,8,2,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,12,0,1602,7,0,0 +2013,8,2,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,7,0,1755,-7,0,0 +2013,7,14,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,-1,0,1025,4,0,0 +2013,5,8,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,3,0,835,-5,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,-3,0,1253,-6,0,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,10,0,1515,4,0,0 +2013,7,10,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,117,1,1355,103,1,0 +2013,10,29,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1630,-8,0,1751,-13,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,-3,0,1320,-7,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1440,-1,0,1700,-24,0,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,945,0,0,1200,-2,0,0 +2013,7,14,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1142,11,0,1228,5,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2110,-4,0,2225,-5,0,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1535,2,0,1735,1,0,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,930,-3,0,1020,-12,0,0 +2013,6,21,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,18,1,1555,30,1,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1925,80,1,2050,78,1,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1100,-2,0,1450,-9,0,0 +2013,8,18,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,17,1,1800,11,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2135,5,0,2255,-5,0,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1105,-6,0,1232,-15,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,805,12,0,1255,-8,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,-2,0,2350,14,0,0 +2013,9,24,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-1,0,940,1,0,0 +2013,9,28,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1355,-2,0,1455,0,0,0 +2013,5,14,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,11,0,824,6,0,0 +2013,10,16,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1559,32,1,1943,-5,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1510,27,1,1643,19,1,0 +2013,8,12,1,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,23,1,2005,14,0,0 +2013,6,28,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,-4,0,920,-9,0,0 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2145,-5,0,2240,5,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1915,-2,0,2225,-3,0,0 +2013,8,18,7,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,730,7,0,1037,10,0,0 +2013,8,6,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,609,-4,0,810,-12,0,0 +2013,4,21,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,655,1,0,935,15,1,0 +2013,10,24,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1355,-4,0,1702,16,1,0 +2013,7,15,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-7,0,2102,0,0,0 +2013,8,4,7,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,18,1,2015,30,1,0 +2013,9,28,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,740,39,1,1028,35,1,0 +2013,8,25,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-6,0,2220,-10,0,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,38,1,2115,23,1,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1855,-6,0,2020,-5,0,0 +2013,7,15,1,DL,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,-9,0,1823,-11,0,0 +2013,6,1,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,720,-5,0,0 +2013,8,18,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,748,1,0,835,0,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,37,1,2356,67,1,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2105,26,1,2349,29,1,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1230,0,0,2023,3,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1558,99,1,2005,117,1,0 +2013,10,11,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-4,0,1055,-5,0,0 +2013,8,1,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-2,0,2056,-16,0,0 +2013,4,27,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1250,-7,0,1457,-21,0,0 +2013,9,7,6,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1345,0,0,1633,-23,0,0 +2013,7,19,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1926,20,1,2058,1,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-2,0,1443,-2,0,0 +2013,8,23,5,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1040,-1,0,1635,2,0,0 +2013,6,8,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,3,0,1135,-20,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,945,-8,0,1121,-8,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1745,9,0,1925,1,0,0 +2013,10,27,7,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1225,13,0,1513,-3,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1700,82,1,1822,91,1,0 +2013,7,1,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,52,1,1750,65,1,0 +2013,5,16,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,615,-3,0,739,-4,0,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,625,-4,0,820,-20,0,0 +2013,7,23,2,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,54,1,914,60,1,0 +2013,6,29,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1648,76,1,1809,69,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1242,-6,0,1433,-6,0,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1114,0,0,1224,12,0,0 +2013,10,7,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,-8,0,1127,-16,0,0 +2013,4,2,2,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1525,86,1,1835,63,1,0 +2013,10,13,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,743,-3,0,824,-4,0,0 +2013,9,6,5,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,30,1,2248,-9,0,0 +2013,7,23,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,935,-8,0,0 +2013,4,8,1,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1705,3,0,1915,-3,0,0 +2013,6,4,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1500,0,0,2055,-10,0,0 +2013,10,26,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2140,-16,0,2346,-23,0,0 +2013,6,11,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1712,2,0,1836,-11,0,0 +2013,4,22,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,950,-16,0,0 +2013,10,13,7,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,955,-2,0,1459,-21,0,0 +2013,7,19,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1400,-1,0,1440,-7,0,0 +2013,7,16,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,13,0,2345,4,0,0 +2013,7,25,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,4,0,1130,5,0,0 +2013,4,19,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-3,0,945,-2,0,0 +2013,6,21,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1040,12,0,1245,1,0,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,2000,5,0,2120,10,0,0 +2013,8,20,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-6,0,1035,-4,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1045,5,0,1410,-3,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1330,12,0,1939,69,1,0 +2013,5,10,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-3,0,1105,-9,0,0 +2013,5,31,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-3,0,843,-5,0,0 +2013,8,10,6,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1415,0,0,1534,-15,0,0 +2013,4,9,2,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2110,-9,0,2242,-2,0,0 +2013,6,1,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,920,-10,0,1020,-31,0,0 +2013,6,8,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,2,0,1520,6,0,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,-3,0,1025,-17,0,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,26,1,2010,9,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2130,26,1,2300,20,1,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,9,0,1754,2,0,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,751,-21,0,0 +2013,9,26,4,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,607,-7,0,915,-17,0,0 +2013,10,8,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-7,0,1723,0,0,0 +2013,10,14,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,808,21,1,929,12,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,615,-2,0,740,-3,0,0 +2013,5,14,2,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1430,0,0,1705,-28,0,0 +2013,7,11,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,46,1,1221,21,1,0 +2013,6,8,6,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-2,0,1800,-15,0,0 +2013,6,1,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1140,-1,0,1310,-24,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,740,-5,0,1132,1,0,0 +2013,8,24,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,666,1,1421,661,1,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,2,0,1536,-3,0,0 +2013,6,10,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,703,9,0,1000,-1,0,0 +2013,5,16,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2220,-8,0,47,-20,0,0 +2013,4,27,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1325,0,0,1607,-8,0,0 +2013,6,18,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,909,-4,0,1210,-15,0,0 +2013,5,2,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1103,-13,0,1209,-27,0,0 +2013,4,8,1,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1435,5,0,2240,9,0,0 +2013,5,7,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,635,-4,0,0 +2013,5,7,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1215,1,0,1325,-15,0,0 +2013,8,25,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1700,-9,0,1802,1,0,0 +2013,4,7,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,700,-8,0,920,1,0,0 +2013,6,10,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1216,70,1,1424,71,1,0 +2013,9,14,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-4,0,1039,-18,0,0 +2013,5,15,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-6,0,2134,-12,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2210,-1,0,2305,-8,0,0 +2013,4,15,1,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1425,-1,0,1630,-2,0,0 +2013,6,16,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,22,1,1335,8,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1905,-4,0,2119,-29,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,7,0,1840,14,0,0 +2013,7,24,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,4,0,1345,7,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,3,0,1758,9,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,-2,0,1755,-12,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1929,-10,0,2155,-22,0,0 +2013,10,20,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1910,-4,0,2040,-4,0,0 +2013,9,11,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1140,1,0,1330,0,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,105,1,1029,103,1,0 +2013,8,14,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,41,1,1705,38,1,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1140,1,0,1445,-1,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1540,-6,0,1800,-30,0,0 +2013,5,1,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,11,0,1845,29,1,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,-2,0,1115,8,0,0 +2013,10,28,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,800,7,0,1045,-4,0,0 +2013,7,3,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,99,1,1655,104,1,0 +2013,10,15,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1125,-7,0,1222,-11,0,0 +2013,10,30,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2030,122,1,2158,123,1,0 +2013,5,23,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1330,0,0,1425,-5,0,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,0,0,1105,-9,0,0 +2013,9,11,3,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1640,-2,0,1800,-4,0,0 +2013,10,26,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,840,-2,0,1013,-9,0,0 +2013,6,12,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,53,1,2011,49,1,0 +2013,8,10,6,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,614,-7,0,742,-31,0,0 +2013,8,11,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,47,1,720,38,1,0 +2013,7,6,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1715,8,0,1930,1,0,0 +2013,5,8,3,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,0,0,2154,31,1,0 +2013,8,24,6,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1825,28,1,2115,21,1,0 +2013,4,1,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1125,-5,0,1405,49,1,0 +2013,8,11,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-2,0,1527,-19,0,0 +2013,5,16,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,-1,0,1135,-13,0,0 +2013,8,24,6,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,840,-7,0,1003,-20,0,0 +2013,5,26,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,1,0,1510,-3,0,0 +2013,4,10,3,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1714,22,1,1833,43,1,0 +2013,6,27,4,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1040,6,0,1244,4,0,0 +2013,8,6,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-5,0,843,-11,0,0 +2013,5,27,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1227,-1,0,2100,-12,0,0 +2013,9,29,7,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1815,4,0,2030,5,0,0 +2013,4,23,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1900,-17,0,0 +2013,5,26,7,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,2,0,1950,-17,0,0 +2013,6,24,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1434,34,1,1616,24,1,0 +2013,5,1,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1759,-6,0,2129,-38,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,131,1,752,178,1,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,905,-4,0,1734,-6,0,0 +2013,7,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1915,11,0,13,3,0,0 +2013,5,21,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,20,1,1620,28,1,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1615,3,0,1755,-4,0,0 +2013,8,18,7,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1248,1,0,1425,-19,0,0 +2013,9,8,7,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1455,24,1,1720,4,0,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1610,12,0,1840,-3,0,0 +2013,7,14,7,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,600,0,0,711,9,0,0 +2013,6,2,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,4,0,925,1,0,0 +2013,5,24,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1406,0,0,2100,-9,0,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,605,-3,0,855,6,0,0 +2013,7,14,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,55,1,1740,56,1,0 +2013,9,22,7,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2349,17,1,709,-3,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1315,-5,0,1526,-16,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,850,-1,0,935,10,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1910,-4,0,2253,-6,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,-4,0,1720,-24,0,0 +2013,5,8,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,-4,0,2310,-15,0,0 +2013,6,14,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,252,1,2010,244,1,0 +2013,7,8,1,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1410,0,,1530,0,1,1 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,615,-1,0,715,-10,0,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1837,-7,0,1950,-20,0,0 +2013,9,13,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1459,-8,0,1814,17,1,0 +2013,8,28,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,820,-4,0,1040,-28,0,0 +2013,4,19,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2243,-5,0,711,-27,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1915,-1,0,35,6,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1730,49,1,1825,115,1,0 +2013,6,24,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,10,0,809,11,0,0 +2013,5,23,4,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,900,-3,0,1125,-8,0,0 +2013,5,1,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1932,24,1,2042,9,0,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1155,19,1,1435,21,1,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1440,6,0,2145,-15,0,0 +2013,9,11,3,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,-5,0,616,-7,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1945,14,0,2123,18,1,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1915,7,0,35,-2,0,0 +2013,5,20,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,1245,-5,0,0 +2013,9,27,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,715,-2,0,1000,-2,0,0 +2013,7,5,5,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2239,0,0,631,4,0,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1911,24,1,2047,6,0,0 +2013,9,25,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1720,2,0,1955,-16,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1400,-2,0,1650,-11,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,-2,0,1310,-3,0,0 +2013,8,29,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1500,14,0,1735,18,1,0 +2013,4,3,3,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1939,-6,0,2245,-11,0,0 +2013,10,22,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-3,0,1550,-9,0,0 +2013,8,19,1,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,925,-4,0,1115,-11,0,0 +2013,4,28,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,25,1,915,17,1,0 +2013,8,11,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,824,14,0,1329,-6,0,0 +2013,10,21,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1702,-6,0,2059,-14,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,5,0,805,-14,0,0 +2013,10,15,2,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,758,27,1,932,48,1,0 +2013,6,7,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1515,7,0,1540,3,0,0 +2013,10,31,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-1,0,905,1,0,0 +2013,4,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1310,-7,0,1359,4,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1610,8,0,1720,-2,0,0 +2013,5,25,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,0,0,1759,-7,0,0 +2013,8,17,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,921,35,1,1024,28,1,0 +2013,9,30,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,715,0,0,749,-16,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1120,-4,0,1259,-10,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1051,-2,0,1154,-2,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,5,0,1525,13,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,-1,0,750,-13,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-2,0,1030,-6,0,0 +2013,6,17,1,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,550,2,0,720,-7,0,0 +2013,6,4,2,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2052,-11,0,22,-14,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,630,-3,0,755,2,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1632,-7,0,1753,-13,0,0 +2013,6,13,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1101,20,1,1651,12,0,0 +2013,6,30,7,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-4,0,1722,-12,0,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,849,3,0,1634,-5,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1253,13,0,1619,2,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,857,-6,0,1427,-10,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2005,-6,0,2241,-5,0,0 +2013,7,15,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,-2,0,1351,11,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,-3,0,859,-14,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,1250,-16,0,0 +2013,9,2,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-7,0,1930,-27,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1214,2,0,1347,-6,0,0 +2013,8,29,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,645,0,0,1235,14,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1011,75,1,1256,67,1,0 +2013,9,27,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,33,1,1645,22,1,0 +2013,7,27,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,705,-4,0,904,11,0,0 +2013,7,9,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1445,0,0,1450,-1,0,0 +2013,7,18,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1405,7,0,2058,8,0,0 +2013,6,30,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1920,128,1,2246,112,1,0 +2013,9,4,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1225,-10,0,1555,-13,0,0 +2013,4,16,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,715,-3,0,755,3,0,0 +2013,4,11,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,9,0,815,19,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1941,161,1,2140,155,1,0 +2013,9,25,3,US,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-7,0,910,-5,0,0 +2013,8,31,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1115,-3,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,50,1,1550,66,1,0 +2013,5,22,3,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1937,6,0,813,-11,0,0 +2013,7,20,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1035,-4,0,1350,-25,0,0 +2013,7,19,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,37,1,1255,92,1,0 +2013,5,10,5,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,940,8,0,1100,6,0,0 +2013,8,26,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1440,11,0,1550,6,0,0 +2013,7,8,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1006,-2,0,1158,-8,0,0 +2013,8,1,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,6,0,1450,10,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2155,-8,0,2259,-22,0,0 +2013,10,4,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,740,-6,0,842,-18,0,0 +2013,8,15,4,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-4,0,1743,1,0,0 +2013,8,2,5,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1830,3,0,1950,-10,0,0 +2013,5,21,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-4,0,941,-9,0,0 +2013,8,7,3,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,715,24,1,840,41,1,0 +2013,7,8,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1933,56,1,2125,56,1,0 +2013,4,1,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,99,1,1810,112,1,0 +2013,10,6,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1140,-3,0,1145,-9,0,0 +2013,4,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1150,1,0,1858,10,0,0 +2013,5,9,4,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1445,-3,0,1842,-19,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,-2,0,1729,-20,0,0 +2013,5,21,2,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,-5,0,1037,-5,0,0 +2013,4,26,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,2,0,955,15,1,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1015,0,0,1221,-4,0,0 +2013,10,23,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1510,0,0,1800,8,0,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,837,-2,0,1035,-14,0,0 +2013,8,3,6,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,-7,0,1740,-24,0,0 +2013,5,15,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,62,1,2040,41,1,0 +2013,6,22,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,-3,0,755,-6,0,0 +2013,5,10,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-6,0,1007,2,0,0 +2013,4,14,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1355,-7,0,1520,-11,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2100,-2,0,2328,-13,0,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2130,-4,0,2359,-6,0,0 +2013,6,23,7,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1935,22,1,2159,26,1,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1905,57,1,2120,60,1,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1655,5,0,1830,9,0,0 +2013,8,15,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,1125,-17,0,0 +2013,5,8,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,925,6,0,1125,7,0,0 +2013,7,1,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,12,0,1735,-4,0,0 +2013,10,21,1,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1205,9,0,1400,-3,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,955,-1,0,1657,3,0,0 +2013,8,30,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2255,-3,0,612,-14,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1815,17,1,2046,6,0,0 +2013,7,30,2,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1334,-2,0,1600,-6,0,0 +2013,10,16,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1705,5,0,1830,0,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1035,4,0,1520,6,0,0 +2013,5,18,6,UA,13830,Kahului Airport,Kahului,HI,11292,Denver International,Denver,CO,2147,-1,0,822,-9,0,0 +2013,5,8,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1027,-1,0,1126,-3,0,0 +2013,7,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,55,1,2155,50,1,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1640,-2,0,1823,-18,0,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1645,16,1,1810,6,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2040,-1,0,2155,-12,0,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,640,-2,0,750,4,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-4,0,1440,-8,0,0 +2013,5,23,4,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1415,-3,0,1546,-10,0,0 +2013,5,2,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1059,16,1,1306,3,0,0 +2013,6,8,6,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,-6,0,1240,-17,0,0 +2013,6,1,6,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1200,-3,0,1408,-17,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1426,41,1,1636,33,1,0 +2013,5,21,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1915,31,1,2035,36,1,0 +2013,4,4,4,DL,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1933,-5,0,2120,-31,0,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1557,30,1,1733,26,1,0 +2013,8,9,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1646,-6,0,1815,0,0,0 +2013,9,17,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-3,0,1245,-7,0,0 +2013,6,19,3,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1710,-1,0,1838,-6,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,0,0,2305,8,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,705,-3,0,835,-9,0,0 +2013,6,16,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,2,0,1850,-1,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2035,-5,0,2225,-20,0,0 +2013,6,5,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,605,3,0,1436,6,0,0 +2013,8,24,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,6,0,2216,8,0,0 +2013,7,29,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,104,1,14,99,1,0 +2013,5,20,1,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,700,-5,0,800,-18,0,0 +2013,5,31,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-3,0,636,3,0,0 +2013,10,22,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1400,7,0,2000,4,0,0 +2013,5,14,2,DL,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,-8,0,2144,-57,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1530,54,1,1650,45,1,0 +2013,9,11,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2007,-2,0,2105,-6,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1457,18,1,1555,29,1,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,1,0,1035,-11,0,0 +2013,6,9,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1930,-8,0,2215,1,0,0 +2013,4,28,7,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,800,-3,0,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1500,-3,0,1607,-10,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1757,37,1,2004,24,1,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1625,-3,0,1745,-21,0,0 +2013,4,10,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-9,0,1157,-22,0,0 +2013,6,13,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1600,232,1,1750,301,1,0 +2013,6,29,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1656,9,0,1857,24,1,0 +2013,8,13,2,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1715,-12,0,2105,-12,0,0 +2013,6,13,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,-5,0,730,-16,0,0 +2013,10,24,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2027,17,1,2135,9,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,-5,0,1127,-6,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,-3,0,1415,6,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,11,0,2146,-5,0,0 +2013,9,5,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,800,-23,0,0 +2013,8,19,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,635,2,0,837,7,0,0 +2013,5,16,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1520,29,1,1633,20,1,0 +2013,7,19,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,1,0,1348,1,0,0 +2013,9,27,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-5,0,858,-26,0,0 +2013,8,9,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,26,1,1630,21,1,0 +2013,8,25,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2016,-12,0,2346,-19,0,0 +2013,7,23,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-5,0,2125,-9,0,0 +2013,6,1,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,902,-3,0,1705,-21,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1552,-3,0,1840,-16,0,0 +2013,10,24,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,-2,0,1616,-2,0,0 +2013,8,7,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1550,1,0,1825,21,1,0 +2013,10,22,2,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,-8,0,2210,-16,0,0 +2013,6,2,7,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1020,0,0,1325,7,0,0 +2013,5,16,4,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,713,-1,0,1445,-2,0,0 +2013,6,9,7,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,-5,0,1615,-17,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,9,0,1245,-13,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,620,3,0,1050,-12,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,-2,0,1729,-9,0,0 +2013,4,2,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1635,10,0,1934,-12,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1205,33,1,1610,34,1,0 +2013,7,17,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1347,44,1,1506,35,1,0 +2013,9,3,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2000,-2,0,2300,-27,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,-3,0,918,-6,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1145,8,0,1520,14,0,0 +2013,6,12,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1726,-3,0,1917,-7,0,0 +2013,7,13,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1420,18,1,1535,17,1,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1738,0,0,2041,-11,0,0 +2013,4,14,7,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-3,0,2035,-2,0,0 +2013,5,9,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,1,0,1445,-7,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,820,8,0,1035,8,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,0,0,1736,-15,0,0 +2013,5,2,4,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-3,0,810,13,0,0 +2013,4,18,4,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-8,0,1250,-19,0,0 +2013,5,19,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-3,0,1635,-10,0,0 +2013,7,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2020,-6,0,2145,-18,0,0 +2013,10,20,7,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,3,0,25,-4,0,0 +2013,6,1,6,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,830,11,0,1106,4,0,0 +2013,8,16,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,2,0,725,-12,0,0 +2013,4,11,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1630,-3,0,2205,-15,0,0 +2013,8,1,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,11,0,2200,3,0,0 +2013,7,3,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-8,0,905,-17,0,0 +2013,10,22,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,830,-6,0,935,-19,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1005,13,0,1215,1,0,0 +2013,10,16,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1503,-7,0,1620,-2,0,0 +2013,6,14,5,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,144,1,2020,131,1,0 +2013,4,30,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2110,50,1,2355,42,1,0 +2013,4,19,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,13,0,1206,13,0,0 +2013,4,2,2,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1809,36,1,1935,18,1,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,729,-5,0,845,-7,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1525,23,1,1645,7,0,0 +2013,5,5,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1609,8,0,1630,9,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,-1,0,2148,10,0,0 +2013,5,11,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,-5,0,1234,-3,0,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1000,20,1,1259,9,0,0 +2013,5,2,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-6,0,807,-13,0,0 +2013,9,16,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1234,-9,0,1334,-14,0,0 +2013,7,19,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,112,1,1315,118,1,0 +2013,8,14,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1935,12,0,1955,-4,0,0 +2013,7,29,1,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2050,-2,0,2255,13,0,0 +2013,4,18,4,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1235,-1,0,1620,-10,0,0 +2013,8,23,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,0,0,1755,7,0,0 +2013,7,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,625,-2,0,725,-9,0,0 +2013,5,21,2,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,756,-4,0,0 +2013,5,8,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,815,21,1,1111,53,1,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1430,36,1,1740,42,1,0 +2013,7,1,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2035,42,1,2045,31,1,0 +2013,10,25,5,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,0,0,1004,11,0,0 +2013,5,3,5,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1915,-10,0,2154,-20,0,0 +2013,9,10,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1649,56,1,1726,52,1,0 +2013,6,29,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,700,1,0,815,-9,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,1,0,1955,-1,0,0 +2013,8,2,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,653,2,0,754,7,0,0 +2013,7,27,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-6,0,1454,-4,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1250,1,0,1350,4,0,0 +2013,8,7,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-5,0,1938,18,1,0 +2013,10,4,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1105,-3,0,1342,-19,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,953,-3,0,1116,-5,0,0 +2013,6,19,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1525,76,1,1637,86,1,0 +2013,5,4,6,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1005,-1,0,1135,-4,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1400,8,0,1455,15,1,0 +2013,10,19,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1837,-6,0,2057,-9,0,0 +2013,9,9,1,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1507,1,0,0 +2013,6,4,2,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1922,0,0,2340,-9,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1252,-1,0,1433,-12,0,0 +2013,4,9,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,-2,0,2005,-8,0,0 +2013,10,12,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-10,0,1336,-10,0,0 +2013,7,17,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1413,-6,0,1813,-2,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,-6,0,1155,-12,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,950,6,0,1105,1,0,0 +2013,8,8,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-9,0,821,1,0,0 +2013,5,18,6,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,0,0,824,22,1,0 +2013,10,26,6,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-12,0,1258,-35,0,0 +2013,10,29,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1709,-4,0,1840,7,0,0 +2013,10,22,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1524,-5,0,1646,-1,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,950,-3,0,1125,0,0,0 +2013,6,27,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,4,0,1416,16,1,0 +2013,9,26,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,5,0,1431,5,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,-6,0,1807,-14,0,0 +2013,9,20,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,85,1,1520,94,1,0 +2013,5,1,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-2,0,1216,-10,0,0 +2013,10,5,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-3,0,1900,-26,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,700,-2,0,1205,-9,0,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1654,12,0,1807,8,0,0 +2013,9,19,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1005,20,1,1138,9,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-6,0,1053,-5,0,0 +2013,6,13,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,600,0,0,725,-4,0,0 +2013,8,9,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,4,0,1042,53,1,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1015,4,0,1105,0,0,0 +2013,8,26,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,5,0,1642,9,0,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,806,-3,0,1057,-13,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,620,-1,0,825,-10,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,-2,0,1459,21,1,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1945,32,1,2203,20,1,0 +2013,9,1,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-4,0,1619,-16,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,815,-1,0,915,-8,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2100,5,0,2240,1,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,915,-5,0,1025,-10,0,0 +2013,8,4,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-7,0,1101,-12,0,0 +2013,7,8,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1150,-2,0,1445,-21,0,0 +2013,5,4,6,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,800,0,0,1110,15,1,0 +2013,4,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1800,8,0,2027,-6,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2019,-1,0,2153,-11,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,9,0,1346,15,1,0 +2013,9,6,5,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,-6,0,2014,2,0,0 +2013,8,2,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,12,0,2015,11,0,0 +2013,7,11,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2011,14,0,705,10,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1745,3,0,2220,-2,0,0 +2013,9,26,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-8,0,700,-12,0,0 +2013,5,19,7,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,4,0,825,7,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,30,1,1845,29,1,0 +2013,8,5,1,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-8,0,1957,-24,0,0 +2013,4,30,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-2,0,1654,-3,0,0 +2013,8,29,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1104,-7,0,1233,-11,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,-4,0,1729,-28,0,0 +2013,8,25,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,-1,0,1319,-11,0,0 +2013,9,29,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,7,0,2125,3,0,0 +2013,6,7,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,545,-1,0,751,16,1,0 +2013,4,24,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,830,8,0,1639,-15,0,0 +2013,4,10,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-3,0,1305,3,0,0 +2013,6,28,5,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,-2,0,1230,-14,0,0 +2013,9,14,6,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,823,-2,0,932,5,0,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,71,1,1756,78,1,0 +2013,6,16,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-1,0,1115,7,0,0 +2013,10,3,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1505,9,0,2110,20,1,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1130,21,1,1315,0,0,0 +2013,5,24,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1034,-8,0,1119,-22,0,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,-6,0,1349,13,0,0 +2013,10,4,5,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,1049,59,1,1815,61,1,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1355,6,0,1640,3,0,0 +2013,10,27,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-4,0,1357,-7,0,0 +2013,5,11,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,100,1,1755,129,1,0 +2013,8,3,6,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1640,6,0,1915,9,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,1,0,1045,-20,0,0 +2013,5,13,1,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,755,0,0,1020,-4,0,0 +2013,4,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1749,0,,2001,0,1,1 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1130,1,0,1555,-7,0,0 +2013,7,1,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1850,112,1,2030,111,1,0 +2013,4,17,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,-2,0,1355,-22,0,0 +2013,6,9,7,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1710,-1,0,1948,-3,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,2,0,2313,-16,0,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1310,-3,0,1620,0,0,0 +2013,9,22,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,800,-1,0,1045,-14,0,0 +2013,6,27,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,0,0,1155,-2,0,0 +2013,8,3,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-8,0,1724,-18,0,0 +2013,5,8,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-2,0,1201,10,0,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1257,-3,0,1819,-24,0,0 +2013,10,19,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1035,-2,0,1640,-18,0,0 +2013,5,5,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2005,19,1,2027,16,1,0 +2013,5,2,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,1,0,2235,-7,0,0 +2013,7,23,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,11,0,1620,10,0,0 +2013,7,7,7,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1220,-8,0,1431,-15,0,0 +2013,9,27,5,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1415,-4,0,1505,-7,0,0 +2013,6,5,3,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2010,-5,0,1152,2,0,0 +2013,4,17,3,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1435,-4,0,1604,-25,0,0 +2013,5,6,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1210,0,0,1425,20,1,0 +2013,5,1,3,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1150,3,0,1345,-3,0,0 +2013,5,22,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1250,1,0,1415,-3,0,0 +2013,9,7,6,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1125,13,0,1230,6,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,28,1,1835,41,1,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,-5,0,1120,-14,0,0 +2013,6,15,6,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,700,1,0,1215,-19,0,0 +2013,4,2,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,36,1,841,16,1,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,-1,0,2300,7,0,0 +2013,9,30,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1749,7,0,2116,8,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1826,-14,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,-6,0,1603,18,1,0 +2013,5,17,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,831,7,0,1100,-5,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1618,-3,0,59,-42,0,0 +2013,10,17,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,4,0,1100,-2,0,0 +2013,8,4,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1945,-4,0,2105,-7,0,0 +2013,10,27,7,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1445,-1,0,1625,-8,0,0 +2013,7,23,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2335,81,1,720,70,1,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,43,1,2320,30,1,0 +2013,9,4,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2115,30,1,2240,41,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,28,1,1325,17,1,0 +2013,5,10,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,-4,0,2201,-12,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1115,1,0,1235,-3,0,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1652,-6,0,1920,-20,0,0 +2013,6,18,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,0,0,1251,-24,0,0 +2013,8,5,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1330,0,0,1439,11,0,0 +2013,8,18,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,-2,0,2149,-11,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1540,15,1,1930,33,1,0 +2013,9,23,1,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-3,0,1024,-6,0,0 +2013,10,16,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1555,-3,0,1625,-8,0,0 +2013,10,22,2,AS,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-3,0,1604,-15,0,0 +2013,9,20,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,4,0,1628,18,1,0 +2013,9,1,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1730,-1,0,2000,-9,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,805,-3,0,1050,-11,0,0 +2013,4,1,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1930,-3,0,2214,-4,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-9,0,1307,-13,0,0 +2013,10,21,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-2,0,1757,-11,0,0 +2013,6,30,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,0,1315,-7,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,845,-4,0,1020,-14,0,0 +2013,6,23,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1345,-10,0,1430,-12,0,0 +2013,9,20,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1956,-11,0,2203,-24,0,0 +2013,9,3,2,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1805,-2,0,2259,2,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2156,137,1,2221,135,1,0 +2013,4,23,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,27,1,1305,9,0,0 +2013,7,10,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,835,10,0,1205,1,0,0 +2013,4,30,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,933,-7,0,1025,5,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1930,43,1,2200,48,1,0 +2013,7,25,4,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,0,0,2235,-4,0,0 +2013,5,5,7,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,-6,0,1845,-33,0,0 +2013,6,19,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-3,0,2140,-40,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1835,1,0,2235,-10,0,0 +2013,8,26,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2100,-3,0,507,12,0,0 +2013,10,27,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1535,-5,0,1551,-13,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2100,-1,0,2245,-7,0,0 +2013,10,10,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,1,0,1749,-7,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1910,-4,0,2052,-22,0,0 +2013,10,3,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1827,-2,0,2107,-25,0,0 +2013,4,16,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,0,0,845,-1,0,0 +2013,9,11,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1640,48,1,1805,41,1,0 +2013,8,18,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1410,-7,0,1549,-11,0,0 +2013,5,5,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1003,-6,0,1113,-10,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,27,1,1220,25,1,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1643,-4,0,1927,-5,0,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-3,0,1131,2,0,0 +2013,9,24,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,645,-6,0,938,-16,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,900,4,0,1425,7,0,0 +2013,6,14,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1350,30,1,1635,33,1,0 +2013,8,1,4,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-1,0,807,-2,0,0 +2013,9,19,4,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1338,-7,0,1551,-17,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1940,-2,0,2245,-9,0,0 +2013,8,3,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,825,0,0,948,-9,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1435,19,1,1825,3,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,-2,0,1624,58,1,0 +2013,4,10,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1430,-4,0,1600,-12,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1625,27,1,1803,22,1,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1455,27,1,1710,21,1,0 +2013,4,20,6,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1705,13,0,2019,7,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1725,76,1,1922,76,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,15,1,2229,15,1,0 +2013,8,17,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,700,-2,0,815,-9,0,0 +2013,8,4,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,17,1,1910,5,0,0 +2013,7,22,1,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1550,58,1,1805,155,1,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,915,17,1,1025,11,0,0 +2013,5,6,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,0,0,1210,-7,0,0 +2013,9,17,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-3,0,1041,-1,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1150,12,0,1320,5,0,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,32,1,1938,19,1,0 +2013,5,7,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,625,-3,0,805,-13,0,0 +2013,10,16,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1900,-2,0,2045,-10,0,0 +2013,5,29,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-7,0,1921,-12,0,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-1,0,1629,-11,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2140,29,1,2255,12,0,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,855,6,0,1205,-13,0,0 +2013,7,29,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,600,-5,0,814,-23,0,0 +2013,10,12,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1625,5,0,1805,0,0,0 +2013,5,23,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,3,0,1745,-7,0,0 +2013,7,8,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-1,0,1510,5,0,0 +2013,8,15,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1910,-2,0,2058,-15,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-7,0,1011,-5,0,0 +2013,8,18,7,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1221,-7,0,1406,-11,0,0 +2013,7,2,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,220,-4,0,634,-3,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1019,-10,0,1341,-25,0,0 +2013,5,5,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-5,0,1840,-7,0,0 +2013,10,7,1,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,178,1,1315,174,1,0 +2013,4,27,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,855,2,0,1455,12,0,0 +2013,5,24,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-8,0,1623,-14,0,0 +2013,8,8,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,53,1,2210,54,1,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-3,0,1055,-7,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1245,19,1,1500,71,1,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1737,53,1,1924,31,1,0 +2013,9,24,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,1246,2,0,1435,-17,0,0 +2013,8,9,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13244,Memphis International,Memphis,TN,1733,45,1,1900,29,1,0 +2013,9,2,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,947,21,1,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,720,1,0,1100,-15,0,0 +2013,6,8,6,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1639,17,1,1933,16,1,0 +2013,7,13,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1901,8,0,1925,18,1,0 +2013,8,8,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-2,0,758,-6,0,0 +2013,5,23,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1139,13,0,1336,-10,0,0 +2013,7,28,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-5,0,1305,-7,0,0 +2013,8,17,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,5,0,940,-2,0,0 +2013,8,14,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,615,-1,0,652,-12,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,2055,46,1,20,39,1,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,810,-5,0,1115,-9,0,0 +2013,9,15,7,9E,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1206,181,1,1505,178,1,0 +2013,8,11,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1916,-4,0,2129,-9,0,0 +2013,5,3,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,59,-7,0,600,-10,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,-1,0,1957,22,1,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1614,-1,0,1821,-3,0,0 +2013,8,8,4,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,120,1,2115,180,1,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2025,28,1,2350,12,0,0 +2013,10,20,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1945,12,0,2150,17,1,0 +2013,8,30,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1805,8,0,1945,0,0,0 +2013,10,25,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,4,0,2020,-3,0,0 +2013,4,20,6,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1300,-1,0,1445,4,0,0 +2013,9,24,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,0,0,2000,9,0,0 +2013,9,13,5,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-1,0,1435,-12,0,0 +2013,10,22,2,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,1230,-7,0,1255,-16,0,0 +2013,10,7,1,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1225,29,1,1452,13,0,0 +2013,4,29,1,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1035,-9,0,1224,-22,0,0 +2013,10,4,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,5,0,1739,-10,0,0 +2013,7,11,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,47,1,1924,56,1,0 +2013,6,18,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1600,29,1,1750,96,1,0 +2013,8,24,6,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1455,-3,0,1609,-6,0,0 +2013,9,11,3,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,735,-8,0,859,-13,0,0 +2013,9,23,1,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,720,-4,0,940,-29,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-7,0,920,-34,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1635,33,1,1803,27,1,0 +2013,10,23,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-9,0,1327,-5,0,0 +2013,10,17,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-6,0,2211,-16,0,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,-9,0,1510,-14,0,0 +2013,9,21,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1017,-7,0,1128,-9,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1930,177,1,2214,152,1,0 +2013,9,3,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-1,0,835,2,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2140,115,1,2359,125,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,34,1,1909,28,1,0 +2013,6,4,2,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,-6,0,1442,-9,0,0 +2013,10,27,7,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,639,-9,0,802,18,1,0 +2013,7,21,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-1,0,1523,-2,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,941,-2,0,1257,-15,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,800,-1,0,1055,-2,0,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2325,-9,0,800,-34,0,0 +2013,9,2,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,953,-6,0,1137,-13,0,0 +2013,10,19,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,43,1,1245,41,1,0 +2013,8,20,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-11,0,2054,-12,0,0 +2013,5,1,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,-3,0,1705,10,0,0 +2013,5,23,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1815,0,,2142,0,1,1 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1815,-2,0,2340,-5,0,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,655,-5,0,830,-17,0,0 +2013,6,18,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,610,205,1,820,205,1,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,-3,0,2300,-17,0,0 +2013,8,26,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-6,0,1020,-13,0,0 +2013,9,17,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,857,-7,0,1006,13,0,0 +2013,5,10,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,4,0,1500,-10,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2050,49,1,2254,30,1,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1310,-4,0,1640,-18,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1920,-1,0,2031,-11,0,0 +2013,10,12,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,845,2,0,1210,-9,0,0 +2013,10,6,7,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1102,-7,0,1925,16,1,0 +2013,8,9,5,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1746,-6,0,1905,-20,0,0 +2013,10,31,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1058,-7,0,1132,-6,0,0 +2013,10,10,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1115,9,0,1226,25,1,0 +2013,6,26,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1645,44,1,1850,45,1,0 +2013,5,19,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,0,0,1530,-1,0,0 +2013,7,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2100,15,1,2230,5,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,748,-9,0,959,30,1,0 +2013,10,24,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1500,-3,0,1723,11,0,0 +2013,6,3,1,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1950,-1,0,2102,8,0,0 +2013,6,11,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,805,-14,0,0 +2013,10,4,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1830,-4,0,2041,-31,0,0 +2013,7,30,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1130,30,1,1145,25,1,0 +2013,8,6,2,9E,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1116,41,1,1305,50,1,0 +2013,6,23,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1920,12,0,2158,33,1,0 +2013,8,28,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,-4,0,1315,-15,0,0 +2013,8,13,2,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1258,1,0,1513,0,0,0 +2013,10,14,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,2,0,1600,0,0,0 +2013,8,10,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2140,9,0,2358,-11,0,0 +2013,8,8,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-5,0,1055,-13,0,0 +2013,5,5,7,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-5,0,2058,-12,0,0 +2013,4,15,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1131,-11,0,2000,-56,0,0 +2013,8,2,5,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-3,0,1104,-32,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-1,0,1203,-8,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,0,0,1415,-4,0,0 +2013,10,4,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1345,2,0,1530,-3,0,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1615,7,0,1740,-2,0,0 +2013,6,4,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-14,0,903,-8,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,720,0,0,820,-4,0,0 +2013,7,13,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,531,1,2015,522,1,0 +2013,8,1,4,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1210,1,0,1545,4,0,0 +2013,4,4,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,850,-2,0,950,7,0,0 +2013,7,10,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1150,21,1,1255,38,1,0 +2013,7,10,3,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1300,-1,0,1635,-14,0,0 +2013,5,1,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-9,0,1108,-7,0,0 +2013,9,6,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1610,13,0,1701,10,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1145,0,,1627,0,1,1 +2013,6,30,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-3,0,1413,5,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1702,6,0,2242,-5,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1123,-1,0,1312,-16,0,0 +2013,9,30,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1755,-6,0,2120,-10,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,190,1,1220,200,1,0 +2013,8,5,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1624,-5,0,1816,-23,0,0 +2013,4,11,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1255,35,1,1535,14,0,0 +2013,5,20,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1149,4,0,1237,-3,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1805,-4,0,1858,-5,0,0 +2013,9,11,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-2,0,1135,-10,0,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1840,0,0,2110,-13,0,0 +2013,10,4,5,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1436,10,0,1440,29,1,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,827,29,1,1318,19,1,0 +2013,5,19,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1000,-3,0,1100,-7,0,0 +2013,6,17,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1720,74,1,1825,65,1,0 +2013,7,28,7,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2127,-4,0,2342,-17,0,0 +2013,7,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2115,-3,0,2220,-16,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,106,1,2214,103,1,0 +2013,8,8,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1450,24,1,1545,20,1,0 +2013,6,28,5,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1235,99,1,2100,113,1,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1530,26,1,1740,44,1,0 +2013,7,10,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,30,-3,0,810,-14,0,0 +2013,10,30,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-12,0,1520,-13,0,0 +2013,10,31,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,-11,0,1930,-12,0,0 +2013,8,5,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1322,104,1,1410,105,1,0 +2013,9,24,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,64,1,950,35,1,0 +2013,10,30,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-4,0,1603,-3,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,52,1,1620,67,1,0 +2013,4,4,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1739,2,0,2024,-3,0,0 +2013,6,16,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,25,1,1055,30,1,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1900,21,1,2015,22,1,0 +2013,9,23,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2008,-5,0,2256,-20,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1359,-4,0,1523,-10,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,900,-5,0,1030,-16,0,0 +2013,6,16,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,800,-4,0,1040,-6,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1347,59,1,1417,42,1,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1122,-5,0,1242,1,0,0 +2013,8,28,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,-1,0,1345,-2,0,0 +2013,8,25,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1359,-3,0,1724,-27,0,0 +2013,7,8,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,-5,0,550,-12,0,0 +2013,8,2,5,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1520,59,1,1800,59,1,0 +2013,6,11,2,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1310,-13,0,2135,-24,0,0 +2013,7,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,-7,0,1729,-21,0,0 +2013,7,14,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1710,-7,0,1747,-7,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,66,1,5,56,1,0 +2013,9,5,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1125,-3,0,1720,-9,0,0 +2013,9,23,1,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,-1,0,2000,-17,0,0 +2013,4,2,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-5,0,1301,1,0,0 +2013,10,5,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1436,-4,0,1617,-19,0,0 +2013,8,10,6,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1035,-3,0,1130,-6,0,0 +2013,4,23,2,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1113,-1,0,1830,-15,0,0 +2013,5,6,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-1,0,1623,-37,0,0 +2013,8,11,7,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,816,-5,0,1620,-6,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,6,0,1310,-1,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,0,,920,0,1,1 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,3,0,1310,10,0,0 +2013,9,5,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,-8,0,1925,-17,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,4,0,2110,-9,0,0 +2013,5,29,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2204,36,1,2328,11,0,0 +2013,9,16,1,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1119,21,1,1253,9,0,0 +2013,5,20,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-5,0,929,-8,0,0 +2013,5,13,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1725,0,0,1835,-16,0,0 +2013,9,13,5,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-9,0,1445,-12,0,0 +2013,7,22,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,2025,-2,0,2050,-15,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,15,1,2135,10,0,0 +2013,4,19,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,0,0,840,-1,0,0 +2013,6,1,6,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,0,0,1425,-5,0,0 +2013,5,5,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,-9,0,2041,-19,0,0 +2013,4,6,6,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-1,0,1823,-13,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2018,21,1,2326,35,1,0 +2013,9,20,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1425,77,1,1525,83,1,0 +2013,8,23,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1053,-5,0,1131,-6,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,79,1,2219,61,1,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,950,-2,0,1105,3,0,0 +2013,9,20,5,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1241,25,1,1629,24,1,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1226,11,0,1342,4,0,0 +2013,4,6,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2035,-2,0,2250,1,0,0 +2013,7,2,2,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1725,-5,0,2100,-16,0,0 +2013,6,19,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1905,-12,0,2033,-27,0,0 +2013,10,20,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1100,33,1,1340,13,0,0 +2013,4,17,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1915,0,,2049,0,1,1 +2013,9,13,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1740,12,0,1845,6,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1500,-4,0,1845,-25,0,0 +2013,6,9,7,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-3,0,855,38,1,0 +2013,8,11,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,755,-1,0,1057,-26,0,0 +2013,4,15,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,-1,0,1807,-3,0,0 +2013,7,3,3,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1930,0,,2112,0,1,1 +2013,9,21,6,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,925,-1,0,1325,5,0,0 +2013,8,9,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,755,-2,0,1310,-13,0,0 +2013,5,26,7,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1530,-4,0,1740,-7,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1955,66,1,2007,60,1,0 +2013,9,5,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1828,-10,0,1939,-7,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,0,,1426,0,1,1 +2013,6,21,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,5,0,1820,-2,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,900,12,0,1121,-2,0,0 +2013,4,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,-1,0,1150,-13,0,0 +2013,6,25,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,905,15,1,1140,6,0,0 +2013,6,25,2,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,34,1,1535,26,1,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2030,-5,0,2145,-8,0,0 +2013,4,5,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1425,-3,0,1600,-11,0,0 +2013,10,2,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,941,0,0,1054,10,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1550,-2,0,1720,-14,0,0 +2013,6,5,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,739,25,1,911,20,1,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,10,0,1905,5,0,0 +2013,6,10,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,1000,3,0,0 +2013,6,16,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2158,1,0,10,30,1,0 +2013,5,2,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-10,0,859,12,0,0 +2013,8,18,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,86,1,1003,67,1,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1630,40,1,1855,39,1,0 +2013,4,13,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,810,-10,0,1137,-20,0,0 +2013,6,15,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,1413,-5,0,1941,36,1,0 +2013,9,27,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1005,-1,0,1115,-4,0,0 +2013,6,15,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,0,0,805,-8,0,0 +2013,5,9,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1030,-8,0,1505,-3,0,0 +2013,4,20,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,756,9,0,850,-2,0,0 +2013,4,9,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,38,1,1205,42,1,0 +2013,10,24,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,7,0,2055,-8,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1325,-3,0,1440,-14,0,0 +2013,6,25,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,107,1,2155,105,1,0 +2013,7,18,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,5,0,1615,1,0,0 +2013,7,12,5,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,710,-7,0,906,9,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-6,0,1823,-14,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2023,-2,0,2245,10,0,0 +2013,4,9,2,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2002,15,1,2134,4,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2055,0,,2215,0,1,1 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,3,0,2000,-1,0,0 +2013,7,7,7,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,959,-6,0,1115,-13,0,0 +2013,10,19,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,1,0,2109,-16,0,0 +2013,8,12,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1909,-2,0,2024,5,0,0 +2013,7,26,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,9,0,1228,5,0,0 +2013,6,29,6,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1835,23,1,2100,17,1,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,904,-3,0,1143,-18,0,0 +2013,5,8,3,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,625,-4,0,808,-15,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-2,0,1826,-5,0,0 +2013,4,21,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,703,-4,0,908,-3,0,0 +2013,6,3,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,645,20,1,930,19,1,0 +2013,5,27,1,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1050,-9,0,1240,-19,0,0 +2013,7,14,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,7,0,1205,2,0,0 +2013,10,8,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2010,-8,0,2055,-29,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,910,-1,0,1044,11,0,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-6,0,830,-4,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,-4,0,655,-15,0,0 +2013,4,25,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,-9,0,922,-15,0,0 +2013,10,16,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-9,0,1533,-16,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-5,0,1115,-8,0,0 +2013,6,4,2,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1710,-5,0,1813,-14,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2150,27,1,2305,27,1,0 +2013,9,10,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1940,-10,0,2059,-21,0,0 +2013,7,28,7,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,915,-7,0,1040,-15,0,0 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,-10,0,913,-13,0,0 +2013,5,22,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,5,0,2045,13,0,0 +2013,8,17,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1130,2,0,1250,7,0,0 +2013,6,15,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1320,2,0,1500,1,0,0 +2013,5,17,5,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-4,0,1019,-2,0,0 +2013,4,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1005,1,0,1305,-3,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,630,0,0,804,-11,0,0 +2013,5,1,3,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1610,4,0,1855,21,1,0 +2013,9,14,6,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,909,3,0,1140,-17,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1849,-1,0,1942,-9,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1813,9,0,2037,30,1,0 +2013,9,27,5,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,-4,0,1129,-15,0,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1543,44,1,1653,45,1,0 +2013,8,24,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,915,-5,0,925,-6,0,0 +2013,4,17,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1938,91,1,2104,114,1,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1725,2,0,1855,0,0,0 +2013,4,27,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1500,127,1,1535,129,1,0 +2013,8,15,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-4,0,1710,-2,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,815,7,0,1150,2,0,0 +2013,9,19,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-5,0,2028,-4,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,-5,0,1208,-20,0,0 +2013,7,7,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-5,0,1155,-12,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,735,2,0,926,-4,0,0 +2013,7,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1015,-3,0,1311,-18,0,0 +2013,5,7,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,-8,0,1630,0,0,0 +2013,4,16,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,725,55,1,850,121,1,0 +2013,5,13,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,47,1,851,45,1,0 +2013,4,24,3,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1513,16,1,1625,16,1,0 +2013,5,12,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-19,0,1110,-17,0,0 +2013,10,25,5,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,0,0,1558,-9,0,0 +2013,10,27,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1030,-4,0,1310,-6,0,0 +2013,7,26,5,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1840,-5,0,2045,19,1,0 +2013,4,23,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1530,-1,0,1710,-11,0,0 +2013,5,29,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,2,0,1135,5,0,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2020,49,1,2155,40,1,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-5,0,1048,-21,0,0 +2013,6,20,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,5,0,744,-7,0,0 +2013,10,8,2,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,620,-12,0,841,-25,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-8,0,1038,-22,0,0 +2013,5,6,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-8,0,1340,-15,0,0 +2013,8,31,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-6,0,1336,-12,0,0 +2013,5,17,5,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,13,0,1210,-5,0,0 +2013,9,21,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,124,1,1853,142,1,0 +2013,10,3,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,-2,0,1105,-6,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,28,1,925,0,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2225,86,1,2305,92,1,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1450,13,0,1735,-3,0,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1435,-3,0,1642,-24,0,0 +2013,8,5,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1805,-8,0,1905,-13,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2108,21,1,2206,9,0,0 +2013,4,10,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1950,0,,2115,0,1,1 +2013,5,13,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,-1,0,2225,-14,0,0 +2013,9,25,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,19,1,1214,12,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1000,3,0,1225,14,0,0 +2013,5,11,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-3,0,830,-6,0,0 +2013,5,3,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1310,-2,0,1356,2,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-1,0,2005,-19,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1549,11,0,1739,-5,0,0 +2013,4,5,5,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,30,1,1930,24,1,0 +2013,4,2,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,1,0,1027,9,0,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-2,0,1555,19,1,0 +2013,8,6,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1558,-8,0,2014,0,0,0 +2013,9,3,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1056,22,1,1325,6,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1320,1,0,1440,-3,0,0 +2013,9,19,4,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1342,5,0,1642,-24,0,0 +2013,8,21,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1337,-8,0,1543,-21,0,0 +2013,5,27,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,5,0,724,-3,0,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2134,19,1,12,9,0,0 +2013,5,12,7,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,620,1,0,940,7,0,0 +2013,5,21,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1349,4,0,1555,30,1,0 +2013,4,28,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1644,-2,0,1747,-10,0,0 +2013,6,6,4,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1134,30,1,1346,22,1,0 +2013,8,4,7,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1551,14,0,1737,28,1,0 +2013,7,1,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2033,22,1,2326,-9,0,0 +2013,5,10,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1500,-2,0,1625,-26,0,0 +2013,5,25,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1655,26,1,1800,12,0,0 +2013,6,22,6,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,809,-2,0,1151,-3,0,0 +2013,7,3,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1112,-1,0,1236,-17,0,0 +2013,9,19,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1620,8,0,1745,6,0,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1340,30,1,1800,36,1,0 +2013,10,9,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1632,-13,0,1845,-24,0,0 +2013,7,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2010,55,1,2030,39,1,0 +2013,4,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,630,2,0,725,-4,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2100,0,0,2350,-3,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1900,30,1,2125,18,1,0 +2013,6,7,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,1305,-15,0,0 +2013,9,27,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,725,-4,0,910,-9,0,0 +2013,10,9,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2050,47,1,2215,26,1,0 +2013,7,27,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1602,115,1,1700,163,1,0 +2013,8,8,4,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,80,1,1435,79,1,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1955,-1,0,2100,-2,0,0 +2013,7,30,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1129,1,0,1329,2,0,0 +2013,6,28,5,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,2,0,2230,22,1,0 +2013,10,16,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1645,-6,0,2015,-16,0,0 +2013,7,28,7,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,835,-5,0,1144,-19,0,0 +2013,4,11,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1725,-6,0,2059,-7,0,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2215,-2,0,23,-14,0,0 +2013,8,21,3,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-4,0,1300,-12,0,0 +2013,6,1,6,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1925,33,1,2126,22,1,0 +2013,10,9,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,-5,0,1530,-17,0,0 +2013,7,18,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1315,1,0,1410,-7,0,0 +2013,9,27,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,10,0,1650,3,0,0 +2013,8,21,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1055,-2,0,1411,2,0,0 +2013,7,28,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,7,0,1425,1,0,0 +2013,5,10,5,EV,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1400,26,1,1907,13,0,0 +2013,4,30,2,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1020,-1,0,1140,-3,0,0 +2013,10,26,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-6,0,904,0,0,0 +2013,10,10,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1704,41,1,1958,33,1,0 +2013,5,14,2,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1045,-1,0,1430,-8,0,0 +2013,4,28,7,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2110,-9,0,2242,-16,0,0 +2013,7,15,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1825,-7,0,2042,-17,0,0 +2013,4,18,4,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1215,60,1,1405,116,1,0 +2013,10,25,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-4,0,1552,-10,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,630,-5,0,910,-1,0,0 +2013,9,24,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,0,0,2130,-9,0,0 +2013,7,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1230,-5,0,1508,5,0,0 +2013,6,18,2,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1345,-7,0,1601,-15,0,0 +2013,7,23,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-1,0,1258,-12,0,0 +2013,8,9,5,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,605,-4,0,612,-13,0,0 +2013,8,4,7,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1527,6,0,1612,-2,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,28,1,1800,24,1,0 +2013,10,14,1,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-7,0,1626,-36,0,0 +2013,5,11,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1530,120,1,1835,100,1,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1330,-5,0,1459,12,0,0 +2013,5,31,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,7,0,1950,5,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,715,-5,0,1050,2,0,0 +2013,5,26,7,YV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1730,50,1,1853,39,1,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1100,16,1,1155,11,0,0 +2013,5,9,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2340,-4,0,609,-6,0,0 +2013,6,18,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1428,-1,0,1540,-5,0,0 +2013,10,29,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-8,0,1056,-14,0,0 +2013,10,19,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-3,0,1030,1,0,0 +2013,6,13,4,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1841,113,1,2054,111,1,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2035,20,1,2329,2,0,0 +2013,9,7,6,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-6,0,1035,-44,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,-3,0,1445,-14,0,0 +2013,8,4,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,0,0,928,-7,0,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1440,0,0,1540,-7,0,0 +2013,8,25,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,0,0,2030,-4,0,0 +2013,6,28,5,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,27,1,1540,12,0,0 +2013,4,27,6,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,700,-1,0,1000,-8,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,-5,0,2347,-17,0,0 +2013,6,13,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1018,8,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1155,1,0,1455,-7,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,13,0,1410,-2,0,0 +2013,9,12,4,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,955,10,0,1116,20,1,0 +2013,5,1,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-10,0,2100,-4,0,0 +2013,8,26,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1110,-10,0,1455,-26,0,0 +2013,6,30,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,945,6,0,1100,8,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1011,-5,0,1402,-29,0,0 +2013,4,25,4,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2140,27,1,547,27,1,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1858,9,0,2045,-12,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-4,0,1625,-21,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,810,0,0,945,-12,0,0 +2013,10,8,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,4,0,1315,-4,0,0 +2013,9,2,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,4,0,2354,6,0,0 +2013,5,7,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,712,-5,0,1103,25,1,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1320,0,0,1445,-6,0,0 +2013,9,11,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,-8,0,2200,-19,0,0 +2013,9,8,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2254,-5,0,435,-4,0,0 +2013,6,18,2,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1542,74,1,1724,81,1,0 +2013,9,4,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,725,0,0,925,-14,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,7,0,1200,-3,0,0 +2013,6,2,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-5,0,1223,-2,0,0 +2013,8,5,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,2033,126,1,2142,142,1,0 +2013,9,18,3,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1225,-9,0,1358,-13,0,0 +2013,5,31,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1347,-6,0,1558,-8,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-4,0,1251,-9,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2105,38,1,2243,40,1,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,24,1,2202,46,1,0 +2013,10,12,6,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1235,2,0,1415,-3,0,0 +2013,7,2,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2051,38,1,2217,45,1,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1755,2,0,2350,-24,0,0 +2013,7,21,7,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-4,0,2030,-5,0,0 +2013,4,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,2012,-1,0,2250,3,0,0 +2013,10,8,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-7,0,1110,-13,0,0 +2013,8,12,1,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,533,0,0,940,-13,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1136,-4,0,1247,8,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,9,0,2130,-9,0,0 +2013,5,5,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-4,0,647,26,1,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1005,17,1,1535,14,0,0 +2013,10,11,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,607,-5,0,915,2,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,25,1,1306,49,1,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,845,0,0,1015,-3,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,1,0,1014,13,0,0 +2013,5,16,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1808,-11,0,2015,-7,0,0 +2013,10,21,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,-4,0,850,-21,0,0 +2013,9,9,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1438,17,1,1610,12,0,0 +2013,4,23,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,922,-4,0,1130,-7,0,0 +2013,7,8,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,-8,0,1058,8,0,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1225,-3,0,1436,-3,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,0,0,5,-3,0,0 +2013,7,27,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1237,-6,0,1405,-9,0,0 +2013,6,18,2,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1810,2,0,1935,-9,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,854,1,0,1047,-1,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,-4,0,921,-24,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,-2,0,1538,-7,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1345,55,1,1525,71,1,0 +2013,5,14,2,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1430,-7,0,1818,-17,0,0 +2013,5,24,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1250,-7,0,1444,-17,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1325,-3,0,1745,-17,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1037,8,0,1224,-11,0,0 +2013,10,29,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1702,-2,0,1741,0,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,-3,0,1622,-8,0,0 +2013,6,5,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1730,12,0,2020,1,0,0 +2013,4,11,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1045,111,1,1150,118,1,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,600,-4,0,710,-8,0,0 +2013,5,11,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1645,147,1,1813,145,1,0 +2013,8,9,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1525,-4,0,1940,0,0,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1058,-4,0,1424,-17,0,0 +2013,4,2,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,905,-1,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,-2,0,1605,-9,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1440,23,1,1915,7,0,0 +2013,6,2,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1115,-6,0,1459,29,1,0 +2013,9,22,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1350,-5,0,1629,13,0,0 +2013,4,3,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1818,2,0,0 +2013,5,18,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,13,0,1820,9,0,0 +2013,10,19,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,835,-7,0,1041,-15,0,0 +2013,10,7,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,18,1,1650,130,1,0 +2013,10,11,5,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1330,0,,1415,0,1,1 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,67,1,1548,53,1,0 +2013,7,1,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,-9,0,733,-10,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,-2,0,1740,9,0,0 +2013,4,5,5,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1135,-11,0,1447,17,1,0 +2013,6,16,7,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1945,-1,0,2140,22,1,0 +2013,7,15,1,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1454,-9,0,1708,-3,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-2,0,1008,-7,0,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1540,-5,0,1800,-25,0,0 +2013,6,1,6,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,-8,0,1911,-9,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-6,0,1737,-2,0,0 +2013,8,9,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1755,167,1,1930,160,1,0 +2013,5,10,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-5,0,1720,2,0,0 +2013,10,23,3,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,17,1,1400,8,0,0 +2013,6,12,3,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1945,122,1,2115,111,1,0 +2013,4,1,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1725,-2,0,1828,2,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,-4,0,2336,-5,0,0 +2013,8,19,1,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1855,5,0,2005,-3,0,0 +2013,5,4,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,1320,-8,0,0 +2013,5,16,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,-1,0,750,-5,0,0 +2013,7,28,7,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-5,0,1930,22,1,0 +2013,8,12,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,6,0,1730,22,1,0 +2013,6,2,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1340,-4,0,1430,-6,0,0 +2013,7,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1750,-5,0,2135,-16,0,0 +2013,5,2,4,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,600,-4,0,821,23,1,0 +2013,7,10,3,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1107,-7,0,1256,3,0,0 +2013,4,19,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,755,7,0,1515,-21,0,0 +2013,4,7,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-7,0,1400,-6,0,0 +2013,5,10,5,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,3,0,1620,-12,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1125,6,0,1645,9,0,0 +2013,7,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,810,54,1,1330,51,1,0 +2013,8,8,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1822,-11,0,2017,-19,0,0 +2013,5,6,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2019,-4,0,2119,21,1,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,745,1,0,1040,-7,0,0 +2013,7,3,3,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-7,0,1940,7,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-7,0,1308,-16,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,166,1,1954,164,1,0 +2013,6,4,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1003,-6,0,1139,30,1,0 +2013,10,27,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,749,-7,0,946,-12,0,0 +2013,10,7,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,-2,0,1244,-11,0,0 +2013,7,30,2,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2100,26,1,2341,17,1,0 +2013,6,5,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,-5,0,1929,-18,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1024,0,0,1549,-18,0,0 +2013,5,16,4,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,545,-5,0,700,-12,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1615,126,1,1720,124,1,0 +2013,6,29,6,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,-1,0,1115,-27,0,0 +2013,9,4,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,1,0,855,5,0,0 +2013,7,15,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2245,93,1,2357,74,1,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1145,22,1,1325,16,1,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,3,0,2306,-1,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,-4,0,730,-18,0,0 +2013,6,27,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1056,-2,0,1428,-3,0,0 +2013,4,19,5,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1335,35,1,1630,19,1,0 +2013,8,21,3,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1241,5,0,1420,-12,0,0 +2013,6,14,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,38,1,1450,33,1,0 +2013,5,7,2,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-4,0,1200,-15,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,3,0,1349,-1,0,0 +2013,4,4,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,2,0,1721,0,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,-5,0,1855,-7,0,0 +2013,8,7,3,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1122,-9,0,1403,-11,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-2,0,907,10,0,0 +2013,7,24,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1219,7,0,1320,3,0,0 +2013,9,16,1,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,545,-2,0,715,-17,0,0 +2013,10,21,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,942,3,0,0 +2013,4,12,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,650,-7,0,810,-1,0,0 +2013,6,3,1,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1650,6,0,1835,8,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2106,-1,0,2322,-22,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,-1,0,2058,-21,0,0 +2013,4,25,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,605,0,0,755,-12,0,0 +2013,9,18,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-12,0,835,-11,0,0 +2013,6,19,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-6,0,803,-7,0,0 +2013,8,20,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1258,-7,0,1317,-10,0,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2040,8,0,2150,8,0,0 +2013,8,29,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,539,210,1,849,215,1,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1145,0,0,1320,-10,0,0 +2013,4,20,6,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1625,-8,0,1939,-21,0,0 +2013,4,11,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,-5,0,903,-4,0,0 +2013,4,5,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-2,0,1300,2,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,-5,0,1053,-11,0,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1120,18,1,1435,22,1,0 +2013,7,21,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,538,-10,0,655,-18,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,922,-8,0,0 +2013,7,9,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-8,0,1915,-16,0,0 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1425,64,1,1730,55,1,0 +2013,8,4,7,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-4,0,1455,-29,0,0 +2013,8,22,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,840,-13,0,0 +2013,10,8,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,2,0,1640,-3,0,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2225,-6,0,2350,-7,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,610,0,0,730,-12,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-7,0,2049,21,1,0 +2013,6,20,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1150,-5,0,1337,0,0,0 +2013,8,19,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1610,5,0,1810,-1,0,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,-5,0,1500,-4,0,0 +2013,7,4,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,-5,0,1655,-12,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1959,-3,0,2148,-9,0,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,21,1,2215,8,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1950,-5,0,2235,-8,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1200,-2,0,1355,-7,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1105,26,1,1600,26,1,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1640,43,1,1921,21,1,0 +2013,9,7,6,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1650,1,0,1736,-6,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1857,5,0,2254,0,0,0 +2013,9,26,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,0,0,720,-5,0,0 +2013,6,4,2,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-7,0,1754,-3,0,0 +2013,4,27,6,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,600,-9,0,903,-5,0,0 +2013,7,10,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,82,1,2355,82,1,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1940,-1,0,2252,-2,0,0 +2013,6,20,4,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,845,4,0,1410,-7,0,0 +2013,10,3,4,EV,13931,Norfolk International,Norfolk,VA,12953,LaGuardia,New York,NY,1830,-10,0,2010,-34,0,0 +2013,9,20,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1305,-6,0,1415,-21,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,805,-3,0,855,-3,0,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1220,131,1,1630,117,1,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,18,1,930,12,0,0 +2013,9,29,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-9,0,913,-17,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,20,1,1250,0,1,1 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1115,10,0,1215,15,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1900,4,0,2240,-5,0,0 +2013,5,21,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,9,0,839,4,0,0 +2013,7,18,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,830,5,0,1028,11,0,0 +2013,7,2,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1510,35,1,1655,39,1,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,-3,0,1155,-2,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,54,1,1458,41,1,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,30,1,1453,41,1,0 +2013,7,12,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,-7,0,1620,17,1,0 +2013,7,4,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,725,0,0,840,-1,0,0 +2013,7,5,5,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-4,0,1019,-21,0,0 +2013,8,6,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,710,-8,0,825,4,0,0 +2013,10,17,4,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2035,-9,0,2215,-15,0,0 +2013,4,3,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1200,0,0,1420,6,0,0 +2013,9,2,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,643,-10,0,823,-20,0,0 +2013,6,2,7,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1745,81,1,1935,73,1,0 +2013,5,8,3,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-1,0,1047,0,0,0 +2013,6,15,6,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,-8,0,1909,-17,0,0 +2013,9,9,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,0,0,1305,-8,0,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,42,1,2009,44,1,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1255,-3,0,1845,-7,0,0 +2013,8,7,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,9,0,1843,17,1,0 +2013,8,7,3,DL,13244,Memphis International,Memphis,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,58,1,1653,57,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-5,0,1150,-9,0,0 +2013,5,9,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,0,0,1050,-6,0,0 +2013,8,13,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1310,-6,0,1504,-15,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,750,2,0,1015,-8,0,0 +2013,9,22,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,-9,0,1402,-10,0,0 +2013,8,17,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1400,3,0,1520,-11,0,0 +2013,5,19,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1855,2,0,2130,4,0,0 +2013,8,6,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-6,0,1434,-26,0,0 +2013,8,12,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1442,-3,0,1626,-21,0,0 +2013,4,10,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2040,18,1,2200,27,1,0 +2013,9,1,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2030,-7,0,2346,-22,0,0 +2013,6,23,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1755,54,1,1935,51,1,0 +2013,10,10,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1730,48,1,1912,109,1,0 +2013,6,29,6,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2335,-9,0,759,-8,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,48,1,2152,57,1,0 +2013,5,25,6,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,540,-3,0,858,-16,0,0 +2013,6,16,7,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1855,158,1,1957,159,1,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-3,0,1417,-13,0,0 +2013,7,23,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,828,58,1,1009,50,1,0 +2013,9,30,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-5,0,1027,-5,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,24,1,2230,19,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1720,19,1,1925,0,0,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,65,1,2310,44,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1316,22,1,1415,22,1,0 +2013,5,16,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,35,1,1535,17,1,0 +2013,8,12,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-2,0,2110,1,0,0 +2013,6,1,6,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1440,1,0,1950,-14,0,0 +2013,9,11,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,939,-3,0,1208,-14,0,0 +2013,5,17,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,615,-4,0,1453,-22,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,31,1,2104,35,1,0 +2013,10,20,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1055,-8,0,1350,-5,0,0 +2013,6,25,2,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1432,83,1,1925,121,1,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,4,0,1800,-1,0,0 +2013,9,22,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1109,-4,0,1342,-6,0,0 +2013,10,6,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,9,0,1720,-5,0,0 +2013,9,29,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,1,0,2013,3,0,0 +2013,10,4,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1319,-5,0,1444,12,0,0 +2013,5,24,5,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,554,7,0,713,1,0,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,-5,0,1350,-23,0,0 +2013,10,2,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1825,-5,0,2045,-12,0,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1120,-1,0,1240,-10,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,708,-6,0,1547,-26,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,2,0,2025,5,0,0 +2013,7,6,6,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1347,-4,0,1622,-6,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1912,91,1,2033,96,1,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1825,-1,0,2149,-27,0,0 +2013,7,20,6,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1100,-1,0,1915,11,0,0 +2013,5,18,6,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1620,-5,0,1829,22,1,0 +2013,9,12,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1315,265,1,1550,286,1,0 +2013,8,17,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-5,0,1001,-23,0,0 +2013,6,17,1,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,11,0,1820,42,1,0 +2013,4,4,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2022,-3,0,2204,-35,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,15,1,1525,27,1,0 +2013,5,15,3,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,745,-3,0,1615,-20,0,0 +2013,6,28,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,101,1,2111,104,1,0 +2013,7,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-3,0,1750,-18,0,0 +2013,4,26,5,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1120,13,0,1333,20,1,0 +2013,8,16,5,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1300,9,0,1640,10,0,0 +2013,5,30,4,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,610,-3,0,820,-9,0,0 +2013,10,7,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,88,1,2055,73,1,0 +2013,10,17,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,931,-11,0,1005,-6,0,0 +2013,7,8,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,905,1,0,1729,41,1,0 +2013,10,27,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1117,103,1,1452,105,1,0 +2013,4,24,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1700,16,1,2030,91,1,0 +2013,8,19,1,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,0,,2028,0,1,1 +2013,8,21,3,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-3,0,500,-4,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,0,0,1750,17,1,0 +2013,7,2,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1845,-2,0,1915,-8,0,0 +2013,8,21,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,-6,0,2230,15,1,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1530,6,0,1630,-1,0,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-2,0,912,-19,0,0 +2013,8,2,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-4,0,1955,-5,0,0 +2013,10,4,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1045,6,0,1210,-7,0,0 +2013,6,23,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1649,3,0,1800,-11,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,-1,0,950,-3,0,0 +2013,9,22,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,730,0,0,943,3,0,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1016,-8,0,1149,-5,0,0 +2013,5,11,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,7,0,1206,2,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1045,-5,0,1222,6,0,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,3,0,940,0,0,0 +2013,4,12,5,EV,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-3,0,1127,-13,0,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2130,-5,0,2240,-14,0,0 +2013,6,10,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,-8,0,1426,5,0,0 +2013,10,25,5,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-7,0,1950,-4,0,0 +2013,5,29,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,710,-7,0,1250,-20,0,0 +2013,7,22,1,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,25,1,2230,19,1,0 +2013,9,8,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-2,0,1224,-3,0,0 +2013,6,15,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1330,8,0,1612,3,0,0 +2013,6,13,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,0,,1755,0,1,1 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,-4,0,2244,-18,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,810,-4,0,1013,0,0,0 +2013,10,16,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-7,0,1723,-1,0,0 +2013,5,15,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1339,-3,0,2050,-4,0,0 +2013,4,26,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-2,0,1656,-1,0,0 +2013,5,19,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1115,-3,0,1300,-12,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1130,8,0,0 +2013,8,1,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2055,0,0,2210,-8,0,0 +2013,9,21,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,540,1,0,745,-21,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1921,-2,0,2242,-9,0,0 +2013,8,5,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1317,-2,0,1505,-9,0,0 +2013,10,5,6,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-12,0,1910,-16,0,0 +2013,8,1,4,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,955,-1,0,1750,-7,0,0 +2013,10,14,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,8,0,1140,-3,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1730,6,0,1915,-6,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,740,0,0,845,-5,0,0 +2013,9,29,7,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1716,34,1,1937,34,1,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,68,1,2136,64,1,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2241,-7,0,18,-22,0,0 +2013,4,9,2,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1340,38,1,1440,30,1,0 +2013,7,9,2,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,730,6,0,1033,-11,0,0 +2013,9,2,1,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-1,0,815,-1,0,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1430,85,1,1555,83,1,0 +2013,4,2,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,0,0,1435,15,1,0 +2013,7,31,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,835,-4,0,933,-5,0,0 +2013,6,26,3,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,23,1,930,41,1,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1011,8,0,1150,-3,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,0,,905,0,1,1 +2013,5,15,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,8,0,1327,-6,0,0 +2013,6,3,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-5,0,828,-8,0,0 +2013,5,31,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,-6,0,1632,-13,0,0 +2013,8,28,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1540,79,1,1725,61,1,0 +2013,9,25,3,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1050,-2,0,1250,-12,0,0 +2013,8,21,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,900,-3,0,951,-3,0,0 +2013,6,8,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-12,0,950,-22,0,0 +2013,5,20,1,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,-11,0,1950,-20,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1659,-1,0,1851,-7,0,0 +2013,9,24,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,-5,0,2215,-26,0,0 +2013,5,30,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,-3,0,1615,-12,0,0 +2013,6,18,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,840,91,1,939,107,1,0 +2013,8,29,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,-7,0,2109,-11,0,0 +2013,5,27,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1025,-3,0,1140,-14,0,0 +2013,6,25,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,0,0,1817,-6,0,0 +2013,8,16,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,16,1,1408,14,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1855,7,0,2207,-6,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1948,49,1,2124,31,1,0 +2013,10,22,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1555,-15,0,0 +2013,8,21,3,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1842,0,0,2025,1,0,0 +2013,10,4,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,-5,0,736,-4,0,0 +2013,9,4,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-3,0,940,-25,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,1,0,1442,-13,0,0 +2013,8,9,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1243,-3,0,1533,-9,0,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,5,0,1611,4,0,0 +2013,7,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,40,1,1859,39,1,0 +2013,5,17,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,11,0,1954,6,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,-4,0,1950,-3,0,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1420,2,0,1721,-10,0,0 +2013,6,21,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-1,0,1115,-20,0,0 +2013,9,12,4,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1252,3,0,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,2000,17,1,2310,13,0,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,14,0,1035,9,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1915,3,0,2033,-20,0,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,-1,0,6,-2,0,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1019,-1,0,1440,-9,0,0 +2013,9,16,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1251,-4,0,1348,-6,0,0 +2013,7,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,-5,0,1850,-11,0,0 +2013,7,30,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-7,0,1033,-14,0,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,-1,0,2125,-7,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,-2,0,1325,0,0,0 +2013,6,3,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,-1,0,1930,-7,0,0 +2013,9,5,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1540,1,0,1655,-4,0,0 +2013,5,29,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,720,27,1,1020,17,1,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1853,3,0,2154,-18,0,0 +2013,7,20,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-10,0,1329,1,0,0 +2013,7,13,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,39,1,1345,21,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1452,8,0,1610,25,1,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-3,0,2150,5,0,0 +2013,10,30,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1632,-9,0,1734,-15,0,0 +2013,7,25,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,-4,0,1042,-7,0,0 +2013,6,6,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,740,11,0,855,4,0,0 +2013,8,23,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,6,0,1844,12,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,16,1,2005,36,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-3,0,2017,-31,0,0 +2013,7,27,6,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1715,34,1,1750,49,1,0 +2013,10,6,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,-2,0,2221,-1,0,0 +2013,5,23,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1400,6,0,1525,-8,0,0 +2013,4,16,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,802,-7,0,1123,-12,0,0 +2013,10,25,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,17,1,2020,3,0,0 +2013,4,21,7,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1935,23,1,2256,16,1,0 +2013,5,16,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-4,0,1645,-6,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1329,1,0,1626,-22,0,0 +2013,7,19,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-6,0,812,0,0,0 +2013,7,24,3,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,-2,0,725,-7,0,0 +2013,6,2,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1227,214,1,1425,219,1,0 +2013,4,21,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1940,-5,0,2055,-10,0,0 +2013,10,24,4,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1440,26,1,1704,13,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1346,25,1,2221,50,1,0 +2013,7,26,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,-5,0,2041,-7,0,0 +2013,7,23,2,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,825,18,1,1207,63,1,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1055,-3,0,1430,-5,0,0 +2013,6,23,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-6,0,745,-15,0,0 +2013,6,10,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2015,102,1,2308,144,1,0 +2013,9,18,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1705,16,1,1925,12,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1650,6,0,1740,0,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1440,16,1,1545,11,0,0 +2013,8,16,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,0,0,2027,-4,0,0 +2013,10,24,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1500,1,0,1740,-16,0,0 +2013,9,13,5,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1537,44,1,1929,52,1,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1940,8,0,2135,-5,0,0 +2013,7,30,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1135,-1,0,1230,-6,0,0 +2013,8,13,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-4,0,2131,-17,0,0 +2013,10,30,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,851,-10,0,0 +2013,6,23,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,700,46,1,900,0,1,1 +2013,7,3,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,106,1,1901,166,1,0 +2013,7,31,3,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,904,-4,0,0 +2013,5,28,2,EV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1222,-6,0,1416,7,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,11,0,1713,9,0,0 +2013,4,17,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,841,-7,0,1111,-8,0,0 +2013,10,6,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1710,2,0,1831,38,1,0 +2013,6,11,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2104,-4,0,2318,-3,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,725,-1,0,850,-12,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1627,8,0,1816,11,0,0 +2013,6,10,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,622,-10,0,654,-5,0,0 +2013,4,4,4,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,808,-10,0,0 +2013,10,24,4,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,16,1,1650,8,0,0 +2013,8,25,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-3,0,1705,-11,0,0 +2013,9,25,3,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,926,-4,0,1159,-13,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,-3,0,912,-18,0,0 +2013,7,31,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,800,-2,0,910,6,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2015,76,1,2315,93,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1740,-1,0,1908,31,1,0 +2013,4,2,2,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-7,0,845,-4,0,0 +2013,5,27,1,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1901,-5,0,1949,-13,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,930,1,0,1205,-13,0,0 +2013,4,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-2,0,1629,-2,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2200,0,0,2328,3,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1117,4,0,1254,-1,0,0 +2013,8,28,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-4,0,1532,5,0,0 +2013,5,21,2,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,730,-6,0,1031,-10,0,0 +2013,5,2,4,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,30,1,1926,5,0,0 +2013,6,14,5,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,11,0,1700,21,1,0 +2013,5,5,7,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-8,0,1913,1,0,0 +2013,7,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1135,-3,0,1450,14,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,-3,0,855,-9,0,0 +2013,10,25,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-1,0,1501,12,0,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-1,0,1500,-3,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,17,1,1015,19,1,0 +2013,10,5,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-3,0,1710,40,1,0 +2013,10,21,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1700,-12,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1620,7,0,2000,16,1,0 +2013,5,19,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,97,1,2159,110,1,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1840,6,0,2335,-7,0,0 +2013,5,19,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-2,0,1645,33,1,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1329,-3,0,1801,-16,0,0 +2013,8,25,7,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,820,-4,0,1205,-15,0,0 +2013,10,16,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,825,-1,0,920,-5,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,820,0,0,1050,-7,0,0 +2013,10,22,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1359,-7,0,1608,-5,0,0 +2013,5,28,2,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,841,11,0,1413,7,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2041,14,0,2307,-3,0,0 +2013,10,9,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1530,29,1,1805,24,1,0 +2013,5,3,5,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-1,0,1802,2,0,0 +2013,5,27,1,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-8,0,913,-1,0,0 +2013,10,14,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,655,2,0,845,4,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1815,5,0,2355,11,0,0 +2013,5,3,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1400,190,1,1420,188,1,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2155,38,1,2310,49,1,0 +2013,9,26,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,755,-5,0,1045,-7,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1505,-1,0,2351,-56,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-7,0,1729,3,0,0 +2013,8,9,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,126,1,1125,128,1,0 +2013,4,25,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1000,11,0,1206,4,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,830,-5,0,1000,-17,0,0 +2013,7,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,44,1,1521,60,1,0 +2013,10,24,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1055,-4,0,1325,-7,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,1,0,50,1,0,0 +2013,4,11,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,0,0,1821,3,0,0 +2013,7,24,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1845,16,1,2104,-9,0,0 +2013,9,27,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-2,0,1230,-11,0,0 +2013,4,15,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1412,35,1,1635,23,1,0 +2013,6,30,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,11,0,2345,12,0,0 +2013,10,24,4,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,641,-10,0,805,-9,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,-3,0,1255,-8,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1510,-5,0,1840,-14,0,0 +2013,6,19,3,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,1210,-15,0,0 +2013,7,16,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1115,29,1,1230,17,1,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1454,137,1,2029,160,1,0 +2013,9,30,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-3,0,1215,-24,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1754,21,1,2013,98,1,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,29,1,1238,12,0,0 +2013,6,18,2,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-6,0,1020,1,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,-1,0,2110,-1,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1405,4,0,1510,7,0,0 +2013,5,25,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1410,-5,0,1500,-15,0,0 +2013,7,1,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,650,177,1,850,169,1,0 +2013,10,11,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,1,0,1315,-8,0,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,-4,0,2128,-16,0,0 +2013,9,25,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-2,0,918,15,1,0 +2013,8,26,1,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,725,-4,0,748,-3,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1135,-3,0,1235,-3,0,0 +2013,10,24,4,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1049,-11,0,1830,-26,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-3,0,910,8,0,0 +2013,9,23,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,923,-7,0,1040,1,0,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1959,-2,0,2259,-23,0,0 +2013,9,14,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,930,15,1,1055,10,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,845,9,0,1035,7,0,0 +2013,10,29,2,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1320,0,0,1400,8,0,0 +2013,5,5,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1815,8,0,1849,12,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1133,10,0,2012,5,0,0 +2013,8,29,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-4,0,1023,-11,0,0 +2013,4,25,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,735,-3,0,820,9,0,0 +2013,9,21,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,940,-7,0,1120,-10,0,0 +2013,10,23,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1800,10,0,2040,17,1,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,32,1,812,26,1,0 +2013,4,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,835,-4,0,903,-6,0,0 +2013,6,3,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,0,0,723,-16,0,0 +2013,4,7,7,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-9,0,1315,-20,0,0 +2013,9,4,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1718,2,0,1805,4,0,0 +2013,8,30,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,-4,0,1742,0,0,0 +2013,5,4,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1220,33,1,1447,-2,0,0 +2013,10,18,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,-6,0,1708,-11,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,0,0,2055,-2,0,0 +2013,4,10,3,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,78,1,810,64,1,0 +2013,5,23,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,727,13,0,812,15,1,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-8,0,806,16,1,0 +2013,4,21,7,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1915,-2,0,2236,-16,0,0 +2013,8,5,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,-6,0,745,-18,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1245,-7,0,1837,-9,0,0 +2013,4,17,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,-3,0,1230,-10,0,0 +2013,4,6,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2000,-1,0,2100,0,0,0 +2013,8,19,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,-2,0,2254,-14,0,0 +2013,10,25,5,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,901,-15,0,0 +2013,7,22,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-3,0,2115,-8,0,0 +2013,5,26,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1755,-3,0,1930,-13,0,0 +2013,4,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,-7,0,1105,9,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-3,0,957,14,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1640,0,0,2110,22,1,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,-5,0,2145,-10,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,211,1,1740,288,1,0 +2013,5,30,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-1,0,955,8,0,0 +2013,8,17,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,-1,0,1308,3,0,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,939,-8,0,1208,-19,0,0 +2013,8,16,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-4,0,2050,-4,0,0 +2013,6,2,7,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-4,0,2131,-15,0,0 +2013,8,25,7,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,920,-1,0,1215,7,0,0 +2013,4,27,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,2,0,1845,-13,0,0 +2013,8,20,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1657,-5,0,1903,15,1,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,745,0,0,1045,-19,0,0 +2013,4,10,3,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2111,16,1,2344,30,1,0 +2013,10,11,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1800,11,0,2040,24,1,0 +2013,4,27,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1605,-7,0,1741,-15,0,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,19,1,1640,29,1,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,-3,0,1102,-9,0,0 +2013,5,11,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1543,159,1,1933,139,1,0 +2013,9,28,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1715,-8,0,2325,-15,0,0 +2013,7,18,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-6,0,1006,-16,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1847,-3,0,18,-11,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1315,1,0,1405,-5,0,0 +2013,9,13,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1415,0,0,1505,-3,0,0 +2013,8,24,6,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,0,0,1625,-10,0,0 +2013,5,26,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1110,9,0,1215,3,0,0 +2013,5,21,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1021,2,0,1247,24,1,0 +2013,9,10,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,1,0,1155,-4,0,0 +2013,4,1,1,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2045,-4,0,2219,-30,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1545,65,1,1735,57,1,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1200,63,1,1405,61,1,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2246,-3,0,29,-19,0,0 +2013,5,15,3,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,615,-5,0,740,-8,0,0 +2013,7,16,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-9,0,740,-18,0,0 +2013,5,27,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1025,0,0,1100,-10,0,0 +2013,5,19,7,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,-7,0,1110,-38,0,0 +2013,5,26,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,-6,0,1942,-5,0,0 +2013,6,24,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-4,0,1415,-14,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2020,23,1,2130,11,0,0 +2013,6,1,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1305,0,0,1430,18,1,0 +2013,7,4,4,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1520,-5,0,2335,-28,0,0 +2013,10,30,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,933,0,0,0 +2013,10,16,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1006,-8,0,1027,-14,0,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1935,102,1,2305,103,1,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,8,0,1420,-6,0,0 +2013,10,14,1,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,30,1,810,6,0,0 +2013,4,28,7,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,602,-7,0,712,23,1,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,9,0,942,9,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2005,-1,0,2313,-11,0,0 +2013,4,6,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1503,-4,0,2324,-18,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-5,0,1304,0,0,0 +2013,5,20,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1115,10,0,1230,3,0,0 +2013,9,18,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1800,-12,0,2100,-20,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,900,-3,0,1255,-14,0,0 +2013,7,28,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1640,0,,1850,0,1,1 +2013,10,30,3,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1110,48,1,1250,49,1,0 +2013,8,5,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,255,1,755,252,1,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-7,0,2017,-17,0,0 +2013,6,6,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1116,-9,0,1151,-13,0,0 +2013,6,26,3,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,705,-1,0,1535,15,1,0 +2013,6,27,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1135,-5,0,1230,-14,0,0 +2013,9,18,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,822,0,0,1215,-18,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,34,1,1345,30,1,0 +2013,8,6,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1700,-6,0,1756,-5,0,0 +2013,9,13,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,-5,0,1033,-8,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1140,-6,0,1240,-12,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-5,0,1613,-11,0,0 +2013,8,21,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,6,0,2035,-13,0,0 +2013,7,1,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,840,13,0,1638,40,1,0 +2013,9,27,5,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1530,34,1,1848,26,1,0 +2013,9,17,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-9,0,849,-7,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-5,0,950,-12,0,0 +2013,8,25,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1230,-7,0,1610,-7,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,1,0,1915,-13,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,641,1,2235,618,1,0 +2013,4,7,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1703,-8,0,1852,-14,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1520,-6,0,1815,-14,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1230,-1,0,1320,-9,0,0 +2013,6,5,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1938,-5,0,2118,-13,0,0 +2013,9,7,6,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,-5,0,1607,-6,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1555,12,0,1950,-6,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1152,-5,0,1457,-8,0,0 +2013,8,14,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,934,-1,0,1036,-18,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,161,1,1703,179,1,0 +2013,10,15,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1325,5,0,1355,-1,0,0 +2013,7,31,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1616,0,0,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,741,-7,0,1025,-10,0,0 +2013,9,8,7,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1545,32,1,1650,27,1,0 +2013,7,15,1,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1730,59,1,1915,40,1,0 +2013,8,12,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,830,19,1,950,12,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1424,15,1,2035,33,1,0 +2013,8,6,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,-3,0,1623,-1,0,0 +2013,4,23,2,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1152,9,0,1305,6,0,0 +2013,7,25,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,-4,0,957,-15,0,0 +2013,9,9,1,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1300,15,1,1525,7,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,5,0,1445,1,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,0,0,1555,-9,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,0,0,2357,-25,0,0 +2013,10,16,3,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1456,-5,0,1630,-9,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,845,-1,0,955,-5,0,0 +2013,10,27,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,810,-1,0,900,14,0,0 +2013,4,15,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,5,0,1730,-3,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,810,6,0,948,5,0,0 +2013,5,21,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,-8,0,1943,-30,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,600,0,0,750,-18,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,900,-3,0,1015,-4,0,0 +2013,6,26,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-7,0,1821,0,1,1 +2013,8,22,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1315,-3,0,1450,-2,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,5,0,2130,-10,0,0 +2013,6,13,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-5,0,901,8,0,0 +2013,5,23,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-1,0,1340,82,1,0 +2013,8,21,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,850,5,0,935,0,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1154,-6,0,1600,-21,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,22,1,1305,19,1,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1455,15,1,1940,24,1,0 +2013,10,11,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1540,15,1,1815,24,1,0 +2013,10,17,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1615,33,1,1906,24,1,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,1,0,2320,3,0,0 +2013,9,14,6,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,604,-8,0,846,-9,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,920,1,0,1020,4,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,-4,0,938,-7,0,0 +2013,4,14,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1835,11,0,1930,21,1,0 +2013,4,12,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,-1,0,2150,-5,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-4,0,830,-8,0,0 +2013,5,3,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,720,-6,0,804,-3,0,0 +2013,8,29,4,9E,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,647,-3,0,821,-5,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1335,-5,0,1520,-14,0,0 +2013,4,18,4,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1450,-3,0,1627,7,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,13,0,1420,12,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1810,21,1,1905,17,1,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,121,1,2255,119,1,0 +2013,10,22,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1443,5,0,1615,0,0,0 +2013,6,9,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,14,0,2245,8,0,0 +2013,7,19,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-8,0,845,-1,0,0 +2013,10,9,3,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,832,-7,0,1110,-11,0,0 +2013,8,31,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,-8,0,2112,-21,0,0 +2013,5,25,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,155,1,2239,123,1,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2200,8,0,2322,15,1,0 +2013,10,5,6,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1140,-2,0,1226,-17,0,0 +2013,4,30,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,700,2,0,940,-36,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-4,0,1025,2,0,0 +2013,4,25,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1405,1,0,1545,-21,0,0 +2013,6,12,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-4,0,735,3,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,-4,0,1620,-4,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,4,0,2055,-5,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1520,26,1,1720,10,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1445,10,0,2205,16,1,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1959,2,0,2150,1,0,0 +2013,6,15,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1555,8,0,1820,16,1,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1455,12,0,1650,9,0,0 +2013,9,19,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1405,67,1,1724,48,1,0 +2013,4,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1035,1,0,1309,-1,0,0 +2013,8,1,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-3,0,855,0,0,0 +2013,9,22,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,-1,0,1614,3,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,-2,0,1137,-8,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,-1,0,1350,-18,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1530,-3,0,1650,-5,0,0 +2013,4,18,4,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-8,0,1058,-10,0,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,25,1,2215,26,1,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1700,13,0,1820,6,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1526,7,0,1737,-7,0,0 +2013,7,19,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,6,0,845,-6,0,0 +2013,10,3,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1025,-5,0,1455,15,1,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2046,0,0,2215,-10,0,0 +2013,5,11,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1218,37,1,2015,11,0,0 +2013,9,14,6,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1150,-2,0,1335,-8,0,0 +2013,8,30,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-3,0,909,3,0,0 +2013,4,1,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1210,-1,0,1310,-9,0,0 +2013,5,15,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-1,0,1338,-12,0,0 +2013,9,7,6,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-7,0,1130,-44,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1033,2,0,1311,-1,0,0 +2013,9,30,1,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,803,-4,0,1019,-17,0,0 +2013,10,4,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1908,-4,0,2026,1,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,-3,0,2329,-2,0,0 +2013,10,30,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,915,-9,0,1035,-13,0,0 +2013,9,17,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,615,15,1,725,3,0,0 +2013,6,26,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,3,0,1010,-6,0,0 +2013,7,10,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1135,0,,1316,0,1,1 +2013,4,6,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1637,-3,0,1919,-7,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1439,0,0,1533,-4,0,0 +2013,5,31,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,848,20,1,0 +2013,4,27,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,-1,0,1800,-24,0,0 +2013,7,30,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,935,-3,0,950,-19,0,0 +2013,9,13,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,6,0,2249,12,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-3,0,2045,-12,0,0 +2013,9,10,2,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,2015,184,1,2155,166,1,0 +2013,7,7,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1612,-3,0,1847,-13,0,0 +2013,10,6,7,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1900,20,1,2025,14,0,0 +2013,9,23,1,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1040,-10,0,1225,-7,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,855,-4,0,1025,-6,0,0 +2013,6,28,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1115,-2,0,1240,-6,0,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,808,3,0,1613,-27,0,0 +2013,9,25,3,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,-2,0,1800,-23,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-4,0,1924,-17,0,0 +2013,6,22,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,6,0,2345,3,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,3,0,1400,-8,0,0 +2013,7,6,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,840,10,0,955,2,0,0 +2013,9,16,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2059,-3,0,2232,-19,0,0 +2013,5,8,3,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,900,-8,0,1125,-17,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1044,-6,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1400,2,0,1455,-1,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,-5,0,1749,-14,0,0 +2013,5,15,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,-14,0,1849,-25,0,0 +2013,5,14,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1811,-7,0,2000,-9,0,0 +2013,8,26,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-8,0,1452,-12,0,0 +2013,7,14,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,640,-4,0,840,-13,0,0 +2013,4,17,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1345,138,1,1910,145,1,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1505,-4,0,1835,-14,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1335,146,1,1645,137,1,0 +2013,7,31,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1140,-2,0,1300,-6,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1055,37,1,1435,12,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-5,0,1305,-5,0,0 +2013,5,6,1,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1910,-3,0,2155,6,0,0 +2013,4,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,-5,0,1715,-27,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2255,29,1,2355,18,1,0 +2013,6,23,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1910,73,1,2143,71,1,0 +2013,7,26,5,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,532,-4,0,627,-4,0,0 +2013,7,16,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,27,1,2005,8,0,0 +2013,10,14,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1455,46,1,1610,32,1,0 +2013,5,24,5,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1440,7,0,1650,-10,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1236,4,0,1418,-16,0,0 +2013,7,7,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-9,0,1923,-5,0,0 +2013,8,25,7,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1757,-4,0,1845,-10,0,0 +2013,8,13,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-1,0,2055,-11,0,0 +2013,7,18,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1708,41,1,1953,47,1,0 +2013,5,19,7,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,13,0,2005,10,0,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1323,0,0,1724,-13,0,0 +2013,6,4,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,830,-5,0,851,-16,0,0 +2013,6,19,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-4,0,2000,-2,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,163,1,1345,155,1,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,46,1,2217,30,1,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,2,0,1314,-7,0,0 +2013,4,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,16,1,1630,7,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-3,0,1411,-1,0,0 +2013,4,11,4,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1324,5,0,2159,5,0,0 +2013,5,12,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1240,-4,0,1410,12,0,0 +2013,8,18,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,37,1,1354,27,1,0 +2013,4,11,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-2,0,845,-10,0,0 +2013,6,10,1,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1322,11,0,1645,-3,0,0 +2013,6,23,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,829,-3,0,901,-13,0,0 +2013,8,14,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2210,7,0,2328,-13,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,730,-5,0,1055,4,0,0 +2013,8,23,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,8,0,2050,9,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1325,-1,0,1445,-12,0,0 +2013,4,6,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,-6,0,845,-14,0,0 +2013,7,21,7,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-3,0,820,20,1,0 +2013,9,6,5,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-8,0,1015,-18,0,0 +2013,6,16,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,615,-3,0,725,3,0,0 +2013,10,6,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1533,5,0,1824,43,1,0 +2013,4,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1706,38,1,1840,22,1,0 +2013,4,28,7,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1700,2,0,2022,-10,0,0 +2013,10,21,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1045,2,0,1220,1,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1035,6,0,1130,4,0,0 +2013,8,16,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-8,0,1340,-24,0,0 +2013,8,14,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,19,1,2055,7,0,0 +2013,8,17,6,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1825,-4,0,2146,-9,0,0 +2013,8,26,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,5,0,1527,-5,0,0 +2013,9,29,7,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-3,0,1255,-17,0,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-1,0,1210,0,0,0 +2013,4,21,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2055,6,0,2215,-4,0,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,0,0,1057,-16,0,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,-2,0,2125,-14,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,-1,0,1545,7,0,0 +2013,8,9,5,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,730,-4,0,1025,-16,0,0 +2013,6,13,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1042,3,0,1545,-20,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,725,31,1,901,24,1,0 +2013,10,2,3,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,-2,0,2005,-18,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1933,0,0,2128,-15,0,0 +2013,6,13,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2155,-7,0,2305,-8,0,0 +2013,5,24,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,61,1,1015,53,1,0 +2013,9,23,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-7,0,1335,-16,0,0 +2013,6,30,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,745,-5,0,830,-15,0,0 +2013,8,13,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2140,2,0,542,-1,0,0 +2013,9,25,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1700,-6,0,1950,-23,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,25,1,1115,20,1,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1441,4,0,1851,-8,0,0 +2013,10,27,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1805,1,0,1940,-4,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,16,1,2315,3,0,0 +2013,6,7,5,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1230,13,0,1420,2,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-7,0,846,-8,0,0 +2013,8,31,6,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,604,-2,0,846,-6,0,0 +2013,10,1,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,3,0,1054,-10,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,-5,0,859,-18,0,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,723,32,1,844,12,0,0 +2013,10,26,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,27,1,2109,12,0,0 +2013,6,3,1,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1142,-9,0,1402,-17,0,0 +2013,4,29,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2105,-3,0,2115,9,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2130,1,0,2235,-4,0,0 +2013,6,24,1,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,14,0,1307,-5,0,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1016,-3,0,1149,-6,0,0 +2013,7,6,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1733,0,,2030,0,1,1 +2013,10,19,6,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,740,-1,0,910,7,0,0 +2013,8,21,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1935,6,0,2100,-1,0,0 +2013,5,10,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1717,-3,0,1840,-9,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,600,-8,0,738,-26,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1450,-6,0,1635,-17,0,0 +2013,6,20,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,0,0,1205,-3,0,0 +2013,4,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2035,-9,0,2228,-21,0,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,4,0,912,10,0,0 +2013,10,8,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,-5,0,1930,9,0,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,0,0,1800,3,0,0 +2013,10,25,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,850,-6,0,0 +2013,9,11,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1125,64,1,1900,57,1,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1133,33,1,1615,42,1,0 +2013,8,16,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1057,105,1,1310,98,1,0 +2013,5,13,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,947,-3,0,1317,-2,0,0 +2013,5,26,7,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-5,0,1011,-8,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,935,-6,0,1315,-14,0,0 +2013,6,30,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,20,0,0,813,-8,0,0 +2013,8,24,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1745,-4,0,1905,-6,0,0 +2013,7,10,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1400,-1,0,1540,0,0,0 +2013,6,25,2,HA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1355,30,1,2205,47,1,0 +2013,8,7,3,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-12,0,902,-14,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,910,0,0,1108,5,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,-2,0,1342,-1,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,39,1,1011,10,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,945,5,0,1040,-12,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1120,3,0,1330,-25,0,0 +2013,10,3,4,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1945,-2,0,2251,-6,0,0 +2013,4,18,4,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,600,-4,0,720,25,1,0 +2013,5,19,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,96,1,2135,86,1,0 +2013,8,4,7,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-3,0,1630,-9,0,0 +2013,4,29,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-5,0,1355,5,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,0,0,1625,-5,0,0 +2013,10,28,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-12,0,2145,-8,0,0 +2013,9,17,2,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-3,0,1901,-23,0,0 +2013,6,21,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1625,1,0,2114,-2,0,0 +2013,4,15,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,1,0,1620,-5,0,0 +2013,10,15,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,9,0,1235,13,0,0 +2013,9,8,7,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-2,0,905,-8,0,0 +2013,10,27,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1058,88,1,1253,102,1,0 +2013,5,31,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-2,0,1034,-37,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-5,0,2127,-20,0,0 +2013,5,13,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,833,-4,0,936,2,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,-5,0,2055,-14,0,0 +2013,4,17,3,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2040,0,0,2356,-4,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1430,2,0,1750,8,0,0 +2013,6,2,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,825,-1,0,1055,-8,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,-3,0,2150,-14,0,0 +2013,5,22,3,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,70,1,1815,93,1,0 +2013,10,7,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1355,-2,0,1710,-5,0,0 +2013,9,11,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1909,155,1,2233,136,1,0 +2013,4,12,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,-7,0,2125,-2,0,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,759,-6,0,858,-11,0,0 +2013,4,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1020,-1,0,1220,-10,0,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,-9,0,2009,-1,0,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,605,-2,0,817,-19,0,0 +2013,9,28,6,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,-2,0,1935,-14,0,0 +2013,10,17,4,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-5,0,1143,-17,0,0 +2013,6,6,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1835,58,1,1939,50,1,0 +2013,6,22,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1850,-4,0,2012,2,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2020,13,0,2235,4,0,0 +2013,9,19,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,710,-6,0,950,-17,0,0 +2013,6,20,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,0,0,855,2,0,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1215,22,1,1352,20,1,0 +2013,10,1,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1915,-2,0,2215,-1,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1640,-8,0,1956,-40,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,258,1,1045,246,1,0 +2013,10,16,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1333,18,1,1537,19,1,0 +2013,9,8,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1650,4,0,1937,-26,0,0 +2013,4,4,4,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-8,0,1652,-25,0,0 +2013,10,13,7,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-5,0,750,-11,0,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,1,0,745,-15,0,0 +2013,9,9,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,16,1,2056,7,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,-4,0,1040,-2,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2155,-2,0,2337,10,0,0 +2013,7,26,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,12,0,1340,10,0,0 +2013,8,26,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,815,-6,0,1605,1,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1120,9,0,1213,15,1,0 +2013,8,13,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1050,4,0,1943,-2,0,0 +2013,6,27,4,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1620,0,,1853,0,1,1 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1359,9,0,1731,14,0,0 +2013,4,14,7,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,600,-6,0,725,-4,0,0 +2013,6,15,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1632,-20,0,0 +2013,7,21,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,0,0,1320,2,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1000,-4,0,1330,-6,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1801,28,1,1945,19,1,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1925,24,1,2115,12,0,0 +2013,8,22,4,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1846,183,1,1939,174,1,0 +2013,8,20,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,3,0,1555,-2,0,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1940,-3,0,2315,-2,0,0 +2013,9,30,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,753,20,1,928,29,1,0 +2013,7,2,2,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1700,75,1,1905,60,1,0 +2013,7,29,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,535,3,0,850,28,1,0 +2013,10,23,3,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,181,1,1945,178,1,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1920,13,0,2157,-1,0,0 +2013,9,9,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1356,-10,0,1453,-8,0,0 +2013,9,26,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2016,-5,0,2105,10,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1725,-5,0,1840,-30,0,0 +2013,7,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1640,114,1,1850,107,1,0 +2013,4,8,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-5,0,1905,-33,0,0 +2013,7,28,7,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1220,-3,0,1412,11,0,0 +2013,6,7,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,3,0,1031,21,1,0 +2013,10,20,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-6,0,1809,-7,0,0 +2013,9,13,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-7,0,1915,-8,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1330,-7,0,1430,2,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1415,8,0,1655,6,0,0 +2013,9,22,7,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1950,-9,0,2240,-7,0,0 +2013,6,28,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-4,0,641,-5,0,0 +2013,7,25,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,830,-8,0,927,-8,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-1,0,730,-15,0,0 +2013,6,8,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,-3,0,2033,-11,0,0 +2013,6,29,6,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1635,21,1,1819,21,1,0 +2013,8,6,2,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1635,3,0,2010,1,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,27,1,2040,25,1,0 +2013,4,16,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1455,0,0,1742,-11,0,0 +2013,8,20,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1421,1,0,1659,-9,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1420,19,1,1710,34,1,0 +2013,8,26,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1753,5,0,1907,2,0,0 +2013,9,4,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,645,0,0,740,-4,0,0 +2013,5,6,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1725,-7,0,1907,-24,0,0 +2013,5,10,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-7,0,1630,-21,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,0,0,803,-6,0,0 +2013,5,17,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1536,60,1,1559,58,1,0 +2013,4,29,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,46,1,1941,43,1,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,-3,0,1335,-6,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1050,-3,0,1143,-5,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,0,0,1024,-14,0,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1345,-3,0,1505,16,1,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1140,6,0,1725,43,1,0 +2013,6,18,2,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,615,0,0,830,-10,0,0 +2013,8,28,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1627,39,1,1754,46,1,0 +2013,10,9,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1450,67,1,1835,53,1,0 +2013,6,17,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-2,0,2203,16,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1455,6,0,1557,3,0,0 +2013,7,4,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1845,66,1,2103,45,1,0 +2013,4,24,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1727,0,,1920,0,1,1 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1451,69,1,1605,61,1,0 +2013,8,14,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,609,-1,0,1429,-14,0,0 +2013,4,2,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,58,1,1035,50,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-5,0,2015,23,1,0 +2013,6,15,6,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,2,0,1115,15,1,0 +2013,9,22,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1655,11,0,1745,8,0,0 +2013,7,21,7,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,-6,0,1205,-7,0,0 +2013,10,13,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,750,105,1,1510,76,1,0 +2013,6,13,4,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1540,44,1,1745,52,1,0 +2013,7,17,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,5,0,1230,-14,0,0 +2013,10,18,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1148,-8,0,1343,-22,0,0 +2013,8,25,7,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,1019,-14,0,0 +2013,5,28,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,652,-1,0,1404,-12,0,0 +2013,8,14,3,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,-7,0,1504,-18,0,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,2,0,1000,-6,0,0 +2013,6,26,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,950,-3,0,1115,-11,0,0 +2013,4,20,6,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1321,-8,0,1610,-15,0,0 +2013,4,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,67,1,1910,80,1,0 +2013,8,1,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,605,4,0,730,16,1,0 +2013,8,16,5,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,901,2,0,1204,-22,0,0 +2013,6,20,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,19,1,757,-1,0,0 +2013,4,26,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-4,0,900,29,1,0 +2013,10,5,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-9,0,641,-4,0,0 +2013,7,5,5,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1038,-2,0,1202,-21,0,0 +2013,9,17,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-3,0,1055,-7,0,0 +2013,10,8,2,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,705,0,0,955,1,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1903,-3,0,2105,-14,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1040,135,1,1210,139,1,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1330,6,0,1614,12,0,0 +2013,7,20,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,94,1,2035,83,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,2150,15,1,2335,7,0,0 +2013,7,1,1,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-7,0,1022,9,0,0 +2013,5,4,6,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,804,0,0,1058,5,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,830,-5,0,935,-8,0,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,630,-1,0,829,52,1,0 +2013,4,5,5,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,2050,-8,0,2301,-18,0,0 +2013,9,14,6,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,-7,0,1605,24,1,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1025,12,0,1325,-1,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,150,1,2321,150,1,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1436,27,1,1846,81,1,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-3,0,815,6,0,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-6,0,2010,50,1,0 +2013,7,1,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-6,0,1517,-9,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,10,0,2141,6,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,5,0,1020,3,0,0 +2013,10,27,7,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,10,0,1819,0,0,0 +2013,8,28,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,900,-2,0,1155,-7,0,0 +2013,7,8,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-10,0,815,-8,0,0 +2013,7,1,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1208,-3,0,1330,0,0,0 +2013,6,12,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,-4,0,829,-3,0,0 +2013,5,8,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,-6,0,2020,7,0,0 +2013,10,29,2,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1215,-4,0,1334,-6,0,0 +2013,7,7,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-3,0,1435,7,0,0 +2013,9,12,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,-1,0,920,-10,0,0 +2013,6,8,6,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-10,0,1015,-12,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,2000,11,0,2120,17,1,0 +2013,5,31,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-7,0,1221,-5,0,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1120,-1,0,1230,13,0,0 +2013,4,2,2,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1837,-11,0,2103,-16,0,0 +2013,8,10,6,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,625,2,0,750,-5,0,0 +2013,10,30,3,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1503,-3,0,1604,-16,0,0 +2013,5,13,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1641,3,0,1743,-12,0,0 +2013,7,31,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-7,0,1624,-7,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1605,9,0,2255,14,0,0 +2013,7,6,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,620,1,0,1219,-19,0,0 +2013,6,13,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,2,0,923,18,1,0 +2013,9,8,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1040,25,1,1300,8,0,0 +2013,7,31,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1940,14,0,2115,15,1,0 +2013,5,28,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,640,7,0,946,16,1,0 +2013,6,14,5,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-9,0,2045,5,0,0 +2013,10,14,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1526,1,0,1711,11,0,0 +2013,6,22,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1240,15,1,1350,11,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1359,6,0,1530,2,0,0 +2013,7,27,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,628,3,0,816,-17,0,0 +2013,8,12,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-2,0,1514,-4,0,0 +2013,10,20,7,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,845,-7,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1140,-2,0,1410,-13,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,545,-5,0,717,-25,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,0,,1440,0,1,1 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1449,33,1,1726,28,1,0 +2013,8,19,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,810,-5,0,1100,-11,0,0 +2013,9,15,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,915,22,1,1020,29,1,0 +2013,6,2,7,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1013,6,0,1506,-10,0,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,12,0,920,17,1,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1857,-2,0,2110,2,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,4,0,1214,2,0,0 +2013,8,21,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,-7,0,2135,-22,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1715,0,0,1837,-9,0,0 +2013,9,22,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1025,-4,0,1140,14,0,0 +2013,9,20,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-1,0,1414,-5,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,3,0,2037,-9,0,0 +2013,10,26,6,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,720,-7,0,1215,-11,0,0 +2013,5,10,5,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1639,6,0,1933,49,1,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2151,-2,0,2331,-13,0,0 +2013,6,25,2,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1310,70,1,1611,67,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,954,-4,0,1146,-2,0,0 +2013,9,20,5,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-3,0,1129,7,0,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1327,-12,0,0 +2013,7,9,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,17,1,1835,11,0,0 +2013,10,2,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,-14,0,2245,5,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1110,0,0,1245,-16,0,0 +2013,6,8,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1234,-7,0,1459,-26,0,0 +2013,10,11,5,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,634,-6,0,759,-15,0,0 +2013,5,5,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-5,0,1332,1,0,0 +2013,10,27,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1820,98,1,1950,135,1,0 +2013,4,22,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,607,6,0,900,-10,0,0 +2013,4,7,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-6,0,912,-12,0,0 +2013,9,4,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1924,-13,0,2031,-17,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-3,0,1201,-15,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,-1,0,2320,5,0,0 +2013,5,8,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,27,1,1405,-6,0,0 +2013,5,13,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-9,0,1421,-21,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1810,68,1,2117,130,1,0 +2013,7,3,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1650,9,0,1753,-7,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1400,20,1,1515,3,0,0 +2013,8,20,2,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1652,102,1,1845,95,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1410,4,0,1434,-4,0,0 +2013,8,27,2,EV,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1012,-3,0,1130,-6,0,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2115,23,1,2205,16,1,0 +2013,4,30,2,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1050,-3,0,1855,-5,0,0 +2013,4,16,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1325,-5,0,1455,-3,0,0 +2013,10,23,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,19,1,1655,15,1,0 +2013,7,16,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,27,1,2105,5,0,0 +2013,7,14,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1935,-13,0,2110,-7,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,0,0,1850,-10,0,0 +2013,4,7,7,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,815,101,1,1007,95,1,0 +2013,5,19,7,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,12954,Long Beach Airport,Long Beach,CA,105,0,0,723,-19,0,0 +2013,10,3,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,920,-3,0,1214,25,1,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-5,0,929,-25,0,0 +2013,8,27,2,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2315,0,0,750,-23,0,0 +2013,5,17,5,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2105,64,1,545,46,1,0 +2013,9,19,4,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,7,0,1917,9,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1355,17,1,1755,27,1,0 +2013,6,7,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,650,-1,0,712,-5,0,0 +2013,8,6,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,-5,0,1315,-3,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,13,0,1225,3,0,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1405,23,1,1510,14,0,0 +2013,4,16,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,-6,0,1553,-21,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1359,-4,0,1507,-4,0,0 +2013,10,20,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1538,-3,0,2120,-23,0,0 +2013,5,22,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1553,-9,0,1910,-22,0,0 +2013,10,28,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-1,0,1219,-9,0,0 +2013,4,23,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,838,0,0,959,0,0,0 +2013,7,22,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,605,-4,0,1008,-3,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,-2,0,1916,-17,0,0 +2013,10,2,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,-3,0,1530,-19,0,0 +2013,8,13,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,8,0,2320,4,0,0 +2013,9,29,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1600,-11,0,1720,-18,0,0 +2013,5,21,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,715,-8,0,1218,-5,0,0 +2013,9,21,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1515,-8,0,1700,-40,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,712,-1,0,929,-27,0,0 +2013,4,21,7,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-6,0,553,-23,0,0 +2013,7,8,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-5,0,2058,-3,0,0 +2013,7,10,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1144,16,1,1342,14,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2008,4,0,2125,9,0,0 +2013,10,3,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,3,0,2018,1,0,0 +2013,9,9,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,12,0,2240,9,0,0 +2013,10,23,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,949,0,0,1103,-4,0,0 +2013,10,12,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,-1,0,1030,-7,0,0 +2013,5,27,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1010,-10,0,1220,-19,0,0 +2013,8,17,6,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,52,1,2015,35,1,0 +2013,10,9,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,855,-1,0,1010,-1,0,0 +2013,4,4,4,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,730,-3,0,1023,-25,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,-2,0,1819,5,0,0 +2013,9,7,6,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1800,-3,0,1940,-17,0,0 +2013,10,25,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,704,19,1,1220,5,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-3,0,1829,-1,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1030,66,1,1250,52,1,0 +2013,9,12,4,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,34,1,2001,50,1,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,925,12,0,1020,4,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1650,-4,0,1840,19,1,0 +2013,7,4,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2239,-3,0,633,4,0,0 +2013,10,21,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,-4,0,1930,-8,0,0 +2013,4,21,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,844,0,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,745,0,0,1100,8,0,0 +2013,4,1,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,2015,29,1,2120,22,1,0 +2013,10,4,5,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,548,-3,0,747,-20,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,9,0,1211,9,0,0 +2013,7,2,2,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1540,11,0,1929,15,1,0 +2013,6,17,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,-2,0,1020,-4,0,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,4,0,1605,5,0,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,4,0,2135,14,0,0 +2013,5,7,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1020,-8,0,1240,-18,0,0 +2013,10,16,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,59,0,0,557,-22,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,1,0,1600,-14,0,0 +2013,8,26,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-5,0,1925,-3,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,20,1,950,25,1,0 +2013,6,11,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,954,-3,0,1028,-3,0,0 +2013,9,1,7,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1525,2,0,1700,-5,0,0 +2013,9,13,5,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1133,-8,0,1358,-25,0,0 +2013,10,10,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,930,-7,0,1121,-10,0,0 +2013,6,19,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2250,-4,0,2355,-3,0,0 +2013,5,1,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1720,0,0,2000,16,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,755,-4,0,1015,-8,0,0 +2013,4,2,2,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-5,0,822,-12,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1930,-4,0,2021,-13,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,13,0,2217,-5,0,0 +2013,4,21,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1105,17,1,1150,18,1,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1315,17,1,1540,6,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2045,22,1,2310,27,1,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,2,0,1541,8,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,0,0,1240,-1,0,0 +2013,8,19,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,725,-11,0,0 +2013,8,6,2,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,930,-10,0,1051,-25,0,0 +2013,5,21,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1155,35,1,1449,39,1,0 +2013,9,24,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-3,0,1400,-7,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,6,0,1550,10,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,735,-4,0,1157,-11,0,0 +2013,7,25,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1520,-2,0,1805,17,1,0 +2013,7,29,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1448,12,0,1744,13,0,0 +2013,8,3,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,900,-2,0,1025,-10,0,0 +2013,5,25,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,9,0,1930,-3,0,0 +2013,5,7,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,1,0,1505,0,0,0 +2013,10,21,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1758,0,0,1845,-13,0,0 +2013,5,8,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,91,1,1705,85,1,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,0,0,1052,-10,0,0 +2013,6,5,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1851,0,0,2024,-2,0,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,2129,29,1,2356,-3,0,0 +2013,8,13,2,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,910,-1,0,1035,-1,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1523,6,0,1752,28,1,0 +2013,5,24,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-7,0,2059,-9,0,0 +2013,6,7,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2342,-5,0,510,-8,0,0 +2013,7,13,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1733,-1,0,1900,-16,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,955,-4,0,1058,7,0,0 +2013,9,17,2,9E,14524,Richmond International,Richmond,VA,12478,John F. Kennedy International,New York,NY,1227,-3,0,1348,-9,0,0 +2013,8,15,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-1,0,1855,-13,0,0 +2013,9,2,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,72,1,515,90,1,0 +2013,9,29,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1809,-7,0,1939,-4,0,0 +2013,10,23,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,805,-21,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-4,0,1806,-23,0,0 +2013,7,17,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2155,83,1,105,88,1,0 +2013,7,17,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,10,0,1250,-3,0,0 +2013,7,29,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1215,-3,0,1411,-17,0,0 +2013,10,2,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,920,1,0,1045,-2,0,0 +2013,5,27,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,-2,0,1630,4,0,0 +2013,5,8,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1800,5,0,1925,10,0,0 +2013,6,13,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1359,234,1,2159,215,1,0 +2013,10,1,2,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,905,5,0,1019,3,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,640,0,0,845,-7,0,0 +2013,9,9,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-3,0,1300,-11,0,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1055,5,0,1320,5,0,0 +2013,7,2,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,600,6,0,853,2,0,0 +2013,6,4,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1241,-4,0,1405,-10,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-2,0,1150,-11,0,0 +2013,6,9,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1345,21,1,1515,14,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1735,7,0,1845,-1,0,0 +2013,4,1,1,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1000,-7,0,1115,6,0,0 +2013,6,6,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-3,0,730,-8,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,26,1,2200,27,1,0 +2013,4,24,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1520,-2,0,1605,0,0,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-3,0,2056,8,0,0 +2013,8,30,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,-6,0,1521,15,1,0 +2013,7,16,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-5,0,1750,-13,0,0 +2013,7,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1140,-2,0,1235,-6,0,0 +2013,8,16,5,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1957,-7,0,2130,-27,0,0 +2013,8,5,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1012,-6,0,1209,10,0,0 +2013,6,30,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,32,1,2003,32,1,0 +2013,8,10,6,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1750,-10,0,2010,-23,0,0 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,47,1,1940,50,1,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,42,1,1735,35,1,0 +2013,10,7,1,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,15,1,1410,10,0,0 +2013,9,28,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1309,-3,0,1415,-11,0,0 +2013,6,18,2,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,806,-1,0,1015,7,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2010,-1,0,2115,0,0,0 +2013,10,24,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,180,1,2052,181,1,0 +2013,4,5,5,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,910,29,1,1145,25,1,0 +2013,9,8,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1535,-4,0,1750,-7,0,0 +2013,5,27,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,-5,0,1805,-7,0,0 +2013,9,9,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,2,0,940,-7,0,0 +2013,10,16,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1417,-7,0,0 +2013,8,3,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,655,-4,0,825,-18,0,0 +2013,6,17,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-3,0,2150,1,0,0 +2013,10,1,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1557,-5,0,1719,-4,0,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2026,-2,0,2120,-10,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,-3,0,1733,3,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2050,20,1,2235,13,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1005,8,0,1145,8,0,0 +2013,4,2,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1505,6,0,1808,5,0,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,559,59,1,902,43,1,0 +2013,8,13,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1254,88,1,1614,68,1,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1815,17,1,2030,16,1,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,14,0,1835,73,1,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,-2,0,840,-18,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1208,-2,0,1825,-26,0,0 +2013,6,18,2,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1132,70,1,1344,81,1,0 +2013,10,23,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,-4,0,940,-5,0,0 +2013,4,29,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,-6,0,1655,-13,0,0 +2013,10,21,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,802,2,0,1016,-1,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,56,1,1950,44,1,0 +2013,7,20,6,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,730,-9,0,1021,-29,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-4,0,1849,9,0,0 +2013,8,17,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,614,-3,0,808,-2,0,0 +2013,4,16,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-5,0,1040,-14,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,0,0,1522,1,0,0 +2013,9,2,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1551,0,,1730,0,1,1 +2013,5,15,3,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1715,10,0,2230,50,1,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1250,5,0,1410,-2,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,-1,0,2200,-13,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1230,10,0,1800,1,0,0 +2013,6,29,6,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,715,-4,0,810,-7,0,0 +2013,9,13,5,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-1,0,1742,34,1,0 +2013,7,24,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,845,-3,0,1007,-4,0,0 +2013,10,4,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1330,31,1,1435,22,1,0 +2013,7,10,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1534,-1,0,1930,-6,0,0 +2013,10,14,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1843,-13,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2005,-4,0,2330,4,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-6,0,1152,-22,0,0 +2013,4,17,3,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1518,-4,0,1629,-5,0,0 +2013,10,20,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1515,-2,0,1645,-16,0,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,36,1,1609,27,1,0 +2013,4,4,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1547,36,1,1719,26,1,0 +2013,6,10,1,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,-2,0,1830,11,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-4,0,1326,-3,0,0 +2013,7,5,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1520,44,1,1635,7,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,805,8,0,1125,10,0,0 +2013,7,17,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1830,37,1,1935,31,1,0 +2013,5,17,5,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1055,-2,0,1140,6,0,0 +2013,4,13,6,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1745,-5,0,2058,-29,0,0 +2013,4,8,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-8,0,1235,-27,0,0 +2013,10,27,7,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-4,0,1045,-11,0,0 +2013,6,8,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,819,-9,0,1336,-17,0,0 +2013,5,29,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1630,-4,0,1801,-22,0,0 +2013,6,20,4,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,13,0,500,-8,0,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1205,6,0,1350,-15,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1951,-3,0,2129,-13,0,0 +2013,5,6,1,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1840,28,1,2150,29,1,0 +2013,6,30,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-3,0,1314,-14,0,0 +2013,6,6,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-4,0,1059,-3,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,24,1,1900,6,0,0 +2013,6,16,7,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1114,-10,0,1349,-22,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,2002,13,0,2219,22,1,0 +2013,9,12,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,720,-3,0,1330,-10,0,0 +2013,9,2,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,6,0,1148,0,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1727,54,1,1832,58,1,0 +2013,6,24,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,206,1,2210,217,1,0 +2013,6,17,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,9,0,1319,-11,0,0 +2013,5,25,6,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,1,0,806,-13,0,0 +2013,7,28,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-8,0,747,-10,0,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1225,10,0,1942,16,1,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,249,1,1458,250,1,0 +2013,9,6,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1310,49,1,1400,45,1,0 +2013,7,22,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1531,29,1,1645,21,1,0 +2013,7,25,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-4,0,1911,0,0,0 +2013,8,20,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,8,0,930,4,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1000,16,1,1245,17,1,0 +2013,5,7,2,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1258,11,0,1619,-28,0,0 +2013,5,14,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1706,-8,0,1753,-12,0,0 +2013,9,16,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-6,0,625,-3,0,0 +2013,6,30,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,-2,0,940,-10,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,-3,0,1423,2,0,0 +2013,5,29,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,0,0,1305,-3,0,0 +2013,8,7,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,830,-5,0,950,-20,0,0 +2013,9,20,5,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1525,10,0,1759,-3,0,0 +2013,5,1,3,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1100,-1,0,1450,1,0,0 +2013,9,14,6,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,730,-6,0,1034,-8,0,0 +2013,7,27,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,-3,0,2325,15,1,0 +2013,8,21,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,18,1,1805,18,1,0 +2013,8,18,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1216,-6,0,1349,-15,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,63,1,1426,56,1,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,756,28,1,1017,24,1,0 +2013,7,30,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,3,0,1710,-12,0,0 +2013,6,17,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,0,0,1025,38,1,0 +2013,10,25,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1245,-6,0,2043,-17,0,0 +2013,9,28,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-7,0,2155,-4,0,0 +2013,4,25,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1740,23,1,1805,4,0,0 +2013,6,20,4,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1505,-7,0,1749,-36,0,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,824,24,1,1330,24,1,0 +2013,5,18,6,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,6,0,1125,-11,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1220,2,0,1741,4,0,0 +2013,9,29,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2155,-2,0,2323,-10,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,848,-2,0,1130,-27,0,0 +2013,8,9,5,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1401,0,,1615,0,1,1 +2013,10,14,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1140,-7,0,1305,-17,0,0 +2013,7,8,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,-3,0,1214,-17,0,0 +2013,7,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1040,-1,0,1245,-1,0,0 +2013,9,8,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1111,-9,0,1250,-13,0,0 +2013,7,17,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,645,-4,0,755,-27,0,0 +2013,8,13,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-13,0,1644,-16,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-1,0,1904,-30,0,0 +2013,9,20,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,0,0,2322,-14,0,0 +2013,10,12,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1920,14,0,2300,12,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1500,0,0,2257,6,0,0 +2013,10,1,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,0,0,752,-5,0,0 +2013,10,1,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,0,0,1030,-12,0,0 +2013,5,13,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1936,-3,0,2140,-20,0,0 +2013,8,7,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-7,0,1415,-24,0,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,2,0,1100,-1,0,0 +2013,8,28,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1448,-5,0,1744,23,1,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1349,-5,0,1724,4,0,0 +2013,10,16,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-2,0,1329,3,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,12,0,2314,-23,0,0 +2013,7,6,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1932,8,0,2244,-9,0,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,730,-2,0,854,3,0,0 +2013,4,26,5,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,555,1,0,900,-4,0,0 +2013,9,20,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-6,0,1912,-16,0,0 +2013,7,9,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,12,0,705,19,1,0 +2013,7,10,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1930,0,,2100,0,1,1 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1734,-2,0,1905,-16,0,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2035,1,0,2257,33,1,0 +2013,6,10,1,EV,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1354,18,1,1708,56,1,0 +2013,7,5,5,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,803,2,0,1635,0,0,0 +2013,4,26,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,-1,0,1612,-4,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,-5,0,1235,-3,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,700,0,0,931,10,0,0 +2013,8,15,4,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1454,23,1,2304,23,1,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1824,0,0,2129,-43,0,0 +2013,8,5,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,645,-5,0,813,-8,0,0 +2013,5,18,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1814,-7,0,1939,-17,0,0 +2013,9,20,5,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1645,172,1,2015,175,1,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,8,0,2125,4,0,0 +2013,10,17,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-5,0,1635,-40,0,0 +2013,4,10,3,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1515,-2,0,1756,0,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,640,0,0,1140,-1,0,0 +2013,10,7,1,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1206,-2,0,1750,-21,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1805,6,0,2046,-7,0,0 +2013,10,16,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1635,33,1,1745,30,1,0 +2013,6,9,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,745,3,0,905,-7,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,9,0,2100,-4,0,0 +2013,8,30,5,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1656,5,0,1932,4,0,0 +2013,7,7,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,-1,0,2215,-9,0,0 +2013,6,29,6,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1655,38,1,1815,52,1,0 +2013,4,24,3,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1225,17,1,1330,31,1,0 +2013,5,5,7,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1620,-5,0,1801,-7,0,0 +2013,5,7,2,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1729,-9,0,2044,-28,0,0 +2013,4,13,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1130,-4,0,1305,-13,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1525,0,0,2055,-15,0,0 +2013,10,28,1,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1154,12,0,1340,13,0,0 +2013,9,29,7,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1732,14,0,2029,7,0,0 +2013,4,17,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1740,47,1,1845,42,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1502,3,0,1654,7,0,0 +2013,9,14,6,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1304,4,0,2131,-8,0,0 +2013,4,12,5,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1731,-4,0,1913,1,0,0 +2013,10,22,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1231,-7,0,1446,-12,0,0 +2013,5,23,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,-6,0,930,2,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1440,9,0,1617,20,1,0 +2013,10,27,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,3,0,1400,7,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1040,14,0,1230,6,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1825,25,1,2005,48,1,0 +2013,7,3,3,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,924,10,0,1106,18,1,0 +2013,10,11,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-1,0,1918,10,0,0 +2013,8,13,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1320,79,1,1435,76,1,0 +2013,10,10,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,735,-8,0,926,4,0,0 +2013,10,1,2,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-9,0,1130,5,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,655,-1,0,1025,-5,0,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,-2,0,1055,2,0,0 +2013,5,26,7,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1246,-12,0,1709,-16,0,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1545,-4,0,1701,-20,0,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,14635,Southwest Florida International,Fort Myers,FL,1450,-2,0,2022,-12,0,0 +2013,10,9,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,905,0,0,1035,-17,0,0 +2013,4,16,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,0,0,2310,1,0,0 +2013,7,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1116,-5,0,1213,-3,0,0 +2013,4,25,4,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1238,-5,0,1525,3,0,0 +2013,4,10,3,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1409,2,0,1530,-8,0,0 +2013,4,12,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,-14,0,928,-13,0,0 +2013,7,4,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,-9,0,1010,-16,0,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1924,6,0,2157,-2,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,840,7,0,1030,-9,0,0 +2013,7,4,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-1,0,1335,12,0,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2010,16,1,2254,-4,0,0 +2013,10,28,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1656,212,1,1810,196,1,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,2040,1,0,2355,-13,0,0 +2013,7,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,700,-2,0,905,-10,0,0 +2013,8,27,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2155,-12,0,2310,-13,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1335,19,1,1743,18,1,0 +2013,5,27,1,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,-9,0,1915,-12,0,0 +2013,4,20,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-5,0,1155,-32,0,0 +2013,6,26,3,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1435,2,0,1635,-11,0,0 +2013,9,20,5,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-4,0,1959,-16,0,0 +2013,10,3,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,550,-4,0,758,-6,0,0 +2013,10,6,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-5,0,1931,34,1,0 +2013,10,29,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1149,-1,0,1305,-10,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1725,15,1,2240,7,0,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1640,0,0,2020,-17,0,0 +2013,7,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1517,67,1,1655,67,1,0 +2013,9,20,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-1,0,1725,1,0,0 +2013,5,12,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1400,-5,0,1515,-11,0,0 +2013,5,16,4,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,9,0,2100,15,1,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1918,16,1,2202,4,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,-2,0,2055,-9,0,0 +2013,5,4,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,750,-1,0,855,-12,0,0 +2013,9,18,3,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1435,-3,0,2243,-7,0,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,759,-3,0,1107,-4,0,0 +2013,9,6,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2151,21,1,2313,16,1,0 +2013,10,19,6,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,805,-8,0,1114,-4,0,0 +2013,8,18,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1330,-2,0,1500,-14,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1540,2,0,1730,-9,0,0 +2013,10,11,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1305,56,1,1610,67,1,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,49,1,2251,30,1,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,0,0,1140,-27,0,0 +2013,9,18,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1034,-1,0,1820,-4,0,0 +2013,8,19,1,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2154,4,0,115,-6,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,900,-3,0,1016,-14,0,0 +2013,4,25,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1135,-3,0,1409,-11,0,0 +2013,4,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,819,-10,0,939,-15,0,0 +2013,9,2,1,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1105,-13,0,1428,-12,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1256,-2,0,1425,8,0,0 +2013,5,20,1,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1435,-1,0,1615,-18,0,0 +2013,5,3,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,12,0,1640,26,1,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1945,5,0,2105,-15,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,740,5,0,1150,0,0,0 +2013,9,22,7,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1520,286,1,1735,275,1,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,1,0,1924,-29,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,920,-2,0,1015,-10,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1700,70,1,1927,105,1,0 +2013,8,21,3,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1940,42,1,2255,22,1,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,11,0,2045,-4,0,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,2,0,1225,-5,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1148,3,0,1425,5,0,0 +2013,4,30,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1625,-1,0,1720,-7,0,0 +2013,4,21,7,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,16,1,1655,8,0,0 +2013,8,4,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1237,28,1,1359,25,1,0 +2013,9,3,2,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,900,-4,0,1044,-8,0,0 +2013,5,3,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1301,16,1,1412,9,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,11,0,1625,17,1,0 +2013,7,2,2,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1235,15,1,1540,-2,0,0 +2013,4,14,7,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2120,-8,0,550,7,0,0 +2013,10,8,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-4,0,814,-6,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1620,1,0,1910,13,0,0 +2013,4,3,3,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1730,24,1,1850,20,1,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1010,0,0,1211,-10,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,0,0,2340,-16,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2301,1,0,2326,-7,0,0 +2013,8,4,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2020,0,0,2145,-11,0,0 +2013,4,2,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,92,1,1835,96,1,0 +2013,4,13,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1335,48,1,1626,36,1,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,925,-3,0,1105,25,1,0 +2013,8,7,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-2,0,910,-2,0,0 +2013,7,5,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2128,-8,0,2200,-4,0,0 +2013,7,26,5,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,-2,0,2115,1,0,0 +2013,7,3,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1035,31,1,1105,20,1,0 +2013,10,22,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1855,5,0,2020,-6,0,0 +2013,9,2,1,UA,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1333,-12,0,1502,-20,0,0 +2013,10,31,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,0,0,1725,-11,0,0 +2013,8,1,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,-6,0,1600,-2,0,0 +2013,6,5,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1305,10,0,1455,3,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1305,5,0,1715,6,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-4,0,1248,-14,0,0 +2013,6,23,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1215,-1,0,1333,-1,0,0 +2013,5,24,5,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-3,0,1550,-8,0,0 +2013,9,14,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,1517,2,0,0 +2013,8,2,5,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,-7,0,742,-14,0,0 +2013,8,30,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1757,-8,0,1845,-13,0,0 +2013,4,30,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,17,1,805,17,1,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1645,-2,0,1709,-3,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2200,54,1,2258,39,1,0 +2013,10,20,7,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,800,-4,0,920,-10,0,0 +2013,5,1,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,-7,0,2013,0,0,0 +2013,7,15,1,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-5,0,902,8,0,0 +2013,6,24,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1010,-8,0,1320,-21,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,815,-1,0,1114,-13,0,0 +2013,5,30,4,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,0,0,1918,3,0,0 +2013,6,9,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-5,0,910,-13,0,0 +2013,4,18,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-6,0,1759,4,0,0 +2013,9,19,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,35,-11,0,816,-21,0,0 +2013,8,11,7,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1120,0,0,1302,26,1,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1910,-1,0,2030,1,0,0 +2013,5,1,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1550,-6,0,1907,3,0,0 +2013,7,27,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,1655,0,0,1900,-5,0,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1045,2,0,1210,5,0,0 +2013,6,28,5,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1420,-3,0,1551,18,1,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,0,0,1301,-5,0,0 +2013,7,11,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2330,-1,0,516,-17,0,0 +2013,7,2,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1340,1,0,1425,7,0,0 +2013,9,25,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-6,0,915,-27,0,0 +2013,10,7,1,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1739,54,1,2029,59,1,0 +2013,6,20,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2120,9,0,2215,5,0,0 +2013,10,30,3,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,2,0,2020,-1,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1600,-2,0,1905,20,1,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1905,16,1,2040,8,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1311,-2,0,1451,-8,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1739,0,0,1939,-12,0,0 +2013,6,28,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,2,0,1152,-5,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,3,0,1405,-6,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1750,7,0,1950,1,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2040,-2,0,2221,-5,0,0 +2013,6,21,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1421,0,0,1659,2,0,0 +2013,5,9,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-2,0,1105,-6,0,0 +2013,8,14,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-7,0,1644,-18,0,0 +2013,5,7,2,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,-7,0,949,-27,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,5,0,1855,-5,0,0 +2013,5,24,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-3,0,1705,4,0,0 +2013,5,17,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1541,-4,0,1653,13,0,0 +2013,6,19,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1235,-7,0,1405,-18,0,0 +2013,6,13,4,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-6,0,1806,-23,0,0 +2013,7,7,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1109,3,0,1224,-5,0,0 +2013,9,25,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1830,4,0,2010,1,0,0 +2013,4,17,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,16,1,1155,75,1,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,41,1,2222,41,1,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1725,3,0,2005,13,0,0 +2013,4,19,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,32,1,1447,45,1,0 +2013,5,21,2,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,35,1,1950,32,1,0 +2013,9,24,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2020,3,0,2140,6,0,0 +2013,7,30,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-6,0,955,-13,0,0 +2013,7,17,3,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1635,-1,0,1847,-16,0,0 +2013,4,19,5,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1255,-4,0,1546,19,1,0 +2013,4,25,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1106,-8,0,1209,-9,0,0 +2013,7,14,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1932,85,1,2244,72,1,0 +2013,8,28,3,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1643,80,1,1907,51,1,0 +2013,7,27,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,830,8,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2005,1,0,2213,0,0,0 +2013,9,24,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,0,0,1530,-11,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-6,0,1900,-9,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,750,5,0,924,4,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,856,-4,0,1120,-5,0,0 +2013,10,4,5,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1433,-1,0,2222,-4,0,0 +2013,9,21,6,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1730,-4,0,2253,-5,0,0 +2013,10,9,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1145,3,0,1350,-6,0,0 +2013,7,24,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1200,-1,0,2015,-2,0,0 +2013,8,2,5,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1401,-6,0,1615,11,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1444,43,1,1844,25,1,0 +2013,6,13,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,1009,4,0,0 +2013,5,1,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-2,0,2035,7,0,0 +2013,7,14,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-3,0,1424,-18,0,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1525,6,0,1635,3,0,0 +2013,5,24,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2035,-2,0,2153,7,0,0 +2013,5,27,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2145,29,1,32,31,1,0 +2013,4,12,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1503,-2,0,1530,-4,0,0 +2013,5,15,3,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,-6,0,1940,-5,0,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,18,1,2255,20,1,0 +2013,7,20,6,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,40,1,1740,43,1,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1810,46,1,1915,46,1,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-5,0,1028,-22,0,0 +2013,10,31,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-8,0,1005,-9,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,912,3,0,1138,-15,0,0 +2013,5,21,2,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1450,0,0,1745,-5,0,0 +2013,10,27,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,850,-2,0,910,-2,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,910,1,0,1015,2,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-7,0,1310,-2,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1506,4,0,1743,8,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,19,1,1905,-16,0,0 +2013,6,24,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,0,0,1335,-5,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1525,5,0,1655,-7,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,69,1,2320,57,1,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,118,1,1319,154,1,0 +2013,7,7,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1339,0,,1522,0,1,1 +2013,10,6,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-10,0,1510,-3,0,0 +2013,8,15,4,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1348,-10,0,1604,-14,0,0 +2013,8,24,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,940,-4,0,1140,-20,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,930,11,0,1040,-1,0,0 +2013,7,21,7,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1310,34,1,1441,37,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1643,0,0,1818,-18,0,0 +2013,5,2,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1849,22,1,2120,5,0,0 +2013,7,13,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2155,-5,0,2209,-7,0,0 +2013,9,12,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,-10,0,2259,-11,0,0 +2013,6,16,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1921,9,0,2007,29,1,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1922,-4,0,2129,-37,0,0 +2013,7,10,3,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1612,27,1,1848,24,1,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1325,-6,0,1711,-25,0,0 +2013,5,13,1,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1454,77,1,1749,66,1,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1659,8,0,2005,-10,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,19,1,2332,10,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2004,-6,0,2302,-14,0,0 +2013,9,11,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1740,-4,0,2150,-5,0,0 +2013,4,24,3,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,-7,0,2249,-23,0,0 +2013,10,30,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1611,-1,0,1915,-33,0,0 +2013,6,15,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,-1,0,1820,-3,0,0 +2013,4,10,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,173,1,1937,208,1,0 +2013,9,29,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1420,-4,0,2200,-11,0,0 +2013,10,22,2,WN,10693,Nashville International,Nashville,TN,14122,Pittsburgh International,Pittsburgh,PA,1730,0,0,1955,-10,0,0 +2013,7,1,1,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1725,123,1,2015,108,1,0 +2013,9,28,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1705,-8,0,2225,-33,0,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1248,-3,0,1355,-9,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-4,0,1920,-11,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,-1,0,2327,-5,0,0 +2013,7,30,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,8,0,1135,-5,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1205,4,0,1354,1,0,0 +2013,8,20,2,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,-4,0,1849,-7,0,0 +2013,4,9,2,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1433,14,0,1544,12,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,-3,0,1437,-5,0,0 +2013,4,9,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-4,0,1523,4,0,0 +2013,10,28,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,1,0,1432,-18,0,0 +2013,5,31,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-1,0,1412,-12,0,0 +2013,8,4,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1630,11,0,2050,25,1,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,931,1,0,1205,-15,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1355,20,1,1728,4,0,0 +2013,7,1,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1950,-1,0,2020,-3,0,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1835,7,0,2100,5,0,0 +2013,10,1,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-1,0,1452,-11,0,0 +2013,8,6,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2130,4,0,2245,10,0,0 +2013,4,9,2,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,825,-2,0,1227,-5,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,930,-7,0,1320,-29,0,0 +2013,4,8,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,718,8,0,915,-5,0,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1030,14,0,1355,28,1,0 +2013,4,3,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1000,31,1,1130,11,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,840,6,0,1230,-10,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1829,29,1,2119,1,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1755,1,0,2131,11,0,0 +2013,7,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1040,-7,0,1059,-17,0,0 +2013,4,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,1248,-13,0,0 +2013,5,24,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-1,0,1105,6,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1858,1,0,2213,0,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2005,-1,0,2225,6,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1051,-6,0,1137,-19,0,0 +2013,5,31,5,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2159,67,1,2311,54,1,0 +2013,8,13,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2035,31,1,511,2,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-2,0,1345,14,0,0 +2013,7,1,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,14,0,1822,4,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1740,8,0,1955,6,0,0 +2013,6,1,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,10,0,805,9,0,0 +2013,10,7,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1704,57,1,1958,49,1,0 +2013,7,9,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1040,-1,0,1135,-3,0,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1229,-2,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1906,6,0,2111,-12,0,0 +2013,7,26,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,2,0,1448,-4,0,0 +2013,7,9,2,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1937,-8,0,2208,-14,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-3,0,1634,4,0,0 +2013,6,12,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1111,6,0,1454,2,0,0 +2013,7,28,7,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1805,59,1,2014,71,1,0 +2013,9,3,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1615,-6,0,2000,-9,0,0 +2013,4,12,5,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-8,0,1858,-1,0,0 +2013,4,11,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,612,5,0,940,1,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,0,0,2117,-3,0,0 +2013,10,14,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,0,0,905,-7,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,20,1,2148,17,1,0 +2013,6,18,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1350,-6,0,1641,-7,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2255,-1,0,456,5,0,0 +2013,9,2,1,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,0,,1600,0,1,1 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1640,-4,0,1824,-7,0,0 +2013,6,22,6,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1230,-4,0,1441,-10,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-3,0,1634,-8,0,0 +2013,7,29,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-1,0,1941,-19,0,0 +2013,5,6,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1051,-8,0,1217,-25,0,0 +2013,4,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,600,-1,0,705,-17,0,0 +2013,7,16,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-4,0,1115,-18,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,14,0,2310,25,1,0 +2013,8,3,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,9,0,1630,23,1,0 +2013,9,26,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,635,-3,0,750,4,0,0 +2013,4,17,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,600,-4,0,814,-19,0,0 +2013,10,18,5,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,908,-1,0,1048,-11,0,0 +2013,8,30,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,10,0,2015,3,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2055,10,0,2305,14,0,0 +2013,5,21,2,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1608,53,1,2053,52,1,0 +2013,4,24,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1106,-4,0,1234,-14,0,0 +2013,6,10,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,21,1,2055,14,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,721,-5,0,1143,-3,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1730,-1,0,1842,-7,0,0 +2013,8,27,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1845,-10,0,2210,-41,0,0 +2013,4,10,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2010,24,1,2125,17,1,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1359,-1,0,1523,4,0,0 +2013,4,29,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-4,0,2040,18,1,0 +2013,8,25,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,20,1,2130,18,1,0 +2013,7,7,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-6,0,1918,-5,0,0 +2013,8,5,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1546,-5,0,1648,-19,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,-7,0,1028,-4,0,0 +2013,9,22,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-13,0,915,-12,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2050,18,1,15,8,0,0 +2013,4,2,2,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,1,0,1815,2,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1631,0,0,1921,-24,0,0 +2013,9,27,5,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1500,-2,0,1758,-33,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,31,1,1106,29,1,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2102,47,1,2257,69,1,0 +2013,9,19,4,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-8,0,913,-10,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1920,23,1,2040,14,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,820,0,0,1055,-1,0,0 +2013,9,20,5,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,-7,0,2000,4,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1025,1,0,1310,5,0,0 +2013,10,17,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1440,38,1,1555,28,1,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,-4,0,1009,12,0,0 +2013,8,8,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,3,0,2135,-5,0,0 +2013,7,1,1,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-6,0,735,-2,0,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1702,-8,0,1741,23,1,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,1,0,1556,4,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,11,0,1915,9,0,0 +2013,9,27,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-6,0,1500,-15,0,0 +2013,9,2,1,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,55,1,1840,47,1,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,3,0,1144,4,0,0 +2013,7,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1917,-3,0,2238,8,0,0 +2013,4,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2050,-5,0,2325,-13,0,0 +2013,5,21,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1315,-4,0,1529,-14,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,19,1,1720,34,1,0 +2013,10,8,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-5,0,1858,3,0,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1325,-4,0,1520,-4,0,0 +2013,6,22,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-3,0,1758,-10,0,0 +2013,10,13,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-2,0,925,14,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,950,-1,0,1221,-11,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1325,19,1,1445,17,1,0 +2013,9,2,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,838,-17,0,0 +2013,6,1,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,176,1,1415,162,1,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,910,-2,0,1155,6,0,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1200,3,0,1305,-2,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1040,3,0,1740,-15,0,0 +2013,10,4,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-3,0,1405,25,1,0 +2013,5,4,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1705,15,1,1905,8,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2115,67,1,2223,50,1,0 +2013,6,25,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-6,0,2005,-11,0,0 +2013,8,24,6,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-8,0,945,-27,0,0 +2013,10,5,6,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,745,-5,0,1028,5,0,0 +2013,4,13,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,620,0,0,740,-3,0,0 +2013,6,2,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-4,0,915,-29,0,0 +2013,8,8,4,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1636,111,1,2027,89,1,0 +2013,5,15,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1710,-6,0,2000,-28,0,0 +2013,8,11,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,140,1,2210,142,1,0 +2013,7,24,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,2,0,910,1,0,0 +2013,4,25,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2137,-7,0,559,-52,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,8,0,1805,0,0,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2040,96,1,2145,88,1,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1601,-1,0,2349,-17,0,0 +2013,4,7,7,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1640,-2,0,2154,5,0,0 +2013,7,26,5,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1745,-4,0,1856,27,1,0 +2013,9,10,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1840,22,1,2125,15,1,0 +2013,4,19,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1923,10,0,2135,36,1,0 +2013,9,24,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,44,-4,0,555,-23,0,0 +2013,9,22,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1635,-4,0,1900,-5,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,925,77,1,1425,77,1,0 +2013,8,15,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1710,-1,0,2015,-16,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,735,0,0,941,1,0,0 +2013,5,2,4,9E,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1020,-7,0,1216,-34,0,0 +2013,6,3,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1405,23,1,1510,15,1,0 +2013,5,19,7,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,905,-3,0,1045,-16,0,0 +2013,10,8,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-10,0,1554,-8,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1256,1,0,1659,-2,0,0 +2013,8,23,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-3,0,1400,-23,0,0 +2013,6,9,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1335,6,0,1500,-2,0,0 +2013,6,18,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1901,17,1,1949,16,1,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,950,3,0,1205,-2,0,0 +2013,4,20,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,705,12,0,1008,-6,0,0 +2013,5,14,2,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1840,-4,0,1939,-2,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,625,2,0,1120,6,0,0 +2013,6,8,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1755,-4,0,1924,-19,0,0 +2013,5,21,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-3,0,1417,-6,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,0,0,828,27,1,0 +2013,6,13,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-2,0,1202,23,1,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1529,39,1,2020,2,0,0 +2013,7,11,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,6,0,1210,11,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1050,0,0,1155,-5,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1614,4,0,1845,-1,0,0 +2013,8,14,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,655,-3,0,805,-10,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1425,8,0,1655,9,0,0 +2013,6,22,6,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-2,0,920,-12,0,0 +2013,6,18,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-7,0,2035,-7,0,0 +2013,4,21,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1200,22,1,1335,23,1,0 +2013,9,17,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1610,-1,0,1817,-4,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1711,-6,0,0 +2013,9,28,6,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,3,0,1645,6,0,0 +2013,4,29,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,9,0,1011,13,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-2,0,1310,-12,0,0 +2013,4,19,5,9E,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-8,0,1205,-17,0,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1100,0,0,1315,15,1,0 +2013,8,6,2,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1045,9,0,1130,7,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1035,-5,0,1335,-10,0,0 +2013,6,15,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,-5,0,937,-5,0,0 +2013,7,24,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1502,72,1,1831,66,1,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1932,2,0,2112,-20,0,0 +2013,6,18,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,1,0,1925,-7,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1130,86,1,1345,100,1,0 +2013,8,8,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1205,1,0,1320,-4,0,0 +2013,5,3,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,0,0,915,18,1,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,835,0,,1005,0,1,1 +2013,10,5,6,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,9,0,1335,0,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,1,0,1430,-17,0,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2235,5,0,2359,-1,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1400,40,1,1625,49,1,0 +2013,8,7,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2130,53,1,2247,43,1,0 +2013,5,19,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,815,0,0,1155,-11,0,0 +2013,6,25,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,9,0,1155,10,0,0 +2013,9,3,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-4,0,1605,-4,0,0 +2013,4,16,2,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,-1,0,1349,-1,0,0 +2013,6,4,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,-3,0,2130,-5,0,0 +2013,10,5,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1519,-19,0,0 +2013,6,22,6,9E,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,-10,0,1222,-22,0,0 +2013,10,11,5,DL,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,20,1,912,-10,0,0 +2013,10,30,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1625,-5,0,1905,0,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,840,-1,0,1023,-17,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-8,0,1319,6,0,0 +2013,9,16,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1840,37,1,1957,38,1,0 +2013,6,6,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1935,1,0,2100,-8,0,0 +2013,8,27,2,OO,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-8,0,907,7,0,0 +2013,8,27,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1045,-7,0,1150,-8,0,0 +2013,5,3,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-4,0,1023,21,1,0 +2013,8,1,4,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,-2,0,1740,-19,0,0 +2013,10,27,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,900,-2,0,1010,-12,0,0 +2013,8,14,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,-1,0,911,-11,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,940,-2,0,1550,33,1,0 +2013,7,5,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,6,0,1130,4,0,0 +2013,9,1,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,730,-14,0,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,2,0,1600,-3,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,111,1,2323,102,1,0 +2013,6,9,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,837,-6,0,1031,-14,0,0 +2013,10,24,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2009,-2,0,2208,-6,0,0 +2013,4,9,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1741,-24,0,0 +2013,4,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1525,10,0,1650,6,0,0 +2013,7,25,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1945,1,0,2055,-2,0,0 +2013,9,4,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1600,0,0,1630,-6,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1745,7,0,2250,-1,0,0 +2013,10,18,5,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-8,0,1124,-7,0,0 +2013,8,26,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2040,-2,0,2145,-11,0,0 +2013,6,2,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-4,0,835,3,0,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,4,0,2354,71,1,0 +2013,7,7,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1229,9,0,1405,-1,0,0 +2013,8,13,2,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-6,0,852,-14,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,4,0,1410,6,0,0 +2013,6,7,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1050,-2,0,1145,-3,0,0 +2013,9,18,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-6,0,1905,-8,0,0 +2013,7,31,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,655,3,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,4,0,2257,-12,0,0 +2013,10,28,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,1,0,1530,-3,0,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1448,16,1,1741,27,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,17,1,1350,17,1,0 +2013,10,24,4,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1843,23,1,2034,4,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,2125,20,1,5,5,0,0 +2013,10,3,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2341,-6,0,735,-20,0,0 +2013,5,9,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,0,,1255,0,1,1 +2013,8,9,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,106,1,2047,112,1,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,-4,0,1628,14,0,0 +2013,4,29,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1110,2,0,1300,1,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,1,0,825,9,0,0 +2013,5,23,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1522,45,1,1811,34,1,0 +2013,8,21,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,828,-1,0,1130,2,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,28,1,2315,29,1,0 +2013,10,13,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,12,0,1537,20,1,0 +2013,6,11,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1735,9,0,2251,5,0,0 +2013,7,14,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1020,4,0,1228,9,0,0 +2013,8,2,5,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-1,0,1355,-7,0,0 +2013,5,13,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,953,-1,0,1517,-1,0,0 +2013,7,5,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,650,-3,0,820,-10,0,0 +2013,10,10,4,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1729,133,1,1937,131,1,0 +2013,5,23,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-5,0,627,4,0,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1300,-4,0,1820,-20,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1755,-8,0,2013,-7,0,0 +2013,6,13,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1512,13,0,1618,14,0,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1415,-1,0,1530,8,0,0 +2013,4,26,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-1,0,1810,0,0,0 +2013,9,6,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,845,0,0,1040,4,0,0 +2013,6,20,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,0,0,1440,-11,0,0 +2013,5,30,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,-1,0,2035,-2,0,0 +2013,7,13,6,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1300,64,1,1505,43,1,0 +2013,9,9,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,-5,0,1144,-13,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,-2,0,45,-12,0,0 +2013,6,10,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1735,22,1,1925,7,0,0 +2013,8,20,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1905,8,0,1950,1,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1437,65,1,2024,49,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1410,23,1,1745,35,1,0 +2013,4,10,3,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1748,0,,2000,0,1,1 +2013,4,30,2,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1720,-1,0,1920,-15,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,6,0,1600,-1,0,0 +2013,5,19,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,24,1,2128,4,0,0 +2013,9,2,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-7,0,1757,-18,0,0 +2013,4,7,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1650,1,0,1755,-12,0,0 +2013,9,13,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1558,-6,0,0 +2013,6,8,6,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1456,2,0,1711,-2,0,0 +2013,8,1,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,845,-5,0,1257,-13,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-5,0,1441,-20,0,0 +2013,6,4,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2317,-5,0,731,-12,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1355,-7,0,1521,2,0,0 +2013,6,14,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-1,0,1806,-20,0,0 +2013,7,19,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,-2,0,2108,6,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,950,2,0,1055,-4,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-4,0,1104,6,0,0 +2013,9,14,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1041,-2,0,1436,-8,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1815,30,1,2000,31,1,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1710,-1,0,1752,-20,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1555,-1,0,1724,1,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,31,1,1735,96,1,0 +2013,5,24,5,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1715,-4,0,2045,-27,0,0 +2013,9,11,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,600,-4,0,840,-6,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2134,57,1,2309,42,1,0 +2013,5,15,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1439,105,1,1600,95,1,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,1,0,1127,-19,0,0 +2013,8,4,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-3,0,1855,-12,0,0 +2013,10,20,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,-3,0,2050,-5,0,0 +2013,9,30,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1725,-2,0,1855,-13,0,0 +2013,10,16,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1505,20,1,1913,21,1,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-1,0,1535,-8,0,0 +2013,7,30,2,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-4,0,1535,-25,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,0,0,1027,-16,0,0 +2013,9,27,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1728,5,0,2026,-3,0,0 +2013,6,6,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,634,13,0,930,-2,0,0 +2013,9,6,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,-4,0,1852,-13,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,35,1,1110,25,1,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1745,-2,0,1855,-5,0,0 +2013,10,14,1,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-4,0,820,-13,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1010,-6,0,1302,-1,0,0 +2013,10,28,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-4,0,1110,-2,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1350,5,0,1528,13,0,0 +2013,6,10,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,10,0,1119,11,0,0 +2013,10,8,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-3,0,1916,-5,0,0 +2013,4,28,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,833,-3,0,1407,-11,0,0 +2013,10,24,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1957,-3,0,2125,-9,0,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2009,-3,0,2243,-22,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1455,20,1,1601,22,1,0 +2013,8,12,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1735,49,1,1855,45,1,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-2,0,1416,-17,0,0 +2013,10,2,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1030,-3,0,1320,-10,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1255,5,0,1515,13,0,0 +2013,6,1,6,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1135,26,1,1621,28,1,0 +2013,8,11,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1110,-10,0,1317,-13,0,0 +2013,4,4,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1106,-4,0,1204,1,0,0 +2013,6,14,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1120,1,0,2000,-10,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-4,0,1014,-3,0,0 +2013,8,11,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,931,-21,0,0 +2013,10,2,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,750,-4,0,929,-17,0,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2015,-3,0,2320,-20,0,0 +2013,7,12,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-3,0,1748,-13,0,0 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,5,0,1127,-1,0,0 +2013,6,28,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-5,0,1305,-16,0,0 +2013,4,9,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-1,0,1650,-16,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2145,-4,0,2355,-20,0,0 +2013,7,8,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1948,172,1,2125,204,1,0 +2013,10,11,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-4,0,1556,-16,0,0 +2013,10,21,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,1,0,945,-11,0,0 +2013,5,17,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-7,0,1102,-27,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,859,0,0,1120,-17,0,0 +2013,6,30,7,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,715,-4,0,1045,-6,0,0 +2013,9,10,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-3,0,2000,-19,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2059,-6,0,2250,-5,0,0 +2013,9,17,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,-2,0,755,-9,0,0 +2013,9,7,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1355,-4,0,1435,-11,0,0 +2013,7,22,1,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,1155,1,0,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-5,0,1807,-1,0,0 +2013,9,24,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2347,-2,0,548,-19,0,0 +2013,8,8,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,802,1,0,855,8,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-4,0,1026,-1,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,37,1,2239,27,1,0 +2013,5,6,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,3,0,1315,12,0,0 +2013,6,15,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,1,0,912,-2,0,0 +2013,5,13,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,-19,0,1800,-22,0,0 +2013,7,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-6,0,1931,-9,0,0 +2013,7,11,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-7,0,1404,-21,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,810,1,0,1025,2,0,0 +2013,4,25,4,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-3,0,1029,25,1,0 +2013,7,8,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,600,-12,0,814,3,0,0 +2013,8,20,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1326,-5,0,2130,0,0,0 +2013,6,19,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,-2,0,1046,-5,0,0 +2013,7,15,1,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1830,9,0,2125,-5,0,0 +2013,9,18,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1200,-3,0,1328,-4,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1230,-5,0,1410,-14,0,0 +2013,7,28,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1745,-7,0,1910,-6,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1000,-7,0,1410,-15,0,0 +2013,6,6,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,835,-9,0,1012,-6,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,2,0,1155,-19,0,0 +2013,6,2,7,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1742,-4,0,2014,-22,0,0 +2013,7,27,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,752,-12,0,0 +2013,7,3,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-8,0,2117,2,0,0 +2013,7,26,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1105,15,1,1110,9,0,0 +2013,5,19,7,EV,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,-1,0,2100,-6,0,0 +2013,7,21,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2124,46,1,15,30,1,0 +2013,10,24,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1623,-3,0,1914,2,0,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1422,34,1,2159,5,0,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,640,-2,0,815,2,0,0 +2013,9,19,4,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2200,9,0,2321,-10,0,0 +2013,10,25,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,5,0,1140,11,0,0 +2013,10,24,4,9E,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1550,-7,0,1816,-11,0,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1320,-6,0,2155,1,0,0 +2013,5,23,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,1,0,920,-3,0,0 +2013,6,29,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1645,8,0,1940,-8,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,730,18,1,950,15,1,0 +2013,5,27,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1735,2,0,2105,-26,0,0 +2013,5,13,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1459,1,0,1627,3,0,0 +2013,10,24,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,28,1,2159,22,1,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2040,7,0,2355,8,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1820,-3,0,2014,-19,0,0 +2013,9,15,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1530,64,1,2135,54,1,0 +2013,10,17,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1555,-3,0,1730,-11,0,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1403,-5,0,1553,-13,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2000,2,0,20,-1,0,0 +2013,10,21,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1228,-2,0,1417,-8,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1240,18,1,1435,27,1,0 +2013,9,14,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1115,-5,0,1405,-18,0,0 +2013,10,30,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,89,1,2027,84,1,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1042,-3,0,1618,-9,0,0 +2013,7,24,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-5,0,2030,-21,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1315,13,0,1800,5,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,-1,0,1642,-19,0,0 +2013,10,30,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,31,1,1939,18,1,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1950,-3,0,2135,4,0,0 +2013,9,30,1,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1130,-8,0,1354,-10,0,0 +2013,8,30,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-2,0,1904,-5,0,0 +2013,6,18,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,810,-3,0,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,805,-2,0,905,11,0,0 +2013,9,28,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-4,0,1710,-28,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-6,0,217,-17,0,0 +2013,8,26,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,644,-5,0,943,-10,0,0 +2013,8,3,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1900,-5,0,2005,30,1,0 +2013,6,15,6,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,720,0,0,907,-3,0,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,-2,0,2359,-16,0,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,0,0,1635,12,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,-4,0,1608,-5,0,0 +2013,6,9,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1310,-3,0,1525,-8,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,940,0,0,1605,0,0,0 +2013,4,5,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,45,1,1924,27,1,0 +2013,6,20,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,800,0,0,1040,-7,0,0 +2013,4,2,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,606,-3,0,1426,-2,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,40,1,1430,33,1,0 +2013,8,27,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,0,0,1415,0,0,0 +2013,8,9,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-5,0,1615,-6,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,715,0,0,830,5,0,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1940,6,0,2100,-7,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2211,-2,0,2312,2,0,0 +2013,4,14,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-11,0,2310,-6,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,73,1,1711,90,1,0 +2013,4,9,2,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1050,0,0,1625,-13,0,0 +2013,5,2,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-6,0,915,-31,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,-1,0,1725,43,1,0 +2013,7,6,6,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1354,-4,0,1944,-19,0,0 +2013,7,31,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1507,27,1,2046,38,1,0 +2013,6,22,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,15,1,1324,2,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,-8,0,905,1,0,0 +2013,6,23,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,32,1,2113,25,1,0 +2013,7,10,3,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-5,0,1620,40,1,0 +2013,6,12,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-3,0,1319,-4,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,-1,0,2325,-14,0,0 +2013,9,3,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,804,-2,0,859,-14,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-5,0,731,-10,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,705,12,0,1047,16,1,0 +2013,6,11,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1935,21,1,2040,26,1,0 +2013,8,22,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,12,0,1520,14,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2015,-6,0,2229,1,0,0 +2013,6,1,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,-6,0,2017,-16,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,-4,0,2145,1,0,0 +2013,10,30,3,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,3,0,2005,0,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2020,-5,0,2305,1,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1845,-3,0,2030,-10,0,0 +2013,7,25,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1702,46,1,1829,31,1,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,-3,0,2246,-12,0,0 +2013,10,7,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,925,-1,0,1115,-9,0,0 +2013,8,24,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1935,-8,0,1955,-17,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,8,0,1332,6,0,0 +2013,4,4,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,640,-5,0,938,-22,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1055,9,0,1215,6,0,0 +2013,6,12,3,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1655,57,1,2005,51,1,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1022,219,1,1459,207,1,0 +2013,8,7,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,-1,0,2122,-7,0,0 +2013,10,16,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1251,0,0,1501,-2,0,0 +2013,10,21,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,4,0,1230,8,0,0 +2013,7,22,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,4,0,2115,24,1,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2045,5,0,2313,7,0,0 +2013,9,15,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,911,-8,0,1119,-10,0,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,755,26,1,1055,-1,0,0 +2013,6,24,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,3,0,900,-3,0,0 +2013,4,19,5,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2049,6,0,510,10,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-4,0,1029,1,0,0 +2013,9,9,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,10,0,2030,11,0,0 +2013,6,23,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1510,20,1,1700,33,1,0 +2013,8,3,6,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1119,2,0,1241,6,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1120,5,0,1327,27,1,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1225,22,1,1350,6,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,915,-4,0,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,-3,0,2335,-14,0,0 +2013,6,26,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,810,0,,835,0,1,1 +2013,10,19,6,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1605,-2,0,1918,-17,0,0 +2013,8,19,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,635,-5,0,1000,-21,0,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1211,-6,0,1405,5,0,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1105,10,0,1708,22,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,-1,0,1505,-11,0,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1320,-1,0,1840,6,0,0 +2013,4,5,5,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,-6,0,1746,94,1,0 +2013,4,9,2,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1610,31,1,1744,2,0,0 +2013,7,31,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-12,0,1910,-21,0,0 +2013,7,7,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,855,51,1,1020,47,1,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,9,0,1800,3,0,0 +2013,5,11,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1935,-1,0,2055,-12,0,0 +2013,7,29,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1301,37,1,1419,37,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2120,50,1,2325,52,1,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,1,0,1641,17,1,0 +2013,9,7,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1647,0,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1402,7,0,1732,-5,0,0 +2013,7,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2125,3,0,2345,9,0,0 +2013,5,12,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1135,-6,0,1156,-10,0,0 +2013,10,20,7,OO,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-1,0,1030,-9,0,0 +2013,8,30,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1026,59,1,1122,71,1,0 +2013,10,3,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,855,-1,0,1130,26,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-2,0,1442,-21,0,0 +2013,8,16,5,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,9,0,2345,25,1,0 +2013,9,2,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1118,28,1,1510,24,1,0 +2013,9,2,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1056,2,0,1100,7,0,0 +2013,9,5,4,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,-3,0,1245,-29,0,0 +2013,7,22,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,0,0,2220,-9,0,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,17,1,1647,26,1,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,950,-4,0,1215,-20,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,929,-10,0,1234,-7,0,0 +2013,8,14,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,900,-6,0,951,4,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,-3,0,957,8,0,0 +2013,9,14,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1325,322,1,1447,314,1,0 +2013,6,25,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,172,1,1959,174,1,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1910,0,0,2100,-7,0,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,5,0,1150,6,0,0 +2013,4,6,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,630,-4,0,1500,-1,0,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2055,7,0,2250,-2,0,0 +2013,4,1,1,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-2,0,1630,-2,0,0 +2013,8,29,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,-2,0,1145,-9,0,0 +2013,7,21,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2110,0,0,2235,-4,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,815,-3,0,1149,-17,0,0 +2013,6,14,5,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,800,-1,0,1040,-9,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,1,0,1459,16,1,0 +2013,8,15,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,15,1,1908,10,0,0 +2013,9,5,4,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,-5,0,5,-14,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-3,0,1109,-21,0,0 +2013,7,27,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,269,1,1150,274,1,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1940,6,0,2210,18,1,0 +2013,4,25,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1703,0,,1829,0,1,1 +2013,4,17,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,-5,0,1100,-3,0,0 +2013,6,7,5,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1711,-1,0,1923,-24,0,0 +2013,9,17,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,720,-7,0,0 +2013,5,20,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1826,0,0,2100,-6,0,0 +2013,10,7,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,721,-5,0,809,-12,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1815,23,1,1940,27,1,0 +2013,5,17,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1059,-1,0,1918,0,0,0 +2013,9,18,3,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,36,1,2230,6,0,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,60,1,1809,57,1,0 +2013,5,19,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1748,39,1,2105,22,1,0 +2013,4,13,6,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1450,-2,0,1525,-13,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1240,3,0,1355,1,0,0 +2013,5,17,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,700,0,0,815,-1,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1705,-4,0,1935,-19,0,0 +2013,4,8,1,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1210,10,0,1808,18,1,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,745,-1,0,933,3,0,0 +2013,6,29,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1435,54,1,1620,46,1,0 +2013,7,22,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,115,-7,0,615,0,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,-2,0,1310,5,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1135,44,1,1835,32,1,0 +2013,5,24,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2202,-3,0,15,-19,0,0 +2013,7,15,1,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,601,-6,0,910,-9,0,0 +2013,5,14,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1333,-11,0,1439,-17,0,0 +2013,6,9,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1212,7,0,1404,10,0,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1410,0,0,0 +2013,4,9,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,2,0,2110,-9,0,0 +2013,4,1,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-5,0,910,-14,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2050,0,0,2235,-29,0,0 +2013,10,28,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-6,0,907,-16,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1502,-2,0,1700,-8,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-4,0,1248,-11,0,0 +2013,5,15,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1450,-5,0,1553,-18,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,25,1,1705,16,1,0 +2013,8,13,2,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,635,10,0,745,6,0,0 +2013,4,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,60,1,2325,73,1,0 +2013,5,25,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-7,0,1341,-10,0,0 +2013,7,25,4,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,955,46,1,1600,26,1,0 +2013,10,9,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-3,0,1838,-15,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1156,2,0,2035,-10,0,0 +2013,7,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1415,43,1,1540,37,1,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-4,0,1825,-24,0,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,840,-4,0,1030,-19,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,106,1,1519,111,1,0 +2013,10,5,6,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,620,-6,0,929,-33,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,9,0,1929,18,1,0 +2013,6,29,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1330,32,1,1450,31,1,0 +2013,8,2,5,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,0,0,548,-8,0,0 +2013,4,5,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,739,-3,0,909,-16,0,0 +2013,5,2,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,80,1,1312,97,1,0 +2013,10,2,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,-6,0,1835,-14,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,10,0,1019,8,0,0 +2013,4,13,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-7,0,1202,4,0,0 +2013,6,3,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1720,13,0,1830,5,0,0 +2013,7,29,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,40,1,2025,32,1,0 +2013,4,9,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,820,-2,0,935,-23,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2115,-6,0,2353,13,0,0 +2013,5,12,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1536,-7,0,1830,-15,0,0 +2013,5,10,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-2,0,1007,8,0,0 +2013,9,25,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,-9,0,1838,-9,0,0 +2013,4,19,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,0,,1931,0,1,1 +2013,6,6,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,2,0,2110,-14,0,0 +2013,9,23,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-2,0,1640,-27,0,0 +2013,8,21,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,930,-4,0,1030,-3,0,0 +2013,4,28,7,9E,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-10,0,1025,-23,0,0 +2013,7,8,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,7,0,942,-3,0,0 +2013,7,6,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-4,0,1643,5,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1410,10,0,1536,11,0,0 +2013,10,26,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-4,0,1610,-12,0,0 +2013,4,8,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-6,0,1653,-5,0,0 +2013,5,21,2,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-8,0,2153,-17,0,0 +2013,5,18,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2040,-10,0,2329,-7,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,5,0,1745,-3,0,0 +2013,9,29,7,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1737,-3,0,1907,-12,0,0 +2013,4,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,740,-4,0,1031,-4,0,0 +2013,5,8,3,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,8,0,2025,17,1,0 +2013,9,10,2,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,46,1,1501,50,1,0 +2013,7,13,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1010,-23,0,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,2,0,1735,3,0,0 +2013,8,5,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,-1,0,730,-9,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1210,7,0,1405,14,0,0 +2013,6,15,6,YV,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,-9,0,1339,-12,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1645,20,1,1850,16,1,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,740,-7,0,836,-21,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,-1,0,1800,47,1,0 +2013,7,30,2,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1126,1,0,1246,14,0,0 +2013,9,11,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,-5,0,921,-17,0,0 +2013,5,10,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1435,2,0,1600,2,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,1,0,1055,36,1,0 +2013,9,15,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1039,-4,0,1122,1,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,920,0,0,1240,-1,0,0 +2013,8,1,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1714,-1,0,1855,-11,0,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1010,-1,0,1118,-20,0,0 +2013,4,19,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,12,0,1320,20,1,0 +2013,8,8,4,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,700,-4,0,905,-4,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,1125,-4,0,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1136,12,0,1413,4,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1215,-5,0,1350,-13,0,0 +2013,7,25,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2007,25,1,2140,31,1,0 +2013,10,3,4,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,1,0,1629,-1,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,2,0,1155,-6,0,0 +2013,9,26,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1109,-9,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,9,0,2107,8,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,10,0,1800,-4,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,15,1,1630,52,1,0 +2013,5,14,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-3,0,1523,-1,0,0 +2013,4,29,1,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,650,1,0,940,2,0,0 +2013,8,7,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,32,1,1706,14,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1400,54,1,1620,45,1,0 +2013,6,1,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1315,-8,0,1522,2,0,0 +2013,9,25,3,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1706,0,0,2300,-22,0,0 +2013,9,2,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,-7,0,1252,-11,0,0 +2013,6,29,6,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,819,45,1,1103,27,1,0 +2013,7,1,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1905,210,1,2108,164,1,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,810,-7,0,1110,-25,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,850,-5,0,1020,-11,0,0 +2013,5,18,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1450,-6,0,1858,-8,0,0 +2013,6,3,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1214,25,1,1345,7,0,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1355,63,1,1713,0,1,1 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2055,-5,0,2305,-10,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2105,63,1,2303,69,1,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,3,0,1125,-3,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,3,0,1144,8,0,0 +2013,7,11,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,92,1,1311,83,1,0 +2013,7,30,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,0,0,1120,-4,0,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,711,-1,0,1105,-19,0,0 +2013,9,21,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1109,-3,0,1342,65,1,0 +2013,6,20,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-4,0,1336,-5,0,0 +2013,4,18,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,905,-2,0,1154,20,1,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,-3,0,915,3,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,-3,0,1803,31,1,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1733,-2,0,2016,-18,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1532,45,1,1721,41,1,0 +2013,9,22,7,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1110,-3,0,1359,-16,0,0 +2013,10,4,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,857,-1,0,926,-2,0,0 +2013,8,23,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,-1,0,2050,-13,0,0 +2013,9,24,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-1,0,835,3,0,0 +2013,8,21,3,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,3,0,1545,2,0,0 +2013,4,19,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,28,1,1903,24,1,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1803,-1,0,1947,-19,0,0 +2013,8,2,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,614,13,0,808,5,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,3,0,1600,8,0,0 +2013,7,2,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,0,0,812,-5,0,0 +2013,7,3,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1550,8,0,1840,0,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,2,0,825,-10,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-9,0,1735,-20,0,0 +2013,8,29,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-5,0,2101,7,0,0 +2013,8,24,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,830,-5,0,1055,4,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2115,57,1,2230,51,1,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2035,58,1,2155,53,1,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,800,10,0,1050,7,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,4,0,1939,-51,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1737,-2,0,1903,8,0,0 +2013,4,25,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,755,28,1,816,45,1,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2010,0,0,2125,3,0,0 +2013,7,6,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,0,0,1640,-6,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,5,0,1905,1,0,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1745,-4,0,2012,-19,0,0 +2013,8,2,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,810,1,0,825,21,1,0 +2013,7,11,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,14,0,1925,18,1,0 +2013,8,30,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1951,-2,0,2220,14,0,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,955,0,0,1500,2,0,0 +2013,6,22,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2030,17,1,2307,33,1,0 +2013,6,20,4,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,930,52,1,1340,41,1,0 +2013,7,17,3,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1230,-6,0,2110,-3,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1400,-1,0,1500,-12,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,0,0,903,0,0,0 +2013,8,22,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-10,0,1155,-7,0,0 +2013,9,20,5,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1002,23,1,1225,17,1,0 +2013,7,28,7,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1455,13,0,1800,8,0,0 +2013,6,15,6,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1650,57,1,1821,40,1,0 +2013,7,28,7,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1355,5,0,1700,1,0,0 +2013,4,2,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-4,0,1553,4,0,0 +2013,7,14,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-8,0,809,-7,0,0 +2013,6,26,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1655,338,1,1755,326,1,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-8,0,2011,-4,0,0 +2013,8,18,7,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1850,29,1,2125,7,0,0 +2013,7,2,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-7,0,1658,40,1,0 +2013,9,20,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-10,0,1043,-2,0,0 +2013,5,23,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-6,0,1745,-3,0,0 +2013,4,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,810,185,1,941,186,1,0 +2013,9,20,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1430,0,,1555,0,1,1 +2013,4,27,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-4,0,1430,-11,0,0 +2013,7,14,7,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,800,112,1,1140,114,1,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,84,1,2150,66,1,0 +2013,7,8,1,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,627,-25,0,0 +2013,8,4,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1943,-1,0,100,7,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-3,0,2326,-11,0,0 +2013,4,19,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,510,-4,0,756,-20,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1623,0,0,1728,2,0,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2145,22,1,522,2,0,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,650,-2,0,940,-16,0,0 +2013,9,28,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1430,-6,0,1751,-39,0,0 +2013,4,18,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,-7,0,1807,-4,0,0 +2013,10,25,5,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,543,-4,0,1150,-17,0,0 +2013,5,20,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1235,1,0,1515,-5,0,0 +2013,4,21,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1759,-3,0,2107,-23,0,0 +2013,7,10,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2014,257,1,2229,249,1,0 +2013,6,19,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,7,0,2110,10,0,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,710,-4,0,1033,-37,0,0 +2013,4,10,3,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1729,52,1,1928,88,1,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,555,-3,0,925,0,0,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1814,-2,0,2143,-34,0,0 +2013,6,27,4,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,835,9,0,1000,-2,0,0 +2013,4,15,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1059,19,1,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,2,0,830,-4,0,0 +2013,9,12,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1955,37,1,2326,44,1,0 +2013,7,25,4,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-8,0,1754,-6,0,0 +2013,8,12,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,0,0,728,0,0,0 +2013,8,1,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,627,-4,0,818,-9,0,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,515,-4,0,814,-6,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,-4,0,1913,-11,0,0 +2013,6,13,4,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-10,0,1754,-23,0,0 +2013,8,21,3,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1415,-8,0,1607,-3,0,0 +2013,9,9,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1759,-10,0,1850,-8,0,0 +2013,5,8,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,955,62,1,1125,49,1,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-2,0,1818,8,0,0 +2013,7,10,3,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,48,1,1340,46,1,0 +2013,10,17,4,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,806,0,,937,0,1,1 +2013,10,19,6,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,805,-1,0,915,-17,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1520,105,1,1725,99,1,0 +2013,8,14,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-10,0,1015,-7,0,0 +2013,9,4,3,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,950,-5,0,1100,-5,0,0 +2013,8,11,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1625,-5,0,1935,-4,0,0 +2013,4,17,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,340,-10,0,646,-6,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1715,9,0,2020,10,0,0 +2013,4,28,7,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1557,-8,0,0 +2013,8,14,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1605,-2,0,1757,3,0,0 +2013,5,14,2,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,2030,-2,0,0 +2013,8,22,4,DL,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1810,99,1,2129,52,1,0 +2013,5,27,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1820,78,1,1935,93,1,0 +2013,5,27,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1529,-3,0,1740,-1,0,0 +2013,8,7,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,828,-1,0,1009,-3,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1145,46,1,1513,43,1,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1955,0,,2215,0,1,1 +2013,9,25,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,20,1,1415,18,1,0 +2013,8,14,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1715,21,1,1946,23,1,0 +2013,6,29,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,39,1,1022,23,1,0 +2013,4,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,610,0,0,720,7,0,0 +2013,5,16,4,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1925,46,1,2129,17,1,0 +2013,4,29,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,14,0,1733,10,0,0 +2013,6,15,6,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1446,37,1,1628,15,1,0 +2013,8,5,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,17,1,2008,19,1,0 +2013,9,18,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1000,-1,0,1010,-9,0,0 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1515,16,1,1800,10,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1430,43,1,1740,33,1,0 +2013,6,29,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1250,-2,0,1707,1,0,0 +2013,4,1,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-6,0,2025,-17,0,0 +2013,10,21,1,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-13,0,1050,-24,0,0 +2013,5,29,3,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2245,5,0,704,19,1,0 +2013,10,3,4,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1010,8,0,1155,-1,0,0 +2013,7,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1111,-2,0,1207,-1,0,0 +2013,5,7,2,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,-7,0,1858,-23,0,0 +2013,5,31,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-4,0,1858,-5,0,0 +2013,10,19,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1132,23,1,1359,53,1,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1930,0,0,2211,-13,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1140,-1,0,1345,-20,0,0 +2013,4,29,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1258,-9,0,1403,-16,0,0 +2013,4,11,4,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1928,-6,0,2111,-12,0,0 +2013,9,1,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1730,-10,0,2144,-18,0,0 +2013,10,20,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-9,0,1805,-1,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,40,1,1927,34,1,0 +2013,4,13,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1610,13,0,1859,26,1,0 +2013,10,16,3,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1740,9,0,2015,19,1,0 +2013,5,22,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1400,-7,0,1807,-8,0,0 +2013,4,12,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1054,9,0,1428,-7,0,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1855,4,0,1952,-10,0,0 +2013,4,16,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,833,48,1,905,51,1,0 +2013,7,10,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,-9,0,1831,-7,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1300,31,1,1530,33,1,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1655,3,0,1819,26,1,0 +2013,5,3,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1135,35,1,1156,28,1,0 +2013,9,24,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1105,-9,0,1420,-9,0,0 +2013,8,20,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1337,2,0,1552,-8,0,0 +2013,6,25,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,34,1,2115,27,1,0 +2013,5,25,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1816,3,0,0 +2013,9,12,4,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,830,-9,0,1125,-15,0,0 +2013,7,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,830,-3,0,1000,-5,0,0 +2013,5,12,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1123,-5,0,1341,-9,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,952,0,0,1116,-4,0,0 +2013,7,25,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2030,102,1,2115,99,1,0 +2013,7,17,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,1,0,1450,-21,0,0 +2013,5,21,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1545,3,0,1820,-12,0,0 +2013,8,15,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,4,0,1115,-5,0,0 +2013,7,23,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,802,3,0,855,27,1,0 +2013,10,13,7,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1700,-3,0,1753,6,0,0 +2013,6,3,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1730,-1,0,1955,-18,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,-1,0,1340,-9,0,0 +2013,10,10,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1830,29,1,1920,34,1,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2210,94,1,2300,90,1,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1755,-2,0,2025,7,0,0 +2013,10,8,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1908,3,0,2305,-14,0,0 +2013,5,8,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1015,-13,0,0 +2013,8,8,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,816,-5,0,1100,12,0,0 +2013,4,4,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-1,0,1026,7,0,0 +2013,9,22,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2125,-4,0,2215,-11,0,0 +2013,6,2,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2135,44,1,2255,31,1,0 +2013,6,12,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,0,,2308,0,1,1 +2013,4,22,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,83,1,1800,78,1,0 +2013,4,24,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1507,-1,0,1649,4,0,0 +2013,6,9,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-3,0,1640,-9,0,0 +2013,8,17,6,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,925,-5,0,1115,-11,0,0 +2013,7,28,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,1,0,1512,-3,0,0 +2013,6,15,6,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,22,1,2140,-24,0,0 +2013,6,17,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,160,1,1845,156,1,0 +2013,7,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,-1,0,1735,2,0,0 +2013,8,22,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,8,0,1110,5,0,0 +2013,4,9,2,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,804,-1,0,924,17,1,0 +2013,4,29,1,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1054,-8,0,1220,-20,0,0 +2013,7,21,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,-1,0,2000,-9,0,0 +2013,10,10,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-3,0,2000,-10,0,0 +2013,4,12,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1944,10,0,2103,21,1,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1020,-4,0,1227,-8,0,0 +2013,5,8,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,18,1,1714,14,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2233,-3,0,632,-3,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,-8,0,725,-1,0,0 +2013,6,27,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,6,0,1255,-3,0,0 +2013,8,4,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,0,0,1156,5,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1140,2,0,1335,-24,0,0 +2013,10,15,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1935,28,1,2256,6,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1125,-4,0,1309,12,0,0 +2013,8,2,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,835,-2,0,1000,-5,0,0 +2013,5,17,5,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-6,0,1320,2,0,0 +2013,7,23,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1400,156,1,1540,199,1,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-5,0,1230,1,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1230,18,1,1325,19,1,0 +2013,4,15,1,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1525,9,0,1650,9,0,0 +2013,4,30,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-2,0,1535,0,1,1 +2013,4,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1514,6,0,1727,-5,0,0 +2013,10,31,4,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1656,-17,0,1843,-17,0,0 +2013,5,6,1,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1345,9,0,1457,49,1,0 +2013,9,8,7,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1433,-5,0,1825,-5,0,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,1,0,1257,5,0,0 +2013,9,3,2,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1231,-9,0,1545,-31,0,0 +2013,9,9,1,OO,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1205,-10,0,1436,1,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1145,12,0,1840,16,1,0 +2013,6,7,5,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,815,3,0,1011,-4,0,0 +2013,4,8,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,1541,-17,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,-4,0,1131,-9,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,730,-5,0,935,-3,0,0 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1810,-1,0,1915,-13,0,0 +2013,10,5,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1856,42,1,2025,13,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,830,91,1,1335,80,1,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,24,1,2324,22,1,0 +2013,10,5,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-2,0,1749,-9,0,0 +2013,9,13,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1837,12,0,2057,7,0,0 +2013,6,28,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1203,-4,0,1344,-9,0,0 +2013,8,4,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-8,0,1900,4,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-3,0,1247,-33,0,0 +2013,7,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,0,0,2215,-8,0,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2110,0,0,2208,-19,0,0 +2013,5,4,6,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1625,24,1,2145,13,0,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1505,70,1,1735,67,1,0 +2013,8,7,3,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,2005,-11,0,2127,-2,0,0 +2013,9,15,7,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,-3,0,1017,-2,0,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-9,0,1840,-16,0,0 +2013,10,6,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1046,-6,0,1330,-8,0,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1736,39,1,1933,68,1,0 +2013,10,21,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,525,-3,0,847,-21,0,0 +2013,7,23,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-5,0,1938,26,1,0 +2013,8,14,3,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1210,-7,0,1318,-17,0,0 +2013,4,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,900,-9,0,1216,1,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1010,-3,0,1240,-20,0,0 +2013,6,24,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-4,0,937,-22,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1055,24,1,1525,5,0,0 +2013,7,22,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-2,0,1741,-1,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,820,-1,0,1130,-7,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1610,56,1,1935,93,1,0 +2013,9,15,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2203,-5,0,100,-46,0,0 +2013,7,18,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1220,4,0,1425,3,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1650,-3,0,2045,2,0,0 +2013,7,18,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1935,-10,0,2000,-21,0,0 +2013,9,10,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,705,-6,0,821,-9,0,0 +2013,4,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,740,-2,0,1120,-14,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-2,0,1247,-3,0,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,10,0,1117,5,0,0 +2013,5,30,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1230,-8,0,1406,-10,0,0 +2013,7,18,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1845,12,0,2030,11,0,0 +2013,6,7,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2004,-4,0,2222,-15,0,0 +2013,9,9,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1014,-6,0,1129,-15,0,0 +2013,9,30,1,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1155,-4,0,1345,-15,0,0 +2013,6,8,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-6,0,2058,-14,0,0 +2013,5,9,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1259,-5,0,1425,-14,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1915,80,1,2048,87,1,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2155,27,1,2320,22,1,0 +2013,7,9,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-6,0,1335,-2,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,715,-4,0,1045,-2,0,0 +2013,10,3,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,925,15,1,1025,21,1,0 +2013,4,30,2,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-5,0,1914,3,0,0 +2013,6,15,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-4,0,1802,-19,0,0 +2013,9,18,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,-12,0,2245,-23,0,0 +2013,5,4,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1204,2,0,1444,-10,0,0 +2013,5,29,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,935,7,0,1110,-15,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1726,0,0,1919,-9,0,0 +2013,5,16,4,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,40,1,2350,33,1,0 +2013,8,28,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-3,0,1521,1,0,0 +2013,9,11,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,0,0,810,-1,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2231,22,1,226,41,1,0 +2013,9,1,7,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1711,13,0,1827,8,0,0 +2013,6,28,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-5,0,1854,-19,0,0 +2013,10,1,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,-8,0,1337,8,0,0 +2013,9,15,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,20,1,2117,11,0,0 +2013,10,21,1,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-7,0,1205,-1,0,0 +2013,6,25,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1940,63,1,2035,59,1,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,935,9,0,1620,-13,0,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2030,-7,0,2217,16,1,0 +2013,7,10,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,14,0,2106,-2,0,0 +2013,4,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,2,0,1905,-2,0,0 +2013,10,8,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,133,1,848,155,1,0 +2013,4,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,14,0,2110,5,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1309,84,1,1553,68,1,0 +2013,7,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,1,0,1010,-10,0,0 +2013,9,10,2,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1315,-6,0,2046,-10,0,0 +2013,4,8,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-5,0,1821,-25,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,-2,0,1050,-17,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-7,0,1104,0,0,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-5,0,1451,-12,0,0 +2013,8,13,2,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1010,15,1,1150,12,0,0 +2013,10,19,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,855,60,1,1020,54,1,0 +2013,9,15,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1318,-5,0,1334,-10,0,0 +2013,4,18,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1505,208,1,1849,0,1,1 +2013,7,6,6,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,-3,0,1235,-18,0,0 +2013,6,16,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1435,2,0,1635,-7,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,2,0,1625,6,0,0 +2013,9,4,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,737,-12,0,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1016,-2,0,1207,0,0,0 +2013,9,23,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,11,0,2043,0,0,0 +2013,4,30,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1925,-2,0,2025,-1,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,828,-5,0,835,-7,0,0 +2013,8,18,7,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2010,14,0,2023,19,1,0 +2013,8,19,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1415,-4,0,1550,-7,0,0 +2013,10,17,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-1,0,1352,-40,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-4,0,1256,-14,0,0 +2013,10,18,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2115,26,1,2235,13,0,0 +2013,6,30,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,23,1,2115,27,1,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1155,-1,0,1510,14,0,0 +2013,10,3,4,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,-1,0,1130,-5,0,0 +2013,4,11,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,71,1,1820,89,1,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,725,-6,0,903,6,0,0 +2013,6,18,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,11,0,1150,9,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2005,17,1,2310,1,0,0 +2013,10,27,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2105,-3,0,2340,-2,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1825,-5,0,2005,-27,0,0 +2013,6,6,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1942,-3,0,2250,-21,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,549,-5,0,702,-18,0,0 +2013,4,13,6,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-7,0,2027,-12,0,0 +2013,6,22,6,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-2,0,915,8,0,0 +2013,10,11,5,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,635,-4,0,723,1,0,0 +2013,9,20,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,42,1,1250,39,1,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1510,-3,0,1650,-13,0,0 +2013,8,25,7,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1737,13,0,1910,22,1,0 +2013,4,9,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1315,-2,0,1611,-15,0,0 +2013,6,12,3,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,2100,27,1,2250,26,1,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,-4,0,1830,-14,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1740,63,1,1945,74,1,0 +2013,8,15,4,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1420,-6,0,2227,10,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1025,-3,0,1240,-11,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,-4,0,905,-16,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,0,0,1046,-3,0,0 +2013,9,4,3,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,3,0,2125,-25,0,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1245,5,0,1500,-1,0,0 +2013,9,12,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,236,1,1415,0,1,1 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,6,0,1105,-4,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1424,-6,0,1523,-17,0,0 +2013,9,1,7,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,714,-5,0,1046,-19,0,0 +2013,10,18,5,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,855,-9,0,1027,-23,0,0 +2013,5,18,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,650,-7,0,750,-9,0,0 +2013,9,27,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,-1,0,1252,-15,0,0 +2013,10,12,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,1,0,1355,2,0,0 +2013,4,24,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2140,0,0,2240,-12,0,0 +2013,9,5,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-10,0,808,-10,0,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,-5,0,2130,-13,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,-2,0,1708,-30,0,0 +2013,4,21,7,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,27,1,1230,24,1,0 +2013,7,29,1,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,735,-1,0,1005,0,0,0 +2013,5,24,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,800,-1,0,930,-14,0,0 +2013,6,26,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,131,1,1855,142,1,0 +2013,7,26,5,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2000,23,1,2310,-3,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,19,1,1205,39,1,0 +2013,6,5,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,610,0,0,815,-8,0,0 +2013,10,11,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,1,0,940,-6,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1351,1,0,1534,-1,0,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1200,-6,0,1420,-19,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1359,17,1,1502,9,0,0 +2013,7,8,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1726,23,1,2006,10,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,7,0,2046,-8,0,0 +2013,7,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,38,1,1735,25,1,0 +2013,9,10,2,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1144,-10,0,1403,35,1,0 +2013,4,26,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,0,1259,-3,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,23,1,1831,40,1,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,15,1,2210,14,0,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1840,-5,0,2010,-17,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,0,0,1015,-10,0,0 +2013,10,11,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,-7,0,1034,-15,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1430,19,1,1755,12,0,0 +2013,7,30,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2010,-5,0,2306,-9,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,-2,0,1102,-6,0,0 +2013,9,3,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,857,0,0,1452,-17,0,0 +2013,7,11,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,4,0,1005,86,1,0 +2013,4,8,1,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1820,21,1,1949,17,1,0 +2013,8,22,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,845,0,0,1215,2,0,0 +2013,9,24,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,-1,0,735,-18,0,0 +2013,6,18,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,0,,750,0,1,1 +2013,9,26,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,700,1,0,800,5,0,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,622,6,0,756,-1,0,0 +2013,10,11,5,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,950,2,0,1115,-1,0,0 +2013,6,16,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-6,0,1625,-18,0,0 +2013,6,12,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,0,0,620,-2,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,11,0,2125,5,0,0 +2013,4,5,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,849,14,0,0 +2013,6,30,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,50,1,2025,37,1,0 +2013,6,14,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,114,32,1,629,29,1,0 +2013,7,14,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1035,14,0,1145,-3,0,0 +2013,6,13,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,8,0,1155,38,1,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,3,0,1720,10,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-4,0,1338,-16,0,0 +2013,7,10,3,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,855,-2,0,1006,-12,0,0 +2013,5,10,5,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1225,30,1,2055,7,0,0 +2013,5,9,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1015,0,0,1130,-6,0,0 +2013,5,8,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1251,-5,0,1521,-16,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,715,-4,0,825,-17,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1555,-5,0,1838,-9,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,45,1,1148,34,1,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1835,-2,0,2015,-1,0,0 +2013,4,7,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-4,0,2005,-8,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1150,-1,0,1245,-12,0,0 +2013,8,16,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1200,1,0,1330,-2,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1708,3,0,1838,-4,0,0 +2013,4,2,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,610,23,1,730,11,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,600,11,0,835,6,0,0 +2013,9,11,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1930,-2,0,2137,-8,0,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,840,4,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1208,-3,0,1353,-20,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,14,0,1925,45,1,0 +2013,5,30,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-9,0,830,-13,0,0 +2013,6,12,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,0,0,940,-16,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-2,0,1944,-15,0,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-4,0,1544,-12,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,0,0,1755,-14,0,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1129,13,0,1352,30,1,0 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1150,53,1,1330,48,1,0 +2013,9,15,7,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1450,1,0,1610,-7,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1015,-3,0,1715,20,1,0 +2013,9,13,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,1,0,705,-3,0,0 +2013,8,25,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1801,-2,0,2026,0,0,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2310,0,0,710,-13,0,0 +2013,4,3,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,-20,0,1630,-23,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,0,0,1715,-11,0,0 +2013,10,14,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-4,0,1950,-17,0,0 +2013,8,19,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1405,-10,0,2058,-6,0,0 +2013,6,12,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1855,-2,0,2031,25,1,0 +2013,9,29,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1355,23,1,1530,8,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,849,-2,0,1517,12,0,0 +2013,9,13,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1333,85,1,1418,91,1,0 +2013,9,11,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1030,0,0,1120,-5,0,0 +2013,9,18,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,-7,0,1729,-9,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1858,-3,0,2023,-22,0,0 +2013,8,15,4,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1817,101,1,1918,95,1,0 +2013,6,7,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-3,0,1750,-18,0,0 +2013,8,14,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1942,55,1,2113,44,1,0 +2013,8,1,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,750,1,0,855,-11,0,0 +2013,5,27,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2025,40,1,2340,41,1,0 +2013,9,24,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,610,-3,0,735,-8,0,0 +2013,7,17,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,0,,1113,0,1,1 +2013,6,13,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1416,75,1,1644,57,1,0 +2013,10,16,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,700,-5,0,845,-22,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,4,0,1115,18,1,0 +2013,9,3,2,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-5,0,1822,-13,0,0 +2013,9,13,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,630,-3,0,816,-5,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,745,-6,0,1045,-1,0,0 +2013,8,1,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,831,25,1,0 +2013,9,25,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1150,9,0,1155,0,0,0 +2013,7,9,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1940,99,1,2035,94,1,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2015,-3,0,2320,-12,0,0 +2013,5,20,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,16,1,1558,22,1,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2000,0,0,2210,-25,0,0 +2013,8,16,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-5,0,1358,-14,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,844,-2,0,1006,38,1,0 +2013,4,6,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,0,0,1910,-7,0,0 +2013,8,29,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2200,0,0,2320,-8,0,0 +2013,7,31,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,2,0,1610,-2,0,0 +2013,5,16,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,-1,0,1225,1,0,0 +2013,7,1,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2008,-4,0,2327,-9,0,0 +2013,7,15,1,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,2,0,2213,-27,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2155,-7,0,48,-10,0,0 +2013,4,23,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1535,-5,0,1645,-17,0,0 +2013,7,9,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1536,-2,0,1700,-1,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,2,0,1740,-10,0,0 +2013,6,12,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1455,22,1,1520,11,0,0 +2013,8,2,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1323,31,1,1613,29,1,0 +2013,6,28,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1154,8,0,1400,5,0,0 +2013,8,29,4,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1952,0,0,2223,-22,0,0 +2013,10,4,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1800,27,1,2007,18,1,0 +2013,8,19,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,730,-2,0,1105,-13,0,0 +2013,4,1,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1411,-6,0,1608,-20,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1022,-3,0,1256,-2,0,0 +2013,7,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1258,9,0,1413,2,0,0 +2013,9,14,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-2,0,1938,-10,0,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,910,-8,0,1210,-22,0,0 +2013,8,20,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-9,0,1522,-16,0,0 +2013,7,20,6,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,6,0,1339,-1,0,0 +2013,4,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1105,6,0,1215,9,0,0 +2013,9,29,7,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2035,-8,0,2215,-10,0,0 +2013,9,14,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,1,0,2335,-27,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1630,-3,0,1825,-27,0,0 +2013,4,5,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1330,12,0,1440,12,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1550,144,1,2140,106,1,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1240,-6,0,1403,-10,0,0 +2013,8,11,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,-8,0,1525,-11,0,0 +2013,5,13,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2253,-4,0,710,-4,0,0 +2013,5,18,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-4,0,919,5,0,0 +2013,4,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1040,5,0,1155,2,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,605,0,0,735,6,0,0 +2013,4,8,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,153,1,1955,147,1,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1640,20,1,1830,-8,0,0 +2013,4,7,7,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,635,-9,0,723,-14,0,0 +2013,6,8,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,0,0,1122,-7,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,-4,0,1320,7,0,0 +2013,7,15,1,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,89,1,1014,85,1,0 +2013,4,15,1,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-4,0,2035,-13,0,0 +2013,5,10,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1030,-6,0,1302,-20,0,0 +2013,6,10,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,0,0,2140,11,0,0 +2013,5,30,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,956,-6,0,1140,-34,0,0 +2013,6,7,5,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1639,-1,0,1826,-9,0,0 +2013,5,1,3,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,841,-5,0,1032,-14,0,0 +2013,7,23,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,52,1,2000,42,1,0 +2013,5,17,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,625,-5,0,920,-3,0,0 +2013,5,30,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1259,-1,0,1648,-5,0,0 +2013,5,1,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1400,5,0,1610,-15,0,0 +2013,5,19,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,751,-10,0,0 +2013,8,16,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,29,1,1610,25,1,0 +2013,7,22,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,625,146,1,915,154,1,0 +2013,4,25,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,1,0,1354,-3,0,0 +2013,10,16,3,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,4,0,810,31,1,0 +2013,4,8,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1310,-5,0,1500,-3,0,0 +2013,9,13,5,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1723,-9,0,1850,-3,0,0 +2013,9,27,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1346,-4,0,1555,-16,0,0 +2013,4,3,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1229,0,0,1442,-2,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1930,-2,0,2315,-16,0,0 +2013,7,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,1,0,1808,8,0,0 +2013,9,30,1,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,800,-3,0,1040,-26,0,0 +2013,6,23,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1625,-3,0,2025,-12,0,0 +2013,9,19,4,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,950,25,1,1730,14,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,735,-6,0,815,-12,0,0 +2013,4,1,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2145,-5,0,2328,-3,0,0 +2013,7,9,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-2,0,642,-9,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1825,22,1,1935,16,1,0 +2013,7,30,2,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1946,37,1,2133,31,1,0 +2013,9,9,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-10,0,1015,-19,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,840,0,0,945,-1,0,0 +2013,4,18,4,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,800,1,0,955,-17,0,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-3,0,1824,-23,0,0 +2013,5,14,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1556,-7,0,1758,-14,0,0 +2013,8,6,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,0,0,1558,38,1,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,-3,0,1438,-12,0,0 +2013,9,10,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1251,-3,0,1641,1,0,0 +2013,8,18,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1225,1,0,1400,-7,0,0 +2013,7,25,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-5,0,1949,-6,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1250,-3,0,1345,-5,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-2,0,1940,-3,0,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1635,36,1,1835,29,1,0 +2013,7,17,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,69,1,543,93,1,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1405,-1,0,1512,-20,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1735,57,1,1850,58,1,0 +2013,8,18,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,730,-1,0,850,-29,0,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,905,-7,0,1424,-11,0,0 +2013,4,13,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1359,24,1,1641,29,1,0 +2013,4,20,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,755,-1,0,1014,8,0,0 +2013,10,24,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,46,1,2155,43,1,0 +2013,7,2,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,1,0,825,-4,0,0 +2013,5,5,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,7,0,2104,-10,0,0 +2013,6,15,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1447,-2,0,1620,-17,0,0 +2013,8,29,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1055,6,0,1310,9,0,0 +2013,4,26,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-4,0,1613,-12,0,0 +2013,6,30,7,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1200,-3,0,1450,-17,0,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1825,13,0,2140,11,0,0 +2013,8,4,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,53,1,1720,45,1,0 +2013,9,14,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,-6,0,755,-17,0,0 +2013,6,7,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1524,-4,0,2056,13,0,0 +2013,7,8,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-6,0,905,12,0,0 +2013,8,2,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1845,16,1,1945,12,0,0 +2013,8,7,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-3,0,1329,-7,0,0 +2013,6,20,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,34,1,2105,19,1,0 +2013,9,29,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,19,1,648,15,1,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,-1,0,1700,-6,0,0 +2013,7,13,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,853,6,0,1140,-4,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,855,0,0,1542,-2,0,0 +2013,6,18,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,0,0,1938,-8,0,0 +2013,8,9,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,38,1,1640,38,1,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1850,-3,0,2010,-9,0,0 +2013,4,20,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2010,21,1,2248,-2,0,0 +2013,6,26,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,618,11,0,922,-12,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1455,0,0,1557,-11,0,0 +2013,7,1,1,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1205,18,1,1330,33,1,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,630,-1,0,730,-1,0,0 +2013,5,16,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-6,0,1252,-11,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,3,0,1105,-3,0,0 +2013,5,2,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1546,31,1,1856,31,1,0 +2013,9,29,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,17,1,1735,15,1,0 +2013,5,25,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,37,1,1429,49,1,0 +2013,7,15,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1255,-7,0,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-7,0,753,-9,0,0 +2013,8,2,5,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,51,1,1520,55,1,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,10,0,2035,-9,0,0 +2013,4,12,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,-4,0,1917,-14,0,0 +2013,9,2,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1705,9,0,2035,-4,0,0 +2013,6,1,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1430,0,0,1540,7,0,0 +2013,5,27,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,-3,0,1637,-10,0,0 +2013,6,11,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1814,-2,0,2105,-13,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1252,-3,0,1408,-15,0,0 +2013,4,3,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,-5,0,1350,-10,0,0 +2013,10,27,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1825,-12,0,1943,1,0,0 +2013,5,18,6,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-8,0,1406,-2,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1546,94,1,1958,67,1,0 +2013,6,28,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1426,1,0,1558,-5,0,0 +2013,4,3,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1915,-4,0,2110,-19,0,0 +2013,5,14,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1650,82,1,1830,60,1,0 +2013,7,23,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-5,0,2126,-2,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1550,-2,0,1745,6,0,0 +2013,7,9,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1805,73,1,1949,69,1,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1420,2,0,1551,-7,0,0 +2013,7,26,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1945,0,0,2105,-2,0,0 +2013,7,12,5,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,650,15,1,822,7,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,57,1,2350,71,1,0 +2013,10,27,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1845,-2,0,2101,25,1,0 +2013,4,19,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,800,16,1,955,-6,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,-4,0,1425,-7,0,0 +2013,4,14,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1215,9,0,1435,-1,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1612,-2,0,1818,-36,0,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-3,0,1704,13,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,944,-5,0,1021,-18,0,0 +2013,4,14,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1414,38,1,1900,-5,0,0 +2013,4,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,5,0,1135,-7,0,0 +2013,9,7,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-10,0,1036,-6,0,0 +2013,10,22,2,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,25,1,1755,-1,0,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,2,0,2338,-22,0,0 +2013,8,8,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-6,0,810,-16,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,604,17,1,752,16,1,0 +2013,5,8,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,715,-2,0,925,0,0,0 +2013,4,5,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,708,-10,0,909,-12,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,7,0,1925,8,0,0 +2013,4,6,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1510,-2,0,1807,-4,0,0 +2013,5,26,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1330,6,0,1529,-2,0,0 +2013,4,16,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1635,-10,0,1750,-2,0,0 +2013,5,27,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1811,-5,0,2000,-12,0,0 +2013,10,28,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1145,1,0,1420,-1,0,0 +2013,8,5,1,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-6,0,1041,1,0,0 +2013,5,16,4,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1410,1,0,1640,-9,0,0 +2013,5,30,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1800,65,1,1921,58,1,0 +2013,5,19,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,99,1,1557,103,1,0 +2013,8,10,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,956,-5,0,1600,-23,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1725,-5,0,1855,-11,0,0 +2013,9,3,2,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1426,11,0,1604,5,0,0 +2013,5,24,5,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1045,8,0,1240,8,0,0 +2013,4,11,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-1,0,1859,11,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,635,-4,0,1230,7,0,0 +2013,4,30,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,918,0,0,1439,-5,0,0 +2013,8,18,7,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,910,62,1,1051,63,1,0 +2013,5,10,5,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1845,-5,0,2310,-7,0,0 +2013,8,25,7,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1745,78,1,2040,64,1,0 +2013,5,25,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1531,3,0,1850,17,1,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-2,0,1801,1,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1713,12,0,1919,11,0,0 +2013,10,24,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1345,-4,0,1638,-11,0,0 +2013,4,5,5,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1635,17,1,1930,-7,0,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-8,0,1435,-16,0,0 +2013,4,30,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,2,0,1510,-18,0,0 +2013,6,8,6,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,1635,-2,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,1,0,2050,-21,0,0 +2013,7,7,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1525,-4,0,1940,1,0,0 +2013,5,5,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,6,0,1520,3,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2101,14,0,2227,16,1,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1231,-5,0,1252,-3,0,0 +2013,7,9,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,15,1,1656,15,1,0 +2013,7,27,6,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,7,0,2245,0,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,0,0,1153,-16,0,0 +2013,9,17,2,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,725,-11,0,1116,-19,0,0 +2013,5,14,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-9,0,1220,-4,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,8,0,1849,8,0,0 +2013,5,10,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1435,-2,0,1547,-12,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1123,-2,0,1331,-15,0,0 +2013,6,24,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1300,52,1,1505,106,1,0 +2013,8,14,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,705,1,0,930,0,0,0 +2013,6,4,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,-9,0,1720,-7,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1600,2,0,2310,-3,0,0 +2013,5,27,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,810,-9,0,0 +2013,8,7,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,705,-4,0,910,-19,0,0 +2013,10,2,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1220,21,1,1450,34,1,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,750,13,0,1135,7,0,0 +2013,7,15,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,820,-5,0,1001,-30,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1843,-1,0,2330,-30,0,0 +2013,4,12,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1714,1,0,1833,2,0,0 +2013,7,3,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,20,1,1855,9,0,0 +2013,9,10,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,730,-9,0,825,-5,0,0 +2013,10,8,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-7,0,1611,1,0,0 +2013,8,15,4,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2035,31,1,505,1,0,0 +2013,5,24,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,747,-7,0,0 +2013,9,22,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,859,-5,0,1017,-10,0,0 +2013,7,6,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,50,0,0,543,-6,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,615,-1,0,725,-7,0,0 +2013,5,20,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-6,0,1105,-2,0,0 +2013,8,1,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,0,0,2132,-9,0,0 +2013,7,29,1,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1035,-7,0,1405,-20,0,0 +2013,9,7,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,730,1,0,855,-8,0,0 +2013,5,20,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1825,-7,0,1927,-12,0,0 +2013,9,27,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2135,-2,0,2231,-17,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-3,0,1417,-33,0,0 +2013,7,23,2,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,0,,735,0,1,1 +2013,6,23,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1013,8,0,1140,-8,0,0 +2013,7,30,2,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1535,5,0,1650,5,0,0 +2013,8,14,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1332,3,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,0,,1933,0,1,1 +2013,6,11,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,640,0,0,755,3,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1646,-4,0,2123,-18,0,0 +2013,10,1,2,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,3,0,1143,-8,0,0 +2013,8,23,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1757,14,0,1910,15,1,0 +2013,7,4,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-10,0,2200,-4,0,0 +2013,10,28,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-7,0,1605,-19,0,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,-6,0,2347,-21,0,0 +2013,6,11,2,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,800,-5,0,1013,-21,0,0 +2013,8,11,7,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,13,0,1930,5,0,0 +2013,10,26,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-6,0,1200,-17,0,0 +2013,8,27,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-9,0,2249,-19,0,0 +2013,10,18,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2137,-8,0,2156,-1,0,0 +2013,10,31,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,650,-6,0,830,16,1,0 +2013,9,7,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,3,0,758,6,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,0,0,1937,56,1,0 +2013,8,1,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,810,-7,0,908,-5,0,0 +2013,8,11,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,0,0,1931,-17,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1215,0,0,1323,-4,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,-1,0,1856,-3,0,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1525,1,0,1720,-4,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,827,-4,0,954,-20,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1021,-3,0,1350,-5,0,0 +2013,4,8,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-9,0,1245,-13,0,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2105,7,0,2215,5,0,0 +2013,6,8,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1455,22,1,1620,4,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2200,-2,0,2309,-13,0,0 +2013,10,6,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,958,-4,0,1058,-15,0,0 +2013,4,26,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2110,24,1,2125,25,1,0 +2013,10,27,7,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-10,0,2059,-14,0,0 +2013,5,22,3,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2106,7,0,2339,8,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,45,1,930,28,1,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2020,108,1,2155,117,1,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,-3,0,1110,-9,0,0 +2013,7,9,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-11,0,1420,-26,0,0 +2013,4,12,5,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,30,1,1635,22,1,0 +2013,8,23,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-2,0,821,1,0,0 +2013,7,16,2,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1904,-6,0,2111,-3,0,0 +2013,8,22,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1043,-3,0,1840,-3,0,0 +2013,9,17,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,730,-4,0,929,-11,0,0 +2013,5,23,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-7,0,618,-23,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2240,-2,0,2348,-7,0,0 +2013,7,18,4,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1437,-5,0,1551,-7,0,0 +2013,8,31,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,-11,0,1225,-11,0,0 +2013,10,25,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1725,10,0,2012,3,0,0 +2013,10,19,6,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,-6,0,1850,-18,0,0 +2013,5,13,1,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,1025,-9,0,1245,-2,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,1823,-2,0,0 +2013,4,27,6,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1428,-4,0,1624,-19,0,0 +2013,4,15,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,600,-3,0,850,-1,0,0 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1255,2,0,1544,-14,0,0 +2013,8,13,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1325,42,1,1633,14,0,0 +2013,4,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1105,1,0,1215,11,0,0 +2013,8,18,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1857,-9,0,2103,-11,0,0 +2013,8,26,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1102,-19,0,0 +2013,5,15,3,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-5,0,1059,-22,0,0 +2013,4,25,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,840,484,1,900,494,1,0 +2013,4,30,2,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1105,1,0,1235,-13,0,0 +2013,10,28,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,111,1,1438,107,1,0 +2013,7,4,4,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1500,-4,0,1919,-36,0,0 +2013,6,14,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,-2,0,1322,-8,0,0 +2013,9,4,3,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1600,55,1,1906,44,1,0 +2013,8,29,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,804,-2,0,922,-17,0,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-1,0,1006,-16,0,0 +2013,7,21,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,3,0,1755,-5,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,53,1,1610,53,1,0 +2013,6,24,1,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1758,9,0,2252,5,0,0 +2013,8,12,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,-2,0,1046,-24,0,0 +2013,4,30,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2045,4,0,2200,-5,0,0 +2013,8,19,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,835,-10,0,853,-17,0,0 +2013,4,27,6,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,700,15,1,1120,1,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1700,2,0,2150,-25,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1314,1,0,1541,-15,0,0 +2013,9,16,1,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1311,13,0,1528,11,0,0 +2013,4,6,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,0,2122,-14,0,0 +2013,5,5,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,-10,0,1202,-13,0,0 +2013,7,10,3,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,-4,0,2145,-21,0,0 +2013,5,27,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,-2,0,2211,5,0,0 +2013,7,12,5,VX,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,800,-11,0,1610,-14,0,0 +2013,9,18,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,815,-15,0,1115,-28,0,0 +2013,4,22,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,1140,34,1,1524,57,1,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1101,16,1,1403,-12,0,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1420,35,1,2020,22,1,0 +2013,10,16,3,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1230,-6,0,1457,0,0,0 +2013,9,2,1,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1930,33,1,2250,67,1,0 +2013,10,21,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1745,-3,0,2024,1,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,735,-4,0,926,-12,0,0 +2013,10,15,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1313,-13,0,1403,-11,0,0 +2013,9,14,6,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1200,-5,0,1735,-16,0,0 +2013,7,31,3,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2104,6,0,2359,-4,0,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,830,-9,0,1049,-19,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1831,12,0,2259,16,1,0 +2013,8,15,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-13,0,853,-22,0,0 +2013,5,1,3,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-1,0,2057,-15,0,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1053,-5,0,1239,-17,0,0 +2013,10,20,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1235,10,0,1320,10,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2015,19,1,2230,17,1,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,-3,0,1115,-22,0,0 +2013,5,22,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,615,-17,0,0 +2013,5,22,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,-6,0,1924,-4,0,0 +2013,7,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1945,52,1,2105,49,1,0 +2013,10,26,6,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,8,0,1845,-8,0,0 +2013,8,6,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,847,27,1,1042,44,1,0 +2013,8,11,7,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1153,20,1,2023,12,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1445,0,,1710,0,1,1 +2013,9,8,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,735,-3,0,905,-5,0,0 +2013,5,19,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,855,-5,0,953,-6,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-8,0,1939,-16,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2115,1,0,2325,6,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1530,25,1,1745,1,0,0 +2013,7,25,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-4,0,745,-19,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1835,16,1,2100,5,0,0 +2013,6,13,4,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,113,1,1435,134,1,0 +2013,9,1,7,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,811,-1,0,1051,-3,0,0 +2013,5,6,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1615,-10,0,1943,9,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2151,-8,0,2334,-15,0,0 +2013,4,3,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-5,0,927,-9,0,0 +2013,8,13,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,905,1,0,920,-6,0,0 +2013,8,24,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,-14,0,740,-20,0,0 +2013,10,1,2,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1150,-6,0,1614,-5,0,0 +2013,7,3,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,43,1,2020,44,1,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1043,2,0,1220,-3,0,0 +2013,6,2,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2125,33,1,2259,16,1,0 +2013,5,15,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-9,0,1249,-26,0,0 +2013,7,27,6,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,-4,0,2216,-3,0,0 +2013,9,1,7,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,-9,0,2000,-30,0,0 +2013,5,12,7,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1131,-5,0,1541,-26,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,900,30,1,1030,54,1,0 +2013,6,27,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1705,17,1,1830,3,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,149,1,2359,157,1,0 +2013,9,20,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-3,0,1115,1,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,735,-7,0,1030,-6,0,0 +2013,10,19,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-2,0,1334,-1,0,0 +2013,6,14,5,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1311,-9,0,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1220,17,1,1705,3,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,940,-3,0,1045,0,0,0 +2013,10,2,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1103,-7,0,1150,-2,0,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-4,0,1600,-10,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,0,,1945,0,1,1 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1958,1,0,2134,-14,0,0 +2013,9,22,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1920,-5,0,2200,-15,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1200,34,1,1315,30,1,0 +2013,10,14,1,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1720,-4,0,2005,-7,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1635,63,1,1735,54,1,0 +2013,6,23,7,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1116,-3,0,1350,8,0,0 +2013,9,21,6,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,95,1,1819,90,1,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,14,0,2225,-3,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1033,150,1,1311,131,1,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1325,52,1,1520,45,1,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-1,0,1649,-17,0,0 +2013,5,18,6,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,914,-16,0,1458,-19,0,0 +2013,8,17,6,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,748,38,1,1302,40,1,0 +2013,9,28,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1230,2,0,1345,-1,0,0 +2013,8,7,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,0,0,1935,16,1,0 +2013,7,18,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-5,0,2050,0,1,1 +2013,5,8,3,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1720,-6,0,1850,-3,0,0 +2013,8,29,4,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1530,53,1,1715,50,1,0 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2050,6,0,2310,-1,0,0 +2013,8,14,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,0,0,1329,6,0,0 +2013,4,10,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-8,0,1425,10,0,0 +2013,10,14,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-2,0,950,3,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,924,-5,0,1246,-11,0,0 +2013,6,15,6,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1405,-5,0,1524,-15,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,6,0,1000,5,0,0 +2013,4,8,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11042,Cleveland-Hopkins International,Cleveland,OH,2334,2,0,630,-8,0,0 +2013,7,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,855,4,0,1140,-6,0,0 +2013,5,4,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,2,0,1800,-2,0,0 +2013,6,3,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2250,-8,0,815,-28,0,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1901,-9,0,2021,-4,0,0 +2013,5,25,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,6,0,1130,-8,0,0 +2013,8,12,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1415,-7,0,1555,0,0,0 +2013,6,15,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1505,-4,0,1553,11,0,0 +2013,5,20,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,-3,0,1410,-15,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,718,-3,0,1024,-13,0,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2130,-2,0,2235,0,0,0 +2013,5,25,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,905,-2,0,1145,0,0,0 +2013,9,1,7,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1325,2,0,1510,-25,0,0 +2013,6,28,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,4,0,1805,-5,0,0 +2013,6,25,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1822,131,1,2140,129,1,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,804,0,0,932,-6,0,0 +2013,9,29,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1310,-7,0,1425,-21,0,0 +2013,5,6,1,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1446,-6,0,1654,-22,0,0 +2013,4,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1625,-2,0,1740,-12,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1452,1,0,1610,-13,0,0 +2013,8,18,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,941,-5,0,1027,13,0,0 +2013,8,6,2,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-7,0,1122,-7,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2032,-5,0,2236,-24,0,0 +2013,6,24,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,51,1,1831,32,1,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,9,0,1535,-3,0,0 +2013,10,3,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1133,-3,0,1309,-10,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1605,5,0,1920,-3,0,0 +2013,7,24,3,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1921,26,1,2337,5,0,0 +2013,4,30,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-9,0,859,-14,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1645,41,1,1856,55,1,0 +2013,9,17,2,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1036,-3,0,1242,-8,0,0 +2013,5,11,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1101,-5,0,1155,6,0,0 +2013,7,9,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,79,1,2057,58,1,0 +2013,8,23,5,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,6,0,1319,-9,0,0 +2013,6,24,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-3,0,2125,26,1,0 +2013,6,29,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1115,-2,0,1300,-9,0,0 +2013,8,30,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,7,0,1709,9,0,0 +2013,5,16,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-2,0,2125,-14,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1020,-5,0,1602,-20,0,0 +2013,7,13,6,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1459,8,0,1749,-1,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2255,-4,0,16,2,0,0 +2013,10,20,7,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,-1,0,1629,-18,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1230,3,0,1525,-2,0,0 +2013,10,18,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1655,10,0,1811,7,0,0 +2013,6,19,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,600,-6,0,615,-2,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1521,-1,0,1650,16,1,0 +2013,6,14,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,-4,0,617,-19,0,0 +2013,6,10,1,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1728,28,1,2003,28,1,0 +2013,4,5,5,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1224,-1,0,1343,-2,0,0 +2013,10,7,1,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1425,63,1,2259,66,1,0 +2013,6,29,6,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1510,-5,0,1655,14,0,0 +2013,8,13,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,745,-6,0,830,0,0,0 +2013,9,3,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1230,16,1,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2210,15,1,2359,19,1,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1810,-4,0,2008,-14,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1625,64,1,1735,66,1,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1510,77,1,1845,60,1,0 +2013,9,22,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1249,-1,0,1351,-9,0,0 +2013,4,17,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,845,-1,0,1036,-15,0,0 +2013,4,27,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1529,2,0,1858,-55,0,0 +2013,6,2,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,930,4,0,1229,-2,0,0 +2013,5,16,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,31,1,1947,28,1,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,0,0,950,-2,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1040,0,0,1535,-7,0,0 +2013,5,15,3,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1430,-5,0,1818,-21,0,0 +2013,9,12,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,17,1,940,12,0,0 +2013,4,14,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1642,-9,0,2110,-37,0,0 +2013,4,30,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1210,-6,0,1410,-3,0,0 +2013,4,11,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,3,0,1606,13,0,0 +2013,4,4,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,-4,0,1445,-33,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,-2,0,2010,-23,0,0 +2013,6,5,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1615,37,1,1800,44,1,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2000,22,1,2135,6,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1107,0,0,1448,-9,0,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2020,1,0,2200,17,1,0 +2013,4,3,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-10,0,1750,-22,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,900,16,1,945,13,0,0 +2013,4,4,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,853,-20,0,1120,26,1,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,-2,0,2220,-3,0,0 +2013,7,19,5,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1335,28,1,1920,9,0,0 +2013,7,15,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,57,1,2105,44,1,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2135,12,0,2255,12,0,0 +2013,5,30,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1315,16,1,1529,31,1,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,725,-4,0,839,-21,0,0 +2013,4,21,7,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,955,-5,0,1205,28,1,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,845,0,0,1124,10,0,0 +2013,6,6,4,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-8,0,1025,6,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1405,-1,0,1500,-2,0,0 +2013,9,15,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,540,-4,0,900,-23,0,0 +2013,5,6,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,915,-10,0,1105,-28,0,0 +2013,9,27,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1801,-1,0,2359,-21,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-10,0,1004,-25,0,0 +2013,9,23,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,24,1,1940,29,1,0 +2013,5,7,2,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1345,-4,0,1610,-8,0,0 +2013,10,15,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,-3,0,2139,0,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1040,-3,0,1100,3,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-3,0,1304,-3,0,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1705,110,1,2255,93,1,0 +2013,7,19,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1131,-7,0,1423,-4,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1145,0,0,1315,-8,0,0 +2013,5,7,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1725,22,1,1735,16,1,0 +2013,10,3,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-6,0,842,-15,0,0 +2013,9,6,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1955,0,0,2121,-15,0,0 +2013,8,3,6,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,10,0,2200,32,1,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1510,-3,0,1815,-30,0,0 +2013,5,14,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-2,0,1041,-16,0,0 +2013,9,23,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-6,0,1241,-13,0,0 +2013,8,19,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,5,0,1645,8,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,3,0,2300,-12,0,0 +2013,8,9,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-4,0,735,-3,0,0 +2013,9,20,5,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,835,-6,0,1145,5,0,0 +2013,10,9,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1819,-5,0,1955,-8,0,0 +2013,8,31,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1245,15,1,1525,-1,0,0 +2013,9,14,6,YV,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1834,2,0,2117,-12,0,0 +2013,9,5,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,5,0,1537,-4,0,0 +2013,4,13,6,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2105,-7,0,514,-18,0,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1402,60,1,1607,38,1,0 +2013,4,15,1,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1330,6,0,1604,15,1,0 +2013,7,11,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-2,0,1212,-10,0,0 +2013,6,27,4,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,915,-4,0,1115,-13,0,0 +2013,9,17,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-9,0,1239,-6,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1023,56,1,1230,45,1,0 +2013,5,11,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1555,0,0,1849,7,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,-2,0,825,-9,0,0 +2013,8,8,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-5,0,1255,-11,0,0 +2013,6,18,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,725,-7,0,838,-17,0,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1526,-5,0,1706,-26,0,0 +2013,10,30,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,610,-4,0,700,14,0,0 +2013,9,5,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-7,0,1200,-12,0,0 +2013,9,14,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1600,-8,0,1625,-18,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-3,0,1313,-9,0,0 +2013,7,1,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1223,-13,0,2045,-3,0,0 +2013,6,27,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,902,128,1,1116,120,1,0 +2013,6,21,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1000,-2,0,1132,-4,0,0 +2013,6,27,4,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1530,-3,0,1800,-9,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1444,4,0,1554,19,1,0 +2013,5,8,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-13,0,1530,-14,0,0 +2013,9,28,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,4,0,1240,3,0,0 +2013,5,24,5,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,30,1,1213,47,1,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1735,34,1,2015,54,1,0 +2013,9,17,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,846,0,0,939,5,0,0 +2013,6,25,2,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2335,159,1,759,136,1,0 +2013,7,2,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,736,11,0,825,14,0,0 +2013,4,11,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1140,-5,0,1306,-8,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1010,-9,0,1110,-3,0,0 +2013,4,4,4,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,532,-8,0,950,-8,0,0 +2013,6,28,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2115,181,1,2320,182,1,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,23,1,1110,16,1,0 +2013,8,16,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-6,0,845,13,0,0 +2013,5,7,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,835,-8,0,1012,-10,0,0 +2013,8,28,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-3,0,2115,-3,0,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-8,0,1828,3,0,0 +2013,5,18,6,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1635,-5,0,1940,-13,0,0 +2013,7,12,5,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1822,1,0,2033,2,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1000,30,1,1225,40,1,0 +2013,4,17,3,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-7,0,1150,10,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1620,-5,0,1850,-20,0,0 +2013,6,6,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1422,16,1,2159,-3,0,0 +2013,7,13,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,1028,-3,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2220,215,1,20,181,1,0 +2013,6,12,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1105,27,1,1215,18,1,0 +2013,8,25,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1555,-3,0,1715,-3,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,940,0,0,1205,5,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1032,-7,0,1217,-4,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,4,0,2335,51,1,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1905,8,0,2240,-13,0,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,5,0,1705,2,0,0 +2013,7,18,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,27,1,1643,28,1,0 +2013,9,5,4,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2000,-4,0,2112,-22,0,0 +2013,5,25,6,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1635,4,0,1940,-6,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1730,0,0,5,15,1,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,645,-6,0,855,-4,0,0 +2013,4,7,7,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1839,-10,0,2015,-23,0,0 +2013,10,13,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,849,-3,0,1142,-14,0,0 +2013,6,24,1,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,-4,0,1230,-10,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,19,1,935,-17,0,0 +2013,5,24,5,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-1,0,1620,-15,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,948,15,1,1104,1,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,-6,0,2034,-8,0,0 +2013,6,7,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2135,30,1,2335,27,1,0 +2013,5,6,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1740,0,0,1900,7,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1130,0,,1252,0,1,1 +2013,5,14,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,-10,0,1041,-18,0,0 +2013,9,20,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1850,-2,0,2249,-1,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2130,2,0,2250,1,0,0 +2013,9,20,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,929,31,1,1400,28,1,0 +2013,6,26,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,750,0,0,1035,-9,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2300,0,,8,0,1,1 +2013,8,31,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,745,-1,0,815,-11,0,0 +2013,10,29,2,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,72,1,917,56,1,0 +2013,6,4,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1613,-1,0,1716,-1,0,0 +2013,5,15,3,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1215,-4,0,1355,-31,0,0 +2013,4,10,3,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,-6,0,1118,7,0,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1603,118,1,1742,126,1,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,-1,0,2221,-21,0,0 +2013,9,4,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2034,85,1,2123,92,1,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,14,0,2250,2,0,0 +2013,9,18,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1730,-6,0,1850,-5,0,0 +2013,10,31,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1251,-5,0,1429,-1,0,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1430,-2,0,1725,-19,0,0 +2013,10,29,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-2,0,1520,-16,0,0 +2013,6,10,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,0,0,1108,-12,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,945,14,0,1200,16,1,0 +2013,6,21,5,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,56,1,1835,34,1,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2320,1,0,750,-34,0,0 +2013,8,7,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1525,7,0,1627,4,0,0 +2013,5,7,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1251,3,0,1449,-5,0,0 +2013,4,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,655,0,0,824,-2,0,0 +2013,4,30,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,841,-10,0,1009,-11,0,0 +2013,4,22,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-4,0,1201,-13,0,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1255,-3,0,1532,-2,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-4,0,1005,3,0,0 +2013,8,4,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1620,-2,0,1705,-9,0,0 +2013,7,10,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,68,1,1832,140,1,0 +2013,6,22,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,0,0,1915,-23,0,0 +2013,7,10,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1027,-3,0,1124,12,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,2016,17,1,2358,30,1,0 +2013,4,11,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,735,-6,0,850,-5,0,0 +2013,4,5,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2115,3,0,2250,-6,0,0 +2013,4,4,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,900,0,,1032,0,1,1 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1309,-4,0,1448,-17,0,0 +2013,10,6,7,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1848,3,0,1920,-2,0,0 +2013,7,29,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,-2,0,1638,-13,0,0 +2013,4,20,6,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,2,0,1951,2,0,0 +2013,5,15,3,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1345,3,0,1520,-15,0,0 +2013,7,3,3,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-7,0,1903,-26,0,0 +2013,6,15,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,740,-11,0,0 +2013,7,16,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,735,-8,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,58,1,2335,39,1,0 +2013,4,14,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1315,-9,0,1611,1,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,830,-6,0,1045,0,0,0 +2013,5,26,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1525,46,1,1932,35,1,0 +2013,6,3,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1220,-3,0,1350,-13,0,0 +2013,9,19,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-6,0,1003,-41,0,0 +2013,4,2,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-3,0,1540,-9,0,0 +2013,8,22,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,-6,0,1536,1,0,0 +2013,7,31,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-2,0,1919,-11,0,0 +2013,6,26,3,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1626,103,1,1835,95,1,0 +2013,8,19,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,1345,628,1,2021,612,1,0 +2013,8,5,1,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,1,0,1231,52,1,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2040,21,1,2210,7,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,10,0,1515,19,1,0 +2013,5,17,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1920,0,0,2225,-3,0,0 +2013,7,25,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,23,1,1735,33,1,0 +2013,5,17,5,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,26,1,1950,22,1,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,-1,0,650,-6,0,0 +2013,6,22,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1210,16,1,1320,12,0,0 +2013,6,24,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1445,30,1,1620,71,1,0 +2013,9,17,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,2000,-1,0,2127,-4,0,0 +2013,7,18,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1745,13,0,1930,8,0,0 +2013,10,21,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-9,0,834,3,0,0 +2013,4,9,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1108,24,1,1412,-5,0,0 +2013,8,7,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,-6,0,1608,2,0,0 +2013,4,29,1,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1840,-6,0,2215,-17,0,0 +2013,6,15,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1650,26,1,1755,26,1,0 +2013,9,15,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2049,-1,0,2153,10,0,0 +2013,4,24,3,YV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1719,-2,0,1840,-11,0,0 +2013,5,29,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,1248,-8,0,0 +2013,8,3,6,FL,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,1,0,1525,1,0,0 +2013,6,22,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-5,0,937,-4,0,0 +2013,5,23,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,955,-4,0,1115,12,0,0 +2013,5,14,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,58,1,1755,69,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,15,1,1525,6,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2010,-3,0,2147,-2,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1830,5,0,1940,4,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,33,1,2058,26,1,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1930,111,1,2101,132,1,0 +2013,8,19,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,941,-3,0,1043,-4,0,0 +2013,6,19,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-4,0,1348,19,1,0 +2013,10,11,5,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-1,0,1045,-20,0,0 +2013,6,14,5,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1421,-6,0,1601,-25,0,0 +2013,9,19,4,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-4,0,550,-1,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1030,9,0,1302,-7,0,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,34,1,1650,33,1,0 +2013,8,3,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,11,0,1640,8,0,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,2135,109,1,2346,107,1,0 +2013,10,21,1,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,953,0,0,1327,-10,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1730,0,0,1900,-17,0,0 +2013,6,28,5,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,24,1,1910,20,1,0 +2013,6,1,6,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1640,114,1,1845,111,1,0 +2013,5,24,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1920,6,0,2050,11,0,0 +2013,6,24,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,934,-7,0,1036,-17,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2245,51,1,2347,51,1,0 +2013,6,7,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,905,-2,0,1020,-6,0,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,109,1,1035,109,1,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1115,-6,0,1406,-20,0,0 +2013,8,26,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,9,0,625,-12,0,0 +2013,7,30,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2226,0,0,425,-11,0,0 +2013,4,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1400,-8,0,1522,-10,0,0 +2013,4,9,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1925,114,1,2120,104,1,0 +2013,5,1,3,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,620,-1,0,940,-8,0,0 +2013,4,22,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1642,-5,0,1702,-12,0,0 +2013,6,9,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,44,1,1015,19,1,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,3,0,1226,17,1,0 +2013,5,27,1,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,42,1,1932,58,1,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,-2,0,2035,-6,0,0 +2013,9,24,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1829,-6,0,2122,-7,0,0 +2013,6,14,5,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1630,-2,0,1915,-15,0,0 +2013,4,2,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1030,0,0,1250,0,0,0 +2013,4,9,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1750,83,1,1905,72,1,0 +2013,10,10,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,847,-6,0,1125,-7,0,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1205,1,0,1310,17,1,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,950,9,0,1745,9,0,0 +2013,10,27,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,503,2,0,900,18,1,0 +2013,10,14,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,640,-2,0,800,-14,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1630,21,1,1910,14,0,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,923,-28,0,0 +2013,8,3,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1155,26,1,1410,22,1,0 +2013,5,4,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1520,-5,0,1632,19,1,0 +2013,10,30,3,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,-8,0,1840,9,0,0 +2013,9,15,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1347,-5,0,1455,-9,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,828,-5,0,936,-11,0,0 +2013,6,24,1,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1513,18,1,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,0,0,1247,-11,0,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1910,-6,0,2305,-17,0,0 +2013,4,1,1,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1058,-15,0,1302,-22,0,0 +2013,10,10,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1915,11,0,2102,-8,0,0 +2013,4,4,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,2015,35,1,2222,-1,0,0 +2013,9,13,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,935,-5,0,1226,-6,0,0 +2013,10,30,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1740,9,0,1900,11,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1830,43,1,2000,32,1,0 +2013,9,15,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,600,159,1,738,142,1,0 +2013,7,15,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,0,0,1412,30,1,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,940,3,0,1410,55,1,0 +2013,5,10,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,10,0,1221,7,0,0 +2013,8,22,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,12,0,1744,-2,0,0 +2013,5,14,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,837,-6,0,1044,0,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1736,15,1,1949,27,1,0 +2013,6,21,5,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1107,-8,0,1349,-20,0,0 +2013,10,13,7,EV,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1201,-1,0,1327,7,0,0 +2013,5,7,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,910,-2,0,1059,-16,0,0 +2013,4,6,6,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,540,-7,0,905,-19,0,0 +2013,6,17,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-6,0,2259,28,1,0 +2013,8,15,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1603,-7,0,1823,-26,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,846,-1,0,956,-24,0,0 +2013,6,20,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,-3,0,1945,25,1,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,4,0,1909,-16,0,0 +2013,5,13,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1925,72,1,2043,72,1,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,600,-2,0,1401,15,1,0 +2013,10,18,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,545,-4,0,723,-8,0,0 +2013,9,15,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1415,2,0,1625,-3,0,0 +2013,6,16,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2141,87,1,2359,75,1,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,1,0,1035,-11,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-4,0,1601,-17,0,0 +2013,4,12,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1730,-3,0,1842,-12,0,0 +2013,7,21,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,0,,2044,0,1,1 +2013,7,16,2,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1557,-11,0,2020,-14,0,0 +2013,8,16,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,-4,0,1807,-2,0,0 +2013,10,2,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1008,-10,0,1123,-8,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-1,0,2143,-13,0,0 +2013,7,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1040,11,0,1429,25,1,0 +2013,4,16,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,915,6,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2145,0,0,15,-9,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,731,12,0,1008,10,0,0 +2013,9,15,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,12,0,2235,0,0,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1010,-2,0,1135,-8,0,0 +2013,9,6,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,6,0,910,4,0,0 +2013,9,12,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-4,0,1052,-9,0,0 +2013,6,25,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1705,-7,0,1810,18,1,0 +2013,7,11,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1115,0,0,1125,1,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2035,14,0,2155,-14,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1620,3,0,1910,-3,0,0 +2013,4,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1240,0,0,1601,-4,0,0 +2013,7,31,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-5,0,450,4,0,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1512,-8,0,1914,-6,0,0 +2013,7,6,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,1,0,830,3,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,44,1,1201,72,1,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1550,46,1,1655,42,1,0 +2013,8,26,1,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-7,0,847,-15,0,0 +2013,6,14,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1416,-1,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,-2,0,1340,-11,0,0 +2013,7,6,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1058,-3,0,1209,-15,0,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,700,-4,0,821,-5,0,0 +2013,4,29,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1150,1,0,1750,-25,0,0 +2013,10,24,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,839,-3,0,1035,-1,0,0 +2013,10,23,3,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-6,0,2000,-6,0,0 +2013,4,11,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,745,0,0,902,-6,0,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1505,-4,0,1735,-2,0,0 +2013,8,29,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1745,-3,0,2005,-15,0,0 +2013,5,29,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-7,0,1457,-17,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-2,0,1605,-21,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,-5,0,2255,-21,0,0 +2013,7,21,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1104,61,1,1155,87,1,0 +2013,7,30,2,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-6,0,2229,-30,0,0 +2013,5,19,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1300,5,0,1435,-5,0,0 +2013,10,8,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1339,-1,0,1450,5,0,0 +2013,5,17,5,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,755,-2,0,0 +2013,6,7,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1205,-2,0,1311,-11,0,0 +2013,10,29,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,41,1,1345,31,1,0 +2013,10,31,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1315,72,1,1405,69,1,0 +2013,6,27,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,-4,0,1204,-9,0,0 +2013,5,27,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1717,-1,0,1955,-7,0,0 +2013,6,13,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1435,-2,0,1603,-11,0,0 +2013,8,15,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1025,-7,0,1310,-9,0,0 +2013,4,24,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2132,-4,0,542,-33,0,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1553,-5,0,1750,-18,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2003,-6,0,2108,-14,0,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1534,-1,0,1728,-22,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,915,0,0,1140,-4,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,0,0,1240,-17,0,0 +2013,9,30,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1947,17,1,2250,-6,0,0 +2013,6,18,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,6,0,810,10,0,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,38,1,2050,48,1,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,900,0,0,1015,-5,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,-3,0,2132,-11,0,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-7,0,1710,-10,0,0 +2013,4,13,6,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-1,0,845,-24,0,0 +2013,6,6,4,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-5,0,1240,0,0,0 +2013,10,22,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,0,0,1544,-10,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,15,1,1440,8,0,0 +2013,7,13,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-9,0,1055,-12,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1050,11,0,1339,11,0,0 +2013,5,1,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1125,-7,0,1305,-18,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,930,5,0,1455,-3,0,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,915,1,0,1049,-14,0,0 +2013,9,12,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,-5,0,1816,-7,0,0 +2013,7,6,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-1,0,1824,32,1,0 +2013,5,16,4,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,-7,0,1413,-22,0,0 +2013,10,13,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,-3,0,1515,18,1,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,750,3,0,955,-9,0,0 +2013,6,16,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1651,-15,0,1915,-33,0,0 +2013,4,25,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,700,-3,0,902,6,0,0 +2013,9,19,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1456,-6,0,1640,-23,0,0 +2013,6,25,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,8,0,1435,13,0,0 +2013,6,21,5,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,57,1,130,49,1,0 +2013,8,21,3,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-7,0,1230,-13,0,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1005,-4,0,1127,-11,0,0 +2013,9,28,6,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,810,-5,0,925,-21,0,0 +2013,4,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1137,57,1,1349,84,1,0 +2013,4,8,1,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1110,-8,0,1311,-18,0,0 +2013,9,2,1,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,0,0,845,-3,0,0 +2013,7,25,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1515,-1,0,1915,-6,0,0 +2013,8,25,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,2,0,2250,-16,0,0 +2013,8,6,2,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,4,0,1013,-9,0,0 +2013,5,30,4,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1334,3,0,1542,0,0,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1047,4,0,1630,9,0,0 +2013,8,15,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-8,0,1516,-10,0,0 +2013,8,17,6,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,9,0,2005,-21,0,0 +2013,5,29,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1554,18,1,1820,11,0,0 +2013,4,30,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,-1,0,1710,-10,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1315,22,1,1540,19,1,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,22,1,1825,29,1,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1403,91,1,2030,124,1,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1640,0,0,1952,-26,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1805,5,0,1925,-7,0,0 +2013,6,24,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,915,-5,0,1740,-38,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,0,0,1105,-16,0,0 +2013,9,1,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1835,-6,0,1940,-5,0,0 +2013,5,10,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,6,0,1652,-2,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1620,17,1,1850,16,1,0 +2013,7,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,30,1,1144,52,1,0 +2013,9,23,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,0,0,1538,-3,0,0 +2013,8,6,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,19,1,2055,9,0,0 +2013,10,29,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1337,-4,0,1530,-10,0,0 +2013,5,28,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,2,0,1735,-4,0,0 +2013,5,10,5,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,4,0,1912,-15,0,0 +2013,8,30,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,57,1,1500,44,1,0 +2013,7,11,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,32,1,1004,22,1,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1635,10,0,1815,6,0,0 +2013,7,11,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1454,-1,0,1710,-5,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,900,42,1,1145,10,0,0 +2013,5,16,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1515,3,0,1816,-1,0,0 +2013,8,9,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1207,-5,0,1343,-25,0,0 +2013,6,19,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-2,0,1010,-17,0,0 +2013,8,28,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1135,15,1,1310,20,1,0 +2013,8,2,5,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1710,201,1,2005,191,1,0 +2013,8,23,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1805,8,0,1938,6,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1240,3,0,1500,-23,0,0 +2013,6,10,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-4,0,2103,-13,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,901,4,0,1050,-7,0,0 +2013,5,13,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-1,0,912,-19,0,0 +2013,4,25,4,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1232,3,0,2030,1,0,0 +2013,6,20,4,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1040,-3,0,1614,-21,0,0 +2013,4,3,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1725,-2,0,2050,-18,0,0 +2013,4,29,1,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,-5,0,1915,4,0,0 +2013,6,17,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,708,-4,0,847,-18,0,0 +2013,4,29,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,730,-3,0,1023,-6,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,731,-1,0,920,-5,0,0 +2013,7,2,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,933,-1,0,1215,4,0,0 +2013,5,11,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,856,46,1,1146,34,1,0 +2013,9,26,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1240,-1,0,1336,-15,0,0 +2013,4,8,1,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,708,-7,0,843,-6,0,0 +2013,4,22,1,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,94,1,2140,161,1,0 +2013,10,7,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,810,-4,0,1020,6,0,0 +2013,10,29,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1350,-6,0,1605,2,0,0 +2013,5,9,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-4,0,1017,-18,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1310,7,0,1425,2,0,0 +2013,4,16,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1020,0,,1625,0,1,1 +2013,7,3,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,740,-4,0,835,-32,0,0 +2013,8,21,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1038,2,0,1144,9,0,0 +2013,10,2,3,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,141,1,1245,126,1,0 +2013,9,14,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-7,0,1447,-16,0,0 +2013,4,12,5,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,2045,-3,0,15,-6,0,0 +2013,6,22,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,-7,0,1115,-9,0,0 +2013,10,6,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1925,26,1,2030,12,0,0 +2013,8,20,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1725,-3,0,1900,-16,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,-8,0,2158,-5,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2005,0,0,2241,21,1,0 +2013,5,20,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1606,2,0,1951,2,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,4,0,2235,17,1,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1350,3,0,1615,-21,0,0 +2013,5,26,7,YV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1530,-8,0,1635,-12,0,0 +2013,8,20,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,10,0,759,2,0,0 +2013,6,20,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1330,49,1,1500,30,1,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,737,0,0,1300,-30,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1450,9,0,1635,12,0,0 +2013,10,23,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2110,-9,0,2355,-17,0,0 +2013,5,31,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,728,-5,0,906,-4,0,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,152,1,2145,159,1,0 +2013,4,4,4,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1959,17,1,2120,14,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,0,0,1046,-4,0,0 +2013,5,16,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-2,0,1920,-5,0,0 +2013,8,9,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1913,34,1,2125,32,1,0 +2013,8,30,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1531,-5,0,1740,-11,0,0 +2013,6,24,1,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1514,-7,0,1735,-8,0,0 +2013,8,6,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,705,-2,0,820,-2,0,0 +2013,6,18,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,11,0,800,31,1,0 +2013,10,19,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2320,-5,0,750,-30,0,0 +2013,5,20,1,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-4,0,1703,-4,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,-5,0,1039,-29,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,-5,0,2010,2,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,0,0,820,-9,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1505,13,0,1710,8,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,2012,63,1,4,53,1,0 +2013,6,14,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,21,1,1140,17,1,0 +2013,10,27,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1417,0,0,1601,5,0,0 +2013,4,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1513,54,1,1805,47,1,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2030,111,1,2320,106,1,0 +2013,8,5,1,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,610,0,0,745,-6,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1815,54,1,2000,35,1,0 +2013,4,11,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,0,,920,0,1,1 +2013,4,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1955,-1,0,2108,10,0,0 +2013,8,11,7,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1250,316,1,1425,309,1,0 +2013,9,21,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,6,0,1055,-6,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2150,1,0,2337,16,1,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1105,4,0,1210,8,0,0 +2013,6,11,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1600,5,0,1730,0,0,0 +2013,7,26,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,59,1,1922,53,1,0 +2013,6,30,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,43,1,1938,33,1,0 +2013,10,25,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1319,-5,0,1444,-10,0,0 +2013,10,13,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,-2,0,1527,-19,0,0 +2013,7,16,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,1,0,1215,-11,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1525,3,0,1625,-19,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,825,-3,0,945,0,0,0 +2013,4,12,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-4,0,1216,1,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,-1,0,1052,-5,0,0 +2013,8,5,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-4,0,2102,-7,0,0 +2013,10,1,2,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1653,-4,0,1839,-16,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,-4,0,2322,-15,0,0 +2013,10,18,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-8,0,1722,-9,0,0 +2013,7,12,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,833,-3,0,1041,-3,0,0 +2013,10,20,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,-3,0,1900,-14,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1755,44,1,2335,38,1,0 +2013,4,1,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,165,1,1654,183,1,0 +2013,8,18,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,-8,0,941,-17,0,0 +2013,5,21,2,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,25,1,1940,34,1,0 +2013,10,4,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1840,-9,0,2155,-5,0,0 +2013,8,14,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-3,0,1947,28,1,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,38,1,2215,26,1,0 +2013,10,8,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1605,0,0,1811,-20,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1005,0,0,1146,-4,0,0 +2013,8,19,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-6,0,955,-19,0,0 +2013,10,4,5,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,18,1,2035,20,1,0 +2013,4,18,4,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,940,2,0,1235,14,0,0 +2013,4,17,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1405,0,,1555,0,1,1 +2013,4,4,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1325,5,0,1445,-12,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,0,0,2000,-8,0,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,705,-2,0,1225,-7,0,0 +2013,7,9,2,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,809,-6,0,917,-4,0,0 +2013,8,25,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-5,0,1747,19,1,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2035,16,1,2255,26,1,0 +2013,10,27,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1144,4,0,1406,1,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1753,-2,0,1843,11,0,0 +2013,5,11,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1430,48,1,1810,48,1,0 +2013,4,5,5,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1700,-3,0,1820,-3,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1703,48,1,1847,35,1,0 +2013,4,16,2,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-9,0,1033,-13,0,0 +2013,7,17,3,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-5,0,2205,-9,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1605,9,0,2255,19,1,0 +2013,8,24,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,950,-2,0,1115,-16,0,0 +2013,5,11,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1801,-11,0,1926,-17,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1355,11,0,1655,-5,0,0 +2013,8,21,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1709,19,1,1844,15,1,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,0,0,1105,-20,0,0 +2013,8,26,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1645,-4,0,1735,-5,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,800,-12,0,0 +2013,7,31,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,847,12,0,0 +2013,5,23,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,845,-2,0,1257,-13,0,0 +2013,10,29,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,2202,-8,0,0 +2013,5,29,3,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1625,13,0,1845,-6,0,0 +2013,6,5,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,820,-7,0,1058,-16,0,0 +2013,9,19,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,40,1,2020,43,1,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,-3,0,2133,66,1,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,14,0,1045,8,0,0 +2013,8,28,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,849,45,1,1022,39,1,0 +2013,10,4,5,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1215,6,0,1329,13,0,0 +2013,6,16,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,735,-8,0,1010,-23,0,0 +2013,5,28,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1401,27,1,1705,27,1,0 +2013,4,26,5,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,700,-6,0,838,16,1,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1828,-4,0,2313,-4,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2214,-10,0,2244,-20,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1035,-5,0,1154,-10,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1340,20,1,1430,5,0,0 +2013,6,14,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,8,0,1940,12,0,0 +2013,5,29,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1015,14,0,1207,9,0,0 +2013,7,23,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1805,-5,0,2000,-11,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,21,1,1927,40,1,0 +2013,8,28,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,4,0,1510,86,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,2006,87,1,2105,72,1,0 +2013,6,28,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,11,0,1550,22,1,0 +2013,10,10,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1200,21,1,1335,19,1,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,47,1,2320,33,1,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,700,-8,0,835,-15,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1350,-5,0,1627,-12,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1145,29,1,1315,19,1,0 +2013,6,7,5,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,-7,0,1349,-6,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2105,10,0,10,3,0,0 +2013,6,19,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-10,0,841,-35,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,-1,0,1905,-2,0,0 +2013,8,9,5,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1659,116,1,1959,116,1,0 +2013,7,27,6,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1041,-5,0,1605,-4,0,0 +2013,9,16,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,910,-2,0,1055,-26,0,0 +2013,10,14,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,-5,0,2115,-8,0,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2135,38,1,10,27,1,0 +2013,8,9,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1345,-10,0,1430,-12,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,-3,0,1036,-11,0,0 +2013,10,18,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,645,0,0,810,0,0,0 +2013,6,30,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1040,34,1,1325,42,1,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-1,0,1854,-21,0,0 +2013,7,17,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,852,12,0,1205,3,0,0 +2013,6,3,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1020,3,0,1226,-3,0,0 +2013,7,25,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,29,1,1820,25,1,0 +2013,7,23,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1154,169,1,2000,167,1,0 +2013,4,22,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1000,2,0,1105,21,1,0 +2013,6,30,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,64,1,2215,45,1,0 +2013,10,21,1,EV,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,759,-14,0,0 +2013,10,2,3,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1239,-4,0,1732,-16,0,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1355,-6,0,1842,27,1,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,955,15,1,1129,10,0,0 +2013,4,5,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,725,43,1,1030,55,1,0 +2013,4,2,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,830,-13,0,0 +2013,9,10,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,54,1,1820,60,1,0 +2013,5,10,5,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,655,-3,0,1022,-25,0,0 +2013,7,20,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1455,-2,0,1620,5,0,0 +2013,10,25,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1905,12,0,2015,6,0,0 +2013,5,26,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,0,0,2018,0,0,0 +2013,7,20,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-1,0,1545,2,0,0 +2013,10,17,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-5,0,541,-4,0,0 +2013,4,9,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1852,11,0,2020,2,0,0 +2013,9,7,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,940,-8,0,1235,0,0,0 +2013,9,26,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-8,0,2355,-5,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,5,0,2245,12,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,34,1,3,16,1,0 +2013,10,2,3,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1619,15,1,1742,5,0,0 +2013,9,5,4,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-7,0,1605,-5,0,0 +2013,7,19,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-6,0,1405,-7,0,0 +2013,8,15,4,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,18,1,1130,-14,0,0 +2013,9,9,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-12,0,710,-28,0,0 +2013,9,17,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-4,0,1930,-19,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,0,0,1704,-2,0,0 +2013,5,8,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1955,13,0,2115,6,0,0 +2013,10,12,6,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,-5,0,1540,-5,0,0 +2013,10,3,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1030,0,0,1310,-7,0,0 +2013,8,23,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,841,0,0,951,4,0,0 +2013,7,20,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-7,0,1129,-13,0,0 +2013,5,15,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1734,-7,0,1841,-17,0,0 +2013,8,1,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-1,0,1012,-13,0,0 +2013,6,1,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,28,1,1930,24,1,0 +2013,4,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1935,82,1,2150,72,1,0 +2013,6,27,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,930,48,1,1500,48,1,0 +2013,7,21,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-13,0,1129,0,1,1 +2013,6,7,5,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,925,35,1,1210,34,1,0 +2013,9,18,3,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,800,-7,0,1016,-30,0,0 +2013,7,19,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,822,-7,0,0 +2013,10,21,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,2,0,755,16,1,0 +2013,8,30,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,10,0,2025,-5,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,810,50,1,950,56,1,0 +2013,9,17,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1112,-13,0,1233,-16,0,0 +2013,7,29,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,838,5,0,0 +2013,10,28,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1745,-12,0,2000,-11,0,0 +2013,10,31,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2030,-6,0,2259,-8,0,0 +2013,6,8,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1534,-15,0,1832,-2,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1850,-4,0,2003,-4,0,0 +2013,9,16,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,-12,0,2235,-14,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2220,-6,0,2235,-22,0,0 +2013,7,10,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1245,76,1,1406,71,1,0 +2013,6,2,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,23,1,2145,17,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,-1,0,1320,-11,0,0 +2013,6,6,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1140,5,0,1839,5,0,0 +2013,4,18,4,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1715,1,0,1921,11,0,0 +2013,10,12,6,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,900,-4,0,1041,-5,0,0 +2013,5,4,6,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1400,-9,0,1531,-22,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1730,56,1,1935,50,1,0 +2013,4,25,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,17,1,1550,14,0,0 +2013,10,18,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1025,-4,0,1200,-10,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,-1,0,1755,5,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1635,29,1,1745,29,1,0 +2013,8,13,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,32,1,2130,30,1,0 +2013,8,22,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-1,0,1220,-5,0,0 +2013,5,14,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,937,-17,0,0 +2013,10,9,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,955,8,0,1140,-10,0,0 +2013,8,29,4,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1420,-1,0,2300,2,0,0 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2031,0,,2156,0,1,1 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,830,-1,0,930,-15,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-9,0,1405,-18,0,0 +2013,10,31,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,935,-5,0,1226,3,0,0 +2013,6,15,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,-2,0,1145,-6,0,0 +2013,9,22,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1310,-1,0,1604,-4,0,0 +2013,10,3,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,610,-9,0,750,-25,0,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,12,0,1924,7,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,940,8,0,1125,2,0,0 +2013,5,2,4,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,836,-7,0,1012,-21,0,0 +2013,4,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1940,11,0,2105,5,0,0 +2013,5,30,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,806,3,0,1057,12,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1820,9,0,1935,3,0,0 +2013,8,23,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1638,-7,0,1835,-12,0,0 +2013,4,22,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1400,39,1,1610,30,1,0 +2013,8,7,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-4,0,1530,-12,0,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1300,15,1,1355,17,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-4,0,749,-16,0,0 +2013,10,11,5,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,755,-10,0,0 +2013,5,30,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1250,4,0,1415,-3,0,0 +2013,4,22,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,5,0,545,-2,0,0 +2013,7,13,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1435,-6,0,1801,51,1,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,8,0,2030,41,1,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,915,5,0,1135,-1,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1715,0,,1940,0,1,1 +2013,10,21,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1955,59,1,2250,79,1,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2145,-6,0,2254,-4,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1640,4,0,1921,-6,0,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1924,-5,0,2055,-35,0,0 +2013,9,3,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,845,4,0,1035,19,1,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2202,48,1,2246,33,1,0 +2013,4,5,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,926,30,1,1159,18,1,0 +2013,8,14,3,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1651,2,0,1816,1,0,0 +2013,5,29,3,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,830,0,0,1030,-14,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,736,-1,0,1106,24,1,0 +2013,10,29,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1829,-8,0,2004,-17,0,0 +2013,4,22,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2250,15,1,653,-12,0,0 +2013,7,21,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,638,-7,0,758,-18,0,0 +2013,10,27,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,-2,0,1652,-11,0,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-6,0,1247,-12,0,0 +2013,10,9,3,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1433,-8,0,1727,4,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1035,-2,0,1633,-12,0,0 +2013,5,13,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-3,0,2108,2,0,0 +2013,7,30,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,650,-4,0,835,-12,0,0 +2013,5,22,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,0,,2225,0,1,1 +2013,7,10,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1624,-1,0,1819,36,1,0 +2013,7,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1530,-11,0,1826,2,0,0 +2013,4,23,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1557,9,0,1645,29,1,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-1,0,1308,-3,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1735,45,1,1923,27,1,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,48,1,1005,35,1,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,830,-6,0,1426,-4,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,650,-3,0,805,-15,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-4,0,1038,-22,0,0 +2013,4,4,4,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,946,-8,0,1130,9,0,0 +2013,9,8,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,-9,0,1454,-12,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-3,0,1555,-23,0,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,11,0,1939,49,1,0 +2013,10,7,1,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1050,199,1,1224,193,1,0 +2013,7,7,7,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,725,-1,0,857,-3,0,0 +2013,6,11,2,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1034,-11,0,1310,-14,0,0 +2013,5,3,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2010,20,1,2105,14,0,0 +2013,10,5,6,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1003,-2,0,1228,-19,0,0 +2013,9,27,5,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,-3,0,1920,-11,0,0 +2013,9,22,7,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,10,0,1414,2,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,940,2,0,1410,-16,0,0 +2013,8,15,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-2,0,1830,-2,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1340,-2,0,1346,1,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1252,-2,0,1407,18,1,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,4,0,2340,4,0,0 +2013,7,24,3,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-5,0,1039,12,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1410,34,1,1550,39,1,0 +2013,9,21,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-6,0,718,-7,0,0 +2013,7,28,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-6,0,2257,-7,0,0 +2013,10,24,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1952,0,0,2150,-8,0,0 +2013,9,29,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,705,-4,0,930,6,0,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,-3,0,935,-5,0,0 +2013,4,7,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1058,-4,0,1257,-21,0,0 +2013,5,24,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1620,6,0,1730,2,0,0 +2013,6,16,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1120,0,0,1230,-5,0,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,2,0,1250,4,0,0 +2013,4,28,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,700,1,0,829,-5,0,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,640,0,,1140,0,1,1 +2013,6,24,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-1,0,835,-8,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1536,-2,0,1717,-22,0,0 +2013,4,25,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1305,-1,0,1635,-9,0,0 +2013,8,19,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,6,0,1840,3,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,1,0,1820,2,0,0 +2013,6,5,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-4,0,1335,-10,0,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,740,-3,0,1039,-23,0,0 +2013,5,20,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1817,1,0,1942,13,0,0 +2013,10,7,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1930,1,0,2005,-13,0,0 +2013,6,23,7,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-10,0,2145,-22,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,-10,0,1140,-16,0,0 +2013,8,2,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-2,0,1130,1,0,0 +2013,7,9,2,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1119,-7,0,1254,-13,0,0 +2013,7,11,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-4,0,1130,-4,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1500,26,1,1635,25,1,0 +2013,8,26,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1935,-7,0,2110,-6,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1427,9,0,1531,7,0,0 +2013,6,23,7,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,715,-6,0,1128,-7,0,0 +2013,6,2,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1010,-6,0,1345,-13,0,0 +2013,5,30,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,16,1,1418,44,1,0 +2013,6,16,7,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,713,1,0,901,10,0,0 +2013,6,12,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,-1,0,1314,-14,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1250,-2,0,1410,-12,0,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,956,6,0,1517,1,0,0 +2013,4,5,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,2135,-5,0,2250,-8,0,0 +2013,10,24,4,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1710,29,1,2200,24,1,0 +2013,10,23,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,5,0,1902,-4,0,0 +2013,5,21,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,752,-4,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1306,2,0,1436,-6,0,0 +2013,9,12,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,-2,0,1530,-1,0,0 +2013,10,27,7,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,800,-1,0,934,1,0,0 +2013,7,27,6,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1230,-6,0,2110,-5,0,0 +2013,8,26,1,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1800,-1,0,2045,-7,0,0 +2013,8,15,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-3,0,649,-1,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1425,-1,0,1555,-4,0,0 +2013,9,17,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1700,16,1,2000,21,1,0 +2013,7,30,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,-10,0,1334,-14,0,0 +2013,7,15,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-7,0,1357,26,1,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-3,0,900,-11,0,0 +2013,5,14,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1230,10,0,1420,2,0,0 +2013,7,27,6,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-3,0,1617,6,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-7,0,2322,-9,0,0 +2013,10,21,1,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-7,0,1645,-14,0,0 +2013,4,20,6,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1330,-5,0,1550,-19,0,0 +2013,7,16,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1234,-7,0,1341,-12,0,0 +2013,8,13,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,2,0,835,8,0,0 +2013,10,1,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,605,-5,0,700,-9,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2055,19,1,2259,4,0,0 +2013,8,18,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,940,-14,0,1045,17,1,0 +2013,8,10,6,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-6,0,846,-12,0,0 +2013,5,11,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,-1,0,1829,-1,0,0 +2013,10,27,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1328,-4,0,1443,-10,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,830,25,1,1045,21,1,0 +2013,4,5,5,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,749,-4,0,911,-5,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,44,1,1711,33,1,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1320,1,0,1628,-24,0,0 +2013,6,3,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1746,-11,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1600,16,1,1738,6,0,0 +2013,4,29,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,725,-3,0,900,3,0,0 +2013,5,28,2,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,1100,2,0,0 +2013,7,4,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-3,0,910,-6,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-6,0,1323,-22,0,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,-2,0,1425,-8,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,19,1,1005,13,0,0 +2013,9,2,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1405,0,0,1516,0,0,0 +2013,9,3,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1850,-4,0,1945,-2,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,1,0,1700,14,0,0 +2013,9,25,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,745,-2,0,835,-5,0,0 +2013,5,27,1,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1037,-5,0,1330,-10,0,0 +2013,9,25,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1315,-5,0,1915,-23,0,0 +2013,7,27,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1131,-5,0,1432,-16,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,18,1,1103,20,1,0 +2013,10,18,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-2,0,1014,9,0,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-1,0,909,8,0,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1005,10,0,1505,6,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,630,7,0,855,11,0,0 +2013,8,26,1,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,-1,0,1042,-5,0,0 +2013,9,20,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,701,0,0,802,-7,0,0 +2013,9,12,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-8,0,1348,8,0,0 +2013,5,10,5,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1157,-4,0,1304,-1,0,0 +2013,6,5,3,OO,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,955,-2,0,1202,4,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,0,0,1025,-3,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1443,5,0,1554,-1,0,0 +2013,9,23,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1025,16,1,1320,16,1,0 +2013,6,11,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1810,10,0,1915,-1,0,0 +2013,10,4,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-4,0,849,-3,0,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-2,0,1136,-10,0,0 +2013,7,29,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1448,3,0,1650,-10,0,0 +2013,7,21,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1624,-7,0,1824,-1,0,0 +2013,9,20,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,13,0,1535,4,0,0 +2013,8,15,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-4,0,1414,2,0,0 +2013,9,30,1,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1356,127,1,1920,135,1,0 +2013,6,6,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1133,3,0,1345,6,0,0 +2013,9,25,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,4,0,1126,-2,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1820,-4,0,12,-7,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,0,0,1435,-3,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1900,26,1,2240,32,1,0 +2013,4,5,5,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1113,-3,0,1830,-11,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,945,3,0,1250,-10,0,0 +2013,4,29,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1009,65,1,1135,58,1,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1722,-3,0,2005,-14,0,0 +2013,7,17,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1505,-8,0,1620,35,1,0 +2013,7,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,645,6,0,950,0,0,0 +2013,7,19,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,59,1,1125,60,1,0 +2013,6,22,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,45,1,1135,59,1,0 +2013,8,30,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,-7,0,2126,-12,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1745,-1,0,1753,-4,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1700,-14,0,1835,-6,0,0 +2013,8,12,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1535,1,0,1737,-14,0,0 +2013,7,17,3,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,-2,0,1319,0,0,0 +2013,6,19,3,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,1955,-7,0,2240,5,0,0 +2013,8,20,2,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,-9,0,1856,-13,0,0 +2013,7,17,3,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-5,0,1132,-4,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,855,9,0,1150,-9,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1357,0,0,1530,-2,0,0 +2013,4,12,5,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-8,0,1510,-24,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1643,33,1,1835,41,1,0 +2013,4,22,1,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1605,45,1,1852,27,1,0 +2013,7,17,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1943,0,,2211,0,1,1 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,948,-2,0,1225,-13,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-1,0,1230,0,0,0 +2013,6,28,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,640,-1,0,710,-11,0,0 +2013,5,6,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1110,8,0,1235,3,0,0 +2013,8,31,6,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-7,0,916,-6,0,0 +2013,7,1,1,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,722,0,0,1021,15,1,0 +2013,9,12,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,729,-12,0,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,9,0,1449,21,1,0 +2013,6,20,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,164,1,2135,150,1,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1240,14,0,1520,13,0,0 +2013,8,29,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-1,0,1031,1,0,0 +2013,9,13,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-3,0,1449,-16,0,0 +2013,9,18,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1711,-1,0,1822,21,1,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,914,-1,0,1200,11,0,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2130,30,1,2328,41,1,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-4,0,1535,-9,0,0 +2013,5,25,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-8,0,1112,-19,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,38,1,1600,28,1,0 +2013,6,12,3,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-4,0,1537,-18,0,0 +2013,9,8,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-11,0,1112,-22,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1415,0,0,1604,-3,0,0 +2013,10,28,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,645,-5,0,903,-5,0,0 +2013,9,4,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2025,-10,0,2350,-32,0,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1640,43,1,1845,28,1,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2201,60,1,2344,65,1,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,740,4,0,1042,4,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,725,8,0,1040,-3,0,0 +2013,7,13,6,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1858,61,1,2028,78,1,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,-3,0,2156,-30,0,0 +2013,5,14,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,-1,0,1507,-14,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-1,0,1155,-6,0,0 +2013,9,4,3,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,-16,0,915,-35,0,0 +2013,7,5,5,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,-8,0,1607,-1,0,0 +2013,10,5,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1020,-6,0,1213,-13,0,0 +2013,7,25,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1853,65,1,2030,54,1,0 +2013,6,5,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1530,-3,0,1835,1,0,0 +2013,9,23,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1355,-8,0,1520,-16,0,0 +2013,10,10,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,41,1,1358,24,1,0 +2013,8,11,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1325,103,1,1435,93,1,0 +2013,4,14,7,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,816,-4,0,1032,-2,0,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1648,12,0,2129,-19,0,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1430,19,1,1611,23,1,0 +2013,7,5,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1638,-4,0,1800,4,0,0 +2013,7,21,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-3,0,830,-9,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,735,3,0,1015,-10,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,8,0,1310,9,0,0 +2013,5,31,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,161,1,1223,149,1,0 +2013,9,13,5,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1844,49,1,2006,45,1,0 +2013,5,4,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,-3,0,2055,-9,0,0 +2013,8,19,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,755,-6,0,900,-19,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2300,-9,0,23,-17,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2215,-2,0,2350,-6,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-8,0,1812,-15,0,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1711,-4,0,2224,-8,0,0 +2013,6,5,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,801,13,0,0 +2013,7,26,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,2,0,1440,-15,0,0 +2013,6,23,7,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1945,-3,0,2140,0,0,0 +2013,10,27,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1440,27,1,1540,43,1,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,850,-3,0,1245,-2,0,0 +2013,6,23,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1400,34,1,1529,32,1,0 +2013,8,28,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,3,0,1455,0,0,0 +2013,5,3,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-1,0,1401,2,0,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,-4,0,913,18,1,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1259,-5,0,1544,-12,0,0 +2013,8,21,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1010,4,0,0 +2013,7,15,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-5,0,1016,-37,0,0 +2013,6,27,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1120,0,,1230,0,1,1 +2013,7,31,3,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1705,13,0,2255,-15,0,0 +2013,8,11,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,5,0,1635,-1,0,0 +2013,6,3,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2325,-9,0,800,-31,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-2,0,1109,-5,0,0 +2013,7,22,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2130,263,1,2247,244,1,0 +2013,9,8,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-6,0,648,-14,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1835,13,0,2030,7,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,5,0,2045,-13,0,0 +2013,9,2,1,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2028,69,1,2247,78,1,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,945,2,0,1415,1,0,0 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,805,-2,0,915,-6,0,0 +2013,8,4,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,-7,0,1036,-13,0,0 +2013,5,23,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,1,0,2215,-1,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1005,-5,0,1349,-3,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,165,1,1345,163,1,0 +2013,8,29,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1451,-4,0,1640,-12,0,0 +2013,10,28,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2130,0,0,2350,7,0,0 +2013,4,11,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,6,0,1840,-7,0,0 +2013,7,13,6,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,745,-2,0,1000,-12,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,-3,0,1150,-16,0,0 +2013,5,27,1,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1035,-11,0,1206,-2,0,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,5,0,1108,-11,0,0 +2013,4,2,2,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-7,0,2040,0,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1917,-1,0,2053,-9,0,0 +2013,6,24,1,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2130,-7,0,15,-22,0,0 +2013,7,30,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1310,2,0,1440,-12,0,0 +2013,6,14,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,1,0,1200,2,0,0 +2013,4,19,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,34,1,1630,26,1,0 +2013,5,23,4,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,0,0,920,-9,0,0 +2013,5,13,1,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2340,52,1,725,48,1,0 +2013,8,22,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,955,7,0,1110,-12,0,0 +2013,7,31,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2130,75,1,2247,66,1,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,640,1,0,924,-5,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,2003,-2,0,2200,6,0,0 +2013,4,11,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,61,1,1920,63,1,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1835,16,1,2152,29,1,0 +2013,4,21,7,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1321,-10,0,1611,2,0,0 +2013,10,4,5,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-2,0,2050,10,0,0 +2013,9,19,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,-4,0,1925,-10,0,0 +2013,7,22,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,8,0,1336,-2,0,0 +2013,4,18,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,83,1,1615,76,1,0 +2013,6,18,2,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,9,0,1413,11,0,0 +2013,5,21,2,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1642,-3,0,2054,-10,0,0 +2013,4,10,3,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,710,-9,0,930,-17,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1035,-4,0,1218,-16,0,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-5,0,800,-8,0,0 +2013,5,12,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,2,0,1850,-8,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,32,1,1925,33,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2200,-5,0,2303,18,1,0 +2013,9,22,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-4,0,1049,-12,0,0 +2013,6,2,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,835,-1,0,947,-21,0,0 +2013,10,13,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1815,13,0,2055,0,0,0 +2013,4,13,6,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1220,-10,0,1306,-20,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1345,4,0,1450,-1,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1235,6,0,1433,-2,0,0 +2013,5,12,7,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,2331,-3,0,644,-17,0,0 +2013,6,28,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,-2,0,1225,8,0,0 +2013,10,1,2,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,-2,0,1605,-18,0,0 +2013,7,10,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,1125,12,0,0 +2013,6,13,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,155,1,2057,146,1,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1542,0,0,1716,-9,0,0 +2013,7,13,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,-4,0,826,2,0,0 +2013,10,10,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1246,3,0,1516,-5,0,0 +2013,4,5,5,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1302,32,1,1500,21,1,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1915,58,1,2040,44,1,0 +2013,4,15,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,545,-7,0,905,2,0,0 +2013,8,9,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,0,0,1829,-9,0,0 +2013,10,30,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1028,-3,0,1130,-4,0,0 +2013,6,29,6,9E,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,61,1,1451,51,1,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1315,13,0,1825,27,1,0 +2013,7,19,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-4,0,1938,21,1,0 +2013,4,7,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-1,0,921,10,0,0 +2013,4,21,7,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1410,4,0,1530,-4,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,21,1,1520,20,1,0 +2013,7,28,7,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,1,0,1915,-14,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,-3,0,1553,-17,0,0 +2013,5,29,3,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,-6,0,1858,-10,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1425,-4,0,1635,-26,0,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,1,0,2130,0,0,0 +2013,5,20,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1710,4,0,1745,-12,0,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,92,1,2054,109,1,0 +2013,8,20,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1300,-10,0,1505,-33,0,0 +2013,5,2,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,948,-7,0,1130,4,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,955,-5,0,1250,19,1,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1100,-2,0,1336,-20,0,0 +2013,6,17,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1625,74,1,1841,45,1,0 +2013,7,4,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-7,0,1115,-9,0,0 +2013,9,3,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1150,11,0,1155,-4,0,0 +2013,10,19,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-8,0,1340,-17,0,0 +2013,9,22,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,822,-10,0,930,-25,0,0 +2013,8,14,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1302,3,0,1430,-1,0,0 +2013,10,3,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1625,49,1,1841,41,1,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1710,2,0,1833,-5,0,0 +2013,10,28,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,-6,0,940,3,0,0 +2013,6,2,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,738,-2,0,840,0,0,0 +2013,7,21,7,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2028,27,1,2247,41,1,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2106,64,1,2343,41,1,0 +2013,9,19,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-9,0,2125,-13,0,0 +2013,4,24,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,0,,1300,0,1,1 +2013,9,23,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,925,4,0,1325,14,0,0 +2013,8,12,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,-7,0,1800,4,0,0 +2013,9,4,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1310,0,,1430,0,1,1 +2013,6,19,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,64,1,1345,56,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,-6,0,1110,-9,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-6,0,930,-15,0,0 +2013,10,19,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,910,-5,0,1010,-5,0,0 +2013,6,21,5,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-11,0,1310,-6,0,0 +2013,6,14,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,0,,1937,0,1,1 +2013,9,14,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,524,-11,0,621,-20,0,0 +2013,10,3,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,4,0,849,8,0,0 +2013,4,27,6,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-7,0,1403,-5,0,0 +2013,9,12,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,29,1,2015,30,1,0 +2013,6,13,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1310,-1,0,1525,-4,0,0 +2013,5,2,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1315,-5,0,1426,0,0,0 +2013,6,4,2,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,-10,0,1757,-19,0,0 +2013,5,26,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1255,-7,0,1355,-16,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1525,1,0,1740,-6,0,0 +2013,7,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1720,3,0,1820,-4,0,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2239,3,0,15,-3,0,0 +2013,8,20,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-3,0,1255,-2,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1245,149,1,1410,152,1,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,3,0,2110,-18,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-3,0,1951,-31,0,0 +2013,6,9,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-3,0,801,-16,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,6,0,1305,8,0,0 +2013,4,17,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,9,0,1320,29,1,0 +2013,9,29,7,UA,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,726,-3,0,743,-24,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1510,-6,0,1705,-15,0,0 +2013,10,7,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1615,-2,0,1804,-7,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1500,15,1,1655,5,0,0 +2013,4,8,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-1,0,846,-12,0,0 +2013,9,1,7,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1435,-5,0,1550,-16,0,0 +2013,6,17,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1325,-2,0,1525,7,0,0 +2013,5,19,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,1,0,920,-13,0,0 +2013,8,10,6,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,14,0,2033,24,1,0 +2013,4,8,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1345,-3,0,1505,0,0,0 +2013,8,20,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1009,14,0,1138,32,1,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1955,79,1,2145,71,1,0 +2013,8,6,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,0,0,1935,-12,0,0 +2013,10,1,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,917,3,0,1716,2,0,0 +2013,9,18,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1910,10,0,2015,3,0,0 +2013,5,29,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-4,0,925,-4,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1020,0,0,1222,-3,0,0 +2013,8,2,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,12,0,2214,-7,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1500,18,1,1940,3,0,0 +2013,10,14,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,-2,0,1351,-4,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1705,7,0,1950,1,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1954,-1,0,2053,-8,0,0 +2013,6,20,4,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1905,3,0,10,-3,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,8,0,1255,17,1,0 +2013,8,12,1,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,-2,0,1240,-11,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,-10,0,1614,6,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1122,1,0,1447,-11,0,0 +2013,10,12,6,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1815,2,0,1845,-2,0,0 +2013,4,15,1,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-8,0,2020,32,1,0 +2013,4,29,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1858,-13,0,2110,-3,0,0 +2013,6,28,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,6,0,505,10,0,0 +2013,6,22,6,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,21,1,1030,3,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2210,-3,0,45,-20,0,0 +2013,9,24,2,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1220,17,1,1555,2,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1315,18,1,1425,10,0,0 +2013,6,1,6,FL,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1725,0,0,1818,-6,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,628,-1,0,804,6,0,0 +2013,8,17,6,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1629,-3,0,1840,-18,0,0 +2013,5,16,4,DL,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1929,-3,0,2105,-24,0,0 +2013,9,3,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1655,6,0,1745,-1,0,0 +2013,4,30,2,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1000,-7,0,1105,-3,0,0 +2013,8,27,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1505,-2,0,1615,-3,0,0 +2013,4,21,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,2145,-6,0,144,-10,0,0 +2013,8,24,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1246,9,0,1352,3,0,0 +2013,4,14,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,17,51,1,522,49,1,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-4,0,1840,-14,0,0 +2013,9,15,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,8,0,1955,-4,0,0 +2013,5,1,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1236,7,0,1830,17,1,0 +2013,4,6,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,802,-22,0,0 +2013,10,7,1,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1048,-9,0,1215,-24,0,0 +2013,8,9,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,8,0,1555,17,1,0 +2013,10,23,3,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1335,-2,0,1500,7,0,0 +2013,8,18,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,955,0,0,1322,-15,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,905,35,1,1118,33,1,0 +2013,9,17,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,955,-7,0,1250,-1,0,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,3,0,1335,44,1,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1440,-5,0,1551,-3,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1759,160,1,2245,124,1,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1746,1,0,1931,8,0,0 +2013,5,8,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,-1,0,1945,-9,0,0 +2013,8,12,1,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,8,0,2145,2,0,0 +2013,6,1,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,-2,0,1050,-15,0,0 +2013,7,29,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,1,0,1215,-14,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1515,0,0,1742,-14,0,0 +2013,4,25,4,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2045,-2,0,2219,-34,0,0 +2013,5,3,5,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1247,13,0,1350,31,1,0 +2013,4,9,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-7,0,1348,-8,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,610,-4,0,715,-11,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,60,1,1955,64,1,0 +2013,7,13,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,945,-1,0,1506,-10,0,0 +2013,4,1,1,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,800,-3,0,925,-8,0,0 +2013,7,20,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,27,1,1600,27,1,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1450,-6,0,2215,-21,0,0 +2013,7,1,1,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,745,23,1,1035,38,1,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1055,-6,0,1220,-22,0,0 +2013,8,26,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,725,-11,0,0 +2013,7,20,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2005,38,1,2150,56,1,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,-2,0,816,-8,0,0 +2013,4,7,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1310,34,1,1445,20,1,0 +2013,7,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2010,-2,0,2115,4,0,0 +2013,10,15,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,-2,0,2225,-3,0,0 +2013,4,11,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1325,22,1,1435,23,1,0 +2013,6,18,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2020,150,1,2255,139,1,0 +2013,6,23,7,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1500,-8,0,1823,26,1,0 +2013,8,21,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,835,-2,0,945,-9,0,0 +2013,8,10,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1645,3,0,1735,10,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1655,29,1,1750,29,1,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1005,-8,0,1300,-10,0,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,733,-3,0,1024,1,0,0 +2013,4,9,2,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-7,0,1007,-28,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,8,0,1003,-3,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2105,18,1,2225,14,0,0 +2013,4,28,7,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,613,-5,0,748,-22,0,0 +2013,9,8,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1655,5,0,1810,-7,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1000,-2,0,1225,-9,0,0 +2013,4,4,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1855,-7,0,2112,-11,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1835,70,1,2036,82,1,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,845,-2,0,940,-8,0,0 +2013,6,28,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2031,40,1,2327,68,1,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1700,0,0,1811,-12,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,47,1,1900,42,1,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,745,-5,0,1130,-17,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,630,-1,0,755,2,0,0 +2013,7,13,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1250,4,0,1355,-5,0,0 +2013,7,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1850,4,0,1955,-9,0,0 +2013,5,4,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,40,1,1825,39,1,0 +2013,10,22,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1825,149,1,1855,138,1,0 +2013,5,19,7,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1500,-4,0,1645,-10,0,0 +2013,9,14,6,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1200,-5,0,1258,-1,0,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1355,-2,0,2158,5,0,0 +2013,4,4,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-8,0,1300,-14,0,0 +2013,4,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,805,-1,0,1018,-14,0,0 +2013,5,31,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,817,-4,0,911,7,0,0 +2013,6,22,6,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1105,13,0,1517,14,0,0 +2013,7,7,7,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-2,0,2040,38,1,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1100,-10,0,1216,19,1,0 +2013,10,13,7,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,825,-10,0,1210,-23,0,0 +2013,6,6,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2105,32,1,2235,46,1,0 +2013,7,9,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,640,-3,0,840,4,0,0 +2013,4,21,7,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,-12,0,1620,-8,0,0 +2013,6,21,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1606,13,0,1920,-4,0,0 +2013,10,23,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1525,-3,0,1655,2,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1035,-1,0,1200,-11,0,0 +2013,8,1,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,29,1,1038,11,0,0 +2013,6,2,7,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1327,0,0,1545,3,0,0 +2013,6,28,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1653,17,1,1814,33,1,0 +2013,4,20,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,720,0,0,740,-10,0,0 +2013,7,16,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,22,1,1625,5,0,0 +2013,7,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2005,155,1,2200,144,1,0 +2013,6,17,1,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,-3,0,1135,-16,0,0 +2013,6,26,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-3,0,1206,15,1,0 +2013,9,18,3,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,635,-4,0,745,-9,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1345,22,1,1440,34,1,0 +2013,10,26,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,7,0,1740,4,0,0 +2013,8,11,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1443,-2,0,1645,-1,0,0 +2013,10,5,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,755,-7,0,929,-29,0,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1909,23,1,2045,11,0,0 +2013,7,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,1,0,920,-5,0,0 +2013,8,29,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,23,1,1619,26,1,0 +2013,9,20,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,175,1,1829,179,1,0 +2013,9,29,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-7,0,1302,-9,0,0 +2013,7,9,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,930,-2,0,935,-10,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1927,-5,0,2111,10,0,0 +2013,6,22,6,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-5,0,1430,-6,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,2,0,1835,-6,0,0 +2013,9,15,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1657,-2,0,1824,-3,0,0 +2013,6,17,1,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,930,0,0,1234,-11,0,0 +2013,8,11,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,630,-7,0,1501,-11,0,0 +2013,6,30,7,VX,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,50,-8,0,625,13,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-1,0,2108,-10,0,0 +2013,9,21,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1505,-13,0,0 +2013,9,25,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1345,-10,0,1440,-17,0,0 +2013,9,18,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-5,0,720,-6,0,0 +2013,4,16,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,0,,1825,0,1,1 +2013,4,12,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1315,160,1,1531,159,1,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1307,-1,0,1611,-12,0,0 +2013,9,21,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2237,79,1,2359,70,1,0 +2013,4,23,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,0,0,1330,-8,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,6,0,2025,6,0,0 +2013,9,24,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1320,-7,0,1708,-19,0,0 +2013,5,22,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2020,6,0,2255,-6,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,735,-6,0,1012,-12,0,0 +2013,9,20,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,930,-3,0,1755,-20,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,855,0,0,1420,3,0,0 +2013,9,17,2,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,915,-4,0,1135,2,0,0 +2013,5,10,5,DL,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,630,-5,0,810,-26,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,-1,0,1625,-11,0,0 +2013,9,5,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,847,-17,0,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,905,15,1,1415,-7,0,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,915,-3,0,1100,-15,0,0 +2013,10,14,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,-7,0,2205,-15,0,0 +2013,9,5,4,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1619,6,0,1742,-8,0,0 +2013,5,20,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,3,0,509,4,0,0 +2013,7,13,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2056,26,1,2226,20,1,0 +2013,6,21,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-1,0,1614,-7,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1025,-3,0,1422,-15,0,0 +2013,5,4,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,-13,0,1828,-16,0,0 +2013,7,5,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-5,0,1154,6,0,0 +2013,8,14,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-4,0,641,-3,0,0 +2013,10,27,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,6,0,1226,-8,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,740,-4,0,1002,1,0,0 +2013,4,3,3,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1520,-1,0,2339,-14,0,0 +2013,8,13,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,6,0,1524,9,0,0 +2013,10,30,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1146,-2,0,1252,-7,0,0 +2013,8,8,4,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2053,108,1,500,106,1,0 +2013,4,19,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11618,Newark Liberty International,Newark,NJ,953,12,0,1115,3,0,0 +2013,10,31,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,-11,0,1134,-8,0,0 +2013,9,27,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1740,31,1,1850,23,1,0 +2013,4,24,3,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,810,-8,0,1058,-22,0,0 +2013,9,6,5,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,835,-2,0,1145,-22,0,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1050,-3,0,1826,2,0,0 +2013,9,20,5,OO,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1843,-4,0,2005,-14,0,0 +2013,4,19,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1410,3,0,1650,-9,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,-4,0,2135,8,0,0 +2013,6,8,6,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,115,-2,0,830,3,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1405,2,0,1650,-15,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2020,10,0,2235,7,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,930,9,0,1130,21,1,0 +2013,8,18,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1440,27,1,1555,32,1,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2020,9,0,2140,-10,0,0 +2013,9,20,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,645,-5,0,817,-17,0,0 +2013,7,5,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-10,0,1918,5,0,0 +2013,6,23,7,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-10,0,1244,-2,0,0 +2013,9,9,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,-7,0,1759,0,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,11,0,2222,-9,0,0 +2013,7,21,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,915,2,0,1005,0,0,0 +2013,7,12,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,936,6,0,1040,-1,0,0 +2013,8,19,1,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1735,-7,0,2000,-39,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1005,54,1,1252,51,1,0 +2013,7,3,3,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2159,-5,0,2321,-19,0,0 +2013,7,18,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,-5,0,2050,-7,0,0 +2013,5,27,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-2,0,1125,-10,0,0 +2013,5,19,7,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1218,4,0,1431,11,0,0 +2013,10,18,5,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-5,0,1556,1,0,0 +2013,4,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,4,0,1140,11,0,0 +2013,5,2,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-3,0,951,-24,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2105,-1,0,2227,-3,0,0 +2013,5,6,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1749,-1,0,1937,-2,0,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-1,0,935,-7,0,0 +2013,5,19,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,120,-7,0,515,-9,0,0 +2013,8,7,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,537,-5,0,654,-3,0,0 +2013,10,22,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,0,0,1400,-6,0,0 +2013,9,14,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,7,0,1947,1,0,0 +2013,5,13,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-7,0,1725,-12,0,0 +2013,10,16,3,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,-10,0,1043,-23,0,0 +2013,4,26,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,645,0,0,735,0,0,0 +2013,10,8,2,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,0,,1500,0,1,1 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1010,21,1,1315,22,1,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1035,-1,0,1350,-21,0,0 +2013,7,31,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1235,15,1,1620,7,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1525,30,1,2000,15,1,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1100,2,0,1310,3,0,0 +2013,4,17,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1925,173,1,2122,150,1,0 +2013,9,17,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1518,-10,0,1646,-7,0,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,25,1,2229,22,1,0 +2013,10,17,4,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1300,5,0,1445,-4,0,0 +2013,4,5,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1235,-4,0,1515,-18,0,0 +2013,7,4,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14307,Theodore Francis Green State,Providence,RI,824,-8,0,1002,-9,0,0 +2013,5,10,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,2,0,1215,-3,0,0 +2013,7,4,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,11,0,955,3,0,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-5,0,940,-6,0,0 +2013,5,5,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,510,-7,0,756,-13,0,0 +2013,7,17,3,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,0,0,735,-25,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1030,-6,0,1150,-9,0,0 +2013,5,14,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-3,0,622,16,1,0 +2013,7,4,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1735,-7,0,1825,-9,0,0 +2013,5,10,5,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,0,0,2135,10,0,0 +2013,4,10,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1530,11,0,1815,19,1,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,11,0,1600,0,0,0 +2013,9,10,2,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,26,1,1542,23,1,0 +2013,7,25,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1130,-11,0,1226,-22,0,0 +2013,6,4,2,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,830,-4,0,1131,-3,0,0 +2013,10,14,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,-1,0,1034,-2,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1805,48,1,1935,39,1,0 +2013,8,14,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1430,23,1,1500,26,1,0 +2013,4,7,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1913,-6,0,2135,-16,0,0 +2013,8,25,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,2155,-8,0,2315,-10,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1456,102,1,2306,65,1,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1315,1,0,1555,-3,0,0 +2013,7,17,3,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1555,17,1,1739,-4,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-8,0,2205,4,0,0 +2013,5,12,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1950,4,0,2050,-12,0,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1630,17,1,1740,22,1,0 +2013,9,14,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1428,9,0,1639,-8,0,0 +2013,7,30,2,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1515,130,1,2043,115,1,0 +2013,6,26,3,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1820,1,0,2141,38,1,0 +2013,6,30,7,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-4,0,1541,-8,0,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1134,169,1,2006,168,1,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1515,-9,0,2231,-22,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,-4,0,1355,-18,0,0 +2013,6,9,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,2,0,930,5,0,0 +2013,7,20,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-3,0,1405,-17,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1851,28,1,2103,18,1,0 +2013,10,12,6,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2030,-5,0,2215,2,0,0 +2013,8,30,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1945,20,1,2110,15,1,0 +2013,6,2,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-8,0,1523,3,0,0 +2013,10,11,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-3,0,940,-8,0,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,1,0,1030,44,1,0 +2013,10,29,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1330,-1,0,1440,0,0,0 +2013,6,10,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1155,13,0,1310,4,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1141,-3,0,1550,-10,0,0 +2013,7,19,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1819,120,1,2020,125,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-3,0,1338,-11,0,0 +2013,9,28,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,-3,0,1150,-6,0,0 +2013,5,22,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,83,1,2043,69,1,0 +2013,10,22,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1459,-2,0,1756,-6,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1940,81,1,5,73,1,0 +2013,9,26,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1155,21,1,1940,44,1,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,4,0,2319,-11,0,0 +2013,4,29,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,849,-5,0,1043,-19,0,0 +2013,6,15,6,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1756,3,0,2044,20,1,0 +2013,5,16,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2320,-1,0,706,-3,0,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,900,59,1,1724,68,1,0 +2013,6,8,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,-1,0,1020,-8,0,0 +2013,4,3,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,150,-10,0,500,8,0,0 +2013,9,17,2,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-5,0,854,-22,0,0 +2013,8,25,7,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1055,10,0,1235,5,0,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,735,-6,0,1002,-8,0,0 +2013,8,26,1,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1221,-1,0,1406,-10,0,0 +2013,8,17,6,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,919,-1,0,1042,-13,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,35,1,1715,18,1,0 +2013,7,23,2,DL,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,-7,0,1823,-12,0,0 +2013,7,9,2,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2052,44,1,22,36,1,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,0,0,1916,-4,0,0 +2013,10,9,3,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1815,-3,0,2257,3,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1107,-3,0,1416,-18,0,0 +2013,7,18,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1141,-6,0,1340,-13,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1900,8,0,2226,-6,0,0 +2013,7,31,3,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1020,-1,0,1410,-13,0,0 +2013,6,20,4,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,0,0,840,-8,0,0 +2013,5,20,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1555,-5,0,1715,-23,0,0 +2013,9,8,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-2,0,2059,-17,0,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1537,-5,0,1641,-9,0,0 +2013,8,16,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1736,-1,0,2005,-8,0,0 +2013,8,28,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1830,11,0,1905,3,0,0 +2013,8,21,3,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,74,1,900,76,1,0 +2013,5,11,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2332,46,1,525,54,1,0 +2013,6,24,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,111,1,1355,118,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1729,15,1,1857,14,0,0 +2013,10,3,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,915,-6,0,1157,-20,0,0 +2013,8,13,2,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,3,-8,0,507,-10,0,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,835,-5,0,1141,-18,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,42,1,2131,-7,0,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1955,-6,0,2150,-27,0,0 +2013,6,20,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,915,-2,0,1035,-10,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,745,-6,0,1135,24,1,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,0,,1340,0,1,1 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1955,-1,0,2129,-15,0,0 +2013,5,9,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,505,1,820,535,1,0 +2013,8,3,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-6,0,650,-9,0,0 +2013,7,31,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1231,7,0,1322,15,1,0 +2013,4,29,1,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-3,0,1550,-10,0,0 +2013,9,18,3,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1835,0,0,2055,-20,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1954,120,1,2112,94,1,0 +2013,8,14,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,818,141,1,959,140,1,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,-1,0,1515,-2,0,0 +2013,8,21,3,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1630,-1,0,1805,6,0,0 +2013,5,7,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,0,0,1949,-13,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1050,-2,0,1200,4,0,0 +2013,4,2,2,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1345,12,0,1445,7,0,0 +2013,7,1,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1115,-1,0,1405,12,0,0 +2013,4,14,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,5,0,1940,9,0,0 +2013,4,7,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,0,0,2243,-16,0,0 +2013,8,13,2,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,-10,0,1033,-14,0,0 +2013,7,3,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,1415,21,1,0 +2013,6,1,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1505,33,1,1617,21,1,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2222,5,0,2357,-18,0,0 +2013,6,1,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,36,1,1635,27,1,0 +2013,4,4,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2300,1,0,613,-8,0,0 +2013,7,22,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1529,-7,0,0 +2013,5,25,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1819,4,0,1904,-10,0,0 +2013,5,11,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-5,0,1735,-5,0,0 +2013,8,15,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1648,50,1,1820,35,1,0 +2013,5,11,6,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,800,-2,0,1030,-26,0,0 +2013,8,10,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,42,1,1450,35,1,0 +2013,5,17,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1123,-1,0,1341,-10,0,0 +2013,6,23,7,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2045,-5,0,2320,-12,0,0 +2013,8,4,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,-6,0,1135,-23,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-4,0,1022,-12,0,0 +2013,4,20,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1405,5,0,1515,1,0,0 +2013,10,4,5,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-9,0,1913,-19,0,0 +2013,7,17,3,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1720,4,0,2000,-13,0,0 +2013,9,24,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1000,0,0,1125,10,0,0 +2013,9,2,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,837,-5,0,1149,-12,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2130,13,0,2345,22,1,0 +2013,4,13,6,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,935,-10,0,1147,-9,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,2,0,1040,-14,0,0 +2013,10,27,7,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-7,0,1445,2,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,-5,0,1441,4,0,0 +2013,4,23,2,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2140,-3,0,545,-29,0,0 +2013,4,7,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,25,1,2110,18,1,0 +2013,4,2,2,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2056,-1,0,2352,2,0,0 +2013,6,4,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,-4,0,1705,-1,0,0 +2013,8,7,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,958,-2,0,1007,37,1,0 +2013,9,19,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-6,0,1928,-6,0,0 +2013,7,7,7,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-1,0,1526,2,0,0 +2013,8,18,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-7,0,843,-22,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-6,0,1616,-20,0,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,940,-3,0,1810,-16,0,0 +2013,9,12,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-3,0,2105,-21,0,0 +2013,10,3,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,4,0,1851,-1,0,0 +2013,4,25,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1120,-11,0,1235,-16,0,0 +2013,6,21,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-8,0,835,0,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,30,1,2259,30,1,0 +2013,9,1,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1603,-4,0,1658,4,0,0 +2013,4,5,5,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-4,0,1044,-20,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1355,159,1,1833,165,1,0 +2013,4,20,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2201,-3,0,620,-31,0,0 +2013,5,13,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,-2,0,750,2,0,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1938,-3,0,128,-16,0,0 +2013,7,22,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1005,64,1,1152,59,1,0 +2013,10,2,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,-5,0,540,3,0,0 +2013,7,25,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2040,120,1,2313,97,1,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1554,2,0,1848,-15,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,845,15,1,1010,9,0,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,4,0,1730,1,0,0 +2013,9,5,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1816,-8,0,1930,-3,0,0 +2013,7,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,930,-3,0,1105,-6,0,0 +2013,10,30,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,-1,0,1550,-8,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,1,0,1025,-4,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,23,1,950,25,1,0 +2013,4,13,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1626,-4,0,1857,-10,0,0 +2013,6,10,1,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,160,1,2115,149,1,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2049,11,0,2235,-6,0,0 +2013,9,3,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-12,0,853,-22,0,0 +2013,5,5,7,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1037,-12,0,1250,-16,0,0 +2013,7,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1940,74,1,2245,69,1,0 +2013,9,4,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,655,-3,0,725,-13,0,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-7,0,1630,-9,0,0 +2013,8,13,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2007,-4,0,2026,-12,0,0 +2013,10,13,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2105,-4,0,2210,-2,0,0 +2013,10,8,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,931,-10,0,1235,6,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1420,-3,0,1559,1,0,0 +2013,7,22,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1640,-1,0,1810,-10,0,0 +2013,7,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1003,-1,0,1341,3,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,910,-1,0,1140,-10,0,0 +2013,10,13,7,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,-2,0,1255,-8,0,0 +2013,5,19,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,24,1,1700,15,1,0 +2013,9,15,7,UA,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1332,-1,0,1502,-3,0,0 +2013,4,29,1,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1615,2,0,1819,-4,0,0 +2013,9,17,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-10,0,740,-22,0,0 +2013,7,10,3,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1409,4,0,1645,-7,0,0 +2013,7,8,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,944,-1,0,1450,1,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1747,1,0,2002,1,0,0 +2013,4,4,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,851,-1,0,0 +2013,4,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1310,13,0,1420,7,0,0 +2013,7,21,7,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1420,30,1,1515,24,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,0,0,1220,-2,0,0 +2013,9,3,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,28,1,1405,-4,0,0 +2013,6,25,2,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2220,108,1,2356,99,1,0 +2013,9,8,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,-10,0,1943,-19,0,0 +2013,4,21,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-1,0,1705,-8,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1023,0,0,1640,-9,0,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1825,89,1,2125,161,1,0 +2013,10,10,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,940,-4,0,1215,-11,0,0 +2013,5,3,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,-3,0,2135,-5,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2030,27,1,2253,43,1,0 +2013,10,3,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1704,-3,0,1958,11,0,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-4,0,1019,-14,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1725,140,1,1830,133,1,0 +2013,8,22,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-2,0,1020,-7,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,4,0,2041,5,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-5,0,945,5,0,0 +2013,8,13,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,828,-3,0,1113,-19,0,0 +2013,8,23,5,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1500,36,1,1835,35,1,0 +2013,7,27,6,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1723,14,0,2013,5,0,0 +2013,5,26,7,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1845,7,0,2040,1,0,0 +2013,8,20,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1448,-18,0,1557,-41,0,0 +2013,7,17,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1516,-1,0,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-1,0,1344,-19,0,0 +2013,7,12,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,-10,0,1310,-28,0,0 +2013,8,31,6,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1310,2,0,1529,1,0,0 +2013,10,7,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1529,92,1,1847,83,1,0 +2013,4,12,5,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,12,0,1700,15,1,0 +2013,5,10,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,745,0,0,840,-15,0,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1900,-2,0,2154,-11,0,0 +2013,7,23,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,847,25,1,1042,62,1,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,10,0,1010,-3,0,0 +2013,4,26,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-5,0,900,-17,0,0 +2013,7,21,7,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,25,1,1304,23,1,0 +2013,5,26,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1845,-7,0,2304,-19,0,0 +2013,10,29,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-3,0,953,-16,0,0 +2013,10,9,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,1045,-4,0,0 +2013,5,1,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-9,0,724,-20,0,0 +2013,4,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,930,12,0,1100,0,0,0 +2013,6,20,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1951,-2,0,2043,-15,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2135,70,1,5,68,1,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,10,0,2215,5,0,0 +2013,5,13,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,910,108,1,1240,72,1,0 +2013,6,24,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,23,1,1400,7,0,0 +2013,4,26,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,755,-5,0,1021,-10,0,0 +2013,7,3,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-2,0,1345,-27,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,-5,0,2155,-2,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2110,22,1,2355,15,1,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1555,-6,0,1646,10,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-5,0,1104,-9,0,0 +2013,10,2,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1541,14,0,1739,21,1,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-4,0,1150,-2,0,0 +2013,7,30,2,OO,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1232,-5,0,1606,-30,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1550,-7,0,1810,-17,0,0 +2013,9,14,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,-6,0,1538,-8,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1815,42,1,1940,28,1,0 +2013,6,24,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,-1,0,1348,-8,0,0 +2013,10,30,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-11,0,849,-18,0,0 +2013,5,7,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1755,-9,0,2120,-29,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,-4,0,1635,-17,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,947,-1,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1426,-1,0,1558,0,0,0 +2013,4,21,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1546,-5,0,1735,-2,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-2,0,942,3,0,0 +2013,9,5,4,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,910,10,0,1031,2,0,0 +2013,9,19,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-6,0,858,-3,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,648,-5,0,913,-25,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,930,3,0,1455,-10,0,0 +2013,8,12,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,56,1,1249,54,1,0 +2013,7,29,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1335,0,0,1510,-6,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,945,-4,0,1230,-21,0,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1230,0,,1340,0,1,1 +2013,6,13,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1405,5,0,1809,-14,0,0 +2013,6,22,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,555,-6,0,844,-10,0,0 +2013,4,1,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,535,-5,0,859,-15,0,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,33,1,2130,45,1,0 +2013,5,18,6,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1800,-4,0,2014,-21,0,0 +2013,7,14,7,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-5,0,1950,5,0,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,11,0,2100,7,0,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2245,1,0,2347,-2,0,0 +2013,8,17,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,700,-3,0,755,3,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1610,15,1,1735,7,0,0 +2013,5,20,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-2,0,1855,-25,0,0 +2013,8,14,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-4,0,1302,-4,0,0 +2013,7,29,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,600,1,0,700,0,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,9,0,1849,32,1,0 +2013,8,29,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-6,0,955,-8,0,0 +2013,6,24,1,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1747,87,1,2030,105,1,0 +2013,10,29,2,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-6,0,1300,19,1,0 +2013,8,29,4,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-9,0,1213,-8,0,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,1,0,1910,3,0,0 +2013,10,8,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,740,-1,0,835,-2,0,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1000,-5,0,1343,-20,0,0 +2013,5,10,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-9,0,1345,-18,0,0 +2013,6,14,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1629,-5,0,1929,27,1,0 +2013,8,15,4,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-6,0,1305,-6,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1835,23,1,2310,22,1,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2000,-2,0,2210,4,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1733,155,1,1845,135,1,0 +2013,5,17,5,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-6,0,913,-7,0,0 +2013,7,22,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1350,0,,1525,0,1,1 +2013,9,18,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1140,-9,0,1305,-12,0,0 +2013,9,18,3,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1200,-5,0,1319,-9,0,0 +2013,6,11,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-9,0,1010,2,0,0 +2013,7,26,5,DL,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-10,0,1110,-5,0,0 +2013,5,30,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1656,-1,0,0 +2013,9,29,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,908,-6,0,1133,11,0,0 +2013,9,21,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1140,-5,0,1258,3,0,0 +2013,7,30,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1431,103,1,1605,93,1,0 +2013,10,7,1,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1910,100,1,2235,73,1,0 +2013,9,1,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,50,1,1951,39,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,2,0,1236,-8,0,0 +2013,9,17,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1045,-7,0,1202,-12,0,0 +2013,4,9,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-3,0,1445,0,0,0 +2013,5,6,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-5,0,952,-5,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1750,20,1,2041,68,1,0 +2013,8,28,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1130,183,1,1400,165,1,0 +2013,8,21,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1043,-1,0,1840,-5,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2044,41,1,2232,40,1,0 +2013,10,11,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,2,0,1155,5,0,0 +2013,5,17,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1544,-8,0,1700,-12,0,0 +2013,8,16,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-4,0,1523,-3,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,15,1,1308,-2,0,0 +2013,5,4,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1146,0,0,0 +2013,8,22,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-3,0,758,-3,0,0 +2013,7,15,1,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,10,0,2139,-2,0,0 +2013,8,12,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,-2,0,1114,-2,0,0 +2013,7,14,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1910,44,1,1935,39,1,0 +2013,5,8,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,922,-12,0,1235,23,1,0 +2013,4,19,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,645,0,,825,0,1,1 +2013,10,19,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,7,0,2005,-6,0,0 +2013,10,9,3,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1500,-2,0,1750,-8,0,0 +2013,5,20,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1132,-10,0,1335,-22,0,0 +2013,5,27,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-10,0,801,1,0,0 +2013,5,14,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-5,0,1630,-6,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1330,4,0,1550,-9,0,0 +2013,6,30,7,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-1,0,1942,-2,0,0 +2013,9,19,4,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1441,330,1,1604,328,1,0 +2013,8,16,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2320,-2,0,608,-4,0,0 +2013,5,14,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,53,1,950,31,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,32,1,1510,46,1,0 +2013,10,31,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,10,0,1800,12,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-3,0,1854,11,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,1,0,1924,-3,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,29,1,1736,28,1,0 +2013,6,20,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,16,1,1040,11,0,0 +2013,8,2,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,800,0,0,905,0,0,0 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,700,0,0,1030,0,0,0 +2013,4,17,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1345,-1,0,1445,-3,0,0 +2013,7,14,7,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,830,-5,0,957,-12,0,0 +2013,9,28,6,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1244,14,0,1539,-16,0,0 +2013,4,25,4,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1225,-1,0,1346,-17,0,0 +2013,10,29,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-8,0,1850,-13,0,0 +2013,9,21,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1725,-5,0,1855,-2,0,0 +2013,9,10,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1505,-3,0,1745,-20,0,0 +2013,5,13,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1810,4,0,1935,12,0,0 +2013,4,16,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-3,0,604,-27,0,0 +2013,5,30,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,6,0,1855,-2,0,0 +2013,5,12,7,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,820,11,0,1113,-3,0,0 +2013,5,18,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1915,2,0,2300,-14,0,0 +2013,9,27,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1509,-5,0,1635,-3,0,0 +2013,6,22,6,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,739,-2,0,920,-5,0,0 +2013,10,27,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,10,0,1347,-12,0,0 +2013,10,10,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1105,-13,0,1342,-29,0,0 +2013,6,3,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1325,54,1,1410,47,1,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,655,-1,0,1200,-4,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,905,-2,0,1026,11,0,0 +2013,9,30,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1210,-7,0,1355,22,1,0 +2013,4,25,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,845,-4,0,950,-14,0,0 +2013,9,5,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1320,20,1,1450,17,1,0 +2013,10,2,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-12,0,2158,-31,0,0 +2013,4,18,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,-7,0,610,-13,0,0 +2013,7,25,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1601,23,1,1900,33,1,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,859,-3,0,1156,0,0,0 +2013,8,19,1,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-8,0,1238,-33,0,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,830,-1,0,1054,-26,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1915,0,0,2345,-23,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1710,-3,0,1819,-11,0,0 +2013,8,24,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,-2,0,951,-12,0,0 +2013,10,21,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1559,-4,0,1724,-22,0,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2247,-6,0,2,-17,0,0 +2013,4,14,7,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,635,0,0,1455,-13,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,810,2,0,1025,-2,0,0 +2013,5,19,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1118,-2,0,1146,-5,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1432,-3,0,0 +2013,6,7,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,0,,720,0,1,1 +2013,6,1,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,-4,0,1728,-20,0,0 +2013,6,5,3,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,730,-1,0,920,8,0,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1412,-3,0,1545,-15,0,0 +2013,6,28,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,913,-6,0,1430,-22,0,0 +2013,7,27,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2223,-8,0,613,-24,0,0 +2013,6,3,1,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,0,0,800,-10,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,-3,0,1656,-13,0,0 +2013,8,22,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1539,40,1,1658,66,1,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2105,16,1,10,4,0,0 +2013,4,18,4,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1854,84,1,2140,77,1,0 +2013,7,5,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,122,1,1838,95,1,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-2,0,925,-16,0,0 +2013,8,19,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,-2,0,1046,-9,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2240,0,,2350,0,1,1 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2150,0,0,2348,-8,0,0 +2013,6,2,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1610,57,1,1640,58,1,0 +2013,6,17,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1034,103,1,1148,96,1,0 +2013,7,16,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,-7,0,2300,-4,0,0 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2022,20,1,2155,41,1,0 +2013,7,16,2,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2220,8,0,105,-4,0,0 +2013,6,15,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1235,20,1,1800,6,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,707,-6,0,938,-16,0,0 +2013,4,23,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1000,-4,0,1253,-10,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2125,22,1,2235,12,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1000,-5,0,1105,-1,0,0 +2013,10,28,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-8,0,753,-14,0,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1544,-1,0,1909,0,0,0 +2013,5,31,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1217,21,1,1328,27,1,0 +2013,8,15,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-7,0,2010,9,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,900,-3,0,1120,4,0,0 +2013,6,15,6,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1706,126,1,1811,122,1,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1717,-1,0,2125,-17,0,0 +2013,6,7,5,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1935,52,1,2044,57,1,0 +2013,7,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,530,-2,0,1115,-9,0,0 +2013,5,6,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-6,0,859,5,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1550,12,0,1735,10,0,0 +2013,5,13,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2135,2,0,2255,9,0,0 +2013,6,24,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1920,6,0,2030,-1,0,0 +2013,6,25,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,9,0,1825,-4,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1340,93,1,1825,68,1,0 +2013,7,30,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,745,-2,0,830,5,0,0 +2013,10,18,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1603,-6,0,1900,-20,0,0 +2013,8,5,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2025,69,1,2150,67,1,0 +2013,8,27,2,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1805,-3,0,1920,-6,0,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,34,1,2121,30,1,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,640,-4,0,945,2,0,0 +2013,8,15,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1609,-7,0,1655,-17,0,0 +2013,7,23,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,40,1,1629,25,1,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,703,-5,0,1050,-25,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,755,-4,0,930,-16,0,0 +2013,9,12,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-7,0,1155,-5,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,35,1,1205,15,1,0 +2013,6,7,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,0,0,1820,-5,0,0 +2013,6,23,7,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-4,0,1132,-12,0,0 +2013,10,26,6,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,-1,0,1755,-36,0,0 +2013,9,19,4,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1855,76,1,2005,73,1,0 +2013,5,16,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-2,0,1312,0,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,11,0,1007,-8,0,0 +2013,7,27,6,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,815,-3,0,1020,-8,0,0 +2013,8,21,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1500,-9,0,1540,-7,0,0 +2013,9,5,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,800,-7,0,933,-18,0,0 +2013,9,22,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1622,-8,0,1915,-3,0,0 +2013,4,28,7,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1526,5,0,1716,-14,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1343,-1,0,1549,-13,0,0 +2013,9,14,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,0,0,1535,-10,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,-1,0,1505,-13,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,-4,0,2257,-29,0,0 +2013,4,11,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,6,0,1849,4,0,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1727,-2,0,1855,-32,0,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1950,-2,0,2143,-15,0,0 +2013,10,27,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1015,86,1,1220,87,1,0 +2013,5,31,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1134,52,1,1300,43,1,0 +2013,5,17,5,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-6,0,952,-14,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,820,-3,0,1130,-8,0,0 +2013,10,29,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2005,-1,0,2125,-13,0,0 +2013,7,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-5,0,1259,-11,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,954,-4,0,1134,-21,0,0 +2013,8,14,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,9,0,2230,-5,0,0 +2013,5,13,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-3,0,835,15,1,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1519,-5,0,1750,7,0,0 +2013,10,4,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,540,-4,0,1145,-20,0,0 +2013,9,26,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-4,0,1635,-23,0,0 +2013,7,7,7,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1317,-1,0,1454,-20,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,3,0,1504,10,0,0 +2013,6,13,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,803,-1,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,-2,0,1605,-1,0,0 +2013,7,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,100,1,2245,93,1,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,825,-2,0,1045,9,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2055,-4,0,2355,-6,0,0 +2013,9,25,3,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,810,-7,0,1054,5,0,0 +2013,10,3,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-5,0,2028,-9,0,0 +2013,9,19,4,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-8,0,820,-5,0,0 +2013,8,25,7,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1614,-4,0,1735,-16,0,0 +2013,10,12,6,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1410,23,1,1640,19,1,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,710,-5,0,1230,-15,0,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1355,0,0,1455,-2,0,0 +2013,10,13,7,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,24,1,2110,23,1,0 +2013,8,13,2,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,935,28,1,1240,24,1,0 +2013,6,6,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,1,0,1305,-9,0,0 +2013,10,14,1,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,648,5,0,0 +2013,9,6,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1557,-1,0,1834,-5,0,0 +2013,10,21,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,605,-6,0,750,-1,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,56,1,2055,55,1,0 +2013,5,7,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1025,-3,0,1305,-25,0,0 +2013,7,24,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,97,1,808,88,1,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,198,1,2252,184,1,0 +2013,10,5,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1749,-1,0,2016,1,0,0 +2013,9,6,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2040,-3,0,2145,-6,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,5,0,1720,-8,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1435,21,1,1600,18,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,2,0,2030,-5,0,0 +2013,8,6,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,109,1,1759,105,1,0 +2013,10,23,3,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-2,0,1251,9,0,0 +2013,5,23,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1408,0,,1700,0,1,1 +2013,10,18,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-6,0,2242,-15,0,0 +2013,5,3,5,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,750,-6,0,1042,-7,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1753,65,1,1941,47,1,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2010,34,1,2310,31,1,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2020,59,1,2305,67,1,0 +2013,8,17,6,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,805,-1,0,919,-1,0,0 +2013,4,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,840,-4,0,1100,-9,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,7,0,1725,2,0,0 +2013,4,1,1,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,-8,0,1711,-5,0,0 +2013,6,26,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1345,62,1,1535,83,1,0 +2013,7,11,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,4,0,1310,-8,0,0 +2013,5,29,3,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1840,-4,0,2150,25,1,0 +2013,7,2,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1130,30,1,1256,25,1,0 +2013,8,3,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,648,0,,752,0,1,1 +2013,6,15,6,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,19,1,1359,12,0,0 +2013,6,12,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,-1,0,720,0,0,0 +2013,8,21,3,VX,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,2000,-8,0,2355,-28,0,0 +2013,7,6,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1315,-2,0,1518,-16,0,0 +2013,9,10,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,-4,0,1755,-15,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1730,-1,0,1835,-9,0,0 +2013,10,31,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-4,0,1815,-5,0,0 +2013,8,31,6,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2053,-8,0,500,-9,0,0 +2013,5,25,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-5,0,1200,-21,0,0 +2013,7,1,1,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,34,1,1225,23,1,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2135,-7,0,2310,-26,0,0 +2013,6,22,6,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,1641,1,0,1905,-2,0,0 +2013,5,5,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1525,4,0,1715,-11,0,0 +2013,10,2,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,17,1,1805,-3,0,0 +2013,5,7,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,837,-10,0,939,0,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2156,-7,0,2308,-23,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1907,9,0,2244,-10,0,0 +2013,10,26,6,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1615,-2,0,1856,-12,0,0 +2013,5,31,5,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1345,1,0,2203,-14,0,0 +2013,7,15,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1355,108,1,1531,103,1,0 +2013,4,21,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1510,-4,0,1805,-5,0,0 +2013,8,11,7,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-4,0,2007,-5,0,0 +2013,9,13,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,-3,0,2240,3,0,0 +2013,7,6,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-7,0,931,2,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-3,0,1219,9,0,0 +2013,6,27,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,28,1,1930,19,1,0 +2013,9,20,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,196,1,2058,186,1,0 +2013,6,15,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,2000,11,0,2245,5,0,0 +2013,5,31,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1601,-1,0,1746,48,1,0 +2013,5,12,7,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,925,-9,0,1110,-27,0,0 +2013,7,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1417,102,1,1732,96,1,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1738,14,0,1926,23,1,0 +2013,6,12,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1514,-1,0,1648,-6,0,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,-2,0,1835,25,1,0 +2013,10,31,4,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,830,1,0,1655,23,1,0 +2013,9,16,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,6,0,1700,4,0,0 +2013,6,19,3,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1534,-6,0,1715,-1,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-2,0,912,-24,0,0 +2013,7,9,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-5,0,1340,36,1,0 +2013,5,13,1,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,1915,-5,0,2015,-16,0,0 +2013,10,16,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-5,0,840,8,0,0 +2013,8,13,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-10,0,912,-18,0,0 +2013,5,15,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1348,-2,0,1619,-11,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1155,7,0,1330,4,0,0 +2013,4,4,4,WN,15376,Tucson International,Tucson,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1720,-6,0,1925,-11,0,0 +2013,4,7,7,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1845,-10,0,2205,-26,0,0 +2013,5,21,2,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,16,1,1955,-2,0,0 +2013,7,10,3,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-2,0,1026,-14,0,0 +2013,6,6,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1250,5,0,1400,-3,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1845,6,0,2110,-1,0,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1500,99,1,1624,91,1,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,16,1,1128,16,1,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,-1,0,855,-2,0,0 +2013,4,29,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,-3,0,1429,27,1,0 +2013,7,28,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-4,0,838,-14,0,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1003,0,0,1604,-11,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,820,3,0,1055,-3,0,0 +2013,9,27,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1515,-6,0,1813,21,1,0 +2013,5,2,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,645,-2,0,800,-6,0,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1905,0,0,2239,0,0,0 +2013,5,19,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-4,0,1115,-12,0,0 +2013,9,5,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1220,-3,0,1452,-1,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1305,0,0,1617,-10,0,0 +2013,10,19,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1545,17,1,1800,6,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1706,1,0,2344,9,0,0 +2013,8,16,5,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1929,-2,0,22,14,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1355,175,1,2156,210,1,0 +2013,4,4,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,102,1,2120,116,1,0 +2013,4,19,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1410,51,1,1722,49,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,41,1,1611,66,1,0 +2013,10,18,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,600,2,0,710,-1,0,0 +2013,6,19,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1625,6,0,1815,-10,0,0 +2013,10,30,3,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,0,0,1750,-3,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,2359,-1,0,454,-7,0,0 +2013,5,13,1,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1459,45,1,1727,38,1,0 +2013,6,5,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,7,0,1135,7,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,20,1,2120,95,1,0 +2013,5,8,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,605,-1,0,700,-19,0,0 +2013,5,28,2,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2130,155,1,2357,139,1,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1215,-3,0,1425,-9,0,0 +2013,6,19,3,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-5,0,2057,-50,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1155,1,0,1510,9,0,0 +2013,4,13,6,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1422,-14,0,1633,-16,0,0 +2013,9,23,1,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1740,9,0,2010,-4,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1250,14,0,1405,3,0,0 +2013,7,23,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,20,1,1953,25,1,0 +2013,10,24,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1359,265,1,1531,266,1,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2115,19,1,2235,28,1,0 +2013,9,19,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,610,-2,0,1029,9,0,0 +2013,8,21,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,5,0,1645,12,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,-1,0,1150,2,0,0 +2013,9,13,5,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2130,21,1,2359,-4,0,0 +2013,9,26,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,645,-2,0,817,-22,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,837,15,1,1650,16,1,0 +2013,8,19,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1532,14,0,1948,-13,0,0 +2013,10,26,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1000,11,0,1221,-9,0,0 +2013,6,30,7,VX,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,2000,-7,0,2355,-34,0,0 +2013,9,23,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-5,0,1845,-9,0,0 +2013,6,3,1,YV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1000,-4,0,1137,-24,0,0 +2013,6,7,5,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1815,101,1,2142,95,1,0 +2013,7,26,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,13,0,1635,18,1,0 +2013,7,31,3,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,0,0,1655,2,0,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1740,17,1,1900,20,1,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1651,4,0,1803,-6,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2142,0,,2259,0,1,1 +2013,10,29,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-1,0,940,3,0,0 +2013,7,7,7,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-6,0,855,-6,0,0 +2013,4,5,5,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1743,0,0,1924,0,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2136,18,1,2241,19,1,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,845,18,1,1200,28,1,0 +2013,10,8,2,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1755,-1,0,2018,-12,0,0 +2013,5,31,5,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,12,0,940,0,0,0 +2013,5,17,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1620,2,0,1805,4,0,0 +2013,6,15,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1615,48,1,1800,28,1,0 +2013,7,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1650,18,1,1752,15,1,0 +2013,10,16,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,615,33,1,725,27,1,0 +2013,6,14,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2055,16,1,2215,17,1,0 +2013,10,12,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1545,47,1,1735,30,1,0 +2013,5,30,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-6,0,2143,-21,0,0 +2013,7,25,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1245,0,0,1415,-3,0,0 +2013,8,18,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1730,-5,0,1921,-13,0,0 +2013,6,12,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1655,-6,0,1923,16,1,0 +2013,4,28,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2015,-11,0,2143,-17,0,0 +2013,5,16,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,0,0,855,30,1,0 +2013,10,31,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,-5,0,1558,-15,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2115,0,0,2242,-1,0,0 +2013,8,5,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1606,-10,0,1915,-18,0,0 +2013,7,13,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-3,0,1135,-6,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,11,0,747,3,0,0 +2013,7,23,2,EV,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1743,116,1,1900,99,1,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1035,-3,0,1245,-12,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-8,0,1108,-22,0,0 +2013,8,24,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-6,0,922,-10,0,0 +2013,10,26,6,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1845,10,0,2144,-12,0,0 +2013,10,16,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-6,0,840,-2,0,0 +2013,7,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-5,0,1100,-2,0,0 +2013,9,26,4,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1500,7,0,1752,12,0,0 +2013,7,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1356,-4,0,1710,-18,0,0 +2013,6,6,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1725,-4,0,1907,-6,0,0 +2013,6,22,6,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1530,-8,0,1631,-17,0,0 +2013,8,10,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,11,0,1505,9,0,0 +2013,8,26,1,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1903,38,1,2122,13,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-8,0,1054,-13,0,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,11,0,2322,-8,0,0 +2013,7,29,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,-4,0,2030,-28,0,0 +2013,6,27,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1640,123,1,1834,211,1,0 +2013,6,17,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,19,1,1710,1,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,-4,0,1627,-7,0,0 +2013,7,3,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-4,0,2203,-1,0,0 +2013,10,8,2,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-1,0,1440,-4,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-6,0,1040,-13,0,0 +2013,5,28,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,725,-1,0,1115,-7,0,0 +2013,9,17,2,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,640,-3,0,755,-1,0,0 +2013,10,8,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1608,-8,0,2359,-21,0,0 +2013,5,6,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,0,0,740,-5,0,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1645,-1,0,1944,-29,0,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,2110,-8,0,40,-23,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-5,0,1306,2,0,0 +2013,5,23,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2140,-6,0,2312,-18,0,0 +2013,10,13,7,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-7,0,1511,-16,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,3,0,1245,9,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,4,0,1530,0,0,0 +2013,7,25,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1155,-8,0,1455,-3,0,0 +2013,8,7,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,-2,0,1003,9,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1609,3,0,1930,-6,0,0 +2013,8,23,5,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1345,16,1,1530,24,1,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-6,0,936,-20,0,0 +2013,6,3,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1100,-2,0,1157,1,0,0 +2013,10,8,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-9,0,715,-15,0,0 +2013,9,28,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2116,-3,0,520,-11,0,0 +2013,8,17,6,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,-3,0,1125,10,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,-4,0,1101,-12,0,0 +2013,9,26,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-6,0,1105,7,0,0 +2013,4,6,6,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1203,0,0,1537,-22,0,0 +2013,10,4,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2010,-7,0,2204,-5,0,0 +2013,8,2,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-6,0,1915,-10,0,0 +2013,8,8,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-4,0,1352,-38,0,0 +2013,7,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,600,-8,0,1410,23,1,0 +2013,6,20,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,10,0,2259,-6,0,0 +2013,5,3,5,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2028,24,1,2150,35,1,0 +2013,5,6,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-4,0,1115,6,0,0 +2013,9,8,7,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-4,0,1005,-19,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1500,-1,0,1605,-4,0,0 +2013,6,4,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,2,0,1826,-6,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2033,1,0,2203,3,0,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1850,25,1,2010,46,1,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2250,-6,0,7,-12,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,13,0,1515,15,1,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-2,0,1130,-3,0,0 +2013,7,5,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-5,0,2130,23,1,0 +2013,5,8,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,0,0,558,-4,0,0 +2013,6,28,5,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1206,8,0,1322,0,0,0 +2013,6,16,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,5,0,1627,-8,0,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1240,50,1,1535,54,1,0 +2013,10,25,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1240,-4,0,1405,-12,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2010,46,1,2158,40,1,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-2,0,855,-15,0,0 +2013,6,29,6,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,20,1,2030,20,1,0 +2013,9,2,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,635,-2,0,839,-8,0,0 +2013,9,3,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,741,-23,0,0 +2013,4,23,2,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,825,3,0,1227,3,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1335,-1,0,1435,0,0,0 +2013,5,13,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,-2,0,1250,-8,0,0 +2013,8,31,6,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1110,15,1,1335,17,1,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,1,0,1420,-4,0,0 +2013,8,28,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,14,0,2125,8,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1825,18,1,1935,19,1,0 +2013,8,7,3,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,615,-1,0,830,-7,0,0 +2013,5,24,5,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1445,-4,0,1639,-21,0,0 +2013,7,1,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1050,5,0,1305,-17,0,0 +2013,5,2,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,710,0,0,810,-6,0,0 +2013,10,21,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-8,0,925,7,0,0 +2013,8,14,3,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1034,-6,0,1409,-25,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1450,0,0,1615,-12,0,0 +2013,10,26,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1629,-25,0,0 +2013,5,7,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,1,0,1315,-6,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1305,-2,0,1430,-22,0,0 +2013,9,6,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1730,-9,0,1850,7,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,752,1,0,1400,-3,0,0 +2013,5,11,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1912,52,1,2045,20,1,0 +2013,10,31,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,3,0,2015,16,1,0 +2013,6,3,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1920,25,1,2050,12,0,0 +2013,7,7,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-9,0,654,-15,0,0 +2013,4,12,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,0,,1221,0,1,1 +2013,7,21,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,74,1,2150,78,1,0 +2013,6,7,5,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,645,1,0,715,-1,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,940,-4,0,1158,-7,0,0 +2013,6,7,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1133,-1,0,1904,-6,0,0 +2013,10,26,6,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1010,-12,0,1310,-3,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1755,57,1,1940,43,1,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1419,7,0,1625,-5,0,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,2007,21,1,2155,16,1,0 +2013,5,31,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,-7,0,1310,-12,0,0 +2013,4,8,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,-6,0,1558,-5,0,0 +2013,6,15,6,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-4,0,1036,-33,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,932,-7,0,1800,-8,0,0 +2013,9,30,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,8,0,530,15,1,0 +2013,5,3,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,43,1,1825,48,1,0 +2013,5,10,5,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,600,124,1,755,102,1,0 +2013,4,24,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1455,2,0,1724,23,1,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,2000,2,0,55,7,0,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1215,-4,0,1415,0,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,730,4,0,1030,22,1,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,920,18,1,1055,5,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1736,61,1,1846,56,1,0 +2013,8,30,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,857,-8,0,0 +2013,10,17,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1323,-1,0,2149,-31,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1819,-3,0,2012,-27,0,0 +2013,7,1,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,11,0,1610,9,0,0 +2013,8,9,5,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,-2,0,2355,-11,0,0 +2013,4,13,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-3,0,1451,-11,0,0 +2013,6,3,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1525,63,1,1650,58,1,0 +2013,9,13,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2016,-8,0,2105,19,1,0 +2013,5,19,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-4,0,149,-7,0,0 +2013,9,3,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,21,1,2135,22,1,0 +2013,8,20,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1410,11,0,1535,19,1,0 +2013,10,6,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1804,-6,0,1945,-9,0,0 +2013,5,13,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,840,-6,0,1209,-28,0,0 +2013,6,24,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,610,-3,0,805,-14,0,0 +2013,5,11,6,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1755,10,0,2143,134,1,0 +2013,5,9,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,821,-11,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,836,89,1,1141,91,1,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,32,1,1540,11,0,0 +2013,6,2,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1007,-3,0,1045,0,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1040,44,1,1217,40,1,0 +2013,6,2,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,0,,1745,0,1,1 +2013,8,2,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1020,18,1,1150,0,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1130,3,0,1345,4,0,0 +2013,6,12,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,6,0,1352,-2,0,0 +2013,8,29,4,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,14,0,1404,23,1,0 +2013,10,17,4,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1712,-3,0,1852,-9,0,0 +2013,5,29,3,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1027,20,1,1033,14,0,0 +2013,7,3,3,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1744,-5,0,1858,-5,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1555,82,1,1750,74,1,0 +2013,8,20,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,833,-6,0,1044,-29,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1730,2,0,1915,-17,0,0 +2013,7,7,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,955,8,0,0 +2013,8,19,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,-5,0,2105,-3,0,0 +2013,4,8,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,-1,0,1122,-11,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2211,-8,0,2312,-21,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1525,0,0,1635,-1,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,0,0,1911,-13,0,0 +2013,4,28,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1252,12,0,1534,-2,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-2,0,1346,-1,0,0 +2013,5,23,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1458,24,1,1615,22,1,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,620,-3,0,930,-24,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,99,1,1955,128,1,0 +2013,5,27,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,-1,0,1155,-10,0,0 +2013,10,23,3,UA,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1700,208,1,1844,205,1,0 +2013,5,21,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1721,88,1,1915,95,1,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,5,0,1910,6,0,0 +2013,7,2,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,816,-3,0,925,-11,0,0 +2013,8,19,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1740,121,1,1955,107,1,0 +2013,5,8,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1906,-12,0,2018,-7,0,0 +2013,8,23,5,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,552,-7,0,654,-16,0,0 +2013,5,1,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1158,0,0,1256,0,0,0 +2013,4,25,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-7,0,930,-6,0,0 +2013,4,23,2,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1524,-2,0,1739,16,1,0 +2013,8,9,5,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,117,1,2042,102,1,0 +2013,4,26,5,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2040,18,1,33,19,1,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1759,29,1,1944,12,0,0 +2013,6,22,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,24,1,1815,18,1,0 +2013,9,23,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-8,0,630,-20,0,0 +2013,10,23,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1250,-9,0,1606,1,0,0 +2013,7,31,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-4,0,2100,-4,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,945,-2,0,1235,-8,0,0 +2013,5,14,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-7,0,1121,-7,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2005,-6,0,2305,-9,0,0 +2013,5,27,1,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1642,-7,0,2054,-6,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1538,12,0,1644,-2,0,0 +2013,5,10,5,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,11,0,2235,12,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2035,-2,0,2155,-19,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1032,-4,0,1551,-7,0,0 +2013,9,2,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-13,0,929,-8,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,12,0,1705,6,0,0 +2013,7,4,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,-4,0,1458,-6,0,0 +2013,10,26,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,735,-2,0,845,-11,0,0 +2013,8,18,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,0,0,1845,-14,0,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-9,0,1948,-16,0,0 +2013,4,23,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-6,0,1105,-8,0,0 +2013,6,6,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,505,-7,0,751,-15,0,0 +2013,5,2,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,-2,0,755,17,1,0 +2013,9,12,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,9,0,1515,-5,0,0 +2013,6,24,1,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,140,1,501,145,1,0 +2013,9,24,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1505,-8,0,1737,-4,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,-1,0,2300,-6,0,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1700,15,1,2130,-3,0,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-4,0,900,7,0,0 +2013,10,7,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-2,0,718,-18,0,0 +2013,7,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,5,0,1344,0,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1615,3,0,1710,7,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-1,0,1333,-8,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,718,-4,0,1135,-25,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,640,-3,0,1023,-6,0,0 +2013,5,29,3,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1130,4,0,1233,-12,0,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1925,105,1,2150,103,1,0 +2013,9,28,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,9,0,1145,-18,0,0 +2013,6,20,4,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,955,10,0,1530,0,0,0 +2013,6,7,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-6,0,1122,0,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,902,-2,0,1705,-16,0,0 +2013,4,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2025,2,0,2241,-9,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1830,26,1,2235,26,1,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,0,0,930,0,0,0 +2013,10,12,6,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2250,-5,0,2359,-10,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,7,0,2040,13,0,0 +2013,4,2,2,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1520,20,1,1830,8,0,0 +2013,5,16,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1539,-6,0,1844,-13,0,0 +2013,6,13,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,802,0,0,900,-4,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1935,-1,0,2118,-9,0,0 +2013,9,21,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1316,76,1,1622,83,1,0 +2013,8,30,5,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-6,0,1630,-26,0,0 +2013,9,13,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1815,22,1,1905,22,1,0 +2013,4,13,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1600,-11,0,1644,-13,0,0 +2013,7,6,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,0,0,1000,-2,0,0 +2013,7,19,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,105,1,1730,92,1,0 +2013,4,11,4,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1750,138,1,2010,156,1,0 +2013,8,13,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2021,0,0,2151,-8,0,0 +2013,10,10,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1112,5,0,1233,-4,0,0 +2013,4,28,7,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-2,0,923,3,0,0 +2013,10,2,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,-6,0,911,-5,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,638,-6,0,853,-9,0,0 +2013,6,7,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,113,1,1912,131,1,0 +2013,7,16,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1705,-3,0,1815,-29,0,0 +2013,9,12,4,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1300,-4,0,1625,-12,0,0 +2013,7,11,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,31,1,1938,19,1,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,6,0,1136,5,0,0 +2013,4,12,5,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,22,1,1824,27,1,0 +2013,4,10,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-4,0,803,17,1,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,730,1,0,1035,-4,0,0 +2013,9,11,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2035,7,0,2135,-6,0,0 +2013,5,24,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,950,4,0,1324,-13,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,0,,2115,0,1,1 +2013,6,11,2,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1823,-9,0,1927,-9,0,0 +2013,10,7,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-2,0,1722,-22,0,0 +2013,5,28,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,40,1,1348,19,1,0 +2013,10,12,6,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1615,14,0,1925,1,0,0 +2013,5,28,2,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1823,-8,0,2100,-5,0,0 +2013,9,21,6,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,617,-8,0,755,-25,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,-2,0,816,-29,0,0 +2013,4,25,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,-2,0,1905,-2,0,0 +2013,9,27,5,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-2,0,1806,-12,0,0 +2013,9,10,2,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1400,-2,0,1550,-18,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,8,0,1241,0,0,0 +2013,8,5,1,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,82,1,745,74,1,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,812,-6,0,1011,18,1,0 +2013,7,13,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1440,-2,0,1640,-31,0,0 +2013,4,10,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1450,-5,0,0 +2013,6,28,5,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1620,65,1,1853,79,1,0 +2013,6,21,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1741,0,0,1911,-11,0,0 +2013,5,13,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,1,0,1330,6,0,0 +2013,7,24,3,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,-1,0,1955,-1,0,0 +2013,9,3,2,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1823,-4,0,2110,4,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,1,0,2015,-7,0,0 +2013,4,15,1,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1021,-2,0,1145,-7,0,0 +2013,4,13,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,700,3,0,930,-14,0,0 +2013,6,10,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-4,0,716,-10,0,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-2,0,1336,-5,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,845,-5,0,1004,2,0,0 +2013,4,24,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2111,128,1,2220,129,1,0 +2013,8,2,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-6,0,1855,-2,0,0 +2013,10,4,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1952,-5,0,2150,-11,0,0 +2013,9,26,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,917,-4,0,1716,-20,0,0 +2013,8,25,7,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-7,0,840,-8,0,0 +2013,4,6,6,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,945,1,0,1240,-5,0,0 +2013,9,16,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1350,14,0,1510,9,0,0 +2013,4,12,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1420,19,1,1812,3,0,0 +2013,5,2,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,610,-2,0,720,1,0,0 +2013,7,3,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,0,0,1207,-16,0,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2035,-2,0,2150,-7,0,0 +2013,9,1,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1758,-3,0,2018,-17,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,21,1,2327,31,1,0 +2013,6,5,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1820,5,0,2005,3,0,0 +2013,5,8,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1200,-2,0,1709,-1,0,0 +2013,8,1,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-6,0,910,-36,0,0 +2013,4,20,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1817,-4,0,1854,-4,0,0 +2013,4,14,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,8,0,1820,-1,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,-2,0,1530,-19,0,0 +2013,7,22,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-5,0,1128,-12,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1245,15,1,1455,1,0,0 +2013,9,7,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-3,0,1523,-4,0,0 +2013,9,24,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-7,0,1115,-19,0,0 +2013,7,16,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-5,0,1307,-36,0,0 +2013,7,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2133,-6,0,2205,-2,0,0 +2013,10,19,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1945,-2,0,2100,-19,0,0 +2013,7,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1555,-1,0,1800,-8,0,0 +2013,4,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1357,0,0,1544,9,0,0 +2013,9,5,4,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-1,0,1011,-9,0,0 +2013,5,11,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1438,-8,0,1603,-8,0,0 +2013,7,6,6,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,26,1,1935,20,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,-1,0,1415,2,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1503,12,0,1717,10,0,0 +2013,5,2,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,-1,0,750,-9,0,0 +2013,6,12,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,1,0,1020,-9,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2300,-3,0,644,-17,0,0 +2013,10,23,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1203,-4,0,1326,-13,0,0 +2013,9,25,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1817,3,0,1904,-2,0,0 +2013,4,17,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-3,0,920,-7,0,0 +2013,9,25,3,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1455,29,1,1730,56,1,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,2,0,1907,14,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,2005,53,1,2349,27,1,0 +2013,7,3,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1843,8,0,1950,-9,0,0 +2013,5,1,3,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1725,12,0,1904,-1,0,0 +2013,7,29,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,0,0,1424,-3,0,0 +2013,4,18,4,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,0,0,919,6,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1445,16,1,1601,13,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,859,0,0,1109,-13,0,0 +2013,8,20,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1040,3,0,1230,-3,0,0 +2013,4,12,5,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-7,0,1815,-10,0,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1631,-7,0,1834,-31,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1745,2,0,2030,-4,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,1,0,1717,0,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2000,9,0,2217,13,0,0 +2013,5,31,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-13,0,1003,-22,0,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,0,0,1935,-1,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,-1,0,1105,2,0,0 +2013,9,27,5,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1307,3,0,1553,1,0,0 +2013,10,18,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1210,11,0,1520,1,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1410,4,0,1625,4,0,0 +2013,6,12,3,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,635,-2,0,755,-10,0,0 +2013,8,25,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,2020,-5,0,2214,-11,0,0 +2013,8,7,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1728,0,0,1900,-5,0,0 +2013,8,21,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-3,0,1242,-4,0,0 +2013,5,8,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,749,-7,0,925,-12,0,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-6,0,1508,-9,0,0 +2013,9,19,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1010,-7,0,1138,-3,0,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,-4,0,1211,3,0,0 +2013,5,3,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,835,-3,0,1159,6,0,0 +2013,5,17,5,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1708,-7,0,1800,-19,0,0 +2013,8,9,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,959,-4,0,1255,-7,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,15,1,1720,6,0,0 +2013,7,7,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-2,0,825,-2,0,0 +2013,5,16,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,820,-7,0,1058,-6,0,0 +2013,6,7,5,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,832,10,0,1018,17,1,0 +2013,4,11,4,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1926,-9,0,2305,-3,0,0 +2013,10,11,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-1,0,1355,-10,0,0 +2013,6,30,7,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,13,0,1605,4,0,0 +2013,6,21,5,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1709,-6,0,1815,-12,0,0 +2013,9,17,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,4,0,2100,-7,0,0 +2013,5,28,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-6,0,1305,2,0,0 +2013,6,24,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,0,0,1809,-7,0,0 +2013,8,7,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,847,24,1,0 +2013,9,16,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,937,-5,0,0 +2013,10,9,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,-4,0,1733,6,0,0 +2013,7,5,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,-6,0,1502,-7,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,729,-1,0,845,-15,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-2,0,2335,18,1,0 +2013,4,24,3,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-4,0,1210,-11,0,0 +2013,10,13,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1241,16,1,1759,9,0,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,44,1,1535,39,1,0 +2013,5,24,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,31,1,1225,23,1,0 +2013,9,14,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1945,-5,0,2043,-12,0,0 +2013,6,28,5,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1149,-4,0,1251,-15,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,93,1,1920,87,1,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,14,0,1410,12,0,0 +2013,9,17,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,-3,0,810,-4,0,0 +2013,10,15,2,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,730,4,0,1127,2,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1620,112,1,1900,104,1,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1720,67,1,1835,77,1,0 +2013,10,27,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-11,0,1546,-17,0,0 +2013,7,12,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,80,1,1953,98,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1440,30,1,1800,22,1,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-2,0,1535,-10,0,0 +2013,4,15,1,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-6,0,1805,-4,0,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1621,1,0,1916,0,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,850,-7,0,1710,-1,0,0 +2013,5,21,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,48,1,1633,35,1,0 +2013,6,25,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-1,0,1227,-4,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1848,4,0,1945,2,0,0 +2013,7,13,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2233,9,0,423,4,0,0 +2013,5,14,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,7,0,1359,10,0,0 +2013,5,25,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,24,1,1800,60,1,0 +2013,4,21,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,37,1,1720,45,1,0 +2013,10,26,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-6,0,1104,-23,0,0 +2013,5,9,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,645,10,0,825,16,1,0 +2013,6,1,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-8,0,1620,-14,0,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,-2,0,2343,1,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1000,15,1,1115,5,0,0 +2013,9,10,2,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,900,1,0,1125,14,0,0 +2013,8,3,6,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,650,-9,0,812,-15,0,0 +2013,7,24,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1224,-9,0,0 +2013,7,11,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,-2,0,1936,-23,0,0 +2013,10,23,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,0,0,2234,-14,0,0 +2013,8,28,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-3,0,840,-12,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1009,-11,0,1419,-11,0,0 +2013,7,31,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,2,0,2038,9,0,0 +2013,6,20,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,51,1,2017,48,1,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2010,22,1,2230,-8,0,0 +2013,8,13,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,73,1,930,95,1,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,955,-3,0,1224,-31,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1640,29,1,1825,21,1,0 +2013,8,24,6,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,2,0,1630,3,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,-2,0,925,-21,0,0 +2013,5,16,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1505,3,0,1620,1,0,0 +2013,5,11,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1030,29,1,1600,39,1,0 +2013,7,30,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,-4,0,1309,-11,0,0 +2013,5,31,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,115,-5,0,830,-1,0,0 +2013,5,16,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,650,-5,0,750,-20,0,0 +2013,6,13,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1225,2,0,1320,-2,0,0 +2013,7,17,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,9,0,2035,14,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,3,0,856,8,0,0 +2013,6,16,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,2,0,1658,-9,0,0 +2013,4,5,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1102,1,0,1132,8,0,0 +2013,7,31,3,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1245,8,0,1631,10,0,0 +2013,8,11,7,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1101,0,0,1259,-11,0,0 +2013,7,31,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,900,-3,0,1043,-14,0,0 +2013,9,7,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,825,-3,0,850,-8,0,0 +2013,6,9,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-6,0,1442,-10,0,0 +2013,7,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,-5,0,847,-21,0,0 +2013,7,12,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-10,0,1315,-12,0,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,826,10,0,1633,2,0,0 +2013,4,20,6,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-5,0,1010,17,1,0 +2013,10,2,3,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-5,0,1312,-2,0,0 +2013,6,24,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1051,0,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1405,12,0,1810,4,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,929,185,1,1052,183,1,0 +2013,8,1,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,32,1,1451,24,1,0 +2013,8,1,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,3,0,1735,-6,0,0 +2013,10,28,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1613,2,0,1913,-2,0,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2035,5,0,2346,-8,0,0 +2013,9,16,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1253,-6,0,1554,-27,0,0 +2013,8,26,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1445,65,1,2310,41,1,0 +2013,6,25,2,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-3,0,1753,-10,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1130,21,1,1245,17,1,0 +2013,10,23,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2330,6,0,638,15,1,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-1,0,1623,-8,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,929,-4,0,1120,-6,0,0 +2013,5,7,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1113,0,0,1624,-21,0,0 +2013,9,8,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,550,0,0,911,-5,0,0 +2013,6,3,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1530,0,0,1635,-15,0,0 +2013,4,15,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,-5,0,845,-7,0,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-6,0,853,26,1,0 +2013,5,22,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,5,0,856,5,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-3,0,1903,-17,0,0 +2013,5,20,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,726,2,0,920,3,0,0 +2013,7,5,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1651,16,1,1927,13,0,0 +2013,10,21,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-3,0,956,-9,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2211,16,1,15,5,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,2,0,1245,-7,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,0,0,1120,-23,0,0 +2013,6,9,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1025,-4,0,1235,-7,0,0 +2013,8,27,2,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1031,-4,0,1349,-2,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1140,4,0,1300,-10,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,22,1,2250,21,1,0 +2013,5,25,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,830,8,0,0 +2013,4,24,3,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1021,-3,0,1352,-14,0,0 +2013,5,5,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-2,0,1630,-22,0,0 +2013,4,2,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,900,-3,0,1215,12,0,0 +2013,4,8,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,3,0,1805,-16,0,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,11,0,1255,6,0,0 +2013,10,29,2,9E,12953,LaGuardia,New York,NY,12451,Jacksonville International,Jacksonville,FL,805,-9,0,1047,-9,0,0 +2013,6,3,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,42,1,1912,43,1,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,17,1,1745,14,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,12,0,1754,21,1,0 +2013,10,4,5,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,615,17,1,730,17,1,0 +2013,6,28,5,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2108,15,1,2359,13,0,0 +2013,10,25,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,700,-3,0,825,-7,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1621,-2,0,1917,-25,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1210,-3,0,1323,-17,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1355,22,1,1715,4,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1335,28,1,1451,30,1,0 +2013,10,12,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1225,17,1,1540,17,1,0 +2013,8,7,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,1,0,1345,-1,0,0 +2013,5,8,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,3,0,1505,9,0,0 +2013,4,8,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,732,-2,0,926,-6,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2010,33,1,2145,39,1,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,600,0,0,1150,-10,0,0 +2013,7,15,1,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,810,0,0,930,1,0,0 +2013,6,16,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,744,3,0,820,6,0,0 +2013,4,26,5,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,11,0,2015,19,1,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-4,0,750,6,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1430,3,0,1552,-1,0,0 +2013,6,25,2,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-6,0,908,3,0,0 +2013,5,11,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1640,-1,0,2300,-3,0,0 +2013,4,7,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1130,-1,0,1835,-19,0,0 +2013,4,25,4,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1049,10,0,1225,12,0,0 +2013,6,17,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,-1,0,1813,6,0,0 +2013,10,18,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,18,1,1640,8,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1610,-5,0,1749,-15,0,0 +2013,10,13,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1624,-7,0,1635,-17,0,0 +2013,5,19,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,1,0,1509,25,1,0 +2013,8,21,3,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2025,-12,0,2125,-17,0,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,4,0,1025,-16,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1030,56,1,1143,63,1,0 +2013,7,31,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1630,-2,0,1805,5,0,0 +2013,8,7,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,32,1,1147,33,1,0 +2013,5,21,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1923,47,1,2120,56,1,0 +2013,6,2,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1750,33,1,1825,22,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,8,0,1010,9,0,0 +2013,9,6,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,931,-9,0,1235,-11,0,0 +2013,7,26,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,20,1,7,26,1,0 +2013,5,2,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-11,0,905,-25,0,0 +2013,9,15,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,930,-10,0,1305,0,0,0 +2013,9,8,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-9,0,851,-25,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-7,0,2340,-7,0,0 +2013,7,4,4,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1625,-8,0,2010,5,0,0 +2013,4,28,7,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2015,-3,0,2318,-35,0,0 +2013,6,3,1,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-3,0,1640,-22,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-3,0,1936,3,0,0 +2013,8,1,4,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1840,-6,0,2045,-11,0,0 +2013,7,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,18,1,1559,19,1,0 +2013,7,9,2,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1856,135,1,2035,127,1,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1008,1,0,1604,-5,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-2,0,1225,-8,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1001,0,0,1532,-7,0,0 +2013,10,7,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1019,-7,0,1300,4,0,0 +2013,9,21,6,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1250,-4,0,1505,-3,0,0 +2013,5,20,1,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1549,-8,0,1620,-15,0,0 +2013,7,17,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,7,0,1338,3,0,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1015,1,0,1235,-1,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1123,-3,0,1251,-18,0,0 +2013,8,11,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,519,0,0,842,-6,0,0 +2013,4,4,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,805,-2,0,1000,-19,0,0 +2013,10,29,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-7,0,755,2,0,0 +2013,10,10,4,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,926,-2,0,1159,-9,0,0 +2013,4,10,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,720,-2,0,931,23,1,0 +2013,10,31,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1110,-7,0,1916,-8,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1915,-3,0,2340,7,0,0 +2013,4,13,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1602,58,1,1650,66,1,0 +2013,10,10,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1545,3,0,1920,-19,0,0 +2013,5,18,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1615,0,0,1735,-13,0,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,900,-3,0,1000,-6,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1625,78,1,2030,57,1,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1905,33,1,2335,13,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,955,44,1,1201,39,1,0 +2013,5,18,6,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,745,-1,0,1015,-18,0,0 +2013,7,19,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1027,-6,0,1510,18,1,0 +2013,5,15,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1015,-2,0,1130,9,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2030,-5,0,2330,-10,0,0 +2013,10,13,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1240,-4,0,1432,-25,0,0 +2013,9,28,6,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,827,-2,0,1305,1,0,0 +2013,4,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,9,0,2129,35,1,0 +2013,7,2,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,-6,0,1904,-22,0,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,0,0,1225,5,0,0 +2013,5,31,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1340,-5,0,1532,-21,0,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1644,3,0,1817,81,1,0 +2013,7,14,7,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,-3,0,1329,2,0,0 +2013,5,31,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2015,-5,0,2125,-10,0,0 +2013,8,5,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1319,20,1,1405,8,0,0 +2013,6,20,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,7,0,859,9,0,0 +2013,4,12,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1158,0,,1440,0,1,1 +2013,7,27,6,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,630,-1,0,825,27,1,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2030,26,1,2155,9,0,0 +2013,9,7,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,730,-5,0,915,-11,0,0 +2013,5,19,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1434,-12,0,0 +2013,10,16,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1540,-3,0,1705,-15,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,724,-4,0,836,-15,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1435,6,0,1825,1,0,0 +2013,7,19,5,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1341,0,,1450,0,1,1 +2013,7,17,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,44,1,1938,37,1,0 +2013,6,30,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1656,0,0,1800,-13,0,0 +2013,9,23,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,-1,0,1835,-20,0,0 +2013,6,14,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-2,0,1627,-14,0,0 +2013,4,20,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,31,1,1740,19,1,0 +2013,5,15,3,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,0,0,845,-4,0,0 +2013,5,25,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-1,0,1925,-9,0,0 +2013,4,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-2,0,2135,-5,0,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1340,5,0,1608,16,1,0 +2013,7,16,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,16,1,2245,5,0,0 +2013,8,11,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,720,-5,0,1222,-11,0,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1201,18,1,1314,6,0,0 +2013,7,12,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2050,-9,0,2138,18,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,0,0,1926,-27,0,0 +2013,4,30,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1800,-7,0,1913,-17,0,0 +2013,8,6,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,-4,0,1405,-7,0,0 +2013,7,13,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1032,-1,0,1128,-8,0,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1720,0,0,1820,-10,0,0 +2013,9,10,2,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,905,-6,0,1150,-8,0,0 +2013,8,13,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,-4,0,1807,9,0,0 +2013,7,21,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,49,1,1931,39,1,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1910,0,0,2030,-1,0,0 +2013,6,17,1,EV,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1845,2,0,2046,-9,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,61,1,1218,45,1,0 +2013,5,28,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,-3,0,1024,-18,0,0 +2013,9,4,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,-3,0,1316,-8,0,0 +2013,7,22,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,0,,1255,0,1,1 +2013,4,21,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,27,1,1633,14,0,0 +2013,7,23,2,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1710,-10,0,1920,-15,0,0 +2013,4,10,3,FL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1542,-3,0,1652,-5,0,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,750,78,1,1040,100,1,0 +2013,6,19,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1625,0,0,2025,6,0,0 +2013,8,4,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,4,0,1820,0,0,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,550,1,0,905,-4,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,3,0,1730,1,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1128,10,0,1443,12,0,0 +2013,5,26,7,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1710,-12,0,1837,1,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1355,0,0,1650,-6,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1230,1,0,1510,-4,0,0 +2013,10,7,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1015,4,0,1135,0,0,0 +2013,6,1,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,10,0,1410,12,0,0 +2013,4,25,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-2,0,1811,-5,0,0 +2013,5,23,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1135,0,0,1259,-4,0,0 +2013,9,21,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,28,1,1720,36,1,0 +2013,10,15,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1616,-7,0,1922,16,1,0 +2013,7,11,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,745,1,0,810,3,0,0 +2013,5,23,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-2,0,2020,24,1,0 +2013,8,18,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,28,1,1938,-8,0,0 +2013,4,23,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1700,1,0,1851,-16,0,0 +2013,7,1,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-6,0,1604,-1,0,0 +2013,4,15,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1340,-8,0,1500,-2,0,0 +2013,6,29,6,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-6,0,820,-14,0,0 +2013,10,26,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1527,14,0,1808,1,0,0 +2013,5,12,7,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,838,-9,0,1055,-10,0,0 +2013,5,26,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-5,0,2051,-2,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,-2,0,1826,-16,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,0,0,1309,-11,0,0 +2013,7,23,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1100,42,1,1145,49,1,0 +2013,4,16,2,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1940,-3,0,2040,-6,0,0 +2013,10,26,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1715,3,0,1840,-19,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,1,0,705,1,0,0 +2013,9,10,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,-3,0,1300,-11,0,0 +2013,5,2,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,43,1,2050,17,1,0 +2013,8,17,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,59,6,0,914,4,0,0 +2013,8,29,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,2003,21,1,0 +2013,6,25,2,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1651,-8,0,2056,-29,0,0 +2013,5,31,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,610,-3,0,720,2,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,730,-3,0,850,0,0,0 +2013,10,4,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,-3,0,1225,-6,0,0 +2013,8,9,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,82,1,1825,66,1,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,27,1,5,15,1,0 +2013,4,11,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1640,28,1,1845,27,1,0 +2013,5,22,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,5,0,940,2,0,0 +2013,9,25,3,9E,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1237,109,1,1403,116,1,0 +2013,8,21,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,610,-3,0,845,-2,0,0 +2013,10,13,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,906,-4,0,1434,-18,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1842,81,1,2022,90,1,0 +2013,7,19,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,3,0,834,-9,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-5,0,1054,3,0,0 +2013,6,20,4,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1030,-2,0,1319,1,0,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1501,-5,0,2344,-24,0,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,5,0,1219,-5,0,0 +2013,5,1,3,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1310,-11,0,2135,-13,0,0 +2013,6,19,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,2,0,1555,6,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1210,-2,0,1315,1,0,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1601,-1,0,1930,-12,0,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,831,-2,0,927,-3,0,0 +2013,4,25,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,18,1,1615,16,1,0 +2013,5,9,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-1,0,1930,-11,0,0 +2013,5,11,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1720,-7,0,1920,-10,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1818,18,1,2113,7,0,0 +2013,9,30,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-5,0,1010,-11,0,0 +2013,10,26,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,615,-9,0,917,-7,0,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2005,-3,0,2130,-10,0,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,804,-4,0,1317,-14,0,0 +2013,9,28,6,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,800,-2,0,1036,-9,0,0 +2013,9,22,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,715,-14,0,0 +2013,5,9,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1719,0,,1738,0,1,1 +2013,9,24,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-2,0,905,-25,0,0 +2013,9,16,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,711,-9,0,1051,-11,0,0 +2013,7,23,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,45,1,1820,50,1,0 +2013,7,1,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1810,10,0,1915,7,0,0 +2013,4,1,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2055,-6,0,2155,-10,0,0 +2013,9,26,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1540,26,1,1840,14,0,0 +2013,4,11,4,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1645,-8,0,1849,-24,0,0 +2013,5,22,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,800,-2,0,1140,-20,0,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,2030,7,0,35,-4,0,0 +2013,7,17,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,24,1,2152,46,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1506,3,0,1737,-14,0,0 +2013,6,22,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-8,0,654,2,0,0 +2013,5,20,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1542,-7,0,1656,-2,0,0 +2013,4,21,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1445,8,0,1749,2,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2054,5,0,2358,3,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1150,-5,0,1310,-7,0,0 +2013,8,1,4,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1509,15,1,1610,15,1,0 +2013,10,11,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2205,-7,0,2333,-13,0,0 +2013,7,7,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,8,0,1415,-16,0,0 +2013,4,19,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-7,0,1124,-13,0,0 +2013,6,23,7,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1045,-1,0,1241,-37,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1850,8,0,2205,11,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1037,-2,0,1219,-7,0,0 +2013,9,1,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1240,-2,0,1605,9,0,0 +2013,9,9,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-5,0,1140,8,0,0 +2013,5,25,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,710,-1,0,815,-10,0,0 +2013,4,25,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1651,-3,0,1830,20,1,0 +2013,10,8,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1158,-4,0,1402,-18,0,0 +2013,5,25,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,815,-8,0,1034,-1,0,0 +2013,10,19,6,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-1,0,1325,-18,0,0 +2013,4,25,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,11,0,1850,6,0,0 +2013,6,7,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1215,-14,0,1525,-31,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,9,0,2122,10,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,12,0,1441,7,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,725,5,0,940,4,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,0,0,2110,3,0,0 +2013,5,19,7,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1955,0,0,2157,-7,0,0 +2013,6,9,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-8,0,1332,-7,0,0 +2013,5,8,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1305,-8,0,1410,-9,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1253,-3,0,1414,-22,0,0 +2013,10,7,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,47,1,1929,42,1,0 +2013,7,5,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1129,-6,0,0 +2013,7,3,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,824,3,0,1144,31,1,0 +2013,10,7,1,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1255,69,1,2116,44,1,0 +2013,4,8,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-10,0,1855,-24,0,0 +2013,5,31,5,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1109,156,1,1830,145,1,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1230,100,1,1829,90,1,0 +2013,5,27,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1440,-6,0,1642,-25,0,0 +2013,7,12,5,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,3,0,1144,2,0,0 +2013,8,20,2,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,929,12,0,1252,0,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,-3,0,1055,-3,0,0 +2013,10,13,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1445,-2,0,1524,2,0,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,830,-4,0,1120,-21,0,0 +2013,9,4,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1030,95,1,1139,99,1,0 +2013,6,19,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,921,-14,0,0 +2013,5,3,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2005,-2,0,2323,-15,0,0 +2013,6,4,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,-1,0,2015,-9,0,0 +2013,4,6,6,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-4,0,1210,-17,0,0 +2013,9,18,3,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-5,0,1041,9,0,0 +2013,4,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1550,-2,0,1700,-11,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,957,135,1,1224,152,1,0 +2013,8,23,5,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1134,5,0,1455,9,0,0 +2013,9,18,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,700,0,0,740,-6,0,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1755,20,1,1955,16,1,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,8,0,2340,-6,0,0 +2013,10,2,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,805,-8,0,929,-6,0,0 +2013,5,10,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-4,0,1810,-9,0,0 +2013,8,12,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-3,0,1125,-12,0,0 +2013,6,16,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1646,0,0,1805,-10,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,80,1,1845,75,1,0 +2013,8,24,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1335,-5,0,1455,-7,0,0 +2013,5,11,6,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1455,-5,0,2245,0,0,0 +2013,10,7,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,735,1,0,1050,-6,0,0 +2013,8,7,3,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,-3,0,2139,-8,0,0 +2013,9,2,1,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,745,-7,0,1536,23,1,0 +2013,8,12,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,31,1,1906,47,1,0 +2013,8,5,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,-6,0,2332,-5,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,27,1,1545,23,1,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,935,22,1,1100,22,1,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1415,1,0,1525,-7,0,0 +2013,7,9,2,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,32,1,823,34,1,0 +2013,9,21,6,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,734,-9,0,1102,-25,0,0 +2013,4,10,3,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1050,5,0,1335,-11,0,0 +2013,8,25,7,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2335,17,1,759,4,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1430,17,1,2000,21,1,0 +2013,6,1,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,825,24,1,0 +2013,9,27,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,601,-4,0,1152,-20,0,0 +2013,10,11,5,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1650,-3,0,1939,4,0,0 +2013,6,8,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1905,2,0,2015,-15,0,0 +2013,7,26,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-6,0,2120,0,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2210,6,0,2305,1,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,1,0,1310,0,0,0 +2013,5,8,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-9,0,2125,-19,0,0 +2013,10,8,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1401,7,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1310,-3,0,1625,-25,0,0 +2013,5,11,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-1,0,1625,-2,0,0 +2013,4,17,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-4,0,2131,5,0,0 +2013,5,13,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1310,-10,0,1510,-13,0,0 +2013,6,23,7,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,-6,0,1929,-39,0,0 +2013,5,16,4,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1359,-2,0,1528,-6,0,0 +2013,4,12,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,40,1,1404,40,1,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1800,-6,0,2020,-19,0,0 +2013,6,18,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,7,0,1731,42,1,0 +2013,4,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1205,100,1,1417,95,1,0 +2013,7,20,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,928,-4,0,1205,2,0,0 +2013,6,30,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,5,0,1300,0,0,0 +2013,8,26,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1115,0,0,1210,-2,0,0 +2013,10,19,6,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,905,-3,0,1025,3,0,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,725,2,0,850,-3,0,0 +2013,7,30,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1357,27,1,1508,13,0,0 +2013,5,1,3,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,740,-1,0,1000,4,0,0 +2013,5,1,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-7,0,1700,35,1,0 +2013,4,28,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,1,0,1920,12,0,0 +2013,9,3,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,737,-10,0,820,-5,0,0 +2013,9,21,6,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1640,-6,0,1921,-26,0,0 +2013,5,2,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,600,-5,0,710,10,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,1,0,1630,-10,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,905,-7,0,1140,-8,0,0 +2013,5,8,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,-2,0,1250,-5,0,0 +2013,6,23,7,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1139,-1,0,1254,-14,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,743,5,0,909,-2,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1451,32,1,1601,30,1,0 +2013,5,25,6,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,-2,0,1839,-14,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,1,0,1540,-4,0,0 +2013,10,9,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1319,-10,0,1437,-22,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,1,0,1036,-12,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2145,1,0,2337,-13,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,851,-1,0,1256,4,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1125,-2,0,1340,-12,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1235,3,0,1450,-10,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1601,-3,0,1655,-6,0,0 +2013,7,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2030,-12,0,2317,-22,0,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1306,-2,0,1418,-15,0,0 +2013,4,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,15376,Tucson International,Tucson,AZ,1010,0,0,1025,-12,0,0 +2013,9,5,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1127,5,0,1239,-7,0,0 +2013,8,4,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1005,-6,0,1258,-4,0,0 +2013,6,15,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-4,0,1040,6,0,0 +2013,10,8,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1721,-5,0,1859,1,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,-3,0,1814,-8,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2100,8,0,2200,-6,0,0 +2013,5,30,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1325,-4,0,1450,5,0,0 +2013,9,13,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1714,-5,0,2019,-26,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,-1,0,2114,23,1,0 +2013,8,2,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,8,0,1654,6,0,0 +2013,5,10,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2005,3,0,2151,-1,0,0 +2013,6,23,7,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1255,14,0,1600,10,0,0 +2013,5,8,3,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-4,0,1558,-3,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1110,-1,0,1200,-7,0,0 +2013,4,16,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1610,44,1,1826,53,1,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1550,-3,0,1729,-19,0,0 +2013,5,23,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-2,0,1202,-8,0,0 +2013,4,13,6,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-1,0,1617,14,0,0 +2013,10,16,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,710,0,0,825,-5,0,0 +2013,6,26,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,8,0,1238,4,0,0 +2013,9,5,4,9E,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1100,-7,0,1244,-14,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,70,1,1650,57,1,0 +2013,4,2,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1750,6,0,1910,22,1,0 +2013,8,24,6,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2000,-4,0,2308,-34,0,0 +2013,8,22,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,50,1,1820,52,1,0 +2013,4,16,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-3,0,1125,-4,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,-1,0,1155,-1,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,2,0,1311,6,0,0 +2013,10,29,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1110,-7,0,1916,-43,0,0 +2013,10,21,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1105,-12,0,1255,-19,0,0 +2013,8,8,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1725,31,1,1908,44,1,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1120,3,0,1441,-13,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2235,16,1,2335,8,0,0 +2013,8,27,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1500,11,0,1615,8,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,901,10,0,1101,-8,0,0 +2013,9,13,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,600,96,1,1212,92,1,0 +2013,5,24,5,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1730,21,1,1930,7,0,0 +2013,6,28,5,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1500,-8,0,1609,2,0,0 +2013,7,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,2020,156,1,2214,132,1,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2100,2,0,2236,-14,0,0 +2013,10,18,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,1222,-2,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-5,0,2331,-15,0,0 +2013,9,11,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1847,-4,0,2237,-1,0,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1434,-4,0,1528,-5,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,-2,0,2200,-17,0,0 +2013,10,14,1,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,700,0,0,955,-3,0,0 +2013,7,12,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,23,1,2205,-22,0,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,31,1,1145,60,1,0 +2013,4,18,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1625,1,0,1901,-2,0,0 +2013,7,24,3,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1510,-6,0,1719,-12,0,0 +2013,6,13,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1127,6,0,1855,-2,0,0 +2013,10,21,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,9,0,2020,2,0,0 +2013,6,17,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-1,0,905,33,1,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1120,8,0,1245,1,0,0 +2013,7,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,-3,0,1130,-14,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1253,-7,0,1518,-33,0,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,549,8,0,913,12,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2003,12,0,2108,-3,0,0 +2013,5,12,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1347,18,1,1520,11,0,0 +2013,4,29,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1222,-4,0,1809,-9,0,0 +2013,10,23,3,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1455,-6,0,1615,-19,0,0 +2013,5,14,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1355,9,0,2000,2,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2010,2,0,2305,-7,0,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1900,-5,0,2208,-17,0,0 +2013,8,10,6,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1519,-3,0,1625,-3,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2220,-3,0,2303,-8,0,0 +2013,7,26,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1352,17,1,1558,17,1,0 +2013,4,8,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1715,1,0,1827,-16,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1438,-9,0,1602,-7,0,0 +2013,10,10,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-4,0,2302,-17,0,0 +2013,7,9,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1410,-5,0,1619,-6,0,0 +2013,10,4,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,711,-5,0,924,-13,0,0 +2013,8,6,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-4,0,820,-9,0,0 +2013,5,26,7,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,950,-2,0,1111,1,0,0 +2013,8,12,1,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1930,-3,0,2137,23,1,0 +2013,10,23,3,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,720,-2,0,935,-20,0,0 +2013,9,11,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,-3,0,1740,54,1,0 +2013,8,13,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,0,0,1006,-7,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,810,0,0,1100,-6,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-4,0,920,-24,0,0 +2013,5,30,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1058,-8,0,0 +2013,7,6,6,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-7,0,1445,1,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,6,0,1355,1,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2040,8,0,2125,3,0,0 +2013,10,23,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1211,-5,0,1341,-18,0,0 +2013,4,26,5,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2325,-6,0,520,-1,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1730,-4,0,2050,-29,0,0 +2013,9,11,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-11,0,1348,-10,0,0 +2013,5,3,5,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,608,12,0,1443,12,0,0 +2013,5,29,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,820,-3,0,1110,-26,0,0 +2013,6,11,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,16,1,1155,15,1,0 +2013,5,22,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,831,-2,0,1101,-7,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1726,-1,0,1949,-6,0,0 +2013,6,16,7,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,2000,4,0,2020,0,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1955,83,1,2210,70,1,0 +2013,9,30,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,905,3,0,1220,1,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1915,41,1,2041,27,1,0 +2013,4,12,5,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1823,-6,0,2047,4,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,81,1,2130,86,1,0 +2013,5,22,3,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,16,1,1408,11,0,0 +2013,7,23,2,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,650,6,0,941,-15,0,0 +2013,10,18,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,810,-9,0,955,-10,0,0 +2013,4,25,4,EV,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1626,6,0,1756,16,1,0 +2013,9,9,1,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1013,-4,0,1114,-10,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,950,11,0,1302,11,0,0 +2013,9,27,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,635,-2,0,1230,-19,0,0 +2013,9,26,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1425,-2,0,1612,-16,0,0 +2013,4,15,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,659,-7,0,823,-23,0,0 +2013,5,24,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-10,0,715,-1,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,-1,0,1315,3,0,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,-4,0,1535,-1,0,0 +2013,8,3,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,-3,0,1857,-2,0,0 +2013,6,9,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,-4,0,2015,1,0,0 +2013,9,4,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,620,-11,0,725,-14,0,0 +2013,9,28,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1400,-2,0,1500,-5,0,0 +2013,6,29,6,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,1,0,1600,-3,0,0 +2013,5,14,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1210,-2,0,1529,-26,0,0 +2013,10,10,4,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-1,0,909,5,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,1,0,925,-9,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1735,2,0,1855,-17,0,0 +2013,4,13,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,600,-1,0,850,1,0,0 +2013,8,6,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,-2,0,1830,3,0,0 +2013,6,29,6,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,75,1,2308,42,1,0 +2013,8,28,3,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-1,0,807,-10,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1645,5,0,1910,2,0,0 +2013,7,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,936,8,0,1211,5,0,0 +2013,6,14,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,29,1,1200,2,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,10,0,1920,-1,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,1544,0,0,0 +2013,10,6,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,2,0,2035,15,1,0 +2013,9,23,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1030,-7,0,1247,-8,0,0 +2013,7,11,4,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,600,-3,0,745,-3,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2000,-3,0,2130,-17,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1530,2,0,2348,10,0,0 +2013,8,15,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,35,1,1405,26,1,0 +2013,8,2,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1320,6,0,1935,0,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-5,0,1103,-27,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2050,-4,0,40,7,0,0 +2013,8,19,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,1,0,809,-7,0,0 +2013,5,2,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1110,4,0,1300,7,0,0 +2013,7,16,2,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1027,27,1,1124,20,1,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,615,2,0,720,-9,0,0 +2013,4,12,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1707,1,0,1837,-2,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,900,-2,0,1345,-7,0,0 +2013,9,29,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1435,15,1,1606,6,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-2,0,1325,-8,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1410,2,0,1500,-8,0,0 +2013,7,25,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1007,-6,0,1105,-7,0,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,800,-7,0,1021,-20,0,0 +2013,5,31,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1720,83,1,1839,107,1,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,-1,0,1355,-8,0,0 +2013,4,13,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1300,56,1,1700,63,1,0 +2013,8,24,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1250,-3,0,1400,-13,0,0 +2013,9,17,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,925,-3,0,1643,-19,0,0 +2013,4,29,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,-2,0,1215,-23,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2107,8,0,2219,3,0,0 +2013,7,7,7,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1810,12,0,1925,20,1,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1325,-3,0,1711,7,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-5,0,745,-9,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1120,-2,0,1225,-9,0,0 +2013,6,1,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,-10,0,1645,-31,0,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1929,0,0,2208,-30,0,0 +2013,9,4,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1010,317,1,1244,343,1,0 +2013,10,14,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1000,-3,0,1135,-16,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,6,0,2231,-16,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1555,-5,0,1700,-7,0,0 +2013,5,27,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,935,-3,0,1110,-24,0,0 +2013,5,29,3,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-6,0,1918,-13,0,0 +2013,10,6,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,1,0,1646,3,0,0 +2013,8,21,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1543,-2,0,1745,-2,0,0 +2013,6,21,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1218,-3,0,1314,-4,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,13,0,1750,-7,0,0 +2013,6,9,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,32,1,1211,30,1,0 +2013,6,28,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-2,0,1915,4,0,0 +2013,8,23,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-12,0,2040,-9,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,107,1,2023,114,1,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1110,0,,1215,0,1,1 +2013,10,1,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,-7,0,2014,-24,0,0 +2013,5,11,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,640,0,0,740,-4,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1339,-1,0,1450,-1,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,815,13,0,930,17,1,0 +2013,7,9,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14057,Portland International,Portland,OR,1806,1,0,2013,-10,0,0 +2013,7,8,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,3,0,1825,-3,0,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2100,18,1,2305,82,1,0 +2013,10,4,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,8,0,1930,6,0,0 +2013,9,7,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,635,0,0,735,-3,0,0 +2013,8,18,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,930,-2,0,1235,0,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-3,0,1310,-5,0,0 +2013,4,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1215,-7,0,1331,-16,0,0 +2013,4,26,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1310,0,0,1405,-8,0,0 +2013,5,4,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1020,-5,0,1105,-3,0,0 +2013,10,23,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,918,8,0,1128,3,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,0,0,25,-23,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,930,7,0,1400,39,1,0 +2013,7,1,1,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,116,1,1818,102,1,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1007,-6,0,1255,-25,0,0 +2013,9,19,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1355,-1,0,1510,-11,0,0 +2013,6,11,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,12,0,2052,-4,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1045,-2,0,1205,8,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1511,25,1,1857,0,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,740,-3,0,945,-14,0,0 +2013,6,4,2,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,750,-2,0,1210,-14,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,15,1,2035,6,0,0 +2013,9,18,3,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1620,-8,0,1828,-45,0,0 +2013,7,20,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,148,1,1220,140,1,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,630,-1,0,930,-6,0,0 +2013,8,13,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,6,0,755,-7,0,0 +2013,6,18,2,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,645,1,0,0 +2013,8,9,5,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1800,82,1,1950,75,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1805,36,1,2240,30,1,0 +2013,7,8,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1550,-2,0,1848,29,1,0 +2013,8,21,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,1,0,2220,-7,0,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,835,-8,0,1003,-8,0,0 +2013,9,16,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-10,0,1900,-24,0,0 +2013,9,26,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2245,2,0,450,4,0,0 +2013,4,15,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,745,15,1,1025,10,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-5,0,940,-3,0,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,8,0,1605,-6,0,0 +2013,10,11,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,8,0,1655,-6,0,0 +2013,8,29,4,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,119,1,1818,118,1,0 +2013,4,1,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1250,-2,0,1520,19,1,0 +2013,9,8,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-7,0,1015,-24,0,0 +2013,7,25,4,DL,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,2235,36,1,602,18,1,0 +2013,6,6,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-4,0,1606,3,0,0 +2013,7,18,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-9,0,850,-18,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,0,0,1720,-5,0,0 +2013,9,13,5,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1915,19,1,9,16,1,0 +2013,10,8,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1120,13,0,1720,5,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1900,-4,0,2041,-8,0,0 +2013,10,2,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-7,0,659,-11,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,635,15,1,820,-3,0,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,855,-4,0,1232,-27,0,0 +2013,7,5,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-4,0,1450,-7,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,20,1,1948,13,0,0 +2013,5,1,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,540,-2,0,629,-1,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,-2,0,1032,-22,0,0 +2013,10,28,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,45,1,1727,43,1,0 +2013,7,21,7,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1215,150,1,1342,147,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,0,0,1635,-9,0,0 +2013,4,20,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,744,-10,0,0 +2013,5,11,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2215,9,0,605,0,0,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,950,6,0,1230,-20,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-2,0,1800,-1,0,0 +2013,9,23,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1145,-4,0,1620,-17,0,0 +2013,7,9,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,600,-5,0,722,-17,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,740,0,0,1000,-12,0,0 +2013,10,10,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,33,1,1920,25,1,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,730,0,0,900,-3,0,0 +2013,10,4,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-5,0,1723,-7,0,0 +2013,9,18,3,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-4,0,1919,-9,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1941,-3,0,2152,-1,0,0 +2013,4,14,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1625,10,0,1950,20,1,0 +2013,8,14,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,954,-5,0,1028,-6,0,0 +2013,8,4,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,5,0,1607,-1,0,0 +2013,6,4,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2220,-11,0,47,-23,0,0 +2013,7,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,2010,0,0,2135,-10,0,0 +2013,6,20,4,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-5,0,2051,-9,0,0 +2013,6,25,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,3,0,1003,-17,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1346,100,1,1525,113,1,0 +2013,5,4,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14570,Reno/Tahoe International,Reno,NV,1800,-3,0,1845,-4,0,0 +2013,9,7,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2103,0,0,459,2,0,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,710,7,0,835,-4,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1850,5,0,2250,-3,0,0 +2013,9,19,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1624,-6,0,1734,-5,0,0 +2013,10,30,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,915,-5,0,1157,-16,0,0 +2013,10,8,2,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1541,-4,0,1805,7,0,0 +2013,5,27,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1545,37,1,1710,15,1,0 +2013,9,26,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,920,1,0,1040,26,1,0 +2013,7,24,3,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,25,1,1655,18,1,0 +2013,5,7,2,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1629,-3,0,1939,-51,0,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1220,12,0,1414,3,0,0 +2013,8,1,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-6,0,812,2,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1600,18,1,1730,21,1,0 +2013,10,13,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-7,0,920,3,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,18,1,1705,14,0,0 +2013,9,6,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-4,0,705,-4,0,0 +2013,8,20,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-3,0,1254,5,0,0 +2013,10,4,5,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,0,0,1220,0,0,0 +2013,7,7,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,7,0,2135,2,0,0 +2013,5,18,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,530,-6,0,723,-22,0,0 +2013,4,28,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1252,-3,0,1352,-9,0,0 +2013,4,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,805,-4,0,1018,-1,0,0 +2013,4,20,6,OO,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1620,-3,0,1746,4,0,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-12,0,1057,-18,0,0 +2013,7,13,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1639,-4,0,0 +2013,10,16,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1004,-4,0,1141,-18,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1855,8,0,2240,25,1,0 +2013,5,19,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-10,0,1110,-15,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,6,0,930,-17,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1629,29,1,101,15,1,0 +2013,7,17,3,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,825,-9,0,1050,-14,0,0 +2013,5,25,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1059,-1,0,1334,-13,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,755,-6,0,1015,-11,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1315,2,0,1624,-11,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1740,20,1,1829,12,0,0 +2013,9,24,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-7,0,1419,-25,0,0 +2013,9,19,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,79,1,2110,101,1,0 +2013,7,3,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1944,68,1,2244,52,1,0 +2013,9,20,5,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1605,16,1,1842,17,1,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1300,-2,0,1605,-5,0,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,11,0,830,6,0,0 +2013,8,14,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1510,-11,0,1625,-29,0,0 +2013,8,18,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,600,-7,0,729,-24,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,8,0,2230,0,0,0 +2013,4,23,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,-5,0,1505,-12,0,0 +2013,8,4,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,846,95,1,1413,90,1,0 +2013,6,17,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,8,0,1355,11,0,0 +2013,8,17,6,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1520,-7,0,1527,-11,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2220,-9,0,2353,-12,0,0 +2013,7,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1110,-1,0,1235,-6,0,0 +2013,7,25,4,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1821,-2,0,2017,6,0,0 +2013,9,5,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1005,13,0,1320,0,0,0 +2013,8,22,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,52,1,1255,103,1,0 +2013,7,4,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-16,0,2049,-19,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1945,12,0,2128,16,1,0 +2013,7,20,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,15,1,2010,19,1,0 +2013,8,16,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,630,-5,0,1501,19,1,0 +2013,8,8,4,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,-4,0,1445,-4,0,0 +2013,10,7,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1317,-8,0,1610,-16,0,0 +2013,8,31,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1024,-9,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2147,-4,0,12,8,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,33,1,1640,25,1,0 +2013,9,27,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,16,1,1355,17,1,0 +2013,7,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1225,17,1,1335,8,0,0 +2013,6,11,2,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,36,1,1749,27,1,0 +2013,7,12,5,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1329,-8,0,1925,-28,0,0 +2013,9,17,2,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1726,-7,0,1900,4,0,0 +2013,6,19,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,715,-2,0,730,8,0,0 +2013,8,22,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1228,-3,0,1335,-11,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,0,0,2205,-8,0,0 +2013,10,25,5,OO,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,0,0,1414,-10,0,0 +2013,6,2,7,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-4,0,1015,-13,0,0 +2013,7,5,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1400,-3,0,1440,-13,0,0 +2013,9,5,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1720,53,1,1755,44,1,0 +2013,6,20,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1755,42,1,1915,25,1,0 +2013,5,18,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1009,-1,0,1311,14,0,0 +2013,6,20,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,-5,0,1929,5,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,550,-3,0,728,-16,0,0 +2013,7,17,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,935,-3,0,1100,-3,0,0 +2013,8,22,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2140,30,1,542,29,1,0 +2013,4,22,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1414,85,1,1543,75,1,0 +2013,10,16,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,655,-3,0,845,-6,0,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,0,0,1700,-4,0,0 +2013,6,14,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1439,245,1,1600,265,1,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,-4,0,1355,-16,0,0 +2013,8,20,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-6,0,904,14,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,95,1,1925,106,1,0 +2013,6,13,4,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1655,1,0,1950,9,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1526,12,0,1641,4,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,10,0,1537,4,0,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1405,0,0,1509,-12,0,0 +2013,7,13,6,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,730,-4,0,850,-23,0,0 +2013,9,3,2,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,725,-7,0,1116,-4,0,0 +2013,10,24,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1553,-8,0,1702,-2,0,0 +2013,6,16,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,8,0,2300,-4,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1814,-4,0,1951,-10,0,0 +2013,9,7,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1340,-3,0,1935,-13,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1730,14,0,1925,5,0,0 +2013,8,11,7,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1029,-8,0,1035,-21,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,0,0,1115,-5,0,0 +2013,4,3,3,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1017,-4,0,1300,3,0,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1550,-3,0,1715,-11,0,0 +2013,10,18,5,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1256,-6,0,1418,-9,0,0 +2013,4,29,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2101,-7,0,2149,-16,0,0 +2013,10,25,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,806,-1,0,1027,-4,0,0 +2013,4,11,4,DL,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1525,26,1,1817,21,1,0 +2013,10,11,5,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,705,0,0,845,-18,0,0 +2013,4,4,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,5,0,1410,-8,0,0 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1820,139,1,2045,124,1,0 +2013,5,1,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1519,199,1,1819,191,1,0 +2013,5,26,7,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1746,-7,0,2105,-2,0,0 +2013,8,9,5,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,106,1,1821,121,1,0 +2013,5,12,7,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1225,9,0,1330,-24,0,0 +2013,7,6,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1340,5,0,1645,-8,0,0 +2013,6,29,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-4,0,935,-14,0,0 +2013,5,14,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-1,0,2103,-11,0,0 +2013,9,19,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1955,-1,0,2239,-3,0,0 +2013,7,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2010,19,1,2055,14,0,0 +2013,7,19,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,-1,0,2000,-1,0,0 +2013,10,1,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,-3,0,1649,6,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,7,0,2255,13,0,0 +2013,9,16,1,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-2,0,2140,7,0,0 +2013,6,19,3,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-3,0,1020,-10,0,0 +2013,7,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2205,-7,0,2317,-9,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1920,6,0,2035,-5,0,0 +2013,8,11,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-9,0,955,-16,0,0 +2013,4,18,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-1,0,1402,-9,0,0 +2013,5,26,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,-4,0,1140,-12,0,0 +2013,7,4,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1224,-1,0,1449,-38,0,0 +2013,6,15,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,815,24,1,923,18,1,0 +2013,10,2,3,OO,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1517,-6,0,1615,0,0,0 +2013,9,29,7,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-16,0,1050,-49,0,0 +2013,10,3,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1935,5,0,2055,0,0,0 +2013,4,28,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,839,-9,0,950,-19,0,0 +2013,7,23,2,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,4,0,1510,17,1,0 +2013,7,17,3,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1720,3,0,1901,8,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1921,-3,0,2013,-25,0,0 +2013,6,11,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-12,0,1327,-24,0,0 +2013,4,1,1,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1247,14,0,1648,-1,0,0 +2013,6,10,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1437,122,1,1610,127,1,0 +2013,7,10,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,550,-3,0,700,-29,0,0 +2013,5,9,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,17,1,1510,10,0,0 +2013,6,28,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-3,0,1310,9,0,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,26,1,1630,32,1,0 +2013,7,21,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1842,-9,0,2359,-23,0,0 +2013,6,7,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,20,1,1155,16,1,0 +2013,10,19,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,815,0,0,955,-4,0,0 +2013,7,6,6,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1034,5,0,1152,5,0,0 +2013,8,20,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,0,0,1651,-4,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,0,0,2315,-1,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1035,-4,0,1400,-20,0,0 +2013,6,28,5,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1550,8,0,1740,11,0,0 +2013,5,26,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1345,-2,0,1610,-35,0,0 +2013,7,23,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1519,111,1,1625,104,1,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1725,-1,0,1830,-4,0,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1640,3,0,2230,4,0,0 +2013,8,6,2,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1200,-2,0,1500,-14,0,0 +2013,9,2,1,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1755,71,1,2005,95,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,6,0,2259,16,1,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1115,-5,0,1240,-14,0,0 +2013,8,30,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-1,0,1320,-3,0,0 +2013,7,22,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,645,-1,0,1156,15,1,0 +2013,9,26,4,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1950,0,0,2240,2,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1705,1,0,1800,-20,0,0 +2013,7,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,900,-2,0,1010,12,0,0 +2013,8,6,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1127,-1,0,1537,-16,0,0 +2013,5,6,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,2,0,2210,-13,0,0 +2013,4,9,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-5,0,850,5,0,0 +2013,4,24,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1554,-1,0,2059,-5,0,0 +2013,6,2,7,EV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1730,6,0,1917,61,1,0 +2013,6,16,7,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1850,-9,0,2019,11,0,0 +2013,4,12,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,500,0,0,642,-14,0,0 +2013,6,19,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,640,10,0,750,5,0,0 +2013,5,11,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1610,-1,0,1725,-12,0,0 +2013,6,3,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1915,2,0,2244,-4,0,0 +2013,4,14,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,44,1,2201,42,1,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1933,-1,0,2128,-7,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,0,0,2058,-2,0,0 +2013,9,23,1,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,905,12,0,1020,2,0,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1200,46,1,1400,48,1,0 +2013,9,17,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1445,-7,0,1635,-6,0,0 +2013,10,18,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1736,42,1,1755,43,1,0 +2013,9,17,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,0,,1615,0,1,1 +2013,9,7,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1547,-8,0,1712,-26,0,0 +2013,6,2,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,1012,-12,0,0 +2013,8,11,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,810,-6,0,847,-3,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1401,2,0,1642,-28,0,0 +2013,4,20,6,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2205,3,0,2252,-2,0,0 +2013,7,23,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,735,19,1,1109,12,0,0 +2013,10,18,5,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,-5,0,1531,13,0,0 +2013,5,28,2,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1002,18,1,1322,18,1,0 +2013,10,2,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,825,-6,0,1636,-15,0,0 +2013,8,9,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,-3,0,1101,9,0,0 +2013,7,20,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1104,-8,0,1232,-9,0,0 +2013,4,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2151,17,1,2240,37,1,0 +2013,4,9,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,945,-4,0,1255,-18,0,0 +2013,8,31,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-6,0,2123,-26,0,0 +2013,8,29,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1339,-6,0,1951,-12,0,0 +2013,9,3,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-7,0,1556,-12,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,2,0,1711,13,0,0 +2013,8,14,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1505,20,1,0 +2013,4,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1845,57,1,2010,49,1,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,-6,0,1128,-1,0,0 +2013,5,3,5,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,540,-2,0,828,12,0,0 +2013,9,10,2,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1800,64,1,2005,43,1,0 +2013,6,25,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,44,1,1720,47,1,0 +2013,8,7,3,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,845,-1,0,1014,17,1,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,600,1,0,725,-2,0,0 +2013,8,10,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,720,58,1,740,43,1,0 +2013,8,5,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,-3,0,1210,9,0,0 +2013,6,19,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1530,6,0,1635,9,0,0 +2013,10,20,7,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,817,7,0,0 +2013,10,18,5,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-7,0,1544,-20,0,0 +2013,7,16,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,708,-9,0,849,-18,0,0 +2013,10,22,2,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-7,0,1915,-10,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-5,0,945,-13,0,0 +2013,5,27,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1137,-1,0,1349,1,0,0 +2013,8,11,7,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1136,-3,0,1949,5,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,17,1,2009,70,1,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1211,3,0,1406,-12,0,0 +2013,7,22,1,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2112,0,0,15,4,0,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-3,0,1505,-4,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2150,-3,0,25,-12,0,0 +2013,10,19,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2030,3,0,502,-21,0,0 +2013,7,14,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-7,0,1300,-12,0,0 +2013,7,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1702,3,0,2242,1,0,0 +2013,10,6,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,-4,0,1813,4,0,0 +2013,4,25,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,1001,-9,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1804,45,1,1956,53,1,0 +2013,7,16,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1640,13,0,1925,1,0,0 +2013,4,12,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,705,13,0,850,3,0,0 +2013,5,18,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-6,0,1830,-27,0,0 +2013,5,11,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1820,-4,0,2111,-12,0,0 +2013,6,29,6,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,12,0,2145,20,1,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1835,3,0,2159,-9,0,0 +2013,4,11,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,-5,0,1215,-9,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2155,-6,0,2300,-6,0,0 +2013,10,11,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,2,0,1825,16,1,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,48,1,2355,54,1,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1500,1,0,1700,-13,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1735,3,0,2047,37,1,0 +2013,10,31,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1330,-5,0,1450,-19,0,0 +2013,10,18,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,735,-1,0,907,-10,0,0 +2013,7,24,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-7,0,955,2,0,0 +2013,6,1,6,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-3,0,1635,-5,0,0 +2013,10,7,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,635,-3,0,1505,-4,0,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,-7,0,20,-19,0,0 +2013,8,21,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-5,0,2010,-13,0,0 +2013,6,28,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,618,-5,0,740,25,1,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1915,-2,0,2236,-4,0,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2050,3,0,2304,-3,0,0 +2013,4,30,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,2,0,1340,-10,0,0 +2013,5,26,7,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1835,0,0,1925,-8,0,0 +2013,9,17,2,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,7,0,2145,13,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,0,0,1220,-12,0,0 +2013,5,19,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,0,0,1005,9,0,0 +2013,5,26,7,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1033,64,1,1213,53,1,0 +2013,6,15,6,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1910,-4,0,2129,-24,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-4,0,1628,-10,0,0 +2013,7,11,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-4,0,1156,-48,0,0 +2013,9,15,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,900,-2,0,1010,-9,0,0 +2013,4,10,3,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1036,-2,0,1345,15,1,0 +2013,5,12,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2203,25,1,2340,-7,0,0 +2013,9,23,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,-7,0,1816,-5,0,0 +2013,5,9,4,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1345,36,1,1520,18,1,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,17,1,1930,10,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,748,2,0,1355,-4,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,100,1,1640,89,1,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,1650,-3,0,2355,-22,0,0 +2013,6,29,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,0,0,846,-6,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,810,0,0,1040,5,0,0 +2013,6,10,1,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1629,1,0,1927,-4,0,0 +2013,7,3,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1045,15,1,1500,2,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,2,0,1249,0,0,0 +2013,10,15,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,9,0,1350,23,1,0 +2013,7,23,2,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2335,7,0,700,-3,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-2,0,1242,-8,0,0 +2013,5,11,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,600,0,0,733,-12,0,0 +2013,5,12,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-6,0,1040,-21,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1615,15,1,1720,8,0,0 +2013,4,24,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-8,0,1402,-19,0,0 +2013,9,3,2,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-5,0,2229,-16,0,0 +2013,4,28,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1215,3,0,1451,0,0,0 +2013,4,24,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,740,-17,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,210,1,1315,211,1,0 +2013,5,24,5,EV,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1100,-9,0,1251,-27,0,0 +2013,7,1,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,2009,-2,0,0 +2013,9,16,1,9E,12451,Jacksonville International,Jacksonville,FL,12953,LaGuardia,New York,NY,1125,52,1,1345,32,1,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1240,13,0,1644,28,1,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,-2,0,839,-12,0,0 +2013,6,17,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2245,-1,0,704,-23,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1122,-5,0,1329,-21,0,0 +2013,4,18,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1911,92,1,2050,95,1,0 +2013,4,6,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1547,-1,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1922,33,1,2343,21,1,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,731,6,0,1015,-12,0,0 +2013,8,17,6,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,658,-6,0,910,-12,0,0 +2013,5,26,7,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,6,0,1025,1,0,0 +2013,10,28,1,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-5,0,712,2,0,0 +2013,6,21,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-9,0,2024,0,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1615,2,0,2347,-14,0,0 +2013,9,15,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,-4,0,945,-24,0,0 +2013,8,7,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,5,0,1004,21,1,0 +2013,9,16,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,750,-14,0,0 +2013,7,21,7,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,13,0,1922,3,0,0 +2013,6,23,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,90,1,1956,106,1,0 +2013,8,1,4,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2300,2,0,704,2,0,0 +2013,6,6,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-6,0,1142,-3,0,0 +2013,6,2,7,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1845,-3,0,20,-5,0,0 +2013,9,23,1,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-1,0,1055,-25,0,0 +2013,8,17,6,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-4,0,855,-1,0,0 +2013,7,12,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,57,1,1829,36,1,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-7,0,936,24,1,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1545,4,0,1715,7,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,120,1,859,184,1,0 +2013,5,27,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,535,-8,0,1100,9,0,0 +2013,8,10,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,-2,0,2116,0,0,0 +2013,6,1,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1545,-9,0,1653,9,0,0 +2013,4,25,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,800,207,1,1037,207,1,0 +2013,9,25,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1515,2,0,1620,-1,0,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1205,-5,0,1610,-12,0,0 +2013,6,2,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,193,1,1940,231,1,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,23,1,2310,26,1,0 +2013,4,11,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,753,-10,0,935,-24,0,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1347,84,1,1531,79,1,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1725,19,1,1950,18,1,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1825,52,1,45,54,1,0 +2013,4,19,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-16,0,2044,-14,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1101,0,0,1554,-17,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,-3,0,1139,-15,0,0 +2013,5,21,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1333,-4,0,1440,-5,0,0 +2013,6,24,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1205,17,1,1345,2,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1515,3,0,1652,-5,0,0 +2013,5,6,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,288,1,817,293,1,0 +2013,5,25,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,220,1,628,219,1,0 +2013,8,20,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1940,-5,0,2248,-20,0,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-8,0,1610,-8,0,0 +2013,5,30,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,550,-5,0,1312,-7,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,849,0,0,1043,-5,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,0,0,1247,-7,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,108,1,1915,163,1,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,849,0,0,1517,-9,0,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-7,0,810,4,0,0 +2013,4,15,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1827,-5,0,2017,-3,0,0 +2013,5,13,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,140,1,2125,156,1,0 +2013,7,22,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,32,1,1220,18,1,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,935,-1,0,1035,-14,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1455,1,0,1621,-2,0,0 +2013,10,1,2,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,722,-5,0,1016,-6,0,0 +2013,10,27,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,728,-2,0,941,-9,0,0 +2013,8,16,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,-2,0,500,6,0,0 +2013,4,20,6,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1620,-10,0,1847,-22,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2205,-8,0,4,-15,0,0 +2013,5,24,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,1006,-5,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1347,-3,0,1658,-18,0,0 +2013,8,17,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,9,0,1110,15,1,0 +2013,4,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1205,1,0,1440,-3,0,0 +2013,4,15,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,11,0,1305,4,0,0 +2013,6,12,3,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,816,124,1,1115,113,1,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1254,10,0,1420,1,0,0 +2013,10,27,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1511,-2,0,1640,-8,0,0 +2013,7,31,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2035,5,0,2335,-7,0,0 +2013,6,2,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,59,1,2300,66,1,0 +2013,7,1,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,-2,0,1240,-3,0,0 +2013,4,2,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-3,0,1345,-4,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1342,19,1,1513,19,1,0 +2013,4,15,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1926,0,,2055,0,1,1 +2013,10,17,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,13,0,2044,3,0,0 +2013,4,26,5,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1945,5,0,2110,6,0,0 +2013,6,10,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-6,0,2025,-5,0,0 +2013,7,10,3,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,850,-5,0,1105,-1,0,0 +2013,8,26,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,-6,0,1120,-25,0,0 +2013,6,2,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1742,-6,0,1850,-15,0,0 +2013,7,21,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-6,0,1953,-5,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2037,-1,0,2156,-15,0,0 +2013,6,11,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,3,0,736,7,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,6,0,941,26,1,0 +2013,5,9,4,OO,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1512,24,1,1659,6,0,0 +2013,7,7,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1050,63,1,1220,89,1,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1022,-5,0,1156,-26,0,0 +2013,4,20,6,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1655,-3,0,1947,-14,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1035,58,1,1200,57,1,0 +2013,7,18,4,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,-2,0,1220,-17,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1027,-3,0,1232,-6,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2105,-4,0,2220,7,0,0 +2013,9,29,7,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-1,0,500,-19,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,25,1,2100,-13,0,0 +2013,7,6,6,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,-4,0,820,-10,0,0 +2013,10,17,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,630,-14,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1842,14,0,1935,6,0,0 +2013,7,17,3,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1935,-3,0,2159,-12,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-7,0,1345,-17,0,0 +2013,8,12,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,-10,0,710,-26,0,0 +2013,4,22,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,1,0,1053,-16,0,0 +2013,5,29,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1545,2,0,1820,26,1,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1007,-5,0,1629,50,1,0 +2013,4,6,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,6,0,1425,-1,0,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1046,-3,0,1330,-6,0,0 +2013,8,14,3,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1815,68,1,1905,142,1,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,735,33,1,1050,19,1,0 +2013,4,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1955,130,1,2210,124,1,0 +2013,9,26,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2205,-4,0,2358,-28,0,0 +2013,7,26,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1345,0,,1509,0,1,1 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,96,1,2245,88,1,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1025,2,0,1130,8,0,0 +2013,8,21,3,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2216,89,1,617,98,1,0 +2013,10,29,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,-7,0,1345,11,0,0 +2013,6,8,6,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,-3,0,1610,-5,0,0 +2013,7,17,3,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,957,-2,0,1038,-11,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2103,-4,0,2350,-32,0,0 +2013,9,16,1,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,812,-4,0,928,-4,0,0 +2013,9,27,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-3,0,1353,-32,0,0 +2013,4,7,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,0,0,2025,-12,0,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1859,-5,0,2030,-12,0,0 +2013,9,13,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,950,0,0,1100,-6,0,0 +2013,5,21,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,735,-2,0,1010,0,0,0 +2013,6,23,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1715,-3,0,1815,-14,0,0 +2013,9,4,3,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,-7,0,1436,0,0,0 +2013,4,3,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,805,0,0,1055,11,0,0 +2013,7,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,8,0,1435,10,0,0 +2013,5,16,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1925,13,0,2219,13,0,0 +2013,7,8,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,16,1,2052,13,0,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1005,-10,0,1124,-18,0,0 +2013,9,15,7,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1558,-6,0,1616,17,1,0 +2013,8,7,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-7,0,904,-14,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,805,24,1,1145,37,1,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,1,0,1520,-10,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,959,-5,0,1126,-11,0,0 +2013,4,16,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-2,0,1517,9,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,-3,0,1025,-14,0,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,0,0,1305,-5,0,0 +2013,4,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1650,-1,0,1800,-22,0,0 +2013,8,18,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-4,0,1916,-6,0,0 +2013,5,3,5,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1700,-6,0,1814,-4,0,0 +2013,10,18,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1436,-2,0,1559,-11,0,0 +2013,4,29,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1200,-1,0,1320,2,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1955,17,1,2220,17,1,0 +2013,4,15,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,915,-5,0,1211,-18,0,0 +2013,9,1,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,15,1,2110,14,0,0 +2013,7,25,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,-6,0,949,-13,0,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1446,166,1,1630,152,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1630,14,0,1844,67,1,0 +2013,10,19,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1515,-12,0,1700,-17,0,0 +2013,8,9,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1350,7,0,1550,-1,0,0 +2013,4,9,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,800,-1,0,930,-13,0,0 +2013,8,8,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,6,0,1503,11,0,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,5,0,907,0,0,0 +2013,4,8,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1805,1,0,1915,0,0,0 +2013,8,3,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1025,-3,0,1308,-13,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2055,29,1,2205,28,1,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1540,1,0,1800,-24,0,0 +2013,9,17,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1204,-30,0,0 +2013,6,17,1,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1255,0,,1620,0,1,1 +2013,7,1,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1840,2,0,1936,-9,0,0 +2013,8,7,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1150,-3,0,1250,-7,0,0 +2013,10,31,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1103,63,1,1343,60,1,0 +2013,6,24,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,282,1,740,294,1,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,20,1,2100,12,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,811,109,1,1030,98,1,0 +2013,7,11,4,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1350,-6,0,1647,-10,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1010,3,0,1755,-2,0,0 +2013,7,21,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2117,24,1,2245,33,1,0 +2013,7,14,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-5,0,1025,-8,0,0 +2013,8,30,5,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1530,-6,0,1715,-20,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2205,3,0,2252,-7,0,0 +2013,8,27,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1315,1,0,1450,-9,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,16,1,2350,20,1,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1045,19,1,1419,12,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1244,10,0,1450,3,0,0 +2013,9,22,7,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1830,31,1,2137,14,0,0 +2013,9,9,1,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,609,-5,0,758,-13,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1924,4,0,2049,-2,0,0 +2013,4,8,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,1217,-32,0,0 +2013,7,31,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1510,46,1,1825,32,1,0 +2013,6,19,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-7,0,945,-7,0,0 +2013,8,28,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1830,-2,0,2228,1,0,0 +2013,6,5,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,2,0,1628,-10,0,0 +2013,8,20,2,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,-6,0,2032,21,1,0 +2013,6,29,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2035,23,1,505,44,1,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-2,0,1234,2,0,0 +2013,5,5,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1330,78,1,1540,73,1,0 +2013,5,31,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2325,-4,0,612,-26,0,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1045,0,0,1140,24,1,0 +2013,9,14,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1620,-6,0,1730,-9,0,0 +2013,9,11,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1954,66,1,2111,85,1,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,0,0,2328,20,1,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,41,1,1615,47,1,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,2,0,2200,3,0,0 +2013,9,6,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,720,-1,0,830,-14,0,0 +2013,5,9,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,730,-8,0,1051,2,0,0 +2013,5,31,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1025,6,0,1035,-4,0,0 +2013,6,25,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,58,51,1,550,43,1,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,11,0,1930,24,1,0 +2013,7,9,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2003,20,1,2220,-1,0,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,83,1,2059,58,1,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2240,51,1,630,21,1,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-2,0,1207,-9,0,0 +2013,6,17,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,3,0,1540,-6,0,0 +2013,5,13,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1022,-2,0,1105,-11,0,0 +2013,6,28,5,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1640,-3,0,1849,-12,0,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,855,-3,0,1110,-6,0,0 +2013,10,27,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1344,-3,0,1935,-6,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1654,20,1,2040,-4,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,906,5,0,1002,3,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1243,-7,0,1402,-16,0,0 +2013,9,6,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1450,2,0,1850,-5,0,0 +2013,5,19,7,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,0,0,1455,6,0,0 +2013,9,6,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-6,0,1049,-11,0,0 +2013,5,10,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-7,0,1011,-7,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1315,-7,0,1518,30,1,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1756,52,1,1951,39,1,0 +2013,5,19,7,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1150,-8,0,1303,-8,0,0 +2013,9,6,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-2,0,1020,5,0,0 +2013,6,1,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,752,-3,0,1021,3,0,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,-2,0,1920,-16,0,0 +2013,4,24,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1050,-12,0,1234,-20,0,0 +2013,6,6,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,11,0,2105,6,0,0 +2013,9,29,7,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1135,3,0,1250,1,0,0 +2013,6,25,2,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,955,-4,0,1130,-17,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,64,1,1918,54,1,0 +2013,4,19,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2029,-4,0,2200,26,1,0 +2013,10,30,3,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,745,-5,0,950,11,0,0 +2013,8,1,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,1,0,1730,-1,0,0 +2013,4,23,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,26,1,1410,39,1,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1815,-1,0,2200,-1,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,650,-4,0,816,-12,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,-1,0,1400,-27,0,0 +2013,10,16,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,-4,0,2025,-17,0,0 +2013,6,25,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,-5,0,814,-16,0,0 +2013,5,25,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1820,-3,0,1905,-10,0,0 +2013,10,12,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1755,2,0,1918,19,1,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2211,-5,0,15,-6,0,0 +2013,6,25,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,2,0,1718,-3,0,0 +2013,6,22,6,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1455,3,0,1730,4,0,0 +2013,4,13,6,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1742,-4,0,2023,-36,0,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,-2,0,2325,-20,0,0 +2013,4,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1630,6,0,1755,1,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,-1,0,1106,-11,0,0 +2013,9,21,6,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,90,1,1125,81,1,0 +2013,9,23,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1040,-1,0,1258,1,0,0 +2013,10,11,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,745,5,0,855,4,0,0 +2013,8,31,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-9,0,1115,-22,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1805,71,1,1900,67,1,0 +2013,4,16,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1202,-5,0,1804,-26,0,0 +2013,8,13,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,38,1,1737,29,1,0 +2013,5,11,6,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,700,2,0,821,17,1,0 +2013,7,10,3,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-2,0,1635,-8,0,0 +2013,6,13,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,2,0,152,6,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,-1,0,2214,-10,0,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1520,-4,0,1800,-17,0,0 +2013,9,7,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-13,0,1045,-31,0,0 +2013,5,19,7,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,32,1,2100,33,1,0 +2013,9,12,4,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,-1,0,1035,6,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1730,130,1,1916,117,1,0 +2013,7,27,6,US,14893,Sacramento International,Sacramento,CA,14100,Philadelphia International,Philadelphia,PA,2159,9,0,602,-8,0,0 +2013,6,30,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-1,0,1210,13,0,0 +2013,10,7,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-6,0,1740,-9,0,0 +2013,8,16,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-7,0,1315,-13,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,0,0,2135,6,0,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2015,0,0,2115,-5,0,0 +2013,10,12,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,800,5,0,1055,7,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,7,0,1025,27,1,0 +2013,6,14,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1530,-1,0,1642,-5,0,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,-1,0,1610,5,0,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1815,-2,0,2107,-17,0,0 +2013,7,25,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-7,0,1012,1,0,0 +2013,6,7,5,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1900,41,1,2126,24,1,0 +2013,8,3,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,0,0,1737,-12,0,0 +2013,5,21,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,0,0,754,-1,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2010,15,1,2110,15,1,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1419,4,0,2213,30,1,0 +2013,7,7,7,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1822,-3,0,2033,-5,0,0 +2013,6,21,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,4,0,1255,-8,0,0 +2013,4,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1605,53,1,1821,45,1,0 +2013,7,31,3,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1742,-2,0,1919,28,1,0 +2013,8,2,5,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1200,77,1,1500,64,1,0 +2013,6,20,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,-4,0,2305,6,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1020,-1,0,1532,20,1,0 +2013,4,21,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1008,-4,0,1200,-5,0,0 +2013,10,23,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1135,4,0,1450,-10,0,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1630,-1,0,1745,-3,0,0 +2013,5,19,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,921,0,0,1206,-9,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,-3,0,1300,-24,0,0 +2013,7,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,852,-5,0,1022,-7,0,0 +2013,7,31,3,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-6,0,1626,-20,0,0 +2013,7,2,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1525,64,1,1650,60,1,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-6,0,807,4,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1755,-4,0,2143,-6,0,0 +2013,6,7,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,-1,0,1200,-21,0,0 +2013,6,7,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,318,1,1732,310,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1210,-2,0,1321,-16,0,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1342,22,1,1512,16,1,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,2000,0,0,2202,0,0,0 +2013,5,18,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,613,0,0,1210,4,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1850,54,1,2110,48,1,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,0,0,1451,-6,0,0 +2013,5,25,6,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1315,12,0,1520,13,0,0 +2013,6,14,5,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,5,0,2135,-15,0,0 +2013,5,17,5,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1525,4,0,1815,-14,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,-5,0,1758,-8,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1315,-6,0,1518,-6,0,0 +2013,9,10,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,915,-6,0,1005,-9,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,700,-6,0,826,-38,0,0 +2013,9,1,7,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,3,0,2035,10,0,0 +2013,7,13,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1430,10,0,1535,-8,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-1,0,940,5,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1525,219,1,1915,225,1,0 +2013,9,26,4,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1845,26,1,2134,28,1,0 +2013,6,1,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-7,0,1255,-12,0,0 +2013,6,17,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,654,-1,0,850,-11,0,0 +2013,10,14,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,-3,0,2342,-47,0,0 +2013,6,22,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,15,1,749,-2,0,0 +2013,10,10,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-6,0,641,-4,0,0 +2013,10,24,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,9,0,1150,14,0,0 +2013,8,30,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1055,4,0,1427,5,0,0 +2013,8,29,4,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-1,0,1545,-12,0,0 +2013,8,26,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-9,0,934,-23,0,0 +2013,10,21,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,829,-3,0,1026,-1,0,0 +2013,7,23,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,120,1,1815,122,1,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1910,18,1,2015,16,1,0 +2013,8,6,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1446,-2,0,2023,-11,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,825,-2,0,1025,-6,0,0 +2013,6,23,7,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,2000,-4,0,2020,17,1,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1705,0,0,1838,-12,0,0 +2013,7,1,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,-3,0,1450,-8,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,99,1,1909,103,1,0 +2013,9,8,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-12,0,1145,-11,0,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-4,0,1449,2,0,0 +2013,9,15,7,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-2,0,1208,-16,0,0 +2013,5,25,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-3,0,1014,-20,0,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1845,1,0,2000,11,0,0 +2013,5,12,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-5,0,1942,-3,0,0 +2013,6,22,6,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1115,0,0,1305,-11,0,0 +2013,4,7,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,856,38,1,1154,51,1,0 +2013,9,21,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,725,-1,0,1005,-1,0,0 +2013,10,9,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,6,0,1253,3,0,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,845,-8,0,1717,17,1,0 +2013,4,14,7,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10,-4,0,800,5,0,0 +2013,7,14,7,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,700,-2,0,1045,-8,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,945,-2,0,1128,-7,0,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2021,1,0,2200,9,0,0 +2013,9,6,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,-2,0,1435,-6,0,0 +2013,4,24,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-4,0,1238,-8,0,0 +2013,6,12,3,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1910,17,1,2237,-9,0,0 +2013,8,1,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,2020,42,1,2214,38,1,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1025,41,1,1510,37,1,0 +2013,4,16,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,47,1,1155,87,1,0 +2013,8,20,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1235,-1,0,0 +2013,4,21,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1105,-2,0,1415,-6,0,0 +2013,5,28,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-1,0,825,-8,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,846,3,0,1636,17,1,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1110,10,0,1235,0,0,0 +2013,7,22,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-11,0,2052,-11,0,0 +2013,10,31,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1350,-1,0,2010,5,0,0 +2013,8,1,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1256,14,0,1400,27,1,0 +2013,7,31,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-1,0,2054,8,0,0 +2013,10,12,6,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1154,27,1,2025,3,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,903,3,0,1738,13,0,0 +2013,4,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,600,-4,0,830,-6,0,0 +2013,8,25,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,-10,0,1655,-14,0,0 +2013,9,13,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1917,-9,0,2022,-14,0,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1905,261,1,2142,239,1,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1035,6,0,1344,8,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1901,-1,0,1956,-6,0,0 +2013,5,16,4,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1037,-9,0,1153,-7,0,0 +2013,7,6,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1118,-7,0,1635,-32,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1900,8,0,2021,-11,0,0 +2013,9,8,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-3,0,2211,15,1,0 +2013,8,5,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,630,1,0,750,-3,0,0 +2013,8,3,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-3,0,1237,0,0,0 +2013,9,16,1,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1344,19,1,1651,16,1,0 +2013,10,25,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,21,1,1620,-1,0,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,1,0,2135,-1,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1115,24,1,1210,20,1,0 +2013,6,28,5,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-4,0,1755,-3,0,0 +2013,6,10,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1431,19,1,1637,6,0,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,26,1,1210,1,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1950,6,0,2255,-6,0,0 +2013,7,7,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2155,199,1,2305,199,1,0 +2013,10,11,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,900,-10,0,1049,-15,0,0 +2013,5,11,6,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,-4,0,615,4,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1613,-9,0,1736,-3,0,0 +2013,7,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,-4,0,1250,0,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,843,-4,0,1035,-17,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2009,-2,0,2143,2,0,0 +2013,9,3,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-5,0,458,1,0,0 +2013,6,5,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2153,21,1,2246,6,0,0 +2013,7,30,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,-5,0,2000,-20,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,940,29,1,1050,23,1,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1959,-1,0,2134,-11,0,0 +2013,8,7,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,3,0,623,5,0,0 +2013,10,26,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2317,-10,0,700,-16,0,0 +2013,8,21,3,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1711,-7,0,1827,-8,0,0 +2013,6,13,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-2,0,1704,-2,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,-2,0,1030,1,0,0 +2013,5,21,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,8,0,2115,36,1,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,640,-2,0,930,-16,0,0 +2013,7,24,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,-4,0,1945,-14,0,0 +2013,6,21,5,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,0,0,1420,-1,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,3,0,1645,14,0,0 +2013,5,26,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1315,0,0,1625,-4,0,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,33,1,1626,0,1,1 +2013,6,25,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,-4,0,2305,0,0,0 +2013,7,18,4,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,0,0,1050,-15,0,0 +2013,7,16,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,-1,0,1550,-5,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,-9,0,820,-18,0,0 +2013,8,14,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,1,0,1351,-3,0,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,22,1,1615,15,1,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1340,4,0,1600,-33,0,0 +2013,4,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1608,218,1,1835,216,1,0 +2013,4,21,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1750,-5,0,2019,-15,0,0 +2013,8,25,7,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-13,0,1225,-27,0,0 +2013,10,4,5,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-8,0,627,-7,0,0 +2013,7,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1525,4,0,1640,2,0,0 +2013,10,8,2,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,805,143,1,927,132,1,0 +2013,4,16,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1315,282,1,1540,293,1,0 +2013,6,10,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-3,0,1145,5,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,-3,0,2059,-14,0,0 +2013,6,25,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2020,179,1,2205,174,1,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1705,52,1,2255,29,1,0 +2013,7,5,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1853,-7,0,2030,-21,0,0 +2013,8,30,5,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-5,0,847,4,0,0 +2013,4,4,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,-4,0,1215,-3,0,0 +2013,10,31,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-3,0,1513,7,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,1,0,1625,-7,0,0 +2013,6,30,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,935,-6,0,1100,-10,0,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,921,15,1,1802,-15,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1355,1,0,1520,-1,0,0 +2013,6,28,5,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-5,0,1007,-7,0,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1500,59,1,2020,66,1,0 +2013,7,22,1,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-4,0,816,4,0,0 +2013,5,22,3,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,10,0,2015,-18,0,0 +2013,9,15,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1600,48,1,1825,44,1,0 +2013,7,17,3,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,1955,-15,0,2238,-6,0,0 +2013,10,17,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1428,7,0,0 +2013,5,4,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1004,0,0,1056,2,0,0 +2013,5,28,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,15,1,1300,15,1,0 +2013,4,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,24,1,1815,7,0,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-2,0,2025,-7,0,0 +2013,5,5,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,740,-11,0,805,-6,0,0 +2013,10,11,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-7,0,1034,-28,0,0 +2013,5,27,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1236,56,1,1415,108,1,0 +2013,6,13,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-3,0,1209,2,0,0 +2013,8,2,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1105,71,1,1319,55,1,0 +2013,9,2,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1510,-8,0,1750,-20,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2015,47,1,2300,57,1,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-1,0,2159,-18,0,0 +2013,7,25,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1325,7,0,1430,3,0,0 +2013,9,2,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,0,0,1800,3,0,0 +2013,4,16,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,0,,2055,0,1,1 +2013,5,28,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,-1,0,1735,-17,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2005,0,0,45,1,0,0 +2013,5,20,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,740,-6,0,900,-1,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1155,-3,0,1410,-9,0,0 +2013,6,14,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1822,41,1,1930,23,1,0 +2013,8,28,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,824,3,0,1018,26,1,0 +2013,8,4,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-4,0,845,-11,0,0 +2013,6,27,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,915,-6,0,1115,-22,0,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1310,3,0,1420,2,0,0 +2013,5,15,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1400,5,0,1555,0,0,0 +2013,8,25,7,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1436,6,0,1929,17,1,0 +2013,9,27,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2010,3,0,2155,9,0,0 +2013,9,28,6,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1355,-6,0,1700,-10,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1350,-5,0,1400,-5,0,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1859,-3,0,2329,-12,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2155,78,1,2300,76,1,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,9,0,2105,-14,0,0 +2013,4,21,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-5,0,1720,-20,0,0 +2013,4,7,7,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,550,-2,0,805,-13,0,0 +2013,7,17,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1018,-12,0,0 +2013,6,14,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,720,-8,0,1204,-23,0,0 +2013,6,20,4,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-5,0,1105,-10,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,-1,0,1615,-24,0,0 +2013,5,15,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,735,4,0,820,-3,0,0 +2013,9,7,6,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,-13,0,2111,-6,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1813,-1,0,2303,-19,0,0 +2013,7,26,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,-2,0,1524,-7,0,0 +2013,7,16,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1540,26,1,1858,23,1,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,2,0,1500,16,1,0 +2013,10,20,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,1,0,1041,12,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,930,6,0,1800,-12,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,945,9,0,1120,-12,0,0 +2013,7,28,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-8,0,1415,-18,0,0 +2013,4,1,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1210,-8,0,1447,-20,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,-2,0,1645,29,1,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1051,-2,0,1335,-9,0,0 +2013,8,7,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1750,-7,0,1905,-2,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,33,1,1335,29,1,0 +2013,8,4,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,2,0,1605,-11,0,0 +2013,9,3,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,605,-5,0,710,-5,0,0 +2013,10,16,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1225,23,1,1555,-8,0,0 +2013,10,16,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1745,9,0,1845,14,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1645,-4,0,1940,5,0,0 +2013,5,22,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-1,0,1009,-28,0,0 +2013,6,25,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-4,0,1025,-12,0,0 +2013,10,5,6,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-1,0,1640,-15,0,0 +2013,7,24,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-5,0,739,1,0,0 +2013,9,20,5,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1630,-9,0,1809,-33,0,0 +2013,4,21,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-5,0,1655,-8,0,0 +2013,5,24,5,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-1,0,1515,-8,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,855,18,1,1110,15,1,0 +2013,6,10,1,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,202,1,2055,186,1,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,-3,0,28,14,0,0 +2013,9,19,4,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,-4,0,2159,24,1,0 +2013,7,12,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1657,3,0,2009,-16,0,0 +2013,4,24,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-8,0,1204,-9,0,0 +2013,4,30,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-5,0,717,1,0,0 +2013,7,3,3,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1430,-3,0,1647,-7,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1610,8,0,1740,6,0,0 +2013,10,12,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1110,-2,0,1430,-23,0,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2155,21,1,2326,23,1,0 +2013,7,28,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,-5,0,1315,1,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,22,1,2055,44,1,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1735,-3,0,1905,-25,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1955,73,1,2215,71,1,0 +2013,6,30,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-6,0,1052,-22,0,0 +2013,4,4,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-8,0,1345,-9,0,0 +2013,9,4,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-6,0,1355,2,0,0 +2013,7,13,6,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,2,0,2113,9,0,0 +2013,9,26,4,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-6,0,1906,-4,0,0 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,1,0,2115,15,1,0 +2013,6,2,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,-2,0,1700,-5,0,0 +2013,8,14,3,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-10,0,1015,-10,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2140,14,0,2255,-7,0,0 +2013,6,3,1,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1110,-4,0,1251,-18,0,0 +2013,8,7,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,-3,0,2255,10,0,0 +2013,4,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1850,-5,0,2030,-16,0,0 +2013,9,6,5,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,600,-10,0,842,1,0,0 +2013,5,15,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-8,0,753,-21,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1643,44,1,1835,26,1,0 +2013,7,9,2,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,-2,0,2052,41,1,0 +2013,5,10,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1735,6,0,1855,8,0,0 +2013,9,25,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1435,-6,0,1610,-7,0,0 +2013,5,12,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1717,47,1,1959,25,1,0 +2013,7,19,5,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1715,40,1,1913,40,1,0 +2013,5,2,4,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,28,1,1535,23,1,0 +2013,8,9,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1640,-7,0,1755,-10,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1730,-5,0,1930,-29,0,0 +2013,7,14,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1014,-3,0,1106,-7,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,7,0,1355,43,1,0 +2013,4,4,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1750,43,1,1910,33,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2300,-4,0,46,-18,0,0 +2013,8,16,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,715,48,1,1009,39,1,0 +2013,8,14,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1004,19,1,1610,-5,0,0 +2013,10,16,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1051,5,0,1310,6,0,0 +2013,4,7,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,915,-9,0,1316,-35,0,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1225,2,0,1335,-2,0,0 +2013,7,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1402,57,1,1752,90,1,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,615,-1,0,720,-3,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-1,0,1450,-5,0,0 +2013,8,23,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,740,1,0,1545,-10,0,0 +2013,10,22,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,-6,0,2157,-21,0,0 +2013,7,8,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1900,-7,0,2110,-29,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-4,0,859,0,1,1 +2013,6,11,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1250,13,0,1825,14,0,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1430,-2,0,1555,0,0,0 +2013,6,13,4,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1230,58,1,2102,75,1,0 +2013,6,17,1,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1724,160,1,2020,170,1,0 +2013,5,24,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,17,1,1835,19,1,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,13,0,1120,4,0,0 +2013,10,19,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,840,0,0,938,-6,0,0 +2013,10,22,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1310,-4,0,2107,-28,0,0 +2013,5,16,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1133,3,0,0 +2013,8,10,6,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,18,1,1735,-2,0,0 +2013,6,6,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1210,-2,0,1355,-7,0,0 +2013,10,22,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1815,21,1,1925,35,1,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1609,-2,0,1739,-11,0,0 +2013,5,19,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,70,1,1856,100,1,0 +2013,8,22,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1718,-22,0,0 +2013,4,25,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1950,2,0,2159,4,0,0 +2013,7,14,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1635,-8,0,1833,-15,0,0 +2013,5,15,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,-7,0,1830,-16,0,0 +2013,7,23,2,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-5,0,2054,-21,0,0 +2013,10,19,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1440,16,1,1505,-4,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1415,2,0,1550,-10,0,0 +2013,10,29,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-5,0,1049,-10,0,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,60,1,2253,67,1,0 +2013,4,7,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-1,0,1009,-14,0,0 +2013,8,25,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,6,0,1232,8,0,0 +2013,10,16,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2135,4,0,2245,10,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,18,1,1612,41,1,0 +2013,4,23,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1027,-1,0,1302,10,0,0 +2013,7,12,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1310,-5,0,1525,-5,0,0 +2013,8,22,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,810,18,1,903,25,1,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,2,0,1140,-11,0,0 +2013,9,28,6,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1145,10,0,1235,14,0,0 +2013,5,28,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-6,0,841,-28,0,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1550,26,1,1640,21,1,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1251,-6,0,1536,-19,0,0 +2013,9,9,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1645,2,0,2140,2,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1439,2,0,1533,11,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1920,44,1,2020,40,1,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1230,-5,0,1535,-17,0,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1042,-2,0,1215,-1,0,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,20,1,1830,26,1,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1931,58,1,2305,62,1,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-4,0,1410,-24,0,0 +2013,7,31,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-6,0,2141,-24,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,0,0,1900,-18,0,0 +2013,9,20,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,715,-3,0,1106,-6,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,730,-4,0,924,-9,0,0 +2013,5,25,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,0,0,2234,-12,0,0 +2013,4,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1027,5,0,1221,-14,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-1,0,1310,4,0,0 +2013,9,2,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-5,0,813,-19,0,0 +2013,7,11,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,7,0,1820,9,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1430,34,1,1550,24,1,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1815,27,1,2020,30,1,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,900,10,0,1130,-14,0,0 +2013,9,2,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1120,2,0,1225,1,0,0 +2013,6,26,3,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1640,0,,1849,0,1,1 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,1,0,1526,-11,0,0 +2013,10,28,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1050,18,1,1910,13,0,0 +2013,5,12,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-2,0,825,-5,0,0 +2013,8,1,4,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1353,-3,0,1520,-4,0,0 +2013,9,8,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1652,-10,0,42,7,0,0 +2013,5,31,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1700,-3,0,1815,-9,0,0 +2013,4,4,4,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1020,-2,0,1205,-19,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1740,8,0,2300,0,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1535,19,1,1650,5,0,0 +2013,10,5,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1521,-5,0,1555,-6,0,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2100,15,1,2200,17,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1150,-1,0,1405,-4,0,0 +2013,9,11,3,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-4,0,1227,0,0,0 +2013,6,6,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,735,-4,0,926,-10,0,0 +2013,8,29,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-2,0,827,26,1,0 +2013,9,28,6,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-2,0,1636,22,1,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1326,-1,0,1607,-6,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,-2,0,1335,-5,0,0 +2013,10,19,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1750,39,1,1925,23,1,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1855,-5,0,2240,-4,0,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-8,0,2355,6,0,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-2,0,25,2,0,0 +2013,7,4,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,7,0,1530,3,0,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2215,-2,0,2359,-2,0,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1750,-3,0,2000,-14,0,0 +2013,6,2,7,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,0,0,1025,-7,0,0 +2013,8,24,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1844,-14,0,0 +2013,7,19,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,37,1,1641,20,1,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-3,0,1152,-6,0,0 +2013,4,20,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,939,-6,0,1249,-8,0,0 +2013,8,13,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,45,1,2110,28,1,0 +2013,7,12,5,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1923,-5,0,2049,6,0,0 +2013,5,11,6,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,2105,-6,0,2207,-9,0,0 +2013,4,22,1,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1115,2,0,1828,-30,0,0 +2013,6,6,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2054,-5,0,2228,2,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,755,-1,0,917,-7,0,0 +2013,9,20,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,920,-2,0,1255,-7,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,76,1,2217,75,1,0 +2013,10,16,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11042,Cleveland-Hopkins International,Cleveland,OH,1110,-5,0,1434,-13,0,0 +2013,6,29,6,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1025,1,0,1210,5,0,0 +2013,4,29,1,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,1915,-4,0,2015,-5,0,0 +2013,6,28,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1110,42,1,1229,31,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,16,1,2356,-6,0,0 +2013,10,29,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1747,-2,0,1945,-2,0,0 +2013,7,17,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1630,2,0,1950,-5,0,0 +2013,9,11,3,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,3,0,1116,-31,0,0 +2013,9,5,4,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-3,0,929,11,0,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,-5,0,2231,18,1,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,810,-3,0,1000,-10,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1841,0,0,2011,5,0,0 +2013,8,4,7,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,-11,0,840,-6,0,0 +2013,6,2,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1716,128,1,1835,123,1,0 +2013,10,8,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-6,0,541,-8,0,0 +2013,6,30,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,700,1,0,750,-9,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1815,7,0,2105,-3,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2325,-1,0,738,0,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1141,-3,0,1222,-14,0,0 +2013,6,4,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-5,0,1530,-15,0,0 +2013,4,25,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,832,-5,0,951,-5,0,0 +2013,9,10,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,16,1,1130,7,0,0 +2013,7,19,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,9,0,1930,17,1,0 +2013,6,13,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,58,1,2200,48,1,0 +2013,7,26,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1445,6,0,1605,20,1,0 +2013,5,30,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-12,0,924,-7,0,0 +2013,10,4,5,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,646,-5,0,943,-12,0,0 +2013,10,30,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-2,0,1715,-4,0,0 +2013,7,8,1,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1650,21,1,1744,14,0,0 +2013,6,13,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-7,0,1003,-15,0,0 +2013,4,8,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-4,0,1111,12,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,17,1,2224,9,0,0 +2013,7,18,4,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1513,-7,0,1616,8,0,0 +2013,9,10,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,1603,6,0,0 +2013,9,13,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1135,0,,1225,0,1,1 +2013,6,13,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,725,-2,0,820,-5,0,0 +2013,4,20,6,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1735,-3,0,2005,-6,0,0 +2013,6,15,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,0,0,1758,-11,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-4,0,830,-7,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,935,17,1,1600,8,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-2,0,1839,-10,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1955,22,1,2215,10,0,0 +2013,8,18,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1749,2,0,1927,-16,0,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1140,-4,0,2004,-13,0,0 +2013,5,19,7,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1344,13,0,1542,41,1,0 +2013,10,9,3,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1453,-3,0,1556,-16,0,0 +2013,5,17,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2125,1,0,2245,0,0,0 +2013,6,2,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,-5,0,1645,-13,0,0 +2013,9,20,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,735,-8,0,1031,-28,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1015,8,0,1128,4,0,0 +2013,5,21,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1015,-10,0,1130,-20,0,0 +2013,10,24,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1130,1,0,1908,-24,0,0 +2013,10,29,2,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-4,0,1105,-21,0,0 +2013,7,5,5,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,-5,0,616,-11,0,0 +2013,7,5,5,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-11,0,816,-16,0,0 +2013,4,6,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1920,71,1,2116,65,1,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,920,0,0,1100,-15,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,3,0,1515,-2,0,0 +2013,4,14,7,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1640,-1,0,1920,-3,0,0 +2013,7,6,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,750,2,0,944,-11,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1745,127,1,2225,116,1,0 +2013,6,11,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,148,1,2043,142,1,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,625,-7,0,820,15,1,0 +2013,8,12,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1737,-6,0,1818,-4,0,0 +2013,6,3,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-2,0,1805,-20,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1200,-1,0,1405,-4,0,0 +2013,4,29,1,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1002,-9,0,1201,-19,0,0 +2013,4,29,1,EV,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,747,-3,0,847,-12,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1430,-4,0,1543,-9,0,0 +2013,10,4,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-8,0,1032,1,0,0 +2013,7,3,3,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,3,0,1636,18,1,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2145,-7,0,25,-28,0,0 +2013,7,10,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1825,0,0,2126,1,0,0 +2013,10,6,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1210,0,0,1710,4,0,0 +2013,9,8,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,600,-13,0,738,-10,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1820,2,0,2215,-15,0,0 +2013,6,7,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1840,4,0,1915,4,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1835,8,0,2200,3,0,0 +2013,8,14,3,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2005,8,0,2245,-9,0,0 +2013,8,14,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1140,-1,0,1345,20,1,0 +2013,9,3,2,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1825,-17,0,2001,3,0,0 +2013,9,3,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-5,0,1302,-9,0,0 +2013,10,18,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2045,-11,0,2215,-13,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-4,0,1121,13,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,10,0,1030,34,1,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1926,71,1,2100,60,1,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,745,0,0,1025,-3,0,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,13,0,1800,26,1,0 +2013,10,15,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1730,-4,0,1845,-16,0,0 +2013,6,3,1,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1758,179,1,2033,161,1,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,730,2,0,912,10,0,0 +2013,8,16,5,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1707,-6,0,1829,-13,0,0 +2013,5,31,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1120,-4,0,1335,-2,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1345,-1,0,1551,-18,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1900,22,1,2035,0,1,1 +2013,7,9,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1115,-2,0,1200,-5,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1910,3,0,2042,-9,0,0 +2013,4,14,7,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1146,-6,0,1300,-18,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1618,-2,0,1709,7,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1455,32,1,1831,28,1,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,955,8,0,1218,52,1,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2230,64,1,658,56,1,0 +2013,5,1,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1601,9,0,1746,3,0,0 +2013,6,11,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,0,,719,0,1,1 +2013,10,12,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-8,0,840,1,0,0 +2013,7,26,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,1,0,1315,-5,0,0 +2013,8,26,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,920,-20,0,0 +2013,9,26,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1115,-8,0,1245,-26,0,0 +2013,9,18,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,610,4,0,725,-11,0,0 +2013,9,20,5,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,809,-4,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,840,-8,0,1139,-17,0,0 +2013,7,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2010,0,,2039,0,1,1 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,725,-2,0,845,4,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2100,21,1,2243,15,1,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1700,48,1,1915,41,1,0 +2013,8,15,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1528,2,0,1721,-9,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1535,14,0,1650,11,0,0 +2013,9,27,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,36,1,2130,21,1,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,5,0,1755,2,0,0 +2013,10,16,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,-2,0,1646,14,0,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,54,1,2231,48,1,0 +2013,9,23,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1129,0,0,1429,10,0,0 +2013,7,27,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,602,-4,0,742,11,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1103,-2,0,1450,-9,0,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1545,10,0,1935,1,0,0 +2013,6,19,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1444,4,0,1844,-3,0,0 +2013,6,14,5,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,4,0,2110,-4,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,70,1,2205,49,1,0 +2013,8,10,6,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,600,-3,0,1415,4,0,0 +2013,7,20,6,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,950,-2,0,1205,9,0,0 +2013,5,28,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,-2,0,1335,-16,0,0 +2013,4,21,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1440,146,1,2002,133,1,0 +2013,7,18,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1822,3,0,2017,-7,0,0 +2013,4,7,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-2,0,844,-5,0,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1735,50,1,1835,54,1,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1120,1,0,1220,-7,0,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,23,1,830,16,1,0 +2013,6,9,7,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,124,1,1640,113,1,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,0,0,1000,-1,0,0 +2013,7,12,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,0,0,1400,-5,0,0 +2013,5,8,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1720,1,0,1855,-15,0,0 +2013,9,13,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-2,0,2214,-17,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1145,7,0,1325,2,0,0 +2013,9,10,2,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-8,0,2130,-23,0,0 +2013,7,29,1,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1815,75,1,1945,59,1,0 +2013,9,1,7,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,711,-3,0,1529,-16,0,0 +2013,8,30,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,3,0,1730,-7,0,0 +2013,4,22,1,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,73,1,1956,124,1,0 +2013,10,7,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,725,-5,0,1019,-13,0,0 +2013,10,11,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,-10,0,1029,-15,0,0 +2013,4,6,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1815,-6,0,1849,-8,0,0 +2013,4,18,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1555,0,0,1710,-3,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1045,23,1,1205,57,1,0 +2013,4,22,1,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,9,0,1042,10,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,734,0,0,929,2,0,0 +2013,4,21,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,-3,0,1030,-8,0,0 +2013,5,4,6,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1455,27,1,1629,-10,0,0 +2013,10,12,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1015,-2,0,1127,18,1,0 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,640,-4,0,800,-10,0,0 +2013,5,4,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1915,9,0,2155,0,0,0 +2013,6,28,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,-7,0,2233,12,0,0 +2013,6,3,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,-6,0,1115,-18,0,0 +2013,7,26,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-6,0,1330,-6,0,0 +2013,8,18,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,917,84,1,1123,96,1,0 +2013,9,12,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1235,6,0,1355,2,0,0 +2013,6,9,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,32,1,1934,31,1,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,-3,0,1710,-2,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1630,5,0,1800,-4,0,0 +2013,4,1,1,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1529,-5,0,1725,-11,0,0 +2013,6,13,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1835,3,0,1939,-3,0,0 +2013,5,10,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1524,-1,0,1739,19,1,0 +2013,7,28,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-5,0,900,-18,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,1,0,1615,-14,0,0 +2013,7,22,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1105,0,0,1236,-5,0,0 +2013,8,28,3,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-5,0,1215,-9,0,0 +2013,9,12,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,23,1,1925,14,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,-7,0,845,-8,0,0 +2013,6,24,1,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1040,-3,0,1614,-5,0,0 +2013,4,13,6,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1156,11,0,1349,1,0,0 +2013,7,2,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1115,41,1,1405,31,1,0 +2013,5,2,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,-6,0,1907,3,0,0 +2013,5,6,1,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,610,-1,0,812,0,1,1 +2013,4,27,6,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1800,32,1,2235,35,1,0 +2013,4,18,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1653,-5,0,1814,-11,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,655,0,0,949,16,1,0 +2013,5,9,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-2,0,736,-11,0,0 +2013,7,6,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1235,37,1,1357,37,1,0 +2013,10,6,7,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1350,-2,0,2200,-7,0,0 +2013,6,7,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,17,1,1650,37,1,0 +2013,6,25,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1222,0,0,1519,-3,0,0 +2013,7,16,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,800,5,0,1005,4,0,0 +2013,6,20,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,3,0,935,0,0,0 +2013,4,25,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-2,0,2134,-20,0,0 +2013,6,22,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-9,0,1235,-21,0,0 +2013,7,20,6,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-4,0,1025,10,0,0 +2013,6,19,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,103,1,1400,110,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,2,0,1255,-9,0,0 +2013,5,5,7,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1705,-5,0,2055,0,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1455,29,1,1630,28,1,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1452,-11,0,1709,-16,0,0 +2013,6,11,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,639,-3,0,935,-21,0,0 +2013,9,5,4,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,1335,1,0,0 +2013,10,5,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-4,0,605,5,0,0 +2013,10,2,3,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2105,66,1,2345,60,1,0 +2013,7,19,5,OO,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1502,11,0,1729,11,0,0 +2013,9,20,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2100,46,1,2200,55,1,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,910,26,1,1620,8,0,0 +2013,10,29,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1235,-8,0,1441,3,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1725,78,1,2000,53,1,0 +2013,8,24,6,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2147,-6,0,2330,-10,0,0 +2013,4,4,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1910,0,0,2015,-14,0,0 +2013,8,23,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1101,11,0,1413,11,0,0 +2013,5,20,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1825,0,0,2127,6,0,0 +2013,4,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2000,6,0,2125,2,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,37,1,1908,65,1,0 +2013,7,27,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-4,0,1415,-9,0,0 +2013,10,24,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-6,0,904,-18,0,0 +2013,8,16,5,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1153,-4,0,2023,7,0,0 +2013,6,18,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-4,0,920,15,1,0 +2013,6,17,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,800,-15,0,1049,-10,0,0 +2013,9,22,7,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,955,-1,0,1116,4,0,0 +2013,9,8,7,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-8,0,1341,-13,0,0 +2013,7,23,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-5,0,1055,-24,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,2,0,1807,19,1,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,-2,0,1845,2,0,0 +2013,6,1,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1506,-6,0,1618,-17,0,0 +2013,8,13,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,48,1,1620,34,1,0 +2013,8,3,6,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1616,41,1,1837,21,1,0 +2013,9,24,2,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1215,-7,0,1322,-4,0,0 +2013,10,18,5,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1415,-1,0,1550,18,1,0 +2013,7,8,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,545,9,0,705,2,0,0 +2013,4,28,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1420,-11,0,1505,-13,0,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1840,0,0,2055,-5,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1035,-3,0,1200,-8,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,11,0,1755,40,1,0 +2013,4,16,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1930,-5,0,2239,-19,0,0 +2013,9,6,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1545,-5,0,1746,-26,0,0 +2013,10,4,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-11,0,700,-21,0,0 +2013,6,4,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1806,9,0,0 +2013,6,23,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,605,-2,0,725,2,0,0 +2013,5,13,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,625,-2,0,935,-17,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,4,0,2246,0,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1436,-1,0,1613,-3,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,25,1,1926,17,1,0 +2013,6,6,4,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-8,0,1235,-21,0,0 +2013,4,17,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2000,39,1,2144,4,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,235,1,2122,237,1,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,822,-2,0,946,1,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1040,-1,0,1100,-1,0,0 +2013,10,9,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,0,0,920,-10,0,0 +2013,5,18,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1124,22,1,1357,8,0,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1904,0,0,2225,-6,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2105,-4,0,2246,-13,0,0 +2013,6,6,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-4,0,2040,-6,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,935,-2,0,1030,14,0,0 +2013,8,15,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1350,-5,0,1642,-13,0,0 +2013,7,5,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,705,-2,0,813,-33,0,0 +2013,5,4,6,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1736,77,1,1924,67,1,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,80,1,2105,71,1,0 +2013,6,4,2,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-3,0,1143,-9,0,0 +2013,10,19,6,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-3,0,811,-8,0,0 +2013,5,8,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-9,0,2020,4,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,10,0,1833,9,0,0 +2013,5,2,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-4,0,1344,-1,0,0 +2013,6,8,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1840,0,0,1945,-18,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-1,0,1831,-4,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2115,-4,0,2240,-4,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1426,-2,0,1529,-5,0,0 +2013,6,13,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1210,24,1,1451,9,0,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,730,2,0,835,-15,0,0 +2013,4,22,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,740,-7,0,0 +2013,10,22,2,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-5,0,823,-11,0,0 +2013,6,22,6,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1820,9,0,1930,-2,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1405,4,0,1845,13,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2255,-2,0,509,-23,0,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1505,-1,0,1722,8,0,0 +2013,6,27,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,825,-1,0,1010,-11,0,0 +2013,6,1,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1653,-3,0,1814,-7,0,0 +2013,4,24,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,821,-2,0,1030,6,0,0 +2013,5,25,6,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,11,0,1550,1,0,0 +2013,6,6,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1225,6,0,1345,3,0,0 +2013,4,17,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-9,0,1050,-7,0,0 +2013,7,9,2,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-3,0,825,-14,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,820,-3,0,1215,8,0,0 +2013,4,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1519,-4,0,1815,-8,0,0 +2013,5,21,2,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,615,-7,0,749,-14,0,0 +2013,4,20,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1945,15,1,2120,1,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,600,0,0,1155,-1,0,0 +2013,6,25,2,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1455,-1,0,1800,-7,0,0 +2013,7,12,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,0,,1815,0,1,1 +2013,7,1,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,10,0,1135,4,0,0 +2013,9,28,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1210,6,0,1420,11,0,0 +2013,10,8,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,756,-3,0,1123,-8,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-1,0,2324,-1,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1512,-3,0,1646,1,0,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1625,2,0,1750,10,0,0 +2013,4,22,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2035,4,0,2300,-2,0,0 +2013,8,27,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,802,1,0,1405,-13,0,0 +2013,9,23,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,955,22,1,1135,13,0,0 +2013,7,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1705,22,1,2055,0,0,0 +2013,4,10,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1540,27,1,1640,66,1,0 +2013,10,18,5,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,740,-1,0,1015,13,0,0 +2013,5,16,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,65,1,1840,80,1,0 +2013,9,5,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-5,0,1524,-13,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1616,61,1,1813,69,1,0 +2013,4,8,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1115,1,0,1235,-4,0,0 +2013,10,31,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1030,-3,0,1140,-11,0,0 +2013,5,9,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,600,1,0,840,-15,0,0 +2013,4,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1006,52,1,1118,49,1,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1311,-4,0,1456,1,0,0 +2013,7,27,6,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1650,-6,0,1814,-4,0,0 +2013,5,3,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,723,22,1,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,730,-5,0,1134,-11,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1030,-5,0,1420,-7,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,741,-5,0,1141,-12,0,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,830,-2,0,850,-6,0,0 +2013,6,26,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,-2,0,1152,3,0,0 +2013,5,19,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-1,0,1225,-13,0,0 +2013,10,29,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1510,8,0,1645,12,0,0 +2013,9,26,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2320,-3,0,607,-21,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1741,107,1,1909,104,1,0 +2013,4,30,2,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1928,46,1,2111,31,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,844,-4,0,1009,1,0,0 +2013,10,24,4,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1140,-5,0,1430,-13,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,0,0,910,1,0,0 +2013,9,15,7,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,6,0,1935,-3,0,0 +2013,8,6,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,600,-6,0,729,-11,0,0 +2013,6,2,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1144,-6,0,1334,-20,0,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-7,0,1108,8,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,1,0,1410,-8,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1605,8,0,1835,9,0,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,845,-2,0,1205,-3,0,0 +2013,6,3,1,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2343,-3,0,504,-15,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1548,-2,0,1645,-9,0,0 +2013,8,24,6,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1740,-3,0,2048,-14,0,0 +2013,6,30,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2114,7,0,2242,22,1,0 +2013,7,4,4,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,920,2,0,0 +2013,10,15,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2110,2,0,2303,-9,0,0 +2013,7,14,7,EV,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1425,23,1,1659,21,1,0 +2013,5,8,3,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-4,0,754,-7,0,0 +2013,7,15,1,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-2,0,2015,-1,0,0 +2013,6,7,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1305,6,0,1435,10,0,0 +2013,9,16,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,1,0,1405,-9,0,0 +2013,9,5,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,715,-4,0,830,-15,0,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,-2,0,1510,48,1,0 +2013,9,17,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,951,-10,0,1316,-5,0,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,30,1,2201,186,1,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,90,1,1415,71,1,0 +2013,6,25,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,0,0,715,-5,0,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1120,13,0,1445,9,0,0 +2013,9,28,6,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,740,-1,0,910,-15,0,0 +2013,5,11,6,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1337,-4,0,1505,-6,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1435,5,0,1910,9,0,0 +2013,7,31,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2303,2,0,2359,-11,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,955,-1,0,1101,3,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,554,-1,0,708,-14,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,0,0,1250,-11,0,0 +2013,9,17,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1700,-7,0,2105,-24,0,0 +2013,5,23,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-3,0,1410,77,1,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1445,5,0,1545,-3,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1725,12,0,2310,2,0,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1415,1,0,1555,-5,0,0 +2013,6,17,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-4,0,903,-13,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1026,-1,0,1459,-23,0,0 +2013,9,17,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1405,-6,0,1715,-22,0,0 +2013,6,28,5,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1830,99,1,2125,88,1,0 +2013,8,24,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1135,80,1,1250,99,1,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,-4,0,2327,-8,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,600,12,0,836,11,0,0 +2013,5,12,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2140,0,0,2250,-2,0,0 +2013,5,25,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1100,-6,0,1232,-7,0,0 +2013,9,19,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-8,0,1845,-4,0,0 +2013,5,2,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-11,0,1050,-14,0,0 +2013,4,12,5,EV,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1350,30,1,1521,22,1,0 +2013,9,15,7,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1707,0,0,1856,-14,0,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1640,12,0,1755,4,0,0 +2013,4,3,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1935,5,0,2030,-3,0,0 +2013,6,15,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1701,5,0,1805,-3,0,0 +2013,10,19,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,705,-3,0,835,-15,0,0 +2013,6,4,2,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1629,-5,0,1927,29,1,0 +2013,9,24,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,829,-5,0,938,-10,0,0 +2013,4,30,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1456,73,1,1633,67,1,0 +2013,4,9,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1530,17,1,1835,92,1,0 +2013,10,16,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-6,0,1255,-13,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,0,0,829,-7,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,-6,0,921,-16,0,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,755,0,0,1600,13,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1306,-3,0,1633,-7,0,0 +2013,7,21,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1825,-10,0,4,-26,0,0 +2013,4,24,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,645,-4,0,806,-1,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2301,-5,0,712,-8,0,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1655,-3,0,1750,-7,0,0 +2013,10,15,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-4,0,755,2,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,1,0,1828,8,0,0 +2013,7,20,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,34,1,2245,33,1,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,805,1,0,1255,0,0,0 +2013,4,11,4,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,1,0,1610,12,0,0 +2013,7,31,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-3,0,1231,-11,0,0 +2013,8,14,3,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-6,0,2015,4,0,0 +2013,7,8,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,45,1,1605,78,1,0 +2013,6,16,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1650,10,0,1905,7,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,600,37,1,745,30,1,0 +2013,9,5,4,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1625,3,0,1922,2,0,0 +2013,6,20,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-8,0,1414,2,0,0 +2013,6,21,5,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,68,1,1117,61,1,0 +2013,8,26,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,710,-5,0,815,-6,0,0 +2013,9,5,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,839,-4,0,909,0,0,0 +2013,7,20,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,1,0,1501,15,1,0 +2013,5,16,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1010,0,,1349,0,1,1 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,54,1,2115,51,1,0 +2013,10,15,2,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-5,0,1305,-2,0,0 +2013,8,17,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1527,3,0,1640,0,0,0 +2013,8,18,7,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1155,9,0,1300,17,1,0 +2013,6,21,5,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,615,104,1,705,97,1,0 +2013,4,17,3,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,615,-10,0,827,-25,0,0 +2013,6,3,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,600,34,1,734,29,1,0 +2013,5,10,5,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1005,3,0,1210,1,0,0 +2013,4,25,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1705,-3,0,1845,-10,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1435,-2,0,1635,-7,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2115,1,0,15,5,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,4,0,1000,7,0,0 +2013,10,23,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1915,-11,0,2117,5,0,0 +2013,4,4,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2017,-2,0,2124,-3,0,0 +2013,5,16,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,955,-5,0,1435,-20,0,0 +2013,5,8,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2015,65,1,2139,87,1,0 +2013,4,4,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,904,-1,0,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-5,0,1019,-2,0,0 +2013,7,15,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1750,10,0,1845,11,0,0 +2013,6,15,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1530,0,0,2105,-8,0,0 +2013,7,20,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,43,1,2037,48,1,0 +2013,8,5,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,-1,0,1425,-7,0,0 +2013,7,19,5,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,16,1,2015,5,0,0 +2013,8,2,5,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,1,0,718,3,0,0 +2013,9,2,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1741,-5,0,2109,-9,0,0 +2013,8,3,6,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1822,-6,0,2025,-18,0,0 +2013,9,5,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,801,-24,0,0 +2013,4,16,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1305,-2,0,2120,-16,0,0 +2013,6,24,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1100,10,0,1522,32,1,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-3,0,1219,-2,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-7,0,855,-10,0,0 +2013,4,3,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1846,31,1,2010,21,1,0 +2013,7,1,1,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,625,31,1,836,27,1,0 +2013,4,23,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-8,0,930,7,0,0 +2013,5,27,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,-10,0,1552,-13,0,0 +2013,4,29,1,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1400,-1,0,1450,5,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1500,-2,0,1721,-7,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1905,13,0,50,3,0,0 +2013,8,9,5,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1921,4,0,2337,-12,0,0 +2013,5,2,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,830,-2,0,955,-17,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,9,0,1850,-9,0,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,726,7,0,948,-1,0,0 +2013,6,19,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,127,1,840,116,1,0 +2013,9,28,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-1,0,1635,47,1,0 +2013,6,26,3,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1606,230,1,1821,294,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1645,0,0,1815,-8,0,0 +2013,5,18,6,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1255,6,0,1440,-13,0,0 +2013,7,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,-1,0,1543,-12,0,0 +2013,4,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1339,7,0,1638,-7,0,0 +2013,9,27,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1036,6,0,1300,24,1,0 +2013,7,24,3,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1640,5,0,1815,19,1,0 +2013,9,19,4,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,13,0,2112,10,0,0 +2013,5,30,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,849,-7,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1959,0,0,2151,-7,0,0 +2013,4,2,2,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1555,65,1,1810,84,1,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1100,135,1,1155,167,1,0 +2013,9,3,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2041,-9,0,2154,-15,0,0 +2013,7,27,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1615,-13,0,1759,-19,0,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1005,-3,0,1349,5,0,0 +2013,9,8,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,2,0,2322,15,1,0 +2013,7,3,3,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-4,0,1254,0,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-5,0,933,-13,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,925,0,0,1257,-3,0,0 +2013,8,20,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1957,4,0,2126,0,0,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,24,1,1755,23,1,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-1,0,2054,-8,0,0 +2013,10,24,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1912,-5,0,2247,-4,0,0 +2013,5,24,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,16,1,2234,17,1,0 +2013,5,14,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,600,-5,0,734,-2,0,0 +2013,9,28,6,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,910,-5,0,1031,-8,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2155,26,1,10,28,1,0 +2013,8,18,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1200,4,0,1415,-5,0,0 +2013,5,15,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1110,8,0,1356,-10,0,0 +2013,6,19,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,1,0,651,-9,0,0 +2013,7,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,105,1,1224,95,1,0 +2013,7,7,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,4,0,1440,-14,0,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2135,-6,0,2239,-15,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1935,0,0,2110,-10,0,0 +2013,9,14,6,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-4,0,1103,-12,0,0 +2013,10,15,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,26,1,752,14,0,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1530,-1,0,1730,18,1,0 +2013,8,14,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1740,-3,0,2045,-11,0,0 +2013,5,25,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1055,10,0,1340,-5,0,0 +2013,10,22,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-5,0,1823,-21,0,0 +2013,6,16,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,14,0,1205,27,1,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1855,51,1,2200,46,1,0 +2013,5,15,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-5,0,2058,-16,0,0 +2013,10,24,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-1,0,2135,-5,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,17,1,1840,7,0,0 +2013,10,3,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2055,-7,0,2113,1,0,0 +2013,9,8,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1228,85,1,1420,80,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1615,-5,0,1720,-8,0,0 +2013,9,24,2,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,959,-8,0,1144,5,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,941,-3,0,1152,-8,0,0 +2013,10,13,7,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1140,18,1,1305,10,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2300,-7,0,644,-8,0,0 +2013,8,20,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-7,0,1856,-6,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,925,11,0,1215,0,0,0 +2013,5,15,3,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1445,21,1,1520,19,1,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1320,1,0,1545,-6,0,0 +2013,6,28,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1020,2,0,1225,1,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1355,0,0,1735,-11,0,0 +2013,7,6,6,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1700,-1,0,1845,3,0,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2039,-7,0,2335,-10,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1520,63,1,1815,55,1,0 +2013,10,27,7,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1627,61,1,1857,49,1,0 +2013,7,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,1,0,900,-7,0,0 +2013,7,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1245,28,1,1415,5,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1340,-2,0,1506,-8,0,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1720,-8,0,2100,-23,0,0 +2013,10,9,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,24,1,1805,9,0,0 +2013,5,21,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-12,0,826,38,1,0 +2013,9,22,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1812,68,1,2102,62,1,0 +2013,4,28,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1130,-6,0,1132,-9,0,0 +2013,9,24,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,-9,0,1450,-12,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2210,-1,0,2340,-6,0,0 +2013,8,3,6,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-9,0,758,-14,0,0 +2013,10,3,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-10,0,815,-20,0,0 +2013,9,25,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,610,-7,0,930,-16,0,0 +2013,5,3,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,-6,0,1510,-14,0,0 +2013,5,18,6,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,959,-8,0,1139,-30,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2035,26,1,2235,21,1,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1205,-2,0,1635,-15,0,0 +2013,7,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1525,68,1,1733,67,1,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1242,9,0,1520,-4,0,0 +2013,7,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1416,0,0,1954,0,0,0 +2013,7,24,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,249,1,711,281,1,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1825,-2,0,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1345,-1,0,1633,-24,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2215,-3,0,4,1,0,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-3,0,1505,-24,0,0 +2013,8,18,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,643,-4,0,820,13,0,0 +2013,6,30,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,819,-4,0,958,-9,0,0 +2013,6,2,7,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,18,1,1720,26,1,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,-4,0,1703,-21,0,0 +2013,7,19,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,-1,0,1643,-29,0,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1805,0,0,2126,-7,0,0 +2013,4,10,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1130,1,0,1300,-7,0,0 +2013,8,21,3,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,825,-5,0,1128,-9,0,0 +2013,7,19,5,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,758,-11,0,0 +2013,4,12,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-5,0,1044,-36,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2020,40,1,2155,48,1,0 +2013,9,6,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1455,-8,0,1620,-12,0,0 +2013,6,20,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,650,3,0,825,4,0,0 +2013,10,29,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1000,-3,0,1110,-7,0,0 +2013,8,17,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-10,0,2157,8,0,0 +2013,5,25,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1124,159,1,1626,149,1,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,-3,0,1835,13,0,0 +2013,10,12,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,5,0,2359,-2,0,0 +2013,5,9,4,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1645,3,0,1827,18,1,0 +2013,5,18,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1520,0,0,1646,-7,0,0 +2013,8,14,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,750,-3,0,925,-27,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,55,1,1330,43,1,0 +2013,10,10,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1440,130,1,1739,123,1,0 +2013,6,17,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,-4,0,1720,-3,0,0 +2013,10,19,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1455,24,1,1744,10,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-4,0,1407,-4,0,0 +2013,5,2,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1750,14,0,1935,10,0,0 +2013,7,22,1,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1620,0,,1820,0,1,1 +2013,4,17,3,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1230,0,0,1640,-10,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,711,-8,0,1038,-17,0,0 +2013,5,23,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1745,8,0,1947,32,1,0 +2013,7,14,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,-5,0,1310,-12,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1015,1,0,1125,-13,0,0 +2013,9,19,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1420,45,1,1540,47,1,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,750,-5,0,855,-12,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,180,1,1305,182,1,0 +2013,6,1,6,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1111,-5,0,1409,-4,0,0 +2013,10,8,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,23,1,1430,18,1,0 +2013,5,9,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,735,-4,0,820,-11,0,0 +2013,9,5,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1145,1,0,1620,1,0,0 +2013,10,8,2,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,954,15,1,1458,15,1,0 +2013,4,7,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1610,68,1,1720,64,1,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,93,1,1325,71,1,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-1,0,1440,-17,0,0 +2013,9,12,4,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,104,1,2030,201,1,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1730,-7,0,2114,-26,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1241,-5,0,1619,-31,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1510,-7,0,2300,-19,0,0 +2013,6,28,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,646,-3,0,842,-9,0,0 +2013,6,27,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2115,54,1,131,60,1,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1755,45,1,1925,39,1,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1358,-2,0,1443,10,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,1,0,2225,-19,0,0 +2013,9,1,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-12,0,1439,-18,0,0 +2013,7,31,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-2,0,1329,14,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2035,-6,0,2331,-3,0,0 +2013,4,19,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1756,0,,1930,0,1,1 +2013,9,18,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1253,-4,0,1413,-29,0,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,755,-4,0,925,-7,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1905,-1,0,2025,-7,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2038,-10,0,2222,-36,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1220,-4,0,1946,19,1,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-7,0,1648,16,1,0 +2013,10,4,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1835,-4,0,2000,-10,0,0 +2013,9,4,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-8,0,1835,-25,0,0 +2013,4,7,7,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,930,-3,0,1240,-12,0,0 +2013,7,5,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1718,-8,0,1900,-9,0,0 +2013,9,11,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1456,-13,0,0 +2013,9,18,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1431,-8,0,1604,-9,0,0 +2013,6,1,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1523,-1,0,1814,14,0,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2155,-8,0,2243,-7,0,0 +2013,7,3,3,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,9,0,2057,-3,0,0 +2013,6,11,2,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,910,8,0,1255,-7,0,0 +2013,7,21,7,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1215,32,1,1710,15,1,0 +2013,6,3,1,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1510,37,1,1735,33,1,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,16,1,1021,24,1,0 +2013,9,22,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-1,0,949,-12,0,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,2,0,1930,-6,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1200,14,0,0 +2013,7,1,1,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,600,-9,0,1005,-27,0,0 +2013,9,16,1,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,7,0,1225,24,1,0 +2013,7,24,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1046,-2,0,1350,0,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1826,41,1,1955,29,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1910,-3,0,2020,-33,0,0 +2013,4,10,3,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-7,0,1007,-37,0,0 +2013,9,28,6,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-4,0,1806,-23,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1813,2,0,2037,11,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1305,-4,0,1820,-13,0,0 +2013,5,4,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-4,0,747,-2,0,0 +2013,10,1,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-10,0,1750,5,0,0 +2013,9,14,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-10,0,1028,-17,0,0 +2013,5,19,7,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,955,-7,0,1215,19,1,0 +2013,7,22,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-6,0,1115,-7,0,0 +2013,5,11,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-9,0,1915,-3,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,25,1,2235,19,1,0 +2013,8,2,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,117,1,1048,93,1,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2005,58,1,2149,35,1,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,60,1,1211,51,1,0 +2013,4,4,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,854,-3,0,1310,-14,0,0 +2013,7,15,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,1,0,2101,-1,0,0 +2013,4,5,5,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,800,-3,0,1045,27,1,0 +2013,4,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,615,-4,0,820,-16,0,0 +2013,5,23,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1055,-1,0,1310,-15,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1430,101,1,1530,94,1,0 +2013,5,29,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-4,0,2050,-16,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-5,0,1709,-13,0,0 +2013,6,24,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,810,241,1,1142,249,1,0 +2013,5,18,6,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1250,11,0,1525,-4,0,0 +2013,7,3,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1716,12,0,1820,2,0,0 +2013,6,22,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1015,-5,0,1246,-2,0,0 +2013,4,11,4,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,909,50,1,1142,47,1,0 +2013,9,17,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1155,-8,0,1417,3,0,0 +2013,5,26,7,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1251,-8,0,1446,-7,0,0 +2013,7,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1100,5,0,1159,-2,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1745,-6,0,1919,-9,0,0 +2013,6,19,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,848,0,0,1048,-8,0,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,3,0,1430,1,0,0 +2013,10,3,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-3,0,1710,-14,0,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,-1,0,1054,-1,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-5,0,1839,22,1,0 +2013,5,30,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-2,0,1555,-5,0,0 +2013,9,30,1,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-3,0,2014,-35,0,0 +2013,8,4,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,-3,0,1514,8,0,0 +2013,4,5,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2026,-4,0,2339,-9,0,0 +2013,4,13,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1243,-11,0,1412,-10,0,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1320,162,1,1610,159,1,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1249,3,0,1643,-2,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,605,0,0,1025,15,1,0 +2013,7,13,6,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1217,0,0,1408,44,1,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1320,-4,0,1705,-15,0,0 +2013,4,25,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1826,-7,0,2109,-5,0,0 +2013,7,6,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,-7,0,1900,-23,0,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,920,0,0,1045,-4,0,0 +2013,6,13,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-1,0,1900,8,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2113,-3,0,2225,-15,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,1,0,1435,-15,0,0 +2013,4,2,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1810,34,1,2125,39,1,0 +2013,10,19,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,706,3,0,828,-6,0,0 +2013,8,20,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,0,0,505,-9,0,0 +2013,4,7,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1720,0,0,1845,-11,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1945,-3,0,2153,-24,0,0 +2013,8,20,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,0,0,1015,-2,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,820,5,0,1300,-6,0,0 +2013,4,6,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2125,14,0,2310,6,0,0 +2013,5,24,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-2,0,1008,-11,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1140,90,1,2016,85,1,0 +2013,10,23,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1710,-8,0,2315,-15,0,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1435,-5,0,1535,-10,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,648,-4,0,955,-45,0,0 +2013,5,21,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1243,48,1,1610,63,1,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1435,3,0,1755,7,0,0 +2013,5,21,2,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-9,0,939,-17,0,0 +2013,10,31,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,705,-5,0,905,-2,0,0 +2013,5,22,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,140,1,2010,144,1,0 +2013,7,29,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,-2,0,1745,-12,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1015,-1,0,1115,-6,0,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1502,-8,0,2329,-38,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1315,-5,0,1446,-6,0,0 +2013,8,15,4,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2012,20,1,2219,10,0,0 +2013,5,17,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1943,4,0,2056,4,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,725,0,0,1050,-2,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1225,15,1,1516,13,0,0 +2013,8,23,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,84,1,1922,80,1,0 +2013,8,16,5,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,-7,0,1641,-21,0,0 +2013,7,23,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,6,0,2120,-5,0,0 +2013,9,12,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1420,14,0,2015,10,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1425,-1,0,2000,4,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,805,-3,0,1040,5,0,0 +2013,6,20,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,3,0,2255,2,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,640,41,1,800,33,1,0 +2013,6,27,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1520,-2,0,1705,-1,0,0 +2013,5,5,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,0,0,1804,3,0,0 +2013,5,3,5,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,830,-4,0,1128,-19,0,0 +2013,7,13,6,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,950,3,0,1105,3,0,0 +2013,6,5,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-6,0,1707,-17,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,-7,0,2115,-16,0,0 +2013,10,10,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-3,0,1240,-14,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1140,53,1,1400,42,1,0 +2013,5,19,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1423,3,0,1748,1,0,0 +2013,4,3,3,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,650,-1,0,820,0,0,0 +2013,4,14,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1400,12,0,1515,7,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2142,47,1,2359,37,1,0 +2013,7,14,7,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,71,1,1905,67,1,0 +2013,8,10,6,OO,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1020,16,1,1346,14,0,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,610,-3,0,835,-12,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,0,0,2335,-12,0,0 +2013,7,29,1,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,-6,0,2014,-6,0,0 +2013,4,23,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-3,0,1320,9,0,0 +2013,4,22,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1555,-7,0,1849,-11,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,1,0,1150,-10,0,0 +2013,9,17,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1041,31,1,1255,30,1,0 +2013,8,29,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,0,,151,0,1,1 +2013,6,24,1,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,89,1,1345,102,1,0 +2013,10,15,2,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-1,0,1903,5,0,0 +2013,8,11,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1625,30,1,1922,11,0,0 +2013,8,22,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,14,0,2327,2,0,0 +2013,6,11,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,43,1,2200,35,1,0 +2013,5,24,5,EV,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1442,-3,0,1703,-10,0,0 +2013,5,8,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1821,0,0,2015,0,0,0 +2013,6,16,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1312,-4,0,1604,-20,0,0 +2013,7,26,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,10,0,1940,7,0,0 +2013,10,9,3,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,703,-3,0,945,-4,0,0 +2013,6,3,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,-4,0,1705,66,1,0 +2013,10,21,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1445,-4,0,1654,11,0,0 +2013,10,28,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1323,-1,0,1606,-5,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1610,9,0,1720,-11,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1135,0,0,1245,-1,0,0 +2013,9,12,4,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1217,84,1,1813,117,1,0 +2013,8,30,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,-4,0,847,-18,0,0 +2013,8,11,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1600,22,1,1610,21,1,0 +2013,5,2,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1525,11,0,1736,18,1,0 +2013,10,13,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-5,0,1636,-4,0,0 +2013,10,24,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-5,0,1549,-7,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1510,3,0,1605,-6,0,0 +2013,6,5,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-1,0,1754,1,0,0 +2013,5,22,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1120,-3,0,1215,1,0,0 +2013,6,30,7,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,-1,0,910,-21,0,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1310,4,0,1410,-5,0,0 +2013,10,3,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2025,-2,0,2140,-7,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1020,15,1,1115,16,1,0 +2013,9,2,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1426,-14,0,1558,-24,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1838,-1,0,2055,-16,0,0 +2013,9,13,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,550,0,0,909,11,0,0 +2013,8,19,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,3,0,920,5,0,0 +2013,5,31,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1555,7,0,1655,-11,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1915,-4,0,2013,-14,0,0 +2013,5,14,2,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1922,-3,0,2159,-1,0,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,855,0,,1150,0,1,1 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1730,26,1,1840,19,1,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,92,1,1815,85,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1250,-1,0,1505,1,0,0 +2013,9,11,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,72,1,2035,127,1,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,8,0,1735,-2,0,0 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1735,-9,0,1928,-17,0,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,800,-5,0,940,-5,0,0 +2013,4,6,6,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1409,-6,0,1549,-9,0,0 +2013,4,8,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,735,-6,0,1242,-18,0,0 +2013,10,9,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,812,-3,0,0 +2013,10,15,2,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1825,-5,0,2004,20,1,0 +2013,4,28,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,-3,0,1916,-1,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1347,12,0,1417,9,0,0 +2013,9,10,2,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-1,0,2250,-1,0,0 +2013,10,1,2,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-10,0,558,-36,0,0 +2013,6,23,7,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,600,26,1,727,72,1,0 +2013,6,14,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,1,0,1625,-21,0,0 +2013,8,17,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1015,-5,0,1140,-13,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,22,1,1240,23,1,0 +2013,9,18,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1230,-2,0,1420,-4,0,0 +2013,4,11,4,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,620,6,0,739,9,0,0 +2013,5,8,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1009,141,1,1216,149,1,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-3,0,1220,-23,0,0 +2013,6,28,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,530,2,0,545,3,0,0 +2013,6,5,3,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1344,-2,0,1523,-9,0,0 +2013,9,12,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1515,36,1,1712,22,1,0 +2013,8,26,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1015,-6,0,1130,-3,0,0 +2013,7,6,6,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-6,0,1250,-30,0,0 +2013,6,24,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,932,-12,0,1204,-5,0,0 +2013,8,22,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1714,-2,0,2339,-9,0,0 +2013,6,3,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-7,0,855,-8,0,0 +2013,8,9,5,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,810,87,1,1610,88,1,0 +2013,7,1,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-1,0,1225,-7,0,0 +2013,10,22,2,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-1,0,1735,-5,0,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2019,-4,0,2042,-13,0,0 +2013,6,18,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1931,9,0,2041,6,0,0 +2013,4,8,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,55,1,1830,37,1,0 +2013,5,26,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-1,0,845,-15,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1910,-4,0,10,-6,0,0 +2013,7,16,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1354,0,,1450,0,1,1 +2013,5,17,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,936,58,1,1237,19,1,0 +2013,4,30,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1243,-1,0,1636,-10,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,932,-4,0,1236,-7,0,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-6,0,1629,-10,0,0 +2013,10,25,5,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-2,0,1405,-34,0,0 +2013,8,2,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,1,0,1125,-14,0,0 +2013,4,17,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,-3,0,825,6,0,0 +2013,7,25,4,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,600,-9,0,1409,-15,0,0 +2013,10,30,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1657,21,1,1815,35,1,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,0,0,1110,-7,0,0 +2013,10,27,7,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-8,0,1302,-11,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,700,-6,0,835,-11,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2040,-4,0,2250,3,0,0 +2013,8,22,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1235,-6,0,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2200,101,1,2305,85,1,0 +2013,9,25,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1025,-4,0,1320,-5,0,0 +2013,7,29,1,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1159,0,0,1314,0,0,0 +2013,5,27,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,-7,0,2045,17,1,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2135,45,1,10,38,1,0 +2013,7,14,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1254,-10,0,1343,-15,0,0 +2013,9,3,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,23,1,627,15,1,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,134,1,40,122,1,0 +2013,7,26,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1228,-7,0,1405,48,1,0 +2013,6,12,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,9,0,2215,5,0,0 +2013,7,27,6,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1720,-17,0,1905,-15,0,0 +2013,9,3,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1727,-9,0,2039,1,0,0 +2013,5,19,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1315,14,0,1435,23,1,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1640,5,0,1704,-1,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1835,16,1,1940,11,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,93,1,1232,79,1,0 +2013,9,24,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1359,-7,0,1531,-2,0,0 +2013,5,1,3,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2222,-9,0,625,-19,0,0 +2013,7,3,3,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1715,1,0,2105,-8,0,0 +2013,4,20,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,80,1,1513,58,1,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,5,0,1113,-5,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,-4,0,1400,-7,0,0 +2013,7,10,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1505,-3,0,1925,-16,0,0 +2013,8,28,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1943,134,1,2305,109,1,0 +2013,8,17,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-4,0,1041,-20,0,0 +2013,4,24,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-5,0,1033,-15,0,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2045,-1,0,2340,-10,0,0 +2013,4,6,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1955,13,0,2235,12,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,1,0,1540,5,0,0 +2013,9,10,2,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,610,-2,0,706,6,0,0 +2013,4,2,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,2,0,1800,12,0,0 +2013,5,10,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,-2,0,940,-7,0,0 +2013,6,22,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1230,-21,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,920,21,1,1035,6,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1700,16,1,1915,6,0,0 +2013,5,10,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1535,0,0,1645,19,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1500,0,0,1642,-5,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,755,0,0,1040,1,0,0 +2013,4,28,7,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,86,1,1405,48,1,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,-1,0,1807,6,0,0 +2013,6,24,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,610,-5,0,722,31,1,0 +2013,9,21,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,53,1,1525,60,1,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1252,-2,0,1515,76,1,0 +2013,7,17,3,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1809,-4,0,2121,8,0,0 +2013,4,2,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-6,0,1230,-11,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1610,7,0,1840,2,0,0 +2013,6,6,4,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1824,3,0,2050,1,0,0 +2013,9,19,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,747,38,1,901,95,1,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1005,0,0,1203,-8,0,0 +2013,9,3,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,37,1,1415,24,1,0 +2013,6,4,2,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-1,0,1633,-3,0,0 +2013,9,20,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,0,0,1105,1,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,0,0,2305,6,0,0 +2013,7,27,6,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1220,10,0,1710,13,0,0 +2013,6,3,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,810,-1,0,1330,-27,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1855,-6,0,2119,-5,0,0 +2013,9,6,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1115,-8,0,1319,-8,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,-3,0,1220,-11,0,0 +2013,5,28,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1641,3,0,1838,-9,0,0 +2013,10,15,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-3,0,1229,-8,0,0 +2013,9,10,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-4,0,802,-5,0,0 +2013,8,29,4,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1844,0,0,2010,8,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,-5,0,1006,11,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-4,0,846,4,0,0 +2013,6,13,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-3,0,1000,-3,0,0 +2013,7,30,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1505,-4,0,1923,7,0,0 +2013,5,30,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,0,0,740,-7,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1515,6,0,1850,2,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-2,0,1013,-10,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,-2,0,2146,-2,0,0 +2013,5,21,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1445,1,0,1651,-6,0,0 +2013,4,25,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1537,38,1,1747,33,1,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,930,0,0,1120,15,1,0 +2013,8,31,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1514,-7,0,2017,-4,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2135,15,1,2240,10,0,0 +2013,7,8,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1803,23,1,1915,12,0,0 +2013,10,19,6,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1205,-8,0,1500,-10,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2200,-3,0,2328,-4,0,0 +2013,9,6,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1740,20,1,1825,19,1,0 +2013,7,18,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,7,0,1255,15,1,0 +2013,5,17,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,730,0,0,855,0,0,0 +2013,4,1,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,645,-3,0,805,-9,0,0 +2013,10,31,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,-3,0,1122,-14,0,0 +2013,8,26,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1437,1,0,1454,-3,0,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1000,-6,0,1315,-17,0,0 +2013,7,31,3,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,2,0,535,4,0,0 +2013,7,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1755,24,1,1900,18,1,0 +2013,10,5,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1322,-5,0,1508,-30,0,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1439,16,1,1725,20,1,0 +2013,9,12,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,68,1,1735,63,1,0 +2013,9,24,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2115,-6,0,2235,-4,0,0 +2013,7,16,2,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1210,-6,0,1655,4,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,85,1,2352,78,1,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1010,13,0,1135,13,0,0 +2013,8,25,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1118,1,0,1310,-15,0,0 +2013,9,29,7,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1355,-10,0,1655,-15,0,0 +2013,4,16,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,743,-10,0,0 +2013,7,19,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-2,0,1317,-20,0,0 +2013,8,20,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1356,-7,0,1710,2,0,0 +2013,6,1,6,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-5,0,1345,-29,0,0 +2013,8,28,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,840,-3,0,1105,-31,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1455,0,0,1600,-8,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1810,-6,0,1942,-14,0,0 +2013,10,6,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1735,56,1,2057,54,1,0 +2013,6,16,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1426,-1,0,1553,7,0,0 +2013,9,26,4,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,6,0,1910,8,0,0 +2013,4,9,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,29,1,1705,40,1,0 +2013,5,15,3,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,25,1,2015,18,1,0 +2013,7,10,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,745,-6,0,1610,4,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,-1,0,2336,5,0,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1555,15,1,1755,0,0,0 +2013,8,19,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,0,0,1820,-19,0,0 +2013,10,26,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1708,-6,0,1814,-19,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,14,0,2205,1,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,6,0,1537,0,0,0 +2013,9,29,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-6,0,1247,-19,0,0 +2013,9,13,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1609,19,1,1732,22,1,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1330,66,1,1645,53,1,0 +2013,5,20,1,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,814,-3,0,1050,-12,0,0 +2013,6,6,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,-2,0,1500,0,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1500,-2,0,1620,-9,0,0 +2013,6,11,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,5,0,1634,2,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,29,1,1635,17,1,0 +2013,5,19,7,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1010,-8,0,1055,-14,0,0 +2013,5,25,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1329,-7,0,1535,-19,0,0 +2013,10,9,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,900,-7,0,1040,-7,0,0 +2013,8,20,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,56,1,745,62,1,0 +2013,10,22,2,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-8,0,1326,-15,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1230,172,1,1705,175,1,0 +2013,9,27,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1136,-7,0,1335,-10,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1625,5,0,1730,0,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1415,12,0,1625,11,0,0 +2013,8,21,3,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1648,-2,0,1722,-4,0,0 +2013,6,28,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1115,35,1,1230,26,1,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,-4,0,1310,-16,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,9,0,1020,12,0,0 +2013,9,23,1,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1107,-7,0,1618,-12,0,0 +2013,5,30,4,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1010,-7,0,1258,-12,0,0 +2013,7,13,6,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,830,-5,0,1630,28,1,0 +2013,10,7,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1446,103,1,1505,99,1,0 +2013,9,12,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,36,1,1810,34,1,0 +2013,6,8,6,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,107,1,2308,61,1,0 +2013,6,1,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,0,0,1232,6,0,0 +2013,4,15,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2350,-2,0,550,-26,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,124,1,1625,157,1,0 +2013,9,8,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1456,-10,0,1847,-32,0,0 +2013,7,6,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,824,-3,0,1344,-7,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,1,0,2310,-26,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,720,-1,0,815,-3,0,0 +2013,6,2,7,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,545,-4,0,901,-5,0,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-9,0,1735,2,0,0 +2013,7,26,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-4,0,834,-7,0,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,-7,0,2200,-17,0,0 +2013,7,3,3,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,713,-10,0,901,-44,0,0 +2013,10,7,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1825,-1,0,2115,-11,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,855,-5,0,1104,-15,0,0 +2013,9,27,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2315,-10,0,750,-28,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1403,41,1,1541,22,1,0 +2013,10,12,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1925,-4,0,2039,-4,0,0 +2013,8,1,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,-2,0,2110,-7,0,0 +2013,8,4,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1246,79,1,1407,84,1,0 +2013,8,13,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,14,0,1003,19,1,0 +2013,6,1,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-5,0,1311,2,0,0 +2013,10,26,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-2,0,840,1,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,705,-5,0,937,2,0,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,740,-4,0,1110,-11,0,0 +2013,5,4,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,-7,0,2110,-22,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,24,1,2000,26,1,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1440,13,0,2000,20,1,0 +2013,8,1,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,3,0,1513,-11,0,0 +2013,7,2,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,-7,0,2135,-16,0,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1445,8,0,1730,-1,0,0 +2013,10,25,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,610,5,0,1130,1,0,0 +2013,8,20,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-4,0,905,-7,0,0 +2013,4,25,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1355,-2,0,1549,-9,0,0 +2013,8,18,7,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1210,-8,0,1401,-18,0,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1735,7,0,1900,26,1,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1907,42,1,2045,22,1,0 +2013,4,4,4,OO,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2154,-8,0,112,-23,0,0 +2013,7,7,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,920,-5,0,940,-22,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,730,-5,0,930,-25,0,0 +2013,9,21,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1306,-6,0,2100,5,0,0 +2013,4,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,810,8,0,1000,7,0,0 +2013,8,24,6,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1558,-6,0,1645,0,0,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,617,9,0,807,-2,0,0 +2013,8,13,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-5,0,1125,-13,0,0 +2013,4,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-6,0,1316,-2,0,0 +2013,9,12,4,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1743,-3,0,1910,-16,0,0 +2013,9,3,2,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1640,13,0,1730,6,0,0 +2013,9,26,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,-7,0,2249,-12,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2111,-3,0,2201,-9,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1951,-3,0,2128,-17,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,8,0,1915,7,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,735,1,0,1010,-25,0,0 +2013,5,7,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-12,0,1934,-30,0,0 +2013,6,21,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1610,2,0,1740,-1,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1155,-5,0,1435,-8,0,0 +2013,5,4,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1600,-2,0,1835,-2,0,0 +2013,8,12,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,78,1,809,75,1,0 +2013,8,12,1,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,705,0,0,755,-2,0,0 +2013,8,8,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1345,18,1,1505,13,0,0 +2013,8,18,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2105,31,1,2230,24,1,0 +2013,6,3,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1716,110,1,1835,122,1,0 +2013,10,29,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-7,0,2356,-3,0,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1700,-3,0,1911,-22,0,0 +2013,8,1,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2005,0,0,2115,9,0,0 +2013,7,14,7,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1600,-3,0,1705,-1,0,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,60,1,2210,67,1,0 +2013,8,10,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,-6,0,1915,-19,0,0 +2013,4,22,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1415,86,1,1700,72,1,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,825,1,0,935,-7,0,0 +2013,5,3,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1016,-8,0,1840,10,0,0 +2013,7,28,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-6,0,1918,-9,0,0 +2013,10,3,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1524,-1,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,900,2,0,1100,-1,0,0 +2013,10,31,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,642,-8,0,806,-4,0,0 +2013,8,27,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-4,0,1024,-8,0,0 +2013,9,18,3,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,827,-4,0,932,-10,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1150,-3,0,1310,-9,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,26,1,835,19,1,0 +2013,8,17,6,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,618,4,0,1433,6,0,0 +2013,4,6,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1120,-14,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,901,-2,0,1124,-1,0,0 +2013,4,24,3,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1122,32,1,1222,27,1,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1155,2,0,1437,-3,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1805,19,1,1900,7,0,0 +2013,4,30,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1505,-4,0,2340,-7,0,0 +2013,4,18,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1835,51,1,1930,32,1,0 +2013,4,11,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-5,0,1101,-8,0,0 +2013,9,29,7,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1706,-7,0,1914,-8,0,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,14,0,1415,3,0,0 +2013,6,13,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-9,0,1209,-17,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-4,0,2300,1,0,0 +2013,5,14,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1221,-17,0,0 +2013,7,21,7,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,40,1,1642,18,1,0 +2013,4,23,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,4,0,809,1,0,0 +2013,6,26,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,0,0,1850,-12,0,0 +2013,5,28,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,28,1,1245,17,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,12,0,1829,-10,0,0 +2013,7,11,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,857,-12,0,1004,-25,0,0 +2013,5,11,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-5,0,1835,12,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,0,0,2036,-11,0,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1015,-6,0,1605,1,0,0 +2013,10,14,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,13,0,1218,12,0,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-1,0,1601,6,0,0 +2013,7,27,6,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2110,-3,0,19,7,0,0 +2013,5,21,2,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1920,23,1,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,8,0,1925,-4,0,0 +2013,5,9,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2225,3,0,622,6,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1120,-2,0,1550,0,0,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1015,-3,0,1157,0,0,0 +2013,6,16,7,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1520,-2,0,1805,9,0,0 +2013,4,22,1,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1020,2,0,1140,-5,0,0 +2013,10,26,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,735,0,0,855,-7,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,1,0,1954,3,0,0 +2013,4,13,6,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,915,-4,0,1155,14,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-6,0,1155,-7,0,0 +2013,7,10,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,724,-3,0,1020,19,1,0 +2013,9,20,5,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,7,0,2134,-9,0,0 +2013,6,16,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,12,0,2128,-10,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1800,14,0,2150,3,0,0 +2013,9,1,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,830,-5,0,1719,-9,0,0 +2013,6,22,6,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1706,-7,0,1811,-8,0,0 +2013,10,13,7,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2013,11,0,2125,22,1,0 +2013,7,4,4,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,12,0,1710,0,0,0 +2013,6,15,6,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1817,-4,0,2108,-27,0,0 +2013,6,28,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2141,179,1,2359,148,1,0 +2013,5,25,6,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1052,6,0,1200,2,0,0 +2013,7,13,6,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,2,0,2150,-4,0,0 +2013,7,11,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-3,0,2046,-16,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2054,33,1,2358,15,1,0 +2013,4,23,2,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,2203,0,0,2348,0,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,9,0,1925,0,0,0 +2013,10,9,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2035,53,1,2210,45,1,0 +2013,9,5,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1800,14,0,2045,13,0,0 +2013,5,14,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1900,49,1,2050,25,1,0 +2013,4,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1305,41,1,1521,25,1,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1755,182,1,1948,175,1,0 +2013,10,9,3,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1545,25,1,1805,7,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1830,7,0,2105,10,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,919,0,0,1058,-7,0,0 +2013,10,3,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1945,-7,0,2150,0,0,0 +2013,9,12,4,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1210,-3,0,1325,-16,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1555,-1,0,1724,-16,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-4,0,1333,-15,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1817,-3,0,2052,-2,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1035,-3,0,1218,-18,0,0 +2013,5,30,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,955,-10,0,1244,-20,0,0 +2013,4,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1120,-3,0,1341,-8,0,0 +2013,7,17,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,4,0,1645,44,1,0 +2013,10,2,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1350,-6,0,1502,-15,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,-4,0,1348,-10,0,0 +2013,8,22,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,25,1,1200,27,1,0 +2013,6,1,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,822,-6,0,919,-6,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,843,15,1,1039,19,1,0 +2013,10,24,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1130,0,0,1346,-1,0,0 +2013,4,28,7,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,2,0,1735,-27,0,0 +2013,9,4,3,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1217,9,0,1336,1,0,0 +2013,5,1,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1620,-4,0,1900,-14,0,0 +2013,9,8,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1530,13,0,1540,4,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1705,61,1,1815,52,1,0 +2013,6,1,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1715,-1,0,1816,-15,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1230,38,1,1410,25,1,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-1,0,1100,-6,0,0 +2013,6,10,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1505,1,0,1917,6,0,0 +2013,8,22,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-3,0,1210,-5,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1925,-3,0,2302,-7,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1815,3,0,2135,-4,0,0 +2013,7,30,2,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1115,2,0,1244,3,0,0 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,605,0,0,855,-12,0,0 +2013,8,31,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-7,0,1023,-11,0,0 +2013,8,6,2,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,730,-6,0,745,-11,0,0 +2013,9,12,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1114,-7,0,1216,-3,0,0 +2013,10,18,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1725,-4,0,1900,-3,0,0 +2013,8,15,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1830,71,1,2130,57,1,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1910,-2,0,2040,-5,0,0 +2013,9,27,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,632,0,0,810,16,1,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,-2,0,2359,12,0,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-7,0,1315,0,0,0 +2013,6,10,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,96,1,2000,85,1,0 +2013,4,18,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,74,1,1755,65,1,0 +2013,6,14,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,725,-5,0,900,-3,0,0 +2013,9,12,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1030,-5,0,1245,-9,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1600,1,0,1737,11,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-9,0,1409,-1,0,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,845,-10,0,1029,-14,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,11,0,1824,12,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,4,0,930,6,0,0 +2013,7,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1715,21,1,1945,17,1,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,4,0,1325,-19,0,0 +2013,5,4,6,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1525,9,0,1710,-22,0,0 +2013,7,7,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,845,5,0,1010,3,0,0 +2013,8,11,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-5,0,645,-12,0,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,830,6,0,958,10,0,0 +2013,5,18,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1330,-3,0,1450,-12,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,755,-4,0,1055,-11,0,0 +2013,5,1,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1320,1,0,1345,-4,0,0 +2013,7,21,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,15,1,1735,9,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1131,-2,0,1257,-3,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2155,195,1,2335,191,1,0 +2013,9,13,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,0,0,1214,-1,0,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,624,-2,0,827,-28,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1955,24,1,2128,20,1,0 +2013,10,14,1,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-6,0,1531,-22,0,0 +2013,4,24,3,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-8,0,2015,1,0,0 +2013,5,11,6,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,655,-2,0,935,20,1,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1900,12,0,2330,-17,0,0 +2013,7,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,-1,0,1355,-5,0,0 +2013,9,3,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,-4,0,1148,-25,0,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,13,0,1535,0,0,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1614,-16,0,2200,-9,0,0 +2013,5,17,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2012,-5,0,2244,-41,0,0 +2013,7,23,2,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-3,0,2015,-13,0,0 +2013,4,7,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1130,-7,0,1429,-16,0,0 +2013,4,14,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-6,0,1315,-17,0,0 +2013,8,6,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1510,1,0,1640,-7,0,0 +2013,6,5,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,-3,0,2020,-10,0,0 +2013,7,31,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1747,13,0,2118,12,0,0 +2013,7,5,5,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1325,-1,0,1600,-16,0,0 +2013,4,9,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1840,223,1,2131,234,1,0 +2013,9,5,4,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1555,-5,0,1930,-4,0,0 +2013,8,8,4,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1050,-6,0,1217,-9,0,0 +2013,4,6,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1342,-6,0,1500,-5,0,0 +2013,5,18,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,-5,0,921,-13,0,0 +2013,5,12,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-8,0,1535,-8,0,0 +2013,6,3,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1105,5,0,1333,5,0,0 +2013,8,26,1,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-4,0,1815,-9,0,0 +2013,4,3,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,-3,0,1040,-11,0,0 +2013,7,17,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,45,1,1900,38,1,0 +2013,4,7,7,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1845,-6,0,2002,24,1,0 +2013,4,30,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,725,8,0,1013,5,0,0 +2013,5,29,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,645,4,0,837,9,0,0 +2013,5,6,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1433,-1,0,1611,-17,0,0 +2013,5,12,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1544,9,0,1700,-1,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1820,1,0,1945,13,0,0 +2013,6,3,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,905,-9,0,1201,-23,0,0 +2013,5,13,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1059,2,0,1329,-6,0,0 +2013,4,19,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1050,-3,0,1234,-17,0,0 +2013,10,1,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,-9,0,1310,-22,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,638,-5,0,853,40,1,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-3,0,1135,-22,0,0 +2013,6,2,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,604,-6,0,929,-17,0,0 +2013,5,4,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,-1,0,1420,-10,0,0 +2013,6,10,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,-8,0,1810,-20,0,0 +2013,6,9,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,712,-16,0,830,-23,0,0 +2013,5,10,5,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,18,1,2130,10,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1839,-7,0,2008,-34,0,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,-4,0,2017,-9,0,0 +2013,4,6,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1421,239,1,1522,244,1,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1650,3,0,1740,-2,0,0 +2013,10,5,6,UA,13830,Kahului Airport,Kahului,HI,11292,Denver International,Denver,CO,2140,-10,0,813,-9,0,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2105,35,1,2340,38,1,0 +2013,10,4,5,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1536,-5,0,1756,-7,0,0 +2013,9,12,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1630,164,1,1746,193,1,0 +2013,9,8,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,118,1,1957,107,1,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1900,-4,0,2212,-8,0,0 +2013,9,16,1,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2002,0,0,2209,-12,0,0 +2013,5,31,5,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1630,-3,0,1902,18,1,0 +2013,7,27,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-1,0,1919,0,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2205,72,1,2305,56,1,0 +2013,5,21,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-2,0,1115,-9,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-6,0,2245,-7,0,0 +2013,4,25,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-6,0,835,-9,0,0 +2013,6,1,6,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,-4,0,604,-19,0,0 +2013,9,22,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,755,-8,0,915,-21,0,0 +2013,7,18,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1653,-4,0,2200,-18,0,0 +2013,6,9,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-11,0,1233,-7,0,0 +2013,5,3,5,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-1,0,1630,-12,0,0 +2013,7,25,4,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,700,2,0,930,11,0,0 +2013,7,17,3,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1159,-6,0,1314,-18,0,0 +2013,7,14,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,-3,0,2025,-10,0,0 +2013,6,3,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,715,-3,0,1010,7,0,0 +2013,5,16,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-5,0,1916,-4,0,0 +2013,10,9,3,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1020,-4,0,1331,-5,0,0 +2013,10,24,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,600,-7,0,708,-18,0,0 +2013,10,28,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,44,1,2025,34,1,0 +2013,9,30,1,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2338,-9,0,718,-11,0,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1950,11,0,2240,17,1,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1120,-3,0,1245,-14,0,0 +2013,7,10,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,741,-6,0,854,-4,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1640,-2,0,1921,-6,0,0 +2013,4,28,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1231,-2,0,1511,-4,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1501,-2,0,1656,-12,0,0 +2013,7,19,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,755,-5,0,1011,-1,0,0 +2013,9,10,2,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,-5,0,1245,8,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1415,4,0,1640,-11,0,0 +2013,7,23,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,735,-3,0,0 +2013,5,17,5,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,805,-6,0,1640,-11,0,0 +2013,5,18,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-1,0,1537,12,0,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,-4,0,1004,-11,0,0 +2013,4,3,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,-6,0,2211,-19,0,0 +2013,4,3,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1530,3,0,1635,-6,0,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1339,43,1,1655,9,0,0 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1355,1,0,1621,4,0,0 +2013,6,28,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,720,-1,0,1025,1,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1425,-4,0,1555,-15,0,0 +2013,6,6,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,700,-10,0,816,-10,0,0 +2013,4,17,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1730,-7,0,1902,-22,0,0 +2013,5,2,4,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,65,1,2125,57,1,0 +2013,10,28,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1916,35,1,2117,17,1,0 +2013,9,10,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-5,0,1350,-15,0,0 +2013,6,1,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1414,-2,0,1543,4,0,0 +2013,10,16,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1605,-11,0,1755,0,0,0 +2013,8,2,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,6,0,1500,-9,0,0 +2013,7,28,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,0,0,2150,0,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1955,-8,0,2300,-20,0,0 +2013,10,11,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1504,1,0,1727,-17,0,0 +2013,9,16,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,1,0,1255,1,0,0 +2013,4,10,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,957,-15,0,0 +2013,5,31,5,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,8,0,2159,-23,0,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1842,110,1,2219,103,1,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-8,0,1156,-11,0,0 +2013,6,22,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1635,57,1,1755,43,1,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,1,0,1238,7,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,2059,72,1,30,67,1,0 +2013,4,18,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1547,13,0,1719,3,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,1,0,1320,-8,0,0 +2013,8,31,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,706,0,0,1052,4,0,0 +2013,9,30,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1455,-2,0,1630,-25,0,0 +2013,8,9,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1401,0,0,1451,-2,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,5,0,1640,8,0,0 +2013,6,14,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1601,-4,0,1747,19,1,0 +2013,5,3,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,923,-5,0,1046,-12,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-5,0,912,-5,0,0 +2013,5,10,5,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,14,0,2050,12,0,0 +2013,9,17,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1455,25,1,1810,10,0,0 +2013,7,7,7,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-4,0,500,-2,0,0 +2013,8,12,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,0,0,945,-1,0,0 +2013,8,4,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,1,0,1338,-1,0,0 +2013,9,9,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-5,0,1910,-17,0,0 +2013,4,4,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,804,-6,0,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1045,0,0,1210,4,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2035,22,1,2205,19,1,0 +2013,10,15,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-4,0,1436,-11,0,0 +2013,8,5,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,-2,0,1608,-10,0,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,615,-3,0,730,-6,0,0 +2013,8,17,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-9,0,1305,-20,0,0 +2013,10,15,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-1,0,2135,1,0,0 +2013,8,10,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,720,-2,0,750,-6,0,0 +2013,8,28,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,735,-5,0,825,-14,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,-4,0,1845,21,1,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,1,0,1630,-6,0,0 +2013,5,2,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,-1,0,1116,-3,0,0 +2013,5,26,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1900,2,0,2227,2,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2045,-1,0,2155,-11,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1757,-5,0,2004,-14,0,0 +2013,10,5,6,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,840,0,0,945,-2,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1254,4,0,1615,-5,0,0 +2013,10,7,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,830,-3,0,1059,-11,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1925,17,1,2215,-6,0,0 +2013,6,6,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1500,5,0,1741,-1,0,0 +2013,6,19,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,934,-2,0,1206,-10,0,0 +2013,4,30,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,-2,0,1330,-10,0,0 +2013,9,20,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1905,16,1,2015,14,0,0 +2013,5,22,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-1,0,1743,7,0,0 +2013,6,24,1,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1745,-5,0,2145,-20,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1905,5,0,2250,-11,0,0 +2013,6,24,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1229,-5,0,0 +2013,5,31,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1602,11,0,1744,12,0,0 +2013,6,19,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1805,0,0,1930,-4,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,8,0,1030,-7,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2130,8,0,25,21,1,0 +2013,7,6,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1100,-9,0,1356,-25,0,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1000,32,1,1245,56,1,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2110,111,1,5,107,1,0 +2013,10,22,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1115,-7,0,1334,-15,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,0,0,915,-6,0,0 +2013,7,19,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1335,9,0,1510,10,0,0 +2013,7,5,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-4,0,923,2,0,0 +2013,9,9,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,14,0,1701,7,0,0 +2013,5,9,4,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1817,28,1,2108,15,1,0 +2013,4,23,2,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,820,-4,0,930,12,0,0 +2013,5,3,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,-7,0,932,-8,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1056,3,0,1343,-3,0,0 +2013,10,12,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-6,0,2020,-5,0,0 +2013,5,21,2,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1200,-3,0,1313,-22,0,0 +2013,5,26,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1825,-3,0,2125,-12,0,0 +2013,7,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1121,-5,0,1235,-14,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1000,-3,0,1157,-6,0,0 +2013,8,30,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,0,0,1045,23,1,0 +2013,10,24,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1609,134,1,1732,132,1,0 +2013,8,31,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-12,0,2117,-20,0,0 +2013,4,17,3,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1425,9,0,1549,-6,0,0 +2013,5,8,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1235,0,,1358,0,1,1 +2013,8,7,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,4,0,830,2,0,0 +2013,8,9,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,20,-4,0,732,-9,0,0 +2013,10,9,3,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1925,-3,0,2010,7,0,0 +2013,6,22,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,20,1,2046,7,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-4,0,913,-16,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,22,1,2345,24,1,0 +2013,5,30,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,-7,0,2035,-10,0,0 +2013,7,23,2,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,740,42,1,1045,51,1,0 +2013,8,13,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-4,0,1538,17,1,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,0,0,1725,18,1,0 +2013,4,18,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1635,20,1,1740,12,0,0 +2013,8,25,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,1,0,1620,0,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,13,0,930,5,0,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1929,-5,0,2159,-31,0,0 +2013,4,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-6,0,1309,-11,0,0 +2013,7,8,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,13,0,1925,9,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1405,28,1,1750,71,1,0 +2013,7,3,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1340,106,1,1700,118,1,0 +2013,8,12,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,-11,0,1308,-12,0,0 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,3,0,1416,3,0,0 +2013,5,15,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,944,-4,0,1640,-17,0,0 +2013,5,4,6,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-4,0,717,-14,0,0 +2013,5,19,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,0,0,2119,1,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1440,291,1,1617,276,1,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,0,0,1150,0,0,0 +2013,5,24,5,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,77,1,1937,69,1,0 +2013,10,8,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-9,0,1658,-6,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,735,-3,0,1136,-13,0,0 +2013,7,14,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-2,0,1205,6,0,0 +2013,8,9,5,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-1,0,2145,-3,0,0 +2013,10,19,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,700,0,0,925,-4,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,605,-4,0,735,-3,0,0 +2013,7,30,2,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1409,-5,0,1645,-12,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-5,0,1229,-6,0,0 +2013,9,15,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,755,-2,0,855,5,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2050,-10,0,2226,-20,0,0 +2013,7,21,7,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1950,44,1,2149,72,1,0 +2013,9,8,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,748,3,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,18,1,2110,13,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1705,-6,0,2015,-9,0,0 +2013,7,30,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,555,-2,0,743,-20,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,0,0,1515,-8,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-1,0,847,7,0,0 +2013,9,8,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,-9,0,2112,0,0,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,630,0,0,955,-11,0,0 +2013,7,14,7,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1818,-8,0,2015,-55,0,0 +2013,10,25,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1740,-3,0,1900,0,0,0 +2013,7,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2055,-1,0,2215,-10,0,0 +2013,4,6,6,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1640,15,1,1945,2,0,0 +2013,5,8,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,925,-3,0,1205,-15,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1945,22,1,2140,7,0,0 +2013,4,27,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1625,5,0,1730,-6,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1110,-3,0,1230,-16,0,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1911,118,1,2110,114,1,0 +2013,6,8,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,625,-2,0,725,-3,0,0 +2013,6,2,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1440,-6,0,1650,-9,0,0 +2013,4,21,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,741,-5,0,1043,-39,0,0 +2013,6,16,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,700,-3,0,757,-12,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1610,17,1,1821,47,1,0 +2013,4,23,2,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1945,-6,0,2049,-24,0,0 +2013,6,19,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,22,1,840,21,1,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1745,-5,0,1907,-25,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1930,48,1,2030,50,1,0 +2013,9,6,5,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-8,0,1143,3,0,0 +2013,8,3,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1349,86,1,1936,60,1,0 +2013,5,4,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,50,1,2040,38,1,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1015,18,1,1230,11,0,0 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,-3,0,1855,-14,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-5,0,905,-7,0,0 +2013,6,15,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,11,0,2105,6,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,935,23,1,1220,15,1,0 +2013,9,7,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,808,-5,0,929,-8,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,-1,0,1057,0,0,0 +2013,8,18,7,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,905,-6,0,1125,-7,0,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,4,0,1632,0,0,0 +2013,4,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2040,52,1,2310,34,1,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-1,0,1737,-17,0,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2045,2,0,2330,3,0,0 +2013,8,5,1,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,1626,-15,0,0 +2013,6,6,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,20,1,1944,23,1,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1925,62,1,2230,46,1,0 +2013,7,2,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,54,1,1630,72,1,0 +2013,6,27,4,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,1,0,2042,-3,0,0 +2013,5,15,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,13,0,1916,39,1,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1315,8,0,1730,14,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,745,-6,0,915,1,0,0 +2013,6,22,6,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1045,5,0,1320,6,0,0 +2013,10,27,7,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,710,-2,0,945,-4,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,18,1,1415,18,1,0 +2013,9,30,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,600,-11,0,1415,-8,0,0 +2013,7,2,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,47,1,1530,48,1,0 +2013,9,3,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1630,23,1,1800,16,1,0 +2013,8,8,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-6,0,2150,5,0,0 +2013,8,13,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1730,0,0,1905,5,0,0 +2013,7,17,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1757,4,0,2005,38,1,0 +2013,7,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1409,-4,0,2030,17,1,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1920,115,1,133,115,1,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1925,12,0,2354,-1,0,0 +2013,7,31,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-4,0,1105,-9,0,0 +2013,6,21,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-8,0,2157,-4,0,0 +2013,9,1,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-10,0,1150,-22,0,0 +2013,10,19,6,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,-10,0,744,-36,0,0 +2013,9,13,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,907,73,1,1115,71,1,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-4,0,1305,-18,0,0 +2013,9,11,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,1820,0,0,2135,13,0,0 +2013,6,19,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1130,-10,0,1229,-7,0,0 +2013,9,1,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1705,2,0,1825,1,0,0 +2013,6,19,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1353,-6,0,1524,-18,0,0 +2013,4,5,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,2037,19,1,2145,23,1,0 +2013,9,15,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-4,0,857,-6,0,0 +2013,8,28,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,9,0,2216,-4,0,0 +2013,4,19,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,14,0,2100,27,1,0 +2013,10,29,2,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2121,-9,0,519,-7,0,0 +2013,7,22,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-1,0,1540,7,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1215,-4,0,1348,-11,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,-5,0,2154,-16,0,0 +2013,7,27,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-3,0,1735,-18,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,9,0,2329,7,0,0 +2013,8,19,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,843,-5,0,1044,-2,0,0 +2013,4,6,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1025,202,1,1115,194,1,0 +2013,9,30,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1215,-1,0,1315,1,0,0 +2013,8,26,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-5,0,1240,5,0,0 +2013,5,29,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1556,-11,0,1710,-21,0,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-2,0,2327,-12,0,0 +2013,7,12,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,745,-4,0,930,3,0,0 +2013,4,14,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1531,-2,0,1644,-11,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,905,49,1,1214,34,1,0 +2013,8,11,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2350,-4,0,720,-21,0,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1833,-7,0,2032,-20,0,0 +2013,5,13,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-6,0,1837,-17,0,0 +2013,5,15,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-3,0,1709,-11,0,0 +2013,8,2,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,1,0,2024,-8,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-4,0,1913,-3,0,0 +2013,7,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2104,-3,0,2359,-18,0,0 +2013,7,7,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,11,0,1214,6,0,0 +2013,7,9,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1935,58,1,2100,71,1,0 +2013,10,1,2,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-10,0,1750,-26,0,0 +2013,9,8,7,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,920,-12,0,1504,2,0,0 +2013,5,27,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-6,0,849,-4,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1750,4,0,1910,9,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,-9,0,2209,2,0,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,0,0,1615,-4,0,0 +2013,4,19,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1350,14,0,1652,7,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,-2,0,1635,-9,0,0 +2013,9,16,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1019,-2,0,1206,-9,0,0 +2013,8,23,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,745,16,1,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2130,2,0,2350,-2,0,0 +2013,10,23,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,0,0,2120,-18,0,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,-9,0,1912,-4,0,0 +2013,8,24,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1720,-2,0,1850,-24,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1440,-2,0,1713,-14,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2043,7,0,2348,-1,0,0 +2013,6,2,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1120,-7,0,1440,-17,0,0 +2013,10,22,2,EV,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,-3,0,1526,-5,0,0 +2013,6,18,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1219,56,1,1358,55,1,0 +2013,6,25,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,4,0,1016,6,0,0 +2013,8,9,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1416,5,0,1644,8,0,0 +2013,6,8,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1256,28,1,1655,8,0,0 +2013,5,12,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1555,-3,0,1655,-12,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,858,-6,0,1001,-15,0,0 +2013,8,25,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,-3,0,1838,-3,0,0 +2013,8,19,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,-1,0,2330,-13,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,620,0,0,1140,-13,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,16,1,2255,18,1,0 +2013,7,10,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,-7,0,2338,-11,0,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,-1,0,825,-2,0,0 +2013,4,8,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,935,-10,0,1055,-11,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2201,5,0,2324,-6,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1705,12,0,1855,14,0,0 +2013,10,4,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1715,0,0,1820,4,0,0 +2013,7,25,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,800,-3,0,935,13,0,0 +2013,7,26,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1305,23,1,1555,28,1,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1615,-8,0,1800,-13,0,0 +2013,7,29,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,3,0,1604,4,0,0 +2013,7,24,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1106,-15,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,640,-3,0,845,-5,0,0 +2013,5,24,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2040,55,1,2329,44,1,0 +2013,10,1,2,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,0,0,915,-3,0,0 +2013,10,5,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,-5,0,2112,-10,0,0 +2013,5,15,3,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1312,-3,0,1658,-19,0,0 +2013,7,7,7,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-5,0,1615,13,0,0 +2013,5,16,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1730,1,0,2050,-18,0,0 +2013,7,26,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1006,0,0,1314,7,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,-2,0,2241,-3,0,0 +2013,8,2,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1330,21,1,1410,16,1,0 +2013,4,19,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1259,58,1,1602,65,1,0 +2013,5,31,5,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1610,231,1,1807,211,1,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,11,0,2117,10,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,740,-2,0,840,-13,0,0 +2013,7,13,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1357,-6,0,1802,-3,0,0 +2013,10,10,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,10,0,1214,6,0,0 +2013,10,22,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1740,-2,0,1855,-4,0,0 +2013,10,19,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2245,-1,0,650,-16,0,0 +2013,4,20,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-6,0,1845,3,0,0 +2013,7,27,6,EV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,6,0,1305,3,0,0 +2013,6,13,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1350,9,0,1940,1,0,0 +2013,6,27,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2055,63,1,2250,46,1,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1320,1,0,1610,-5,0,0 +2013,4,13,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1740,-4,0,1815,-12,0,0 +2013,10,30,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-3,0,1256,-14,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1647,2,0,2238,-15,0,0 +2013,5,7,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,625,2,0,800,-10,0,0 +2013,9,1,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1650,-2,0,1815,-5,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1455,5,0,1555,5,0,0 +2013,9,14,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1731,-8,0,1817,-9,0,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,-3,0,1355,-6,0,0 +2013,10,9,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1920,-2,0,2011,5,0,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,935,-3,0,1200,4,0,0 +2013,6,18,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2055,19,1,450,7,0,0 +2013,5,5,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,718,-12,0,1023,-11,0,0 +2013,6,3,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-5,0,2100,0,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,600,0,0,745,18,1,0 +2013,7,5,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-12,0,1413,-11,0,0 +2013,4,2,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,605,-1,0,1350,-20,0,0 +2013,4,6,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-4,0,1014,-19,0,0 +2013,4,24,3,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,83,1,2230,95,1,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1146,21,1,1619,13,0,0 +2013,4,8,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-4,0,1430,-3,0,0 +2013,9,5,4,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1905,-11,0,2101,-21,0,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,-8,0,2141,-12,0,0 +2013,9,30,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,15,1,1820,-5,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,1415,15,1,2200,15,1,0 +2013,9,9,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,34,1,1650,44,1,0 +2013,6,5,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,121,1,2130,146,1,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,726,-1,0,846,8,0,0 +2013,7,16,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-2,0,1324,-4,0,0 +2013,5,3,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1804,-6,0,1935,-8,0,0 +2013,7,27,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1753,0,0,2015,-15,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,-2,0,2035,7,0,0 +2013,4,2,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1251,-9,0,1539,-14,0,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,-5,0,1626,-27,0,0 +2013,8,1,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,840,-5,0,1020,-25,0,0 +2013,9,16,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,-6,0,2120,-16,0,0 +2013,5,11,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,915,-5,0,1110,-10,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,900,13,0,1209,20,1,0 +2013,10,21,1,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1113,-3,0,1504,-12,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,925,3,0,1105,27,1,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1900,30,1,2100,42,1,0 +2013,7,20,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,-5,0,1815,-2,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1613,30,1,1736,18,1,0 +2013,5,29,3,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2018,37,1,2159,31,1,0 +2013,5,1,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1717,2,0,1959,-10,0,0 +2013,8,7,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,3,0,40,-16,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-3,0,1950,-24,0,0 +2013,5,16,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-8,0,2055,-18,0,0 +2013,7,12,5,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,-1,0,1904,-4,0,0 +2013,7,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1303,0,0,1445,-14,0,0 +2013,9,4,3,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1835,-8,0,2120,-5,0,0 +2013,10,31,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,14,0,1945,14,0,0 +2013,6,29,6,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1645,-2,0,2056,-14,0,0 +2013,5,8,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-5,0,1910,-14,0,0 +2013,6,19,3,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,951,-8,0,1314,-15,0,0 +2013,7,16,2,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1721,-3,0,1900,21,1,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,2005,-4,0,2357,2,0,0 +2013,4,7,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2245,-6,0,6,-13,0,0 +2013,6,23,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,232,1,1840,230,1,0 +2013,6,27,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-2,0,2058,28,1,0 +2013,6,18,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2105,17,1,2230,14,0,0 +2013,9,26,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1455,8,0,1630,-18,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1023,-3,0,1544,-11,0,0 +2013,7,21,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2049,28,1,2348,12,0,0 +2013,6,26,3,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2142,-4,0,610,0,0,0 +2013,10,7,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-5,0,18,-6,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,910,9,0,1140,-2,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2145,1,0,2251,4,0,0 +2013,9,21,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1131,19,1,1230,24,1,0 +2013,8,17,6,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-2,0,1600,-3,0,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,-5,0,1100,-14,0,0 +2013,10,14,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-1,0,700,12,0,0 +2013,4,18,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,2050,7,0,2245,-1,0,0 +2013,5,7,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2145,-5,0,2200,-18,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,0,,1542,0,1,1 +2013,8,26,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1515,31,1,1610,31,1,0 +2013,10,20,7,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,925,-1,0,1730,-11,0,0 +2013,8,8,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1345,7,0,1710,23,1,0 +2013,8,10,6,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,635,-1,0,745,-2,0,0 +2013,6,16,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1528,-6,0,1633,-17,0,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,11,0,1915,1,0,0 +2013,4,16,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-8,0,1112,-14,0,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,831,10,0,1007,4,0,0 +2013,7,7,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,-4,0,2230,-18,0,0 +2013,7,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,-4,0,1705,-11,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2155,0,0,2326,-10,0,0 +2013,10,5,6,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1326,2,0,1451,28,1,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,-2,0,1333,2,0,0 +2013,5,27,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-5,0,1130,-4,0,0 +2013,7,5,5,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1345,-7,0,1535,-24,0,0 +2013,4,9,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,801,-3,0,857,11,0,0 +2013,10,12,6,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1615,7,0,1755,5,0,0 +2013,8,1,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,1105,-11,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,9,0,2112,8,0,0 +2013,4,23,2,UA,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1937,-9,0,2120,-18,0,0 +2013,9,3,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,0,0,1939,14,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2150,9,0,2337,9,0,0 +2013,6,9,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1339,-4,0,1630,-23,0,0 +2013,4,14,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,-2,0,1635,-2,0,0 +2013,10,30,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1508,-3,0,1625,59,1,0 +2013,5,4,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,0,0,805,-8,0,0 +2013,10,12,6,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1020,12,0,1032,0,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1832,0,0,2300,-18,0,0 +2013,5,20,1,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2123,-7,0,555,6,0,0 +2013,4,28,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,615,39,1,748,29,1,0 +2013,8,9,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2130,134,1,2250,130,1,0 +2013,7,24,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,704,-2,0,805,-10,0,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1351,-5,0,1459,-12,0,0 +2013,7,27,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2245,115,1,135,115,1,0 +2013,4,28,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,7,0,1745,-1,0,0 +2013,10,4,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,750,-2,0,1115,1,0,0 +2013,5,10,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,12,0,1310,12,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,2010,-7,0,2230,-11,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1654,46,1,1928,31,1,0 +2013,4,2,2,EV,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1050,-7,0,1304,-17,0,0 +2013,10,25,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-14,0,2125,-3,0,0 +2013,7,20,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-4,0,558,1,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2156,0,0,2345,5,0,0 +2013,9,9,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1320,-4,0,1433,-11,0,0 +2013,7,29,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1615,-5,0,1755,3,0,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2145,13,0,2245,19,1,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1235,23,1,1825,8,0,0 +2013,10,29,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-4,0,2104,-8,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-10,0,1055,-8,0,0 +2013,9,13,5,DL,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,-6,0,1836,-21,0,0 +2013,4,19,5,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1110,7,0,1411,-2,0,0 +2013,7,14,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-7,0,1206,-13,0,0 +2013,7,19,5,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,22,1,1905,23,1,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1925,-3,0,2220,-4,0,0 +2013,6,8,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-1,0,801,-4,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1600,-3,0,1830,-6,0,0 +2013,5,6,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-8,0,1010,-19,0,0 +2013,8,19,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,0,,1655,0,1,1 +2013,5,14,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,-2,0,345,-28,0,0 +2013,10,3,4,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,645,0,0,750,0,0,0 +2013,7,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,5,0,1835,-4,0,0 +2013,8,13,2,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1110,-2,0,1229,-9,0,0 +2013,6,30,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1615,72,1,1944,90,1,0 +2013,10,30,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,2,0,720,2,0,0 +2013,10,30,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1800,1,0,1845,9,0,0 +2013,8,13,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1606,24,1,1909,21,1,0 +2013,10,11,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,841,1,0,949,-16,0,0 +2013,8,11,7,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1850,36,1,2030,29,1,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,825,-3,0,1323,-16,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-6,0,1044,-21,0,0 +2013,5,7,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-9,0,1004,-9,0,0 +2013,6,13,4,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,23,1,1445,20,1,0 +2013,4,10,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-9,0,1917,-20,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1405,4,0,1615,4,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2235,-2,0,2355,-13,0,0 +2013,9,1,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,-2,0,2254,-1,0,0 +2013,10,10,4,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1345,-2,0,1524,7,0,0 +2013,5,14,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1435,-9,0,1624,-12,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1625,11,0,1715,17,1,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,725,-4,0,953,-5,0,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,2,0,1844,3,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1215,-2,0,1320,-19,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1155,25,1,1545,-1,0,0 +2013,5,15,3,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,821,23,1,940,17,1,0 +2013,4,2,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1527,-2,0,0 +2013,9,4,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1840,-1,0,2000,-1,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,-2,0,1710,5,0,0 +2013,4,17,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1450,-5,0,1735,-19,0,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,4,0,2340,-6,0,0 +2013,7,17,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1553,93,1,1641,83,1,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,8,0,1543,8,0,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,-2,0,1630,-1,0,0 +2013,7,27,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,-4,0,1835,-2,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1020,-4,0,1133,-4,0,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-4,0,1115,-19,0,0 +2013,7,18,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1533,340,1,1834,329,1,0 +2013,10,10,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-1,0,1939,-8,0,0 +2013,10,15,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,1,0,904,9,0,0 +2013,4,16,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2054,29,1,2112,23,1,0 +2013,7,8,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,518,-5,0,554,-9,0,0 +2013,4,8,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2110,36,1,2235,31,1,0 +2013,10,29,2,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2120,-1,0,516,-3,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1915,5,0,2340,-7,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1015,3,0,1125,0,0,0 +2013,7,11,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1112,78,1,1520,102,1,0 +2013,4,11,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1455,0,0,2329,-9,0,0 +2013,9,14,6,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1230,-3,0,1450,-32,0,0 +2013,8,26,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,730,-3,0,900,-9,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2140,-10,0,2354,-24,0,0 +2013,4,11,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,1,0,2020,56,1,0 +2013,9,4,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1505,-1,0,1737,-12,0,0 +2013,6,17,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-2,0,1920,-6,0,0 +2013,9,8,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-1,0,2013,23,1,0 +2013,7,13,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1144,28,1,1240,22,1,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-3,0,1322,-6,0,0 +2013,10,27,7,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-4,0,815,-8,0,0 +2013,10,6,7,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,935,-4,0,1115,-16,0,0 +2013,8,27,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,805,-6,0,1045,-24,0,0 +2013,7,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1505,-2,0,1600,-1,0,0 +2013,5,24,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,-1,0,1535,-1,0,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,930,9,0,1110,-21,0,0 +2013,9,11,3,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1005,-2,0,1310,-1,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1210,-4,0,1315,13,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,10,0,2220,-1,0,0 +2013,9,13,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1330,-4,0,1631,-6,0,0 +2013,9,12,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-6,0,1044,-5,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1915,3,0,2211,-6,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1725,-4,0,2016,-23,0,0 +2013,7,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,-6,0,2055,-14,0,0 +2013,5,8,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1627,4,0,1749,-5,0,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,-2,0,923,-8,0,0 +2013,8,27,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,847,-10,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2100,22,1,2243,11,0,0 +2013,10,28,1,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1050,-4,0,1200,0,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,820,-16,0,0 +2013,5,3,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1237,10,0,2108,6,0,0 +2013,8,29,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,-4,0,2030,-6,0,0 +2013,10,25,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1910,25,1,2025,23,1,0 +2013,10,27,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1125,-3,0,1420,-18,0,0 +2013,6,7,5,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,839,-3,0,1020,-14,0,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,71,1,2107,70,1,0 +2013,8,27,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-5,0,1117,-12,0,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,846,-1,0,1119,-2,0,0 +2013,5,8,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1955,-2,0,2107,-4,0,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1155,-4,0,1415,-29,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1040,5,0,1315,10,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1530,-5,0,1755,-7,0,0 +2013,4,30,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2001,-16,0,2136,-16,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-4,0,1507,-11,0,0 +2013,5,5,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1531,1,0,1629,-12,0,0 +2013,6,22,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,6,0,955,-6,0,0 +2013,10,11,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,710,0,0,1045,-8,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,26,1,2159,11,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,847,3,0,1109,-42,0,0 +2013,10,25,5,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1835,-1,0,2146,-28,0,0 +2013,10,25,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,0,0,1322,-16,0,0 +2013,10,2,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1320,12,0,1455,11,0,0 +2013,8,26,1,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2043,-5,0,2208,-11,0,0 +2013,5,17,5,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1040,0,0,1155,4,0,0 +2013,4,27,6,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1840,1,0,2120,6,0,0 +2013,10,3,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,940,-4,0,1129,-3,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,4,0,1653,34,1,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,47,1,2303,26,1,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1525,106,1,1650,106,1,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1501,1,0,1536,-13,0,0 +2013,4,3,3,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,915,-6,0,1205,-11,0,0 +2013,8,25,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1140,-3,0,1445,19,1,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,822,-1,0,1320,4,0,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1829,2,0,2055,-11,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1610,3,0,1720,-14,0,0 +2013,4,20,6,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1929,-3,0,2053,-9,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,0,0,1443,2,0,0 +2013,5,28,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1910,46,1,2126,35,1,0 +2013,5,2,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2112,-5,0,2243,2,0,0 +2013,9,15,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,-4,0,1553,-1,0,0 +2013,5,27,1,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1136,-10,0,1300,-20,0,0 +2013,9,10,2,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,7,0,856,-27,0,0 +2013,8,2,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,18,1,1755,-12,0,0 +2013,6,25,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,705,-3,0,1519,33,1,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,3,0,1155,14,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1430,7,0,1750,-5,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-4,0,1115,-3,0,0 +2013,10,22,2,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1255,7,0,1510,-8,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,830,-3,0,1035,-6,0,0 +2013,7,14,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-12,0,955,-14,0,0 +2013,9,12,4,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1615,95,1,1801,127,1,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-5,0,1759,-10,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-4,0,1000,-4,0,0 +2013,10,8,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1545,-1,0,1605,-4,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,615,0,0,830,7,0,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,-5,0,1143,59,1,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1641,-2,0,1719,-14,0,0 +2013,10,29,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,700,0,0,815,-5,0,0 +2013,7,4,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-7,0,905,-12,0,0 +2013,7,2,2,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,7,0,1908,4,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1450,5,0,1550,-1,0,0 +2013,10,27,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,625,2,0,920,-8,0,0 +2013,7,28,7,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1659,-3,0,1853,-11,0,0 +2013,6,7,5,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,145,-11,0,659,-2,0,0 +2013,5,14,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,547,-6,0,845,-8,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1905,-5,0,2050,-14,0,0 +2013,10,18,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,540,-3,0,900,4,0,0 +2013,10,11,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,711,-6,0,1015,-2,0,0 +2013,5,26,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,755,7,0,917,2,0,0 +2013,9,4,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,-9,0,2050,-14,0,0 +2013,9,30,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,1325,-19,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1950,-4,0,2310,-13,0,0 +2013,8,13,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,950,1,0,1149,26,1,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,13,0,1415,5,0,0 +2013,6,13,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,5,0,1555,-4,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-1,0,1405,0,0,0 +2013,5,20,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2048,22,1,2303,69,1,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,935,27,1,1055,25,1,0 +2013,6,2,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1636,2,0,1900,-10,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1434,-5,0,1549,-11,0,0 +2013,9,22,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,13,0,1000,-8,0,0 +2013,5,25,6,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,703,4,0,900,-11,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,-1,0,2047,-2,0,0 +2013,6,1,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,725,-2,0,900,-13,0,0 +2013,6,25,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1412,7,0,1705,66,1,0 +2013,5,25,6,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,-6,0,1341,-1,0,0 +2013,5,7,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1640,-1,0,1850,-9,0,0 +2013,10,15,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-3,0,1322,-4,0,0 +2013,10,19,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,800,0,0,1029,-17,0,0 +2013,6,10,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-5,0,744,-8,0,0 +2013,8,14,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,1,0,1630,-2,0,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1137,-2,0,1349,-9,0,0 +2013,6,12,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,0,,545,0,1,1 +2013,10,2,3,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,715,-12,0,835,-13,0,0 +2013,5,10,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,41,1,1300,32,1,0 +2013,10,19,6,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-1,0,1755,-3,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1505,-1,0,1620,26,1,0 +2013,9,25,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1000,-7,0,1247,-11,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1600,-3,0,1713,-7,0,0 +2013,10,24,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,735,-7,0,905,-5,0,0 +2013,9,26,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,-5,0,2036,-18,0,0 +2013,9,10,2,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-4,0,2056,-12,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1341,82,1,1516,80,1,0 +2013,4,7,7,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1934,13,0,2103,2,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,910,-5,0,1030,-8,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-2,0,1909,0,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1325,2,0,1545,-4,0,0 +2013,8,15,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,-7,0,1815,-24,0,0 +2013,6,30,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,10,0,1613,38,1,0 +2013,8,25,7,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-1,0,2145,-49,0,0 +2013,4,6,6,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,805,5,0,938,12,0,0 +2013,4,16,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-7,0,1244,-12,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,4,0,1955,-3,0,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1901,18,1,30,11,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,1,0,2212,-3,0,0 +2013,4,22,1,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1458,-1,0,1620,-2,0,0 +2013,5,31,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-5,0,920,-16,0,0 +2013,9,13,5,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1030,-5,0,1311,-8,0,0 +2013,8,16,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,810,-4,0,925,5,0,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1847,-5,0,2017,2,0,0 +2013,7,19,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1755,98,1,1930,121,1,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1555,55,1,2040,49,1,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,104,1,1155,84,1,0 +2013,6,18,2,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,815,5,0,1011,5,0,0 +2013,5,5,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,-10,0,943,-19,0,0 +2013,7,14,7,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2150,15,1,2259,23,1,0 +2013,7,22,1,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-5,0,935,-1,0,0 +2013,7,30,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1938,46,1,130,38,1,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-6,0,1031,-6,0,0 +2013,8,29,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-5,0,1247,-11,0,0 +2013,4,11,4,EV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1446,-4,0,1624,-17,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,14,0,1924,6,0,0 +2013,4,21,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1757,-7,0,1855,1,0,0 +2013,6,25,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1808,0,,1830,0,1,1 +2013,10,28,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1708,3,0,2230,4,0,0 +2013,7,6,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,605,-7,0,740,-11,0,0 +2013,7,13,6,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1753,47,1,1900,35,1,0 +2013,5,3,5,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1233,-8,0,1445,-20,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1430,10,0,1620,7,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1050,6,0,1515,3,0,0 +2013,9,30,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-3,0,1904,-8,0,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1520,1,0,1640,-19,0,0 +2013,5,20,1,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,841,-5,0,1032,-4,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1215,-1,0,1420,-8,0,0 +2013,9,26,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1544,-6,0,1650,-14,0,0 +2013,10,24,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,11,0,1738,0,0,0 +2013,7,18,4,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1945,9,0,2130,-2,0,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,39,1,2240,53,1,0 +2013,10,25,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1330,-4,0,1500,-6,0,0 +2013,5,8,3,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1825,5,0,2146,13,0,0 +2013,7,18,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-2,0,1213,-10,0,0 +2013,10,25,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,840,9,0,1110,15,1,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,24,1,1247,20,1,0 +2013,4,26,5,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,-8,0,1854,-19,0,0 +2013,8,25,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2316,-9,0,505,-27,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1750,45,1,1910,38,1,0 +2013,8,20,2,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2350,3,0,548,15,1,0 +2013,10,23,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-8,0,1435,-15,0,0 +2013,5,31,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,37,1,1200,30,1,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,-3,0,1930,-9,0,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-1,0,933,-9,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1315,139,1,1800,135,1,0 +2013,6,21,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1559,2,0,1727,-5,0,0 +2013,5,11,6,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,32,1,1940,24,1,0 +2013,5,3,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-7,0,1828,-10,0,0 +2013,6,14,5,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-3,0,1349,-2,0,0 +2013,6,11,2,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1640,18,1,1903,5,0,0 +2013,6,1,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,8,0,1530,-3,0,0 +2013,5,7,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1610,38,1,1804,23,1,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,935,0,0,1215,-18,0,0 +2013,10,6,7,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,821,-4,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,9,0,1410,17,1,0 +2013,8,12,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1059,60,1,1637,51,1,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1310,-5,0,1520,-11,0,0 +2013,5,2,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,625,12,0,800,7,0,0 +2013,5,26,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1310,-2,0,1553,-3,0,0 +2013,4,18,4,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2159,136,1,2302,125,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,-3,0,1256,-17,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-6,0,2151,-16,0,0 +2013,4,20,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1540,31,1,1625,18,1,0 +2013,8,21,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1543,-2,0,2359,8,0,0 +2013,9,28,6,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,19,1,1235,4,0,0 +2013,6,6,4,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,4,0,655,5,0,0 +2013,7,8,1,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1243,18,1,1348,13,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1729,2,0,2045,-37,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1901,2,0,2313,12,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1043,12,0,1528,-2,0,0 +2013,5,18,6,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1900,-4,0,2210,-5,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,805,1,0,1245,0,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,-4,0,1314,11,0,0 +2013,5,8,3,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1250,-2,0,2114,-21,0,0 +2013,8,21,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1310,7,0,1632,4,0,0 +2013,5,28,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,3,0,1445,23,1,0 +2013,9,17,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,0,0,1100,-17,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,815,-3,0,1029,-16,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2105,-1,0,2340,-11,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1551,22,1,1659,16,1,0 +2013,8,13,2,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,145,-1,0,733,-23,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-5,0,1230,-3,0,0 +2013,9,22,7,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1625,95,1,1844,75,1,0 +2013,7,1,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,714,13,0,1046,4,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1935,7,0,2250,-3,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,-2,0,1442,-20,0,0 +2013,7,7,7,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1245,1,0,1454,-10,0,0 +2013,7,7,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,2205,-12,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,720,1,0,855,-11,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1610,-1,0,1740,-11,0,0 +2013,8,1,4,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1620,10,0,1805,15,1,0 +2013,8,29,4,EV,14307,Theodore Francis Green State,Providence,RI,11042,Cleveland-Hopkins International,Cleveland,OH,600,-3,0,758,-13,0,0 +2013,9,6,5,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,-9,0,1826,-34,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1620,5,0,1738,43,1,0 +2013,7,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-12,0,847,-14,0,0 +2013,4,2,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1440,2,0,1555,-7,0,0 +2013,8,28,3,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1309,35,1,1534,32,1,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1905,12,0,55,-5,0,0 +2013,9,18,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,955,-9,0,1250,0,0,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1550,1,0,1748,70,1,0 +2013,4,30,2,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-7,0,1918,-12,0,0 +2013,6,27,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,1,0,636,-3,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,3,0,1256,-9,0,0 +2013,6,11,2,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,18,1,1033,6,0,0 +2013,8,26,1,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1002,19,1,1225,20,1,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,-5,0,2303,-18,0,0 +2013,4,17,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1012,-6,0,1303,-18,0,0 +2013,5,8,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,806,-6,0,1057,-29,0,0 +2013,7,13,6,FL,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1025,-3,0,1302,-15,0,0 +2013,5,4,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,15,1,1724,88,1,0 +2013,4,12,5,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,0,0,1040,-16,0,0 +2013,10,24,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-5,0,1511,4,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2005,0,0,2154,-6,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2020,0,0,2225,-2,0,0 +2013,10,30,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,945,-9,0,1230,9,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,610,0,0,934,-10,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,0,,2130,0,1,1 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1415,-1,0,1649,-4,0,0 +2013,10,8,2,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,2,0,1605,-3,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,93,1,1542,81,1,0 +2013,8,4,7,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1941,45,1,2145,48,1,0 +2013,9,11,3,EV,13871,Eppley Airfield,Omaha,NE,12953,LaGuardia,New York,NY,702,-9,0,1059,-22,0,0 +2013,8,7,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1323,-4,0,1442,-12,0,0 +2013,5,16,4,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1449,-8,0,1550,3,0,0 +2013,7,26,5,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-7,0,1200,1,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,0,0,2120,-1,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,1,0,1926,-8,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1205,-2,0,1402,-12,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,0,0,1050,-3,0,0 +2013,6,5,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1513,-3,0,2204,8,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,7,0,859,-7,0,0 +2013,9,1,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,956,77,1,1556,76,1,0 +2013,4,6,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1250,77,1,1450,71,1,0 +2013,5,23,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-1,0,651,8,0,0 +2013,5,18,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,625,-3,0,935,-16,0,0 +2013,6,20,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1250,22,1,1825,17,1,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2303,47,1,15,30,1,0 +2013,10,2,3,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1145,-1,0,1240,-5,0,0 +2013,9,8,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,708,-5,0,840,-11,0,0 +2013,5,12,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,13,0,1253,-25,0,0 +2013,4,28,7,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,840,-7,0,1435,-31,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1323,-7,0,1722,71,1,0 +2013,8,18,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1856,9,0,2009,12,0,0 +2013,6,4,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,6,0,1828,6,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,0,0,1819,4,0,0 +2013,7,17,3,DL,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-2,0,1110,-11,0,0 +2013,7,2,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,-2,0,929,-8,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1154,7,0,1340,-16,0,0 +2013,8,17,6,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,815,1,0,1000,-6,0,0 +2013,4,4,4,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,555,-5,0,824,-9,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,-5,0,2244,-13,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1405,0,0,1500,3,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1814,-8,0,2109,-24,0,0 +2013,5,13,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-6,0,2042,-15,0,0 +2013,9,9,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,4,0,820,-1,0,0 +2013,5,9,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1530,-4,0,1647,-24,0,0 +2013,9,2,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1850,0,,2055,0,1,1 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1050,15,1,1826,-14,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1305,-1,0,1430,-14,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,-4,0,1728,-31,0,0 +2013,9,19,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,625,-4,0,725,-7,0,0 +2013,8,2,5,EV,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1849,-5,0,2005,-12,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,845,-11,0,1029,-16,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,0,0,1623,-8,0,0 +2013,10,11,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,758,-4,0,1551,8,0,0 +2013,9,5,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,14,0,617,13,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,-1,0,2259,-17,0,0 +2013,5,28,2,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,15,1,1550,17,1,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,69,1,2300,70,1,0 +2013,4,9,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-3,0,1840,-5,0,0 +2013,10,15,2,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1730,-6,0,2015,-3,0,0 +2013,7,24,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-5,0,1258,18,1,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1159,5,0,1326,8,0,0 +2013,8,13,2,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,12,0,1348,6,0,0 +2013,10,25,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1856,1,0,2110,-11,0,0 +2013,4,26,5,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-9,0,908,-4,0,0 +2013,4,30,2,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1550,-2,0,1905,-14,0,0 +2013,10,25,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-2,0,2145,-21,0,0 +2013,5,22,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,605,17,1,710,2,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,849,-3,0,1031,-20,0,0 +2013,9,10,2,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1620,36,1,1935,17,1,0 +2013,8,25,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1156,20,1,1654,14,0,0 +2013,8,22,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,109,1,929,119,1,0 +2013,4,24,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2010,110,1,2248,92,1,0 +2013,9,10,2,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,45,1,2140,46,1,0 +2013,6,20,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,3,0,1357,-7,0,0 +2013,4,17,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1855,-5,0,2032,7,0,0 +2013,8,22,4,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,70,1,2126,72,1,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1125,-4,0,1445,-23,0,0 +2013,4,28,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1135,-1,0,1300,-18,0,0 +2013,4,18,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1725,30,1,1851,24,1,0 +2013,8,16,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,759,12,0,0 +2013,5,15,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,845,1,0,1156,-21,0,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1003,-5,0,1559,-3,0,0 +2013,10,15,2,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1117,5,0,1235,3,0,0 +2013,6,2,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,47,1,1410,51,1,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-6,0,1508,-2,0,0 +2013,10,11,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1235,5,0,1320,3,0,0 +2013,8,22,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,122,1,1705,116,1,0 +2013,6,5,3,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1735,16,1,2145,-6,0,0 +2013,6,9,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,929,22,1,1146,5,0,0 +2013,7,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,855,5,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,-1,0,1627,-18,0,0 +2013,4,16,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1529,-10,0,1647,3,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1235,284,1,1450,298,1,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,3,0,1300,1,0,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1935,-3,0,2250,-19,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,51,1,2025,54,1,0 +2013,10,29,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,840,-1,0,1110,-7,0,0 +2013,4,4,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-1,0,1628,-17,0,0 +2013,8,3,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,-2,0,1945,-14,0,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,950,-3,0,1218,-16,0,0 +2013,6,25,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1511,0,0,1722,-9,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1237,-3,0,1508,1,0,0 +2013,4,2,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,-4,0,1900,-25,0,0 +2013,10,11,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-3,0,2350,-3,0,0 +2013,9,8,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1316,-10,0,1429,13,0,0 +2013,7,14,7,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,109,1,712,95,1,0 +2013,4,5,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1858,-9,0,2022,-12,0,0 +2013,6,9,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,1,0,845,-5,0,0 +2013,10,16,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-4,0,1220,6,0,0 +2013,8,13,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1712,2,0,2043,2,0,0 +2013,6,18,2,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,945,0,0,1145,-2,0,0 +2013,10,6,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1025,-8,0,1159,-9,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,11,0,1500,3,0,0 +2013,6,12,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,900,-8,0,1040,-16,0,0 +2013,5,18,6,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,1305,11,0,0 +2013,9,10,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,825,-1,0,945,-4,0,0 +2013,7,31,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2130,2,0,15,-12,0,0 +2013,5,15,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,645,-3,0,810,-11,0,0 +2013,5,24,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1620,-4,0,2030,-19,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,58,1,2004,89,1,0 +2013,10,27,7,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,732,69,1,954,116,1,0 +2013,10,5,6,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1445,-6,0,1605,-21,0,0 +2013,5,18,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,855,7,0,1110,7,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-6,0,957,-14,0,0 +2013,8,4,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2000,2,0,2135,4,0,0 +2013,9,15,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,0,0,540,-1,0,0 +2013,4,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2018,-5,0,2334,-5,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,2130,-4,0,2335,1,0,0 +2013,7,23,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1224,-17,0,0 +2013,8,25,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,855,-4,0,955,-8,0,0 +2013,8,24,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-8,0,1315,1,0,0 +2013,6,6,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,-5,0,1130,10,0,0 +2013,5,1,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,-5,0,1310,-6,0,0 +2013,5,8,3,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1855,-7,0,2350,-4,0,0 +2013,8,3,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1139,-15,0,1225,-16,0,0 +2013,5,16,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1345,-3,0,1709,-14,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1800,-5,0,1920,-13,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,0,,1015,0,1,1 +2013,7,15,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1747,9,0,2026,-5,0,0 +2013,9,1,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-4,0,1259,-9,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1236,0,0,1830,1,0,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,61,1,1915,53,1,0 +2013,8,23,5,EV,12264,Washington Dulles International,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1240,-3,0,1353,6,0,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,-4,0,1710,-12,0,0 +2013,8,29,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2125,-1,0,20,-13,0,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1905,14,0,2145,6,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1945,-3,0,2345,-22,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1455,0,0,1641,-13,0,0 +2013,5,4,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-5,0,541,-5,0,0 +2013,8,27,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1249,-1,0,1430,-7,0,0 +2013,6,24,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,845,0,0,1230,-7,0,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1940,-2,0,2035,-4,0,0 +2013,7,15,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-8,0,1014,-17,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,745,18,1,840,8,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1158,-6,0,1316,-25,0,0 +2013,8,17,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,-4,0,919,-10,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,-1,0,1125,5,0,0 +2013,9,18,3,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1643,-10,0,1815,-15,0,0 +2013,5,16,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,846,1,0,1058,-1,0,0 +2013,8,5,1,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1509,-3,0,1620,4,0,0 +2013,4,21,7,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1930,122,1,2159,84,1,0 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1657,24,1,1928,9,0,0 +2013,7,13,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-6,0,957,-23,0,0 +2013,10,19,6,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1459,-9,0,1646,16,1,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2029,47,1,2333,92,1,0 +2013,7,12,5,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1748,54,1,2114,55,1,0 +2013,8,9,5,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1404,29,1,1859,33,1,0 +2013,8,19,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,5,0,1018,18,1,0 +2013,9,18,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,6,0,2056,13,0,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,2,0,1500,-6,0,0 +2013,10,3,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,-1,0,1005,-13,0,0 +2013,10,28,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,800,-7,0,905,-9,0,0 +2013,9,14,6,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1359,-1,0,1743,-3,0,0 +2013,6,14,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1737,80,1,2047,67,1,0 +2013,10,22,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1106,-5,0,1635,-16,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2301,5,0,2326,3,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1320,3,0,1705,0,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,845,0,0,1348,3,0,0 +2013,7,15,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,0,0,820,-8,0,0 +2013,7,30,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,0,0,1856,5,0,0 +2013,6,1,6,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-1,0,1305,-14,0,0 +2013,10,18,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1730,9,0,1840,5,0,0 +2013,10,8,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,4,0,1540,0,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1150,41,1,1310,47,1,0 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,-5,0,2359,-4,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,7,0,831,2,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1910,22,1,20,4,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,0,0,1346,9,0,0 +2013,8,7,3,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,26,1,1520,28,1,0 +2013,4,18,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1618,44,1,1733,70,1,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,943,-10,0,0 +2013,4,10,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,13,0,1955,1,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,900,-4,0,1120,-26,0,0 +2013,9,16,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-1,0,810,-3,0,0 +2013,9,23,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,7,0,1320,-6,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1920,94,1,2200,77,1,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,805,-2,0,1043,-12,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,3,0,1319,-7,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,7,0,1214,-7,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1120,21,1,1530,88,1,0 +2013,6,13,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,925,1,0,1220,78,1,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1815,9,0,1957,20,1,0 +2013,7,25,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-6,0,2035,-12,0,0 +2013,5,12,7,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1547,0,0,1814,-17,0,0 +2013,9,17,2,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1800,39,1,1950,25,1,0 +2013,7,15,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-7,0,1054,-20,0,0 +2013,4,5,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-4,0,2122,-12,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1615,9,0,1715,2,0,0 +2013,8,4,7,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1156,3,0,1312,5,0,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,645,-2,0,925,25,1,0 +2013,6,11,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2133,-10,0,2205,-7,0,0 +2013,9,24,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-4,0,1101,-5,0,0 +2013,6,10,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1124,0,0,1237,-8,0,0 +2013,8,17,6,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,900,-2,0,1105,-5,0,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1300,58,1,1410,56,1,0 +2013,4,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13232,Chicago Midway International,Chicago,IL,845,65,1,1440,37,1,0 +2013,6,27,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1050,85,1,1220,78,1,0 +2013,8,26,1,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,758,-15,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1715,19,1,1840,30,1,0 +2013,10,30,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-2,0,2145,-10,0,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1010,22,1,1140,11,0,0 +2013,5,18,6,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,615,6,0,909,1,0,0 +2013,10,28,1,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,0,0,927,-11,0,0 +2013,8,6,2,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1525,109,1,1757,103,1,0 +2013,7,22,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-4,0,930,3,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,-7,0,1004,-16,0,0 +2013,7,20,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-4,0,1259,-20,0,0 +2013,4,9,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-5,0,1405,-2,0,0 +2013,8,23,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1910,8,0,2240,15,1,0 +2013,10,21,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2017,-8,0,2107,-5,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,87,1,1540,138,1,0 +2013,7,14,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,-1,0,1155,-1,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1727,2,0,1821,-12,0,0 +2013,7,9,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1310,-3,0,1345,11,0,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,96,1,1935,74,1,0 +2013,7,31,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,819,46,1,930,38,1,0 +2013,7,21,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-4,0,1305,-17,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,735,-2,0,835,0,0,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1001,-4,0,1129,-19,0,0 +2013,9,26,4,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,1,0,1820,-20,0,0 +2013,9,13,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,-2,0,2355,-11,0,0 +2013,9,30,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,-5,0,1125,-7,0,0 +2013,10,29,2,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,0,0,1205,3,0,0 +2013,8,7,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-1,0,1228,-5,0,0 +2013,9,23,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-4,0,1853,-3,0,0 +2013,9,1,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,8,0,1620,1,0,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,755,49,1,845,42,1,0 +2013,8,21,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2018,0,0,2041,-2,0,0 +2013,8,19,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-6,0,2105,-5,0,0 +2013,5,4,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-12,0,1639,-15,0,0 +2013,4,3,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-9,0,2046,-28,0,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2347,0,0,811,-21,0,0 +2013,6,26,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,17,1,1635,99,1,0 +2013,5,8,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1135,-1,0,1340,-2,0,0 +2013,10,19,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-4,0,1100,-3,0,0 +2013,9,21,6,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-10,0,805,-21,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1025,-1,0,1250,7,0,0 +2013,10,7,1,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1038,-4,0,1210,-18,0,0 +2013,10,30,3,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1611,-7,0,1900,2,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,940,-5,0,1035,-10,0,0 +2013,7,23,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,14,0,1630,61,1,0 +2013,9,22,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1520,0,0,1711,-1,0,0 +2013,7,31,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1716,-10,0,1720,-15,0,0 +2013,10,7,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,640,16,1,745,14,0,0 +2013,4,10,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-3,0,1115,16,1,0 +2013,9,21,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-5,0,848,-4,0,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-6,0,2237,-15,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1056,-4,0,1300,3,0,0 +2013,8,24,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,10,0,1525,11,0,0 +2013,9,4,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,-2,0,2345,2,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1918,0,0,2050,57,1,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1251,4,0,1545,1,0,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,-3,0,2330,-21,0,0 +2013,9,17,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1335,1,0,1605,-12,0,0 +2013,5,11,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1515,-5,0,1710,0,0,0 +2013,6,26,3,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1655,3,0,1742,53,1,0 +2013,4,29,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1345,13,0,1541,0,0,0 +2013,9,1,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-8,0,1015,-30,0,0 +2013,4,27,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,710,-1,0,945,-6,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1100,64,1,1417,68,1,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,-4,0,2215,-7,0,0 +2013,10,5,6,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1103,-18,0,1248,-28,0,0 +2013,6,14,5,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,-3,0,1230,-29,0,0 +2013,7,16,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,15,1,1839,-1,0,0 +2013,7,25,4,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-3,0,1634,-4,0,0 +2013,4,30,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,43,1,1850,36,1,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1045,17,1,1655,12,0,0 +2013,10,20,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1640,0,0,1730,-3,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1545,2,0,2030,-15,0,0 +2013,8,26,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-2,0,740,-13,0,0 +2013,9,16,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,650,-1,0,908,4,0,0 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1455,-2,0,1742,-35,0,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1405,6,0,2229,-17,0,0 +2013,9,28,6,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1835,-3,0,2010,-1,0,0 +2013,6,28,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,2,0,1140,-1,0,0 +2013,4,14,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,607,-5,0,906,-30,0,0 +2013,4,7,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1250,-1,0,1645,-2,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,16,1,1901,9,0,0 +2013,8,17,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1605,13,0,1715,13,0,0 +2013,10,7,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1220,8,0,1337,-11,0,0 +2013,6,27,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,-5,0,937,2,0,0 +2013,7,19,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,10,0,1955,15,1,0 +2013,4,9,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1010,3,0,1244,-15,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1725,64,1,1850,0,1,1 +2013,7,1,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,-2,0,1005,-3,0,0 +2013,4,3,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-4,0,743,-9,0,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,635,1,0,735,-5,0,0 +2013,8,6,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,32,1,755,26,1,0 +2013,10,24,4,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1713,-6,0,1930,9,0,0 +2013,7,16,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,845,-7,0,1046,-14,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1028,-2,0,1339,27,1,0 +2013,10,16,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1300,-5,0,1605,-37,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,630,1,0,1235,2,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-6,0,1325,-7,0,0 +2013,7,27,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1352,-4,0,1445,2,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1055,-4,0,1206,-8,0,0 +2013,6,20,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1831,-15,0,0 +2013,10,21,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,645,-8,0,840,-14,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1620,37,1,1805,17,1,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,23,1,1832,18,1,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1320,-3,0,1729,-3,0,0 +2013,10,1,2,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,-4,0,1515,-15,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,4,0,629,-1,0,0 +2013,10,15,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1049,-1,0,0 +2013,5,2,4,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,56,1,2105,41,1,0 +2013,6,26,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,808,-22,0,0 +2013,5,11,6,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2326,69,1,547,76,1,0 +2013,6,30,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1333,5,0,1942,9,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,729,-3,0,845,11,0,0 +2013,4,7,7,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,-3,0,1130,-16,0,0 +2013,4,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1135,0,0,1235,3,0,0 +2013,6,25,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,530,1,0,806,-2,0,0 +2013,10,22,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,1,0,1805,6,0,0 +2013,7,6,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1913,-3,0,2047,3,0,0 +2013,10,23,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1450,16,1,2205,1,0,0 +2013,6,5,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,825,-2,0,945,3,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,17,1,1335,19,1,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1130,5,0,1435,-1,0,0 +2013,10,2,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1730,-4,0,1845,-1,0,0 +2013,5,24,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,0,1225,-10,0,0 +2013,10,27,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-5,0,810,-2,0,0 +2013,9,12,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,610,-2,0,910,2,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2040,-1,0,2300,-19,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,700,-2,0,1145,-14,0,0 +2013,7,22,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,28,1,1755,12,0,0 +2013,10,14,1,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,20,1,647,-4,0,0 +2013,9,11,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,20,1,2117,37,1,0 +2013,4,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1630,4,0,1845,-4,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1250,4,0,1401,3,0,0 +2013,8,15,4,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,81,1,1759,89,1,0 +2013,6,25,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,-8,0,2340,8,0,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2010,0,0,2115,14,0,0 +2013,4,7,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1006,-1,0,1118,-10,0,0 +2013,10,12,6,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,750,-3,0,920,-7,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,3,0,1149,-1,0,0 +2013,4,4,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-9,0,750,-17,0,0 +2013,6,6,4,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1640,-4,0,1805,-8,0,0 +2013,5,24,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,9,0,1130,12,0,0 +2013,9,11,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,76,1,1835,71,1,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1515,90,1,2231,79,1,0 +2013,6,15,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-3,0,1434,2,0,0 +2013,10,30,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2025,59,1,2200,48,1,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,-4,0,955,-15,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,8,0,1850,-2,0,0 +2013,4,17,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1814,22,1,1935,10,0,0 +2013,7,3,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-14,0,1850,-8,0,0 +2013,4,24,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1720,-1,0,1825,5,0,0 +2013,4,28,7,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1435,-3,0,1654,-15,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1125,2,0,1845,-15,0,0 +2013,4,2,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2115,-10,0,2210,9,0,0 +2013,5,18,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-8,0,1301,-20,0,0 +2013,4,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1230,112,1,2021,163,1,0 +2013,4,21,7,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1415,-1,0,1655,-8,0,0 +2013,7,28,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1236,-8,0,0 +2013,9,28,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,705,-4,0,823,-1,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,1,0,1255,-10,0,0 +2013,6,3,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2100,13,0,2215,13,0,0 +2013,5,8,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-5,0,1117,1,0,0 +2013,4,3,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-2,0,1115,-10,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1652,23,1,1802,27,1,0 +2013,9,8,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1804,-11,0,2010,-6,0,0 +2013,8,26,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2033,72,1,2211,59,1,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,0,0,1637,-14,0,0 +2013,10,15,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1020,12,0,1245,-7,0,0 +2013,4,7,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-4,0,1245,-5,0,0 +2013,5,31,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-2,0,1155,-10,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1631,32,1,1912,49,1,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,-1,0,1210,-4,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,7,0,1150,1,0,0 +2013,4,26,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1127,-1,0,1345,-9,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,41,1,1535,44,1,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-4,0,2359,-7,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,705,0,,810,0,1,1 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,3,0,2100,-1,0,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,1,0,931,32,1,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,21,1,1135,6,0,0 +2013,10,8,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-5,0,835,-2,0,0 +2013,4,24,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1408,-2,0,1535,-11,0,0 +2013,5,1,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,640,-7,0,828,0,0,0 +2013,6,30,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,735,-1,0,1035,-27,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,825,-3,0,955,-13,0,0 +2013,4,19,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,23,1,1915,17,1,0 +2013,10,21,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1003,-9,0,1128,-18,0,0 +2013,10,31,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1915,111,1,2247,98,1,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1239,-9,0,1407,-21,0,0 +2013,7,25,4,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1716,-5,0,1720,-16,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1023,-1,0,1321,-14,0,0 +2013,7,12,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1022,3,0,1547,14,0,0 +2013,8,2,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1728,28,1,1905,21,1,0 +2013,7,23,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,44,1,1839,45,1,0 +2013,10,27,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-6,0,552,-29,0,0 +2013,6,30,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2201,17,1,2258,2,0,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-3,0,1019,-9,0,0 +2013,4,10,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-5,0,659,-14,0,0 +2013,4,5,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1010,74,1,1145,67,1,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-5,0,2325,-12,0,0 +2013,7,12,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,710,-6,0,725,-14,0,0 +2013,5,11,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,-4,0,1830,-18,0,0 +2013,4,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1952,0,0,2148,10,0,0 +2013,9,27,5,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,815,-4,0,1620,6,0,0 +2013,4,5,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,530,-5,0,618,-10,0,0 +2013,9,19,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1257,6,0,1559,1,0,0 +2013,7,20,6,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1916,8,0,2025,-1,0,0 +2013,5,10,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1208,-12,0,1430,-13,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2145,-2,0,2300,-19,0,0 +2013,5,3,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1215,-2,0,1240,-3,0,0 +2013,4,12,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,908,24,1,1418,4,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2050,59,1,2335,68,1,0 +2013,6,5,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-5,0,746,-9,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,16,1,1603,1,0,0 +2013,6,29,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,840,3,0,955,-5,0,0 +2013,5,3,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-2,0,1948,-2,0,0 +2013,9,27,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-7,0,1930,-11,0,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1257,2,0,1720,-23,0,0 +2013,7,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,-4,0,2205,-9,0,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1733,0,0,1926,-20,0,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,619,-4,0,756,-23,0,0 +2013,4,29,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-3,0,1010,-17,0,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1952,9,0,2007,26,1,0 +2013,8,31,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,37,1,2215,9,0,0 +2013,8,9,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,-7,0,1934,-6,0,0 +2013,8,10,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,547,-5,0,650,-9,0,0 +2013,9,25,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-6,0,1702,2,0,0 +2013,4,16,2,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,7,0,601,-15,0,0 +2013,5,7,2,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,95,1,1621,96,1,0 +2013,6,8,6,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1045,9,0,1200,5,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,12,0,1958,6,0,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1413,34,1,1546,27,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2155,-4,0,2339,-1,0,0 +2013,9,12,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,52,1,1350,63,1,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,815,-5,0,858,-1,0,0 +2013,7,26,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-4,0,904,-4,0,0 +2013,5,13,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,9,0,2015,8,0,0 +2013,7,8,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1045,0,0,1259,2,0,0 +2013,8,15,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2005,7,0,2130,14,0,0 +2013,8,20,2,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,720,-6,0,908,0,0,0 +2013,7,15,1,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,8,0,1645,11,0,0 +2013,8,13,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,958,2,0,1145,-2,0,0 +2013,6,21,5,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,915,-2,0,1020,0,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2155,52,1,5,58,1,0 +2013,5,29,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-2,0,2200,-14,0,0 +2013,8,10,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1300,106,1,1525,96,1,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2225,37,1,2325,33,1,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1945,36,1,2242,27,1,0 +2013,7,16,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1640,-4,0,1740,7,0,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,15,1,1335,15,1,0 +2013,7,31,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,-3,0,1834,-9,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,1,0,1441,1,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,930,-4,0,1223,-13,0,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1430,-2,0,1710,-19,0,0 +2013,7,30,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1320,-5,0,1554,1,0,0 +2013,6,11,2,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,3,0,2051,-4,0,0 +2013,6,28,5,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,36,1,722,20,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-1,0,1326,-10,0,0 +2013,8,7,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1251,73,1,1419,71,1,0 +2013,4,4,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1200,-2,0,1709,6,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1659,-3,0,1959,6,0,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,29,1,1150,7,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,0,,2130,0,1,1 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1345,32,1,1617,21,1,0 +2013,8,16,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1415,47,1,1700,34,1,0 +2013,6,12,3,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2210,26,1,2300,24,1,0 +2013,4,1,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2151,25,1,2259,24,1,0 +2013,8,1,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,18,1,2053,18,1,0 +2013,7,5,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,615,-8,0,945,-14,0,0 +2013,5,27,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,10,0,1425,0,0,0 +2013,5,7,2,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,956,-2,0,1803,4,0,0 +2013,5,23,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,61,1,1733,52,1,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,0,0,1300,-4,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2055,-4,0,2325,5,0,0 +2013,6,19,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,936,-4,0,952,-10,0,0 +2013,9,3,2,9E,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2030,-7,0,2250,-22,0,0 +2013,10,16,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1232,0,0,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1620,-3,0,1835,15,1,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,730,45,1,908,36,1,0 +2013,8,26,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,825,-4,0,920,-16,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,1543,-7,0,0 +2013,6,26,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1559,-6,0,1727,-15,0,0 +2013,7,7,7,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,840,-4,0,1015,-18,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1530,30,1,1556,37,1,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1305,-4,0,1500,-19,0,0 +2013,7,18,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-7,0,2041,-28,0,0 +2013,10,28,1,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1825,25,1,2100,8,0,0 +2013,7,22,1,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,915,1,0,935,3,0,0 +2013,5,28,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1240,98,1,1415,81,1,0 +2013,9,12,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,735,2,0,848,6,0,0 +2013,8,11,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1720,32,1,1820,28,1,0 +2013,6,13,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2156,19,1,2342,36,1,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1000,-6,0,1830,-20,0,0 +2013,8,19,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1205,2,0,1325,3,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1500,45,1,1727,45,1,0 +2013,7,26,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2020,9,0,2302,9,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,945,-1,0,1100,-12,0,0 +2013,7,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1830,30,1,2015,26,1,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,26,1,1745,23,1,0 +2013,4,24,3,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,1,0,915,-17,0,0 +2013,10,6,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1100,-11,0,1205,-10,0,0 +2013,5,11,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,920,2,0,1040,-3,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,-2,0,916,-9,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2104,10,0,14,-12,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2020,-6,0,2126,-12,0,0 +2013,4,10,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,735,-2,0,850,-8,0,0 +2013,4,29,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,-5,0,1819,-4,0,0 +2013,9,21,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1520,-4,0,1830,-15,0,0 +2013,7,4,4,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,-6,0,1110,-32,0,0 +2013,9,26,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,16,1,1200,-7,0,0 +2013,10,22,2,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1306,-7,0,1419,-7,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-6,0,1433,-9,0,0 +2013,6,20,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1845,93,1,2005,98,1,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,11,0,1618,14,0,0 +2013,5,5,7,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1812,-5,0,2043,-22,0,0 +2013,9,4,3,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1020,-1,0,1130,-5,0,0 +2013,5,18,6,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,745,-6,0,1036,-18,0,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-5,0,842,-15,0,0 +2013,8,7,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,24,1,2215,30,1,0 +2013,4,19,5,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1645,9,0,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1050,2,0,1150,0,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1004,20,1,1810,20,1,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1810,-1,0,1925,-13,0,0 +2013,7,23,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1105,-3,0,1301,14,0,0 +2013,9,30,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-1,0,1415,-3,0,0 +2013,6,18,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,938,-1,0,1117,2,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1945,14,0,2205,6,0,0 +2013,5,13,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1812,-7,0,2002,8,0,0 +2013,9,23,1,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1825,0,0,2006,-11,0,0 +2013,7,10,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,655,-8,0,0 +2013,5,10,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-1,0,1520,7,0,0 +2013,8,23,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,0,,1114,0,1,1 +2013,7,21,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1740,-1,0,1830,-4,0,0 +2013,7,30,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-7,0,2020,2,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-4,0,1725,-21,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,0,0,930,-3,0,0 +2013,4,15,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,39,1,1215,35,1,0 +2013,10,23,3,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1430,26,1,1958,36,1,0 +2013,6,5,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1050,-4,0,1310,-12,0,0 +2013,10,1,2,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1255,18,1,1510,10,0,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1135,-3,0,1315,-11,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1625,0,0,1817,-17,0,0 +2013,10,18,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-5,0,1414,-15,0,0 +2013,8,25,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2005,9,0,2115,-11,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1538,22,1,1815,10,0,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2113,-6,0,2307,-25,0,0 +2013,4,26,5,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,13,0,1637,11,0,0 +2013,5,14,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1545,1,0,1810,-16,0,0 +2013,8,15,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1306,-3,0,1550,9,0,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1140,15,1,1310,2,0,0 +2013,5,29,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1555,151,1,1655,130,1,0 +2013,10,2,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2107,-3,0,2219,-13,0,0 +2013,7,19,5,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-6,0,2040,8,0,0 +2013,4,7,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,-6,0,1630,-6,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,9,0,2250,-4,0,0 +2013,9,21,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1515,0,0,1626,-1,0,0 +2013,9,18,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1532,-13,0,0 +2013,6,27,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,39,1,1850,33,1,0 +2013,7,13,6,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,0,0,1153,-16,0,0 +2013,9,28,6,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1825,-5,0,2105,-5,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,810,-5,0,1115,11,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,99,1,2055,99,1,0 +2013,10,24,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2142,6,0,2252,-5,0,0 +2013,5,9,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1344,-9,0,1823,-1,0,0 +2013,10,24,4,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,2150,-5,0,610,-11,0,0 +2013,9,10,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1320,-2,0,1445,-12,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1925,-3,0,2133,-8,0,0 +2013,4,3,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1005,-2,0,1120,-12,0,0 +2013,8,23,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,-2,0,1408,-3,0,0 +2013,4,23,2,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1615,3,0,1805,-6,0,0 +2013,6,12,3,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-11,0,555,-12,0,0 +2013,5,20,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1455,19,1,1555,8,0,0 +2013,5,23,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,87,1,2030,72,1,0 +2013,6,28,5,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,0,0,2023,-9,0,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1915,83,1,2020,65,1,0 +2013,7,31,3,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1724,19,1,2020,20,1,0 +2013,10,3,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1025,1,0,1135,3,0,0 +2013,10,14,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-8,0,829,-7,0,0 +2013,8,22,4,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,-2,0,1631,-7,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2024,18,1,2330,0,1,1 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,68,1,1255,65,1,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2015,-1,0,2121,-7,0,0 +2013,6,14,5,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,13,0,2145,6,0,0 +2013,6,22,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-6,0,1405,-17,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1450,2,0,2337,-16,0,0 +2013,5,10,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-1,0,912,-4,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1750,0,0,1935,-12,0,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1050,6,0,1715,-6,0,0 +2013,6,26,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-1,0,1305,-4,0,0 +2013,7,18,4,EV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,600,4,0,921,-1,0,0 +2013,8,15,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,811,30,1,952,17,1,0 +2013,6,18,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,-5,0,730,-12,0,0 +2013,8,5,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-5,0,1349,13,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-4,0,1743,-10,0,0 +2013,9,23,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,610,-2,0,916,-16,0,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1605,-2,0,1855,1,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1745,9,0,1935,1,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,745,-5,0,936,-8,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1124,-2,0,1332,-24,0,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,705,2,0,825,10,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1100,-3,0,1408,-36,0,0 +2013,5,1,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1100,-6,0,1457,2,0,0 +2013,4,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2000,17,1,2102,17,1,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1225,-1,0,1430,-17,0,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,925,4,0,1055,24,1,0 +2013,8,10,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1621,15,1,16,-15,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,122,1,1620,106,1,0 +2013,8,27,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1740,-4,0,1910,-16,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2239,-3,0,15,-17,0,0 +2013,6,15,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1305,2,0,1820,61,1,0 +2013,9,1,7,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1243,-10,0,1421,-22,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,74,1,1930,48,1,0 +2013,9,22,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1030,-1,0,1130,-4,0,0 +2013,7,12,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,815,58,1,930,139,1,0 +2013,9,19,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1730,-2,0,2059,5,0,0 +2013,7,3,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1544,1,0,1815,1,0,0 +2013,10,26,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,830,-3,0,1026,28,1,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1758,-5,0,1955,3,0,0 +2013,9,23,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,639,-5,0,850,-27,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-1,0,1915,-25,0,0 +2013,8,15,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,630,-3,0,740,-23,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,-2,0,1320,4,0,0 +2013,7,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1000,-7,0,1408,4,0,0 +2013,10,15,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-9,0,1753,-17,0,0 +2013,8,8,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,640,0,0,750,-6,0,0 +2013,4,24,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1514,-5,0,2200,-20,0,0 +2013,8,31,6,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,12,0,1441,13,0,0 +2013,9,18,3,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-4,0,2210,-1,0,0 +2013,4,9,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,910,2,0,1055,2,0,0 +2013,4,14,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,-4,0,1234,-2,0,0 +2013,9,26,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1359,-3,0,1654,-5,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2050,89,1,2210,85,1,0 +2013,9,20,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,848,0,0,1126,-5,0,0 +2013,4,11,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-3,0,2230,-12,0,0 +2013,7,28,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,727,-3,0,839,-13,0,0 +2013,6,17,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,735,0,0,805,-9,0,0 +2013,7,11,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,948,64,1,1154,93,1,0 +2013,10,20,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,935,-7,0,1130,-29,0,0 +2013,10,15,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,855,-5,0,1120,6,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1402,-4,0,1548,-12,0,0 +2013,10,21,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,211,1,2020,214,1,0 +2013,8,28,3,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,-2,0,1217,1,0,0 +2013,6,23,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,839,-5,0,1004,-19,0,0 +2013,7,11,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1442,-4,0,1626,-7,0,0 +2013,5,24,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1333,0,0,1702,-15,0,0 +2013,6,7,5,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1957,86,1,2010,61,1,0 +2013,10,1,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1130,-3,0,1230,-5,0,0 +2013,6,17,1,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,70,1,2027,48,1,0 +2013,6,27,4,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1850,61,1,2116,38,1,0 +2013,4,6,6,OO,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1225,-1,0,1345,-7,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,63,1,1004,51,1,0 +2013,7,31,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,27,1,1700,21,1,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,0,0,939,2,0,0 +2013,7,17,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,830,1,0,920,-4,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,-5,0,2326,-16,0,0 +2013,4,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1515,3,0,1615,-3,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,3,0,1925,8,0,0 +2013,4,18,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1915,0,,2049,0,1,1 +2013,7,30,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1856,-2,0,2140,-4,0,0 +2013,8,23,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,835,-25,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,23,1,1845,21,1,0 +2013,5,3,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,296,1,1247,286,1,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,1411,0,0,0 +2013,4,8,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1158,-3,0,1440,-7,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1813,0,0,1912,0,0,0 +2013,9,9,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,3,0,1345,-3,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1100,0,0,1301,-23,0,0 +2013,7,23,2,OO,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1208,-2,0,1311,-11,0,0 +2013,10,20,7,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1655,-5,0,1850,-8,0,0 +2013,10,28,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1342,29,1,1509,30,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,18,1,1814,18,1,0 +2013,8,27,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,615,-3,0,705,-6,0,0 +2013,9,24,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,849,-9,0,1041,-27,0,0 +2013,7,14,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,646,-3,0,734,-11,0,0 +2013,4,23,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,1,0,2150,-9,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1640,-1,0,1904,-2,0,0 +2013,7,22,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1830,8,0,2124,-3,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1525,-4,0,1750,6,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,5,0,1132,0,0,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,31,1,2105,23,1,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1955,19,1,2305,16,1,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-1,0,1948,1,0,0 +2013,4,5,5,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,720,-7,0,955,-36,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,810,-4,0,922,-11,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1120,-2,0,1306,-3,0,0 +2013,6,19,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,74,1,2155,53,1,0 +2013,5,15,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-9,0,846,-6,0,0 +2013,10,21,1,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,820,493,1,1112,492,1,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1200,16,1,1355,5,0,0 +2013,7,22,1,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,755,-4,0,1020,-1,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1427,46,1,1640,11,0,0 +2013,5,28,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,600,2,0,740,10,0,0 +2013,6,2,7,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1730,66,1,1950,49,1,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1135,13,0,1230,40,1,0 +2013,5,29,3,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1900,-7,0,2158,-11,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,-5,0,2030,-14,0,0 +2013,4,9,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,810,-3,0,1115,-14,0,0 +2013,7,16,2,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,745,-2,0,1035,7,0,0 +2013,5,6,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1225,-4,0,1327,-22,0,0 +2013,5,31,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-1,0,804,-17,0,0 +2013,5,31,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,0,,1208,0,1,1 +2013,7,6,6,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1625,-10,0,1935,-1,0,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,835,-3,0,1000,13,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-4,0,910,-28,0,0 +2013,10,7,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,650,15,1,750,13,0,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,-5,0,1848,-32,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,-4,0,542,-13,0,0 +2013,6,27,4,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1350,7,0,1550,10,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1650,5,0,1820,-4,0,0 +2013,8,26,1,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-5,0,1755,-27,0,0 +2013,9,25,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,120,1,1130,122,1,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1515,80,1,1837,72,1,0 +2013,4,24,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1015,35,1,1526,11,0,0 +2013,7,27,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-3,0,834,29,1,0 +2013,5,8,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1347,-14,0,0 +2013,5,18,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-6,0,1400,-26,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,835,-4,0,920,-6,0,0 +2013,4,6,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2210,1,0,554,-19,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,600,-4,0,957,-25,0,0 +2013,7,9,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1854,-10,0,1944,-22,0,0 +2013,4,7,7,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1305,-7,0,1630,-25,0,0 +2013,5,26,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-1,0,1004,-5,0,0 +2013,7,18,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,34,1,1930,39,1,0 +2013,6,22,6,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1154,46,1,2000,52,1,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1018,-1,0,1459,23,1,0 +2013,6,1,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1346,62,1,1713,63,1,0 +2013,6,12,3,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,800,7,0,1555,8,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1001,12,0,1335,18,1,0 +2013,10,7,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,940,39,1,1129,28,1,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2231,-5,0,2351,-14,0,0 +2013,6,13,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,904,-4,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,-2,0,1905,18,1,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1554,31,1,1848,55,1,0 +2013,4,1,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1535,1,0,1655,4,0,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,835,1,0,1015,-2,0,0 +2013,5,20,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,-3,0,2249,-6,0,0 +2013,9,11,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,948,-6,0,1747,43,1,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1132,59,1,1245,48,1,0 +2013,4,22,1,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,705,-6,0,934,-9,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,2359,2,0,529,-17,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1526,0,0,1837,-8,0,0 +2013,7,6,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,128,1,1655,156,1,0 +2013,9,23,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,808,-8,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,-9,0,1924,-27,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-1,0,924,5,0,0 +2013,7,8,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,520,-4,0,621,-1,0,0 +2013,5,19,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-8,0,1345,-21,0,0 +2013,10,21,1,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-4,0,1915,-19,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1729,236,1,1932,244,1,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1655,0,0,2004,35,1,0 +2013,10,12,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,1246,-16,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,655,-7,0,905,-10,0,0 +2013,8,30,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,87,1,540,70,1,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-1,0,1053,7,0,0 +2013,4,16,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1712,-2,0,1945,0,0,0 +2013,4,16,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-5,0,2134,-14,0,0 +2013,10,25,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1110,-4,0,1225,-7,0,0 +2013,8,6,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,9,0,1100,3,0,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,830,-9,0,950,-24,0,0 +2013,6,5,3,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-11,0,1409,-19,0,0 +2013,8,2,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1038,-4,0,1144,-7,0,0 +2013,7,31,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,77,1,2027,93,1,0 +2013,9,3,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,950,-4,0,1123,-1,0,0 +2013,5,24,5,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,620,0,0,940,-16,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,11,0,1109,-6,0,0 +2013,8,8,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,69,1,1922,104,1,0 +2013,10,22,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1300,-3,0,1405,0,0,0 +2013,8,13,2,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,919,-11,0,1100,-2,0,0 +2013,6,20,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,41,1,1050,42,1,0 +2013,10,25,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,-4,0,1320,-9,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1322,0,0,1615,-13,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,830,-16,0,0 +2013,8,2,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2035,-2,0,2154,-3,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1725,-7,0,1916,-13,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,725,-3,0,850,-10,0,0 +2013,7,9,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,-5,0,2042,6,0,0 +2013,7,14,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,530,-10,0,654,-17,0,0 +2013,4,29,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1530,28,1,1902,24,1,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1925,-1,0,2025,-8,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,935,8,0,1138,-10,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1205,-3,0,1426,9,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,7,0,1645,-1,0,0 +2013,5,16,4,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-7,0,816,0,0,0 +2013,6,15,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,70,1,812,50,1,0 +2013,4,15,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2125,80,1,2235,82,1,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,650,2,0,920,-12,0,0 +2013,10,31,4,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,730,-4,0,1127,10,0,0 +2013,10,10,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,2,0,1730,-1,0,0 +2013,10,27,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1127,0,0,1559,-12,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-2,0,1011,-13,0,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,-1,0,2015,-18,0,0 +2013,5,10,5,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1358,44,1,1633,59,1,0 +2013,5,9,4,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,8,0,2255,9,0,0 +2013,4,6,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1032,0,0,1210,-16,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1858,-3,0,2045,11,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,900,0,0,1145,-5,0,0 +2013,4,14,7,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1940,9,0,27,-5,0,0 +2013,9,12,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1120,37,1,1259,0,1,1 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1900,40,1,2125,31,1,0 +2013,6,26,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,-5,0,1040,-16,0,0 +2013,7,25,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,-6,0,2025,-17,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,710,-3,0,955,17,1,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1810,95,1,1910,133,1,0 +2013,10,30,3,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1958,2,0,2224,-17,0,0 +2013,10,20,7,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1655,-3,0,1920,-4,0,0 +2013,10,10,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1859,10,0,2104,5,0,0 +2013,7,21,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-2,0,1657,-20,0,0 +2013,6,26,3,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-4,0,1208,5,0,0 +2013,8,15,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,1,0,2155,-7,0,0 +2013,5,21,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1330,-1,0,1440,-1,0,0 +2013,10,14,1,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,700,0,0,940,-2,0,0 +2013,7,4,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,0,0,2144,0,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,26,1,736,26,1,0 +2013,7,23,2,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,645,16,1,930,10,0,0 +2013,10,14,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1605,2,0,19,-22,0,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,8,0,1730,7,0,0 +2013,9,20,5,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-3,0,717,7,0,0 +2013,10,16,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,87,1,1119,87,1,0 +2013,8,23,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1639,4,0,0 +2013,10,25,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1705,-2,0,1710,-3,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2105,6,0,2225,8,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-1,0,1115,-9,0,0 +2013,8,5,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1816,0,0,2159,1,0,0 +2013,9,25,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,-4,0,1435,-3,0,0 +2013,7,10,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,177,1,2020,186,1,0 +2013,8,22,4,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-3,0,2145,-17,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1645,2,0,1910,-5,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,915,1,0,1635,-15,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1625,0,0,1851,-4,0,0 +2013,5,9,4,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-3,0,1655,-2,0,0 +2013,4,23,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,0,0,2020,-11,0,0 +2013,5,2,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1300,26,1,1430,51,1,0 +2013,7,9,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1316,44,1,2111,46,1,0 +2013,6,24,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1118,-6,0,1250,-13,0,0 +2013,8,21,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1140,-4,0,1350,-12,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,-3,0,1448,-9,0,0 +2013,4,17,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,-3,0,730,-1,0,0 +2013,6,21,5,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,77,1,2202,77,1,0 +2013,5,21,2,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,712,-5,0,1033,-29,0,0 +2013,8,3,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1510,0,,1641,0,1,1 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,805,-2,0,850,-14,0,0 +2013,8,26,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1010,-2,0,1150,-14,0,0 +2013,6,12,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,736,4,0,826,4,0,0 +2013,5,17,5,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,545,-4,0,700,-9,0,0 +2013,7,13,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1755,1,0,1920,-3,0,0 +2013,7,26,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,940,-6,0,1140,-10,0,0 +2013,9,6,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-9,0,915,-28,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1436,10,0,1602,-4,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1725,5,0,1930,0,0,0 +2013,5,2,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2110,113,1,2245,119,1,0 +2013,8,15,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,0,0,1411,-6,0,0 +2013,8,3,6,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1735,0,0,1825,1,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,13,0,1715,7,0,0 +2013,4,28,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-3,0,1210,-9,0,0 +2013,5,21,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,632,-2,0,758,-6,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1548,-3,0,2029,-17,0,0 +2013,7,28,7,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-4,0,804,-18,0,0 +2013,10,5,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1257,8,0,1354,10,0,0 +2013,5,23,4,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1140,2,0,1300,19,1,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,-1,0,1606,8,0,0 +2013,10,10,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,705,0,0,825,1,0,0 +2013,7,16,2,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1534,54,1,1838,45,1,0 +2013,5,24,5,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,910,39,1,1730,38,1,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1610,30,1,1910,13,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1920,4,0,2050,45,1,0 +2013,10,31,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1910,83,1,2140,83,1,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2055,1,0,2320,-2,0,0 +2013,8,26,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,645,-2,0,815,-19,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1228,6,0,1749,9,0,0 +2013,6,19,3,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1722,0,0,1855,-11,0,0 +2013,5,8,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-3,0,920,-4,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,-1,0,1339,-7,0,0 +2013,10,31,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1331,93,1,1544,104,1,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,915,-4,0,1205,-15,0,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,945,0,0,1126,-18,0,0 +2013,8,18,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-3,0,1251,-29,0,0 +2013,4,10,3,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,705,-5,0,934,-19,0,0 +2013,10,9,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,800,-3,0,1025,3,0,0 +2013,10,30,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1445,126,1,1533,128,1,0 +2013,4,18,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,10,0,1210,5,0,0 +2013,9,12,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,14,0,1255,8,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-1,0,1435,4,0,0 +2013,10,21,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1121,-6,0,1225,-21,0,0 +2013,6,8,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2035,23,1,2320,4,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1155,2,0,1300,-9,0,0 +2013,5,19,7,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1730,29,1,1745,37,1,0 +2013,4,7,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-7,0,1758,-6,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,805,1,0,930,-1,0,0 +2013,7,14,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,0,0,2000,-22,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1345,-2,0,1455,-3,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,816,-4,0,925,-19,0,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-5,0,1629,-15,0,0 +2013,5,26,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1425,-7,0,1525,-18,0,0 +2013,4,10,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-9,0,1028,-13,0,0 +2013,8,18,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1005,-5,0,1121,-23,0,0 +2013,7,3,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,24,1,1625,17,1,0 +2013,7,26,5,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,550,-3,0,800,-1,0,0 +2013,5,8,3,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1645,28,1,2206,47,1,0 +2013,7,19,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,0,0,1925,-10,0,0 +2013,8,15,4,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1240,10,0,1545,1,0,0 +2013,5,6,1,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,845,-3,0,945,-9,0,0 +2013,6,28,5,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,9,0,1130,-11,0,0 +2013,4,14,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,1,0,1630,6,0,0 +2013,4,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2142,-2,0,2329,-11,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,908,-2,0,1109,-2,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2059,11,0,2359,15,1,0 +2013,9,10,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,720,0,0,1330,0,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-5,0,922,-9,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,1,0,2139,6,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,79,1,2030,74,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1910,-4,0,2045,-3,0,0 +2013,6,15,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-1,0,1002,-9,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-4,0,1212,-23,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2055,-3,0,2205,-11,0,0 +2013,10,6,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1920,8,0,2105,-8,0,0 +2013,8,6,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1546,-5,0,1612,-21,0,0 +2013,6,2,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1225,-2,0,1444,-9,0,0 +2013,5,13,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,600,-5,0,801,-11,0,0 +2013,6,20,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-2,0,900,-8,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,850,-2,0,1058,8,0,0 +2013,4,24,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1410,6,0,1530,-3,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1645,37,1,2120,22,1,0 +2013,4,23,2,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1315,85,1,1515,80,1,0 +2013,6,22,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,735,-2,0,840,-7,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,705,1,0,915,-20,0,0 +2013,10,4,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-1,0,1524,18,1,0 +2013,8,3,6,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,-5,0,1800,-33,0,0 +2013,6,6,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-1,0,1000,-1,0,0 +2013,9,27,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-9,0,1654,-8,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1050,70,1,1943,56,1,0 +2013,8,11,7,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,928,-4,0,1050,-10,0,0 +2013,5,5,7,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1137,-3,0,1427,0,0,0 +2013,6,10,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,705,-2,0,800,-5,0,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,11,0,715,8,0,0 +2013,6,9,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1028,72,1,1426,54,1,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,1,0,1030,-4,0,0 +2013,5,6,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,845,-4,0,1108,12,0,0 +2013,7,31,3,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-8,0,1212,-21,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-2,0,1620,-14,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1935,66,1,2155,57,1,0 +2013,10,7,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1001,-9,0,1125,-5,0,0 +2013,7,5,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,-7,0,1224,10,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1253,-6,0,1517,-31,0,0 +2013,8,30,5,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1032,-5,0,1336,-16,0,0 +2013,7,24,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-3,0,1645,1,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1601,2,0,1720,-8,0,0 +2013,8,13,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1730,-5,0,159,-17,0,0 +2013,5,4,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-3,0,1600,5,0,0 +2013,5,10,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1250,0,0,1405,-10,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,756,-3,0,1106,-19,0,0 +2013,7,18,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,0,0,1013,3,0,0 +2013,7,13,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,800,-12,0,0 +2013,9,27,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2015,19,1,2215,-2,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,0,,810,0,1,1 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2025,-2,0,2310,-9,0,0 +2013,6,25,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,838,-6,0,1100,-10,0,0 +2013,8,7,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,634,-2,0,826,4,0,0 +2013,7,12,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1558,-5,0,13,13,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1909,-4,0,2039,-22,0,0 +2013,5,29,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,-5,0,807,-32,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,835,1,0,1045,-6,0,0 +2013,6,23,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-3,0,1020,-5,0,0 +2013,8,8,4,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-9,0,1345,-9,0,0 +2013,5,30,4,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1010,-4,0,1140,-8,0,0 +2013,7,18,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1725,-3,0,1834,2,0,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1650,1,0,1835,-20,0,0 +2013,10,29,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,855,3,0,1502,-29,0,0 +2013,10,29,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1155,-1,0,1430,-6,0,0 +2013,4,21,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1917,12,0,2105,-1,0,0 +2013,7,9,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-5,0,1000,-4,0,0 +2013,9,24,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-6,0,1630,-11,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1600,54,1,1705,57,1,0 +2013,9,14,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-5,0,1251,-3,0,0 +2013,7,14,7,OO,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1512,0,0,1701,-5,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-3,0,1809,3,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2045,38,1,2205,14,0,0 +2013,10,13,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,-3,0,1320,-7,0,0 +2013,5,12,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,114,1,630,68,1,0 +2013,7,9,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,546,-2,0,907,-7,0,0 +2013,10,25,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1553,-8,0,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,800,4,0,1310,4,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1042,18,1,1154,26,1,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,936,-2,0,1211,2,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-6,0,1505,-12,0,0 +2013,8,29,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,659,-12,0,859,-6,0,0 +2013,5,12,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2150,37,1,19,48,1,0 +2013,7,28,7,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2015,-7,0,2351,-8,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,15,1,1811,7,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1635,22,1,1715,13,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,-3,0,1617,-18,0,0 +2013,6,4,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1230,24,1,1420,11,0,0 +2013,5,30,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1035,-2,0,1145,-5,0,0 +2013,5,18,6,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,710,-3,0,930,-9,0,0 +2013,9,5,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-3,0,1547,-16,0,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,-3,0,2314,11,0,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2130,0,,2245,0,1,1 +2013,6,4,2,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,855,-1,0,1100,-11,0,0 +2013,9,21,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1225,-4,0,2050,-3,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1235,0,0,1405,14,0,0 +2013,4,28,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,10,0,2240,35,1,0 +2013,4,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,840,-3,0,936,2,0,0 +2013,5,22,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1135,-3,0,1210,-10,0,0 +2013,9,20,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,945,-5,0,1129,-14,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-3,0,1729,-12,0,0 +2013,5,16,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,858,1,0,932,0,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,2,0,1150,5,0,0 +2013,4,20,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-3,0,832,-19,0,0 +2013,6,8,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1052,-9,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1500,-9,0,1655,5,0,0 +2013,7,15,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1600,-3,0,1705,-8,0,0 +2013,8,28,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1532,1,0,1717,8,0,0 +2013,5,25,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,804,17,1,1133,11,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1552,1,0,2017,-29,0,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-3,0,1023,3,0,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1546,2,0,1729,-4,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,841,-3,0,1606,-19,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,8,0,1915,15,1,0 +2013,5,20,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1721,28,1,1845,16,1,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1200,-3,0,1405,-17,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,2,0,1430,2,0,0 +2013,9,25,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,-2,0,1705,-10,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2200,125,1,35,84,1,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,855,35,1,1335,16,1,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2109,34,1,2240,14,0,0 +2013,8,19,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2100,-5,0,2244,4,0,0 +2013,7,21,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,31,1,1500,31,1,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2114,31,1,2338,14,0,0 +2013,9,13,5,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1755,36,1,1915,38,1,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,845,1,0,1120,-10,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1315,-2,0,1420,-5,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,32,1,2105,30,1,0 +2013,8,27,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1715,4,0,1905,-10,0,0 +2013,7,8,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,66,1,2041,50,1,0 +2013,10,2,3,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,-6,0,1450,-13,0,0 +2013,10,14,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-11,0,1256,-17,0,0 +2013,8,29,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-7,0,1409,-20,0,0 +2013,6,24,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,810,0,0,1330,-21,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-5,0,1230,-4,0,0 +2013,9,18,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1400,-7,0,1515,-13,0,0 +2013,6,22,6,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-1,0,1400,-4,0,0 +2013,9,1,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,2115,-7,0,0 +2013,8,3,6,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1858,31,1,2200,16,1,0 +2013,9,5,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,610,-3,0,735,-4,0,0 +2013,8,1,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1115,10,0,1355,1,0,0 +2013,8,17,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,1013,-9,0,0 +2013,9,23,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,-5,0,615,-14,0,0 +2013,4,16,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,0,,1755,0,1,1 +2013,9,18,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,10,0,1340,-4,0,0 +2013,5,25,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,64,1,2055,58,1,0 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1910,0,0,2215,7,0,0 +2013,10,15,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1035,-6,0,1404,-23,0,0 +2013,6,20,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,8,0,1358,2,0,0 +2013,5,18,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1033,-8,0,1149,-8,0,0 +2013,10,9,3,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-3,0,1351,-9,0,0 +2013,4,1,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-3,0,2110,-17,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2040,71,1,2305,96,1,0 +2013,7,28,7,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,2030,41,1,2325,37,1,0 +2013,9,3,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-5,0,1416,-14,0,0 +2013,4,15,1,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-8,0,2015,-12,0,0 +2013,9,8,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,743,-7,0,0 +2013,6,11,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1520,-2,0,1605,-2,0,0 +2013,7,23,2,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,701,-2,0,930,9,0,0 +2013,4,5,5,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1720,-7,0,2029,-6,0,0 +2013,8,14,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-5,0,1225,-13,0,0 +2013,6,22,6,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-3,0,1627,-19,0,0 +2013,9,13,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1120,11,0,1445,20,1,0 +2013,10,28,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1355,10,0,1432,18,1,0 +2013,10,27,7,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,1420,-3,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,1,0,1810,-1,0,0 +2013,5,29,3,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,-4,0,1900,-11,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,938,-5,0,1117,-3,0,0 +2013,5,28,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2005,6,0,2145,14,0,0 +2013,7,9,2,FL,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,900,-3,0,1040,-12,0,0 +2013,8,18,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,803,-3,0,1604,-7,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1805,4,0,2125,-10,0,0 +2013,6,4,2,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1705,2,0,1930,-27,0,0 +2013,6,1,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,935,-5,0,1205,-3,0,0 +2013,10,6,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1015,7,0,1225,-27,0,0 +2013,10,15,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,60,1,2247,57,1,0 +2013,5,11,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1855,-20,0,2149,-18,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2030,-9,0,2210,-12,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,-1,0,1320,-3,0,0 +2013,9,26,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1553,-5,0,1609,-14,0,0 +2013,7,21,7,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1750,53,1,1935,44,1,0 +2013,7,17,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-10,0,1101,-2,0,0 +2013,8,13,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1837,9,0,2229,9,0,0 +2013,9,23,1,US,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1106,-4,0,1229,-8,0,0 +2013,6,10,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,69,1,1656,67,1,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,6,0,2340,2,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-1,0,1341,4,0,0 +2013,5,8,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,-7,0,1505,-14,0,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1530,40,1,1705,26,1,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2219,-1,0,2344,-13,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1230,111,1,1454,115,1,0 +2013,5,14,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1932,5,0,2042,-11,0,0 +2013,10,1,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,940,-15,0,0 +2013,9,21,6,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1505,-6,0,1551,5,0,0 +2013,9,13,5,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1650,-6,0,1939,-10,0,0 +2013,9,11,3,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,-2,0,1308,-5,0,0 +2013,4,28,7,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,600,-6,0,845,-20,0,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1251,-2,0,1557,-6,0,0 +2013,10,28,1,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-7,0,724,0,0,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1247,-1,0,1835,21,1,0 +2013,8,29,4,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,830,-9,0,1054,-36,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,-1,0,1610,13,0,0 +2013,7,29,1,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,829,-7,0,1045,5,0,0 +2013,10,25,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2000,88,1,2029,75,1,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,903,34,1,1124,8,0,0 +2013,5,21,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1149,15,1,1237,8,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,831,-4,0,929,3,0,0 +2013,4,17,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,-5,0,2029,-1,0,0 +2013,7,17,3,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1654,31,1,1730,35,1,0 +2013,4,23,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1030,13,0,1150,5,0,0 +2013,9,19,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,262,1,915,282,1,0 +2013,6,12,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1200,-1,0,1244,1,0,0 +2013,4,12,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2202,14,0,2359,0,0,0 +2013,10,22,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,750,0,0,840,-4,0,0 +2013,5,11,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-3,0,1605,-9,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,-2,0,1525,3,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,21,1,1833,4,0,0 +2013,9,20,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-10,0,1117,-26,0,0 +2013,4,4,4,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1145,-1,0,1356,17,1,0 +2013,9,28,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,38,1,1250,32,1,0 +2013,5,19,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1558,48,1,1800,55,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1420,10,0,1525,2,0,0 +2013,7,5,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,55,6,0,556,3,0,0 +2013,4,27,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1601,-2,0,1857,-37,0,0 +2013,8,20,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,608,-5,0,719,-10,0,0 +2013,4,8,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1945,-2,0,2240,-5,0,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,816,-3,0,1141,-7,0,0 +2013,4,8,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,4,0,1845,23,1,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,715,-2,0,818,-6,0,0 +2013,9,14,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,730,-3,0,1026,-13,0,0 +2013,5,4,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1525,26,1,1730,18,1,0 +2013,9,30,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,-4,0,1540,-5,0,0 +2013,7,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,49,1,1130,41,1,0 +2013,4,24,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2117,13,0,2358,-2,0,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2040,13,0,2210,12,0,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2155,-3,0,2245,-11,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1155,0,0,1318,-3,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,955,0,0,1657,10,0,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-10,0,2312,-12,0,0 +2013,4,13,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1635,0,0,1848,9,0,0 +2013,7,3,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,845,-3,0,950,-13,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,23,1,1630,14,0,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,-2,0,2250,-20,0,0 +2013,9,1,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1505,-6,0,1603,-21,0,0 +2013,8,12,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-2,0,1423,-4,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1800,6,0,35,-7,0,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1143,-3,0,1259,-9,0,0 +2013,5,30,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,56,1,1446,51,1,0 +2013,7,19,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,21,1,1655,36,1,0 +2013,5,29,3,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1647,54,1,1752,41,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1312,-3,0,1510,-2,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,915,-3,0,1050,-8,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1006,4,0,1230,10,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,0,,1120,0,1,1 +2013,9,27,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,630,-4,0,750,-9,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,1,0,1605,1,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-2,0,1240,-16,0,0 +2013,6,17,1,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-11,0,929,-8,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1505,0,0,1845,-24,0,0 +2013,4,4,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,832,7,0,1012,7,0,0 +2013,6,16,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1858,-4,0,2055,-21,0,0 +2013,6,22,6,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2100,-3,0,2301,-11,0,0 +2013,6,8,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-4,0,843,-15,0,0 +2013,10,30,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,615,-1,0,940,21,1,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,8,0,1811,21,1,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,0,0,1429,-12,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2002,-2,0,2157,-16,0,0 +2013,9,14,6,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1010,-13,0,1310,-1,0,0 +2013,8,18,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1640,-2,0,1925,-21,0,0 +2013,7,20,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-7,0,2054,-6,0,0 +2013,4,3,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1815,3,0,1915,-8,0,0 +2013,5,11,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-3,0,836,-9,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,929,-4,0,1112,-5,0,0 +2013,6,26,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,25,1,1345,26,1,0 +2013,6,30,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-3,0,2054,4,0,0 +2013,7,14,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,26,1,1516,37,1,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1600,2,0,1755,15,1,0 +2013,8,16,5,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1158,107,1,1440,104,1,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1931,13,0,130,4,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,825,11,0,955,0,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,815,-1,0,1025,-13,0,0 +2013,8,30,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-6,0,821,3,0,0 +2013,7,14,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,2,0,2205,-52,0,0 +2013,4,12,5,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1825,8,0,1925,-11,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2047,-5,0,2234,-23,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,-1,0,1148,-10,0,0 +2013,9,12,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1055,8,0,1615,4,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,23,1,915,20,1,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1614,5,0,1737,-1,0,0 +2013,5,15,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1446,-5,0,1655,-8,0,0 +2013,6,27,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1055,-5,0,1425,-15,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1745,27,1,2335,14,0,0 +2013,6,29,6,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1159,0,0,1334,-5,0,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-2,0,1000,-12,0,0 +2013,6,10,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,2150,18,1,202,17,1,0 +2013,8,22,4,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,-14,0,1028,-14,0,0 +2013,6,3,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1130,11,0,1300,13,0,0 +2013,7,24,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,710,-8,0,805,-5,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2045,7,0,2145,9,0,0 +2013,8,12,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-2,0,1325,-7,0,0 +2013,6,25,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,822,-10,0,0 +2013,9,4,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-3,0,1340,-7,0,0 +2013,4,29,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1301,52,1,1420,42,1,0 +2013,9,10,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1138,2,0,1305,-3,0,0 +2013,9,1,7,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1455,-6,0,1730,-28,0,0 +2013,6,12,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,13,0,1555,13,0,0 +2013,7,29,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-7,0,2033,-28,0,0 +2013,10,25,5,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,7,0,2011,-2,0,0 +2013,7,11,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,51,1,1925,54,1,0 +2013,7,16,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-1,0,1015,10,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1935,11,0,2040,3,0,0 +2013,9,28,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-3,0,1226,-10,0,0 +2013,4,22,1,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,1,0,752,14,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,-3,0,2236,-3,0,0 +2013,6,12,3,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1659,38,1,1836,44,1,0 +2013,6,10,1,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1644,-1,0,1829,-15,0,0 +2013,10,14,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,12,0,1250,25,1,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,3,0,925,2,0,0 +2013,9,3,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-3,0,841,6,0,0 +2013,6,29,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1025,-2,0,1150,-6,0,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,-2,0,803,-5,0,0 +2013,9,11,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1025,-4,0,1259,-11,0,0 +2013,9,6,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1605,-3,0,1747,11,0,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,-1,0,2340,-6,0,0 +2013,10,7,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1128,9,0,1600,67,1,0 +2013,4,22,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-7,0,1341,-16,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-9,0,930,-10,0,0 +2013,6,12,3,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,1005,-2,0,1300,3,0,0 +2013,4,1,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,-2,0,1915,-4,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,-2,0,1952,-4,0,0 +2013,10,26,6,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1430,2,0,1630,4,0,0 +2013,4,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2000,16,1,2159,18,1,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,6,0,1651,-3,0,0 +2013,9,5,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,3,0,1155,-4,0,0 +2013,7,20,6,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2345,3,0,244,-4,0,0 +2013,5,18,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,5,0,1720,2,0,0 +2013,9,18,3,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,530,-7,0,655,-37,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,10,0,1525,14,0,0 +2013,6,7,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-5,0,831,-17,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1810,40,1,2220,41,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1051,-2,0,1153,-10,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,29,1,819,24,1,0 +2013,9,2,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1250,9,0,1355,-7,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1023,-4,0,1321,-16,0,0 +2013,6,9,7,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1653,0,0,1849,29,1,0 +2013,4,23,2,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,620,-5,0,1015,-26,0,0 +2013,5,15,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-4,0,925,-21,0,0 +2013,10,6,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,1,0,2049,9,0,0 +2013,7,3,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-1,0,2203,28,1,0 +2013,7,13,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,29,1,2009,33,1,0 +2013,9,11,3,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-9,0,1815,-24,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1550,0,0,1835,1,0,0 +2013,6,30,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2135,-4,0,2255,-10,0,0 +2013,8,15,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-1,0,1650,-12,0,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,-2,0,1425,-11,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1920,-7,0,2115,-16,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1247,1,0,1443,-3,0,0 +2013,7,30,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1705,38,1,1950,25,1,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1738,20,1,1904,7,0,0 +2013,4,9,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1107,0,,1440,0,1,1 +2013,6,16,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1255,-7,0,1434,-15,0,0 +2013,9,6,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1650,-9,0,1815,-9,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,-3,0,1930,-13,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,755,0,0,922,-16,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,835,-5,0,1035,7,0,0 +2013,9,3,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1645,-3,0,1736,-10,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1555,-2,0,1724,-11,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1700,42,1,1755,37,1,0 +2013,5,10,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,702,-4,0,907,8,0,0 +2013,5,23,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-2,0,1700,-17,0,0 +2013,7,25,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-6,0,1947,7,0,0 +2013,7,25,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,0,0,1325,-1,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1631,-3,0,1753,-17,0,0 +2013,6,29,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1100,-5,0,1147,-4,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1627,17,1,1959,22,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1100,-3,0,1430,-14,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-7,0,817,-9,0,0 +2013,10,2,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,935,-7,0,942,-15,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1600,70,1,1931,55,1,0 +2013,7,9,2,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,725,-1,0,948,-7,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,905,-4,0,1437,-1,0,0 +2013,5,28,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,-8,0,1931,35,1,0 +2013,5,2,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1900,-3,0,2238,-26,0,0 +2013,9,23,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,750,14,0,1007,2,0,0 +2013,7,16,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1358,204,1,1651,211,1,0 +2013,5,2,4,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,837,0,,1128,0,1,1 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1955,-1,0,2145,5,0,0 +2013,4,3,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1655,-4,0,39,-14,0,0 +2013,6,25,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,7,0,30,0,0,0 +2013,7,10,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,29,1,1635,24,1,0 +2013,9,11,3,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1859,-2,0,2020,-9,0,0 +2013,8,26,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,1435,11,0,1625,-9,0,0 +2013,7,28,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1343,11,0,1433,15,1,0 +2013,7,8,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1844,54,1,2140,60,1,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,7,0,1325,-5,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,100,1,2222,112,1,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1220,-5,0,1516,1,0,0 +2013,6,12,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,61,1,1835,52,1,0 +2013,10,28,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1403,-1,0,1723,-5,0,0 +2013,9,25,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,-4,0,1312,-15,0,0 +2013,6,6,4,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-8,0,919,-5,0,0 +2013,6,22,6,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,710,-2,0,1011,-2,0,0 +2013,6,29,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1235,113,1,1450,116,1,0 +2013,8,17,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,836,-19,0,0 +2013,5,31,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,37,1,1820,92,1,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1310,-3,0,1643,0,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,725,-3,0,1032,-6,0,0 +2013,8,4,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,1309,-19,0,0 +2013,5,26,7,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,925,-5,0,1300,-18,0,0 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1100,1,0,1420,-12,0,0 +2013,8,2,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2055,22,1,2225,25,1,0 +2013,7,22,1,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1340,7,0,1700,-2,0,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,915,-4,0,1655,27,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-6,0,925,0,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,7,0,2025,-18,0,0 +2013,8,29,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,25,1,2138,14,0,0 +2013,4,4,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,915,42,1,1316,10,0,0 +2013,9,21,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1117,5,0,1240,-1,0,0 +2013,8,26,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1905,5,0,2130,1,0,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,-4,0,1200,-10,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1340,16,1,1440,14,0,0 +2013,9,20,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1329,6,0,1529,0,0,0 +2013,10,31,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,24,1,1640,21,1,0 +2013,10,30,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,33,1,1845,41,1,0 +2013,7,4,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-2,0,1406,8,0,0 +2013,7,2,2,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,-10,0,748,8,0,0 +2013,7,17,3,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-5,0,1633,-7,0,0 +2013,7,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,15,1,2226,8,0,0 +2013,9,23,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1630,-2,0,1829,-20,0,0 +2013,4,6,6,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1840,-5,0,2355,-15,0,0 +2013,9,12,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1305,7,0,1340,-1,0,0 +2013,10,10,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1200,-3,0,1500,-18,0,0 +2013,5,7,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-3,0,1539,-1,0,0 +2013,9,2,1,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1530,237,1,1715,243,1,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,1,0,1351,-4,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,-4,0,1601,-23,0,0 +2013,4,27,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-3,0,1907,-10,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2020,-2,0,2120,-2,0,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1520,-5,0,1637,-12,0,0 +2013,6,26,3,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1705,26,1,1905,12,0,0 +2013,10,20,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2005,48,1,2140,34,1,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1145,10,0,1412,-22,0,0 +2013,7,18,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,22,1,2035,19,1,0 +2013,6,18,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1719,0,,1918,0,1,1 +2013,5,19,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1430,-2,0,1546,33,1,0 +2013,5,14,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-1,0,1018,4,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,7,0,920,33,1,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,817,-4,0,1106,-12,0,0 +2013,8,17,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1351,11,0,1510,8,0,0 +2013,8,4,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1545,1,0,1648,-6,0,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1010,9,0,1113,9,0,0 +2013,8,27,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1725,-1,0,1930,3,0,0 +2013,9,28,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1420,9,0,2200,-8,0,0 +2013,7,14,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1830,-6,0,2124,13,0,0 +2013,6,22,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-5,0,1221,-12,0,0 +2013,5,24,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,14,0,2128,-5,0,0 +2013,10,22,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1157,-3,0,1446,-13,0,0 +2013,5,10,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-12,0,1804,-19,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,-2,0,910,-7,0,0 +2013,9,28,6,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,2,0,2020,11,0,0 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,7,0,1840,0,0,0 +2013,9,4,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-9,0,1729,-14,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-3,0,1336,-22,0,0 +2013,8,31,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1238,12,0,1509,6,0,0 +2013,10,16,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1240,-4,0,1432,-20,0,0 +2013,6,10,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,855,6,0,1055,-10,0,0 +2013,8,6,2,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1245,84,1,1406,103,1,0 +2013,4,7,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1559,-5,0,1856,-21,0,0 +2013,9,18,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1524,-9,0,0 +2013,9,20,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,4,0,2110,-16,0,0 +2013,10,29,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-10,0,1245,-36,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1700,74,1,1835,75,1,0 +2013,5,15,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,615,-5,0,739,6,0,0 +2013,5,8,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-11,0,1409,-17,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,11,0,2106,-7,0,0 +2013,7,23,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,0,,1725,0,1,1 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1131,25,1,1408,5,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,6,0,1051,2,0,0 +2013,5,11,6,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,-8,0,1820,0,0,0 +2013,10,21,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1505,0,0,1557,-16,0,0 +2013,6,25,2,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1501,0,0,1919,1,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-1,0,923,-2,0,0 +2013,5,13,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1005,-10,0,1120,-26,0,0 +2013,7,24,3,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,28,1,2316,5,0,0 +2013,7,1,1,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-7,0,1026,9,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2200,-4,0,2325,-21,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2104,-5,0,129,-14,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1240,-3,0,1710,-14,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1645,13,0,1845,-11,0,0 +2013,10,4,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,6,0,2130,-1,0,0 +2013,8,4,7,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1105,-3,0,1229,-13,0,0 +2013,4,10,3,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,0,0,1351,3,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1000,22,1,1209,4,0,0 +2013,9,6,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1510,7,0,1805,9,0,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1021,-9,0,1249,-5,0,0 +2013,6,6,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,5,0,1257,-7,0,0 +2013,9,1,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1150,-4,0,1500,3,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1345,31,1,1500,25,1,0 +2013,10,1,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,23,1,1955,8,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,-4,0,2319,-14,0,0 +2013,8,5,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1357,0,,1609,0,1,1 +2013,6,3,1,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1947,-1,0,2136,-12,0,0 +2013,5,14,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1130,-3,0,1240,-6,0,0 +2013,5,15,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1220,-6,0,1319,-9,0,0 +2013,10,16,3,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1445,-1,0,1625,-9,0,0 +2013,8,17,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1515,-4,0,1915,-27,0,0 +2013,7,8,1,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,5,0,1345,-2,0,0 +2013,10,3,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2010,36,1,2145,24,1,0 +2013,9,17,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,26,1,1000,14,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,752,-6,0,1049,-8,0,0 +2013,6,12,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,920,-2,0,1120,-8,0,0 +2013,8,22,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,955,-10,0,0 +2013,6,28,5,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1720,-1,0,1824,3,0,0 +2013,7,8,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,645,-1,0,925,-3,0,0 +2013,4,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1950,-2,0,32,2,0,0 +2013,5,26,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-3,0,1305,-11,0,0 +2013,4,7,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,705,-3,0,741,17,1,0 +2013,5,19,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,25,1,0,803,9,0,0 +2013,8,28,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-5,0,1357,10,0,0 +2013,5,9,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1113,-8,0,1437,-20,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2015,-5,0,2123,-15,0,0 +2013,9,19,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1540,75,1,1840,70,1,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,640,-1,0,955,-1,0,0 +2013,6,7,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1204,27,1,1444,13,0,0 +2013,8,12,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1029,-2,0,1323,-6,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,835,-1,0,1000,-4,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,740,0,0,1000,-21,0,0 +2013,7,29,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,935,-10,0,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1015,-7,0,1148,-9,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1325,2,0,1640,-24,0,0 +2013,6,15,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1210,5,0,1335,0,0,0 +2013,7,17,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-3,0,1911,111,1,0 +2013,4,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1500,19,1,1820,13,0,0 +2013,7,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1935,36,1,2058,36,1,0 +2013,4,12,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,55,1,1645,43,1,0 +2013,4,9,2,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1410,-2,0,1910,-4,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-8,0,2311,-3,0,0 +2013,9,10,2,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1600,-5,0,1700,-17,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1830,6,0,2235,27,1,0 +2013,7,2,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1502,-8,0,1550,0,0,0 +2013,6,19,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1150,-3,0,1315,-12,0,0 +2013,9,17,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1237,-2,0,1757,-9,0,0 +2013,5,25,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-7,0,1843,1,0,0 +2013,7,20,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,9,0,1315,-5,0,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1440,4,0,2046,-6,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1745,57,1,1912,53,1,0 +2013,9,6,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-9,0,1105,-31,0,0 +2013,7,11,4,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,167,1,2255,150,1,0 +2013,9,1,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-3,0,1405,-14,0,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,-5,0,1937,-10,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1345,-1,0,1455,-6,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1020,-6,0,1455,-4,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,50,1,1914,76,1,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,11,0,2122,31,1,0 +2013,10,29,2,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1413,-6,0,1801,-9,0,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,11,0,1955,17,1,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1040,-6,0,1621,-10,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,36,1,1645,31,1,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1405,0,0,1455,-7,0,0 +2013,7,14,7,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1225,18,1,1343,2,0,0 +2013,4,7,7,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1521,21,1,1717,42,1,0 +2013,9,7,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,912,-6,0,1039,-8,0,0 +2013,7,5,5,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,-6,0,8,-9,0,0 +2013,10,21,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,2,0,1311,-13,0,0 +2013,7,1,1,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1725,-4,0,1730,-14,0,0 +2013,9,7,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1507,-7,0,2010,0,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,2025,97,1,2245,87,1,0 +2013,10,7,1,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1930,36,1,2238,39,1,0 +2013,10,20,7,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,605,-1,0,805,-12,0,0 +2013,5,6,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,755,20,1,921,29,1,0 +2013,10,18,5,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,74,1,2205,62,1,0 +2013,4,1,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1457,7,0,1615,0,0,0 +2013,6,26,3,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1747,43,1,2030,92,1,0 +2013,9,23,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-6,0,1524,-20,0,0 +2013,10,3,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,940,-5,0,1046,-1,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1645,9,0,2135,5,0,0 +2013,10,15,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1710,0,0,1830,-15,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,-2,0,1315,-9,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1230,-5,0,1449,1,0,0 +2013,5,17,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1528,-5,0,1835,-11,0,0 +2013,8,2,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,600,0,0,615,-10,0,0 +2013,10,13,7,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1725,-7,0,2002,-3,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,620,-3,0,820,-3,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2159,-2,0,2314,-12,0,0 +2013,5,16,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1700,-2,0,2025,-22,0,0 +2013,6,2,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1007,-9,0,0 +2013,10,23,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,711,-7,0,1015,3,0,0 +2013,8,6,2,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1425,-4,0,1607,-1,0,0 +2013,6,5,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,541,14,0,901,14,0,0 +2013,7,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,800,-3,0,1016,-9,0,0 +2013,6,11,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1357,-8,0,1542,-14,0,0 +2013,4,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1505,35,1,1632,26,1,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,934,-4,0,1141,-13,0,0 +2013,5,17,5,9E,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,615,-6,0,752,-23,0,0 +2013,4,28,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-7,0,1410,-13,0,0 +2013,8,5,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,835,-1,0,940,-8,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1040,-5,0,1410,-9,0,0 +2013,8,2,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,0,,1405,0,1,1 +2013,7,12,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,65,1,2035,55,1,0 +2013,6,30,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,54,1,1800,67,1,0 +2013,9,8,7,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1030,-6,0,1311,-8,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,-2,0,1235,-6,0,0 +2013,7,27,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,753,-5,0,1555,-15,0,0 +2013,7,14,7,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1155,83,1,1300,93,1,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,955,129,1,1115,120,1,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2355,8,0,723,0,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,-5,0,2222,17,1,0 +2013,7,8,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1735,17,1,1925,-2,0,0 +2013,4,13,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-6,0,1345,-6,0,0 +2013,9,13,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,815,-12,0,1221,-9,0,0 +2013,6,17,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,-2,0,835,-1,0,0 +2013,6,22,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2059,152,1,2345,140,1,0 +2013,9,27,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1135,-10,0,1150,-15,0,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,15,1,1443,9,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-7,0,945,2,0,0 +2013,8,21,3,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2100,2,0,521,-2,0,0 +2013,5,2,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1750,147,1,2054,140,1,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2045,4,0,2210,0,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,15,1,1709,-9,0,0 +2013,10,9,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-4,0,1407,3,0,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-9,0,858,-23,0,0 +2013,9,17,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,816,-6,0,912,-9,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,830,2,0,1049,-3,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1725,-1,0,2010,1,0,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1030,-2,0,1155,-10,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1445,7,0,1623,-5,0,0 +2013,7,24,3,DL,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-2,0,1831,-2,0,0 +2013,5,15,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,4,0,1354,-10,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,752,-4,0,1405,-4,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1015,-6,0,1221,-16,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1506,-1,0,1602,22,1,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1240,11,0,1720,4,0,0 +2013,6,17,1,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,-4,0,2000,-18,0,0 +2013,8,16,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,630,3,0,836,-19,0,0 +2013,7,23,2,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1035,-7,0,1320,0,0,0 +2013,10,18,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1510,-1,0,1800,-11,0,0 +2013,4,18,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,68,1,755,59,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,20,1,2324,5,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1317,10,0,1614,4,0,0 +2013,8,20,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1320,-9,0,1554,-10,0,0 +2013,4,5,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1800,-4,0,1905,-11,0,0 +2013,8,27,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,-5,0,2015,16,1,0 +2013,7,8,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,700,0,0,820,-6,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1010,-1,0,1455,-31,0,0 +2013,4,25,4,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-8,0,1802,-12,0,0 +2013,10,30,3,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1405,-2,0,1734,-22,0,0 +2013,6,25,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-1,0,1900,-1,0,0 +2013,7,2,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,-4,0,1920,5,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1556,-2,0,1816,-19,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2000,-5,0,2152,-12,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,8,0,950,-6,0,0 +2013,9,17,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,-7,0,1633,-14,0,0 +2013,10,14,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-8,0,1911,-11,0,0 +2013,10,22,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1331,-3,0,1650,-20,0,0 +2013,5,22,3,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,9,0,1745,7,0,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1630,25,1,1740,20,1,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-2,0,1310,0,0,0 +2013,9,24,2,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1725,0,0,1845,-15,0,0 +2013,10,29,2,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,945,-2,0,1050,-7,0,0 +2013,6,20,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,25,1,1530,18,1,0 +2013,7,26,5,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,741,-5,0,926,-21,0,0 +2013,9,21,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1840,0,0,1957,-6,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,834,-5,0,1020,-15,0,0 +2013,9,1,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,123,1,1734,185,1,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-4,0,2322,6,0,0 +2013,7,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1116,-6,0,1232,-11,0,0 +2013,9,29,7,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,930,-1,0,1740,-2,0,0 +2013,7,8,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1002,110,1,1225,109,1,0 +2013,8,31,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1355,41,1,1440,20,1,0 +2013,6,26,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,70,1,1905,65,1,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,3,0,1150,0,0,0 +2013,7,6,6,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1136,-7,0,1415,-22,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,2,0,1025,19,1,0 +2013,7,26,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1442,-4,0,1626,-26,0,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-1,0,908,-13,0,0 +2013,5,14,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,848,61,1,1142,40,1,0 +2013,6,27,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,19,1,1710,6,0,0 +2013,6,14,5,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-8,0,922,-16,0,0 +2013,7,16,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,-9,0,2048,-17,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-1,0,15,0,0,0 +2013,4,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1727,-4,0,1918,-8,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,59,1,2244,74,1,0 +2013,10,27,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,900,-11,0,920,-5,0,0 +2013,8,29,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-3,0,1350,-1,0,0 +2013,9,29,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-1,0,2155,-4,0,0 +2013,10,21,1,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,722,-5,0,1016,2,0,0 +2013,7,14,7,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,1950,5,0,42,7,0,0 +2013,9,5,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1109,-9,0,1342,-46,0,0 +2013,7,21,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1515,15,1,1800,11,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1800,23,1,1925,16,1,0 +2013,9,3,2,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1745,13,0,2000,7,0,0 +2013,4,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1750,1,0,1855,-3,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,851,-5,0,1220,-18,0,0 +2013,6,26,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1337,74,1,1440,65,1,0 +2013,9,12,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,3,0,1349,0,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,111,1,1205,108,1,0 +2013,7,11,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,43,1,750,40,1,0 +2013,9,2,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,1310,-8,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1535,38,1,1648,11,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2030,15,1,2245,11,0,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,4,0,1435,1,0,0 +2013,6,15,6,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,855,-2,0,1130,-8,0,0 +2013,7,1,1,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1650,9,0,1845,-21,0,0 +2013,8,15,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1848,-2,0,2100,0,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,0,0,1504,26,1,0 +2013,4,8,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,655,6,0,936,-17,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,7,0,1214,-1,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,22,1,1310,22,1,0 +2013,10,3,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1330,2,0,1625,2,0,0 +2013,7,16,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,105,1,2042,97,1,0 +2013,9,16,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1010,5,0,1130,0,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1953,8,0,2330,-20,0,0 +2013,10,7,1,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1125,-5,0,1240,-11,0,0 +2013,7,1,1,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2359,13,0,828,1,0,0 +2013,5,31,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,625,-1,0,918,-8,0,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,74,1,1823,83,1,0 +2013,10,28,1,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,-1,0,1245,-27,0,0 +2013,4,14,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,-4,0,1410,2,0,0 +2013,10,11,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,925,1,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1255,11,0,1435,4,0,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,-3,0,1000,-21,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,940,1,0,1215,6,0,0 +2013,9,10,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,39,10,0,501,-7,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,-4,0,1301,-19,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,1,0,1745,-13,0,0 +2013,6,17,1,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,540,81,1,644,89,1,0 +2013,9,26,4,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1938,-12,0,2313,-19,0,0 +2013,8,25,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1740,10,0,1835,7,0,0 +2013,10,25,5,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,650,-2,0,848,13,0,0 +2013,9,20,5,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,121,1,1735,139,1,0 +2013,9,9,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,820,-5,0,1117,2,0,0 +2013,7,20,6,9E,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,-5,0,1750,-15,0,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1415,-6,0,1633,-3,0,0 +2013,8,29,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,635,1,0,740,-23,0,0 +2013,4,9,2,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1010,-5,0,1455,-10,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1627,-5,0,1822,-13,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,-9,0,1248,10,0,0 +2013,8,16,5,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,730,1,0,1538,7,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,0,0,1540,26,1,0 +2013,9,25,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,855,0,0,1120,15,1,0 +2013,8,5,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1001,-3,0,1152,-15,0,0 +2013,10,26,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1535,-2,0,1655,-3,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1726,0,0,1919,2,0,0 +2013,10,13,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1125,7,0,1230,1,0,0 +2013,7,2,2,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1243,-9,0,1348,-13,0,0 +2013,5,11,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,800,-8,0,920,-26,0,0 +2013,8,3,6,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,854,74,1,1035,63,1,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1307,-5,0,1533,-6,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,-6,0,1540,-11,0,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,2,0,1210,-1,0,0 +2013,9,28,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1427,-12,0,1535,-4,0,0 +2013,10,29,2,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1725,-2,0,1955,-6,0,0 +2013,8,25,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1750,-3,0,1910,2,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,-3,0,945,5,0,0 +2013,9,24,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,930,0,0,1150,-13,0,0 +2013,6,25,2,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,925,-1,0,1105,25,1,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1459,-7,0,1844,-22,0,0 +2013,9,5,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1158,22,1,1243,9,0,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1745,76,1,2316,63,1,0 +2013,5,19,7,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1711,3,0,1846,10,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1100,6,0,1330,-12,0,0 +2013,7,2,2,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,16,1,1755,37,1,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2155,37,1,2255,36,1,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,630,-3,0,755,-18,0,0 +2013,6,28,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,17,1,2056,32,1,0 +2013,6,13,4,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1744,0,0,2116,26,1,0 +2013,8,28,3,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,-6,0,1040,14,0,0 +2013,7,24,3,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,-1,0,1910,-17,0,0 +2013,8,3,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,14,0,641,5,0,0 +2013,4,16,2,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2153,-1,0,2337,-8,0,0 +2013,6,7,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-4,0,1028,-7,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1849,10,0,1946,8,0,0 +2013,6,25,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1415,-11,0,1549,-13,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,25,1,1015,22,1,0 +2013,9,16,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-13,0,2055,-16,0,0 +2013,10,20,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1201,41,1,1315,23,1,0 +2013,5,2,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1320,39,1,1940,22,1,0 +2013,7,8,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-12,0,151,-18,0,0 +2013,9,23,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1309,-8,0,1416,-14,0,0 +2013,7,28,7,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-4,0,1745,-17,0,0 +2013,9,8,7,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,-4,0,1415,-5,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,68,1,1245,64,1,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1800,-4,0,1933,-9,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1919,28,1,2201,28,1,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1525,45,1,1655,47,1,0 +2013,7,29,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-3,0,930,14,0,0 +2013,5,3,5,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,905,4,0,0 +2013,9,20,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1855,115,1,2000,116,1,0 +2013,4,29,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1649,156,1,1758,146,1,0 +2013,6,2,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1015,9,0,1115,3,0,0 +2013,4,24,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,-5,0,911,-13,0,0 +2013,8,27,2,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,629,-2,0,929,-18,0,0 +2013,4,20,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-1,0,1238,-25,0,0 +2013,10,21,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1600,10,0,1700,7,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1100,-17,0,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,219,1,2149,245,1,0 +2013,5,3,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,750,-7,0,1044,-20,0,0 +2013,8,28,3,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,952,-11,0,1010,-4,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,740,-1,0,1236,-21,0,0 +2013,4,13,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1311,12,0,1625,9,0,0 +2013,4,7,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1000,-2,0,1105,-4,0,0 +2013,10,6,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-6,0,2149,-2,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,3,0,1735,-17,0,0 +2013,7,20,6,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1234,-6,0,2103,-3,0,0 +2013,9,9,1,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-7,0,1355,-4,0,0 +2013,6,25,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1750,238,1,2115,260,1,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1128,-4,0,1312,9,0,0 +2013,4,5,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1605,1,0,1655,-8,0,0 +2013,6,4,2,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1418,-11,0,1550,-24,0,0 +2013,4,27,6,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,5,0,1655,4,0,0 +2013,5,24,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1240,12,0,1525,0,0,0 +2013,7,12,5,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,-9,0,1600,-18,0,0 +2013,7,20,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1300,-2,0,2132,8,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,845,11,0,1410,5,0,0 +2013,6,21,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2030,-3,0,2145,16,1,0 +2013,8,26,1,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1450,73,1,1634,56,1,0 +2013,9,10,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1510,-2,0,1758,-36,0,0 +2013,9,7,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1610,-5,0,1816,-20,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,5,0,1420,-29,0,0 +2013,5,23,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1915,4,0,2015,-5,0,0 +2013,10,6,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1900,-1,0,2000,-3,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,0,,1735,0,1,1 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1545,-5,0,1720,-3,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2035,12,0,2246,7,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,6,0,1545,7,0,0 +2013,6,11,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1157,1,0,1809,-9,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1725,79,1,1850,0,1,1 +2013,4,27,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1853,-6,0,2105,-11,0,0 +2013,9,11,3,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1515,0,0,1630,-7,0,0 +2013,4,7,7,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1845,18,1,2217,23,1,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,-4,0,1256,12,0,0 +2013,9,25,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,-10,0,1316,-15,0,0 +2013,6,9,7,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-5,0,1106,-4,0,0 +2013,8,30,5,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,645,-5,0,1455,-17,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,922,-3,0,1135,-26,0,0 +2013,8,28,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1706,-3,0,1838,-1,0,0 +2013,9,7,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-12,0,1655,-31,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-3,0,1330,-22,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,-3,0,1518,-2,0,0 +2013,4,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,818,0,0,1305,2,0,0 +2013,6,21,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,543,17,1,1155,17,1,0 +2013,8,20,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,-1,0,2247,-3,0,0 +2013,8,9,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1908,153,1,2128,162,1,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1345,27,1,1551,22,1,0 +2013,4,16,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,748,-5,0,1013,7,0,0 +2013,7,18,4,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,69,1,1355,92,1,0 +2013,5,28,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1101,-17,0,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-2,0,1231,-10,0,0 +2013,7,27,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1150,-2,0,1310,-8,0,0 +2013,10,15,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-1,0,1055,-6,0,0 +2013,8,22,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1715,87,1,1755,71,1,0 +2013,7,25,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-7,0,1014,-13,0,0 +2013,7,2,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,745,-2,0,1614,8,0,0 +2013,4,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1520,-2,0,1624,-6,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,43,1,1440,43,1,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1429,7,0,1623,-2,0,0 +2013,6,18,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2017,21,1,2250,6,0,0 +2013,9,5,4,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1606,-5,0,1624,-1,0,0 +2013,4,21,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1555,-4,0,1650,-19,0,0 +2013,7,21,7,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1943,-8,0,2112,15,1,0 +2013,8,23,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-6,0,938,-2,0,0 +2013,6,10,1,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,830,-1,0,1022,-1,0,0 +2013,6,3,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1120,-6,0,1953,-29,0,0 +2013,8,4,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1058,67,1,1254,66,1,0 +2013,7,8,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-4,0,900,-15,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1915,22,1,2035,8,0,0 +2013,9,12,4,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,221,1,2104,224,1,0 +2013,9,3,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1859,3,0,2049,-2,0,0 +2013,8,2,5,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,-9,0,1650,-20,0,0 +2013,9,4,3,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,1,0,2140,9,0,0 +2013,9,21,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,500,-7,0,754,-3,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1550,5,0,1940,19,1,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1710,-2,0,2033,-23,0,0 +2013,10,21,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-5,0,1824,-5,0,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,4,0,2255,14,0,0 +2013,5,7,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,705,-8,0,735,-23,0,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,11,0,1350,-10,0,0 +2013,5,18,6,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1810,-8,0,1940,-9,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1230,20,1,1525,27,1,0 +2013,5,16,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,2,0,1044,-11,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2035,-5,0,2254,-18,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2146,-3,0,15,-19,0,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1315,11,0,1610,3,0,0 +2013,6,19,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1500,0,0,1535,4,0,0 +2013,10,26,6,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,750,-3,0,1345,-26,0,0 +2013,6,4,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-5,0,1351,-6,0,0 +2013,7,31,3,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1021,9,0,1356,4,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1535,6,0,1710,-16,0,0 +2013,6,30,7,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,240,1,1435,253,1,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1710,119,1,1815,152,1,0 +2013,10,10,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,5,0,1234,6,0,0 +2013,6,1,6,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1134,-14,0,1515,-25,0,0 +2013,6,5,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1745,3,0,1959,8,0,0 +2013,7,18,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1522,0,0,1829,-6,0,0 +2013,6,3,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1345,-2,0,1520,-16,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,1,0,1250,-8,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,-4,0,1005,-9,0,0 +2013,8,23,5,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1036,10,0,1512,-6,0,0 +2013,5,8,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1538,2,0,1910,-54,0,0 +2013,6,7,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1435,10,0,1600,7,0,0 +2013,8,5,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1254,3,0,1614,-9,0,0 +2013,9,10,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2222,16,1,2357,1,0,0 +2013,5,16,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1050,-4,0,1209,-6,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,-5,0,1924,-15,0,0 +2013,7,19,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1450,1,0,1545,-10,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,77,1,1940,68,1,0 +2013,4,27,6,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,-4,0,1209,-5,0,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2000,36,1,2218,40,1,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,20,1,2250,19,1,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1130,5,0,1245,-2,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1655,1,0,1750,5,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,0,0,1710,9,0,0 +2013,6,7,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1642,0,0,1704,3,0,0 +2013,6,15,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1735,33,1,2250,15,1,0 +2013,6,29,6,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,11,0,1120,2,0,0 +2013,10,30,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1506,-5,0,1709,19,1,0 +2013,8,23,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,635,3,0,930,7,0,0 +2013,5,12,7,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,56,1,2050,50,1,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,1,0,919,57,1,0 +2013,6,23,7,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,0,0,1357,0,0,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,53,1,1710,48,1,0 +2013,8,18,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,-5,0,1411,3,0,0 +2013,9,1,7,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1750,17,1,2020,10,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,-3,0,1730,-8,0,0 +2013,7,4,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1109,-12,0,1620,-22,0,0 +2013,7,23,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1845,-10,0,2110,-25,0,0 +2013,9,23,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1730,16,1,1905,10,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-8,0,950,4,0,0 +2013,10,23,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1310,13,0,1605,-21,0,0 +2013,8,10,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,900,-2,0,1020,-12,0,0 +2013,9,16,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,-4,0,1518,-7,0,0 +2013,8,22,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1510,138,1,1717,130,1,0 +2013,8,9,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1215,0,0,1315,-3,0,0 +2013,9,4,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-4,0,1016,12,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1430,8,0,1555,-8,0,0 +2013,7,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1016,11,0,1137,17,1,0 +2013,8,5,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,-3,0,2125,-5,0,0 +2013,5,10,5,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1310,2,0,1620,-12,0,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2157,-5,0,2250,-9,0,0 +2013,9,7,6,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-7,0,1349,-26,0,0 +2013,4,2,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,845,8,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1045,3,0,1826,-3,0,0 +2013,9,6,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1200,-4,0,1310,-5,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,5,0,1902,-15,0,0 +2013,10,16,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1258,-21,0,0 +2013,4,3,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-4,0,1630,5,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1012,-1,0,1159,-17,0,0 +2013,6,4,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,0,0,1934,6,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,4,0,1355,-1,0,0 +2013,7,30,2,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2349,73,1,715,57,1,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1400,7,0,1515,-1,0,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,912,-7,0,1200,20,1,0 +2013,7,2,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,0,0,720,-8,0,0 +2013,7,23,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1825,-5,0,2011,-11,0,0 +2013,7,19,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1040,-5,0,1318,1,0,0 +2013,4,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2045,-5,0,2145,1,0,0 +2013,8,23,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,-4,0,1225,-5,0,0 +2013,5,3,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,625,-5,0,935,0,0,0 +2013,5,9,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,47,1,2125,33,1,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1155,1,0,1435,-4,0,0 +2013,10,25,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,59,1,1115,64,1,0 +2013,7,31,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,755,1,0,1115,-14,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-2,0,1016,11,0,0 +2013,9,4,3,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1217,1,0,1314,-3,0,0 +2013,9,25,3,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,59,1,1359,66,1,0 +2013,8,10,6,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,-2,0,1655,-27,0,0 +2013,6,5,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-8,0,930,-14,0,0 +2013,5,22,3,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,-2,0,2201,20,1,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,6,0,2140,-4,0,0 +2013,8,17,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,14,0,1630,17,1,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,742,0,0,1046,-11,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1647,2,0,1834,9,0,0 +2013,5,3,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1214,-2,0,1430,-40,0,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1400,-1,0,1505,-5,0,0 +2013,10,7,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-5,0,532,-10,0,0 +2013,7,7,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-9,0,1146,-11,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-3,0,1409,-36,0,0 +2013,7,9,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1240,35,1,1537,35,1,0 +2013,9,30,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,720,-1,0,755,-8,0,0 +2013,6,22,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1205,-4,0,2005,-7,0,0 +2013,7,19,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1540,0,0,1826,-18,0,0 +2013,4,21,7,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-1,0,835,-11,0,0 +2013,5,26,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-4,0,1405,-7,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1038,-5,0,1150,-9,0,0 +2013,5,13,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,810,-5,0,920,-8,0,0 +2013,4,13,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1131,-7,0,1920,-19,0,0 +2013,6,30,7,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1921,-6,0,2023,-10,0,0 +2013,7,18,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1535,17,1,1814,8,0,0 +2013,7,3,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,620,0,0,910,5,0,0 +2013,8,18,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,-2,0,1331,-3,0,0 +2013,8,6,2,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,955,28,1,1130,28,1,0 +2013,5,29,3,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,835,3,0,1105,7,0,0 +2013,7,24,3,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1731,8,0,2009,11,0,0 +2013,7,15,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,724,-6,0,1020,2,0,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2250,0,0,124,-20,0,0 +2013,5,11,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,726,-6,0,1020,-3,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1950,6,0,2232,-15,0,0 +2013,5,31,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,800,-17,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1958,-8,0,2356,-18,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,29,1,1809,37,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1055,-1,0,1301,-12,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-6,0,1359,-26,0,0 +2013,10,28,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1024,-17,0,0 +2013,8,1,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,745,0,0,1552,-10,0,0 +2013,5,28,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1005,-6,0,1120,-7,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-1,0,2159,-12,0,0 +2013,6,15,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1430,2,0,1530,-1,0,0 +2013,4,14,7,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1410,0,0,1700,-8,0,0 +2013,6,23,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1330,-6,0,1709,6,0,0 +2013,7,28,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-6,0,1404,-14,0,0 +2013,4,1,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,2003,-9,0,2150,-19,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,830,16,1,945,5,0,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1005,14,0,1535,15,1,0 +2013,4,18,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,0,0,1220,3,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2132,8,0,2255,-6,0,0 +2013,6,24,1,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,-6,0,2150,-2,0,0 +2013,9,30,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,6,0,1650,-6,0,0 +2013,7,28,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1222,297,1,1743,283,1,0 +2013,8,22,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-8,0,1123,0,0,0 +2013,6,1,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2030,5,0,2224,0,0,0 +2013,10,27,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,-4,0,2057,1,0,0 +2013,8,5,1,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,805,-1,0,924,-10,0,0 +2013,10,15,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,735,-8,0,905,-5,0,0 +2013,4,5,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,-2,0,2220,-38,0,0 +2013,8,9,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1910,34,1,2035,37,1,0 +2013,9,22,7,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1650,-5,0,1939,-14,0,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1645,2,0,2015,-44,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,72,1,2140,61,1,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-5,0,1233,-2,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1252,-6,0,1504,-18,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,2103,-5,0,2310,-18,0,0 +2013,5,23,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,40,1,30,37,1,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,3,0,1144,1,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1750,-4,0,2045,-8,0,0 +2013,6,23,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1624,-1,0,27,16,1,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,615,-5,0,730,-9,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1020,-3,0,1430,-3,0,0 +2013,7,24,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1150,-3,0,2029,-20,0,0 +2013,4,12,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1552,0,,1615,0,1,1 +2013,9,23,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,-5,0,1659,-11,0,0 +2013,10,8,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1930,7,0,2025,5,0,0 +2013,6,16,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1745,-3,0,2117,24,1,0 +2013,5,14,2,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,-3,0,1220,1,0,0 +2013,5,21,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,26,1,1320,27,1,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,0,0,903,-3,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,905,1,0,1025,34,1,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1015,-4,0,1141,-11,0,0 +2013,7,24,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,-8,0,1335,-11,0,0 +2013,9,23,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-7,0,1502,-17,0,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,745,-5,0,1130,-17,0,0 +2013,9,7,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1525,0,0,1605,1,0,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,-6,0,1455,5,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,13,0,1600,5,0,0 +2013,4,24,3,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1634,61,1,1829,62,1,0 +2013,4,16,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-3,0,920,24,1,0 +2013,7,15,1,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1645,-1,0,1825,5,0,0 +2013,10,11,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,752,-4,0,0 +2013,8,20,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1030,-4,0,1125,-16,0,0 +2013,7,25,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1455,19,1,1610,36,1,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,-2,0,1158,17,1,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2240,10,0,2348,24,1,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,907,-9,0,1140,-6,0,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1116,0,,1209,0,1,1 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,-2,0,2219,-9,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1530,0,0,1634,-2,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,-1,0,2100,-3,0,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-5,0,855,-3,0,0 +2013,7,13,6,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1450,171,1,1711,169,1,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,0,0,1336,-6,0,0 +2013,8,13,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1255,2,0,1420,11,0,0 +2013,9,15,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1135,-7,0,1150,-8,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1505,-2,0,1654,-12,0,0 +2013,7,27,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1620,-3,0,1705,-2,0,0 +2013,10,17,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,815,-3,0,1017,16,1,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1420,75,1,1545,73,1,0 +2013,8,14,3,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-4,0,1124,-26,0,0 +2013,7,3,3,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1957,165,1,2130,141,1,0 +2013,9,28,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,625,-8,0,832,-13,0,0 +2013,7,23,2,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,620,-2,0,825,-5,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1805,11,0,1935,-1,0,0 +2013,4,4,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-1,0,1021,-8,0,0 +2013,6,23,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,715,0,0,1526,4,0,0 +2013,9,5,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-1,0,1755,-1,0,0 +2013,9,14,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,640,-2,0,935,0,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2009,-4,0,2129,5,0,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1400,1,0,1525,-7,0,0 +2013,7,26,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,-6,0,2215,-19,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1335,-4,0,1525,-26,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,-2,0,1130,4,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-2,0,943,0,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-8,0,1634,-4,0,0 +2013,4,30,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,-8,0,2040,-19,0,0 +2013,8,26,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,810,-2,0,910,-6,0,0 +2013,5,11,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-6,0,913,-16,0,0 +2013,4,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,49,1,1126,26,1,0 +2013,10,2,3,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1155,7,0,1310,-1,0,0 +2013,7,3,3,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1205,13,0,1320,20,1,0 +2013,10,12,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1020,0,0,1245,-17,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,-6,0,1829,-6,0,0 +2013,9,5,4,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,-9,0,1310,-19,0,0 +2013,4,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,3,0,1030,6,0,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1400,26,1,1505,19,1,0 +2013,8,22,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,-2,0,1210,4,0,0 +2013,5,6,1,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,845,-3,0,1215,1,0,0 +2013,9,6,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,940,-9,0,0 +2013,8,5,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1745,-1,0,2110,-36,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1715,21,1,1905,0,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,82,1,2330,75,1,0 +2013,4,26,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1005,-2,0,1125,-10,0,0 +2013,5,6,1,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1100,-3,0,1303,-24,0,0 +2013,9,7,6,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1835,-13,0,2158,-55,0,0 +2013,6,7,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1615,54,1,1825,86,1,0 +2013,4,6,6,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1029,-12,0,1312,-24,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-6,0,1300,10,0,0 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,955,-1,0,1205,5,0,0 +2013,7,18,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,905,-3,0,1020,-4,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,55,1,2355,56,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,852,34,1,1035,23,1,0 +2013,4,27,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1258,33,1,1433,25,1,0 +2013,10,6,7,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2040,17,1,2250,7,0,0 +2013,6,21,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-1,0,1316,-21,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,76,1,2225,83,1,0 +2013,5,15,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,53,1,1950,19,1,0 +2013,10,15,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-10,0,649,-4,0,0 +2013,8,26,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-8,0,755,-20,0,0 +2013,6,22,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,710,52,1,939,50,1,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,-4,0,2221,-13,0,0 +2013,7,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1415,-4,0,2020,3,0,0 +2013,9,12,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1915,10,0,2013,11,0,0 +2013,4,18,4,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1644,-13,0,1829,-25,0,0 +2013,9,7,6,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1702,3,0,1840,4,0,0 +2013,7,3,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1802,5,0,1848,2,0,0 +2013,8,11,7,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1130,-6,0,1838,-7,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,700,0,,805,0,1,1 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,-2,0,1300,-4,0,0 +2013,7,7,7,EV,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,945,-5,0,1130,-23,0,0 +2013,9,11,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1133,-1,0,0 +2013,9,19,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-5,0,1912,-9,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1740,29,1,1955,30,1,0 +2013,8,14,3,FL,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1125,-2,0,1235,-3,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2020,4,0,2125,-1,0,0 +2013,8,4,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,4,0,1310,-4,0,0 +2013,5,9,4,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,605,-6,0,749,-12,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,0,0,1130,16,1,0 +2013,4,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1345,33,1,1455,33,1,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1700,142,1,1810,129,1,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2114,17,1,2236,10,0,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1850,4,0,2200,3,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1540,4,0,1745,-10,0,0 +2013,4,17,3,9E,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,822,-16,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,22,1,2155,15,1,0 +2013,5,18,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,640,-4,0,925,-5,0,0 +2013,9,14,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1520,-5,0,1805,-4,0,0 +2013,9,12,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-3,0,1019,-12,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1949,118,1,2305,117,1,0 +2013,6,15,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-6,0,1414,-5,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,653,23,1,1006,10,0,0 +2013,5,7,2,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,-2,0,1736,-20,0,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,51,1,19,42,1,0 +2013,9,1,7,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1720,-1,0,1905,-15,0,0 +2013,8,25,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-12,0,1927,-15,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2206,-3,0,2336,5,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,2,0,2249,-15,0,0 +2013,10,4,5,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,2,0,1145,-6,0,0 +2013,7,12,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1434,8,0,1610,7,0,0 +2013,8,23,5,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-1,0,905,-6,0,0 +2013,7,31,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,0,0,1450,3,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,801,-12,0,0 +2013,7,11,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1627,136,1,2032,132,1,0 +2013,4,4,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1710,3,0,1835,1,0,0 +2013,5,21,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-1,0,1644,6,0,0 +2013,5,8,3,OO,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-8,0,1556,-12,0,0 +2013,4,14,7,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1850,46,1,2129,44,1,0 +2013,5,9,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1940,38,1,2055,32,1,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,14,0,1350,19,1,0 +2013,7,26,5,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1920,21,1,2021,21,1,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1905,28,1,2140,24,1,0 +2013,7,27,6,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,-3,0,745,8,0,0 +2013,5,8,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,842,-2,0,0 +2013,8,22,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,19,1,2138,16,1,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,705,-2,0,810,-7,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,48,1,1856,38,1,0 +2013,6,14,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1836,-5,0,2015,48,1,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,5,0,1937,-14,0,0 +2013,9,3,2,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1844,-1,0,2015,-12,0,0 +2013,10,21,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-7,0,1218,2,0,0 +2013,5,10,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,12,0,1540,23,1,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,-3,0,1050,-23,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1630,12,0,2010,8,0,0 +2013,8,8,4,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,29,1,1853,31,1,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1620,5,0,1705,0,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1058,18,1,1348,-6,0,0 +2013,4,24,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1700,-7,0,1732,-1,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1242,-7,0,1840,-16,0,0 +2013,7,5,5,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-12,0,922,-15,0,0 +2013,6,22,6,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2012,53,1,2252,30,1,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1640,3,0,1820,3,0,0 +2013,6,20,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,620,-11,0,0 +2013,7,20,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-3,0,1235,-16,0,0 +2013,6,10,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-3,0,1006,2,0,0 +2013,6,1,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,16,1,1055,37,1,0 +2013,7,28,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-6,0,1749,-21,0,0 +2013,6,9,7,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1004,-7,0,1110,-7,0,0 +2013,9,7,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1720,33,1,1815,34,1,0 +2013,10,12,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-9,0,1130,-30,0,0 +2013,7,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,815,-8,0,935,2,0,0 +2013,8,4,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-2,0,1759,7,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,830,-1,0,1015,-11,0,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1850,-1,0,2020,-6,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,935,-6,0,1145,-18,0,0 +2013,8,28,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,635,-2,0,830,-14,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-1,0,905,-1,0,0 +2013,8,13,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,3,0,945,-10,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-7,0,905,-8,0,0 +2013,4,1,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-7,0,1226,-16,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1220,138,1,1741,142,1,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1940,-1,0,2101,-15,0,0 +2013,10,3,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,-6,0,1728,-5,0,0 +2013,9,13,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1445,0,0,1605,4,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2050,30,1,2318,-7,0,0 +2013,10,21,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1755,-3,0,1857,1,0,0 +2013,5,25,6,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,820,-5,0,930,-8,0,0 +2013,4,8,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,23,1,2245,26,1,0 +2013,5,17,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1900,53,1,2031,57,1,0 +2013,5,29,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-5,0,830,-9,0,0 +2013,8,27,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,-8,0,1943,-15,0,0 +2013,8,2,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,2,0,2049,-3,0,0 +2013,9,19,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,12,0,1214,43,1,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,6,0,1455,28,1,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1535,-3,0,1910,-20,0,0 +2013,9,14,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,945,-7,0,1139,-21,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1145,1,0,1350,0,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2000,47,1,2130,37,1,0 +2013,8,18,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2025,-6,0,2156,25,1,0 +2013,7,14,7,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1944,0,0,2304,0,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,33,1,1605,41,1,0 +2013,5,17,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2030,6,0,2356,-40,0,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2040,31,1,2350,34,1,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,6,0,1638,11,0,0 +2013,8,21,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,3,0,1531,0,0,0 +2013,7,14,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1530,-2,0,1640,0,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1215,2,0,1715,-15,0,0 +2013,10,21,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,815,-7,0,1050,-1,0,0 +2013,7,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1035,211,1,1200,204,1,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1035,-4,0,1145,-4,0,0 +2013,9,26,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-5,0,641,0,0,0 +2013,6,11,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1657,96,1,1826,86,1,0 +2013,8,12,1,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,211,1,2018,210,1,0 +2013,9,8,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,-6,0,2101,3,0,0 +2013,7,11,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1900,0,0,2220,-11,0,0 +2013,10,22,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,-2,0,1415,-7,0,0 +2013,7,13,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1200,1,0,1320,11,0,0 +2013,4,5,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,-2,0,2135,-10,0,0 +2013,7,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1346,-5,0,1705,-16,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,834,-7,0,1030,-31,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,-4,0,2235,-13,0,0 +2013,6,26,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,545,0,0,709,-10,0,0 +2013,7,19,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1925,9,0,2000,6,0,0 +2013,6,26,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2016,122,1,2144,117,1,0 +2013,10,1,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1305,-5,0,1355,-9,0,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,24,1,2345,-8,0,0 +2013,7,3,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,5,0,2102,19,1,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2025,42,1,2235,31,1,0 +2013,9,5,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-1,0,1030,-12,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,-5,0,1925,-10,0,0 +2013,6,19,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,38,1,1903,18,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1959,0,0,2136,-2,0,0 +2013,4,3,3,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2250,-1,0,730,4,0,0 +2013,6,26,3,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,600,14,0,820,3,0,0 +2013,8,23,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,-4,0,1842,-2,0,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,-1,0,1040,3,0,0 +2013,8,5,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,715,-1,0,950,-14,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,7,0,1920,19,1,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1300,-4,0,1625,-7,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1825,48,1,2005,37,1,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,13,0,1720,10,0,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1735,207,1,1850,202,1,0 +2013,10,21,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,1,0,1130,-8,0,0 +2013,6,27,4,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1543,95,1,1835,124,1,0 +2013,5,13,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-3,0,1757,7,0,0 +2013,10,21,1,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1140,8,0,1420,6,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1258,-6,0,1614,-16,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,650,-5,0,1025,12,0,0 +2013,4,3,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,504,-1,0,712,3,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,54,1,1800,42,1,0 +2013,6,26,3,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,-4,0,950,-8,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1810,117,1,1930,101,1,0 +2013,7,14,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1435,0,,1605,0,1,1 +2013,9,23,1,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1020,-7,0,1310,-19,0,0 +2013,8,26,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1627,-6,0,1737,-4,0,0 +2013,9,24,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,-3,0,1729,-15,0,0 +2013,8,18,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-5,0,1600,-6,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2208,3,0,2359,-3,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,830,17,1,1045,1,0,0 +2013,7,16,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1435,63,1,1608,68,1,0 +2013,6,3,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-2,0,1523,-13,0,0 +2013,5,31,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-2,0,925,-9,0,0 +2013,9,21,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1615,-6,0,1913,3,0,0 +2013,8,8,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1859,80,1,2100,85,1,0 +2013,6,21,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,1,0,1545,2,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1610,-3,0,1820,-10,0,0 +2013,6,20,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1115,7,0,1125,1,0,0 +2013,9,6,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-7,0,1545,-15,0,0 +2013,7,6,6,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-6,0,1615,-11,0,0 +2013,9,18,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,-5,0,1726,-3,0,0 +2013,6,30,7,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1935,-2,0,2125,-4,0,0 +2013,4,6,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1141,-3,0,1315,0,0,0 +2013,10,1,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,6,0,1815,3,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-5,0,1016,-14,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,8,0,1150,3,0,0 +2013,7,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,-1,0,2050,-17,0,0 +2013,4,19,5,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1055,30,1,1140,31,1,0 +2013,5,26,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2120,-8,0,2229,-11,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,705,-1,0,815,-8,0,0 +2013,4,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1845,5,0,2229,-12,0,0 +2013,7,3,3,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,647,-7,0,922,-14,0,0 +2013,6,10,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-3,0,1331,2,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,930,80,1,1203,77,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,151,1,2159,154,1,0 +2013,10,18,5,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1145,0,0,1505,-6,0,0 +2013,8,9,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1002,35,1,1225,33,1,0 +2013,10,29,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1235,11,0,1320,9,0,0 +2013,9,20,5,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,605,-1,0,723,0,0,0 +2013,10,4,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1710,-1,0,2045,-35,0,0 +2013,10,5,6,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1523,-3,0,1751,-6,0,0 +2013,10,3,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1515,-3,0,1735,-4,0,0 +2013,10,7,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1151,-10,0,1356,-36,0,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,18,1,1945,6,0,0 +2013,9,25,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1701,2,0,0 +2013,5,20,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1344,-8,0,1523,-13,0,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,114,1,2100,132,1,0 +2013,5,1,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,840,-5,0,1022,-21,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-5,0,720,-11,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,-5,0,2241,-18,0,0 +2013,9,8,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-6,0,1635,-15,0,0 +2013,7,12,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,952,4,0,1535,-16,0,0 +2013,7,21,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-6,0,745,-4,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,22,1,2155,24,1,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,600,-4,0,730,-5,0,0 +2013,8,26,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2145,-1,0,2246,-10,0,0 +2013,5,4,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,823,15,1,951,-9,0,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-2,0,905,-1,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,-1,0,745,-4,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1335,-5,0,1645,-16,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1330,-1,0,1440,-12,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1010,-1,0,1355,-14,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-8,0,951,0,0,0 +2013,9,11,3,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1840,-6,0,1955,-11,0,0 +2013,6,5,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2005,0,0,2110,-7,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1505,0,,1650,0,1,1 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1215,7,0,1430,5,0,0 +2013,4,1,1,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,800,-4,0,1045,-3,0,0 +2013,6,11,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,-5,0,1838,-16,0,0 +2013,8,24,6,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1140,-3,0,1420,-12,0,0 +2013,10,29,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1100,-9,0,1408,22,1,0 +2013,9,9,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1655,61,1,1810,53,1,0 +2013,9,9,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1749,11,0,2052,-12,0,0 +2013,7,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1855,2,0,2120,16,1,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,600,39,1,900,18,1,0 +2013,4,3,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-5,0,1146,-26,0,0 +2013,9,18,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1116,-10,0,1628,-23,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1906,0,0,2019,-16,0,0 +2013,4,13,6,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-10,0,1607,4,0,0 +2013,10,20,7,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1307,8,0,1437,3,0,0 +2013,8,22,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-2,0,1401,-11,0,0 +2013,5,1,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-2,0,1802,-4,0,0 +2013,5,11,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,0,,1635,0,1,1 +2013,10,8,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-9,0,900,-16,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1715,65,1,2020,37,1,0 +2013,6,19,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-3,0,629,-2,0,0 +2013,4,18,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2015,-3,0,2304,7,0,0 +2013,5,20,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1620,-8,0,1748,-19,0,0 +2013,5,26,7,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1110,-6,0,1938,-23,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1526,8,0,1654,-8,0,0 +2013,8,11,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1715,-5,0,2128,1,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1000,1,0,1455,0,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-3,0,928,-9,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,955,7,0,1250,11,0,0 +2013,5,28,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,819,-16,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,6,0,1255,1,0,0 +2013,6,15,6,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-1,0,1852,21,1,0 +2013,9,14,6,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,-3,0,1035,-17,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-3,0,1150,-3,0,0 +2013,5,7,2,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,0,0,1415,-3,0,0 +2013,10,4,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-6,0,1519,-8,0,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1010,7,0,1220,17,1,0 +2013,10,8,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,11,0,1705,20,1,0 +2013,9,6,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-5,0,1710,1,0,0 +2013,8,23,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,720,-2,0,830,-5,0,0 +2013,6,29,6,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,710,-1,0,745,1,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,-4,0,1333,-10,0,0 +2013,8,25,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,1,0,1825,1,0,0 +2013,5,13,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1026,-7,0,1125,-18,0,0 +2013,8,30,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,0,0,1914,-5,0,0 +2013,4,20,6,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1927,36,1,2226,-3,0,0 +2013,6,13,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-7,0,1019,-10,0,0 +2013,8,22,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,20,1,2018,17,1,0 +2013,4,11,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1120,-3,0,1235,-8,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1000,-5,0,1125,-8,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2045,17,1,2155,7,0,0 +2013,9,25,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1325,-2,0,1440,-10,0,0 +2013,7,17,3,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1642,-2,0,1907,10,0,0 +2013,5,2,4,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,-4,0,2135,-11,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1403,36,1,1541,26,1,0 +2013,10,25,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1135,-5,0,1235,-20,0,0 +2013,4,18,4,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1510,186,1,1745,227,1,0 +2013,5,15,3,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-1,0,1540,-6,0,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1416,67,1,2259,93,1,0 +2013,7,31,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1920,-4,0,2123,-7,0,0 +2013,7,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1602,106,1,1918,96,1,0 +2013,4,7,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1612,-7,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1840,3,0,2230,6,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1900,0,0,2000,-7,0,0 +2013,6,11,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,725,21,1,859,8,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1315,31,1,1405,47,1,0 +2013,6,25,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1529,64,1,1641,71,1,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2052,5,0,44,-9,0,0 +2013,8,6,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,830,15,1,1028,4,0,0 +2013,6,15,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,27,1,2130,26,1,0 +2013,6,16,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,0,0,1408,10,0,0 +2013,5,25,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-7,0,1357,-4,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,-6,0,1446,-8,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1614,5,0,1712,1,0,0 +2013,5,17,5,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,710,-7,0,915,-31,0,0 +2013,7,29,1,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,630,1,0,920,-4,0,0 +2013,10,30,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1745,-2,0,1950,0,0,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-5,0,945,-9,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,10,0,1100,-5,0,0 +2013,9,13,5,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,945,63,1,1540,51,1,0 +2013,8,3,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2214,16,1,100,38,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,1,0,930,-1,0,0 +2013,9,22,7,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1618,18,1,1713,19,1,0 +2013,7,18,4,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,8,0,932,1,0,0 +2013,6,7,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-4,0,759,11,0,0 +2013,10,14,1,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1915,23,1,2303,14,0,0 +2013,8,21,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,745,1,0,905,-3,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-3,0,1115,-10,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,900,-5,0,1600,-10,0,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-3,0,1730,-8,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1115,-3,0,1257,-3,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,18,1,2332,26,1,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2030,6,0,2356,32,1,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,1,0,2245,2,0,0 +2013,10,9,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,0,0,1019,-2,0,0 +2013,9,28,6,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,12,0,1335,-2,0,0 +2013,5,29,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1415,-3,0,1525,-12,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1110,7,0,1638,-8,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2039,17,1,2316,16,1,0 +2013,9,11,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1254,-1,0,1450,1,0,0 +2013,4,6,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-2,0,1917,-11,0,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-8,0,1600,-8,0,0 +2013,7,6,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,730,-2,0,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-2,0,1112,-11,0,0 +2013,9,27,5,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1859,-5,0,2127,-41,0,0 +2013,7,12,5,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1635,88,1,1820,90,1,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1450,0,0,1746,-24,0,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1057,14,0,1453,15,1,0 +2013,10,10,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,4,0,1155,-9,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2025,30,1,2235,22,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,34,1,1856,37,1,0 +2013,6,30,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,-3,0,1730,-11,0,0 +2013,9,8,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1115,-5,0,1245,-15,0,0 +2013,9,18,3,AA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,810,-9,0,1545,-22,0,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-5,0,906,-1,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1850,41,1,2000,44,1,0 +2013,5,6,1,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,-3,0,2115,1,0,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1301,-4,0,1420,-13,0,0 +2013,7,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1053,82,1,1350,65,1,0 +2013,6,24,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1100,-3,0,1349,-10,0,0 +2013,9,7,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,-1,0,1409,2,0,0 +2013,8,27,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-5,0,830,-11,0,0 +2013,7,15,1,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1620,-3,0,1843,-2,0,0 +2013,9,17,2,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1400,11,0,1545,13,0,0 +2013,8,6,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,0,,1635,0,1,1 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,-3,0,2205,-23,0,0 +2013,4,6,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,940,-5,0,1102,-17,0,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,810,-9,0,1124,2,0,0 +2013,10,30,3,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,810,-5,0,1108,0,0,0 +2013,7,29,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1350,-4,0,1500,-14,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1703,12,0,1847,129,1,0 +2013,7,24,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-1,0,841,-7,0,0 +2013,7,20,6,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,620,-6,0,715,-12,0,0 +2013,9,8,7,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1150,-4,0,1450,12,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,959,-1,0,1342,-15,0,0 +2013,9,21,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-1,0,1720,2,0,0 +2013,7,15,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,1,0,1925,1,0,0 +2013,9,25,3,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-11,0,911,-3,0,0 +2013,8,5,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-2,0,1914,1,0,0 +2013,9,1,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,805,-4,0,1100,-11,0,0 +2013,8,19,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1851,-5,0,2124,-22,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1820,25,1,2000,71,1,0 +2013,8,23,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-7,0,1532,-3,0,0 +2013,9,27,5,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,610,-8,0,745,-16,0,0 +2013,8,21,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,1,0,1450,-25,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1015,4,0,1410,1,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1505,5,0,1650,18,1,0 +2013,7,11,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-2,0,2225,65,1,0 +2013,7,20,6,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,545,-1,0,651,99,1,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,855,0,0,1100,5,0,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-1,0,1010,7,0,0 +2013,10,20,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1741,-9,0,0 +2013,10,6,7,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,710,-2,0,1433,6,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2200,83,1,2328,70,1,0 +2013,7,6,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-7,0,1225,-15,0,0 +2013,8,2,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,825,-3,0,945,-11,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,43,1,1144,27,1,0 +2013,10,19,6,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,1,0,2133,-8,0,0 +2013,7,4,4,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,839,9,0,1026,10,0,0 +2013,4,5,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2212,-7,0,29,-21,0,0 +2013,6,5,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,-2,0,1521,4,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,-1,0,1504,-14,0,0 +2013,4,29,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1620,-7,0,2215,15,1,0 +2013,9,10,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-10,0,0 +2013,10,2,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1156,-4,0,1247,5,0,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-1,0,1738,17,1,0 +2013,4,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1700,36,1,1805,32,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,750,13,0,1125,6,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1345,20,1,1510,28,1,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1227,104,1,1459,92,1,0 +2013,6,21,5,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,846,-6,0,1041,-17,0,0 +2013,8,20,2,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1415,-4,0,1755,-4,0,0 +2013,8,19,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-7,0,1645,-7,0,0 +2013,6,12,3,DL,14679,San Diego International,San Diego,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-2,0,1902,-7,0,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1135,10,0,1235,14,0,0 +2013,8,11,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,840,-4,0,1150,8,0,0 +2013,5,20,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1407,-8,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1915,-4,0,2312,-23,0,0 +2013,10,29,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,5,0,1936,11,0,0 +2013,8,12,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,0,0,1206,-6,0,0 +2013,7,6,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1243,-7,0,1804,-13,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,940,22,1,1110,7,0,0 +2013,10,27,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1205,-6,0,1345,-10,0,0 +2013,5,21,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,756,-5,0,1037,-20,0,0 +2013,8,7,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,840,-1,0,1000,-6,0,0 +2013,9,2,1,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-4,0,922,-7,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1150,28,1,1625,18,1,0 +2013,5,18,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,653,-4,0,810,-4,0,0 +2013,10,14,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,-2,0,2327,74,1,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,-1,0,1820,-1,0,0 +2013,9,20,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1730,-11,0,2017,-36,0,0 +2013,5,6,1,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,-5,0,1925,-16,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,115,-1,0,810,22,1,0 +2013,4,3,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,740,-1,0,1559,5,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1901,59,1,2056,58,1,0 +2013,9,12,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1500,2,0,1635,-1,0,0 +2013,10,6,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1445,7,0,1540,-5,0,0 +2013,7,23,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1728,-6,0,1802,0,0,0 +2013,9,10,2,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,5,0,2110,7,0,0 +2013,6,20,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,27,1,147,20,1,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,605,-2,0,720,2,0,0 +2013,7,14,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,640,-2,0,655,-6,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2140,-9,0,2227,-6,0,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1130,-1,0,1254,-11,0,0 +2013,6,12,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,8,0,1345,-11,0,0 +2013,5,8,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-1,0,1442,-9,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1725,18,1,1925,16,1,0 +2013,6,16,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,-2,0,1040,-8,0,0 +2013,9,8,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1740,12,0,2005,-15,0,0 +2013,7,30,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1822,133,1,2100,128,1,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1835,12,0,2110,-10,0,0 +2013,4,20,6,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,28,1,2143,16,1,0 +2013,10,22,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1525,-4,0,1740,-3,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,-1,0,1912,-12,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1813,-2,0,2108,-4,0,0 +2013,7,11,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,2351,6,0,511,-4,0,0 +2013,9,25,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,838,-1,0,1443,-25,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,655,-2,0,930,-15,0,0 +2013,5,19,7,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1315,9,0,1505,6,0,0 +2013,6,24,1,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,0,,2052,0,1,1 +2013,9,13,5,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,650,20,1,1043,29,1,0 +2013,8,4,7,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,849,-6,0,1430,-8,0,0 +2013,4,17,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-5,0,859,3,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1225,11,0,1715,19,1,0 +2013,7,30,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2333,1,0,501,-13,0,0 +2013,7,21,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-6,0,1600,6,0,0 +2013,4,7,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2135,-10,0,2301,-14,0,0 +2013,5,7,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-3,0,759,-1,0,0 +2013,10,28,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1920,-7,0,2050,-8,0,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1812,-9,0,1942,-12,0,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,97,1,2225,111,1,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,940,28,1,1045,21,1,0 +2013,5,18,6,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-3,0,911,-4,0,0 +2013,5,19,7,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2005,12,0,2130,4,0,0 +2013,4,9,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-1,0,659,-12,0,0 +2013,10,23,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,635,-10,0,820,26,1,0 +2013,9,19,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,-2,0,1135,-7,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1805,58,1,1950,55,1,0 +2013,4,28,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-2,0,1820,-25,0,0 +2013,7,25,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-9,0,2250,-7,0,0 +2013,4,25,4,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1451,-8,0,1700,-4,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1541,4,0,1757,1,0,0 +2013,5,18,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,1230,-7,0,1516,-25,0,0 +2013,8,15,4,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,22,1,1811,21,1,0 +2013,5,22,3,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,730,0,0,1014,18,1,0 +2013,4,21,7,EV,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1350,-8,0,1521,-21,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,5,0,1105,10,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1426,19,1,1635,2,0,0 +2013,10,15,2,9E,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,706,-5,0,830,19,1,0 +2013,7,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,630,1,0,810,-15,0,0 +2013,5,10,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1950,-2,0,2235,14,0,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,186,1,2055,188,1,0 +2013,7,5,5,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1350,-8,0,1645,-7,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-3,0,2150,-14,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,12,0,1735,1,0,0 +2013,4,19,5,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1645,0,,1849,0,1,1 +2013,6,13,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1644,-4,0,1817,-1,0,0 +2013,10,5,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1322,3,0,1824,-10,0,0 +2013,4,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1015,-1,0,1455,-2,0,0 +2013,6,16,7,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-3,0,1349,-8,0,0 +2013,6,25,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1359,33,1,1517,39,1,0 +2013,4,15,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1608,0,,1709,0,1,1 +2013,5,19,7,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1515,-4,0,1600,-7,0,0 +2013,6,27,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,-4,0,1135,-3,0,0 +2013,10,21,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2005,0,0,2125,-5,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1443,-5,0,1600,-1,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,1,0,2002,4,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1715,6,0,1815,6,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1145,15,1,1325,11,0,0 +2013,7,10,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1350,41,1,1505,59,1,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1930,158,1,2030,149,1,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,915,21,1,1445,26,1,0 +2013,5,1,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-1,0,2005,4,0,0 +2013,10,11,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,-6,0,1905,-8,0,0 +2013,6,2,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,630,5,0,1011,16,1,0 +2013,8,7,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,0,0,1540,7,0,0 +2013,10,28,1,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,740,-5,0,1035,-17,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-5,0,1136,1,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2100,22,1,2240,27,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2035,0,0,2234,-33,0,0 +2013,6,25,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1855,56,1,20,45,1,0 +2013,10,28,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,934,13,0,1045,38,1,0 +2013,8,30,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1937,268,1,2105,266,1,0 +2013,8,20,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1130,-5,0,1725,4,0,0 +2013,9,3,2,EV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1913,121,1,2042,119,1,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,5,0,2141,2,0,0 +2013,7,25,4,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,638,-8,0,853,2,0,0 +2013,9,10,2,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-3,0,1226,-12,0,0 +2013,4,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2105,40,1,2231,39,1,0 +2013,5,31,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1520,31,1,1628,85,1,0 +2013,6,7,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-1,0,809,-6,0,0 +2013,7,23,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,10,0,2025,19,1,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,0,0,900,-4,0,0 +2013,5,2,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1737,0,0,2051,-10,0,0 +2013,9,22,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-4,0,2126,-10,0,0 +2013,9,26,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,1,0,840,-4,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,945,0,0,1430,-9,0,0 +2013,7,3,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1105,-1,0,1110,-1,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1015,-4,0,1126,-10,0,0 +2013,9,8,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1030,-4,0,1245,-23,0,0 +2013,7,29,1,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,625,-10,0,808,-15,0,0 +2013,5,27,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-5,0,1030,-7,0,0 +2013,6,9,7,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,935,-3,0,1155,13,0,0 +2013,5,28,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-4,0,759,-10,0,0 +2013,7,2,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-3,0,820,-17,0,0 +2013,7,8,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,-15,0,1948,-12,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1340,0,,1445,0,1,1 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1645,-6,0,2135,-6,0,0 +2013,7,21,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1122,25,1,1310,23,1,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1502,11,0,1731,9,0,0 +2013,10,14,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,832,-1,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2032,152,1,2303,114,1,0 +2013,4,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,818,-10,0,950,-4,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,-2,0,1157,-18,0,0 +2013,7,26,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1913,-8,0,2048,-9,0,0 +2013,9,8,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-9,0,1930,-17,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,8,0,1640,3,0,0 +2013,10,22,2,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,900,-5,0,1157,-20,0,0 +2013,6,11,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2010,-4,0,2139,-17,0,0 +2013,10,19,6,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,750,-5,0,855,-11,0,0 +2013,7,19,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-4,0,2034,20,1,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,-4,0,1030,-4,0,0 +2013,7,30,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1040,-4,0,1223,-7,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2225,12,0,2305,0,0,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1005,42,1,1240,31,1,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,-1,0,1712,14,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1615,22,1,1755,24,1,0 +2013,4,2,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1247,-14,0,0 +2013,8,25,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-4,0,1854,-12,0,0 +2013,8,1,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,148,1,1445,163,1,0 +2013,9,3,2,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,-2,0,1041,-3,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2205,56,1,2305,51,1,0 +2013,6,21,5,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1435,32,1,2305,16,1,0 +2013,7,9,2,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2338,214,1,717,209,1,0 +2013,7,20,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,910,-5,0,1025,-8,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1750,-3,0,1855,-16,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,3,0,1556,-9,0,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1508,-1,0,1643,-11,0,0 +2013,8,8,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-4,0,955,-1,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,930,2,0,1059,-4,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,13,0,2028,33,1,0 +2013,7,5,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-21,0,1140,-24,0,0 +2013,7,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1724,5,0,1851,-2,0,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,825,-4,0,920,-25,0,0 +2013,8,18,7,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-2,0,2040,-17,0,0 +2013,4,4,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1700,-3,0,1843,-10,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2104,8,0,129,3,0,0 +2013,7,27,6,YV,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1035,-3,0,1201,1,0,0 +2013,5,7,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1145,14,0,1500,-2,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1515,-1,0,2205,-21,0,0 +2013,9,2,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1500,-8,0,1600,-13,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1230,-2,0,1450,-15,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1245,-1,0,1435,-5,0,0 +2013,10,18,5,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1030,8,0,0 +2013,9,14,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1628,-6,0,1812,-19,0,0 +2013,10,8,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,730,-6,0,1300,-13,0,0 +2013,7,24,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1750,-4,0,1915,-2,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,8,0,1040,4,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,5,0,1525,-10,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2020,103,1,2325,96,1,0 +2013,10,8,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,900,-3,0,0 +2013,6,30,7,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1020,-2,0,1325,-2,0,0 +2013,7,23,2,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,2,0,1556,-2,0,0 +2013,6,24,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-6,0,641,-6,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-6,0,1039,-6,0,0 +2013,8,11,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,-6,0,1445,-9,0,0 +2013,7,8,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1510,-1,0,1642,-4,0,0 +2013,9,1,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-2,0,1030,-29,0,0 +2013,7,11,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,13,0,2044,10,0,0 +2013,9,22,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,-3,0,2228,-6,0,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,652,1,0,749,-6,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,-2,0,2110,-5,0,0 +2013,8,25,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-5,0,1750,-27,0,0 +2013,4,8,1,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,725,-1,0,905,-12,0,0 +2013,4,30,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1938,10,0,2104,16,1,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1705,-6,0,1937,-15,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1555,57,1,1920,75,1,0 +2013,4,5,5,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1714,0,0,1941,6,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-5,0,2340,-7,0,0 +2013,4,3,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,830,0,0,1026,1,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1314,-1,0,1426,-9,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1923,-2,0,2102,-21,0,0 +2013,9,20,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1710,82,1,2315,68,1,0 +2013,7,1,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-2,0,941,-3,0,0 +2013,5,19,7,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1700,-8,0,2030,-18,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,630,0,0,840,-10,0,0 +2013,5,23,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,950,18,1,1100,13,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1000,10,0,1715,8,0,0 +2013,6,11,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,0,0,2042,7,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1155,16,1,1359,4,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,0,0,925,1,0,0 +2013,7,29,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1955,9,0,2246,-3,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,-4,0,1530,-9,0,0 +2013,10,17,4,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,835,0,0,1643,-5,0,0 +2013,4,7,7,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1328,15,1,1544,8,0,0 +2013,7,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1440,-3,0,1550,-1,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1850,8,0,35,-3,0,0 +2013,6,1,6,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-2,0,840,0,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,-5,0,1704,-10,0,0 +2013,9,26,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1955,-5,0,2145,-8,0,0 +2013,5,23,4,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,642,0,,800,0,1,1 +2013,7,27,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1510,3,0,1635,-2,0,0 +2013,4,30,2,9E,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1930,-5,0,2253,-13,0,0 +2013,6,27,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1439,22,1,1559,29,1,0 +2013,10,9,3,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,920,-2,0,1155,-10,0,0 +2013,9,24,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1235,-7,0,1445,-22,0,0 +2013,10,20,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1251,-3,0,1407,5,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2020,9,0,100,0,0,0 +2013,4,9,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1415,-2,0,0 +2013,9,5,4,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-5,0,543,-6,0,0 +2013,4,12,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1210,10,0,1340,3,0,0 +2013,8,28,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,74,1,2155,79,1,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1723,38,1,2135,50,1,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1945,-2,0,2035,-9,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1350,6,0,1603,-15,0,0 +2013,9,4,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,709,-5,0,810,5,0,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,745,8,0,950,-3,0,0 +2013,5,17,5,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1109,-7,0,1830,-8,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,815,21,1,950,21,1,0 +2013,8,9,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1345,-4,0,1524,-8,0,0 +2013,8,20,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-5,0,1402,31,1,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1736,-3,0,1914,-3,0,0 +2013,4,14,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-10,0,2000,-1,0,0 +2013,4,26,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1254,-4,0,1418,-7,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,805,-4,0,1134,-2,0,0 +2013,5,27,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,-1,0,1157,-11,0,0 +2013,6,8,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1255,12,0,1520,-3,0,0 +2013,8,5,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,634,-7,0,826,-23,0,0 +2013,5,20,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1125,44,1,1305,19,1,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,2,0,853,-12,0,0 +2013,7,18,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-4,0,2025,-9,0,0 +2013,8,25,7,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1238,3,0,1356,-9,0,0 +2013,5,9,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1545,13,0,1715,10,0,0 +2013,7,21,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,630,-6,0,740,-24,0,0 +2013,4,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1645,8,0,1750,7,0,0 +2013,5,6,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,840,11,0,0 +2013,4,3,3,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,650,6,0,810,4,0,0 +2013,6,3,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,-10,0,609,-20,0,0 +2013,6,4,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1910,-1,0,1915,17,1,0 +2013,4,2,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1733,16,1,1859,69,1,0 +2013,10,4,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,705,-5,0,910,7,0,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,53,1,20,31,1,0 +2013,8,2,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1555,0,0,1800,-8,0,0 +2013,10,4,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,17,14,0,525,16,1,0 +2013,5,1,3,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-4,0,1200,-9,0,0 +2013,6,7,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1526,22,1,1913,28,1,0 +2013,6,25,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,938,30,1,1035,27,1,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,40,1,2230,25,1,0 +2013,10,30,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1534,-2,0,1735,-9,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-4,0,1656,-10,0,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1728,-2,0,2040,-30,0,0 +2013,8,24,6,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,855,-8,0,1101,0,0,0 +2013,9,22,7,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,1,0,1334,-11,0,0 +2013,10,11,5,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-3,0,1223,4,0,0 +2013,6,7,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-6,0,910,6,0,0 +2013,4,1,1,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1450,60,1,1849,68,1,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-4,0,2206,-7,0,0 +2013,8,18,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1138,-9,0,1429,-31,0,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1901,58,1,2211,36,1,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1606,0,0,1939,-6,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,-2,0,2356,-22,0,0 +2013,4,20,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1950,0,0,2140,23,1,0 +2013,10,7,1,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,-4,0,2344,-10,0,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1230,13,0,1340,15,1,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1200,-2,0,1405,1,0,0 +2013,4,18,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,28,1,925,52,1,0 +2013,7,29,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1512,3,0,1830,-7,0,0 +2013,9,18,3,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2010,-7,0,2239,-2,0,0 +2013,7,7,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,253,1,2140,225,1,0 +2013,5,31,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-7,0,1152,-25,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,-5,0,1717,-7,0,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1717,1,0,1908,-9,0,0 +2013,9,30,1,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1533,-7,0,1645,-6,0,0 +2013,6,1,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,515,-2,0,633,-16,0,0 +2013,8,1,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1006,-9,0,1105,-28,0,0 +2013,7,29,1,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,915,48,1,0 +2013,7,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1735,10,0,1902,44,1,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,845,-1,0,1025,-4,0,0 +2013,10,30,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1639,-6,0,1826,-13,0,0 +2013,8,5,1,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1826,34,1,2059,18,1,0 +2013,10,17,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,648,-7,0,0 +2013,7,25,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,0,0,1127,-7,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2125,-4,0,2300,-1,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1820,-3,0,2140,-10,0,0 +2013,4,30,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2225,0,0,622,10,0,0 +2013,9,7,6,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,1,0,1602,-33,0,0 +2013,9,16,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1412,9,0,1620,-2,0,0 +2013,5,18,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1602,-5,0,1812,-27,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1345,100,1,1527,96,1,0 +2013,10,3,4,9E,12339,Indianapolis International,Indianapolis,IN,12953,LaGuardia,New York,NY,1310,-9,0,1514,7,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2255,2,0,2355,-5,0,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,605,-6,0,900,-16,0,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,830,-4,0,921,-13,0,0 +2013,8,26,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,835,10,0,945,2,0,0 +2013,4,26,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,950,4,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1645,-2,0,2015,-39,0,0 +2013,6,27,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,739,-10,0,838,-18,0,0 +2013,4,9,2,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1414,80,1,1528,134,1,0 +2013,5,10,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,1107,-2,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,2130,-6,0,2324,-25,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1130,-4,0,1235,-8,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,10,0,1850,5,0,0 +2013,9,13,5,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1635,10,0,1820,-3,0,0 +2013,9,8,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2030,6,0,2158,-1,0,0 +2013,4,3,3,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,800,0,0,1045,6,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,18,1,1120,5,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1550,3,0,1810,-15,0,0 +2013,9,10,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-5,0,824,4,0,0 +2013,7,27,6,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,910,6,0,1308,3,0,0 +2013,8,16,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1430,32,1,1500,30,1,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,5,0,2140,20,1,0 +2013,9,1,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,755,-6,0,901,-11,0,0 +2013,7,16,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1525,7,0,1625,6,0,0 +2013,6,24,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,274,1,2130,263,1,0 +2013,4,15,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1330,-3,0,1635,-12,0,0 +2013,7,29,1,DL,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,935,-5,0,1759,19,1,0 +2013,9,30,1,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1322,-8,0,1452,-21,0,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1207,-3,0,1353,-5,0,0 +2013,5,20,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,1,0,1555,-2,0,0 +2013,8,5,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1825,-1,0,1850,0,0,0 +2013,7,2,2,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-7,0,1209,-19,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1431,0,0,1535,-15,0,0 +2013,5,14,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,-6,0,1225,-6,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1715,86,1,1855,88,1,0 +2013,6,17,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1746,3,0,1857,-16,0,0 +2013,10,7,1,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,817,-2,0,1127,-15,0,0 +2013,7,26,5,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1509,-6,0,1620,1,0,0 +2013,10,17,4,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,641,-10,0,805,6,0,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,650,0,,910,0,1,1 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,-4,0,2117,-11,0,0 +2013,6,12,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-2,0,909,-9,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1110,-4,0,1550,-10,0,0 +2013,10,4,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1948,-3,0,2331,-7,0,0 +2013,4,28,7,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1816,-6,0,2100,-10,0,0 +2013,10,12,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2115,-3,0,533,-12,0,0 +2013,4,1,1,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1855,-6,0,2240,-35,0,0 +2013,6,5,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,849,-7,0,1058,-3,0,0 +2013,4,26,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,8,0,1545,7,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,4,0,830,3,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1430,1,0,1550,-5,0,0 +2013,9,12,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1215,0,,1315,0,1,1 +2013,5,28,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-4,0,2017,-10,0,0 +2013,9,30,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1450,27,1,1500,16,1,0 +2013,7,5,5,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,1,0,1350,-6,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,7,0,10,3,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1515,10,0,1835,-5,0,0 +2013,8,25,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1714,-3,0,2339,0,0,0 +2013,7,31,3,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1015,-1,0,1145,-4,0,0 +2013,10,6,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1344,7,0,1553,12,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1605,-3,0,1815,-15,0,0 +2013,10,24,4,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-8,0,736,-24,0,0 +2013,9,12,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1115,82,1,1718,101,1,0 +2013,5,20,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2130,-6,0,2240,-16,0,0 +2013,7,28,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,0,0,1420,-13,0,0 +2013,6,1,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1305,-4,0,2109,-6,0,0 +2013,8,7,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,127,29,1,800,12,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1306,10,0,1614,-4,0,0 +2013,5,27,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-10,0,1119,-13,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,20,1,2250,13,0,0 +2013,4,15,1,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1221,47,1,1625,59,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,27,1,2212,26,1,0 +2013,10,13,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1000,-8,0,1155,-31,0,0 +2013,6,21,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1005,-5,0,1130,-8,0,0 +2013,7,23,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2055,169,1,2348,163,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2000,-4,0,2136,-25,0,0 +2013,6,18,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,848,68,1,1048,58,1,0 +2013,4,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2020,38,1,2125,32,1,0 +2013,7,9,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-4,0,1326,-27,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,4,0,1547,25,1,0 +2013,10,2,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1534,-5,0,1745,-14,0,0 +2013,4,8,1,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,-3,0,1013,-14,0,0 +2013,5,21,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,-10,0,1747,-17,0,0 +2013,5,9,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1520,-4,0,1628,-15,0,0 +2013,9,26,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,-5,0,2035,-8,0,0 +2013,7,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,3,0,1930,-22,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1959,26,1,2145,16,1,0 +2013,9,21,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1552,3,0,1723,-17,0,0 +2013,4,2,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,2,0,735,-7,0,0 +2013,6,25,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,950,-11,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,847,1,0,1022,4,0,0 +2013,4,8,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1145,-5,0,1835,-19,0,0 +2013,7,14,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,27,1,2150,27,1,0 +2013,5,26,7,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-8,0,1704,-14,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,900,0,0,1055,13,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,930,-6,0,1104,1,0,0 +2013,8,25,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,725,-2,0,930,8,0,0 +2013,7,14,7,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,6,0,1019,-22,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,1,0,2135,-7,0,0 +2013,9,1,7,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1756,-2,0,2037,-32,0,0 +2013,9,15,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,10,0,1914,3,0,0 +2013,5,3,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-3,0,1010,9,0,0 +2013,6,10,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-5,0,1346,-8,0,0 +2013,10,29,2,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,-6,0,2127,-12,0,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,725,13,0,1317,0,0,0 +2013,6,12,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-1,0,1335,-3,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,0,0,1830,0,0,0 +2013,10,8,2,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,745,-6,0,1058,-10,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,19,1,2155,10,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1425,9,0,1635,-3,0,0 +2013,10,25,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,857,-7,0,926,0,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,842,-1,0,1119,-1,0,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,95,1,1350,87,1,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,6,0,1558,4,0,0 +2013,8,14,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,0,,1740,0,1,1 +2013,6,6,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,-10,0,2102,-6,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2015,-6,0,2202,-3,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1940,18,1,5,9,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1130,-2,0,1430,-11,0,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,12,0,2155,6,0,0 +2013,7,31,3,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1406,-7,0,1620,-10,0,0 +2013,6,9,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1738,-4,0,1915,-31,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1447,0,0,2159,9,0,0 +2013,4,15,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1856,-10,0,2100,-8,0,0 +2013,6,6,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-3,0,1245,-21,0,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1634,-7,0,2246,-19,0,0 +2013,8,4,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1326,-1,0,2130,-7,0,0 +2013,8,12,1,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,55,0,0,809,-22,0,0 +2013,9,14,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-4,0,1045,-21,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,8,0,2039,15,1,0 +2013,9,20,5,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1435,138,1,2245,130,1,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1715,-4,0,1838,-14,0,0 +2013,6,13,4,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,0,,1843,0,1,1 +2013,10,27,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-11,0,1024,-7,0,0 +2013,6,15,6,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1606,-7,0,1810,-13,0,0 +2013,7,26,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1935,59,1,2105,55,1,0 +2013,8,25,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,915,68,1,1045,67,1,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1450,20,1,1630,33,1,0 +2013,10,28,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,600,17,1,941,4,0,0 +2013,8,25,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1515,7,0,1640,2,0,0 +2013,10,28,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1835,-4,0,2238,-16,0,0 +2013,7,24,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2055,-2,0,2210,-8,0,0 +2013,7,29,1,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1045,-4,0,1240,-16,0,0 +2013,9,25,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1859,-14,0,2104,-17,0,0 +2013,7,9,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,0,0,2010,-23,0,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1538,-1,0,1815,-30,0,0 +2013,7,8,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,610,-3,0,615,0,0,0 +2013,6,6,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,163,1,858,167,1,0 +2013,6,19,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1430,-4,0,1733,-21,0,0 +2013,10,23,3,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,48,1,1044,37,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-3,0,1833,-17,0,0 +2013,8,7,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2100,-1,0,2235,-3,0,0 +2013,5,31,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-1,0,1857,-6,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1605,21,1,1742,34,1,0 +2013,10,26,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-4,0,838,-13,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1830,0,0,2055,-25,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1905,5,0,2100,-5,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1830,85,1,2140,65,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1040,247,1,1135,241,1,0 +2013,8,17,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,-4,0,1145,-7,0,0 +2013,6,15,6,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1605,3,0,1913,-9,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,930,-5,0,1320,-17,0,0 +2013,7,5,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-11,0,905,-13,0,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1800,14,0,1925,11,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,704,0,0,928,-2,0,0 +2013,5,27,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1345,4,0,1520,-11,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1950,-2,0,20,-11,0,0 +2013,9,29,7,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,940,-9,0,1135,-5,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,-3,0,1549,-7,0,0 +2013,8,17,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,620,-8,0,745,-7,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,21,1,1855,22,1,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1840,24,1,1950,24,1,0 +2013,7,21,7,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,-6,0,844,-13,0,0 +2013,10,28,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1740,-8,0,2015,-3,0,0 +2013,7,11,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,0,,935,0,1,1 +2013,9,17,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2045,6,0,2200,-3,0,0 +2013,8,25,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,28,1,1812,26,1,0 +2013,5,7,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,600,2,0,710,2,0,0 +2013,10,20,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,5,0,2300,2,0,0 +2013,5,16,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,935,-1,0,1221,-2,0,0 +2013,9,22,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1125,-5,0,1420,-25,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1948,19,1,2150,14,0,0 +2013,5,15,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,640,-1,0,837,-3,0,0 +2013,10,20,7,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-8,0,1124,-15,0,0 +2013,4,7,7,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-9,0,1818,-26,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1850,3,0,2110,6,0,0 +2013,5,9,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,50,-5,0,622,4,0,0 +2013,10,26,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-4,0,1320,-7,0,0 +2013,10,12,6,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,14,0,1038,4,0,0 +2013,6,23,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,630,-2,0,733,-6,0,0 +2013,7,19,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1130,1,0,1245,7,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1425,3,0,1530,-5,0,0 +2013,8,15,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,925,-6,0,1105,8,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,6,0,2305,-5,0,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1310,-6,0,1443,-22,0,0 +2013,7,11,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-4,0,820,-7,0,0 +2013,4,29,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2045,54,1,2211,38,1,0 +2013,10,14,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,929,0,0,1401,-13,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,88,1,1925,87,1,0 +2013,5,7,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1155,-3,0,1310,-3,0,0 +2013,8,4,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,945,-2,0,1130,0,0,0 +2013,8,15,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1705,5,0,1950,2,0,0 +2013,6,28,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,13,0,1840,10,0,0 +2013,8,18,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1655,14,0,2005,-16,0,0 +2013,8,7,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,610,0,0,717,-8,0,0 +2013,10,30,3,EV,13931,Norfolk International,Norfolk,VA,12953,LaGuardia,New York,NY,1830,-11,0,2010,-40,0,0 +2013,5,2,4,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,845,-3,0,1105,-21,0,0 +2013,5,9,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2005,29,1,2147,14,0,0 +2013,10,26,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1704,31,1,1803,33,1,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1734,18,1,2335,10,0,0 +2013,7,30,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-5,0,1124,-16,0,0 +2013,8,23,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1710,7,0,2114,16,1,0 +2013,8,1,4,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,31,1,2212,30,1,0 +2013,5,28,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1900,-13,0,2155,-33,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1215,-2,0,1330,-14,0,0 +2013,5,24,5,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-5,0,752,-10,0,0 +2013,5,2,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-3,0,612,5,0,0 +2013,8,14,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,800,8,0,1110,1,0,0 +2013,5,31,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1955,-1,0,2143,-16,0,0 +2013,4,28,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,5,0,1700,-6,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,0,0,900,-6,0,0 +2013,10,9,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,934,-2,0,1213,-22,0,0 +2013,8,16,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1035,-1,0,1210,-15,0,0 +2013,5,30,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1354,2,0,2029,48,1,0 +2013,4,6,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-3,0,915,-9,0,0 +2013,7,26,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,-1,0,1647,17,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,85,1,1535,172,1,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,-4,0,1811,0,0,0 +2013,10,30,3,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-5,0,914,-14,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1040,42,1,1100,21,1,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,-4,0,2207,-7,0,0 +2013,8,22,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1925,120,1,2000,112,1,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,715,-4,0,1030,-14,0,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1750,37,1,2045,51,1,0 +2013,9,11,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1530,-5,0,1745,-19,0,0 +2013,8,23,5,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,901,28,1,1204,27,1,0 +2013,5,30,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1255,-8,0,1504,3,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-9,0,2245,-3,0,0 +2013,10,15,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,840,-9,0,1020,-5,0,0 +2013,4,26,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,935,-11,0,1145,-7,0,0 +2013,9,10,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,1,0,2120,-7,0,0 +2013,10,8,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,705,-3,0,824,-8,0,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,-1,0,1425,-2,0,0 +2013,6,17,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,4,0,2354,9,0,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-2,0,845,-14,0,0 +2013,5,12,7,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,-8,0,1413,-3,0,0 +2013,5,22,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,0,0,1552,-1,0,0 +2013,6,18,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,945,-1,0,1052,1,0,0 +2013,7,30,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1350,30,1,1500,29,1,0 +2013,5,21,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1250,2,0,1425,-15,0,0 +2013,6,16,7,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,710,-6,0,1005,0,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2125,21,1,2230,-5,0,0 +2013,6,29,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1720,54,1,1930,33,1,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,5,0,1910,-5,0,0 +2013,8,23,5,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1118,-3,0,1436,5,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,915,11,0,1625,13,0,0 +2013,7,10,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-1,0,1340,-2,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,156,1,2330,153,1,0 +2013,10,16,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-5,0,1241,2,0,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,18,1,1005,15,1,0 +2013,4,11,4,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1310,3,0,2135,5,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,800,-1,0,1025,-3,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1330,23,1,1515,6,0,0 +2013,4,22,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1405,24,1,1525,16,1,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,725,10,0,830,10,0,0 +2013,10,14,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1750,-1,0,1905,10,0,0 +2013,6,29,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-4,0,834,-10,0,0 +2013,8,1,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-3,0,2015,-17,0,0 +2013,6,11,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2103,-9,0,519,-34,0,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1015,-6,0,1128,-1,0,0 +2013,6,2,7,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1125,14,0,1400,20,1,0 +2013,4,7,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1407,-12,0,1517,-13,0,0 +2013,5,5,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,3,0,2115,-13,0,0 +2013,9,10,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,22,1,1250,10,0,0 +2013,6,2,7,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,840,67,1,1435,59,1,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2155,-3,0,2307,-13,0,0 +2013,4,19,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,12,0,1720,0,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1900,2,0,2025,0,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,-2,0,1253,-4,0,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,745,-5,0,1040,-3,0,0 +2013,7,20,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1717,-4,0,1818,56,1,0 +2013,6,12,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-2,0,1805,-7,0,0 +2013,7,11,4,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,1116,-14,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1906,-4,0,44,-6,0,0 +2013,5,31,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,744,-14,0,905,-21,0,0 +2013,4,18,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,6,0,1205,-8,0,0 +2013,8,5,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,935,-2,0,1050,-8,0,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,851,-7,0,1212,-13,0,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-7,0,1335,-26,0,0 +2013,7,7,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1650,16,1,1820,15,1,0 +2013,10,17,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,-1,0,1835,-12,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,77,1,2253,74,1,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1450,19,1,1615,9,0,0 +2013,9,6,5,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,720,-5,0,845,-27,0,0 +2013,10,3,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1348,-4,0,0 +2013,6,14,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1205,13,0,1310,9,0,0 +2013,9,2,1,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1745,6,0,1850,-5,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-1,0,1016,13,0,0 +2013,4,26,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,-2,0,750,1,0,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2105,224,1,2249,219,1,0 +2013,5,29,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,5,0,520,-17,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,-3,0,1635,-15,0,0 +2013,8,7,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,824,0,0,1635,-24,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,820,-5,0,1004,11,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1500,28,1,1630,22,1,0 +2013,10,31,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,820,8,0,1025,50,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1400,31,1,1625,13,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,16,1,1000,12,0,0 +2013,10,29,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-11,0,2011,7,0,0 +2013,6,19,3,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1853,127,1,2229,117,1,0 +2013,4,11,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2145,48,1,2310,40,1,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2155,4,0,2310,4,0,0 +2013,8,31,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-1,0,825,-8,0,0 +2013,7,26,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,39,1,1911,31,1,0 +2013,8,4,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-9,0,812,-14,0,0 +2013,5,2,4,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1143,-6,0,1520,-2,0,0 +2013,7,16,2,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,825,-1,0,1104,-10,0,0 +2013,9,18,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,545,-7,0,649,-3,0,0 +2013,10,1,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-2,0,1850,0,0,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,0,0,1103,-6,0,0 +2013,7,29,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-4,0,815,-10,0,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,20,1,1740,16,1,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,-3,0,1410,-7,0,0 +2013,8,13,2,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-4,0,1934,-10,0,0 +2013,6,8,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1708,-2,0,2113,-6,0,0 +2013,5,22,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1250,0,,1355,0,1,1 +2013,8,29,4,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,-3,0,2140,-6,0,0 +2013,9,12,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,32,1,1813,28,1,0 +2013,10,13,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1656,2,0,1802,-2,0,0 +2013,5,21,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2155,-8,0,27,-2,0,0 +2013,10,27,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,-6,0,2132,-16,0,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,120,1,2056,132,1,0 +2013,6,19,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1615,12,0,1838,19,1,0 +2013,10,17,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-4,0,954,-15,0,0 +2013,7,31,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,610,-7,0,805,-11,0,0 +2013,5,13,1,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-4,0,1805,-4,0,0 +2013,10,5,6,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1550,2,0,1745,10,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,740,1,0,1125,3,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,6,0,2325,-26,0,0 +2013,8,1,4,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,720,-5,0,1445,-24,0,0 +2013,7,11,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,711,-9,0,1155,-15,0,0 +2013,6,6,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1840,-2,0,2049,-21,0,0 +2013,4,16,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1731,27,1,1920,8,0,0 +2013,5,18,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1052,-9,0,1351,-25,0,0 +2013,9,12,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,3,0,1332,-5,0,0 +2013,6,18,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1425,-2,0,2020,-14,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1325,-3,0,1605,-14,0,0 +2013,5,18,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1725,50,1,1825,27,1,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-3,0,1131,-7,0,0 +2013,9,10,2,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,2,0,2130,-37,0,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2248,-7,0,27,-15,0,0 +2013,10,27,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1609,45,1,1808,36,1,0 +2013,4,20,6,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-2,0,1858,6,0,0 +2013,5,12,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1700,-4,0,1855,0,0,0 +2013,8,30,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,840,0,0,930,3,0,0 +2013,7,1,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1320,5,0,1440,-14,0,0 +2013,5,11,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,848,25,1,0 +2013,4,18,4,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1406,44,1,1655,13,0,0 +2013,5,4,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,4,0,1405,17,1,0 +2013,7,30,2,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1120,10,0,1400,3,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,-3,0,1520,-24,0,0 +2013,6,19,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1955,86,1,2201,76,1,0 +2013,6,8,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1025,-2,0,1312,-3,0,0 +2013,7,12,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1805,26,1,1905,29,1,0 +2013,4,14,7,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1455,68,1,1735,65,1,0 +2013,4,2,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1250,0,0,1319,-3,0,0 +2013,8,14,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,615,-5,0,725,-12,0,0 +2013,10,18,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1150,-5,0,0 +2013,7,1,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1045,0,0,1224,-19,0,0 +2013,5,14,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-3,0,1640,-10,0,0 +2013,9,10,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,600,-1,0,732,-9,0,0 +2013,8,31,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1355,1,0,2100,17,1,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1050,2,0,1910,-4,0,0 +2013,7,13,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-2,0,1248,-24,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1555,2,0,1730,-5,0,0 +2013,8,7,3,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1645,-2,0,1818,-17,0,0 +2013,9,11,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,545,-1,0,1140,-10,0,0 +2013,10,3,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,0,0,1045,-6,0,0 +2013,5,8,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-2,0,1037,-3,0,0 +2013,8,20,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1005,3,0,1115,1,0,0 +2013,9,9,1,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1725,14,0,1835,22,1,0 +2013,4,9,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,1,0,1948,-6,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,850,3,0,1030,-23,0,0 +2013,7,4,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,120,1,1734,106,1,0 +2013,4,28,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-1,0,1705,6,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1820,-4,0,2115,6,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2040,-2,0,2220,-3,0,0 +2013,5,11,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,46,1,1018,38,1,0 +2013,5,26,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1720,-1,0,1855,-1,0,0 +2013,4,21,7,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,750,0,0,848,-6,0,0 +2013,4,15,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,15,1,1910,52,1,0 +2013,6,29,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-3,0,1629,20,1,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2245,-3,0,640,-31,0,0 +2013,7,17,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,5,0,1310,-2,0,0 +2013,10,7,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1640,13,0,1800,6,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1300,42,1,1425,44,1,0 +2013,9,13,5,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,911,-2,0,1051,-7,0,0 +2013,9,7,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,645,-9,0,844,5,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,930,2,0,1220,-2,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,14,0,1910,9,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1230,-1,0,1620,-13,0,0 +2013,7,1,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1618,24,1,1745,24,1,0 +2013,10,4,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,945,-7,0,1129,-4,0,0 +2013,5,12,7,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-7,0,920,-5,0,0 +2013,9,2,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-12,0,1145,-12,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,920,42,1,1030,27,1,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1016,33,1,1155,8,0,0 +2013,10,23,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-2,0,2145,-14,0,0 +2013,7,26,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1945,10,0,2244,9,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1940,18,1,2220,5,0,0 +2013,4,23,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,0,0,1824,-28,0,0 +2013,10,8,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-6,0,1436,-16,0,0 +2013,4,25,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1310,14,0,1439,27,1,0 +2013,4,4,4,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-1,0,1912,3,0,0 +2013,8,3,6,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1630,68,1,1800,61,1,0 +2013,8,5,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,-7,0,1835,-23,0,0 +2013,7,17,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,77,1,1135,91,1,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1028,33,1,1339,25,1,0 +2013,4,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-4,0,1629,18,1,0 +2013,6,16,7,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2031,-12,0,2209,-32,0,0 +2013,9,1,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1019,-4,0,1215,-7,0,0 +2013,7,28,7,EV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,953,-5,0,1131,-6,0,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-4,0,2140,-4,0,0 +2013,7,31,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,2010,-4,0,2105,6,0,0 +2013,8,3,6,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,830,-3,0,1145,-12,0,0 +2013,9,21,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,641,-3,0,937,-16,0,0 +2013,7,6,6,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1642,27,1,1815,13,0,0 +2013,7,23,2,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,949,0,0,1522,8,0,0 +2013,10,31,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-3,0,1040,6,0,0 +2013,5,18,6,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1155,0,0,1515,-9,0,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1956,-4,0,2147,-10,0,0 +2013,7,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1331,-8,0,1643,-15,0,0 +2013,10,15,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,700,2,0,1030,2,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1650,13,0,1750,2,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,854,-1,0,1144,-14,0,0 +2013,8,4,7,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-5,0,1029,-3,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1440,-2,0,1713,-13,0,0 +2013,5,1,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,715,1,0,850,-6,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-4,0,1345,-7,0,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,2055,30,1,2358,14,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1832,-3,0,1940,-13,0,0 +2013,9,8,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,31,1,1620,28,1,0 +2013,6,24,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,844,-6,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1600,-1,0,2029,-21,0,0 +2013,6,21,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-2,0,820,-4,0,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1652,-3,0,1747,6,0,0 +2013,5,6,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1930,-9,0,2345,-15,0,0 +2013,9,20,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2012,-10,0,2140,-22,0,0 +2013,6,27,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1855,-4,0,1957,-13,0,0 +2013,5,16,4,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1132,-2,0,1358,-4,0,0 +2013,7,4,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1300,0,0,1536,1,0,0 +2013,6,30,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1450,-8,0,1624,-13,0,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1535,-5,0,1625,-4,0,0 +2013,9,9,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,558,-6,0,730,-19,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2016,14,0,2227,-9,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,4,0,1654,-5,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,-4,0,1120,-4,0,0 +2013,10,20,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,12,0,2020,-5,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,23,1,1420,18,1,0 +2013,8,24,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,952,-2,0,1229,-2,0,0 +2013,9,28,6,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1109,-7,0,1408,-16,0,0 +2013,7,29,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,68,1,2109,33,1,0 +2013,4,2,2,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-5,0,907,-18,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2155,2,0,38,7,0,0 +2013,8,29,4,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-1,0,1857,-22,0,0 +2013,4,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1020,3,0,1310,8,0,0 +2013,6,29,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,925,0,0,1030,1,0,0 +2013,4,29,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1645,0,0,1800,-3,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,0,0,1120,-14,0,0 +2013,9,2,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1523,6,0,2329,11,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-7,0,1510,-11,0,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,4,0,2110,-18,0,0 +2013,9,14,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2135,28,1,530,23,1,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-2,0,1011,-7,0,0 +2013,4,30,2,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1600,-4,0,1720,-24,0,0 +2013,7,6,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1724,-7,0,0 +2013,7,2,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,910,2,0,1105,-18,0,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1717,-5,0,1838,-4,0,0 +2013,6,9,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,50,1,2245,43,1,0 +2013,6,21,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,3,0,846,-2,0,0 +2013,8,5,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1957,-8,0,2309,-8,0,0 +2013,4,21,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1101,-4,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,4,0,2105,1,0,0 +2013,8,9,5,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,730,2,0,745,11,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1815,13,0,2046,27,1,0 +2013,5,14,2,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1520,5,0,1625,26,1,0 +2013,10,18,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,-2,0,2128,-8,0,0 +2013,6,10,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1635,64,1,1840,64,1,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-7,0,1441,-4,0,0 +2013,9,2,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1840,8,0,2105,14,0,0 +2013,4,17,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,-1,0,1543,-5,0,0 +2013,5,29,3,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1503,-1,0,1752,-37,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,735,0,,1205,0,1,1 +2013,9,21,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-3,0,1200,-10,0,0 +2013,4,14,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-5,0,1633,-13,0,0 +2013,5,24,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,2,0,1419,-7,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,900,12,0,1250,20,1,0 +2013,9,30,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1655,-12,0,1845,-36,0,0 +2013,9,27,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-10,0,859,4,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,854,-8,0,1111,-20,0,0 +2013,7,14,7,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,-9,0,2020,-2,0,0 +2013,8,22,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1950,74,1,2115,66,1,0 +2013,5,3,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1200,0,0,1335,7,0,0 +2013,10,14,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-6,0,1350,-5,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1227,1,0,1511,-11,0,0 +2013,5,18,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,759,-13,0,0 +2013,7,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1310,-2,0,1424,-6,0,0 +2013,7,14,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,-3,0,1031,-3,0,0 +2013,6,30,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,4,0,1915,-10,0,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,945,5,0,1230,-6,0,0 +2013,10,27,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1933,-19,0,2025,-28,0,0 +2013,4,16,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1837,-10,0,1926,-11,0,0 +2013,5,15,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1134,65,1,1300,61,1,0 +2013,5,16,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1923,-6,0,2135,-11,0,0 +2013,9,9,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1125,0,0,1227,-5,0,0 +2013,10,1,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,852,-4,0,1030,-7,0,0 +2013,7,22,1,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,-7,0,1349,-13,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,111,1,2139,106,1,0 +2013,9,11,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,14,0,744,4,0,0 +2013,4,5,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-9,0,1050,-23,0,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,620,-1,0,705,1,0,0 +2013,4,4,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,915,-9,0,0 +2013,10,13,7,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-6,0,1130,1,0,0 +2013,7,8,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,19,1,1334,27,1,0 +2013,8,8,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,-3,0,1330,-6,0,0 +2013,10,15,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-5,0,1240,4,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,46,1,1700,40,1,0 +2013,8,14,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1520,19,1,1635,-4,0,0 +2013,10,21,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,756,0,0,0 +2013,8,20,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,3,0,1222,-1,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,833,-3,0,1537,-10,0,0 +2013,5,10,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1715,-3,0,1848,-6,0,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,4,0,2314,6,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1640,-3,0,1900,-18,0,0 +2013,7,6,6,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-2,0,2150,-10,0,0 +2013,5,19,7,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1830,-5,0,1955,-4,0,0 +2013,4,17,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-5,0,2030,-12,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-7,0,1013,-3,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1820,7,0,2025,9,0,0 +2013,6,11,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1250,-24,0,0 +2013,7,7,7,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,94,1,2044,97,1,0 +2013,10,31,4,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1955,48,1,2240,48,1,0 +2013,4,21,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1428,2,0,1630,-10,0,0 +2013,6,9,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,845,-6,0,1023,-13,0,0 +2013,8,15,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1450,2,0,1555,0,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1600,10,0,1730,1,0,0 +2013,4,20,6,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,5,0,1300,-5,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1200,4,0,1450,-6,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,3,0,1250,-2,0,0 +2013,6,18,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-6,0,608,8,0,0 +2013,4,24,3,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1015,-7,0,1116,-12,0,0 +2013,8,3,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1656,0,0,1809,14,0,0 +2013,5,30,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,745,-1,0,1055,-1,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1204,23,1,1423,13,0,0 +2013,9,17,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1810,-1,0,1910,-4,0,0 +2013,5,5,7,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1207,-3,0,1340,-17,0,0 +2013,6,21,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-5,0,825,24,1,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1057,7,0,1339,2,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1640,4,0,1933,-1,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1930,23,1,2205,0,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,0,0,1915,-7,0,0 +2013,7,21,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1035,78,1,1210,82,1,0 +2013,9,22,7,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-3,0,1100,-21,0,0 +2013,9,22,7,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2201,20,1,2322,16,1,0 +2013,8,22,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1059,38,1,1439,28,1,0 +2013,6,21,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,-6,0,1015,-15,0,0 +2013,8,29,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1650,-21,0,0 +2013,6,1,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,0,0,950,-7,0,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2017,21,1,2114,8,0,0 +2013,8,19,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,2,0,1545,5,0,0 +2013,6,1,6,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,-3,0,835,-13,0,0 +2013,9,26,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,605,-3,0,700,-8,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,850,-1,0,1721,-21,0,0 +2013,8,2,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2233,2,0,607,-3,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,747,0,0,915,-23,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,13,0,1135,19,1,0 +2013,10,28,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1501,134,1,1645,144,1,0 +2013,5,15,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1742,-15,0,1913,25,1,0 +2013,10,27,7,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,2030,-11,0,2229,-27,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,10,0,1325,1,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,-4,0,128,-20,0,0 +2013,9,7,6,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-7,0,2124,-24,0,0 +2013,4,4,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,605,-4,0,857,-16,0,0 +2013,5,6,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,630,-1,0,810,-6,0,0 +2013,8,30,5,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1055,-6,0,1918,-12,0,0 +2013,7,27,6,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,847,7,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-6,0,1325,-16,0,0 +2013,8,5,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,0,0,815,-7,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1105,0,0,1325,-11,0,0 +2013,6,8,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,950,-5,0,1204,4,0,0 +2013,9,20,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1551,-3,0,1730,-15,0,0 +2013,9,1,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,14,0,1315,17,1,0 +2013,7,13,6,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-7,0,1022,-41,0,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1000,4,0,1405,-1,0,0 +2013,7,3,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,742,-1,0,1033,-21,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-3,0,1029,-17,0,0 +2013,5,15,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-1,0,1335,4,0,0 +2013,5,14,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-2,0,1149,0,0,0 +2013,6,21,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,11,0,2010,10,0,0 +2013,8,6,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,15,1,1026,24,1,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,-1,0,1755,-2,0,0 +2013,5,17,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,23,1,2155,18,1,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1450,14,0,2020,14,0,0 +2013,8,17,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1356,3,0,1435,11,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1840,59,1,2245,52,1,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1825,25,1,2100,17,1,0 +2013,5,21,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1554,15,1,1820,10,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,15,1,2255,13,0,0 +2013,6,17,1,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,24,1,1608,24,1,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,126,1,1231,126,1,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-3,0,915,-18,0,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1300,13,0,1355,14,0,0 +2013,5,11,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,-4,0,1100,4,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1700,1,0,1750,-6,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,954,-3,0,1146,0,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1930,51,1,2130,55,1,0 +2013,10,30,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,1015,-18,0,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,625,4,0,940,2,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,650,54,1,1254,70,1,0 +2013,6,21,5,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-6,0,1129,-31,0,0 +2013,10,28,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,901,-4,0,949,-5,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1535,0,0,1648,1,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1653,3,0,1945,-38,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1305,-4,0,1629,-9,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2042,-2,0,2155,-13,0,0 +2013,8,11,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,40,1,2150,31,1,0 +2013,8,19,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,918,-2,0,1130,-17,0,0 +2013,9,10,2,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1112,-10,0,1404,-2,0,0 +2013,6,26,3,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,722,61,1,923,109,1,0 +2013,4,26,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1340,13,0,1455,7,0,0 +2013,9,8,7,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1055,-11,0,1501,-10,0,0 +2013,5,13,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-4,0,2250,-4,0,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1330,27,1,1532,21,1,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,2,0,1118,3,0,0 +2013,10,28,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,24,1,1755,5,0,0 +2013,4,22,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-5,0,747,-4,0,0 +2013,6,2,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,47,1,1705,97,1,0 +2013,4,27,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1535,-8,0,0 +2013,8,9,5,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1000,-7,0,1225,4,0,0 +2013,7,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2202,74,1,2309,65,1,0 +2013,4,1,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1625,-1,0,1753,4,0,0 +2013,5,16,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-5,0,1610,-9,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-3,0,1115,2,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-4,0,747,-16,0,0 +2013,8,17,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,31,1,1720,35,1,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,-7,0,2216,-16,0,0 +2013,6,30,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-1,0,1559,20,1,0 +2013,6,10,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,843,0,0,1019,-11,0,0 +2013,6,23,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,-11,0,10,0,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,810,-1,0,931,2,0,0 +2013,6,16,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1430,16,1,1605,0,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,0,0,1613,18,1,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1913,-4,0,2110,-2,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1055,0,0,1200,3,0,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1234,-1,0,1830,-36,0,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1735,2,0,1915,44,1,0 +2013,7,23,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1005,1,0,1245,10,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,1,0,1306,6,0,0 +2013,9,29,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-6,0,1159,-21,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2145,59,1,50,48,1,0 +2013,6,9,7,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,4,0,745,20,1,0 +2013,10,24,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1610,5,0,1713,-8,0,0 +2013,8,20,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,935,-1,0,1021,-9,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1315,-1,0,2110,13,0,0 +2013,9,23,1,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,2,0,2030,-19,0,0 +2013,8,10,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1615,-1,0,1814,-3,0,0 +2013,4,24,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,3,0,1337,4,0,0 +2013,9,4,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1859,-2,0,2006,18,1,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1645,19,1,2000,19,1,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,939,4,0,1049,-1,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1742,1,0,2055,11,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1145,-2,0,1355,1,0,0 +2013,5,12,7,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,710,-4,0,935,-26,0,0 +2013,8,4,7,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1542,2,0,1803,34,1,0 +2013,7,7,7,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,759,-7,0,0 +2013,9,25,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1540,-2,0,1737,11,0,0 +2013,9,2,1,OO,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,946,-9,0,1149,-14,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1704,58,1,2012,69,1,0 +2013,5,2,4,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,22,1,1840,-3,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-5,0,920,-9,0,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,745,22,1,855,18,1,0 +2013,6,25,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,30,1,1255,30,1,0 +2013,9,12,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,635,-1,0,930,2,0,0 +2013,7,28,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1439,-9,0,1715,-22,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1237,6,0,1508,-5,0,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1840,0,,1945,0,1,1 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1945,7,0,2105,2,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,944,5,0,1300,-9,0,0 +2013,7,9,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,1145,8,0,0 +2013,5,15,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1850,9,0,2023,34,1,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-3,0,1157,-6,0,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,700,-2,0,830,1,0,0 +2013,9,16,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1235,42,1,1830,39,1,0 +2013,8,4,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,743,14,0,1004,10,0,0 +2013,9,12,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2000,-8,0,2200,-16,0,0 +2013,6,13,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1030,-6,0,1309,47,1,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1547,-7,0,2104,4,0,0 +2013,8,5,1,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1410,4,0,2235,3,0,0 +2013,6,12,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,-4,0,1015,-4,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,161,1,1912,149,1,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1200,23,1,2037,-6,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1549,0,0,1825,-6,0,0 +2013,6,11,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,610,-1,0,722,28,1,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1341,-5,0,1648,9,0,0 +2013,8,5,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,29,1,1220,19,1,0 +2013,6,6,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,-4,0,1903,10,0,0 +2013,9,15,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1040,-1,0,1100,-10,0,0 +2013,7,20,6,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,18,1,1745,16,1,0 +2013,6,12,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,805,-22,0,0 +2013,8,31,6,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-2,0,804,2,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2000,5,0,20,10,0,0 +2013,5,2,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1320,4,0,1548,-10,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1124,-6,0,1720,7,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1125,-1,0,1845,8,0,0 +2013,7,15,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,31,1,1545,34,1,0 +2013,5,22,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1409,2,0,1619,-1,0,0 +2013,4,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,-7,0,2034,-16,0,0 +2013,7,5,5,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-4,0,1815,-9,0,0 +2013,4,22,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,-7,0,1950,-5,0,0 +2013,6,15,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1730,-5,0,1841,-5,0,0 +2013,7,1,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-7,0,1848,-21,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1053,-1,0,1314,-13,0,0 +2013,6,16,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,1,0,2125,-7,0,0 +2013,8,15,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1959,28,1,2,30,1,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,915,0,0,1505,-12,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,-6,0,1255,-4,0,0 +2013,10,22,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1254,-6,0,1631,-24,0,0 +2013,4,26,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1118,-5,0,0 +2013,8,2,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1743,60,1,1848,116,1,0 +2013,8,16,5,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,-3,0,1315,8,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-2,0,1450,-13,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,855,-7,0,1015,-11,0,0 +2013,9,14,6,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-15,0,2014,-25,0,0 +2013,8,8,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,95,1,2230,95,1,0 +2013,4,15,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-5,0,1340,18,1,0 +2013,7,8,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-10,0,1810,-20,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1350,-11,0,0 +2013,5,4,6,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1330,36,1,1610,32,1,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,-5,0,845,-8,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1636,98,1,1915,95,1,0 +2013,6,13,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1020,5,0,1226,4,0,0 +2013,9,12,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,815,-7,0,1052,-8,0,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,32,1,2126,26,1,0 +2013,5,27,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1514,-3,0,1619,-6,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,825,7,0,1045,16,1,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,715,-11,0,830,-18,0,0 +2013,5,30,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-10,0,1101,-21,0,0 +2013,9,19,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1205,-2,0,1424,26,1,0 +2013,10,10,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,-3,0,850,-24,0,0 +2013,8,25,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-5,0,1705,-10,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,757,-5,0,1024,13,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1910,49,1,2100,50,1,0 +2013,10,2,3,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1815,-12,0,2058,-18,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,0,0,1045,-8,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,87,1,2033,111,1,0 +2013,10,30,3,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1735,7,0,2000,21,1,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1340,-1,0,1555,-21,0,0 +2013,7,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1945,-3,0,2113,-20,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1050,18,1,1340,23,1,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,-8,0,1130,-24,0,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1905,1,0,2242,-9,0,0 +2013,10,28,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-2,0,1600,-8,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1140,6,0,1255,-5,0,0 +2013,8,5,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,700,3,0,1003,-5,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1225,33,1,1330,29,1,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,-6,0,1130,-17,0,0 +2013,10,25,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,4,0,1159,-3,0,0 +2013,5,27,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,759,-17,0,0 +2013,4,24,3,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1700,3,0,2022,69,1,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,745,-3,0,915,-7,0,0 +2013,9,12,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2029,12,0,2156,70,1,0 +2013,9,6,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,815,0,0,930,-15,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1830,5,0,2220,-3,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,739,-8,0,934,-16,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1630,2,0,1833,-18,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1800,-3,0,2020,-18,0,0 +2013,5,24,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1936,-8,0,2057,-10,0,0 +2013,6,27,4,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-6,0,1625,-21,0,0 +2013,6,27,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,7,0,1855,13,0,0 +2013,9,4,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1432,-6,0,1559,-20,0,0 +2013,6,6,4,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,600,0,0,640,2,0,0 +2013,5,6,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1027,-3,0,1302,-11,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,-2,0,1940,12,0,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,0,0,1613,8,0,0 +2013,10,17,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1403,39,1,1653,45,1,0 +2013,9,12,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1131,-7,0,1233,-3,0,0 +2013,5,8,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,0,,1240,0,1,1 +2013,9,10,2,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1456,-7,0,1637,-38,0,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1120,4,0,1214,-6,0,0 +2013,4,21,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1500,-9,0,1738,16,1,0 +2013,9,19,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-2,0,740,-5,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,1,0,1530,-11,0,0 +2013,8,5,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1802,43,1,2017,29,1,0 +2013,5,15,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,719,25,1,0 +2013,9,18,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-3,0,745,-6,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,648,0,0,958,-29,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,720,68,1,1110,69,1,0 +2013,4,2,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-6,0,1417,-13,0,0 +2013,10,14,1,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,-4,0,2047,-23,0,0 +2013,5,3,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1530,-3,0,1555,-6,0,0 +2013,6,12,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,23,1,1630,21,1,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,832,-3,0,1440,-14,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1920,14,0,2040,5,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1342,0,0,1501,-37,0,0 +2013,4,29,1,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1130,-1,0,1235,-4,0,0 +2013,8,30,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1954,2,0,2130,-26,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,840,87,1,1105,93,1,0 +2013,8,22,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,0,0,940,3,0,0 +2013,6,15,6,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1620,66,1,1810,83,1,0 +2013,9,30,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,757,2,0,0 +2013,8,18,7,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-6,0,2035,-14,0,0 +2013,4,7,7,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,930,-5,0,1025,-14,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,100,1,1515,117,1,0 +2013,4,15,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1917,17,1,2201,18,1,0 +2013,4,13,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1235,29,1,1338,32,1,0 +2013,8,19,1,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,635,0,0,745,-17,0,0 +2013,9,17,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-7,0,858,-17,0,0 +2013,9,5,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,-6,0,1640,-11,0,0 +2013,9,22,7,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1845,43,1,2159,51,1,0 +2013,8,2,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,18,1,2022,3,0,0 +2013,6,28,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,915,-3,0,1025,-6,0,0 +2013,7,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1935,4,0,2138,-13,0,0 +2013,6,25,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,19,1,2050,16,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1733,-4,0,1916,-13,0,0 +2013,4,8,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1320,11,0,1620,4,0,0 +2013,9,20,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,21,1,1815,15,1,0 +2013,10,25,5,OO,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1005,-6,0,1207,-1,0,0 +2013,8,18,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,2010,2,0,2105,2,0,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1252,5,0,1745,53,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1920,10,0,2045,-6,0,0 +2013,6,15,6,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1845,-1,0,2015,18,1,0 +2013,7,16,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1200,-4,0,1225,-8,0,0 +2013,10,19,6,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1645,-9,0,1921,13,0,0 +2013,6,25,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1219,-6,0,1358,-15,0,0 +2013,6,30,7,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1328,42,1,1530,47,1,0 +2013,5,3,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2055,-5,0,2130,7,0,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1702,2,0,2056,-18,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1652,5,0,1815,-13,0,0 +2013,8,27,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,-4,0,1150,1,0,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1406,37,1,1721,46,1,0 +2013,6,6,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,720,1,0,735,-4,0,0 +2013,9,16,1,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1349,0,0,1429,-2,0,0 +2013,6,26,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1043,-4,0,1840,16,1,0 +2013,9,19,4,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2125,-10,0,2338,-28,0,0 +2013,8,28,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-9,0,1341,-7,0,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1255,3,0,1620,-14,0,0 +2013,4,7,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-11,0,740,-13,0,0 +2013,8,16,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1259,3,0,1535,-7,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1749,-1,0,2034,-33,0,0 +2013,8,2,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,810,-3,0,925,-6,0,0 +2013,6,13,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1145,25,1,1633,34,1,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1040,9,0,1210,6,0,0 +2013,7,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1725,6,0,1910,2,0,0 +2013,4,8,1,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1455,20,1,2245,2,0,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2155,138,1,2335,134,1,0 +2013,5,23,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,-4,0,608,5,0,0 +2013,8,12,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-9,0,1637,-4,0,0 +2013,4,25,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-2,0,2159,-6,0,0 +2013,8,29,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1740,-1,0,0 +2013,6,15,6,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1148,-7,0,1447,0,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,-1,0,1148,-10,0,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1008,5,0,1507,-9,0,0 +2013,4,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,720,-4,0,936,-2,0,0 +2013,6,2,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-4,0,1633,-13,0,0 +2013,8,23,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,-3,0,2005,10,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,7,0,1620,33,1,0 +2013,5,31,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,-5,0,1053,-6,0,0 +2013,9,10,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,-3,0,1350,-7,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-8,0,2314,-27,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-3,0,725,-7,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1355,1,0,1625,-12,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,-6,0,535,-7,0,0 +2013,4,17,3,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2350,40,1,806,41,1,0 +2013,4,7,7,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1155,-2,0,1440,-6,0,0 +2013,4,9,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-2,0,810,-5,0,0 +2013,10,19,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1035,-4,0,1140,-6,0,0 +2013,6,22,6,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,742,0,0,956,-33,0,0 +2013,6,11,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,550,4,0,655,-4,0,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,2,0,1724,-1,0,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2208,7,0,628,-5,0,0 +2013,5,18,6,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,630,-4,0,915,-15,0,0 +2013,4,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-1,0,1210,-12,0,0 +2013,4,28,7,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1040,18,1,1307,16,1,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1040,-6,0,1217,-16,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,940,12,0,1207,13,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1500,24,1,1755,15,1,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1015,14,0,1500,2,0,0 +2013,4,1,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2302,-3,0,2351,-7,0,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,745,-1,0,915,17,1,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1830,217,1,5,225,1,0 +2013,4,4,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1755,91,1,1914,87,1,0 +2013,6,3,1,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,33,1,1013,24,1,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1105,0,0,1330,-12,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1215,3,0,1330,7,0,0 +2013,9,14,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,810,0,0,910,-3,0,0 +2013,4,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,759,1,0,854,-7,0,0 +2013,4,27,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1055,-5,0,1855,-8,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,55,1,2300,47,1,0 +2013,5,1,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1410,1,0,1510,-4,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1315,0,0,1840,0,0,0 +2013,10,4,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,11,0,1545,6,0,0 +2013,5,1,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-8,0,919,3,0,0 +2013,9,2,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1935,10,0,2005,0,0,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,640,0,,945,0,1,1 +2013,5,12,7,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,-5,0,2034,-12,0,0 +2013,7,22,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1147,-4,0,1353,2,0,0 +2013,4,17,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,837,-1,0,913,-8,0,0 +2013,9,12,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,856,-8,0,0 +2013,6,13,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,530,-5,0,616,-9,0,0 +2013,6,28,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1650,3,0,1805,-12,0,0 +2013,8,11,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,6,0,1828,8,0,0 +2013,4,9,2,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1450,15,1,1655,37,1,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1505,4,0,1550,-2,0,0 +2013,8,15,4,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-6,0,29,-4,0,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1448,13,0,1745,-4,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,3,0,1928,4,0,0 +2013,7,30,2,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,849,-3,0,1013,10,0,0 +2013,7,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-7,0,1706,-6,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1955,30,1,2115,29,1,0 +2013,6,3,1,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1104,-4,0,1414,28,1,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1134,-1,0,1257,-2,0,0 +2013,8,7,3,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1822,-5,0,1930,14,0,0 +2013,9,27,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-12,0,1119,-13,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1440,33,1,1605,24,1,0 +2013,10,10,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,50,1,1340,49,1,0 +2013,8,24,6,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1519,-4,0,1636,-9,0,0 +2013,6,28,5,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-3,0,803,17,1,0 +2013,9,14,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1230,2,0,1345,-1,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1545,0,,1655,0,1,1 +2013,5,30,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,629,-4,0,757,-5,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,49,1,2255,44,1,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,550,3,0,905,0,0,0 +2013,7,13,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,37,1,2105,89,1,0 +2013,5,20,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1244,-5,0,1329,-3,0,0 +2013,8,4,7,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-4,0,1306,-7,0,0 +2013,5,14,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,750,-1,0,900,-2,0,0 +2013,7,9,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,940,0,0,1050,-7,0,0 +2013,10,31,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,900,-8,0,1040,-17,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2155,11,0,2335,31,1,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,800,2,0,855,5,0,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1655,4,0,1750,-9,0,0 +2013,5,18,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,4,0,1938,-3,0,0 +2013,4,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,756,-4,0,1101,0,0,0 +2013,4,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1245,7,0,1655,-14,0,0 +2013,8,23,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,530,0,0,710,-2,0,0 +2013,10,23,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,-5,0,1404,-7,0,0 +2013,9,19,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,2,0,1905,1,0,0 +2013,7,9,2,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-1,0,805,-2,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,8,0,842,18,1,0 +2013,6,19,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-5,0,1010,-22,0,0 +2013,10,30,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1436,-8,0,1625,8,0,0 +2013,6,8,6,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,-2,0,920,-17,0,0 +2013,5,10,5,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,740,2,0,1230,-1,0,0 +2013,7,12,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,610,-8,0,717,-22,0,0 +2013,8,3,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,83,1,1659,65,1,0 +2013,6,19,3,EV,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1911,-3,0,2026,-2,0,0 +2013,7,13,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-4,0,940,-3,0,0 +2013,5,9,4,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1120,11,0,1945,39,1,0 +2013,8,17,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,0,0,2025,-8,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1150,-3,0,1425,-8,0,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,17,1,2055,17,1,0 +2013,4,3,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2100,-7,0,18,-24,0,0 +2013,6,16,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2055,36,1,2204,29,1,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,13,0,1820,4,0,0 +2013,5,7,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,2,0,1905,-14,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,844,-5,0,959,-17,0,0 +2013,10,7,1,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,1730,-1,0,1909,-18,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1805,39,1,1935,43,1,0 +2013,4,7,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-6,0,1225,-27,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1205,-8,0,1305,-19,0,0 +2013,4,29,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,715,-20,0,0 +2013,7,19,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,1359,-11,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1810,6,0,2047,-28,0,0 +2013,8,23,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,13,0,1954,-2,0,0 +2013,10,22,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,600,-5,0,708,-7,0,0 +2013,9,16,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1400,14,0,1620,9,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1346,8,0,1525,8,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1135,5,0,1332,2,0,0 +2013,6,24,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1310,0,0,1510,-18,0,0 +2013,10,12,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1222,-14,0,0 +2013,7,31,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-14,0,500,-23,0,0 +2013,9,4,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-2,0,1130,-20,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1115,85,1,1200,80,1,0 +2013,4,24,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,855,-1,0,900,3,0,0 +2013,4,4,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,34,1,1350,29,1,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1824,44,1,29,38,1,0 +2013,7,24,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,645,-5,0,820,-6,0,0 +2013,4,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-1,0,900,0,0,0 +2013,7,15,1,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2025,-2,0,2330,-5,0,0 +2013,6,3,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,726,2,0,1000,0,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2130,-4,0,2242,-22,0,0 +2013,5,20,1,F9,14122,Pittsburgh International,Pittsburgh,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-11,0,2037,-10,0,0 +2013,4,30,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,0,0,915,-7,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,955,19,1,1300,16,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,-1,0,1725,-7,0,0 +2013,7,28,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1135,0,0,1300,-9,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1315,-2,0,1535,-24,0,0 +2013,4,26,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-3,0,1639,-1,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-7,0,928,-13,0,0 +2013,10,16,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1355,-7,0,1615,-2,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,0,0,1820,-9,0,0 +2013,7,31,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,0,0,1924,-9,0,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2045,19,1,2330,10,0,0 +2013,6,4,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,925,-5,0,1220,-1,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1915,9,0,2050,2,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1349,136,1,1639,122,1,0 +2013,8,13,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1519,-5,0,1625,-13,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1459,62,1,1636,43,1,0 +2013,4,5,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,818,-2,0,1033,-24,0,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,-1,0,750,-4,0,0 +2013,10,13,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-6,0,2220,8,0,0 +2013,10,24,4,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1055,-5,0,1210,-3,0,0 +2013,6,15,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2145,7,0,2301,-1,0,0 +2013,5,26,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-5,0,1447,-17,0,0 +2013,4,1,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,610,-7,0,710,-3,0,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1335,1,0,1500,-6,0,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,752,7,0,926,6,0,0 +2013,5,31,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-8,0,1913,-21,0,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1212,9,0,1459,-14,0,0 +2013,4,15,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,-5,0,1215,-9,0,0 +2013,9,5,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-13,0,2035,3,0,0 +2013,5,9,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-3,0,705,-3,0,0 +2013,8,31,6,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,930,-8,0,0 +2013,6,6,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1637,19,1,1834,10,0,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1100,-3,0,1500,-19,0,0 +2013,5,21,2,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,10,0,2145,3,0,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-1,0,958,12,0,0 +2013,7,31,3,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1115,-2,0,1330,3,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,855,1,0,1020,-1,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-4,0,1330,-22,0,0 +2013,10,20,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,-1,0,908,-14,0,0 +2013,4,3,3,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1300,16,1,2149,3,0,0 +2013,10,1,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,13,0,1643,2,0,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1541,15,1,1853,24,1,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1455,47,1,1645,47,1,0 +2013,7,3,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-3,0,1010,-13,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,740,-3,0,941,12,0,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1729,80,1,1930,73,1,0 +2013,9,26,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,0,0,2240,2,0,0 +2013,10,10,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,-6,0,1352,1,0,0 +2013,5,20,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,0,0,1314,-6,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,0,0,1115,-5,0,0 +2013,5,17,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,0,0,2145,-4,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,177,1,1809,164,1,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,835,-2,0,1030,-22,0,0 +2013,8,4,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,35,1,1831,35,1,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2205,-3,0,2258,0,0,0 +2013,7,3,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,745,-3,0,1610,-18,0,0 +2013,7,18,4,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1235,28,1,1415,13,0,0 +2013,5,13,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-1,0,715,-8,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1305,12,0,1430,6,0,0 +2013,7,31,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,8,0,1530,3,0,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1436,3,0,1835,33,1,0 +2013,6,20,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1553,43,1,1656,59,1,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,954,-5,0,1240,-17,0,0 +2013,10,30,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1935,76,1,2059,93,1,0 +2013,4,9,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,629,-7,0,825,-19,0,0 +2013,7,4,4,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1810,-3,0,2055,-14,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1856,6,0,2225,13,0,0 +2013,4,11,4,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,22,1,1955,20,1,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1505,14,0,1815,18,1,0 +2013,9,20,5,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,0,0,929,2,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,3,0,915,-1,0,0 +2013,10,17,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1403,-3,0,1723,-6,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,153,1,2030,155,1,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,9,0,2340,9,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,9,0,930,-10,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1824,-1,0,2129,-21,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,800,6,0,1320,-2,0,0 +2013,5,19,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1835,7,0,2010,-1,0,0 +2013,6,23,7,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,625,-8,0,659,-18,0,0 +2013,7,26,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1459,5,0,1655,18,1,0 +2013,4,4,4,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1905,-10,0,2157,-25,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,601,-9,0,734,-5,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,6,0,1839,6,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2230,15,1,2335,27,1,0 +2013,10,24,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-4,0,1757,-2,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,0,0,2025,-10,0,0 +2013,7,6,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1136,-6,0,1239,-15,0,0 +2013,10,24,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1845,-4,0,2034,-25,0,0 +2013,10,8,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,-10,0,1314,-6,0,0 +2013,8,28,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,-7,0,1920,4,0,0 +2013,5,30,4,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,715,1,0,955,-11,0,0 +2013,4,9,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,946,-6,0,1039,-5,0,0 +2013,7,5,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1955,-1,0,2129,13,0,0 +2013,4,21,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,6,0,1255,14,0,0 +2013,7,2,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-5,0,1843,-19,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2150,27,1,2245,19,1,0 +2013,6,12,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,906,-6,0,1102,-9,0,0 +2013,8,3,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1851,-8,0,2029,-33,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1626,1,0,1849,-39,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1251,-2,0,1425,15,1,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,-1,0,950,-3,0,0 +2013,10,21,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1935,-9,0,2059,-11,0,0 +2013,6,3,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2027,-5,0,2118,-11,0,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,-3,0,1040,5,0,0 +2013,5,26,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1642,-15,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1950,15,1,2110,23,1,0 +2013,5,4,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1209,91,1,1508,107,1,0 +2013,5,13,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1709,3,0,0 +2013,6,16,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2125,5,0,10,7,0,0 +2013,9,8,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-5,0,1507,-6,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,703,-7,0,840,-23,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1351,0,0,1525,0,0,0 +2013,6,18,2,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1555,103,1,1740,116,1,0 +2013,4,27,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1925,43,1,2300,14,0,0 +2013,8,8,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,814,-4,0,1008,-7,0,0 +2013,9,17,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1135,6,0,1700,-8,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-8,0,929,8,0,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,203,1,2140,207,1,0 +2013,4,2,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-6,0,1529,-17,0,0 +2013,5,21,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,-1,0,1135,-8,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-5,0,1913,-17,0,0 +2013,5,5,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,33,1,1203,28,1,0 +2013,5,10,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2005,3,0,2050,-14,0,0 +2013,7,18,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,28,1,1946,10,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2039,5,0,2213,-7,0,0 +2013,6,16,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-3,0,1123,-15,0,0 +2013,10,16,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1520,-4,0,1725,17,1,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,-5,0,2201,-6,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,-4,0,1929,-8,0,0 +2013,10,7,1,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1010,10,0,1225,-2,0,0 +2013,10,10,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2351,-1,0,700,-5,0,0 +2013,4,7,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-7,0,1719,-30,0,0 +2013,5,30,4,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-7,0,1635,13,0,0 +2013,5,13,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,8,0,1530,-1,0,0 +2013,5,4,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-6,0,909,-13,0,0 +2013,9,10,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,-5,0,1435,-15,0,0 +2013,5,24,5,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1706,1,0,2025,-9,0,0 +2013,9,12,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,935,-10,0,1054,-12,0,0 +2013,5,14,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,755,-3,0,921,2,0,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1410,10,0,1605,-12,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,923,71,1,1057,58,1,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,900,3,0,1125,-3,0,0 +2013,5,24,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-3,0,1938,5,0,0 +2013,9,10,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1114,-1,0,1346,-8,0,0 +2013,7,31,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-2,0,1730,-1,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2010,5,0,2310,4,0,0 +2013,8,8,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1158,0,0,1435,6,0,0 +2013,8,23,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,29,1,2025,26,1,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1620,-2,0,1720,-11,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-6,0,1629,-29,0,0 +2013,5,13,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,-3,0,1932,-34,0,0 +2013,10,8,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,8,0,944,-15,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1320,143,1,1750,133,1,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1449,10,0,1635,11,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1555,0,0,1725,-1,0,0 +2013,5,10,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1335,-5,0,1540,-20,0,0 +2013,6,16,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1945,6,0,2345,-13,0,0 +2013,9,29,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1734,3,0,2015,-16,0,0 +2013,6,8,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1130,1,0,1520,8,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,79,1,2017,44,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,-1,0,1720,-8,0,0 +2013,10,8,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-4,0,939,-6,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,-6,0,1120,-6,0,0 +2013,5,21,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-10,0,1257,-5,0,0 +2013,9,25,3,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,825,-1,0,1000,-13,0,0 +2013,7,14,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,0,0,1355,9,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1550,17,1,1721,0,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,0,0,519,14,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2050,10,0,2230,2,0,0 +2013,9,1,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,25,1,1420,24,1,0 +2013,6,20,4,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1325,99,1,1615,88,1,0 +2013,8,1,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1218,-2,0,1409,-15,0,0 +2013,8,28,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,49,1,2148,39,1,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,715,-3,0,825,-7,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1830,24,1,1944,22,1,0 +2013,5,25,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-8,0,1606,6,0,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,1,0,1630,15,1,0 +2013,9,27,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,5,0,1945,-12,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,41,1,1320,49,1,0 +2013,8,26,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,655,-4,0,755,-4,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,47,1,2335,40,1,0 +2013,5,10,5,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,918,14,0,1101,120,1,0 +2013,8,23,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2105,16,1,2200,11,0,0 +2013,9,6,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-3,0,1302,-10,0,0 +2013,5,11,6,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1356,-3,0,1623,6,0,0 +2013,5,17,5,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2049,5,0,2259,-17,0,0 +2013,5,27,1,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,5,0,1648,16,1,0 +2013,4,18,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1825,-6,0,1929,-16,0,0 +2013,10,25,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2000,1,0,2140,-3,0,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,954,-5,0,1604,-17,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,-4,0,2041,-5,0,0 +2013,7,27,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1450,4,0,1645,-17,0,0 +2013,9,5,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-1,0,1013,-6,0,0 +2013,4,1,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1940,12,0,2147,4,0,0 +2013,7,8,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,-4,0,2015,2,0,0 +2013,8,2,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,-5,0,1311,-3,0,0 +2013,4,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2143,-1,0,2248,38,1,0 +2013,4,16,2,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1845,-6,0,2305,28,1,0 +2013,6,24,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1530,0,0,1640,-6,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,630,-3,0,855,-6,0,0 +2013,10,19,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,0,0,903,16,1,0 +2013,9,6,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,1,0,1730,-4,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,705,-1,0,811,1,0,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2145,12,0,605,8,0,0 +2013,4,26,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,-2,0,1440,-7,0,0 +2013,8,28,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,630,-2,0,725,-4,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1920,8,0,50,21,1,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1532,42,1,1900,32,1,0 +2013,10,22,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,61,1,1015,42,1,0 +2013,5,7,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,2,0,934,7,0,0 +2013,7,4,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,935,-6,0,1130,1,0,0 +2013,5,2,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,-4,0,755,0,0,0 +2013,8,26,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-12,0,2150,-20,0,0 +2013,6,30,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1400,15,1,1529,0,1,1 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,-5,0,1113,-12,0,0 +2013,5,7,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,1,0,929,11,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,183,1,1832,183,1,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1948,-10,0,2311,-25,0,0 +2013,6,27,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1545,0,0,1705,-8,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1229,21,1,1458,11,0,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,8,0,1422,4,0,0 +2013,10,24,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,800,46,1,850,51,1,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,2130,-3,0,2304,-8,0,0 +2013,7,31,3,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,800,-8,0,1021,11,0,0 +2013,7,12,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1553,0,,1641,0,1,1 +2013,4,27,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2145,0,0,21,-12,0,0 +2013,8,15,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-6,0,1749,-15,0,0 +2013,4,8,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-4,0,922,-26,0,0 +2013,10,28,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1006,2,0,1214,-2,0,0 +2013,5,18,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,-4,0,1348,-12,0,0 +2013,5,31,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,735,-3,0,900,1,0,0 +2013,4,8,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,501,-2,0,856,-8,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2005,194,1,2255,220,1,0 +2013,6,12,3,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1415,73,1,1533,65,1,0 +2013,10,26,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-5,0,1519,-14,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1122,-6,0,1306,-42,0,0 +2013,7,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1020,-2,0,1238,-13,0,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1235,6,0,1845,4,0,0 +2013,10,11,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,16,1,1245,14,0,0 +2013,10,8,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,3,0,2005,-12,0,0 +2013,8,18,7,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,1,0,1940,6,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1925,-2,0,2004,-8,0,0 +2013,5,1,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-1,0,1305,1,0,0 +2013,5,11,6,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1900,27,1,2155,39,1,0 +2013,8,1,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1559,33,1,1627,27,1,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,0,0,1330,-14,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,-2,0,20,-22,0,0 +2013,9,29,7,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1944,13,0,2251,9,0,0 +2013,8,15,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1935,17,1,2213,-9,0,0 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-9,0,1112,-21,0,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,0,0,1440,4,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-3,0,2124,-11,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,-1,0,2125,-11,0,0 +2013,8,3,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2014,3,0,2105,30,1,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-2,0,724,-10,0,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1905,-4,0,2142,-19,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,1,0,1425,0,0,0 +2013,6,17,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,0,0,1648,-11,0,0 +2013,6,29,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1515,-4,0,1903,-3,0,0 +2013,7,29,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-4,0,1600,-3,0,0 +2013,4,13,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1205,14,0,1315,13,0,0 +2013,10,3,4,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1150,6,0,1545,-11,0,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1113,8,0,1436,-6,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,0,0,1445,3,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,2110,0,0,2308,-8,0,0 +2013,7,15,1,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1200,-6,0,1250,-24,0,0 +2013,4,4,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1225,-5,0,1335,-16,0,0 +2013,8,13,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,8,0,1039,-5,0,0 +2013,10,22,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,925,-3,0,1040,-8,0,0 +2013,9,8,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1510,16,1,1620,6,0,0 +2013,9,18,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1450,3,0,1637,-7,0,0 +2013,7,5,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1859,-3,0,2147,-33,0,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,730,0,0,900,-6,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,22,1,110,18,1,0 +2013,5,19,7,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,1,0,740,-14,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1537,-5,0,1659,10,0,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1835,12,0,2010,-21,0,0 +2013,6,26,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1735,11,0,1900,8,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1050,-2,0,1143,-13,0,0 +2013,8,15,4,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,834,0,0,1032,1,0,0 +2013,10,13,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,-6,0,923,-9,0,0 +2013,4,16,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2025,54,1,2130,51,1,0 +2013,7,18,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,-7,0,1118,-9,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,-4,0,1830,11,0,0 +2013,4,26,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,-5,0,1815,-1,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,-2,0,1104,-20,0,0 +2013,7,25,4,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1810,-4,0,1932,-9,0,0 +2013,8,2,5,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-7,0,945,-17,0,0 +2013,8,25,7,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1021,-5,0,1200,-26,0,0 +2013,8,21,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-5,0,1735,-9,0,0 +2013,7,22,1,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,715,14,0,940,16,1,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,2014,11,0,2344,-10,0,0 +2013,7,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,0,,1615,0,1,1 +2013,9,19,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1639,-5,0,1746,5,0,0 +2013,10,18,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-3,0,2150,-8,0,0 +2013,9,29,7,EV,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1201,-2,0,1327,-1,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-4,0,1915,12,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1252,18,1,1642,4,0,0 +2013,10,12,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1445,16,1,1740,12,0,0 +2013,5,3,5,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-3,0,1215,-15,0,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,20,1,1840,14,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,935,19,1,1055,15,1,0 +2013,10,6,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-1,0,925,-10,0,0 +2013,10,3,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,934,-5,0,1036,-20,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-2,0,1100,-13,0,0 +2013,7,11,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1128,-21,0,0 +2013,7,15,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,64,1,1735,60,1,0 +2013,10,9,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1159,6,0,1447,-7,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,0,0,1335,-3,0,0 +2013,5,14,2,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,-8,0,1045,-15,0,0 +2013,6,1,6,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1309,-12,0,1427,-15,0,0 +2013,8,26,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1932,-1,0,2110,-9,0,0 +2013,10,15,2,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1915,-5,0,2252,-26,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1840,42,1,1955,56,1,0 +2013,8,10,6,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1115,-2,0,1320,-10,0,0 +2013,4,24,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-6,0,910,-8,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,838,-7,0,1213,5,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1000,-3,0,1130,7,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1459,-5,0,1804,-2,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,840,-8,0,1157,-20,0,0 +2013,10,13,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-4,0,2130,1,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,735,16,1,915,9,0,0 +2013,10,28,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,18,1,1115,10,0,0 +2013,5,6,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-2,0,1330,-3,0,0 +2013,6,3,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-3,0,1912,5,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-4,0,1311,-7,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1555,0,0,1710,11,0,0 +2013,8,18,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1802,-10,0,2002,-15,0,0 +2013,7,1,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-2,0,1201,14,0,0 +2013,6,25,2,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-1,0,1020,5,0,0 +2013,5,17,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2000,3,0,2120,-5,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1745,208,1,2250,197,1,0 +2013,5,23,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-10,0,843,-20,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,655,-2,0,1200,-12,0,0 +2013,6,6,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2015,14,0,2220,18,1,0 +2013,4,20,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1440,-1,0,1755,-2,0,0 +2013,8,7,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,-1,0,1100,-6,0,0 +2013,9,10,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2259,46,1,104,33,1,0 +2013,7,10,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,-3,0,1529,14,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,31,1,2225,11,0,0 +2013,8,15,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-6,0,2047,-14,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1505,27,1,1653,12,0,0 +2013,6,12,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1450,0,0,1713,-16,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1120,46,1,1327,47,1,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1625,9,0,1750,5,0,0 +2013,4,22,1,UA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1650,28,1,1900,13,0,0 +2013,8,2,5,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1826,50,1,2059,29,1,0 +2013,5,18,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-3,0,1120,-11,0,0 +2013,9,11,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2100,-5,0,458,-14,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,2014,4,0,2355,-6,0,0 +2013,8,29,4,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1345,-2,0,1627,-13,0,0 +2013,10,13,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1558,-5,0,20,-42,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,935,0,0,1205,-10,0,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2055,-5,0,2355,8,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,44,1,2249,30,1,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,12,0,2130,-29,0,0 +2013,8,12,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1850,-3,0,2115,-3,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,735,-1,0,925,-2,0,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,947,-2,0,1212,-8,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1730,3,0,2050,0,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,900,0,0,1010,-4,0,0 +2013,6,16,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,0,0,807,-6,0,0 +2013,4,11,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,4,0,1840,-4,0,0 +2013,4,11,4,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1455,-1,0,1735,-4,0,0 +2013,4,13,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,649,-1,0,845,-22,0,0 +2013,5,22,3,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,630,-7,0,1125,7,0,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,21,1,2150,27,1,0 +2013,5,18,6,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-4,0,1105,-4,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,955,-5,0,1806,-19,0,0 +2013,10,8,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1155,-3,0,1525,-14,0,0 +2013,9,4,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2105,3,0,2230,-10,0,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,4,0,1550,1,0,0 +2013,7,7,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1010,-3,0,1128,21,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,935,-1,0,1305,-11,0,0 +2013,6,12,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-11,0,1010,-19,0,0 +2013,7,21,7,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,855,-3,0,1037,2,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,11,0,1810,0,0,0 +2013,10,25,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1040,11,0,1250,-2,0,0 +2013,8,23,5,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-7,0,1122,-6,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,715,-4,0,1050,-12,0,0 +2013,5,12,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,-6,0,1859,-5,0,0 +2013,7,21,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1310,-7,0,1440,-24,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,-1,0,2117,-6,0,0 +2013,4,17,3,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1439,18,1,1635,20,1,0 +2013,7,2,2,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,700,61,1,1045,48,1,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2010,6,0,2225,-17,0,0 +2013,7,22,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,-2,0,1223,12,0,0 +2013,10,9,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1041,-2,0,1347,-3,0,0 +2013,5,30,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1734,-3,0,1855,19,1,0 +2013,8,9,5,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-8,0,900,-5,0,0 +2013,7,28,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,9,0,723,-4,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1030,43,1,1250,34,1,0 +2013,4,11,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,-4,0,1839,-12,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1000,-2,0,1228,-29,0,0 +2013,4,26,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,3,0,903,28,1,0 +2013,6,12,3,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,73,1,1519,79,1,0 +2013,10,31,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1107,-10,0,1354,6,0,0 +2013,6,28,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-3,0,936,-12,0,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-5,0,755,-10,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2124,12,0,15,14,0,0 +2013,6,20,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-8,0,1025,0,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,840,1,0,1610,-19,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,117,1,1102,128,1,0 +2013,10,27,7,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-4,0,1641,-25,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,730,-1,0,935,-3,0,0 +2013,7,11,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,800,-2,0,1040,18,1,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,54,1,1110,50,1,0 +2013,10,5,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,-1,0,1909,7,0,0 +2013,10,22,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1133,-6,0,1309,-14,0,0 +2013,4,20,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-6,0,2122,-20,0,0 +2013,4,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,905,3,0,1240,0,0,0 +2013,9,20,5,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-1,0,1011,-14,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,10,0,1807,-18,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1320,13,0,1705,9,0,0 +2013,5,19,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1625,95,1,1645,86,1,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2100,8,0,2220,7,0,0 +2013,8,12,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1027,-7,0,1510,-10,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-5,0,1003,-22,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,700,1,0,1155,-12,0,0 +2013,9,6,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,925,0,0,1450,-3,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1210,-2,0,1307,-14,0,0 +2013,9,1,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,0,0,1155,8,0,0 +2013,10,23,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,5,0,1940,38,1,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,-2,0,2320,-8,0,0 +2013,7,25,4,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,746,0,0,0 +2013,8,30,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1959,-7,0,2103,-17,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,-1,0,1800,-6,0,0 +2013,7,3,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-3,0,2102,2,0,0 +2013,9,11,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1706,-7,0,1900,-25,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,830,-3,0,1655,-11,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1313,-3,0,1417,-4,0,0 +2013,5,28,2,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1110,-6,0,1328,-8,0,0 +2013,8,2,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1235,5,0,1830,23,1,0 +2013,4,28,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,720,-3,0,1050,-38,0,0 +2013,5,20,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,2020,7,0,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,3,0,2240,-9,0,0 +2013,8,7,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1815,21,1,2345,5,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-6,0,2332,-16,0,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1354,57,1,1510,71,1,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,1,0,2216,-15,0,0 +2013,10,12,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,804,-17,0,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,3,0,2053,-5,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1350,1,0,1620,21,1,0 +2013,5,11,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,815,-8,0,1030,10,0,0 +2013,8,17,6,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,930,2,0,1150,5,0,0 +2013,8,17,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-7,0,1314,-27,0,0 +2013,5,29,3,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1650,5,0,1802,11,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,835,-1,0,1025,-15,0,0 +2013,9,11,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1205,6,0,1350,-25,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,845,-4,0,1410,-2,0,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1500,-3,0,1723,-11,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2010,30,1,2325,31,1,0 +2013,9,15,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,740,-6,0,859,-6,0,0 +2013,6,24,1,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1235,64,1,1620,76,1,0 +2013,10,25,5,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1735,4,0,1900,4,0,0 +2013,7,6,6,YV,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,6,0,1838,22,1,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1311,-4,0,1616,-13,0,0 +2013,6,15,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1041,12,0,1825,-9,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,12,0,2154,24,1,0 +2013,9,13,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,940,0,0,1110,-6,0,0 +2013,6,28,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-2,0,1457,-6,0,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,623,-7,0,944,-19,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,4,0,1442,0,0,0 +2013,10,29,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,-3,0,1645,11,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,8,0,1630,1,0,0 +2013,10,14,1,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,620,0,0,755,2,0,0 +2013,5,3,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,-3,0,951,-3,0,0 +2013,10,6,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1030,10,0,1155,-4,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1050,69,1,1224,53,1,0 +2013,7,19,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-6,0,807,-17,0,0 +2013,9,10,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,952,-12,0,1120,-19,0,0 +2013,9,10,2,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,1,0,1905,-15,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,14,0,2210,12,0,0 +2013,7,8,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-1,0,1503,-2,0,0 +2013,9,3,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2327,-2,0,513,-10,0,0 +2013,4,21,7,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1400,-1,0,1610,6,0,0 +2013,8,31,6,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,-1,0,1125,11,0,0 +2013,9,13,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1830,36,1,2115,29,1,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2010,38,1,2121,32,1,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1045,1,0,1924,-2,0,0 +2013,7,10,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-5,0,1938,-6,0,0 +2013,5,2,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-6,0,830,-5,0,0 +2013,8,7,3,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-5,0,1800,-8,0,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,829,25,1,1057,55,1,0 +2013,5,20,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-5,0,1630,-7,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,629,-4,0,806,-14,0,0 +2013,6,16,7,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-6,0,1231,-2,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1115,-4,0,1249,-18,0,0 +2013,4,8,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,845,-2,0,1015,-2,0,0 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,-3,0,1840,37,1,0 +2013,5,3,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-4,0,910,4,0,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-8,0,1242,-3,0,0 +2013,6,16,7,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,821,-1,0,1410,-19,0,0 +2013,9,4,3,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1415,-6,0,1640,-8,0,0 +2013,8,27,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11042,Cleveland-Hopkins International,Cleveland,OH,600,-14,0,702,-23,0,0 +2013,5,24,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1556,27,1,1758,33,1,0 +2013,6,14,5,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1640,15,1,1815,127,1,0 +2013,5,13,1,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-7,0,1401,-3,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,0,0,1335,-12,0,0 +2013,6,18,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1015,16,1,1245,30,1,0 +2013,5,2,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-3,0,2050,-6,0,0 +2013,9,8,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-8,0,2143,-6,0,0 +2013,6,19,3,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1730,0,0,2039,-15,0,0 +2013,4,8,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1854,-5,0,2140,-18,0,0 +2013,10,15,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-2,0,1702,-9,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1555,-21,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2010,-2,0,2310,-5,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-5,0,1349,-12,0,0 +2013,10,16,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1700,13,0,1800,9,0,0 +2013,9,20,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1104,0,0,1710,7,0,0 +2013,9,27,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,914,-5,0,1150,-15,0,0 +2013,6,17,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,90,1,1440,93,1,0 +2013,8,8,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-7,0,1510,1,0,0 +2013,5,27,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,700,89,1,857,87,1,0 +2013,5,25,6,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1208,-3,0,1502,0,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-3,0,1720,-9,0,0 +2013,4,18,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,600,0,0,715,-7,0,0 +2013,9,22,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1657,-9,0,2029,-24,0,0 +2013,10,3,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,-4,0,1048,-21,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1840,-1,0,1946,-7,0,0 +2013,10,9,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1025,10,0,1315,27,1,0 +2013,9,6,5,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1415,9,0,1515,4,0,0 +2013,7,25,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1910,-10,0,2023,-27,0,0 +2013,8,27,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-7,0,1315,-18,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,900,25,1,1055,24,1,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,2,0,1620,1,0,0 +2013,8,4,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,817,-16,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-1,0,725,-8,0,0 +2013,4,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,805,-5,0,1105,-20,0,0 +2013,5,18,6,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-6,0,1342,-3,0,0 +2013,6,24,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,0,0,817,-28,0,0 +2013,6,4,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,610,-5,0,725,-20,0,0 +2013,6,21,5,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,930,-6,0,0 +2013,6,5,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-4,0,2032,-16,0,0 +2013,10,5,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-8,0,1339,-10,0,0 +2013,5,26,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,12,0,1348,3,0,0 +2013,10,12,6,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,840,-1,0,945,-2,0,0 +2013,4,26,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,856,-12,0,0 +2013,7,12,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,55,58,1,555,73,1,0 +2013,5,16,4,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,-4,0,1932,-9,0,0 +2013,9,4,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1955,53,1,2219,48,1,0 +2013,6,22,6,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,839,-5,0,1004,-23,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,3,0,1105,-11,0,0 +2013,8,22,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,14,0,1630,4,0,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,2125,0,0,5,-10,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1250,73,1,1509,95,1,0 +2013,10,9,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1930,18,1,2040,37,1,0 +2013,6,10,1,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-1,0,1815,-14,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,1545,-17,0,0 +2013,8,6,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,11,0,1744,4,0,0 +2013,5,5,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1725,-1,0,1849,-11,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-5,0,1115,-10,0,0 +2013,6,24,1,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1429,4,0,1615,-5,0,0 +2013,6,21,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,-8,0,543,10,0,0 +2013,4,30,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,23,1,5,26,1,0 +2013,8,7,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1630,-7,0,1800,-23,0,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,4,0,1623,-1,0,0 +2013,4,29,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1551,-5,0,0 +2013,7,10,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1820,2,0,2200,-1,0,0 +2013,10,19,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,725,-4,0,830,-13,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,714,-4,0,1125,-16,0,0 +2013,6,30,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,-11,0,1125,-9,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1516,-6,0,1609,-11,0,0 +2013,5,18,6,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1429,5,0,1615,10,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,-2,0,1825,-13,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,41,1,1115,33,1,0 +2013,10,18,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,748,-8,0,838,-1,0,0 +2013,10,11,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1320,-5,0,1527,12,0,0 +2013,4,26,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1350,16,1,1535,22,1,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2130,19,1,2245,16,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,725,0,0,906,-16,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1605,18,1,1858,53,1,0 +2013,6,24,1,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1010,49,1,1325,83,1,0 +2013,8,6,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,545,-7,0,859,-17,0,0 +2013,8,19,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1726,63,1,1914,48,1,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,-3,0,1210,-1,0,0 +2013,7,7,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-8,0,1800,-8,0,0 +2013,9,25,3,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,-1,0,1925,-14,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-8,0,729,6,0,0 +2013,6,5,3,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-4,0,925,-10,0,0 +2013,8,4,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-4,0,712,1,0,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1010,5,0,1535,9,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1700,33,1,1955,39,1,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,0,0,1003,-9,0,0 +2013,4,21,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2040,-1,0,2337,29,1,0 +2013,10,10,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,-7,0,1537,-5,0,0 +2013,10,25,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,910,-3,0,955,-5,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,50,1,2215,44,1,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1705,-1,0,1855,-15,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,125,1,2205,123,1,0 +2013,8,9,5,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1748,2,0,2155,9,0,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1000,9,0,1345,-5,0,0 +2013,7,29,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1530,23,1,1721,21,1,0 +2013,8,21,3,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-6,0,1625,-12,0,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1448,-10,0,2008,3,0,0 +2013,7,24,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1445,66,1,1603,63,1,0 +2013,9,16,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1010,34,1,1126,23,1,0 +2013,9,13,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1735,-11,0,2305,-5,0,0 +2013,7,8,1,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1636,-11,0,1725,-13,0,0 +2013,7,30,2,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,530,-11,0,654,-25,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1547,-5,0,1738,-2,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,810,-1,0,1100,-15,0,0 +2013,5,24,5,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-1,0,1455,-8,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1450,0,0,1725,-19,0,0 +2013,8,30,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1827,-2,0,2034,-26,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1230,-3,0,1655,-3,0,0 +2013,4,10,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-3,0,818,-18,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1842,11,0,1949,-3,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1735,-4,0,1929,-7,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2255,-8,0,19,-16,0,0 +2013,8,23,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1730,4,0,1831,-7,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1230,47,1,1325,46,1,0 +2013,5,22,3,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,706,-5,0,1026,-23,0,0 +2013,6,18,2,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1654,0,0,1755,-10,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,-3,0,1435,-11,0,0 +2013,5,15,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,24,1,1755,17,1,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1810,9,0,1910,2,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1505,-3,0,1755,-15,0,0 +2013,5,21,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,910,-5,0,1040,-6,0,0 +2013,4,10,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-7,0,659,-9,0,0 +2013,10,20,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1920,69,1,2040,72,1,0 +2013,8,22,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,615,3,0,728,-7,0,0 +2013,9,16,1,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1035,19,1,1645,15,1,0 +2013,4,4,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,-7,0,1720,-20,0,0 +2013,4,11,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,9,0,1755,-1,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2055,-5,0,2220,-11,0,0 +2013,9,1,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1739,103,1,1819,128,1,0 +2013,5,17,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1500,12,0,1705,-14,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1312,-16,0,0 +2013,9,13,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-7,0,1048,-2,0,0 +2013,6,5,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,700,-1,0,750,2,0,0 +2013,7,9,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,8,0,1039,-2,0,0 +2013,8,25,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2344,-4,0,508,-23,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-4,0,1535,2,0,0 +2013,4,6,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,2,0,2005,-16,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1510,-1,0,1830,10,0,0 +2013,9,3,2,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,750,0,0,1025,7,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2225,23,1,2305,17,1,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,605,9,0,1025,-14,0,0 +2013,4,27,6,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,829,-3,0,925,-18,0,0 +2013,4,25,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1606,-6,0,1731,-15,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,0,0,2335,0,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-1,0,1305,-16,0,0 +2013,10,11,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1315,6,0,1520,0,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2230,-7,0,2320,-17,0,0 +2013,6,12,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1822,13,0,2110,4,0,0 +2013,9,25,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,38,1,1555,32,1,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1625,6,0,1745,1,0,0 +2013,7,11,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,15,1,1727,17,1,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1050,24,1,1330,22,1,0 +2013,7,10,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,753,0,0,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,905,4,0,1440,5,0,0 +2013,7,31,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-3,0,1017,-6,0,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,13,0,1140,11,0,0 +2013,4,23,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1640,2,0,1745,0,0,0 +2013,7,29,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1830,-6,0,1936,-12,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,-6,0,1335,1,0,0 +2013,5,13,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,42,1,1738,21,1,0 +2013,10,23,3,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,805,0,0,1045,-17,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,23,1,1458,22,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2255,0,0,20,-8,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,2,0,2356,-9,0,0 +2013,6,28,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-4,0,1305,-1,0,0 +2013,7,30,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,610,-10,0,715,-20,0,0 +2013,7,19,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,6,0,646,-9,0,0 +2013,8,21,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,809,0,0,957,-24,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1016,-4,0,1154,-4,0,0 +2013,4,12,5,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1030,-10,0,1830,2,0,0 +2013,7,23,2,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1051,-4,0,1225,-1,0,0 +2013,8,13,2,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1005,33,1,1600,18,1,0 +2013,9,5,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-1,0,1015,-20,0,0 +2013,7,18,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-6,0,832,-12,0,0 +2013,6,19,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1945,10,0,2125,-3,0,0 +2013,9,15,7,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-14,0,1127,20,1,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,-1,0,1735,-4,0,0 +2013,9,17,2,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-3,0,608,-3,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,20,1,2307,25,1,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1935,28,1,2154,38,1,0 +2013,4,15,1,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1533,3,0,1831,-9,0,0 +2013,8,26,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,7,0,1435,6,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1130,13,0,1251,15,1,0 +2013,5,12,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,7,0,1316,2,0,0 +2013,4,3,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1050,-2,0,1333,-8,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1800,-3,0,1925,-5,0,0 +2013,7,31,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,0,0,701,1,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1050,8,0,1555,-2,0,0 +2013,10,29,2,9E,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,930,-7,0,1135,-12,0,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-6,0,1110,-26,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2155,58,1,2352,63,1,0 +2013,8,8,4,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,532,-3,0,627,-10,0,0 +2013,4,15,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,-5,0,1232,5,0,0 +2013,9,18,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1747,-7,0,2000,-15,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,6,0,2305,-3,0,0 +2013,8,11,7,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,-4,0,1818,-15,0,0 +2013,9,26,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1655,1,0,1800,-4,0,0 +2013,4,23,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,5,0,1027,-4,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2135,-6,0,2245,-17,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1315,-5,0,1508,-13,0,0 +2013,10,18,5,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2222,-4,0,613,-26,0,0 +2013,4,6,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,750,1,0,1130,7,0,0 +2013,5,15,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,745,0,0,1045,0,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1000,-4,0,1105,-9,0,0 +2013,6,4,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,-8,0,2056,-3,0,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,51,1,1835,35,1,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1300,-4,0,1517,6,0,0 +2013,10,19,6,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1430,26,1,2015,2,0,0 +2013,7,20,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,8,0,2042,-6,0,0 +2013,6,10,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-1,0,755,7,0,0 +2013,4,12,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1156,-3,0,1359,-5,0,0 +2013,5,19,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,1248,19,1,0 +2013,6,27,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1223,-10,0,1328,-10,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,730,-1,0,903,-5,0,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1045,0,0,1150,-5,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,835,-7,0,908,-9,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,10,0,1039,0,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1625,0,0,1851,-5,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,955,-3,0,1254,-18,0,0 +2013,4,24,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,700,-1,0,735,0,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1300,11,0,1505,-5,0,0 +2013,4,18,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,68,1,2020,59,1,0 +2013,8,29,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,0,2058,3,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,935,-2,0,1150,-8,0,0 +2013,10,12,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,0,0,1904,-5,0,0 +2013,5,23,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,4,0,1555,11,0,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,-7,0,344,20,1,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1807,17,1,8,11,0,0 +2013,5,5,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-5,0,1440,-16,0,0 +2013,8,16,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-5,0,2010,-17,0,0 +2013,5,29,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,-5,0,1645,-28,0,0 +2013,4,29,1,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,0,0,2133,16,1,0 +2013,6,22,6,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-4,0,1346,-3,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2055,4,0,2150,-5,0,0 +2013,10,9,3,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1710,-2,0,1916,-8,0,0 +2013,5,8,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,97,1,1729,86,1,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,840,1,0,1049,-8,0,0 +2013,5,1,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1143,20,1,1658,13,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1622,8,0,1749,-9,0,0 +2013,9,25,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1731,-4,0,1900,-26,0,0 +2013,10,5,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1045,57,1,1200,60,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,38,1,1625,28,1,0 +2013,4,11,4,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,850,1,0,950,-6,0,0 +2013,6,10,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,-3,0,1150,-3,0,0 +2013,10,29,2,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,915,-7,0,1150,-1,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,-1,0,1245,-11,0,0 +2013,5,2,4,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,1020,1,0,1625,-12,0,0 +2013,10,8,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,0,0,810,-11,0,0 +2013,6,1,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,17,1,1500,72,1,0 +2013,7,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,846,-3,0,939,-11,0,0 +2013,8,4,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-5,0,1828,-13,0,0 +2013,9,2,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-3,0,1006,-34,0,0 +2013,8,11,7,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,620,0,0,705,3,0,0 +2013,9,12,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,0,,1825,0,1,1 +2013,6,8,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1506,-5,0,1553,-12,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1225,2,0,1335,-4,0,0 +2013,9,26,4,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-2,0,907,10,0,0 +2013,9,23,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1400,63,1,1605,57,1,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1500,-4,0,1650,-11,0,0 +2013,9,30,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,-5,0,1936,2,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,0,0,810,-9,0,0 +2013,10,25,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1010,-3,0,1100,-2,0,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1720,26,1,1845,31,1,0 +2013,5,27,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1802,11,0,2019,-18,0,0 +2013,8,13,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1410,-4,0,2210,12,0,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1048,99,1,1223,78,1,0 +2013,5,5,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,720,-7,0,1020,-19,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,900,-7,0,1321,-12,0,0 +2013,7,18,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,130,1,1938,130,1,0 +2013,7,25,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2129,148,1,2326,123,1,0 +2013,10,31,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,-7,0,1348,1,0,0 +2013,8,27,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1610,-11,0,1709,3,0,0 +2013,7,15,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,0,0,1920,-3,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1635,4,0,2019,-15,0,0 +2013,8,19,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,1,0,1250,-10,0,0 +2013,8,3,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1916,59,1,2129,62,1,0 +2013,10,24,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1735,20,1,1810,8,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-2,0,919,-29,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1802,-8,0,2058,-43,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1000,5,0,1259,14,0,0 +2013,9,9,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1000,1,0,1315,-2,0,0 +2013,9,26,4,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1605,0,0,1842,-4,0,0 +2013,10,20,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,0,0,945,-8,0,0 +2013,6,26,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2125,28,1,2300,16,1,0 +2013,6,15,6,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1025,-10,0,1141,6,0,0 +2013,7,13,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,534,-9,0,620,-16,0,0 +2013,7,28,7,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,0,0,1315,4,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,-3,0,1209,-18,0,0 +2013,7,2,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1450,-1,0,1545,-8,0,0 +2013,5,23,4,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1930,5,0,2045,-14,0,0 +2013,7,13,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1630,-4,0,1822,-25,0,0 +2013,7,19,5,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,7,0,1754,7,0,0 +2013,4,29,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2311,-6,0,646,-14,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,-2,0,2207,-17,0,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1955,-2,0,2007,-9,0,0 +2013,5,11,6,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,918,-14,0,0 +2013,4,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1355,-7,0,1759,-11,0,0 +2013,6,17,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,-1,0,1400,-6,0,0 +2013,5,13,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1010,-22,0,0 +2013,4,13,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-10,0,815,-23,0,0 +2013,9,21,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1025,-2,0,1400,-21,0,0 +2013,10,22,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-4,0,1858,2,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,-7,0,1130,-10,0,0 +2013,5,21,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1130,-2,0,2010,17,1,0 +2013,10,24,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1100,62,1,1658,51,1,0 +2013,4,22,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,-5,0,2311,-29,0,0 +2013,6,10,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1505,25,1,1615,9,0,0 +2013,9,13,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1059,-6,0,1904,-8,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,-5,0,1422,2,0,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1743,11,0,2058,-12,0,0 +2013,10,20,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,650,-3,0,827,-15,0,0 +2013,10,18,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1926,-9,0,2035,7,0,0 +2013,4,23,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,-3,0,1403,5,0,0 +2013,5,17,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1945,0,0,2229,0,0,0 +2013,5,27,1,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,725,-4,0,812,-8,0,0 +2013,10,7,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1724,-1,0,1940,6,0,0 +2013,10,20,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-8,0,1205,-13,0,0 +2013,5,14,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-7,0,955,-18,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,11,0,1617,-3,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1351,-1,0,1531,3,0,0 +2013,9,21,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-8,0,923,-4,0,0 +2013,10,24,4,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,11,0,2015,12,0,0 +2013,5,16,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-6,0,1441,-11,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1740,6,0,1845,28,1,0 +2013,6,2,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,108,1,1807,90,1,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,830,-3,0,921,-14,0,0 +2013,7,25,4,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,1,0,1505,-14,0,0 +2013,9,4,3,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-8,0,1355,7,0,0 +2013,6,25,2,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,10,0,1940,-1,0,0 +2013,7,1,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-4,0,1555,3,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2220,0,,2325,0,1,1 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-2,0,2015,-23,0,0 +2013,8,4,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,728,-1,0,1000,2,0,0 +2013,10,18,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,46,1,1629,51,1,0 +2013,10,9,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1940,24,1,2245,17,1,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,8,0,1000,7,0,0 +2013,9,25,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-2,0,1534,20,1,0 +2013,7,4,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-1,0,1225,-9,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2205,-1,0,2320,-5,0,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2040,63,1,2300,45,1,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1121,-5,0,1240,-4,0,0 +2013,6,14,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1701,-6,0,1747,12,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1450,0,0,2020,-8,0,0 +2013,6,6,4,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,840,1,0,1144,-17,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,840,58,1,1005,40,1,0 +2013,7,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1945,36,1,2125,17,1,0 +2013,10,30,3,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,730,-3,0,1127,9,0,0 +2013,8,26,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-6,0,2138,-8,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,740,7,0,1010,-5,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1650,0,0,1755,-4,0,0 +2013,5,30,4,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,830,-3,0,955,-11,0,0 +2013,5,29,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-7,0,2036,-16,0,0 +2013,6,27,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2043,146,1,2145,124,1,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1510,-5,0,1855,-9,0,0 +2013,10,4,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,23,1,2115,19,1,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-4,0,1256,-13,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1545,3,0,1900,-33,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,18,1,1545,10,0,0 +2013,6,2,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1926,-3,0,2030,19,1,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1224,-5,0,1336,-18,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1630,39,1,1740,27,1,0 +2013,9,25,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-4,0,1915,3,0,0 +2013,6,12,3,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1633,-4,0,0 +2013,5,24,5,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,730,4,0,1345,-15,0,0 +2013,6,24,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1416,207,1,1535,254,1,0 +2013,4,2,2,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1235,4,0,1450,1,0,0 +2013,6,29,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,630,17,1,921,-3,0,0 +2013,4,19,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,935,-1,0,1105,-5,0,0 +2013,6,17,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2125,-5,0,545,-22,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1345,0,0,1655,-5,0,0 +2013,4,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2020,129,1,2151,128,1,0 +2013,7,8,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-2,0,1824,-9,0,0 +2013,7,16,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,655,-3,0,825,-6,0,0 +2013,10,16,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,913,-3,0,1037,-3,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1933,-4,0,2239,-10,0,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1345,6,0,1515,-5,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1915,-1,0,2026,-4,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2015,76,1,2300,70,1,0 +2013,5,28,2,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,33,1,1515,36,1,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1025,-1,0,1310,-5,0,0 +2013,4,21,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1145,-1,0,1404,-5,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,4,0,1904,-15,0,0 +2013,10,23,3,9E,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,-4,0,1424,-6,0,0 +2013,10,22,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,11,0,1641,-9,0,0 +2013,10,28,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2105,5,0,509,-15,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,700,-2,0,831,-8,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2015,36,1,2105,33,1,0 +2013,10,16,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1500,11,0,1829,-18,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,34,1,1515,37,1,0 +2013,7,8,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1405,-3,0,1455,-7,0,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1320,72,1,1502,64,1,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1140,0,0,1219,1,0,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,-7,0,952,17,1,0 +2013,7,18,4,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2052,-14,0,22,-16,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,710,-3,0,945,0,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2255,-7,0,639,-12,0,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,630,-3,0,750,-11,0,0 +2013,5,2,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2152,-3,0,2259,-4,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,63,1,950,67,1,0 +2013,10,2,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-2,0,737,-19,0,0 +2013,7,25,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2132,-7,0,0 +2013,5,11,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,824,0,0,1106,10,0,0 +2013,5,10,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,600,-5,0,940,-10,0,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,640,14,0,814,25,1,0 +2013,6,27,4,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,20,1,1620,2,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,-2,0,2105,-19,0,0 +2013,10,18,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1809,-5,0,2003,-17,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1825,8,0,2144,-3,0,0 +2013,9,15,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1044,-1,0,1212,4,0,0 +2013,10,17,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-2,0,1952,4,0,0 +2013,9,1,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,17,1,130,7,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,920,-3,0,1145,-6,0,0 +2013,6,21,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1930,-6,0,2224,-25,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,-2,0,16,-4,0,0 +2013,5,12,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-8,0,1315,-16,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1700,16,1,1950,21,1,0 +2013,5,26,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-4,0,1654,6,0,0 +2013,6,18,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-2,0,1237,-2,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-2,0,2358,-7,0,0 +2013,7,20,6,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1150,-10,0,1325,-11,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,700,-2,0,1035,-17,0,0 +2013,9,23,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1724,-7,0,2004,-11,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1838,-1,0,2017,3,0,0 +2013,10,27,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,745,-1,0,905,-7,0,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1120,6,0,1325,-21,0,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1929,-11,0,2105,-11,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1859,-2,0,2128,-6,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,3,0,1522,-6,0,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,830,8,0,1001,-1,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,855,-1,0,1035,-19,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1230,29,1,1800,19,1,0 +2013,8,26,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1630,19,1,1750,17,1,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1355,-4,0,1459,-13,0,0 +2013,10,22,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,912,5,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1951,107,1,2244,129,1,0 +2013,7,2,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1519,18,1,1650,41,1,0 +2013,7,8,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1730,74,1,1800,67,1,0 +2013,4,9,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1633,-6,0,1834,-11,0,0 +2013,9,27,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,917,1,0,0 +2013,5,27,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,925,-7,0,1223,-17,0,0 +2013,5,11,6,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1455,-4,0,1700,0,0,0 +2013,6,3,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1825,-2,0,2009,-3,0,0 +2013,8,31,6,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,940,-3,0,1255,-16,0,0 +2013,9,5,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1823,-1,0,0 +2013,6,8,6,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-1,0,1819,-1,0,0 +2013,10,30,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-4,0,1325,-1,0,0 +2013,6,7,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1730,25,1,1935,59,1,0 +2013,10,16,3,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,2012,-3,0,2357,-16,0,0 +2013,8,7,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-3,0,1408,-9,0,0 +2013,4,30,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1945,-3,0,2125,-34,0,0 +2013,9,18,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2145,-5,0,140,-11,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1635,-2,0,2200,-14,0,0 +2013,7,18,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,658,9,0,1300,10,0,0 +2013,8,10,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-3,0,1621,7,0,0 +2013,5,18,6,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1605,-9,0,1724,-32,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2104,3,0,129,0,0,0 +2013,7,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-2,0,1326,-4,0,0 +2013,8,10,6,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1250,2,0,1425,-20,0,0 +2013,4,19,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,2200,169,1,46,165,1,0 +2013,4,23,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-1,0,1821,-7,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1930,26,1,2131,10,0,0 +2013,7,19,5,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,620,0,0,900,-3,0,0 +2013,9,16,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-2,0,1720,-10,0,0 +2013,4,5,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,745,-7,0,900,-24,0,0 +2013,4,2,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,-2,0,1540,-15,0,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1549,21,1,2021,7,0,0 +2013,6,15,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,-1,0,2049,-14,0,0 +2013,10,24,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-4,0,1155,-20,0,0 +2013,8,23,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,958,-8,0,0 +2013,9,24,2,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1437,-8,0,1925,-26,0,0 +2013,6,16,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1431,3,0,1637,3,0,0 +2013,4,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,-1,0,1902,-16,0,0 +2013,7,12,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,-1,0,725,-7,0,0 +2013,8,9,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,824,29,1,1017,42,1,0 +2013,10,14,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,2,0,1047,1,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,49,1,1507,34,1,0 +2013,7,22,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,22,1,1903,28,1,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1843,0,,2330,0,1,1 +2013,8,20,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1555,-3,0,17,0,0,0 +2013,4,10,3,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1131,54,1,1405,43,1,0 +2013,6,2,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,0,0,1807,-7,0,0 +2013,6,13,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,804,-7,0,914,-28,0,0 +2013,9,22,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1954,-1,0,2223,-6,0,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1748,5,0,2330,10,0,0 +2013,5,18,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1525,43,1,1705,27,1,0 +2013,8,22,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-8,0,1641,-15,0,0 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1530,-6,0,1623,-11,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1725,8,0,1920,-16,0,0 +2013,10,17,4,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1715,30,1,1835,23,1,0 +2013,4,26,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,1008,-3,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1613,-1,0,1810,-24,0,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,856,24,1,1015,46,1,0 +2013,6,6,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,720,-2,0,1107,-11,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,5,0,1908,-3,0,0 +2013,10,1,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1203,-3,0,1808,16,1,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1320,6,0,1430,1,0,0 +2013,5,10,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,739,0,0,910,-3,0,0 +2013,9,17,2,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1610,-10,0,1919,-16,0,0 +2013,10,21,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,724,-2,0,929,20,1,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,1,0,928,1,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,3,0,1450,3,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1110,-7,0,1413,11,0,0 +2013,7,15,1,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-1,0,1115,9,0,0 +2013,4,17,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1620,-4,0,1845,-6,0,0 +2013,6,26,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1140,13,0,1330,0,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1115,23,1,1320,24,1,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1450,4,0,1623,-11,0,0 +2013,8,24,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-2,0,2159,-12,0,0 +2013,6,27,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-3,0,1947,7,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1730,-4,0,1825,-11,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1756,114,1,1914,126,1,0 +2013,7,30,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1730,-7,0,1941,-12,0,0 +2013,6,12,3,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1252,-10,0,1358,-19,0,0 +2013,9,9,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1200,2,0,1245,-10,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,31,1,1920,22,1,0 +2013,6,4,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,824,-2,0,921,-1,0,0 +2013,5,5,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1113,-2,0,1218,-8,0,0 +2013,10,18,5,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,545,-4,0,734,-14,0,0 +2013,8,27,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1820,-10,0,2052,-10,0,0 +2013,6,30,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,940,-1,0,1549,-7,0,0 +2013,9,7,6,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1035,23,1,1150,20,1,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,830,4,0,1335,4,0,0 +2013,6,4,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1740,39,1,1956,14,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1920,15,1,2032,10,0,0 +2013,9,9,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2319,0,0,730,6,0,0 +2013,5,3,5,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1810,57,1,2114,34,1,0 +2013,10,20,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,9,0,1835,3,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,0,0,913,13,0,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,935,-2,0,1759,20,1,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,-1,0,2115,-14,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1725,1,0,2340,-14,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1115,-6,0,1247,-16,0,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1830,5,0,2008,-3,0,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2010,2,0,2125,7,0,0 +2013,5,19,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,22,1,1825,14,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1100,-6,0,1239,-36,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1455,13,0,1620,9,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1405,-4,0,1509,2,0,0 +2013,4,18,4,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,24,1,1620,26,1,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,750,-3,0,910,-12,0,0 +2013,10,27,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,30,-5,0,537,-8,0,0 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,22,1,1845,18,1,0 +2013,9,25,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1025,-3,0,1145,-10,0,0 +2013,10,26,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1704,-7,0,1841,-22,0,0 +2013,5,11,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1813,9,0,2004,-21,0,0 +2013,10,15,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1015,-5,0,0 +2013,7,2,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,844,-5,0,1124,-15,0,0 +2013,8,9,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1841,-3,0,2300,-18,0,0 +2013,6,20,4,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1923,-10,0,2005,-11,0,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,720,-4,0,900,-6,0,0 +2013,4,4,4,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1500,-3,0,1735,4,0,0 +2013,10,27,7,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,603,-8,0,904,-10,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1613,0,,1837,0,1,1 +2013,8,6,2,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,730,-3,0,1033,9,0,0 +2013,6,5,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1601,-6,0,1701,-6,0,0 +2013,5,16,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1919,38,1,2026,33,1,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-7,0,825,-13,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1400,7,0,1555,2,0,0 +2013,7,25,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,945,-8,0,1105,-11,0,0 +2013,10,1,2,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1239,-9,0,1420,-22,0,0 +2013,7,14,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,-4,0,2106,-40,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2135,52,1,43,90,1,0 +2013,10,10,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1835,8,0,1845,2,0,0 +2013,10,18,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1320,-4,0,1437,-8,0,0 +2013,9,30,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,900,-2,0,1018,-7,0,0 +2013,8,6,2,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2345,126,1,244,122,1,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,750,-4,0,1040,-7,0,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-6,0,1840,-5,0,0 +2013,8,9,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1524,-2,0,0 +2013,9,19,4,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1528,-10,0,1722,1,0,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2045,0,0,2219,5,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1625,-3,0,1843,-22,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1840,10,0,2115,12,0,0 +2013,5,8,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1130,-2,0,1250,7,0,0 +2013,4,1,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1135,-8,0,1355,6,0,0 +2013,7,10,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,926,0,,1119,0,1,1 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,25,1,1210,37,1,0 +2013,10,19,6,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,619,-3,0,737,-22,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,700,22,1,945,37,1,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1935,93,1,2102,143,1,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,8,0,2019,54,1,0 +2013,5,22,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,0,0,1640,-7,0,0 +2013,5,30,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,40,1,2100,29,1,0 +2013,4,4,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,800,-7,0,1309,-24,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1850,60,1,2104,56,1,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,840,-4,0,950,-11,0,0 +2013,9,7,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-7,0,1006,-2,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1505,38,1,1525,27,1,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1753,19,1,1926,60,1,0 +2013,8,5,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1715,-1,0,1815,-10,0,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,24,1,2205,11,0,0 +2013,5,22,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,-5,0,1200,-15,0,0 +2013,9,19,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1015,-15,0,1151,-23,0,0 +2013,6,9,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,945,-5,0,1105,-9,0,0 +2013,8,1,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,0,1522,3,0,0 +2013,10,18,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-4,0,1130,-2,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,650,-2,0,1015,-4,0,0 +2013,7,18,4,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,941,-4,0,1129,-11,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1125,15,1,1340,8,0,0 +2013,9,22,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-6,0,1300,3,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-7,0,900,-22,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-2,0,1130,-1,0,0 +2013,9,16,1,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1300,14,0,1640,1,0,0 +2013,6,6,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1135,-6,0,1920,56,1,0 +2013,4,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-7,0,704,4,0,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1005,-5,0,1153,-10,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-4,0,801,-3,0,0 +2013,5,14,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1029,5,0,1153,43,1,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,925,-1,0,1040,-11,0,0 +2013,8,17,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,-5,0,2106,-7,0,0 +2013,5,21,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,15,1,1805,1,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,6,0,1835,51,1,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,-1,0,1320,-3,0,0 +2013,9,3,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-7,0,1100,-15,0,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1144,-2,0,1550,-7,0,0 +2013,10,30,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,-16,0,720,-4,0,0 +2013,7,16,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,-4,0,1815,1,0,0 +2013,7,20,6,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,805,-4,0,1030,-1,0,0 +2013,10,27,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-8,0,900,-6,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1730,-1,0,2040,5,0,0 +2013,10,4,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1905,6,0,2030,4,0,0 +2013,10,2,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-9,0,1115,-19,0,0 +2013,9,30,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1220,-1,0,1250,-11,0,0 +2013,8,14,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,8,0,830,20,1,0 +2013,8,31,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1602,-13,0,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,605,0,,715,0,1,1 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1759,-4,0,1916,4,0,0 +2013,5,3,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1748,124,1,2100,134,1,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,164,1,2230,163,1,0 +2013,7,14,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,-3,0,1450,-11,0,0 +2013,10,8,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,5,0,1710,-17,0,0 +2013,7,14,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2100,-1,0,2220,0,0,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-7,0,945,0,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1045,2,0,1610,-15,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2147,3,0,2320,-11,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,2,0,828,-4,0,0 +2013,10,31,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,1,0,1205,5,0,0 +2013,8,14,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2210,-1,0,2346,-13,0,0 +2013,9,27,5,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1535,9,0,1750,22,1,0 +2013,4,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1003,11,0,1308,5,0,0 +2013,6,19,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,46,1,1655,32,1,0 +2013,5,12,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,1,0,2134,-4,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,2,0,1710,-11,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1820,43,1,2025,48,1,0 +2013,7,7,7,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1109,-6,0,1339,9,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1430,0,0,1734,-5,0,0 +2013,5,14,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-2,0,845,-21,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,738,-8,0,1006,-5,0,0 +2013,9,27,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1745,-4,0,2010,-14,0,0 +2013,9,10,2,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-8,0,1920,-12,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,936,0,0,1115,-4,0,0 +2013,10,30,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,0,0,829,-7,0,0 +2013,10,24,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,38,1,1700,41,1,0 +2013,5,19,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,3,0,1202,18,1,0 +2013,4,28,7,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,1000,-10,0,1223,-27,0,0 +2013,7,26,5,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-4,0,1950,-11,0,0 +2013,10,5,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,840,-6,0,857,0,0,0 +2013,4,7,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1320,18,1,1710,6,0,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1755,1,0,1855,2,0,0 +2013,5,29,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1415,-9,0,1535,-15,0,0 +2013,5,14,2,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,610,13,0,812,6,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1205,5,0,1340,-11,0,0 +2013,4,16,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,700,-2,0,940,-28,0,0 +2013,7,17,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,22,1,1821,3,0,0 +2013,10,4,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,27,1,920,16,1,0 +2013,4,17,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-8,0,1020,5,0,0 +2013,8,23,5,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-2,0,1755,-9,0,0 +2013,5,31,5,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1541,3,0,1716,-1,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1330,-4,0,1645,-9,0,0 +2013,10,16,3,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-3,0,907,7,0,0 +2013,8,29,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-6,0,1517,-7,0,0 +2013,8,27,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-7,0,1315,-12,0,0 +2013,9,8,7,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,-7,0,2027,-19,0,0 +2013,5,12,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-9,0,1120,-2,0,0 +2013,8,13,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1555,-2,0,1715,-6,0,0 +2013,9,23,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-6,0,759,7,0,0 +2013,10,30,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-1,0,925,0,0,0 +2013,9,10,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-4,0,1454,-15,0,0 +2013,6,15,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,-2,0,2033,-27,0,0 +2013,8,20,2,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,700,-1,0,900,-7,0,0 +2013,5,13,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1650,12,0,1835,15,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,17,1,1019,26,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-1,0,1913,-7,0,0 +2013,6,16,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1737,7,0,2143,-22,0,0 +2013,6,6,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1418,13,0,2242,3,0,0 +2013,7,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1220,0,,1340,0,1,1 +2013,6,16,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-5,0,1415,-14,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,-6,0,1709,-9,0,0 +2013,5,1,3,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-1,0,958,-14,0,0 +2013,9,1,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1825,22,1,1925,12,0,0 +2013,10,13,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1910,-6,0,2114,-8,0,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1515,-8,0,1943,-3,0,0 +2013,4,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1940,44,1,2210,83,1,0 +2013,8,24,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-5,0,755,-14,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1535,6,0,1655,8,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,15,1,2357,13,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,630,-5,0,801,-18,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,21,1,2030,16,1,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1430,3,0,1535,-5,0,0 +2013,10,31,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1605,12,0,1735,8,0,0 +2013,5,12,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1300,70,1,1335,83,1,0 +2013,7,1,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1819,-6,0,0 +2013,9,4,3,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1917,-7,0,2019,-7,0,0 +2013,4,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,941,-3,0,1548,-7,0,0 +2013,6,11,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,-7,0,2210,-18,0,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,42,1,2230,27,1,0 +2013,8,4,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,-2,0,2342,-7,0,0 +2013,10,24,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,-5,0,1115,-4,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1625,-5,0,1853,-27,0,0 +2013,8,29,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1027,-4,0,1124,2,0,0 +2013,4,12,5,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-6,0,1834,-25,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1655,-2,0,1808,-12,0,0 +2013,7,2,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-5,0,1420,2,0,0 +2013,4,21,7,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1330,-7,0,1519,-9,0,0 +2013,4,7,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,810,-11,0,929,-12,0,0 +2013,5,5,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,830,5,0,1037,-18,0,0 +2013,4,14,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1304,1,0,1409,-4,0,0 +2013,8,20,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,740,-19,0,0 +2013,6,30,7,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1030,-3,0,1245,-12,0,0 +2013,8,14,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,6,0,1705,0,0,0 +2013,4,28,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-7,0,944,-1,0,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,835,-4,0,920,-2,0,0 +2013,6,26,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2135,-4,0,2250,-9,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1515,3,0,1839,11,0,0 +2013,4,8,1,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,12,0,1750,7,0,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1515,0,,1640,0,1,1 +2013,5,4,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-11,0,1414,-14,0,0 +2013,8,22,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-1,0,848,-4,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1847,-6,0,2022,-45,0,0 +2013,6,30,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,-1,0,2135,2,0,0 +2013,6,13,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2040,-10,0,2153,64,1,0 +2013,9,20,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1339,-6,0,1450,-3,0,0 +2013,10,21,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,645,0,0,655,-3,0,0 +2013,10,29,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,655,44,1,815,25,1,0 +2013,4,9,2,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,2105,1,0,2320,-10,0,0 +2013,6,21,5,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,26,1,1425,27,1,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1445,4,0,1730,-3,0,0 +2013,6,10,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1415,2,0,1534,2,0,0 +2013,7,19,5,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,1,0,550,13,0,0 +2013,7,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-7,0,847,-16,0,0 +2013,9,5,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,0,0,2120,-3,0,0 +2013,8,20,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,-5,0,755,-16,0,0 +2013,7,24,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1015,0,0,1227,-4,0,0 +2013,8,1,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1745,168,1,2030,178,1,0 +2013,8,20,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1757,-1,0,1910,2,0,0 +2013,9,26,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1935,8,0,2105,-12,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1735,1,0,1828,-5,0,0 +2013,6,29,6,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1455,26,1,1730,24,1,0 +2013,9,28,6,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1129,-3,0,1404,-18,0,0 +2013,7,9,2,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,945,1,0,1040,-12,0,0 +2013,6,9,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2005,-14,0,2050,-27,0,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,1,0,745,12,0,0 +2013,7,31,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,900,-6,0,1040,3,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,0,0,1555,-5,0,0 +2013,4,6,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,65,1,1635,43,1,0 +2013,10,27,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1010,-6,0,1105,-8,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1941,0,0,2052,-3,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,727,-4,0,845,-14,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,6,0,2128,10,0,0 +2013,4,22,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1854,52,1,2103,47,1,0 +2013,6,16,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,368,1,1710,373,1,0 +2013,7,24,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-1,0,2121,10,0,0 +2013,6,12,3,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,910,3,0,1032,5,0,0 +2013,6,30,7,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1856,6,0,2103,-2,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1751,5,0,1906,38,1,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2123,13,0,2356,25,1,0 +2013,5,11,6,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1435,4,0,1615,20,1,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1855,25,1,2240,2,0,0 +2013,5,15,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-8,0,2011,-11,0,0 +2013,8,4,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,4,0,1922,8,0,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1255,3,0,1410,27,1,0 +2013,5,13,1,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,7,0,2000,0,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-4,0,824,-2,0,0 +2013,7,11,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,4,0,1920,-1,0,0 +2013,5,19,7,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,900,122,1,1035,114,1,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1845,-2,0,2335,-19,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,2,0,1613,11,0,0 +2013,7,24,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,930,-5,0,1035,-1,0,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2055,-1,0,2220,-6,0,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,0,0,1610,-19,0,0 +2013,10,19,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-1,0,1019,3,0,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1750,-5,0,2340,-18,0,0 +2013,6,5,3,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,1025,-10,0,0 +2013,4,11,4,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1644,0,0,1940,-7,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1741,0,0,2059,-32,0,0 +2013,5,17,5,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1424,-2,0,1624,20,1,0 +2013,7,28,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-10,0,852,2,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,649,-5,0,926,-14,0,0 +2013,5,15,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,0,0,1710,-8,0,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,0,0,2035,4,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,39,1,2155,33,1,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1545,-9,0,1740,-9,0,0 +2013,6,14,5,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-2,0,1809,-8,0,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,9,0,2110,11,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,750,-1,0,1148,25,1,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-4,0,1026,-31,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-6,0,1000,-11,0,0 +2013,7,24,3,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,2,0,1400,-8,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1705,8,0,1855,-2,0,0 +2013,8,21,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,-8,0,1304,-5,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,545,-8,0,933,-17,0,0 +2013,7,17,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,0,1510,-7,0,0 +2013,7,18,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,745,-3,0,855,-10,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,700,-6,0,815,-7,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1340,13,0,1520,9,0,0 +2013,4,23,2,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,1,0,1324,7,0,0 +2013,10,11,5,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1328,-6,0,1430,-19,0,0 +2013,9,30,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1800,0,0,1900,28,1,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1255,-1,0,1440,10,0,0 +2013,7,25,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,-1,0,1525,24,1,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1502,6,0,1654,-4,0,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1710,-4,0,2300,-8,0,0 +2013,4,5,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,19,1,1130,2,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1900,-2,0,2005,-16,0,0 +2013,8,30,5,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1230,-5,0,1401,-18,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1730,-2,0,2028,17,1,0 +2013,5,5,7,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1130,-6,0,1350,-43,0,0 +2013,5,23,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-7,0,1011,-19,0,0 +2013,4,19,5,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1348,0,,1454,0,1,1 +2013,8,22,4,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1039,49,1,1424,44,1,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,900,17,1,1155,16,1,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,-4,0,1850,-8,0,0 +2013,5,17,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,3,0,1500,7,0,0 +2013,7,3,3,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1100,109,1,1217,112,1,0 +2013,6,20,4,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1310,-3,0,1611,-12,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,608,-5,0,827,-12,0,0 +2013,5,23,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,710,-4,0,837,-17,0,0 +2013,5,14,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1423,-8,0,1554,-23,0,0 +2013,10,23,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,700,-6,0,825,-18,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,845,-3,0,1124,-24,0,0 +2013,6,15,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-4,0,1953,-20,0,0 +2013,5,20,1,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1600,10,0,1846,-24,0,0 +2013,4,11,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,920,16,1,940,11,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2145,23,1,3,3,0,0 +2013,6,4,2,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1300,-11,0,2115,-24,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,-4,0,925,2,0,0 +2013,4,23,2,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,845,0,0,1105,21,1,0 +2013,7,12,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,844,-2,0,1115,-30,0,0 +2013,5,3,5,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,0,0,1015,-28,0,0 +2013,7,23,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,-1,0,812,1,0,0 +2013,4,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2350,-8,0,613,-6,0,0 +2013,4,15,1,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1112,-3,0,0 +2013,6,26,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,31,1,2110,17,1,0 +2013,4,20,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-1,0,1850,25,1,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,658,-1,0,1302,-19,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1309,0,,1544,0,1,1 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2110,-3,0,2349,-32,0,0 +2013,9,30,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-5,0,1322,-7,0,0 +2013,5,16,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-2,0,909,-7,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,4,0,1625,-1,0,0 +2013,6,28,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-6,0,2016,-9,0,0 +2013,6,16,7,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,605,-5,0,1202,-26,0,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1446,-1,0,1717,1,0,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1330,-2,0,1939,-14,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1328,0,0,1645,12,0,0 +2013,7,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1045,27,1,1315,16,1,0 +2013,8,21,3,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1445,12,0,1701,-20,0,0 +2013,7,8,1,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1811,-1,0,1925,-11,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-9,0,2336,-6,0,0 +2013,9,14,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1225,-5,0,1555,-23,0,0 +2013,10,22,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1300,19,1,1505,6,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,2002,5,0,2359,-10,0,0 +2013,5,6,1,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-9,0,2020,-28,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2130,21,1,2311,16,1,0 +2013,10,31,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1705,-3,0,1825,0,0,0 +2013,10,31,4,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-1,0,1205,1,0,0 +2013,10,24,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2000,9,0,2128,2,0,0 +2013,5,16,4,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,4,0,1615,-6,0,0 +2013,4,10,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-5,0,1105,-8,0,0 +2013,8,24,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-5,0,2001,-16,0,0 +2013,9,23,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,815,3,0,930,-1,0,0 +2013,5,25,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2030,-3,0,2356,-1,0,0 +2013,6,9,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1405,33,1,1510,25,1,0 +2013,8,21,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,2,0,1858,0,0,0 +2013,9,22,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1343,4,0,1701,-15,0,0 +2013,6,29,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,5,0,2145,3,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,0,0,1520,0,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,923,-3,0,1042,-10,0,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,0,,1340,0,1,1 +2013,7,20,6,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1205,-6,0,1353,-28,0,0 +2013,9,5,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,9,0,2226,7,0,0 +2013,8,29,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-1,0,1814,-7,0,0 +2013,4,20,6,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,954,-4,0,1036,-6,0,0 +2013,9,26,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-4,0,1611,-20,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,-3,0,2206,6,0,0 +2013,7,30,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-7,0,1835,-23,0,0 +2013,4,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,840,-3,0,1115,-13,0,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1445,8,0,1901,-2,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,3,0,2215,12,0,0 +2013,4,17,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,600,-11,0,731,-15,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1248,-3,0,1448,-5,0,0 +2013,8,15,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2202,57,1,2257,45,1,0 +2013,4,20,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1750,10,0,1846,-7,0,0 +2013,9,17,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-8,0,1510,-6,0,0 +2013,5,4,6,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1135,-2,0,1325,-3,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,32,1,1255,32,1,0 +2013,10,30,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1709,-5,0,1830,23,1,0 +2013,6,5,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,900,-4,0,1215,-23,0,0 +2013,10,5,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1739,-9,0,0 +2013,7,27,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-10,0,1005,-17,0,0 +2013,7,22,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1314,-3,0,2129,-20,0,0 +2013,10,10,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1540,-1,0,1815,8,0,0 +2013,8,8,4,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1334,-4,0,1600,-1,0,0 +2013,7,4,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-6,0,1836,1,0,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1028,-5,0,1157,-9,0,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,10,0,1105,-2,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,830,-3,0,1005,-15,0,0 +2013,4,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1625,-2,0,1735,2,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1220,5,0,1350,-8,0,0 +2013,10,3,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2006,-2,0,2315,-12,0,0 +2013,7,30,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,10,0,1145,0,0,0 +2013,6,2,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,857,0,0,1030,0,0,0 +2013,5,22,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,617,-7,0,730,11,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,900,-4,0,1155,8,0,0 +2013,5,3,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1850,0,,2035,0,1,1 +2013,5,23,4,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,10,0,2015,4,0,0 +2013,10,30,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1245,-3,0,1413,-8,0,0 +2013,7,9,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,87,1,1707,84,1,0 +2013,4,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1425,-5,0,1525,-2,0,0 +2013,5,15,3,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,636,-9,0,850,-21,0,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,44,1,2155,48,1,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-3,0,1250,60,1,0 +2013,7,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,-7,0,1145,-6,0,0 +2013,7,13,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1203,-2,0,1337,-19,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2020,-4,0,2359,-12,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1000,0,0,1227,-5,0,0 +2013,9,20,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-5,0,1743,-12,0,0 +2013,8,31,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1538,-5,0,1742,-10,0,0 +2013,6,24,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-7,0,1110,-17,0,0 +2013,8,23,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,630,-5,0,930,-8,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2055,37,1,2227,19,1,0 +2013,5,28,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,-5,0,2105,-11,0,0 +2013,8,11,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-4,0,1630,-9,0,0 +2013,6,26,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1313,5,0,1633,1,0,0 +2013,6,16,7,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1351,-5,0,1514,-12,0,0 +2013,6,2,7,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1621,30,1,1745,33,1,0 +2013,8,31,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,720,2,0,740,23,1,0 +2013,8,16,5,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,915,-2,0,1020,-13,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1548,-5,0,2359,-11,0,0 +2013,6,18,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1905,8,0,2020,7,0,0 +2013,5,31,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-5,0,937,-10,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-3,0,1256,-7,0,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-4,0,1938,-6,0,0 +2013,10,14,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,6,0,2126,9,0,0 +2013,4,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,0,0,2327,-14,0,0 +2013,10,11,5,OO,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1349,0,0,1459,0,0,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,710,-1,0,900,-19,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1215,22,1,1335,18,1,0 +2013,10,19,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,0,0,1030,-14,0,0 +2013,6,1,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-7,0,2056,1,0,0 +2013,10,15,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2040,-4,0,452,-24,0,0 +2013,6,25,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,-5,0,2135,-16,0,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,925,3,0,1100,4,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-4,0,1000,-23,0,0 +2013,5,10,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1016,0,0,1149,-17,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,-1,0,1120,-9,0,0 +2013,8,12,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1623,-3,0,1743,-6,0,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,87,1,832,70,1,0 +2013,8,19,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1733,89,1,1902,77,1,0 +2013,5,25,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-1,0,636,20,1,0 +2013,6,13,4,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2355,-4,0,636,-9,0,0 +2013,10,30,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-5,0,955,8,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1530,-1,0,1705,-3,0,0 +2013,10,29,2,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1008,9,0,1709,-23,0,0 +2013,9,23,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,820,-1,0,915,-1,0,0 +2013,7,18,4,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,8,0,1913,-4,0,0 +2013,5,2,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-5,0,1609,18,1,0 +2013,6,26,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-7,0,1119,-8,0,0 +2013,7,5,5,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1000,0,0,1105,-25,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,740,1,0,947,-17,0,0 +2013,5,21,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1430,3,0,1545,-2,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1420,28,1,1650,31,1,0 +2013,4,5,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,910,1,0,1225,13,0,0 +2013,6,2,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-3,0,1340,-17,0,0 +2013,8,19,1,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-7,0,1755,8,0,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-7,0,1152,13,0,0 +2013,7,20,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,0,0,758,-4,0,0 +2013,6,23,7,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1241,-10,0,1359,-23,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1338,-4,0,1446,-25,0,0 +2013,8,1,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,26,1,1305,21,1,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1316,90,1,1542,90,1,0 +2013,6,26,3,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,547,1,0,908,-9,0,0 +2013,4,6,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-5,0,2045,-14,0,0 +2013,4,14,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,605,-4,0,705,-6,0,0 +2013,6,23,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2020,-4,0,2230,-22,0,0 +2013,9,29,7,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1255,114,1,1645,121,1,0 +2013,5,9,4,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1255,-4,0,1429,-10,0,0 +2013,10,1,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,1,0,1602,-17,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1849,0,0,2145,-18,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2007,-2,0,2259,-44,0,0 +2013,4,9,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-7,0,1530,5,0,0 +2013,10,14,1,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2120,-1,0,2354,-10,0,0 +2013,5,27,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,840,5,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1030,2,0,1420,12,0,0 +2013,7,25,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1130,3,0,1720,-7,0,0 +2013,8,5,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-9,0,2125,-10,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,900,14,0,1043,0,0,0 +2013,9,7,6,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1250,-8,0,1435,-15,0,0 +2013,4,5,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,600,-2,0,715,2,0,0 +2013,5,31,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-2,0,645,-12,0,0 +2013,10,31,4,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,-9,0,1500,-8,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,0,0,1105,-19,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1610,15,1,1749,-6,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1100,-2,0,1500,-16,0,0 +2013,8,18,7,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-1,0,1923,5,0,0 +2013,5,6,1,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1510,34,1,1800,22,1,0 +2013,5,6,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1405,-5,0,1545,-20,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1655,1,0,1903,-5,0,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1526,1,0,1703,-22,0,0 +2013,9,10,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1011,-3,0,1049,-13,0,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,850,8,0,1015,-1,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1617,23,1,1817,45,1,0 +2013,8,12,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,605,2,0,730,-6,0,0 +2013,9,2,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,-3,0,1025,-2,0,0 +2013,7,21,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,649,7,0,0 +2013,7,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,-1,0,1030,-22,0,0 +2013,10,7,1,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1600,92,1,1755,99,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,-1,0,1301,-7,0,0 +2013,8,6,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1945,-2,0,2105,-3,0,0 +2013,6,9,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,-5,0,1700,15,1,0 +2013,8,3,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1705,-4,0,1941,8,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-3,0,830,-19,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1210,47,1,1530,32,1,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2030,118,1,2259,108,1,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,9,0,2021,22,1,0 +2013,6,29,6,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,9,0,1958,3,0,0 +2013,7,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1923,-6,0,2020,-7,0,0 +2013,10,18,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1125,3,0,0 +2013,9,12,4,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,620,-7,0,725,-18,0,0 +2013,10,23,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1145,-3,0,1842,2,0,0 +2013,9,8,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,-6,0,1314,-10,0,0 +2013,5,10,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2045,0,0,2215,-7,0,0 +2013,4,22,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,115,1,2300,109,1,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,640,-1,0,955,-4,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1810,23,1,2020,7,0,0 +2013,9,28,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1055,-3,0,1428,-10,0,0 +2013,8,9,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1850,48,1,2100,26,1,0 +2013,8,15,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,4,0,1015,-2,0,0 +2013,10,20,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1957,18,1,2303,0,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1439,-1,0,1530,16,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1738,0,0,1904,1,0,0 +2013,9,30,1,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,805,0,0,1045,5,0,0 +2013,6,11,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1016,23,1,1100,17,1,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-7,0,859,-10,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,142,1,23,141,1,0 +2013,7,31,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1344,7,0,1430,9,0,0 +2013,4,7,7,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,900,-3,0,1111,-9,0,0 +2013,8,29,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-4,0,1858,-9,0,0 +2013,7,11,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-3,0,635,8,0,0 +2013,5,29,3,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,0,0,2020,0,0,0 +2013,7,20,6,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1425,-7,0,1539,-19,0,0 +2013,10,31,4,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,600,-4,0,851,-21,0,0 +2013,6,19,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,8,0,1835,-6,0,0 +2013,6,14,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-8,0,1022,-26,0,0 +2013,5,29,3,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,958,3,0,0 +2013,6,10,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,1156,-12,0,0 +2013,6,16,7,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-7,0,655,-18,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1845,9,0,2010,5,0,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,5,0,1640,0,0,0 +2013,4,21,7,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1350,-3,0,1522,-24,0,0 +2013,6,12,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1030,0,0,1145,1,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1505,10,0,2320,-2,0,0 +2013,10,7,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,1220,-11,0,0 +2013,7,22,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,845,-5,0,1037,-22,0,0 +2013,7,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1125,-1,0,1405,-11,0,0 +2013,8,4,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1727,10,0,1905,27,1,0 +2013,8,11,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,-7,0,1346,-14,0,0 +2013,8,28,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1053,0,0,0 +2013,6,23,7,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,21,1,1720,1,0,0 +2013,6,8,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1115,17,1,1207,4,0,0 +2013,4,11,4,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1900,6,0,2227,37,1,0 +2013,8,17,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1625,23,1,1750,21,1,0 +2013,6,27,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,8,0,930,2,0,0 +2013,5,29,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-1,0,800,-10,0,0 +2013,5,25,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1824,1,0,1915,-3,0,0 +2013,9,30,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,1407,8,0,0 +2013,4,10,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1243,-15,0,1557,-21,0,0 +2013,9,22,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,26,1,1940,13,0,0 +2013,4,15,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1345,11,0,1910,13,0,0 +2013,10,9,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,700,-9,0,1447,2,0,0 +2013,10,29,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-1,0,1336,-16,0,0 +2013,5,12,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1610,-3,0,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1005,21,1,1334,22,1,0 +2013,8,23,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1819,19,1,2118,18,1,0 +2013,9,10,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,5,0,1955,10,0,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,0,,1330,0,1,1 +2013,8,24,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1754,0,0,1930,12,0,0 +2013,7,26,5,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,704,11,0,830,18,1,0 +2013,8,23,5,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,2015,-14,0,2228,-15,0,0 +2013,6,13,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,-4,0,2210,-20,0,0 +2013,6,7,5,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1610,72,1,1911,92,1,0 +2013,9,13,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,10,0,955,12,0,0 +2013,5,17,5,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-4,0,1509,-10,0,0 +2013,10,24,4,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2105,20,1,2345,21,1,0 +2013,4,24,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-7,0,1625,-23,0,0 +2013,10,1,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,935,-6,0,1154,-12,0,0 +2013,6,8,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,705,125,1,916,123,1,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,653,-2,0,1001,-11,0,0 +2013,4,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2110,52,1,40,39,1,0 +2013,8,12,1,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,9,0,1238,7,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,0,0,925,0,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1939,0,0,2318,-15,0,0 +2013,5,5,7,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-5,0,905,-14,0,0 +2013,4,3,3,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1215,-4,0,1453,19,1,0 +2013,9,23,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1600,0,0,1629,5,0,0 +2013,7,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2206,21,1,2351,25,1,0 +2013,5,11,6,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,620,-1,0,754,3,0,0 +2013,5,31,5,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,2255,4,0,612,10,0,0 +2013,7,19,5,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-7,0,1541,-5,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1320,22,1,1719,11,0,0 +2013,8,3,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1710,45,1,1820,35,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1208,-3,0,1355,-8,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1130,0,0,1339,31,1,0 +2013,4,5,5,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1025,1,0,1330,-4,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1100,28,1,1200,22,1,0 +2013,6,22,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,821,-3,0,936,-7,0,0 +2013,6,2,7,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,4,0,1425,-7,0,0 +2013,8,5,1,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-12,0,1127,-14,0,0 +2013,6,10,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,94,1,850,93,1,0 +2013,4,25,4,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1310,43,1,1600,30,1,0 +2013,10,10,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1650,-3,0,1738,-5,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2030,26,1,2146,16,1,0 +2013,10,20,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-5,0,941,-18,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,-2,0,2125,-2,0,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1420,1,0,1530,-4,0,0 +2013,4,6,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,623,25,1,749,17,1,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,-1,0,1200,-1,0,0 +2013,6,28,5,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1708,0,,1835,0,1,1 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1150,25,1,1356,52,1,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,15,1,1615,10,0,0 +2013,6,11,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2003,9,0,2347,1,0,0 +2013,10,19,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1320,1,0,1440,-4,0,0 +2013,8,24,6,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1220,-9,0,1414,-21,0,0 +2013,10,25,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-8,0,2114,15,1,0 +2013,5,29,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,840,1,0,1005,-16,0,0 +2013,7,4,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-1,0,1630,-1,0,0 +2013,4,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-5,0,1151,1,0,0 +2013,9,1,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1030,-2,0,1140,-5,0,0 +2013,7,5,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,3,0,1937,-1,0,0 +2013,6,10,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,535,-3,0,857,-10,0,0 +2013,5,29,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1125,21,1,1250,13,0,0 +2013,4,25,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,-2,0,1053,-31,0,0 +2013,4,9,2,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,851,-11,0,0 +2013,5,8,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,804,-3,0,950,-7,0,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1557,-2,0,1834,-8,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1016,81,1,1405,83,1,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,13,0,1729,23,1,0 +2013,10,6,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,0,0,1442,13,0,0 +2013,5,1,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1035,-3,0,1400,22,1,0 +2013,9,6,5,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-9,0,1045,-27,0,0 +2013,8,26,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1117,-6,0,1152,3,0,0 +2013,10,9,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1840,23,1,2100,19,1,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2257,-6,0,2302,-1,0,0 +2013,6,13,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1131,136,1,1434,139,1,0 +2013,5,30,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1310,2,0,1420,-5,0,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2233,27,1,705,10,0,0 +2013,5,18,6,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,2,0,1250,-6,0,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,54,1,1755,35,1,0 +2013,4,13,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,6,0,845,-5,0,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,920,3,0,1235,-12,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1822,0,0,1848,11,0,0 +2013,5,26,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1620,-6,0,1842,-31,0,0 +2013,10,11,5,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1925,-6,0,2010,-13,0,0 +2013,6,25,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-3,0,1435,-9,0,0 +2013,10,29,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-10,0,1310,1,0,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1245,8,0,1610,30,1,0 +2013,5,5,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-9,0,903,-27,0,0 +2013,5,27,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1125,0,0,1246,1,0,0 +2013,10,21,1,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1518,-4,0,1702,-19,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,33,1,1450,8,0,0 +2013,7,9,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,7,0,2155,8,0,0 +2013,7,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,110,1,2053,113,1,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1715,25,1,1854,41,1,0 +2013,9,5,4,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,630,-6,0,742,-7,0,0 +2013,10,31,4,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1300,-11,0,2144,-22,0,0 +2013,5,27,1,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,0,0,2010,-6,0,0 +2013,5,2,4,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-7,0,735,33,1,0 +2013,5,5,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1900,78,1,1935,84,1,0 +2013,9,12,4,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2135,-4,0,543,-9,0,0 +2013,5,20,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,2,0,1300,-3,0,0 +2013,8,24,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,12,0,1310,6,0,0 +2013,7,28,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-4,0,1451,-4,0,0 +2013,10,22,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-4,0,1945,-11,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1243,-2,0,1720,-6,0,0 +2013,8,31,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1405,0,0,1525,-9,0,0 +2013,10,26,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-5,0,950,-13,0,0 +2013,10,17,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-8,0,2237,-9,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,740,-1,0,940,-10,0,0 +2013,9,24,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,-2,0,1925,-2,0,0 +2013,10,13,7,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1020,8,0,1535,-18,0,0 +2013,6,18,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-2,0,900,-13,0,0 +2013,7,12,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-5,0,1304,7,0,0 +2013,5,8,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1050,-1,0,1220,-5,0,0 +2013,9,24,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1235,0,0,1447,-8,0,0 +2013,8,10,6,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,-8,0,832,-20,0,0 +2013,8,8,4,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2213,-5,0,605,-28,0,0 +2013,6,24,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1045,201,1,1255,202,1,0 +2013,6,6,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,806,-2,0,1056,-14,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1010,85,1,1230,67,1,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-2,0,1245,-10,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,7,0,2330,9,0,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1252,2,0,1819,42,1,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1905,-6,0,2250,-10,0,0 +2013,6,11,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1128,22,1,1216,18,1,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,-5,0,2003,3,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,4,0,1524,6,0,0 +2013,8,24,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,845,-1,0,1257,-8,0,0 +2013,10,6,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1841,-7,0,2010,9,0,0 +2013,4,3,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1450,-1,0,1630,-1,0,0 +2013,10,29,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1345,-1,0,1518,-12,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,601,-2,0,731,-5,0,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1509,8,0,2349,-16,0,0 +2013,5,24,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1700,57,1,1732,62,1,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,-3,0,1342,1,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1110,-2,0,1220,-21,0,0 +2013,4,24,3,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1433,163,1,1544,146,1,0 +2013,5,4,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-6,0,1144,-13,0,0 +2013,8,28,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,745,0,,920,0,1,1 +2013,5,21,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1945,7,0,2003,-7,0,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,942,-4,0,1302,3,0,0 +2013,9,20,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,915,-5,0,1050,-12,0,0 +2013,8,10,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,4,0,2226,9,0,0 +2013,4,15,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-3,0,2128,-11,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1630,-3,0,1740,-13,0,0 +2013,7,19,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,10,0,1435,3,0,0 +2013,4,9,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-4,0,949,-9,0,0 +2013,7,9,2,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1815,200,1,2125,199,1,0 +2013,8,31,6,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1150,-5,0,1443,-12,0,0 +2013,10,7,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,856,0,0,1041,17,1,0 +2013,7,10,3,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,6,0,1330,0,0,0 +2013,8,10,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1310,12,0,1435,8,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,-1,0,800,-3,0,0 +2013,6,13,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,4,0,1730,-1,0,0 +2013,7,7,7,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,625,-2,0,720,-9,0,0 +2013,7,10,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1400,61,1,1735,0,1,1 +2013,8,4,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2115,-1,0,535,-28,0,0 +2013,5,14,2,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1050,-5,0,1410,-5,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1356,-3,0,1547,11,0,0 +2013,10,14,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1800,0,0,2040,-16,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1250,-4,0,1355,1,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,0,0,935,1,0,0 +2013,7,3,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1250,21,1,1825,34,1,0 +2013,5,16,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1140,1,0,1315,-12,0,0 +2013,8,11,7,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,624,-16,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,5,0,1625,-4,0,0 +2013,8,13,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,20,1,1450,23,1,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,538,1,0,811,-5,0,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1844,28,1,1941,26,1,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,0,0,2115,0,0,0 +2013,10,3,4,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1715,17,1,1835,8,0,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1108,5,0,1244,-2,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,810,-2,0,1310,-16,0,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1500,5,0,1645,-4,0,0 +2013,4,11,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,812,-19,0,0 +2013,5,16,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2250,-5,0,2328,-7,0,0 +2013,4,13,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,700,-5,0,830,-6,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,0,0,2025,-2,0,0 +2013,7,18,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,95,1,147,84,1,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2030,33,1,2315,5,0,0 +2013,4,2,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1630,-9,0,1835,18,1,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1720,4,0,1910,-2,0,0 +2013,5,16,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-12,0,2215,-19,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,745,-7,0,1120,0,0,0 +2013,5,12,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,0,0,1445,-34,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1130,9,0,1315,3,0,0 +2013,8,3,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,1,0,1215,-4,0,0 +2013,6,20,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,9,0,745,20,1,0 +2013,6,16,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,955,45,1,1121,27,1,0 +2013,7,9,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-1,0,1238,10,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,0,0,1401,-3,0,0 +2013,5,30,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,0,0,720,-8,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,850,22,1,1730,4,0,0 +2013,4,27,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,-5,0,935,9,0,0 +2013,9,15,7,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,-1,0,2040,14,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,5,0,1555,-6,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1703,-1,0,1952,-9,0,0 +2013,10,24,4,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2053,-3,0,2348,-4,0,0 +2013,7,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,-1,0,2356,9,0,0 +2013,10,6,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,-6,0,1832,-5,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2030,57,1,2135,68,1,0 +2013,8,23,5,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,750,-2,0,1025,2,0,0 +2013,6,13,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,3,0,1720,-2,0,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,630,-3,0,839,-18,0,0 +2013,10,14,1,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2018,-8,0,2144,-34,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-1,0,1433,-23,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1840,3,0,2230,6,0,0 +2013,9,24,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2105,12,0,2240,10,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,35,1,1940,29,1,0 +2013,6,25,2,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,645,4,0,0 +2013,7,13,6,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,190,1,1240,151,1,0 +2013,4,5,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,-3,0,1910,-8,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1610,22,1,1755,36,1,0 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,0,0,1510,3,0,0 +2013,9,1,7,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1233,-6,0,1354,-5,0,0 +2013,5,23,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,22,1,2020,44,1,0 +2013,5,8,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-7,0,704,0,0,0 +2013,5,9,4,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1945,0,0,2115,20,1,0 +2013,7,17,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-1,0,1135,2,0,0 +2013,8,1,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,-4,0,1810,-17,0,0 +2013,10,16,3,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,-5,0,1828,-16,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,3,0,1750,11,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1128,-5,0,1312,3,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1640,6,0,2315,26,1,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,0,,1025,0,1,1 +2013,4,25,4,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,545,5,0,600,-5,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1315,1,0,1645,7,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-5,0,1832,-14,0,0 +2013,10,4,5,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1440,57,1,1743,52,1,0 +2013,7,11,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,840,-12,0,0 +2013,6,4,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1830,-2,0,2015,-11,0,0 +2013,5,11,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1646,-11,0,1814,-9,0,0 +2013,8,13,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,13,0,2005,0,0,0 +2013,7,17,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1130,1,0,1228,3,0,0 +2013,5,20,1,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-1,0,1547,5,0,0 +2013,6,20,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1735,19,1,1905,11,0,0 +2013,7,12,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-8,0,1152,-16,0,0 +2013,4,5,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,945,14,0,1129,0,0,0 +2013,8,16,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-2,0,2102,-23,0,0 +2013,6,19,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1530,-1,0,1642,10,0,0 +2013,9,9,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,-4,0,500,-12,0,0 +2013,10,7,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,1355,14,0,1600,1,0,0 +2013,4,8,1,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,905,-7,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,-2,0,1327,9,0,0 +2013,6,9,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,44,1,1554,47,1,0 +2013,8,21,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1825,17,1,2140,9,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1449,2,0,1604,3,0,0 +2013,5,22,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,829,-6,0,1034,-13,0,0 +2013,8,22,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-7,0,755,-11,0,0 +2013,6,18,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-5,0,1649,3,0,0 +2013,8,9,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1505,-4,0,1616,-17,0,0 +2013,6,27,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,313,1,2155,290,1,0 +2013,9,10,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1205,-8,0,1327,-8,0,0 +2013,10,10,4,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,-9,0,2056,-15,0,0 +2013,5,10,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,-1,0,810,-16,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2200,-7,0,2250,-15,0,0 +2013,10,10,4,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,33,1,1504,26,1,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,652,-6,0,749,-10,0,0 +2013,9,10,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1952,-8,0,2210,-23,0,0 +2013,4,11,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1330,-10,0,1606,-22,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-6,0,1639,-13,0,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1615,9,0,2135,-14,0,0 +2013,10,5,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,1,0,2130,-25,0,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,46,1,1405,40,1,0 +2013,7,24,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,13,0,1943,-1,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1704,-5,0,1725,-4,0,0 +2013,8,12,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,7,0,2111,-4,0,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1435,18,1,1600,11,0,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,625,0,0,735,-8,0,0 +2013,9,10,2,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1142,-6,0,1628,-15,0,0 +2013,4,29,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,938,-1,0,1305,0,0,0 +2013,9,1,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1349,-8,0,1717,10,0,0 +2013,6,30,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,0,0,2153,3,0,0 +2013,5,24,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,855,-6,0,1000,-24,0,0 +2013,8,9,5,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-3,0,1300,-3,0,0 +2013,10,24,4,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-2,0,1630,0,0,0 +2013,7,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1020,1,0,1140,-2,0,0 +2013,4,16,2,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,600,0,0,825,-5,0,0 +2013,7,9,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,830,122,1,850,121,1,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-2,0,1210,-7,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,1,0,1630,-9,0,0 +2013,6,11,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1522,3,0,1829,1,0,0 +2013,8,21,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-2,0,808,-13,0,0 +2013,9,16,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,635,-2,0,745,-6,0,0 +2013,9,10,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,640,21,1,901,12,0,0 +2013,8,19,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1354,22,1,1515,32,1,0 +2013,4,14,7,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1605,-2,0,1852,-5,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1945,18,1,110,11,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2110,149,1,2200,145,1,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1610,11,0,1745,25,1,0 +2013,7,7,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1258,0,,1428,0,1,1 +2013,7,6,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,37,1,2135,44,1,0 +2013,10,14,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-6,0,1616,12,0,0 +2013,4,29,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-5,0,1150,-5,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,-3,0,922,-15,0,0 +2013,10,16,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1835,7,0,2015,7,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1600,-2,0,1905,11,0,0 +2013,9,13,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,-2,0,2058,-5,0,0 +2013,10,6,7,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1154,-4,0,1726,-12,0,0 +2013,8,6,2,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,657,17,1,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1135,111,1,1415,107,1,0 +2013,7,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,2025,70,1,2345,68,1,0 +2013,8,14,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-3,0,1415,-6,0,0 +2013,8,17,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1320,44,1,1850,29,1,0 +2013,10,28,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-10,0,808,-22,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1721,14,0,1930,-12,0,0 +2013,5,19,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,95,1,2016,138,1,0 +2013,6,26,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,812,2,0,929,-5,0,0 +2013,6,25,2,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1236,0,0,1335,-1,0,0 +2013,7,30,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1555,2,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1710,0,0,2000,23,1,0 +2013,6,25,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,149,1,1646,179,1,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1040,-1,0,1307,-6,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1210,22,1,1740,33,1,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,740,-5,0,1045,4,0,0 +2013,7,30,2,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1738,-7,0,2100,-7,0,0 +2013,9,19,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1115,-2,0,1319,27,1,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1330,6,0,1810,3,0,0 +2013,7,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,952,-5,0,1136,-16,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1315,-1,0,1505,11,0,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1650,19,1,1900,10,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,65,1,1735,67,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,159,1,2108,144,1,0 +2013,8,10,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,6,0,840,-4,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1800,9,0,1935,5,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2033,-8,0,2155,-22,0,0 +2013,5,3,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,946,-1,0,1559,4,0,0 +2013,9,28,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,81,1,2005,56,1,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,-4,0,2220,1,0,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-5,0,900,-9,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1313,27,1,1700,16,1,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-3,0,2002,-5,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,15,1,1350,-1,0,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1400,-3,0,1725,-19,0,0 +2013,6,10,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1725,26,1,1845,24,1,0 +2013,10,29,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,1,0,1230,-11,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,27,1,915,14,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,-4,0,1147,-22,0,0 +2013,4,12,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,640,-6,0,739,-19,0,0 +2013,4,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,106,1,2100,133,1,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1030,81,1,1235,79,1,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1630,84,1,1735,82,1,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,42,1,912,47,1,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,-5,0,1255,0,0,0 +2013,5,9,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1400,13,0,1432,31,1,0 +2013,9,16,1,EV,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,610,-4,0,805,-9,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1540,-2,0,1739,-1,0,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1312,12,0,2130,31,1,0 +2013,6,14,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,940,-1,0,1139,-4,0,0 +2013,5,16,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1650,43,1,1935,29,1,0 +2013,4,4,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1023,4,0,0 +2013,5,17,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,-2,0,2351,-16,0,0 +2013,10,9,3,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2338,-7,0,718,-9,0,0 +2013,8,24,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1315,17,1,1630,11,0,0 +2013,5,6,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,104,1,1900,84,1,0 +2013,8,21,3,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1450,-2,0,1634,9,0,0 +2013,6,30,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-5,0,533,-2,0,0 +2013,10,16,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1912,-8,0,2024,-10,0,0 +2013,4,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,0,0,940,-14,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2130,54,1,2300,41,1,0 +2013,10,12,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-6,0,1200,-3,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-2,0,1745,-7,0,0 +2013,8,9,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2255,-3,0,612,-39,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1635,4,0,15,-2,0,0 +2013,9,15,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1230,24,1,1526,6,0,0 +2013,4,13,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1333,37,1,1501,51,1,0 +2013,5,28,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,915,-7,0,1105,-25,0,0 +2013,6,4,2,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,948,0,0,1121,59,1,0 +2013,6,19,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1500,0,0,2312,8,0,0 +2013,4,6,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1905,-1,0,2015,-7,0,0 +2013,4,1,1,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1528,19,1,2014,6,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,-2,0,923,-9,0,0 +2013,7,10,3,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-4,0,1521,79,1,0 +2013,4,20,6,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-1,0,1030,-1,0,0 +2013,8,21,3,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,600,-2,0,710,-9,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,705,-5,0,824,-14,0,0 +2013,10,25,5,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,939,-13,0,1235,-7,0,0 +2013,4,4,4,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1430,11,0,1630,-10,0,0 +2013,9,15,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,930,4,0,0 +2013,10,26,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,15,1,940,-5,0,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,835,2,0,1027,-16,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,645,0,0,1040,-19,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,1,0,2040,-8,0,0 +2013,7,11,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,-1,0,2005,5,0,0 +2013,8,9,5,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,845,-1,0,1410,4,0,0 +2013,7,7,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-6,0,2024,9,0,0 +2013,4,9,2,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1520,8,0,1706,3,0,0 +2013,8,21,3,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,814,1,0,1025,-6,0,0 +2013,8,17,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-5,0,1400,-2,0,0 +2013,7,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,0,0,2050,-4,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1935,16,1,2155,19,1,0 +2013,5,26,7,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1500,-10,0,1623,-8,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,-2,0,1445,-9,0,0 +2013,4,10,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1816,1,0,2100,2,0,0 +2013,5,29,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1535,108,1,1725,181,1,0 +2013,7,10,3,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1505,16,1,1840,16,1,0 +2013,4,21,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,600,-8,0,720,-14,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1448,1,0,1745,-4,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,0,0,1450,6,0,0 +2013,10,1,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,835,1,0,1025,-17,0,0 +2013,10,1,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1442,2,0,1607,-6,0,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1455,-4,0,1649,-2,0,0 +2013,4,23,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1150,-5,0,1240,-7,0,0 +2013,8,29,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,16,1,1140,25,1,0 +2013,7,16,2,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1435,4,0,1750,10,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,0,0,1100,-5,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-2,0,1200,-22,0,0 +2013,8,7,3,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1228,34,1,1730,48,1,0 +2013,6,9,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,-2,0,1642,-11,0,0 +2013,7,30,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,-4,0,1555,-7,0,0 +2013,4,25,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-3,0,1549,-14,0,0 +2013,8,9,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,605,-5,0,725,-10,0,0 +2013,10,15,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1707,-3,0,2218,-22,0,0 +2013,5,13,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,600,-2,0,840,-4,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,830,1,0,1145,-2,0,0 +2013,6,5,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,37,1,1945,16,1,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1905,2,0,2250,-7,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1755,-3,0,2010,-15,0,0 +2013,8,19,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,-7,0,1725,-5,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1518,111,1,1917,111,1,0 +2013,8,24,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,830,-3,0,835,-5,0,0 +2013,7,1,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,4,0,1825,2,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1120,8,0,1325,12,0,0 +2013,10,21,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,15,1,1357,34,1,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-1,0,907,-22,0,0 +2013,10,6,7,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1000,-2,0,1335,-11,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,618,-2,0,856,-9,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,1,0,1104,12,0,0 +2013,7,12,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,3,0,840,0,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2305,-4,0,2359,-6,0,0 +2013,7,6,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,0,0,1610,-2,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,0,0,1326,4,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1530,-1,0,1915,-5,0,0 +2013,7,16,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,-10,0,1706,-9,0,0 +2013,10,31,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,0,0,1552,3,0,0 +2013,6,15,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,840,2,0,955,-1,0,0 +2013,10,26,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,600,-2,0,730,-14,0,0 +2013,4,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,0,0,724,2,0,0 +2013,10,20,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1550,39,1,1710,30,1,0 +2013,6,15,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,8,0,910,7,0,0 +2013,10,7,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-3,0,1604,-1,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,25,1,2230,12,0,0 +2013,10,3,4,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-7,0,1205,-2,0,0 +2013,8,19,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1800,7,0,2035,14,0,0 +2013,10,24,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,600,-4,0,715,-8,0,0 +2013,5,25,6,EV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,61,1,1935,50,1,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1350,-2,0,1606,10,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,15,1,2346,1,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1030,2,0,1200,-5,0,0 +2013,5,10,5,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1945,197,1,2209,196,1,0 +2013,8,11,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,43,1,1925,36,1,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1420,1,0,1633,-8,0,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,21,1,1231,17,1,0 +2013,5,6,1,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,600,-4,0,845,-4,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,859,18,1,1055,17,1,0 +2013,8,20,2,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1119,-7,0,1234,-13,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,-4,0,2208,11,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,0,0,1521,5,0,0 +2013,8,18,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,8,0,1605,0,0,0 +2013,10,29,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,810,-3,0,0 +2013,4,24,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,835,-2,0,1005,-13,0,0 +2013,10,10,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,17,-8,0,524,-22,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-7,0,1428,-3,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,802,-2,0,900,39,1,0 +2013,10,25,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,23,1,835,10,0,0 +2013,9,18,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-13,0,1745,-8,0,0 +2013,10,17,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,724,-6,0,929,19,1,0 +2013,7,7,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-5,0,1720,-10,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2055,3,0,2215,-4,0,0 +2013,9,23,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1645,-7,0,2015,-25,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1243,-3,0,1720,-13,0,0 +2013,8,2,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-3,0,2050,-11,0,0 +2013,8,20,2,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1500,-6,0,2330,-6,0,0 +2013,7,19,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1611,1,0,15,-13,0,0 +2013,8,8,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,0,,1409,0,1,1 +2013,4,2,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-1,0,1752,-9,0,0 +2013,5,30,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,1120,-2,0,0 +2013,10,21,1,9E,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,-1,0,1424,3,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2218,-9,0,2346,-20,0,0 +2013,8,6,2,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,852,-2,0,1138,5,0,0 +2013,5,5,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-6,0,1414,4,0,0 +2013,8,19,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1945,-3,0,2015,-14,0,0 +2013,8,6,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,-1,0,730,-2,0,0 +2013,7,14,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-6,0,1406,-22,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1500,0,0,1639,0,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,80,1,915,76,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,125,1,1455,112,1,0 +2013,8,28,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-1,0,1535,-9,0,0 +2013,4,9,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,600,-6,0,843,-20,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-2,0,2323,-3,0,0 +2013,5,12,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1003,16,1,1136,-12,0,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,1,0,1210,9,0,0 +2013,10,23,3,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,730,-12,0,1009,-23,0,0 +2013,6,10,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1022,-3,0,1256,13,0,0 +2013,8,19,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2033,-10,0,2120,-10,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,1,0,1624,-11,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,73,1,1339,60,1,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1547,24,1,1723,30,1,0 +2013,10,22,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,19,1,1740,15,1,0 +2013,10,31,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1115,75,1,1240,88,1,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1425,-1,0,1612,-23,0,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-1,0,815,-1,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1520,11,0,1715,14,0,0 +2013,8,18,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,18,1,1620,29,1,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,945,-2,0,1050,-13,0,0 +2013,7,18,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,-5,0,755,-16,0,0 +2013,4,28,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-6,0,1350,-19,0,0 +2013,4,20,6,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,831,17,1,1037,5,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,959,-6,0,1244,-28,0,0 +2013,4,24,3,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,839,-10,0,0 +2013,8,3,6,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-6,0,728,-3,0,0 +2013,9,21,6,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1010,4,0,1250,-3,0,0 +2013,6,26,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,120,1,1945,126,1,0 +2013,8,15,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1910,0,0,2043,-12,0,0 +2013,8,2,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,24,1,1305,20,1,0 +2013,10,11,5,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,735,-9,0,1015,-32,0,0 +2013,4,18,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,118,1,1942,112,1,0 +2013,5,25,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,900,-11,0,1215,-29,0,0 +2013,7,26,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1416,53,1,1644,50,1,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,930,1,0,1130,3,0,0 +2013,6,2,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,222,1,1515,280,1,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1205,65,1,1345,67,1,0 +2013,7,14,7,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-5,0,827,-17,0,0 +2013,7,21,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,5,0,2113,23,1,0 +2013,6,13,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,4,0,1200,-3,0,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-3,0,1155,-16,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1810,26,1,2025,21,1,0 +2013,10,30,3,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,1540,3,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-7,0,1830,-5,0,0 +2013,8,16,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1249,0,0,1429,-5,0,0 +2013,10,12,6,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,715,2,0,820,-5,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,-8,0,857,-14,0,0 +2013,7,16,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1124,-1,0,1417,0,0,0 +2013,7,29,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1845,8,0,1915,13,0,0 +2013,10,21,1,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,905,8,0,1050,22,1,0 +2013,5,9,4,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,53,1,2015,38,1,0 +2013,9,27,5,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1220,-5,0,1437,-22,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,-2,0,1400,-7,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1225,-1,0,1334,6,0,0 +2013,9,29,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1055,-5,0,1200,-5,0,0 +2013,8,29,4,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-3,0,2010,-8,0,0 +2013,8,22,4,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,920,8,0,1045,-5,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-1,0,2347,7,0,0 +2013,9,3,2,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1730,-9,0,1842,-20,0,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,920,36,1,1105,21,1,0 +2013,6,6,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2004,49,1,2222,37,1,0 +2013,6,4,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1450,0,0,1553,-10,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1015,7,0,1225,-5,0,0 +2013,9,24,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1657,-8,0,2029,-13,0,0 +2013,8,5,1,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,-4,0,1110,-10,0,0 +2013,8,15,4,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1057,-6,0,1420,-6,0,0 +2013,6,20,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2010,28,1,2125,15,1,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1040,16,1,1300,2,0,0 +2013,8,3,6,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-8,0,1645,61,1,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1548,-3,0,1909,25,1,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1850,27,1,2105,33,1,0 +2013,6,11,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-12,0,1713,6,0,0 +2013,5,17,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,12,0,1720,-4,0,0 +2013,6,22,6,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,-6,0,1450,-24,0,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1515,-3,0,1835,-34,0,0 +2013,4,28,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1115,-10,0,1448,-14,0,0 +2013,10,5,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1115,-3,0,1240,2,0,0 +2013,8,29,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-8,0,2245,-5,0,0 +2013,8,5,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,13,0,1720,17,1,0 +2013,4,14,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-7,0,1415,-21,0,0 +2013,5,17,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,645,-2,0,815,-7,0,0 +2013,6,27,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,49,1,1730,45,1,0 +2013,4,4,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1805,1,0,1925,-10,0,0 +2013,10,3,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-8,0,1325,7,0,0 +2013,8,21,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,-4,0,2036,-6,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-5,0,2131,-5,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1310,7,0,1540,52,1,0 +2013,10,16,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,9,0,1925,0,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,650,-4,0,815,-9,0,0 +2013,10,11,5,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1340,-2,0,1635,8,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,0,0,1810,-1,0,0 +2013,5,5,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1347,-4,0,1435,-9,0,0 +2013,7,7,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,,1125,0,1,1 +2013,9,16,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1345,-7,0,1730,-10,0,0 +2013,6,7,5,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1305,11,0,1630,24,1,0 +2013,6,5,3,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1027,-4,0,1254,-15,0,0 +2013,10,18,5,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-14,0,1044,-18,0,0 +2013,4,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1957,-2,0,2202,2,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1010,15,1,1335,3,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2010,13,0,2055,9,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,7,0,815,14,0,0 +2013,8,4,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,109,1,1945,91,1,0 +2013,10,30,3,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1048,-6,0,1336,2,0,0 +2013,8,29,4,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1500,9,0,1635,-1,0,0 +2013,6,23,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,209,1,1925,202,1,0 +2013,7,14,7,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,36,1,2308,-3,0,0 +2013,4,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2135,-5,0,5,-28,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2120,-1,0,30,-6,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2155,137,1,2340,125,1,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1833,31,1,2319,7,0,0 +2013,8,2,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,-12,0,1912,-11,0,0 +2013,4,2,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,-12,0,1829,-14,0,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2150,-6,0,2315,-7,0,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2303,7,0,717,-7,0,0 +2013,9,27,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,846,-9,0,1010,-16,0,0 +2013,10,17,4,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1045,1,0,1309,4,0,0 +2013,5,13,1,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,815,-3,0,1034,-25,0,0 +2013,4,16,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-5,0,820,1,0,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,859,-4,0,1613,-17,0,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,0,0,2228,-4,0,0 +2013,4,15,1,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1435,0,0,1720,-7,0,0 +2013,7,30,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,-14,0,856,-9,0,0 +2013,4,27,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,60,1,115,60,1,0 +2013,8,19,1,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1722,5,0,1932,-5,0,0 +2013,7,30,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,22,1,2035,15,1,0 +2013,7,13,6,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1245,12,0,1605,-9,0,0 +2013,9,13,5,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,2007,85,1,2154,125,1,0 +2013,4,9,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,-4,0,1904,-3,0,0 +2013,9,22,7,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,0,0,1622,-9,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,128,1,1955,111,1,0 +2013,10,17,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-1,0,1645,-8,0,0 +2013,4,10,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,835,6,0,0 +2013,8,25,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-7,0,755,-19,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,1,0,2354,8,0,0 +2013,8,14,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-10,0,920,1,0,0 +2013,6,17,1,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,1,0,1225,-1,0,0 +2013,6,17,1,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,605,-6,0,623,-10,0,0 +2013,8,9,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1534,32,1,1830,83,1,0 +2013,5,22,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,830,-5,0,1242,-5,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,915,-3,0,1035,-4,0,0 +2013,6,24,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,0,0,1526,22,1,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2130,9,0,2235,3,0,0 +2013,10,20,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1442,-9,0,1820,-19,0,0 +2013,5,12,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,-4,0,1040,-5,0,0 +2013,8,8,4,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1053,1,0,1350,-10,0,0 +2013,6,18,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1823,-10,0,2030,-28,0,0 +2013,9,19,4,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-3,0,1735,-14,0,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1859,-3,0,2207,-13,0,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2100,-2,0,2220,-10,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1500,40,1,1630,35,1,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-6,0,1611,-3,0,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1740,-3,0,1955,-2,0,0 +2013,9,30,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1745,-2,0,1902,23,1,0 +2013,4,2,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,933,1,0,1216,-3,0,0 +2013,8,27,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,1,0,2226,-16,0,0 +2013,7,13,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,2020,-4,0,2345,-7,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1555,-1,0,1646,0,0,0 +2013,4,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,12,0,2143,2,0,0 +2013,9,3,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2105,0,,2230,0,1,1 +2013,8,15,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1655,-2,0,2100,7,0,0 +2013,9,23,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1230,-17,0,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,65,1,1555,59,1,0 +2013,8,30,5,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1825,52,1,2140,45,1,0 +2013,7,21,7,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,2,0,1600,-9,0,0 +2013,9,30,1,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,810,-5,0,1055,-10,0,0 +2013,10,12,6,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1008,-8,0,0 +2013,10,10,4,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1810,-11,0,1905,-24,0,0 +2013,5,28,2,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1140,25,1,1220,19,1,0 +2013,8,8,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,-2,0,2205,0,0,0 +2013,9,4,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1253,-4,0,1554,-37,0,0 +2013,6,23,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,3,0,2135,17,1,0 +2013,10,10,4,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,95,1,1725,76,1,0 +2013,10,2,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1455,-5,0,1555,-10,0,0 +2013,8,7,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1555,-3,0,1710,-10,0,0 +2013,10,8,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,1,0,1445,-6,0,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,855,-4,0,918,-9,0,0 +2013,7,3,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,49,1,1930,45,1,0 +2013,10,21,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1120,-5,0,1259,-17,0,0 +2013,5,31,5,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1529,-2,0,1740,-14,0,0 +2013,4,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,52,1,1840,55,1,0 +2013,7,14,7,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2200,-2,0,2315,-8,0,0 +2013,9,19,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1225,12,0,1325,7,0,0 +2013,8,9,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,30,1,1330,20,1,0 +2013,6,22,6,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1040,-5,0,1605,-6,0,0 +2013,10,8,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,938,11,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,731,-5,0,1015,-6,0,0 +2013,8,30,5,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,11,0,2156,-30,0,0 +2013,5,18,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,0,0,1410,-4,0,0 +2013,4,3,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2145,-3,0,25,-12,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1959,18,1,2317,17,1,0 +2013,9,23,1,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,745,82,1,1050,67,1,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1545,1,0,1840,-4,0,0 +2013,4,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1140,0,0,1315,-1,0,0 +2013,6,9,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-6,0,1104,-2,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,-10,0,1057,-13,0,0 +2013,6,7,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,12,0,1121,18,1,0 +2013,6,17,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-4,0,1329,-15,0,0 +2013,8,6,2,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1144,-6,0,1316,-11,0,0 +2013,5,16,4,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1227,-7,0,1457,-12,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1120,-2,0,1310,-11,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,723,-8,0,1231,-8,0,0 +2013,9,3,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1205,-2,0,1430,-13,0,0 +2013,5,31,5,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,48,3,0,630,-10,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1410,22,1,1630,16,1,0 +2013,4,25,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,855,-3,0,943,5,0,0 +2013,10,27,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1506,72,1,2117,46,1,0 +2013,6,18,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1215,6,0,1310,11,0,0 +2013,8,15,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1841,17,1,2033,11,0,0 +2013,6,22,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2359,-3,0,654,-11,0,0 +2013,9,5,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,600,-2,0,745,8,0,0 +2013,5,29,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2115,-11,0,2210,-13,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,40,1,1510,34,1,0 +2013,6,13,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1020,24,1,1225,9,0,0 +2013,5,5,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2218,-4,0,634,0,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,0,0,2255,-9,0,0 +2013,10,24,4,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,2003,-1,0,2109,-3,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,810,-2,0,919,-6,0,0 +2013,8,25,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-8,0,1626,-6,0,0 +2013,8,14,3,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,5,0,2355,15,1,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1300,-3,0,1425,-10,0,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2100,6,0,2230,0,0,0 +2013,8,30,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1415,-6,0,1700,-9,0,0 +2013,5,24,5,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1313,6,0,2105,1,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,8,0,1630,4,0,0 +2013,6,12,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,115,-8,0,830,-14,0,0 +2013,4,25,4,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,-1,0,841,-12,0,0 +2013,9,26,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,-6,0,1415,8,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,46,1,1852,52,1,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1230,-1,0,1506,-13,0,0 +2013,10,31,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1215,-5,0,1458,-3,0,0 +2013,5,25,6,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2010,16,1,2254,-1,0,0 +2013,9,2,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,946,-2,0,1041,-18,0,0 +2013,4,21,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-1,0,838,0,0,0 +2013,7,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2157,-4,0,2236,-10,0,0 +2013,9,26,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,-5,0,901,3,0,0 +2013,9,26,4,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1050,-5,0,1539,-8,0,0 +2013,6,25,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,2,0,1220,0,0,0 +2013,5,1,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-4,0,920,-10,0,0 +2013,7,10,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-9,0,935,-8,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1543,-2,0,1845,-23,0,0 +2013,6,7,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-7,0,1115,-9,0,0 +2013,4,12,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-18,0,1443,-14,0,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,1,0,1030,-12,0,0 +2013,4,6,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-6,0,1559,-11,0,0 +2013,4,24,3,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-13,0,1655,-8,0,0 +2013,10,15,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1406,20,1,1729,5,0,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-4,0,1720,9,0,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,-4,0,1440,-14,0,0 +2013,10,2,3,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,820,-23,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,20,1,2024,1,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-1,0,852,-15,0,0 +2013,7,27,6,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1255,41,1,1430,36,1,0 +2013,6,7,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-5,0,655,0,0,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,940,-2,0,1030,-2,0,0 +2013,9,12,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1349,44,1,1601,0,1,1 +2013,9,23,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1847,-8,0,2358,-9,0,0 +2013,4,25,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1720,-2,0,1939,1,0,0 +2013,4,17,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1530,-6,0,1710,6,0,0 +2013,8,26,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,820,-18,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1355,1,0,1650,-5,0,0 +2013,9,1,7,FL,13244,Memphis International,Memphis,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1547,-2,0,1853,-7,0,0 +2013,4,24,3,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1615,5,0,1805,-12,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1335,32,1,1450,29,1,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,640,-2,0,745,2,0,0 +2013,7,8,1,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,-1,0,1230,7,0,0 +2013,5,18,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,-6,0,1201,-23,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,-5,0,1230,-13,0,0 +2013,6,26,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1655,5,0,2005,12,0,0 +2013,5,19,7,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,706,-16,0,906,-34,0,0 +2013,6,16,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-16,0,2308,-26,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1505,1,0,1600,2,0,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1220,5,0,1705,-3,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,-2,0,2212,-12,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1156,17,1,1439,8,0,0 +2013,7,27,6,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,0,0,1005,2,0,0 +2013,5,27,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-1,0,1633,-9,0,0 +2013,4,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1332,178,1,1526,171,1,0 +2013,5,28,2,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1315,3,0,1505,-6,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,818,-2,0,1359,-1,0,0 +2013,8,22,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1815,46,1,2345,35,1,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,0,0,950,-7,0,0 +2013,7,8,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,3,0,2210,-2,0,0 +2013,10,2,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-3,0,1410,-18,0,0 +2013,5,12,7,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1600,29,1,1846,1,0,0 +2013,9,4,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,0,0,2128,-39,0,0 +2013,10,23,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1710,-6,0,1835,-22,0,0 +2013,10,29,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-4,0,1420,-7,0,0 +2013,10,31,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1430,14,0,1555,-1,0,0 +2013,6,18,2,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,0,0,531,-1,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1105,-5,0,1358,-19,0,0 +2013,10,19,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1230,-4,0,1545,-8,0,0 +2013,4,22,1,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,42,1,1620,43,1,0 +2013,8,4,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,1043,-20,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,16,1,2300,0,0,0 +2013,7,10,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,2000,20,1,2115,12,0,0 +2013,8,16,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,23,20,1,601,5,0,0 +2013,5,16,4,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1355,-7,0,1535,-19,0,0 +2013,9,15,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,-4,0,1340,-14,0,0 +2013,6,23,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,-2,0,1643,-24,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1620,3,0,1936,9,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1445,-5,0,1614,-9,0,0 +2013,8,1,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1758,4,0,2059,15,1,0 +2013,4,4,4,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,800,-6,0,945,-13,0,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1012,0,0,1243,4,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1540,9,0,2040,14,0,0 +2013,5,27,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-2,0,1411,-22,0,0 +2013,4,13,6,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1227,-7,0,1514,-11,0,0 +2013,6,27,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-3,0,2049,28,1,0 +2013,8,5,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,0,0,1140,-6,0,0 +2013,4,6,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-4,0,1115,-19,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-4,0,1737,27,1,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,942,16,1,1550,14,0,0 +2013,5,1,3,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1720,-1,0,1850,-9,0,0 +2013,9,7,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-2,0,1855,-18,0,0 +2013,5,18,6,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1050,29,1,1258,21,1,0 +2013,6,8,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1534,0,0,1728,-26,0,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1447,-7,0,1600,-13,0,0 +2013,6,25,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,-4,0,700,47,1,0 +2013,8,5,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,745,-7,0,1014,-18,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1200,-1,0,1346,-10,0,0 +2013,10,7,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,83,1,1649,70,1,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,44,1,2334,48,1,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1305,27,1,1410,15,1,0 +2013,6,13,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-5,0,1733,-2,0,0 +2013,7,3,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-4,0,1408,-9,0,0 +2013,7,22,1,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,-3,0,1415,-10,0,0 +2013,10,19,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1435,3,0,1750,-1,0,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1423,22,1,1613,15,1,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,805,-2,0,1020,-17,0,0 +2013,7,15,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,16,1,2044,4,0,0 +2013,9,20,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1505,28,1,1828,15,1,0 +2013,9,1,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,1,0,1229,-8,0,0 +2013,5,7,2,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1313,-4,0,2105,8,0,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,3,0,1610,-5,0,0 +2013,7,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,-4,0,955,-13,0,0 +2013,4,8,1,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-7,0,1515,-14,0,0 +2013,4,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1334,-5,0,1425,0,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,-2,0,2328,-9,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,-1,0,1817,-16,0,0 +2013,7,26,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,-10,0,2003,-5,0,0 +2013,6,10,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1700,-2,0,1822,-6,0,0 +2013,6,11,2,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-9,0,2021,-23,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1810,17,1,1948,9,0,0 +2013,7,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1505,5,0,1755,14,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1630,0,0,2205,-18,0,0 +2013,6,28,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1855,14,0,2116,22,1,0 +2013,5,30,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1345,-5,0,1745,-11,0,0 +2013,6,12,3,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,5,0,1810,3,0,0 +2013,6,21,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-9,0,1254,-13,0,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1915,0,0,2040,-1,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1505,-3,0,1733,-21,0,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,-4,0,2107,-9,0,0 +2013,6,11,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-1,0,1640,4,0,0 +2013,4,10,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,-1,0,1205,-10,0,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2200,-4,0,2305,-4,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1355,-3,0,1500,-12,0,0 +2013,7,4,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,930,-4,0,0 +2013,8,5,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-5,0,1508,2,0,0 +2013,8,26,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1310,-8,0,1432,-7,0,0 +2013,8,6,2,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,1,0,754,17,1,0 +2013,7,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-6,0,1357,-2,0,0 +2013,4,1,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1115,1,0,1341,5,0,0 +2013,6,8,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1409,-7,0,1517,-20,0,0 +2013,7,2,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,-5,0,2220,25,1,0 +2013,5,22,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1544,69,1,2000,68,1,0 +2013,10,11,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-1,0,1311,-27,0,0 +2013,5,5,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1633,-5,0,1926,5,0,0 +2013,8,2,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-3,0,747,5,0,0 +2013,6,3,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,-6,0,1258,12,0,0 +2013,5,11,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,1245,1,0,0 +2013,9,12,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,108,1,2031,106,1,0 +2013,10,13,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1741,8,0,2017,11,0,0 +2013,10,4,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,933,-11,0,1230,-13,0,0 +2013,10,26,6,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1055,4,0,1655,8,0,0 +2013,8,4,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1137,-4,0,1337,-17,0,0 +2013,4,25,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-5,0,1552,-28,0,0 +2013,10,27,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,918,-3,0,1002,-17,0,0 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,845,-4,0,1042,-6,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1004,4,0,1107,-2,0,0 +2013,6,16,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1430,-3,0,1615,-15,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,59,1,1423,61,1,0 +2013,4,3,3,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1615,-7,0,1859,-31,0,0 +2013,9,16,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1318,-8,0,1757,-21,0,0 +2013,4,1,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-3,0,1320,5,0,0 +2013,4,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,0,0,1510,-14,0,0 +2013,7,8,1,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,6,0,1110,3,0,0 +2013,5,29,3,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2205,0,0,642,22,1,0 +2013,4,26,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1945,37,1,2009,24,1,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1725,13,0,1925,-11,0,0 +2013,6,3,1,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2112,2,0,2330,-8,0,0 +2013,4,26,5,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1315,17,1,1424,14,0,0 +2013,4,2,2,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1600,-3,0,2359,5,0,0 +2013,4,14,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1315,32,1,2122,5,0,0 +2013,4,14,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1812,-8,0,2100,-9,0,0 +2013,10,15,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-2,0,1631,-15,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,820,1,0,1015,0,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,100,1,1204,106,1,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1905,24,1,2355,30,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2030,-4,0,2146,-6,0,0 +2013,8,21,3,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-12,0,1024,-9,0,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,14,0,806,9,0,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1809,26,1,1955,22,1,0 +2013,8,27,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1330,-7,0,1435,-22,0,0 +2013,10,11,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,36,1,2005,25,1,0 +2013,7,12,5,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1642,-8,0,1907,5,0,0 +2013,5,21,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1518,10,0,1653,4,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1215,10,0,1319,7,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1240,0,0,1445,1,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1843,0,0,2159,-11,0,0 +2013,6,21,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-3,0,853,-1,0,0 +2013,7,16,2,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,735,-3,0,1005,-44,0,0 +2013,5,4,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1325,0,0,1425,-36,0,0 +2013,10,21,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,3,0,1738,-9,0,0 +2013,10,16,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,855,5,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-2,0,1212,-15,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,549,6,0,913,9,0,0 +2013,7,26,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-11,0,1405,0,0,0 +2013,9,25,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,6,0,1015,1,0,0 +2013,8,24,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-9,0,1451,-6,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1425,8,0,1520,13,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1825,-1,0,2019,6,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,556,5,0,900,-3,0,0 +2013,9,30,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-4,0,1223,-7,0,0 +2013,9,2,1,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,925,0,0,1115,-1,0,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1630,4,0,1806,3,0,0 +2013,9,20,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,-7,0,2030,-4,0,0 +2013,8,30,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,10,0,901,12,0,0 +2013,4,29,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-6,0,1005,-17,0,0 +2013,9,13,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-2,0,1704,-5,0,0 +2013,7,18,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,915,16,1,0 +2013,8,7,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-6,0,915,9,0,0 +2013,7,19,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-2,0,1830,-10,0,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1620,10,0,2155,0,0,0 +2013,4,17,3,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,1915,10,0,2015,5,0,0 +2013,5,12,7,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1101,-10,0,1257,4,0,0 +2013,7,12,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,535,-6,0,720,-17,0,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,805,-3,0,1635,-15,0,0 +2013,10,9,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1810,-2,0,2104,4,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,-9,0,2320,-16,0,0 +2013,4,5,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1325,73,1,1445,56,1,0 +2013,4,19,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2139,21,1,600,-6,0,0 +2013,9,12,4,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,72,1,1701,60,1,0 +2013,7,27,6,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1550,14,0,1850,31,1,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,0,0,1355,2,0,0 +2013,5,15,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1113,-3,0,1437,-9,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,625,3,0,750,-3,0,0 +2013,8,16,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,15,1,1215,3,0,0 +2013,10,21,1,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,610,-5,0,724,-10,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1435,0,0,1555,-14,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1750,15,1,2055,7,0,0 +2013,9,20,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2320,-4,0,828,-16,0,0 +2013,5,19,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-6,0,1011,-7,0,0 +2013,9,7,6,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-4,0,900,-18,0,0 +2013,9,3,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,725,-1,0,950,-2,0,0 +2013,5,22,3,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,-3,0,1425,2,0,0 +2013,8,14,3,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-8,0,1658,-24,0,0 +2013,6,24,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,-1,0,725,-8,0,0 +2013,6,2,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,157,1,1837,183,1,0 +2013,9,11,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1925,80,1,2110,73,1,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-5,0,1247,-7,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-1,0,1618,-19,0,0 +2013,9,15,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-2,0,1200,-6,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,1,0,2110,13,0,0 +2013,10,8,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,940,28,1,945,25,1,0 +2013,5,20,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,2030,188,1,2210,159,1,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,-4,0,1843,-12,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-4,0,2220,3,0,0 +2013,8,30,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,650,0,0,1015,-7,0,0 +2013,4,25,4,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1707,-6,0,1850,-7,0,0 +2013,9,29,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-6,0,1555,-9,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1900,51,1,2100,68,1,0 +2013,9,25,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2257,-9,0,19,-14,0,0 +2013,5,13,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-10,0,543,-5,0,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,4,0,2155,7,0,0 +2013,8,4,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1450,-4,0,1609,-13,0,0 +2013,8,11,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1025,-5,0,1301,-5,0,0 +2013,10,4,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-4,0,1322,-15,0,0 +2013,6,10,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1857,47,1,2122,38,1,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,0,0,1917,-1,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,-1,0,1225,11,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2105,-1,0,2226,33,1,0 +2013,8,16,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,-7,0,1633,-23,0,0 +2013,4,11,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,711,7,0,1100,-13,0,0 +2013,10,21,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,3,0,910,-6,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1806,159,1,2118,178,1,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1800,21,1,2005,5,0,0 +2013,10,6,7,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1430,0,0,1630,-8,0,0 +2013,6,7,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,-3,0,1155,-10,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,155,1,1755,127,1,0 +2013,9,22,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1255,-8,0,1505,-9,0,0 +2013,10,3,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,-4,0,1320,-11,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,3,0,1150,-1,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,-1,0,1630,-8,0,0 +2013,4,11,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1602,2,0,1800,-2,0,0 +2013,4,8,1,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,705,1,0,955,-3,0,0 +2013,5,10,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-12,0,659,-15,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,800,-1,0,1235,30,1,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1650,0,0,1954,-8,0,0 +2013,5,27,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,900,-3,0,1024,-13,0,0 +2013,4,14,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1428,49,1,1750,47,1,0 +2013,5,26,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-2,0,1020,-22,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,-3,0,735,-5,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1951,43,1,2129,31,1,0 +2013,4,25,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,605,6,0,730,1,0,0 +2013,4,9,2,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1510,4,0,655,9,0,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,8,0,1605,1,0,0 +2013,10,1,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-5,0,1950,-15,0,0 +2013,9,17,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-10,0,1409,-2,0,0 +2013,6,4,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1716,-10,0,1824,-32,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-4,0,924,-6,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,810,6,0,925,0,0,0 +2013,5,9,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1540,-2,0,1655,-2,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2116,-4,0,2246,-24,0,0 +2013,4,30,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1310,0,0,1439,-2,0,0 +2013,10,3,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1810,5,0,1900,-1,0,0 +2013,4,28,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,-10,0,932,-17,0,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1202,-2,0,1548,-28,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1001,11,0,1217,-16,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1427,0,0,1623,6,0,0 +2013,7,30,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,600,5,0,711,8,0,0 +2013,4,2,2,EV,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,822,-5,0,1124,-1,0,0 +2013,6,8,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1130,-3,0,1428,-3,0,0 +2013,6,24,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-3,0,1918,6,0,0 +2013,5,2,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1500,29,1,1807,34,1,0 +2013,8,9,5,OO,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-13,0,1748,-12,0,0 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1135,57,1,1451,129,1,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1520,6,0,1800,-5,0,0 +2013,8,9,5,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,-3,0,1645,-7,0,0 +2013,6,4,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,-10,0,1806,6,0,0 +2013,8,9,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1140,11,0,1428,1,0,0 +2013,7,17,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,11,0,1815,-11,0,0 +2013,4,27,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,905,-4,0,1100,-9,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,-1,0,1720,-8,0,0 +2013,7,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1334,6,0,1432,5,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1450,6,0,1604,-15,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,614,-3,0,746,-9,0,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1210,16,1,1300,10,0,0 +2013,5,1,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,167,1,1232,169,1,0 +2013,4,15,1,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,2040,72,1,2359,147,1,0 +2013,8,11,7,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,17,1,1330,6,0,0 +2013,7,1,1,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,815,-3,0,1000,-15,0,0 +2013,9,3,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-8,0,901,-32,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1333,-7,0,1539,-22,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,-4,0,1320,2,0,0 +2013,6,2,7,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,635,-7,0,930,-16,0,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1005,63,1,1830,51,1,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,926,-2,0,1119,-17,0,0 +2013,4,26,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-2,0,902,21,1,0 +2013,5,16,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,8,0,1810,2,0,0 +2013,5,24,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,1,0,735,-5,0,0 +2013,6,6,4,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,2135,2,0,2344,-13,0,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1940,28,1,2245,15,1,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1620,0,0,1909,-5,0,0 +2013,8,10,6,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1015,154,1,1313,132,1,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1415,0,0,1630,-1,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1640,63,1,1825,48,1,0 +2013,8,21,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-3,0,1846,-23,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1955,32,1,2215,8,0,0 +2013,6,26,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,39,1,530,51,1,0 +2013,10,22,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1300,5,0,1420,2,0,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1410,35,1,1525,28,1,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,550,-6,0,845,-24,0,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1536,55,1,1654,50,1,0 +2013,10,3,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-10,0,652,-14,0,0 +2013,6,19,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,-3,0,1229,3,0,0 +2013,9,28,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,905,3,0,1348,-11,0,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,0,0,1830,-8,0,0 +2013,4,27,6,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,833,-3,0,1109,0,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1810,-7,0,1946,-12,0,0 +2013,5,4,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,800,-5,0,930,-18,0,0 +2013,8,18,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1208,-1,0,1525,-18,0,0 +2013,4,14,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1620,-4,0,1845,6,0,0 +2013,9,4,3,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1114,-6,0,1346,-14,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,72,1,2300,57,1,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-3,0,1520,-12,0,0 +2013,10,27,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1115,209,1,1230,202,1,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1010,9,0,1125,1,0,0 +2013,9,19,4,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,925,-2,0,1048,-2,0,0 +2013,9,27,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1355,14,0,1510,5,0,0 +2013,4,6,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,929,-1,0,1040,0,0,0 +2013,8,8,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,17,1,1533,39,1,0 +2013,7,25,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-5,0,1213,-10,0,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2200,-6,0,5,-12,0,0 +2013,5,23,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,945,-8,0,1240,3,0,0 +2013,9,28,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,830,-2,0,920,-5,0,0 +2013,5,29,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-3,0,1028,-14,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1749,1,0,1911,6,0,0 +2013,6,11,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,6,0,850,1,0,0 +2013,8,3,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,1,0,1446,-16,0,0 +2013,6,2,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1914,322,1,2121,302,1,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,-2,0,2329,0,0,0 +2013,10,4,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,727,-6,0,1048,-13,0,0 +2013,5,4,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,720,-7,0,940,-9,0,0 +2013,10,14,1,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,830,-11,0,1125,-25,0,0 +2013,5,18,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-1,0,1411,-11,0,0 +2013,6,9,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1149,-5,0,1328,-20,0,0 +2013,9,9,1,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1359,-9,0,1511,-22,0,0 +2013,5,12,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-2,0,845,2,0,0 +2013,10,25,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,848,-18,0,0 +2013,10,4,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1910,6,0,2020,-2,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-1,0,1811,18,1,0 +2013,6,30,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1510,8,0,1605,1,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,-1,0,1704,-9,0,0 +2013,9,6,5,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,750,-3,0,1635,-12,0,0 +2013,7,5,5,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1337,-4,0,1520,5,0,0 +2013,4,29,1,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1810,2,0,2045,5,0,0 +2013,8,2,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2007,-4,0,2108,-11,0,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,945,-5,0,1205,12,0,0 +2013,6,20,4,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1730,-4,0,2055,-11,0,0 +2013,7,17,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,10,0,1435,-1,0,0 +2013,4,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,845,0,0,1005,0,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,-1,0,1331,0,0,0 +2013,9,12,4,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,610,-1,0,740,11,0,0 +2013,10,24,4,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,90,1,1359,98,1,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1610,5,0,2125,-3,0,0 +2013,6,15,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-2,0,1400,1,0,0 +2013,7,9,2,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,730,-4,0,920,4,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,-2,0,57,-1,0,0 +2013,5,29,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-4,0,1249,-16,0,0 +2013,4,26,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-4,0,1645,-17,0,0 +2013,7,17,3,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,-2,0,1620,-4,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,124,1,2358,116,1,0 +2013,6,18,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1845,18,1,2030,3,0,0 +2013,8,5,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-1,0,1251,-17,0,0 +2013,10,11,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,740,-4,0,1509,-15,0,0 +2013,9,3,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,715,-9,0,749,-26,0,0 +2013,9,26,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-3,0,1630,0,0,0 +2013,9,13,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-4,0,1510,-19,0,0 +2013,5,23,4,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,131,1,2125,118,1,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,0,0,2220,-2,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2042,2,0,2202,-19,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1250,-2,0,1618,-13,0,0 +2013,5,27,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-10,0,1354,-3,0,0 +2013,4,19,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-4,0,1821,-4,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1800,26,1,1905,18,1,0 +2013,7,1,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1443,97,1,1623,95,1,0 +2013,5,5,7,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,545,-6,0,700,-6,0,0 +2013,4,15,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1225,10,0,1325,5,0,0 +2013,5,19,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1243,6,0,1611,13,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2257,-5,0,53,-2,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-4,0,900,-8,0,0 +2013,7,1,1,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1658,68,1,1835,71,1,0 +2013,6,23,7,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1955,-2,0,2130,-19,0,0 +2013,4,7,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,-3,0,2240,-13,0,0 +2013,6,22,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1129,-3,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2155,-1,0,5,8,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1435,4,0,1655,-14,0,0 +2013,5,24,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1748,79,1,2100,90,1,0 +2013,9,6,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1900,1,0,2149,4,0,0 +2013,4,6,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1210,12,0,1425,8,0,0 +2013,8,10,6,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1930,4,0,2142,-1,0,0 +2013,7,1,1,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,-3,0,950,9,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1240,11,0,1345,20,1,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1607,5,0,1720,-1,0,0 +2013,4,18,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-3,0,747,1,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1905,8,0,2059,-16,0,0 +2013,6,11,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-6,0,1225,-16,0,0 +2013,10,30,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,830,-1,0,950,-1,0,0 +2013,5,2,4,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2028,26,1,2150,35,1,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1905,11,0,2120,26,1,0 +2013,7,9,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-1,0,756,-2,0,0 +2013,5,12,7,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2040,-3,0,2353,-11,0,0 +2013,8,14,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-4,0,840,6,0,0 +2013,5,18,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1840,5,0,2123,-4,0,0 +2013,9,24,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,545,-4,0,649,-18,0,0 +2013,5,28,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,-5,0,1330,-13,0,0 +2013,4,1,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,-4,0,1535,-17,0,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,635,-3,0,830,8,0,0 +2013,4,13,6,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1715,0,0,2043,-2,0,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1230,7,0,1445,-1,0,0 +2013,9,11,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1106,-5,0,1945,-2,0,0 +2013,5,5,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,6,0,2020,7,0,0 +2013,7,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,3,0,2010,9,0,0 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,2030,2,0,2325,-2,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,5,0,1751,124,1,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2047,-3,0,2314,9,0,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,-10,0,2104,-44,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,5,0,2121,-2,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1345,25,1,1510,22,1,0 +2013,10,6,7,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,830,-16,0,1019,-17,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1815,48,1,2310,49,1,0 +2013,4,10,3,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1401,0,,1527,0,1,1 +2013,8,31,6,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,1,0,1035,-3,0,0 +2013,7,17,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1045,22,1,1135,16,1,0 +2013,6,5,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,-1,0,735,-8,0,0 +2013,6,23,7,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,655,0,0,910,-33,0,0 +2013,6,2,7,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1413,1,0,1531,10,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1520,8,0,1745,-2,0,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1150,13,0,1410,4,0,0 +2013,5,14,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1012,-12,0,1315,-9,0,0 +2013,4,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1620,-2,0,1935,-11,0,0 +2013,4,8,1,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1921,-9,0,2147,-18,0,0 +2013,6,14,5,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,4,0,1642,-27,0,0 +2013,8,14,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-2,0,2036,-7,0,0 +2013,8,1,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,31,1,2155,35,1,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,953,-2,0,1209,-17,0,0 +2013,10,17,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,952,-3,0,1118,-28,0,0 +2013,8,20,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,7,0,1902,-9,0,0 +2013,9,24,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1925,10,0,2110,-7,0,0 +2013,5,22,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,288,1,726,279,1,0 +2013,6,30,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1555,1,0,1710,-9,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1605,13,0,1745,-5,0,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1549,-5,0,1724,-15,0,0 +2013,9,8,7,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2018,-5,0,2135,-24,0,0 +2013,6,16,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,933,-5,0,1048,-4,0,0 +2013,7,8,1,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1410,128,1,1625,133,1,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1415,-4,0,1633,-13,0,0 +2013,9,4,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1220,-7,0,1415,2,0,0 +2013,5,27,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1202,-8,0,1500,-18,0,0 +2013,8,7,3,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1711,2,0,1827,2,0,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2243,0,0,720,-1,0,0 +2013,9,4,3,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1120,80,1,1230,87,1,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1220,40,1,1325,31,1,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1020,-2,0,1105,2,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-1,0,2128,17,1,0 +2013,9,5,4,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,750,-5,0,947,-17,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,654,0,0,825,5,0,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,-7,0,737,-15,0,0 +2013,8,28,3,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1700,27,1,2000,41,1,0 +2013,5,18,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-2,0,857,-18,0,0 +2013,5,3,5,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1940,35,1,2110,22,1,0 +2013,9,4,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1920,8,0,2200,1,0,0 +2013,9,7,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-6,0,1635,-27,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1840,52,1,2110,39,1,0 +2013,5,21,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1430,39,1,1555,30,1,0 +2013,10,13,7,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,-3,0,1638,0,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,740,-2,0,1205,0,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1355,23,1,1728,-1,0,0 +2013,9,9,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1541,-2,0,1819,-37,0,0 +2013,8,19,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1657,-4,0,1919,-5,0,0 +2013,9,21,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1715,23,1,1820,16,1,0 +2013,9,11,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,825,4,0,940,1,0,0 +2013,7,6,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-3,0,1729,-13,0,0 +2013,6,13,4,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1120,2,0,1711,11,0,0 +2013,8,22,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-8,0,1330,-14,0,0 +2013,4,5,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,3,0,1650,-18,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,735,-6,0,1205,-29,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,-1,0,1757,-10,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1715,-4,0,1839,-6,0,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,13796,Metropolitan Oakland International,Oakland,CA,1942,71,1,2308,53,1,0 +2013,5,30,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1350,-7,0,1620,-21,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,825,-2,0,1115,-14,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,-3,0,1617,-5,0,0 +2013,8,2,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-6,0,1554,4,0,0 +2013,7,23,2,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2100,-9,0,2325,-3,0,0 +2013,7,28,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1415,16,1,1540,6,0,0 +2013,7,8,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-3,0,1017,10,0,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-3,0,853,-10,0,0 +2013,4,4,4,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1236,-9,0,1529,0,0,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1240,-2,0,1405,-14,0,0 +2013,10,3,4,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,745,-3,0,1021,-12,0,0 +2013,5,30,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,831,-10,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,12,0,930,5,0,0 +2013,6,12,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1030,13,0,1123,12,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,820,-1,0,930,-12,0,0 +2013,5,3,5,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1607,98,1,1758,74,1,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1945,0,0,2105,-14,0,0 +2013,6,4,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,935,-11,0,1148,-9,0,0 +2013,5,20,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,-3,0,2227,-6,0,0 +2013,7,28,7,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,17,1,930,11,0,0 +2013,9,10,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1240,-4,0,1449,-16,0,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1225,48,1,1510,66,1,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1346,-4,0,1516,-2,0,0 +2013,7,12,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,65,1,2107,65,1,0 +2013,6,28,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,10,0,1545,19,1,0 +2013,9,21,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,19,1,1045,6,0,0 +2013,8,1,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,959,-4,0,1255,-17,0,0 +2013,6,15,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,705,-5,0,825,-10,0,0 +2013,9,13,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-5,0,1201,-5,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1755,1,0,2010,-7,0,0 +2013,8,23,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,24,1,1830,23,1,0 +2013,10,27,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,940,0,0,1229,-5,0,0 +2013,9,22,7,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1830,25,1,2147,9,0,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1355,0,0,1645,-13,0,0 +2013,5,14,2,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1935,-6,0,2121,-43,0,0 +2013,5,30,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1235,17,1,1355,9,0,0 +2013,6,14,5,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-2,0,1659,18,1,0 +2013,8,28,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-4,0,841,-6,0,0 +2013,6,13,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1250,54,1,1530,45,1,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2120,0,,2315,0,1,1 +2013,10,5,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,650,0,,929,0,1,1 +2013,9,8,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,0,0,2020,-3,0,0 +2013,9,16,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1551,-6,0,2000,-27,0,0 +2013,9,18,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,13,0,1904,12,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2210,-5,0,1,-7,0,0 +2013,6,16,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1849,4,0,2030,38,1,0 +2013,9,21,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,14,0,1530,16,1,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,0,0,1600,0,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-4,0,2219,-9,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1124,-2,0,1218,-12,0,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,22,1,1305,18,1,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1535,16,1,1730,-1,0,0 +2013,7,1,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,740,-1,0,840,-5,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,920,-3,0,1110,-10,0,0 +2013,6,17,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1915,22,1,2205,15,1,0 +2013,8,7,3,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,-8,0,1041,10,0,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1755,8,0,2114,24,1,0 +2013,5,11,6,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1405,13,0,1515,-7,0,0 +2013,5,5,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1355,8,0,2000,4,0,0 +2013,9,11,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,800,-9,0,900,-34,0,0 +2013,10,12,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,-1,0,1900,-23,0,0 +2013,5,15,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1811,17,1,1936,61,1,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1810,-4,0,1944,-13,0,0 +2013,6,9,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2330,-8,0,844,-13,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1800,-1,0,2030,-21,0,0 +2013,7,12,5,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,942,51,1,1134,44,1,0 +2013,5,15,3,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,905,-4,0,1045,-14,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1235,129,1,1519,129,1,0 +2013,9,6,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,916,-5,0,1126,-11,0,0 +2013,9,25,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-5,0,1520,-11,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1605,-2,0,1817,-22,0,0 +2013,5,24,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,728,-3,0,938,2,0,0 +2013,7,26,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1200,-2,0,0 +2013,10,13,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-13,0,1325,10,0,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1920,6,0,2201,-19,0,0 +2013,10,27,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1300,-6,0,1651,-22,0,0 +2013,5,17,5,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,9,0,1320,-8,0,0 +2013,4,4,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-9,0,1250,-14,0,0 +2013,10,12,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1210,4,0,1325,-4,0,0 +2013,7,4,4,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1435,1,0,1750,-3,0,0 +2013,9,12,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1116,-3,0,1300,-8,0,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1455,2,0,1650,-7,0,0 +2013,5,13,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1103,-7,0,1209,-7,0,0 +2013,9,11,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2055,9,0,2220,8,0,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2210,-4,0,45,-25,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,705,1,0,1140,3,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1405,1,0,1643,-13,0,0 +2013,7,17,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2203,7,0,2314,7,0,0 +2013,7,20,6,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,730,3,0,905,0,0,0 +2013,5,20,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1836,-5,0,2015,-27,0,0 +2013,6,23,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,11,0,1905,-2,0,0 +2013,7,25,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1310,25,1,1615,15,1,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-3,0,1025,-2,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1400,15,1,1655,9,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,715,0,0,925,-14,0,0 +2013,4,17,3,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1150,-6,0,1251,1,0,0 +2013,7,24,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2005,4,0,2149,-10,0,0 +2013,9,19,4,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1335,34,1,1525,13,0,0 +2013,10,22,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,1,0,1530,-8,0,0 +2013,6,15,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-1,0,940,-6,0,0 +2013,10,28,1,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,805,-2,0,1031,6,0,0 +2013,9,25,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,615,-6,0,725,-19,0,0 +2013,5,28,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,12,0,1610,1,0,0 +2013,5,7,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1855,-9,0,2100,1,0,0 +2013,10,3,4,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1440,7,0,2315,6,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1915,2,0,2023,52,1,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1705,25,1,1855,16,1,0 +2013,9,27,5,9E,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,655,-11,0,824,-4,0,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,1,0,2325,-4,0,0 +2013,5,5,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,2,0,1820,-24,0,0 +2013,10,26,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,852,-4,0,1130,-16,0,0 +2013,7,14,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-9,0,1553,-7,0,0 +2013,7,19,5,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1951,261,1,2142,230,1,0 +2013,7,2,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1621,2,0,1820,-7,0,0 +2013,8,13,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1505,46,1,1835,31,1,0 +2013,4,3,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-5,0,1207,-11,0,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2236,-1,0,2358,-13,0,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,635,5,0,1230,-24,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,-1,0,1442,-13,0,0 +2013,6,8,6,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,-5,0,1445,9,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,645,-1,0,810,-9,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-2,0,1033,-10,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1320,23,1,1440,11,0,0 +2013,4,29,1,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,52,1,2210,48,1,0 +2013,9,28,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1745,-10,0,1820,-8,0,0 +2013,4,10,3,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1005,2,0,1325,23,1,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1200,6,0,1355,-11,0,0 +2013,6,28,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,48,1,1210,57,1,0 +2013,4,28,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,617,-4,0,750,-11,0,0 +2013,8,30,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1005,-5,0,1116,-18,0,0 +2013,8,18,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1740,37,1,1855,28,1,0 +2013,4,23,2,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,11,0,1950,32,1,0 +2013,9,2,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1805,6,0,0 +2013,10,21,1,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1311,0,0,2105,-21,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1125,9,0,1312,-1,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-5,0,1344,-3,0,0 +2013,6,7,5,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1512,18,1,1624,16,1,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1756,24,1,1916,28,1,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1257,-7,0,1703,-8,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2145,34,1,2359,33,1,0 +2013,5,1,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1451,-5,0,1605,-7,0,0 +2013,5,17,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,-3,0,1826,-14,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-3,0,1605,-11,0,0 +2013,4,13,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,-5,0,1905,-15,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1745,24,1,1935,7,0,0 +2013,7,24,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,6,0,1444,2,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-6,0,1131,0,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-10,0,2355,-17,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1340,1,0,1501,24,1,0 +2013,7,6,6,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,700,-1,0,935,1,0,0 +2013,4,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2150,79,1,2305,71,1,0 +2013,7,23,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-8,0,950,-9,0,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,0,0,858,-7,0,0 +2013,10,19,6,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1220,-3,0,1436,-2,0,0 +2013,7,8,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1952,36,1,2252,40,1,0 +2013,5,7,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1757,-5,0,1909,-20,0,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1912,164,1,2115,146,1,0 +2013,10,13,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1050,0,0,1155,-5,0,0 +2013,7,21,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,845,-1,0,1420,-21,0,0 +2013,8,9,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1938,69,1,2059,60,1,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1314,-16,0,0 +2013,6,4,2,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-10,0,2027,-14,0,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2150,-3,0,2245,-4,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1855,29,1,2120,26,1,0 +2013,8,1,4,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1711,81,1,2015,90,1,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1940,0,0,2245,-1,0,0 +2013,10,4,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,-2,0,2110,2,0,0 +2013,5,3,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1155,-9,0,2026,-13,0,0 +2013,7,25,4,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1105,-1,0,1225,9,0,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1645,-2,0,1810,-5,0,0 +2013,7,29,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,1,0,1400,-1,0,0 +2013,6,24,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,600,0,0,700,-9,0,0 +2013,5,2,4,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,16,1,713,20,1,0 +2013,9,29,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1541,-4,0,1835,-5,0,0 +2013,9,1,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2000,-7,0,2214,0,0,0 +2013,5,14,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1707,-6,0,1842,-16,0,0 +2013,8,13,2,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1523,2,0,1818,-16,0,0 +2013,8,28,3,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-5,0,1238,-1,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,29,1,2350,25,1,0 +2013,9,1,7,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1640,-15,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1640,-4,0,1833,-35,0,0 +2013,7,21,7,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1711,-9,0,1841,-3,0,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1455,-1,0,1738,-12,0,0 +2013,5,30,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-3,0,1524,-7,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1306,-4,0,1436,-9,0,0 +2013,9,5,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,-7,0,902,5,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,63,1,2235,47,1,0 +2013,6,13,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1239,12,0,1338,24,1,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,13,0,1310,3,0,0 +2013,7,17,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,51,1,2103,53,1,0 +2013,7,10,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-3,0,1925,5,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1557,1,0,1720,-20,0,0 +2013,6,21,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-2,0,1500,-10,0,0 +2013,9,8,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,755,-13,0,1036,-15,0,0 +2013,7,24,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2246,-5,0,29,-10,0,0 +2013,8,27,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1027,-3,0,1359,5,0,0 +2013,9,10,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,736,-1,0,946,-12,0,0 +2013,4,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1705,14,0,1850,-10,0,0 +2013,10,1,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,710,-4,0,1508,-15,0,0 +2013,4,23,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,-7,0,2204,-6,0,0 +2013,10,7,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,91,1,1256,98,1,0 +2013,5,25,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,1,0,1052,-6,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,-6,0,515,8,0,0 +2013,5,12,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1430,7,0,1605,-7,0,0 +2013,8,17,6,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1316,-13,0,1335,-14,0,0 +2013,9,15,7,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1350,0,,1430,0,1,1 +2013,9,19,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,801,-7,0,0 +2013,8,5,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2213,-8,0,2306,-16,0,0 +2013,9,28,6,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-5,0,1240,-8,0,0 +2013,8,10,6,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1719,-2,0,2220,-30,0,0 +2013,4,30,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-2,0,750,-16,0,0 +2013,6,29,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2356,21,1,715,13,0,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1115,-2,0,1235,-5,0,0 +2013,5,31,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,2,0,1905,-4,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1400,24,1,1530,28,1,0 +2013,7,6,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,9,0,1845,40,1,0 +2013,8,14,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,812,-5,0,957,-5,0,0 +2013,4,4,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1830,-6,0,1934,-11,0,0 +2013,8,3,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,5,0,1721,10,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1025,20,1,1155,9,0,0 +2013,7,29,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-6,0,739,-6,0,0 +2013,4,1,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,835,-2,0,1435,7,0,0 +2013,10,19,6,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1210,-3,0,1345,-11,0,0 +2013,4,2,2,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,-1,0,1430,-8,0,0 +2013,6,17,1,EV,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,100,1,1010,98,1,0 +2013,9,12,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1225,34,1,1330,38,1,0 +2013,5,17,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1205,-6,0,1750,-21,0,0 +2013,8,7,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-3,0,851,-17,0,0 +2013,10,23,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1716,-8,0,1953,4,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,7,0,1449,29,1,0 +2013,8,16,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1812,14,0,2131,21,1,0 +2013,8,23,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1640,-8,0,1810,-9,0,0 +2013,6,28,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1312,17,1,1514,50,1,0 +2013,8,3,6,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-9,0,2057,-8,0,0 +2013,10,29,2,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,950,-6,0,1111,10,0,0 +2013,6,5,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,-1,0,1656,-9,0,0 +2013,6,19,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,23,1,1430,22,1,0 +2013,4,12,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,-4,0,2125,40,1,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1504,-3,0,1720,-14,0,0 +2013,8,16,5,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1330,41,1,1444,39,1,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1640,14,0,1740,7,0,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,920,-1,0,1215,18,1,0 +2013,6,10,1,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1425,145,1,2235,139,1,0 +2013,4,17,3,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-2,0,1210,-17,0,0 +2013,7,22,1,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,0,0,1510,-4,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,26,1,920,12,0,0 +2013,4,17,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1235,23,1,1829,48,1,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-4,0,1120,-15,0,0 +2013,7,21,7,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2345,-5,0,244,-17,0,0 +2013,9,12,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-12,0,916,-16,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,22,1,2032,15,1,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,10,0,1623,10,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-2,0,2122,0,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1735,-3,0,1820,-12,0,0 +2013,6,4,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-9,0,1002,-21,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,1,0,928,15,1,0 +2013,6,5,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1721,-5,0,1845,-19,0,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,612,-1,0,725,-5,0,0 +2013,9,17,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1340,-3,0,1459,3,0,0 +2013,4,17,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1213,8,0,1353,-3,0,0 +2013,9,11,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,-11,0,824,5,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1040,2,0,1154,-11,0,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,819,-5,0,1109,-10,0,0 +2013,8,6,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-2,0,1741,2,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,855,5,0,1656,-2,0,0 +2013,9,12,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-3,0,825,-3,0,0 +2013,5,3,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,-7,0,1715,-3,0,0 +2013,7,12,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-4,0,1050,-13,0,0 +2013,6,17,1,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,-1,0,1305,1,0,0 +2013,5,1,3,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,935,3,0,1115,3,0,0 +2013,10,22,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,-2,0,1351,-12,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1635,12,0,1825,0,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,625,-1,0,735,-4,0,0 +2013,5,18,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1700,-3,0,1815,-7,0,0 +2013,7,15,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,86,1,955,86,1,0 +2013,5,26,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1430,-6,0,1630,-3,0,0 +2013,6,12,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1947,39,1,2144,103,1,0 +2013,5,13,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-6,0,2041,-3,0,0 +2013,7,12,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1415,141,1,1550,139,1,0 +2013,7,4,4,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-8,0,1613,-20,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1800,-1,0,2002,-12,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1340,-3,0,1527,-18,0,0 +2013,9,13,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1320,71,1,1626,46,1,0 +2013,6,21,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1830,11,0,1856,24,1,0 +2013,6,17,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,49,1,1135,44,1,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1345,16,1,1510,25,1,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,941,-6,0,1259,-22,0,0 +2013,8,20,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,730,0,0,950,22,1,0 +2013,10,20,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1725,44,1,1910,51,1,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1315,-2,0,1430,-15,0,0 +2013,8,31,6,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,-12,0,1545,-31,0,0 +2013,9,10,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,555,-6,0,753,-3,0,0 +2013,8,9,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,5,0,1500,4,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,6,0,1416,8,0,0 +2013,5,29,3,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1310,97,1,1620,86,1,0 +2013,10,7,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,12,0,714,2,0,0 +2013,8,16,5,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1048,-1,0,1301,-9,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,11,0,1321,4,0,0 +2013,8,15,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-9,0,1746,-10,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,940,-2,0,1329,0,0,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1835,9,0,2010,30,1,0 +2013,8,17,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2204,-1,0,2258,-12,0,0 +2013,8,15,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,12,0,835,8,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1050,-3,0,1240,-16,0,0 +2013,6,18,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-1,0,1213,-8,0,0 +2013,9,13,5,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1725,26,1,1800,23,1,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-3,0,1139,5,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,-5,0,1445,-12,0,0 +2013,10,2,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1302,-2,0,1522,-21,0,0 +2013,5,4,6,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,-7,0,1846,-9,0,0 +2013,7,16,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,737,-15,0,920,-20,0,0 +2013,6,11,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1013,11,0,1340,41,1,0 +2013,9,21,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-6,0,1107,-17,0,0 +2013,4,22,1,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,-2,0,2203,-3,0,0 +2013,6,18,2,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,2,0,2145,-7,0,0 +2013,10,9,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,758,-5,0,907,-23,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,158,1,2050,152,1,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2010,0,0,2150,-14,0,0 +2013,9,24,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1800,0,0,1918,-19,0,0 +2013,4,29,1,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,700,-10,0,838,-1,0,0 +2013,4,11,4,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,13,0,1913,6,0,0 +2013,5,17,5,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1755,1,0,1915,-4,0,0 +2013,8,4,7,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,625,0,0,1230,-14,0,0 +2013,8,24,6,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,8,0,2213,-21,0,0 +2013,10,13,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,50,-7,0,620,-38,0,0 +2013,6,1,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,810,1,0,1105,-6,0,0 +2013,7,31,3,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-2,0,1857,-11,0,0 +2013,4,4,4,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2259,-2,0,609,-1,0,0 +2013,10,23,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-14,0,1007,-34,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,-3,0,1830,-9,0,0 +2013,9,19,4,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1655,55,1,1839,60,1,0 +2013,10,31,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,-8,0,1246,1,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-5,0,1319,-8,0,0 +2013,6,16,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,728,96,1,900,79,1,0 +2013,5,4,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1315,64,1,1435,55,1,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,855,-7,0,1528,-32,0,0 +2013,5,5,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,730,-2,0,1525,-3,0,0 +2013,10,20,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1755,2,0,1934,-16,0,0 +2013,6,19,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,939,26,1,1105,20,1,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,7,0,1109,0,0,0 +2013,4,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1750,11,0,1903,32,1,0 +2013,9,13,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,1110,-3,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1155,38,1,1438,30,1,0 +2013,6,19,3,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1415,6,0,1530,-7,0,0 +2013,10,18,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,830,-4,0,1021,-10,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1240,8,0,1458,12,0,0 +2013,8,30,5,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1827,272,1,1900,269,1,0 +2013,4,20,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1957,11,0,2110,-2,0,0 +2013,9,19,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-3,0,1847,-1,0,0 +2013,4,1,1,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,600,-7,0,705,-25,0,0 +2013,4,9,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,641,-11,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1840,36,1,1945,28,1,0 +2013,4,3,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-5,0,1540,-14,0,0 +2013,6,28,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,1,0,805,2,0,0 +2013,10,26,6,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,0,0,915,2,0,0 +2013,5,22,3,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,4,0,1812,-15,0,0 +2013,7,25,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1803,30,1,2016,26,1,0 +2013,8,12,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,-8,0,1658,-2,0,0 +2013,6,30,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,944,1,0,1230,-20,0,0 +2013,4,28,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,10,0,1718,29,1,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,6,0,2311,-3,0,0 +2013,7,9,2,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,-3,0,1357,-9,0,0 +2013,8,13,2,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,820,5,0,1255,-15,0,0 +2013,7,22,1,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,-2,0,1110,-7,0,0 +2013,7,31,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2202,-8,0,2309,7,0,0 +2013,9,9,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-3,0,1024,-3,0,0 +2013,5,29,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,835,0,,945,0,1,1 +2013,6,10,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,45,1,1201,44,1,0 +2013,6,1,6,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-5,0,1110,-10,0,0 +2013,7,5,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,-7,0,700,-13,0,0 +2013,6,6,4,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1629,0,0,1939,-17,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,32,1,1832,24,1,0 +2013,7,20,6,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1855,34,1,2008,34,1,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1735,14,0,45,13,0,0 +2013,5,1,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,81,1,1820,77,1,0 +2013,4,24,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,840,-12,0,0 +2013,5,17,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,31,1,2140,13,0,0 +2013,9,4,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1159,-4,0,1344,-1,0,0 +2013,4,2,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1635,-9,0,1655,-15,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2155,22,1,2315,11,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1552,3,0,1900,-22,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,645,-12,0,1255,-20,0,0 +2013,10,1,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1111,-4,0,1353,-4,0,0 +2013,7,19,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,950,-4,0,1117,-15,0,0 +2013,5,11,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1300,80,1,1411,70,1,0 +2013,9,15,7,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,3,0,1221,5,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1410,-2,0,1505,-7,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2015,26,1,2213,13,0,0 +2013,9,21,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1343,2,0,1646,10,0,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,736,-5,0,854,-8,0,0 +2013,10,5,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,-3,0,1644,-5,0,0 +2013,8,23,5,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1505,18,1,1810,37,1,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,12,0,1100,4,0,0 +2013,4,9,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,-1,0,1635,-12,0,0 +2013,10,31,4,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-5,0,1005,-8,0,0 +2013,9,6,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,22,1,1320,20,1,0 +2013,7,16,2,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,1,0,1425,2,0,0 +2013,9,13,5,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,858,-13,0,1250,-19,0,0 +2013,9,6,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-6,0,1617,-2,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,3,0,1242,-14,0,0 +2013,9,5,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1151,-10,0,1400,-31,0,0 +2013,7,26,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,939,4,0,1028,9,0,0 +2013,8,11,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,745,0,,830,0,1,1 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,630,-2,0,755,-16,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1200,93,1,1346,84,1,0 +2013,4,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1315,1,0,1540,0,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1442,25,1,1615,17,1,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,2000,-7,0,2335,1,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1020,-1,0,1310,-9,0,0 +2013,6,28,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1221,-10,0,1800,-9,0,0 +2013,7,21,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1330,-4,0,1458,-17,0,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-1,0,500,-7,0,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,4,0,2222,4,0,0 +2013,6,2,7,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1921,14,0,2142,7,0,0 +2013,7,29,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1018,-17,0,0 +2013,9,27,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-5,0,1425,-28,0,0 +2013,9,27,5,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1730,7,0,1950,38,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1115,-2,0,1305,-9,0,0 +2013,5,15,3,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1600,-7,0,1924,-8,0,0 +2013,4,29,1,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2100,3,0,532,1,0,0 +2013,10,5,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-10,0,1532,-1,0,0 +2013,5,30,4,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1000,-2,0,1715,-4,0,0 +2013,8,26,1,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,-3,0,1110,-25,0,0 +2013,5,2,4,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2015,36,1,2255,33,1,0 +2013,7,23,2,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1034,-3,0,1310,-10,0,0 +2013,8,28,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1430,-1,0,1629,7,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1208,-3,0,1342,-12,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1745,32,1,30,29,1,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,24,1,1130,7,0,0 +2013,7,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2104,13,0,2359,-2,0,0 +2013,7,15,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,160,1,1555,167,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1454,0,0,1606,-6,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1035,-2,0,1218,-10,0,0 +2013,5,3,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1715,-3,0,1826,-1,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2130,0,0,2340,-15,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,0,0,2328,-8,0,0 +2013,4,24,3,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1330,4,0,1550,34,1,0 +2013,6,26,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,1,0,805,-3,0,0 +2013,6,10,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,2013,5,0,2227,-5,0,0 +2013,5,28,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1013,-9,0,1159,-24,0,0 +2013,9,30,1,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1821,-10,0,2023,-13,0,0 +2013,7,3,3,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1055,24,1,1335,14,0,0 +2013,9,21,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1020,-2,0,1235,-20,0,0 +2013,6,15,6,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,54,1,1730,41,1,0 +2013,8,6,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1140,-3,0,1350,-9,0,0 +2013,7,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,0,0,1850,-11,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2100,-7,0,2305,55,1,0 +2013,5,8,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,601,-1,0,1001,-13,0,0 +2013,8,6,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-5,0,2030,-1,0,0 +2013,5,24,5,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1452,69,1,1709,77,1,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1620,69,1,2215,123,1,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,-1,0,1331,-10,0,0 +2013,7,22,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,-4,0,815,-7,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1110,-4,0,1227,-25,0,0 +2013,10,7,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,940,-5,0,1025,-12,0,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,915,865,1,1644,852,1,0 +2013,10,7,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,5,0,1345,-4,0,0 +2013,7,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,951,-4,0,1305,-9,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-2,0,1320,-2,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1340,4,0,1430,-3,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1549,11,0,1803,0,0,0 +2013,7,2,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,51,1,2050,50,1,0 +2013,7,5,5,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-4,0,1425,8,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,9,0,1024,0,0,0 +2013,4,8,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,-4,0,2127,-19,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,3,0,2125,0,0,0 +2013,8,15,4,OO,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1612,13,0,1725,8,0,0 +2013,9,27,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1152,-1,0,1248,-1,0,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1533,22,1,1859,13,0,0 +2013,8,3,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1103,60,1,1154,66,1,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,1,0,1558,-3,0,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,546,-5,0,907,-8,0,0 +2013,4,26,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,504,-5,0,908,-10,0,0 +2013,5,26,7,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,1,0,1630,4,0,0 +2013,7,5,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1103,-5,0,1637,-19,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1315,-4,0,1610,5,0,0 +2013,5,16,4,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1717,45,1,1814,71,1,0 +2013,8,12,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,12,0,854,0,0,0 +2013,4,22,1,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-12,0,1915,-30,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,1,0,1720,-20,0,0 +2013,4,24,3,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1840,-2,0,2059,-11,0,0 +2013,9,2,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1644,-1,0,1830,-12,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-5,0,940,-13,0,0 +2013,6,30,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,2007,0,0,2153,-18,0,0 +2013,4,16,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1320,0,,1425,0,1,1 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1445,-2,0,1535,-13,0,0 +2013,5,1,3,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1550,7,0,1905,5,0,0 +2013,6,30,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,-1,0,941,-7,0,0 +2013,10,1,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-2,0,1555,-6,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,630,-2,0,1015,6,0,0 +2013,8,16,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,925,0,0,1153,-11,0,0 +2013,6,12,3,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1333,-3,0,1545,-6,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,-1,0,2055,-3,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1335,7,0,1610,-19,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,843,-5,0,1400,-6,0,0 +2013,10,18,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-4,0,846,13,0,0 +2013,6,27,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,13,0,935,1,0,0 +2013,7,16,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1055,-4,0,1220,4,0,0 +2013,7,19,5,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,0,0,1644,-7,0,0 +2013,4,6,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,0,0,343,-4,0,0 +2013,10,30,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,-8,0,2345,-20,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,6,0,1847,-5,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,840,6,0,1120,9,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-3,0,1225,-18,0,0 +2013,8,27,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1719,-4,0,2140,-6,0,0 +2013,10,30,3,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2105,-3,0,2210,-8,0,0 +2013,7,17,3,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-2,0,823,13,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,-1,0,1453,-16,0,0 +2013,6,1,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-5,0,1714,19,1,0 +2013,4,16,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,10,0,1824,3,0,0 +2013,9,14,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1000,0,0,1115,5,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1850,114,1,2015,103,1,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2020,-3,0,2135,2,0,0 +2013,6,12,3,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,-4,0,1848,-11,0,0 +2013,8,3,6,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,923,-1,0,1241,-22,0,0 +2013,9,24,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,605,-5,0,715,-11,0,0 +2013,6,16,7,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1705,2,0,1935,-9,0,0 +2013,4,26,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,610,-1,0,820,12,0,0 +2013,9,22,7,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,800,-1,0,1105,0,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2216,-8,0,2351,-5,0,0 +2013,5,18,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1144,-2,0,1246,-11,0,0 +2013,6,29,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,8,0,2010,7,0,0 +2013,9,4,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2024,3,0,452,-14,0,0 +2013,10,31,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1204,-6,0,1439,13,0,0 +2013,4,25,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1340,-5,0,1445,-4,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2045,-3,0,2210,7,0,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,605,-2,0,900,1,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1555,-2,0,1722,-18,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1635,29,1,1805,27,1,0 +2013,8,25,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-7,0,1040,-26,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,24,1,1019,21,1,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,-2,0,1835,-2,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1032,2,0,1309,-6,0,0 +2013,8,6,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,9,0,1435,5,0,0 +2013,9,27,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,26,1,1545,14,0,0 +2013,9,25,3,EV,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-9,0,1324,-13,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,845,4,0,1025,-12,0,0 +2013,6,17,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,63,1,2121,59,1,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1240,5,0,1935,12,0,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1320,6,0,1900,-3,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1940,3,0,2255,-17,0,0 +2013,10,19,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1324,-7,0,1453,-5,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1909,-8,0,2027,-19,0,0 +2013,7,19,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1315,-5,0,1455,-31,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,5,0,1822,-21,0,0 +2013,8,12,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1359,3,0,1551,22,1,0 +2013,7,2,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1025,64,1,1245,60,1,0 +2013,8,17,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-6,0,1302,-7,0,0 +2013,5,31,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,704,-11,0,0 +2013,9,24,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1810,46,1,1920,25,1,0 +2013,5,25,6,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1930,11,0,2150,-3,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,810,-4,0,833,-18,0,0 +2013,8,4,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,705,3,0,745,-6,0,0 +2013,8,12,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,3,0,2120,-9,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2055,31,1,2227,24,1,0 +2013,6,3,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1205,0,0,1350,-11,0,0 +2013,8,25,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1554,1,0,2110,8,0,0 +2013,6,28,5,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,1345,-1,0,2021,4,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,21,1,2230,25,1,0 +2013,8,28,3,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-5,0,648,-14,0,0 +2013,10,6,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1010,-8,0,1105,-1,0,0 +2013,10,23,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1730,-6,0,1845,-13,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,745,-2,0,1010,-13,0,0 +2013,8,4,7,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-4,0,1300,-22,0,0 +2013,10,18,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,4,0,1805,0,0,0 +2013,6,24,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,70,1,1813,52,1,0 +2013,4,24,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-3,0,1315,0,0,0 +2013,4,26,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-3,0,1650,-11,0,0 +2013,9,16,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1930,-5,0,2159,-14,0,0 +2013,6,5,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,46,1,1435,19,1,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1753,21,1,2033,7,0,0 +2013,9,1,7,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1300,-4,0,1525,-15,0,0 +2013,8,10,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,24,1,2314,26,1,0 +2013,6,10,1,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1210,6,0,1356,13,0,0 +2013,10,27,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-4,0,1307,-19,0,0 +2013,4,14,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1300,30,1,1556,19,1,0 +2013,6,24,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1215,109,1,1326,98,1,0 +2013,7,16,2,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,-2,0,2028,-13,0,0 +2013,10,3,4,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,38,1,1435,28,1,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,845,-1,0,1057,0,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-2,0,1627,-11,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1135,20,1,1430,0,0,0 +2013,9,18,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1350,-6,0,1702,-3,0,0 +2013,9,27,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1359,26,1,1945,-5,0,0 +2013,5,22,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,810,-5,0,936,-21,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,0,0,1155,-1,0,0 +2013,4,25,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,4,0,1935,1,0,0 +2013,10,30,3,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-9,0,1643,16,1,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1010,1,0,1120,10,0,0 +2013,4,2,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1005,-2,0,1110,8,0,0 +2013,8,19,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1107,-10,0,1235,-12,0,0 +2013,8,5,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2145,70,1,18,75,1,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1657,-9,0,1841,-17,0,0 +2013,4,27,6,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1440,-7,0,2305,5,0,0 +2013,10,8,2,EV,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,757,-2,0,857,3,0,0 +2013,9,25,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1240,18,1,1449,4,0,0 +2013,4,16,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,1,0,1510,-12,0,0 +2013,7,18,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2210,-5,0,2358,-34,0,0 +2013,5,9,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1635,15,1,1805,2,0,0 +2013,8,21,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,35,1,1642,32,1,0 +2013,7,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,13,0,1910,11,0,0 +2013,10,29,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1925,-4,0,2115,-5,0,0 +2013,4,17,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-6,0,1235,2,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-1,0,959,17,1,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1005,87,1,1320,65,1,0 +2013,5,21,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,725,-1,0,1022,11,0,0 +2013,8,21,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1105,0,0,1420,-6,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,730,-2,0,928,-7,0,0 +2013,4,30,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,-8,0,2115,-17,0,0 +2013,7,24,3,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,-7,0,1831,-1,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,2000,11,0,2354,-9,0,0 +2013,4,17,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1757,-2,0,1923,-13,0,0 +2013,10,14,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1320,-3,0,1602,-3,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,820,5,0,1335,-2,0,0 +2013,9,27,5,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1335,15,1,1640,17,1,0 +2013,9,23,1,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,915,-21,0,0 +2013,4,15,1,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1130,-4,0,2004,5,0,0 +2013,10,10,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1747,12,0,1934,2,0,0 +2013,5,11,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1452,-1,0,1709,28,1,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1055,3,0,1704,-15,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1845,-1,0,2010,-16,0,0 +2013,4,21,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-2,0,805,-12,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1530,10,0,1635,-3,0,0 +2013,8,18,7,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,600,-9,0,835,-5,0,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,1,0,1525,-18,0,0 +2013,10,17,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1845,-14,0,2138,-41,0,0 +2013,6,20,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,-8,0,1115,-20,0,0 +2013,5,17,5,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-6,0,913,-47,0,0 +2013,10,2,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,915,-11,0,1157,-27,0,0 +2013,8,11,7,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,556,-1,0,707,2,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,825,-1,0,1148,-3,0,0 +2013,4,5,5,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1050,-4,0,1855,-14,0,0 +2013,4,11,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1150,0,0,1315,-4,0,0 +2013,10,9,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,730,-3,0,845,-17,0,0 +2013,9,3,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1104,18,1,1710,28,1,0 +2013,4,10,3,FL,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1728,16,1,2040,31,1,0 +2013,5,26,7,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1323,-1,0,1550,-10,0,0 +2013,6,15,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,734,-3,0,927,-2,0,0 +2013,10,25,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-2,0,740,-1,0,0 +2013,5,22,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,46,1,1741,61,1,0 +2013,9,28,6,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1215,11,0,1410,7,0,0 +2013,5,27,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,1205,-23,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1820,9,0,2059,-22,0,0 +2013,10,23,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,113,1,1610,112,1,0 +2013,4,13,6,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,0,0,1327,-14,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-3,0,1319,-14,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1115,-5,0,1458,-15,0,0 +2013,5,27,1,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1050,-9,0,1821,-12,0,0 +2013,9,14,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,900,6,0,947,8,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1555,0,0,1655,-7,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1333,-3,0,1442,-28,0,0 +2013,6,12,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,0,0,1430,-8,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2231,-1,0,705,-12,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1758,3,0,2018,-34,0,0 +2013,4,5,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1152,24,1,1259,0,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2150,-4,0,2321,-20,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1426,6,0,1530,-2,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,48,1,1745,43,1,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1740,-6,0,2021,-12,0,0 +2013,9,12,4,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-7,0,915,17,1,0 +2013,5,3,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,830,2,0,1100,2,0,0 +2013,9,30,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1000,5,0,1125,4,0,0 +2013,4,3,3,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-6,0,1131,-24,0,0 +2013,10,13,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,905,-4,0,1020,-3,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1150,13,0,1635,9,0,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2007,5,0,2359,-3,0,0 +2013,7,21,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,2,0,1824,0,0,0 +2013,9,20,5,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1545,2,0,1808,7,0,0 +2013,10,16,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,0,0,2100,-5,0,0 +2013,8,2,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1820,0,,1955,0,1,1 +2013,5,8,3,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,2,0,1550,0,0,0 +2013,6,23,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,132,1,1700,117,1,0 +2013,7,2,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1530,157,1,1721,163,1,0 +2013,9,4,3,OO,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1343,-6,0,1415,2,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,2,0,805,-5,0,0 +2013,8,6,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,0,,2145,0,1,1 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,7,0,1115,8,0,0 +2013,5,24,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-8,0,930,-3,0,0 +2013,10,30,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10693,Nashville International,Nashville,TN,755,-2,0,825,-5,0,0 +2013,10,7,1,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,20,1,1920,8,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1455,0,0,1700,1,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,-4,0,2012,-15,0,0 +2013,8,22,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,3,0,2317,15,1,0 +2013,9,12,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1812,45,1,2110,40,1,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,625,0,0,820,9,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,-5,0,2356,-17,0,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-4,0,1310,-3,0,0 +2013,4,27,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,645,-10,0,841,-6,0,0 +2013,7,10,3,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,808,-8,0,1021,-8,0,0 +2013,6,26,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2128,16,1,21,11,0,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1726,10,0,1913,-11,0,0 +2013,5,26,7,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2249,-4,0,706,-3,0,0 +2013,6,14,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2026,48,1,2158,49,1,0 +2013,8,9,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,315,1,1914,321,1,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,50,1,1950,32,1,0 +2013,4,15,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1220,6,0,1700,-14,0,0 +2013,9,8,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1701,-2,0,1836,2,0,0 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-2,0,2310,17,1,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,7,0,2055,3,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1547,-1,0,1725,-12,0,0 +2013,9,14,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,910,-3,0,1100,-3,0,0 +2013,10,16,3,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1915,-5,0,2252,-26,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1755,33,1,2026,-3,0,0 +2013,4,1,1,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2015,11,0,1152,-28,0,0 +2013,4,21,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,12,0,1852,6,0,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,907,-5,0,1003,-23,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-4,0,1832,-14,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2105,24,1,2250,21,1,0 +2013,9,21,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,0,,910,0,1,1 +2013,10,8,2,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1918,-2,0,2137,7,0,0 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1507,12,0,1530,1,0,0 +2013,7,26,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,4,0,1530,6,0,0 +2013,9,20,5,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-9,0,1026,-3,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1502,-1,0,1755,-15,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1320,3,0,1635,-23,0,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,845,-5,0,950,-9,0,0 +2013,4,7,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,655,-4,0,906,-12,0,0 +2013,5,31,5,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,627,13,0,1000,-23,0,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,800,2,0,1310,-19,0,0 +2013,10,26,6,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2150,-11,0,601,-14,0,0 +2013,9,25,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1019,-9,0,1323,5,0,0 +2013,6,6,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,33,1,1801,55,1,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1052,164,1,1650,144,1,0 +2013,7,17,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-1,0,1031,9,0,0 +2013,10,17,4,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,-2,0,732,-11,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1458,0,0,1807,0,0,0 +2013,4,7,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-9,0,1205,-24,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2213,0,0,2306,5,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2005,4,0,2045,-3,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,-2,0,1131,-9,0,0 +2013,9,21,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,20,1,1917,0,0,0 +2013,5,9,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1505,43,1,1630,34,1,0 +2013,7,11,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2345,11,0,505,21,1,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1300,34,1,1446,26,1,0 +2013,5,26,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,-4,0,1724,15,1,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,600,0,0,825,-5,0,0 +2013,7,17,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1420,12,0,1555,3,0,0 +2013,10,23,3,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,-4,0,1915,15,1,0 +2013,5,18,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,-4,0,1905,-22,0,0 +2013,8,13,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,-2,0,1115,-27,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,937,-3,0,0 +2013,10,11,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1555,50,1,1850,48,1,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1815,0,0,2355,-5,0,0 +2013,7,31,3,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,910,-4,0,1125,-7,0,0 +2013,7,22,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,2,0,2102,15,1,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1135,-2,0,1700,-14,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1625,12,0,1730,16,1,0 +2013,4,25,4,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,840,6,0,1000,6,0,0 +2013,4,15,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,635,-8,0,920,-20,0,0 +2013,8,21,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1830,47,1,2015,35,1,0 +2013,4,18,4,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,814,0,0,929,-2,0,0 +2013,7,3,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,0,0,1254,34,1,0 +2013,8,25,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-2,0,2335,-5,0,0 +2013,9,9,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,605,-5,0,804,-12,0,0 +2013,5,28,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-6,0,1327,-3,0,0 +2013,4,30,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,830,-5,0,958,-21,0,0 +2013,9,20,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1035,6,0,1400,5,0,0 +2013,5,27,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1237,-1,0,2108,8,0,0 +2013,8,9,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,815,-7,0,935,-9,0,0 +2013,7,16,2,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,600,-3,0,835,-11,0,0 +2013,4,23,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-6,0,1435,-3,0,0 +2013,5,8,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-5,0,815,-27,0,0 +2013,10,20,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2059,2,0,58,-17,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,-5,0,1255,-3,0,0 +2013,9,28,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1715,60,1,1900,36,1,0 +2013,8,4,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,834,9,0,1119,-5,0,0 +2013,4,8,1,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1955,36,1,2305,24,1,0 +2013,7,11,4,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,64,1,2139,65,1,0 +2013,7,16,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,829,-2,0,1004,-19,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1708,237,1,1932,226,1,0 +2013,9,1,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1600,-4,0,1730,-25,0,0 +2013,5,15,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,3,0,1411,3,0,0 +2013,4,11,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1250,8,0,1555,11,0,0 +2013,9,27,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1216,-3,0,1420,-29,0,0 +2013,8,6,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-5,0,2145,-9,0,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,1,0,805,18,1,0 +2013,6,23,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1640,6,0,2005,0,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,950,-3,0,1159,-33,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1115,-1,0,1805,-6,0,0 +2013,7,26,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1622,40,1,1756,28,1,0 +2013,5,19,7,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1355,10,0,1535,-4,0,0 +2013,5,9,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-11,0,1308,-12,0,0 +2013,5,27,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1040,-2,0,1210,-4,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1345,18,1,1525,16,1,0 +2013,4,19,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1122,-2,0,1310,3,0,0 +2013,8,16,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1140,5,0,1445,-6,0,0 +2013,7,14,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,19,1,902,14,0,0 +2013,7,19,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1050,-3,0,0 +2013,6,3,1,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,800,212,1,1024,195,1,0 +2013,8,13,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1150,-4,0,1441,-4,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1730,67,1,2245,58,1,0 +2013,10,22,2,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2310,6,0,646,-16,0,0 +2013,10,2,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,4,0,930,-4,0,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-5,0,1819,2,0,0 +2013,7,16,2,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,8,0,920,-13,0,0 +2013,9,15,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1446,-7,0,1652,-8,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1239,6,0,1529,10,0,0 +2013,10,18,5,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-3,0,1105,-13,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,0,0,1256,-1,0,0 +2013,8,2,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,-4,0,1808,-16,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1550,0,,1835,0,1,1 +2013,10,10,4,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1759,-4,0,2041,-22,0,0 +2013,9,5,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,5,0,2035,-3,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1127,-2,0,1344,-18,0,0 +2013,6,24,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1848,-3,0,0 +2013,10,11,5,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,1,0,1120,4,0,0 +2013,4,30,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,615,-2,0,725,-13,0,0 +2013,7,3,3,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,-11,0,1843,-7,0,0 +2013,8,28,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,0,0,1850,-3,0,0 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-8,0,1307,15,1,0 +2013,4,1,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1158,-13,0,1440,-16,0,0 +2013,5,29,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1914,-2,0,2025,8,0,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1455,4,0,1630,-5,0,0 +2013,9,3,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,-2,0,1049,-16,0,0 +2013,10,2,3,YV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1028,-11,0,1214,-15,0,0 +2013,4,21,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,17,1,1608,20,1,0 +2013,7,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-5,0,1828,-4,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1140,4,0,1300,7,0,0 +2013,5,29,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,-9,0,2050,-18,0,0 +2013,8,13,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1957,-1,0,2125,4,0,0 +2013,5,23,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,-3,0,2145,21,1,0 +2013,10,22,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1626,-3,0,1942,-19,0,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1845,23,1,1955,20,1,0 +2013,10,23,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,930,-4,0,1035,-9,0,0 +2013,5,23,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1940,37,1,2050,44,1,0 +2013,6,3,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1205,-4,0,1444,16,1,0 +2013,5,3,5,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1405,-1,0,2000,16,1,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,-6,0,1345,-6,0,0 +2013,6,26,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1955,6,0,2229,25,1,0 +2013,7,21,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1728,-5,0,1925,-23,0,0 +2013,10,1,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,1020,-12,0,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,2,0,1615,-12,0,0 +2013,7,7,7,DL,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1950,-11,0,2127,-16,0,0 +2013,8,19,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,8,0,1625,-4,0,0 +2013,5,7,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1515,-2,0,1605,-17,0,0 +2013,6,9,7,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2146,-2,0,604,-27,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,3,0,2222,-10,0,0 +2013,5,7,2,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1135,8,0,1425,-42,0,0 +2013,5,19,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,635,3,0,1230,-13,0,0 +2013,8,21,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-8,0,1830,-19,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,600,-3,0,1050,-14,0,0 +2013,9,26,4,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,5,0,1335,4,0,0 +2013,10,5,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,740,-4,0,905,-13,0,0 +2013,5,23,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,615,41,1,818,13,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2250,1,0,734,-8,0,0 +2013,8,4,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1525,-3,0,1940,0,0,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,904,5,0,1129,-9,0,0 +2013,9,4,3,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-2,0,815,-17,0,0 +2013,9,13,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1030,-1,0,1245,-5,0,0 +2013,5,19,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1127,-4,0,1635,-29,0,0 +2013,7,11,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,27,1,1858,21,1,0 +2013,8,20,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-6,0,735,-11,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,38,1,1740,40,1,0 +2013,6,4,2,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,832,-3,0,1018,-5,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1354,9,0,1630,0,0,0 +2013,4,23,2,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,755,-4,0,0 +2013,10,14,1,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,908,-14,0,0 +2013,10,21,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-7,0,904,-23,0,0 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-1,0,1009,-16,0,0 +2013,4,16,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2040,0,,2140,0,1,1 +2013,9,13,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,637,25,1,835,2,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,45,1,833,54,1,0 +2013,5,15,3,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,935,-2,0,1115,2,0,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1715,60,1,2240,69,1,0 +2013,4,16,2,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,4,0,2015,2,0,0 +2013,8,9,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-5,0,1722,2,0,0 +2013,9,9,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,5,0,1420,-16,0,0 +2013,7,9,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,923,0,0,1105,-20,0,0 +2013,7,31,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1212,-6,0,1500,-18,0,0 +2013,7,13,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,-3,0,1015,3,0,0 +2013,10,14,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,945,-5,0,1034,-14,0,0 +2013,5,22,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,0,0,2035,11,0,0 +2013,9,2,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2245,-2,0,2347,-4,0,0 +2013,7,3,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-5,0,1526,-20,0,0 +2013,5,26,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1835,-4,0,2005,-6,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-3,0,1237,-6,0,0 +2013,4,24,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-2,0,2050,51,1,0 +2013,9,19,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1341,11,0,1420,16,1,0 +2013,4,1,1,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1715,-4,0,2035,-4,0,0 +2013,8,18,7,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,-12,0,1950,-40,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1613,0,0,1810,-14,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,-1,0,1355,3,0,0 +2013,4,16,2,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1705,4,0,1825,-5,0,0 +2013,4,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,630,0,0,1220,8,0,0 +2013,10,27,7,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1810,-4,0,1940,-7,0,0 +2013,6,12,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1510,57,1,1825,49,1,0 +2013,7,1,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1123,8,0,1644,-1,0,0 +2013,5,12,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-1,0,1715,-11,0,0 +2013,5,28,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-9,0,1351,-12,0,0 +2013,4,26,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,703,-7,0,1021,-8,0,0 +2013,4,24,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1235,-6,0,1511,25,1,0 +2013,8,24,6,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,-5,0,1832,-13,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1710,3,0,1844,8,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1317,-1,0,1543,-9,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,0,0,1735,-7,0,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,735,1,0,840,9,0,0 +2013,8,26,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,844,-11,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1459,-5,0,1637,-7,0,0 +2013,5,22,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1729,0,,1920,0,1,1 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,750,5,0,851,9,0,0 +2013,10,16,3,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1626,-7,0,1828,-5,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1630,324,1,1820,315,1,0 +2013,5,15,3,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,1,0,1355,10,0,0 +2013,6,14,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1112,-4,0,1550,-26,0,0 +2013,6,3,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,1,0,1650,-7,0,0 +2013,9,3,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,3,0,2020,-2,0,0 +2013,5,30,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,0,,945,0,1,1 +2013,4,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1625,-3,0,1900,-8,0,0 +2013,4,18,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1912,339,1,2100,315,1,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,9,0,1041,25,1,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1755,7,0,2015,-4,0,0 +2013,10,29,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,39,1,1650,35,1,0 +2013,4,14,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-10,0,850,-10,0,0 +2013,6,13,4,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1200,7,0,1500,-1,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,748,3,0,921,-14,0,0 +2013,4,9,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1805,-7,0,1915,-16,0,0 +2013,5,23,4,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,905,-5,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-4,0,1041,-3,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-3,0,819,-11,0,0 +2013,4,17,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,615,-4,0,732,-15,0,0 +2013,8,2,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1735,1,0,1845,-4,0,0 +2013,6,16,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-8,0,1633,-24,0,0 +2013,7,22,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,3,0,2011,-12,0,0 +2013,5,24,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,0,,2045,0,1,1 +2013,9,16,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,706,-2,0,838,-2,0,0 +2013,7,1,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1735,-3,0,2025,-5,0,0 +2013,9,17,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-5,0,1642,4,0,0 +2013,8,1,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,600,-1,0,850,6,0,0 +2013,4,25,4,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-2,0,1642,-4,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,750,10,0,850,6,0,0 +2013,6,25,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1255,-12,0,1504,-12,0,0 +2013,8,29,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1900,4,0,2210,11,0,0 +2013,8,2,5,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1708,329,1,1912,340,1,0 +2013,9,27,5,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1845,4,0,2134,3,0,0 +2013,6,30,7,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1200,37,1,1520,34,1,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,-4,0,1300,-9,0,0 +2013,9,3,2,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1435,-13,0,2243,-8,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,0,0,1430,-9,0,0 +2013,8,5,1,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1550,-1,0,1715,-19,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,820,-1,0,1045,5,0,0 +2013,4,24,3,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1100,-3,0,1310,-8,0,0 +2013,5,26,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-6,0,1543,-6,0,0 +2013,4,14,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-10,0,852,-1,0,0 +2013,4,13,6,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1912,-5,0,2040,-10,0,0 +2013,5,14,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2035,-4,0,2055,3,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2240,-9,0,21,-13,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,-5,0,1355,-19,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,1,0,1623,-8,0,0 +2013,6,11,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-2,0,936,-8,0,0 +2013,6,17,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-1,0,1015,-16,0,0 +2013,6,11,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,98,1,1326,79,1,0 +2013,4,26,5,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-5,0,1510,9,0,0 +2013,6,10,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1845,77,1,2000,60,1,0 +2013,8,11,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-6,0,1230,-5,0,0 +2013,9,25,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1825,-5,0,1850,-5,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,-5,0,1544,5,0,0 +2013,7,7,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,0,0,2149,-7,0,0 +2013,9,25,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-5,0,1611,2,0,0 +2013,4,22,1,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2210,-5,0,2256,4,0,0 +2013,7,21,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-2,0,1341,-1,0,0 +2013,4,26,5,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,700,-8,0,945,-8,0,0 +2013,4,1,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1145,9,0,1245,17,1,0 +2013,8,2,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1235,4,0,1716,4,0,0 +2013,7,20,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,-5,0,1101,-3,0,0 +2013,10,31,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,0,1403,1,0,0 +2013,6,9,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,0,0,618,5,0,0 +2013,8,20,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,0,0,835,-12,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,0,0,1240,-8,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,650,-1,0,940,-14,0,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,-6,0,2209,-4,0,0 +2013,4,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1740,1,0,1855,-12,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1210,-3,0,1517,-26,0,0 +2013,7,30,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1154,51,1,2000,19,1,0 +2013,5,28,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,15,1,1121,10,0,0 +2013,6,6,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1015,10,0,1125,10,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,915,12,0,1045,-3,0,0 +2013,7,11,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-7,0,2146,-5,0,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-8,0,1313,17,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,2,0,2330,-9,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1028,0,0,1459,-21,0,0 +2013,4,10,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,716,-7,0,818,-12,0,0 +2013,7,2,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1206,-1,0,1454,15,1,0 +2013,10,14,1,9E,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-6,0,1331,-13,0,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,44,1,1100,23,1,0 +2013,10,17,4,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-10,0,1407,-15,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,815,17,1,920,16,1,0 +2013,4,18,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,183,1,1955,179,1,0 +2013,7,29,1,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1905,22,1,2020,8,0,0 +2013,9,26,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,2004,-4,0,2314,12,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1449,95,1,2330,64,1,0 +2013,10,30,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,755,-5,0,915,-7,0,0 +2013,8,11,7,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,0,0,1420,-3,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,33,1,1231,21,1,0 +2013,4,2,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1925,-11,0,2155,-14,0,0 +2013,6,28,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,26,1,1901,63,1,0 +2013,7,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,67,1,1829,61,1,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1535,-4,0,1643,-12,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1510,-4,0,1638,-12,0,0 +2013,4,28,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,720,-3,0,805,-13,0,0 +2013,8,27,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,600,-9,0,729,-18,0,0 +2013,9,2,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1910,60,1,2015,63,1,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,820,124,1,1115,114,1,0 +2013,9,28,6,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1855,-10,0,2130,14,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1653,2,0,1945,-22,0,0 +2013,6,29,6,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1410,90,1,1520,91,1,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1955,20,1,2225,25,1,0 +2013,7,8,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,1854,-2,0,0 +2013,6,13,4,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1335,49,1,1635,55,1,0 +2013,10,9,3,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1112,-1,0,1402,-10,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,13,0,2147,17,1,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,72,1,1214,79,1,0 +2013,4,16,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,38,1,2055,28,1,0 +2013,6,25,2,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,625,104,1,808,101,1,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-2,0,1356,-17,0,0 +2013,7,24,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,639,-5,0,819,-4,0,0 +2013,9,16,1,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1703,51,1,1825,37,1,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1511,-9,0,1639,-2,0,0 +2013,4,11,4,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,600,-9,0,903,4,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1750,2,0,2055,-5,0,0 +2013,7,21,7,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1537,-5,0,1722,-7,0,0 +2013,7,14,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1045,-5,0,1158,-19,0,0 +2013,6,14,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,618,-3,0,740,-20,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,930,6,0,1040,-8,0,0 +2013,9,25,3,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,730,0,0,1600,-11,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1124,-5,0,1303,-3,0,0 +2013,6,28,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,14,0,1145,4,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1610,35,1,1723,76,1,0 +2013,4,26,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,0,0,816,-6,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1744,4,0,2100,-1,0,0 +2013,8,17,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,-4,0,1903,1,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1145,7,0,1550,-16,0,0 +2013,7,18,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,2105,62,1,2155,42,1,0 +2013,5,1,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1000,-2,0,1105,-5,0,0 +2013,8,4,7,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1215,-3,0,1411,-10,0,0 +2013,5,20,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,20,1,1100,22,1,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2155,16,1,2320,20,1,0 +2013,8,22,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-2,0,2027,-3,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,952,-10,0,1136,-8,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,935,1,0,1315,3,0,0 +2013,10,10,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1345,-2,0,1450,-6,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1249,232,1,1648,288,1,0 +2013,10,31,4,9E,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-5,0,918,-14,0,0 +2013,7,1,1,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,615,-6,0,800,-27,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1929,-2,0,2126,-3,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1310,45,1,1640,44,1,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,8,0,25,-3,0,0 +2013,8,29,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,-3,0,2200,27,1,0 +2013,6,16,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1935,0,0,2302,29,1,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,857,77,1,1113,93,1,0 +2013,7,2,2,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1045,18,1,1130,22,1,0 +2013,5,11,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,-5,0,1558,0,0,0 +2013,6,19,3,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,-1,0,845,-7,0,0 +2013,10,4,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-3,0,1908,12,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,46,1,2030,45,1,0 +2013,9,20,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-2,0,800,-6,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2240,-6,0,21,-9,0,0 +2013,6,7,5,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,0,,1650,0,1,1 +2013,7,5,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-10,0,807,-17,0,0 +2013,6,4,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1115,-5,0,1125,-5,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,-2,0,1205,-10,0,0 +2013,8,30,5,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-8,0,735,-16,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1958,22,1,2310,19,1,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-3,0,1005,-13,0,0 +2013,9,9,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1730,-5,0,2031,-10,0,0 +2013,10,20,7,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,-1,0,2010,-10,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1527,6,0,1644,-11,0,0 +2013,5,22,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,31,1,2140,31,1,0 +2013,7,3,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1903,1,0,1930,0,0,0 +2013,6,25,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-2,0,1553,0,0,0 +2013,10,30,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,34,1,1545,57,1,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,-1,0,1054,-3,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-4,0,1305,16,1,0 +2013,8,21,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,946,-21,0,0 +2013,9,24,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-6,0,839,-9,0,0 +2013,10,6,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,755,-3,0,1008,-5,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,17,1,1915,3,0,0 +2013,6,11,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2315,10,0,504,14,0,0 +2013,6,11,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,715,-3,0,730,11,0,0 +2013,6,15,6,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1535,27,1,2030,21,1,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,-5,0,1242,-14,0,0 +2013,10,3,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1110,0,0,1441,1,0,0 +2013,6,14,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,3,0,925,-5,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,49,1,1145,48,1,0 +2013,9,12,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1420,0,,1600,0,1,1 +2013,8,13,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1454,-8,0,1609,-18,0,0 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,1,0,2202,10,0,0 +2013,5,27,1,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,-5,0,1045,-12,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,7,0,1920,5,0,0 +2013,4,11,4,UA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1830,9,0,2103,-5,0,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,800,5,0,928,-8,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,-7,0,1832,-16,0,0 +2013,7,21,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,925,-10,0,1045,-21,0,0 +2013,9,15,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1106,-1,0,1220,6,0,0 +2013,8,5,1,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1120,-8,0,1502,-27,0,0 +2013,6,23,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,-2,0,1314,-36,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,905,-5,0,1348,-20,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1047,-2,0,1923,-10,0,0 +2013,9,30,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,828,-1,0,1025,-14,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,-5,0,2056,-21,0,0 +2013,5,1,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,2,0,1430,-9,0,0 +2013,9,27,5,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1740,11,0,2010,4,0,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1514,-9,0,1600,-18,0,0 +2013,8,31,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1715,-4,0,1905,-44,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1800,-3,0,2054,-11,0,0 +2013,10,12,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,820,2,0,1124,-24,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1810,30,1,2100,10,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1310,9,0,1415,1,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,805,28,1,845,13,0,0 +2013,4,25,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1710,-5,0,1842,-6,0,0 +2013,4,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1018,-1,0,1141,-3,0,0 +2013,10,1,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-6,0,1506,-30,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1909,-8,0,44,-15,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,0,,705,0,1,1 +2013,10,23,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1911,-5,0,2110,16,1,0 +2013,9,7,6,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-3,0,853,-5,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,835,13,0,855,22,1,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,21,1,2253,17,1,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,45,1,1855,42,1,0 +2013,6,26,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,603,-4,0,1000,-17,0,0 +2013,10,23,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1910,0,0,2150,-26,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,0,0,2100,-9,0,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1715,7,0,1826,4,0,0 +2013,9,20,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,917,9,0,1059,-7,0,0 +2013,7,7,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-6,0,1054,-5,0,0 +2013,4,7,7,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1421,-14,0,1607,-23,0,0 +2013,10,9,3,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,750,-1,0,835,-2,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1029,22,1,1320,8,0,0 +2013,6,14,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,2103,-21,0,0 +2013,10,15,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1639,12,0,1826,7,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,30,1,1545,23,1,0 +2013,6,4,2,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-8,0,1740,-15,0,0 +2013,10,15,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1114,-4,0,1334,-18,0,0 +2013,5,24,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,751,6,0,1044,4,0,0 +2013,7,26,5,9E,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,600,-1,0,740,-15,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-4,0,2100,-22,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2005,5,0,2045,7,0,0 +2013,10,25,5,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,950,17,1,1302,4,0,0 +2013,7,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2016,-6,0,2346,-17,0,0 +2013,10,26,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-2,0,855,-25,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-8,0,1627,-18,0,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1200,8,0,1405,17,1,0 +2013,4,9,2,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,840,3,0,1123,-4,0,0 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,912,47,1,1007,38,1,0 +2013,9,4,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,700,-6,0,800,-12,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-4,0,1739,-16,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1455,8,0,1557,8,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1615,22,1,1907,12,0,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,755,6,0,905,1,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,-2,0,1328,9,0,0 +2013,7,16,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,0,0,715,-3,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,605,-1,0,920,-17,0,0 +2013,5,17,5,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1219,-6,0,1805,-20,0,0 +2013,7,11,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-1,0,1020,-13,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,607,-6,0,1203,-23,0,0 +2013,9,20,5,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1605,-5,0,1901,-5,0,0 +2013,6,14,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,945,-2,0,1105,-9,0,0 +2013,10,29,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1555,-2,0,1635,3,0,0 +2013,6,2,7,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1945,-8,0,2209,-20,0,0 +2013,4,1,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1425,-1,0,1609,-6,0,0 +2013,7,19,5,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,101,1,1545,104,1,0 +2013,10,26,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,820,-2,0,1100,-20,0,0 +2013,4,30,2,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,555,82,1,759,63,1,0 +2013,7,19,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2010,114,1,2050,112,1,0 +2013,8,9,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1344,-4,0,1645,-24,0,0 +2013,6,27,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1201,9,0,1314,-1,0,0 +2013,7,15,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-2,0,2050,-2,0,0 +2013,7,27,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,959,-10,0,1237,-13,0,0 +2013,4,21,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,-3,0,1200,-11,0,0 +2013,10,9,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2110,54,1,2215,49,1,0 +2013,4,23,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-2,0,1335,-13,0,0 +2013,8,19,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1925,-9,0,1959,-10,0,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1940,12,0,2045,12,0,0 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,92,1,344,80,1,0 +2013,8,26,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,-9,0,1905,-23,0,0 +2013,5,14,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-4,0,1110,-2,0,0 +2013,9,22,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1805,-4,0,1850,-10,0,0 +2013,8,25,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2138,0,0,15,-7,0,0 +2013,9,12,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1405,15,1,1510,12,0,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1543,-1,0,1742,-10,0,0 +2013,6,4,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-5,0,720,-10,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,705,-2,0,920,-9,0,0 +2013,10,1,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1230,3,0,1410,-7,0,0 +2013,8,12,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1905,7,0,1950,0,0,0 +2013,4,18,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1515,15,1,1645,7,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2150,-1,0,2317,-12,0,0 +2013,8,18,7,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1704,-6,0,1834,-15,0,0 +2013,8,31,6,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1315,-5,0,1536,-11,0,0 +2013,10,11,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,0,,1415,0,1,1 +2013,4,24,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-10,0,950,-3,0,0 +2013,4,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,820,-5,0,930,-7,0,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-4,0,1950,-20,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-5,0,2324,-24,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1830,2,0,2145,3,0,0 +2013,10,21,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1859,14,0,2159,10,0,0 +2013,9,1,7,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1800,6,0,2005,-7,0,0 +2013,10,12,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,-2,0,1530,-12,0,0 +2013,7,15,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1107,-10,0,1201,-16,0,0 +2013,4,27,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1050,-10,0,1212,-18,0,0 +2013,10,11,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,0,0,1407,-10,0,0 +2013,8,20,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-2,0,832,-16,0,0 +2013,5,27,1,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1145,-1,0,1250,-2,0,0 +2013,7,15,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-2,0,1200,8,0,0 +2013,6,25,2,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1849,37,1,2112,50,1,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-5,0,1111,-21,0,0 +2013,4,12,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1657,12,0,1759,2,0,0 +2013,8,22,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-5,0,1024,-8,0,0 +2013,10,2,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1720,68,1,1918,75,1,0 +2013,6,23,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2035,135,1,2140,113,1,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,900,-3,0,1145,29,1,0 +2013,8,6,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,17,1,2016,11,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1950,-1,0,2005,-2,0,0 +2013,8,10,6,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-1,0,1153,-12,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,740,-4,0,920,-11,0,0 +2013,7,15,1,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,6,0,2115,-7,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1555,-2,0,1838,-22,0,0 +2013,7,26,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2105,-13,0,2205,-15,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,1,0,2333,-9,0,0 +2013,4,28,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,-3,0,1630,-17,0,0 +2013,8,8,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,7,0,2115,0,0,0 +2013,9,4,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1545,81,1,1650,75,1,0 +2013,8,30,5,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,825,97,1,1130,90,1,0 +2013,4,17,3,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1035,75,1,1350,66,1,0 +2013,10,30,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-11,0,1256,0,0,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,38,1,907,33,1,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2155,41,1,2340,41,1,0 +2013,9,6,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1018,-8,0,1100,-29,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1610,0,0,1731,-7,0,0 +2013,9,1,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1224,-1,0,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1030,4,0,1130,5,0,0 +2013,5,14,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-5,0,1546,-15,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1306,7,0,1436,19,1,0 +2013,10,15,2,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1500,40,1,1700,40,1,0 +2013,4,16,2,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,700,-9,0,918,18,1,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1534,2,0,1819,-6,0,0 +2013,7,21,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,11,0,1237,4,0,0 +2013,7,10,3,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1041,-10,0,1244,1,0,0 +2013,6,10,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1435,-2,0,1531,-1,0,0 +2013,5,3,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,7,0,1215,9,0,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1405,9,0,1510,1,0,0 +2013,4,14,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-5,0,1608,-10,0,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,-1,0,835,-15,0,0 +2013,8,15,4,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,160,1,1818,163,1,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1425,8,0,1635,9,0,0 +2013,6,24,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,645,-8,0,1455,-6,0,0 +2013,4,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,0,0,1205,-11,0,0 +2013,7,10,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1234,3,0,1341,3,0,0 +2013,4,22,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-4,0,1334,-9,0,0 +2013,6,13,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,4,0,10,1,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,-5,0,2350,-10,0,0 +2013,6,18,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,34,1,1107,38,1,0 +2013,5,16,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-9,0,2202,15,1,0 +2013,4,25,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-2,0,2140,-22,0,0 +2013,5,22,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-2,0,1955,73,1,0 +2013,10,14,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,720,15,1,945,8,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2015,21,1,2315,8,0,0 +2013,7,12,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1223,-2,0,1319,-6,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1749,17,1,2034,21,1,0 +2013,6,11,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,0,0,2210,-5,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-3,0,1205,-13,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1720,-4,0,1842,-7,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1115,2,0,1235,6,0,0 +2013,10,28,1,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-6,0,1055,-16,0,0 +2013,8,21,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,-2,0,1800,5,0,0 +2013,4,18,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1045,0,,1225,0,1,1 +2013,7,13,6,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-10,0,1805,-20,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,940,31,1,1045,24,1,0 +2013,4,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,740,-1,0,1135,-26,0,0 +2013,7,12,5,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,838,-2,0,1019,-11,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,810,-1,0,1125,0,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1911,40,1,2136,29,1,0 +2013,7,7,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,0,,1340,0,1,1 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,0,0,1623,0,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1444,-6,0,1756,6,0,0 +2013,10,6,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,3,0,1804,12,0,0 +2013,10,1,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,930,-6,0,1039,-5,0,0 +2013,7,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1130,2,0,1145,-1,0,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-2,0,1430,-2,0,0 +2013,10,23,3,9E,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1855,4,0,2245,-8,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,745,0,,925,0,1,1 +2013,6,4,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1200,-6,0,1250,-12,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1405,-2,0,1513,-3,0,0 +2013,10,28,1,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-3,0,2045,-18,0,0 +2013,7,24,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1524,6,0,1637,5,0,0 +2013,8,12,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-3,0,2050,-5,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,0,0,1545,0,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,-2,0,2253,0,0,0 +2013,4,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1656,30,1,1723,15,1,0 +2013,4,25,4,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,905,-3,0,1101,-27,0,0 +2013,9,9,1,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-9,0,646,-21,0,0 +2013,10,17,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1625,2,0,1750,17,1,0 +2013,5,4,6,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,927,3,0,1200,-5,0,0 +2013,4,1,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1020,-2,0,1120,-10,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2127,11,0,41,6,0,0 +2013,8,5,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1120,0,0,1249,-3,0,0 +2013,7,29,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-6,0,825,14,0,0 +2013,6,4,2,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-3,0,1006,-14,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1806,-8,0,15,-16,0,0 +2013,4,24,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2335,-3,0,632,-14,0,0 +2013,6,28,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2000,187,1,2135,182,1,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,-7,0,1409,-5,0,0 +2013,6,29,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,17,1,1705,8,0,0 +2013,5,28,2,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1405,1,0,1630,-14,0,0 +2013,4,15,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,905,-7,0,1112,-10,0,0 +2013,8,17,6,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,720,1,0,1240,3,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,5,0,1520,1,0,0 +2013,10,20,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-8,0,1019,-6,0,0 +2013,8,13,2,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1015,0,0,1200,1,0,0 +2013,6,26,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1310,37,1,1345,58,1,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2145,14,0,2255,6,0,0 +2013,7,15,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,-6,0,2128,8,0,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,-3,0,839,-2,0,0 +2013,8,22,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,4,0,1925,-2,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1859,-2,0,2127,-18,0,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2240,-5,0,2350,0,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1945,-6,0,2131,-14,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,540,-3,0,825,-8,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1335,21,1,1450,18,1,0 +2013,7,25,4,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-7,0,754,14,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1500,-2,0,1725,77,1,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1625,13,0,1743,-1,0,0 +2013,7,28,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,89,1,2258,186,1,0 +2013,6,27,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-4,0,2125,-7,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,2002,67,1,2219,42,1,0 +2013,6,6,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,0,0,1852,-12,0,0 +2013,7,22,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,197,1,1415,220,1,0 +2013,5,26,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,-5,0,2200,-6,0,0 +2013,6,8,6,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,610,3,0,905,6,0,0 +2013,7,4,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-2,0,1810,-3,0,0 +2013,5,23,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,700,-5,0,915,-8,0,0 +2013,4,25,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1534,1,0,1830,0,0,0 +2013,10,10,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,117,1,1915,120,1,0 +2013,6,17,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-4,0,1545,-15,0,0 +2013,4,20,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-2,0,735,-8,0,0 +2013,8,7,3,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,16,1,1105,9,0,0 +2013,8,14,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,809,-8,0,1018,10,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,5,0,830,-15,0,0 +2013,9,22,7,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1035,-3,0,1645,-21,0,0 +2013,4,17,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,22,1,2100,25,1,0 +2013,5,7,2,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,-3,0,2135,-12,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1646,0,0,2123,4,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1530,1,0,1730,-10,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1910,15,1,2345,5,0,0 +2013,7,7,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,925,-46,0,0 +2013,7,24,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,31,1,1915,24,1,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1810,137,1,2008,127,1,0 +2013,8,9,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1816,5,0,2159,-2,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1405,-2,0,1750,-2,0,0 +2013,10,15,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1436,-6,0,1559,-16,0,0 +2013,6,23,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,29,1,1947,23,1,0 +2013,8,28,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,650,-8,0,830,-19,0,0 +2013,5,7,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,0,0,1155,-4,0,0 +2013,5,18,6,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,917,-6,0,1031,-14,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,940,19,1,1455,3,0,0 +2013,10,19,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,825,0,0,1005,-11,0,0 +2013,9,2,1,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,840,-5,0,858,-8,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1545,0,,1630,0,1,1 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1155,-3,0,1700,-23,0,0 +2013,8,23,5,OO,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,710,-3,0,915,-13,0,0 +2013,6,4,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-1,0,937,-10,0,0 +2013,10,16,3,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2220,28,1,649,-1,0,0 +2013,10,7,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,840,-2,0,1210,-1,0,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,-4,0,1310,-4,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,900,0,0,1425,-11,0,0 +2013,5,30,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1735,36,1,2010,30,1,0 +2013,7,4,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,4,0,1625,-5,0,0 +2013,7,23,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,13,0,1600,7,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,645,13,0,1040,-1,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1030,-4,0,1107,-1,0,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1215,8,0,1335,8,0,0 +2013,7,28,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1047,-3,0,1352,-14,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,855,10,0,1015,4,0,0 +2013,6,28,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1031,-6,0,1315,-1,0,0 +2013,6,24,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2040,-5,0,2232,-5,0,0 +2013,7,14,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,-1,0,1320,-16,0,0 +2013,4,30,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-7,0,944,-10,0,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1745,61,1,2340,52,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,828,-5,0,835,-18,0,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2010,2,0,2250,-9,0,0 +2013,8,8,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1910,-2,0,2030,10,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1150,15,1,1430,12,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1022,-4,0,1605,8,0,0 +2013,7,9,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1530,8,0,1630,4,0,0 +2013,8,11,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,-9,0,1844,-6,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2020,-2,0,2215,-11,0,0 +2013,9,6,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2125,-11,0,2215,-28,0,0 +2013,8,1,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,815,35,1,1641,18,1,0 +2013,9,1,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1655,-3,0,1800,-15,0,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1105,-3,0,1420,0,0,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1606,0,,1909,0,1,1 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,-3,0,2119,-24,0,0 +2013,7,13,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,10,0,1324,-14,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1750,-4,0,1958,-7,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,67,1,2114,74,1,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1933,14,0,2143,1,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,1,0,855,2,0,0 +2013,5,7,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-6,0,1035,-14,0,0 +2013,6,30,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1630,-4,0,1735,-7,0,0 +2013,4,27,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-12,0,1452,-17,0,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1657,5,0,1809,-11,0,0 +2013,7,22,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,-1,0,1850,-4,0,0 +2013,7,8,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1030,-4,0,1243,-13,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1225,8,0,1705,6,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2201,0,0,2324,-1,0,0 +2013,6,23,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-1,0,2040,-4,0,0 +2013,10,22,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2125,-2,0,2300,-17,0,0 +2013,10,19,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,0,0,825,-3,0,0 +2013,6,27,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-2,0,845,-7,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1845,29,1,2155,9,0,0 +2013,5,2,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1415,0,0,1920,-8,0,0 +2013,7,4,4,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1000,-4,0,1322,-1,0,0 +2013,4,13,6,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,745,-9,0,1607,-22,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,835,23,1,1400,13,0,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1750,66,1,1855,55,1,0 +2013,6,23,7,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,-5,0,1000,-33,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1504,1,0,1700,21,1,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,850,-3,0,1141,-3,0,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,759,-5,0,958,-11,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2050,1,0,2215,-5,0,0 +2013,9,17,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,833,-9,0,1135,-17,0,0 +2013,7,23,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1451,0,0,1748,5,0,0 +2013,6,2,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1602,-1,0,18,37,1,0 +2013,6,6,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,825,18,1,1020,14,0,0 +2013,7,11,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,0,0,730,-5,0,0 +2013,9,17,2,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,0,,2202,0,1,1 +2013,9,7,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1845,14,0,2110,-4,0,0 +2013,7,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1502,-4,0,1729,-4,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,18,1,1730,15,1,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,830,0,0,930,0,0,0 +2013,7,27,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2053,-4,0,2219,-12,0,0 +2013,4,7,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1425,-5,0,1600,-15,0,0 +2013,4,24,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-4,0,821,-7,0,0 +2013,4,28,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,1,0,1530,-8,0,0 +2013,8,27,2,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2044,-13,0,2219,-15,0,0 +2013,8,1,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-4,0,1225,-14,0,0 +2013,5,25,6,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1320,6,0,1715,8,0,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1730,23,1,2000,16,1,0 +2013,6,28,5,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,59,1,910,45,1,0 +2013,10,5,6,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,-3,0,1529,-14,0,0 +2013,10,17,4,9E,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1815,-4,0,1946,-17,0,0 +2013,10,10,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,2,0,1931,12,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,26,1,2350,11,0,0 +2013,8,14,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1214,-5,0,1224,-21,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1620,2,0,1715,-6,0,0 +2013,8,11,7,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1135,-2,0,1253,-15,0,0 +2013,9,30,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,956,11,0,1254,-5,0,0 +2013,5,24,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,-4,0,2333,-15,0,0 +2013,5,14,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1125,6,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1305,-2,0,1435,-11,0,0 +2013,6,13,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,7,0,1435,-1,0,0 +2013,4,18,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,6,0,635,4,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,15,1,2249,28,1,0 +2013,7,8,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1845,85,1,2030,76,1,0 +2013,7,16,2,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1406,-7,0,1620,-27,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,-5,0,1230,-8,0,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,16,1,1251,38,1,0 +2013,6,24,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,0,,1119,0,1,1 +2013,10,15,2,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,-12,0,2305,0,0,0 +2013,8,18,7,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1659,-3,0,2100,-15,0,0 +2013,9,28,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-6,0,944,-22,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1101,-1,0,1245,-7,0,0 +2013,4,8,1,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1823,-11,0,2100,-12,0,0 +2013,7,10,3,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-8,0,1305,50,1,0 +2013,5,4,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,1625,-2,0,1630,-2,0,0 +2013,6,4,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,930,-1,0,1020,13,0,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,-8,0,1350,-10,0,0 +2013,9,30,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1724,-2,0,1940,-9,0,0 +2013,9,4,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1856,-9,0,2100,-19,0,0 +2013,6,8,6,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1220,-3,0,1412,-10,0,0 +2013,7,15,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,-10,0,740,-13,0,0 +2013,6,13,4,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,30,1,1955,21,1,0 +2013,8,30,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-5,0,1535,-32,0,0 +2013,6,4,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,7,0,1155,4,0,0 +2013,4,22,1,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,27,1,1230,34,1,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1729,26,1,1900,20,1,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,20,1,1740,22,1,0 +2013,5,16,4,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1850,68,1,2045,62,1,0 +2013,6,7,5,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,36,1,1910,116,1,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1130,16,1,1425,4,0,0 +2013,4,21,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2204,-3,0,2359,-27,0,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,3,0,1335,-5,0,0 +2013,10,17,4,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,-2,0,1955,2,0,0 +2013,5,19,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1845,234,1,2015,246,1,0 +2013,5,11,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,736,-6,0,1155,-25,0,0 +2013,6,21,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,26,1,800,41,1,0 +2013,4,15,1,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1741,59,1,2103,75,1,0 +2013,7,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,8,0,1715,10,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,1,0,1235,0,0,0 +2013,5,14,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-4,0,1006,-21,0,0 +2013,5,1,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1910,-1,0,2134,3,0,0 +2013,10,8,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,739,-8,0,820,-9,0,0 +2013,10,11,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1107,-1,0,1235,-12,0,0 +2013,9,8,7,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,800,-3,0,1020,11,0,0 +2013,10,30,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1420,-2,0,1607,4,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,41,1,2040,50,1,0 +2013,10,25,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,-2,0,1813,-8,0,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-3,0,1227,-6,0,0 +2013,5,23,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,49,1,2125,47,1,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1640,0,0,1904,2,0,0 +2013,8,12,1,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1415,8,0,1640,0,0,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1736,33,1,1949,28,1,0 +2013,9,28,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1120,-5,0,1230,-10,0,0 +2013,4,25,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-3,0,1550,-4,0,0 +2013,9,7,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,835,-5,0,1440,5,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1215,-6,0,1424,-29,0,0 +2013,4,21,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,0,0,641,-14,0,0 +2013,5,2,4,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-5,0,1703,9,0,0 +2013,10,8,2,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1210,11,0,1310,0,0,0 +2013,6,4,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1515,-6,0,1600,-6,0,0 +2013,7,24,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-10,0,2150,-33,0,0 +2013,9,21,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,832,9,0,0 +2013,6,19,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1535,5,0,1700,-9,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,193,1,1240,169,1,0 +2013,10,3,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1305,-5,0,1355,-13,0,0 +2013,5,22,3,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,627,-1,0,752,18,1,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1850,-4,0,2104,0,0,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,2,0,1911,1,0,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,40,1,1825,30,1,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,755,8,0,1012,4,0,0 +2013,5,8,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,3,0,2210,-1,0,0 +2013,10,11,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,8,0,2126,10,0,0 +2013,5,28,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1923,-2,0,2135,-5,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1051,6,0,1428,5,0,0 +2013,9,2,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1430,19,1,1630,13,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,-2,0,935,-14,0,0 +2013,5,1,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,1,0,1838,8,0,0 +2013,9,29,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,-7,0,1520,-17,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1355,20,1,1645,20,1,0 +2013,9,12,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1815,-10,0,2036,-4,0,0 +2013,10,4,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1822,-3,0,0 +2013,10,23,3,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,655,-3,0,825,-2,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-1,0,841,9,0,0 +2013,5,13,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1120,2,0,1254,6,0,0 +2013,6,20,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-8,0,1230,10,0,0 +2013,5,30,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,73,1,2227,85,1,0 +2013,5,23,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1334,-1,0,1629,6,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1730,-2,0,2108,-23,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,645,-7,0,927,10,0,0 +2013,4,15,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1436,3,0,1642,22,1,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1148,186,1,2025,182,1,0 +2013,7,6,6,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1506,-2,0,1600,6,0,0 +2013,10,13,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1850,0,0,2015,-8,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,925,7,0,1159,-3,0,0 +2013,4,15,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1005,-3,0,1135,-16,0,0 +2013,7,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,7,0,1055,14,0,0 +2013,6,5,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,29,1,1806,66,1,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,-2,0,1900,-17,0,0 +2013,10,5,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1940,-6,0,1956,14,0,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,6,0,830,0,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,73,1,935,67,1,0 +2013,8,13,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,53,1,2120,57,1,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2000,-4,0,2220,1,0,0 +2013,7,19,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,713,-3,0,1120,12,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1510,-4,0,1522,-12,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1112,-5,0,1239,-3,0,0 +2013,8,3,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,940,10,0,1020,3,0,0 +2013,7,8,1,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-4,0,1625,-19,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,-1,0,1635,-8,0,0 +2013,8,8,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,87,1,1630,81,1,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,14,0,945,15,1,0 +2013,7,22,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,830,-6,0,1205,-21,0,0 +2013,9,10,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,-6,0,902,-6,0,0 +2013,7,15,1,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2057,-6,0,2329,-10,0,0 +2013,7,28,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1302,3,0,1631,-8,0,0 +2013,9,23,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1034,-3,0,1119,-4,0,0 +2013,6,18,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,6,0,1855,12,0,0 +2013,5,12,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-10,0,1919,-31,0,0 +2013,7,19,5,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,6,0,1143,-4,0,0 +2013,4,28,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1400,-3,0,1530,-15,0,0 +2013,6,18,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,284,1,1825,293,1,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1320,-3,0,1520,-11,0,0 +2013,6,5,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1015,-8,0,1305,-18,0,0 +2013,8,22,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,1354,-1,0,0 +2013,10,17,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1500,20,1,1610,20,1,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1456,27,1,1720,97,1,0 +2013,7,17,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-6,0,2041,-20,0,0 +2013,7,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2120,70,1,2230,69,1,0 +2013,7,25,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,805,-13,0,0 +2013,6,11,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,630,-2,0,915,-9,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1715,98,1,2025,95,1,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-7,0,724,-11,0,0 +2013,9,9,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-4,0,724,-4,0,0 +2013,8,29,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1035,-3,0,1050,-5,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,147,1,2030,134,1,0 +2013,6,28,5,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,800,90,1,1557,85,1,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,604,3,0,935,-55,0,0 +2013,7,17,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1800,148,1,2000,131,1,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,-5,0,1730,-3,0,0 +2013,5,30,4,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,700,-6,0,917,-2,0,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1200,-1,0,1325,-2,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,800,87,1,1145,73,1,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1755,65,1,2020,62,1,0 +2013,8,6,2,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,720,7,0,908,20,1,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,2,0,1144,0,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,10,0,50,9,0,0 +2013,9,26,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1436,-2,0,1645,-13,0,0 +2013,5,17,5,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1120,1,0,1625,-1,0,0 +2013,4,20,6,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,-5,0,1830,-2,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1810,-3,0,1940,-7,0,0 +2013,6,27,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1410,-2,0,1630,-15,0,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-9,0,1319,-18,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,940,0,0,1230,-14,0,0 +2013,9,14,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1455,-5,0,1715,-17,0,0 +2013,6,6,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1210,13,0,1310,5,0,0 +2013,4,2,2,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-2,0,2039,-1,0,0 +2013,7,30,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1150,-4,0,1255,6,0,0 +2013,8,8,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,4,0,1200,16,1,0 +2013,9,3,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1000,2,0,1200,3,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1810,38,1,2025,35,1,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,-4,0,1759,8,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,54,1,1800,70,1,0 +2013,6,7,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,740,1,0,855,-11,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2240,0,0,113,-14,0,0 +2013,8,9,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1100,0,0,1459,-3,0,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1051,18,1,1925,17,1,0 +2013,4,24,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,630,-1,0,815,1,0,0 +2013,5,19,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2000,-7,0,2059,36,1,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,653,-3,0,749,-6,0,0 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,712,-9,0,1210,8,0,0 +2013,4,11,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1520,116,1,1625,102,1,0 +2013,6,17,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,1,0,815,-8,0,0 +2013,8,27,2,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-4,0,1627,-11,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1442,-1,0,1723,1,0,0 +2013,8,26,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,-4,0,841,-14,0,0 +2013,5,22,3,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1705,22,1,1835,56,1,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1600,9,0,2325,-23,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1908,0,0,2114,-21,0,0 +2013,10,13,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1155,1,0,1940,-6,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,944,15,1,1036,5,0,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1405,5,0,1955,-2,0,0 +2013,5,8,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,800,41,1,905,39,1,0 +2013,5,8,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1825,31,1,2010,9,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1551,35,1,1937,36,1,0 +2013,10,23,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1741,17,1,1935,5,0,0 +2013,8,18,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-7,0,1755,-16,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1335,17,1,1515,3,0,0 +2013,10,28,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1730,20,1,1915,27,1,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,930,63,1,1211,30,1,0 +2013,4,29,1,DL,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,800,-4,0,1052,-20,0,0 +2013,8,1,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1020,-3,0,1228,-13,0,0 +2013,6,24,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,4,0,2220,36,1,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,-4,0,1200,-10,0,0 +2013,8,4,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1505,-1,0,1654,-10,0,0 +2013,8,1,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1310,-4,0,1525,-3,0,0 +2013,5,23,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1800,9,0,1940,7,0,0 +2013,10,6,7,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1121,-1,0,1450,-8,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2045,-1,0,2057,-11,0,0 +2013,8,17,6,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-9,0,1458,-5,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,0,0,1027,-4,0,0 +2013,8,6,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,43,1,1915,36,1,0 +2013,5,1,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,-1,0,1215,-10,0,0 +2013,10,30,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-8,0,815,-13,0,0 +2013,4,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-1,0,1419,-8,0,0 +2013,7,13,6,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1330,-3,0,1520,-12,0,0 +2013,7,31,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1505,0,0,1747,-7,0,0 +2013,8,17,6,DL,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,830,-3,0,1115,0,0,0 +2013,9,10,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,725,-4,0,910,-13,0,0 +2013,7,31,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-3,0,1600,9,0,0 +2013,10,20,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1905,14,0,2030,5,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,-5,0,1225,-11,0,0 +2013,8,18,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,-1,0,2215,-16,0,0 +2013,9,5,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-4,0,1605,-2,0,0 +2013,7,18,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1620,-3,0,1728,-11,0,0 +2013,5,11,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,820,-4,0,1109,14,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2228,2,0,703,2,0,0 +2013,8,25,7,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,700,0,0,825,-2,0,0 +2013,7,12,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-3,0,1917,3,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,920,7,0,1350,7,0,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,2,0,842,-6,0,0 +2013,9,11,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,36,1,1120,40,1,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1320,12,0,1545,1,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2009,1,0,2132,12,0,0 +2013,5,14,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1828,-7,0,1939,-17,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,708,11,0,945,-6,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,56,1,2100,134,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,0,0,2357,21,1,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-1,0,1348,-2,0,0 +2013,4,23,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,-7,0,1610,-8,0,0 +2013,8,19,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1240,-3,0,1554,-14,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1232,15,1,1435,5,0,0 +2013,8,9,5,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1226,30,1,1425,28,1,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1227,26,1,1353,17,1,0 +2013,5,22,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,-3,0,1645,-1,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1602,-1,0,1728,-17,0,0 +2013,8,27,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-7,0,1725,-9,0,0 +2013,4,18,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-1,0,1537,6,0,0 +2013,10,20,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,5,0,1611,8,0,0 +2013,5,9,4,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1014,2,0,0 +2013,6,15,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-3,0,2020,-17,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1101,-1,0,1535,22,1,0 +2013,8,13,2,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1704,6,0,1931,-9,0,0 +2013,8,11,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-8,0,1020,-20,0,0 +2013,9,20,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1125,1,0,0 +2013,10,27,7,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,710,-5,0,820,-8,0,0 +2013,4,12,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1345,2,0,1505,-13,0,0 +2013,4,6,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,3,0,1905,-12,0,0 +2013,5,27,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,630,0,0,820,20,1,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,-3,0,1905,-12,0,0 +2013,4,8,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,705,13,0,951,-4,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-12,0,1041,-19,0,0 +2013,7,19,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,83,1,2151,75,1,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1640,23,1,2146,78,1,0 +2013,6,13,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1330,18,1,1413,10,0,0 +2013,7,3,3,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,37,1,1914,44,1,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1140,-1,0,1434,-11,0,0 +2013,5,21,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1541,-1,0,1734,-3,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,9,0,2135,0,0,0 +2013,10,19,6,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-2,0,1000,-23,0,0 +2013,5,20,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1007,-4,0,1133,1,0,0 +2013,7,23,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1137,32,1,1343,25,1,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1525,100,1,1830,110,1,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1347,-8,0,1631,-32,0,0 +2013,5,21,2,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1931,-4,0,2305,-16,0,0 +2013,4,17,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,3,0,1625,9,0,0 +2013,5,19,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2015,49,1,2253,50,1,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,835,6,0,1030,8,0,0 +2013,10,3,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,739,-7,0,1009,2,0,0 +2013,9,5,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-9,0,1549,-11,0,0 +2013,4,5,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,42,1,1510,21,1,0 +2013,8,28,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1444,14,0,1742,20,1,0 +2013,4,23,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-9,0,1144,-13,0,0 +2013,10,21,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1105,-2,0,1230,-1,0,0 +2013,5,31,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1455,-2,0,1753,-36,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1250,36,1,1428,23,1,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1310,30,1,1615,18,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,15,1,1755,10,0,0 +2013,10,12,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1434,-4,0,1655,-9,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1549,131,1,1802,128,1,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,830,-1,0,921,5,0,0 +2013,4,24,3,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1440,56,1,1655,57,1,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,1,0,1252,22,1,0 +2013,4,8,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1227,-8,0,1337,-2,0,0 +2013,9,19,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1555,32,1,1715,34,1,0 +2013,4,16,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-2,0,659,4,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1705,-3,0,1838,-31,0,0 +2013,7,11,4,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,7,0,1505,0,0,0 +2013,9,5,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-5,0,1023,-6,0,0 +2013,9,10,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,0,0,1735,-20,0,0 +2013,7,29,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1136,-6,0,1300,-10,0,0 +2013,6,6,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,60,1,1803,62,1,0 +2013,4,15,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-2,0,1713,1,0,0 +2013,4,17,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1757,-4,0,1915,-12,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1700,-2,0,1800,-8,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,46,1,1120,46,1,0 +2013,6,23,7,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,625,0,0,805,-23,0,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-2,0,9,-7,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,844,-5,0,1030,-16,0,0 +2013,7,31,3,FL,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1608,0,0,1723,-11,0,0 +2013,4,21,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,4,0,1820,-6,0,0 +2013,7,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,300,-6,0,658,-28,0,0 +2013,7,8,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,704,-3,0,830,-15,0,0 +2013,8,29,4,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,9,0,500,3,0,0 +2013,5,27,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,4,0,1525,-9,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,-2,0,1627,-12,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1910,275,1,2050,265,1,0 +2013,5,1,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-2,0,1142,-15,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,830,-5,0,1054,-11,0,0 +2013,8,27,2,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-1,0,950,-1,0,0 +2013,9,13,5,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1455,63,1,1626,56,1,0 +2013,8,12,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,5,0,1635,-1,0,0 +2013,6,5,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1108,-8,0,0 +2013,9,24,2,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,68,1,1945,64,1,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,0,0,2203,-14,0,0 +2013,5,3,5,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-16,0,930,-19,0,0 +2013,9,13,5,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-9,0,1930,1,0,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1000,-1,0,1310,-4,0,0 +2013,10,29,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1100,-5,0,1309,-7,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2025,23,1,2200,8,0,0 +2013,4,25,4,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1405,1,0,1630,-2,0,0 +2013,5,19,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1920,21,1,2017,13,0,0 +2013,4,18,4,VX,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,945,41,1,1800,32,1,0 +2013,4,15,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2155,11,0,48,-5,0,0 +2013,7,21,7,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,87,1,2117,71,1,0 +2013,4,21,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,700,-4,0,924,-10,0,0 +2013,10,25,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,812,-2,0,930,-12,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1255,17,1,1825,105,1,0 +2013,4,4,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1555,-3,0,1800,-11,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1500,-4,0,1710,-14,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1945,-8,0,2050,-5,0,0 +2013,4,29,1,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1337,6,0,1455,3,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1031,-5,0,1054,-4,0,0 +2013,10,30,3,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1830,-4,0,2042,-14,0,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,5,0,1740,7,0,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,0,,1710,0,1,1 +2013,8,12,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,530,-3,0,731,-3,0,0 +2013,10,17,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1556,-3,0,2000,-19,0,0 +2013,6,21,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-9,0,808,13,0,0 +2013,5,30,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,-7,0,1850,19,1,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1525,15,1,1732,8,0,0 +2013,9,9,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,845,-9,0,1021,-14,0,0 +2013,8,25,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2105,-14,0,2230,-25,0,0 +2013,6,15,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,855,-3,0,1114,-13,0,0 +2013,8,6,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,28,1,1637,29,1,0 +2013,9,3,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1844,-5,0,2004,-26,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,7,0,1255,-17,0,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,845,-5,0,1057,-21,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,825,7,0,915,-2,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1730,11,0,1925,9,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1547,-2,0,1738,-8,0,0 +2013,9,7,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,834,-8,0,928,-10,0,0 +2013,6,16,7,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,0,0,833,-6,0,0 +2013,10,11,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,1055,3,0,1615,-5,0,0 +2013,7,25,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1715,13,0,2305,22,1,0 +2013,8,17,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,519,-7,0,842,0,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1610,21,1,1733,42,1,0 +2013,7,28,7,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,825,0,0,1104,1,0,0 +2013,10,13,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2015,4,0,2145,-5,0,0 +2013,8,5,1,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1235,0,0,1415,-9,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1520,6,0,1815,-9,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,65,1,2335,64,1,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1605,35,1,2125,44,1,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,750,32,1,1035,25,1,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2220,0,0,2340,0,0,0 +2013,6,16,7,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-8,0,858,7,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-3,0,1514,-12,0,0 +2013,9,10,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1711,6,0,1943,4,0,0 +2013,5,30,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,20,1,1322,-1,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-5,0,1255,-5,0,0 +2013,9,16,1,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,858,-6,0,1250,-15,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,956,-2,0,1152,-14,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1010,-4,0,1805,-31,0,0 +2013,10,6,7,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1700,127,1,1928,119,1,0 +2013,6,4,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-3,0,1556,-7,0,0 +2013,10,27,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1805,39,1,2327,28,1,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,31,1,1250,22,1,0 +2013,6,25,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,4,0,1800,-2,0,0 +2013,6,27,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,0,0,1123,1,0,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,630,-1,0,1230,9,0,0 +2013,10,4,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-10,0,835,-25,0,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,820,3,0,925,-4,0,0 +2013,6,1,6,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1024,62,1,1125,60,1,0 +2013,9,3,2,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1620,134,1,1828,110,1,0 +2013,7,10,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,810,-2,0,904,-8,0,0 +2013,6,16,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1005,-3,0,1219,21,1,0 +2013,10,20,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1430,-4,0,1754,7,0,0 +2013,10,26,6,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,46,-9,0,841,-12,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,951,14,0,1123,10,0,0 +2013,5,1,3,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1220,-4,0,1321,-14,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,952,0,0,1116,-19,0,0 +2013,7,8,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,7,0,1813,1,0,0 +2013,8,30,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,750,6,0,1130,-29,0,0 +2013,7,13,6,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,645,-4,0,925,-2,0,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1615,15,1,1758,0,0,0 +2013,7,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2202,14,0,2309,15,1,0 +2013,10,25,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,3,0,1252,5,0,0 +2013,10,20,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1810,15,1,1900,21,1,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1925,24,1,2115,19,1,0 +2013,7,15,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1337,15,1,1556,-3,0,0 +2013,5,13,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,921,-7,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1231,64,1,1252,46,1,0 +2013,9,4,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2115,-3,0,2350,-7,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,2359,2,0,454,12,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1852,1,0,1946,-10,0,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1950,2,0,2310,-8,0,0 +2013,4,22,1,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1536,182,1,1845,169,1,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2155,7,0,5,3,0,0 +2013,9,18,3,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1740,20,1,2035,2,0,0 +2013,9,5,4,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1743,-6,0,1859,-27,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2040,14,0,2145,8,0,0 +2013,7,26,5,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,-8,0,1041,-10,0,0 +2013,6,14,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1336,132,1,1711,119,1,0 +2013,8,13,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1144,-7,0,1305,-9,0,0 +2013,5,24,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,700,-5,0,917,-1,0,0 +2013,4,23,2,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,47,1,2028,55,1,0 +2013,7,9,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-1,0,1800,12,0,0 +2013,9,28,6,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1300,7,0,1510,-6,0,0 +2013,6,19,3,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,600,0,0,840,5,0,0 +2013,6,2,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1445,3,0,1520,2,0,0 +2013,7,4,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,940,4,0,1110,-19,0,0 +2013,9,29,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,630,-1,0,831,8,0,0 +2013,4,6,6,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-4,0,1810,-5,0,0 +2013,8,16,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-2,0,807,-7,0,0 +2013,6,6,4,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,25,1,1245,46,1,0 +2013,5,9,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-1,0,1109,4,0,0 +2013,7,25,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2105,21,1,2230,18,1,0 +2013,6,30,7,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-14,0,1029,-12,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1235,0,0,1455,-6,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1740,11,0,1908,10,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1120,-5,0,1550,-8,0,0 +2013,6,21,5,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,835,-2,0,1031,6,0,0 +2013,10,20,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-6,0,1501,-16,0,0 +2013,7,9,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1405,104,1,1610,98,1,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1928,-4,0,2058,-12,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1235,15,1,1615,18,1,0 +2013,8,15,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,6,0,2050,-4,0,0 +2013,4,8,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-7,0,2111,-10,0,0 +2013,8,29,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1034,-4,0,1119,-10,0,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,2,0,930,19,1,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1755,-4,0,1932,-22,0,0 +2013,8,31,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,903,11,0,1157,3,0,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,6,0,1100,-4,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,640,-1,0,755,-7,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,1,0,1230,13,0,0 +2013,10,15,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1028,-2,0,1225,-30,0,0 +2013,5,13,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1246,-3,0,1430,-7,0,0 +2013,9,24,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,815,-10,0,940,-20,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1555,82,1,1738,75,1,0 +2013,5,5,7,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-1,0,1455,3,0,0 +2013,10,8,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1800,-5,0,2007,-15,0,0 +2013,4,3,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,-10,0,940,-7,0,0 +2013,7,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1550,0,,1645,0,1,1 +2013,4,26,5,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2350,-6,0,806,-16,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2110,8,0,2225,0,0,0 +2013,7,12,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,48,1,1850,45,1,0 +2013,5,20,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,92,1,1934,97,1,0 +2013,6,14,5,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1845,84,1,2140,73,1,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,717,31,1,1159,26,1,0 +2013,9,9,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2200,1,0,30,-25,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1848,9,0,2330,-11,0,0 +2013,5,29,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,1,0,1630,2,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,-5,0,1635,-21,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-1,0,1155,-1,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,842,-12,0,0 +2013,8,31,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1354,12,0,1510,-3,0,0 +2013,10,10,4,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,750,-2,0,840,2,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1400,-4,0,1825,-9,0,0 +2013,9,29,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-4,0,1934,12,0,0 +2013,6,28,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,13,0,1414,-4,0,0 +2013,6,16,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,2,0,2024,6,0,0 +2013,4,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,750,-10,0,1023,0,0,0 +2013,7,3,3,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-6,0,2020,-17,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,10,0,1343,16,1,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,801,-4,0,857,-9,0,0 +2013,7,25,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,-9,0,2042,-15,0,0 +2013,5,23,4,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,745,0,0,1543,-1,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2130,-1,0,22,-12,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,-5,0,1500,-11,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1825,3,0,2025,-13,0,0 +2013,9,18,3,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,2204,-5,0,2342,-9,0,0 +2013,6,28,5,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-7,0,733,-12,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1605,30,1,1835,22,1,0 +2013,10,12,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1416,14,0,1755,1,0,0 +2013,9,9,1,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,114,1,2250,111,1,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,-2,0,1245,-1,0,0 +2013,5,4,6,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,0,,1802,0,1,1 +2013,10,21,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1749,6,0,2004,8,0,0 +2013,7,12,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-8,0,1747,-19,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,615,0,0,730,-1,0,0 +2013,4,15,1,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1120,6,0,1930,7,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,15,1,2044,-7,0,0 +2013,5,3,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,715,13,0,755,6,0,0 +2013,7,22,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,845,0,0,1023,0,0,0 +2013,10,6,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,820,15,1,1130,14,0,0 +2013,7,29,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1120,1,0,1155,-6,0,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,845,0,0,1010,1,0,0 +2013,6,16,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1740,9,0,2100,-5,0,0 +2013,6,1,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1800,5,0,1920,0,0,0 +2013,9,12,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1119,-3,0,1420,4,0,0 +2013,8,13,2,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1245,21,1,1738,18,1,0 +2013,9,14,6,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1320,0,0,1805,-16,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1005,-5,0,1335,-7,0,0 +2013,10,10,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,11,0,2059,3,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-7,0,1837,-12,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1225,1,0,1446,-11,0,0 +2013,5,5,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,4,0,1050,-1,0,0 +2013,4,24,3,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,3,0,2039,-15,0,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-4,0,1330,-15,0,0 +2013,10,17,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-3,0,1522,-37,0,0 +2013,10,4,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-5,0,1807,2,0,0 +2013,4,6,6,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1105,-1,0,1235,-9,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,-3,0,1930,16,1,0 +2013,6,4,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1233,-7,0,0 +2013,10,27,7,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,0,0,2115,-9,0,0 +2013,6,26,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-11,0,935,-12,0,0 +2013,9,10,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,2040,-6,0,2140,-13,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,4,0,1201,16,1,0 +2013,7,16,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,645,-12,0,813,-20,0,0 +2013,9,11,3,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,-1,0,1105,-13,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2035,-1,0,5,2,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1455,11,0,1650,35,1,0 +2013,7,25,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,-8,0,2155,-20,0,0 +2013,10,27,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1805,-11,0,2045,-11,0,0 +2013,6,28,5,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1125,20,1,1720,21,1,0 +2013,5,2,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1710,13,0,1925,19,1,0 +2013,6,6,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-6,0,855,-7,0,0 +2013,8,4,7,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-3,0,917,-12,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1640,25,1,2110,17,1,0 +2013,8,11,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13244,Memphis International,Memphis,TN,1733,11,0,1900,-2,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,7,0,1640,-5,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1009,-7,0,1203,-12,0,0 +2013,4,14,7,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-2,0,1355,0,0,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1229,-6,0,1347,3,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,740,7,0,840,3,0,0 +2013,9,16,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,3,0,1545,-8,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1315,0,0,1540,13,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,7,0,1350,7,0,0 +2013,4,26,5,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,842,-6,0,1057,-20,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2210,55,1,25,31,1,0 +2013,8,22,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1510,-5,0,1800,-15,0,0 +2013,9,15,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,825,-6,0,945,-13,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,-3,0,2215,-20,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,913,7,0,1137,-4,0,0 +2013,6,12,3,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,630,-4,0,927,-5,0,0 +2013,5,31,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1008,-2,0,1152,-10,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1740,27,1,2110,18,1,0 +2013,5,22,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1507,6,0,1602,-9,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,33,1,2310,15,1,0 +2013,7,29,1,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1755,14,0,2255,8,0,0 +2013,10,23,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,-1,0,1155,-10,0,0 +2013,10,1,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-4,0,1300,-22,0,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1305,10,0,1615,-1,0,0 +2013,10,14,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1451,21,1,1710,9,0,0 +2013,4,9,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-7,0,1000,-3,0,0 +2013,4,14,7,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1845,7,0,2019,17,1,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1030,-7,0,1142,-6,0,0 +2013,10,5,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,1,0,1404,0,0,0 +2013,7,31,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,1,0,930,-9,0,0 +2013,4,20,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-3,0,1303,-12,0,0 +2013,5,4,6,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,604,-7,0,720,-13,0,0 +2013,10,17,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,920,-7,0,1308,-12,0,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1400,10,0,1625,-13,0,0 +2013,8,20,2,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1021,-8,0,1105,-9,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,79,1,1555,70,1,0 +2013,5,31,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,2055,-17,0,0 +2013,8,24,6,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1553,5,0,0 +2013,10,8,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1359,-5,0,1503,-13,0,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1845,19,1,2325,16,1,0 +2013,5,8,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,710,-4,0,923,-2,0,0 +2013,8,15,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1838,-7,0,2025,-32,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,655,-1,0,805,-4,0,0 +2013,6,8,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,959,-13,0,1310,-30,0,0 +2013,8,2,5,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1744,1,0,2026,-5,0,0 +2013,6,27,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,2000,122,1,2115,100,1,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1035,-1,0,1146,-11,0,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,715,-3,0,850,-17,0,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,-5,0,1136,5,0,0 +2013,9,25,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,-5,0,1501,-7,0,0 +2013,9,4,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1720,-3,0,1837,-7,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1835,14,0,2135,63,1,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1118,4,0,1357,-7,0,0 +2013,4,15,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1439,-5,0,1620,9,0,0 +2013,5,18,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1655,6,0,1830,-3,0,0 +2013,4,4,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,-3,0,2056,1,0,0 +2013,8,18,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,16,1,1307,17,1,0 +2013,8,7,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,72,1,1850,64,1,0 +2013,4,3,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-1,0,606,15,1,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1905,105,1,2030,98,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2154,-5,0,2339,-15,0,0 +2013,8,6,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1555,21,1,1710,13,0,0 +2013,10,18,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-2,0,1205,-10,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2134,58,1,2309,50,1,0 +2013,9,9,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,12,0,1730,17,1,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1545,-2,0,1556,-11,0,0 +2013,10,2,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-4,0,740,-8,0,0 +2013,8,12,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1605,0,,1725,0,1,1 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2100,-1,0,2145,-4,0,0 +2013,9,12,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1915,139,1,2100,120,1,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1235,13,0,1415,34,1,0 +2013,9,6,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1312,36,1,1630,27,1,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,-2,0,1915,2,0,0 +2013,8,5,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-7,0,1421,18,1,0 +2013,6,13,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2205,109,1,10,108,1,0 +2013,7,28,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,0,0,1300,-3,0,0 +2013,6,24,1,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1055,2,0,1345,-11,0,0 +2013,5,19,7,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,941,-2,0,1158,-15,0,0 +2013,8,8,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,-2,0,930,-5,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1127,-3,0,1250,-13,0,0 +2013,10,1,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1450,9,0,1613,10,0,0 +2013,5,28,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,10,0,1305,2,0,0 +2013,7,11,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,1,0,1515,-3,0,0 +2013,7,8,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,758,-8,0,834,-5,0,0 +2013,4,7,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,720,0,0,805,-7,0,0 +2013,5,11,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-8,0,807,8,0,0 +2013,7,20,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,8,0,848,0,0,0 +2013,4,21,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,0,0,820,6,0,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,27,1,2107,29,1,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,730,-4,0,908,-13,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1915,1,0,2303,-33,0,0 +2013,4,10,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1337,-3,0,1412,3,0,0 +2013,9,15,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1346,-8,0,1503,-12,0,0 +2013,4,13,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1935,5,0,2040,-3,0,0 +2013,10,16,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-7,0,1654,14,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1505,-1,0,1831,6,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,954,6,0,1145,8,0,0 +2013,5,7,2,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1415,0,0,1655,-34,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,832,-1,0,907,-8,0,0 +2013,9,5,4,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1130,-9,0,1607,-1,0,0 +2013,5,3,5,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,835,-4,0,900,-4,0,0 +2013,10,18,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,2,0,1450,-14,0,0 +2013,10,31,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,1,0,917,-11,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,954,0,0,1130,-15,0,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,804,5,0,952,-4,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2025,1,0,2155,5,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2135,14,0,530,22,1,0 +2013,10,8,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1341,-8,0,1432,7,0,0 +2013,10,1,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1325,3,0,1455,-9,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1700,2,0,1820,-1,0,0 +2013,9,17,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1605,-7,0,1832,-20,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1010,23,1,1354,3,0,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,1,0,1105,-3,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2025,8,0,2235,16,1,0 +2013,7,23,2,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-4,0,1045,-6,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,845,-1,0,1030,-13,0,0 +2013,8,5,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,63,1,735,38,1,0 +2013,7,2,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1135,-2,0,1255,8,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,845,-2,0,1040,-1,0,0 +2013,6,2,7,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-6,0,1335,-10,0,0 +2013,10,11,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,649,-4,0,935,-21,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,810,-4,0,942,-13,0,0 +2013,5,30,4,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-2,0,2113,-12,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-5,0,918,3,0,0 +2013,7,13,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1937,-26,0,0 +2013,10,25,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,42,1,1115,26,1,0 +2013,9,14,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,659,-11,0,919,-33,0,0 +2013,6,25,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1415,-5,0,1551,14,0,0 +2013,6,23,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,-4,0,842,-7,0,0 +2013,4,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1035,12,0,1145,5,0,0 +2013,4,12,5,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1610,0,,1758,0,1,1 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,-5,0,1400,-14,0,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1825,7,0,2025,-9,0,0 +2013,6,2,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,0,0,2345,58,1,0 +2013,6,5,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-2,0,905,18,1,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1545,32,1,1745,17,1,0 +2013,5,29,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-7,0,1341,-9,0,0 +2013,4,18,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,2059,-9,0,2344,8,0,0 +2013,10,3,4,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,700,-6,0,755,-15,0,0 +2013,6,15,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1830,23,1,1920,17,1,0 +2013,5,1,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,735,-3,0,1012,-8,0,0 +2013,5,20,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,0,0,1510,-10,0,0 +2013,4,16,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,645,-1,0,705,-6,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2135,-5,0,2325,-8,0,0 +2013,5,15,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,857,2,0,1116,-16,0,0 +2013,8,19,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1935,-6,0,2135,-27,0,0 +2013,4,1,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,157,1,1254,153,1,0 +2013,8,2,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,0,0,1514,0,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,11,0,1214,0,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1315,103,1,1610,106,1,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,715,0,0,825,-3,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,52,1,2219,32,1,0 +2013,4,7,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1315,0,0,1435,-3,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,754,-5,0,1118,4,0,0 +2013,10,29,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-10,0,1410,19,1,0 +2013,4,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1230,0,0,1350,-4,0,0 +2013,9,21,6,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1707,-2,0,1913,-6,0,0 +2013,4,5,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1859,-4,0,1945,2,0,0 +2013,4,26,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1315,31,1,1325,21,1,0 +2013,7,21,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,34,1,1120,25,1,0 +2013,5,13,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,-2,0,1429,-20,0,0 +2013,8,28,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1350,-4,0,1450,-8,0,0 +2013,8,26,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-1,0,934,-4,0,0 +2013,5,2,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1920,47,1,2230,49,1,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1355,-5,0,1510,-15,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1005,0,0,1115,-9,0,0 +2013,7,29,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-1,0,805,6,0,0 +2013,9,22,7,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1315,-6,0,1410,-9,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1405,42,1,1840,95,1,0 +2013,4,2,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-2,0,839,-9,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1844,87,1,2154,72,1,0 +2013,4,25,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1949,-20,0,0 +2013,10,16,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1532,-2,0,1806,5,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,16,1,1609,24,1,0 +2013,4,27,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,10,0,1610,24,1,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,906,-22,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1600,-6,0,7,-15,0,0 +2013,10,1,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-9,0,1100,-14,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-5,0,1411,1,0,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1055,-6,0,1205,-10,0,0 +2013,6,23,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,0,0,1112,0,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1640,41,1,1755,25,1,0 +2013,8,27,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-6,0,1238,-21,0,0 +2013,6,24,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,23,1,1625,14,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,49,1,943,48,1,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1000,19,1,1625,21,1,0 +2013,4,20,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2155,-4,0,2234,10,0,0 +2013,10,24,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,835,0,,955,0,1,1 +2013,7,11,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,827,-16,0,0 +2013,7,12,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,831,30,1,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,33,1,2355,44,1,0 +2013,10,8,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1700,13,0,1800,2,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,-6,0,1006,-19,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,905,-6,0,1439,4,0,0 +2013,10,15,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1025,-3,0,1155,1,0,0 +2013,7,8,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1249,-7,0,1534,-6,0,0 +2013,6,28,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1625,3,0,2114,-2,0,0 +2013,4,7,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-4,0,1806,-10,0,0 +2013,9,30,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1238,83,1,1429,61,1,0 +2013,4,6,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,0,0,1315,-5,0,0 +2013,5,3,5,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2200,2,0,2312,13,0,0 +2013,5,24,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,70,1,2300,69,1,0 +2013,8,16,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1735,-10,0,1854,-1,0,0 +2013,6,26,3,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2026,0,,2147,0,1,1 +2013,5,6,1,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1520,10,0,1700,13,0,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1445,8,0,1550,3,0,0 +2013,7,11,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,645,-2,0,835,-3,0,0 +2013,6,19,3,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1755,-4,0,2030,-24,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1235,-2,0,1419,-6,0,0 +2013,9,29,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1600,17,1,1700,8,0,0 +2013,9,7,6,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-3,0,1750,-5,0,0 +2013,4,23,2,EV,14307,Theodore Francis Green State,Providence,RI,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-11,0,2040,-32,0,0 +2013,4,24,3,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,749,39,1,855,34,1,0 +2013,8,13,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1855,50,1,2050,47,1,0 +2013,4,23,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,59,1,2203,48,1,0 +2013,6,14,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,600,-3,0,605,-9,0,0 +2013,7,16,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-8,0,902,8,0,0 +2013,8,13,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1505,21,1,1830,10,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1632,0,0,1910,-6,0,0 +2013,7,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,0,0,1850,0,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,24,1,1825,9,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1305,-2,0,1755,-10,0,0 +2013,8,30,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-14,0,715,-15,0,0 +2013,7,14,7,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,759,14,0,0 +2013,4,9,2,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,842,0,0,1025,25,1,0 +2013,4,19,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1240,24,1,1525,15,1,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1835,-5,0,2052,3,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,14,0,2330,12,0,0 +2013,9,11,3,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,37,1,2259,42,1,0 +2013,5,2,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,0,,2128,0,1,1 +2013,5,25,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-1,0,1850,-9,0,0 +2013,8,14,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,51,1,1150,48,1,0 +2013,10,30,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-2,0,635,0,0,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1740,-3,0,2025,-16,0,0 +2013,10,26,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,936,22,1,0 +2013,6,9,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,845,2,0,1000,-3,0,0 +2013,4,28,7,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1540,0,0,1835,-6,0,0 +2013,9,23,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2050,-1,0,2235,-13,0,0 +2013,7,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1042,-5,0,1126,-12,0,0 +2013,8,14,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1941,58,1,2140,52,1,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,555,-2,0,925,-13,0,0 +2013,9,29,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1838,5,0,2149,-30,0,0 +2013,8,23,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-2,0,1810,-10,0,0 +2013,8,4,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1535,11,0,1700,3,0,0 +2013,6,27,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1905,-1,0,2219,17,1,0 +2013,10,23,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1740,-2,0,1901,6,0,0 +2013,9,26,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-9,0,925,-5,0,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1410,-1,0,2010,1,0,0 +2013,7,11,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1115,-8,0,1200,-16,0,0 +2013,4,21,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1015,15,1,1130,7,0,0 +2013,7,16,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,-6,0,1255,-8,0,0 +2013,4,26,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-1,0,931,5,0,0 +2013,10,23,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2056,-9,0,2205,-16,0,0 +2013,8,7,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1500,0,0,1635,-3,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,3,0,1115,11,0,0 +2013,5,28,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,120,-3,0,759,-6,0,0 +2013,8,13,2,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,171,1,1615,168,1,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,700,0,0,940,-12,0,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1550,21,1,1640,17,1,0 +2013,6,22,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1410,-8,0,1444,-8,0,0 +2013,8,5,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1040,2,0,1245,-5,0,0 +2013,10,11,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,700,4,0,1220,6,0,0 +2013,10,20,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1400,-6,0,1930,-16,0,0 +2013,7,12,5,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2010,-1,0,1148,-6,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,515,35,1,725,22,1,0 +2013,10,24,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-9,0,1346,-20,0,0 +2013,5,10,5,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,940,-11,0,1128,-17,0,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1948,106,1,2153,152,1,0 +2013,8,29,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,6,0,1604,9,0,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,0,0,830,-4,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,-3,0,754,-2,0,0 +2013,9,10,2,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1035,11,0,1645,13,0,0 +2013,5,6,1,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,9,0,2140,5,0,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,-2,0,1116,-6,0,0 +2013,7,2,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-7,0,830,-12,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1812,-4,0,1942,-7,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1457,-3,0,1632,-9,0,0 +2013,5,10,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,37,1,2140,36,1,0 +2013,5,23,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,29,1,2315,33,1,0 +2013,6,6,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1942,25,1,2035,48,1,0 +2013,7,10,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,3,0,1839,13,0,0 +2013,8,12,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,5,0,813,2,0,0 +2013,9,1,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1350,8,0,1450,-10,0,0 +2013,5,6,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,3,0,1005,-7,0,0 +2013,8,22,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-3,0,1305,-16,0,0 +2013,5,30,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,135,1,1928,107,1,0 +2013,5,30,4,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,-4,0,1225,-38,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1725,42,1,1925,9,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,-3,0,2235,-2,0,0 +2013,7,8,1,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,179,1,2126,170,1,0 +2013,10,31,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-2,0,820,10,0,0 +2013,4,15,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1730,-5,0,2017,0,0,0 +2013,4,28,7,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-6,0,1115,-30,0,0 +2013,8,22,4,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,908,-8,0,1152,16,1,0 +2013,9,16,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,925,17,1,1050,5,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1450,5,0,1710,2,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1135,-3,0,1510,-20,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1340,0,0,1450,-2,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-2,0,919,1,0,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,-1,0,1010,-4,0,0 +2013,8,7,3,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,67,1,1525,60,1,0 +2013,10,23,3,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,530,3,0,853,1,0,0 +2013,8,30,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,-3,0,1015,-12,0,0 +2013,10,27,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1045,-12,0,1220,-16,0,0 +2013,7,16,2,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,943,-6,0,1416,-20,0,0 +2013,8,16,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1805,33,1,2140,13,0,0 +2013,6,15,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,1008,-12,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-1,0,1306,-10,0,0 +2013,7,17,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,1,0,2155,-4,0,0 +2013,7,23,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2330,-8,0,833,-11,0,0 +2013,7,21,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1327,23,1,1514,14,0,0 +2013,4,13,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,655,10,0,825,10,0,0 +2013,5,5,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1358,-9,0,1456,-21,0,0 +2013,10,21,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1401,2,0,0 +2013,5,13,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1315,-6,0,1440,-9,0,0 +2013,9,13,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-1,0,1905,-9,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-4,0,1833,2,0,0 +2013,5,10,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1911,-5,0,2028,-14,0,0 +2013,10,18,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,840,-9,0,1006,-26,0,0 +2013,9,18,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1140,0,0,1419,6,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1350,-4,0,2050,12,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,0,0,1754,18,1,0 +2013,9,22,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1935,164,1,2045,153,1,0 +2013,10,4,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,7,0,1418,-2,0,0 +2013,4,12,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2040,-7,0,500,-7,0,0 +2013,6,8,6,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,2,0,1209,-8,0,0 +2013,6,25,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1729,-8,0,0 +2013,9,28,6,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1215,-1,0,1333,-13,0,0 +2013,10,4,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-3,0,1034,12,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2007,-2,0,2359,-7,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1955,67,1,2145,63,1,0 +2013,7,15,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1615,-4,0,1703,-6,0,0 +2013,10,15,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1555,48,1,1720,47,1,0 +2013,10,23,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,1,0,1202,-15,0,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,5,0,1715,7,0,0 +2013,6,20,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-7,0,906,12,0,0 +2013,5,7,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1655,5,0,1850,3,0,0 +2013,7,1,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,800,11,0,1100,164,1,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1119,-1,0,1245,-19,0,0 +2013,7,15,1,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,755,-2,0,905,0,0,0 +2013,5,24,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-2,0,1724,-18,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-5,0,759,-1,0,0 +2013,6,11,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,650,4,0,720,-7,0,0 +2013,4,14,7,FL,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,755,-7,0,844,-10,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1605,-5,0,1655,-18,0,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-2,0,2351,-10,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,83,1,1445,77,1,0 +2013,6,11,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,3,0,1810,-8,0,0 +2013,9,29,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,-4,0,2137,-15,0,0 +2013,6,13,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1750,34,1,1905,22,1,0 +2013,9,15,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1005,-4,0,1324,-16,0,0 +2013,10,22,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2140,-12,0,2346,-16,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1245,0,0,1605,-7,0,0 +2013,4,6,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,754,-13,0,0 +2013,10,16,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,2,0,920,-9,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1635,0,0,2345,8,0,0 +2013,9,8,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1710,-9,0,1905,-27,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,-6,0,1544,-23,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2050,27,1,2226,17,1,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1020,67,1,1256,53,1,0 +2013,7,8,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,0,0,1645,-1,0,0 +2013,7,27,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,-2,0,845,-7,0,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1143,12,0,2023,-14,0,0 +2013,4,17,3,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1345,-10,0,1617,-25,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1622,-9,0,1844,-13,0,0 +2013,5,30,4,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1115,1,0,1250,-23,0,0 +2013,6,5,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1425,-7,0,1620,-29,0,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,0,0,1115,2,0,0 +2013,10,19,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,845,-4,0,1052,-18,0,0 +2013,10,18,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1528,28,1,1659,29,1,0 +2013,7,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,3,0,2036,2,0,0 +2013,10,23,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-4,0,2352,1,0,0 +2013,6,27,4,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,33,1,1036,17,1,0 +2013,8,1,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-4,0,450,-13,0,0 +2013,9,9,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,931,9,0,1021,6,0,0 +2013,7,5,5,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1525,-6,0,1747,-18,0,0 +2013,4,3,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,725,-2,0,833,-3,0,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,837,-5,0,1122,-29,0,0 +2013,9,3,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,730,-17,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2210,-4,0,2315,1,0,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2017,-5,0,2114,-16,0,0 +2013,6,14,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,830,18,1,1647,64,1,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-4,0,1824,-10,0,0 +2013,7,14,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1224,7,0,1429,-18,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,7,0,2315,1,0,0 +2013,4,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,-6,0,1535,-9,0,0 +2013,4,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2005,-3,0,2120,-13,0,0 +2013,6,10,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-12,0,533,-14,0,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1215,-2,0,1315,-2,0,0 +2013,5,21,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,955,0,0,1130,-2,0,0 +2013,5,5,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,750,-1,0,920,-20,0,0 +2013,5,22,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1430,-3,0,1600,-12,0,0 +2013,4,1,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1005,25,1,1352,7,0,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,-6,0,1730,-16,0,0 +2013,4,1,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,840,-7,0,1209,-9,0,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1345,112,1,1700,88,1,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2150,-2,0,25,-6,0,0 +2013,8,16,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-6,0,1408,-11,0,0 +2013,9,6,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2140,18,1,2159,13,0,0 +2013,5,20,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1805,4,0,2010,4,0,0 +2013,8,16,5,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,1810,-3,0,2130,-21,0,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,0,0,1805,-26,0,0 +2013,6,6,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1345,-3,0,1710,6,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1135,5,0,1340,-1,0,0 +2013,4,13,6,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-5,0,919,-15,0,0 +2013,6,5,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1735,-4,0,2105,-16,0,0 +2013,6,4,2,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-5,0,920,-9,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1545,7,0,1810,6,0,0 +2013,6,5,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,720,-10,0,1117,-29,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,0,,2320,0,1,1 +2013,7,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1530,30,1,1825,25,1,0 +2013,7,24,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-5,0,944,-15,0,0 +2013,4,22,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1015,16,1,1526,3,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,942,-4,0,1211,-34,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1805,15,1,1935,-4,0,0 +2013,5,16,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1627,-3,0,1916,-2,0,0 +2013,10,1,2,DL,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-4,0,912,-22,0,0 +2013,4,13,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1955,-6,0,2135,-3,0,0 +2013,9,29,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2055,-6,0,5,-15,0,0 +2013,5,24,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1600,2,0,1645,1,0,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,820,25,1,1033,-3,0,0 +2013,7,20,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-3,0,714,-21,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1718,22,1,2331,3,0,0 +2013,5,21,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1440,-1,0,1648,10,0,0 +2013,8,28,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-3,0,1446,-24,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1650,13,0,1826,28,1,0 +2013,10,30,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,718,-6,0,1026,-18,0,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,-7,0,1235,-14,0,0 +2013,5,1,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,0,0,1520,-13,0,0 +2013,7,17,3,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,-4,0,1600,4,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1630,2,0,1808,19,1,0 +2013,10,5,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,2,0,750,-7,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1830,36,1,2000,47,1,0 +2013,9,9,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,655,-4,0,800,-7,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,35,1,2048,9,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1436,-8,0,1654,-21,0,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,0,0,1015,-2,0,0 +2013,7,13,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,740,2,0,745,5,0,0 +2013,10,25,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,-5,0,2112,-11,0,0 +2013,8,28,3,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2010,8,0,2100,-2,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1710,12,0,1820,8,0,0 +2013,4,17,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1431,274,1,1544,303,1,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1305,10,0,1840,-13,0,0 +2013,9,12,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-1,0,1630,3,0,0 +2013,8,7,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,-5,0,1133,1,0,0 +2013,9,6,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,-8,0,1630,-14,0,0 +2013,10,17,4,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,635,47,1,840,48,1,0 +2013,7,20,6,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1004,6,0,0 +2013,8,12,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,2,0,1434,3,0,0 +2013,4,4,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1122,-2,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-1,0,1940,-8,0,0 +2013,8,14,3,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,21,1,2140,12,0,0 +2013,4,2,2,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1225,3,0,1655,-10,0,0 +2013,4,29,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,908,-6,0,1418,-1,0,0 +2013,6,26,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,635,-3,0,730,-10,0,0 +2013,6,11,2,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,725,-8,0,0 +2013,8,18,7,YV,12339,Indianapolis International,Indianapolis,IN,14100,Philadelphia International,Philadelphia,PA,1801,0,0,1947,4,0,0 +2013,10,31,4,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1425,38,1,1630,24,1,0 +2013,6,8,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1500,-5,0,2311,-20,0,0 +2013,10,18,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,540,2,0,1200,-19,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,-4,0,1515,-8,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,6,0,1615,-6,0,0 +2013,5,12,7,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-8,0,717,-11,0,0 +2013,5,15,3,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,755,-3,0,1155,3,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1240,4,0,1600,-10,0,0 +2013,8,30,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2203,-5,0,2348,-21,0,0 +2013,7,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1950,0,0,2310,5,0,0 +2013,6,9,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-5,0,2137,-12,0,0 +2013,9,4,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,-4,0,1545,-4,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1753,9,0,1843,0,0,0 +2013,9,25,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,9,0,1408,10,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,3,0,1805,13,0,0 +2013,4,25,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,938,-4,0,1040,-3,0,0 +2013,4,30,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2015,-2,0,2255,-3,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1155,2,0,1300,-8,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1339,91,1,1816,157,1,0 +2013,9,17,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1455,-8,0,1615,-9,0,0 +2013,10,28,1,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1240,10,0,1425,-8,0,0 +2013,8,20,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,1,0,2145,6,0,0 +2013,10,24,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-9,0,848,-21,0,0 +2013,6,19,3,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,15,1,1507,0,0,0 +2013,4,4,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,725,-4,0,935,-19,0,0 +2013,4,26,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,825,-1,0,920,9,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1334,0,0,1629,8,0,0 +2013,9,11,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,7,0,2000,63,1,0 +2013,10,4,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,635,3,0,755,-9,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1420,19,1,1624,18,1,0 +2013,5,16,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1855,-1,0,2100,1,0,0 +2013,8,5,1,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1930,-4,0,2112,-29,0,0 +2013,5,7,2,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1834,-11,0,2036,-39,0,0 +2013,4,28,7,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1530,13,0,1710,0,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-9,0,1617,-9,0,0 +2013,10,2,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,-5,0,1537,0,0,0 +2013,7,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-2,0,1641,-12,0,0 +2013,5,7,2,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,600,0,0,746,-4,0,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,727,-5,0,902,-12,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-3,0,1323,-23,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,-3,0,957,14,0,0 +2013,4,25,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,6,0,805,3,0,0 +2013,6,17,1,AA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1735,106,1,645,84,1,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1715,0,0,2010,19,1,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2140,-1,0,2355,1,0,0 +2013,10,31,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,14,0,530,8,0,0 +2013,8,27,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1828,-7,0,1939,-17,0,0 +2013,4,27,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,-9,0,1937,-7,0,0 +2013,9,22,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1532,124,1,1838,117,1,0 +2013,6,29,6,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1000,-8,0,1116,-13,0,0 +2013,7,27,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,713,-1,0,1120,6,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1720,-2,0,2011,-13,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1205,14,0,1344,10,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-2,0,1315,-13,0,0 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,11,0,1905,-2,0,0 +2013,5,11,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,5,0,2250,-17,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,-1,0,1218,-4,0,0 +2013,9,3,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2030,12,0,2155,10,0,0 +2013,8,14,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,0,0,1808,-19,0,0 +2013,10,11,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-4,0,1604,-2,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2240,-2,0,124,-5,0,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,90,1,1338,89,1,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,555,0,0,1435,-6,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2005,0,,2250,0,1,1 +2013,10,12,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,0,0,1929,-9,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1335,6,0,1440,4,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,24,1,1313,13,0,0 +2013,6,12,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1225,0,0,1310,4,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,845,0,0,1410,-2,0,0 +2013,7,1,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2054,34,1,2228,41,1,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2302,111,1,12,98,1,0 +2013,9,2,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,15,1,1826,5,0,0 +2013,9,3,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,900,6,0,1028,7,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1900,15,1,2050,22,1,0 +2013,9,17,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1019,-3,0,1323,3,0,0 +2013,4,19,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1015,-7,0,1256,0,0,0 +2013,10,14,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,-2,0,1220,-5,0,0 +2013,10,17,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,1550,-6,0,0 +2013,5,17,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1215,0,0,1325,-3,0,0 +2013,5,25,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1440,6,0,1610,2,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-1,0,1623,-20,0,0 +2013,7,9,2,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1730,-7,0,1825,-19,0,0 +2013,5,2,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1240,19,1,1525,24,1,0 +2013,8,18,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,847,0,0,1105,-19,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1510,7,0,1736,-8,0,0 +2013,10,19,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1830,-3,0,2220,0,0,0 +2013,5,7,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,1,0,1054,7,0,0 +2013,9,12,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1320,0,0,1615,-3,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1220,115,1,1725,99,1,0 +2013,4,12,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1525,-4,0,1715,-23,0,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,715,-9,0,839,-7,0,0 +2013,8,5,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1831,-10,0,0 +2013,8,22,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,0,0,1415,-10,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,0,0,2035,-2,0,0 +2013,9,3,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2016,-8,0,2135,-12,0,0 +2013,5,16,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,935,-8,0,1145,-24,0,0 +2013,8,23,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,-6,0,2142,-12,0,0 +2013,5,3,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-5,0,1818,-27,0,0 +2013,10,19,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1710,21,1,2045,5,0,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-5,0,1326,-5,0,0 +2013,8,12,1,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,33,1,1845,9,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1930,-3,0,2312,0,0,0 +2013,4,11,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1910,-3,0,2040,-11,0,0 +2013,9,8,7,YV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,2126,19,1,29,9,0,0 +2013,9,28,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-4,0,1604,26,1,0 +2013,9,16,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,4,0,1806,-6,0,0 +2013,6,1,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,0,0,1345,-8,0,0 +2013,5,11,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1645,0,0,1939,6,0,0 +2013,4,10,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-8,0,754,-11,0,0 +2013,6,2,7,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1630,0,0,1902,-16,0,0 +2013,10,19,6,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1555,9,0,1846,-7,0,0 +2013,6,21,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1725,-1,0,1835,-3,0,0 +2013,8,9,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1913,-2,0,2048,-9,0,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,2,0,1130,1,0,0 +2013,10,20,7,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,700,-4,0,755,-4,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-2,0,1220,0,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1040,-2,0,1217,-15,0,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1130,-10,0,1346,-26,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-3,0,1304,-10,0,0 +2013,8,9,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,121,1,1315,129,1,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1710,27,1,1752,18,1,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1540,25,1,1745,21,1,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,2,0,1034,4,0,0 +2013,10,8,2,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,705,-6,0,826,-22,0,0 +2013,4,19,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1055,2,0,1210,-15,0,0 +2013,8,29,4,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1830,58,1,2000,53,1,0 +2013,6,8,6,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1040,-9,0,1605,44,1,0 +2013,8,16,5,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2020,-4,0,459,6,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,-10,0,2327,-9,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1530,0,0,1740,-6,0,0 +2013,10,8,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-4,0,754,-17,0,0 +2013,6,5,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,835,-1,0,930,-2,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1630,9,0,2325,11,0,0 +2013,6,6,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2044,9,0,2350,-3,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1040,-4,0,1135,-10,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1655,6,0,1740,-3,0,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,815,-1,0,1105,-15,0,0 +2013,7,14,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,750,-1,0,940,-12,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,9,0,1402,-1,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-3,0,2349,7,0,0 +2013,7,14,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,0,0,1045,3,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,610,-4,0,720,-8,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,21,1,2215,32,1,0 +2013,6,14,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1359,5,0,1544,-13,0,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,13,0,1926,-7,0,0 +2013,10,20,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2100,-6,0,2223,-15,0,0 +2013,4,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-5,0,1022,-20,0,0 +2013,10,18,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,6,0,18,-18,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,820,-1,0,930,-8,0,0 +2013,7,23,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-2,0,1341,-14,0,0 +2013,10,7,1,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,1230,-7,0,1255,-12,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1123,-7,0,1210,-11,0,0 +2013,4,30,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1535,-3,0,1655,-4,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1905,0,0,2120,-23,0,0 +2013,7,21,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1420,1,0,1445,12,0,0 +2013,7,20,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,-1,0,2001,-15,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1200,-2,0,1428,-31,0,0 +2013,8,6,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,855,-10,0,1010,-20,0,0 +2013,8,18,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,811,0,0,1335,-2,0,0 +2013,4,20,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-2,0,1420,-14,0,0 +2013,8,16,5,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,855,-7,0,1037,-2,0,0 +2013,9,26,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,-3,0,2247,-16,0,0 +2013,8,7,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1826,82,1,1926,73,1,0 +2013,4,19,5,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-1,0,1207,-5,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-3,0,2359,-15,0,0 +2013,5,9,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,12,0,1820,-2,0,0 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,731,-4,0,904,-11,0,0 +2013,5,7,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-2,0,1422,-9,0,0 +2013,7,11,4,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1935,89,1,2125,85,1,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,15,1,1453,3,0,0 +2013,5,8,3,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-8,0,1348,-17,0,0 +2013,9,22,7,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-3,0,803,-22,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1550,52,1,1940,59,1,0 +2013,10,13,7,9E,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,930,-7,0,1107,-27,0,0 +2013,8,12,1,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-6,0,1905,2,0,0 +2013,10,30,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-9,0,759,-3,0,0 +2013,8,8,4,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,17,1,900,16,1,0 +2013,5,27,1,F9,11042,Cleveland-Hopkins International,Cleveland,OH,14122,Pittsburgh International,Pittsburgh,PA,800,-12,0,840,-8,0,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,44,1,1850,30,1,0 +2013,6,29,6,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-4,0,2232,-10,0,0 +2013,6,19,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,5,0,809,20,1,0 +2013,5,20,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1239,-10,0,1405,-2,0,0 +2013,5,20,1,EV,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,930,19,1,1100,15,1,0 +2013,10,7,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,855,-2,0,955,-7,0,0 +2013,4,6,6,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1550,-3,0,1843,-17,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1510,-3,0,1725,-10,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1257,37,1,1515,8,0,0 +2013,10,20,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1505,9,0,1815,23,1,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,853,-5,0,1140,-7,0,0 +2013,10,13,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-3,0,1124,-21,0,0 +2013,10,4,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,-6,0,2109,-18,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1015,9,0,1440,-4,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-2,0,1113,-1,0,0 +2013,9,7,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1623,-6,0,1915,-12,0,0 +2013,6,19,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1601,-8,0,1747,1,0,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1030,0,0,1155,3,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1025,-5,0,1252,-18,0,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-4,0,842,-11,0,0 +2013,9,8,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-9,0,740,-11,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1050,-1,0,1150,-6,0,0 +2013,8,4,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1157,2,0,1329,14,0,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,-3,0,1320,-15,0,0 +2013,6,30,7,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,6,0,1200,18,1,0 +2013,5,22,3,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,16,1,2133,1,0,0 +2013,7,3,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1145,11,0,2014,11,0,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,6,0,1829,-2,0,0 +2013,4,4,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,930,12,0,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1950,-6,0,2110,-2,0,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,905,3,0,1020,-6,0,0 +2013,8,22,4,AA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1735,178,1,645,178,1,0 +2013,5,24,5,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,814,-4,0,1035,-7,0,0 +2013,7,11,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1410,2,0,1510,13,0,0 +2013,5,24,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,35,1,740,26,1,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2303,7,0,717,11,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,14,0,1250,11,0,0 +2013,7,19,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,845,-3,0,1110,-14,0,0 +2013,7,12,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,735,5,0,1050,-1,0,0 +2013,4,27,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,952,22,1,1109,11,0,0 +2013,10,17,4,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,0,0,2128,-3,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,88,1,2346,76,1,0 +2013,6,21,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1112,-4,0,0 +2013,8,29,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1320,76,1,1535,75,1,0 +2013,8,2,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-1,0,828,-4,0,0 +2013,7,21,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2255,179,1,144,180,1,0 +2013,9,5,4,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1925,-4,0,2124,6,0,0 +2013,5,16,4,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1933,-2,0,2055,15,1,0 +2013,8,14,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1230,27,1,1420,22,1,0 +2013,8,1,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,-4,0,2042,-15,0,0 +2013,8,3,6,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1325,-4,0,1520,3,0,0 +2013,7,15,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-1,0,1942,2,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,900,6,0,1015,17,1,0 +2013,7,1,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,636,5,0,754,-7,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-1,0,1333,1,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1512,-2,0,1639,-15,0,0 +2013,10,11,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-2,0,1634,-2,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1524,198,1,1846,192,1,0 +2013,8,3,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1325,61,1,1430,61,1,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-4,0,933,-15,0,0 +2013,10,10,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1359,-3,0,1747,12,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1905,4,0,15,-4,0,0 +2013,5,31,5,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1816,6,0,1926,-8,0,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1710,93,1,2005,81,1,0 +2013,6,3,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,745,1,0,930,-4,0,0 +2013,8,19,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1420,-4,0,2010,-7,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2025,75,1,2155,73,1,0 +2013,7,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,835,2,0,1105,-1,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-8,0,1430,-12,0,0 +2013,7,14,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1752,0,,1926,0,1,1 +2013,5,31,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1641,8,0,1743,-12,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1645,65,1,2000,70,1,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1236,2,0,1354,-4,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1910,31,1,2020,56,1,0 +2013,6,16,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-1,0,1840,13,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2145,-4,0,1,-11,0,0 +2013,8,20,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-11,0,1421,-29,0,0 +2013,9,15,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,931,-18,0,1235,-35,0,0 +2013,4,12,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1745,40,1,1905,32,1,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-7,0,1201,-8,0,0 +2013,9,22,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,0,0,1600,0,0,0 +2013,8,8,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-3,0,948,-5,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,22,1,1904,2,0,0 +2013,10,3,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1400,77,1,1435,64,1,0 +2013,9,11,3,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,615,-8,0,930,-16,0,0 +2013,4,23,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2210,-2,0,611,-23,0,0 +2013,5,12,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-1,0,1835,-9,0,0 +2013,4,7,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2110,-7,0,2158,-15,0,0 +2013,8,28,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1220,10,0,1330,16,1,0 +2013,8,2,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,0,0,2104,-11,0,0 +2013,7,13,6,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-5,0,1608,-7,0,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,4,0,2055,-24,0,0 +2013,5,9,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,-3,0,2258,-4,0,0 +2013,6,26,3,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,-5,0,1434,1,0,0 +2013,8,21,3,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,3,0,1852,12,0,0 +2013,5,7,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,600,-5,0,749,-11,0,0 +2013,7,20,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1345,24,1,1639,63,1,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1020,4,0,1310,3,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,-1,0,1507,-6,0,0 +2013,9,25,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,725,-5,0,830,-11,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,22,1,2235,24,1,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,-2,0,1437,36,1,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,805,-7,0,1040,-11,0,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-3,0,1226,15,1,0 +2013,6,19,3,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1510,-2,0,1900,27,1,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1340,5,0,1520,-7,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1501,4,0,1659,1,0,0 +2013,5,10,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,13,0,1325,15,1,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,600,0,0,710,6,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1019,-2,0,1545,-17,0,0 +2013,10,25,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1705,3,0,1925,-5,0,0 +2013,8,8,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,945,61,1,1105,53,1,0 +2013,5,17,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-9,0,1345,-9,0,0 +2013,10,22,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,-6,0,2059,0,0,0 +2013,6,21,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-10,0,1016,-18,0,0 +2013,4,28,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-5,0,1355,8,0,0 +2013,5,30,4,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,615,-6,0,750,-15,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,905,15,1,1420,27,1,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2250,8,0,2358,3,0,0 +2013,9,1,7,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,1,0,1116,-34,0,0 +2013,4,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2143,-10,0,2318,-10,0,0 +2013,4,28,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-7,0,1559,-16,0,0 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,12,0,750,4,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1007,31,1,1533,47,1,0 +2013,8,31,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2153,-6,0,2309,-17,0,0 +2013,6,18,2,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,800,-5,0,1013,-10,0,0 +2013,4,23,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-3,0,1050,-19,0,0 +2013,7,15,1,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2003,-5,0,2208,-41,0,0 +2013,9,20,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,15,1,1345,13,0,0 +2013,9,16,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1400,77,1,1930,75,1,0 +2013,6,4,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,841,-3,0,1035,-10,0,0 +2013,4,28,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,812,-14,0,0 +2013,4,24,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,759,-2,0,1039,-15,0,0 +2013,9,28,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1045,0,0,1150,3,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1112,-6,0,1239,-15,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1705,32,1,1935,25,1,0 +2013,8,21,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1455,-6,0,1743,-16,0,0 +2013,9,27,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-9,0,1606,-18,0,0 +2013,5,2,4,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,845,0,,1119,0,1,1 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1325,101,1,1445,99,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1210,-5,0,1414,-20,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1753,9,0,1915,61,1,0 +2013,6,25,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-1,0,1255,2,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1738,19,1,1901,8,0,0 +2013,6,13,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1025,0,,1210,0,1,1 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1535,9,0,1710,-19,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-4,0,1149,-29,0,0 +2013,6,20,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,12,0,2035,12,0,0 +2013,4,26,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,650,-11,0,0 +2013,10,15,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1915,11,0,2058,-2,0,0 +2013,9,20,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-3,0,1003,-5,0,0 +2013,5,23,4,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,6,0,1344,9,0,0 +2013,8,3,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1320,-4,0,1524,3,0,0 +2013,10,12,6,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,951,-4,0,1107,-7,0,0 +2013,9,24,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1448,3,0,0 +2013,4,6,6,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1020,-7,0,1251,4,0,0 +2013,4,8,1,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,1300,-5,0,1745,-18,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,0,0,1759,3,0,0 +2013,7,11,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,725,42,1,830,39,1,0 +2013,4,18,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-4,0,833,12,0,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1440,6,0,1725,7,0,0 +2013,6,25,2,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1355,-7,0,1744,-12,0,0 +2013,7,14,7,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,840,-3,0,1025,-19,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,0,0,2217,-8,0,0 +2013,10,20,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,21,1,532,10,0,0 +2013,8,15,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,-9,0,2340,-13,0,0 +2013,7,4,4,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-4,0,1030,-37,0,0 +2013,9,19,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,34,1,2013,44,1,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,645,-3,0,1015,10,0,0 +2013,6,24,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1145,-8,0,1320,-15,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,3,0,1526,6,0,0 +2013,5,11,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1635,-4,0,1801,-9,0,0 +2013,4,16,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1329,41,1,1506,35,1,0 +2013,8,28,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-2,0,2035,-25,0,0 +2013,8,10,6,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1316,3,0,1426,-3,0,0 +2013,9,22,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2227,-2,0,646,-32,0,0 +2013,10,17,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,645,-2,0,915,-8,0,0 +2013,4,25,4,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-6,0,1150,7,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-1,0,1417,-14,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1625,29,1,1843,6,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,2,0,1926,-4,0,0 +2013,10,26,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,550,-3,0,700,-7,0,0 +2013,6,24,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,-2,0,1612,5,0,0 +2013,5,3,5,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,831,71,1,905,95,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1525,12,0,1625,14,0,0 +2013,4,27,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1715,48,1,1825,43,1,0 +2013,5,31,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,840,-2,0,955,-4,0,0 +2013,9,16,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-1,0,1121,-6,0,0 +2013,4,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1705,33,1,1837,28,1,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,3,0,1615,-6,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,735,-7,0,1035,-7,0,0 +2013,4,21,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,-3,0,1400,-4,0,0 +2013,10,1,2,OO,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1432,-3,0,1657,-9,0,0 +2013,7,30,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,0,0,2240,3,0,0 +2013,6,5,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,734,-3,0,0 +2013,4,22,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1805,-1,0,1925,-12,0,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2110,37,1,2330,16,1,0 +2013,8,15,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-4,0,900,-16,0,0 +2013,4,16,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,3,0,2010,-6,0,0 +2013,7,27,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1105,0,0,1220,5,0,0 +2013,5,31,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1725,0,0,2005,-24,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2147,-1,0,2320,-8,0,0 +2013,7,2,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,7,0,1900,5,0,0 +2013,4,29,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1310,-5,0,1600,-11,0,0 +2013,4,13,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1918,40,1,2202,33,1,0 +2013,6,7,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,93,1,1940,90,1,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1910,21,1,55,33,1,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,605,-3,0,720,-1,0,0 +2013,9,24,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-8,0,855,-13,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1917,13,0,2055,18,1,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1315,8,0,1535,-2,0,0 +2013,8,9,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1123,-1,0,1336,-10,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,-5,0,1105,0,0,0 +2013,7,9,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,115,12,0,615,5,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2040,18,1,2210,14,0,0 +2013,7,4,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1155,-3,0,1310,-10,0,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1720,51,1,1819,42,1,0 +2013,7,16,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-5,0,1709,-1,0,0 +2013,8,18,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-5,0,725,-19,0,0 +2013,9,28,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,0,0,1524,-4,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,6,0,1740,-8,0,0 +2013,7,2,2,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1543,-1,0,1829,50,1,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,710,10,0,940,-5,0,0 +2013,6,8,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,605,-2,0,855,19,1,0 +2013,10,10,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,10,0,1800,14,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,41,1,2125,47,1,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1145,1,0,1735,-16,0,0 +2013,6,13,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1457,-6,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1936,8,0,2100,-23,0,0 +2013,9,23,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1137,-7,0,1342,-2,0,0 +2013,5,12,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,930,-5,0,946,20,1,0 +2013,4,19,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,825,57,1,1005,63,1,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,5,0,1158,-12,0,0 +2013,6,18,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-6,0,924,-8,0,0 +2013,8,8,4,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,833,7,0,0 +2013,4,3,3,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1930,-9,0,2249,-18,0,0 +2013,10,23,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,809,-2,0,0 +2013,4,1,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-6,0,949,-6,0,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1710,12,0,2015,-4,0,0 +2013,9,16,1,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,609,-3,0,758,-12,0,0 +2013,4,22,1,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1712,110,1,1945,95,1,0 +2013,8,20,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,10,0,1617,-5,0,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-1,0,2255,-4,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1500,27,1,2256,3,0,0 +2013,6,18,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,842,3,0,953,6,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1850,-2,0,2010,-1,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,3,0,2335,-7,0,0 +2013,8,22,4,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1905,16,1,2240,25,1,0 +2013,9,1,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,704,-2,0,826,-8,0,0 +2013,6,29,6,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,813,-1,0,929,-12,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,2,0,1325,-13,0,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,745,-6,0,915,-4,0,0 +2013,10,2,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1322,-8,0,1530,-2,0,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,700,9,0,1056,2,0,0 +2013,7,28,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-1,0,2214,-11,0,0 +2013,5,19,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,37,1,2215,36,1,0 +2013,4,13,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,-2,0,1200,-2,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1235,0,0,1340,-6,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1931,58,1,2117,40,1,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1432,-1,0,1552,-1,0,0 +2013,8,23,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-12,0,1848,-16,0,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,5,0,1940,-11,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,29,1,2030,20,1,0 +2013,5,2,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1559,9,0,1758,-17,0,0 +2013,5,19,7,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1350,2,0,1505,23,1,0 +2013,5,25,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1453,-8,0,1634,-8,0,0 +2013,9,29,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-1,0,1130,4,0,0 +2013,10,26,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1545,-9,0,1705,-17,0,0 +2013,7,26,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1243,0,0,1611,-10,0,0 +2013,6,25,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1259,-6,0,1835,-16,0,0 +2013,10,21,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,-1,0,1345,-7,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-5,0,2308,-18,0,0 +2013,9,14,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1930,3,0,2105,3,0,0 +2013,5,24,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,630,13,0,700,7,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1605,1,0,1717,-5,0,0 +2013,10,13,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2015,-6,0,2130,-20,0,0 +2013,8,30,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1400,-9,0,1525,-8,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1950,-4,0,2150,-19,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2010,-8,0,2134,-22,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1335,3,0,1547,-12,0,0 +2013,8,28,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1105,-5,0,1205,-5,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,14,0,1310,-10,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,655,-8,0,905,-11,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-10,0,201,-13,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2020,1,0,100,-6,0,0 +2013,10,28,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2345,4,0,601,-1,0,0 +2013,9,20,5,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,840,-3,0,1245,-25,0,0 +2013,4,28,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,-3,0,1615,-13,0,0 +2013,6,23,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,61,1,530,56,1,0 +2013,5,4,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1138,-7,0,1251,-15,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1102,32,1,1556,67,1,0 +2013,4,11,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1327,-2,0,1625,-16,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,16,1,2010,0,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2043,17,1,2302,12,0,0 +2013,4,4,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,266,1,2102,255,1,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,4,0,1515,19,1,0 +2013,7,20,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1100,-6,0,1410,11,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1425,7,0,1845,5,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,133,1,1600,117,1,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,14,0,1140,13,0,0 +2013,10,10,4,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1715,5,0,1953,-7,0,0 +2013,4,23,2,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,73,1,1901,71,1,0 +2013,8,27,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1535,3,0,1859,-1,0,0 +2013,5,19,7,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,818,-2,0,959,-2,0,0 +2013,7,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,0,0,1610,2,0,0 +2013,4,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1355,15,1,2000,16,1,0 +2013,5,15,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,655,-1,0,805,3,0,0 +2013,6,16,7,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,265,1,1705,293,1,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1635,-1,0,1855,-7,0,0 +2013,5,30,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1037,1,0,1410,8,0,0 +2013,5,23,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1449,55,1,1510,64,1,0 +2013,9,16,1,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,6,0,1802,2,0,0 +2013,7,2,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1120,5,0,1905,23,1,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,1,0,1325,14,0,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2035,-3,0,2156,-14,0,0 +2013,9,7,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,-4,0,919,-17,0,0 +2013,5,26,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1045,-3,0,1225,-18,0,0 +2013,9,16,1,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1525,13,0,1820,4,0,0 +2013,5,9,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1640,-3,0,1919,-14,0,0 +2013,5,17,5,VX,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,945,70,1,1800,54,1,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2010,-4,0,2220,-2,0,0 +2013,8,2,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,16,1,2140,1,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1745,11,0,1910,2,0,0 +2013,7,7,7,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,0,,2202,0,1,1 +2013,9,18,3,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1433,-3,0,2222,-5,0,0 +2013,8,8,4,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,11,0,2138,1,0,0 +2013,7,25,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,720,-1,0,945,-19,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,945,-1,0,1045,-5,0,0 +2013,10,22,2,F9,11292,Denver International,Denver,CO,14635,Southwest Florida International,Fort Myers,FL,1105,-2,0,1638,-15,0,0 +2013,6,5,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,-1,0,820,-6,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,20,1,1830,21,1,0 +2013,10,25,5,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,6,0,747,-14,0,0 +2013,4,11,4,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1650,38,1,1820,45,1,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2120,39,1,2302,32,1,0 +2013,5,22,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,525,-1,0,623,-9,0,0 +2013,6,28,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1401,115,1,1607,142,1,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,1,0,1130,-14,0,0 +2013,9,19,4,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1600,-11,0,1747,-26,0,0 +2013,8,27,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-1,0,1808,-9,0,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1135,-1,0,1300,-31,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1125,61,1,1420,71,1,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1414,-6,0,1535,-11,0,0 +2013,7,15,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,-3,0,2147,9,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1552,3,0,1953,-5,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,0,0,2102,-11,0,0 +2013,10,3,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,909,9,0,1036,13,0,0 +2013,8,22,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,-1,0,1135,-12,0,0 +2013,9,30,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,13,0,1950,0,0,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,755,-8,0,905,-9,0,0 +2013,7,25,4,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1650,16,1,1846,1,0,0 +2013,5,31,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,20,1,1420,15,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2300,-5,0,47,-16,0,0 +2013,6,2,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1225,43,1,1355,34,1,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1405,1,0,1650,0,0,0 +2013,7,28,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1500,-6,0,1711,4,0,0 +2013,8,14,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,25,1,2239,48,1,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,655,-1,0,1000,-10,0,0 +2013,7,18,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,155,1,2121,142,1,0 +2013,9,14,6,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1800,66,1,1918,62,1,0 +2013,5,26,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-7,0,1122,-10,0,0 +2013,6,30,7,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1015,-1,0,1145,-15,0,0 +2013,5,21,2,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2010,6,0,2254,32,1,0 +2013,7,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1713,-5,0,2057,-15,0,0 +2013,10,21,1,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,810,-3,0,1111,-10,0,0 +2013,8,16,5,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1745,-5,0,2316,-15,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-1,0,1130,-10,0,0 +2013,8,10,6,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1918,-1,0,2042,3,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,44,1,1717,33,1,0 +2013,9,18,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,600,-10,0,819,-17,0,0 +2013,5,17,5,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1727,-8,0,1915,-9,0,0 +2013,7,12,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1401,22,1,1530,36,1,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,810,-5,0,1005,-11,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,830,7,0,1045,-8,0,0 +2013,8,23,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,4,0,1200,4,0,0 +2013,7,13,6,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2154,38,1,610,21,1,0 +2013,6,3,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,942,-4,0,0 +2013,5,26,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1314,-5,0,1535,6,0,0 +2013,9,8,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1257,5,0,1559,10,0,0 +2013,8,27,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2105,-3,0,2220,-10,0,0 +2013,9,10,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-7,0,844,14,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,944,1,0,1105,7,0,0 +2013,9,24,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-10,0,1119,-5,0,0 +2013,8,18,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1415,1,0,1505,-4,0,0 +2013,5,4,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1555,-1,0,1833,-16,0,0 +2013,9,30,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-7,0,717,-22,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1540,12,0,1820,-10,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,-5,0,1735,-12,0,0 +2013,9,2,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,46,1,2125,52,1,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,1,0,1652,-18,0,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,900,-5,0,1144,-13,0,0 +2013,4,6,6,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,826,-1,0,921,-11,0,0 +2013,7,16,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1910,-4,0,2035,1,0,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-5,0,2330,4,0,0 +2013,9,7,6,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1654,-5,0,1925,-23,0,0 +2013,8,26,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,2,0,1935,-8,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1240,5,0,1520,-4,0,0 +2013,8,15,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,-1,0,147,-12,0,0 +2013,10,23,3,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,805,-3,0,1044,-8,0,0 +2013,5,18,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,855,7,0,1125,-3,0,0 +2013,4,9,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,610,-1,0,705,-6,0,0 +2013,7,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1010,34,1,1150,30,1,0 +2013,9,4,3,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1630,-7,0,1923,-3,0,0 +2013,6,24,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1800,37,1,1915,27,1,0 +2013,4,10,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,625,2,0,1439,-2,0,0 +2013,7,12,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1625,87,1,1710,89,1,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1705,-1,0,1925,-9,0,0 +2013,5,13,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1818,-6,0,2030,-11,0,0 +2013,7,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,33,1,1154,33,1,0 +2013,8,2,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1809,-7,0,2013,-12,0,0 +2013,4,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2155,-8,0,50,-20,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,905,4,0,1140,-16,0,0 +2013,7,27,6,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-8,0,2142,-3,0,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1333,-3,0,1515,1,0,0 +2013,8,13,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-6,0,1030,-15,0,0 +2013,6,26,3,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1359,21,1,1642,30,1,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1248,31,1,1657,28,1,0 +2013,5,17,5,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,954,19,1,1127,16,1,0 +2013,6,16,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,-6,0,1310,-14,0,0 +2013,9,17,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2000,35,1,2125,26,1,0 +2013,8,24,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1350,-8,0,1500,14,0,0 +2013,9,15,7,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2319,12,0,730,-4,0,0 +2013,4,19,5,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2015,196,1,2200,187,1,0 +2013,7,23,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,38,1,1341,10,0,0 +2013,4,29,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1810,-7,0,1843,-23,0,0 +2013,5,30,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-7,0,1959,-9,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,928,-5,0,1135,-1,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,700,-6,0,837,-14,0,0 +2013,8,27,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1950,-8,0,2055,-9,0,0 +2013,7,22,1,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1819,210,1,1900,196,1,0 +2013,9,9,1,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1430,-7,0,1606,-6,0,0 +2013,9,23,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,735,0,0,848,-11,0,0 +2013,7,23,2,FL,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,900,-6,0,1040,-17,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1726,-1,0,1739,-9,0,0 +2013,7,28,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2350,60,1,724,50,1,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,45,1,1415,39,1,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,-2,0,1051,6,0,0 +2013,5,21,2,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,550,-4,0,845,1,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,16,1,1855,11,0,0 +2013,9,2,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1340,58,1,1405,64,1,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,11,0,1205,11,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1727,-3,0,1740,18,1,0 +2013,7,28,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-1,0,930,-8,0,0 +2013,10,24,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,625,-2,0,645,-9,0,0 +2013,5,23,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,28,1,1435,9,0,0 +2013,4,19,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,737,0,0,827,-4,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1050,-2,0,1435,-17,0,0 +2013,10,26,6,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,50,1,1830,25,1,0 +2013,6,7,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1610,-1,0,1816,18,1,0 +2013,4,25,4,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1215,5,0,1405,11,0,0 +2013,8,5,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1751,-6,0,2058,-14,0,0 +2013,10,10,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,0,0,1450,-4,0,0 +2013,5,19,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,549,12,0,720,5,0,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1609,35,1,2359,28,1,0 +2013,10,10,4,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1655,-7,0,2031,-14,0,0 +2013,6,1,6,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1235,18,1,2100,-6,0,0 +2013,5,15,3,US,10529,Bradley International,Hartford,CT,11278,Ronald Reagan Washington National,Washington,DC,620,6,0,744,3,0,0 +2013,4,3,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,-4,0,940,-2,0,0 +2013,6,18,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,5,0,1030,4,0,0 +2013,7,12,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1805,3,0,1949,-19,0,0 +2013,4,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1430,-6,0,1821,-8,0,0 +2013,8,27,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1545,-6,0,1650,-7,0,0 +2013,10,21,1,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,21,1,1827,16,1,0 +2013,9,4,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1453,-5,0,1539,-6,0,0 +2013,8,16,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1815,-3,0,2110,-7,0,0 +2013,7,4,4,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1610,7,0,1950,18,1,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,59,1,4,43,1,0 +2013,4,5,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,11,0,1330,11,0,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,635,-2,0,930,-2,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1531,2,0,1912,-16,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,831,0,0,952,-10,0,0 +2013,10,7,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,1,0,823,-8,0,0 +2013,4,20,6,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,945,-5,0,1202,-16,0,0 +2013,4,18,4,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,830,48,1,1620,27,1,0 +2013,7,30,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1522,-6,0,1829,-10,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1706,-5,0,2104,-14,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,2030,20,1,35,16,1,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2022,-2,0,2155,-19,0,0 +2013,4,2,2,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1825,6,0,2015,8,0,0 +2013,9,3,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1210,30,1,1403,18,1,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2129,130,1,2349,108,1,0 +2013,5,13,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-10,0,1856,-2,0,0 +2013,7,5,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1015,-2,0,1115,-9,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,846,-1,0,1638,-7,0,0 +2013,8,3,6,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,-6,0,1718,4,0,0 +2013,9,18,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,845,-4,0,1151,-3,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1945,-5,0,2215,15,1,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1425,41,1,1545,29,1,0 +2013,10,4,5,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,110,1,1418,120,1,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1035,16,1,1600,3,0,0 +2013,6,20,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1111,5,0,1639,1,0,0 +2013,8,5,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,847,-10,0,1207,-24,0,0 +2013,10,25,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,840,-3,0,945,-5,0,0 +2013,7,14,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,6,0,1200,-4,0,0 +2013,8,23,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,1,0,1915,-11,0,0 +2013,5,17,5,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1435,72,1,1624,60,1,0 +2013,8,12,1,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,19,1,1903,23,1,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,855,-11,0,0 +2013,10,4,5,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1425,7,0,2245,22,1,0 +2013,8,12,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1000,21,1,1005,14,0,0 +2013,10,22,2,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1155,-2,0,1443,-7,0,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1725,19,1,2245,22,1,0 +2013,8,18,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1410,-3,0,1555,-11,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,3,0,1249,-7,0,0 +2013,5,27,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1155,59,1,1325,56,1,0 +2013,9,10,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1110,-1,0,1145,-7,0,0 +2013,7,27,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1850,-5,0,2012,-16,0,0 +2013,9,5,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,0,0,750,-11,0,0 +2013,9,12,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-5,0,805,-3,0,0 +2013,6,27,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1510,-4,0,1745,-11,0,0 +2013,6,5,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-4,0,1748,3,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,14,0,2110,3,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,-2,0,2104,-29,0,0 +2013,5,28,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,645,2,0,825,-16,0,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2115,-9,0,20,1,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-1,0,950,-4,0,0 +2013,5,29,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1558,-1,0,1938,-8,0,0 +2013,4,27,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1650,-4,0,1911,-11,0,0 +2013,7,15,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1535,-8,0,1653,-9,0,0 +2013,6,13,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1945,157,1,2223,169,1,0 +2013,5,13,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,4,0,1810,20,1,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1419,9,0,1623,5,0,0 +2013,7,24,3,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,28,1,1821,23,1,0 +2013,4,12,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,800,-1,0,915,-8,0,0 +2013,10,20,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,19,1,1820,0,0,0 +2013,6,1,6,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1412,-2,0,1648,-13,0,0 +2013,5,11,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1028,-7,0,1426,-6,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,945,-6,0,1250,-9,0,0 +2013,10,23,3,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1409,-5,0,1639,-10,0,0 +2013,5,6,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-6,0,900,-16,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2030,34,1,2258,35,1,0 +2013,10,25,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1723,-11,0,1900,-14,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1345,12,0,2153,-4,0,0 +2013,5,16,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1727,-2,0,1844,-14,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1459,1,0,1636,-7,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,825,-2,0,947,-18,0,0 +2013,7,18,4,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,640,-8,0,1140,9,0,0 +2013,10,23,3,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-2,0,1219,-18,0,0 +2013,5,6,1,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,14,0,1120,7,0,0 +2013,9,23,1,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-4,0,805,-13,0,0 +2013,5,28,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,3,0,1620,42,1,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,618,-3,0,840,-13,0,0 +2013,10,6,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-1,0,1520,-4,0,0 +2013,8,4,7,DL,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1950,-5,0,2127,-16,0,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,129,1,2110,105,1,0 +2013,8,28,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1650,-4,0,1755,-5,0,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-2,0,1115,-4,0,0 +2013,8,25,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,645,-9,0,933,-16,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,-8,0,2225,-4,0,0 +2013,10,5,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1451,-1,0,1538,-4,0,0 +2013,4,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,-4,0,1838,-11,0,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1720,70,1,1841,64,1,0 +2013,8,10,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,8,0,1642,18,1,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,174,1,2226,159,1,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1302,-3,0,1542,7,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1255,-1,0,1600,-4,0,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,551,48,1,700,47,1,0 +2013,8,27,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1455,16,1,1605,6,0,0 +2013,10,17,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,17,1,1705,11,0,0 +2013,7,13,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,2,0,1800,-5,0,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1824,15,1,2137,9,0,0 +2013,7,12,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1510,12,0,1815,-9,0,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,2,0,1040,5,0,0 +2013,6,2,7,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2345,-4,0,820,-19,0,0 +2013,10,15,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1450,12,0,1500,23,1,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,630,-5,0,940,-16,0,0 +2013,10,3,4,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1843,-3,0,2034,-18,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2104,-3,0,2349,-11,0,0 +2013,9,2,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,39,1,1549,29,1,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-6,0,830,-17,0,0 +2013,10,10,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,600,-6,0,1000,-20,0,0 +2013,9,2,1,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1209,-5,0,1749,-11,0,0 +2013,10,25,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,550,5,0,1110,-15,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1912,0,0,2029,1,0,0 +2013,5,13,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1045,-7,0,1201,-17,0,0 +2013,10,27,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-9,0,1110,-19,0,0 +2013,7,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,934,-1,0,1036,-15,0,0 +2013,10,3,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,855,-10,0,1029,-20,0,0 +2013,4,9,2,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1645,90,1,1913,114,1,0 +2013,5,24,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1554,-4,0,1820,-6,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,3,0,2255,-13,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,522,32,1,805,43,1,0 +2013,5,19,7,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,955,2,0,1205,-3,0,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,-3,0,901,-6,0,0 +2013,4,20,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1800,0,0,1915,-7,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-3,0,922,-10,0,0 +2013,10,13,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1215,47,1,1335,60,1,0 +2013,5,5,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,69,1,1039,46,1,0 +2013,6,28,5,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,600,-3,0,900,-7,0,0 +2013,4,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1545,0,0,1705,8,0,0 +2013,6,24,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1852,257,1,2054,236,1,0 +2013,6,27,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,5,0,1014,-1,0,0 +2013,6,6,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1030,33,1,1210,22,1,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1845,7,0,2345,1,0,0 +2013,9,7,6,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1412,-13,0,1430,-22,0,0 +2013,7,27,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1820,37,1,1935,7,0,0 +2013,9,4,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1240,4,0,1420,-4,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,8,0,901,0,0,0 +2013,8,14,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,15,5,0,621,-8,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,914,-2,0,1031,-3,0,0 +2013,10,8,2,9E,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1613,-3,0,1754,-10,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,0,0,2025,5,0,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1620,9,0,1705,5,0,0 +2013,7,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,-2,0,1823,-10,0,0 +2013,6,30,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,239,1,1604,226,1,0 +2013,6,28,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1205,3,0,1355,20,1,0 +2013,4,8,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1651,-8,0,1759,-8,0,0 +2013,6,25,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,-3,0,2255,-9,0,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,-6,0,2224,-23,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,138,1,1719,153,1,0 +2013,7,27,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,740,-8,0,745,-11,0,0 +2013,9,30,1,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,915,-3,0,1005,1,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1235,-4,0,1555,-3,0,0 +2013,10,15,2,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1915,-3,0,2020,-15,0,0 +2013,4,20,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,0,,1010,0,1,1 +2013,8,2,5,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,808,-5,0,926,-5,0,0 +2013,4,8,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,845,0,0,1010,1,0,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1754,-7,0,2046,-27,0,0 +2013,4,25,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1830,11,0,1925,10,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1510,-3,0,1724,0,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1425,13,0,1525,5,0,0 +2013,6,4,2,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1022,9,0,1353,20,1,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1708,7,0,1840,18,1,0 +2013,6,14,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1245,-1,0,1425,1,0,0 +2013,7,18,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1105,-3,0,1220,-11,0,0 +2013,7,29,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-3,0,913,-2,0,0 +2013,7,24,3,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-10,0,921,-17,0,0 +2013,5,20,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,856,11,0,1015,-7,0,0 +2013,7,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,-2,0,1750,2,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,-2,0,1255,-11,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,-5,0,1055,-7,0,0 +2013,8,4,7,UA,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,850,0,0,1014,-22,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1250,3,0,1607,-8,0,0 +2013,5,8,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1000,15,1,1230,-5,0,0 +2013,6,3,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,6,0,1550,-7,0,0 +2013,6,6,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1941,93,1,2117,99,1,0 +2013,8,24,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1706,-8,0,2015,-21,0,0 +2013,6,4,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,0,0,950,-7,0,0 +2013,8,23,5,EV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,902,-9,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1250,9,0,1401,30,1,0 +2013,9,22,7,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1100,-5,0,1335,-1,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-1,0,1900,27,1,0 +2013,5,2,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,22,1,2159,8,0,0 +2013,10,17,4,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1545,10,0,1805,5,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,-4,0,1150,-4,0,0 +2013,8,29,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,-1,0,2250,-6,0,0 +2013,10,29,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-1,0,925,-13,0,0 +2013,6,8,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,720,-3,0,945,-14,0,0 +2013,5,7,2,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1233,-4,0,1445,-10,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-4,0,1449,-22,0,0 +2013,7,30,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-9,0,1100,-7,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,-5,0,2037,-5,0,0 +2013,5,15,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,1,0,1610,21,1,0 +2013,6,19,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,-1,0,2156,-1,0,0 +2013,10,22,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1145,-9,0,1245,-16,0,0 +2013,7,13,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,2150,-8,0,202,-8,0,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2230,112,1,30,112,1,0 +2013,4,6,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1741,4,0,2035,-16,0,0 +2013,10,2,3,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,29,1,2136,28,1,0 +2013,10,4,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,600,1,0,710,5,0,0 +2013,9,23,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,2,0,743,-5,0,0 +2013,9,11,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1746,28,1,1951,6,0,0 +2013,10,16,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1055,-1,0,1222,-6,0,0 +2013,9,28,6,EV,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1447,-23,0,0 +2013,7,31,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1530,5,0,1635,-5,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,21,1,1505,12,0,0 +2013,7,19,5,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1450,6,0,1620,-2,0,0 +2013,4,21,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1424,-4,0,1524,-18,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,-7,0,1130,-16,0,0 +2013,9,8,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-5,0,1226,-11,0,0 +2013,10,2,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-5,0,2047,13,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1417,9,0,1555,-7,0,0 +2013,4,25,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1230,81,1,1545,78,1,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1400,-2,0,1528,-13,0,0 +2013,4,25,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,9,0,1220,21,1,0 +2013,4,15,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,850,-1,0,1653,-20,0,0 +2013,8,8,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,3,0,2225,3,0,0 +2013,5,1,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-3,0,1028,-9,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1356,1,0,1605,-10,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1230,-2,0,1435,-12,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2115,-2,0,2240,-11,0,0 +2013,7,8,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1920,0,,2110,0,1,1 +2013,9,7,6,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1337,-9,0,1550,-13,0,0 +2013,8,25,7,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,725,-5,0,820,-20,0,0 +2013,7,17,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,34,1,1825,33,1,0 +2013,6,20,4,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1210,3,0,1655,-8,0,0 +2013,9,12,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-8,0,1747,-11,0,0 +2013,10,22,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,515,-12,0,628,-15,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,4,0,1430,28,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1734,-2,0,1905,-21,0,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2245,22,1,737,7,0,0 +2013,10,7,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,730,0,0,1005,-11,0,0 +2013,4,2,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,5,0,1105,1,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,-4,0,1355,-10,0,0 +2013,6,10,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12191,William P Hobby,Houston,TX,1250,49,1,1915,43,1,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1525,36,1,1630,40,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,906,9,0,1035,0,0,0 +2013,9,25,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1719,-10,0,2012,-27,0,0 +2013,9,8,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,743,-17,0,0 +2013,6,4,2,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1230,-10,0,1442,-16,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,2,0,2330,-10,0,0 +2013,9,3,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-7,0,1530,-20,0,0 +2013,10,29,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1100,-4,0,1435,-15,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,0,0,1055,0,0,0 +2013,9,27,5,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-3,0,1515,-23,0,0 +2013,10,21,1,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,4,0,1910,1,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,104,1,2322,98,1,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1319,23,1,1527,15,1,0 +2013,10,18,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-4,0,2109,-13,0,0 +2013,4,3,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1409,-6,0,1525,-9,0,0 +2013,6,30,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,65,1,1857,52,1,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1241,15,1,1620,-3,0,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,0,0,1130,-4,0,0 +2013,6,24,1,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1241,6,0,1423,-3,0,0 +2013,10,1,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,525,-5,0,847,-7,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,647,-7,0,926,-16,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1537,2,0,1818,-20,0,0 +2013,8,19,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-11,0,1325,-27,0,0 +2013,9,10,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,650,-5,0,815,-18,0,0 +2013,9,14,6,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,930,-17,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1135,-4,0,1319,-29,0,0 +2013,6,11,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-3,0,815,-7,0,0 +2013,6,3,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1310,-10,0,1358,-5,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,11,0,1245,6,0,0 +2013,5,6,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1110,5,0,1215,-1,0,0 +2013,8,28,3,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,600,-3,0,817,-4,0,0 +2013,4,5,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1915,-9,0,2236,-4,0,0 +2013,8,31,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-5,0,1853,-10,0,0 +2013,5,30,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2256,-3,0,2345,-7,0,0 +2013,9,30,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1500,-5,0,1600,17,1,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,635,-2,0,925,-9,0,0 +2013,8,13,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,720,-1,0,1025,7,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,-3,0,2307,-17,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,0,0,2337,-10,0,0 +2013,6,23,7,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,-1,0,1840,-13,0,0 +2013,4,3,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,-1,0,1650,-8,0,0 +2013,9,29,7,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1925,-6,0,2032,-20,0,0 +2013,5,21,2,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1037,-10,0,1153,-17,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,33,1,1035,74,1,0 +2013,6,2,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,11,0,1855,16,1,0 +2013,6,17,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,8,0,1826,1,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,3,0,1445,3,0,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1720,31,1,1835,38,1,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,845,-1,0,1110,-2,0,0 +2013,6,12,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,634,-4,0,835,-15,0,0 +2013,4,20,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,-7,0,1218,-1,0,0 +2013,5,4,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1524,-4,0,1727,-24,0,0 +2013,8,8,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,1,0,1256,-8,0,0 +2013,8,25,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,13,0,1025,-8,0,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1959,1,0,2156,-23,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1405,-1,0,1845,3,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,3,0,2330,-3,0,0 +2013,4,29,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,1348,4,0,0 +2013,4,7,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,342,1,1445,326,1,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1616,-3,0,21,-6,0,0 +2013,8,4,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1612,0,0,15,-23,0,0 +2013,7,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,180,1,1603,228,1,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1450,4,0,1659,6,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1755,-4,0,2012,-23,0,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,0,,1145,0,1,1 +2013,9,7,6,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,805,13,0,855,11,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,0,0,745,-9,0,0 +2013,5,26,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1103,-12,0,0 +2013,8,29,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-5,0,1558,-7,0,0 +2013,5,21,2,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1037,-2,0,1410,0,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,842,-2,0,1119,14,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,11,0,1230,-2,0,0 +2013,9,18,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1130,-4,0,1908,7,0,0 +2013,4,8,1,UA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,540,-1,0,746,-10,0,0 +2013,4,17,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1745,-5,0,1925,-18,0,0 +2013,6,10,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,115,1,1724,141,1,0 +2013,7,8,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,7,0,835,-4,0,0 +2013,6,27,4,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-8,0,1201,-8,0,0 +2013,9,29,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1435,-7,0,1715,-15,0,0 +2013,9,19,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,900,22,1,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-6,0,1525,11,0,0 +2013,10,19,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1345,6,0,1555,-16,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,0,0,850,3,0,0 +2013,7,4,4,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,708,-5,0,829,-4,0,0 +2013,6,20,4,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1150,-4,0,1257,-16,0,0 +2013,10,21,1,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1234,-3,0,1643,-29,0,0 +2013,9,28,6,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,955,-1,0,1745,-12,0,0 +2013,9,28,6,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-4,0,1811,-30,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1650,16,1,1810,-3,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,26,1,1215,19,1,0 +2013,6,17,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,-4,0,1645,-7,0,0 +2013,4,29,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,730,-2,0,1023,-13,0,0 +2013,8,18,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,48,1,1920,46,1,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,30,1,2350,11,0,0 +2013,5,19,7,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-9,0,1650,-33,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2040,102,1,2303,80,1,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,924,0,0,1211,-8,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,134,1,1905,166,1,0 +2013,8,18,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1443,-3,0,1655,-21,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,0,0,1146,0,0,0 +2013,7,24,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,0,0,1915,-4,0,0 +2013,5,17,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1545,-1,0,1850,-7,0,0 +2013,9,16,1,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,958,-15,0,1423,-8,0,0 +2013,9,2,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1852,-5,0,2007,-26,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1130,0,,1445,0,1,1 +2013,7,3,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,1,0,925,4,0,0 +2013,10,23,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1651,-2,0,2100,-14,0,0 +2013,6,15,6,DL,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1559,29,1,1817,20,1,0 +2013,10,7,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,740,-9,0,1030,-10,0,0 +2013,4,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1010,5,0,1215,-1,0,0 +2013,7,11,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,-2,0,2035,-8,0,0 +2013,8,11,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1110,-4,0,1229,-14,0,0 +2013,9,25,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,915,7,0,1025,-1,0,0 +2013,10,9,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1424,-13,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1427,67,1,1910,58,1,0 +2013,7,11,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,180,1,1850,169,1,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,20,1,2102,8,0,0 +2013,9,4,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,-9,0,2039,-44,0,0 +2013,9,2,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-6,0,1135,1,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,-1,0,1545,8,0,0 +2013,9,6,5,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,57,1,1945,6,0,0 +2013,10,12,6,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,825,-1,0,1115,-12,0,0 +2013,9,4,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,830,24,1,0 +2013,10,25,5,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1735,-7,0,1953,3,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,-2,0,1700,-13,0,0 +2013,5,5,7,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,710,-8,0,1119,-19,0,0 +2013,10,8,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1403,-2,0,1653,-11,0,0 +2013,4,1,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,81,1,1834,91,1,0 +2013,5,18,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1659,-5,0,1842,-6,0,0 +2013,4,19,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,3,0,1836,-2,0,0 +2013,8,3,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,515,2,0,848,2,0,0 +2013,5,17,5,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-8,0,1059,-14,0,0 +2013,5,15,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,315,1,2105,354,1,0 +2013,8,8,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,1,0,1155,-9,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1940,100,1,2155,96,1,0 +2013,6,15,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1210,16,1,1330,-1,0,0 +2013,7,25,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,34,1,1950,18,1,0 +2013,9,21,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1350,-2,0,1450,-11,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1010,7,0,1255,-24,0,0 +2013,6,9,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1010,-5,0,1355,4,0,0 +2013,9,5,4,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1400,-4,0,1745,-14,0,0 +2013,6,7,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1130,17,1,1433,-3,0,0 +2013,5,22,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1050,18,1,1354,10,0,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,-1,0,1130,0,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2013,0,,2152,0,1,1 +2013,8,23,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1510,8,0,1620,7,0,0 +2013,4,15,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,730,-5,0,1550,-28,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2140,-1,0,2255,2,0,0 +2013,4,7,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,710,19,1,1033,10,0,0 +2013,8,24,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-2,0,1115,4,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1530,5,0,0 +2013,9,3,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,8,0,2000,-19,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1535,49,1,2015,37,1,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,902,0,0,1705,-16,0,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,27,1,2042,25,1,0 +2013,9,17,2,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1455,-6,0,1727,-25,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,10,0,1244,3,0,0 +2013,5,23,4,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,751,-5,0,1047,-6,0,0 +2013,5,20,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1340,-2,0,1450,8,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1951,96,1,2247,56,1,0 +2013,6,23,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,2134,-4,0,2246,-17,0,0 +2013,10,1,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,602,-8,0,706,7,0,0 +2013,9,17,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1135,6,0,1230,9,0,0 +2013,7,10,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,10,0,2025,1,0,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,655,5,0,905,-2,0,0 +2013,10,18,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1537,-8,0,0 +2013,7,30,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1505,-4,0,1835,-24,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1325,0,0,2206,-25,0,0 +2013,4,25,4,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1705,-5,0,1843,-3,0,0 +2013,8,23,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,942,-5,0,1045,-14,0,0 +2013,9,11,3,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,-6,0,1125,-1,0,0 +2013,6,17,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2019,-1,0,2245,-9,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,9,0,2000,-7,0,0 +2013,7,7,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,845,-2,0,1055,-12,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,-5,0,1631,-16,0,0 +2013,8,9,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,845,-2,0,1000,-2,0,0 +2013,9,7,6,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1802,-1,0,1917,-6,0,0 +2013,4,19,5,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1725,2,0,2000,27,1,0 +2013,6,27,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,12,0,2352,3,0,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-7,0,829,-16,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,2,0,1000,0,0,0 +2013,4,17,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1645,67,1,2000,63,1,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,2003,0,0,2237,27,1,0 +2013,6,28,5,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1055,75,1,1918,88,1,0 +2013,4,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2100,254,1,2315,244,1,0 +2013,4,9,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,2,0,925,7,0,0 +2013,6,26,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,223,1,1337,225,1,0 +2013,6,24,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,33,1,1624,23,1,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,-1,0,1219,12,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1425,0,0,1540,7,0,0 +2013,6,7,5,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1520,29,1,1800,-7,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1420,-3,0,1552,-17,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1939,-1,0,2215,5,0,0 +2013,7,16,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1626,-5,0,1912,-4,0,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1229,-4,0,1351,-11,0,0 +2013,9,7,6,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,840,2,0,916,-5,0,0 +2013,8,21,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,5,0,1110,1,0,0 +2013,9,23,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,-9,0,2053,-6,0,0 +2013,4,15,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,954,-5,0,1239,-7,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,-6,0,2114,-7,0,0 +2013,7,23,2,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,725,-6,0,1032,11,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,950,-2,0,1243,10,0,0 +2013,6,28,5,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1915,195,1,2140,199,1,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-5,0,1906,-17,0,0 +2013,7,27,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,8,0,1940,-6,0,0 +2013,7,17,3,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,45,1,2130,46,1,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1805,14,0,1942,10,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1430,3,0,1555,-1,0,0 +2013,7,3,3,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,-3,0,518,1,0,0 +2013,8,15,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,0,0,1424,-4,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1025,-8,0,1204,-15,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,7,0,2110,7,0,0 +2013,5,27,1,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1105,-10,0,1325,-24,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1859,3,0,2000,-7,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1327,-15,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,707,-2,0,1024,-18,0,0 +2013,9,9,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1700,9,0,1820,13,0,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1329,7,0,1611,-11,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-5,0,1655,-12,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,-1,0,1701,-22,0,0 +2013,4,9,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,-4,0,2209,-9,0,0 +2013,6,27,4,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1735,12,0,1845,4,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,59,1,818,65,1,0 +2013,9,18,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1706,4,0,1800,25,1,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,640,-6,0,807,-13,0,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1010,-2,0,1140,-24,0,0 +2013,6,18,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,80,1,2000,87,1,0 +2013,10,13,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1559,-3,0,1724,-8,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1533,6,0,1845,5,0,0 +2013,10,10,4,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1840,110,1,2001,99,1,0 +2013,6,4,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1120,0,0,1226,-15,0,0 +2013,8,4,7,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,715,-1,0,852,-9,0,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,3,0,1646,5,0,0 +2013,9,9,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2010,-14,0,2159,-10,0,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,-2,0,2210,-14,0,0 +2013,10,4,5,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-5,0,1205,3,0,0 +2013,7,13,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1210,21,1,1350,10,0,0 +2013,4,10,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,26,1,1915,35,1,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2155,-1,0,2330,-6,0,0 +2013,6,2,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-4,0,1949,-6,0,0 +2013,9,28,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-5,0,1248,2,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1935,0,0,2045,7,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1235,4,0,1330,-13,0,0 +2013,10,11,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-3,0,1419,-10,0,0 +2013,4,3,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,600,-5,0,720,-7,0,0 +2013,6,4,2,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1715,-11,0,1900,0,0,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,-4,0,835,-14,0,0 +2013,9,17,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1148,-5,0,1335,23,1,0 +2013,6,24,1,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,-1,0,1033,-4,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1320,11,0,1800,-33,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,6,0,1555,-6,0,0 +2013,4,15,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-9,0,1923,-10,0,0 +2013,5,28,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1905,6,0,1955,-6,0,0 +2013,9,10,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,756,-26,0,0 +2013,8,13,2,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1303,31,1,1431,30,1,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2114,51,1,2309,21,1,0 +2013,9,14,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,815,-3,0,1112,-28,0,0 +2013,4,18,4,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1810,-6,0,2055,-14,0,0 +2013,8,24,6,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1440,-1,0,1719,6,0,0 +2013,8,21,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1900,2,0,2015,25,1,0 +2013,7,17,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1940,-3,0,2035,-6,0,0 +2013,7,13,6,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1100,-2,0,1440,-14,0,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,1,0,1240,-11,0,0 +2013,8,16,5,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1100,-3,0,1155,-5,0,0 +2013,5,8,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,1,0,820,1,0,0 +2013,9,15,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,25,1,834,24,1,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2040,-7,0,2356,-13,0,0 +2013,7,25,4,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,0,0,1843,-7,0,0 +2013,6,27,4,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-11,0,2150,-30,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1046,-9,0,1148,-18,0,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1315,9,0,1440,5,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1432,0,0,1552,-1,0,0 +2013,10,11,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1733,14,0,1951,12,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,0,0,1838,-1,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,615,-3,0,700,-5,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-4,0,925,-15,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-3,0,1019,-18,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,-1,0,2236,3,0,0 +2013,8,12,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1820,-3,0,1940,-2,0,0 +2013,10,6,7,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,721,-1,0,1040,22,1,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1115,2,0,1335,-14,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,2,0,912,-8,0,0 +2013,6,4,2,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1845,-9,0,2310,-24,0,0 +2013,5,19,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1015,5,0,1355,0,0,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1543,11,0,1653,11,0,0 +2013,6,2,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-5,0,1324,-15,0,0 +2013,9,20,5,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1327,56,1,2127,36,1,0 +2013,8,22,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-4,0,2009,15,1,0 +2013,10,1,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,8,0,1545,4,0,0 +2013,9,10,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,737,-14,0,1105,2,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,29,1,2250,7,0,0 +2013,8,17,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,26,1,1720,17,1,0 +2013,6,21,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,14,0,2130,10,0,0 +2013,9,1,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1355,-3,0,1636,-32,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2045,28,1,2150,24,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1740,12,0,2100,5,0,0 +2013,8,8,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1012,62,1,1209,44,1,0 +2013,10,8,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,-1,0,915,-11,0,0 +2013,8,18,7,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,6,0,1605,0,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,-7,0,2342,-11,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1814,-2,0,2013,-7,0,0 +2013,6,13,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-7,0,1235,-22,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,5,0,2036,74,1,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1740,40,1,1913,33,1,0 +2013,10,30,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,86,1,1845,71,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1425,4,0,1551,-3,0,0 +2013,4,30,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,29,1,1327,23,1,0 +2013,7,10,3,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2220,3,0,636,-9,0,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,3,0,1155,4,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,719,27,1,1550,17,1,0 +2013,8,25,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,0,0,1450,7,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2210,-9,0,2339,-14,0,0 +2013,6,20,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1844,22,1,2140,16,1,0 +2013,10,9,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,845,-3,0,1141,-16,0,0 +2013,10,24,4,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,625,-3,0,709,-10,0,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1030,-1,0,1159,8,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1433,-6,0,1530,-14,0,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,0,0,1335,2,0,0 +2013,8,28,3,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-3,0,1041,1,0,0 +2013,9,29,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1730,-5,0,1914,0,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,-1,0,2119,5,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,630,-5,0,910,0,0,0 +2013,8,5,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,705,142,1,735,121,1,0 +2013,4,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,1,0,1735,-11,0,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,-3,0,1330,-9,0,0 +2013,4,25,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1405,-3,0,1525,-16,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1215,28,1,1330,24,1,0 +2013,6,4,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2030,-2,0,2140,-8,0,0 +2013,9,21,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,1215,7,0,1610,-10,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,4,0,1220,-17,0,0 +2013,9,27,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1657,6,0,1805,18,1,0 +2013,5,19,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-5,0,1250,-10,0,0 +2013,4,26,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1505,18,1,1826,5,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,2,0,1610,2,0,0 +2013,4,23,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-6,0,1409,1,0,0 +2013,6,17,1,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,57,1,2145,59,1,0 +2013,10,9,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1025,0,0,1455,-10,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1620,12,0,1725,5,0,0 +2013,10,20,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,909,-11,0,1203,-20,0,0 +2013,7,12,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1535,-7,0,1810,-12,0,0 +2013,6,28,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-7,0,1039,-4,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2000,1,0,2205,-8,0,0 +2013,6,11,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,52,1,1505,37,1,0 +2013,4,23,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,20,65,1,535,52,1,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1500,-3,0,1620,-10,0,0 +2013,10,13,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,942,-3,0,1221,11,0,0 +2013,10,21,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,630,-4,0,910,-17,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1450,3,0,2020,-8,0,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,640,-5,0,849,-10,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1015,4,0,1330,-7,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,78,1,519,65,1,0 +2013,4,18,4,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1358,11,0,1633,-3,0,0 +2013,10,4,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,0,0,2152,-6,0,0 +2013,9,27,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1710,-5,0,1835,-17,0,0 +2013,4,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1701,-3,0,2113,-22,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1449,0,0,1629,7,0,0 +2013,6,26,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,940,-3,0,1100,-10,0,0 +2013,7,19,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1120,-6,0,1955,0,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,945,4,0,1045,-12,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,8,0,1846,3,0,0 +2013,4,23,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,902,0,0,1115,9,0,0 +2013,8,18,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1743,41,1,2054,12,0,0 +2013,4,12,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2336,-2,0,530,-23,0,0 +2013,5,30,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1220,-3,0,1422,-5,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,905,54,1,1035,63,1,0 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1250,-8,0,1559,-3,0,0 +2013,7,23,2,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1735,182,1,1915,170,1,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1609,-4,0,2359,-23,0,0 +2013,7,3,3,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2005,54,1,1130,41,1,0 +2013,6,2,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1910,80,1,2253,66,1,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1635,1,0,2000,-6,0,0 +2013,9,10,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-6,0,815,-10,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1051,0,0,1904,-15,0,0 +2013,5,13,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,-7,0,1705,-11,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,815,-2,0,1030,-25,0,0 +2013,8,15,4,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-8,0,2041,-13,0,0 +2013,6,16,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,-4,0,1514,7,0,0 +2013,4,26,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1739,246,1,2030,228,1,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1515,5,0,1730,1,0,0 +2013,4,4,4,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1859,-9,0,2049,-6,0,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1612,-5,0,1929,-19,0,0 +2013,10,5,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,835,-7,0,1124,-15,0,0 +2013,9,8,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2020,20,1,2140,12,0,0 +2013,10,24,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1440,-4,0,1715,-29,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,835,-4,0,1050,-13,0,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-5,0,818,-17,0,0 +2013,4,21,7,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-5,0,1123,-11,0,0 +2013,10,10,4,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1911,10,0,2215,-2,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,608,-4,0,827,-13,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1429,-1,0,1623,-13,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1757,5,0,2018,5,0,0 +2013,10,6,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,2103,63,1,0 +2013,5,21,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,0,,1540,0,1,1 +2013,5,29,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,45,1,2210,34,1,0 +2013,6,16,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,-7,0,1444,-7,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1241,-2,0,1502,-8,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,-4,0,2340,-2,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,600,-3,0,905,-7,0,0 +2013,7,16,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,820,-1,0,1001,-5,0,0 +2013,4,15,1,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,-9,0,1614,9,0,0 +2013,7,22,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,221,1,1205,234,1,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1430,28,1,1955,34,1,0 +2013,10,15,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,710,-4,0,835,1,0,0 +2013,8,19,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2201,-4,0,2301,-23,0,0 +2013,8,25,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,4,0,2200,-1,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1400,-1,0,1510,-10,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,735,0,0,1015,-14,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2020,-6,0,2359,-8,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1045,1,0,1330,-5,0,0 +2013,10,3,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,23,1,2145,19,1,0 +2013,6,20,4,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-12,0,1201,16,1,0 +2013,10,10,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-5,0,1920,-5,0,0 +2013,9,21,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-2,0,1107,-11,0,0 +2013,7,25,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1035,-6,0,1400,13,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,958,-5,0,1226,-14,0,0 +2013,10,9,3,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1400,-2,0,1710,-3,0,0 +2013,5,2,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1029,43,1,1427,36,1,0 +2013,8,4,7,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1900,15,1,2035,-8,0,0 +2013,6,14,5,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1710,244,1,1945,252,1,0 +2013,10,16,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-6,0,1041,-3,0,0 +2013,7,6,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1720,46,1,1850,10,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1335,-3,0,1450,-15,0,0 +2013,6,13,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,945,-6,0,1105,4,0,0 +2013,9,21,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-7,0,940,-13,0,0 +2013,6,10,1,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1900,3,0,2035,-7,0,0 +2013,7,30,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1059,207,1,1240,193,1,0 +2013,10,13,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1524,-6,0,1810,-27,0,0 +2013,10,19,6,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-4,0,1908,28,1,0 +2013,9,12,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1753,-9,0,2059,-11,0,0 +2013,4,9,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,630,0,,705,0,1,1 +2013,4,8,1,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-4,0,910,-19,0,0 +2013,7,26,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,720,-8,0,1019,-7,0,0 +2013,6,27,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1945,18,1,2105,27,1,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,203,1,2128,188,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1515,0,0,1840,-2,0,0 +2013,4,16,2,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,654,4,0,940,21,1,0 +2013,4,5,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,23,1,1209,16,1,0 +2013,6,24,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-4,0,1255,-7,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,910,2,0,1102,-17,0,0 +2013,5,28,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-8,0,725,-9,0,0 +2013,7,3,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,32,1,840,34,1,0 +2013,7,29,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,-6,0,1409,24,1,0 +2013,6,5,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1555,0,0,1849,-14,0,0 +2013,5,19,7,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,17,1,2325,23,1,0 +2013,5,18,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,4,0,1315,17,1,0 +2013,10,9,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,915,-3,0,1230,-27,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1505,-4,0,1616,-16,0,0 +2013,9,23,1,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-6,0,1416,-6,0,0 +2013,5,10,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,-3,0,2000,8,0,0 +2013,8,17,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1420,1,0,1810,-19,0,0 +2013,6,15,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1953,-1,0,2318,-11,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,25,1,1340,26,1,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1440,0,0,1715,-8,0,0 +2013,5,1,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,0,0,1656,4,0,0 +2013,10,7,1,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1800,37,1,2215,12,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2045,25,1,2350,30,1,0 +2013,7,3,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,34,1,1335,49,1,0 +2013,10,17,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1359,22,1,2205,-5,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1048,-2,0,1925,3,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,-10,0,1425,-5,0,0 +2013,4,29,1,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1401,23,1,1711,21,1,0 +2013,9,4,3,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,-11,0,2132,-17,0,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,838,-6,0,1021,-7,0,0 +2013,7,3,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1130,-3,0,1400,33,1,0 +2013,9,30,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,0,0,1450,-6,0,0 +2013,9,2,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1610,-6,0,1709,-3,0,0 +2013,8,24,6,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1905,9,0,2106,-24,0,0 +2013,5,14,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,2,0,911,-1,0,0 +2013,8,9,5,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-4,0,955,-3,0,0 +2013,4,23,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,6,0,1041,1,0,0 +2013,9,7,6,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-4,0,1630,-24,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-4,0,1410,1,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1659,0,0,2012,-1,0,0 +2013,6,29,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-1,0,1919,-4,0,0 +2013,4,15,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-6,0,805,-7,0,0 +2013,8,18,7,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1545,21,1,1650,14,0,0 +2013,5,27,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1331,-2,0,1835,19,1,0 +2013,7,10,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-1,0,825,-5,0,0 +2013,6,29,6,YV,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-2,0,1901,-4,0,0 +2013,4,15,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,745,-10,0,805,-13,0,0 +2013,4,16,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1815,0,0,1840,-1,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1510,-6,0,1837,-10,0,0 +2013,4,30,2,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,0,0,1720,16,1,0 +2013,7,11,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2231,40,1,226,29,1,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1710,86,1,2025,89,1,0 +2013,5,9,4,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,805,-8,0,1020,-12,0,0 +2013,8,22,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,25,1,958,17,1,0 +2013,8,1,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-3,0,2132,-7,0,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,8,0,1605,9,0,0 +2013,5,29,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1020,0,0,1205,-12,0,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,2029,152,1,2203,184,1,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1750,10,0,2335,10,0,0 +2013,9,8,7,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,955,-18,0,1420,-21,0,0 +2013,9,14,6,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,-2,0,1130,-3,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,745,0,0,927,-1,0,0 +2013,6,27,4,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1413,6,0,1635,1,0,0 +2013,6,12,3,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,945,1,0,1040,-10,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,19,1,815,8,0,0 +2013,4,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1545,-1,0,1700,-7,0,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1655,-2,0,1955,-8,0,0 +2013,10,12,6,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1335,-2,0,1925,-7,0,0 +2013,6,29,6,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,810,-1,0,1150,-1,0,0 +2013,4,11,4,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,800,-9,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1415,1,0,1640,-13,0,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,16,1,1915,9,0,0 +2013,10,17,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1231,-3,0,1338,-1,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,2,0,1050,-2,0,0 +2013,6,21,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-4,0,835,1,0,0 +2013,6,8,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-1,0,1413,-17,0,0 +2013,10,21,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,610,-9,0,753,-3,0,0 +2013,10,29,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1655,-5,0,1720,0,0,0 +2013,4,1,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,600,-3,0,700,-9,0,0 +2013,8,13,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1340,-3,0,1706,-18,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-3,0,1312,-1,0,0 +2013,8,5,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1637,-5,0,0 +2013,6,12,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-12,0,1657,2,0,0 +2013,7,10,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,-1,0,2135,65,1,0 +2013,4,26,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,13,0,1330,5,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,1,0,1840,-2,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1045,6,0,1210,-11,0,0 +2013,10,3,4,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-4,0,2200,5,0,0 +2013,6,13,4,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1045,0,,1241,0,1,1 +2013,9,7,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,724,-3,0,920,-13,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1756,-5,0,1924,7,0,0 +2013,5,12,7,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,813,-4,0,1031,-35,0,0 +2013,9,10,2,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,-10,0,808,-28,0,0 +2013,9,24,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2101,0,0,2244,-16,0,0 +2013,5,19,7,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1430,2,0,1620,-4,0,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,802,18,1,928,41,1,0 +2013,9,28,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1355,-2,0,1520,-7,0,0 +2013,10,5,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,-1,0,1626,-17,0,0 +2013,7,21,7,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,15,1,1809,5,0,0 +2013,4,23,2,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1140,-3,0,1441,-9,0,0 +2013,6,14,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,45,1,2030,30,1,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,6,0,910,-8,0,0 +2013,4,17,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,924,-8,0,1216,17,1,0 +2013,7,30,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1345,-10,0,1524,-7,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1650,-3,0,2010,-21,0,0 +2013,5,16,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1806,-13,0,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,925,8,0,0 +2013,10,15,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-7,0,1028,-18,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,-3,0,2230,-15,0,0 +2013,6,26,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-5,0,1759,16,1,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1518,-7,0,1917,7,0,0 +2013,8,17,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,-4,0,1015,19,1,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-8,0,1134,-12,0,0 +2013,5,6,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,12,0,1435,17,1,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10,-4,0,505,3,0,0 +2013,4,20,6,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,33,1,1655,18,1,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-2,0,1824,30,1,0 +2013,4,7,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-2,0,641,4,0,0 +2013,10,4,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,755,0,0,929,-3,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,11,0,1556,4,0,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,620,7,0,931,5,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1727,-3,0,1824,-13,0,0 +2013,4,17,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2000,54,1,2050,73,1,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2015,-6,0,2315,-16,0,0 +2013,8,29,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1726,-7,0,1900,-4,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-4,0,1330,-32,0,0 +2013,5,28,2,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1815,-4,0,2050,-11,0,0 +2013,10,10,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-9,0,1415,-19,0,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1055,-1,0,1325,-21,0,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1435,-5,0,1640,-19,0,0 +2013,8,24,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1525,-3,0,1859,-5,0,0 +2013,8,29,4,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,0,0,1630,-22,0,0 +2013,6,24,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,835,1,0,948,-3,0,0 +2013,10,25,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,-3,0,947,-2,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,745,-5,0,1005,-10,0,0 +2013,10,24,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,-8,0,2022,13,0,0 +2013,8,16,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,810,-9,0,950,-25,0,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-3,0,2125,-2,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1205,7,0,1335,-2,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2150,-2,0,2305,-6,0,0 +2013,4,18,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2358,30,1,744,36,1,0 +2013,7,6,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,650,2,0,855,1,0,0 +2013,4,29,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-4,0,1824,-11,0,0 +2013,5,15,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,953,-2,0,1517,3,0,0 +2013,7,22,1,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1210,-2,0,1435,-4,0,0 +2013,8,22,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,21,1,1513,20,1,0 +2013,6,30,7,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1735,-2,0,1915,10,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1500,-4,0,1600,-15,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1655,23,1,2130,-4,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1640,-2,0,1819,-10,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1855,227,1,2215,229,1,0 +2013,8,9,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1907,30,1,2003,27,1,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1400,-3,0,1718,-18,0,0 +2013,10,14,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,-6,0,910,-5,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1419,2,0,1753,-17,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1240,-2,0,1355,2,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-6,0,1946,-11,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,27,1,1507,23,1,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1140,0,0,2015,-39,0,0 +2013,8,8,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1311,86,1,1439,90,1,0 +2013,5,24,5,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,556,20,1,1151,-6,0,0 +2013,6,23,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1120,8,0,1220,7,0,0 +2013,6,9,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1120,7,0,1245,3,0,0 +2013,4,6,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-5,0,920,-4,0,0 +2013,10,23,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1855,-6,0,2040,2,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1045,-9,0,1246,-16,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1435,-1,0,1615,-24,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1804,5,0,2022,2,0,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1635,86,1,2225,87,1,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1220,0,0,1350,0,0,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-1,0,1525,-2,0,0 +2013,9,17,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1250,-3,0,1410,-4,0,0 +2013,9,22,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-5,0,1308,-16,0,0 +2013,7,10,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1909,36,1,2024,24,1,0 +2013,9,23,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1939,-3,0,2105,-3,0,0 +2013,4,9,2,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,725,12,0,905,2,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,630,0,0,1135,-19,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-2,0,1115,24,1,0 +2013,10,30,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1345,-3,0,1640,-20,0,0 +2013,9,23,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-7,0,1652,-20,0,0 +2013,10,15,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,-6,0,1831,-34,0,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-1,0,805,-1,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,944,0,0,1055,-6,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1720,1,0,2055,-15,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1754,0,0,1845,-1,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1147,-2,0,1502,-13,0,0 +2013,9,29,7,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,0,,1905,0,1,1 +2013,7,23,2,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1034,-5,0,1152,9,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1925,4,0,2230,-16,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,11,0,2155,-1,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1720,24,1,1950,54,1,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,24,1,2305,16,1,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,-2,0,1151,-3,0,0 +2013,10,17,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-6,0,845,-15,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-4,0,1308,-13,0,0 +2013,8,27,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1007,-11,0,1246,-7,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1835,0,,2305,0,1,1 +2013,5,7,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-9,0,1220,-26,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,758,-9,0,923,0,1,1 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1245,-5,0,1412,-26,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1820,1,0,1920,-11,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,-2,0,1623,-2,0,0 +2013,5,20,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1700,38,1,1858,101,1,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,605,-6,0,739,-9,0,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1520,65,1,2352,53,1,0 +2013,6,21,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,847,-2,0,933,-8,0,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1105,-2,0,1205,-11,0,0 +2013,6,9,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,20,1,2135,-6,0,0 +2013,9,15,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1405,-5,0,2100,-3,0,0 +2013,10,14,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,26,1,1905,16,1,0 +2013,6,7,5,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,23,1,1235,25,1,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,12,0,2030,-7,0,0 +2013,6,10,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,39,1,1250,28,1,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,3,0,1550,-8,0,0 +2013,8,7,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1635,6,0,2005,-4,0,0 +2013,7,2,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,-1,0,1805,-9,0,0 +2013,5,30,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1000,-3,0,1246,-23,0,0 +2013,8,9,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,-4,0,2107,-9,0,0 +2013,8,6,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,935,1,0,1153,-5,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2000,-6,0,2134,-6,0,0 +2013,7,29,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,-7,0,2138,1,0,0 +2013,9,26,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,64,1,1907,48,1,0 +2013,5,15,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,-1,0,940,-2,0,0 +2013,10,4,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,625,-1,0,920,4,0,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-6,0,1750,-12,0,0 +2013,4,7,7,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1055,-7,0,1623,-11,0,0 +2013,8,28,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1300,16,1,1355,9,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1411,-4,0,1543,-14,0,0 +2013,7,14,7,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,-2,0,2046,-21,0,0 +2013,8,9,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1507,-1,0,1530,-5,0,0 +2013,4,3,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1519,-19,0,0 +2013,6,18,2,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1050,-3,0,1415,-17,0,0 +2013,5,30,4,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,700,1,0,946,4,0,0 +2013,10,7,1,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1007,-1,0,1441,-10,0,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1400,-8,0,1450,-10,0,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-6,0,1401,-16,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1142,-6,0,1307,-5,0,0 +2013,8,22,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1000,-18,0,0 +2013,10,16,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,1,0,1553,-6,0,0 +2013,7,9,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1420,72,1,1445,95,1,0 +2013,4,10,3,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1248,7,0,1523,12,0,0 +2013,4,22,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1545,70,1,1829,64,1,0 +2013,5,30,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-5,0,1225,-3,0,0 +2013,9,12,4,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1435,-7,0,1645,-20,0,0 +2013,10,8,2,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2130,-2,0,535,5,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1830,0,0,2023,-15,0,0 +2013,4,27,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1245,1,0,1335,-12,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,1,0,1946,19,1,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,846,7,0,939,2,0,0 +2013,5,6,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1725,8,0,1855,2,0,0 +2013,6,19,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,-5,0,1459,-16,0,0 +2013,9,16,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,800,-1,0,920,4,0,0 +2013,5,5,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-5,0,606,12,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,1125,-10,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,855,1,0,1045,-22,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,923,-4,0,1152,-20,0,0 +2013,5,19,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,55,1,1400,34,1,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1000,-2,0,1105,-7,0,0 +2013,5,17,5,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1855,18,1,1957,33,1,0 +2013,9,7,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1215,4,0,1505,3,0,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,730,0,0,1045,-20,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1550,54,1,1900,76,1,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,55,1,2330,34,1,0 +2013,7,19,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1040,-4,0,1135,-6,0,0 +2013,4,10,3,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1015,-1,0,1225,-10,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2105,1,0,2255,-3,0,0 +2013,5,5,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1855,-6,0,2130,-18,0,0 +2013,7,29,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1351,-6,0,1630,-17,0,0 +2013,7,19,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-6,0,1216,-14,0,0 +2013,6,17,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,550,0,0,710,-8,0,0 +2013,10,1,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-9,0,1047,16,1,0 +2013,10,1,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,825,-5,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-2,0,1056,-17,0,0 +2013,9,25,3,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1825,3,0,2140,7,0,0 +2013,4,4,4,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1308,-3,0,1527,-21,0,0 +2013,8,8,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,634,-4,0,826,-12,0,0 +2013,5,31,5,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,0,0,2035,-3,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,13,0,1640,-4,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,-4,0,910,-19,0,0 +2013,5,26,7,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-6,0,1655,-11,0,0 +2013,9,19,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,640,-3,0,840,-1,0,0 +2013,9,15,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1109,-4,0,1304,-8,0,0 +2013,8,30,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,0,0,1057,3,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,0,,1705,0,1,1 +2013,10,4,5,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-3,0,1024,-7,0,0 +2013,9,12,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1615,-4,0,2347,-21,0,0 +2013,6,30,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-2,0,2045,16,1,0 +2013,6,19,3,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,-2,0,742,11,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,-6,0,2007,-3,0,0 +2013,4,1,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-6,0,1549,-12,0,0 +2013,7,30,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1602,-8,0,1700,8,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,6,0,1927,3,0,0 +2013,5,5,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,109,1,2255,121,1,0 +2013,8,5,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1926,-7,0,2106,-6,0,0 +2013,9,13,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,1,0,855,-6,0,0 +2013,8,29,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1734,-2,0,1949,-33,0,0 +2013,8,16,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,856,-3,0,1021,-5,0,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1735,-4,0,1845,-18,0,0 +2013,7,4,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1130,1,0,1720,8,0,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1156,-4,0,1441,-19,0,0 +2013,9,21,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1203,-3,0,1337,8,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1754,1,0,1913,7,0,0 +2013,9,9,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,32,1,1539,31,1,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,0,0,1310,-3,0,0 +2013,10,9,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1225,47,1,1325,35,1,0 +2013,6,8,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1555,1,0,1833,-16,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,2040,-6,0,2326,-41,0,0 +2013,9,26,4,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1335,-4,0,1525,-17,0,0 +2013,8,18,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,35,1,831,54,1,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-4,0,828,0,0,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,-7,0,1029,-19,0,0 +2013,8,1,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,600,4,0,640,0,0,0 +2013,6,1,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,835,-11,0,1120,-13,0,0 +2013,5,21,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1037,28,1,1835,22,1,0 +2013,7,21,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,-9,0,955,-23,0,0 +2013,7,4,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,300,8,0,658,-18,0,0 +2013,9,21,6,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,-4,0,1525,-15,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,0,0,2245,5,0,0 +2013,9,5,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1035,-8,0,1400,-1,0,0 +2013,9,12,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-6,0,2158,0,0,0 +2013,10,17,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,840,-1,0,1040,-5,0,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2055,-6,0,2223,-22,0,0 +2013,8,22,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-6,0,900,-19,0,0 +2013,6,11,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,1,0,1705,-17,0,0 +2013,8,18,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-4,0,1303,-6,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,0,0,2347,-7,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1040,0,0,1125,-9,0,0 +2013,6,18,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1517,25,1,1649,26,1,0 +2013,4,21,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1433,21,1,1600,15,1,0 +2013,5,2,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,852,12,0,1030,-11,0,0 +2013,10,16,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1615,8,0,2220,-22,0,0 +2013,10,16,3,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-3,0,1305,-9,0,0 +2013,8,12,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,19,1,1931,59,1,0 +2013,6,23,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1415,-5,0,1545,-16,0,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1840,18,1,2110,4,0,0 +2013,10,12,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-9,0,1800,-12,0,0 +2013,6,9,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2110,-6,0,2240,5,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1411,6,0,1543,1,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,2,0,1435,1,0,0 +2013,7,21,7,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1459,-1,0,1808,-8,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1345,2,0,1510,-9,0,0 +2013,7,14,7,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,0,0,1205,-8,0,0 +2013,4,11,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,14,0,818,10,0,0 +2013,9,5,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1203,66,1,1337,67,1,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1530,-1,0,1705,11,0,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,-9,0,2255,-23,0,0 +2013,5,30,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1735,44,1,1830,31,1,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1105,-2,0,1325,3,0,0 +2013,10,2,3,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,0,0,1720,-8,0,0 +2013,4,5,5,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1220,-3,0,1305,-11,0,0 +2013,7,5,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,-7,0,1333,-8,0,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,-1,0,859,-4,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,840,16,1,1040,28,1,0 +2013,8,2,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-1,0,834,-11,0,0 +2013,8,10,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1518,3,0,1648,-6,0,0 +2013,7,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,-1,0,1230,-11,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,0,0,2034,24,1,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,830,0,0,1005,7,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,7,0,921,1,0,0 +2013,5,19,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,1,0,915,-21,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1630,3,0,2355,-2,0,0 +2013,8,29,4,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1810,72,1,1933,79,1,0 +2013,10,11,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-4,0,1425,-2,0,0 +2013,4,25,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1355,-7,0,1445,6,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2015,5,0,2215,1,0,0 +2013,8,16,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1435,5,0,1638,-22,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,0,0,930,-15,0,0 +2013,4,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,915,-2,0,1100,-5,0,0 +2013,7,21,7,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1725,-3,0,1838,-2,0,0 +2013,7,25,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,13,0,2046,6,0,0 +2013,4,15,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,624,-8,0,744,-30,0,0 +2013,4,27,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-4,0,846,-13,0,0 +2013,5,6,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-3,0,2110,7,0,0 +2013,6,23,7,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,0,0,1835,-25,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,950,21,1,1223,-19,0,0 +2013,4,29,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1755,92,1,2045,118,1,0 +2013,6,28,5,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,1259,22,1,1657,30,1,0 +2013,8,26,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1410,0,0,1558,-11,0,0 +2013,9,22,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-1,0,2043,1,0,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-2,0,2225,-18,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1755,0,0,1933,2,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1510,3,0,1855,-6,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,3,0,1735,-4,0,0 +2013,5,18,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-5,0,1525,-11,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,5,0,1034,-3,0,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1914,6,0,2221,-29,0,0 +2013,8,10,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,925,13,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,18,1,2110,18,1,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2020,0,0,2135,3,0,0 +2013,7,8,1,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,78,1,1614,73,1,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2020,-5,0,2241,8,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1800,0,,2150,0,1,1 +2013,6,16,7,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2105,41,1,2215,35,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1500,-1,0,1710,-20,0,0 +2013,10,6,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-10,0,1955,-7,0,0 +2013,10,16,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,710,-3,0,825,-10,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1708,-1,0,1825,-8,0,0 +2013,5,28,2,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1845,-8,0,2000,4,0,0 +2013,6,22,6,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,58,1,1211,87,1,0 +2013,5,30,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1250,-1,0,1425,-23,0,0 +2013,9,7,6,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,815,-7,0,1040,-22,0,0 +2013,6,18,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,52,1,850,64,1,0 +2013,4,7,7,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1730,37,1,1858,20,1,0 +2013,7,14,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,-3,0,1240,-14,0,0 +2013,7,16,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,0,0,1105,-6,0,0 +2013,4,20,6,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1450,-1,0,1625,28,1,0 +2013,8,7,3,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2058,0,0,2225,-2,0,0 +2013,5,22,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-8,0,1018,33,1,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1325,29,1,1445,16,1,0 +2013,10,12,6,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,-11,0,1505,-36,0,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,18,1,1930,15,1,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1855,5,0,2135,-1,0,0 +2013,7,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-5,0,1706,-7,0,0 +2013,9,16,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1000,-5,0,1120,-21,0,0 +2013,8,3,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-10,0,1159,-6,0,0 +2013,6,14,5,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-4,0,1710,3,0,0 +2013,10,8,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,1016,-17,0,0 +2013,10,2,3,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1930,-6,0,2250,-33,0,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,34,1,1850,25,1,0 +2013,10,17,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-1,0,813,-12,0,0 +2013,5,11,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2150,-3,0,19,-10,0,0 +2013,8,11,7,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,1005,-19,0,0 +2013,4,1,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,2,0,616,-12,0,0 +2013,9,19,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,907,-14,0,957,-3,0,0 +2013,6,5,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1855,1,0,2141,-3,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1423,-4,0,1613,-3,0,0 +2013,7,17,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1420,27,1,1555,18,1,0 +2013,6,19,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,15,1,1430,4,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2115,52,1,2335,52,1,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,-2,0,1605,-3,0,0 +2013,6,20,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,0,,1245,0,1,1 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,700,-6,0,827,-19,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1510,-6,0,1719,-7,0,0 +2013,8,23,5,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1301,-2,0,1435,-13,0,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,922,-2,0,1318,-5,0,0 +2013,4,29,1,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-8,0,1011,-29,0,0 +2013,9,25,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,820,-5,0,1100,-19,0,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,56,1,1630,71,1,0 +2013,9,7,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-2,0,1510,-35,0,0 +2013,5,5,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1308,6,0,1604,-7,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1529,14,0,1749,-6,0,0 +2013,4,25,4,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2255,-8,0,705,-2,0,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1245,32,1,1410,30,1,0 +2013,4,28,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1630,-10,0,1918,-20,0,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,105,-4,0,635,-8,0,0 +2013,6,18,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-6,0,1115,-9,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1945,9,0,2050,3,0,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1115,6,0,1525,-3,0,0 +2013,9,11,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1605,-10,0,1642,-12,0,0 +2013,5,11,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,822,16,1,919,14,0,0 +2013,6,11,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-3,0,739,-4,0,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1329,-5,0,1507,-4,0,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1615,-4,0,1742,-3,0,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-7,0,1327,-1,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,0,0,903,-11,0,0 +2013,6,14,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1804,-10,0,2159,2,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,31,1,2222,15,1,0 +2013,4,1,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1705,-7,0,1825,-4,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-1,0,1610,5,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2050,32,1,5,17,1,0 +2013,9,30,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,15,1,1850,11,0,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,-5,0,30,-7,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,3,0,2150,10,0,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2025,32,1,2115,29,1,0 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,813,9,0,1019,1,0,0 +2013,6,16,7,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-6,0,1309,-13,0,0 +2013,9,26,4,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,855,103,1,1504,83,1,0 +2013,8,26,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,9,0,1825,2,0,0 +2013,8,31,6,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,725,-5,0,850,-22,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1745,-5,0,1930,0,0,0 +2013,9,1,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1506,8,0,1601,0,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1818,-3,0,2055,-15,0,0 +2013,4,2,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,920,-1,0,1235,-10,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1754,-2,0,2042,5,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,23,1,1150,38,1,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2109,-4,0,2320,-10,0,0 +2013,10,3,4,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1103,0,0,1248,-10,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,-1,0,2102,-18,0,0 +2013,10,28,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-4,0,955,-17,0,0 +2013,5,2,4,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,14,0,1835,-14,0,0 +2013,9,25,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1730,-2,0,1835,-14,0,0 +2013,5,20,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1345,-11,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2250,7,0,612,4,0,0 +2013,10,20,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-1,0,1450,-3,0,0 +2013,8,2,5,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1135,7,0,1614,1,0,0 +2013,6,30,7,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1035,-1,0,1610,1,0,0 +2013,7,1,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-10,0,2015,-10,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-4,0,1448,-8,0,0 +2013,8,31,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1936,-10,0,2103,-19,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1830,0,0,1935,-5,0,0 +2013,4,10,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2117,-4,0,2358,-24,0,0 +2013,6,27,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-10,0,851,10,0,0 +2013,4,12,5,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1040,1,0,1840,-14,0,0 +2013,7,8,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,2,0,1049,-4,0,0 +2013,4,24,3,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2011,-1,0,2354,-5,0,0 +2013,9,23,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,1,0,1728,-18,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1420,1,0,1606,-1,0,0 +2013,6,17,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-10,0,533,-8,0,0 +2013,4,5,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,828,-4,0,905,-7,0,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1123,4,0,1251,-10,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,842,2,0,1314,-17,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1540,2,0,1823,11,0,0 +2013,5,16,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-5,0,1117,2,0,0 +2013,7,18,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-1,0,1122,3,0,0 +2013,5,22,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,13,0,2058,18,1,0 +2013,10,19,6,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,915,1,0,1024,6,0,0 +2013,4,17,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1945,-8,0,2115,-7,0,0 +2013,4,8,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,905,-12,0,913,-20,0,0 +2013,7,29,1,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1835,-4,0,2155,5,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,-4,0,129,-9,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1951,-1,0,2131,-12,0,0 +2013,5,1,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1116,-6,0,1208,-18,0,0 +2013,6,8,6,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,755,10,0,1051,-12,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1255,-1,0,1424,-6,0,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,-1,0,1200,4,0,0 +2013,9,1,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1435,0,,1610,0,1,1 +2013,8,12,1,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,43,1,2353,39,1,0 +2013,4,2,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,635,-4,0,856,-17,0,0 +2013,4,20,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,-6,0,1631,-8,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,835,3,0,1050,-3,0,0 +2013,10,15,2,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-5,0,915,0,0,0 +2013,10,20,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1205,-4,0,1310,-21,0,0 +2013,7,20,6,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,945,-3,0,1100,-12,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-5,0,1248,-12,0,0 +2013,10,14,1,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1850,-7,0,2120,-26,0,0 +2013,10,26,6,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1030,8,0,1201,7,0,0 +2013,5,17,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1338,-7,0,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1310,10,0,1400,4,0,0 +2013,4,17,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1215,-1,0,1331,-4,0,0 +2013,7,14,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-5,0,1812,-21,0,0 +2013,10,8,2,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1455,-4,0,1615,-20,0,0 +2013,8,26,1,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1900,-3,0,2110,-4,0,0 +2013,8,22,4,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2350,-7,0,548,-20,0,0 +2013,8,7,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,955,-8,0,0 +2013,6,20,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,3,0,649,11,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2250,-5,0,9,-16,0,0 +2013,9,4,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,-4,0,1300,-8,0,0 +2013,8,19,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-7,0,1026,28,1,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,-3,0,1235,-12,0,0 +2013,6,20,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1745,0,0,2110,-31,0,0 +2013,6,19,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-12,0,2042,-16,0,0 +2013,6,21,5,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,-1,0,1615,-2,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1645,5,0,1833,-11,0,0 +2013,10,15,2,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1155,-2,0,1425,-4,0,0 +2013,5,29,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1512,2,0,2054,-2,0,0 +2013,9,6,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1111,-9,0,1250,-8,0,0 +2013,9,10,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,934,-7,0,0 +2013,8,20,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,8,0,1206,9,0,0 +2013,10,19,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-7,0,1634,-2,0,0 +2013,9,2,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1205,10,0,1328,13,0,0 +2013,5,11,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,10,0,1640,17,1,0 +2013,10,5,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1250,0,0,1405,0,0,0 +2013,5,1,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,-3,0,1236,-9,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,0,,1525,0,1,1 +2013,8,17,6,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1139,-5,0,1404,-17,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,7,0,1340,6,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-6,0,2340,13,0,0 +2013,10,24,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1005,12,0,1306,12,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1307,1,0,1622,-11,0,0 +2013,4,17,3,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,8,0,1650,3,0,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1520,-4,0,1820,-23,0,0 +2013,7,15,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-5,0,1107,1,0,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-2,0,1120,-7,0,0 +2013,7,16,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,1046,3,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-1,0,1330,0,0,0 +2013,4,8,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-1,0,1840,-15,0,0 +2013,4,30,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1920,13,0,2127,14,0,0 +2013,9,16,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,725,-2,0,745,-10,0,0 +2013,7,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2103,10,0,2222,13,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,809,-1,0,836,-8,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1940,76,1,2155,57,1,0 +2013,7,1,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,0,,1235,0,1,1 +2013,8,24,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1000,22,1,1520,28,1,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1425,77,1,1825,96,1,0 +2013,10,14,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,-5,0,1106,-10,0,0 +2013,8,12,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1445,-7,0,1555,-33,0,0 +2013,5,26,7,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1815,-7,0,1930,-21,0,0 +2013,7,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1159,-3,0,1509,-9,0,0 +2013,7,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1925,-6,0,2105,-9,0,0 +2013,5,24,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1500,5,0,2040,-6,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,1,0,920,-1,0,0 +2013,5,2,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1020,28,1,1140,14,0,0 +2013,4,9,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-7,0,1035,0,0,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,727,-1,0,900,0,0,0 +2013,6,17,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1519,2,0,1819,7,0,0 +2013,10,5,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-3,0,1339,-4,0,0 +2013,8,24,6,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-3,0,1824,-8,0,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1258,-5,0,2110,0,0,0 +2013,7,3,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,615,-3,0,755,5,0,0 +2013,8,7,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,720,-4,0,1001,-13,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1710,3,0,2105,7,0,0 +2013,6,16,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-3,0,2140,-11,0,0 +2013,10,6,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,705,-4,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2115,49,1,20,59,1,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,4,0,2345,-9,0,0 +2013,9,26,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-1,0,1538,-16,0,0 +2013,8,19,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,10,0,951,5,0,0 +2013,4,13,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1935,84,1,2305,63,1,0 +2013,8,7,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,-1,0,955,-4,0,0 +2013,7,13,6,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1450,11,0,1525,15,1,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1738,1,0,2143,3,0,0 +2013,10,26,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1012,-23,0,0 +2013,9,23,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1715,7,0,2005,-3,0,0 +2013,4,24,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,2,0,1910,-7,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1015,3,0,1411,-12,0,0 +2013,6,11,2,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,81,1,1008,85,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,825,1,0,1018,-13,0,0 +2013,7,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1828,-2,0,2035,-8,0,0 +2013,8,30,5,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,645,-5,0,806,-5,0,0 +2013,6,17,1,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1730,0,0,1954,8,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,0,,2020,0,1,1 +2013,5,11,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-4,0,747,-6,0,0 +2013,4,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1212,-7,0,1319,-20,0,0 +2013,5,22,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,755,1,0,920,3,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2355,-7,0,639,-12,0,0 +2013,4,2,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,0,0,2031,-9,0,0 +2013,6,21,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1445,20,1,1520,33,1,0 +2013,4,18,4,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,30,1,1435,20,1,0 +2013,6,29,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1148,0,0,1441,-15,0,0 +2013,10,24,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,0,,1405,0,1,1 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-3,0,1150,-12,0,0 +2013,8,17,6,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,735,-2,0,954,-12,0,0 +2013,9,26,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,705,-2,0,930,-16,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,-1,0,903,-7,0,0 +2013,4,4,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-3,0,859,6,0,0 +2013,8,23,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-2,0,1125,6,0,0 +2013,4,3,3,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1125,0,0,1403,-15,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2115,-5,0,2245,-13,0,0 +2013,5,12,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,1,0,1550,-6,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1955,7,0,2330,26,1,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1755,54,1,1932,36,1,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1635,98,1,40,84,1,0 +2013,9,28,6,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1736,-5,0,2007,-17,0,0 +2013,7,28,7,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,800,-11,0,906,-22,0,0 +2013,4,2,2,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1850,7,0,2335,-2,0,0 +2013,6,12,3,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1745,6,0,1800,-6,0,0 +2013,8,2,5,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1205,1,0,1330,-7,0,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,829,-3,0,1057,-13,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1737,-4,0,1902,-9,0,0 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-2,0,1610,-10,0,0 +2013,4,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,2,0,2049,3,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1800,1,0,2020,-16,0,0 +2013,9,20,5,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,911,0,0,1051,-1,0,0 +2013,9,11,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-1,0,2225,-10,0,0 +2013,7,11,4,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,710,-8,0,906,-14,0,0 +2013,7,4,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,15,1,2005,-2,0,0 +2013,8,24,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1505,0,0,1835,-20,0,0 +2013,7,1,1,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1800,1,0,2012,11,0,0 +2013,8,21,3,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1635,13,0,2005,1,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,650,-5,0,931,-5,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,-6,0,1350,-6,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2155,30,1,2315,45,1,0 +2013,4,10,3,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1820,-8,0,2131,16,1,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1340,27,1,1450,14,0,0 +2013,6,10,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,610,2,0,710,0,0,0 +2013,4,6,6,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1315,-3,0,2126,-32,0,0 +2013,9,11,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1120,-3,0,1225,-4,0,0 +2013,9,26,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-7,0,755,-11,0,0 +2013,8,18,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,1,0,1705,-7,0,0 +2013,7,8,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,630,-3,0,740,-3,0,0 +2013,7,28,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1835,-15,0,2254,-8,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,618,0,0,856,-11,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,26,1,2356,28,1,0 +2013,10,21,1,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1319,0,0,1444,-6,0,0 +2013,5,30,4,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-1,0,1128,-13,0,0 +2013,9,3,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,-5,0,2205,-20,0,0 +2013,4,19,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-8,0,1111,-6,0,0 +2013,8,16,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1659,1,0,1839,-4,0,0 +2013,9,22,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1805,10,0,1925,9,0,0 +2013,4,5,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-6,0,2000,-27,0,0 +2013,7,2,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,5,0,1351,-8,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2243,0,0,720,-7,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,48,1,2310,39,1,0 +2013,8,21,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,0,0,1014,-3,0,0 +2013,10,28,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,835,0,0,1044,-2,0,0 +2013,9,6,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,900,-8,0,1130,-6,0,0 +2013,8,22,4,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,855,-2,0,1110,-13,0,0 +2013,7,16,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,745,-6,0,930,-3,0,0 +2013,7,17,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1747,-10,0,2118,4,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1205,-2,0,1650,-25,0,0 +2013,5,23,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-5,0,1355,-9,0,0 +2013,10,10,4,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1809,-3,0,2102,-18,0,0 +2013,6,5,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,-4,0,1731,-29,0,0 +2013,5,11,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-7,0,1105,6,0,0 +2013,6,8,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,-7,0,2100,-10,0,0 +2013,8,13,2,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,845,-4,0,952,-9,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2035,9,0,2234,-6,0,0 +2013,7,10,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,18,1,1953,61,1,0 +2013,5,30,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1145,-3,0,1245,0,0,0 +2013,7,2,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-8,0,1237,-4,0,0 +2013,8,23,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,620,-8,0,832,12,0,0 +2013,7,13,6,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,855,-3,0,1115,-6,0,0 +2013,7,23,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,0,0,1250,-12,0,0 +2013,6,19,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2052,9,0,0 +2013,6,20,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-8,0,1250,-15,0,0 +2013,10,27,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-6,0,1257,-16,0,0 +2013,6,30,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-3,0,1605,-15,0,0 +2013,8,18,7,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2211,1,0,26,-3,0,0 +2013,7,17,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1730,11,0,1800,-5,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1555,0,0,1659,-5,0,0 +2013,10,31,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1359,13,0,1945,5,0,0 +2013,4,18,4,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,-6,0,946,-15,0,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,6,0,1155,-5,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,0,0,2357,5,0,0 +2013,6,18,2,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,5,0,1225,-15,0,0 +2013,9,21,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,939,-5,0,1152,-5,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-2,0,1010,-5,0,0 +2013,6,3,1,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,650,-3,0,725,-9,0,0 +2013,8,27,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-3,0,1309,-8,0,0 +2013,4,27,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-3,0,1050,-6,0,0 +2013,10,29,2,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,1,0,1255,7,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1023,-10,0,1136,-24,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1805,103,1,2040,99,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1253,-4,0,1518,-22,0,0 +2013,7,17,3,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,845,-3,0,1110,-3,0,0 +2013,4,28,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-6,0,1415,-4,0,0 +2013,6,18,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1440,91,1,1521,90,1,0 +2013,6,13,4,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1635,15,1,2010,30,1,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1300,0,0,1429,-13,0,0 +2013,5,14,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1956,-4,0,2122,-12,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,950,16,1,1745,9,0,0 +2013,7,2,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1250,3,0,1400,2,0,0 +2013,9,2,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,-8,0,1130,-7,0,0 +2013,5,26,7,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-14,0,1925,1,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1135,-1,0,1345,-21,0,0 +2013,7,25,4,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2235,0,0,716,39,1,0 +2013,9,9,1,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,16,1,1625,4,0,0 +2013,6,10,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-3,0,1839,9,0,0 +2013,6,3,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,625,-2,0,740,-2,0,0 +2013,8,22,4,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1657,32,1,1838,29,1,0 +2013,9,19,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1535,-7,0,1816,-8,0,0 +2013,8,6,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,29,1,2350,9,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1611,-1,0,1629,-8,0,0 +2013,10,30,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1435,1,0,1700,-19,0,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,50,1,1643,42,1,0 +2013,10,18,5,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1855,-5,0,2209,-4,0,0 +2013,7,17,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1945,1,0,2055,-5,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,700,-5,0,957,-15,0,0 +2013,4,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,600,-1,0,655,-4,0,0 +2013,10,31,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1925,-9,0,2055,-22,0,0 +2013,8,6,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-10,0,853,-13,0,0 +2013,8,30,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,550,-6,0,758,-7,0,0 +2013,8,20,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,610,-1,0,735,-6,0,0 +2013,8,5,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1515,26,1,1815,8,0,0 +2013,6,22,6,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1425,-2,0,1640,-4,0,0 +2013,6,12,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1638,1,0,1746,4,0,0 +2013,6,6,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1111,19,1,1451,9,0,0 +2013,5,12,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,742,-12,0,0 +2013,8,25,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,16,1,1730,11,0,0 +2013,9,4,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-12,0,1548,-27,0,0 +2013,7,10,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,40,1,2235,36,1,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1710,18,1,1900,14,0,0 +2013,7,11,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1525,-1,0,1859,28,1,0 +2013,4,4,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1125,-2,0,1338,4,0,0 +2013,7,25,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,935,-5,0,1100,-14,0,0 +2013,10,13,7,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,805,-2,0,1120,-16,0,0 +2013,7,19,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,13,0,912,-13,0,0 +2013,9,6,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,845,0,0,1215,16,1,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2024,-6,0,2148,8,0,0 +2013,4,2,2,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,730,-1,0,1005,-7,0,0 +2013,5,21,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2010,-5,0,2144,-18,0,0 +2013,9,5,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-5,0,1927,3,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,1,0,2320,10,0,0 +2013,5,17,5,9E,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1625,-4,0,1856,-22,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1405,-4,0,1500,-16,0,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1659,4,0,1839,12,0,0 +2013,5,24,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-4,0,2034,-14,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2140,-3,0,516,-23,0,0 +2013,8,15,4,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2152,-4,0,2320,-12,0,0 +2013,8,23,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,950,-6,0,1240,-19,0,0 +2013,5,28,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1220,0,0,1815,0,0,0 +2013,5,17,5,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1216,-5,0,1339,25,1,0 +2013,7,30,2,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-2,0,1845,-11,0,0 +2013,9,21,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2100,-2,0,458,-5,0,0 +2013,6,30,7,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,0,0,628,-16,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-1,0,1502,9,0,0 +2013,4,7,7,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-3,0,1114,-23,0,0 +2013,10,30,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,550,-6,0,720,-8,0,0 +2013,7,5,5,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,-6,0,1750,1,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1343,9,0,1510,-1,0,0 +2013,9,23,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1610,82,1,1803,73,1,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2130,2,0,2308,2,0,0 +2013,7,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,754,22,1,1054,9,0,0 +2013,5,28,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1035,0,0,1145,0,0,0 +2013,10,12,6,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1625,-7,0,2046,-22,0,0 +2013,6,11,2,EV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1422,-10,0,1602,-34,0,0 +2013,8,7,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-2,0,2013,9,0,0 +2013,8,30,5,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-4,0,823,-8,0,0 +2013,6,6,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1513,55,1,1728,51,1,0 +2013,8,29,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1750,10,0,2022,14,0,0 +2013,7,14,7,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,10,0,1135,-10,0,0 +2013,6,24,1,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-4,0,853,-11,0,0 +2013,7,10,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-2,0,1015,-12,0,0 +2013,5,19,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2130,0,0,2350,-20,0,0 +2013,10,25,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,520,15,1,810,3,0,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1305,-8,0,1625,11,0,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1625,36,1,1920,41,1,0 +2013,10,5,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1730,-9,0,2012,-13,0,0 +2013,9,21,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,-1,0,2020,8,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,955,-4,0,1330,11,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1310,20,1,1535,4,0,0 +2013,4,15,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-4,0,1643,-17,0,0 +2013,10,9,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1720,67,1,1815,48,1,0 +2013,6,15,6,FL,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,25,1,1525,23,1,0 +2013,8,11,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,3,0,1105,-5,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,7,0,1100,24,1,0 +2013,4,24,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,1,0,1912,11,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1204,-1,0,1350,-4,0,0 +2013,9,17,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,545,0,0,649,-2,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1450,2,0,1710,20,1,0 +2013,5,7,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1525,0,0,1905,-11,0,0 +2013,9,19,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1520,12,0,1711,-3,0,0 +2013,4,24,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,650,1,0,855,5,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2255,-3,0,2259,-8,0,0 +2013,6,2,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12339,Indianapolis International,Indianapolis,IN,1118,8,0,1352,15,1,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1638,-4,0,2021,-4,0,0 +2013,10,31,4,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,755,-2,0,940,-14,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,42,1,30,29,1,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,830,-1,0,1000,-11,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,2015,1,0,55,-7,0,0 +2013,7,24,3,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1850,2,0,2025,-8,0,0 +2013,6,5,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-4,0,1354,1,0,0 +2013,4,27,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1615,38,1,1821,35,1,0 +2013,9,2,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1125,4,0,1221,2,0,0 +2013,9,30,1,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,12,0,1245,7,0,0 +2013,4,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1415,-6,0,1633,3,0,0 +2013,10,5,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1535,-2,0,1704,-10,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1047,0,0,1305,-6,0,0 +2013,10,10,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,0,0,1825,-1,0,0 +2013,4,6,6,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,810,-2,0,1255,-6,0,0 +2013,6,15,6,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1823,-4,0,1925,-3,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,615,-3,0,810,-10,0,0 +2013,9,5,4,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,805,-24,0,0 +2013,6,12,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-1,0,720,-9,0,0 +2013,5,3,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,1,0,1617,7,0,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2110,-5,0,2230,-11,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1615,35,1,1720,31,1,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1605,4,0,1915,20,1,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,7,0,1435,19,1,0 +2013,7,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1535,35,1,1714,38,1,0 +2013,7,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-3,0,935,-15,0,0 +2013,6,16,7,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,12,0,2051,5,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1111,13,0,1451,-9,0,0 +2013,8,17,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,-1,0,1106,-5,0,0 +2013,7,17,3,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,29,1,2202,17,1,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1609,-8,0,1738,-19,0,0 +2013,7,26,5,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1235,-2,0,1430,-2,0,0 +2013,9,22,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1339,-23,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2120,0,0,2330,6,0,0 +2013,8,29,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,930,-5,0,1054,2,0,0 +2013,9,15,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-5,0,1055,-21,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,600,5,0,700,-4,0,0 +2013,10,17,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1145,10,0,1310,7,0,0 +2013,8,20,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1205,-2,0,1315,-17,0,0 +2013,10,4,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,42,1,2110,28,1,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1935,-15,0,0 +2013,7,23,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1913,0,0,2048,-7,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1720,12,0,1843,-12,0,0 +2013,5,10,5,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,112,1,1540,114,1,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2145,52,1,3,59,1,0 +2013,5,17,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,25,1,2350,19,1,0 +2013,4,8,1,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1705,85,1,1925,76,1,0 +2013,6,7,5,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1731,-6,0,2100,-7,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,62,1,1320,61,1,0 +2013,5,29,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1658,30,1,1848,18,1,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2140,-3,0,2315,0,0,0 +2013,10,7,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-2,0,2125,-14,0,0 +2013,4,23,2,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,545,-4,0,717,-5,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,0,0,1128,-5,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2035,28,1,2200,11,0,0 +2013,10,26,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1914,3,0,2159,-3,0,0 +2013,4,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1025,-4,0,1125,-4,0,0 +2013,10,11,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,-3,0,955,-12,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1630,16,1,1815,6,0,0 +2013,7,30,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1945,4,0,2104,-8,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1135,15,1,1720,67,1,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2045,7,0,2140,-1,0,0 +2013,6,11,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,10,0,1730,-11,0,0 +2013,9,27,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2018,-4,0,2140,-8,0,0 +2013,9,24,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1459,-1,0,1804,15,1,0 +2013,7,12,5,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2148,2,0,555,-1,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-3,0,1310,-20,0,0 +2013,10,24,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-5,0,1611,-10,0,0 +2013,9,20,5,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,0,0,1041,7,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1300,-1,0,1435,-17,0,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,910,8,0,1230,3,0,0 +2013,8,24,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1015,-2,0,1140,-13,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1536,3,0,1739,13,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,959,0,0,1338,6,0,0 +2013,8,4,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,755,4,0,0 +2013,6,24,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,174,1,1450,201,1,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,845,32,1,1106,22,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2030,-1,0,2135,-11,0,0 +2013,5,18,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,621,-2,0,800,-11,0,0 +2013,5,24,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2051,38,1,2215,38,1,0 +2013,6,29,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1455,2,0,1629,-9,0,0 +2013,4,14,7,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,-2,0,606,-28,0,0 +2013,4,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1530,2,0,1644,18,1,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,13,0,1835,7,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,730,1,0,1300,-4,0,0 +2013,4,30,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,840,-6,0,1209,-13,0,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2020,10,0,2325,5,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,543,-3,0,917,-2,0,0 +2013,7,28,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1230,27,1,1335,28,1,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1935,37,1,2210,36,1,0 +2013,9,14,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2000,-7,0,2034,-11,0,0 +2013,5,29,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,54,1,1120,54,1,0 +2013,8,8,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-3,0,945,-11,0,0 +2013,10,24,4,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,-8,0,1611,-31,0,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-5,0,905,-11,0,0 +2013,9,21,6,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,812,-6,0,928,-9,0,0 +2013,9,5,4,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,830,-5,0,1018,-14,0,0 +2013,4,20,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,1238,7,0,1430,-11,0,0 +2013,8,24,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,-5,0,1450,-10,0,0 +2013,9,18,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1630,-4,0,1806,-2,0,0 +2013,6,2,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,3,0,1240,19,1,0 +2013,8,17,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,-5,0,1524,-10,0,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1625,4,0,1806,17,1,0 +2013,7,14,7,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2105,-7,0,2205,-16,0,0 +2013,5,17,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,6,0,1720,-2,0,0 +2013,10,14,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,-6,0,1303,-1,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1340,-3,0,1544,-6,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,830,-13,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,8,0,1532,27,1,0 +2013,5,9,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,605,-1,0,725,2,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1435,-1,0,1615,-12,0,0 +2013,7,10,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-5,0,1918,0,0,0 +2013,5,2,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,-1,0,1710,-7,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1515,2,0,1711,1,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1010,10,0,1310,5,0,0 +2013,7,22,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,935,14,0,1100,5,0,0 +2013,9,22,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1310,24,1,1430,21,1,0 +2013,4,15,1,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,842,-5,0,1028,-9,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,46,1,1240,30,1,0 +2013,7,3,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1850,-2,0,2135,-13,0,0 +2013,6,17,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1345,-9,0,1717,-17,0,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,19,1,1455,28,1,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,-4,0,1737,-12,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,629,-3,0,1243,-18,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,-1,0,1005,-5,0,0 +2013,7,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2007,-7,0,2108,-17,0,0 +2013,9,23,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,800,-1,0,920,-5,0,0 +2013,4,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2142,15,1,2251,12,0,0 +2013,7,31,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1415,2,0,1545,-2,0,0 +2013,5,19,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-3,0,1806,6,0,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,610,-3,0,855,-13,0,0 +2013,7,12,5,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1515,132,1,1650,122,1,0 +2013,7,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1912,15,1,2107,10,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1420,0,0,1525,-6,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,830,102,1,1050,109,1,0 +2013,4,26,5,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1205,3,0,1458,12,0,0 +2013,4,16,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,3,0,1346,3,0,0 +2013,7,5,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,3,0,2011,-1,0,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,105,1,2050,105,1,0 +2013,8,28,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1520,-3,0,1935,-3,0,0 +2013,10,14,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,1,0,2155,-4,0,0 +2013,8,1,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,-9,0,1121,-6,0,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1805,0,0,1920,-3,0,0 +2013,9,9,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,-3,0,2125,-14,0,0 +2013,9,13,5,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2225,-6,0,607,4,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,0,0,1434,-6,0,0 +2013,5,21,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1608,44,1,1755,43,1,0 +2013,4,25,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,335,75,1,620,76,1,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1000,2,0,1556,9,0,0 +2013,6,18,2,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1727,20,1,1815,8,0,0 +2013,8,22,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1117,2,0,1152,7,0,0 +2013,5,20,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,600,-1,0,720,2,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1255,-1,0,1422,-2,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1400,71,1,1525,72,1,0 +2013,8,30,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2037,-1,0,20,-10,0,0 +2013,5,18,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1105,-3,0,1635,0,0,0 +2013,8,6,2,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-7,0,2035,-8,0,0 +2013,6,23,7,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,347,1,1934,359,1,0 +2013,7,30,2,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-5,0,1540,-19,0,0 +2013,5,5,7,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1347,-2,0,1650,-13,0,0 +2013,4,10,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1935,20,1,2025,11,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2110,-7,0,2225,-16,0,0 +2013,6,12,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-1,0,2115,-8,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1435,15,1,1640,-12,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1525,3,0,2200,2,0,0 +2013,9,18,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2100,1,0,2200,-6,0,0 +2013,4,9,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1000,5,0,1439,-6,0,0 +2013,6,30,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1946,144,1,2323,127,1,0 +2013,9,8,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,-2,0,1355,20,1,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1420,124,1,1545,139,1,0 +2013,8,6,2,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,-10,0,1730,-23,0,0 +2013,9,7,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,16,1,2000,10,0,0 +2013,9,17,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1651,-4,0,1834,-16,0,0 +2013,7,14,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,-2,0,1922,-7,0,0 +2013,8,28,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,-2,0,1055,-3,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,700,0,0,835,-15,0,0 +2013,9,24,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1745,-8,0,1925,-23,0,0 +2013,8,7,3,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1155,0,0,1430,0,0,0 +2013,6,13,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,835,-3,0,1205,-20,0,0 +2013,10,29,2,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1244,0,,1349,0,1,1 +2013,7,22,1,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,8,0,1740,2,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1354,-7,0,1630,-18,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1719,-4,0,1829,-16,0,0 +2013,9,13,5,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,645,-4,0,935,-19,0,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1515,-6,0,1540,-15,0,0 +2013,10,28,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1002,-6,0,1214,-10,0,0 +2013,8,16,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1845,6,0,1955,3,0,0 +2013,7,26,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1135,-4,0,1422,-24,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1124,47,1,1332,36,1,0 +2013,10,18,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-6,0,945,-10,0,0 +2013,8,30,5,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1803,-8,0,2325,-6,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1900,19,1,2240,26,1,0 +2013,7,18,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,2037,9,0,2245,-31,0,0 +2013,9,29,7,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1945,160,1,40,154,1,0 +2013,7,17,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,-7,0,2155,-56,0,0 +2013,6,13,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1116,-1,0,0 +2013,10,2,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2020,-2,0,2145,10,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,830,-7,0,1000,-19,0,0 +2013,4,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1550,68,1,1825,77,1,0 +2013,6,16,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1334,-1,0,1553,0,1,1 +2013,9,3,2,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-5,0,1140,-26,0,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1632,3,0,1753,0,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1840,1,0,10,7,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,-10,0,2338,-24,0,0 +2013,10,29,2,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1239,-3,0,1420,-12,0,0 +2013,6,24,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1805,-5,0,1840,-7,0,0 +2013,8,11,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,24,1,1915,26,1,0 +2013,6,7,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1215,7,0,1350,10,0,0 +2013,4,28,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1358,-4,0,1456,-12,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1625,0,0,1835,-9,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1400,2,0,1650,-4,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,700,-4,0,1033,-9,0,0 +2013,4,14,7,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1420,25,1,1920,23,1,0 +2013,6,8,6,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,829,-2,0,1100,-4,0,0 +2013,7,26,5,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,62,1,1040,49,1,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1235,15,1,1715,18,1,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1540,2,0,1715,6,0,0 +2013,4,2,2,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1912,-27,0,2049,-21,0,0 +2013,8,25,7,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,-6,0,2139,-10,0,0 +2013,10,8,2,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,600,0,,714,0,1,1 +2013,7,18,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1929,0,0,2233,-9,0,0 +2013,10,11,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-2,0,2005,-7,0,0 +2013,10,14,1,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-3,0,915,-4,0,0 +2013,7,17,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-7,0,533,-16,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-2,0,1810,-5,0,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1325,-2,0,1605,-9,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-4,0,2238,-3,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,-2,0,1013,-12,0,0 +2013,6,25,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,17,1,1410,16,1,0 +2013,8,3,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1731,-11,0,1849,-21,0,0 +2013,9,30,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1959,-11,0,2111,-18,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,34,1,2250,38,1,0 +2013,4,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,0,0,2040,-7,0,0 +2013,4,16,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1900,-6,0,2018,14,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2050,0,0,2226,-13,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,35,1,1225,94,1,0 +2013,9,18,3,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1720,35,1,1843,49,1,0 +2013,10,3,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1403,-2,0,1723,39,1,0 +2013,9,19,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,820,0,0,930,-4,0,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1750,44,1,1905,43,1,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2130,3,0,2255,-5,0,0 +2013,5,30,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-4,0,2000,-6,0,0 +2013,10,9,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,700,-3,0,1056,-9,0,0 +2013,8,29,4,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1916,-9,0,2129,-20,0,0 +2013,5,2,4,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1955,-2,0,2110,-9,0,0 +2013,5,2,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2228,-3,0,23,-14,0,0 +2013,10,2,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,1,0,1750,-4,0,0 +2013,7,4,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,53,1,1445,42,1,0 +2013,6,19,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1545,44,1,1935,37,1,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1410,7,0,1705,13,0,0 +2013,9,27,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1530,0,0,1645,18,1,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2045,5,0,2319,5,0,0 +2013,6,1,6,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,755,1,0,955,-3,0,0 +2013,9,14,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,0,0,855,-13,0,0 +2013,9,17,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,745,-10,0,817,-1,0,0 +2013,10,11,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2010,0,0,2125,-6,0,0 +2013,4,12,5,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,45,1,0,622,11,0,0 +2013,4,18,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-4,0,1038,-16,0,0 +2013,8,24,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,-3,0,1811,-1,0,0 +2013,8,8,4,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,2,0,604,22,1,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,9,0,1527,6,0,0 +2013,10,24,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1925,8,0,2050,3,0,0 +2013,4,14,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-2,0,1628,2,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2120,-7,0,2315,-13,0,0 +2013,5,17,5,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-6,0,655,-7,0,0 +2013,5,8,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-6,0,2047,-18,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,-3,0,1332,-7,0,0 +2013,5,5,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1445,9,0,1600,8,0,0 +2013,9,26,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,40,1,1659,37,1,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-2,0,2005,-28,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1442,10,0,1723,39,1,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,925,-1,0,1259,5,0,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-7,0,912,-30,0,0 +2013,5,21,2,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1416,27,1,1715,41,1,0 +2013,10,14,1,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-2,0,1905,3,0,0 +2013,4,29,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1341,-5,0,1820,-13,0,0 +2013,6,3,1,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,1,0,1615,-19,0,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1150,-1,0,1703,-16,0,0 +2013,9,28,6,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1545,16,1,1845,10,0,0 +2013,9,29,7,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1942,-1,0,2248,-9,0,0 +2013,7,12,5,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,2015,-6,0,2205,-11,0,0 +2013,7,24,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1813,-8,0,2109,-12,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,38,1,1320,37,1,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,841,-3,0,1052,-27,0,0 +2013,6,5,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-8,0,1255,26,1,0 +2013,10,17,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1235,1,0,1400,0,0,0 +2013,10,21,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1935,-1,0,2010,-1,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1050,16,1,1150,11,0,0 +2013,5,29,3,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,615,1,0,710,-2,0,0 +2013,8,9,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,705,-7,0,1433,-27,0,0 +2013,8,27,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-4,0,1147,-13,0,0 +2013,10,13,7,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-14,0,1030,-39,0,0 +2013,6,10,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,7,0,1100,14,0,0 +2013,10,14,1,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,920,313,1,1204,316,1,0 +2013,8,18,7,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1707,-5,0,1831,-12,0,0 +2013,4,17,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,52,1,2050,39,1,0 +2013,10,14,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1055,-15,0,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-3,0,900,-5,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,620,22,1,1050,12,0,0 +2013,7,24,3,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-3,0,2108,-10,0,0 +2013,8,15,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-4,0,940,-8,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,700,0,0,820,-3,0,0 +2013,7,31,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1923,28,1,2049,40,1,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1745,1,0,2029,6,0,0 +2013,8,26,1,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-7,0,715,-17,0,0 +2013,10,18,5,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1825,5,0,2115,-7,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,745,-4,0,950,-8,0,0 +2013,8,16,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1106,11,0,0 +2013,8,19,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1030,16,1,1140,9,0,0 +2013,10,25,5,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1456,-10,0,1650,-12,0,0 +2013,6,24,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,0,0,1601,-3,0,0 +2013,7,7,7,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1435,363,1,1710,367,1,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,810,-6,0,1545,-10,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,76,1,1455,71,1,0 +2013,6,11,2,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,615,-1,0,705,-8,0,0 +2013,4,26,5,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1030,-3,0,1830,11,0,0 +2013,5,8,3,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,1,0,745,-24,0,0 +2013,6,28,5,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1639,0,,1826,0,1,1 +2013,4,21,7,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1508,118,1,1840,111,1,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1850,25,1,2225,10,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,730,9,0,1300,11,0,0 +2013,10,25,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,843,-3,0,1111,-11,0,0 +2013,9,24,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,-2,0,1911,-16,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1515,41,1,1625,57,1,0 +2013,10,10,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-5,0,1323,2,0,0 +2013,8,9,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-3,0,2305,-10,0,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2120,15,1,2245,7,0,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2040,8,0,2300,2,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1601,8,0,1930,-8,0,0 +2013,7,6,6,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1235,-9,0,1417,4,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1750,-7,0,2333,-17,0,0 +2013,10,1,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1035,-8,0,1345,-9,0,0 +2013,5,29,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,-2,0,2020,-3,0,0 +2013,8,31,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1620,-1,0,1745,-16,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,284,1,2214,271,1,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1910,4,0,2219,-21,0,0 +2013,10,19,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,855,0,0,1055,12,0,0 +2013,10,9,3,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1821,-6,0,2309,-12,0,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1300,-5,0,1350,-16,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,955,0,0,1554,-25,0,0 +2013,7,14,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-5,0,1900,-15,0,0 +2013,10,4,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,78,1,1240,52,1,0 +2013,9,25,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,920,-2,0,1214,5,0,0 +2013,8,16,5,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,8,0,1759,9,0,0 +2013,9,26,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1320,-3,0,1615,-4,0,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1700,-7,0,1827,-18,0,0 +2013,10,4,5,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,735,-1,0,845,-7,0,0 +2013,5,2,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,123,1,1755,113,1,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1834,2,0,1959,37,1,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,2135,65,1,25,60,1,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1750,-2,0,1903,-8,0,0 +2013,10,7,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,835,-2,0,955,-11,0,0 +2013,10,7,1,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,8,0,1505,-7,0,0 +2013,6,22,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,118,1,1945,122,1,0 +2013,9,10,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,0,,1120,0,1,1 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1510,-2,0,1605,7,0,0 +2013,10,22,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-16,0,2145,-11,0,0 +2013,4,30,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1615,-1,0,1823,14,0,0 +2013,9,28,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,729,-5,0,900,-7,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-7,0,1100,-11,0,0 +2013,4,11,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,630,0,0,840,-10,0,0 +2013,6,19,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,1,0,1529,-8,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-3,0,2323,-19,0,0 +2013,8,28,3,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1844,33,1,2154,28,1,0 +2013,6,6,4,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,800,-2,0,1050,24,1,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,3,0,1627,32,1,0 +2013,8,15,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,805,-6,0,919,-9,0,0 +2013,4,30,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,700,-6,0,808,-3,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1533,47,1,1712,42,1,0 +2013,5,23,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,32,1,2005,44,1,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,3,0,2040,0,0,0 +2013,5,15,3,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,725,1,0,1015,30,1,0 +2013,10,13,7,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1526,-5,0,1759,-21,0,0 +2013,8,27,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-3,0,1154,21,1,0 +2013,4,11,4,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,705,15,1,955,8,0,0 +2013,5,12,7,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,51,1,1956,14,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,630,5,0,845,8,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,830,0,0,1010,-4,0,0 +2013,10,16,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-7,0,1930,0,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,3,0,1143,20,1,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,610,-4,0,735,-9,0,0 +2013,6,11,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1650,99,1,1830,113,1,0 +2013,4,29,1,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1135,-9,0,1322,-30,0,0 +2013,6,2,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,-2,0,1617,-9,0,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,35,1,2210,30,1,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1700,2,0,1900,-2,0,0 +2013,7,25,4,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,713,7,0,901,-10,0,0 +2013,6,23,7,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1746,-4,0,0 +2013,4,4,4,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1145,13,0,1530,10,0,0 +2013,5,15,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,710,-3,0,915,-33,0,0 +2013,10,17,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,25,1,1820,17,1,0 +2013,5,13,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1835,0,0,1935,2,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,721,-6,0,1047,-19,0,0 +2013,6,20,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,0,0,1025,2,0,0 +2013,8,7,3,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,0,0,2018,1,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-2,0,1317,3,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,600,-1,0,730,-1,0,0 +2013,9,27,5,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1235,-1,0,2026,-9,0,0 +2013,7,22,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,54,1,2235,47,1,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-4,0,1310,8,0,0 +2013,5,5,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2150,-1,0,45,-22,0,0 +2013,5,12,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,849,-15,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1425,11,0,1530,0,0,0 +2013,4,16,2,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,42,1,1959,17,1,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,735,-3,0,905,-6,0,0 +2013,5,6,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1605,-4,0,1800,-8,0,0 +2013,8,1,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-2,0,814,7,0,0 +2013,6,13,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-7,0,1911,7,0,0 +2013,7,26,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2259,31,1,133,31,1,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,20,1,1715,34,1,0 +2013,10,30,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-7,0,1250,2,0,0 +2013,8,3,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1005,2,0,1300,0,0,0 +2013,10,7,1,OO,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1604,66,1,1714,62,1,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,835,-5,0,945,-11,0,0 +2013,10,8,2,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,2001,-10,0,2113,3,0,0 +2013,6,11,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1308,15,1,1601,6,0,0 +2013,4,27,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1625,-6,0,1725,-11,0,0 +2013,5,14,2,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1220,5,0,1324,-12,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1934,-3,0,2226,-5,0,0 +2013,7,14,7,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1119,23,1,1238,13,0,0 +2013,9,18,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,14,0,2134,-2,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,920,0,0,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,55,1,2205,44,1,0 +2013,5,24,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,755,-1,0,1050,-3,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,745,-2,0,950,-16,0,0 +2013,9,4,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1005,-3,0,1105,-5,0,0 +2013,8,28,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,-19,0,1300,-13,0,0 +2013,6,13,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1553,2,0,1656,9,0,0 +2013,10,10,4,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,715,0,,1047,0,1,1 +2013,7,9,2,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1405,8,0,1645,3,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,0,0,1510,1,0,0 +2013,5,6,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1727,-4,0,1805,8,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1215,-1,0,1415,-26,0,0 +2013,7,24,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,12,0,2058,14,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1128,-6,0,1309,-22,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1535,31,1,1730,12,0,0 +2013,5,7,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,930,-5,0,1135,-4,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1646,35,1,2129,57,1,0 +2013,7,22,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1905,-3,0,2100,-12,0,0 +2013,9,11,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-1,0,1525,4,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,239,1,1910,267,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,3,0,1807,-10,0,0 +2013,8,12,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1335,6,0,1440,-2,0,0 +2013,4,13,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1118,-12,0,1239,-27,0,0 +2013,6,16,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1127,20,1,1855,10,0,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,623,12,0,737,-3,0,0 +2013,10,2,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1450,2,0,1605,10,0,0 +2013,10,9,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,800,19,1,1020,6,0,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1300,0,0,2129,57,1,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1050,8,0,1750,13,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-3,0,819,-6,0,0 +2013,7,6,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-4,0,835,-10,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1320,-2,0,1415,-3,0,0 +2013,6,24,1,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,645,-1,0,820,-7,0,0 +2013,5,26,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,627,-2,0,900,-11,0,0 +2013,6,26,3,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1745,15,1,2036,23,1,0 +2013,6,5,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1415,-2,0,1645,1,0,0 +2013,7,22,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,19,1,1810,14,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2014,13,0,2324,22,1,0 +2013,6,25,2,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-5,0,1046,-20,0,0 +2013,10,15,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,855,-5,0,1029,-7,0,0 +2013,6,22,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1130,-2,0,1244,-16,0,0 +2013,8,9,5,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,745,1,0,0 +2013,7,27,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1755,0,0,1900,-1,0,0 +2013,10,29,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,805,2,0,1308,-14,0,0 +2013,7,19,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-4,0,815,-4,0,0 +2013,4,19,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1340,6,0,1455,1,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,32,1,1355,33,1,0 +2013,10,2,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-7,0,2020,3,0,0 +2013,8,2,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1601,-7,0,1900,-14,0,0 +2013,6,9,7,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-5,0,905,-9,0,0 +2013,9,14,6,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,840,-6,0,1025,-7,0,0 +2013,8,23,5,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1000,0,0,1225,20,1,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1335,-2,0,1435,8,0,0 +2013,5,10,5,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,-10,0,2128,-11,0,0 +2013,10,7,1,DL,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-3,0,912,-22,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,-4,0,856,-9,0,0 +2013,8,26,1,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1144,-5,0,1409,-3,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1430,-9,0,1611,0,0,0 +2013,6,5,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1820,-3,0,1850,-5,0,0 +2013,8,9,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1352,11,0,1558,10,0,0 +2013,5,18,6,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1731,-7,0,1905,5,0,0 +2013,7,25,4,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1055,2,0,1850,-6,0,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2232,36,1,716,24,1,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,0,0,1435,-6,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1727,-5,0,1834,-26,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,735,-4,0,1035,3,0,0 +2013,5,16,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1825,43,1,2002,30,1,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,900,3,0,1215,-1,0,0 +2013,8,2,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1710,5,0,1910,-7,0,0 +2013,8,21,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,4,0,2050,-7,0,0 +2013,7,19,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,0,0,855,-8,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1952,-6,0,2127,-2,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1430,-1,0,1520,-4,0,0 +2013,9,18,3,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2130,25,1,5,21,1,0 +2013,8,22,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,42,1,2025,50,1,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,-3,0,1155,-14,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1525,-1,0,1650,-7,0,0 +2013,10,10,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,0,0,724,3,0,0 +2013,6,2,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1225,9,0,1334,1,0,0 +2013,5,5,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1030,-2,0,1205,-1,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2150,19,1,2245,12,0,0 +2013,10,8,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1620,-5,0,1755,-32,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1145,19,1,1325,9,0,0 +2013,4,11,4,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-3,0,1019,-18,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,89,1,2051,96,1,0 +2013,8,8,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,11,0,1305,-1,0,0 +2013,5,28,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-3,0,906,14,0,0 +2013,8,3,6,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1845,121,1,2059,109,1,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,1,0,1624,-4,0,0 +2013,7,7,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,131,1,1745,141,1,0 +2013,4,12,5,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1045,-4,0,1255,-11,0,0 +2013,10,30,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-1,0,1749,-17,0,0 +2013,5,31,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,-2,0,1808,19,1,0 +2013,6,15,6,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,13,0,2005,3,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1740,10,0,2021,-2,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1725,33,1,2015,16,1,0 +2013,8,23,5,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,545,-1,0,548,4,0,0 +2013,4,30,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1950,24,1,2055,16,1,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,928,10,0,1214,-9,0,0 +2013,6,13,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-7,0,937,-14,0,0 +2013,5,22,3,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,89,1,2000,105,1,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1210,46,1,1315,43,1,0 +2013,4,18,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-3,0,1330,3,0,0 +2013,6,30,7,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1955,-3,0,2249,-14,0,0 +2013,9,20,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1714,-4,0,1839,-40,0,0 +2013,9,17,2,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-5,0,1250,-16,0,0 +2013,8,20,2,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,605,-2,0,700,-16,0,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,16,1,2115,26,1,0 +2013,4,12,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1053,4,0,1131,8,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,855,4,0,1055,-6,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,64,1,5,61,1,0 +2013,7,29,1,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-6,0,920,-15,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,720,-4,0,1000,-19,0,0 +2013,10,21,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1205,1,0,2040,-17,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,804,3,0,1041,-2,0,0 +2013,9,15,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-7,0,1155,-3,0,0 +2013,10,1,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,653,-9,0,820,10,0,0 +2013,8,16,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1005,-6,0,1409,-23,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,7,0,2000,1,0,0 +2013,7,25,4,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,24,1,2115,25,1,0 +2013,9,7,6,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1300,16,1,1510,10,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1615,44,1,1820,59,1,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1503,-2,0,2018,-14,0,0 +2013,4,1,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2130,-2,0,2230,-9,0,0 +2013,7,26,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1401,-8,0,1530,-5,0,0 +2013,6,12,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1144,-7,0,1305,-2,0,0 +2013,10,29,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,4,0,1638,8,0,0 +2013,5,23,4,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1710,28,1,1836,92,1,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1850,-6,0,2019,-18,0,0 +2013,9,14,6,UA,13830,Kahului Airport,Kahului,HI,11292,Denver International,Denver,CO,2150,8,0,823,4,0,0 +2013,10,4,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,9,0,1915,-1,0,0 +2013,6,23,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1641,-2,0,1941,-28,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1222,8,0,1349,14,0,0 +2013,10,28,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,3,0,1710,5,0,0 +2013,9,30,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1052,-12,0,1440,-17,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,9,0,1015,0,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,11,0,2350,-5,0,0 +2013,5,13,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2005,45,1,2050,31,1,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,18,1,2114,11,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2025,7,0,2136,1,0,0 +2013,8,23,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1023,-6,0,1155,-8,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,-10,0,1631,-10,0,0 +2013,9,28,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1315,49,1,1400,83,1,0 +2013,4,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,-1,0,947,-7,0,0 +2013,8,22,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1920,26,1,2040,31,1,0 +2013,8,8,4,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,-2,0,1540,-12,0,0 +2013,8,28,3,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,935,-3,0,1005,-7,0,0 +2013,9,19,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1840,-2,0,2000,-5,0,0 +2013,8,4,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,0,0,1455,-8,0,0 +2013,10,8,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1550,0,0,1912,1,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1525,-2,0,1654,-2,0,0 +2013,4,29,1,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1720,3,0,1840,-3,0,0 +2013,7,10,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,0,0,1227,3,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,930,-7,0,1209,-20,0,0 +2013,10,7,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,13,0,900,26,1,0 +2013,10,1,2,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,655,-4,0,935,-7,0,0 +2013,6,26,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1255,283,1,1615,283,1,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2247,-1,0,443,13,0,0 +2013,10,17,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1210,-4,0,1255,-5,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1756,0,0,1925,-12,0,0 +2013,4,24,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,837,-7,0,1015,-14,0,0 +2013,8,30,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,0,0,940,-7,0,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1020,12,0,1135,16,1,0 +2013,5,26,7,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1159,-14,0,1348,-30,0,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1008,-2,0,1538,13,0,0 +2013,10,10,4,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1804,9,0,1949,11,0,0 +2013,10,23,3,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,615,-6,0,930,-11,0,0 +2013,9,16,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1559,-11,0,1827,-6,0,0 +2013,7,12,5,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1030,122,1,1352,153,1,0 +2013,9,6,5,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1425,-8,0,1710,-18,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-5,0,1809,4,0,0 +2013,4,26,5,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,710,0,0,935,38,1,0 +2013,6,2,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1300,-5,0,1645,-14,0,0 +2013,7,2,2,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,-9,0,2015,-10,0,0 +2013,10,9,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1647,-6,0,1754,-17,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1340,4,0,1840,29,1,0 +2013,9,6,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,600,-2,0,745,-9,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1940,40,1,2240,34,1,0 +2013,4,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,-3,0,1930,7,0,0 +2013,6,10,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,722,-8,0,1025,-25,0,0 +2013,6,18,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1830,0,0,2139,-15,0,0 +2013,10,4,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,0,0,1356,4,0,0 +2013,5,17,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1835,15,1,2005,2,0,0 +2013,7,30,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,606,-2,0,705,-11,0,0 +2013,8,27,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,930,-21,0,0 +2013,10,10,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,645,-8,0,840,-20,0,0 +2013,10,25,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1014,0,0,1112,1,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,720,-5,0,846,-13,0,0 +2013,10,6,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2030,49,1,2155,29,1,0 +2013,9,16,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1740,-6,0,1958,0,0,0 +2013,4,21,7,EV,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,954,-2,0,1441,-11,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2259,134,1,11,122,1,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,-4,0,904,-6,0,0 +2013,4,16,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1345,-9,0,1515,-15,0,0 +2013,8,17,6,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-7,0,1305,-21,0,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,-5,0,2255,-10,0,0 +2013,6,6,4,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1949,-1,0,2238,1,0,0 +2013,6,19,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-11,0,2000,-22,0,0 +2013,8,12,1,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,9,0,1807,3,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2041,3,0,2307,-12,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1040,22,1,1155,15,1,0 +2013,10,3,4,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-2,0,2036,2,0,0 +2013,7,26,5,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,9,0,1705,16,1,0 +2013,10,9,3,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,-7,0,1611,-10,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-2,0,1401,-5,0,0 +2013,4,19,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,835,52,1,1159,53,1,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,835,9,0,1115,-5,0,0 +2013,7,1,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1025,-3,0,1040,-3,0,0 +2013,5,6,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1117,-3,0,1305,-1,0,0 +2013,9,5,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1845,-1,0,2210,-28,0,0 +2013,4,15,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-2,0,1320,-1,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1035,-3,0,1310,-7,0,0 +2013,9,10,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1245,3,0,1400,-2,0,0 +2013,5,28,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1045,-4,0,1333,0,0,0 +2013,8,25,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,-9,0,800,-10,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1638,-1,0,1810,-10,0,0 +2013,4,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1325,2,0,1654,-1,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1210,-3,0,1323,-22,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1640,3,0,1810,-2,0,0 +2013,7,25,4,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1755,20,1,1925,7,0,0 +2013,10,21,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,913,-3,0,1200,-12,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1505,37,1,1720,35,1,0 +2013,9,7,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1646,0,0,1723,3,0,0 +2013,9,13,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1950,22,1,2240,1,0,0 +2013,6,18,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1032,-3,0,1144,-5,0,0 +2013,5,4,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2025,14,0,2150,3,0,0 +2013,6,8,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1905,-5,0,2209,-18,0,0 +2013,7,24,3,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-3,0,717,-2,0,0 +2013,6,3,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1401,6,0,1705,-16,0,0 +2013,7,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-3,0,1427,-5,0,0 +2013,7,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1032,-2,0,1129,1,0,0 +2013,6,13,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,750,-1,0,925,-13,0,0 +2013,5,4,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,-7,0,735,-12,0,0 +2013,8,11,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,829,-1,0,1027,-15,0,0 +2013,5,23,4,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-9,0,500,0,0,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1901,65,1,2224,59,1,0 +2013,8,28,3,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1205,-6,0,2017,-15,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-4,0,858,-17,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-4,0,1105,-6,0,0 +2013,6,20,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,1,0,1600,16,1,0 +2013,7,9,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1518,-4,0,2359,-36,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1547,-6,0,1723,-6,0,0 +2013,6,2,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,722,-9,0,1025,-14,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,620,26,1,730,25,1,0 +2013,6,19,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,34,1,1945,16,1,0 +2013,7,12,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,-7,0,1755,16,1,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1910,13,0,2032,-18,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1050,21,1,1800,17,1,0 +2013,10,3,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-1,0,844,0,0,0 +2013,8,16,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,2,0,1524,4,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,808,-4,0,1341,-9,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1305,21,1,1440,39,1,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1850,0,0,1949,-5,0,0 +2013,4,21,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2123,-7,0,530,-12,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,8,0,1955,9,0,0 +2013,5,25,6,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1234,9,0,2100,-7,0,0 +2013,4,8,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,929,0,0,0 +2013,9,13,5,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,-2,0,2035,-10,0,0 +2013,9,24,2,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,2200,-6,0,2258,-3,0,0 +2013,4,22,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,12,0,2145,22,1,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1934,26,1,2238,-7,0,0 +2013,6,29,6,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,8,0,1940,36,1,0 +2013,7,31,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,-5,0,810,-13,0,0 +2013,5,13,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1818,-11,0,0 +2013,6,9,7,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,8,0,2010,-5,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-5,0,1250,-6,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1600,2,0,1755,-9,0,0 +2013,7,7,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,845,-1,0,1045,5,0,0 +2013,8,14,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1805,-3,0,1938,-9,0,0 +2013,6,10,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1649,0,,1846,0,1,1 +2013,4,19,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1009,-3,0,1135,7,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,-1,0,1031,-8,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-2,0,940,-11,0,0 +2013,6,20,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1421,702,1,1554,695,1,0 +2013,4,2,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,0,0,1457,-9,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1926,-2,0,2135,-4,0,0 +2013,10,10,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,2,0,635,-6,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1330,-3,0,1540,8,0,0 +2013,9,3,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,830,20,1,1100,17,1,0 +2013,9,24,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-1,0,940,-24,0,0 +2013,9,1,7,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,-7,0,957,-20,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-3,0,2347,0,0,0 +2013,4,22,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,640,-2,0,740,-9,0,0 +2013,6,3,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1730,52,1,2103,44,1,0 +2013,5,6,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1819,-4,0,1925,-19,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2220,0,0,2300,-2,0,0 +2013,7,3,3,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2200,-4,0,550,4,0,0 +2013,7,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,45,1,855,31,1,0 +2013,8,5,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1150,49,1,1800,25,1,0 +2013,4,29,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-9,0,1743,-10,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,-1,0,1013,-4,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,911,-1,0,1201,-27,0,0 +2013,8,2,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1858,2,0,2159,-8,0,0 +2013,4,10,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-3,0,1220,-7,0,0 +2013,9,14,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,94,1,1610,92,1,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1203,-1,0,1337,-5,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1200,-4,0,1424,-13,0,0 +2013,6,13,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,0,0,1005,-3,0,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1800,4,0,2115,2,0,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2130,0,0,2250,-8,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,715,-1,0,920,0,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-6,0,1914,-18,0,0 +2013,4,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1850,90,1,2159,85,1,0 +2013,9,12,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-8,0,2013,-17,0,0 +2013,7,5,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-8,0,1557,-11,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1124,-4,0,1212,-10,0,0 +2013,6,26,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1015,222,1,1620,221,1,0 +2013,4,24,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1120,-2,0,1512,9,0,0 +2013,4,7,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-8,0,1500,-12,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1250,-5,0,1650,-7,0,0 +2013,5,4,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1529,-3,0,1820,-22,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,11,0,2255,-6,0,0 +2013,7,22,1,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,846,88,1,1035,80,1,0 +2013,10,1,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,0,0,1805,1,0,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1120,-3,0,1410,6,0,0 +2013,4,30,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1045,1,0,1322,-11,0,0 +2013,8,27,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,-1,0,1125,-7,0,0 +2013,8,4,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,49,1,1800,59,1,0 +2013,4,6,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,17,1,1720,1,0,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,2020,6,0,2230,21,1,0 +2013,9,22,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,2145,-6,0,152,-4,0,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,2,0,1025,-7,0,0 +2013,10,14,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,22,1,1315,16,1,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1355,-1,0,1445,-1,0,0 +2013,8,25,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1438,190,1,1550,236,1,0 +2013,4,10,3,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,725,-3,0,920,40,1,0 +2013,8,9,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1424,0,0,1606,12,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,67,1,1820,57,1,0 +2013,4,18,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1105,52,1,1215,36,1,0 +2013,5,8,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-4,0,1535,-17,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,805,6,0,1000,5,0,0 +2013,9,22,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,9,0,1753,-4,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1210,-1,0,1500,-10,0,0 +2013,7,17,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,740,-1,0,855,-8,0,0 +2013,8,16,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1557,2,0,1850,-6,0,0 +2013,8,28,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1705,-7,0,1940,-1,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,-1,0,2145,-3,0,0 +2013,5,31,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1030,-8,0,1505,-5,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,604,-2,0,850,1,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,1,0,850,-4,0,0 +2013,7,16,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,-6,0,1750,-10,0,0 +2013,10,3,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-2,0,2107,-7,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,14,0,1255,19,1,0 +2013,9,21,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1440,-6,0,1624,-5,0,0 +2013,8,27,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,-9,0,1904,-8,0,0 +2013,10,22,2,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-8,0,1349,-10,0,0 +2013,10,25,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-4,0,1742,-10,0,0 +2013,9,1,7,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1430,-9,0,1736,-44,0,0 +2013,4,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,920,3,0,1740,11,0,0 +2013,6,11,2,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-9,0,1415,-8,0,0 +2013,6,21,5,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2213,-3,0,2300,-18,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1445,24,1,1705,32,1,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1812,-5,0,1942,-1,0,0 +2013,10,23,3,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1715,13,0,1953,12,0,0 +2013,4,9,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,31,1,1745,28,1,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,10,0,1914,12,0,0 +2013,5,21,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,-4,0,950,-5,0,0 +2013,10,19,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1600,-6,0,1914,-15,0,0 +2013,9,2,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-8,0,2018,-21,0,0 +2013,8,4,7,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,32,1,823,34,1,0 +2013,7,30,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,12,0,1800,4,0,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1250,18,1,1605,36,1,0 +2013,4,3,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,-5,0,1030,-12,0,0 +2013,5,15,3,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1157,-3,0,1304,-20,0,0 +2013,4,1,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,8,0,1147,15,1,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1910,10,0,2140,0,0,0 +2013,10,30,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,830,-5,0,1059,-36,0,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,6,0,1305,1,0,0 +2013,9,26,4,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1725,-4,0,1908,2,0,0 +2013,10,1,2,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1420,-5,0,2230,-16,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,820,-2,0,1700,4,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,5,0,1015,-5,0,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,920,-3,0,1025,-15,0,0 +2013,7,9,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,820,1,0,935,-11,0,0 +2013,7,25,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1121,21,1,1307,13,0,0 +2013,9,18,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-9,0,1415,-19,0,0 +2013,7,27,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,0,0,1300,-2,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2035,0,0,2239,-19,0,0 +2013,8,12,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-8,0,1317,-6,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,10,0,1825,12,0,0 +2013,8,21,3,EV,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1848,-5,0,2049,-23,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1400,-1,0,1525,-6,0,0 +2013,4,5,5,FL,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-2,0,1950,5,0,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1954,-9,0,2232,20,1,0 +2013,9,18,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-3,0,1220,-12,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1100,0,0,1220,7,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,0,0,1154,28,1,0 +2013,8,15,4,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1645,5,0,1745,2,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,-2,0,1933,-13,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,-1,0,1021,-16,0,0 +2013,5,4,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1240,-4,0,1350,-13,0,0 +2013,10,5,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,550,-7,0,702,-15,0,0 +2013,7,5,5,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2057,-5,0,2329,-17,0,0 +2013,8,21,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1800,3,0,2101,-1,0,0 +2013,7,24,3,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2148,-9,0,555,-21,0,0 +2013,8,29,4,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1635,24,1,1820,-3,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,-2,0,1047,1,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2025,-6,0,50,-14,0,0 +2013,10,15,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,2040,8,0,2145,0,0,0 +2013,8,23,5,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2321,11,0,510,15,1,0 +2013,6,4,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2110,109,1,2240,92,1,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,910,1,0,1245,-4,0,0 +2013,5,29,3,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,836,-4,0,1015,-7,0,0 +2013,9,3,2,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1539,-1,0,1648,17,1,0 +2013,8,20,2,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1505,13,0,1810,12,0,0 +2013,10,31,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1853,50,1,2049,59,1,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1004,-5,0,1200,-9,0,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1010,5,0,1237,2,0,0 +2013,9,5,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1651,5,0,2100,19,1,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,952,6,0,1106,-9,0,0 +2013,9,6,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1053,4,0,1210,0,0,0 +2013,7,1,1,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1027,19,1,1216,15,1,0 +2013,10,7,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1805,161,1,1942,150,1,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1612,-3,0,1929,-11,0,0 +2013,9,3,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,800,-3,0,1013,-3,0,0 +2013,10,28,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1005,15,1,1155,27,1,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1915,-8,0,2052,23,1,0 +2013,4,26,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-3,0,1135,12,0,0 +2013,8,15,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1820,2,0,2052,-5,0,0 +2013,5,2,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1726,0,0,1748,28,1,0 +2013,8,5,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-3,0,757,9,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1025,27,1,1520,15,1,0 +2013,10,9,3,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-1,0,1038,-3,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,730,-4,0,835,-9,0,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1400,27,1,1525,15,1,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1655,38,1,2021,39,1,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,10,0,1635,-3,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,4,0,1430,-14,0,0 +2013,4,17,3,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1353,12,0,1655,-8,0,0 +2013,4,6,6,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2245,-1,0,621,-17,0,0 +2013,8,27,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,24,1,1152,3,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,745,5,0,845,6,0,0 +2013,10,6,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-11,0,1200,-10,0,0 +2013,6,28,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2100,2,0,2230,-4,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-8,0,1139,-6,0,0 +2013,10,1,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-6,0,920,-9,0,0 +2013,5,7,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1027,-2,0,1105,3,0,0 +2013,6,15,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-12,0,1305,-19,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,605,-4,0,835,8,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1529,19,1,1719,-1,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1551,-4,0,1722,8,0,0 +2013,9,23,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,-2,0,1255,7,0,0 +2013,6,13,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,950,0,0,1250,-7,0,0 +2013,10,6,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1740,32,1,2010,21,1,0 +2013,8,18,7,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,-3,0,1820,10,0,0 +2013,10,3,4,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,-4,0,2000,-1,0,0 +2013,8,21,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1836,-11,0,2030,-19,0,0 +2013,10,18,5,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-3,0,1943,7,0,0 +2013,7,1,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1745,-4,0,1915,1,0,0 +2013,7,19,5,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1220,4,0,1541,-7,0,0 +2013,10,26,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1731,-8,0,1903,-15,0,0 +2013,9,23,1,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1845,15,1,2014,-11,0,0 +2013,4,26,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,-1,0,845,12,0,0 +2013,5,27,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-8,0,627,-12,0,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,0,,940,0,1,1 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,825,4,0,1045,11,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,4,0,2104,-5,0,0 +2013,4,13,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1105,8,0,1220,-6,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,3,0,2240,17,1,0 +2013,8,11,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1700,17,1,1910,19,1,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-7,0,1159,-14,0,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1505,-3,0,1600,-15,0,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,600,-2,0,805,-4,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1540,0,0,1804,-13,0,0 +2013,5,15,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-5,0,1814,-11,0,0 +2013,4,21,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1735,9,0,1815,15,1,0 +2013,7,11,4,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1959,84,1,2247,95,1,0 +2013,7,3,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1805,112,1,2000,92,1,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1920,10,0,2200,6,0,0 +2013,10,16,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-5,0,2025,-8,0,0 +2013,8,17,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2020,-12,0,2230,-32,0,0 +2013,9,10,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1045,1,0,1105,-11,0,0 +2013,9,15,7,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,950,-7,0,1310,-3,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,820,-10,0,0 +2013,5,30,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,52,1,1425,49,1,0 +2013,7,1,1,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-2,0,1305,3,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,14,0,1740,25,1,0 +2013,4,14,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1111,-1,0,1253,-12,0,0 +2013,8,28,3,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1139,5,0,1520,5,0,0 +2013,10,3,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,-5,0,2130,-3,0,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,0,,1512,0,1,1 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,731,-6,0,904,-2,0,0 +2013,8,28,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-3,0,701,-5,0,0 +2013,6,13,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1830,32,1,1935,28,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,2,0,1922,-8,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,735,-4,0,1002,-24,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1455,-2,0,1603,-13,0,0 +2013,5,4,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,3,0,1420,-9,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1944,0,0,2047,-26,0,0 +2013,7,9,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,607,-4,0,726,-14,0,0 +2013,4,26,5,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,605,-4,0,729,-9,0,0 +2013,5,23,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,4,0,635,0,0,0 +2013,6,5,3,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-10,0,1215,-28,0,0 +2013,9,13,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1955,-6,0,2219,12,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1015,8,0,1305,-3,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1510,-4,0,1610,-4,0,0 +2013,9,29,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1025,3,0,1135,4,0,0 +2013,7,28,7,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,655,-4,0,754,-2,0,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,725,-2,0,1020,-12,0,0 +2013,5,19,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,-3,0,930,-6,0,0 +2013,6,6,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,3,0,2152,-13,0,0 +2013,7,28,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1210,13,0,1320,12,0,0 +2013,7,18,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,25,1,1445,13,0,0 +2013,9,18,3,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1306,21,1,2128,-3,0,0 +2013,4,20,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1430,-3,0,1535,-10,0,0 +2013,10,14,1,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,935,0,0,1420,1,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1615,2,0,1710,-11,0,0 +2013,10,10,4,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2035,-9,0,2215,4,0,0 +2013,10,10,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,-1,0,1804,-14,0,0 +2013,9,24,2,9E,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1600,-10,0,1744,-23,0,0 +2013,4,12,5,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-2,0,915,3,0,0 +2013,6,22,6,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1920,16,1,2025,18,1,0 +2013,8,15,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1208,-2,0,1452,5,0,0 +2013,9,16,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,8,0,641,10,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-1,0,1305,9,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,835,12,0,1115,-32,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1715,22,1,2255,11,0,0 +2013,8,16,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1920,-3,0,2110,-6,0,0 +2013,6,7,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-3,0,1755,-6,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-4,0,908,-12,0,0 +2013,9,21,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,948,-1,0,1230,4,0,0 +2013,7,19,5,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,615,0,0,830,-3,0,0 +2013,10,14,1,9E,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1815,15,1,1946,1,0,0 +2013,7,23,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,600,-1,0,800,-19,0,0 +2013,7,5,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,-1,0,1550,-10,0,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2045,-4,0,2359,12,0,0 +2013,10,15,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,-4,0,821,-17,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1558,-4,0,2005,-23,0,0 +2013,9,18,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1000,-8,0,1120,-18,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1435,36,1,1700,4,0,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-8,0,1059,-22,0,0 +2013,9,8,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1742,-15,0,2149,2,0,0 +2013,7,2,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,830,-7,0,1647,12,0,0 +2013,4,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1310,-3,0,1430,1,0,0 +2013,4,26,5,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,-1,0,1435,-2,0,0 +2013,8,26,1,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1830,-21,0,2004,-25,0,0 +2013,8,10,6,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,5,0,2145,10,0,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1820,80,1,2000,80,1,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1600,-3,0,1655,-8,0,0 +2013,5,15,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1955,7,0,2125,2,0,0 +2013,9,9,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-6,0,726,-15,0,0 +2013,8,27,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,903,0,0,937,2,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1747,-2,0,1930,-19,0,0 +2013,9,21,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,-1,0,2105,2,0,0 +2013,9,15,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1217,-10,0,1402,-17,0,0 +2013,4,23,2,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,-1,0,1420,-4,0,0 +2013,4,1,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1022,1,0,1301,-9,0,0 +2013,7,5,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-1,0,1729,-9,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-8,0,935,-3,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1758,-5,0,2025,-22,0,0 +2013,7,2,2,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,0,0,626,4,0,0 +2013,10,10,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-6,0,1704,-17,0,0 +2013,7,5,5,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,913,-4,0,1121,3,0,0 +2013,4,30,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,1123,17,1,0 +2013,7,23,2,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,623,-1,0,1034,4,0,0 +2013,6,23,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,25,1,1857,17,1,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,610,0,0,715,4,0,0 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,-7,0,1435,-9,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1033,17,1,1311,18,1,0 +2013,9,15,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-11,0,1110,0,1,1 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1750,46,1,2012,40,1,0 +2013,9,27,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,800,-4,0,905,-4,0,0 +2013,7,4,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-7,0,955,-13,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1643,10,0,2000,1,0,0 +2013,10,25,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-10,0,1115,-20,0,0 +2013,8,25,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1140,-7,0,1345,0,0,0 +2013,10,18,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-4,0,2035,15,1,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1045,-2,0,1210,-9,0,0 +2013,8,28,3,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-7,0,2025,-14,0,0 +2013,10,8,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1255,-7,0,1440,-15,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2130,79,1,2303,85,1,0 +2013,4,17,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,15,1,1805,26,1,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-2,0,1055,-3,0,0 +2013,9,1,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2005,-7,0,2119,-16,0,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1935,51,1,2114,65,1,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1555,-5,0,1729,40,1,0 +2013,10,6,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1955,-5,0,2135,-2,0,0 +2013,4,18,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-5,0,1255,74,1,0 +2013,4,28,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1125,-3,0,1903,6,0,0 +2013,6,19,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,0,0,1228,-14,0,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1920,2,0,2040,-6,0,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-4,0,1445,-22,0,0 +2013,6,1,6,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,625,95,1,820,114,1,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,815,3,0,945,-1,0,0 +2013,4,28,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-2,0,1850,-39,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,0,0,2010,-16,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,530,-1,0,820,-4,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,810,6,0,1245,1,0,0 +2013,4,11,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1605,39,1,1903,33,1,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1730,5,0,2055,2,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1935,137,1,55,137,1,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,3,0,1058,2,0,0 +2013,10,18,5,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,959,-4,0,1320,-10,0,0 +2013,7,30,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1400,-5,0,1540,8,0,0 +2013,9,6,5,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,700,-10,0,822,-14,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1448,5,0,2008,2,0,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1037,-5,0,1604,-19,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1045,-3,0,1310,-11,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1209,-2,0,1346,-12,0,0 +2013,10,23,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2010,-7,0,2125,-19,0,0 +2013,10,11,5,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,-2,0,810,-9,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,850,0,0,1105,-13,0,0 +2013,9,4,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-7,0,1200,-21,0,0 +2013,7,25,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-6,0,1910,0,0,0 +2013,5,12,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2135,-1,0,2319,6,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1535,0,0,1700,13,0,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1148,-5,0,1547,0,0,0 +2013,10,1,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1845,0,0,1955,-6,0,0 +2013,4,30,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,6,0,810,2,0,0 +2013,7,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,10,0,2015,15,1,0 +2013,9,15,7,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-2,0,1205,-13,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,4,0,15,-11,0,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2102,-4,0,2257,-4,0,0 +2013,8,29,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1435,0,,1547,0,1,1 +2013,5,3,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1108,9,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1148,-4,0,1336,-28,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1941,-4,0,2140,9,0,0 +2013,8,24,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1958,0,0,2200,-10,0,0 +2013,7,29,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-5,0,2350,-24,0,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1320,-2,0,1540,-11,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1312,-3,0,1710,-17,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,3,0,1149,7,0,0 +2013,8,6,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,91,1,1945,80,1,0 +2013,10,31,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1245,-4,0,1415,-7,0,0 +2013,7,30,2,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,713,-11,0,1036,-19,0,0 +2013,6,7,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,630,-2,0,916,2,0,0 +2013,10,12,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,3,0,905,-11,0,0 +2013,4,17,3,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1432,105,1,1928,77,1,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-2,0,2233,12,0,0 +2013,7,31,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-6,0,1420,8,0,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,834,1,0,1148,-1,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2145,7,0,2307,-11,0,0 +2013,10,31,4,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,710,-10,0,1010,-3,0,0 +2013,10,28,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,805,-15,0,0 +2013,7,22,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2140,268,1,542,266,1,0 +2013,10,3,4,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1005,7,0,1505,18,1,0 +2013,4,23,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1105,18,1,1503,19,1,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,645,-1,0,835,-4,0,0 +2013,5,27,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1027,246,1,1110,244,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2304,-3,0,51,-15,0,0 +2013,5,26,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1223,-5,0,1335,7,0,0 +2013,8,13,2,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,655,-5,0,830,5,0,0 +2013,8,22,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,57,1,1524,49,1,0 +2013,6,28,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1605,35,1,1640,67,1,0 +2013,9,2,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1936,15,1,2207,-1,0,0 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1555,-4,0,1825,1,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2200,-2,0,2250,3,0,0 +2013,8,13,2,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,2,0,1040,15,1,0 +2013,8,14,3,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-10,0,1227,-11,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2210,-5,0,2300,-17,0,0 +2013,7,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,809,-2,0,1138,-5,0,0 +2013,8,25,7,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2216,5,0,617,19,1,0 +2013,4,4,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1635,2,0,1740,-5,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,44,1,1715,38,1,0 +2013,4,12,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,10,-1,0,626,-26,0,0 +2013,5,12,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-7,0,1642,-3,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2015,2,0,2240,-10,0,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1351,73,1,1427,80,1,0 +2013,4,2,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1439,-8,0,1739,5,0,0 +2013,10,28,1,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,745,-6,0,1456,-30,0,0 +2013,9,1,7,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2029,-4,0,2359,-29,0,0 +2013,9,2,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1745,-6,0,2003,14,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,85,1,2251,71,1,0 +2013,4,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,1,0,1046,-11,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1132,-4,0,1751,-16,0,0 +2013,5,27,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1700,-5,0,2038,-14,0,0 +2013,4,9,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,35,1,1345,26,1,0 +2013,8,28,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,3,0,2130,5,0,0 +2013,8,21,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1543,-6,0,1550,7,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1355,27,1,1622,41,1,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,950,-3,0,1100,-11,0,0 +2013,6,30,7,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,20,1,2203,23,1,0 +2013,8,10,6,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,600,-7,0,920,-11,0,0 +2013,5,11,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-9,0,1608,7,0,0 +2013,10,9,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1230,-6,0,1509,-21,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-3,0,720,-2,0,0 +2013,9,8,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1800,-5,0,2034,-4,0,0 +2013,5,15,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1114,-1,0,1624,1,0,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1245,40,1,1415,32,1,0 +2013,6,22,6,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-5,0,1125,25,1,0 +2013,4,11,4,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,935,-3,0,1525,-15,0,0 +2013,6,7,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1633,-1,0,1926,-12,0,0 +2013,4,13,6,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14122,Pittsburgh International,Pittsburgh,PA,1205,18,1,1435,-2,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1800,8,0,2100,-14,0,0 +2013,5,30,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1430,1,0,1550,2,0,0 +2013,9,2,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,-6,0,1401,-4,0,0 +2013,9,20,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1458,5,0,1600,18,1,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,730,1,0,1055,-5,0,0 +2013,8,7,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1205,-3,0,1322,-7,0,0 +2013,4,16,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2012,-10,0,2048,-7,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1455,15,1,1700,15,1,0 +2013,5,31,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1939,-25,0,0 +2013,8,1,4,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-1,0,1317,-11,0,0 +2013,6,19,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,3,0,1315,-5,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,7,0,1403,-12,0,0 +2013,5,30,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,7,0,1145,-1,0,0 +2013,6,17,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1005,2,0,0 +2013,10,29,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,0,,1240,0,1,1 +2013,9,6,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,825,-4,0,1010,-6,0,0 +2013,8,23,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1505,18,1,1615,17,1,0 +2013,4,8,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,0,0,1205,21,1,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1015,-4,0,1143,-8,0,0 +2013,5,14,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,-5,0,1816,5,0,0 +2013,5,4,6,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-5,0,850,2,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,930,0,0,1340,-8,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,830,23,1,1100,12,0,0 +2013,10,27,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1855,-7,0,2107,-21,0,0 +2013,5,12,7,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,820,-2,0,930,6,0,0 +2013,6,14,5,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,730,-3,0,920,2,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1106,18,1,1222,10,0,0 +2013,5,1,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1930,19,1,2323,51,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1410,3,0,1535,-2,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1717,42,1,2043,38,1,0 +2013,7,12,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,103,1,1900,93,1,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1010,3,0,1034,-5,0,0 +2013,6,21,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1215,-4,0,1313,-13,0,0 +2013,4,12,5,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,700,5,0,918,-13,0,0 +2013,8,20,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,46,1,1500,48,1,0 +2013,6,8,6,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-8,0,732,-14,0,0 +2013,6,16,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-1,0,920,-10,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1455,47,1,2340,39,1,0 +2013,10,12,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-5,0,1355,6,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,725,-1,0,858,-17,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,4,0,1218,-4,0,0 +2013,5,2,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,45,1,1955,42,1,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1225,-1,0,1430,-5,0,0 +2013,9,23,1,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1725,6,0,2245,-9,0,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,708,4,0,943,12,0,0 +2013,7,24,3,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1745,6,0,2030,5,0,0 +2013,4,4,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-2,0,912,-41,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-1,0,1115,5,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,0,0,1845,-4,0,0 +2013,6,20,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2030,-8,0,2145,-13,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1605,177,1,1835,158,1,0 +2013,5,22,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1210,-6,0,1357,-5,0,0 +2013,9,13,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1315,84,1,1425,65,1,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,1314,6,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1130,-4,0,1515,-20,0,0 +2013,10,25,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1710,-2,0,2005,-8,0,0 +2013,7,9,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-7,0,959,5,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,-3,0,1715,20,1,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,-1,0,2050,-12,0,0 +2013,9,24,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-3,0,935,-5,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1540,-3,0,1829,-30,0,0 +2013,5,7,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,0,0,1410,-1,0,0 +2013,8,7,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1706,-9,0,1753,1,0,0 +2013,7,26,5,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1415,-1,0,2220,-5,0,0 +2013,9,11,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1005,4,0,1552,-5,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,832,-1,0,909,-15,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1235,15,1,1255,18,1,0 +2013,6,26,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1015,6,0,1135,5,0,0 +2013,5,20,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-6,0,1750,-17,0,0 +2013,9,7,6,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1110,12,0,1315,-38,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1855,124,1,2320,157,1,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-3,0,1313,-14,0,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,600,-8,0,713,-19,0,0 +2013,10,30,3,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1709,-1,0,1750,-2,0,0 +2013,10,24,4,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1335,-8,0,1410,-11,0,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,1010,-7,0,1434,-20,0,0 +2013,4,25,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1400,83,1,1432,98,1,0 +2013,9,15,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,830,-6,0,1022,3,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,615,-3,0,730,-9,0,0 +2013,6,6,4,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1350,-5,0,1505,1,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2000,31,1,2140,14,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,605,-5,0,850,-10,0,0 +2013,8,4,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,8,0,1945,-12,0,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-3,0,1140,-30,0,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1945,-6,0,2350,-26,0,0 +2013,5,22,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1053,15,1,1210,6,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,-3,0,1005,-4,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1835,9,0,2155,-6,0,0 +2013,6,24,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,640,-2,0,835,-9,0,0 +2013,10,25,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1500,-5,0,1815,-5,0,0 +2013,8,15,4,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,755,-15,0,0 +2013,6,30,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1400,-3,0,1636,-13,0,0 +2013,10,17,4,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1845,67,1,2029,70,1,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1525,10,0,1736,10,0,0 +2013,4,14,7,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-3,0,1312,20,1,0 +2013,8,20,2,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1508,-6,0,1609,-20,0,0 +2013,8,5,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1300,-6,0,1521,-19,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-4,0,1611,4,0,0 +2013,7,18,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1355,0,0,1515,6,0,0 +2013,4,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,810,-5,0,1110,-9,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1700,-4,0,1755,-7,0,0 +2013,8,17,6,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1155,14,0,1630,-21,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1635,26,1,2215,8,0,0 +2013,6,6,4,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-1,0,1633,-6,0,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1550,29,1,1748,14,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1300,25,1,1400,22,1,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1240,19,1,1815,9,0,0 +2013,10,24,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,800,-3,0,910,-3,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1745,-3,0,1908,-16,0,0 +2013,7,3,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1940,-3,0,2030,-5,0,0 +2013,7,24,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,-4,0,509,-17,0,0 +2013,4,21,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-5,0,855,-8,0,0 +2013,10,22,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1700,33,1,1950,32,1,0 +2013,5,19,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1850,100,1,2045,84,1,0 +2013,4,14,7,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1745,-5,0,2250,-23,0,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-2,0,1630,-30,0,0 +2013,6,7,5,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1846,-8,0,2002,-22,0,0 +2013,5,20,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2045,106,1,2320,112,1,0 +2013,4,27,6,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,700,-10,0,930,-30,0,0 +2013,10,3,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1710,35,1,2000,31,1,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,838,-4,0,1213,-12,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,659,-1,0,908,-15,0,0 +2013,4,21,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1835,9,0,2020,22,1,0 +2013,5,27,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,1,0,1245,-5,0,0 +2013,8,8,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1356,-6,0,1710,12,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1435,5,0,1540,2,0,0 +2013,5,24,5,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,5,0,1420,-1,0,0 +2013,10,24,4,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,645,6,0,928,4,0,0 +2013,7,3,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1520,15,1,1659,22,1,0 +2013,5,27,1,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1140,0,0,1330,2,0,0 +2013,9,4,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1730,-1,0,2024,-13,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1340,-7,0,1445,-2,0,0 +2013,8,1,4,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1435,1,0,1655,0,0,0 +2013,5,3,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1100,9,0,1200,5,0,0 +2013,7,30,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-4,0,1942,-18,0,0 +2013,7,11,4,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1744,38,1,2026,15,1,0 +2013,10,23,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,0,0,1315,-2,0,0 +2013,4,16,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-6,0,833,-2,0,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1250,5,0,1420,-5,0,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,3,0,1525,3,0,0 +2013,7,25,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,9,0,1436,5,0,0 +2013,5,5,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-3,0,1951,-40,0,0 +2013,6,9,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-1,0,1249,-3,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,0,0,1225,-6,0,0 +2013,6,11,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1215,8,0,1305,15,1,0 +2013,4,15,1,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,-2,0,1005,-5,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,25,1,2050,7,0,0 +2013,4,18,4,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,2,0,520,-8,0,0 +2013,7,4,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,92,1,1010,91,1,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,750,10,0,1015,8,0,0 +2013,8,9,5,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,1,0,2020,-4,0,0 +2013,7,19,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,8,0,1655,37,1,0 +2013,4,1,1,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,620,-4,0,755,-15,0,0 +2013,9,28,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,830,-8,0,922,-9,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,729,-9,0,845,-7,0,0 +2013,10,28,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-7,0,1939,-12,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,-7,0,1106,-13,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-5,0,1403,-18,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1310,2,0,1547,-11,0,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1516,0,0,1817,5,0,0 +2013,10,26,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,-12,0,1710,-10,0,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,-8,0,1605,-19,0,0 +2013,10,24,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1537,-5,0,1649,-19,0,0 +2013,9,29,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,930,-3,0,1755,-21,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1209,1,0,1310,2,0,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1732,41,1,1937,20,1,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,37,1,1940,33,1,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1937,-1,0,2044,-8,0,0 +2013,7,19,5,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-4,0,908,-45,0,0 +2013,5,18,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1040,-7,0,1355,-17,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,-3,0,1034,-10,0,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,905,0,0,1240,-15,0,0 +2013,5,25,6,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,-5,0,1641,-12,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1948,-2,0,2153,-2,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,0,0,930,-7,0,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,731,-1,0,903,3,0,0 +2013,4,26,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1733,21,1,1858,9,0,0 +2013,6,27,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-3,0,1213,-10,0,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,635,-3,0,835,-10,0,0 +2013,8,5,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,4,0,1925,-7,0,0 +2013,10,9,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,8,0,1315,-3,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,4,0,1610,-5,0,0 +2013,9,12,4,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,3,0,2035,-3,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1736,-1,0,1914,-7,0,0 +2013,6,20,4,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,742,4,0,939,-2,0,0 +2013,7,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1530,50,1,1825,63,1,0 +2013,7,18,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,-2,0,719,-9,0,0 +2013,8,11,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-4,0,2013,1,0,0 +2013,9,13,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,20,1,2137,15,1,0 +2013,10,23,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1113,-2,0,1407,-4,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1938,-2,0,2125,4,0,0 +2013,9,21,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1008,1,0,1123,4,0,0 +2013,7,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1020,15,1,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,153,1,1525,208,1,0 +2013,8,30,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,940,-3,0,1110,-23,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2225,67,1,9,79,1,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1535,-4,0,1840,-16,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1244,-3,0,1356,-18,0,0 +2013,9,22,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1315,9,0,1440,12,0,0 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,6,0,1520,11,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1655,144,1,1915,138,1,0 +2013,10,18,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,3,0,1035,-11,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,745,-6,0,950,-9,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1405,0,0,1540,2,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,8,0,21,12,0,0 +2013,9,7,6,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1315,-13,0,0 +2013,4,30,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1236,-4,0,1431,-20,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1614,0,0,1821,-8,0,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,941,13,0,1151,11,0,0 +2013,8,24,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,1,0,1305,-1,0,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1416,33,1,1736,23,1,0 +2013,4,2,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,-1,0,1005,-7,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1008,18,1,1220,6,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-5,0,2331,4,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2025,26,1,2255,-15,0,0 +2013,10,23,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,394,1,1914,385,1,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,-4,0,1720,6,0,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,5,0,1735,-16,0,0 +2013,10,31,4,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,-4,0,1755,-1,0,0 +2013,7,9,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,25,1,1305,35,1,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-5,0,920,-8,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1725,-2,0,2340,10,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,3,0,1530,-1,0,0 +2013,10,27,7,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1355,84,1,1545,95,1,0 +2013,7,26,5,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1435,30,1,1555,22,1,0 +2013,10,11,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,545,-7,0,1140,-18,0,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1745,-5,0,1930,-10,0,0 +2013,8,18,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,-1,0,1715,-9,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,-1,0,1405,-11,0,0 +2013,6,12,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,0,0,2125,8,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1629,-1,0,2234,1,0,0 +2013,6,1,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-6,0,1119,-9,0,0 +2013,9,17,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1850,-7,0,2110,-21,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1810,24,1,2245,14,0,0 +2013,8,27,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,-2,0,1325,-2,0,0 +2013,4,6,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,645,-12,0,935,-17,0,0 +2013,9,21,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1200,15,1,1515,31,1,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,927,89,1,1258,90,1,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1429,15,1,1733,-5,0,0 +2013,6,18,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,815,61,1,1000,65,1,0 +2013,9,11,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,720,-4,0,1143,7,0,0 +2013,5,15,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1146,-4,0,1439,6,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,9,0,1750,18,1,0 +2013,6,1,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,610,4,0,934,-14,0,0 +2013,7,31,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,848,-8,0,1227,-3,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,1,0,1435,11,0,0 +2013,4,8,1,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-2,0,2213,4,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2235,129,1,2325,135,1,0 +2013,4,3,3,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1025,7,0,1545,4,0,0 +2013,4,1,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,-1,0,800,2,0,0 +2013,5,14,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1141,8,0,1259,-1,0,0 +2013,8,31,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2150,-4,0,45,-14,0,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,705,-2,0,808,26,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-4,0,1158,-10,0,0 +2013,10,5,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1312,-11,0,1600,-5,0,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1209,-5,0,1351,-23,0,0 +2013,5,30,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1210,-10,0,1329,-10,0,0 +2013,4,21,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,-6,0,950,-26,0,0 +2013,5,8,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,841,10,0,1032,-6,0,0 +2013,6,6,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-1,0,831,7,0,0 +2013,10,24,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,6,0,1730,-10,0,0 +2013,7,25,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1531,140,1,1855,125,1,0 +2013,8,21,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1420,-3,0,1554,4,0,0 +2013,5,23,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,-4,0,910,3,0,0 +2013,6,16,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,23,1,1730,20,1,0 +2013,6,12,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1511,44,1,1852,28,1,0 +2013,4,10,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,816,-4,0,1100,-3,0,0 +2013,7,13,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-11,0,1020,-10,0,0 +2013,6,8,6,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-6,0,800,-18,0,0 +2013,7,9,2,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1919,3,0,2257,13,0,0 +2013,8,27,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1118,0,0,1342,-16,0,0 +2013,6,1,6,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1340,-1,0,1503,1,0,0 +2013,6,23,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,710,-1,0,725,2,0,0 +2013,4,9,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,620,-14,0,803,-31,0,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,0,0,1750,1,0,0 +2013,4,1,1,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,735,0,0,930,11,0,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-5,0,1833,-9,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1050,10,0,1430,9,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-1,0,1335,-4,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1000,41,1,1116,44,1,0 +2013,8,25,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-10,0,1010,-3,0,0 +2013,9,17,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,845,-9,0,1053,-18,0,0 +2013,6,21,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2005,22,1,2200,21,1,0 +2013,5,24,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-6,0,920,11,0,0 +2013,4,15,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1900,-6,0,2240,-22,0,0 +2013,4,30,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2020,14,0,2125,8,0,0 +2013,7,10,3,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,-1,0,1935,-10,0,0 +2013,5,24,5,EV,14307,Theodore Francis Green State,Providence,RI,11042,Cleveland-Hopkins International,Cleveland,OH,545,118,1,742,111,1,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1055,-1,0,1259,-20,0,0 +2013,7,30,2,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1604,-1,0,1748,-12,0,0 +2013,10,9,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-6,0,2205,0,0,0 +2013,9,8,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-4,0,759,-4,0,0 +2013,9,13,5,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,24,1,2055,6,0,0 +2013,9,14,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1140,-4,0,1258,-2,0,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,859,-3,0,1613,1,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1720,2,0,2010,-4,0,0 +2013,4,10,3,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-2,0,1510,-28,0,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,1,0,2103,-13,0,0 +2013,4,1,1,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,710,-5,0,930,-9,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-5,0,1319,-5,0,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,19,1,915,4,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1400,0,0,1520,-2,0,0 +2013,4,5,5,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,750,103,1,940,103,1,0 +2013,4,24,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-8,0,1309,-16,0,0 +2013,10,7,1,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1840,218,1,1925,214,1,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1040,9,0,1655,1,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,25,1,2058,14,0,0 +2013,6,25,2,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,545,23,1,804,12,0,0 +2013,8,2,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1235,7,0,2110,3,0,0 +2013,4,1,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-1,0,815,-8,0,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,28,1,1625,32,1,0 +2013,10,27,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1730,35,1,1845,40,1,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1510,-5,0,2005,-21,0,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1750,-6,0,1850,6,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1351,-2,0,1528,-9,0,0 +2013,9,13,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,735,-2,0,830,-6,0,0 +2013,5,30,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1320,48,1,1635,39,1,0 +2013,10,8,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1812,-9,0,1912,-17,0,0 +2013,10,20,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1735,0,0,2055,-9,0,0 +2013,5,5,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-5,0,1010,-13,0,0 +2013,7,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,-3,0,750,-5,0,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1255,-7,0,1700,-13,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2115,5,0,2230,0,0,0 +2013,8,16,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-6,0,932,1,0,0 +2013,5,30,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,3,0,835,-11,0,0 +2013,8,2,5,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,-3,0,1005,27,1,0 +2013,10,7,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1102,0,0,1154,3,0,0 +2013,5,12,7,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,9,0,1930,-9,0,0 +2013,10,28,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,1,0,1404,-14,0,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,645,-1,0,800,-8,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,22,1,1100,22,1,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,0,,1559,0,1,1 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1050,-2,0,1140,-4,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1255,-8,0,1550,-7,0,0 +2013,10,6,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,23,1,1545,6,0,0 +2013,6,20,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1551,14,0,2359,14,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1740,64,1,1908,76,1,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-9,0,1328,-11,0,0 +2013,9,22,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1118,-1,0,1226,-8,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,944,-2,0,1020,-12,0,0 +2013,4,5,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2225,-3,0,644,-16,0,0 +2013,9,23,1,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1835,-7,0,1940,-14,0,0 +2013,8,2,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-7,0,2252,-19,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1640,-5,0,1924,-10,0,0 +2013,10,21,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,959,5,0,1137,1,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1840,103,1,2130,99,1,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-4,0,1024,14,0,0 +2013,10,29,2,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-5,0,1524,-12,0,0 +2013,8,19,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-4,0,1016,2,0,0 +2013,5,14,2,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,2,0,1700,-12,0,0 +2013,4,6,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2105,-4,0,2220,-10,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,3,0,1755,-3,0,0 +2013,9,30,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,-3,0,2024,-6,0,0 +2013,7,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1500,39,1,1615,34,1,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-3,0,2333,-18,0,0 +2013,8,27,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-7,0,1420,-19,0,0 +2013,6,23,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,-4,0,1533,16,1,0 +2013,8,28,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,949,3,0,1130,-6,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1331,-7,0,1509,-7,0,0 +2013,5,4,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,1,0,1857,-6,0,0 +2013,9,15,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,940,-6,0,1155,70,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1750,32,1,1840,34,1,0 +2013,7,8,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,-1,0,1910,5,0,0 +2013,6,4,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1510,-4,0,1920,-24,0,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,-5,0,2301,6,0,0 +2013,5,31,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,-1,0,759,8,0,0 +2013,8,12,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1736,119,1,2005,123,1,0 +2013,8,15,4,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,17,1,1820,14,0,0 +2013,4,23,2,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1735,0,0,1835,9,0,0 +2013,8,20,2,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1905,16,1,2240,-28,0,0 +2013,4,1,1,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,532,-5,0,950,-7,0,0 +2013,9,25,3,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1645,-9,0,1839,-24,0,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1935,99,1,2110,108,1,0 +2013,8,21,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-1,0,2300,-3,0,0 +2013,8,31,6,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,615,0,0,900,-16,0,0 +2013,6,19,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,13,0,2215,8,0,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,16,1,1925,8,0,0 +2013,10,21,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-10,0,1655,-20,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1928,0,0,2208,-4,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,810,0,0,1257,-18,0,0 +2013,5,25,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,9,0,1700,-24,0,0 +2013,7,4,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-7,0,910,-19,0,0 +2013,10,8,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,8,0,2030,15,1,0 +2013,5,7,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1340,-2,0,1435,-5,0,0 +2013,5,29,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,930,-3,0,0 +2013,8,7,3,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1425,-4,0,1621,7,0,0 +2013,8,7,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,858,-3,0,1152,1,0,0 +2013,7,16,2,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-8,0,1430,-15,0,0 +2013,5,21,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,739,-8,0,910,-3,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,-4,0,2042,-30,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1355,4,0,1520,-3,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,52,1,2120,43,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1405,-2,0,1515,0,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1810,-5,0,1940,-8,0,0 +2013,7,25,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-6,0,1135,-5,0,0 +2013,9,17,2,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,51,1,1300,34,1,0 +2013,8,22,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-6,0,1400,-7,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,26,1,1830,33,1,0 +2013,7,25,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,-3,0,1823,-1,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,9,0,1525,-10,0,0 +2013,5,18,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-2,0,1420,-7,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1805,18,1,1910,8,0,0 +2013,9,9,1,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,2150,-13,0,610,-23,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1615,16,1,1825,8,0,0 +2013,4,24,3,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2045,0,,2219,0,1,1 +2013,9,22,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,42,1,1445,81,1,0 +2013,5,27,1,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-5,0,700,-5,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1810,13,0,1825,6,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,-3,0,950,-14,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1310,46,1,1500,41,1,0 +2013,8,26,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,710,-4,0,835,6,0,0 +2013,8,28,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1709,0,,1954,0,1,1 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,1,0,2015,-22,0,0 +2013,7,5,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-6,0,1530,-22,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1540,53,1,1705,47,1,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1731,33,1,2012,92,1,0 +2013,4,27,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-5,0,1817,-2,0,0 +2013,10,13,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,749,-9,0,946,-32,0,0 +2013,9,4,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1825,-7,0,1900,-6,0,0 +2013,7,3,3,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,755,0,0,928,-1,0,0 +2013,10,19,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1345,4,0,1440,8,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1730,2,0,2016,-19,0,0 +2013,9,12,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1309,-9,0,1416,-19,0,0 +2013,7,25,4,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1455,-6,0,1800,-10,0,0 +2013,5,15,3,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1053,-10,0,1220,-20,0,0 +2013,10,28,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1924,-14,0,2046,-22,0,0 +2013,4,15,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-5,0,1050,0,1,1 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1240,2,0,1458,29,1,0 +2013,8,20,2,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,10,0,2000,-21,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2215,13,0,2354,0,0,0 +2013,9,23,1,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2055,-5,0,2314,-10,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,27,1,2057,43,1,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,30,1,1135,17,1,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1035,0,0,1220,-1,0,0 +2013,7,23,2,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,3,0,1807,15,1,0 +2013,10,11,5,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-6,0,1008,-21,0,0 +2013,8,25,7,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,745,-1,0,1135,-3,0,0 +2013,10,28,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1357,-10,0,1538,-7,0,0 +2013,5,16,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,1,0,1523,13,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1915,48,1,2040,41,1,0 +2013,8,7,3,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,840,-2,0,1030,-11,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-5,0,924,-6,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,40,1,820,26,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-6,0,1429,-19,0,0 +2013,7,30,2,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1652,-3,0,1751,-6,0,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,640,-4,0,810,-17,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,831,-2,0,1059,-11,0,0 +2013,9,17,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1756,23,1,1915,18,1,0 +2013,8,17,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1030,1,0,1155,2,0,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1920,7,0,2200,-2,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1843,-5,0,2138,-10,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2155,32,1,2316,25,1,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1420,7,0,1700,6,0,0 +2013,8,2,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,-1,0,1240,31,1,0 +2013,6,19,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1945,-1,0,2128,-10,0,0 +2013,7,1,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1359,184,1,1517,180,1,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,2,0,1030,-13,0,0 +2013,8,6,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,51,1,1600,54,1,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1405,0,0,1748,13,0,0 +2013,8,31,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,925,4,0,1050,42,1,0 +2013,5,25,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-4,0,1710,-26,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-4,0,1940,-6,0,0 +2013,7,11,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1600,13,0,1721,10,0,0 +2013,6,22,6,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-5,0,1025,-10,0,0 +2013,8,13,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1915,86,1,2025,103,1,0 +2013,5,7,2,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1820,-2,0,2055,62,1,0 +2013,7,8,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-8,0,955,-7,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,1,0,1912,-11,0,0 +2013,6,9,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,4,0,1259,14,0,0 +2013,10,9,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1206,28,1,1445,15,1,0 +2013,7,9,2,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,545,-4,0,656,-12,0,0 +2013,6,9,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1025,3,0,1304,-22,0,0 +2013,10,16,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1119,-1,0,1535,3,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1050,19,1,1310,4,0,0 +2013,8,27,2,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-15,0,1210,-6,0,0 +2013,8,22,4,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1910,106,1,2105,90,1,0 +2013,4,2,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,530,-8,0,827,-16,0,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,-5,0,1450,-22,0,0 +2013,10,26,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,715,-7,0,1424,-5,0,0 +2013,5,13,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1535,-5,0,1725,-33,0,0 +2013,7,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1557,53,1,1643,33,1,0 +2013,8,27,2,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1300,1,0,1525,-22,0,0 +2013,7,6,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,10,0,2020,-2,0,0 +2013,4,6,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1135,10,0,1355,14,0,0 +2013,4,6,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,600,-1,0,655,-4,0,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-4,0,1706,-4,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,-5,0,2345,-9,0,0 +2013,7,12,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1600,-2,0,1721,-24,0,0 +2013,5,24,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,7,0,1826,5,0,0 +2013,10,3,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,910,17,1,1020,20,1,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1745,46,1,2250,41,1,0 +2013,6,8,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,0,,1621,0,1,1 +2013,5,11,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1518,-10,0,1645,-18,0,0 +2013,4,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,6,0,2253,-5,0,0 +2013,10,22,2,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-4,0,1029,-8,0,0 +2013,9,28,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,28,1,1800,36,1,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,-1,0,730,-1,0,0 +2013,7,7,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1159,3,0,0 +2013,8,17,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-2,0,1348,-8,0,0 +2013,8,1,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1335,10,0,1510,18,1,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-4,0,1010,-12,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1515,-4,0,1625,-10,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1555,16,1,1810,18,1,0 +2013,10,12,6,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,940,-1,0,1800,-12,0,0 +2013,6,19,3,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,1755,-2,0,1849,-6,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,10,0,1040,7,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,31,1,2332,52,1,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1310,-4,0,1625,-24,0,0 +2013,8,22,4,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-6,0,1922,-13,0,0 +2013,10,27,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1115,-3,0,1226,14,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1405,54,1,1750,49,1,0 +2013,10,28,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1417,-4,0,0 +2013,9,15,7,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,827,-5,0,932,-11,0,0 +2013,7,17,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-7,0,1828,-10,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,20,1,1901,25,1,0 +2013,5,24,5,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1815,36,1,1954,23,1,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1940,32,1,2338,12,0,0 +2013,7,6,6,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-3,0,2105,13,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,64,1,1623,57,1,0 +2013,6,6,4,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1359,-3,0,1749,-4,0,0 +2013,7,18,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1340,8,0,1700,22,1,0 +2013,6,11,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,903,-11,0,1035,-30,0,0 +2013,5,27,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1228,-2,0,1412,31,1,0 +2013,4,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1139,223,1,1349,210,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,87,1,1510,90,1,0 +2013,5,24,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-6,0,915,-27,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,1,0,1556,-32,0,0 +2013,10,3,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,1035,-3,0,0 +2013,4,19,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,59,1,2105,196,1,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1415,20,1,1740,5,0,0 +2013,8,5,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1259,190,1,1544,177,1,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,935,5,0,1111,-6,0,0 +2013,8,10,6,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1739,-4,0,2005,-18,0,0 +2013,5,6,1,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,650,-1,0,855,-14,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1355,10,0,1755,-6,0,0 +2013,9,8,7,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,-3,0,1422,11,0,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-2,0,1308,-7,0,0 +2013,7,31,3,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2105,22,1,2355,30,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2157,7,0,2303,-2,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-4,0,1631,-8,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,35,1,1825,48,1,0 +2013,6,12,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1733,-3,0,1821,1,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1300,22,1,1550,17,1,0 +2013,9,8,7,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,935,-8,0,1155,-20,0,0 +2013,10,28,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1655,1,0,1800,-9,0,0 +2013,4,25,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,3,0,809,-1,0,0 +2013,10,26,6,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,800,-6,0,1055,-9,0,0 +2013,4,22,1,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2153,-5,0,603,-22,0,0 +2013,6,17,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,159,1,945,184,1,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1120,-6,0,1239,-12,0,0 +2013,6,4,2,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1630,-4,0,1902,-26,0,0 +2013,6,18,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1323,40,1,1724,9,0,0 +2013,5,23,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1643,103,1,1958,86,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,3,0,1725,-14,0,0 +2013,8,3,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,735,-2,0,850,2,0,0 +2013,6,10,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-9,0,643,-4,0,0 +2013,5,11,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1235,-8,0,1400,-15,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-5,0,2150,-25,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,830,14,0,1045,1,0,0 +2013,10,6,7,WN,10693,Nashville International,Nashville,TN,14122,Pittsburgh International,Pittsburgh,PA,1730,-1,0,1955,-15,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,-5,0,1802,-16,0,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,650,-1,0,935,-10,0,0 +2013,4,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2135,-6,0,2355,-13,0,0 +2013,4,17,3,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-9,0,947,0,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2045,83,1,2231,87,1,0 +2013,10,24,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,800,-4,0,910,-2,0,0 +2013,7,5,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,555,0,0,718,-3,0,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-5,0,1000,-10,0,0 +2013,4,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1614,-6,0,1944,-24,0,0 +2013,5,12,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1722,-9,0,1825,4,0,0 +2013,7,28,7,9E,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1931,1,0,2115,0,0,0 +2013,4,22,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,-5,0,1354,-9,0,0 +2013,4,20,6,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1131,-1,0,2000,-18,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-3,0,2033,-36,0,0 +2013,5,14,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,13,0,1344,6,0,0 +2013,10,18,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,604,-5,0,730,-11,0,0 +2013,5,19,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1514,0,0,1604,-12,0,0 +2013,10,17,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,21,1,1430,16,1,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1855,-1,0,2040,-4,0,0 +2013,8,14,3,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,1950,5,0,42,11,0,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2045,65,1,2150,67,1,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1550,7,0,1655,4,0,0 +2013,10,20,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10,-8,0,505,-8,0,0 +2013,7,12,5,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1155,10,0,1340,-2,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,0,0,1321,-10,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,-3,0,1455,-9,0,0 +2013,10,29,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1245,19,1,1458,10,0,0 +2013,6,14,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-4,0,1011,-5,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2155,0,0,10,1,0,0 +2013,9,21,6,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1102,-1,0,1409,-5,0,0 +2013,5,6,1,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,820,-6,0,947,-19,0,0 +2013,7,26,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1650,-5,0,1820,-2,0,0 +2013,5,12,7,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1205,-3,0,1315,-2,0,0 +2013,7,22,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,7,0,815,21,1,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1832,0,0,1940,-11,0,0 +2013,10,22,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,840,-5,0,1210,-34,0,0 +2013,4,21,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,840,7,0,1025,1,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,-3,0,1616,-15,0,0 +2013,10,4,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-6,0,1235,3,0,0 +2013,9,20,5,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,29,1,1845,23,1,0 +2013,9,4,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1805,0,0,2115,-12,0,0 +2013,5,24,5,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1750,-6,0,2044,-7,0,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,1,0,2253,-2,0,0 +2013,5,7,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,958,19,1,0 +2013,6,14,5,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,-3,0,951,-6,0,0 +2013,4,14,7,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,0,0,1733,21,1,0 +2013,5,20,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1120,61,1,1220,46,1,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,755,-2,0,1125,12,0,0 +2013,8,21,3,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,920,-1,0,1010,-2,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1610,42,1,1837,45,1,0 +2013,6,24,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,633,-4,0,804,-6,0,0 +2013,5,11,6,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,-1,0,1610,2,0,0 +2013,5,30,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,-3,0,1630,-4,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,42,1,2326,28,1,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-1,0,1630,-7,0,0 +2013,7,17,3,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-13,0,835,-25,0,0 +2013,4,10,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1856,0,,2100,0,1,1 +2013,4,17,3,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1330,-4,0,1529,-12,0,0 +2013,9,18,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1731,-3,0,2018,-14,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,2,0,2150,5,0,0 +2013,6,18,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,94,1,1752,87,1,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,0,0,1322,-12,0,0 +2013,7,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,4,0,1610,9,0,0 +2013,9,14,6,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,812,-3,0,928,0,0,0 +2013,5,8,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1859,37,1,2359,20,1,0 +2013,8,6,2,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,-6,0,1010,-9,0,0 +2013,10,14,1,FL,13244,Memphis International,Memphis,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1614,0,0,1916,0,0,0 +2013,5,23,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1142,16,1,1245,19,1,0 +2013,5,31,5,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-6,0,1145,-18,0,0 +2013,10,1,2,EV,10792,Buffalo Niagara International,Buffalo,NY,12953,LaGuardia,New York,NY,1105,-1,0,1227,-4,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,23,1,55,8,0,0 +2013,4,30,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,12,0,1615,7,0,0 +2013,9,6,5,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1355,-5,0,1919,1,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2148,20,1,2319,3,0,0 +2013,5,31,5,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1215,41,1,1405,31,1,0 +2013,6,10,1,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-5,0,1215,-13,0,0 +2013,4,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2151,-4,0,2238,-7,0,0 +2013,5,13,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1735,6,0,1830,-16,0,0 +2013,4,27,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1000,-4,0,1110,-16,0,0 +2013,6,11,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,59,1,1156,74,1,0 +2013,4,15,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1459,-8,0,1801,-24,0,0 +2013,8,16,5,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-5,0,1627,-23,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,2,0,1350,-4,0,0 +2013,4,16,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1750,-10,0,2001,-7,0,0 +2013,5,13,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1814,10,0,2040,-14,0,0 +2013,8,23,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1828,-3,0,2034,21,1,0 +2013,7,1,1,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1111,-3,0,1344,-15,0,0 +2013,6,26,3,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1456,70,1,1636,91,1,0 +2013,5,23,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,-6,0,1824,-3,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,758,-3,0,0 +2013,10,23,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,914,-7,0,1433,-15,0,0 +2013,10,6,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1410,-3,0,1645,-17,0,0 +2013,5,31,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,728,-5,0,1305,-8,0,0 +2013,9,18,3,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,825,-6,0,1131,-22,0,0 +2013,9,4,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1806,-14,0,2050,-9,0,0 +2013,8,4,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1303,-3,0,1415,9,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,-7,0,1110,-10,0,0 +2013,8,2,5,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1425,-1,0,2235,-16,0,0 +2013,7,14,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2005,0,0,2120,11,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,8,0,2344,8,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1405,-1,0,1659,-8,0,0 +2013,7,26,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,0,,2018,0,1,1 +2013,8,2,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,-8,0,911,-2,0,0 +2013,8,30,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,-5,0,1125,-9,0,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,755,-10,0,1012,-1,0,0 +2013,4,6,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,-3,0,1725,-3,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,54,1,1350,37,1,0 +2013,10,6,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,7,0,2020,4,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,800,-7,0,855,-10,0,0 +2013,4,16,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,-4,0,1225,-12,0,0 +2013,10,25,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1940,0,0,2100,-8,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1455,-4,0,1615,-5,0,0 +2013,9,13,5,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1020,0,0,1259,2,0,0 +2013,6,1,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,44,1,1225,66,1,0 +2013,6,13,4,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,725,24,1,946,12,0,0 +2013,8,4,7,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1230,-1,0,1450,-21,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1303,150,1,2129,152,1,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,18,1,840,4,0,0 +2013,4,21,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1020,93,1,1315,76,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2010,8,0,2325,3,0,0 +2013,7,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1115,16,1,1350,4,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,83,1,1244,79,1,0 +2013,10,25,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1410,-5,0,1735,-5,0,0 +2013,10,19,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-1,0,1610,-2,0,0 +2013,9,17,2,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1127,-9,0,1344,0,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1955,0,0,2259,-8,0,0 +2013,10,15,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1642,-9,0,1749,-14,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,800,29,1,1145,36,1,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-2,0,945,-9,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2031,8,0,2304,-1,0,0 +2013,9,25,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,1006,-2,0,0 +2013,7,21,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,33,1,1341,36,1,0 +2013,8,30,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1324,0,,1630,0,1,1 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1205,5,0,1450,-4,0,0 +2013,7,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1950,-4,0,2128,-9,0,0 +2013,7,17,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-6,0,853,-11,0,0 +2013,9,7,6,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-6,0,1416,-12,0,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1843,0,0,2330,-37,0,0 +2013,10,10,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1318,-3,0,1625,-17,0,0 +2013,5,13,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,-5,0,2338,15,1,0 +2013,6,25,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1900,16,1,2235,4,0,0 +2013,7,28,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1210,6,0,1435,3,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1640,10,0,1835,-2,0,0 +2013,4,15,1,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1608,-2,0,1835,-1,0,0 +2013,4,15,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1530,14,0,1902,9,0,0 +2013,10,15,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-6,0,1940,-13,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1935,8,0,2045,4,0,0 +2013,9,30,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,2,0,2115,-9,0,0 +2013,6,18,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1450,6,0,1545,3,0,0 +2013,4,30,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,-9,0,1035,-25,0,0 +2013,6,8,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1520,0,0,1915,-10,0,0 +2013,9,14,6,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,649,22,1,1109,28,1,0 +2013,7,9,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1340,20,1,1505,24,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,30,1,1900,57,1,0 +2013,5,24,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1745,3,0,1947,-1,0,0 +2013,7,7,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,845,-5,0,1023,-4,0,0 +2013,9,13,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-4,0,957,-5,0,0 +2013,10,26,6,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1725,24,1,2145,22,1,0 +2013,10,21,1,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,622,4,0,1039,-20,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,2057,3,0,8,-9,0,0 +2013,4,4,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,605,-1,0,735,-5,0,0 +2013,9,2,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,810,-9,0,910,-7,0,0 +2013,6,29,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-3,0,1802,-12,0,0 +2013,7,9,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-3,0,1200,-5,0,0 +2013,5,23,4,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1220,-9,0,1418,-25,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1305,30,1,1435,23,1,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1521,-4,0,1807,-10,0,0 +2013,9,14,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1750,2,0,1855,-2,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,4,0,2225,9,0,0 +2013,8,26,1,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-4,0,1305,-12,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1825,1,0,1930,10,0,0 +2013,9,12,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,56,1,1402,63,1,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2055,-2,0,2259,-15,0,0 +2013,10,10,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-6,0,1825,7,0,0 +2013,8,31,6,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,500,-5,0,718,-15,0,0 +2013,9,10,2,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-5,0,815,-5,0,0 +2013,10,8,2,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,20,1,1943,4,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1600,-1,0,1905,8,0,0 +2013,10,4,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,655,-4,0,810,-10,0,0 +2013,4,13,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1303,-12,0,1820,-22,0,0 +2013,8,17,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1444,-1,0,1722,1,0,0 +2013,8,1,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,0,,1859,0,1,1 +2013,5,31,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-4,0,2204,-10,0,0 +2013,10,23,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-5,0,920,-6,0,0 +2013,9,15,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,750,-4,0,945,-11,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1345,0,0,1543,-11,0,0 +2013,4,27,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,-6,0,2305,-29,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1340,-6,0,1544,-14,0,0 +2013,10,28,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,1,0,1550,-13,0,0 +2013,4,1,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,-5,0,2055,-2,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1130,-1,0,1240,-9,0,0 +2013,4,8,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1731,-3,0,2030,-18,0,0 +2013,4,21,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,500,0,0,642,-3,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,739,-7,0,836,-17,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,-1,0,1055,-5,0,0 +2013,6,20,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-6,0,735,0,0,0 +2013,8,20,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1656,-2,0,1807,-33,0,0 +2013,7,11,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,40,1,1645,50,1,0 +2013,9,22,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,745,-8,0,920,-16,0,0 +2013,6,22,6,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,603,-10,0,818,-9,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,106,1,1502,106,1,0 +2013,7,8,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,-4,0,1615,3,0,0 +2013,6,7,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1320,-4,0,1425,-5,0,0 +2013,8,7,3,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2333,12,0,501,-7,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-4,0,1827,16,1,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,740,2,0,840,2,0,0 +2013,10,12,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-3,0,1730,21,1,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,-2,0,1459,19,1,0 +2013,7,20,6,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1405,11,0,1535,-16,0,0 +2013,9,12,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,-4,0,1703,1,0,0 +2013,10,13,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1735,25,1,1915,28,1,0 +2013,5,26,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-9,0,1255,-20,0,0 +2013,4,7,7,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1030,-1,0,1835,-25,0,0 +2013,10,14,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1352,-18,0,0 +2013,6,5,3,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,845,-6,0,1054,-6,0,0 +2013,6,11,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-2,0,1415,-8,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1010,30,1,1132,16,1,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,719,-1,0,1559,-32,0,0 +2013,10,27,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,639,-5,0,939,-26,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1945,-5,0,2345,-18,0,0 +2013,9,20,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-7,0,730,-3,0,0 +2013,8,13,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-2,0,2210,-6,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,-2,0,1143,40,1,0 +2013,8,12,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1946,-5,0,2140,-15,0,0 +2013,9,1,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,97,1,1825,90,1,0 +2013,6,16,7,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,932,-3,0,1123,-3,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1100,-4,0,1205,-6,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,0,0,1003,-19,0,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1615,82,1,2200,65,1,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,185,1,1015,188,1,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,820,-1,0,950,3,0,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1755,-4,0,1921,-20,0,0 +2013,5,28,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,715,-10,0,1534,-11,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,-4,0,2124,-5,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1805,25,1,1910,21,1,0 +2013,7,17,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,26,1,1706,13,0,0 +2013,9,30,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,915,-3,0,1025,-5,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,954,-2,0,1134,-8,0,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1340,-3,0,1440,-9,0,0 +2013,5,20,1,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1519,6,0,1651,-4,0,0 +2013,9,3,2,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,2,0,1605,4,0,0 +2013,5,6,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,-8,0,2025,21,1,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,835,-6,0,1100,-18,0,0 +2013,4,26,5,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,20,1,1453,10,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1315,-3,0,1438,-1,0,0 +2013,9,23,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2018,-5,0,2135,-6,0,0 +2013,4,28,7,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,19,1,920,19,1,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,855,-3,0,1200,24,1,0 +2013,5,3,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-3,0,838,-10,0,0 +2013,9,2,1,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,959,9,0,1318,8,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,0,0,2150,-6,0,0 +2013,6,19,3,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1842,-5,0,2032,-3,0,0 +2013,6,1,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1355,-2,0,1434,-10,0,0 +2013,9,8,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1743,-4,0,1900,-20,0,0 +2013,8,7,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,63,1,1505,52,1,0 +2013,8,19,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-3,0,1616,31,1,0 +2013,6,16,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-6,0,855,-14,0,0 +2013,4,1,1,WN,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1550,169,1,1840,149,1,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,54,1,2305,44,1,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1037,-8,0,1224,-23,0,0 +2013,5,20,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,19,1,2235,16,1,0 +2013,8,28,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1557,-3,0,1735,-6,0,0 +2013,8,18,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,2250,19,1,615,16,1,0 +2013,7,22,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-8,0,1524,-14,0,0 +2013,9,11,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,800,-4,0,850,-6,0,0 +2013,6,22,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-7,0,1700,-13,0,0 +2013,10,21,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,950,-3,0,1050,1,0,0 +2013,5,1,3,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,700,-7,0,945,-7,0,0 +2013,8,10,6,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,-6,0,1150,13,0,0 +2013,8,4,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2320,-3,0,629,-20,0,0 +2013,9,19,4,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1842,15,1,1935,8,0,0 +2013,8,9,5,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,755,-2,0,1040,-5,0,0 +2013,7,30,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,-2,0,1355,-11,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,702,-7,0,1535,10,0,0 +2013,8,31,6,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-3,0,942,-22,0,0 +2013,7,1,1,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,615,-1,0,855,-12,0,0 +2013,6,13,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-5,0,1024,-13,0,0 +2013,7,9,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-5,0,1251,-2,0,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,740,-3,0,1055,-11,0,0 +2013,7,16,2,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1309,22,1,1534,26,1,0 +2013,4,30,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,103,1,1450,99,1,0 +2013,5,28,2,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1321,-7,0,1458,-25,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,838,-5,0,1712,11,0,0 +2013,6,28,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1640,54,1,1740,42,1,0 +2013,9,9,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,616,-5,0,754,-13,0,0 +2013,9,27,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1525,11,0,1630,0,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,4,0,1900,-2,0,0 +2013,10,18,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1545,24,1,1700,17,1,0 +2013,7,26,5,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1740,0,0,2000,7,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-1,0,849,14,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1420,16,1,1535,8,0,0 +2013,7,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1525,1,0,1625,2,0,0 +2013,7,5,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,-3,0,841,-21,0,0 +2013,5,9,4,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,0,0,1235,7,0,0 +2013,7,14,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,7,0,923,4,0,0 +2013,5,8,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,806,122,1,900,132,1,0 +2013,7,16,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1159,-10,0,1344,10,0,0 +2013,4,6,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,1158,-13,0,0 +2013,7,25,4,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-1,0,920,15,1,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-2,0,1004,0,0,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,811,-6,0,1059,-12,0,0 +2013,10,21,1,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,920,12,0,1205,11,0,0 +2013,9,10,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,955,33,1,1110,12,0,0 +2013,7,6,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-5,0,1628,-8,0,0 +2013,4,26,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1405,9,0,1555,-1,0,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2000,1,0,2130,-10,0,0 +2013,4,10,3,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,635,-1,0,755,-7,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1930,50,1,2200,51,1,0 +2013,6,26,3,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,6,0,1848,47,1,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,14,0,2154,12,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1950,44,1,2123,45,1,0 +2013,8,5,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,-4,0,1550,-6,0,0 +2013,9,25,3,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1710,33,1,1930,25,1,0 +2013,4,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,731,-1,0,849,4,0,0 +2013,5,22,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,1519,-4,0,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1120,3,0,1625,1,0,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,4,0,1230,8,0,0 +2013,10,2,3,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,5,0,1225,-13,0,0 +2013,5,10,5,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,700,-2,0,850,-6,0,0 +2013,9,2,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1615,34,1,1735,24,1,0 +2013,6,1,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2011,-6,0,2327,-8,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1345,14,0,1356,27,1,0 +2013,6,4,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1120,-6,0,1440,-2,0,0 +2013,4,5,5,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-3,0,700,-12,0,0 +2013,10,3,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-7,0,845,7,0,0 +2013,6,3,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1210,-1,0,1320,-8,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,7,0,2356,-4,0,0 +2013,6,5,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1851,14,0,2300,11,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,907,-6,0,1254,-27,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-4,0,1937,0,0,0 +2013,4,4,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1635,146,1,1830,124,1,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1335,47,1,1515,41,1,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,-5,0,920,1,0,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2226,26,1,716,22,1,0 +2013,6,16,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,-5,0,1140,-18,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-4,0,1913,-10,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2134,118,1,2309,104,1,0 +2013,8,22,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2000,9,0,2005,5,0,0 +2013,8,21,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-9,0,707,-8,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1355,12,0,1830,18,1,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,114,1,1745,127,1,0 +2013,5,17,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-3,0,1728,-14,0,0 +2013,10,4,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1350,56,1,1450,55,1,0 +2013,9,25,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1320,-7,0,1615,-5,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1335,-1,0,1520,-11,0,0 +2013,4,26,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-2,0,1855,-10,0,0 +2013,6,14,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1225,0,0,1805,-7,0,0 +2013,6,12,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,932,-5,0,1150,-20,0,0 +2013,8,3,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2140,-1,0,2220,0,0,0 +2013,10,11,5,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,20,1,2005,14,0,0 +2013,4,9,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-1,0,937,-13,0,0 +2013,5,10,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,945,-2,0,1201,-16,0,0 +2013,6,14,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,2,0,1600,-9,0,0 +2013,8,24,6,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1505,12,0,1814,18,1,0 +2013,5,29,3,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1845,2,0,2310,-8,0,0 +2013,5,15,3,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,915,-1,0,1135,7,0,0 +2013,10,5,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-6,0,905,1,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1440,8,0,1733,-8,0,0 +2013,7,4,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,2,0,1045,-7,0,0 +2013,10,15,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,914,-7,0,1150,3,0,0 +2013,5,4,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1205,-2,0,1335,-16,0,0 +2013,7,16,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,1948,12,0,500,-23,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2156,-1,0,2221,2,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,37,1,1755,25,1,0 +2013,9,15,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1854,-7,0,2017,-7,0,0 +2013,4,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1139,-4,0,1349,16,1,0 +2013,10,11,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1356,-3,0,1514,3,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2010,4,0,2340,-5,0,0 +2013,8,27,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,955,-5,0,1110,4,0,0 +2013,7,6,6,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2221,7,0,420,-18,0,0 +2013,9,15,7,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,615,-4,0,717,-11,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,-4,0,2221,2,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-2,0,1831,-1,0,0 +2013,10,25,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,8,0,1740,14,0,0 +2013,7,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2140,-3,0,2355,-2,0,0 +2013,7,30,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-11,0,1330,-26,0,0 +2013,6,6,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,27,1,1942,24,1,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-5,0,2159,15,1,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,-1,0,1101,-13,0,0 +2013,9,14,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1120,-1,0,1645,-13,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,12,0,1625,11,0,0 +2013,5,5,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,0,0,2224,-1,0,0 +2013,6,7,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1805,12,0,1850,15,1,0 +2013,10,25,5,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,700,-2,0,840,-1,0,0 +2013,4,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,8,0,1550,5,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,10,0,1825,8,0,0 +2013,7,4,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-7,0,1026,-32,0,0 +2013,5,14,2,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,-2,0,531,-25,0,0 +2013,5,3,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1300,-1,0,1538,7,0,0 +2013,6,8,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1824,-1,0,1947,-10,0,0 +2013,7,3,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,8,0,835,-1,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-2,0,1630,-15,0,0 +2013,6,15,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,750,-2,0,915,-16,0,0 +2013,7,22,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,940,6,0,1050,0,0,0 +2013,5,16,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1700,5,0,1858,14,0,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-4,0,1212,-29,0,0 +2013,5,27,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1735,23,1,1815,27,1,0 +2013,6,14,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1015,4,0,1135,7,0,0 +2013,4,13,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1809,-8,0,2111,-32,0,0 +2013,7,29,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,0,,1700,0,1,1 +2013,8,9,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1038,3,0,1137,-10,0,0 +2013,4,30,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1945,-8,0,2140,-22,0,0 +2013,6,26,3,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,1018,13,0,0 +2013,10,18,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1334,4,0,1507,-3,0,0 +2013,4,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-3,0,2216,-13,0,0 +2013,9,20,5,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,3,0,2045,-14,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,825,24,1,1420,34,1,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2300,-1,0,2347,4,0,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,5,0,855,2,0,0 +2013,8,2,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,12,0,1345,-3,0,0 +2013,6,5,3,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-2,0,1541,-7,0,0 +2013,8,19,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,812,-10,0,901,12,0,0 +2013,10,24,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1145,-6,0,1800,-15,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1000,1,0,1050,-11,0,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1025,-2,0,1329,4,0,0 +2013,8,5,1,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1810,16,1,2055,0,0,0 +2013,5,3,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1909,-8,0,2214,-25,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,2,0,939,-12,0,0 +2013,7,1,1,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-1,0,900,15,1,0 +2013,8,22,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-7,0,1220,-5,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,12,0,2100,8,0,0 +2013,5,2,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1010,-2,0,1255,-16,0,0 +2013,4,11,4,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,800,-5,0,1116,-9,0,0 +2013,9,20,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-7,0,1115,-13,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,18,1,2110,9,0,0 +2013,9,28,6,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,26,1,2230,26,1,0 +2013,9,18,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,5,0,1459,4,0,0 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1950,71,1,2120,68,1,0 +2013,5,10,5,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1310,2,0,1415,-15,0,0 +2013,10,4,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,24,1,1910,10,0,0 +2013,9,22,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,-5,0,2117,-5,0,0 +2013,5,27,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1225,130,1,1355,139,1,0 +2013,6,3,1,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1230,0,0,1515,-10,0,0 +2013,6,23,7,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1510,28,1,1900,6,0,0 +2013,5,28,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,-10,0,2033,-18,0,0 +2013,4,12,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-3,0,1310,29,1,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1730,13,0,1915,16,1,0 +2013,5,21,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,59,1,1050,51,1,0 +2013,10,18,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,855,-7,0,1029,-20,0,0 +2013,8,31,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,605,-11,0,735,-15,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,0,0,2230,7,0,0 +2013,7,12,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,6,0,2146,-3,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,14,0,1817,7,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,950,-6,0,1054,-13,0,0 +2013,7,14,7,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1346,-8,0,1455,-24,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,2,0,2215,2,0,0 +2013,8,1,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,-3,0,845,-8,0,0 +2013,5,9,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-10,0,1818,-8,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1420,5,0,1550,-3,0,0 +2013,7,25,4,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,0,,840,0,1,1 +2013,4,23,2,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,-3,0,704,-4,0,0 +2013,7,3,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1440,67,1,1605,54,1,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,815,17,1,1015,15,1,0 +2013,6,30,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,745,0,0,1610,-14,0,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-3,0,1326,-2,0,0 +2013,6,4,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,56,1,915,50,1,0 +2013,8,10,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1902,5,0,2140,20,1,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-2,0,1219,-13,0,0 +2013,6,26,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,515,2,0,848,-16,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1925,-2,0,2059,-6,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1235,18,1,1715,13,0,0 +2013,7,2,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,52,1,2000,62,1,0 +2013,8,1,4,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1745,0,,1856,0,1,1 +2013,9,4,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-6,0,1408,-4,0,0 +2013,5,21,2,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,-3,0,1413,-7,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-5,0,2305,10,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,-7,0,2335,19,1,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,-3,0,1342,-10,0,0 +2013,5,10,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,736,-10,0,839,-27,0,0 +2013,5,30,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-4,0,1449,-3,0,0 +2013,4,21,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1543,-4,0,1712,-17,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1830,-6,0,2022,1,0,0 +2013,10,18,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-5,0,1704,-10,0,0 +2013,5,26,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,1020,-7,0,1230,-29,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,1,0,1556,21,1,0 +2013,8,1,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,6,0,957,4,0,0 +2013,5,15,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,935,-7,0,1221,-8,0,0 +2013,5,24,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1505,-2,0,1731,20,1,0 +2013,7,15,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,715,-4,0,1004,-10,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,23,1,1045,9,0,0 +2013,7,16,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,55,1,1229,43,1,0 +2013,9,30,1,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1931,-4,0,810,-10,0,0 +2013,9,10,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-8,0,1240,-3,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1850,9,0,2212,-16,0,0 +2013,7,19,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,920,-4,0,1040,2,0,0 +2013,4,18,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,510,-2,0,756,-17,0,0 +2013,6,22,6,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,845,-8,0,1204,-33,0,0 +2013,9,2,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1645,45,1,1910,40,1,0 +2013,10,29,2,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,17,1,1515,2,0,0 +2013,7,25,4,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1528,-8,0,1637,-20,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1235,-3,0,1615,-6,0,0 +2013,8,22,4,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,8,0,1815,-10,0,0 +2013,8,21,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,-3,0,543,-25,0,0 +2013,4,29,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,508,-4,0,544,-1,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,0,0,1208,-2,0,0 +2013,4,7,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-7,0,1950,-19,0,0 +2013,5,20,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,35,1,1755,27,1,0 +2013,5,8,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2112,-2,0,2243,4,0,0 +2013,7,13,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,1235,1,0,0 +2013,5,9,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,615,-4,0,715,-13,0,0 +2013,6,18,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,6,0,1205,7,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1545,0,0,1715,-10,0,0 +2013,6,1,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1420,2,0,1703,3,0,0 +2013,8,22,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,49,1,1202,56,1,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,-4,0,1540,-2,0,0 +2013,5,23,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1450,13,0,1745,43,1,0 +2013,4,19,5,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-3,0,829,-1,0,0 +2013,6,18,2,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,0,0,1310,-7,0,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-5,0,1026,-7,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,941,-1,0,1118,-14,0,0 +2013,7,30,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,800,-9,0,1301,-15,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,800,28,1,1302,50,1,0 +2013,9,5,4,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,600,-1,0,750,-22,0,0 +2013,9,4,3,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-3,0,1910,-1,0,0 +2013,4,22,1,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,840,2,0,1050,-1,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1550,-1,0,1655,-4,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1115,0,0,1225,-2,0,0 +2013,6,8,6,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1645,0,0,1915,12,0,0 +2013,6,20,4,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1327,8,0,1931,-12,0,0 +2013,6,30,7,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,555,-7,0,753,4,0,0 +2013,5,10,5,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1255,8,0,1825,24,1,0 +2013,7,15,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1114,-8,0,1635,-7,0,0 +2013,4,30,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1430,-10,0,0 +2013,5,8,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,0,0,1118,-2,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,700,-3,0,815,-8,0,0 +2013,10,13,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1240,0,0,1333,-10,0,0 +2013,8,12,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1020,-7,0,1159,-11,0,0 +2013,4,17,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,805,-4,0,1010,2,0,0 +2013,9,21,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1040,122,1,1355,103,1,0 +2013,5,14,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-4,0,2113,-5,0,0 +2013,10,26,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1715,-9,0,2053,-16,0,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1658,-6,0,2315,-10,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2013,76,1,2152,62,1,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2205,-12,0,2330,-34,0,0 +2013,9,30,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,1,0,1925,-10,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,8,0,1440,1,0,0 +2013,5,2,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-2,0,1650,6,0,0 +2013,10,6,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1434,-2,0,1606,-17,0,0 +2013,8,8,4,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1115,5,0,1405,6,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1355,17,1,1520,10,0,0 +2013,8,17,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,-2,0,1445,-22,0,0 +2013,7,1,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,16,1,2030,36,1,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,0,0,1115,-9,0,0 +2013,7,17,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1655,46,1,2004,28,1,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,52,1,20,59,1,0 +2013,6,11,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,710,0,0,725,11,0,0 +2013,5,12,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,920,1,0,1035,-3,0,0 +2013,5,23,4,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1158,63,1,1410,73,1,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-5,0,1154,-19,0,0 +2013,4,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1428,-4,0,1655,-15,0,0 +2013,6,20,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,30,1,1910,0,0,0 +2013,9,29,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1705,8,0,2000,62,1,0 +2013,5,4,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-5,0,2135,-20,0,0 +2013,9,12,4,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,925,-5,0,1643,28,1,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,720,-2,0,1050,-6,0,0 +2013,5,2,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1010,6,0,1145,11,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-5,0,755,-4,0,0 +2013,4,18,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,600,-4,0,720,16,1,0 +2013,7,24,3,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2333,1,0,501,-12,0,0 +2013,7,11,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,530,114,1,707,116,1,0 +2013,8,19,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,1,0,1850,-7,0,0 +2013,4,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1431,-1,0,1532,-1,0,0 +2013,5,12,7,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1805,-6,0,1948,-13,0,0 +2013,6,14,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-1,0,820,2,0,0 +2013,10,5,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,847,-10,0,0 +2013,7,16,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1630,-2,0,1740,-9,0,0 +2013,4,23,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1120,53,1,1240,44,1,0 +2013,8,30,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-3,0,2133,-10,0,0 +2013,5,23,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1730,-13,0,2012,-26,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1756,34,1,1910,110,1,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,800,-4,0,924,-13,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,905,-3,0,1150,-4,0,0 +2013,9,3,2,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1455,0,0,1730,-18,0,0 +2013,8,8,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2319,12,0,15,2,0,0 +2013,6,20,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,600,2,0,725,-5,0,0 +2013,7,15,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,-6,0,2003,-2,0,0 +2013,10,5,6,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1504,1,0,1627,-12,0,0 +2013,5,20,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-6,0,1803,-19,0,0 +2013,8,12,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1010,7,0,1210,-3,0,0 +2013,7,28,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1410,0,0,1820,20,1,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,705,-5,0,925,-10,0,0 +2013,9,27,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,921,-5,0,1034,-11,0,0 +2013,5,18,6,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,948,-7,0,1217,-29,0,0 +2013,10,1,2,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1758,-18,0,2000,-16,0,0 +2013,7,3,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-8,0,1446,-21,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2130,12,0,2345,20,1,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,944,-1,0,1201,-31,0,0 +2013,5,24,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,4,0,1905,-1,0,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1005,-3,0,1755,-16,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2110,8,0,2310,11,0,0 +2013,8,12,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1735,11,0,1815,12,0,0 +2013,8,7,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,1,0,10,-14,0,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,835,28,1,1305,17,1,0 +2013,5,7,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,43,1,1756,40,1,0 +2013,5,10,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-3,0,920,8,0,0 +2013,10,12,6,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-8,0,1250,-12,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1335,19,1,1450,10,0,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,940,160,1,1028,152,1,0 +2013,4,11,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-6,0,958,-4,0,0 +2013,6,2,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1010,-6,0,1214,-14,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,835,-2,0,940,-7,0,0 +2013,10,13,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,635,-4,0,817,-11,0,0 +2013,4,25,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,-3,0,115,-10,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,848,-3,0,1100,-14,0,0 +2013,7,24,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-5,0,2130,-11,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,-2,0,1406,-15,0,0 +2013,8,5,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1054,0,,1145,0,1,1 +2013,7,19,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1227,-7,0,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,2045,55,1,2218,48,1,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1355,2,0,1600,-14,0,0 +2013,4,27,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1025,-7,0,1135,-13,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,750,5,0,1020,-12,0,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1520,-4,0,1912,-16,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2130,-3,0,2359,-2,0,0 +2013,4,1,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1137,-9,0,0 +2013,7,10,3,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1425,18,1,1710,23,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,12,0,1252,27,1,0 +2013,6,29,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,-3,0,1358,9,0,0 +2013,10,18,5,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,15,1,1636,10,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,11,0,1444,7,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1455,3,0,1605,-2,0,0 +2013,4,11,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1425,0,0,1708,-15,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2023,2,0,2330,-7,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,3,0,1633,40,1,0 +2013,5,24,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,120,-3,0,615,-3,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,88,1,1625,82,1,0 +2013,5,13,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,755,-5,0,900,-2,0,0 +2013,6,13,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,8,0,1840,-1,0,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,610,-5,0,715,-14,0,0 +2013,9,4,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-5,0,1535,-13,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2159,47,1,2315,29,1,0 +2013,6,4,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,643,-6,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2109,9,0,2355,-3,0,0 +2013,10,30,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-7,0,1715,-15,0,0 +2013,6,2,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,43,1,1622,36,1,0 +2013,5,25,6,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,739,-11,0,1035,-11,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,810,-2,0,925,7,0,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-5,0,645,-14,0,0 +2013,8,27,2,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-3,0,1810,-1,0,0 +2013,4,15,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1059,-5,0,1409,-10,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1450,-4,0,1610,-9,0,0 +2013,6,20,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1350,1,0,1640,-3,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-10,0,2323,-17,0,0 +2013,5,21,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1319,55,1,1452,47,1,0 +2013,7,29,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1013,2,0,1304,0,0,0 +2013,9,3,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1515,1,0,1650,-1,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,0,0,1417,-11,0,0 +2013,5,17,5,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1255,-1,0,1429,-18,0,0 +2013,6,7,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,32,1,2055,34,1,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,953,-5,0,1225,-8,0,0 +2013,5,8,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,915,-4,0,1649,-16,0,0 +2013,10,27,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1820,160,1,1935,169,1,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,845,7,0,1025,-7,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,-3,0,1449,18,1,0 +2013,5,17,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1350,4,0,1515,-1,0,0 +2013,8,18,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1125,-8,0,1250,-10,0,0 +2013,9,13,5,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1410,9,0,1645,9,0,0 +2013,8,25,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1627,-10,0,1915,-18,0,0 +2013,10,22,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1655,6,0,1800,4,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1850,37,1,2100,17,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,950,-1,0,1024,20,1,0 +2013,5,27,1,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1330,-8,0,1452,-19,0,0 +2013,8,16,5,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1456,-8,0,1822,-13,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1455,3,0,1604,-6,0,0 +2013,10,1,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,935,12,0,1130,9,0,0 +2013,9,12,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,700,-6,0,830,-12,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,11,0,2055,19,1,0 +2013,4,23,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1308,-5,0,1604,6,0,0 +2013,9,18,3,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1730,0,0,2045,-10,0,0 +2013,10,1,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1325,-1,0,1450,-14,0,0 +2013,10,8,2,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1619,-3,0,2030,-14,0,0 +2013,5,19,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1125,-5,0,1246,7,0,0 +2013,7,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1647,-4,0,1931,-10,0,0 +2013,10,1,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2031,0,0,2255,8,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,845,0,0,1115,-6,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,607,-1,0,912,-5,0,0 +2013,5,2,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,855,-5,0,946,-13,0,0 +2013,5,12,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,9,0,1230,0,0,0 +2013,9,21,6,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1859,-2,0,2121,-1,0,0 +2013,10,27,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1110,-2,0,1200,19,1,0 +2013,8,31,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,0,0,1000,-24,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,1,0,1040,-8,0,0 +2013,10,17,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,650,21,1,1225,4,0,0 +2013,7,20,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1825,0,0,1950,-5,0,0 +2013,9,2,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-6,0,1812,-10,0,0 +2013,4,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-4,0,1724,-9,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1950,3,0,32,25,1,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1425,12,0,1550,4,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1505,-1,0,1615,-6,0,0 +2013,4,11,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1814,25,1,1840,20,1,0 +2013,4,4,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,7,0,1740,12,0,0 +2013,4,13,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,80,1,1930,76,1,0 +2013,8,6,2,OO,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-2,0,1301,0,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,8,0,1010,-3,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,845,127,1,1055,102,1,0 +2013,9,4,3,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,44,1,649,19,1,0 +2013,6,16,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-13,0,1833,-16,0,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1935,16,1,2103,22,1,0 +2013,6,8,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1725,0,0,1845,-3,0,0 +2013,8,31,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,-10,0,2140,-28,0,0 +2013,10,7,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,659,0,,859,0,1,1 +2013,7,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,800,4,0,1037,7,0,0 +2013,6,21,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,46,1,2000,4,0,0 +2013,10,17,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1702,-20,0,2059,-15,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,18,1,1120,6,0,0 +2013,6,26,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1235,6,0,1540,-10,0,0 +2013,8,30,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1513,-5,0,1815,-19,0,0 +2013,9,30,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-6,0,1420,-17,0,0 +2013,7,7,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,752,-3,0,915,-19,0,0 +2013,4,27,6,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,652,-14,0,0 +2013,8,26,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,848,7,0,1145,-8,0,0 +2013,5,31,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1915,-3,0,2125,-6,0,0 +2013,6,4,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1940,-4,0,2247,-12,0,0 +2013,6,28,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2010,151,1,2050,151,1,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1855,8,0,2025,13,0,0 +2013,10,29,2,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-4,0,1550,-2,0,0 +2013,4,12,5,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1011,-1,0,1315,-3,0,0 +2013,9,16,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1005,2,0,1110,-1,0,0 +2013,8,30,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-6,0,1317,-13,0,0 +2013,6,6,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,905,0,0,1015,-5,0,0 +2013,10,25,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-11,0,1628,-22,0,0 +2013,8,23,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1442,-1,0,1610,6,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1640,-1,0,2015,-11,0,0 +2013,10,12,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1849,16,1,2030,3,0,0 +2013,7,3,3,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,44,1,920,50,1,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,6,0,1725,2,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1635,-2,0,1800,-15,0,0 +2013,7,20,6,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1735,69,1,2000,38,1,0 +2013,6,12,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1918,0,,2004,0,1,1 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1644,-3,0,2025,-22,0,0 +2013,9,15,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1600,0,0,1805,1,0,0 +2013,4,2,2,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,605,-3,0,750,-22,0,0 +2013,4,29,1,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,1400,5,0,1550,-10,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1450,4,0,1810,-13,0,0 +2013,10,28,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,825,-4,0,1440,-30,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,10,0,2236,-4,0,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,2,0,2100,-6,0,0 +2013,6,13,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-2,0,1300,-9,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,7,0,2045,9,0,0 +2013,5,17,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,827,-7,0,1100,-9,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,-3,0,1508,2,0,0 +2013,7,25,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,815,-15,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,2,0,1345,-5,0,0 +2013,6,26,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,805,-9,0,0 +2013,6,17,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1135,2,0,1420,-6,0,0 +2013,9,5,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-4,0,1501,-10,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,89,1,1542,76,1,0 +2013,10,7,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1559,123,1,1858,98,1,0 +2013,4,16,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1925,-3,0,2225,-37,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1105,27,1,1340,21,1,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1223,78,1,1405,65,1,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,635,7,0,745,4,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,840,-7,0,1139,-1,0,0 +2013,8,12,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-6,0,2102,-10,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,855,-5,0,1005,-10,0,0 +2013,5,29,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,-3,0,2052,-18,0,0 +2013,7,11,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,950,-1,0,1050,-3,0,0 +2013,10,28,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1123,34,1,1456,34,1,0 +2013,6,14,5,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1549,23,1,1724,20,1,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1050,4,0,1750,-6,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1430,34,1,2000,11,0,0 +2013,9,3,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1115,-2,0,0 +2013,7,18,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,600,-6,0,705,-6,0,0 +2013,6,24,1,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,935,1,0,0 +2013,7,6,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,-5,0,1916,-4,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1135,5,0,1514,-1,0,0 +2013,8,6,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1310,0,0,1424,15,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,9,0,1928,4,0,0 +2013,5,25,6,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1240,2,0,2100,-8,0,0 +2013,7,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1835,1,0,2040,-8,0,0 +2013,6,18,2,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,71,1,1925,48,1,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,3,0,1205,-9,0,0 +2013,5,16,4,FL,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1447,-2,0,1725,-12,0,0 +2013,4,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1520,9,0,1714,6,0,0 +2013,5,26,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1915,-4,0,1940,-27,0,0 +2013,9,7,6,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1244,41,1,1541,35,1,0 +2013,7,25,4,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1500,-7,0,1919,-19,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,935,-5,0,1207,11,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2050,-5,0,2230,-5,0,0 +2013,8,18,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1745,-10,0,2037,-16,0,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1645,35,1,1820,25,1,0 +2013,5,14,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1540,-2,0,1640,-8,0,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,0,0,1055,12,0,0 +2013,5,13,1,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1725,34,1,2040,-31,0,0 +2013,5,16,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,800,-2,0,930,-11,0,0 +2013,7,4,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,726,1,0,847,0,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1630,0,,1855,0,1,1 +2013,9,30,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1855,-9,0,2145,-25,0,0 +2013,7,25,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,41,1,1320,33,1,0 +2013,4,11,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1130,44,1,1834,28,1,0 +2013,7,22,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,6,0,1332,10,0,0 +2013,6,19,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,846,-11,0,1016,-6,0,0 +2013,4,3,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1315,34,1,1420,23,1,0 +2013,10,9,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,815,-4,0,930,-7,0,0 +2013,7,12,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-3,0,758,1,0,0 +2013,10,16,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1705,9,0,1825,-1,0,0 +2013,4,29,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-5,0,1612,-16,0,0 +2013,8,25,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1132,1,0,1243,0,0,0 +2013,9,2,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,-4,0,2246,-17,0,0 +2013,10,5,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-3,0,756,16,1,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1300,4,0,1554,-19,0,0 +2013,7,14,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1509,1,0,1850,5,0,0 +2013,5,17,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-3,0,2058,15,1,0 +2013,7,7,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1750,17,1,2030,11,0,0 +2013,6,28,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,-3,0,1710,-4,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1915,36,1,2033,44,1,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,43,1,1953,37,1,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,830,16,1,945,14,0,0 +2013,10,4,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,930,-3,0,1305,-26,0,0 +2013,9,5,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,935,-4,0,1025,-8,0,0 +2013,9,27,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-5,0,228,-19,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2000,-5,0,2154,-7,0,0 +2013,5,27,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1725,193,1,2005,171,1,0 +2013,7,3,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,7,0,1230,20,1,0 +2013,7,27,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,42,1,1725,38,1,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1810,37,1,1935,28,1,0 +2013,5,13,1,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,955,-9,0,1049,-4,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1325,22,1,1458,11,0,0 +2013,6,23,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1515,-2,0,1651,-13,0,0 +2013,5,3,5,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,953,-1,0,1445,5,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2002,0,0,2157,-16,0,0 +2013,10,18,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1252,18,1,1419,18,1,0 +2013,6,18,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1205,-4,0,1503,-26,0,0 +2013,4,1,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1206,28,1,1309,41,1,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1955,9,0,2250,2,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1625,6,0,1745,5,0,0 +2013,6,17,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1755,46,1,2030,78,1,0 +2013,6,30,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,-3,0,2113,-13,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2359,-6,0,655,-9,0,0 +2013,4,21,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-6,0,659,-11,0,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,955,5,0,1600,-19,0,0 +2013,10,1,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-9,0,630,-12,0,0 +2013,9,18,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1805,-13,0,2045,-13,0,0 +2013,6,10,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,810,-1,0,825,7,0,0 +2013,10,15,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1605,48,1,1755,44,1,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1205,-3,0,1315,-11,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1735,-2,0,1910,-14,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1735,80,1,1828,110,1,0 +2013,10,22,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1150,-3,0,1305,-3,0,0 +2013,6,13,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1825,161,1,2019,153,1,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1550,-2,0,1916,-4,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1732,30,1,1850,28,1,0 +2013,6,18,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1520,88,1,1635,145,1,0 +2013,6,8,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,726,-4,0,1020,0,0,0 +2013,4,1,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,811,-1,0,0 +2013,6,18,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,75,1,2128,78,1,0 +2013,5,14,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1255,16,1,1400,12,0,0 +2013,8,27,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1155,-6,0,1320,-8,0,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1540,-1,0,1755,-13,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,-5,0,2350,-24,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,22,1,1939,-35,0,0 +2013,8,18,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-6,0,1518,1,0,0 +2013,5,14,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1510,-1,0,1646,-19,0,0 +2013,8,27,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,730,-8,0,910,-1,0,0 +2013,10,1,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2155,581,1,2310,577,1,0 +2013,7,23,2,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2148,-2,0,555,13,0,0 +2013,7,23,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1615,42,1,1800,44,1,0 +2013,8,19,1,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,938,-4,0,1410,-16,0,0 +2013,4,7,7,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1325,-2,0,1715,-8,0,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1845,-5,0,2217,-44,0,0 +2013,6,3,1,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,-4,0,1003,-15,0,0 +2013,9,3,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,-8,0,2100,-6,0,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1736,1,0,1949,-13,0,0 +2013,5,30,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,645,-9,0,920,-13,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1306,-4,0,1436,-1,0,0 +2013,5,16,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,-6,0,1910,-38,0,0 +2013,4,18,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1145,-14,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,4,0,2123,11,0,0 +2013,7,8,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1123,-1,0,1336,-7,0,0 +2013,8,15,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1630,58,1,1800,48,1,0 +2013,8,23,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1000,14,0,1315,2,0,0 +2013,6,6,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1530,3,0,1825,7,0,0 +2013,10,19,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1220,-3,0,1545,-14,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,-1,0,2010,-9,0,0 +2013,4,19,5,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,21,1,1805,5,0,0 +2013,4,1,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,5,0,1900,-4,0,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,9,0,1835,16,1,0 +2013,9,26,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1822,-5,0,2003,-8,0,0 +2013,6,18,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,36,1,1558,45,1,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1455,7,0,1648,23,1,0 +2013,4,20,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1535,6,0,1835,-7,0,0 +2013,10,12,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,805,-3,0,905,6,0,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1336,-4,0,1525,-7,0,0 +2013,8,23,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-6,0,736,-13,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,10,0,1928,9,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,11,0,1339,62,1,0 +2013,5,1,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1634,-5,0,1955,-10,0,0 +2013,4,25,4,YV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1702,8,0,1816,-7,0,0 +2013,6,19,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,722,-5,0,1025,-22,0,0 +2013,9,8,7,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1140,-3,0,1419,-8,0,0 +2013,5,29,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1551,-6,0,1845,-10,0,0 +2013,10,1,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1125,-2,0,1210,-4,0,0 +2013,6,6,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-5,0,1258,-10,0,0 +2013,5,5,7,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,1,0,1515,7,0,0 +2013,4,13,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,905,8,0,1035,16,1,0 +2013,6,27,4,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,143,1,1025,122,1,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1425,1,0,1520,5,0,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,950,6,0,1450,13,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-4,0,1103,-7,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1317,24,1,1436,8,0,0 +2013,10,4,5,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-7,0,1430,-4,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1340,1,0,1600,-9,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1202,-4,0,1334,-11,0,0 +2013,7,8,1,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1830,119,1,2005,88,1,0 +2013,4,18,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,2,0,735,-9,0,0 +2013,8,9,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2047,110,1,2208,128,1,0 +2013,4,5,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2000,-3,0,2125,-9,0,0 +2013,8,2,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1735,71,1,1815,68,1,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,0,0,1030,-4,0,0 +2013,8,16,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,1933,-19,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,-1,0,2335,-6,0,0 +2013,5,7,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1338,-17,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,0,0,1120,-4,0,0 +2013,6,11,2,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,655,-2,0,940,-7,0,0 +2013,4,26,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,5,0,2115,-7,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1730,-6,0,1901,-19,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,710,-8,0,1111,-8,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,47,1,2240,45,1,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,41,1,2045,39,1,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1615,9,0,1919,22,1,0 +2013,4,10,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-5,0,2135,-9,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1130,42,1,1359,37,1,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1925,55,1,2040,56,1,0 +2013,7,18,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,1,0,1605,13,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2005,77,1,2255,23,1,0 +2013,10,9,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,819,-1,0,1144,-10,0,0 +2013,10,4,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1502,12,0,1524,20,1,0 +2013,8,1,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-5,0,1159,-7,0,0 +2013,8,25,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1907,-7,0,2010,-6,0,0 +2013,8,9,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,644,-1,0,825,-4,0,0 +2013,4,15,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1912,87,1,2015,128,1,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1050,1,0,1715,6,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,13,0,1717,-9,0,0 +2013,5,23,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1300,2,0,1430,6,0,0 +2013,6,20,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1440,1,0,1830,1,0,0 +2013,7,29,1,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,645,-5,0,926,-2,0,0 +2013,4,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,837,-8,0,937,-12,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-12,0,9,-13,0,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,840,-3,0,1719,12,0,0 +2013,8,2,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,750,-5,0,905,-9,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2220,109,1,2351,90,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-2,0,1523,-12,0,0 +2013,9,8,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1345,-2,0,1425,-1,0,0 +2013,6,5,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1620,6,0,2215,2,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1505,59,1,2352,11,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,162,1,2140,160,1,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,0,0,920,-4,0,0 +2013,5,14,2,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,1005,-1,0,1234,-37,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2210,-3,0,2339,-12,0,0 +2013,6,10,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,805,-4,0,915,-10,0,0 +2013,4,23,2,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1500,35,1,1705,33,1,0 +2013,9,2,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,5,0,1515,8,0,0 +2013,4,6,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1730,35,1,2000,30,1,0 +2013,9,6,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1830,3,0,1950,1,0,0 +2013,4,2,2,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,-1,0,2035,-13,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,13,0,2305,-7,0,0 +2013,5,3,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1355,22,1,1659,14,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1457,0,0,1711,-12,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1100,11,0,1230,2,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,-4,0,1135,-6,0,0 +2013,6,2,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,-3,0,1530,0,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1640,-2,0,1800,-9,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,-1,0,1925,24,1,0 +2013,9,30,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2220,1,0,2305,5,0,0 +2013,8,11,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,0,0,1624,2,0,0 +2013,4,2,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1210,-5,0,1331,8,0,0 +2013,4,4,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,830,-10,0,1146,-7,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,815,0,,1020,0,1,1 +2013,10,14,1,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1829,0,0,1939,1,0,0 +2013,5,30,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1016,0,0,1202,3,0,0 +2013,10,19,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1138,-3,0,1320,-13,0,0 +2013,9,10,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1253,-1,0,1413,-22,0,0 +2013,6,30,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,-1,0,2215,-3,0,0 +2013,8,18,7,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,730,1,0,1020,-12,0,0 +2013,6,25,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1705,93,1,1811,130,1,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1935,-4,0,2150,-24,0,0 +2013,4,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1111,135,1,1405,145,1,0 +2013,8,16,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,830,-2,0,935,-4,0,0 +2013,7,22,1,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1630,-8,0,1959,-20,0,0 +2013,5,19,7,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1529,45,1,1740,35,1,0 +2013,8,28,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-7,0,848,-13,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1711,-1,0,2039,-48,0,0 +2013,9,18,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,820,-3,0,1100,-10,0,0 +2013,5,24,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1805,-4,0,2019,-2,0,0 +2013,5,20,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,76,1,2025,85,1,0 +2013,8,1,4,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,125,1,1535,122,1,0 +2013,6,30,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,18,1,1408,27,1,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1800,10,0,1925,0,0,0 +2013,7,20,6,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,1159,22,1,1324,14,0,0 +2013,5,24,5,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1900,-3,0,2005,-4,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1520,-3,0,1745,-16,0,0 +2013,9,21,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1120,13,0,1235,11,0,0 +2013,9,16,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-4,0,1705,1,0,0 +2013,6,13,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,1,0,1505,-4,0,0 +2013,5,21,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-5,0,1607,-16,0,0 +2013,10,17,4,9E,12953,LaGuardia,New York,NY,12339,Indianapolis International,Indianapolis,IN,1000,-7,0,1234,-13,0,0 +2013,4,9,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,3,0,1127,-8,0,0 +2013,8,6,2,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1410,-1,0,1810,6,0,0 +2013,5,25,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,8,0,1050,9,0,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1717,10,0,1944,23,1,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1745,-3,0,2008,-14,0,0 +2013,10,8,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,-3,0,1905,-23,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1740,28,1,1945,18,1,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1021,-5,0,1200,-12,0,0 +2013,8,4,7,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,545,4,0,652,19,1,0 +2013,10,10,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-3,0,1417,-21,0,0 +2013,9,7,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,0,,1415,0,1,1 +2013,5,16,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2113,3,0,2235,1,0,0 +2013,8,21,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1030,-1,0,1245,-9,0,0 +2013,7,2,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1344,101,1,1645,75,1,0 +2013,7,16,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1610,245,1,1735,253,1,0 +2013,4,15,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-5,0,1232,12,0,0 +2013,7,15,1,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-8,0,2023,-14,0,0 +2013,4,5,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,836,-3,0,1055,-22,0,0 +2013,7,5,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,65,1,1010,26,1,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1005,12,0,1320,12,0,0 +2013,9,14,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1531,-9,0,1632,-26,0,0 +2013,9,1,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1700,-6,0,2005,-18,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1645,1,0,1925,1,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,743,-3,0,839,-4,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1455,-1,0,1617,-20,0,0 +2013,8,14,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1840,-4,0,1936,-2,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,-6,0,1047,-17,0,0 +2013,10,11,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1405,49,1,1510,46,1,0 +2013,10,10,4,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-2,0,925,26,1,0 +2013,8,7,3,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1310,0,0,1630,-2,0,0 +2013,6,19,3,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1820,12,0,2048,-10,0,0 +2013,9,10,2,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-4,0,840,-1,0,0 +2013,9,11,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,10,0,1941,20,1,0 +2013,4,30,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2117,25,1,2358,16,1,0 +2013,8,14,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-6,0,1845,18,1,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1801,-5,0,2014,-16,0,0 +2013,10,11,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,22,1,1740,16,1,0 +2013,5,4,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1350,0,0,1502,5,0,0 +2013,7,11,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-3,0,1435,-2,0,0 +2013,7,22,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-5,0,2059,-24,0,0 +2013,5,10,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1045,-7,0,1420,-38,0,0 +2013,5,5,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,24,1,1449,3,0,0 +2013,7,17,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,24,1,1548,21,1,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,3,0,1935,-7,0,0 +2013,8,29,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-7,0,1550,-2,0,0 +2013,9,13,5,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,8,0,2145,-7,0,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,-4,0,1035,-13,0,0 +2013,9,14,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1545,0,0,1650,-5,0,0 +2013,4,1,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,-1,0,343,7,0,0 +2013,8,30,5,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2043,3,0,2208,-12,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,34,1,2159,26,1,0 +2013,6,1,6,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,642,-3,0,901,0,0,0 +2013,4,26,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,0,0,1248,0,0,0 +2013,5,24,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-5,0,1018,4,0,0 +2013,5,13,1,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-5,0,843,-12,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-1,0,908,-1,0,0 +2013,8,6,2,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1039,11,0,1210,11,0,0 +2013,8,26,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-7,0,1728,-11,0,0 +2013,5,21,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,600,10,0,700,-5,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,930,-1,0,1115,-6,0,0 +2013,8,10,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,855,-16,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,0,0,1340,-15,0,0 +2013,4,15,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1235,-28,0,0 +2013,8,2,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1651,7,0,1832,17,1,0 +2013,6,3,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1235,17,1,1440,-6,0,0 +2013,8,31,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1230,-8,0,0 +2013,9,1,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-10,0,1654,-16,0,0 +2013,8,31,6,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1055,61,1,1308,62,1,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1030,6,0,1545,10,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,820,6,0,1035,2,0,0 +2013,7,31,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1400,13,0,1540,22,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,810,-5,0,1027,-9,0,0 +2013,8,18,7,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-7,0,1355,-25,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,-9,0,1054,-11,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1815,-5,0,1930,-10,0,0 +2013,5,19,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,859,-6,0,1009,31,1,0 +2013,10,4,5,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1750,-7,0,1935,-29,0,0 +2013,5,5,7,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,832,-3,0,1018,-9,0,0 +2013,10,8,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,600,20,1,715,5,0,0 +2013,10,14,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,-6,0,1352,-10,0,0 +2013,10,27,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1357,-9,0,1751,-10,0,0 +2013,5,9,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,635,-6,0,750,-16,0,0 +2013,6,21,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,744,-11,0,0 +2013,4,28,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2235,-7,0,550,-21,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1755,43,1,2335,28,1,0 +2013,6,19,3,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-6,0,1405,2,0,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,910,13,0,1148,-1,0,0 +2013,6,15,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1120,-4,0,1320,-15,0,0 +2013,4,9,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,13,0,2110,-3,0,0 +2013,5,14,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1700,1,0,1805,-4,0,0 +2013,7,6,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,742,-6,0,915,-2,0,0 +2013,5,4,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-9,0,930,-8,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2200,-4,0,2310,-12,0,0 +2013,4,7,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1130,-3,0,1400,-10,0,0 +2013,7,1,1,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1142,63,1,1303,102,1,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,-2,0,2105,-2,0,0 +2013,6,28,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1420,1,0,1545,-5,0,0 +2013,5,12,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1110,0,0,1356,-6,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,625,-2,0,830,10,0,0 +2013,6,4,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,-4,0,2120,-12,0,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1000,6,0,1310,3,0,0 +2013,9,24,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2051,-7,0,2140,-2,0,0 +2013,10,4,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1328,39,1,1521,14,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-3,0,1215,63,1,0 +2013,8,26,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,945,5,0,1100,-17,0,0 +2013,9,25,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,-6,0,1558,-2,0,0 +2013,7,3,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1605,-6,0,2155,-8,0,0 +2013,8,8,4,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1524,3,0,1845,12,0,0 +2013,6,10,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1741,181,1,1842,169,1,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2030,-1,0,2259,-5,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1435,-1,0,1602,-30,0,0 +2013,9,20,5,9E,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1750,71,1,1938,67,1,0 +2013,10,30,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,735,-4,0,845,-12,0,0 +2013,8,11,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1557,-16,0,0 +2013,8,22,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1320,0,0,2155,-2,0,0 +2013,4,17,3,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,8,0,1245,12,0,0 +2013,9,17,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,14,0,2000,-1,0,0 +2013,7,7,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,15,1,545,-10,0,0 +2013,4,22,1,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1910,32,1,2059,29,1,0 +2013,9,6,5,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1743,-10,0,2102,-10,0,0 +2013,5,21,2,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1140,-4,0,1258,-2,0,0 +2013,10,6,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1310,-1,0,1438,17,1,0 +2013,10,13,7,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,830,-2,0,1655,-14,0,0 +2013,7,27,6,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,-3,0,1033,11,0,0 +2013,10,30,3,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1345,28,1,1430,27,1,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,747,-4,0,914,-3,0,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,76,1,2102,79,1,0 +2013,8,21,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,535,-3,0,742,-8,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-1,0,1230,-13,0,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,845,0,0,930,-10,0,0 +2013,9,12,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1135,1,0,1250,12,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,-7,0,2019,-3,0,0 +2013,9,12,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1617,10,0,1934,9,0,0 +2013,7,3,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,37,1,1050,63,1,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,645,0,0,946,-10,0,0 +2013,7,9,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1500,-1,0,1740,-18,0,0 +2013,8,28,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,108,1,1835,111,1,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1535,0,0,1635,-3,0,0 +2013,5,28,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,-2,0,1135,-9,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1000,2,0,1150,-6,0,0 +2013,9,24,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,903,-4,0,1028,-13,0,0 +2013,10,8,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-1,0,1919,-3,0,0 +2013,4,19,5,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1535,-1,0,1714,-1,0,0 +2013,9,29,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1345,-4,0,1450,-11,0,0 +2013,6,6,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1306,-2,0,2135,-27,0,0 +2013,7,25,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2157,3,0,2253,-11,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1235,23,1,1845,-4,0,0 +2013,7,3,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,74,1,1712,92,1,0 +2013,7,20,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,605,-2,0,1000,0,0,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,-3,0,1633,-12,0,0 +2013,7,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1958,1,0,2200,-2,0,0 +2013,10,2,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1900,-8,0,2149,-19,0,0 +2013,8,29,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1330,-4,0,1639,-9,0,0 +2013,4,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1715,-2,0,1910,4,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,-1,0,1516,-13,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2200,6,0,2345,6,0,0 +2013,10,3,4,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-1,0,1930,4,0,0 +2013,5,20,1,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1102,0,0,1948,29,1,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2005,7,0,2305,-3,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,0,0,1048,-14,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1210,-1,0,1315,-5,0,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,-3,0,1015,-4,0,0 +2013,5,2,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1351,30,1,1554,13,0,0 +2013,10,15,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-2,0,1130,-11,0,0 +2013,7,24,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-5,0,2033,34,1,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,4,0,1535,-10,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2155,26,1,2320,20,1,0 +2013,7,31,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1538,-5,0,1610,-19,0,0 +2013,10,27,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,17,1,1850,13,0,0 +2013,10,15,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2050,14,0,2225,2,0,0 +2013,7,6,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-3,0,2057,-5,0,0 +2013,8,4,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1150,-2,0,1332,1,0,0 +2013,5,24,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-2,0,839,-18,0,0 +2013,4,17,3,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,850,0,,1110,0,1,1 +2013,4,26,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1345,-1,0,1450,-7,0,0 +2013,4,28,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2039,17,1,2225,0,0,0 +2013,10,30,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,700,-6,0,845,-13,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-4,0,1633,-16,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,900,1,0,1030,-5,0,0 +2013,5,27,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,15,1,1830,8,0,0 +2013,7,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1325,-3,0,1450,-14,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1735,-7,0,1841,-3,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1130,13,0,1415,-10,0,0 +2013,8,5,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,3,0,1320,-5,0,0 +2013,7,6,6,DL,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,935,4,0,1759,-5,0,0 +2013,9,26,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,-6,0,2035,-24,0,0 +2013,8,29,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-4,0,956,8,0,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,0,0,35,-2,0,0 +2013,7,12,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,948,390,1,1045,368,1,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,250,1,2027,258,1,0 +2013,7,14,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1705,37,1,1900,15,1,0 +2013,6,10,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2115,45,1,2349,59,1,0 +2013,7,20,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,0,0,2310,-14,0,0 +2013,8,16,5,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2300,-7,0,615,-14,0,0 +2013,10,27,7,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1514,-9,0,1708,-8,0,0 +2013,9,30,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,935,-6,0,1045,-7,0,0 +2013,9,11,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1805,-2,0,1930,-2,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1201,162,1,1441,166,1,0 +2013,9,13,5,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1855,-10,0,2047,-3,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-7,0,1617,-25,0,0 +2013,7,3,3,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1107,-5,0,1221,-19,0,0 +2013,10,27,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,833,-4,0,917,-11,0,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1755,48,1,2055,78,1,0 +2013,7,1,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1654,17,1,1934,14,0,0 +2013,4,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1015,-6,0,1200,-18,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-1,0,1201,-12,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,0,0,1915,-21,0,0 +2013,9,1,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1540,4,0,1655,-6,0,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2115,12,0,2345,10,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2135,3,0,2230,-2,0,0 +2013,5,28,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1055,1,0,1320,-24,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1955,0,0,2225,-4,0,0 +2013,9,22,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-9,0,718,8,0,0 +2013,7,18,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-5,0,1237,-5,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1812,-5,0,1942,-17,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-2,0,906,-10,0,0 +2013,4,29,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1142,-13,0,1429,-21,0,0 +2013,7,20,6,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,98,1,2020,97,1,0 +2013,10,20,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,3,0,2150,-12,0,0 +2013,7,4,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,817,-3,0,1412,-1,0,0 +2013,5,7,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,1,0,753,-4,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,-6,0,2320,-39,0,0 +2013,6,9,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1636,4,0,1900,14,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,90,1,1651,85,1,0 +2013,9,17,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,0,0,1334,2,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1607,-3,0,1901,-1,0,0 +2013,7,8,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-1,0,1845,-33,0,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,27,1,1806,23,1,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-2,0,1721,-5,0,0 +2013,5,2,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,750,-10,0,1042,-34,0,0 +2013,9,6,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1158,-6,0,1442,-8,0,0 +2013,7,27,6,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,-6,0,733,-9,0,0 +2013,6,14,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-4,0,1347,-12,0,0 +2013,4,2,2,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1407,-5,0,1528,0,0,0 +2013,10,23,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,952,-6,0,1118,-8,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,-7,0,1110,-10,0,0 +2013,6,9,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1350,20,1,1825,-3,0,0 +2013,4,4,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1900,9,0,2016,2,0,0 +2013,8,3,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-7,0,1759,-8,0,0 +2013,9,17,2,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,755,3,0,1245,-10,0,0 +2013,5,4,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,60,1,928,41,1,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1959,-3,0,2303,-19,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,39,1,2125,37,1,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1115,-7,0,1459,-15,0,0 +2013,5,15,3,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,746,-7,0,907,-8,0,0 +2013,10,30,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,715,-21,0,855,-10,0,0 +2013,8,22,4,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,4,0,1831,14,0,0 +2013,4,19,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-1,0,1439,11,0,0 +2013,4,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,745,1,0,950,-19,0,0 +2013,7,7,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1646,98,1,1733,107,1,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,820,0,0,930,1,0,0 +2013,7,3,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1518,9,0,2359,-10,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1200,-4,0,1355,3,0,0 +2013,6,11,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,2,0,2205,-4,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1745,27,1,2250,13,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1235,0,0,1416,-5,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1740,-1,0,1921,15,1,0 +2013,5,12,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1910,-2,0,2129,5,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,54,1,839,66,1,0 +2013,6,23,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1010,-4,0,1304,16,1,0 +2013,6,1,6,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1740,-3,0,1900,-16,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,925,4,0,1715,8,0,0 +2013,4,1,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1540,38,1,1655,30,1,0 +2013,8,16,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1502,0,0,1608,3,0,0 +2013,8,27,2,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,-5,0,1650,-7,0,0 +2013,4,15,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1524,1,0,1630,-10,0,0 +2013,9,5,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-7,0,1912,0,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-1,0,30,-18,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,910,3,0,1015,-1,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,-3,0,957,-4,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2115,14,0,536,-1,0,0 +2013,5,4,6,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,805,-4,0,855,-10,0,0 +2013,7,20,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,46,1,1928,47,1,0 +2013,5,9,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1210,24,1,1345,14,0,0 +2013,8,8,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,11,0,1320,11,0,0 +2013,10,2,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2257,-17,0,19,-18,0,0 +2013,9,6,5,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,810,-6,0,0 +2013,10,24,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1938,-10,0,2142,-23,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-4,0,1809,-24,0,0 +2013,6,10,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1203,25,1,1444,19,1,0 +2013,9,23,1,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1605,-9,0,1721,-13,0,0 +2013,6,17,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,1,0,1033,11,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,944,14,0,1020,22,1,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1130,4,0,1255,3,0,0 +2013,10,29,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,10,0,1515,5,0,0 +2013,9,6,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1525,-5,0,1820,-8,0,0 +2013,7,18,4,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,0,0,1056,-17,0,0 +2013,8,7,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1005,40,1,1144,40,1,0 +2013,4,9,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1903,151,1,2125,127,1,0 +2013,6,6,4,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,4,0,1405,-5,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1240,5,0,1410,-20,0,0 +2013,7,3,3,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,36,1,1814,19,1,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1725,-1,0,1855,-7,0,0 +2013,5,11,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,-4,0,929,-12,0,0 +2013,10,27,7,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1925,-11,0,2043,-15,0,0 +2013,8,29,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,605,-5,0,747,-9,0,0 +2013,9,2,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1135,-1,0,1310,1,0,0 +2013,7,16,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,6,0,642,23,1,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,8,0,2155,1,0,0 +2013,6,25,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-2,0,1610,0,0,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,-2,0,830,-4,0,0 +2013,9,3,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,951,-8,0,1012,-17,0,0 +2013,9,29,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1255,-2,0,1531,-2,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,-1,0,1054,8,0,0 +2013,9,8,7,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1135,-4,0,1205,-17,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-5,0,1210,-10,0,0 +2013,10,30,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,0,0,1345,1,0,0 +2013,9,15,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-3,0,1225,-10,0,0 +2013,7,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2020,4,0,2205,6,0,0 +2013,10,14,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-3,0,1235,14,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1850,10,0,1955,14,0,0 +2013,8,9,5,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,715,-6,0,940,-5,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,830,-3,0,1126,-3,0,0 +2013,7,17,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,0,0,2018,47,1,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1905,1,0,2250,-13,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,136,1,1600,112,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,17,1,1945,11,0,0 +2013,5,10,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,1355,-7,0,1519,-4,0,0 +2013,9,27,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1930,145,1,2125,152,1,0 +2013,10,28,1,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,600,-3,0,736,-10,0,0 +2013,8,2,5,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1035,-2,0,1310,-6,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,0,0,2040,10,0,0 +2013,8,6,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1300,-1,0,1350,-8,0,0 +2013,6,20,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,813,-3,0,947,-12,0,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2030,19,1,2145,13,0,0 +2013,4,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1730,-6,0,1949,6,0,0 +2013,8,3,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1413,-6,0,1642,-13,0,0 +2013,6,5,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,720,-1,0,940,12,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,857,-4,0,1659,-6,0,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1550,21,1,2110,15,1,0 +2013,9,16,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1530,1,0,1540,-4,0,0 +2013,6,16,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,12,0,2135,14,0,0 +2013,7,29,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,740,-2,0,838,-18,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2035,19,1,2200,14,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2303,7,0,15,-6,0,0 +2013,9,1,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1243,-5,0,1557,-11,0,0 +2013,10,1,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1955,19,1,2115,17,1,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1615,246,1,2224,232,1,0 +2013,9,13,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,30,1,1614,63,1,0 +2013,9,8,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,19,1,1800,8,0,0 +2013,8,5,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1620,-4,0,1912,-8,0,0 +2013,8,10,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1322,148,1,1410,141,1,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,2135,55,1,2325,53,1,0 +2013,10,27,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,-9,0,2050,-10,0,0 +2013,8,21,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,14,0,2025,-5,0,0 +2013,7,6,6,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1650,-1,0,1827,-4,0,0 +2013,7,17,3,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,42,1,2055,61,1,0 +2013,7,22,1,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-6,0,840,-10,0,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-6,0,1510,-6,0,0 +2013,9,1,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,4,0,1325,-20,0,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,1,0,2145,2,0,0 +2013,8,4,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1500,1,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,11,0,940,12,0,0 +2013,5,17,5,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1338,18,1,1656,4,0,0 +2013,5,23,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-6,0,914,3,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2225,3,0,2354,-9,0,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2244,3,0,15,-5,0,0 +2013,4,6,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1417,-1,0,1533,-3,0,0 +2013,5,17,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1837,-8,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1525,-1,0,1625,-8,0,0 +2013,10,19,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-8,0,1615,-14,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1905,33,1,2130,25,1,0 +2013,5,18,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1402,7,0,1659,-5,0,0 +2013,5,11,6,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1930,303,1,2142,285,1,0 +2013,5,8,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1105,-7,0,1359,-7,0,0 +2013,5,30,4,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1010,-11,0,1137,-8,0,0 +2013,4,25,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,1,0,1150,-11,0,0 +2013,5,12,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1215,-5,0,1352,-18,0,0 +2013,5,12,7,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,945,-4,0,1240,-12,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1433,-1,0,1647,1,0,0 +2013,10,21,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,649,-13,0,0 +2013,4,10,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,79,1,2215,77,1,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,732,65,1,1105,130,1,0 +2013,4,6,6,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1435,-10,0,1541,-23,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1439,-3,0,1530,-4,0,0 +2013,4,19,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,10,-1,0,626,-25,0,0 +2013,6,29,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-12,0,1700,-4,0,0 +2013,7,21,7,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,952,10,0,1309,2,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,16,1,2327,20,1,0 +2013,5,16,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1723,1,0,1809,-7,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,1,0,1737,-1,0,0 +2013,10,4,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1436,27,1,1808,29,1,0 +2013,6,23,7,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,8,0,2025,4,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1050,5,0,1720,1,0,0 +2013,4,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,935,-2,0,1040,-11,0,0 +2013,10,22,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,922,0,0,0 +2013,6,27,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,935,14,0,1100,6,0,0 +2013,6,13,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,9,0,2059,21,1,0 +2013,9,10,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1254,-3,0,1614,12,0,0 +2013,10,9,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-7,0,1552,-7,0,0 +2013,5,12,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,729,-1,0,859,-17,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1929,23,1,2155,30,1,0 +2013,8,27,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,946,-3,0,1007,15,1,0 +2013,9,4,3,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1000,-15,0,1200,-18,0,0 +2013,8,17,6,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,-4,0,1120,-3,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,906,-2,0,1037,-5,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,12,0,2148,34,1,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,13,0,1505,8,0,0 +2013,6,20,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1145,-1,0,1240,2,0,0 +2013,6,24,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,0,,2140,0,1,1 +2013,6,18,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,20,1,2212,43,1,0 +2013,6,14,5,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1505,-5,0,1645,-10,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,-3,0,1046,-21,0,0 +2013,8,2,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1520,155,1,1730,154,1,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-2,0,1540,-20,0,0 +2013,8,27,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,0,0,2000,-9,0,0 +2013,4,2,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1049,46,1,1207,33,1,0 +2013,5,17,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,907,-3,0,1021,-17,0,0 +2013,4,29,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1720,-2,0,1838,16,1,0 +2013,7,9,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,1,0,900,-9,0,0 +2013,5,10,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-2,0,725,2,0,0 +2013,7,8,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,0,0,1421,-14,0,0 +2013,10,28,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1218,0,0,1420,2,0,0 +2013,6,27,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1601,35,1,1858,26,1,0 +2013,10,6,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2000,32,1,2214,29,1,0 +2013,4,21,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,1246,-14,0,0 +2013,8,3,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1900,116,1,2010,112,1,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1730,-1,0,1840,-14,0,0 +2013,6,15,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,709,-6,0,1043,-12,0,0 +2013,9,15,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,950,-8,0,1050,-9,0,0 +2013,9,19,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,44,1,2101,42,1,0 +2013,6,6,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,50,1,2251,36,1,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1533,-1,0,1719,-5,0,0 +2013,9,18,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,0,0,1618,-16,0,0 +2013,7,6,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1213,-4,0,1402,2,0,0 +2013,6,23,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,0,0,901,13,0,0 +2013,6,23,7,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-6,0,1425,-18,0,0 +2013,7,5,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,20,1,621,19,1,0 +2013,7,21,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,19,1,1540,14,0,0 +2013,4,11,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,38,1,32,14,0,0 +2013,6,17,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1535,-3,0,1800,-1,0,0 +2013,9,9,1,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-7,0,855,-16,0,0 +2013,6,12,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1255,-8,0,1504,-1,0,0 +2013,5,25,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,845,17,1,1610,13,0,0 +2013,8,5,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,0,0,659,-3,0,0 +2013,6,30,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1645,10,0,1820,3,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-3,0,1747,-6,0,0 +2013,5,8,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,936,-9,0,1040,-28,0,0 +2013,4,9,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,0,0,930,20,1,0 +2013,7,15,1,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,-6,0,2130,-17,0,0 +2013,4,29,1,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,635,0,0,939,-3,0,0 +2013,8,12,1,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,545,-7,0,654,-10,0,0 +2013,8,4,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1615,250,1,1715,245,1,0 +2013,9,8,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,12,0,2041,3,0,0 +2013,6,8,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,600,4,0,1215,-10,0,0 +2013,9,5,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1212,16,1,0 +2013,8,15,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1932,3,0,2110,8,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,31,1,5,30,1,0 +2013,8,2,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,51,1,815,58,1,0 +2013,10,2,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-4,0,1035,15,1,0 +2013,7,4,4,YV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1718,-11,0,1823,-26,0,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,920,5,0,1035,-3,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1330,38,1,1425,34,1,0 +2013,10,23,3,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,0,0,1005,6,0,0 +2013,9,5,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2002,-7,0,2023,-23,0,0 +2013,8,8,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1802,19,1,2017,10,0,0 +2013,5,28,2,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,610,-7,0,812,-20,0,0 +2013,10,9,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,942,-7,0,1221,-17,0,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,549,-5,0,702,-20,0,0 +2013,5,8,3,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1130,137,1,1350,109,1,0 +2013,4,5,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1925,-9,0,2105,-5,0,0 +2013,10,12,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-4,0,1223,-8,0,0 +2013,9,26,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1119,-8,0,1214,-11,0,0 +2013,6,16,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1830,-7,0,2017,-41,0,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1930,0,0,111,-30,0,0 +2013,8,6,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,-5,0,1003,-14,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1351,0,0,1427,3,0,0 +2013,7,20,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-6,0,835,-8,0,0 +2013,8,22,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,909,-8,0,1022,-13,0,0 +2013,8,3,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,827,-6,0,958,-14,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2000,10,0,2300,4,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1115,15,1,1245,20,1,0 +2013,8,5,1,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1635,-1,0,2010,1,0,0 +2013,5,29,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1725,14,0,2023,13,0,0 +2013,4,12,5,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,10,0,1225,-12,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,-1,0,1835,-7,0,0 +2013,10,10,4,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-12,0,1001,-15,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,21,1,2120,7,0,0 +2013,5,26,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1859,-2,0,2228,-1,0,0 +2013,6,30,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,101,1,2255,91,1,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1959,124,1,2039,112,1,0 +2013,9,20,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-2,0,630,-18,0,0 +2013,6,9,7,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-3,0,900,-9,0,0 +2013,5,1,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,24,1,1352,43,1,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1905,12,0,2140,8,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,930,6,0,1025,-3,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1000,0,0,1217,4,0,0 +2013,7,29,1,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,810,-3,0,1630,-8,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,2,0,1256,0,0,0 +2013,9,27,5,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1130,20,1,1200,25,1,0 +2013,7,23,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,11,0,1435,5,0,0 +2013,7,14,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,-2,0,2045,-4,0,0 +2013,7,5,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,930,35,1,1235,29,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,2,0,1606,16,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1653,-2,0,1840,1,0,0 +2013,4,5,5,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,830,-5,0,1004,-11,0,0 +2013,6,29,6,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,730,6,0,850,-4,0,0 +2013,4,22,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1445,-4,0,1625,18,1,0 +2013,10,9,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,846,-9,0,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-6,0,1715,-8,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,655,-2,0,945,-7,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,37,1,1118,30,1,0 +2013,6,7,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,942,-10,0,1059,-3,0,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,201,1,1735,180,1,0 +2013,6,1,6,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-1,0,1042,4,0,0 +2013,5,19,7,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,830,1,0,955,-3,0,0 +2013,5,17,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,23,1,2100,19,1,0 +2013,5,1,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,26,1,1355,20,1,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2015,34,1,2308,24,1,0 +2013,10,29,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-1,0,939,-6,0,0 +2013,7,27,6,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1230,-2,0,1500,-20,0,0 +2013,4,9,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,22,1,1828,8,0,0 +2013,7,8,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,0,,1730,0,1,1 +2013,5,13,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,19,1,2040,18,1,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,-1,0,1050,2,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,930,28,1,1320,27,1,0 +2013,10,22,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1605,-4,0,1753,-14,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,1,0,1230,28,1,0 +2013,5,26,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1220,7,0,1410,1,0,0 +2013,5,11,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,810,-2,0,910,-24,0,0 +2013,10,26,6,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1644,-6,0,1734,5,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1932,93,1,2301,80,1,0 +2013,6,14,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2041,0,0,2308,-6,0,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,31,1,1850,53,1,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,-5,0,2104,-15,0,0 +2013,5,9,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,639,-4,0,809,-10,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1424,10,0,2259,13,0,0 +2013,9,17,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1140,-11,0,1343,-19,0,0 +2013,8,16,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,1,0,1705,1,0,0 +2013,9,3,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-9,0,2050,-6,0,0 +2013,5,23,4,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,800,15,1,929,20,1,0 +2013,4,2,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,959,-4,0,1220,-8,0,0 +2013,9,6,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1449,-7,0,1750,-44,0,0 +2013,8,29,4,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1700,0,0,1845,-7,0,0 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-2,0,1205,-18,0,0 +2013,9,30,1,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,947,-1,0,1259,-12,0,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1322,63,1,1410,76,1,0 +2013,6,28,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,920,3,0,1240,-2,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1203,-1,0,1330,-7,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1345,-2,0,1450,-14,0,0 +2013,8,26,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2010,50,1,2134,52,1,0 +2013,5,26,7,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1855,-9,0,2240,-25,0,0 +2013,4,19,5,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,700,39,1,823,43,1,0 +2013,10,22,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1327,-7,0,1429,-19,0,0 +2013,7,1,1,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-2,0,1526,69,1,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-4,0,1112,-28,0,0 +2013,7,19,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-7,0,1921,-8,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,725,0,,906,0,1,1 +2013,4,5,5,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1500,4,0,1735,2,0,0 +2013,8,31,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1210,-1,0,1320,-9,0,0 +2013,4,13,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1757,-4,0,1941,-9,0,0 +2013,5,24,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,15,1,2005,0,0,0 +2013,4,13,6,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2329,-1,0,511,2,0,0 +2013,4,26,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,945,17,1,1125,64,1,0 +2013,9,22,7,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,725,-5,0,754,-18,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1758,6,0,2042,14,0,0 +2013,5,16,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,146,1,2110,149,1,0 +2013,6,11,2,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1400,11,0,1450,5,0,0 +2013,8,24,6,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,-4,0,2000,-20,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,745,24,1,930,36,1,0 +2013,9,23,1,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1835,-9,0,2120,-16,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,25,1,1320,25,1,0 +2013,5,23,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,6,0,1507,14,0,0 +2013,9,11,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,840,-4,0,1108,-18,0,0 +2013,6,4,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-10,0,2025,-10,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1150,-5,0,1337,-11,0,0 +2013,7,15,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,641,-7,0,800,-14,0,0 +2013,7,11,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1641,3,0,1941,-2,0,0 +2013,6,30,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,15,1,2025,15,1,0 +2013,4,3,3,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1457,10,0,1618,14,0,0 +2013,10,28,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1449,-4,0,1655,3,0,0 +2013,6,12,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1046,-3,0,1327,-14,0,0 +2013,9,30,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1746,-5,0,2012,-3,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,1,0,1245,15,1,0 +2013,8,8,4,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,7,0,2110,3,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,7,0,1155,-1,0,0 +2013,9,2,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-7,0,1215,-26,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1545,-5,0,1850,-10,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1640,3,0,1800,-1,0,0 +2013,8,1,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1331,-4,0,1406,-4,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2146,4,0,15,-10,0,0 +2013,4,21,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1017,-4,0,1559,12,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,800,-6,0,925,-8,0,0 +2013,7,19,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,1125,7,0,0 +2013,8,10,6,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1045,192,1,1614,205,1,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,815,-2,0,922,-9,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1635,24,1,1910,-5,0,0 +2013,10,22,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-8,0,1520,-3,0,0 +2013,9,20,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1710,-3,0,1850,-29,0,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2110,27,1,2238,37,1,0 +2013,10,9,3,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1800,-2,0,2008,-17,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2025,43,1,2305,75,1,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1315,0,0,1500,-3,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1805,4,0,2005,-3,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1515,-22,0,0 +2013,9,6,5,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1827,-7,0,1900,-15,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,625,-3,0,740,-1,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,803,-2,0,1041,-20,0,0 +2013,8,16,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,620,-4,0,1215,1,0,0 +2013,10,30,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2014,-11,0,2104,-14,0,0 +2013,7,1,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,605,0,0,720,-4,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1042,22,1,1215,7,0,0 +2013,4,23,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,729,-5,0,854,6,0,0 +2013,8,10,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-4,0,151,-4,0,0 +2013,9,15,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,2030,4,0,17,-10,0,0 +2013,8,16,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-2,0,925,-16,0,0 +2013,6,22,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2040,-9,0,2205,-27,0,0 +2013,6,27,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1744,41,1,2009,42,1,0 +2013,9,25,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,4,0,2155,-2,0,0 +2013,6,21,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,915,11,0,1655,7,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,-2,0,1440,-6,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1750,35,1,1905,30,1,0 +2013,6,30,7,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1710,11,0,1925,-1,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1640,4,0,2010,3,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1250,23,1,1416,45,1,0 +2013,5,19,7,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1654,14,0,1759,9,0,0 +2013,10,4,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,-5,0,1725,-14,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,0,0,2125,-5,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-1,0,1347,6,0,0 +2013,8,26,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2034,-9,0,2221,-13,0,0 +2013,8,30,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-6,0,1859,1,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,5,0,2139,-8,0,0 +2013,5,23,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1027,-4,0,1105,-6,0,0 +2013,10,20,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1651,-8,0,1834,-3,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2035,108,1,2331,116,1,0 +2013,9,21,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,40,1,1310,44,1,0 +2013,10,16,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-1,0,1110,2,0,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1935,1,0,2240,-7,0,0 +2013,10,17,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-3,0,1047,-14,0,0 +2013,5,21,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,56,-8,0,607,-24,0,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,955,-6,0,1125,-5,0,0 +2013,7,14,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,741,-10,0,830,-15,0,0 +2013,6,16,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,0,0,1921,-8,0,0 +2013,5,8,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1035,7,0,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,30,1,1435,25,1,0 +2013,7,13,6,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1700,-5,0,1809,85,1,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1320,6,0,1545,7,0,0 +2013,4,12,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,55,0,0,604,-6,0,0 +2013,5,13,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,2140,1,0,2350,8,0,0 +2013,6,1,6,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2035,-2,0,2146,-12,0,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,2,0,820,-7,0,0 +2013,6,21,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,-1,0,1735,-11,0,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,24,1,1046,48,1,0 +2013,10,8,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1055,-5,0,1224,-6,0,0 +2013,8,7,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,940,-4,0,1110,-10,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1057,0,0,1531,-27,0,0 +2013,7,10,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,830,20,1,850,23,1,0 +2013,6,20,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1706,46,1,2111,35,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1925,-6,0,2001,-21,0,0 +2013,5,31,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,810,-9,0,0 +2013,9,24,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1824,-4,0,2137,-22,0,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1230,2,0,1350,-3,0,0 +2013,5,5,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2130,118,1,2353,132,1,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-10,0,1047,-16,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1335,0,,1435,0,1,1 +2013,9,6,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1115,-4,0,1340,-4,0,0 +2013,9,20,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-4,0,1811,1,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,15,1,1230,-4,0,0 +2013,9,23,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-4,0,1845,-12,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-4,0,1122,-7,0,0 +2013,8,8,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,-8,0,1035,-2,0,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1050,7,0,1904,1,0,0 +2013,5,29,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,-4,0,1945,-3,0,0 +2013,5,25,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-2,0,745,-11,0,0 +2013,7,3,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,70,1,2155,60,1,0 +2013,4,3,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-6,0,1335,-1,0,0 +2013,8,11,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-4,0,1225,-8,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1005,5,0,1525,-12,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2148,18,1,2355,15,1,0 +2013,6,2,7,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,659,21,1,1040,22,1,0 +2013,9,29,7,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1120,-3,0,1638,-13,0,0 +2013,8,15,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,3,0,1204,1,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1504,12,0,1719,1,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,710,0,0,952,-27,0,0 +2013,8,2,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,115,-4,0,533,11,0,0 +2013,5,20,1,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,5,0,1405,-6,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1800,17,1,2052,7,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,1,0,15,-1,0,0 +2013,9,7,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1124,-1,0,1305,-12,0,0 +2013,4,13,6,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1800,0,0,2235,16,1,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,600,-1,0,920,-5,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1810,-1,0,2008,2,0,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2100,23,1,2212,16,1,0 +2013,10,24,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,1,0,2053,-11,0,0 +2013,7,4,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-5,0,1254,-25,0,0 +2013,4,27,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-7,0,955,-13,0,0 +2013,5,19,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1015,-3,0,1210,-4,0,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,0,0,839,-2,0,0 +2013,8,10,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-2,0,1450,-27,0,0 +2013,5,12,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-5,0,1750,-6,0,0 +2013,9,6,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1135,3,0,1230,-5,0,0 +2013,5,5,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-1,0,1855,-10,0,0 +2013,5,17,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,-1,0,1553,-13,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,-5,0,2138,-12,0,0 +2013,8,28,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1325,2,0,1450,1,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,83,1,2125,71,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1216,1,0,1408,2,0,0 +2013,4,2,2,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1545,-1,0,1730,0,0,0 +2013,6,11,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-6,0,1410,-17,0,0 +2013,7,15,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,6,0,2115,-19,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,845,-6,0,922,-10,0,0 +2013,6,16,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1425,0,0,1530,-2,0,0 +2013,5,1,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1246,-4,0,0 +2013,6,17,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1405,5,0,1510,17,1,0 +2013,7,21,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-1,0,1428,-6,0,0 +2013,5,27,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,162,1,1645,135,1,0 +2013,8,21,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2325,2,0,525,0,0,0 +2013,10,10,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2010,43,1,2247,42,1,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1715,4,0,2230,-15,0,0 +2013,6,27,4,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-3,0,1810,-14,0,0 +2013,10,15,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1625,2,0,1932,13,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1635,10,0,1750,-16,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,850,-2,0,1659,-32,0,0 +2013,10,3,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,2,0,935,1,0,0 +2013,6,11,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1915,-1,0,2211,-40,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,17,1,1748,19,1,0 +2013,9,1,7,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1745,-2,0,1755,-9,0,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-2,0,1250,-21,0,0 +2013,10,16,3,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-9,0,1616,-11,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1050,-4,0,1152,31,1,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,0,0,812,9,0,0 +2013,10,30,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,645,-2,0,815,-22,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,1,0,915,0,0,0 +2013,8,12,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1200,2,0,2030,-32,0,0 +2013,6,23,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,65,1,1925,58,1,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-5,0,2011,-18,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,0,0,950,-8,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,20,1,2205,27,1,0 +2013,4,19,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,-2,0,1855,-8,0,0 +2013,9,25,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1900,-10,0,2149,-27,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1052,-1,0,1144,-17,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,-3,0,1015,-1,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,68,1,925,68,1,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1950,10,0,2233,3,0,0 +2013,5,8,3,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,5,0,1520,1,0,0 +2013,9,30,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1340,-6,0,1459,-15,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1420,48,1,2205,55,1,0 +2013,5,22,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,807,-6,0,921,-11,0,0 +2013,7,7,7,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1500,5,0,1626,-3,0,0 +2013,6,28,5,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,13,0,840,9,0,0 +2013,4,28,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,5,0,1232,13,0,0 +2013,5,12,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1345,-4,0,1515,-21,0,0 +2013,6,7,5,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-4,0,1415,-8,0,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,954,5,0,1310,14,0,0 +2013,7,22,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,3,0,2155,-12,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1535,-3,0,1655,-9,0,0 +2013,10,2,3,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,745,-1,0,950,-20,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1732,38,1,2015,21,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-1,0,1846,7,0,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,815,-4,0,957,-25,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1449,-3,0,1629,-2,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2210,-1,0,2355,-19,0,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1738,23,1,1935,18,1,0 +2013,8,23,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,955,1,0,1110,9,0,0 +2013,10,21,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1509,-5,0,1919,-30,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,705,-1,0,1115,-3,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2015,-6,0,2105,-13,0,0 +2013,10,20,7,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,655,1,0,845,-12,0,0 +2013,9,2,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,14,0,1845,7,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2110,6,0,2252,-1,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2000,-2,0,2208,0,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,916,11,0,1123,0,0,0 +2013,6,10,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,42,1,1912,32,1,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1750,41,1,2045,68,1,0 +2013,10,24,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,600,10,0,738,20,1,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,6,0,2235,-7,0,0 +2013,8,16,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,-6,0,1917,-7,0,0 +2013,9,13,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-5,0,1340,-17,0,0 +2013,5,12,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,-12,0,1155,-12,0,0 +2013,10,30,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1700,12,0,1800,5,0,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1529,-3,0,1746,-5,0,0 +2013,7,23,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1740,18,1,1905,36,1,0 +2013,4,22,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,8,0,1516,23,1,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,120,1,2025,113,1,0 +2013,5,16,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,854,-5,0,1310,1,0,0 +2013,6,12,3,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1553,-8,0,1748,-33,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1553,-4,0,1740,-24,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,1,0,1135,-2,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-2,0,2105,-25,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2219,-5,0,11,-6,0,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,-2,0,1542,-21,0,0 +2013,10,2,3,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-4,0,1735,-24,0,0 +2013,6,27,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1405,43,1,1455,42,1,0 +2013,7,12,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1157,-4,0,1438,-5,0,0 +2013,9,20,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2114,-3,0,542,-28,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,0,,1758,0,1,1 +2013,7,8,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1415,76,1,1549,72,1,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1540,-1,0,1655,3,0,0 +2013,9,18,3,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,545,-2,0,730,2,0,0 +2013,10,8,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-5,0,1055,-35,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,76,1,2055,58,1,0 +2013,7,1,1,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1735,0,0,1755,-1,0,0 +2013,10,4,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-1,0,1833,-26,0,0 +2013,4,21,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,600,-1,0,853,-18,0,0 +2013,5,29,3,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,609,-4,0,1150,-18,0,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1400,2,0,1945,-2,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,53,1,2145,50,1,0 +2013,4,2,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,2146,-5,0,2323,-19,0,0 +2013,10,9,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1355,-6,0,1615,-10,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-6,0,2105,-3,0,0 +2013,4,28,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,505,-2,0,923,-8,0,0 +2013,7,29,1,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1912,-2,0,2140,26,1,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1055,-5,0,1411,-6,0,0 +2013,9,12,4,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1538,-6,0,1720,1,0,0 +2013,9,5,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-8,0,1225,-17,0,0 +2013,4,26,5,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,2110,19,1,2250,13,0,0 +2013,6,23,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-9,0,1618,26,1,0 +2013,9,11,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1835,25,1,1940,22,1,0 +2013,6,10,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,810,-8,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,811,-7,0,1027,-5,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,-6,0,1022,-4,0,0 +2013,5,7,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,0,0,1405,-1,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,849,0,0,1634,5,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,830,-5,0,1000,1,0,0 +2013,4,17,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-8,0,759,-15,0,0 +2013,8,14,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1247,-3,0,2122,-7,0,0 +2013,4,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1250,0,0,1520,1,0,0 +2013,10,25,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1748,9,0,2010,10,0,0 +2013,5,24,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1450,-11,0,2320,-18,0,0 +2013,7,28,7,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1035,-5,0,1300,-9,0,0 +2013,6,1,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,10,0,2145,-8,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,-3,0,1445,-14,0,0 +2013,4,30,2,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1510,0,0,655,30,1,0 +2013,4,8,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,29,1,2100,21,1,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1815,1,0,1910,-6,0,0 +2013,10,20,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2125,-7,0,2358,-1,0,0 +2013,7,22,1,EV,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1848,0,,2049,0,1,1 +2013,7,28,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,841,-17,0,0 +2013,6,9,7,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,915,-2,0,1205,-11,0,0 +2013,4,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1630,1,0,1945,-7,0,0 +2013,4,25,4,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1153,-7,0,1355,-7,0,0 +2013,4,25,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1950,-4,0,2120,-6,0,0 +2013,5,11,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-2,0,1035,-12,0,0 +2013,6,22,6,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,4,0,2127,-20,0,0 +2013,7,31,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,59,1,1351,64,1,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,810,-7,0,1020,-2,0,0 +2013,10,29,2,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,853,-12,0,1023,-20,0,0 +2013,7,30,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,-6,0,1220,0,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1745,5,0,1935,-9,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,845,17,1,1040,6,0,0 +2013,4,8,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1635,4,0,1805,-16,0,0 +2013,8,1,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1302,155,1,1418,157,1,0 +2013,8,25,7,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-4,0,550,0,0,0 +2013,8,28,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1241,-3,0,1423,37,1,0 +2013,9,19,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,-1,0,1434,-14,0,0 +2013,5,18,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-11,0,1208,-21,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2120,35,1,2300,18,1,0 +2013,9,12,4,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,858,-7,0,1039,11,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,800,0,0,1230,-3,0,0 +2013,4,9,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1245,11,0,1355,2,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1330,-6,0,1459,-19,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1025,37,1,1422,46,1,0 +2013,8,6,2,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-5,0,2040,-4,0,0 +2013,9,18,3,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1710,-6,0,1930,-14,0,0 +2013,8,30,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-7,0,903,13,0,0 +2013,6,26,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1131,-6,0,1305,-11,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-1,0,1810,4,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,16,1,2045,28,1,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1815,1,0,1945,5,0,0 +2013,6,2,7,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1540,21,1,1720,14,0,0 +2013,4,12,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,832,22,1,0 +2013,5,19,7,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,813,5,0,1050,-15,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1210,0,0,1530,-18,0,0 +2013,8,25,7,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1400,-5,0,1637,-7,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1540,-1,0,2300,-4,0,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,938,-6,0,1752,-35,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1210,-3,0,1301,-3,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1805,39,1,2240,23,1,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,804,8,0,932,-8,0,0 +2013,10,16,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,815,-13,0,0 +2013,4,6,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,-13,0,1555,-38,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,2150,18,1,2343,24,1,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2234,-3,0,30,-18,0,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1000,3,0,1306,-6,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,1154,-18,0,0 +2013,5,16,4,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1252,93,1,1412,84,1,0 +2013,9,11,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,715,0,0,810,-4,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1339,-2,0,1524,-12,0,0 +2013,5,28,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1703,0,,1848,0,1,1 +2013,6,19,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-7,0,1250,-21,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1910,21,1,2145,8,0,0 +2013,8,14,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,-4,0,543,-2,0,0 +2013,4,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-7,0,1635,9,0,0 +2013,5,15,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,902,-4,0,0 +2013,10,9,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,844,-5,0,1108,-12,0,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1004,0,0,1539,-13,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,8,0,104,15,1,0 +2013,7,13,6,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-9,0,1220,4,0,0 +2013,8,2,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,0,0,1325,-19,0,0 +2013,4,15,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1330,3,0,1450,-1,0,0 +2013,4,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1520,-3,0,1624,-20,0,0 +2013,5,31,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,952,1,0,1207,-10,0,0 +2013,10,9,3,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1640,-6,0,1834,-33,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,4,0,1446,-8,0,0 +2013,7,1,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2000,-9,0,2135,-29,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2005,28,1,2105,31,1,0 +2013,8,15,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1845,6,0,2025,9,0,0 +2013,10,7,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1315,-8,0,1520,-18,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,-6,0,1230,-10,0,0 +2013,8,15,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1035,7,0,1205,-5,0,0 +2013,7,14,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,720,-11,0,0 +2013,9,5,4,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,-6,0,1847,-8,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1425,-4,0,1551,-7,0,0 +2013,6,26,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,-3,0,1821,-6,0,0 +2013,10,29,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-4,0,1420,-8,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1618,-9,0,2004,-31,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,-7,0,1255,-12,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,29,1,2305,27,1,0 +2013,7,24,3,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,1635,-3,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-2,0,910,-5,0,0 +2013,7,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1738,74,1,1958,77,1,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,7,0,1920,-3,0,0 +2013,7,28,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1301,-7,0,2054,-26,0,0 +2013,5,1,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-7,0,1245,-11,0,0 +2013,9,15,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1545,5,0,1820,5,0,0 +2013,7,27,6,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1935,49,1,2115,65,1,0 +2013,5,26,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1620,1,0,1835,1,0,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,2,0,1240,-25,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,0,0,1826,0,0,0 +2013,7,12,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,14,0,609,30,1,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1600,-1,0,1713,43,1,0 +2013,5,24,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-7,0,1520,-6,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-11,0,2219,-14,0,0 +2013,10,20,7,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,932,-7,0,1130,-14,0,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1052,-4,0,1318,-1,0,0 +2013,7,1,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-7,0,828,-28,0,0 +2013,7,6,6,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,-4,0,1645,-2,0,0 +2013,6,10,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,740,-4,0,855,-9,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1812,-3,0,1941,79,1,0 +2013,9,26,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1641,-2,0,1930,-18,0,0 +2013,7,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1123,9,0,1142,15,1,0 +2013,8,16,5,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,758,-4,0,1009,0,0,0 +2013,10,3,4,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,38,1,1735,29,1,0 +2013,10,17,4,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,915,-4,0,1255,-22,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,70,1,1025,63,1,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,830,-2,0,1122,-28,0,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1355,6,0,1955,19,1,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1942,68,1,112,81,1,0 +2013,8,2,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,9,0,1835,5,0,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1420,-3,0,1603,-16,0,0 +2013,10,28,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1235,59,1,1403,67,1,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1935,33,1,2052,8,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1140,1,0,1620,1,0,0 +2013,8,29,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1850,32,1,2130,28,1,0 +2013,8,20,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1411,6,0,1702,-11,0,0 +2013,8,22,4,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,1010,-5,0,0 +2013,9,8,7,UA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,739,-6,0,849,10,0,0 +2013,10,10,4,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,-2,0,2300,-2,0,0 +2013,8,28,3,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1810,-2,0,1920,-11,0,0 +2013,9,24,2,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1530,17,1,1710,16,1,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1400,30,1,1450,25,1,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,149,1,2331,139,1,0 +2013,4,11,4,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1429,-5,0,1615,-8,0,0 +2013,6,11,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,-8,0,2045,-4,0,0 +2013,10,3,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1555,6,0,1635,8,0,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2110,-8,0,2208,2,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1435,-1,0,1625,0,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-3,0,1513,-8,0,0 +2013,4,14,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1545,-3,0,1655,2,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1240,6,0,1420,-9,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-10,0,840,4,0,0 +2013,4,23,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1720,2,0,1939,2,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,1,0,1117,-3,0,0 +2013,8,12,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2159,19,1,2,29,1,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,119,1,1928,94,1,0 +2013,10,24,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,-7,0,2037,-15,0,0 +2013,6,6,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,-5,0,1405,-2,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1142,-4,0,1614,-13,0,0 +2013,5,10,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-9,0,1757,-3,0,0 +2013,7,29,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,709,17,1,755,9,0,0 +2013,8,14,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-8,0,1605,-8,0,0 +2013,6,9,7,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1601,-4,0,1804,-17,0,0 +2013,9,22,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1410,32,1,1515,44,1,0 +2013,9,11,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2050,-8,0,2301,-12,0,0 +2013,5,31,5,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1925,-9,0,51,-12,0,0 +2013,7,12,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1305,-1,0,1430,-6,0,0 +2013,10,3,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,-1,0,1409,-5,0,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1123,-8,0,1301,-15,0,0 +2013,6,23,7,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,-6,0,2133,-31,0,0 +2013,10,3,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-8,0,1512,-4,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2055,14,0,2220,11,0,0 +2013,6,19,3,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1417,-3,0,1604,-10,0,0 +2013,9,4,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1420,-2,0,1535,-8,0,0 +2013,9,4,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,740,-2,0,930,-7,0,0 +2013,8,10,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1415,16,1,1638,13,0,0 +2013,4,25,4,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2153,14,0,2312,12,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,50,1,1911,28,1,0 +2013,4,23,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1503,12,0,2324,0,0,0 +2013,7,29,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,520,14,0,642,-1,0,0 +2013,5,20,1,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,650,-3,0,940,-7,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2145,45,1,520,57,1,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-1,0,840,1,0,0 +2013,8,11,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,4,0,1500,-12,0,0 +2013,7,3,3,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,600,-1,0,730,-13,0,0 +2013,10,6,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,3,0,2025,5,0,0 +2013,8,29,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1730,22,1,2144,6,0,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1245,17,1,1850,-2,0,0 +2013,9,11,3,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1128,-10,0,1403,-13,0,0 +2013,8,22,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,5,0,1848,-3,0,0 +2013,6,11,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-1,0,1457,-10,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1333,-1,0,1447,-8,0,0 +2013,9,2,1,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1625,311,1,1928,283,1,0 +2013,5,2,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,-5,0,1135,-11,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2120,-2,0,2350,-3,0,0 +2013,9,18,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,940,-7,0,1155,-11,0,0 +2013,8,31,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,22,1,1800,2,0,0 +2013,5,17,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1355,9,0,2010,9,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,930,9,0,1130,12,0,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,-8,0,1737,-28,0,0 +2013,9,28,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,839,-3,0,909,-1,0,0 +2013,5,2,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2045,0,,2320,0,1,1 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1127,-4,0,1327,-7,0,0 +2013,5,18,6,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,4,0,1900,-7,0,0 +2013,6,17,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-5,0,805,-2,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,600,-3,0,930,-11,0,0 +2013,10,22,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1733,-8,0,1951,-28,0,0 +2013,4,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,12,0,1635,1,0,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1555,2,0,1810,-11,0,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-2,0,908,6,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1940,-6,0,2252,-12,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1845,-2,0,2010,-5,0,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1500,65,1,1940,70,1,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,845,-5,0,1610,-4,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,25,1,1755,25,1,0 +2013,5,11,6,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1440,0,0,1730,-13,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1346,116,1,1707,100,1,0 +2013,6,24,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-5,0,920,-17,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-2,0,1732,1,0,0 +2013,10,10,4,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,715,11,0,930,-1,0,0 +2013,4,8,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-2,0,959,-11,0,0 +2013,7,26,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-2,0,1734,-13,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1117,-2,0,1323,1,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2118,-3,0,33,-7,0,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1700,32,1,2000,35,1,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1630,14,0,1945,-11,0,0 +2013,8,20,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,4,0,1705,14,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-4,0,1306,-6,0,0 +2013,9,11,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,-11,0,2235,-18,0,0 +2013,7,20,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1255,0,0,1410,-2,0,0 +2013,7,9,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1440,-1,0,1629,-16,0,0 +2013,8,20,2,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1400,51,1,1525,65,1,0 +2013,8,26,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1825,-8,0,1934,-27,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1640,20,1,1825,12,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1735,-6,0,2205,-11,0,0 +2013,10,14,1,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,945,-1,0,1050,-3,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1625,25,1,1745,20,1,0 +2013,7,7,7,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,5,0,920,-2,0,0 +2013,8,29,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1440,10,0,1555,11,0,0 +2013,8,19,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1022,24,1,1254,16,1,0 +2013,4,9,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1823,-6,0,2025,-3,0,0 +2013,6,9,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,76,1,1820,52,1,0 +2013,7,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-3,0,1334,25,1,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,640,-2,0,856,-6,0,0 +2013,4,29,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1010,-2,0,1145,-3,0,0 +2013,4,17,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,-6,0,2325,-19,0,0 +2013,9,19,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1824,11,0,2137,9,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,625,-1,0,820,-7,0,0 +2013,7,17,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,0,0,1329,-5,0,0 +2013,8,21,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2200,15,1,2311,17,1,0 +2013,7,24,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-5,0,1934,-1,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,-2,0,1150,-10,0,0 +2013,4,6,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,1610,-1,0,1901,-12,0,0 +2013,8,19,1,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1704,-3,0,1931,-5,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-4,0,1020,-14,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1444,-4,0,2254,1,0,0 +2013,8,31,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,710,-2,0,1030,-11,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,16,1,930,7,0,0 +2013,6,3,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,841,-5,0,1054,-14,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1055,-3,0,1220,-14,0,0 +2013,10,16,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1100,11,0,1225,16,1,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,9,0,950,43,1,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,-3,0,2027,-8,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,855,-4,0,1129,8,0,0 +2013,5,4,6,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,832,-4,0,1017,4,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2110,-4,0,2230,-10,0,0 +2013,5,17,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-7,0,1800,1,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,630,0,0,920,-5,0,0 +2013,10,7,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1814,10,0,1958,0,0,0 +2013,8,21,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,845,-6,0,950,-3,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1830,12,0,2235,11,0,0 +2013,7,21,7,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1655,50,1,1923,105,1,0 +2013,7,8,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-9,0,1150,-5,0,0 +2013,6,8,6,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,0,0,1820,-5,0,0 +2013,4,25,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,3,0,1340,-16,0,0 +2013,7,17,3,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,10,0,1116,-6,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,25,1,2330,2,0,0 +2013,9,21,6,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,705,-2,0,935,6,0,0 +2013,5,22,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,77,1,1538,73,1,0 +2013,4,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1435,17,1,1810,12,0,0 +2013,8,4,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,950,17,1,1110,10,0,0 +2013,10,10,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1435,14,0,1450,12,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1653,3,0,1945,-32,0,0 +2013,4,11,4,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,2201,54,1,2314,64,1,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,-1,0,2249,-16,0,0 +2013,7,11,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,700,-3,0,750,-5,0,0 +2013,6,29,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,14,0,2025,12,0,0 +2013,7,13,6,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,809,-6,0,917,7,0,0 +2013,10,10,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1540,18,1,1830,12,0,0 +2013,6,18,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,625,-1,0,720,7,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,2,0,1539,25,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1545,-3,0,1713,-8,0,0 +2013,6,8,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1147,-3,0,1342,-15,0,0 +2013,4,29,1,YV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1719,-4,0,1840,-9,0,0 +2013,5,22,3,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1050,15,1,1258,4,0,0 +2013,9,7,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1658,14,0,1754,18,1,0 +2013,10,11,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,745,21,1,1029,4,0,0 +2013,6,25,2,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-3,0,1355,-16,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,740,-1,0,1025,-14,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1505,40,1,1820,31,1,0 +2013,10,29,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1215,-2,0,1523,6,0,0 +2013,5,13,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-5,0,2134,-23,0,0 +2013,5,1,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1121,17,1,1249,47,1,0 +2013,5,3,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-5,0,1223,0,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,838,-4,0,1002,-5,0,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,-2,0,2000,-8,0,0 +2013,9,15,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,840,-6,0,858,-4,0,0 +2013,4,5,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1710,14,0,1835,4,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1305,10,0,1455,-2,0,0 +2013,5,20,1,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,24,1,35,20,1,0 +2013,5,9,4,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1340,-7,0,1523,12,0,0 +2013,5,12,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-5,0,913,-37,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1125,7,0,1335,1,0,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1455,5,0,1740,-4,0,0 +2013,10,26,6,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,550,-6,0,732,-10,0,0 +2013,9,22,7,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1005,-6,0,1215,-13,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1620,80,1,1715,77,1,0 +2013,10,17,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-2,0,800,12,0,0 +2013,7,25,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,610,-6,0,1220,-8,0,0 +2013,8,13,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1534,87,1,1830,64,1,0 +2013,8,20,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,-1,0,2354,-11,0,0 +2013,10,4,5,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1240,-3,0,1610,-5,0,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,10,0,2125,9,0,0 +2013,8,18,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2330,0,0,711,-1,0,0 +2013,10,31,4,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1445,6,0,1710,27,1,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,166,1,1338,156,1,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,-7,0,1351,6,0,0 +2013,6,10,1,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,30,1,1934,21,1,0 +2013,9,15,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1224,-13,0,1430,-15,0,0 +2013,9,25,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-4,0,1213,-16,0,0 +2013,9,22,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1720,34,1,1859,25,1,0 +2013,7,30,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,530,-1,0,805,-4,0,0 +2013,8,6,2,UA,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,-8,0,918,-16,0,0 +2013,10,19,6,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1130,-8,0,1259,-7,0,0 +2013,4,14,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1040,-3,0,1320,-13,0,0 +2013,5,5,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1541,-1,0,1655,2,0,0 +2013,8,27,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1349,-8,0,1429,-9,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1444,28,1,1606,16,1,0 +2013,6,16,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-2,0,1859,-7,0,0 +2013,10,18,5,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,850,0,0,1255,-33,0,0 +2013,8,14,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1730,1,0,2005,-15,0,0 +2013,5,17,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,12,0,1130,12,0,0 +2013,8,21,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1839,32,1,1939,15,1,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,938,39,1,1217,37,1,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,19,1,2310,22,1,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1450,195,1,1730,211,1,0 +2013,5,10,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1355,19,1,1955,22,1,0 +2013,4,19,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1029,12,0,1135,18,1,0 +2013,8,18,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,0,0,1500,-5,0,0 +2013,6,14,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,72,1,2145,64,1,0 +2013,4,18,4,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-4,0,811,-1,0,0 +2013,5,21,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2230,20,1,2354,4,0,0 +2013,6,28,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1230,-1,0,1321,16,1,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1200,16,1,1335,1,0,0 +2013,5,7,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2155,-5,0,2315,0,0,0 +2013,9,8,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1330,1,0,1631,3,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,0,,1755,0,1,1 +2013,10,26,6,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1209,-2,0,1453,-2,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,1,0,2236,-9,0,0 +2013,6,11,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1020,23,1,1145,22,1,0 +2013,10,6,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,1,0,915,-3,0,0 +2013,6,12,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,23,1,1709,11,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,853,3,0,1115,-23,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,-2,0,2224,-15,0,0 +2013,9,30,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1100,-7,0,1355,-16,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,905,-2,0,1740,-30,0,0 +2013,8,31,6,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,2015,-4,0,2045,-10,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2155,-2,0,34,-3,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,36,1,1809,10,0,0 +2013,6,28,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,14,0,1440,1,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2050,42,1,2220,30,1,0 +2013,9,6,5,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1119,-5,0,1828,-17,0,0 +2013,6,10,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-2,0,1507,11,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1955,14,0,2310,-4,0,0 +2013,4,17,3,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1340,-2,0,1705,-16,0,0 +2013,9,6,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1215,1,0,1330,-8,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-4,0,2147,2,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1350,9,0,1555,-14,0,0 +2013,4,16,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1712,12,0,1926,-2,0,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,904,-6,0,1146,-17,0,0 +2013,4,17,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-6,0,647,-11,0,0 +2013,7,24,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-5,0,815,-1,0,0 +2013,7,22,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,615,-5,0,725,-3,0,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1305,28,1,1610,11,0,0 +2013,8,18,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,-3,0,2205,-13,0,0 +2013,10,1,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,-4,0,810,-3,0,0 +2013,8,25,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,0,0,850,-38,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1459,2,0,1705,-1,0,0 +2013,4,4,4,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1942,0,,2118,0,1,1 +2013,9,8,7,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-6,0,825,-3,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1730,-7,0,1956,-10,0,0 +2013,10,3,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1707,10,0,1925,9,0,0 +2013,8,20,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-9,0,1525,10,0,0 +2013,9,22,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,3,0,1605,1,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1805,23,1,1920,14,0,0 +2013,4,22,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,-6,0,724,-15,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2200,52,1,35,43,1,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1701,-2,0,1722,58,1,0 +2013,7,13,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2146,12,0,2204,5,0,0 +2013,4,28,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1925,0,0,2120,-16,0,0 +2013,5,2,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,714,1,0,924,-1,0,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1530,-1,0,1850,-18,0,0 +2013,9,12,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1455,-1,0,1654,-5,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1155,9,0,1407,6,0,0 +2013,7,4,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,0,0,735,-1,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1525,2,0,2000,-7,0,0 +2013,5,29,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,630,0,0,645,-10,0,0 +2013,6,29,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1550,-1,0,1645,-4,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,-4,0,920,-3,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-3,0,1620,5,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,912,-5,0,1521,-23,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-4,0,2323,-7,0,0 +2013,9,16,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,11,0,1805,9,0,0 +2013,10,12,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1916,11,0,2225,-12,0,0 +2013,5,29,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-3,0,1926,8,0,0 +2013,4,26,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1900,-3,0,2010,-11,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2000,48,1,2328,51,1,0 +2013,8,3,6,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2338,55,1,717,47,1,0 +2013,10,9,3,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,-7,0,740,-17,0,0 +2013,6,22,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1825,-4,0,1956,-9,0,0 +2013,7,1,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1545,25,1,1710,10,0,0 +2013,4,4,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,6,0,1656,30,1,0 +2013,5,17,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,854,-5,0,1310,-13,0,0 +2013,5,22,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1832,-2,0,2235,-2,0,0 +2013,8,6,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,835,-7,0,1100,-27,0,0 +2013,4,6,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-3,0,1005,-11,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,620,1,0,820,1,0,0 +2013,5,25,6,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,40,1,1430,25,1,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,910,-4,0,1035,-2,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,1,0,1530,-4,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1900,17,1,2145,-5,0,0 +2013,6,8,6,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,715,0,0,1000,6,0,0 +2013,10,24,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1200,-1,0,1340,-33,0,0 +2013,7,17,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1513,-6,0,0 +2013,9,27,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1704,-8,0,2314,-4,0,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1351,0,0,1516,-9,0,0 +2013,4,25,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,605,-3,0,1203,-26,0,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,-2,0,917,1,0,0 +2013,6,5,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1755,12,0,2016,3,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1907,-6,0,2244,-36,0,0 +2013,5,3,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-11,0,2125,-27,0,0 +2013,8,15,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1930,32,1,2015,25,1,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-5,0,1607,-4,0,0 +2013,8,11,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,12,0,654,-11,0,0 +2013,10,30,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2106,7,0,14,-19,0,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1720,18,1,2010,-6,0,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,620,3,0,1230,6,0,0 +2013,9,3,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,820,-5,0,1042,-18,0,0 +2013,7,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-7,0,1514,-18,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1802,69,1,2056,87,1,0 +2013,8,3,6,EV,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,18,1,1254,3,0,0 +2013,7,22,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,28,1,1843,29,1,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,56,1,2204,63,1,0 +2013,9,28,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1005,-1,0,1145,-17,0,0 +2013,7,7,7,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,934,-3,0,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1916,-4,0,2214,-27,0,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1340,-5,0,1600,-7,0,0 +2013,6,26,3,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,0,0,1019,-27,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,-2,0,25,-17,0,0 +2013,4,6,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1112,-7,0,1857,-8,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,600,11,0,915,11,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1815,33,1,1935,31,1,0 +2013,9,14,6,F9,11292,Denver International,Denver,CO,14635,Southwest Florida International,Fort Myers,FL,1105,8,0,1644,-4,0,0 +2013,6,13,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,-2,0,730,-11,0,0 +2013,5,30,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-6,0,1344,-7,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1940,7,0,2030,7,0,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1500,-2,0,1655,-27,0,0 +2013,7,2,2,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1020,-1,0,1200,-16,0,0 +2013,6,13,4,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1348,146,1,1644,141,1,0 +2013,8,11,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1035,0,0,1140,2,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2225,-5,0,2347,-12,0,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,600,-5,0,900,-20,0,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,29,1,1344,32,1,0 +2013,8,4,7,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,1,0,2047,24,1,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,-1,0,1600,-14,0,0 +2013,10,15,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,46,1,1945,42,1,0 +2013,9,24,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1218,-7,0,1446,-15,0,0 +2013,7,24,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,705,-6,0,1524,-9,0,0 +2013,5,13,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1049,-3,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,640,6,0,924,-5,0,0 +2013,5,23,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-2,0,1115,-5,0,0 +2013,5,17,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,830,0,0,1025,-1,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,-2,0,1402,-15,0,0 +2013,10,7,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,19,1,1723,25,1,0 +2013,9,18,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,705,-5,0,910,-18,0,0 +2013,8,29,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,6,0,945,-20,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,2005,18,1,2220,25,1,0 +2013,10,10,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,837,-2,0,1029,-21,0,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,845,-2,0,1205,-9,0,0 +2013,8,17,6,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1401,-8,0,1440,-11,0,0 +2013,9,20,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,1155,-10,0,0 +2013,8,7,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,835,19,1,1105,26,1,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-3,0,1829,-11,0,0 +2013,10,11,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1059,-5,0,1312,-3,0,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1916,10,0,2214,20,1,0 +2013,10,1,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,625,-2,0,725,-8,0,0 +2013,10,18,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1900,20,1,2025,10,0,0 +2013,7,8,1,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1155,-3,0,1455,-22,0,0 +2013,9,12,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,25,1,1705,19,1,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,635,-4,0,800,-8,0,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1247,-1,0,1835,6,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,1,0,2352,-17,0,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,4,0,2050,3,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1430,38,1,1720,17,1,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,34,1,2005,18,1,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1725,6,0,1820,10,0,0 +2013,8,6,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,-3,0,820,-13,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,633,57,1,928,33,1,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-1,0,815,-9,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,-2,0,1015,-15,0,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1906,-5,0,1958,-15,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1045,18,1,1203,-2,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-3,0,1735,-9,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1625,2,0,1730,-6,0,0 +2013,10,21,1,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,755,1,0,1558,-10,0,0 +2013,7,14,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1805,20,1,1905,19,1,0 +2013,7,1,1,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,803,1,0,937,3,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1835,101,1,2010,86,1,0 +2013,10,5,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,15,1,1230,7,0,0 +2013,7,28,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,4,0,1931,33,1,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2055,40,1,2315,40,1,0 +2013,10,30,3,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1850,-6,0,2139,7,0,0 +2013,4,17,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,12,0,2305,10,0,0 +2013,5,9,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-3,0,1131,-7,0,0 +2013,4,10,3,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,600,0,0,903,-2,0,0 +2013,8,19,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,-2,0,1625,8,0,0 +2013,4,12,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1358,75,1,1559,45,1,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2010,0,0,2245,-13,0,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1140,1,0,1245,-13,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,-2,0,2059,-6,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,-6,0,1449,9,0,0 +2013,8,16,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-5,0,938,5,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1835,1,0,1930,-10,0,0 +2013,10,10,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-5,0,809,0,0,0 +2013,5,5,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,740,2,0,1230,-5,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,2000,4,0,2217,5,0,0 +2013,7,5,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-9,0,1005,-17,0,0 +2013,6,4,2,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,2,0,935,-1,0,0 +2013,6,11,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,0,0,1930,24,1,0 +2013,6,10,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1525,5,0,1650,-10,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,5,0,1915,7,0,0 +2013,7,15,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,-7,0,1421,4,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,835,-2,0,940,-9,0,0 +2013,4,21,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1817,-4,0,1854,-1,0,0 +2013,5,22,3,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1710,-13,0,1938,-9,0,0 +2013,10,6,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1355,-5,0,1636,-6,0,0 +2013,7,14,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,750,3,0,1115,-5,0,0 +2013,4,29,1,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,854,-7,0,1040,-6,0,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,910,-4,0,1135,-17,0,0 +2013,10,23,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1540,9,0,1715,14,0,0 +2013,7,24,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1020,0,0,1225,1,0,0 +2013,4,28,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,-3,0,2100,13,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,850,13,0,1020,6,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,151,1,1539,145,1,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1920,15,1,2252,12,0,0 +2013,7,31,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-4,0,2000,-7,0,0 +2013,7,26,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-5,0,755,2,0,0 +2013,4,23,2,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1932,0,0,2154,-7,0,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1156,2,0,1438,-9,0,0 +2013,10,22,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,739,28,1,845,25,1,0 +2013,9,26,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1038,0,0,1436,-10,0,0 +2013,4,16,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1355,17,1,1527,-3,0,0 +2013,8,19,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,800,-4,0,940,-13,0,0 +2013,9,24,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1915,10,0,2035,23,1,0 +2013,5,15,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1215,7,0,1445,-14,0,0 +2013,10,22,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1630,0,0,1855,21,1,0 +2013,8,28,3,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,2005,-6,0,2130,-10,0,0 +2013,7,11,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1415,-9,0,1644,-23,0,0 +2013,4,30,2,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,65,1,1836,25,1,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1552,11,0,1829,12,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,610,0,0,908,-13,0,0 +2013,4,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1940,17,1,2112,6,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1225,15,1,1345,18,1,0 +2013,7,8,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1430,37,1,1810,43,1,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,-4,0,2235,-31,0,0 +2013,5,22,3,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,0,0,2027,-5,0,0 +2013,9,27,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-4,0,849,-8,0,0 +2013,10,22,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1425,9,0,1721,4,0,0 +2013,4,4,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1656,12,0,1855,1,0,0 +2013,10,1,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-5,0,1201,-18,0,0 +2013,7,13,6,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,610,-4,0,738,-5,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,37,1,1949,38,1,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,11,0,1820,1,0,0 +2013,9,12,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,13,0,1410,0,0,0 +2013,8,13,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,-1,0,1920,5,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1730,3,0,1925,-5,0,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-7,0,1000,-16,0,0 +2013,8,12,1,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,15,1,1529,18,1,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,0,,2255,0,1,1 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2015,-1,0,2229,15,1,0 +2013,7,30,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2101,30,1,100,16,1,0 +2013,7,5,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,18,1,2054,30,1,0 +2013,9,27,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,-1,0,1155,-1,0,0 +2013,7,14,7,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1515,0,0,1650,-7,0,0 +2013,10,26,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,810,-5,0,0 +2013,5,18,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,-6,0,1828,-13,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,-3,0,1435,-14,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1020,-9,0,1159,-20,0,0 +2013,6,27,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-3,0,2048,20,1,0 +2013,10,6,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-5,0,651,-8,0,0 +2013,9,10,2,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,745,26,1,1541,37,1,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,-1,0,2209,-16,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,0,,825,0,1,1 +2013,9,13,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-2,0,2355,-11,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,21,1,2315,14,0,0 +2013,7,17,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2059,40,1,2322,48,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1205,-3,0,1320,-10,0,0 +2013,5,2,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1025,1,0,1100,-4,0,0 +2013,6,5,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1630,-5,0,2205,-4,0,0 +2013,4,1,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1011,10,0,1221,-4,0,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-2,0,1250,-5,0,0 +2013,7,16,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,825,-4,0,1547,5,0,0 +2013,6,22,6,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-3,0,825,6,0,0 +2013,10,17,4,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1650,-8,0,1659,-18,0,0 +2013,9,6,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-7,0,1822,0,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,-6,0,1515,-27,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1320,30,1,1505,1,0,0 +2013,8,29,4,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,-3,0,2035,-21,0,0 +2013,10,28,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1845,-7,0,2153,-27,0,0 +2013,10,8,2,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1749,-9,0,1920,-5,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2230,1,0,702,-14,0,0 +2013,8,17,6,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1101,-2,0,1658,-14,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1345,11,0,1523,0,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1103,2,0,1426,-14,0,0 +2013,6,18,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1332,-3,0,0 +2013,4,10,3,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1125,-11,0,1958,6,0,0 +2013,4,15,1,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1720,99,1,2209,67,1,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1550,0,0,1810,-2,0,0 +2013,8,26,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1550,-3,0,1825,-11,0,0 +2013,8,21,3,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1249,0,0,1535,8,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1815,-1,0,2106,-2,0,0 +2013,5,27,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1340,72,1,1503,80,1,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1023,-2,0,1136,-12,0,0 +2013,6,27,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,-4,0,1315,-9,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1745,73,1,1855,72,1,0 +2013,8,2,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-1,0,1501,-6,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1355,39,1,1615,37,1,0 +2013,4,26,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,905,-2,0,1032,-17,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1235,15,1,1640,15,1,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1550,21,1,1748,13,0,0 +2013,5,9,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1540,62,1,1735,49,1,0 +2013,5,17,5,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1830,-1,0,1905,-10,0,0 +2013,7,19,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,-5,0,2105,-6,0,0 +2013,5,13,1,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,25,1,900,-11,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1540,-2,0,1845,1,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1545,1,0,1630,-2,0,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-2,0,841,-19,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,8,0,2048,1,0,0 +2013,6,21,5,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1515,9,0,1800,-2,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1050,3,0,1325,-17,0,0 +2013,4,9,2,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,646,-7,0,812,-10,0,0 +2013,6,23,7,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1904,14,0,2150,-1,0,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,950,18,1,1040,25,1,0 +2013,7,30,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,635,169,1,805,184,1,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1010,38,1,1140,34,1,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,755,5,0,925,-5,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1130,-4,0,0 +2013,5,16,4,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-1,0,2145,3,0,0 +2013,7,30,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,50,1,1914,41,1,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,-1,0,1530,2,0,0 +2013,5,5,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,720,-13,0,1152,-27,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1735,-2,0,1938,-3,0,0 +2013,8,11,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,6,0,1425,-6,0,0 +2013,8,5,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1349,24,1,1937,5,0,0 +2013,8,1,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,10,0,1250,1,0,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1140,-9,0,1305,-7,0,0 +2013,8,20,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,650,-1,0,800,-15,0,0 +2013,5,6,1,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-10,0,902,-20,0,0 +2013,5,10,5,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,27,1,1010,11,0,0 +2013,6,24,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1355,6,0,2206,0,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,-2,0,2345,6,0,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-5,0,1809,0,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2125,-2,0,2251,-6,0,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1636,11,0,2000,17,1,0 +2013,4,17,3,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1850,28,1,2340,18,1,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1320,-1,0,1650,-37,0,0 +2013,8,3,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,645,-2,0,755,0,0,0 +2013,6,30,7,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1620,-4,0,1840,-8,0,0 +2013,10,22,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1725,-10,0,1900,-25,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1959,129,1,2110,105,1,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1400,-3,0,1725,-13,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,9,0,1149,-7,0,0 +2013,5,22,3,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1300,0,0,1430,-3,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,840,8,0,1405,1,0,0 +2013,5,26,7,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-5,0,1545,-5,0,0 +2013,9,20,5,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,53,1,1842,42,1,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,834,-4,0,907,-8,0,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,0,0,532,-11,0,0 +2013,8,22,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1601,-4,0,1722,26,1,0 +2013,5,16,4,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-9,0,913,-7,0,0 +2013,4,24,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-3,0,1031,0,0,0 +2013,5,1,3,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,825,-3,0,955,-3,0,0 +2013,7,29,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,0,0,1155,-14,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1300,6,0,2135,0,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1512,49,1,1858,10,0,0 +2013,8,9,5,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,811,0,,952,0,1,1 +2013,9,22,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,1014,-18,0,0 +2013,8,28,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,705,-8,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1429,27,1,1611,22,1,0 +2013,9,27,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1920,14,0,2035,28,1,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,12,0,2240,6,0,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1010,-3,0,1156,-17,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-4,0,2325,15,1,0 +2013,7,20,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,759,-16,0,0 +2013,7,4,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,915,-1,0,1740,-25,0,0 +2013,5,16,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,1,0,1440,4,0,0 +2013,7,19,5,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1330,-7,0,1444,2,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1355,0,0,1830,6,0,0 +2013,9,11,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2142,0,,2252,0,1,1 +2013,5,17,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2003,-2,0,2333,-7,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,4,0,1150,0,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,-7,0,1200,-7,0,0 +2013,7,11,4,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1805,20,1,2259,18,1,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2005,33,1,2151,26,1,0 +2013,8,28,3,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,655,-8,0,949,-20,0,0 +2013,9,3,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-7,0,743,-14,0,0 +2013,4,5,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1340,-4,0,1950,-32,0,0 +2013,6,12,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1853,-1,0,2201,9,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,4,0,2245,4,0,0 +2013,10,24,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,2,0,1524,-6,0,0 +2013,6,23,7,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,900,-9,0,1113,-13,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,800,-5,0,1302,-9,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1515,0,0,1802,2,0,0 +2013,5,26,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,46,1,808,39,1,0 +2013,10,2,3,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1442,-4,0,1622,-17,0,0 +2013,9,10,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-5,0,902,-32,0,0 +2013,9,14,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1422,6,0,1554,-4,0,0 +2013,9,10,2,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-3,0,1127,-15,0,0 +2013,7,20,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,645,-10,0,940,-7,0,0 +2013,7,25,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-6,0,2300,-8,0,0 +2013,7,10,3,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,114,1,2334,129,1,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1328,-5,0,1717,-24,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-3,0,1612,-4,0,0 +2013,5,6,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,-11,0,2027,-13,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1955,28,1,2220,33,1,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,0,0,1618,-14,0,0 +2013,9,4,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,-5,0,1023,-19,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,31,1,1401,30,1,0 +2013,7,17,3,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1345,86,1,1625,76,1,0 +2013,10,30,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,605,28,1,700,31,1,0 +2013,10,27,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1440,-3,0,1630,3,0,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,615,39,1,730,35,1,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1225,0,0,1350,-4,0,0 +2013,8,25,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1725,34,1,1843,47,1,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1240,-1,0,1345,-6,0,0 +2013,9,14,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,748,-6,0,1033,-8,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,-2,0,1803,-19,0,0 +2013,7,31,3,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,930,0,0,1745,-12,0,0 +2013,5,5,7,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-6,0,906,-11,0,0 +2013,7,7,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-8,0,1008,-24,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1010,0,0,1352,-2,0,0 +2013,5,29,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-6,0,913,8,0,0 +2013,5,16,4,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1910,-7,0,2155,-9,0,0 +2013,6,29,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1303,-9,0,1822,-28,0,0 +2013,6,12,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1755,7,0,2016,-13,0,0 +2013,9,3,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-4,0,805,-11,0,0 +2013,4,9,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,705,-5,0,735,-8,0,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,-4,0,1651,16,1,0 +2013,7,7,7,FL,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1718,8,0,1833,6,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,925,-1,0,1135,-4,0,0 +2013,9,11,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-4,0,957,-12,0,0 +2013,4,24,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,11,0,1118,5,0,0 +2013,5,5,7,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,700,2,0,925,-1,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,910,13,0,1034,9,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1020,-1,0,1345,-13,0,0 +2013,9,2,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2220,24,1,26,10,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,29,1,1131,22,1,0 +2013,7,27,6,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1110,-1,0,1240,-5,0,0 +2013,7,11,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,0,,1749,0,1,1 +2013,8,7,3,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,645,-1,0,715,2,0,0 +2013,6,24,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,0,0,1915,-1,0,0 +2013,7,19,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-1,0,1859,-6,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,46,1,2330,31,1,0 +2013,10,26,6,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,805,-6,0,1114,-8,0,0 +2013,10,18,5,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,925,7,0,945,12,0,0 +2013,10,24,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,-4,0,1510,-26,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,903,-7,0,1052,-34,0,0 +2013,10,18,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,41,1,1600,31,1,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1945,15,1,2110,26,1,0 +2013,10,13,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1925,26,1,2050,22,1,0 +2013,4,14,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1805,2,0,1901,-6,0,0 +2013,10,21,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1435,-6,0,1610,-13,0,0 +2013,6,8,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,304,1,1630,296,1,0 +2013,8,18,7,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1805,-7,0,2045,-8,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,-1,0,2003,19,1,0 +2013,10,15,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1938,-7,0,2142,-9,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1945,-1,0,2205,-2,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,650,-1,0,1045,2,0,0 +2013,5,21,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1947,41,1,2050,26,1,0 +2013,4,12,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-3,0,1855,-11,0,0 +2013,10,22,2,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,840,-4,0,1013,-17,0,0 +2013,8,24,6,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1625,-2,0,1755,-4,0,0 +2013,6,30,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1333,-10,0,0 +2013,4,8,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1805,4,0,1925,-10,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,811,-2,0,933,-2,0,0 +2013,5,14,2,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,1,0,1120,-4,0,0 +2013,8,10,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1421,57,1,1530,46,1,0 +2013,4,9,2,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1640,6,0,2100,3,0,0 +2013,8,23,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1011,-5,0,1127,-21,0,0 +2013,7,8,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-8,0,2308,-6,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1215,5,0,1440,14,0,0 +2013,4,23,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,-5,0,1900,-3,0,0 +2013,7,27,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,8,0,1321,-13,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,3,0,1500,-1,0,0 +2013,6,26,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,839,-4,0,1128,3,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1612,-5,0,1929,-12,0,0 +2013,6,27,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,605,-3,0,741,-5,0,0 +2013,6,27,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,0,,837,0,1,1 +2013,6,14,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1005,0,0,1245,0,0,0 +2013,8,6,2,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-3,0,1529,-10,0,0 +2013,5,28,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-4,0,1825,-14,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1335,3,0,1515,-2,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1135,8,0,1300,0,0,0 +2013,8,29,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1600,-8,0,1725,-3,0,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,5,0,2125,0,0,0 +2013,8,10,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1312,7,0,1516,17,1,0 +2013,7,12,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,13,0,2145,9,0,0 +2013,4,6,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1546,-10,0,1813,-20,0,0 +2013,10,7,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1003,-9,0,1128,-13,0,0 +2013,5,9,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,953,11,0,1216,2,0,0 +2013,6,3,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,0,0,820,-6,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,610,29,1,855,59,1,0 +2013,9,25,3,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,700,0,0,1047,-31,0,0 +2013,5,6,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1645,18,1,2025,20,1,0 +2013,7,30,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-3,0,1242,-9,0,0 +2013,8,31,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1929,-7,0,2019,-18,0,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2100,15,1,2316,0,0,0 +2013,4,14,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1312,-7,0,1500,11,0,0 +2013,4,19,5,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,-3,0,940,7,0,0 +2013,10,4,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-3,0,1118,-4,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-5,0,1526,-11,0,0 +2013,6,26,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2246,107,1,629,102,1,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,-8,0,1606,-28,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1037,4,0,1219,-5,0,0 +2013,7,5,5,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-1,0,1105,-15,0,0 +2013,5,20,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,45,1,1820,46,1,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1330,27,1,1550,14,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2035,169,1,2315,190,1,0 +2013,8,6,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-4,0,1324,-11,0,0 +2013,9,20,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-8,0,1239,-6,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1944,-2,0,2039,12,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,915,-3,0,1044,-8,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,954,33,1,1555,28,1,0 +2013,10,31,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2213,3,0,28,-8,0,0 +2013,6,21,5,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,-10,0,2139,-11,0,0 +2013,8,21,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1258,-6,0,1317,-19,0,0 +2013,7,6,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1525,0,0,1640,17,1,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,1,0,1140,-4,0,0 +2013,10,11,5,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2058,-6,0,2347,-22,0,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,851,1,0,1715,-24,0,0 +2013,5,3,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-12,0,2210,-10,0,0 +2013,6,2,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1539,-1,0,1830,1,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,25,1,1835,40,1,0 +2013,9,5,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1530,0,0,1630,-2,0,0 +2013,7,9,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,-1,0,911,-3,0,0 +2013,5,2,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,1,0,1859,2,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-8,0,1100,13,0,0 +2013,9,15,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1130,-8,0,1217,3,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,2,0,1325,8,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1914,-1,0,2326,-16,0,0 +2013,8,4,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,-7,0,1915,-4,0,0 +2013,4,29,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,12,0,2135,-3,0,0 +2013,7,3,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1337,-10,0,1539,-2,0,0 +2013,4,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2125,40,1,2300,41,1,0 +2013,6,22,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,-1,0,1050,-13,0,0 +2013,10,17,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,9,0,2200,-14,0,0 +2013,10,18,5,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-11,0,1531,-39,0,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,720,11,0,815,10,0,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,-5,0,1535,-6,0,0 +2013,9,26,4,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,-1,0,1605,-13,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2155,18,1,2255,9,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,928,0,,1214,0,1,1 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,0,0,1210,-9,0,0 +2013,9,21,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,805,-7,0,1414,-20,0,0 +2013,4,26,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,11,0,2005,-2,0,0 +2013,7,16,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,850,-1,0,0 +2013,5,29,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1829,6,0,2039,40,1,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,95,1,1312,74,1,0 +2013,9,16,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1420,8,0,1555,-11,0,0 +2013,5,14,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1444,18,1,1844,5,0,0 +2013,4,2,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,36,1,1805,68,1,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1110,-2,0,1230,-13,0,0 +2013,5,2,4,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,22,1,1029,20,1,0 +2013,8,30,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-7,0,2056,-10,0,0 +2013,5,22,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1810,13,0,1935,13,0,0 +2013,10,19,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-15,0,457,-22,0,0 +2013,5,29,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2013,-7,0,2030,-16,0,0 +2013,10,30,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,14,0,2120,-3,0,0 +2013,4,24,3,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-5,0,1858,7,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1530,-3,0,1805,13,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2010,-2,0,2236,6,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,-2,0,1609,-17,0,0 +2013,8,24,6,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,0,,830,0,1,1 +2013,10,14,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-2,0,1933,-12,0,0 +2013,8,31,6,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1458,0,0,1839,23,1,0 +2013,9,26,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1930,-6,0,2025,-1,0,0 +2013,9,12,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,720,-2,0,955,0,0,0 +2013,4,20,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,754,3,0,815,-2,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1620,12,0,1850,-5,0,0 +2013,7,16,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,-1,0,2110,-15,0,0 +2013,5,21,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1200,5,0,1420,-15,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1603,-5,0,2017,24,1,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1119,1,0,1239,-16,0,0 +2013,8,7,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1805,-3,0,2120,-15,0,0 +2013,9,13,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,725,5,0,730,30,1,0 +2013,10,17,4,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2242,1,0,446,-24,0,0 +2013,9,14,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-4,0,2220,-2,0,0 +2013,10,10,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-8,0,1525,-12,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1314,243,1,1606,243,1,0 +2013,9,12,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,16,1,1640,7,0,0 +2013,4,3,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,-3,0,1135,-18,0,0 +2013,7,19,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,-4,0,2300,-2,0,0 +2013,4,3,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1246,87,1,1730,74,1,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,951,2,0,1305,-9,0,0 +2013,10,24,4,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,545,-4,0,858,-2,0,0 +2013,9,17,2,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,627,-8,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1239,0,0,1407,-7,0,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,700,5,0,820,-3,0,0 +2013,9,24,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-3,0,1630,13,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2035,-1,0,2204,-12,0,0 +2013,10,27,7,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-1,0,718,0,0,0 +2013,10,26,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,625,-3,0,950,-6,0,0 +2013,5,29,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1228,0,0,1412,7,0,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,855,5,0,1300,-8,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-4,0,1349,17,1,0 +2013,10,2,3,9E,12451,Jacksonville International,Jacksonville,FL,12953,LaGuardia,New York,NY,1510,-6,0,1730,-9,0,0 +2013,10,30,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1405,0,0,2059,-16,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-4,0,2217,2,0,0 +2013,8,19,1,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,915,2,0,1020,-1,0,0 +2013,6,13,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,0,,745,0,1,1 +2013,9,16,1,OO,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1809,-3,0,2025,-15,0,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,947,-5,0,1151,-28,0,0 +2013,8,20,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,-2,0,1501,17,1,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-7,0,1028,-8,0,0 +2013,8,16,5,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1430,-2,0,1600,-13,0,0 +2013,10,21,1,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,-7,0,1605,-19,0,0 +2013,6,16,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,843,-2,0,946,2,0,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2146,156,1,30,145,1,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1305,-1,0,1445,-4,0,0 +2013,6,28,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,59,1,1741,62,1,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,16,1,1833,20,1,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1640,87,1,1800,92,1,0 +2013,9,16,1,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,555,-7,0,830,-14,0,0 +2013,8,8,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,730,12,0,1105,3,0,0 +2013,8,13,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2339,48,1,553,50,1,0 +2013,5,3,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1015,-3,0,1205,12,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,710,3,0,1010,-5,0,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1015,52,1,1348,61,1,0 +2013,10,3,4,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1500,8,0,1750,0,0,0 +2013,7,11,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1411,70,1,1702,84,1,0 +2013,4,1,1,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,1650,-3,0,1910,29,1,0 +2013,6,13,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1832,-8,0,2235,-21,0,0 +2013,10,14,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,625,0,0,920,-2,0,0 +2013,7,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1843,6,0,2135,75,1,0 +2013,4,10,3,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1739,27,1,2030,10,0,0 +2013,9,23,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1829,1,0,2036,-3,0,0 +2013,10,19,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,721,-6,0,1000,-5,0,0 +2013,6,21,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,3,0,1943,11,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1455,4,0,1720,47,1,0 +2013,9,29,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1330,29,1,1615,27,1,0 +2013,10,10,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2130,18,1,2305,-1,0,0 +2013,4,22,1,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,1952,62,1,2215,76,1,0 +2013,9,4,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1525,10,0,1630,12,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,-3,0,1935,-5,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1010,2,0,0 +2013,10,16,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-2,0,1248,-1,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1558,0,0,1659,12,0,0 +2013,5,18,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1024,0,,1316,0,1,1 +2013,7,23,2,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,0,0,1041,0,0,0 +2013,7,31,3,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,8,0,1623,3,0,0 +2013,10,28,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1710,-5,0,1914,-19,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1352,-6,0,1715,-4,0,0 +2013,5,17,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1125,50,1,1246,43,1,0 +2013,7,18,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2328,-4,0,710,-1,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,734,-4,0,925,-13,0,0 +2013,10,15,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,1,0,750,-4,0,0 +2013,8,6,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,923,-5,0,1105,-19,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,715,-4,0,915,-9,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,650,0,0,810,-4,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,4,0,1515,0,0,0 +2013,6,5,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,175,1,2043,199,1,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1834,71,1,2031,72,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1905,36,1,2119,4,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1003,-3,0,1139,-16,0,0 +2013,6,24,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,930,4,0,1114,-15,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-5,0,1123,-3,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,-4,0,1225,-17,0,0 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1435,-3,0,1800,-25,0,0 +2013,5,12,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1805,39,1,1925,54,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-3,0,2357,-18,0,0 +2013,9,28,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-3,0,805,-14,0,0 +2013,9,30,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-6,0,2005,-15,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1317,0,0,1410,-12,0,0 +2013,9,16,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1555,2,0,8,-12,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1251,1,0,1654,-4,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1309,-6,0,1354,-5,0,0 +2013,7,8,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1331,-7,0,1406,-10,0,0 +2013,5,19,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1957,-9,0,2255,17,1,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,29,1,2130,6,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,740,-7,0,845,-19,0,0 +2013,8,11,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,955,-5,0,1005,-13,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,16,1,1715,10,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,1,0,1315,-29,0,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,759,-2,0,1100,-21,0,0 +2013,6,17,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,850,1,0,1200,-18,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,14,0,2345,6,0,0 +2013,6,24,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1210,-9,0,1450,-4,0,0 +2013,10,24,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,9,0,1759,-1,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,930,10,0,1205,-16,0,0 +2013,7,15,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1501,-3,0,1800,-20,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,835,-2,0,1100,-28,0,0 +2013,10,25,5,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1035,2,0,1630,18,1,0 +2013,8,15,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1249,19,1,1653,-4,0,0 +2013,5,7,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1446,-3,0,1656,-29,0,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,715,-2,0,958,-7,0,0 +2013,5,31,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,700,-3,0,805,-6,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2155,-1,0,643,-3,0,0 +2013,7,5,5,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1153,6,0,2023,5,0,0 +2013,9,28,6,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,716,-1,0,1435,-18,0,0 +2013,9,6,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-5,0,2132,-1,0,0 +2013,6,16,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,-1,0,755,-3,0,0 +2013,9,25,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,205,1,1908,198,1,0 +2013,5,10,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1305,18,1,1415,26,1,0 +2013,4,12,5,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1430,3,0,1535,-12,0,0 +2013,5,10,5,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,31,1,1350,40,1,0 +2013,4,17,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,830,-4,0,955,2,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1743,-5,0,2313,-21,0,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,820,5,0,1015,2,0,0 +2013,6,2,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,700,21,1,750,16,1,0 +2013,4,21,7,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1207,7,0,1748,-21,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1445,23,1,1540,22,1,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1715,17,1,2305,23,1,0 +2013,8,16,5,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,30,-1,0,835,-15,0,0 +2013,4,15,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,2,0,1620,-7,0,0 +2013,9,2,1,OO,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-9,0,1851,2,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,19,1,2359,31,1,0 +2013,5,30,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,20,1,2235,17,1,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-2,0,1031,-13,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,750,-6,0,847,11,0,0 +2013,4,6,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1150,44,1,1325,27,1,0 +2013,8,18,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,745,-11,0,817,-7,0,0 +2013,4,18,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,0,,1325,0,1,1 +2013,5,26,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,2030,-13,0,2210,-29,0,0 +2013,9,8,7,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1816,-6,0,1925,-17,0,0 +2013,4,1,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-3,0,932,-5,0,0 +2013,9,18,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-3,0,820,-4,0,0 +2013,4,11,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,915,-3,0,930,-16,0,0 +2013,6,15,6,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,23,1,840,28,1,0 +2013,10,2,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-4,0,1908,-6,0,0 +2013,5,28,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,0,0,929,-5,0,0 +2013,10,16,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1200,7,0,1755,32,1,0 +2013,7,10,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,41,1,1625,45,1,0 +2013,4,27,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,655,-4,0,845,-20,0,0 +2013,5,11,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,2,0,1447,-10,0,0 +2013,9,17,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1235,-4,0,1447,-15,0,0 +2013,9,17,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,-1,0,1405,-9,0,0 +2013,7,3,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1040,-3,0,1630,-28,0,0 +2013,6,25,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,821,-16,0,0 +2013,4,12,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1408,169,1,1655,178,1,0 +2013,9,26,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1800,27,1,1932,2,0,0 +2013,7,9,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,808,218,1,942,202,1,0 +2013,4,17,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1500,46,1,1610,44,1,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1235,-5,0,1330,-23,0,0 +2013,6,30,7,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2005,15,1,1132,10,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1512,10,0,1630,0,0,0 +2013,7,30,2,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,-4,0,1130,-1,0,0 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2055,-3,0,2200,-8,0,0 +2013,4,21,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1645,-2,0,1929,-6,0,0 +2013,10,13,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,3,0,1920,-10,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,-1,0,1635,3,0,0 +2013,8,14,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,750,-16,0,0 +2013,5,5,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,745,-3,0,1015,-11,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1220,157,1,1420,159,1,0 +2013,7,28,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1340,-4,0,1505,-15,0,0 +2013,7,4,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1735,-5,0,2008,-2,0,0 +2013,10,14,1,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1029,-1,0,1305,-4,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,94,1,1505,105,1,0 +2013,4,29,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1145,39,1,1423,51,1,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,15016,Lambert-St. Louis International,St. Louis,MO,730,6,0,1305,-11,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,7,0,1320,-3,0,0 +2013,7,4,4,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1100,-4,0,1217,-1,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,-1,0,1010,40,1,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1535,12,0,1735,10,0,0 +2013,4,16,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-3,0,1515,-5,0,0 +2013,7,19,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,635,-11,0,0 +2013,10,4,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,3,0,1420,-2,0,0 +2013,10,29,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1956,-3,0,2229,7,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,54,1,1100,32,1,0 +2013,8,20,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-1,0,1555,1,0,0 +2013,5,3,5,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1720,-3,0,1835,-2,0,0 +2013,10,4,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,808,-16,0,0 +2013,4,10,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,719,-2,0,902,-7,0,0 +2013,10,14,1,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1220,-1,0,1415,7,0,0 +2013,7,2,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,710,-6,0,855,-10,0,0 +2013,5,25,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1155,-6,0,1233,-7,0,0 +2013,5,1,3,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,636,-8,0,850,-34,0,0 +2013,7,27,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1516,-11,0,1635,-8,0,0 +2013,7,25,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1900,33,1,2005,26,1,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,11,0,940,11,0,0 +2013,6,15,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1943,79,1,2231,41,1,0 +2013,4,15,1,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,615,1,0,1440,-21,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1450,-6,0,1745,-25,0,0 +2013,5,25,6,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1100,18,1,1705,-3,0,0 +2013,9,21,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,712,-7,0,1031,-31,0,0 +2013,9,28,6,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2018,-6,0,2225,-23,0,0 +2013,10,20,7,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1830,-6,0,2147,-20,0,0 +2013,9,11,3,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-13,0,912,-16,0,0 +2013,6,19,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1950,0,0,2101,17,1,0 +2013,6,21,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,13,0,1825,0,0,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,-3,0,1830,1,0,0 +2013,4,10,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-9,0,1314,-2,0,0 +2013,6,22,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1535,-8,0,1725,6,0,0 +2013,8,21,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,847,10,0,934,19,1,0 +2013,6,11,2,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,130,1,2135,115,1,0 +2013,4,13,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-2,0,1015,-7,0,0 +2013,5,2,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1935,121,1,2328,141,1,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,845,-4,0,950,-16,0,0 +2013,8,12,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,920,50,1,1055,51,1,0 +2013,9,5,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,920,1,0,1430,1,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1126,-1,0,1408,-29,0,0 +2013,7,2,2,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,15,1,1305,4,0,0 +2013,9,30,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1016,-10,0,1247,-10,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,44,1,1629,19,1,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1640,0,0,2110,-7,0,0 +2013,5,25,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,20,1,1933,10,0,0 +2013,7,24,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1435,36,1,1608,33,1,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,17,1,2215,8,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1935,51,1,2225,32,1,0 +2013,6,3,1,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1150,10,0,1430,-2,0,0 +2013,6,2,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1800,11,0,2325,12,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1920,-1,0,2035,-10,0,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,1,0,1230,-1,0,0 +2013,4,11,4,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,805,-15,0,0 +2013,6,28,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-6,0,840,-4,0,0 +2013,8,7,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1355,-1,0,2114,-5,0,0 +2013,5,30,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-2,0,903,-3,0,0 +2013,5,9,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1020,-4,0,1140,3,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,818,3,0,1413,-12,0,0 +2013,8,19,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,2013,10,0,2220,5,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,700,-5,0,800,15,1,0 +2013,4,20,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,4,0,1410,1,0,0 +2013,4,4,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-6,0,2055,4,0,0 +2013,8,20,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1114,131,1,1202,120,1,0 +2013,6,1,6,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,45,1,1220,27,1,0 +2013,7,28,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1040,-3,0,1145,0,0,0 +2013,4,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1659,-4,0,2024,6,0,0 +2013,7,13,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-3,0,1824,-10,0,0 +2013,9,22,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1805,12,0,2115,25,1,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2202,-2,0,2246,-12,0,0 +2013,9,15,7,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,10,0,500,-12,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,-1,0,1524,13,0,0 +2013,6,16,7,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-10,0,1300,-9,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,6,0,1342,4,0,0 +2013,7,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,-1,0,2347,-10,0,0 +2013,7,13,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1610,-2,0,1804,53,1,0 +2013,8,28,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-10,0,1045,-16,0,0 +2013,9,22,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,651,-5,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1352,-11,0,1534,-17,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,0,0,749,-8,0,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2150,62,1,2320,59,1,0 +2013,5,6,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1505,-9,0,1923,24,1,0 +2013,9,10,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-5,0,758,-9,0,0 +2013,7,14,7,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-1,0,2149,-11,0,0 +2013,4,12,5,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1310,85,1,1523,90,1,0 +2013,7,31,3,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1547,-2,0,1830,7,0,0 +2013,6,19,3,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,11,0,1815,-7,0,0 +2013,7,1,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,725,-4,0,1130,-18,0,0 +2013,6,19,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,-6,0,1301,-11,0,0 +2013,5,22,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,650,12,0,855,0,0,0 +2013,7,13,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,31,1,1035,16,1,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,810,-4,0,1410,-13,0,0 +2013,7,15,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1902,3,0,2149,-14,0,0 +2013,5,1,3,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,0,0,1405,-13,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,7,0,1812,1,0,0 +2013,7,30,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-4,0,1911,-5,0,0 +2013,5,3,5,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1541,8,0,1620,10,0,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,815,3,0,1640,-16,0,0 +2013,7,5,5,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1708,8,0,1810,6,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,-7,0,1120,-14,0,0 +2013,9,20,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1145,-10,0,1245,-21,0,0 +2013,8,1,4,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1530,-3,0,655,-15,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,-5,0,2047,-16,0,0 +2013,9,12,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,6,0,2038,-10,0,0 +2013,5,16,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2000,-3,0,2110,22,1,0 +2013,4,19,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,1240,-5,0,0 +2013,4,6,6,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1625,-3,0,1850,-11,0,0 +2013,5,23,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,850,-6,0,1020,-24,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,2,0,1540,26,1,0 +2013,10,24,4,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1312,23,1,1624,37,1,0 +2013,10,26,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1110,2,0,1255,-2,0,0 +2013,6,3,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,70,1,1345,79,1,0 +2013,5,23,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1552,3,0,1648,12,0,0 +2013,10,15,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1829,5,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1549,109,1,2021,134,1,0 +2013,10,25,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,0,0,1553,-5,0,0 +2013,9,25,3,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1110,11,0,1235,16,1,0 +2013,7,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1724,9,0,2030,49,1,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,-4,0,1348,-2,0,0 +2013,8,31,6,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2055,72,1,605,69,1,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,835,-9,0,1037,-6,0,0 +2013,6,2,7,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1409,0,,1759,0,1,1 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,4,0,1732,5,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1700,3,0,1805,-4,0,0 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1000,111,1,1625,89,1,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,3,0,1103,8,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,0,0,1435,33,1,0 +2013,9,24,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1129,-4,0,1236,-11,0,0 +2013,4,21,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-3,0,1905,0,0,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,929,167,1,1205,159,1,0 +2013,6,19,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1410,-7,0,2246,-38,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1310,1,0,1735,-15,0,0 +2013,5,2,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,2,0,2040,20,1,0 +2013,6,21,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,-4,0,1816,-14,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,716,-5,0,950,46,1,0 +2013,10,5,6,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1840,0,0,2005,-14,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1244,10,0,1422,7,0,0 +2013,4,6,6,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1740,6,0,1846,-7,0,0 +2013,7,1,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,28,1,1810,28,1,0 +2013,5,7,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-3,0,810,-8,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,80,1,1940,70,1,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,1332,-14,0,0 +2013,6,20,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1735,-1,0,1800,-16,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,755,-5,0,855,-2,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,705,-4,0,855,-12,0,0 +2013,5,4,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1635,-5,0,1735,-7,0,0 +2013,7,18,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1655,31,1,2015,36,1,0 +2013,6,24,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-5,0,2127,-1,0,0 +2013,5,14,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,26,1,1335,7,0,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1025,35,1,1620,27,1,0 +2013,9,8,7,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1505,4,0,1834,8,0,0 +2013,9,25,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1258,-2,0,2127,0,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1858,4,0,2114,1,0,0 +2013,7,17,3,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,634,-2,0,1409,4,0,0 +2013,8,27,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-3,0,807,-12,0,0 +2013,6,19,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1852,-9,0,1958,-26,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,59,1,1350,40,1,0 +2013,7,23,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-1,0,1931,-8,0,0 +2013,7,16,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,-1,0,2005,13,0,0 +2013,9,18,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1640,-1,0,1835,8,0,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1450,-8,0,1734,-9,0,0 +2013,10,4,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1710,100,1,1817,95,1,0 +2013,5,28,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,753,-2,0,951,-10,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,950,-2,0,1123,-1,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-2,0,1720,-21,0,0 +2013,8,5,1,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,755,-4,0,905,-1,0,0 +2013,10,10,4,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1701,-5,0,1926,-19,0,0 +2013,7,22,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-9,0,1200,-2,0,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,930,69,1,1320,58,1,0 +2013,6,28,5,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1720,38,1,2000,38,1,0 +2013,6,3,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,8,0,2159,6,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-2,0,1120,-10,0,0 +2013,10,21,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1351,-1,0,1658,-15,0,0 +2013,4,4,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,855,-5,0,1159,-8,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,830,-4,0,1235,-21,0,0 +2013,6,8,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,-10,0,1130,-3,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1940,9,0,2042,0,0,0 +2013,4,18,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,40,1,2118,27,1,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,705,-5,0,830,-3,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,805,7,0,925,3,0,0 +2013,9,22,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-3,0,945,-12,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2120,9,0,2310,-4,0,0 +2013,9,17,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1030,2,0,1140,12,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1520,-2,0,1820,-8,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1633,10,0,1945,-5,0,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,14,0,930,10,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,-6,0,1113,-10,0,0 +2013,5,7,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,-6,0,1305,-4,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1925,30,1,2242,-27,0,0 +2013,9,17,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,950,0,,1055,0,1,1 +2013,6,17,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1305,-5,0,1419,-20,0,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1315,119,1,1900,112,1,0 +2013,7,26,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1115,0,0,1255,-4,0,0 +2013,6,17,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2230,-9,0,425,-36,0,0 +2013,10,8,2,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1548,-1,0,2359,0,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1620,13,0,1705,8,0,0 +2013,8,25,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-7,0,1858,-23,0,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,731,-2,0,908,-13,0,0 +2013,7,20,6,OO,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1114,-6,0,1535,-10,0,0 +2013,10,25,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-6,0,2022,-16,0,0 +2013,9,5,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1415,-11,0,1550,-18,0,0 +2013,5,8,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,15376,Tucson International,Tucson,AZ,1135,1,0,1145,1,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1644,2,0,0 +2013,6,24,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-3,0,940,0,0,0 +2013,7,18,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-3,0,2056,-2,0,0 +2013,8,1,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,-7,0,841,-17,0,0 +2013,4,22,1,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,18,1,1911,29,1,0 +2013,10,11,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-12,0,1245,-9,0,0 +2013,7,5,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2000,-8,0,2015,-11,0,0 +2013,6,3,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,-3,0,1240,-8,0,0 +2013,4,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,836,-3,0,1055,-11,0,0 +2013,5,22,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1441,54,1,1648,48,1,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1530,43,1,1635,34,1,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,7,0,757,15,1,0 +2013,7,15,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,129,1,1845,119,1,0 +2013,8,14,3,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,33,1,1245,28,1,0 +2013,5,17,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1930,0,0,2229,-23,0,0 +2013,9,11,3,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-6,0,852,-10,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1922,76,1,2130,72,1,0 +2013,8,20,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1940,-10,0,2040,-7,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-3,0,2135,-4,0,0 +2013,6,7,5,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1542,11,0,1700,13,0,0 +2013,8,26,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-9,0,824,-15,0,0 +2013,8,18,7,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1133,-5,0,1300,-24,0,0 +2013,5,18,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,56,1,2227,51,1,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,7,0,1050,7,0,0 +2013,7,14,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,6,0,1905,-5,0,0 +2013,10,24,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-5,0,904,3,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1140,40,1,1315,29,1,0 +2013,10,29,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-5,0,1619,-29,0,0 +2013,7,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1410,-3,0,1544,5,0,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,855,-1,0,1430,6,0,0 +2013,9,11,3,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-9,0,1215,-11,0,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1150,7,0,1625,-14,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1550,0,0,2125,-10,0,0 +2013,9,23,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-3,0,1048,-15,0,0 +2013,6,27,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1200,79,1,1507,79,1,0 +2013,6,20,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,950,-3,0,1204,6,0,0 +2013,6,23,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1115,16,1,1355,13,0,0 +2013,8,23,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,-4,0,1425,-18,0,0 +2013,6,4,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1848,-9,0,2000,-8,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,23,1,2220,-1,0,0 +2013,7,16,2,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1640,-4,0,1815,-10,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,-3,0,1932,8,0,0 +2013,5,10,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14307,Theodore Francis Green State,Providence,RI,1904,109,1,2044,105,1,0 +2013,10,12,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,15,1,1510,9,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,-3,0,1005,-22,0,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,3,0,1623,-12,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2028,11,0,2247,-24,0,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1140,-1,0,1725,-2,0,0 +2013,4,21,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1245,-3,0,2059,8,0,0 +2013,9,11,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1110,-3,0,1430,-27,0,0 +2013,4,5,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,-5,0,1819,2,0,0 +2013,10,22,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1729,-8,0,2001,-16,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,840,-3,0,1023,-7,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1958,-7,0,2128,-7,0,0 +2013,7,22,1,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,715,124,1,840,117,1,0 +2013,4,4,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,950,-13,0,0 +2013,4,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,77,1,1609,70,1,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2225,9,0,2349,-1,0,0 +2013,10,14,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-4,0,857,3,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,719,-6,0,900,-17,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1951,-2,0,2244,-2,0,0 +2013,8,29,4,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,-3,0,2316,-14,0,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,-6,0,1250,-34,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,3,0,945,1,0,0 +2013,4,22,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,914,-1,0,1126,6,0,0 +2013,6,4,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-6,0,1652,-19,0,0 +2013,6,13,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,-2,0,1855,-4,0,0 +2013,5,23,4,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1041,15,1,1335,21,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1741,0,0,1909,-4,0,0 +2013,6,15,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1046,-9,0,1348,-10,0,0 +2013,8,20,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1838,5,0,2017,-6,0,0 +2013,8,9,5,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1559,-3,0,1910,16,1,0 +2013,5,2,4,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,20,1,617,1,0,0 +2013,6,24,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,38,1,1815,23,1,0 +2013,9,8,7,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,-9,0,1740,-11,0,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2210,-2,0,30,-17,0,0 +2013,6,30,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-5,0,1012,-24,0,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,0,0,1011,-11,0,0 +2013,9,7,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-1,0,935,-2,0,0 +2013,9,13,5,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1245,-6,0,1515,-27,0,0 +2013,6,6,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2151,-1,0,2335,-1,0,0 +2013,9,3,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1055,12,0,1216,18,1,0 +2013,7,23,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1649,-2,0,1726,-3,0,0 +2013,7,9,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-1,0,1357,3,0,0 +2013,5,23,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2005,10,0,2107,18,1,0 +2013,8,30,5,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,905,9,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,645,109,1,1252,112,1,0 +2013,10,26,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1245,-2,0,1420,1,0,0 +2013,6,26,3,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,710,177,1,830,193,1,0 +2013,7,14,7,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,630,-1,0,920,-12,0,0 +2013,5,4,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,0,0,920,-15,0,0 +2013,4,13,6,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,615,-1,0,950,-7,0,0 +2013,8,19,1,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1412,-4,0,1632,-18,0,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,0,0,224,-1,0,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1029,20,1,1320,56,1,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1935,38,1,50,42,1,0 +2013,10,2,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1730,13,0,2000,0,0,0 +2013,6,22,6,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1040,-7,0,1425,-8,0,0 +2013,6,4,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,935,-6,0,1023,5,0,0 +2013,6,13,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-4,0,1838,-12,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1335,-1,0,1450,-8,0,0 +2013,6,21,5,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-2,0,1553,-18,0,0 +2013,7,21,7,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,-4,0,745,-9,0,0 +2013,6,15,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,9,0,1750,-7,0,0 +2013,10,11,5,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-2,0,1230,1,0,0 +2013,8,12,1,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,3,0,1245,14,0,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1350,2,0,1715,5,0,0 +2013,4,3,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1048,-11,0,1301,-6,0,0 +2013,9,13,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1812,1,0,0 +2013,5,1,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-8,0,1510,-4,0,0 +2013,4,15,1,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,700,0,0,1450,-16,0,0 +2013,8,24,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,755,-8,0,1034,-24,0,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,25,1,2205,5,0,0 +2013,6,21,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1904,41,1,2015,34,1,0 +2013,7,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1040,-3,0,1200,3,0,0 +2013,4,2,2,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,720,-4,0,1050,1,0,0 +2013,6,13,4,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-7,0,1046,0,0,0 +2013,4,17,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1907,-3,0,2230,-30,0,0 +2013,6,22,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1328,-5,0,1611,-2,0,0 +2013,10,20,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-5,0,1556,-14,0,0 +2013,5,10,5,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2335,14,0,805,18,1,0 +2013,5,21,2,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,0,0,905,4,0,0 +2013,7,14,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,27,1,1415,24,1,0 +2013,10,28,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,2,0,1303,-1,0,0 +2013,8,2,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-2,0,755,-11,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1510,37,1,2328,-1,0,0 +2013,6,23,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2045,19,1,2135,12,0,0 +2013,5,22,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1930,-1,0,2345,3,0,0 +2013,10,14,1,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1843,0,0,2034,26,1,0 +2013,4,14,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1049,-6,0,1355,-33,0,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,9,0,1805,1,0,0 +2013,7,24,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,15,1,2138,18,1,0 +2013,7,31,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,905,2,0,1729,7,0,0 +2013,6,15,6,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1010,0,0,1200,4,0,0 +2013,4,16,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,840,-7,0,1152,-16,0,0 +2013,10,24,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1730,-5,0,1854,-14,0,0 +2013,9,21,6,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,710,-1,0,755,7,0,0 +2013,9,19,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1905,3,0,2145,-1,0,0 +2013,8,26,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,955,15,1,1158,39,1,0 +2013,5,5,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1711,-1,0,1927,9,0,0 +2013,6,20,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,23,1,830,3,0,0 +2013,9,24,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1528,-3,0,1737,-10,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,725,-6,0,955,-27,0,0 +2013,4,29,1,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,50,1,1357,63,1,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1740,71,1,1955,59,1,0 +2013,10,9,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,849,-1,0,1634,0,0,0 +2013,7,10,3,UA,14570,Reno/Tahoe International,Reno,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1217,-7,0,1800,-27,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,-5,0,1025,12,0,0 +2013,6,21,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,122,1,2355,107,1,0 +2013,6,21,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,635,-1,0,805,-3,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,-1,0,2112,5,0,0 +2013,6,14,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,610,157,1,820,188,1,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,840,10,0,1040,61,1,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,705,-5,0,825,3,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,900,-6,0,1100,-8,0,0 +2013,5,1,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-3,0,835,-22,0,0 +2013,4,22,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2054,-9,0,2158,-7,0,0 +2013,5,31,5,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,601,-4,0,1201,-18,0,0 +2013,9,30,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-4,0,705,-4,0,0 +2013,5,21,2,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1043,65,1,1245,70,1,0 +2013,10,12,6,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1100,-9,0,1156,-6,0,0 +2013,10,10,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1744,3,0,2116,1,0,0 +2013,5,5,7,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-7,0,1229,-17,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1205,-4,0,1325,-13,0,0 +2013,8,15,4,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,13,0,1810,-3,0,0 +2013,5,30,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,10,0,1114,3,0,0 +2013,7,28,7,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,1025,-13,0,0 +2013,7,26,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,0,0,1136,0,0,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-2,0,1230,-16,0,0 +2013,7,24,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-1,0,1917,-5,0,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,28,1,1815,25,1,0 +2013,8,12,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,-1,0,1112,-13,0,0 +2013,6,6,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,29,1,955,42,1,0 +2013,5,19,7,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,810,-5,0,910,-19,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-4,0,1203,-4,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,2,0,2252,2,0,0 +2013,8,31,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,815,-4,0,1039,-48,0,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,822,11,0,1138,-10,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,800,-4,0,922,-14,0,0 +2013,9,28,6,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1242,-9,0,1457,-19,0,0 +2013,7,7,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,1,0,940,-15,0,0 +2013,6,18,2,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,735,-1,0,1050,-17,0,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1655,44,1,1850,71,1,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1405,110,1,1658,104,1,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1635,43,1,1740,34,1,0 +2013,5,27,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1106,-7,0,1211,-11,0,0 +2013,9,6,5,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,740,-5,0,1032,3,0,0 +2013,10,25,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,851,-3,0,1057,-9,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1241,10,0,1502,-4,0,0 +2013,7,22,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1455,99,1,1735,93,1,0 +2013,10,14,1,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1639,-6,0,1742,-16,0,0 +2013,4,26,5,EV,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1100,198,1,1252,182,1,0 +2013,7,31,3,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,946,-3,0,1140,-4,0,0 +2013,9,20,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,1,0,1545,8,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-5,0,1823,2,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1435,-3,0,1705,-17,0,0 +2013,4,22,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,705,-6,0,922,-23,0,0 +2013,9,4,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,40,1,1204,24,1,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1550,-3,0,1904,-6,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1810,1,0,2110,-14,0,0 +2013,4,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1345,1,0,1445,-6,0,0 +2013,10,6,7,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,800,-6,0,949,-25,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1911,-3,0,2032,-14,0,0 +2013,6,23,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1655,11,0,2012,16,1,0 +2013,9,27,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,700,-3,0,800,-9,0,0 +2013,7,6,6,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1330,-2,0,1630,-8,0,0 +2013,4,17,3,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1800,17,1,1854,21,1,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,71,1,1445,73,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,-2,0,2059,-5,0,0 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,950,10,0,1145,17,1,0 +2013,4,11,4,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1945,-6,0,2122,-5,0,0 +2013,6,11,2,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,0,0,2005,-8,0,0 +2013,9,29,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,17,1,1514,-26,0,0 +2013,4,2,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1220,5,0,1332,22,1,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,635,-2,0,740,-14,0,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,0,0,1145,4,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,29,1,1640,19,1,0 +2013,8,13,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2115,-7,0,2322,-2,0,0 +2013,9,10,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-8,0,1538,-3,0,0 +2013,10,10,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,10,0,1554,-7,0,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2010,41,1,2235,30,1,0 +2013,4,25,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,2,0,1956,-2,0,0 +2013,5,12,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-5,0,1055,-13,0,0 +2013,7,14,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-6,0,638,-1,0,0 +2013,6,20,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-5,0,1455,-31,0,0 +2013,10,10,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-5,0,1826,-2,0,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,901,-1,0,1204,-9,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,1,0,1320,-6,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-4,0,1146,9,0,0 +2013,7,30,2,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,815,-2,0,1053,30,1,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1025,15,1,1245,9,0,0 +2013,6,11,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,1,0,839,-16,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1625,30,1,1730,34,1,0 +2013,6,3,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,55,1,1345,54,1,0 +2013,9,11,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1615,-3,0,1849,-13,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,28,1,2115,15,1,0 +2013,6,14,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,745,-2,0,1520,-14,0,0 +2013,10,18,5,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-4,0,900,-9,0,0 +2013,7,31,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1429,-7,0,1714,-13,0,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,18,1,1155,16,1,0 +2013,10,3,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1114,-9,0,1250,-13,0,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-2,0,1208,-11,0,0 +2013,4,1,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,1532,-12,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,11,0,2255,12,0,0 +2013,7,23,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1934,27,1,2230,61,1,0 +2013,4,2,2,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-7,0,1628,-14,0,0 +2013,5,16,4,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,935,3,0,1115,2,0,0 +2013,10,2,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,-9,0,1653,-35,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,845,18,1,1055,2,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,0,0,1240,-5,0,0 +2013,7,7,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1742,5,0,1846,7,0,0 +2013,5,22,3,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,0,0,720,-10,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1910,6,0,2030,2,0,0 +2013,4,6,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1320,12,0,1505,2,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,3,0,2138,-17,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1735,-3,0,1948,-15,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,956,3,0,1529,-7,0,0 +2013,5,31,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-5,0,715,-6,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,97,1,1735,68,1,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,36,1,2230,30,1,0 +2013,8,6,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,24,1,1227,10,0,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,1,0,1100,-16,0,0 +2013,7,14,7,DL,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1905,40,1,2020,36,1,0 +2013,5,2,4,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-3,0,543,1,0,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2215,-5,0,2318,-15,0,0 +2013,7,25,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-8,0,1341,-23,0,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-2,0,1630,7,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,7,0,2130,8,0,0 +2013,5,28,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,0,0,2050,-10,0,0 +2013,4,3,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-5,0,1415,7,0,0 +2013,7,15,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,12,0,621,27,1,0 +2013,5,29,3,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1859,43,1,2014,78,1,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1300,6,0,1355,2,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-5,0,1055,-16,0,0 +2013,4,10,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-5,0,2035,16,1,0 +2013,9,10,2,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,830,61,1,1123,63,1,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,855,-4,0,1527,-8,0,0 +2013,6,21,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,44,1,2113,51,1,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,2,0,2220,-5,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2005,1,0,2045,-22,0,0 +2013,9,8,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,1,0,1808,-7,0,0 +2013,8,1,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,945,-3,0,1105,-5,0,0 +2013,4,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,655,-8,0,824,-21,0,0 +2013,8,6,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1015,-5,0,1206,-12,0,0 +2013,10,2,3,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,929,0,0,1110,-4,0,0 +2013,5,29,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1830,-5,0,1940,-13,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,827,3,0,1122,-4,0,0 +2013,4,10,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,10,0,2225,1,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,7,0,2232,9,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-7,0,1135,-5,0,0 +2013,6,1,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1925,0,0,2259,-29,0,0 +2013,10,22,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,-1,0,1855,-7,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1411,47,1,1543,50,1,0 +2013,6,30,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1830,5,0,2015,-3,0,0 +2013,6,24,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,37,1,1815,26,1,0 +2013,7,11,4,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1731,11,0,2110,5,0,0 +2013,4,23,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,946,-3,0,1039,-13,0,0 +2013,7,31,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-7,0,820,-7,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-1,0,1323,8,0,0 +2013,5,4,6,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2100,-8,0,2325,11,0,0 +2013,9,23,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-5,0,1455,-11,0,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2012,-6,0,2343,-5,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,11,0,1630,16,1,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1006,1,0,1308,-1,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1645,6,0,1750,7,0,0 +2013,4,30,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1009,-3,0,1230,-9,0,0 +2013,4,2,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,800,35,1,925,26,1,0 +2013,8,12,1,EV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,800,-4,0,956,-2,0,0 +2013,8,5,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-3,0,1802,0,0,0 +2013,5,29,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,1,0,740,-5,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,855,32,1,950,38,1,0 +2013,9,17,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,6,0,1735,-12,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,121,1,1635,103,1,0 +2013,9,4,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,850,107,1,1027,113,1,0 +2013,7,30,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1037,6,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,850,-1,0,950,-4,0,0 +2013,4,13,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,905,70,1,1029,56,1,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2019,13,0,2249,8,0,0 +2013,5,30,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,704,0,0,847,-19,0,0 +2013,4,7,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1058,-7,0,1228,-12,0,0 +2013,10,10,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,20,1,755,25,1,0 +2013,10,3,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,36,1,1918,31,1,0 +2013,5,27,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1857,-10,0,2012,-17,0,0 +2013,5,20,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1800,6,0,1920,-3,0,0 +2013,8,4,7,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1819,6,0,1904,3,0,0 +2013,8,30,5,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,711,4,0,805,-6,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1240,-7,0,1545,-28,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,214,1,1430,211,1,0 +2013,8,15,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-3,0,1722,-6,0,0 +2013,8,3,6,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,22,1,1629,14,0,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1021,9,0,1350,8,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1725,63,1,55,42,1,0 +2013,8,24,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,22,1,2115,1,0,0 +2013,8,11,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-12,0,2049,-30,0,0 +2013,4,11,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-5,0,1421,-15,0,0 +2013,4,12,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,13,0,2015,5,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,950,1,0,1123,-5,0,0 +2013,5,3,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,-2,0,1235,1,0,0 +2013,4,19,5,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,11,0,1410,-11,0,0 +2013,7,14,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,5,0,1202,11,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1535,35,1,1745,31,1,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-5,0,913,-12,0,0 +2013,5,20,1,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-2,0,1624,10,0,0 +2013,5,5,7,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-5,0,1220,-20,0,0 +2013,6,22,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,-3,0,2135,-13,0,0 +2013,7,11,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,4,0,1620,17,1,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1545,31,1,1650,31,1,0 +2013,4,4,4,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1015,2,0,1455,-26,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,-6,0,903,0,0,0 +2013,6,23,7,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,2,0,1045,-14,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1120,10,0,1320,-5,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1335,-2,0,1810,-13,0,0 +2013,9,27,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,0,0,1908,-5,0,0 +2013,9,2,1,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1619,-6,0,1842,-23,0,0 +2013,6,8,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-4,0,1332,-1,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1345,10,0,1725,5,0,0 +2013,4,7,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1635,4,0,1655,-4,0,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1120,0,,1410,0,1,1 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1145,-1,0,1400,5,0,0 +2013,8,19,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,-7,0,2230,-31,0,0 +2013,7,28,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,-6,0,1606,-28,0,0 +2013,5,21,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,600,0,0,655,-11,0,0 +2013,5,3,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-4,0,830,-17,0,0 +2013,7,9,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,5,0,2220,3,0,0 +2013,6,27,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-5,0,1235,-4,0,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,1,0,1000,0,0,0 +2013,4,12,5,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,749,2,0,855,-15,0,0 +2013,4,3,3,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1755,-3,0,1957,-7,0,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,-1,0,1930,-8,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,147,1,954,131,1,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2215,-5,0,2352,-19,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1436,-4,0,1835,-13,0,0 +2013,4,22,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,640,-6,0,828,-5,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1905,101,1,2008,84,1,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,800,-1,0,927,-7,0,0 +2013,9,29,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12451,Jacksonville International,Jacksonville,FL,1000,-2,0,1357,-15,0,0 +2013,6,26,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,13,0,2355,13,0,0 +2013,4,11,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1200,0,0,1709,-7,0,0 +2013,5,7,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,-4,0,930,1,0,0 +2013,6,2,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-3,0,1033,-8,0,0 +2013,7,19,5,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1320,4,0,1410,-8,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1612,-1,0,1800,-13,0,0 +2013,8,9,5,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,735,56,1,954,14,0,0 +2013,7,3,3,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,951,14,0,1308,7,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,6,0,1837,10,0,0 +2013,8,19,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1625,-11,0,1935,-12,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2003,-6,0,2210,12,0,0 +2013,10,5,6,YV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,801,-1,0,918,-9,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,805,-3,0,1015,3,0,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1154,7,0,1400,7,0,0 +2013,6,23,7,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1710,49,1,1930,66,1,0 +2013,8,10,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1159,-2,0,1527,0,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2010,17,1,2245,-7,0,0 +2013,8,23,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1145,17,1,1335,19,1,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1350,2,0,1555,-10,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1630,-5,0,1905,22,1,0 +2013,8,20,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,2,0,1649,-13,0,0 +2013,8,27,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,0,0,1425,-24,0,0 +2013,5,10,5,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1435,101,1,1624,90,1,0 +2013,6,28,5,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-2,0,2047,-16,0,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-5,0,2150,-5,0,0 +2013,4,10,3,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1400,289,1,1532,292,1,0 +2013,4,22,1,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-6,0,1628,-14,0,0 +2013,7,14,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,7,0,1844,6,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,820,11,0,1015,9,0,0 +2013,9,1,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1435,3,0,1740,7,0,0 +2013,4,9,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1645,73,1,1810,84,1,0 +2013,6,30,7,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,1,0,1400,-5,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,6,0,1704,-4,0,0 +2013,8,20,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,935,0,0,1130,2,0,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1315,0,0,1730,2,0,0 +2013,6,24,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,1,0,2213,29,1,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,5,0,817,-3,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,611,-2,0,917,-19,0,0 +2013,9,7,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-2,0,1058,-21,0,0 +2013,7,8,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,-6,0,1939,2,0,0 +2013,4,1,1,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1955,0,0,2131,-15,0,0 +2013,4,14,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1245,12,0,2059,-1,0,0 +2013,5,27,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2345,-2,0,719,-13,0,0 +2013,7,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,0,0,1705,-9,0,0 +2013,6,7,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1904,3,0,2015,-2,0,0 +2013,6,28,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,24,1,1300,9,0,0 +2013,5,16,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,12,0,1535,6,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,-3,0,840,-11,0,0 +2013,9,22,7,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,645,-9,0,935,-26,0,0 +2013,5,2,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-4,0,1011,-5,0,0 +2013,4,3,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1928,2,0,2120,-6,0,0 +2013,8,15,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-5,0,1359,1,0,0 +2013,8,23,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1516,104,1,1654,99,1,0 +2013,6,1,6,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,1245,7,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,-3,0,1810,-39,0,0 +2013,6,6,4,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,705,3,0,720,-3,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-3,0,2050,-5,0,0 +2013,10,4,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1455,6,0,1615,-1,0,0 +2013,10,24,4,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1306,-8,0,1419,-14,0,0 +2013,8,19,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1020,-4,0,1228,-8,0,0 +2013,10,2,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-5,0,1845,-5,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2010,87,1,2310,80,1,0 +2013,10,8,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1755,-3,0,2036,-22,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1510,11,0,1825,8,0,0 +2013,6,7,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1435,-3,0,1655,-3,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,4,0,2156,6,0,0 +2013,9,18,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,-3,0,2122,0,0,0 +2013,10,26,6,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1510,0,0,1755,-21,0,0 +2013,8,11,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-4,0,1743,-3,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1835,12,0,1955,11,0,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,635,-5,0,925,-11,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1805,159,1,2114,131,1,0 +2013,6,24,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2205,13,0,126,5,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-4,0,2010,-3,0,0 +2013,7,24,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,710,-6,0,1540,-4,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,6,0,1143,20,1,0 +2013,4,3,3,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,-2,0,1255,-7,0,0 +2013,7,19,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,-1,0,1844,-2,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1310,0,0,1640,3,0,0 +2013,5,18,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1640,-9,0,1725,-8,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2020,5,0,2230,6,0,0 +2013,7,24,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1115,9,0,1135,2,0,0 +2013,8,1,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1305,1,0,1450,-3,0,0 +2013,7,15,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,6,0,1720,-14,0,0 +2013,8,28,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,620,-4,0,930,-12,0,0 +2013,10,20,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1136,10,0,1420,8,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1035,24,1,1600,20,1,0 +2013,5,23,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1037,-2,0,1835,22,1,0 +2013,6,17,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,655,34,1,754,48,1,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,-1,0,1850,-7,0,0 +2013,10,22,2,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2058,-3,0,2347,3,0,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1459,-5,0,1801,-13,0,0 +2013,10,7,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-5,0,1638,-16,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1030,-5,0,1356,-11,0,0 +2013,8,29,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,14,0,1730,19,1,0 +2013,5,5,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1047,1,0,1456,-16,0,0 +2013,4,1,1,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,830,11,0,1113,-4,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2032,5,0,2229,-5,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1843,-4,0,2159,-20,0,0 +2013,7,1,1,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,820,-2,0,935,-9,0,0 +2013,10,22,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,0,0,2000,4,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,652,0,0,954,20,1,0 +2013,8,31,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1050,8,0,1215,6,0,0 +2013,10,12,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,1,0,1000,-3,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1641,-3,0,1719,-9,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,6,0,2045,-9,0,0 +2013,4,11,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1317,36,1,1530,24,1,0 +2013,5,10,5,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1115,0,0,1315,-7,0,0 +2013,9,17,2,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1455,1,0,1620,-6,0,0 +2013,5,26,7,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,-7,0,1925,-16,0,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,845,6,0,1410,1,0,0 +2013,5,2,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,730,-6,0,1527,-8,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,610,-4,0,723,3,0,0 +2013,6,1,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,-4,0,2220,-19,0,0 +2013,10,28,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,720,-1,0,935,-4,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-3,0,1712,-13,0,0 +2013,4,1,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-9,0,2106,7,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1012,2,0,1148,4,0,0 +2013,8,6,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,916,-3,0,1035,-19,0,0 +2013,9,19,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-5,0,705,-17,0,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2040,55,1,2145,46,1,0 +2013,7,15,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-4,0,2155,-16,0,0 +2013,6,11,2,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-2,0,1030,13,0,0 +2013,5,13,1,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1318,-5,0,2059,1,0,0 +2013,4,28,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-2,0,1151,-14,0,0 +2013,9,1,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,0,0,1030,-1,0,0 +2013,5,25,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,7,0,1510,-4,0,0 +2013,10,13,7,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1118,6,0,1720,5,0,0 +2013,8,20,2,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,820,2,0,1205,-5,0,0 +2013,4,24,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,930,0,0,1100,-2,0,0 +2013,9,4,3,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-7,0,1210,-32,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1455,-5,0,1628,-16,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1815,50,1,1935,55,1,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1018,54,1,1214,47,1,0 +2013,10,8,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1554,-2,0,1727,-6,0,0 +2013,8,5,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,3,0,619,-5,0,0 +2013,8,9,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1935,28,1,2145,22,1,0 +2013,9,18,3,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-3,0,603,-20,0,0 +2013,9,22,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,850,-1,0,935,4,0,0 +2013,8,23,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,615,-19,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1135,-3,0,1235,-3,0,0 +2013,5,26,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,-3,0,930,-5,0,0 +2013,6,2,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1201,8,0,1429,3,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,940,5,0,1100,-19,0,0 +2013,8,24,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-3,0,1604,-6,0,0 +2013,8,23,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1553,0,0,0 +2013,9,26,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1455,-4,0,1654,-19,0,0 +2013,9,26,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,5,0,1907,-16,0,0 +2013,9,14,6,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,90,1,1845,93,1,0 +2013,10,2,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1920,-9,0,2244,-24,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,1125,-3,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,940,-1,0,1125,1,0,0 +2013,9,26,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,9,0,1519,13,0,0 +2013,6,15,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,1,0,1005,-6,0,0 +2013,6,16,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,750,-1,0,1035,6,0,0 +2013,5,11,6,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1600,7,0,2112,2,0,0 +2013,8,11,7,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1255,-5,0,1420,-5,0,0 +2013,8,4,7,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,0,,857,0,1,1 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,73,1,850,65,1,0 +2013,6,6,4,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1503,18,1,1809,9,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1030,77,1,1405,70,1,0 +2013,7,29,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-6,0,1606,-10,0,0 +2013,8,23,5,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1719,-7,0,1854,-19,0,0 +2013,7,1,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,600,-3,0,725,-8,0,0 +2013,10,3,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1054,-6,0,1400,-24,0,0 +2013,7,11,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-5,0,1217,-4,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1455,2,0,1550,46,1,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2105,127,1,10,121,1,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,755,19,1,855,16,1,0 +2013,9,4,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-4,0,1517,-15,0,0 +2013,9,30,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1610,-1,0,1710,-14,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2210,3,0,14,17,1,0 +2013,6,10,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,705,-4,0,1026,-17,0,0 +2013,6,21,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,1,0,1939,26,1,0 +2013,10,15,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1758,-6,0,1845,-4,0,0 +2013,8,12,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1025,-3,0,1241,-3,0,0 +2013,6,3,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-1,0,604,-17,0,0 +2013,4,10,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,1551,-5,0,1841,-14,0,0 +2013,7,19,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,-5,0,621,-6,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1920,0,0,2045,-2,0,0 +2013,8,7,3,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,20,1,2057,38,1,0 +2013,8,18,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1744,0,,1906,0,1,1 +2013,8,25,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,-3,0,720,-11,0,0 +2013,8,31,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1645,-2,0,1855,-7,0,0 +2013,7,26,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,1,0,1750,4,0,0 +2013,10,27,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-12,0,2326,-10,0,0 +2013,6,17,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,3,0,2028,7,0,0 +2013,8,11,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,-2,0,1712,0,0,0 +2013,4,10,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,91,1,1200,83,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1215,-1,0,1346,-6,0,0 +2013,8,3,6,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,858,-9,0,0 +2013,10,20,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-5,0,1124,-7,0,0 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1516,7,0,1609,5,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2005,62,1,2305,58,1,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,-5,0,855,-12,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,-1,0,1914,-26,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,58,1,1220,51,1,0 +2013,9,12,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,14,0,2055,10,0,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1240,1,0,1521,3,0,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,32,1,1949,26,1,0 +2013,8,11,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1400,-4,0,1630,-19,0,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,-2,0,1242,10,0,0 +2013,8,27,2,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1150,0,0,1415,-21,0,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2203,15,1,630,-1,0,0 +2013,5,12,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,805,-7,0,935,-18,0,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,930,2,0,1245,0,0,0 +2013,4,4,4,EV,12264,Washington Dulles International,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,823,-7,0,946,-9,0,0 +2013,4,8,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2024,-9,0,2135,-16,0,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2147,2,0,2254,2,0,0 +2013,4,7,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,9,0,935,0,0,0 +2013,6,15,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2010,23,1,2150,15,1,0 +2013,10,14,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,0,0,1610,-4,0,0 +2013,6,12,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1940,1,0,50,-3,0,0 +2013,5,16,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1407,4,0,1815,-11,0,0 +2013,9,18,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,6,0,1908,3,0,0 +2013,9,15,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1659,-8,0,2211,-13,0,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-4,0,1256,-5,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1320,4,0,1640,0,0,0 +2013,6,7,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1715,8,0,1838,-5,0,0 +2013,4,8,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1500,1,0,1615,-7,0,0 +2013,5,6,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2155,24,1,2310,16,1,0 +2013,7,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1629,-1,0,1809,-7,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,955,-2,0,1055,-5,0,0 +2013,6,11,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,3,0,1540,-24,0,0 +2013,5,15,3,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1925,-4,0,2304,-29,0,0 +2013,10,2,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,-11,0,2157,-12,0,0 +2013,9,4,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1532,-1,0,1806,16,1,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,720,-1,0,830,-1,0,0 +2013,9,24,2,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,-2,0,2042,-28,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,900,2,0,1033,-2,0,0 +2013,7,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-2,0,1357,-7,0,0 +2013,6,16,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1735,-14,0,2020,-15,0,0 +2013,7,28,7,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,2030,0,,2156,0,1,1 +2013,7,26,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,-4,0,1130,-10,0,0 +2013,4,10,3,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1430,30,1,1644,28,1,0 +2013,5,24,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,117,1,1155,105,1,0 +2013,7,25,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1801,62,1,2029,39,1,0 +2013,10,18,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-7,0,747,-7,0,0 +2013,6,16,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-8,0,1115,-19,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1907,-6,0,2045,-21,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1425,58,1,1520,60,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1600,9,0,1737,-4,0,0 +2013,8,4,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1511,-5,0,1600,-1,0,0 +2013,7,22,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2007,-5,0,2140,28,1,0 +2013,5,10,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1020,1,0,1310,-4,0,0 +2013,5,18,6,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,9,0,611,12,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,740,-3,0,1125,2,0,0 +2013,8,8,4,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1220,42,1,1319,38,1,0 +2013,6,16,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1045,-1,0,1333,6,0,0 +2013,7,26,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,850,-6,0,1105,-11,0,0 +2013,7,5,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,655,184,1,825,175,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1227,0,0,1454,-7,0,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1410,94,1,1920,81,1,0 +2013,8,21,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1850,-6,0,2014,-11,0,0 +2013,6,2,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,-1,0,1910,-35,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,850,2,0,1313,11,0,0 +2013,10,3,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1735,64,1,1915,72,1,0 +2013,8,8,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,630,-2,0,735,8,0,0 +2013,5,24,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1243,4,0,1610,-3,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-5,0,1232,-3,0,0 +2013,8,12,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1138,-9,0,1429,-13,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1852,20,1,2200,16,1,0 +2013,7,8,1,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,2215,-8,0,639,-18,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,131,1,2300,139,1,0 +2013,6,8,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,920,-4,0,1530,-12,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1020,0,0,1730,-4,0,0 +2013,9,1,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,77,1,2109,65,1,0 +2013,6,7,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,14,0,2105,3,0,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1526,12,0,1641,-1,0,0 +2013,4,4,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-4,0,1401,16,1,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,805,0,0,1028,-1,0,0 +2013,5,23,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,0,0,2047,-5,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1650,4,0,1810,-19,0,0 +2013,8,11,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1324,6,0,1457,1,0,0 +2013,7,18,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,545,64,1,719,54,1,0 +2013,6,25,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,25,1,1710,9,0,0 +2013,7,2,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,-1,0,608,5,0,0 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,810,-1,0,1035,-4,0,0 +2013,10,6,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-8,0,1936,17,1,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1750,-5,0,1905,-8,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1635,0,0,1750,-13,0,0 +2013,4,2,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1800,10,0,2005,-2,0,0 +2013,10,8,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1605,-7,0,1819,-11,0,0 +2013,6,8,6,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,0,0,830,-12,0,0 +2013,5,6,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,715,-10,0,0 +2013,9,10,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,630,-6,0,736,-13,0,0 +2013,9,20,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,-3,0,2056,-14,0,0 +2013,8,11,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,-5,0,608,-6,0,0 +2013,4,5,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2025,0,0,2125,-2,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,840,-1,0,1012,8,0,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1845,4,0,2205,10,0,0 +2013,4,14,7,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,840,0,0,1110,6,0,0 +2013,7,29,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-5,0,1602,-9,0,0 +2013,9,9,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,0,0,1825,-7,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1240,4,0,1340,2,0,0 +2013,7,9,2,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,845,-1,0,955,-3,0,0 +2013,9,13,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1400,15,1,1425,9,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1055,-1,0,1325,-17,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1720,10,0,1940,34,1,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-10,0,1110,-16,0,0 +2013,10,16,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,815,-7,0,1050,-21,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1250,2,0,1455,2,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-1,0,2200,-23,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,600,2,0,740,5,0,0 +2013,4,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,-3,0,1045,-7,0,0 +2013,8,23,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1135,-1,0,1254,-14,0,0 +2013,10,1,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-2,0,1335,-10,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,-1,0,1135,6,0,0 +2013,6,19,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-5,0,1545,-13,0,0 +2013,5,8,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,29,1,2010,17,1,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1038,0,0,1135,-5,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1800,20,1,2030,4,0,0 +2013,9,22,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1837,-3,0,2057,-10,0,0 +2013,7,18,4,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1530,14,0,1635,13,0,0 +2013,8,16,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,825,-20,0,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-4,0,1105,-6,0,0 +2013,7,18,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,-4,0,1434,2,0,0 +2013,4,25,4,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1644,1,0,1940,-4,0,0 +2013,4,11,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,742,-7,0,919,11,0,0 +2013,6,24,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2005,-6,0,2024,14,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,-8,0,2040,-18,0,0 +2013,9,27,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1050,-7,0,1250,-10,0,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1700,24,1,1840,17,1,0 +2013,4,30,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-13,0,909,-1,0,0 +2013,10,9,3,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,827,-4,0,1011,-10,0,0 +2013,5,5,7,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,19,1,1630,14,0,0 +2013,9,17,2,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1525,0,0,1720,-12,0,0 +2013,5,19,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,77,1,2101,77,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-2,0,1227,-13,0,0 +2013,4,14,7,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,610,-11,0,809,-22,0,0 +2013,8,14,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1745,-4,0,1910,-4,0,0 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1305,-7,0,1434,-3,0,0 +2013,4,4,4,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1700,8,0,1835,-14,0,0 +2013,7,30,2,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1905,39,1,2020,37,1,0 +2013,6,20,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,645,-9,0,940,-8,0,0 +2013,5,21,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1750,5,0,2054,0,0,0 +2013,9,10,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,73,1,1316,68,1,0 +2013,4,12,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,944,10,0,1058,-1,0,0 +2013,9,8,7,FL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1037,1,0,1335,9,0,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,67,1,1740,61,1,0 +2013,8,12,1,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1601,-7,0,1645,-17,0,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1950,15,1,2145,19,1,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1220,23,1,1325,9,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1740,-1,0,1905,-9,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2050,2,0,2205,-1,0,0 +2013,10,25,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1710,-8,0,2130,-8,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1629,1,0,1919,-11,0,0 +2013,10,21,1,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,620,8,0,805,-28,0,0 +2013,6,18,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1054,-7,0,1309,-7,0,0 +2013,8,18,7,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,545,-8,0,727,-9,0,0 +2013,8,5,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1727,-4,0,1929,-24,0,0 +2013,7,25,4,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1205,3,0,1330,0,0,0 +2013,8,8,4,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,835,-1,0,1144,2,0,0 +2013,5,28,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-4,0,1345,-7,0,0 +2013,4,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,8,0,2054,9,0,0 +2013,4,8,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,720,-1,0,825,1,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-5,0,830,-20,0,0 +2013,9,28,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-4,0,1315,10,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1830,12,0,2300,6,0,0 +2013,5,17,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-12,0,1020,-17,0,0 +2013,10,16,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-5,0,1725,19,1,0 +2013,5,1,3,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1950,-9,0,2056,-20,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1325,5,0,1625,-3,0,0 +2013,6,10,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,76,1,2118,74,1,0 +2013,8,11,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,935,-10,0,1105,-12,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1705,26,1,2021,24,1,0 +2013,6,5,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1348,-3,0,1558,-17,0,0 +2013,6,6,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-2,0,2055,-25,0,0 +2013,9,27,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-4,0,1010,-11,0,0 +2013,10,27,7,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1035,-2,0,1420,-4,0,0 +2013,6,19,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,905,4,0,1015,3,0,0 +2013,5,29,3,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1230,9,0,1545,62,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,1,0,1250,1,0,0 +2013,10,29,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1115,0,0,1220,3,0,0 +2013,4,21,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1746,19,1,2000,2,0,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1150,-7,0,1513,-14,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-4,0,1109,-5,0,0 +2013,10,28,1,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,927,-16,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1813,2,0,1948,-5,0,0 +2013,10,22,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1620,-4,0,1755,-17,0,0 +2013,5,7,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,705,-2,0,800,-4,0,0 +2013,4,14,7,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1925,19,1,2120,1,0,0 +2013,10,1,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,739,-12,0,1009,-2,0,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,2008,-2,0,2331,-13,0,0 +2013,7,16,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,650,-5,0,812,-5,0,0 +2013,10,31,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1020,-6,0,1200,-3,0,0 +2013,4,5,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,715,0,0,755,-5,0,0 +2013,4,1,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1903,-4,0,2100,-15,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,726,-1,0,859,-8,0,0 +2013,7,5,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-3,0,1635,-15,0,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,-3,0,2034,1,0,0 +2013,9,26,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,855,4,0,1210,-4,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,0,0,1555,-3,0,0 +2013,10,18,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,1347,-20,0,0 +2013,7,28,7,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1940,-5,0,2225,-7,0,0 +2013,10,21,1,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1635,47,1,2042,40,1,0 +2013,7,16,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,830,-4,0,940,-22,0,0 +2013,6,9,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-6,0,1120,-7,0,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,737,-7,0,1328,-10,0,0 +2013,7,24,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2033,-7,0,2327,-34,0,0 +2013,7,25,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,0,0,2115,-8,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,164,1,1625,157,1,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1235,57,1,1340,52,1,0 +2013,6,8,6,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2038,34,1,2303,15,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1050,-1,0,1241,-7,0,0 +2013,8,25,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1515,-2,0,1600,-12,0,0 +2013,5,27,1,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,67,1,1620,63,1,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1545,-5,0,1724,-6,0,0 +2013,8,3,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1015,27,1,1140,15,1,0 +2013,5,27,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,1,0,1310,-1,0,0 +2013,6,16,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1715,10,0,2010,7,0,0 +2013,10,29,2,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1055,-6,0,1459,-10,0,0 +2013,10,21,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,735,-11,0,1040,-13,0,0 +2013,4,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1711,18,1,1819,9,0,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,45,1,1930,33,1,0 +2013,10,8,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,-7,0,1706,-8,0,0 +2013,5,2,4,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1007,-5,0,1450,-15,0,0 +2013,4,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1730,-3,0,1753,-13,0,0 +2013,5,16,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1935,6,0,2050,1,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,1,0,2250,-4,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,14,0,1408,11,0,0 +2013,7,7,7,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1820,-4,0,1958,85,1,0 +2013,6,27,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,929,43,1,1022,40,1,0 +2013,7,19,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2320,10,0,608,-12,0,0 +2013,6,13,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,63,1,1900,52,1,0 +2013,10,4,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-2,0,1642,-4,0,0 +2013,7,9,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,128,1,1710,200,1,0 +2013,6,24,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,-1,0,940,-15,0,0 +2013,8,24,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-7,0,1300,-20,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,-4,0,1459,137,1,0 +2013,9,16,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,3,0,925,3,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1020,6,0,1430,3,0,0 +2013,8,21,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,-5,0,1305,2,0,0 +2013,7,19,5,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,2300,-10,0,700,-13,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1530,58,1,1850,37,1,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1425,20,1,1845,13,0,0 +2013,4,3,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1145,-7,0,1302,-1,0,0 +2013,9,17,2,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1700,10,0,1825,20,1,0 +2013,6,15,6,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,722,-3,0,921,-16,0,0 +2013,9,13,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1515,-3,0,1628,-3,0,0 +2013,5,21,2,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,0,,1715,0,1,1 +2013,9,10,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,750,-3,0,1130,12,0,0 +2013,9,29,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1130,-3,0,1500,-13,0,0 +2013,9,27,5,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1707,-4,0,1830,-9,0,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2050,-4,0,2215,-8,0,0 +2013,7,13,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-6,0,940,-12,0,0 +2013,4,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1135,0,0,1245,-12,0,0 +2013,7,21,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,38,1,1128,31,1,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1835,-3,0,2145,-24,0,0 +2013,7,19,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1814,1,0,2105,-2,0,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1938,-2,0,2247,-16,0,0 +2013,8,18,7,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1018,190,1,1120,175,1,0 +2013,6,9,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1015,27,1,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-3,0,1522,-2,0,0 +2013,8,23,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2215,2,0,620,8,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,8,0,1540,-11,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,835,-3,0,940,19,1,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,710,-6,0,850,-26,0,0 +2013,6,18,2,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,9,0,1010,4,0,0 +2013,8,18,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,97,1,2001,95,1,0 +2013,9,4,3,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,115,1,0,515,-23,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,65,1,1210,62,1,0 +2013,5,3,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,740,17,1,855,40,1,0 +2013,4,16,2,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-7,0,947,-1,0,0 +2013,7,21,7,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,0,0,804,-4,0,0 +2013,10,10,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1325,40,1,1355,33,1,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1000,-1,0,1114,-5,0,0 +2013,6,22,6,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,2,0,2020,-17,0,0 +2013,10,31,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,6,0,1740,4,0,0 +2013,5,21,2,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-2,0,1355,-12,0,0 +2013,10,18,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,550,-4,0,727,1,0,0 +2013,6,27,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,34,1,1731,42,1,0 +2013,8,8,4,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,8,0,803,21,1,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,11,0,1545,4,0,0 +2013,5,2,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1505,-5,0,1852,-11,0,0 +2013,8,15,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1119,5,0,1715,-18,0,0 +2013,8,30,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1245,1,0,1405,-2,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,1817,-5,0,2046,-28,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,605,-1,0,920,-9,0,0 +2013,10,16,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1340,-4,0,1505,-2,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,-4,0,1235,-6,0,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1644,-5,0,1815,-3,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1857,2,0,2023,2,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,855,1,0,1030,-8,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1739,124,1,1842,119,1,0 +2013,4,4,4,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-3,0,804,-12,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1511,21,1,1722,13,0,0 +2013,10,20,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1614,14,0,0 +2013,8,4,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,-2,0,903,-31,0,0 +2013,8,4,7,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,818,-3,0,1413,-20,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,4,0,920,-12,0,0 +2013,6,25,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,98,1,2053,85,1,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,8,0,1815,6,0,0 +2013,4,6,6,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,1,0,1430,-3,0,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,2,0,2105,-1,0,0 +2013,8,26,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-2,0,1200,-10,0,0 +2013,9,13,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1620,-4,0,1657,1,0,0 +2013,6,9,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,915,-1,0,1101,-20,0,0 +2013,8,25,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1820,-9,0,2207,-10,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,2359,-9,0,454,-13,0,0 +2013,9,23,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-6,0,2231,-2,0,0 +2013,7,18,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-4,0,844,5,0,0 +2013,10,24,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1411,-5,0,1620,-12,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,-4,0,922,-7,0,0 +2013,9,1,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1224,-10,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1015,9,0,1150,-4,0,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1055,9,0,1300,15,1,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1700,0,0,2053,-19,0,0 +2013,6,20,4,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1725,8,0,1730,0,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2113,-5,0,2225,-19,0,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1800,21,1,1920,30,1,0 +2013,8,9,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1523,-5,0,1628,-12,0,0 +2013,9,2,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1245,9,0,1352,-3,0,0 +2013,9,25,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,608,43,1,925,39,1,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,623,-1,0,750,-7,0,0 +2013,5,14,2,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-13,0,2015,-34,0,0 +2013,7,5,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1606,31,1,1909,1,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,818,0,0,1659,-24,0,0 +2013,10,14,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,-8,0,2025,-19,0,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1115,-1,0,1259,5,0,0 +2013,6,22,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-4,0,1604,-4,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,12,0,906,42,1,0 +2013,7,10,3,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1920,0,,2110,0,1,1 +2013,10,24,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,11,0,1735,3,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1450,-3,0,1517,6,0,0 +2013,4,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1325,12,0,1755,-4,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,705,0,,931,0,1,1 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-1,0,1000,-6,0,0 +2013,7,9,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,953,-1,0,1121,-11,0,0 +2013,10,21,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,935,-5,0,1004,-11,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1102,-2,0,1230,-14,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,640,-3,0,1023,-3,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,29,1,40,21,1,0 +2013,5,21,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,130,1,1425,244,1,0 +2013,7,21,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-1,0,940,-19,0,0 +2013,7,30,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-11,0,1334,-13,0,0 +2013,7,30,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,904,-8,0,1036,-22,0,0 +2013,9,29,7,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-10,0,1914,-14,0,0 +2013,5,3,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1135,0,,1149,0,1,1 +2013,4,15,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,705,-6,0,829,-17,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1335,39,1,1450,150,1,0 +2013,7,31,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-6,0,1906,-10,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,13,0,925,8,0,0 +2013,7,20,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,122,1,1844,147,1,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,26,1,2130,7,0,0 +2013,9,22,7,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,-8,0,1531,-4,0,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,-7,0,1029,-24,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2024,50,1,2330,52,1,0 +2013,8,5,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-9,0,1209,-13,0,0 +2013,6,22,6,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,16,1,612,4,0,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1452,6,0,1800,2,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1630,7,0,1820,14,0,0 +2013,9,30,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1815,-4,0,2135,-36,0,0 +2013,6,26,3,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,-3,0,2203,3,0,0 +2013,6,22,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,24,1,1200,27,1,0 +2013,6,22,6,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1311,41,1,1415,46,1,0 +2013,6,30,7,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1505,15,1,1637,15,1,0 +2013,8,6,2,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,18,1,1305,27,1,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1120,-11,0,1213,-9,0,0 +2013,10,17,4,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1716,9,0,1803,18,1,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,59,1,2310,58,1,0 +2013,8,1,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,825,-1,0,1140,8,0,0 +2013,10,18,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,604,-3,0,703,36,1,0 +2013,9,16,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-5,0,1623,-13,0,0 +2013,9,15,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1620,0,0,1811,-9,0,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,1,0,1110,-12,0,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2354,7,0,810,-19,0,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,3,0,755,5,0,0 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,955,0,0,1240,-6,0,0 +2013,9,21,6,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-8,0,1636,-15,0,0 +2013,9,22,7,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1854,-12,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1912,-2,0,2015,-18,0,0 +2013,9,28,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1550,-7,0,1846,-14,0,0 +2013,7,28,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,700,0,0,905,0,0,0 +2013,10,25,5,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1759,-12,0,2041,-26,0,0 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,46,1,1910,50,1,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,944,-4,0,1054,-2,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1610,-2,0,1720,-29,0,0 +2013,4,1,1,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1915,-5,0,2155,-15,0,0 +2013,5,24,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1735,10,0,2035,-3,0,0 +2013,4,17,3,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-5,0,2200,10,0,0 +2013,9,25,3,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1530,-5,0,1715,-11,0,0 +2013,5,14,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1424,2,0,1531,-6,0,0 +2013,6,20,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-9,0,1949,-28,0,0 +2013,7,3,3,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1425,-3,0,1710,8,0,0 +2013,9,10,2,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,949,7,0,1212,15,1,0 +2013,5,22,3,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1250,-1,0,1525,-13,0,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,725,-4,0,855,-22,0,0 +2013,9,13,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1225,82,1,1400,77,1,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,920,-3,0,1035,-3,0,0 +2013,6,8,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,-10,0,1705,1,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1920,-5,0,55,-1,0,0 +2013,9,29,7,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1435,-9,0,1645,-27,0,0 +2013,8,6,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,0,0,915,-2,0,0 +2013,5,1,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,8,0,2030,5,0,0 +2013,7,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1955,3,0,2115,-21,0,0 +2013,4,3,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,0,0,1510,-6,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1239,-4,0,1628,-15,0,0 +2013,6,14,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,8,0,1440,24,1,0 +2013,4,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,-1,0,1150,-8,0,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-6,0,1130,-6,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1455,14,0,2015,3,0,0 +2013,7,30,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,-3,0,1115,-3,0,0 +2013,10,15,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1718,33,1,1921,23,1,0 +2013,4,13,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,935,-3,0,1221,-2,0,0 +2013,10,6,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1345,0,0,1500,-6,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,25,1,1815,29,1,0 +2013,4,1,1,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,715,-2,0,949,-3,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,12,0,1655,12,0,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,41,1,1250,31,1,0 +2013,9,15,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,0,0,928,-7,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1940,-2,0,2105,-2,0,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,33,1,1922,30,1,0 +2013,9,16,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-5,0,825,-15,0,0 +2013,8,11,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1913,-5,0,2048,-3,0,0 +2013,4,18,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1215,53,1,1320,43,1,0 +2013,8,23,5,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1437,-6,0,1610,-15,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,0,0,1458,-10,0,0 +2013,9,17,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1915,-5,0,2045,-8,0,0 +2013,8,19,1,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1530,-9,0,1715,-20,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-6,0,1156,0,0,0 +2013,7,6,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1855,-2,0,2024,-8,0,0 +2013,4,25,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1545,12,0,1827,26,1,0 +2013,9,20,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,61,1,820,57,1,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,830,77,1,1001,86,1,0 +2013,5,5,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1235,6,0,1355,2,0,0 +2013,5,18,6,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1705,13,0,1929,0,0,0 +2013,4,22,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2030,123,1,2321,131,1,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,22,1,905,20,1,0 +2013,10,5,6,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,3,0,1350,-21,0,0 +2013,5,21,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,615,-2,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2059,-4,0,2211,6,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,-6,0,1320,-11,0,0 +2013,9,4,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1700,143,1,1849,194,1,0 +2013,7,21,7,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,855,-3,0,1101,-5,0,0 +2013,5,10,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1641,35,1,1743,16,1,0 +2013,7,22,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,566,1,1415,570,1,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1700,4,0,1820,3,0,0 +2013,6,28,5,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1310,193,1,1659,199,1,0 +2013,5,16,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,31,1,1000,21,1,0 +2013,8,8,4,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,25,1,1600,23,1,0 +2013,5,24,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,749,210,1,925,224,1,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,905,15,1,1005,11,0,0 +2013,10,26,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-7,0,1455,-4,0,0 +2013,10,11,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,959,2,0,1132,-6,0,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1210,2,0,1325,-1,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,830,2,0,950,-8,0,0 +2013,10,29,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1840,-5,0,1958,-6,0,0 +2013,9,7,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-7,0,1319,6,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1623,27,1,1757,22,1,0 +2013,4,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1000,50,1,1230,30,1,0 +2013,6,30,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,1,0,1807,-5,0,0 +2013,8,12,1,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1745,27,1,2020,20,1,0 +2013,8,23,5,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1005,76,1,1351,70,1,0 +2013,4,26,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,45,1,1410,77,1,0 +2013,9,5,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,-2,0,1405,-8,0,0 +2013,5,24,5,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,2,0,2320,1,0,0 +2013,5,14,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,-5,0,2259,-21,0,0 +2013,4,21,7,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,0,0,2048,5,0,0 +2013,10,22,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,46,-8,0,841,-6,0,0 +2013,9,29,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-8,0,1958,-1,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,22,1,1547,8,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,744,-6,0,1103,-6,0,0 +2013,8,16,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,4,0,2034,1,0,0 +2013,10,31,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1155,-6,0,1940,-13,0,0 +2013,10,24,4,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,2017,-13,0,2115,-20,0,0 +2013,4,17,3,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,4,0,1445,1,0,0 +2013,9,14,6,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-3,0,1712,1,0,0 +2013,6,21,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,0,,2205,0,1,1 +2013,6,18,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,830,23,1,950,33,1,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,-6,0,1605,-8,0,0 +2013,10,14,1,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,0,0,1642,-5,0,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1752,-10,0,1936,-13,0,0 +2013,5,31,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-7,0,2103,-23,0,0 +2013,9,18,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,700,-4,0,831,-14,0,0 +2013,6,30,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,930,5,0,1327,4,0,0 +2013,10,26,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-9,0,2012,-15,0,0 +2013,7,27,6,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2015,-2,0,2300,10,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,855,2,0,1015,-6,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,800,-3,0,925,-2,0,0 +2013,6,28,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,1002,-5,0,0 +2013,10,18,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1225,1,0,1429,-17,0,0 +2013,7,21,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1809,67,1,2140,47,1,0 +2013,7,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,723,-1,0,924,-8,0,0 +2013,8,28,3,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-5,0,1945,-1,0,0 +2013,4,21,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,0,0,1945,-4,0,0 +2013,5,27,1,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1650,4,0,1843,-7,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2125,5,0,2230,-8,0,0 +2013,9,4,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1730,1,0,2005,-12,0,0 +2013,5,30,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,-5,0,1140,-7,0,0 +2013,8,22,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1032,-8,0,1336,-17,0,0 +2013,9,27,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2039,-2,0,2200,-3,0,0 +2013,6,23,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,96,1,147,82,1,0 +2013,10,8,2,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-13,0,2015,-36,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1205,-2,0,1322,-10,0,0 +2013,5,13,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1915,2,0,2244,-4,0,0 +2013,9,4,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1500,0,0,1651,-24,0,0 +2013,10,14,1,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1130,-7,0,1354,-8,0,0 +2013,9,17,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1210,-5,0,1309,-23,0,0 +2013,6,25,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-5,0,1405,-14,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1715,111,1,1953,109,1,0 +2013,7,17,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1515,35,1,1755,-3,0,0 +2013,8,8,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,835,-2,0,940,-10,0,0 +2013,4,20,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-6,0,2125,6,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,845,27,1,1205,15,1,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,4,0,1115,10,0,0 +2013,9,26,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1115,0,,1235,0,1,1 +2013,4,25,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,0,1755,-24,0,0 +2013,6,2,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,1,0,1458,7,0,0 +2013,8,27,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1758,-8,0,2100,-6,0,0 +2013,6,29,6,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-7,0,900,12,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1328,0,0,1457,-8,0,0 +2013,9,18,3,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1754,4,0,1955,-8,0,0 +2013,7,31,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,944,-1,0,1100,3,0,0 +2013,6,13,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,11,0,1628,18,1,0 +2013,7,21,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1837,31,1,2229,31,1,0 +2013,8,29,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,710,-6,0,815,-16,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1315,0,0,1526,-10,0,0 +2013,5,30,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1831,7,0,2000,1,0,0 +2013,4,4,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,30,1,1915,14,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1557,-3,0,1658,-14,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1618,1,0,1810,-17,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,710,0,,1111,0,1,1 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1957,-3,0,2128,-6,0,0 +2013,10,2,3,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1717,-4,0,2026,-18,0,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,935,-5,0,1040,-18,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,13,0,2305,1,0,0 +2013,8,24,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,606,-4,0,1425,0,0,0 +2013,5,28,2,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-10,0,935,-17,0,0 +2013,6,19,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-3,0,1335,-9,0,0 +2013,10,20,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,-9,0,1546,-2,0,0 +2013,7,13,6,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1215,14,0,1835,11,0,0 +2013,9,21,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,837,35,1,1155,23,1,0 +2013,5,18,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-1,0,1000,-23,0,0 +2013,6,28,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1105,0,0,1444,-10,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1043,-3,0,1155,-11,0,0 +2013,5,18,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,7,0,606,2,0,0 +2013,8,26,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,26,1,2110,18,1,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1855,3,0,2020,-2,0,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,835,-11,0,1106,-21,0,0 +2013,7,6,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1810,9,0,2055,-6,0,0 +2013,8,20,2,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1119,2,0,1255,-7,0,0 +2013,6,20,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1238,31,1,1338,12,0,0 +2013,4,23,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1210,-6,0,1230,-22,0,0 +2013,7,25,4,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2130,6,0,2346,-4,0,0 +2013,6,21,5,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1645,49,1,2135,52,1,0 +2013,8,30,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,1117,-10,0,0 +2013,5,8,3,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1430,-3,0,1845,12,0,0 +2013,9,26,4,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1520,6,0,1950,1,0,0 +2013,5,17,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-4,0,1410,-7,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,12,0,6,4,0,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,1,0,1200,-16,0,0 +2013,10,17,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-1,0,1550,-23,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1525,-1,0,1645,-8,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,2016,-2,0,100,-3,0,0 +2013,8,14,3,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,34,1,1125,27,1,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-3,0,1305,-19,0,0 +2013,5,15,3,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1526,2,0,1627,-4,0,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1750,0,0,1900,-9,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2005,-2,0,2057,5,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1220,-3,0,1335,-12,0,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,912,11,0,1115,27,1,0 +2013,5,12,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1551,-9,0,1903,6,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,739,14,0,912,1,0,0 +2013,5,13,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-3,0,805,-26,0,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1605,7,0,1735,3,0,0 +2013,10,10,4,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1101,-6,0,1418,-20,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1036,6,0,1242,-3,0,0 +2013,8,29,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,-9,0,2015,-13,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1755,-4,0,2041,-8,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1545,2,0,1850,-11,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,-1,0,1356,-14,0,0 +2013,4,19,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2138,-4,0,600,-41,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1620,-5,0,1705,1,0,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,-7,0,25,-24,0,0 +2013,6,15,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1130,-2,0,1349,-5,0,0 +2013,6,24,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1244,43,1,2045,29,1,0 +2013,4,27,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1506,-4,0,2347,-22,0,0 +2013,7,20,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1535,3,0,1655,-1,0,0 +2013,6,27,4,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2208,40,1,600,42,1,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1740,39,1,1955,40,1,0 +2013,8,1,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,372,1,1919,358,1,0 +2013,9,12,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1405,41,1,1530,32,1,0 +2013,6,20,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2115,-5,0,2328,2,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1336,5,0,1527,19,1,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1755,0,0,1900,-4,0,0 +2013,6,28,5,DL,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1928,55,1,2053,48,1,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,1,0,1115,0,0,0 +2013,10,28,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,839,-2,0,1035,-11,0,0 +2013,5,27,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1910,-7,0,2040,-16,0,0 +2013,10,7,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1145,-9,0,1309,50,1,0 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,845,-3,0,1100,-9,0,0 +2013,4,2,2,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1800,0,0,1945,-5,0,0 +2013,6,2,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-3,0,2055,-20,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,710,-16,0,0 +2013,6,17,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1440,-4,0,1539,-6,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,0,0,1856,-11,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,253,1,935,244,1,0 +2013,8,12,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-3,0,755,-14,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,0,0,2123,-10,0,0 +2013,9,9,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,19,1,1810,14,0,0 +2013,10,2,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1734,-3,0,1820,-2,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1330,-6,0,1705,-21,0,0 +2013,5,18,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,-3,0,1816,-8,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-9,0,2354,-6,0,0 +2013,9,21,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2329,-12,0,515,-25,0,0 +2013,6,27,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-5,0,840,-17,0,0 +2013,10,16,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1420,-1,0,1550,-19,0,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1345,10,0,1615,-11,0,0 +2013,10,19,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,937,-5,0,1103,-14,0,0 +2013,4,23,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,20,1,1838,32,1,0 +2013,4,8,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1815,-5,0,1915,-3,0,0 +2013,5,8,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,4,0,2128,-9,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,13,0,1803,18,1,0 +2013,4,17,3,UA,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1937,-8,0,2120,-29,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1645,63,1,1905,50,1,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1740,20,1,2315,3,0,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,152,1,2135,177,1,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1200,-2,0,1256,8,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,177,1,2047,171,1,0 +2013,7,8,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,-1,0,1411,-5,0,0 +2013,8,17,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,-5,0,1309,-6,0,0 +2013,6,13,4,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-10,0,2149,-2,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,-2,0,1000,-13,0,0 +2013,9,4,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,635,-6,0,750,-11,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,-3,0,1250,-11,0,0 +2013,6,9,7,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,-4,0,1415,-7,0,0 +2013,4,14,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1015,-4,0,1259,-2,0,0 +2013,4,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,730,0,0,1004,-3,0,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,930,10,0,1340,-9,0,0 +2013,4,16,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,837,-5,0,1601,-31,0,0 +2013,7,13,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1635,18,1,1800,0,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1705,16,1,2045,10,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1705,1,0,1820,3,0,0 +2013,4,4,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,230,-8,0,648,-6,0,0 +2013,10,26,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1250,-7,0,1521,6,0,0 +2013,8,12,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,31,1,1820,25,1,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1708,93,1,1837,91,1,0 +2013,6,3,1,VX,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1910,1,0,2155,-8,0,0 +2013,4,16,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,0,,1605,0,1,1 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1340,-4,0,1555,-3,0,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,-2,0,1546,-14,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,4,0,1155,28,1,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1955,31,1,2225,28,1,0 +2013,9,2,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1455,2,0,1620,3,0,0 +2013,8,8,4,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,21,1,1345,21,1,0 +2013,10,15,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1855,24,1,2240,6,0,0 +2013,5,9,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,902,-9,0,957,-18,0,0 +2013,10,21,1,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,929,-3,0,1225,-3,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1325,50,1,1630,29,1,0 +2013,5,5,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,262,1,2040,272,1,0 +2013,10,17,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,845,-6,0,1116,-3,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-1,0,1836,1,0,0 +2013,6,16,7,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,2,0,1555,0,0,0 +2013,5,11,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1014,5,0,1258,3,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,851,-1,0,941,12,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,944,-5,0,1105,-2,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,2,0,2115,6,0,0 +2013,9,19,4,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2035,4,0,2220,-15,0,0 +2013,10,7,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1347,80,1,1520,96,1,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1440,-5,0,1525,-4,0,0 +2013,5,20,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,125,1,1425,126,1,0 +2013,9,16,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1334,-10,0,1727,-19,0,0 +2013,9,23,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,608,-9,0,800,-25,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,0,0,2332,-10,0,0 +2013,8,14,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2035,10,0,2200,7,0,0 +2013,4,28,7,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,810,-4,0,1015,3,0,0 +2013,5,3,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-6,0,1017,-12,0,0 +2013,9,8,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1740,-4,0,1955,-40,0,0 +2013,10,27,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1820,-1,0,2025,-11,0,0 +2013,8,12,1,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-3,0,2030,-18,0,0 +2013,8,21,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-3,0,1255,-8,0,0 +2013,4,2,2,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,645,-5,0,800,-13,0,0 +2013,6,24,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,80,1,1720,80,1,0 +2013,10,5,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-23,0,0 +2013,4,23,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,645,1,0,740,-8,0,0 +2013,4,18,4,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1725,12,0,2101,14,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1341,-3,0,1708,4,0,0 +2013,9,6,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-7,0,1134,-11,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,10,0,1550,8,0,0 +2013,6,28,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1256,-2,0,1416,11,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,750,9,0,1015,9,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,714,15,1,1015,-4,0,0 +2013,9,29,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,610,-4,0,902,-4,0,0 +2013,8,3,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1545,7,0,1715,-2,0,0 +2013,4,28,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1000,-10,0,1325,-16,0,0 +2013,6,9,7,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1125,2,0,2005,-28,0,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1902,25,1,2215,25,1,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,11,0,2050,9,0,0 +2013,8,16,5,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1036,-8,0,1224,-12,0,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1925,-5,0,2240,-2,0,0 +2013,9,3,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2054,-11,0,2214,36,1,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1135,-6,0,1430,6,0,0 +2013,5,29,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,9,0,1940,-3,0,0 +2013,5,15,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2224,-4,0,615,-21,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1455,11,0,1700,4,0,0 +2013,4,13,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,0,0,842,-14,0,0 +2013,6,28,5,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1521,-7,0,1623,51,1,0 +2013,8,14,3,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2220,-5,0,636,-28,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-7,0,1200,2,0,0 +2013,8,21,3,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-2,0,1315,1,0,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1245,14,0,1845,16,1,0 +2013,4,6,6,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1548,-10,0,1844,-10,0,0 +2013,6,4,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-10,0,1507,-19,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1443,-6,0,1600,-11,0,0 +2013,10,17,4,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1120,2,0,1633,-6,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,730,0,0,1300,2,0,0 +2013,9,25,3,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,822,-4,0,1615,-23,0,0 +2013,4,1,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-11,0,721,-22,0,0 +2013,4,26,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1730,-14,0,2014,-18,0,0 +2013,7,23,2,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1700,-8,0,1844,-14,0,0 +2013,9,30,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1900,15,1,2015,10,0,0 +2013,10,27,7,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1510,58,1,1920,46,1,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1304,1,0,1430,-20,0,0 +2013,7,9,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1900,113,1,2025,126,1,0 +2013,5,9,4,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1053,-1,0,1220,-19,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-5,0,2036,-9,0,0 +2013,7,1,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,811,0,0,1359,12,0,0 +2013,4,21,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-4,0,848,-3,0,0 +2013,8,6,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,0,0,1900,-4,0,0 +2013,6,7,5,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-5,0,841,-22,0,0 +2013,5,9,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-8,0,1019,-22,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-5,0,1310,-2,0,0 +2013,8,15,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,27,1,1815,24,1,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1405,1,0,1840,-26,0,0 +2013,10,6,7,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1706,-6,0,1909,-33,0,0 +2013,8,4,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1010,-6,0,1319,18,1,0 +2013,4,16,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1334,16,1,1655,2,0,0 +2013,10,15,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,642,0,0,806,10,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1821,222,1,2149,177,1,0 +2013,6,26,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1136,-5,0,1413,-2,0,0 +2013,4,24,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2050,-7,0,2159,-9,0,0 +2013,4,12,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-8,0,800,-8,0,0 +2013,9,20,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,827,-6,0,0 +2013,6,5,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-9,0,704,-16,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1250,12,0,1410,0,0,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1416,1,0,0 +2013,10,15,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1235,0,0,1330,-11,0,0 +2013,5,16,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-5,0,1358,-10,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,17,1,2110,11,0,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,945,8,0,1535,4,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,5,0,1145,7,0,0 +2013,9,27,5,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,0,0,1240,-21,0,0 +2013,5,7,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,15,1,1825,25,1,0 +2013,9,6,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,555,-5,0,1120,-6,0,0 +2013,9,21,6,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1310,-6,0,1520,-9,0,0 +2013,4,12,5,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2105,34,1,532,42,1,0 +2013,7,24,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-9,0,913,-7,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,15,1,1650,6,0,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,955,1,0,1218,7,0,0 +2013,8,2,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,4,0,1515,-9,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,935,-2,0,1200,-1,0,0 +2013,5,4,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,816,-3,0,1148,-17,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,93,1,2323,95,1,0 +2013,10,6,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1705,-2,0,2123,-12,0,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1921,118,1,2032,117,1,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2207,6,0,2342,-9,0,0 +2013,9,30,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2000,118,1,2100,122,1,0 +2013,9,14,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,700,-5,0,829,-12,0,0 +2013,10,24,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,930,-4,0,0 +2013,6,4,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-6,0,1315,3,0,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,730,0,,830,0,1,1 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,-6,0,2249,-21,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,0,0,1940,-14,0,0 +2013,10,2,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-4,0,1842,-4,0,0 +2013,6,11,2,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,16,1,1940,10,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2205,36,1,13,29,1,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1420,-6,0,1552,-24,0,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1750,6,0,1955,8,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2023,8,0,2339,20,1,0 +2013,4,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-6,0,1312,-12,0,0 +2013,6,20,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-2,0,1202,-1,0,0 +2013,8,31,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1035,-3,0,1255,-29,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1205,-1,0,1325,-9,0,0 +2013,9,5,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1645,-9,0,1752,-33,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-8,0,1225,-7,0,0 +2013,7,27,6,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,139,1,840,137,1,0 +2013,6,14,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,-5,0,1550,7,0,0 +2013,4,19,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1350,-6,0,1532,28,1,0 +2013,9,15,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,955,56,1,1255,45,1,0 +2013,5,3,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2155,-1,0,2320,-12,0,0 +2013,9,6,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-9,0,923,0,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,85,1,2000,82,1,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-6,0,1326,-16,0,0 +2013,9,24,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1036,-1,0,1300,-1,0,0 +2013,9,18,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,852,-13,0,1006,-22,0,0 +2013,6,4,2,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1116,234,1,1306,244,1,0 +2013,10,20,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-3,0,2020,2,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2013,139,1,2300,90,1,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,-2,0,1155,-9,0,0 +2013,4,26,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,723,-5,0,1019,-12,0,0 +2013,5,15,3,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1339,-6,0,1657,-5,0,0 +2013,6,16,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1242,-8,0,1345,5,0,0 +2013,4,18,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,30,1,1922,26,1,0 +2013,9,23,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1500,-6,0,1600,-12,0,0 +2013,6,19,3,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1415,-4,0,1611,13,0,0 +2013,8,14,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-4,0,910,-6,0,0 +2013,10,30,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-4,0,744,7,0,0 +2013,7,15,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-4,0,1220,1,0,0 +2013,8,23,5,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,-9,0,2206,-11,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,30,1,2315,24,1,0 +2013,8,19,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,4,0,719,7,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,-4,0,956,1,0,0 +2013,7,4,4,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,-1,0,1514,0,0,0 +2013,5,15,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1543,11,0,1858,57,1,0 +2013,8,11,7,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,53,1,1556,49,1,0 +2013,6,16,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,13,0,2050,15,1,0 +2013,4,22,1,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1940,49,1,2222,41,1,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,42,1,2025,52,1,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,32,1,2200,39,1,0 +2013,7,17,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,-5,0,1028,-8,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1945,-2,0,2202,-7,0,0 +2013,4,21,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,856,4,0,1041,-20,0,0 +2013,4,18,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1910,-3,0,2040,-5,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1705,1,0,1845,-9,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,5,0,1000,-6,0,0 +2013,9,30,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,18,1,1240,21,1,0 +2013,9,9,1,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,815,-6,0,1355,7,0,0 +2013,4,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,0,,724,0,1,1 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,19,1,2155,13,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1220,-6,0,1315,-13,0,0 +2013,8,4,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1232,15,1,1440,25,1,0 +2013,10,21,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-4,0,659,-8,0,0 +2013,4,15,1,WN,10529,Bradley International,Hartford,CT,14635,Southwest Florida International,Fort Myers,FL,1040,-5,0,1345,-15,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,57,1,1005,51,1,0 +2013,6,29,6,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,955,-4,0,1145,-19,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2210,15,1,2339,4,0,0 +2013,5,16,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1113,75,1,1217,89,1,0 +2013,9,26,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1600,23,1,1610,17,1,0 +2013,6,16,7,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1325,47,1,1600,34,1,0 +2013,7,15,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-4,0,1430,-7,0,0 +2013,5,14,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1655,-15,0,0 +2013,10,2,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1750,-9,0,2025,-4,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-2,0,1634,-15,0,0 +2013,6,29,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1114,-1,0,1219,-4,0,0 +2013,5,22,3,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,755,-1,0,1155,-22,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,-7,0,1954,-11,0,0 +2013,5,9,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1655,35,1,1820,24,1,0 +2013,4,17,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,0,,2150,0,1,1 +2013,9,21,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,715,-2,0,955,-12,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1235,-3,0,1457,2,0,0 +2013,7,25,4,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1153,11,0,1359,77,1,0 +2013,4,3,3,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,757,-12,0,945,-22,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1110,6,0,1835,3,0,0 +2013,5,28,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-2,0,2146,-14,0,0 +2013,5,13,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,1,0,1649,-4,0,0 +2013,10,28,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,12,0,1253,9,0,0 +2013,6,18,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,547,9,0,908,5,0,0 +2013,7,20,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,90,1,1830,66,1,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,710,-4,0,930,-7,0,0 +2013,9,14,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,815,-9,0,1050,-5,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1040,-5,0,1410,16,1,0 +2013,4,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,832,-3,0,940,1,0,0 +2013,5,5,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,142,1,1018,148,1,0 +2013,5,19,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,-3,0,915,-9,0,0 +2013,10,29,2,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,915,38,1,1255,28,1,0 +2013,7,23,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,-4,0,1454,55,1,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1935,30,1,2150,21,1,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1834,-3,0,2000,3,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-1,0,1725,30,1,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1705,-1,0,1922,-26,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,165,1,44,150,1,0 +2013,9,28,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1750,-1,0,1844,-10,0,0 +2013,4,4,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,2020,19,1,2055,7,0,0 +2013,5,9,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,104,1,1818,105,1,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,-5,0,903,6,0,0 +2013,4,4,4,US,14307,Theodore Francis Green State,Providence,RI,11278,Ronald Reagan Washington National,Washington,DC,615,-6,0,740,-5,0,0 +2013,10,16,3,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,730,1,0,820,2,0,0 +2013,4,12,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-5,0,1558,-5,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,6,0,2140,-1,0,0 +2013,5,4,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,12,0,1526,0,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-6,0,1006,-31,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,7,0,1200,1,0,0 +2013,9,22,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1750,5,0,2025,-12,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1945,10,0,2105,16,1,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,837,6,0,1035,6,0,0 +2013,8,5,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1540,20,1,1558,10,0,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-1,0,1624,2,0,0 +2013,4,5,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,2015,-2,0,2333,-2,0,0 +2013,7,25,4,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-3,0,1020,-22,0,0 +2013,8,17,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,-6,0,1101,-1,0,0 +2013,9,26,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,815,-4,0,1052,-1,0,0 +2013,10,21,1,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1410,66,1,1645,63,1,0 +2013,8,10,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1100,3,0,1220,-13,0,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,8,0,2345,-13,0,0 +2013,5,10,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,34,1,1840,25,1,0 +2013,9,26,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-19,0,830,-14,0,0 +2013,10,7,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,2,0,1632,8,0,0 +2013,7,2,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1257,28,1,1830,45,1,0 +2013,8,22,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,657,-6,0,1032,-13,0,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,33,1,1451,47,1,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1056,11,0,1300,-5,0,0 +2013,5,7,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1602,-3,0,1853,-12,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,948,15,1,1800,6,0,0 +2013,7,23,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1435,-9,0,0 +2013,8,16,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2055,5,0,2348,8,0,0 +2013,5,4,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1155,-8,0,1455,-11,0,0 +2013,5,1,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-2,0,1855,-17,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,0,0,2326,-17,0,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,1,0,1218,-8,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-3,0,1107,-14,0,0 +2013,10,22,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,935,-8,0,1130,-25,0,0 +2013,8,29,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,745,-2,0,1134,11,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,57,1,956,38,1,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1115,-3,0,1311,-10,0,0 +2013,5,15,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1703,-2,0,1734,-15,0,0 +2013,4,27,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1400,15,1,1455,5,0,0 +2013,5,29,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-1,0,740,-13,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1306,-6,0,1419,-14,0,0 +2013,10,10,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-1,0,1659,10,0,0 +2013,5,25,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,0,0,1226,-15,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,835,66,1,1235,52,1,0 +2013,5,12,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1115,-6,0,1325,1,0,0 +2013,7,9,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1314,117,1,1518,123,1,0 +2013,10,15,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2017,0,0,2320,0,0,0 +2013,7,28,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,46,1,2206,21,1,0 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1330,83,1,1455,85,1,0 +2013,8,26,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-6,0,1319,-14,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,2,0,1231,2,0,0 +2013,4,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,911,182,1,1045,173,1,0 +2013,8,9,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1137,-2,0,1429,-6,0,0 +2013,10,1,2,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1500,8,0,1750,-20,0,0 +2013,10,7,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1535,-3,0,1750,-13,0,0 +2013,10,13,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1122,84,1,1420,81,1,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,-3,0,730,2,0,0 +2013,10,21,1,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-6,0,1551,-11,0,0 +2013,9,20,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1737,212,1,1928,201,1,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1005,6,0,1438,3,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,935,-4,0,1130,-24,0,0 +2013,7,19,5,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,1,0,1910,7,0,0 +2013,8,10,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-3,0,1549,-1,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,930,-3,0,1120,-28,0,0 +2013,7,16,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,1854,-7,0,0 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1145,35,1,1240,28,1,0 +2013,10,13,7,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1602,-4,0,1707,28,1,0 +2013,6,15,6,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1245,10,0,1355,5,0,0 +2013,9,6,5,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,608,-3,0,925,0,0,0 +2013,5,23,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,11,0,1750,5,0,0 +2013,10,31,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,851,-3,0,1100,19,1,0 +2013,8,19,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1529,3,0,1810,14,0,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1635,0,0,2130,-3,0,0 +2013,5,10,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1420,69,1,1705,76,1,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2220,4,0,15,-2,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1300,73,1,1410,76,1,0 +2013,9,1,7,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1310,-2,0,1355,-18,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,-5,0,1654,-13,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,11,0,1740,-14,0,0 +2013,10,25,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1101,3,0,1230,-1,0,0 +2013,9,18,3,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1859,-5,0,2127,-39,0,0 +2013,7,6,6,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,755,-5,0,815,-7,0,0 +2013,10,31,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-2,0,2046,4,0,0 +2013,8,13,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1730,44,1,1900,32,1,0 +2013,8,15,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1100,15,1,1220,10,0,0 +2013,10,7,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,92,1,2032,82,1,0 +2013,10,15,2,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1700,35,1,1829,27,1,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-4,0,1243,22,1,0 +2013,10,10,4,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1100,-5,0,1423,-11,0,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,-2,0,1839,-4,0,0 +2013,6,15,6,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,-9,0,1900,-23,0,0 +2013,5,10,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,759,22,1,1405,7,0,0 +2013,9,24,2,OO,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1843,-8,0,2005,-17,0,0 +2013,7,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1400,0,,1515,0,1,1 +2013,7,24,3,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,213,1,1923,203,1,0 +2013,7,30,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,10,0,801,-6,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,745,-6,0,900,4,0,0 +2013,4,18,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2200,14,0,2355,19,1,0 +2013,9,12,4,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-12,0,525,-2,0,0 +2013,8,9,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1620,4,0,1705,2,0,0 +2013,7,14,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-1,0,1338,-16,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1740,96,1,1905,89,1,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1030,-6,0,1203,-11,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1050,-1,0,1943,-17,0,0 +2013,8,24,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1605,0,0,1653,6,0,0 +2013,6,16,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,48,1,2055,47,1,0 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1515,24,1,1630,17,1,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2020,-1,0,40,-2,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,919,-4,0,1052,-9,0,0 +2013,10,25,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1735,12,0,1915,-9,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-3,0,1225,-13,0,0 +2013,9,7,6,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-6,0,1331,-25,0,0 +2013,8,7,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1600,58,1,1704,48,1,0 +2013,5,5,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-4,0,1803,-10,0,0 +2013,7,6,6,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1525,140,1,1904,128,1,0 +2013,4,6,6,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1100,-3,0,1218,-4,0,0 +2013,6,22,6,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,620,-4,0,1444,1,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,22,1,1911,20,1,0 +2013,10,17,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-3,0,1626,13,0,0 +2013,10,5,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1720,8,0,1830,14,0,0 +2013,9,25,3,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1435,-3,0,1645,-20,0,0 +2013,9,2,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,945,3,0,1220,-11,0,0 +2013,4,17,3,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,920,0,0,1200,-9,0,0 +2013,8,5,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2220,35,1,605,24,1,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1758,34,1,1953,19,1,0 +2013,9,13,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,101,1,1735,91,1,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1959,5,0,2157,-34,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1835,-4,0,2352,-13,0,0 +2013,7,6,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,3,0,940,-9,0,0 +2013,8,12,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1230,-2,0,1441,-21,0,0 +2013,8,13,2,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,745,8,0,0 +2013,9,3,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2100,-2,0,2215,-2,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-8,0,1053,4,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1905,18,1,2120,-3,0,0 +2013,9,28,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1130,34,1,1250,30,1,0 +2013,10,9,3,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1806,-11,0,2051,-38,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,-1,0,1458,-18,0,0 +2013,10,17,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1322,-6,0,1448,0,0,0 +2013,8,9,5,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,127,-5,0,800,-4,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1131,27,1,1258,17,1,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-8,0,1113,-15,0,0 +2013,5,20,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1655,17,1,1826,18,1,0 +2013,4,10,3,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1839,214,1,2015,264,1,0 +2013,6,27,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,5,0,2052,32,1,0 +2013,5,29,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1541,-2,0,1734,14,0,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-4,0,1539,-9,0,0 +2013,10,27,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-5,0,1345,-12,0,0 +2013,7,19,5,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,630,-6,0,726,-9,0,0 +2013,8,30,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,916,-6,0,1126,-15,0,0 +2013,8,2,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1632,19,1,0 +2013,9,19,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,48,1,2052,16,1,0 +2013,4,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,932,-8,0,1025,-9,0,0 +2013,4,15,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1449,5,0,1755,0,0,0 +2013,5,27,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,824,-9,0,1054,-24,0,0 +2013,7,3,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-2,0,2153,-27,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1150,-2,0,1320,-16,0,0 +2013,8,4,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,845,-5,0,1107,-13,0,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1220,41,1,1710,50,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1635,5,0,2019,-4,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,15,1,1255,26,1,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,184,1,1914,206,1,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,620,-1,0,750,-4,0,0 +2013,7,11,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-3,0,2135,31,1,0 +2013,6,10,1,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,705,-1,0,720,2,0,0 +2013,8,20,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1828,5,0,2105,9,0,0 +2013,5,17,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,2140,1,0,2235,4,0,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,14,0,2115,1,0,0 +2013,9,9,1,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1453,54,1,1620,41,1,0 +2013,4,5,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1240,-3,0,1438,-23,0,0 +2013,4,3,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1810,0,0,2047,13,0,0 +2013,4,28,7,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,719,-4,0,904,-22,0,0 +2013,10,18,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,0,0,1305,0,0,0 +2013,7,12,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,27,1,1135,26,1,0 +2013,4,15,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,923,-4,0,1237,-17,0,0 +2013,8,24,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1625,1,0,1905,-1,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,17,1,2105,15,1,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1955,-1,0,2220,-11,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-5,0,859,-9,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1440,64,1,1755,57,1,0 +2013,4,17,3,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,135,1,1545,117,1,0 +2013,6,24,1,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,82,1,1630,48,1,0 +2013,7,4,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1114,-3,0,1202,-8,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1225,40,1,1330,28,1,0 +2013,10,28,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,748,-6,0,838,8,0,0 +2013,9,11,3,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,-3,0,2110,-17,0,0 +2013,8,20,2,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-9,0,955,-17,0,0 +2013,4,14,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,-2,0,1530,-2,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1720,3,0,1815,-2,0,0 +2013,5,2,4,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1025,0,0,1245,3,0,0 +2013,6,8,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-9,0,1120,-6,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-5,0,2019,-19,0,0 +2013,9,18,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1320,2,0,1540,17,1,0 +2013,7,5,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1558,90,1,1717,88,1,0 +2013,9,12,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,-4,0,1514,-4,0,0 +2013,8,27,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-10,0,1544,-5,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1830,-3,0,2220,-12,0,0 +2013,6,26,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-3,0,1357,2,0,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1650,8,0,1815,-9,0,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,-5,0,1930,5,0,0 +2013,9,27,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,3,0,1411,-8,0,0 +2013,4,6,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1655,-1,0,1845,-8,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2155,5,0,2255,-1,0,0 +2013,8,30,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1535,7,0,1859,-18,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,-1,0,1628,-3,0,0 +2013,4,3,3,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,-9,0,1911,-15,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1553,30,1,1740,18,1,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-1,0,2050,-9,0,0 +2013,10,20,7,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1355,29,1,1900,20,1,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,12,0,2244,3,0,0 +2013,6,4,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,45,1,2055,33,1,0 +2013,6,9,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-4,0,904,-11,0,0 +2013,6,28,5,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,700,-1,0,750,9,0,0 +2013,6,30,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1302,-3,0,1430,5,0,0 +2013,7,3,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-2,0,1325,-10,0,0 +2013,5,2,4,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1940,-4,0,2130,-15,0,0 +2013,10,6,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1343,43,1,1456,43,1,0 +2013,9,28,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1059,-10,0,1206,-5,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1030,7,0,1405,8,0,0 +2013,9,27,5,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,905,156,1,1037,148,1,0 +2013,9,25,3,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1212,1,0,1453,-17,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1318,7,0,1607,5,0,0 +2013,10,15,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1130,19,1,1359,11,0,0 +2013,8,15,4,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2105,-5,0,15,-16,0,0 +2013,8,25,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,810,-4,0,910,-9,0,0 +2013,4,16,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,0,0,1650,-5,0,0 +2013,10,26,6,B6,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,920,2,0,1226,-3,0,0 +2013,5,8,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,0,0,1935,6,0,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-1,0,1153,-17,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,900,2,0,1053,-17,0,0 +2013,9,20,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1658,-4,0,1755,0,0,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,905,-6,0,1020,-7,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,925,5,0,1130,4,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,13,0,1910,16,1,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1825,21,1,2335,-4,0,0 +2013,9,13,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,827,-8,0,0 +2013,4,16,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,725,-9,0,1335,-23,0,0 +2013,9,5,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,923,36,1,1119,25,1,0 +2013,5,27,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,930,-5,0,1800,-34,0,0 +2013,4,12,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,723,-11,0,1019,-20,0,0 +2013,4,29,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-1,0,1535,-8,0,0 +2013,9,30,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1820,8,0,2005,1,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,-2,0,2250,-3,0,0 +2013,10,2,3,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-6,0,2020,-10,0,0 +2013,7,25,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,635,9,0,735,8,0,0 +2013,7,4,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,-17,0,1825,-29,0,0 +2013,9,5,4,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,-7,0,2109,-9,0,0 +2013,7,19,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1155,50,1,1415,44,1,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,3,0,2200,16,1,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1535,-5,0,1750,-1,0,0 +2013,7,4,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1300,-5,0,1703,-27,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1700,19,1,1805,11,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-4,0,1918,-8,0,0 +2013,4,15,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,-7,0,1405,-12,0,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,-1,0,1030,-3,0,0 +2013,4,16,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1757,-5,0,2157,8,0,0 +2013,8,27,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1914,-8,0,2104,-22,0,0 +2013,4,18,4,DL,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,800,-3,0,1052,-16,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2100,-3,0,2245,-13,0,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1430,-4,0,1624,30,1,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1833,2,0,2158,-21,0,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1010,-3,0,1237,8,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,6,0,1625,5,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1505,-4,0,1845,-14,0,0 +2013,7,19,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,658,2,0,1300,13,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1959,13,0,2156,-1,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1930,-2,0,2030,-1,0,0 +2013,6,26,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,7,0,1429,7,0,0 +2013,10,21,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-1,0,1715,-5,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-6,0,1355,3,0,0 +2013,6,24,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1511,16,1,1852,7,0,0 +2013,8,28,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,20,1,2205,11,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-3,0,1549,-24,0,0 +2013,4,30,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,234,1,2110,206,1,0 +2013,8,6,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,41,1,2100,31,1,0 +2013,8,31,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,915,6,0,1050,-4,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,16,1,1715,6,0,0 +2013,9,2,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,1,0,2020,4,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-2,0,1241,20,1,0 +2013,9,16,1,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1050,0,0,1300,2,0,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,9,0,1735,6,0,0 +2013,4,10,3,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1320,-1,0,1500,-4,0,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,629,55,1,1239,38,1,0 +2013,5,7,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,620,0,0,710,-9,0,0 +2013,4,3,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1725,-1,0,1749,-7,0,0 +2013,9,30,1,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1646,-4,0,1739,-21,0,0 +2013,9,24,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1630,-8,0,1746,-5,0,0 +2013,9,14,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,945,1,0,1050,-5,0,0 +2013,8,24,6,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,903,-6,0,1028,-17,0,0 +2013,8,2,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1312,-4,0,1516,-1,0,0 +2013,7,9,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,823,8,0,855,6,0,0 +2013,5,31,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,1,0,624,-2,0,0 +2013,4,26,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1729,10,0,2030,-3,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,825,-1,0,1000,-13,0,0 +2013,7,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2145,29,1,33,26,1,0 +2013,6,17,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,30,1,1803,48,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2155,-5,0,2335,-7,0,0 +2013,7,20,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,6,0,2033,28,1,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1355,-8,0,1510,-10,0,0 +2013,7,23,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,905,0,,1729,0,1,1 +2013,4,30,2,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,705,-5,0,725,-13,0,0 +2013,8,20,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1600,39,1,2155,36,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,82,1,2025,94,1,0 +2013,5,26,7,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,-5,0,1915,-10,0,0 +2013,6,21,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,4,0,1758,-3,0,0 +2013,8,7,3,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1110,18,1,1710,-14,0,0 +2013,9,2,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,0,0,1920,13,0,0 +2013,7,27,6,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1110,5,0,1245,-1,0,0 +2013,7,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1710,0,0,1925,-5,0,0 +2013,8,31,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,70,1,1515,61,1,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,-6,0,2209,-11,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2200,5,0,2250,9,0,0 +2013,5,1,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1705,-6,0,1905,-29,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,830,17,1,1020,6,0,0 +2013,6,17,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1045,-2,0,1145,-3,0,0 +2013,5,13,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-7,0,743,-3,0,0 +2013,9,8,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1115,4,0,1340,-11,0,0 +2013,7,24,3,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1212,60,1,1503,55,1,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1400,254,1,1718,262,1,0 +2013,6,2,7,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1344,8,0,1601,28,1,0 +2013,8,16,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-7,0,1303,-2,0,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-4,0,2043,-16,0,0 +2013,8,26,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2011,-5,0,2346,1,0,0 +2013,10,25,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1830,53,1,2010,50,1,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1815,17,1,2259,8,0,0 +2013,5,22,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-4,0,1752,-10,0,0 +2013,7,22,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2110,-2,0,2225,1,0,0 +2013,4,6,6,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,-5,0,1900,-4,0,0 +2013,6,1,6,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,-11,0,2338,-34,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1255,-2,0,1422,0,0,0 +2013,6,28,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1455,10,0,1520,94,1,0 +2013,9,9,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1239,-3,0,1749,1,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,14,0,2110,7,0,0 +2013,8,17,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1641,9,0,1719,11,0,0 +2013,9,22,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1515,12,0,1757,33,1,0 +2013,8,7,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,13,0,1934,4,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1139,-2,0,1540,-24,0,0 +2013,10,24,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1825,-5,0,1925,0,0,0 +2013,7,15,1,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,748,-7,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,850,0,0,1123,-7,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1140,28,1,1300,27,1,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2105,-5,0,2344,-36,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,915,-3,0,1250,-1,0,0 +2013,10,4,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1330,-5,0,1620,-4,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-6,0,1855,-9,0,0 +2013,6,19,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1345,11,0,1425,12,0,0 +2013,9,22,7,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1240,-8,0,1610,-26,0,0 +2013,8,22,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-2,0,1925,6,0,0 +2013,5,26,7,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,640,-3,0,718,1,0,0 +2013,4,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-4,0,2225,-8,0,0 +2013,8,7,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,605,-4,0,745,-8,0,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,805,-2,0,1120,-7,0,0 +2013,4,18,4,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1855,9,0,2240,6,0,0 +2013,5,18,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,-3,0,1502,-15,0,0 +2013,7,13,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1650,13,0,1755,83,1,0 +2013,6,18,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,180,1,735,150,1,0 +2013,9,2,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,5,0,900,-9,0,0 +2013,6,17,1,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1410,-8,0,1820,19,1,0 +2013,9,23,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,-1,0,1235,2,0,0 +2013,6,23,7,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1655,0,0,1825,32,1,0 +2013,6,4,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1722,-10,0,1920,14,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1350,-3,0,1458,-9,0,0 +2013,5,9,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2055,111,1,2346,106,1,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1410,-1,0,1630,0,0,0 +2013,5,23,4,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1235,-2,0,1620,-18,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,-1,0,1149,-3,0,0 +2013,4,9,2,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1430,-6,0,1611,-12,0,0 +2013,7,15,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1619,-2,0,2042,-7,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2105,3,0,2250,-11,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1543,-4,0,1732,-7,0,0 +2013,5,22,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1302,-9,0,1611,-6,0,0 +2013,10,17,4,9E,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1855,19,1,2245,4,0,0 +2013,10,11,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,-1,0,1725,5,0,0 +2013,10,7,1,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1755,-4,0,1915,-9,0,0 +2013,4,19,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1145,5,0,1423,5,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1900,58,1,2130,64,1,0 +2013,4,29,1,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,600,-5,0,655,-15,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2237,16,1,659,-10,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1045,-1,0,1245,-7,0,0 +2013,4,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2000,-6,0,2055,-19,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1423,-6,0,1613,20,1,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,825,10,0,951,-1,0,0 +2013,10,21,1,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,920,31,1,1235,23,1,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,830,-2,0,1040,1,0,0 +2013,6,18,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1810,-6,0,1958,4,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,9,0,1600,-1,0,0 +2013,9,26,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-5,0,1747,-11,0,0 +2013,7,27,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-4,0,1159,-5,0,0 +2013,5,17,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-2,0,1252,-4,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,0,0,1255,-8,0,0 +2013,9,22,7,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1635,14,0,1945,9,0,0 +2013,9,28,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,1,0,1854,-1,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1040,-2,0,1259,-14,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1205,-4,0,1515,-21,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1448,3,0,1741,6,0,0 +2013,4,2,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1435,-4,0,1600,-10,0,0 +2013,4,6,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1420,18,1,1550,2,0,0 +2013,8,14,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1721,107,1,1836,120,1,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1712,11,0,1956,-26,0,0 +2013,9,6,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1746,-6,0,2025,-10,0,0 +2013,5,23,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1525,17,1,1736,1,0,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,19,1,2359,25,1,0 +2013,6,7,5,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,915,-1,0,935,7,0,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,12,0,1415,10,0,0 +2013,8,29,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1420,28,1,1535,33,1,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1445,-1,0,1705,-1,0,0 +2013,4,11,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1625,13,0,1915,-15,0,0 +2013,4,4,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1255,-2,0,1420,-1,0,0 +2013,5,8,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,62,1,2224,57,1,0 +2013,5,6,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,735,18,1,824,33,1,0 +2013,4,6,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1850,-4,0,2140,-8,0,0 +2013,8,6,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1110,-1,0,1155,0,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1333,-7,0,1448,-16,0,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-2,0,2203,-28,0,0 +2013,6,15,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1035,31,1,1355,6,0,0 +2013,6,6,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-1,0,2058,14,0,0 +2013,10,29,2,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1545,-3,0,1805,18,1,0 +2013,4,30,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-4,0,910,-5,0,0 +2013,10,18,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-9,0,1723,-5,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,126,1,1847,135,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1346,-3,0,1536,-14,0,0 +2013,6,27,4,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,805,24,1,0 +2013,9,2,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1845,41,1,2005,34,1,0 +2013,10,20,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-8,0,1125,-12,0,0 +2013,6,4,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,-3,0,1355,-12,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,2,0,1600,14,0,0 +2013,10,15,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1014,4,0,1557,-23,0,0 +2013,6,28,5,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1027,1,0,1126,4,0,0 +2013,4,29,1,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,2,0,2300,3,0,0 +2013,5,26,7,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1640,0,0,1741,-6,0,0 +2013,6,22,6,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1415,19,1,1925,8,0,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1115,37,1,1406,22,1,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1307,4,0,1443,1,0,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2040,116,1,2201,104,1,0 +2013,5,3,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1910,71,1,1955,64,1,0 +2013,7,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,15,1,1430,5,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1630,87,1,1855,87,1,0 +2013,6,2,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,857,13,0,0 +2013,9,23,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,-11,0,1850,-28,0,0 +2013,5,12,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,1028,-13,0,0 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,-4,0,1909,-24,0,0 +2013,6,26,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-3,0,910,46,1,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,7,0,1805,-1,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,-4,0,2359,-10,0,0 +2013,9,7,6,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1249,-2,0,1514,-36,0,0 +2013,4,2,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-4,0,1513,-8,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,605,0,0,917,-42,0,0 +2013,4,23,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,2,0,1040,-8,0,0 +2013,8,12,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1600,35,1,1735,21,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,19,1,2013,-1,0,0 +2013,8,26,1,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,16,1,2110,-27,0,0 +2013,9,20,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,732,-3,0,853,-21,0,0 +2013,5,12,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1123,-5,0,1413,-4,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1015,9,0,1305,-3,0,0 +2013,9,9,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,940,-5,0,1649,5,0,0 +2013,8,14,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,-5,0,1924,7,0,0 +2013,6,22,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,2,0,1516,20,1,0 +2013,7,1,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,810,33,1,925,33,1,0 +2013,8,15,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,4,0,2215,6,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-7,0,1309,1,0,0 +2013,4,26,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,610,-5,0,909,11,0,0 +2013,10,22,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1911,-6,0,2018,-12,0,0 +2013,10,26,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,605,3,0,1122,-5,0,0 +2013,4,4,4,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1535,15,1,1755,13,0,0 +2013,9,2,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,0,0,1100,-17,0,0 +2013,10,15,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1900,-1,0,2154,-13,0,0 +2013,8,8,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-1,0,1906,34,1,0 +2013,9,9,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-9,0,1001,-18,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1610,-5,0,16,16,1,0 +2013,8,14,3,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1459,301,1,1801,300,1,0 +2013,5,9,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-5,0,1801,1,0,0 +2013,8,13,2,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-7,0,1615,-39,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,0,0,1329,-5,0,0 +2013,5,11,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2205,-5,0,545,-18,0,0 +2013,7,16,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,0,0,1632,38,1,0 +2013,8,11,7,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,-3,0,1625,-9,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,10,0,1050,2,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,1,0,1550,-6,0,0 +2013,8,14,3,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,829,-1,0,1045,0,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1747,-4,0,1910,-19,0,0 +2013,5,4,6,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1300,-2,0,1505,-20,0,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1320,6,0,1435,4,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,-3,0,1100,-1,0,0 +2013,8,21,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-2,0,902,8,0,0 +2013,5,8,3,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1132,9,0,1358,11,0,0 +2013,8,27,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-2,0,1918,0,0,0 +2013,5,7,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,-3,0,2054,-8,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,36,1,2125,0,0,0 +2013,10,1,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,600,-5,0,710,-25,0,0 +2013,4,15,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-7,0,1537,-6,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,0,0,1050,-15,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-1,0,1615,-4,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-3,0,1555,-3,0,0 +2013,6,7,5,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,17,1,1645,0,0,0 +2013,4,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1942,3,0,2159,6,0,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1025,4,0,1240,-1,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1614,41,1,1810,32,1,0 +2013,6,6,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1425,99,1,1710,79,1,0 +2013,6,26,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1300,0,0,1325,0,0,0 +2013,6,6,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2010,25,1,2130,11,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,-4,0,1840,-16,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-1,0,1833,-7,0,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1011,0,0,1259,-2,0,0 +2013,6,24,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,0,0,2105,-8,0,0 +2013,5,29,3,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,600,-1,0,740,-1,0,0 +2013,6,11,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-9,0,808,-24,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,605,-2,0,855,-3,0,0 +2013,6,8,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,815,-3,0,1110,-18,0,0 +2013,10,29,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-3,0,1611,-18,0,0 +2013,5,7,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1716,21,1,1835,12,0,0 +2013,10,2,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1500,-4,0,2256,-20,0,0 +2013,7,17,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,-4,0,2106,-10,0,0 +2013,6,1,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,-7,0,1941,1,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1739,2,0,1921,5,0,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,915,47,1,1350,30,1,0 +2013,4,1,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,945,91,1,1129,84,1,0 +2013,8,29,4,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-10,0,2110,-18,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,22,1,1050,10,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,0,0,2345,-10,0,0 +2013,8,19,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,850,0,0,1104,-11,0,0 +2013,9,3,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,2,0,1252,20,1,0 +2013,5,12,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-8,0,1449,8,0,0 +2013,8,4,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,5,0,1335,2,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,29,1,2135,18,1,0 +2013,6,21,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,1250,-1,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,854,90,1,1045,87,1,0 +2013,7,7,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1359,5,0,1615,-4,0,0 +2013,9,8,7,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1650,-4,0,1939,-12,0,0 +2013,6,12,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1832,21,1,2104,31,1,0 +2013,6,22,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1654,-7,0,1954,-20,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1350,26,1,1920,0,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2010,5,0,2130,-14,0,0 +2013,7,24,3,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,0,0,835,-5,0,0 +2013,10,22,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,0,,1352,0,1,1 +2013,5,7,2,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,605,-2,0,1440,5,0,0 +2013,9,28,6,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,1107,11,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,929,-4,0,1241,-27,0,0 +2013,10,19,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,915,-8,0,1005,-9,0,0 +2013,10,22,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-5,0,1215,-23,0,0 +2013,7,15,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-4,0,1458,1,0,0 +2013,4,21,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-4,0,2305,-8,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1905,29,1,2140,31,1,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,825,-2,0,925,-1,0,0 +2013,8,30,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,520,1,0,607,-3,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,855,6,0,1040,10,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2155,139,1,2310,154,1,0 +2013,9,17,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,700,-7,0,802,-3,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,19,1,2305,13,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1553,-1,0,1730,-34,0,0 +2013,4,24,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1931,-5,0,2058,-21,0,0 +2013,6,3,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,28,1,2050,32,1,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1315,1,0,1535,8,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,4,0,1823,11,0,0 +2013,5,11,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-4,0,1628,-12,0,0 +2013,9,11,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1940,-14,0,2135,-17,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1330,16,1,1535,23,1,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2105,18,1,2325,20,1,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-5,0,1252,-2,0,0 +2013,8,12,1,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,700,-5,0,1235,-2,0,0 +2013,7,15,1,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1415,0,0,1544,1,0,0 +2013,8,2,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2130,-10,0,2247,-32,0,0 +2013,4,12,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1228,-1,0,1407,4,0,0 +2013,7,17,3,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1348,-9,0,1604,-33,0,0 +2013,4,7,7,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,815,-1,0,1030,-15,0,0 +2013,6,3,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,700,-3,0,952,-14,0,0 +2013,9,24,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1945,39,1,2055,27,1,0 +2013,4,15,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1813,-9,0,2129,-11,0,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1154,14,0,1257,2,0,0 +2013,4,20,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1405,35,1,1543,16,1,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1738,9,0,1901,-7,0,0 +2013,9,7,6,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1046,-10,0,1300,-9,0,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1635,0,0,1803,7,0,0 +2013,4,3,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,-2,0,1715,0,0,0 +2013,10,19,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-8,0,1024,-5,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1725,7,0,2310,1,0,0 +2013,4,22,1,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,0,,1455,0,1,1 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1210,6,0,1410,1,0,0 +2013,6,7,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,900,-1,0,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,-4,0,1200,-10,0,0 +2013,7,19,5,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,846,20,1,1035,4,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1145,30,1,1510,22,1,0 +2013,5,20,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-3,0,745,7,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1225,33,1,1500,28,1,0 +2013,7,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,715,-2,0,835,-2,0,0 +2013,9,6,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1209,-6,0,1410,-5,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,855,-3,0,1555,4,0,0 +2013,5,28,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1533,24,1,1905,43,1,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1210,5,0,1350,-7,0,0 +2013,4,10,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,2005,88,1,2100,84,1,0 +2013,5,29,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1015,-17,0,0 +2013,7,22,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,-4,0,1229,-2,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1345,-1,0,1510,-8,0,0 +2013,4,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,-2,0,1658,9,0,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,9,0,1930,-3,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-1,0,1031,-14,0,0 +2013,6,1,6,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1120,-8,0,1408,-14,0,0 +2013,8,14,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1025,-6,0,1215,-9,0,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1348,4,0,1755,-6,0,0 +2013,5,21,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,-4,0,1051,-3,0,0 +2013,9,16,1,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1830,-2,0,2029,13,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,32,1,1335,25,1,0 +2013,9,22,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1300,23,1,1400,17,1,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2201,-1,0,2321,-2,0,0 +2013,6,7,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,41,1,2050,23,1,0 +2013,7,9,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-1,0,1455,-16,0,0 +2013,4,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1220,20,1,1350,4,0,0 +2013,10,19,6,UA,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-7,0,719,0,0,0 +2013,7,11,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,635,-2,0,755,-17,0,0 +2013,5,8,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-6,0,827,-7,0,0 +2013,9,12,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,725,-3,0,0 +2013,10,3,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1450,19,1,1820,16,1,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1542,4,0,1748,-4,0,0 +2013,10,13,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,8,0,1905,5,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1859,97,1,2127,63,1,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,955,-7,0,1557,-3,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,0,0,2320,3,0,0 +2013,10,25,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1737,0,0,1750,-6,0,0 +2013,6,12,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-7,0,1345,-22,0,0 +2013,10,15,2,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1559,5,0,2035,-10,0,0 +2013,7,29,1,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,2100,-2,0,2250,-5,0,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,630,0,0,720,4,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2230,-3,0,709,19,1,0 +2013,8,31,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1020,-4,0,1259,-1,0,0 +2013,5,28,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,735,-2,0,800,-3,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2035,44,1,2240,36,1,0 +2013,7,26,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1332,-8,0,1438,-20,0,0 +2013,6,8,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,16,1,2055,4,0,0 +2013,4,4,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,2105,2,0,2125,-13,0,0 +2013,4,19,5,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1210,2,0,1808,-17,0,0 +2013,9,13,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,0,0,955,-2,0,0 +2013,6,29,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1305,17,1,1435,28,1,0 +2013,5,29,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-11,0,1220,-14,0,0 +2013,5,7,2,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,-5,0,1224,-24,0,0 +2013,5,21,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,916,4,0,1134,1,0,0 +2013,7,3,3,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1655,73,1,1833,49,1,0 +2013,7,14,7,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,949,-4,0,1130,1,0,0 +2013,6,22,6,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,642,6,0,859,-20,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,52,1,1615,26,1,0 +2013,4,9,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1518,4,0,1652,5,0,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-3,0,1335,-14,0,0 +2013,10,8,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1317,144,1,1915,142,1,0 +2013,4,7,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,6,0,1529,-4,0,0 +2013,6,30,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1746,-8,0,2117,4,0,0 +2013,10,28,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-2,0,1020,27,1,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-5,0,1310,-13,0,0 +2013,10,1,2,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1600,1,0,1815,-16,0,0 +2013,4,10,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,67,1,2115,70,1,0 +2013,9,22,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1355,-2,0,1737,1,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,-5,0,930,-12,0,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,815,-4,0,1055,1,0,0 +2013,6,22,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1600,17,1,1755,-1,0,0 +2013,8,31,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-2,0,730,5,0,0 +2013,7,15,1,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,650,-3,0,835,-13,0,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1740,-4,0,1925,-3,0,0 +2013,6,9,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,8,0,1705,6,0,0 +2013,4,9,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1235,-10,0,1519,-28,0,0 +2013,8,29,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1410,8,0,2255,-15,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1943,102,1,2305,101,1,0 +2013,5,18,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2001,-8,0,2136,-16,0,0 +2013,7,6,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2203,22,1,2314,17,1,0 +2013,9,18,3,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,751,11,0,1024,9,0,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,645,-1,0,810,9,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1105,57,1,1420,60,1,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-2,0,1651,-7,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,-3,0,1225,-14,0,0 +2013,9,25,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1856,-1,0,2152,-10,0,0 +2013,6,22,6,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,830,-6,0,1630,-8,0,0 +2013,7,15,1,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-2,0,2055,-60,0,0 +2013,5,17,5,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1415,13,0,1655,-6,0,0 +2013,9,26,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-3,0,1014,-19,0,0 +2013,5,7,2,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1334,5,0,1644,20,1,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1651,59,1,1753,36,1,0 +2013,6,30,7,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2039,0,0,2144,-12,0,0 +2013,4,25,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1230,-20,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,34,1,1740,41,1,0 +2013,4,30,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,835,1,0,1100,-9,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2140,50,1,2250,55,1,0 +2013,5,11,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,742,1,0,0 +2013,10,12,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1230,8,0,1820,7,0,0 +2013,5,30,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1405,13,0,1555,2,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1615,-3,0,1720,-9,0,0 +2013,5,28,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-9,0,1039,-4,0,0 +2013,4,17,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-11,0,1238,-4,0,0 +2013,8,28,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1229,-3,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,730,-3,0,835,-9,0,0 +2013,10,11,5,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1524,-1,0,1749,-9,0,0 +2013,7,20,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,337,19,1,728,4,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1439,5,0,1533,3,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,940,20,1,1230,2,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1257,-1,0,1602,-22,0,0 +2013,5,30,4,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1909,31,1,2142,12,0,0 +2013,7,29,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,8,0,1825,-6,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1600,-3,0,1742,-6,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,-2,0,1633,-13,0,0 +2013,10,23,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,850,-5,0,0 +2013,10,14,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2059,-3,0,58,-14,0,0 +2013,6,7,5,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,725,3,0,1015,2,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1345,-6,0,1706,-6,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2010,5,0,2135,7,0,0 +2013,8,12,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1725,34,1,1838,37,1,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,2,0,1500,11,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2010,6,0,2055,10,0,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,710,-7,0,1250,-21,0,0 +2013,7,1,1,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2100,-6,0,525,11,0,0 +2013,8,1,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,43,1,1440,62,1,0 +2013,6,20,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1541,-5,0,1654,26,1,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,5,0,1855,1,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1215,-9,0,1935,-14,0,0 +2013,10,24,4,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-11,0,2145,-12,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,16,1,1013,42,1,0 +2013,5,12,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,-1,0,1854,27,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1935,41,1,2059,16,1,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,50,1,1130,39,1,0 +2013,6,16,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-9,0,1004,-16,0,0 +2013,10,3,4,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1836,36,1,2001,45,1,0 +2013,10,4,5,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,67,1,1630,59,1,0 +2013,10,4,5,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-7,0,907,3,0,0 +2013,9,28,6,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,624,-12,0,750,21,1,0 +2013,10,7,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1007,6,0,0 +2013,10,8,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,900,1,0,1020,-1,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,739,-2,0,936,-11,0,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,810,-2,0,1257,0,0,0 +2013,10,30,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,840,-2,0,1210,-1,0,0 +2013,6,15,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,843,-4,0,0 +2013,9,16,1,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,1,0,1945,-9,0,0 +2013,4,10,3,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,12,0,940,-13,0,0 +2013,7,8,1,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1840,51,1,2106,30,1,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,4,0,705,5,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1235,7,0,1555,5,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,843,0,0,955,-15,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,620,-1,0,856,-13,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,40,1,2205,24,1,0 +2013,8,8,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-3,0,900,5,0,0 +2013,6,17,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1755,-4,0,1855,-4,0,0 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,20,1,2125,-11,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1117,-7,0,1259,-9,0,0 +2013,9,30,1,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,1,0,1955,0,0,0 +2013,8,25,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,-5,0,1635,3,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,720,-4,0,925,-13,0,0 +2013,5,15,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1121,-2,0,1859,10,0,0 +2013,9,2,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-3,0,835,-1,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1800,131,1,1905,126,1,0 +2013,5,2,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,809,0,0,904,7,0,0 +2013,7,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1409,3,0,2030,54,1,0 +2013,10,5,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,949,-4,0,1050,-20,0,0 +2013,6,17,1,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,710,25,1,1305,10,0,0 +2013,7,23,2,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1500,-3,0,1607,8,0,0 +2013,9,2,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,46,1,1753,44,1,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,805,0,0,905,-1,0,0 +2013,8,3,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,615,-2,0,910,-4,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1525,-1,0,1806,-15,0,0 +2013,5,29,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,720,-7,0,825,-4,0,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1240,-7,0,1352,-20,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,2,0,1115,-6,0,0 +2013,4,29,1,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1820,4,0,2148,-9,0,0 +2013,10,24,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,600,-4,0,708,-16,0,0 +2013,5,23,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1305,23,1,1420,23,1,0 +2013,10,30,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,10,0,2055,34,1,0 +2013,8,13,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,720,-1,0,926,-9,0,0 +2013,7,12,5,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1705,155,1,1850,180,1,0 +2013,10,19,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1105,-6,0,1307,-5,0,0 +2013,7,4,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-6,0,848,-6,0,0 +2013,8,6,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1855,3,0,2227,-16,0,0 +2013,5,21,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,810,-4,0,1049,-16,0,0 +2013,6,1,6,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-5,0,910,-7,0,0 +2013,6,10,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,5,0,1024,-8,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,925,-2,0,1159,-18,0,0 +2013,6,28,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2313,57,1,9,49,1,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1725,3,0,2050,24,1,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2220,42,1,2340,42,1,0 +2013,6,23,7,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,810,-6,0,1029,-1,0,0 +2013,7,27,6,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1615,-3,0,1735,-4,0,0 +2013,8,31,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1910,71,1,2125,59,1,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,-1,0,1635,-30,0,0 +2013,8,22,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1110,-3,0,1310,-6,0,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,16,1,1805,13,0,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1047,-4,0,1925,43,1,0 +2013,6,27,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-3,0,602,-5,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,-2,0,2328,-4,0,0 +2013,8,7,3,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1233,4,0,0 +2013,4,9,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2115,-5,0,2250,-16,0,0 +2013,8,11,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-3,0,755,-15,0,0 +2013,8,25,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,705,-8,0,910,-12,0,0 +2013,4,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,-11,0,931,4,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1855,11,0,2240,30,1,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1640,22,1,1820,14,0,0 +2013,10,28,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1340,-10,0,1525,-20,0,0 +2013,4,21,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1245,-6,0,1352,-10,0,0 +2013,6,2,7,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2105,5,0,545,3,0,0 +2013,10,7,1,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,810,-7,0,1111,-6,0,0 +2013,7,3,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1640,17,1,1740,7,0,0 +2013,8,3,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,1,0,754,-5,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,-7,0,2011,1,0,0 +2013,9,1,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1200,-5,0,1427,-14,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2015,-15,0,2213,-18,0,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,0,0,1232,-7,0,0 +2013,6,26,3,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1805,30,1,2030,78,1,0 +2013,6,30,7,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1100,12,0,1313,7,0,0 +2013,8,14,3,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1826,34,1,2029,35,1,0 +2013,9,24,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1805,-8,0,1925,-11,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-3,0,815,-13,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2220,-4,0,2235,-16,0,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-5,0,933,30,1,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,930,-3,0,1300,-15,0,0 +2013,9,29,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,830,-9,0,0 +2013,7,6,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1251,-3,0,1552,-10,0,0 +2013,8,6,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1645,2,0,1800,7,0,0 +2013,4,1,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-3,0,2355,5,0,0 +2013,8,31,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1735,10,0,1850,0,0,0 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1550,-7,0,1810,-12,0,0 +2013,6,8,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1625,-2,0,1725,-20,0,0 +2013,10,23,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-6,0,757,-4,0,0 +2013,6,9,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-1,0,1600,-2,0,0 +2013,6,4,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-3,0,1742,0,0,0 +2013,10,27,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1945,201,1,2122,221,1,0 +2013,7,25,4,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,939,15,1,1056,8,0,0 +2013,6,12,3,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,102,1,1255,88,1,0 +2013,7,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,945,2,0,1325,-11,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1130,166,1,1345,171,1,0 +2013,7,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2115,-1,0,2235,5,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1326,0,0,1440,-15,0,0 +2013,10,13,7,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,-2,0,1708,-26,0,0 +2013,5,26,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-11,0,1320,-13,0,0 +2013,7,8,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-1,0,901,8,0,0 +2013,9,28,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,932,-7,0,1038,-16,0,0 +2013,9,22,7,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1651,16,1,1957,21,1,0 +2013,8,24,6,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2200,-6,0,501,-1,0,0 +2013,10,22,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1918,-8,0,2110,-26,0,0 +2013,7,10,3,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,0,0,1740,0,0,0 +2013,10,21,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,36,1,1540,37,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1050,-3,0,1203,-30,0,0 +2013,10,4,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,825,-1,0,920,1,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1543,-1,0,1759,-11,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,-7,0,2359,-1,0,0 +2013,5,24,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-2,0,1430,0,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1845,6,0,1950,1,0,0 +2013,4,20,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-4,0,1015,-22,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1620,13,0,1720,7,0,0 +2013,8,7,3,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,2030,-4,0,2211,87,1,0 +2013,6,13,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,645,388,1,845,386,1,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1205,0,0,1322,-1,0,0 +2013,6,30,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,2050,-3,0,5,1,0,0 +2013,8,12,1,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1604,0,,1748,0,1,1 +2013,6,5,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,0,0,1905,-15,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1315,-5,0,1520,-9,0,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,5,0,1310,-5,0,0 +2013,7,9,2,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,10,0,1352,11,0,0 +2013,10,20,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1259,-7,0,1421,-7,0,0 +2013,4,16,2,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1339,-1,0,1550,-5,0,0 +2013,10,10,4,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1805,76,1,2105,74,1,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1030,1,0,1205,-2,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1122,-3,0,1220,-22,0,0 +2013,5,24,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,2005,-2,0,2255,-14,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1305,-1,0,1405,-5,0,0 +2013,5,8,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1310,-5,0,1515,-18,0,0 +2013,9,30,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1932,-2,0,2250,0,0,0 +2013,10,3,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-4,0,1721,-6,0,0 +2013,9,6,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-5,0,1840,-9,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1150,5,0,1405,-6,0,0 +2013,8,1,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,24,1,1150,2,0,0 +2013,7,15,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,819,2,0,1146,-7,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1350,99,1,1557,72,1,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1855,-2,0,2130,-16,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-3,0,1016,-11,0,0 +2013,4,9,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,-2,0,2224,-13,0,0 +2013,6,20,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1200,-6,0,1302,3,0,0 +2013,7,9,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-3,0,1420,-1,0,0 +2013,8,22,4,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,545,0,0,652,3,0,0 +2013,9,26,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-9,0,1709,-9,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,810,-5,0,927,-19,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,835,-3,0,1405,-10,0,0 +2013,10,31,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1221,29,1,1441,17,1,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1740,0,0,1955,-11,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,5,0,1555,1,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-6,0,1617,-3,0,0 +2013,5,12,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1055,5,0,1300,-5,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1725,96,1,1850,81,1,0 +2013,6,8,6,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1911,-2,0,2125,-15,0,0 +2013,5,12,7,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1105,30,1,1235,28,1,0 +2013,4,8,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,9,0,1645,3,0,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,920,-3,0,1035,-3,0,0 +2013,10,23,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,1,0,2135,-12,0,0 +2013,5,21,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1720,25,1,2000,35,1,0 +2013,8,18,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,932,-2,0,1220,0,0,0 +2013,8,3,6,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1144,-2,0,1400,-15,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1340,-3,0,1630,-8,0,0 +2013,4,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,620,-1,0,655,-7,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1006,-5,0,1308,-15,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,2000,15,1,2120,12,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,63,1,1445,58,1,0 +2013,7,23,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,-4,0,1125,17,1,0 +2013,10,13,7,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1159,-6,0,1436,5,0,0 +2013,9,29,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,-1,0,2142,6,0,0 +2013,8,14,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-9,0,754,-18,0,0 +2013,10,11,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1835,6,0,2005,-6,0,0 +2013,9,17,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1918,-15,0,2010,-36,0,0 +2013,8,28,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-3,0,1447,0,0,0 +2013,5,20,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,550,-5,0,1312,-1,0,0 +2013,10,5,6,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1829,-9,0,1949,-37,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1818,20,1,2029,43,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2030,4,0,2254,-13,0,0 +2013,7,11,4,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,-2,0,1500,-9,0,0 +2013,6,3,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,,1121,0,1,1 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,-3,0,2104,-20,0,0 +2013,5,18,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,-2,0,735,18,1,0 +2013,5,7,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1435,-4,0,1600,-23,0,0 +2013,8,1,4,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,113,1,2208,100,1,0 +2013,7,17,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,-13,0,14,-15,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1715,0,0,2055,-14,0,0 +2013,7,12,5,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,815,-5,0,1000,-11,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1555,0,0,1730,-16,0,0 +2013,8,9,5,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,12954,Long Beach Airport,Long Beach,CA,106,-7,0,720,0,0,0 +2013,8,16,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2123,1,0,529,4,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2105,34,1,2210,26,1,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,0,0,1835,-3,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,825,6,0,1045,14,0,0 +2013,5,26,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1435,38,1,1540,36,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1610,15,1,1817,14,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,840,-6,0,1005,-12,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1946,3,0,2038,-7,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1205,4,0,1448,6,0,0 +2013,9,20,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,11,0,800,30,1,0 +2013,10,3,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1709,36,1,1833,35,1,0 +2013,6,26,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,-2,0,1658,20,1,0 +2013,4,17,3,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1857,231,1,2208,225,1,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,715,-7,0,844,-22,0,0 +2013,8,7,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,2,0,1810,-9,0,0 +2013,6,9,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1230,12,0,1454,13,0,0 +2013,5,5,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,-7,0,2050,-10,0,0 +2013,5,11,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1724,0,0,1815,-3,0,0 +2013,10,27,7,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1314,-2,0,2043,9,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,25,1,2259,20,1,0 +2013,6,30,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,730,102,1,925,95,1,0 +2013,8,1,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-1,0,809,-2,0,0 +2013,6,29,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1235,-7,0,0 +2013,7,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,91,1,2133,90,1,0 +2013,10,13,7,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,830,-9,0,928,-25,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,-5,0,2358,-6,0,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,700,8,0,1542,53,1,0 +2013,8,20,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1015,102,1,1620,106,1,0 +2013,10,3,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-3,0,1120,-36,0,0 +2013,10,4,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-1,0,1256,8,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,5,0,2235,-1,0,0 +2013,4,16,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,723,1,0,1000,-11,0,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1515,-3,0,1649,9,0,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1659,23,1,1821,24,1,0 +2013,6,13,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,830,6,0,955,-2,0,0 +2013,4,28,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-9,0,1306,-13,0,0 +2013,4,12,5,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1738,9,0,2229,-2,0,0 +2013,10,17,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,754,-7,0,0 +2013,7,3,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1352,0,,1558,0,1,1 +2013,7,30,2,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,700,-5,0,905,-11,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1315,31,1,1659,9,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1751,15,1,2346,4,0,0 +2013,9,27,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,3,0,2206,11,0,0 +2013,7,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1415,-9,0,1551,-4,0,0 +2013,9,5,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,-10,0,1633,-18,0,0 +2013,5,27,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,700,-5,0,903,-4,0,0 +2013,6,2,7,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1733,0,,1910,0,1,1 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1944,9,0,2233,0,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,-4,0,1710,1,0,0 +2013,9,4,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1325,-1,0,1450,3,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,7,0,1325,-5,0,0 +2013,9,25,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1010,-3,0,1441,-20,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1436,-2,0,1835,-25,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,805,5,0,1105,-1,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,905,0,0,1118,17,1,0 +2013,7,16,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-4,0,1050,-14,0,0 +2013,4,5,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1640,-5,0,1810,-15,0,0 +2013,6,22,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1500,24,1,1755,15,1,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,600,-2,0,1050,1,0,0 +2013,6,19,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-1,0,1428,-1,0,0 +2013,4,16,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,2110,-3,0,2250,3,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1725,31,1,1830,22,1,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1845,4,0,2010,2,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,904,-1,0,1035,-21,0,0 +2013,5,31,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-8,0,1324,-12,0,0 +2013,6,18,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1040,-3,0,1223,-6,0,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-5,0,1627,-26,0,0 +2013,5,19,7,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,620,12,0,1431,16,1,0 +2013,6,22,6,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1615,73,1,1755,51,1,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,645,16,1,905,-8,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2220,3,0,627,19,1,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1430,-1,0,1916,-16,0,0 +2013,6,28,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2105,40,1,2205,43,1,0 +2013,7,24,3,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,605,-2,0,730,29,1,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,0,,1905,0,1,1 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,-3,0,1204,-16,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2105,0,0,2354,2,0,0 +2013,8,27,2,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,53,1,1439,32,1,0 +2013,8,28,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,0,0,1655,-3,0,0 +2013,8,15,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1945,-3,0,2104,-16,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-2,0,1450,-7,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1735,-2,0,2045,-1,0,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1830,112,1,1935,106,1,0 +2013,8,17,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-4,0,2121,-13,0,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,835,8,0,1055,-3,0,0 +2013,6,2,7,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1925,62,1,2232,52,1,0 +2013,8,10,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1700,0,0,1810,-5,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,0,,730,0,1,1 +2013,7,1,1,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,856,-1,0,1149,8,0,0 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1540,16,1,1739,5,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2240,0,0,112,-1,0,0 +2013,4,9,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-5,0,910,-28,0,0 +2013,4,10,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-3,0,1909,-8,0,0 +2013,7,17,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1910,0,0,1935,-5,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-9,0,1423,-2,0,0 +2013,10,11,5,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,820,-3,0,925,-17,0,0 +2013,5,8,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-6,0,1805,-5,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1250,-2,0,1430,4,0,0 +2013,9,28,6,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,23,1,1434,32,1,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,0,0,1100,-16,0,0 +2013,10,27,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1555,26,1,1710,25,1,0 +2013,8,27,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-3,0,1750,-17,0,0 +2013,8,13,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1505,-1,0,1710,4,0,0 +2013,4,16,2,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1310,153,1,2135,129,1,0 +2013,6,30,7,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,-1,0,1230,0,0,0 +2013,7,11,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,-5,0,1724,-3,0,0 +2013,6,2,7,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1321,1,0,1458,-12,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,953,-2,0,1215,27,1,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,840,-4,0,1020,-15,0,0 +2013,6,18,2,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1859,0,,2048,0,1,1 +2013,8,9,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1306,-2,0,1633,-12,0,0 +2013,10,30,3,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1815,25,1,2140,-5,0,0 +2013,5,20,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1925,-4,0,2054,-17,0,0 +2013,7,6,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2233,5,0,423,-10,0,0 +2013,5,25,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,51,1,2249,38,1,0 +2013,4,5,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,903,4,0,1213,-25,0,0 +2013,9,1,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1320,-2,0,1419,-6,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2009,-6,0,2105,44,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2201,-6,0,2342,-14,0,0 +2013,9,19,4,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,0,,1420,0,1,1 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,14,0,2220,6,0,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-2,0,924,10,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,-3,0,1755,6,0,0 +2013,5,6,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1820,-4,0,2127,-28,0,0 +2013,4,28,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,945,-1,0,1641,21,1,0 +2013,4,13,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-10,0,902,7,0,0 +2013,4,25,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-13,0,1055,-17,0,0 +2013,8,18,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,739,4,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1503,30,1,1735,1,0,0 +2013,10,30,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1320,-6,0,2113,-31,0,0 +2013,4,11,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,0,0,2310,19,1,0 +2013,5,18,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,10,0,1900,13,0,0 +2013,9,11,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,-5,0,1855,-8,0,0 +2013,7,28,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-5,0,1036,-8,0,0 +2013,8,29,4,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1050,0,0,1300,3,0,0 +2013,4,17,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,1,0,720,6,0,0 +2013,4,16,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1444,-5,0,1633,-14,0,0 +2013,5,15,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,705,-5,0,903,-13,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,13,0,1910,-2,0,0 +2013,10,2,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-5,0,1019,-2,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1150,9,0,1445,0,0,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1000,-6,0,1408,-20,0,0 +2013,4,15,1,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,3,0,1403,14,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1252,-5,0,1643,-32,0,0 +2013,10,3,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,5,0,1715,-7,0,0 +2013,9,20,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1850,3,0,2059,50,1,0 +2013,9,27,5,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,835,-5,0,1037,7,0,0 +2013,7,23,2,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,-1,0,1859,-7,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1058,-1,0,1338,-28,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1015,-5,0,1330,3,0,0 +2013,5,16,4,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,38,1,1630,61,1,0 +2013,5,23,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,735,-1,0,820,-2,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,4,0,947,-5,0,0 +2013,8,25,7,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,-8,0,1434,-9,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1733,-2,0,1859,21,1,0 +2013,9,27,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,745,-8,0,1122,-13,0,0 +2013,5,10,5,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1857,0,0,2048,-14,0,0 +2013,7,17,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-4,0,1750,-21,0,0 +2013,6,30,7,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,650,4,0,931,-19,0,0 +2013,9,29,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1340,-3,0,1550,-8,0,0 +2013,10,16,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1300,3,0,1420,-3,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1014,-2,0,1501,-14,0,0 +2013,9,22,7,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,2,0,1435,-6,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1050,3,0,1155,-3,0,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-5,0,947,-14,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2055,7,0,2127,6,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2005,19,1,2105,26,1,0 +2013,7,5,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,20,1,2140,19,1,0 +2013,8,22,4,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,84,1,2105,82,1,0 +2013,8,30,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-11,0,1756,4,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1035,6,0,1600,-8,0,0 +2013,4,8,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1926,-8,0,2107,0,0,0 +2013,10,2,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,101,1,1602,87,1,0 +2013,6,30,7,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1130,-9,0,1836,7,0,0 +2013,7,28,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1740,0,0,1830,1,0,0 +2013,6,9,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,28,1,1741,23,1,0 +2013,4,12,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,545,-1,0,927,-5,0,0 +2013,5,2,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,0,0,1130,3,0,0 +2013,5,19,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1610,0,0,2036,-13,0,0 +2013,5,1,3,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1740,13,0,1943,-2,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1005,17,1,1115,1,0,0 +2013,10,24,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1640,18,1,1840,18,1,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1014,-2,0,1321,-5,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,-1,0,1359,3,0,0 +2013,10,30,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2246,-6,0,640,-11,0,0 +2013,10,25,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-5,0,1024,-23,0,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,0,0,1835,-1,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,835,2,0,1055,-8,0,0 +2013,9,4,3,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,-1,0,1925,-20,0,0 +2013,8,5,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,915,6,0,1041,-7,0,0 +2013,4,26,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-4,0,1203,20,1,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1630,24,1,1850,29,1,0 +2013,4,18,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,5,0,1825,-23,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1710,43,1,2240,51,1,0 +2013,10,5,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,-8,0,1710,-26,0,0 +2013,6,28,5,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1710,-13,0,1925,-19,0,0 +2013,9,24,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,855,14,0,1210,1,0,0 +2013,5,6,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1050,-1,0,1150,-1,0,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,929,-1,0,1241,-24,0,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,558,0,0,1158,13,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,950,-1,0,1122,-8,0,0 +2013,6,9,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1513,120,1,2204,148,1,0 +2013,6,23,7,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-8,0,1240,-12,0,0 +2013,5,23,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,7,0,715,-2,0,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,-6,0,1235,-18,0,0 +2013,5,4,6,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1835,17,1,2126,14,0,0 +2013,5,21,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1436,-8,0,1821,-2,0,0 +2013,5,20,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-1,0,1335,-8,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1314,-4,0,1632,-5,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1210,-3,0,1330,-12,0,0 +2013,4,3,3,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,625,-2,0,820,-13,0,0 +2013,7,12,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1823,16,1,2359,14,0,0 +2013,8,25,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,2039,-22,0,0 +2013,9,29,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1619,-6,0,1745,-12,0,0 +2013,10,6,7,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,12,0,1420,15,1,0 +2013,4,19,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1320,5,0,1635,-2,0,0 +2013,9,23,1,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,550,6,0,729,-4,0,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-9,0,858,-5,0,0 +2013,4,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-5,0,1255,-6,0,0 +2013,5,5,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,14,0,2200,18,1,0 +2013,4,19,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,21,1,1730,17,1,0 +2013,10,2,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1820,20,1,2250,4,0,0 +2013,10,3,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1910,157,1,2030,158,1,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2147,0,0,12,3,0,0 +2013,9,5,4,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1310,-9,0,1525,-27,0,0 +2013,4,16,2,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,947,17,1,0 +2013,4,6,6,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1000,-7,0,1120,-15,0,0 +2013,5,24,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,3,0,1005,33,1,0 +2013,7,3,3,DL,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,-7,0,1823,-12,0,0 +2013,9,29,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1450,0,,1835,0,1,1 +2013,4,23,2,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1700,-5,0,1855,-4,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1845,2,0,1945,2,0,0 +2013,7,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,835,-2,0,853,-8,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1843,-6,0,2200,-10,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1700,-2,0,1850,-14,0,0 +2013,8,3,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1239,3,0,1835,-29,0,0 +2013,4,30,2,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1529,-4,0,1920,-3,0,0 +2013,8,20,2,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,615,-10,0,755,-9,0,0 +2013,4,4,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-1,0,1727,-14,0,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-4,0,2327,-24,0,0 +2013,10,13,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,43,1,1545,35,1,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1210,-1,0,1315,-4,0,0 +2013,10,15,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,1246,59,1,1435,42,1,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,1,0,1225,-10,0,0 +2013,6,6,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1450,81,1,1545,81,1,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,-9,0,1751,-16,0,0 +2013,4,13,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-2,0,1026,12,0,0 +2013,6,9,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-7,0,1025,13,0,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,901,-8,0,1110,-7,0,0 +2013,7,21,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,3,0,2225,11,0,0 +2013,7,16,2,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1055,-4,0,1635,7,0,0 +2013,5,5,7,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,1010,0,0,1600,-2,0,0 +2013,7,31,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,1,0,1015,3,0,0 +2013,9,26,4,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1955,49,1,2110,42,1,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1301,0,0,1419,-6,0,0 +2013,7,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,841,0,0,934,-12,0,0 +2013,4,18,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,201,1,855,243,1,0 +2013,5,29,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,-7,0,2130,-1,0,0 +2013,5,5,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-7,0,1200,-19,0,0 +2013,5,20,1,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1000,53,1,1236,30,1,0 +2013,10,1,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1400,-7,0,1525,-7,0,0 +2013,6,13,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,545,2,0,640,-3,0,0 +2013,7,25,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-5,0,1352,-21,0,0 +2013,4,17,3,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-7,0,1106,19,1,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-6,0,1430,-19,0,0 +2013,5,23,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,0,0,1025,2,0,0 +2013,5,17,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1350,-6,0,1655,-14,0,0 +2013,6,5,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2005,11,0,2147,7,0,0 +2013,7,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2113,24,1,2235,36,1,0 +2013,6,6,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,8,0,1810,30,1,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,1,0,912,-13,0,0 +2013,4,9,2,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,0,0,1550,6,0,0 +2013,10,18,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1706,-3,0,1842,-6,0,0 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1125,-4,0,1340,-6,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,633,-5,0,926,-28,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1952,33,1,2350,-8,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,9,0,2205,-16,0,0 +2013,10,3,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1842,1,0,2135,-6,0,0 +2013,7,9,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,945,-4,0,1045,10,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1850,-5,0,2250,-26,0,0 +2013,10,24,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,0,0,1055,-18,0,0 +2013,9,30,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1855,-10,0,2100,19,1,0 +2013,6,12,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,4,0,1855,14,0,0 +2013,7,2,2,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1100,2,0,1915,19,1,0 +2013,9,20,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1937,130,1,2143,142,1,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1520,-1,0,1719,13,0,0 +2013,4,28,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,758,-7,0,1603,6,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,81,1,1912,80,1,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,0,0,2237,-6,0,0 +2013,10,24,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,-3,0,1550,10,0,0 +2013,7,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1005,-4,0,1130,-16,0,0 +2013,9,17,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-2,0,1010,-9,0,0 +2013,5,4,6,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1829,-6,0,2110,-4,0,0 +2013,7,11,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-1,0,820,2,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1650,-4,0,1805,-22,0,0 +2013,10,16,3,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,6,0,1100,5,0,0 +2013,8,23,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,840,6,0,1025,23,1,0 +2013,5,18,6,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1230,18,1,1421,10,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1120,-1,0,1245,-18,0,0 +2013,9,15,7,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1020,-5,0,1455,-9,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2300,-4,0,646,-23,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1420,0,0,1624,-10,0,0 +2013,9,11,3,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1632,8,0,1820,12,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1757,-1,0,1921,-23,0,0 +2013,5,3,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1629,16,1,1814,7,0,0 +2013,8,24,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,52,-6,0,546,-16,0,0 +2013,10,20,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1946,-4,0,2048,-3,0,0 +2013,7,18,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,49,1,2110,55,1,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1550,1,0,1745,3,0,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,745,15,1,1020,6,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2011,32,1,2254,30,1,0 +2013,6,26,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-6,0,1945,-2,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,825,5,0,914,6,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,904,0,0,1022,-5,0,0 +2013,5,22,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,3,0,650,5,0,0 +2013,7,26,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1105,-3,0,1528,-4,0,0 +2013,9,22,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2254,58,1,435,60,1,0 +2013,5,6,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,-12,0,1255,-19,0,0 +2013,7,9,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,24,1,1620,4,0,0 +2013,5,3,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,50,-5,0,621,4,0,0 +2013,6,20,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1320,2,0,1445,0,0,0 +2013,8,14,3,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1026,-2,0,1206,14,0,0 +2013,10,26,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1240,2,0,1545,-3,0,0 +2013,7,10,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,0,,1320,0,1,1 +2013,9,3,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1330,45,1,1510,35,1,0 +2013,8,13,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-4,0,747,-10,0,0 +2013,4,9,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,8,0,1445,-2,0,0 +2013,5,8,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1114,-3,0,1349,6,0,0 +2013,5,3,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,18,1,1839,7,0,0 +2013,4,10,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2055,0,,2200,0,1,1 +2013,6,27,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1715,3,0,1840,1,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1405,54,1,1645,39,1,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1310,-2,0,1435,-28,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,811,37,1,933,28,1,0 +2013,7,24,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1420,36,1,1510,32,1,0 +2013,4,22,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1615,115,1,2001,117,1,0 +2013,5,30,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,2,0,1515,-4,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1352,-4,0,1537,-7,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1630,-4,0,1805,-11,0,0 +2013,7,27,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1545,27,1,1715,17,1,0 +2013,5,30,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,920,-3,0,1059,9,0,0 +2013,10,14,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1542,9,0,1731,4,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,739,-3,0,1329,-18,0,0 +2013,6,21,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,830,-18,0,0 +2013,10,8,2,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1725,-1,0,1955,-19,0,0 +2013,8,5,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,-10,0,949,-9,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,807,-6,0,924,-17,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,186,1,2059,202,1,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,-6,0,1153,-4,0,0 +2013,10,31,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-3,0,1838,-1,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1825,6,0,2019,23,1,0 +2013,4,4,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-2,0,647,1,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,0,0,1725,-6,0,0 +2013,4,8,1,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,13,0,1802,36,1,0 +2013,6,14,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,56,1,1345,53,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1349,-1,0,1349,-4,0,0 +2013,6,8,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2145,17,1,2225,11,0,0 +2013,7,11,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1420,102,1,1555,89,1,0 +2013,5,1,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1550,6,0,1748,11,0,0 +2013,10,14,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,940,-5,0,1046,-1,0,0 +2013,5,30,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1705,1,0,1805,-4,0,0 +2013,8,17,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-2,0,1330,-20,0,0 +2013,6,1,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,1024,-19,0,0 +2013,8,1,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,623,-4,0,655,-13,0,0 +2013,7,18,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1319,-1,0,1405,-3,0,0 +2013,10,19,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1529,0,0,1845,-7,0,0 +2013,9,17,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-11,0,811,-23,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1425,35,1,1610,50,1,0 +2013,8,16,5,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-1,0,1923,5,0,0 +2013,8,16,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,182,1,905,200,1,0 +2013,8,9,5,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-6,0,917,-13,0,0 +2013,8,2,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,705,-7,0,816,-14,0,0 +2013,5,9,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-4,0,1252,-3,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1920,4,0,2144,-22,0,0 +2013,6,19,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1550,12,0,1700,11,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1630,0,0,1833,-15,0,0 +2013,8,21,3,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2019,-2,0,2310,2,0,0 +2013,7,12,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,615,-5,0,945,-1,0,0 +2013,8,2,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-5,0,1240,6,0,0 +2013,9,3,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,49,1,1307,43,1,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,610,-5,0,902,-17,0,0 +2013,10,30,3,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1443,5,0,1651,30,1,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,1,0,1035,-8,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,18,1,2110,-1,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,950,8,0,1205,4,0,0 +2013,6,11,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1334,-6,0,1442,41,1,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,850,1,0,1030,1,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1300,45,1,1530,50,1,0 +2013,8,7,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1255,-4,0,1405,-6,0,0 +2013,10,22,2,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1355,-6,0,1605,-32,0,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1250,11,0,1350,23,1,0 +2013,7,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,-9,0,952,-24,0,0 +2013,5,24,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,700,-4,0,903,-5,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1724,13,0,1929,-5,0,0 +2013,8,4,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,822,-17,0,0 +2013,8,31,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,858,-5,0,948,8,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,2,0,2250,41,1,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,-4,0,915,1,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-4,0,1830,12,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,3,0,1345,20,1,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2055,-10,0,2228,-14,0,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,0,0,1005,-6,0,0 +2013,9,30,1,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,835,87,1,1110,88,1,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2105,31,1,2340,24,1,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1645,-3,0,1940,0,0,0 +2013,4,4,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1210,2,0,1331,2,0,0 +2013,4,23,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-6,0,1225,5,0,0 +2013,7,15,1,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1734,-7,0,2022,-52,0,0 +2013,6,17,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2012,42,1,2336,34,1,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1725,-6,0,1955,-8,0,0 +2013,9,9,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-8,0,1350,-7,0,0 +2013,4,7,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-1,0,955,-2,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,730,-6,0,1114,-20,0,0 +2013,9,23,1,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2025,-14,0,2303,-20,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1630,14,0,1850,4,0,0 +2013,9,29,7,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,926,11,0,1159,27,1,0 +2013,7,4,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-7,0,1652,-14,0,0 +2013,5,25,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,612,-9,0,740,-8,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1005,-5,0,1255,-15,0,0 +2013,6,29,6,EV,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,180,1,816,179,1,0 +2013,5,13,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,600,5,0,910,12,0,0 +2013,6,21,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,846,-4,0,1016,-6,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1255,19,1,1755,-7,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2145,-3,0,18,-32,0,0 +2013,4,30,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-11,0,850,-33,0,0 +2013,5,4,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1750,47,1,2035,37,1,0 +2013,6,18,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-7,0,1120,2,0,0 +2013,10,9,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-2,0,1320,-12,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,830,-3,0,1404,-14,0,0 +2013,4,2,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,-1,0,1504,6,0,0 +2013,7,12,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,910,-8,0,1025,-15,0,0 +2013,4,20,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1345,-4,0,1350,-1,0,0 +2013,9,15,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,-7,0,2000,-6,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,7,0,2255,-14,0,0 +2013,7,17,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,930,4,0,1055,-5,0,0 +2013,6,7,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-3,0,1223,2,0,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,910,14,0,1230,11,0,0 +2013,7,26,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,-4,0,1320,-4,0,0 +2013,9,16,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,905,0,0,1505,-16,0,0 +2013,5,20,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,639,-2,0,809,-11,0,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1929,-10,0,2106,-8,0,0 +2013,10,28,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1310,-4,0,1515,4,0,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1245,-6,0,1410,-3,0,0 +2013,4,5,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-3,0,1618,-11,0,0 +2013,4,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1055,-1,0,1410,-20,0,0 +2013,7,30,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-7,0,2110,-13,0,0 +2013,6,13,4,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1315,-3,0,1442,-5,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1145,20,1,1219,12,0,0 +2013,9,2,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,715,-3,0,1034,-11,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,811,8,0,1059,-4,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1317,-4,0,1436,38,1,0 +2013,5,30,4,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,4,0,1725,-5,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1650,100,1,1805,81,1,0 +2013,5,17,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,600,-9,0,729,-14,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,934,4,0,1055,-6,0,0 +2013,6,3,1,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1700,108,1,1835,109,1,0 +2013,4,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2155,17,1,2300,14,0,0 +2013,5,28,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,-7,0,2042,-9,0,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1315,-4,0,1420,-6,0,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,-2,0,928,-11,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1001,-11,0,1159,-37,0,0 +2013,7,16,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1400,81,1,1504,0,1,1 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1125,1,0,1335,0,0,0 +2013,6,3,1,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1804,0,0,2057,-13,0,0 +2013,10,2,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1501,-3,0,1732,-14,0,0 +2013,5,20,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-7,0,1909,-19,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,953,0,0,1800,-31,0,0 +2013,4,17,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1620,-3,0,1734,20,1,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,89,1,26,66,1,0 +2013,4,1,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,635,-7,0,739,-17,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,10,0,1312,19,1,0 +2013,5,22,3,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-3,0,2051,-5,0,0 +2013,5,10,5,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,44,1,1253,27,1,0 +2013,7,21,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-6,0,901,17,1,0 +2013,6,9,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,630,0,0,726,17,1,0 +2013,10,10,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2025,-8,0,2314,-18,0,0 +2013,5,16,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-7,0,955,17,1,0 +2013,7,28,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1634,9,0,2002,5,0,0 +2013,7,6,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,-3,0,1749,-11,0,0 +2013,9,15,7,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1538,-1,0,1646,-1,0,0 +2013,5,6,1,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1550,-5,0,1942,-7,0,0 +2013,8,7,3,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2159,-3,0,702,-15,0,0 +2013,9,26,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1100,-6,0,1225,0,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1230,77,1,1525,112,1,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,840,18,1,1050,18,1,0 +2013,9,17,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1035,0,0,1155,-11,0,0 +2013,7,14,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1751,-4,0,2139,-8,0,0 +2013,5,18,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1256,-5,0,1425,-1,0,0 +2013,10,6,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1243,3,0,1513,-10,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1929,-1,0,2259,-25,0,0 +2013,5,8,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1300,200,1,1550,208,1,0 +2013,6,16,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,37,1,1322,45,1,0 +2013,8,1,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-6,0,1712,65,1,0 +2013,9,19,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,186,1,1900,181,1,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1830,8,0,2255,4,0,0 +2013,6,8,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,803,-10,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2245,32,1,15,52,1,0 +2013,6,5,3,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1400,7,0,1450,13,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,32,1,1810,31,1,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1805,8,0,1925,-3,0,0 +2013,8,11,7,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1130,-5,0,1350,2,0,0 +2013,4,4,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,3,0,1435,-4,0,0 +2013,8,6,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-2,0,1004,-16,0,0 +2013,9,29,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-3,0,2020,-10,0,0 +2013,6,22,6,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1635,-2,0,1819,-4,0,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1338,7,0,2218,0,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,6,0,1954,1,0,0 +2013,7,16,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,10,0,1140,5,0,0 +2013,8,27,2,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,5,0,1133,-8,0,0 +2013,4,2,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1336,-5,0,1458,37,1,0 +2013,9,10,2,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,521,-8,0,618,-18,0,0 +2013,6,28,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2305,65,1,637,55,1,0 +2013,9,13,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2329,-5,0,515,-8,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1248,41,1,1657,40,1,0 +2013,10,27,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1330,-9,0,1510,-19,0,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,73,1,1502,65,1,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-3,0,1356,0,0,0 +2013,10,13,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,-10,0,1911,-5,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,4,0,1216,-14,0,0 +2013,8,11,7,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2339,28,1,553,13,0,0 +2013,7,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1724,-3,0,1851,-11,0,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,810,16,1,1035,12,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1040,-6,0,1400,-1,0,0 +2013,6,26,3,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,744,153,1,850,194,1,0 +2013,4,1,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,648,6,0,734,8,0,0 +2013,5,22,3,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1023,-5,0,1305,-8,0,0 +2013,6,20,4,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,3,0,2330,-3,0,0 +2013,7,9,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-5,0,1828,-6,0,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,705,-2,0,915,-3,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2145,-5,0,2255,4,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1345,3,0,1450,22,1,0 +2013,9,16,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,715,24,1,901,10,0,0 +2013,8,7,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,1,0,2025,2,0,0 +2013,5,10,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,1,0,900,-26,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,925,5,0,1100,-3,0,0 +2013,8,14,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1758,5,0,2319,-5,0,0 +2013,9,11,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1850,-14,0,1925,-6,0,0 +2013,10,26,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1245,0,0,1345,1,0,0 +2013,10,28,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,-2,0,755,-1,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,69,1,1021,69,1,0 +2013,10,20,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,930,-4,0,1055,-19,0,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,820,-3,0,1055,28,1,0 +2013,10,17,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1415,-2,0,1520,-3,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,916,2,0,1522,-12,0,0 +2013,9,24,2,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-1,0,915,-17,0,0 +2013,7,13,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,64,1,2016,55,1,0 +2013,5,27,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1850,-5,0,2259,-19,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1556,-1,0,1722,-9,0,0 +2013,7,25,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-12,0,2010,0,0,0 +2013,9,28,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1137,-12,0,1529,-27,0,0 +2013,10,24,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1436,106,1,1559,101,1,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,15,1,1824,39,1,0 +2013,9,28,6,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,825,-2,0,1636,-29,0,0 +2013,7,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,902,-1,0,1025,3,0,0 +2013,4,3,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,55,1,2111,50,1,0 +2013,9,2,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1505,-8,0,1731,-3,0,0 +2013,4,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,720,-2,0,1109,-14,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1840,27,1,2020,12,0,0 +2013,5,20,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,0,,2020,0,1,1 +2013,4,6,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1425,-6,0,1708,-10,0,0 +2013,4,17,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,6,0,2015,-9,0,0 +2013,7,24,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-3,0,1015,-1,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1045,-2,0,1145,-5,0,0 +2013,6,15,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,815,0,0,925,4,0,0 +2013,8,29,4,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1100,-3,0,1220,-8,0,0 +2013,5,24,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2035,-10,0,2315,-22,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1440,2,0,1550,-2,0,0 +2013,8,6,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,828,-7,0,1645,-19,0,0 +2013,10,7,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1335,13,0,1450,2,0,0 +2013,9,25,3,9E,12953,LaGuardia,New York,NY,12339,Indianapolis International,Indianapolis,IN,1000,-14,0,1231,-30,0,0 +2013,8,24,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1330,-5,0,1525,-14,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,12,0,1400,0,0,0 +2013,5,24,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-4,0,934,7,0,0 +2013,8,14,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1855,3,0,2008,5,0,0 +2013,9,15,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1127,-2,0,1629,4,0,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1650,4,0,117,-28,0,0 +2013,10,11,5,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1820,12,0,1959,11,0,0 +2013,7,3,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,12,0,1750,15,1,0 +2013,8,17,6,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,-3,0,1911,-7,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1505,36,1,1755,32,1,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1415,20,1,1625,19,1,0 +2013,10,6,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,19,1,1520,5,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1315,7,0,1445,-2,0,0 +2013,5,18,6,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,1,0,918,-6,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1910,-3,0,2030,6,0,0 +2013,10,2,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,745,-6,0,925,-18,0,0 +2013,4,3,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,12,0,1750,8,0,0 +2013,6,4,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,8,0,2025,12,0,0 +2013,8,28,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,4,0,2111,4,0,0 +2013,6,6,4,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1710,20,1,1835,8,0,0 +2013,9,25,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1200,-7,0,1735,-27,0,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-3,0,1351,-2,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,-3,0,1535,8,0,0 +2013,9,4,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1434,0,,1534,0,1,1 +2013,5,6,1,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1400,-4,0,2215,9,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1340,8,0,1510,-2,0,0 +2013,6,18,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1505,-10,0,1925,-7,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,0,0,2056,-1,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1720,11,0,2000,7,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1930,7,0,2155,9,0,0 +2013,4,30,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1526,6,0,1652,19,1,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,33,1,2148,19,1,0 +2013,10,30,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-9,0,1315,5,0,0 +2013,7,8,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,42,1,1810,36,1,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1735,18,1,2010,-19,0,0 +2013,9,6,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,2,0,1210,-3,0,0 +2013,6,3,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,129,1,1805,108,1,0 +2013,7,9,2,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,-2,0,1055,-3,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1930,-2,0,2112,-29,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,830,0,0,1117,-23,0,0 +2013,7,11,4,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1220,-1,0,1320,-11,0,0 +2013,4,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1955,67,1,2100,57,1,0 +2013,10,24,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,1,0,915,-6,0,0 +2013,7,27,6,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,735,-7,0,1000,1,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1100,30,1,1205,26,1,0 +2013,8,21,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,735,1,0,1050,2,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,950,0,0,1136,5,0,0 +2013,5,22,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1145,-3,0,1245,-7,0,0 +2013,6,10,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,150,1,2140,135,1,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,825,-1,0,920,-8,0,0 +2013,6,14,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,1,0,1000,-2,0,0 +2013,4,14,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1720,5,0,1825,-5,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,844,11,0,1651,2,0,0 +2013,9,13,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,929,29,1,1129,39,1,0 +2013,8,15,4,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1116,-3,0,1413,-15,0,0 +2013,5,15,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1100,-7,0,1307,-18,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2130,-4,0,2225,-4,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,800,6,0,1235,5,0,0 +2013,6,7,5,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1758,68,1,2033,46,1,0 +2013,6,13,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,0,,1205,0,1,1 +2013,6,20,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,5,0,1311,13,0,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,4,0,2058,-1,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1240,-3,0,1430,-6,0,0 +2013,4,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,2000,68,1,2216,24,1,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,810,-1,0,1140,-7,0,0 +2013,6,6,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,0,0,1115,15,1,0 +2013,6,24,1,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,-5,0,1053,-1,0,0 +2013,9,13,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,35,1,1705,33,1,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,-6,0,1554,-2,0,0 +2013,5,18,6,YV,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1610,-3,0,2010,-13,0,0 +2013,10,22,2,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,709,-11,0,1520,-5,0,0 +2013,10,2,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1140,-10,0,1258,-13,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1655,23,1,1800,14,0,0 +2013,5,25,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1020,-2,0,1320,-10,0,0 +2013,7,10,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2007,190,1,2026,177,1,0 +2013,10,26,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-8,0,1341,-13,0,0 +2013,7,26,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2335,36,1,609,20,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,61,1,2115,45,1,0 +2013,8,4,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2010,-1,0,2156,-16,0,0 +2013,9,19,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-1,0,1558,-1,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1010,-1,0,1132,-6,0,0 +2013,8,11,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,48,1,543,52,1,0 +2013,6,30,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1750,6,0,1905,3,0,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,3,0,1945,74,1,0 +2013,8,26,1,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,0,0,2029,2,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,706,61,1,1026,39,1,0 +2013,8,11,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,13,0,2020,17,1,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1053,-6,0,1824,-19,0,0 +2013,4,9,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1915,6,0,2105,0,0,0 +2013,8,22,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1000,-2,0,1005,-7,0,0 +2013,4,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1935,4,0,2125,7,0,0 +2013,8,23,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,820,-3,0,1040,-27,0,0 +2013,7,21,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1740,11,0,1812,28,1,0 +2013,6,17,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,17,1,1130,17,1,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,840,1,0,1139,15,1,0 +2013,8,26,1,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1315,-2,0,1536,4,0,0 +2013,10,2,3,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1816,-6,0,1925,-19,0,0 +2013,8,24,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,948,91,1,1205,81,1,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,3,0,1006,12,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-1,0,935,-6,0,0 +2013,7,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,705,-1,0,832,5,0,0 +2013,8,25,7,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,945,-2,0,1220,9,0,0 +2013,7,10,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,-2,0,1028,0,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-3,0,1157,-15,0,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1845,4,0,1940,-3,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1913,17,1,2240,15,1,0 +2013,4,27,6,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-15,0,1755,1,0,0 +2013,10,21,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1235,-5,0,1355,4,0,0 +2013,8,6,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1100,0,0,1245,-12,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,-9,0,1733,3,0,0 +2013,6,26,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1111,4,0,1207,-9,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,34,1,1005,41,1,0 +2013,5,9,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1007,-10,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1945,-5,0,2221,-9,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1203,5,0,1348,12,0,0 +2013,10,8,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,24,1,1506,37,1,0 +2013,5,20,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-6,0,2326,-5,0,0 +2013,6,27,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2105,118,1,2200,119,1,0 +2013,10,10,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1815,18,1,1925,32,1,0 +2013,4,3,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1000,-2,0,1105,-4,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1306,0,0,1622,-8,0,0 +2013,4,17,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1120,14,0,1335,34,1,0 +2013,4,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,-9,0,1541,-5,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,-3,0,2327,-12,0,0 +2013,7,7,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,905,2,0,1225,-32,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1758,15,1,1955,2,0,0 +2013,8,26,1,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1145,16,1,1735,8,0,0 +2013,8,26,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,0,0,1740,-3,0,0 +2013,8,3,6,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,955,-3,0,1115,9,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,-3,0,2252,-17,0,0 +2013,5,9,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-2,0,1857,0,0,0 +2013,10,27,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,-7,0,1828,-6,0,0 +2013,5,29,3,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1530,-4,0,1805,-9,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,16,1,1000,-1,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,847,-5,0,1536,1,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,600,-2,0,851,-24,0,0 +2013,10,28,1,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,700,-9,0,755,-6,0,0 +2013,7,15,1,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1130,4,0,1350,-10,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1830,34,1,5,16,1,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1430,84,1,1755,96,1,0 +2013,9,10,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-7,0,819,-7,0,0 +2013,10,27,7,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,825,1,0,1041,-12,0,0 +2013,10,7,1,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1440,-3,0,2305,6,0,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1030,-4,0,1345,6,0,0 +2013,10,31,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,809,-7,0,1039,-12,0,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1810,18,1,2215,3,0,0 +2013,4,11,4,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,815,-2,0,1030,-23,0,0 +2013,7,13,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1400,8,0,1505,-4,0,0 +2013,10,4,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,0,,910,0,1,1 +2013,10,4,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1910,8,0,2149,16,1,0 +2013,8,8,4,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1755,0,,2255,0,1,1 +2013,8,17,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,-3,0,1235,-7,0,0 +2013,7,12,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1545,-3,0,1655,-20,0,0 +2013,10,20,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,0,0,1950,0,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,49,1,1036,29,1,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,729,0,0,1023,-10,0,0 +2013,6,6,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1352,-1,0,1511,-3,0,0 +2013,6,28,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,0,,1645,0,1,1 +2013,5,18,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,-2,0,1255,-13,0,0 +2013,4,29,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1148,-10,0,1430,-29,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1250,0,0,1430,-18,0,0 +2013,5,17,5,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1326,-2,0,1830,9,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,14,0,2308,-6,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2025,96,1,2255,98,1,0 +2013,9,15,7,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,16,1,1645,15,1,0 +2013,9,23,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1500,18,1,1635,21,1,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,-3,0,1435,-12,0,0 +2013,6,16,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,0,0,1110,-2,0,0 +2013,6,28,5,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-6,0,1129,-34,0,0 +2013,7,1,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,545,-7,0,607,-22,0,0 +2013,7,22,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1741,8,0,2035,21,1,0 +2013,6,5,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2055,0,0,2120,-2,0,0 +2013,5,5,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1213,17,1,1407,22,1,0 +2013,5,24,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1008,85,1,1152,117,1,0 +2013,4,9,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1305,-7,0,1455,5,0,0 +2013,5,4,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1930,-4,0,2129,-25,0,0 +2013,10,26,6,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-1,0,1155,-17,0,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1400,-2,0,1720,-15,0,0 +2013,9,18,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1115,15,1,1246,19,1,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,829,2,0,1008,-6,0,0 +2013,4,1,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2040,-10,0,2155,-15,0,0 +2013,6,17,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,2005,-2,0,2158,15,1,0 +2013,6,24,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-1,0,940,-17,0,0 +2013,10,4,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1745,2,0,1915,-11,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1840,31,1,44,19,1,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1120,1,0,1456,-6,0,0 +2013,7,8,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1755,4,0,1855,-5,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,18,1,2235,27,1,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1430,0,0,1620,-16,0,0 +2013,6,16,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,-10,0,1705,-13,0,0 +2013,5,2,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,711,-9,0,927,-18,0,0 +2013,5,16,4,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-1,0,1549,-2,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1959,0,0,2145,-8,0,0 +2013,9,9,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,735,3,0,800,10,0,0 +2013,4,17,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,-11,0,2120,-12,0,0 +2013,9,29,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-1,0,1249,-27,0,0 +2013,5,18,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,-5,0,957,-3,0,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,18,1,2100,0,0,0 +2013,4,23,2,DL,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-2,0,1301,-10,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1609,-2,0,1833,-7,0,0 +2013,5,3,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1530,15,1,1837,7,0,0 +2013,6,25,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-5,0,1652,14,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1450,28,1,1610,18,1,0 +2013,7,10,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13244,Memphis International,Memphis,TN,135,-9,0,737,-22,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,29,1,2130,22,1,0 +2013,9,28,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-6,0,1235,-23,0,0 +2013,7,26,5,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,-2,0,1155,-19,0,0 +2013,8,5,1,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,650,-3,0,745,-14,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1540,-2,0,1826,-9,0,0 +2013,7,1,1,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1558,18,1,1732,56,1,0 +2013,8,8,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,535,-6,0,636,5,0,0 +2013,10,24,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1255,-3,0,1440,13,0,0 +2013,6,2,7,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-1,0,550,-15,0,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1940,25,1,2240,27,1,0 +2013,8,18,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-5,0,1720,-12,0,0 +2013,7,30,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1220,-5,0,1425,1,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,22,1,2310,18,1,0 +2013,7,9,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1145,-1,0,1535,-10,0,0 +2013,5,15,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,17,1,1250,12,0,0 +2013,10,11,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1742,5,0,1850,-2,0,0 +2013,6,10,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1300,-5,0,1350,-12,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,6,0,1835,2,0,0 +2013,5,17,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1305,-4,0,1601,-21,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,25,1,2325,13,0,0 +2013,4,30,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-12,0,930,3,0,0 +2013,6,24,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-1,0,1032,-1,0,0 +2013,9,26,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,1610,-8,0,0 +2013,4,16,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2254,-8,0,714,-38,0,0 +2013,9,24,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-4,0,1412,-23,0,0 +2013,10,12,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1630,-6,0,1640,-13,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,740,-4,0,845,-11,0,0 +2013,4,16,2,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,14,0,1638,-4,0,0 +2013,6,25,2,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,5,0,1551,-7,0,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,621,-4,0,800,-10,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,4,0,1525,-3,0,0 +2013,4,18,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1757,0,0,1923,-1,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1045,-1,0,1210,5,0,0 +2013,9,9,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,-3,0,1303,-9,0,0 +2013,5,24,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1705,92,1,2055,83,1,0 +2013,8,8,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1700,-6,0,1756,5,0,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-3,0,1006,3,0,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1135,-7,0,1355,-19,0,0 +2013,9,27,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,755,0,0,905,14,0,0 +2013,10,20,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2002,-1,0,2136,-1,0,0 +2013,5,3,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1052,-1,0,1200,-10,0,0 +2013,9,17,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1127,-5,0,1208,5,0,0 +2013,6,24,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1735,0,,2105,0,1,1 +2013,8,1,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,1,0,1525,3,0,0 +2013,6,14,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,744,-9,0,0 +2013,10,7,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1450,10,0,1555,14,0,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2247,-4,0,15,-8,0,0 +2013,4,24,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,509,-10,0,630,11,0,0 +2013,6,6,4,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,11,0,1335,11,0,0 +2013,4,24,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1505,-7,0,1803,-9,0,0 +2013,5,27,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1425,-4,0,1631,-17,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1145,133,1,1330,146,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,17,1,2214,3,0,0 +2013,10,3,4,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,-2,0,1245,-3,0,0 +2013,10,30,3,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1716,-4,0,1803,30,1,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-7,0,1700,-30,0,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,52,1,1525,55,1,0 +2013,4,29,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-7,0,2200,-4,0,0 +2013,7,9,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1415,11,0,1534,1,0,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,-1,0,1927,-19,0,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1825,-4,0,2125,-8,0,0 +2013,5,1,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,800,0,0,940,0,0,0 +2013,5,11,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,630,-6,0,820,-4,0,0 +2013,8,5,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,28,1,2223,32,1,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,10,0,1920,-4,0,0 +2013,5,16,4,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1731,-3,0,2044,13,0,0 +2013,7,16,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-2,0,1955,8,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,755,4,0,923,-3,0,0 +2013,7,11,4,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,-2,0,957,2,0,0 +2013,6,5,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1815,71,1,1915,74,1,0 +2013,6,14,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,13,0,925,25,1,0 +2013,4,30,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,-1,0,1942,-14,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1940,17,1,2338,-17,0,0 +2013,4,6,6,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,540,4,0,720,2,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-2,0,815,0,0,0 +2013,10,31,4,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-7,0,1930,-2,0,0 +2013,6,3,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-1,0,1018,-13,0,0 +2013,10,26,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1840,-5,0,2100,-8,0,0 +2013,10,29,2,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,959,-2,0,1144,-2,0,0 +2013,6,25,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,55,1,2142,71,1,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2150,-5,0,2337,-4,0,0 +2013,9,22,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,-12,0,1728,-14,0,0 +2013,8,24,6,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1650,76,1,1744,77,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,37,1,1620,33,1,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-8,0,1055,-12,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-9,0,2200,-6,0,0 +2013,10,29,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1840,-7,0,2100,-19,0,0 +2013,7,26,5,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1435,6,0,1750,4,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1105,-6,0,1335,-9,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,847,-6,0,1150,-8,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1300,26,1,1651,70,1,0 +2013,10,3,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,541,-10,0,849,-2,0,0 +2013,8,14,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1011,-6,0,1248,-21,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,956,-4,0,1129,-6,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1725,9,0,1955,3,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,16,1,1403,7,0,0 +2013,5,11,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,4,0,1834,22,1,0 +2013,6,9,7,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-8,0,929,-1,0,0 +2013,10,26,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,645,-1,0,735,5,0,0 +2013,10,27,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,821,3,0,1020,-8,0,0 +2013,8,12,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,-1,0,2302,-3,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2145,0,0,2327,-19,0,0 +2013,10,7,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1500,-5,0,1655,-19,0,0 +2013,10,2,3,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,823,-5,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1630,3,0,1906,-6,0,0 +2013,5,26,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-7,0,1951,-15,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1320,10,0,1620,-1,0,0 +2013,8,3,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,21,1,1303,41,1,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1925,-4,0,2230,-23,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-2,0,920,-17,0,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,841,-8,0,1127,16,1,0 +2013,5,1,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1655,-8,0,1902,-25,0,0 +2013,9,19,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1155,-2,0,1245,-9,0,0 +2013,9,17,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1410,23,1,1525,16,1,0 +2013,6,18,2,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,-4,0,959,-10,0,0 +2013,10,29,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1656,10,0,1810,-7,0,0 +2013,5,10,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1734,1,0,1841,4,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2109,9,0,2249,-17,0,0 +2013,10,11,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1734,-8,0,1820,-5,0,0 +2013,7,31,3,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,910,-4,0,1255,-10,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1748,-3,0,2159,-33,0,0 +2013,10,10,4,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1525,8,0,1630,12,0,0 +2013,5,18,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-1,0,1144,-6,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1050,-8,0,1143,0,0,0 +2013,6,18,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1402,43,1,1519,45,1,0 +2013,7,9,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1100,7,0,1210,2,0,0 +2013,8,9,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,1402,9,0,0 +2013,7,5,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-6,0,1535,-20,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1511,0,,1705,0,1,1 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,-6,0,2320,-3,0,0 +2013,4,26,5,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,0,0,2350,-6,0,0 +2013,10,4,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1650,6,0,1940,-6,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2009,4,0,2257,-1,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1315,17,1,1607,43,1,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1725,29,1,2240,10,0,0 +2013,7,29,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,0,0,1525,-16,0,0 +2013,10,16,3,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1158,-1,0,1340,-13,0,0 +2013,6,20,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1345,-6,0,1717,-16,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,810,-2,0,942,-15,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,0,0,1930,-10,0,0 +2013,5,22,3,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,-5,0,1815,13,0,0 +2013,6,12,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1950,0,,2101,0,1,1 +2013,8,21,3,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,1,0,643,-10,0,0 +2013,9,12,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-6,0,1003,-49,0,0 +2013,6,22,6,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,855,4,0,1015,-7,0,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1025,-2,0,1150,-5,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1410,2,0,1647,9,0,0 +2013,10,29,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1710,-2,0,2045,-21,0,0 +2013,4,10,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,71,1,604,66,1,0 +2013,6,26,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,2000,-9,0,2315,29,1,0 +2013,5,20,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,35,1,1255,47,1,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1536,-5,0,1717,-23,0,0 +2013,8,31,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,710,-8,0,731,62,1,0 +2013,8,19,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1656,-4,0,1831,-17,0,0 +2013,7,4,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-9,0,1219,-10,0,0 +2013,8,12,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1330,16,1,1445,14,0,0 +2013,10,23,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,6,0,841,17,1,0 +2013,4,28,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1240,18,1,1415,9,0,0 +2013,4,15,1,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,79,1,1620,71,1,0 +2013,9,5,4,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,810,1,0,1000,-24,0,0 +2013,5,8,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,-3,0,815,-14,0,0 +2013,10,27,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,5,0,1705,1,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,848,-10,0,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1010,6,0,1034,48,1,0 +2013,5,18,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1745,-1,0,1810,-6,0,0 +2013,9,17,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,2,0,935,9,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1252,-4,0,1405,-18,0,0 +2013,9,2,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1120,-2,0,1355,-5,0,0 +2013,5,1,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-8,0,1040,-25,0,0 +2013,5,15,3,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,0,0,1106,2,0,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,740,-1,0,1245,-5,0,0 +2013,9,27,5,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-5,0,1220,-12,0,0 +2013,10,19,6,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-1,0,1600,-25,0,0 +2013,8,8,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,2,0,1012,10,0,0 +2013,8,5,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-10,0,2329,-18,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,855,10,0,1158,55,1,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-2,0,917,10,0,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,31,1,1320,28,1,0 +2013,4,17,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,-5,0,2000,-27,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,-1,0,1305,-14,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1915,19,1,2205,4,0,0 +2013,9,4,3,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1113,0,0,1409,-10,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1810,1,0,2008,13,0,0 +2013,10,2,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-1,0,1625,-11,0,0 +2013,9,9,1,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,750,7,0,1025,-8,0,0 +2013,7,21,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-4,0,1450,-5,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-10,0,1648,-11,0,0 +2013,6,13,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,905,-5,0,1220,-18,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1130,3,0,1340,1,0,0 +2013,6,10,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,853,-3,0,1011,-18,0,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1201,-1,0,1441,3,0,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,2,0,1515,-3,0,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1016,1,0,1149,-14,0,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1045,-8,0,1349,-31,0,0 +2013,6,5,3,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,730,-7,0,900,-20,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1930,48,1,2214,22,1,0 +2013,9,7,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1159,9,0,1453,-31,0,0 +2013,5,16,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,-7,0,1612,-16,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,948,7,0,1104,-11,0,0 +2013,6,3,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,-4,0,1334,-11,0,0 +2013,5,20,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,4,0,1934,13,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,846,-3,0,1020,-19,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1545,135,1,2015,123,1,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1141,-1,0,1307,0,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1724,-1,0,2338,3,0,0 +2013,4,21,7,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,-2,0,1909,37,1,0 +2013,10,5,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1500,-10,0,1600,-6,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,3,0,2255,5,0,0 +2013,7,9,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,27,1,1955,19,1,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,-3,0,1056,-18,0,0 +2013,9,16,1,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2214,-2,0,601,-17,0,0 +2013,4,18,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,810,-7,0,929,-20,0,0 +2013,9,29,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,-3,0,1320,-5,0,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,-3,0,1317,-9,0,0 +2013,5,6,1,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1029,39,1,1219,26,1,0 +2013,6,29,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,0,,1250,0,1,1 +2013,4,11,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,24,1,1759,19,1,0 +2013,5,25,6,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,823,-2,0,920,-8,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1430,-3,0,1600,-16,0,0 +2013,10,30,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-3,0,1414,-25,0,0 +2013,5,24,5,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1559,99,1,1758,90,1,0 +2013,6,20,4,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,2355,0,0,724,-1,0,0 +2013,8,1,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1945,5,0,2318,0,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1800,94,1,2325,126,1,0 +2013,7,7,7,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1459,-3,0,1650,-3,0,0 +2013,4,25,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1629,206,1,1814,234,1,0 +2013,9,5,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-1,0,2042,-17,0,0 +2013,9,12,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,39,1,1515,34,1,0 +2013,4,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1750,5,0,1855,-3,0,0 +2013,8,11,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2100,28,1,2336,28,1,0 +2013,7,26,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-12,0,912,-16,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,9,0,1415,10,0,0 +2013,8,31,6,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1025,17,1,1425,10,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1729,24,1,1932,36,1,0 +2013,8,16,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,945,-2,0,1045,-13,0,0 +2013,8,29,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,19,1,1900,13,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,54,1,1915,47,1,0 +2013,5,22,3,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1934,0,,2105,0,1,1 +2013,9,8,7,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-1,0,1301,10,0,0 +2013,8,11,7,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,1,0,2249,-4,0,0 +2013,10,16,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,-6,0,1048,-26,0,0 +2013,10,2,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,830,2,0,935,-6,0,0 +2013,7,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,-4,0,1015,-5,0,0 +2013,4,3,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,615,0,0,810,-18,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,-1,0,1050,-17,0,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1035,3,0,1200,-9,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1039,7,0,1539,-20,0,0 +2013,10,8,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,851,2,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2155,8,0,2325,13,0,0 +2013,7,14,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,25,1,1231,-5,0,0 +2013,5,2,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,4,0,859,4,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,628,16,1,805,7,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1635,65,1,2019,60,1,0 +2013,8,1,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1830,-4,0,1921,-8,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,915,-4,0,1130,-18,0,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1544,5,0,1753,-11,0,0 +2013,5,11,6,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1940,105,1,2246,82,1,0 +2013,10,12,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1015,6,0,1259,20,1,0 +2013,4,9,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2155,-8,0,2310,-13,0,0 +2013,8,23,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1735,5,0,1915,5,0,0 +2013,6,7,5,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,8,0,1213,5,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1535,11,0,1730,6,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1746,26,1,1940,0,0,0 +2013,8,19,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1725,2,0,1857,-2,0,0 +2013,5,3,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,7,0,955,6,0,0 +2013,9,27,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,-5,0,1555,-14,0,0 +2013,8,8,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,849,-5,0,926,-6,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,38,1,1459,44,1,0 +2013,8,1,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,720,-7,0,1127,-20,0,0 +2013,4,14,7,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1140,-2,0,1301,-15,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1521,10,0,1701,-8,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1820,3,0,2040,-19,0,0 +2013,6,17,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1832,51,1,2104,66,1,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1402,-5,0,1700,-5,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1645,18,1,15,-11,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2129,10,0,2254,-9,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1820,-4,0,2110,24,1,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1750,12,0,2045,4,0,0 +2013,9,19,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,930,53,1,1110,42,1,0 +2013,8,17,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2155,-2,0,2209,-5,0,0 +2013,5,4,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1255,-2,0,1350,8,0,0 +2013,5,5,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1748,-7,0,2105,-25,0,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2251,0,0,711,-25,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-3,0,2346,-17,0,0 +2013,10,7,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1744,0,0,2116,-5,0,0 +2013,5,2,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,12,0,1645,-4,0,0 +2013,8,21,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1810,172,1,1910,164,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1011,15,1,1220,1,0,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1530,-6,0,1911,-25,0,0 +2013,7,14,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,620,-3,0,830,7,0,0 +2013,5,26,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1225,0,0,1350,-6,0,0 +2013,7,22,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,3,0,1356,-1,0,0 +2013,6,12,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,600,-2,0,856,13,0,0 +2013,5,8,3,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,645,-5,0,825,-25,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2210,89,1,2321,70,1,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,13,0,1505,9,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-4,0,1948,-10,0,0 +2013,10,12,6,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1314,-13,0,2043,-32,0,0 +2013,6,20,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-5,0,1115,10,0,0 +2013,8,29,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,715,0,0,810,3,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-3,0,915,-15,0,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,825,2,0,1315,-3,0,0 +2013,6,19,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1815,-5,0,2055,-15,0,0 +2013,9,27,5,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,804,8,0,857,3,0,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,-2,0,2350,6,0,0 +2013,7,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1727,0,0,2010,4,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,805,20,1,1500,11,0,0 +2013,4,8,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-4,0,1425,6,0,0 +2013,7,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,-1,0,1100,-5,0,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1120,-3,0,1245,-5,0,0 +2013,10,24,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1724,19,1,1940,27,1,0 +2013,10,24,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-3,0,1257,-8,0,0 +2013,8,5,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2105,3,0,2230,23,1,0 +2013,8,13,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1742,25,1,2002,30,1,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,18,1,1030,-3,0,0 +2013,9,25,3,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-6,0,1021,-19,0,0 +2013,7,17,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,600,62,1,753,65,1,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2005,12,0,2255,15,1,0 +2013,7,21,7,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,166,1,2133,171,1,0 +2013,4,30,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,7,0,632,-6,0,0 +2013,4,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1300,68,1,1431,60,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,-1,0,2317,1,0,0 +2013,9,21,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1835,22,1,1925,34,1,0 +2013,4,22,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1425,95,1,1708,98,1,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1020,7,0,1355,-3,0,0 +2013,9,8,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1233,-3,0,1602,1,0,0 +2013,9,5,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1558,7,0,1738,-4,0,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,193,1,1248,217,1,0 +2013,5,11,6,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1240,-5,0,1458,-9,0,0 +2013,9,5,4,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-19,0,1220,-24,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,-4,0,1025,-7,0,0 +2013,7,1,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1706,44,1,1828,42,1,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1135,-9,0,1725,-7,0,0 +2013,9,19,4,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,0,,1031,0,1,1 +2013,7,28,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,607,-5,0,902,-12,0,0 +2013,10,3,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1645,-9,0,1736,-1,0,0 +2013,9,7,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,12,0,1155,8,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1255,0,0,1355,-2,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,32,1,1333,22,1,0 +2013,7,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1425,10,0,1725,-4,0,0 +2013,7,17,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,1,0,1505,-6,0,0 +2013,9,8,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-5,0,1648,-26,0,0 +2013,8,20,2,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,22,1,1430,1,0,0 +2013,6,15,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-7,0,2029,-19,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,-2,0,2202,-6,0,0 +2013,5,12,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-6,0,1205,8,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1405,2,0,1615,-12,0,0 +2013,10,24,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1100,-5,0,1205,-3,0,0 +2013,9,22,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1717,1,0,2010,-2,0,0 +2013,4,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,925,0,0,1040,-2,0,0 +2013,9,16,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,725,-8,0,0 +2013,8,10,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1600,-1,0,1705,-10,0,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1005,-8,0,1329,-5,0,0 +2013,6,5,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,-3,0,1205,-32,0,0 +2013,7,24,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,825,-3,0,1105,-6,0,0 +2013,8,27,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-7,0,1454,-5,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-1,0,922,-3,0,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2019,15,1,2331,-11,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,19,1,1515,10,0,0 +2013,4,12,5,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-7,0,553,-5,0,0 +2013,5,1,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-1,0,920,-16,0,0 +2013,5,7,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-7,0,1055,-26,0,0 +2013,7,12,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1340,151,1,1425,142,1,0 +2013,6,25,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,114,1,2243,94,1,0 +2013,8,22,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1345,7,0,1510,7,0,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-5,0,1351,-26,0,0 +2013,8,25,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,829,3,0,1030,0,0,0 +2013,5,3,5,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1035,0,0,1221,-11,0,0 +2013,8,15,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,0,0,1348,-11,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1249,2,0,1512,-18,0,0 +2013,7,4,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,220,-7,0,634,0,0,0 +2013,7,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2155,37,1,2330,32,1,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,855,-3,0,1005,-26,0,0 +2013,8,3,6,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,700,-3,0,935,-10,0,0 +2013,5,24,5,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1625,28,1,1845,24,1,0 +2013,8,27,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1720,11,0,2100,27,1,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,0,,1235,0,1,1 +2013,5,6,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,0,0,2210,-5,0,0 +2013,8,21,3,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1935,-4,0,2302,-18,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1351,99,1,1701,94,1,0 +2013,6,14,5,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1338,10,0,1518,15,1,0 +2013,4,20,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-3,0,1534,2,0,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-2,0,1735,-21,0,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-2,0,1010,-6,0,0 +2013,7,23,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,0,,1735,0,1,1 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1046,7,0,1230,32,1,0 +2013,10,21,1,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,806,-4,0,937,-13,0,0 +2013,4,18,4,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,820,29,1,930,23,1,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1855,13,0,2225,2,0,0 +2013,9,4,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2120,4,0,2351,14,0,0 +2013,8,10,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,711,179,1,830,179,1,0 +2013,7,6,6,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-4,0,801,-23,0,0 +2013,6,2,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-6,0,837,-18,0,0 +2013,8,1,4,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,642,-2,0,940,-16,0,0 +2013,4,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,845,-3,0,940,-16,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-9,0,1037,-11,0,0 +2013,5,26,7,EV,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,621,-11,0,711,-21,0,0 +2013,8,10,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1228,1,0,1534,19,1,0 +2013,7,1,1,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,825,0,0,1335,4,0,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,644,-6,0,855,-2,0,0 +2013,8,10,6,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,600,-1,0,900,-3,0,0 +2013,4,4,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-3,0,932,-11,0,0 +2013,4,22,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1459,12,0,1905,11,0,0 +2013,10,11,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1922,-8,0,2109,-18,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1121,-3,0,1253,-7,0,0 +2013,6,4,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,846,-5,0,924,-24,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1035,18,1,1218,13,0,0 +2013,7,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,705,-7,0,936,-8,0,0 +2013,7,11,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,48,1,1645,40,1,0 +2013,10,9,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1545,26,1,1605,15,1,0 +2013,9,9,1,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1825,15,1,1930,43,1,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,9,0,2015,-11,0,0 +2013,5,20,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,2,0,1720,18,1,0 +2013,6,7,5,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1129,52,1,1306,45,1,0 +2013,9,2,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1215,-2,0,1505,9,0,0 +2013,5,23,4,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2006,9,0,2240,-1,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,62,1,2305,65,1,0 +2013,9,7,6,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1010,11,0,1344,15,1,0 +2013,4,5,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,1,0,1440,-5,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,3,0,1623,-4,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,756,-6,0,1008,-21,0,0 +2013,10,3,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,14,0,2050,-4,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2010,24,1,2340,27,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1810,-3,0,2030,-13,0,0 +2013,5,5,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,655,-2,0,935,-13,0,0 +2013,10,16,3,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1010,-6,0,1158,-10,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-6,0,1505,-3,0,0 +2013,9,12,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2012,53,1,2140,57,1,0 +2013,6,30,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,10,0,2130,9,0,0 +2013,7,31,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,9,0,1430,2,0,0 +2013,5,8,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1415,217,1,1535,246,1,0 +2013,8,30,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1726,138,1,1913,132,1,0 +2013,4,18,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,731,-2,0,913,-11,0,0 +2013,10,28,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,538,-10,0,700,-21,0,0 +2013,7,9,2,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,-1,0,1400,4,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,2,0,1048,-4,0,0 +2013,6,13,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,102,1,2137,105,1,0 +2013,4,4,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,0,0,1452,-7,0,0 +2013,9,1,7,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1850,-1,0,2135,-7,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,2,0,1855,-37,0,0 +2013,5,18,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,829,3,0,1024,-23,0,0 +2013,4,23,2,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2002,24,1,2134,23,1,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2159,-5,0,2337,-19,0,0 +2013,9,16,1,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-9,0,1050,-29,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1000,6,0,1250,-4,0,0 +2013,7,7,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,10,0,1555,3,0,0 +2013,9,12,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,6,0,1455,0,0,0 +2013,5,25,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1031,-4,0,1350,-22,0,0 +2013,10,14,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1550,70,1,1735,66,1,0 +2013,4,8,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-9,0,825,-19,0,0 +2013,9,5,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,900,25,1,1130,10,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,14,0,2305,12,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1430,21,1,1558,31,1,0 +2013,9,29,7,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,705,-2,0,939,-2,0,0 +2013,8,17,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1146,-2,0,1442,-14,0,0 +2013,4,3,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1930,25,1,2251,18,1,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1635,1,0,1815,-6,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1530,0,0,1847,-8,0,0 +2013,5,21,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1920,0,0,2040,-8,0,0 +2013,5,15,3,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,0,0,758,-10,0,0 +2013,4,28,7,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,19,1,2013,7,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-3,0,2130,-10,0,0 +2013,9,17,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1242,15,1,1546,18,1,0 +2013,4,1,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-10,0,2135,-15,0,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,815,-3,0,930,-7,0,0 +2013,5,7,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,-10,0,1715,0,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1250,5,0,1355,1,0,0 +2013,9,13,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,800,0,0,1110,-18,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1045,3,0,1228,-8,0,0 +2013,8,15,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1317,-4,0,1448,-15,0,0 +2013,6,13,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,530,-3,0,717,-6,0,0 +2013,6,3,1,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1826,81,1,2002,57,1,0 +2013,9,13,5,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1437,-12,0,1601,-18,0,0 +2013,9,13,5,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-6,0,1356,-19,0,0 +2013,4,2,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1416,-6,0,1523,-18,0,0 +2013,6,8,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,555,-4,0,652,2,0,0 +2013,9,24,2,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,-4,0,810,-15,0,0 +2013,7,23,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-2,0,1509,-11,0,0 +2013,5,12,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1120,-3,0,1207,1,0,0 +2013,7,8,1,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,615,9,0,755,2,0,0 +2013,7,19,5,9E,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1116,-8,0,1305,-17,0,0 +2013,7,13,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-6,0,1614,-8,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,0,0,1150,-9,0,0 +2013,5,5,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-6,0,1054,2,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,800,-1,0,905,-9,0,0 +2013,10,9,3,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-8,0,930,-19,0,0 +2013,10,28,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1335,13,0,1700,31,1,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,905,-3,0,1337,-14,0,0 +2013,6,30,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,36,1,2205,32,1,0 +2013,8,18,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-7,0,904,-13,0,0 +2013,6,1,6,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1710,-5,0,2222,-14,0,0 +2013,7,29,1,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1702,-1,0,1925,-2,0,0 +2013,10,24,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1248,3,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,-3,0,1043,-5,0,0 +2013,5,14,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-5,0,753,-5,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1445,-2,0,1624,-1,0,0 +2013,8,21,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,951,-5,0,1230,-22,0,0 +2013,7,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,842,-6,0,932,-12,0,0 +2013,6,13,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1328,-7,0,1530,-9,0,0 +2013,5,14,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,700,-4,0,828,0,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,805,-7,0,924,5,0,0 +2013,5,28,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,-6,0,935,-21,0,0 +2013,9,11,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-5,0,1320,-36,0,0 +2013,5,21,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1830,43,1,2105,46,1,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1050,2,0,1610,19,1,0 +2013,7,19,5,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,36,1,1415,22,1,0 +2013,5,12,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1651,-2,0,1940,-30,0,0 +2013,10,1,2,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1556,1,0,1643,-11,0,0 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,815,-4,0,1020,-10,0,0 +2013,6,24,1,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,53,1,1639,38,1,0 +2013,10,17,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,7,0,1655,-13,0,0 +2013,8,14,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,550,3,0,700,-5,0,0 +2013,8,12,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1515,-8,0,1815,-3,0,0 +2013,7,8,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,73,1,2058,62,1,0 +2013,6,9,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,3,0,1534,-1,0,0 +2013,9,14,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1648,-9,0,1831,-13,0,0 +2013,8,16,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-5,0,900,-15,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,0,0,1700,-7,0,0 +2013,8,21,3,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1526,137,1,1844,127,1,0 +2013,6,22,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1515,-7,0,1630,5,0,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2105,12,0,2225,16,1,0 +2013,8,18,7,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,949,-3,0,1130,8,0,0 +2013,6,3,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-3,0,1710,-16,0,0 +2013,9,16,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2320,-4,0,607,-14,0,0 +2013,6,14,5,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,740,-2,0,835,-13,0,0 +2013,7,2,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,29,1,1828,22,1,0 +2013,7,14,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-10,0,2257,-10,0,0 +2013,7,8,1,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-6,0,1541,1,0,0 +2013,8,15,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-11,0,920,-22,0,0 +2013,6,28,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2220,0,0,635,-12,0,0 +2013,4,7,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1658,-5,0,1819,-12,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-5,0,1615,-13,0,0 +2013,8,10,6,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1303,9,0,1431,-1,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1840,6,0,2356,24,1,0 +2013,9,30,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,714,-1,0,0 +2013,5,10,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1235,1,0,1400,3,0,0 +2013,9,15,7,DL,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-2,0,905,-20,0,0 +2013,10,21,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,550,-5,0,1245,-11,0,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1449,13,0,2029,31,1,0 +2013,8,21,3,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,-3,0,1856,1,0,0 +2013,8,4,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,640,-1,0,750,19,1,0 +2013,10,6,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,859,-7,0,1038,-26,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,-5,0,2115,18,1,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,600,0,0,710,-12,0,0 +2013,8,30,5,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1810,-6,0,2021,-9,0,0 +2013,8,10,6,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1123,-1,0,1500,6,0,0 +2013,6,21,5,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,3,0,715,-4,0,0 +2013,10,17,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1731,-7,0,1820,-3,0,0 +2013,9,24,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-3,0,855,-5,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,0,,1325,0,1,1 +2013,7,23,2,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,-2,0,950,78,1,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,2,0,1150,5,0,0 +2013,4,10,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1545,3,0,1700,-1,0,0 +2013,9,12,4,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,734,-5,0,915,2,0,0 +2013,7,26,5,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,-3,0,2354,-1,0,0 +2013,9,29,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-7,0,1322,2,0,0 +2013,6,8,6,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-15,0,1535,0,0,0 +2013,4,21,7,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,4,0,2012,0,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,550,44,1,910,40,1,0 +2013,8,20,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-3,0,613,-1,0,0 +2013,6,10,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,605,-3,0,710,0,0,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1916,-4,0,2241,-13,0,0 +2013,4,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1100,-4,0,1225,-9,0,0 +2013,6,5,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1450,-3,0,1738,-4,0,0 +2013,9,19,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1253,-4,0,0 +2013,4,15,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,735,-5,0,820,-4,0,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,855,-8,0,1152,-33,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1205,19,1,1310,15,1,0 +2013,9,3,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,1,0,1130,-8,0,0 +2013,4,13,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1320,-4,0,2059,-3,0,0 +2013,8,29,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,1424,18,1,2000,13,0,0 +2013,4,6,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-3,0,1226,1,0,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,5,0,1120,18,1,0 +2013,5,22,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-4,0,1030,-9,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,908,67,1,1304,47,1,0 +2013,10,30,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,-1,0,800,-9,0,0 +2013,10,27,7,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2211,-5,0,26,-15,0,0 +2013,5,15,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,24,1,1559,19,1,0 +2013,8,4,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2010,63,1,2146,56,1,0 +2013,7,4,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1535,2,0,2105,13,0,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,837,-3,0,1035,17,1,0 +2013,8,3,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-3,0,1225,-20,0,0 +2013,8,22,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,645,-2,0,740,-14,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1945,12,0,110,-4,0,0 +2013,7,1,1,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1000,-6,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1035,7,0,1633,7,0,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1425,-3,0,2255,-4,0,0 +2013,7,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1515,20,1,1630,22,1,0 +2013,5,13,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-11,0,940,5,0,0 +2013,10,29,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1405,-1,0,1558,-19,0,0 +2013,8,13,2,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1825,81,1,2147,66,1,0 +2013,8,21,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,630,-4,0,740,-23,0,0 +2013,5,7,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1056,-10,0,1202,-4,0,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1800,19,1,1925,13,0,0 +2013,10,30,3,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-2,0,1755,9,0,0 +2013,5,1,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-7,0,1245,-8,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,4,0,2327,-24,0,0 +2013,10,30,3,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1331,111,1,1544,132,1,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1410,0,0,1500,5,0,0 +2013,8,10,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1215,-4,0,1500,-7,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2125,2,0,2246,-14,0,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,705,-3,0,810,-5,0,0 +2013,4,5,5,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-2,0,910,10,0,0 +2013,6,3,1,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-11,0,717,0,0,0 +2013,6,14,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2235,65,1,700,48,1,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,818,-5,0,939,-3,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1530,-3,0,1635,-11,0,0 +2013,9,19,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-10,0,915,-27,0,0 +2013,6,27,4,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2202,0,,2318,0,1,1 +2013,5,24,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1150,207,1,1515,205,1,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2055,-7,0,2308,-20,0,0 +2013,5,30,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,0,0,1900,8,0,0 +2013,4,8,1,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,-5,0,2028,-3,0,0 +2013,9,30,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1215,-3,0,1400,-11,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,835,-1,0,1005,-9,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1839,-3,0,1957,12,0,0 +2013,6,27,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-6,0,1639,-16,0,0 +2013,5,30,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,-5,0,2020,11,0,0 +2013,7,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,821,-5,0,917,5,0,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1750,-2,0,1850,-13,0,0 +2013,9,30,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1940,9,0,1955,26,1,0 +2013,5,2,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,635,-7,0,920,-4,0,0 +2013,4,12,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,27,1,1940,25,1,0 +2013,9,9,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1510,0,0,1630,10,0,0 +2013,7,27,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,2,0,1325,-4,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-3,0,1230,-2,0,0 +2013,8,4,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,840,-1,0,1000,2,0,0 +2013,10,28,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-7,0,813,-6,0,0 +2013,4,11,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,-1,0,2330,4,0,0 +2013,9,12,4,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,210,1,2052,198,1,0 +2013,7,15,1,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1720,5,0,1905,-21,0,0 +2013,6,6,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,14,0,2049,20,1,0 +2013,10,16,3,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-10,0,1552,1,0,0 +2013,7,28,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1040,5,0,1201,59,1,0 +2013,6,19,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-4,0,1409,-10,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,729,-4,0,1007,-13,0,0 +2013,10,20,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,15,1,2020,11,0,0 +2013,5,29,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1940,3,0,2113,-5,0,0 +2013,9,20,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-3,0,2333,-24,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,900,-1,0,1053,-14,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,820,-5,0,958,-16,0,0 +2013,6,25,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,720,-12,0,0 +2013,4,2,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1156,-3,0,1338,-28,0,0 +2013,6,4,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-3,0,910,-11,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,837,-4,0,1037,-8,0,0 +2013,4,2,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,-3,0,1100,6,0,0 +2013,7,22,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,53,1,1750,36,1,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2050,-2,0,2210,5,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1535,35,1,1737,23,1,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1056,0,0,1648,0,0,0 +2013,9,14,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,1609,-12,0,0 +2013,4,26,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,0,0,1510,-17,0,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1239,-5,0,1534,-7,0,0 +2013,8,2,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1440,-4,0,1629,0,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,0,0,2005,-9,0,0 +2013,10,8,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1046,3,0,1109,-5,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2015,-1,0,2120,-11,0,0 +2013,9,8,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1354,-1,0,1948,1,0,0 +2013,10,21,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1730,-5,0,1907,20,1,0 +2013,5,29,3,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-4,0,1320,-2,0,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2045,-1,0,2155,-4,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1430,-4,0,1750,-12,0,0 +2013,8,13,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1417,27,1,1520,14,0,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,4,0,1434,-6,0,0 +2013,9,2,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-4,0,1330,3,0,0 +2013,6,14,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1723,65,1,2000,41,1,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-5,0,2354,-3,0,0 +2013,6,15,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,850,-1,0,1018,-4,0,0 +2013,9,4,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,1,0,1844,-7,0,0 +2013,5,30,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,859,476,1,1009,490,1,0 +2013,6,13,4,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1155,31,1,1340,36,1,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1815,39,1,2030,46,1,0 +2013,5,29,3,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,607,1,1125,605,1,0 +2013,4,17,3,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-7,0,2359,-13,0,0 +2013,6,2,7,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,737,3,0,1013,-7,0,0 +2013,7,29,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1602,-8,0,1700,14,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,1,0,2055,-1,0,0 +2013,10,9,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1709,-5,0,1759,0,0,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,69,1,1422,65,1,0 +2013,10,7,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,0,0,559,-23,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,940,16,1,1110,14,0,0 +2013,5,22,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1825,3,0,2028,-13,0,0 +2013,9,20,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,5,0,1353,-24,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,555,-1,0,715,-14,0,0 +2013,7,27,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,815,-14,0,0 +2013,10,25,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1334,-7,0,1935,-20,0,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-1,0,1830,-1,0,0 +2013,8,20,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,-1,0,1712,-3,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1733,144,1,1845,140,1,0 +2013,9,12,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,0,,1615,0,1,1 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2135,3,0,2245,-8,0,0 +2013,6,3,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-7,0,1450,-14,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1430,18,1,1515,13,0,0 +2013,7,15,1,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-8,0,1212,-18,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1310,-3,0,1450,-7,0,0 +2013,7,22,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1010,-15,0,0 +2013,4,12,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1846,78,1,2025,58,1,0 +2013,4,29,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1545,-16,0,1952,-26,0,0 +2013,7,2,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,619,-2,0,734,-6,0,0 +2013,8,23,5,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,742,0,,1056,0,1,1 +2013,6,7,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,635,-9,0,820,14,0,0 +2013,6,25,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-3,0,825,-19,0,0 +2013,8,26,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1405,-3,0,1525,-2,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1450,0,0,1810,-11,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,0,0,1025,-11,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1717,60,1,2036,65,1,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1405,0,0,1615,8,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,730,-6,0,840,-12,0,0 +2013,4,23,2,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1755,-4,0,2035,-17,0,0 +2013,8,18,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,750,0,0,830,0,0,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2110,19,1,2220,16,1,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-7,0,27,-2,0,0 +2013,10,29,2,YV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,807,-4,0,953,-6,0,0 +2013,7,1,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-4,0,1125,-18,0,0 +2013,9,2,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,7,0,1910,-12,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1300,7,0,1635,9,0,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1138,-1,0,1350,-8,0,0 +2013,9,23,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-1,0,1641,-11,0,0 +2013,6,1,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1507,-1,0,1638,13,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,830,-4,0,1146,-9,0,0 +2013,8,3,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-4,0,1700,-28,0,0 +2013,6,25,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2120,1,0,2240,-3,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1735,17,1,2310,3,0,0 +2013,9,30,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1305,0,,1355,0,1,1 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2235,-3,0,716,-8,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,940,9,0,1635,5,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,700,-2,0,925,15,1,0 +2013,10,24,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-9,0,923,-9,0,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,-4,0,1350,-18,0,0 +2013,4,17,3,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,2010,27,1,2125,29,1,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2100,26,1,2150,18,1,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1732,2,0,2135,6,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,2,0,1319,-2,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,-4,0,1255,-8,0,0 +2013,8,25,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1730,42,1,1835,36,1,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,600,0,,1211,0,1,1 +2013,5,8,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1905,-7,0,2052,-15,0,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,620,-4,0,931,-11,0,0 +2013,8,22,4,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1110,0,0,1339,22,1,0 +2013,10,17,4,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1715,48,1,2141,39,1,0 +2013,8,25,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2012,0,,2100,0,1,1 +2013,6,21,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,3,0,1122,-5,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1537,-3,0,1641,-3,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,855,13,0,912,27,1,0 +2013,10,8,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,12,0,1436,3,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1550,61,1,1735,57,1,0 +2013,4,6,6,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1530,-2,0,1800,-13,0,0 +2013,4,20,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1415,70,1,1650,86,1,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1720,27,1,1840,34,1,0 +2013,5,6,1,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1412,26,1,1530,18,1,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,14,0,1954,14,0,0 +2013,9,8,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1640,43,1,1755,37,1,0 +2013,5,20,1,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1143,-1,0,1426,-5,0,0 +2013,5,22,3,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,0,0,839,-27,0,0 +2013,6,14,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1407,-1,0,1524,-2,0,0 +2013,6,14,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,1,0,1454,10,0,0 +2013,6,4,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1612,-5,0,1847,-9,0,0 +2013,4,3,3,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2140,20,1,547,31,1,0 +2013,10,26,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,5,0,1205,-5,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,747,-7,0,1055,-18,0,0 +2013,10,3,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1030,-1,0,1140,-3,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,730,-3,0,835,10,0,0 +2013,6,19,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,859,-4,0,1151,5,0,0 +2013,8,22,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1415,29,1,1625,19,1,0 +2013,7,17,3,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1910,7,0,2105,-6,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-2,0,1847,-36,0,0 +2013,6,7,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,630,-1,0,800,-12,0,0 +2013,9,14,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-9,0,1930,-15,0,0 +2013,4,6,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2150,-3,0,554,-14,0,0 +2013,7,7,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-7,0,1250,-24,0,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,-8,0,1458,-4,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1511,53,1,1806,67,1,0 +2013,5,18,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-1,0,1241,-16,0,0 +2013,7,24,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1620,0,,1912,0,1,1 +2013,8,22,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1110,10,0,1230,32,1,0 +2013,4,10,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,545,-6,0,707,-12,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,4,0,1600,-40,0,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1529,-1,0,1840,-12,0,0 +2013,5,19,7,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1430,8,0,1705,-4,0,0 +2013,10,7,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,20,1,1636,47,1,0 +2013,10,27,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-10,0,916,-2,0,0 +2013,8,18,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1907,1,0,2010,-7,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,0,0,1040,-1,0,0 +2013,7,25,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1730,-4,0,1940,-1,0,0 +2013,7,30,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1054,-14,0,1309,-12,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1915,-6,0,2048,-4,0,0 +2013,5,18,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1315,1,0,1335,-1,0,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1040,5,0,1645,16,1,0 +2013,8,25,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1916,39,1,2129,43,1,0 +2013,5,17,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,802,-6,0,0 +2013,7,17,3,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1541,75,1,1729,64,1,0 +2013,10,17,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1250,-4,0,1634,-2,0,0 +2013,4,10,3,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1805,5,0,1920,-24,0,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,900,5,0,1201,14,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,820,-1,0,1015,-3,0,0 +2013,6,14,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-7,0,905,-23,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,85,1,1815,87,1,0 +2013,5,25,6,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1515,0,0,1600,-1,0,0 +2013,10,14,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,919,11,0,1015,19,1,0 +2013,4,6,6,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1545,-3,0,1745,-8,0,0 +2013,9,3,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-3,0,1340,-16,0,0 +2013,10,11,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,43,1,1915,66,1,0 +2013,4,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,2016,-3,0,2341,-12,0,0 +2013,10,20,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-1,0,1945,-10,0,0 +2013,10,21,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,715,25,1,825,22,1,0 +2013,9,6,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-2,0,1908,-6,0,0 +2013,4,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,1,0,1211,-9,0,0 +2013,10,30,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,89,1,1015,95,1,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1930,-2,0,2105,-5,0,0 +2013,6,7,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1835,60,1,2140,67,1,0 +2013,4,28,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,-9,0,1559,-12,0,0 +2013,6,26,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-6,0,1014,-19,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1815,17,1,2046,-2,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1430,14,0,2300,25,1,0 +2013,5,6,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,900,-2,0,1219,15,1,0 +2013,8,26,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-3,0,2035,-2,0,0 +2013,5,2,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,922,18,1,0 +2013,4,12,5,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,3,0,2153,18,1,0 +2013,6,3,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,801,-19,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1345,21,1,1537,3,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1554,8,0,1759,-7,0,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,905,64,1,1606,48,1,0 +2013,5,7,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2143,17,1,2357,15,1,0 +2013,10,8,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,-11,0,2205,-21,0,0 +2013,10,12,6,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1640,200,1,1805,182,1,0 +2013,4,18,4,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-7,0,1108,13,0,0 +2013,6,2,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,39,1,1405,43,1,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-6,0,2351,-13,0,0 +2013,6,23,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2145,-1,0,2302,-15,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,705,1,0,1005,-32,0,0 +2013,7,18,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-4,0,1040,-9,0,0 +2013,9,7,6,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1320,6,0,1615,3,0,0 +2013,8,23,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,0,,2130,0,1,1 +2013,5,28,2,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-5,0,1253,6,0,0 +2013,5,17,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1244,40,1,1329,38,1,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,835,-5,0,1235,-34,0,0 +2013,7,26,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1556,-3,0,1848,-20,0,0 +2013,8,26,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,1030,-19,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,627,-5,0,800,45,1,0 +2013,10,16,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,915,-1,0,1157,-16,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,851,-5,0,1135,7,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,21,1,1904,7,0,0 +2013,5,18,6,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,800,1,0,1010,-26,0,0 +2013,5,12,7,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-3,0,1900,-3,0,0 +2013,5,18,6,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1030,1,0,1309,-6,0,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,3,0,2210,-9,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1935,-2,0,2118,-16,0,0 +2013,7,19,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,0,0,1633,12,0,0 +2013,5,16,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1129,-9,0,1235,-15,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,0,0,1127,0,0,0 +2013,7,17,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,5,0,929,2,0,0 +2013,8,4,7,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-5,0,1210,-20,0,0 +2013,9,5,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1915,45,1,2240,33,1,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,950,2,0,1205,8,0,0 +2013,10,1,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1715,-3,0,2005,-7,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,820,2,0,1100,0,0,0 +2013,7,24,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,0,0,815,-6,0,0 +2013,7,1,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1936,82,1,2051,107,1,0 +2013,7,8,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,78,1,2115,76,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,0,0,1520,1,0,0 +2013,10,1,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1820,-6,0,1930,-7,0,0 +2013,5,15,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-3,0,740,-28,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-3,0,1016,-7,0,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-3,0,930,-9,0,0 +2013,5,23,4,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2245,7,0,704,-5,0,0 +2013,4,13,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,1,0,1756,-17,0,0 +2013,7,13,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,801,-7,0,1030,-5,0,0 +2013,6,24,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1240,49,1,1537,56,1,0 +2013,8,26,1,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,835,-3,0,1044,-17,0,0 +2013,7,20,6,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1756,20,1,2038,6,0,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1820,-1,0,1930,4,0,0 +2013,10,23,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1740,8,0,1855,-17,0,0 +2013,8,21,3,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1339,-7,0,1523,-3,0,0 +2013,8,1,4,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,50,1,1920,56,1,0 +2013,9,27,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1620,1,0,1828,-23,0,0 +2013,5,23,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,956,13,0,1637,5,0,0 +2013,5,20,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,722,-2,0,853,-4,0,0 +2013,10,21,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-4,0,2145,14,0,0 +2013,5,28,2,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-7,0,1620,-23,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1052,15,1,1229,4,0,0 +2013,9,6,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1126,-6,0,1420,-12,0,0 +2013,5,19,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-2,0,1225,-14,0,0 +2013,9,13,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,2340,-2,0,0 +2013,8,23,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-10,0,854,-7,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2045,-3,0,2057,-19,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,943,-7,0,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1515,5,0,1745,-25,0,0 +2013,4,26,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-1,0,925,-10,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2020,8,0,2215,-6,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1624,21,1,1907,23,1,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,1,0,1109,-5,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1955,68,1,2125,48,1,0 +2013,4,6,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-5,0,750,1,0,0 +2013,7,13,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1550,-2,0,1655,-3,0,0 +2013,9,5,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,700,8,0,800,5,0,0 +2013,7,24,3,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1300,9,0,1425,5,0,0 +2013,5,1,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1640,21,1,1820,0,0,0 +2013,6,4,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,945,0,0,1120,12,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,49,1,2240,53,1,0 +2013,4,18,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1730,38,1,1910,27,1,0 +2013,5,23,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1412,11,0,1539,-4,0,0 +2013,4,20,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,-4,0,2110,15,1,0 +2013,10,20,7,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-10,0,1038,-21,0,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1402,66,1,1605,61,1,0 +2013,9,18,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,0,0,720,-7,0,0 +2013,7,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,630,-4,0,840,2,0,0 +2013,5,22,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1231,6,0,1524,18,1,0 +2013,5,15,3,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1025,9,0,1210,4,0,0 +2013,6,19,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,745,-3,0,845,-2,0,0 +2013,5,31,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1115,99,1,1341,69,1,0 +2013,8,15,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2210,-6,0,2328,-18,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2109,2,0,2339,-19,0,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1105,29,1,1335,27,1,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1025,-20,0,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,29,1,1606,5,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1255,0,0,1424,-11,0,0 +2013,10,25,5,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,1005,6,0,0 +2013,10,2,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,80,1,2115,73,1,0 +2013,8,19,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1205,-8,0,1359,-14,0,0 +2013,10,27,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,32,1,2129,20,1,0 +2013,8,10,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1750,3,0,2101,-13,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,-5,0,1608,-8,0,0 +2013,10,26,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1131,-3,0,1249,1,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,920,-5,0,1117,-6,0,0 +2013,7,4,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1040,11,0,1210,-2,0,0 +2013,8,24,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1750,1,0,2125,1,0,0 +2013,8,28,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,855,5,0,1010,-2,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2116,6,0,2246,1,0,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,-3,0,2334,-16,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,-1,0,917,-4,0,0 +2013,10,13,7,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,940,-7,0,1204,-19,0,0 +2013,8,10,6,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-9,0,1625,-19,0,0 +2013,8,1,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-2,0,1425,-11,0,0 +2013,9,24,2,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1436,6,0,1623,7,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,15,1,1525,4,0,0 +2013,5,15,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-8,0,850,-9,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,835,27,1,1141,26,1,0 +2013,8,8,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1242,-1,0,1342,2,0,0 +2013,7,19,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,653,48,1,754,34,1,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,22,1,2105,21,1,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1411,-1,0,1618,-26,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,-2,0,1100,-3,0,0 +2013,8,2,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1240,3,0,1537,-6,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,5,0,1831,5,0,0 +2013,4,2,2,UA,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1858,-8,0,2047,-11,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1835,10,0,5,8,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,12,0,1055,23,1,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,-1,0,1708,-2,0,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,9,0,1800,2,0,0 +2013,7,20,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1335,0,0,1455,5,0,0 +2013,6,15,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1858,0,0,2000,11,0,0 +2013,8,28,3,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,630,-3,0,940,2,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,-5,0,1154,-21,0,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,83,1,2125,78,1,0 +2013,8,22,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2155,12,0,2315,19,1,0 +2013,5,24,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1618,18,1,1913,10,0,0 +2013,5,10,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,620,0,0,1445,3,0,0 +2013,6,13,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-3,0,905,-9,0,0 +2013,5,8,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,66,1,1910,50,1,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,755,0,0,942,-5,0,0 +2013,4,15,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,9,0,2243,1,0,0 +2013,5,12,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2045,-15,0,2159,-30,0,0 +2013,9,29,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-4,0,1340,-19,0,0 +2013,5,14,2,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-2,0,1855,-23,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1630,3,0,1930,-18,0,0 +2013,8,23,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,4,0,1345,-1,0,0 +2013,4,22,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1552,8,0,2158,-14,0,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-5,0,1110,-18,0,0 +2013,5,4,6,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,830,-5,0,950,-24,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-2,0,1740,-5,0,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,940,-8,0,1026,-15,0,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,-2,0,1559,0,0,0 +2013,8,3,6,DL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1110,-7,0,1328,4,0,0 +2013,5,8,3,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,800,-8,0,1105,-7,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1605,0,0,1830,-9,0,0 +2013,8,19,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,115,-5,0,545,-10,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,900,-5,0,1345,-9,0,0 +2013,9,29,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1250,-10,0,1541,-23,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,845,-1,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,0,0,1620,-5,0,0 +2013,4,27,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,-1,0,1819,-12,0,0 +2013,9,11,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2125,0,,2215,0,1,1 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,2,0,1638,6,0,0 +2013,8,15,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,19,1,1147,-2,0,0 +2013,10,3,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,554,-8,0,730,-22,0,0 +2013,10,30,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2000,-7,0,2029,-4,0,0 +2013,7,6,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1010,54,1,1150,42,1,0 +2013,10,22,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1650,-6,0,1715,-17,0,0 +2013,4,28,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1645,0,0,1925,-3,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1845,0,0,2215,-17,0,0 +2013,6,3,1,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,-1,0,1936,-2,0,0 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1345,0,0,1545,8,0,0 +2013,5,13,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-5,0,1802,-13,0,0 +2013,6,14,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1745,6,0,1915,3,0,0 +2013,10,16,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-3,0,1220,-3,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,0,0,2100,13,0,0 +2013,5,20,1,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1835,72,1,2110,81,1,0 +2013,4,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-1,0,1235,-24,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,-2,0,950,-6,0,0 +2013,10,22,2,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2335,6,0,750,4,0,0 +2013,9,18,3,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1945,-11,0,2052,-16,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,719,-5,0,1058,-25,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2024,61,1,2330,59,1,0 +2013,9,12,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1800,139,1,1920,143,1,0 +2013,9,11,3,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-5,0,1525,-18,0,0 +2013,4,26,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,13,0,1933,25,1,0 +2013,5,17,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,920,386,1,1050,367,1,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2010,59,1,2141,64,1,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1550,-4,0,1907,-10,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1845,16,1,2010,9,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1429,1,0,1830,-12,0,0 +2013,4,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2143,-6,0,2243,-15,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,-1,0,1909,-14,0,0 +2013,10,14,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1918,0,0,2110,-9,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1735,6,0,1828,3,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1005,2,0,1227,-9,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1010,-3,0,1320,11,0,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,845,-4,0,1029,1,0,0 +2013,8,30,5,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-1,0,2110,-10,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1215,-6,0,1933,-25,0,0 +2013,5,15,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,9,0,2035,1,0,0 +2013,10,22,2,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1305,5,0,1520,-7,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1950,0,0,2105,-12,0,0 +2013,10,16,3,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1630,-9,0,1820,-18,0,0 +2013,6,20,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-7,0,1210,-30,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,955,1,0,1058,-9,0,0 +2013,4,6,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,844,-6,0,1035,-7,0,0 +2013,8,31,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-4,0,1758,-25,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,9,0,1643,15,1,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1520,18,1,1911,6,0,0 +2013,10,4,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1355,20,1,2000,25,1,0 +2013,4,16,2,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,5,0,2005,10,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,744,-6,0,1107,-23,0,0 +2013,7,30,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,1,0,1540,-11,0,0 +2013,9,2,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1950,73,1,2159,65,1,0 +2013,5,27,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-2,0,856,-10,0,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,2,0,2220,-1,0,0 +2013,5,27,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1940,-6,0,2157,-6,0,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1715,9,0,1815,-9,0,0 +2013,7,9,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,13,0,2135,16,1,0 +2013,10,14,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,-7,0,1314,-13,0,0 +2013,9,30,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,833,-10,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2155,46,1,2315,39,1,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,31,1,1830,25,1,0 +2013,6,15,6,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,46,1,1800,47,1,0 +2013,4,26,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-3,0,1604,-11,0,0 +2013,5,9,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2300,-1,0,617,-3,0,0 +2013,6,8,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1855,8,0,2210,4,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2015,33,1,2300,30,1,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2050,1,0,2344,-14,0,0 +2013,4,17,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1620,-6,0,1820,5,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1930,3,0,2100,2,0,0 +2013,4,27,6,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1242,0,0,1510,-2,0,0 +2013,6,14,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1540,-4,0,1635,-4,0,0 +2013,8,2,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,826,-11,0,0 +2013,9,4,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1701,-3,0,0 +2013,8,23,5,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,2207,0,,2330,0,1,1 +2013,7,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1700,61,1,2045,72,1,0 +2013,8,15,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,755,-2,0,857,-9,0,0 +2013,10,30,3,9E,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1515,5,0,1807,18,1,0 +2013,5,17,5,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1445,4,0,1920,-3,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,735,6,0,1300,-10,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1730,0,0,2000,-1,0,0 +2013,8,14,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,28,1,1348,30,1,0 +2013,9,27,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1444,-3,0,1544,-23,0,0 +2013,10,8,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,650,-7,0,830,-17,0,0 +2013,9,6,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,829,-5,0,938,-11,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1521,30,1,1807,18,1,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-5,0,1440,-16,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2035,-3,0,2240,11,0,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2201,-15,0,2301,-36,0,0 +2013,9,5,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,0,,1315,0,1,1 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1958,-1,0,2200,5,0,0 +2013,5,4,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-12,0,2049,-22,0,0 +2013,10,16,3,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1102,5,0,1925,-26,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1510,-6,0,1636,-19,0,0 +2013,10,7,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1711,13,0,2344,2,0,0 +2013,9,15,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,51,1,1010,26,1,0 +2013,9,16,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1715,16,1,1825,1,0,0 +2013,5,4,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,0,0,1535,21,1,0 +2013,5,1,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-5,0,1230,-16,0,0 +2013,6,11,2,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,-9,0,1228,-7,0,0 +2013,6,25,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,755,1,0,845,2,0,0 +2013,4,22,1,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1418,-5,0,1521,-20,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,-3,0,1620,-13,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1310,14,0,1610,8,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,745,2,0,850,2,0,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1445,2,0,1920,-2,0,0 +2013,6,28,5,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1959,131,1,2234,118,1,0 +2013,5,12,7,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,-6,0,1255,-9,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1825,25,1,1940,23,1,0 +2013,7,19,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-2,0,1428,7,0,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1750,15,1,1957,-3,0,0 +2013,9,3,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-8,0,2141,-31,0,0 +2013,9,11,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1705,0,,1835,0,1,1 +2013,5,20,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-3,0,1301,27,1,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,910,15,1,1045,-5,0,0 +2013,5,14,2,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1837,-7,0,2135,-16,0,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1435,-4,0,1600,-6,0,0 +2013,8,26,1,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,630,-2,0,1120,7,0,0 +2013,6,10,1,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1308,14,0,1601,7,0,0 +2013,8,1,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1501,17,1,1800,83,1,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1010,6,0,1605,-11,0,0 +2013,7,28,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-4,0,1323,-1,0,0 +2013,10,14,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1915,13,0,2007,6,0,0 +2013,10,23,3,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1430,42,1,2110,38,1,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,0,0,1615,13,0,0 +2013,8,23,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-5,0,1518,17,1,0 +2013,9,10,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1031,10,0,1226,12,0,0 +2013,8,18,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,2,0,1715,14,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1420,-2,0,1850,-9,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,-9,0,2337,-21,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1629,-3,0,1739,1,0,0 +2013,8,2,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,0,0,900,-9,0,0 +2013,8,10,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1556,-12,0,0 +2013,9,18,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,6,0,1927,-7,0,0 +2013,4,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2130,-2,0,2311,9,0,0 +2013,7,1,1,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1327,-3,0,1429,-12,0,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1600,19,1,1705,17,1,0 +2013,7,6,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-6,0,1545,-1,0,0 +2013,6,14,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,2,0,1604,7,0,0 +2013,7,12,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-6,0,1154,-2,0,0 +2013,8,27,2,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,514,-5,0,626,-11,0,0 +2013,4,3,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1816,1,0,1919,30,1,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,-1,0,1753,-40,0,0 +2013,7,26,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,1013,2,0,0 +2013,6,17,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1820,101,1,1925,109,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-4,0,1026,-16,0,0 +2013,8,4,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2133,0,0,15,18,1,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1123,-10,0,1249,-11,0,0 +2013,8,16,5,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1344,-5,0,1641,-7,0,0 +2013,7,10,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,815,-1,0,1641,27,1,0 +2013,7,26,5,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2205,-6,0,2327,-12,0,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,0,0,756,5,0,0 +2013,8,8,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,34,1,1550,24,1,0 +2013,6,7,5,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,14,0,1431,44,1,0 +2013,9,22,7,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,-2,0,2040,-6,0,0 +2013,7,25,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,40,1,2020,41,1,0 +2013,5,23,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1655,17,1,1950,22,1,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-1,0,1151,-19,0,0 +2013,7,13,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-4,0,2000,-20,0,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,-4,0,1850,-5,0,0 +2013,8,3,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,12,0,905,10,0,0 +2013,9,5,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,3,0,1041,-1,0,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2020,-3,0,2230,-6,0,0 +2013,5,14,2,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1725,-5,0,2040,-58,0,0 +2013,8,15,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-3,0,1020,-13,0,0 +2013,7,20,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-5,0,1121,-10,0,0 +2013,8,3,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1317,-1,0,1448,-8,0,0 +2013,8,7,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1247,-1,0,1422,-18,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,605,-4,0,900,-7,0,0 +2013,5,23,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1103,-3,0,1209,-1,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,615,-1,0,825,-4,0,0 +2013,6,7,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1835,78,1,2126,94,1,0 +2013,8,13,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2340,-1,0,750,-23,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1650,107,1,1930,90,1,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1905,5,0,2010,-5,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1405,-2,0,1734,-14,0,0 +2013,4,16,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1027,-3,0,1302,-2,0,0 +2013,6,14,5,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,615,-4,0,1054,-20,0,0 +2013,4,27,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-6,0,1630,-10,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1730,1,0,2050,-3,0,0 +2013,5,17,5,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1945,-11,0,2209,-18,0,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,-6,0,1350,0,0,0 +2013,10,27,7,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1945,-14,0,2101,-15,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1743,1,0,1854,-17,0,0 +2013,5,16,4,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1105,0,0,1235,-13,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1155,-2,0,1318,9,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,-6,0,2050,-20,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,825,106,1,1025,101,1,0 +2013,10,23,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,959,0,0,1058,-10,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,17,1,2309,16,1,0 +2013,10,14,1,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,14,0,1720,32,1,0 +2013,8,13,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,0,,820,0,1,1 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2125,14,0,2225,8,0,0 +2013,7,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1900,-3,0,2110,-20,0,0 +2013,8,21,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,6,0,1820,-6,0,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-4,0,1928,2,0,0 +2013,5,2,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-2,0,1021,-9,0,0 +2013,5,11,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,1012,-21,0,0 +2013,9,23,1,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,959,-10,0,1150,-14,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1645,8,0,1925,8,0,0 +2013,10,14,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,38,1,1100,39,1,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-2,0,933,-10,0,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2035,0,0,30,-14,0,0 +2013,8,30,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1245,6,0,1525,-18,0,0 +2013,10,20,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1635,1,0,1750,-1,0,0 +2013,5,4,6,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1645,-3,0,1925,-10,0,0 +2013,5,12,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-1,0,1810,9,0,0 +2013,4,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,0,0,1225,12,0,0 +2013,6,2,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1735,0,0,1905,-14,0,0 +2013,9,23,1,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1158,-4,0,1402,-9,0,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2125,-4,0,10,-4,0,0 +2013,5,28,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1910,16,1,2035,13,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1220,-2,0,1430,-13,0,0 +2013,5,25,6,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1615,0,0,2149,12,0,0 +2013,7,17,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1631,-3,0,1914,-19,0,0 +2013,9,18,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,-10,0,1945,-11,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,850,11,0,1415,22,1,0 +2013,5,14,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-4,0,1827,-19,0,0 +2013,9,17,2,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,802,-2,0,852,-1,0,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2015,-2,0,2255,-10,0,0 +2013,5,7,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-7,0,1420,-6,0,0 +2013,4,22,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1254,-4,0,1420,101,1,0 +2013,5,25,6,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1515,-3,0,2318,7,0,0 +2013,9,2,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,7,0,1700,3,0,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,24,1,1540,12,0,0 +2013,4,16,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-2,0,1206,-3,0,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,-4,0,1736,-19,0,0 +2013,8,10,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,647,0,0,950,-4,0,0 +2013,8,30,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,38,1,1525,28,1,0 +2013,9,29,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1059,98,1,1254,87,1,0 +2013,8,28,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1245,7,0,1427,13,0,0 +2013,4,15,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,826,-1,0,1040,9,0,0 +2013,6,17,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1229,97,1,1442,87,1,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2250,20,1,2359,27,1,0 +2013,9,1,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1215,2,0,1325,-21,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,1,0,1451,6,0,0 +2013,6,1,6,US,10529,Bradley International,Hartford,CT,11278,Ronald Reagan Washington National,Washington,DC,620,-6,0,741,-10,0,0 +2013,4,17,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1548,181,1,1750,176,1,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,835,0,0,1000,-11,0,0 +2013,10,7,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,0,0,1440,51,1,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,705,-2,0,1115,-12,0,0 +2013,4,27,6,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,800,-3,0,1050,-3,0,0 +2013,6,19,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1030,0,0,1130,-6,0,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,-3,0,2056,-15,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-2,0,900,-4,0,0 +2013,5,2,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1230,14,0,1545,15,1,0 +2013,10,12,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,915,-7,0,1230,-47,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1325,16,1,1550,16,1,0 +2013,10,30,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,9,0,2135,37,1,0 +2013,10,16,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,-9,0,1834,-15,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,1,0,1925,-7,0,0 +2013,6,9,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-3,0,1204,-22,0,0 +2013,5,19,7,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1453,-6,0,1606,-12,0,0 +2013,4,4,4,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1645,100,1,1825,91,1,0 +2013,4,1,1,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,127,1,1625,126,1,0 +2013,6,23,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-4,0,1006,-17,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1258,-2,0,2110,-27,0,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,820,-2,0,1005,7,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1006,-7,0,1411,-18,0,0 +2013,5,11,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,605,-8,0,855,-11,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,9,0,1240,-10,0,0 +2013,4,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2057,27,1,2157,36,1,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,-1,0,1755,-2,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2219,-1,0,2344,-6,0,0 +2013,10,29,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-2,0,717,-11,0,0 +2013,9,19,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1745,259,1,2005,234,1,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-6,0,2025,2,0,0 +2013,10,4,5,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-5,0,2050,4,0,0 +2013,10,1,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1355,-4,0,1555,-13,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,749,-6,0,929,-12,0,0 +2013,5,16,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1625,19,1,2054,6,0,0 +2013,5,9,4,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,850,-2,0,950,-12,0,0 +2013,9,2,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-2,0,1451,-14,0,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1900,17,1,2046,4,0,0 +2013,7,10,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,33,1,2010,28,1,0 +2013,5,4,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-4,0,2046,-14,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1301,0,0,1446,-2,0,0 +2013,4,17,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,56,1,2115,45,1,0 +2013,4,29,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,-5,0,1319,-17,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1305,1,0,1755,-8,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1010,-1,0,1120,-4,0,0 +2013,9,17,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1335,-5,0,1501,-18,0,0 +2013,5,4,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,-6,0,1445,-20,0,0 +2013,10,8,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-7,0,920,0,0,0 +2013,9,22,7,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1439,-2,0,1607,-23,0,0 +2013,8,30,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2140,-5,0,2220,-2,0,0 +2013,9,17,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,0,0,1940,-5,0,0 +2013,10,21,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,-11,0,720,-11,0,0 +2013,5,26,7,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,-8,0,2100,-22,0,0 +2013,8,21,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,-6,0,850,36,1,0 +2013,10,28,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1441,-2,0,1724,-8,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,2,0,1448,-14,0,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2203,-1,0,2340,-24,0,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,3,0,2220,-8,0,0 +2013,9,19,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1300,-4,0,1335,1,0,0 +2013,4,26,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2240,-4,0,715,23,1,0 +2013,7,6,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1515,-11,0,1815,-19,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1910,3,0,2104,0,0,0 +2013,5,2,4,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1315,0,0,1616,-18,0,0 +2013,9,13,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,0,,822,0,1,1 +2013,4,19,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,93,1,1712,150,1,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-9,0,1010,-15,0,0 +2013,10,2,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-8,0,2205,-31,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,4,0,1715,4,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,1,0,1410,-9,0,0 +2013,7,3,3,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,1305,50,1,0 +2013,10,27,7,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,830,-6,0,1314,-15,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,-2,0,1050,22,1,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1936,33,1,2052,23,1,0 +2013,9,21,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,635,-1,0,650,-3,0,0 +2013,4,19,5,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,735,-5,0,1010,-6,0,0 +2013,5,26,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2047,-5,0,2235,-32,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1350,124,1,1711,139,1,0 +2013,6,9,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-7,0,1014,-7,0,0 +2013,10,2,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-6,0,919,-34,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1519,1,0,1643,-2,0,0 +2013,10,28,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-2,0,1445,2,0,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,19,1,2230,8,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1810,136,1,1935,152,1,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1923,-3,0,2249,-13,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1325,2,0,1450,-6,0,0 +2013,8,21,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1722,-2,0,1954,-13,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,840,1,0,1440,-4,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1750,15,1,2335,44,1,0 +2013,10,26,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-5,0,944,-2,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1520,-5,0,1632,-4,0,0 +2013,5,3,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,-4,0,1637,-13,0,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1832,-8,0,1949,-12,0,0 +2013,7,26,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2255,-7,0,144,-14,0,0 +2013,10,10,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1030,3,0,1355,4,0,0 +2013,5,6,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,137,1,1645,117,1,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1721,71,1,2001,73,1,0 +2013,10,25,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,730,-9,0,825,-11,0,0 +2013,10,3,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-4,0,1002,-10,0,0 +2013,8,18,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-7,0,1100,-18,0,0 +2013,6,28,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1910,93,1,100,87,1,0 +2013,8,2,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,11,0,1713,7,0,0 +2013,5,26,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,14,0,1800,5,0,0 +2013,4,3,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1430,1,0,1729,2,0,0 +2013,6,21,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,4,0,1427,9,0,0 +2013,9,12,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,800,-4,0,900,-6,0,0 +2013,8,28,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-9,0,643,-17,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-6,0,2231,14,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2140,29,1,20,22,1,0 +2013,10,17,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1720,-5,0,1859,13,0,0 +2013,8,18,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,830,-4,0,950,-29,0,0 +2013,6,1,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2216,1,0,629,-26,0,0 +2013,4,22,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1625,122,1,1740,118,1,0 +2013,4,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,118,1,1805,103,1,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2059,1,0,2304,5,0,0 +2013,6,7,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,0,0,843,-5,0,0 +2013,10,29,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1630,12,0,1913,4,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,68,1,2335,57,1,0 +2013,7,4,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-5,0,1900,-8,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,-6,0,1811,-1,0,0 +2013,8,2,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,0,0,1056,-3,0,0 +2013,6,17,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1825,-5,0,2045,-4,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1453,4,0,1620,19,1,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1145,1,0,1735,-2,0,0 +2013,4,1,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-4,0,1032,-7,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2105,-2,0,2225,-4,0,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1000,0,0,1538,8,0,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1750,-9,0,2159,-21,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,-5,0,1310,-4,0,0 +2013,6,15,6,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-5,0,816,-6,0,0 +2013,9,11,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1420,-2,0,2300,25,1,0 +2013,6,14,5,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,27,1,2230,54,1,0 +2013,10,24,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1130,3,0,1250,-6,0,0 +2013,5,20,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2025,0,0,2128,-3,0,0 +2013,9,29,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,24,1,1825,12,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,927,-1,0,1309,-10,0,0 +2013,6,27,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1955,-5,0,2204,82,1,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1730,-2,0,2000,-5,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1456,29,1,1724,0,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1410,3,0,1624,1,0,0 +2013,10,12,6,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1230,22,1,1350,13,0,0 +2013,4,16,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1133,-2,0,1406,7,0,0 +2013,9,3,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-7,0,1716,-6,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,919,16,1,1052,42,1,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,-3,0,2346,0,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1835,118,1,2235,114,1,0 +2013,7,12,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1540,137,1,1843,123,1,0 +2013,7,21,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,17,1,1630,25,1,0 +2013,4,2,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,1125,-25,0,0 +2013,5,18,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,615,-7,0,1451,-14,0,0 +2013,9,18,3,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,-1,0,2228,34,1,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,45,1,1000,28,1,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1630,0,,1955,0,1,1 +2013,8,12,1,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1440,1,0,1820,2,0,0 +2013,5,21,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,910,-1,0,1240,-5,0,0 +2013,5,3,5,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1056,10,0,1220,17,1,0 +2013,9,1,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-5,0,935,-3,0,0 +2013,8,11,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2115,-1,0,2235,-2,0,0 +2013,7,6,6,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,41,1,1901,45,1,0 +2013,4,29,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-7,0,1310,-6,0,0 +2013,9,15,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,-14,0,2115,-14,0,0 +2013,4,25,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,720,6,0,0 +2013,5,1,3,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-3,0,955,-5,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,22,1,1525,17,1,0 +2013,8,24,6,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2008,15,1,2248,9,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-4,0,2010,-4,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-2,0,815,-9,0,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1325,-5,0,1630,-5,0,0 +2013,7,17,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-3,0,151,1,0,0 +2013,8,26,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,825,0,0,1050,1,0,0 +2013,4,11,4,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,1,0,2145,10,0,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,649,-3,0,926,-12,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,655,-5,0,1125,-15,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,825,1,0,915,-13,0,0 +2013,7,5,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,900,-10,0,1221,-30,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-6,0,1309,-32,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,-5,0,1059,-14,0,0 +2013,6,19,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1124,12,0,1357,-1,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2240,-2,0,2348,-4,0,0 +2013,4,23,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1535,11,0,1655,12,0,0 +2013,4,6,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2155,43,1,2315,30,1,0 +2013,7,8,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,-3,0,10,-7,0,0 +2013,7,21,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,62,1,1015,46,1,0 +2013,5,3,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,-4,0,2050,-28,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,-4,0,2243,-16,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2145,6,0,2342,-3,0,0 +2013,6,28,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1155,-3,0,1310,-12,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,96,1,919,67,1,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1720,3,0,1843,-5,0,0 +2013,8,16,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-10,0,850,-14,0,0 +2013,7,31,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,10,0,1345,9,0,0 +2013,8,9,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-1,0,641,-3,0,0 +2013,5,13,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,645,-1,0,735,-2,0,0 +2013,7,12,5,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1412,-4,0,1632,-8,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2205,126,1,2305,128,1,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,14,0,1245,25,1,0 +2013,10,11,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,715,-6,0,840,-4,0,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1415,20,1,1620,16,1,0 +2013,4,17,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1250,-2,0,1405,-8,0,0 +2013,6,1,6,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,835,-11,0,1020,-28,0,0 +2013,7,28,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-2,0,727,1,0,0 +2013,10,11,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,15,1,1255,-3,0,0 +2013,6,4,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,2005,-3,0,2309,-7,0,0 +2013,5,28,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,815,-10,0,0 +2013,4,10,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,-2,0,1515,-10,0,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1845,-6,0,2330,-12,0,0 +2013,5,21,2,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,845,-5,0,1235,-7,0,0 +2013,5,8,3,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1017,10,0,1034,9,0,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1135,2,0,1325,-14,0,0 +2013,7,21,7,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2333,96,1,500,98,1,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2010,-3,0,2305,-11,0,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,-5,0,534,-20,0,0 +2013,10,6,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-4,0,1316,-20,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,-5,0,1019,-23,0,0 +2013,8,27,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,545,-16,0,725,-7,0,0 +2013,4,15,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-6,0,925,-22,0,0 +2013,6,14,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1944,-3,0,2153,-12,0,0 +2013,4,2,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1309,-8,0,2130,-9,0,0 +2013,10,28,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,7,0,1156,3,0,0 +2013,4,12,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,841,336,1,1009,330,1,0 +2013,10,6,7,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2013,-5,0,2125,-4,0,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,0,0,900,14,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1617,43,1,54,35,1,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1355,-9,0,2158,-37,0,0 +2013,8,18,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1753,-1,0,1934,2,0,0 +2013,6,6,4,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1909,-3,0,1951,15,1,0 +2013,8,15,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,17,1,1935,21,1,0 +2013,4,26,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-4,0,1439,-20,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-2,0,1453,-3,0,0 +2013,5,25,6,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1539,21,1,1543,13,0,0 +2013,5,16,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1202,9,0,1334,15,1,0 +2013,9,12,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2040,121,1,2205,121,1,0 +2013,7,1,1,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1440,25,1,1725,32,1,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,725,1,0,840,-5,0,0 +2013,10,2,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1408,-20,0,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-4,0,1115,-9,0,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,-4,0,1426,9,0,0 +2013,9,22,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-8,0,1015,-18,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,600,0,0,805,9,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1030,5,0,1342,3,0,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1930,0,0,2055,-16,0,0 +2013,9,20,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,740,-2,0,855,-7,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,0,,1318,0,1,1 +2013,9,6,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-1,0,652,-7,0,0 +2013,9,4,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-6,0,1806,-18,0,0 +2013,9,24,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-3,0,1049,-24,0,0 +2013,10,21,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-6,0,639,-19,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,640,-2,0,755,-6,0,0 +2013,6,25,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,10,0,1550,10,0,0 +2013,4,13,6,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1830,263,1,2043,241,1,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,711,-2,0,928,5,0,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,640,-6,0,814,9,0,0 +2013,4,17,3,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1144,-4,0,1349,1,0,0 +2013,8,12,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1921,-4,0,2050,113,1,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,76,1,2330,77,1,0 +2013,4,24,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1100,29,1,1947,61,1,0 +2013,10,14,1,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1750,65,1,1910,46,1,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,915,1,0,1145,-4,0,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,0,0,2134,-27,0,0 +2013,8,19,1,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1139,-4,0,1254,-13,0,0 +2013,6,12,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,137,1,1943,142,1,0 +2013,10,19,6,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1208,-3,0,1813,-19,0,0 +2013,8,11,7,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1133,-5,0,1300,-20,0,0 +2013,4,4,4,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2225,25,1,620,17,1,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2120,-5,0,2359,0,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1122,8,0,1612,9,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,0,0,1550,2,0,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1855,2,0,2130,-24,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1002,183,1,1333,173,1,0 +2013,6,1,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,-9,0,1822,20,1,0 +2013,9,7,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-4,0,831,-12,0,0 +2013,9,30,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-1,0,1100,-24,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1125,-2,0,1235,-17,0,0 +2013,8,13,2,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1020,5,0,1318,14,0,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1050,-1,0,1920,2,0,0 +2013,5,22,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1832,2,0,2000,-3,0,0 +2013,8,2,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,600,3,0,640,-1,0,0 +2013,7,24,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1247,51,1,1542,36,1,0 +2013,6,7,5,9E,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,847,-5,0,1037,-19,0,0 +2013,5,31,5,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1005,4,0,1205,-13,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,-3,0,1720,10,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2140,114,1,2359,84,1,0 +2013,4,13,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1630,20,1,1750,48,1,0 +2013,6,27,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-5,0,2140,-11,0,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,55,1,920,38,1,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1635,2,0,1844,-3,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,729,22,1,941,4,0,0 +2013,8,23,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1714,-5,0,1841,9,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2300,97,1,2350,100,1,0 +2013,9,23,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1021,8,0,1315,3,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-7,0,1048,-13,0,0 +2013,4,1,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,600,-3,0,725,-14,0,0 +2013,5,27,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1430,-3,0,1640,-20,0,0 +2013,10,20,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,704,2,0,1220,4,0,0 +2013,9,16,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1855,7,0,2110,5,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2045,0,,2245,0,1,1 +2013,4,24,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,2,0,2059,-14,0,0 +2013,5,3,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-5,0,1341,1,0,0 +2013,8,20,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-4,0,1538,-15,0,0 +2013,4,17,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1430,-2,0,1600,-16,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1122,11,0,1256,12,0,0 +2013,9,27,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,520,3,0,848,4,0,0 +2013,4,10,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,858,-3,0,932,-6,0,0 +2013,10,25,5,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1234,-2,0,1534,-5,0,0 +2013,10,4,5,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-2,0,820,-26,0,0 +2013,4,12,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1823,29,1,2025,20,1,0 +2013,10,3,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,600,-2,0,730,-12,0,0 +2013,10,16,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1345,-7,0,1529,-28,0,0 +2013,5,14,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-2,0,1212,0,0,0 +2013,5,7,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-1,0,1750,-3,0,0 +2013,4,28,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1335,0,,1540,0,1,1 +2013,7,16,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1228,-5,0,1534,6,0,0 +2013,8,4,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1350,-3,0,1644,-15,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1300,0,0,1635,9,0,0 +2013,5,19,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,2,0,1535,2,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,830,1,0,0 +2013,4,18,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1655,52,1,1820,48,1,0 +2013,8,30,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-3,0,1343,-12,0,0 +2013,7,11,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1909,26,1,2200,14,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1510,3,0,1608,14,0,0 +2013,8,7,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,21,1,919,29,1,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1610,12,0,1800,0,0,0 +2013,8,22,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,2,0,1810,2,0,0 +2013,4,14,7,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1130,-7,0,1434,10,0,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1652,-1,0,1802,-6,0,0 +2013,6,26,3,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1830,140,1,2125,142,1,0 +2013,6,8,6,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1725,36,1,1901,21,1,0 +2013,5,20,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1725,-3,0,1849,-17,0,0 +2013,9,24,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1530,-5,0,1701,19,1,0 +2013,5,25,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,915,-3,0,1113,-15,0,0 +2013,4,17,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,1,0,935,27,1,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,3,0,2130,3,0,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1400,-5,0,1520,-10,0,0 +2013,7,5,5,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1459,69,1,1801,42,1,0 +2013,7,12,5,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,52,1,2115,33,1,0 +2013,9,21,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-3,0,1814,-19,0,0 +2013,9,27,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-3,0,1310,-22,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1845,7,0,2305,11,0,0 +2013,4,23,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,2,0,1630,6,0,0 +2013,10,7,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,-3,0,1654,-8,0,0 +2013,9,10,2,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1353,24,1,1524,19,1,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1500,53,1,1610,51,1,0 +2013,4,18,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1240,-7,0,1520,-19,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1505,0,0,1751,-17,0,0 +2013,10,20,7,9E,12953,LaGuardia,New York,NY,12339,Indianapolis International,Indianapolis,IN,1000,-5,0,1234,-20,0,0 +2013,10,26,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1509,85,1,1645,90,1,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,740,-5,0,920,-12,0,0 +2013,9,3,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,-4,0,1338,4,0,0 +2013,4,25,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,805,-4,0,1421,-22,0,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,3,0,1500,2,0,0 +2013,6,12,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1822,-8,0,1934,-8,0,0 +2013,5,3,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1410,-1,0,1642,-7,0,0 +2013,8,25,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1640,22,1,1925,28,1,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1530,-1,0,1556,5,0,0 +2013,10,31,4,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,720,-6,0,755,-15,0,0 +2013,6,13,4,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1449,-5,0,2240,2,0,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1355,-5,0,1510,-5,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,17,1,2222,16,1,0 +2013,10,13,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-6,0,641,-16,0,0 +2013,6,10,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-5,0,1913,1,0,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1815,23,1,1940,20,1,0 +2013,7,13,6,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-3,0,915,-12,0,0 +2013,6,23,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-8,0,2015,-20,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2115,7,0,2320,23,1,0 +2013,9,9,1,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,700,-4,0,821,-9,0,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1725,9,0,1925,-29,0,0 +2013,8,12,1,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1611,9,0,1925,9,0,0 +2013,6,19,3,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,910,-6,0,1144,0,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1950,37,1,2155,29,1,0 +2013,6,6,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1350,6,0,1635,-24,0,0 +2013,7,9,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,-3,0,1901,60,1,0 +2013,8,18,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,-1,0,1421,-27,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1916,-4,0,2151,0,0,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2105,-4,0,2340,20,1,0 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,-4,0,1915,14,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,950,-9,0,1129,-15,0,0 +2013,8,29,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,850,-7,0,1055,-15,0,0 +2013,6,17,1,EV,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1750,-1,0,1850,1,0,0 +2013,8,11,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1725,1,0,2045,21,1,0 +2013,4,18,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1950,7,0,2240,-1,0,0 +2013,5,12,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1506,-7,0,1635,-15,0,0 +2013,9,30,1,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-5,0,1006,-8,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,901,-5,0,1033,-17,0,0 +2013,10,29,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,955,-20,0,1243,-16,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,6,0,1605,2,0,0 +2013,5,30,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,-4,0,940,-12,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1625,11,0,2030,-1,0,0 +2013,6,18,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,9,0,1010,-1,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,721,-3,0,1047,-17,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,9,0,1016,-15,0,0 +2013,5,31,5,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1750,13,0,2044,18,1,0 +2013,8,31,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-4,0,1154,-4,0,0 +2013,5,8,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-4,0,950,-3,0,0 +2013,6,17,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,-9,0,509,-25,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-6,0,1723,-33,0,0 +2013,4,12,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,-5,0,1437,2,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1005,4,0,1300,6,0,0 +2013,4,23,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,745,-3,0,1015,-11,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,5,0,1540,-1,0,0 +2013,4,4,4,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1927,103,1,2100,97,1,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1525,15,1,1815,-4,0,0 +2013,7,10,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,75,1,1902,81,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,56,1,2059,53,1,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1045,3,0,1510,0,0,0 +2013,10,28,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,7,0,1825,-13,0,0 +2013,6,13,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,50,1,2151,48,1,0 +2013,10,5,6,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1220,-1,0,1522,-2,0,0 +2013,5,16,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1405,-7,0,1620,-20,0,0 +2013,9,15,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1405,-5,0,1530,-8,0,0 +2013,9,24,2,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-9,0,1111,-16,0,0 +2013,7,14,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,19,1,1755,5,0,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1435,0,0,1653,-25,0,0 +2013,7,5,5,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1535,-3,0,1856,-19,0,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,910,31,1,1020,70,1,0 +2013,6,25,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1110,-1,0,1200,-8,0,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1835,10,0,1945,4,0,0 +2013,7,27,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2200,107,1,2318,91,1,0 +2013,4,20,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1745,8,0,1913,-5,0,0 +2013,10,31,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,20,1,1515,19,1,0 +2013,7,26,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,7,0,1905,-3,0,0 +2013,7,30,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1423,25,1,1722,10,0,0 +2013,5,13,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,720,-5,0,1020,-6,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,21,1,1540,14,0,0 +2013,7,20,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,705,-2,0,908,0,0,0 +2013,7,21,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,0,0,2300,-6,0,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1346,-5,0,1535,-13,0,0 +2013,4,15,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-6,0,650,-9,0,0 +2013,7,14,7,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,195,1,2015,175,1,0 +2013,5,4,6,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,725,-2,0,900,-40,0,0 +2013,7,28,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,-4,0,719,-13,0,0 +2013,5,12,7,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1515,-1,0,1605,-24,0,0 +2013,4,28,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,900,-2,0,1025,1,0,0 +2013,5,20,1,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1934,65,1,2105,58,1,0 +2013,6,27,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-6,0,1540,-34,0,0 +2013,7,29,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,1,0,2100,-1,0,0 +2013,10,27,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,110,1,1551,112,1,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,3,0,1740,-9,0,0 +2013,5,5,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1210,7,0,1355,-20,0,0 +2013,4,19,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-2,0,1030,-4,0,0 +2013,7,6,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,630,2,0,1225,9,0,0 +2013,8,15,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1603,14,0,1853,0,0,0 +2013,10,24,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,21,1,1527,23,1,0 +2013,9,19,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,9,0,1949,9,0,0 +2013,5,29,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,915,1,0,1033,0,0,0 +2013,10,1,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1127,-2,0,1634,-9,0,0 +2013,10,8,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,0,0,2215,-17,0,0 +2013,5,2,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1123,-1,0,1414,-9,0,0 +2013,8,21,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-1,0,815,-10,0,0 +2013,8,4,7,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,5,0,1635,4,0,0 +2013,10,10,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1710,-4,0,1916,-5,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,941,-8,0,1259,-40,0,0 +2013,8,13,2,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-15,0,1029,-7,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,940,-3,0,1007,-11,0,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,7,0,2305,3,0,0 +2013,9,16,1,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-9,0,1445,-1,0,0 +2013,7,14,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,-2,0,1515,-10,0,0 +2013,9,3,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,0,0,1355,-18,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-2,0,1830,-22,0,0 +2013,4,27,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1745,-4,0,1939,-24,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1820,30,1,2000,28,1,0 +2013,5,17,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,752,-3,0,906,-23,0,0 +2013,5,31,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-8,0,754,-27,0,0 +2013,5,13,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1609,7,0,1930,10,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-7,0,828,11,0,0 +2013,4,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,8,0,2120,11,0,0 +2013,10,17,4,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,-9,0,2115,7,0,0 +2013,8,15,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1555,44,1,2359,43,1,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,-6,0,19,22,1,0 +2013,9,28,6,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1430,4,0,1605,5,0,0 +2013,8,16,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,710,-7,0,820,-4,0,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1210,-5,0,1307,0,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1046,88,1,1620,81,1,0 +2013,7,21,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,37,1,735,33,1,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,800,-3,0,1050,-13,0,0 +2013,7,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,910,0,0,1040,-7,0,0 +2013,10,7,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-9,0,2047,-20,0,0 +2013,8,11,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1501,4,0,1830,9,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,-1,0,1154,-15,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,-4,0,901,-12,0,0 +2013,4,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,545,-9,0,803,-23,0,0 +2013,5,26,7,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,33,-1,0,558,-7,0,0 +2013,10,5,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1300,43,1,1410,29,1,0 +2013,8,15,4,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,6,0,1724,16,1,0 +2013,6,5,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,705,-1,0,1008,-9,0,0 +2013,6,11,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,-3,0,1252,1,0,0 +2013,6,2,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1132,-8,0,1328,-11,0,0 +2013,4,15,1,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,730,-1,0,800,1,0,0 +2013,8,4,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,0,0,1105,-5,0,0 +2013,4,1,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,705,-3,0,825,-20,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1350,217,1,1830,202,1,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,949,-9,0,1201,-25,0,0 +2013,8,21,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-4,0,1828,-7,0,0 +2013,5,2,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,-9,0,2107,-7,0,0 +2013,7,8,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,922,21,1,1232,21,1,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-1,0,922,-24,0,0 +2013,7,26,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,904,2,0,0 +2013,4,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,605,1,1256,602,1,0 +2013,10,30,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,640,-2,0,805,-6,0,0 +2013,5,3,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1231,-4,0,1554,12,0,0 +2013,9,19,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1145,2,0,1310,-3,0,0 +2013,10,13,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,710,-6,0,1101,-16,0,0 +2013,7,28,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-6,0,1514,1,0,0 +2013,5,25,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1921,56,1,2109,46,1,0 +2013,10,6,7,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1735,47,1,1810,32,1,0 +2013,10,6,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,15,1,2135,-5,0,0 +2013,9,12,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2339,-4,0,610,-2,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1243,-1,0,1402,-3,0,0 +2013,7,20,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-1,0,1354,2,0,0 +2013,4,14,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-3,0,1249,-1,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1056,17,1,1108,5,0,0 +2013,4,30,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1655,30,1,1820,18,1,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,0,0,2125,22,1,0 +2013,8,21,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1430,7,0,2240,9,0,0 +2013,9,12,4,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1530,0,,1715,0,1,1 +2013,10,23,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,740,-1,0,905,5,0,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2130,8,0,2350,27,1,0 +2013,8,15,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-3,0,950,-6,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-5,0,1812,-11,0,0 +2013,7,10,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1350,13,0,1500,19,1,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1725,0,0,2240,7,0,0 +2013,8,17,6,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-3,0,1019,-10,0,0 +2013,10,18,5,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1745,-6,0,2005,-15,0,0 +2013,8,12,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1554,-14,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2100,-6,0,2245,-30,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,715,-6,0,820,-11,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1950,2,0,2055,-3,0,0 +2013,6,26,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-5,0,736,2,0,0 +2013,5,15,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-5,0,1258,-17,0,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,630,-1,0,804,-8,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1645,11,0,1850,3,0,0 +2013,10,24,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1216,-9,0,1340,-21,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1221,0,0,1459,-1,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,152,1,2055,153,1,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,-4,0,626,-17,0,0 +2013,10,24,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-2,0,1130,-6,0,0 +2013,5,3,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-14,0,935,-27,0,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2021,14,0,2153,2,0,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1709,-5,0,2223,-18,0,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,-4,0,1720,-18,0,0 +2013,9,8,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1025,-2,0,1135,-11,0,0 +2013,5,7,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,17,1,1350,28,1,0 +2013,7,2,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1115,11,0,1250,6,0,0 +2013,4,23,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1310,2,0,1356,13,0,0 +2013,7,19,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,737,-8,0,920,-12,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1610,38,1,1730,35,1,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-7,0,1834,-5,0,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2120,27,1,2345,24,1,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,735,4,0,1000,-6,0,0 +2013,5,12,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,59,17,1,805,33,1,0 +2013,7,10,3,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1936,53,1,2045,43,1,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1200,-3,0,1354,-27,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,900,20,1,1253,1,0,0 +2013,6,15,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-4,0,1037,-6,0,0 +2013,8,10,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,0,0,1645,-18,0,0 +2013,7,23,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-7,0,1341,-4,0,0 +2013,4,8,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1206,7,0,1720,4,0,0 +2013,9,29,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1345,-20,0,1425,-15,0,0 +2013,7,24,3,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1857,-8,0,2030,-9,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1705,18,1,2255,21,1,0 +2013,5,5,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-7,0,1011,-5,0,0 +2013,10,4,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1735,33,1,1857,30,1,0 +2013,4,16,2,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-3,0,855,2,0,0 +2013,10,7,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-1,0,905,-18,0,0 +2013,5,19,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,4,0,803,-10,0,0 +2013,4,29,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-3,0,1549,-1,0,0 +2013,9,21,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1245,-3,0,1810,17,1,0 +2013,9,23,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,651,-8,0,1027,-16,0,0 +2013,7,2,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,5,0,2100,-3,0,0 +2013,5,23,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2155,48,1,2250,45,1,0 +2013,7,13,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1335,-1,0,1725,-3,0,0 +2013,8,21,3,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1430,-1,0,1729,-12,0,0 +2013,7,3,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,28,1,1115,23,1,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2240,-4,0,2331,-2,0,0 +2013,6,27,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-5,0,815,-20,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1330,15,1,1445,10,0,0 +2013,5,8,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,3,0,1624,-17,0,0 +2013,10,15,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,927,-4,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1310,8,0,1607,-6,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,-5,0,923,-26,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-5,0,1458,-8,0,0 +2013,10,18,5,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,950,9,0,1650,-9,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1635,7,0,1844,6,0,0 +2013,6,1,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,745,-5,0,850,-12,0,0 +2013,7,25,4,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1134,-6,0,1346,-10,0,0 +2013,4,5,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,800,1,0,920,3,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,915,1,0,1155,1,0,0 +2013,6,7,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-1,0,830,-2,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1930,45,1,2200,64,1,0 +2013,8,2,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,-3,0,1500,-11,0,0 +2013,5,12,7,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1121,-1,0,1826,15,1,0 +2013,6,12,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,-3,0,1309,-11,0,0 +2013,6,5,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1015,-5,0,1219,-3,0,0 +2013,9,22,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,9,0,2108,-9,0,0 +2013,6,23,7,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1145,-10,0,1320,-28,0,0 +2013,7,29,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,16,1,759,19,1,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,0,0,1834,-16,0,0 +2013,8,2,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,2,0,1540,-4,0,0 +2013,8,23,5,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,2213,-4,0,617,-18,0,0 +2013,9,11,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1630,9,0,1750,5,0,0 +2013,4,10,3,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2110,0,,2242,0,1,1 +2013,9,4,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,97,1,1910,87,1,0 +2013,9,11,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,-1,0,1430,-4,0,0 +2013,4,6,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1050,-6,0,1220,-27,0,0 +2013,7,11,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,845,-2,0,1125,5,0,0 +2013,6,3,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,-8,0,1546,-10,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1955,44,1,2310,28,1,0 +2013,4,27,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,605,-7,0,855,-15,0,0 +2013,6,21,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,804,-12,0,1103,-21,0,0 +2013,5,7,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,645,-3,0,920,6,0,0 +2013,4,11,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1000,-3,0,1239,-15,0,0 +2013,9,2,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,10,0,1545,10,0,0 +2013,5,18,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1310,-6,0,1820,-24,0,0 +2013,5,9,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,-2,0,1438,-1,0,0 +2013,8,25,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-2,0,1015,-6,0,0 +2013,7,12,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,650,-1,0,720,-17,0,0 +2013,5,19,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1832,-4,0,2235,-4,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1810,-4,0,2020,-24,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,-1,0,2300,-13,0,0 +2013,4,21,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1555,1,0,1715,-10,0,0 +2013,10,29,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1000,-1,0,1055,1,0,0 +2013,10,26,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1727,-5,0,1857,-20,0,0 +2013,6,9,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-5,0,1348,-2,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,12,0,1153,13,0,0 +2013,10,5,6,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,1,0,1856,-3,0,0 +2013,8,8,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,5,0,1835,9,0,0 +2013,5,28,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1120,-10,0,1210,-9,0,0 +2013,7,14,7,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,1725,-4,0,1849,-2,0,0 +2013,6,6,4,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1000,8,0,1140,1,0,0 +2013,10,30,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1255,26,1,1350,18,1,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,915,0,0,1525,24,1,0 +2013,9,29,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,935,-10,0,1125,-23,0,0 +2013,5,25,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1535,18,1,2105,10,0,0 +2013,7,16,2,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,-5,0,1550,7,0,0 +2013,8,17,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,4,0,1730,-5,0,0 +2013,10,27,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1035,-6,0,1225,-14,0,0 +2013,5,2,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-6,0,1400,-9,0,0 +2013,8,21,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,0,0,14,2,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1640,106,1,2120,109,1,0 +2013,9,22,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-1,0,2159,8,0,0 +2013,5,27,1,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1713,4,0,1920,-14,0,0 +2013,10,16,3,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1756,-4,0,1904,-3,0,0 +2013,4,16,2,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1418,-2,0,1728,-1,0,0 +2013,6,21,5,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1635,72,1,1847,44,1,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1755,-3,0,1940,-18,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1713,4,0,2009,16,1,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,-4,0,1223,-25,0,0 +2013,4,17,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,0,925,10,0,0 +2013,7,29,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,9,0,2001,18,1,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,821,33,1,917,35,1,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1426,5,0,1705,-11,0,0 +2013,4,11,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,5,0,1910,1,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1205,-3,0,1345,-12,0,0 +2013,8,21,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,27,1,2125,20,1,0 +2013,8,23,5,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1530,0,0,1715,9,0,0 +2013,8,15,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,-4,0,1504,-8,0,0 +2013,6,26,3,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1940,-4,0,2115,-22,0,0 +2013,8,31,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,35,1,1858,32,1,0 +2013,8,22,4,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-7,0,922,-14,0,0 +2013,10,11,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,858,-11,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,12,0,1740,-1,0,0 +2013,8,26,1,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1108,2,0,1850,16,1,0 +2013,10,10,4,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-2,0,854,-4,0,0 +2013,4,12,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1015,-10,0,1526,9,0,0 +2013,7,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,2020,9,0,2214,4,0,0 +2013,7,5,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1624,9,0,1816,-15,0,0 +2013,4,19,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-4,0,1010,1,0,0 +2013,8,14,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1524,20,1,1637,9,0,0 +2013,9,23,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,600,-3,0,1428,-7,0,0 +2013,5,10,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1240,7,0,1410,3,0,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-5,0,1629,-5,0,0 +2013,8,14,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1250,0,0,1709,1,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1743,-3,0,1932,-18,0,0 +2013,6,23,7,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,0,0,1303,-4,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1900,5,0,2130,8,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,-2,0,1302,4,0,0 +2013,8,22,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1016,-7,0,1304,-6,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-10,0,805,-2,0,0 +2013,4,7,7,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1440,7,0,1605,-4,0,0 +2013,7,11,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,113,1,1400,131,1,0 +2013,9,8,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1756,-8,0,1928,-2,0,0 +2013,6,16,7,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,935,7,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1448,29,1,2104,18,1,0 +2013,5,10,5,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-1,0,940,5,0,0 +2013,5,11,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,40,1,1610,35,1,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,0,0,1245,5,0,0 +2013,5,13,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2255,2,0,623,-8,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1447,-4,0,2029,-3,0,0 +2013,10,31,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-7,0,1923,-4,0,0 +2013,6,13,4,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1639,26,1,1933,26,1,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1930,32,1,2155,29,1,0 +2013,4,25,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,928,0,0,0 +2013,8,12,1,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1245,-3,0,1515,-14,0,0 +2013,4,23,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-4,0,1220,21,1,0 +2013,8,25,7,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1230,-5,0,1440,-3,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,6,0,1500,9,0,0 +2013,4,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1113,-6,0,1219,-17,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,835,-1,0,1000,-4,0,0 +2013,9,11,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-4,0,1226,0,0,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1540,7,0,2115,-22,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,46,1,2248,55,1,0 +2013,9,12,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1206,19,1,1531,6,0,0 +2013,5,21,2,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,-10,0,2306,-24,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1243,12,0,1507,-14,0,0 +2013,5,30,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-2,0,1228,9,0,0 +2013,5,2,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,722,-10,0,1008,-12,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-11,0,2340,-8,0,0 +2013,9,10,2,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1128,-6,0,1304,-13,0,0 +2013,7,22,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,830,-9,0,1422,-19,0,0 +2013,9,4,3,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2045,-6,0,2150,-18,0,0 +2013,10,11,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1435,24,1,1600,22,1,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,15,1,1713,13,0,0 +2013,7,21,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-6,0,1015,-17,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-3,0,1109,-8,0,0 +2013,5,18,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1200,-3,0,1255,-12,0,0 +2013,8,3,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,2,0,1254,-9,0,0 +2013,9,9,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1858,-1,0,2026,-5,0,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1840,46,1,2000,52,1,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,932,-5,0,1310,-19,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1725,12,0,2305,28,1,0 +2013,5,21,2,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1145,21,1,1520,14,0,0 +2013,5,27,1,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1731,-1,0,1907,-17,0,0 +2013,8,24,6,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,820,-4,0,1211,-6,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1915,-3,0,2023,24,1,0 +2013,6,1,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,830,0,0,945,-15,0,0 +2013,7,26,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,835,-9,0,0 +2013,10,31,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-5,0,940,21,1,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,615,-2,0,725,4,0,0 +2013,8,29,4,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,-10,0,1028,-16,0,0 +2013,7,25,4,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-4,0,1537,-6,0,0 +2013,9,27,5,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1055,-1,0,1235,1,0,0 +2013,9,26,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1855,78,1,2205,62,1,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,-1,0,751,-24,0,0 +2013,5,26,7,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,715,-11,0,954,-21,0,0 +2013,7,28,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1355,-1,0,1739,20,1,0 +2013,10,22,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-3,0,1200,-24,0,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,2135,3,0,25,18,1,0 +2013,8,31,6,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,1,0,629,26,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,-3,0,2340,-7,0,0 +2013,10,13,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1330,-10,0,1435,-20,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,857,8,0,1009,12,0,0 +2013,7,10,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1115,-3,0,1255,-22,0,0 +2013,5,26,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1230,-1,0,1350,-10,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1640,-8,0,2000,-21,0,0 +2013,7,3,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,59,77,1,914,103,1,0 +2013,5,12,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1240,-3,0,1520,-6,0,0 +2013,7,12,5,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,4,0,1000,-6,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2005,-6,0,2203,-8,0,0 +2013,4,21,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1640,-4,0,1700,-18,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2000,42,1,2152,30,1,0 +2013,6,9,7,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1011,-12,0,1108,-13,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,745,1,0,1135,-16,0,0 +2013,4,1,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-1,0,1915,-12,0,0 +2013,8,18,7,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,-4,0,1515,-11,0,0 +2013,9,23,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,626,-6,0,916,-17,0,0 +2013,5,11,6,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,955,0,0,1120,-4,0,0 +2013,8,23,5,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,0,0,1600,-7,0,0 +2013,10,26,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1325,-3,0,1455,-5,0,0 +2013,9,17,2,9E,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1125,-5,0,1324,-14,0,0 +2013,6,10,1,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-1,0,1058,-16,0,0 +2013,5,10,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1315,38,1,1540,40,1,0 +2013,4,9,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1734,0,0,1851,-1,0,0 +2013,4,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,-4,0,2032,-6,0,0 +2013,10,20,7,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1518,-1,0,1645,30,1,0 +2013,5,16,4,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-2,0,1020,-1,0,0 +2013,4,25,4,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,-14,0,1252,5,0,0 +2013,6,29,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,77,1,1550,97,1,0 +2013,8,4,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-4,0,1330,-6,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,11,0,2200,-7,0,0 +2013,7,6,6,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,2029,-5,0,2240,-16,0,0 +2013,4,3,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-7,0,1128,-4,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1135,2,0,1300,-1,0,0 +2013,10,9,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1655,24,1,1800,19,1,0 +2013,6,13,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,116,1,1310,121,1,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1540,1,0,1650,-13,0,0 +2013,4,7,7,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1249,-2,0,1500,10,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2045,115,1,2309,110,1,0 +2013,4,25,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1435,17,1,2022,-11,0,0 +2013,5,31,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,20,35,1,535,22,1,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1613,-3,0,1722,-3,0,0 +2013,7,21,7,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1520,4,0,655,-19,0,0 +2013,4,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,843,-9,0,923,-6,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,-5,0,2255,-4,0,0 +2013,7,6,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1002,-6,0,1135,-12,0,0 +2013,6,18,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,730,-3,0,0 +2013,8,2,5,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1523,134,1,1619,148,1,0 +2013,8,28,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1010,-3,0,1145,-11,0,0 +2013,7,29,1,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,642,2,0,940,-12,0,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1900,24,1,1945,19,1,0 +2013,9,23,1,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1711,-10,0,1850,-36,0,0 +2013,8,25,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1935,-7,0,115,-21,0,0 +2013,5,11,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1537,27,1,1652,18,1,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1525,23,1,1635,16,1,0 +2013,6,12,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1337,-6,0,1539,-4,0,0 +2013,6,24,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-1,0,1150,-9,0,0 +2013,4,23,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,743,13,0,1113,9,0,0 +2013,5,3,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,815,25,1,0 +2013,5,7,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-5,0,1245,-19,0,0 +2013,5,8,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1946,-1,0,2023,-3,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1730,28,1,1855,12,0,0 +2013,8,15,4,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1635,1,0,1945,-4,0,0 +2013,7,14,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1851,25,1,2200,19,1,0 +2013,9,29,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,737,-5,0,931,2,0,0 +2013,9,10,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1343,-14,0,0 +2013,4,16,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,600,-11,0,800,-27,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-2,0,1639,13,0,0 +2013,10,24,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1455,4,0,1550,-1,0,0 +2013,8,10,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,702,-7,0,1000,-29,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,635,-8,0,1330,-15,0,0 +2013,8,25,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-7,0,1740,-2,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,707,-3,0,938,-7,0,0 +2013,9,17,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-4,0,1715,-9,0,0 +2013,10,3,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1710,-3,0,1905,-19,0,0 +2013,5,22,3,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1645,7,0,1925,-1,0,0 +2013,7,28,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2055,-6,0,2120,-7,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1859,35,1,2000,17,1,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,715,5,0,945,5,0,0 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1720,1,0,2045,6,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1747,-1,0,2035,-12,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1315,0,0,1610,-2,0,0 +2013,9,25,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1105,-16,0,1244,-17,0,0 +2013,10,4,5,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,16,1,1800,7,0,0 +2013,6,20,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,-2,0,950,15,1,0 +2013,6,15,6,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1105,-3,0,1515,-22,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-6,0,950,-11,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1945,-3,0,2133,-2,0,0 +2013,7,28,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1917,108,1,2229,103,1,0 +2013,10,20,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1205,0,0,1329,0,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-7,0,2327,-6,0,0 +2013,9,11,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1315,57,1,1435,53,1,0 +2013,4,6,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1655,-4,0,1800,-4,0,0 +2013,9,23,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-9,0,2013,-14,0,0 +2013,7,21,7,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1445,-1,0,1543,-7,0,0 +2013,6,2,7,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1146,-6,0,1609,-22,0,0 +2013,4,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,-8,0,2053,-28,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,6,0,1916,1,0,0 +2013,8,16,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1108,-8,0,1849,-8,0,0 +2013,7,9,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,0,0,1900,-2,0,0 +2013,10,1,2,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1340,17,1,1618,-4,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1405,14,0,1510,6,0,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,835,-3,0,950,-8,0,0 +2013,10,30,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,-12,0,2120,15,1,0 +2013,10,16,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,810,4,0,910,6,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1116,-4,0,1304,-7,0,0 +2013,7,7,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1129,-7,0,1329,-22,0,0 +2013,9,30,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-5,0,906,-6,0,0 +2013,4,13,6,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1206,-2,0,1347,-11,0,0 +2013,9,6,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1420,2,0,2300,8,0,0 +2013,7,10,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2319,47,1,15,36,1,0 +2013,8,23,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1016,-4,0,1140,5,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,850,13,0,1125,7,0,0 +2013,9,27,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,-3,0,1410,-8,0,0 +2013,5,24,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,600,-3,0,749,-13,0,0 +2013,5,16,4,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1120,20,1,1248,23,1,0 +2013,5,7,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,625,0,0,745,-16,0,0 +2013,8,20,2,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,805,15,1,925,27,1,0 +2013,6,16,7,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,1300,-4,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,720,39,1,919,31,1,0 +2013,10,23,3,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,2330,20,1,642,-12,0,0 +2013,9,20,5,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1050,9,0,1539,24,1,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1745,16,1,1920,16,1,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1515,1,0,1625,0,0,0 +2013,8,18,7,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,-2,0,1551,-10,0,0 +2013,9,25,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1545,12,0,1555,7,0,0 +2013,8,23,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1750,-4,0,2005,4,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1140,34,1,1335,33,1,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,83,1,1524,69,1,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,17,1,1920,12,0,0 +2013,7,1,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-4,0,1140,13,0,0 +2013,9,30,1,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1130,-5,0,1607,3,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-7,0,2125,42,1,0 +2013,7,23,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-11,0,2140,-17,0,0 +2013,6,10,1,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1235,4,0,1415,5,0,0 +2013,7,6,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,925,132,1,1153,137,1,0 +2013,10,2,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1100,-11,0,1351,-7,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1749,-1,0,2034,-17,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1950,-1,0,2026,-1,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1015,24,1,1140,6,0,0 +2013,10,17,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-6,0,1255,-12,0,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1345,19,1,1610,16,1,0 +2013,6,17,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,605,-16,0,1020,1,0,0 +2013,7,13,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1150,-3,0,1337,-16,0,0 +2013,4,25,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1742,49,1,1929,40,1,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,36,1,1730,23,1,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1725,10,0,55,-1,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,-1,0,14,5,0,0 +2013,7,11,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,24,1,1459,14,0,0 +2013,5,5,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,925,0,0,1235,11,0,0 +2013,8,14,3,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,26,1,857,15,1,0 +2013,4,17,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,1,0,1255,48,1,0 +2013,4,17,3,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1015,56,1,1611,75,1,0 +2013,5,4,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1245,-6,0,1459,-23,0,0 +2013,6,11,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,847,-12,0,0 +2013,4,22,1,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-1,0,1500,-18,0,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,14,0,1230,0,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1355,-2,0,1503,5,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1355,44,1,1755,18,1,0 +2013,6,23,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,8,0,1028,18,1,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1650,19,1,1900,14,0,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,22,1,1515,20,1,0 +2013,10,13,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,0,0,1405,-7,0,0 +2013,10,4,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,934,25,1,1406,12,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,735,0,,1205,0,1,1 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2216,-1,0,2359,-15,0,0 +2013,10,8,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,-10,0,1651,-7,0,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,6,0,825,4,0,0 +2013,6,25,2,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1229,0,0,1442,-1,0,0 +2013,9,17,2,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1013,-7,0,0 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-2,0,1947,16,1,0 +2013,4,21,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1604,15,1,1900,-20,0,0 +2013,9,22,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,-6,0,2025,-2,0,0 +2013,7,15,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,-2,0,1105,-5,0,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1920,3,0,2020,6,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2045,4,0,2205,-17,0,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,43,1,1745,35,1,0 +2013,5,22,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,-1,0,1403,-1,0,0 +2013,6,4,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,-10,0,1904,-17,0,0 +2013,8,14,3,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,4,0,946,6,0,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-3,0,1850,-17,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,700,0,0,840,1,0,0 +2013,6,23,7,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1805,-1,0,2040,22,1,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,-7,0,903,3,0,0 +2013,10,19,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-7,0,1327,7,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1035,-4,0,1221,9,0,0 +2013,7,17,3,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,845,12,0,955,5,0,0 +2013,10,2,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1100,-3,0,1525,-24,0,0 +2013,7,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,6,0,1710,0,0,0 +2013,6,19,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,,812,0,1,1 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1549,79,1,1802,83,1,0 +2013,8,26,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-5,0,1445,-11,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,705,8,0,810,4,0,0 +2013,9,1,7,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1805,19,1,2055,12,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,1,0,2050,-10,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,5,0,1435,4,0,0 +2013,7,14,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1953,12,0,2130,-15,0,0 +2013,9,24,2,9E,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,859,-2,0,1027,7,0,0 +2013,5,8,3,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,839,-13,0,0 +2013,5,6,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,-4,0,1318,-24,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1130,-5,0,1247,-15,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1245,3,0,1500,11,0,0 +2013,5,16,4,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1510,11,0,1830,-8,0,0 +2013,5,2,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-7,0,1015,-21,0,0 +2013,9,18,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,910,-4,0,1450,-13,0,0 +2013,7,1,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1242,17,1,1817,7,0,0 +2013,9,10,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1500,-3,0,2256,-11,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,59,1,1343,115,1,0 +2013,7,22,1,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-5,0,820,-12,0,0 +2013,4,8,1,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1000,-3,0,1120,-21,0,0 +2013,8,13,2,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-8,0,846,-14,0,0 +2013,4,22,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1638,193,1,1928,186,1,0 +2013,7,21,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,923,-10,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1020,3,0,1650,-9,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1630,13,0,1745,-2,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-4,0,1332,-13,0,0 +2013,9,24,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-7,0,1421,-28,0,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1026,7,0,1130,1,0,0 +2013,7,30,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-1,0,1420,-2,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2051,-1,0,2104,-13,0,0 +2013,7,20,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,0,0,1530,-15,0,0 +2013,10,23,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-1,0,930,-5,0,0 +2013,6,20,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-4,0,1517,-4,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,4,0,2155,3,0,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,800,-6,0,1055,9,0,0 +2013,10,16,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,955,23,1,1250,7,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2004,-2,0,2114,-30,0,0 +2013,5,31,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,77,1,1835,69,1,0 +2013,7,12,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,2,0,1630,2,0,0 +2013,9,4,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1436,-6,0,1808,42,1,0 +2013,10,23,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1849,-7,0,1912,-15,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1710,-1,0,1805,-5,0,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1159,-2,0,1311,2,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2235,3,0,2335,38,1,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,0,0,1102,-8,0,0 +2013,6,20,4,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1947,-2,0,2111,-3,0,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1655,26,1,1745,18,1,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,-1,0,1034,-19,0,0 +2013,9,21,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1127,-5,0,1207,-5,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1310,4,0,1640,-1,0,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1925,-1,0,2025,-4,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,1,0,1226,-9,0,0 +2013,6,3,1,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,-8,0,2005,-24,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1540,20,1,1800,9,0,0 +2013,4,4,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1040,-2,0,1200,-9,0,0 +2013,9,6,5,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-14,0,1725,-21,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1405,2,0,1515,8,0,0 +2013,10,12,6,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1415,-4,0,1600,-24,0,0 +2013,9,18,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,813,-9,0,1104,-18,0,0 +2013,9,24,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1352,23,1,1953,-2,0,0 +2013,9,14,6,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1810,-5,0,2022,-38,0,0 +2013,9,24,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1434,-18,0,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1112,0,0,1207,-15,0,0 +2013,9,8,7,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,3,0,1435,9,0,0 +2013,7,17,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1446,-4,0,1622,-11,0,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,6,0,1948,3,0,0 +2013,10,9,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1700,-8,0,0 +2013,7,21,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-2,0,758,-19,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1611,6,0,1811,3,0,0 +2013,8,11,7,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1150,-2,0,1335,-17,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-5,0,2159,8,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1643,12,0,1925,10,0,0 +2013,9,25,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1820,35,1,1910,30,1,0 +2013,9,2,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1526,-1,0,1713,3,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,830,0,0,925,11,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1205,-3,0,1214,-2,0,0 +2013,8,12,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1227,0,0,2020,2,0,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,-1,0,1933,-16,0,0 +2013,6,9,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-6,0,945,63,1,0 +2013,6,2,7,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1435,-3,0,1624,1,0,0 +2013,4,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,95,1,2311,69,1,0 +2013,8,31,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2024,-4,0,7,-22,0,0 +2013,5,17,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2005,31,1,2050,21,1,0 +2013,9,19,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-9,0,627,-16,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,815,-4,0,1015,-11,0,0 +2013,6,16,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-6,0,825,-15,0,0 +2013,10,26,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-9,0,1443,0,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,0,0,1535,-7,0,0 +2013,5,20,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,-3,0,1900,17,1,0 +2013,6,20,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-4,0,913,-19,0,0 +2013,7,10,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1155,-3,0,1255,11,0,0 +2013,10,4,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,925,0,0,1015,-2,0,0 +2013,4,7,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-4,0,748,-15,0,0 +2013,6,12,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1239,-13,0,0 +2013,6,15,6,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,700,2,0,935,8,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1349,2,0,1639,-12,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-4,0,730,-12,0,0 +2013,4,6,6,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1240,-6,0,1438,-34,0,0 +2013,6,21,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,1,0,1535,-7,0,0 +2013,8,17,6,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1050,0,0,1215,-10,0,0 +2013,9,13,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-3,0,1025,-8,0,0 +2013,7,25,4,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,-5,0,720,5,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1025,-1,0,1140,-7,0,0 +2013,7,8,1,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1703,30,1,1810,19,1,0 +2013,7,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1035,22,1,1310,22,1,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,5,0,1850,-9,0,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,755,10,0,1245,5,0,0 +2013,6,4,2,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1714,-6,0,1834,-6,0,0 +2013,4,11,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,-6,0,1240,3,0,0 +2013,9,23,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1845,-4,0,2220,-12,0,0 +2013,7,27,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,61,1,1523,64,1,0 +2013,9,27,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-7,0,1756,-11,0,0 +2013,4,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-5,0,729,-22,0,0 +2013,7,25,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1519,-4,0,1625,-7,0,0 +2013,4,24,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1341,0,0,1646,12,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1743,-6,0,1920,-4,0,0 +2013,5,7,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-2,0,1008,-23,0,0 +2013,5,10,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,2,0,2034,-2,0,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,11,0,1430,-4,0,0 +2013,6,26,3,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,-5,0,2054,-11,0,0 +2013,6,22,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1837,12,0,45,-7,0,0 +2013,5,26,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1532,-7,0,1724,-3,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,44,1,1855,45,1,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1735,10,0,1935,20,1,0 +2013,9,12,4,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,137,1,1935,145,1,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2245,-4,0,2347,8,0,0 +2013,4,19,5,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1325,15,1,1630,14,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2145,7,0,2356,-4,0,0 +2013,8,16,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,1,0,1412,-1,0,0 +2013,4,13,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,26,1,2205,17,1,0 +2013,4,20,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,-5,0,1516,-9,0,0 +2013,8,23,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,925,0,0,1045,-7,0,0 +2013,5,7,2,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1411,-18,0,1530,-38,0,0 +2013,7,4,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-5,0,1324,-2,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1005,24,1,1811,-11,0,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,-3,0,2215,30,1,0 +2013,6,16,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,27,1,925,18,1,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,-3,0,1632,-4,0,0 +2013,10,14,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-3,0,2205,-24,0,0 +2013,5,7,2,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,-6,0,907,-21,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1725,39,1,2305,46,1,0 +2013,5,26,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-5,0,1807,-2,0,0 +2013,9,2,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,-3,0,1455,-18,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1055,7,0,1215,39,1,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1813,-1,0,1951,5,0,0 +2013,5,21,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,74,1,2145,76,1,0 +2013,5,21,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1510,60,1,1620,57,1,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,950,-6,0,1154,-21,0,0 +2013,8,28,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1110,-4,0,1255,-4,0,0 +2013,4,22,1,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1911,82,1,2136,84,1,0 +2013,9,16,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,803,-10,0,0 +2013,4,7,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,636,-3,0,844,-34,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,25,1,1520,20,1,0 +2013,7,3,3,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1114,-11,0,1256,-1,0,0 +2013,9,8,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2105,8,0,2230,-1,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1455,6,0,1555,-2,0,0 +2013,7,29,1,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1535,-3,0,1920,-3,0,0 +2013,7,9,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,28,1,2140,36,1,0 +2013,9,26,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-8,0,701,-12,0,0 +2013,7,6,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,3,0,1550,-1,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,910,0,0,1010,-9,0,0 +2013,7,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1800,93,1,2015,106,1,0 +2013,7,27,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1305,8,0,1555,7,0,0 +2013,8,10,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-5,0,920,-13,0,0 +2013,7,28,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,-3,0,1335,60,1,0 +2013,10,9,3,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1410,-6,0,1611,-12,0,0 +2013,8,26,1,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,-7,0,1819,-15,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,3,0,1620,-6,0,0 +2013,9,9,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,50,-9,0,545,-13,0,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1725,-3,0,2027,28,1,0 +2013,8,30,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,8,0,1611,1,0,0 +2013,6,24,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,-2,0,2305,-10,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,831,-1,0,1121,1,0,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1825,-2,0,2039,-34,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1040,-3,0,1410,-2,0,0 +2013,4,19,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,-5,0,1335,-1,0,0 +2013,6,9,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,36,1,2016,43,1,0 +2013,6,4,2,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,636,-4,0,850,-26,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2155,17,1,2300,10,0,0 +2013,7,13,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1820,222,1,1935,213,1,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,2,0,1222,-5,0,0 +2013,7,7,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,825,0,0,1230,-9,0,0 +2013,5,24,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2145,10,0,2200,-4,0,0 +2013,10,16,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,935,0,,942,0,1,1 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1200,28,1,1315,18,1,0 +2013,8,31,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1658,-4,0,2210,-6,0,0 +2013,9,28,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-1,0,2324,-1,0,0 +2013,6,3,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1415,-8,0,1525,-19,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-3,0,919,-15,0,0 +2013,9,15,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-5,0,1240,6,0,0 +2013,4,14,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,0,0,2100,7,0,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,725,2,0,1116,5,0,0 +2013,8,28,3,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1134,14,0,1455,0,1,1 +2013,5,31,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-4,0,1031,-6,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1325,19,1,1636,-1,0,0 +2013,5,21,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,920,9,0,1230,8,0,0 +2013,10,17,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-8,0,1922,0,0,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1115,21,1,1712,19,1,0 +2013,8,12,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-18,0,1125,-13,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,12,0,1745,-6,0,0 +2013,4,21,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1315,6,0,2122,-6,0,0 +2013,7,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,846,2,0,939,-19,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,5,0,2210,2,0,0 +2013,9,28,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1615,27,1,1805,20,1,0 +2013,9,1,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,-7,0,1158,-14,0,0 +2013,8,18,7,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,618,0,0,1220,-3,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,43,1,1600,29,1,0 +2013,5,18,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-5,0,1215,-17,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2331,-7,0,756,-27,0,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,927,-1,0,1203,-16,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,4,0,1710,-5,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,9,0,2156,-4,0,0 +2013,6,14,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,,800,0,1,1 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1830,-4,0,2220,-14,0,0 +2013,6,25,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2130,108,1,2250,94,1,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1050,6,0,1205,-1,0,0 +2013,8,28,3,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,0,1340,-11,0,0 +2013,10,17,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1925,-12,0,2043,-29,0,0 +2013,9,3,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,959,-5,0,1237,-14,0,0 +2013,7,23,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,0,0,1016,-8,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1250,6,0,1513,0,0,0 +2013,9,23,1,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-8,0,1555,-19,0,0 +2013,6,7,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,6,0,1940,0,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,929,-5,0,1109,-9,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,0,0,1855,-8,0,0 +2013,6,7,5,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1410,20,1,1750,28,1,0 +2013,5,6,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,6,0,1642,11,0,0 +2013,7,14,7,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,2020,2,0,2110,-13,0,0 +2013,8,8,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,0,0,623,-5,0,0 +2013,10,15,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,915,21,1,1054,19,1,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,829,21,1,1003,19,1,0 +2013,4,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,-6,0,1307,-11,0,0 +2013,4,3,3,WN,14307,Theodore Francis Green State,Providence,RI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1030,-1,0,1335,0,0,0 +2013,4,3,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2100,-6,0,2225,-7,0,0 +2013,9,4,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1126,-11,0,0 +2013,4,11,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,-8,0,1155,1,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1217,-1,0,1312,-10,0,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1133,-1,0,1254,-21,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1959,-1,0,2129,-17,0,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1701,-9,0,1747,-12,0,0 +2013,9,20,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1449,0,,1825,0,1,1 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1944,-6,0,2343,-35,0,0 +2013,9,29,7,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1019,-9,0,1230,-16,0,0 +2013,5,16,4,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1732,-5,0,1954,-3,0,0 +2013,5,11,6,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1720,-4,0,2243,6,0,0 +2013,9,12,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,635,-7,0,925,-27,0,0 +2013,9,24,2,EV,12953,LaGuardia,New York,NY,13871,Eppley Airfield,Omaha,NE,1730,-10,0,1950,-38,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1100,-2,0,1450,-6,0,0 +2013,5,2,4,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1355,-6,0,1535,19,1,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2100,16,1,2300,10,0,0 +2013,8,21,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1150,-11,0,1336,-14,0,0 +2013,8,20,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,0,0,1425,0,0,0 +2013,6,1,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1514,-8,0,1619,-4,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,23,1,940,20,1,0 +2013,4,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2000,113,1,2120,93,1,0 +2013,10,29,2,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,16,1,1820,0,0,0 +2013,4,6,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1950,9,0,2132,1,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,5,0,1935,1,0,0 +2013,6,6,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,1105,3,0,0 +2013,9,15,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,-4,0,1852,3,0,0 +2013,8,12,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-6,0,1430,2,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2210,34,1,2330,28,1,0 +2013,6,28,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1356,8,0,1436,45,1,0 +2013,8,13,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,1,0,1420,-3,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2201,27,1,2344,20,1,0 +2013,6,10,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,-6,0,1309,-14,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2026,1,0,2158,4,0,0 +2013,8,28,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,8,0,1915,-12,0,0 +2013,10,5,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1629,-5,0,1915,-6,0,0 +2013,4,19,5,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1031,2,0,1340,1,0,0 +2013,8,20,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,720,-7,0,820,-22,0,0 +2013,4,1,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1030,-3,0,1850,-22,0,0 +2013,10,28,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1355,-4,0,1507,-4,0,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1002,2,0,1308,-1,0,0 +2013,8,4,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,-3,0,2155,-19,0,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,121,1,2251,103,1,0 +2013,6,30,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1935,-2,0,1950,-6,0,0 +2013,7,17,3,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-4,0,1805,-7,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1335,13,0,1640,6,0,0 +2013,7,25,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-5,0,1114,-5,0,0 +2013,5,16,4,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1845,0,0,1944,0,0,0 +2013,7,29,1,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,1,0,745,-8,0,0 +2013,6,12,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,125,-7,0,758,-8,0,0 +2013,8,20,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1415,1,0,1510,-18,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,919,-3,0,1058,-17,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,1,0,2215,-11,0,0 +2013,8,30,5,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1430,2,0,1611,1,0,0 +2013,4,12,5,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1815,13,0,2341,3,0,0 +2013,8,20,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,655,5,0,825,5,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,7,0,2215,13,0,0 +2013,7,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,940,16,1,1032,-11,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1022,-5,0,1459,-23,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,17,1,1932,17,1,0 +2013,6,29,6,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,23,1,1950,20,1,0 +2013,7,19,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,932,-2,0,1031,-10,0,0 +2013,9,19,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,349,1,1555,346,1,0 +2013,7,5,5,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1250,-1,0,1423,-9,0,0 +2013,9,4,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,3,0,1544,11,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,909,-4,0,1032,-20,0,0 +2013,8,25,7,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1402,-7,0,1520,-31,0,0 +2013,4,23,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1238,-3,0,1806,-15,0,0 +2013,7,15,1,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1310,-8,0,1441,-18,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1614,-5,0,1825,0,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1915,4,0,2037,-1,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,-3,0,1558,-13,0,0 +2013,7,7,7,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1721,0,,1925,0,1,1 +2013,5,27,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,845,-2,0,1210,-7,0,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,-2,0,2135,7,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1127,0,0,1416,-3,0,0 +2013,8,9,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1731,-4,0,1821,-13,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1645,26,1,2000,25,1,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,11,0,1305,2,0,0 +2013,10,17,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1345,3,0,1455,6,0,0 +2013,10,5,6,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,-11,0,1920,-16,0,0 +2013,10,17,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1335,-7,0,1750,-4,0,0 +2013,4,3,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2115,-3,0,2225,-13,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1015,-3,0,1356,-9,0,0 +2013,7,11,4,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,2029,-3,0,2115,-9,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1355,0,0,1615,-14,0,0 +2013,5,8,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1245,-5,0,1410,-2,0,0 +2013,9,9,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1238,-3,0,1429,-16,0,0 +2013,10,3,4,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,-3,0,1933,2,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1910,87,1,2054,54,1,0 +2013,9,21,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2039,-10,0,2129,-21,0,0 +2013,10,30,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,7,0,1540,10,0,0 +2013,4,28,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1045,-4,0,1654,-31,0,0 +2013,4,22,1,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1700,0,,1830,0,1,1 +2013,9,3,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,12,0,1930,9,0,0 +2013,6,18,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,-1,0,1550,-18,0,0 +2013,8,10,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,16,1,1540,15,1,0 +2013,6,24,1,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1113,7,0,1346,1,0,0 +2013,10,21,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1249,-1,0,1508,-11,0,0 +2013,7,28,7,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-5,0,1016,-22,0,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1030,-8,0,1340,-21,0,0 +2013,6,15,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2150,-5,0,2250,2,0,0 +2013,10,30,3,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-8,0,2124,-48,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,615,0,0,845,-29,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1803,8,0,1944,-1,0,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1855,2,0,2020,-9,0,0 +2013,6,6,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1331,-7,0,1446,-15,0,0 +2013,4,18,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1216,0,,1230,0,1,1 +2013,4,12,5,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1025,-6,0,1320,-14,0,0 +2013,9,11,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1210,-8,0,1612,-6,0,0 +2013,5,7,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1235,-5,0,1325,-18,0,0 +2013,7,8,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,15,1,1359,19,1,0 +2013,8,31,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1100,4,0,1220,-2,0,0 +2013,9,11,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-6,0,1002,-16,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1550,-1,0,1645,-15,0,0 +2013,5,10,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2035,-7,0,2045,-14,0,0 +2013,5,1,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,-6,0,1435,-5,0,0 +2013,10,30,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1031,-5,0,1305,2,0,0 +2013,8,30,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-6,0,849,-22,0,0 +2013,5,7,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1010,33,1,1125,34,1,0 +2013,10,3,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2236,15,1,2359,14,0,0 +2013,7,21,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1320,-5,0,1325,-12,0,0 +2013,7,8,1,OO,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1659,-10,0,1827,-3,0,0 +2013,5,20,1,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1705,42,1,1925,36,1,0 +2013,4,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1130,-5,0,1223,-8,0,0 +2013,5,24,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-1,0,900,-17,0,0 +2013,10,17,4,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2140,-15,0,2346,-17,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,2,0,1940,1,0,0 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,30,1,9,28,1,0 +2013,9,18,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1520,-26,0,0 +2013,7,31,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1814,-3,0,2105,-6,0,0 +2013,4,25,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,0,0,940,-5,0,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1357,35,1,1803,40,1,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1250,13,0,1702,-3,0,0 +2013,5,1,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1515,60,1,1530,49,1,0 +2013,7,16,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,-4,0,1125,-19,0,0 +2013,8,21,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,708,-6,0,829,11,0,0 +2013,6,6,4,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-5,0,2047,-16,0,0 +2013,7,25,4,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,915,-3,0,1115,-14,0,0 +2013,10,14,1,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,655,-7,0,920,2,0,0 +2013,8,7,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1730,33,1,1940,25,1,0 +2013,4,8,1,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,9,0,1632,-9,0,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,630,-3,0,1506,-23,0,0 +2013,9,12,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,108,1,1650,146,1,0 +2013,7,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,815,-3,0,935,0,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,723,0,0,1159,-5,0,0 +2013,5,21,2,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1345,20,1,1457,30,1,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2302,-4,0,48,-8,0,0 +2013,4,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,55,-5,0,626,17,1,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-3,0,2140,-2,0,0 +2013,7,6,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,0,0,1135,13,0,0 +2013,5,27,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1243,-10,0,1430,-16,0,0 +2013,5,4,6,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,730,1,0,1245,-1,0,0 +2013,10,4,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,6,0,1705,7,0,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1635,15,1,1910,13,0,0 +2013,6,13,4,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1644,38,1,1829,48,1,0 +2013,10,7,1,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,750,-2,0,1345,-17,0,0 +2013,9,30,1,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1832,4,0,2156,-6,0,0 +2013,9,22,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1110,-4,0,1430,-24,0,0 +2013,6,10,1,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,35,1,1300,24,1,0 +2013,10,11,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1052,161,1,1440,172,1,0 +2013,4,30,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1739,-2,0,2005,-6,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1450,1,0,1635,-10,0,0 +2013,6,16,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,943,57,1,1119,44,1,0 +2013,4,16,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1222,-4,0,1334,18,1,0 +2013,6,19,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-3,0,1036,1,0,0 +2013,8,8,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-7,0,2010,-10,0,0 +2013,10,30,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1505,-4,0,1625,-6,0,0 +2013,7,18,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-7,0,749,-15,0,0 +2013,8,3,6,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-5,0,2046,-27,0,0 +2013,7,6,6,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-8,0,2150,-14,0,0 +2013,5,24,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1935,5,0,2120,14,0,0 +2013,5,28,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1115,-2,0,1231,-4,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1131,-6,0,1424,-19,0,0 +2013,7,9,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1803,21,1,2109,11,0,0 +2013,9,17,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,930,3,0,1111,-2,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,-1,0,915,-5,0,0 +2013,7,9,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1059,52,1,1240,93,1,0 +2013,6,13,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,10,0,2131,-22,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1245,13,0,1500,3,0,0 +2013,7,17,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,5,0,2159,-3,0,0 +2013,4,12,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,162,1,1825,161,1,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,27,1,2146,10,0,0 +2013,4,24,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,4,0,2140,7,0,0 +2013,10,28,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,41,1,1812,41,1,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,7,0,1845,-6,0,0 +2013,6,21,5,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1727,156,1,1840,140,1,0 +2013,7,21,7,EV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,556,24,1,917,11,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,-3,0,1445,-18,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,1,0,2117,-10,0,0 +2013,9,18,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1552,-9,0,1842,0,0,0 +2013,7,26,5,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2010,14,0,2240,12,0,0 +2013,4,19,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,820,-2,0,1049,-27,0,0 +2013,10,25,5,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1645,-5,0,1820,10,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1936,-1,0,2039,-19,0,0 +2013,4,22,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,715,-2,0,913,10,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,15,1,2345,10,0,0 +2013,6,30,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,0,0,1430,-12,0,0 +2013,7,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,20,1,1940,9,0,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,955,8,0,1545,16,1,0 +2013,7,7,7,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,2030,11,0,2246,6,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,24,1,1225,16,1,0 +2013,7,16,2,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,26,1,1848,22,1,0 +2013,9,6,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1105,-3,0,1405,-4,0,0 +2013,10,27,7,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-4,0,525,-4,0,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1940,20,1,2125,16,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1005,11,0,1545,3,0,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1015,-3,0,1356,-15,0,0 +2013,6,23,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1335,64,1,1945,59,1,0 +2013,7,9,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,3,0,1645,15,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1000,3,0,1220,-10,0,0 +2013,5,19,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1015,-7,0,1305,2,0,0 +2013,7,19,5,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1020,0,,1245,0,1,1 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1835,-3,0,2300,-11,0,0 +2013,8,1,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,26,1,2010,18,1,0 +2013,10,24,4,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-3,0,1038,9,0,0 +2013,8,22,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,610,-1,0,735,-7,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,605,-2,0,745,-12,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,-5,0,1036,-15,0,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1920,-2,0,2123,1,0,0 +2013,10,31,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1732,1,0,1750,-8,0,0 +2013,5,28,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-1,0,1943,18,1,0 +2013,10,5,6,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,755,-3,0,1226,-3,0,0 +2013,9,18,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-5,0,1411,-13,0,0 +2013,9,5,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-11,0,1521,-17,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,9,0,2115,-12,0,0 +2013,4,11,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-1,0,1306,2,0,0 +2013,6,23,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,0,0,1010,-4,0,0 +2013,8,15,4,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2042,-3,0,2158,-8,0,0 +2013,7,25,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,735,-10,0,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1110,0,0,1300,-7,0,0 +2013,4,26,5,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1640,2,0,1920,-1,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1225,35,1,1655,23,1,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,7,0,1845,-9,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1705,5,0,2230,3,0,0 +2013,4,30,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1213,-8,0,1353,2,0,0 +2013,7,24,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,-1,0,759,7,0,0 +2013,7,28,7,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1132,-4,0,1453,-12,0,0 +2013,4,2,2,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,-3,0,1614,-19,0,0 +2013,4,26,5,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1023,20,1,1124,5,0,0 +2013,6,3,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1005,-3,0,1200,-9,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1425,-1,0,1845,-11,0,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2230,-3,0,2359,-15,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,22,1,2320,6,0,0 +2013,5,15,3,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,38,1,2130,57,1,0 +2013,8,15,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1153,-2,0,1334,-9,0,0 +2013,4,5,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1340,31,1,1515,28,1,0 +2013,8,23,5,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1910,0,0,2043,1,0,0 +2013,5,14,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1340,6,0,1455,-2,0,0 +2013,9,22,7,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1117,-9,0,0 +2013,6,27,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1235,16,1,1620,4,0,0 +2013,6,12,3,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-11,0,1124,-9,0,0 +2013,10,31,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-17,0,850,2,0,0 +2013,9,3,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,-3,0,810,-3,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2020,138,1,2241,132,1,0 +2013,6,30,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1410,-4,0,1444,1,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,805,4,0,1240,-5,0,0 +2013,9,22,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,-6,0,2042,9,0,0 +2013,4,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1915,0,0,2225,-28,0,0 +2013,10,23,3,WN,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1515,24,1,1755,8,0,0 +2013,9,15,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,9,0,1445,8,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-4,0,1819,-23,0,0 +2013,4,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1202,-5,0,1412,-6,0,0 +2013,9,6,5,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1911,17,1,2215,1,0,0 +2013,6,9,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,1,0,1010,6,0,0 +2013,5,30,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,715,-6,0,1246,-9,0,0 +2013,8,29,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1600,0,0,2322,1,0,0 +2013,6,9,7,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1235,-9,0,1450,-21,0,0 +2013,8,1,4,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1915,-9,0,2010,-1,0,0 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,835,15,1,1115,1,0,0 +2013,4,16,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,-4,0,2240,-1,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1800,0,,2150,0,1,1 +2013,6,5,3,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1311,-7,0,1412,-10,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1020,3,0,1550,14,0,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2148,49,1,2359,37,1,0 +2013,4,25,4,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1659,-2,0,1959,12,0,0 +2013,6,16,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-1,0,1010,-4,0,0 +2013,7,27,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1815,7,0,1915,-9,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1245,12,0,1350,0,0,0 +2013,10,13,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,-5,0,1456,0,0,0 +2013,7,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,-4,0,1430,7,0,0 +2013,4,10,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,-6,0,1717,-10,0,0 +2013,9,26,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-6,0,1609,-8,0,0 +2013,4,15,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,41,1,1855,31,1,0 +2013,6,17,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2035,25,1,2255,28,1,0 +2013,4,18,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1503,30,1,1702,13,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1455,-3,0,1600,-13,0,0 +2013,5,14,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,1253,0,0,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,8,0,1755,9,0,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1712,-3,0,2045,-7,0,0 +2013,9,18,3,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1825,-9,0,2001,-6,0,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,0,0,1745,1,0,0 +2013,4,8,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,705,-4,0,1520,-9,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,726,-7,0,901,-4,0,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-8,0,1313,-12,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1650,18,1,1740,12,0,0 +2013,8,12,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,17,1,1930,18,1,0 +2013,10,17,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-2,0,756,-14,0,0 +2013,7,3,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,0,0,1315,-10,0,0 +2013,6,23,7,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,-6,0,1747,-14,0,0 +2013,6,6,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,-7,0,947,-4,0,0 +2013,8,16,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1848,-2,0,2100,-20,0,0 +2013,6,15,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,64,1,1640,83,1,0 +2013,6,18,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-3,0,757,-11,0,0 +2013,9,16,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,620,6,0,730,3,0,0 +2013,7,2,2,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1416,-4,0,1523,-11,0,0 +2013,7,7,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,815,-4,0,935,-22,0,0 +2013,6,16,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,545,6,0,807,-3,0,0 +2013,6,30,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1820,1,0,1905,-6,0,0 +2013,5,23,4,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,833,20,1,1041,21,1,0 +2013,5,5,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,2140,7,0,5,-5,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1850,0,0,2327,-5,0,0 +2013,10,8,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1141,-5,0,1501,-9,0,0 +2013,6,2,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1805,-5,0,1957,-13,0,0 +2013,7,31,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,1,0,1755,-6,0,0 +2013,5,1,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-5,0,805,-31,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,-8,0,1904,-5,0,0 +2013,6,4,2,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1830,33,1,1950,28,1,0 +2013,5,24,5,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,712,9,0,931,-4,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,905,10,0,1005,9,0,0 +2013,7,24,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1040,13,0,1855,-5,0,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,20,1,1939,15,1,0 +2013,5,30,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-6,0,1153,-14,0,0 +2013,8,7,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,-2,0,1305,-4,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,228,1,2128,215,1,0 +2013,7,12,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,78,1,1820,65,1,0 +2013,5,3,5,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1755,-1,0,2325,5,0,0 +2013,7,10,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,14,0,1825,2,0,0 +2013,6,18,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-8,0,1418,-22,0,0 +2013,9,14,6,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,-2,0,1625,-10,0,0 +2013,8,5,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,21,1,1100,18,1,0 +2013,8,11,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1145,0,0,1155,-4,0,0 +2013,7,11,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,55,1,2100,51,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,923,-4,0,1152,-15,0,0 +2013,7,19,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,-7,0,735,-14,0,0 +2013,7,17,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1419,-4,0,1659,-23,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,840,9,0,1020,0,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1555,-4,0,1848,47,1,0 +2013,8,2,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,8,0,1600,-3,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-3,0,1036,-1,0,0 +2013,6,27,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1340,24,1,1456,13,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1120,-2,0,1443,-11,0,0 +2013,7,28,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,4,0,1720,-3,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1853,-2,0,2029,-17,0,0 +2013,5,5,7,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,-5,0,1040,-27,0,0 +2013,10,2,3,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1400,16,1,1700,-1,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,950,-2,0,1121,0,0,0 +2013,8,13,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,1,0,1647,-18,0,0 +2013,6,28,5,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,42,1,1245,46,1,0 +2013,6,12,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,-6,0,1310,-12,0,0 +2013,8,2,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1355,-4,0,1500,3,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,4,0,1500,-2,0,0 +2013,10,20,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,1,0,1218,-1,0,0 +2013,9,7,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-3,0,930,-3,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1955,161,1,2105,185,1,0 +2013,9,6,5,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-6,0,922,-13,0,0 +2013,6,12,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1136,-5,0,1413,-31,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1334,2,0,1629,-6,0,0 +2013,4,16,2,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1300,-5,0,1416,-20,0,0 +2013,4,18,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1455,-13,0,1724,-21,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1650,0,0,2105,7,0,0 +2013,7,25,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2333,-13,0,501,-17,0,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2045,2,0,2330,11,0,0 +2013,6,15,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-4,0,2132,-13,0,0 +2013,4,23,2,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1820,2,0,2045,1,0,0 +2013,10,9,3,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,9,0,1015,0,0,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2201,45,1,2342,39,1,0 +2013,4,23,2,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1830,26,1,2343,15,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1610,-1,0,1731,-9,0,0 +2013,8,19,1,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1642,-5,0,2054,-24,0,0 +2013,6,18,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-4,0,1018,-15,0,0 +2013,8,1,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,103,1,2030,90,1,0 +2013,4,22,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-9,0,650,-4,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2113,-3,0,30,-19,0,0 +2013,4,25,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1750,26,1,1900,21,1,0 +2013,4,15,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,625,-2,0,748,19,1,0 +2013,5,20,1,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-8,0,2026,-12,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2120,120,1,17,124,1,0 +2013,5,31,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,744,3,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1209,1,0,1346,-10,0,0 +2013,6,30,7,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,1306,-1,0,0 +2013,4,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1135,76,1,1324,68,1,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,18,1,1850,-9,0,0 +2013,6,5,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1435,67,1,1625,71,1,0 +2013,10,26,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1125,9,0,1230,19,1,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,919,-1,0,1325,-12,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,-6,0,1305,-26,0,0 +2013,5,21,2,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1955,26,1,2125,57,1,0 +2013,5,13,1,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,850,0,0,1120,-19,0,0 +2013,8,4,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,-6,0,1643,-11,0,0 +2013,8,25,7,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2359,-10,0,556,3,0,0 +2013,9,3,2,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-8,0,1119,-14,0,0 +2013,9,30,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-1,0,1933,-18,0,0 +2013,10,10,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-5,0,2125,-9,0,0 +2013,5,14,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-6,0,1330,-7,0,0 +2013,9,6,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1109,-8,0,1342,-34,0,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1630,46,1,1815,32,1,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2135,123,1,10,125,1,0 +2013,10,31,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,-2,0,1329,-3,0,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,75,1,1935,79,1,0 +2013,7,15,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-9,0,1746,-13,0,0 +2013,10,3,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2203,-7,0,2315,-16,0,0 +2013,5,8,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,-1,0,1225,-8,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1645,-1,0,1750,7,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1735,3,0,2110,1,0,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1200,9,0,1325,10,0,0 +2013,8,19,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1030,0,0,1245,-6,0,0 +2013,4,25,4,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,-2,0,1825,-7,0,0 +2013,4,11,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,810,-1,0,1058,-3,0,0 +2013,10,22,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1755,-3,0,2012,-4,0,0 +2013,6,7,5,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,-11,0,1912,-28,0,0 +2013,5,25,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,943,-10,0,0 +2013,4,9,2,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-4,0,2015,-12,0,0 +2013,7,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1035,-6,0,1130,-18,0,0 +2013,6,13,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-1,0,1230,-7,0,0 +2013,9,28,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,-9,0,2103,-5,0,0 +2013,8,6,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,7,0,1023,6,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,832,-4,0,910,-15,0,0 +2013,4,28,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-10,0,1304,-6,0,0 +2013,4,24,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,156,1,1226,151,1,0 +2013,7,16,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1530,18,1,1650,-2,0,0 +2013,7,5,5,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1527,0,0,1742,-6,0,0 +2013,10,14,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-7,0,951,-6,0,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,945,5,0,1300,-5,0,0 +2013,4,19,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,759,5,0,1039,6,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,68,1,853,62,1,0 +2013,9,28,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1105,63,1,1335,66,1,0 +2013,7,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1605,-2,0,1710,-3,0,0 +2013,7,30,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-8,0,1013,0,0,0 +2013,9,27,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1440,-1,0,1739,-7,0,0 +2013,9,18,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,-9,0,729,-27,0,0 +2013,5,11,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-4,0,1430,12,0,0 +2013,10,23,3,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-1,0,1423,-2,0,0 +2013,4,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-3,0,1000,-25,0,0 +2013,9,30,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1801,-9,0,2359,-30,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1840,10,0,2355,-3,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1230,29,1,1410,14,0,0 +2013,4,11,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,31,1,2104,53,1,0 +2013,5,3,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,754,-7,0,830,-6,0,0 +2013,5,7,2,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-7,0,1806,-14,0,0 +2013,9,13,5,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1529,17,1,1742,2,0,0 +2013,6,20,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,2,0,1310,-5,0,0 +2013,8,12,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,845,-6,0,1037,-15,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,10,0,1259,-5,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1205,-7,0,1354,-22,0,0 +2013,9,2,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,-6,0,2109,-6,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2255,1,0,2300,-3,0,0 +2013,4,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1100,-1,0,1430,-12,0,0 +2013,6,19,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,0,0,2100,0,0,0 +2013,4,14,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,48,1,1932,34,1,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1050,0,0,1237,-3,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1642,16,1,1833,107,1,0 +2013,7,2,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1415,-1,0,2030,1,0,0 +2013,5,24,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,547,-2,0,631,-8,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1705,4,0,1825,0,0,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,13,0,1210,7,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,21,1,1725,6,0,0 +2013,7,26,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1722,14,0,1835,18,1,0 +2013,7,12,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2125,-7,0,2250,-14,0,0 +2013,4,14,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1215,32,1,1345,25,1,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,3,0,1750,-23,0,0 +2013,10,18,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,909,-6,0,1203,-3,0,0 +2013,5,22,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,821,-8,0,933,-7,0,0 +2013,7,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1013,4,0,1201,24,1,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1129,-3,0,1249,-21,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1320,3,0,1425,-8,0,0 +2013,4,20,6,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,904,90,1,1049,76,1,0 +2013,8,13,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1945,112,1,2006,93,1,0 +2013,10,31,4,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,622,-5,0,1039,-27,0,0 +2013,9,24,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1050,-1,0,1250,1,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1840,2,0,2000,-4,0,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,645,-7,0,915,-13,0,0 +2013,10,16,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,846,-2,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1855,-7,0,2131,-29,0,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1940,-5,0,2210,-6,0,0 +2013,8,24,6,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,802,-2,0,940,-15,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,2,0,1305,0,0,0 +2013,7,10,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,615,-2,0,645,-9,0,0 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,0,0,1545,-10,0,0 +2013,10,14,1,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1030,-1,0,1144,7,0,0 +2013,4,16,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1750,8,0,2056,44,1,0 +2013,10,27,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1905,0,,2022,0,1,1 +2013,7,10,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,5,0,758,10,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,-2,0,1625,-7,0,0 +2013,4,29,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1730,8,0,2017,-33,0,0 +2013,4,18,4,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1940,35,1,2110,18,1,0 +2013,8,12,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,-1,0,1546,6,0,0 +2013,7,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1735,-3,0,1815,-3,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,85,1,1715,68,1,0 +2013,8,31,6,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,930,-7,0,0 +2013,8,22,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1843,-4,0,2031,-4,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-1,0,1235,-6,0,0 +2013,10,8,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1235,-5,0,1345,-8,0,0 +2013,8,10,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-6,0,643,-1,0,0 +2013,8,20,2,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,1010,16,1,1718,6,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2030,15,1,2240,2,0,0 +2013,6,25,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1845,-7,0,2110,7,0,0 +2013,8,8,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-2,0,2135,-4,0,0 +2013,10,13,7,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,3,0,1855,-19,0,0 +2013,10,22,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1142,0,0,1412,-6,0,0 +2013,6,21,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,9,0,2112,55,1,0 +2013,8,16,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,14,0,1514,8,0,0 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,5,0,835,-9,0,0 +2013,7,2,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,58,1,1945,58,1,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1645,8,0,1750,2,0,0 +2013,10,31,4,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1600,21,1,1815,27,1,0 +2013,6,14,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1030,-2,0,1035,8,0,0 +2013,9,16,1,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,545,-7,0,810,-2,0,0 +2013,10,14,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1245,13,0,1355,1,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,-3,0,1530,-4,0,0 +2013,4,25,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,600,-1,0,725,-5,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,8,0,920,-2,0,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1345,9,0,1425,7,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2021,-6,0,2217,-16,0,0 +2013,10,8,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-10,0,1002,-21,0,0 +2013,4,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1355,64,1,1759,38,1,0 +2013,5,17,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,655,-9,0,920,-18,0,0 +2013,4,9,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1448,-1,0,1527,-1,0,0 +2013,10,15,2,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-4,0,1046,-2,0,0 +2013,6,22,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,55,2,0,621,-5,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,2,0,1636,20,1,0 +2013,7,5,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,-2,0,2028,3,0,0 +2013,8,29,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-1,0,1415,1,0,0 +2013,9,24,2,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1226,-5,0,1524,-9,0,0 +2013,7,5,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,3,0,1437,-3,0,0 +2013,8,24,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1729,-2,0,2020,-21,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,-5,0,1835,-14,0,0 +2013,10,18,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,19,1,2140,7,0,0 +2013,7,29,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1626,-14,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,106,1,2155,109,1,0 +2013,4,28,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,19,1,1452,54,1,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2015,29,1,2130,33,1,0 +2013,5,31,5,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1735,-3,0,2011,-22,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1530,-1,0,1740,43,1,0 +2013,10,12,6,WN,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-3,0,1340,-5,0,0 +2013,7,17,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,119,1,2050,102,1,0 +2013,6,18,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2025,73,1,2152,79,1,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1152,-3,0,1420,-17,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,9,0,1510,15,1,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2109,10,0,2310,-15,0,0 +2013,7,13,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1100,5,0,1220,21,1,0 +2013,10,17,4,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,-5,0,2245,-12,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,550,6,0,905,-5,0,0 +2013,9,2,1,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,957,5,0,1055,-4,0,0 +2013,6,19,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,830,-1,0,940,-2,0,0 +2013,4,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1200,-2,0,1320,3,0,0 +2013,5,20,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1845,-6,0,2300,-20,0,0 +2013,6,21,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-4,0,1405,14,0,0 +2013,10,22,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1129,-6,0,1404,-16,0,0 +2013,9,24,2,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-4,0,1445,-1,0,0 +2013,7,31,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,15,1,930,11,0,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1125,39,1,1425,34,1,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1205,-4,0,1451,-19,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-2,0,1415,-7,0,0 +2013,4,7,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-8,0,1834,-5,0,0 +2013,10,16,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,11,0,1155,10,0,0 +2013,4,24,3,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1451,-7,0,1700,6,0,0 +2013,9,17,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-2,0,835,-17,0,0 +2013,4,29,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,842,-2,0,1651,7,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1420,-3,0,1653,-6,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1705,-2,0,1958,-5,0,0 +2013,8,12,1,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,1340,-15,0,0 +2013,4,17,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,844,-3,0,1030,-14,0,0 +2013,7,12,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1755,19,1,1915,2,0,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1205,0,0,1347,-16,0,0 +2013,4,22,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-9,0,2200,-5,0,0 +2013,7,7,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,-2,0,1555,-1,0,0 +2013,5,12,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1811,2,0,2000,7,0,0 +2013,9,9,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,6,0,810,-5,0,0 +2013,10,1,2,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1025,-5,0,1545,-16,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,46,1,2130,56,1,0 +2013,8,25,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,735,-6,0,1203,-11,0,0 +2013,10,6,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,1,0,928,10,0,0 +2013,5,2,4,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-1,0,1515,1,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,0,0,1205,1,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,2,0,1335,-5,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1642,-1,0,1744,-13,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2032,-3,0,2231,-20,0,0 +2013,5,1,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2005,-1,0,2147,-6,0,0 +2013,8,9,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1005,4,0,1258,6,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-4,0,1440,-11,0,0 +2013,8,23,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-8,0,1440,-3,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1925,18,1,2015,7,0,0 +2013,10,8,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,-6,0,2249,-13,0,0 +2013,7,11,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-4,0,1245,-15,0,0 +2013,10,3,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,30,1,1950,24,1,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,1,0,1535,-5,0,0 +2013,8,5,1,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1931,-5,0,2103,3,0,0 +2013,7,17,3,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-8,0,555,-11,0,0 +2013,4,29,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-2,0,1920,-14,0,0 +2013,7,9,2,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1725,9,0,2235,0,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,0,0,1315,-19,0,0 +2013,5,7,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-8,0,1200,-22,0,0 +2013,7,20,6,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,600,-1,0,711,1,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1927,40,1,2111,20,1,0 +2013,10,23,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,-1,0,2328,-11,0,0 +2013,10,4,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1432,-3,0,1820,0,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,830,-3,0,1049,-7,0,0 +2013,6,9,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,614,-2,0,1015,-17,0,0 +2013,7,13,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,813,11,0,930,4,0,0 +2013,4,1,1,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1300,-2,0,1542,-3,0,0 +2013,7,18,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1040,6,0,1245,9,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,956,-5,0,1049,-7,0,0 +2013,5,21,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1755,27,1,2054,22,1,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,1,0,1252,-7,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1045,-6,0,1145,-11,0,0 +2013,8,30,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1349,-7,0,1517,-10,0,0 +2013,8,7,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-5,0,1239,-8,0,0 +2013,8,22,4,YV,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-6,0,1901,-4,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1345,48,1,1500,42,1,0 +2013,7,26,5,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1100,1,0,1415,-4,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1740,-4,0,1931,-10,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1930,31,1,35,23,1,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,851,1,0,1033,-21,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-3,0,2303,28,1,0 +2013,4,14,7,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1510,-15,0,1809,-10,0,0 +2013,5,6,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1610,-1,0,1740,-9,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,12,0,710,18,1,0 +2013,6,23,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2127,170,1,27,141,1,0 +2013,9,2,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1156,10,0,1805,6,0,0 +2013,4,21,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2015,1,0,2125,-6,0,0 +2013,4,24,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1329,0,0,1504,0,0,0 +2013,9,17,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,739,-10,0,1009,-10,0,0 +2013,9,20,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1045,8,0,1215,2,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,839,-2,0,1026,-4,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,58,1,2305,32,1,0 +2013,7,31,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,9,0,1607,2,0,0 +2013,6,10,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,7,0,814,11,0,0 +2013,9,22,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1120,-1,0,1225,3,0,0 +2013,4,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-9,0,806,-17,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1656,25,1,1942,-3,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,63,1,1052,54,1,0 +2013,9,19,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,1,0,900,-5,0,0 +2013,8,28,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,709,-8,0,847,-16,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,949,4,0,1112,4,0,0 +2013,9,5,4,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1041,2,0,1255,-7,0,0 +2013,10,19,6,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,620,-4,0,841,6,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,915,3,0,1145,5,0,0 +2013,9,11,3,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,757,-2,0,922,-6,0,0 +2013,10,25,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-7,0,840,-12,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,-5,0,1606,-9,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1100,-2,0,1830,-22,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,1325,-7,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,800,-3,0,1240,-22,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1305,-5,0,1455,-23,0,0 +2013,9,22,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1600,0,0,1825,-6,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,5,0,2236,0,0,0 +2013,8,7,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1709,3,0,1855,-13,0,0 +2013,8,23,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1655,0,0,1735,-5,0,0 +2013,8,12,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1510,-2,0,1735,-10,0,0 +2013,5,8,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1640,-1,0,1805,-6,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,839,-3,0,1021,-3,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1856,-2,0,2143,-1,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2059,-2,0,2250,-15,0,0 +2013,4,5,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-1,0,846,-3,0,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,725,6,0,855,-5,0,0 +2013,8,6,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,15,1,1811,1,0,0 +2013,5,17,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,813,-3,0,1047,-29,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2045,5,0,2300,6,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1310,11,0,1430,11,0,0 +2013,9,21,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1235,37,1,1447,31,1,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-3,0,2110,4,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1155,30,1,1330,43,1,0 +2013,8,27,2,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1920,-1,0,2248,-58,0,0 +2013,6,23,7,OO,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1219,11,0,1352,11,0,0 +2013,6,23,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1250,-2,0,1520,4,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,-2,0,2215,-3,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-5,0,1149,7,0,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,915,0,0,1015,-10,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,,2255,0,1,1 +2013,7,22,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-8,0,1115,-11,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1035,1,0,1600,2,0,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,5,0,1140,12,0,0 +2013,4,30,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,13,0,1650,-4,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,19,1,1200,3,0,0 +2013,9,9,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,1,0,1106,23,1,0 +2013,5,29,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1525,-10,0,1715,-26,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,849,-2,0,1623,16,1,0 +2013,9,8,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,950,0,0,1120,-7,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1155,0,0,1300,-4,0,0 +2013,6,28,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1318,-1,0,1425,3,0,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1938,-1,0,2132,6,0,0 +2013,9,29,7,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1334,-10,0,1650,-21,0,0 +2013,5,20,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,-8,0,2225,-18,0,0 +2013,9,24,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1746,-4,0,1932,-15,0,0 +2013,9,3,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-7,0,1917,-12,0,0 +2013,9,19,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1048,4,0,1143,36,1,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1955,11,0,2130,4,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,10,0,2020,0,0,0 +2013,8,13,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-5,0,2056,-4,0,0 +2013,4,11,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,643,0,,807,0,1,1 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1250,-1,0,1615,-19,0,0 +2013,8,12,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,645,-2,0,740,-14,0,0 +2013,8,1,4,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1234,37,1,2103,21,1,0 +2013,7,20,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,1012,-5,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1610,-2,0,1806,5,0,0 +2013,7,3,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1556,2,0,1848,3,0,0 +2013,6,23,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1300,-3,0,1325,-3,0,0 +2013,9,9,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1355,-9,0,1437,-7,0,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,43,1,2224,31,1,0 +2013,6,16,7,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1622,0,0,1933,10,0,0 +2013,9,9,1,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1620,-3,0,1828,-27,0,0 +2013,5,14,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-5,0,1010,-3,0,0 +2013,9,16,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1845,12,0,2005,5,0,0 +2013,8,14,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1220,-12,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,-2,0,1455,-14,0,0 +2013,4,2,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1545,1,0,1700,-11,0,0 +2013,6,13,4,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,0,0,1355,0,0,0 +2013,8,31,6,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1037,-5,0,1340,-15,0,0 +2013,8,11,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,0,1235,-29,0,0 +2013,4,20,6,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-2,0,1407,-11,0,0 +2013,9,26,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1835,-7,0,2100,-8,0,0 +2013,4,12,5,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-4,0,717,-2,0,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2220,-1,0,2354,-1,0,0 +2013,8,20,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,0,0,2150,0,0,0 +2013,6,13,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-4,0,1255,6,0,0 +2013,7,26,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1053,141,1,1210,148,1,0 +2013,7,24,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1920,-1,0,2030,-19,0,0 +2013,6,4,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,600,0,0,725,2,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,1,0,1745,-7,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,3,0,1315,-4,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2005,82,1,2255,74,1,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1905,129,1,2142,119,1,0 +2013,9,14,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,745,15,1,902,2,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2130,64,1,2310,51,1,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1510,4,0,1825,-9,0,0 +2013,10,22,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-9,0,1818,-3,0,0 +2013,6,19,3,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1125,16,1,1720,-6,0,0 +2013,4,7,7,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-3,0,2051,-1,0,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,4,0,1608,4,0,0 +2013,5,21,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,800,7,0,940,35,1,0 +2013,7,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1000,36,1,1310,23,1,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1333,-1,0,1442,-24,0,0 +2013,6,21,5,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,53,1,2105,41,1,0 +2013,4,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,605,-2,0,735,-7,0,0 +2013,10,23,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,755,-7,0,1035,-13,0,0 +2013,10,3,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,-8,0,1038,-5,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,0,0,1338,-5,0,0 +2013,5,12,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1715,14,0,1819,8,0,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-5,0,905,-13,0,0 +2013,4,8,1,EV,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-6,0,2226,-20,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1650,-7,0,1800,-3,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1520,194,1,1733,178,1,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1422,44,1,1649,36,1,0 +2013,5,13,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1405,-6,0,1530,-16,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-2,0,1927,-4,0,0 +2013,8,17,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,645,2,0,1215,-4,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,1,0,1809,-13,0,0 +2013,8,4,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1930,3,0,2304,14,0,0 +2013,9,8,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1615,-8,0,1905,-4,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,955,-6,0,1119,-8,0,0 +2013,9,7,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-3,0,1335,-11,0,0 +2013,5,7,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2125,-1,0,559,18,1,0 +2013,9,14,6,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1627,-13,0,1730,-18,0,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2040,14,0,2300,7,0,0 +2013,7,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1352,8,0,1458,-6,0,0 +2013,8,9,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,227,1,2041,216,1,0 +2013,6,24,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1748,227,1,2005,219,1,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,955,-1,0,1200,-7,0,0 +2013,8,27,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,-4,0,1031,-5,0,0 +2013,5,25,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1150,15,1,1315,14,0,0 +2013,8,12,1,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,835,-3,0,1115,-13,0,0 +2013,6,20,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-6,0,2027,-10,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,-3,0,1910,-24,0,0 +2013,7,4,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-5,0,2010,-20,0,0 +2013,6,20,4,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2350,51,1,748,58,1,0 +2013,8,5,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-5,0,2040,-11,0,0 +2013,7,12,5,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1415,-4,0,1601,-11,0,0 +2013,8,13,2,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-2,0,1245,-5,0,0 +2013,6,17,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1750,-5,0,1910,-5,0,0 +2013,4,24,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1420,-9,0,1450,-38,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,634,-4,0,742,-14,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1220,-5,0,1420,-3,0,0 +2013,6,14,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1122,32,1,1251,21,1,0 +2013,9,28,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,5,0,950,-4,0,0 +2013,8,29,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,0,0,925,6,0,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,-9,0,1130,-15,0,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2022,37,1,2246,19,1,0 +2013,6,7,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1804,-4,0,2023,-12,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,730,-2,0,900,-9,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1840,21,1,2100,15,1,0 +2013,10,16,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1341,-10,0,0 +2013,6,12,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,75,1,1800,82,1,0 +2013,8,10,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-5,0,935,-25,0,0 +2013,7,22,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-1,0,1005,-10,0,0 +2013,7,29,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-2,0,1202,-24,0,0 +2013,8,14,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-5,0,1035,-8,0,0 +2013,5,9,4,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,63,1,824,59,1,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2140,13,0,2255,20,1,0 +2013,6,7,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1710,222,1,1821,232,1,0 +2013,10,28,1,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,705,-2,0,1019,-4,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-7,0,846,11,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,0,0,1612,-7,0,0 +2013,9,11,3,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,14,0,1605,36,1,0 +2013,7,11,4,9E,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,600,0,,740,0,1,1 +2013,8,4,7,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,97,1,1409,106,1,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,-2,0,2301,-15,0,0 +2013,5,9,4,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1440,4,0,1634,-5,0,0 +2013,4,1,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1015,-10,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-4,0,1255,-6,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1328,-2,0,1645,5,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1020,-4,0,1655,-9,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,28,1,950,9,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,7,0,2057,1,0,0 +2013,7,16,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,755,78,1,900,70,1,0 +2013,8,10,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,-9,0,1500,-12,0,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,14,0,2237,3,0,0 +2013,9,28,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2057,-9,0,2144,-24,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1028,-4,0,1148,-14,0,0 +2013,7,19,5,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,17,1,2010,17,1,0 +2013,6,8,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,715,-1,0,1010,-23,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,633,-6,0,925,0,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1000,-2,0,1139,-12,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,710,-2,0,928,-9,0,0 +2013,9,29,7,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-3,0,1125,-13,0,0 +2013,10,21,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,10,0,1620,-3,0,0 +2013,10,1,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1115,-1,0,1450,-29,0,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,57,1,1307,58,1,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,10,0,1600,16,1,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,0,0,1415,-8,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1837,96,1,2157,80,1,0 +2013,7,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,-2,0,1940,-6,0,0 +2013,5,19,7,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,735,0,0,945,-9,0,0 +2013,9,26,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1823,17,1,1905,10,0,0 +2013,5,1,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-1,0,1130,2,0,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1306,3,0,1633,1,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1425,-6,0,1520,-1,0,0 +2013,7,12,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1003,-9,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,19,1,2120,12,0,0 +2013,6,28,5,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,2014,0,,100,0,1,1 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2028,24,1,2204,4,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2040,106,1,2155,96,1,0 +2013,9,3,2,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-5,0,831,-1,0,0 +2013,9,7,6,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1230,-4,0,1531,-52,0,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-3,0,2005,-8,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-4,0,1200,-11,0,0 +2013,5,14,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,705,-3,0,915,6,0,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1720,34,1,2000,10,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1025,6,0,1345,4,0,0 +2013,9,16,1,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1924,-8,0,2059,-16,0,0 +2013,5,18,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1015,-1,0,1120,-3,0,0 +2013,10,30,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1420,-1,0,1631,8,0,0 +2013,10,31,4,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,0,0,1905,-5,0,0 +2013,9,29,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2140,-3,0,2259,-9,0,0 +2013,8,3,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1613,-5,0,2234,-17,0,0 +2013,9,10,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2156,108,1,34,109,1,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1725,15,1,2250,-2,0,0 +2013,6,23,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,810,-5,0,825,-16,0,0 +2013,4,1,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,837,-5,0,1015,-19,0,0 +2013,10,1,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-4,0,900,-7,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,935,0,0,1131,16,1,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1622,5,0,1909,-5,0,0 +2013,4,20,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1755,-4,0,1900,-16,0,0 +2013,10,24,4,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1119,83,1,1213,76,1,0 +2013,6,19,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1957,45,1,2010,30,1,0 +2013,10,20,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,825,4,0,920,-3,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2233,-4,0,701,-16,0,0 +2013,4,12,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1030,46,1,1210,33,1,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1859,21,1,2131,17,1,0 +2013,9,16,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,740,-5,0,1245,-11,0,0 +2013,8,1,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,830,1,0,927,-11,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,745,-7,0,900,-12,0,0 +2013,4,14,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1852,16,1,2021,10,0,0 +2013,10,30,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,26,1,2010,31,1,0 +2013,4,30,2,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-10,0,1509,-16,0,0 +2013,9,26,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,855,-12,0,1130,-8,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1238,52,1,1428,38,1,0 +2013,6,9,7,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,840,-1,0,1435,-17,0,0 +2013,7,23,2,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,102,1,1455,154,1,0 +2013,4,10,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-3,0,28,42,1,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1420,12,0,1740,-5,0,0 +2013,6,9,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,900,-12,0,1025,-22,0,0 +2013,9,19,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,735,-2,0,800,-5,0,0 +2013,5,9,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-3,0,1142,-4,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1501,18,1,1546,8,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1536,-1,0,1739,24,1,0 +2013,6,20,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,0,0,1055,-10,0,0 +2013,4,27,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,915,4,0,1110,-7,0,0 +2013,5,22,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1955,26,1,2110,52,1,0 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2135,34,1,2335,27,1,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1500,39,1,1545,31,1,0 +2013,7,28,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,1,0,1915,-4,0,0 +2013,9,5,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,950,-8,0,1050,2,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,118,1,1748,106,1,0 +2013,9,17,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1630,-3,0,1755,-1,0,0 +2013,9,22,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1420,-5,0,1540,-9,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1055,10,0,1445,4,0,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,6,0,1220,-6,0,0 +2013,9,21,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1350,-5,0,1512,-11,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2005,10,0,2229,7,0,0 +2013,6,17,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,-10,0,2049,-15,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1025,4,0,1510,-4,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-4,0,1721,-10,0,0 +2013,9,25,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,845,-5,0,941,-12,0,0 +2013,7,3,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1700,40,1,1910,35,1,0 +2013,10,11,5,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,510,0,0,930,-9,0,0 +2013,10,14,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,812,-10,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1021,38,1,1458,36,1,0 +2013,5,13,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-5,0,927,-23,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,72,1,2357,63,1,0 +2013,10,19,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1150,-7,0,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,9,0,1035,9,0,0 +2013,4,24,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-8,0,1040,-10,0,0 +2013,10,16,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1819,-7,0,0 +2013,10,23,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,600,-3,0,722,-15,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2003,281,1,2134,282,1,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,4,0,1320,3,0,0 +2013,7,17,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,54,1,1810,66,1,0 +2013,8,1,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,-5,0,1300,-10,0,0 +2013,4,9,2,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,5,0,606,1,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1345,22,1,1515,17,1,0 +2013,10,31,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1218,1,0,1420,71,1,0 +2013,7,25,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,840,-9,0,857,-8,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1910,104,1,10,90,1,0 +2013,8,13,2,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,1,0,1957,1,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1230,30,1,1410,21,1,0 +2013,6,1,6,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-10,0,1803,-9,0,0 +2013,4,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1656,-5,0,1726,-7,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1511,-3,0,1729,-7,0,0 +2013,10,11,5,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1300,2,0,1445,-10,0,0 +2013,4,14,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1546,0,0,1630,14,0,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,940,0,0,1030,-5,0,0 +2013,5,8,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1315,-2,0,1420,-14,0,0 +2013,8,9,5,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,816,5,0,1620,12,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2025,16,1,2255,12,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,29,1,35,17,1,0 +2013,8,4,7,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-5,0,1425,-19,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,133,1,2329,116,1,0 +2013,10,28,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,-6,0,1335,-6,0,0 +2013,5,15,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1730,-10,0,1949,-16,0,0 +2013,7,29,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-1,0,1530,-4,0,0 +2013,9,10,2,OO,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1343,-3,0,1415,-14,0,0 +2013,10,20,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1740,-1,0,1910,-10,0,0 +2013,9,29,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1257,-8,0,1559,22,1,0 +2013,9,30,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2115,-3,0,524,-12,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1212,-6,0,1413,-7,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2035,9,0,2247,9,0,0 +2013,7,11,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-3,0,1031,-7,0,0 +2013,10,10,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1320,0,0,1527,1,0,0 +2013,8,15,4,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1911,-9,0,2205,-16,0,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,813,2,0,955,5,0,0 +2013,9,19,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1714,-2,0,1839,-30,0,0 +2013,4,22,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1925,97,1,2105,84,1,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,745,16,1,1115,24,1,0 +2013,6,5,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-10,0,1115,-24,0,0 +2013,5,29,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,729,-10,0,843,-17,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,956,25,1,1146,12,0,0 +2013,6,19,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,3,0,819,14,0,0 +2013,4,8,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,28,1,930,8,0,0 +2013,5,25,6,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,8,0,1655,-11,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,69,1,1045,35,1,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,34,1,1032,28,1,0 +2013,10,21,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-4,0,25,-25,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1105,5,0,1245,35,1,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,5,0,1256,31,1,0 +2013,7,29,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2130,-6,0,2240,-10,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1800,5,0,35,-13,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,856,7,0,1120,2,0,0 +2013,9,30,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1250,-1,0,1410,-19,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1830,-7,0,2105,-2,0,0 +2013,7,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,45,1,1610,48,1,0 +2013,9,4,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1035,-8,0,1345,-24,0,0 +2013,7,31,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-9,0,1014,-14,0,0 +2013,6,12,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,554,-8,0,759,-23,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1010,-2,0,1720,-11,0,0 +2013,4,5,5,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,11,0,912,7,0,0 +2013,8,28,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1758,27,1,1902,25,1,0 +2013,4,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,948,9,0,1355,17,1,0 +2013,9,28,6,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1830,-4,0,2132,-45,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1815,0,0,2340,-19,0,0 +2013,9,28,6,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2020,20,1,2200,21,1,0 +2013,5,31,5,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,715,1,0,955,28,1,0 +2013,8,27,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,0,0,1538,-2,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,130,1,1555,110,1,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,805,19,1,1015,34,1,0 +2013,7,6,6,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,821,-3,0,1017,-30,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,755,-4,0,940,2,0,0 +2013,6,9,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1000,1,0,1448,9,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,-3,0,1018,-3,0,0 +2013,7,14,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-3,0,1530,-16,0,0 +2013,6,29,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-6,0,1407,-12,0,0 +2013,6,28,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,-2,0,1840,-4,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1035,-8,0,1130,-4,0,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,830,-2,0,945,9,0,0 +2013,8,23,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,20,1,2050,18,1,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1532,-2,0,1711,-14,0,0 +2013,7,2,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,-1,0,617,31,1,0 +2013,5,16,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-4,0,1331,-10,0,0 +2013,6,18,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1148,-2,0,1444,8,0,0 +2013,7,30,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-5,0,807,-16,0,0 +2013,9,28,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1200,-6,0,1308,-15,0,0 +2013,4,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1740,9,0,1900,5,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,955,4,0,1153,9,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1740,0,0,2150,-16,0,0 +2013,5,12,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1310,2,0,1356,16,1,0 +2013,8,31,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,608,-4,0,800,-11,0,0 +2013,8,29,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-2,0,950,-10,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2220,19,1,2300,25,1,0 +2013,4,4,4,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1129,9,0,1347,-13,0,0 +2013,4,29,1,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1050,4,0,1148,12,0,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1330,0,0,1545,-16,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1845,25,1,2000,11,0,0 +2013,7,30,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1315,9,0,1435,-2,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,1,0,715,3,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,62,1,2245,64,1,0 +2013,10,16,3,YV,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-14,0,1507,-18,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1720,-5,0,1850,-8,0,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-4,0,1351,-25,0,0 +2013,6,19,3,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-8,0,1007,-22,0,0 +2013,10,10,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,915,3,0,1222,7,0,0 +2013,9,7,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1045,0,0,1200,-3,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,905,5,0,1141,-7,0,0 +2013,5,23,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,740,-5,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2040,27,1,2235,21,1,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2015,-4,0,2229,11,0,0 +2013,8,6,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-9,0,1955,0,0,0 +2013,10,20,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-5,0,1917,-19,0,0 +2013,5,21,2,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,57,1,1805,53,1,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,16,1,1520,13,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,38,1,1105,32,1,0 +2013,8,16,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,922,-5,0,1041,15,1,0 +2013,5,30,4,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1525,13,0,1815,9,0,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1945,-4,0,2255,-8,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,-3,0,1802,7,0,0 +2013,5,31,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,652,-3,0,0 +2013,7,6,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1350,-6,0,1500,-14,0,0 +2013,8,15,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1250,26,1,1405,21,1,0 +2013,4,3,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1405,16,1,1657,1,0,0 +2013,9,12,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1815,16,1,2135,15,1,0 +2013,6,13,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1027,95,1,1359,86,1,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1220,-1,0,1335,-9,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,640,-2,0,1115,-2,0,0 +2013,7,3,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,846,-2,0,0 +2013,10,25,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,-9,0,2014,29,1,0 +2013,5,10,5,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1050,0,0,1525,-4,0,0 +2013,5,15,3,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2100,-6,0,2345,6,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,4,0,1126,-13,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,12,0,1755,7,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,-6,0,1200,-13,0,0 +2013,5,4,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-5,0,1225,2,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,-2,0,1841,0,0,0 +2013,4,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1755,-7,0,1910,-7,0,0 +2013,6,20,4,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,3,0,1340,-9,0,0 +2013,10,16,3,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1715,14,0,1847,9,0,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-7,0,1313,-11,0,0 +2013,10,4,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1315,1,0,1920,-4,0,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-3,0,1236,10,0,0 +2013,7,15,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,940,4,0,1110,-5,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1220,13,0,1425,0,0,0 +2013,9,6,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-10,0,1145,-31,0,0 +2013,8,16,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,0,0,1122,-17,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1955,56,1,2215,85,1,0 +2013,8,7,3,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-2,0,1521,-15,0,0 +2013,5,16,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,620,-7,0,737,-8,0,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,-3,0,1135,-24,0,0 +2013,8,31,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,850,-3,0,1055,-18,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1620,-1,0,1705,-5,0,0 +2013,9,9,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-3,0,1200,-4,0,0 +2013,5,21,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1114,-4,0,1710,-16,0,0 +2013,10,31,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,28,1,1650,27,1,0 +2013,5,16,4,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,835,2,0,1405,1,0,0 +2013,4,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,2130,1,0,35,-3,0,0 +2013,4,11,4,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1438,-10,0,1610,-26,0,0 +2013,10,8,2,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,530,0,0,801,-23,0,0 +2013,9,7,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1746,-6,0,1928,-10,0,0 +2013,5,12,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,800,-10,0,925,-13,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1005,282,1,1332,300,1,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,15,1,951,-3,0,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1620,-5,0,1947,-31,0,0 +2013,9,30,1,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,640,-3,0,755,-6,0,0 +2013,8,9,5,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-3,0,1238,-19,0,0 +2013,9,16,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,80,1,2000,95,1,0 +2013,5,13,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,55,-6,0,624,-2,0,0 +2013,5,18,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,0,0,1340,-11,0,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,-6,0,1357,-11,0,0 +2013,9,12,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-9,0,833,-8,0,0 +2013,4,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1515,-4,0,1635,-6,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1020,109,1,1210,86,1,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1754,-2,0,2051,-43,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1340,33,1,1825,64,1,0 +2013,8,6,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,4,0,1650,30,1,0 +2013,8,19,1,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2030,-8,0,2211,-25,0,0 +2013,7,15,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1120,1,0,1249,4,0,0 +2013,10,14,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1740,-3,0,2015,3,0,0 +2013,6,23,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1535,36,1,1920,62,1,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,-2,0,1208,-36,0,0 +2013,7,28,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-6,0,1320,-15,0,0 +2013,9,11,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1515,-3,0,1602,-14,0,0 +2013,10,15,2,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1450,-4,0,1615,-6,0,0 +2013,8,28,3,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-3,0,1205,-8,0,0 +2013,9,27,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1135,-6,0,1421,20,1,0 +2013,8,15,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2126,4,0,2243,-12,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1750,5,0,2310,21,1,0 +2013,5,9,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-3,0,1400,-14,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1205,-1,0,1345,7,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,955,43,1,1153,40,1,0 +2013,6,20,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1449,11,0,1610,1,0,0 +2013,4,24,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,96,1,2056,104,1,0 +2013,4,7,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1929,-11,0,2229,-16,0,0 +2013,8,1,4,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1403,21,1,1810,19,1,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2054,-3,0,2354,-23,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,1,0,1030,-4,0,0 +2013,8,22,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,13,0,2050,21,1,0 +2013,4,24,3,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,-5,0,2300,-14,0,0 +2013,7,30,2,DL,14679,San Diego International,San Diego,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-3,0,1902,-18,0,0 +2013,9,4,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1610,-2,0,1845,6,0,0 +2013,6,23,7,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1600,-1,0,1705,-6,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1055,62,1,1435,59,1,0 +2013,10,11,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1114,-5,0,0 +2013,7,31,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1035,-1,0,1235,-12,0,0 +2013,7,30,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,-7,0,625,-16,0,0 +2013,4,10,3,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,843,-2,0,1120,46,1,0 +2013,5,17,5,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1856,1,0,2051,0,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1750,13,0,2005,15,1,0 +2013,6,20,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-4,0,2033,-4,0,0 +2013,7,19,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,-4,0,1731,-3,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,835,1,0,1100,14,0,0 +2013,5,3,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1720,-1,0,1839,25,1,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,-5,0,1555,-14,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1155,2,0,1855,5,0,0 +2013,8,18,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,-5,0,1039,-14,0,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-9,0,1055,-32,0,0 +2013,9,23,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,839,-3,0,1052,-6,0,0 +2013,10,25,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,11,0,1055,29,1,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1956,18,1,2147,0,0,0 +2013,7,30,2,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-2,0,1510,-12,0,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-4,0,1349,2,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,835,3,0,1115,-4,0,0 +2013,5,31,5,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1509,7,0,1708,-4,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,28,1,2100,22,1,0 +2013,4,4,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,940,8,0,1224,6,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-5,0,1837,0,0,0 +2013,9,8,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1133,-2,0,1309,2,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1850,8,0,2130,-8,0,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,-4,0,1255,-15,0,0 +2013,4,24,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1330,-7,0,1519,-13,0,0 +2013,7,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1440,15,1,1540,13,0,0 +2013,6,28,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,-7,0,937,-6,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,910,-1,0,1029,-21,0,0 +2013,7,18,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,20,1,1825,24,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,-5,0,2051,-8,0,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-5,0,2143,-14,0,0 +2013,6,17,1,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-5,0,2139,50,1,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1357,40,1,1719,35,1,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2227,158,1,59,154,1,0 +2013,6,30,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,-8,0,1130,-12,0,0 +2013,9,13,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,11,0,2056,11,0,0 +2013,8,21,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,6,0,1720,13,0,0 +2013,7,16,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,-9,0,1445,6,0,0 +2013,5,11,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1540,-1,0,1735,76,1,0 +2013,7,17,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,22,1,1530,33,1,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,650,-9,0,736,-17,0,0 +2013,4,24,3,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,167,1,1640,176,1,0 +2013,8,22,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1500,-10,0,1540,-4,0,0 +2013,6,1,6,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1358,-9,0,1456,-20,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,650,4,0,750,1,0,0 +2013,4,21,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,910,-1,0,1235,-3,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,29,1,1914,33,1,0 +2013,6,18,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-7,0,1245,8,0,0 +2013,6,28,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1215,27,1,1352,14,0,0 +2013,5,5,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,-5,0,2125,1,0,0 +2013,6,12,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1823,89,1,2030,74,1,0 +2013,9,3,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,956,0,0,1604,7,0,0 +2013,6,27,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,957,-7,0,1040,0,0,0 +2013,10,23,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-6,0,1315,-6,0,0 +2013,9,22,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,17,1,2100,10,0,0 +2013,7,12,5,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1435,31,1,1655,30,1,0 +2013,9,25,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,636,-7,0,745,-12,0,0 +2013,4,18,4,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1655,0,,1923,0,1,1 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,744,-8,0,920,-10,0,0 +2013,5,17,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,853,-10,0,929,-4,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2155,-6,0,2305,-8,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2100,22,1,2240,44,1,0 +2013,5,24,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,2,0,1315,-5,0,0 +2013,8,21,3,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,9,0,2249,1,0,0 +2013,10,6,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-6,0,1501,-20,0,0 +2013,5,17,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1414,-5,0,1543,-8,0,0 +2013,7,13,6,EV,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,121,1,1417,109,1,0 +2013,8,3,6,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1323,-2,0,1531,2,0,0 +2013,4,5,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,625,-3,0,855,9,0,0 +2013,7,5,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,5,0,1748,13,0,0 +2013,5,13,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-4,0,923,-8,0,0 +2013,9,15,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,605,0,,718,0,1,1 +2013,5,31,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,930,-1,0,1055,-13,0,0 +2013,5,23,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-13,0,1315,-8,0,0 +2013,10,17,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1019,-12,0,1300,-21,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1124,46,1,1246,43,1,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,24,1,1606,9,0,0 +2013,10,8,2,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1825,-1,0,2340,-27,0,0 +2013,5,21,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,0,0,846,-7,0,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1800,119,1,2113,104,1,0 +2013,10,20,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1840,1,0,2129,-5,0,0 +2013,10,11,5,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-5,0,1450,-25,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-3,0,1909,-18,0,0 +2013,4,16,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,650,6,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,-3,0,1100,-14,0,0 +2013,7,10,3,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,146,1,1645,185,1,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,-4,0,2358,-7,0,0 +2013,6,1,6,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1225,9,0,1505,2,0,0 +2013,8,23,5,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2000,-5,0,2300,-21,0,0 +2013,7,30,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-7,0,1128,-19,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,-4,0,1155,-8,0,0 +2013,5,24,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,733,-3,0,914,-2,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,0,0,1910,-6,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-5,0,1130,-13,0,0 +2013,7,12,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,0,0,1409,-2,0,0 +2013,5,16,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2027,103,1,2118,103,1,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,850,0,0,1040,2,0,0 +2013,5,24,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1505,100,1,1852,113,1,0 +2013,4,6,6,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,700,1,0,930,-3,0,0 +2013,9,30,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,4,0,1120,-4,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1618,42,1,1754,34,1,0 +2013,7,2,2,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2129,-3,0,514,0,0,0 +2013,8,23,5,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,715,-3,0,825,-3,0,0 +2013,8,20,2,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1153,32,1,2023,44,1,0 +2013,6,30,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1428,-2,0,1524,-12,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2125,1,0,2245,2,0,0 +2013,9,14,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1531,-2,0,1733,-11,0,0 +2013,10,7,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1559,-2,0,1829,1,0,0 +2013,8,25,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1359,-14,0,0 +2013,5,28,2,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,900,-6,0,1125,-19,0,0 +2013,4,9,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,947,-5,0,1225,-7,0,0 +2013,4,30,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,85,1,1836,91,1,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1930,72,1,2229,61,1,0 +2013,8,2,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1110,0,0,1200,-2,0,0 +2013,5,16,4,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,0,0,1535,8,0,0 +2013,4,26,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,-3,0,825,-16,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2020,-4,0,2359,-15,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,-7,0,954,11,0,0 +2013,8,5,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-6,0,1258,-22,0,0 +2013,5,15,3,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1550,-7,0,2138,-7,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,7,0,1035,1,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,-2,0,2217,-26,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1104,10,0,1344,8,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1935,0,0,2229,10,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1545,9,0,1747,21,1,0 +2013,8,27,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,13,0,2012,24,1,0 +2013,5,16,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1022,-3,0,1105,4,0,0 +2013,8,12,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,37,1,1320,34,1,0 +2013,4,3,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1015,-3,0,1315,-12,0,0 +2013,9,29,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,-3,0,1813,-5,0,0 +2013,5,23,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,0,,1633,0,1,1 +2013,10,1,2,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1240,12,0,1430,11,0,0 +2013,6,1,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1200,56,1,1255,44,1,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1715,-5,0,1843,-25,0,0 +2013,4,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2105,-5,0,2316,-25,0,0 +2013,7,26,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1937,10,0,2039,11,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,61,1,910,62,1,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,-4,0,2000,-10,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,0,0,1424,4,0,0 +2013,6,26,3,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1023,10,0,1343,-9,0,0 +2013,5,26,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1519,-10,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,-5,0,1740,-5,0,0 +2013,5,24,5,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1242,-2,0,2036,-4,0,0 +2013,4,6,6,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2000,-2,0,2040,-14,0,0 +2013,7,19,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1910,6,0,2030,14,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1526,-3,0,1703,-24,0,0 +2013,5,18,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,-1,0,1620,-13,0,0 +2013,5,20,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,2,0,758,-16,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,-4,0,1815,-29,0,0 +2013,10,31,4,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,601,-6,0,946,-24,0,0 +2013,7,13,6,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,38,1,1824,35,1,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1420,14,0,1530,13,0,0 +2013,4,10,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,8,0,715,5,0,0 +2013,5,24,5,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1105,-2,0,1325,-4,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1535,8,0,2255,-14,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2240,-3,0,112,6,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1855,-2,0,2110,-18,0,0 +2013,8,29,4,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-2,0,1115,-26,0,0 +2013,5,28,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1420,14,0,1450,7,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1615,14,0,1815,21,1,0 +2013,8,28,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,838,-11,0,1100,21,1,0 +2013,7,2,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-6,0,1121,-8,0,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1055,-2,0,1540,4,0,0 +2013,4,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1515,0,0,1731,6,0,0 +2013,10,12,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-7,0,915,-18,0,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,625,-1,0,725,0,0,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1740,59,1,1908,81,1,0 +2013,8,8,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,37,1,1914,33,1,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-3,0,2020,-6,0,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-3,0,2107,-17,0,0 +2013,9,23,1,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,41,1,1520,31,1,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1805,-1,0,2004,-10,0,0 +2013,6,21,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1005,18,1,1145,15,1,0 +2013,7,2,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1400,-10,0,1735,-27,0,0 +2013,9,1,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,-2,0,1601,5,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1740,0,0,1822,-1,0,0 +2013,4,25,4,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,14,0,950,10,0,0 +2013,10,23,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1439,-9,0,1619,-3,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,10,0,2155,-5,0,0 +2013,8,8,4,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,710,-5,0,1002,-6,0,0 +2013,8,3,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1610,64,1,1918,63,1,0 +2013,9,10,2,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1635,-1,0,1740,2,0,0 +2013,8,28,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1105,3,0,1215,3,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,0,0,2210,-3,0,0 +2013,5,23,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,21,1,1635,8,0,0 +2013,4,17,3,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1750,-2,0,2005,-15,0,0 +2013,9,25,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,735,-4,0,853,-2,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2040,24,1,2140,35,1,0 +2013,4,29,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1010,0,0,1244,-10,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2125,5,0,2220,1,0,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,35,1,1608,37,1,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,711,0,0,1028,-3,0,0 +2013,5,31,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,7,0,936,14,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-4,0,1325,6,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2159,7,0,2351,2,0,0 +2013,7,18,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,930,6,0,1055,21,1,0 +2013,10,18,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-3,0,1205,-6,0,0 +2013,4,23,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,725,-6,0,935,-12,0,0 +2013,7,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-2,0,2205,-10,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,-2,0,1934,-7,0,0 +2013,8,23,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-9,0,1450,-15,0,0 +2013,9,25,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,610,-4,0,1208,-7,0,0 +2013,8,1,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1520,3,0,1635,-8,0,0 +2013,7,5,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,-3,0,1905,3,0,0 +2013,7,10,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,841,93,1,1004,81,1,0 +2013,9,14,6,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,805,-5,0,1100,-16,0,0 +2013,4,16,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1310,221,1,1510,210,1,0 +2013,9,26,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,16,1,1220,39,1,0 +2013,8,7,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,3,0,940,-8,0,0 +2013,9,15,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-5,0,1336,-18,0,0 +2013,4,14,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,605,-1,0,1204,-11,0,0 +2013,4,26,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,-1,0,1559,36,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,715,-4,0,853,-12,0,0 +2013,5,18,6,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,29,1,2220,20,1,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1725,-6,0,1850,-15,0,0 +2013,9,19,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,640,-6,0,928,-11,0,0 +2013,10,1,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-4,0,1220,-8,0,0 +2013,4,17,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1520,228,1,1835,211,1,0 +2013,9,22,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1530,40,1,1735,20,1,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1759,20,1,2053,14,0,0 +2013,5,25,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,545,-2,0,716,-8,0,0 +2013,8,2,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1040,0,0,1200,-1,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1150,5,0,1420,47,1,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,28,1,1535,135,1,0 +2013,8,19,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,851,33,1,1049,32,1,0 +2013,8,2,5,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1725,-3,0,1910,-8,0,0 +2013,4,15,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1524,-5,0,1739,-5,0,0 +2013,7,7,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,-8,0,1525,-8,0,0 +2013,10,15,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1815,-11,0,2058,-9,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,6,0,1634,1,0,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1340,31,1,1630,25,1,0 +2013,8,27,2,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1041,-2,0,1426,-5,0,0 +2013,4,9,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,638,-23,0,0 +2013,4,30,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,-4,0,1903,-1,0,0 +2013,6,26,3,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,715,85,1,825,75,1,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1820,0,,2025,0,1,1 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1800,31,1,1910,31,1,0 +2013,4,1,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,959,-3,0,1439,-20,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2010,119,1,2310,119,1,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,3,0,1750,-19,0,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,-4,0,1928,-10,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1905,15,1,2240,0,0,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1030,0,,1158,0,1,1 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-1,0,1411,-2,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2130,-6,0,2345,-2,0,0 +2013,4,3,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1543,15,1,1913,10,0,0 +2013,4,13,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-9,0,1855,-4,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2005,0,0,2235,-1,0,0 +2013,10,12,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1750,-6,0,2025,-10,0,0 +2013,10,29,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,-6,0,748,-22,0,0 +2013,8,12,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,55,1,2136,46,1,0 +2013,4,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-4,0,1210,-2,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2154,-3,0,2353,-18,0,0 +2013,10,11,5,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,959,185,1,1144,168,1,0 +2013,5,22,3,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-4,0,1110,-28,0,0 +2013,9,21,6,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1650,-4,0,1914,25,1,0 +2013,4,26,5,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1229,13,0,1417,6,0,0 +2013,4,3,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1534,-4,0,2005,-3,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1820,-4,0,1956,6,0,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,810,-3,0,1000,-8,0,0 +2013,8,23,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,700,-4,0,800,-8,0,0 +2013,6,15,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,10,0,2058,8,0,0 +2013,7,28,7,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1216,-1,0,1426,-4,0,0 +2013,4,13,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-5,0,1344,-9,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,935,24,1,1220,21,1,0 +2013,5,10,5,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,645,-3,0,755,-9,0,0 +2013,5,30,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,752,-5,0,841,-1,0,0 +2013,7,19,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,1341,-11,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-1,0,1627,-9,0,0 +2013,6,30,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-1,0,1056,-10,0,0 +2013,4,25,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1659,3,0,1906,8,0,0 +2013,4,28,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,855,-11,0,927,3,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,956,174,1,1054,165,1,0 +2013,8,12,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,847,2,0,1158,-3,0,0 +2013,6,14,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-3,0,1217,2,0,0 +2013,8,15,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,4,0,1455,-8,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1756,-1,0,2030,15,1,0 +2013,4,3,3,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,0,0,845,-5,0,0 +2013,9,10,2,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1942,-7,0,2155,-14,0,0 +2013,4,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1651,1,0,1746,-11,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1105,-1,0,1236,2,0,0 +2013,8,15,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,725,-2,0,859,-9,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1341,-3,0,1450,-10,0,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1135,-2,0,1230,-5,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,27,1,1745,35,1,0 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,950,0,0,1100,-3,0,0 +2013,8,5,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1623,-2,0,1743,-7,0,0 +2013,10,28,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,11,0,920,24,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1613,-2,0,1722,-26,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,81,1,2255,72,1,0 +2013,10,11,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-3,0,630,-15,0,0 +2013,4,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,806,-5,0,1100,-8,0,0 +2013,5,27,1,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,36,1,950,36,1,0 +2013,7,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1850,-11,0,2056,-20,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,757,-1,0,1054,-10,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,0,0,1040,1,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1145,66,1,1425,64,1,0 +2013,7,8,1,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,-2,0,1010,-11,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2145,1,0,11,6,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,1,0,1643,14,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,-2,0,1225,-7,0,0 +2013,10,23,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1004,-3,0,1049,-9,0,0 +2013,10,14,1,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-6,0,935,-7,0,0 +2013,4,7,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1059,-2,0,1409,-3,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1600,18,1,1730,19,1,0 +2013,5,14,2,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-8,0,1135,-8,0,0 +2013,7,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2200,7,0,2315,11,0,0 +2013,10,23,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1700,-4,0,2010,-6,0,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,910,2,0,1325,-6,0,0 +2013,8,18,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1635,6,0,1735,2,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1916,43,1,2241,23,1,0 +2013,8,22,4,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1020,10,0,1301,-7,0,0 +2013,8,6,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,0,0,1341,7,0,0 +2013,9,16,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,25,1,2040,37,1,0 +2013,4,18,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,20,18,1,535,9,0,0 +2013,6,28,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,610,-10,0,1220,14,0,0 +2013,6,23,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2030,253,1,2345,258,1,0 +2013,7,5,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,-3,0,755,-2,0,0 +2013,7,20,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1705,65,1,1845,55,1,0 +2013,9,8,7,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-8,0,1815,-29,0,0 +2013,9,3,2,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,545,-5,0,730,-18,0,0 +2013,5,25,6,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1700,-6,0,2011,38,1,0 +2013,5,2,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2145,22,1,2325,17,1,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,4,0,1525,8,0,0 +2013,7,26,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,-4,0,1411,-5,0,0 +2013,7,24,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1728,-1,0,1905,-9,0,0 +2013,4,26,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,1,0,1335,11,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1130,-1,0,1340,0,0,0 +2013,7,19,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1955,-6,0,2145,-4,0,0 +2013,6,26,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,815,-2,0,930,2,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,905,-2,0,1700,-3,0,0 +2013,6,10,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1800,0,0,1915,-9,0,0 +2013,10,27,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-5,0,1251,-24,0,0 +2013,6,6,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1600,100,1,1632,108,1,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,745,19,1,931,20,1,0 +2013,5,10,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1855,13,0,2005,18,1,0 +2013,9,27,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1000,-2,0,1205,-13,0,0 +2013,4,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,0,0,1529,-23,0,0 +2013,9,15,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1408,-5,0,1528,-7,0,0 +2013,6,27,4,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,5,0,932,8,0,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,-8,0,1003,-15,0,0 +2013,6,21,5,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,36,1,1025,23,1,0 +2013,5,29,3,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,2050,-2,0,2335,21,1,0 +2013,5,23,4,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,43,1,2218,43,1,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,825,-3,0,1410,-2,0,0 +2013,4,4,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1800,43,1,1925,30,1,0 +2013,9,22,7,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,820,-1,0,1020,12,0,0 +2013,9,21,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1105,95,1,1215,117,1,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1415,-3,0,1611,4,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-1,0,1351,-3,0,0 +2013,5,16,4,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1545,-20,0,0 +2013,10,15,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2045,-13,0,2215,-24,0,0 +2013,5,20,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-6,0,1228,-5,0,0 +2013,9,22,7,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,900,46,1,1158,37,1,0 +2013,5,26,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1750,-5,0,1908,-9,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,805,21,1,1315,21,1,0 +2013,8,11,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,630,0,0,803,-14,0,0 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,7,0,1650,-7,0,0 +2013,4,20,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,805,-6,0,925,-3,0,0 +2013,4,26,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1600,-7,0,1855,-14,0,0 +2013,9,23,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1450,-6,0,1728,-11,0,0 +2013,6,7,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,77,1,2020,75,1,0 +2013,6,12,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,705,2,0,840,3,0,0 +2013,6,18,2,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-5,0,1905,-3,0,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1410,3,0,1655,-11,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,933,3,0,1539,-11,0,0 +2013,9,10,2,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2115,0,0,553,10,0,0 +2013,6,10,1,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,829,82,1,901,70,1,0 +2013,9,17,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,1,0,2225,-2,0,0 +2013,4,20,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1920,-8,0,2024,-22,0,0 +2013,8,1,4,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-2,0,1420,-2,0,0 +2013,7,15,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-2,0,1800,-8,0,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1810,-2,0,2027,-18,0,0 +2013,6,13,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,19,1,1330,13,0,0 +2013,5,14,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,-8,0,1916,-8,0,0 +2013,9,15,7,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1230,-3,0,1445,-4,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-5,0,2335,-14,0,0 +2013,4,24,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1040,-1,0,1340,4,0,0 +2013,7,12,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,-11,0,2338,-12,0,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1146,6,0,1747,68,1,0 +2013,10,17,4,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1735,51,1,2000,42,1,0 +2013,10,16,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-10,0,904,-13,0,0 +2013,4,9,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1940,40,1,2028,35,1,0 +2013,10,4,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1250,-4,0,1410,-11,0,0 +2013,5,31,5,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,32,1,745,29,1,0 +2013,4,28,7,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,1,0,1005,5,0,0 +2013,5,21,2,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-6,0,1120,-11,0,0 +2013,8,25,7,9E,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1110,-5,0,1257,-16,0,0 +2013,7,1,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,605,-1,0,620,-19,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,0,0,1757,5,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1755,11,0,1905,4,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,15,1,1117,2,0,0 +2013,8,29,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,10,0,2015,22,1,0 +2013,4,8,1,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1253,4,0,1507,-3,0,0 +2013,10,7,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1124,5,0,1445,-17,0,0 +2013,5,18,6,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1035,-2,0,1130,-9,0,0 +2013,5,21,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1406,112,1,1631,104,1,0 +2013,6,28,5,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1840,8,0,1921,3,0,0 +2013,6,22,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1450,98,1,1830,106,1,0 +2013,4,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,810,-4,0,941,-7,0,0 +2013,4,17,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,14,0,1210,8,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1340,-3,0,1615,-17,0,0 +2013,8,26,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-10,0,1430,-27,0,0 +2013,9,4,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2100,-2,0,458,-3,0,0 +2013,8,25,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1800,-3,0,1939,-24,0,0 +2013,7,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,958,-8,0,1323,-9,0,0 +2013,8,15,4,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1935,-5,0,2319,-33,0,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1728,-4,0,1824,-7,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,-4,0,2231,-18,0,0 +2013,9,4,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1524,34,1,1658,16,1,0 +2013,4,24,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,801,-5,0,0 +2013,7,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1525,26,1,1627,27,1,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,14,0,1205,3,0,0 +2013,10,29,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1930,35,1,2025,31,1,0 +2013,4,4,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,800,-2,0,1055,-6,0,0 +2013,8,9,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,8,0,1922,9,0,0 +2013,5,13,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,-7,0,2043,8,0,0 +2013,5,15,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1530,2,0,1630,3,0,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-3,0,1515,3,0,0 +2013,7,8,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-3,0,810,-5,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,-4,0,16,-15,0,0 +2013,8,8,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-5,0,1300,-1,0,0 +2013,10,17,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,23,1,1200,18,1,0 +2013,4,13,6,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1925,43,1,2110,28,1,0 +2013,10,16,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-8,0,1015,-3,0,0 +2013,8,12,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1955,0,0,2144,5,0,0 +2013,5,12,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1230,-12,0,1651,-7,0,0 +2013,10,23,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,2,0,515,13,0,0 +2013,10,13,7,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1855,14,0,2240,-2,0,0 +2013,5,5,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1328,79,1,1527,72,1,0 +2013,6,3,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,2,0,1359,5,0,0 +2013,6,5,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1840,0,0,2132,-25,0,0 +2013,9,12,4,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1905,0,,2101,0,1,1 +2013,6,7,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,-4,0,1015,-11,0,0 +2013,7,10,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,108,1,1810,131,1,0 +2013,9,5,4,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-4,0,1045,-4,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1315,4,0,1555,11,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,629,-2,0,805,-2,0,0 +2013,6,30,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1530,9,0,1546,20,1,0 +2013,6,25,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-4,0,1356,-11,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1200,20,1,1425,24,1,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1325,23,1,1625,22,1,0 +2013,5,24,5,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-6,0,1712,0,0,0 +2013,7,7,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1341,-11,0,0 +2013,8,8,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,540,26,1,705,24,1,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1445,18,1,1614,73,1,0 +2013,4,24,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,2030,-1,0,2328,8,0,0 +2013,8,7,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,9,0,1645,23,1,0 +2013,4,18,4,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1425,38,1,1529,37,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1338,0,0,1444,-11,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1320,-4,0,1530,-7,0,0 +2013,5,3,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1457,33,1,1751,18,1,0 +2013,4,11,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,1,0,2210,-18,0,0 +2013,5,17,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,0,,853,0,1,1 +2013,8,29,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,-4,0,1315,-9,0,0 +2013,8,31,6,OO,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1425,-7,0,1539,-2,0,0 +2013,8,12,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,0,,2040,0,1,1 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,-2,0,1245,-7,0,0 +2013,4,26,5,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1741,2,0,2103,10,0,0 +2013,6,24,1,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1335,20,1,1620,33,1,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1000,-3,0,1325,-30,0,0 +2013,10,1,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1330,-4,0,1605,-1,0,0 +2013,9,6,5,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-6,0,1945,-15,0,0 +2013,4,3,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,925,-7,0,930,6,0,0 +2013,9,6,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1445,-8,0,1605,-8,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,620,-1,0,740,-3,0,0 +2013,5,16,4,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-5,0,913,-4,0,0 +2013,7,31,3,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-1,0,606,-8,0,0 +2013,6,3,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-2,0,1130,-20,0,0 +2013,8,23,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1808,-3,0,1956,-9,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,0,0,1151,-16,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2213,-3,0,2335,6,0,0 +2013,6,13,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1407,3,0,2100,5,0,0 +2013,10,20,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1759,28,1,2053,26,1,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2208,-2,0,2347,3,0,0 +2013,5,8,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,837,-7,0,857,-18,0,0 +2013,7,5,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-8,0,950,-9,0,0 +2013,7,30,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1009,4,0,1143,-12,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,1,0,1823,-7,0,0 +2013,4,6,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1440,0,0,1630,-1,0,0 +2013,9,1,7,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1158,-3,0,1440,-2,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,13,0,1720,10,0,0 +2013,5,9,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1540,-5,0,1808,-24,0,0 +2013,9,2,1,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-5,0,1207,-11,0,0 +2013,5,8,3,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1516,15,1,2011,82,1,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1800,13,0,2010,5,0,0 +2013,4,13,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2030,-16,0,2300,-1,0,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2245,4,0,30,1,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1359,-9,0,1752,-22,0,0 +2013,10,20,7,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1707,-7,0,1913,-28,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1155,-4,0,1510,-7,0,0 +2013,9,8,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,600,-3,0,809,-13,0,0 +2013,7,2,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,930,45,1,1150,30,1,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,-2,0,1245,-20,0,0 +2013,5,3,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,2001,55,1,2310,53,1,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,716,-1,0,1051,-25,0,0 +2013,6,24,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1147,-3,0,1353,-14,0,0 +2013,8,12,1,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,8,0,937,8,0,0 +2013,7,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,930,0,0,1054,-6,0,0 +2013,9,8,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-5,0,2059,-7,0,0 +2013,4,3,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2030,-7,0,2301,-8,0,0 +2013,4,6,6,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1552,7,0,1850,-9,0,0 +2013,8,9,5,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,2000,162,1,2244,164,1,0 +2013,5,10,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1934,11,0,2105,19,1,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,625,-1,0,900,-8,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,730,4,0,1134,-2,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,549,-6,0,702,-12,0,0 +2013,5,2,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-2,0,1007,8,0,0 +2013,8,1,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,22,1,1745,35,1,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,905,-6,0,1424,-8,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-3,0,1427,-24,0,0 +2013,9,26,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-2,0,756,1,0,0 +2013,10,1,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-7,0,2237,-35,0,0 +2013,9,6,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,-8,0,1850,-19,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,30,1,1333,21,1,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,700,0,,845,0,1,1 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1250,4,0,1355,-3,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,813,90,1,1035,157,1,0 +2013,6,27,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,50,1,1915,23,1,0 +2013,4,14,7,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,38,1,1404,46,1,0 +2013,7,8,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-4,0,1353,-1,0,0 +2013,9,9,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,912,-7,0,1034,-12,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,0,0,1440,-29,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2210,25,1,55,15,1,0 +2013,4,23,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,84,1,1700,88,1,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1450,44,1,1613,29,1,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1345,27,1,1536,30,1,0 +2013,8,18,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,42,1,2225,34,1,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1740,75,1,1945,68,1,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,2,0,2124,8,0,0 +2013,5,29,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1717,-10,0,1955,-19,0,0 +2013,5,5,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1526,0,0,1655,-1,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,12,0,2105,11,0,0 +2013,10,28,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2019,6,0,2355,-2,0,0 +2013,5,8,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,720,-7,0,1020,-26,0,0 +2013,5,14,2,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1105,-3,0,1325,-9,0,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,825,-5,0,955,-12,0,0 +2013,10,31,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,705,-5,0,1019,-5,0,0 +2013,4,22,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,515,-9,0,840,9,0,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,-5,0,1256,2,0,0 +2013,5,18,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,-6,0,2337,-21,0,0 +2013,10,22,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,932,-6,0,1130,-3,0,0 +2013,8,27,2,YV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,2056,13,0,2359,13,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1220,9,0,1350,-2,0,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2225,12,0,2325,9,0,0 +2013,4,30,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,844,-19,0,0 +2013,7,4,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-7,0,1059,-15,0,0 +2013,8,14,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1120,0,0,2000,-2,0,0 +2013,5,27,1,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,820,-8,0,1058,-11,0,0 +2013,9,11,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-6,0,840,-3,0,0 +2013,4,23,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1310,-7,0,1816,-20,0,0 +2013,6,29,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,735,-1,0,901,16,1,0 +2013,7,4,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1300,-1,0,1409,-7,0,0 +2013,5,15,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2359,-5,0,609,-26,0,0 +2013,9,9,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-9,0,2031,11,0,0 +2013,6,8,6,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1500,7,0,1640,-8,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1615,18,1,1825,16,1,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-2,0,1418,7,0,0 +2013,7,14,7,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1640,-2,0,1830,-25,0,0 +2013,9,2,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,0,0,1520,-3,0,0 +2013,7,31,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1105,-7,0,1319,-21,0,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,757,-5,0,1302,-19,0,0 +2013,9,24,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,927,-8,0,1122,-9,0,0 +2013,5,14,2,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1714,5,0,1834,11,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,820,43,1,942,48,1,0 +2013,8,17,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-7,0,2039,4,0,0 +2013,7,22,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1905,14,0,2227,12,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1236,41,1,1520,26,1,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,134,1,1950,117,1,0 +2013,5,19,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,15,1,1955,11,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1145,20,1,1310,15,1,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,603,-3,0,740,6,0,0 +2013,8,9,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1020,37,1,1150,24,1,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,-3,0,1140,-9,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,12,0,1715,7,0,0 +2013,10,11,5,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,-3,0,752,-10,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,-5,0,5,-18,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,305,1,1654,311,1,0 +2013,8,2,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1230,3,0,1340,9,0,0 +2013,7,29,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,825,5,0,950,26,1,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,-3,0,1528,-16,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1740,-10,0,1900,-7,0,0 +2013,5,15,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-5,0,1259,-15,0,0 +2013,9,7,6,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1129,-5,0,1404,-8,0,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,33,1,2255,19,1,0 +2013,6,19,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1329,13,0,2140,3,0,0 +2013,9,16,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,-8,0,2035,-12,0,0 +2013,8,25,7,EV,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,9,0,2235,20,1,0 +2013,8,28,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,-1,0,2045,-9,0,0 +2013,8,22,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,10,0,1459,13,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1955,-1,0,2150,-16,0,0 +2013,4,15,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,-9,0,1908,-10,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,9,0,2355,6,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,6,0,2020,10,0,0 +2013,4,4,4,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1450,-4,0,1849,-4,0,0 +2013,7,27,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1718,110,1,1840,85,1,0 +2013,10,12,6,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,715,-9,0,818,19,1,0 +2013,9,18,3,EV,12953,LaGuardia,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,840,10,0,1022,-6,0,0 +2013,7,29,1,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,0,0,1140,11,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1434,-2,0,1532,19,1,0 +2013,10,14,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,-4,0,1638,7,0,0 +2013,6,10,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1015,2,0,1135,4,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1320,2,0,1415,-9,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1144,14,0,1550,11,0,0 +2013,5,5,7,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1923,-6,0,2135,9,0,0 +2013,9,5,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,-4,0,1654,-3,0,0 +2013,10,22,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,752,75,1,1014,53,1,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,13,0,1310,2,0,0 +2013,9,17,2,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-10,0,919,-13,0,0 +2013,4,28,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2340,-4,0,710,-8,0,0 +2013,5,10,5,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1136,-9,0,1437,-19,0,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1725,5,0,2000,-17,0,0 +2013,8,18,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,18,1,825,21,1,0 +2013,10,26,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,0,0,1525,10,0,0 +2013,10,25,5,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2339,-8,0,805,-9,0,0 +2013,5,6,1,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1635,21,1,1805,15,1,0 +2013,9,16,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,829,-4,0,1006,-7,0,0 +2013,5,26,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1400,-7,0,1519,-21,0,0 +2013,7,18,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2105,163,1,2220,152,1,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2140,0,0,2345,2,0,0 +2013,8,11,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1935,86,1,2210,78,1,0 +2013,6,16,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,645,-3,0,1435,-37,0,0 +2013,5,9,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-4,0,2100,5,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1449,-2,0,1626,-5,0,0 +2013,10,4,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,-8,0,1815,-18,0,0 +2013,9,28,6,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1008,12,0,0 +2013,5,4,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,915,12,0,1131,-12,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1804,-2,0,1932,1,0,0 +2013,4,27,6,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-4,0,1045,-12,0,0 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2124,6,0,14,-2,0,0 +2013,8,16,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-3,0,2140,-8,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,728,1,0,903,-7,0,0 +2013,5,22,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,112,1,1926,129,1,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,0,0,1615,-22,0,0 +2013,7,27,6,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1602,228,1,1743,220,1,0 +2013,10,13,7,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,850,-3,0,1230,-22,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1954,102,1,2112,87,1,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-6,0,1847,-5,0,0 +2013,9,13,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1418,8,0,1524,5,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,0,,1950,0,1,1 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,925,0,0,1255,-2,0,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,45,1,2145,75,1,0 +2013,8,14,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,-6,0,814,4,0,0 +2013,5,26,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-5,0,753,-4,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1320,15,1,1610,3,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,-5,0,2028,-5,0,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,810,-4,0,1140,-7,0,0 +2013,10,1,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1739,-5,0,1821,-11,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,0,0,1545,0,0,0 +2013,5,9,4,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,-8,0,1025,3,0,0 +2013,4,30,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,0,0,1359,22,1,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1819,-5,0,2118,-26,0,0 +2013,4,29,1,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1750,-4,0,2110,-20,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1850,51,1,2107,46,1,0 +2013,4,5,5,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1352,19,1,1654,-5,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,940,-2,0,1050,-6,0,0 +2013,10,10,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1140,-7,0,1405,-4,0,0 +2013,5,28,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1541,-7,0,1653,-1,0,0 +2013,9,20,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1049,1,0,1209,27,1,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1955,91,1,2310,72,1,0 +2013,10,3,4,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1600,-5,0,1843,-3,0,0 +2013,5,20,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2255,7,0,2348,5,0,0 +2013,7,23,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,0,,2030,0,1,1 +2013,7,7,7,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1440,20,1,1721,11,0,0 +2013,6,9,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,905,-4,0,1020,-5,0,0 +2013,4,28,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1508,0,0,1819,-2,0,0 +2013,8,18,7,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,2,0,2025,-15,0,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-4,0,830,-11,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1735,17,1,5,12,0,0 +2013,8,18,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-3,0,1200,-17,0,0 +2013,7,22,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1755,44,1,1929,24,1,0 +2013,7,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1920,20,1,2025,44,1,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,854,-5,0,1346,-24,0,0 +2013,4,11,4,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-10,0,822,-11,0,0 +2013,4,3,3,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1025,-10,0,1234,-14,0,0 +2013,6,8,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,0,0,2215,-2,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,166,1,2115,171,1,0 +2013,10,9,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1955,-10,0,2121,-20,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,847,-2,0,1325,11,0,0 +2013,5,1,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1100,-6,0,1340,-2,0,0 +2013,9,23,1,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1320,12,0,1515,26,1,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1454,25,1,1712,-1,0,0 +2013,7,30,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1435,11,0,1615,-10,0,0 +2013,5,2,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1823,-7,0,2123,17,1,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1446,-2,0,1744,-13,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,17,1,920,13,0,0 +2013,7,7,7,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1443,-2,0,1634,-8,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,48,1,1935,39,1,0 +2013,4,25,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,3,0,1534,5,0,0 +2013,6,25,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1935,1,0,2110,-7,0,0 +2013,10,13,7,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1134,-14,0,1343,-15,0,0 +2013,4,10,3,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,-7,0,2215,-17,0,0 +2013,8,18,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,14,0,1000,28,1,0 +2013,7,11,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,553,-6,0,1000,-6,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,810,-5,0,1055,-9,0,0 +2013,5,15,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1050,0,,1150,0,1,1 +2013,4,28,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,33,1,1610,53,1,0 +2013,6,10,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,925,2,0,1215,-2,0,0 +2013,5,25,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,0,0,1005,1,0,0 +2013,8,23,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1533,9,0,1724,35,1,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2205,26,1,2356,35,1,0 +2013,9,12,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1857,2,0,2027,-14,0,0 +2013,7,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1850,0,0,2056,-9,0,0 +2013,8,15,4,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1245,4,0,1547,10,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-5,0,1601,-28,0,0 +2013,7,24,3,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,953,5,0,1159,19,1,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,707,9,0,938,25,1,0 +2013,10,19,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,931,27,1,1235,61,1,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1549,-6,0,1721,-4,0,0 +2013,5,22,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-8,0,1358,-6,0,0 +2013,6,23,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1437,-5,0,1614,-3,0,0 +2013,8,20,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1941,-4,0,2110,-10,0,0 +2013,4,14,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1945,-5,0,2300,7,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,1,0,935,0,0,0 +2013,10,12,6,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-6,0,1301,-8,0,0 +2013,7,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,939,-6,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-1,0,2100,-6,0,0 +2013,6,18,2,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1826,8,0,2059,-9,0,0 +2013,4,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,-2,0,930,-7,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,615,-6,0,815,-10,0,0 +2013,8,29,4,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1425,-7,0,1710,-27,0,0 +2013,5,28,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1435,-4,0,1754,-15,0,0 +2013,7,25,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,920,49,1,1120,44,1,0 +2013,7,1,1,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,655,-1,0,940,4,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1217,-3,0,1500,-8,0,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1525,6,0,1805,5,0,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2059,-2,0,2300,-12,0,0 +2013,10,2,3,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-3,0,1015,1,0,0 +2013,8,15,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-1,0,1334,7,0,0 +2013,4,28,7,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1036,-1,0,1603,-1,0,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,850,-1,0,1000,-2,0,0 +2013,8,18,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,3,0,1255,-19,0,0 +2013,5,10,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,707,29,1,808,28,1,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-1,0,1201,-9,0,0 +2013,6,11,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1513,-3,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1705,-2,0,1815,-10,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2030,-5,0,2150,-12,0,0 +2013,7,15,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1447,8,0,2029,25,1,0 +2013,9,11,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2005,75,1,2150,60,1,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,935,-5,0,1315,-4,0,0 +2013,9,30,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,700,-6,0,958,-32,0,0 +2013,5,19,7,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,14,0,1912,3,0,0 +2013,4,15,1,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,600,0,0,830,-2,0,0 +2013,5,29,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1655,-5,0,1915,-5,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,17,1,1710,8,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,800,45,1,1108,42,1,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1840,26,1,2020,23,1,0 +2013,5,4,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1511,-1,0,1711,-19,0,0 +2013,6,18,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,47,1,1425,50,1,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,726,-4,0,905,-3,0,0 +2013,4,11,4,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1420,0,,1632,0,1,1 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2250,-5,0,612,-16,0,0 +2013,9,18,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-4,0,1302,-5,0,0 +2013,10,19,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1645,-2,0,1820,-10,0,0 +2013,8,27,2,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1440,-4,0,2315,-10,0,0 +2013,4,24,3,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1248,15,1,1523,9,0,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,630,-5,0,951,-19,0,0 +2013,4,23,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1213,-5,0,1313,-5,0,0 +2013,4,12,5,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2105,-8,0,514,-26,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1119,-3,0,1254,-5,0,0 +2013,4,27,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,600,-5,0,940,-14,0,0 +2013,5,21,2,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1445,-11,0,1745,-10,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1820,11,0,55,0,0,0 +2013,9,21,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-3,0,1810,-10,0,0 +2013,9,16,1,OO,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,14,0,1420,20,1,0 +2013,6,26,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,-2,0,2050,-8,0,0 +2013,4,5,5,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1131,15,1,2000,-1,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,13,0,2210,11,0,0 +2013,8,14,3,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1204,-1,0,1439,-12,0,0 +2013,7,13,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-1,0,1530,-1,0,0 +2013,7,29,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,-3,0,1225,-1,0,0 +2013,4,9,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1841,-2,0,2148,-15,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,13,0,2225,-3,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2146,-1,0,2346,69,1,0 +2013,5,7,2,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-5,0,1720,-25,0,0 +2013,6,5,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1914,0,,2025,0,1,1 +2013,6,3,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1225,6,0,1340,0,0,0 +2013,9,28,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1008,1,0,1334,4,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1057,-5,0,1209,-7,0,0 +2013,8,28,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1620,-4,0,2155,-4,0,0 +2013,10,29,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,800,-3,0,850,3,0,0 +2013,5,26,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,1047,2,0,0 +2013,6,14,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1050,2,0,1220,3,0,0 +2013,7,19,5,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1840,134,1,2009,127,1,0 +2013,4,21,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,1214,-13,0,0 +2013,9,18,3,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1600,-9,0,2353,-34,0,0 +2013,7,5,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1235,-5,0,1420,-22,0,0 +2013,8,27,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,1,0,2045,-28,0,0 +2013,7,26,5,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1512,78,1,1840,95,1,0 +2013,9,25,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,0,0,837,-6,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,12,0,1806,-4,0,0 +2013,9,11,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,645,0,0,810,-8,0,0 +2013,10,9,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-11,0,1230,-18,0,0 +2013,10,7,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-8,0,1108,-20,0,0 +2013,6,15,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1529,49,1,1735,37,1,0 +2013,9,3,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1730,-1,0,1835,-2,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1810,-5,0,1950,-21,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1510,1,0,1610,-21,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,645,-5,0,855,-3,0,0 +2013,4,11,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,809,-1,0,0 +2013,7,9,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,758,8,0,0 +2013,7,11,4,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-3,0,1040,3,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1249,13,0,1512,-1,0,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1555,10,0,1905,15,1,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,52,1,1935,49,1,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-7,0,820,26,1,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,1,0,1210,28,1,0 +2013,6,2,7,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1350,0,,1517,0,1,1 +2013,8,12,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1540,-4,0,1810,-32,0,0 +2013,5,14,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,817,-2,0,911,-11,0,0 +2013,10,24,4,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,804,22,1,925,13,0,0 +2013,7,28,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1040,-2,0,1223,-16,0,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1114,74,1,1224,68,1,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-2,0,1006,-18,0,0 +2013,10,6,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,840,-7,0,1100,-15,0,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,2,0,2259,-9,0,0 +2013,10,24,4,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1750,55,1,1910,45,1,0 +2013,4,9,2,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,640,-9,0,922,-9,0,0 +2013,8,31,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1201,-9,0,2030,-33,0,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,902,28,1,1128,23,1,0 +2013,4,11,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,846,-2,0,932,4,0,0 +2013,8,11,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,64,1,1915,74,1,0 +2013,8,17,6,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,704,-10,0,1025,-10,0,0 +2013,5,6,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,720,-3,0,1107,10,0,0 +2013,7,26,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,-7,0,1855,10,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,800,-18,0,0 +2013,10,31,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,920,25,1,1255,18,1,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1805,8,0,1850,6,0,0 +2013,6,30,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,21,1,1712,13,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1140,-2,0,1400,-21,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,-6,0,1055,3,0,0 +2013,10,2,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,2055,-7,0,2215,-14,0,0 +2013,8,23,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,4,0,1340,8,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1054,54,1,1217,32,1,0 +2013,5,18,6,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1800,-3,0,1850,-5,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1635,-3,0,1750,-16,0,0 +2013,8,16,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1007,10,0,1045,12,0,0 +2013,6,29,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,-1,0,619,-9,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,813,-3,0,944,-19,0,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1634,0,0,1915,6,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,-2,0,1746,0,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1110,0,0,1320,-2,0,0 +2013,6,17,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,0,0,2047,-13,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-7,0,2045,8,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1215,64,1,1348,72,1,0 +2013,4,25,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-9,0,1639,-14,0,0 +2013,7,29,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-3,0,1005,-10,0,0 +2013,6,2,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1748,137,1,2040,159,1,0 +2013,5,18,6,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,13,0,2042,20,1,0 +2013,8,24,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1043,-3,0,1840,7,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1633,33,1,1751,21,1,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,-2,0,1245,-10,0,0 +2013,10,20,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-1,0,1427,-20,0,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,-7,0,1035,-9,0,0 +2013,10,16,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1830,-3,0,2010,-1,0,0 +2013,7,31,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1616,59,1,1731,79,1,0 +2013,8,12,1,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,4,0,1240,-3,0,0 +2013,10,1,2,AA,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1800,26,1,1935,49,1,0 +2013,5,7,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1110,0,0,1300,-12,0,0 +2013,10,19,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-3,0,2056,2,0,0 +2013,5,28,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1055,-3,0,1100,-4,0,0 +2013,6,8,6,EV,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1204,-2,0,1258,-15,0,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,-7,0,1811,-4,0,0 +2013,10,30,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1305,-2,0,1438,30,1,0 +2013,6,13,4,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2147,0,0,555,-18,0,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1239,74,1,1539,71,1,0 +2013,5,8,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,645,-5,0,805,-7,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1317,2,0,1441,-1,0,0 +2013,5,17,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1210,-1,0,1325,-11,0,0 +2013,10,17,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,945,-11,0,1105,-17,0,0 +2013,9,8,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,-5,0,847,-20,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1319,68,1,1544,68,1,0 +2013,5,22,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,630,-7,0,840,-6,0,0 +2013,6,22,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2051,-5,0,455,-17,0,0 +2013,9,13,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,13,0,1900,21,1,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1905,-1,0,2130,-5,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,17,1,1409,4,0,0 +2013,6,3,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,831,-9,0,1100,-15,0,0 +2013,9,11,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,630,-1,0,839,-14,0,0 +2013,4,23,2,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-5,0,815,-18,0,0 +2013,7,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,24,1,1405,12,0,0 +2013,9,8,7,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,-4,0,1710,-12,0,0 +2013,4,16,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1420,72,1,1505,69,1,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,713,-3,0,1049,-18,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,-4,0,1245,-5,0,0 +2013,7,12,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,63,1,1128,49,1,0 +2013,9,18,3,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2207,-6,0,552,12,0,0 +2013,4,26,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1005,-8,0,1305,-9,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1318,-3,0,1546,-15,0,0 +2013,5,16,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,1,0,1818,-1,0,0 +2013,10,18,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1055,-2,0,1610,0,0,0 +2013,4,28,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1649,-5,0,1726,-9,0,0 +2013,6,16,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,-5,0,1945,-17,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1030,23,1,1133,10,0,0 +2013,8,11,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-6,0,2050,-12,0,0 +2013,6,1,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,-8,0,924,-22,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1506,-4,0,1608,-8,0,0 +2013,9,20,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,-4,0,917,-13,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1040,-3,0,1425,-16,0,0 +2013,4,25,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1935,-3,0,2104,2,0,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,2,0,1007,-13,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-2,0,1133,-2,0,0 +2013,7,14,7,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1710,-2,0,1815,-6,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,5,0,1420,5,0,0 +2013,5,27,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,3,0,1928,-6,0,0 +2013,8,12,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1439,57,1,1613,43,1,0 +2013,5,18,6,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,855,-8,0,1055,-11,0,0 +2013,9,5,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1316,-14,0,1436,-16,0,0 +2013,5,1,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1840,29,1,2005,37,1,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,830,-5,0,935,-9,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,26,1,815,4,0,0 +2013,7,21,7,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-3,0,2055,-14,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2003,13,0,2145,3,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,735,2,0,1015,-7,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1530,3,0,1705,-12,0,0 +2013,9,17,2,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,1010,-2,0,1250,26,1,0 +2013,6,24,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,130,1,646,133,1,0 +2013,4,28,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1339,-4,0,1655,-21,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2130,11,0,2328,-10,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1745,-5,0,1928,-2,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,726,-6,0,901,-3,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1340,7,0,1430,1,0,0 +2013,7,5,5,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1023,-7,0,1131,-10,0,0 +2013,10,16,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1501,-9,0,1635,14,0,0 +2013,9,26,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1150,-11,0,1205,-17,0,0 +2013,10,31,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2052,-3,0,2349,7,0,0 +2013,8,2,5,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,-4,0,1853,16,1,0 +2013,8,13,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1025,6,0,1140,3,0,0 +2013,6,26,3,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,730,0,0,840,-11,0,0 +2013,6,26,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2205,38,1,100,17,1,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,800,27,1,1040,20,1,0 +2013,6,9,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,5,0,2030,2,0,0 +2013,8,15,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,17,1,1631,4,0,0 +2013,5,28,2,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-4,0,1539,-15,0,0 +2013,4,19,5,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1405,19,1,2000,19,1,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1935,-4,0,2045,-7,0,0 +2013,8,17,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1405,23,1,1515,21,1,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,28,1,1110,24,1,0 +2013,10,1,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,-3,0,2259,-18,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,82,1,2205,77,1,0 +2013,8,17,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,13,0,1600,10,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1925,29,1,2354,30,1,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-3,0,1304,-16,0,0 +2013,4,11,4,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,825,4,0,1205,-12,0,0 +2013,7,14,7,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1156,76,1,1309,88,1,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,21,1,1800,19,1,0 +2013,10,28,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,815,2,0,1000,5,0,0 +2013,8,3,6,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,705,-3,0,1535,-31,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1405,-1,0,1553,-8,0,0 +2013,8,2,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,1,0,1005,-7,0,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,12,0,1035,5,0,0 +2013,8,17,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,600,-7,0,719,-35,0,0 +2013,9,12,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,12,0,1117,18,1,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1735,30,1,1915,30,1,0 +2013,5,18,6,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,1215,-14,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1540,43,1,1730,49,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-1,0,1004,-14,0,0 +2013,5,25,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1118,8,0,1310,-6,0,0 +2013,10,24,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,750,-2,0,1042,10,0,0 +2013,7,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,-4,0,1255,-12,0,0 +2013,7,25,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1708,54,1,1953,46,1,0 +2013,9,13,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2110,49,1,2225,43,1,0 +2013,8,22,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,515,-5,0,608,-10,0,0 +2013,5,26,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1816,-7,0,0 +2013,10,5,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-6,0,1858,21,1,0 +2013,5,1,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-1,0,859,-2,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,139,1,2307,146,1,0 +2013,10,4,5,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1000,-7,0,1115,-2,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1730,18,1,1850,12,0,0 +2013,6,5,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2050,25,1,2230,11,0,0 +2013,5,11,6,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1655,7,0,1831,0,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,21,1,1855,13,0,0 +2013,9,17,2,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,0,0,1755,-8,0,0 +2013,4,12,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,625,-3,0,748,-13,0,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,730,-7,0,900,-11,0,0 +2013,7,29,1,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2230,-5,0,120,-29,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,712,6,0,935,-12,0,0 +2013,10,29,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,700,0,0,750,3,0,0 +2013,9,29,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-4,0,1023,-3,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1940,52,1,2255,28,1,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1340,-2,0,1445,-6,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1631,-1,0,1730,-12,0,0 +2013,9,13,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1355,-3,0,1510,-3,0,0 +2013,7,4,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1725,-2,0,2045,-28,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2205,4,0,2332,-1,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,-4,0,1520,-11,0,0 +2013,5,22,3,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1127,1,0,1420,-10,0,0 +2013,10,28,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1615,3,0,1913,1,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-4,0,1340,-33,0,0 +2013,8,14,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,810,-8,0,835,-3,0,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1247,0,0,1617,-13,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,815,0,0,939,-4,0,0 +2013,9,11,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,815,-2,0,0 +2013,8,24,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2140,5,0,2236,-1,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-2,0,1835,-6,0,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,940,-6,0,1739,-12,0,0 +2013,8,2,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,-2,0,1010,-3,0,0 +2013,10,1,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2110,-10,0,2210,-18,0,0 +2013,7,2,2,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-5,0,1018,-18,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2211,-8,0,2359,-4,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,71,1,2036,84,1,0 +2013,8,4,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,8,0,1800,10,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1650,13,0,1740,4,0,0 +2013,8,22,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2005,-3,0,2115,-1,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-2,0,1135,-11,0,0 +2013,9,27,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1253,32,1,1834,14,0,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,615,-1,0,840,-2,0,0 +2013,8,21,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1510,-2,0,1559,-11,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1000,7,0,1715,4,0,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1845,-1,0,215,-32,0,0 +2013,6,23,7,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-1,0,550,9,0,0 +2013,5,20,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,935,-15,0,1055,-21,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,0,0,2132,0,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,605,3,0,720,-3,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,1,0,2113,5,0,0 +2013,10,25,5,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1629,21,1,1747,43,1,0 +2013,8,16,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1221,-5,0,1357,-27,0,0 +2013,10,28,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,-3,0,1831,10,0,0 +2013,9,29,7,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1830,4,0,2137,-17,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1912,-3,0,2046,-5,0,0 +2013,10,12,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1350,-2,0,1501,-11,0,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,17,1,1743,8,0,0 +2013,8,19,1,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-7,0,2033,3,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,18,1,1520,12,0,0 +2013,6,26,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1325,10,0,1450,2,0,0 +2013,8,18,7,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,620,-1,0,705,-5,0,0 +2013,5,23,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-6,0,628,-16,0,0 +2013,6,18,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1155,38,1,1327,36,1,0 +2013,4,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1340,5,0,1707,9,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1710,-1,0,1820,-18,0,0 +2013,8,26,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,-3,0,1941,-20,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1315,-5,0,1526,-14,0,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1425,99,1,1547,109,1,0 +2013,4,1,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1545,-9,0,1952,-25,0,0 +2013,7,17,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-7,0,1309,2,0,0 +2013,9,16,1,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,-14,0,1434,-28,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1015,-1,0,1332,-39,0,0 +2013,9,1,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1715,6,0,1755,-17,0,0 +2013,4,21,7,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1339,-7,0,1550,-20,0,0 +2013,8,24,6,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1516,-6,0,1657,-17,0,0 +2013,5,25,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1640,5,0,1810,-8,0,0 +2013,5,12,7,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,-2,0,2145,-12,0,0 +2013,9,28,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1300,-5,0,1504,-16,0,0 +2013,10,21,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,0,0,1246,15,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,830,9,0,935,1,0,0 +2013,8,6,2,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,14,0,1411,-2,0,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-6,0,733,-14,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,635,-3,0,755,-5,0,0 +2013,6,14,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,530,-5,0,736,-12,0,0 +2013,6,20,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-1,0,1115,-24,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,7,0,2110,1,0,0 +2013,8,30,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1855,-4,0,2218,-10,0,0 +2013,4,17,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1420,-11,0,1505,-17,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1955,19,1,2145,17,1,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,17,1,919,18,1,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1505,-3,0,2251,-22,0,0 +2013,4,16,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,18,1,1215,82,1,0 +2013,4,25,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,725,-5,0,1438,7,0,0 +2013,5,7,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1336,31,1,1524,18,1,0 +2013,5,6,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2204,-5,0,2328,-4,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1300,76,1,1455,61,1,0 +2013,8,15,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,11,0,2047,33,1,0 +2013,8,28,3,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,805,-6,0,1050,-11,0,0 +2013,4,27,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-2,0,1122,-9,0,0 +2013,5,22,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-7,0,704,1,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2304,-3,0,30,-14,0,0 +2013,10,4,5,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1845,0,0,2029,-27,0,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,24,1,1505,18,1,0 +2013,5,25,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,-1,0,1905,-35,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,6,0,1740,4,0,0 +2013,8,16,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,830,14,0,0 +2013,10,5,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-6,0,2100,3,0,0 +2013,10,11,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,26,1,1910,24,1,0 +2013,4,22,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,11,0,1903,17,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1815,52,1,2130,48,1,0 +2013,9,24,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-4,0,2351,-22,0,0 +2013,7,25,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,915,-8,0,1055,-7,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,6,0,2307,-1,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1756,0,0,2010,-30,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1125,93,1,1235,90,1,0 +2013,5,20,1,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1545,4,0,1643,-5,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2130,1,0,2328,-2,0,0 +2013,8,26,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1104,-4,0,1233,-9,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1155,-3,0,1410,-7,0,0 +2013,4,23,2,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2300,-1,0,624,-18,0,0 +2013,10,3,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1230,108,1,1422,116,1,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2211,-5,0,3,-15,0,0 +2013,5,27,1,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1555,-11,0,1708,-29,0,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1315,4,0,1410,-3,0,0 +2013,9,27,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1742,-2,0,1940,10,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,32,1,2032,32,1,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1015,6,0,1125,1,0,0 +2013,9,14,6,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1435,98,1,2245,89,1,0 +2013,5,30,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,930,-2,0,1230,16,1,0 +2013,8,22,4,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-2,0,900,5,0,0 +2013,8,2,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-7,0,606,-11,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,0,0,1355,14,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,-1,0,1207,-21,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-3,0,1830,-8,0,0 +2013,9,30,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,19,1,2255,14,0,0 +2013,10,20,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1405,-2,0,2059,1,0,0 +2013,8,30,5,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,842,-16,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1240,-7,0,1420,-15,0,0 +2013,9,23,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1705,-3,0,1824,-8,0,0 +2013,9,29,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,710,-9,0,1000,-20,0,0 +2013,4,4,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1854,1,0,2135,-17,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,25,1,1845,28,1,0 +2013,4,27,6,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,229,1,1105,189,1,0 +2013,7,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,920,1,0,1240,-9,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,756,-1,0,1044,-3,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1959,10,0,2118,10,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,-1,0,1129,-1,0,0 +2013,5,9,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1256,-7,0,1336,-20,0,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1119,23,1,1651,-6,0,0 +2013,8,3,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,-5,0,1106,-18,0,0 +2013,10,7,1,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,930,-3,0,1009,-19,0,0 +2013,8,12,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2025,27,1,2205,31,1,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,-6,0,1546,-8,0,0 +2013,6,23,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,66,1,1450,61,1,0 +2013,9,4,3,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-2,0,1306,-1,0,0 +2013,6,6,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-1,0,2227,-7,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1335,-5,0,1547,-26,0,0 +2013,10,26,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1355,-6,0,1636,-11,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,-1,0,1445,-12,0,0 +2013,6,1,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1955,33,1,2120,29,1,0 +2013,4,5,5,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,857,-5,0,1424,-13,0,0 +2013,9,13,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,635,-2,0,932,-23,0,0 +2013,6,29,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,1345,-8,0,2019,-3,0,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1605,42,1,1903,45,1,0 +2013,10,9,3,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,950,-5,0,1111,-17,0,0 +2013,4,2,2,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,3,0,1045,0,0,0 +2013,4,25,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,-8,0,2045,-15,0,0 +2013,10,3,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1909,-4,0,2102,-24,0,0 +2013,4,19,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,610,-7,0,809,1,0,0 +2013,5,8,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,2140,44,1,2350,26,1,0 +2013,6,11,2,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2130,-6,0,512,-19,0,0 +2013,10,16,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,940,-7,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,942,2,0,1056,12,0,0 +2013,5,23,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,329,1,1950,356,1,0 +2013,10,1,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1150,1,0,1400,-17,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1225,11,0,1740,16,1,0 +2013,4,4,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1440,19,1,1612,9,0,0 +2013,10,27,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,837,-2,0,1640,-11,0,0 +2013,6,11,2,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,840,-8,0,1030,-22,0,0 +2013,6,20,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1345,-4,0,1520,-20,0,0 +2013,10,23,3,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1645,2,0,2207,0,0,0 +2013,8,27,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-1,0,1120,-13,0,0 +2013,10,7,1,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,-1,0,1130,8,0,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1228,3,0,1437,1,0,0 +2013,9,21,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1120,-1,0,1229,3,0,0 +2013,7,20,6,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,13,0,2230,29,1,0 +2013,9,17,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1725,-7,0,1855,-10,0,0 +2013,4,28,7,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1043,-10,0,1241,-25,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2012,-7,0,2219,-18,0,0 +2013,5,18,6,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,929,-4,0,1141,-13,0,0 +2013,9,15,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,540,-4,0,1200,-18,0,0 +2013,6,7,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2130,0,0,2250,-4,0,0 +2013,6,8,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,945,36,1,1040,25,1,0 +2013,8,21,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,27,1,1430,21,1,0 +2013,5,22,3,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,817,3,0,0 +2013,10,22,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1355,-7,0,1546,-12,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,9,0,1505,7,0,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,27,1,1820,31,1,0 +2013,9,11,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,-10,0,1628,-22,0,0 +2013,8,27,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1713,-5,0,1851,-13,0,0 +2013,4,15,1,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-7,0,540,-12,0,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,910,29,1,1225,13,0,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,830,0,0,1052,5,0,0 +2013,10,25,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,800,-4,0,1117,-22,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1730,2,0,2040,-8,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1925,3,0,2240,5,0,0 +2013,6,24,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1410,54,1,1630,138,1,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,6,0,2011,-14,0,0 +2013,6,3,1,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1805,-4,0,2330,-10,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1930,3,0,2030,-7,0,0 +2013,6,9,7,EV,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,254,1,1925,242,1,0 +2013,7,4,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1548,12,0,0 +2013,10,28,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-1,0,835,-15,0,0 +2013,6,17,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1220,17,1,1350,14,0,0 +2013,7,3,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1809,37,1,2100,59,1,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2215,4,0,19,-18,0,0 +2013,8,19,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,740,3,0,0 +2013,5,8,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1210,5,0,1331,-2,0,0 +2013,9,12,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,0,,2135,0,1,1 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-1,0,1116,13,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-4,0,1440,16,1,0 +2013,7,10,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1958,65,1,2125,56,1,0 +2013,7,9,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1234,-1,0,1437,-12,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,53,1,1435,50,1,0 +2013,8,6,2,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,24,1,1620,16,1,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1900,33,1,2212,22,1,0 +2013,4,10,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-8,0,835,-13,0,0 +2013,4,12,5,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,3,0,2040,17,1,0 +2013,6,5,3,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,104,1,1220,100,1,0 +2013,5,17,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-3,0,1155,-13,0,0 +2013,7,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1035,-1,0,1355,-9,0,0 +2013,5,16,4,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1313,9,0,2105,12,0,0 +2013,7,16,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1955,59,1,2249,54,1,0 +2013,9,27,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2020,26,1,2135,21,1,0 +2013,9,10,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-6,0,1040,-15,0,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1639,-1,0,1935,-8,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,0,0,1212,-1,0,0 +2013,7,11,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-1,0,1151,-6,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,715,0,0,940,-12,0,0 +2013,5,12,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,11,0,1612,-8,0,0 +2013,6,12,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,833,-7,0,1030,-17,0,0 +2013,5,27,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,700,0,0,900,-8,0,0 +2013,6,30,7,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1809,97,1,2044,103,1,0 +2013,6,12,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,14,0,1530,12,0,0 +2013,10,28,1,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1410,-5,0,1755,-24,0,0 +2013,5,2,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,0,0,733,-10,0,0 +2013,5,28,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,635,-1,0,745,-12,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,645,4,0,805,-4,0,0 +2013,7,23,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,6,0,940,14,0,0 +2013,8,3,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,610,-2,0,840,-7,0,0 +2013,8,13,2,YV,14100,Philadelphia International,Philadelphia,PA,14730,Louisville International-Standiford Field,Louisville,KY,2040,-9,0,2241,-8,0,0 +2013,9,10,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1021,-5,0,1836,0,0,0 +2013,9,2,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,22,1,1739,30,1,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2130,-4,0,2320,-12,0,0 +2013,8,25,7,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-3,0,815,-14,0,0 +2013,6,4,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1110,-2,0,1245,-7,0,0 +2013,7,12,5,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-13,0,955,-27,0,0 +2013,6,9,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,25,1,1030,46,1,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1304,-2,0,2139,-23,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-1,0,923,-7,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,3,0,1309,30,1,0 +2013,8,26,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-10,0,956,-9,0,0 +2013,6,4,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1705,0,0,2050,-7,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1635,130,1,2005,198,1,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,2145,-3,0,2320,-28,0,0 +2013,4,27,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-6,0,1607,7,0,0 +2013,4,17,3,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1949,142,1,114,156,1,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1355,3,0,1930,24,1,0 +2013,8,14,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,4,0,2135,5,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,9,0,1926,9,0,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,-3,0,1130,-6,0,0 +2013,10,2,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1940,-2,0,1955,-10,0,0 +2013,9,19,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,29,1,2035,54,1,0 +2013,5,5,7,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1140,0,0,1333,-11,0,0 +2013,5,26,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-5,0,831,-17,0,0 +2013,6,18,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,242,1,2130,223,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2210,11,0,2321,-11,0,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,830,-7,0,1125,-20,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,-4,0,1450,-18,0,0 +2013,7,3,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1104,67,1,1233,56,1,0 +2013,8,26,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1940,17,1,2250,15,1,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,36,1,950,56,1,0 +2013,10,24,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1333,-8,0,1435,-8,0,0 +2013,6,23,7,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1015,16,1,1120,2,0,0 +2013,8,23,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-5,0,1808,-3,0,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,3,0,1440,1,0,0 +2013,4,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1740,17,1,1911,13,0,0 +2013,7,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1730,-9,0,2045,-14,0,0 +2013,4,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2140,-1,0,2227,5,0,0 +2013,8,30,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-2,0,1515,-29,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,64,1,2255,104,1,0 +2013,5,5,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1701,-6,0,2301,7,0,0 +2013,8,14,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1735,-1,0,2108,-3,0,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,20,1,1120,43,1,0 +2013,10,13,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1805,3,0,1910,4,0,0 +2013,9,18,3,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1600,42,1,1650,45,1,0 +2013,5,8,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1347,1,0,1543,-8,0,0 +2013,4,18,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1535,0,,1648,0,1,1 +2013,10,7,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,29,1,920,23,1,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1910,-2,0,2142,4,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1842,16,1,2206,11,0,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,2,0,1148,7,0,0 +2013,5,24,5,VX,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,945,-2,0,1800,-17,0,0 +2013,10,21,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1405,-4,0,1415,-15,0,0 +2013,6,30,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2255,1,0,623,0,0,0 +2013,5,2,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,-10,0,1500,3,0,0 +2013,5,23,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1358,-5,0,1423,2,0,0 +2013,10,11,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1723,22,1,1900,9,0,0 +2013,5,11,6,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1430,16,1,1635,7,0,0 +2013,10,17,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1800,147,1,2040,134,1,0 +2013,8,30,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1720,32,1,1845,30,1,0 +2013,10,29,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1225,-4,0,1555,-7,0,0 +2013,9,17,2,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,-10,0,1043,-27,0,0 +2013,7,7,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1340,3,0,1510,-29,0,0 +2013,8,11,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,753,-2,0,950,-12,0,0 +2013,6,18,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1028,-4,0,1426,-7,0,0 +2013,6,14,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,916,-4,0,1129,-11,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,-2,0,1830,5,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1304,-1,0,1430,-25,0,0 +2013,6,5,3,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1635,-10,0,2010,-16,0,0 +2013,10,15,2,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1245,-3,0,1430,10,0,0 +2013,5,20,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,2030,47,1,2310,35,1,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2220,10,0,110,3,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,15,1,2341,19,1,0 +2013,5,24,5,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,2329,-4,0,642,-23,0,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1224,318,1,1522,283,1,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,740,-4,0,845,-14,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,950,-2,0,1221,-21,0,0 +2013,6,2,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1722,78,1,1953,83,1,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-3,0,845,-4,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,22,1,1700,24,1,0 +2013,10,10,4,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,655,-3,0,845,-6,0,0 +2013,10,13,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,8,0,1605,14,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1240,2,0,1255,3,0,0 +2013,5,19,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1125,-8,0,1338,-17,0,0 +2013,9,22,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1215,31,1,1421,20,1,0 +2013,8,13,2,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1820,37,1,2141,42,1,0 +2013,8,17,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1805,239,1,1935,253,1,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1450,16,1,1555,17,1,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1359,33,1,1559,31,1,0 +2013,5,11,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,14,0,1623,22,1,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-6,0,1401,-11,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,41,1,10,44,1,0 +2013,7,7,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,-3,0,1135,-9,0,0 +2013,8,20,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1735,108,1,1855,110,1,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1910,7,0,2030,-2,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2200,15,1,2310,4,0,0 +2013,4,17,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,0,0,750,11,0,0 +2013,9,10,2,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,710,-2,0,840,-5,0,0 +2013,9,30,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,800,-7,0,900,-11,0,0 +2013,4,21,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2205,84,1,46,72,1,0 +2013,8,16,5,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-2,0,2054,-16,0,0 +2013,6,11,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,-2,0,1445,-10,0,0 +2013,8,22,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,730,116,1,907,106,1,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1011,-5,0,1331,-13,0,0 +2013,4,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,800,-1,0,1044,-5,0,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,755,10,0,0 +2013,10,18,5,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,-5,0,2040,-27,0,0 +2013,5,24,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,750,88,1,1124,79,1,0 +2013,10,3,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,805,-5,0,840,-13,0,0 +2013,7,20,6,OO,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1450,-7,0,1716,-9,0,0 +2013,8,27,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-3,0,1057,3,0,0 +2013,10,5,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,0,0,1340,-12,0,0 +2013,10,11,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,940,-2,0,1025,-1,0,0 +2013,10,12,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1128,-1,0,0 +2013,9,29,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,6,0,1200,-1,0,0 +2013,5,12,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-3,0,1820,-17,0,0 +2013,7,9,2,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,2,0,1510,-4,0,0 +2013,8,12,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1215,4,0,1512,13,0,0 +2013,8,24,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2025,-10,0,2154,-6,0,0 +2013,10,15,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1446,-4,0,1706,7,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1027,67,1,1148,58,1,0 +2013,9,22,7,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1100,4,0,1155,5,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-3,0,926,-32,0,0 +2013,8,17,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1520,-2,0,1830,-18,0,0 +2013,5,3,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-3,0,812,-8,0,0 +2013,7,11,4,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,-5,0,1905,6,0,0 +2013,4,9,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,600,-2,0,940,-16,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1026,-3,0,1245,-6,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1445,-6,0,1536,-10,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,740,11,0,845,4,0,0 +2013,7,24,3,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-6,0,1917,-11,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,610,1,0,735,-13,0,0 +2013,10,15,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,1248,-25,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2230,20,1,55,16,1,0 +2013,4,11,4,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2252,-13,0,709,-22,0,0 +2013,5,1,3,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1617,4,0,1907,5,0,0 +2013,7,4,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1805,0,0,1954,-26,0,0 +2013,8,1,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,835,1,0,930,-2,0,0 +2013,7,15,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-3,0,745,14,0,0 +2013,6,3,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1015,-6,0,1130,-16,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,52,1,2200,60,1,0 +2013,7,9,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,41,1,1905,41,1,0 +2013,7,31,3,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1438,8,0,1620,10,0,0 +2013,8,24,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,720,-6,0,1019,13,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1310,-2,0,1500,-2,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1450,0,,1830,0,1,1 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1220,-6,0,1414,-14,0,0 +2013,5,24,5,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,815,124,1,1645,128,1,0 +2013,7,5,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,609,-10,0,859,-19,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1300,40,1,1625,54,1,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1005,0,0,1135,4,0,0 +2013,5,22,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-4,0,845,-16,0,0 +2013,8,23,5,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1852,3,0,2017,-1,0,0 +2013,6,19,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,925,-3,0,1040,-5,0,0 +2013,9,25,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,31,1,1250,16,1,0 +2013,6,23,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,741,-7,0,0 +2013,4,2,2,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,700,5,0,1450,-6,0,0 +2013,6,1,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-4,0,809,-6,0,0 +2013,4,15,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,-7,0,1735,-24,0,0 +2013,4,18,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,905,0,,1032,0,1,1 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,745,-5,0,1206,-7,0,0 +2013,5,9,4,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1742,0,0,2014,7,0,0 +2013,6,2,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,4,0,1843,24,1,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,-5,0,958,-20,0,0 +2013,10,15,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-2,0,2104,-4,0,0 +2013,7,17,3,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,36,1,2055,13,0,0 +2013,7,7,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1718,40,1,1940,54,1,0 +2013,4,4,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-6,0,804,-7,0,0 +2013,6,15,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,-5,0,903,-1,0,0 +2013,4,15,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,2,0,1700,2,0,0 +2013,4,28,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,850,-3,0,1653,44,1,0 +2013,7,11,4,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,12,0,1607,10,0,0 +2013,5,28,2,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,755,8,0,1600,-8,0,0 +2013,6,14,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1726,2,0,1917,-10,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1230,13,0,1715,1,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-1,0,945,4,0,0 +2013,8,1,4,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1153,151,1,2023,174,1,0 +2013,10,2,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-2,0,2110,-15,0,0 +2013,8,21,3,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,1,0,1227,-13,0,0 +2013,10,29,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,900,201,1,1020,188,1,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1740,-3,0,2100,2,0,0 +2013,9,10,2,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1720,0,0,1843,12,0,0 +2013,6,26,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,830,84,1,850,0,1,1 +2013,5,31,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,1356,-5,0,0 +2013,8,13,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1703,17,1,1810,22,1,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,935,-5,0,1210,-3,0,0 +2013,9,3,2,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,0,0,1440,-7,0,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,107,1,2215,87,1,0 +2013,5,5,7,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2355,16,1,815,11,0,0 +2013,6,21,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1840,38,1,2245,28,1,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,0,0,1814,-8,0,0 +2013,9,3,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,700,-2,0,800,-11,0,0 +2013,6,26,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1103,-5,0,1158,-13,0,0 +2013,4,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,18,1,1955,19,1,0 +2013,8,9,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-3,0,1356,-19,0,0 +2013,7,17,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1107,8,0,1201,7,0,0 +2013,4,20,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1115,-4,0,1215,2,0,0 +2013,10,6,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,905,-2,0,939,1,0,0 +2013,4,4,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,820,-2,0,1055,-24,0,0 +2013,5,31,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-4,0,1850,-13,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,41,1,1315,35,1,0 +2013,4,10,3,EV,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,912,-7,0,1155,12,0,0 +2013,9,16,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-5,0,1400,-6,0,0 +2013,4,28,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1202,-3,0,1500,11,0,0 +2013,5,27,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,126,1,1310,119,1,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-9,0,2215,-25,0,0 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,-4,0,1605,-16,0,0 +2013,6,10,1,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,-2,0,1740,10,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1505,59,1,1835,65,1,0 +2013,7,23,2,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,31,1,1415,35,1,0 +2013,7,5,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-6,0,602,-8,0,0 +2013,6,25,2,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,2,0,901,11,0,0 +2013,4,2,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1915,-3,0,2035,12,0,0 +2013,10,28,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-15,0,2051,-18,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2035,-4,0,2340,-12,0,0 +2013,5,25,6,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-5,0,955,-17,0,0 +2013,8,6,2,EV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1006,-10,0,1455,-25,0,0 +2013,6,9,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,1,0,950,8,0,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-2,0,1933,-6,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1915,15,1,2205,-8,0,0 +2013,8,25,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2042,0,0,2319,0,0,0 +2013,8,12,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,9,0,2025,13,0,0 +2013,9,11,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-6,0,1501,-7,0,0 +2013,6,25,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,0,0,839,-9,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,923,-2,0,1152,-10,0,0 +2013,4,23,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,610,-5,0,809,-19,0,0 +2013,7,18,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1655,32,1,2005,45,1,0 +2013,6,4,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,46,1,2220,40,1,0 +2013,10,1,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,1,0,1740,-13,0,0 +2013,8,15,4,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1035,267,1,1645,260,1,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1640,5,0,2120,-18,0,0 +2013,8,11,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,750,1,0,1553,-7,0,0 +2013,5,24,5,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,821,114,1,933,117,1,0 +2013,7,1,1,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,951,-6,0,1427,-6,0,0 +2013,4,14,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,852,-13,0,0 +2013,6,30,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,851,18,1,1715,5,0,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-9,0,927,-18,0,0 +2013,5,21,2,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1316,38,1,1812,41,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1715,22,1,1849,16,1,0 +2013,6,14,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,610,0,0,740,-10,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1200,147,1,1420,113,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,-7,0,910,-12,0,0 +2013,10,24,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,752,-7,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,850,-3,0,1003,10,0,0 +2013,8,9,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,630,0,0,1225,0,0,0 +2013,6,14,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-10,0,900,-21,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,5,0,1920,-1,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2015,12,0,2229,-10,0,0 +2013,10,26,6,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1054,-6,0,1819,-15,0,0 +2013,8,21,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-11,0,505,10,0,0 +2013,8,20,2,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1915,14,0,2140,6,0,0 +2013,8,21,3,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,10,0,1927,-4,0,0 +2013,7,9,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-10,0,1200,11,0,0 +2013,5,3,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1918,37,1,2212,33,1,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,830,6,0,955,5,0,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1016,23,1,1137,16,1,0 +2013,9,12,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2040,15,1,2150,8,0,0 +2013,6,19,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1720,-5,0,1840,-7,0,0 +2013,6,20,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-9,0,1105,-11,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1527,-3,0,1658,-3,0,0 +2013,7,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,830,-6,0,957,-9,0,0 +2013,9,26,4,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,-5,0,1520,-10,0,0 +2013,9,23,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1955,47,1,2239,46,1,0 +2013,6,28,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,-5,0,1101,-37,0,0 +2013,9,7,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,837,-3,0,912,5,0,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1905,4,0,2020,10,0,0 +2013,5,31,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-4,0,913,2,0,0 +2013,7,21,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1002,0,,1141,0,1,1 +2013,8,7,3,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1542,0,0,1803,9,0,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1810,27,1,2000,21,1,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1730,34,1,1850,25,1,0 +2013,8,18,7,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,10,0,749,11,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1245,-4,0,1420,0,0,0 +2013,5,30,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,850,0,0,1110,15,1,0 +2013,6,24,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-9,0,643,-9,0,0 +2013,9,23,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1810,0,0,2020,3,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,-2,0,2110,-17,0,0 +2013,5,31,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,812,5,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1912,-1,0,2025,-12,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,19,1,1420,15,1,0 +2013,5,28,2,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,-6,0,1648,-3,0,0 +2013,7,19,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1459,40,1,1649,56,1,0 +2013,10,11,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-4,0,1111,-5,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,625,-1,0,920,-6,0,0 +2013,8,18,7,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2155,8,0,543,39,1,0 +2013,6,11,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1810,50,1,2005,43,1,0 +2013,6,9,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1201,-14,0,0 +2013,8,19,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-9,0,1254,-1,0,0 +2013,4,16,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1027,5,0,1159,49,1,0 +2013,9,15,7,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1338,-6,0,1446,-13,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1726,11,0,1909,3,0,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2241,-4,0,631,-3,0,0 +2013,5,5,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-6,0,1007,-17,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-7,0,922,-23,0,0 +2013,5,13,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,-8,0,1207,-7,0,0 +2013,5,12,7,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1705,33,1,1810,23,1,0 +2013,7,11,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-7,0,1911,-13,0,0 +2013,9,15,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-10,0,1812,-11,0,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1755,3,0,2021,-13,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1528,7,0,1655,-13,0,0 +2013,5,28,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1415,0,0,1534,-1,0,0 +2013,6,20,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1130,-5,0,1226,0,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2005,-2,0,2125,-5,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,1,0,1555,-14,0,0 +2013,9,10,2,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,800,-3,0,1110,-30,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2005,-1,0,2110,-4,0,0 +2013,7,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,955,-1,0,1600,8,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1920,10,0,4,25,1,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-5,0,930,-17,0,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1530,32,1,1800,28,1,0 +2013,4,7,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1440,-4,0,1523,-3,0,0 +2013,10,7,1,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2103,25,1,11,-5,0,0 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1945,4,0,2255,-4,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,836,-6,0,1201,-19,0,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,0,0,828,11,0,0 +2013,10,8,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1710,17,1,2016,-4,0,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,931,-9,0,1300,-20,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1745,0,0,2025,10,0,0 +2013,5,10,5,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1134,9,0,1515,10,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1252,5,0,1637,4,0,0 +2013,9,9,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-9,0,1415,-25,0,0 +2013,6,6,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1037,65,1,1421,38,1,0 +2013,10,31,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-6,0,1047,10,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1130,8,0,1417,4,0,0 +2013,9,7,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-5,0,945,-21,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1930,9,0,35,7,0,0 +2013,10,9,3,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1451,22,1,1609,20,1,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1040,6,0,1210,8,0,0 +2013,5,18,6,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1640,-3,0,1955,-20,0,0 +2013,7,22,1,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,-5,0,1711,1,0,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,600,2,0,715,-1,0,0 +2013,6,20,4,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,29,1,1820,11,0,0 +2013,10,4,5,YV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,758,-3,0,915,-8,0,0 +2013,8,16,5,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1010,116,1,1325,97,1,0 +2013,10,10,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,-1,0,1308,-12,0,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1045,-3,0,1654,-16,0,0 +2013,7,5,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-10,0,930,3,0,0 +2013,9,19,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2347,-9,0,715,-26,0,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1655,-5,0,1923,-26,0,0 +2013,5,16,4,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2130,-4,0,2350,-8,0,0 +2013,9,2,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1559,285,1,1739,258,1,0 +2013,6,12,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1825,23,1,2019,21,1,0 +2013,4,20,6,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,725,-1,0,820,-7,0,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-6,0,1707,-20,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,720,29,1,930,14,0,0 +2013,7,29,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,15,1,949,10,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,930,-3,0,1130,-24,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1220,0,,1525,0,1,1 +2013,9,24,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-8,0,1315,-14,0,0 +2013,5,15,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,-6,0,1602,-19,0,0 +2013,10,25,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,18,1,1545,12,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,144,1,1005,131,1,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,-1,0,835,-13,0,0 +2013,5,2,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,921,-1,0,1044,-10,0,0 +2013,9,26,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1935,-10,0,2013,8,0,0 +2013,10,20,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-5,0,947,-19,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2135,7,0,2310,16,1,0 +2013,8,31,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,647,-4,0,950,0,0,0 +2013,8,3,6,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,0,0,856,-4,0,0 +2013,8,31,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1310,-6,0,1607,5,0,0 +2013,5,19,7,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,730,14,0,1029,2,0,0 +2013,6,18,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,74,1,1809,83,1,0 +2013,4,12,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-7,0,650,-14,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,38,1,2222,25,1,0 +2013,8,16,5,YV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2204,-2,0,2319,-21,0,0 +2013,8,18,7,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1339,-4,0,1625,11,0,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1030,2,0,1144,3,0,0 +2013,7,14,7,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,708,-7,0,1033,7,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1510,-2,0,1605,3,0,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1659,35,1,1843,29,1,0 +2013,6,9,7,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1350,-11,0,1800,-21,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-2,0,1054,-11,0,0 +2013,5,13,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-1,0,1040,-6,0,0 +2013,10,13,7,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1100,-3,0,1250,1,0,0 +2013,4,27,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,-6,0,2157,-12,0,0 +2013,6,28,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1517,22,1,1650,14,0,0 +2013,5,5,7,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1300,-5,0,1440,-7,0,0 +2013,10,8,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-5,0,1159,-4,0,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,725,-2,0,822,-18,0,0 +2013,5,9,4,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1250,-2,0,1405,-7,0,0 +2013,9,28,6,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1053,-7,0,1239,-20,0,0 +2013,4,14,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,830,3,0,0 +2013,6,17,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,8,0,1257,-9,0,0 +2013,10,23,3,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1225,-5,0,1552,-23,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,9,0,2200,9,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,700,-7,0,831,-10,0,0 +2013,9,10,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1010,0,0,1244,-6,0,0 +2013,8,10,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1959,15,1,2247,39,1,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2120,31,1,2354,44,1,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2105,0,0,2251,2,0,0 +2013,10,24,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1305,-6,0,1500,6,0,0 +2013,4,24,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1805,135,1,2344,112,1,0 +2013,5,29,3,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-2,0,1210,2,0,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,38,1,1229,34,1,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1100,-10,0,1245,-23,0,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1318,-3,0,1907,-26,0,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,-4,0,1425,-1,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1525,20,1,1705,20,1,0 +2013,10,27,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,803,18,1,1302,5,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1810,-3,0,1943,-16,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2049,0,0,2348,62,1,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,750,0,,905,0,1,1 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,745,-3,0,1130,3,0,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-5,0,2057,-12,0,0 +2013,5,29,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,11,0,750,10,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,-3,0,1832,-14,0,0 +2013,5,4,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1855,5,0,2020,0,0,0 +2013,6,30,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,39,1,1800,53,1,0 +2013,8,3,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1729,41,1,2015,52,1,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,805,-3,0,1500,-3,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,13,0,2205,15,1,0 +2013,6,12,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,915,-3,0,1005,-14,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,610,-2,0,1125,-24,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1859,7,0,2141,-3,0,0 +2013,4,24,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,830,2,0,900,15,1,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,910,-1,0,1130,5,0,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,6,0,904,-15,0,0 +2013,4,12,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,914,-8,0,1130,-10,0,0 +2013,10,5,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,0,0,1345,-15,0,0 +2013,5,23,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1156,53,1,1451,32,1,0 +2013,8,12,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2200,-9,0,2307,-15,0,0 +2013,6,14,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1424,-4,0,1605,-13,0,0 +2013,6,7,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1228,23,1,1347,27,1,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,37,1,2347,20,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,810,-2,0,1025,1,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1118,-7,0,1427,-13,0,0 +2013,7,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-6,0,749,19,1,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,730,-8,0,950,-16,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,-3,0,1013,12,0,0 +2013,8,30,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-5,0,1857,-18,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1644,-3,0,115,-21,0,0 +2013,8,15,4,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,2340,33,1,700,24,1,0 +2013,4,25,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1110,46,1,1400,57,1,0 +2013,7,7,7,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-7,0,1345,-22,0,0 +2013,8,20,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1417,-3,0,0 +2013,10,19,6,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,2,0,805,6,0,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,6,0,2107,0,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1117,13,0,1302,36,1,0 +2013,4,28,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1737,-5,0,2140,-9,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1930,2,0,2030,3,0,0 +2013,8,2,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-2,0,1757,-8,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1615,-1,0,1948,-18,0,0 +2013,4,18,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1320,0,0,1525,63,1,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1215,1,0,1935,-3,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,-7,0,1248,0,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2155,66,1,5,69,1,0 +2013,10,21,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-7,0,840,30,1,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,0,0,2307,6,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1750,8,0,1952,-8,0,0 +2013,9,16,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,10,0,1605,10,0,0 +2013,5,8,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,2,0,802,-4,0,0 +2013,10,15,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,20,1,2115,13,0,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,820,-17,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-4,0,1004,-14,0,0 +2013,4,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,756,-5,0,931,-15,0,0 +2013,4,11,4,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1838,85,1,2108,66,1,0 +2013,5,31,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1804,0,0,2159,-11,0,0 +2013,10,8,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-5,0,1205,0,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,27,1,1955,14,0,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1035,6,0,1355,1,0,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2040,11,0,2145,7,0,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1339,-4,0,1534,-17,0,0 +2013,5,21,2,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1700,22,1,2032,35,1,0 +2013,9,6,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-3,0,1835,-11,0,0 +2013,8,2,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,28,1,847,14,0,0 +2013,7,16,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,8,0,1115,-6,0,0 +2013,4,8,1,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1340,-5,0,1512,4,0,0 +2013,8,12,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,-1,0,1434,-2,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,14,0,2226,14,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1038,9,0,1415,-1,0,0 +2013,9,7,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1055,-2,0,1220,-10,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,630,-5,0,818,-17,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1440,-1,0,1755,-12,0,0 +2013,9,30,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,549,-4,0,712,-18,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,811,29,1,1031,3,0,0 +2013,9,28,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1400,1,0,1520,3,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1955,31,1,2145,16,1,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,3,0,2100,-3,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,4,0,1805,8,0,0 +2013,10,14,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,1,0,1507,8,0,0 +2013,6,18,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1820,-4,0,2111,-21,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,100,1,1922,141,1,0 +2013,10,28,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1720,0,0,2100,-21,0,0 +2013,6,24,1,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1655,-3,0,1822,-7,0,0 +2013,7,28,7,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,910,43,1,1040,33,1,0 +2013,6,12,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,107,1,17,90,1,0 +2013,6,11,2,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,606,-2,0,726,-1,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1500,21,1,1940,-6,0,0 +2013,5,6,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-3,0,1255,-56,0,0 +2013,9,27,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,923,-3,0,1040,-9,0,0 +2013,6,23,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,845,-4,0,1000,-11,0,0 +2013,5,10,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-1,0,728,-6,0,0 +2013,5,6,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,705,17,1,915,17,1,0 +2013,6,8,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1809,-3,0,1926,-16,0,0 +2013,10,12,6,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,1,0,2133,-10,0,0 +2013,6,8,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-3,0,1640,-16,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,23,1,1340,30,1,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1335,-2,0,1835,-4,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1505,7,0,1645,3,0,0 +2013,4,30,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,831,17,1,1000,5,0,0 +2013,8,22,4,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1020,-4,0,1125,-20,0,0 +2013,4,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,941,-4,0,1259,-10,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,15,1,2255,24,1,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,630,-6,0,807,-18,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,33,1,1955,19,1,0 +2013,9,25,3,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1016,-5,0,1230,5,0,0 +2013,9,21,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-7,0,730,7,0,0 +2013,5,24,5,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1538,-3,0,1856,-10,0,0 +2013,6,1,6,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-1,0,1755,55,1,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2140,5,0,35,6,0,0 +2013,6,14,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1617,47,1,1830,38,1,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,2,0,2135,-3,0,0 +2013,5,26,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,-3,0,1706,-7,0,0 +2013,7,5,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1322,0,,1410,0,1,1 +2013,10,6,7,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-5,0,1227,-37,0,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,-1,0,1210,4,0,0 +2013,4,4,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-1,0,1736,-6,0,0 +2013,5,22,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,114,1,2127,100,1,0 +2013,10,18,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-6,0,1512,-22,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1755,55,1,2015,31,1,0 +2013,7,3,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,3,0,1405,10,0,0 +2013,8,10,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,-6,0,2353,-17,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1120,-1,0,1550,-7,0,0 +2013,8,14,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,-5,0,1033,-4,0,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1347,382,1,1631,406,1,0 +2013,5,9,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-3,0,1623,-4,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1315,13,0,1545,23,1,0 +2013,8,1,4,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2308,-3,0,623,-21,0,0 +2013,7,8,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1804,0,,1925,0,1,1 +2013,6,27,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1446,0,0,2000,-11,0,0 +2013,9,17,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-1,0,855,1,0,0 +2013,9,23,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-1,0,1425,0,0,0 +2013,9,30,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,757,-6,0,910,-17,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1230,-4,0,1506,1,0,0 +2013,9,11,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2012,-9,0,2140,-14,0,0 +2013,8,9,5,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1058,-1,0,1906,-4,0,0 +2013,6,5,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,921,-2,0,1206,-7,0,0 +2013,9,9,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,-9,0,2140,-8,0,0 +2013,7,12,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2007,-4,0,2026,-7,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2255,190,1,2355,187,1,0 +2013,9,11,3,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,67,1,1910,53,1,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1045,-8,0,1246,-13,0,0 +2013,6,15,6,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1700,-5,0,1847,-33,0,0 +2013,4,10,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,3,0,735,-13,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1505,-7,0,1552,-13,0,0 +2013,8,13,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,-7,0,1253,-3,0,0 +2013,7,18,4,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,634,-4,0,1409,-4,0,0 +2013,5,1,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1514,63,1,1612,74,1,0 +2013,5,26,7,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,745,-2,0,943,-10,0,0 +2013,4,27,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,-4,0,2220,-11,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,1,0,1345,-21,0,0 +2013,10,4,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,-7,0,1946,-11,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,720,-1,0,850,-15,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,828,-7,0,0 +2013,7,23,2,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2050,-4,0,2344,-18,0,0 +2013,7,7,7,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2105,-3,0,458,-4,0,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,19,1,1606,21,1,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1215,-2,0,1510,-12,0,0 +2013,10,6,7,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1740,20,1,1909,9,0,0 +2013,4,11,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,-6,0,940,1,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,176,1,1830,169,1,0 +2013,7,5,5,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1649,-6,0,1828,-10,0,0 +2013,9,12,4,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1020,-1,0,1130,-2,0,0 +2013,8,12,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1526,-1,0,1825,-11,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,957,-20,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,114,1,1415,119,1,0 +2013,9,28,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1135,7,0,1700,1,0,0 +2013,4,24,3,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,7,0,2105,26,1,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2045,75,1,2330,70,1,0 +2013,4,16,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1605,-10,0,1741,-17,0,0 +2013,8,11,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1434,67,1,1525,63,1,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,-1,0,1035,-5,0,0 +2013,7,25,4,UA,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,-10,0,918,-23,0,0 +2013,7,15,1,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,-2,0,1950,9,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1815,-1,0,1941,28,1,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,7,0,903,5,0,0 +2013,4,16,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,0,,1940,0,1,1 +2013,5,8,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,52,1,1020,51,1,0 +2013,5,21,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,725,1,0,1115,-2,0,0 +2013,6,1,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1635,2,0,1725,-1,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1004,3,0,1250,1,0,0 +2013,7,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1124,-5,0,1227,-17,0,0 +2013,10,12,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2355,-7,0,547,-27,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1449,-7,0,1626,-17,0,0 +2013,9,27,5,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1852,-8,0,2030,-8,0,0 +2013,5,4,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-10,0,1120,-22,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2209,-1,0,2348,1,0,0 +2013,4,15,1,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,810,-4,0,1041,-6,0,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1750,115,1,1915,102,1,0 +2013,6,20,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1651,-3,0,1812,-8,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1021,-3,0,1551,5,0,0 +2013,10,28,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,940,-1,0,1633,-27,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,830,-2,0,1034,-7,0,0 +2013,6,8,6,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1125,-7,0,1336,-9,0,0 +2013,7,13,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2105,-7,0,458,-18,0,0 +2013,7,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-6,0,1812,-14,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,14,0,1813,35,1,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,839,-2,0,1450,-29,0,0 +2013,9,24,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1837,-7,0,2057,-8,0,0 +2013,10,30,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1430,4,0,1535,-6,0,0 +2013,6,1,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1820,12,0,1920,3,0,0 +2013,10,14,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-9,0,1251,-10,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,920,6,0,1630,1,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1935,88,1,2115,81,1,0 +2013,10,31,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1640,-7,0,1900,-6,0,0 +2013,10,17,4,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,700,-2,0,910,2,0,0 +2013,10,28,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-4,0,1450,-3,0,0 +2013,6,5,3,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,730,-5,0,835,-12,0,0 +2013,4,28,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1541,5,0,0 +2013,5,18,6,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1007,-4,0,1120,-17,0,0 +2013,5,18,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-3,0,940,-8,0,0 +2013,8,1,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,10,0,2015,16,1,0 +2013,4,23,2,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-9,0,913,-13,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1423,13,0,1709,-5,0,0 +2013,4,25,4,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1350,16,1,2135,7,0,0 +2013,7,28,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1925,25,1,2103,22,1,0 +2013,5,19,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1621,67,1,1800,60,1,0 +2013,7,20,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1110,17,1,1250,10,0,0 +2013,4,23,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,800,2,0,0 +2013,8,7,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,600,-4,0,729,-11,0,0 +2013,10,21,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,1,0,940,-20,0,0 +2013,10,13,7,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1515,-7,0,1613,7,0,0 +2013,6,14,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,-12,0,2130,-21,0,0 +2013,9,26,4,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,-1,0,2300,-2,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1100,-5,0,1255,-28,0,0 +2013,10,17,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1130,2,0,1500,0,0,0 +2013,6,15,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,600,-6,0,906,-10,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,75,1,2137,67,1,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,53,1,927,46,1,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,645,-3,0,1252,-16,0,0 +2013,10,16,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1251,0,0,0 +2013,6,26,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,115,-11,0,615,-13,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1940,0,0,2207,-19,0,0 +2013,4,8,1,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1110,-9,0,1411,-21,0,0 +2013,5,5,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-6,0,1823,-25,0,0 +2013,9,17,2,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1240,-5,0,1631,51,1,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,-13,0,1713,-15,0,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,-2,0,1625,-12,0,0 +2013,5,27,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1146,3,0,1433,-2,0,0 +2013,4,8,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,0,0,1016,-16,0,0 +2013,7,15,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-2,0,815,-12,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2015,1,0,2324,-14,0,0 +2013,9,11,3,EV,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1648,3,0,2050,-8,0,0 +2013,7,27,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,0,0,1640,-9,0,0 +2013,7,22,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,831,-27,0,0 +2013,10,4,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1626,-2,0,1942,4,0,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1549,-3,0,1728,-14,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-3,0,1325,-32,0,0 +2013,5,15,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,600,-3,0,730,-1,0,0 +2013,9,13,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1530,2,0,1630,0,0,0 +2013,8,16,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-4,0,845,-10,0,0 +2013,4,2,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1457,-5,0,1650,-14,0,0 +2013,5,20,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1320,11,0,1446,12,0,0 +2013,7,7,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,8,0,1937,-2,0,0 +2013,8,12,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-7,0,1033,-13,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1200,1,0,1449,-2,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,839,0,0,1037,-5,0,0 +2013,10,4,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,600,-5,0,728,-4,0,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1835,15,1,2032,6,0,0 +2013,6,24,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,-8,0,1640,-21,0,0 +2013,9,23,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1000,-8,0,1205,-6,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,8,0,1100,5,0,0 +2013,6,6,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,44,1,1220,33,1,0 +2013,4,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1535,86,1,1755,77,1,0 +2013,7,4,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,1,0,830,-2,0,0 +2013,8,17,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1654,-1,0,1954,8,0,0 +2013,7,7,7,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,820,-7,0,940,-11,0,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1752,16,1,1926,9,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1305,4,0,1440,6,0,0 +2013,9,19,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-2,0,1813,-27,0,0 +2013,9,15,7,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1910,-4,0,2140,-5,0,0 +2013,10,14,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-8,0,2041,-8,0,0 +2013,7,27,6,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1703,2,0,1830,1,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1503,5,0,1631,12,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,24,1,2020,24,1,0 +2013,6,18,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1220,-10,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1451,63,1,1929,47,1,0 +2013,10,29,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1715,-2,0,1750,-5,0,0 +2013,8,23,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1610,-6,0,1709,-2,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2015,90,1,2129,77,1,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,730,-3,0,1056,2,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1450,0,0,1717,-3,0,0 +2013,5,8,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-7,0,701,-15,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2135,27,1,35,19,1,0 +2013,7,21,7,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1915,34,1,2100,27,1,0 +2013,8,17,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,4,0,1209,4,0,0 +2013,7,17,3,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,5,0,2025,0,0,0 +2013,7,12,5,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,2010,18,1,2155,7,0,0 +2013,5,3,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,930,-5,0,1100,-7,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,-1,0,2357,-7,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,820,-4,0,1300,-8,0,0 +2013,10,25,5,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2221,-4,0,643,-24,0,0 +2013,8,31,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,1,0,1828,4,0,0 +2013,10,21,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1054,-10,0,0 +2013,10,8,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1308,-7,0,1327,-11,0,0 +2013,7,24,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,7,0,2340,6,0,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1840,-1,0,2127,-2,0,0 +2013,8,2,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1601,7,0,1722,-3,0,0 +2013,10,13,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,-8,0,1028,-11,0,0 +2013,10,23,3,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1745,-3,0,2005,-5,0,0 +2013,8,6,2,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1105,-7,0,1330,-18,0,0 +2013,6,28,5,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-7,0,1555,-11,0,0 +2013,6,27,4,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,-3,0,2023,18,1,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2135,3,0,530,15,1,0 +2013,5,10,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,0,0,1126,5,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2029,0,0,2359,-20,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1435,13,0,1750,12,0,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1019,11,0,1316,-5,0,0 +2013,9,12,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1405,5,0,1600,-10,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,1,0,1402,4,0,0 +2013,4,12,5,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,19,1,810,-1,0,0 +2013,8,18,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1055,-5,0,1330,-14,0,0 +2013,9,12,4,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1022,-4,0,1027,-1,0,0 +2013,8,21,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1955,69,1,144,67,1,0 +2013,5,18,6,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,-2,0,1105,-8,0,0 +2013,6,19,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,6,0,2139,14,0,0 +2013,10,1,2,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1347,107,1,1520,89,1,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,0,0,1752,-18,0,0 +2013,8,6,2,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1743,-2,0,2014,-4,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,705,-4,0,815,-17,0,0 +2013,8,1,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,-1,0,1605,-3,0,0 +2013,6,22,6,OO,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,940,0,0,1153,-2,0,0 +2013,4,20,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-4,0,1206,-10,0,0 +2013,6,14,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,751,-3,0,926,-7,0,0 +2013,5,10,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,3,0,1609,-13,0,0 +2013,7,4,4,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-5,0,918,-16,0,0 +2013,5,24,5,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1710,-2,0,2223,-12,0,0 +2013,10,10,4,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1510,1,0,1812,-18,0,0 +2013,7,15,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1720,72,1,2000,57,1,0 +2013,9,8,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2025,-3,0,2110,4,0,0 +2013,4,14,7,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,196,1,2015,201,1,0 +2013,4,8,1,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,800,-7,0,0 +2013,6,3,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-8,0,2315,-3,0,0 +2013,7,1,1,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-6,0,1240,-16,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,845,0,0,950,1,0,0 +2013,10,14,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,32,1,929,25,1,0 +2013,10,17,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,759,-10,0,1045,-19,0,0 +2013,10,3,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2107,65,1,2219,51,1,0 +2013,7,11,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,-4,0,1048,-2,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1945,-3,0,2105,-4,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1455,1,0,1555,-9,0,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,0,0,1445,37,1,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1535,1,0,1630,3,0,0 +2013,5,15,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-1,0,955,-9,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2130,-3,0,25,-7,0,0 +2013,4,29,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,9,0,815,25,1,0 +2013,5,18,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-2,0,909,1,0,0 +2013,10,12,6,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1855,1,0,2205,-7,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1200,19,1,1256,13,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1030,-7,0,1405,-1,0,0 +2013,7,9,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,9,0,1345,1,0,0 +2013,8,15,4,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1830,26,1,2055,21,1,0 +2013,10,9,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,846,-6,0,1039,-3,0,0 +2013,10,21,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-5,0,1107,-10,0,0 +2013,6,29,6,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,6,0,1458,3,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,854,-1,0,1040,-14,0,0 +2013,6,18,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,67,1,2045,58,1,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2040,-8,0,2248,-3,0,0 +2013,6,8,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,1,0,838,-12,0,0 +2013,8,29,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1124,11,0,1453,8,0,0 +2013,4,2,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,700,3,0,930,3,0,0 +2013,4,3,3,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1215,-2,0,2040,-3,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1135,-1,0,1245,-12,0,0 +2013,6,8,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,19,1,1759,20,1,0 +2013,4,14,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1700,1,0,2000,-11,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,930,20,1,1203,33,1,0 +2013,5,19,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,810,-9,0,0 +2013,4,23,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-4,0,805,20,1,0 +2013,5,2,4,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-2,0,1538,-8,0,0 +2013,7,8,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1715,-2,0,2026,7,0,0 +2013,8,11,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2140,0,0,2237,-6,0,0 +2013,6,20,4,FL,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1908,5,0,2213,-2,0,0 +2013,10,24,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,830,-5,0,0 +2013,6,27,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,104,1,1630,95,1,0 +2013,9,7,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,0,0,1855,6,0,0 +2013,5,20,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,950,-11,0,0 +2013,5,29,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1215,-12,0,1334,-14,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1455,-2,0,2105,-4,0,0 +2013,5,10,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,-4,0,1452,-13,0,0 +2013,5,1,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-1,0,1335,-16,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1156,30,1,1438,23,1,0 +2013,6,19,3,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-2,0,721,-7,0,0 +2013,6,22,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,0,0,835,-7,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1735,2,0,1856,2,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,2000,13,0,2135,15,1,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,-3,0,628,15,1,0 +2013,5,22,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1855,9,0,1955,1,0,0 +2013,8,25,7,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-3,0,1526,-7,0,0 +2013,10,13,7,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,925,-3,0,1048,7,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1935,11,0,2215,4,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-5,0,1149,-12,0,0 +2013,5,17,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,858,3,0,932,1,0,0 +2013,7,1,1,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,9,0,2230,-1,0,0 +2013,8,6,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1325,-7,0,1633,-5,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1035,-5,0,1200,-14,0,0 +2013,9,10,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1620,19,1,1805,7,0,0 +2013,4,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,832,-3,0,934,-3,0,0 +2013,9,4,3,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,-7,0,1935,-4,0,0 +2013,10,14,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,14,0,1230,1,0,0 +2013,10,13,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1635,14,0,1750,4,0,0 +2013,6,15,6,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,10,0,1325,-2,0,0 +2013,4,28,7,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-10,0,1751,14,0,0 +2013,7,30,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,-4,0,1901,-3,0,0 +2013,10,20,7,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1532,-5,0,1750,-13,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,4,0,1558,24,1,0 +2013,6,19,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-2,0,1802,-1,0,0 +2013,4,28,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,17,1,1650,-2,0,0 +2013,7,17,3,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,546,-5,0,759,-12,0,0 +2013,9,25,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-7,0,1745,-21,0,0 +2013,4,10,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,13,0,1150,25,1,0 +2013,6,26,3,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1651,6,0,1900,-15,0,0 +2013,9,7,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-9,0,2035,-19,0,0 +2013,9,4,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,844,2,0,1135,-6,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,-5,0,2340,-20,0,0 +2013,8,13,2,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,2,0,1016,-14,0,0 +2013,4,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-8,0,1024,-21,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,73,1,2117,107,1,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,921,2,0,1035,-8,0,0 +2013,10,10,4,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1850,-4,0,2200,-16,0,0 +2013,9,29,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-8,0,1955,-5,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1220,15,1,1325,9,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,745,-3,0,1040,-7,0,0 +2013,6,5,3,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,-5,0,1655,-5,0,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1855,38,1,2240,29,1,0 +2013,5,4,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1417,-3,0,1623,6,0,0 +2013,9,9,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-9,0,1958,-13,0,0 +2013,6,23,7,9E,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1935,59,1,2223,115,1,0 +2013,6,25,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,640,0,0,1441,24,1,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-4,0,1335,-8,0,0 +2013,4,22,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-5,0,1023,8,0,0 +2013,7,5,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1748,10,0,2035,-8,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1435,57,1,1805,59,1,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1630,2,0,1845,-3,0,0 +2013,9,9,1,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,-6,0,1818,-31,0,0 +2013,9,16,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,710,4,0,835,-7,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-4,0,1525,-6,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,6,0,1155,-4,0,0 +2013,9,15,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-9,0,947,-10,0,0 +2013,10,20,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1410,4,0,2000,10,0,0 +2013,5,26,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-1,0,810,0,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-5,0,1612,-9,0,0 +2013,5,8,3,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1930,87,1,2143,117,1,0 +2013,7,15,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,-5,0,1355,-11,0,0 +2013,6,14,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,1,0,825,-1,0,0 +2013,6,18,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-3,0,1450,3,0,0 +2013,8,28,3,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1030,-2,0,1220,-9,0,0 +2013,6,7,5,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,814,-13,0,926,-10,0,0 +2013,6,23,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-3,0,925,6,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1726,0,0,1840,-16,0,0 +2013,4,1,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,-9,0,2001,-1,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1549,-1,0,2021,70,1,0 +2013,10,25,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1218,-7,0,1420,-19,0,0 +2013,4,10,3,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,625,-2,0,915,-12,0,0 +2013,9,13,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,-1,0,2038,4,0,0 +2013,7,8,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,953,39,1,1121,25,1,0 +2013,4,18,4,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1110,31,1,1345,4,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,-8,0,2123,-12,0,0 +2013,9,29,7,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,2201,25,1,2303,17,1,0 +2013,4,8,1,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1729,-10,0,2044,-39,0,0 +2013,8,16,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1325,-1,0,1455,-16,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,0,0,1115,-1,0,0 +2013,8,31,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,-3,0,1205,-16,0,0 +2013,8,16,5,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,13,0,1800,6,0,0 +2013,4,29,1,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,3,0,1708,7,0,0 +2013,6,30,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,640,-1,0,755,4,0,0 +2013,4,26,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1950,7,0,2205,-2,0,0 +2013,6,3,1,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,3,0,1135,7,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1502,1,0,1731,27,1,0 +2013,7,9,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1909,41,1,2200,51,1,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1810,62,1,1930,48,1,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,710,-3,0,942,-9,0,0 +2013,4,10,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1920,-2,0,2119,4,0,0 +2013,8,3,6,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1005,73,1,1125,64,1,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,815,-2,0,1125,-14,0,0 +2013,6,13,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-2,0,715,6,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,-2,0,2106,-19,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1655,-1,0,2230,-6,0,0 +2013,9,8,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-5,0,1415,4,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2150,-2,0,2335,0,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,14,0,2045,23,1,0 +2013,10,11,5,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-12,0,1020,-10,0,0 +2013,5,18,6,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,925,-8,0,1110,-28,0,0 +2013,4,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1757,12,0,1946,8,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,19,1,1613,5,0,0 +2013,7,25,4,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-1,0,1006,14,0,0 +2013,6,22,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-3,0,1810,-12,0,0 +2013,10,2,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,910,-7,0,1031,-13,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1625,10,0,1745,5,0,0 +2013,8,30,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1943,11,0,2123,1,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1950,12,0,2110,7,0,0 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,920,-3,0,1045,-4,0,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2210,0,0,50,5,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,5,0,2225,-3,0,0 +2013,7,11,4,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1314,4,0,1620,-4,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,2,0,1750,11,0,0 +2013,10,26,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1158,-9,0,1326,-11,0,0 +2013,6,16,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,2,0,1309,-9,0,0 +2013,4,22,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1737,40,1,1944,55,1,0 +2013,7,9,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,611,-3,0,822,6,0,0 +2013,10,8,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,8,0,2049,8,0,0 +2013,8,11,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,745,-3,0,1014,-9,0,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1940,16,1,2030,2,0,0 +2013,7,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1735,16,1,2045,17,1,0 +2013,9,29,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,1030,-27,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1345,20,1,1445,14,0,0 +2013,7,12,5,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,620,-1,0,717,1,0,0 +2013,5,19,7,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,9,0,1545,-9,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,-4,0,1420,-13,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,4,0,1933,3,0,0 +2013,7,16,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,-7,0,2208,-3,0,0 +2013,6,4,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-6,0,2020,-5,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,7,0,2350,7,0,0 +2013,4,22,1,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1725,44,1,2101,52,1,0 +2013,8,8,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1943,7,0,59,9,0,0 +2013,6,17,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-9,0,1645,3,0,0 +2013,8,1,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2037,31,1,2148,17,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-1,0,1035,-7,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,0,0,1250,8,0,0 +2013,4,23,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-6,0,1355,20,1,0 +2013,4,9,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,5,0,1630,0,0,0 +2013,5,8,3,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1355,-11,0,1617,-20,0,0 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,605,1,0,720,1,0,0 +2013,5,30,4,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,39,1,1950,75,1,0 +2013,6,18,2,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,2011,84,1,2323,78,1,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1600,-4,0,1741,-17,0,0 +2013,4,15,1,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1925,31,1,2055,6,0,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1730,28,1,1835,23,1,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1445,-2,0,1600,8,0,0 +2013,4,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,13,0,2019,15,1,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,8,0,1725,2,0,0 +2013,8,17,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,740,7,0,905,7,0,0 +2013,10,11,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2105,43,1,2235,35,1,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1010,-2,0,1237,-13,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-1,0,1249,-15,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,-12,0,2344,-18,0,0 +2013,7,23,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1340,3,0,1440,2,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1200,-9,0,1509,9,0,0 +2013,9,5,4,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,1630,11,0,1910,16,1,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,31,1,2345,24,1,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,845,-3,0,1254,-31,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1257,-4,0,1413,-15,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,20,1,1245,18,1,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1040,-2,0,1217,-9,0,0 +2013,9,12,4,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1125,34,1,1422,51,1,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1205,5,0,1610,-1,0,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1810,-4,0,2027,-37,0,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,700,-4,0,837,-10,0,0 +2013,9,1,7,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-10,0,919,-14,0,0 +2013,10,14,1,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,18,1,837,16,1,0 +2013,7,14,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,31,1,2206,26,1,0 +2013,9,17,2,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,5,0,2000,-8,0,0 +2013,7,28,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1440,125,1,1555,145,1,0 +2013,4,8,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1430,-2,0,1728,4,0,0 +2013,5,13,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,13,0,1125,12,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,0,0,1515,-29,0,0 +2013,9,29,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1409,-5,0,1513,-8,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1255,-4,0,1532,5,0,0 +2013,4,15,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,920,13,0,1045,7,0,0 +2013,5,14,2,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1755,142,1,2116,100,1,0 +2013,5,6,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-5,0,1140,-14,0,0 +2013,6,23,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2128,-9,0,21,-15,0,0 +2013,7,13,6,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,754,-1,0,939,-8,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1959,3,0,2118,2,0,0 +2013,5,11,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1050,30,1,1215,27,1,0 +2013,6,10,1,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1255,2,0,1430,-4,0,0 +2013,5,8,3,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1501,0,,1820,0,1,1 +2013,4,19,5,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-5,0,1630,0,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1823,0,0,2055,5,0,0 +2013,6,5,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-11,0,857,-13,0,0 +2013,5,10,5,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1430,83,1,1603,75,1,0 +2013,6,17,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,59,1,1224,52,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1528,-3,0,1653,19,1,0 +2013,8,1,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,5,0,510,-2,0,0 +2013,6,29,6,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,-4,0,1956,-30,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1915,117,1,2103,108,1,0 +2013,4,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1006,-4,0,1159,-25,0,0 +2013,6,24,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2345,25,1,714,23,1,0 +2013,10,24,4,9E,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,623,-9,0,805,-17,0,0 +2013,5,15,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,825,0,0,0 +2013,4,15,1,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1405,1,0,1525,0,0,0 +2013,9,10,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1120,-2,0,1225,-4,0,0 +2013,10,18,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1545,-1,0,1705,-1,0,0 +2013,6,13,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,-4,0,2113,-3,0,0 +2013,5,28,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-4,0,1450,3,0,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,8,0,1328,-6,0,0 +2013,7,9,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-3,0,725,-1,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1155,-1,0,1359,-13,0,0 +2013,9,26,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,935,-5,0,1153,-7,0,0 +2013,6,28,5,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-4,0,1625,-1,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,700,-2,0,1235,1,0,0 +2013,5,4,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,0,0,1820,-12,0,0 +2013,8,2,5,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,0,0,928,3,0,0 +2013,7,11,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,750,1,0,1035,12,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1600,60,1,1735,59,1,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1545,17,1,1650,12,0,0 +2013,8,4,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,930,-2,0,1234,0,0,0 +2013,9,1,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,4,0,1205,-5,0,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,819,5,0,1031,-27,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1945,-4,0,2154,-8,0,0 +2013,4,21,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1526,18,1,1817,41,1,0 +2013,8,9,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,-3,0,1410,-18,0,0 +2013,10,19,6,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-5,0,1625,-7,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,8,0,2245,4,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2235,3,0,2355,10,0,0 +2013,6,8,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-4,0,1750,-13,0,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,3,0,2125,-23,0,0 +2013,4,1,1,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,735,-3,0,1330,-23,0,0 +2013,4,17,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-4,0,2045,0,0,0 +2013,10,26,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1115,-12,0,0 +2013,8,16,5,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,942,7,0,1134,1,0,0 +2013,8,22,4,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1515,16,1,1700,20,1,0 +2013,4,1,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1620,1,0,1820,-5,0,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1909,16,1,2149,-19,0,0 +2013,7,18,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-1,0,1237,2,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1548,-6,0,2359,-9,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1129,-5,0,1401,-15,0,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1600,-7,0,1655,-11,0,0 +2013,9,5,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1057,-26,0,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1340,-2,0,1639,-13,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,0,,1530,0,1,1 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1210,-3,0,1425,2,0,0 +2013,9,11,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,13,0,2350,19,1,0 +2013,5,30,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2025,10,0,2105,3,0,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2143,-5,0,2236,-14,0,0 +2013,10,14,1,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1920,15,1,2030,10,0,0 +2013,10,10,4,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1609,0,0,1818,4,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-2,0,1833,1,0,0 +2013,8,21,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1535,-7,0,1810,-5,0,0 +2013,6,19,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2255,-4,0,4,2,0,0 +2013,4,7,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1955,2,0,2115,-8,0,0 +2013,7,14,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,20,-10,0,732,-23,0,0 +2013,9,21,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,826,-8,0,1018,-5,0,0 +2013,5,22,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-7,0,1044,-20,0,0 +2013,8,23,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1510,17,1,1800,14,0,0 +2013,5,12,7,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-8,0,1825,-14,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,905,43,1,1125,32,1,0 +2013,7,22,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,0,,800,0,1,1 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,740,1,0,910,-14,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2155,76,1,2356,86,1,0 +2013,6,24,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1517,16,1,2025,-1,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,11,0,1555,-5,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,710,4,0,1010,3,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,735,-3,0,1005,-14,0,0 +2013,6,25,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1512,113,1,1830,114,1,0 +2013,9,11,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1345,-6,0,1730,2,0,0 +2013,9,22,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,-2,0,1459,10,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,15,1,1535,14,0,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,19,1,1415,13,0,0 +2013,9,15,7,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1815,-4,0,1917,-13,0,0 +2013,5,31,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1900,-7,0,2135,10,0,0 +2013,8,18,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1839,77,1,1945,72,1,0 +2013,10,2,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,750,-6,0,1020,10,0,0 +2013,7,9,2,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,10,0,1340,31,1,0 +2013,4,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1200,5,0,1432,8,0,0 +2013,6,25,2,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1730,58,1,1843,74,1,0 +2013,5,24,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,-7,0,1315,-17,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,721,-5,0,1130,-20,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,6,0,1555,-3,0,0 +2013,8,3,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,705,-11,0,0 +2013,5,22,3,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1638,-3,0,1927,-10,0,0 +2013,8,8,4,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,0,0,2200,-2,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1516,-2,0,1638,10,0,0 +2013,6,4,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-4,0,1228,-14,0,0 +2013,6,15,6,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1800,-2,0,2012,-7,0,0 +2013,8,26,1,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,745,-3,0,855,-7,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,828,15,1,835,9,0,0 +2013,6,9,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,810,-5,0,920,-20,0,0 +2013,10,30,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1334,-7,0,1454,-9,0,0 +2013,10,26,6,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1809,-11,0,1827,2,0,0 +2013,5,16,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,630,-6,0,840,-18,0,0 +2013,8,8,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1114,0,0,1244,-11,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,925,-2,0,1040,-3,0,0 +2013,7,8,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,12,0,1645,12,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1800,115,1,2001,106,1,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,14,0,1940,7,0,0 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1247,-7,0,1535,-7,0,0 +2013,7,4,4,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2213,-16,0,605,-10,0,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,705,-5,0,1145,-4,0,0 +2013,7,23,2,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,0,0,1930,-7,0,0 +2013,7,22,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2003,17,1,2212,11,0,0 +2013,5,13,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1750,28,1,2000,-38,0,0 +2013,5,19,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1636,35,1,1900,22,1,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1210,13,0,1438,-3,0,0 +2013,4,4,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,600,-8,0,720,-8,0,0 +2013,5,6,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1536,5,0,1559,-9,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,-3,0,1525,-6,0,0 +2013,5,11,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-6,0,1502,2,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1320,5,0,1630,-2,0,0 +2013,10,8,2,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-6,0,1355,-25,0,0 +2013,8,25,7,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,1755,-4,0,1849,-9,0,0 +2013,6,14,5,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2130,5,0,512,-2,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1435,0,0,1540,-7,0,0 +2013,6,21,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1559,-7,0,1628,-14,0,0 +2013,9,10,2,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1338,3,0,1729,-9,0,0 +2013,4,11,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2230,-3,0,643,-15,0,0 +2013,9,2,1,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1459,-5,0,1827,-39,0,0 +2013,7,22,1,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,624,-4,0,1450,-3,0,0 +2013,8,16,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-3,0,948,27,1,0 +2013,7,5,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-4,0,1610,-16,0,0 +2013,7,28,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,936,-9,0,1031,3,0,0 +2013,7,26,5,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,925,28,1,1750,27,1,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,-2,0,1735,-13,0,0 +2013,9,10,2,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1700,33,1,1750,25,1,0 +2013,10,16,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-4,0,824,-21,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-6,0,954,-17,0,0 +2013,10,22,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,640,-3,0,815,-18,0,0 +2013,5,17,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,-11,0,1120,-14,0,0 +2013,7,14,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,28,1,1110,23,1,0 +2013,10,14,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1750,1,0,1850,-11,0,0 +2013,5,24,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1250,3,0,1355,45,1,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-4,0,2335,-14,0,0 +2013,9,5,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,610,-14,0,714,-19,0,0 +2013,4,23,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1341,103,1,1646,121,1,0 +2013,6,11,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-3,0,2058,-8,0,0 +2013,8,10,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1235,-5,0,1540,-19,0,0 +2013,5,5,7,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,13,0,1833,5,0,0 +2013,5,9,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1705,27,1,2030,28,1,0 +2013,7,7,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1836,-3,0,2009,-7,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-5,0,1304,-8,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1950,-1,0,2250,-3,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1525,72,1,1625,93,1,0 +2013,9,15,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,0,0,740,-10,0,0 +2013,5,7,2,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-6,0,1703,1,0,0 +2013,9,12,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,-2,0,1533,-6,0,0 +2013,5,10,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1410,13,0,1510,3,0,0 +2013,9,30,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-6,0,652,-9,0,0 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1214,-4,0,1734,-11,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1747,20,1,1949,20,1,0 +2013,7,18,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,725,-14,0,0 +2013,6,29,6,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-9,0,1820,-21,0,0 +2013,8,2,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1420,13,0,1657,8,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1950,1,0,2118,-4,0,0 +2013,10,17,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1700,0,0,1756,-9,0,0 +2013,9,8,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1735,-6,0,1854,-2,0,0 +2013,6,24,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,14,0,1620,9,0,0 +2013,6,20,4,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,0,0,1255,-10,0,0 +2013,5,23,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2115,128,1,2210,131,1,0 +2013,5,11,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,1121,-4,0,0 +2013,5,21,2,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1750,-4,0,2044,-6,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1925,0,,2255,0,1,1 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1545,0,,1720,0,1,1 +2013,7,14,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2155,50,1,2305,44,1,0 +2013,6,21,5,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,655,-2,0,917,-6,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-6,0,2200,-12,0,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,0,0,730,-1,0,0 +2013,6,16,7,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1650,3,0,1830,-3,0,0 +2013,7,11,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,39,1,1525,12,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,-1,0,2058,-3,0,0 +2013,5,15,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2145,-7,0,2230,-18,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,635,-2,0,1110,-3,0,0 +2013,7,3,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-7,0,1035,-13,0,0 +2013,7,17,3,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1935,-1,0,2255,-13,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1910,-1,0,2031,-20,0,0 +2013,7,25,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-8,0,1605,-17,0,0 +2013,10,24,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,755,-8,0,1035,1,0,0 +2013,5,22,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-8,0,1031,-7,0,0 +2013,5,25,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1425,-2,0,2300,23,1,0 +2013,5,5,7,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,1300,-6,0,1727,-20,0,0 +2013,4,25,4,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-11,0,1427,-10,0,0 +2013,7,30,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1050,-3,0,1145,-3,0,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,-1,0,1110,-6,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,13,0,2213,6,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,3,0,1805,-1,0,0 +2013,4,12,5,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,745,-10,0,1040,-7,0,0 +2013,8,26,1,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1400,-5,0,1535,-22,0,0 +2013,5,5,7,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1710,63,1,2157,58,1,0 +2013,9,20,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1245,35,1,1415,24,1,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,835,2,0,1010,-16,0,0 +2013,6,29,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,5,0,815,3,0,0 +2013,8,22,4,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,103,1,2135,70,1,0 +2013,10,13,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1515,12,0,1635,7,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1728,-2,0,1850,-12,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1208,0,0,1355,-14,0,0 +2013,9,5,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-2,0,1220,-8,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1035,52,1,1210,71,1,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1520,5,0,1610,-8,0,0 +2013,6,4,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1120,9,0,0 +2013,4,12,5,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1510,0,0,1730,-2,0,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,47,1,2235,4,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1430,-1,0,1525,-1,0,0 +2013,7,18,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,935,49,1,1105,43,1,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1310,57,1,1755,32,1,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,-1,0,1035,27,1,0 +2013,10,21,1,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1900,26,1,2025,21,1,0 +2013,6,8,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,918,18,1,1047,13,0,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1231,-3,0,1251,10,0,0 +2013,10,30,3,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,17,1,1910,20,1,0 +2013,9,10,2,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1308,-6,0,2037,-21,0,0 +2013,7,12,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,2,0,2000,-1,0,0 +2013,7,20,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-4,0,912,-3,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,819,15,1,1103,40,1,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,945,5,0,1700,3,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1900,-8,0,2144,-1,0,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-7,0,1037,-14,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2147,-2,0,2335,-3,0,0 +2013,6,24,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-5,0,1540,-21,0,0 +2013,7,13,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1720,-3,0,2001,-1,0,0 +2013,6,21,5,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-7,0,1704,-12,0,0 +2013,7,11,4,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1856,46,1,2035,25,1,0 +2013,10,6,7,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,43,1,2139,41,1,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2057,-2,0,2314,19,1,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-5,0,1012,18,1,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,855,2,0,950,4,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1030,2,0,1107,-4,0,0 +2013,10,3,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1605,-3,0,2113,-14,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,-3,0,920,4,0,0 +2013,7,3,3,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1415,92,1,2220,87,1,0 +2013,7,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1505,-12,0,1616,-12,0,0 +2013,9,12,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1430,-6,0,1726,25,1,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2023,-3,0,2245,-15,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2021,15,1,2115,6,0,0 +2013,8,25,7,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,-4,0,1415,-4,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,831,-4,0,0 +2013,6,17,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,134,1,2012,156,1,0 +2013,6,12,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2213,-2,0,640,-6,0,0 +2013,5,23,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-4,0,1905,-13,0,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,24,1,1845,56,1,0 +2013,4,13,6,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1710,-4,0,1924,-23,0,0 +2013,4,28,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1915,27,1,1940,22,1,0 +2013,5,19,7,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,0,0,2151,-32,0,0 +2013,5,20,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1920,129,1,2046,140,1,0 +2013,7,1,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,50,1,2016,68,1,0 +2013,9,23,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-3,0,2031,-11,0,0 +2013,6,14,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,955,246,1,1601,230,1,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1136,0,0,0 +2013,10,8,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,-11,0,1708,-19,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1035,-1,0,1218,-19,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,745,17,1,925,12,0,0 +2013,4,22,1,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,0,0,1108,-3,0,0 +2013,5,7,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1344,-8,0,1823,-23,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1600,-1,0,1705,-3,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1840,-3,0,2000,-12,0,0 +2013,4,6,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1655,-4,0,1833,3,0,0 +2013,10,18,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-5,0,2059,-11,0,0 +2013,7,4,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,200,1,843,189,1,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1600,27,1,1737,19,1,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,47,1,1550,27,1,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1830,41,1,2115,25,1,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,156,1,1621,153,1,0 +2013,4,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,900,-14,0,0 +2013,5,5,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,0,0,1358,14,0,0 +2013,4,3,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,800,0,0,937,29,1,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1405,9,0,1510,1,0,0 +2013,8,1,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1723,20,1,1955,17,1,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-5,0,1755,-2,0,0 +2013,7,25,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2042,12,0,2319,7,0,0 +2013,4,16,2,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,825,-2,0,1227,-7,0,0 +2013,5,27,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,0,0,1543,11,0,0 +2013,8,16,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-8,0,724,-23,0,0 +2013,7,9,2,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-4,0,705,-1,0,0 +2013,9,23,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-4,0,1300,-13,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1230,8,0,1320,2,0,0 +2013,7,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,79,1,1921,80,1,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,655,19,1,815,1,0,0 +2013,5,13,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1344,-2,0,1435,4,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1310,49,1,1500,54,1,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,8,0,2240,0,0,0 +2013,8,9,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1452,0,0,1538,-9,0,0 +2013,7,16,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1234,-3,0,1439,-4,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2105,37,1,2215,27,1,0 +2013,5,28,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1412,-1,0,1539,3,0,0 +2013,4,3,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,910,-5,0,0 +2013,7,26,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1004,-10,0,1218,-10,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,1026,-13,0,0 +2013,6,9,7,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,739,-4,0,1035,16,1,0 +2013,9,26,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,-7,0,1015,-16,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2115,21,1,2240,22,1,0 +2013,8,30,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-8,0,807,-16,0,0 +2013,5,21,2,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,615,-5,0,805,35,1,0 +2013,9,17,2,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,600,-2,0,740,-23,0,0 +2013,4,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1700,31,1,1910,23,1,0 +2013,10,16,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,13,0,1227,9,0,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-2,0,1544,-11,0,0 +2013,4,20,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,825,-3,0,945,-11,0,0 +2013,9,6,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1458,11,0,1645,-4,0,0 +2013,7,12,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,8,0,1420,95,1,0 +2013,10,8,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,610,1,0,735,-6,0,0 +2013,7,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1825,-2,0,1925,-1,0,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1940,-3,0,2157,-1,0,0 +2013,9,8,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1855,13,0,2225,7,0,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,930,0,0,1209,-22,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,36,1,1415,28,1,0 +2013,8,3,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,23,1,1706,9,0,0 +2013,6,10,1,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,850,-2,0,1110,-17,0,0 +2013,8,28,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2105,1,0,2240,-14,0,0 +2013,4,9,2,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,640,-6,0,753,-13,0,0 +2013,5,2,4,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2009,93,1,2148,85,1,0 +2013,5,23,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,26,1,2005,27,1,0 +2013,9,21,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1645,-5,0,1817,-3,0,0 +2013,10,6,7,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1448,0,0,1601,0,0,0 +2013,6,16,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1715,7,0,1815,2,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-5,0,1943,-21,0,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,-5,0,950,-28,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,900,8,0,1015,21,1,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1436,6,0,1602,-2,0,0 +2013,8,29,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,755,52,1,929,97,1,0 +2013,4,25,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1704,0,,1850,0,1,1 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1450,7,0,1633,-8,0,0 +2013,6,25,2,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,934,-19,0,1225,-39,0,0 +2013,6,3,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,-3,0,1615,-4,0,0 +2013,4,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,24,1,2120,32,1,0 +2013,6,3,1,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1915,-11,0,2154,-21,0,0 +2013,4,4,4,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,-5,0,1040,-19,0,0 +2013,8,29,4,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2005,9,0,2225,8,0,0 +2013,7,7,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1148,8,0,1244,12,0,0 +2013,7,1,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,15,1,1000,10,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1645,11,0,1915,9,0,0 +2013,9,8,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1109,-9,0,1237,-16,0,0 +2013,4,9,2,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,75,1,920,61,1,0 +2013,8,21,3,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,-3,0,1440,-12,0,0 +2013,10,17,4,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-4,0,1001,6,0,0 +2013,8,26,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-1,0,805,-6,0,0 +2013,10,5,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,909,-6,0,1036,-13,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-7,0,1256,5,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,705,1,0,1245,-9,0,0 +2013,4,20,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,36,1,1610,33,1,0 +2013,6,30,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-4,0,1006,4,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,650,-3,0,0 +2013,7,7,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-3,0,700,-11,0,0 +2013,8,18,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1425,42,1,1800,44,1,0 +2013,9,1,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,14,0,2126,3,0,0 +2013,5,9,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1215,-2,0,1451,1,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1622,-4,0,1737,27,1,0 +2013,8,9,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1251,57,1,1419,60,1,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,2,0,1441,22,1,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1455,28,1,1810,18,1,0 +2013,8,4,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1255,0,0,1541,-12,0,0 +2013,5,1,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-7,0,2130,-55,0,0 +2013,9,26,4,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,0,0,2000,20,1,0 +2013,10,31,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1310,-8,0,1511,-10,0,0 +2013,7,27,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,3,0,1458,4,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,811,-3,0,1013,-6,0,0 +2013,6,28,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-3,0,2059,-4,0,0 +2013,7,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2010,-5,0,2030,-9,0,0 +2013,4,7,7,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1532,-8,0,1812,-27,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1135,18,1,1700,25,1,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1706,57,1,2019,74,1,0 +2013,4,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-3,0,1905,-10,0,0 +2013,7,29,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1141,-1,0,1340,-7,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-4,0,1850,-1,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1805,16,1,1920,7,0,0 +2013,10,19,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,720,6,0,935,9,0,0 +2013,10,3,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-5,0,735,-11,0,0 +2013,7,2,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,-7,0,1631,-2,0,0 +2013,6,12,3,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,2005,-3,0,2127,3,0,0 +2013,8,11,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1524,-3,0,1637,-5,0,0 +2013,5,3,5,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1053,61,1,1220,47,1,0 +2013,8,31,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,1,0,642,-5,0,0 +2013,8,4,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-1,0,1556,2,0,0 +2013,8,24,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-2,0,1510,-5,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,835,2,0,1050,-18,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,947,-6,0,0 +2013,5,31,5,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,-1,0,1805,-1,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,0,0,801,-11,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,73,1,1901,124,1,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1942,-2,0,2219,-11,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-4,0,1310,-11,0,0 +2013,8,26,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,840,-3,0,1105,-4,0,0 +2013,7,15,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1503,-23,0,0 +2013,6,1,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-2,0,1850,-18,0,0 +2013,4,6,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1035,-3,0,1210,-10,0,0 +2013,5,28,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,0,0,1507,-3,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1918,2,0,2033,-10,0,0 +2013,7,28,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-3,0,902,-27,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2105,10,0,2310,12,0,0 +2013,7,13,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,650,-6,0,956,-7,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,0,0,1000,-3,0,0 +2013,9,30,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1115,43,1,1950,28,1,0 +2013,6,6,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-2,0,1712,13,0,0 +2013,6,10,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,1122,-17,0,0 +2013,9,27,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2259,-8,0,2351,-20,0,0 +2013,6,9,7,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-5,0,2055,1,0,0 +2013,10,2,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,645,-7,0,903,-1,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1346,-3,0,1535,1,0,0 +2013,6,9,7,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,605,-6,0,749,6,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,5,0,1725,5,0,0 +2013,6,5,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-4,0,2059,-1,0,0 +2013,5,8,3,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-4,0,1320,-3,0,0 +2013,4,7,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1255,127,1,1612,118,1,0 +2013,4,5,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1905,-12,0,2107,-23,0,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1945,-2,0,2058,-6,0,0 +2013,4,19,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,854,-3,0,1025,-12,0,0 +2013,6,22,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,704,-8,0,841,-12,0,0 +2013,9,7,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2137,-10,0,27,-20,0,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1835,23,1,2004,5,0,0 +2013,8,25,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-7,0,2021,-14,0,0 +2013,5,1,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-2,0,740,-14,0,0 +2013,10,5,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1124,-5,0,1420,-2,0,0 +2013,6,24,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,20,1,735,6,0,0 +2013,9,2,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1100,-4,0,1459,37,1,0 +2013,9,22,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,655,-3,0,725,-5,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1000,-2,0,1225,-8,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2130,37,1,2350,53,1,0 +2013,6,6,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-3,0,1005,-18,0,0 +2013,9,10,2,OO,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1633,-11,0,1746,-15,0,0 +2013,9,30,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-3,0,1722,-1,0,0 +2013,6,20,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1150,-3,0,1455,12,0,0 +2013,9,11,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1711,-8,0,2104,18,1,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1004,-3,0,1325,-14,0,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1425,26,1,1550,21,1,0 +2013,7,16,2,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-6,0,1522,-27,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1900,-5,0,2042,-16,0,0 +2013,6,11,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1210,-3,0,1230,7,0,0 +2013,9,29,7,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1336,-11,0,1506,-19,0,0 +2013,6,29,6,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,730,13,0,850,5,0,0 +2013,9,28,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1355,-10,0,1440,-21,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-2,0,2139,-11,0,0 +2013,5,27,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,5,0,1050,-18,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,727,-6,0,845,-10,0,0 +2013,4,7,7,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-9,0,912,-15,0,0 +2013,7,14,7,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,625,-2,0,1230,9,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,-1,0,950,6,0,0 +2013,10,14,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1046,-5,0,1109,-12,0,0 +2013,9,17,2,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1107,61,1,1650,54,1,0 +2013,6,9,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,9,0,1040,15,1,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1359,-6,0,1608,-26,0,0 +2013,7,8,1,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-5,0,1415,-16,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1921,-1,0,1,-14,0,0 +2013,8,20,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-5,0,1434,-18,0,0 +2013,7,24,3,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1014,27,1,1227,7,0,0 +2013,7,7,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1259,7,0,1400,-6,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,3,0,1636,-3,0,0 +2013,10,28,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2035,41,1,2200,25,1,0 +2013,10,10,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1304,19,1,1554,-3,0,0 +2013,8,14,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1923,0,,2224,0,1,1 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1400,28,1,1625,24,1,0 +2013,7,25,4,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1620,9,0,1805,13,0,0 +2013,10,23,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-8,0,1512,10,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1105,16,1,1210,9,0,0 +2013,5,13,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,9,0,1715,8,0,0 +2013,10,18,5,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,23,1,1819,21,1,0 +2013,5,1,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1400,43,1,1515,37,1,0 +2013,7,10,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,935,-4,0,941,-6,0,0 +2013,9,4,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1651,-9,0,1834,-19,0,0 +2013,4,7,7,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,929,-3,0,1044,-6,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1515,11,0,1735,16,1,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-3,0,947,6,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1820,71,1,2001,52,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-2,0,1833,-22,0,0 +2013,4,1,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1702,-5,0,2002,-8,0,0 +2013,5,6,1,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1130,104,1,1233,93,1,0 +2013,8,25,7,OO,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-11,0,907,9,0,0 +2013,6,19,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1420,2,0,1650,-6,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,2,0,1410,-10,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,8,0,2055,0,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,0,0,1516,-15,0,0 +2013,10,5,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,840,1,0,1040,11,0,0 +2013,10,14,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1925,-6,0,2030,-1,0,0 +2013,10,6,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1330,8,0,1445,2,0,0 +2013,6,15,6,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-6,0,2020,-7,0,0 +2013,10,29,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,14,0,1630,9,0,0 +2013,5,17,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1626,-9,0,1714,-5,0,0 +2013,10,17,4,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-1,0,1050,2,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,711,-6,0,1103,-13,0,0 +2013,9,27,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,635,1,0,745,-4,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,700,0,0,945,-24,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1410,2,0,1515,-9,0,0 +2013,4,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1405,12,0,2010,9,0,0 +2013,5,27,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-7,0,805,-17,0,0 +2013,6,25,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,700,30,1,802,18,1,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1625,-5,0,1937,-25,0,0 +2013,5,1,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1428,138,1,1610,118,1,0 +2013,9,4,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,909,-2,0,1005,1,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-2,0,1100,-14,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,0,0,2013,-4,0,0 +2013,9,12,4,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,856,-1,0,0 +2013,4,24,3,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,0,0,2235,-7,0,0 +2013,9,4,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1645,6,0,1736,4,0,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1005,-4,0,1205,7,0,0 +2013,9,27,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1608,3,0,2053,-11,0,0 +2013,6,30,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,268,1,1622,279,1,0 +2013,7,11,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1135,-1,0,1230,-7,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1615,20,1,1720,11,0,0 +2013,6,19,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1439,-7,0,1701,-23,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-5,0,1256,7,0,0 +2013,7,8,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,745,-2,0,830,-10,0,0 +2013,8,10,6,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-5,0,1805,-2,0,0 +2013,8,30,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-3,0,840,-8,0,0 +2013,5,19,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,651,-5,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,550,26,1,905,16,1,0 +2013,4,17,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,66,1,1805,81,1,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1702,95,1,2023,76,1,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1201,-3,0,1317,-22,0,0 +2013,4,30,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1623,-3,0,1800,-12,0,0 +2013,10,26,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1158,-6,0,1340,-16,0,0 +2013,7,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1341,13,0,1443,0,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1055,-3,0,1146,-13,0,0 +2013,5,4,6,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1525,6,0,1815,-4,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,35,1,1415,21,1,0 +2013,8,7,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1859,23,1,2044,49,1,0 +2013,9,27,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2115,-1,0,524,-26,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,5,0,1216,18,1,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1005,-2,0,1552,-22,0,0 +2013,9,21,6,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,830,-10,0,1123,-2,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,907,-3,0,1254,-23,0,0 +2013,10,15,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1700,-6,0,2101,-19,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,11,0,2100,2,0,0 +2013,5,8,3,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,800,6,0,1050,39,1,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1625,-6,0,1903,-10,0,0 +2013,4,2,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1715,64,1,1805,62,1,0 +2013,6,16,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2110,130,1,2225,131,1,0 +2013,5,22,3,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1629,32,1,1939,23,1,0 +2013,8,20,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1908,18,1,2121,-9,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,920,31,1,1800,20,1,0 +2013,9,30,1,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1507,-6,0,1738,-14,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,-6,0,1034,2,0,0 +2013,4,21,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,-6,0,1219,-9,0,0 +2013,6,2,7,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,66,1,2110,122,1,0 +2013,9,19,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2105,241,1,2155,240,1,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,-3,0,1030,-20,0,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1410,-3,0,1645,-5,0,0 +2013,8,15,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-3,0,1621,-6,0,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,935,-2,0,1035,-8,0,0 +2013,8,19,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1855,20,1,2131,7,0,0 +2013,10,1,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,745,-7,0,1501,2,0,0 +2013,8,28,3,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,0,0,1649,-7,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,23,1,1310,17,1,0 +2013,5,17,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-3,0,1445,-11,0,0 +2013,10,28,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,802,-4,0,1016,-8,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,708,1,0,1245,-5,0,0 +2013,7,7,7,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1107,-7,0,1256,-17,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,46,1,1245,32,1,0 +2013,9,15,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,854,8,0,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,630,81,1,836,61,1,0 +2013,8,26,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,-5,0,1421,9,0,0 +2013,7,14,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1921,-1,0,2050,-10,0,0 +2013,6,5,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-7,0,1454,-12,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,25,1,1940,-3,0,0 +2013,9,2,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1737,4,0,2020,5,0,0 +2013,8,15,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1240,-4,0,1505,-18,0,0 +2013,7,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,0,,1930,0,1,1 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1310,-3,0,1636,-13,0,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,915,-3,0,1025,-10,0,0 +2013,6,20,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1545,1,0,1935,-9,0,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1500,23,1,1605,19,1,0 +2013,7,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1320,0,0,1516,-5,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,4,0,1130,4,0,0 +2013,10,5,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,0,0,1111,-2,0,0 +2013,9,2,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2100,-4,0,458,-25,0,0 +2013,5,2,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2155,44,1,2245,43,1,0 +2013,8,16,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,2,0,1122,3,0,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1949,2,0,2129,-1,0,0 +2013,7,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1725,81,1,1859,70,1,0 +2013,8,1,4,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1030,-2,0,1352,-14,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,915,0,0,1010,10,0,0 +2013,8,8,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2005,-4,0,2210,-10,0,0 +2013,6,18,2,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,2050,66,1,2330,52,1,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1615,-1,0,1935,-2,0,0 +2013,5,13,1,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,845,-2,0,1235,-46,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1025,-1,0,1245,-5,0,0 +2013,7,29,1,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,1,0,801,-15,0,0 +2013,10,12,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,820,1,0,955,-6,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-2,0,1808,-21,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,12,0,1840,-11,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-2,0,1001,-7,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1315,-8,0,1642,8,0,0 +2013,5,9,4,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-5,0,1314,30,1,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1200,28,1,1431,7,0,0 +2013,4,9,2,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1430,-1,0,2229,3,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,-2,0,1905,-7,0,0 +2013,5,17,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1341,-3,0,1553,-9,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,55,1,110,46,1,0 +2013,4,28,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,4,0,950,-1,0,0 +2013,5,31,5,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,0,0,1905,15,1,0 +2013,8,23,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,847,-4,0,934,-9,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,825,13,0,1021,-5,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1130,-1,0,1445,-10,0,0 +2013,4,18,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,-1,0,1005,-1,0,0 +2013,6,29,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1135,20,1,1300,4,0,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-1,0,1832,-20,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,925,2,0,1036,-12,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2040,-4,0,2350,-10,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1359,-3,0,1442,-2,0,0 +2013,10,2,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,815,-8,0,1017,-19,0,0 +2013,4,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,701,-8,0,857,-15,0,0 +2013,10,14,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,0,0,930,4,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,830,0,0,945,-5,0,0 +2013,9,20,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,720,-2,0,830,4,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,0,,2205,0,1,1 +2013,7,1,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1337,12,0,1556,30,1,0 +2013,4,13,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-6,0,2135,-21,0,0 +2013,8,4,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1326,-2,0,1446,5,0,0 +2013,5,31,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,18,1,1805,20,1,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,845,-1,0,1343,-4,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,710,1,0,1200,-3,0,0 +2013,5,21,2,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,640,-4,0,806,-4,0,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,747,-3,0,917,-15,0,0 +2013,10,5,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1150,-3,0,1425,-8,0,0 +2013,5,18,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,10,0,1732,4,0,0 +2013,4,22,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,7,0,2000,-6,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1140,41,1,1217,42,1,0 +2013,8,19,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1410,-5,0,1544,6,0,0 +2013,4,19,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,5,0,1155,7,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1042,100,1,1154,90,1,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,-5,0,1000,-6,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1040,32,1,1919,20,1,0 +2013,4,12,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,78,1,1735,66,1,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,811,1,0,1036,-30,0,0 +2013,8,17,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1745,13,0,2123,4,0,0 +2013,9,14,6,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-5,0,1938,-22,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1355,5,0,1532,-6,0,0 +2013,4,14,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1029,-3,0,0 +2013,10,6,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1720,37,1,2335,18,1,0 +2013,8,22,4,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1555,18,1,2340,11,0,0 +2013,10,6,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,8,0,1648,22,1,0 +2013,8,4,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,-3,0,2052,29,1,0 +2013,5,3,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1831,0,,1856,0,1,1 +2013,10,2,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,829,-8,0,1029,-25,0,0 +2013,4,5,5,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,840,1,0,1029,6,0,0 +2013,4,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1950,3,0,2150,-4,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1355,5,0,1755,-8,0,0 +2013,6,1,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1052,-18,0,1406,-43,0,0 +2013,4,3,3,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1045,0,0,1355,-1,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,-4,0,1856,-23,0,0 +2013,10,14,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1644,16,1,1819,15,1,0 +2013,10,9,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,730,-21,0,0 +2013,6,14,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-4,0,1202,-11,0,0 +2013,7,15,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,600,-5,0,839,-6,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2040,3,0,2330,-16,0,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,11,0,2057,-6,0,0 +2013,4,6,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,822,-3,0,958,-15,0,0 +2013,5,29,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1741,-2,0,1837,-2,0,0 +2013,9,5,4,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1009,-4,0,0 +2013,6,12,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1132,-7,0,1344,-7,0,0 +2013,9,2,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,952,-5,0,1120,-11,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1215,-3,0,1350,-14,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1503,1,0,1755,-21,0,0 +2013,10,9,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1620,29,1,1715,10,0,0 +2013,9,7,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,-5,0,1650,-8,0,0 +2013,8,12,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,6,0,1715,6,0,0 +2013,7,31,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,753,-12,0,0 +2013,10,16,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,-2,0,1740,-7,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1155,2,0,1300,3,0,0 +2013,4,12,5,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,114,1,1901,126,1,0 +2013,8,11,7,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-9,0,1615,-21,0,0 +2013,5,18,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1355,3,0,1615,6,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1311,56,1,1615,62,1,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,-1,0,1132,-33,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1224,1,0,1445,-12,0,0 +2013,7,10,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1355,-3,0,1411,23,1,0 +2013,4,24,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1236,-8,0,1340,-14,0,0 +2013,4,20,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-4,0,2025,-6,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1201,-2,0,1317,-5,0,0 +2013,6,29,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1245,81,1,1530,62,1,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1810,-6,0,1950,-6,0,0 +2013,4,2,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1820,4,0,2005,-4,0,0 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,4,0,925,6,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,601,-5,0,933,-41,0,0 +2013,5,6,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1135,26,1,1420,20,1,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2219,14,0,2305,-4,0,0 +2013,7,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,835,-2,0,940,-7,0,0 +2013,4,16,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1012,-3,0,1303,-14,0,0 +2013,10,15,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1620,18,1,1755,-3,0,0 +2013,8,27,2,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-5,0,1217,-8,0,0 +2013,9,12,4,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-3,0,1815,-6,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,10,0,1925,18,1,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,4,0,2159,8,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1805,-4,0,2004,-20,0,0 +2013,10,22,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,2,0,2117,-7,0,0 +2013,5,14,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-10,0,1250,-14,0,0 +2013,6,8,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-9,0,1338,-6,0,0 +2013,4,30,2,9E,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-10,0,1531,-6,0,0 +2013,7,29,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,11,0,1405,11,0,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,955,9,0,1600,0,0,0 +2013,6,20,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,3,0,1225,7,0,0 +2013,6,12,3,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,13,0,2018,10,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,0,0,2219,3,0,0 +2013,6,28,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,-3,0,2125,7,0,0 +2013,8,16,5,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1633,5,0,1805,-17,0,0 +2013,8,21,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,800,-1,0,915,-5,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1340,-4,0,1452,-8,0,0 +2013,5,25,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1830,114,1,1935,102,1,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,850,-6,0,1024,-4,0,0 +2013,5,22,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2000,232,1,2050,219,1,0 +2013,4,9,2,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1655,40,1,1812,46,1,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,29,1,2105,46,1,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,85,1,1835,83,1,0 +2013,6,3,1,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1620,0,0,1906,42,1,0 +2013,9,14,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,0,0,1914,-1,0,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,-7,0,2049,-15,0,0 +2013,8,15,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,23,1,15,-6,0,0 +2013,10,29,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1525,1,0,1625,-2,0,0 +2013,10,9,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1515,-2,0,1703,-4,0,0 +2013,10,17,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1425,48,1,2030,35,1,0 +2013,5,9,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,800,-8,0,913,-9,0,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1225,-4,0,1349,-6,0,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,-5,0,1736,-29,0,0 +2013,8,7,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1115,-6,0,1245,8,0,0 +2013,9,17,2,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1733,-4,0,1947,-6,0,0 +2013,6,30,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,-3,0,930,-4,0,0 +2013,4,30,2,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,545,-8,0,600,-26,0,0 +2013,4,13,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-2,0,2225,-2,0,0 +2013,7,4,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,-4,0,1155,-16,0,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-1,0,1445,0,0,0 +2013,10,12,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,6,0,1519,-9,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,820,1,0,1000,2,0,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1140,78,1,1450,53,1,0 +2013,5,23,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,1615,-18,0,0 +2013,7,28,7,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,233,1,2149,258,1,0 +2013,6,18,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,902,1,0,1025,-14,0,0 +2013,8,27,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,0,0,1845,-4,0,0 +2013,9,29,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,735,-2,0,1005,-9,0,0 +2013,9,8,7,OO,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1247,-13,0,1453,-38,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-7,0,1451,9,0,0 +2013,7,5,5,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1035,98,1,1405,90,1,0 +2013,7,5,5,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,-9,0,742,-11,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1916,2,0,2149,6,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,852,-8,0,0 +2013,5,27,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1328,-9,0,1439,-10,0,0 +2013,10,16,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,730,27,1,825,65,1,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1155,-2,0,2035,-19,0,0 +2013,6,25,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,19,1,2156,20,1,0 +2013,9,14,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-7,0,1733,8,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,750,-2,0,846,-20,0,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1835,-1,0,1945,-2,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1540,109,1,1653,97,1,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1352,-7,0,1534,-14,0,0 +2013,8,13,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1319,-4,0,1353,5,0,0 +2013,4,2,2,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,819,0,0,1055,24,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,705,0,,850,0,1,1 +2013,9,7,6,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1215,84,1,1410,74,1,0 +2013,5,5,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-4,0,1332,-23,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,649,0,0,926,52,1,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-1,0,946,-18,0,0 +2013,10,21,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1515,-5,0,1605,-9,0,0 +2013,8,15,4,FL,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,2,0,950,-5,0,0 +2013,7,12,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1730,25,1,1800,16,1,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-5,0,1754,2,0,0 +2013,8,29,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,830,-10,0,955,-6,0,0 +2013,10,30,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,1943,-5,0,0 +2013,5,7,2,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1245,-4,0,1605,-2,0,0 +2013,10,26,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,-4,0,1617,-11,0,0 +2013,4,26,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,-3,0,2120,-13,0,0 +2013,6,15,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1740,-4,0,1845,-17,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,909,-4,0,1023,-18,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2135,-1,0,123,-5,0,0 +2013,4,8,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,910,11,0,1035,0,0,0 +2013,8,6,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2010,-7,0,2050,-6,0,0 +2013,8,3,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1708,159,1,1839,156,1,0 +2013,8,15,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,24,1,649,18,1,0 +2013,4,1,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1550,-2,0,1648,1,0,0 +2013,7,3,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,852,-1,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,-1,0,1355,-8,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-3,0,725,-14,0,0 +2013,7,25,4,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,5,0,1435,-7,0,0 +2013,9,30,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-6,0,1020,-12,0,0 +2013,7,13,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1645,2,0,1924,-32,0,0 +2013,6,6,4,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1545,29,1,1838,22,1,0 +2013,10,18,5,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-9,0,1906,-22,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1040,-1,0,1135,-1,0,0 +2013,8,2,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1703,-1,0,1911,-24,0,0 +2013,7,19,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-8,0,1140,-17,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,750,-5,0,927,7,0,0 +2013,6,29,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,8,0,1120,14,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2100,2,0,2300,-6,0,0 +2013,8,15,4,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-5,0,1609,-13,0,0 +2013,10,10,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1649,-1,0,1807,-2,0,0 +2013,4,23,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1559,-7,0,1856,0,0,0 +2013,7,9,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1850,15,1,1925,26,1,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1646,0,0,1819,-17,0,0 +2013,5,4,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1725,0,0,1830,-8,0,0 +2013,8,8,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1625,-7,0,1640,-14,0,0 +2013,8,21,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-6,0,1135,-12,0,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,830,0,0,1157,-13,0,0 +2013,6,21,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-3,0,1259,2,0,0 +2013,6,17,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1210,8,0,1435,12,0,0 +2013,6,25,2,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-9,0,2015,-6,0,0 +2013,6,27,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,108,1,1642,120,1,0 +2013,10,11,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-5,0,1802,-2,0,0 +2013,7,18,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-5,0,848,-6,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,2040,4,0,2225,-20,0,0 +2013,6,5,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,700,-2,0,1018,78,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1630,6,0,1757,5,0,0 +2013,6,15,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,555,-9,0,656,-5,0,0 +2013,7,4,4,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-5,0,2110,-10,0,0 +2013,10,27,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1040,1,0,1055,-11,0,0 +2013,10,14,1,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1312,-12,0,1600,8,0,0 +2013,7,26,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,21,1,1514,27,1,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1430,-3,0,1620,-6,0,0 +2013,4,4,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,926,0,0,1153,-4,0,0 +2013,8,5,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,900,-10,0,951,-12,0,0 +2013,5,27,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,835,-3,0,955,0,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2015,32,1,2240,39,1,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2037,-1,0,2236,-33,0,0 +2013,10,12,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,903,-1,0,951,-3,0,0 +2013,4,16,2,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,3,0,550,-19,0,0 +2013,6,25,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,615,-2,0,1140,-18,0,0 +2013,10,13,7,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2240,-2,0,446,-45,0,0 +2013,9,16,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-7,0,1010,7,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1813,1,0,2035,-35,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1053,205,1,1527,169,1,0 +2013,9,20,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1240,0,0,1325,1,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-4,0,1729,-11,0,0 +2013,9,8,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1500,-5,0,1649,-13,0,0 +2013,10,31,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,715,4,0,1423,24,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1427,-5,0,1623,-5,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,66,1,1711,52,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,51,1,1820,48,1,0 +2013,10,11,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1330,79,1,1612,65,1,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1741,-1,0,2007,-10,0,0 +2013,7,20,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,655,-1,0,938,-11,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1735,18,1,2048,-15,0,0 +2013,5,21,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,7,0,1250,0,0,0 +2013,7,7,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,2010,32,1,2120,19,1,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1721,29,1,1859,16,1,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,0,0,1440,9,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1205,-4,0,1214,-5,0,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1329,1,0,1618,-4,0,0 +2013,7,2,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,1,0,931,0,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,930,3,0,1205,21,1,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1357,2,0,1706,-7,0,0 +2013,5,14,2,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1133,-5,0,1420,-25,0,0 +2013,10,4,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-4,0,840,-11,0,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1220,17,1,1415,2,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-3,0,1238,-20,0,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1725,-5,0,2235,5,0,0 +2013,7,9,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-4,0,739,3,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,-2,0,1124,4,0,0 +2013,4,22,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1410,0,0,1626,8,0,0 +2013,7,19,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,90,1,2205,73,1,0 +2013,5,29,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,615,-7,0,905,-6,0,0 +2013,10,20,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1440,7,0,1630,-6,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-1,0,1556,-3,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1014,-8,0,1300,13,0,0 +2013,7,25,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,10,0,830,33,1,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2000,13,0,2244,27,1,0 +2013,10,18,5,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,825,-1,0,1633,-35,0,0 +2013,7,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,845,-6,0,1430,1,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1840,12,0,2130,-1,0,0 +2013,7,19,5,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1717,-1,0,1944,1,0,0 +2013,7,19,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,630,-4,0,847,-21,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2111,7,0,2240,36,1,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,8,0,2010,3,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,25,1,2305,12,0,0 +2013,8,15,4,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,50,1,1824,32,1,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,710,-2,0,1010,-7,0,0 +2013,6,23,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,3,0,1435,2,0,0 +2013,4,19,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-6,0,2200,-7,0,0 +2013,7,19,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,-10,0,2107,-2,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,-3,0,1820,22,1,0 +2013,7,29,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,14,0,2230,-17,0,0 +2013,8,13,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,17,1,1549,-1,0,0 +2013,7,4,4,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,-2,0,1645,4,0,0 +2013,5,24,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1515,-3,0,2043,-5,0,0 +2013,9,19,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1608,13,0,1734,54,1,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,2,0,1910,-14,0,0 +2013,8,16,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1437,-5,0,1658,4,0,0 +2013,9,9,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,715,1,0,735,-4,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,0,0,1220,-10,0,0 +2013,7,13,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-4,0,621,-1,0,0 +2013,9,2,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,15,1,1735,-9,0,0 +2013,10,27,7,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,740,-9,0,910,-20,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-4,0,1115,0,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,35,1,25,48,1,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,610,-7,0,906,-6,0,0 +2013,8,26,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,-3,0,1820,-12,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-8,0,938,-6,0,0 +2013,5,8,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1021,-5,0,1342,-4,0,0 +2013,8,13,2,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1505,-6,0,1620,-5,0,0 +2013,7,8,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,916,-2,0,1013,0,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,5,0,1332,6,0,0 +2013,6,11,2,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,0,0,900,-1,0,0 +2013,9,27,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,17,1,855,12,0,0 +2013,8,22,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,627,-5,0,800,-1,0,0 +2013,9,18,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-5,0,1815,-10,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-5,0,1236,-13,0,0 +2013,7,9,2,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,0,0,1336,0,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1329,-3,0,1556,-1,0,0 +2013,7,5,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,834,-9,0,909,-5,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,955,-4,0,1632,-12,0,0 +2013,4,20,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1845,7,0,2005,-6,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,835,15,1,1125,21,1,0 +2013,5,5,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-4,0,1558,-4,0,0 +2013,7,20,6,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1917,-7,0,2019,-4,0,0 +2013,9,24,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-2,0,1140,12,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1543,-1,0,1722,6,0,0 +2013,5,18,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-2,0,1527,-2,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-6,0,2101,-49,0,0 +2013,10,2,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-8,0,849,-7,0,0 +2013,5,14,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1830,-15,0,0 +2013,9,12,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,844,-8,0,1040,-19,0,0 +2013,5,3,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-5,0,1633,-8,0,0 +2013,10,11,5,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1600,-4,0,1843,-7,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2007,43,1,2138,28,1,0 +2013,8,12,1,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1144,-4,0,1400,-10,0,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1002,44,1,1830,33,1,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,1,0,1654,7,0,0 +2013,10,15,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-7,0,1610,1,0,0 +2013,10,5,6,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,720,-5,0,1005,-12,0,0 +2013,8,14,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,700,-2,0,833,1,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,0,0,2359,-3,0,0 +2013,6,14,5,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,22,1,2020,3,0,0 +2013,10,15,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1210,-4,0,1255,-9,0,0 +2013,7,5,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1635,-1,0,1810,-6,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2130,43,1,2250,35,1,0 +2013,5,7,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,-2,0,1826,-19,0,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,1,0,940,33,1,0 +2013,7,30,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,655,-5,0,0 +2013,4,2,2,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1715,1,0,1845,2,0,0 +2013,5,17,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1345,15,1,1510,12,0,0 +2013,4,18,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1815,2,0,2103,-8,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1815,-7,0,2054,-10,0,0 +2013,5,16,4,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-5,0,939,-3,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,48,1,1225,29,1,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,726,-6,0,913,1,0,0 +2013,10,1,2,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1645,-7,0,1820,-33,0,0 +2013,4,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1805,7,0,2055,56,1,0 +2013,10,15,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-5,0,1919,-11,0,0 +2013,6,5,3,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,43,1,1140,15,1,0 +2013,8,2,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,755,14,0,837,36,1,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2155,-7,0,2300,-9,0,0 +2013,7,11,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1756,7,0,1951,4,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1442,23,1,1610,25,1,0 +2013,6,6,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1056,-6,0,0 +2013,8,13,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1435,20,1,1545,13,0,0 +2013,4,6,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,1951,-22,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,939,32,1,1146,43,1,0 +2013,4,23,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1855,56,1,2215,41,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1050,0,0,1325,-15,0,0 +2013,10,4,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,756,0,0,951,12,0,0 +2013,8,24,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,934,3,0,1020,-2,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,0,0,1350,9,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1652,55,1,1855,57,1,0 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-8,0,2202,-8,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1600,7,0,1940,-2,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1815,76,1,2355,69,1,0 +2013,9,13,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-5,0,1110,-13,0,0 +2013,5,30,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,137,1,2023,146,1,0 +2013,8,27,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1157,-3,0,2023,14,0,0 +2013,6,19,3,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1157,226,1,1809,217,1,0 +2013,8,21,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,-3,0,1946,-21,0,0 +2013,7,15,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1025,12,0,1153,20,1,0 +2013,9,9,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-6,0,1323,-10,0,0 +2013,4,20,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1725,1,0,1920,10,0,0 +2013,9,10,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-6,0,1510,-17,0,0 +2013,4,8,1,WN,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1200,2,0,1425,-4,0,0 +2013,6,26,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1200,9,0,1449,8,0,0 +2013,4,6,6,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,815,-2,0,1600,-20,0,0 +2013,9,28,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1159,-1,0,1324,-3,0,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,-6,0,2120,-6,0,0 +2013,9,28,6,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1210,40,1,1350,35,1,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-5,0,1250,-17,0,0 +2013,7,15,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-4,0,1225,-10,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1035,57,1,1200,0,1,1 +2013,8,14,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-5,0,1137,6,0,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,755,1,0,1310,-6,0,0 +2013,10,31,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1319,1,0,1437,0,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,846,-8,0,1225,4,0,0 +2013,8,4,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-5,0,1059,-5,0,0 +2013,8,18,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1250,0,0,1535,-13,0,0 +2013,7,28,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,3,0,1100,-5,0,0 +2013,5,4,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-5,0,1025,-20,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1550,15,1,1826,-21,0,0 +2013,7,24,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1529,4,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,800,-6,0,1136,-15,0,0 +2013,6,20,4,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,845,-5,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1740,-1,0,1957,-2,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-3,0,1658,-19,0,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1540,16,1,1720,17,1,0 +2013,6,7,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,22,1,1345,15,1,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2015,0,0,2258,20,1,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1435,1,0,1540,9,0,0 +2013,6,20,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1010,5,0,1137,-4,0,0 +2013,7,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2125,61,1,2345,67,1,0 +2013,4,12,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,745,-8,0,805,10,0,0 +2013,10,14,1,9E,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1045,14,0,1217,3,0,0 +2013,5,12,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2006,-5,0,2213,0,0,0 +2013,10,14,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,0,0,1323,-15,0,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-7,0,2000,-18,0,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,-2,0,2350,-16,0,0 +2013,4,14,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-2,0,1910,-6,0,0 +2013,9,15,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1730,12,0,1850,2,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1450,-2,0,1603,-17,0,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1235,0,0,1358,0,0,0 +2013,5,8,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,25,1,835,24,1,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-3,0,2106,-22,0,0 +2013,5,19,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1445,6,0,1651,-13,0,0 +2013,8,27,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,0,,2050,0,1,1 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1030,3,0,1258,-12,0,0 +2013,4,7,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1145,-5,0,1235,-5,0,0 +2013,10,4,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1100,-8,0,1351,-10,0,0 +2013,8,15,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1409,-1,0,2245,2,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,915,119,1,1050,113,1,0 +2013,6,10,1,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,113,1,730,96,1,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,33,1,2010,30,1,0 +2013,8,28,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1010,0,,1135,0,1,1 +2013,8,1,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-4,0,1605,23,1,0 +2013,8,11,7,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1403,5,0,1708,-3,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,705,-10,0,0 +2013,5,20,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2048,-3,0,2152,8,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1845,22,1,2320,27,1,0 +2013,7,20,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-10,0,903,-3,0,0 +2013,5,5,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,4,0,2125,2,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,910,-6,0,1640,-21,0,0 +2013,10,8,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,14,0,1402,9,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-4,0,2237,18,1,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,925,2,0,1400,-2,0,0 +2013,10,2,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1000,-4,0,1205,-18,0,0 +2013,5,12,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,812,-6,0,926,0,0,0 +2013,8,23,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1955,-15,0,2145,-10,0,0 +2013,7,24,3,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1034,-8,0,1310,-3,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,0,0,1332,-11,0,0 +2013,4,6,6,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1432,-5,0,1607,-8,0,0 +2013,9,30,1,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-4,0,912,0,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1510,17,1,1740,0,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,0,0,2309,-1,0,0 +2013,5,6,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,610,82,1,834,66,1,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,3,0,1635,-7,0,0 +2013,9,3,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1045,-8,0,1150,-20,0,0 +2013,10,30,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1230,-4,0,1509,25,1,0 +2013,7,15,1,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-5,0,1132,3,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,124,1,1920,114,1,0 +2013,10,29,2,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-10,0,2103,-15,0,0 +2013,8,3,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1930,5,0,2214,-7,0,0 +2013,6,22,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-3,0,1408,-4,0,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,27,1,1715,31,1,0 +2013,9,8,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,3,0,1850,-17,0,0 +2013,8,19,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-10,0,812,-11,0,0 +2013,6,20,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2004,12,0,2222,2,0,0 +2013,6,6,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1010,-7,0,1145,-4,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1410,11,0,1520,31,1,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1331,0,0,1645,-13,0,0 +2013,5,29,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,625,0,0,800,0,0,0 +2013,8,31,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,830,-5,0,1058,-8,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,-5,0,1807,-6,0,0 +2013,7,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1308,-4,0,1434,-14,0,0 +2013,8,11,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1821,0,0,2112,-10,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,0,0,2123,-15,0,0 +2013,7,17,3,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,715,-1,0,815,-29,0,0 +2013,7,24,3,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-5,0,807,-8,0,0 +2013,6,30,7,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1325,-11,0,1546,-16,0,0 +2013,10,4,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,1,0,1350,1,0,0 +2013,10,4,5,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1627,-4,0,1730,3,0,0 +2013,5,4,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,2200,-7,0,620,-11,0,0 +2013,5,7,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,-4,0,1749,-10,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,-4,0,1627,-2,0,0 +2013,5,27,1,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,840,2,0,1007,-1,0,0 +2013,7,26,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1409,-1,0,1548,-14,0,0 +2013,6,27,4,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,-3,0,1330,-8,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1655,23,1,2130,-8,0,0 +2013,7,20,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,920,-2,0,1025,-9,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1515,8,0,1735,40,1,0 +2013,6,21,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1305,1,0,1450,-6,0,0 +2013,5,19,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1536,29,1,1830,72,1,0 +2013,4,22,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,755,-5,0,1053,-7,0,0 +2013,9,12,4,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1350,257,1,1525,278,1,0 +2013,8,15,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,-8,0,800,-5,0,0 +2013,5,12,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1310,62,1,2049,83,1,0 +2013,7,23,2,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1710,30,1,1930,50,1,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1110,2,0,1215,7,0,0 +2013,10,2,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,-5,0,1537,-13,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1643,-3,0,0 +2013,8,7,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,1,0,2135,27,1,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,-3,0,1512,-8,0,0 +2013,6,30,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1430,70,1,1753,71,1,0 +2013,8,17,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-5,0,1812,7,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2050,125,1,2320,106,1,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2030,-4,0,2307,8,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1015,0,0,1225,-13,0,0 +2013,8,6,2,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,830,-5,0,1015,-14,0,0 +2013,10,23,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1425,-2,0,2300,-9,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1430,45,1,1655,30,1,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,1,0,1710,-1,0,0 +2013,5,4,6,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,722,3,0,0 +2013,7,7,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,5,0,2025,-10,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1540,62,1,1835,61,1,0 +2013,7,11,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,26,1,1210,20,1,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1558,-1,0,1730,10,0,0 +2013,7,17,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1600,0,0,1630,-7,0,0 +2013,7,16,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,0,0,1853,-5,0,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,39,1,1010,28,1,0 +2013,6,8,6,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,29,1,1731,14,0,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1620,-2,0,1910,-4,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1725,-5,0,2000,-20,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1545,2,0,1825,-3,0,0 +2013,6,28,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1245,59,1,1530,44,1,0 +2013,7,16,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,945,-2,0,1654,-9,0,0 +2013,10,27,7,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1840,-10,0,2010,-5,0,0 +2013,7,3,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,98,1,1920,81,1,0 +2013,10,25,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1830,-12,0,2103,-42,0,0 +2013,9,15,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1405,0,0,1425,-9,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,-2,0,1334,-10,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,24,1,2200,41,1,0 +2013,8,14,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,19,1,2153,8,0,0 +2013,9,20,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,2,0,2020,-5,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1730,-1,0,1925,7,0,0 +2013,4,19,5,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1320,9,0,2049,-7,0,0 +2013,10,8,2,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,57,1,810,48,1,0 +2013,7,13,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,12,0,715,9,0,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-10,0,1018,-12,0,0 +2013,9,12,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,755,-9,0,1350,-22,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-3,0,1800,-11,0,0 +2013,9,17,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,50,1,2013,72,1,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1840,-2,0,1951,-1,0,0 +2013,8,18,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-1,0,1633,-3,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,-3,0,2349,-18,0,0 +2013,4,5,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1425,18,1,1445,11,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1205,0,0,1400,-8,0,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-2,0,1820,-14,0,0 +2013,5,22,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1845,75,1,2344,57,1,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1645,54,1,1850,67,1,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2049,-4,0,2232,-23,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1730,-2,0,2016,-12,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,10,0,2340,-1,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1305,0,0,2000,14,0,0 +2013,7,23,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-8,0,1434,-24,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,18,1,2007,15,1,0 +2013,5,10,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1842,24,1,1916,26,1,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1840,-5,0,2356,-4,0,0 +2013,10,27,7,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1800,25,1,2005,16,1,0 +2013,5,30,4,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1015,0,0,1145,-9,0,0 +2013,9,24,2,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1308,12,0,2102,1,0,0 +2013,6,13,4,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1240,15,1,1610,7,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,96,1,1809,84,1,0 +2013,7,29,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,-2,0,1225,-9,0,0 +2013,8,30,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,48,1,1755,44,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1530,-2,0,2000,-13,0,0 +2013,6,3,1,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,0,0,1830,-19,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1415,-1,0,1535,-16,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1754,0,0,1845,-4,0,0 +2013,4,1,1,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2145,-3,0,2335,-25,0,0 +2013,9,23,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1940,-11,0,2110,-13,0,0 +2013,8,29,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,644,-3,0,1025,-7,0,0 +2013,4,16,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1925,5,0,2254,-1,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1525,12,0,1632,83,1,0 +2013,4,15,1,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1750,-6,0,1923,8,0,0 +2013,4,1,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1215,-6,0,1342,-6,0,0 +2013,7,6,6,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1030,-1,0,1105,-13,0,0 +2013,6,24,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2005,77,1,2200,77,1,0 +2013,6,23,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,0,0,1135,-1,0,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,840,-1,0,955,4,0,0 +2013,8,20,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1310,27,1,1504,25,1,0 +2013,10,23,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,-6,0,1255,8,0,0 +2013,9,12,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-3,0,1350,-10,0,0 +2013,8,3,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,831,-5,0,1058,-23,0,0 +2013,10,16,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-6,0,2226,-10,0,0 +2013,4,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-1,0,855,-8,0,0 +2013,5,31,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,602,-10,0,803,-22,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2155,-9,0,2343,-18,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,1,0,2155,-2,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,827,-7,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2130,48,1,2300,53,1,0 +2013,8,10,6,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-3,0,1535,-20,0,0 +2013,4,13,6,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1305,0,0,1320,-3,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,940,-10,0,1147,-14,0,0 +2013,7,11,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2130,77,1,2245,84,1,0 +2013,6,14,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2000,-11,0,2135,-23,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-1,0,925,-15,0,0 +2013,10,9,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,39,1,2018,30,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1729,98,1,1934,109,1,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2030,44,1,2305,45,1,0 +2013,4,3,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,12,0,1023,-7,0,0 +2013,8,21,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1400,16,1,1425,0,0,0 +2013,5,15,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-7,0,845,-14,0,0 +2013,10,11,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1535,-7,0,1653,-19,0,0 +2013,7,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,945,1,0,1040,-3,0,0 +2013,4,3,3,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1600,25,1,1800,-5,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,19,1,1104,69,1,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1805,-7,0,1942,23,1,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1250,24,1,1605,14,0,0 +2013,9,28,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,550,-7,0,700,-9,0,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1240,-3,0,1350,-6,0,0 +2013,9,30,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2155,-6,0,2310,-8,0,0 +2013,8,16,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1820,15,1,1915,15,1,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,750,-1,0,1020,-2,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,17,1,1755,6,0,0 +2013,6,9,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,6,0,925,2,0,0 +2013,8,20,2,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,-5,0,1820,-7,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,3,0,1605,13,0,0 +2013,7,14,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,730,10,0,0 +2013,7,31,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,849,9,0,1021,4,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,3,0,2201,-7,0,0 +2013,10,25,5,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-5,0,1315,-13,0,0 +2013,8,23,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,0,0,1905,4,0,0 +2013,5,29,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1645,-3,0,1810,-4,0,0 +2013,9,2,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,1,0,1425,3,0,0 +2013,10,29,2,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1430,-1,0,1635,-11,0,0 +2013,7,4,4,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,617,-4,0,1215,-11,0,0 +2013,6,10,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1957,95,1,2010,77,1,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2205,11,0,15,3,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1345,-4,0,1606,-21,0,0 +2013,7,23,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,6,0,2139,6,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1529,-8,0,1746,-1,0,0 +2013,8,1,4,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,82,1,2030,68,1,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,8,0,2335,-2,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,9,0,1501,1,0,0 +2013,7,23,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,922,83,1,1041,76,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,-3,0,1435,-15,0,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1201,1,0,1302,-5,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,7,0,1610,-1,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,12,0,1605,18,1,0 +2013,4,18,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2000,-6,0,2144,-25,0,0 +2013,8,2,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,59,134,1,914,108,1,0 +2013,7,8,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,-2,0,733,-11,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-4,0,958,4,0,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1005,-3,0,1135,2,0,0 +2013,7,31,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,919,11,0,1229,5,0,0 +2013,4,7,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,910,0,0,1235,0,0,0 +2013,4,22,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,6,0,1700,-10,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1115,-14,0,1220,-26,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,0,0,2002,5,0,0 +2013,6,26,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,238,1,2200,230,1,0 +2013,8,9,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1750,-8,0,2125,-7,0,0 +2013,8,19,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-5,0,1115,-2,0,0 +2013,5,25,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,9,0,1910,1,0,0 +2013,10,2,3,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1331,11,0,1544,17,1,0 +2013,10,7,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,700,0,0,847,8,0,0 +2013,5,16,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1251,14,0,1505,28,1,0 +2013,8,22,4,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1710,18,1,2005,-43,0,0 +2013,7,2,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1241,-4,0,1821,-17,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1400,17,1,1520,10,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,13,0,1704,-10,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,-2,0,1306,-10,0,0 +2013,9,28,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1339,3,0,1437,-3,0,0 +2013,6,4,2,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-3,0,713,4,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1220,4,0,1436,6,0,0 +2013,10,31,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1646,-4,0,1723,-1,0,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1800,3,0,1920,-13,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,0,0,1446,-6,0,0 +2013,10,16,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,815,0,0,1150,-35,0,0 +2013,8,8,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-4,0,851,5,0,0 +2013,10,7,1,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1030,-4,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,601,1,0,731,-3,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1725,18,1,1830,13,0,0 +2013,5,29,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,726,-5,0,1021,2,0,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,0,,1335,0,1,1 +2013,5,25,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-6,0,1803,-9,0,0 +2013,7,14,7,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,3,0,1840,-1,0,0 +2013,9,26,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,27,1,1720,16,1,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,8,0,2354,63,1,0 +2013,8,28,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-5,0,1205,-21,0,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-3,0,1335,-4,0,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1430,-3,0,1620,-27,0,0 +2013,4,5,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2030,44,1,2321,22,1,0 +2013,4,6,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-3,0,709,-18,0,0 +2013,6,25,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1345,-8,0,1717,43,1,0 +2013,4,13,6,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1820,0,0,2100,-22,0,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1707,2,0,2318,5,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,19,1,1615,-2,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,-8,0,1310,-7,0,0 +2013,9,24,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1050,2,0,1155,-4,0,0 +2013,10,14,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1202,-3,0,0 +2013,7,21,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1422,-7,0,1631,50,1,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,825,3,0,945,1,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1259,27,1,1432,17,1,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,-5,0,1145,-6,0,0 +2013,4,24,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1814,-7,0,1935,-11,0,0 +2013,7,1,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1247,0,,1542,0,1,1 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1055,-4,0,1325,-20,0,0 +2013,5,3,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,2025,-4,0,2100,-7,0,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1250,219,1,1615,221,1,0 +2013,10,2,3,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,845,-3,0,1040,-7,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,745,-3,0,930,10,0,0 +2013,6,26,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,1,0,2025,12,0,0 +2013,10,18,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,917,-5,0,1039,-22,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1125,11,0,1645,12,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1910,15,1,2100,4,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1935,-3,0,50,6,0,0 +2013,4,24,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,34,1,1935,47,1,0 +2013,10,16,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,-1,0,1940,8,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1818,37,1,2051,22,1,0 +2013,10,13,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,13,0,1910,16,1,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,-2,0,951,-12,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2005,25,1,2211,32,1,0 +2013,7,5,5,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,2,0,1640,-10,0,0 +2013,10,29,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1803,12,0,1945,-9,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1515,51,1,1610,50,1,0 +2013,6,25,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-2,0,1254,0,0,0 +2013,5,27,1,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1305,13,0,2120,19,1,0 +2013,9,26,4,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1229,5,0,1528,14,0,0 +2013,8,5,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1042,-8,0,1343,-20,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1310,21,1,1615,12,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1540,-6,0,1616,-18,0,0 +2013,10,18,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1125,2,0,1425,-11,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,80,1,2307,89,1,0 +2013,4,21,7,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1331,-2,0,1546,-10,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2153,-6,0,2246,1,0,0 +2013,4,27,6,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1715,64,1,2043,32,1,0 +2013,10,6,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1440,0,0,1555,-7,0,0 +2013,9,30,1,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,725,-4,0,754,-18,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,735,-7,0,1157,3,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1315,18,1,1645,39,1,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1220,9,0,1335,22,1,0 +2013,9,7,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,959,-4,0,1659,14,0,0 +2013,9,23,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,-1,0,1159,-9,0,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,-7,0,1535,-21,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-3,0,1130,-12,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-3,0,1109,0,0,0 +2013,7,5,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,815,-11,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1946,-1,0,45,-8,0,0 +2013,8,24,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-3,0,756,-6,0,0 +2013,10,13,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,19,1,747,7,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,910,9,0,1022,18,1,0 +2013,8,1,4,YV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1813,-5,0,1924,-4,0,0 +2013,10,21,1,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,605,-6,0,910,-8,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1140,-1,0,1400,6,0,0 +2013,8,4,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1327,0,0,1840,-13,0,0 +2013,8,26,1,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-2,0,938,-4,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,2,0,1803,-11,0,0 +2013,6,6,4,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1235,-13,0,1450,-20,0,0 +2013,10,10,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1405,25,1,1543,24,1,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1736,-2,0,1931,-11,0,0 +2013,10,22,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1855,13,0,2240,-17,0,0 +2013,6,27,4,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-2,0,1635,-12,0,0 +2013,10,11,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1055,-8,0,1350,-4,0,0 +2013,8,9,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1437,-7,0,1715,-16,0,0 +2013,4,28,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1645,-9,0,1918,-8,0,0 +2013,6,6,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,1,0,1630,-7,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,40,1,2235,28,1,0 +2013,8,28,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1500,-11,0,1723,-21,0,0 +2013,4,18,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2055,51,1,2220,47,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1649,-6,0,1930,-19,0,0 +2013,9,18,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,645,1,0,1235,18,1,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,12,0,1729,11,0,0 +2013,6,26,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,0,0,1827,-8,0,0 +2013,8,18,7,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1400,-1,0,1535,-6,0,0 +2013,6,5,3,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1955,-5,0,2235,-3,0,0 +2013,8,25,7,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,620,3,0,1230,-25,0,0 +2013,4,5,5,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1529,-12,0,1725,-14,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1825,3,0,2355,-5,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1210,-2,0,1422,40,1,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2140,19,1,15,27,1,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,-3,0,2356,-15,0,0 +2013,7,18,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,97,1,1900,91,1,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,927,-5,0,1305,-13,0,0 +2013,5,14,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,11,0,1934,-15,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1554,4,0,1733,-11,0,0 +2013,4,5,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-5,0,1620,5,0,0 +2013,6,10,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,0,0,848,6,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1005,-3,0,1150,3,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1340,-2,0,1615,-8,0,0 +2013,6,20,4,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,14,0,2010,6,0,0 +2013,10,12,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2015,4,0,2144,-12,0,0 +2013,5,8,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2145,12,0,2200,3,0,0 +2013,8,28,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1115,9,0,1240,-9,0,0 +2013,4,4,4,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1255,-6,0,1550,-12,0,0 +2013,6,16,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2015,75,1,2115,73,1,0 +2013,4,5,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1820,-7,0,2104,-1,0,0 +2013,9,30,1,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,7,0,1815,9,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,910,-8,0,1045,-22,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1239,4,0,1534,-3,0,0 +2013,5,20,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,38,1,1820,42,1,0 +2013,4,21,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1820,7,0,1945,1,0,0 +2013,5,18,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,710,-6,0,915,-11,0,0 +2013,5,4,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,716,-8,0,959,-23,0,0 +2013,9,13,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,747,-2,0,830,-11,0,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,855,8,0,1030,7,0,0 +2013,8,3,6,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1913,-8,0,2145,5,0,0 +2013,9,29,7,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1530,9,0,1700,-22,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,42,1,1126,20,1,0 +2013,9,9,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,-2,0,1852,-8,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1130,7,0,1720,2,0,0 +2013,9,6,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1125,-7,0,1227,-17,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,700,-2,0,820,-11,0,0 +2013,10,27,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2000,-6,0,2059,15,1,0 +2013,8,21,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1745,39,1,2020,37,1,0 +2013,8,1,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,42,1,2110,37,1,0 +2013,4,17,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1740,0,0,1900,8,0,0 +2013,6,4,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1058,-6,0,0 +2013,6,7,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-6,0,900,-10,0,0 +2013,6,1,6,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1855,2,0,2148,7,0,0 +2013,6,16,7,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,20,1,2020,11,0,0 +2013,9,20,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,-4,0,2104,-3,0,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,-7,0,1809,-23,0,0 +2013,9,5,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-1,0,1710,8,0,0 +2013,10,10,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1535,-9,0,1847,-19,0,0 +2013,7,23,2,DL,14679,San Diego International,San Diego,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,9,0,1902,0,0,0 +2013,8,6,2,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,0,0,1839,-14,0,0 +2013,5,13,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2359,-9,0,604,-16,0,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,-6,0,1357,-11,0,0 +2013,6,6,4,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2031,-5,0,2348,-13,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,-3,0,2103,-23,0,0 +2013,10,1,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,2,0,1749,-17,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1505,6,0,1640,-2,0,0 +2013,4,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,-2,0,830,-3,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1500,12,0,1725,3,0,0 +2013,10,14,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,600,-4,0,710,12,0,0 +2013,5,20,1,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2200,1,0,853,-22,0,0 +2013,4,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,14,0,1110,23,1,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,603,-2,0,908,-9,0,0 +2013,10,14,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,655,-4,0,907,-8,0,0 +2013,6,17,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1710,25,1,1925,17,1,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1820,22,1,2045,18,1,0 +2013,6,10,1,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1305,27,1,0 +2013,5,9,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1621,-2,0,1800,0,0,0 +2013,7,15,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-6,0,1555,-3,0,0 +2013,5,21,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,848,-4,0,950,-13,0,0 +2013,4,28,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,814,22,1,1010,2,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,900,12,0,1100,21,1,0 +2013,4,14,7,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,640,-7,0,748,-18,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1815,14,0,2335,19,1,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,955,10,0,1055,-9,0,0 +2013,9,13,5,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,77,1,1208,94,1,0 +2013,9,29,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-6,0,2145,-4,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1605,7,0,2125,26,1,0 +2013,5,1,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,-5,0,1055,6,0,0 +2013,6,30,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,1,0,2255,-6,0,0 +2013,9,26,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-6,0,1034,-25,0,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,36,1,1435,44,1,0 +2013,6,23,7,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,0,0,935,-10,0,0 +2013,7,5,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1843,-10,0,2035,-35,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2210,116,1,41,94,1,0 +2013,10,12,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1003,-5,0,1228,-9,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,-4,0,1622,-9,0,0 +2013,4,8,1,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-8,0,913,-4,0,0 +2013,10,31,4,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-9,0,525,-22,0,0 +2013,8,2,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,925,15,1,1105,17,1,0 +2013,7,18,4,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,830,-1,0,1110,-7,0,0 +2013,7,22,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,950,-3,0,1200,-10,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1740,-1,0,2150,-8,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,-1,0,750,-8,0,0 +2013,5,25,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,805,7,0,859,4,0,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1230,36,1,1345,44,1,0 +2013,7,24,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-3,0,1341,-3,0,0 +2013,4,29,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1155,12,0,1455,2,0,0 +2013,7,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-2,0,1045,-5,0,0 +2013,6,10,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,902,-6,0,0 +2013,6,26,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1630,-6,0,1740,-5,0,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1100,-7,0,1243,-3,0,0 +2013,6,6,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1931,72,1,2041,41,1,0 +2013,7,20,6,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1525,-1,0,1904,-10,0,0 +2013,10,5,6,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1445,-2,0,1725,16,1,0 +2013,7,17,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,1,0,2105,-7,0,0 +2013,4,28,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,600,0,0,714,-15,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1503,39,1,1733,33,1,0 +2013,6,13,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,4,0,2135,-3,0,0 +2013,10,23,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1133,-6,0,1349,-25,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1050,9,0,1240,-4,0,0 +2013,7,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,805,-4,0,910,-13,0,0 +2013,6,24,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-8,0,849,-9,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,-1,0,1145,-13,0,0 +2013,4,7,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1247,16,1,1425,3,0,0 +2013,7,15,1,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,625,0,0,750,-4,0,0 +2013,9,24,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,855,-5,0,1020,-15,0,0 +2013,5,29,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,815,11,0,1140,0,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,40,1,2033,112,1,0 +2013,5,18,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1240,-4,0,1358,-18,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,-6,0,1841,-14,0,0 +2013,7,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,-5,0,2055,4,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,5,0,820,-11,0,0 +2013,7,24,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1350,-4,0,1505,2,0,0 +2013,6,22,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-4,0,2024,-3,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,40,1,2000,34,1,0 +2013,7,13,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1551,-4,0,1830,-20,0,0 +2013,10,28,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1740,-3,0,1856,-5,0,0 +2013,6,6,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1420,35,1,1510,28,1,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,745,-2,0,1030,-11,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,0,0,1905,1,0,0 +2013,9,28,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1050,0,0,1155,6,0,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,645,0,0,810,-10,0,0 +2013,7,9,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,6,0,1227,-4,0,0 +2013,9,23,1,9E,12451,Jacksonville International,Jacksonville,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,-8,0,1635,3,0,0 +2013,4,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1715,11,0,1910,7,0,0 +2013,10,25,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,4,0,1250,-3,0,0 +2013,6,30,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1116,-3,0,1208,-8,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,0,0,1000,9,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,-6,0,2102,-47,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,750,2,0,1135,0,0,0 +2013,9,30,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1200,-3,0,1515,28,1,0 +2013,5,20,1,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-7,0,955,9,0,0 +2013,8,12,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-10,0,835,-29,0,0 +2013,8,4,7,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-1,0,735,-7,0,0 +2013,5,29,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1302,-5,0,1435,-13,0,0 +2013,6,27,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,21,1,1545,81,1,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,905,-9,0,1150,-20,0,0 +2013,10,28,1,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1046,-3,0,1437,-13,0,0 +2013,5,8,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1210,7,0,1345,-8,0,0 +2013,5,31,5,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,930,2,0,1100,-10,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,1,0,1945,-11,0,0 +2013,9,22,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-4,0,1617,-11,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,2,0,2304,-15,0,0 +2013,5,2,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,700,-1,0,815,1,0,0 +2013,8,14,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,3,0,726,-6,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1330,-9,0,1618,-17,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1500,59,1,1600,54,1,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,-2,0,705,-15,0,0 +2013,10,24,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,-2,0,721,-6,0,0 +2013,4,4,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1545,-7,0,1722,-9,0,0 +2013,9,16,1,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,700,28,1,753,18,1,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2245,3,0,737,6,0,0 +2013,6,19,3,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1435,-4,0,1710,-10,0,0 +2013,4,19,5,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-5,0,920,-6,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,735,-6,0,909,-15,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2140,11,0,2225,17,1,0 +2013,9,11,3,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1532,-10,0,1720,-24,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,3,0,1115,-2,0,0 +2013,7,18,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,756,0,,950,0,1,1 +2013,6,24,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1647,0,0,1829,4,0,0 +2013,5,9,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,1,0,935,16,1,0 +2013,8,4,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1459,-10,0,1548,-14,0,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,-6,0,1255,-14,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1320,-3,0,1457,-2,0,0 +2013,4,9,2,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,958,-1,0,1216,0,0,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1655,31,1,1900,23,1,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1935,17,1,2035,18,1,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1012,7,0,1425,-28,0,0 +2013,5,7,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1719,20,1,1738,19,1,0 +2013,7,30,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1620,-14,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,915,2,0,1255,3,0,0 +2013,6,1,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-7,0,1937,-26,0,0 +2013,9,15,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,-6,0,1255,4,0,0 +2013,9,17,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,-6,0,2036,-6,0,0 +2013,7,15,1,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1531,34,1,1855,38,1,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2130,7,0,2250,7,0,0 +2013,6,21,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-4,0,2251,-14,0,0 +2013,4,26,5,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1920,8,0,2025,-2,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,1,0,1045,-10,0,0 +2013,9,3,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,620,-8,0,725,-15,0,0 +2013,8,21,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,-15,0,1839,-29,0,0 +2013,10,7,1,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2325,108,1,543,91,1,0 +2013,4,17,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1005,9,0,1125,7,0,0 +2013,8,24,6,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2150,-2,0,2246,5,0,0 +2013,5,28,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-4,0,2255,-15,0,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1815,24,1,2105,41,1,0 +2013,6,24,1,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1658,167,1,1835,155,1,0 +2013,9,28,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1054,-10,0,1400,-22,0,0 +2013,8,17,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,15,1,614,18,1,0 +2013,6,2,7,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,730,1,0,840,1,0,0 +2013,9,21,6,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1300,75,1,1840,46,1,0 +2013,4,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2055,-5,0,2234,-14,0,0 +2013,6,9,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,840,-6,0,1115,-4,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,-5,0,1744,-40,0,0 +2013,8,23,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1734,0,0,1903,20,1,0 +2013,9,29,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1030,-10,0,1139,-8,0,0 +2013,10,14,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1130,3,0,1230,5,0,0 +2013,4,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1610,-17,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,46,1,1635,28,1,0 +2013,6,3,1,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1345,-7,0,1651,5,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1325,-8,0,1545,-17,0,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2029,78,1,27,75,1,0 +2013,5,27,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,915,-8,0,1039,-20,0,0 +2013,6,17,1,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1056,1,0,1220,-3,0,0 +2013,6,28,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,1,0,1717,6,0,0 +2013,8,30,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,27,1,1905,15,1,0 +2013,7,12,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-1,0,1210,5,0,0 +2013,9,17,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,655,-4,0,725,-7,0,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1245,2,0,1415,-19,0,0 +2013,4,17,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1740,-10,0,2150,-12,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1007,-4,0,1336,-14,0,0 +2013,8,29,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,905,17,1,1505,-3,0,0 +2013,9,28,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1940,-4,0,2145,-2,0,0 +2013,6,15,6,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1735,0,0,1825,-7,0,0 +2013,9,11,3,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1245,-4,0,1515,-17,0,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-4,0,1609,-16,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1605,27,1,1741,37,1,0 +2013,8,25,7,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-7,0,1105,-17,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-2,0,1117,11,0,0 +2013,9,15,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1835,8,0,2124,10,0,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,10,0,1035,-2,0,0 +2013,7,20,6,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1310,28,1,1546,31,1,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,4,0,2125,2,0,0 +2013,6,16,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,-4,0,726,-9,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2150,-2,0,2310,-13,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1320,39,1,1440,46,1,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,840,-7,0,1058,7,0,0 +2013,10,15,2,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,-3,0,1315,-8,0,0 +2013,8,14,3,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-2,0,1259,6,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,-5,0,1637,-24,0,0 +2013,9,23,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,931,34,1,1235,33,1,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,28,1,1715,32,1,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,-1,0,1655,17,1,0 +2013,5,16,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,700,-8,0,825,-22,0,0 +2013,4,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,-4,0,1305,-25,0,0 +2013,10,7,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,8,0,1404,28,1,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1710,6,0,1915,20,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,19,1,1814,18,1,0 +2013,9,29,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1700,9,0,1840,-8,0,0 +2013,4,25,4,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1835,-2,0,2109,-26,0,0 +2013,8,28,3,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-4,0,1005,-6,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1930,113,1,2229,119,1,0 +2013,7,10,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,166,1,1435,162,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1720,-5,0,1856,-15,0,0 +2013,6,12,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,2,0,1348,-11,0,0 +2013,10,24,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,623,-6,0,800,3,0,0 +2013,8,9,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,-3,0,1315,-4,0,0 +2013,10,31,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,2,0,1340,1,0,0 +2013,4,2,2,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1850,-8,0,2115,-11,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,733,0,0,925,-9,0,0 +2013,5,27,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,32,1,2250,22,1,0 +2013,5,13,1,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-6,0,855,-15,0,0 +2013,8,29,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-5,0,1220,-11,0,0 +2013,9,3,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-7,0,1216,-12,0,0 +2013,4,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1006,-4,0,1120,-2,0,0 +2013,4,27,6,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1055,9,0,1900,-6,0,0 +2013,8,15,4,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1614,6,0,1717,11,0,0 +2013,4,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1735,12,0,1932,3,0,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,18,1,1415,11,0,0 +2013,7,31,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-16,0,1129,-20,0,0 +2013,6,11,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1058,6,0,1208,20,1,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-4,0,1020,-6,0,0 +2013,9,30,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,-5,0,1918,-25,0,0 +2013,10,6,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,-6,0,2039,-14,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,6,0,1515,4,0,0 +2013,5,31,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,8,0,1117,3,0,0 +2013,9,10,2,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,-6,0,1940,-37,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-3,0,1019,27,1,0 +2013,7,1,1,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,1,0,1610,-3,0,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1205,23,1,1318,21,1,0 +2013,5,22,3,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,14,0,758,10,0,0 +2013,9,20,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,2,0,1425,-11,0,0 +2013,8,24,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,62,1,1825,37,1,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1435,81,1,1642,68,1,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1935,-5,0,2240,-13,0,0 +2013,8,5,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,950,-2,0,1250,-10,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1320,0,0,1640,-15,0,0 +2013,8,4,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,820,-1,0,959,-8,0,0 +2013,6,27,4,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,-1,0,1636,37,1,0 +2013,10,28,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1005,-2,0,1555,3,0,0 +2013,10,2,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1042,10,0,1143,9,0,0 +2013,8,13,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,-4,0,2156,-19,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1915,-4,0,2031,-19,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,950,34,1,1115,36,1,0 +2013,7,18,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,10,0,2137,-15,0,0 +2013,7,14,7,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,0,0,827,-7,0,0 +2013,4,3,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1812,-6,0,2055,-14,0,0 +2013,10,17,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,-5,0,1507,-2,0,0 +2013,9,29,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-4,0,1318,-9,0,0 +2013,10,20,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,3,0,2035,-1,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2118,8,0,2221,-7,0,0 +2013,4,20,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1610,39,1,1859,24,1,0 +2013,5,28,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1310,-7,0,2049,-15,0,0 +2013,10,23,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1443,-9,0,1615,1,0,0 +2013,7,17,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,1,0,1620,-2,0,0 +2013,6,10,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,-11,0,2308,-23,0,0 +2013,7,29,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,64,1,2129,40,1,0 +2013,5,19,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2015,119,1,2220,107,1,0 +2013,4,12,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,841,-2,0,1111,-27,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1238,27,1,1431,14,0,0 +2013,8,27,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1450,-4,0,1555,-14,0,0 +2013,10,9,3,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-3,0,1010,-17,0,0 +2013,7,18,4,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-5,0,1331,-17,0,0 +2013,10,3,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-2,0,2205,-12,0,0 +2013,8,29,4,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,26,1,1842,19,1,0 +2013,6,12,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-6,0,1224,-14,0,0 +2013,7,20,6,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1002,-3,0,1102,-10,0,0 +2013,7,26,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1118,-1,0,1510,11,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1718,0,0,1817,-11,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,15,1,1720,11,0,0 +2013,4,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1120,12,0,1512,-5,0,0 +2013,8,6,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,3,0,1250,-3,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,-6,0,1045,-10,0,0 +2013,10,30,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,31,1,1840,25,1,0 +2013,5,19,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1319,46,1,1625,68,1,0 +2013,6,18,2,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,850,0,0,1105,-7,0,0 +2013,10,27,7,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1418,-4,0,1620,-3,0,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1930,-7,0,2247,-3,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,30,1,2139,22,1,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,18,1,1541,-1,0,0 +2013,8,16,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1930,-3,0,2232,-5,0,0 +2013,8,24,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,17,1,2000,4,0,0 +2013,10,11,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,3,0,915,-3,0,0 +2013,7,21,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,-5,0,1500,0,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,959,1,0,1520,7,0,0 +2013,5,21,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,-2,0,825,-6,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1726,-2,0,1913,-15,0,0 +2013,9,6,5,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,817,-8,0,1127,-9,0,0 +2013,6,23,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,651,-3,0,1023,-7,0,0 +2013,10,22,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,633,1,0,1512,-28,0,0 +2013,9,9,1,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-3,0,922,-11,0,0 +2013,9,5,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1355,-3,0,1437,-7,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1334,-8,0,1733,-24,0,0 +2013,6,1,6,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1518,-8,0,1745,18,1,0 +2013,7,30,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1030,0,0,1145,1,0,0 +2013,4,21,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,1012,17,1,0 +2013,8,12,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1530,-3,0,1640,0,0,0 +2013,8,24,6,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,749,-10,0,0 +2013,8,25,7,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2210,21,1,30,-4,0,0 +2013,7,2,2,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1715,-6,0,2048,3,0,0 +2013,6,13,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1120,15,1,1145,18,1,0 +2013,8,13,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2055,0,,2245,0,1,1 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1405,29,1,1845,17,1,0 +2013,4,8,1,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,915,-8,0,1155,-17,0,0 +2013,7,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2120,110,1,2249,98,1,0 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1430,16,1,1535,8,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2344,164,1,338,154,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1518,-1,0,1710,-11,0,0 +2013,4,12,5,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,59,1,2010,53,1,0 +2013,7,11,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,0,0,2020,44,1,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,700,-2,0,945,5,0,0 +2013,7,26,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,20,1,1630,69,1,0 +2013,4,12,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,1551,12,0,1841,14,0,0 +2013,9,8,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1000,-4,0,1115,-12,0,0 +2013,10,30,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1500,-3,0,1602,5,0,0 +2013,4,22,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1821,19,1,2015,18,1,0 +2013,8,15,4,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1952,-12,0,113,-11,0,0 +2013,6,29,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1130,68,1,1400,96,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2157,12,0,2307,14,0,0 +2013,4,6,6,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,5,0,1305,19,1,0 +2013,8,30,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1145,4,0,1335,-1,0,0 +2013,8,28,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,4,0,802,-10,0,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-6,0,1110,-13,0,0 +2013,6,14,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1536,15,1,1750,9,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-2,0,1041,4,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1225,-8,0,1452,-12,0,0 +2013,8,30,5,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1900,-2,0,2143,-40,0,0 +2013,7,22,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,12,0,2215,21,1,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,60,1,2052,73,1,0 +2013,6,6,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,-4,0,1648,43,1,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,7,0,2350,3,0,0 +2013,4,7,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1858,-11,0,0 +2013,4,21,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1716,105,1,1839,179,1,0 +2013,7,13,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-4,0,1725,-1,0,0 +2013,5,14,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,17,1,1254,18,1,0 +2013,10,29,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2057,-2,0,2153,-19,0,0 +2013,10,20,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1040,7,0,1156,5,0,0 +2013,8,9,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,42,1,1500,41,1,0 +2013,10,7,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1525,18,1,0 +2013,5,24,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,-4,0,147,3,0,0 +2013,7,9,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-4,0,1415,3,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,-2,0,2145,-7,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,20,1,1134,14,0,0 +2013,9,21,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1006,-1,0,1201,7,0,0 +2013,5,10,5,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,-3,0,814,-8,0,0 +2013,6,16,7,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1300,0,0,1519,-9,0,0 +2013,8,12,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,52,1,1747,42,1,0 +2013,6,13,4,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2103,-1,0,2341,-12,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1810,13,0,1915,-3,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1625,10,0,1758,-6,0,0 +2013,5,12,7,9E,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1708,-7,0,2120,-26,0,0 +2013,5,19,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1940,-5,0,2010,4,0,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,600,2,0,934,-10,0,0 +2013,9,20,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-5,0,1908,-14,0,0 +2013,8,21,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1522,0,0,1730,-1,0,0 +2013,8,2,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1002,-6,0,1309,-3,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1240,-8,0,1930,-12,0,0 +2013,9,20,5,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,-1,0,1144,4,0,0 +2013,8,21,3,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1758,-2,0,2039,33,1,0 +2013,6,18,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,552,-4,0,1314,-9,0,0 +2013,10,8,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,15,1,1914,24,1,0 +2013,9,23,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2155,19,1,643,-8,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1540,7,0,1820,13,0,0 +2013,8,1,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1439,167,1,1644,153,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1824,21,1,1953,-4,0,0 +2013,8,20,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1210,-6,0,1350,-24,0,0 +2013,4,9,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,938,-3,0,1247,14,0,0 +2013,5,27,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1810,-2,0,2114,-32,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,6,0,1834,3,0,0 +2013,6,20,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,700,-9,0,805,-8,0,0 +2013,5,19,7,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1449,32,1,1550,16,1,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2059,0,,2225,0,1,1 +2013,7,15,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1810,-1,0,2021,-9,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,-1,0,1902,-27,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1121,-3,0,1222,-3,0,0 +2013,5,16,4,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1337,9,0,1614,-5,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1935,33,1,2045,34,1,0 +2013,6,9,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,70,1,1635,77,1,0 +2013,4,14,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-6,0,859,4,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2205,-6,0,2251,-11,0,0 +2013,5,15,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-7,0,1507,-19,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1800,-1,0,2021,-22,0,0 +2013,7,10,3,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-2,0,1014,-9,0,0 +2013,9,25,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1145,-21,0,0 +2013,8,6,2,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-11,0,2210,-15,0,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1950,10,0,2235,-4,0,0 +2013,10,13,7,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-6,0,1853,-24,0,0 +2013,6,23,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1904,82,1,1917,90,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1605,-5,0,1740,-14,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,825,8,0,1100,-5,0,0 +2013,10,18,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-4,0,740,1,0,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2005,83,1,2147,74,1,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1205,-3,0,1339,-21,0,0 +2013,4,26,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-4,0,1235,-22,0,0 +2013,9,23,1,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-12,0,1015,-10,0,0 +2013,7,11,4,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1109,-10,0,1339,-17,0,0 +2013,6,2,7,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,655,0,0,755,4,0,0 +2013,6,15,6,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,226,1,1105,207,1,0 +2013,9,27,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1052,-2,0,1209,-13,0,0 +2013,10,8,2,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,5,0,1022,-2,0,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,0,0,1027,-21,0,0 +2013,6,15,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,-3,0,1852,-22,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1832,4,0,1940,-3,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1155,3,0,1300,-4,0,0 +2013,9,11,3,9E,12953,LaGuardia,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1920,32,1,2055,0,1,1 +2013,7,15,1,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,7,0,2034,-29,0,0 +2013,4,3,3,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-6,0,1130,-20,0,0 +2013,4,6,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,-2,0,1550,-12,0,0 +2013,8,10,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1424,22,1,1600,21,1,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,18,1,2135,14,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,920,15,1,1235,11,0,0 +2013,10,10,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-2,0,1130,7,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1400,4,0,2000,4,0,0 +2013,10,10,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-3,0,1239,-15,0,0 +2013,9,4,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,-2,0,936,2,0,0 +2013,4,7,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1621,-8,0,1812,-13,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1925,155,1,2110,146,1,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,-1,0,1519,2,0,0 +2013,7,23,2,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1020,71,1,1129,68,1,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,850,22,1,1105,19,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-4,0,1213,-15,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1605,12,0,1745,-4,0,0 +2013,6,7,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-10,0,2126,-10,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,10529,Bradley International,Hartford,CT,2355,-3,0,810,-4,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,-4,0,2345,-16,0,0 +2013,5,12,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1829,23,1,2114,21,1,0 +2013,8,2,5,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,925,-7,0,1115,-5,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,0,0,1555,4,0,0 +2013,9,13,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,925,-4,0,1025,-9,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-10,0,1200,-8,0,0 +2013,7,1,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2205,34,1,2316,50,1,0 +2013,10,3,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-5,0,849,-14,0,0 +2013,7,25,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1627,27,1,2032,27,1,0 +2013,7,28,7,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1100,-6,0,1335,0,0,0 +2013,10,3,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1155,12,0,1335,0,0,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1521,-2,0,1709,-7,0,0 +2013,7,15,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-5,0,1258,-13,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1505,-4,0,1735,-16,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,5,0,1055,5,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,131,1,1510,133,1,0 +2013,6,25,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,74,1,2120,64,1,0 +2013,8,14,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1557,23,1,2020,0,0,0 +2013,9,12,4,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1525,19,1,1845,13,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1750,3,0,2005,-4,0,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-2,0,2155,1,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-4,0,1317,-7,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-6,0,1740,4,0,0 +2013,8,22,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1810,19,1,2009,-8,0,0 +2013,6,8,6,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1930,26,1,811,6,0,0 +2013,5,26,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,42,9,0,528,-3,0,0 +2013,8,8,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,5,0,1028,47,1,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1915,38,1,2020,23,1,0 +2013,10,8,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,7,0,1455,7,0,0 +2013,4,30,2,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-4,0,955,-10,0,0 +2013,8,21,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,828,-1,0,1109,-11,0,0 +2013,4,24,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1040,0,,1210,0,1,1 +2013,4,30,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1209,-11,0,1531,-26,0,0 +2013,8,11,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,1516,-15,0,0 +2013,6,3,1,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1245,42,1,1421,33,1,0 +2013,6,29,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1545,12,0,1555,31,1,0 +2013,7,20,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,57,1,1110,44,1,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1305,57,1,1739,48,1,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,82,1,40,74,1,0 +2013,7,31,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,7,0,1455,-6,0,0 +2013,9,11,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1104,-4,0,1230,-15,0,0 +2013,7,18,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,642,-3,0,725,-5,0,0 +2013,6,1,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1120,-4,0,1215,-21,0,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,925,61,1,1047,52,1,0 +2013,4,18,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-2,0,839,-14,0,0 +2013,8,9,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1120,36,1,1426,32,1,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1310,10,0,1410,10,0,0 +2013,6,4,2,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,800,-5,0,1025,-25,0,0 +2013,8,18,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1837,-2,0,44,0,0,0 +2013,8,21,3,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2105,-11,0,2205,-7,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,920,9,0,1110,-4,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-1,0,2331,-9,0,0 +2013,9,23,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,-10,0,2247,-24,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1850,-6,0,2103,-3,0,0 +2013,10,23,3,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-4,0,2218,-4,0,0 +2013,9,5,4,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-6,0,1057,-9,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1135,130,1,1609,126,1,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2150,29,1,2355,26,1,0 +2013,6,16,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,-5,0,2315,-20,0,0 +2013,9,12,4,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1711,82,1,1918,68,1,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2125,100,1,2245,96,1,0 +2013,7,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,-5,0,1755,-14,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,-3,0,1050,-11,0,0 +2013,6,20,4,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1826,-6,0,2059,-17,0,0 +2013,8,12,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,36,1,1540,28,1,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1810,0,0,1925,-2,0,0 +2013,8,19,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,-7,0,1559,-5,0,0 +2013,7,3,3,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,-9,0,1225,-18,0,0 +2013,6,15,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,835,-25,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,-1,0,1105,-12,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,26,1,1500,22,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,37,1,1410,54,1,0 +2013,10,19,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,12,0,845,2,0,0 +2013,6,22,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1335,9,0,1552,-16,0,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2111,-3,0,2356,-12,0,0 +2013,9,30,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-6,0,1040,-11,0,0 +2013,8,28,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1332,-10,0,1523,-13,0,0 +2013,6,8,6,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1155,44,1,1325,34,1,0 +2013,5,5,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2017,88,1,2100,94,1,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1655,36,1,1750,45,1,0 +2013,5,13,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,620,0,0,1212,20,1,0 +2013,7,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1020,1,0,1430,-6,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,2350,0,0,528,-7,0,0 +2013,7,5,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,705,-6,0,1015,-7,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1915,-2,0,2204,-16,0,0 +2013,6,27,4,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,-11,0,1645,3,0,0 +2013,6,9,7,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1656,2,0,1835,-10,0,0 +2013,7,24,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1403,-5,0,2155,-17,0,0 +2013,7,10,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1731,-6,0,1821,-11,0,0 +2013,6,1,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1530,157,1,1758,126,1,0 +2013,9,7,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1430,13,0,1545,9,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1121,-5,0,1251,-28,0,0 +2013,4,19,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-2,0,1205,-8,0,0 +2013,4,4,4,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1646,-5,0,2036,5,0,0 +2013,9,20,5,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,3,0,1310,-15,0,0 +2013,6,19,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-8,0,1432,-2,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1915,6,0,35,14,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,0,0,1040,7,0,0 +2013,9,23,1,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,4,0,1140,3,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,60,1,1918,165,1,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1034,-4,0,1231,-14,0,0 +2013,9,3,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1651,-1,0,2100,-7,0,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2032,-1,0,3,-43,0,0 +2013,6,13,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1410,4,0,1542,1,0,0 +2013,9,16,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1025,-3,0,1320,-6,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,5,0,1830,0,0,0 +2013,4,9,2,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,838,-6,0,1109,-22,0,0 +2013,4,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,20,1,2125,4,0,0 +2013,5,3,5,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,3,0,835,0,0,0 +2013,9,11,3,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,600,-5,0,817,-9,0,0 +2013,10,15,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1545,-8,0,1701,-9,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1450,-1,0,1830,-15,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2007,96,1,2359,95,1,0 +2013,5,24,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1120,0,0,1240,0,0,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1215,-5,0,1335,-4,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-2,0,1948,-2,0,0 +2013,5,16,4,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,800,-16,0,0 +2013,4,25,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,2005,10,0,2200,38,1,0 +2013,5,31,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1835,0,0,1940,0,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-5,0,1918,-17,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1825,19,1,2350,25,1,0 +2013,7,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2002,14,0,2346,-4,0,0 +2013,4,23,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,14,0,1930,13,0,0 +2013,8,6,2,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1606,6,0,2149,-12,0,0 +2013,7,22,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2042,45,1,2319,34,1,0 +2013,5,24,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,24,1,1510,14,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1900,-2,0,2255,-9,0,0 +2013,10,10,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,5,0,1810,-4,0,0 +2013,6,23,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1015,-4,0,1155,-1,0,0 +2013,7,27,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,44,1,1905,32,1,0 +2013,4,5,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-7,0,811,-6,0,0 +2013,7,18,4,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1527,-5,0,1742,-8,0,0 +2013,8,15,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,6,0,1825,3,0,0 +2013,8,9,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,213,1,1854,203,1,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,5,0,1558,-9,0,0 +2013,5,21,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,0,,2100,0,1,1 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2240,158,1,40,140,1,0 +2013,6,17,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-7,0,2152,7,0,0 +2013,5,2,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,840,-5,0,947,-3,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,115,1,2300,134,1,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,0,0,1320,-3,0,0 +2013,7,2,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-9,0,1358,-21,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-4,0,2245,-13,0,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,-3,0,1620,-12,0,0 +2013,10,15,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2035,3,0,2205,-17,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1105,12,0,1330,-10,0,0 +2013,5,30,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,13,0,1820,39,1,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,640,-1,0,1200,-12,0,0 +2013,5,1,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,-3,0,1731,-13,0,0 +2013,4,28,7,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,-10,0,2310,-20,0,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,0,0,842,11,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,-3,0,1415,-13,0,0 +2013,7,22,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1006,-2,0,1314,5,0,0 +2013,6,3,1,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,810,164,1,1145,173,1,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1040,-3,0,1155,-14,0,0 +2013,10,20,7,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1840,6,0,2020,13,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1600,120,1,2030,111,1,0 +2013,6,17,1,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,625,-4,0,808,-17,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,631,-1,0,1023,-16,0,0 +2013,6,7,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,3,0,809,9,0,0 +2013,4,23,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,755,1,0,900,6,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,6,0,1255,-1,0,0 +2013,6,22,6,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,-11,0,2203,-30,0,0 +2013,9,10,2,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-1,0,1551,-10,0,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,19,1,1418,16,1,0 +2013,4,27,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,740,-10,0,855,-7,0,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,800,-1,0,935,1,0,0 +2013,5,8,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1140,-7,0,1324,-13,0,0 +2013,4,17,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,-1,0,940,20,1,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1055,-6,0,1610,3,0,0 +2013,8,14,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,-2,0,1205,-8,0,0 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,742,-8,0,1351,-19,0,0 +2013,4,22,1,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,4,0,655,-20,0,0 +2013,6,28,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,0,0,1535,-23,0,0 +2013,10,2,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,902,-18,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1205,52,1,1305,52,1,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1715,-1,0,2240,-2,0,0 +2013,8,25,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,8,0,1245,16,1,0 +2013,7,3,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1940,8,0,2305,12,0,0 +2013,7,18,4,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,14,0,2004,19,1,0 +2013,8,8,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1525,124,1,1650,130,1,0 +2013,10,8,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1215,6,0,1400,-12,0,0 +2013,5,16,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1552,-3,0,1655,30,1,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-2,0,1432,-5,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1945,90,1,2135,91,1,0 +2013,10,13,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,-6,0,1900,-11,0,0 +2013,6,25,2,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1740,190,1,1915,194,1,0 +2013,8,19,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,15,1,1115,6,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,3,0,1225,5,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1915,-2,0,2049,-14,0,0 +2013,8,14,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1610,56,1,1715,51,1,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-5,0,1829,-7,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-3,0,900,-10,0,0 +2013,7,10,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,634,-5,0,819,11,0,0 +2013,4,2,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1337,-8,0,1458,-11,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1447,-1,0,1555,-8,0,0 +2013,10,22,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1115,-1,0,1450,-14,0,0 +2013,9,3,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1118,-9,0,1400,-16,0,0 +2013,5,31,5,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1838,-2,0,2334,-11,0,0 +2013,4,11,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,25,1,2005,1,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,835,-7,0,843,-15,0,0 +2013,5,1,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,840,3,0,1005,-7,0,0 +2013,7,5,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1555,-13,0,1700,-25,0,0 +2013,5,20,1,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1341,33,1,1651,29,1,0 +2013,8,1,4,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-2,0,1040,-18,0,0 +2013,5,14,2,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,-3,0,2115,-26,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,51,1,2138,44,1,0 +2013,6,17,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,0,,1730,0,1,1 +2013,8,7,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,23,1,1334,20,1,0 +2013,10,16,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,835,0,0,1000,-3,0,0 +2013,9,18,3,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,-7,0,2027,-23,0,0 +2013,5,8,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,837,-3,0,922,1,0,0 +2013,8,26,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1725,20,1,1913,28,1,0 +2013,5,28,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-5,0,2202,-27,0,0 +2013,8,19,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1221,-2,0,1423,-12,0,0 +2013,9,8,7,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2120,-6,0,555,-17,0,0 +2013,6,12,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-5,0,958,4,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1609,-4,0,1625,-6,0,0 +2013,6,29,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,6,0,646,22,1,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,-9,0,1606,-11,0,0 +2013,7,29,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1225,-3,0,1805,-25,0,0 +2013,6,13,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,1,0,1425,-2,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1959,17,1,2156,3,0,0 +2013,5,28,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,740,15,1,840,8,0,0 +2013,5,1,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,-4,0,930,0,0,0 +2013,10,1,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,27,1,1655,30,1,0 +2013,6,30,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1600,-3,0,1720,-6,0,0 +2013,9,13,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,-4,0,824,-10,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,-3,0,5,-14,0,0 +2013,9,18,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,900,-9,0,0 +2013,9,21,6,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,655,0,0,1255,-5,0,0 +2013,6,16,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,700,-5,0,952,-19,0,0 +2013,10,13,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,930,3,0,1050,-2,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,946,-1,0,953,-1,0,0 +2013,10,9,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-6,0,1905,4,0,0 +2013,10,28,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1055,0,0,1330,-14,0,0 +2013,5,24,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-5,0,27,-7,0,0 +2013,8,27,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,1947,-12,0,0 +2013,4,18,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1122,4,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,-4,0,2139,-39,0,0 +2013,10,25,5,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1803,60,1,2106,47,1,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-5,0,1016,-13,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1830,32,1,1940,25,1,0 +2013,5,2,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,0,0,1655,-13,0,0 +2013,5,2,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,-3,0,1715,-9,0,0 +2013,10,1,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1450,0,0,1710,11,0,0 +2013,5,17,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1711,9,0,2331,2,0,0 +2013,7,12,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1030,-2,0,1035,2,0,0 +2013,8,8,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,710,3,0,835,-5,0,0 +2013,9,11,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1820,11,0,1845,4,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,925,0,,1020,0,1,1 +2013,7,18,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,605,-2,0,720,4,0,0 +2013,9,1,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1505,-18,0,1655,-36,0,0 +2013,10,12,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,46,1,1720,43,1,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,610,-4,0,715,-11,0,0 +2013,6,16,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,12,0,1826,8,0,0 +2013,5,10,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1000,70,1,1210,73,1,0 +2013,10,1,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1720,-10,0,1918,-14,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1616,3,0,32,2,0,0 +2013,7,5,5,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,0,0,1619,0,0,0 +2013,4,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,633,0,0,852,0,0,0 +2013,10,13,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2156,-5,0,600,-16,0,0 +2013,10,6,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1005,17,1,1204,5,0,0 +2013,4,3,3,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1535,-3,0,1815,-12,0,0 +2013,5,8,3,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1733,13,0,2237,-10,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2030,0,0,2156,-7,0,0 +2013,4,11,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,0,0,1520,-18,0,0 +2013,10,24,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,73,1,1413,71,1,0 +2013,7,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,20,1,2105,19,1,0 +2013,6,25,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,608,-1,0,719,-15,0,0 +2013,10,29,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,700,50,1,1042,25,1,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1320,52,1,1502,31,1,0 +2013,8,11,7,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,801,12,0,1304,-2,0,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,3,0,1120,0,0,0 +2013,9,5,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1755,61,1,1924,43,1,0 +2013,10,15,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1355,26,1,2019,19,1,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,0,0,2140,-13,0,0 +2013,7,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1635,18,1,1845,17,1,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,714,62,1,1035,47,1,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,929,-7,0,1208,-51,0,0 +2013,5,20,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-3,0,1844,-21,0,0 +2013,7,18,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,820,-6,0,1639,7,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,5,0,1628,-1,0,0 +2013,4,23,2,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,720,-1,0,845,26,1,0 +2013,10,18,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1235,45,1,1330,43,1,0 +2013,10,18,5,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,11,0,1605,1,0,0 +2013,9,14,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1030,-7,0,0 +2013,6,30,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1335,11,0,1530,-4,0,0 +2013,4,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,15,1,1423,28,1,0 +2013,6,17,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1950,44,1,2101,74,1,0 +2013,6,27,4,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1915,181,1,2221,165,1,0 +2013,7,31,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,62,1,1307,86,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,11,0,2045,7,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1757,5,0,2004,-4,0,0 +2013,4,28,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,5,0,2125,-3,0,0 +2013,10,10,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,11,0,1320,16,1,0 +2013,5,8,3,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1811,134,1,1931,154,1,0 +2013,4,25,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,13,0,1129,7,0,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2236,-8,0,15,-24,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,815,0,0,935,-4,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,-5,0,838,-11,0,0 +2013,7,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-2,0,906,-14,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1339,27,1,1525,31,1,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1530,-1,0,1650,-8,0,0 +2013,4,22,1,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,1204,-32,0,0 +2013,10,5,6,OO,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1654,22,1,1825,12,0,0 +2013,4,7,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1354,1,0,1615,2,0,0 +2013,6,24,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,17,1,1807,12,0,0 +2013,7,25,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,43,1,2040,39,1,0 +2013,6,9,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1655,-1,0,1755,-4,0,0 +2013,9,19,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,756,-16,0,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-3,0,1940,-20,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1508,-5,0,2046,-15,0,0 +2013,9,21,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1405,25,1,1525,21,1,0 +2013,7,23,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,3,0,1822,-4,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-2,0,2342,-9,0,0 +2013,8,5,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,950,4,0,1105,-7,0,0 +2013,5,9,4,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,745,4,0,943,8,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1215,0,0,1425,-4,0,0 +2013,6,10,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1725,167,1,1855,188,1,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,750,-1,0,915,-10,0,0 +2013,5,15,3,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1105,-2,0,1440,-15,0,0 +2013,8,22,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-2,0,1007,-9,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1025,-3,0,1205,-23,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1526,-2,0,1703,-20,0,0 +2013,8,17,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,-5,0,1515,-7,0,0 +2013,6,7,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,34,1,1933,36,1,0 +2013,10,25,5,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-5,0,709,-13,0,0 +2013,9,3,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-8,0,1518,-18,0,0 +2013,6,5,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1557,-3,0,1808,-14,0,0 +2013,9,19,4,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,920,44,1,1504,23,1,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1610,0,0,1630,7,0,0 +2013,4,25,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1730,106,1,1911,96,1,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-3,0,2005,-7,0,0 +2013,5,17,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2155,8,0,2315,10,0,0 +2013,7,18,4,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,710,0,0,1012,-10,0,0 +2013,10,11,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2245,-3,0,124,-1,0,0 +2013,10,26,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1405,6,0,1525,-3,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-3,0,1004,1,0,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,20,1,1509,21,1,0 +2013,9,26,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,31,1,1650,8,0,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1530,-2,0,1850,-10,0,0 +2013,10,21,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1310,6,0,1315,9,0,0 +2013,8,25,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1510,5,0,1840,-10,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1255,-5,0,1355,-20,0,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,640,-3,0,907,-14,0,0 +2013,7,24,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-6,0,641,8,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,-3,0,1018,4,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,14,0,925,-1,0,0 +2013,9,16,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2115,0,0,2235,24,1,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,805,-5,0,1255,-1,0,0 +2013,4,17,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,18,1,2235,6,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1350,33,1,1920,6,0,0 +2013,5,15,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,845,-2,0,1005,-7,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1750,1,0,1910,-8,0,0 +2013,9,17,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1555,9,0,1833,4,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,805,-3,0,925,-8,0,0 +2013,5,27,1,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-4,0,835,-14,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-1,0,1650,5,0,0 +2013,7,15,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,845,-1,0,1010,0,0,0 +2013,8,23,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,32,1,1845,26,1,0 +2013,4,25,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1305,14,0,1610,7,0,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2140,-6,0,35,-10,0,0 +2013,9,20,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-4,0,1015,-15,0,0 +2013,10,7,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1215,25,1,1430,14,0,0 +2013,8,22,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-6,0,1254,-3,0,0 +2013,6,26,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,7,0,1418,10,0,0 +2013,6,29,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,1414,-8,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1245,12,0,1605,39,1,0 +2013,8,23,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,735,0,0,900,-6,0,0 +2013,5,24,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,5,0,909,9,0,0 +2013,10,27,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2105,22,1,2303,13,0,0 +2013,10,1,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-5,0,2155,-25,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1245,6,0,1545,-3,0,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,837,-12,0,901,-19,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,725,-5,0,900,-13,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2130,39,1,2250,44,1,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1405,-2,0,1645,-18,0,0 +2013,4,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1050,-6,0,1150,-10,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,-3,0,29,-16,0,0 +2013,7,30,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-5,0,1509,-14,0,0 +2013,9,15,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,25,1,1230,34,1,0 +2013,9,27,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1655,-2,0,1735,-7,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1205,7,0,1315,8,0,0 +2013,5,6,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,296,1,1622,279,1,0 +2013,9,18,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-3,0,840,-21,0,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1945,14,0,115,14,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,-3,0,1340,-13,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-10,0,942,-14,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1145,3,0,1256,-15,0,0 +2013,6,29,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1624,80,1,1710,79,1,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1557,6,0,1747,-8,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,900,7,0,1330,8,0,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,947,32,1,1206,40,1,0 +2013,9,15,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,805,-11,0,1510,24,1,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-4,0,1316,1,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1813,19,1,2045,28,1,0 +2013,4,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1825,-7,0,2000,2,0,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2255,25,1,44,-3,0,0 +2013,10,20,7,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1204,-5,0,1807,-17,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,-1,0,2019,-19,0,0 +2013,6,4,2,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,759,0,,1020,0,1,1 +2013,8,7,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2211,-7,0,2330,-18,0,0 +2013,9,29,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,12,0,2049,-1,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,15,1,1355,7,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1610,19,1,1720,9,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1705,0,0,1830,0,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2015,0,0,2123,22,1,0 +2013,5,5,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1529,-2,0,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,600,-1,0,825,42,1,0 +2013,9,25,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1110,10,0,1220,4,0,0 +2013,5,3,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1914,-1,0,2100,-12,0,0 +2013,5,12,7,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,2,0,900,-1,0,0 +2013,7,13,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,849,-3,0,926,-2,0,0 +2013,7,10,3,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1130,-2,0,1838,-18,0,0 +2013,8,11,7,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1520,-5,0,1705,-12,0,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1105,-5,0,1330,-22,0,0 +2013,8,22,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1900,45,1,1930,37,1,0 +2013,5,16,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,918,111,1,1137,111,1,0 +2013,8,22,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1550,39,1,1610,64,1,0 +2013,5,24,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-4,0,1948,-9,0,0 +2013,4,30,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2037,-9,0,2200,-18,0,0 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,-9,0,1511,-27,0,0 +2013,9,27,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1430,-13,0,1610,-18,0,0 +2013,4,15,1,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1425,-3,0,1530,-5,0,0 +2013,8,10,6,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1650,32,1,1814,22,1,0 +2013,5,30,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,3,0,1901,34,1,0 +2013,10,9,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1800,27,1,1900,34,1,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1840,37,1,2310,36,1,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1331,-4,0,1650,-22,0,0 +2013,10,28,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,635,0,0,820,-1,0,0 +2013,5,25,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-4,0,1150,-5,0,0 +2013,10,21,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1955,3,0,2112,20,1,0 +2013,9,28,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1635,-8,0,1940,-48,0,0 +2013,7,25,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,705,-2,0,800,0,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-1,0,1105,-14,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1645,43,1,2000,31,1,0 +2013,4,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,209,1,1840,196,1,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,700,-5,0,840,-15,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1755,41,1,2335,51,1,0 +2013,4,19,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,11,0,2120,6,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,0,0,900,9,0,0 +2013,6,20,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,725,67,1,930,60,1,0 +2013,5,16,4,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,840,-6,0,956,-12,0,0 +2013,8,25,7,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,838,-8,0,1054,-7,0,0 +2013,8,29,4,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,614,10,0,748,-2,0,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1440,44,1,1540,41,1,0 +2013,10,13,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,-4,0,110,-10,0,0 +2013,6,4,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,836,-6,0,1150,-7,0,0 +2013,9,27,5,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1545,5,0,1733,-30,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,26,1,1510,20,1,0 +2013,6,28,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,635,-2,0,820,-1,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,750,-5,0,1008,45,1,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,-7,0,2025,-10,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,825,0,0,1010,3,0,0 +2013,10,6,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-2,0,845,-20,0,0 +2013,7,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1210,18,1,1435,1,0,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,0,0,1040,-8,0,0 +2013,10,10,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,-4,0,2130,-16,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,-3,0,1816,-11,0,0 +2013,8,12,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,4,0,940,-16,0,0 +2013,7,13,6,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-9,0,2055,-10,0,0 +2013,5,3,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-6,0,1257,-11,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-4,0,1913,-17,0,0 +2013,7,21,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14057,Portland International,Portland,OR,1806,-1,0,2013,-12,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1355,18,1,1925,5,0,0 +2013,10,21,1,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1430,-1,0,1600,-4,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,0,0,1320,-5,0,0 +2013,6,27,4,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,-2,0,2120,-11,0,0 +2013,8,15,4,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,828,-3,0,1130,-2,0,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,815,-7,0,1114,-25,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-1,0,945,-2,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-2,0,2110,3,0,0 +2013,5,15,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1115,-3,0,1219,23,1,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1820,31,1,2050,21,1,0 +2013,4,28,7,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1727,-6,0,2040,-5,0,0 +2013,9,21,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,625,-1,0,955,-10,0,0 +2013,10,13,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1857,-6,0,2135,-23,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,-2,0,2214,-8,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,69,1,10,85,1,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-6,0,1231,-14,0,0 +2013,5,23,4,9E,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,847,-4,0,1037,-2,0,0 +2013,10,15,2,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-5,0,1537,3,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,747,-4,0,930,4,0,0 +2013,4,1,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1654,14,0,1947,-1,0,0 +2013,10,16,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,935,17,1,1130,11,0,0 +2013,8,15,4,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-5,0,925,-2,0,0 +2013,8,1,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1840,1,0,2024,0,0,0 +2013,10,1,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,927,-9,0,1237,-12,0,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,600,-5,0,905,-9,0,0 +2013,10,7,1,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,725,1,0,1017,-10,0,0 +2013,5,18,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1745,-6,0,1950,-27,0,0 +2013,5,13,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1530,-3,0,1650,-13,0,0 +2013,4,7,7,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-9,0,1036,-15,0,0 +2013,7,21,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-5,0,2206,-12,0,0 +2013,7,8,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-5,0,1821,6,0,0 +2013,7,27,6,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-4,0,2025,-14,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1949,11,0,2052,-6,0,0 +2013,4,3,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-6,0,1650,-12,0,0 +2013,4,1,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-10,0,840,-28,0,0 +2013,10,29,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,900,0,0,1150,1,0,0 +2013,4,22,1,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2233,97,1,2351,78,1,0 +2013,7,21,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2200,28,1,2305,23,1,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1545,-6,0,1909,-12,0,0 +2013,8,5,1,OO,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,700,3,0,815,13,0,0 +2013,9,12,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2250,9,0,436,10,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1610,4,0,1817,-15,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1603,10,0,1736,0,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1235,0,0,1455,-21,0,0 +2013,7,5,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,-6,0,1121,1,0,0 +2013,8,7,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1305,6,0,1435,-3,0,0 +2013,4,22,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-6,0,1650,-11,0,0 +2013,7,2,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-12,0,1250,-14,0,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,2020,3,0,2350,-7,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1425,2,0,1530,2,0,0 +2013,6,21,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1010,-3,0,1320,-15,0,0 +2013,4,1,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,1250,-25,0,0 +2013,6,24,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1029,-2,0,1135,5,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,0,0,2115,8,0,0 +2013,4,29,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,2,0,1215,-4,0,0 +2013,8,2,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,7,0,1645,3,0,0 +2013,7,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,8,0,1040,3,0,0 +2013,9,23,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1937,-1,0,2104,1,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1922,-5,0,115,-24,0,0 +2013,9,20,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,28,1,1001,15,1,0 +2013,4,14,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,600,8,0,820,-2,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,8,0,1600,-8,0,0 +2013,5,28,2,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1320,6,0,1600,1,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,955,-5,0,1153,-11,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1640,25,1,1800,31,1,0 +2013,6,18,2,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1020,0,0,1245,-5,0,0 +2013,4,16,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,0,,1820,0,1,1 +2013,7,2,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,710,-6,0,835,-15,0,0 +2013,10,30,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1200,1,0,1305,2,0,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1020,-5,0,1215,-6,0,0 +2013,7,8,1,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,24,1,1035,23,1,0 +2013,9,13,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,621,-5,0,1227,-15,0,0 +2013,6,25,2,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-4,0,1109,-6,0,0 +2013,4,22,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1805,-6,0,1917,-7,0,0 +2013,7,4,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1356,-13,0,1640,-31,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,40,1,1204,25,1,0 +2013,10,4,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1620,78,1,1715,64,1,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,835,-6,0,1120,3,0,0 +2013,7,31,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-4,0,825,-9,0,0 +2013,9,2,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,-8,0,1530,-7,0,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,628,-6,0,900,-14,0,0 +2013,5,19,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,900,0,0,1114,-36,0,0 +2013,9,2,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,610,-10,0,930,-11,0,0 +2013,5,27,1,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,845,-1,0,1437,-13,0,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1100,0,0,1535,-11,0,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,88,1,2055,70,1,0 +2013,10,1,2,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,0,,2020,0,1,1 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1325,39,1,1711,24,1,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1943,-5,0,2130,-12,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2213,-5,0,2,-10,0,0 +2013,5,23,4,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1100,44,1,1547,73,1,0 +2013,6,4,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1011,-5,0,1028,-19,0,0 +2013,8,31,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1115,-10,0,1255,-22,0,0 +2013,6,28,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-6,0,811,-14,0,0 +2013,9,26,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1425,0,0,1800,-23,0,0 +2013,5,15,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2021,-8,0,2135,-13,0,0 +2013,8,29,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,741,-17,0,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1015,-1,0,1255,-5,0,0 +2013,8,16,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-6,0,1110,-2,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1344,1,0,2212,-30,0,0 +2013,9,2,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,-6,0,1730,0,0,0 +2013,5,24,5,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1710,3,0,1836,-6,0,0 +2013,6,30,7,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,136,1,1744,165,1,0 +2013,9,22,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1315,14,0,1523,10,0,0 +2013,5,14,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-2,0,1415,-11,0,0 +2013,4,16,2,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-6,0,940,1,0,0 +2013,7,16,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2128,-10,0,2200,-10,0,0 +2013,7,11,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-5,0,2210,-5,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1504,0,0,1637,1,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,34,1,1812,18,1,0 +2013,7,4,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,845,-6,0,950,-11,0,0 +2013,10,31,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1524,-1,0,1809,8,0,0 +2013,10,24,4,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,0,0,1908,-7,0,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,753,62,1,1555,43,1,0 +2013,6,5,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1245,-1,0,1420,6,0,0 +2013,7,25,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-5,0,2033,-15,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,1,0,1415,-7,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-1,0,223,16,1,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,910,14,0,1240,15,1,0 +2013,7,1,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,2,0,2115,-7,0,0 +2013,7,10,3,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,269,1,2005,253,1,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1450,12,0,1710,5,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,805,4,0,1000,7,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,910,0,,1015,0,1,1 +2013,5,16,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,-4,0,1053,-4,0,0 +2013,7,19,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,51,1,1720,45,1,0 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1104,52,1,1441,59,1,0 +2013,8,21,3,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,49,1,2010,44,1,0 +2013,9,7,6,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-2,0,1055,-40,0,0 +2013,7,25,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-7,0,1640,1,0,0 +2013,5,18,6,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1000,-1,0,1130,-5,0,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1110,-5,0,1310,-14,0,0 +2013,9,11,3,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1648,-1,0,1755,-5,0,0 +2013,5,10,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-4,0,1645,-4,0,0 +2013,9,1,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-8,0,1856,-9,0,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,645,-5,0,937,-5,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1310,-1,0,1810,-17,0,0 +2013,5,9,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,83,1,1540,81,1,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,4,0,1532,-8,0,0 +2013,4,6,6,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1140,-4,0,1250,-16,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-1,0,2110,1,0,0 +2013,8,28,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1640,68,1,2005,72,1,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,900,0,0,1645,-4,0,0 +2013,9,16,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1915,2,0,2240,3,0,0 +2013,6,10,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1031,-1,0,1514,-4,0,0 +2013,6,8,6,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,600,-1,0,920,-4,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1620,1,0,2350,-15,0,0 +2013,6,9,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,-1,0,2019,-18,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1004,100,1,1251,100,1,0 +2013,8,19,1,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,-2,0,1210,-14,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,9,0,2201,7,0,0 +2013,4,5,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2145,12,0,2315,15,1,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,2015,12,0,2154,15,1,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,901,-5,0,1204,-28,0,0 +2013,8,11,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1240,0,0,1350,-2,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1420,42,1,1645,33,1,0 +2013,7,1,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1841,-6,0,2100,-18,0,0 +2013,8,21,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1500,-4,0,1716,-4,0,0 +2013,6,5,3,UA,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1714,-8,0,1845,-9,0,0 +2013,10,1,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1904,14,0,2018,-3,0,0 +2013,9,11,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,736,-8,0,946,-22,0,0 +2013,6,10,1,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1645,-2,0,1825,-6,0,0 +2013,6,16,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1430,19,1,1620,19,1,0 +2013,5,9,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,20,1,1920,-6,0,0 +2013,4,21,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,635,-5,0,920,-9,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,740,13,0,1012,22,1,0 +2013,7,20,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,0,0,1106,0,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1010,-4,0,1146,-2,0,0 +2013,4,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,52,1,1620,43,1,0 +2013,4,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,817,-2,0,944,5,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1155,-2,0,1330,-11,0,0 +2013,6,13,4,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1245,14,0,1530,11,0,0 +2013,7,18,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,0,0,1410,0,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,2,0,1645,-4,0,0 +2013,8,4,7,YV,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1659,-7,0,1901,-9,0,0 +2013,8,2,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1843,-8,0,2110,-20,0,0 +2013,4,28,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,920,145,1,940,132,1,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-8,0,1153,-19,0,0 +2013,6,15,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1750,1,0,1920,0,0,0 +2013,7,22,1,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1250,-10,0,1535,-13,0,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,25,1,2240,39,1,0 +2013,8,1,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,-1,0,2105,-10,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,815,3,0,950,8,0,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,5,0,2023,10,0,0 +2013,9,30,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,855,-10,0,1130,-24,0,0 +2013,5,3,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,-9,0,2021,-19,0,0 +2013,5,21,2,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1526,60,1,1627,51,1,0 +2013,6,24,1,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1921,2,0,2337,-16,0,0 +2013,9,18,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1455,35,1,1810,17,1,0 +2013,9,16,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1026,-4,0,0 +2013,7,30,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,3,0,1506,15,1,0 +2013,8,29,4,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-3,0,1327,-8,0,0 +2013,5,6,1,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,2110,18,1,40,11,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1455,0,0,1605,-26,0,0 +2013,5,28,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,-12,0,1334,-14,0,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2059,65,1,2240,78,1,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,27,1,1351,21,1,0 +2013,6,30,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2227,-1,0,32,-9,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,900,20,1,1130,-1,0,0 +2013,10,28,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1519,-29,0,0 +2013,9,30,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,815,-1,0,1000,-5,0,0 +2013,5,25,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1655,4,0,0 +2013,9,22,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1100,-10,0,1309,-5,0,0 +2013,10,13,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,45,1,910,23,1,0 +2013,5,21,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,23,1,1542,25,1,0 +2013,8,20,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1820,0,0,1845,-7,0,0 +2013,4,23,2,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1315,-7,0,1424,-15,0,0 +2013,10,14,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-1,0,905,-7,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,830,8,0,1415,5,0,0 +2013,7,10,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1400,15,1,1422,26,1,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1549,20,1,1802,-3,0,0 +2013,10,5,6,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2145,2,0,519,1,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,1,0,1520,2,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2114,8,0,15,-1,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1600,3,0,1905,-3,0,0 +2013,9,30,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1920,2,0,2011,4,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1135,-5,0,1310,-11,0,0 +2013,5,27,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2145,17,1,2225,17,1,0 +2013,6,29,6,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,915,11,0,1035,3,0,0 +2013,5,1,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1240,-1,0,1447,-21,0,0 +2013,10,25,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,7,0,2250,12,0,0 +2013,6,20,4,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1840,55,1,1921,41,1,0 +2013,6,10,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,0,0,1545,5,0,0 +2013,6,4,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1255,-2,0,1700,-11,0,0 +2013,8,14,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1741,129,1,1904,120,1,0 +2013,5,22,3,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1240,1,0,2100,3,0,0 +2013,6,23,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,2146,2,0,100,2,0,0 +2013,7,28,7,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-5,0,1802,41,1,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1541,54,1,2028,35,1,0 +2013,7,4,4,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1200,-12,0,1930,-8,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1335,2,0,1500,-2,0,0 +2013,6,30,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2213,15,1,40,-10,0,0 +2013,6,12,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,630,-2,0,800,-10,0,0 +2013,8,14,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1310,11,0,1400,7,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1450,15,1,1615,7,0,0 +2013,10,29,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-8,0,1725,-11,0,0 +2013,8,22,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,27,1,1250,3,0,0 +2013,6,27,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,-9,0,1314,-12,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-3,0,2344,-4,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2151,-9,0,2309,32,1,0 +2013,6,27,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,1,0,2030,-21,0,0 +2013,5,20,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,952,38,1,1036,32,1,0 +2013,4,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2100,-7,0,2230,-5,0,0 +2013,10,25,5,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,757,-2,0,959,-7,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1604,3,0,1826,-13,0,0 +2013,9,30,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1655,8,0,1800,3,0,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2225,157,1,120,152,1,0 +2013,7,14,7,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1925,-8,0,2039,-11,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,18,1,1623,21,1,0 +2013,4,27,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,2,0,1137,3,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,48,1,1124,40,1,0 +2013,9,23,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,35,1,1850,28,1,0 +2013,10,15,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1925,-10,0,2030,-14,0,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,4,0,2200,15,1,0 +2013,6,9,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,32,1,1656,27,1,0 +2013,8,8,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,28,1,1215,70,1,0 +2013,8,15,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-6,0,1916,-22,0,0 +2013,7,25,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1625,9,0,2114,1,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-4,0,1037,-12,0,0 +2013,7,15,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-3,0,927,-9,0,0 +2013,8,5,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2335,-6,0,609,-10,0,0 +2013,10,5,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,2135,-8,0,559,-1,0,0 +2013,10,14,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1352,-8,0,1639,-5,0,0 +2013,5,13,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,11,0,1932,43,1,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,2,0,2347,6,0,0 +2013,9,21,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1951,10,0,2200,0,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2035,-7,0,2212,-28,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,617,-16,0,904,-21,0,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,925,-7,0,1227,-28,0,0 +2013,4,23,2,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,1204,-4,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1925,17,1,2255,0,1,1 +2013,10,17,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,-1,0,1327,-37,0,0 +2013,7,24,3,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2045,10,0,2310,-12,0,0 +2013,4,22,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,0,0,1430,-20,0,0 +2013,5,25,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,900,-4,0,1126,-14,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-5,0,1332,-11,0,0 +2013,10,7,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,3,0,1820,-6,0,0 +2013,6,22,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1340,2,0,1435,-6,0,0 +2013,10,26,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,820,5,0,1124,-10,0,0 +2013,9,28,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1625,-4,0,1750,-28,0,0 +2013,9,22,7,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,956,-7,0,1309,-6,0,0 +2013,8,3,6,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-6,0,1130,-24,0,0 +2013,10,14,1,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2225,12,0,607,20,1,0 +2013,8,1,4,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,625,0,0,940,-13,0,0 +2013,9,2,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,25,1,1710,30,1,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,12,0,1918,-2,0,0 +2013,7,7,7,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,0,0,1725,65,1,0 +2013,4,19,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-4,0,853,5,0,0 +2013,9,5,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,820,-5,0,1113,-12,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,-2,0,2244,-6,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,-1,0,1958,9,0,0 +2013,9,9,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1510,4,0,1805,-1,0,0 +2013,9,21,6,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1125,55,1,1250,54,1,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,954,-3,0,1151,-25,0,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-3,0,1443,5,0,0 +2013,8,22,4,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1959,4,0,2232,-15,0,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,600,5,0,1115,2,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2105,3,0,55,0,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,-7,0,1046,-14,0,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,13,0,2248,-25,0,0 +2013,6,17,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,-3,0,2225,-5,0,0 +2013,7,31,3,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,2,0,2255,-4,0,0 +2013,10,24,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,6,0,1400,6,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2120,76,1,2210,150,1,0 +2013,9,11,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1310,66,1,2134,88,1,0 +2013,6,2,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,-9,0,1820,-12,0,0 +2013,10,16,3,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,0,0,1643,-19,0,0 +2013,4,12,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1155,-4,0,1325,-5,0,0 +2013,5,4,6,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,930,-4,0,1240,-3,0,0 +2013,8,6,2,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-4,0,705,-8,0,0 +2013,4,1,1,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1145,8,0,1354,1,0,0 +2013,9,6,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1135,16,1,1415,18,1,0 +2013,7,3,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,910,5,0,1305,0,0,0 +2013,10,16,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1227,-7,0,1605,-17,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,50,1,1048,53,1,0 +2013,6,21,5,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,645,5,0,750,-9,0,0 +2013,6,12,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1225,16,1,1335,8,0,0 +2013,10,10,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-9,0,1200,-24,0,0 +2013,10,28,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,8,0,2055,2,0,0 +2013,9,12,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-4,0,1755,2,0,0 +2013,6,13,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2219,90,1,2354,93,1,0 +2013,4,10,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,44,1,1203,27,1,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,600,-2,0,745,-26,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1525,11,0,1805,0,0,0 +2013,8,16,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-9,0,707,-11,0,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,615,-5,0,730,5,0,0 +2013,9,27,5,AA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,810,-4,0,1545,-13,0,0 +2013,5,11,6,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1755,142,1,2030,120,1,0 +2013,8,21,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,705,-9,0,833,-12,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1027,6,0,1343,-16,0,0 +2013,6,4,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-6,0,1211,-5,0,0 +2013,7,31,3,VX,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,800,-6,0,1610,-19,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1915,38,1,2156,42,1,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,600,2,0,1428,1,0,0 +2013,8,16,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2140,-5,0,2259,-24,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,849,-7,0,1036,0,0,0 +2013,9,14,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,8,0,842,3,0,0 +2013,7,15,1,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1215,5,0,1342,-19,0,0 +2013,7,21,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,8,0,1115,2,0,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2020,-2,0,2115,0,0,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,855,-2,0,1210,-4,0,0 +2013,5,14,2,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,-7,0,1357,-10,0,0 +2013,8,14,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1835,7,0,1950,4,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1815,8,0,1953,14,0,0 +2013,6,3,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2255,-3,0,2359,-12,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1115,-1,0,1257,-8,0,0 +2013,4,10,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,740,-3,0,1559,16,1,0 +2013,9,30,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,843,-8,0,1019,-13,0,0 +2013,5,9,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1015,-5,0,1212,-11,0,0 +2013,4,29,1,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-5,0,936,1,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1830,-5,0,2140,-10,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1850,6,0,1945,-1,0,0 +2013,6,30,7,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-7,0,938,-5,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1440,59,1,1800,59,1,0 +2013,10,15,2,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,2,0,823,5,0,0 +2013,7,12,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,840,-6,0,1017,-16,0,0 +2013,7,31,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,-3,0,1200,-10,0,0 +2013,9,27,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1155,18,1,1940,20,1,0 +2013,4,24,3,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-3,0,714,2,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1631,-5,0,1639,-11,0,0 +2013,7,11,4,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,14,0,1510,18,1,0 +2013,9,28,6,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1706,-4,0,2258,-10,0,0 +2013,6,7,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,-6,0,833,-16,0,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,803,0,0,1031,-16,0,0 +2013,7,24,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1155,7,0,1415,25,1,0 +2013,10,21,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,721,-3,0,1000,-11,0,0 +2013,8,18,7,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,0,0,1950,-5,0,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1538,0,,1856,0,1,1 +2013,7,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1230,16,1,1340,16,1,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,905,-3,0,1255,-8,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1106,-5,0,1945,-27,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1540,52,1,1855,37,1,0 +2013,6,30,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-9,0,1200,-17,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,3,0,1149,0,0,0 +2013,4,12,5,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,815,31,1,926,33,1,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,7,0,1055,9,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-3,0,854,-16,0,0 +2013,8,18,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,229,1,1030,232,1,0 +2013,6,26,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,60,1,2317,51,1,0 +2013,6,9,7,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,7,0,1253,1,0,0 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2055,-2,0,2305,-1,0,0 +2013,5,2,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,905,-1,0,1200,-2,0,0 +2013,10,31,4,WN,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1515,-9,0,1755,-2,0,0 +2013,4,6,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,620,0,0,810,-17,0,0 +2013,4,30,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,625,0,0,745,-21,0,0 +2013,5,18,6,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,650,-3,0,808,-26,0,0 +2013,5,24,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,23,1,1804,3,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1730,39,1,2117,56,1,0 +2013,4,27,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1740,-3,0,1922,14,0,0 +2013,9,30,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,25,1,1106,16,1,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1005,-3,0,1244,-9,0,0 +2013,7,13,6,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,14,0,1640,-11,0,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1553,45,1,2359,56,1,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1310,78,1,1520,72,1,0 +2013,6,4,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1106,8,0,1203,9,0,0 +2013,5,16,4,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,52,1,1420,42,1,0 +2013,6,20,4,DL,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1950,15,1,2127,19,1,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1325,-2,0,1854,-15,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1137,14,0,1349,30,1,0 +2013,7,14,7,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,-8,0,1223,-3,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,-2,0,1545,-5,0,0 +2013,7,5,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1812,-7,0,2017,8,0,0 +2013,5,25,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1705,4,0,1845,12,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2050,53,1,2254,36,1,0 +2013,10,20,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,820,-4,0,850,-13,0,0 +2013,8,30,5,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,725,2,0,850,-8,0,0 +2013,8,18,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-6,0,725,-7,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,800,9,0,1240,2,0,0 +2013,10,22,2,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1524,-7,0,1600,-2,0,0 +2013,7,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,900,18,1,1043,5,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,27,1,1725,14,0,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1202,6,0,1331,13,0,0 +2013,10,4,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2025,-5,0,2142,-10,0,0 +2013,7,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,0,0,1155,-10,0,0 +2013,6,19,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,10,0,2130,20,1,0 +2013,4,12,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2359,61,1,223,52,1,0 +2013,6,11,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-6,0,705,-3,0,0 +2013,8,20,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-4,0,1335,-9,0,0 +2013,7,15,1,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1245,-2,0,1415,-1,0,0 +2013,8,5,1,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1100,-3,0,1425,0,0,0 +2013,5,12,7,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-17,0,500,-14,0,0 +2013,8,26,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,859,-6,0,1004,-8,0,0 +2013,4,19,5,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1541,2,0,1620,6,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,20,1,1525,20,1,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1010,1,0,1715,-9,0,0 +2013,10,7,1,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,950,-6,0,1108,5,0,0 +2013,8,23,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,829,-7,0,1005,-13,0,0 +2013,8,9,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1335,14,0,1445,24,1,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,84,1,2200,84,1,0 +2013,7,12,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,849,-9,0,1021,-5,0,0 +2013,9,24,2,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1731,-2,0,1952,-8,0,0 +2013,9,26,4,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,810,-6,0,0 +2013,8,16,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,45,1,1730,40,1,0 +2013,8,11,7,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1655,18,1,1923,3,0,0 +2013,8,26,1,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1518,1,0,1628,-7,0,0 +2013,5,31,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,715,-6,0,930,-15,0,0 +2013,7,12,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,56,1,1830,62,1,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1603,-3,0,1800,-3,0,0 +2013,4,19,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,3,0,821,-2,0,0 +2013,4,20,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,900,-4,0,1011,-5,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1619,-4,0,51,-10,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,635,-8,0,800,-12,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1755,-2,0,1919,-16,0,0 +2013,6,27,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1110,0,0,1240,-7,0,0 +2013,10,22,2,9E,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,706,88,1,830,76,1,0 +2013,4,4,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1145,6,0,1450,5,0,0 +2013,10,31,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-3,0,2030,-16,0,0 +2013,7,31,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-4,0,1155,-12,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-6,0,2149,10,0,0 +2013,10,6,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1357,-5,0,1655,-10,0,0 +2013,9,30,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-3,0,1310,-8,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1930,-6,0,2246,-33,0,0 +2013,5,20,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,600,-2,0,710,0,0,0 +2013,4,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1026,75,1,1434,75,1,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-4,0,1240,-8,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1020,-4,0,1043,-1,0,0 +2013,9,16,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1725,2,0,1845,-6,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,952,7,0,1336,3,0,0 +2013,6,5,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-1,0,835,9,0,0 +2013,7,15,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,4,0,1912,22,1,0 +2013,10,17,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1403,110,1,1949,93,1,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1310,-7,0,1634,9,0,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-7,0,2138,-13,0,0 +2013,5,20,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,0,0,1015,-31,0,0 +2013,10,26,6,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,-7,0,1945,-19,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,800,3,0,1106,7,0,0 +2013,6,9,7,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1430,2,0,2255,-11,0,0 +2013,4,1,1,DL,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2300,-5,0,658,-17,0,0 +2013,4,27,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,-9,0,1202,-14,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-5,0,1035,-25,0,0 +2013,4,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,-4,0,1045,-3,0,0 +2013,8,6,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,4,0,1740,24,1,0 +2013,4,5,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,840,-5,0,1209,-2,0,0 +2013,6,7,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1042,12,0,0 +2013,10,11,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,700,-1,0,925,-15,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-5,0,1100,-24,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1055,-4,0,1226,-4,0,0 +2013,8,2,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,0,0,810,19,1,0 +2013,7,19,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1220,0,0,1420,20,1,0 +2013,6,18,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,75,1,1729,87,1,0 +2013,10,10,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1642,48,1,2000,26,1,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,543,-3,0,917,-13,0,0 +2013,4,1,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,57,1,1649,47,1,0 +2013,9,16,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1540,40,1,1807,34,1,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,11,0,1931,27,1,0 +2013,7,14,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,66,1,1345,59,1,0 +2013,6,23,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1737,22,1,1849,34,1,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-4,0,1410,4,0,0 +2013,8,6,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1116,-6,0,1350,8,0,0 +2013,9,12,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,709,-2,0,912,-9,0,0 +2013,7,16,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2025,-3,0,2125,-9,0,0 +2013,4,23,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1320,-5,0,1711,5,0,0 +2013,9,30,1,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,1315,7,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,0,0,1535,-6,0,0 +2013,5,18,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1714,1,0,2008,-32,0,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,750,0,0,925,-14,0,0 +2013,5,8,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1115,44,1,1305,32,1,0 +2013,8,27,2,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,810,-3,0,1140,-6,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-3,0,2322,-30,0,0 +2013,6,17,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1854,28,1,2110,24,1,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1800,57,1,2105,50,1,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,11,0,1357,17,1,0 +2013,8,18,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-3,0,1107,11,0,0 +2013,5,17,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,22,1,1700,4,0,0 +2013,4,28,7,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1610,31,1,1655,30,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-3,0,2332,-15,0,0 +2013,10,8,2,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,953,-2,0,1327,-7,0,0 +2013,5,11,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,111,1,0,619,9,0,0 +2013,6,15,6,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1515,-3,0,1840,-3,0,0 +2013,5,13,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,600,-8,0,913,-13,0,0 +2013,9,26,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,3,0,1025,6,0,0 +2013,4,9,2,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,908,-3,0,1210,0,0,0 +2013,9,4,3,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1710,-3,0,1935,-19,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1543,22,1,1726,10,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1310,90,1,1520,101,1,0 +2013,4,12,5,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,857,-2,0,1042,-7,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1013,17,1,1500,-8,0,0 +2013,10,30,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,740,-1,0,835,-2,0,0 +2013,10,25,5,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,710,-3,0,845,-15,0,0 +2013,5,18,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-1,0,1712,10,0,0 +2013,6,10,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-6,0,1000,-24,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,615,-4,0,825,-2,0,0 +2013,5,23,4,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1359,-2,0,1749,-11,0,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1944,-6,0,2118,-6,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,955,0,0,1700,-4,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1545,20,1,1909,24,1,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1115,-3,0,1340,1,0,0 +2013,7,14,7,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1645,17,1,1810,34,1,0 +2013,9,17,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,649,-5,0,813,-9,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-5,0,2215,-23,0,0 +2013,8,26,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-3,0,1955,11,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1107,10,0,1238,2,0,0 +2013,9,20,5,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1518,0,0,1809,12,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2020,5,0,2215,-2,0,0 +2013,8,9,5,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,615,-2,0,1500,-6,0,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1720,12,0,2010,15,1,0 +2013,8,20,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,604,3,0,930,-12,0,0 +2013,6,1,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1640,-5,0,1755,-6,0,0 +2013,8,21,3,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-8,0,2000,-3,0,0 +2013,6,7,5,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,-3,0,600,-10,0,0 +2013,8,2,5,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2338,-5,0,717,-15,0,0 +2013,10,2,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1446,-9,0,1505,-5,0,0 +2013,7,12,5,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,816,22,1,1620,29,1,0 +2013,5,23,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-9,0,1357,-10,0,0 +2013,7,6,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,13,0,838,-3,0,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1715,-4,0,1837,23,1,0 +2013,5,16,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1440,0,,1615,0,1,1 +2013,6,27,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,640,35,1,702,29,1,0 +2013,10,24,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,-13,0,2241,-11,0,0 +2013,9,18,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1355,41,1,1405,42,1,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,0,0,1913,-7,0,0 +2013,5,12,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,700,0,0,910,-2,0,0 +2013,9,3,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,725,-2,0,850,4,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1249,1,0,1703,-21,0,0 +2013,4,16,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1140,156,1,1730,140,1,0 +2013,10,13,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,2,0,920,-5,0,0 +2013,6,25,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,-2,0,1235,-19,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1150,1,0,1410,5,0,0 +2013,4,10,3,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,11,0,2030,14,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1150,0,0,1315,-9,0,0 +2013,8,11,7,OO,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,856,-7,0,1023,-6,0,0 +2013,10,7,1,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1745,-7,0,1940,-24,0,0 +2013,6,13,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1830,-1,0,2110,-7,0,0 +2013,4,21,7,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2157,-4,0,2322,-17,0,0 +2013,9,9,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-7,0,1720,-3,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,-7,0,1045,-19,0,0 +2013,8,8,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,152,1,2030,140,1,0 +2013,7,7,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1933,-1,0,2125,-12,0,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,635,-5,0,800,1,0,0 +2013,7,21,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1003,-3,0,1410,0,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,69,1,2105,41,1,0 +2013,10,2,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,11,0,1445,0,0,0 +2013,8,14,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-6,0,2041,-1,0,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1252,10,0,1623,-4,0,0 +2013,8,19,1,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1210,-2,0,1325,-14,0,0 +2013,10,21,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1855,0,0,2020,-8,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2025,6,0,2115,0,0,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,6,0,1917,-3,0,0 +2013,4,15,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,19,1,1640,8,0,0 +2013,7,12,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,7,0,1400,0,0,0 +2013,7,31,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1835,-2,0,1950,22,1,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1255,5,0,1825,-16,0,0 +2013,10,3,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,61,1,910,60,1,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,-1,0,754,-20,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2125,168,1,2220,161,1,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1335,5,0,1430,-1,0,0 +2013,7,8,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1625,-3,0,1915,-8,0,0 +2013,6,7,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-3,0,1600,16,1,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1804,-4,0,1932,-3,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,47,1,2130,23,1,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,900,2,0,945,-2,0,0 +2013,4,14,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1610,-1,0,1732,-16,0,0 +2013,10,24,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,700,-8,0,825,-12,0,0 +2013,10,13,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-4,0,1812,-14,0,0 +2013,4,18,4,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,642,-5,0,845,-19,0,0 +2013,4,12,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1420,3,0,1545,5,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,602,5,0,729,-5,0,0 +2013,9,13,5,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,959,38,1,1318,40,1,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,3,0,1409,-10,0,0 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1835,-1,0,2000,-2,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,-1,0,1430,-2,0,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,1,0,1430,1,0,0 +2013,5,5,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1705,12,0,1905,-10,0,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,4,0,1220,-6,0,0 +2013,5,13,1,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1445,-5,0,1842,-15,0,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-4,0,1837,-3,0,0 +2013,6,3,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,52,1,1850,45,1,0 +2013,4,17,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,68,1,1305,50,1,0 +2013,6,26,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,75,1,1205,79,1,0 +2013,6,30,7,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,0,0,1230,10,0,0 +2013,4,5,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1402,7,0,1656,4,0,0 +2013,9,7,6,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1445,-2,0,1605,-14,0,0 +2013,9,7,6,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,755,0,0,1554,-6,0,0 +2013,7,10,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-3,0,1305,-6,0,0 +2013,8,14,3,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1330,4,0,1439,-1,0,0 +2013,7,12,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-8,0,913,-15,0,0 +2013,7,22,1,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1134,135,1,1306,157,1,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,17,1,1515,29,1,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,2,0,930,-16,0,0 +2013,7,7,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,630,-7,0,916,-20,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1950,15,1,2305,6,0,0 +2013,4,16,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,8,0,1825,-1,0,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,955,-1,0,1310,-18,0,0 +2013,10,20,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1930,-9,0,2040,-12,0,0 +2013,8,4,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2215,-3,0,609,-23,0,0 +2013,6,20,4,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1445,11,0,1559,15,1,0 +2013,7,18,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,0,0,2130,-7,0,0 +2013,9,30,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1740,6,0,2021,0,0,0 +2013,5,4,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1210,-4,0,1505,-5,0,0 +2013,9,21,6,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1200,0,0,1319,4,0,0 +2013,8,5,1,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1420,-2,0,1714,-18,0,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1115,-3,0,1715,-8,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,5,0,1140,-1,0,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1552,14,0,1946,8,0,0 +2013,8,22,4,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2245,-3,0,654,-15,0,0 +2013,9,16,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,4,0,920,-4,0,0 +2013,4,22,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1038,-2,0,1209,18,1,0 +2013,9,10,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,7,0,906,-13,0,0 +2013,5,12,7,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-7,0,835,2,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1635,-4,0,1800,-27,0,0 +2013,6,26,3,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,2030,-2,0,2211,32,1,0 +2013,4,25,4,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,616,-4,0,1206,-19,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2050,45,1,10,36,1,0 +2013,7,9,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,10,0,1641,-7,0,0 +2013,5,22,3,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,705,-3,0,1031,-10,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-5,0,2150,-13,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1403,1,0,1637,-16,0,0 +2013,8,8,4,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-8,0,1529,24,1,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,844,-5,0,1041,-11,0,0 +2013,4,2,2,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,618,4,0,822,10,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-1,0,2006,-10,0,0 +2013,10,19,6,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-1,0,907,1,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1040,6,0,1220,-3,0,0 +2013,9,25,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-6,0,636,-18,0,0 +2013,5,8,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1230,-2,0,1309,0,0,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,812,14,0,951,21,1,0 +2013,5,10,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,92,1,839,93,1,0 +2013,7,30,2,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,51,1,1923,38,1,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,2,0,2240,2,0,0 +2013,10,2,3,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1930,-9,0,2132,-15,0,0 +2013,4,6,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,-8,0,1436,-10,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,905,-4,0,1140,-22,0,0 +2013,6,14,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,949,60,1,1130,51,1,0 +2013,5,10,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2143,59,1,2357,47,1,0 +2013,9,19,4,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1635,98,1,1820,100,1,0 +2013,6,7,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1815,123,1,1915,117,1,0 +2013,10,25,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,618,-6,0,659,-7,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1719,-5,0,1829,-17,0,0 +2013,8,29,4,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1951,-2,0,2220,-1,0,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,600,31,1,921,20,1,0 +2013,9,12,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,905,-4,0,1005,-5,0,0 +2013,5,31,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,3,0,1746,-1,0,0 +2013,9,20,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,826,-6,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1735,11,0,2325,4,0,0 +2013,8,20,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,17,1,745,12,0,0 +2013,9,2,1,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-11,0,1220,-18,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-3,0,1449,-12,0,0 +2013,5,12,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,-5,0,1434,-41,0,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,720,6,0,840,0,0,0 +2013,7,27,6,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1510,-4,0,1621,-1,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,-1,0,1415,-9,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1315,13,0,1517,13,0,0 +2013,9,26,4,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,935,-5,0,1240,-20,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1740,2,0,2252,-34,0,0 +2013,10,9,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2107,1,0,2219,4,0,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,924,-7,0,1117,-14,0,0 +2013,7,24,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,634,-4,0,835,2,0,0 +2013,5,5,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1135,1,0,1300,1,0,0 +2013,10,18,5,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1420,29,1,1721,15,1,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,28,1,1310,21,1,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,57,1,1258,44,1,0 +2013,6,27,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1852,0,,2011,0,1,1 +2013,4,18,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,0,,1849,0,1,1 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1020,16,1,1310,2,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-1,0,1424,-6,0,0 +2013,4,5,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1715,20,1,1855,7,0,0 +2013,4,4,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1130,-3,0,1835,-8,0,0 +2013,9,6,5,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2230,-11,0,702,-16,0,0 +2013,9,4,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-7,0,1542,-8,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,4,0,1235,6,0,0 +2013,8,4,7,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1019,-2,0,1440,-12,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,-2,0,2130,2,0,0 +2013,6,14,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,935,0,0,1205,-6,0,0 +2013,4,10,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,856,-5,0,1020,11,0,0 +2013,5,6,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1340,-6,0,1435,10,0,0 +2013,4,14,7,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-6,0,754,24,1,0 +2013,5,12,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,-11,0,1110,-7,0,0 +2013,10,5,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,840,2,0,0 +2013,7,6,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,622,-5,0,747,-14,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,0,0,610,15,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,2,0,2159,-9,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1510,-3,0,1738,-6,0,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,10,0,2235,-9,0,0 +2013,4,4,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,925,-9,0,1119,-29,0,0 +2013,4,20,6,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,839,-4,0,1106,-8,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,905,-7,0,1125,-22,0,0 +2013,7,2,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,2004,123,1,2335,108,1,0 +2013,10,28,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1356,-3,0,1514,-2,0,0 +2013,7,8,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,8,0,1125,-12,0,0 +2013,7,9,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-1,0,1105,-1,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,-7,0,453,-13,0,0 +2013,7,3,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,11,0,730,15,1,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,930,4,0,1130,13,0,0 +2013,9,22,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1119,-12,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,805,6,0,1040,7,0,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1051,20,1,1340,9,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1035,0,0,1355,23,1,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,2,0,1249,-1,0,0 +2013,8,14,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,46,1,1709,50,1,0 +2013,5,13,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-4,0,1325,-17,0,0 +2013,6,28,5,EV,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-5,0,1004,-18,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,920,2,0,1130,-6,0,0 +2013,10,4,5,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,-6,0,2115,10,0,0 +2013,6,4,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-8,0,1250,-5,0,0 +2013,10,10,4,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,715,2,0,800,-7,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,745,1,0,1135,0,0,0 +2013,8,13,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1716,-7,0,1844,-16,0,0 +2013,9,25,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1748,0,0,0 +2013,9,20,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,840,-1,0,930,26,1,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,630,1,0,914,-18,0,0 +2013,7,30,2,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1711,8,0,2039,-10,0,0 +2013,10,8,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1605,-5,0,2353,-13,0,0 +2013,6,8,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,943,-16,0,0 +2013,6,7,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,104,1,1340,82,1,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1736,24,1,2020,4,0,0 +2013,7,29,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-8,0,2120,-14,0,0 +2013,8,8,4,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1100,-5,0,1349,-6,0,0 +2013,10,3,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1709,4,0,1840,13,0,0 +2013,6,26,3,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,9,0,820,5,0,0 +2013,5,11,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1430,-3,0,1555,-10,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1235,13,0,1400,6,0,0 +2013,5,21,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,41,1,1853,26,1,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,920,-8,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,3,0,2135,1,0,0 +2013,8,12,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,943,-2,0,1238,-6,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2040,69,1,2310,60,1,0 +2013,5,22,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1539,6,0,1720,0,0,0 +2013,4,21,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,926,-5,0,1129,-5,0,0 +2013,7,11,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1037,-2,0,1149,-9,0,0 +2013,9,20,5,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1600,11,0,1700,0,1,1 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2045,13,0,2246,-8,0,0 +2013,8,10,6,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1212,-9,0,1710,-20,0,0 +2013,10,5,6,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,600,-2,0,845,-11,0,0 +2013,8,11,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,-4,0,1531,-8,0,0 +2013,4,1,1,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1815,28,1,2100,32,1,0 +2013,4,7,7,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1333,18,1,1902,6,0,0 +2013,10,27,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1500,-6,0,1615,-4,0,0 +2013,4,10,3,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,837,-7,0,1117,-21,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,5,0,2135,7,0,0 +2013,5,17,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,2,0,1331,1,0,0 +2013,6,4,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,17,1,2051,13,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2210,-7,0,50,-22,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1440,14,0,1704,2,0,0 +2013,5,26,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-7,0,2016,-21,0,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,-2,0,1352,-19,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2207,-3,0,2335,1,0,0 +2013,10,27,7,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,18,1,1540,24,1,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2005,12,0,2045,9,0,0 +2013,4,22,1,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,959,3,0,1110,5,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1908,239,1,2053,204,1,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,9,0,1140,-12,0,0 +2013,4,22,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-10,0,1600,-6,0,0 +2013,10,6,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1333,-2,0,2059,14,0,0 +2013,5,29,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-9,0,808,-12,0,0 +2013,8,17,6,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,-6,0,559,-16,0,0 +2013,10,27,7,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1250,-7,0,1505,-12,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,10,0,1535,1,0,0 +2013,8,12,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,35,1,2150,21,1,0 +2013,8,27,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1845,-3,0,2051,-8,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,0,0,1620,-9,0,0 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-6,0,1505,-6,0,0 +2013,9,19,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,40,1,1340,43,1,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2010,-1,0,2312,9,0,0 +2013,9,22,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,930,4,0,1127,-1,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,600,-1,0,1050,-12,0,0 +2013,7,3,3,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1416,-3,0,1603,8,0,0 +2013,5,22,3,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1610,-32,0,0 +2013,7,11,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,-2,0,925,3,0,0 +2013,6,17,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1523,-7,0,0 +2013,9,17,2,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,0,0,922,0,0,0 +2013,10,18,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1130,28,1,1340,43,1,0 +2013,9,11,3,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1435,-10,0,1546,-17,0,0 +2013,10,27,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1236,-8,0,1450,-21,0,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,826,16,1,954,14,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1331,18,1,1807,2,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1010,10,0,1120,8,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2252,-1,0,2339,-21,0,0 +2013,7,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1525,0,0,1645,-1,0,0 +2013,6,11,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1925,14,0,2148,-28,0,0 +2013,6,17,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1525,75,1,1625,63,1,0 +2013,6,27,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,1,0,950,14,0,0 +2013,7,8,1,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,835,-1,0,1031,8,0,0 +2013,8,10,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1857,-1,0,1925,-5,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1615,31,1,1747,35,1,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,1,0,1435,-7,0,0 +2013,8,17,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2033,27,1,500,20,1,0 +2013,10,28,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1455,-4,0,1640,1,0,0 +2013,6,24,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,-6,0,1650,-13,0,0 +2013,7,2,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,-7,0,1434,10,0,0 +2013,5,26,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1008,-1,0,1101,-6,0,0 +2013,10,5,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,-8,0,945,-5,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2057,3,0,2223,4,0,0 +2013,4,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-8,0,913,-19,0,0 +2013,4,29,1,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1111,-2,0,1405,-3,0,0 +2013,7,13,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,618,-4,0,715,3,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,955,3,0,1803,-7,0,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1140,3,0,1725,12,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,6,0,2200,-3,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1245,0,0,1355,-7,0,0 +2013,6,11,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1710,-3,0,1756,-5,0,0 +2013,8,16,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,815,6,0,1640,24,1,0 +2013,4,16,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1410,0,0,1722,2,0,0 +2013,8,14,3,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,830,-4,0,1120,-7,0,0 +2013,6,25,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-4,0,1250,-18,0,0 +2013,6,9,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1500,18,1,0 +2013,4,10,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1345,-6,0,1647,-26,0,0 +2013,6,27,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,21,1,1630,33,1,0 +2013,4,2,2,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1755,27,1,1911,25,1,0 +2013,8,21,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1815,-6,0,1915,-7,0,0 +2013,7,13,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-5,0,641,-9,0,0 +2013,7,17,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,809,-10,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2120,14,0,20,3,0,0 +2013,6,3,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,710,53,1,825,74,1,0 +2013,9,3,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1925,-12,0,2102,-19,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2040,-2,0,2145,-15,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2145,-3,0,2329,-26,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1405,33,1,1515,31,1,0 +2013,10,3,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1405,48,1,1505,53,1,0 +2013,10,24,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,0,0,830,-5,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1545,-4,0,1556,-8,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1930,1,0,2035,-9,0,0 +2013,4,10,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-7,0,2100,-16,0,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1635,-2,0,1810,0,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-4,0,2106,-36,0,0 +2013,8,1,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1755,50,1,1935,59,1,0 +2013,9,29,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,755,-5,0,930,-10,0,0 +2013,4,29,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,745,-8,0,0 +2013,9,10,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,945,-10,0,1226,-19,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1000,14,0,1200,12,0,0 +2013,10,21,1,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1905,-3,0,2131,-6,0,0 +2013,7,2,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,810,-10,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,1,0,859,-4,0,0 +2013,9,16,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1740,-4,0,1910,-14,0,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1208,-3,0,1452,17,1,0 +2013,7,11,4,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-4,0,1129,-8,0,0 +2013,8,20,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,950,17,1,1100,17,1,0 +2013,7,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1910,35,1,2048,26,1,0 +2013,6,6,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,840,11,0,1034,19,1,0 +2013,9,10,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-3,0,1645,-19,0,0 +2013,6,27,4,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1959,11,0,2236,21,1,0 +2013,5,6,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1407,-4,0,1533,-17,0,0 +2013,9,29,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1358,-2,0,1443,-4,0,0 +2013,6,16,7,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1417,-2,0,1604,-3,0,0 +2013,5,6,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1245,6,0,1400,14,0,0 +2013,5,20,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,2040,80,1,2130,85,1,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,952,53,1,1229,53,1,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,-4,0,903,1,0,0 +2013,8,18,7,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1122,-10,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,0,0,1004,-9,0,0 +2013,10,29,2,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1750,-4,0,1910,-12,0,0 +2013,10,4,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1658,-3,0,2256,-19,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1100,13,0,1337,5,0,0 +2013,7,8,1,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1234,0,0,1541,5,0,0 +2013,10,5,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-10,0,814,-14,0,0 +2013,8,22,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1900,1,0,2145,-12,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,805,8,0,945,7,0,0 +2013,6,30,7,EV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,558,-6,0,922,-18,0,0 +2013,5,16,4,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2022,5,0,2302,0,0,0 +2013,5,21,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1235,-12,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1200,-6,0,1320,-17,0,0 +2013,7,22,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1838,5,0,2005,-10,0,0 +2013,6,7,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-4,0,1214,21,1,0 +2013,9,16,1,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,-4,0,1650,-4,0,0 +2013,6,22,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1520,7,0,1635,-4,0,0 +2013,7,6,6,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-7,0,1722,-8,0,0 +2013,8,15,4,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,-7,0,1030,-14,0,0 +2013,5,16,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,-2,0,2335,-16,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,170,1,2135,185,1,0 +2013,5,9,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,943,0,0,1444,-13,0,0 +2013,5,24,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,127,1,1610,170,1,0 +2013,7,23,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,2,0,840,-2,0,0 +2013,5,16,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1520,11,0,1635,4,0,0 +2013,7,24,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,0,0,851,-19,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1425,98,1,1900,85,1,0 +2013,10,21,1,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-8,0,1509,-8,0,0 +2013,7,20,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-2,0,1525,0,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1325,-4,0,1605,-16,0,0 +2013,8,7,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,5,0,1905,10,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,15,1,1530,1,0,0 +2013,6,26,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1626,-17,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,805,0,0,1130,4,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1230,7,0,1330,14,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,3,0,2220,-25,0,0 +2013,5,17,5,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1245,31,1,1350,12,0,0 +2013,10,20,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-7,0,1017,-8,0,0 +2013,8,26,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-5,0,1335,-17,0,0 +2013,10,14,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1305,21,1,2106,-1,0,0 +2013,6,11,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,615,92,1,740,85,1,0 +2013,4,26,5,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1805,1,0,2017,0,0,0 +2013,4,3,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,11,0,1805,3,0,0 +2013,8,17,6,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1220,34,1,1745,12,0,0 +2013,5,15,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,-4,0,1617,-11,0,0 +2013,9,28,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1315,-9,0,1435,-14,0,0 +2013,9,20,5,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1643,0,,1815,0,1,1 +2013,10,7,1,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1024,6,0,0 +2013,10,25,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-5,0,1815,-10,0,0 +2013,7,17,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1145,20,1,1310,9,0,0 +2013,7,30,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1600,40,1,1630,36,1,0 +2013,4,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-2,0,1523,0,0,0 +2013,6,15,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-6,0,1635,-9,0,0 +2013,7,15,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-3,0,1117,-13,0,0 +2013,7,16,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,-3,0,2210,-12,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1315,-5,0,1500,1,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,807,-11,0,1102,-37,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,-6,0,1420,-11,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1225,-1,0,1615,-7,0,0 +2013,8,30,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,811,-1,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1145,24,1,1245,12,0,0 +2013,8,3,6,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,615,21,1,945,3,0,0 +2013,8,3,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,805,6,0,1151,-6,0,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,745,-5,0,1020,1,0,0 +2013,4,28,7,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1015,0,0,1200,-2,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,750,-2,0,1025,17,1,0 +2013,4,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,930,17,1,1115,9,0,0 +2013,4,7,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,101,1,1216,94,1,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,856,0,0,1120,5,0,0 +2013,9,10,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,815,-5,0,1111,-37,0,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,2,0,1215,0,0,0 +2013,8,12,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,-10,0,2336,-6,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1640,-2,0,1914,-30,0,0 +2013,6,18,2,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1722,11,0,1856,-6,0,0 +2013,8,20,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,725,-21,0,0 +2013,4,20,6,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,854,-10,0,1040,-9,0,0 +2013,8,31,6,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1034,-1,0,1152,-3,0,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1025,-3,0,1510,-11,0,0 +2013,10,25,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,1,0,920,-3,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,750,-6,0,927,-5,0,0 +2013,4,20,6,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,814,9,0,0 +2013,4,26,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-4,0,1330,19,1,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1035,-2,0,1335,-3,0,0 +2013,6,6,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,4,0,1555,-10,0,0 +2013,9,18,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1610,1,0,1745,-1,0,0 +2013,5,20,1,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,925,-7,0,1145,28,1,0 +2013,8,5,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,730,1,0,824,16,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,51,1,1400,55,1,0 +2013,9,19,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,845,-1,0,1005,0,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1128,-4,0,1312,-1,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1530,5,0,1811,-19,0,0 +2013,8,21,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1545,63,1,1655,60,1,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,800,30,1,1025,23,1,0 +2013,6,7,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,30,1,1210,31,1,0 +2013,5,4,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,830,-3,0,945,-9,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,-6,0,1435,-7,0,0 +2013,8,24,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1600,-10,0,1710,-21,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1652,0,0,1747,-5,0,0 +2013,10,2,3,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-11,0,1805,-20,0,0 +2013,10,11,5,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,805,6,0,924,10,0,0 +2013,6,4,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,-5,0,2130,-7,0,0 +2013,4,11,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-5,0,705,-2,0,0 +2013,6,22,6,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1615,-3,0,1906,12,0,0 +2013,6,1,6,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1341,-2,0,1631,-3,0,0 +2013,4,22,1,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,800,-4,0,1025,-16,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-2,0,1850,-17,0,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1005,153,1,1135,139,1,0 +2013,6,30,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,645,0,0,830,-23,0,0 +2013,8,6,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1915,0,,2205,0,1,1 +2013,5,13,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,953,-3,0,1221,-13,0,0 +2013,7,13,6,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1000,-6,0,1105,-5,0,0 +2013,8,23,5,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-13,0,958,-17,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,16,1,1759,10,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,-1,0,1132,-23,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,-4,0,1500,-14,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1258,7,0,1649,-17,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2135,5,0,2310,-20,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,730,-10,0,1056,-7,0,0 +2013,6,18,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,223,1,2338,217,1,0 +2013,4,21,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1202,1,0,1500,-5,0,0 +2013,8,22,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,74,1,2051,60,1,0 +2013,6,13,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-8,0,1210,1,0,0 +2013,5,26,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1336,-5,0,1527,6,0,0 +2013,9,8,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-4,0,1715,-6,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1025,-3,0,1305,22,1,0 +2013,6,11,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-6,0,940,-16,0,0 +2013,9,15,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-6,0,1331,-51,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1016,-4,0,1153,-17,0,0 +2013,7,4,4,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,-5,0,1225,-45,0,0 +2013,4,22,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,9,0,1701,-6,0,0 +2013,9,19,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,2000,-3,0,2209,18,1,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1820,17,1,1945,7,0,0 +2013,5,15,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,958,-4,0,1309,-13,0,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2220,-5,0,2343,-29,0,0 +2013,7,19,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,835,-5,0,1020,10,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,14,0,1256,6,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-2,0,2234,-10,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1750,-1,0,1911,7,0,0 +2013,8,2,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1359,-9,0,1549,-15,0,0 +2013,6,7,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,1,0,1840,24,1,0 +2013,7,21,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,-6,0,1656,-10,0,0 +2013,8,12,1,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,20,1,1940,37,1,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1325,10,0,1445,6,0,0 +2013,10,21,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1930,-8,0,2105,-12,0,0 +2013,9,6,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1545,-2,0,1650,-2,0,0 +2013,4,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1503,-9,0,1530,-19,0,0 +2013,7,6,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,-6,0,1725,-15,0,0 +2013,6,8,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,630,-2,0,830,-15,0,0 +2013,10,8,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,16,1,1115,5,0,0 +2013,7,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,745,0,,1040,0,1,1 +2013,4,25,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-8,0,850,-12,0,0 +2013,8,22,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1535,32,1,1650,30,1,0 +2013,6,17,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,0,0,1123,-2,0,0 +2013,4,13,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-2,0,2054,-13,0,0 +2013,8,21,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-9,0,900,-17,0,0 +2013,4,27,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-7,0,1800,-1,0,0 +2013,6,30,7,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1535,-4,0,1730,-14,0,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,-3,0,1546,-9,0,0 +2013,10,24,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,940,0,0,1442,-4,0,0 +2013,8,2,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-5,0,1110,-14,0,0 +2013,8,11,7,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,731,-5,0,1527,-33,0,0 +2013,9,18,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-2,0,1900,-11,0,0 +2013,4,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1124,3,0,1322,-13,0,0 +2013,8,11,7,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,0,,1843,0,1,1 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1956,13,0,2145,-6,0,0 +2013,8,30,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1540,-3,0,1703,-4,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,2010,0,0,2230,-5,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,8,0,1950,7,0,0 +2013,8,28,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-6,0,1515,-2,0,0 +2013,8,30,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-4,0,855,-37,0,0 +2013,4,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2231,152,1,2359,130,1,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,810,-4,0,833,-9,0,0 +2013,9,3,2,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,708,-14,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2025,-2,0,2137,-11,0,0 +2013,5,13,1,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,746,-12,0,0 +2013,6,19,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-4,0,1356,-10,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1825,42,1,2126,17,1,0 +2013,8,6,2,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1312,205,1,1618,192,1,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,12,0,2150,9,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1940,10,0,2050,3,0,0 +2013,10,14,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,5,0,1738,-13,0,0 +2013,9,23,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-2,0,2155,-9,0,0 +2013,9,23,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-2,0,1029,-7,0,0 +2013,10,11,5,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,-8,0,2355,-15,0,0 +2013,6,11,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1555,-3,0,1641,-11,0,0 +2013,10,9,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1515,21,1,1645,9,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1830,2,0,2053,-16,0,0 +2013,6,14,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,945,2,0,1125,-41,0,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,-2,0,1810,-25,0,0 +2013,8,14,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,112,1,1534,109,1,0 +2013,4,9,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,3,0,929,1,0,0 +2013,8,25,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1411,1,0,1546,7,0,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1255,8,0,1525,8,0,0 +2013,7,25,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1316,20,1,1420,15,1,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1020,-4,0,1349,-16,0,0 +2013,9,13,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,14,0,2030,16,1,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1725,1,0,1824,18,1,0 +2013,4,16,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1237,-4,0,1430,-22,0,0 +2013,5,15,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,745,-5,0,1025,-6,0,0 +2013,8,19,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2010,-4,0,2156,-14,0,0 +2013,6,30,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-2,0,1428,-1,0,0 +2013,4,20,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1710,-1,0,2000,28,1,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,14,0,2307,11,0,0 +2013,8,29,4,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1415,14,0,1515,15,1,0 +2013,9,26,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,1,0,2056,-1,0,0 +2013,7,15,1,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,91,1,2139,93,1,0 +2013,4,3,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1655,-5,0,1950,6,0,0 +2013,9,24,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1215,39,1,1535,19,1,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2010,-3,0,2220,-7,0,0 +2013,8,5,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1020,18,1,1203,-7,0,0 +2013,4,6,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,730,-1,0,845,-10,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-3,0,940,-20,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1000,-2,0,1715,-4,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1410,43,1,1520,31,1,0 +2013,8,13,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,606,-3,0,1359,-33,0,0 +2013,8,3,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1220,1,0,1325,-4,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1907,23,1,2248,43,1,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1751,55,1,1956,70,1,0 +2013,8,28,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1820,5,0,1845,13,0,0 +2013,7,15,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-3,0,1506,12,0,0 +2013,8,26,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,655,-2,0,1524,-11,0,0 +2013,5,26,7,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,-14,0,1345,-23,0,0 +2013,9,20,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2000,31,1,2055,43,1,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1750,7,0,1903,3,0,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1525,-4,0,1650,-8,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,39,1,2155,32,1,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,34,1,2155,31,1,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,-3,0,1330,-13,0,0 +2013,9,21,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1400,-9,0,2007,-33,0,0 +2013,6,26,3,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,1431,-6,0,1627,-15,0,0 +2013,6,10,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1310,-1,0,1939,-18,0,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1720,60,1,1841,58,1,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,900,17,1,1105,7,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-4,0,1133,-11,0,0 +2013,10,29,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1435,-6,0,1450,3,0,0 +2013,5,28,2,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1005,108,1,1155,97,1,0 +2013,6,23,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-5,0,1124,-7,0,0 +2013,5,15,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,0,0,1055,-9,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1754,-1,0,1841,-2,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1918,-2,0,2041,-24,0,0 +2013,7,31,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,-7,0,2202,-22,0,0 +2013,7,17,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,6,0,1055,-36,0,0 +2013,10,4,5,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,-6,0,1144,1,0,0 +2013,10,15,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,2007,4,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,740,6,0,845,5,0,0 +2013,9,12,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,-7,0,1525,-4,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1115,19,1,1406,-2,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,0,0,2300,-24,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,41,1,2127,50,1,0 +2013,8,3,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,2,0,1145,5,0,0 +2013,5,20,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1505,8,0,1800,35,1,0 +2013,4,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1745,0,0,1910,-6,0,0 +2013,6,2,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,1,0,1705,-7,0,0 +2013,9,8,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1937,7,0,2056,3,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,8,0,1300,-9,0,0 +2013,5,4,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1946,24,1,2125,4,0,0 +2013,10,4,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1220,-5,0,1359,-4,0,0 +2013,4,14,7,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1135,-4,0,1447,1,0,0 +2013,4,5,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1715,-2,0,1845,-7,0,0 +2013,7,10,3,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1100,5,0,1255,-16,0,0 +2013,10,20,7,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,937,-10,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1645,-1,0,1815,-5,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1124,-3,0,1310,17,1,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1905,32,1,2150,5,0,0 +2013,9,17,2,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,1,0,2043,2,0,0 +2013,9,27,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2055,74,1,2220,82,1,0 +2013,8,8,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1336,61,1,1936,45,1,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1605,-4,0,1740,-7,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1427,11,0,1632,-5,0,0 +2013,7,27,6,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1714,16,1,1903,-9,0,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1825,14,0,1945,7,0,0 +2013,5,25,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-6,0,753,-13,0,0 +2013,4,2,2,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1454,13,0,1605,10,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1015,-11,0,1143,-1,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,0,0,1547,2,0,0 +2013,9,20,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,18,1,1540,18,1,0 +2013,8,5,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-1,0,2215,2,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1900,61,1,2325,44,1,0 +2013,6,25,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1910,22,1,2220,23,1,0 +2013,7,16,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1930,-1,0,2050,0,0,0 +2013,5,28,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1845,-2,0,1955,-5,0,0 +2013,5,17,5,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1630,-4,0,2041,-25,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,855,1,0,1005,-1,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1750,34,1,2045,77,1,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-4,0,1833,-9,0,0 +2013,9,22,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1510,-9,0,1556,-2,0,0 +2013,10,15,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,-3,0,2138,20,1,0 +2013,8,5,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,-3,0,1210,18,1,0 +2013,6,16,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-4,0,2025,4,0,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1215,3,0,1815,-13,0,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1345,25,1,1445,29,1,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1235,1,0,1455,-16,0,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,-5,0,2140,-5,0,0 +2013,9,30,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,-4,0,1855,-5,0,0 +2013,5,14,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2055,-1,0,2200,-7,0,0 +2013,6,23,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-11,0,1850,0,0,0 +2013,4,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-4,0,2327,-14,0,0 +2013,4,24,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1035,-4,0,1305,-3,0,0 +2013,9,22,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,550,3,0,805,5,0,0 +2013,10,2,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1825,12,0,2105,8,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,910,93,1,1442,75,1,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,22,1,1109,38,1,0 +2013,4,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1935,-4,0,2100,-12,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,-5,0,1525,-6,0,0 +2013,6,20,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2014,2,0,2229,-2,0,0 +2013,4,3,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,800,-2,0,900,-10,0,0 +2013,4,22,1,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-5,0,1859,-2,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1405,230,1,1615,255,1,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2108,2,0,2359,-10,0,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2055,32,1,2205,46,1,0 +2013,6,5,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2112,-6,0,2243,-8,0,0 +2013,7,31,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1518,-1,0,2359,-28,0,0 +2013,6,17,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1825,34,1,1850,31,1,0 +2013,10,28,1,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,736,-6,0,920,-23,0,0 +2013,4,7,7,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,1905,-3,0,2005,-5,0,0 +2013,10,25,5,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1225,-2,0,1446,-1,0,0 +2013,5,31,5,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,930,7,0,1255,10,0,0 +2013,9,19,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1651,0,0,1937,5,0,0 +2013,4,14,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2015,175,1,2140,175,1,0 +2013,5,21,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1055,17,1,1210,-5,0,0 +2013,6,5,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,0,0,1255,-8,0,0 +2013,10,12,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,-5,0,1229,-9,0,0 +2013,6,24,1,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,0,0,1843,-8,0,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,5,0,1230,7,0,0 +2013,8,23,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-3,0,1800,-16,0,0 +2013,6,4,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-11,0,1855,-21,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1607,92,1,1901,91,1,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2135,-4,0,2306,8,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2040,1,0,2250,0,0,0 +2013,6,5,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1543,-7,0,1648,0,0,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,909,-4,0,1504,-9,0,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,717,2,0,1555,-45,0,0 +2013,7,17,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1656,-7,0,1918,-24,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1203,-1,0,1329,-17,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,800,-2,0,1415,6,0,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2257,-8,0,713,21,1,0 +2013,5,15,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1333,-5,0,1440,-1,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2159,-4,0,2351,-33,0,0 +2013,8,16,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1234,212,1,1410,224,1,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2015,72,1,2105,67,1,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1415,3,0,1605,-10,0,0 +2013,6,19,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,0,0,1121,32,1,0 +2013,7,24,3,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1855,6,0,2130,-1,0,0 +2013,8,22,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1325,-5,0,1633,-22,0,0 +2013,10,28,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,0,0,1804,-11,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1735,9,0,1909,-1,0,0 +2013,10,3,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,63,1,1230,73,1,0 +2013,10,29,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1815,-15,0,2107,-28,0,0 +2013,9,22,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,0,0,1645,-9,0,0 +2013,7,11,4,WN,14679,San Diego International,San Diego,CA,15016,Lambert-St. Louis International,St. Louis,MO,730,0,0,1305,14,0,0 +2013,10,10,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1054,0,0,0 +2013,9,16,1,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1310,35,1,1525,22,1,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1955,17,1,2210,12,0,0 +2013,9,19,4,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1700,131,1,1750,129,1,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,0,0,1503,-6,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,0,0,2000,-15,0,0 +2013,7,30,2,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,3,0,1740,-18,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1105,7,0,1235,13,0,0 +2013,10,3,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,805,0,,930,0,1,1 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,23,1,1635,60,1,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1648,104,1,2128,98,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2030,6,0,2206,-11,0,0 +2013,7,19,5,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-3,0,2003,-10,0,0 +2013,10,16,3,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1155,-3,0,1800,-9,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1145,14,0,1352,2,0,0 +2013,7,18,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14747,Seattle/Tacoma International,Seattle,WA,829,-5,0,1033,-21,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1020,14,0,1227,6,0,0 +2013,10,11,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,605,-2,0,750,-15,0,0 +2013,9,18,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,43,1,758,33,1,0 +2013,7,22,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1918,212,1,2229,205,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1406,-5,0,1452,-17,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2118,5,0,2344,-2,0,0 +2013,5,31,5,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1950,-2,0,2200,5,0,0 +2013,10,27,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1213,-5,0,1326,-13,0,0 +2013,4,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,751,0,0,1011,-4,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1350,14,0,1920,34,1,0 +2013,6,29,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,-2,0,2009,15,1,0 +2013,7,20,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,607,4,0,1128,-4,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,11,0,1450,-2,0,0 +2013,9,13,5,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,6,0,1220,15,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,5,0,2135,3,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,1,0,2350,-14,0,0 +2013,4,26,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1641,-8,0,1817,-19,0,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1000,-2,0,1214,-5,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1800,-1,0,1925,-13,0,0 +2013,4,2,2,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1106,-6,0,1251,-14,0,0 +2013,7,1,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,810,-2,0,925,-10,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-3,0,1610,-15,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,855,-7,0,1037,-12,0,0 +2013,10,15,2,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,830,1,0,1615,-8,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,-10,0,1932,-9,0,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,-4,0,1755,-23,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,11,0,1350,19,1,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-2,0,2215,-18,0,0 +2013,10,8,2,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1821,-8,0,2023,-34,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1930,8,0,35,1,0,0 +2013,5,21,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,89,1,1610,95,1,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1605,-4,0,1830,-26,0,0 +2013,4,19,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1254,103,1,1420,92,1,0 +2013,7,6,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1250,-4,0,1535,-13,0,0 +2013,7,30,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,26,1,1815,14,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1105,7,0,1150,12,0,0 +2013,8,27,2,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-3,0,1004,-22,0,0 +2013,7,10,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1005,-6,0,1121,-13,0,0 +2013,10,31,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1159,-6,0,0 +2013,8,4,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,902,-4,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-3,0,1749,-18,0,0 +2013,7,30,2,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,18,1,1306,18,1,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1646,123,1,2129,100,1,0 +2013,9,5,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-8,0,2058,-31,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1820,95,1,2000,88,1,0 +2013,6,30,7,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,959,45,1,1110,51,1,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,-1,0,1712,-9,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,826,-1,0,1100,-13,0,0 +2013,5,6,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1315,-8,0,1529,-11,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1235,12,0,1827,8,0,0 +2013,4,7,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1916,1,0,2053,-4,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1510,15,1,2110,-7,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,23,1,2225,-10,0,0 +2013,10,13,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1744,-29,0,0 +2013,7,1,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2120,90,1,2313,86,1,0 +2013,4,6,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,700,-2,0,851,-1,0,0 +2013,10,2,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,-6,0,908,-8,0,0 +2013,8,14,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,844,-1,0,1105,17,1,0 +2013,9,16,1,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-8,0,610,-9,0,0 +2013,7,23,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,1,0,830,-2,0,0 +2013,5,7,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,0,,2115,0,1,1 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,3,0,1854,-2,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1209,-3,0,1346,-4,0,0 +2013,8,4,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,809,-1,0,932,-3,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,710,-2,0,830,-17,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,7,0,2215,1,0,0 +2013,10,29,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1605,-4,0,1833,-18,0,0 +2013,6,25,2,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,135,1,2103,127,1,0 +2013,9,2,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,-1,0,1705,6,0,0 +2013,8,16,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,2010,-5,0,2120,-21,0,0 +2013,7,14,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1718,0,0,1905,17,1,0 +2013,4,9,2,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,17,1,1555,13,0,0 +2013,4,11,4,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1101,10,0,1534,-3,0,0 +2013,7,29,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-1,0,535,-24,0,0 +2013,6,26,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,2010,87,1,2135,74,1,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,745,0,0,1135,-2,0,0 +2013,5,27,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1812,-4,0,1955,-1,0,0 +2013,6,17,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1720,1,0,1945,19,1,0 +2013,7,19,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-6,0,1329,-12,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,24,1,2100,19,1,0 +2013,8,28,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1545,16,1,1655,13,0,0 +2013,8,17,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1334,14,0,1505,12,0,0 +2013,8,17,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,840,1,0,1005,-7,0,0 +2013,4,30,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,810,-6,0,0 +2013,4,8,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1523,30,1,1620,22,1,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1225,12,0,1755,9,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,-2,0,2030,-5,0,0 +2013,4,23,2,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,640,0,0,753,-3,0,0 +2013,8,12,1,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1708,120,1,1912,127,1,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1445,-3,0,1538,17,1,0 +2013,9,19,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1815,121,1,2036,124,1,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,10,0,2355,-9,0,0 +2013,4,4,4,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1142,0,0,1422,-14,0,0 +2013,4,7,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,959,-14,0,1124,-30,0,0 +2013,10,18,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2028,9,0,500,-23,0,0 +2013,7,7,7,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,820,-8,0,1118,-18,0,0 +2013,10,1,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,635,0,0,800,-3,0,0 +2013,7,17,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1155,12,0,1415,2,0,0 +2013,8,15,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,0,0,1911,12,0,0 +2013,7,15,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-2,0,945,-10,0,0 +2013,7,24,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-3,0,2225,-5,0,0 +2013,6,5,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1120,11,0,1714,1,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,810,0,0,1109,25,1,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,935,-3,0,1100,-11,0,0 +2013,7,3,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,0,,1250,0,1,1 +2013,8,13,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,730,2,0,840,8,0,0 +2013,10,15,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-1,0,1705,-3,0,0 +2013,10,14,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1740,80,1,1905,79,1,0 +2013,9,6,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1525,2,0,1645,8,0,0 +2013,6,19,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1735,-1,0,1845,-4,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1015,2,0,1320,-12,0,0 +2013,7,26,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,8,0,1932,1,0,0 +2013,7,17,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,828,-1,0,1009,-30,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,-2,0,1107,-22,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1431,-3,0,1606,-12,0,0 +2013,8,27,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1940,-8,0,2248,-13,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,655,-5,0,815,-24,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-5,0,1159,-11,0,0 +2013,6,17,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1358,19,1,1420,17,1,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2215,0,,2355,0,1,1 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1125,0,0,1300,-13,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2202,3,0,2345,-13,0,0 +2013,8,19,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-7,0,833,0,0,0 +2013,8,26,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-4,0,700,-14,0,0 +2013,6,25,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,2,0,1445,9,0,0 +2013,7,1,1,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1210,-4,0,1451,8,0,0 +2013,6,21,5,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,900,4,0,1213,-11,0,0 +2013,8,6,2,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1723,6,0,1830,13,0,0 +2013,6,9,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-7,0,2326,-6,0,0 +2013,10,6,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2020,-4,0,2120,-8,0,0 +2013,7,23,2,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-4,0,1405,-4,0,0 +2013,5,20,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,745,-3,0,855,-10,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1925,-2,0,2150,-1,0,0 +2013,4,19,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-8,0,839,-9,0,0 +2013,5,23,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2030,-4,0,2200,-7,0,0 +2013,8,20,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,615,-9,0,725,-8,0,0 +2013,10,31,4,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1722,-16,0,2018,-25,0,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1140,1,0,1339,-19,0,0 +2013,9,22,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1500,-1,0,1750,26,1,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1820,0,0,2025,-2,0,0 +2013,7,18,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1804,-1,0,2029,-11,0,0 +2013,4,3,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1630,-6,0,44,-16,0,0 +2013,10,14,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1355,-12,0,1629,-8,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,-3,0,1530,-1,0,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2328,6,0,535,-12,0,0 +2013,5,9,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,725,-7,0,905,-25,0,0 +2013,6,8,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,3,0,2305,-3,0,0 +2013,7,6,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,6,0,1951,-1,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,2000,-5,0,35,-15,0,0 +2013,6,14,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,74,1,1845,67,1,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,-2,0,2105,-8,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-6,0,1249,-12,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,2,0,1210,-1,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,177,1,2300,167,1,0 +2013,6,3,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-8,0,1356,-15,0,0 +2013,7,31,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,14,0,1934,11,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1238,8,0,1617,-2,0,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,-4,0,559,-34,0,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1448,4,0,1745,-37,0,0 +2013,4,29,1,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-1,0,1110,-2,0,0 +2013,10,21,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1545,3,0,1930,1,0,0 +2013,6,7,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,550,-2,0,745,-15,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,86,1,1510,63,1,0 +2013,6,16,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,750,-4,0,1120,-24,0,0 +2013,4,1,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,-4,0,1918,-14,0,0 +2013,7,5,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,935,0,,1050,0,1,1 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1910,18,1,2345,9,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1725,22,1,1815,28,1,0 +2013,9,23,1,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1430,15,1,1600,8,0,0 +2013,7,26,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,2037,12,0,2245,11,0,0 +2013,5,16,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,2005,8,0,2110,-5,0,0 +2013,6,14,5,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2055,14,0,2227,2,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,852,-3,0,1212,-21,0,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1655,33,1,2004,41,1,0 +2013,8,21,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-6,0,912,-2,0,0 +2013,4,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1140,3,0,1400,2,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1830,25,1,2058,22,1,0 +2013,6,12,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,615,-10,0,755,-14,0,0 +2013,4,18,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,120,11,0,615,-6,0,0 +2013,7,24,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,800,0,,1005,0,1,1 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,0,0,1336,-6,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,0,0,1955,1,0,0 +2013,5,11,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1905,110,1,2209,115,1,0 +2013,9,30,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,9,0,910,-8,0,0 +2013,9,22,7,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,905,-20,0,0 +2013,9,9,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,6,0,804,4,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,-4,0,1247,-11,0,0 +2013,10,17,4,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1730,-1,0,2100,-10,0,0 +2013,4,14,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1135,-4,0,1200,-9,0,0 +2013,8,11,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-2,0,1540,-11,0,0 +2013,7,26,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1345,-10,0,1430,-11,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2035,7,0,2215,-17,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,-1,0,2325,-5,0,0 +2013,7,13,6,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1120,-2,0,1709,13,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,941,-1,0,1322,-7,0,0 +2013,4,1,1,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1900,-13,0,2028,-5,0,0 +2013,7,31,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,0,0,1505,16,1,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,12,0,1925,17,1,0 +2013,9,2,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2025,-1,0,2300,-8,0,0 +2013,6,2,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2145,16,1,2230,0,0,0 +2013,8,30,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1135,20,1,1422,26,1,0 +2013,7,23,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,7,0,2020,43,1,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,0,0,1405,-8,0,0 +2013,4,23,2,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1200,8,0,1300,1,0,0 +2013,7,3,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1830,-4,0,1935,-12,0,0 +2013,6,11,2,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1220,-2,0,1435,-31,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1920,-3,0,2258,-11,0,0 +2013,8,24,6,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1929,-4,0,2025,-14,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1826,16,1,1952,3,0,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1500,32,1,1605,23,1,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,18,1,1545,6,0,0 +2013,7,19,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,-2,0,730,-10,0,0 +2013,8,20,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,0,0,1313,-2,0,0 +2013,4,7,7,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,840,15,1,1035,5,0,0 +2013,8,20,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2329,60,1,757,101,1,0 +2013,7,27,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,702,6,0,825,-11,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2050,4,0,2335,-4,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,-2,0,1900,-20,0,0 +2013,10,6,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,600,-1,0,930,-4,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1435,-3,0,1635,-12,0,0 +2013,9,24,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-5,0,1352,10,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-2,0,1035,-7,0,0 +2013,8,11,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1000,0,0,1650,-16,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1120,0,0,1451,-15,0,0 +2013,5,16,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,-3,0,2105,3,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,-5,0,2057,-4,0,0 +2013,9,29,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1650,-2,0,1905,-5,0,0 +2013,8,11,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,605,-6,0,900,-27,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1840,-2,0,2115,4,0,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,705,113,1,1115,105,1,0 +2013,8,23,5,VX,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,2000,-7,0,2355,-16,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1026,53,1,1459,39,1,0 +2013,5,21,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,836,-1,0,900,-5,0,0 +2013,5,19,7,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,806,154,1,943,149,1,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-1,0,4,-8,0,0 +2013,4,1,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,17,1,2211,14,0,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1600,-3,0,1725,-5,0,0 +2013,5,17,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,603,3,0,832,-15,0,0 +2013,7,26,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1113,-2,0,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,915,-5,0,1113,14,0,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1000,-1,0,1246,-10,0,0 +2013,8,7,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1258,16,1,1425,18,1,0 +2013,10,14,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1940,5,0,2150,7,0,0 +2013,6,7,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,630,-11,0,1125,-7,0,0 +2013,8,21,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1540,2,0,1825,-24,0,0 +2013,5,17,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1016,3,0,1344,-5,0,0 +2013,7,8,1,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,26,1,1907,4,0,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1540,0,,1705,0,1,1 +2013,5,8,3,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2359,23,1,249,20,1,0 +2013,10,6,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,11,0,1858,20,1,0 +2013,5,22,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1405,-5,0,2121,15,1,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2140,-7,0,149,-17,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1550,0,0,1715,-9,0,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1140,-1,0,1355,-22,0,0 +2013,10,22,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1859,-8,0,2024,-7,0,0 +2013,7,13,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,-1,0,1838,22,1,0 +2013,6,3,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1723,-1,0,1905,-5,0,0 +2013,10,23,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,630,-1,0,755,1,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1855,-3,0,25,-17,0,0 +2013,5,12,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1942,7,0,2035,6,0,0 +2013,4,12,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1710,5,0,1800,-2,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1440,21,1,1645,18,1,0 +2013,8,7,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,950,-5,0,1240,-14,0,0 +2013,8,4,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,6,0,1320,-3,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,5,0,1915,15,1,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,6,0,1735,4,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1730,3,0,2200,-5,0,0 +2013,9,3,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1319,10,0,1817,8,0,0 +2013,9,21,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,-5,0,1603,-6,0,0 +2013,4,29,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1805,3,0,1932,4,0,0 +2013,6,6,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-8,0,955,4,0,0 +2013,5,12,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,1,0,1005,-5,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1211,3,0,1346,4,0,0 +2013,4,1,1,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,627,20,1,924,9,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,73,1,1105,67,1,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,-1,0,2238,2,0,0 +2013,4,6,6,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1020,8,0,1255,18,1,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,810,-1,0,1040,-2,0,0 +2013,6,13,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,0,0,1505,-8,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1305,6,0,1455,5,0,0 +2013,9,8,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1235,40,1,1400,49,1,0 +2013,9,20,5,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,814,-10,0,847,-13,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1910,-1,0,2055,2,0,0 +2013,10,28,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,700,-5,0,730,9,0,0 +2013,6,9,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,505,-7,0,751,-18,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1929,-3,0,15,-19,0,0 +2013,8,20,2,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1440,-8,0,1715,-31,0,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,-6,0,1650,-14,0,0 +2013,4,6,6,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,257,1,2128,252,1,0 +2013,10,6,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1435,12,0,1600,3,0,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,3,0,1150,-18,0,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,-7,0,2008,-11,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,-3,0,2011,-39,0,0 +2013,6,9,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1050,-2,0,1354,-23,0,0 +2013,9,2,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14307,Theodore Francis Green State,Providence,RI,2010,-1,0,2151,1,0,0 +2013,6,11,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,608,-9,0,752,-9,0,0 +2013,8,2,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,830,-1,0,940,-3,0,0 +2013,8,3,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,62,1,1122,66,1,0 +2013,9,9,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-3,0,1213,-4,0,0 +2013,6,13,4,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1158,7,0,1257,35,1,0 +2013,5,12,7,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1337,66,1,1614,61,1,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1735,26,1,2005,31,1,0 +2013,7,25,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2225,18,1,420,21,1,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2200,27,1,2320,25,1,0 +2013,6,23,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,0,,1330,0,1,1 +2013,10,16,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-2,0,906,12,0,0 +2013,7,9,2,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1855,9,0,2045,-6,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,930,-2,0,1211,3,0,0 +2013,6,25,2,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2045,35,1,2130,30,1,0 +2013,5,4,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,956,-6,0,1634,5,0,0 +2013,5,16,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,650,-3,0,750,-14,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1730,4,0,2050,2,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1318,0,0,1623,-15,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1815,195,1,2130,189,1,0 +2013,9,23,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,-8,0,816,-14,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1125,-2,0,1309,-18,0,0 +2013,9,11,3,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,10,0,1844,23,1,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,1,0,820,-19,0,0 +2013,7,31,3,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,-1,0,2316,-12,0,0 +2013,8,6,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,19,1,1254,7,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1708,-6,0,1825,6,0,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-1,0,1555,5,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,0,0,2201,-16,0,0 +2013,6,12,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2016,12,0,2251,3,0,0 +2013,8,8,4,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1254,51,1,1821,56,1,0 +2013,9,18,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2015,0,0,2140,-6,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1906,41,1,2050,27,1,0 +2013,8,14,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,-3,0,2001,-19,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,45,1,2250,72,1,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-3,0,1027,-15,0,0 +2013,7,11,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,29,1,1934,30,1,0 +2013,10,20,7,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1805,-2,0,2124,-14,0,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-6,0,2240,-6,0,0 +2013,7,10,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,16,1,1912,86,1,0 +2013,9,30,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-4,0,1216,-21,0,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1535,-16,0,0 +2013,9,22,7,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,-6,0,2034,1,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,750,13,0,1025,-1,0,0 +2013,6,24,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,810,68,1,1020,72,1,0 +2013,5,10,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,61,1,1906,74,1,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1730,16,1,2102,-10,0,0 +2013,7,1,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1535,95,1,1725,89,1,0 +2013,8,23,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,635,-7,0,832,-18,0,0 +2013,10,16,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,9,0,1912,12,0,0 +2013,6,24,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1011,-4,0,1248,-13,0,0 +2013,8,27,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1040,-5,0,1258,-15,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1426,65,1,1530,63,1,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,925,-2,0,1053,-3,0,0 +2013,4,17,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,9,0,1720,12,0,0 +2013,5,12,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1950,-3,0,2159,11,0,0 +2013,5,17,5,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,934,-3,0,1111,-20,0,0 +2013,5,30,4,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,930,-6,0,1231,-15,0,0 +2013,6,11,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,-3,0,2130,-5,0,0 +2013,4,26,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1505,80,1,1605,89,1,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,-5,0,2134,-18,0,0 +2013,10,2,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,645,22,1,825,11,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,6,0,1335,0,0,0 +2013,8,10,6,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,-11,0,1515,-24,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-1,0,1113,6,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,845,1,0,956,1,0,0 +2013,6,24,1,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,20,1,2055,15,1,0 +2013,8,17,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1710,48,1,2026,38,1,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1320,4,0,1545,2,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,-1,0,2209,-1,0,0 +2013,8,2,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-11,0,1003,-12,0,0 +2013,4,3,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-8,0,1520,-16,0,0 +2013,8,19,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1640,-6,0,1912,-12,0,0 +2013,4,28,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-8,0,1648,-2,0,0 +2013,4,13,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,836,-3,0,1054,6,0,0 +2013,7,13,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,168,1,1811,179,1,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,45,1,1110,57,1,0 +2013,5,23,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,625,-3,0,701,-3,0,0 +2013,5,22,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-6,0,830,-14,0,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,33,1,2305,20,1,0 +2013,8,21,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-5,0,1640,-5,0,0 +2013,7,30,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-7,0,930,-16,0,0 +2013,7,7,7,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,845,-5,0,1105,-19,0,0 +2013,4,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1710,16,1,1745,22,1,0 +2013,9,29,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1250,29,1,1615,48,1,0 +2013,7,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2209,1,0,2306,3,0,0 +2013,6,18,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1430,53,1,1610,62,1,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,910,-5,0,1035,-2,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1300,1,0,1554,-28,0,0 +2013,8,15,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1052,0,0,1906,-13,0,0 +2013,4,2,2,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1145,64,1,1525,69,1,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1459,-4,0,1808,-40,0,0 +2013,4,17,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1015,25,1,1125,31,1,0 +2013,9,1,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-7,0,2101,-31,0,0 +2013,4,16,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,0,,1422,0,1,1 +2013,9,23,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1646,-3,0,1948,-14,0,0 +2013,5,18,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2228,-6,0,707,-31,0,0 +2013,5,6,1,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1125,2,0,1715,2,0,0 +2013,5,7,2,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,810,-3,0,1100,-6,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,4,0,1411,-10,0,0 +2013,6,24,1,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1425,19,1,2235,13,0,0 +2013,8,15,4,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2215,-7,0,647,-3,0,0 +2013,10,3,4,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1825,-2,0,2105,-6,0,0 +2013,7,28,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1155,2,0,1255,11,0,0 +2013,7,1,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,-1,0,1105,8,0,0 +2013,4,22,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,609,-9,0,725,-27,0,0 +2013,5,21,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1910,35,1,2100,65,1,0 +2013,8,1,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1750,6,0,2345,8,0,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1852,51,1,2015,66,1,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1540,-1,0,1820,0,0,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,-4,0,2126,-22,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,2050,15,1,5,7,0,0 +2013,5,10,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1355,8,0,1659,-4,0,0 +2013,4,5,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1945,-7,0,2243,-6,0,0 +2013,5,18,6,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,753,-4,0,1340,-6,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1935,169,1,2145,161,1,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,619,1,0,904,24,1,0 +2013,9,8,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1030,-2,0,1357,-14,0,0 +2013,6,2,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-9,0,1245,-8,0,0 +2013,6,16,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1526,-1,0,1641,-11,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,610,0,0,805,-4,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,-2,0,915,0,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1730,51,1,2315,49,1,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,915,-1,0,1020,-10,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,845,7,0,1410,13,0,0 +2013,5,23,4,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-8,0,545,-18,0,0 +2013,10,28,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,730,7,0,929,-8,0,0 +2013,5,15,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,0,0,1253,-7,0,0 +2013,7,5,5,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-5,0,1208,-10,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1222,30,1,1349,25,1,0 +2013,10,10,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-11,0,1527,-2,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1945,0,0,2206,-2,0,0 +2013,6,10,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2320,28,1,629,17,1,0 +2013,7,10,3,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1311,5,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,5,0,1040,-16,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1135,-3,0,1315,-5,0,0 +2013,10,7,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1030,-4,0,1305,-2,0,0 +2013,6,22,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1825,0,0,1955,-13,0,0 +2013,4,8,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-5,0,2042,-20,0,0 +2013,10,20,7,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1755,0,0,2237,4,0,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,18,1,45,18,1,0 +2013,10,28,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,7,0,1345,3,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,-2,0,1448,-8,0,0 +2013,8,18,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1505,17,1,1615,22,1,0 +2013,8,25,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1055,7,0,1220,6,0,0 +2013,4,30,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1020,-30,0,0 +2013,7,2,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,23,1,1955,8,0,0 +2013,7,19,5,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1030,-4,0,1340,-32,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1700,6,0,1850,-3,0,0 +2013,6,16,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,-1,0,1300,-9,0,0 +2013,10,6,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1455,25,1,1630,19,1,0 +2013,8,13,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1657,1,0,0 +2013,7,31,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1148,4,0,0 +2013,7,15,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1917,16,1,2105,8,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,-7,0,2243,2,0,0 +2013,5,11,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,825,-10,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1025,-1,0,1255,0,0,0 +2013,6,9,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1707,-8,0,1842,-27,0,0 +2013,10,10,4,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,939,-4,0,1235,-3,0,0 +2013,7,11,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,610,8,0,835,4,0,0 +2013,5,22,3,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1102,-6,0,1948,-1,0,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,952,7,0,1325,7,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2108,3,0,2159,-4,0,0 +2013,8,19,1,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,0,0,617,4,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1450,-9,0,1611,-26,0,0 +2013,5,5,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,2,0,700,-2,0,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1422,5,0,1705,-11,0,0 +2013,5,5,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1642,-7,0,1930,32,1,0 +2013,5,28,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,2006,82,1,2152,80,1,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2015,-7,0,2208,-1,0,0 +2013,10,25,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-2,0,1030,15,1,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,101,1,1445,100,1,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,852,-5,0,1019,-14,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2009,3,0,2135,-15,0,0 +2013,8,2,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1910,67,1,2058,71,1,0 +2013,7,4,4,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1700,-7,0,1837,-17,0,0 +2013,4,18,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-2,0,1620,-15,0,0 +2013,7,26,5,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1316,29,1,1420,21,1,0 +2013,10,13,7,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1605,-7,0,1721,-13,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,-2,0,1128,-28,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,4,0,2254,2,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1905,11,0,2335,-4,0,0 +2013,8,20,2,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-3,0,1909,-27,0,0 +2013,4,1,1,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,600,-3,0,810,-9,0,0 +2013,4,13,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-5,0,817,-16,0,0 +2013,10,14,1,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1440,13,0,1820,4,0,0 +2013,6,28,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,642,-5,0,801,-26,0,0 +2013,5,20,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1700,-5,0,1820,-7,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,18,1,2157,2,0,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,45,-2,0,611,-11,0,0 +2013,8,1,4,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,49,1,1232,35,1,0 +2013,4,11,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,900,-1,0,1011,13,0,0 +2013,7,9,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,3,0,728,30,1,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1019,326,1,1145,366,1,0 +2013,10,5,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,750,7,0,1015,-7,0,0 +2013,10,26,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1035,-1,0,1305,-7,0,0 +2013,10,15,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1455,-5,0,1744,-1,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,940,1,0,1045,7,0,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1945,41,1,2105,34,1,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1525,29,1,1710,26,1,0 +2013,5,14,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-7,0,1406,-28,0,0 +2013,5,8,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1355,7,0,1450,-1,0,0 +2013,7,19,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,805,0,0,820,-11,0,0 +2013,4,30,2,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-8,0,855,-17,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-1,0,1442,4,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,10,0,1716,11,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1450,18,1,1610,12,0,0 +2013,7,13,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,5,0,1928,-2,0,0 +2013,5,22,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,922,10,0,1235,22,1,0 +2013,9,7,6,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1055,-10,0,1333,1,0,0 +2013,4,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1135,16,1,1340,0,0,0 +2013,6,27,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2055,18,1,2215,14,0,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1910,-4,0,2240,-1,0,0 +2013,8,14,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1105,-9,0,1528,-10,0,0 +2013,10,18,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2010,5,0,2226,6,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-8,0,919,-31,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,1,0,2000,0,0,0 +2013,10,11,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1125,-1,0,1230,3,0,0 +2013,5,1,3,9E,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,0,0,1620,-2,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1010,3,0,1320,3,0,0 +2013,8,13,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1035,-5,0,1350,-10,0,0 +2013,6,9,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,0,0,1235,8,0,0 +2013,7,10,3,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,6,0,548,1,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2030,-5,0,2252,-5,0,0 +2013,9,15,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1216,-8,0,1340,-13,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,32,1,1931,20,1,0 +2013,4,7,7,EV,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-5,0,2051,-13,0,0 +2013,9,10,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1300,10,0,1405,5,0,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1835,-6,0,2004,-18,0,0 +2013,9,26,4,US,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-4,0,910,-3,0,0 +2013,7,4,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1340,-5,0,1515,-18,0,0 +2013,10,13,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,955,-7,0,1049,-1,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1427,13,0,0 +2013,4,19,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,712,-3,0,1015,-3,0,0 +2013,9,21,6,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-3,0,1338,-5,0,0 +2013,6,24,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,618,-1,0,733,-9,0,0 +2013,8,7,3,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1845,-2,0,2059,-12,0,0 +2013,8,25,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-6,0,2214,-10,0,0 +2013,7,28,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,21,1,2215,93,1,0 +2013,10,27,7,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1611,-11,0,1900,-16,0,0 +2013,5,3,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1000,-3,0,1118,-21,0,0 +2013,9,2,1,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-4,0,735,-16,0,0 +2013,8,14,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-4,0,615,-21,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,3,0,2357,-2,0,0 +2013,7,3,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-6,0,910,-14,0,0 +2013,5,10,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-4,0,2000,4,0,0 +2013,6,20,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,17,1,1915,1,0,0 +2013,10,22,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1939,15,1,2300,-3,0,0 +2013,10,31,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,915,-1,0,1115,2,0,0 +2013,7,19,5,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,-1,0,1140,-5,0,0 +2013,6,15,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1714,16,1,1800,1,0,0 +2013,4,22,1,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1730,92,1,2023,132,1,0 +2013,6,13,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1415,-1,0,1615,-8,0,0 +2013,6,21,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-14,0,1821,-24,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1450,1,0,1720,-31,0,0 +2013,4,23,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,710,-1,0,927,-13,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,3,0,2340,-14,0,0 +2013,10,5,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1105,-8,0,1215,-13,0,0 +2013,5,14,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,925,2,0,1105,-3,0,0 +2013,7,21,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1435,20,1,1750,6,0,0 +2013,10,4,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1627,-2,0,1820,-3,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,2,0,1910,-4,0,0 +2013,6,7,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1700,41,1,1858,60,1,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1443,62,1,1925,82,1,0 +2013,5,18,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,740,2,0,755,-2,0,0 +2013,5,15,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,610,-9,0,725,-22,0,0 +2013,9,23,1,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1359,24,1,1511,17,1,0 +2013,10,13,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,745,-5,0,833,-15,0,0 +2013,7,30,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,95,1,1925,91,1,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-2,0,950,-15,0,0 +2013,9,1,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1357,0,0,2137,-6,0,0 +2013,6,1,6,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,15,1,1515,5,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1355,3,0,2223,-15,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2010,-2,0,2115,-11,0,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1857,104,1,2211,97,1,0 +2013,7,9,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-3,0,1420,-11,0,0 +2013,10,21,1,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1245,11,0,1624,7,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-7,0,1134,10,0,0 +2013,6,4,2,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1705,5,0,2022,-12,0,0 +2013,10,11,5,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2347,-9,0,552,-27,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,12,0,1720,-5,0,0 +2013,6,7,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1430,-2,0,1516,-9,0,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1346,0,0,1725,-3,0,0 +2013,9,22,7,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1240,-5,0,1335,-5,0,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2135,-8,0,2331,2,0,0 +2013,8,21,3,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1150,-1,0,1400,-1,0,0 +2013,6,30,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,16,1,1943,11,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,2,0,1745,5,0,0 +2013,6,28,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,-3,0,940,-15,0,0 +2013,10,21,1,EV,12953,LaGuardia,New York,NY,13871,Eppley Airfield,Omaha,NE,1730,-6,0,1953,-16,0,0 +2013,4,7,7,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1515,-9,0,1740,-9,0,0 +2013,6,26,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,0,,1447,0,1,1 +2013,6,15,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1535,95,1,1809,89,1,0 +2013,7,3,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2005,79,1,2200,78,1,0 +2013,5,17,5,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-12,0,1916,-10,0,0 +2013,7,10,3,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1450,41,1,1759,79,1,0 +2013,7,9,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1210,3,0,1310,-1,0,0 +2013,6,4,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-2,0,908,-10,0,0 +2013,9,22,7,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1820,-10,0,2035,18,1,0 +2013,9,10,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1540,10,0,1644,5,0,0 +2013,4,25,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-3,0,1953,-14,0,0 +2013,6,12,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-3,0,1940,-17,0,0 +2013,4,24,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,601,-7,0,900,-28,0,0 +2013,10,17,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-7,0,1049,15,1,0 +2013,7,24,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1548,-8,0,1638,28,1,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1139,-1,0,1540,-17,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,0,0,2250,-18,0,0 +2013,8,22,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-1,0,810,-10,0,0 +2013,10,17,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1910,3,0,2155,-2,0,0 +2013,10,21,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1605,-5,0,1810,-21,0,0 +2013,4,30,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,-4,0,2125,-15,0,0 +2013,9,8,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,81,1,1415,78,1,0 +2013,4,4,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-4,0,838,-17,0,0 +2013,4,22,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1410,-6,0,1650,2,0,0 +2013,6,13,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,949,-7,0,1130,84,1,0 +2013,7,24,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-4,0,2000,-20,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,714,-4,0,924,-8,0,0 +2013,4,16,2,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-3,0,825,0,0,0 +2013,10,29,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1205,-1,0,1255,-12,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,8,0,1430,-6,0,0 +2013,10,15,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,825,-2,0,1636,-34,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,-1,0,2339,-15,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,-6,0,858,-10,0,0 +2013,6,30,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-8,0,940,-7,0,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,66,1,2109,93,1,0 +2013,7,2,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,10,0,1307,-12,0,0 +2013,4,25,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1059,-5,0,1226,-9,0,0 +2013,10,28,1,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1450,-5,0,1610,15,1,0 +2013,4,26,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,37,1,1610,53,1,0 +2013,7,22,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1730,18,1,1950,-4,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,-3,0,923,-3,0,0 +2013,7,21,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1302,31,1,1430,25,1,0 +2013,5,2,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,-5,0,1250,-16,0,0 +2013,7,31,3,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-2,0,1122,-8,0,0 +2013,8,8,4,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1000,-7,0,1134,-21,0,0 +2013,8,19,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-10,0,1854,18,1,0 +2013,4,5,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,725,-9,0,0 +2013,6,25,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1630,27,1,1735,21,1,0 +2013,5,6,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1712,13,0,2029,5,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,0,0,1930,-15,0,0 +2013,7,20,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,17,1,2045,6,0,0 +2013,4,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1942,0,0,2159,-13,0,0 +2013,9,21,6,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-1,0,916,17,1,0 +2013,5,10,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,-6,0,1610,-13,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,900,-2,0,1100,-14,0,0 +2013,5,29,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-12,0,2128,-1,0,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,28,1,2215,27,1,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,9,0,1300,11,0,0 +2013,6,7,5,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,5,0,1645,-6,0,0 +2013,6,16,7,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,615,-6,0,855,-21,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1305,4,0,1525,-9,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1040,0,0,1345,12,0,0 +2013,8,31,6,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,715,275,1,815,264,1,0 +2013,4,1,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1315,-9,0,1520,16,1,0 +2013,7,18,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1502,-2,0,1550,3,0,0 +2013,6,4,2,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,-8,0,1117,-14,0,0 +2013,7,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1340,-3,0,1706,-4,0,0 +2013,4,17,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,124,1,1256,126,1,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,-5,0,1435,-24,0,0 +2013,4,2,2,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,1400,-3,0,1550,-6,0,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2240,1,0,23,-2,0,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,136,1,2356,130,1,0 +2013,7,20,6,EV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,98,1,1824,95,1,0 +2013,10,15,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1725,0,0,2019,-16,0,0 +2013,10,23,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1751,25,1,0 +2013,9,11,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1035,-1,0,1155,-13,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,-3,0,1917,-14,0,0 +2013,4,28,7,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2000,-7,0,2238,-20,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1405,40,1,1515,28,1,0 +2013,8,7,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-5,0,1345,-13,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-6,0,1814,-4,0,0 +2013,6,14,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1651,-3,0,1726,-16,0,0 +2013,9,9,1,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,635,-10,0,1005,-20,0,0 +2013,7,6,6,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1856,-2,0,2104,-29,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,9,0,2350,-1,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,835,10,0,955,2,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1615,14,0,1706,17,1,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,0,0,2049,-24,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1650,1,0,1805,-13,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1905,-1,0,2014,-8,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1732,2,0,1930,-6,0,0 +2013,6,1,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1357,-5,0,1418,-6,0,0 +2013,7,24,3,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,2300,0,0,700,-15,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1758,-3,0,2025,-21,0,0 +2013,4,30,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1455,-7,0,1625,-17,0,0 +2013,10,25,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1735,17,1,1905,13,0,0 +2013,9,24,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,-5,0,2025,-14,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,89,1,1815,79,1,0 +2013,8,17,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1533,-2,0,1700,-11,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-1,0,2056,-6,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,839,-2,0,1007,2,0,0 +2013,7,7,7,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,615,0,0,755,-4,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,845,3,0,1025,-2,0,0 +2013,5,23,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1935,34,1,2050,32,1,0 +2013,5,19,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,859,-7,0,1008,-8,0,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1745,6,0,1910,2,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2040,22,1,2305,12,0,0 +2013,6,11,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-8,0,940,-20,0,0 +2013,5,26,7,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1617,-4,0,1705,6,0,0 +2013,10,24,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-7,0,1304,-6,0,0 +2013,10,14,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,-5,0,2128,-5,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1040,-1,0,1212,-9,0,0 +2013,6,27,4,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,949,13,0,1425,7,0,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,-3,0,2345,0,0,0 +2013,9,5,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,605,-4,0,710,-14,0,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1940,-3,0,2105,-1,0,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,14,0,1200,-3,0,0 +2013,7,21,7,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1602,17,1,1737,25,1,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,830,8,0,1005,2,0,0 +2013,5,12,7,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,805,-2,0,1130,-36,0,0 +2013,6,10,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,21,1,2030,19,1,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2122,15,1,2344,1,0,0 +2013,4,17,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-3,0,908,-13,0,0 +2013,6,29,6,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,620,13,0,900,14,0,0 +2013,10,30,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,2,0,2203,-8,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,6,0,1339,-6,0,0 +2013,9,18,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1020,-8,0,1250,-4,0,0 +2013,4,3,3,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,1329,17,1,1426,5,0,0 +2013,10,1,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-7,0,1244,-46,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,10,0,1255,9,0,0 +2013,6,3,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,2005,11,0,2309,3,0,0 +2013,4,15,1,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1050,0,0,1525,-3,0,0 +2013,7,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1420,11,0,1523,-12,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,10,0,1918,-16,0,0 +2013,10,3,4,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-3,0,2049,-5,0,0 +2013,7,14,7,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,955,-3,0,1600,-10,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,7,0,2350,22,1,0 +2013,5,24,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,48,1,1137,36,1,0 +2013,5,28,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1836,-4,0,1959,-17,0,0 +2013,4,8,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,4,0,1824,8,0,0 +2013,8,6,2,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,745,-8,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,800,7,0,935,13,0,0 +2013,7,17,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,645,-12,0,945,-23,0,0 +2013,10,14,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1955,68,1,2250,70,1,0 +2013,4,2,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1352,-19,0,0 +2013,6,23,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,845,1,0,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,0,0,1409,-18,0,0 +2013,6,5,3,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,-10,0,937,4,0,0 +2013,7,24,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,161,1,840,171,1,0 +2013,7,10,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2055,32,1,2230,30,1,0 +2013,9,6,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,845,3,0,1115,2,0,0 +2013,10,20,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,610,-8,0,655,-8,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,825,-2,0,1140,-5,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1645,-3,0,1850,13,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1557,-7,0,1719,-7,0,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,645,0,0,825,0,0,0 +2013,7,28,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2245,37,1,2357,16,1,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,730,8,0,1142,0,0,0 +2013,10,7,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2305,-3,0,635,-23,0,0 +2013,8,5,1,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2000,142,1,2258,128,1,0 +2013,10,28,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,-16,0,720,-11,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1955,10,0,2255,7,0,0 +2013,10,6,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,-3,0,1321,-14,0,0 +2013,7,8,1,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1452,-4,0,1601,-8,0,0 +2013,8,29,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1540,9,0,1646,-5,0,0 +2013,5,25,6,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1004,-6,0,1259,-8,0,0 +2013,5,3,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,630,-2,0,700,-6,0,0 +2013,6,9,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1648,48,1,1805,45,1,0 +2013,5,19,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2143,0,0,2258,-18,0,0 +2013,5,22,3,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-2,0,1510,-8,0,0 +2013,8,3,6,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1045,21,1,1614,14,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,204,1,1644,197,1,0 +2013,4,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1742,-2,0,1850,-8,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,4,0,1725,-13,0,0 +2013,6,5,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1521,5,0,1606,6,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,84,1,1715,90,1,0 +2013,8,9,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1512,21,1,1830,7,0,0 +2013,6,2,7,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,755,-3,0,1130,-16,0,0 +2013,10,31,4,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,-4,0,1116,-20,0,0 +2013,7,9,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1505,8,0,1747,6,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,837,-11,0,0 +2013,5,30,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,1504,-14,0,0 +2013,7,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,930,48,1,1155,43,1,0 +2013,8,12,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,605,-4,0,710,-7,0,0 +2013,5,24,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1821,116,1,2025,115,1,0 +2013,4,16,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,833,0,0,1210,5,0,0 +2013,6,6,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,-8,0,1350,-7,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,27,1,1229,18,1,0 +2013,6,21,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,1,0,1105,-3,0,0 +2013,6,30,7,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,745,-10,0,1008,-11,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,16,1,2140,-12,0,0 +2013,7,28,7,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1805,-2,0,2259,-11,0,0 +2013,10,29,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,0,,1200,0,1,1 +2013,7,1,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,958,5,0,1146,-18,0,0 +2013,8,21,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-3,0,1610,-9,0,0 +2013,8,30,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,838,34,1,939,15,1,0 +2013,10,26,6,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1248,-8,0,1454,-24,0,0 +2013,5,14,2,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,1,0,2057,-19,0,0 +2013,5,27,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,-4,0,2145,16,1,0 +2013,10,25,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-3,0,1342,0,0,0 +2013,6,11,2,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,945,34,1,1505,24,1,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,705,-3,0,1145,-7,0,0 +2013,4,4,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-10,0,920,-8,0,0 +2013,9,30,1,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1641,58,1,1740,55,1,0 +2013,9,11,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,907,-11,0,1233,-15,0,0 +2013,7,31,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,610,-4,0,729,6,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1510,5,0,1740,11,0,0 +2013,5,21,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1935,27,1,2050,22,1,0 +2013,5,19,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,2050,1,0,2309,-1,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1023,4,0,1507,19,1,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,6,0,2126,-10,0,0 +2013,8,13,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,-3,0,1721,25,1,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,-4,0,1306,-6,0,0 +2013,9,4,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-7,0,1014,-15,0,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1210,-3,0,1435,-3,0,0 +2013,6,14,5,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1754,19,1,2117,32,1,0 +2013,7,8,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,845,1,0,1023,0,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,-1,0,1915,4,0,0 +2013,4,30,2,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,645,-3,0,746,-6,0,0 +2013,10,13,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-6,0,2031,-13,0,0 +2013,10,10,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,750,0,0,930,-3,0,0 +2013,8,29,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1340,5,0,1425,-12,0,0 +2013,5,5,7,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,23,1,1825,20,1,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1225,0,0,1330,-12,0,0 +2013,4,26,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,33,1,1605,27,1,0 +2013,10,25,5,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1835,30,1,1950,33,1,0 +2013,10,21,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,13,0,1005,38,1,0 +2013,7,14,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-6,0,1355,-15,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,835,-2,0,1005,-8,0,0 +2013,8,27,2,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,-7,0,1625,12,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,-2,0,1545,0,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,25,1,14,19,1,0 +2013,8,7,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1215,70,1,1350,78,1,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,2135,53,1,2250,53,1,0 +2013,5,13,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1530,-5,0,1647,-13,0,0 +2013,7,14,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1220,-5,0,1445,-8,0,0 +2013,4,16,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,825,-16,0,0 +2013,6,12,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-5,0,152,-7,0,0 +2013,7,6,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,648,-8,0,752,-20,0,0 +2013,8,22,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1755,18,1,1840,20,1,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1013,8,0,1553,18,1,0 +2013,4,21,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,645,6,0,705,2,0,0 +2013,5,29,3,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2130,0,,2357,0,1,1 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-4,0,1256,-11,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,815,8,0,1025,10,0,0 +2013,9,17,2,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1200,-5,0,2020,-14,0,0 +2013,9,2,1,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1446,0,,1643,0,1,1 +2013,4,25,4,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,700,-12,0,838,-10,0,0 +2013,6,21,5,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2208,-7,0,845,-17,0,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1305,9,0,1421,7,0,0 +2013,10,14,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1315,33,1,2052,18,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,31,1,1932,20,1,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1744,56,1,2327,67,1,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1400,-4,0,1540,-16,0,0 +2013,8,1,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,6,0,2005,14,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1911,7,0,2355,6,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2147,-3,0,2336,2,0,0 +2013,9,15,7,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1520,-5,0,1700,3,0,0 +2013,8,17,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1439,8,0,1625,-7,0,0 +2013,8,30,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,29,1,830,23,1,0 +2013,5,7,2,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1330,12,0,1413,14,0,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1840,27,1,2000,24,1,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,45,1,2359,57,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-5,0,2359,-23,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,3,0,2155,-2,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,0,,2115,0,1,1 +2013,8,14,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-2,0,2045,20,1,0 +2013,8,22,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1356,-2,0,1710,6,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1015,-4,0,1037,-2,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,734,0,0,927,-6,0,0 +2013,6,5,3,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1915,-3,0,2100,-22,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,925,-4,0,1121,-11,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,21,1,1550,11,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2150,66,1,2255,60,1,0 +2013,6,26,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,0,0,1824,41,1,0 +2013,4,30,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,-7,0,5,-26,0,0 +2013,10,26,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,905,-9,0,1025,9,0,0 +2013,4,22,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,2,0,918,2,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,27,1,2303,8,0,0 +2013,9,23,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,959,-5,0,1230,3,0,0 +2013,7,7,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-7,0,917,-9,0,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,88,1,1735,79,1,0 +2013,5,8,3,9E,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1932,64,1,2122,45,1,0 +2013,6,20,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,605,-4,0,735,0,0,0 +2013,5,21,2,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,44,1,949,27,1,0 +2013,7,10,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2020,120,1,2302,131,1,0 +2013,8,21,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,2,0,1633,-7,0,0 +2013,10,14,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1008,-6,0,1305,-13,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1131,13,0,1408,-6,0,0 +2013,9,1,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,930,7,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,805,-5,0,905,-8,0,0 +2013,8,25,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1707,-5,0,1840,-16,0,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1030,-10,0,1342,10,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1055,-1,0,1607,3,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1745,-1,0,1907,-5,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2210,1,0,2305,-15,0,0 +2013,5,4,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,1,0,1620,-10,0,0 +2013,4,3,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1533,-5,0,1850,-4,0,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1207,0,0,1353,-1,0,0 +2013,4,5,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-9,0,802,3,0,0 +2013,9,20,5,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,110,1,1529,98,1,0 +2013,7,23,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,12,0,1535,20,1,0 +2013,9,30,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,919,5,0,1103,-22,0,0 +2013,8,26,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1258,75,1,1422,68,1,0 +2013,5,10,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,0,0,1330,-7,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1750,50,1,1915,63,1,0 +2013,4,9,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-2,0,1755,-16,0,0 +2013,7,10,3,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-8,0,1917,-16,0,0 +2013,5,11,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1327,-10,0,0 +2013,10,15,2,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-18,0,1326,-19,0,0 +2013,10,9,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-3,0,1229,-2,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,17,1,1805,46,1,0 +2013,6,11,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1030,-3,0,1145,-7,0,0 +2013,4,12,5,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2222,-11,0,602,-28,0,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,-3,0,1515,-17,0,0 +2013,5,16,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,740,-1,0,905,-7,0,0 +2013,8,4,7,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,829,134,1,1044,114,1,0 +2013,8,30,5,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1441,-4,0,1604,2,0,0 +2013,6,19,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,31,1,1920,16,1,0 +2013,8,8,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1155,11,0,1255,8,0,0 +2013,4,23,2,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,920,-5,0,1200,6,0,0 +2013,6,26,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-4,0,1250,-14,0,0 +2013,9,24,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2315,-2,0,705,-25,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,910,1,0,1035,3,0,0 +2013,10,5,6,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2115,-3,0,530,-5,0,0 +2013,4,6,6,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1740,-2,0,1945,-25,0,0 +2013,8,9,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-2,0,820,7,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2040,34,1,2213,35,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1600,3,0,1828,5,0,0 +2013,6,3,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,5,0,1800,-4,0,0 +2013,8,23,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,0,0,1922,9,0,0 +2013,10,11,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,-8,0,1815,-17,0,0 +2013,5,15,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-6,0,1059,-5,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2050,25,1,2205,14,0,0 +2013,10,2,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,4,0,809,-25,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1001,-2,0,1055,-14,0,0 +2013,4,13,6,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,940,-2,0,1235,1,0,0 +2013,6,24,1,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,46,1,1014,42,1,0 +2013,7,17,3,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,945,-16,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1716,40,1,2035,76,1,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1910,21,1,2200,3,0,0 +2013,9,17,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,935,-12,0,1153,-4,0,0 +2013,10,14,1,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1715,-7,0,1813,-12,0,0 +2013,7,9,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,72,1,1435,75,1,0 +2013,9,24,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-4,0,853,8,0,0 +2013,10,14,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,0,0,2101,6,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-8,0,1851,-13,0,0 +2013,10,8,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1730,-7,0,1845,-16,0,0 +2013,4,26,5,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1632,-8,0,1920,0,0,0 +2013,7,19,5,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1500,-5,0,1845,15,1,0 +2013,9,14,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,74,1,1911,65,1,0 +2013,6,9,7,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1850,26,1,2045,21,1,0 +2013,8,12,1,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1910,84,1,2025,68,1,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2050,21,1,2225,18,1,0 +2013,8,12,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,605,-9,0,1425,-40,0,0 +2013,4,30,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,600,-1,0,723,-6,0,0 +2013,9,28,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1936,-3,0,2126,-13,0,0 +2013,7,23,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1615,74,1,1755,75,1,0 +2013,4,26,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1646,2,0,1955,15,1,0 +2013,9,8,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-5,0,1432,-1,0,0 +2013,5,16,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-7,0,1410,-18,0,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1700,0,0,1825,-3,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2058,178,1,2352,163,1,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-2,0,2335,-4,0,0 +2013,6,22,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-8,0,851,1,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1015,12,0,1235,3,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2005,-6,0,2154,-24,0,0 +2013,5,31,5,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,-2,0,920,-11,0,0 +2013,10,7,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,710,-3,0,1025,-27,0,0 +2013,8,25,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-14,0,1949,-20,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,-8,0,1125,-32,0,0 +2013,7,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,101,1,2226,79,1,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1037,-4,0,1400,-10,0,0 +2013,9,22,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,705,-5,0,910,-12,0,0 +2013,6,24,1,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,700,-1,0,737,-8,0,0 +2013,7,10,3,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,-7,0,1721,12,0,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,725,-4,0,1020,6,0,0 +2013,4,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1255,0,0,1620,24,1,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1215,26,1,1404,11,0,0 +2013,9,26,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-4,0,930,-27,0,0 +2013,8,20,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,3,0,2044,6,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,2,0,1435,5,0,0 +2013,9,13,5,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-2,0,831,-21,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1042,-3,0,0 +2013,10,22,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1336,-9,0,0 +2013,8,24,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-5,0,935,-24,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,935,20,1,1259,10,0,0 +2013,4,21,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,705,-6,0,951,-14,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1000,9,0,1100,-2,0,0 +2013,8,14,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1050,-6,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1930,-3,0,2305,-20,0,0 +2013,6,20,4,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,15,1,518,10,0,0 +2013,9,5,4,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,10,0,822,28,1,0 +2013,7,11,4,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,2,0,1306,0,0,0 +2013,5,27,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1035,0,0,1145,-9,0,0 +2013,6,15,6,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,800,26,1,1557,1,0,0 +2013,7,31,3,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1845,-2,0,2105,2,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2220,59,1,15,57,1,0 +2013,4,23,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-7,0,628,-10,0,0 +2013,4,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,715,-1,0,1050,-12,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-3,0,1250,-18,0,0 +2013,4,17,3,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1921,30,1,2225,2,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,10,0,2150,14,0,0 +2013,7,20,6,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1136,15,1,1949,16,1,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-4,0,2340,-8,0,0 +2013,4,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,710,1,0,840,-7,0,0 +2013,9,16,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,-1,0,1235,-15,0,0 +2013,5,20,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1325,9,0,1410,-6,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,56,1,1328,57,1,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2204,-6,0,2339,-18,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1248,-4,0,1847,-6,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,0,0,1621,-25,0,0 +2013,4,5,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1955,-1,0,2115,-3,0,0 +2013,8,10,6,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,614,-9,0,900,-29,0,0 +2013,8,25,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1010,-6,0,1125,-6,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,4,0,2337,-12,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1955,8,0,2305,3,0,0 +2013,6,29,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-1,0,1909,-15,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1225,13,0,1455,4,0,0 +2013,10,16,3,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,745,0,0,1130,-6,0,0 +2013,6,7,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,600,-2,0,1155,-2,0,0 +2013,6,10,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1740,0,0,1805,-6,0,0 +2013,4,27,6,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1240,-5,0,1500,2,0,0 +2013,4,24,3,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1707,-7,0,1850,1,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,16,1,2335,-1,0,0 +2013,5,7,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2317,3,0,737,2,0,0 +2013,4,8,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1646,-9,0,1859,-26,0,0 +2013,5,6,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1947,-4,0,2050,-25,0,0 +2013,8,25,7,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1216,2,0,1510,23,1,0 +2013,10,26,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,0,0,1855,-16,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,23,1,2130,6,0,0 +2013,7,24,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-2,0,905,1,0,0 +2013,8,13,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,25,1,710,24,1,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,0,0,1620,-6,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,843,6,0,1257,-17,0,0 +2013,7,2,2,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,-7,0,2127,-7,0,0 +2013,9,3,2,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1746,-9,0,1856,-1,0,0 +2013,10,11,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2020,34,1,2302,99,1,0 +2013,9,16,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,741,-10,0,1525,-11,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1355,8,0,1710,5,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,-6,0,1152,-14,0,0 +2013,10,13,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1606,-9,0,2,9,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,16,1,2128,7,0,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1803,-7,0,2106,14,0,0 +2013,7,21,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1511,-2,0,1615,3,0,0 +2013,8,12,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,945,-2,0,1654,9,0,0 +2013,7,5,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2325,-1,0,525,-17,0,0 +2013,8,7,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,116,1,1737,139,1,0 +2013,9,3,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1318,-11,0,1757,1,0,0 +2013,9,16,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1930,-4,0,2207,-9,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1515,-4,0,2221,-11,0,0 +2013,6,9,7,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,0,0,2005,5,0,0 +2013,5,11,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1355,-1,0,1515,-8,0,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,920,-3,0,1030,-9,0,0 +2013,7,27,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,1,0,1200,-11,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,27,1,2212,27,1,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1025,0,0,1330,-1,0,0 +2013,5,8,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,15,1,1250,14,0,0 +2013,4,8,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,807,1,0,0 +2013,8,13,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1850,38,1,2130,35,1,0 +2013,8,16,5,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1823,0,,2140,0,1,1 +2013,5,19,7,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-9,0,1509,-15,0,0 +2013,5,12,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2120,-3,0,509,12,0,0 +2013,6,28,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1848,237,1,1949,238,1,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,935,-3,0,1250,-20,0,0 +2013,6,17,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-3,0,1549,-18,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,726,-2,0,904,-10,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,9,0,1347,14,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1309,-4,0,1448,-12,0,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,50,1,2150,42,1,0 +2013,8,14,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,14,0,1220,6,0,0 +2013,4,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,20,1,724,37,1,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1510,-1,0,1844,-13,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1340,34,1,1555,37,1,0 +2013,7,11,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-2,0,1122,-8,0,0 +2013,7,30,2,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,2,0,1830,2,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1745,-1,0,2029,-2,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1320,6,0,1545,9,0,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,605,1,0,1203,-30,0,0 +2013,8,17,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,950,1,0,1310,24,1,0 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,-7,0,1955,-15,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1305,8,0,1452,5,0,0 +2013,6,5,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1905,-8,0,2200,-19,0,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2238,40,1,633,22,1,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1415,44,1,1905,21,1,0 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1835,33,1,2032,32,1,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,-4,0,1958,-10,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-4,0,2336,-13,0,0 +2013,8,13,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,620,0,0,730,-2,0,0 +2013,6,15,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1400,-1,0,1720,-4,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-6,0,1138,-6,0,0 +2013,8,29,4,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1430,-7,0,1608,-28,0,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1225,-5,0,1315,-1,0,0 +2013,6,7,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,755,2,0,0 +2013,6,18,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1135,-1,0,1231,-3,0,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,832,-2,0,1625,-20,0,0 +2013,9,27,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-1,0,1356,-11,0,0 +2013,4,18,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,-4,0,1838,-13,0,0 +2013,5,10,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,0,,1235,0,1,1 +2013,7,28,7,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1620,4,0,1805,7,0,0 +2013,4,5,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-12,0,912,-2,0,0 +2013,10,26,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,930,-7,0,1036,-26,0,0 +2013,5,11,6,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1521,-9,0,1645,-18,0,0 +2013,10,29,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1516,-19,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,809,101,1,1141,114,1,0 +2013,4,6,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,0,0,1624,-12,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1425,-6,0,1648,-19,0,0 +2013,6,4,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1210,7,0,1435,0,0,0 +2013,9,3,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1059,-6,0,1430,-14,0,0 +2013,4,6,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,57,1,1700,41,1,0 +2013,7,8,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,337,59,1,728,67,1,0 +2013,5,30,4,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1010,64,1,1645,52,1,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,86,1,1225,74,1,0 +2013,6,26,3,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1555,10,0,1740,6,0,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1600,60,1,2155,60,1,0 +2013,4,11,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-5,0,1252,-7,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1526,-1,0,1703,-25,0,0 +2013,4,7,7,EV,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1712,57,1,1804,56,1,0 +2013,5,26,7,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1116,-10,0,1340,-18,0,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,945,1,0,1220,-9,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1115,62,1,1406,52,1,0 +2013,8,19,1,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1040,-1,0,1240,-26,0,0 +2013,10,29,2,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1356,-9,0,1538,8,0,0 +2013,5,7,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,2025,-6,0,2100,-11,0,0 +2013,5,13,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1948,47,1,2117,26,1,0 +2013,9,18,3,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,900,-7,0,1125,-2,0,0 +2013,4,17,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1651,67,1,2026,74,1,0 +2013,8,19,1,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1825,133,1,2115,119,1,0 +2013,6,17,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,172,1,1830,210,1,0 +2013,7,11,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,53,1,1900,45,1,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,30,1,2003,9,0,0 +2013,5,19,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1705,5,0,1910,-14,0,0 +2013,10,2,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1803,-3,0,2056,-2,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,2,0,1632,3,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,0,0,1257,1,0,0 +2013,6,1,6,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1500,0,0,2055,2,0,0 +2013,7,15,1,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1711,18,1,2015,11,0,0 +2013,8,14,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,22,1,1755,19,1,0 +2013,5,6,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1940,-5,0,2050,-11,0,0 +2013,7,7,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1319,1,0,1500,-5,0,0 +2013,7,26,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,29,1,1345,17,1,0 +2013,5,4,6,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1800,-3,0,2025,-19,0,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1449,121,1,2029,111,1,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1235,259,1,1255,251,1,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2159,8,0,2301,0,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1330,26,1,1515,18,1,0 +2013,8,11,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2015,-2,0,2116,-9,0,0 +2013,7,5,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,-5,0,840,6,0,0 +2013,8,11,7,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,812,2,0,0 +2013,10,2,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-4,0,1726,-4,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,-6,0,2033,10,0,0 +2013,6,28,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1830,-2,0,1936,10,0,0 +2013,6,1,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,859,0,0,1009,13,0,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1440,5,0,1805,-3,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2025,6,0,2150,3,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2013,-5,0,2139,-7,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1320,0,0,1625,-12,0,0 +2013,5,29,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-2,0,846,-6,0,0 +2013,6,7,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,715,328,1,1011,324,1,0 +2013,5,17,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1748,29,1,2100,36,1,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1453,20,1,1812,-6,0,0 +2013,10,25,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,12,0,720,9,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-1,0,1530,-14,0,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,800,0,0,1230,-4,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,16,1,2040,27,1,0 +2013,7,6,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,641,133,1,755,133,1,0 +2013,6,25,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-4,0,1340,-14,0,0 +2013,7,23,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,2010,-3,0,2020,9,0,0 +2013,9,5,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-5,0,1310,-5,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,625,52,1,925,44,1,0 +2013,6,7,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1905,47,1,2020,47,1,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,610,-9,0,855,-20,0,0 +2013,6,27,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,-6,0,1721,-19,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1405,57,1,1515,50,1,0 +2013,7,17,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1540,5,0,1800,-7,0,0 +2013,8,12,1,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1015,-2,0,1115,1,0,0 +2013,5,30,4,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-6,0,825,-18,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1945,184,1,2205,189,1,0 +2013,10,18,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1716,10,0,2020,-3,0,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-2,0,1055,-16,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1625,28,1,1730,18,1,0 +2013,8,16,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,75,1,2130,66,1,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,710,3,0,835,-5,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,-4,0,1618,-13,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,-3,0,2348,12,0,0 +2013,10,21,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1446,-6,0,1717,-5,0,0 +2013,4,23,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-3,0,1005,-16,0,0 +2013,8,28,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,7,0,1940,-10,0,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1255,-4,0,1352,-9,0,0 +2013,10,7,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1638,64,1,1759,69,1,0 +2013,8,17,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1501,3,0,1618,-13,0,0 +2013,6,27,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,940,-3,0,1110,-3,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1150,0,0,1410,4,0,0 +2013,6,25,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1638,-3,0,1746,9,0,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1930,38,1,2207,21,1,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2007,3,0,2121,3,0,0 +2013,9,16,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1555,-11,0,1635,-13,0,0 +2013,5,28,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1220,0,0,1400,-13,0,0 +2013,10,20,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1045,-8,0,1202,-6,0,0 +2013,10,6,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,800,-1,0,905,-24,0,0 +2013,6,21,5,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1610,-3,0,1923,-18,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,940,-3,0,1230,-1,0,0 +2013,6,9,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,815,-4,0,935,0,0,0 +2013,10,24,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,1,0,920,-8,0,0 +2013,5,1,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,0,0,1300,-5,0,0 +2013,4,3,3,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1207,-7,0,1452,-16,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1733,0,0,1759,-12,0,0 +2013,5,17,5,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1340,14,0,1529,17,1,0 +2013,6,21,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,909,-1,0,1045,-12,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1629,4,0,1922,38,1,0 +2013,10,19,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,742,-3,0,838,-5,0,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1740,45,1,2250,31,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,844,-2,0,1041,-15,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1245,0,0,1455,-5,0,0 +2013,7,30,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-3,0,1821,-8,0,0 +2013,8,31,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,-2,0,1020,-9,0,0 +2013,10,14,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-2,0,2114,-14,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,15,1,1525,7,0,0 +2013,9,17,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1720,-2,0,1851,-22,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1705,1,0,1809,14,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1330,-1,0,1515,-13,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1735,0,0,1935,4,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1005,25,1,1110,26,1,0 +2013,4,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1020,-1,0,1215,-3,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,904,-1,0,1223,-13,0,0 +2013,9,3,2,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,50,1,1536,23,1,0 +2013,4,27,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1059,0,0,1147,-4,0,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1540,-4,0,1715,26,1,0 +2013,10,6,7,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,2201,14,0,2303,7,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,830,9,0,1010,-5,0,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1245,6,0,1605,-10,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,905,-5,0,1016,-5,0,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,1,0,1120,-5,0,0 +2013,9,26,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1446,11,0,1706,10,0,0 +2013,6,11,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1330,74,1,1612,90,1,0 +2013,6,5,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-5,0,1423,19,1,0 +2013,9,13,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,555,-3,0,1355,-3,0,0 +2013,4,10,3,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1921,-6,0,2147,-4,0,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2206,-3,0,47,-24,0,0 +2013,8,30,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1310,1,0,1423,-3,0,0 +2013,9,3,2,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2100,0,0,521,-16,0,0 +2013,9,28,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-1,0,1110,-17,0,0 +2013,4,11,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-7,0,1410,-15,0,0 +2013,4,12,5,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2350,-10,0,806,-25,0,0 +2013,6,15,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-2,0,1941,-3,0,0 +2013,9,20,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1330,-8,0,1435,-18,0,0 +2013,4,15,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,14,0,1830,16,1,0 +2013,4,2,2,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1032,9,0,1523,3,0,0 +2013,8,9,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,737,34,1,927,18,1,0 +2013,9,3,2,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-7,0,1245,-28,0,0 +2013,9,19,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-2,0,1630,4,0,0 +2013,8,10,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,805,-1,0,910,-6,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,0,0,1745,-3,0,0 +2013,4,7,7,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,11,0,825,6,0,0 +2013,6,15,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,600,15,1,1155,26,1,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1640,-5,0,1824,9,0,0 +2013,6,13,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,630,-8,0,930,-14,0,0 +2013,9,16,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,747,-2,0,901,5,0,0 +2013,7,11,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,0,,751,0,1,1 +2013,10,10,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,-2,0,1915,7,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1327,-4,0,1430,-11,0,0 +2013,5,18,6,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-8,0,633,-20,0,0 +2013,8,21,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-4,0,1401,-13,0,0 +2013,8,27,2,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-10,0,821,-12,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1725,52,1,2310,52,1,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1750,8,0,2005,13,0,0 +2013,6,12,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,1,0,1649,0,0,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,855,12,0,1342,12,0,0 +2013,10,25,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1824,-8,0,1944,-9,0,0 +2013,10,8,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-5,0,1835,-7,0,0 +2013,8,7,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1040,-9,0,1325,-10,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,725,-5,0,1030,-5,0,0 +2013,8,4,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,1,0,1620,-3,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,-6,0,1255,-11,0,0 +2013,7,28,7,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1830,-2,0,1950,-6,0,0 +2013,9,9,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1100,-7,0,1431,-16,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1320,0,0,1544,-28,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1012,-2,0,1352,-19,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1235,-2,0,1510,-7,0,0 +2013,4,27,6,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-5,0,853,-3,0,0 +2013,10,29,2,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-1,0,1125,-7,0,0 +2013,9,3,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1810,0,0,1845,-7,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,745,-1,0,1235,0,0,0 +2013,6,28,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1027,8,0,1303,5,0,0 +2013,9,30,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1045,-5,0,1200,-18,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,-4,0,1620,-21,0,0 +2013,10,12,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1615,-3,0,1817,-20,0,0 +2013,7,21,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1045,0,0,1259,-1,0,0 +2013,5,14,2,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1625,21,1,1950,-8,0,0 +2013,7,27,6,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1550,21,1,1847,84,1,0 +2013,8,8,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-7,0,1620,-6,0,0 +2013,7,4,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,-9,0,2220,-43,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-2,0,1914,-3,0,0 +2013,9,13,5,EV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1430,38,1,1608,38,1,0 +2013,7,19,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,0,,2018,0,1,1 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,-1,0,1953,-10,0,0 +2013,8,18,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,2351,12,0,510,-1,0,0 +2013,7,9,2,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1030,37,1,1157,20,1,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1005,2,0,1230,4,0,0 +2013,4,29,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,626,-3,0,755,61,1,0 +2013,8,3,6,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,957,0,0,1314,24,1,0 +2013,10,11,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,730,-9,0,910,-32,0,0 +2013,5,9,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-9,0,1105,-8,0,0 +2013,7,26,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,650,19,1,931,21,1,0 +2013,10,30,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,935,-3,0,1226,-8,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,11,0,2341,10,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1549,-6,0,1825,-36,0,0 +2013,4,18,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,4,0,1820,9,0,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,-1,0,1557,-2,0,0 +2013,7,22,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,600,-4,0,800,-17,0,0 +2013,10,6,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1600,6,0,1824,-5,0,0 +2013,6,13,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-5,0,1940,-13,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1310,5,0,2149,-14,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,803,-1,0,936,-12,0,0 +2013,8,30,5,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,-2,0,1943,-5,0,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-3,0,1834,-1,0,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1010,-3,0,1147,-7,0,0 +2013,10,14,1,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1120,-2,0,1230,-7,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1626,-3,0,1815,5,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1640,3,0,1740,0,0,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,29,1,1910,31,1,0 +2013,5,14,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,833,-5,0,946,-17,0,0 +2013,7,4,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,15,1,955,19,1,0 +2013,5,23,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-2,0,1749,-13,0,0 +2013,6,27,4,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-6,0,1529,6,0,0 +2013,9,6,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1340,-1,0,1520,-1,0,0 +2013,6,13,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,3,0,2214,46,1,0 +2013,9,11,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,33,1,1830,38,1,0 +2013,4,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1005,-7,0,1245,-10,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1115,-8,0,1455,-22,0,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,700,-3,0,827,-2,0,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,635,1,0,745,4,0,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1055,24,1,1635,9,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-3,0,1200,-10,0,0 +2013,9,30,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,123,1,1922,123,1,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,1,0,1525,-2,0,0 +2013,9,2,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,908,-7,0,1021,-12,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,6,0,2335,1,0,0 +2013,5,3,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,2001,-2,0,2210,3,0,0 +2013,7,27,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1310,-1,0,1603,-19,0,0 +2013,4,25,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,-1,0,2140,5,0,0 +2013,4,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-3,0,913,-17,0,0 +2013,10,11,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-5,0,1805,-20,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2000,-2,0,2225,-1,0,0 +2013,4,14,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1530,8,0,1806,-7,0,0 +2013,9,6,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2132,-10,0,0 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1050,-1,0,1904,-10,0,0 +2013,9,22,7,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,1,0,950,5,0,0 +2013,9,26,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,7,0,1755,10,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,815,8,0,920,9,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,1,0,1135,-4,0,0 +2013,5,4,6,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,1820,2,0,1920,-5,0,0 +2013,4,4,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1122,-3,0,1228,-11,0,0 +2013,4,18,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-2,0,1906,-4,0,0 +2013,4,19,5,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1811,38,1,1931,64,1,0 +2013,9,19,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2055,-5,0,2220,-13,0,0 +2013,4,28,7,HA,12173,Honolulu International,Honolulu,HI,12478,John F. Kennedy International,New York,NY,1510,-7,0,655,-2,0,0 +2013,8,25,7,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1420,-10,0,1538,-27,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1206,159,1,1342,167,1,0 +2013,10,9,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1723,-6,0,1959,-25,0,0 +2013,4,28,7,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1625,3,0,1810,1,0,0 +2013,7,12,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-4,0,1254,-6,0,0 +2013,5,7,2,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1733,66,1,1815,72,1,0 +2013,10,26,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1138,-1,0,1336,16,1,0 +2013,10,26,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,956,-15,0,0 +2013,7,6,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1640,147,1,1925,136,1,0 +2013,4,15,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-8,0,1435,-21,0,0 +2013,5,20,1,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1100,-2,0,1547,-23,0,0 +2013,9,25,3,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,1010,-4,0,1727,-33,0,0 +2013,10,16,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,847,10,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-3,0,1106,2,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2015,0,,2320,0,1,1 +2013,5,13,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1442,-6,0,1809,-2,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,-2,0,1250,0,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,99,1,1650,87,1,0 +2013,7,4,4,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,828,3,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-4,0,1636,-9,0,0 +2013,5,11,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1400,-1,0,1620,-15,0,0 +2013,9,9,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,68,1,2100,73,1,0 +2013,7,22,1,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-12,0,718,-11,0,0 +2013,5,30,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,19,1,1610,35,1,0 +2013,7,3,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,34,1,2140,22,1,0 +2013,10,16,3,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1829,-4,0,2014,-16,0,0 +2013,10,6,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,14,0,1900,-9,0,0 +2013,4,13,6,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1540,-4,0,1720,-8,0,0 +2013,5,10,5,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,615,-4,0,1054,1,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1440,5,0,1550,0,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,-5,0,735,-12,0,0 +2013,10,27,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1205,5,0,1320,-2,0,0 +2013,8,27,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-1,0,1425,7,0,0 +2013,7,23,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,820,-2,0,1001,12,0,0 +2013,8,19,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,-6,0,1835,-13,0,0 +2013,10,25,5,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1729,-1,0,2029,1,0,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1510,100,1,2048,84,1,0 +2013,6,9,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1205,-4,0,1750,-13,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1425,-9,0,1625,-24,0,0 +2013,7,24,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1114,4,0,1635,-7,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,-7,0,1045,-29,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1309,38,1,1415,37,1,0 +2013,6,30,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-3,0,1307,-19,0,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,715,1,0,844,-9,0,0 +2013,6,29,6,US,14893,Sacramento International,Sacramento,CA,11057,Charlotte Douglas International,Charlotte,NC,2259,9,0,637,8,0,0 +2013,5,11,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,32,1,1330,29,1,0 +2013,4,28,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1500,0,0,1610,-5,0,0 +2013,4,2,2,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,600,0,0,1158,-5,0,0 +2013,8,16,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1117,-6,0,1335,-30,0,0 +2013,10,11,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1355,-7,0,1437,3,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1105,-3,0,1155,-13,0,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,825,-2,0,940,-13,0,0 +2013,6,16,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-6,0,1652,-19,0,0 +2013,8,18,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,20,1,2135,18,1,0 +2013,4,16,2,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,731,-7,0,1110,-23,0,0 +2013,5,4,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,0,0,1620,-18,0,0 +2013,10,3,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,-5,0,1135,8,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1734,81,1,1817,57,1,0 +2013,8,9,5,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,710,-5,0,1300,-11,0,0 +2013,5,16,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-5,0,1020,-6,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,733,-7,0,1001,5,0,0 +2013,9,6,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,-10,0,2135,-16,0,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-1,0,2347,-10,0,0 +2013,10,31,4,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,930,-8,0,1122,-6,0,0 +2013,7,10,3,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,-9,0,1800,2,0,0 +2013,10,29,2,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1414,-9,0,1730,-32,0,0 +2013,10,26,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1055,-3,0,1350,-14,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,11,0,2058,3,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1526,1,0,1656,11,0,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2156,-5,0,2307,-1,0,0 +2013,5,28,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1225,0,,1325,0,1,1 +2013,9,3,2,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-10,0,900,-14,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1325,1,0,1935,10,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,3,0,1631,-22,0,0 +2013,8,19,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1027,-5,0,1510,-15,0,0 +2013,9,6,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,-7,0,1358,-20,0,0 +2013,7,27,6,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1815,6,0,2035,7,0,0 +2013,6,29,6,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1230,4,0,1510,-9,0,0 +2013,7,13,6,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,600,-5,0,900,8,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,655,1,0,815,-7,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,950,-1,0,1114,-5,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1805,-2,0,2052,-2,0,0 +2013,10,8,2,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,950,-8,0,1650,-10,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,12,0,25,8,0,0 +2013,4,7,7,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,1,0,1806,-3,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1737,51,1,1922,45,1,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1705,23,1,1755,10,0,0 +2013,10,2,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,925,-2,0,1225,-21,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,740,12,0,910,3,0,0 +2013,9,23,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,10,0,1609,6,0,0 +2013,9,7,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1305,-8,0,1624,3,0,0 +2013,4,20,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-2,0,825,-1,0,0 +2013,4,25,4,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1455,4,0,1735,-9,0,0 +2013,7,27,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,65,1,1401,51,1,0 +2013,4,28,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,810,-2,0,925,-11,0,0 +2013,7,15,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-2,0,1440,11,0,0 +2013,9,26,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,55,1,1029,57,1,0 +2013,6,23,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,19,1,2051,10,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,5,0,1050,1,0,0 +2013,5,7,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-7,0,805,-12,0,0 +2013,4,3,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1225,43,1,1600,69,1,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1255,2,0,1620,-13,0,0 +2013,4,12,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1108,34,1,1319,33,1,0 +2013,7,19,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,3,0,1445,-7,0,0 +2013,9,14,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1315,-5,0,1523,-8,0,0 +2013,9,7,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,820,-4,0,920,-4,0,0 +2013,9,29,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,3,0,2025,-4,0,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2130,10,0,2250,12,0,0 +2013,7,28,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1535,11,0,2105,22,1,0 +2013,6,12,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,-2,0,1931,-2,0,0 +2013,4,21,7,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,800,-10,0,1147,-8,0,0 +2013,7,21,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1610,13,0,1735,18,1,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,0,0,1518,-10,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,46,1,855,36,1,0 +2013,7,9,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,1,0,815,-10,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1950,-7,0,2150,-52,0,0 +2013,4,30,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11618,Newark Liberty International,Newark,NJ,953,-10,0,1115,-15,0,0 +2013,10,15,2,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1440,12,0,1820,0,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,957,-6,0,1558,-20,0,0 +2013,4,8,1,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1130,-3,0,1354,-9,0,0 +2013,4,23,2,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,905,10,0,1045,-5,0,0 +2013,4,28,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-5,0,1603,-2,0,0 +2013,10,3,4,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-5,0,1643,-5,0,0 +2013,7,9,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1545,-7,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2350,21,1,550,12,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,914,6,0,1121,-7,0,0 +2013,4,13,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,840,2,0,1130,7,0,0 +2013,8,16,5,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,-1,0,2033,-8,0,0 +2013,4,3,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1950,-6,0,2055,-10,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1740,-4,0,1850,-5,0,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,959,-2,0,1600,-9,0,0 +2013,5,1,3,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,2,0,2025,1,0,0 +2013,5,5,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,755,-7,0,855,-9,0,0 +2013,10,24,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,1955,6,0,2005,23,1,0 +2013,5,1,3,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1732,-9,0,1954,-34,0,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2259,-7,0,2351,-22,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,915,18,1,1205,24,1,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2250,24,1,36,10,0,0 +2013,5,28,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1030,14,0,1225,17,1,0 +2013,6,21,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,945,25,1,1229,17,1,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,4,0,1351,-3,0,0 +2013,6,2,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1850,147,1,2259,126,1,0 +2013,6,27,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1929,77,1,2109,78,1,0 +2013,8,3,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1025,94,1,1040,125,1,0 +2013,6,6,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1005,156,1,1120,143,1,0 +2013,4,19,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-9,0,902,-7,0,0 +2013,7,12,5,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-15,0,1625,-16,0,0 +2013,10,22,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1910,15,1,2015,9,0,0 +2013,4,30,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,-6,0,2015,-30,0,0 +2013,8,2,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,6,0,1630,-5,0,0 +2013,9,15,7,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,4,0,1400,-9,0,0 +2013,7,4,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-8,0,1811,-18,0,0 +2013,10,29,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-1,0,2130,5,0,0 +2013,5,28,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,845,31,1,1155,50,1,0 +2013,4,2,2,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1050,8,0,1308,24,1,0 +2013,7,14,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,19,1,1710,36,1,0 +2013,5,22,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-1,0,932,-5,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1005,1,0,1355,-11,0,0 +2013,8,11,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,-5,0,1724,6,0,0 +2013,10,23,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1909,-4,0,2129,-12,0,0 +2013,8,18,7,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,845,-4,0,1014,-4,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,13,0,2009,14,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2210,48,1,2327,50,1,0 +2013,6,13,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,5,0,834,3,0,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-2,0,1335,-11,0,0 +2013,6,12,3,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,935,-4,0,1527,-17,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1215,0,0,1315,2,0,0 +2013,8,19,1,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,-1,0,2047,-43,0,0 +2013,6,1,6,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,645,-10,0,801,-24,0,0 +2013,4,18,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-1,0,810,14,0,0 +2013,6,4,2,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2045,-5,0,2320,-5,0,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-5,0,1833,-5,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,-4,0,1108,-31,0,0 +2013,10,21,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1001,-9,0,1323,-6,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,-2,0,1140,-25,0,0 +2013,8,3,6,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,959,-1,0,1315,0,0,0 +2013,8,26,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,741,-5,0,905,-15,0,0 +2013,5,23,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1203,-6,0,1314,28,1,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2130,-1,0,2345,-4,0,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1118,2,0,1310,-26,0,0 +2013,6,9,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1910,-5,0,1915,23,1,0 +2013,5,17,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,910,-16,0,0 +2013,7,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,2125,1,0,5,-14,0,0 +2013,7,22,1,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-3,0,549,-12,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1125,8,0,1245,15,1,0 +2013,8,12,1,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,645,-3,0,730,1,0,0 +2013,5,11,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1830,39,1,1935,25,1,0 +2013,10,26,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1405,12,0,1530,23,1,0 +2013,10,1,2,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,605,-3,0,940,-7,0,0 +2013,9,21,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,956,-4,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,124,1,1101,105,1,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1450,0,0,1653,2,0,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1445,5,0,1605,3,0,0 +2013,6,16,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1445,20,1,1500,12,0,0 +2013,9,5,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,-3,0,1458,9,0,0 +2013,6,5,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,710,-3,0,855,1,0,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2115,0,0,2353,-8,0,0 +2013,10,11,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,-6,0,2001,-10,0,0 +2013,9,6,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-6,0,751,2,0,0 +2013,10,23,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1830,-13,0,1935,-7,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,900,-2,0,1625,-8,0,0 +2013,9,23,1,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1809,6,0,2135,-5,0,0 +2013,8,3,6,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2213,19,1,605,-1,0,0 +2013,4,24,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1018,-1,0,1132,-14,0,0 +2013,5,29,3,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1745,-8,0,1915,-12,0,0 +2013,4,20,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1050,13,0,1348,-1,0,0 +2013,9,24,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,950,2,0,1135,-1,0,0 +2013,4,11,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1315,7,0,1435,10,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1020,-6,0,1320,-5,0,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,3,0,2015,-7,0,0 +2013,10,13,7,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1155,-5,0,1619,-9,0,0 +2013,9,2,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,800,-7,0,847,-12,0,0 +2013,7,20,6,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,3,0,1155,5,0,0 +2013,7,10,3,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-8,0,912,-1,0,0 +2013,7,26,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1710,2,0,1747,4,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,600,-2,0,735,-11,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,2,0,2235,-16,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1905,-3,0,2359,-20,0,0 +2013,8,13,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-6,0,1330,-10,0,0 +2013,6,1,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,0,0,1111,-3,0,0 +2013,10,21,1,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1118,9,0,1720,1,0,0 +2013,5,21,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1908,-2,0,2053,-25,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,3,0,2100,9,0,0 +2013,4,28,7,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,605,-2,0,739,-20,0,0 +2013,9,19,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,9,0,1354,8,0,0 +2013,8,4,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12191,William P Hobby,Houston,TX,1250,0,0,1915,2,0,0 +2013,9,16,1,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,-2,0,2142,-42,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,855,7,0,1020,29,1,0 +2013,5,26,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1102,58,1,1153,45,1,0 +2013,10,10,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2030,22,1,2155,8,0,0 +2013,7,26,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,555,1,0,725,-3,0,0 +2013,8,13,2,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,2147,-1,0,610,-28,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,-5,0,1955,-7,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1245,7,0,1455,-17,0,0 +2013,5,15,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1750,13,0,2000,-12,0,0 +2013,9,27,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1230,8,0,1355,-4,0,0 +2013,9,11,3,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1934,11,0,2053,6,0,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1817,-2,0,2058,-17,0,0 +2013,10,12,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,122,1,1715,124,1,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,2,0,2018,-3,0,0 +2013,9,26,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,-15,0,2110,-27,0,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1332,32,1,1526,15,1,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1049,6,0,1330,-15,0,0 +2013,6,28,5,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,-5,0,2305,-9,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1958,12,0,2117,20,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,-4,0,1120,-13,0,0 +2013,4,13,6,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1209,-3,0,1534,-24,0,0 +2013,8,29,4,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1245,64,1,1545,47,1,0 +2013,6,14,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,20,1,1800,9,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1732,-4,0,1930,-13,0,0 +2013,7,18,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1238,-7,0,0 +2013,10,25,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2025,-7,0,2058,-7,0,0 +2013,6,2,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1108,-3,0,1245,-13,0,0 +2013,8,29,4,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,622,11,0,739,6,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,21,1,1255,16,1,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,-7,0,2355,-26,0,0 +2013,7,19,5,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1520,-11,0,2328,-18,0,0 +2013,8,15,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-5,0,1228,-5,0,0 +2013,4,28,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,900,-7,0,1011,-38,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1459,46,1,1801,18,1,0 +2013,8,29,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,5,0,1225,7,0,0 +2013,10,9,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,93,1,1840,97,1,0 +2013,7,13,6,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1418,5,0,1645,8,0,0 +2013,10,10,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1829,-13,0,2122,-15,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2040,0,,2155,0,1,1 +2013,5,27,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,800,5,0,950,-4,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-4,0,1355,-6,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,136,1,1829,155,1,0 +2013,4,17,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1303,68,1,1550,55,1,0 +2013,5,15,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,837,-3,0,939,-3,0,0 +2013,8,11,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1354,16,1,1520,-1,0,0 +2013,9,9,1,OO,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1809,0,0,2025,-3,0,0 +2013,6,2,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1510,0,0,1815,-7,0,0 +2013,7,24,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,9,0,1750,1,0,0 +2013,9,30,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,726,-7,0,928,-2,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1935,29,1,2250,17,1,0 +2013,6,27,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1655,-1,0,1742,20,1,0 +2013,8,19,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-3,0,1410,-7,0,0 +2013,6,29,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,3,0,1116,3,0,0 +2013,8,19,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1335,0,0,1945,6,0,0 +2013,10,22,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,935,-3,0,942,-3,0,0 +2013,9,2,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-5,0,2058,-7,0,0 +2013,7,13,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-3,0,1029,-1,0,0 +2013,6,23,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,845,-1,0,930,-5,0,0 +2013,5,15,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-5,0,1150,-4,0,0 +2013,7,3,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-2,0,1435,-3,0,0 +2013,9,13,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,0,0,1155,0,0,0 +2013,5,27,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,2,0,1442,-11,0,0 +2013,5,20,1,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,808,41,1,1032,2,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1505,-4,0,1610,-13,0,0 +2013,8,20,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,922,2,0,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,-1,0,2237,11,0,0 +2013,10,14,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-8,0,1129,4,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,218,1,1617,213,1,0 +2013,4,13,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-2,0,1730,-23,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-5,0,1114,-5,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,925,-5,0,1035,-10,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1305,11,0,1730,12,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,855,0,0,1030,-3,0,0 +2013,4,12,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,950,2,0,0 +2013,9,7,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-14,0,1425,-1,0,0 +2013,4,27,6,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,744,-7,0,850,-13,0,0 +2013,10,7,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1605,10,0,1819,-1,0,0 +2013,5,23,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2125,6,0,2250,1,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2259,-4,0,2334,-8,0,0 +2013,8,18,7,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,27,1,1029,32,1,0 +2013,4,1,1,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,1155,-3,0,1420,-8,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1840,12,0,2155,4,0,0 +2013,7,12,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1850,0,,2005,0,1,1 +2013,9,10,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1752,213,1,1914,212,1,0 +2013,6,29,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-1,0,1237,-6,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,959,-2,0,1657,-6,0,0 +2013,9,6,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1640,72,1,1815,71,1,0 +2013,7,21,7,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1133,-6,0,1401,-17,0,0 +2013,6,7,5,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1340,0,0,1500,25,1,0 +2013,8,22,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-6,0,2020,12,0,0 +2013,7,29,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,21,1,1435,31,1,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-5,0,1914,3,0,0 +2013,10,12,6,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,847,0,0,1032,8,0,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,13,0,2114,41,1,0 +2013,6,18,2,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1730,10,0,2038,-1,0,0 +2013,6,3,1,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,57,1,2010,57,1,0 +2013,10,1,2,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1655,-11,0,1920,-7,0,0 +2013,9,8,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1935,3,0,2035,5,0,0 +2013,10,28,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1831,15,1,2102,24,1,0 +2013,7,21,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,97,1,1108,85,1,0 +2013,7,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-3,0,2110,-4,0,0 +2013,5,15,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-5,0,730,-17,0,0 +2013,9,28,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1115,6,0,1235,-1,0,0 +2013,8,10,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,-2,0,1315,9,0,0 +2013,4,21,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-6,0,1135,-6,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,6,0,2120,11,0,0 +2013,4,10,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,3,0,1749,2,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,-8,0,2240,-17,0,0 +2013,9,9,1,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1217,-1,0,1336,-8,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1640,53,1,2120,62,1,0 +2013,5,20,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,1515,-11,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,201,1,2246,189,1,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,955,12,0,1230,10,0,0 +2013,5,3,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1805,7,0,2050,8,0,0 +2013,7,16,2,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1226,5,0,1353,3,0,0 +2013,8,17,6,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,545,-11,0,640,-23,0,0 +2013,8,22,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,900,-14,0,0 +2013,10,14,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2010,-8,0,2204,-11,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1450,-3,0,1719,-22,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,743,-1,0,913,-15,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-6,0,1122,-18,0,0 +2013,7,9,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,9,0,903,-1,0,0 +2013,6,2,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1220,-4,0,1628,-8,0,0 +2013,8,1,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-2,0,1925,-4,0,0 +2013,9,9,1,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,900,-1,0,1050,-11,0,0 +2013,8,3,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1000,4,0,1131,6,0,0 +2013,5,8,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1521,-4,0,1712,-8,0,0 +2013,6,1,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1630,1,0,1822,-2,0,0 +2013,9,13,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,-2,0,920,-14,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1030,82,1,1213,65,1,0 +2013,8,12,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-7,0,2051,-28,0,0 +2013,5,19,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1554,-6,0,2358,23,1,0 +2013,4,18,4,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2252,-7,0,709,-8,0,0 +2013,9,25,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1850,-10,0,2249,-29,0,0 +2013,5,25,6,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1135,-2,0,1445,-30,0,0 +2013,6,7,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-3,0,1011,15,1,0 +2013,7,25,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1919,36,1,2100,27,1,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,2,0,1914,-8,0,0 +2013,10,16,3,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,825,1,0,1026,14,0,0 +2013,8,1,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,720,-3,0,932,3,0,0 +2013,10,2,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1706,-2,0,2020,-5,0,0 +2013,10,18,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-4,0,2125,-13,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1020,7,0,1140,-1,0,0 +2013,7,23,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-4,0,812,0,0,0 +2013,10,10,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1000,0,0,1205,-9,0,0 +2013,5,14,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2155,-6,0,2315,-10,0,0 +2013,10,25,5,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,720,-1,0,850,-9,0,0 +2013,5,11,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-5,0,806,-17,0,0 +2013,4,2,2,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-3,0,1218,10,0,0 +2013,10,8,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1555,0,0,1710,-3,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1830,-2,0,2049,-7,0,0 +2013,8,16,5,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1120,16,1,1320,6,0,0 +2013,9,15,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,715,1,0,0 +2013,7,30,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,0,0,1917,6,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1155,3,0,1325,-7,0,0 +2013,5,1,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,30,6,0,454,-1,0,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,841,0,0,1159,-17,0,0 +2013,10,1,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,835,-7,0,1431,-26,0,0 +2013,6,2,7,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1545,-1,0,2108,-2,0,0 +2013,6,29,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,839,121,1,1034,120,1,0 +2013,6,3,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,2,0,2029,1,0,0 +2013,8,4,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-8,0,918,-2,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,845,-6,0,1134,-15,0,0 +2013,8,30,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1245,57,1,1442,45,1,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1257,1,0,1722,-14,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1436,-5,0,1619,-11,0,0 +2013,8,18,7,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,830,-6,0,1020,-6,0,0 +2013,7,30,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-3,0,2014,-4,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,-1,0,835,-9,0,0 +2013,7,21,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1730,2,0,1945,-8,0,0 +2013,6,7,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,-8,0,1314,-12,0,0 +2013,8,1,4,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1849,-5,0,2159,-13,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2140,-4,0,2354,-17,0,0 +2013,9,14,6,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-3,0,2014,-16,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1701,19,1,1938,-22,0,0 +2013,9,19,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,10,0,1130,12,0,0 +2013,4,13,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1835,-2,0,2115,-4,0,0 +2013,9,3,2,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,722,-6,0,1021,10,0,0 +2013,7,6,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1525,0,0,2336,6,0,0 +2013,8,21,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1210,-1,0,1325,-18,0,0 +2013,10,1,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,6,0,1101,-17,0,0 +2013,5,11,6,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1644,0,0,2105,-23,0,0 +2013,10,29,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-6,0,1357,-14,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,2007,-2,0,2354,2,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,21,1,1045,6,0,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,0,0,1003,-13,0,0 +2013,7,2,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,0,,1715,0,1,1 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-4,0,757,15,1,0 +2013,4,2,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1055,12,0,0 +2013,10,29,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1615,18,1,1740,6,0,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,635,0,0,750,1,0,0 +2013,4,25,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1401,-4,0,1724,13,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-3,0,815,-5,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-3,0,1058,-12,0,0 +2013,6,23,7,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,16,1,2,-9,0,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,4,0,1511,-4,0,0 +2013,9,26,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1100,11,0,1220,13,0,0 +2013,4,9,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1557,-5,0,1910,14,0,0 +2013,4,23,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,0,0,1830,-2,0,0 +2013,5,11,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1105,1,0,1225,2,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,700,5,0,805,0,0,0 +2013,6,12,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,-1,0,750,-5,0,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2011,25,1,2306,-3,0,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,-11,0,1940,-23,0,0 +2013,9,12,4,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-1,0,1205,-10,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,3,0,2035,-6,0,0 +2013,8,19,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1636,-7,0,1805,-14,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2052,-3,0,2245,2,0,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,3,0,1454,22,1,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1203,6,0,1440,-8,0,0 +2013,6,23,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-7,0,825,-8,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,0,0,1442,-19,0,0 +2013,4,7,7,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,-2,0,759,-11,0,0 +2013,9,18,3,AA,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1840,-12,0,2010,3,0,0 +2013,8,7,3,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1519,2,0,1656,2,0,0 +2013,8,29,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,74,1,1525,69,1,0 +2013,6,6,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1705,83,1,1829,93,1,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-6,0,1252,-11,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2055,23,1,2215,13,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,2005,235,1,2210,242,1,0 +2013,6,8,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1425,0,0,1555,-9,0,0 +2013,10,12,6,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,-9,0,2055,-29,0,0 +2013,10,18,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1935,32,1,2010,19,1,0 +2013,8,23,5,EV,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-11,0,1010,-14,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,842,-7,0,947,-22,0,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1540,1,0,1858,-17,0,0 +2013,5,21,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1125,0,0,1225,-5,0,0 +2013,9,17,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1845,-3,0,2025,-10,0,0 +2013,6,27,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,950,2,0,1055,-11,0,0 +2013,8,13,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1640,77,1,2020,67,1,0 +2013,7,18,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,853,-6,0,1129,-7,0,0 +2013,5,18,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-4,0,2209,7,0,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,-3,0,2347,-15,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1710,11,0,1900,12,0,0 +2013,9,7,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,825,-3,0,955,-13,0,0 +2013,4,9,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-3,0,1930,-6,0,0 +2013,8,27,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,0,0,1455,4,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1340,2,0,1447,34,1,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,825,5,0,1000,0,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,16,1,834,0,0,0 +2013,8,23,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-2,0,1759,-8,0,0 +2013,7,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,82,1,1845,77,1,0 +2013,7,15,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,-10,0,1515,-15,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,0,0,1457,-7,0,0 +2013,10,19,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,2,0,1355,-1,0,0 +2013,7,23,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,808,10,0,925,16,1,0 +2013,8,12,1,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,5,0,1952,-13,0,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1005,-3,0,1110,-3,0,0 +2013,5,14,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,856,-3,0,1205,-6,0,0 +2013,8,17,6,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,814,1,0,1409,4,0,0 +2013,7,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,-4,0,1015,4,0,0 +2013,10,14,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1616,-2,0,1922,-4,0,0 +2013,7,22,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,-5,0,1550,-17,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1115,2,0,1250,-5,0,0 +2013,5,11,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1303,45,1,2129,70,1,0 +2013,6,14,5,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,732,6,0,935,9,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1715,-1,0,1925,-26,0,0 +2013,8,3,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-2,0,1900,-17,0,0 +2013,7,30,2,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2225,74,1,630,68,1,0 +2013,8,28,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-8,0,1526,-12,0,0 +2013,4,7,7,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,2010,-12,0,2212,-21,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1400,4,0,1500,2,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,945,22,1,1230,8,0,0 +2013,10,8,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1055,-2,0,1210,-8,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-1,0,1107,2,0,0 +2013,5,27,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,3,0,1235,2,0,0 +2013,10,17,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1140,10,0,1355,14,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,-5,0,1438,2,0,0 +2013,9,13,5,AA,10529,Bradley International,Hartford,CT,12892,Los Angeles International,Los Angeles,CA,920,1,0,1235,-23,0,0 +2013,6,15,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,12,0,1532,24,1,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1635,168,1,1825,164,1,0 +2013,9,3,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1803,115,1,1850,106,1,0 +2013,7,29,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1935,-8,0,2110,-20,0,0 +2013,6,2,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,-6,0,1110,-9,0,0 +2013,4,25,4,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,843,-5,0,1120,5,0,0 +2013,8,25,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,915,-7,0,1055,8,0,0 +2013,8,28,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1125,-1,0,1310,35,1,0 +2013,8,6,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1355,4,0,1500,0,0,0 +2013,8,3,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,16,1,1945,8,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,0,,2230,0,1,1 +2013,10,30,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1135,22,1,1250,13,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1658,-8,0,1831,-16,0,0 +2013,7,15,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-7,0,712,-18,0,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-2,0,1322,-2,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,0,0,1150,4,0,0 +2013,7,19,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1255,26,1,1410,15,1,0 +2013,9,9,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1621,4,0,1949,0,0,0 +2013,7,7,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,747,-12,0,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-3,0,1321,-12,0,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1615,56,1,1815,42,1,0 +2013,10,7,1,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-6,0,1415,-13,0,0 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,-3,0,1310,28,1,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1635,19,1,1715,10,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1420,0,0,1525,-4,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2015,37,1,2145,86,1,0 +2013,10,25,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,2,0,1315,-8,0,0 +2013,6,12,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,9,0,1630,13,0,0 +2013,6,19,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1237,31,1,1800,8,0,0 +2013,9,8,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,1255,12,0,0 +2013,8,29,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1730,7,0,1828,8,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,755,12,0,1245,3,0,0 +2013,9,12,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1809,131,1,2135,127,1,0 +2013,10,4,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,-1,0,1135,-11,0,0 +2013,6,24,1,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-3,0,2040,2,0,0 +2013,6,23,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1140,-1,0,1428,-11,0,0 +2013,4,4,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-1,0,1820,-12,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1050,-1,0,1112,-17,0,0 +2013,4,28,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,0,0,1645,8,0,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-5,0,2235,5,0,0 +2013,7,15,1,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,15,1,1415,7,0,0 +2013,8,5,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,-6,0,2045,-6,0,0 +2013,7,1,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1328,-2,0,1530,-6,0,0 +2013,7,26,5,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,910,3,0,1040,-4,0,0 +2013,8,3,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1720,56,1,2014,46,1,0 +2013,4,27,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1819,-4,0,1944,-17,0,0 +2013,6,21,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-1,0,2115,-17,0,0 +2013,10,6,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1410,-3,0,2252,-9,0,0 +2013,5,21,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,4,0,1913,26,1,0 +2013,8,2,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,800,8,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1740,-1,0,2031,26,1,0 +2013,9,26,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1105,-6,0,1244,-9,0,0 +2013,5,14,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1805,-5,0,1920,-17,0,0 +2013,8,7,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1435,7,0,1800,31,1,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1840,142,1,2055,141,1,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1115,4,0,1245,4,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1732,0,0,1939,-3,0,0 +2013,8,27,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,1047,-7,0,0 +2013,6,7,5,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-3,0,1100,-7,0,0 +2013,6,23,7,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,-6,0,1055,6,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1400,-2,0,1650,16,1,0 +2013,10,21,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,0,0,2225,-6,0,0 +2013,4,26,5,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1143,-1,0,1440,0,0,0 +2013,10,1,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,-5,0,1148,-38,0,0 +2013,6,8,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1310,7,0,1500,-2,0,0 +2013,5,17,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2202,0,0,2338,-7,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,1,0,1916,-2,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,10,0,1538,-5,0,0 +2013,5,4,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1555,3,0,1849,-2,0,0 +2013,4,25,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-7,0,1855,-8,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,0,0,1600,-16,0,0 +2013,10,11,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1955,-5,0,2020,-27,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1552,-4,0,2359,-7,0,0 +2013,6,30,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-6,0,1420,-17,0,0 +2013,7,4,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,745,-1,0,1520,-20,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2100,55,1,10,90,1,0 +2013,5,9,4,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,620,0,0,750,-10,0,0 +2013,6,5,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1346,14,0,1551,-2,0,0 +2013,5,8,3,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1235,-7,0,1515,-13,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2045,9,0,2300,-5,0,0 +2013,8,27,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-5,0,900,-25,0,0 +2013,9,3,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1937,102,1,2056,97,1,0 +2013,4,2,2,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,832,29,1,1012,21,1,0 +2013,7,31,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-12,0,846,-9,0,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1830,7,0,2030,-6,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,620,0,0,1050,-9,0,0 +2013,5,27,1,OO,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1549,-3,0,1715,17,1,0 +2013,8,14,3,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,-5,0,1859,-1,0,0 +2013,4,6,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1320,0,0,1715,-4,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,3,0,1720,4,0,0 +2013,7,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2202,102,1,2309,97,1,0 +2013,9,10,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-4,0,1715,-21,0,0 +2013,6,15,6,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1900,24,1,2113,12,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1624,20,1,1914,17,1,0 +2013,7,30,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1208,-6,0,1330,-13,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2039,39,1,2303,15,1,0 +2013,7,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2001,-4,0,2105,-16,0,0 +2013,5,4,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-9,0,1713,-18,0,0 +2013,9,6,5,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1810,-1,0,2009,-11,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,725,-3,0,1050,-6,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1640,2,0,2130,-1,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1135,-6,0,1244,-8,0,0 +2013,7,12,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,107,1,1550,107,1,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2030,1,0,2225,-4,0,0 +2013,9,17,2,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-1,0,1305,1,0,0 +2013,7,29,1,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,14,0,2350,15,1,0 +2013,5,20,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,24,1,1145,20,1,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1125,12,0,1645,2,0,0 +2013,10,31,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-8,0,1122,-39,0,0 +2013,8,15,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,823,115,1,956,119,1,0 +2013,6,23,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1251,3,0,1501,-7,0,0 +2013,4,20,6,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1955,-4,0,2112,-12,0,0 +2013,6,5,3,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,-1,0,835,-10,0,0 +2013,10,31,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,-2,0,1850,-7,0,0 +2013,5,19,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,900,2,0,1010,-7,0,0 +2013,10,3,4,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1830,0,0,2051,-13,0,0 +2013,6,15,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,7,0,1255,-4,0,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,2145,-6,0,2314,-9,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2007,3,0,2145,-13,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,3,0,1129,-3,0,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2130,0,0,2240,-7,0,0 +2013,8,30,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1233,-4,0,1400,-6,0,0 +2013,9,16,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1239,-22,0,0 +2013,4,19,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1237,0,0,1754,-7,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-5,0,1120,-8,0,0 +2013,6,24,1,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,0,0,1055,-9,0,0 +2013,9,23,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1039,9,0,1246,-3,0,0 +2013,10,31,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,715,-4,0,840,-6,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1908,-1,0,2114,-23,0,0 +2013,5,24,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1230,100,1,1442,96,1,0 +2013,6,23,7,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,16,1,1445,22,1,0 +2013,5,15,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1409,6,0,1549,10,0,0 +2013,5,14,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,6,0,2104,7,0,0 +2013,8,8,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2128,17,1,2347,20,1,0 +2013,8,7,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,115,-5,0,615,-6,0,0 +2013,4,22,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-1,0,1010,-4,0,0 +2013,4,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2159,-3,0,2254,-19,0,0 +2013,4,13,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,1,0,2148,-5,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1640,34,1,1745,27,1,0 +2013,9,9,1,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,805,-4,0,935,5,0,0 +2013,4,26,5,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1255,18,1,1620,17,1,0 +2013,4,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2148,-7,0,2300,-13,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,-3,0,2229,-14,0,0 +2013,6,2,7,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,46,-6,0,606,-3,0,0 +2013,6,7,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,43,1,1905,33,1,0 +2013,6,21,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-4,0,1755,-5,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1630,2,0,2355,-16,0,0 +2013,5,5,7,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1344,-4,0,1621,-7,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1953,3,0,2230,4,0,0 +2013,5,27,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1047,-5,0,1209,-19,0,0 +2013,9,14,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2008,1,0,2103,-7,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,730,-4,0,1040,-10,0,0 +2013,4,1,1,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1025,44,1,1625,33,1,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1955,21,1,2215,27,1,0 +2013,9,18,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2140,-10,0,2259,-23,0,0 +2013,6,6,4,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,-6,0,2213,-24,0,0 +2013,8,25,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-10,0,1520,-25,0,0 +2013,4,15,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1829,80,1,2122,63,1,0 +2013,6,7,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-4,0,516,-24,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1056,17,1,1151,9,0,0 +2013,5,10,5,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,954,-3,0,1149,-2,0,0 +2013,4,12,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,0,0,1605,-21,0,0 +2013,5,27,1,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,1,0,1520,-6,0,0 +2013,9,30,1,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1325,-1,0,1545,-15,0,0 +2013,5,3,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1210,4,0,1335,0,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1849,-2,0,1942,40,1,0 +2013,7,8,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1152,51,1,1238,37,1,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,4,0,1515,16,1,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1805,22,1,2126,-3,0,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1800,-9,0,2103,5,0,0 +2013,10,1,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,715,0,0,905,2,0,0 +2013,10,24,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,-4,0,1804,-9,0,0 +2013,5,12,7,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1208,-2,0,1430,-9,0,0 +2013,5,23,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1310,-3,0,1443,-11,0,0 +2013,10,26,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1040,0,0,1310,0,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1342,0,0,1513,-20,0,0 +2013,9,16,1,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,800,-2,0,1355,-4,0,0 +2013,4,30,2,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,930,8,0,1255,-8,0,0 +2013,7,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-2,0,1550,-8,0,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,47,1,2259,35,1,0 +2013,7,19,5,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1000,-5,0,1250,-18,0,0 +2013,5,7,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,711,0,0,845,6,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,81,1,1941,75,1,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1425,4,0,1520,3,0,0 +2013,6,30,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,950,-1,0,1250,-8,0,0 +2013,4,11,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,826,-1,0,1040,-11,0,0 +2013,6,15,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2031,1,0,455,-23,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1645,76,1,1940,78,1,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,605,16,1,720,13,0,0 +2013,10,7,1,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1810,-12,0,1940,-14,0,0 +2013,9,6,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1117,-9,0,1233,-11,0,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1510,-4,0,1742,-8,0,0 +2013,10,21,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,3,0,1337,1,0,0 +2013,8,20,2,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1611,2,0,1913,-25,0,0 +2013,10,20,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,0,0,827,-12,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,-5,0,2130,-10,0,0 +2013,5,1,3,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,835,-7,0,1102,0,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,630,1,0,730,-5,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,715,-7,0,820,-6,0,0 +2013,4,24,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1654,-6,0,1822,-11,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,-5,0,1757,-13,0,0 +2013,7,24,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2235,-8,0,707,-31,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,207,1,519,233,1,0 +2013,10,25,5,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,955,-1,0,1254,-12,0,0 +2013,7,26,5,OO,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,0,0,1301,4,0,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1500,1,0,1700,-14,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-3,0,1655,-6,0,0 +2013,4,11,4,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1530,3,0,1855,-18,0,0 +2013,9,1,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1230,-3,0,1810,-8,0,0 +2013,9,30,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2040,0,0,2235,-3,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1745,-2,0,1941,-15,0,0 +2013,8,4,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,-4,0,1700,-6,0,0 +2013,10,9,3,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1127,-4,0,1315,-15,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-5,0,2208,-10,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,750,-1,0,915,-5,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1830,14,0,2010,28,1,0 +2013,8,23,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-6,0,1330,-7,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1350,0,0,1435,5,0,0 +2013,8,4,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,2,0,1749,-36,0,0 +2013,8,23,5,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,645,-2,0,810,2,0,0 +2013,6,28,5,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,945,-2,0,1427,-9,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,855,-2,0,1129,-17,0,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,-8,0,1438,-14,0,0 +2013,5,19,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,940,-3,0,1115,-30,0,0 +2013,6,14,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,-2,0,2105,-4,0,0 +2013,5,14,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-3,0,1105,-42,0,0 +2013,9,2,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-2,0,816,15,1,0 +2013,5,14,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,29,1,2025,13,0,0 +2013,8,7,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1228,28,1,1534,44,1,0 +2013,6,17,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1945,11,0,2225,8,0,0 +2013,9,16,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,812,-6,0,930,-11,0,0 +2013,6,14,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,16,1,1440,-5,0,0 +2013,8,30,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,626,-4,0,916,1,0,0 +2013,8,3,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1622,0,0,1756,-10,0,0 +2013,7,15,1,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,600,-1,0,745,-10,0,0 +2013,8,29,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,845,-5,0,1107,4,0,0 +2013,9,26,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1349,3,0,2003,-1,0,0 +2013,6,13,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,7,0,1515,37,1,0 +2013,9,4,3,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-8,0,900,-44,0,0 +2013,8,23,5,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,-10,0,2014,-19,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1257,104,1,1720,89,1,0 +2013,9,1,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,-6,0,955,-23,0,0 +2013,10,3,4,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1705,0,0,1912,-8,0,0 +2013,10,13,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1430,14,0,1555,7,0,0 +2013,7,20,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-4,0,1254,-4,0,0 +2013,5,14,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1005,-16,0,0 +2013,9,13,5,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1252,77,1,1430,65,1,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,635,-6,0,914,-9,0,0 +2013,6,23,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,2005,76,1,2135,71,1,0 +2013,6,10,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1130,11,0,1349,2,0,0 +2013,4,23,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1757,8,0,2157,-6,0,0 +2013,7,16,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,0,0,2125,-11,0,0 +2013,5,7,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,959,-10,0,1631,20,1,0 +2013,7,16,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1232,-4,0,1444,-7,0,0 +2013,8,12,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-5,0,1830,64,1,0 +2013,6,15,6,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,808,0,0,1024,-18,0,0 +2013,7,27,6,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1430,-8,0,1556,-30,0,0 +2013,5,19,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1535,13,0,1835,4,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,734,-6,0,925,-3,0,0 +2013,6,26,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,945,16,1,1625,27,1,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1700,-1,0,1940,-10,0,0 +2013,8,7,3,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,17,1,2025,16,1,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2040,-1,0,2210,-5,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-1,0,1150,13,0,0 +2013,4,6,6,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,635,-6,0,755,-14,0,0 +2013,5,2,4,OO,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1430,-3,0,1610,-6,0,0 +2013,9,4,3,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,6,0,2015,27,1,0 +2013,8,10,6,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-5,0,1800,-10,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-4,0,1715,-23,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1249,-4,0,1459,-29,0,0 +2013,6,27,4,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1035,1,0,1630,-21,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1820,3,0,2025,23,1,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1725,21,1,2245,22,1,0 +2013,8,30,5,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,820,-1,0,1010,2,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,545,-3,0,933,8,0,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1210,1,0,1425,5,0,0 +2013,8,25,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-10,0,1241,-15,0,0 +2013,5,11,6,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1611,4,0,1845,5,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1310,3,0,1415,1,0,0 +2013,5,9,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,850,5,0,1110,8,0,0 +2013,9,7,6,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1800,4,0,2007,13,0,0 +2013,6,4,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,-6,0,1701,-3,0,0 +2013,5,4,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1255,-1,0,1350,-6,0,0 +2013,9,18,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,635,-8,0,830,-14,0,0 +2013,7,14,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,4,0,2214,4,0,0 +2013,7,31,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,2000,-1,0,2205,3,0,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1625,4,0,1730,-1,0,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1720,13,0,1820,16,1,0 +2013,7,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1650,38,1,1810,38,1,0 +2013,8,23,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-9,0,1014,-2,0,0 +2013,8,11,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,720,-8,0,945,-12,0,0 +2013,8,12,1,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,625,-10,0,706,-3,0,0 +2013,6,8,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,1122,-6,0,0 +2013,9,6,5,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1550,11,0,1705,18,1,0 +2013,7,23,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-10,0,1206,-6,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1700,-1,0,1755,-4,0,0 +2013,7,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-5,0,1344,-21,0,0 +2013,9,11,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-6,0,1028,-4,0,0 +2013,9,1,7,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,0,0,1230,-1,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-4,0,1620,9,0,0 +2013,9,29,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1455,32,1,1729,34,1,0 +2013,8,26,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,48,1,1415,28,1,0 +2013,7,16,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-2,0,1525,23,1,0 +2013,7,25,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1645,-7,0,1826,-3,0,0 +2013,6,24,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,713,80,1,1015,72,1,0 +2013,8,23,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1405,1,0,1516,-16,0,0 +2013,5,14,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-6,0,1112,-3,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-3,0,1247,4,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1910,19,1,2345,12,0,0 +2013,9,5,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1955,10,0,2239,8,0,0 +2013,6,18,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1723,-4,0,2000,-12,0,0 +2013,10,2,3,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-9,0,636,-5,0,0 +2013,5,20,1,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1713,0,,1841,0,1,1 +2013,7,24,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,925,0,0,1040,-4,0,0 +2013,9,13,5,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,925,4,0,1804,33,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2155,30,1,2356,18,1,0 +2013,8,27,2,YV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1515,-4,0,1647,-16,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1029,-5,0,1141,-19,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1940,-5,0,2204,-21,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1420,2,0,1753,8,0,0 +2013,8,21,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1218,2,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1145,1,0,1500,10,0,0 +2013,10,23,3,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,1230,-12,0,0 +2013,8,25,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2039,7,0,2254,-17,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,700,-1,0,840,-2,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,815,18,1,1110,26,1,0 +2013,9,6,5,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,810,-3,0,1100,-16,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,24,1,935,53,1,0 +2013,10,28,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1330,-3,0,1435,-16,0,0 +2013,10,11,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-4,0,2220,-7,0,0 +2013,7,27,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1005,-6,0,1120,0,0,0 +2013,4,15,1,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1630,2,0,1825,41,1,0 +2013,5,8,3,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,-2,0,1140,-10,0,0 +2013,9,14,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,915,-3,0,925,0,0,0 +2013,10,22,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1947,-4,0,2250,-1,0,0 +2013,8,23,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,31,1,2130,29,1,0 +2013,7,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,2,0,1545,1,0,0 +2013,10,31,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,3,0,1045,2,0,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2030,-4,0,2259,-3,0,0 +2013,9,10,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1710,-7,0,1941,3,0,0 +2013,4,26,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1410,13,0,1650,4,0,0 +2013,4,7,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1755,0,0,1840,8,0,0 +2013,10,2,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,745,-10,0,1122,-25,0,0 +2013,10,20,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-7,0,1548,-30,0,0 +2013,5,8,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1020,1,0,1130,2,0,0 +2013,8,28,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,3,0,2015,22,1,0 +2013,9,12,4,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-3,0,1041,-2,0,0 +2013,5,25,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,10,0,1740,17,1,0 +2013,10,2,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1630,0,,1750,0,1,1 +2013,6,6,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,2,0,830,-3,0,0 +2013,10,7,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-12,0,2115,-27,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1754,-4,0,2046,-34,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1306,-7,0,1436,-2,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-8,0,2200,-22,0,0 +2013,10,24,4,EV,12953,LaGuardia,New York,NY,13931,Norfolk International,Norfolk,VA,1545,38,1,1721,25,1,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,715,-5,0,815,-12,0,0 +2013,6,4,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-3,0,2000,-16,0,0 +2013,4,2,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-5,0,913,12,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,20,1,2130,-4,0,0 +2013,8,7,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1700,46,1,1816,82,1,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,-1,0,1245,-10,0,0 +2013,9,21,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1731,-3,0,1858,1,0,0 +2013,9,8,7,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,-10,0,2135,-9,0,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,930,4,0,1125,-10,0,0 +2013,8,12,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-5,0,2300,-10,0,0 +2013,9,13,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1845,31,1,2110,32,1,0 +2013,4,3,3,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,550,-2,0,826,18,1,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1609,-1,0,1627,-1,0,0 +2013,7,3,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1400,-3,0,1440,-20,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1400,24,1,1655,16,1,0 +2013,4,22,1,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,1400,-4,0,1550,-12,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1540,20,1,1820,43,1,0 +2013,9,5,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1349,-10,0,1517,-23,0,0 +2013,4,8,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1110,23,1,1635,6,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-1,0,1154,-12,0,0 +2013,7,27,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,720,-11,0,1019,-14,0,0 +2013,10,12,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2000,0,0,2051,-3,0,0 +2013,6,2,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,15,1,1914,11,0,0 +2013,4,23,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-1,0,932,-3,0,0 +2013,4,29,1,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1645,-1,0,1810,-1,0,0 +2013,9,26,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1737,-6,0,1905,2,0,0 +2013,4,10,3,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,615,43,1,911,33,1,0 +2013,9,20,5,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,3,0,1918,-12,0,0 +2013,5,9,4,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1220,-2,0,1600,21,1,0 +2013,10,22,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1440,44,1,1600,42,1,0 +2013,7,19,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-5,0,828,-1,0,0 +2013,10,3,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-7,0,1352,-11,0,0 +2013,7,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,32,1,1829,34,1,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1740,17,1,2305,15,1,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2209,-2,0,30,-13,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1309,-7,0,1705,4,0,0 +2013,5,27,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,271,1,1925,258,1,0 +2013,6,13,4,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1545,48,1,1814,45,1,0 +2013,5,29,3,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1805,-2,0,2128,-9,0,0 +2013,5,18,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,22,1,1452,33,1,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1605,-4,0,1830,-19,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,9,0,2125,1,0,0 +2013,10,7,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1353,-5,0,2100,7,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1735,6,0,1927,-3,0,0 +2013,7,11,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1809,44,1,1919,23,1,0 +2013,6,16,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1334,-17,0,0 +2013,7,28,7,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1642,-6,0,2054,-6,0,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1520,9,0,1813,-28,0,0 +2013,7,27,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,-4,0,1055,14,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1445,26,1,1715,32,1,0 +2013,7,10,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-11,0,641,-3,0,0 +2013,6,25,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,805,4,0,915,1,0,0 +2013,10,16,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-6,0,2101,0,0,0 +2013,4,27,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,650,2,0,855,-3,0,0 +2013,9,17,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,32,1,1120,27,1,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1955,34,1,2225,34,1,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1930,79,1,2150,79,1,0 +2013,4,9,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-8,0,1855,-27,0,0 +2013,9,10,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-9,0,1742,-17,0,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,755,-7,0,940,-10,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1310,1,0,1625,10,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1657,3,0,1842,-1,0,0 +2013,7,17,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1923,-9,0,2013,-7,0,0 +2013,10,20,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-4,0,2145,4,0,0 +2013,7,10,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,76,1,2305,76,1,0 +2013,6,21,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1115,7,0,1230,10,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,2,0,1315,17,1,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-1,0,1208,0,0,0 +2013,9,29,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,845,6,0,1205,-6,0,0 +2013,6,2,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,181,1,2019,176,1,0 +2013,6,18,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,940,148,1,1039,145,1,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1310,6,0,1430,-1,0,0 +2013,4,8,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-5,0,950,-11,0,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,655,-5,0,815,-24,0,0 +2013,8,23,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1350,12,0,1955,23,1,0 +2013,8,24,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-1,0,821,0,0,0 +2013,6,3,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,530,11,0,650,4,0,0 +2013,9,23,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2110,-5,0,2215,-9,0,0 +2013,4,30,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,945,4,0,1641,5,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2155,9,0,2305,5,0,0 +2013,4,30,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,2,0,1632,-5,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1410,-6,0,1649,10,0,0 +2013,8,12,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1240,1,0,1610,0,0,0 +2013,6,8,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1145,-5,0,1435,-8,0,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2025,-4,0,2300,-17,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1910,24,1,2057,28,1,0 +2013,8,28,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1602,-6,0,1718,-12,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,4,0,929,-5,0,0 +2013,6,18,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-5,0,1534,-6,0,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-2,0,851,-2,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,3,0,1840,2,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1725,-5,0,1939,-16,0,0 +2013,6,4,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1116,-4,0,1151,3,0,0 +2013,7,19,5,EV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,954,-12,0,1132,-23,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-7,0,801,-22,0,0 +2013,4,30,2,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-7,0,1122,-14,0,0 +2013,9,13,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-2,0,805,3,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1740,7,0,2300,-12,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,-7,0,1401,-18,0,0 +2013,5,5,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1809,-2,0,2021,8,0,0 +2013,8,13,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1050,27,1,1353,20,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,-4,0,1257,3,0,0 +2013,10,13,7,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,-10,0,1914,1,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1420,0,0,1515,-9,0,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,34,1,40,24,1,0 +2013,10,20,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,2000,-7,0,2125,-13,0,0 +2013,8,30,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,610,-8,0,739,-4,0,0 +2013,10,24,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,5,0,1620,0,0,0 +2013,10,31,4,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1338,-6,0,1456,-7,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,2,0,629,-4,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,705,-4,0,925,3,0,0 +2013,7,10,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,605,-6,0,807,-11,0,0 +2013,9,26,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,755,1,0,845,3,0,0 +2013,5,30,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1237,10,0,2108,-4,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,810,-4,0,852,-10,0,0 +2013,10,2,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,-3,0,1707,9,0,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1100,3,0,1841,-24,0,0 +2013,6,27,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2045,189,1,2159,175,1,0 +2013,9,2,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1705,-4,0,1800,2,0,0 +2013,5,6,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2002,-4,0,2214,-14,0,0 +2013,6,20,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,-3,0,2025,-17,0,0 +2013,10,6,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1422,-1,0,1530,4,0,0 +2013,6,12,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,757,-10,0,925,-22,0,0 +2013,5,27,1,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,-5,0,608,25,1,0 +2013,8,9,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,8,0,1650,10,0,0 +2013,6,25,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,952,5,0,1312,50,1,0 +2013,8,12,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,66,1,1228,55,1,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1435,0,0,1456,-11,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1345,28,1,1615,22,1,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-1,0,1048,8,0,0 +2013,10,24,4,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1740,4,0,2035,2,0,0 +2013,7,10,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1745,11,0,1926,22,1,0 +2013,8,4,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,104,1,1225,102,1,0 +2013,8,1,4,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1550,-3,0,1804,-16,0,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1901,-1,0,2213,-26,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,-3,0,2230,-7,0,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,54,1,2244,39,1,0 +2013,9,22,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,-4,0,2035,-12,0,0 +2013,7,19,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1718,60,1,1940,58,1,0 +2013,6,20,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,722,-2,0,914,-21,0,0 +2013,5,1,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,3,0,1425,-4,0,0 +2013,6,21,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1035,-3,0,1350,-10,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-5,0,2332,-7,0,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,9,0,1639,9,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,0,0,1151,-29,0,0 +2013,9,14,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,-8,0,650,-14,0,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,-4,0,943,-4,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,-1,0,1652,1,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-1,0,1005,17,1,0 +2013,6,2,7,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,2000,164,1,2105,168,1,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1240,-1,0,1340,-5,0,0 +2013,10,7,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,854,25,1,1213,8,0,0 +2013,5,11,6,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,0,,1802,0,1,1 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,655,2,0,1225,-7,0,0 +2013,4,30,2,9E,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-10,0,2031,-35,0,0 +2013,7,13,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,68,1,1740,82,1,0 +2013,9,15,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,6,0,1930,10,0,0 +2013,6,4,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-2,0,1020,-7,0,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1425,5,0,2025,-6,0,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1435,20,1,1735,-11,0,0 +2013,10,24,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1335,1,0,1455,4,0,0 +2013,10,25,5,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1338,81,1,1508,97,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-1,0,847,2,0,0 +2013,7,1,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,300,41,1,658,36,1,0 +2013,5,31,5,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1701,0,0,1803,-4,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1545,8,0,1850,62,1,0 +2013,4,9,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1140,1,0,1310,-19,0,0 +2013,10,1,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1100,-7,0,1225,-5,0,0 +2013,4,14,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1823,25,1,2054,27,1,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,959,7,0,1458,6,0,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1828,-5,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1505,-6,0,1845,-8,0,0 +2013,4,1,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1328,0,0,1836,-20,0,0 +2013,4,13,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1719,0,0,115,-25,0,0 +2013,7,30,2,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1650,3,0,1925,-5,0,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,110,1,2325,91,1,0 +2013,9,7,6,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,730,17,1,1009,29,1,0 +2013,9,23,1,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,650,-3,0,1043,-21,0,0 +2013,7,30,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1603,3,0,2159,-33,0,0 +2013,10,30,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1150,51,1,1410,44,1,0 +2013,4,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1625,2,0,1755,0,0,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-5,0,1146,-5,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-4,0,2152,1,0,0 +2013,6,18,2,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1320,12,0,1410,5,0,0 +2013,5,30,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1710,52,1,1811,44,1,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1003,-3,0,1341,-18,0,0 +2013,7,12,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1654,1,0,1909,-18,0,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1710,-1,0,1830,62,1,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,1,0,1253,-5,0,0 +2013,6,3,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,3,0,2030,-10,0,0 +2013,5,31,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1012,-3,0,1315,-7,0,0 +2013,6,19,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1630,18,1,1805,10,0,0 +2013,6,23,7,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1815,13,0,2020,4,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,825,14,0,1045,20,1,0 +2013,7,15,1,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,-7,0,842,-19,0,0 +2013,6,5,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,-3,0,2255,-6,0,0 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,550,1,0,710,-6,0,0 +2013,8,12,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,845,-6,0,1257,-7,0,0 +2013,4,8,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,545,-3,0,649,-11,0,0 +2013,6,8,6,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,2,0,2015,2,0,0 +2013,10,5,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,12,0,1700,12,0,0 +2013,5,18,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1047,8,0,1929,5,0,0 +2013,5,5,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1140,-8,0,1419,-10,0,0 +2013,6,21,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1830,1,0,1925,-11,0,0 +2013,7,27,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,726,27,1,944,14,0,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1015,14,0,1230,7,0,0 +2013,4,10,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,137,1,1630,148,1,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1445,7,0,1610,-4,0,0 +2013,7,21,7,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1725,39,1,1941,39,1,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1455,128,1,1605,130,1,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1925,19,1,2042,9,0,0 +2013,10,7,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,22,1,635,13,0,0 +2013,9,8,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,956,-7,0,1140,0,0,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1551,-5,0,1748,-15,0,0 +2013,7,14,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,31,1,857,40,1,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,905,-7,0,1734,-16,0,0 +2013,10,25,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,530,-2,0,853,-9,0,0 +2013,4,1,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-5,0,1505,-1,0,0 +2013,10,12,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,47,1,1535,32,1,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1255,-8,0,1726,-6,0,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-9,0,1807,-7,0,0 +2013,8,10,6,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,910,128,1,1145,132,1,0 +2013,9,15,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,724,-7,0,920,-2,0,0 +2013,8,9,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1420,38,1,1643,38,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2005,-2,0,2154,-31,0,0 +2013,8,5,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,908,29,1,1200,31,1,0 +2013,10,24,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1829,-1,0,2100,-4,0,0 +2013,5,6,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1315,11,0,1430,9,0,0 +2013,8,14,3,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,815,-2,0,1017,-4,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-5,0,935,5,0,0 +2013,10,30,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-10,0,643,-25,0,0 +2013,10,20,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,23,1,2230,13,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1925,111,1,2050,161,1,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1046,-3,0,1230,-10,0,0 +2013,5,24,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,12,0,1008,23,1,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,1,0,1832,1,0,0 +2013,7,23,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,39,1,2223,47,1,0 +2013,7,25,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1149,21,1,1400,21,1,0 +2013,10,6,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,20,1,1705,21,1,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,213,1,1410,209,1,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1700,-1,0,1830,27,1,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2055,17,1,2320,23,1,0 +2013,7,28,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-3,0,932,-5,0,0 +2013,6,10,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-9,0,1815,14,0,0 +2013,7,22,1,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,58,1,2010,52,1,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2205,1,0,2335,3,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,42,1,1902,19,1,0 +2013,7,12,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,725,-6,0,1130,-25,0,0 +2013,9,11,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,0,0,1330,-12,0,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,955,8,0,1310,4,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2015,9,0,2230,6,0,0 +2013,4,9,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,845,-3,0,1036,2,0,0 +2013,4,23,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,-9,0,930,-24,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1959,39,1,2237,0,0,0 +2013,8,3,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1035,-6,0,1135,-10,0,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,17,1,1633,22,1,0 +2013,8,24,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,-5,0,2314,-2,0,0 +2013,10,24,4,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,835,-3,0,1643,8,0,0 +2013,6,26,3,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,104,1,1515,103,1,0 +2013,5,13,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,930,0,0,946,9,0,0 +2013,4,20,6,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1811,-2,0,1931,-3,0,0 +2013,5,28,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,-2,0,2035,6,0,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,855,6,0,1020,9,0,0 +2013,4,1,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,745,-1,0,850,-12,0,0 +2013,5,2,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1016,-1,0,1220,1,0,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1005,3,0,1130,-1,0,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,23,1,1231,37,1,0 +2013,8,13,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,28,1,1535,23,1,0 +2013,7,23,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1210,128,1,1350,211,1,0 +2013,7,13,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,21,1,1705,16,1,0 +2013,4,11,4,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1200,86,1,1350,76,1,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1307,-3,0,1428,2,0,0 +2013,8,13,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,712,-2,0,836,-18,0,0 +2013,4,3,3,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1920,-7,0,2048,-6,0,0 +2013,6,16,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,2,0,2025,-1,0,0 +2013,6,15,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,2,0,944,8,0,0 +2013,4,7,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1217,-8,0,1459,-19,0,0 +2013,4,28,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2345,41,1,545,37,1,0 +2013,8,10,6,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1415,-7,0,1544,-3,0,0 +2013,10,9,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1610,20,1,1645,18,1,0 +2013,8,22,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-10,0,1750,-25,0,0 +2013,5,26,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,643,0,0,946,-24,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1950,-3,0,2115,15,1,0 +2013,7,12,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1828,27,1,2035,33,1,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1755,-1,0,1840,-7,0,0 +2013,4,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1350,-1,0,1450,-4,0,0 +2013,9,4,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1630,-5,0,1730,-9,0,0 +2013,5,17,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-4,0,1904,-13,0,0 +2013,8,15,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1955,56,1,2229,52,1,0 +2013,5,19,7,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1126,0,0,1354,14,0,0 +2013,9,12,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1235,2,0,1345,-16,0,0 +2013,5,22,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1108,-13,0,0 +2013,6,23,7,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,171,1,2126,163,1,0 +2013,8,21,3,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,1,0,1340,-28,0,0 +2013,5,7,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-3,0,2305,-5,0,0 +2013,6,5,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,920,-7,0,0 +2013,9,1,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1359,139,1,2210,116,1,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,-5,0,954,-11,0,0 +2013,10,20,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1153,-7,0,1333,-33,0,0 +2013,6,21,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,-12,0,2340,10,0,0 +2013,5,14,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,17,-5,0,522,1,0,0 +2013,5,23,4,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,800,-9,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1407,0,0,1614,-19,0,0 +2013,5,19,7,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,845,-4,0,1035,-31,0,0 +2013,7,15,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-2,0,1352,1,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,27,1,2315,26,1,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1940,-2,0,2210,-14,0,0 +2013,5,29,3,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,805,-1,0,1020,-16,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1755,-2,0,1935,-17,0,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1230,35,1,1555,39,1,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,72,1,1928,57,1,0 +2013,6,2,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1620,-3,0,1910,-24,0,0 +2013,9,10,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-5,0,1715,-3,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1955,-1,0,2220,-3,0,0 +2013,7,3,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1425,-5,0,1630,-18,0,0 +2013,5,2,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,-8,0,1632,-21,0,0 +2013,8,3,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1850,0,0,2108,6,0,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1729,-1,0,1929,-33,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1205,17,1,1530,-3,0,0 +2013,5,1,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1120,-8,0,1210,-5,0,0 +2013,9,20,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,12,0,1955,-6,0,0 +2013,5,1,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-4,0,915,-14,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,41,1,1325,34,1,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,842,64,1,1054,38,1,0 +2013,9,2,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-5,0,1524,-7,0,0 +2013,9,12,4,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,1,0,1945,15,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1030,7,0,1145,-16,0,0 +2013,9,2,1,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1810,16,1,1940,-3,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2250,-7,0,2359,-6,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2056,14,0,2222,7,0,0 +2013,9,28,6,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1800,2,0,1940,3,0,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2035,37,1,2201,6,0,0 +2013,6,25,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1142,-2,0,1424,-5,0,0 +2013,4,29,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2150,8,0,2300,15,1,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1630,16,1,1910,1,0,0 +2013,6,13,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1830,32,1,2015,95,1,0 +2013,7,27,6,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1525,-1,0,1605,5,0,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-7,0,1225,-13,0,0 +2013,10,3,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1157,4,0,1446,-16,0,0 +2013,10,12,6,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-5,0,1050,-20,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1636,23,1,1915,3,0,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,0,0,2110,-23,0,0 +2013,7,2,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,-1,0,1015,14,0,0 +2013,4,15,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,54,1,1755,54,1,0 +2013,6,19,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-6,0,800,-26,0,0 +2013,9,24,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,800,7,0,900,-12,0,0 +2013,4,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,745,-4,0,915,-13,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-1,0,923,4,0,0 +2013,9,8,7,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1030,-19,0,0 +2013,5,20,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1000,-9,0,1254,15,1,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-7,0,2308,-14,0,0 +2013,4,8,1,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-2,0,745,1,0,0 +2013,4,12,5,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1930,-2,0,2300,-12,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1220,-6,0,1946,3,0,0 +2013,10,2,3,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,-8,0,1955,-24,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1743,65,1,1933,31,1,0 +2013,8,11,7,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,757,11,0,1306,4,0,0 +2013,10,6,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1440,-3,0,1715,-4,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1652,-5,0,1815,-18,0,0 +2013,5,1,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-2,0,1456,19,1,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2035,-5,0,2315,-9,0,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1211,-19,0,0 +2013,4,11,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1120,54,1,1512,59,1,0 +2013,7,1,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,635,-14,0,745,-11,0,0 +2013,7,17,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,30,1,1211,31,1,0 +2013,6,3,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,949,2,0,1112,-14,0,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1019,-3,0,1542,-13,0,0 +2013,7,5,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1635,0,0,1832,-12,0,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,24,1,2310,26,1,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1102,14,0,1635,25,1,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2020,7,0,2325,-2,0,0 +2013,5,17,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1431,-7,0,1558,-14,0,0 +2013,10,1,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1752,-2,0,1914,0,0,0 +2013,6,29,6,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,723,24,1,928,12,0,0 +2013,10,24,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1835,0,0,1945,14,0,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1220,-7,0,1432,-9,0,0 +2013,7,27,6,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1705,-2,0,1843,35,1,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-5,0,2138,-19,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1921,-2,0,2019,-32,0,0 +2013,8,22,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,625,-9,0,803,-19,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,6,0,1945,11,0,0 +2013,10,11,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,6,0,1823,4,0,0 +2013,4,14,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-3,0,1822,0,0,0 +2013,5,10,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,0,0,2150,-13,0,0 +2013,9,2,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1428,222,1,1548,250,1,0 +2013,7,14,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,51,1,1526,58,1,0 +2013,10,3,4,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,640,-1,0,805,-8,0,0 +2013,4,1,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,1208,0,0,0 +2013,4,5,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1301,7,0,1814,-11,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,940,11,0,1155,1,0,0 +2013,7,17,3,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-7,0,800,-13,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,710,0,0,1111,4,0,0 +2013,8,11,7,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,710,0,0,855,-3,0,0 +2013,10,5,6,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1300,18,1,1600,11,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2113,8,0,21,-34,0,0 +2013,4,9,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1548,53,1,1750,51,1,0 +2013,4,24,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,4,0,821,0,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1715,-1,0,1820,-14,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,-3,0,2212,4,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1715,-3,0,1839,-8,0,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,750,0,0,910,-7,0,0 +2013,9,4,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1000,-4,0,1135,-8,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-6,0,1807,-6,0,0 +2013,10,9,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,-2,0,1410,-17,0,0 +2013,6,29,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,5,0,1237,32,1,0 +2013,5,12,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,846,0,0,1038,-6,0,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-3,0,1349,-5,0,0 +2013,8,26,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1800,-9,0,1905,8,0,0 +2013,9,15,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1855,7,0,2000,5,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-2,0,1039,-4,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2250,96,1,36,91,1,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1454,23,1,2304,0,0,0 +2013,9,7,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-10,0,1725,-33,0,0 +2013,7,13,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1155,-3,0,1310,0,0,0 +2013,10,5,6,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-3,0,1650,-17,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1505,-5,0,1845,-2,0,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,932,20,1,1025,18,1,0 +2013,5,7,2,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-8,0,802,0,0,0 +2013,9,20,5,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-2,0,1600,-17,0,0 +2013,9,12,4,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,3,0,800,1,0,0 +2013,5,6,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,2,0,2015,0,0,0 +2013,6,7,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1037,-7,0,1134,0,0,0 +2013,4,27,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,606,-1,0,908,-24,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,8,0,1200,2,0,0 +2013,9,2,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1255,0,0,1505,-19,0,0 +2013,6,8,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-5,0,1758,-4,0,0 +2013,6,2,7,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1455,0,,1620,0,1,1 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1655,4,0,2230,12,0,0 +2013,4,9,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,700,0,,810,0,1,1 +2013,5,22,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,6,0,1900,31,1,0 +2013,7,3,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1436,20,1,1619,26,1,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1525,0,,1830,0,1,1 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-2,0,1310,-13,0,0 +2013,6,23,7,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2029,5,0,2359,33,1,0 +2013,7,5,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,-2,0,1112,-2,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1605,-2,0,1830,-20,0,0 +2013,10,21,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1828,-2,0,2351,8,0,0 +2013,8,27,2,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1000,-3,0,1110,-13,0,0 +2013,8,28,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1555,0,0,1705,2,0,0 +2013,6,18,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,948,-5,0,1040,6,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1405,27,1,1840,61,1,0 +2013,10,11,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1304,7,0,1410,13,0,0 +2013,7,16,2,EV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,803,-1,0,959,-2,0,0 +2013,9,18,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1243,-2,0,1352,3,0,0 +2013,4,19,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,11,0,2235,8,0,0 +2013,10,18,5,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-2,0,1558,15,1,0 +2013,9,12,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2153,-7,0,2241,-18,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,948,-10,0,0 +2013,9,16,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-3,0,1417,-16,0,0 +2013,9,2,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,5,0,1358,3,0,0 +2013,5,29,3,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-6,0,2015,-21,0,0 +2013,7,5,5,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,-6,0,1144,-3,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1640,5,0,1740,-6,0,0 +2013,8,14,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1030,-1,0,1142,11,0,0 +2013,10,17,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1108,18,1,1255,13,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1425,0,0,1635,1,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1938,-2,0,2125,-9,0,0 +2013,10,10,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2125,17,1,2215,4,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,-3,0,825,-11,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2004,50,1,2135,53,1,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,-2,0,1205,-19,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1155,-1,0,2035,-17,0,0 +2013,5,13,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1755,22,1,1925,16,1,0 +2013,6,29,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1500,63,1,1635,63,1,0 +2013,7,26,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1241,-8,0,0 +2013,7,14,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,715,-1,0,1010,-13,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,901,0,0,1158,7,0,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1215,5,0,1815,1,0,0 +2013,10,12,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2015,-5,0,2320,-13,0,0 +2013,6,20,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-2,0,1616,-12,0,0 +2013,5,24,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,-1,0,1110,-1,0,0 +2013,4,12,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,36,1,1450,24,1,0 +2013,10,28,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-12,0,840,3,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2100,178,1,2227,157,1,0 +2013,5,8,3,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1650,-22,0,0 +2013,4,24,3,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1049,8,0,1225,9,0,0 +2013,6,23,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,700,4,0,1258,5,0,0 +2013,5,3,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,-5,0,1900,-2,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1725,0,0,55,-11,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1830,-2,0,2050,-19,0,0 +2013,9,12,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1657,0,0,1805,-2,0,0 +2013,5,4,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-4,0,1006,-25,0,0 +2013,4,22,1,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1235,-6,0,1325,-8,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1531,64,1,1915,42,1,0 +2013,8,8,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1458,254,1,1943,242,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-4,0,1302,-1,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1911,-1,0,2212,-6,0,0 +2013,9,21,6,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1119,5,0,1827,10,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1011,6,0,1256,21,1,0 +2013,9,26,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1905,44,1,2015,49,1,0 +2013,8,29,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-4,0,1938,2,0,0 +2013,6,11,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,10,0,950,-2,0,0 +2013,6,4,2,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1051,-5,0,1822,-13,0,0 +2013,8,6,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,7,0,1359,-11,0,0 +2013,8,29,4,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,932,-9,0,1123,-15,0,0 +2013,7,28,7,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,2,0,1133,8,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,10,0,2330,-9,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,7,0,2045,5,0,0 +2013,8,28,3,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,735,-2,0,1605,-25,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1750,2,0,1915,-3,0,0 +2013,7,7,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,852,-6,0,941,-11,0,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1905,9,0,2209,17,1,0 +2013,7,6,6,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-6,0,1305,-8,0,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2130,-2,0,2350,4,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,820,-1,0,938,-14,0,0 +2013,8,22,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-5,0,1337,-8,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2250,25,1,32,7,0,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1730,7,0,1901,0,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,1,0,614,8,0,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1010,0,0,1441,-10,0,0 +2013,4,10,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-7,0,922,-14,0,0 +2013,6,21,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,1,0,1655,1,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2258,-5,0,110,-29,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1959,-4,0,2159,-22,0,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,849,-3,0,1634,-19,0,0 +2013,10,1,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2025,-5,0,2045,-11,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,2015,-1,0,2111,-2,0,0 +2013,7,18,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,3,0,1857,13,0,0 +2013,7,20,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1355,12,0,1552,2,0,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-3,0,1320,16,1,0 +2013,4,6,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,-2,0,1410,-21,0,0 +2013,6,18,2,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,25,1,1950,10,0,0 +2013,8,10,6,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1058,-10,0,1352,-15,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2055,1,0,5,-7,0,0 +2013,8,29,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,32,1,1954,4,0,0 +2013,8,24,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,848,-5,0,922,-4,0,0 +2013,8,11,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1622,-9,0,1756,-19,0,0 +2013,10,2,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,840,0,0,950,-3,0,0 +2013,4,8,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,-3,0,2130,0,0,0 +2013,6,30,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,-1,0,1155,-2,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1215,-6,0,1404,-20,0,0 +2013,6,4,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2013,-5,0,2030,-11,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1200,3,0,1315,-8,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,855,-3,0,1158,-12,0,0 +2013,10,20,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,1330,2,0,1720,13,0,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-2,0,940,-9,0,0 +2013,5,18,6,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1645,-2,0,2003,-6,0,0 +2013,4,15,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,8,0,1207,8,0,0 +2013,6,23,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,722,-12,0,0 +2013,7,21,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,630,6,0,916,-17,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,941,-2,0,1549,4,0,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2010,60,1,2145,56,1,0 +2013,5,1,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,-10,0,1505,-9,0,0 +2013,10,22,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,3,0,1945,-2,0,0 +2013,4,4,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1958,-24,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-5,0,1006,-34,0,0 +2013,7,4,4,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,810,-1,0,950,-2,0,0 +2013,6,30,7,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,930,-1,0,1127,-8,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,-5,0,2349,-1,0,0 +2013,10,12,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,835,-3,0,1030,-29,0,0 +2013,5,2,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1536,5,0,1559,-3,0,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1501,25,1,1809,51,1,0 +2013,7,3,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,645,-6,0,1435,8,0,0 +2013,4,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2100,112,1,2316,90,1,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1343,-3,0,1701,15,1,0 +2013,8,1,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1759,27,1,1948,11,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,830,-7,0,932,-17,0,0 +2013,4,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-6,0,1210,3,0,0 +2013,4,6,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,600,-3,0,900,-8,0,0 +2013,6,30,7,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-5,0,830,-19,0,0 +2013,6,21,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-3,0,841,-11,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2155,65,1,2300,77,1,0 +2013,7,17,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-5,0,1222,-17,0,0 +2013,6,14,5,9E,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1935,44,1,2119,37,1,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,615,-3,0,745,-17,0,0 +2013,6,12,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,810,-9,0,830,-24,0,0 +2013,9,21,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,0,0,924,3,0,0 +2013,7,2,2,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,29,1,2115,20,1,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,5,0,1630,15,1,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,22,1,1155,17,1,0 +2013,7,23,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-6,0,1340,-14,0,0 +2013,7,7,7,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1850,4,0,2035,0,0,0 +2013,5,30,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-2,0,1655,-9,0,0 +2013,4,13,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-3,0,1236,-11,0,0 +2013,9,15,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1356,-4,0,1453,-1,0,0 +2013,9,21,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,3,0,1918,18,1,0 +2013,8,14,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1800,45,1,2035,41,1,0 +2013,9,21,6,YV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,812,-6,0,921,-17,0,0 +2013,6,24,1,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1420,372,1,1714,375,1,0 +2013,7,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1645,-1,0,1709,-9,0,0 +2013,5,5,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1020,16,1,1530,23,1,0 +2013,7,27,6,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,34,1,1940,57,1,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,-2,0,2322,17,1,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,901,-7,0,1106,-22,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1630,62,1,1954,36,1,0 +2013,6,6,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,21,1,2033,15,1,0 +2013,5,13,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-10,0,1818,-9,0,0 +2013,5,7,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,835,-12,0,0 +2013,5,18,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1358,17,1,1421,5,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1925,12,0,2354,16,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1630,-2,0,1820,-5,0,0 +2013,5,8,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,745,-17,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,1,0,1330,-17,0,0 +2013,9,6,5,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1344,1,0,1519,-12,0,0 +2013,5,27,1,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,4,0,1613,7,0,0 +2013,9,24,2,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,1,0,2050,-29,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1105,8,0,1150,9,0,0 +2013,9,11,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1500,-1,0,1615,-6,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1635,34,1,1845,28,1,0 +2013,9,30,1,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1600,-7,0,1906,-8,0,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,-4,0,1445,-18,0,0 +2013,6,16,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,21,1,2040,20,1,0 +2013,7,28,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,815,-2,0,935,-6,0,0 +2013,9,12,4,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2305,115,1,728,112,1,0 +2013,10,29,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1800,16,1,2040,-3,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1056,3,0,1151,3,0,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1655,17,1,2000,14,0,0 +2013,10,29,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,8,0,904,11,0,0 +2013,9,7,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-4,0,1635,-16,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1315,-4,0,1457,-11,0,0 +2013,5,9,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,15,1,1800,6,0,0 +2013,8,13,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1735,35,1,1825,50,1,0 +2013,9,15,7,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1925,-2,0,2112,-12,0,0 +2013,5,29,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2051,31,1,2215,28,1,0 +2013,9,15,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1727,8,0,1949,-11,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1015,-5,0,1348,-16,0,0 +2013,8,23,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1955,-6,0,2024,-21,0,0 +2013,6,8,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1230,5,0,1335,9,0,0 +2013,4,24,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,-8,0,1619,-20,0,0 +2013,7,12,5,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-4,0,2111,-13,0,0 +2013,9,11,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1105,-5,0,1126,-11,0,0 +2013,6,2,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,122,1,1450,122,1,0 +2013,4,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,0,,919,0,1,1 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1754,16,1,1907,16,1,0 +2013,5,29,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,2100,114,1,2335,111,1,0 +2013,6,5,3,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,58,1,2255,55,1,0 +2013,7,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2059,-3,0,2257,-5,0,0 +2013,9,1,7,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1230,-6,0,1514,-1,0,0 +2013,4,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1006,-8,0,1118,-16,0,0 +2013,9,13,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2013,78,1,2142,65,1,0 +2013,7,19,5,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,0,0,805,-3,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1559,0,0,1850,-18,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1730,14,0,2009,0,0,0 +2013,9,23,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1930,-4,0,2137,-12,0,0 +2013,10,15,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,-3,0,1804,29,1,0 +2013,8,15,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1250,12,0,1355,2,0,0 +2013,10,7,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,945,-4,0,1137,-5,0,0 +2013,10,9,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-10,0,1750,4,0,0 +2013,7,25,4,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1520,-3,0,1628,-15,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,24,1,2255,14,0,0 +2013,5,31,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1844,-2,0,2028,-24,0,0 +2013,6,12,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,-1,0,2310,-1,0,0 +2013,9,19,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1114,0,,1329,0,1,1 +2013,9,20,5,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-4,0,900,15,1,0 +2013,8,6,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1030,-2,0,1248,-6,0,0 +2013,6,22,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1400,29,1,1545,15,1,0 +2013,7,25,4,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,707,-7,0,924,-9,0,0 +2013,6,19,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-1,0,1627,-23,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,650,-2,0,810,-18,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1208,-1,0,1405,4,0,0 +2013,6,24,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,748,9,0,847,-6,0,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,3,0,1713,4,0,0 +2013,8,27,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1800,-4,0,1925,-1,0,0 +2013,4,3,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1731,63,1,1932,42,1,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,41,1,1335,35,1,0 +2013,6,11,2,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1508,-5,0,1625,-9,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,6,0,1000,9,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,5,0,1541,-1,0,0 +2013,6,24,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-6,0,1407,11,0,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1845,-5,0,2101,12,0,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,835,4,0,1005,2,0,0 +2013,8,25,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-2,0,1709,-4,0,0 +2013,7,16,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-9,0,912,5,0,0 +2013,9,8,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-7,0,1853,-5,0,0 +2013,4,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1232,4,0,1553,-6,0,0 +2013,9,6,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,11,0,2104,13,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,26,1,1313,21,1,0 +2013,9,14,6,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,650,-6,0,1044,-7,0,0 +2013,6,22,6,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-7,0,945,-20,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1757,7,0,2004,13,0,0 +2013,7,29,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-9,0,1159,-7,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,747,-3,0,917,-12,0,0 +2013,4,19,5,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1221,-3,0,1625,-7,0,0 +2013,7,11,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-3,0,1805,4,0,0 +2013,10,30,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1317,-7,0,1439,-14,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1511,-4,0,2357,-4,0,0 +2013,7,7,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,2,0,1715,-7,0,0 +2013,8,9,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2030,77,1,2130,73,1,0 +2013,10,25,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,4,0,2154,-14,0,0 +2013,10,24,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-5,0,2041,-11,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,640,0,0,755,-5,0,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1145,-2,0,1355,-11,0,0 +2013,10,7,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,745,-5,0,1029,-3,0,0 +2013,5,24,5,EV,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,14,0,2228,5,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-3,0,1013,-16,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1520,24,1,1758,55,1,0 +2013,9,27,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1820,9,0,2000,17,1,0 +2013,8,16,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,3,0,2215,9,0,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1405,17,1,1605,10,0,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1320,1,0,1410,4,0,0 +2013,7,16,2,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-8,0,1535,-8,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,61,1,27,54,1,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1035,-1,0,1202,4,0,0 +2013,6,1,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1221,-6,0,1509,12,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,9,0,2350,30,1,0 +2013,8,24,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,700,-9,0,840,-15,0,0 +2013,8,2,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1110,-3,0,1413,-27,0,0 +2013,5,31,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1823,4,0,2123,-3,0,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,707,-1,0,938,0,0,0 +2013,7,27,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1930,-3,0,2222,-21,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1355,32,1,1625,17,1,0 +2013,9,1,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1729,-7,0,1938,-15,0,0 +2013,5,10,5,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1706,-11,0,2025,-12,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1830,181,1,1955,172,1,0 +2013,4,25,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-4,0,735,-5,0,0 +2013,9,20,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1515,123,1,1628,136,1,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,-9,0,1208,-25,0,0 +2013,9,14,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-4,0,1030,-13,0,0 +2013,7,14,7,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,0,0,2215,10,0,0 +2013,8,12,1,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1615,14,0,1825,3,0,0 +2013,8,9,5,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1910,-2,0,1935,14,0,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,620,18,1,730,16,1,0 +2013,4,9,2,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1220,-3,0,1335,-15,0,0 +2013,8,10,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-9,0,1405,-19,0,0 +2013,8,23,5,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1044,-2,0,1215,-17,0,0 +2013,6,10,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,-2,0,1140,-8,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2200,15,1,2320,23,1,0 +2013,5,13,1,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1635,6,0,1926,-2,0,0 +2013,4,4,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2150,7,0,2310,3,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1935,-4,0,2325,-5,0,0 +2013,6,5,3,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1548,-5,0,1630,-2,0,0 +2013,7,26,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,46,1,2320,28,1,0 +2013,7,28,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1323,21,1,2154,11,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1701,-7,0,2301,16,1,0 +2013,6,26,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1703,93,1,1850,79,1,0 +2013,7,19,5,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1007,-2,0,1105,-12,0,0 +2013,4,9,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,53,1,1710,55,1,0 +2013,6,7,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1100,-3,0,1245,-13,0,0 +2013,8,29,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1449,-2,0,1750,-34,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,940,6,0,1100,-7,0,0 +2013,9,25,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,4,0,1940,5,0,0 +2013,7,25,4,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,0,0,725,-3,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,1,0,1745,-4,0,0 +2013,6,27,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,751,-16,0,0 +2013,4,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,12,0,2125,8,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2109,105,1,2322,138,1,0 +2013,9,1,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-4,0,1320,-7,0,0 +2013,7,25,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-6,0,1211,-5,0,0 +2013,6,15,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,622,-3,0,754,-16,0,0 +2013,7,8,1,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,10,0,1913,0,0,0 +2013,7,26,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1802,135,1,1915,135,1,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,2,0,1635,-3,0,0 +2013,9,28,6,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1200,13,0,1500,12,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,9,0,1014,25,1,0 +2013,10,3,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,858,-9,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2000,9,0,20,9,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1939,79,1,2108,65,1,0 +2013,10,29,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,600,17,1,900,-9,0,0 +2013,8,30,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,940,-1,0,1110,-4,0,0 +2013,6,13,4,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1746,124,1,1911,151,1,0 +2013,6,18,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-4,0,1408,-7,0,0 +2013,5,9,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,0,0,804,11,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,35,1,1827,32,1,0 +2013,5,23,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1304,-1,0,1437,2,0,0 +2013,8,17,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1033,0,0,1403,0,0,0 +2013,10,7,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1237,-9,0,1345,-13,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,843,-1,0,1117,3,0,0 +2013,4,25,4,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1620,-3,0,2031,17,1,0 +2013,5,12,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-7,0,2046,-14,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1000,-1,0,1209,-3,0,0 +2013,7,16,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1310,9,0,1603,5,0,0 +2013,9,8,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,900,-5,0,915,-12,0,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1000,-1,0,1532,-8,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1720,35,1,1845,32,1,0 +2013,5,21,2,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,-5,0,1335,-11,0,0 +2013,7,17,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,647,-8,0,816,-18,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-5,0,847,4,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,730,-3,0,1320,-3,0,0 +2013,4,27,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,15,1,1350,0,1,1 +2013,9,4,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,758,-8,0,0 +2013,8,15,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,1,0,1540,0,0,0 +2013,8,26,1,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-2,0,1526,-13,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1133,-7,0,1417,-20,0,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1620,-3,0,1740,-23,0,0 +2013,9,8,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1637,-4,0,1930,-11,0,0 +2013,7,25,4,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-7,0,810,-9,0,0 +2013,6,9,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,6,0,808,-8,0,0 +2013,9,12,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1545,25,1,1650,98,1,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1245,3,0,1840,-14,0,0 +2013,4,6,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1855,0,0,2218,-19,0,0 +2013,4,2,2,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1300,-3,0,1542,7,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,-1,0,2040,-5,0,0 +2013,7,8,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1150,32,1,1800,33,1,0 +2013,5,17,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,710,-4,0,850,-1,0,0 +2013,10,7,1,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1015,0,0,1455,1,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,839,-1,0,1007,-12,0,0 +2013,6,29,6,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1405,5,0,1455,3,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1715,-3,0,2020,-7,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,5,0,919,-7,0,0 +2013,6,4,2,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,185,1,1803,179,1,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1938,-4,0,2329,-30,0,0 +2013,8,7,3,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,0,0,1842,-8,0,0 +2013,10,7,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1140,-1,0,1405,4,0,0 +2013,9,8,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-10,0,1100,-4,0,0 +2013,10,5,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1955,11,0,2220,8,0,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1205,13,0,1515,3,0,0 +2013,9,28,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,2,0,1313,4,0,0 +2013,8,28,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1320,10,0,1905,-2,0,0 +2013,5,21,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2259,-1,0,609,-9,0,0 +2013,6,4,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,37,1,1635,27,1,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2305,-5,0,2359,-9,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1550,37,1,1655,43,1,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,14,0,1306,13,0,0 +2013,8,9,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,-7,0,1945,-8,0,0 +2013,8,28,3,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,755,-1,0,855,-1,0,0 +2013,9,2,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,630,-7,0,847,-18,0,0 +2013,6,24,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1925,110,1,2245,103,1,0 +2013,10,25,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1710,-2,0,1940,-11,0,0 +2013,7,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1621,181,1,1714,175,1,0 +2013,6,14,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1525,-2,0,1627,-2,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-3,0,2238,-6,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,601,3,0,1030,-6,0,0 +2013,9,6,5,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1600,-10,0,1700,-25,0,0 +2013,6,4,2,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,935,-3,0,1155,-23,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,630,-6,0,1015,1,0,0 +2013,6,23,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,121,1,1012,103,1,0 +2013,6,6,4,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2012,-4,0,2300,-8,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1010,4,0,1125,-2,0,0 +2013,8,30,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1310,0,0,1420,-2,0,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,731,-1,0,1110,-11,0,0 +2013,5,8,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,3,0,2055,-2,0,0 +2013,9,6,5,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,2023,0,0,2257,-12,0,0 +2013,8,16,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-9,0,733,-6,0,0 +2013,6,15,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1640,-6,0,1915,-15,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1845,30,1,2010,25,1,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,850,2,0,1015,2,0,0 +2013,10,10,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1803,-3,0,1959,-2,0,0 +2013,4,27,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1530,-8,0,1732,-6,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1100,-2,0,1430,3,0,0 +2013,7,15,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,800,-13,0,0 +2013,7,6,6,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1655,-3,0,2004,-8,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1345,51,1,1605,44,1,0 +2013,10,26,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1115,-2,0,1949,12,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1459,0,0,1658,-9,0,0 +2013,10,19,6,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1217,-4,0,1458,1,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1953,59,1,2308,36,1,0 +2013,10,24,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2045,-3,0,2159,-6,0,0 +2013,9,20,5,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,1,0,2035,-3,0,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,8,0,1620,-8,0,0 +2013,4,4,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1810,-5,0,1937,-10,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,-2,0,1750,-15,0,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,0,,1216,0,1,1 +2013,9,12,4,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,950,0,0,1049,22,1,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,90,1,1930,95,1,0 +2013,4,7,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1730,108,1,2028,95,1,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,830,-4,0,1001,-1,0,0 +2013,10,30,3,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1555,4,0,1740,-6,0,0 +2013,7,25,4,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,955,1,0,1130,-6,0,0 +2013,4,12,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-3,0,1610,0,0,0 +2013,7,7,7,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1505,-8,0,1749,59,1,0 +2013,10,18,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1335,0,0,1500,-12,0,0 +2013,10,6,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-1,0,613,1,0,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1335,-7,0,1820,2,0,0 +2013,5,7,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1058,-3,0,0 +2013,6,7,5,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-10,0,1613,-11,0,0 +2013,5,17,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1940,17,1,2050,7,0,0 +2013,5,16,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1810,48,1,2125,54,1,0 +2013,9,28,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1235,-6,0,1443,-31,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1447,1,0,1609,1,0,0 +2013,6,30,7,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-4,0,1214,-15,0,0 +2013,5,14,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1248,12,0,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1758,16,1,2030,-3,0,0 +2013,10,20,7,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,-4,0,556,-26,0,0 +2013,5,14,2,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2120,-3,0,2340,-7,0,0 +2013,5,3,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,-7,0,1733,-23,0,0 +2013,4,26,5,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-4,0,1839,13,0,0 +2013,7,4,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,710,-5,0,939,-7,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,8,0,1814,9,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,4,0,1130,0,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1552,7,0,1739,-5,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1926,131,1,2157,128,1,0 +2013,7,17,3,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1255,0,0,1430,-23,0,0 +2013,6,26,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1049,21,1,1140,16,1,0 +2013,9,4,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,600,-5,0,758,-13,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,22,1,1131,30,1,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1900,25,1,2110,26,1,0 +2013,6,2,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1540,71,1,1650,92,1,0 +2013,7,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,31,1,1735,36,1,0 +2013,6,2,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,55,2,0,624,-8,0,0 +2013,4,2,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,640,-6,0,945,2,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,-3,0,2125,-19,0,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1459,35,1,1802,9,0,0 +2013,4,22,1,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-5,0,1051,1,0,0 +2013,9,7,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-2,0,1519,-9,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1135,9,0,1340,6,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1532,16,1,1900,-8,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,-9,0,1647,-19,0,0 +2013,8,21,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1005,2,0,0 +2013,8,12,1,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,-3,0,2133,-19,0,0 +2013,5,27,1,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,1,0,2015,-3,0,0 +2013,7,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1351,-5,0,1505,-12,0,0 +2013,5,17,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,530,-2,0,800,2,0,0 +2013,8,4,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-6,0,701,6,0,0 +2013,8,5,1,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2035,5,0,711,3,0,0 +2013,9,27,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1850,19,1,2205,16,1,0 +2013,9,7,6,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,650,-2,0,1030,-1,0,0 +2013,10,22,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,20,1,1910,5,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,55,1,2035,63,1,0 +2013,6,30,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2005,42,1,2024,61,1,0 +2013,5,3,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1850,-2,0,2259,-28,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,845,-5,0,953,-6,0,0 +2013,8,7,3,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1515,234,1,2043,235,1,0 +2013,7,15,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,-2,0,2325,-6,0,0 +2013,10,11,5,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1627,-8,0,1905,-13,0,0 +2013,7,26,5,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-7,0,2055,-6,0,0 +2013,5,3,5,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1135,-2,0,1320,-28,0,0 +2013,5,3,5,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1331,0,,1624,0,1,1 +2013,10,31,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,11,0,1825,14,0,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,0,0,1650,-7,0,0 +2013,9,7,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-3,0,1505,-18,0,0 +2013,7,8,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-10,0,2057,-10,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1600,11,0,1725,-4,0,0 +2013,4,15,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1159,9,0,2000,-24,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2015,-4,0,2132,12,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1740,3,0,1945,1,0,0 +2013,4,15,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1522,-2,0,1747,-4,0,0 +2013,6,8,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,950,18,1,1243,9,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-1,0,940,-13,0,0 +2013,9,5,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1512,-5,0,2119,-10,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1015,-4,0,1330,-7,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1325,-2,0,1550,-7,0,0 +2013,10,1,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,6,0,1725,-7,0,0 +2013,7,3,3,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,-4,0,928,-14,0,0 +2013,5,10,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-10,0,1427,-6,0,0 +2013,9,14,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,-11,0,2040,-31,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1850,-6,0,2003,-15,0,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1515,1,0,1905,-24,0,0 +2013,6,7,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,937,0,,1026,0,1,1 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,12,0,1945,-4,0,0 +2013,9,28,6,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-8,0,1028,-25,0,0 +2013,4,28,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,932,-3,0,1042,-4,0,0 +2013,8,29,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1925,19,1,2045,12,0,0 +2013,10,26,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1129,-7,0,1405,-8,0,0 +2013,10,12,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,14,0,1547,16,1,0 +2013,10,9,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,0,0,1910,-13,0,0 +2013,8,13,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,14,0,2030,1,0,0 +2013,10,11,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1235,36,1,1345,29,1,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,23,1,1355,11,0,0 +2013,6,29,6,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-8,0,1229,7,0,0 +2013,8,14,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,12,0,1213,6,0,0 +2013,8,13,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,30,14,0,810,12,0,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1910,-4,0,2135,-13,0,0 +2013,4,10,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,935,-9,0,1050,-17,0,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1635,0,0,1803,-10,0,0 +2013,5,10,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1530,-1,0,1647,-18,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,730,-1,0,835,-6,0,0 +2013,6,15,6,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1047,0,0,1155,-10,0,0 +2013,8,8,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,-7,0,923,21,1,0 +2013,6,30,7,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,-4,0,1400,-9,0,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,18,1,1014,-2,0,0 +2013,8,8,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1945,43,1,2105,47,1,0 +2013,6,25,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,8,0,1320,13,0,0 +2013,4,16,2,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,0,,500,0,1,1 +2013,5,21,2,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1027,41,1,1328,22,1,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-7,0,747,-5,0,0 +2013,4,16,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,-2,0,825,-8,0,0 +2013,10,19,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-4,0,641,-1,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1810,-1,0,2047,-38,0,0 +2013,10,31,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,4,0,2035,-2,0,0 +2013,5,17,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2140,2,0,2250,0,0,0 +2013,8,13,2,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,715,0,,852,0,1,1 +2013,4,22,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1556,-8,0,1654,0,0,0 +2013,7,30,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-2,0,1235,-21,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,3,0,1345,12,0,0 +2013,7,25,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-8,0,1538,-13,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1618,-1,0,1754,-9,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2206,36,1,2343,27,1,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1959,-1,0,2237,-22,0,0 +2013,10,12,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,848,-4,0,0 +2013,6,1,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,10,0,1612,15,1,0 +2013,8,20,2,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1500,24,1,1651,0,0,0 +2013,8,2,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,55,1,2020,38,1,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1940,20,1,2325,12,0,0 +2013,8,1,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,939,-7,0,1028,-5,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,-4,0,2214,-12,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,0,,1306,0,1,1 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,835,7,0,955,9,0,0 +2013,4,30,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1354,-2,0,1646,-11,0,0 +2013,4,6,6,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1910,-15,0,2105,-26,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,5,0,940,-6,0,0 +2013,7,30,2,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-4,0,717,-3,0,0 +2013,4,30,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1715,3,0,2045,-15,0,0 +2013,7,22,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1114,-1,0,1635,-20,0,0 +2013,8,19,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,725,-5,0,859,4,0,0 +2013,5,23,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1650,7,0,1910,-1,0,0 +2013,4,23,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2115,-7,0,545,-33,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,-1,0,1806,-6,0,0 +2013,7,8,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,9,0,1700,-4,0,0 +2013,8,11,7,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1715,-1,0,1840,0,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,900,29,1,1345,14,0,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,11,0,1800,8,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-3,0,849,1,0,0 +2013,5,29,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1020,0,0,1140,-7,0,0 +2013,10,5,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,813,4,0,1045,8,0,0 +2013,10,7,1,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,730,-6,0,1000,2,0,0 +2013,9,5,4,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,850,-4,0,1130,-13,0,0 +2013,7,2,2,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-3,0,2057,-1,0,0 +2013,5,9,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-5,0,2047,-15,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1850,6,0,2205,5,0,0 +2013,9,19,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,14,0,1620,21,1,0 +2013,8,22,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,83,1,2320,76,1,0 +2013,6,21,5,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-8,0,2055,-4,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-8,0,1428,-13,0,0 +2013,5,20,1,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1610,0,,1749,0,1,1 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-5,0,838,-10,0,0 +2013,7,13,6,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1058,53,1,1352,57,1,0 +2013,4,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1725,0,0,1851,30,1,0 +2013,4,19,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1250,2,0,1623,-17,0,0 +2013,7,29,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1458,30,1,1614,42,1,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1640,101,1,1832,115,1,0 +2013,5,21,2,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1026,88,1,1306,78,1,0 +2013,8,11,7,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1159,3,0,1753,-17,0,0 +2013,8,3,6,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,-2,0,559,-46,0,0 +2013,6,12,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-5,0,935,-7,0,0 +2013,10,30,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1001,-9,0,1323,-1,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-5,0,1010,7,0,0 +2013,9,29,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,0,,2105,0,1,1 +2013,10,27,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2055,173,1,2220,169,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1359,-3,0,1442,-5,0,0 +2013,4,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1100,2,0,1157,-4,0,0 +2013,10,28,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,545,-7,0,705,-21,0,0 +2013,5,27,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1305,-4,0,1545,-10,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1455,-2,0,1624,-10,0,0 +2013,4,13,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1649,-4,0,1815,-21,0,0 +2013,7,12,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-1,0,1647,-24,0,0 +2013,7,22,1,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-5,0,918,7,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1945,9,0,2050,3,0,0 +2013,6,14,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,-2,0,1513,3,0,0 +2013,7,19,5,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,850,5,0,1105,-12,0,0 +2013,6,3,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1716,-2,0,1840,-9,0,0 +2013,10,7,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,0,,1915,0,1,1 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2030,-3,0,2212,-16,0,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1521,109,1,1638,96,1,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1543,-4,0,1658,-20,0,0 +2013,7,15,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,730,-5,0,921,-9,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1140,41,1,1301,27,1,0 +2013,7,8,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-1,0,1001,-2,0,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,9,0,2335,5,0,0 +2013,6,2,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-6,0,1420,-6,0,0 +2013,6,7,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,-5,0,1410,-15,0,0 +2013,4,7,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,655,-6,0,735,-17,0,0 +2013,8,22,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,910,-1,0,1035,0,0,0 +2013,6,20,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1837,-3,0,2229,-8,0,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1355,-3,0,1659,86,1,0 +2013,5,10,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,645,-2,0,810,-9,0,0 +2013,5,27,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1345,-3,0,1510,-14,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1500,43,1,2030,51,1,0 +2013,10,13,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-5,0,1055,-13,0,0 +2013,4,30,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-6,0,1855,-2,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,66,1,2347,49,1,0 +2013,4,14,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,-5,0,920,15,1,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,22,1,2341,13,0,0 +2013,7,11,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1046,-8,0,1350,-27,0,0 +2013,7,31,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2128,-5,0,2200,-1,0,0 +2013,6,17,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1555,11,0,1710,6,0,0 +2013,10,29,2,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,848,20,1,1226,16,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1529,-2,0,1723,-6,0,0 +2013,5,29,3,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1949,-8,0,2100,-10,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,-4,0,2345,-9,0,0 +2013,6,20,4,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1031,21,1,1415,16,1,0 +2013,4,15,1,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-4,0,1105,-6,0,0 +2013,4,22,1,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,48,1,1505,34,1,0 +2013,8,7,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-4,0,727,-17,0,0 +2013,5,17,5,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1501,0,0,1820,-26,0,0 +2013,5,5,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2015,-7,0,2220,-17,0,0 +2013,9,3,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,0,0,930,-16,0,0 +2013,7,23,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,21,1,2000,6,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1800,5,0,1935,5,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-4,0,2202,-9,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,34,1,2024,26,1,0 +2013,8,23,5,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,8,0,2140,-14,0,0 +2013,9,5,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-7,0,1340,-7,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2010,31,1,2130,27,1,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,610,0,0,730,-3,0,0 +2013,8,17,6,EV,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-10,0,1454,-24,0,0 +2013,5,14,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1655,-8,0,1903,-20,0,0 +2013,5,16,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,16,1,1942,11,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,2146,-2,0,2305,6,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1725,-6,0,2005,-15,0,0 +2013,7,5,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1250,1,0,1605,6,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-7,0,1809,-4,0,0 +2013,9,3,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1800,-7,0,2118,7,0,0 +2013,4,14,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1221,-1,0,1625,9,0,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1405,81,1,1426,83,1,0 +2013,4,25,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1330,5,0,1450,5,0,0 +2013,6,5,3,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1733,-13,0,1815,-8,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,-5,0,2022,-21,0,0 +2013,5,28,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1710,12,0,1745,4,0,0 +2013,6,28,5,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1325,-7,0,1546,0,0,0 +2013,10,9,3,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2050,-5,0,2340,-31,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1040,4,0,1410,-4,0,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1135,0,0,1235,3,0,0 +2013,7,3,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1322,31,1,1410,30,1,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1810,-2,0,2030,-18,0,0 +2013,8,9,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1359,7,0,1948,13,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,17,1,1235,-7,0,0 +2013,4,4,4,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,700,-5,0,925,1,0,0 +2013,9,23,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,2,0,1400,-8,0,0 +2013,7,18,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,26,1,1304,19,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1051,-1,0,1157,-22,0,0 +2013,4,7,7,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1216,0,0,1454,-2,0,0 +2013,8,13,2,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1420,-6,0,1551,-1,0,0 +2013,5,2,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,618,-4,0,1130,-9,0,0 +2013,9,26,4,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-6,0,1634,5,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-2,0,2127,4,0,0 +2013,5,31,5,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1157,-2,0,1304,-16,0,0 +2013,6,2,7,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,14,0,833,7,0,0 +2013,10,25,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,5,0,1230,0,0,0 +2013,10,2,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,700,4,0,1520,2,0,0 +2013,7,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-4,0,928,-8,0,0 +2013,6,3,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,825,1,0,1005,-10,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2155,0,0,2310,2,0,0 +2013,5,6,1,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,844,-2,0,1120,39,1,0 +2013,7,15,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-1,0,1341,-15,0,0 +2013,9,24,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,-9,0,2004,-5,0,0 +2013,5,4,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-8,0,220,-10,0,0 +2013,9,8,7,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-8,0,1907,-29,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,2155,0,0,2340,-8,0,0 +2013,5,25,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1050,28,1,1359,33,1,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1820,2,0,2045,6,0,0 +2013,10,23,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,750,2,0,1020,3,0,0 +2013,8,1,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-1,0,1414,2,0,0 +2013,5,7,2,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,722,-2,0,1121,-9,0,0 +2013,9,16,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1655,1,0,2000,-23,0,0 +2013,4,4,4,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-4,0,900,-2,0,0 +2013,10,30,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,910,-5,0,1220,1,0,0 +2013,5,14,2,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-1,0,1445,25,1,0 +2013,4,12,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,1216,-30,0,0 +2013,5,24,5,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2358,-3,0,744,-11,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,-2,0,1410,-5,0,0 +2013,6,5,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,8,0,1853,-2,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1335,7,0,1547,-4,0,0 +2013,4,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1535,2,0,1640,-9,0,0 +2013,9,28,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,911,-8,0,1000,-16,0,0 +2013,8,6,2,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,730,-3,0,933,-1,0,0 +2013,6,22,6,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,11,0,1730,25,1,0 +2013,6,18,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1709,109,1,1850,95,1,0 +2013,5,26,7,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1305,8,0,1630,-9,0,0 +2013,6,6,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1652,-4,0,1754,-19,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1159,277,1,1443,262,1,0 +2013,7,1,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1952,-6,0,2113,-16,0,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,49,1,2333,46,1,0 +2013,6,17,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1451,9,0,2004,-1,0,0 +2013,7,13,6,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,845,50,1,1105,37,1,0 +2013,6,7,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,9,0,650,4,0,0 +2013,7,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,0,0,1010,-5,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,2,0,1550,0,0,0 +2013,5,20,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,-2,0,2223,-17,0,0 +2013,10,9,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1030,-1,0,1355,1,0,0 +2013,4,10,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-2,0,2213,-2,0,0 +2013,4,29,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1510,-9,0,1920,-14,0,0 +2013,4,4,4,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,930,-5,0,1152,15,1,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2144,43,1,2322,42,1,0 +2013,8,6,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,0,0,1535,-11,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2140,6,0,2237,0,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,900,96,1,1145,99,1,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1335,22,1,1640,29,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2205,0,0,2329,-21,0,0 +2013,9,3,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,30,1,650,24,1,0 +2013,9,19,4,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,70,1,825,64,1,0 +2013,5,25,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,845,1,0,1210,-12,0,0 +2013,5,29,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-3,0,1300,-17,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,83,1,2202,102,1,0 +2013,7,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,732,-4,0,911,-8,0,0 +2013,8,16,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1629,10,0,1821,5,0,0 +2013,5,9,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,-5,0,2240,-12,0,0 +2013,7,15,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,-3,0,1133,-14,0,0 +2013,9,19,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-5,0,1746,-3,0,0 +2013,9,9,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2100,5,0,2210,5,0,0 +2013,9,11,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,54,1,2245,75,1,0 +2013,7,31,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1636,0,0,2027,-17,0,0 +2013,5,25,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,180,1,1840,166,1,0 +2013,10,19,6,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1150,-3,0,1340,11,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1540,38,1,1845,22,1,0 +2013,8,18,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,28,1,958,36,1,0 +2013,5,18,6,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-5,0,1500,-21,0,0 +2013,9,27,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1515,6,0,1724,3,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1156,5,0,1408,-7,0,0 +2013,5,27,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2140,4,0,2240,-5,0,0 +2013,5,26,7,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2218,-5,0,554,-16,0,0 +2013,8,13,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,750,-2,0,845,-3,0,0 +2013,5,13,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1209,0,0,1345,-14,0,0 +2013,9,15,7,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-1,0,750,-13,0,0 +2013,6,12,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-2,0,1012,2,0,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,820,4,0,1310,-15,0,0 +2013,4,2,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1233,18,1,2101,-2,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2057,-4,0,2314,21,1,0 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,1,0,1353,-8,0,0 +2013,9,7,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,-9,0,1023,-17,0,0 +2013,4,21,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,6,0,1746,0,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1025,18,1,1135,10,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,0,0,941,0,0,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1900,9,0,2050,-2,0,0 +2013,4,10,3,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1440,8,0,1744,8,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,3,0,845,-2,0,0 +2013,10,19,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1650,-2,0,1713,-10,0,0 +2013,4,1,1,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,1310,-20,0,0 +2013,7,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-4,0,1706,4,0,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,832,-8,0,1124,-12,0,0 +2013,4,24,3,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1452,17,1,2302,-13,0,0 +2013,8,8,4,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2310,170,1,730,166,1,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,745,22,1,900,13,0,0 +2013,5,28,2,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,948,-3,0,1230,-5,0,0 +2013,5,1,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,752,-2,0,907,-17,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1900,72,1,2000,68,1,0 +2013,8,25,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,-5,0,2113,-14,0,0 +2013,6,23,7,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1340,2,0,1925,7,0,0 +2013,4,6,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2350,-4,0,511,-19,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,7,0,1811,8,0,0 +2013,9,18,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,-2,0,853,-6,0,0 +2013,7,4,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1300,25,1,1605,2,0,0 +2013,4,21,7,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1535,-5,0,1725,-13,0,0 +2013,8,8,4,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,825,-2,0,1207,-9,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,0,0,1450,-15,0,0 +2013,8,31,6,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1825,29,1,2000,5,0,0 +2013,4,15,1,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,730,0,0,855,1,0,0 +2013,6,5,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-7,0,1004,-2,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1730,-1,0,2200,-12,0,0 +2013,4,16,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1508,64,1,1801,45,1,0 +2013,10,25,5,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1641,-5,0,1749,-12,0,0 +2013,10,30,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1745,-4,0,1840,-1,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,655,-3,0,945,-9,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1015,-8,0,1126,-11,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,2,0,910,3,0,0 +2013,10,17,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,800,-9,0,910,6,0,0 +2013,9,18,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,850,-2,0,1115,-14,0,0 +2013,4,12,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,700,30,1,831,22,1,0 +2013,9,28,6,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1750,0,0,1924,8,0,0 +2013,5,16,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1400,-5,0,1807,-6,0,0 +2013,5,2,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1213,-5,0,1405,-3,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1735,-2,0,1800,-15,0,0 +2013,7,19,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1555,-8,0,1715,-14,0,0 +2013,4,20,6,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1805,43,1,2030,37,1,0 +2013,4,16,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-2,0,1235,-16,0,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1058,160,1,1704,155,1,0 +2013,4,11,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-2,0,1635,-4,0,0 +2013,10,23,3,UA,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1712,-10,0,1845,-11,0,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,74,1,1005,63,1,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1936,13,0,2051,-7,0,0 +2013,7,7,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,-11,0,1145,-9,0,0 +2013,9,19,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1820,-24,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,2135,124,1,2325,107,1,0 +2013,9,11,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,3,0,1133,-10,0,0 +2013,5,14,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1808,-8,0,2015,-15,0,0 +2013,5,21,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,645,-7,0,908,-2,0,0 +2013,7,24,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1254,8,0,1437,10,0,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,805,8,0,1255,10,0,0 +2013,5,4,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2239,-5,0,15,-11,0,0 +2013,4,5,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-6,0,2048,-23,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1120,1,0,1330,-8,0,0 +2013,4,20,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1345,26,1,1505,36,1,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1140,-4,0,1311,-14,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,943,15,1,1055,34,1,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,923,-4,0,1534,-4,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1121,0,0,1209,-2,0,0 +2013,6,29,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2010,37,1,2135,31,1,0 +2013,10,7,1,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-10,0,821,-20,0,0 +2013,6,7,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2100,1,0,2230,-11,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2030,-3,0,2225,13,0,0 +2013,10,23,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,-1,0,1937,-10,0,0 +2013,6,22,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1830,-6,0,2134,-17,0,0 +2013,8,18,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,-2,0,915,-11,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1550,14,0,1645,8,0,0 +2013,7,21,7,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,50,1,2106,61,1,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,8,0,1606,-3,0,0 +2013,10,1,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1545,-1,0,1700,13,0,0 +2013,4,17,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2000,4,0,2220,-4,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1421,2,0,1550,-1,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2020,30,1,2155,26,1,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,2,0,2353,-16,0,0 +2013,6,9,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1233,8,0,1355,21,1,0 +2013,6,27,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1953,143,1,2114,134,1,0 +2013,7,24,3,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1535,14,0,1650,13,0,0 +2013,6,19,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1200,-6,0,1250,-10,0,0 +2013,9,8,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,919,16,1,1015,24,1,0 +2013,6,9,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1645,154,1,1810,156,1,0 +2013,8,7,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1755,1,0,1855,3,0,0 +2013,5,6,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-8,0,1742,-19,0,0 +2013,4,8,1,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-6,0,1357,-9,0,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1625,17,1,1910,7,0,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,-6,0,1805,-7,0,0 +2013,9,5,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1750,20,1,2027,-16,0,0 +2013,6,26,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,950,-5,0,1204,-12,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1405,18,1,1750,10,0,0 +2013,7,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1030,-2,0,1142,6,0,0 +2013,7,10,3,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,1955,56,1,2240,60,1,0 +2013,7,7,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-7,0,641,-6,0,0 +2013,10,6,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1730,-5,0,1948,-20,0,0 +2013,5,29,3,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1608,7,0,2053,17,1,0 +2013,9,9,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1319,2,0,1817,2,0,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1555,-10,0,1922,-20,0,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1200,29,1,1520,44,1,0 +2013,10,20,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1449,-8,0,1639,-22,0,0 +2013,8,14,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1545,0,0,2003,5,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,6,0,1625,-6,0,0 +2013,10,20,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-7,0,1240,-9,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1145,-1,0,1510,-2,0,0 +2013,5,1,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,620,-3,0,1445,-12,0,0 +2013,7,8,1,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,-3,0,535,-6,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1235,-1,0,1255,-4,0,0 +2013,6,13,4,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1554,56,1,2358,50,1,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1310,69,1,1610,65,1,0 +2013,7,25,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,605,-1,0,931,-11,0,0 +2013,7,5,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1210,-6,0,1500,-15,0,0 +2013,9,12,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1956,-6,0,2301,-9,0,0 +2013,10,17,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,7,0,1125,-2,0,0 +2013,9,13,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,930,8,0,1059,-4,0,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,-8,0,951,-10,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1235,2,0,1640,-12,0,0 +2013,6,16,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-9,0,856,-15,0,0 +2013,8,4,7,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1100,3,0,1345,-12,0,0 +2013,5,18,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1615,-29,0,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,930,19,1,1530,-4,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1755,0,0,1900,-5,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,267,1,2200,255,1,0 +2013,4,10,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,8,0,2100,15,1,0 +2013,6,6,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,7,0,1610,4,0,0 +2013,9,10,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-6,0,1247,-6,0,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1655,-1,0,1800,-11,0,0 +2013,6,8,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1224,6,0,1350,-20,0,0 +2013,6,21,5,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,16,1,1331,5,0,0 +2013,7,29,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1352,-1,0,1558,-7,0,0 +2013,7,31,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,0,0,2215,-4,0,0 +2013,5,20,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1055,-1,0,1320,-13,0,0 +2013,7,9,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,1,0,730,8,0,0 +2013,5,26,7,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1301,-6,0,1420,1,0,0 +2013,5,9,4,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-3,0,1858,7,0,0 +2013,5,12,7,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1230,-5,0,1510,-22,0,0 +2013,7,28,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1445,-11,0,2310,4,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-5,0,1356,-1,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1150,10,0,1337,0,0,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,611,1,0,915,-9,0,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1948,61,1,2047,62,1,0 +2013,5,10,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-3,0,655,-2,0,0 +2013,10,17,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,910,-2,0,1145,-2,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,-1,0,1738,-14,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,745,-4,0,852,-7,0,0 +2013,6,16,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-4,0,2150,-29,0,0 +2013,4,14,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1955,24,1,2110,24,1,0 +2013,8,24,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1545,11,0,1715,0,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,849,-1,0,1017,-21,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1155,-1,0,1435,-11,0,0 +2013,10,8,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1335,3,0,1450,1,0,0 +2013,8,20,2,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,815,-2,0,1035,-6,0,0 +2013,5,1,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,2006,-8,0,2152,-16,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-5,0,2351,-2,0,0 +2013,6,5,3,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-1,0,1305,-43,0,0 +2013,7,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1835,27,1,1920,29,1,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-2,0,1506,-11,0,0 +2013,7,20,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1458,49,1,1544,51,1,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,-3,0,1136,-1,0,0 +2013,4,11,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,605,-1,0,719,9,0,0 +2013,8,2,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1945,28,1,2115,24,1,0 +2013,10,27,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,859,0,0,1653,30,1,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,829,-2,0,944,-12,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,3,0,2150,-30,0,0 +2013,10,14,1,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-4,0,1924,-7,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2004,8,0,2126,25,1,0 +2013,8,15,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1130,-3,0,1145,-8,0,0 +2013,7,9,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,-1,0,2100,-3,0,0 +2013,10,13,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1509,-2,0,1650,-7,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-4,0,1624,-11,0,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1807,58,1,2120,42,1,0 +2013,4,7,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-7,0,2128,-14,0,0 +2013,4,9,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-5,0,826,8,0,0 +2013,6,7,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,0,0,1200,3,0,0 +2013,5,10,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,105,1,17,95,1,0 +2013,6,24,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,0,,1920,0,1,1 +2013,7,7,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,510,-6,0,647,-2,0,0 +2013,10,15,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,838,-3,0,1024,-8,0,0 +2013,6,13,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1200,34,1,1315,25,1,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,730,21,1,840,13,0,0 +2013,9,29,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1557,-4,0,1655,12,0,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-7,0,2315,-11,0,0 +2013,10,17,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1445,-2,0,1605,-7,0,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,730,-3,0,1108,-7,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1055,32,1,1205,26,1,0 +2013,9,2,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1420,32,1,1515,19,1,0 +2013,8,2,5,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,32,1,2110,19,1,0 +2013,5,16,4,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-5,0,13,-15,0,0 +2013,7,15,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,844,0,0,1109,-30,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1514,-3,0,1733,-7,0,0 +2013,10,30,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,600,-5,0,745,-4,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,855,-1,0,1005,-6,0,0 +2013,8,4,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,22,1,1755,4,0,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1515,-4,0,1711,1,0,0 +2013,8,3,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,800,-2,0,920,-17,0,0 +2013,8,16,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,-6,0,1740,-16,0,0 +2013,7,18,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,0,0,1005,-9,0,0 +2013,9,7,6,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1331,-15,0,1650,-21,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1400,20,1,1515,7,0,0 +2013,10,13,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,8,0,2154,1,0,0 +2013,9,21,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,850,-3,0,1008,-18,0,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1800,0,0,2120,-15,0,0 +2013,9,5,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2003,-10,0,2140,-15,0,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2010,55,1,2150,40,1,0 +2013,6,25,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1650,0,0,1755,-3,0,0 +2013,5,3,5,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1501,243,1,1820,258,1,0 +2013,10,21,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,3,0,25,-6,0,0 +2013,4,10,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-5,0,1404,-11,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1543,-3,0,1759,-12,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,32,1,2125,14,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,-3,0,835,-8,0,0 +2013,10,15,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-6,0,1039,-10,0,0 +2013,4,11,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,9,0,923,17,1,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,600,-2,0,1025,-10,0,0 +2013,4,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,810,0,0,915,-1,0,0 +2013,8,9,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,825,13,0,1547,32,1,0 +2013,10,6,7,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,600,-8,0,730,-21,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,0,0,858,-3,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1844,38,1,2154,35,1,0 +2013,7,14,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,1,0,1720,6,0,0 +2013,8,11,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,-2,0,1200,-24,0,0 +2013,9,10,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,13,0,1830,8,0,0 +2013,7,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1457,18,1,1609,14,0,0 +2013,7,13,6,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,811,-9,0,952,-25,0,0 +2013,10,31,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1516,21,1,1645,13,0,0 +2013,5,6,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-8,0,1314,-10,0,0 +2013,9,1,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1030,1,0,1211,-24,0,0 +2013,10,18,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1705,-5,0,1950,-9,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,845,4,0,1036,-7,0,0 +2013,4,10,3,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1155,-4,0,1455,-12,0,0 +2013,7,26,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,540,-3,0,705,-8,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,19,1,1855,24,1,0 +2013,7,19,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,0,0,724,-9,0,0 +2013,9,15,7,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1807,-4,0,2051,-12,0,0 +2013,8,3,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,4,0,1300,1,0,0 +2013,7,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1555,2,0,1800,-11,0,0 +2013,7,28,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2045,72,1,2317,60,1,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1800,41,1,2130,34,1,0 +2013,7,10,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1745,0,,1900,0,1,1 +2013,5,21,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,0,,1345,0,1,1 +2013,4,10,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,740,-1,0,1042,-7,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-1,0,2110,-24,0,0 +2013,9,19,4,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1822,3,0,1924,6,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1105,25,1,1430,22,1,0 +2013,9,19,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2035,72,1,2125,69,1,0 +2013,4,16,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,-7,0,146,-41,0,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,0,0,1048,-25,0,0 +2013,9,15,7,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1035,-3,0,1355,1,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1930,10,0,2100,9,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,729,-10,0,914,-18,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1909,-3,0,2030,51,1,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,900,-2,0,1345,-16,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,807,33,1,1323,38,1,0 +2013,8,25,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,935,-4,0,1221,-19,0,0 +2013,5,3,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1706,61,1,1907,72,1,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1913,1,0,2035,-1,0,0 +2013,9,29,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13244,Memphis International,Memphis,TN,1652,3,0,1805,42,1,0 +2013,8,29,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1340,10,0,1525,28,1,0 +2013,4,29,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1015,-5,0,0 +2013,9,16,1,EV,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,615,-4,0,931,15,1,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,1,0,1130,-17,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1435,-5,0,1525,-4,0,0 +2013,8,4,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,1951,-18,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-3,0,1047,-2,0,0 +2013,7,25,4,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1630,0,0,1805,-21,0,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1705,34,1,2000,45,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,12,0,1547,30,1,0 +2013,4,7,7,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1709,-2,0,1846,-2,0,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2059,29,1,2317,44,1,0 +2013,5,14,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1107,11,0,1209,11,0,0 +2013,6,2,7,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1213,2,0,1754,4,0,0 +2013,4,25,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,839,-1,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1229,11,0,1536,-9,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2150,6,0,2305,-2,0,0 +2013,5,22,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,133,1,1553,128,1,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1450,-1,0,1610,-13,0,0 +2013,10,20,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1344,-5,0,1745,-27,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2205,-4,0,2257,12,0,0 +2013,10,29,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1959,-10,0,2123,-12,0,0 +2013,8,24,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1113,-4,0,1159,-3,0,0 +2013,4,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,714,4,0,924,7,0,0 +2013,5,27,1,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,67,1,2140,69,1,0 +2013,8,25,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-10,0,1849,-19,0,0 +2013,8,1,4,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-8,0,2110,-20,0,0 +2013,6,29,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2252,-6,0,15,-19,0,0 +2013,8,10,6,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,-3,0,1607,-12,0,0 +2013,10,8,2,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1059,-5,0,1205,-24,0,0 +2013,6,22,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-3,0,1532,-15,0,0 +2013,8,14,3,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,-7,0,740,-8,0,0 +2013,9,5,4,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1925,17,1,2102,1,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-10,0,1311,0,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2105,10,0,2200,9,0,0 +2013,6,14,5,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-4,0,1629,-15,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,745,19,1,928,12,0,0 +2013,9,13,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1915,33,1,2044,35,1,0 +2013,4,6,6,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1405,0,0,1615,-21,0,0 +2013,4,15,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1108,-3,0,1405,-37,0,0 +2013,5,7,2,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-4,0,1000,1,0,0 +2013,4,20,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,-2,0,1623,-6,0,0 +2013,5,15,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1741,8,0,1837,0,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,-5,0,959,-25,0,0 +2013,6,23,7,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,930,-3,0,1731,-25,0,0 +2013,8,17,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1029,1,0,1153,3,0,0 +2013,4,19,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1650,38,1,1815,29,1,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,9,0,1235,8,0,0 +2013,9,12,4,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1003,-4,0,1231,2,0,0 +2013,10,30,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,738,-2,0,1015,-6,0,0 +2013,5,23,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-4,0,910,-16,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,816,1,0,1037,-1,0,0 +2013,4,26,5,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,0,0,1519,-16,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-8,0,1135,-22,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1620,0,0,1808,1,0,0 +2013,9,12,4,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-9,0,1005,-10,0,0 +2013,9,11,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1328,17,1,1613,11,0,0 +2013,10,30,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1220,5,0,1450,-18,0,0 +2013,10,15,2,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,50,1,1915,49,1,0 +2013,5,3,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,626,-13,0,746,-14,0,0 +2013,10,10,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,19,1,1705,16,1,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,11,0,1041,40,1,0 +2013,9,6,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,0,,1715,0,1,1 +2013,8,2,5,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,730,4,0,1025,-17,0,0 +2013,8,10,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,617,-1,0,955,-10,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1955,40,1,2145,36,1,0 +2013,5,5,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,14,0,2315,0,0,0 +2013,5,5,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,2,0,1225,3,0,0 +2013,10,14,1,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-7,0,1421,-10,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1520,-2,0,2040,-2,0,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,25,1,1913,17,1,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,957,-10,0,1053,-13,0,0 +2013,7,19,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,-8,0,2022,-14,0,0 +2013,10,30,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1145,0,0,1550,-7,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,63,1,1900,79,1,0 +2013,5,26,7,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1109,-3,0,1603,-5,0,0 +2013,9,16,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1055,-10,0,1216,-15,0,0 +2013,4,9,2,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,1,0,2036,-27,0,0 +2013,8,24,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,2000,-4,0,2205,1,0,0 +2013,4,2,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2259,-4,0,609,-23,0,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1345,0,,1512,0,1,1 +2013,8,18,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1640,199,1,1700,202,1,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1000,12,0,1715,11,0,0 +2013,9,30,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1140,-5,0,1315,-16,0,0 +2013,9,20,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-5,0,1454,5,0,0 +2013,10,13,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,550,0,0,1245,-19,0,0 +2013,9,21,6,EV,11618,Newark Liberty International,Newark,NJ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,18,1,908,5,0,0 +2013,8,27,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,0,0,1805,-15,0,0 +2013,6,20,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-9,0,832,-13,0,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2135,19,1,554,-13,0,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1935,60,1,2025,60,1,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1948,-4,0,2313,-7,0,0 +2013,10,16,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,945,-12,0,958,-19,0,0 +2013,8,20,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,8,0,1040,-1,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1035,12,0,1155,13,0,0 +2013,4,17,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,-4,0,1850,-5,0,0 +2013,8,3,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,611,3,0,954,-8,0,0 +2013,5,11,6,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1815,53,1,2035,31,1,0 +2013,7,15,1,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,0,0,1955,-8,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1405,4,0,1540,12,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,14,0,1745,19,1,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,29,1,1504,23,1,0 +2013,5,28,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-4,0,1820,-21,0,0 +2013,8,12,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1500,92,1,1540,98,1,0 +2013,7,5,5,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,2,0,1415,6,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1247,-1,0,1535,-19,0,0 +2013,10,10,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1910,46,1,2040,42,1,0 +2013,4,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1319,26,1,1720,34,1,0 +2013,9,14,6,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1918,-5,0,2159,22,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,-5,0,2106,-11,0,0 +2013,4,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-5,0,1028,-12,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1845,-1,0,2054,-20,0,0 +2013,10,11,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,77,1,2059,55,1,0 +2013,8,27,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,645,-11,0,926,-13,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1425,2,0,1615,-8,0,0 +2013,7,29,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,730,-7,0,845,-21,0,0 +2013,6,14,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1445,135,1,1655,174,1,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1345,0,0,1700,-22,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1810,-1,0,1905,-11,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1648,-3,0,2128,-34,0,0 +2013,4,12,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,0,0,1445,-6,0,0 +2013,10,8,2,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1545,-6,0,1615,-10,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,4,0,1925,-1,0,0 +2013,4,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1655,7,0,2255,-6,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1430,-4,0,1614,-9,0,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1635,4,0,1715,8,0,0 +2013,8,3,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1844,-4,0,1905,-1,0,0 +2013,4,30,2,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,823,8,0,912,1,0,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,2110,8,0,20,-3,0,0 +2013,10,1,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-7,0,1247,-16,0,0 +2013,4,4,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-8,0,748,-10,0,0 +2013,4,29,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,14,0,1714,6,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1110,-3,0,1229,-22,0,0 +2013,5,26,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-9,0,1817,-12,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1735,-4,0,1928,4,0,0 +2013,4,2,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,2125,-4,0,25,7,0,0 +2013,4,2,2,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1744,48,1,2032,45,1,0 +2013,6,23,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1920,-1,0,1957,0,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,46,1,1915,74,1,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1056,-5,0,1517,-4,0,0 +2013,7,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,700,-3,0,725,-5,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1700,29,1,1908,10,0,0 +2013,6,13,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,610,7,0,725,21,1,0 +2013,9,21,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,747,-4,0,1540,3,0,0 +2013,7,18,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,-5,0,1101,9,0,0 +2013,9,26,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1940,-3,0,2228,0,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-5,0,1149,-21,0,0 +2013,5,29,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,124,1,2010,115,1,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1640,-5,0,1750,-13,0,0 +2013,10,20,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,23,1,1705,23,1,0 +2013,5,13,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1434,-3,0,1626,-39,0,0 +2013,5,17,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1830,324,1,2105,312,1,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1210,0,0,1307,-14,0,0 +2013,6,16,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,800,-2,0,1029,-1,0,0 +2013,9,17,2,9E,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1600,-10,0,1744,-22,0,0 +2013,7,28,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1013,5,0,1116,4,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,730,-1,0,1030,-13,0,0 +2013,4,6,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1415,-10,0,1555,-14,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,750,6,0,930,14,0,0 +2013,4,22,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1135,-4,0,1155,8,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1540,2,0,1734,-15,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-5,0,900,-19,0,0 +2013,5,8,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-5,0,1535,-7,0,0 +2013,4,26,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-12,0,1205,-20,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2010,2,0,2135,7,0,0 +2013,7,27,6,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,951,-5,0,1250,-10,0,0 +2013,6,3,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,2,0,2055,-19,0,0 +2013,5,5,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,30,1,1920,24,1,0 +2013,9,26,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,-10,0,2052,-31,0,0 +2013,8,6,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,0,0,1257,-9,0,0 +2013,5,9,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,-4,0,1235,-12,0,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,105,1,2339,90,1,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,1,0,1131,-2,0,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1630,-4,0,1740,-8,0,0 +2013,5,3,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,23,1,1355,23,1,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,858,-5,0,1500,-24,0,0 +2013,6,19,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,-8,0,2030,-6,0,0 +2013,10,24,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,-6,0,2328,-15,0,0 +2013,6,11,2,OO,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-2,0,2019,-6,0,0 +2013,10,11,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,721,-7,0,809,-2,0,0 +2013,5,5,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1600,10,0,1725,7,0,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1455,16,1,1810,15,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,26,1,1600,20,1,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1306,4,0,1622,-14,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,8,0,1355,3,0,0 +2013,6,30,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,0,0,1030,-32,0,0 +2013,8,26,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1359,-4,0,2210,-6,0,0 +2013,7,1,1,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1325,51,1,1615,41,1,0 +2013,10,20,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1223,-2,0,1415,-6,0,0 +2013,10,17,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,43,1,835,27,1,0 +2013,9,23,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1955,-4,0,2020,-28,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1647,14,0,1723,10,0,0 +2013,10,9,3,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,-2,0,2110,-21,0,0 +2013,6,25,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,-3,0,1830,-8,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-3,0,1628,0,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1410,-2,0,1557,-5,0,0 +2013,4,14,7,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1859,-11,0,2049,0,0,0 +2013,6,24,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,0,0,1830,1,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1425,83,1,1645,78,1,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,835,-3,0,1105,43,1,0 +2013,5,30,4,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,0,0,1455,5,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1731,0,0,1902,-14,0,0 +2013,4,7,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1340,-4,0,1450,-6,0,0 +2013,4,3,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,-4,0,1819,-18,0,0 +2013,9,27,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1652,-3,0,1748,-14,0,0 +2013,7,13,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-3,0,1735,-9,0,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,0,0,1715,-6,0,0 +2013,5,18,6,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,20,1,1530,22,1,0 +2013,9,2,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,1,0,1605,5,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1925,-2,0,2001,-17,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1320,-6,0,1440,-14,0,0 +2013,10,24,4,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1220,-1,0,1342,27,1,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1240,7,0,1420,-12,0,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1400,-2,0,1625,10,0,0 +2013,7,25,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,1,0,1000,0,0,0 +2013,7,3,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,80,1,1727,75,1,0 +2013,9,12,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1300,-7,0,1505,8,0,0 +2013,4,1,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1555,0,0,1755,-5,0,0 +2013,4,29,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,72,1,1059,72,1,0 +2013,8,28,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,23,1,1735,8,0,0 +2013,5,25,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1156,-11,0,2005,-45,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1105,4,0,1345,-11,0,0 +2013,5,31,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-11,0,746,-14,0,0 +2013,5,3,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1850,157,1,2105,144,1,0 +2013,6,8,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1655,4,0,1945,-22,0,0 +2013,10,20,7,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1320,0,0,1450,-5,0,0 +2013,4,1,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,843,-4,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,4,0,1825,2,0,0 +2013,7,12,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1504,35,1,1730,50,1,0 +2013,5,12,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,740,-2,0,825,-9,0,0 +2013,8,23,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1820,5,0,2000,0,0,0 +2013,5,2,4,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1805,20,1,2331,23,1,0 +2013,6,25,2,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,12,0,1305,2,0,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,53,1,1812,126,1,0 +2013,10,9,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,12,0,1230,-3,0,0 +2013,9,3,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-1,0,1130,-15,0,0 +2013,7,31,3,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,0,0,1000,4,0,0 +2013,10,17,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1438,-4,0,1959,-17,0,0 +2013,10,5,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1700,35,1,1930,35,1,0 +2013,4,20,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,845,1,0,950,-6,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,5,0,1150,-7,0,0 +2013,9,10,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-9,0,1743,3,0,0 +2013,5,7,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-8,0,1312,-6,0,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-12,0,2215,-13,0,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1750,44,1,1855,44,1,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2015,-6,0,2139,-27,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-5,0,1335,1,0,0 +2013,8,18,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1650,6,0,1810,16,1,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1450,18,1,1600,22,1,0 +2013,5,6,1,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,710,-3,0,1001,-40,0,0 +2013,5,7,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,0,0,1635,-13,0,0 +2013,5,22,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2130,3,0,2250,-3,0,0 +2013,4,5,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1830,7,0,1955,0,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,-10,0,1446,-9,0,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2055,-8,0,2325,-19,0,0 +2013,8,10,6,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,700,-1,0,855,-13,0,0 +2013,9,12,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,129,1,1821,120,1,0 +2013,9,6,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-7,0,1021,6,0,0 +2013,7,16,2,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1230,0,0,1520,9,0,0 +2013,7,20,6,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-5,0,1625,-1,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1245,4,0,1545,7,0,0 +2013,8,20,2,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1820,-1,0,2048,-41,0,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2005,0,0,2125,6,0,0 +2013,7,1,1,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,139,1,757,124,1,0 +2013,4,5,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1656,-4,0,1855,-15,0,0 +2013,6,30,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,2005,27,1,2135,52,1,0 +2013,8,21,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1957,30,1,2126,60,1,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,3,0,2236,-11,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1916,3,0,2011,-3,0,0 +2013,8,6,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-6,0,2135,-3,0,0 +2013,4,20,6,EV,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,850,-7,0,1131,-23,0,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,830,-1,0,1305,-23,0,0 +2013,5,27,1,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-4,0,1027,-12,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,8,0,2045,-3,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1924,68,1,2144,90,1,0 +2013,6,30,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1951,-7,0,2101,-9,0,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1925,-6,0,2230,-21,0,0 +2013,4,10,3,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,800,0,0,1053,-6,0,0 +2013,5,30,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1655,-6,0,1950,-19,0,0 +2013,10,25,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-4,0,1530,-2,0,0 +2013,4,8,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,630,-2,0,1500,1,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,3,0,1115,16,1,0 +2013,7,5,5,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2010,2,0,2148,1,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1310,51,1,1425,64,1,0 +2013,4,20,6,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1705,-9,0,1930,-26,0,0 +2013,7,29,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1529,3,0,1713,-15,0,0 +2013,5,18,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1145,4,0,1427,-3,0,0 +2013,4,5,5,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1834,11,0,2049,8,0,0 +2013,8,18,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1105,3,0,1235,-4,0,0 +2013,5,18,6,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,738,5,0,840,-9,0,0 +2013,10,9,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,839,-7,0,0 +2013,8,21,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-6,0,847,-17,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1429,14,0,1611,15,1,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-3,0,1305,-1,0,0 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,15,1,2359,31,1,0 +2013,9,17,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,45,1,1845,47,1,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1929,-5,0,2122,-7,0,0 +2013,4,28,7,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1000,20,1,1318,-8,0,0 +2013,8,3,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1707,24,1,1915,0,1,1 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,950,6,0,1342,-6,0,0 +2013,6,26,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1123,0,0,1143,-6,0,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1810,23,1,1955,11,0,0 +2013,6,6,4,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1113,0,0,1427,-1,0,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,805,-5,0,1120,-10,0,0 +2013,4,6,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-13,0,859,-13,0,0 +2013,4,8,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,1,0,1650,-7,0,0 +2013,5,23,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,5,0,1910,-2,0,0 +2013,8,2,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,27,1,1300,11,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,843,-3,0,908,-8,0,0 +2013,7,12,5,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1109,112,1,1145,109,1,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,0,0,2332,-10,0,0 +2013,8,11,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2115,7,0,2235,9,0,0 +2013,4,28,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1433,-2,0,1703,-11,0,0 +2013,8,2,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,-4,0,1900,-18,0,0 +2013,7,25,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,-2,0,1552,1,0,0 +2013,8,11,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,0,,1910,0,1,1 +2013,5,27,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,7,0,945,-7,0,0 +2013,8,11,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1530,-4,0,1850,-11,0,0 +2013,10,8,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1020,-1,0,1120,-4,0,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,1,0,1635,-13,0,0 +2013,8,21,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,935,-1,0,950,-4,0,0 +2013,6,21,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,800,9,0,1230,2,0,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1325,-5,0,1415,-6,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1543,8,0,1722,-5,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1900,4,0,2040,-13,0,0 +2013,8,26,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,39,1,1720,37,1,0 +2013,9,26,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-5,0,1325,-20,0,0 +2013,7,30,2,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,-7,0,2357,-30,0,0 +2013,5,28,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,755,3,0,900,26,1,0 +2013,10,30,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1420,5,0,1625,-13,0,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1723,-1,0,2135,-16,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-1,0,1237,-4,0,0 +2013,5,9,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-10,0,932,-22,0,0 +2013,9,7,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,-2,0,1550,-4,0,0 +2013,6,28,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1540,8,0,1635,-2,0,0 +2013,4,24,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1420,-14,0,0 +2013,10,1,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-9,0,819,-21,0,0 +2013,4,13,6,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-4,0,1538,-14,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1045,26,1,1505,25,1,0 +2013,5,12,7,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2359,-5,0,604,-17,0,0 +2013,10,31,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-2,0,1302,-2,0,0 +2013,9,21,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,-1,0,1825,-6,0,0 +2013,10,23,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-4,0,1943,-6,0,0 +2013,6,6,4,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1755,-6,0,2016,-5,0,0 +2013,9,14,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,700,-6,0,1032,-9,0,0 +2013,6,14,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,30,2,0,814,-3,0,0 +2013,7,7,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1946,153,1,2129,151,1,0 +2013,6,26,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1200,-4,0,1302,-13,0,0 +2013,5,10,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1119,40,1,1259,63,1,0 +2013,8,14,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1550,7,0,1810,-19,0,0 +2013,9,9,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,650,-1,0,810,1,0,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1945,-3,0,45,0,0,0 +2013,5,18,6,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1159,-5,0,1458,-8,0,0 +2013,8,1,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,-1,0,550,-22,0,0 +2013,10,26,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-2,0,1630,-7,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1247,52,1,1444,121,1,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,5,0,1034,-11,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,951,0,0,1210,-12,0,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,8,0,2250,-4,0,0 +2013,10,5,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2055,-2,0,515,-6,0,0 +2013,10,27,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,815,19,1,0 +2013,7,2,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,605,-2,0,620,-7,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2045,-3,0,2256,-12,0,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,855,111,1,1214,89,1,0 +2013,5,25,6,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1910,-4,0,2155,2,0,0 +2013,8,18,7,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2053,-6,0,500,-8,0,0 +2013,9,17,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-13,0,1725,-18,0,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,13,0,1824,6,0,0 +2013,6,5,3,EV,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,909,-6,0,1006,5,0,0 +2013,7,21,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,2019,34,1,2046,32,1,0 +2013,9,10,2,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2025,-13,0,2303,-6,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,600,-4,0,851,14,0,0 +2013,8,24,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1415,12,0,1730,73,1,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1256,-29,0,0 +2013,7,7,7,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-4,0,1025,-11,0,0 +2013,7,10,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-1,0,1217,-5,0,0 +2013,8,22,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1850,8,0,1945,4,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1455,22,1,1745,46,1,0 +2013,4,23,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1642,-10,0,2110,-31,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1015,4,0,1201,-4,0,0 +2013,7,22,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-7,0,1009,-14,0,0 +2013,6,18,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,640,13,0,840,25,1,0 +2013,4,29,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,17,1,1235,16,1,0 +2013,5,12,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,-10,0,1447,-3,0,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1445,14,0,1740,34,1,0 +2013,6,24,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,6,0,1334,-4,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,745,-7,0,839,9,0,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,13,0,2215,19,1,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1847,10,0,18,-16,0,0 +2013,9,16,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1125,-8,0,1221,23,1,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-1,0,1955,28,1,0 +2013,6,19,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,757,-10,0,925,-21,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-3,0,1700,-12,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,42,1,1300,32,1,0 +2013,7,26,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-5,0,938,5,0,0 +2013,4,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,-1,0,2222,-19,0,0 +2013,5,4,6,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1134,-10,0,1515,-24,0,0 +2013,7,10,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1305,23,1,1440,16,1,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,158,1,1817,189,1,0 +2013,9,3,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,842,1,0,1100,-28,0,0 +2013,6,29,6,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1325,0,,1500,0,1,1 +2013,6,14,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-6,0,808,1,0,0 +2013,6,16,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1550,-5,0,1705,1,0,0 +2013,10,18,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-4,0,2005,-13,0,0 +2013,6,10,1,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1959,41,1,2236,51,1,0 +2013,10,22,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1915,-3,0,2040,-10,0,0 +2013,4,11,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-1,0,821,-5,0,0 +2013,5,10,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1200,-5,0,1325,-18,0,0 +2013,10,26,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,3,0,1339,43,1,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,42,1,1450,34,1,0 +2013,7,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,950,118,1,1150,112,1,0 +2013,4,21,7,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1930,27,1,2154,24,1,0 +2013,8,8,4,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,-2,0,1119,12,0,0 +2013,6,21,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1335,15,1,1700,2,0,0 +2013,5,8,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2140,5,0,2250,-1,0,0 +2013,8,18,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,0,0,1235,-17,0,0 +2013,9,7,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,725,2,0,820,-12,0,0 +2013,9,8,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-6,0,1200,-16,0,0 +2013,8,16,5,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1823,99,1,1945,96,1,0 +2013,5,2,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-8,0,2047,-19,0,0 +2013,7,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1804,6,0,1830,-13,0,0 +2013,5,2,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1704,38,1,1912,26,1,0 +2013,9,8,7,9E,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2110,58,1,2318,41,1,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,745,8,0,929,0,0,0 +2013,10,28,1,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1122,-8,0,1332,6,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,0,,1335,0,1,1 +2013,9,16,1,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1808,-5,0,2125,-3,0,0 +2013,8,20,2,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,8,0,501,21,1,0 +2013,4,11,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,805,-4,0,930,-25,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1951,2,0,2247,8,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-9,0,1948,-16,0,0 +2013,4,12,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,858,-9,0,932,-4,0,0 +2013,4,17,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,6,0,1800,8,0,0 +2013,9,13,5,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,8,0,1035,-3,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1555,13,0,1820,12,0,0 +2013,7,29,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,959,10,0,1225,28,1,0 +2013,9,7,6,EV,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,836,-9,0,1001,-1,0,0 +2013,9,11,3,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1705,-8,0,1924,-8,0,0 +2013,7,17,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1208,-9,0,1330,-18,0,0 +2013,8,18,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1345,-11,0,1524,-23,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,-1,0,929,-8,0,0 +2013,10,14,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,14,0,1729,35,1,0 +2013,7,26,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,183,1,2025,179,1,0 +2013,7,3,3,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,739,9,0,1035,10,0,0 +2013,10,27,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,918,26,1,1725,-5,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,820,0,0,1055,-6,0,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,745,-5,0,1010,-8,0,0 +2013,6,7,5,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-7,0,1005,-25,0,0 +2013,9,12,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2005,1,0,2125,-2,0,0 +2013,10,23,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1435,-5,0,1732,24,1,0 +2013,7,24,3,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1605,69,1,1925,45,1,0 +2013,8,13,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,73,1,1928,65,1,0 +2013,8,29,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,3,0,1235,0,0,0 +2013,10,9,3,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,0,1810,-2,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-3,0,1112,-7,0,0 +2013,5,11,6,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1245,-1,0,1605,2,0,0 +2013,7,26,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1101,-7,0,1246,-6,0,0 +2013,10,8,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,5,0,1840,-10,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1155,0,0,1330,-7,0,0 +2013,6,6,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,746,-3,0,1042,-6,0,0 +2013,7,7,7,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-17,0,810,-10,0,0 +2013,9,6,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,2,0,1139,1,0,0 +2013,9,7,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,9,0,2000,4,0,0 +2013,6,26,3,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1239,37,1,1539,47,1,0 +2013,8,18,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,10,0,2050,3,0,0 +2013,6,3,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-2,0,1845,-24,0,0 +2013,4,1,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1735,177,1,1927,164,1,0 +2013,8,17,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1535,-1,0,1853,-12,0,0 +2013,10,9,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,600,-2,0,1000,-5,0,0 +2013,4,26,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,-2,0,1825,-15,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1651,-3,0,1900,-17,0,0 +2013,4,5,5,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1655,35,1,2107,46,1,0 +2013,10,19,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1750,-3,0,1935,-30,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1620,14,0,1720,0,0,0 +2013,6,19,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,713,12,0,1015,4,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,645,-3,0,912,-34,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,26,1,55,24,1,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-4,0,2302,22,1,0 +2013,8,29,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1557,20,1,1825,16,1,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1255,12,0,1615,42,1,0 +2013,6,18,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1005,5,0,1120,16,1,0 +2013,5,2,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,804,-13,0,0 +2013,9,22,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,-5,0,2112,-5,0,0 +2013,8,9,5,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1723,7,0,2014,2,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-6,0,952,-17,0,0 +2013,6,11,2,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1600,29,1,1747,2,0,0 +2013,5,14,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,926,-20,0,0 +2013,6,6,4,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,29,1,1100,17,1,0 +2013,6,18,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,642,5,0,1019,14,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-6,0,1819,-21,0,0 +2013,4,8,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1415,3,0,1555,4,0,0 +2013,5,12,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1307,4,0,1710,-21,0,0 +2013,9,1,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1044,-3,0,1227,-9,0,0 +2013,8,26,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,-2,0,1730,-6,0,0 +2013,4,7,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,744,-17,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,920,-6,0,1715,-5,0,0 +2013,6,12,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1029,-8,0,0 +2013,6,9,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2120,7,0,2340,13,0,0 +2013,8,20,2,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-7,0,945,-14,0,0 +2013,9,28,6,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,615,0,0,828,-17,0,0 +2013,8,23,5,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1138,-8,0,1228,-15,0,0 +2013,10,9,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1355,-5,0,1455,-24,0,0 +2013,10,21,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-5,0,652,-12,0,0 +2013,4,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1610,5,0,1715,0,0,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,1,0,2300,3,0,0 +2013,9,1,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1850,-16,0,2055,-17,0,0 +2013,10,8,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,650,-4,0,841,-7,0,0 +2013,10,25,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,1955,0,0,2005,-12,0,0 +2013,10,2,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1145,1,0,1705,-9,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1710,21,1,2005,12,0,0 +2013,6,22,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1204,38,1,1215,34,1,0 +2013,6,24,1,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1940,7,0,2225,7,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,-5,0,1624,-11,0,0 +2013,4,23,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1305,9,0,1610,0,0,0 +2013,8,2,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,21,1,1205,21,1,0 +2013,9,6,5,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,732,-19,0,0 +2013,5,4,6,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1003,-6,0,1319,-7,0,0 +2013,6,8,6,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-3,0,1020,-17,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2229,7,0,657,-2,0,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1420,2,0,2015,27,1,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1310,-4,0,1443,-22,0,0 +2013,6,28,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,610,-4,0,715,-11,0,0 +2013,9,10,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-5,0,1306,-9,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,930,0,0,1205,-28,0,0 +2013,6,6,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,909,-1,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-5,0,1229,-9,0,0 +2013,4,3,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-6,0,1018,-7,0,0 +2013,5,12,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1550,-6,0,2138,-7,0,0 +2013,9,9,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1905,-1,0,2137,17,1,0 +2013,4,11,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1355,8,0,1455,-7,0,0 +2013,5,26,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1525,16,1,1720,7,0,0 +2013,8,18,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-1,0,1614,-14,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1754,-3,0,2028,-11,0,0 +2013,10,24,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1945,-4,0,2121,-1,0,0 +2013,8,26,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,-6,0,817,-1,0,0 +2013,9,25,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,625,-2,0,725,-9,0,0 +2013,9,5,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1003,-2,0,1322,0,0,0 +2013,10,3,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-7,0,2025,6,0,0 +2013,6,2,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,-2,0,815,-14,0,0 +2013,7,18,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-3,0,1230,-11,0,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1840,86,1,2245,88,1,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1952,1,0,2315,-24,0,0 +2013,5,20,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1655,125,1,1945,98,1,0 +2013,10,15,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1100,-7,0,1345,-13,0,0 +2013,7,4,4,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1031,-3,0,1340,10,0,0 +2013,4,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1600,-2,0,1758,-12,0,0 +2013,4,18,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,935,5,0,1145,-5,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,4,0,2039,27,1,0 +2013,8,12,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-4,0,1340,-4,0,0 +2013,4,16,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,630,-4,0,804,-16,0,0 +2013,5,21,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1800,-9,0,2011,-7,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1510,-1,0,1639,-4,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1035,-4,0,1335,2,0,0 +2013,5,5,7,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,715,4,0,810,-6,0,0 +2013,8,5,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1335,2,0,1500,-9,0,0 +2013,9,14,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1731,12,0,1858,23,1,0 +2013,8,5,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1925,93,1,1959,97,1,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1240,-4,0,1500,-37,0,0 +2013,7,7,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,99,1,1911,208,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1810,123,1,1936,105,1,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1610,-17,0,0 +2013,9,12,4,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-4,0,1600,1,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,5,0,1028,-43,0,0 +2013,8,22,4,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-8,0,655,-13,0,0 +2013,4,30,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,0,0,1820,-18,0,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,643,-10,0,820,-12,0,0 +2013,5,9,4,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,947,-6,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,0,0,1209,-1,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,920,-2,0,1030,-7,0,0 +2013,10,15,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-1,0,1045,4,0,0 +2013,6,4,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,931,6,0,1215,6,0,0 +2013,7,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2151,-2,0,2342,-15,0,0 +2013,7,10,3,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-3,0,827,-10,0,0 +2013,10,30,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1625,2,0,1645,-7,0,0 +2013,6,20,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1820,13,0,1925,9,0,0 +2013,4,9,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1715,4,0,1805,-3,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1550,9,0,1911,-2,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,834,-3,0,1020,-1,0,0 +2013,6,15,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1152,-1,0,1804,2,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1150,3,0,1800,48,1,0 +2013,7,17,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,900,1,0,1005,-5,0,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,600,17,1,920,9,0,0 +2013,8,25,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,1,0,1300,-1,0,0 +2013,10,21,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-5,0,820,2,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2127,30,1,2359,37,1,0 +2013,7,13,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,10,0,1910,2,0,0 +2013,5,8,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2001,-14,0,2136,-23,0,0 +2013,10,30,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1034,-1,0,1428,-1,0,0 +2013,4,16,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1558,-9,0,1842,-26,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1949,-2,0,2248,12,0,0 +2013,6,23,7,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-3,0,555,-15,0,0 +2013,10,22,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,-3,0,1126,-12,0,0 +2013,8,17,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,1,0,750,-3,0,0 +2013,9,24,2,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-5,0,1052,-5,0,0 +2013,7,16,2,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1640,8,0,1950,16,1,0 +2013,10,27,7,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,830,2,0,1020,3,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1245,5,0,1523,-8,0,0 +2013,10,13,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,600,-5,0,734,-11,0,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-5,0,2036,-4,0,0 +2013,8,18,7,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-11,0,936,-34,0,0 +2013,8,21,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1728,-2,0,1818,-8,0,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1603,4,0,2119,-8,0,0 +2013,8,4,7,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2209,70,1,600,59,1,0 +2013,7,5,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,53,1,1820,33,1,0 +2013,5,12,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1310,26,1,1410,22,1,0 +2013,10,27,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,3,0,842,-8,0,0 +2013,5,13,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,915,-6,0,1209,-5,0,0 +2013,8,31,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1825,6,0,1940,-2,0,0 +2013,9,17,2,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1540,12,0,1705,-2,0,0 +2013,8,4,7,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2052,-4,0,22,-1,0,0 +2013,5,18,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1123,-10,0,1500,-17,0,0 +2013,4,29,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1220,-5,0,1700,-3,0,0 +2013,5,6,1,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1023,-8,0,1305,6,0,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1055,-2,0,1200,-7,0,0 +2013,7,28,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-3,0,1825,-9,0,0 +2013,9,23,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,955,-7,0,1250,-10,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1616,1,0,1800,4,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,126,1,2234,130,1,0 +2013,10,31,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1005,-2,0,1248,-9,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2019,-8,0,2159,-14,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,955,-3,0,1140,-19,0,0 +2013,9,13,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,16,1,1527,11,0,0 +2013,5,1,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1220,-2,0,1414,1,0,0 +2013,4,1,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,8,0,1750,-9,0,0 +2013,7,4,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1231,-9,0,1322,-6,0,0 +2013,6,7,5,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1750,57,1,2036,69,1,0 +2013,8,11,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,5,0,1840,5,0,0 +2013,8,4,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1020,20,1,1140,12,0,0 +2013,7,11,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1512,15,1,2024,16,1,0 +2013,10,21,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,-4,0,2022,-29,0,0 +2013,6,11,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,-4,0,2212,-1,0,0 +2013,7,29,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-4,0,1358,-13,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,13,0,1115,-6,0,0 +2013,9,23,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1345,-7,0,1440,-15,0,0 +2013,10,1,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1802,109,1,2054,81,1,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1200,-2,0,1319,-19,0,0 +2013,9,26,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1710,-2,0,2016,-12,0,0 +2013,5,28,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-2,0,1030,-10,0,0 +2013,5,30,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,715,-1,0,830,-8,0,0 +2013,10,16,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,915,-16,0,0 +2013,5,20,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1829,-7,0,2031,-23,0,0 +2013,6,12,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,0,0,607,-14,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1135,0,0,1450,-4,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,723,-5,0,957,24,1,0 +2013,9,19,4,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,855,0,,1210,0,1,1 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,-2,0,2255,-9,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,924,-1,0,1108,-10,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-7,0,2200,-19,0,0 +2013,9,27,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1115,-3,0,1202,-8,0,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1025,147,1,1153,147,1,0 +2013,10,23,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1605,-3,0,1710,-13,0,0 +2013,10,2,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-7,0,1343,-16,0,0 +2013,7,26,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,0,0,2035,-13,0,0 +2013,10,19,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,7,0,1500,1,0,0 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,-7,0,938,-6,0,0 +2013,8,19,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,846,-2,0,1158,-18,0,0 +2013,10,6,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,900,-4,0,925,-6,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,959,-3,0,1129,-5,0,0 +2013,6,24,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2103,61,1,2341,50,1,0 +2013,8,9,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1735,4,0,2108,24,1,0 +2013,4,21,7,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,730,3,0,855,-9,0,0 +2013,9,18,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,12,0,1515,-7,0,0 +2013,9,13,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1815,51,1,2015,30,1,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-5,0,1035,-1,0,0 +2013,6,16,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1230,-4,0,1449,-6,0,0 +2013,6,25,2,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2215,0,0,631,-2,0,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,-1,0,1630,-9,0,0 +2013,8,19,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-13,0,1915,-21,0,0 +2013,10,12,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,830,0,0,935,-5,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1814,77,1,2104,60,1,0 +2013,10,18,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2025,-9,0,2155,-8,0,0 +2013,10,17,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1719,-7,0,1910,-5,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,47,1,1920,38,1,0 +2013,7,8,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1430,46,1,1558,29,1,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,610,1,0,1125,-12,0,0 +2013,8,13,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,3,0,903,3,0,0 +2013,10,4,5,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,740,-3,0,837,-4,0,0 +2013,6,6,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1013,18,1,1420,23,1,0 +2013,6,6,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-3,0,1114,-11,0,0 +2013,9,13,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1930,0,0,2137,-9,0,0 +2013,9,4,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,23,1,1853,18,1,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,615,-3,0,825,-15,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2216,155,1,2344,145,1,0 +2013,7,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2109,25,1,2239,14,0,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-5,0,1335,-21,0,0 +2013,10,12,6,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1155,-4,0,1410,-23,0,0 +2013,6,28,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,168,1,2000,160,1,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,16,1,1905,37,1,0 +2013,10,19,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1051,-2,0,1310,-5,0,0 +2013,5,12,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1538,9,0,1613,0,0,0 +2013,10,24,4,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1010,-8,0,1158,-13,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2020,-1,0,2245,9,0,0 +2013,4,1,1,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1924,-16,0,2049,-15,0,0 +2013,7,10,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-1,0,1100,-11,0,0 +2013,9,4,3,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,-6,0,1819,-5,0,0 +2013,6,15,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1930,-6,0,2150,1,0,0 +2013,5,1,3,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1027,169,1,1328,156,1,0 +2013,4,28,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,230,-15,0,648,-41,0,0 +2013,10,4,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1435,25,1,1610,15,1,0 +2013,9,16,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-2,0,1030,5,0,0 +2013,5,21,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-4,0,2358,9,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1057,-1,0,1344,-6,0,0 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1630,1,0,1857,-9,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,16,1,1637,11,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1400,12,0,1530,-2,0,0 +2013,8,4,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,-4,0,1854,3,0,0 +2013,7,4,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1020,2,0,1226,-18,0,0 +2013,10,21,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1820,-7,0,2038,-7,0,0 +2013,9,9,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-8,0,1005,-25,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1350,5,0,1830,-25,0,0 +2013,4,30,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1904,-3,0,2155,-1,0,0 +2013,4,21,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-4,0,1814,-2,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2021,0,0,2115,-6,0,0 +2013,5,17,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1051,-14,0,1145,1,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1930,14,0,2310,18,1,0 +2013,7,4,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1930,0,0,2310,-25,0,0 +2013,6,5,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-8,0,638,-25,0,0 +2013,10,21,1,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,905,-5,0,1105,-4,0,0 +2013,7,10,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-6,0,1518,3,0,0 +2013,4,22,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1341,0,0,1820,-17,0,0 +2013,4,15,1,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1900,-4,0,2211,-17,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1600,4,0,1705,-5,0,0 +2013,8,6,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1420,3,0,1650,-6,0,0 +2013,9,7,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-7,0,556,-5,0,0 +2013,7,7,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,2,0,1420,-10,0,0 +2013,9,2,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1408,12,0,0 +2013,4,9,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1058,51,1,1121,44,1,0 +2013,9,23,1,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1655,1,0,1839,5,0,0 +2013,8,14,3,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-7,0,2054,-23,0,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,743,16,1,1103,-4,0,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1813,131,1,2309,113,1,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2200,-5,0,2255,-11,0,0 +2013,8,22,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,610,-13,0,805,32,1,0 +2013,7,2,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,808,12,0,0 +2013,7,30,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-1,0,925,6,0,0 +2013,6,27,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1712,9,0,1836,10,0,0 +2013,6,14,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1424,-6,0,1800,-29,0,0 +2013,9,12,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1250,20,1,1530,13,0,0 +2013,7,25,4,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1225,23,1,1359,24,1,0 +2013,6,23,7,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1601,58,1,1804,55,1,0 +2013,9,6,5,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,-5,0,2027,-17,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1200,29,1,1645,14,0,0 +2013,10,16,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-2,0,750,23,1,0 +2013,4,29,1,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1921,-15,0,2225,16,1,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,26,1,1723,47,1,0 +2013,6,1,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,45,1,1620,32,1,0 +2013,6,20,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,-10,0,1156,-13,0,0 +2013,10,21,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,40,1,2030,33,1,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1800,112,1,1920,101,1,0 +2013,4,21,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1208,-5,0,1525,-13,0,0 +2013,7,5,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-10,0,1930,-20,0,0 +2013,8,8,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,900,-9,0,935,4,0,0 +2013,4,8,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-4,0,920,-8,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2029,17,1,2313,21,1,0 +2013,4,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,1,0,724,-1,0,0 +2013,7,25,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-9,0,2031,-21,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1813,83,1,1948,74,1,0 +2013,9,3,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-2,0,904,-8,0,0 +2013,7,4,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1500,-7,0,1655,-19,0,0 +2013,5,31,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1115,31,1,1240,36,1,0 +2013,5,10,5,EV,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,1125,-6,0,1305,-3,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,906,0,0,1048,-1,0,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2127,4,0,15,-5,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2306,-2,0,2310,0,0,0 +2013,8,30,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-5,0,2047,-19,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-1,0,1433,-9,0,0 +2013,8,28,3,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-9,0,2043,-1,0,0 +2013,4,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1245,-1,0,1845,7,0,0 +2013,4,30,2,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-10,0,1147,-18,0,0 +2013,10,21,1,OO,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,4,0,1030,0,0,0 +2013,4,2,2,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,28,1,2025,17,1,0 +2013,8,17,6,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1210,-8,0,1757,-11,0,0 +2013,6,1,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1245,7,0,2119,0,0,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1630,13,0,1815,2,0,0 +2013,6,24,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,0,0,1520,-7,0,0 +2013,9,28,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,920,-4,0,1045,-10,0,0 +2013,6,26,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,835,0,0,1215,-10,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1105,5,0,1235,2,0,0 +2013,8,11,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-1,0,1245,2,0,0 +2013,6,20,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1040,-9,0,1105,-28,0,0 +2013,8,17,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1344,-8,0,1355,-14,0,0 +2013,8,8,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1115,-1,0,1200,-3,0,0 +2013,9,16,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,545,-4,0,705,-16,0,0 +2013,10,7,1,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1344,-2,0,1517,5,0,0 +2013,10,3,4,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1259,27,1,1606,18,1,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-3,0,1235,-14,0,0 +2013,5,12,7,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-10,0,1635,-1,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,923,17,1,1152,5,0,0 +2013,10,31,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,-8,0,2115,-7,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,726,39,1,857,31,1,0 +2013,10,23,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-2,0,850,2,0,0 +2013,4,14,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,123,1,1357,140,1,0 +2013,5,1,3,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1245,-13,0,1605,-10,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,756,-6,0,935,3,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1935,-1,0,2205,-13,0,0 +2013,5,4,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1819,1,0,2020,-2,0,0 +2013,7,12,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11618,Newark Liberty International,Newark,NJ,1400,-7,0,1529,11,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1923,11,0,2249,-17,0,0 +2013,10,9,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,758,-6,0,1551,13,0,0 +2013,4,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,722,3,0,1130,8,0,0 +2013,7,22,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,24,1,1334,16,1,0 +2013,10,24,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1535,6,0,1715,6,0,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2105,5,0,2340,-10,0,0 +2013,4,22,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,-2,0,1605,-1,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-2,0,1526,-1,0,0 +2013,8,7,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-5,0,755,-26,0,0 +2013,5,19,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-3,0,1350,-10,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1250,17,1,1420,12,0,0 +2013,9,6,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,600,-6,0,725,-8,0,0 +2013,9,12,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-2,0,840,0,0,0 +2013,7,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,715,-2,0,734,-5,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1855,25,1,2120,0,0,0 +2013,6,29,6,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,97,1,1431,109,1,0 +2013,9,11,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1140,2,0,1250,-7,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,3,0,1107,-6,0,0 +2013,10,7,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1700,0,0,1915,13,0,0 +2013,6,22,6,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1645,7,0,1913,8,0,0 +2013,8,30,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1920,3,0,2045,45,1,0 +2013,5,5,7,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1639,-8,0,1930,-21,0,0 +2013,4,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,705,-3,0,825,-16,0,0 +2013,5,20,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-1,0,1815,3,0,0 +2013,4,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2135,-2,0,2157,-8,0,0 +2013,7,20,6,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1510,15,1,1625,10,0,0 +2013,8,6,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1825,152,1,2011,152,1,0 +2013,4,4,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1815,5,0,1950,7,0,0 +2013,5,31,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1115,-3,0,1300,-1,0,0 +2013,7,21,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,910,-7,0,1035,-17,0,0 +2013,10,27,7,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1136,-10,0,1355,-8,0,0 +2013,8,31,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1405,-8,0,1610,-12,0,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,40,1,2100,33,1,0 +2013,4,11,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-3,0,705,6,0,0 +2013,9,7,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1315,-5,0,1600,1,0,0 +2013,7,12,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1359,49,1,1948,32,1,0 +2013,9,16,1,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1711,-10,0,1943,-18,0,0 +2013,7,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-6,0,1325,10,0,0 +2013,4,10,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-3,0,1636,-10,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1151,-3,0,1314,-20,0,0 +2013,4,10,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2135,-1,0,2305,-6,0,0 +2013,8,2,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,0,0,2125,-9,0,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2145,38,1,2230,44,1,0 +2013,8,1,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,7,0,905,6,0,0 +2013,4,20,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,4,0,1320,1,0,0 +2013,5,3,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1835,22,1,2020,23,1,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1600,-2,0,1925,-33,0,0 +2013,4,28,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1222,-5,0,1411,0,0,0 +2013,5,27,1,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1625,103,1,1900,90,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,-5,0,2306,-11,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2005,109,1,2100,106,1,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1310,6,0,1525,-1,0,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1429,5,0,1733,2,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1135,0,0,1450,-7,0,0 +2013,8,9,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-5,0,1205,-2,0,0 +2013,10,15,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1240,-5,0,1400,-4,0,0 +2013,10,5,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-7,0,715,-17,0,0 +2013,6,4,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1245,-5,0,1446,-28,0,0 +2013,6,13,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,112,1,1900,228,1,0 +2013,4,2,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,5,0,1805,-3,0,0 +2013,4,3,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,815,5,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,12,0,2220,16,1,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-2,0,1230,17,1,0 +2013,5,23,4,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1540,42,1,1835,41,1,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,2,0,2107,-8,0,0 +2013,10,26,6,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1220,4,0,1525,-6,0,0 +2013,8,28,3,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1214,-5,0,1856,-7,0,0 +2013,6,19,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1407,5,0,1600,5,0,0 +2013,8,2,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1935,18,1,2302,8,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2145,11,0,15,8,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,810,6,0,1020,1,0,0 +2013,4,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-2,0,2050,-10,0,0 +2013,6,19,3,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-12,0,1124,-28,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1450,8,0,1633,-8,0,0 +2013,10,16,3,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,715,76,1,1047,57,1,0 +2013,4,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,800,1,0,920,-8,0,0 +2013,9,8,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,-3,0,1335,-2,0,0 +2013,5,24,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,-7,0,2050,-21,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,-3,0,1110,-8,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,12,0,1720,4,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1455,-3,0,1720,-1,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,625,-2,0,830,-12,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1205,0,0,1440,5,0,0 +2013,7,19,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1050,-1,0,1235,-20,0,0 +2013,7,26,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1435,139,1,1526,171,1,0 +2013,4,28,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2259,0,0,2349,2,0,0 +2013,8,17,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1030,-4,0,1340,-18,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2101,-6,0,2227,-15,0,0 +2013,4,20,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1248,-1,0,1500,-16,0,0 +2013,8,22,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1515,34,1,1730,29,1,0 +2013,9,23,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,-2,0,1648,-24,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,21,1,1702,3,0,0 +2013,5,22,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,600,-9,0,741,-15,0,0 +2013,5,12,7,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,-6,0,1720,6,0,0 +2013,6,16,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-5,0,1015,-12,0,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,-5,0,2101,-16,0,0 +2013,8,13,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1145,11,0,1310,14,0,0 +2013,7,11,4,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1430,11,0,1611,10,0,0 +2013,9,12,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,3,0,950,-15,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,16,1,922,39,1,0 +2013,4,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,3,0,1230,-2,0,0 +2013,4,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1340,-4,0,1450,-5,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2025,42,1,2340,40,1,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,-2,0,1642,-15,0,0 +2013,7,13,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-3,0,855,-8,0,0 +2013,9,14,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,644,-5,0,855,-31,0,0 +2013,7,15,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,64,1,1112,59,1,0 +2013,9,10,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,18,1,2201,20,1,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1729,-3,0,1932,-18,0,0 +2013,5,13,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1355,-5,0,1502,1,0,0 +2013,7,17,3,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1115,-7,0,1300,-1,0,0 +2013,4,29,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1239,-11,0,1405,-7,0,0 +2013,4,6,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1634,13,0,1814,-5,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,0,0,2214,-3,0,0 +2013,4,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,941,0,,1151,0,1,1 +2013,10,7,1,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,2004,9,0,0 +2013,6,9,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1201,7,0,1348,48,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1435,-1,0,1613,-7,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,735,0,0,941,-1,0,0 +2013,9,3,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,920,-4,0,1040,-10,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1217,-4,0,1318,-11,0,0 +2013,6,16,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1116,-18,0,0 +2013,4,21,7,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,925,-9,0,1110,-27,0,0 +2013,6,2,7,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,837,0,0,1143,-10,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-3,0,1041,-24,0,0 +2013,10,6,7,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,24,1,2045,6,0,0 +2013,9,2,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1515,168,1,1649,204,1,0 +2013,4,20,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,545,15,1,744,17,1,0 +2013,6,11,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-5,0,1047,-14,0,0 +2013,7,1,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1615,0,0,1730,-3,0,0 +2013,5,24,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,2,0,1415,-10,0,0 +2013,5,13,1,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,600,-5,0,701,-20,0,0 +2013,10,20,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,855,-4,0,1225,-21,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,2,0,1855,-9,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,-3,0,2218,16,1,0 +2013,7,16,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1645,15,1,1815,9,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1640,12,0,2320,3,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1025,-1,0,1300,7,0,0 +2013,4,24,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-3,0,740,-4,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,5,0,955,5,0,0 +2013,7,5,5,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-6,0,950,-16,0,0 +2013,6,5,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,48,1,1845,17,1,0 +2013,10,17,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,7,0,1749,11,0,0 +2013,5,22,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,0,0,1825,-6,0,0 +2013,5,27,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1525,-3,0,1820,-7,0,0 +2013,6,6,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,-9,0,2049,-6,0,0 +2013,9,7,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,-3,0,603,-3,0,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-5,0,1628,-12,0,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,0,0,1835,-5,0,0 +2013,10,14,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-6,0,857,16,1,0 +2013,10,18,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,9,0,1926,-8,0,0 +2013,7,16,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1332,27,1,0 +2013,10,7,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1919,109,1,2215,100,1,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1800,62,1,1920,60,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1638,11,0,1804,35,1,0 +2013,10,2,3,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1015,-4,0,1825,-17,0,0 +2013,6,7,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1905,118,1,2020,109,1,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,-3,0,1115,-15,0,0 +2013,4,25,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1915,12,0,2105,7,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,30,1,1558,15,1,0 +2013,6,8,6,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1757,34,1,2040,10,0,0 +2013,10,13,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,12,0,2240,2,0,0 +2013,8,26,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1805,27,1,1925,20,1,0 +2013,9,2,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,95,1,2255,100,1,0 +2013,10,19,6,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1815,58,1,2000,61,1,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1315,3,0,1510,-8,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1055,-6,0,1430,-23,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1135,-7,0,1340,-10,0,0 +2013,10,23,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1920,29,1,2040,19,1,0 +2013,7,28,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2303,-1,0,504,-11,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-2,0,1021,-9,0,0 +2013,8,10,6,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,-6,0,1830,-4,0,0 +2013,9,11,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-7,0,1354,3,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,-1,0,1045,6,0,0 +2013,8,14,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,0,0,1117,1,0,0 +2013,4,12,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,0,0,610,-9,0,0 +2013,5,27,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1950,25,1,2055,49,1,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-3,0,2130,-1,0,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1558,-10,0,20,-54,0,0 +2013,5,15,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1835,128,1,1925,126,1,0 +2013,5,21,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1245,23,1,1543,15,1,0 +2013,5,14,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,650,-2,0,819,-16,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1425,-3,0,1624,-9,0,0 +2013,6,18,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,850,1,0,1013,25,1,0 +2013,6,29,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-7,0,943,-22,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,6,0,1758,-9,0,0 +2013,8,23,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-13,0,2041,-16,0,0 +2013,6,17,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1020,-4,0,1225,-20,0,0 +2013,10,14,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1122,5,0,1628,-8,0,0 +2013,4,11,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1535,23,1,1729,32,1,0 +2013,4,18,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,15,1,1907,20,1,0 +2013,5,9,4,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,-3,0,1620,-7,0,0 +2013,7,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1710,-1,0,1925,-12,0,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2002,4,0,2209,-40,0,0 +2013,4,30,2,EV,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-4,0,1329,-25,0,0 +2013,6,25,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-5,0,2008,-10,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1900,-3,0,2359,-29,0,0 +2013,5,5,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,820,-6,0,1058,-21,0,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-3,0,1030,0,0,0 +2013,7,23,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,-2,0,1115,0,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1245,1,0,1440,2,0,0 +2013,6,5,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1558,-6,0,1712,-19,0,0 +2013,9,7,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1146,-11,0,1432,4,0,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,33,1,1615,29,1,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1840,117,1,2115,125,1,0 +2013,10,23,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1515,5,0,1630,-3,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1422,-3,0,1554,-12,0,0 +2013,7,5,5,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-3,0,1213,-4,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1412,-2,0,1600,-7,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1710,32,1,1829,27,1,0 +2013,9,24,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1310,-3,0,1325,-16,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,1115,-15,0,0 +2013,8,11,7,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,755,-4,0,1245,-16,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1855,11,0,2130,5,0,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,10,0,1905,13,0,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1545,1,0,1650,-4,0,0 +2013,4,23,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,71,1,2240,67,1,0 +2013,4,4,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,535,-6,0,859,-10,0,0 +2013,8,19,1,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,-4,0,1927,-20,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1250,16,1,1442,-1,0,0 +2013,6,8,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,753,-11,0,0 +2013,6,30,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-1,0,1309,-10,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,-4,0,1300,-11,0,0 +2013,5,14,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,807,-8,0,1105,-9,0,0 +2013,8,22,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,710,-10,0,915,-25,0,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1259,97,1,1555,93,1,0 +2013,8,11,7,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1915,-5,0,2221,-24,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,-3,0,1855,-9,0,0 +2013,4,12,5,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1405,-7,0,2215,11,0,0 +2013,4,11,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-1,0,745,-3,0,0 +2013,7,11,4,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1645,12,0,1834,-3,0,0 +2013,9,2,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,36,1,1805,15,1,0 +2013,5,20,1,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1240,45,1,1610,41,1,0 +2013,7,16,2,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,600,-7,0,1409,-6,0,0 +2013,4,26,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-9,0,1945,-16,0,0 +2013,4,27,6,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1315,-6,0,1806,-1,0,0 +2013,8,8,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-8,0,719,-16,0,0 +2013,9,2,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-1,0,1620,-20,0,0 +2013,6,11,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1415,28,1,1815,41,1,0 +2013,10,5,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,93,1,1930,83,1,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1319,159,1,1544,178,1,0 +2013,8,31,6,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,730,-9,0,1021,-23,0,0 +2013,6,23,7,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,6,0,1920,16,1,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2246,6,0,15,-6,0,0 +2013,4,11,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,745,0,0,905,-10,0,0 +2013,10,12,6,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1059,-4,0,1344,6,0,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,952,-2,0,1535,-15,0,0 +2013,10,20,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-6,0,1450,-8,0,0 +2013,5,24,5,FL,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1755,30,1,1845,33,1,0 +2013,9,6,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-4,0,1417,-7,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1120,41,1,1410,42,1,0 +2013,9,14,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,-5,0,1805,-10,0,0 +2013,10,23,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1840,-2,0,2125,-3,0,0 +2013,4,22,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,-4,0,1710,-13,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,935,20,1,1055,23,1,0 +2013,10,19,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1419,-5,0,1440,-16,0,0 +2013,6,10,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,0,0,959,7,0,0 +2013,5,14,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1724,69,1,1905,64,1,0 +2013,10,12,6,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1046,3,0,1618,-2,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,4,0,1420,-1,0,0 +2013,8,21,3,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1041,-6,0,1638,12,0,0 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1725,-5,0,1850,-18,0,0 +2013,6,29,6,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,24,1,1724,16,1,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1741,-4,0,2059,17,1,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,900,-3,0,1015,-3,0,0 +2013,8,21,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-5,0,909,-11,0,0 +2013,4,14,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,842,-6,0,1018,7,0,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,837,-11,0,1047,-28,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1315,11,0,1555,37,1,0 +2013,6,12,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,158,1,2150,138,1,0 +2013,10,19,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,646,-5,0,943,-29,0,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-2,0,913,1,0,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1730,-5,0,2041,6,0,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1845,68,1,2158,82,1,0 +2013,8,11,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1913,18,1,2017,4,0,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-6,0,2307,-18,0,0 +2013,6,23,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1345,0,0,1425,9,0,0 +2013,8,1,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-2,0,1920,-3,0,0 +2013,8,28,3,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,36,1,2057,11,0,0 +2013,10,31,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-1,0,1333,-4,0,0 +2013,8,24,6,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,852,-10,0,1205,-3,0,0 +2013,10,29,2,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1805,-5,0,2055,-27,0,0 +2013,6,28,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,543,81,1,1155,80,1,0 +2013,6,11,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,-1,0,1948,-3,0,0 +2013,4,23,2,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1559,-11,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,857,4,0,1119,8,0,0 +2013,6,9,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1835,10,0,1935,-4,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,930,0,0,1125,8,0,0 +2013,4,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2135,41,1,2245,32,1,0 +2013,9,5,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,610,0,0,735,11,0,0 +2013,6,18,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,63,1,2103,63,1,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-4,0,1010,-19,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1335,0,0,1600,-11,0,0 +2013,7,23,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1830,29,1,1935,26,1,0 +2013,7,31,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1231,18,1,1505,25,1,0 +2013,9,8,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,-1,0,1902,-41,0,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1855,71,1,2204,77,1,0 +2013,7,22,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1425,11,0,1630,33,1,0 +2013,5,18,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1345,0,0,1450,-7,0,0 +2013,8,2,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1640,9,0,1800,30,1,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1744,4,0,1847,25,1,0 +2013,5,16,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1315,33,1,1430,35,1,0 +2013,6,24,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-7,0,1821,-20,0,0 +2013,10,1,2,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,-10,0,2037,-18,0,0 +2013,4,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1915,-3,0,2225,-10,0,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1140,9,0,1405,0,0,0 +2013,10,17,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1451,229,1,1710,207,1,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-2,0,1505,-6,0,0 +2013,8,3,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1355,-2,0,1459,-2,0,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1140,-4,0,1245,-16,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,48,1,1955,53,1,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1530,-2,0,2359,12,0,0 +2013,7,9,2,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1020,5,0,1200,3,0,0 +2013,4,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-13,0,742,-11,0,0 +2013,10,16,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,609,7,0,1430,-16,0,0 +2013,5,28,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1205,4,0,1811,-4,0,0 +2013,6,28,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,129,1,2106,126,1,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1955,28,1,45,19,1,0 +2013,8,21,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,2,0,1425,6,0,0 +2013,4,24,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,600,105,1,745,111,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1630,1,0,1859,-23,0,0 +2013,10,14,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,27,1,2155,19,1,0 +2013,10,5,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1855,69,1,2033,45,1,0 +2013,7,20,6,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,900,-1,0,1115,-9,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,727,-4,0,900,-21,0,0 +2013,9,10,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,111,1,1014,81,1,0 +2013,4,18,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-6,0,2322,-14,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,833,8,0,957,-3,0,0 +2013,4,7,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-1,0,1850,-14,0,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,1,0,1224,-9,0,0 +2013,6,15,6,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1710,16,1,1817,14,0,0 +2013,6,26,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,30,1,1952,15,1,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1925,37,1,2340,33,1,0 +2013,9,2,1,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,825,-5,0,1554,1,0,0 +2013,4,10,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1400,0,,1420,0,1,1 +2013,8,13,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1025,-2,0,1135,-15,0,0 +2013,6,10,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1640,0,,1845,0,1,1 +2013,5,25,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1510,-3,0,1610,16,1,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,900,1,0,1345,6,0,0 +2013,8,3,6,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,3,0,2203,-6,0,0 +2013,8,24,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1415,15,1,1625,12,0,0 +2013,7,18,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-3,0,834,-5,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,15,1,1641,26,1,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,14,0,2311,14,0,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,-3,0,2244,-8,0,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,835,-5,0,956,10,0,0 +2013,4,9,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1525,2,0,1715,-26,0,0 +2013,5,13,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-6,0,1434,-20,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1325,11,0,1545,19,1,0 +2013,7,7,7,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1705,4,0,1830,11,0,0 +2013,7,9,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-4,0,1010,-17,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-3,0,1131,-5,0,0 +2013,7,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1150,9,0,1810,12,0,0 +2013,5,20,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,815,-6,0,917,-3,0,0 +2013,7,19,5,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,610,10,0,745,-4,0,0 +2013,7,30,2,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,953,90,1,1445,69,1,0 +2013,7,1,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1331,-6,0,1602,-7,0,0 +2013,10,22,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1559,-5,0,1829,-23,0,0 +2013,9,7,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1732,19,1,1830,21,1,0 +2013,7,6,6,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,6,0,1220,-24,0,0 +2013,8,7,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-3,0,2130,3,0,0 +2013,9,23,1,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1312,-8,0,1624,-2,0,0 +2013,8,22,4,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-2,0,1305,30,1,0 +2013,7,10,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2325,40,1,712,32,1,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1359,-2,0,1608,-18,0,0 +2013,6,1,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,741,-2,0,910,-1,0,0 +2013,10,28,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,25,1,2035,10,0,0 +2013,5,9,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2132,-1,0,2239,-9,0,0 +2013,10,17,4,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1613,7,0,1717,-1,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,0,0,2055,-9,0,0 +2013,5,30,4,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,0,0,1600,0,0,0 +2013,5,8,3,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1754,36,1,2100,52,1,0 +2013,6,26,3,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,16,1,1916,0,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-2,0,1325,-15,0,0 +2013,9,30,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2020,-3,0,2302,-4,0,0 +2013,7,16,2,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,6,0,1538,23,1,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,925,-5,0,1050,-7,0,0 +2013,6,29,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1940,0,0,2121,-15,0,0 +2013,9,6,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,5,0,1950,-17,0,0 +2013,8,13,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1559,-5,0,2107,-3,0,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1215,-4,0,1335,-6,0,0 +2013,9,11,3,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-4,0,1858,-36,0,0 +2013,7,21,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1910,33,1,2105,28,1,0 +2013,6,14,5,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1315,-6,0,1545,-21,0,0 +2013,9,19,4,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,838,1,0,1444,23,1,0 +2013,4,7,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,752,0,0,905,-11,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2101,-2,0,2223,-20,0,0 +2013,8,19,1,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1425,0,0,1554,-15,0,0 +2013,5,29,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1703,33,1,1848,30,1,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1630,10,0,1835,-2,0,0 +2013,6,7,5,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,0,0,935,9,0,0 +2013,4,13,6,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1730,-3,0,1940,-8,0,0 +2013,10,20,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,9,0,1930,-6,0,0 +2013,10,30,3,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,725,3,0,1010,-14,0,0 +2013,4,3,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1742,37,1,1929,30,1,0 +2013,7,31,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,16,1,1605,12,0,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,840,0,0,1325,12,0,0 +2013,4,19,5,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,635,71,1,723,72,1,0 +2013,9,26,4,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1120,16,1,1225,16,1,0 +2013,6,14,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1615,73,1,1755,116,1,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,1,0,1240,9,0,0 +2013,8,25,7,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1830,9,0,2000,14,0,0 +2013,4,9,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,23,1,1930,22,1,0 +2013,10,9,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,625,2,0,940,4,0,0 +2013,6,27,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-6,0,1300,-10,0,0 +2013,10,23,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-14,0,1829,-31,0,0 +2013,7,3,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-4,0,1150,0,0,0 +2013,9,26,4,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1130,-10,0,1607,9,0,0 +2013,7,28,7,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-3,0,2103,-1,0,0 +2013,9,4,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1645,0,0,1755,-9,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1120,50,1,1334,32,1,0 +2013,10,28,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1735,33,1,2236,13,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,-6,0,1105,-18,0,0 +2013,8,11,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1045,-4,0,1210,-6,0,0 +2013,9,12,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,725,-8,0,951,-11,0,0 +2013,5,25,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-4,0,830,-3,0,0 +2013,5,18,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1800,4,0,2020,-10,0,0 +2013,4,14,7,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,-5,0,1135,-17,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,-2,0,1125,-12,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2110,3,0,2215,-3,0,0 +2013,4,11,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1450,-2,0,1652,1,0,0 +2013,9,4,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-9,0,1030,-22,0,0 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2002,14,0,2337,9,0,0 +2013,7,23,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-4,0,1026,5,0,0 +2013,10,20,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-3,0,940,-6,0,0 +2013,6,6,4,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,706,0,0,935,8,0,0 +2013,8,18,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1700,3,0,1750,-8,0,0 +2013,10,24,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,635,-2,0,835,-8,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1955,1,0,2218,6,0,0 +2013,7,29,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,0,0,759,-5,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,2,0,2000,20,1,0 +2013,5,20,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-9,0,930,10,0,0 +2013,9,30,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-4,0,1410,10,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1739,20,1,2055,9,0,0 +2013,4,22,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,-6,0,1205,-5,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,43,1,950,39,1,0 +2013,10,15,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-4,0,1533,-20,0,0 +2013,6,4,2,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1600,8,0,1740,-1,0,0 +2013,10,6,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,4,0,1930,-12,0,0 +2013,9,30,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,124,1,2200,111,1,0 +2013,8,27,2,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-5,0,856,-30,0,0 +2013,5,31,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,3,0,1510,-6,0,0 +2013,5,27,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,57,1,950,37,1,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,-2,0,1855,-3,0,0 +2013,5,23,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,10,0,1844,7,0,0 +2013,6,20,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,20,1,1840,5,0,0 +2013,8,12,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,810,72,1,1028,61,1,0 +2013,7,15,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,-2,0,1520,0,0,0 +2013,4,6,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,615,-3,0,859,-8,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,-5,0,1135,-15,0,0 +2013,5,7,2,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-4,0,1955,-38,0,0 +2013,5,3,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,15,1,1111,2,0,0 +2013,4,5,5,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,810,9,0,1124,20,1,0 +2013,4,13,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1545,-4,0,1855,-7,0,0 +2013,4,1,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-7,0,1101,-10,0,0 +2013,5,28,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,810,-9,0,1050,-13,0,0 +2013,8,4,7,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,7,0,1330,11,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1715,-2,0,1752,-14,0,0 +2013,7,20,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,-3,0,1525,-11,0,0 +2013,7,21,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,12,0,1440,6,0,0 +2013,9,10,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-6,0,806,0,1,1 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,820,-6,0,1155,-12,0,0 +2013,9,26,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,-6,0,2035,-10,0,0 +2013,6,8,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1010,-1,0,1140,-1,0,0 +2013,5,20,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,1105,4,0,0 +2013,8,18,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-1,0,815,-24,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-5,0,1737,-10,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-4,0,1104,9,0,0 +2013,5,23,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,12,0,1353,8,0,0 +2013,5,1,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-7,0,1247,-8,0,0 +2013,6,23,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1000,-3,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1505,71,1,1820,76,1,0 +2013,8,18,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-10,0,1058,-29,0,0 +2013,9,26,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,856,-8,0,1110,-13,0,0 +2013,7,24,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-4,0,450,6,0,0 +2013,10,17,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2030,23,1,2205,11,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,11,0,1530,8,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2106,8,0,2244,-18,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,0,0,2145,-1,0,0 +2013,8,3,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1341,-6,0,1647,5,0,0 +2013,4,23,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,615,-4,0,650,-4,0,0 +2013,10,30,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1102,2,0,1154,-3,0,0 +2013,10,9,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1540,59,1,1742,48,1,0 +2013,5,17,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-8,0,1400,-19,0,0 +2013,9,15,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1045,0,0,1135,-1,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,1,0,1051,-18,0,0 +2013,8,31,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1030,0,,1320,0,1,1 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,-6,0,2128,-17,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2251,-11,0,28,-23,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,0,0,955,-25,0,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,131,1,2155,148,1,0 +2013,9,26,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,810,-1,0,925,-5,0,0 +2013,7,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2103,1,0,2222,-16,0,0 +2013,10,2,3,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1140,18,1,1305,10,0,0 +2013,8,22,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1841,-4,0,1945,-6,0,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,-2,0,1924,21,1,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1124,-3,0,1303,-12,0,0 +2013,7,11,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,55,1,1159,66,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,26,1,1245,25,1,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,650,3,0,1210,13,0,0 +2013,7,13,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-1,0,1230,-21,0,0 +2013,6,4,2,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2359,-4,0,249,-3,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-7,0,945,-1,0,0 +2013,5,22,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,646,-12,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1350,8,0,1638,-23,0,0 +2013,8,12,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,-7,0,1905,0,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2140,23,1,2315,8,0,0 +2013,7,6,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,750,-6,0,1542,-18,0,0 +2013,6,28,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,44,1,2126,53,1,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1640,35,1,1850,38,1,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,820,6,0,1150,9,0,0 +2013,7,22,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,21,1,2320,25,1,0 +2013,4,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1135,-4,0,1725,-6,0,0 +2013,9,1,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1035,-9,0,1241,-14,0,0 +2013,9,16,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1645,-8,0,1930,-14,0,0 +2013,4,9,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,600,-4,0,803,-7,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1745,-1,0,2014,8,0,0 +2013,4,3,3,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1201,38,1,1640,31,1,0 +2013,7,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,622,-7,0,654,-4,0,0 +2013,5,7,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,620,0,0,902,-9,0,0 +2013,8,6,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1054,0,,1145,0,1,1 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1235,2,0,1415,1,0,0 +2013,10,8,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-4,0,1245,-22,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,73,1,2135,59,1,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1333,17,1,1639,3,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-6,0,1001,16,1,0 +2013,10,30,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1440,-5,0,1553,-3,0,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1640,-2,0,1704,-6,0,0 +2013,5,10,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1330,19,1,1635,12,0,0 +2013,4,24,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,800,5,0,1053,8,0,0 +2013,4,21,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,-2,0,1221,-27,0,0 +2013,8,29,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,-5,0,1115,-14,0,0 +2013,10,2,3,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-7,0,2054,-15,0,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,0,0,1214,5,0,0 +2013,4,21,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1449,-21,0,0 +2013,8,13,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,22,1,1925,23,1,0 +2013,10,21,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1335,-7,0,1435,-15,0,0 +2013,5,12,7,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1415,-3,0,2010,7,0,0 +2013,10,2,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,600,0,0,745,-16,0,0 +2013,4,27,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,742,-6,0,914,-14,0,0 +2013,5,19,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1242,32,1,1535,141,1,0 +2013,8,28,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,614,11,0,809,4,0,0 +2013,5,7,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-3,0,1305,-15,0,0 +2013,8,10,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-4,0,1315,-8,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2000,30,1,2130,31,1,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1505,12,0,1835,10,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,745,20,1,1040,4,0,0 +2013,8,25,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,-7,0,1010,-13,0,0 +2013,5,11,6,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,4,0,1115,7,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,700,-3,0,1031,-12,0,0 +2013,6,30,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,7,0,1555,-8,0,0 +2013,9,16,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,0,0,1226,-4,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,612,-9,0,725,-12,0,0 +2013,10,16,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,840,-1,0,1210,-16,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,-1,0,2026,-2,0,0 +2013,7,28,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,913,-24,0,0 +2013,7,10,3,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1731,68,1,2056,51,1,0 +2013,6,20,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1650,16,1,1740,20,1,0 +2013,9,24,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-3,0,1150,-8,0,0 +2013,4,17,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2040,133,1,2140,152,1,0 +2013,4,14,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1617,-12,0,1830,-29,0,0 +2013,4,29,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1915,-8,0,2106,-11,0,0 +2013,9,4,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,1,0,1900,-10,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1840,7,0,2356,-9,0,0 +2013,9,17,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1414,-11,0,1614,-11,0,0 +2013,4,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,853,2,0,958,-3,0,0 +2013,5,5,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,805,-5,0,1043,-22,0,0 +2013,5,5,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1123,3,0,1341,-2,0,0 +2013,7,9,2,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1521,23,1,1824,9,0,0 +2013,4,4,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,0,0,1850,6,0,0 +2013,7,29,1,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1524,-4,0,1845,-20,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,919,20,1,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1758,-1,0,1930,-16,0,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1710,-3,0,1905,30,1,0 +2013,5,6,1,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,5,0,1912,5,0,0 +2013,7,27,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-7,0,902,-12,0,0 +2013,9,26,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-8,0,759,-10,0,0 +2013,8,23,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,-4,0,1929,9,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,4,0,1255,-2,0,0 +2013,9,17,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1235,4,0,1440,4,0,0 +2013,7,30,2,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1420,3,0,1605,7,0,0 +2013,8,25,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1740,118,1,1850,123,1,0 +2013,6,3,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-6,0,1400,-9,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1341,-5,0,1450,-2,0,0 +2013,4,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,-5,0,1350,-23,0,0 +2013,7,2,2,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-4,0,545,20,1,0 +2013,6,8,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1804,-10,0,1827,-21,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1347,0,0,1417,-2,0,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1106,-3,0,1650,1,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1550,123,1,1835,117,1,0 +2013,4,21,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-3,0,1220,2,0,0 +2013,7,6,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,812,-1,0,1200,-6,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2005,-1,0,2107,-22,0,0 +2013,10,29,2,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,715,-7,0,832,3,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1859,1,0,2112,-26,0,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,-2,0,2330,-20,0,0 +2013,4,12,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1805,-4,0,2336,2,0,0 +2013,8,13,2,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,747,-5,0,1115,-27,0,0 +2013,6,28,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,645,-1,0,925,-3,0,0 +2013,6,21,5,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1540,0,0,1649,-9,0,0 +2013,4,15,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1457,4,0,1805,-6,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,17,1,1021,22,1,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,10,0,1605,3,0,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1900,64,1,2120,53,1,0 +2013,6,19,3,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,806,-3,0,1015,-7,0,0 +2013,4,28,7,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,18,1,1910,16,1,0 +2013,8,18,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-3,0,957,-5,0,0 +2013,6,21,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1930,-7,0,2020,-7,0,0 +2013,10,18,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-3,0,1358,-10,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,8,0,2346,7,0,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1826,8,0,2056,9,0,0 +2013,7,2,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1921,15,1,1939,32,1,0 +2013,8,21,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,44,1,1336,38,1,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1120,-2,0,1325,3,0,0 +2013,5,6,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,42,1,1120,37,1,0 +2013,6,1,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2115,16,1,2220,8,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1340,0,0,1455,-10,0,0 +2013,5,11,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1420,-8,0,1703,-4,0,0 +2013,10,18,5,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1140,-11,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2100,1,0,2241,4,0,0 +2013,6,2,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,10,0,1945,5,0,0 +2013,10,27,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,1,0,2149,-8,0,0 +2013,9,9,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1135,-5,0,1315,7,0,0 +2013,5,23,4,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-6,0,1852,-7,0,0 +2013,8,31,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-2,0,847,1,0,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-8,0,1230,7,0,0 +2013,7,28,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-7,0,1100,-11,0,0 +2013,8,25,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1340,-4,0,1430,-8,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1710,37,1,2005,22,1,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1222,3,0,1502,8,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1814,152,1,2040,146,1,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-4,0,1500,-31,0,0 +2013,10,19,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,620,-3,0,725,19,1,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,625,5,0,904,9,0,0 +2013,4,29,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,-1,0,1735,-3,0,0 +2013,7,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1155,-5,0,1454,-12,0,0 +2013,4,18,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,1,0,607,2,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,12,0,2058,10,0,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1422,139,1,1649,123,1,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,-1,0,1149,8,0,0 +2013,4,20,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1402,-8,0,1515,-15,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,7,0,1631,4,0,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,-6,0,1525,-11,0,0 +2013,9,24,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1031,-8,0,1226,-18,0,0 +2013,10,30,3,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-8,0,1808,10,0,0 +2013,8,13,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2040,33,1,2245,27,1,0 +2013,6,22,6,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1610,-10,0,1822,-19,0,0 +2013,7,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1155,-2,0,1454,-12,0,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1951,1,0,2130,-21,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1909,-1,0,2027,-6,0,0 +2013,9,29,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-5,0,1755,10,0,0 +2013,7,24,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,708,169,1,912,152,1,0 +2013,8,15,4,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1927,-8,0,2004,-20,0,0 +2013,8,9,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1350,0,0,1640,0,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-7,0,2342,-2,0,0 +2013,8,11,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1930,57,1,2015,63,1,0 +2013,4,21,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,820,-1,0,925,-13,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1515,144,1,1720,140,1,0 +2013,10,5,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2340,-3,0,604,-5,0,0 +2013,9,9,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1120,7,0,1205,-2,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2235,0,0,2325,-1,0,0 +2013,9,19,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1040,18,1,1131,21,1,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1047,4,0,1422,2,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,61,1,2105,43,1,0 +2013,8,29,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,720,-7,0,1143,12,0,0 +2013,7,20,6,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1430,-2,0,2255,-7,0,0 +2013,6,13,4,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,942,-1,0,1055,-5,0,0 +2013,4,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1515,-5,0,2043,-11,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1637,-3,0,59,-22,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1325,-1,0,1630,-2,0,0 +2013,10,24,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-7,0,1006,-10,0,0 +2013,8,3,6,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,845,-4,0,1135,-13,0,0 +2013,8,11,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1228,-4,0,2021,-20,0,0 +2013,7,5,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1241,1,0,1518,-7,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,650,2,0,910,-3,0,0 +2013,4,26,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,834,7,0,1116,6,0,0 +2013,10,11,5,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1827,0,,2029,0,1,1 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,9,0,1705,0,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,2,0,2155,-1,0,0 +2013,10,22,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1433,-6,0,1540,-7,0,0 +2013,5,22,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1550,26,1,1748,30,1,0 +2013,9,12,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-5,0,1315,-13,0,0 +2013,8,14,3,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1307,-19,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1540,165,1,1558,172,1,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1945,-5,0,2104,-26,0,0 +2013,4,6,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,900,-3,0,1030,-2,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,61,1,2235,73,1,0 +2013,10,1,2,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,750,-1,0,1010,-3,0,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1550,50,1,2359,70,1,0 +2013,6,29,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1029,46,1,1323,72,1,0 +2013,7,13,6,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,635,2,0,840,12,0,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,1,0,1813,-4,0,0 +2013,8,21,3,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,-3,0,1905,-6,0,0 +2013,6,21,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,0,0,1855,-7,0,0 +2013,6,10,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,39,1,1920,51,1,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1435,-1,0,1615,-22,0,0 +2013,7,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1127,-5,0,1217,-8,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-6,0,1236,-16,0,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1920,-4,0,2135,-10,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1945,-9,0,2250,-5,0,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1250,-6,0,1357,-10,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-4,0,1453,-12,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1825,-3,0,2018,-15,0,0 +2013,9,15,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2105,31,1,22,14,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1506,-1,0,1608,2,0,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,605,-1,0,830,-9,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1315,6,0,1405,18,1,0 +2013,9,10,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-8,0,1311,-27,0,0 +2013,8,2,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-12,0,1254,-28,0,0 +2013,9,2,1,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1720,34,1,1850,11,0,0 +2013,4,16,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-6,0,1744,-32,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1620,0,0,1940,0,0,0 +2013,10,30,3,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1735,23,1,1810,24,1,0 +2013,4,10,3,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,950,-5,0,1256,11,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,905,-5,0,1058,-8,0,0 +2013,8,8,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,62,1,1749,67,1,0 +2013,4,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1130,47,1,1250,39,1,0 +2013,6,11,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,845,1,0,1230,-4,0,0 +2013,10,16,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1930,-5,0,2040,-13,0,0 +2013,4,12,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1505,-4,0,1913,-5,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,2004,28,1,2314,37,1,0 +2013,7,18,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,0,0,910,34,1,0 +2013,6,7,5,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,740,-5,0,1020,-2,0,0 +2013,8,3,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,920,-2,0,1025,2,0,0 +2013,6,16,7,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1712,-3,0,1820,-10,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1630,-4,0,1758,-12,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,825,-4,0,920,-11,0,0 +2013,9,13,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1640,6,0,1730,12,0,0 +2013,7,10,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1115,-6,0,1231,2,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1652,-5,0,1754,-14,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-1,0,1918,-12,0,0 +2013,8,1,4,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-12,0,910,-13,0,0 +2013,10,1,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1436,-11,0,1808,-30,0,0 +2013,9,26,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,44,0,0,555,-10,0,0 +2013,9,24,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,2,0,619,4,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1320,-1,0,1720,-13,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1955,3,0,2115,-1,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,703,1,0,840,-7,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1419,42,1,1625,34,1,0 +2013,7,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1740,5,0,1850,-7,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1645,14,0,1845,6,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,-3,0,2004,-1,0,0 +2013,10,19,6,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1002,-4,0,1210,-8,0,0 +2013,8,11,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,710,-4,0,1030,-18,0,0 +2013,9,18,3,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,8,0,955,-3,0,0 +2013,5,22,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1520,18,1,1830,32,1,0 +2013,8,1,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,705,-5,0,835,-12,0,0 +2013,8,11,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,724,-13,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,108,1,2259,109,1,0 +2013,4,16,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2040,57,1,2200,40,1,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1150,-2,0,1305,-8,0,0 +2013,5,9,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,2,0,1845,-11,0,0 +2013,5,17,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,625,-1,0,925,-28,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,40,1,1623,68,1,0 +2013,7,6,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1940,-3,0,2040,-1,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,8,0,1847,19,1,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1033,-5,0,1209,-13,0,0 +2013,6,4,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1145,-1,0,1350,0,0,0 +2013,6,7,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,645,0,0,705,2,0,0 +2013,7,2,2,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1729,-1,0,30,4,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1320,12,0,1725,4,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2004,-2,0,2126,-3,0,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1535,-11,0,1737,-14,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,4,0,1825,-3,0,0 +2013,9,20,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,920,35,1,1205,7,0,0 +2013,9,5,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,925,-1,0,1050,-5,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2355,4,0,723,0,0,0 +2013,10,25,5,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,900,-11,0,1123,-8,0,0 +2013,6,21,5,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-7,0,955,-34,0,0 +2013,7,5,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-5,0,1810,-12,0,0 +2013,7,17,3,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,5,0,626,13,0,0 +2013,7,2,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-9,0,2035,-6,0,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,-8,0,1654,-12,0,0 +2013,5,14,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-7,0,655,0,0,0 +2013,9,17,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,937,61,1,1116,57,1,0 +2013,8,20,2,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1850,12,0,2030,10,0,0 +2013,8,12,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1745,88,1,1945,71,1,0 +2013,9,2,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,20,1,1905,13,0,0 +2013,4,27,6,EV,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1000,-2,0,1447,31,1,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,17,1,2010,13,0,0 +2013,9,13,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,-4,0,1738,-8,0,0 +2013,4,9,2,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,616,-9,0,1000,-23,0,0 +2013,4,12,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2000,1,0,2100,6,0,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1305,-7,0,1622,-22,0,0 +2013,8,7,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1140,-1,0,1331,-6,0,0 +2013,10,25,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1229,-6,0,1515,-19,0,0 +2013,5,23,4,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1430,12,0,1603,21,1,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,-4,0,1039,21,1,0 +2013,9,13,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1448,-6,0,1653,-18,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1610,0,0,1745,-16,0,0 +2013,7,15,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,-3,0,1115,-48,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,755,-3,0,1055,-11,0,0 +2013,10,12,6,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-4,0,929,-3,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,859,50,1,1110,54,1,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,4,0,1724,4,0,0 +2013,4,22,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,545,-8,0,1159,-40,0,0 +2013,7,25,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,90,1,1022,82,1,0 +2013,10,17,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1006,-4,0,1214,-7,0,0 +2013,10,4,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1710,41,1,2315,44,1,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1150,5,0,1325,-9,0,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1430,-4,0,1842,-4,0,0 +2013,8,7,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,803,-6,0,827,11,0,0 +2013,8,4,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,0,0,1823,-11,0,0 +2013,10,11,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1220,115,1,1355,107,1,0 +2013,8,5,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-12,0,1242,-12,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1205,-3,0,1345,9,0,0 +2013,9,21,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,659,72,1,1207,46,1,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1245,-1,0,1413,-10,0,0 +2013,9,24,2,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1120,18,1,1225,11,0,0 +2013,8,22,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,6,0,1430,5,0,0 +2013,6,4,2,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,845,-3,0,1119,-18,0,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1455,18,1,1617,19,1,0 +2013,6,13,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,135,1,1020,140,1,0 +2013,6,24,1,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,820,-2,0,1005,6,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,604,-2,0,728,-25,0,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,-4,0,1140,-5,0,0 +2013,5,16,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,900,-5,0,1210,-22,0,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,2145,12,0,2314,5,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1415,17,1,1740,18,1,0 +2013,5,23,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,-6,0,930,3,0,0 +2013,9,8,7,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-10,0,716,-19,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,805,-2,0,946,-22,0,0 +2013,5,3,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,0,,1714,0,1,1 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,1,0,815,-4,0,0 +2013,5,1,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-7,0,2103,6,0,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,-1,0,920,-4,0,0 +2013,9,26,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1645,2,0,1800,9,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1843,129,1,2016,100,1,0 +2013,7,15,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-3,0,1215,-5,0,0 +2013,5,19,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-8,0,1135,-34,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1330,23,1,1445,32,1,0 +2013,4,11,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,605,-10,0,730,-4,0,0 +2013,6,5,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1635,0,0,1815,15,1,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,-3,0,2327,-1,0,0 +2013,7,28,7,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-1,0,626,-3,0,0 +2013,6,15,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,17,1,1615,8,0,0 +2013,7,21,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-3,0,1540,-9,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,17,1,2020,59,1,0 +2013,4,27,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1300,105,1,1335,111,1,0 +2013,10,20,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,3,0,735,1,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,2,0,1209,-27,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-1,0,1049,-15,0,0 +2013,7,2,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-6,0,1447,15,1,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1815,1,0,2052,0,0,0 +2013,5,5,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1405,3,0,1530,5,0,0 +2013,7,23,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1246,-2,0,1527,-8,0,0 +2013,4,8,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1400,-3,0,1812,21,1,0 +2013,7,31,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1822,36,1,2100,41,1,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,0,0,1005,9,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,825,-3,0,1010,-11,0,0 +2013,4,18,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,908,18,1,1418,18,1,0 +2013,9,3,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,800,-9,0,1605,-5,0,0 +2013,10,31,4,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-4,0,905,-11,0,0 +2013,10,14,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,800,18,1,1122,10,0,0 +2013,7,5,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,0,0,1714,17,1,0 +2013,8,7,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1605,-3,0,1642,-4,0,0 +2013,10,31,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1029,-6,0,1214,0,0,0 +2013,5,18,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1032,19,1,1208,5,0,0 +2013,6,6,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1109,8,0,1413,11,0,0 +2013,8,23,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,1,0,1820,5,0,0 +2013,6,1,6,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1805,149,1,2042,138,1,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,4,0,1835,-3,0,0 +2013,10,6,7,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,6,0,1651,14,0,0 +2013,10,3,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,1,0,835,12,0,0 +2013,5,18,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1100,-5,0,1340,-4,0,0 +2013,10,23,3,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,-1,0,1250,-12,0,0 +2013,10,28,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-2,0,925,10,0,0 +2013,10,15,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-4,0,1116,-2,0,0 +2013,9,28,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-5,0,1456,-15,0,0 +2013,6,24,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,1,0,1435,1,0,0 +2013,7,4,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,13,0,1715,15,1,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1720,42,1,1835,42,1,0 +2013,10,18,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-9,0,1600,14,0,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1950,55,1,2240,79,1,0 +2013,4,1,1,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,0,0,800,-15,0,0 +2013,6,13,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1225,18,1,1435,15,1,0 +2013,10,13,7,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,19,1,1450,7,0,0 +2013,10,1,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,940,0,0,1055,-5,0,0 +2013,4,28,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1300,-1,0,1405,-7,0,0 +2013,10,19,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,645,0,0,938,-2,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2002,-3,0,2346,-10,0,0 +2013,7,2,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-4,0,642,4,0,0 +2013,7,28,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,-1,0,940,0,0,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1805,62,1,1938,84,1,0 +2013,10,27,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,34,1,2050,23,1,0 +2013,8,19,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1035,15,1,1125,15,1,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1340,2,0,1544,-2,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,110,1,2225,89,1,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,28,1,1231,15,1,0 +2013,4,30,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,-4,0,725,-13,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2230,3,0,55,-1,0,0 +2013,8,7,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,817,-1,0,1412,-13,0,0 +2013,8,18,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,48,1,1900,33,1,0 +2013,8,22,4,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,825,-9,0,1207,-6,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,620,-7,0,855,1,0,0 +2013,5,29,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,725,-4,0,820,-1,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,-2,0,1143,-9,0,0 +2013,6,8,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,759,-2,0,0 +2013,9,17,2,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1706,32,1,1953,16,1,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2020,-2,0,2220,-4,0,0 +2013,4,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,705,9,0,813,-4,0,0 +2013,7,10,3,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,7,0,920,8,0,0 +2013,7,27,6,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1305,7,0,1402,-1,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1530,77,1,2100,72,1,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2059,23,1,2358,24,1,0 +2013,8,25,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1450,-3,0,1605,-16,0,0 +2013,10,17,4,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1058,1,0,1139,-1,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-1,0,1747,11,0,0 +2013,6,19,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,-8,0,1920,-20,0,0 +2013,9,18,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,5,0,1303,2,0,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-6,0,1428,-17,0,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,847,-5,0,1045,-15,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,-2,0,2012,-17,0,0 +2013,6,16,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1447,-7,0,1633,-9,0,0 +2013,6,21,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,0,,1816,0,1,1 +2013,5,22,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1733,2,0,2039,-5,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,935,-8,0,1113,-26,0,0 +2013,9,26,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-2,0,813,7,0,0 +2013,5,30,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,1,0,1916,26,1,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,24,1,1335,20,1,0 +2013,6,16,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1530,3,0,1630,3,0,0 +2013,4,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1445,-1,0,1640,-16,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1610,31,1,1715,28,1,0 +2013,5,23,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2110,34,1,2125,21,1,0 +2013,7,26,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-10,0,1128,-14,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,1,0,1225,2,0,0 +2013,8,22,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1643,53,1,1907,20,1,0 +2013,4,21,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1320,19,1,1710,21,1,0 +2013,6,20,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,-3,0,646,5,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1405,-9,0,0 +2013,10,14,1,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1306,31,1,1439,25,1,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2210,-3,0,50,-12,0,0 +2013,4,21,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,900,-4,0,1210,-20,0,0 +2013,4,11,4,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1755,0,0,1957,-19,0,0 +2013,5,28,2,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,940,6,0,1030,-2,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,13,0,1005,22,1,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1219,-5,0,1709,-12,0,0 +2013,8,15,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,-7,0,935,-13,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2002,-4,0,2058,-14,0,0 +2013,5,30,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1340,5,0,1507,-9,0,0 +2013,6,14,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1006,-4,0,1635,37,1,0 +2013,8,23,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1415,89,1,2030,65,1,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,14,0,1441,32,1,0 +2013,8,8,4,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,14,0,2015,18,1,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,10,0,1303,29,1,0 +2013,6,17,1,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1859,48,1,2014,55,1,0 +2013,4,6,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1745,-7,0,1835,-13,0,0 +2013,4,11,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1645,0,,1842,0,1,1 +2013,10,13,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1345,0,0,1432,-7,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1620,-2,0,1801,-18,0,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1328,33,1,1819,27,1,0 +2013,6,10,1,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-5,0,1019,-10,0,0 +2013,10,14,1,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1244,25,1,1539,2,0,0 +2013,5,26,7,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1734,-2,0,1855,-14,0,0 +2013,7,5,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-5,0,1949,19,1,0 +2013,8,17,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1735,4,0,1759,-4,0,0 +2013,7,8,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,737,-4,0,920,-29,0,0 +2013,4,10,3,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,650,3,0,855,-10,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,-2,0,2013,-10,0,0 +2013,6,21,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,11,0,850,5,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,935,17,1,1055,15,1,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,14,0,2329,6,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1500,-6,0,2148,-23,0,0 +2013,6,17,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-4,0,815,0,0,0 +2013,6,7,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1312,21,1,1437,24,1,0 +2013,9,5,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1540,3,0,1646,-10,0,0 +2013,5,8,3,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1215,49,1,1355,40,1,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,-7,0,1335,-12,0,0 +2013,9,19,4,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,103,1,2300,109,1,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,5,0,1617,0,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1025,-2,0,1450,-6,0,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1340,-4,0,1615,-18,0,0 +2013,8,2,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1115,3,0,1355,-2,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1135,21,1,1609,13,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,719,-5,0,1140,-4,0,0 +2013,4,15,1,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,801,-8,0,1100,-24,0,0 +2013,10,11,5,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1830,2,0,2051,-3,0,0 +2013,5,7,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,900,-2,0,1053,-4,0,0 +2013,10,21,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2010,22,1,2155,1,0,0 +2013,7,2,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-9,0,1755,-17,0,0 +2013,5,10,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,6,0,1320,1,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,-2,0,1830,-18,0,0 +2013,9,10,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,-4,0,2159,-7,0,0 +2013,10,29,2,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1250,-9,0,1606,-21,0,0 +2013,9,16,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,2,0,1925,-8,0,0 +2013,9,26,4,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,-5,0,943,-9,0,0 +2013,8,20,2,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1329,0,0,1432,-2,0,0 +2013,6,25,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1425,1,0,1547,-4,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,0,0,1248,-14,0,0 +2013,6,7,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-5,0,949,2,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,945,-2,0,1205,-13,0,0 +2013,10,25,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-9,0,2206,-16,0,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,-5,0,951,-3,0,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-7,0,1652,11,0,0 +2013,6,26,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,-4,0,1433,-10,0,0 +2013,8,4,7,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-3,0,2019,0,0,0 +2013,9,11,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1510,-11,0,1612,-18,0,0 +2013,7,12,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1650,13,0,1905,49,1,0 +2013,4,23,2,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,14,0,1245,27,1,0 +2013,6,22,6,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,-6,0,1936,17,1,0 +2013,6,15,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,18,1,1720,10,0,0 +2013,10,2,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1047,-5,0,1420,-7,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1631,-2,0,1730,-5,0,0 +2013,7,27,6,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,26,1,1951,25,1,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,87,1,1735,91,1,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-3,0,1914,-20,0,0 +2013,6,28,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1549,29,1,0 +2013,5,30,4,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1730,0,,1930,0,1,1 +2013,9,18,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1515,-4,0,1813,-14,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,37,1,1600,63,1,0 +2013,6,18,2,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,2,0,944,3,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1800,36,1,1905,77,1,0 +2013,6,25,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1144,3,0,1256,-4,0,0 +2013,8,25,7,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,835,-12,0,1144,-11,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1602,157,1,1849,255,1,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,36,1,900,37,1,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,-3,0,1200,-1,0,0 +2013,9,2,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,-5,0,1355,-10,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,-1,0,1810,-3,0,0 +2013,4,2,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,840,-3,0,1209,-15,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1910,0,,2140,0,1,1 +2013,4,22,1,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,925,7,0,1302,14,0,0 +2013,9,27,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-7,0,1725,-12,0,0 +2013,10,17,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,0,0,1635,-1,0,0 +2013,8,28,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,4,0,1553,8,0,0 +2013,10,31,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1420,1,0,1747,-1,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,21,1,1015,11,0,0 +2013,7,22,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14747,Seattle/Tacoma International,Seattle,WA,829,-3,0,1033,-12,0,0 +2013,6,11,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-6,0,603,-18,0,0 +2013,8,19,1,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,700,1,0,950,1,0,0 +2013,9,29,7,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1710,-10,0,1930,12,0,0 +2013,4,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1503,-7,0,1830,-20,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2010,43,1,2140,29,1,0 +2013,7,11,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2055,0,0,2120,-10,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1510,-9,0,2048,-21,0,0 +2013,9,17,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-2,0,809,-8,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2205,-2,0,2346,-18,0,0 +2013,7,8,1,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,5,0,1630,-22,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2209,-3,0,2348,12,0,0 +2013,10,7,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-7,0,1355,-11,0,0 +2013,10,10,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,-5,0,2122,-7,0,0 +2013,6,2,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-2,0,859,-1,0,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,0,0,1320,5,0,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1300,23,1,1415,16,1,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,15,1,1845,9,0,0 +2013,7,17,3,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1015,-3,0,1145,-14,0,0 +2013,8,3,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,739,77,1,845,71,1,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-2,0,830,-7,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,7,0,2300,-24,0,0 +2013,8,7,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1256,8,0,1400,13,0,0 +2013,6,12,3,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,-8,0,1034,-8,0,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1040,-1,0,1355,-12,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,-4,0,1305,-5,0,0 +2013,6,20,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-2,0,915,-9,0,0 +2013,4,6,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1013,30,1,1412,79,1,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,819,25,1,1310,20,1,0 +2013,7,16,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,3,0,1825,-1,0,0 +2013,7,3,3,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,36,1,1330,17,1,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1455,40,1,1810,28,1,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,33,1,2226,33,1,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2155,11,0,2300,10,0,0 +2013,9,18,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1010,-5,0,1445,-16,0,0 +2013,9,9,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,6,0,1620,4,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,620,-4,0,825,-13,0,0 +2013,6,26,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,830,0,0,940,-3,0,0 +2013,6,4,2,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1850,-7,0,2024,6,0,0 +2013,5,18,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,900,-7,0,1034,-7,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,745,-4,0,936,-6,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-9,0,1038,-14,0,0 +2013,7,14,7,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2153,-7,0,558,21,1,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1015,9,0,1455,-3,0,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,21,1,1755,-1,0,0 +2013,5,21,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1037,198,1,1250,191,1,0 +2013,5,7,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1000,-6,0,1105,-25,0,0 +2013,10,31,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-7,0,1049,13,0,0 +2013,5,29,3,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,-4,0,1820,5,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,800,1,0,925,-16,0,0 +2013,5,29,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,740,-1,0,915,4,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1300,-3,0,1540,-14,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1635,-3,0,1805,-17,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1300,-3,0,1400,-6,0,0 +2013,8,13,2,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,900,-3,0,1150,-10,0,0 +2013,5,8,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-10,0,747,-18,0,0 +2013,5,18,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1801,-1,0,2040,-9,0,0 +2013,4,12,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1100,-1,0,1354,-10,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1735,65,1,1856,50,1,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1850,3,0,1945,-9,0,0 +2013,4,21,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-6,0,1032,9,0,0 +2013,4,18,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-6,0,1005,25,1,0 +2013,9,11,3,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1437,3,0,1925,11,0,0 +2013,10,8,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-6,0,2020,-8,0,0 +2013,10,7,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,3,0,1805,8,0,0 +2013,4,22,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1320,26,1,1425,29,1,0 +2013,7,24,3,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1515,2,0,1825,-3,0,0 +2013,8,1,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1730,12,0,1905,22,1,0 +2013,5,1,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1738,7,0,1818,3,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-1,0,2021,-12,0,0 +2013,5,30,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1818,-6,0,1940,0,0,0 +2013,9,6,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1645,-9,0,1930,-7,0,0 +2013,10,14,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1910,-3,0,2040,-3,0,0 +2013,5,26,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,-6,0,1600,-15,0,0 +2013,7,7,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,-5,0,830,-10,0,0 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1445,20,1,1538,25,1,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1829,3,0,2155,4,0,0 +2013,5,2,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,745,-2,0,1025,-38,0,0 +2013,4,5,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,38,1,1810,37,1,0 +2013,7,30,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,141,1,1106,144,1,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1740,22,1,2100,11,0,0 +2013,10,1,2,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1503,0,0,1604,0,0,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,0,0,1330,-7,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2030,28,1,2314,27,1,0 +2013,5,18,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,810,-2,0,915,-9,0,0 +2013,8,23,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-6,0,1634,-10,0,0 +2013,9,23,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,920,0,0,1255,-4,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,2,0,1630,-2,0,0 +2013,6,15,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,815,-5,0,950,-7,0,0 +2013,5,4,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,-11,0,940,5,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1719,44,1,1829,59,1,0 +2013,8,14,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1534,4,0,1723,-14,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,755,-3,0,1000,-5,0,0 +2013,4,5,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1910,-4,0,2030,-14,0,0 +2013,8,21,3,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-6,0,1240,5,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2115,3,0,2223,-13,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1301,-2,0,1406,-15,0,0 +2013,7,26,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1915,-1,0,2211,-31,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1529,-6,0,1713,-19,0,0 +2013,10,4,5,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1355,-6,0,1542,-16,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1900,119,1,2325,125,1,0 +2013,10,2,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,-1,0,2015,-14,0,0 +2013,7,10,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2308,0,,2355,0,1,1 +2013,9,15,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-6,0,1603,-14,0,0 +2013,5,1,3,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-1,0,1643,1,0,0 +2013,7,24,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1802,33,1,2017,25,1,0 +2013,9,16,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1715,3,0,2005,-8,0,0 +2013,4,8,1,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1505,45,1,1806,48,1,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1815,45,1,1910,35,1,0 +2013,9,26,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,34,1,1455,31,1,0 +2013,6,3,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,600,-1,0,700,-10,0,0 +2013,7,12,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2030,4,0,2115,15,1,0 +2013,10,30,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,-9,0,1830,3,0,0 +2013,4,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,955,-4,0,1122,-3,0,0 +2013,6,8,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,730,-4,0,845,2,0,0 +2013,9,23,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-7,0,1457,-1,0,0 +2013,8,21,3,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,830,-2,0,1026,-10,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1100,9,0,1235,-1,0,0 +2013,6,11,2,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1109,-7,0,1339,-11,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-4,0,854,-3,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1545,-5,0,1721,-1,0,0 +2013,9,26,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,5,0,800,-2,0,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-6,0,1825,-12,0,0 +2013,6,24,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1624,96,1,1819,97,1,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,630,-4,0,916,-1,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,943,7,0,1057,65,1,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,-5,0,1106,-23,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1430,13,0,1555,7,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,3,0,1415,19,1,0 +2013,7,28,7,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,921,0,0,1047,-8,0,0 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2040,-9,0,2355,-34,0,0 +2013,8,13,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1710,-3,0,1850,6,0,0 +2013,9,12,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1740,54,1,1810,52,1,0 +2013,6,26,3,WN,12191,William P Hobby,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1405,16,1,1630,25,1,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,-3,0,1435,-17,0,0 +2013,7,7,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,0,0,2046,0,0,0 +2013,7,7,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-9,0,2150,-8,0,0 +2013,7,7,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,-3,0,1309,-11,0,0 +2013,8,21,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,930,-1,0,1155,2,0,0 +2013,4,5,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,720,-3,0,1226,-21,0,0 +2013,5,16,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,-1,0,2225,-12,0,0 +2013,10,6,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1840,20,1,2005,12,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,700,-7,0,1113,-17,0,0 +2013,4,28,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1230,-2,0,1525,-6,0,0 +2013,5,26,7,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,833,-8,0,1139,-11,0,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1542,-3,0,1740,3,0,0 +2013,5,5,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1453,5,0,1740,1,0,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1347,89,1,1506,89,1,0 +2013,10,21,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1305,9,0,1355,10,0,0 +2013,8,2,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,810,-5,0,1101,-3,0,0 +2013,9,17,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1450,-3,0,1555,-12,0,0 +2013,4,24,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,913,-4,0,1210,9,0,0 +2013,10,23,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1030,-5,0,1144,-12,0,0 +2013,10,13,7,EV,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1100,-8,0,1313,-14,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1305,1,0,1705,-16,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,-5,0,855,2,0,0 +2013,7,26,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1137,-8,0,1331,-17,0,0 +2013,8,16,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1800,-19,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1610,195,1,1725,180,1,0 +2013,6,14,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1305,-1,0,1405,-8,0,0 +2013,7,25,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,0,0,1905,-3,0,0 +2013,10,25,5,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1430,-1,0,1600,-3,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1040,2,0,1300,1,0,0 +2013,9,18,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1009,36,1,1215,35,1,0 +2013,9,2,1,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1234,111,1,2103,119,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1615,1,0,1720,5,0,0 +2013,8,14,3,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,745,5,0,0 +2013,9,4,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,815,-1,0,930,-7,0,0 +2013,5,11,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1253,12,0,1618,-9,0,0 +2013,5,8,3,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1645,30,1,1810,18,1,0 +2013,10,11,5,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,640,-5,0,1110,-10,0,0 +2013,9,4,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-4,0,817,-1,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1455,13,0,1606,8,0,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,855,-12,0,955,-16,0,0 +2013,9,22,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,631,0,0,927,-22,0,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1732,26,1,2035,4,0,0 +2013,6,3,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1240,-3,0,1425,-15,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,21,1,1724,32,1,0 +2013,8,30,5,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,835,-2,0,1144,-5,0,0 +2013,8,23,5,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1306,-4,0,1550,4,0,0 +2013,9,27,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1901,-5,0,2040,-14,0,0 +2013,6,28,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,834,-6,0,933,-21,0,0 +2013,8,6,2,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-1,0,2155,-12,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,605,-3,0,835,-21,0,0 +2013,7,28,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1235,4,0,1417,-1,0,0 +2013,9,13,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-5,0,1033,-4,0,0 +2013,8,6,2,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1040,-3,0,1240,-10,0,0 +2013,6,30,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,5,0,812,13,0,0 +2013,4,25,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1716,-3,0,2023,0,0,0 +2013,9,19,4,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,617,-4,0,816,7,0,0 +2013,4,5,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1553,-8,0,0 +2013,8,25,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2055,-5,0,2219,-18,0,0 +2013,8,2,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-1,0,1728,-6,0,0 +2013,10,13,7,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2203,27,1,115,22,1,0 +2013,8,25,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1810,-1,0,2128,-46,0,0 +2013,5,15,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,21,1,1931,28,1,0 +2013,6,11,2,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1045,8,0,1241,-17,0,0 +2013,10,6,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1245,4,0,1623,44,1,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1605,6,0,1705,-2,0,0 +2013,10,6,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1445,2,0,1625,1,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,0,0,1920,-21,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,820,4,0,935,0,0,0 +2013,5,29,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,2,0,740,-9,0,0 +2013,5,11,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,1,0,1435,5,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2120,2,0,2325,-8,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1454,-1,0,1712,32,1,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1525,7,0,1910,0,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,4,0,2358,3,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2210,17,1,5,13,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1305,21,1,1440,-1,0,0 +2013,4,14,7,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1432,3,0,1605,10,0,0 +2013,8,26,1,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,2,0,1600,10,0,0 +2013,4,23,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1330,76,1,1635,72,1,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1505,12,0,1835,6,0,0 +2013,4,25,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,-3,0,2114,-22,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1435,49,1,1655,38,1,0 +2013,10,28,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,840,-7,0,0 +2013,9,19,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-7,0,1246,28,1,0 +2013,5,4,6,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1455,-5,0,1705,-18,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1555,-11,0,1646,-4,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1654,1,0,2110,-38,0,0 +2013,4,19,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1026,34,1,1310,44,1,0 +2013,4,11,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,630,-3,0,845,-18,0,0 +2013,10,16,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,-7,0,2018,-8,0,0 +2013,10,29,2,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1800,-10,0,1945,-16,0,0 +2013,4,29,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1615,11,0,1842,8,0,0 +2013,9,25,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1739,-6,0,1933,-7,0,0 +2013,5,31,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,955,3,0,1115,-8,0,0 +2013,10,11,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,600,-6,0,738,6,0,0 +2013,9,7,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,0,0,1633,-17,0,0 +2013,9,13,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1751,-11,0,0 +2013,7,16,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-9,0,1039,-27,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,0,0,1335,-11,0,0 +2013,7,2,2,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,600,-1,0,857,-36,0,0 +2013,5,20,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-6,0,2114,-11,0,0 +2013,10,29,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,-4,0,1122,3,0,0 +2013,6,15,6,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1558,17,1,1645,20,1,0 +2013,7,31,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-1,0,1405,1,0,0 +2013,5,4,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-6,0,830,-8,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2035,10,0,2330,16,1,0 +2013,10,21,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1100,-1,0,1525,-13,0,0 +2013,8,4,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-1,0,949,0,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2008,27,1,2256,22,1,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1755,-5,0,1948,-14,0,0 +2013,5,18,6,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1101,3,0,1257,-7,0,0 +2013,7,13,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,705,251,1,810,246,1,0 +2013,10,16,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,800,-2,0,1045,-9,0,0 +2013,9,15,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1148,-10,0,1400,-19,0,0 +2013,10,11,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-5,0,1100,-12,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,0,0,1704,-6,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1145,-1,0,1330,-1,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,810,2,0,1005,-9,0,0 +2013,5,26,7,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1629,-2,0,1939,-12,0,0 +2013,4,29,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2155,-2,0,2335,0,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1210,-4,0,1635,-37,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,17,1,1150,-4,0,0 +2013,10,5,6,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1149,-8,0,1610,-17,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-6,0,2335,-16,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,14,0,2230,16,1,0 +2013,4,16,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1745,-12,0,1905,-10,0,0 +2013,10,10,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,805,-2,0,840,-6,0,0 +2013,5,31,5,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1040,-11,0,1244,-20,0,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,169,1,1315,169,1,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1745,-3,0,1909,-7,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1510,0,0,1724,-2,0,0 +2013,9,9,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,725,-5,0,935,-15,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,13,0,1002,-8,0,0 +2013,9,16,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1315,-8,0,0 +2013,6,29,6,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,18,1,1818,-10,0,0 +2013,7,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1220,-5,0,1946,-1,0,0 +2013,4,23,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1132,-10,0,1421,-10,0,0 +2013,8,28,3,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1705,145,1,2004,107,1,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,734,-4,0,1009,10,0,0 +2013,6,28,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,630,0,0,800,-15,0,0 +2013,4,28,7,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1410,-8,0,2230,0,0,0 +2013,8,30,5,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-13,0,1055,-14,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-5,0,952,-6,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,945,103,1,1120,84,1,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1815,3,0,1945,6,0,0 +2013,10,5,6,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1539,-6,0,1820,4,0,0 +2013,9,14,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,7,0,1445,5,0,0 +2013,6,28,5,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,815,-9,0,1002,20,1,0 +2013,4,4,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1450,-6,0,1826,-4,0,0 +2013,9,5,4,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1930,0,0,807,5,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,630,4,0,1225,12,0,0 +2013,5,20,1,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,551,-3,0,905,-2,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2010,29,1,2141,18,1,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2325,75,1,730,59,1,0 +2013,5,27,1,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,-11,0,2128,-17,0,0 +2013,4,10,3,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2240,91,1,715,66,1,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,945,-6,0,1250,-19,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,-5,0,2348,6,0,0 +2013,7,10,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1725,0,,2020,0,1,1 +2013,5,24,5,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2140,-5,0,545,-11,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,-4,0,1427,-20,0,0 +2013,6,28,5,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,1005,-2,0,1300,3,0,0 +2013,4,28,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-5,0,930,-3,0,0 +2013,5,22,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,1351,-10,0,0 +2013,8,6,2,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1420,8,0,1515,-2,0,0 +2013,4,9,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1240,32,1,1451,32,1,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1435,38,1,1540,33,1,0 +2013,8,6,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,808,114,1,925,104,1,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,0,0,1300,-4,0,0 +2013,10,16,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,31,1,1145,31,1,0 +2013,4,2,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,42,1,1916,54,1,0 +2013,8,12,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1235,-4,0,1405,-12,0,0 +2013,10,7,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1020,-1,0,1220,-9,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1520,16,1,1912,23,1,0 +2013,4,24,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1504,-5,0,1750,-3,0,0 +2013,5,3,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-1,0,705,-20,0,0 +2013,10,17,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,32,1,2135,27,1,0 +2013,10,19,6,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1440,3,0,1610,-6,0,0 +2013,6,20,4,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-7,0,606,-1,0,0 +2013,6,7,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1056,-6,0,0 +2013,4,23,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-7,0,1818,-13,0,0 +2013,8,15,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,715,5,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,907,47,1,1033,77,1,0 +2013,9,30,1,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1841,0,0,1943,-14,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,853,-5,0,1703,-41,0,0 +2013,6,7,5,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2015,-2,0,500,21,1,0 +2013,10,13,7,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,555,0,0,830,-18,0,0 +2013,8,9,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2031,43,1,2118,45,1,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1255,-5,0,1452,-22,0,0 +2013,10,26,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1200,11,0,1345,3,0,0 +2013,10,14,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1925,-7,0,2040,-5,0,0 +2013,7,25,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,0,0,613,-4,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,-4,0,2119,-18,0,0 +2013,5,6,1,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,605,-9,0,749,-2,0,0 +2013,5,9,4,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-4,0,913,16,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,62,1,2222,41,1,0 +2013,10,4,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1634,-5,0,1843,-8,0,0 +2013,5,4,6,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1159,-7,0,1427,-15,0,0 +2013,8,11,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,-5,0,2025,11,0,0 +2013,7,19,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1715,-7,0,1840,1,0,0 +2013,10,4,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1312,-1,0,1535,-12,0,0 +2013,6,27,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,605,-1,0,736,5,0,0 +2013,7,3,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,600,-5,0,920,-2,0,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2015,12,0,2320,7,0,0 +2013,10,10,4,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,720,-1,0,945,-19,0,0 +2013,4,3,3,US,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1405,-4,0,1623,-3,0,0 +2013,4,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,5,0,1737,10,0,0 +2013,5,31,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,606,-2,0,813,21,1,0 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-5,0,2231,-21,0,0 +2013,9,27,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1024,-8,0,1107,-11,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,10,0,2245,8,0,0 +2013,7,23,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,0,0,1920,3,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,7,0,1645,-2,0,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1900,11,0,2025,4,0,0 +2013,8,28,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,49,1,726,41,1,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,6,0,2159,2,0,0 +2013,10,31,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,645,-1,0,655,-13,0,0 +2013,7,31,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,645,0,0,820,-1,0,0 +2013,5,29,3,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,6,0,1117,4,0,0 +2013,4,10,3,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,742,9,0,838,7,0,0 +2013,9,11,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1959,31,1,2229,36,1,0 +2013,4,8,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-4,0,1411,-15,0,0 +2013,6,26,3,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,29,1,1950,21,1,0 +2013,7,16,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1515,-8,0,1853,-4,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1115,2,0,1257,-9,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,830,-4,0,1426,0,0,0 +2013,6,29,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-2,0,640,-4,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,69,1,2331,47,1,0 +2013,5,21,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1331,-5,0,1624,-4,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1015,4,0,1141,5,0,0 +2013,6,13,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,58,1,2120,58,1,0 +2013,10,11,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-4,0,849,-5,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1445,20,1,1704,25,1,0 +2013,5,27,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1944,1,0,2135,-1,0,0 +2013,5,13,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1027,7,0,1302,3,0,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-5,0,2152,-18,0,0 +2013,4,11,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,628,0,0,1459,14,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1700,-2,0,1827,9,0,0 +2013,9,29,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,753,-2,0,841,-3,0,0 +2013,8,9,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-5,0,755,-9,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,817,-3,0,1058,12,0,0 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,0,,1845,0,1,1 +2013,4,3,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,922,-24,0,0 +2013,4,12,5,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1738,-3,0,2100,-14,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-5,0,2335,-4,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1100,-1,0,1315,11,0,0 +2013,8,15,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,620,-6,0,730,-10,0,0 +2013,10,17,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1710,-4,0,1825,-5,0,0 +2013,9,25,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1630,22,1,1930,-2,0,0 +2013,5,10,5,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1705,28,1,1810,23,1,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,-7,0,1712,4,0,0 +2013,10,18,5,9E,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1214,25,1,1505,36,1,0 +2013,9,9,1,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,907,-10,0,1138,-28,0,0 +2013,5,27,1,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1100,-11,0,1222,-5,0,0 +2013,8,16,5,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,-3,0,756,-20,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1440,23,1,2000,13,0,0 +2013,10,16,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,700,-2,0,830,-5,0,0 +2013,4,5,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,-7,0,2053,-25,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,22,1,1815,15,1,0 +2013,6,23,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1125,29,1,1250,49,1,0 +2013,9,5,4,EV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,604,-7,0,922,-11,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1115,0,0,1158,-11,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1748,91,1,2159,66,1,0 +2013,10,27,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1725,9,0,2040,7,0,0 +2013,8,25,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,625,-5,0,750,-13,0,0 +2013,6,2,7,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,3,0,1535,0,0,0 +2013,6,17,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,-7,0,2029,-18,0,0 +2013,6,2,7,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,5,0,1610,4,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,4,0,2012,-13,0,0 +2013,9,1,7,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1455,8,0,1615,-3,0,0 +2013,10,21,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1435,-2,0,1656,-2,0,0 +2013,8,9,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,755,-2,0,837,-4,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,730,-8,0,1134,-18,0,0 +2013,5,10,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2147,44,1,2202,39,1,0 +2013,4,9,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-4,0,2205,-7,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-6,0,1610,-13,0,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1555,-3,0,1700,8,0,0 +2013,9,16,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,1,0,858,-4,0,0 +2013,4,2,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2305,-5,0,815,-24,0,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,47,1,2256,53,1,0 +2013,5,29,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2117,48,1,2349,35,1,0 +2013,4,22,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-6,0,1337,3,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1045,-5,0,1150,-10,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1330,1,0,1459,-14,0,0 +2013,7,9,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2050,101,1,2205,111,1,0 +2013,7,19,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1822,17,1,2119,6,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,43,1,1350,46,1,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1529,30,1,1836,20,1,0 +2013,4,1,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-3,0,1109,7,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1315,15,1,1645,27,1,0 +2013,6,19,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,700,0,0,853,-2,0,0 +2013,9,1,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-13,0,1800,-14,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1435,0,0,1630,-10,0,0 +2013,4,15,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,22,1,1240,10,0,0 +2013,10,1,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1735,12,0,1810,3,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-1,0,903,-10,0,0 +2013,5,24,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,8,0,1235,1,0,0 +2013,10,31,4,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1440,-8,0,1835,-30,0,0 +2013,6,21,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,635,0,0,1453,-1,0,0 +2013,7,11,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1548,-7,0,0 +2013,5,19,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-1,0,1820,-2,0,0 +2013,6,24,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1500,-4,0,1845,-11,0,0 +2013,6,20,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,-6,0,1447,3,0,0 +2013,5,23,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1742,14,0,1913,11,0,0 +2013,5,11,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1534,57,1,1703,60,1,0 +2013,10,15,2,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1420,0,,1721,0,1,1 +2013,9,28,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-5,0,950,-43,0,0 +2013,10,20,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,17,-1,0,525,-8,0,0 +2013,9,25,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-3,0,727,-8,0,0 +2013,6,12,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-10,0,847,-3,0,0 +2013,5,31,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1020,1,0,1240,12,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,21,1,1335,17,1,0 +2013,6,4,2,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,703,-16,0,0 +2013,4,30,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-10,0,1451,-17,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1800,0,0,2003,6,0,0 +2013,9,25,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1135,-4,0,1222,13,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,850,-2,0,1025,-3,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1150,5,0,1310,4,0,0 +2013,10,25,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1140,-6,0,1311,-2,0,0 +2013,5,19,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,11,0,1245,6,0,0 +2013,10,31,4,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1100,-8,0,1351,-7,0,0 +2013,8,6,2,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,38,1,2015,22,1,0 +2013,6,21,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1755,-5,0,1935,-24,0,0 +2013,8,6,2,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1523,13,0,1619,15,1,0 +2013,8,30,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,-3,0,2144,-19,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1729,210,1,2031,208,1,0 +2013,4,16,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1202,-2,0,1322,-8,0,0 +2013,10,18,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-2,0,1156,-7,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,-4,0,1338,0,0,0 +2013,10,20,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,531,-5,0,628,-15,0,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,724,-5,0,1028,10,0,0 +2013,10,18,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1602,-6,0,1720,-13,0,0 +2013,4,25,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,3,0,1059,8,0,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-8,0,2118,-4,0,0 +2013,9,11,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-7,0,953,18,1,0 +2013,8,16,5,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-1,0,1535,13,0,0 +2013,8,3,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,910,4,0,1505,-19,0,0 +2013,6,9,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1215,-8,0,1315,-9,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1050,2,0,1150,-3,0,0 +2013,9,19,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,905,-10,0,1035,19,1,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,853,3,0,1701,1,0,0 +2013,4,2,2,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1700,-1,0,1846,11,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,845,-3,0,1100,-1,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1100,-3,0,1500,-13,0,0 +2013,5,6,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1654,6,0,1759,2,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,730,1,0,1045,-16,0,0 +2013,9,18,3,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,-6,0,2033,-5,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1440,3,0,1645,2,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1240,31,1,1455,34,1,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,-3,0,1038,12,0,0 +2013,6,14,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1625,11,0,1935,8,0,0 +2013,6,1,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,624,-6,0,737,-13,0,0 +2013,9,25,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,-1,0,2142,-30,0,0 +2013,4,16,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-15,0,1200,23,1,0 +2013,10,4,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,-2,0,2054,-9,0,0 +2013,7,11,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1935,-7,0,2032,-8,0,0 +2013,6,25,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1115,20,1,1255,57,1,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,5,0,2314,21,1,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1029,-4,0,1149,-31,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,27,1,2030,8,0,0 +2013,5,16,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,20,1,1434,25,1,0 +2013,8,14,3,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,650,-10,0,810,-8,0,0 +2013,6,19,3,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1350,-7,0,1644,-1,0,0 +2013,4,22,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,63,1,1823,64,1,0 +2013,5,9,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,10,0,1300,13,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1415,38,1,1845,71,1,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-4,0,1015,10,0,0 +2013,9,19,4,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2005,1,0,2225,0,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-1,0,1345,19,1,0 +2013,5,8,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1122,-2,0,1258,-15,0,0 +2013,9,24,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-8,0,649,-12,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-4,0,1219,5,0,0 +2013,10,9,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1901,8,0,2028,6,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1530,-3,0,1736,-4,0,0 +2013,5,1,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,3,0,1617,6,0,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,4,0,2259,-8,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-3,0,1010,-5,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,0,0,1529,0,0,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1610,-3,0,1734,-5,0,0 +2013,9,20,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,625,-2,0,832,-19,0,0 +2013,9,5,4,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1435,18,1,1734,33,1,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,-9,0,901,1,0,0 +2013,8,28,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1354,-3,0,1516,-10,0,0 +2013,8,6,2,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,-9,0,1155,-19,0,0 +2013,10,6,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1830,2,0,2103,-19,0,0 +2013,10,18,5,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1919,22,1,2215,-2,0,0 +2013,5,3,5,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1411,254,1,1526,278,1,0 +2013,5,2,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-3,0,2250,0,0,0 +2013,5,31,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1136,-4,0,1245,-8,0,0 +2013,8,9,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,0,0,815,-4,0,0 +2013,5,13,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2015,-3,0,2110,-9,0,0 +2013,9,15,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,710,-6,0,930,-6,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1255,2,0,1410,6,0,0 +2013,6,12,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1200,-5,0,1250,-11,0,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,910,-6,0,1040,-12,0,0 +2013,4,28,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,908,-3,0,1024,-8,0,0 +2013,6,26,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1636,-4,0,2005,81,1,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,0,0,1750,28,1,0 +2013,10,15,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,850,0,0,1045,3,0,0 +2013,5,11,6,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1112,-3,0,1728,-6,0,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1810,5,0,1935,-4,0,0 +2013,6,18,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,801,-7,0,936,-11,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,825,-1,0,947,-24,0,0 +2013,4,30,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1645,31,1,1832,27,1,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,20,1,1922,20,1,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,27,1,2040,40,1,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1425,0,0,1747,-4,0,0 +2013,7,29,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,8,0,1935,30,1,0 +2013,4,10,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,0,0,729,-4,0,0 +2013,7,17,3,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,37,1,2140,11,0,0 +2013,6,20,4,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,2,0,2035,3,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1003,-4,0,1343,-13,0,0 +2013,6,3,1,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1432,76,1,1924,61,1,0 +2013,6,10,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,800,-9,0,1015,-33,0,0 +2013,9,29,7,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,14,0,1940,3,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,-9,0,30,-11,0,0 +2013,8,21,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-7,0,755,-18,0,0 +2013,10,25,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1015,-4,0,1308,-9,0,0 +2013,6,30,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-8,0,2050,-10,0,0 +2013,5,20,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1202,-4,0,1500,-6,0,0 +2013,8,22,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1657,0,0,2257,3,0,0 +2013,4,23,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1547,-9,0,1719,-20,0,0 +2013,10,30,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1643,-15,0,0 +2013,10,20,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-4,0,1038,2,0,0 +2013,10,19,6,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,855,0,0,1050,-5,0,0 +2013,6,24,1,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,1,0,500,-9,0,0 +2013,7,14,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1030,4,0,1616,9,0,0 +2013,7,11,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,60,1,1524,56,1,0 +2013,8,19,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,153,1,717,177,1,0 +2013,10,28,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1119,-8,0,1158,-8,0,0 +2013,10,17,4,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,5,0,1315,-1,0,0 +2013,4,24,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,33,1,1405,-7,0,0 +2013,4,15,1,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2010,-5,0,2230,-5,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1347,7,0,2155,4,0,0 +2013,4,12,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,600,-1,0,720,-5,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1425,11,0,1525,7,0,0 +2013,7,30,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2245,39,1,700,34,1,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,849,-2,0,1634,47,1,0 +2013,10,5,6,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1535,-3,0,1625,-5,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,-4,0,1426,-20,0,0 +2013,9,15,7,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-3,0,916,-9,0,0 +2013,8,22,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-9,0,1300,-17,0,0 +2013,8,21,3,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-8,0,918,-15,0,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1458,6,0,1656,24,1,0 +2013,7,2,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1655,12,0,1710,1,0,0 +2013,6,20,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-5,0,1030,-22,0,0 +2013,9,23,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,936,-3,0,1143,-16,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,1,0,1555,18,1,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2127,9,0,8,-37,0,0 +2013,5,19,7,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,2010,4,0,2125,-3,0,0 +2013,10,30,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,853,-13,0,1209,-16,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1700,5,0,2350,1,0,0 +2013,9,27,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1554,18,1,1628,18,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1553,42,1,1728,28,1,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,23,1,2026,-10,0,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2140,-6,0,149,-13,0,0 +2013,7,23,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,2,0,1630,2,0,0 +2013,4,26,5,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,-3,0,1518,-10,0,0 +2013,8,27,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1725,-14,0,1915,2,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1940,5,0,2235,-5,0,0 +2013,10,6,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-10,0,1300,0,0,0 +2013,5,26,7,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1459,-6,0,1635,2,0,0 +2013,8,4,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1650,1,0,2010,4,0,0 +2013,6,15,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1720,35,1,1955,13,0,0 +2013,8,18,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,6,0,1925,-5,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,0,0,1050,-16,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,4,0,1720,-5,0,0 +2013,10,31,4,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1536,-7,0,1701,16,1,0 +2013,6,8,6,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2009,-9,0,2028,-9,0,0 +2013,9,26,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-9,0,2115,-17,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1405,0,0,1540,-3,0,0 +2013,10,23,3,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2045,-10,0,2150,-15,0,0 +2013,6,16,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,-4,0,2113,-18,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2252,-2,0,26,-19,0,0 +2013,6,28,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,940,-2,0,1139,-6,0,0 +2013,4,25,4,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,0,0,1422,0,0,0 +2013,9,27,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,11,0,1200,-13,0,0 +2013,10,21,1,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1632,-4,0,1902,-21,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,940,8,0,1100,4,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1351,8,0,1534,3,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2150,57,1,2339,41,1,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,10,0,1920,18,1,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1012,-4,0,1137,-7,0,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,1,0,715,-2,0,0 +2013,6,10,1,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1828,87,1,2000,84,1,0 +2013,9,5,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1115,4,0,1710,7,0,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1940,0,0,2205,-16,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,925,4,0,1021,-3,0,0 +2013,10,19,6,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-2,0,854,4,0,0 +2013,8,5,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-6,0,1405,-3,0,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,0,0,2055,-7,0,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,915,-3,0,1030,-13,0,0 +2013,10,17,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-2,0,1436,12,0,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2120,-2,0,2359,-11,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,-2,0,2222,-11,0,0 +2013,5,15,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2259,-6,0,609,4,0,0 +2013,7,5,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-5,0,1257,-1,0,0 +2013,8,6,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,50,1,1150,60,1,0 +2013,5,28,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1840,-3,0,2049,-2,0,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1535,89,1,1714,84,1,0 +2013,9,4,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,747,-10,0,828,-20,0,0 +2013,5,3,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-1,0,2035,-4,0,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-3,0,910,-9,0,0 +2013,9,23,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,830,-11,0,1058,-6,0,0 +2013,5,10,5,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,-6,0,1712,-9,0,0 +2013,8,22,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2358,59,1,716,41,1,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,-2,0,830,-2,0,0 +2013,4,2,2,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1047,-5,0,1415,-15,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1549,21,1,2021,11,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,758,-3,0,929,-9,0,0 +2013,7,1,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1329,96,1,1509,89,1,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,605,5,0,844,-22,0,0 +2013,5,30,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2130,2,0,22,-17,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,830,0,0,1310,-17,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1800,32,1,1935,18,1,0 +2013,7,17,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,-3,0,1400,-4,0,0 +2013,5,5,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,-4,0,935,-27,0,0 +2013,10,24,4,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2225,86,1,607,70,1,0 +2013,5,7,2,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,-3,0,2315,-19,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1454,0,0,1634,-3,0,0 +2013,6,18,2,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-2,0,803,-10,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,7,0,1705,22,1,0 +2013,7,21,7,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,905,-5,0,1115,-12,0,0 +2013,8,1,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2333,-9,0,501,16,1,0 +2013,6,3,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-1,0,726,-15,0,0 +2013,5,7,2,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1240,-7,0,1458,-11,0,0 +2013,10,11,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1239,105,1,1400,110,1,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2148,-3,0,100,-22,0,0 +2013,5,31,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,3,0,2050,5,0,0 +2013,10,14,1,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,15,1,1350,10,0,0 +2013,8,16,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,-7,0,1428,-7,0,0 +2013,9,26,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-8,0,1511,-11,0,0 +2013,5,20,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,0,0,1255,-32,0,0 +2013,5,19,7,DL,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1856,8,0,7,-6,0,0 +2013,9,23,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,5,0,1435,-2,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1210,1,0,1530,-5,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,-5,0,1204,-8,0,0 +2013,4,7,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,-4,0,2117,-19,0,0 +2013,6,2,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1540,4,0,1625,-3,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,8,0,1731,51,1,0 +2013,4,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,745,-2,0,915,-3,0,0 +2013,7,19,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1027,-1,0,1302,-6,0,0 +2013,7,10,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-6,0,750,4,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1320,-5,0,1635,-23,0,0 +2013,9,23,1,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-6,0,2010,1,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1840,17,1,2020,16,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1917,-3,0,2054,-5,0,0 +2013,10,22,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2045,6,0,2159,-4,0,0 +2013,8,7,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1850,-9,0,2134,-10,0,0 +2013,5,12,7,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-6,0,2202,-3,0,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,735,0,0,907,-2,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1506,-2,0,1738,-11,0,0 +2013,6,10,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1532,44,1,1719,34,1,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1645,6,0,1857,47,1,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,843,-4,0,957,-2,0,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1425,-8,0,1515,-6,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1042,-6,0,1545,-14,0,0 +2013,7,27,6,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1322,-1,0,1604,-11,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1215,-2,0,1430,-7,0,0 +2013,9,26,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,0,0,1125,-3,0,0 +2013,5,10,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1215,41,1,1529,35,1,0 +2013,6,26,3,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1710,95,1,2000,93,1,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1036,-1,0,1602,-21,0,0 +2013,5,19,7,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1739,-8,0,2100,-14,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,35,1,2105,48,1,0 +2013,8,20,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1405,0,0,1505,-11,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1934,0,0,2226,1,0,0 +2013,9,4,3,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,904,-7,0,1044,-22,0,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1410,6,0,2210,4,0,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1619,-1,0,1839,-32,0,0 +2013,7,1,1,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1845,10,0,2013,-8,0,0 +2013,4,7,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1230,-4,0,1554,-9,0,0 +2013,9,12,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-2,0,2043,63,1,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1540,49,1,1700,47,1,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,2026,164,1,2249,135,1,0 +2013,7,27,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1349,13,0,1936,5,0,0 +2013,8,19,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1936,69,1,2120,43,1,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,-1,0,1608,1,0,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,-2,0,1116,-6,0,0 +2013,6,22,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,755,-6,0,932,-18,0,0 +2013,7,8,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-4,0,1230,-6,0,0 +2013,8,30,5,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1526,5,0,1646,-3,0,0 +2013,6,11,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1712,-5,0,2324,-9,0,0 +2013,5,21,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-6,0,1458,0,0,0 +2013,9,24,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,9,0,1815,3,0,0 +2013,10,13,7,EV,10792,Buffalo Niagara International,Buffalo,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1341,-3,0,1444,-11,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,15,1,2321,3,0,0 +2013,7,19,5,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1820,0,0,2025,3,0,0 +2013,7,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1050,3,0,1820,-11,0,0 +2013,5,24,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,645,0,0,735,-1,0,0 +2013,5,12,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1315,-3,0,1325,-5,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1505,0,0,1829,-7,0,0 +2013,4,6,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,15,1,1025,16,1,0 +2013,6,24,1,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1021,-6,0,1540,36,1,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,605,-3,0,846,-16,0,0 +2013,10,16,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1706,-8,0,2256,8,0,0 +2013,9,13,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1659,10,0,1823,1,0,0 +2013,8,9,5,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,-3,0,1510,-1,0,0 +2013,7,9,2,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1815,101,1,2336,80,1,0 +2013,6,29,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-13,0,1030,-21,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1620,-1,0,1738,-7,0,0 +2013,10,28,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1520,-10,0,1800,-15,0,0 +2013,7,8,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,4,0,1420,13,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1500,-1,0,1655,0,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,0,0,1025,-11,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,3,0,1110,0,0,0 +2013,4,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1520,-2,0,1714,-16,0,0 +2013,6,16,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,-10,0,1612,-20,0,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,0,0,935,-8,0,0 +2013,6,13,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1820,-3,0,1857,-3,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1750,174,1,2041,220,1,0 +2013,9,9,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,-10,0,928,-14,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-3,0,1104,-18,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,30,1,1155,30,1,0 +2013,10,18,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-8,0,840,-25,0,0 +2013,9,11,3,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2105,-3,0,2345,-1,0,0 +2013,4,8,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2302,-2,0,2356,-5,0,0 +2013,10,9,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1005,-7,0,1302,-8,0,0 +2013,9,17,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,715,1,0,845,10,0,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,1,0,1505,-4,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1750,2,0,2036,-13,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-6,0,1257,-9,0,0 +2013,10,19,6,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1240,-1,0,1430,-11,0,0 +2013,10,7,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-4,0,911,-3,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,-3,0,2125,-8,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2105,23,1,2300,28,1,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,12,0,1620,12,0,0 +2013,10,26,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1558,-3,0,1849,-15,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1810,35,1,1935,27,1,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,-6,0,1605,7,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,-1,0,45,-19,0,0 +2013,5,12,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,710,-1,0,915,-8,0,0 +2013,7,8,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,1,0,1015,0,0,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2220,55,1,2325,55,1,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,619,-2,0,833,-14,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1050,3,0,1720,-17,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1917,6,0,110,-13,0,0 +2013,8,8,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,835,-12,0,958,-8,0,0 +2013,5,20,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,23,1,2355,18,1,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,-3,0,20,-6,0,0 +2013,9,27,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,1,0,1000,-14,0,0 +2013,10,22,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,-4,0,2255,2,0,0 +2013,5,2,4,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-6,0,1128,-32,0,0 +2013,5,12,7,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,-4,0,1415,-12,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,7,0,1510,4,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1415,-1,0,1505,-10,0,0 +2013,6,10,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,-1,0,1505,7,0,0 +2013,5,26,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1840,5,0,2237,-8,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,0,0,1331,5,0,0 +2013,9,28,6,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1615,-11,0,1915,-16,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,42,1,1755,55,1,0 +2013,7,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1046,-4,0,1411,0,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1800,-1,0,2130,-36,0,0 +2013,8,9,5,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-2,0,1046,2,0,0 +2013,8,12,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1405,56,1,1516,50,1,0 +2013,8,27,2,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,732,-18,0,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,3,0,2000,-3,0,0 +2013,5,8,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,8,0,2100,-5,0,0 +2013,5,15,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-5,0,1149,-9,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,615,2,0,740,22,1,0 +2013,5,3,5,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1620,-1,0,1847,-2,0,0 +2013,7,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,838,-9,0,939,-12,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1931,15,1,2117,-3,0,0 +2013,10,17,4,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,735,1,0,1340,-5,0,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-5,0,2210,-11,0,0 +2013,6,9,7,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,755,17,1,1009,19,1,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1100,-2,0,1205,-6,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1239,1,0,1835,5,0,0 +2013,9,14,6,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1450,-2,0,1700,0,0,0 +2013,6,15,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,-9,0,2014,-16,0,0 +2013,4,21,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,955,-6,0,1146,-19,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1607,-4,0,1720,-4,0,0 +2013,8,1,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1956,84,1,2118,83,1,0 +2013,6,12,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1320,21,1,1445,18,1,0 +2013,4,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1027,5,0,1138,4,0,0 +2013,8,26,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1102,-7,0,1249,-5,0,0 +2013,9,21,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1111,-3,0,1336,-7,0,0 +2013,7,26,5,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,-7,0,1937,5,0,0 +2013,4,25,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-11,0,1545,26,1,0 +2013,7,14,7,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-4,0,812,-2,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1645,24,1,1815,21,1,0 +2013,5,18,6,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,700,-1,0,800,3,0,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2100,0,0,2212,-24,0,0 +2013,4,13,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1240,-5,0,1634,-20,0,0 +2013,8,2,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,-5,0,2322,-27,0,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1246,-4,0,1400,-3,0,0 +2013,9,19,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1625,6,0,1800,1,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,19,1,1245,7,0,0 +2013,9,23,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,748,-9,0,1033,7,0,0 +2013,6,28,5,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1745,0,0,2030,-4,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1520,73,1,1720,123,1,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1230,18,1,1330,38,1,0 +2013,7,20,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1250,4,0,1520,-5,0,0 +2013,5,23,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1835,34,1,2200,23,1,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,647,3,0,824,-8,0,0 +2013,6,1,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1654,1,0,1833,-6,0,0 +2013,7,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1415,57,1,1551,77,1,0 +2013,5,17,5,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,715,70,1,955,66,1,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1005,23,1,1115,11,0,0 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2154,28,1,2322,19,1,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1430,-3,0,1604,-19,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2248,-3,0,712,-28,0,0 +2013,7,14,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1904,13,0,2013,42,1,0 +2013,8,5,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1815,-7,0,2106,-16,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1447,139,1,1555,143,1,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1745,-2,0,1941,0,0,0 +2013,5,7,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,510,-10,0,756,-17,0,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,2,0,1212,0,0,0 +2013,4,16,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,-3,0,2124,-6,0,0 +2013,9,12,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1645,-2,0,1755,-6,0,0 +2013,8,3,6,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,37,1,1525,25,1,0 +2013,5,12,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,1,0,2023,15,1,0 +2013,9,18,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1555,4,0,1715,-1,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-3,0,855,-6,0,0 +2013,6,25,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1457,2,0,1717,55,1,0 +2013,7,30,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,957,-10,0,1038,-21,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1331,2,0,1650,5,0,0 +2013,4,16,2,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1315,-3,0,1505,9,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1140,-1,0,1310,-14,0,0 +2013,7,14,7,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2115,-2,0,500,-9,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1315,-1,0,1515,1,0,0 +2013,10,9,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1650,-1,0,1830,-9,0,0 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1355,7,0,1900,-3,0,0 +2013,8,21,3,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,-5,0,1150,9,0,0 +2013,9,10,2,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1224,-1,0,1338,4,0,0 +2013,4,2,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-3,0,830,-12,0,0 +2013,9,29,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1800,-5,0,2118,-31,0,0 +2013,6,11,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,17,1,2030,19,1,0 +2013,5,28,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,920,132,1,1100,172,1,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,902,-3,0,1210,-6,0,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,0,0,1105,14,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1500,14,0,1830,0,0,0 +2013,9,6,5,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,606,-5,0,717,-25,0,0 +2013,7,4,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1752,6,0,1929,15,1,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,857,3,0,1113,-28,0,0 +2013,8,7,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-8,0,832,-1,0,0 +2013,9,16,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,825,-1,0,938,-1,0,0 +2013,7,13,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-5,0,902,4,0,0 +2013,7,18,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-1,0,1900,13,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,9,0,1225,-4,0,0 +2013,4,26,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,1,0,2025,-15,0,0 +2013,9,22,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-6,0,1450,-11,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1544,3,0,1902,4,0,0 +2013,4,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,953,-5,0,1519,-7,0,0 +2013,9,13,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-2,0,1019,-7,0,0 +2013,10,6,7,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1425,-6,0,1710,-29,0,0 +2013,6,28,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-2,0,2157,0,0,0 +2013,6,6,4,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1245,-3,0,1530,-3,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1735,-6,0,1928,-16,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1350,-4,0,2050,-15,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,0,0,2219,-34,0,0 +2013,10,1,2,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1835,-8,0,1940,-10,0,0 +2013,7,19,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,-3,0,840,-2,0,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1529,101,1,1740,93,1,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,735,4,0,1157,1,0,0 +2013,5,7,2,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,835,-9,0,1104,-5,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1915,5,0,2035,-9,0,0 +2013,8,19,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,11,0,1159,0,0,0 +2013,7,31,3,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,945,-2,0,1145,-4,0,0 +2013,6,24,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1528,22,1,1633,15,1,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1251,-4,0,1839,-31,0,0 +2013,8,10,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1055,7,0,1230,-4,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,2,0,1350,14,0,0 +2013,10,13,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,825,-8,0,1440,-29,0,0 +2013,7,2,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,830,0,0,1628,34,1,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,5,0,1731,-3,0,0 +2013,6,22,6,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1615,23,1,1750,26,1,0 +2013,4,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1012,291,1,1237,352,1,0 +2013,7,4,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1330,-8,0,1447,-11,0,0 +2013,6,2,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,35,1,2155,20,1,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,703,1,0,1019,-3,0,0 +2013,5,18,6,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,0,0,1600,7,0,0 +2013,6,30,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-14,0,1227,4,0,0 +2013,9,3,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1052,-9,0,1452,-22,0,0 +2013,6,6,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1938,22,1,2132,32,1,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2157,-7,0,2226,-8,0,0 +2013,10,8,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,933,-12,0,1225,7,0,0 +2013,10,26,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1805,-3,0,2105,-8,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1331,-4,0,1648,3,0,0 +2013,9,27,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,-1,0,1334,-3,0,0 +2013,8,25,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1720,30,1,1840,38,1,0 +2013,5,6,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-5,0,2020,-8,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2304,23,1,15,11,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1820,88,1,1958,79,1,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,2,0,2345,8,0,0 +2013,8,2,5,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,645,-3,0,715,-11,0,0 +2013,6,15,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,640,5,0,800,-4,0,0 +2013,8,20,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-4,0,1018,14,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1705,-4,0,1840,-2,0,0 +2013,7,3,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1100,50,1,1359,98,1,0 +2013,7,25,4,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1713,73,1,1831,72,1,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,641,8,0,807,-1,0,0 +2013,6,18,2,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,152,1,730,130,1,0 +2013,4,9,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,80,1,1510,80,1,0 +2013,9,30,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,805,-4,0,1034,-6,0,0 +2013,9,8,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1928,-2,0,2059,-11,0,0 +2013,10,5,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1359,-5,0,1533,4,0,0 +2013,9,19,4,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1927,6,0,2138,-3,0,0 +2013,4,14,7,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1940,-5,0,2222,-11,0,0 +2013,6,27,4,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,744,7,0,850,-13,0,0 +2013,4,16,2,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,-4,0,1420,-16,0,0 +2013,6,3,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,102,1,1415,84,1,0 +2013,8,2,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1303,55,1,1431,56,1,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1720,93,1,2025,101,1,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-7,0,1627,-1,0,0 +2013,4,12,5,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,25,1,1712,33,1,0 +2013,10,21,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1330,1,0,1510,-11,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1805,31,1,2010,12,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1945,29,1,2105,22,1,0 +2013,4,19,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1817,1,0,1900,10,0,0 +2013,9,26,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1125,-8,0,1227,9,0,0 +2013,10,27,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1915,36,1,2212,27,1,0 +2013,8,12,1,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1215,47,1,1342,42,1,0 +2013,7,3,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,-7,0,1335,-5,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,925,6,0,1035,3,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1510,88,1,1825,47,1,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-2,0,1308,-2,0,0 +2013,9,9,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1858,54,1,2008,63,1,0 +2013,6,27,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,0,0,1810,-1,0,0 +2013,6,24,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,725,0,0,820,-1,0,0 +2013,8,8,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,902,0,0,1116,-8,0,0 +2013,8,24,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1450,0,0,1730,-14,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1640,76,1,1800,74,1,0 +2013,6,5,3,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,900,-13,0,0 +2013,4,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1305,1,0,1420,1,0,0 +2013,5,18,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,-5,0,1724,-21,0,0 +2013,4,21,7,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-1,0,829,-14,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,-2,0,1025,-4,0,0 +2013,10,13,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,3,0,759,-10,0,0 +2013,8,12,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2034,97,1,2210,82,1,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,845,8,0,1106,-30,0,0 +2013,6,12,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,59,1,2059,59,1,0 +2013,8,19,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-3,0,958,-20,0,0 +2013,8,26,1,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1005,-4,0,1110,-6,0,0 +2013,9,30,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1423,-9,0,1604,-10,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2145,1,0,2342,-7,0,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,-1,0,1250,-20,0,0 +2013,6,11,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-3,0,2020,-13,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,-4,0,1217,-24,0,0 +2013,6,5,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12339,Indianapolis International,Indianapolis,IN,1118,-7,0,1352,-11,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,106,1,2059,97,1,0 +2013,6,24,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,1,0,1930,-7,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2110,-1,0,2222,-10,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2020,28,1,2325,27,1,0 +2013,9,15,7,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2003,-2,0,2210,-14,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-7,0,1359,-29,0,0 +2013,9,2,1,EV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,604,-4,0,922,-12,0,0 +2013,10,11,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,850,-3,0,1155,-5,0,0 +2013,5,14,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-5,0,2358,-10,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,0,0,2055,-7,0,0 +2013,10,2,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,940,0,0,1215,-4,0,0 +2013,8,29,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,1,0,1425,-4,0,0 +2013,8,24,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1325,1,0,1425,-9,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,-3,0,1035,-6,0,0 +2013,5,23,4,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1059,9,0,1258,10,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1915,82,1,2153,83,1,0 +2013,10,7,1,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1930,-1,0,2045,-2,0,0 +2013,8,26,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1205,29,1,1325,36,1,0 +2013,7,20,6,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1750,15,1,2015,12,0,0 +2013,8,18,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1405,33,1,1510,37,1,0 +2013,6,22,6,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-2,0,1640,-28,0,0 +2013,10,31,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,19,1,2249,26,1,0 +2013,5,26,7,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2050,-8,0,2305,-11,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1200,-2,0,1425,-8,0,0 +2013,5,11,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,6,0,2007,7,0,0 +2013,5,21,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-12,0,1355,-16,0,0 +2013,7,8,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-3,0,1858,-4,0,0 +2013,6,30,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-3,0,1815,-6,0,0 +2013,4,14,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,50,1,2210,50,1,0 +2013,5,27,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,800,-10,0,1005,-4,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1530,-2,0,2040,-14,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1311,26,1,2109,8,0,0 +2013,7,10,3,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1825,0,,2115,0,1,1 +2013,6,29,6,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,955,-10,0,1207,-11,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,10,0,1200,3,0,0 +2013,10,27,7,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,817,0,0,0 +2013,4,1,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1755,-3,0,2105,-13,0,0 +2013,8,1,4,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1848,307,1,2058,282,1,0 +2013,6,16,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1102,-16,0,0 +2013,7,30,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,604,0,0,859,-7,0,0 +2013,5,8,3,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1300,-3,0,1406,3,0,0 +2013,9,28,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1720,44,1,1845,44,1,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,3,0,1949,-6,0,0 +2013,7,17,3,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,29,1,2005,64,1,0 +2013,10,18,5,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,1855,-2,0,0 +2013,8,15,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,9,0,1522,-12,0,0 +2013,4,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1640,-2,0,1750,-12,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1630,76,1,1815,51,1,0 +2013,8,11,7,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1657,-10,0,1835,-36,0,0 +2013,6,27,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1310,34,1,1520,33,1,0 +2013,4,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-8,0,1827,7,0,0 +2013,9,1,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1102,-14,0,0 +2013,5,2,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1049,-1,0,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1555,43,1,1910,34,1,0 +2013,10,22,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,740,-10,0,0 +2013,5,4,6,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,-9,0,1052,8,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,-4,0,1154,-5,0,0 +2013,6,22,6,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1459,-1,0,1759,-6,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1900,-1,0,2230,11,0,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-4,0,1629,-6,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,74,1,1307,60,1,0 +2013,9,6,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,17,1,1346,18,1,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,-2,0,910,-10,0,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1010,-2,0,1140,7,0,0 +2013,9,18,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,-3,0,1045,-5,0,0 +2013,5,6,1,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1757,50,1,2023,37,1,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2245,2,0,2347,2,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,805,0,0,0 +2013,5,15,3,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-5,0,1045,-15,0,0 +2013,7,15,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-14,0,2050,-26,0,0 +2013,6,19,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-2,0,906,7,0,0 +2013,6,28,5,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,1800,-3,0,2033,15,1,0 +2013,10,22,2,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,1255,-7,0,0 +2013,6,18,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,2010,33,1,2135,37,1,0 +2013,5,5,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2250,17,1,13,31,1,0 +2013,9,6,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1810,-11,0,1920,-33,0,0 +2013,9,22,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1849,0,0,2137,-14,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1100,-1,0,1315,-3,0,0 +2013,5,18,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1610,-2,0,1725,-12,0,0 +2013,9,14,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-5,0,854,-11,0,0 +2013,8,30,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1345,-12,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1120,-3,0,1445,-15,0,0 +2013,9,5,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1645,-3,0,2140,0,0,0 +2013,10,27,7,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,1205,-24,0,0 +2013,6,1,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1900,0,,2135,0,1,1 +2013,6,8,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-4,0,1309,-1,0,0 +2013,5,6,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,807,-27,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1706,1,0,2000,21,1,0 +2013,9,5,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1120,1,0,1654,-5,0,0 +2013,7,22,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,705,-3,0,840,-1,0,0 +2013,5,15,3,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1122,13,0,1457,4,0,0 +2013,9,3,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1100,-6,0,1345,-12,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2323,80,1,525,81,1,0 +2013,9,1,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1601,-6,0,1932,-14,0,0 +2013,10,11,5,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1312,86,1,1624,79,1,0 +2013,9,22,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,650,-7,0,830,-8,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,725,-2,0,902,-11,0,0 +2013,7,23,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,38,1,1700,42,1,0 +2013,8,15,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1545,11,0,1725,5,0,0 +2013,7,24,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1410,31,1,1630,34,1,0 +2013,8,10,6,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,-1,0,1645,-4,0,0 +2013,4,12,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,830,6,0,1000,-9,0,0 +2013,9,15,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1430,66,1,1545,54,1,0 +2013,9,22,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1945,70,1,2055,70,1,0 +2013,9,18,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1740,6,0,1855,0,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,-5,0,625,-1,0,0 +2013,8,11,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1730,-1,0,2110,-27,0,0 +2013,6,6,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1012,0,0,1315,4,0,0 +2013,8,26,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1755,8,0,2035,3,0,0 +2013,9,23,1,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2040,107,1,2259,76,1,0 +2013,5,3,5,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,805,-1,0,1045,8,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,0,0,2327,1,0,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2000,5,0,2229,5,0,0 +2013,4,1,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-6,0,2315,-11,0,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,22,1,1745,14,0,0 +2013,7,12,5,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-4,0,1722,13,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1530,46,1,2225,51,1,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1735,-3,0,1845,-10,0,0 +2013,5,20,1,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-2,0,1305,-16,0,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1725,-6,0,1835,-2,0,0 +2013,4,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,23,1,1420,9,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1130,7,0,1310,22,1,0 +2013,6,19,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1242,-5,0,1427,6,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1110,0,0,1835,-2,0,0 +2013,7,18,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-5,0,1026,-8,0,0 +2013,7,10,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,1256,-9,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-2,0,1023,33,1,0 +2013,8,1,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2047,-4,0,2208,5,0,0 +2013,4,23,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1815,7,0,2341,2,0,0 +2013,7,6,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,700,11,0,840,0,0,0 +2013,4,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,58,1,2255,40,1,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1905,3,0,2135,-10,0,0 +2013,5,1,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,705,-4,0,1036,20,1,0 +2013,9,10,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,720,-3,0,1143,-2,0,0 +2013,5,4,6,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1530,-4,0,1720,-21,0,0 +2013,7,8,1,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,122,1,2200,114,1,0 +2013,7,30,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-4,0,1855,-11,0,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-1,0,1050,-6,0,0 +2013,5,8,3,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,935,-5,0,1019,-16,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,25,1,2305,53,1,0 +2013,10,22,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,824,-2,0,1019,-13,0,0 +2013,7,19,5,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,635,-2,0,755,-18,0,0 +2013,6,19,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,2,0,1809,0,0,0 +2013,6,25,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1915,30,1,2116,54,1,0 +2013,4,30,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1419,-5,0,1609,-18,0,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,19,1,1712,7,0,0 +2013,8,19,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-2,0,804,-10,0,0 +2013,5,17,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,-7,0,1306,-10,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1550,-4,0,1810,-15,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2300,-7,0,23,-24,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,905,9,0,1026,3,0,0 +2013,7,8,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-3,0,1006,-10,0,0 +2013,4,3,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,-3,0,1205,-9,0,0 +2013,8,10,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-3,0,714,-10,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1805,8,0,2038,-18,0,0 +2013,6,1,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1512,170,1,1700,172,1,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,8,0,1251,-7,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1450,-1,0,1633,-25,0,0 +2013,5,20,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1520,21,1,1640,21,1,0 +2013,4,4,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,735,-4,0,1045,-16,0,0 +2013,10,1,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1149,10,0,1406,16,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1736,10,0,1830,80,1,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-11,0,834,-7,0,0 +2013,4,26,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1243,23,1,1330,14,0,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1740,0,0,2300,-3,0,0 +2013,9,27,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,-7,0,1230,-14,0,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1400,4,0,1514,7,0,0 +2013,10,19,6,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1620,0,,1811,0,1,1 +2013,4,22,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-2,0,911,-27,0,0 +2013,5,3,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1940,126,1,2028,116,1,0 +2013,7,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1525,1,0,1640,8,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1240,9,0,1415,2,0,0 +2013,4,17,3,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,645,-7,0,746,-15,0,0 +2013,4,2,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1155,40,1,1335,29,1,0 +2013,7,8,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1758,34,1,1824,23,1,0 +2013,4,10,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,705,0,0,1520,7,0,0 +2013,4,2,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1045,-3,0,1150,-5,0,0 +2013,6,26,3,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2145,-16,0,2302,-30,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,955,-6,0,1153,-21,0,0 +2013,9,13,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1745,69,1,1910,69,1,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1000,-4,0,1341,-20,0,0 +2013,4,26,5,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-9,0,816,-6,0,0 +2013,7,23,2,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-6,0,1019,-13,0,0 +2013,4,15,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-6,0,1415,-4,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-2,0,1805,2,0,0 +2013,5,18,6,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,820,-2,0,1058,17,1,0 +2013,8,2,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1436,127,1,1645,141,1,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,835,-11,0,1225,-13,0,0 +2013,10,8,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1809,-4,0,1931,-3,0,0 +2013,4,10,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,752,-8,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1300,-6,0,1350,-9,0,0 +2013,7,19,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,646,-5,0,734,-13,0,0 +2013,6,25,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-6,0,955,-12,0,0 +2013,10,27,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,18,1,1740,11,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1805,3,0,2030,9,0,0 +2013,8,5,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-12,0,2045,-19,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,810,202,1,950,205,1,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,18,1,2359,8,0,0 +2013,5,23,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1520,-1,0,1620,-3,0,0 +2013,6,19,3,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,29,1,2145,19,1,0 +2013,6,20,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1350,-2,0,1641,1,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1140,-5,0,1620,-12,0,0 +2013,6,23,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-1,0,724,1,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2010,-2,0,2325,4,0,0 +2013,7,22,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,5,0,1623,19,1,0 +2013,10,21,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,1,0,829,-1,0,0 +2013,7,25,4,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,710,-3,0,1002,3,0,0 +2013,7,25,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,920,-3,0,1133,32,1,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-6,0,1106,-9,0,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1655,27,1,1910,22,1,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1302,50,1,1436,37,1,0 +2013,7,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,22,1,1915,14,0,0 +2013,6,10,1,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,43,1,1740,30,1,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1618,19,1,1810,-1,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2255,-7,0,639,-10,0,0 +2013,5,5,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2005,-5,0,2147,-6,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,826,-19,0,0 +2013,7,20,6,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1615,36,1,1755,29,1,0 +2013,6,12,3,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,955,-9,0,1122,-18,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1136,-3,0,1214,-13,0,0 +2013,7,28,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1845,3,0,1945,-3,0,0 +2013,4,7,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,-2,0,830,-9,0,0 +2013,4,28,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,76,1,2122,64,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,-3,0,1352,-3,0,0 +2013,10,10,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1940,4,0,2305,8,0,0 +2013,10,5,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,950,-6,0,1302,-22,0,0 +2013,9,2,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-3,0,1931,5,0,0 +2013,5,22,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,0,,2210,0,1,1 +2013,8,16,5,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1135,-1,0,1305,-9,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,29,1,1530,18,1,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-6,0,1831,-14,0,0 +2013,6,8,6,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,0,0,2254,1,0,0 +2013,9,4,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1315,-11,0,1423,-6,0,0 +2013,7,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,915,191,1,1039,235,1,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,-5,0,1015,-14,0,0 +2013,4,20,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1235,-1,0,1510,-11,0,0 +2013,4,5,5,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,43,1,2106,30,1,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1440,3,0,1735,-4,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1118,-1,0,1310,-28,0,0 +2013,6,9,7,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1012,12,0,1314,3,0,0 +2013,9,18,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2129,-10,0,2239,-26,0,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,9,0,930,4,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1850,14,0,2035,16,1,0 +2013,4,22,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1215,-9,0,1540,0,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1129,-3,0,1357,-7,0,0 +2013,5,25,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1543,14,0,1840,-7,0,0 +2013,4,10,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-5,0,1400,-3,0,0 +2013,10,3,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1342,3,0,1509,4,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,600,12,0,731,-1,0,0 +2013,6,12,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,-5,0,1720,-3,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,835,3,0,1005,-4,0,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,847,-9,0,1017,-10,0,0 +2013,5,28,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,2135,2,0,2250,-6,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1255,6,0,1415,5,0,0 +2013,6,12,3,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1722,43,1,1855,90,1,0 +2013,10,1,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,2003,-6,0,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,192,1,1416,180,1,0 +2013,5,4,6,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,735,-7,0,1055,-37,0,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1950,0,0,2325,-45,0,0 +2013,9,3,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,15,1,1810,-7,0,0 +2013,8,28,3,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2120,-6,0,514,4,0,0 +2013,7,7,7,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,0,0,1033,0,0,0 +2013,4,4,4,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,-3,0,1730,30,1,0 +2013,5,9,4,OO,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,828,-6,0,1100,2,0,0 +2013,10,10,4,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2349,20,1,704,-1,0,0 +2013,5,5,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,832,-1,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-4,0,828,-12,0,0 +2013,4,25,4,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2232,-3,0,30,-6,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2220,58,1,2347,50,1,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,915,24,1,1120,19,1,0 +2013,4,7,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,2,0,1115,-5,0,0 +2013,5,9,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1235,15,1,1515,3,0,0 +2013,6,1,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-9,0,1114,-16,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1141,9,0,1332,-3,0,0 +2013,8,28,3,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1039,2,0,1350,1,0,0 +2013,10,14,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,21,1,1550,13,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1536,131,1,1620,146,1,0 +2013,7,2,2,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,0,0,1850,3,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1508,4,0,1709,5,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,-1,0,1815,1,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2040,103,1,2235,114,1,0 +2013,4,12,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2040,139,1,2130,127,1,0 +2013,7,4,4,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2003,-6,0,2206,-38,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1000,-4,0,1120,-5,0,0 +2013,4,6,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1238,1,0,1435,7,0,0 +2013,8,14,3,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,-1,0,1430,-1,0,0 +2013,4,30,2,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1945,-4,0,2110,1,0,0 +2013,4,3,3,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-6,0,915,-5,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,0,0,1152,-13,0,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,930,11,0,1500,3,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,69,1,1910,76,1,0 +2013,4,8,1,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1350,-7,0,1520,4,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1130,27,1,1655,19,1,0 +2013,9,21,6,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,746,13,0,905,0,0,0 +2013,8,30,5,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,-6,0,941,6,0,0 +2013,10,10,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1622,8,0,1900,7,0,0 +2013,9,19,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,-2,0,945,-19,0,0 +2013,8,15,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,25,1,2206,14,0,0 +2013,5,6,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1445,60,1,1945,56,1,0 +2013,6,17,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,615,-2,0,755,5,0,0 +2013,5,11,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1847,7,0,2151,-2,0,0 +2013,4,27,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1812,11,0,2059,14,0,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1820,7,0,2340,-2,0,0 +2013,10,2,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1250,0,0,1315,-10,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,-2,0,1814,21,1,0 +2013,4,7,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,15,1,1831,10,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,9,0,1127,2,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,810,-2,0,1011,-14,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,939,1,0,1123,4,0,0 +2013,10,16,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1145,-2,0,1325,5,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,2,0,1344,9,0,0 +2013,7,5,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,1301,3,0,0 +2013,7,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,842,-5,0,1248,2,0,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1951,-3,0,2027,-2,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,-3,0,950,7,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,13,0,951,25,1,0 +2013,7,22,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1205,-5,0,1350,-19,0,0 +2013,9,23,1,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1400,0,0,1705,2,0,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,746,-6,0,1114,-5,0,0 +2013,5,24,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,147,1,2209,138,1,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-1,0,1515,4,0,0 +2013,5,12,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,900,-17,0,0 +2013,6,7,5,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1014,-14,0,0 +2013,5,6,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,810,-3,0,945,-21,0,0 +2013,8,16,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,-8,0,1813,8,0,0 +2013,7,17,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1655,110,1,1840,90,1,0 +2013,6,7,5,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,640,-8,0,0 +2013,6,16,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,910,-8,0,1245,-16,0,0 +2013,6,15,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,720,12,0,845,14,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1900,6,0,2000,2,0,0 +2013,6,9,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-8,0,924,-18,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-8,0,1310,3,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-2,0,1200,-18,0,0 +2013,9,3,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-2,0,2159,17,1,0 +2013,10,19,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-6,0,635,3,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,33,1,1420,30,1,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,0,0,2335,-9,0,0 +2013,6,25,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,56,1,1714,74,1,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,530,1,0,801,0,0,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1905,34,1,2130,25,1,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-2,0,2050,13,0,0 +2013,8,25,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,-4,0,1408,4,0,0 +2013,9,28,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,846,-14,0,0 +2013,8,19,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,959,-2,0,1315,-3,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1117,-5,0,1638,-3,0,0 +2013,5,8,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1250,169,1,1548,156,1,0 +2013,4,4,4,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1930,-7,0,2211,-20,0,0 +2013,7,22,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1145,-5,0,1750,-24,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,0,0,910,-21,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1602,1,0,1713,2,0,0 +2013,10,28,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1605,3,0,1819,0,0,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1759,-2,0,1916,-13,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2200,4,0,2317,-10,0,0 +2013,7,5,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,-7,0,1220,-29,0,0 +2013,9,4,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1550,1,0,1700,-5,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-3,0,1634,8,0,0 +2013,5,29,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,834,-6,0,1028,-12,0,0 +2013,9,14,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,2,0,1712,6,0,0 +2013,8,18,7,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1950,2,0,2244,-3,0,0 +2013,8,10,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1131,-3,0,1432,-11,0,0 +2013,5,23,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,8,0,1908,5,0,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1020,8,0,1150,6,0,0 +2013,7,12,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,-3,0,1400,-2,0,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,-4,0,1304,-31,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1400,104,1,1500,106,1,0 +2013,8,11,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-2,0,958,-20,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1650,26,1,1827,27,1,0 +2013,8,22,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,1,0,1445,-7,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,-1,0,2249,-17,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,-5,0,2324,-12,0,0 +2013,8,8,4,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,627,-5,0,745,12,0,0 +2013,8,23,5,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,60,1,2156,38,1,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,900,-5,0,1155,-4,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1555,-1,0,1828,1,0,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2120,12,0,2330,8,0,0 +2013,8,16,5,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1743,2,0,1830,-3,0,0 +2013,5,30,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-4,0,1408,-12,0,0 +2013,8,11,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1845,1,0,2026,-9,0,0 +2013,6,11,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1850,-7,0,2035,-20,0,0 +2013,5,17,5,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2300,-2,0,655,10,0,0 +2013,5,16,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,48,1,747,70,1,0 +2013,10,6,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,1,0,1926,42,1,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,0,0,825,2,0,0 +2013,9,2,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,824,14,0,1018,20,1,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-2,0,1343,-12,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-6,0,1810,-12,0,0 +2013,10,11,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,832,17,1,0 +2013,5,27,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-11,0,930,2,0,0 +2013,10,5,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1719,4,0,1910,11,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,6,0,1906,-14,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1635,22,1,1915,13,0,0 +2013,7,26,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1312,45,1,2142,52,1,0 +2013,9,23,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,1,0,1950,-3,0,0 +2013,9,11,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,0,0,1659,19,1,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1015,-3,0,1444,5,0,0 +2013,5,12,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,8,0,1920,22,1,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,1,0,930,0,0,0 +2013,5,12,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,817,169,1,957,149,1,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,8,0,2259,-17,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-5,0,842,-13,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1502,-5,0,1551,-13,0,0 +2013,10,4,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,-4,0,1915,-4,0,0 +2013,7,17,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,-7,0,910,8,0,0 +2013,6,17,1,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1518,0,0,1815,-1,0,0 +2013,10,14,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1203,-7,0,1808,-13,0,0 +2013,5,24,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1605,1,0,1656,1,0,0 +2013,4,24,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1215,-6,0,1331,-13,0,0 +2013,9,28,6,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,955,-5,0,1210,-5,0,0 +2013,4,29,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,623,-2,0,750,-12,0,0 +2013,7,25,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-10,0,1020,6,0,0 +2013,6,2,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,1,0,1430,-9,0,0 +2013,8,4,7,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,700,-9,0,1125,-18,0,0 +2013,7,18,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1615,-6,0,1800,-6,0,0 +2013,5,2,4,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1550,4,0,1750,-14,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1634,15,1,1758,27,1,0 +2013,5,3,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-2,0,1025,-11,0,0 +2013,6,24,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-3,0,754,-10,0,0 +2013,7,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,-6,0,1720,-10,0,0 +2013,7,12,5,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2035,18,1,2346,16,1,0 +2013,4,16,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,0,,1610,0,1,1 +2013,8,29,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-2,0,1215,6,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,10,0,1815,10,0,0 +2013,4,14,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,955,11,0,1110,5,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1032,-5,0,1217,-6,0,0 +2013,7,26,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-1,0,2128,25,1,0 +2013,6,4,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,-8,0,1510,-35,0,0 +2013,7,22,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-2,0,1105,9,0,0 +2013,8,11,7,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,90,1,1230,122,1,0 +2013,6,20,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,64,1,2035,61,1,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-3,0,1212,-2,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,739,-1,0,1329,-7,0,0 +2013,9,23,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1430,10,0,1505,9,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2115,0,,2240,0,1,1 +2013,6,5,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,5,0,2105,-1,0,0 +2013,7,24,3,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,1039,6,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1540,6,0,1630,42,1,0 +2013,4,29,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1859,111,1,2120,110,1,0 +2013,10,15,2,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,15,1,1504,7,0,0 +2013,6,22,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1935,11,0,2055,10,0,0 +2013,9,22,7,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,9,0,1239,3,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1611,-3,0,2005,-22,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,-1,0,1745,-2,0,0 +2013,6,3,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,915,-5,0,1113,-14,0,0 +2013,4,8,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1155,0,0,1320,-5,0,0 +2013,8,12,1,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1832,43,1,1959,37,1,0 +2013,9,11,3,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2050,0,0,2235,-1,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,-7,0,1348,-10,0,0 +2013,4,8,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1728,40,1,2010,22,1,0 +2013,9,2,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1155,-6,0,1805,-13,0,0 +2013,10,31,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1215,-5,0,1505,-9,0,0 +2013,10,7,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1145,-6,0,1235,0,0,0 +2013,9,7,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1400,-9,0,1730,-20,0,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1735,21,1,1915,15,1,0 +2013,9,21,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-4,0,806,0,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2040,-8,0,2221,-11,0,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,1,0,1004,3,0,0 +2013,7,21,7,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1215,10,0,1512,18,1,0 +2013,9,15,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1700,-2,0,1950,-17,0,0 +2013,5,27,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,-5,0,1447,-6,0,0 +2013,6,11,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,0,0,1207,-4,0,0 +2013,10,1,2,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1640,-11,0,1955,-16,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2255,15,1,46,13,0,0 +2013,10,6,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2030,7,0,2205,-15,0,0 +2013,4,20,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,6,0,604,-13,0,0 +2013,8,11,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-4,0,1404,19,1,0 +2013,4,8,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-8,0,638,-18,0,0 +2013,7,7,7,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1412,3,0,1632,-14,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1755,-2,0,2325,-20,0,0 +2013,9,22,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,0,0,1241,-6,0,0 +2013,7,7,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,112,1,2230,124,1,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1150,-2,0,1255,-7,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1050,-2,0,1459,5,0,0 +2013,4,8,1,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,3,0,2100,-9,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,-2,0,1804,6,0,0 +2013,8,15,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2324,31,1,15,30,1,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,716,-3,0,1036,-11,0,0 +2013,7,10,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,-5,0,1010,-19,0,0 +2013,9,1,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1319,-8,0,1500,-3,0,0 +2013,10,21,1,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,-2,0,1025,-9,0,0 +2013,5,5,7,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1913,-3,0,2105,-1,0,0 +2013,7,1,1,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1358,18,1,1430,14,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2307,-7,0,29,-14,0,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1251,12,0,1611,23,1,0 +2013,7,16,2,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-5,0,1127,-12,0,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,1,0,1126,-5,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1210,-1,0,1525,-11,0,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2250,24,1,653,-21,0,0 +2013,9,20,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1428,1,0,1548,-6,0,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,-1,0,1830,-7,0,0 +2013,4,10,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,-2,0,2014,-4,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,707,-4,0,823,-5,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-8,0,1124,-22,0,0 +2013,9,14,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1050,6,0,1230,6,0,0 +2013,8,6,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1845,12,0,2005,12,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2210,6,0,25,-12,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,0,0,1923,0,0,0 +2013,10,4,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,-3,0,2028,-5,0,0 +2013,4,3,3,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,-4,0,1545,-14,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,835,56,1,1100,41,1,0 +2013,8,13,2,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1748,43,1,1940,27,1,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2032,-5,0,2347,-7,0,0 +2013,9,12,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1150,-4,0,1849,9,0,0 +2013,7,5,5,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1855,-9,0,2000,-3,0,0 +2013,10,20,7,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,-6,0,1918,-7,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,815,12,0,940,0,0,0 +2013,7,4,4,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,959,-1,0,1451,4,0,0 +2013,6,19,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-4,0,1601,-3,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,13,0,1852,-23,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1005,52,1,1145,50,1,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,0,0,1000,-9,0,0 +2013,4,29,1,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,720,0,0,1235,2,0,0 +2013,7,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,720,-1,0,750,-8,0,0 +2013,6,21,5,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-16,0,1904,-6,0,0 +2013,10,21,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,835,-2,0,1120,-13,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-2,0,1220,8,0,0 +2013,5,31,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-8,0,904,-14,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-2,0,1655,-3,0,0 +2013,8,22,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,-1,0,2030,-1,0,0 +2013,8,3,6,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,15,1,1526,14,0,0 +2013,4,21,7,OO,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,194,1,1256,179,1,0 +2013,8,27,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1117,0,0,1152,2,0,0 +2013,8,17,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,-5,0,1005,-2,0,0 +2013,7,23,2,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,625,69,1,808,67,1,0 +2013,4,1,1,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1005,-5,0,1246,-7,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1600,50,1,1755,51,1,0 +2013,4,1,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1600,-2,0,1925,-6,0,0 +2013,8,27,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1352,0,0,1658,-3,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,909,44,1,1027,35,1,0 +2013,5,24,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-1,0,800,3,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,621,-4,0,917,-17,0,0 +2013,10,25,5,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,535,-5,0,906,-12,0,0 +2013,9,15,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1539,6,0,1856,19,1,0 +2013,8,30,5,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1314,31,1,1620,27,1,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1500,-7,0,1632,-3,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,855,-2,0,1049,-2,0,0 +2013,9,23,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,-8,0,530,-25,0,0 +2013,9,19,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,12,0,2015,17,1,0 +2013,4,3,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,1425,1,950,1429,1,0 +2013,5,6,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-2,0,1212,-3,0,0 +2013,5,10,5,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1645,6,0,1810,-6,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1750,-2,0,1911,-17,0,0 +2013,6,11,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,834,-1,0,1052,1,0,0 +2013,10,11,5,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1409,5,0,1639,-2,0,0 +2013,6,1,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-6,0,909,-23,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,120,1,2349,97,1,0 +2013,8,12,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-7,0,1249,9,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1940,52,1,2045,48,1,0 +2013,4,2,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-3,0,920,-9,0,0 +2013,8,23,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1306,-8,0,1352,-15,0,0 +2013,6,27,4,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1945,0,,2102,0,1,1 +2013,8,28,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-7,0,1817,1,0,0 +2013,10,2,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,1334,-10,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,11,0,1545,11,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2100,4,0,2305,-17,0,0 +2013,7,24,3,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1840,10,0,2150,-5,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1640,-5,0,1941,42,1,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-3,0,1844,-6,0,0 +2013,9,8,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-5,0,1004,-3,0,0 +2013,10,11,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1126,-7,0,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,1,0,750,-6,0,0 +2013,9,19,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-2,0,1015,-6,0,0 +2013,4,6,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,0,0,1430,13,0,0 +2013,5,24,5,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,18,1,1034,16,1,0 +2013,9,10,2,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,530,10,0,806,-8,0,0 +2013,6,27,4,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1016,39,1,1315,38,1,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,29,1,2320,18,1,0 +2013,9,3,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-6,0,845,-20,0,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,-3,0,1004,5,0,0 +2013,5,29,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,4,0,1845,-9,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,-7,0,2130,-33,0,0 +2013,7,14,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,7,0,2057,0,0,0 +2013,7,13,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-7,0,1320,-23,0,0 +2013,4,12,5,EV,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,-6,0,1214,-2,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1701,-5,0,2334,-21,0,0 +2013,5,28,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1315,1,0,1529,-1,0,0 +2013,4,23,2,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1035,-4,0,1325,-14,0,0 +2013,7,26,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1345,2,0,0 +2013,9,30,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-7,0,920,4,0,0 +2013,10,6,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1259,-5,0,1529,-7,0,0 +2013,10,23,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,710,-3,0,825,2,0,0 +2013,5,25,6,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-3,0,1850,-12,0,0 +2013,5,23,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1102,31,1,1234,39,1,0 +2013,7,10,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1410,30,1,2210,41,1,0 +2013,5,30,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-13,0,1035,2,0,0 +2013,10,2,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-5,0,1743,-12,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,852,5,0,1019,-13,0,0 +2013,7,15,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,0,0,2020,17,1,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,-2,0,1248,3,0,0 +2013,10,17,4,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,840,-7,0,1146,4,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1852,75,1,2049,75,1,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1740,42,1,2300,37,1,0 +2013,8,30,5,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,837,-7,0,1045,-33,0,0 +2013,4,3,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1042,-5,0,1125,-12,0,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,8,0,2030,11,0,0 +2013,8,27,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1959,-3,0,2103,0,0,0 +2013,7,10,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,207,1,1420,202,1,0 +2013,10,25,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-1,0,835,4,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,734,-2,0,929,-1,0,0 +2013,7,30,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,87,1,1140,82,1,0 +2013,7,27,6,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,846,-3,0,1138,-6,0,0 +2013,7,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-3,0,936,-4,0,0 +2013,10,10,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1944,-5,0,2100,-18,0,0 +2013,5,26,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,740,15,1,1010,8,0,0 +2013,5,4,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-1,0,925,-6,0,0 +2013,10,16,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-6,0,1325,-14,0,0 +2013,6,25,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-4,0,1635,55,1,0 +2013,6,1,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1815,40,1,2040,46,1,0 +2013,8,18,7,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1630,-7,0,1805,-14,0,0 +2013,4,5,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-5,0,1255,-7,0,0 +2013,9,2,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,0,,1913,0,1,1 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,835,-1,0,1125,-8,0,0 +2013,6,8,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,800,-4,0,920,-6,0,0 +2013,8,28,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2135,101,1,7,98,1,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-1,0,919,84,1,0 +2013,10,17,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1320,-4,0,1527,-2,0,0 +2013,6,9,7,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1135,-13,0,1400,-25,0,0 +2013,5,22,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,11,0,1810,3,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,59,1,1445,44,1,0 +2013,5,16,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-7,0,912,-6,0,0 +2013,5,4,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,806,-9,0,0 +2013,5,21,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,101,1,1012,93,1,0 +2013,4,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,735,4,0,1030,1,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,-1,0,1755,-2,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-7,0,1048,-21,0,0 +2013,7,11,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,745,-3,0,1610,-8,0,0 +2013,10,14,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1530,-2,0,1650,-13,0,0 +2013,6,13,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1435,69,1,1625,65,1,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,2,0,1740,-13,0,0 +2013,10,21,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1140,-3,0,1343,-7,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,7,0,1826,6,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1750,67,1,2310,53,1,0 +2013,8,4,7,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1957,-5,0,2130,-9,0,0 +2013,8,18,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-1,0,1225,-7,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,5,0,1200,-5,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-7,0,1055,-15,0,0 +2013,8,28,3,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-6,0,936,-3,0,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1315,26,1,1433,24,1,0 +2013,9,25,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1554,9,0,0 +2013,6,11,2,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-5,0,809,2,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,835,19,1,1005,17,1,0 +2013,6,27,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-7,0,1516,-7,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1140,2,0,1335,-9,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1855,23,1,2125,50,1,0 +2013,8,6,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1816,0,0,2159,5,0,0 +2013,9,18,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-10,0,716,-20,0,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,0,0,1020,14,0,0 +2013,8,19,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1115,30,1,1230,37,1,0 +2013,8,6,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,915,-4,0,1005,-16,0,0 +2013,7,22,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1135,215,1,1230,207,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1729,2,0,1857,-7,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1506,-3,0,1607,-4,0,0 +2013,5,7,2,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1631,-5,0,1720,-1,0,0 +2013,6,4,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-5,0,1610,-7,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,-1,0,1315,-7,0,0 +2013,9,11,3,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,700,16,1,845,14,0,0 +2013,7,4,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1735,-3,0,1835,-15,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,710,0,0,915,-1,0,0 +2013,10,29,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1605,13,0,0 +2013,5,20,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2150,-2,0,2315,-9,0,0 +2013,10,18,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,3,0,1940,-9,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,735,-3,0,929,-23,0,0 +2013,5,19,7,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,2,0,1945,13,0,0 +2013,5,11,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1550,19,1,1710,5,0,0 +2013,8,19,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1935,35,1,2310,46,1,0 +2013,9,29,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-6,0,2200,-14,0,0 +2013,4,8,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1345,192,1,1545,185,1,0 +2013,4,6,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-4,0,2015,-4,0,0 +2013,4,8,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1232,-7,0,1514,-22,0,0 +2013,6,13,4,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2000,151,1,2310,189,1,0 +2013,6,23,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,11,0,1639,7,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-3,0,1627,-8,0,0 +2013,6,5,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2113,-1,0,2225,-1,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1815,14,0,1905,1,0,0 +2013,10,6,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,0,0,2005,34,1,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,1,0,625,-5,0,0 +2013,5,20,1,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1925,20,1,2030,11,0,0 +2013,4,4,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-1,0,909,-2,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,0,0,1030,-11,0,0 +2013,5,11,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-7,0,1217,6,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,29,1,2000,28,1,0 +2013,7,29,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-2,0,1117,11,0,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1835,18,1,2130,35,1,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,909,-6,0,1031,-6,0,0 +2013,5,6,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1101,-20,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,5,0,1243,3,0,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,-2,0,2121,-8,0,0 +2013,4,22,1,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1035,4,0,1325,-7,0,0 +2013,10,18,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,735,-4,0,905,-13,0,0 +2013,9,29,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-6,0,850,-13,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1535,-4,0,1750,-2,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1330,-10,0,1618,2,0,0 +2013,9,13,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,0,0,1830,3,0,0 +2013,10,20,7,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,640,-7,0,1110,-32,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1716,217,1,1913,192,1,0 +2013,10,6,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1705,-5,0,1830,-8,0,0 +2013,10,25,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,9,0,1303,8,0,0 +2013,4,30,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-6,0,826,-7,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1345,-2,0,1455,-4,0,0 +2013,7,7,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,115,1,2212,117,1,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,945,15,1,1125,-3,0,0 +2013,4,17,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-12,0,1945,-12,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-2,0,1048,-12,0,0 +2013,4,11,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,910,0,0,1025,-10,0,0 +2013,4,22,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,26,1,1353,25,1,0 +2013,8,3,6,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1620,13,0,1805,6,0,0 +2013,9,20,5,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1155,-4,0,1435,-4,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,36,1,1045,18,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1515,3,0,1802,-23,0,0 +2013,10,2,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1832,29,1,2056,27,1,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1400,11,0,1515,30,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2030,-1,0,2340,1,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,-3,0,2355,-4,0,0 +2013,5,16,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,1155,2,0,0 +2013,8,6,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,6,0,2011,-1,0,0 +2013,7,5,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,709,-6,0,743,-2,0,0 +2013,7,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,0,0,1935,2,0,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,7,0,2105,4,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1815,6,0,1940,-16,0,0 +2013,4,29,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1704,11,0,1723,-3,0,0 +2013,5,22,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,-6,0,1824,-8,0,0 +2013,7,29,1,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1314,0,0,1620,39,1,0 +2013,8,10,6,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,919,-6,0,1039,-13,0,0 +2013,10,23,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,948,-10,0,1230,-26,0,0 +2013,6,5,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1634,242,1,1955,318,1,0 +2013,10,10,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1310,-5,0,1620,-15,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2035,-2,0,2330,-3,0,0 +2013,5,5,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-10,0,1355,-13,0,0 +2013,5,26,7,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,813,-7,0,0 +2013,5,31,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2025,3,0,2152,-14,0,0 +2013,7,25,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1409,-10,0,2245,3,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2025,8,0,2125,3,0,0 +2013,5,27,1,OO,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,-1,0,845,-9,0,0 +2013,6,14,5,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1500,-1,0,1810,-5,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-4,0,2145,-11,0,0 +2013,5,16,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1117,-6,0,1245,-12,0,0 +2013,7,3,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1022,0,0,1152,-20,0,0 +2013,10,5,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1320,-4,0,1635,-8,0,0 +2013,7,25,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-6,0,1535,-25,0,0 +2013,9,10,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-4,0,1226,-2,0,0 +2013,10,17,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,3,0,1325,1,0,0 +2013,6,7,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,21,1,1843,-14,0,0 +2013,4,2,2,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2002,-10,0,2259,-16,0,0 +2013,8,4,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,35,1,2240,19,1,0 +2013,5,7,2,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,-6,0,1127,-22,0,0 +2013,7,16,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-5,0,1113,-5,0,0 +2013,7,10,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,-7,0,1229,-7,0,0 +2013,6,15,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,933,1,0,1025,-3,0,0 +2013,5,2,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1155,-2,0,1240,-12,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,952,47,1,1312,146,1,0 +2013,7,9,2,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,22,1,1940,26,1,0 +2013,10,14,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,88,1,2025,74,1,0 +2013,7,9,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,600,67,1,705,62,1,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,2000,1,0,2120,-5,0,0 +2013,4,23,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13204,Orlando International,Orlando,FL,1415,11,0,1950,-3,0,0 +2013,8,17,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1020,5,0,1225,16,1,0 +2013,8,30,5,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1730,4,0,1910,4,0,0 +2013,9,22,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1221,5,0,1519,-1,0,0 +2013,5,8,3,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,730,-2,0,1051,-21,0,0 +2013,4,25,4,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,705,-2,0,1010,-1,0,0 +2013,9,4,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,625,-8,0,920,-18,0,0 +2013,5,20,1,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,730,1,0,1345,-10,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2005,154,1,2100,144,1,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,830,-1,0,1145,-11,0,0 +2013,10,14,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,800,-2,0,920,-8,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2209,1,0,2359,7,0,0 +2013,9,23,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,26,1,1727,42,1,0 +2013,6,13,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,2,0,757,-14,0,0 +2013,6,10,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,644,-3,0,935,-20,0,0 +2013,7,3,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,-10,0,941,-16,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1010,15,1,1140,14,0,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1725,3,0,1855,14,0,0 +2013,6,1,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1435,-1,0,1640,-18,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,0,0,2131,-11,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-5,0,1227,-8,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2035,33,1,2145,88,1,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,-2,0,1554,-13,0,0 +2013,8,3,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-6,0,638,-17,0,0 +2013,9,27,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-6,0,1905,-13,0,0 +2013,4,25,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-5,0,2213,-10,0,0 +2013,5,6,1,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,0,0,2140,16,1,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1012,5,0,1352,-9,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,-4,0,1500,19,1,0 +2013,10,28,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2000,-7,0,2128,-10,0,0 +2013,10,29,2,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1805,-10,0,1926,-2,0,0 +2013,4,1,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,740,-1,0,1117,-10,0,0 +2013,7,14,7,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,800,7,0,935,-1,0,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1520,31,1,1710,21,1,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-7,0,1028,-19,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1718,304,1,2000,307,1,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,-1,0,900,-3,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,845,-1,0,1125,-4,0,0 +2013,7,5,5,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,-4,0,2152,-19,0,0 +2013,8,30,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1350,-1,0,1735,20,1,0 +2013,9,27,5,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,715,-11,0,835,-14,0,0 +2013,9,19,4,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-5,0,1750,-17,0,0 +2013,5,30,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2142,-1,0,2245,-12,0,0 +2013,4,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-1,0,1605,-4,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1030,-2,0,1300,0,0,0 +2013,10,1,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,0,0,950,3,0,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1140,12,0,1240,15,1,0 +2013,6,14,5,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1910,7,0,2132,-2,0,0 +2013,4,28,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2140,0,0,2333,6,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2044,25,1,2232,39,1,0 +2013,5,6,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,849,-8,0,0 +2013,4,1,1,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1125,0,0,1355,-3,0,0 +2013,6,4,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,605,-4,0,742,6,0,0 +2013,10,10,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,2,0,2214,0,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,5,0,1231,-3,0,0 +2013,6,16,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1620,6,0,1759,26,1,0 +2013,5,31,5,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,0,0,911,5,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,900,-1,0,1159,22,1,0 +2013,6,2,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,-4,0,1314,1,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1206,8,0,1342,-13,0,0 +2013,10,24,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,-3,0,1029,-8,0,0 +2013,5,25,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1040,0,0,1315,5,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1625,1,0,1739,-5,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1600,-4,0,1705,-2,0,0 +2013,6,22,6,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,-1,0,743,0,0,0 +2013,6,11,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-1,0,845,6,0,0 +2013,10,27,7,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,725,1,0,1017,-12,0,0 +2013,6,29,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2020,34,1,2302,20,1,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,957,17,1,1224,-6,0,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,0,,1625,0,1,1 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1130,6,0,1255,-4,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1053,-20,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1125,30,1,1245,34,1,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,3,0,1420,4,0,0 +2013,8,12,1,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1610,63,1,1750,58,1,0 +2013,8,29,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-1,0,1105,-2,0,0 +2013,10,22,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-6,0,701,-19,0,0 +2013,9,13,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1535,34,1,1704,30,1,0 +2013,6,3,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,850,-2,0,942,-7,0,0 +2013,10,31,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,5,0,823,-10,0,0 +2013,7,23,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,645,67,1,844,54,1,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2154,-4,0,2309,-16,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1150,-2,0,1255,-1,0,0 +2013,9,13,5,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1642,7,0,1837,0,0,0 +2013,6,23,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-1,0,958,7,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1415,4,0,1640,-7,0,0 +2013,10,11,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,1,0,1517,-1,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,4,0,2115,3,0,0 +2013,6,15,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,21,1,1545,17,1,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2100,22,1,2209,9,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2154,46,1,30,33,1,0 +2013,10,3,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,753,-7,0,1012,-31,0,0 +2013,10,29,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,515,3,0,652,0,0,0 +2013,6,23,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-3,0,755,-15,0,0 +2013,8,9,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,610,-2,0,730,-13,0,0 +2013,7,10,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,710,-6,0,829,-20,0,0 +2013,7,11,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-6,0,630,-13,0,0 +2013,8,22,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-3,0,635,-10,0,0 +2013,9,23,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-5,0,1155,-8,0,0 +2013,5,28,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1515,-2,0,2043,-4,0,0 +2013,8,2,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,11,0,1155,9,0,0 +2013,9,4,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,24,1,2025,20,1,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1955,16,1,2130,5,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,735,-3,0,928,-11,0,0 +2013,6,4,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-2,0,624,-11,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,57,1,1219,35,1,0 +2013,9,10,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1739,4,0,1821,2,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1937,-3,0,2115,-12,0,0 +2013,8,1,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-1,0,1220,-5,0,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,-1,0,1100,35,1,0 +2013,6,8,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-4,0,1803,-15,0,0 +2013,6,1,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,-6,0,1158,-16,0,0 +2013,8,21,3,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2213,42,1,605,41,1,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,-2,0,1834,-4,0,0 +2013,8,10,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1351,-4,0,1458,-17,0,0 +2013,5,14,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-7,0,2045,-16,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1725,-5,0,2001,-11,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-5,0,1130,-20,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1855,1,0,2020,-9,0,0 +2013,7,25,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1525,19,1,1655,3,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,735,-2,0,904,-4,0,0 +2013,4,19,5,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1450,132,1,1850,168,1,0 +2013,9,4,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1116,-2,0,1435,-8,0,0 +2013,6,18,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,0,,735,0,1,1 +2013,6,27,4,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,39,1,1935,20,1,0 +2013,9,25,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,-3,0,1912,-7,0,0 +2013,7,31,3,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1655,-4,0,1923,-5,0,0 +2013,6,18,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1223,-3,0,1328,3,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1925,3,0,2354,13,0,0 +2013,4,4,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,15,1,1717,25,1,0 +2013,4,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,-6,0,1440,-19,0,0 +2013,6,27,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1102,9,0,1700,15,1,0 +2013,10,17,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-3,0,1453,-12,0,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,900,-4,0,1426,12,0,0 +2013,5,14,2,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1557,-2,0,1858,-12,0,0 +2013,8,7,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1053,0,,1240,0,1,1 +2013,9,30,1,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,-4,0,1720,-17,0,0 +2013,9,25,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1535,-10,0,1707,-15,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1435,-6,0,1540,-15,0,0 +2013,10,8,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1632,-5,0,1845,-9,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,30,1,2045,12,0,0 +2013,8,27,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1256,-4,0,1420,-31,0,0 +2013,6,14,5,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1057,-4,0,1422,-16,0,0 +2013,7,9,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,90,1,1500,79,1,0 +2013,10,28,1,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1855,-6,0,2205,-33,0,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,630,-9,0,816,-10,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,-1,0,2131,-6,0,0 +2013,10,27,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2213,2,0,2306,-8,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1805,1,0,2038,-5,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1734,1,0,1817,4,0,0 +2013,10,1,2,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,4,0,1315,17,1,0 +2013,9,18,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,2,0,1459,17,1,0 +2013,8,6,2,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,811,5,0,952,18,1,0 +2013,4,24,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-1,0,1250,-4,0,0 +2013,4,11,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1634,135,1,1748,124,1,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,14,0,1030,5,0,0 +2013,10,21,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,815,3,0,930,-8,0,0 +2013,4,22,1,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1449,-3,0,1603,-6,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1540,4,0,2300,-14,0,0 +2013,4,26,5,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1958,3,0,2200,-18,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2140,93,1,2225,101,1,0 +2013,5,6,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1722,-2,0,1953,7,0,0 +2013,7,26,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,645,0,0,752,12,0,0 +2013,6,26,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-5,0,1345,-15,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1630,3,0,1735,-3,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-5,0,2230,0,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2020,0,0,2241,-3,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,21,1,1814,52,1,0 +2013,6,27,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,0,0,1905,29,1,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,907,57,1,1140,59,1,0 +2013,6,6,4,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2140,-5,0,24,-8,0,0 +2013,7,13,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,101,1,1755,111,1,0 +2013,7,27,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1030,-4,0,1340,-9,0,0 +2013,8,21,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1145,-5,0,1155,-4,0,0 +2013,4,13,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1006,19,1,1238,5,0,0 +2013,4,18,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,0,0,1425,30,1,0 +2013,8,22,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,23,1,1420,23,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2030,-1,0,2252,-13,0,0 +2013,6,7,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2300,-1,0,715,15,1,0 +2013,6,9,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1108,-7,0,1310,-9,0,0 +2013,6,5,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1016,59,1,1840,41,1,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1947,14,0,2345,-3,0,0 +2013,6,13,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1119,13,0,1245,-5,0,0 +2013,8,9,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,930,-4,0,1235,-7,0,0 +2013,5,31,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,715,-7,0,1051,-1,0,0 +2013,6,5,3,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1455,-2,0,1638,1,0,0 +2013,8,26,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1745,-10,0,2055,11,0,0 +2013,10,7,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,19,1,2128,29,1,0 +2013,7,16,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1741,60,1,2035,56,1,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,-1,0,1911,-17,0,0 +2013,9,11,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-9,0,1035,-20,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1240,33,1,1800,12,0,0 +2013,10,3,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-13,0,925,9,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,715,-3,0,815,-7,0,0 +2013,10,5,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1924,6,0,2031,4,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,-1,0,1814,-30,0,0 +2013,5,21,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,26,1,2045,46,1,0 +2013,4,24,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1408,1,0,1655,2,0,0 +2013,6,23,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,749,-2,0,1555,16,1,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1210,0,0,1320,-2,0,0 +2013,5,27,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2046,7,0,2319,10,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,936,-3,0,1312,-6,0,0 +2013,5,1,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,731,-11,0,1115,30,1,0 +2013,5,27,1,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1727,-3,0,1915,-18,0,0 +2013,6,25,2,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1651,319,1,1927,312,1,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1415,67,1,1630,63,1,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1532,-5,0,1741,-9,0,0 +2013,4,2,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1554,-9,0,1841,-13,0,0 +2013,10,29,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-6,0,906,13,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,955,-4,0,1115,11,0,0 +2013,8,4,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,41,1,1829,31,1,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,13,0,1631,-1,0,0 +2013,7,13,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1225,26,1,1805,45,1,0 +2013,6,29,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,0,0,1326,-41,0,0 +2013,9,24,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,641,-25,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1859,16,1,2210,22,1,0 +2013,5,3,5,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-2,0,1810,-6,0,0 +2013,10,24,4,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,640,-4,0,805,-15,0,0 +2013,6,24,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-10,0,850,-12,0,0 +2013,5,19,7,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1629,10,0,1927,8,0,0 +2013,7,15,1,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1521,49,1,1824,38,1,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2100,33,1,2340,53,1,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1710,8,0,1900,1,0,0 +2013,7,12,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1957,-8,0,2309,-49,0,0 +2013,10,4,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1014,-6,0,1112,-4,0,0 +2013,8,11,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,1205,-28,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-9,0,939,-20,0,0 +2013,10,21,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1725,-7,0,1855,-17,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-9,0,1105,-20,0,0 +2013,10,20,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-3,0,1230,-7,0,0 +2013,6,21,5,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,-4,0,629,-8,0,0 +2013,4,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1120,-4,0,1235,-12,0,0 +2013,6,10,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-5,0,849,-5,0,0 +2013,4,7,7,9E,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1110,-9,0,1305,-12,0,0 +2013,5,12,7,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-10,0,2350,-9,0,0 +2013,7,31,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,6,0,1255,2,0,0 +2013,9,30,1,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-5,0,1232,-15,0,0 +2013,10,3,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,710,-8,0,1025,-24,0,0 +2013,8,27,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,535,-5,0,712,-9,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,22,1,1605,8,0,0 +2013,7,23,2,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1540,-3,0,1745,-7,0,0 +2013,10,28,1,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,845,-2,0,1049,-1,0,0 +2013,4,24,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-7,0,1945,-4,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1610,1,0,1749,-6,0,0 +2013,7,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,700,-2,0,935,-8,0,0 +2013,9,29,7,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,940,-4,0,1228,3,0,0 +2013,7,7,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-13,0,801,-6,0,0 +2013,7,11,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1130,8,0,1720,8,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,12,0,846,24,1,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2210,0,0,2355,-15,0,0 +2013,6,9,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,735,1,0,940,-9,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1230,-2,0,1410,-12,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1010,29,1,1034,11,0,0 +2013,8,15,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,-3,0,2120,-2,0,0 +2013,10,17,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1810,-5,0,2016,-14,0,0 +2013,4,5,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,30,1,2011,10,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,0,0,1547,-15,0,0 +2013,9,3,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1426,-1,0,1558,-17,0,0 +2013,6,28,5,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,540,-2,0,955,-17,0,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,1,0,1423,31,1,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1825,0,0,2033,-9,0,0 +2013,4,3,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1532,-6,0,1808,-17,0,0 +2013,5,9,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1515,0,0,1645,-18,0,0 +2013,9,24,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1820,-2,0,2000,-2,0,0 +2013,5,18,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,950,0,0,1235,3,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2238,81,1,9,70,1,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1945,82,1,2200,83,1,0 +2013,7,23,2,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1305,7,0,1425,-1,0,0 +2013,5,13,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1653,-6,0,1745,-15,0,0 +2013,7,14,7,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1410,40,1,1820,40,1,0 +2013,10,12,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1300,-2,0,1410,-23,0,0 +2013,8,26,1,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1800,-4,0,2245,-46,0,0 +2013,4,9,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,926,2,0,1108,10,0,0 +2013,8,31,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1315,21,1,1400,14,0,0 +2013,8,28,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,69,1,1725,59,1,0 +2013,4,12,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,21,1,1440,23,1,0 +2013,6,19,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,0,0,1755,-1,0,0 +2013,4,1,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,11,0,2210,4,0,0 +2013,4,19,5,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,835,-2,0,1105,-15,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,16,1,1002,4,0,0 +2013,5,21,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,-8,0,1633,23,1,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,0,0,1955,-6,0,0 +2013,9,1,7,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1755,75,1,2005,50,1,0 +2013,9,18,3,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-1,0,905,-6,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,9,0,1020,4,0,0 +2013,9,6,5,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,701,-3,0,919,2,0,0 +2013,4,29,1,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,-13,0,1940,20,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1335,-2,0,1444,-9,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1310,7,0,1550,6,0,0 +2013,10,5,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1250,0,0,1340,-3,0,0 +2013,8,1,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-3,0,2110,1,0,0 +2013,5,26,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2005,-5,0,2024,-8,0,0 +2013,7,21,7,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1100,-13,0,1257,-39,0,0 +2013,7,3,3,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2030,3,0,2115,-7,0,0 +2013,5,18,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,-2,0,1756,-13,0,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,921,-3,0,1438,-19,0,0 +2013,7,3,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1532,9,0,1900,-8,0,0 +2013,5,26,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1015,-5,0,1125,1,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1331,17,1,1724,26,1,0 +2013,6,5,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1115,4,0,1240,2,0,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,-6,0,2212,8,0,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1525,12,0,1815,10,0,0 +2013,6,18,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,708,3,0,1015,17,1,0 +2013,4,1,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-11,0,825,-25,0,0 +2013,10,9,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,550,-5,0,732,-2,0,0 +2013,5,23,4,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1035,18,1,1325,3,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1945,-3,0,2044,1,0,0 +2013,6,25,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1512,0,,1618,0,1,1 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2155,8,0,2307,-3,0,0 +2013,5,10,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,35,-1,0,605,15,1,0 +2013,8,10,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,900,16,1,1030,14,0,0 +2013,7,23,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-4,0,1405,-6,0,0 +2013,6,5,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1225,-5,0,1447,-11,0,0 +2013,7,26,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1531,5,0,1645,-5,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-7,0,1234,-6,0,0 +2013,7,23,2,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,740,2,0,1020,5,0,0 +2013,6,2,7,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,753,-8,0,1340,-1,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,70,1,1615,65,1,0 +2013,6,30,7,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1245,120,1,1419,99,1,0 +2013,7,23,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,0,,1143,0,1,1 +2013,6,23,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1205,-1,0,1459,-5,0,0 +2013,6,4,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1430,-3,0,1640,-16,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,931,-4,0,1145,-31,0,0 +2013,5,31,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,1,0,1630,-9,0,0 +2013,9,2,1,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-4,0,1023,1,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1922,98,1,2129,90,1,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,730,1,0,920,3,0,0 +2013,7,11,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,610,5,0,615,0,0,0 +2013,9,26,4,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,835,14,0,1123,8,0,0 +2013,5,15,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1916,-6,0,2100,-24,0,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1650,4,0,1755,2,0,0 +2013,6,18,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1050,1,0,1235,-10,0,0 +2013,4,17,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-7,0,1712,-3,0,0 +2013,10,2,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-4,0,1020,-20,0,0 +2013,5,16,4,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,58,1,1802,64,1,0 +2013,8,23,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,9,0,1407,3,0,0 +2013,5,18,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-7,0,1947,-9,0,0 +2013,8,1,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2059,37,1,2249,30,1,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1433,-11,0,1545,-17,0,0 +2013,6,29,6,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1601,37,1,1710,36,1,0 +2013,9,9,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1800,-5,0,1900,20,1,0 +2013,5,6,1,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,816,373,1,1400,366,1,0 +2013,10,17,4,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,911,-5,0,1439,-1,0,0 +2013,5,20,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1220,-1,0,1324,-25,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,0,0,1259,-5,0,0 +2013,7,6,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1113,-8,0,1219,-5,0,0 +2013,6,25,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,41,1,1450,40,1,0 +2013,4,10,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,3,0,1120,33,1,0 +2013,10,25,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1105,-2,0,1215,-14,0,0 +2013,8,29,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,1,0,1240,-8,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,745,-4,0,914,-21,0,0 +2013,9,12,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,-3,0,2344,-1,0,0 +2013,7,12,5,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,800,5,0,1555,20,1,0 +2013,9,30,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,-8,0,1435,-1,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1915,-6,0,2049,-20,0,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1125,-3,0,1230,-5,0,0 +2013,4,13,6,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,3,0,714,1,0,0 +2013,9,20,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14307,Theodore Francis Green State,Providence,RI,2010,-1,0,2151,-8,0,0 +2013,9,3,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1356,-4,0,2157,-29,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,-3,0,1623,11,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1435,13,0,1755,0,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-4,0,1415,2,0,0 +2013,4,10,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1125,-6,0,1200,-14,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,815,1,0,1055,1,0,0 +2013,7,8,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1523,15,1,1619,8,0,0 +2013,7,26,5,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,929,-2,0,1214,3,0,0 +2013,8,29,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-4,0,1412,14,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1325,-2,0,1626,3,0,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,805,-7,0,946,-21,0,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-2,0,1023,-10,0,0 +2013,4,1,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-1,0,1240,2,0,0 +2013,7,5,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,815,-3,0,1141,-2,0,0 +2013,6,17,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1959,29,1,2,13,0,0 +2013,8,15,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-4,0,1750,-11,0,0 +2013,10,24,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2100,3,0,2325,15,1,0 +2013,7,30,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1415,0,0,1530,-7,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,2,0,1410,-1,0,0 +2013,10,16,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1445,-5,0,2315,-2,0,0 +2013,7,5,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,-11,0,2140,-27,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1115,42,1,1805,26,1,0 +2013,7,4,4,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-5,0,901,-4,0,0 +2013,10,6,7,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1638,46,1,1728,41,1,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,1,0,2000,-8,0,0 +2013,6,14,5,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,600,7,0,759,-2,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1150,1,0,1320,20,1,0 +2013,4,3,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-6,0,1633,-12,0,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,5,0,2042,59,1,0 +2013,10,20,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1853,-7,0,2106,7,0,0 +2013,5,23,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,19,1,1127,4,0,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,0,0,1915,-9,0,0 +2013,5,18,6,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,540,-6,0,850,-9,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1939,38,1,2318,41,1,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,16,1,2205,14,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2155,0,0,15,14,0,0 +2013,8,20,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,5,0,1430,-1,0,0 +2013,10,4,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1524,-6,0,1841,-24,0,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1110,14,0,1315,12,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,950,-3,0,1243,-15,0,0 +2013,5,16,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2250,-7,0,815,-22,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1930,-4,0,2100,-13,0,0 +2013,6,8,6,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-3,0,1055,-28,0,0 +2013,4,4,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,750,-1,0,920,-1,0,0 +2013,10,30,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,29,1,2105,5,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,3,0,2045,-4,0,0 +2013,8,22,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1015,52,1,1140,64,1,0 +2013,10,15,2,YV,14100,Philadelphia International,Philadelphia,PA,14730,Louisville International-Standiford Field,Louisville,KY,2040,-5,0,2241,-18,0,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1835,-4,0,2110,-28,0,0 +2013,8,25,7,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1342,8,0,1607,-7,0,0 +2013,6,3,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,-6,0,1924,-3,0,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1021,-3,0,1604,28,1,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1629,0,,1823,0,1,1 +2013,7,17,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1049,-14,0,0 +2013,7,2,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,900,-10,0,0 +2013,6,18,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1219,5,0,1337,23,1,0 +2013,5,30,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,805,-4,0,1000,-29,0,0 +2013,4,2,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,600,-1,0,725,-9,0,0 +2013,4,13,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,16,1,1521,25,1,0 +2013,7,27,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,0,0,830,-10,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2055,-4,0,2134,-15,0,0 +2013,8,29,4,DL,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1905,-2,0,2020,-3,0,0 +2013,5,26,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-5,0,1805,-24,0,0 +2013,7,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,530,0,0,655,-21,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1139,-6,0,1308,3,0,0 +2013,10,20,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1830,13,0,2220,20,1,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,845,-2,0,1018,-11,0,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2205,-4,0,2258,-7,0,0 +2013,6,4,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1245,6,0,2048,-17,0,0 +2013,5,3,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,29,1,1745,32,1,0 +2013,8,7,3,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,-1,0,1710,-8,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1815,-2,0,18,9,0,0 +2013,9,1,7,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1620,-3,0,1921,-21,0,0 +2013,4,7,7,DL,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1825,4,0,2333,-7,0,0 +2013,8,28,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1156,-7,0,1352,-27,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1715,-3,0,1850,-14,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1415,5,0,1707,-16,0,0 +2013,7,7,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1855,15,1,2205,18,1,0 +2013,10,21,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,-2,0,1425,-29,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-1,0,2322,-2,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,850,-1,0,1046,-16,0,0 +2013,5,7,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1144,-4,0,1334,-9,0,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,-6,0,1600,-12,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1735,-2,0,1823,-7,0,0 +2013,8,19,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1816,-7,0,1930,24,1,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,855,-2,0,1342,0,0,0 +2013,10,11,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,-2,0,1813,3,0,0 +2013,8,2,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1756,10,0,1937,7,0,0 +2013,6,12,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-2,0,1128,3,0,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1715,80,1,2010,60,1,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,18,1,1930,8,0,0 +2013,7,5,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-2,0,1515,4,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1805,11,0,2059,-9,0,0 +2013,5,11,6,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,-3,0,1705,23,1,0 +2013,7,31,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,-7,0,2110,18,1,0 +2013,8,15,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,730,-1,0,845,9,0,0 +2013,7,15,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-2,0,2058,0,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,630,-3,0,840,-10,0,0 +2013,7,20,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,715,2,0,825,0,0,0 +2013,10,9,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,901,5,0,1013,14,0,0 +2013,7,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,900,10,0,1005,4,0,0 +2013,4,11,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1440,57,1,2220,45,1,0 +2013,9,24,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-8,0,1438,-13,0,0 +2013,6,21,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,33,1,2249,-4,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,-8,0,910,-20,0,0 +2013,6,24,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1129,10,0,1230,2,0,0 +2013,6,6,4,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1631,41,1,2014,33,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2035,10,0,2247,3,0,0 +2013,5,1,3,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,830,13,0,1120,7,0,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,-3,0,2145,-8,0,0 +2013,5,3,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,60,1,1125,84,1,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,8,0,1116,3,0,0 +2013,5,11,6,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1035,-8,0,1741,-23,0,0 +2013,8,14,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,59,1,2215,63,1,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1115,16,1,1355,4,0,0 +2013,4,12,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2115,43,1,2225,39,1,0 +2013,9,18,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,8,0,1310,-2,0,0 +2013,10,26,6,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1213,0,0,1505,-3,0,0 +2013,7,28,7,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1519,-1,0,1628,-7,0,0 +2013,9,8,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1755,0,0,1850,6,0,0 +2013,4,22,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,720,-6,0,1017,1,0,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1748,-3,0,2114,-32,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,835,17,1,1100,10,0,0 +2013,10,6,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,735,-2,0,1035,-13,0,0 +2013,4,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1252,70,1,1504,74,1,0 +2013,6,16,7,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,915,78,1,1205,64,1,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1210,15,1,1710,-5,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1130,0,,1515,0,1,1 +2013,8,23,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1104,-10,0,1229,-20,0,0 +2013,4,11,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1940,-3,0,2122,-11,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,11,0,1156,3,0,0 +2013,5,12,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2027,-5,0,2150,-12,0,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,7,0,1018,-3,0,0 +2013,9,27,5,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1805,-9,0,2327,-4,0,0 +2013,7,11,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,925,-7,0,1045,-2,0,0 +2013,4,14,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1640,-3,0,1730,10,0,0 +2013,6,10,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1030,8,0,1205,9,0,0 +2013,10,23,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,12,0,1722,15,1,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1635,-5,0,1902,-4,0,0 +2013,8,7,3,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1500,18,1,1705,6,0,0 +2013,6,27,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,740,1,0,950,4,0,0 +2013,6,28,5,9E,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1722,88,1,2128,92,1,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1331,9,0,1610,10,0,0 +2013,6,18,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,610,33,1,722,37,1,0 +2013,10,10,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1355,-3,0,2000,-30,0,0 +2013,5,5,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,930,1,0,1245,-13,0,0 +2013,7,25,4,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1000,-9,0,1225,-13,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1045,-4,0,1226,-13,0,0 +2013,9,5,4,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-1,0,1910,-22,0,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1435,9,0,1540,4,0,0 +2013,4,16,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1705,-18,0,0 +2013,10,20,7,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,634,-5,0,1147,-22,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,-6,0,900,2,0,0 +2013,8,26,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1727,-6,0,1837,-10,0,0 +2013,10,16,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-9,0,945,-25,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,-8,0,2125,-18,0,0 +2013,6,2,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,19,1,1350,1,0,0 +2013,4,27,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,715,-7,0,833,-5,0,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1310,-5,0,1415,-7,0,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,3,0,504,-38,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1520,46,1,1715,70,1,0 +2013,8,27,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1950,4,0,2105,15,1,0 +2013,5,28,2,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1548,-5,0,1630,0,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1835,0,,2115,0,1,1 +2013,10,3,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,545,-1,0,700,-10,0,0 +2013,5,29,3,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1127,-1,0,1420,-7,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1125,-4,0,1309,-13,0,0 +2013,8,29,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1428,19,1,1553,24,1,0 +2013,10,16,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,2,0,1915,6,0,0 +2013,6,6,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-4,0,2108,-13,0,0 +2013,4,29,1,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,0,0,958,3,0,0 +2013,7,6,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1545,0,0,2005,-9,0,0 +2013,5,16,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1412,23,1,1649,5,0,0 +2013,8,1,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,555,-3,0,830,-25,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,-3,0,1555,-5,0,0 +2013,5,19,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,2,0,1605,-8,0,0 +2013,8,21,3,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1412,-10,0,1457,-20,0,0 +2013,4,23,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-4,0,1530,-15,0,0 +2013,4,27,6,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1430,-10,0,1635,-27,0,0 +2013,10,26,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1509,-2,0,1620,2,0,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-2,0,1051,-3,0,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1042,17,1,1616,32,1,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1905,8,0,2100,2,0,0 +2013,4,3,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1709,27,1,1812,22,1,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-4,0,2139,26,1,0 +2013,6,19,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,0,0,1635,-2,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1620,11,0,2310,-4,0,0 +2013,9,27,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1556,-12,0,2000,-6,0,0 +2013,4,2,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,840,1,0,1005,-4,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2240,3,0,2340,-4,0,0 +2013,5,21,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1101,-3,0,1128,5,0,0 +2013,8,16,5,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,4,0,2115,-46,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1430,-3,0,1541,-7,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,-4,0,2305,-14,0,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,645,-7,0,802,15,1,0 +2013,5,13,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,0,0,2050,-52,0,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,649,49,1,926,45,1,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1530,-5,0,1850,-24,0,0 +2013,7,7,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1013,2,0,1116,0,0,0 +2013,10,4,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,1017,-10,0,0 +2013,8,19,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,6,0,2125,-8,0,0 +2013,10,6,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,0,0,803,-2,0,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1320,7,0,1440,-1,0,0 +2013,4,24,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-3,0,2105,7,0,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1225,-9,0,1350,-17,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1429,-3,0,1624,-9,0,0 +2013,4,24,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1429,19,1,1743,19,1,0 +2013,5,25,6,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1955,-3,0,2157,-6,0,0 +2013,9,4,3,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,810,1,0,1054,-14,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-1,0,1655,-16,0,0 +2013,4,14,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-8,0,1325,-10,0,0 +2013,7,30,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,0,0,1335,4,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,6,0,1830,-9,0,0 +2013,8,31,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1735,-8,0,1925,-14,0,0 +2013,10,1,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1231,2,0,1446,1,0,0 +2013,8,14,3,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,650,-2,0,810,-19,0,0 +2013,5,12,7,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1729,-7,0,2105,-21,0,0 +2013,5,1,3,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1210,-4,0,1455,-3,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,730,-5,0,1056,-5,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1315,0,0,1645,4,0,0 +2013,5,26,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,5,0,1744,-8,0,0 +2013,4,12,5,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1720,0,0,2000,-5,0,0 +2013,4,15,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1215,-5,0,1320,-6,0,0 +2013,4,29,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,20,1,1605,24,1,0 +2013,4,6,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,2015,-13,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1815,45,1,2046,16,1,0 +2013,4,26,5,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,-3,0,2020,-3,0,0 +2013,6,24,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1105,-2,0,1230,-7,0,0 +2013,6,17,1,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,116,1,2135,136,1,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-3,0,735,-8,0,0 +2013,4,3,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,11,0,910,2,0,0 +2013,8,13,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,53,1,940,36,1,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,1115,-4,0,0 +2013,5,31,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-2,0,720,-2,0,0 +2013,10,10,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-7,0,758,-18,0,0 +2013,5,10,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,-9,0,835,-17,0,0 +2013,9,10,2,OO,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1815,1,0,2220,-3,0,0 +2013,10,25,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-7,0,1425,-8,0,0 +2013,4,14,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-10,0,756,12,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1615,-3,0,47,-12,0,0 +2013,10,4,5,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,747,6,0,1017,31,1,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1145,7,0,1355,-7,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1852,-4,0,2026,-4,0,0 +2013,7,28,7,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-9,0,1349,-3,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,-4,0,1415,-5,0,0 +2013,7,18,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-7,0,1222,-23,0,0 +2013,9,5,4,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,-9,0,700,-15,0,0 +2013,10,26,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1256,-3,0,1429,-6,0,0 +2013,5,19,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,88,1,1755,68,1,0 +2013,8,28,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1815,-2,0,1957,14,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-3,0,2340,-10,0,0 +2013,6,21,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,620,-1,0,1215,34,1,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1105,4,0,1325,-24,0,0 +2013,9,6,5,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,959,-8,0,1150,-3,0,0 +2013,4,5,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1641,7,0,1821,-6,0,0 +2013,5,30,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,1,0,1535,-6,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,12,0,2045,2,0,0 +2013,6,21,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-3,0,1106,-4,0,0 +2013,10,12,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,-4,0,1733,-14,0,0 +2013,10,24,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,816,-7,0,950,-8,0,0 +2013,6,10,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,1,0,1235,18,1,0 +2013,9,18,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-4,0,718,2,0,0 +2013,10,9,3,9E,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1515,55,1,1807,52,1,0 +2013,4,11,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1210,21,1,1505,37,1,0 +2013,6,22,6,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1055,-5,0,1345,-11,0,0 +2013,4,25,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,227,1,2022,213,1,0 +2013,6,25,2,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1200,35,1,1430,61,1,0 +2013,6,17,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-1,0,1709,-1,0,0 +2013,6,19,3,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1415,-4,0,1544,-14,0,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,755,4,0,845,0,0,0 +2013,8,20,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1020,-4,0,1140,-11,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1105,0,0,1640,-3,0,0 +2013,5,3,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1435,23,1,1531,17,1,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,7,0,1549,-4,0,0 +2013,7,19,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1135,-1,0,1300,-5,0,0 +2013,10,20,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-6,0,2322,-15,0,0 +2013,5,5,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1717,0,0,1927,2,0,0 +2013,5,18,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,-1,0,1140,-25,0,0 +2013,7,28,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-6,0,2042,-1,0,0 +2013,5,23,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1835,23,1,1925,12,0,0 +2013,10,11,5,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,7,0,849,4,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,19,1,1440,-1,0,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1004,-2,0,1327,-17,0,0 +2013,7,29,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,-4,0,1901,-14,0,0 +2013,7,23,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1856,31,1,2140,44,1,0 +2013,5,12,7,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,805,-4,0,955,-11,0,0 +2013,8,28,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-1,0,930,-29,0,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2005,-7,0,2305,-22,0,0 +2013,8,17,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-4,0,845,12,0,0 +2013,9,25,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1620,-3,0,1725,40,1,0 +2013,4,2,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,825,-10,0,930,-19,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-1,0,1500,-4,0,0 +2013,5,29,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1750,17,1,1815,2,0,0 +2013,8,24,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1515,0,0,0 +2013,8,14,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1000,5,0,1650,-4,0,0 +2013,10,6,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,56,1,2055,80,1,0 +2013,4,3,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1935,23,1,2125,10,0,0 +2013,9,6,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1954,-12,0,2130,-36,0,0 +2013,7,31,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,49,1,1055,63,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1340,-1,0,1710,-3,0,0 +2013,6,19,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,-4,0,855,-7,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1123,-5,0,1340,-20,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,745,3,0,1010,6,0,0 +2013,4,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1759,-2,0,2136,-8,0,0 +2013,7,24,3,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,-4,0,1532,2,0,0 +2013,7,31,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1059,4,0,1240,2,0,0 +2013,7,12,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,8,0,1500,24,1,0 +2013,8,5,1,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,520,-4,0,801,-11,0,0 +2013,10,28,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1406,-23,0,0 +2013,5,26,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1955,6,0,2105,-1,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1930,23,1,2200,22,1,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-2,0,1817,-3,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-5,0,1340,-1,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,33,1,1905,26,1,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2150,-2,0,27,-8,0,0 +2013,10,29,2,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1059,19,1,1244,-3,0,0 +2013,10,22,2,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,930,2,0,1200,-8,0,0 +2013,7,8,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,158,1,1330,136,1,0 +2013,5,29,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-12,0,1035,-19,0,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,0,0,1405,55,1,0 +2013,6,18,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2130,207,1,2250,197,1,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,0,0,1930,-21,0,0 +2013,10,28,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,825,22,1,1630,-10,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,19,1,1755,13,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1349,-1,0,1545,-12,0,0 +2013,9,19,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1005,-5,0,1309,7,0,0 +2013,10,13,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2002,-4,0,2150,-4,0,0 +2013,10,8,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,-1,0,1850,-6,0,0 +2013,10,3,4,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1745,4,0,2023,-14,0,0 +2013,4,15,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,-2,0,2035,1,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,22,1,1520,22,1,0 +2013,10,15,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,-6,0,2129,4,0,0 +2013,7,6,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-11,0,1145,-16,0,0 +2013,4,29,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,-3,0,1138,-27,0,0 +2013,4,27,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1715,-5,0,1935,-8,0,0 +2013,9,27,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,1,0,1603,-1,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,13,0,1136,14,0,0 +2013,4,30,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,830,-4,0,1110,33,1,0 +2013,10,22,2,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-6,0,736,-25,0,0 +2013,9,6,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,800,-1,0,1025,-15,0,0 +2013,10,7,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1905,0,,2022,0,1,1 +2013,10,12,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1032,403,1,1306,391,1,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-4,0,1247,-16,0,0 +2013,10,23,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,32,1,1800,27,1,0 +2013,7,1,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1958,-3,0,2126,-14,0,0 +2013,6,20,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1656,-1,0,2000,-6,0,0 +2013,10,21,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,21,1,1700,12,0,0 +2013,7,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1320,0,0,1705,-8,0,0 +2013,4,15,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1410,11,0,1642,4,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1125,4,0,1235,-2,0,0 +2013,5,12,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1050,-3,0,1205,-7,0,0 +2013,5,10,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-2,0,628,-9,0,0 +2013,6,25,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,-10,0,1906,-8,0,0 +2013,10,22,2,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1455,12,0,1640,1,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1650,-3,0,1840,6,0,0 +2013,4,23,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,625,-1,0,1021,-13,0,0 +2013,9,5,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-5,0,1822,-14,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-7,0,1111,-3,0,0 +2013,9,13,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,0,,917,0,1,1 +2013,9,25,3,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,940,0,0,1110,6,0,0 +2013,7,6,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,900,19,1,1110,3,0,0 +2013,10,21,1,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1646,36,1,1739,46,1,0 +2013,5,5,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1436,1,0,1658,-14,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1054,-2,0,1244,-24,0,0 +2013,7,8,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1101,-5,0,1206,6,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,13,0,1030,15,1,0 +2013,5,17,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-1,0,1405,-5,0,0 +2013,10,30,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1735,-5,0,1850,-28,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,1,0,1032,3,0,0 +2013,10,20,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1858,34,1,2025,43,1,0 +2013,10,25,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1355,-2,0,1558,0,0,0 +2013,8,26,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1415,-12,0,1555,-9,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,729,-3,0,1007,-12,0,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1030,89,1,1340,71,1,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1955,70,1,2215,65,1,0 +2013,6,3,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,1,0,1750,7,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1420,21,1,1645,20,1,0 +2013,4,14,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1109,-10,0,1315,-20,0,0 +2013,6,7,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1711,-1,0,1847,-10,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,5,0,1535,-15,0,0 +2013,6,24,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-1,0,844,-12,0,0 +2013,9,29,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-5,0,1425,-16,0,0 +2013,10,24,4,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-5,0,1020,-13,0,0 +2013,10,14,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,723,27,1,805,32,1,0 +2013,4,8,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1450,-5,0,2320,8,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2025,-6,0,50,-15,0,0 +2013,7,27,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,935,7,0,1052,11,0,0 +2013,4,14,7,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1440,9,0,1658,1,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1320,0,0,1725,-9,0,0 +2013,10,23,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-5,0,929,-10,0,0 +2013,5,14,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2339,-5,0,510,-12,0,0 +2013,4,6,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-2,0,854,-14,0,0 +2013,5,1,3,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,805,-5,0,1027,-5,0,0 +2013,4,12,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,0,0,2104,-16,0,0 +2013,4,15,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-6,0,2213,11,0,0 +2013,5,27,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,1715,-2,0,0 +2013,7,21,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,4,0,952,-16,0,0 +2013,4,30,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-7,0,2010,-57,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1259,-4,0,1431,-19,0,0 +2013,7,12,5,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,32,1,1011,49,1,0 +2013,6,28,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,44,1,1540,43,1,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1900,21,1,2135,17,1,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2005,-6,0,2323,-5,0,0 +2013,8,8,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1400,27,1,1735,37,1,0 +2013,10,28,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,2,0,1810,-17,0,0 +2013,10,23,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1635,-7,0,2023,-19,0,0 +2013,8,7,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-7,0,2349,23,1,0 +2013,8,18,7,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1848,-8,0,2058,3,0,0 +2013,10,7,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,-2,0,1931,0,0,0 +2013,6,21,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,65,1,1854,56,1,0 +2013,7,1,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1435,43,1,1624,47,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1420,10,0,1552,5,0,0 +2013,5,19,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1355,17,1,1659,43,1,0 +2013,4,5,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-5,0,1050,-22,0,0 +2013,10,4,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-6,0,1358,-20,0,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,-2,0,1910,-10,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,3,0,1150,11,0,0 +2013,4,27,6,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1709,-2,0,1918,-1,0,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1950,-2,0,2230,-6,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1455,-5,0,1715,-8,0,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,856,-10,0,1721,-21,0,0 +2013,9,30,1,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,735,-6,0,1504,2,0,0 +2013,6,20,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,-1,0,1413,-10,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-3,0,2247,-6,0,0 +2013,8,7,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,13,0,2250,6,0,0 +2013,5,26,7,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-5,0,1120,-19,0,0 +2013,10,7,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,620,4,0,740,-7,0,0 +2013,6,7,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,952,40,1,1230,35,1,0 +2013,7,11,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,600,-5,0,920,-19,0,0 +2013,4,9,2,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1610,-11,0,1758,-6,0,0 +2013,7,19,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,755,-7,0,915,-8,0,0 +2013,4,23,2,EV,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,818,-3,0,1114,51,1,0 +2013,9,9,1,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1648,-5,0,1755,-15,0,0 +2013,6,5,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1430,0,0,1615,-9,0,0 +2013,10,20,7,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,900,-4,0,1206,-15,0,0 +2013,8,3,6,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1030,7,0,1241,6,0,0 +2013,7,25,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,537,-7,0,645,-20,0,0 +2013,8,4,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1557,-3,0,2020,9,0,0 +2013,8,17,6,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,39,1,1625,27,1,0 +2013,7,24,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,819,-6,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,1,0,1255,-34,0,0 +2013,4,18,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1108,32,1,1214,35,1,0 +2013,9,4,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1610,-6,0,1625,-7,0,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-6,0,830,-30,0,0 +2013,4,1,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1801,-4,0,2059,15,1,0 +2013,4,8,1,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-10,0,1015,2,0,0 +2013,4,16,2,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,8,0,547,-12,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,-2,0,2042,-12,0,0 +2013,10,4,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1825,-10,0,2128,-3,0,0 +2013,4,17,3,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1430,-6,0,1620,-17,0,0 +2013,8,10,6,OO,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1001,13,0,1130,-4,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,6,0,1047,5,0,0 +2013,8,25,7,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-6,0,1013,-25,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1430,6,0,1725,4,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1635,48,1,1735,44,1,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1310,8,0,1630,1,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,9,0,2340,-5,0,0 +2013,4,8,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2120,47,1,146,58,1,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1021,12,0,1204,-10,0,0 +2013,6,29,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,918,6,0,1047,10,0,0 +2013,6,23,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,-2,0,1705,0,0,0 +2013,10,14,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1110,11,0,1220,5,0,0 +2013,10,3,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,2,0,1334,12,0,0 +2013,6,27,4,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1655,42,1,1825,16,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1616,-2,0,1746,-18,0,0 +2013,4,14,7,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1446,101,1,1755,92,1,0 +2013,7,4,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,77,1,2030,48,1,0 +2013,4,5,5,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,9,0,1520,-15,0,0 +2013,6,30,7,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,-2,0,1933,-15,0,0 +2013,7,17,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,66,1,1925,61,1,0 +2013,8,16,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-2,0,1030,1,0,0 +2013,6,14,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1335,-18,0,0 +2013,8,22,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,818,14,0,1000,32,1,0 +2013,6,7,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,722,-2,0,1011,-3,0,0 +2013,9,25,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1850,4,0,2220,-11,0,0 +2013,8,28,3,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1445,105,1,1722,71,1,0 +2013,5,13,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-13,0,1055,-30,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,9,0,1453,29,1,0 +2013,6,11,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-5,0,1913,-9,0,0 +2013,5,8,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,910,-6,0,1030,-10,0,0 +2013,7,8,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,850,18,1,1030,-21,0,0 +2013,4,26,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-5,0,1341,-12,0,0 +2013,9,30,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1940,-2,0,2230,-10,0,0 +2013,7,12,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,-4,0,1411,-5,0,0 +2013,5,21,2,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,135,1,1314,137,1,0 +2013,5,5,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1840,46,1,2110,42,1,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1410,13,0,1535,3,0,0 +2013,7,26,5,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1937,-6,0,2208,-23,0,0 +2013,10,17,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,705,-1,0,815,-13,0,0 +2013,7,30,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1150,-3,0,1349,-16,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,-3,0,1520,-12,0,0 +2013,8,25,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-2,0,1352,-10,0,0 +2013,8,5,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-4,0,1856,17,1,0 +2013,10,17,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2010,9,0,2105,11,0,0 +2013,5,15,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,-5,0,1315,-2,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1050,-4,0,1430,-10,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2130,77,1,2350,60,1,0 +2013,10,22,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1126,-13,0,0 +2013,7,25,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1345,171,1,1530,167,1,0 +2013,10,22,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,725,-6,0,1019,-13,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,1,0,2044,-8,0,0 +2013,5,16,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-7,0,1506,-15,0,0 +2013,4,21,7,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1731,-5,0,1900,-3,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1750,9,0,2150,-14,0,0 +2013,10,15,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,33,1,1602,47,1,0 +2013,6,4,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-1,0,1248,-17,0,0 +2013,9,16,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1611,-4,0,1723,3,0,0 +2013,6,5,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1850,-1,0,2135,1,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1731,-3,0,1835,-12,0,0 +2013,5,4,6,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,955,-9,0,1040,-21,0,0 +2013,10,11,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1220,-8,0,1458,-15,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,0,0,959,-9,0,0 +2013,10,4,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1308,-10,0,1327,-13,0,0 +2013,6,17,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,5,0,1710,-10,0,0 +2013,4,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,0,0,1150,-13,0,0 +2013,6,3,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,14,0,2245,-1,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1325,-1,0,1626,11,0,0 +2013,10,9,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,0,0,1640,-8,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-7,0,1857,-26,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,56,1,1620,51,1,0 +2013,7,26,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,605,17,1,720,-1,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-5,0,930,8,0,0 +2013,6,8,6,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1550,22,1,2136,16,1,0 +2013,5,22,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-11,0,1038,-3,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1955,34,1,2255,30,1,0 +2013,8,12,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,0,0,2040,3,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,538,42,1,811,44,1,0 +2013,6,25,2,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1701,-2,0,2100,8,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2220,111,1,2350,96,1,0 +2013,7,31,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1615,-4,0,1725,3,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1250,57,1,1457,42,1,0 +2013,9,3,2,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-4,0,1401,-4,0,0 +2013,7,16,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,55,1,2016,75,1,0 +2013,6,8,6,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,625,-2,0,750,-3,0,0 +2013,8,25,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-8,0,2110,-9,0,0 +2013,7,18,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-6,0,915,16,1,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1306,-7,0,1440,-5,0,0 +2013,10,3,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,26,1,823,74,1,0 +2013,4,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1710,-6,0,1755,-11,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,4,0,948,-8,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,705,-2,0,854,-7,0,0 +2013,5,25,6,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,830,411,1,1020,413,1,0 +2013,4,20,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-5,0,657,-11,0,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1335,0,0,1645,-16,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1010,-5,0,1212,2,0,0 +2013,9,20,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,724,1,0,920,5,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,831,-1,0,1001,-27,0,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1200,1,0,1420,4,0,0 +2013,7,27,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,-2,0,1116,17,1,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,62,1,1725,50,1,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1735,-4,0,1938,-6,0,0 +2013,7,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1716,1,0,2341,24,1,0 +2013,4,14,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1409,85,1,1520,124,1,0 +2013,6,9,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1325,-2,0,1443,1,0,0 +2013,8,26,1,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,630,-1,0,837,-7,0,0 +2013,4,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1035,-4,0,1203,-18,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1857,-7,0,2027,-10,0,0 +2013,9,13,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1415,-5,0,1740,-9,0,0 +2013,10,12,6,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2225,-12,0,700,-12,0,0 +2013,10,29,2,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1840,-18,0,2001,-23,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1045,-1,0,1200,-10,0,0 +2013,8,13,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-3,0,1420,16,1,0 +2013,8,1,4,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1700,13,0,1905,4,0,0 +2013,6,30,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1930,-12,0,2203,-25,0,0 +2013,7,28,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1700,0,0,1818,39,1,0 +2013,10,30,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1858,1,0,2150,11,0,0 +2013,7,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,181,1,2052,174,1,0 +2013,10,21,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1035,-1,0,1345,-21,0,0 +2013,5,10,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1350,18,1,1655,22,1,0 +2013,4,28,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1843,16,1,2138,11,0,0 +2013,4,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1730,0,,1753,0,1,1 +2013,6,24,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1906,13,0,2056,-9,0,0 +2013,6,15,6,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,754,-5,0,1014,-14,0,0 +2013,4,4,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1830,25,1,2025,15,1,0 +2013,7,31,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,78,1,2305,50,1,0 +2013,5,19,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1530,-1,0,1732,4,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,-3,0,1355,3,0,0 +2013,5,23,4,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,0,,1224,0,1,1 +2013,4,23,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,905,-1,0,1154,0,0,0 +2013,8,16,5,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,1,0,1105,-26,0,0 +2013,9,14,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-5,0,1019,-3,0,0 +2013,4,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,905,-1,0,1200,-16,0,0 +2013,6,3,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,953,3,0,1318,-8,0,0 +2013,9,16,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1713,14,0,1840,3,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,850,-2,0,1640,5,0,0 +2013,5,1,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1020,0,0,1154,17,1,0 +2013,5,15,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1455,1,0,1554,1,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,-7,0,1102,-18,0,0 +2013,9,16,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,1006,-5,0,0 +2013,4,4,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-4,0,1828,11,0,0 +2013,4,22,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1740,18,1,1940,67,1,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1540,1,0,1625,3,0,0 +2013,5,22,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1010,-1,0,1249,-6,0,0 +2013,6,12,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1909,0,0,2154,-16,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1655,12,0,1826,20,1,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-4,0,1117,18,1,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1810,23,1,2355,3,0,0 +2013,5,25,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1515,-4,0,1710,-15,0,0 +2013,6,6,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,-1,0,1442,15,1,0 +2013,6,7,5,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-3,0,1300,-8,0,0 +2013,9,8,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-6,0,1029,-3,0,0 +2013,6,16,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,841,-19,0,0 +2013,6,10,1,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,935,5,0,0 +2013,4,7,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,610,-7,0,811,-18,0,0 +2013,8,7,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1220,-4,0,1420,-14,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,-3,0,2043,-8,0,0 +2013,4,23,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,1145,-18,0,0 +2013,9,18,3,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,920,-1,0,1120,4,0,0 +2013,7,13,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1140,18,1,1342,13,0,0 +2013,7,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-2,0,1025,-8,0,0 +2013,7,4,4,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1005,2,0,1135,3,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,28,1,2215,40,1,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,0,0,2140,-4,0,0 +2013,6,7,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2005,109,1,2145,101,1,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1705,6,0,1830,8,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,-6,0,2112,19,1,0 +2013,7,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12191,William P Hobby,Houston,TX,1250,2,0,1915,13,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,16,1,2200,8,0,0 +2013,8,21,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1447,-8,0,1602,-11,0,0 +2013,5,11,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1550,84,1,1710,70,1,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-5,0,1550,-11,0,0 +2013,7,15,1,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,850,2,0,1031,-14,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-1,0,1923,-3,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1005,-6,0,1215,-22,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,853,-1,0,1020,-14,0,0 +2013,5,2,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1723,-2,0,1809,-2,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1615,-3,0,1717,-13,0,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1410,9,0,1745,-8,0,0 +2013,7,1,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,740,-5,0,902,-4,0,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,702,-2,0,1222,-4,0,0 +2013,4,2,2,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,2250,-5,0,427,-8,0,0 +2013,10,25,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,756,14,0,951,21,1,0 +2013,9,7,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1005,31,1,1236,-11,0,0 +2013,6,22,6,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1055,0,0,1335,-7,0,0 +2013,8,21,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-7,0,1422,-2,0,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1517,3,0,1640,12,0,0 +2013,5,5,7,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2218,-5,0,559,-20,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,956,-3,0,1049,-11,0,0 +2013,5,23,4,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1645,3,0,1820,-1,0,0 +2013,7,18,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,653,12,0,754,0,0,0 +2013,5,1,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1720,0,0,1845,-5,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1010,5,0,1745,-5,0,0 +2013,7,5,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-6,0,1638,-13,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1235,-1,0,1540,4,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2030,0,0,2217,6,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1305,0,0,1535,2,0,0 +2013,4,29,1,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,-10,0,1540,-17,0,0 +2013,5,25,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1130,31,1,1407,36,1,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,85,1,1500,125,1,0 +2013,10,2,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-3,0,827,-8,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-5,0,1151,-5,0,0 +2013,4,10,3,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1215,-5,0,1406,-8,0,0 +2013,9,22,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,840,-3,0,858,5,0,0 +2013,9,7,6,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1410,2,0,1720,-21,0,0 +2013,6,23,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,6,0,1630,0,0,0 +2013,8,15,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1729,5,0,1750,-17,0,0 +2013,6,11,2,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,825,3,0,1633,0,0,0 +2013,4,19,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1555,-1,0,1755,5,0,0 +2013,4,18,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-1,0,2125,-8,0,0 +2013,6,10,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,183,1,950,176,1,0 +2013,7,28,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1040,-13,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,-5,0,2252,-3,0,0 +2013,5,3,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,-3,0,1420,-8,0,0 +2013,7,23,2,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,32,1,715,21,1,0 +2013,10,6,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1400,-12,0,1515,-19,0,0 +2013,9,5,4,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,1,0,1202,15,1,0 +2013,4,7,7,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-3,0,1045,-8,0,0 +2013,6,27,4,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,-7,0,1716,-9,0,0 +2013,6,7,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,72,1,1050,69,1,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,2,0,2000,-5,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1115,-2,0,1305,-6,0,0 +2013,10,15,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,630,6,0,750,4,0,0 +2013,9,8,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,4,0,1634,17,1,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1301,13,0,1446,17,1,0 +2013,6,12,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,23,1,1800,106,1,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,3,0,2013,-10,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,40,1,922,28,1,0 +2013,8,14,3,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1030,-11,0,1157,-40,0,0 +2013,7,8,1,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-3,0,1430,-9,0,0 +2013,5,13,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1347,22,1,1558,1,0,0 +2013,7,26,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1515,71,1,2105,65,1,0 +2013,5,2,4,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1650,-4,0,1813,34,1,0 +2013,5,28,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,940,-6,0,1026,0,0,0 +2013,8,15,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,-3,0,1924,-7,0,0 +2013,4,24,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,21,1,1605,25,1,0 +2013,8,15,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,18,1,759,23,1,0 +2013,5,26,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-2,0,845,-9,0,0 +2013,5,28,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-5,0,1023,-12,0,0 +2013,8,30,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,7,0,826,30,1,0 +2013,6,3,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1749,-4,0,1937,4,0,0 +2013,10,30,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,0,0,1330,11,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,13,0,1735,1,0,0 +2013,4,22,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,0,,1150,0,1,1 +2013,7,4,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,538,-5,0,655,-13,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2215,11,0,23,15,1,0 +2013,10,9,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1235,39,1,1418,29,1,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,76,1,2227,77,1,0 +2013,5,4,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1252,9,0,1625,8,0,0 +2013,5,23,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1625,26,1,2054,11,0,0 +2013,6,24,1,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1540,-3,0,1649,6,0,0 +2013,6,22,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1655,37,1,1819,29,1,0 +2013,9,12,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,0,0,1700,-4,0,0 +2013,7,25,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,815,-3,0,1141,-11,0,0 +2013,5,24,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,7,0,1249,10,0,0 +2013,6,26,3,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1620,4,0,1840,6,0,0 +2013,9,20,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1330,17,1,1445,12,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2205,-1,0,2331,1,0,0 +2013,10,26,6,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1640,-2,0,1730,-3,0,0 +2013,9,3,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,5,0,1825,12,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1344,0,0,0 +2013,6,17,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1936,-2,0,1955,-13,0,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,840,-2,0,1200,-5,0,0 +2013,8,7,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1145,18,1,1300,11,0,0 +2013,10,28,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,902,5,0,0 +2013,10,7,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1004,-6,0,1141,-1,0,0 +2013,6,15,6,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2010,4,0,2324,-8,0,0 +2013,6,16,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-4,0,1159,-29,0,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1017,5,0,1542,-15,0,0 +2013,7,12,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,640,3,0,750,-14,0,0 +2013,5,29,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,725,-10,0,1021,-8,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2200,25,1,2304,10,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1455,8,0,1950,14,0,0 +2013,8,26,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,655,-9,0,823,-7,0,0 +2013,4,26,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-10,0,1247,-12,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,15,1,1840,15,1,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,850,11,0,1405,8,0,0 +2013,9,12,4,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1010,1,0,1150,-1,0,0 +2013,5,13,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,50,1,1345,45,1,0 +2013,7,11,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,-8,0,10,-8,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,925,-1,0,1321,6,0,0 +2013,7,13,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1018,-9,0,1149,-15,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,2,0,1915,-8,0,0 +2013,7,22,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,0,,2233,0,1,1 +2013,4,15,1,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,821,49,1,932,45,1,0 +2013,10,20,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1725,-3,0,1827,-10,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,-8,0,834,-8,0,0 +2013,8,19,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2259,6,0,133,3,0,0 +2013,4,16,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,0,0,740,-7,0,0 +2013,5,31,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,-4,0,1217,-12,0,0 +2013,7,25,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1935,-2,0,2032,-14,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2035,-2,0,2331,10,0,0 +2013,7,20,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-6,0,1614,-14,0,0 +2013,9,30,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,34,1,2245,26,1,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,825,3,0,915,18,1,0 +2013,6,24,1,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2045,5,0,2339,-11,0,0 +2013,9,26,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,0,0,1805,10,0,0 +2013,5,27,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,-1,0,2125,-14,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,850,-1,0,1106,2,0,0 +2013,8,9,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,950,33,1,1830,11,0,0 +2013,8,27,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,957,-9,0,1317,-22,0,0 +2013,8,6,2,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,8,0,1431,11,0,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1900,8,0,2321,9,0,0 +2013,10,24,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-6,0,935,-17,0,0 +2013,9,23,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-11,0,1027,-25,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,838,17,1,858,22,1,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,18,1,1510,5,0,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,3,0,710,-5,0,0 +2013,8,30,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-4,0,1759,15,1,0 +2013,4,29,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1250,43,1,1355,39,1,0 +2013,9,16,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,720,-1,0,830,-8,0,0 +2013,7,11,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,137,1,1446,142,1,0 +2013,6,7,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,730,-2,0,858,-13,0,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1350,0,0,1912,3,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1536,9,0,1812,5,0,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1717,-1,0,1908,-13,0,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1850,4,0,2225,-8,0,0 +2013,4,1,1,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,-3,0,1215,-8,0,0 +2013,5,14,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1430,-6,0,1733,-3,0,0 +2013,8,23,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,-12,0,2135,-16,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,2,0,1348,22,1,0 +2013,6,10,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,705,-9,0,850,-32,0,0 +2013,8,28,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-6,0,1415,-12,0,0 +2013,6,6,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-3,0,1205,-24,0,0 +2013,10,25,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1521,-6,0,1610,-14,0,0 +2013,4,20,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2025,34,1,2305,10,0,0 +2013,5,28,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1825,1,0,1945,-19,0,0 +2013,8,15,4,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,1755,-5,0,1849,-6,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,747,-5,0,925,-13,0,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1840,-6,0,1955,6,0,0 +2013,9,30,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,1,0,500,-8,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,900,-1,0,1143,4,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1020,2,0,1138,-4,0,0 +2013,7,18,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,5,0,1302,-1,0,0 +2013,7,21,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1510,19,1,1735,20,1,0 +2013,5,16,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1757,-6,0,1909,0,0,0 +2013,6,10,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-4,0,1010,-7,0,0 +2013,8,12,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-4,0,2005,-32,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,-5,0,1840,-2,0,0 +2013,6,12,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-2,0,755,0,0,0 +2013,5,6,1,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,830,-22,0,0 +2013,9,28,6,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,815,-3,0,947,2,0,0 +2013,10,5,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,937,-9,0,1103,-10,0,0 +2013,4,8,1,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1845,3,0,2110,-7,0,0 +2013,7,8,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1040,92,1,1223,81,1,0 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,925,-1,0,1150,2,0,0 +2013,5,9,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,845,23,1,1002,11,0,0 +2013,5,31,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,743,-6,0,0 +2013,4,22,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1735,41,1,1855,30,1,0 +2013,6,27,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1327,-6,0,1434,-14,0,0 +2013,4,2,2,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1700,1,0,1927,5,0,0 +2013,6,9,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,56,1,1730,57,1,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1815,-3,0,1945,-11,0,0 +2013,7,22,1,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1514,-7,0,1735,-4,0,0 +2013,6,15,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1415,32,1,1625,12,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1745,55,1,1850,36,1,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1612,109,1,1706,111,1,0 +2013,5,31,5,DL,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1843,0,0,2030,-8,0,0 +2013,7,4,4,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2115,-9,0,20,-10,0,0 +2013,6,15,6,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,17,1,1530,14,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,-2,0,1502,-15,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1330,7,0,1430,2,0,0 +2013,5,8,3,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1157,-9,0,1304,-25,0,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1855,20,1,2042,21,1,0 +2013,8,15,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-11,0,921,-17,0,0 +2013,6,14,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-2,0,1629,-6,0,0 +2013,8,6,2,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1558,-6,0,1821,-24,0,0 +2013,8,10,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,73,1,1819,155,1,0 +2013,6,19,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,-4,0,1110,-11,0,0 +2013,8,16,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1005,-3,0,1120,-15,0,0 +2013,8,13,2,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1307,38,1,1800,4,0,0 +2013,8,20,2,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-3,0,1810,11,0,0 +2013,9,9,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,935,0,0,1030,0,0,0 +2013,10,9,3,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1717,-4,0,1908,-23,0,0 +2013,4,24,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,47,1,1819,39,1,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1545,25,1,1655,17,1,0 +2013,6,16,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,-8,0,1345,2,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1255,18,1,1355,10,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2135,91,1,21,69,1,0 +2013,5,10,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,620,-4,0,905,-9,0,0 +2013,4,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1620,1,0,1730,-6,0,0 +2013,7,7,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-3,0,930,-4,0,0 +2013,7,4,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,-5,0,2120,-4,0,0 +2013,5,9,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,-4,0,855,-11,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-4,0,950,-6,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-1,0,1150,-11,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-4,0,825,6,0,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1145,-6,0,1245,-13,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,0,0,1140,-12,0,0 +2013,9,17,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,-5,0,1838,-7,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1640,8,0,1800,28,1,0 +2013,7,28,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,160,1,22,167,1,0 +2013,8,28,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-1,0,1630,-7,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1855,0,0,2325,-9,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,-2,0,2214,-13,0,0 +2013,9,11,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2232,11,0,654,-13,0,0 +2013,8,2,5,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,17,1,1701,53,1,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2040,119,1,25,112,1,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,4,0,1645,6,0,0 +2013,4,17,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-4,0,1300,-9,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,0,,1540,0,1,1 +2013,7,5,5,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1955,1,0,2301,-5,0,0 +2013,9,9,1,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1815,10,0,1905,16,1,0 +2013,6,2,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-6,0,1250,-4,0,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,55,1,1015,57,1,0 +2013,7,24,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1346,30,1,1705,16,1,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1300,-1,0,1550,-6,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1055,1,0,1220,-3,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,945,-1,0,1115,-21,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1855,56,1,1945,47,1,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1630,102,1,1725,98,1,0 +2013,5,31,5,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,-6,0,743,3,0,0 +2013,6,10,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1604,0,0,1705,6,0,0 +2013,9,27,5,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-2,0,1445,-10,0,0 +2013,9,11,3,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,812,-13,0,928,-11,0,0 +2013,10,20,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,850,-3,0,1020,6,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2200,-4,0,2317,-8,0,0 +2013,8,8,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1809,28,1,2020,34,1,0 +2013,9,12,4,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,816,-7,0,934,-3,0,0 +2013,6,8,6,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1035,-3,0,1130,-19,0,0 +2013,7,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,5,0,1607,4,0,0 +2013,7,29,1,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1155,-3,0,1550,-5,0,0 +2013,5,30,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-12,0,1315,-18,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-8,0,1246,-17,0,0 +2013,5,4,6,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,645,-4,0,810,-9,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,1,0,1610,-5,0,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-2,0,725,-2,0,0 +2013,4,18,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,8,0,2256,-33,0,0 +2013,6,22,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1116,-10,0,0 +2013,4,27,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1310,12,0,1410,12,0,0 +2013,7,20,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1920,-4,0,2020,3,0,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,30,1,1746,55,1,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,959,0,0,1238,-3,0,0 +2013,6,27,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,5,0,1024,5,0,0 +2013,6,9,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,0,0,1246,5,0,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,20,1,2105,22,1,0 +2013,5,19,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1335,9,0,1435,15,1,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-4,0,1425,-17,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1222,10,0,1545,-7,0,0 +2013,8,28,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1521,-4,0,1649,12,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1555,306,1,1728,310,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,-1,0,1417,-3,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,920,40,1,1350,29,1,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,-5,0,1149,-6,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1844,0,,1941,0,1,1 +2013,4,9,2,9E,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-7,0,1205,-29,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,800,-1,0,905,-3,0,0 +2013,5,25,6,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,645,11,0,1250,-13,0,0 +2013,10,4,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,902,0,0,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,46,1,1345,38,1,0 +2013,6,4,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,36,1,1930,28,1,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1035,-7,0,1144,-7,0,0 +2013,5,11,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1746,12,0,2030,-15,0,0 +2013,10,28,1,DL,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-4,0,1440,10,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1130,4,0,1440,4,0,0 +2013,6,6,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,24,1,1112,3,0,0 +2013,9,5,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1420,-8,0,1550,-12,0,0 +2013,7,1,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1735,-1,0,2008,9,0,0 +2013,5,8,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1415,175,1,1813,172,1,0 +2013,4,13,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1420,0,0,1713,-16,0,0 +2013,9,25,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,725,0,0,850,-3,0,0 +2013,9,10,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1840,-2,0,2000,-5,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1135,6,0,1405,-9,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,-3,0,1306,-17,0,0 +2013,9,25,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1510,-5,0,1750,-22,0,0 +2013,4,5,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1810,-2,0,1925,-5,0,0 +2013,8,31,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1123,-3,0,1247,-9,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,625,6,0,740,-1,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,18,1,1410,17,1,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,8,0,2250,0,0,0 +2013,7,11,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,911,-5,0,1110,-12,0,0 +2013,5,30,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,702,-9,0,907,9,0,0 +2013,7,15,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,45,1,1925,57,1,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1314,-4,0,1541,-14,0,0 +2013,4,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1020,-5,0,1136,-18,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,925,18,1,1040,11,0,0 +2013,8,22,4,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1319,88,1,2140,65,1,0 +2013,10,17,4,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1655,6,0,2031,-4,0,0 +2013,8,25,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,835,-3,0,1440,-18,0,0 +2013,5,18,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,722,-3,0,1025,-12,0,0 +2013,8,13,2,OO,14307,Theodore Francis Green State,Providence,RI,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-2,0,2033,-14,0,0 +2013,4,24,3,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1020,-5,0,1249,-13,0,0 +2013,4,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1859,-4,0,2228,-21,0,0 +2013,4,17,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1825,90,1,2010,93,1,0 +2013,9,17,2,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1315,7,0,1605,16,1,0 +2013,6,12,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,6,0,850,5,0,0 +2013,6,28,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1810,-5,0,1958,50,1,0 +2013,5,15,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1652,-8,0,1754,-22,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2030,1,0,10,-10,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1210,76,1,1318,66,1,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1830,-8,0,2105,-3,0,0 +2013,9,13,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,13,0,1255,4,0,0 +2013,6,1,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1944,32,1,2135,23,1,0 +2013,9,14,6,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1911,-4,0,2056,-27,0,0 +2013,10,15,2,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-1,0,1345,-3,0,0 +2013,8,1,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,925,3,0,1105,17,1,0 +2013,7,19,5,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-2,0,900,-7,0,0 +2013,5,12,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2345,0,0,545,2,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,0,0,2145,-2,0,0 +2013,5,3,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,855,-1,0,1100,-21,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1505,45,1,1735,22,1,0 +2013,4,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1850,20,1,2030,17,1,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,21,1,1905,10,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,8,0,1445,-2,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1905,-3,0,2100,-8,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1548,-1,0,1949,-4,0,0 +2013,8,24,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-5,0,1817,-9,0,0 +2013,6,11,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,-6,0,2135,-4,0,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1205,32,1,1320,33,1,0 +2013,5,9,4,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,1,0,1123,4,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2211,73,1,2358,70,1,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,-6,0,1250,-10,0,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-8,0,1133,0,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,725,-1,0,935,12,0,0 +2013,9,27,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-3,0,1921,-2,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1450,25,1,1705,21,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1915,206,1,2046,176,1,0 +2013,6,2,7,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1610,3,0,1740,-2,0,0 +2013,8,15,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1810,37,1,1910,37,1,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,0,0,1815,-25,0,0 +2013,9,27,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1053,12,0,1239,4,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2010,2,0,2220,-8,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1925,130,1,2230,125,1,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2100,259,1,2350,252,1,0 +2013,9,20,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,14,0,1918,37,1,0 +2013,8,20,2,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,0,0,1240,-2,0,0 +2013,10,27,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1701,94,1,1840,65,1,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1010,-2,0,1310,-10,0,0 +2013,9,2,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,1,0,609,-10,0,0 +2013,7,22,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,-2,0,1125,-13,0,0 +2013,10,14,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1358,-10,0,1631,-10,0,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,3,0,1725,65,1,0 +2013,9,23,1,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,820,-5,0,857,1,0,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1650,-3,0,1818,-10,0,0 +2013,6,12,3,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,615,-3,0,749,5,0,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-1,0,950,-14,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,9,0,1355,6,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,2055,-2,0,20,14,0,0 +2013,8,23,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1409,22,1,1710,8,0,0 +2013,10,3,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-3,0,1635,-5,0,0 +2013,6,12,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1220,-19,0,0 +2013,7,16,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-3,0,929,-5,0,0 +2013,6,20,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,-3,0,1007,12,0,0 +2013,4,11,4,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1325,-6,0,1620,-22,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,6,0,1105,-5,0,0 +2013,7,25,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1330,46,1,1439,36,1,0 +2013,4,3,3,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1245,-3,0,1520,-13,0,0 +2013,9,8,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-6,0,933,-16,0,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1558,-7,0,1732,-10,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,945,-5,0,1415,-5,0,0 +2013,8,27,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-4,0,1535,-1,0,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1112,-5,0,1200,-7,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1050,49,1,1140,43,1,0 +2013,6,14,5,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1720,-5,0,1900,10,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,83,1,1555,133,1,0 +2013,10,30,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,700,-2,0,730,1,0,0 +2013,5,26,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1515,-1,0,1723,-24,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1650,80,1,2035,60,1,0 +2013,4,11,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,706,2,0,915,0,0,0 +2013,7,5,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1335,-6,0,1555,-22,0,0 +2013,7,13,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1810,-3,0,1925,-3,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1818,7,0,0 +2013,4,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,-4,0,1140,-14,0,0 +2013,4,24,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1450,0,0,1652,1,0,0 +2013,7,22,1,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1005,79,1,1150,75,1,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1554,32,1,1833,22,1,0 +2013,7,10,3,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-9,0,755,-13,0,0 +2013,5,5,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,-6,0,1450,-21,0,0 +2013,4,25,4,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1515,-1,0,1648,-3,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1055,-1,0,1705,2,0,0 +2013,8,10,6,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,151,1,1543,164,1,0 +2013,8,27,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,-10,0,1835,-5,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1530,1,0,1650,-19,0,0 +2013,5,3,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1455,92,1,1735,53,1,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,925,0,0,1040,0,0,0 +2013,7,25,4,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,-2,0,1538,-4,0,0 +2013,9,19,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1605,210,1,1755,169,1,0 +2013,5,8,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,47,1,1757,44,1,0 +2013,4,18,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1200,246,1,1525,230,1,0 +2013,10,7,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,9,0,1921,16,1,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1527,-7,0,1644,-20,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2220,7,0,15,9,0,0 +2013,5,8,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-6,0,825,-21,0,0 +2013,9,21,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-7,0,1119,-9,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-5,0,1035,-3,0,0 +2013,5,7,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,610,-10,0,1433,3,0,0 +2013,6,28,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1150,0,0,1316,-11,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1313,-5,0,1419,-8,0,0 +2013,9,29,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1734,-6,0,1923,-6,0,0 +2013,4,30,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,905,-5,0,1044,-4,0,0 +2013,8,25,7,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1802,26,1,1917,19,1,0 +2013,7,21,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1510,0,0,1630,-5,0,0 +2013,9,15,7,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,840,2,0,1025,-6,0,0 +2013,4,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1900,10,0,2050,5,0,0 +2013,5,3,5,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1220,-3,0,1700,8,0,0 +2013,4,7,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1120,34,1,1130,23,1,0 +2013,6,25,2,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,840,7,0,1200,1,0,0 +2013,6,6,4,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,14,0,1217,2,0,0 +2013,9,2,1,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1120,-3,0,1320,-8,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,-4,0,1458,-30,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,4,0,1610,-6,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2015,-7,0,2358,-44,0,0 +2013,10,3,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1508,1,0,1624,-9,0,0 +2013,4,29,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,620,-4,0,945,-11,0,0 +2013,10,11,5,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,610,-6,0,724,5,0,0 +2013,4,14,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,940,-2,0,1040,-8,0,0 +2013,9,29,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-4,0,2020,-7,0,0 +2013,7,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1405,-6,0,1515,-18,0,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,935,4,0,1225,4,0,0 +2013,5,29,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,640,-4,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,2003,-3,0,2128,15,1,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1549,1,0,1802,-20,0,0 +2013,10,23,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1315,0,0,1520,4,0,0 +2013,10,5,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1145,-3,0,1455,-18,0,0 +2013,6,7,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-2,0,1524,-5,0,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1735,-1,0,1906,-1,0,0 +2013,8,28,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1441,-6,0,1548,-16,0,0 +2013,5,22,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-1,0,2332,-17,0,0 +2013,7,29,1,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1929,17,1,30,-4,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,855,-1,0,918,6,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,0,0,2105,-4,0,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,12,0,2359,10,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,21,1,1607,27,1,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1740,14,0,1845,18,1,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,845,-8,0,1029,-2,0,0 +2013,6,9,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,7,0,1955,-16,0,0 +2013,5,12,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-8,0,1850,5,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,0,0,2112,-7,0,0 +2013,10,5,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,555,1,0,1420,-6,0,0 +2013,6,21,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1450,-14,0,0 +2013,5,4,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,920,0,0,1035,-11,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1825,17,1,2010,13,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,10,0,1550,48,1,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1317,-3,0,1915,7,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1535,-2,0,1643,3,0,0 +2013,5,3,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2252,9,0,504,-7,0,0 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,-3,0,1045,-17,0,0 +2013,7,17,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-4,0,1650,-3,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-1,0,1148,-7,0,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,700,-5,0,1235,-18,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-8,0,2011,5,0,0 +2013,9,29,7,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,44,1,945,41,1,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1805,-3,0,2040,9,0,0 +2013,9,4,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1825,33,1,2030,31,1,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,925,-1,0,1035,-7,0,0 +2013,10,10,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2000,-2,0,2315,-25,0,0 +2013,6,2,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2007,-7,0,2058,-16,0,0 +2013,8,17,6,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,1,0,827,20,1,0 +2013,5,29,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,850,-5,0,1042,-4,0,0 +2013,6,15,6,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,814,1,0,1053,-9,0,0 +2013,7,5,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,6,0,1114,-2,0,0 +2013,10,22,2,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1655,-2,0,1823,-3,0,0 +2013,10,21,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,-1,0,1210,-11,0,0 +2013,4,15,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,720,0,0,1109,-23,0,0 +2013,4,24,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1440,29,1,2220,20,1,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,-4,0,1112,4,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1055,-10,0,1229,-43,0,0 +2013,9,3,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,3,0,1714,-1,0,0 +2013,9,8,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,4,0,741,-9,0,0 +2013,4,23,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,17,1,1205,14,0,0 +2013,5,25,6,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,0,0,1058,-19,0,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1240,-2,0,1410,9,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1050,-6,0,1227,-6,0,0 +2013,6,12,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,34,1,1344,19,1,0 +2013,7,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,915,-3,0,1025,-6,0,0 +2013,7,12,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,4,0,1915,5,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2135,-1,0,516,7,0,0 +2013,9,10,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1551,21,1,2000,34,1,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1625,2,0,2226,10,0,0 +2013,5,3,5,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-10,0,1409,-33,0,0 +2013,8,17,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1302,-4,0,1429,-6,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1520,80,1,2302,88,1,0 +2013,10,24,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,843,-3,0,1019,-14,0,0 +2013,4,29,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,0,,1340,0,1,1 +2013,5,22,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,3,0,1435,-15,0,0 +2013,5,27,1,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,62,1,1940,60,1,0 +2013,8,30,5,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,-6,0,1646,77,1,0 +2013,10,30,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,9,0,2320,17,1,0 +2013,4,6,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1750,19,1,1845,9,0,0 +2013,8,22,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,3,0,750,-13,0,0 +2013,9,21,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,740,6,0,905,-4,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,-2,0,1440,4,0,0 +2013,9,28,6,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1315,-3,0,1515,-24,0,0 +2013,4,15,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,-1,0,615,-23,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,15,1,1915,15,1,0 +2013,9,20,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1113,41,1,1448,25,1,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,-4,0,2335,-12,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1925,-1,0,2138,-19,0,0 +2013,4,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1251,0,0,1352,-6,0,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1030,-2,0,1145,-4,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-2,0,826,-6,0,0 +2013,4,16,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,0,,1410,0,1,1 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1340,0,0,1520,15,1,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1750,0,0,2043,-24,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2025,22,1,2125,16,1,0 +2013,8,31,6,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-1,0,1200,-11,0,0 +2013,9,14,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1020,0,0,1135,-10,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2122,10,0,2251,-12,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1515,-3,0,1726,-20,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-1,0,1307,-12,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1410,31,1,1505,27,1,0 +2013,5,28,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-9,0,933,-14,0,0 +2013,5,7,2,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1704,-1,0,1955,-22,0,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,7,0,2305,3,0,0 +2013,7,16,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1945,2,0,2006,-11,0,0 +2013,10,11,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,120,1,1530,107,1,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1945,6,0,2058,13,0,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,0,0,1226,7,0,0 +2013,7,21,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,65,1,1659,135,1,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,-3,0,855,-6,0,0 +2013,10,23,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,172,1,1248,157,1,0 +2013,9,6,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-10,0,914,-9,0,0 +2013,4,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-4,0,1009,-16,0,0 +2013,7,12,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1902,0,0,2140,7,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,850,-5,0,1025,-30,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,26,1,1230,25,1,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1715,5,0,1810,-1,0,0 +2013,10,8,2,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2225,0,0,700,5,0,0 +2013,4,10,3,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1515,25,1,1630,6,0,0 +2013,8,3,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,840,-2,0,1000,-9,0,0 +2013,6,21,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,1501,4,0,0 +2013,7,21,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2130,-2,0,2240,-11,0,0 +2013,10,27,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-5,0,1318,-7,0,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1825,-6,0,1955,-21,0,0 +2013,7,9,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-4,0,541,7,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,31,1,1245,27,1,0 +2013,10,29,2,EV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1347,-9,0,1515,-9,0,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1550,-4,0,1640,-10,0,0 +2013,5,3,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1105,-6,0,1229,-3,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1930,35,1,2035,30,1,0 +2013,6,16,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1501,-13,0,0 +2013,8,26,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,844,0,0,1020,-7,0,0 +2013,7,26,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,7,0,1720,2,0,0 +2013,4,10,3,WN,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1200,-3,0,1425,-10,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,-2,0,2210,-14,0,0 +2013,7,31,3,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1925,1,0,2221,1,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,-1,0,1516,-5,0,0 +2013,6,11,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,825,-14,0,0 +2013,8,30,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,715,0,0,810,1,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1110,3,0,1320,-3,0,0 +2013,7,25,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1050,16,1,1329,2,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,708,4,0,945,-2,0,0 +2013,4,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1400,22,1,1421,12,0,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,833,-5,0,936,-24,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,815,55,1,935,51,1,0 +2013,9,11,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2336,-4,0,520,-11,0,0 +2013,8,2,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1335,8,0,1700,1,0,0 +2013,9,20,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,0,0,1916,13,0,0 +2013,6,2,7,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,8,0,1639,-1,0,0 +2013,7,9,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,820,56,1,1026,63,1,0 +2013,6,25,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1120,6,0,1145,5,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1850,98,1,2025,111,1,0 +2013,8,22,4,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1432,14,0,1610,1,0,0 +2013,10,28,1,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-6,0,829,-10,0,0 +2013,5,31,5,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-6,0,1239,13,0,0 +2013,7,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1755,-1,0,1855,-3,0,0 +2013,10,22,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,625,-2,0,940,-7,0,0 +2013,4,6,6,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1156,-6,0,1349,-2,0,0 +2013,9,10,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1438,0,0,1610,-10,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,18,1,1955,7,0,0 +2013,4,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1708,-9,0,1751,-12,0,0 +2013,8,5,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1115,-2,0,1231,4,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-3,0,1810,2,0,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1803,-2,0,2056,3,0,0 +2013,9,7,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1355,-4,0,1629,0,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2030,45,1,2135,37,1,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1925,19,1,2230,1,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-2,0,2331,-1,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2020,-6,0,2307,-21,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,-1,0,2250,0,0,0 +2013,10,28,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,-8,0,2157,-5,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,2250,19,1,546,31,1,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,3,0,2040,-30,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1755,78,1,2235,81,1,0 +2013,7,17,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-2,0,1015,-6,0,0 +2013,4,2,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1115,-1,0,1235,-6,0,0 +2013,6,11,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1555,9,0,1705,12,0,0 +2013,6,17,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1511,18,1,1852,5,0,0 +2013,6,1,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,38,1,1525,48,1,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1230,1,0,1435,7,0,0 +2013,10,13,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1000,26,1,1319,20,1,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-2,0,945,-4,0,0 +2013,5,31,5,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,30,-10,0,810,17,1,0 +2013,5,22,3,EV,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1630,51,1,1750,74,1,0 +2013,7,3,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,110,1,1839,76,1,0 +2013,6,4,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1106,-4,0,1316,-11,0,0 +2013,8,14,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1840,-3,0,2024,1,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-5,0,930,-5,0,0 +2013,6,16,7,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,730,2,0,840,15,1,0 +2013,8,8,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,10,0,2055,12,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2145,48,1,2350,53,1,0 +2013,8,13,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,134,1,1156,166,1,0 +2013,6,30,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,19,1,607,26,1,0 +2013,10,7,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,-4,0,1813,6,0,0 +2013,5,12,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-7,0,1220,-5,0,0 +2013,10,29,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,0,0,2130,14,0,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,0,0,534,-23,0,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,920,0,0,1114,-12,0,0 +2013,4,2,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,2015,-4,0,2239,1,0,0 +2013,5,4,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1855,-2,0,2010,-13,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2203,167,1,630,153,1,0 +2013,10,1,2,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1645,-8,0,2352,-26,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1333,-4,0,1447,-18,0,0 +2013,6,2,7,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1114,4,0,1255,-8,0,0 +2013,7,20,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1117,5,0,1230,18,1,0 +2013,4,4,4,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,745,3,0,1024,-11,0,0 +2013,5,14,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1130,-5,0,2010,-39,0,0 +2013,9,13,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-3,0,1908,-19,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1010,7,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2235,0,0,120,-1,0,0 +2013,8,18,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,13,0,2214,11,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-5,0,1440,-26,0,0 +2013,8,2,5,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,20,-6,0,813,-8,0,0 +2013,5,12,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1214,-1,0,1305,-17,0,0 +2013,10,10,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-4,0,2014,-22,0,0 +2013,9,27,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-4,0,1130,0,0,0 +2013,6,15,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1515,1,0,1630,0,0,0 +2013,7,17,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1230,-3,0,1419,-5,0,0 +2013,8,13,2,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1205,84,1,1455,69,1,0 +2013,5,21,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1545,74,1,1700,52,1,0 +2013,10,24,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1632,-2,0,1706,4,0,0 +2013,7,15,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,-6,0,2113,4,0,0 +2013,7,12,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,925,4,0,1035,2,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,-5,0,2324,-25,0,0 +2013,5,15,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,-5,0,2107,-3,0,0 +2013,4,8,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1210,-6,0,1509,-14,0,0 +2013,7,28,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-6,0,615,-17,0,0 +2013,7,6,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1845,4,0,1930,-10,0,0 +2013,8,4,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1050,-4,0,1353,-18,0,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1310,-2,0,1604,-30,0,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,-2,0,1335,-2,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1922,-2,0,2130,-9,0,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1930,-1,0,2108,-7,0,0 +2013,7,15,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,20,1,1937,29,1,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,725,-9,0,1146,-9,0,0 +2013,4,23,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-4,0,1555,-1,0,0 +2013,4,23,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-8,0,905,1,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,634,-7,0,1022,-23,0,0 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,38,1,1915,41,1,0 +2013,10,1,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-4,0,2139,-20,0,0 +2013,8,6,2,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-5,0,1020,-2,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,-5,0,855,-13,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,3,0,2125,-11,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,18,1,1219,11,0,0 +2013,7,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2200,20,1,2315,28,1,0 +2013,8,17,6,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1710,21,1,2005,-1,0,0 +2013,9,22,7,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2003,1,0,2210,11,0,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,850,0,0,1124,1,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-4,0,1831,-20,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,800,0,0,1132,17,1,0 +2013,6,17,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,159,1,2040,151,1,0 +2013,10,28,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,700,0,0,750,7,0,0 +2013,7,7,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,4,0,2210,2,0,0 +2013,10,25,5,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1640,5,0,1834,-6,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,-1,0,1133,-10,0,0 +2013,10,16,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,13,0,1904,2,0,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1226,4,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,825,-4,0,945,-5,0,0 +2013,5,29,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-8,0,852,-10,0,0 +2013,6,5,3,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1335,0,0,1635,3,0,0 +2013,6,30,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,3,0,2227,5,0,0 +2013,6,17,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,0,0,2240,-4,0,0 +2013,9,7,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1340,22,1,1345,23,1,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2008,-6,0,2133,-9,0,0 +2013,7,28,7,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1425,-7,0,1554,2,0,0 +2013,9,12,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,5,0,1723,-5,0,0 +2013,10,20,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,-3,0,1303,-1,0,0 +2013,9,25,3,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1200,-2,0,2020,-20,0,0 +2013,5,2,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2013,9,0,2130,-11,0,0 +2013,6,2,7,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-1,0,1831,-15,0,0 +2013,10,13,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1838,19,1,2123,17,1,0 +2013,5,5,7,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2030,-5,0,2209,-8,0,0 +2013,5,13,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1958,-2,0,2230,-32,0,0 +2013,8,17,6,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-1,0,900,-7,0,0 +2013,4,10,3,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1715,-6,0,2032,-3,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-2,0,1103,-11,0,0 +2013,10,22,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,4,0,920,-4,0,0 +2013,7,18,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,700,-5,0,807,-14,0,0 +2013,9,4,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1313,3,0,1918,-8,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,-2,0,853,-6,0,0 +2013,9,3,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1555,111,1,1833,97,1,0 +2013,10,30,3,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1348,-10,0,1510,-19,0,0 +2013,6,21,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,3,0,715,0,0,0 +2013,6,20,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1037,-10,0,1250,-22,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,5,0,2320,-15,0,0 +2013,6,27,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1429,18,1,1554,15,1,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-5,0,2316,-17,0,0 +2013,4,23,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1235,7,0,1355,4,0,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,0,0,2000,4,0,0 +2013,5,8,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-9,0,1130,-16,0,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2105,-1,0,2303,-15,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-5,0,1015,-7,0,0 +2013,9,4,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1950,22,1,2110,14,0,0 +2013,6,4,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-3,0,922,-11,0,0 +2013,6,15,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,10,0,1040,3,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,1,0,2150,-19,0,0 +2013,10,31,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-3,0,739,1,0,0 +2013,6,15,6,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,34,1,1045,19,1,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,-3,0,855,-5,0,0 +2013,9,6,5,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,7,0,2005,-2,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,-5,0,1632,-20,0,0 +2013,10,12,6,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,123,1,1605,142,1,0 +2013,6,30,7,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1414,14,0,2245,20,1,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1145,14,0,1415,14,0,0 +2013,7,7,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,46,1,1115,15,1,0 +2013,4,4,4,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,-4,0,1939,49,1,0 +2013,9,1,7,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1640,30,1,1835,54,1,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1352,1,0,2206,2,0,0 +2013,5,11,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-4,0,1710,7,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1332,-3,0,1526,-5,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,21,1,2050,10,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,74,1,40,61,1,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1320,3,0,1540,14,0,0 +2013,8,3,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,1145,5,0,0 +2013,7,22,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,73,1,2036,111,1,0 +2013,4,22,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,830,-1,0,955,-12,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1706,71,1,2111,68,1,0 +2013,8,2,5,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,2030,8,0,2156,-24,0,0 +2013,4,13,6,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-8,0,1906,-29,0,0 +2013,9,5,4,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1308,-6,0,2037,6,0,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1525,252,1,1720,220,1,0 +2013,4,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1610,4,0,1825,-11,0,0 +2013,6,28,5,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-8,0,840,-12,0,0 +2013,6,1,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1625,0,0,1735,5,0,0 +2013,10,22,2,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1915,-5,0,2020,-10,0,0 +2013,6,3,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,13,0,1911,20,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1510,-4,0,1610,-15,0,0 +2013,6,8,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,600,0,0,650,-5,0,0 +2013,7,16,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,642,82,1,724,71,1,0 +2013,7,3,3,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-8,0,936,-16,0,0 +2013,4,28,7,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,700,-10,0,951,-17,0,0 +2013,9,4,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1635,20,1,1725,19,1,0 +2013,9,8,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,1,0,1435,3,0,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,900,-1,0,1055,6,0,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1830,54,1,1935,58,1,0 +2013,9,12,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1921,21,1,2311,10,0,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,745,-1,0,1040,-5,0,0 +2013,8,31,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,0,0,641,0,0,0 +2013,5,10,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1629,-7,0,1814,-23,0,0 +2013,6,7,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,12,0,1645,11,0,0 +2013,5,31,5,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,910,-5,0,1158,-10,0,0 +2013,6,17,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,74,1,2010,65,1,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,-6,0,945,-32,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,2,0,1645,4,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-3,0,2331,-1,0,0 +2013,10,1,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,610,-9,0,936,-20,0,0 +2013,10,6,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,1,0,1030,3,0,0 +2013,7,31,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-9,0,912,-19,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2205,-1,0,2331,-14,0,0 +2013,10,27,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,123,1,2145,144,1,0 +2013,4,2,2,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,841,42,1,1110,40,1,0 +2013,4,26,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1015,-9,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,20,1,1900,31,1,0 +2013,5,29,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1750,6,0,1905,7,0,0 +2013,10,5,6,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,72,1,1905,59,1,0 +2013,5,1,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,10,0,1200,3,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1244,1,0,1523,-7,0,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,101,1,2215,69,1,0 +2013,7,5,5,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,2128,49,1,2308,52,1,0 +2013,10,7,1,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1856,-5,0,2110,-24,0,0 +2013,9,10,2,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-5,0,1240,4,0,0 +2013,7,25,4,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,700,-4,0,1020,-7,0,0 +2013,5,8,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,820,-5,0,1058,-18,0,0 +2013,5,17,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,943,-3,0,1444,-13,0,0 +2013,8,29,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,1,0,1508,6,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-5,0,1412,1,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-1,0,1617,-22,0,0 +2013,4,10,3,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,-2,0,1650,23,1,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,726,-4,0,1048,-45,0,0 +2013,6,4,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,635,-2,0,851,1,0,0 +2013,6,19,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1526,-6,0,1706,-17,0,0 +2013,7,8,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1025,-2,0,1305,15,1,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1925,16,1,2201,7,0,0 +2013,9,23,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1110,16,1,1220,13,0,0 +2013,10,27,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,1,0,1727,3,0,0 +2013,10,10,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1045,-3,0,1202,-9,0,0 +2013,5,27,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-10,0,839,-15,0,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,-1,0,930,1,0,0 +2013,6,15,6,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,0,0,920,-10,0,0 +2013,4,17,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-5,0,1755,-5,0,0 +2013,10,11,5,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,75,1,1910,91,1,0 +2013,9,27,5,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,-10,0,1605,-26,0,0 +2013,7,6,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1451,30,1,1652,37,1,0 +2013,4,4,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-4,0,1950,-6,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,0,0,1110,-8,0,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1001,-1,0,1129,-4,0,0 +2013,6,25,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,1,0,1805,5,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2025,-4,0,2330,-19,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2047,5,0,2234,8,0,0 +2013,10,8,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,1,0,2011,-15,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1605,-1,0,1740,2,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,11,0,10,-11,0,0 +2013,7,20,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,801,5,0,1030,29,1,0 +2013,8,20,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1307,1,0,1914,-4,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1407,-4,0,1509,-19,0,0 +2013,10,27,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1305,-6,0,1542,-10,0,0 +2013,8,25,7,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1640,22,1,1835,9,0,0 +2013,10,9,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,647,-1,0,939,-6,0,0 +2013,5,12,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1352,0,0,1655,-16,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-1,0,1111,-10,0,0 +2013,9,3,2,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,3,0,1935,-19,0,0 +2013,7,6,6,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1529,-5,0,0 +2013,7,5,5,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,-3,0,1240,3,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1540,134,1,1616,157,1,0 +2013,10,3,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,705,-10,0,1030,-17,0,0 +2013,6,4,2,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-9,0,628,-24,0,0 +2013,10,22,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1610,18,1,1705,13,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,0,0,1311,16,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1920,61,1,2059,67,1,0 +2013,7,11,4,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1133,-5,0,1300,-18,0,0 +2013,4,28,7,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1326,-7,0,1413,-9,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1135,16,1,1609,-15,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-4,0,1246,-1,0,0 +2013,8,14,3,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,9,0,1655,3,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1655,16,1,1805,24,1,0 +2013,5,23,4,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,700,-3,0,955,-8,0,0 +2013,10,6,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1225,18,1,1315,15,1,0 +2013,9,3,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1010,-15,0,0 +2013,6,29,6,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1928,33,1,2100,34,1,0 +2013,10,20,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1516,-23,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1303,0,0,1807,-26,0,0 +2013,9,23,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2203,-2,0,2353,-33,0,0 +2013,5,13,1,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1430,11,0,1615,5,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,600,-6,0,805,-14,0,0 +2013,9,28,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1015,22,1,1140,21,1,0 +2013,4,3,3,OO,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1340,2,0,1434,-9,0,0 +2013,7,26,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-7,0,1023,-13,0,0 +2013,6,23,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,812,0,0,1328,15,1,0 +2013,5,28,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,900,-1,0,1024,1,0,0 +2013,4,7,7,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1035,-2,0,1349,-8,0,0 +2013,5,13,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1100,-9,0,1224,-11,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1739,0,0,2005,-30,0,0 +2013,8,5,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,11,0,2155,23,1,0 +2013,6,4,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,14,0,1910,13,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1440,40,1,1625,42,1,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,930,8,0,1455,18,1,0 +2013,5,2,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2010,5,0,2100,2,0,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,9,0,2020,3,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,0,,634,0,1,1 +2013,7,23,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,0,0,825,0,0,0 +2013,8,2,5,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,99,1,2226,96,1,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1449,0,0,1626,4,0,0 +2013,8,27,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-1,0,1933,-8,0,0 +2013,4,28,7,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,-1,0,1118,-6,0,0 +2013,6,8,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,4,0,1003,6,0,0 +2013,9,9,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1940,-15,0,2135,-16,0,0 +2013,9,10,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-8,0,2014,-2,0,0 +2013,5,17,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1935,-3,0,2328,3,0,0 +2013,9,3,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,99,1,1848,83,1,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1859,17,1,2207,24,1,0 +2013,8,15,4,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,910,0,0,1035,-8,0,0 +2013,10,16,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,845,3,0,1200,-4,0,0 +2013,5,29,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,0,0,1415,8,0,0 +2013,8,15,4,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2000,115,1,2258,104,1,0 +2013,5,19,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1722,-8,0,1845,-1,0,0 +2013,8,1,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1020,-2,0,1203,-25,0,0 +2013,4,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2045,36,1,2145,42,1,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,620,-1,0,715,-7,0,0 +2013,10,20,7,EV,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,719,-10,0,900,-26,0,0 +2013,10,1,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-3,0,1405,-23,0,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,5,0,925,-6,0,0 +2013,10,4,5,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,810,1,0,1005,8,0,0 +2013,9,4,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-11,0,1115,-35,0,0 +2013,9,13,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,628,2,0,845,-8,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1640,47,1,2345,38,1,0 +2013,10,23,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1522,-7,0,1652,-14,0,0 +2013,8,24,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,-3,0,935,-10,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-4,0,1617,12,0,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1127,0,,1239,0,1,1 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1425,-5,0,1835,3,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2007,25,1,2206,20,1,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,12,0,2330,-2,0,0 +2013,5,2,4,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1455,0,,1620,0,1,1 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1959,0,0,2159,-11,0,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2155,13,0,2310,6,0,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,750,1,0,943,3,0,0 +2013,8,25,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,3,0,1315,2,0,0 +2013,5,1,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-5,0,1009,-18,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,-5,0,1253,-11,0,0 +2013,6,4,2,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1150,-5,0,1400,-7,0,0 +2013,9,24,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1248,-20,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,726,-4,0,901,-12,0,0 +2013,7,30,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-5,0,720,-7,0,0 +2013,5,5,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1748,-4,0,2100,2,0,0 +2013,7,5,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,0,0,1140,-2,0,0 +2013,6,12,3,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-3,0,1345,-7,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1925,-5,0,2124,-4,0,0 +2013,10,9,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-4,0,1802,-14,0,0 +2013,4,23,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1103,-7,0,1412,-1,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-6,0,1309,32,1,0 +2013,10,5,6,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1655,24,1,2029,-6,0,0 +2013,4,12,5,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,1800,-3,0,2044,10,0,0 +2013,7,14,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-4,0,1916,-3,0,0 +2013,6,21,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1751,8,0,2058,4,0,0 +2013,6,6,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,520,0,0,845,-12,0,0 +2013,8,29,4,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1535,4,0,1700,16,1,0 +2013,9,24,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-9,0,852,-11,0,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,948,-7,0,1512,-22,0,0 +2013,8,29,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1248,-4,0,1500,-5,0,0 +2013,7,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-5,0,1227,-9,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1040,-6,0,1155,-11,0,0 +2013,5,27,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,28,1,1738,20,1,0 +2013,6,18,2,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1747,121,1,2030,117,1,0 +2013,6,1,6,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-11,0,1010,-10,0,0 +2013,5,18,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1640,10,0,1740,3,0,0 +2013,4,11,4,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,16,1,1614,9,0,0 +2013,8,1,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,8,0,1929,16,1,0 +2013,5,19,7,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,139,1,2350,119,1,0 +2013,6,6,4,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1645,-1,0,1935,6,0,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1045,81,1,1315,90,1,0 +2013,4,8,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,-8,0,1019,-13,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,-3,0,1916,-2,0,0 +2013,8,8,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1800,-7,0,1820,-20,0,0 +2013,7,10,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,11,0,1721,-7,0,0 +2013,5,20,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,11,0,1117,3,0,0 +2013,4,7,7,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1906,58,1,2039,56,1,0 +2013,7,10,3,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,9,0,2110,7,0,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1712,-1,0,1907,18,1,0 +2013,5,9,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1415,0,0,1525,0,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1815,1,0,2130,-13,0,0 +2013,4,6,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,1926,7,0,2213,-3,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1115,-2,0,1459,-16,0,0 +2013,7,2,2,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1210,12,0,1356,16,1,0 +2013,6,14,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,16,1,1320,16,1,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1610,-3,0,1807,-4,0,0 +2013,8,9,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1931,2,0,2320,12,0,0 +2013,4,25,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-2,0,2104,-4,0,0 +2013,9,6,5,OO,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1843,-10,0,2005,-27,0,0 +2013,7,8,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,600,6,0,645,-9,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1710,204,1,1915,194,1,0 +2013,4,25,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1131,0,0,1633,-7,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1200,0,0,1325,-8,0,0 +2013,7,8,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1234,34,1,2025,51,1,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-1,0,1046,-28,0,0 +2013,5,14,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,703,-4,0,945,-3,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1110,46,1,1245,37,1,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1117,27,1,1348,-1,0,0 +2013,4,11,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,-1,0,2140,-18,0,0 +2013,7,5,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,41,1,2011,56,1,0 +2013,8,19,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1351,-5,0,1526,-13,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1045,1,0,1420,11,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1420,11,0,1606,-9,0,0 +2013,8,22,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1755,28,1,1850,24,1,0 +2013,5,28,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-6,0,1730,-24,0,0 +2013,4,9,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1450,7,0,1540,2,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1700,0,0,1827,-14,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,-2,0,901,-13,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,917,42,1,1737,33,1,0 +2013,6,20,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1125,-8,0,1332,-4,0,0 +2013,5,25,6,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1810,-4,0,1948,-16,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1320,8,0,1800,50,1,0 +2013,8,18,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,837,8,0,1122,16,1,0 +2013,8,7,3,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,810,8,0,1140,8,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,900,-2,0,1042,5,0,0 +2013,6,30,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,929,-13,0,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2127,-4,0,20,-9,0,0 +2013,10,11,5,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1223,3,0,1819,-4,0,0 +2013,4,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1700,0,0,1820,-8,0,0 +2013,8,27,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1337,-6,0,1558,-16,0,0 +2013,4,4,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,1402,-16,0,0 +2013,9,21,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,0,0,1232,8,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,4,0,2259,9,0,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2318,-8,0,514,-22,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,0,0,1445,1,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1359,51,1,1535,28,1,0 +2013,6,10,1,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1905,29,1,2056,0,1,1 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-5,0,1405,-10,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1340,-3,0,2220,-39,0,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,940,-3,0,1028,-2,0,0 +2013,5,30,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,542,-3,0,808,-15,0,0 +2013,6,5,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,0,0,601,5,0,0 +2013,8,28,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1323,126,1,1549,140,1,0 +2013,9,7,6,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1130,-6,0,1957,-17,0,0 +2013,6,6,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-7,0,1500,-17,0,0 +2013,8,19,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,133,1,1733,120,1,0 +2013,4,13,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-7,0,1728,-12,0,0 +2013,9,5,4,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1845,7,0,1950,-11,0,0 +2013,5,30,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1940,2,0,55,-5,0,0 +2013,5,29,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2155,3,0,2315,-8,0,0 +2013,5,26,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,2,0,1650,-16,0,0 +2013,4,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1658,-6,0,2259,-22,0,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1148,-5,0,1755,-19,0,0 +2013,5,12,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1720,14,0,1844,14,0,0 +2013,5,12,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1244,-9,0,1329,-4,0,0 +2013,10,17,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,-9,0,1134,-11,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1915,-5,0,2040,-12,0,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2040,-4,0,2305,-13,0,0 +2013,7,25,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,-4,0,2115,-5,0,0 +2013,9,20,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1448,45,1,1653,94,1,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,747,-5,0,901,-15,0,0 +2013,9,8,7,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1650,-7,0,2053,-22,0,0 +2013,10,30,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1437,-10,0,0 +2013,6,19,3,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1915,-9,0,2140,4,0,0 +2013,6,28,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1740,55,1,1855,43,1,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,713,-4,0,1152,-26,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1310,-4,0,1655,-1,0,0 +2013,9,15,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,1,0,1520,-14,0,0 +2013,5,2,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,-4,0,1200,-28,0,0 +2013,8,18,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,805,-6,0,1020,-4,0,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,-3,0,1940,-21,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,0,0,1605,-5,0,0 +2013,8,12,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2205,53,1,10,44,1,0 +2013,8,4,7,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1553,-6,0,1655,-14,0,0 +2013,4,22,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1430,1,0,1600,1,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1750,45,1,2022,36,1,0 +2013,7,10,3,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1907,162,1,2040,153,1,0 +2013,10,25,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,1844,-4,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-3,0,1058,-17,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1500,1,0,1820,-11,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,2120,0,0,2320,-6,0,0 +2013,10,20,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1330,6,0,1625,-1,0,0 +2013,9,4,3,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,-5,0,1026,16,1,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,-7,0,1028,-13,0,0 +2013,4,20,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1812,-8,0,2100,-28,0,0 +2013,5,7,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-8,0,841,-38,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,23,1,2310,15,1,0 +2013,8,7,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,-7,0,1710,-4,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1355,1,0,1455,-2,0,0 +2013,7,27,6,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1640,-4,0,1823,-6,0,0 +2013,6,27,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,67,1,2127,53,1,0 +2013,6,18,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,14,0,535,2,0,0 +2013,7,22,1,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-4,0,735,2,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,3,0,2244,0,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,910,-2,0,1240,27,1,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1725,50,1,1950,45,1,0 +2013,6,16,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,10,0,1740,17,1,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,815,3,0,1055,-28,0,0 +2013,7,27,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,6,0,1502,10,0,0 +2013,10,14,1,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,627,5,0,0 +2013,6,24,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,600,2,0,842,19,1,0 +2013,8,14,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,0,0,1820,-17,0,0 +2013,7,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,805,49,1,923,47,1,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-1,0,645,-7,0,0 +2013,8,15,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-8,0,810,-12,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,1259,18,1,1657,4,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1317,40,1,1621,37,1,0 +2013,4,7,7,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1155,10,0,1306,7,0,0 +2013,6,9,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,833,4,0,946,8,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,291,1,2231,267,1,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-7,0,1247,-9,0,0 +2013,8,25,7,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1730,0,0,1825,-7,0,0 +2013,10,23,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1538,-4,0,1643,-7,0,0 +2013,4,30,2,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1954,-19,0,2157,-29,0,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,930,8,0,1400,7,0,0 +2013,9,18,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1734,3,0,2028,-2,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1330,-1,0,1616,-11,0,0 +2013,8,13,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,109,1,1616,107,1,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1541,-4,0,1829,-10,0,0 +2013,8,26,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-5,0,1410,16,1,0 +2013,4,6,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1400,-7,0,2153,-12,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,0,,2329,0,1,1 +2013,5,23,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,6,0,1450,13,0,0 +2013,5,31,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1023,-15,0,0 +2013,4,14,7,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,-3,0,615,-20,0,0 +2013,7,6,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2047,-6,0,2314,-17,0,0 +2013,6,7,5,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1730,1,0,1820,3,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,1,0,1305,-15,0,0 +2013,7,23,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1316,15,1,2148,-8,0,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1505,-5,0,1650,-5,0,0 +2013,9,2,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,920,-2,0,1044,18,1,0 +2013,4,10,3,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1205,-7,0,1428,-7,0,0 +2013,6,30,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,515,-8,0,622,-23,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-7,0,933,-8,0,0 +2013,9,5,4,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,740,-6,0,1032,-10,0,0 +2013,9,4,3,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2006,81,1,2322,82,1,0 +2013,6,21,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2205,-4,0,2316,-8,0,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1415,6,0,1625,10,0,0 +2013,5,30,4,9E,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1708,-4,0,2120,-26,0,0 +2013,5,29,3,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,6,0,1349,38,1,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1815,9,0,2113,5,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-3,0,1955,-11,0,0 +2013,8,8,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-5,0,1408,-8,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,31,1,2055,25,1,0 +2013,9,4,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1450,7,0,1656,12,0,0 +2013,6,1,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1605,7,0,1750,-2,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,900,1,0,1105,-7,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,-3,0,915,-5,0,0 +2013,9,27,5,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,28,1,2110,3,0,0 +2013,9,29,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1605,-2,0,1832,-22,0,0 +2013,4,22,1,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1738,18,1,2229,17,1,0 +2013,4,21,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1240,-7,0,1451,-13,0,0 +2013,6,7,5,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,-5,0,1415,-11,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,0,0,2121,-20,0,0 +2013,6,29,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,9,0,1724,6,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1830,10,0,2235,26,1,0 +2013,9,18,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1205,3,0,1325,-7,0,0 +2013,7,7,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,730,-2,0,925,0,0,0 +2013,6,30,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,635,-5,0,837,1,0,0 +2013,7,23,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1122,-6,0,0 +2013,10,21,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-8,0,806,1,0,0 +2013,9,3,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,0,0,643,1,0,0 +2013,6,10,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1245,0,,1442,0,1,1 +2013,8,21,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1855,74,1,2215,81,1,0 +2013,9,29,7,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,2050,-4,0,2330,-9,0,0 +2013,9,14,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,3,0,1038,-9,0,0 +2013,10,3,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,850,-18,0,0 +2013,8,3,6,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2100,52,1,521,29,1,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1845,24,1,2030,21,1,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,800,-3,0,1021,15,1,0 +2013,4,28,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,6,0,2131,28,1,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,274,1,2034,283,1,0 +2013,9,15,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-7,0,1958,-12,0,0 +2013,7,10,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,0,,2041,0,1,1 +2013,5,10,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,-6,0,1930,3,0,0 +2013,6,20,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1256,16,1,1416,10,0,0 +2013,4,24,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-9,0,919,2,0,0 +2013,4,17,3,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1205,-8,0,1428,-5,0,0 +2013,7,24,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1655,14,0,1835,13,0,0 +2013,7,20,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1130,1,0,1230,2,0,0 +2013,10,15,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1140,-9,0,1258,-13,0,0 +2013,4,23,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1546,0,0,1735,5,0,0 +2013,10,20,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1845,-5,0,2005,-8,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1640,22,1,2002,3,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1715,3,0,2140,-1,0,0 +2013,6,25,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,738,-5,0,1530,-4,0,0 +2013,7,1,1,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,-10,0,2053,0,0,0 +2013,8,21,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-3,0,1207,-6,0,0 +2013,8,17,6,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2059,113,1,2358,81,1,0 +2013,4,21,7,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,-11,0,1252,21,1,0 +2013,9,29,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1100,-5,0,1225,-2,0,0 +2013,4,24,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1232,38,1,2100,70,1,0 +2013,9,18,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1515,84,1,1904,72,1,0 +2013,10,21,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-5,0,1254,-13,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1956,0,0,2132,-24,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1005,5,0,1325,13,0,0 +2013,8,10,6,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-3,0,715,-10,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-4,0,1812,9,0,0 +2013,7,25,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1310,3,0,1415,-2,0,0 +2013,8,2,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,615,-1,0,700,-5,0,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,-5,0,931,-18,0,0 +2013,4,5,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2003,-2,0,2130,-5,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,-7,0,1743,-25,0,0 +2013,9,11,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1116,-3,0,1719,-18,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1700,-3,0,2033,-19,0,0 +2013,10,18,5,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2156,-6,0,2247,1,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,34,1,2105,38,1,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2010,0,0,2102,-9,0,0 +2013,6,25,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,610,-3,0,815,-28,0,0 +2013,9,26,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,755,2,0,929,17,1,0 +2013,10,4,5,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1950,0,0,2135,-7,0,0 +2013,10,5,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,845,-3,0,1405,-4,0,0 +2013,9,24,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,16,1,1525,29,1,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1355,-4,0,1621,1,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,-3,0,1445,13,0,0 +2013,4,23,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-8,0,1559,-4,0,0 +2013,7,3,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1535,-2,0,1653,-22,0,0 +2013,7,26,5,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,740,-5,0,836,4,0,0 +2013,10,18,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,730,-4,0,929,-12,0,0 +2013,8,7,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,-3,0,2330,-9,0,0 +2013,7,21,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1525,0,0,1637,96,1,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1745,-4,0,1952,-11,0,0 +2013,8,7,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1825,-1,0,1925,18,1,0 +2013,7,23,2,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1425,0,0,1554,-2,0,0 +2013,4,11,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1755,-2,0,1937,-8,0,0 +2013,8,28,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-1,0,1130,11,0,0 +2013,8,31,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,950,60,1,1145,64,1,0 +2013,5,13,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1940,10,0,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,625,27,1,800,23,1,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,730,-1,0,825,-7,0,0 +2013,10,21,1,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1730,-7,0,2253,-12,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,1,0,1245,7,0,0 +2013,6,30,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1020,6,0,1435,-3,0,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1450,28,1,1728,30,1,0 +2013,9,26,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1900,26,1,2015,39,1,0 +2013,8,30,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,20,1,2323,3,0,0 +2013,10,8,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1445,44,1,1610,37,1,0 +2013,4,9,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,90,1,1950,84,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1609,45,1,1739,43,1,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1915,7,0,2300,-43,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,-6,0,2350,-18,0,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,105,1,2015,117,1,0 +2013,10,23,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2059,17,1,2151,9,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,945,54,1,1100,52,1,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1520,35,1,1800,15,1,0 +2013,4,10,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1150,0,,1335,0,1,1 +2013,4,10,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,655,-7,0,940,-22,0,0 +2013,8,14,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1913,124,1,2017,125,1,0 +2013,8,9,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1835,220,1,2140,199,1,0 +2013,5,8,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,45,1,830,50,1,0 +2013,4,18,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-5,0,1216,3,0,0 +2013,7,12,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,3,0,1931,-2,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,9,0,1730,6,0,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,-4,0,1215,-10,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,18,1,1205,7,0,0 +2013,10,23,3,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,927,-20,0,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,7,0,1640,-6,0,0 +2013,5,6,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2000,103,1,2200,104,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2005,66,1,2101,0,1,1 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1420,0,0,1935,-13,0,0 +2013,6,7,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,41,1,1706,28,1,0 +2013,4,4,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,-3,0,1838,-5,0,0 +2013,8,25,7,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1655,0,0,1735,4,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1640,14,0,1826,6,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,750,0,0,1020,-19,0,0 +2013,7,16,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-7,0,830,-6,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1450,9,0,1517,8,0,0 +2013,8,30,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-1,0,1245,-4,0,0 +2013,8,6,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,26,1,1625,29,1,0 +2013,5,6,1,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1645,-9,0,2206,-18,0,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2023,62,1,2229,76,1,0 +2013,4,4,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1915,90,1,2223,91,1,0 +2013,4,15,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,900,-4,0,1210,-25,0,0 +2013,7,23,2,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,-2,0,1230,-4,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,700,0,0,815,-9,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,-5,0,2015,1,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,95,1,1933,76,1,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1900,25,1,2145,5,0,0 +2013,5,5,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,13,0,2015,8,0,0 +2013,7,20,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,1,0,929,-4,0,0 +2013,8,1,4,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,2305,1,0,612,-12,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1240,84,1,1447,106,1,0 +2013,9,5,4,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,800,-1,0,1355,-21,0,0 +2013,5,16,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,-2,0,1118,-8,0,0 +2013,10,19,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1935,6,0,2229,-16,0,0 +2013,8,13,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1254,25,1,1401,21,1,0 +2013,6,11,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1523,-8,0,0 +2013,5,6,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1501,-3,0,1552,1,0,0 +2013,8,13,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-4,0,755,17,1,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1753,-1,0,1926,7,0,0 +2013,7,24,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-8,0,815,-13,0,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1950,110,1,2115,109,1,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-2,0,1157,26,1,0 +2013,8,18,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1512,-5,0,1633,-4,0,0 +2013,9,13,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-17,0,2319,-24,0,0 +2013,8,29,4,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-9,0,1220,-17,0,0 +2013,7,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1016,-2,0,1149,-12,0,0 +2013,4,5,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1930,-8,0,2214,-18,0,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,900,-9,0,1101,-23,0,0 +2013,5,9,4,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,-6,0,750,-21,0,0 +2013,4,18,4,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1540,2,0,1648,11,0,0 +2013,6,15,6,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1415,11,0,1645,-3,0,0 +2013,4,21,7,EV,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1157,-2,0,1335,-9,0,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2110,20,1,2327,5,0,0 +2013,9,24,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-2,0,1150,-14,0,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1550,-4,0,1818,-7,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,-1,0,2100,-13,0,0 +2013,7,22,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,2,0,1010,-1,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,-5,0,903,-13,0,0 +2013,7,18,4,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1728,12,0,1900,30,1,0 +2013,6,29,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,0,0,1659,-3,0,0 +2013,5,22,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1345,-2,0,1433,-10,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,61,1,1933,57,1,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,105,1,2220,102,1,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,-2,0,2328,-4,0,0 +2013,9,19,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1020,32,1,1105,49,1,0 +2013,5,13,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,-4,0,1552,-4,0,0 +2013,7,11,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1725,-8,0,1746,-9,0,0 +2013,5,5,7,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1815,-4,0,2135,7,0,0 +2013,5,17,5,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,910,2,0,1105,-2,0,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,-7,0,1632,-9,0,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1210,6,0,1725,5,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1130,-6,0,1418,-25,0,0 +2013,8,23,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,810,1,0,910,-4,0,0 +2013,8,19,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-5,0,1415,0,0,0 +2013,10,9,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,900,30,1,1230,36,1,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,3,0,1515,-6,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14570,Reno/Tahoe International,Reno,NV,952,0,0,1143,-16,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1921,25,1,2013,11,0,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1952,-2,0,2332,-24,0,0 +2013,9,15,7,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1205,-5,0,1410,-6,0,0 +2013,10,22,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1817,-2,0,2118,-17,0,0 +2013,7,21,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,5,0,1922,8,0,0 +2013,5,24,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-13,0,1320,-11,0,0 +2013,7,28,7,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,625,-5,0,808,-18,0,0 +2013,6,9,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-4,0,701,9,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1525,6,0,1733,14,0,0 +2013,4,25,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,13,0,1705,5,0,0 +2013,5,3,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,742,-9,0,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-1,0,2205,-10,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,-4,0,2115,4,0,0 +2013,4,4,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-7,0,1018,-12,0,0 +2013,6,16,7,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1229,-7,0,1439,-12,0,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,10,0,2225,8,0,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2000,9,0,2125,14,0,0 +2013,6,23,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-7,0,1150,-14,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1615,-4,0,1800,-7,0,0 +2013,10,30,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-9,0,559,-25,0,0 +2013,6,11,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-4,0,947,-8,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,-6,0,1435,-6,0,0 +2013,5,20,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,915,-5,0,935,-13,0,0 +2013,5,4,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,825,-1,0,940,-13,0,0 +2013,4,17,3,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,56,1,2039,70,1,0 +2013,5,22,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1252,-5,0,1412,-7,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,-4,0,1546,-13,0,0 +2013,4,2,2,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-3,0,2024,-21,0,0 +2013,9,9,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,48,1,1430,45,1,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1005,-4,0,1135,-6,0,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1255,-3,0,1620,4,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1830,43,1,2055,43,1,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,1815,26,1,2044,12,0,0 +2013,6,20,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-5,0,1633,-27,0,0 +2013,4,21,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2155,108,1,2315,102,1,0 +2013,6,17,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,97,1,1940,103,1,0 +2013,4,13,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,921,-6,0,1221,-20,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1910,9,0,2053,-2,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-1,0,910,-22,0,0 +2013,6,30,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1950,127,1,2228,107,1,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1433,-2,0,1605,-11,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,810,-3,0,1017,-18,0,0 +2013,9,16,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2010,26,1,2055,6,0,0 +2013,4,18,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-6,0,1100,-16,0,0 +2013,7,5,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,2,0,1125,-16,0,0 +2013,6,1,6,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,745,46,1,851,21,1,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,602,-5,0,1330,4,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,752,0,0,845,3,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1115,-2,0,1300,-17,0,0 +2013,8,1,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-5,0,1734,55,1,0 +2013,5,9,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,930,-7,0,946,-14,0,0 +2013,9,25,3,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,910,12,0,1730,-1,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1700,7,0,1815,18,1,0 +2013,6,24,1,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,46,1,1901,34,1,0 +2013,6,17,1,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,530,5,0,937,5,0,0 +2013,10,14,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,5,0,803,4,0,0 +2013,5,26,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1015,1,0,1615,-11,0,0 +2013,9,10,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,-6,0,1944,-18,0,0 +2013,7,10,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,-3,0,1623,-5,0,0 +2013,7,5,5,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1305,11,0,1430,-5,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,-6,0,923,20,1,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1501,2,0,1550,-3,0,0 +2013,10,10,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-3,0,1251,-9,0,0 +2013,4,27,6,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1444,68,1,1735,45,1,0 +2013,4,21,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1555,7,0,1730,-16,0,0 +2013,8,26,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,0,0,1255,13,0,0 +2013,10,23,3,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,710,-9,0,1000,18,1,0 +2013,9,18,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,-5,0,650,2,0,0 +2013,4,1,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1555,2,0,1742,-2,0,0 +2013,10,4,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,0,0,835,0,0,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1025,10,0,1400,11,0,0 +2013,6,13,4,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,730,-2,0,1030,-9,0,0 +2013,10,14,1,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1845,-2,0,2123,47,1,0 +2013,6,25,2,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1640,15,1,1849,0,0,0 +2013,5,4,6,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1245,0,0,1655,-16,0,0 +2013,8,13,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1034,1,0,0 +2013,10,13,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1312,-1,0,1618,-24,0,0 +2013,6,27,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,830,-5,0,1028,-18,0,0 +2013,7,30,2,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,4,0,1305,-6,0,0 +2013,7,3,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,77,1,1258,133,1,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,-1,0,1155,-8,0,0 +2013,7,5,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1445,-2,0,2250,-14,0,0 +2013,10,28,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1822,0,0,2108,-4,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1730,7,0,1837,6,0,0 +2013,7,21,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-12,0,1330,-14,0,0 +2013,9,27,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1624,-5,0,1808,-1,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,-1,0,1933,-13,0,0 +2013,5,19,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1550,25,1,1748,26,1,0 +2013,4,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1055,-1,0,0 +2013,7,23,2,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-2,0,1756,8,0,0 +2013,10,14,1,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-4,0,603,-28,0,0 +2013,6,22,6,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1800,-7,0,2010,-9,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-6,0,1256,-14,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1010,0,0,1140,-3,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1245,1,0,1737,-11,0,0 +2013,7,26,5,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,11,0,2135,2,0,0 +2013,10,18,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-10,0,2149,-20,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1410,20,1,1539,5,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,615,-6,0,1010,-11,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,830,-2,0,955,-10,0,0 +2013,7,4,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-2,0,914,14,0,0 +2013,6,12,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1114,-4,0,1257,-12,0,0 +2013,5,8,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,1,0,1940,-3,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,0,,1420,0,1,1 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-4,0,908,-3,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1250,20,1,1505,9,0,0 +2013,6,17,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1337,-9,0,1539,-16,0,0 +2013,6,21,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,812,0,0,908,-3,0,0 +2013,6,7,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,-4,0,855,-14,0,0 +2013,10,17,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,1,0,1958,4,0,0 +2013,4,28,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,249,1,2128,231,1,0 +2013,10,8,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1505,-2,0,1825,-3,0,0 +2013,7,20,6,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,735,-3,0,1115,-13,0,0 +2013,6,11,2,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1606,164,1,1704,157,1,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1945,0,0,2059,-14,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,0,0,1720,-18,0,0 +2013,6,5,3,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1025,-1,0,1610,-17,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1415,11,0,1550,9,0,0 +2013,5,3,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-5,0,950,4,0,0 +2013,8,12,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1027,-3,0,1359,-22,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1005,44,1,1110,36,1,0 +2013,6,22,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-2,0,642,20,1,0 +2013,8,19,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1609,-4,0,1655,-9,0,0 +2013,10,28,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1755,-4,0,2030,-5,0,0 +2013,5,14,2,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1456,0,0,1749,-4,0,0 +2013,8,5,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-4,0,1215,-10,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1230,-1,0,1325,-12,0,0 +2013,5,24,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1140,-3,0,1839,-17,0,0 +2013,8,18,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2045,6,0,2150,6,0,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1800,177,1,2325,206,1,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1705,56,1,1805,44,1,0 +2013,10,13,7,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,740,-3,0,810,-6,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1636,29,1,2142,0,0,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1919,6,0,2153,-5,0,0 +2013,10,31,4,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,6,0,1425,9,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,733,-2,0,910,-5,0,0 +2013,7,21,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1625,12,0,1806,42,1,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1245,0,0,1515,2,0,0 +2013,10,17,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1809,24,1,1931,25,1,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,-9,0,1701,3,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,855,-5,0,1338,-8,0,0 +2013,10,13,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,1,0,651,9,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,825,0,0,1025,-8,0,0 +2013,9,20,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,0,0,730,11,0,0 +2013,6,7,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1457,6,0,1717,8,0,0 +2013,7,26,5,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-8,0,1754,-19,0,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1700,60,1,1827,56,1,0 +2013,8,23,5,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1007,19,1,1223,-1,0,0 +2013,8,20,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,735,-6,0,914,3,0,0 +2013,8,7,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,825,8,0,0 +2013,4,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2100,-5,0,2232,-24,0,0 +2013,7,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,2000,-3,0,2101,3,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1835,-1,0,2015,1,0,0 +2013,10,1,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1836,-6,0,0 +2013,7,13,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,34,1,1902,36,1,0 +2013,7,31,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,0,,1345,0,1,1 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-7,0,2210,-14,0,0 +2013,6,9,7,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,605,-2,0,733,-4,0,0 +2013,4,18,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-9,0,616,3,0,0 +2013,5,26,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1534,-4,0,1729,-4,0,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1755,15,1,2027,37,1,0 +2013,10,2,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1335,0,0,1700,-8,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,-3,0,2022,-15,0,0 +2013,10,12,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1122,-10,0,1310,3,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-2,0,1411,-9,0,0 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,22,1,2039,-2,0,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,847,2,0,1030,-4,0,0 +2013,5,11,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,1,0,1416,-7,0,0 +2013,8,30,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-5,0,756,-4,0,0 +2013,10,7,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1333,-1,0,1412,2,0,0 +2013,9,26,4,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1032,-2,0,1616,-17,0,0 +2013,9,12,4,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1415,-3,0,1515,-10,0,0 +2013,8,3,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1502,-2,0,1607,7,0,0 +2013,5,4,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1140,-5,0,1253,-6,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1614,-3,0,1737,-18,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,1,0,1440,-18,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-2,0,945,10,0,0 +2013,7,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1655,35,1,1955,17,1,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,618,-6,0,840,-20,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,900,-4,0,1145,-3,0,0 +2013,8,28,3,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-5,0,1120,-13,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1125,14,0,1235,18,1,0 +2013,10,22,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1829,-9,0,0 +2013,10,8,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-6,0,1835,-16,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1020,23,1,1145,10,0,0 +2013,10,20,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1326,5,0,2149,-25,0,0 +2013,6,23,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,640,-6,0,1000,1,0,0 +2013,8,10,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1157,-5,0,1436,-1,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1521,-2,0,1645,2,0,0 +2013,6,15,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,2,0,1643,27,1,0 +2013,5,24,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,0,,930,0,1,1 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1420,17,1,2205,7,0,0 +2013,9,27,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,-2,0,606,2,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1016,-5,0,1203,-8,0,0 +2013,5,9,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,5,0,1845,16,1,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-6,0,2159,8,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1830,12,0,2255,4,0,0 +2013,8,29,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1710,-7,0,1905,-1,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,64,1,2205,61,1,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,745,-2,0,941,-14,0,0 +2013,8,23,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-4,0,2059,-14,0,0 +2013,10,14,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2005,-6,0,2130,-16,0,0 +2013,6,20,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,-4,0,1645,-20,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,1,0,1805,-16,0,0 +2013,6,21,5,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1515,31,1,1650,21,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-1,0,1442,-16,0,0 +2013,8,10,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1810,38,1,2055,42,1,0 +2013,10,8,2,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,924,-10,0,0 +2013,8,17,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,-8,0,2240,-32,0,0 +2013,4,23,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12953,LaGuardia,New York,NY,1610,129,1,1808,154,1,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,-3,0,2145,-1,0,0 +2013,7,27,6,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1531,-7,0,1740,-4,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2112,-4,0,2233,-17,0,0 +2013,10,20,7,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-4,0,731,-7,0,0 +2013,6,15,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1741,-9,0,1931,-31,0,0 +2013,9,18,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1710,-8,0,1830,-10,0,0 +2013,8,26,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,-6,0,1555,-20,0,0 +2013,6,22,6,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1940,-2,0,2225,-9,0,0 +2013,10,3,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,925,1,0,1045,-5,0,0 +2013,5,12,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,855,-3,0,1658,18,1,0 +2013,8,28,3,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1015,0,0,1123,12,0,0 +2013,7,25,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-15,0,1129,-27,0,0 +2013,7,29,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,843,-9,0,946,-18,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,12,0,1500,14,0,0 +2013,4,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,-7,0,1307,-9,0,0 +2013,4,2,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,618,-13,0,650,-5,0,0 +2013,4,22,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2350,20,1,806,20,1,0 +2013,5,21,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,840,-6,0,0 +2013,8,3,6,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,76,1,1659,87,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,-6,0,1453,-15,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1300,51,1,1515,65,1,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,23,1,905,13,0,0 +2013,6,3,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,0,0,1013,-6,0,0 +2013,4,7,7,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1726,-7,0,1907,-23,0,0 +2013,9,17,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,0,0,1355,-7,0,0 +2013,4,30,2,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,842,0,0,1015,-18,0,0 +2013,10,24,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-5,0,1410,-7,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1355,-3,0,1604,-10,0,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,854,-10,0,1017,-5,0,0 +2013,7,2,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-9,0,1538,-21,0,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1355,10,0,1520,2,0,0 +2013,5,13,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1242,-5,0,1939,5,0,0 +2013,5,8,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1507,99,1,1639,90,1,0 +2013,8,3,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1645,0,0,1827,-10,0,0 +2013,5,3,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1535,0,0,1655,-12,0,0 +2013,8,19,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1340,20,1,1706,13,0,0 +2013,7,26,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-6,0,1746,-12,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,64,1,2221,56,1,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,-3,0,1531,-9,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1729,22,1,1934,35,1,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,-3,0,1858,-34,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1445,17,1,1625,31,1,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1945,3,0,2055,1,0,0 +2013,9,17,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1149,-4,0,1236,-14,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,-5,0,1710,-18,0,0 +2013,6,11,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1945,-3,0,2202,-8,0,0 +2013,7,30,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1442,-3,0,1626,-21,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1320,2,0,1700,-17,0,0 +2013,10,10,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1840,13,0,5,-5,0,0 +2013,7,19,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1605,0,0,1640,-2,0,0 +2013,7,3,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1307,16,1,1800,7,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,-6,0,1310,-38,0,0 +2013,4,20,6,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1035,-3,0,1344,-5,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1510,8,0,1825,6,0,0 +2013,8,22,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,16,1,745,4,0,0 +2013,6,14,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,0,0,1315,-2,0,0 +2013,4,10,3,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1220,0,0,1350,-8,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,9,0,2323,-2,0,0 +2013,6,4,2,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-7,0,2039,4,0,0 +2013,5,15,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,-1,0,810,1,0,0 +2013,6,10,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1055,7,0,1455,5,0,0 +2013,10,19,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1651,-4,0,2059,-19,0,0 +2013,5,22,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,836,-5,0,901,-5,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1920,151,1,2120,141,1,0 +2013,5,9,4,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2113,2,0,2344,-1,0,0 +2013,8,22,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1825,0,,2005,0,1,1 +2013,6,25,2,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,3,0,805,-5,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-4,0,858,20,1,0 +2013,5,26,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,738,-1,0,840,-9,0,0 +2013,6,8,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-1,0,745,-5,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,3,0,1932,18,1,0 +2013,5,2,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-5,0,1040,-36,0,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1225,0,0,1315,-3,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1945,11,0,2050,6,0,0 +2013,6,18,2,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,0,0,1124,-12,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,-1,0,1131,-11,0,0 +2013,9,10,2,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,2,0,2359,-2,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,705,-3,0,945,0,0,0 +2013,6,16,7,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1230,3,0,1605,-10,0,0 +2013,8,9,5,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,919,10,0,1100,3,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1040,14,0,1155,4,0,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1845,-1,0,2125,5,0,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1030,5,0,1800,0,0,0 +2013,4,4,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,805,-6,0,935,10,0,0 +2013,9,10,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-2,0,930,-10,0,0 +2013,4,4,4,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,600,-4,0,717,11,0,0 +2013,5,23,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,940,17,1,1026,18,1,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-9,0,1833,-9,0,0 +2013,7,21,7,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1926,10,0,805,7,0,0 +2013,9,4,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,0,0,2056,2,0,0 +2013,8,14,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,-3,0,544,-4,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1410,38,1,1550,28,1,0 +2013,4,6,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,16,1,1907,10,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,1,0,2140,1,0,0 +2013,4,10,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1826,11,0,2110,-1,0,0 +2013,9,6,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1836,-6,0,2012,-15,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1150,-5,0,1505,-12,0,0 +2013,4,2,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,-8,0,1916,-32,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1525,0,0,1705,7,0,0 +2013,4,22,1,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1720,65,1,1835,75,1,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-2,0,1639,-1,0,0 +2013,8,24,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-9,0,1751,-18,0,0 +2013,4,16,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1630,8,0,1805,-5,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1750,-1,0,1923,-6,0,0 +2013,9,28,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-4,0,606,-16,0,0 +2013,5,16,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,700,-6,0,825,-4,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,545,-4,0,907,-22,0,0 +2013,10,9,3,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,852,-4,0,1151,-5,0,0 +2013,5,24,5,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,715,-6,0,935,-11,0,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2045,-1,0,2215,27,1,0 +2013,7,27,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1120,8,0,1340,7,0,0 +2013,5,1,3,9E,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1020,-10,0,1216,-34,0,0 +2013,5,2,4,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,0,,758,0,1,1 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,115,1,2155,102,1,0 +2013,9,25,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-6,0,1130,-27,0,0 +2013,4,30,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-7,0,1805,-52,0,0 +2013,6,2,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-4,0,1645,-9,0,0 +2013,4,2,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-5,0,1549,-10,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,-2,0,2321,-15,0,0 +2013,5,7,2,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,6,0,1805,0,0,0 +2013,7,24,3,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,757,-7,0,0 +2013,6,4,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1725,0,0,1855,-18,0,0 +2013,6,2,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,61,1,1805,49,1,0 +2013,7,1,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-5,0,647,-5,0,0 +2013,9,29,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-4,0,920,-22,0,0 +2013,8,13,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,900,-10,0,951,-2,0,0 +2013,4,23,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,-10,0,1938,-17,0,0 +2013,9,11,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,-5,0,1355,-13,0,0 +2013,4,30,2,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,955,-4,0,1108,1,0,0 +2013,7,27,6,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,8,0,1710,-2,0,0 +2013,8,7,3,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,-2,0,1959,9,0,0 +2013,5,20,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,8,0,1755,3,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,710,4,0,820,5,0,0 +2013,8,2,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,658,-7,0,910,-5,0,0 +2013,5,28,2,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1050,-6,0,1215,-8,0,0 +2013,10,29,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-9,0,2032,-5,0,0 +2013,6,30,7,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1515,6,0,2105,21,1,0 +2013,7,31,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,620,-6,0,910,-13,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1355,1,0,1715,-28,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,9,0,2125,11,0,0 +2013,6,10,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-7,0,1055,4,0,0 +2013,5,29,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1650,32,1,1740,22,1,0 +2013,7,22,1,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,-7,0,1828,-6,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,-1,0,1443,-27,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1945,16,1,2150,27,1,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,808,-13,0,929,-20,0,0 +2013,4,19,5,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-4,0,715,-9,0,0 +2013,7,12,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,842,7,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2037,-3,0,2204,-21,0,0 +2013,8,9,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1500,-4,0,1740,-21,0,0 +2013,6,9,7,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,5,0,1405,-12,0,0 +2013,8,11,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,3,0,830,-3,0,0 +2013,7,13,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,167,1,2110,167,1,0 +2013,6,3,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1700,-2,0,2005,29,1,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,-4,0,2220,-23,0,0 +2013,9,18,3,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-6,0,811,0,0,0 +2013,4,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1940,4,0,55,-8,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-5,0,1135,-2,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1800,-3,0,2106,-10,0,0 +2013,10,4,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,0,0,805,0,0,0 +2013,9,9,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1930,-2,0,2210,5,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1155,2,0,1330,-3,0,0 +2013,10,22,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1515,-2,0,1835,-2,0,0 +2013,9,16,1,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,853,-3,0,1055,-6,0,0 +2013,4,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1859,10,0,2219,20,1,0 +2013,4,22,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1500,18,1,1629,16,1,0 +2013,10,30,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,941,7,0,1054,15,1,0 +2013,6,24,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2035,0,0,2305,-20,0,0 +2013,8,1,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,2009,13,0,100,14,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-9,0,1617,-13,0,0 +2013,4,13,6,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,945,0,0,1045,-3,0,0 +2013,4,3,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-4,0,1855,-16,0,0 +2013,7,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1550,-3,0,1658,-9,0,0 +2013,4,26,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1404,-2,0,0 +2013,5,30,4,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,620,-3,0,915,-2,0,0 +2013,5,12,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,-15,0,1403,-2,0,0 +2013,10,2,3,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1835,-8,0,2148,-21,0,0 +2013,9,10,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,-13,0,1759,-17,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-2,0,900,-26,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1200,-5,0,1445,-10,0,0 +2013,10,6,7,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2140,-5,0,35,-7,0,0 +2013,10,20,7,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,620,-2,0,915,12,0,0 +2013,10,19,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1055,-2,0,1155,-8,0,0 +2013,10,30,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,720,-1,0,945,-22,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1839,3,0,2356,7,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,0,0,1150,-10,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1610,11,0,1720,4,0,0 +2013,7,18,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2243,-3,0,626,-9,0,0 +2013,4,21,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,745,4,0,1115,0,0,0 +2013,5,15,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,8,0,1040,2,0,0 +2013,6,28,5,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1945,27,1,2138,5,0,0 +2013,4,17,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,-2,0,1221,-14,0,0 +2013,4,5,5,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1700,2,0,1835,-1,0,0 +2013,9,28,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,-5,0,1627,-16,0,0 +2013,6,20,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,936,-2,0,952,3,0,0 +2013,8,2,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,9,0,1428,-2,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1557,-6,0,15,-27,0,0 +2013,5,21,2,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1620,15,1,1847,18,1,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1742,23,1,1823,20,1,0 +2013,5,14,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1720,-6,0,1839,18,1,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,2,0,1740,-9,0,0 +2013,4,16,2,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,-7,0,1518,-16,0,0 +2013,9,8,7,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1230,5,0,1420,-21,0,0 +2013,6,28,5,OO,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,33,1,1651,0,1,1 +2013,7,15,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,-9,0,1905,-15,0,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2125,42,1,2320,45,1,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1600,-3,0,1925,-36,0,0 +2013,6,16,7,DL,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,5,0,1831,39,1,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1305,-2,0,1410,7,0,0 +2013,4,24,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1548,-1,0,1645,4,0,0 +2013,6,10,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1121,23,1,1305,10,0,0 +2013,5,3,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,920,-6,0,1230,-2,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,820,8,0,1025,-7,0,0 +2013,9,11,3,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2325,75,1,543,59,1,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-5,0,1309,6,0,0 +2013,4,18,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,-2,0,1119,-5,0,0 +2013,10,12,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1456,-3,0,1553,8,0,0 +2013,7,20,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-3,0,1441,-5,0,0 +2013,4,27,6,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,619,-3,0,1014,-7,0,0 +2013,8,28,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-3,0,1251,-28,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1543,5,0,1802,26,1,0 +2013,5,8,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,555,-6,0,847,-16,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,31,1,1225,39,1,0 +2013,7,14,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2045,124,1,2159,120,1,0 +2013,4,13,6,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,715,-8,0,1007,-18,0,0 +2013,8,14,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,2,0,1330,4,0,0 +2013,6,22,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2010,29,1,2135,37,1,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,80,1,1839,64,1,0 +2013,10,23,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,6,0,1255,6,0,0 +2013,8,28,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1113,-5,0,1201,-9,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1935,-5,0,2247,-26,0,0 +2013,8,20,2,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,810,-3,0,1200,-8,0,0 +2013,5,29,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1745,-2,0,1905,-14,0,0 +2013,9,24,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-4,0,2355,-4,0,0 +2013,10,11,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2148,61,1,559,53,1,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2220,-4,0,2357,-7,0,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1506,0,0,1614,-4,0,0 +2013,4,29,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,740,-4,0,935,-20,0,0 +2013,10,16,3,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1200,-6,0,1319,-8,0,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,1,0,1740,-9,0,0 +2013,5,20,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-5,0,1007,-12,0,0 +2013,8,26,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-3,0,754,-12,0,0 +2013,4,4,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1335,10,0,1456,7,0,0 +2013,10,29,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,740,-5,0,910,10,0,0 +2013,7,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2055,51,1,2250,38,1,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1355,94,1,1755,96,1,0 +2013,5,11,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,750,-2,0,1614,26,1,0 +2013,4,7,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,0,0,1316,0,0,0 +2013,4,11,4,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1845,-5,0,2212,-1,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-2,0,2347,-9,0,0 +2013,9,12,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,20,1,2042,11,0,0 +2013,7,7,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1454,-5,0,1629,-11,0,0 +2013,6,13,4,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1105,34,1,1505,29,1,0 +2013,5,17,5,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,-4,0,2105,-4,0,0 +2013,10,23,3,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-10,0,1230,-20,0,0 +2013,8,27,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1412,58,1,1522,42,1,0 +2013,4,10,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-4,0,1650,8,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2211,-2,0,2312,-12,0,0 +2013,10,9,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-6,0,543,-17,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1247,11,0,1342,2,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1500,1,0,1600,-5,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,745,-6,0,936,-3,0,0 +2013,4,2,2,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-1,0,1114,3,0,0 +2013,10,17,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,2,0,1459,-20,0,0 +2013,9,8,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1140,-5,0,1258,-11,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-2,0,904,-11,0,0 +2013,5,14,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1100,-1,0,1340,-13,0,0 +2013,6,21,5,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1823,19,1,2110,11,0,0 +2013,4,13,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1605,0,0,1725,11,0,0 +2013,8,25,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1910,1,0,2040,29,1,0 +2013,4,22,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,14,0,2325,18,1,0 +2013,8,28,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-8,0,1425,2,0,0 +2013,6,19,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-7,0,1014,-14,0,0 +2013,6,17,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1050,2,0,1145,-3,0,0 +2013,5,10,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1635,5,0,1824,45,1,0 +2013,5,19,7,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-3,0,1220,-6,0,0 +2013,4,26,5,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1156,-11,0,1619,-9,0,0 +2013,5,8,3,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1900,95,1,2010,98,1,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-3,0,1526,-3,0,0 +2013,10,16,3,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1859,-5,0,2024,-8,0,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2004,-5,0,2114,-22,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1920,184,1,2046,191,1,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,-2,0,2259,-14,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1353,0,0,1540,3,0,0 +2013,4,26,5,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1840,-3,0,2059,-17,0,0 +2013,6,5,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1026,-9,0,1306,-20,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,7,0,1905,-2,0,0 +2013,7,23,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,57,1,2046,18,1,0 +2013,5,16,4,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,810,-4,0,1015,-1,0,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-5,0,1349,-11,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-1,0,1008,-14,0,0 +2013,9,17,2,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,815,-5,0,1056,-9,0,0 +2013,8,20,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,741,-7,0,936,-32,0,0 +2013,5,19,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1712,21,1,1928,22,1,0 +2013,7,7,7,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1435,3,0,2300,19,1,0 +2013,10,21,1,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1535,4,0,1800,0,0,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1340,-2,0,1615,-21,0,0 +2013,7,3,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1747,63,1,2026,64,1,0 +2013,5,12,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,-10,0,1931,-7,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1535,20,1,1921,17,1,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1220,8,0,1315,8,0,0 +2013,10,3,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2017,-6,0,2,-10,0,0 +2013,6,2,7,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1514,34,1,1735,33,1,0 +2013,9,2,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-5,0,1940,-15,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2140,13,0,35,2,0,0 +2013,5,30,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2032,-9,0,2254,-9,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,-3,0,1320,0,0,0 +2013,4,9,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1646,132,1,1900,0,1,1 +2013,8,2,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,848,0,0,922,1,0,0 +2013,8,8,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,-3,0,2120,-10,0,0 +2013,9,17,2,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,820,-5,0,1612,-5,0,0 +2013,9,7,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,-5,0,1300,-8,0,0 +2013,10,27,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1340,41,1,1445,32,1,0 +2013,9,15,7,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1015,-2,0,1249,-13,0,0 +2013,4,9,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1335,0,0,1500,-15,0,0 +2013,8,11,7,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,74,1,1600,59,1,0 +2013,4,17,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,138,1,2045,121,1,0 +2013,7,25,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,-3,0,1501,-8,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1315,23,1,1615,16,1,0 +2013,9,7,6,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1115,3,0,1659,-2,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1030,4,0,1345,-8,0,0 +2013,9,11,3,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1731,-9,0,1947,21,1,0 +2013,8,16,5,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,7,0,905,3,0,0 +2013,6,16,7,9E,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-4,0,1332,-5,0,0 +2013,10,27,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1103,-5,0,1345,16,1,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2135,55,1,5,39,1,0 +2013,10,28,1,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,740,-3,0,1015,-12,0,0 +2013,5,26,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-1,0,1720,-13,0,0 +2013,8,31,6,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,606,5,0,1146,7,0,0 +2013,8,1,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,1345,-4,0,2021,-2,0,0 +2013,10,30,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1220,30,1,1355,14,0,0 +2013,5,26,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-4,0,1225,-38,0,0 +2013,7,24,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1656,-3,0,1917,-8,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1307,15,1,1741,-4,0,0 +2013,7,21,7,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1510,-1,0,1630,-4,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,831,0,0,1001,-6,0,0 +2013,5,16,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,2050,0,0,2245,-17,0,0 +2013,10,3,4,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,0,,924,0,1,1 +2013,10,28,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,-6,0,910,11,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1005,1,0,1110,2,0,0 +2013,8,7,3,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,545,-2,0,627,-10,0,0 +2013,4,1,1,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,800,-1,0,1558,-18,0,0 +2013,10,4,5,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1208,-12,0,1412,-29,0,0 +2013,9,15,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,705,-2,0,930,-3,0,0 +2013,6,19,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,4,0,1745,8,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1345,24,1,1706,14,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,0,0,2359,-1,0,0 +2013,6,14,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,800,8,0,832,21,1,0 +2013,8,25,7,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,824,-1,0,1018,-14,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1427,1,0,1640,-10,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-4,0,1053,-20,0,0 +2013,9,22,7,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-4,0,1041,0,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1954,1,0,2112,15,1,0 +2013,5,29,3,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1355,-7,0,1535,-11,0,0 +2013,9,3,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1502,-9,0,0 +2013,7,9,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,820,-5,0,959,-20,0,0 +2013,4,29,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1503,-3,0,1628,-21,0,0 +2013,4,26,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,6,0,1405,6,0,0 +2013,4,21,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1042,5,0,1252,-3,0,0 +2013,9,17,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1119,11,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1155,-2,0,1410,-6,0,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1530,-6,0,1550,-25,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1450,14,0,2205,-14,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1650,-2,0,2010,-15,0,0 +2013,7,6,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-1,0,1128,-6,0,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,923,66,1,1750,29,1,0 +2013,7,20,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,2,0,1107,-9,0,0 +2013,10,9,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,1,0,930,2,0,0 +2013,9,26,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,943,21,1,1026,14,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,738,-5,0,931,0,0,0 +2013,5,13,1,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1705,20,1,2100,26,1,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,-2,0,850,-8,0,0 +2013,9,8,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-6,0,2324,-7,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,-1,0,1802,3,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1304,2,0,1410,20,1,0 +2013,5,11,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1514,-4,0,2053,-4,0,0 +2013,8,23,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-2,0,1650,-14,0,0 +2013,7,24,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,-1,0,1520,12,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1435,-4,0,1825,1,0,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1640,-5,0,1947,-9,0,0 +2013,4,12,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1915,187,1,2050,169,1,0 +2013,9,24,2,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1610,31,1,1750,38,1,0 +2013,8,25,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1302,38,1,1445,36,1,0 +2013,7,5,5,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,955,-2,0,1545,-7,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1002,2,0,1504,-3,0,0 +2013,4,25,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1127,-1,0,1345,-10,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1129,-6,0,1401,-3,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,6,0,1935,-10,0,0 +2013,4,16,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1130,-8,0,1400,-11,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1556,4,0,1816,-5,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1721,-4,0,1923,-17,0,0 +2013,7,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1359,-3,0,1452,-9,0,0 +2013,8,3,6,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1615,105,1,1755,102,1,0 +2013,5,10,5,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1142,13,0,1416,0,0,0 +2013,5,20,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-3,0,811,-4,0,0 +2013,6,29,6,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1356,2,0,1531,-10,0,0 +2013,8,26,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1659,-6,0,1829,-12,0,0 +2013,6,14,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-7,0,1026,-9,0,0 +2013,7,17,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,600,-3,0,1119,-2,0,0 +2013,9,29,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1145,-7,0,1245,-10,0,0 +2013,7,25,4,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1858,111,1,2159,115,1,0 +2013,4,13,6,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,620,-6,0,752,-14,0,0 +2013,6,11,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,1,0,2039,-21,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,9,0,1747,10,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,-2,0,1405,-12,0,0 +2013,5,19,7,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,800,1,0,1023,-7,0,0 +2013,4,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1850,-10,0,2103,-20,0,0 +2013,10,22,2,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1325,2,0,1830,6,0,0 +2013,7,15,1,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2154,57,1,610,53,1,0 +2013,7,10,3,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,608,0,,736,0,1,1 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1645,13,0,1850,19,1,0 +2013,8,24,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-4,0,1200,-9,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,18,1,1405,4,0,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1320,5,0,1625,11,0,0 +2013,9,21,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,900,-1,0,1235,-8,0,0 +2013,9,13,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,735,-2,0,1035,-5,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-5,0,1023,-11,0,0 +2013,10,5,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1250,-4,0,1415,5,0,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2210,-6,0,30,-20,0,0 +2013,4,26,5,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1222,19,1,1305,25,1,0 +2013,5,17,5,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,0,0,1750,-11,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,4,0,910,7,0,0 +2013,5,28,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1440,-4,0,1648,-5,0,0 +2013,7,9,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,852,-3,0,1205,16,1,0 +2013,6,5,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-6,0,830,-12,0,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,10,0,2240,5,0,0 +2013,10,5,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,840,1,0,1135,-5,0,0 +2013,10,16,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1210,-1,0,1320,-15,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,705,-5,0,819,-17,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,9,0,1132,38,1,0 +2013,9,13,5,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1234,121,1,1646,114,1,0 +2013,5,6,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,18,1,1605,8,0,0 +2013,7,15,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,18,1,2000,7,0,0 +2013,8,21,3,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1440,-3,0,2233,14,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1055,-3,0,1251,-23,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,905,3,0,1008,2,0,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,10,0,1137,2,0,0 +2013,10,21,1,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,4,0,1230,-7,0,0 +2013,6,25,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,19,1,2205,19,1,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,945,-1,0,1100,-3,0,0 +2013,9,16,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,625,-3,0,725,-4,0,0 +2013,8,26,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1805,7,0,0 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1835,14,0,2105,6,0,0 +2013,7,12,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,-1,0,1810,-22,0,0 +2013,7,5,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-2,0,1850,-11,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-5,0,1438,-15,0,0 +2013,7,3,3,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1120,-1,0,1502,13,0,0 +2013,7,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1120,29,1,1210,21,1,0 +2013,9,20,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,745,-12,0,1020,-21,0,0 +2013,6,11,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,29,1,1535,5,0,0 +2013,9,22,7,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,829,-8,0,1006,-5,0,0 +2013,8,26,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2220,-3,0,605,-17,0,0 +2013,7,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1359,5,0,1551,-10,0,0 +2013,8,25,7,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1432,-9,0,1610,-28,0,0 +2013,10,2,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,-8,0,1708,-11,0,0 +2013,4,26,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1419,65,1,1625,76,1,0 +2013,7,19,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-4,0,1635,-14,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1736,6,0,1926,-3,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1210,-4,0,1301,-16,0,0 +2013,10,25,5,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,805,-5,0,1044,-7,0,0 +2013,9,10,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,6,0,1918,1,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1338,156,1,2218,161,1,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,714,-2,0,1108,-14,0,0 +2013,7,23,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1707,-15,0,0 +2013,7,29,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,-4,0,2355,-7,0,0 +2013,5,1,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-8,0,738,-21,0,0 +2013,5,8,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1352,-1,0,1537,-15,0,0 +2013,6,10,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1718,0,0,1819,-12,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1350,-2,0,2110,-18,0,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,2,0,957,7,0,0 +2013,10,1,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1837,-11,0,2057,-14,0,0 +2013,10,10,4,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1633,0,0,2020,-13,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1510,120,1,1950,108,1,0 +2013,10,22,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-6,0,1348,-8,0,0 +2013,10,8,2,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1420,-2,0,2225,-4,0,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,915,21,1,1025,14,0,0 +2013,7,25,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-6,0,705,-11,0,0 +2013,5,4,6,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1720,-5,0,1939,5,0,0 +2013,5,27,1,F9,14122,Pittsburgh International,Pittsburgh,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-15,0,2037,-17,0,0 +2013,5,5,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1735,-2,0,1905,7,0,0 +2013,7,8,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,1,0,1200,-19,0,0 +2013,5,24,5,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,69,1,1749,117,1,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1100,4,0,1240,-10,0,0 +2013,9,23,1,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1910,22,1,2235,12,0,0 +2013,4,14,7,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,25,1,1700,3,0,0 +2013,7,17,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-5,0,820,3,0,0 +2013,9,13,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,-6,0,1905,-15,0,0 +2013,9,15,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-8,0,2129,-9,0,0 +2013,10,6,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1655,-1,0,1755,3,0,0 +2013,5,6,1,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1710,-3,0,1858,-15,0,0 +2013,8,6,2,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-4,0,1543,-5,0,0 +2013,8,20,2,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1700,-7,0,1934,-30,0,0 +2013,10,23,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2014,-9,0,2104,13,0,0 +2013,9,29,7,AA,10529,Bradley International,Hartford,CT,12892,Los Angeles International,Los Angeles,CA,920,-2,0,1235,-39,0,0 +2013,4,8,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2025,-5,0,2255,-6,0,0 +2013,6,25,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1750,64,1,1910,53,1,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1655,2,0,1955,13,0,0 +2013,10,16,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1220,1,0,1415,-7,0,0 +2013,6,14,5,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,635,7,0,755,-2,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,935,0,0,1207,4,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,7,0,2203,3,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2105,-3,0,2215,-4,0,0 +2013,8,5,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,1,0,1859,6,0,0 +2013,9,19,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,14,0,1640,0,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1826,353,1,2027,316,1,0 +2013,4,3,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1600,26,1,1632,26,1,0 +2013,9,15,7,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2045,-13,0,2150,-18,0,0 +2013,4,11,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-2,0,920,-5,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-5,0,2154,-5,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,4,0,1215,11,0,0 +2013,4,19,5,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1114,-8,0,1303,8,0,0 +2013,7,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-2,0,905,-7,0,0 +2013,4,1,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-9,0,745,-30,0,0 +2013,8,6,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,-7,0,833,-12,0,0 +2013,6,11,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1140,-3,0,1428,-9,0,0 +2013,4,15,1,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1945,-6,0,2135,-18,0,0 +2013,5,13,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,2030,31,1,2227,40,1,0 +2013,8,5,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1301,-10,0,1502,-15,0,0 +2013,7,9,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,758,-6,0,834,0,0,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,-5,0,1725,-3,0,0 +2013,6,22,6,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-8,0,2109,-21,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,219,1,1642,225,1,0 +2013,5,23,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1630,14,0,1801,54,1,0 +2013,7,13,6,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,730,218,1,953,222,1,0 +2013,6,24,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2150,116,1,100,73,1,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1040,1,0,1310,8,0,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-5,0,955,-8,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1142,-3,0,1347,-13,0,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,-7,0,2345,-11,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-1,0,1906,-16,0,0 +2013,9,8,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1110,-4,0,1300,-24,0,0 +2013,10,18,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2004,-1,0,2115,-11,0,0 +2013,4,21,7,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,941,-3,0,1047,-9,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,750,12,0,1210,-5,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1440,3,0,1810,-13,0,0 +2013,5,21,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,3,0,2118,-8,0,0 +2013,4,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1600,-1,0,2004,-21,0,0 +2013,10,22,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-12,0,919,-20,0,0 +2013,8,9,5,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1826,31,1,2059,12,0,0 +2013,8,19,1,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1904,28,1,2150,12,0,0 +2013,6,19,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1901,-1,0,2139,-7,0,0 +2013,6,22,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1513,-2,0,1738,2,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,847,-1,0,1037,6,0,0 +2013,4,18,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1713,56,1,2032,71,1,0 +2013,7,15,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1804,2,0,1925,-2,0,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,2,0,1841,33,1,0 +2013,6,22,6,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1008,-3,0,1220,-5,0,0 +2013,10,18,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1500,-2,0,1849,-25,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1935,-3,0,2325,-19,0,0 +2013,6,25,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,800,-14,0,0 +2013,7,25,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,10,0,1214,25,1,0 +2013,8,19,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1805,-7,0,1820,8,0,0 +2013,10,23,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1618,-9,0,1938,-4,0,0 +2013,8,23,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,27,1,1316,25,1,0 +2013,7,12,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,653,-1,0,754,0,0,0 +2013,5,23,4,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,816,6,0,930,-2,0,0 +2013,7,24,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-6,0,2131,-13,0,0 +2013,6,17,1,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,920,-4,0,1010,-4,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,930,0,0,1200,-6,0,0 +2013,8,6,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-3,0,725,2,0,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-11,0,1757,61,1,0 +2013,4,27,6,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,925,-5,0,1210,-15,0,0 +2013,6,28,5,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1805,208,1,2045,194,1,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,820,5,0,1055,-10,0,0 +2013,9,7,6,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1650,0,0,1815,-2,0,0 +2013,5,16,4,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,-6,0,2310,-12,0,0 +2013,7,26,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,0,0,2005,0,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,705,-1,0,830,-11,0,0 +2013,10,12,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,635,-1,0,820,-12,0,0 +2013,7,22,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1515,1,0,1755,-20,0,0 +2013,10,8,2,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,603,-1,0,904,-8,0,0 +2013,9,28,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,610,-4,0,724,-15,0,0 +2013,5,16,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,835,8,0,945,9,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1937,75,1,2041,81,1,0 +2013,5,20,1,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1245,28,1,1533,8,0,0 +2013,9,3,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,0,0,1300,-10,0,0 +2013,7,1,1,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1052,4,0,1132,8,0,0 +2013,8,6,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,644,-6,0,1024,-4,0,0 +2013,9,9,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-4,0,750,-13,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1513,64,1,1715,53,1,0 +2013,10,8,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,700,0,,823,0,1,1 +2013,10,8,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-9,0,1538,-4,0,0 +2013,4,12,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,82,1,1155,83,1,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,724,0,0,1029,-2,0,0 +2013,6,25,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1400,11,0,1440,1,0,0 +2013,6,18,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1015,3,0,1207,13,0,0 +2013,5,8,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1829,26,1,2035,55,1,0 +2013,9,4,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-11,0,2210,-50,0,0 +2013,9,28,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-8,0,710,-5,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-1,0,1940,-19,0,0 +2013,4,15,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1004,3,0,0 +2013,6,9,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1810,3,0,1959,8,0,0 +2013,6,6,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,10,0,1425,1,0,0 +2013,4,25,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-1,0,1154,-12,0,0 +2013,8,27,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1541,-1,0,1809,16,1,0 +2013,6,11,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1831,24,1,2004,38,1,0 +2013,6,25,2,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,19,1,1740,8,0,0 +2013,7,30,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1015,4,0,1216,-3,0,0 +2013,6,4,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-7,0,1858,-7,0,0 +2013,5,19,7,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,740,15,1,1020,5,0,0 +2013,9,23,1,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,-1,0,1830,-18,0,0 +2013,4,4,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1125,-2,0,1418,-4,0,0 +2013,8,26,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2005,13,0,2103,12,0,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1030,-4,0,1139,-7,0,0 +2013,7,18,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,7,0,1310,0,0,0 +2013,10,29,2,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,-5,0,1205,-21,0,0 +2013,5,13,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,13,0,1900,1,0,0 +2013,7,30,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,840,2,0,1110,7,0,0 +2013,4,7,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1717,-7,0,1908,-8,0,0 +2013,10,10,4,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,915,-3,0,1115,1,0,0 +2013,6,24,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1207,3,0,1331,6,0,0 +2013,10,7,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,0,0,920,-4,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1655,19,1,2025,28,1,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,21,1,1035,8,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,47,1,2120,49,1,0 +2013,5,3,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-6,0,1519,42,1,0 +2013,6,7,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1103,22,1,1640,33,1,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1105,-2,0,1245,2,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1320,31,1,1650,31,1,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1425,29,1,1551,26,1,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,9,0,1050,-6,0,0 +2013,10,3,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-12,0,2057,-14,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,920,-2,0,1350,-17,0,0 +2013,9,2,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,740,-1,0,855,-4,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,-10,0,2259,1,0,0 +2013,8,1,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1708,93,1,1830,92,1,0 +2013,9,19,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1652,-3,0,1747,-6,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2305,157,1,2333,143,1,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-6,0,1417,-4,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,11,0,2315,2,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2140,-5,0,515,-7,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1700,29,1,2020,56,1,0 +2013,10,10,4,9E,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1045,-7,0,1217,-8,0,0 +2013,6,2,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1021,-2,0,1135,-13,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,-8,0,1009,-28,0,0 +2013,10,25,5,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-5,0,1305,-13,0,0 +2013,9,2,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,7,0,1315,-6,0,0 +2013,5,26,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1655,1,0,1805,-5,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1315,109,1,1530,116,1,0 +2013,6,8,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,832,-1,0,1032,-8,0,0 +2013,6,5,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2141,-2,0,2326,-12,0,0 +2013,5,1,3,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1046,-8,0,1205,-26,0,0 +2013,4,22,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1118,238,1,1239,219,1,0 +2013,7,19,5,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,710,6,0,1300,-9,0,0 +2013,8,20,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,0,0,900,-5,0,0 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,-3,0,1735,15,1,0 +2013,9,20,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1434,-3,0,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,15016,Lambert-St. Louis International,St. Louis,MO,1310,160,1,1835,162,1,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1305,-4,0,1453,-27,0,0 +2013,8,18,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,949,-4,0,1105,4,0,0 +2013,10,23,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,11,0,1615,7,0,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2141,-5,0,2237,-2,0,0 +2013,4,25,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1520,-1,0,1725,0,0,0 +2013,4,16,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-9,0,1225,-14,0,0 +2013,9,20,5,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-6,0,1520,-2,0,0 +2013,9,20,5,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,85,1,2000,74,1,0 +2013,8,6,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,0,,1705,0,1,1 +2013,8,23,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-5,0,1522,0,0,0 +2013,6,3,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-4,0,2305,-10,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1010,-2,0,1255,-3,0,0 +2013,4,28,7,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,718,-6,0,1002,0,0,0 +2013,4,10,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,10,0,2100,26,1,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-3,0,1536,1,0,0 +2013,4,25,4,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1059,-12,0,1422,-32,0,0 +2013,7,20,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1734,-5,0,1940,-10,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,31,1,1740,44,1,0 +2013,5,30,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,0,,1920,0,1,1 +2013,5,15,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-3,0,745,-13,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-4,0,1321,-8,0,0 +2013,6,25,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,9,0,1600,-4,0,0 +2013,8,19,1,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1935,-12,0,2159,-19,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2150,-4,0,2258,-29,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,3,0,2135,-5,0,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,-4,0,2145,-9,0,0 +2013,5,29,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2045,28,1,2200,16,1,0 +2013,7,2,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,621,32,1,1149,8,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1300,21,1,1435,7,0,0 +2013,5,7,2,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-5,0,1633,-22,0,0 +2013,10,4,5,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,-1,0,1230,-7,0,0 +2013,5,22,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-5,0,740,20,1,0 +2013,9,29,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-6,0,543,-10,0,0 +2013,4,23,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,-5,0,2110,-8,0,0 +2013,10,20,7,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1417,-6,0,1721,-16,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,5,0,1430,-9,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1225,-4,0,1455,-16,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,12,0,2152,4,0,0 +2013,4,10,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1113,-5,0,1415,-16,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,-2,0,1115,2,0,0 +2013,5,31,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,705,-4,0,1050,-19,0,0 +2013,5,17,5,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,950,-10,0,1205,-5,0,0 +2013,6,24,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,6,0,1216,-4,0,0 +2013,4,17,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1040,-3,0,1305,-14,0,0 +2013,5,3,5,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,-9,0,1858,-18,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,-2,0,1036,-7,0,0 +2013,6,24,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1325,106,1,1450,104,1,0 +2013,7,3,3,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1029,0,0,1309,-1,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1500,12,0,1835,0,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,740,-8,0,920,-10,0,0 +2013,6,19,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1625,-7,0,1935,-13,0,0 +2013,8,31,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,710,-4,0,820,-11,0,0 +2013,7,26,5,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,-9,0,1508,-8,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,720,-3,0,1153,-8,0,0 +2013,7,27,6,DL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1230,-7,0,1418,-25,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1340,-4,0,1347,-9,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,9,0,1605,36,1,0 +2013,6,13,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,20,1,530,25,1,0 +2013,6,15,6,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-1,0,1955,-5,0,0 +2013,8,12,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-7,0,810,-26,0,0 +2013,6,4,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1659,27,1,1817,19,1,0 +2013,10,14,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1810,12,0,1900,22,1,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-7,0,1430,-5,0,0 +2013,10,18,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1815,-1,0,1905,-5,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1720,0,,2010,0,1,1 +2013,5,14,2,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1715,6,0,1938,-5,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,204,1,2215,196,1,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,945,-5,0,1359,3,0,0 +2013,7,12,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-3,0,651,10,0,0 +2013,5,10,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1732,-2,0,1927,-7,0,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1315,-3,0,1610,-20,0,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2150,-3,0,2320,-2,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,840,1,0,1030,-4,0,0 +2013,7,5,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-2,0,1020,-14,0,0 +2013,4,7,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,735,7,0,1006,1,0,0 +2013,5,6,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1650,2,0,1740,-9,0,0 +2013,8,21,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-3,0,2130,-5,0,0 +2013,5,9,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1202,-7,0,1500,-14,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1311,2,0,1609,-14,0,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1205,-9,0,1514,-6,0,0 +2013,4,12,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-12,0,1045,-16,0,0 +2013,8,16,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,13,0,1624,36,1,0 +2013,5,3,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-3,0,1011,1,0,0 +2013,9,23,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,820,3,0,945,0,0,0 +2013,4,27,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1005,-3,0,1351,-2,0,0 +2013,6,30,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1135,14,0,1235,9,0,0 +2013,6,15,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1225,-9,0,1310,-13,0,0 +2013,7,21,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,-4,0,1643,-9,0,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2015,-3,0,2115,-4,0,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1745,-6,0,1937,-13,0,0 +2013,8,20,2,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1111,-4,0,1235,-16,0,0 +2013,5,7,2,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2009,-7,0,2148,-17,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,-3,0,1438,-14,0,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1602,41,1,1744,25,1,0 +2013,5,29,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-9,0,1540,-2,0,0 +2013,5,19,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,-3,0,2040,-3,0,0 +2013,10,10,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1230,-6,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1949,-7,0,2115,13,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,750,-1,0,915,-8,0,0 +2013,10,30,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1510,3,0,1645,17,1,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1051,-5,0,1119,-18,0,0 +2013,9,6,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1625,0,0,1720,3,0,0 +2013,8,29,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1117,-11,0,1312,14,0,0 +2013,6,2,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1750,0,,2030,0,1,1 +2013,10,10,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,5,0,1400,2,0,0 +2013,7,7,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,-6,0,1853,32,1,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-1,0,900,-13,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-8,0,1308,-19,0,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-7,0,1227,1,0,0 +2013,7,4,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-10,0,1254,-12,0,0 +2013,8,29,4,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1415,-6,0,1605,1,0,0 +2013,8,24,6,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1359,-1,0,1615,-2,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1742,18,1,1908,1,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1930,2,0,2050,10,0,0 +2013,4,29,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,930,-4,0,1055,-23,0,0 +2013,9,5,4,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1709,92,1,1904,78,1,0 +2013,10,25,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,922,-6,0,0 +2013,4,2,2,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,745,11,0,1024,4,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,3,0,2125,-28,0,0 +2013,7,8,1,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1420,-6,0,1551,-18,0,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,635,44,1,846,37,1,0 +2013,7,30,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,2,0,1155,-9,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1420,11,0,1600,10,0,0 +2013,8,16,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1440,-10,0,1613,-18,0,0 +2013,9,1,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-6,0,614,-16,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1915,-2,0,2015,-15,0,0 +2013,7,10,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1725,37,1,1835,32,1,0 +2013,8,22,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,0,0,2050,-5,0,0 +2013,8,24,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-4,0,1322,-30,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,900,-3,0,1145,-12,0,0 +2013,6,24,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1015,20,1,1135,14,0,0 +2013,6,11,2,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,16,1,2305,3,0,0 +2013,9,27,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,9,0,14,-7,0,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,745,-6,0,915,-12,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,104,1,1425,95,1,0 +2013,8,1,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,902,-3,0,1116,-15,0,0 +2013,5,2,4,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1710,-11,0,1930,-21,0,0 +2013,6,12,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-3,0,1126,-17,0,0 +2013,6,28,5,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,618,-10,0,1215,-26,0,0 +2013,7,1,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,12,0,1000,-3,0,0 +2013,4,8,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1831,-1,0,2203,-6,0,0 +2013,8,1,4,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,-6,0,1000,-22,0,0 +2013,5,22,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,-1,0,1636,-9,0,0 +2013,8,29,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,4,0,1213,54,1,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,5,0,2255,0,0,0 +2013,4,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-1,0,1332,-16,0,0 +2013,9,10,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,2,0,2050,5,0,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,18,1,2057,10,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,11,0,1540,-3,0,0 +2013,9,29,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,2,0,1636,-18,0,0 +2013,4,14,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1009,1,0,1135,-10,0,0 +2013,5,31,5,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,2,0,1810,-14,0,0 +2013,7,12,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-4,0,1254,4,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,6,0,1235,9,0,0 +2013,7,8,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1600,0,,1704,0,1,1 +2013,6,24,1,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,2025,74,1,2248,92,1,0 +2013,9,17,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-2,0,1244,-16,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-2,0,1850,-19,0,0 +2013,9,12,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1535,2,0,1816,19,1,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,-5,0,1440,-44,0,0 +2013,9,13,5,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,822,13,0,1143,-11,0,0 +2013,10,31,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1432,-3,0,1820,0,0,0 +2013,6,5,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1805,-5,0,2055,-14,0,0 +2013,8,21,3,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1005,-3,0,1215,-12,0,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1555,16,1,1710,11,0,0 +2013,7,9,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-9,0,1557,-13,0,0 +2013,6,9,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1107,-3,0,1650,-5,0,0 +2013,5,21,2,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1715,37,1,1925,24,1,0 +2013,10,17,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1038,31,1,1436,15,1,0 +2013,5,17,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1940,11,0,2114,-4,0,0 +2013,8,14,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,718,-4,0,900,26,1,0 +2013,6,25,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1127,-1,0,1216,14,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1935,58,1,55,71,1,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,-5,0,2329,-24,0,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,-4,0,1353,-13,0,0 +2013,10,22,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1707,-8,0,2218,-25,0,0 +2013,7,29,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1226,-8,0,1343,-13,0,0 +2013,6,20,4,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,-1,0,745,-9,0,0 +2013,4,22,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,618,-10,0,650,7,0,0 +2013,7,17,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1525,-1,0,1650,5,0,0 +2013,8,30,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-5,0,843,19,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2050,-1,0,2214,-22,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1129,-4,0,1223,-14,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,-2,0,2040,-13,0,0 +2013,5,22,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,0,0,601,-12,0,0 +2013,10,14,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1123,-12,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1849,65,1,2037,78,1,0 +2013,7,9,2,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1714,21,1,2053,31,1,0 +2013,8,30,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,615,0,,730,0,1,1 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1140,15,1,1540,3,0,0 +2013,10,26,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,835,-6,0,1012,-16,0,0 +2013,4,13,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1440,-2,0,1610,-16,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1606,168,1,1900,224,1,0 +2013,7,9,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,713,-5,0,1120,-9,0,0 +2013,8,2,5,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1505,-5,0,1600,0,0,0 +2013,5,4,6,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-9,0,1124,-32,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1615,95,1,1832,114,1,0 +2013,10,10,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1402,173,1,1529,180,1,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1045,-2,0,1210,-7,0,0 +2013,7,31,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1129,18,1,1329,15,1,0 +2013,10,3,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1334,-18,0,0 +2013,10,12,6,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1540,285,1,1835,259,1,0 +2013,4,9,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,-4,0,2156,-12,0,0 +2013,4,11,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1935,-7,0,2111,-21,0,0 +2013,10,11,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1805,48,1,2030,42,1,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1520,-3,0,2305,-5,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2135,96,1,5,84,1,0 +2013,6,5,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-2,0,1820,-6,0,0 +2013,9,16,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1911,-5,0,2024,-6,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,-5,0,1400,-20,0,0 +2013,6,5,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,615,-2,0,848,-3,0,0 +2013,6,29,6,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-1,0,805,-6,0,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1605,34,1,1720,29,1,0 +2013,5,25,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,-7,0,815,-1,0,0 +2013,9,11,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1715,-13,0,2235,-20,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,640,-6,0,1025,-8,0,0 +2013,7,20,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,17,1,1401,21,1,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1340,4,0,1555,-10,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,937,31,1,1214,25,1,0 +2013,9,16,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,-5,0,1935,-9,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,27,1,1408,34,1,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,800,1,0,905,8,0,0 +2013,10,6,7,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1320,9,0,1515,44,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1736,32,1,1914,24,1,0 +2013,6,21,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,-2,0,1445,-16,0,0 +2013,6,25,2,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1500,80,1,1645,71,1,0 +2013,10,16,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2140,-11,0,2250,-6,0,0 +2013,7,18,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,1,0,1526,-3,0,0 +2013,9,22,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,15,1,1615,6,0,0 +2013,5,17,5,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1327,9,0,1545,18,1,0 +2013,10,3,4,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,1,0,1808,5,0,0 +2013,7,8,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,20,0,,815,0,1,1 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,545,1,0,1110,-13,0,0 +2013,5,22,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-4,0,2045,-19,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,-6,0,2035,-5,0,0 +2013,4,1,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1405,2,0,1756,17,1,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,930,18,1,1020,11,0,0 +2013,5,5,7,EV,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,4,0,1949,25,1,0 +2013,6,12,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1637,17,1,1958,-4,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1755,-1,0,1915,-11,0,0 +2013,6,21,5,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,955,-6,0,1215,-4,0,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1805,3,0,1915,-2,0,0 +2013,8,30,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-6,0,1340,0,0,0 +2013,8,14,3,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1615,53,1,1825,44,1,0 +2013,4,30,2,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,915,-10,0,1738,-5,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-1,0,923,-7,0,0 +2013,7,9,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,840,5,0,1020,-16,0,0 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-8,0,2302,-19,0,0 +2013,9,6,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-4,0,900,2,0,0 +2013,8,13,2,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1845,37,1,2250,-2,0,0 +2013,4,17,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1300,-8,0,1335,8,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1055,0,0,1226,-1,0,0 +2013,10,3,4,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,655,0,0,905,-5,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,0,0,1805,-6,0,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,735,71,1,1010,64,1,0 +2013,8,10,6,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,630,-2,0,940,-5,0,0 +2013,7,25,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1905,-9,0,2140,-28,0,0 +2013,9,12,4,AA,10529,Bradley International,Hartford,CT,12892,Los Angeles International,Los Angeles,CA,920,-5,0,1235,-4,0,0 +2013,9,21,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,6,0,1600,-13,0,0 +2013,8,10,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,-2,0,1558,-12,0,0 +2013,9,2,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1657,-9,0,0 +2013,9,5,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-5,0,2005,-31,0,0 +2013,10,10,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,32,1,2115,29,1,0 +2013,5,21,2,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,746,12,0,919,4,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,-2,0,1658,-20,0,0 +2013,9,18,3,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,1,0,1736,-3,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1000,-5,0,1123,6,0,0 +2013,6,1,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,755,-2,0,1050,-3,0,0 +2013,4,9,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,600,-1,0,843,-8,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-4,0,924,-9,0,0 +2013,10,7,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-4,0,2102,-13,0,0 +2013,9,14,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-3,0,1003,-11,0,0 +2013,8,30,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1630,-4,0,1805,-30,0,0 +2013,4,23,2,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,-5,0,1451,9,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,820,2,0,1250,-5,0,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,-2,0,2056,42,1,0 +2013,9,3,2,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1500,-9,0,1625,-28,0,0 +2013,9,11,3,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,98,1,1955,85,1,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2120,-4,0,2220,-3,0,0 +2013,6,1,6,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,1820,-2,0,1920,-14,0,0 +2013,4,13,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1605,-3,0,1710,-15,0,0 +2013,10,29,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1327,-2,0,1621,-18,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2111,6,0,2218,-9,0,0 +2013,9,27,5,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1120,-4,0,1638,-6,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-1,0,1240,-10,0,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1805,30,1,2128,24,1,0 +2013,7,29,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,-3,0,720,-8,0,0 +2013,8,30,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1139,49,1,1429,48,1,0 +2013,7,29,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1949,164,1,2100,155,1,0 +2013,8,12,1,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,630,0,0,1235,2,0,0 +2013,9,19,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1345,-5,0,1636,16,1,0 +2013,4,4,4,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1928,-5,0,2047,-2,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-2,0,1224,-15,0,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,2,0,1445,2,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,725,-2,0,1020,-11,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,27,1,2257,6,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1705,6,0,1820,12,0,0 +2013,7,25,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,3,0,1020,12,0,0 +2013,8,11,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,0,0,1524,-13,0,0 +2013,8,17,6,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1030,1,0,1200,6,0,0 +2013,4,16,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,1612,-9,0,1714,-13,0,0 +2013,8,31,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1249,31,1,1422,24,1,0 +2013,5,29,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,3,0,1155,4,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,815,-3,0,930,-10,0,0 +2013,9,21,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1030,22,1,1314,5,0,0 +2013,10,7,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2050,31,1,2205,18,1,0 +2013,9,2,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-3,0,1517,-10,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,855,-4,0,918,-2,0,0 +2013,6,13,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,-3,0,903,-35,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1640,55,1,2002,71,1,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1350,1,0,1503,-13,0,0 +2013,9,25,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,-7,0,2135,-24,0,0 +2013,7,24,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1330,0,0,1425,-5,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-3,0,900,-11,0,0 +2013,9,14,6,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1631,0,0,1757,32,1,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,625,4,0,855,-35,0,0 +2013,10,12,6,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,937,-1,0,1132,-2,0,0 +2013,7,15,1,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,-1,0,1735,-17,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-4,0,1031,-4,0,0 +2013,10,22,2,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,0,0,1050,-5,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2315,6,0,518,-12,0,0 +2013,9,18,3,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,2,0,1035,0,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1855,3,0,2110,-6,0,0 +2013,4,13,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-2,0,852,-14,0,0 +2013,10,7,1,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1115,-9,0,1232,20,1,0 +2013,6,10,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1955,117,1,2143,111,1,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1145,11,0,1720,4,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1100,-3,0,1227,-4,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1758,-3,0,1931,-2,0,0 +2013,10,13,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1530,10,0,1655,3,0,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1610,-2,0,1800,-17,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1915,93,1,2216,104,1,0 +2013,4,3,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1719,17,1,2049,3,0,0 +2013,5,9,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1808,-4,0,2015,7,0,0 +2013,7,22,1,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1000,-2,0,1145,-15,0,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,755,-5,0,959,-27,0,0 +2013,7,12,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,715,0,0,730,7,0,0 +2013,4,16,2,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,645,-6,0,805,-7,0,0 +2013,8,5,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,830,-2,0,1000,-11,0,0 +2013,7,25,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1434,-9,0,1640,-20,0,0 +2013,6,5,3,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1629,-4,0,1939,-46,0,0 +2013,5,30,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,-5,0,1738,-15,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,0,0,1430,2,0,0 +2013,4,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,-3,0,1634,13,0,0 +2013,6,17,1,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1840,-2,0,1921,11,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,2,0,1438,0,0,0 +2013,5,14,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,730,-18,0,0 +2013,5,14,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,645,-10,0,808,-15,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1000,-1,0,1125,-10,0,0 +2013,4,18,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1236,-4,0,1431,-4,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,839,-3,0,1645,-13,0,0 +2013,10,8,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1055,-18,0,0 +2013,7,25,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,730,-7,0,921,-2,0,0 +2013,6,18,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,8,0,2025,4,0,0 +2013,4,30,2,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1220,1,0,1401,-8,0,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,613,-7,0,728,-15,0,0 +2013,6,13,4,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1921,-2,0,44,0,0,0 +2013,7,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-5,0,1024,7,0,0 +2013,7,5,5,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,-3,0,1315,-4,0,0 +2013,7,8,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1130,7,0,1349,6,0,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2015,-6,0,2320,-15,0,0 +2013,9,28,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,-3,0,1837,-3,0,0 +2013,9,17,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,610,-3,0,735,-3,0,0 +2013,6,7,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,936,-2,0,0 +2013,9,19,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1347,-10,0,1556,-18,0,0 +2013,10,31,4,WN,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,0,0,1445,-6,0,0 +2013,9,4,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,722,-14,0,0 +2013,9,28,6,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,2240,-4,0,616,-28,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,-4,0,915,-14,0,0 +2013,7,4,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2016,10,0,2251,0,0,0 +2013,9,5,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-10,0,858,-26,0,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,-5,0,1125,-15,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1505,5,0,1620,-2,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1835,10,0,2115,-5,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,29,1,2319,19,1,0 +2013,7,23,2,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1541,5,0,1729,-7,0,0 +2013,6,19,3,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,740,26,1,1601,15,1,0 +2013,5,28,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,-4,0,815,-9,0,0 +2013,4,22,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,0,0,740,-2,0,0 +2013,10,10,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,4,0,2155,-6,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-5,0,1823,-1,0,0 +2013,7,9,2,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-3,0,855,-23,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1800,18,1,2002,-9,0,0 +2013,7,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,5,0,1405,-2,0,0 +2013,6,18,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1430,19,1,1944,4,0,0 +2013,4,8,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-3,0,1918,-8,0,0 +2013,9,29,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1829,30,1,2122,37,1,0 +2013,6,22,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1530,40,1,1640,47,1,0 +2013,5,18,6,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1050,-3,0,1215,-10,0,0 +2013,9,10,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1119,-15,0,0 +2013,8,2,5,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2153,-2,0,105,-5,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,16,1,2045,8,0,0 +2013,8,4,7,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,17,1,1218,7,0,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1440,12,0,1800,18,1,0 +2013,7,13,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1519,-3,0,1650,-28,0,0 +2013,5,9,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1140,1,0,1310,-15,0,0 +2013,5,23,4,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,953,-3,0,1445,4,0,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-6,0,2312,-2,0,0 +2013,8,19,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1705,-2,0,1830,-5,0,0 +2013,5,7,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,2005,-11,0,2200,-18,0,0 +2013,7,21,7,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1317,0,,1420,0,1,1 +2013,10,1,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,1355,-4,0,0 +2013,5,22,3,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,17,1,1950,6,0,0 +2013,10,23,3,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,930,-7,0,1117,-20,0,0 +2013,4,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1310,84,1,1410,96,1,0 +2013,4,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,2035,-3,0,2241,-27,0,0 +2013,10,21,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,11,0,1800,8,0,0 +2013,10,14,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-3,0,1709,-4,0,0 +2013,4,7,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1801,8,0,1925,12,0,0 +2013,7,6,6,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,648,-6,0,818,6,0,0 +2013,7,16,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,55,1,1905,68,1,0 +2013,10,23,3,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,655,-3,0,1255,-15,0,0 +2013,5,11,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,730,-2,0,1330,8,0,0 +2013,9,21,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-6,0,2137,-13,0,0 +2013,5,28,2,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,-3,0,1355,-8,0,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,2,0,950,-17,0,0 +2013,9,28,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-7,0,1749,-18,0,0 +2013,9,21,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1835,-2,0,2124,-10,0,0 +2013,4,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1358,-2,0,1424,-3,0,0 +2013,9,23,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1743,10,0,2008,-6,0,0 +2013,6,27,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,105,1,1040,103,1,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,1,0,1448,-7,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2040,23,1,2340,2,0,0 +2013,4,27,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,849,-4,0,1359,-21,0,0 +2013,8,9,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-8,0,2117,-2,0,0 +2013,9,20,5,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-1,0,912,-4,0,0 +2013,4,7,7,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1855,5,0,2240,31,1,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1710,73,1,1821,62,1,0 +2013,8,20,2,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,804,-4,0,918,-18,0,0 +2013,9,26,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2140,-3,0,2159,-19,0,0 +2013,8,6,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1742,59,1,1805,56,1,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-4,0,1505,-2,0,0 +2013,6,24,1,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,92,1,1856,82,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1051,-1,0,1137,-5,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,850,-6,0,955,-16,0,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,-4,0,2130,0,0,0 +2013,6,10,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,648,-2,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1002,-5,0,1252,-12,0,0 +2013,9,27,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2140,-5,0,2219,-11,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1650,7,0,2200,1,0,0 +2013,4,22,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-7,0,827,-12,0,0 +2013,6,7,5,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1835,68,1,2120,47,1,0 +2013,5,29,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,-5,0,1650,-12,0,0 +2013,6,26,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1930,143,1,2050,139,1,0 +2013,6,29,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1625,1,0,1735,-5,0,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1521,24,1,1619,89,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,745,0,0,1120,-6,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,5,0,1445,-1,0,0 +2013,7,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-7,0,1633,-10,0,0 +2013,8,19,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,16,1,925,7,0,0 +2013,5,20,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1353,-7,0,1948,5,0,0 +2013,4,19,5,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,23,1,1350,12,0,0 +2013,4,11,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-14,0,2102,-18,0,0 +2013,10,18,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1040,0,,1131,0,1,1 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-4,0,1231,-9,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1114,5,0,1351,-6,0,0 +2013,9,25,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1255,-1,0,2108,-12,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1248,2,0,1446,-3,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1120,7,0,1258,-8,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,0,0,1837,-3,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-7,0,1018,-11,0,0 +2013,10,20,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,2,0,1930,7,0,0 +2013,5,23,4,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1125,-2,0,1336,-2,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,731,-4,0,904,-6,0,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,837,-4,0,1019,-4,0,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1038,0,0,1247,-30,0,0 +2013,9,12,4,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-13,0,911,-3,0,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,810,-1,0,1050,-4,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1705,14,0,1800,7,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1304,-5,0,1449,13,0,0 +2013,8,19,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,613,-2,0,830,14,0,0 +2013,10,2,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-10,0,2041,-18,0,0 +2013,9,22,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,-1,0,1830,-12,0,0 +2013,5,24,5,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,-6,0,743,0,0,0 +2013,9,30,1,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,941,1,0,1229,-6,0,0 +2013,8,31,6,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,623,-4,0,932,-38,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2045,-5,0,2309,-5,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,909,-7,0,1350,-11,0,0 +2013,5,18,6,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,825,-4,0,1311,-5,0,0 +2013,10,10,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1540,4,0,1635,2,0,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,10,0,1300,4,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1455,-5,0,1609,-16,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,740,105,1,931,106,1,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,1,0,1145,9,0,0 +2013,8,18,7,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-4,0,1136,-9,0,0 +2013,8,16,5,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1032,-2,0,1336,-18,0,0 +2013,10,6,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1121,4,0,1248,1,0,0 +2013,7,23,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1335,-5,0,1620,-6,0,0 +2013,8,20,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,825,-2,0,850,8,0,0 +2013,8,8,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14747,Seattle/Tacoma International,Seattle,WA,829,-6,0,1033,-9,0,0 +2013,5,5,7,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1326,-7,0,1830,-12,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1625,6,0,1735,-4,0,0 +2013,5,23,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,34,1,1447,61,1,0 +2013,7,6,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,0,0,628,-16,0,0 +2013,10,20,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1805,17,1,2125,9,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1935,2,0,2225,-8,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,18,1,2247,26,1,0 +2013,6,1,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,826,-1,0,902,-10,0,0 +2013,10,23,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1205,21,1,1511,24,1,0 +2013,4,4,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,12,0,2315,4,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,837,-6,0,901,-13,0,0 +2013,5,14,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1140,0,0,1310,-11,0,0 +2013,4,21,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1415,-4,0,1555,-14,0,0 +2013,4,11,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,940,1,0,1225,-1,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2125,4,0,2220,9,0,0 +2013,4,7,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,-7,0,1913,6,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1514,1,0,1755,-11,0,0 +2013,5,1,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-7,0,1045,-17,0,0 +2013,8,27,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1530,-2,0,1555,-13,0,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1725,-10,0,1945,-17,0,0 +2013,10,29,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1211,-4,0,1341,-16,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,-1,0,1500,-7,0,0 +2013,4,28,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,0,0,1445,-2,0,0 +2013,5,12,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-10,0,1427,-8,0,0 +2013,8,21,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2010,-3,0,2230,-2,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,183,1,1750,164,1,0 +2013,4,17,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1700,-9,0,1735,-3,0,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1305,-3,0,1444,6,0,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2010,116,1,2121,97,1,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,835,5,0,1259,4,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,122,1,2210,100,1,0 +2013,7,20,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1440,-3,0,0 +2013,7,17,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,925,-1,0,1105,-8,0,0 +2013,4,11,4,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,-6,0,1236,-13,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2045,0,,2224,0,1,1 +2013,9,1,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1144,-5,0,1437,-14,0,0 +2013,9,27,5,9E,12953,LaGuardia,New York,NY,12339,Indianapolis International,Indianapolis,IN,1000,-4,0,1231,-9,0,0 +2013,6,27,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1615,102,1,1944,140,1,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1955,5,0,2139,5,0,0 +2013,10,10,4,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-14,0,1230,-26,0,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-10,0,1610,5,0,0 +2013,5,27,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,-8,0,1420,-14,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1740,5,0,2110,-3,0,0 +2013,6,5,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,-6,0,2223,-8,0,0 +2013,8,23,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1758,-9,0,0 +2013,8,26,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1737,38,1,1849,57,1,0 +2013,10,15,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1220,-3,0,1345,-7,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,13,0,1410,8,0,0 +2013,7,29,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,720,37,1,1550,31,1,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,14,0,1430,4,0,0 +2013,5,30,4,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,946,-2,0,1302,8,0,0 +2013,5,6,1,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,3,0,1725,-6,0,0 +2013,7,20,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2325,62,1,525,53,1,0 +2013,8,7,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,27,1,2050,23,1,0 +2013,5,2,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-3,0,2135,-1,0,0 +2013,8,14,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1345,-7,0,1429,-18,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1542,-3,0,1719,-17,0,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2257,-1,0,720,-32,0,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1750,8,0,2135,-12,0,0 +2013,7,14,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1050,-5,0,1353,-19,0,0 +2013,9,19,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1430,66,1,1630,78,1,0 +2013,8,4,7,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,825,-2,0,1104,-11,0,0 +2013,5,28,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1030,10,0,1150,8,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,930,3,0,1130,7,0,0 +2013,9,8,7,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-11,0,1005,-25,0,0 +2013,6,7,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1225,1,0,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1750,1,0,2045,-1,0,0 +2013,8,22,4,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1212,4,0,1328,-5,0,0 +2013,6,14,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-2,0,1817,-12,0,0 +2013,6,6,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-4,0,843,38,1,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1610,-8,0,0 +2013,9,5,4,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1209,-4,0,1749,9,0,0 +2013,10,29,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,0,0,1809,-5,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,939,9,0,1226,13,0,0 +2013,6,26,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,828,-3,0,1109,-8,0,0 +2013,6,1,6,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,-4,0,1550,-5,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,0,0,1335,-5,0,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,1,0,1420,-14,0,0 +2013,7,13,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-5,0,1105,-5,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1254,-7,0,1518,-17,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1740,13,0,1923,8,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1205,-4,0,1451,-41,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1130,1,0,1435,-2,0,0 +2013,5,8,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1005,-8,0,1250,-8,0,0 +2013,9,4,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,600,5,0,750,3,0,0 +2013,5,20,1,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,803,4,0,0 +2013,7,11,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,9,0,1115,12,0,0 +2013,10,16,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-7,0,2051,-14,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1225,-1,0,1510,-1,0,0 +2013,8,14,3,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1805,-10,0,2030,9,0,0 +2013,10,31,4,9E,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1815,7,0,1946,-6,0,0 +2013,9,20,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,700,-5,0,1056,-6,0,0 +2013,8,31,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1215,0,0,1425,21,1,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1115,20,1,1525,7,0,0 +2013,8,29,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1709,-1,0,1925,-19,0,0 +2013,6,19,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-1,0,1820,-5,0,0 +2013,7,18,4,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,7,0,2305,-2,0,0 +2013,5,25,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1047,-14,0,0 +2013,4,13,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,71,1,1120,93,1,0 +2013,10,25,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1318,10,0,1625,9,0,0 +2013,9,23,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2054,13,0,2214,5,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,-1,0,1815,-23,0,0 +2013,9,24,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,533,-6,0,632,2,0,0 +2013,8,18,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1840,-6,0,2134,-14,0,0 +2013,6,1,6,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,14,0,2046,7,0,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1200,13,0,1315,-6,0,0 +2013,6,29,6,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,123,1,1555,115,1,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,0,0,1046,7,0,0 +2013,9,17,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1505,9,0,2110,10,0,0 +2013,7,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1040,6,0,1059,-12,0,0 +2013,9,4,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1627,-6,0,1905,-23,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1732,4,0,1856,-5,0,0 +2013,4,12,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1735,105,1,2007,92,1,0 +2013,5,28,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1900,-8,0,2010,-10,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,625,4,0,1055,-16,0,0 +2013,5,20,1,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,88,1,755,158,1,0 +2013,10,16,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,-3,0,2210,-27,0,0 +2013,5,7,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-7,0,1217,7,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-2,0,1605,-3,0,0 +2013,8,10,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,17,1,1220,11,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,716,1,0,1200,-29,0,0 +2013,4,3,3,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-9,0,1159,-23,0,0 +2013,4,24,3,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-5,0,2102,-6,0,0 +2013,5,5,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-6,0,1120,-5,0,0 +2013,4,9,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,900,-3,0,950,21,1,0 +2013,8,11,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2005,8,0,2115,6,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2030,-5,0,2146,-19,0,0 +2013,10,8,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1350,1,0,2010,-25,0,0 +2013,5,10,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2040,56,1,2200,84,1,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-4,0,1841,13,0,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1220,-2,0,1324,-8,0,0 +2013,8,31,6,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,2,0,1118,-24,0,0 +2013,5,17,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-2,0,1535,-6,0,0 +2013,7,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1430,54,1,2030,66,1,0 +2013,8,27,2,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1025,1,0,1400,-7,0,0 +2013,7,16,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1620,8,0,1728,-1,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,642,-5,0,930,-39,0,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1950,21,1,2055,16,1,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,2,0,1610,-8,0,0 +2013,8,26,1,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,23,1,1818,17,1,0 +2013,7,17,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,916,-2,0,1013,5,0,0 +2013,9,16,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1044,8,0,1225,-7,0,0 +2013,7,20,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,-3,0,1329,-9,0,0 +2013,10,29,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,815,18,1,0 +2013,8,12,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2040,-8,0,2154,-16,0,0 +2013,5,16,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1400,-2,0,1525,-15,0,0 +2013,7,7,7,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1130,0,0,1350,12,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,66,1,1825,64,1,0 +2013,5,18,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-3,0,1805,-18,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1507,-1,0,1618,-4,0,0 +2013,7,15,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1931,25,1,2057,29,1,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,840,-5,0,1102,-22,0,0 +2013,10,11,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,5,0,750,6,0,0 +2013,4,16,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,947,7,0,1448,-8,0,0 +2013,8,10,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-8,0,930,-8,0,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,-4,0,1546,-12,0,0 +2013,5,30,4,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,935,5,0,1115,0,0,0 +2013,5,8,3,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1910,-11,0,2155,-1,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2050,-6,0,2226,-16,0,0 +2013,6,22,6,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1045,-3,0,1310,-5,0,0 +2013,5,16,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1351,36,1,1554,22,1,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,555,-5,0,915,-10,0,0 +2013,10,29,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-9,0,2326,-12,0,0 +2013,4,17,3,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1035,-6,0,1330,-12,0,0 +2013,7,17,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1718,69,1,1940,83,1,0 +2013,9,25,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,48,1,2205,26,1,0 +2013,8,10,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,910,4,0,1018,-8,0,0 +2013,7,27,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,628,-2,0,805,24,1,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,1,0,1445,7,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1930,55,1,2150,49,1,0 +2013,6,15,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,700,-4,0,815,-10,0,0 +2013,10,25,5,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1654,24,1,1934,3,0,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2120,37,1,30,29,1,0 +2013,4,7,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-1,0,1040,-19,0,0 +2013,10,28,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1618,77,1,1938,74,1,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1759,-3,0,2004,-13,0,0 +2013,5,28,2,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1325,-6,0,1615,-23,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,720,16,1,932,23,1,0 +2013,10,15,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1350,-7,0,1445,-10,0,0 +2013,5,21,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,0,,1650,0,1,1 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,1334,6,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,1,0,343,-4,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,1,0,2105,1,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2220,0,0,2321,-16,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,-1,0,5,-12,0,0 +2013,6,9,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-5,0,847,-20,0,0 +2013,6,18,2,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1102,-5,0,1226,-12,0,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,9,0,1643,-8,0,0 +2013,6,9,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,2,0,1342,-5,0,0 +2013,4,23,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1935,-5,0,2230,-17,0,0 +2013,7,12,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1437,199,1,1715,182,1,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1129,-4,0,1405,-17,0,0 +2013,5,28,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,0,0,1055,-10,0,0 +2013,6,19,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1500,1,0,1510,-6,0,0 +2013,6,5,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,-6,0,1816,-15,0,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,2050,5,0,2330,-12,0,0 +2013,10,7,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1115,9,0,1235,11,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-3,0,1015,-11,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-3,0,2015,-15,0,0 +2013,9,20,5,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1020,4,0,1259,5,0,0 +2013,10,18,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,20,1,827,28,1,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,-5,0,1930,-2,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,805,-1,0,845,-8,0,0 +2013,7,1,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1715,88,1,1853,80,1,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1859,-2,0,2103,-9,0,0 +2013,4,3,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-3,0,1944,-1,0,0 +2013,9,19,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2050,10,0,7,-12,0,0 +2013,5,30,4,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1141,5,0,1259,52,1,0 +2013,4,27,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-3,0,1559,-24,0,0 +2013,4,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1415,-5,0,1633,-15,0,0 +2013,7,9,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1549,0,0,1728,6,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1045,0,0,1410,-1,0,0 +2013,4,19,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1150,4,0,1430,-3,0,0 +2013,9,7,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1015,1,0,1030,-5,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,945,-2,0,1040,-22,0,0 +2013,7,13,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,207,1,2233,189,1,0 +2013,9,8,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2135,-6,0,2242,-7,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1906,25,1,2100,43,1,0 +2013,7,7,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1950,-5,0,2100,-15,0,0 +2013,6,4,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,812,7,0,0 +2013,7,11,4,EV,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-12,0,1010,-16,0,0 +2013,5,29,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2050,50,1,2110,47,1,0 +2013,8,17,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1501,0,0,1553,8,0,0 +2013,9,21,6,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,1355,-2,0,1940,-20,0,0 +2013,8,20,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,800,-1,0,1040,0,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1744,15,1,1905,7,0,0 +2013,8,1,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1655,-7,0,1705,-15,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,-2,0,1305,-1,0,0 +2013,5,31,5,YV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1007,-3,0,1135,-14,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2155,41,1,2325,36,1,0 +2013,7,17,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1552,-7,0,1844,-5,0,0 +2013,6,3,1,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-3,0,1125,-1,0,0 +2013,8,28,3,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-2,0,901,-31,0,0 +2013,9,1,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1930,0,0,2100,-4,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,-5,0,1655,6,0,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,-1,0,2224,-30,0,0 +2013,8,26,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2321,-3,0,510,-12,0,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,0,0,1130,-2,0,0 +2013,7,12,5,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1840,162,1,2150,132,1,0 +2013,4,8,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1930,-7,0,2057,-21,0,0 +2013,10,23,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1353,-2,0,2100,-5,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,19,1,2139,-2,0,0 +2013,7,11,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1659,-4,0,1905,-16,0,0 +2013,5,17,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-3,0,753,-2,0,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2155,52,1,2310,58,1,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1225,0,0,1345,-9,0,0 +2013,9,2,1,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2035,4,0,2220,-19,0,0 +2013,9,1,7,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1706,-7,0,1933,20,1,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1130,8,0,1415,-17,0,0 +2013,4,19,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1041,20,1,1635,-5,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2130,-1,0,2320,-10,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1555,-4,0,2055,-15,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,910,30,1,1034,11,0,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,609,-2,0,905,-11,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,3,0,2247,-6,0,0 +2013,9,24,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1320,-2,0,1615,1,0,0 +2013,10,14,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-4,0,940,10,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,36,1,1445,34,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,952,12,0,1331,-1,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1019,7,0,1317,-3,0,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1450,-1,0,1800,0,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,945,29,1,1220,18,1,0 +2013,9,2,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1145,-9,0,1620,-2,0,0 +2013,8,23,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2255,-2,0,619,-9,0,0 +2013,5,13,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,7,0,1759,-14,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,39,1,1315,48,1,0 +2013,10,19,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1845,5,0,2020,-11,0,0 +2013,4,15,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,-2,0,1413,-11,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1010,1,0,1155,3,0,0 +2013,8,8,4,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,89,1,2140,100,1,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,22,1,2135,20,1,0 +2013,5,5,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,10,0,1650,-9,0,0 +2013,7,21,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,630,9,0,1011,5,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1630,45,1,1851,36,1,0 +2013,5,13,1,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,3,0,1633,6,0,0 +2013,8,8,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1242,42,1,1345,34,1,0 +2013,6,5,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1440,25,1,1610,8,0,0 +2013,7,7,7,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,630,-2,0,900,-6,0,0 +2013,9,1,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,949,-5,0,1159,-15,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,823,-5,0,1049,-31,0,0 +2013,9,29,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,0,0,2128,-7,0,0 +2013,4,26,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1917,16,1,2215,-7,0,0 +2013,6,13,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,705,45,1,935,65,1,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1935,3,0,2232,8,0,0 +2013,10,8,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1840,6,0,2119,6,0,0 +2013,4,11,4,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1606,74,1,2358,53,1,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1440,15,1,1715,3,0,0 +2013,9,23,1,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,600,-5,0,744,-23,0,0 +2013,7,21,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-2,0,655,-8,0,0 +2013,9,27,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1319,-4,0,1817,6,0,0 +2013,5,5,7,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-4,0,1755,-1,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1910,19,1,2003,13,0,0 +2013,6,10,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1005,39,1,1145,53,1,0 +2013,9,28,6,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1614,-3,0,1910,4,0,0 +2013,7,16,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,195,1,2035,221,1,0 +2013,6,30,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1804,22,1,1944,7,0,0 +2013,7,8,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-6,0,1125,7,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,253,1,2125,241,1,0 +2013,10,31,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-3,0,1021,-18,0,0 +2013,10,14,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,22,1,2125,15,1,0 +2013,4,12,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1600,2,0,1859,-15,0,0 +2013,4,16,2,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1135,-6,0,1322,-13,0,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-4,0,1305,1,0,0 +2013,10,21,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,915,1,0,1025,-3,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-3,0,945,0,0,0 +2013,10,5,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,635,-5,0,1505,-6,0,0 +2013,8,5,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,739,-1,0,0 +2013,8,9,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-5,0,2150,-5,0,0 +2013,4,19,5,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,830,-6,0,1115,-11,0,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,133,1,2130,141,1,0 +2013,8,13,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-2,0,930,-2,0,0 +2013,6,1,6,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1700,25,1,2032,7,0,0 +2013,4,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,715,40,1,1246,33,1,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2306,-7,0,2308,-15,0,0 +2013,8,16,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1102,2,0,0 +2013,4,11,4,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1150,5,0,1255,-6,0,0 +2013,8,30,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,6,0,1338,0,0,0 +2013,8,29,4,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-4,0,1454,-19,0,0 +2013,7,14,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1745,34,1,2118,53,1,0 +2013,6,4,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-1,0,1837,-12,0,0 +2013,6,19,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2055,85,1,2225,72,1,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,1215,-2,0,1610,-4,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2100,49,1,2150,46,1,0 +2013,7,24,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-8,0,2132,10,0,0 +2013,9,13,5,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1556,33,1,1641,19,1,0 +2013,4,19,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,145,1,2230,118,1,0 +2013,9,17,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,18,1,1929,20,1,0 +2013,6,6,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,635,-8,0,801,-18,0,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1500,1,0,2339,-33,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2325,-4,0,730,-14,0,0 +2013,4,30,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-10,0,1506,-19,0,0 +2013,9,13,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1551,65,1,1730,50,1,0 +2013,9,3,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-5,0,1120,-32,0,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,840,0,0,858,-2,0,0 +2013,4,6,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-9,0,1515,-13,0,0 +2013,8,11,7,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1558,-9,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1704,-1,0,2153,-31,0,0 +2013,7,13,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1525,-4,0,1747,-4,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1451,-1,0,1705,-15,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,820,11,0,1340,8,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,2,0,1705,-9,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,-6,0,920,-13,0,0 +2013,7,8,1,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1420,-1,0,2239,-30,0,0 +2013,9,22,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2147,0,0,2256,-8,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,-4,0,1200,-12,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,807,-5,0,1044,42,1,0 +2013,4,29,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2209,-7,0,2356,-17,0,0 +2013,6,17,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1115,-6,0,1231,-3,0,0 +2013,9,17,2,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1100,9,0,1357,-4,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,750,29,1,927,12,0,0 +2013,8,18,7,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,950,-4,0,1659,-12,0,0 +2013,5,1,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,51,1,2213,59,1,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,921,-13,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,-3,0,1000,-15,0,0 +2013,5,22,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-3,0,800,-9,0,0 +2013,9,25,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1035,-7,0,1345,-24,0,0 +2013,10,22,2,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,843,6,0,1019,-3,0,0 +2013,9,5,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,730,-12,0,0 +2013,6,10,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1725,14,0,1850,19,1,0 +2013,7,19,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,1,0,2000,41,1,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1930,-1,0,2132,8,0,0 +2013,9,8,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-7,0,1250,-7,0,0 +2013,8,7,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,14,0,1811,13,0,0 +2013,9,7,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-4,0,1415,-25,0,0 +2013,6,22,6,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,-13,0,1155,9,0,0 +2013,10,12,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-7,0,930,-6,0,0 +2013,10,20,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1915,6,0,2212,0,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1400,-2,0,1625,-17,0,0 +2013,4,16,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,204,1,1735,199,1,0 +2013,4,9,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,7,0,1740,12,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,3,0,1825,2,0,0 +2013,9,2,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,3,0,1656,1,0,0 +2013,8,3,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,7,0,1448,1,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,4,0,2030,9,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,855,5,0,1040,-4,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,70,1,1555,57,1,0 +2013,9,12,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-3,0,827,-10,0,0 +2013,10,4,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-2,0,1842,-5,0,0 +2013,5,12,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-9,0,1843,-9,0,0 +2013,7,5,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-2,0,855,-11,0,0 +2013,4,6,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1500,-5,0,1758,-25,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,1,0,1137,-19,0,0 +2013,6,16,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-7,0,1058,-10,0,0 +2013,8,11,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2006,63,1,2156,40,1,0 +2013,7,8,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1728,2,0,2100,24,1,0 +2013,5,18,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,46,1,1800,37,1,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-3,0,2135,-7,0,0 +2013,7,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,6,0,1414,-4,0,0 +2013,6,20,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,823,-3,0,1412,-3,0,0 +2013,7,30,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1025,1,0,1120,-11,0,0 +2013,5,5,7,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1450,-2,0,1642,-24,0,0 +2013,7,14,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-12,0,915,-4,0,0 +2013,5,10,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,14,0,1250,10,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1724,-6,0,2338,-16,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,-1,0,740,-10,0,0 +2013,10,28,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1030,5,0,1140,7,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1725,47,1,2000,61,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,-3,0,2210,0,0,0 +2013,7,21,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,60,1,2250,60,1,0 +2013,8,19,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1833,27,1,2125,43,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,2,0,2322,-5,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,840,3,0,1438,-23,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1105,-2,0,1210,-11,0,0 +2013,5,11,6,EV,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2015,35,1,2156,29,1,0 +2013,7,10,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1829,34,1,2009,16,1,0 +2013,5,15,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,750,-6,0,1124,-10,0,0 +2013,9,24,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1108,0,0,1206,1,0,0 +2013,5,26,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,1,0,1910,-10,0,0 +2013,10,12,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,635,-9,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1145,33,1,1315,23,1,0 +2013,5,21,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,2002,77,1,2027,77,1,0 +2013,9,30,1,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-6,0,1544,-13,0,0 +2013,8,10,6,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,800,-3,0,1110,-3,0,0 +2013,4,8,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-1,0,1025,-15,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1800,32,1,2030,20,1,0 +2013,9,17,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,829,-7,0,0 +2013,7,27,6,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1445,66,1,1730,58,1,0 +2013,10,16,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2012,-4,0,2112,-16,0,0 +2013,8,9,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-10,0,1004,-4,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1710,13,0,2105,22,1,0 +2013,7,3,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,34,1,2110,23,1,0 +2013,4,4,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1848,58,1,2131,50,1,0 +2013,8,9,5,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1051,-4,0,1225,-6,0,0 +2013,4,14,7,F9,14635,Southwest Florida International,Fort Myers,FL,11292,Denver International,Denver,CO,1744,30,1,1945,48,1,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1950,-1,0,2240,-27,0,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1550,0,0,1835,2,0,0 +2013,6,22,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1605,-11,0,2155,2,0,0 +2013,7,9,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-2,0,820,-9,0,0 +2013,10,23,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,17,1,1440,30,1,0 +2013,6,6,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2110,0,0,2225,-4,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1435,11,0,1555,4,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1755,-4,0,1929,-10,0,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,3,0,840,13,0,0 +2013,10,28,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1330,-6,0,1415,-6,0,0 +2013,7,28,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-10,0,755,3,0,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,25,1,1950,3,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,31,1,1730,21,1,0 +2013,10,12,6,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1010,-2,0,1310,-3,0,0 +2013,7,24,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-4,0,901,18,1,0 +2013,4,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,2035,-3,0,2241,25,1,0 +2013,10,19,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1135,-5,0,1250,-17,0,0 +2013,10,18,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1955,28,1,2249,27,1,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,-2,0,2225,-14,0,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,3,0,1200,9,0,0 +2013,5,16,4,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1120,9,0,1625,11,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1500,1,0,1845,-14,0,0 +2013,10,14,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,829,-1,0,1026,7,0,0 +2013,10,12,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1525,87,1,1840,81,1,0 +2013,10,8,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1415,-9,0,2205,3,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,9,0,1720,3,0,0 +2013,8,7,3,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,930,-10,0,1135,-14,0,0 +2013,6,17,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1755,0,0,2055,-3,0,0 +2013,4,19,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-7,0,753,-19,0,0 +2013,5,15,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1037,-2,0,1835,-13,0,0 +2013,8,31,6,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1235,7,0,1345,-5,0,0 +2013,9,10,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1920,37,1,2235,48,1,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,4,0,1750,8,0,0 +2013,10,25,5,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,1010,-4,0,1235,-8,0,0 +2013,9,13,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,0,,806,0,1,1 +2013,5,11,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,-1,0,940,9,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1805,49,1,2055,38,1,0 +2013,9,5,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-5,0,1830,-19,0,0 +2013,10,21,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1610,8,0,1705,2,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1605,58,1,1720,47,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1255,167,1,1405,153,1,0 +2013,8,24,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-6,0,1828,-12,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,13,0,2230,25,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1410,-5,0,1434,-8,0,0 +2013,6,6,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-2,0,1000,-11,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1708,-1,0,1945,-9,0,0 +2013,8,25,7,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1600,-4,0,1744,-33,0,0 +2013,4,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,726,-3,0,924,-29,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,0,0,1156,45,1,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,123,1,1850,119,1,0 +2013,6,7,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,148,1,1705,157,1,0 +2013,7,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1535,136,1,1714,163,1,0 +2013,9,1,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,842,9,0,0 +2013,10,7,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-6,0,1627,-7,0,0 +2013,4,1,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,745,-2,0,900,-7,0,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1010,17,1,1310,17,1,0 +2013,7,18,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-10,0,1430,-5,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2040,26,1,2130,15,1,0 +2013,9,7,6,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-7,0,2150,-12,0,0 +2013,7,29,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-2,0,2029,-2,0,0 +2013,10,8,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-2,0,2053,-14,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1530,10,0,1835,-2,0,0 +2013,8,27,2,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,650,1,0,810,-14,0,0 +2013,9,15,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,12,0,1435,8,0,0 +2013,9,16,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1350,14,0,1955,11,0,0 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2213,-4,0,2310,-20,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,-3,0,1034,-22,0,0 +2013,7,4,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1310,1,0,1415,-4,0,0 +2013,6,12,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1110,-1,0,1205,2,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1035,-2,0,1244,-22,0,0 +2013,8,17,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-7,0,821,-9,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,-2,0,1924,-23,0,0 +2013,6,9,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,25,-8,0,541,5,0,0 +2013,8,6,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,36,1,1645,52,1,0 +2013,7,25,4,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1227,-3,0,2020,5,0,0 +2013,5,19,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1030,3,0,1225,9,0,0 +2013,9,20,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1005,70,1,1236,61,1,0 +2013,6,7,5,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2125,50,1,2235,44,1,0 +2013,10,8,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1205,0,0,2039,6,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-5,0,2347,-2,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2130,-2,0,20,-10,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1910,62,1,2040,58,1,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-5,0,1929,-7,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2110,1,0,2319,-2,0,0 +2013,5,26,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1010,-19,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1320,0,0,1425,-4,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1925,-3,0,2130,-17,0,0 +2013,5,31,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1747,24,1,1900,20,1,0 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,823,-5,0,1112,-27,0,0 +2013,6,5,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,550,-7,0,850,-10,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2045,31,1,2145,27,1,0 +2013,7,17,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-4,0,1633,-8,0,0 +2013,4,9,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1600,-3,0,1622,-8,0,0 +2013,6,14,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,947,8,0,0 +2013,6,25,2,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,715,-3,0,825,-12,0,0 +2013,8,31,6,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-4,0,648,-18,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,953,-1,0,1215,-13,0,0 +2013,4,5,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-4,0,1915,-9,0,0 +2013,9,7,6,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,859,-7,0,1108,-27,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,0,0,2035,-7,0,0 +2013,9,5,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,9,0,2001,-7,0,0 +2013,6,5,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,815,-7,0,1034,-1,0,0 +2013,5,8,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-7,0,1127,1,0,0 +2013,7,3,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1255,5,0,1535,5,0,0 +2013,10,4,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,920,-2,0,0 +2013,8,20,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,20,1,2240,13,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-2,0,828,-22,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,-3,0,2100,-8,0,0 +2013,10,4,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,818,-4,0,1426,-15,0,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1415,3,0,1550,-6,0,0 +2013,10,20,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,830,-6,0,1105,-1,0,0 +2013,9,21,6,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,3,0,1005,-2,0,0 +2013,9,6,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,810,-5,0,906,0,0,0 +2013,7,14,7,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1656,33,1,1852,30,1,0 +2013,9,22,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1236,-1,0,1404,-7,0,0 +2013,8,15,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,0,0,1220,-2,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1930,-4,0,2150,5,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,4,0,2344,0,0,0 +2013,10,11,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-6,0,749,-1,0,0 +2013,4,7,7,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1645,-4,0,1850,-21,0,0 +2013,7,17,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,-13,0,1640,-18,0,0 +2013,10,20,7,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,-6,0,1710,-14,0,0 +2013,10,18,5,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1745,-1,0,1902,-5,0,0 +2013,10,24,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,1248,-18,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1351,-3,0,1421,-14,0,0 +2013,5,3,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1050,-2,0,1220,-12,0,0 +2013,6,7,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,2,0,1035,7,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,18,1,1300,8,0,0 +2013,8,27,2,YV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1641,15,1,1808,3,0,0 +2013,4,28,7,DL,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,42,1,2134,47,1,0 +2013,8,8,4,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-2,0,1535,-18,0,0 +2013,6,9,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1405,2,0,1530,13,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,23,1,1634,22,1,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,820,6,0,1150,-4,0,0 +2013,4,26,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-5,0,2226,-8,0,0 +2013,10,21,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1705,-2,0,1710,-4,0,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,845,1,0,1140,-1,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2200,38,1,31,22,1,0 +2013,10,2,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,-3,0,810,-1,0,0 +2013,9,11,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,-6,0,917,-18,0,0 +2013,10,24,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1859,-1,0,2104,5,0,0 +2013,5,23,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,-2,0,1433,6,0,0 +2013,4,20,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,655,-4,0,1300,-7,0,0 +2013,8,2,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,635,0,0,955,-7,0,0 +2013,8,17,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1005,-1,0,1120,-31,0,0 +2013,8,15,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-4,0,2101,-9,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1835,0,,1945,0,1,1 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,33,1,1930,21,1,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1130,2,0,1235,-1,0,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,7,0,1615,20,1,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1215,0,0,1420,-30,0,0 +2013,6,28,5,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1746,-4,0,1920,2,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,825,4,0,1440,-17,0,0 +2013,6,3,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-9,0,935,-8,0,0 +2013,6,10,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,60,1,1150,57,1,0 +2013,5,27,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1735,65,1,1835,84,1,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,820,-2,0,950,-7,0,0 +2013,6,4,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1100,0,0,1245,-3,0,0 +2013,8,27,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,11,0,1028,3,0,0 +2013,6,13,4,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,5,0,2020,-7,0,0 +2013,6,22,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,735,-5,0,845,-16,0,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,0,0,2359,-17,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1100,52,1,1658,33,1,0 +2013,5,8,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,756,-27,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1700,0,0,1805,20,1,0 +2013,6,25,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,740,4,0,950,-4,0,0 +2013,9,30,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-6,0,859,-1,0,0 +2013,6,24,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,715,-1,0,946,13,0,0 +2013,9,23,1,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1830,-2,0,2055,-5,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2028,5,0,2259,-15,0,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-3,0,2240,-1,0,0 +2013,9,8,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,3,0,955,7,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2042,-1,0,2332,15,1,0 +2013,5,5,7,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,-3,0,2203,5,0,0 +2013,5,4,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1707,0,,1850,0,1,1 +2013,9,1,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,719,10,0,1555,-7,0,0 +2013,5,8,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,949,92,1,1112,122,1,0 +2013,5,31,5,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,720,2,0,845,6,0,0 +2013,6,18,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,827,1,0,0 +2013,4,9,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,7,0,1545,-5,0,0 +2013,6,6,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1734,221,1,1855,218,1,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,4,0,1939,50,1,0 +2013,9,27,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-3,0,1019,-8,0,0 +2013,9,30,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1745,-3,0,1855,-5,0,0 +2013,5,30,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1355,-5,0,1502,13,0,0 +2013,7,14,7,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,-7,0,1116,-22,0,0 +2013,8,9,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,39,1,1315,32,1,0 +2013,8,9,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,545,-4,0,739,-17,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1310,-7,0,1433,-14,0,0 +2013,8,30,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,-6,0,2115,2,0,0 +2013,7,29,1,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1725,-6,0,1924,-5,0,0 +2013,6,22,6,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,2,0,1849,-3,0,0 +2013,5,20,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,1,0,1710,-6,0,0 +2013,6,11,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1028,0,0,1426,8,0,0 +2013,7,24,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1422,0,0,1653,-15,0,0 +2013,10,31,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1320,-3,0,1405,-9,0,0 +2013,5,30,4,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1027,-2,0,1033,-3,0,0 +2013,7,18,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1724,-5,0,1935,-23,0,0 +2013,6,21,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1635,4,0,1815,-13,0,0 +2013,7,25,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1355,-4,0,1739,10,0,0 +2013,9,12,4,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,610,-7,0,738,1,0,0 +2013,4,5,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-3,0,910,-1,0,0 +2013,5,3,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-7,0,1318,-3,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1030,-2,0,1405,-6,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,710,-1,0,957,-36,0,0 +2013,7,8,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1035,-8,0,1105,28,1,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,1,0,705,-2,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-4,0,859,-1,0,0 +2013,10,30,3,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1330,-6,0,1420,-21,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-9,0,1325,-29,0,0 +2013,4,18,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1142,22,1,1429,39,1,0 +2013,8,20,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,-5,0,1810,-6,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1659,0,0,1845,-7,0,0 +2013,8,28,3,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,630,9,0,730,21,1,0 +2013,7,26,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1450,-3,0,1555,-1,0,0 +2013,4,29,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1039,-2,0,1207,0,0,0 +2013,4,18,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-5,0,1700,-19,0,0 +2013,5,15,3,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,720,-2,0,940,-5,0,0 +2013,8,17,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,0,0,1700,2,0,0 +2013,4,4,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1120,-3,0,1130,-11,0,0 +2013,9,12,4,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-5,0,1228,2,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,-7,0,1610,3,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,-4,0,1830,-6,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,800,-7,0,1106,-4,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1945,11,0,2319,22,1,0 +2013,8,31,6,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,645,-8,0,858,-30,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,0,0,629,-13,0,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,850,11,0,1209,25,1,0 +2013,9,16,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1050,-8,0,1250,-23,0,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1915,0,0,2246,-14,0,0 +2013,4,13,6,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1043,9,0,1133,1,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1235,11,0,1445,6,0,0 +2013,10,13,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,-6,0,2039,10,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-5,0,1102,-7,0,0 +2013,7,17,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2003,-6,0,2212,6,0,0 +2013,9,29,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1950,0,0,2200,-20,0,0 +2013,5,26,7,EV,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-2,0,1312,2,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1935,6,0,2200,-2,0,0 +2013,5,27,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-8,0,1055,0,0,0 +2013,8,1,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,6,0,930,22,1,0 +2013,7,31,3,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,136,1,1740,140,1,0 +2013,6,3,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-12,0,1955,-26,0,0 +2013,8,3,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-4,0,1200,-10,0,0 +2013,6,12,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1740,0,,1925,0,1,1 +2013,9,8,7,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,955,-1,0,1200,-20,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,15,1,1155,10,0,0 +2013,5,1,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1826,12,0,2100,-5,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1240,24,1,1355,15,1,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1010,1,0,1530,5,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2206,-3,0,2343,-10,0,0 +2013,6,7,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1303,-2,0,1824,-8,0,0 +2013,8,25,7,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1055,-6,0,0 +2013,9,9,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2007,-6,0,2105,-4,0,0 +2013,7,9,2,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1053,-2,0,1333,-6,0,0 +2013,4,20,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,0,0,1732,-32,0,0 +2013,10,3,4,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1115,92,1,1254,102,1,0 +2013,10,11,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1715,0,0,1923,-14,0,0 +2013,9,22,7,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1435,-3,0,1645,-7,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1805,-8,0,2114,-20,0,0 +2013,5,1,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1415,-6,0,1535,-22,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1800,23,1,1910,12,0,0 +2013,10,31,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,2,0,1610,2,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1334,-4,0,1525,-7,0,0 +2013,5,7,2,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1715,-3,0,2041,-41,0,0 +2013,9,13,5,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1835,-4,0,2120,-18,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,-1,0,1004,-20,0,0 +2013,7,28,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,830,-7,0,950,-27,0,0 +2013,7,8,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1943,72,1,2211,81,1,0 +2013,7,27,6,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1100,6,0,1155,-1,0,0 +2013,7,28,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-7,0,1357,-6,0,0 +2013,8,5,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,900,-3,0,1140,-4,0,0 +2013,7,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2146,136,1,2205,124,1,0 +2013,9,19,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-9,0,1043,26,1,0 +2013,6,26,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2111,262,1,2238,241,1,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,-4,0,1940,-13,0,0 +2013,6,4,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1640,-2,0,1730,-10,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1415,0,0,1744,-20,0,0 +2013,10,6,7,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1756,2,0,1904,4,0,0 +2013,6,21,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-6,0,1240,-3,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1105,-1,0,1235,-6,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2304,85,1,27,91,1,0 +2013,6,16,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-2,0,2304,6,0,0 +2013,10,31,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1128,-1,0,1416,-13,0,0 +2013,5,6,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,5,0,2023,-12,0,0 +2013,10,18,5,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1305,-1,0,1410,-15,0,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1209,-3,0,1531,-2,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2200,0,0,2330,-9,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,2000,44,1,2335,46,1,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,20,1,2252,1,0,0 +2013,10,21,1,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1847,-15,0,2145,-36,0,0 +2013,5,13,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1346,3,0,1535,8,0,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1435,30,1,1540,27,1,0 +2013,9,10,2,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1344,71,1,1519,80,1,0 +2013,6,2,7,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,625,-5,0,1441,-15,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,3,0,1135,20,1,0 +2013,5,11,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1050,1,0,1330,4,0,0 +2013,4,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1420,2,0,1647,5,0,0 +2013,9,23,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-7,0,1310,-7,0,0 +2013,10,26,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1540,10,0,1655,3,0,0 +2013,6,26,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-2,0,1032,4,0,0 +2013,4,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1700,6,0,1805,-3,0,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1655,-1,0,1923,-6,0,0 +2013,5,3,5,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,2015,-4,0,2050,-14,0,0 +2013,5,16,4,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,13,0,2115,2,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,535,-6,0,935,-8,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1850,42,1,2208,22,1,0 +2013,4,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,745,0,0,852,7,0,0 +2013,8,21,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1505,-3,0,1830,1,0,0 +2013,10,15,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1056,-5,0,1259,-13,0,0 +2013,9,17,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,33,1,1810,28,1,0 +2013,7,24,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-9,0,912,3,0,0 +2013,8,13,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,0,0,1901,-20,0,0 +2013,7,16,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-5,0,1205,-7,0,0 +2013,7,17,3,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,-1,0,1320,-18,0,0 +2013,8,13,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,3,0,1355,-5,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,0,0,1049,3,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1800,-1,0,2105,11,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1738,13,0,1956,2,0,0 +2013,6,20,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1630,-1,0,1740,-5,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1605,0,0,1900,11,0,0 +2013,8,4,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-5,0,635,-27,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,955,15,1,1115,17,1,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,933,10,0,1300,10,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1055,12,0,1200,6,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1210,-4,0,1525,-18,0,0 +2013,6,24,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2010,0,0,2125,-1,0,0 +2013,4,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1500,-3,0,1824,8,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-5,0,2105,0,0,0 +2013,6,3,1,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1020,-16,0,0 +2013,8,20,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1150,0,0,1220,-10,0,0 +2013,7,25,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,-1,0,1721,1,0,0 +2013,10,28,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1520,10,0,1536,13,0,0 +2013,6,10,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1914,40,1,2100,46,1,0 +2013,7,3,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,67,1,1810,55,1,0 +2013,9,6,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1544,-6,0,2359,7,0,0 +2013,10,20,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1415,-3,0,1740,-14,0,0 +2013,9,2,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,739,-13,0,0 +2013,7,14,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1945,70,1,2128,54,1,0 +2013,4,10,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,51,1,1354,47,1,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,12,0,1750,15,1,0 +2013,4,27,6,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-13,0,2201,-10,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1501,1,0,1538,5,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-3,0,1435,-3,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,1,0,1346,-1,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2155,18,1,2307,7,0,0 +2013,10,25,5,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-2,0,1420,14,0,0 +2013,4,18,4,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1455,91,1,1811,94,1,0 +2013,6,20,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,-6,0,2044,-14,0,0 +2013,7,5,5,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,5,0,1245,-8,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1335,7,0,1450,3,0,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1240,-6,0,1535,-29,0,0 +2013,9,24,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1355,-6,0,1512,-2,0,0 +2013,9,7,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,605,-5,0,715,-14,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1250,-3,0,1352,8,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,0,0,910,9,0,0 +2013,6,30,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,800,-7,0,1601,-1,0,0 +2013,10,18,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,744,0,0,1005,-8,0,0 +2013,6,8,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1620,-12,0,1748,-31,0,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,2120,38,1,2318,30,1,0 +2013,8,11,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,37,1,2120,28,1,0 +2013,4,3,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,1,0,1835,-22,0,0 +2013,6,28,5,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1113,56,1,1346,59,1,0 +2013,9,29,7,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,2045,-14,0,2301,-17,0,0 +2013,5,6,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-5,0,920,-6,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,2,0,1629,-16,0,0 +2013,5,7,2,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,4,0,615,43,1,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-5,0,1053,-23,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,13,0,1540,0,0,0 +2013,8,13,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-5,0,930,-5,0,0 +2013,10,19,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,7,0,1500,2,0,0 +2013,7,9,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,700,-5,0,750,15,1,0 +2013,8,9,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,13,0,1130,-2,0,0 +2013,10,28,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1010,-10,0,1124,-11,0,0 +2013,7,3,3,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,945,-5,0,1325,-14,0,0 +2013,7,16,2,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1810,7,0,1925,1,0,0 +2013,9,26,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-7,0,1722,-14,0,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-4,0,2200,-7,0,0 +2013,7,12,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1445,-3,0,2250,-8,0,0 +2013,4,12,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-1,0,1850,-10,0,0 +2013,7,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2059,0,0,2215,-8,0,0 +2013,9,27,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1545,0,0,1605,2,0,0 +2013,5,15,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2202,5,0,2338,1,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1645,13,0,2120,6,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2010,3,0,2150,-17,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,745,-2,0,950,-6,0,0 +2013,5,22,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1007,-3,0,1153,-19,0,0 +2013,10,25,5,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1025,-4,0,1205,0,0,0 +2013,8,28,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,13,0,1254,0,0,0 +2013,4,3,3,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-5,0,1011,-11,0,0 +2013,7,28,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-5,0,2041,-21,0,0 +2013,9,15,7,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2015,17,1,2145,24,1,0 +2013,6,6,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,24,1,1020,17,1,0 +2013,5,18,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1118,-7,0,1239,-29,0,0 +2013,10,28,1,EV,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,800,116,1,1201,104,1,0 +2013,8,1,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,-3,0,1042,9,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1357,-3,0,1550,-3,0,0 +2013,8,1,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1352,69,1,1558,57,1,0 +2013,9,26,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,1,0,1431,-26,0,0 +2013,8,22,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1112,42,1,1520,77,1,0 +2013,9,7,6,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,3,0,2020,0,0,0 +2013,8,12,1,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1620,-8,0,1843,-13,0,0 +2013,9,21,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1000,-4,0,1158,3,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,14,0,2231,33,1,0 +2013,4,10,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1520,-2,0,1605,-6,0,0 +2013,10,13,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-4,0,1226,-8,0,0 +2013,9,21,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1310,47,1,1440,42,1,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1745,3,0,2340,-17,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,41,1,2330,41,1,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,10,0,2230,31,1,0 +2013,5,24,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,629,0,0,935,-37,0,0 +2013,5,21,2,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1715,1,0,2020,-18,0,0 +2013,8,3,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,4,0,1118,9,0,0 +2013,8,14,3,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1835,-5,0,2050,-5,0,0 +2013,7,15,1,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1851,-5,0,2010,-16,0,0 +2013,8,8,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1045,2,0,1135,-4,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1449,-3,0,1710,-28,0,0 +2013,4,3,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-9,0,1550,-12,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,-7,0,1247,-14,0,0 +2013,10,18,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,635,-6,0,820,-7,0,0 +2013,10,29,2,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1117,29,1,1839,-3,0,0 +2013,5,25,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1710,-5,0,2000,-28,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,-6,0,2300,0,0,0 +2013,5,27,1,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,-7,0,1846,-16,0,0 +2013,9,17,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1530,-4,0,1625,-9,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1134,2,0,1418,-21,0,0 +2013,7,5,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,-7,0,2110,0,0,0 +2013,7,27,6,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1249,44,1,1534,87,1,0 +2013,10,22,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1200,-7,0,1755,-11,0,0 +2013,6,27,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1855,69,1,2015,89,1,0 +2013,9,24,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,906,-3,0,1040,-2,0,0 +2013,7,19,5,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1332,0,0,1528,24,1,0 +2013,8,12,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,710,-2,0,815,-4,0,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1940,5,0,2220,1,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,0,0,1710,-13,0,0 +2013,4,15,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,14,0,1550,8,0,0 +2013,4,12,5,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1848,-4,0,2131,-25,0,0 +2013,8,30,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1455,-4,0,1620,-20,0,0 +2013,6,8,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,2,0,825,-12,0,0 +2013,7,9,2,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2020,-7,0,514,-23,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,7,0,1608,-4,0,0 +2013,9,20,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1310,34,1,2133,4,0,0 +2013,5,19,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1006,-6,0,1119,-3,0,0 +2013,7,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1410,-5,0,1625,0,0,0 +2013,9,8,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1810,-3,0,1831,10,0,0 +2013,7,1,1,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1840,248,1,2150,208,1,0 +2013,4,15,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,-5,0,1823,-24,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1225,16,1,1415,14,0,0 +2013,10,28,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,-3,0,1303,-13,0,0 +2013,7,12,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1347,-5,0,1644,16,1,0 +2013,4,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,725,-4,0,905,-14,0,0 +2013,8,2,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-8,0,1530,-14,0,0 +2013,9,10,2,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-8,0,915,-35,0,0 +2013,8,20,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,2,0,1405,15,1,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1546,-5,0,1729,-7,0,0 +2013,8,6,2,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,0,0,1934,4,0,0 +2013,10,27,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1445,-2,0,1540,2,0,0 +2013,4,1,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,25,1,1408,-3,0,0 +2013,10,23,3,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1135,-2,0,1255,-22,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2012,-9,0,2219,-27,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,161,1,925,152,1,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1047,25,1,1219,15,1,0 +2013,7,8,1,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,45,1,541,49,1,0 +2013,4,11,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1410,5,0,1827,-3,0,0 +2013,6,28,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,7,0,2300,11,0,0 +2013,4,12,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1212,-6,0,1344,-14,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,0,0,1645,-7,0,0 +2013,5,6,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-4,0,1245,-17,0,0 +2013,10,6,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,7,0,1044,-6,0,0 +2013,8,30,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-4,0,705,-3,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2130,177,1,2300,199,1,0 +2013,7,24,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-4,0,1750,-18,0,0 +2013,4,5,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1900,0,0,1935,7,0,0 +2013,10,15,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,43,1,704,18,1,0 +2013,5,30,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1752,-9,0,2159,-10,0,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1145,4,0,1255,-2,0,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,34,1,1736,32,1,0 +2013,8,17,6,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1315,34,1,1400,33,1,0 +2013,7,8,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,-8,0,2217,-3,0,0 +2013,6,26,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-1,0,1902,-8,0,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,-3,0,1425,-8,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1945,119,1,2130,104,1,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1528,5,0,1644,10,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1630,-6,0,2235,14,0,0 +2013,10,26,6,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,805,-8,0,915,-13,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1540,0,0,1630,-2,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1255,-3,0,1345,13,0,0 +2013,8,7,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,7,0,2009,-10,0,0 +2013,6,23,7,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-3,0,1940,-5,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-1,0,1158,2,0,0 +2013,10,21,1,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,655,-8,0,817,-18,0,0 +2013,8,11,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2120,17,1,2230,14,0,0 +2013,6,5,3,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,209,1,2359,192,1,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,10,0,1910,1,0,0 +2013,8,6,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,-5,0,1435,4,0,0 +2013,6,20,4,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-4,0,608,-8,0,0 +2013,9,16,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2000,13,0,2134,9,0,0 +2013,6,26,3,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-3,0,900,-6,0,0 +2013,6,22,6,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,713,-6,0,1038,-1,0,0 +2013,6,19,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,5,0,2017,-4,0,0 +2013,4,22,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1030,-10,0,0 +2013,4,20,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-2,0,1940,-15,0,0 +2013,10,11,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1900,36,1,2025,28,1,0 +2013,6,30,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,902,-14,0,0 +2013,7,12,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,39,1,1920,24,1,0 +2013,7,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,85,1,1755,74,1,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1427,56,1,1632,50,1,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1614,-4,0,44,-21,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,27,1,1710,38,1,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2025,-7,0,2210,-13,0,0 +2013,10,4,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,948,0,0,1230,4,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-3,0,2332,-15,0,0 +2013,5,12,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1303,39,1,1441,22,1,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2059,104,1,2259,121,1,0 +2013,5,28,2,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1431,12,0,1544,12,0,0 +2013,5,3,5,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,810,0,0,1615,23,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-5,0,2015,-4,0,0 +2013,6,22,6,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,800,24,1,1010,17,1,0 +2013,5,18,6,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,41,1,816,44,1,0 +2013,6,25,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1116,3,0,1350,-3,0,0 +2013,7,15,1,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-6,0,645,-19,0,0 +2013,7,19,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,610,-2,0,715,-17,0,0 +2013,8,20,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1340,-3,0,1706,-8,0,0 +2013,4,5,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,914,23,1,1135,16,1,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,16,1,1730,11,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1615,30,1,1835,47,1,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1305,1,0,1620,0,0,0 +2013,10,31,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,840,-7,0,944,-16,0,0 +2013,6,13,4,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1330,83,1,1452,72,1,0 +2013,5,25,6,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,650,0,0,815,4,0,0 +2013,6,16,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-2,0,1405,-10,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,6,0,1430,-2,0,0 +2013,7,12,5,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,732,-3,0,1046,10,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1605,0,0,2355,-7,0,0 +2013,4,6,6,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,2055,-9,0,16,-7,0,0 +2013,6,20,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,-5,0,955,-7,0,0 +2013,10,20,7,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,6,0,915,4,0,0 +2013,8,18,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,829,0,,1204,0,1,1 +2013,10,9,3,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,800,-1,0,949,8,0,0 +2013,6,22,6,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1020,49,1,1128,34,1,0 +2013,4,12,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2130,-3,0,540,-16,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1836,126,1,2105,123,1,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1425,20,1,1540,21,1,0 +2013,9,17,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,-6,0,1454,-21,0,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1420,7,0,1555,3,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,-3,0,1351,-14,0,0 +2013,5,3,5,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1349,93,1,1505,91,1,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1826,35,1,2049,17,1,0 +2013,5,7,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,-2,0,1026,-4,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1615,22,1,1720,22,1,0 +2013,9,29,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,16,1,1650,15,1,0 +2013,7,11,4,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2007,6,0,2259,-13,0,0 +2013,9,11,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,1,0,1530,1,0,0 +2013,4,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1000,1,0,1235,1,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1855,8,0,2100,11,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1340,63,1,2159,73,1,0 +2013,9,3,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,1,0,745,-13,0,0 +2013,9,5,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2235,-7,0,5,-18,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,610,-2,0,835,-4,0,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1258,10,0,1549,6,0,0 +2013,5,26,7,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1700,173,1,2030,171,1,0 +2013,6,23,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,31,1,1632,37,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,54,1,2036,49,1,0 +2013,10,4,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1641,1,0,1758,5,0,0 +2013,8,9,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,5,0,800,-1,0,0 +2013,10,31,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1310,9,0,1325,15,1,0 +2013,6,7,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,9,0,1612,-9,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1430,4,0,1710,-5,0,0 +2013,7,8,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,1,0,1117,-11,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,907,-7,0,1049,-6,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,840,7,0,1120,2,0,0 +2013,8,28,3,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,755,7,0,935,-4,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1410,-6,0,1545,-11,0,0 +2013,10,11,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1600,23,1,1655,19,1,0 +2013,7,14,7,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1805,14,0,2030,10,0,0 +2013,8,28,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,5,0,1254,-4,0,0 +2013,9,7,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-4,0,947,7,0,0 +2013,4,7,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1520,0,0,1745,-3,0,0 +2013,8,20,2,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1548,-4,0,1620,-19,0,0 +2013,9,5,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2125,42,1,30,53,1,0 +2013,8,25,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1326,-4,0,1537,-25,0,0 +2013,6,12,3,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,-9,0,1303,-15,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,-6,0,2247,-23,0,0 +2013,7,17,3,YV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1605,-4,0,1732,8,0,0 +2013,10,16,3,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,-2,0,1410,-12,0,0 +2013,6,26,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1105,44,1,1135,43,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,720,-6,0,1110,-10,0,0 +2013,9,7,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1745,-3,0,1853,-12,0,0 +2013,4,4,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1835,-7,0,2054,-5,0,0 +2013,6,18,2,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,701,-3,0,822,6,0,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1524,39,1,1905,22,1,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1355,18,1,1530,4,0,0 +2013,6,2,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1407,1,0,1815,-15,0,0 +2013,8,1,4,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-4,0,553,-24,0,0 +2013,5,12,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1735,5,0,1745,6,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1350,17,1,2210,14,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,847,-1,0,1153,-14,0,0 +2013,6,15,6,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-8,0,1608,-20,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,12,0,1701,7,0,0 +2013,10,22,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,700,-2,0,825,-4,0,0 +2013,5,19,7,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-9,0,1632,-17,0,0 +2013,9,24,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,8,0,2000,1,0,0 +2013,4,26,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1524,-1,0,1829,-5,0,0 +2013,4,6,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,3,0,844,-3,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,850,-1,0,950,-8,0,0 +2013,10,7,1,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1619,34,1,2100,32,1,0 +2013,10,16,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2115,-5,0,2240,-26,0,0 +2013,5,29,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,17,1,744,6,0,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-4,0,2100,-49,0,0 +2013,10,16,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1809,73,1,2056,55,1,0 +2013,4,3,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-3,0,1500,-5,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,1,0,1045,-16,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-4,0,2325,-8,0,0 +2013,4,19,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,107,1,2125,98,1,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1635,6,0,1805,0,0,0 +2013,8,5,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,828,88,1,1031,78,1,0 +2013,7,29,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,0,0,1715,-11,0,0 +2013,10,30,3,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,708,25,1,1035,15,1,0 +2013,8,6,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-2,0,1940,-2,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,-4,0,1019,-6,0,0 +2013,8,19,1,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1820,-4,0,2000,-11,0,0 +2013,4,16,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-5,0,821,-9,0,0 +2013,7,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,65,1,1445,70,1,0 +2013,5,28,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,0,0,924,6,0,0 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,845,-1,0,1645,3,0,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,-3,0,1955,-10,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,0,0,1521,4,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,-7,0,1450,-17,0,0 +2013,6,21,5,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,550,-6,0,709,-20,0,0 +2013,7,15,1,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-2,0,1055,-31,0,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1131,24,1,1249,20,1,0 +2013,7,11,4,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,845,-1,0,955,-7,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1548,-3,0,1645,3,0,0 +2013,10,27,7,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,0,0,1025,-8,0,0 +2013,6,23,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,9,0,1846,10,0,0 +2013,7,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,91,1,1937,83,1,0 +2013,6,19,3,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2200,0,,12,0,1,1 +2013,7,26,5,OO,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,749,-5,0,909,-1,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1020,-2,0,1655,-17,0,0 +2013,4,24,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2020,-3,0,2150,-20,0,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1435,-7,0,1710,-7,0,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1359,2,0,1647,-19,0,0 +2013,9,4,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-2,0,1117,3,0,0 +2013,8,2,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,848,-2,0,1020,0,0,0 +2013,4,15,1,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-7,0,920,-23,0,0 +2013,9,20,5,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-7,0,2010,-15,0,0 +2013,10,25,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1505,0,0,1740,-4,0,0 +2013,8,21,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,645,-4,0,1435,-5,0,0 +2013,9,19,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,217,1,2110,214,1,0 +2013,10,24,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-3,0,2015,-3,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,-5,0,1015,-9,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-9,0,1036,-25,0,0 +2013,8,6,2,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,-5,0,1110,-8,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-3,0,1251,2,0,0 +2013,8,21,3,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-4,0,2015,-13,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,815,8,0,1025,5,0,0 +2013,6,25,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,3,0,1252,-7,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-5,0,1747,-20,0,0 +2013,5,23,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-2,0,1415,11,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1754,10,0,1907,8,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1905,-1,0,2145,-21,0,0 +2013,9,8,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1300,-8,0,1505,-4,0,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,615,-6,0,818,-26,0,0 +2013,5,28,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-5,0,2302,3,0,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-2,0,1003,-9,0,0 +2013,4,6,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,51,1,1500,36,1,0 +2013,6,18,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1505,-3,0,1603,-4,0,0 +2013,4,13,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1400,-6,0,1640,-11,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,2,0,1620,-17,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,57,1,1442,50,1,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,725,-1,0,845,-20,0,0 +2013,8,29,4,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1957,-6,0,2130,-33,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,6,0,2015,10,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-4,0,1105,-15,0,0 +2013,7,2,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,710,0,0,825,-1,0,0 +2013,5,20,1,9E,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,847,0,0,1037,4,0,0 +2013,8,29,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,935,1,0,1210,-8,0,0 +2013,8,6,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,750,0,0,905,-9,0,0 +2013,7,18,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1511,2,0,1845,4,0,0 +2013,9,19,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1617,-4,0,1859,-2,0,0 +2013,6,17,1,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1930,0,0,2207,4,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1525,-2,0,1711,0,0,0 +2013,8,1,4,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,75,1,1041,82,1,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1019,-2,0,1119,-2,0,0 +2013,8,24,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1630,35,1,2000,-6,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,745,-2,0,1130,-8,0,0 +2013,4,18,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1108,-7,0,1405,-34,0,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2150,139,1,45,115,1,0 +2013,5,6,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,730,-11,0,926,-1,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1440,-2,0,1530,-5,0,0 +2013,10,7,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-1,0,850,-4,0,0 +2013,9,6,5,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,-1,0,905,-11,0,0 +2013,4,9,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1122,5,0,1222,0,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1550,-1,0,1721,-23,0,0 +2013,8,13,2,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,700,-4,0,845,-5,0,0 +2013,10,1,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-5,0,1322,-22,0,0 +2013,6,29,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-3,0,1041,1,0,0 +2013,9,5,4,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,-9,0,1920,-17,0,0 +2013,7,30,2,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1903,19,1,2117,8,0,0 +2013,5,20,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,10,0,1655,6,0,0 +2013,7,9,2,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,29,1,2115,18,1,0 +2013,9,20,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,23,1,2328,-16,0,0 +2013,5,17,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1025,-7,0,1125,-15,0,0 +2013,4,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-1,0,1635,-5,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2057,30,1,2226,65,1,0 +2013,7,27,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1015,-5,0,1140,-13,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-2,0,1320,-9,0,0 +2013,6,28,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1855,172,1,2215,199,1,0 +2013,10,12,6,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,900,-5,0,1010,-8,0,0 +2013,4,1,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,2005,-6,0,2210,-21,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,12,0,2005,66,1,0 +2013,5,28,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1705,10,0,1805,1,0,0 +2013,6,24,1,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1826,113,1,2027,116,1,0 +2013,5,19,7,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-4,0,2106,-14,0,0 +2013,5,24,5,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1858,1,0,2130,-15,0,0 +2013,5,2,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2255,57,1,2348,61,1,0 +2013,5,3,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1930,0,0,2115,-3,0,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,925,-4,0,1134,3,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,3,0,1930,4,0,0 +2013,10,10,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,-3,0,1301,-14,0,0 +2013,8,28,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1945,2,0,2055,0,0,0 +2013,5,22,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1909,-1,0,2024,3,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1320,-1,0,1601,-28,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,-2,0,1438,-6,0,0 +2013,10,25,5,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1737,3,0,1911,-8,0,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1135,-2,0,1245,-8,0,0 +2013,8,3,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2035,0,0,2145,-6,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,955,-2,0,1129,2,0,0 +2013,8,14,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,17,1,2215,7,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1110,3,0,1236,-13,0,0 +2013,9,8,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1210,27,1,1520,32,1,0 +2013,4,4,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-1,0,830,-12,0,0 +2013,6,16,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-6,0,1300,-1,0,0 +2013,5,5,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1620,0,0,1935,-3,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2145,60,1,2328,57,1,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1740,23,1,2255,6,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1105,0,0,1435,-9,0,0 +2013,6,18,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1651,92,1,2006,96,1,0 +2013,5,15,3,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1005,-11,0,1300,-29,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,-4,0,2300,-12,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2055,21,1,5,24,1,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1537,7,0,1852,-6,0,0 +2013,4,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,840,-5,0,1023,-2,0,0 +2013,8,18,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,0,0,1508,-3,0,0 +2013,9,30,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1508,-5,0,0 +2013,7,10,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,3,0,801,-12,0,0 +2013,10,1,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1637,-7,0,1744,-14,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2135,33,1,2255,28,1,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2125,-2,0,35,-14,0,0 +2013,9,29,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,0,0,1215,-24,0,0 +2013,5,29,3,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1823,0,0,2100,-15,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,900,7,0,1155,18,1,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1510,18,1,1719,17,1,0 +2013,10,2,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1850,4,0,2105,-1,0,0 +2013,8,2,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-7,0,1553,-6,0,0 +2013,4,17,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1442,-1,0,1724,0,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,830,-6,0,1125,-12,0,0 +2013,9,26,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1542,-3,0,1731,-1,0,0 +2013,6,17,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1900,-1,0,1925,-18,0,0 +2013,10,3,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-7,0,831,-10,0,0 +2013,6,23,7,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1125,-6,0,1406,-7,0,0 +2013,5,28,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-5,0,915,-22,0,0 +2013,5,9,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1855,-3,0,2029,-5,0,0 +2013,10,19,6,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,0,0,1220,9,0,0 +2013,4,28,7,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1859,-9,0,2049,-15,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2030,7,0,2135,9,0,0 +2013,8,17,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,-1,0,2040,-6,0,0 +2013,8,5,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,-5,0,920,-10,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,0,0,2100,-2,0,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-3,0,1234,-12,0,0 +2013,4,13,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1015,-3,0,1130,-18,0,0 +2013,5,7,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1005,2,0,1155,0,0,0 +2013,10,18,5,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-7,0,919,2,0,0 +2013,4,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,751,-1,0,852,-9,0,0 +2013,7,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1925,20,1,2125,11,0,0 +2013,10,4,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-7,0,1346,-17,0,0 +2013,6,2,7,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1525,117,1,1635,95,1,0 +2013,5,20,1,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2200,-7,0,2312,-14,0,0 +2013,6,26,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,50,1,2115,69,1,0 +2013,9,19,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,0,0,2110,-26,0,0 +2013,8,12,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1628,-1,0,1851,19,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1345,-2,0,1458,14,0,0 +2013,10,21,1,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-6,0,820,-8,0,0 +2013,4,13,6,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1045,-8,0,1421,-37,0,0 +2013,6,15,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-5,0,1348,-3,0,0 +2013,7,25,4,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,24,1,1857,10,0,0 +2013,5,12,7,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-7,0,520,9,0,0 +2013,7,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-8,0,1016,7,0,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1905,-3,0,2145,-7,0,0 +2013,7,3,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-2,0,1650,0,0,0 +2013,9,8,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-3,0,1600,-3,0,0 +2013,6,23,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,0,0,1330,10,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1125,1,0,1335,18,1,0 +2013,6,1,6,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1920,7,0,2025,9,0,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1106,12,0,1403,0,0,0 +2013,7,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,-2,0,1815,-7,0,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1440,0,0,2022,-13,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2150,47,1,2200,34,1,0 +2013,9,11,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,42,1,1414,41,1,0 +2013,5,23,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1734,4,0,1855,10,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1720,2,0,1856,6,0,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1055,159,1,1525,148,1,0 +2013,4,25,4,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,2040,-5,0,2330,-16,0,0 +2013,4,30,2,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-6,0,1809,-16,0,0 +2013,10,15,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1324,-4,0,1630,-16,0,0 +2013,8,22,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2203,17,1,2259,4,0,0 +2013,8,9,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,-3,0,1421,5,0,0 +2013,7,10,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-9,0,1554,2,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,725,33,1,803,59,1,0 +2013,5,5,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,34,1,1252,20,1,0 +2013,7,10,3,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,14,0,2010,89,1,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2055,-5,0,2220,-12,0,0 +2013,7,23,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1735,61,1,1905,53,1,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1447,152,1,1600,154,1,0 +2013,5,16,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1650,-14,0,0 +2013,9,12,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,25,1,1625,25,1,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-6,0,1414,-8,0,0 +2013,10,8,2,9E,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,11,0,918,-2,0,0 +2013,4,24,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1239,9,0,1540,2,0,0 +2013,6,28,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-8,0,1248,-12,0,0 +2013,5,20,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2143,50,1,2357,44,1,0 +2013,6,11,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-2,0,841,-18,0,0 +2013,6,20,4,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-9,0,919,10,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,655,0,0,940,-7,0,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,-1,0,1750,-21,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1405,1,0,1845,-7,0,0 +2013,6,9,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1936,-1,0,2000,39,1,0 +2013,10,20,7,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,648,5,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,720,29,1,850,24,1,0 +2013,10,20,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1100,33,1,1200,40,1,0 +2013,6,27,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1050,127,1,1211,121,1,0 +2013,8,21,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,658,-1,0,921,14,0,0 +2013,5,31,5,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,630,0,0,1230,-4,0,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,932,-2,0,1236,-21,0,0 +2013,9,13,5,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1213,38,1,1330,42,1,0 +2013,4,3,3,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1553,-5,0,1724,-10,0,0 +2013,7,10,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-8,0,2144,-17,0,0 +2013,4,27,6,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1022,-7,0,1213,-20,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-7,0,1310,-10,0,0 +2013,8,29,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-1,0,1040,-18,0,0 +2013,5,24,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,45,1,2252,32,1,0 +2013,8,10,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2020,-3,0,2352,-5,0,0 +2013,10,7,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1346,22,1,1535,150,1,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,-5,0,1345,16,1,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2045,-4,0,2145,-8,0,0 +2013,7,10,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-4,0,1222,-4,0,0 +2013,8,31,6,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1820,56,1,1910,50,1,0 +2013,6,28,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-5,0,2000,-13,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,929,0,0,1053,-16,0,0 +2013,7,2,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,715,0,0,730,8,0,0 +2013,8,14,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-1,0,1839,6,0,0 +2013,9,7,6,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-7,0,1855,-24,0,0 +2013,5,5,7,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-6,0,920,-6,0,0 +2013,10,1,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,625,3,0,940,-4,0,0 +2013,7,29,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,735,-7,0,855,-16,0,0 +2013,8,6,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1210,-4,0,1350,-2,0,0 +2013,5,14,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1005,0,0,1155,-11,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,730,-3,0,935,-10,0,0 +2013,7,14,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,-5,0,2310,-5,0,0 +2013,5,28,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1715,-5,0,1826,-12,0,0 +2013,7,28,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1615,1,0,1715,3,0,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,840,-2,0,1248,4,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1810,32,1,1945,47,1,0 +2013,8,2,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1425,-5,0,1615,-11,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1900,70,1,2330,57,1,0 +2013,5,19,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1630,-7,0,1805,-15,0,0 +2013,7,17,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1735,6,0,1823,17,1,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,0,0,1320,-1,0,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,19,1,2216,14,0,0 +2013,5,15,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1629,15,1,1800,7,0,0 +2013,9,30,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,945,-6,0,1235,-39,0,0 +2013,5,20,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1000,0,0,1105,-10,0,0 +2013,9,22,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1825,173,1,1910,179,1,0 +2013,4,14,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,802,-5,0,946,15,1,0 +2013,9,4,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,-10,0,2135,-15,0,0 +2013,7,12,5,OO,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1436,14,0,1624,10,0,0 +2013,7,16,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,-4,0,2130,-16,0,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1720,8,0,2000,5,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1740,14,0,2255,-6,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-1,0,1333,-11,0,0 +2013,10,23,3,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,0,0,1708,6,0,0 +2013,5,10,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,3,0,1535,15,1,0 +2013,5,6,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1220,-5,0,1340,-15,0,0 +2013,6,30,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,-1,0,1254,25,1,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1120,0,0,1316,-5,0,0 +2013,9,30,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1054,-9,0,1645,-33,0,0 +2013,10,2,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-7,0,1605,-15,0,0 +2013,6,29,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1715,50,1,1930,45,1,0 +2013,6,13,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,0,0,1834,0,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-4,0,925,-19,0,0 +2013,5,22,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1120,9,0,1235,23,1,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,1,0,1830,12,0,0 +2013,6,2,7,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,735,38,1,1340,58,1,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1250,21,1,1845,74,1,0 +2013,8,2,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,904,0,,1036,0,1,1 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,13,0,1240,-12,0,0 +2013,6,14,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,-3,0,2156,-10,0,0 +2013,5,26,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1500,-2,0,1610,-6,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,2003,-6,0,2213,9,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1510,4,0,1735,5,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1910,1,0,2254,-12,0,0 +2013,4,15,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,10,0,1410,7,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1150,22,1,1425,17,1,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1722,6,0,1832,-1,0,0 +2013,6,18,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,13,0,2205,6,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,16,1,1115,9,0,0 +2013,5,16,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1114,-5,0,1710,-12,0,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-6,0,1544,-20,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1810,-5,0,2034,-9,0,0 +2013,4,29,1,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-7,0,1820,-30,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,37,1,735,26,1,0 +2013,4,28,7,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1330,-12,0,1529,8,0,0 +2013,4,17,3,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1725,3,0,1840,18,1,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1330,-5,0,1645,17,1,0 +2013,6,12,3,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1209,0,0,1316,-11,0,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1755,1,0,1900,-1,0,0 +2013,5,9,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1737,1,0,1814,2,0,0 +2013,10,31,4,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,-1,0,2140,4,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-3,0,2135,21,1,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1357,1,0,1736,-21,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,822,-1,0,1004,-22,0,0 +2013,4,3,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1410,-6,0,1533,-5,0,0 +2013,5,30,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,4,0,1951,-3,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1543,16,1,1722,13,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,202,1,2148,185,1,0 +2013,10,30,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1055,-9,0,1222,-5,0,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-4,0,1135,-2,0,0 +2013,6,23,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,935,-5,0,1100,-10,0,0 +2013,10,22,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,815,196,1,1115,174,1,0 +2013,4,1,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,-3,0,1916,-24,0,0 +2013,6,16,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1033,10,0,1150,12,0,0 +2013,10,9,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1025,-2,0,1140,-1,0,0 +2013,5,1,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1138,2,0,1730,32,1,0 +2013,6,15,6,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,-11,0,2127,-33,0,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1835,123,1,2152,142,1,0 +2013,5,29,3,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1612,7,0,1828,3,0,0 +2013,5,7,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,-4,0,1905,11,0,0 +2013,9,12,4,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2135,32,1,47,30,1,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,-4,0,1820,36,1,0 +2013,10,27,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1102,3,0,1642,-7,0,0 +2013,8,21,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,659,-10,0,0 +2013,4,19,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1142,-6,0,1230,12,0,0 +2013,6,30,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,756,0,0,1338,-1,0,0 +2013,7,15,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-4,0,2240,-36,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1511,123,1,1743,108,1,0 +2013,5,6,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1534,9,0,1633,1,0,0 +2013,4,2,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,710,-2,0,829,7,0,0 +2013,5,11,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,45,1,1435,37,1,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,959,0,0,1225,8,0,0 +2013,5,7,2,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1415,-9,0,1527,-15,0,0 +2013,5,15,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,22,1,1714,5,0,0 +2013,9,23,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1125,27,1,1255,12,0,0 +2013,10,9,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,935,-5,0,1143,0,0,0 +2013,9,30,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2050,-3,0,2150,-8,0,0 +2013,9,28,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1353,-7,0,1440,-18,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1418,42,1,1801,30,1,0 +2013,4,2,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,46,1,1750,35,1,0 +2013,6,22,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1505,-7,0,1650,-16,0,0 +2013,7,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,18,1,1655,5,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-1,0,2156,-6,0,0 +2013,10,28,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1509,37,1,1800,46,1,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2145,5,0,2315,15,1,0 +2013,9,12,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,819,0,0,1140,-15,0,0 +2013,9,27,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-2,0,1454,1,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1640,-1,0,1705,0,0,0 +2013,9,19,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1059,-8,0,1254,-11,0,0 +2013,9,11,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1340,35,1,1425,32,1,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1003,113,1,1139,84,1,0 +2013,5,3,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1815,-1,0,2054,-27,0,0 +2013,6,2,7,EV,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,-4,0,2042,-10,0,0 +2013,6,6,4,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,70,1,1330,53,1,0 +2013,8,22,4,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,22,1,1620,21,1,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1705,-7,0,2055,-7,0,0 +2013,4,3,3,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,820,-1,0,1032,-6,0,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1515,6,0,1640,3,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1950,72,1,2145,61,1,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,2015,6,0,2111,-3,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1930,146,1,2128,122,1,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,-3,0,1000,-9,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1405,-4,0,1809,0,0,0 +2013,5,26,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-1,0,1827,-5,0,0 +2013,9,13,5,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1055,-4,0,1333,13,0,0 +2013,10,7,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-6,0,1742,-4,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1445,-3,0,1610,-11,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,735,-3,0,1012,-11,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,15,1,2252,5,0,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,545,13,0,640,11,0,0 +2013,5,29,3,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,23,1,1800,2,0,0 +2013,5,6,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-10,0,1019,-1,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,1,0,825,-8,0,0 +2013,7,31,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-1,0,1054,3,0,0 +2013,9,16,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1305,1,0,1601,-7,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,-1,0,2100,-9,0,0 +2013,9,30,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,710,-6,0,825,-11,0,0 +2013,10,1,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1935,45,1,2105,32,1,0 +2013,7,26,5,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1520,11,0,1636,4,0,0 +2013,9,2,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-8,0,1745,-15,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,27,1,945,16,1,0 +2013,7,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1705,7,0,1830,6,0,0 +2013,7,18,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1645,-1,0,1800,-11,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1710,4,0,1952,-14,0,0 +2013,4,3,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1115,-10,0,1450,-21,0,0 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,804,4,0,1411,-1,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2100,10,0,2253,-6,0,0 +2013,8,19,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,-5,0,619,-9,0,0 +2013,6,9,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1215,-2,0,1350,-4,0,0 +2013,8,18,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,19,1,2235,19,1,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-4,0,1305,0,0,0 +2013,5,11,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-2,0,820,-9,0,0 +2013,10,12,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,-2,0,2140,-16,0,0 +2013,6,15,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1835,2,0,2115,-1,0,0 +2013,10,20,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,56,1,1840,51,1,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1700,8,0,1805,8,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2245,0,0,2347,-6,0,0 +2013,6,9,7,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,600,62,1,655,57,1,0 +2013,10,24,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1840,-4,0,2155,-12,0,0 +2013,8,21,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,613,3,0,745,-1,0,0 +2013,5,15,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1437,-6,0,1600,-21,0,0 +2013,7,1,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1630,-2,0,1735,1,0,0 +2013,5,20,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,645,-1,0,800,-7,0,0 +2013,4,29,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,-6,0,2108,-8,0,0 +2013,10,19,6,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1815,8,0,2125,-2,0,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1925,-2,0,2025,-6,0,0 +2013,10,9,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1100,-3,0,1316,0,0,0 +2013,10,18,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-8,0,1327,5,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1605,14,0,2240,6,0,0 +2013,9,21,6,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,2,0,1035,-3,0,0 +2013,5,21,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,3,0,2010,2,0,0 +2013,10,7,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2245,16,1,635,23,1,0 +2013,8,27,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,-7,0,2214,-11,0,0 +2013,7,22,1,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,2157,-4,0,2310,-6,0,0 +2013,5,8,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,905,-2,0,1124,-9,0,0 +2013,4,12,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1447,-7,0,0 +2013,6,24,1,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1200,-2,0,1446,16,1,0 +2013,7,18,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1135,-4,0,1230,-11,0,0 +2013,10,15,2,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1300,0,0,1625,-17,0,0 +2013,9,27,5,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1810,47,1,1933,47,1,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2020,-2,0,2335,8,0,0 +2013,4,2,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,-4,0,1559,-7,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1000,14,0,1715,7,0,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1012,-3,0,1337,11,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1504,-8,0,1637,2,0,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2107,20,1,2250,4,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1900,41,1,2125,19,1,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1810,14,0,1935,10,0,0 +2013,7,6,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2016,-5,0,2343,-14,0,0 +2013,4,6,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-10,0,1411,-10,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,-2,0,2300,-10,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,3,0,1134,-11,0,0 +2013,6,10,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1555,-1,0,1715,5,0,0 +2013,9,24,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-2,0,755,-12,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1429,-3,0,1623,5,0,0 +2013,7,25,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,29,1,2154,36,1,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,754,-1,0,1015,-7,0,0 +2013,8,1,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-2,0,1110,-10,0,0 +2013,9,18,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,950,-1,0,1045,-6,0,0 +2013,8,7,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,822,-10,0,935,-26,0,0 +2013,7,4,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,7,0,1125,-5,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,20,1,2020,3,0,0 +2013,6,6,4,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2258,82,1,720,72,1,0 +2013,6,26,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,-5,0,1201,-29,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1257,-7,0,1703,-13,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,739,-5,0,848,-11,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2110,3,0,2225,-3,0,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1045,18,1,1210,11,0,0 +2013,5,31,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,5,0,1008,5,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,735,-5,0,931,-4,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1057,-5,0,1338,-26,0,0 +2013,9,17,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1927,0,0,2039,7,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,630,-1,0,800,-1,0,0 +2013,6,26,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1237,3,0,1439,5,0,0 +2013,9,17,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-11,0,635,-9,0,0 +2013,4,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,832,-3,0,940,-12,0,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1810,-5,0,2055,-35,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,55,1,1120,50,1,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,24,1,1530,22,1,0 +2013,8,20,2,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1130,5,0,1305,-5,0,0 +2013,7,24,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1220,0,0,1340,-9,0,0 +2013,10,28,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-10,0,1950,-17,0,0 +2013,9,7,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1740,-11,0,1812,-1,0,0 +2013,6,6,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1615,0,,1759,0,1,1 +2013,7,19,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,715,9,0,1030,-9,0,0 +2013,9,3,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,905,-5,0,1130,-23,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1259,0,0,1805,-22,0,0 +2013,10,5,6,EV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1655,7,0,1836,-1,0,0 +2013,5,5,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1005,-3,0,1345,-9,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1205,-6,0,1325,-11,0,0 +2013,8,13,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2220,-2,0,620,-49,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,2,0,1630,-13,0,0 +2013,6,4,2,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-7,0,910,-2,0,0 +2013,7,27,6,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-1,0,1538,-1,0,0 +2013,8,20,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1701,122,1,1908,104,1,0 +2013,9,5,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-13,0,859,-11,0,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1401,-2,0,1534,-2,0,0 +2013,4,20,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,946,-4,0,1200,-1,0,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2100,15,1,2220,14,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,35,1,2040,29,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1930,50,1,5,34,1,0 +2013,9,1,7,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1133,-7,0,1300,-26,0,0 +2013,7,12,5,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,615,-2,0,855,-8,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1842,9,0,2159,-15,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,920,6,0,1755,20,1,0 +2013,4,7,7,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-10,0,723,-19,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1036,-1,0,1619,-12,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,67,1,1720,81,1,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1945,0,0,2147,-12,0,0 +2013,8,21,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1106,81,1,1237,62,1,0 +2013,6,23,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,605,-3,0,907,-11,0,0 +2013,4,11,4,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1153,-4,0,1355,-8,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,-4,0,1706,-15,0,0 +2013,9,23,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,840,2,0,930,-5,0,0 +2013,7,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1818,1,0,2051,-15,0,0 +2013,10,14,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,759,-5,0,934,-11,0,0 +2013,6,18,2,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,41,1,2130,45,1,0 +2013,4,3,3,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1940,7,0,2150,3,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,820,-1,0,935,-15,0,0 +2013,8,19,1,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,-4,0,1607,-4,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1755,-5,0,1916,-10,0,0 +2013,8,28,3,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,157,1,1949,154,1,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,949,20,1,1147,19,1,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1657,-6,0,1841,-11,0,0 +2013,7,14,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-8,0,846,15,1,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1435,2,0,1655,-10,0,0 +2013,6,4,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,34,1,1054,24,1,0 +2013,5,25,6,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1700,79,1,1821,76,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1610,-3,0,1732,-17,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2012,129,1,2219,111,1,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,16,1,1910,29,1,0 +2013,9,12,4,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1630,0,,1825,0,1,1 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1010,2,0,1125,-6,0,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1835,7,0,2156,1,0,0 +2013,5,23,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1709,177,1,2039,187,1,0 +2013,4,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1210,-9,0,1331,4,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1520,10,0,2258,-13,0,0 +2013,8,29,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-5,0,2015,1,0,0 +2013,8,12,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,940,-7,0,1053,-16,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,639,-11,0,800,-10,0,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1005,5,0,1130,4,0,0 +2013,4,17,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-3,0,2138,-12,0,0 +2013,6,9,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1157,-8,0,1445,-17,0,0 +2013,5,30,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2135,71,1,2156,65,1,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,47,1,1950,36,1,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1016,7,0,1247,10,0,0 +2013,5,1,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1825,51,1,2134,35,1,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2003,-1,0,2120,-4,0,0 +2013,10,27,7,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1725,2,0,1955,17,1,0 +2013,10,27,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1745,13,0,1840,10,0,0 +2013,10,9,3,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-7,0,1815,-11,0,0 +2013,9,5,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1021,7,0,1315,11,0,0 +2013,10,9,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-13,0,1304,5,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-1,0,1155,8,0,0 +2013,4,3,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1304,-3,0,1816,-14,0,0 +2013,7,15,1,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1604,-1,0,1748,-12,0,0 +2013,9,16,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1050,15,1,1235,4,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1117,-3,0,1259,1,0,0 +2013,8,13,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1545,0,,1710,0,1,1 +2013,4,23,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,802,-5,0,1408,-17,0,0 +2013,6,16,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-2,0,925,0,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,-5,0,1740,-17,0,0 +2013,8,14,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1300,0,0,1420,3,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1425,-5,0,1553,3,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1813,20,1,1955,7,0,0 +2013,10,26,6,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,815,3,0,1000,-5,0,0 +2013,7,8,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,21,1,1400,14,0,0 +2013,7,3,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1435,9,0,1638,-1,0,0 +2013,4,11,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,0,0,2000,-21,0,0 +2013,5,16,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1900,14,0,2110,6,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-1,0,1735,-2,0,0 +2013,4,7,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1445,-8,0,2002,-5,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,700,169,1,831,153,1,0 +2013,6,7,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1510,0,0,1605,0,0,0 +2013,7,4,4,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1020,-6,0,1245,-20,0,0 +2013,8,13,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-3,0,1947,-19,0,0 +2013,8,3,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,1038,8,0,0 +2013,6,10,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1911,21,1,2229,-9,0,0 +2013,9,22,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,950,-6,0,1050,-9,0,0 +2013,8,8,4,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1405,1,0,1620,-12,0,0 +2013,10,9,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,20,1,2145,2,0,0 +2013,5,26,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-2,0,1355,-20,0,0 +2013,8,18,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-3,0,1616,40,1,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,-6,0,1510,3,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,2,0,2137,-1,0,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,810,10,0,930,6,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,4,0,1225,-2,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-2,0,1923,-14,0,0 +2013,7,7,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,840,26,1,1110,19,1,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1745,-9,0,1920,-8,0,0 +2013,4,29,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1335,-4,0,1540,-9,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1920,44,1,2258,32,1,0 +2013,7,14,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-1,0,1725,9,0,0 +2013,10,9,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1742,12,0,1911,30,1,0 +2013,9,6,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,0,0,2155,-3,0,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-3,0,1950,-2,0,0 +2013,9,10,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1700,-2,0,2034,-27,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1824,9,0,2135,-11,0,0 +2013,6,23,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,7,0,1427,26,1,0 +2013,4,5,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-10,0,705,25,1,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2100,-8,0,2350,-2,0,0 +2013,9,7,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,755,4,0,903,-13,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,-3,0,1110,-30,0,0 +2013,9,13,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,801,-16,0,0 +2013,9,8,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1225,-3,0,1555,-15,0,0 +2013,7,21,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-4,0,855,-15,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2020,15,1,2245,0,0,0 +2013,9,4,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1905,-3,0,2048,-7,0,0 +2013,7,23,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1055,67,1,1257,53,1,0 +2013,4,23,2,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1945,-7,0,2214,-1,0,0 +2013,4,10,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,6,0,1415,1,0,0 +2013,5,9,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1625,0,,1915,0,1,1 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,21,1,2138,27,1,0 +2013,9,19,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,11,0,1110,3,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,12,0,2050,8,0,0 +2013,9,4,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,1,0,1459,12,0,0 +2013,7,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1455,25,1,1718,10,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1123,-3,0,1340,-25,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,3,0,1115,5,0,0 +2013,7,1,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,1,0,1320,6,0,0 +2013,7,7,7,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1616,-3,0,1821,-4,0,0 +2013,10,6,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1424,362,1,1611,363,1,0 +2013,4,28,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,34,1,2111,45,1,0 +2013,4,9,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,3,0,912,-31,0,0 +2013,7,12,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,5,0,1604,5,0,0 +2013,7,29,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-6,0,1434,-21,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1900,40,1,2000,33,1,0 +2013,5,27,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1434,-11,0,1626,-26,0,0 +2013,6,11,2,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,814,7,0,1055,5,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,0,0,1529,-16,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-7,0,1904,-15,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,720,62,1,926,48,1,0 +2013,10,7,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1355,228,1,1543,213,1,0 +2013,6,28,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,50,1,1707,79,1,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1620,-8,0,2155,-25,0,0 +2013,8,3,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1835,7,0,1935,-4,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,820,-3,0,935,-3,0,0 +2013,10,24,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-6,0,843,-23,0,0 +2013,6,12,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,-3,0,1203,-10,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1620,7,0,1810,4,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1545,0,0,1811,-26,0,0 +2013,4,7,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1650,0,0,1805,-6,0,0 +2013,10,8,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1800,-1,0,2050,5,0,0 +2013,6,15,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-6,0,745,-5,0,0 +2013,9,3,2,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,810,-4,0,1620,-14,0,0 +2013,4,12,5,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,22,1,915,27,1,0 +2013,9,27,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,635,-7,0,820,-12,0,0 +2013,4,8,1,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,835,-1,0,1235,2,0,0 +2013,10,26,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,-4,0,821,7,0,0 +2013,7,3,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,176,1,2310,161,1,0 +2013,10,29,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-1,0,1002,-8,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-2,0,1025,-2,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,45,1,2005,35,1,0 +2013,8,4,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1718,-7,0,1822,4,0,0 +2013,8,19,1,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1533,-8,0,1702,-7,0,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,20,1,930,15,1,0 +2013,9,13,5,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1720,27,1,1845,7,0,0 +2013,5,12,7,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1712,-5,0,1955,-3,0,0 +2013,4,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,8,0,1630,3,0,0 +2013,7,23,2,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,845,-3,0,1014,-7,0,0 +2013,8,31,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-3,0,1838,13,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2356,-1,0,600,-17,0,0 +2013,10,3,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1718,-1,0,1906,-13,0,0 +2013,8,16,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1210,9,0,1445,13,0,0 +2013,9,22,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,705,-8,0,1030,-14,0,0 +2013,5,13,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-5,0,920,-26,0,0 +2013,9,28,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,1115,-7,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,0,0,2130,-14,0,0 +2013,7,21,7,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,51,1,1840,53,1,0 +2013,6,6,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2300,-1,0,2356,14,0,0 +2013,4,20,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1420,8,0,1555,-1,0,0 +2013,10,4,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1740,48,1,1850,52,1,0 +2013,4,30,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,10,0,1504,8,0,0 +2013,10,3,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,1248,-14,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1505,-1,0,1651,-6,0,0 +2013,4,2,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2005,17,1,2205,8,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1359,-5,0,1539,-19,0,0 +2013,6,15,6,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1055,13,0,1345,-5,0,0 +2013,8,7,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,80,1,2308,63,1,0 +2013,5,15,3,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1220,-2,0,1455,-9,0,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,610,-2,0,725,-20,0,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1815,39,1,2336,26,1,0 +2013,10,13,7,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1325,-5,0,1527,-29,0,0 +2013,4,23,2,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-6,0,1330,-10,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1107,-2,0,1231,-16,0,0 +2013,8,22,4,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-10,0,1050,-9,0,0 +2013,6,29,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,1,0,731,-7,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,110,1,27,116,1,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1730,-2,0,1940,-18,0,0 +2013,4,16,2,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,630,-4,0,810,-16,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1242,-3,0,1414,-9,0,0 +2013,7,6,6,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,947,-6,0,1425,-27,0,0 +2013,6,23,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-2,0,1336,-1,0,0 +2013,6,4,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,715,-1,0,730,27,1,0 +2013,6,3,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2056,-3,0,2209,-24,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1313,-6,0,1544,-23,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1511,-3,0,1639,14,0,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2055,3,0,2311,13,0,0 +2013,6,1,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,23,1,1710,21,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1340,-3,0,1622,-23,0,0 +2013,4,18,4,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1135,7,0,1725,8,0,0 +2013,8,22,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,1,0,2011,0,0,0 +2013,5,27,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-7,0,34,-10,0,0 +2013,6,12,3,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1045,0,0,1240,-4,0,0 +2013,9,6,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,833,-11,0,0 +2013,8,6,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,815,-13,0,0 +2013,7,8,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,825,5,0,1105,-11,0,0 +2013,5,24,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,625,0,0,810,-12,0,0 +2013,8,29,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-6,0,850,0,0,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-1,0,1105,5,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,62,1,1544,50,1,0 +2013,6,30,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,17,1,1945,20,1,0 +2013,10,10,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1300,-4,0,1423,-14,0,0 +2013,4,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1127,-2,0,1231,-3,0,0 +2013,7,8,1,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,59,1,1934,93,1,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,817,80,1,1412,63,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1510,38,1,1850,14,0,0 +2013,7,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,0,0,1224,-11,0,0 +2013,7,10,3,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,810,-2,0,1200,-10,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1910,31,1,2214,48,1,0 +2013,5,18,6,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-10,0,1310,-4,0,0 +2013,10,24,4,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1642,17,1,1837,5,0,0 +2013,6,17,1,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1020,-3,0,1125,14,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1323,24,1,1452,2,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1720,33,1,2045,7,0,0 +2013,9,29,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1721,-1,0,2100,-10,0,0 +2013,8,30,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2000,16,1,2125,6,0,0 +2013,7,1,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1025,-1,0,1235,-4,0,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,0,0,1025,-15,0,0 +2013,9,11,3,9E,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,855,-3,0,1058,-14,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,117,1,2250,116,1,0 +2013,4,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,840,-5,0,1100,-11,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,0,0,2132,28,1,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1940,34,1,2245,24,1,0 +2013,8,19,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1717,-5,0,2032,-9,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,845,11,0,956,0,0,0 +2013,4,25,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,4,0,2354,-20,0,0 +2013,9,26,4,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,950,-5,0,1111,-26,0,0 +2013,4,4,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1650,54,1,1810,52,1,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,925,-1,0,1159,-19,0,0 +2013,10,19,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-7,0,1505,8,0,0 +2013,6,8,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,1,0,1538,-1,0,0 +2013,5,27,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1000,9,0,1105,6,0,0 +2013,5,3,5,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,117,1,1215,134,1,0 +2013,7,29,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,655,-8,0,0 +2013,6,2,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,-1,0,1925,-10,0,0 +2013,6,5,3,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1834,-10,0,2036,-17,0,0 +2013,7,1,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1724,-9,0,1809,-10,0,0 +2013,8,23,5,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1420,12,0,1515,3,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2005,0,0,2200,-21,0,0 +2013,9,20,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1600,103,1,1730,109,1,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,601,-4,0,937,-5,0,0 +2013,9,1,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,79,1,1820,80,1,0 +2013,7,27,6,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-1,0,1038,-12,0,0 +2013,5,20,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11278,Ronald Reagan Washington National,Washington,DC,1100,-5,0,1424,26,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1510,0,0,1525,25,1,0 +2013,5,15,3,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,5,0,2300,0,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1425,1,0,1635,-2,0,0 +2013,8,7,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1030,26,1,1205,23,1,0 +2013,8,29,4,9E,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,1435,-5,0,1622,-3,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,2025,19,1,25,8,0,0 +2013,9,10,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,8,0,2025,1,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,33,1,925,21,1,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-1,0,2039,4,0,0 +2013,5,25,6,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-6,0,1059,-17,0,0 +2013,5,2,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1630,7,0,1815,1,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1210,1,0,1530,-8,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,853,-7,0,1725,-37,0,0 +2013,4,1,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1404,46,1,1540,32,1,0 +2013,7,11,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,630,-6,0,930,-13,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,0,0,1738,-15,0,0 +2013,6,21,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1015,-6,0,1205,-3,0,0 +2013,9,25,3,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,953,0,0,1327,0,0,0 +2013,6,2,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,149,1,2025,148,1,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,59,1,1747,52,1,0 +2013,5,27,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-5,0,1643,-18,0,0 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2020,-2,0,2145,3,0,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-1,0,1021,4,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,47,1,2020,29,1,0 +2013,10,2,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-8,0,1912,-9,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-2,0,27,-8,0,0 +2013,7,21,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,-12,0,1114,-5,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,820,-24,0,0 +2013,7,23,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,8,0,1330,9,0,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1205,14,0,1300,16,1,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1445,95,1,1550,128,1,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1231,-4,0,1252,8,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,34,1,1415,16,1,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2017,-4,0,2139,9,0,0 +2013,10,3,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1355,13,0,1555,5,0,0 +2013,5,13,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1333,0,0,2203,26,1,0 +2013,7,10,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,1345,-10,0,2021,-16,0,0 +2013,4,15,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-5,0,1400,-32,0,0 +2013,5,18,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1510,-3,0,1850,-20,0,0 +2013,5,28,2,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-10,0,919,-22,0,0 +2013,4,25,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-3,0,1817,-14,0,0 +2013,6,16,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,8,0,2250,5,0,0 +2013,5,11,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1215,3,0,1530,-5,0,0 +2013,5,18,6,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,700,-2,0,820,-3,0,0 +2013,9,6,5,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1359,-11,0,1511,-28,0,0 +2013,7,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,7,0,1829,17,1,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,3,0,1826,-6,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,15,1,1350,18,1,0 +2013,4,8,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1855,-7,0,2112,15,1,0 +2013,4,27,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2215,-3,0,603,-9,0,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,755,4,0,1055,-19,0,0 +2013,10,3,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,0,0,925,-2,0,0 +2013,9,15,7,YV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1212,-5,0,1344,-13,0,0 +2013,4,24,3,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2320,-1,0,744,-17,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,0,0,1050,-16,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-5,0,847,-2,0,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1220,77,1,1414,75,1,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-11,0,1123,-10,0,0 +2013,7,21,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1210,9,0,1435,7,0,0 +2013,6,25,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,6,0,2059,-4,0,0 +2013,8,29,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1340,-6,0,1520,-18,0,0 +2013,5,13,1,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1615,6,0,1800,-2,0,0 +2013,8,14,3,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,830,-1,0,1026,-3,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-3,0,1927,3,0,0 +2013,5,18,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1629,-3,0,1929,-35,0,0 +2013,10,29,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,830,-2,0,1105,-5,0,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2341,14,0,800,-2,0,0 +2013,7,20,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,3,0,2000,-12,0,0 +2013,10,23,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,-3,0,810,-8,0,0 +2013,5,25,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1630,-8,0,2239,-19,0,0 +2013,6,23,7,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,605,-3,0,740,6,0,0 +2013,10,4,5,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1210,-9,0,2029,-17,0,0 +2013,6,20,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,620,7,0,1225,-10,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,5,0,1216,-14,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,815,-3,0,946,-3,0,0 +2013,4,22,1,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1050,20,1,1148,20,1,0 +2013,5,6,1,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-7,0,609,1,0,0 +2013,4,8,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1457,-2,0,1805,-13,0,0 +2013,9,30,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1015,-1,0,1225,-30,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,31,1,1120,21,1,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1735,5,0,1825,7,0,0 +2013,10,9,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1924,-5,0,1947,-8,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-5,0,902,-16,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-3,0,1520,-6,0,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,6,0,1401,8,0,0 +2013,6,17,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,6,0,1825,6,0,0 +2013,9,10,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1054,1,0,1922,-5,0,0 +2013,4,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,54,1,2203,53,1,0 +2013,5,25,6,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,816,-11,0,1016,-28,0,0 +2013,6,3,1,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1945,-1,0,2043,-8,0,0 +2013,9,10,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,-1,0,1330,-4,0,0 +2013,8,9,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2031,0,0,2125,2,0,0 +2013,9,20,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1920,24,1,2230,31,1,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,20,1,1915,14,0,0 +2013,5,15,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1051,-12,0,1216,-7,0,0 +2013,8,27,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1820,-5,0,1845,-16,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,835,92,1,1030,90,1,0 +2013,7,20,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-6,0,1250,-8,0,0 +2013,8,22,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,950,-1,0,1150,-22,0,0 +2013,5,1,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1745,0,,1905,0,1,1 +2013,8,28,3,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,-6,0,2105,-45,0,0 +2013,5,12,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1925,8,0,2025,2,0,0 +2013,9,13,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1839,-1,0,2232,-10,0,0 +2013,9,19,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2024,248,1,452,241,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,76,1,2058,44,1,0 +2013,10,15,2,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,-1,0,1245,-12,0,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-6,0,1208,-11,0,0 +2013,6,23,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,38,1,1740,12,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1725,10,0,1830,3,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2220,2,0,2359,-13,0,0 +2013,5,8,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1955,56,1,2110,75,1,0 +2013,8,14,3,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1728,-2,0,1949,-12,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1642,-3,0,1834,-7,0,0 +2013,5,21,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1515,5,0,1605,-17,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1123,-2,0,1249,5,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,535,-5,0,859,-17,0,0 +2013,7,21,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1612,-10,0,1847,26,1,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1629,27,1,1809,8,0,0 +2013,7,23,2,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-7,0,1803,-6,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1248,-4,0,1810,-13,0,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1918,5,0,2050,3,0,0 +2013,9,26,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,115,1,1320,109,1,0 +2013,10,17,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1902,-3,0,2309,-25,0,0 +2013,7,18,4,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,24,1,1405,18,1,0 +2013,8,2,5,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1612,2,0,1847,3,0,0 +2013,5,15,3,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1955,-1,0,2110,5,0,0 +2013,4,1,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,759,-4,0,825,-2,0,0 +2013,7,19,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,-2,0,2210,3,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,815,11,0,950,14,0,0 +2013,6,12,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,712,-5,0,1015,-8,0,0 +2013,8,28,3,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1245,14,0,1600,28,1,0 +2013,6,10,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,119,1,1902,115,1,0 +2013,8,26,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,700,-4,0,800,-11,0,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1555,31,1,1705,19,1,0 +2013,5,21,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,858,-2,0,932,-1,0,0 +2013,4,4,4,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-5,0,1330,8,0,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,56,1,1725,57,1,0 +2013,9,18,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1800,52,1,1920,52,1,0 +2013,9,6,5,OO,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,545,-4,0,745,-22,0,0 +2013,10,7,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1807,130,1,2119,123,1,0 +2013,7,20,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1355,-5,0,1648,-19,0,0 +2013,4,12,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,831,0,0,1457,1,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1030,-13,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,89,1,2341,86,1,0 +2013,8,20,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,31,1,1823,22,1,0 +2013,4,19,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,34,1,2100,50,1,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,8,0,920,10,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1640,104,1,1808,128,1,0 +2013,9,17,2,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1705,-6,0,1800,-5,0,0 +2013,6,23,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1735,16,1,1830,7,0,0 +2013,4,7,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-3,0,2153,4,0,0 +2013,4,25,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,730,-4,0,855,-3,0,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1505,-3,0,1755,1,0,0 +2013,7,28,7,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,68,1,1850,71,1,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-8,0,1229,-18,0,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,11,0,1615,26,1,0 +2013,9,14,6,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,-1,0,1735,-5,0,0 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,2020,19,1,2300,14,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-5,0,1031,-6,0,0 +2013,7,20,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-3,0,1004,3,0,0 +2013,6,22,6,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1348,-6,0,1616,-1,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,642,-6,0,847,-17,0,0 +2013,4,10,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-5,0,854,-21,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1033,0,,1305,0,1,1 +2013,5,24,5,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1115,23,1,1250,16,1,0 +2013,9,7,6,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-4,0,1620,3,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1306,-1,0,1503,1,0,0 +2013,8,2,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-9,0,1402,-28,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-10,0,1115,-11,0,0 +2013,5,14,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,930,-6,0,1020,-11,0,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1345,-1,0,1615,-7,0,0 +2013,10,11,5,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,618,-5,0,900,-32,0,0 +2013,8,1,4,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,0,,2103,0,1,1 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,-4,0,1623,28,1,0 +2013,8,1,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-6,0,744,-9,0,0 +2013,6,4,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1516,6,0,1737,-9,0,0 +2013,10,22,2,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1956,90,1,2143,68,1,0 +2013,8,6,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1545,5,0,1655,-17,0,0 +2013,5,12,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1715,12,0,1912,20,1,0 +2013,5,29,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,600,-1,0,705,-7,0,0 +2013,7,2,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,0,,949,0,1,1 +2013,6,25,2,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,845,-6,0,1026,-4,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,0,0,1802,7,0,0 +2013,8,24,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1634,-3,0,1720,-2,0,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1059,41,1,1342,18,1,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,850,21,1,1330,-5,0,0 +2013,6,8,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,0,0,1112,0,0,0 +2013,5,4,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1655,31,1,1800,29,1,0 +2013,7,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1850,5,0,2010,-5,0,0 +2013,8,16,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1015,-4,0,1311,-6,0,0 +2013,8,6,2,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1455,-6,0,1615,-5,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,0,0,1440,16,1,0 +2013,10,29,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,-11,0,1638,-18,0,0 +2013,8,12,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-1,0,1414,3,0,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,845,5,0,1030,-12,0,0 +2013,7,5,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1028,123,1,1158,109,1,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1750,70,1,1910,61,1,0 +2013,6,11,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1100,-5,0,1245,-12,0,0 +2013,7,28,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1421,5,0,1659,0,0,0 +2013,7,2,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-2,0,1415,-14,0,0 +2013,5,13,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1717,-1,0,1955,-11,0,0 +2013,9,24,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1205,0,0,1350,4,0,0 +2013,7,23,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,605,-2,0,700,-2,0,0 +2013,5,7,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,-8,0,1715,-10,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,70,1,1755,55,1,0 +2013,9,15,7,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1205,-1,0,1329,9,0,0 +2013,5,15,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1519,-4,0,1758,-7,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2258,21,1,44,3,0,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-5,0,1010,-23,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2111,36,1,2218,36,1,0 +2013,8,2,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1518,6,0,2359,-12,0,0 +2013,9,23,1,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,830,-3,0,1030,-8,0,0 +2013,7,8,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1543,15,1,1909,-9,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1527,-4,0,1701,-11,0,0 +2013,7,18,4,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,17,1,1145,5,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,752,17,1,926,6,0,0 +2013,8,31,6,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,810,-2,0,1620,-3,0,0 +2013,6,29,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2009,12,0,2102,3,0,0 +2013,7,25,4,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,-5,0,1546,-11,0,0 +2013,4,13,6,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1405,-1,0,1555,-18,0,0 +2013,8,27,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1749,-4,0,1946,-6,0,0 +2013,9,18,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,10,0,2013,26,1,0 +2013,4,1,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1753,20,1,2105,25,1,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,0,0,1430,-7,0,0 +2013,4,30,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,726,1,0,915,7,0,0 +2013,9,8,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1532,-6,0,1838,-6,0,0 +2013,8,2,5,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,4,0,2028,-6,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-5,0,1829,-10,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,715,-2,0,820,-7,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,827,12,0,1318,7,0,0 +2013,9,10,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1314,-7,0,0 +2013,10,9,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1105,-7,0,1357,-16,0,0 +2013,9,11,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-10,0,1130,-28,0,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1215,-4,0,2040,18,1,0 +2013,4,22,1,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1330,-1,0,1402,12,0,0 +2013,8,30,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1020,-5,0,1318,-1,0,0 +2013,7,3,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-5,0,1915,4,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1511,32,1,1743,1,0,0 +2013,10,18,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1508,-8,0,1648,23,1,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,13,0,1955,-6,0,0 +2013,6,19,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1824,4,0,1915,-4,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1115,-4,0,1404,-15,0,0 +2013,6,9,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,10,0,910,40,1,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,-10,0,2018,-25,0,0 +2013,4,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1705,1,0,1805,-4,0,0 +2013,5,30,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,806,-15,0,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1655,1,0,1926,-2,0,0 +2013,8,9,5,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1803,80,1,2109,85,1,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,49,1,2116,91,1,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,13,0,1205,5,0,0 +2013,4,10,3,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,19,1,920,5,0,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2020,1,0,2145,-8,0,0 +2013,4,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1125,2,0,1345,-10,0,0 +2013,7,26,5,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,20,1,2247,10,0,0 +2013,9,8,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2145,14,0,2221,3,0,0 +2013,7,3,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,945,24,1,1105,18,1,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1840,48,1,2310,53,1,0 +2013,7,31,3,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,852,6,0,1138,11,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-2,0,1610,-18,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,3,0,1745,31,1,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,-7,0,835,-18,0,0 +2013,9,3,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1248,-6,0,1500,5,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1352,11,0,1632,-19,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1814,1,0,1951,-8,0,0 +2013,9,20,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-7,0,1405,-16,0,0 +2013,5,6,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,29,1,1010,28,1,0 +2013,10,24,4,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1215,6,0,1303,-4,0,0 +2013,4,24,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,850,-11,0,1018,-5,0,0 +2013,8,14,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-2,0,1315,-7,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1447,-3,0,2159,8,0,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1825,0,0,2150,-8,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2105,12,0,2215,10,0,0 +2013,10,22,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1912,-11,0,2024,-6,0,0 +2013,5,30,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-10,0,854,-6,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1354,2,0,1630,-8,0,0 +2013,8,7,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,4,0,1705,36,1,0 +2013,7,27,6,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1732,-10,0,2023,-20,0,0 +2013,4,13,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-2,0,1000,-28,0,0 +2013,7,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,-1,0,1320,40,1,0 +2013,7,15,1,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2045,-2,0,2310,-4,0,0 +2013,10,3,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1740,23,1,1855,23,1,0 +2013,4,2,2,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-12,0,1150,-8,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2010,21,1,2124,17,1,0 +2013,7,14,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1755,4,0,2120,-37,0,0 +2013,8,24,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,4,0,815,-11,0,0 +2013,8,9,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,755,-8,0,1001,-20,0,0 +2013,5,9,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-9,0,2208,-19,0,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1920,-5,0,2050,-8,0,0 +2013,6,27,4,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,735,3,0,910,-9,0,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1540,51,1,1855,148,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1825,0,0,1915,-15,0,0 +2013,6,14,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,1,0,1915,16,1,0 +2013,8,3,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,0,,1724,0,1,1 +2013,5,4,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1610,-2,0,48,-12,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1630,52,1,1725,44,1,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,920,1,0,1015,1,0,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,1,0,1825,2,0,0 +2013,6,28,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1822,21,1,1934,14,0,0 +2013,7,6,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1625,0,,1745,0,1,1 +2013,8,30,5,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,2,0,810,-5,0,0 +2013,10,15,2,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,5,0,1800,-2,0,0 +2013,4,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-4,0,802,-9,0,0 +2013,7,9,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1745,180,1,1856,177,1,0 +2013,6,12,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1155,-2,0,1310,-4,0,0 +2013,5,24,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,829,75,1,1034,58,1,0 +2013,7,2,2,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,1400,31,1,1620,0,0,0 +2013,7,5,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,-12,0,1755,-26,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1847,31,1,2022,10,0,0 +2013,7,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,-2,0,1050,-21,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1959,-2,0,2112,-16,0,0 +2013,8,4,7,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1000,14,0,1209,14,0,0 +2013,7,30,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,900,-3,0,935,-8,0,0 +2013,5,14,2,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,630,-2,0,1235,-4,0,0 +2013,10,20,7,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1418,-1,0,1620,-4,0,0 +2013,8,31,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-9,0,1851,20,1,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1450,-1,0,1635,-22,0,0 +2013,6,28,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1850,6,0,1940,-1,0,0 +2013,4,2,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,720,-13,0,1017,1,0,0 +2013,7,6,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,0,0,1624,-5,0,0 +2013,8,9,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,643,4,0,0 +2013,10,23,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1445,24,1,1610,15,1,0 +2013,7,14,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1435,3,0,1750,7,0,0 +2013,5,10,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-4,0,1302,-2,0,0 +2013,10,6,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1715,1,0,1749,5,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,735,7,0,1010,-9,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1746,5,0,1955,-27,0,0 +2013,7,28,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1910,-3,0,2035,-6,0,0 +2013,4,10,3,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,-1,0,1911,-3,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,8,0,1705,-3,0,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1119,10,0,1239,-4,0,0 +2013,7,2,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1750,7,0,2345,16,1,0 +2013,10,7,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,-6,0,910,1,0,0 +2013,7,8,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-8,0,746,-10,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,-7,0,902,-13,0,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,9,0,1558,-1,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,-1,0,1425,3,0,0 +2013,5,18,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-8,0,1917,-8,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2015,-1,0,2036,7,0,0 +2013,5,17,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-5,0,2102,-13,0,0 +2013,9,8,7,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1608,3,0,2053,1,0,0 +2013,5,31,5,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-8,0,1803,-19,0,0 +2013,10,4,5,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1133,0,0,1405,-9,0,0 +2013,6,6,4,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,15,1,1515,70,1,0 +2013,7,26,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,950,-7,0,1240,-5,0,0 +2013,9,3,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,6,0,1350,-2,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,39,1,2305,35,1,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2035,14,0,2245,10,0,0 +2013,6,11,2,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,256,1,955,254,1,0 +2013,9,17,2,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,825,-4,0,1554,-14,0,0 +2013,6,21,5,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,815,-5,0,1057,-30,0,0 +2013,4,13,6,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-12,0,1250,-19,0,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-5,0,2235,1,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-2,0,1128,-20,0,0 +2013,5,14,2,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-6,0,1350,-12,0,0 +2013,6,4,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,740,-10,0,0 +2013,6,3,1,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2205,-8,0,2317,-8,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1050,2,0,1720,-2,0,0 +2013,9,27,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-3,0,1434,-10,0,0 +2013,4,28,7,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1256,3,0,1519,23,1,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,945,6,0,1540,-27,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,0,0,1023,17,1,0 +2013,9,11,3,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,615,-5,0,730,-10,0,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,-1,0,2320,-20,0,0 +2013,8,14,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1144,53,1,1409,0,1,1 +2013,8,22,4,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,1,0,1015,7,0,0 +2013,4,21,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1815,-4,0,1840,-11,0,0 +2013,4,29,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,0,0,920,-13,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1612,-5,0,44,-27,0,0 +2013,5,23,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,81,1,1820,74,1,0 +2013,5,16,4,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1730,-1,0,1958,-12,0,0 +2013,10,24,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1940,12,0,1955,7,0,0 +2013,8,28,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1114,-19,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1753,7,0,1915,0,0,0 +2013,7,13,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,17,1,1825,-5,0,0 +2013,5,20,1,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,51,1,1628,40,1,0 +2013,6,27,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,605,-1,0,620,-6,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1825,-4,0,2005,-12,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1155,0,0,1435,2,0,0 +2013,9,15,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1713,0,,1840,0,1,1 +2013,7,23,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,815,125,1,935,118,1,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1050,4,0,1150,0,0,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-5,0,1556,8,0,0 +2013,7,9,2,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2100,0,0,525,-9,0,0 +2013,6,29,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1220,36,1,1515,18,1,0 +2013,6,30,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1235,-2,0,1356,-28,0,0 +2013,9,30,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1240,-3,0,1514,-3,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,-2,0,1204,-5,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-3,0,916,-4,0,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,836,0,0,1035,-13,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1300,-2,0,1624,-9,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,171,1,1006,168,1,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,910,-1,0,1731,-4,0,0 +2013,6,12,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,835,-3,0,940,-8,0,0 +2013,4,13,6,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,928,34,1,1049,52,1,0 +2013,8,29,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,830,-8,0,1010,-14,0,0 +2013,5,16,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,64,1,1943,46,1,0 +2013,4,23,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,0,0,1535,7,0,0 +2013,4,14,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,851,-7,0,1026,6,0,0 +2013,8,12,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1331,0,,1620,0,1,1 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1246,9,0,1415,9,0,0 +2013,9,15,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,13,0,2250,-1,0,0 +2013,4,8,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1620,0,0,1820,18,1,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,0,0,30,0,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1735,-5,0,1759,-10,0,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1050,-1,0,1323,-8,0,0 +2013,10,29,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-8,0,1725,-16,0,0 +2013,5,22,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1352,-6,0,1537,-12,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,625,1,0,740,-2,0,0 +2013,7,17,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,-10,0,2152,-34,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1802,18,1,2007,76,1,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1635,13,0,1910,-12,0,0 +2013,7,2,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,600,8,0,720,1,0,0 +2013,4,22,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,925,9,0,1047,4,0,0 +2013,7,12,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-8,0,1508,8,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1215,12,0,1330,11,0,0 +2013,5,13,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-3,0,1530,-12,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,910,14,0,1015,15,1,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1036,-3,0,1335,-6,0,0 +2013,7,23,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,640,5,0,735,1,0,0 +2013,6,14,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,647,16,1,735,12,0,0 +2013,10,5,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1640,-2,0,1745,0,0,0 +2013,5,3,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,550,-5,0,850,-14,0,0 +2013,5,25,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-1,0,820,-5,0,0 +2013,8,29,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1450,44,1,1615,39,1,0 +2013,7,12,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,911,-5,0,1110,-21,0,0 +2013,4,26,5,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1140,15,1,1330,22,1,0 +2013,8,12,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,-4,0,915,9,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,164,1,1350,218,1,0 +2013,7,16,2,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-5,0,1805,-11,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2151,-2,0,2331,-15,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,-7,0,2130,-28,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,70,1,1655,71,1,0 +2013,9,23,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-9,0,1702,11,0,0 +2013,9,23,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-6,0,1720,-14,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2155,31,1,35,25,1,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1450,10,0,2145,-8,0,0 +2013,5,20,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1414,-1,0,1543,-2,0,0 +2013,10,3,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1741,-2,0,2017,10,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,-6,0,1913,-12,0,0 +2013,7,26,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,825,-5,0,945,-3,0,0 +2013,10,13,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1430,10,0,1555,2,0,0 +2013,5,11,6,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,945,-9,0,0 +2013,6,8,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1854,4,0,2142,-24,0,0 +2013,6,8,6,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1335,0,0,1545,-6,0,0 +2013,6,16,7,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-12,0,1210,7,0,0 +2013,9,6,5,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1900,26,1,2110,25,1,0 +2013,6,10,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1932,14,0,2113,22,1,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,3,0,905,-6,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1905,-2,0,2125,-14,0,0 +2013,6,3,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2055,-8,0,2120,-12,0,0 +2013,5,12,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,-9,0,1025,7,0,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-2,0,1219,3,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1720,0,0,1916,-28,0,0 +2013,5,10,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,902,7,0,956,45,1,0 +2013,9,12,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,1,0,1022,-5,0,0 +2013,9,2,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1645,131,1,1827,129,1,0 +2013,5,31,5,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1300,-6,0,2115,-9,0,0 +2013,9,24,2,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1226,-1,0,1358,-3,0,0 +2013,6,24,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1130,0,0,1655,-1,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1755,-3,0,2131,-6,0,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2255,-1,0,4,-5,0,0 +2013,8,10,6,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,-1,0,1740,-15,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2035,34,1,2225,47,1,0 +2013,9,13,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1455,13,0,1615,13,0,0 +2013,4,8,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,926,3,0,0 +2013,4,25,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,6,0,2125,-7,0,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,1,0,1150,-2,0,0 +2013,7,11,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1515,3,0,1650,-14,0,0 +2013,8,18,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,36,1,835,26,1,0 +2013,7,7,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,615,1,0,1144,-17,0,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-5,0,1100,-20,0,0 +2013,4,18,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,0,,1655,0,1,1 +2013,10,18,5,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-9,0,2145,13,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,2,0,1021,-1,0,0 +2013,6,7,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,2,0,1759,0,0,0 +2013,4,24,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,715,-7,0,1031,-11,0,0 +2013,6,27,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1300,37,1,1445,21,1,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,922,-5,0,0 +2013,5,15,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1820,-10,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1200,5,0,1630,-14,0,0 +2013,4,8,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,625,-2,0,920,-9,0,0 +2013,5,2,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2025,-7,0,2115,-11,0,0 +2013,7,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1025,3,0,1235,13,0,0 +2013,5,13,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1115,13,0,1219,1,0,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,7,0,1540,1,0,0 +2013,10,15,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,750,3,0,845,-3,0,0 +2013,10,6,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1650,-3,0,1815,3,0,0 +2013,4,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1312,18,1,1435,23,1,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,12,0,1212,14,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2215,-9,0,2335,-17,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-1,0,1054,2,0,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,45,1,1655,64,1,0 +2013,5,16,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1830,4,0,1905,3,0,0 +2013,4,25,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1150,-3,0,1858,-12,0,0 +2013,9,19,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,36,1,1030,48,1,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,845,-9,0,0 +2013,10,8,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1800,-5,0,2118,15,1,0 +2013,6,25,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1115,77,1,1230,93,1,0 +2013,6,18,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1855,0,,2020,0,1,1 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,730,-5,0,850,-16,0,0 +2013,10,27,7,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-7,0,2139,-5,0,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1525,3,0,1650,1,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,925,-2,0,1030,-4,0,0 +2013,9,24,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,812,-14,0,0 +2013,9,20,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1010,-2,0,1130,-6,0,0 +2013,5,4,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1220,22,1,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2145,-2,0,7,-2,0,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,23,1,1001,5,0,0 +2013,7,15,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1945,-10,0,2245,-5,0,0 +2013,7,23,2,DL,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1810,85,1,2129,98,1,0 +2013,8,4,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,6,0,759,-18,0,0 +2013,9,23,1,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,-4,0,2345,-21,0,0 +2013,10,2,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1550,-1,0,2110,-5,0,0 +2013,4,18,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,2140,110,1,2235,105,1,0 +2013,4,13,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1055,-5,0,1225,-22,0,0 +2013,5,1,3,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1533,-3,0,2021,30,1,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,3,0,1300,-8,0,0 +2013,5,4,6,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,2012,-9,0,2100,-2,0,0 +2013,5,19,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1012,143,1,1140,140,1,0 +2013,4,15,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2145,25,1,2325,16,1,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2025,9,0,2235,4,0,0 +2013,10,10,4,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-6,0,1825,-36,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-5,0,2157,-1,0,0 +2013,7,8,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1433,-1,0,1952,-5,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1715,-11,0,2048,-29,0,0 +2013,10,7,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1333,50,1,1553,62,1,0 +2013,7,10,3,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,812,-1,0,1350,2,0,0 +2013,4,2,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1249,23,1,1538,27,1,0 +2013,6,3,1,OO,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,955,-7,0,1202,-22,0,0 +2013,6,8,6,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1225,-12,0,1610,-9,0,0 +2013,9,28,6,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1705,23,1,2155,28,1,0 +2013,7,2,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1907,21,1,2003,20,1,0 +2013,5,21,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1828,77,1,1939,71,1,0 +2013,6,30,7,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-3,0,1020,1,0,0 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2009,-9,0,2216,-18,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1435,5,0,1625,2,0,0 +2013,4,26,5,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,600,3,0,850,-2,0,0 +2013,4,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2005,30,1,2339,20,1,0 +2013,8,14,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,-1,0,2250,18,1,0 +2013,5,5,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1910,-2,0,2020,-11,0,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,7,0,2011,15,1,0 +2013,8,1,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-1,0,830,-5,0,0 +2013,4,12,5,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,-1,0,1013,22,1,0 +2013,4,8,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,0,0,1240,-3,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2055,-3,0,2221,-7,0,0 +2013,6,12,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1028,14,0,1426,10,0,0 +2013,10,15,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,2,0,1120,-3,0,0 +2013,8,6,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,615,-5,0,645,-9,0,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,-2,0,1900,-1,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1005,-3,0,1100,-4,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,-3,0,2350,-11,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1620,14,0,1935,15,1,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1620,0,0,2155,-1,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,741,18,1,1030,11,0,0 +2013,9,10,2,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,4,0,1440,-5,0,0 +2013,4,9,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-11,0,809,-16,0,0 +2013,5,29,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,640,-1,0,840,-11,0,0 +2013,5,28,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1736,75,1,2009,62,1,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1630,39,1,2355,6,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1445,1,0,1650,3,0,0 +2013,8,30,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1822,-14,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1625,2,0,1730,1,0,0 +2013,4,24,3,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,2200,-4,0,2313,1,0,0 +2013,9,14,6,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-3,0,1155,-7,0,0 +2013,5,18,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1830,-8,0,2150,-48,0,0 +2013,9,13,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1314,-3,0,1443,-21,0,0 +2013,8,30,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-7,0,1336,-1,0,0 +2013,6,28,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1150,4,0,1255,-2,0,0 +2013,9,18,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-8,0,916,-9,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,720,-2,0,950,-12,0,0 +2013,7,16,2,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1200,80,1,2030,111,1,0 +2013,4,12,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,2000,25,1,2125,36,1,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,24,1,2225,23,1,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1400,38,1,1530,32,1,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1917,2,0,2051,5,0,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,655,-3,0,950,70,1,0 +2013,9,22,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2318,0,0,514,-17,0,0 +2013,6,14,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,43,1,1914,29,1,0 +2013,10,27,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-4,0,1655,-27,0,0 +2013,10,17,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1231,38,1,1446,37,1,0 +2013,7,24,3,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,0,0,910,-1,0,0 +2013,5,22,3,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1450,-6,0,1746,-8,0,0 +2013,5,28,2,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1330,19,1,1450,22,1,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,-1,0,1415,-23,0,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1528,-4,0,1642,-4,0,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-2,0,2043,0,0,0 +2013,4,8,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1827,24,1,2358,6,0,0 +2013,10,9,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,1355,5,0,1600,-13,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1939,6,0,2115,-2,0,0 +2013,9,2,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,192,1,2118,182,1,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,37,1,1005,50,1,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1715,18,1,1930,8,0,0 +2013,10,11,5,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,3,0,1858,8,0,0 +2013,7,29,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1710,18,1,1952,27,1,0 +2013,4,14,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-2,0,930,-17,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,851,-5,0,1004,-2,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,-1,0,1205,-8,0,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,-3,0,1131,-9,0,0 +2013,5,18,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,-5,0,1630,-5,0,0 +2013,5,24,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,-1,0,2225,-10,0,0 +2013,9,5,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1253,-3,0,1554,-38,0,0 +2013,6,15,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,25,24,1,541,2,0,0 +2013,4,17,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,710,2,0,915,-12,0,0 +2013,9,7,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-7,0,1710,-30,0,0 +2013,9,5,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,838,-3,0,1021,-20,0,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,9,0,1323,4,0,0 +2013,10,21,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1110,-6,0,1449,-4,0,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2040,-5,0,2350,9,0,0 +2013,6,9,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,530,7,0,717,-1,0,0 +2013,9,25,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,5,0,1645,-12,0,0 +2013,6,23,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1550,21,1,1700,19,1,0 +2013,7,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1730,0,0,1905,20,1,0 +2013,5,4,6,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-5,0,1624,-19,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,-2,0,1630,-10,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1740,24,1,1845,19,1,0 +2013,5,21,2,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,715,-8,0,935,1,0,0 +2013,7,4,4,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-4,0,1305,-20,0,0 +2013,7,24,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1320,0,0,1410,-4,0,0 +2013,10,27,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,8,0,1917,-1,0,0 +2013,5,24,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1130,6,0,1230,8,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-1,0,2153,21,1,0 +2013,5,9,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,9,0,2112,10,0,0 +2013,8,4,7,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1230,0,0,1350,-3,0,0 +2013,7,19,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-5,0,925,23,1,0 +2013,9,17,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1100,-6,0,1308,-10,0,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,-4,0,1034,6,0,0 +2013,6,3,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2002,-6,0,2130,21,1,0 +2013,9,28,6,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-6,0,856,-6,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2015,32,1,2238,6,0,0 +2013,8,16,5,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,-8,0,2355,-7,0,0 +2013,10,3,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-5,0,744,-5,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1426,66,1,1527,66,1,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,750,16,1,1045,14,0,0 +2013,10,11,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1337,0,0,1729,-16,0,0 +2013,10,18,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1220,9,0,1310,15,1,0 +2013,9,29,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1012,-7,0,1155,-8,0,0 +2013,10,6,7,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,29,1,2110,18,1,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,902,-3,0,1128,-15,0,0 +2013,7,28,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-5,0,759,-18,0,0 +2013,4,20,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,-1,0,1325,-11,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1300,0,0,1430,-3,0,0 +2013,6,18,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-7,0,1420,-3,0,0 +2013,8,16,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,29,1,1255,23,1,0 +2013,7,17,3,EV,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-11,0,1010,-12,0,0 +2013,6,22,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-1,0,1037,-7,0,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,925,-6,0,1047,-17,0,0 +2013,4,4,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,14,0,1930,3,0,0 +2013,5,18,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1215,10,0,1430,12,0,0 +2013,8,3,6,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,614,-6,0,742,-27,0,0 +2013,9,29,7,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1802,-7,0,1850,-13,0,0 +2013,7,7,7,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,12,0,1425,12,0,0 +2013,6,12,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,8,0,1905,15,1,0 +2013,9,10,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1504,-4,0,1659,-9,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,-5,0,2030,-17,0,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,600,-5,0,736,-6,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-4,0,1410,-7,0,0 +2013,5,9,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,735,-1,0,1050,-6,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,14,0,2358,10,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1425,0,0,1900,-10,0,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,915,-4,0,1655,9,0,0 +2013,8,22,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,14,0,1319,29,1,0 +2013,9,15,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2101,-2,0,2226,-4,0,0 +2013,7,5,5,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-2,0,1222,-18,0,0 +2013,4,16,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1005,-12,0,1120,-24,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1503,-3,0,1717,-20,0,0 +2013,7,19,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,1043,12,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,85,1,1955,74,1,0 +2013,9,24,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-4,0,1556,-9,0,0 +2013,7,13,6,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1035,-5,0,1340,-24,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2020,11,0,2241,-13,0,0 +2013,7,17,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2128,10,0,21,3,0,0 +2013,5,25,6,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-4,0,1001,-16,0,0 +2013,5,2,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,855,6,0,1220,4,0,0 +2013,10,15,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,27,1,1830,28,1,0 +2013,10,25,5,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1102,2,0,1857,-1,0,0 +2013,4,18,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1505,56,1,1605,75,1,0 +2013,6,26,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,20,-3,0,815,-4,0,0 +2013,6,10,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,3,0,1805,0,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1945,40,1,2045,39,1,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2025,-3,0,2135,-10,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,835,-4,0,843,-12,0,0 +2013,10,29,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-9,0,1912,-19,0,0 +2013,4,3,3,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,830,48,1,1005,39,1,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2110,1,0,2355,-1,0,0 +2013,6,20,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,837,8,0,1035,-3,0,0 +2013,5,20,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-2,0,1406,2,0,0 +2013,7,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2120,27,1,2230,27,1,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1755,3,0,2125,0,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1000,-2,0,1310,-12,0,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1241,-9,0,1532,-18,0,0 +2013,5,17,5,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1940,31,1,2220,23,1,0 +2013,6,2,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,-4,0,1130,-13,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2023,12,0,2244,2,0,0 +2013,5,28,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,6,0,1820,3,0,0 +2013,8,9,5,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,3,0,1556,2,0,0 +2013,4,10,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1436,0,0,1642,28,1,0 +2013,6,21,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,70,1,2230,51,1,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1335,-4,0,1501,-15,0,0 +2013,8,29,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-5,0,2041,-17,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-2,0,1116,-8,0,0 +2013,8,5,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,800,27,1,929,29,1,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,835,0,,955,0,1,1 +2013,5,15,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,850,-2,0,1010,6,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1944,7,0,2048,-6,0,0 +2013,10,13,7,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1307,-3,0,1437,-12,0,0 +2013,8,25,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-10,0,1543,5,0,0 +2013,6,26,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,720,-2,0,900,-16,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,8,0,100,10,0,0 +2013,9,27,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-12,0,1939,-1,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2210,-1,0,2340,-8,0,0 +2013,10,23,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,-2,0,915,-2,0,0 +2013,7,12,5,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,12,0,1710,13,0,0 +2013,9,5,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1125,-5,0,1223,-13,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,-2,0,915,-7,0,0 +2013,8,15,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1425,122,1,1544,119,1,0 +2013,9,6,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1855,31,1,1945,23,1,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,22,1,1605,24,1,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,-4,0,1630,1,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-2,0,2115,14,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1235,21,1,1355,11,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2104,210,1,2346,221,1,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1050,2,0,1150,-1,0,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1345,-4,0,1532,-8,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,950,1,0,1110,-4,0,0 +2013,4,14,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1615,32,1,2140,19,1,0 +2013,4,26,5,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1335,45,1,1553,38,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,30,1,1110,27,1,0 +2013,6,5,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1925,-1,0,2054,-16,0,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,835,11,0,1030,13,0,0 +2013,8,11,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,-4,0,1300,-23,0,0 +2013,8,11,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,-3,0,1755,-9,0,0 +2013,8,18,7,OO,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1226,-1,0,1402,-6,0,0 +2013,4,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,2034,-5,0,2208,-19,0,0 +2013,4,30,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,-7,0,1931,-25,0,0 +2013,8,16,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,700,3,0,1456,7,0,0 +2013,9,12,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1825,101,1,2015,101,1,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,0,0,755,-7,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2155,0,0,34,-15,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-3,0,1245,-10,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1210,1,0,1505,-13,0,0 +2013,7,17,3,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,840,-1,0,1058,-16,0,0 +2013,10,15,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,745,-5,0,910,-10,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,926,-7,0,1225,-33,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,1300,-4,0,1652,-16,0,0 +2013,7,7,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1745,-3,0,1930,-8,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1045,9,0,1510,8,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1705,8,0,1944,-17,0,0 +2013,9,30,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1140,9,0,1515,0,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,835,2,0,1030,-3,0,0 +2013,9,23,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2039,-5,0,2200,-11,0,0 +2013,7,25,4,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,800,-3,0,1104,-7,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1515,7,0,1730,7,0,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,30,1,1140,19,1,0 +2013,7,23,2,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1029,-6,0,1153,-19,0,0 +2013,6,11,2,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-7,0,1907,-9,0,0 +2013,8,1,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1825,132,1,2110,137,1,0 +2013,7,22,1,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1813,-9,0,2054,5,0,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1120,2,0,1410,33,1,0 +2013,10,26,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1800,2,0,0 +2013,5,6,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-4,0,1127,-15,0,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1750,15,1,1855,3,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1345,-3,0,1610,-3,0,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,13,0,1730,13,0,0 +2013,6,5,3,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1900,-6,0,2038,-15,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,-1,0,1607,-20,0,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1620,-1,0,1720,12,0,0 +2013,8,4,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2245,-3,0,2325,1,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1351,24,1,1449,25,1,0 +2013,8,22,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1602,43,1,2026,39,1,0 +2013,10,30,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,10,0,1655,14,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1220,-3,0,1525,-6,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,856,10,0,1105,3,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,815,0,0,1020,-10,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1031,-5,0,1815,-19,0,0 +2013,8,5,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2341,40,1,730,26,1,0 +2013,5,5,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1855,23,1,2130,15,1,0 +2013,6,13,4,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2202,-3,0,2318,-13,0,0 +2013,10,22,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1320,14,0,1640,9,0,0 +2013,5,6,1,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,-6,0,540,-12,0,0 +2013,5,12,7,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1930,2,0,2117,-24,0,0 +2013,10,27,7,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-4,0,905,-13,0,0 +2013,8,19,1,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,2040,-1,0,2255,-3,0,0 +2013,4,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1355,-2,0,1520,1,0,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-3,0,1253,-5,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2029,134,1,2359,151,1,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1403,0,0,1500,-5,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1725,-3,0,1830,-5,0,0 +2013,6,22,6,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,-3,0,1555,-23,0,0 +2013,9,29,7,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1702,-3,0,1825,-14,0,0 +2013,7,7,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-6,0,832,-1,0,0 +2013,8,17,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2045,-1,0,450,-12,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1905,14,0,2240,16,1,0 +2013,10,17,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-6,0,1130,-14,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1909,-6,0,44,-13,0,0 +2013,7,2,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1504,6,0,0 +2013,10,18,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-5,0,826,-6,0,0 +2013,9,1,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1909,17,1,2123,15,1,0 +2013,10,8,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1445,44,1,1654,23,1,0 +2013,9,27,5,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,1,0,847,-1,0,0 +2013,4,16,2,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,959,24,1,1600,-2,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-1,0,950,-12,0,0 +2013,7,19,5,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,0,0,1350,-18,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2020,-9,0,2126,-9,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1910,5,0,2030,-6,0,0 +2013,4,30,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,735,-17,0,905,-28,0,0 +2013,5,9,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2210,4,0,2335,19,1,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,1,0,1235,4,0,0 +2013,4,5,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-7,0,1348,-25,0,0 +2013,9,15,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,957,-10,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-6,0,2202,1,0,0 +2013,4,14,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1627,2,0,1904,-7,0,0 +2013,6,7,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2218,-7,0,600,-3,0,0 +2013,8,20,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-7,0,846,2,0,0 +2013,7,27,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1409,27,1,1650,17,1,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2125,57,1,2235,53,1,0 +2013,5,1,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,1,0,1045,-15,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-2,0,1345,6,0,0 +2013,4,30,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,-12,0,1517,-24,0,0 +2013,5,12,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-9,0,2327,7,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,810,-2,0,925,-3,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,-1,0,2354,-12,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1004,57,1,1243,43,1,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,955,3,0,1135,0,0,0 +2013,9,20,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1717,1,0,2133,5,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1230,1,0,1655,74,1,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1015,-5,0,1157,-12,0,0 +2013,5,23,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1217,2,0,1328,-4,0,0 +2013,5,21,2,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1233,-7,0,1445,-6,0,0 +2013,7,17,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,713,-3,0,1120,16,1,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,14,0,1225,3,0,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,900,3,0,1053,-12,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1750,71,1,1915,62,1,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,0,0,1305,-4,0,0 +2013,9,29,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1736,-5,0,1930,-9,0,0 +2013,6,24,1,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1959,0,,2140,0,1,1 +2013,8,8,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,623,39,1,655,41,1,0 +2013,7,2,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,5,0,2014,10,0,0 +2013,6,28,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1140,18,1,1352,57,1,0 +2013,10,15,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1312,-1,0,1600,-2,0,0 +2013,8,27,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1830,-9,0,1845,-20,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1317,0,0,1634,8,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1400,2,0,1625,-3,0,0 +2013,10,22,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,645,-4,0,815,-21,0,0 +2013,7,17,3,HA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1330,0,0,1555,9,0,0 +2013,10,22,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,15,1,1600,11,0,0 +2013,9,23,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,930,0,0,1110,-5,0,0 +2013,8,11,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-7,0,2028,-8,0,0 +2013,10,4,5,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,618,-5,0,900,-20,0,0 +2013,4,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,-3,0,818,-7,0,0 +2013,4,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,0,0,1630,-4,0,0 +2013,7,28,7,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,805,4,0,925,-9,0,0 +2013,5,8,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-6,0,2113,-11,0,0 +2013,8,5,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-4,0,1024,-7,0,0 +2013,9,14,6,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1630,83,1,1829,76,1,0 +2013,9,13,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1746,-2,0,1943,10,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1459,35,1,1725,18,1,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,0,0,2004,-4,0,0 +2013,4,11,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,600,-2,0,725,9,0,0 +2013,8,23,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1840,33,1,2134,8,0,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,0,0,1700,0,0,0 +2013,5,28,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,2,0,33,-5,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,740,-3,0,1010,-1,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,700,-4,0,931,-15,0,0 +2013,4,13,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,645,10,0,825,14,0,0 +2013,9,16,1,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-3,0,1445,7,0,0 +2013,6,8,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-9,0,1433,-9,0,0 +2013,6,9,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,113,1,1459,100,1,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1635,8,0,2145,13,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1545,32,1,1705,25,1,0 +2013,8,10,6,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1100,-3,0,1335,-17,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,545,0,0,719,-11,0,0 +2013,8,6,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1545,37,1,0 +2013,4,21,7,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-4,0,1040,-5,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,96,1,1931,89,1,0 +2013,10,2,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,-7,0,1520,-19,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,37,1,2247,31,1,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,8,0,1330,1,0,0 +2013,6,12,3,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1625,10,0,2114,1,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1729,-3,0,1930,-11,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,650,0,0,935,3,0,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,3,0,1021,-2,0,0 +2013,8,9,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,34,1,725,34,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,725,1,0,853,-9,0,0 +2013,8,30,5,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1557,16,1,1704,4,0,0 +2013,7,5,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,1,0,1955,-5,0,0 +2013,9,13,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,-7,0,2015,2,0,0 +2013,10,12,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,844,-5,0,1725,4,0,0 +2013,8,15,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,15,1,1139,20,1,0 +2013,9,23,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,900,-4,0,1645,-10,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-2,0,1429,11,0,0 +2013,4,3,3,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,-3,0,2129,-2,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,8,0,1150,2,0,0 +2013,10,25,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,37,1,1940,49,1,0 +2013,9,22,7,EV,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,710,-8,0,846,-21,0,0 +2013,9,25,3,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,3,0,1035,6,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,705,6,0,955,-5,0,0 +2013,5,18,6,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,925,-6,0,1227,-17,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1445,22,1,1659,9,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,749,-5,0,1043,0,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1445,32,1,1650,21,1,0 +2013,7,20,6,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1825,0,,2146,0,1,1 +2013,6,2,7,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1052,-5,0,1530,-13,0,0 +2013,6,25,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1505,-5,0,1645,6,0,0 +2013,8,16,5,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1001,-5,0,1139,-22,0,0 +2013,7,31,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1004,45,1,1605,45,1,0 +2013,10,17,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1125,5,0,1643,-6,0,0 +2013,7,31,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1305,-5,0,1525,-19,0,0 +2013,5,4,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,700,-6,0,900,-4,0,0 +2013,5,29,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1320,-1,0,1940,-12,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1445,7,0,1615,5,0,0 +2013,4,10,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1420,-5,0,1745,3,0,0 +2013,7,16,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1214,0,0,1356,-29,0,0 +2013,5,31,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,630,0,0,1235,-5,0,0 +2013,8,4,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,28,1,1042,15,1,0 +2013,8,15,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,810,6,0,1101,3,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1353,-4,0,1604,-16,0,0 +2013,8,2,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1840,39,1,1915,53,1,0 +2013,10,13,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1441,-2,0,1531,-6,0,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-6,0,2105,-15,0,0 +2013,8,9,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1415,-5,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1540,6,0,1653,5,0,0 +2013,9,8,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1622,-8,0,1958,-14,0,0 +2013,6,11,2,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,655,-1,0,754,-4,0,0 +2013,6,20,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1755,23,1,1940,16,1,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1600,5,0,2305,-1,0,0 +2013,10,7,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1025,-6,0,1140,-5,0,0 +2013,4,19,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-8,0,1115,-9,0,0 +2013,10,29,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,15,1,1533,12,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1355,-2,0,1622,14,0,0 +2013,5,22,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2015,24,1,2130,20,1,0 +2013,9,26,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1731,-10,0,1900,-31,0,0 +2013,4,2,2,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,830,-6,0,1220,-12,0,0 +2013,10,17,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,855,-2,0,955,-8,0,0 +2013,5,10,5,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,-4,0,1352,-14,0,0 +2013,6,18,2,DL,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,935,5,0,1759,16,1,0 +2013,9,12,4,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1226,-4,0,1358,-1,0,0 +2013,5,27,1,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2000,11,0,2220,6,0,0 +2013,8,19,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-4,0,920,-11,0,0 +2013,9,13,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1100,28,1,1210,31,1,0 +2013,10,10,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,652,3,0,954,-8,0,0 +2013,5,8,3,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1620,23,1,1827,0,0,0 +2013,5,1,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,610,113,1,725,85,1,0 +2013,5,13,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1310,-1,0,1405,-23,0,0 +2013,8,1,4,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1505,-6,0,0 +2013,5,22,3,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,715,8,0,955,-3,0,0 +2013,4,18,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,844,44,1,1107,72,1,0 +2013,10,2,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,16,1,1505,15,1,0 +2013,10,26,6,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-3,0,2250,-4,0,0 +2013,4,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1858,196,1,2024,191,1,0 +2013,9,5,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-5,0,1126,9,0,0 +2013,5,13,1,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,618,3,0,935,-6,0,0 +2013,9,27,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1605,57,1,1725,51,1,0 +2013,5,16,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,808,-7,0,0 +2013,10,25,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,15,1,1714,19,1,0 +2013,7,7,7,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,113,1,1016,87,1,0 +2013,9,30,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-6,0,1816,5,0,0 +2013,5,20,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,-8,0,1403,-16,0,0 +2013,10,23,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,18,1,1755,10,0,0 +2013,8,19,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,-1,0,1048,-13,0,0 +2013,5,30,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,5,0,1626,8,0,0 +2013,4,16,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,-1,0,1620,-28,0,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1555,-7,0,1655,9,0,0 +2013,7,8,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-1,0,1154,-10,0,0 +2013,7,26,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,647,-5,0,816,-18,0,0 +2013,9,28,6,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1054,-7,0,1638,-19,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,41,1,919,31,1,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1255,11,0,1405,-6,0,0 +2013,8,22,4,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-3,0,1810,5,0,0 +2013,8,11,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1000,-8,0,1221,-15,0,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1645,30,1,1750,24,1,0 +2013,9,17,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,855,-9,0,1225,-11,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1550,8,0,1827,-17,0,0 +2013,5,10,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1015,-10,0,0 +2013,5,16,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1320,5,0,1446,-4,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,852,-12,0,0 +2013,9,22,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1458,12,0,1757,3,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,805,1,0,930,-11,0,0 +2013,5,19,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,815,3,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-1,0,1320,-21,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,187,1,1550,168,1,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,725,0,0,840,-7,0,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,4,0,1325,5,0,0 +2013,10,4,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1329,-7,0,1529,-14,0,0 +2013,4,22,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1005,-2,0,1345,-24,0,0 +2013,10,27,7,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,950,10,0,1105,1,0,0 +2013,7,24,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,-4,0,1720,-16,0,0 +2013,6,3,1,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,820,59,1,1058,57,1,0 +2013,7,20,6,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-1,0,1215,-18,0,0 +2013,9,19,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,40,1,2110,36,1,0 +2013,5,19,7,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,-5,0,1315,-10,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,-4,0,959,-8,0,0 +2013,4,15,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,640,1,0,0 +2013,10,7,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,940,3,0,1055,38,1,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1620,11,0,1745,-5,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,53,1,1936,43,1,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,34,1,1715,53,1,0 +2013,5,10,5,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,910,0,0,1105,-16,0,0 +2013,9,12,4,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1925,36,1,2124,32,1,0 +2013,5,24,5,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,57,1,1920,52,1,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,-13,0,1535,-10,0,0 +2013,6,29,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,4,0,1740,-21,0,0 +2013,10,26,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-9,0,1835,-4,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2055,19,1,2320,17,1,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,3,0,1830,1,0,0 +2013,8,26,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,-1,0,1355,-3,0,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,145,1,2240,141,1,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1840,-5,0,2335,1,0,0 +2013,7,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,950,-2,0,1219,-7,0,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1200,-5,0,1305,-14,0,0 +2013,6,24,1,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,256,1,1810,253,1,0 +2013,5,6,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-5,0,1220,-5,0,0 +2013,5,21,2,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1725,0,0,2020,5,0,0 +2013,4,10,3,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1700,-3,0,2015,-10,0,0 +2013,7,12,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,57,1,1630,61,1,0 +2013,8,10,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,3,0,1721,-7,0,0 +2013,8,5,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,610,-5,0,1220,-16,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,3,0,1210,6,0,0 +2013,8,18,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1056,0,0,1325,-16,0,0 +2013,7,16,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-7,0,759,-6,0,0 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,-9,0,931,-17,0,0 +2013,6,1,6,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1350,14,0,1516,21,1,0 +2013,10,9,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-12,0,1054,-11,0,0 +2013,8,18,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,918,118,1,1130,116,1,0 +2013,4,27,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,610,0,0,743,-8,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1808,-8,0,2107,-22,0,0 +2013,6,18,2,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-7,0,1540,-10,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,25,1,1515,19,1,0 +2013,5,13,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,31,1,2050,24,1,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,9,0,1150,8,0,0 +2013,10,27,7,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1335,-7,0,1750,-18,0,0 +2013,6,17,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-4,0,1210,53,1,0 +2013,9,16,1,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,830,-2,0,1235,-12,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,-3,0,1354,-9,0,0 +2013,4,16,2,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,845,-4,0,1429,0,0,0 +2013,7,19,5,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,-10,0,1504,-18,0,0 +2013,4,17,3,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2157,29,1,2322,24,1,0 +2013,10,23,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-8,0,1720,-29,0,0 +2013,9,12,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-6,0,2036,-17,0,0 +2013,4,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,749,5,0,843,-1,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,85,1,1450,74,1,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,76,1,1510,71,1,0 +2013,4,2,2,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1755,-5,0,2143,-22,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,645,-6,0,918,-12,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1948,14,0,2101,13,0,0 +2013,10,9,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1429,1,0,1942,-19,0,0 +2013,9,23,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1325,4,0,1420,-6,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,810,30,1,1100,20,1,0 +2013,6,4,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,2,0,1721,0,0,0 +2013,10,22,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,-1,0,1900,7,0,0 +2013,5,15,3,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1445,-3,0,1705,3,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2218,36,1,625,29,1,0 +2013,9,28,6,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,-5,0,1130,7,0,0 +2013,4,30,2,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,855,-9,0,1200,-14,0,0 +2013,10,4,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,2,0,1506,-18,0,0 +2013,9,4,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1400,5,0,1550,-13,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,600,17,1,841,6,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,21,1,1748,13,0,0 +2013,6,29,6,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,720,-2,0,834,-1,0,0 +2013,10,6,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1745,14,0,1855,6,0,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,-1,0,920,-4,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1640,25,1,1800,23,1,0 +2013,9,10,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1435,5,0,1658,-3,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2055,-2,0,2200,-9,0,0 +2013,6,27,4,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-3,0,809,7,0,0 +2013,5,22,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1310,0,0,1420,-9,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,2020,-4,0,2300,-17,0,0 +2013,7,11,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,650,0,0,825,-19,0,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1135,12,0,1315,-2,0,0 +2013,7,29,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,0,0,1625,2,0,0 +2013,4,16,2,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1449,4,0,1603,-6,0,0 +2013,9,14,6,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,-8,0,1425,-27,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-7,0,1654,-15,0,0 +2013,7,4,4,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1430,-4,0,2025,-17,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1230,8,0,1335,1,0,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,-9,0,728,-13,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-3,0,2056,-1,0,0 +2013,5,10,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1540,61,1,1820,74,1,0 +2013,7,25,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,0,0,1305,-6,0,0 +2013,5,30,4,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-9,0,707,-21,0,0 +2013,5,8,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1040,1,0,1205,-9,0,0 +2013,8,6,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1525,33,1,1713,25,1,0 +2013,4,8,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,705,-7,0,735,-9,0,0 +2013,4,27,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,720,0,0,825,-13,0,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,5,0,2105,10,0,0 +2013,10,30,3,UA,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1005,-10,0,1135,-26,0,0 +2013,4,7,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1213,-3,0,1407,-6,0,0 +2013,8,18,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,735,-5,0,934,-17,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1317,0,0,1542,3,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,2015,-1,0,2209,-6,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2135,39,1,10,31,1,0 +2013,4,28,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1125,-2,0,1250,-1,0,0 +2013,8,28,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1835,21,1,2004,23,1,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1015,-3,0,1124,-7,0,0 +2013,6,15,6,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1915,-2,0,2140,-18,0,0 +2013,8,29,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2025,29,1,2230,21,1,0 +2013,5,1,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,40,1,1442,31,1,0 +2013,8,16,5,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-4,0,1740,-17,0,0 +2013,8,21,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1330,81,1,1500,91,1,0 +2013,8,2,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-2,0,955,-17,0,0 +2013,4,11,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1855,188,1,2130,214,1,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1715,4,0,1825,0,0,0 +2013,6,14,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,1223,-10,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1050,-5,0,1152,-10,0,0 +2013,5,30,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1225,-4,0,1440,-15,0,0 +2013,8,8,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1656,0,0,1755,-10,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,1,0,1459,2,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,858,28,1,1020,28,1,0 +2013,10,26,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,700,-5,0,818,-26,0,0 +2013,6,5,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,87,1,1610,78,1,0 +2013,8,14,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,615,0,0,720,-7,0,0 +2013,9,19,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-5,0,1500,-9,0,0 +2013,8,7,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2205,15,1,2330,5,0,0 +2013,7,22,1,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1425,0,0,2218,-6,0,0 +2013,5,6,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2100,58,1,2253,45,1,0 +2013,4,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1910,4,0,2030,-1,0,0 +2013,10,12,6,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1933,2,0,2245,-22,0,0 +2013,5,2,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1110,9,0,1441,9,0,0 +2013,4,4,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,126,1,934,99,1,0 +2013,6,15,6,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1845,14,0,2150,-18,0,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-6,0,2340,-8,0,0 +2013,8,25,7,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,2,0,1124,9,0,0 +2013,5,3,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,-2,0,1805,-8,0,0 +2013,4,15,1,EV,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1350,-7,0,1521,-12,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,-1,0,1720,24,1,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,832,-10,0,1032,8,0,0 +2013,7,22,1,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,8,0,1310,3,0,0 +2013,4,9,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,-2,0,2310,-13,0,0 +2013,5,9,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-5,0,1210,-9,0,0 +2013,6,27,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,5,0,1705,0,0,0 +2013,8,1,4,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1757,19,1,2005,8,0,0 +2013,8,31,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1540,60,1,1655,61,1,0 +2013,6,19,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,2115,-7,0,2225,-12,0,0 +2013,8,22,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,4,0,725,-20,0,0 +2013,9,6,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1840,-3,0,1957,4,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1832,7,0,0 +2013,6,7,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2045,46,1,2310,27,1,0 +2013,10,17,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-13,0,1203,-10,0,0 +2013,8,1,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,28,1,608,41,1,0 +2013,10,4,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-10,0,1555,8,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-1,0,906,-1,0,0 +2013,9,8,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1420,-4,0,2200,-12,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1455,21,1,1635,9,0,0 +2013,5,5,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,755,-2,0,1050,-22,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,20,1,2350,48,1,0 +2013,8,28,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-4,0,1115,3,0,0 +2013,10,18,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,-4,0,1944,-24,0,0 +2013,7,3,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,-2,0,730,-12,0,0 +2013,5,29,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,-3,0,1204,2,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1135,-7,0,1355,-24,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,42,1,1855,30,1,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1010,-1,0,1318,2,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1340,67,1,1544,91,1,0 +2013,5,30,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1755,22,1,1957,24,1,0 +2013,10,21,1,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1535,8,0,1805,-1,0,0 +2013,5,7,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-7,0,1825,-18,0,0 +2013,6,28,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2010,73,1,2139,62,1,0 +2013,7,23,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-9,0,1323,-6,0,0 +2013,9,15,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,21,1,14,0,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1310,3,0,1640,-3,0,0 +2013,4,2,2,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-5,0,925,12,0,0 +2013,9,11,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,85,1,1955,68,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1655,-3,0,1750,-10,0,0 +2013,10,19,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1731,-8,0,1839,-14,0,0 +2013,6,17,1,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1436,293,1,1610,298,1,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-3,0,1607,-6,0,0 +2013,6,11,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,6,0,1505,-1,0,0 +2013,6,10,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,4,0,1229,20,1,0 +2013,9,25,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1030,-5,0,1357,-4,0,0 +2013,10,26,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,0,0,1325,17,1,0 +2013,7,11,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,61,1,1922,99,1,0 +2013,9,10,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1543,3,0,1745,-13,0,0 +2013,5,3,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,11,0,1604,7,0,0 +2013,8,28,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1150,-4,0,1220,-15,0,0 +2013,7,8,1,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1930,75,1,35,66,1,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1702,-6,0,1810,-15,0,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1800,8,0,1917,-12,0,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-6,0,1205,-4,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,42,1,2218,59,1,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1450,72,1,1800,72,1,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1715,12,0,2020,1,0,0 +2013,6,10,1,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,59,1,1915,56,1,0 +2013,5,1,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1320,-10,0,1614,1,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,900,-1,0,1010,5,0,0 +2013,4,4,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1145,-6,0,1211,-3,0,0 +2013,7,8,1,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1230,10,0,1520,-7,0,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1150,11,0,1625,-11,0,0 +2013,10,27,7,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1000,0,0,1120,-7,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,78,1,1605,100,1,0 +2013,10,14,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-9,0,925,-8,0,0 +2013,4,15,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,3,0,2004,-3,0,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1310,50,1,1625,86,1,0 +2013,10,12,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2020,-5,0,2145,-8,0,0 +2013,5,14,2,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,0,0,2010,-9,0,0 +2013,5,14,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1955,-4,0,2310,24,1,0 +2013,9,7,6,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,606,-7,0,709,-21,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2120,28,1,2345,31,1,0 +2013,9,6,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,19,1,2009,22,1,0 +2013,5,4,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,805,-3,0,859,-5,0,0 +2013,8,2,5,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,905,-5,0,0 +2013,8,28,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,0,0,1615,-6,0,0 +2013,4,16,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1425,186,1,1700,166,1,0 +2013,8,28,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-6,0,1038,-34,0,0 +2013,8,9,5,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,610,0,0,655,-4,0,0 +2013,10,19,6,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1240,1,0,1529,-5,0,0 +2013,8,10,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1358,72,1,1509,75,1,0 +2013,4,1,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1806,61,1,1935,44,1,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-2,0,830,-1,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,21,1,1653,15,1,0 +2013,4,5,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1925,-1,0,2055,-20,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1852,8,0,2200,0,0,0 +2013,8,11,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-6,0,1220,-23,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,830,0,0,1030,-14,0,0 +2013,8,2,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-5,0,846,-1,0,0 +2013,9,8,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,945,-2,0,1100,-17,0,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,2,0,1755,-15,0,0 +2013,7,14,7,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,-5,0,1319,-8,0,0 +2013,4,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1700,66,1,1829,66,1,0 +2013,4,26,5,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1020,0,0,1140,6,0,0 +2013,10,22,2,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,-2,0,1115,-22,0,0 +2013,4,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1824,28,1,1849,23,1,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2220,4,0,2300,15,1,0 +2013,7,27,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,944,12,0,1140,0,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1343,0,0,1701,-17,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1715,-7,0,1932,-17,0,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1025,-3,0,1255,-11,0,0 +2013,10,2,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-3,0,1600,-6,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1415,0,0,1630,9,0,0 +2013,10,18,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1255,8,0,1350,7,0,0 +2013,6,6,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-2,0,1543,-5,0,0 +2013,6,25,2,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2206,4,0,2254,-3,0,0 +2013,8,1,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1528,23,1,1721,37,1,0 +2013,7,13,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-9,0,1002,-27,0,0 +2013,6,7,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,7,0,1213,36,1,0 +2013,7,21,7,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1350,2,0,1639,17,1,0 +2013,10,19,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1706,-10,0,1846,-6,0,0 +2013,10,2,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1125,-1,0,1259,-3,0,0 +2013,7,20,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-1,0,935,-2,0,0 +2013,6,22,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1125,32,1,1250,34,1,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-4,0,846,-1,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1815,1,0,2300,8,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1215,-3,0,1340,-11,0,0 +2013,9,5,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,855,-4,0,1042,-19,0,0 +2013,6,12,3,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1900,14,0,2035,7,0,0 +2013,7,14,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1805,-5,0,1944,-24,0,0 +2013,9,7,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2329,3,0,515,6,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1125,-1,0,1230,-2,0,0 +2013,7,6,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,61,1,2151,41,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1915,-3,0,2041,-13,0,0 +2013,5,10,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-6,0,1709,13,0,0 +2013,5,4,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,752,-6,0,1021,-4,0,0 +2013,7,2,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2135,153,1,2225,156,1,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1603,129,1,1753,135,1,0 +2013,10,29,2,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-13,0,1015,-14,0,0 +2013,6,25,2,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,958,0,0,1228,7,0,0 +2013,4,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,2130,39,1,35,28,1,0 +2013,5,3,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,2,0,830,11,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1020,17,1,1355,7,0,0 +2013,8,6,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,-2,0,919,-2,0,0 +2013,5,22,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,7,0,1610,-4,0,0 +2013,4,6,6,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1655,-4,0,1915,-9,0,0 +2013,7,15,1,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-4,0,1240,-36,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1301,-4,0,1446,-10,0,0 +2013,4,15,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1702,18,1,2014,47,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,0,0,908,-29,0,0 +2013,8,6,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1115,-6,0,1405,-2,0,0 +2013,4,8,1,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,1053,-8,0,1314,26,1,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1345,15,1,1700,13,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2145,6,0,521,25,1,0 +2013,10,28,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1750,29,1,1913,13,0,0 +2013,8,27,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1317,-2,0,1536,-15,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,23,1,1201,13,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1555,-2,0,2245,1,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1626,-3,0,1750,-16,0,0 +2013,6,18,2,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1745,28,1,2145,25,1,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1420,110,1,1520,109,1,0 +2013,4,8,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,0,,2155,0,1,1 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-3,0,1314,-19,0,0 +2013,10,16,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1800,-5,0,2005,-15,0,0 +2013,4,12,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,18,1,1410,39,1,0 +2013,5,15,3,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,-2,0,1359,-1,0,0 +2013,5,21,2,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1205,8,0,1820,2,0,0 +2013,8,19,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,0,0,1914,9,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1755,-1,0,1924,-14,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-2,0,1640,-10,0,0 +2013,9,9,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1405,-1,0,1610,-13,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1840,18,1,2020,8,0,0 +2013,5,20,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,955,-2,0,1310,-30,0,0 +2013,8,14,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,815,-1,0,930,-11,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,850,-1,0,1640,-5,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1455,-3,0,1606,-11,0,0 +2013,9,17,2,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,-5,0,1605,1,0,0 +2013,5,15,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1328,-5,0,1536,-7,0,0 +2013,5,22,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1310,-5,0,1356,-15,0,0 +2013,6,27,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1045,4,0,1220,26,1,0 +2013,5,30,4,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,4,0,1723,8,0,0 +2013,9,25,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,2,0,1908,-19,0,0 +2013,8,28,3,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1728,26,1,2012,27,1,0 +2013,6,13,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,32,1,1626,18,1,0 +2013,6,13,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,4,0,1835,-22,0,0 +2013,8,28,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-4,0,1310,-19,0,0 +2013,8,29,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,610,-4,0,930,-7,0,0 +2013,6,12,3,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,4,0,1943,-1,0,0 +2013,6,15,6,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2045,8,0,2335,-6,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-7,0,1920,-16,0,0 +2013,7,29,1,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,-7,0,1520,-5,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1404,72,1,2239,48,1,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,643,4,0,849,2,0,0 +2013,6,29,6,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1650,132,1,1807,126,1,0 +2013,8,19,1,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1127,-7,0,1433,-16,0,0 +2013,8,15,4,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,2,0,1040,18,1,0 +2013,7,19,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,550,1,0,740,-9,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,615,-2,0,840,-15,0,0 +2013,7,12,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-10,0,1329,-18,0,0 +2013,6,7,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1110,80,1,1938,96,1,0 +2013,10,7,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,26,1,1710,21,1,0 +2013,9,19,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-4,0,1225,-10,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,0,0,2224,10,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2115,18,1,2320,15,1,0 +2013,6,7,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1550,104,1,1710,98,1,0 +2013,5,28,2,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1345,-4,0,1457,14,0,0 +2013,7,31,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1350,4,0,1910,14,0,0 +2013,4,9,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,605,0,,720,0,1,1 +2013,7,12,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,13,0,1353,25,1,0 +2013,10,12,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1125,-4,0,1259,-10,0,0 +2013,5,8,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1515,-6,0,1540,-7,0,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,915,-6,0,1028,-7,0,0 +2013,7,8,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,-6,0,1335,-7,0,0 +2013,8,23,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1005,-6,0,1121,-13,0,0 +2013,8,25,7,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-2,0,1116,2,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,43,1,2250,30,1,0 +2013,4,22,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1800,230,1,1921,236,1,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1530,27,1,1727,15,1,0 +2013,9,26,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1750,-7,0,1905,5,0,0 +2013,6,4,2,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1629,20,1,1820,-4,0,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,620,-3,0,1136,-4,0,0 +2013,8,11,7,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1400,-2,0,1705,-6,0,0 +2013,4,28,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1340,0,0,1533,-16,0,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,912,6,0,1021,-17,0,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,526,0,0,1115,8,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1545,10,0,2030,6,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,0,0,2000,-1,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2110,26,1,5,14,0,0 +2013,6,7,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,2,0,1205,-1,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1425,-2,0,1624,-7,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1725,69,1,2250,84,1,0 +2013,9,6,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-6,0,717,-13,0,0 +2013,7,15,1,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2148,-7,0,555,-16,0,0 +2013,7,2,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,4,0,1911,-1,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,8,0,1310,17,1,0 +2013,7,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1058,19,1,1327,18,1,0 +2013,6,5,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,-2,0,2050,-10,0,0 +2013,9,24,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1919,-5,0,2119,-28,0,0 +2013,5,29,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,615,-1,0,725,-5,0,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1120,7,0,1213,-4,0,0 +2013,10,25,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-3,0,1622,-4,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2145,-7,0,2316,-27,0,0 +2013,8,18,7,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-4,0,1050,-18,0,0 +2013,10,21,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,959,1,0,1132,3,0,0 +2013,6,2,7,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,4,0,2210,-6,0,0 +2013,5,6,1,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,642,-2,0,800,-16,0,0 +2013,10,2,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,1,0,911,-14,0,0 +2013,10,31,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-4,0,817,-9,0,0 +2013,7,17,3,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,0,,1019,0,1,1 +2013,6,26,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,829,-6,0,0 +2013,4,8,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1600,12,0,1650,10,0,0 +2013,8,12,1,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1334,-4,0,1559,-28,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1645,25,1,2135,20,1,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,945,9,0,1755,-1,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,652,3,0,954,17,1,0 +2013,5,14,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,-14,0,2225,-23,0,0 +2013,4,11,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1800,-1,0,2055,-10,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1945,10,0,2150,14,0,0 +2013,10,7,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-4,0,840,-10,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2010,32,1,2250,26,1,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1500,9,0,1635,-12,0,0 +2013,4,18,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,15,1,2255,13,0,0 +2013,6,7,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2220,-3,0,209,65,1,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2000,-5,0,2045,-10,0,0 +2013,4,26,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,843,-7,0,1014,-17,0,0 +2013,10,13,7,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,20,1,445,-12,0,0 +2013,10,25,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,740,3,0,900,0,0,0 +2013,8,20,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,1,0,855,-14,0,0 +2013,4,28,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,845,-2,0,1005,-4,0,0 +2013,8,1,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1330,12,0,1340,17,1,0 +2013,7,1,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2226,9,0,622,11,0,0 +2013,9,30,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1047,6,0,1420,-2,0,0 +2013,8,7,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,540,-4,0,705,14,0,0 +2013,7,12,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-2,0,1357,-1,0,0 +2013,5,29,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,830,-5,0,937,-9,0,0 +2013,10,2,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1934,5,0,2149,-10,0,0 +2013,5,9,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1106,18,1,1316,14,0,0 +2013,6,13,4,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1251,-9,0,1501,-11,0,0 +2013,8,15,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1700,196,1,1818,198,1,0 +2013,9,22,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,-5,0,1907,-4,0,0 +2013,6,15,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,711,2,0,955,0,0,0 +2013,6,20,4,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1631,-3,0,1900,21,1,0 +2013,9,17,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1123,-5,0,1514,-6,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,0,0,1152,9,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,-4,0,2032,-13,0,0 +2013,7,8,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1525,20,1,1757,17,1,0 +2013,8,16,5,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1710,-6,0,1823,-21,0,0 +2013,5,7,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1550,42,1,1833,17,1,0 +2013,5,6,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1745,-6,0,1925,-15,0,0 +2013,7,15,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1731,-10,0,1821,5,0,0 +2013,5,4,6,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1040,0,0,1346,-2,0,0 +2013,10,21,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1611,0,0,1900,-6,0,0 +2013,4,2,2,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,0,0,913,-4,0,0 +2013,5,13,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1135,2,0,1300,-14,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1450,7,0,2020,11,0,0 +2013,8,10,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1030,-1,0,1335,-12,0,0 +2013,10,22,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,6,0,2000,6,0,0 +2013,5,21,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,116,1,1825,104,1,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1400,170,1,1650,212,1,0 +2013,10,21,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,759,-7,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,0,0,1546,-4,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-4,0,1442,-14,0,0 +2013,6,24,1,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,605,-9,0,1201,-10,0,0 +2013,7,23,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,12,0,1746,10,0,0 +2013,5,21,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-5,0,1414,-21,0,0 +2013,6,13,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,605,9,0,620,13,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,551,-8,0,700,-15,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1845,0,0,2010,-3,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-5,0,829,-6,0,0 +2013,5,26,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-6,0,2105,-24,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,745,-3,0,1315,-10,0,0 +2013,8,12,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1852,88,1,2130,106,1,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,-1,0,1640,-8,0,0 +2013,10,10,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,20,1,2020,13,0,0 +2013,7,9,2,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1604,36,1,1748,116,1,0 +2013,8,4,7,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-3,0,1132,-12,0,0 +2013,8,13,2,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-2,0,525,-6,0,0 +2013,8,14,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2043,-5,0,2159,-11,0,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1853,0,,2029,0,1,1 +2013,5,6,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1345,-7,0,1731,-15,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,941,-1,0,1112,-2,0,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1035,5,0,1419,-14,0,0 +2013,7,19,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,39,1,2300,33,1,0 +2013,7,4,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,-9,0,1315,4,0,0 +2013,8,7,3,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,625,3,0,940,6,0,0 +2013,8,4,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1355,-4,0,2206,-9,0,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,835,-1,0,1105,-7,0,0 +2013,10,10,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,8,0,1230,-6,0,0 +2013,7,3,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1014,-2,0,1605,-2,0,0 +2013,10,12,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1505,-2,0,1631,1,0,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-10,0,1916,-24,0,0 +2013,7,28,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,4,0,1450,7,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1515,28,1,1707,21,1,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,30,1,935,5,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,845,-8,0,1135,-1,0,0 +2013,4,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1340,-6,0,1707,-7,0,0 +2013,6,12,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,94,1,1150,92,1,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,815,37,1,940,38,1,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,730,-3,0,832,-13,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1605,-4,0,1900,-6,0,0 +2013,6,19,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-1,0,1035,-12,0,0 +2013,4,11,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2040,86,1,2303,88,1,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,-2,0,1405,-7,0,0 +2013,7,7,7,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-4,0,1153,-21,0,0 +2013,7,2,2,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1540,16,1,1825,-18,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1315,1,0,1430,-2,0,0 +2013,5,11,6,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,17,1,2015,8,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1530,0,0,1650,16,1,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,-4,0,1230,-5,0,0 +2013,4,3,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,9,0,1705,4,0,0 +2013,5,14,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,810,-30,0,0 +2013,7,8,1,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,0,,1952,0,1,1 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1810,-2,0,1925,3,0,0 +2013,8,2,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1709,82,1,1730,93,1,0 +2013,10,15,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,16,1,1415,10,0,0 +2013,6,15,6,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1334,-1,0,1629,-14,0,0 +2013,9,9,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,956,365,1,1309,379,1,0 +2013,10,6,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1810,-4,0,2125,-34,0,0 +2013,7,30,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1535,-4,0,1653,-6,0,0 +2013,8,29,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1725,1,0,1845,-8,0,0 +2013,4,29,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-3,0,1425,-6,0,0 +2013,6,20,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13244,Memphis International,Memphis,TN,130,-3,0,732,-11,0,0 +2013,7,23,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1859,-4,0,2105,-11,0,0 +2013,5,14,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,850,2,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2235,27,1,125,18,1,0 +2013,5,12,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,730,-5,0,853,-19,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,-8,0,1555,-28,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,957,-11,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1845,41,1,2155,10,0,0 +2013,7,13,6,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1515,4,0,1630,40,1,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1848,-3,0,2108,-4,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1505,-4,0,1830,-23,0,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1120,0,0,1249,-7,0,0 +2013,10,14,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1446,-6,0,1505,-10,0,0 +2013,6,28,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,9,0,846,0,0,0 +2013,4,5,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1042,6,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1344,31,1,1504,9,0,0 +2013,10,22,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,8,0,1330,1,0,0 +2013,7,27,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1325,30,1,2159,-10,0,0 +2013,8,23,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1212,-4,0,1324,-4,0,0 +2013,4,9,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-7,0,1105,3,0,0 +2013,7,11,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,14,0,2120,5,0,0 +2013,8,9,5,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2210,117,1,30,92,1,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1405,11,0,2150,9,0,0 +2013,7,29,1,EV,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1750,-3,0,1850,-16,0,0 +2013,4,12,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1635,-5,0,1740,-3,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1315,-3,0,1526,-8,0,0 +2013,5,23,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,13,0,2036,18,1,0 +2013,6,27,4,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2359,112,1,828,119,1,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1730,-6,0,2316,-10,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,13,0,1314,25,1,0 +2013,5,27,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2055,11,0,2200,7,0,0 +2013,9,11,3,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,-7,0,1636,5,0,0 +2013,10,31,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,850,6,0,1125,10,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1554,10,0,1848,-8,0,0 +2013,9,10,2,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-4,0,621,3,0,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1405,3,0,1515,-11,0,0 +2013,6,13,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-4,0,1122,-13,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,825,-3,0,1025,-9,0,0 +2013,6,14,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,7,0,635,1,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1255,-4,0,2131,-22,0,0 +2013,9,25,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,920,-1,0,954,1,0,0 +2013,5,25,6,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,-3,0,1355,8,0,0 +2013,8,14,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1240,2,0,1335,1,0,0 +2013,9,27,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,901,-18,0,0 +2013,6,11,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,740,12,0,855,-5,0,0 +2013,10,22,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2320,-9,0,830,-20,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,9,0,1909,-1,0,0 +2013,4,22,1,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1241,3,0,1534,50,1,0 +2013,8,14,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,204,1,1945,177,1,0 +2013,4,3,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,15,1,1840,9,0,0 +2013,7,15,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1820,-2,0,2200,-22,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1603,1,0,2018,-29,0,0 +2013,10,31,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,-2,0,1709,-18,0,0 +2013,7,5,5,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1505,-2,0,1645,-15,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,-3,0,1605,-8,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,814,-1,0,1051,-4,0,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1653,-3,0,1739,-6,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,2,0,1832,-3,0,0 +2013,5,9,4,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,945,4,0,1340,20,1,0 +2013,10,27,7,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,3,0,1440,0,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1936,-7,0,2110,-1,0,0 +2013,9,1,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1602,2,0,1801,-12,0,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1436,-3,0,1835,-4,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,2110,-7,0,20,-11,0,0 +2013,8,5,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-3,0,1440,0,0,0 +2013,8,19,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,12,0,1830,29,1,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1415,-5,0,1435,-7,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,654,-6,0,750,-14,0,0 +2013,10,14,1,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2200,-3,0,2334,-13,0,0 +2013,9,1,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,-2,0,1900,-3,0,0 +2013,7,10,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-10,0,820,-7,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1020,-1,0,1147,23,1,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,909,-9,0,1350,-6,0,0 +2013,6,2,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,-1,0,2113,10,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1510,-2,0,1522,9,0,0 +2013,5,11,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2030,-7,0,2257,-16,0,0 +2013,8,12,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,33,1,2214,29,1,0 +2013,5,15,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-12,0,1618,-18,0,0 +2013,7,17,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1452,-5,0,1538,-8,0,0 +2013,5,22,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-10,0,1213,-1,0,0 +2013,6,3,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,0,0,1350,-24,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,725,-2,0,906,-5,0,0 +2013,8,13,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,-2,0,2123,-6,0,0 +2013,6,6,4,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,715,-6,0,1010,-39,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,-5,0,1820,-10,0,0 +2013,8,22,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1645,5,0,1925,32,1,0 +2013,9,14,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2140,0,0,552,-9,0,0 +2013,4,22,1,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-4,0,912,-7,0,0 +2013,4,2,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1000,9,0,1259,8,0,0 +2013,9,11,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1003,-6,0,1254,-23,0,0 +2013,5,28,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-1,0,720,-2,0,0 +2013,4,26,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1405,12,0,2121,19,1,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,900,-3,0,1005,-2,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,2059,-2,0,12,2,0,0 +2013,6,19,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,828,-2,0,1013,-16,0,0 +2013,7,13,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-1,0,1110,-5,0,0 +2013,4,8,1,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2340,-7,0,624,-5,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,0,0,2250,-6,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,745,-5,0,936,38,1,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,8,0,2240,-17,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,845,6,0,1115,6,0,0 +2013,10,30,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1328,-6,0,1443,-2,0,0 +2013,8,10,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1502,-2,0,1607,-8,0,0 +2013,8,7,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,2050,-5,0,5,-11,0,0 +2013,4,30,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1835,2,0,2054,-3,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1540,5,0,1630,-6,0,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,900,-4,0,1145,-13,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,0,0,1445,15,1,0 +2013,6,7,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1940,-2,0,2050,-5,0,0 +2013,6,22,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,855,2,0,922,9,0,0 +2013,7,12,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,4,0,1615,4,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,141,1,2334,127,1,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-2,0,2030,-3,0,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1940,-3,0,2045,-8,0,0 +2013,10,19,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,600,-8,0,732,-15,0,0 +2013,10,24,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1935,5,0,2235,2,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,740,23,1,1305,15,1,0 +2013,6,28,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,0,,905,0,1,1 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,-6,0,1755,-16,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1420,59,1,1650,82,1,0 +2013,4,21,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1440,-2,0,1624,-23,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,548,-4,0,857,3,0,0 +2013,9,18,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,28,1,1715,31,1,0 +2013,7,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,29,1,1310,34,1,0 +2013,8,7,3,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,-5,0,2339,38,1,0 +2013,8,15,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1045,1,0,1306,15,1,0 +2013,8,1,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1842,78,1,2119,76,1,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,707,0,0,938,-6,0,0 +2013,9,7,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-6,0,1535,-8,0,0 +2013,8,23,5,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1707,39,1,2030,28,1,0 +2013,5,12,7,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1950,8,0,2205,-6,0,0 +2013,7,7,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1818,186,1,2149,190,1,0 +2013,5,13,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1025,13,0,1154,9,0,0 +2013,7,7,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-4,0,1434,16,1,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,935,0,0,1045,-11,0,0 +2013,4,18,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1415,-1,0,1545,-6,0,0 +2013,4,3,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-2,0,1520,-6,0,0 +2013,8,21,3,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-2,0,1529,-1,0,0 +2013,6,2,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-2,0,820,0,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,32,1,1045,19,1,0 +2013,7,31,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1124,-7,0,1227,-15,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2150,98,1,2340,81,1,0 +2013,10,7,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1655,-9,0,1753,-17,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1730,55,1,1935,50,1,0 +2013,4,21,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,1,0,1854,-11,0,0 +2013,6,5,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,-4,0,1910,-7,0,0 +2013,10,28,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1645,5,0,1925,-4,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,25,1,1605,24,1,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,2,0,1910,0,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,0,0,1430,4,0,0 +2013,10,6,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1845,-5,0,2101,-12,0,0 +2013,8,12,1,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-9,0,1241,-24,0,0 +2013,5,16,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1405,5,0,1955,4,0,0 +2013,7,12,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1515,51,1,1815,61,1,0 +2013,5,12,7,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1349,-7,0,1640,-9,0,0 +2013,8,8,4,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1819,-3,0,1900,-9,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,2,0,1908,-2,0,0 +2013,4,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1330,1,0,1455,10,0,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,6,0,1810,4,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,705,-1,0,910,-7,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,3,0,1621,4,0,0 +2013,4,25,4,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,-10,0,1845,-22,0,0 +2013,10,13,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,-2,0,2025,-15,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-3,0,1205,-7,0,0 +2013,5,11,6,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,5,0,2019,-21,0,0 +2013,4,22,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,55,1,1836,54,1,0 +2013,4,2,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,-4,0,2105,-3,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2015,9,0,2155,-5,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,945,4,0,1220,2,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,-1,0,1146,4,0,0 +2013,10,21,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-5,0,855,-20,0,0 +2013,5,27,1,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,-2,0,1005,-5,0,0 +2013,10,31,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1030,-3,0,1230,-11,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1135,0,0,1235,1,0,0 +2013,6,21,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,16,1,1730,11,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2215,-2,0,2340,-7,0,0 +2013,7,22,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1548,0,0,0 +2013,5,13,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,14,0,1110,32,1,0 +2013,7,17,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1005,1,0,1120,-11,0,0 +2013,5,18,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1625,-1,0,1745,-7,0,0 +2013,8,27,2,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1530,-7,0,1721,-5,0,0 +2013,7,16,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1820,-3,0,2105,2,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,730,0,0,825,-6,0,0 +2013,5,17,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1755,-4,0,2103,-13,0,0 +2013,8,17,6,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1317,-14,0,1610,-36,0,0 +2013,8,1,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1113,1,0,0 +2013,6,22,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,-3,0,1135,-8,0,0 +2013,8,5,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1112,-1,0,1236,2,0,0 +2013,8,14,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1918,50,1,2355,45,1,0 +2013,5,10,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-4,0,1604,-13,0,0 +2013,10,26,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1435,64,1,1555,53,1,0 +2013,5,9,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,61,1,1749,58,1,0 +2013,7,17,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,600,-2,0,735,-7,0,0 +2013,8,4,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,735,-5,0,855,1,0,0 +2013,6,26,3,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1725,4,0,2100,2,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,947,24,1,0 +2013,5,26,7,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1750,-14,0,1908,-20,0,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2011,17,1,2346,24,1,0 +2013,10,14,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-3,0,959,-6,0,0 +2013,6,15,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,-6,0,2124,-12,0,0 +2013,7,8,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,70,1,14,54,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1740,22,1,1840,20,1,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-4,0,2219,-4,0,0 +2013,9,3,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1715,-5,0,1837,-22,0,0 +2013,8,4,7,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,57,1,739,45,1,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,22,1,1430,5,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1415,49,1,1435,60,1,0 +2013,5,2,4,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,620,0,0,750,0,0,0 +2013,5,11,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1430,9,0,1540,6,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,819,6,0,1146,-6,0,0 +2013,7,30,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1305,-4,0,1440,-11,0,0 +2013,5,8,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,0,0,1209,-6,0,0 +2013,4,12,5,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,930,-5,0,1152,1,0,0 +2013,6,1,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1037,14,0,1410,3,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,-1,0,1650,2,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,4,0,745,-2,0,0 +2013,8,31,6,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-1,0,1115,-24,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2112,-4,0,2233,-12,0,0 +2013,6,1,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,-3,0,935,-10,0,0 +2013,7,6,6,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,933,-3,0,1332,9,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1450,27,1,1555,31,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1230,-2,0,1655,17,1,0 +2013,4,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1330,66,1,1455,54,1,0 +2013,6,18,2,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1120,-5,0,1400,-15,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1725,18,1,1955,5,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2205,298,1,2328,290,1,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,640,-5,0,820,-10,0,0 +2013,5,1,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2224,0,0,615,7,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1025,23,1,1137,8,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,905,55,1,1205,59,1,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1117,-5,0,1209,-20,0,0 +2013,10,14,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1203,-9,0,1453,-21,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1155,-2,0,1410,-12,0,0 +2013,8,25,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1925,14,0,2122,4,0,0 +2013,10,14,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1913,-9,0,1932,-3,0,0 +2013,10,24,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,7,0,2050,6,0,0 +2013,4,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1615,18,1,1740,13,0,0 +2013,7,17,3,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,3,0,1140,-3,0,0 +2013,7,1,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,67,1,1911,59,1,0 +2013,7,17,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-8,0,1949,-16,0,0 +2013,6,23,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,5,0,1130,13,0,0 +2013,10,29,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1256,0,0,1619,-19,0,0 +2013,7,23,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,930,-6,0,0 +2013,5,8,3,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,-5,0,1630,-17,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-3,0,1013,19,1,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,135,1,2023,133,1,0 +2013,9,16,1,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,700,-3,0,930,0,0,0 +2013,5,8,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-8,0,628,-17,0,0 +2013,10,26,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1325,14,0,1445,12,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1030,-3,0,1400,-10,0,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1915,14,0,2230,12,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1925,5,0,2055,14,0,0 +2013,8,7,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,930,12,0,1059,2,0,0 +2013,8,21,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,645,-1,0,700,-3,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1213,28,1,1434,27,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,47,1,1500,24,1,0 +2013,7,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1108,26,1,1405,16,1,0 +2013,10,31,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,59,1,757,96,1,0 +2013,10,21,1,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2030,-1,0,2147,-3,0,0 +2013,10,30,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,2050,-1,0,2343,15,1,0 +2013,6,18,2,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,58,1,2213,33,1,0 +2013,7,2,2,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,830,74,1,1015,56,1,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,3,0,1455,-5,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1225,4,0,1400,4,0,0 +2013,10,11,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-5,0,1340,-17,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1000,3,0,1715,7,0,0 +2013,8,25,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,1,0,1846,-9,0,0 +2013,8,18,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-8,0,1913,5,0,0 +2013,9,26,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1355,3,0,1717,-9,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-3,0,830,-13,0,0 +2013,8,4,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,-5,0,1031,-12,0,0 +2013,4,27,6,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1140,-4,0,1425,-35,0,0 +2013,8,24,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1138,-3,0,1429,-5,0,0 +2013,5,4,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,930,5,0,1255,-21,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1617,7,0,1739,4,0,0 +2013,4,11,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1910,-3,0,2120,-19,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1750,-9,0,1944,-26,0,0 +2013,5,30,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,700,-9,0,825,-12,0,0 +2013,5,24,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-4,0,1317,-9,0,0 +2013,10,7,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,16,1,1939,9,0,0 +2013,5,20,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1456,-12,0,1837,-20,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-7,0,1910,-22,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2056,3,0,2235,-18,0,0 +2013,7,16,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,0,0,1825,-3,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,1,0,1500,5,0,0 +2013,4,21,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,3,0,1329,9,0,0 +2013,6,13,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,-15,0,2135,-14,0,0 +2013,8,16,5,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,-5,0,2203,-6,0,0 +2013,5,29,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,740,-8,0,805,-17,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2235,-9,0,28,-25,0,0 +2013,7,3,3,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,805,15,1,924,16,1,0 +2013,7,15,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1651,-4,0,2056,-2,0,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,742,0,0,900,5,0,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,11,0,2250,21,1,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,958,10,0,1318,15,1,0 +2013,9,4,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2105,-4,0,2220,-18,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,3,0,2320,-6,0,0 +2013,7,5,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,8,0,2110,-9,0,0 +2013,4,2,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,0,0,2325,1,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,920,2,0,1020,1,0,0 +2013,8,30,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1435,14,0,1605,-11,0,0 +2013,4,13,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1405,-3,0,1715,-28,0,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1227,33,1,1422,52,1,0 +2013,9,2,1,VX,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,2000,-10,0,2355,-29,0,0 +2013,8,19,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1016,-7,0,1140,-9,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,4,0,1502,-7,0,0 +2013,7,25,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-2,0,602,-14,0,0 +2013,6,11,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1550,-10,0,0 +2013,9,22,7,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-9,0,1815,0,0,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,835,0,0,1025,-2,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-1,0,1125,3,0,0 +2013,9,16,1,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1530,-3,0,1715,-11,0,0 +2013,4,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1145,-3,0,1258,-3,0,0 +2013,8,4,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1853,58,1,2059,55,1,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,7,0,1000,7,0,0 +2013,10,30,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1200,-2,0,1315,-10,0,0 +2013,7,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-8,0,707,-16,0,0 +2013,10,6,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1145,6,0,1250,-18,0,0 +2013,4,11,4,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,945,-3,0,1128,-4,0,0 +2013,6,11,2,VX,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,800,1,0,1610,-2,0,0 +2013,7,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,8,0,1921,2,0,0 +2013,8,15,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,710,-1,0,815,-8,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1948,11,0,2253,20,1,0 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-3,0,938,-6,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1530,-2,0,1717,10,0,0 +2013,8,5,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1338,-3,0,1616,5,0,0 +2013,4,1,1,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1045,-3,0,1320,-7,0,0 +2013,5,13,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2224,19,1,610,11,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,-2,0,2146,11,0,0 +2013,8,21,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1712,-4,0,1849,-3,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,705,27,1,946,10,0,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,700,1,0,848,-3,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1330,10,0,1445,20,1,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,954,-5,0,1531,-10,0,0 +2013,9,23,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1802,0,0,1850,-6,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,5,0,2225,10,0,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,-3,0,1504,-1,0,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2359,-7,0,644,0,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1824,2,0,29,-11,0,0 +2013,7,17,3,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,710,-7,0,906,-15,0,0 +2013,7,3,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,925,15,1,1153,9,0,0 +2013,7,28,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-8,0,607,-24,0,0 +2013,9,10,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-10,0,800,-18,0,0 +2013,6,28,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1405,3,0,1455,-1,0,0 +2013,5,12,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,2,0,1732,4,0,0 +2013,5,10,5,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1711,35,1,1923,20,1,0 +2013,10,19,6,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,820,-2,0,1038,-10,0,0 +2013,7,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,25,1,2115,8,0,0 +2013,8,10,6,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,0,0,1145,-1,0,0 +2013,5,7,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1842,0,0,2133,14,0,0 +2013,4,18,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1435,0,,2022,0,1,1 +2013,6,24,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,847,41,1,933,48,1,0 +2013,8,25,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,-4,0,1025,-6,0,0 +2013,8,28,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,750,3,0,900,-6,0,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1955,-6,0,2142,-22,0,0 +2013,4,29,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,0,0,655,-11,0,0 +2013,9,28,6,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-5,0,1415,-7,0,0 +2013,9,12,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1236,-11,0,1311,-4,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,-6,0,916,-11,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-2,0,1247,-7,0,0 +2013,8,23,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,800,-4,0,822,17,1,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1530,-6,0,1850,-5,0,0 +2013,8,20,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,700,-3,0,937,-3,0,0 +2013,6,30,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-1,0,1025,-8,0,0 +2013,4,9,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1440,71,1,1510,102,1,0 +2013,5,4,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-3,0,1310,-2,0,0 +2013,4,28,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-6,0,1620,-19,0,0 +2013,9,30,1,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2200,-5,0,2334,-6,0,0 +2013,10,14,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,740,-3,0,859,-3,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,953,-5,0,1044,-6,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1426,1,0,1705,1,0,0 +2013,4,22,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1709,9,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,15,1,1831,13,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,-4,0,1937,38,1,0 +2013,5,25,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-7,0,1104,7,0,0 +2013,7,14,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,-3,0,1445,-7,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-1,0,1232,-7,0,0 +2013,10,10,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1320,-10,0,1440,-17,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1917,33,1,2202,12,0,0 +2013,8,10,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1303,12,0,1631,28,1,0 +2013,10,17,4,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1519,-5,0,1747,-17,0,0 +2013,8,6,2,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,600,-4,0,721,-20,0,0 +2013,6,28,5,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,0,,1950,0,1,1 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1020,-1,0,1638,-1,0,0 +2013,10,9,3,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1000,-1,0,1335,6,0,0 +2013,4,9,2,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,730,254,1,1025,249,1,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,11,0,1030,15,1,0 +2013,5,2,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1740,115,1,1956,91,1,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,0,,1710,0,1,1 +2013,10,16,3,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1215,-2,0,2018,-16,0,0 +2013,10,28,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2040,-1,0,2359,27,1,0 +2013,9,4,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1739,-4,0,1858,-17,0,0 +2013,4,20,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1625,6,0,1950,-15,0,0 +2013,4,17,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-5,0,1301,4,0,0 +2013,10,12,6,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1200,-4,0,1438,6,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1630,-1,0,1822,8,0,0 +2013,9,3,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1508,24,1,0 +2013,4,21,7,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,940,-3,0,1105,-4,0,0 +2013,8,13,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,-6,0,855,-16,0,0 +2013,7,14,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-2,0,2140,-1,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-6,0,905,6,0,0 +2013,6,2,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-5,0,2251,-7,0,0 +2013,6,14,5,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,625,-9,0,807,-3,0,0 +2013,6,27,4,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-10,0,1223,-21,0,0 +2013,7,10,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,124,1,2155,131,1,0 +2013,7,14,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,8,0,1258,6,0,0 +2013,6,26,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-1,0,900,-10,0,0 +2013,10,13,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-1,0,1652,0,0,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1525,12,0,1704,45,1,0 +2013,5,3,5,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,807,-7,0,921,-17,0,0 +2013,6,21,5,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,647,-2,0,809,9,0,0 +2013,4,21,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,0,0,2240,-3,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,104,1,1320,123,1,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1935,39,1,2050,32,1,0 +2013,9,18,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1025,-1,0,1305,-4,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1315,40,1,1420,40,1,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-7,0,1811,-6,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-5,0,855,-9,0,0 +2013,5,7,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,-1,0,1900,15,1,0 +2013,5,6,1,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1201,-3,0,1313,-10,0,0 +2013,8,31,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1140,1,0,1304,0,0,0 +2013,7,30,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,818,-6,0,1359,-13,0,0 +2013,9,30,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1140,0,0,1305,-10,0,0 +2013,9,2,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,66,1,2045,82,1,0 +2013,10,21,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-5,0,1248,-13,0,0 +2013,6,2,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1111,2,0,1305,-22,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1310,-8,0,1628,-22,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,730,8,0,1025,5,0,0 +2013,10,11,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1005,-4,0,1306,2,0,0 +2013,8,15,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2036,0,0,2209,-14,0,0 +2013,9,28,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1019,-6,0,1300,13,0,0 +2013,8,29,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,535,1,0,1122,-6,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,10,0,2037,-4,0,0 +2013,5,28,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,832,2,0,1100,-20,0,0 +2013,7,26,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1740,8,0,2108,7,0,0 +2013,10,9,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,635,-5,0,755,-10,0,0 +2013,9,26,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2035,31,1,2150,21,1,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,47,1,1310,46,1,0 +2013,7,9,2,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-5,0,1234,8,0,0 +2013,4,29,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1230,8,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,814,-4,0,958,-37,0,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,6,0,1238,33,1,0 +2013,10,19,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1540,-4,0,1909,-17,0,0 +2013,9,1,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1119,-26,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,-3,0,1930,-3,0,0 +2013,5,10,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-3,0,2215,14,0,0 +2013,9,13,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,856,0,0,0 +2013,8,25,7,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1721,60,1,2300,46,1,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2039,-6,0,2341,3,0,0 +2013,7,20,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-4,0,1938,-11,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2100,-3,0,2230,-17,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,920,2,0,1650,-12,0,0 +2013,7,6,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1856,-4,0,2140,-26,0,0 +2013,7,24,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2205,30,1,2330,19,1,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1505,9,0,1740,2,0,0 +2013,5,13,1,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,2,0,1939,-18,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1630,19,1,1755,24,1,0 +2013,5,12,7,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1650,28,1,1813,60,1,0 +2013,8,13,2,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1005,0,,1209,0,1,1 +2013,6,29,6,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,11,0,2101,25,1,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2235,1,0,2325,-7,0,0 +2013,8,3,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,755,-3,0,940,-10,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,66,1,1335,64,1,0 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2105,1,0,2301,-3,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1149,-6,0,1400,-22,0,0 +2013,5,22,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-8,0,1936,-8,0,0 +2013,8,30,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,940,-4,0,1032,-22,0,0 +2013,10,21,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1803,-2,0,1959,-6,0,0 +2013,5,16,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,54,1,2130,34,1,0 +2013,9,16,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-9,0,2214,-8,0,0 +2013,7,22,1,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,47,1,2305,55,1,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-8,0,1245,1,0,0 +2013,7,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-4,0,1735,-8,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1700,4,0,1800,-7,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2100,-5,0,2225,-8,0,0 +2013,4,17,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,2,0,1719,-8,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,805,5,0,1305,5,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2015,18,1,2229,33,1,0 +2013,10,9,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-1,0,1710,-12,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,-5,0,1620,-2,0,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,-2,0,1018,2,0,0 +2013,4,10,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1641,0,,1840,0,1,1 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1701,8,0,1833,5,0,0 +2013,5,26,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,3,0,1854,0,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,545,2,0,1110,-10,0,0 +2013,4,23,2,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,46,1,1956,58,1,0 +2013,4,10,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1135,112,1,2010,131,1,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,905,-1,0,1058,-4,0,0 +2013,6,30,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1850,31,1,2015,23,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2146,28,1,2252,5,0,0 +2013,4,17,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,7,0,1930,5,0,0 +2013,7,26,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1145,18,1,1421,26,1,0 +2013,9,21,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1920,-4,0,2040,-10,0,0 +2013,8,29,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,932,2,0,1220,2,0,0 +2013,6,8,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-7,0,1033,-43,0,0 +2013,10,28,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1612,-8,0,1820,-16,0,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1425,-3,0,2300,-23,0,0 +2013,4,14,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1531,-2,0,1643,-4,0,0 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1121,23,1,1225,44,1,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-1,0,1010,-14,0,0 +2013,10,6,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1530,4,0,1655,3,0,0 +2013,7,11,4,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1425,38,1,1554,34,1,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2040,-2,0,2155,-8,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2045,62,1,2258,63,1,0 +2013,8,1,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,630,3,0,645,-6,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,33,1,1855,34,1,0 +2013,7,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1615,-1,0,1710,-12,0,0 +2013,6,17,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,113,1,1155,115,1,0 +2013,7,4,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1520,-5,0,1710,-18,0,0 +2013,8,27,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-10,0,2354,-21,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,-7,0,1440,-14,0,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,9,0,1355,2,0,0 +2013,5,28,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,10,0,2240,5,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,705,7,0,840,3,0,0 +2013,9,18,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-3,0,1226,-4,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1050,0,0,1525,-10,0,0 +2013,6,28,5,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-9,0,1305,-20,0,0 +2013,4,18,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1420,5,0,1505,4,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1805,9,0,2128,-16,0,0 +2013,10,20,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-11,0,1858,-21,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,136,1,1558,201,1,0 +2013,8,9,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1030,3,0,1130,7,0,0 +2013,9,26,4,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1852,-5,0,2030,-17,0,0 +2013,4,15,1,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1520,-3,0,1730,-7,0,0 +2013,6,18,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2125,0,,2250,0,1,1 +2013,10,10,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1800,-4,0,1845,3,0,0 +2013,8,11,7,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,830,-6,0,1113,-4,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,935,-1,0,1115,-11,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,2,0,1257,6,0,0 +2013,4,21,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1505,-4,0,1849,-3,0,0 +2013,10,14,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1019,1,0,1142,-7,0,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1650,40,1,1748,29,1,0 +2013,5,6,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,740,7,0,805,-10,0,0 +2013,9,30,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,-6,0,842,-12,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,-1,0,2250,-4,0,0 +2013,8,3,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,750,3,0,1542,-33,0,0 +2013,6,17,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-1,0,1410,-22,0,0 +2013,7,18,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-2,0,1250,-4,0,0 +2013,6,16,7,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1850,-1,0,2014,-2,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1455,-3,0,1807,-11,0,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1506,-3,0,1737,-16,0,0 +2013,5,10,5,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,815,-3,0,1620,-15,0,0 +2013,5,25,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1625,-3,0,1909,-8,0,0 +2013,5,26,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1321,-4,0,1447,-6,0,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2015,-1,0,2125,-11,0,0 +2013,9,26,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1749,-7,0,1924,-3,0,0 +2013,5,2,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1544,-6,0,1700,-2,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,-3,0,2020,-4,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1020,5,0,1430,0,0,0 +2013,9,7,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,0,0,1200,-12,0,0 +2013,8,9,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1755,-1,0,1845,-4,0,0 +2013,6,27,4,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1730,-3,0,1941,-6,0,0 +2013,9,18,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2025,-4,0,2125,-15,0,0 +2013,6,16,7,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2147,-5,0,555,-25,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,930,-4,0,1300,-12,0,0 +2013,9,29,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,815,-1,0,940,-6,0,0 +2013,10,16,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1210,-5,0,1355,4,0,0 +2013,4,10,3,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,831,-2,0,1038,-10,0,0 +2013,4,11,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1407,50,1,1524,54,1,0 +2013,5,29,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-7,0,1558,-4,0,0 +2013,9,2,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,46,1,1959,68,1,0 +2013,5,22,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,20,1,1610,11,0,0 +2013,5,15,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,-1,0,2054,-16,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1505,-4,0,1815,-8,0,0 +2013,10,25,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,2,0,1115,13,0,0 +2013,10,28,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-8,0,1310,-20,0,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1457,63,1,1754,106,1,0 +2013,8,10,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1745,-6,0,1950,-34,0,0 +2013,8,24,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,1,0,1120,-1,0,0 +2013,8,12,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,700,0,0,805,-7,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,2,0,2347,4,0,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1310,-5,0,1615,-29,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,1230,12,0,2030,25,1,0 +2013,10,7,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1340,1,0,1618,-3,0,0 +2013,4,1,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,0,0,2150,-12,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,66,1,1904,62,1,0 +2013,5,7,2,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-5,0,2058,-16,0,0 +2013,9,29,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,806,-6,0,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,20,1,1646,51,1,0 +2013,7,24,3,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1708,4,0,2020,7,0,0 +2013,7,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-5,0,913,-17,0,0 +2013,8,1,4,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-5,0,1214,-18,0,0 +2013,6,5,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1130,-2,0,1131,-2,0,0 +2013,10,1,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-5,0,1256,-10,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1815,-3,0,2015,-2,0,0 +2013,6,6,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-4,0,1236,0,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1210,48,1,1410,43,1,0 +2013,10,7,1,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,1,0,1737,11,0,0 +2013,8,15,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-7,0,1715,-9,0,0 +2013,9,8,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,-2,0,1435,-2,0,0 +2013,5,11,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1205,9,0,1305,6,0,0 +2013,5,19,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1410,7,0,1510,-3,0,0 +2013,8,2,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,1,0,1025,-11,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,952,-1,0,1154,-21,0,0 +2013,5,30,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,25,1,1900,53,1,0 +2013,9,18,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,635,-9,0,925,-13,0,0 +2013,4,4,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,612,-7,0,742,-3,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1415,-5,0,1550,-10,0,0 +2013,4,7,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1750,-5,0,1900,24,1,0 +2013,4,15,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,730,7,0,1330,-15,0,0 +2013,7,18,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1435,109,1,1740,112,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,1,0,1825,19,1,0 +2013,10,14,1,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1005,-4,0,1230,3,0,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,-2,0,1200,-3,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-6,0,2347,-12,0,0 +2013,10,17,4,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1620,0,0,1825,-18,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-5,0,1030,-11,0,0 +2013,5,13,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,930,31,1,1100,24,1,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1704,-4,0,1750,-2,0,0 +2013,9,8,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2135,-8,0,530,-5,0,0 +2013,5,3,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-4,0,1330,27,1,0 +2013,5,17,5,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,710,0,0,831,31,1,0 +2013,10,27,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,200,1,755,199,1,0 +2013,5,23,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,615,0,0,715,1,0,0 +2013,9,28,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-10,0,1125,-7,0,0 +2013,10,22,2,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,755,7,0,1226,-28,0,0 +2013,5,20,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,0,0,1002,18,1,0 +2013,9,21,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-8,0,1755,-17,0,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2214,-7,0,615,-6,0,0 +2013,8,2,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1602,-2,0,1700,-10,0,0 +2013,4,9,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,9,0,2040,-4,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1530,6,0,1811,-1,0,0 +2013,10,27,7,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,8,0,1605,-1,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1425,4,0,1648,5,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,15,1,1324,-4,0,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,605,-5,0,719,-2,0,0 +2013,7,11,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,634,32,1,759,25,1,0 +2013,8,18,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1025,-8,0,1135,33,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,5,0,1636,1,0,0 +2013,5,30,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-4,0,1801,1,0,0 +2013,6,4,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1020,-5,0,1058,-18,0,0 +2013,4,4,4,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-10,0,919,-13,0,0 +2013,8,28,3,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1822,61,1,2007,61,1,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1317,1,0,1609,36,1,0 +2013,4,2,2,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,630,-5,0,740,-5,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1855,45,1,2019,55,1,0 +2013,4,19,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,101,1,2356,82,1,0 +2013,7,16,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-6,0,1155,-3,0,0 +2013,7,8,1,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,-6,0,1711,-9,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,-4,0,1954,-6,0,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,635,35,1,915,22,1,0 +2013,7,29,1,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1225,-4,0,1410,-7,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,13,0,2330,57,1,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,600,-3,0,746,-11,0,0 +2013,5,23,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,4,0,1140,28,1,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,920,29,1,1235,18,1,0 +2013,4,24,3,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,-3,0,1445,-7,0,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2015,-5,0,2123,-7,0,0 +2013,7,9,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,-4,0,1420,-11,0,0 +2013,5,31,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,856,58,1,1040,31,1,0 +2013,9,2,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1805,-9,0,2045,-16,0,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,805,0,0,1100,0,0,0 +2013,10,23,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-12,0,1704,-14,0,0 +2013,4,4,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,843,-5,0,1105,13,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-8,0,1410,8,0,0 +2013,5,15,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2143,-3,0,2258,3,0,0 +2013,5,24,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,800,16,1,1013,19,1,0 +2013,10,12,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,820,-2,0,930,3,0,0 +2013,10,1,2,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1015,3,0,1500,0,0,0 +2013,4,9,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1300,-3,0,1435,-16,0,0 +2013,8,17,6,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-8,0,754,3,0,0 +2013,7,9,2,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1312,11,0,0 +2013,9,16,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,615,-2,0,740,-7,0,0 +2013,10,21,1,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1120,26,1,1340,35,1,0 +2013,8,11,7,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1648,-9,0,1817,-11,0,0 +2013,6,1,6,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,715,-2,0,1010,-5,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1930,-3,0,2035,-14,0,0 +2013,9,22,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-6,0,1650,-15,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,0,,2155,0,1,1 +2013,7,24,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,3,0,1750,-3,0,0 +2013,7,21,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-7,0,1712,-7,0,0 +2013,5,14,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,826,-3,0,951,-13,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-6,0,1300,5,0,0 +2013,10,30,3,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1715,4,0,2205,-23,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1335,-9,0,1710,0,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-5,0,1835,-13,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1500,-3,0,1549,-12,0,0 +2013,4,28,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1009,-7,0,1358,-8,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-1,0,2037,-7,0,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,9,0,1350,12,0,0 +2013,5,23,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1310,43,1,1410,35,1,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1010,-1,0,1355,-14,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1000,-3,0,1105,1,0,0 +2013,5,10,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1210,13,0,1330,7,0,0 +2013,6,29,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1844,-1,0,2000,-12,0,0 +2013,10,11,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2030,-1,0,2259,-5,0,0 +2013,5,19,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,5,0,1345,-21,0,0 +2013,7,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,2020,-2,0,2214,-1,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,850,-4,0,1115,-16,0,0 +2013,9,27,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,50,0,0,620,-26,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1315,-5,0,1705,-18,0,0 +2013,10,23,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,835,-6,0,1031,-17,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,2,0,2320,6,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,655,3,0,1120,-5,0,0 +2013,4,25,4,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,140,-1,0,716,-22,0,0 +2013,6,4,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1307,-13,0,1459,-8,0,0 +2013,10,3,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1114,-5,0,1217,-12,0,0 +2013,6,22,6,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,-6,0,1800,-7,0,0 +2013,8,3,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1759,31,1,1916,45,1,0 +2013,10,6,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,-7,0,1100,-7,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1755,1,0,2055,-15,0,0 +2013,6,24,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,1,0,840,-3,0,0 +2013,10,29,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1831,-8,0,2125,-15,0,0 +2013,6,27,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-2,0,1200,-3,0,0 +2013,10,12,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1216,-8,0,1340,-14,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,64,1,2155,85,1,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1945,-5,0,2125,-15,0,0 +2013,5,19,7,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1243,14,0,1420,9,0,0 +2013,5,23,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,4,0,1105,5,0,0 +2013,5,2,4,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1755,-4,0,2115,-51,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,825,-4,0,1005,-17,0,0 +2013,7,12,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,905,-2,0,1225,-5,0,0 +2013,5,20,1,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-13,0,1135,0,0,0 +2013,4,23,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1618,-1,0,1800,38,1,0 +2013,7,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1358,-7,0,1651,-7,0,0 +2013,9,22,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,-5,0,1645,-17,0,0 +2013,7,26,5,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,8,0,719,9,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,-2,0,1730,-12,0,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,-1,0,1633,-3,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,1,0,2305,-1,0,0 +2013,8,7,3,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1653,-2,0,1757,-7,0,0 +2013,7,22,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1810,-1,0,1815,6,0,0 +2013,6,21,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,837,-6,0,952,-14,0,0 +2013,7,15,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,650,7,0,720,-2,0,0 +2013,6,2,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,908,-27,0,0 +2013,9,18,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1127,-3,0,1208,5,0,0 +2013,10,21,1,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1642,-15,0,0 +2013,8,7,3,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,12,0,1400,8,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1310,6,0,1525,7,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,12,0,1725,18,1,0 +2013,9,5,4,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,0,0,1445,5,0,0 +2013,6,24,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,930,0,0,1055,-12,0,0 +2013,8,30,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1930,-5,0,2246,-25,0,0 +2013,6,5,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,0,0,1412,16,1,0 +2013,10,14,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,-1,0,1837,2,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,730,-1,0,1058,-20,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1518,2,0,1644,16,1,0 +2013,4,21,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1310,-2,0,1715,-16,0,0 +2013,6,22,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1936,112,1,2237,107,1,0 +2013,5,1,3,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-9,0,802,8,0,0 +2013,9,12,4,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1519,-6,0,1814,-5,0,0 +2013,10,26,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,845,-2,0,944,-4,0,0 +2013,7,15,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1801,72,1,2026,68,1,0 +2013,9,8,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1107,-9,0,1308,-17,0,0 +2013,4,11,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,22,1,2005,82,1,0 +2013,7,20,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1225,-19,0,0 +2013,5,26,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-9,0,2359,-19,0,0 +2013,10,11,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,107,1,2100,74,1,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,28,1,2053,41,1,0 +2013,5,11,6,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-1,0,803,20,1,0 +2013,4,4,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1532,9,0,1830,9,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1935,-1,0,2025,-13,0,0 +2013,10,9,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,919,-2,0,1015,0,0,0 +2013,10,15,2,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1310,16,1,1525,-1,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2020,14,0,2145,-3,0,0 +2013,9,14,6,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1240,10,0,1935,2,0,0 +2013,8,5,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1825,7,0,2126,-13,0,0 +2013,8,17,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,55,-7,0,459,-35,0,0 +2013,4,24,3,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,236,1,1925,232,1,0 +2013,8,25,7,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,-2,0,740,-12,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2109,-8,0,2314,-23,0,0 +2013,8,9,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1230,-5,0,1419,-1,0,0 +2013,4,25,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-5,0,1410,-18,0,0 +2013,4,16,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1846,-11,0,1929,0,0,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,120,1,2153,122,1,0 +2013,6,9,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1600,0,0,1737,-9,0,0 +2013,4,11,4,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-19,0,1324,-7,0,0 +2013,7,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1720,7,0,1900,-1,0,0 +2013,7,26,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,820,0,0,1001,-12,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1810,21,1,1946,8,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-3,0,1437,-5,0,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,700,-5,0,809,-7,0,0 +2013,7,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1745,61,1,1929,54,1,0 +2013,9,28,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12953,LaGuardia,New York,NY,940,-4,0,1144,-12,0,0 +2013,4,21,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-7,0,1340,-34,0,0 +2013,8,9,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,0,0,1130,-5,0,0 +2013,8,30,5,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1157,-3,0,1737,-10,0,0 +2013,7,7,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1940,1,0,2035,-5,0,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,2,0,1505,-1,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,-4,0,14,-13,0,0 +2013,8,18,7,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1745,-5,0,2036,-5,0,0 +2013,5,21,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,45,1,2310,28,1,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1935,35,1,2130,20,1,0 +2013,9,9,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,845,-5,0,1140,-12,0,0 +2013,7,26,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-10,0,1302,-10,0,0 +2013,8,3,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,18,1,1118,12,0,0 +2013,4,12,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,268,1,1145,257,1,0 +2013,8,14,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,620,-5,0,750,-1,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-4,0,1024,-6,0,0 +2013,4,21,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,810,4,0,948,23,1,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,35,1,1230,31,1,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1847,17,1,18,9,0,0 +2013,4,21,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1125,-9,0,1130,-2,0,0 +2013,10,20,7,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1005,3,0,1130,-11,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1800,10,0,2030,-7,0,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,740,29,1,900,44,1,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-2,0,1505,-13,0,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,-5,0,1420,-7,0,0 +2013,9,21,6,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,-1,0,2013,-8,0,0 +2013,6,21,5,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-3,0,2003,-13,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1605,-10,0,2159,-29,0,0 +2013,7,17,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1455,5,0,1640,-1,0,0 +2013,9,2,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-6,0,1704,23,1,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1645,-5,0,1855,-7,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1505,-4,0,1650,-4,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1945,0,,2150,0,1,1 +2013,4,9,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,0,,725,0,1,1 +2013,9,22,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-10,0,1235,1,0,0 +2013,8,18,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1835,-6,0,2035,-15,0,0 +2013,5,22,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,725,9,0,935,5,0,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,-10,0,2043,-15,0,0 +2013,4,14,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2055,107,1,2230,150,1,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,-1,0,1145,-9,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,935,-5,0,1145,-6,0,0 +2013,7,19,5,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1708,12,0,1842,-9,0,0 +2013,7,31,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1120,0,0,1220,7,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1255,-4,0,1355,-18,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1801,19,1,2014,-8,0,0 +2013,7,20,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,38,1,1125,45,1,0 +2013,4,7,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,935,-15,0,1055,-24,0,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2107,-5,0,2219,-18,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,4,0,2320,-16,0,0 +2013,10,27,7,OO,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-9,0,1512,-15,0,0 +2013,8,30,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,5,0,1825,-7,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,47,1,2125,37,1,0 +2013,8,11,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,835,-4,0,1015,18,1,0 +2013,6,16,7,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,900,98,1,1215,95,1,0 +2013,4,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1535,-5,0,1649,10,0,0 +2013,4,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-3,0,1630,-18,0,0 +2013,8,19,1,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,920,0,0,1040,-6,0,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1710,5,0,1915,7,0,0 +2013,7,16,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,745,-10,0,817,-5,0,0 +2013,4,12,5,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1418,-3,0,1728,-6,0,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,14,0,1355,6,0,0 +2013,4,4,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-6,0,2314,-10,0,0 +2013,6,12,3,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,2020,6,0,2300,-3,0,0 +2013,7,19,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1226,5,0,1343,-1,0,0 +2013,8,14,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,-11,0,1712,-1,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-7,0,1114,15,1,0 +2013,9,17,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-1,0,1100,-5,0,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,-5,0,2329,-15,0,0 +2013,7,30,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-6,0,1052,6,0,0 +2013,7,29,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1855,-3,0,2009,-9,0,0 +2013,6,5,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,-3,0,800,-5,0,0 +2013,4,4,4,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-1,0,745,-15,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,46,1,2330,83,1,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2140,84,1,2250,85,1,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2050,67,1,2252,59,1,0 +2013,4,5,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-7,0,811,-18,0,0 +2013,10,8,2,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,-1,0,1400,-6,0,0 +2013,10,16,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1223,-6,0,1335,-23,0,0 +2013,10,14,1,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,950,-1,0,1135,2,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,19,1,1515,13,0,0 +2013,9,9,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1243,-18,0,0 +2013,7,19,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,830,-3,0,1028,-3,0,0 +2013,8,28,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,50,1,1231,34,1,0 +2013,7,7,7,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,941,10,0,1211,14,0,0 +2013,7,21,7,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,46,1,1740,81,1,0 +2013,4,25,4,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1559,-2,0,1814,24,1,0 +2013,8,8,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,12,0,1440,5,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,840,-4,0,1040,14,0,0 +2013,7,25,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-4,0,930,-12,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1338,-1,0,1634,1,0,0 +2013,4,29,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1545,-3,0,1710,-13,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,29,1,2115,25,1,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,0,0,1925,0,0,0 +2013,6,8,6,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1045,1,0,1320,-1,0,0 +2013,7,1,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,-3,0,2245,-17,0,0 +2013,5,3,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1213,-1,0,1353,12,0,0 +2013,4,1,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-2,0,1335,-5,0,0 +2013,5,27,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,70,1,1355,64,1,0 +2013,5,3,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,34,1,2122,30,1,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2129,6,0,2248,-12,0,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2231,10,0,2351,6,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1855,51,1,1955,47,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,-5,0,2335,-25,0,0 +2013,8,18,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2202,-3,0,2309,-11,0,0 +2013,4,9,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,910,-5,0,1035,-14,0,0 +2013,4,4,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1449,-5,0,1547,-8,0,0 +2013,8,21,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-4,0,641,-3,0,0 +2013,10,13,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-3,0,1928,3,0,0 +2013,5,16,4,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1815,-1,0,2135,-10,0,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-7,0,1702,1,0,0 +2013,5,1,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,9,0,1210,0,0,0 +2013,7,8,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1227,0,0,1440,-4,0,0 +2013,5,2,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2213,0,0,59,-21,0,0 +2013,4,2,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-5,0,1300,-12,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1335,0,0,1515,-4,0,0 +2013,9,26,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1835,18,1,2155,0,0,0 +2013,10,14,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,8,0,951,11,0,0 +2013,4,4,4,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-5,0,821,-20,0,0 +2013,5,15,3,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,725,-2,0,1022,-4,0,0 +2013,4,1,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,9,0,2119,-6,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,831,114,1,938,110,1,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2010,51,1,2220,40,1,0 +2013,9,8,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-16,0,826,-9,0,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1355,-7,0,2158,-19,0,0 +2013,4,27,6,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-8,0,601,-17,0,0 +2013,5,21,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1731,44,1,1830,75,1,0 +2013,5,15,3,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1930,-4,0,2153,-13,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,715,1,0,820,-8,0,0 +2013,10,4,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2020,-8,0,2145,-16,0,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,30,1,1856,12,0,0 +2013,9,1,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,935,-5,0,1221,-19,0,0 +2013,9,4,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,-1,0,800,-2,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2220,0,0,2315,-9,0,0 +2013,7,1,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1415,93,1,1550,103,1,0 +2013,10,16,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1635,27,1,1750,28,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,7,0,1807,11,0,0 +2013,10,18,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1353,-5,0,1440,-13,0,0 +2013,7,23,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-3,0,1435,4,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1145,-5,0,1245,-10,0,0 +2013,10,21,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-2,0,1725,-8,0,0 +2013,4,3,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1740,15,1,2150,42,1,0 +2013,5,25,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1352,62,1,1440,52,1,0 +2013,9,27,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1353,-3,0,1445,-14,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1822,-8,0,2012,-9,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-1,0,2030,-5,0,0 +2013,4,8,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1835,-7,0,2054,-1,0,0 +2013,6,7,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,4,0,1054,3,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,5,0,1501,8,0,0 +2013,6,2,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1215,-14,0,1525,-22,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-3,0,2245,6,0,0 +2013,5,20,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,535,3,0,950,4,0,0 +2013,10,19,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1628,-6,0,1900,-18,0,0 +2013,5,22,3,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,833,-6,0,1041,28,1,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,36,1,1820,31,1,0 +2013,10,25,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,26,1,1055,24,1,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2050,45,1,2330,45,1,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1840,9,0,2150,8,0,0 +2013,10,27,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1710,-13,0,2130,-33,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1310,-2,0,1652,15,1,0 +2013,10,3,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,1,0,458,-13,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1955,22,1,2230,14,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,0,0,900,-5,0,0 +2013,6,4,2,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,925,0,0,1321,9,0,0 +2013,4,10,3,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,0,0,608,35,1,0 +2013,6,24,1,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1155,23,1,1340,12,0,0 +2013,8,17,6,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1545,106,1,1805,105,1,0 +2013,6,27,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1418,26,1,2242,25,1,0 +2013,7,1,1,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2110,-1,0,549,-3,0,0 +2013,7,8,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,709,-4,0,743,-2,0,0 +2013,4,8,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,800,9,0,1625,-11,0,0 +2013,8,27,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,705,-6,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,3,0,1345,4,0,0 +2013,10,11,5,AA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1630,-5,0,1850,-17,0,0 +2013,8,14,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,-1,0,130,-20,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,-2,0,2116,-12,0,0 +2013,6,23,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,7,0,1325,0,0,0 +2013,7,15,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1845,8,0,2104,-3,0,0 +2013,10,21,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1226,-6,0,1344,-7,0,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2155,8,0,2305,8,0,0 +2013,4,2,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2024,-4,0,2135,-13,0,0 +2013,8,6,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1625,4,0,1815,-1,0,0 +2013,9,25,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1615,-1,0,1805,8,0,0 +2013,7,26,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,90,1,2058,102,1,0 +2013,8,7,3,WN,10423,Austin - Bergstrom International,Austin,TX,14057,Portland International,Portland,OR,1525,-3,0,1720,-13,0,0 +2013,5,24,5,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-7,0,1200,-14,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-6,0,1851,-7,0,0 +2013,10,14,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,8,0,902,5,0,0 +2013,10,7,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,454,-3,0,925,-12,0,0 +2013,7,30,2,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-4,0,1940,-4,0,0 +2013,10,10,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1632,-16,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1950,5,0,2221,-10,0,0 +2013,10,20,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1340,13,0,1505,2,0,0 +2013,8,1,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,106,1,1735,154,1,0 +2013,7,16,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1530,3,0,1630,-6,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2025,27,1,50,18,1,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,705,0,0,1140,-10,0,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1055,15,1,1411,12,0,0 +2013,8,31,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,1,0,1337,-1,0,0 +2013,8,6,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-4,0,1309,-2,0,0 +2013,10,14,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,1420,6,0,1640,3,0,0 +2013,8,28,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1801,22,1,2026,25,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-4,0,1235,-4,0,0 +2013,10,30,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,37,1,1530,41,1,0 +2013,9,7,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1435,5,0,1750,5,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,16,1,1245,46,1,0 +2013,10,11,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,54,1,1740,47,1,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,46,1,1730,39,1,0 +2013,6,27,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1130,-10,0,1304,-14,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1505,29,1,1826,30,1,0 +2013,5,30,4,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,6,0,1920,2,0,0 +2013,7,16,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1348,-5,0,1510,-8,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-5,0,2149,2,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1005,18,1,1500,29,1,0 +2013,8,15,4,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,613,-9,0,715,-13,0,0 +2013,8,12,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,720,-4,0,926,-12,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,922,12,0,1024,12,0,0 +2013,4,7,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,600,0,0,724,-10,0,0 +2013,10,30,3,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,730,-2,0,920,3,0,0 +2013,7,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,2000,65,1,2101,62,1,0 +2013,10,28,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1725,59,1,1830,58,1,0 +2013,5,18,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1604,8,0,1718,4,0,0 +2013,4,30,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1100,2,0,1942,-4,0,0 +2013,5,18,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,0,0,1450,-12,0,0 +2013,9,12,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1523,7,0,1642,-2,0,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1749,-1,0,2009,-9,0,0 +2013,9,13,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,18,1,1525,27,1,0 +2013,9,1,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,43,1,1729,59,1,0 +2013,5,17,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,-5,0,835,-6,0,0 +2013,4,4,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,0,,1340,0,1,1 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1225,14,0,1430,-12,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,700,198,1,930,214,1,0 +2013,4,16,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-7,0,811,-12,0,0 +2013,10,4,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,750,1,0,800,0,0,0 +2013,9,1,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,920,-10,0,0 +2013,4,14,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-2,0,2255,-9,0,0 +2013,8,25,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,2000,9,0,2022,0,0,0 +2013,6,12,3,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1402,-5,0,1710,-27,0,0 +2013,6,30,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-6,0,1053,7,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1930,13,0,35,-4,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1116,-4,0,1304,-23,0,0 +2013,7,26,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,95,1,2300,80,1,0 +2013,6,29,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,703,-13,0,0 +2013,9,28,6,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1320,18,1,1515,24,1,0 +2013,10,14,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,843,-2,0,1111,-15,0,0 +2013,9,2,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,852,143,1,1006,139,1,0 +2013,10,29,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-11,0,930,-10,0,0 +2013,10,7,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,50,1,1522,38,1,0 +2013,6,8,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1255,23,1,1400,30,1,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1405,-3,0,1455,4,0,0 +2013,10,31,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2320,-5,0,830,-16,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1925,100,1,2050,162,1,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2000,-2,0,2125,-6,0,0 +2013,8,17,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1156,-3,0,1420,-26,0,0 +2013,7,21,7,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-5,0,911,-12,0,0 +2013,7,11,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,2,0,1335,1,0,0 +2013,4,7,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1210,-1,0,1410,0,0,0 +2013,10,9,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,-3,0,30,-13,0,0 +2013,6,26,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1436,28,1,1605,47,1,0 +2013,8,30,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,-2,0,1414,1,0,0 +2013,4,17,3,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1940,-5,0,2130,-12,0,0 +2013,5,20,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1145,-4,0,1245,-9,0,0 +2013,10,19,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2020,3,0,2140,-27,0,0 +2013,5,30,4,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,18,1,1550,3,0,0 +2013,5,21,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,1,0,1706,0,0,0 +2013,5,15,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,800,-2,0,915,-9,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1246,-3,0,1408,-7,0,0 +2013,10,28,1,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,12,0,1116,2,0,0 +2013,7,9,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1504,74,1,1806,70,1,0 +2013,6,18,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,27,73,1,633,91,1,0 +2013,9,25,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-2,0,925,-1,0,0 +2013,7,11,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,0,0,2016,-4,0,0 +2013,6,11,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2020,18,1,447,5,0,0 +2013,10,1,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1840,-6,0,2119,-14,0,0 +2013,9,7,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1119,-1,0,1418,-4,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,630,1,0,931,-17,0,0 +2013,6,18,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1556,-2,0,1826,8,0,0 +2013,10,26,6,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-5,0,740,-7,0,0 +2013,4,7,7,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,800,-6,0,1022,-18,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1230,3,0,1325,-6,0,0 +2013,6,6,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-5,0,2030,-17,0,0 +2013,9,30,1,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1010,-3,0,1155,-8,0,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1700,62,1,2150,114,1,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1300,-3,0,1426,-13,0,0 +2013,10,29,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-4,0,2351,-5,0,0 +2013,6,6,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,143,1,2355,124,1,0 +2013,5,24,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,605,0,0,730,-3,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,-6,0,2206,-11,0,0 +2013,8,29,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,-3,0,1500,-6,0,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,-5,0,1030,-34,0,0 +2013,6,10,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1455,114,1,1605,110,1,0 +2013,10,9,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-7,0,1108,-9,0,0 +2013,7,24,3,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1459,2,0,1746,45,1,0 +2013,9,20,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1110,-6,0,1245,23,1,0 +2013,5,14,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,-7,0,1839,-17,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1959,93,1,2135,84,1,0 +2013,8,2,5,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1735,-4,0,1755,0,0,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1818,0,0,2049,-13,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,-4,0,1124,-24,0,0 +2013,9,30,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1935,-5,0,2229,-10,0,0 +2013,4,9,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1252,-3,0,1414,-6,0,0 +2013,7,20,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-5,0,1310,11,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1614,0,0,1737,-1,0,0 +2013,10,29,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,23,1,1732,12,0,0 +2013,7,20,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1615,245,1,1845,235,1,0 +2013,10,2,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1210,20,1,1330,17,1,0 +2013,8,19,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-9,0,535,-2,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1545,95,1,1811,95,1,0 +2013,9,26,4,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1614,12,0,1909,7,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1905,60,1,2125,50,1,0 +2013,4,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1010,4,0,1135,2,0,0 +2013,10,1,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,540,-4,0,1145,6,0,0 +2013,4,13,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,18,1,1611,14,0,0 +2013,5,15,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-5,0,2047,-7,0,0 +2013,5,11,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-4,0,1712,-12,0,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,0,0,1343,2,0,0 +2013,7,13,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2101,8,0,100,21,1,0 +2013,5,3,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-1,0,2125,2,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-2,0,1150,8,0,0 +2013,9,25,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1950,-4,0,2140,-2,0,0 +2013,6,12,3,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,615,7,0,830,-2,0,0 +2013,8,30,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1118,-4,0,1242,-17,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1225,6,0,1415,5,0,0 +2013,7,31,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,17,1,2133,15,1,0 +2013,5,11,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,847,-3,0,1015,-15,0,0 +2013,7,12,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,27,1,1655,34,1,0 +2013,5,4,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1430,101,1,1810,108,1,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,2,0,912,-15,0,0 +2013,5,31,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1610,75,1,1932,73,1,0 +2013,6,30,7,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1050,-1,0,1145,-5,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-5,0,1440,-11,0,0 +2013,5,4,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1745,-7,0,2041,-17,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1250,-1,0,1513,3,0,0 +2013,7,23,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-4,0,1237,-7,0,0 +2013,7,9,2,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1543,5,0,1835,10,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1030,73,1,1300,66,1,0 +2013,6,12,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,10,0,1622,-8,0,0 +2013,7,18,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2003,2,0,2220,-5,0,0 +2013,7,12,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-6,0,1242,-13,0,0 +2013,7,24,3,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,3,0,1615,-10,0,0 +2013,6,22,6,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2110,-3,0,549,-5,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,-2,0,1410,8,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,-1,0,1635,-13,0,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,6,0,2125,28,1,0 +2013,9,7,6,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1220,-2,0,1745,-9,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,600,-2,0,714,-4,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1354,-4,0,1545,-2,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1840,46,1,2045,58,1,0 +2013,9,30,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,0,0,659,-5,0,0 +2013,8,5,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-3,0,1400,-7,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1255,43,1,1605,78,1,0 +2013,6,27,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,650,-1,0,825,-20,0,0 +2013,4,29,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1100,7,0,1224,-8,0,0 +2013,10,3,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,810,-4,0,910,3,0,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,21,1,1610,22,1,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1200,85,1,1355,72,1,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,807,-5,0,924,-9,0,0 +2013,6,4,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-5,0,808,-12,0,0 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1605,-4,0,1655,-13,0,0 +2013,7,4,4,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,640,-6,0,1010,-18,0,0 +2013,6,5,3,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,-5,0,1535,16,1,0 +2013,4,13,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1155,1,0,1425,-12,0,0 +2013,10,31,4,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-2,0,910,14,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,60,1,1735,55,1,0 +2013,10,21,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1545,89,1,1800,86,1,0 +2013,9,26,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1100,1,0,1345,-13,0,0 +2013,9,24,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1310,-5,0,1425,-12,0,0 +2013,4,25,4,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1905,4,0,2100,9,0,0 +2013,4,23,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1842,-6,0,1916,-6,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,915,-8,0,1655,-20,0,0 +2013,6,22,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1633,-8,0,2351,-22,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,1300,-5,0,1720,-12,0,0 +2013,10,6,7,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2345,-2,0,547,-4,0,0 +2013,7,19,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,813,-1,0,0 +2013,8,1,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1515,20,1,1730,22,1,0 +2013,8,2,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,11,0,1440,-12,0,0 +2013,9,28,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,-1,0,2013,-9,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1133,2,0,1309,-5,0,0 +2013,6,7,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-2,0,1050,-13,0,0 +2013,8,29,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-7,0,1019,0,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2205,-2,0,2257,-16,0,0 +2013,5,8,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1820,8,0,1935,2,0,0 +2013,8,5,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,1,0,1013,1,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-6,0,858,-8,0,0 +2013,6,14,5,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1710,7,0,1817,-4,0,0 +2013,10,21,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,4,0,1725,-5,0,0 +2013,6,14,5,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,72,1,1835,70,1,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1507,-6,0,1607,-13,0,0 +2013,5,12,7,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,17,1,1620,14,0,0 +2013,4,26,5,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,33,1,2155,32,1,0 +2013,4,27,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,1940,-14,0,0 +2013,5,8,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-4,0,950,-14,0,0 +2013,8,7,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,49,1,1750,46,1,0 +2013,9,26,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,855,-10,0,940,0,0,0 +2013,7,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1800,0,0,1953,-28,0,0 +2013,4,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,-1,0,933,-6,0,0 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1020,-5,0,1256,-19,0,0 +2013,4,7,7,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,645,-10,0,920,-6,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1930,11,0,2100,4,0,0 +2013,9,9,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,15,1,1705,6,0,0 +2013,8,6,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,901,-1,0,1100,-6,0,0 +2013,5,6,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,2030,-1,0,2310,-14,0,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,-2,0,1040,-13,0,0 +2013,7,26,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,814,74,1,1335,51,1,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1855,-4,0,2215,-4,0,0 +2013,6,10,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1355,104,1,1445,160,1,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-1,0,1113,-16,0,0 +2013,8,14,3,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,23,1,1930,59,1,0 +2013,6,7,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1755,30,1,2054,14,0,0 +2013,10,11,5,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1019,-7,0,1130,-15,0,0 +2013,5,20,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,2,0,1516,-2,0,0 +2013,10,11,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1759,37,1,2009,35,1,0 +2013,5,8,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1650,12,0,1805,-3,0,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,0,,1330,0,1,1 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-4,0,1123,11,0,0 +2013,4,26,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,828,-9,0,905,-1,0,0 +2013,6,16,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,700,-3,0,755,-3,0,0 +2013,7,5,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,1,0,1734,-8,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,940,-5,0,1201,-23,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1400,14,0,1525,14,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,-2,0,1529,13,0,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1727,-4,0,1902,-28,0,0 +2013,5,30,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,612,-3,0,908,-10,0,0 +2013,10,13,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,41,1,2120,26,1,0 +2013,7,10,3,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1312,250,1,2044,239,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,6,0,1517,8,0,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2200,46,1,2315,51,1,0 +2013,5,29,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,-3,0,500,-7,0,0 +2013,8,13,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,-3,0,825,-2,0,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1205,9,0,1325,-2,0,0 +2013,10,18,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-8,0,1952,-5,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1100,-1,0,1239,-19,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1350,6,0,1606,18,1,0 +2013,8,6,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,1,0,900,-7,0,0 +2013,4,27,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,-7,0,1828,-24,0,0 +2013,6,29,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1820,50,1,1940,42,1,0 +2013,9,29,7,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1345,-5,0,1915,-9,0,0 +2013,10,10,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,22,1,1514,18,1,0 +2013,6,9,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1415,-3,0,1639,11,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,93,1,1231,80,1,0 +2013,8,26,1,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1705,42,1,1950,45,1,0 +2013,5,1,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,705,-2,0,800,3,0,0 +2013,7,6,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,-7,0,1745,-19,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1110,-4,0,1600,-44,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,36,1,2200,34,1,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1925,3,0,2240,10,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-6,0,1020,-15,0,0 +2013,5,20,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,603,-2,0,1429,8,0,0 +2013,5,15,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1305,-1,0,1420,-3,0,0 +2013,9,16,1,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1750,0,0,1940,-11,0,0 +2013,6,6,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,87,1,1015,89,1,0 +2013,8,3,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-2,0,1100,-9,0,0 +2013,10,21,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1805,-3,0,2105,-20,0,0 +2013,9,16,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1845,56,1,1910,52,1,0 +2013,6,29,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,0,0,1102,-6,0,0 +2013,8,30,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-6,0,1309,3,0,0 +2013,8,1,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-5,0,2029,-15,0,0 +2013,10,1,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-11,0,1427,-5,0,0 +2013,10,21,1,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1800,14,0,1942,-1,0,0 +2013,5,20,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-8,0,1825,-14,0,0 +2013,5,3,5,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1014,3,0,0 +2013,6,21,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,745,0,0,810,7,0,0 +2013,4,13,6,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,-9,0,2020,-11,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2110,187,1,2345,179,1,0 +2013,7,14,7,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,733,0,0,1102,-1,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,-1,0,1455,-5,0,0 +2013,5,13,1,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-6,0,2048,-24,0,0 +2013,8,19,1,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,-6,0,1740,0,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,0,0,2025,-4,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1820,18,1,1930,13,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,15,1,1913,21,1,0 +2013,6,18,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1849,-1,0,2027,4,0,0 +2013,4,9,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,630,-9,0,756,-7,0,0 +2013,10,21,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1650,11,0,1815,8,0,0 +2013,5,12,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,715,-4,0,816,-9,0,0 +2013,7,11,4,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,38,1,1635,36,1,0 +2013,10,30,3,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1010,0,0,1115,16,1,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,940,-1,0,1120,-26,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1325,65,1,1711,45,1,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,850,-6,0,1245,-7,0,0 +2013,4,22,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1935,-14,0,2200,-32,0,0 +2013,7,16,2,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1711,176,1,1827,176,1,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,32,1,2210,17,1,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,11,0,1855,7,0,0 +2013,5,8,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,841,12,0,0 +2013,10,18,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1247,0,0,1535,1,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1619,-1,0,1731,-10,0,0 +2013,5,22,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,940,-3,0,1052,-14,0,0 +2013,7,7,7,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1631,12,0,1745,159,1,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1235,-4,0,1400,-6,0,0 +2013,7,21,7,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1521,-15,0,0 +2013,10,20,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,7,0,1710,-4,0,0 +2013,4,30,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1800,6,0,1925,0,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-7,0,905,-10,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-1,0,1632,15,1,0 +2013,10,2,3,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1045,-6,0,1309,-17,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2240,2,0,112,-5,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,25,1,1040,11,0,0 +2013,8,27,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1010,-10,0,1126,-6,0,0 +2013,8,31,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,1,0,1447,-11,0,0 +2013,5,8,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1559,4,0,1919,-51,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2030,4,0,2316,-24,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1936,40,1,2125,129,1,0 +2013,10,27,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1155,-5,0,1340,-20,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,-2,0,2317,4,0,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1529,75,1,1740,84,1,0 +2013,9,23,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1435,17,1,1646,8,0,0 +2013,6,13,4,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-9,0,803,-12,0,0 +2013,4,29,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-3,0,949,6,0,0 +2013,10,4,5,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,-13,0,2135,-17,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,2040,253,1,2355,234,1,0 +2013,9,1,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1920,18,1,2050,6,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-7,0,1310,-12,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1354,0,0,1914,-18,0,0 +2013,5,4,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1855,-5,0,2250,-23,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-9,0,24,-15,0,0 +2013,10,24,4,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-5,0,1220,-10,0,0 +2013,8,14,3,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1430,32,1,1800,25,1,0 +2013,7,9,2,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,1,0,835,-2,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-5,0,2331,-20,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1550,14,0,1800,-6,0,0 +2013,4,9,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,2025,-5,0,2305,-9,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,10,0,1240,-29,0,0 +2013,4,8,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,705,-6,0,1446,-33,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,920,-2,0,1201,-13,0,0 +2013,7,19,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,13,0,1448,12,0,0 +2013,7,21,7,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2045,-5,0,449,-11,0,0 +2013,6,7,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,0,0,1505,-1,0,0 +2013,9,12,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,800,0,,905,0,1,1 +2013,9,26,4,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-7,0,1100,-13,0,0 +2013,9,8,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,922,-5,0,1028,-3,0,0 +2013,8,25,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,850,14,0,0 +2013,10,29,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1205,-1,0,1310,-16,0,0 +2013,9,14,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-7,0,1145,-5,0,0 +2013,6,13,4,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,57,1,2254,56,1,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1425,-3,0,1701,-19,0,0 +2013,10,31,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,30,1,1035,50,1,0 +2013,7,22,1,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1225,-1,0,1359,-4,0,0 +2013,4,19,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2045,-5,0,2110,16,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1720,-1,0,1832,-16,0,0 +2013,4,20,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2233,25,1,701,10,0,0 +2013,6,13,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,743,4,0,938,1,0,0 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1240,-6,0,1405,11,0,0 +2013,5,7,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1415,-3,0,1545,-13,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,2006,33,1,2105,22,1,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1820,5,0,2340,2,0,0 +2013,9,27,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1749,-4,0,1955,-15,0,0 +2013,5,2,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1140,0,0,1315,-3,0,0 +2013,5,9,4,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,713,47,1,1445,43,1,0 +2013,5,29,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,120,59,1,515,64,1,0 +2013,8,15,4,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-8,0,1608,-11,0,0 +2013,7,28,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,810,-3,0,825,-5,0,0 +2013,10,23,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,919,49,1,1015,0,1,1 +2013,4,15,1,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-10,0,1526,-12,0,0 +2013,8,3,6,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-8,0,816,-9,0,0 +2013,8,16,5,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1225,-5,0,1514,3,0,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1021,-5,0,1352,1,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-6,0,1627,-11,0,0 +2013,8,12,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1942,3,0,2140,-10,0,0 +2013,5,7,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-13,0,655,-13,0,0 +2013,4,1,1,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1150,-3,0,1425,-3,0,0 +2013,9,29,7,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2110,24,1,2255,12,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1535,5,0,1755,-11,0,0 +2013,5,10,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,957,-6,0,1106,-18,0,0 +2013,5,13,1,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-2,0,910,-11,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1640,-7,0,2000,-19,0,0 +2013,7,19,5,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2049,-5,0,2200,-7,0,0 +2013,9,30,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,32,1,701,33,1,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-2,0,859,-2,0,0 +2013,8,29,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,-3,0,1201,24,1,0 +2013,6,20,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,933,-4,0,1130,-6,0,0 +2013,10,16,3,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1655,0,0,2031,-9,0,0 +2013,7,31,3,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1345,-1,0,1535,-9,0,0 +2013,5,18,6,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,805,-3,0,855,-5,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,20,1,2055,8,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1910,0,0,2050,-16,0,0 +2013,9,16,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1356,2,0,1547,-15,0,0 +2013,4,2,2,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1830,-1,0,2115,-8,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1450,15,1,1610,18,1,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1130,21,1,1340,4,0,0 +2013,8,6,2,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1629,1,0,1937,-15,0,0 +2013,7,31,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-3,0,1329,-19,0,0 +2013,10,2,3,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,20,1,1915,15,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,10,0,1207,-2,0,0 +2013,4,23,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-9,0,1005,8,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,823,-6,0,1701,9,0,0 +2013,7,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1633,-3,0,1958,-6,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,800,-4,0,922,-19,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1659,9,0,1928,-8,0,0 +2013,6,1,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,54,1,2151,85,1,0 +2013,4,19,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1844,13,0,2014,24,1,0 +2013,7,5,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-7,0,2010,-26,0,0 +2013,10,15,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-2,0,940,-6,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,2,0,1303,25,1,0 +2013,9,17,2,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1205,-1,0,1255,2,0,0 +2013,4,20,6,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1740,-2,0,2045,14,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-1,0,830,-14,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1308,3,0,1601,-1,0,0 +2013,6,18,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,950,14,0,1250,8,0,0 +2013,5,2,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,-1,0,1915,-12,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1905,19,1,2125,12,0,0 +2013,10,17,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,2,0,1904,-3,0,0 +2013,7,26,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1515,-2,0,1915,-17,0,0 +2013,5,27,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,530,3,0,858,-4,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1945,-1,0,2335,6,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2055,10,0,2315,-5,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,-2,0,2325,-2,0,0 +2013,9,11,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,846,-7,0,1112,-18,0,0 +2013,4,28,7,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1920,-3,0,2227,-2,0,0 +2013,7,29,1,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-2,0,1235,-5,0,0 +2013,5,22,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1500,6,0,1923,0,0,0 +2013,6,19,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,17,1,1455,14,0,0 +2013,5,12,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,2,0,1035,-5,0,0 +2013,9,5,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,830,-8,0,938,-17,0,0 +2013,5,30,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,908,-11,0,1129,-12,0,0 +2013,5,31,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1843,1,0,0 +2013,8,20,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1117,-3,0,1154,-14,0,0 +2013,5,19,7,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,755,-1,0,1020,-11,0,0 +2013,7,18,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-2,0,717,-14,0,0 +2013,8,28,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1140,-8,0,0 +2013,10,17,4,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,4,0,1915,7,0,0 +2013,4,29,1,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,-5,0,1619,-16,0,0 +2013,10,24,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,716,-5,0,953,-2,0,0 +2013,4,10,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-6,0,1101,-4,0,0 +2013,7,31,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,2,0,1345,-8,0,0 +2013,5,29,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1412,296,1,1635,286,1,0 +2013,10,21,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1436,-9,0,1621,-11,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1840,56,1,2230,39,1,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,648,-4,0,817,19,1,0 +2013,4,7,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1947,-8,0,2203,-13,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1510,59,1,2200,55,1,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2233,-2,0,630,-27,0,0 +2013,7,31,3,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1920,-3,0,2110,1,0,0 +2013,10,9,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1310,-4,0,1600,-22,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-2,0,2045,-3,0,0 +2013,10,19,6,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1700,-12,0,2025,-25,0,0 +2013,10,16,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1803,102,1,1921,107,1,0 +2013,10,6,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2005,1,0,2150,-21,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,51,1,1130,56,1,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,12,0,1610,-12,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1425,16,1,1525,10,0,0 +2013,10,25,5,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,815,-1,0,1019,-10,0,0 +2013,5,17,5,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1700,174,1,2011,142,1,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1800,2,0,35,13,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,1,0,1925,4,0,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1750,39,1,2115,23,1,0 +2013,10,4,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,61,1,1145,51,1,0 +2013,4,21,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1935,0,0,2050,4,0,0 +2013,9,29,7,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,6,0,1825,-1,0,0 +2013,5,19,7,UA,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1310,-4,0,1630,-4,0,0 +2013,7,4,4,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,4,0,2354,-28,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-4,0,1435,8,0,0 +2013,7,26,5,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,-8,0,1646,-20,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1510,0,0,1720,-8,0,0 +2013,5,18,6,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-4,0,929,-14,0,0 +2013,4,22,1,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1259,53,1,1541,56,1,0 +2013,6,26,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1959,102,1,2120,90,1,0 +2013,9,19,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-6,0,1617,-9,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1220,10,0,1944,10,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,32,1,1550,87,1,0 +2013,10,19,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,705,-14,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,805,2,0,1155,-7,0,0 +2013,8,10,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1800,-1,0,2000,-13,0,0 +2013,9,15,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,840,4,0,1248,3,0,0 +2013,10,24,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,635,1,0,800,4,0,0 +2013,5,28,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-3,0,855,-6,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1655,2,0,1750,-1,0,0 +2013,5,3,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1925,21,1,2110,30,1,0 +2013,7,23,2,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,31,1,2022,39,1,0 +2013,5,26,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1300,-10,0,1420,-10,0,0 +2013,9,18,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-6,0,1520,-13,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1640,3,0,1800,9,0,0 +2013,9,6,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1505,2,0,1745,-13,0,0 +2013,6,18,2,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,8,0,1645,21,1,0 +2013,9,24,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-8,0,1436,-28,0,0 +2013,4,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1850,60,1,2159,58,1,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,-2,0,2032,-17,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,5,0,1935,7,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,0,0,1505,-5,0,0 +2013,10,4,5,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1325,-6,0,1515,-24,0,0 +2013,6,8,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-15,0,2107,-22,0,0 +2013,6,5,3,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1245,9,0,1425,1,0,0 +2013,10,21,1,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-6,0,1450,-9,0,0 +2013,10,13,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1125,-2,0,1135,-16,0,0 +2013,10,16,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1120,2,0,1300,-10,0,0 +2013,7,12,5,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1810,8,0,1935,-3,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1936,-3,0,2113,-10,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1609,-1,0,1739,4,0,0 +2013,10,30,3,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1046,8,0,1210,6,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,0,0,1208,-12,0,0 +2013,5,22,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,830,24,1,1100,22,1,0 +2013,9,5,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1000,-1,0,1125,-17,0,0 +2013,7,13,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,-2,0,9,-5,0,0 +2013,8,20,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1251,-1,0,1503,33,1,0 +2013,8,28,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2045,-1,0,505,-14,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-1,0,1230,-15,0,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2050,13,0,2211,0,0,0 +2013,7,16,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1755,23,1,2120,36,1,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,-1,0,1724,11,0,0 +2013,8,31,6,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1100,-6,0,1344,-24,0,0 +2013,9,1,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1400,57,1,1555,41,1,0 +2013,10,4,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1738,3,0,2005,16,1,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1750,0,0,2031,-12,0,0 +2013,8,21,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,5,0,2015,21,1,0 +2013,8,25,7,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,1020,-3,0,0 +2013,8,9,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2205,19,1,2300,7,0,0 +2013,7,9,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,81,1,1055,98,1,0 +2013,8,29,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,-3,0,1310,8,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1630,1,0,2310,-20,0,0 +2013,4,29,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,-2,0,1005,-9,0,0 +2013,6,11,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2155,-3,0,2320,-11,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-1,0,1440,-12,0,0 +2013,10,13,7,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,0,0,1915,-4,0,0 +2013,5,7,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-8,0,859,18,1,0 +2013,7,27,6,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1703,-3,0,1810,-10,0,0 +2013,5,27,1,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1050,-2,0,1410,-20,0,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-4,0,1610,-5,0,0 +2013,8,31,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-5,0,1520,-3,0,0 +2013,10,21,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,858,-8,0,0 +2013,6,22,6,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1125,7,0,1340,-12,0,0 +2013,10,21,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1542,-8,0,1731,-25,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,-3,0,1928,-9,0,0 +2013,7,22,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-1,0,724,-12,0,0 +2013,7,19,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-2,0,1352,-2,0,0 +2013,5,18,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1705,10,0,1820,-1,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1631,-1,0,1749,-11,0,0 +2013,7,6,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2058,0,,2143,0,1,1 +2013,5,14,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1742,-6,0,1913,-14,0,0 +2013,8,15,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,-4,0,2019,26,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,-2,0,2227,-2,0,0 +2013,6,22,6,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-4,0,926,-18,0,0 +2013,6,3,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,945,-11,0,1020,-22,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,19,1,1155,10,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1205,1,0,1440,-2,0,0 +2013,10,28,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-2,0,759,-9,0,0 +2013,8,2,5,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,830,5,0,1026,6,0,0 +2013,5,16,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1730,29,1,1910,15,1,0 +2013,9,2,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,-6,0,1935,-3,0,0 +2013,6,26,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,102,1,2118,0,1,1 +2013,7,14,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,900,2,0,1040,-13,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,33,1,2250,34,1,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1000,36,1,1115,30,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2115,79,1,2255,117,1,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1537,-4,0,1637,-9,0,0 +2013,6,7,5,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1514,0,0,1735,9,0,0 +2013,4,15,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,0,0,2055,-21,0,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2035,74,1,2345,65,1,0 +2013,6,18,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-9,0,700,-4,0,0 +2013,4,19,5,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1830,9,0,1940,136,1,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-6,0,1647,-7,0,0 +2013,10,7,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,910,-1,0,1010,-9,0,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2039,-4,0,2311,8,0,0 +2013,4,14,7,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,34,1,1731,47,1,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-7,0,1525,-8,0,0 +2013,9,6,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1845,0,0,2220,-8,0,0 +2013,9,24,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-7,0,1915,12,0,0 +2013,4,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2012,-2,0,2113,-15,0,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,80,1,1815,70,1,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2115,-1,0,2254,-25,0,0 +2013,5,2,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,12,0,1615,-8,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,-2,0,1420,-13,0,0 +2013,7,11,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,9,0,1710,31,1,0 +2013,8,20,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,3,0,1215,-3,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-4,0,2115,-6,0,0 +2013,9,1,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,1,0,1708,12,0,0 +2013,9,24,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,0,0,802,1,0,0 +2013,6,14,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1355,3,0,1955,-9,0,0 +2013,4,13,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,900,1,0,1215,58,1,0 +2013,10,21,1,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,-7,0,1150,7,0,0 +2013,5,17,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1735,10,0,1859,13,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1750,0,0,2129,5,0,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,550,-1,0,703,-14,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,-1,0,1435,10,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1410,-5,0,1505,-6,0,0 +2013,6,14,5,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1130,-8,0,1226,-21,0,0 +2013,5,24,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,-6,0,6,-16,0,0 +2013,5,6,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1123,-2,0,1207,-13,0,0 +2013,9,8,7,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-3,0,1005,-30,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1240,-1,0,1535,0,0,0 +2013,5,16,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1030,-2,0,1515,5,0,0 +2013,4,3,3,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1305,-6,0,1630,-23,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,910,-3,0,1155,9,0,0 +2013,8,11,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-6,0,1013,-9,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,-1,0,1245,2,0,0 +2013,6,30,7,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1925,29,1,2119,19,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-3,0,1442,2,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,935,3,0,1111,-4,0,0 +2013,9,14,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-10,0,1205,-6,0,0 +2013,4,11,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1440,0,,1615,0,1,1 +2013,6,22,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,-4,0,1820,-9,0,0 +2013,10,22,2,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,6,0,2030,9,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,-5,0,1350,8,0,0 +2013,5,13,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,-4,0,1612,-34,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,-1,0,1124,-28,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,-3,0,1815,14,0,0 +2013,6,29,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,25,1,1505,97,1,0 +2013,5,21,2,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1200,0,0,1453,36,1,0 +2013,10,16,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,515,-9,0,628,-18,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2130,16,1,2255,3,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-3,0,1507,-9,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1705,22,1,1800,14,0,0 +2013,4,2,2,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2130,-3,0,512,-21,0,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,16,1,1215,15,1,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2030,42,1,2315,33,1,0 +2013,6,21,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1712,-2,0,1836,-6,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,600,-3,0,830,-19,0,0 +2013,7,26,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,-9,0,1334,-10,0,0 +2013,6,5,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,833,5,0,946,7,0,0 +2013,10,27,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,8,0,1705,11,0,0 +2013,5,31,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1735,8,0,1855,3,0,0 +2013,4,30,2,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1800,-7,0,2032,-1,0,0 +2013,10,19,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1415,1,0,1530,-2,0,0 +2013,10,17,4,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1535,2,0,1725,3,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,-2,0,1045,-11,0,0 +2013,10,14,1,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,915,5,0,1115,40,1,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,9,0,1720,-2,0,0 +2013,6,27,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,14,0,2115,13,0,0 +2013,4,23,2,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1220,67,1,1600,63,1,0 +2013,4,8,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,930,-5,0,1056,-2,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,-3,0,935,-9,0,0 +2013,7,30,2,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,955,-3,0,1445,-22,0,0 +2013,7,3,3,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1720,81,1,1905,93,1,0 +2013,9,13,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,815,6,0,945,32,1,0 +2013,7,4,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1354,-3,0,1450,-8,0,0 +2013,9,8,7,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2200,15,1,501,4,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,645,-3,0,938,-10,0,0 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2030,130,1,2245,126,1,0 +2013,10,28,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,115,-3,0,503,-18,0,0 +2013,10,29,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,550,-3,0,744,4,0,0 +2013,4,12,5,EV,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,842,-3,0,1032,-7,0,0 +2013,10,17,4,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1600,-7,0,1815,-6,0,0 +2013,8,21,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,635,-5,0,730,-11,0,0 +2013,7,27,6,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,-2,0,1551,-8,0,0 +2013,4,10,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,-5,0,910,8,0,0 +2013,7,31,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1405,5,0,1510,-3,0,0 +2013,4,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,946,-3,0,1129,-13,0,0 +2013,4,9,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-4,0,850,6,0,0 +2013,8,27,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,600,-1,0,732,-1,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1935,-1,0,2203,-24,0,0 +2013,4,2,2,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1220,-3,0,1804,9,0,0 +2013,5,19,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,832,-5,0,923,-10,0,0 +2013,7,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1708,-3,0,1840,-19,0,0 +2013,8,5,1,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-2,0,2046,-24,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1145,-3,0,1537,-22,0,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1505,76,1,1835,80,1,0 +2013,7,29,1,OO,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-16,0,1748,-18,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1614,3,0,1734,-12,0,0 +2013,6,3,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1705,31,1,2055,40,1,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1630,1,0,2300,6,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,-5,0,1944,-9,0,0 +2013,10,10,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,948,2,0,1512,1,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,610,-7,0,815,-15,0,0 +2013,7,29,1,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,4,0,1635,3,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,38,1,1707,46,1,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1510,41,1,1630,37,1,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1355,5,0,1959,-7,0,0 +2013,7,31,3,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,-10,0,1028,-13,0,0 +2013,9,16,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,2,0,1950,-15,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1510,1,0,1855,-4,0,0 +2013,6,26,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,18,1,1320,10,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,1,0,1002,-9,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1007,145,1,1420,171,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1758,1,0,2011,-10,0,0 +2013,5,21,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1225,-5,0,1440,-11,0,0 +2013,7,18,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1823,-7,0,2112,-6,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1334,-3,0,1525,-14,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2005,5,0,2255,-5,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1950,1,0,2045,-9,0,0 +2013,5,29,3,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,-2,0,1855,-19,0,0 +2013,6,19,3,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,-7,0,1531,5,0,0 +2013,9,16,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,-7,0,940,-10,0,0 +2013,6,22,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,825,-3,0,1105,-14,0,0 +2013,8,12,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2325,-6,0,730,-3,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,1415,11,0,2210,-7,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-3,0,1627,-3,0,0 +2013,5,14,2,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,840,1,0,1435,-14,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1405,23,1,1500,20,1,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,-1,0,2110,-8,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,900,12,0,1015,25,1,0 +2013,4,27,6,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,1,0,2140,-2,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,915,10,0,1035,4,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,-2,0,25,-9,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,-2,0,1607,2,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,7,0,2315,1,0,0 +2013,10,17,4,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1855,20,1,2030,3,0,0 +2013,8,26,1,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1651,62,1,1828,65,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,939,-2,0,1110,-18,0,0 +2013,8,28,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1929,-11,0,2140,-4,0,0 +2013,6,10,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,825,-6,0,945,-11,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2042,-3,0,2309,-14,0,0 +2013,10,7,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2020,-3,0,2155,-10,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2020,-3,0,2120,-7,0,0 +2013,9,14,6,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1310,-6,0,1800,-14,0,0 +2013,10,31,4,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1911,-10,0,2050,-28,0,0 +2013,5,26,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,955,-2,0,1115,-5,0,0 +2013,4,6,6,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-12,0,1805,-14,0,0 +2013,4,26,5,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-2,0,937,-8,0,0 +2013,4,24,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,857,25,1,1021,21,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1141,-2,0,1307,-10,0,0 +2013,4,27,6,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,21,1,1054,36,1,0 +2013,5,8,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,-4,0,2119,-9,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1435,25,1,1800,17,1,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,2,0,1031,-4,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1530,-3,0,2000,-20,0,0 +2013,5,30,4,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,805,11,0,1020,6,0,0 +2013,9,6,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,835,-5,0,0 +2013,5,22,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,5,0,1325,21,1,0 +2013,9,23,1,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1730,11,0,1835,-14,0,0 +2013,8,22,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-5,0,915,-16,0,0 +2013,9,15,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,800,31,1,915,24,1,0 +2013,9,16,1,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1426,-4,0,1658,-15,0,0 +2013,5,21,2,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,745,-12,0,851,-34,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,950,79,1,1302,74,1,0 +2013,6,19,3,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,423,1,2120,425,1,0 +2013,5,19,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1050,17,1,1610,2,0,0 +2013,5,16,4,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1135,-7,0,1520,-8,0,0 +2013,7,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,5,0,1735,-10,0,0 +2013,6,30,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,-4,0,1718,-18,0,0 +2013,10,27,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-6,0,802,-4,0,0 +2013,8,2,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1150,-3,0,1847,2,0,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1748,3,0,2312,-16,0,0 +2013,7,17,3,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1452,-9,0,1832,2,0,0 +2013,9,20,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-5,0,1617,3,0,0 +2013,7,10,3,DL,13244,Memphis International,Memphis,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,-1,0,1653,-2,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,-1,0,2205,-1,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-1,0,859,-23,0,0 +2013,8,26,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,-1,0,940,-1,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,700,-7,0,800,-2,0,0 +2013,4,1,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-7,0,2035,23,1,0 +2013,5,10,5,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,64,1,1704,47,1,0 +2013,6,7,5,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1450,3,0,1746,1,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-2,0,815,8,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,905,0,0,1214,20,1,0 +2013,6,13,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,0,0,1650,12,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,700,-2,0,800,-16,0,0 +2013,6,23,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,730,-1,0,1010,-11,0,0 +2013,8,27,2,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-6,0,1259,0,0,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,0,0,1045,2,0,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1730,22,1,2039,-14,0,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2010,9,0,2145,5,0,0 +2013,6,25,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,20,0,0,813,4,0,0 +2013,4,9,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1502,42,1,1718,56,1,0 +2013,5,9,4,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1720,-4,0,2243,-1,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2245,2,0,700,26,1,0 +2013,7,30,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2200,29,1,620,3,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1700,4,0,1825,-7,0,0 +2013,9,17,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1235,1,0,1345,-14,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1823,-5,0,2104,-30,0,0 +2013,8,21,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-10,0,2013,-6,0,0 +2013,4,16,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-6,0,1021,-11,0,0 +2013,4,17,3,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,955,166,1,1030,174,1,0 +2013,4,3,3,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-6,0,1620,-1,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,-5,0,710,-6,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,2,0,1109,8,0,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,9,0,2047,9,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,800,53,1,1625,51,1,0 +2013,4,12,5,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2335,62,1,800,48,1,0 +2013,5,6,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1435,-12,0,1709,1,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-7,0,900,-2,0,0 +2013,7,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-1,0,1615,-17,0,0 +2013,7,19,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,20,-6,0,815,10,0,0 +2013,7,21,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-6,0,1357,-12,0,0 +2013,10,3,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,0,0,900,23,1,0 +2013,5,17,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,615,-2,0,848,-3,0,0 +2013,10,7,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,10,0,1445,-7,0,0 +2013,8,15,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,-3,0,1350,12,0,0 +2013,9,25,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,740,-2,0,900,-6,0,0 +2013,9,6,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-2,0,1839,-32,0,0 +2013,6,3,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1600,-2,0,1630,-8,0,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,6,0,2150,0,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,-1,0,950,-5,0,0 +2013,4,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1410,85,1,1735,79,1,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,30,1,1910,10,0,0 +2013,8,17,6,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,-5,0,1740,-9,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-5,0,1319,10,0,0 +2013,10,29,2,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1035,3,0,1310,-3,0,0 +2013,5,15,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-2,0,1623,-16,0,0 +2013,9,26,4,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1832,-7,0,2115,-2,0,0 +2013,9,23,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,625,0,0,740,-5,0,0 +2013,6,20,4,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,7,0,1625,-22,0,0 +2013,7,13,6,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1200,19,1,1412,11,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,929,0,0,1052,14,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,645,-7,0,915,-17,0,0 +2013,6,1,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2332,-1,0,525,-9,0,0 +2013,9,18,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1155,-3,0,1420,7,0,0 +2013,6,8,6,OO,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1055,-5,0,1319,-6,0,0 +2013,4,15,1,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,9,0,851,39,1,0 +2013,10,21,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1735,27,1,1930,16,1,0 +2013,10,2,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1512,-4,0,1609,-13,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,-6,0,1731,-20,0,0 +2013,6,16,7,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1025,0,0,1510,-11,0,0 +2013,9,5,4,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,911,-8,0,1051,-20,0,0 +2013,8,2,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1530,-1,0,1826,-10,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2115,8,0,2255,16,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1636,2,0,1827,-3,0,0 +2013,6,1,6,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,10,0,950,0,0,0 +2013,4,17,3,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1515,-1,0,1800,-4,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1423,-8,0,1606,-16,0,0 +2013,9,6,5,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-5,0,1445,-46,0,0 +2013,8,20,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,910,-3,0,1025,4,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,127,1,2040,125,1,0 +2013,5,17,5,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2007,-2,0,2058,2,0,0 +2013,6,7,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1227,-8,0,1238,-3,0,0 +2013,4,2,2,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-6,0,2020,4,0,0 +2013,9,4,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,635,-2,0,740,-23,0,0 +2013,6,3,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1430,-7,0,1647,9,0,0 +2013,9,2,1,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1922,25,1,2053,19,1,0 +2013,10,8,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1454,-1,0,2005,-11,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,0,0,2235,0,0,0 +2013,6,5,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1925,-6,0,2245,-7,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-2,0,915,-16,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2055,-2,0,2320,-8,0,0 +2013,6,7,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1855,-1,0,2149,-16,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1940,1,0,2155,28,1,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,615,-1,0,930,-12,0,0 +2013,7,19,5,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,0,,813,0,1,1 +2013,8,12,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,9,0,1505,-2,0,0 +2013,8,28,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,730,-7,0,1110,-13,0,0 +2013,6,26,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1802,97,1,2000,90,1,0 +2013,10,1,2,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1225,-3,0,1446,-3,0,0 +2013,7,14,7,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,23,1,1643,5,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2155,-2,0,35,-10,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,715,-5,0,850,-11,0,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1530,-6,0,1623,-14,0,0 +2013,4,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,855,1,0,1110,-3,0,0 +2013,10,15,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1230,-3,0,1545,-24,0,0 +2013,5,5,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,-1,0,2044,3,0,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1720,257,1,1840,253,1,0 +2013,9,24,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1006,-3,0,1157,-3,0,0 +2013,8,5,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1119,-5,0,1310,2,0,0 +2013,6,4,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1251,6,0,1845,14,0,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2155,3,0,2320,3,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,835,16,1,940,9,0,0 +2013,4,29,1,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1246,-5,0,1730,-22,0,0 +2013,7,30,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,945,-3,0,1125,-28,0,0 +2013,5,9,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1655,2,0,1915,7,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,715,59,1,920,55,1,0 +2013,4,19,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,755,-3,0,935,-19,0,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1625,-5,0,1735,-13,0,0 +2013,10,21,1,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1500,23,1,1752,7,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1917,-6,0,2048,-14,0,0 +2013,5,31,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-5,0,1555,-7,0,0 +2013,6,15,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,830,3,0,1036,-7,0,0 +2013,6,25,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1019,28,1,1150,22,1,0 +2013,8,5,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1523,6,0,1628,8,0,0 +2013,4,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2035,-3,0,2315,-14,0,0 +2013,10,25,5,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,945,2,0,1140,2,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,725,38,1,1040,43,1,0 +2013,6,21,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,11,0,1434,20,1,0 +2013,8,23,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,27,1,839,15,1,0 +2013,9,25,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,15,1,1900,10,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2150,-2,0,2319,-16,0,0 +2013,5,23,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,925,4,0,1030,-7,0,0 +2013,4,12,5,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1150,47,1,1425,33,1,0 +2013,8,31,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-4,0,1315,-23,0,0 +2013,8,12,1,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-6,0,1213,-4,0,0 +2013,7,12,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,141,1,2135,147,1,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1248,-7,0,1847,-14,0,0 +2013,4,11,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1555,4,0,1605,1,0,0 +2013,4,7,7,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1805,71,1,2055,85,1,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,630,-5,0,840,-1,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1610,-4,0,1820,-18,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1340,5,0,1800,-2,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1150,-5,0,1337,-13,0,0 +2013,5,9,4,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1710,6,0,1953,30,1,0 +2013,7,24,3,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1625,-1,0,1730,-9,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,2,0,1830,-11,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,1,0,1935,-8,0,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1520,6,0,1800,1,0,0 +2013,9,11,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,15,1,1950,19,1,0 +2013,5,10,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1815,1,0,1940,-1,0,0 +2013,10,21,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-5,0,725,-1,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,800,4,0,1240,-15,0,0 +2013,7,13,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1905,-12,0,0 +2013,9,27,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-7,0,1242,-19,0,0 +2013,5,4,6,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-10,0,1025,-19,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2125,7,0,2230,27,1,0 +2013,10,28,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,5,0,1617,-13,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1350,0,0,1650,11,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1238,10,0,1435,-7,0,0 +2013,8,10,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1706,-7,0,1831,-20,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,2,0,1333,6,0,0 +2013,6,9,7,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1826,-7,0,2002,-15,0,0 +2013,10,22,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-4,0,1420,-6,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1310,5,0,1410,1,0,0 +2013,7,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1030,-4,0,1142,7,0,0 +2013,7,9,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1745,15,1,1930,-6,0,0 +2013,8,11,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1600,48,1,1630,49,1,0 +2013,7,25,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-3,0,815,-7,0,0 +2013,10,31,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1215,-1,0,1345,-11,0,0 +2013,9,30,1,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2101,14,0,2342,-7,0,0 +2013,8,26,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-4,0,1750,-27,0,0 +2013,7,31,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,700,-5,0,830,-2,0,0 +2013,6,24,1,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1745,16,1,1910,10,0,0 +2013,7,11,4,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1055,8,0,1850,6,0,0 +2013,6,9,7,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1859,5,0,2059,-6,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,16,1,1320,18,1,0 +2013,10,20,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1423,0,0,1548,-12,0,0 +2013,4,6,6,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1820,25,1,2104,12,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1000,1,0,1105,-6,0,0 +2013,6,23,7,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,6,0,1725,-5,0,0 +2013,10,18,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1305,-12,0,1659,-29,0,0 +2013,8,1,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2220,0,0,2350,-9,0,0 +2013,4,12,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,732,0,,939,0,1,1 +2013,5,31,5,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,98,1,1351,91,1,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1854,2,0,2207,-4,0,0 +2013,6,5,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,-10,0,1520,-22,0,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1010,6,0,1420,2,0,0 +2013,5,15,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1945,0,0,2240,-11,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,143,1,755,198,1,0 +2013,5,28,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,20,43,1,815,42,1,0 +2013,8,25,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2000,-5,0,2139,-13,0,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-1,0,1334,-8,0,0 +2013,4,9,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-2,0,739,0,0,0 +2013,7,9,2,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1020,15,1,1318,14,0,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,7,0,1915,-22,0,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1925,14,0,2240,11,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,605,0,0,844,-5,0,0 +2013,4,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1710,13,0,1810,9,0,0 +2013,10,11,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1535,16,1,1640,18,1,0 +2013,10,25,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,3,0,1637,1,0,0 +2013,8,3,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,36,1,1223,30,1,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1025,7,0,1835,-2,0,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1945,-4,0,2318,-18,0,0 +2013,6,18,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1225,0,0,1350,-5,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1539,-7,0,1647,-10,0,0 +2013,4,8,1,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1810,-7,0,2055,-9,0,0 +2013,6,11,2,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,49,1,1025,56,1,0 +2013,10,16,3,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1240,5,0,1610,10,0,0 +2013,8,7,3,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1725,6,0,2100,11,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1525,1,0,1625,-3,0,0 +2013,6,12,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,1,0,1115,-8,0,0 +2013,6,17,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,0,,2125,0,1,1 +2013,6,7,5,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1445,-7,0,1611,-6,0,0 +2013,10,8,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1705,-2,0,1835,-4,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1755,-1,0,2020,-13,0,0 +2013,8,18,7,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1605,-9,0,0 +2013,9,15,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1830,-3,0,2015,-11,0,0 +2013,8,2,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1921,95,1,1939,97,1,0 +2013,5,16,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1205,-5,0,1310,-18,0,0 +2013,8,19,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,4,0,1558,10,0,0 +2013,5,17,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1132,-6,0,1335,8,0,0 +2013,8,1,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1306,-1,0,1514,4,0,0 +2013,5,27,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,600,-2,0,1355,-14,0,0 +2013,10,7,1,WN,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1645,4,0,1905,3,0,0 +2013,4,16,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,4,0,1217,-8,0,0 +2013,9,20,5,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1723,151,1,1850,139,1,0 +2013,10,19,6,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-18,0,2015,-24,0,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1343,-1,0,1701,-30,0,0 +2013,4,14,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,-2,0,2324,9,0,0 +2013,10,7,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1645,-2,0,1850,-1,0,0 +2013,8,9,5,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,13,0,1735,59,1,0 +2013,8,21,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-6,0,1747,18,1,0 +2013,4,4,4,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,830,-4,0,1105,-9,0,0 +2013,8,24,6,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-1,0,1005,-3,0,0 +2013,9,26,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1355,-5,0,1710,3,0,0 +2013,6,11,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2100,-7,0,125,-14,0,0 +2013,5,20,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,0,,2005,0,1,1 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,-1,0,2145,-15,0,0 +2013,5,25,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,2,0,1017,9,0,0 +2013,9,26,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1333,6,0,1515,1,0,0 +2013,6,11,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,915,-6,0,1033,-20,0,0 +2013,10,11,5,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,0,0,1950,7,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,835,16,1,1545,-4,0,0 +2013,8,26,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1350,-8,0,1528,-23,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1030,-8,0,1645,-26,0,0 +2013,10,19,6,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1405,15,1,2005,-5,0,0 +2013,9,6,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,-4,0,1850,-13,0,0 +2013,6,25,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,835,4,0,941,13,0,0 +2013,9,3,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1253,-4,0,1413,-14,0,0 +2013,6,8,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1402,-7,0,1659,12,0,0 +2013,5,18,6,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-9,0,1040,-36,0,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1230,12,0,1320,9,0,0 +2013,5,16,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2015,3,0,2121,-5,0,0 +2013,4,2,2,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-1,0,1555,-7,0,0 +2013,6,8,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,-1,0,1740,3,0,0 +2013,5,8,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-7,0,1800,-28,0,0 +2013,5,1,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-12,0,2128,-11,0,0 +2013,5,11,6,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,20,1,1610,12,0,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1955,31,1,2125,23,1,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,0,0,1258,5,0,0 +2013,5,24,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1306,-2,0,1457,-2,0,0 +2013,6,28,5,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,7,0,2051,5,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2035,123,1,2330,116,1,0 +2013,5,22,3,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,3,0,940,-10,0,0 +2013,7,7,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1547,-10,0,1842,1,0,0 +2013,4,9,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,-5,0,825,-5,0,0 +2013,10,6,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1900,-6,0,2045,-4,0,0 +2013,6,22,6,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2035,0,0,2337,-22,0,0 +2013,10,16,3,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,800,-8,0,1052,-20,0,0 +2013,10,24,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1540,23,1,1815,30,1,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1650,-2,0,1801,-19,0,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-4,0,1405,-3,0,0 +2013,6,30,7,YV,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-13,0,1702,-30,0,0 +2013,10,4,5,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,908,2,0,1048,40,1,0 +2013,6,15,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,0,0,1909,-5,0,0 +2013,6,7,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-1,0,1635,19,1,0 +2013,9,23,1,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1940,30,1,2240,29,1,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1630,0,,1730,0,1,1 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1001,-4,0,1152,-18,0,0 +2013,6,23,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-3,0,2103,-20,0,0 +2013,8,21,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,1,0,1238,-14,0,0 +2013,6,25,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,600,0,0,615,6,0,0 +2013,7,15,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,745,-4,0,817,-3,0,0 +2013,5,24,5,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1646,-2,0,1805,3,0,0 +2013,6,24,1,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1040,-2,0,1501,19,1,0 +2013,9,5,4,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,376,1,1740,369,1,0 +2013,10,21,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1325,0,0,2159,-18,0,0 +2013,10,11,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,42,1,2117,72,1,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1750,-2,0,1850,-13,0,0 +2013,5,3,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1955,0,0,2125,-9,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1625,20,1,1638,12,0,0 +2013,7,14,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1610,174,1,1735,177,1,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,905,-2,0,1055,-25,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-2,0,30,-28,0,0 +2013,5,15,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-1,0,1224,-18,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1010,-3,0,1444,-32,0,0 +2013,4,27,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,25,1,1830,31,1,0 +2013,9,15,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1600,-3,0,1629,-11,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,11,0,1830,32,1,0 +2013,10,3,4,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1000,-3,0,1059,-9,0,0 +2013,9,8,7,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,805,-10,0,919,-17,0,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1125,55,1,1720,50,1,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,940,32,1,1050,31,1,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,812,-1,0,1011,-6,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,650,0,0,935,-7,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,953,-3,0,1215,-9,0,0 +2013,4,29,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,2,0,903,8,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1917,105,1,2053,97,1,0 +2013,6,28,5,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,-2,0,935,7,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,36,1,2250,30,1,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1924,-3,0,2114,-8,0,0 +2013,6,17,1,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,713,-8,0,1120,-5,0,0 +2013,8,25,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-6,0,2056,10,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2205,46,1,2320,37,1,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1905,3,0,2023,8,0,0 +2013,5,9,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,-2,0,1355,-19,0,0 +2013,6,13,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,0,,1030,0,1,1 +2013,4,5,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-6,0,1540,-14,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,138,1,1750,121,1,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,739,-5,0,915,-11,0,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,800,0,0,1405,-22,0,0 +2013,5,2,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-10,0,1320,-10,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,17,1,1510,15,1,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,1,0,1033,-15,0,0 +2013,4,2,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-4,0,1747,-9,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1010,20,1,1112,26,1,0 +2013,10,3,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1040,10,0,1055,2,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-3,0,2103,-4,0,0 +2013,7,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2050,29,1,2210,36,1,0 +2013,6,22,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,6,0,2156,-1,0,0 +2013,8,29,4,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1233,11,0,1354,5,0,0 +2013,5,31,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,46,1,1600,37,1,0 +2013,7,31,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,7,0,1907,-4,0,0 +2013,9,4,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,1,0,1635,9,0,0 +2013,8,14,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,75,1,1355,71,1,0 +2013,4,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,26,1,1735,25,1,0 +2013,10,29,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-5,0,850,-11,0,0 +2013,7,22,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1102,4,0,0 +2013,4,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1254,-1,0,1354,-5,0,0 +2013,6,28,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-5,0,900,-3,0,0 +2013,8,15,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1000,0,0,1320,16,1,0 +2013,5,22,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1500,7,0,2330,13,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,935,-5,0,1200,-10,0,0 +2013,6,18,2,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-1,0,910,-17,0,0 +2013,8,28,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,650,-6,0,815,-10,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-3,0,727,-14,0,0 +2013,5,30,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1126,15,1,1251,55,1,0 +2013,7,26,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,615,-3,0,945,-8,0,0 +2013,8,15,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1535,-1,0,1810,-18,0,0 +2013,9,17,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,709,-4,0,743,-4,0,0 +2013,9,7,6,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1600,4,0,1755,-5,0,0 +2013,8,13,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1821,97,1,2215,89,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1754,71,1,2013,75,1,0 +2013,6,28,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,24,1,2155,19,1,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,36,1,2059,6,0,0 +2013,7,7,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,630,-1,0,1225,-8,0,0 +2013,10,20,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,940,-3,0,1050,-8,0,0 +2013,5,10,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,357,1,1400,343,1,0 +2013,7,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,28,1,920,19,1,0 +2013,10,30,3,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1805,26,1,2105,35,1,0 +2013,5,5,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1817,97,1,2032,96,1,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,948,-7,0,1259,-35,0,0 +2013,7,28,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,2,0,1040,-4,0,0 +2013,10,12,6,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1614,0,0,1909,-1,0,0 +2013,10,14,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,549,-1,0,712,-16,0,0 +2013,9,21,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1220,-9,0,1400,-9,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,645,17,1,910,18,1,0 +2013,5,31,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-4,0,1040,-12,0,0 +2013,10,8,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1125,-1,0,1321,-7,0,0 +2013,10,25,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,930,0,0,1648,0,0,0 +2013,6,13,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1726,34,1,1917,67,1,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1000,61,1,1259,61,1,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,18,1,1055,21,1,0 +2013,8,12,1,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2007,-1,0,2259,-10,0,0 +2013,8,8,4,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,3,0,2235,14,0,0 +2013,10,14,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1800,-2,0,2045,14,0,0 +2013,5,21,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1150,-2,0,1305,-2,0,0 +2013,4,25,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1139,50,1,1349,41,1,0 +2013,8,25,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,-9,0,1942,-12,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,16,1,1335,12,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,-3,0,2120,-20,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1015,45,1,1230,2,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,0,0,1317,-28,0,0 +2013,9,28,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,30,1,2320,40,1,0 +2013,6,23,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-4,0,1309,-14,0,0 +2013,6,7,5,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1024,-6,0,1208,-16,0,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1000,50,1,1340,33,1,0 +2013,10,13,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2010,28,1,2159,15,1,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1845,31,1,2135,-2,0,0 +2013,5,11,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1645,-9,0,1824,-2,0,0 +2013,4,19,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,653,-3,0,918,-23,0,0 +2013,8,25,7,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2010,0,0,2208,-16,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,-2,0,1613,-1,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,735,-4,0,1035,-1,0,0 +2013,5,12,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,730,-5,0,1045,-19,0,0 +2013,6,26,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2100,-2,0,2205,-9,0,0 +2013,9,29,7,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1417,5,0,1721,-3,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,635,5,0,845,-2,0,0 +2013,9,22,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1926,6,0,2247,-2,0,0 +2013,6,3,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1500,0,0,1607,0,0,0 +2013,9,23,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,1,0,805,-12,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1405,-2,0,1734,0,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1454,-1,0,1608,-1,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1320,0,0,1425,3,0,0 +2013,9,20,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,37,1,1911,28,1,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1447,-5,0,1609,-8,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-4,0,2309,2,0,0 +2013,8,28,3,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1651,13,0,1845,-2,0,0 +2013,5,29,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,-7,0,1738,-11,0,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1850,11,0,2015,7,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,7,0,1546,1,0,0 +2013,8,28,3,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,87,1,2019,75,1,0 +2013,6,6,4,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,838,-7,0,1134,-32,0,0 +2013,4,10,3,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1925,169,1,2120,172,1,0 +2013,5,10,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,0,0,1715,-8,0,0 +2013,7,2,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1226,53,1,1421,49,1,0 +2013,10,28,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2135,-5,0,615,-18,0,0 +2013,6,25,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,854,-6,0,1030,-19,0,0 +2013,4,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2131,-5,0,2240,-16,0,0 +2013,8,20,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,943,-5,0,1259,-24,0,0 +2013,8,8,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2045,4,0,2150,-9,0,0 +2013,10,23,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1250,2,0,1405,4,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1021,8,0,1604,-1,0,0 +2013,9,27,5,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,2157,-7,0,2316,-18,0,0 +2013,9,30,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,755,-2,0,905,-14,0,0 +2013,5,16,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-6,0,1409,-20,0,0 +2013,6,30,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1939,0,,2130,0,1,1 +2013,10,8,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,650,-8,0,827,-11,0,0 +2013,10,16,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-2,0,1556,-24,0,0 +2013,8,19,1,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,825,-5,0,1130,-27,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1035,15,1,1600,12,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2045,22,1,2102,4,0,0 +2013,4,16,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,813,-14,0,0 +2013,9,8,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-2,0,1734,-5,0,0 +2013,7,10,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1601,-3,0,1900,7,0,0 +2013,8,29,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1003,-3,0,1112,-8,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1752,-1,0,2037,8,0,0 +2013,10,31,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,525,-13,0,640,-22,0,0 +2013,4,30,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,-5,0,1826,-2,0,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,-3,0,1820,-13,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1356,35,1,1712,14,0,0 +2013,8,20,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,22,1,1830,9,0,0 +2013,8,5,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,12,0,1255,12,0,0 +2013,7,10,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,15,1,2010,3,0,0 +2013,5,26,7,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1120,-12,0,1945,-21,0,0 +2013,5,5,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,48,1,2122,66,1,0 +2013,6,21,5,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,125,1,1924,118,1,0 +2013,8,9,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1708,178,1,1830,171,1,0 +2013,9,23,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,5,0,1535,-14,0,0 +2013,4,23,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,7,0,1203,13,0,0 +2013,8,3,6,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,659,-3,0,920,-13,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-5,0,2015,3,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1435,17,1,1640,13,0,0 +2013,6,17,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1220,51,1,1340,48,1,0 +2013,6,27,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-3,0,1828,2,0,0 +2013,5,28,2,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1528,-2,0,1835,-8,0,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2035,142,1,2200,151,1,0 +2013,8,27,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,-1,0,1235,-36,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1355,3,0,1650,-7,0,0 +2013,10,24,4,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1626,-1,0,1849,-6,0,0 +2013,7,7,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-5,0,1100,-12,0,0 +2013,8,9,5,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1914,3,0,2059,-7,0,0 +2013,6,30,7,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1844,30,1,2030,15,1,0 +2013,7,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-4,0,1608,-13,0,0 +2013,10,21,1,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1516,71,1,1710,73,1,0 +2013,10,29,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1055,-3,0,1224,5,0,0 +2013,6,25,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1551,2,0,2359,5,0,0 +2013,6,23,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,2,0,1353,9,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,-1,0,1947,-19,0,0 +2013,5,16,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,27,1,2000,19,1,0 +2013,5,27,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,30,-4,0,814,-11,0,0 +2013,6,20,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,45,1,1900,31,1,0 +2013,8,10,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,840,8,0,1014,-1,0,0 +2013,5,23,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,27,1,1920,21,1,0 +2013,7,9,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,2351,52,1,511,38,1,0 +2013,4,24,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1552,56,1,1615,47,1,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1655,-2,0,1850,-13,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,7,0,622,11,0,0 +2013,5,14,2,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,938,-24,0,1204,-21,0,0 +2013,8,14,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,-5,0,2038,1,0,0 +2013,5,9,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1821,31,1,2041,10,0,0 +2013,10,3,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1229,-4,0,1517,-13,0,0 +2013,9,3,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-7,0,1828,-2,0,0 +2013,6,14,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1650,50,1,1725,56,1,0 +2013,8,17,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1657,-2,0,1820,-1,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,8,0,2120,15,1,0 +2013,8,6,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-8,0,1442,-6,0,0 +2013,6,15,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,8,0,1335,-7,0,0 +2013,6,2,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1300,72,1,1525,79,1,0 +2013,8,5,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-5,0,1057,-14,0,0 +2013,7,19,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-1,0,1839,-5,0,0 +2013,5,26,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1115,-5,0,1233,-15,0,0 +2013,4,26,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1233,0,0,1500,16,1,0 +2013,4,10,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,1955,23,1,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1350,3,0,1620,-7,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1525,0,0,1730,1,0,0 +2013,6,2,7,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,910,4,0,1120,11,0,0 +2013,9,23,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1245,19,1,1410,18,1,0 +2013,7,2,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-11,0,1345,-26,0,0 +2013,8,3,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,121,1,147,108,1,0 +2013,10,17,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,7,0,1643,4,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1030,18,1,1420,3,0,0 +2013,4,10,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1510,17,1,1730,15,1,0 +2013,8,25,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-4,0,851,-12,0,0 +2013,9,17,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,3,0,1549,14,0,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,834,-4,0,1120,-31,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1840,-10,0,44,-34,0,0 +2013,8,28,3,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1855,-4,0,2055,-21,0,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1204,89,1,1342,72,1,0 +2013,4,5,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,2100,-3,0,2338,-22,0,0 +2013,8,3,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1310,4,0,1500,-1,0,0 +2013,10,25,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,740,-8,0,910,-11,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2007,4,0,2259,-38,0,0 +2013,7,9,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1710,110,1,1840,104,1,0 +2013,5,27,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-2,0,1434,-17,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1320,0,,1700,0,1,1 +2013,5,6,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,720,-6,0,1151,-16,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,745,29,1,1019,62,1,0 +2013,9,29,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1340,-6,0,1538,2,0,0 +2013,8,22,4,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-2,0,1033,-20,0,0 +2013,10,26,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,-3,0,606,-10,0,0 +2013,10,9,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,519,2,0,606,8,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1220,78,1,1905,49,1,0 +2013,8,13,2,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1145,1,0,1320,-14,0,0 +2013,5,10,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1825,1,0,2127,-10,0,0 +2013,6,7,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-3,0,1428,-13,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,0,0,15,-4,0,0 +2013,9,28,6,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1230,2,0,1430,-15,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,850,-5,0,1615,-20,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1110,22,1,1246,11,0,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1743,-8,0,1920,-12,0,0 +2013,7,22,1,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-6,0,832,-24,0,0 +2013,10,10,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,920,4,0,1235,-7,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,-7,0,1710,-7,0,0 +2013,6,3,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-7,0,1418,-4,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1310,115,1,1554,105,1,0 +2013,6,13,4,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,-1,0,1935,-4,0,0 +2013,8,8,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-6,0,1356,0,0,0 +2013,10,17,4,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,844,-6,0,0 +2013,8,21,3,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1413,59,1,1533,50,1,0 +2013,5,19,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1113,20,1,1437,27,1,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1242,-4,0,1440,-8,0,0 +2013,9,18,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1203,-10,0,1307,-20,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-5,0,2150,-24,0,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,3,0,1830,1,0,0 +2013,7,9,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1420,3,0,1650,0,0,0 +2013,4,22,1,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1145,-1,0,0 +2013,8,9,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1742,96,1,1901,118,1,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,11,0,1410,3,0,0 +2013,4,21,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1400,1,0,1420,4,0,0 +2013,8,8,4,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1612,-5,0,1847,-16,0,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,635,0,0,845,-13,0,0 +2013,4,26,5,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1130,-6,0,2004,-6,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1640,-3,0,1921,-14,0,0 +2013,7,18,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-4,0,1311,-7,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,14,0,2315,6,0,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,2,0,815,-29,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1010,-8,0,1157,-17,0,0 +2013,8,17,6,EV,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1900,-4,0,2013,-25,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1200,15,1,1310,4,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1330,0,0,1528,5,0,0 +2013,6,19,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,600,-3,0,700,-6,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1300,35,1,1505,32,1,0 +2013,10,12,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1730,-4,0,1950,-21,0,0 +2013,10,17,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,7,0,708,-20,0,0 +2013,8,8,4,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1540,-6,0,1825,-18,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,0,0,1402,2,0,0 +2013,9,21,6,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-4,0,802,-18,0,0 +2013,5,18,6,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,46,-8,0,855,-12,0,0 +2013,6,15,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,905,6,0,1020,-1,0,0 +2013,4,5,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,1,0,1400,8,0,0 +2013,10,18,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1145,-1,0,1309,-10,0,0 +2013,4,17,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-5,0,1446,-21,0,0 +2013,9,27,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-1,0,1524,3,0,0 +2013,9,15,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-5,0,1455,-10,0,0 +2013,4,10,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1152,70,1,2000,92,1,0 +2013,9,12,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1740,199,1,1930,217,1,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2010,39,1,2158,36,1,0 +2013,8,4,7,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,-13,0,1329,-21,0,0 +2013,5,5,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-6,0,1424,2,0,0 +2013,7,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2140,20,1,2236,19,1,0 +2013,8,19,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,710,1,0,835,3,0,0 +2013,5,18,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,-4,0,1706,-13,0,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,-1,0,855,-6,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1135,6,0,1235,0,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,627,-7,0,800,-9,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,83,1,2104,85,1,0 +2013,5,8,3,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,0,0,1255,-4,0,0 +2013,4,21,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,1,0,1535,-4,0,0 +2013,7,28,7,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1045,77,1,1130,68,1,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1925,0,,2025,0,1,1 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,800,-6,0,1055,-11,0,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1215,2,0,1305,-6,0,0 +2013,5,26,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1254,0,0,1529,9,0,0 +2013,9,3,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-1,0,1853,10,0,0 +2013,4,3,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1835,-9,0,2120,-1,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1035,28,1,1430,12,0,0 +2013,7,12,5,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1120,3,0,1240,-17,0,0 +2013,10,16,3,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2241,-2,0,2354,-14,0,0 +2013,8,7,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1942,85,1,2050,78,1,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1405,-1,0,1740,-7,0,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1715,5,0,2024,-8,0,0 +2013,7,23,2,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-3,0,1608,-6,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2045,15,1,2215,-5,0,0 +2013,4,3,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,0,0,1730,0,0,0 +2013,6,29,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,600,0,0,840,-1,0,0 +2013,9,22,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,10,0,1635,3,0,0 +2013,4,18,4,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,9,0,1800,9,0,0 +2013,9,11,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,-6,0,1838,-3,0,0 +2013,5,20,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,10,0,730,13,0,0 +2013,10,7,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-4,0,1129,-9,0,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,30,1,2245,24,1,0 +2013,9,29,7,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,700,34,1,928,20,1,0 +2013,9,23,1,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1757,-9,0,2014,-15,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1455,12,0,1945,-9,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1315,-2,0,1500,2,0,0 +2013,8,17,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2140,7,0,2358,-16,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1904,3,0,2029,-4,0,0 +2013,9,14,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,0,0,1918,-9,0,0 +2013,4,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,-3,0,750,-1,0,0 +2013,8,4,7,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1140,22,1,1330,8,0,0 +2013,8,31,6,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1035,-2,0,1120,-6,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1311,-4,0,1434,-8,0,0 +2013,5,13,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-6,0,1655,-24,0,0 +2013,6,30,7,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,13,0,1655,18,1,0 +2013,9,23,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,13,0,1409,-2,0,0 +2013,10,7,1,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-1,0,815,-5,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,-7,0,1958,-14,0,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1425,9,0,1530,-2,0,0 +2013,6,24,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-9,0,955,-3,0,0 +2013,7,26,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,-4,0,1922,-6,0,0 +2013,9,12,4,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1455,26,1,1625,23,1,0 +2013,7,29,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,606,-4,0,705,-6,0,0 +2013,8,1,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-3,0,2110,6,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2115,-4,0,2255,-26,0,0 +2013,7,5,5,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1630,67,1,1837,70,1,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,41,1,2110,48,1,0 +2013,5,30,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,-10,0,1949,-12,0,0 +2013,6,30,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,7,0,1550,-1,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1045,7,0,1210,-4,0,0 +2013,7,15,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,76,1,2200,68,1,0 +2013,4,24,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,733,-8,0,0 +2013,9,27,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1710,-5,0,1817,17,1,0 +2013,10,31,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,-5,0,720,5,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1808,-5,0,2004,5,0,0 +2013,6,9,7,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1430,-1,0,1718,-22,0,0 +2013,4,13,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,5,0,1535,-5,0,0 +2013,8,18,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1610,-3,0,1705,2,0,0 +2013,9,3,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-2,0,832,-15,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,728,-2,0,859,-7,0,0 +2013,10,8,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-5,0,1125,-13,0,0 +2013,4,22,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,600,-2,0,750,-3,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1545,0,0,1730,-12,0,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1815,8,0,1930,4,0,0 +2013,7,27,6,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1030,26,1,1415,11,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-2,0,1145,-7,0,0 +2013,7,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,833,-4,0,932,-3,0,0 +2013,6,4,2,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1457,-2,0,1610,6,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1320,17,1,1505,4,0,0 +2013,10,28,1,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,4,0,1757,10,0,0 +2013,8,14,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,-3,0,720,25,1,0 +2013,7,2,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-3,0,940,-6,0,0 +2013,8,13,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-2,0,1847,-9,0,0 +2013,5,9,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,-4,0,1800,-7,0,0 +2013,7,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2010,3,0,2115,2,0,0 +2013,5,14,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1915,0,0,2030,-2,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1205,-2,0,1345,1,0,0 +2013,9,21,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,700,2,0,755,-1,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,4,0,1250,4,0,0 +2013,6,3,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1012,19,1,1315,15,1,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1827,-3,0,2019,-9,0,0 +2013,5,5,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,919,-7,0,1107,-8,0,0 +2013,8,13,2,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,70,1,1749,63,1,0 +2013,8,16,5,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1000,0,0,1113,5,0,0 +2013,10,3,4,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1226,-11,0,1813,-8,0,0 +2013,6,4,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1201,-8,0,0 +2013,5,23,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,4,0,1500,-3,0,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2030,1,0,2205,-13,0,0 +2013,6,20,4,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1843,-10,0,2052,-4,0,0 +2013,10,15,2,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,645,0,0,935,-15,0,0 +2013,5,15,3,EV,14307,Theodore Francis Green State,Providence,RI,11042,Cleveland-Hopkins International,Cleveland,OH,545,-8,0,742,-12,0,0 +2013,8,9,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-2,0,1335,-7,0,0 +2013,7,15,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1606,13,0,1915,21,1,0 +2013,8,24,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1755,3,0,2000,12,0,0 +2013,10,30,3,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1048,-7,0,1215,12,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1645,-3,0,1755,-10,0,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,845,21,1,1215,14,0,0 +2013,4,15,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12339,Indianapolis International,Indianapolis,IN,1115,22,1,1352,26,1,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,33,1,2050,44,1,0 +2013,8,24,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1256,-3,0,1603,-28,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,6,0,1850,-8,0,0 +2013,5,30,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,0,0,1305,-1,0,0 +2013,8,16,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,0,,1930,0,1,1 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1608,45,1,1839,37,1,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,-17,0,2359,-17,0,0 +2013,6,5,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,723,-13,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,836,-5,0,959,-36,0,0 +2013,10,9,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-5,0,820,-9,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,3,0,1125,9,0,0 +2013,4,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2130,-1,0,2315,-26,0,0 +2013,9,22,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,74,1,1800,76,1,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1825,17,1,2130,14,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1935,-3,0,55,-10,0,0 +2013,9,8,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,-2,0,1220,1,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,12,0,1030,13,0,0 +2013,4,1,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1325,5,0,1615,17,1,0 +2013,8,14,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-1,0,1746,-19,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2245,24,1,111,29,1,0 +2013,4,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2005,29,1,2145,26,1,0 +2013,5,18,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1737,-2,0,1814,-2,0,0 +2013,8,30,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-8,0,900,8,0,0 +2013,10,27,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1230,-2,0,1409,-1,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,745,-6,0,1040,-8,0,0 +2013,9,11,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,659,-7,0,1209,-14,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,610,-2,0,815,-1,0,0 +2013,10,28,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1715,-9,0,2325,2,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,21,1,1625,21,1,0 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,-1,0,1520,-36,0,0 +2013,8,22,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,30,1,1846,30,1,0 +2013,4,26,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-5,0,1704,-15,0,0 +2013,7,28,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,0,0,1015,-1,0,0 +2013,8,12,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,-4,0,1934,-4,0,0 +2013,6,28,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-4,0,1317,12,0,0 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,26,1,1120,15,1,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-6,0,1019,1,0,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2050,0,0,2159,11,0,0 +2013,10,16,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1335,-3,0,1750,-25,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,17,1,1130,4,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1155,15,1,1330,15,1,0 +2013,4,21,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-6,0,1255,-13,0,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1520,21,1,1730,15,1,0 +2013,4,21,7,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1029,1,0,1217,-5,0,0 +2013,5,31,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-6,0,1906,-8,0,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,800,-4,0,1231,-3,0,0 +2013,6,12,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1729,-11,0,1859,-14,0,0 +2013,6,15,6,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1109,10,0,1413,11,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,68,1,845,67,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,735,5,0,904,-4,0,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,940,-1,0,1137,-28,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,830,2,0,1055,-5,0,0 +2013,7,20,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,-2,0,1820,-11,0,0 +2013,5,8,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2015,53,1,2121,42,1,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1555,2,0,1745,-6,0,0 +2013,10,26,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,750,-2,0,900,-2,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1700,137,1,2020,127,1,0 +2013,4,23,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1109,-2,0,1704,-9,0,0 +2013,8,31,6,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1220,67,1,1415,56,1,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1945,82,1,2125,70,1,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1830,-4,0,2021,0,0,0 +2013,6,3,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1615,-1,0,2224,-17,0,0 +2013,5,6,1,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1906,-8,0,2018,-9,0,0 +2013,6,15,6,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,2037,10,0,2308,-6,0,0 +2013,6,26,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,13,0,1820,-1,0,0 +2013,5,11,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,740,0,0,905,-9,0,0 +2013,8,28,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,958,-2,0,1145,-10,0,0 +2013,4,16,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1146,-1,0,1441,-27,0,0 +2013,9,13,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,-4,0,1946,-11,0,0 +2013,8,15,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1800,24,1,1925,22,1,0 +2013,9,26,4,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1708,26,1,1833,23,1,0 +2013,8,7,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1117,25,1,1635,19,1,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,810,85,1,1125,84,1,0 +2013,6,16,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,-1,0,1230,-14,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1616,12,0,1800,3,0,0 +2013,4,17,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,6,0,1535,1,0,0 +2013,8,26,1,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1145,-4,0,1357,-10,0,0 +2013,9,20,5,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1546,-4,0,1649,-12,0,0 +2013,8,22,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1550,-3,0,1850,-6,0,0 +2013,7,26,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,-3,0,1115,-15,0,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1245,11,0,1613,0,0,0 +2013,9,2,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-2,0,1525,-6,0,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1450,-2,0,1653,1,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1230,-5,0,1605,-16,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,-3,0,2112,-19,0,0 +2013,7,18,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,0,0,2010,4,0,0 +2013,5,23,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,630,-1,0,700,-3,0,0 +2013,8,28,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,643,0,0,808,-9,0,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,126,1,2129,143,1,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,3,0,927,-5,0,0 +2013,10,28,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1128,-2,0,1240,-13,0,0 +2013,6,10,1,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,-1,0,2240,-5,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,-3,0,1430,-19,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,0,,1004,0,1,1 +2013,9,13,5,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,850,-6,0,1130,-20,0,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1510,-3,0,1845,23,1,0 +2013,8,15,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1055,-1,0,1310,-8,0,0 +2013,10,15,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,705,-7,0,905,2,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,-3,0,1010,-18,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,530,-2,0,930,-7,0,0 +2013,7,6,6,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,750,-2,0,1041,-9,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,755,8,0,1055,12,0,0 +2013,5,13,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,29,1,640,29,1,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1400,-9,0,1533,-13,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2130,52,1,2324,31,1,0 +2013,7,9,2,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1100,0,0,1250,-15,0,0 +2013,10,25,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,650,-9,0,710,-14,0,0 +2013,5,17,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1608,-1,0,1813,-9,0,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2130,28,1,2340,13,0,0 +2013,6,29,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1240,-1,0,2102,-13,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1415,169,1,1700,178,1,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2031,-7,0,2348,-38,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,810,-5,0,1110,-19,0,0 +2013,7,9,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1055,-8,0,1335,3,0,0 +2013,4,30,2,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1222,-7,0,1305,4,0,0 +2013,8,9,5,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1720,14,0,1901,-1,0,0 +2013,8,9,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1728,1,0,1802,4,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1720,60,1,1950,51,1,0 +2013,7,17,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1741,0,,1904,0,1,1 +2013,6,10,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-3,0,1010,-17,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,-5,0,1730,-9,0,0 +2013,6,18,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-10,0,1955,2,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,657,-4,0,828,-21,0,0 +2013,5,28,2,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,0,0,1832,-9,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1945,20,1,2140,22,1,0 +2013,6,4,2,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,605,-3,0,737,5,0,0 +2013,8,7,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,10,0,1710,35,1,0 +2013,10,20,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1125,-7,0,1220,-10,0,0 +2013,9,22,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1940,6,0,2100,-8,0,0 +2013,6,15,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1345,13,0,1445,17,1,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2059,8,0,2324,-18,0,0 +2013,5,19,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1005,-2,0,1120,0,0,0 +2013,6,24,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1720,7,0,1825,-1,0,0 +2013,5,24,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,900,18,1,1024,25,1,0 +2013,9,3,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1055,6,0,1220,1,0,0 +2013,6,1,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1600,-5,0,1720,-15,0,0 +2013,9,13,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-4,0,2043,3,0,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-3,0,1310,-3,0,0 +2013,6,7,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2104,-1,0,2318,-6,0,0 +2013,5,29,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1101,-11,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,730,-2,0,915,9,0,0 +2013,6,13,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-2,0,1025,-4,0,0 +2013,9,16,1,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,949,-1,0,1212,-1,0,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1000,8,0,1310,4,0,0 +2013,9,25,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,7,0,1805,15,1,0 +2013,6,29,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-2,0,1016,-3,0,0 +2013,4,25,4,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,-7,0,2044,-38,0,0 +2013,6,11,2,OO,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,637,-6,0,935,-16,0,0 +2013,9,14,6,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-13,0,1622,-18,0,0 +2013,9,21,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,815,-5,0,852,-3,0,0 +2013,4,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1520,-3,0,1650,-10,0,0 +2013,6,28,5,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,10,0,1205,7,0,0 +2013,5,18,6,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,819,-8,0,1017,-24,0,0 +2013,10,24,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1755,1,0,1934,-12,0,0 +2013,4,28,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,-8,0,1358,-13,0,0 +2013,10,17,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1255,0,0,1845,-4,0,0 +2013,8,6,2,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,922,-3,0,1046,-8,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,6,0,2345,-3,0,0 +2013,7,14,7,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1131,21,1,1303,23,1,0 +2013,8,4,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,-3,0,2142,-1,0,0 +2013,4,25,4,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1510,-5,0,2345,-10,0,0 +2013,5,24,5,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,2,0,1040,-5,0,0 +2013,4,21,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,640,-4,0,805,19,1,0 +2013,9,13,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1415,-4,0,1640,-25,0,0 +2013,6,20,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1930,2,0,2150,3,0,0 +2013,10,21,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,800,-3,0,850,-4,0,0 +2013,6,21,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-3,0,654,-7,0,0 +2013,8,10,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1310,1,0,1603,-3,0,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-7,0,1038,-9,0,0 +2013,4,14,7,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,21,1,1910,14,0,0 +2013,10,9,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-10,0,918,-11,0,0 +2013,5,30,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,-2,0,1901,-19,0,0 +2013,10,20,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-4,0,1910,-2,0,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-9,0,2201,-18,0,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,-2,0,1608,16,1,0 +2013,8,22,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-2,0,900,-2,0,0 +2013,7,31,3,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1659,39,1,1853,38,1,0 +2013,5,11,6,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,-6,0,1729,-12,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,54,1,1833,57,1,0 +2013,7,25,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,22,1,2019,11,0,0 +2013,7,21,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,29,1,1035,17,1,0 +2013,7,11,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,630,-2,0,800,-19,0,0 +2013,5,21,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1253,-23,0,0 +2013,10,18,5,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1700,-4,0,1916,3,0,0 +2013,10,23,3,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-5,0,1014,-3,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-1,0,943,-12,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,2002,121,1,2359,96,1,0 +2013,9,8,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1010,-3,0,1130,-8,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,856,-5,0,922,8,0,0 +2013,8,19,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,635,-8,0,1003,-21,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,-3,0,2310,-28,0,0 +2013,8,4,7,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1855,11,0,2130,23,1,0 +2013,9,17,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2325,87,1,543,93,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1729,-5,0,1857,-14,0,0 +2013,9,18,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1532,-2,0,1740,-22,0,0 +2013,10,27,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,727,-5,0,810,-6,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1830,12,0,2204,10,0,0 +2013,5,24,5,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,2,0,1509,-11,0,0 +2013,10,26,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1415,-3,0,1520,-20,0,0 +2013,4,8,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,700,-3,0,827,-15,0,0 +2013,4,25,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1936,5,0,2140,9,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,-3,0,725,-12,0,0 +2013,4,3,3,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1855,-3,0,2130,-20,0,0 +2013,10,6,7,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,10,0,1810,14,0,0 +2013,4,2,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1730,-1,0,1842,-3,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1655,75,1,2230,64,1,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1845,63,1,1955,58,1,0 +2013,4,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1150,0,0,1430,-4,0,0 +2013,6,9,7,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-3,0,1435,-16,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,-2,0,1103,-26,0,0 +2013,10,11,5,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2335,-1,0,750,-7,0,0 +2013,7,4,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-4,0,1619,-2,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,2020,9,0,2303,-9,0,0 +2013,4,21,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1656,-7,0,1801,-21,0,0 +2013,9,4,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,-7,0,2059,-24,0,0 +2013,9,18,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1456,-8,0,0 +2013,4,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1710,19,1,1850,12,0,0 +2013,10,18,5,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1055,35,1,1305,15,1,0 +2013,9,6,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1110,-2,0,1220,-6,0,0 +2013,8,3,6,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-2,0,2050,2,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2040,13,0,2320,16,1,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,722,26,1,852,7,0,0 +2013,10,31,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,1,0,1250,-1,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,24,1,1620,11,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1550,0,0,1905,-19,0,0 +2013,5,19,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,710,-11,0,1540,-36,0,0 +2013,10,30,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1350,-6,0,1507,1,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,-8,0,1902,-7,0,0 +2013,4,5,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1455,10,0,1620,10,0,0 +2013,9,21,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,4,0,1640,0,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2135,4,0,516,5,0,0 +2013,6,28,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,706,1,0,840,42,1,0 +2013,4,14,7,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1803,15,1,1953,32,1,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-4,0,2127,-27,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-5,0,1205,-5,0,0 +2013,8,23,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1635,0,0,1735,-6,0,0 +2013,5,19,7,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-7,0,1214,-6,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1805,215,1,2240,212,1,0 +2013,10,15,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1355,-5,0,1440,2,0,0 +2013,6,24,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,-6,0,1445,8,0,0 +2013,6,19,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,-4,0,1525,-4,0,0 +2013,7,2,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,8,0,1455,22,1,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-4,0,1005,0,0,0 +2013,6,2,7,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1805,221,1,2040,212,1,0 +2013,8,16,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,-4,0,955,7,0,0 +2013,4,5,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1555,22,1,1715,11,0,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2045,24,1,2330,26,1,0 +2013,4,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1340,4,0,1555,-2,0,0 +2013,4,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1949,23,1,2238,11,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1555,-6,0,1738,-19,0,0 +2013,6,26,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2100,143,1,2220,147,1,0 +2013,8,20,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,5,0,1305,-3,0,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2020,11,0,2205,7,0,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1130,-6,0,1314,-14,0,0 +2013,8,17,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1730,-3,0,1920,-14,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,5,0,2018,-3,0,0 +2013,4,29,1,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,3,0,845,1,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-5,0,1301,2,0,0 +2013,7,5,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,720,-5,0,955,-9,0,0 +2013,6,28,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1517,-1,0,1649,-6,0,0 +2013,10,21,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-11,0,1604,-10,0,0 +2013,5,14,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1725,3,0,2023,5,0,0 +2013,9,16,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,833,-5,0,0 +2013,4,13,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,9,0,1341,5,0,0 +2013,10,29,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1422,-7,0,1610,-1,0,0 +2013,8,12,1,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2029,-9,0,2248,-12,0,0 +2013,4,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1704,0,0,1805,-12,0,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,855,-5,0,1215,-4,0,0 +2013,6,18,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,800,40,1,955,43,1,0 +2013,9,21,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1450,2,0,1615,-11,0,0 +2013,6,3,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,930,2,0,1155,-3,0,0 +2013,8,28,3,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1835,-11,0,2115,-11,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,0,,1055,0,1,1 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,83,1,1755,78,1,0 +2013,8,22,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1920,64,1,2051,64,1,0 +2013,9,5,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1255,1,0,2134,-12,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1611,16,1,1902,31,1,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,815,1,0,930,-6,0,0 +2013,5,30,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,725,-5,0,820,-8,0,0 +2013,7,28,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,11,0,2135,-2,0,0 +2013,8,20,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-5,0,1254,-26,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,-4,0,1505,-3,0,0 +2013,10,21,1,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,855,25,1,1016,31,1,0 +2013,4,24,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1210,6,0,1505,2,0,0 +2013,7,13,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1910,176,1,2105,147,1,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,59,1,220,58,1,0 +2013,4,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,-9,0,2118,-4,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,11,0,1810,-5,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,0,0,2334,-30,0,0 +2013,4,15,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-7,0,1620,-7,0,0 +2013,10,1,2,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1814,-1,0,2143,-56,0,0 +2013,4,29,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1216,-3,0,1230,-9,0,0 +2013,5,20,1,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,24,1,1117,23,1,0 +2013,6,27,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2010,49,1,2139,40,1,0 +2013,10,20,7,9E,12339,Indianapolis International,Indianapolis,IN,12953,LaGuardia,New York,NY,1310,-3,0,1514,-20,0,0 +2013,6,7,5,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1847,0,,2034,0,1,1 +2013,9,21,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1425,0,0,2255,-30,0,0 +2013,5,18,6,OO,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,-1,0,1207,-9,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,840,1,0,1050,-14,0,0 +2013,8,21,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2035,141,1,2305,140,1,0 +2013,8,3,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,-4,0,2025,-5,0,0 +2013,10,11,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1040,-2,0,1131,9,0,0 +2013,7,5,5,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1635,-3,0,1914,-15,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,-4,0,1350,-10,0,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,854,2,0,1224,-6,0,0 +2013,6,7,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-3,0,2113,-11,0,0 +2013,5,21,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2345,3,0,545,1,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,915,-2,0,1350,17,1,0 +2013,8,12,1,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,0,0,1055,1,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1815,228,1,1935,240,1,0 +2013,8,6,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1600,7,0,1750,-18,0,0 +2013,10,22,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-11,0,1725,-21,0,0 +2013,10,25,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1300,-4,0,1622,-21,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,910,1,0,1210,0,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1912,20,1,2033,19,1,0 +2013,6,8,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-6,0,915,4,0,0 +2013,4,24,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-5,0,1633,18,1,0 +2013,6,24,1,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1305,-5,0,1530,-15,0,0 +2013,8,1,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1447,2,0,1700,-4,0,0 +2013,6,5,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1345,-7,0,1510,-9,0,0 +2013,5,2,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,920,0,0,1050,-7,0,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,910,3,0,1102,-23,0,0 +2013,6,17,1,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,0,0,1000,-3,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,35,1,1725,35,1,0 +2013,5,10,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1935,15,1,2035,15,1,0 +2013,9,5,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2202,-7,0,2255,-22,0,0 +2013,6,19,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1545,1,0,1650,-8,0,0 +2013,6,20,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-5,0,1407,-1,0,0 +2013,7,5,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-7,0,1120,-5,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-3,0,1017,-6,0,0 +2013,10,20,7,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,-6,0,2053,-13,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1035,-6,0,1146,-19,0,0 +2013,9,23,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-9,0,1939,-14,0,0 +2013,7,29,1,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-1,0,1950,5,0,0 +2013,10,21,1,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1850,-9,0,1945,-16,0,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,-5,0,1120,-11,0,0 +2013,5,3,5,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,715,-8,0,935,-18,0,0 +2013,6,9,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,425,-10,0,730,-33,0,0 +2013,5,12,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,-3,0,1410,-9,0,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-6,0,2013,-13,0,0 +2013,9,5,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1535,-6,0,1704,-25,0,0 +2013,7,24,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,-5,0,1555,-5,0,0 +2013,6,22,6,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1035,-5,0,1255,-10,0,0 +2013,8,2,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,950,29,1,1219,19,1,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1359,-3,0,1559,-4,0,0 +2013,8,28,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,3,0,1820,-2,0,0 +2013,5,6,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,955,19,1,1110,22,1,0 +2013,10,24,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1219,313,1,1459,325,1,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2200,56,1,2255,42,1,0 +2013,9,1,7,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,34,1,1805,22,1,0 +2013,6,6,4,US,14893,Sacramento International,Sacramento,CA,14100,Philadelphia International,Philadelphia,PA,2159,3,0,602,-1,0,0 +2013,6,29,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,41,1,1651,21,1,0 +2013,8,29,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-2,0,1515,-7,0,0 +2013,9,14,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-1,0,950,-5,0,0 +2013,7,14,7,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1134,-1,0,1346,-1,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,0,0,1914,-12,0,0 +2013,7,19,5,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,23,1,549,33,1,0 +2013,9,30,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1120,-6,0,1235,-24,0,0 +2013,10,14,1,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1640,41,1,2020,18,1,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,8,0,1909,-4,0,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1730,-5,0,1901,-13,0,0 +2013,6,4,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1005,0,0,1245,-9,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1937,-1,0,2041,-12,0,0 +2013,5,8,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,203,1,1731,210,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,-1,0,1615,-10,0,0 +2013,8,18,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,644,17,1,1024,1,0,0 +2013,5,24,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1325,31,1,1500,18,1,0 +2013,4,30,2,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,945,-5,0,1340,3,0,0 +2013,8,15,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,9,0,1415,-7,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,719,-6,0,1111,-13,0,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,20,1,12,-7,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1725,0,0,1918,-7,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1602,18,1,1715,33,1,0 +2013,8,18,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,-4,0,1315,-16,0,0 +2013,6,5,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-9,0,1345,-15,0,0 +2013,7,13,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1520,5,0,1644,37,1,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,2050,-2,0,5,-14,0,0 +2013,7,11,4,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1433,-9,0,1546,-16,0,0 +2013,9,30,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,-2,0,2000,-12,0,0 +2013,4,18,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,615,0,,810,0,1,1 +2013,7,18,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,827,-6,0,0 +2013,9,2,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1625,-7,0,2042,1,0,0 +2013,10,13,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1450,-11,0,1850,-19,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1655,13,0,1829,-1,0,0 +2013,5,20,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,0,0,900,-1,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,4,0,1755,-27,0,0 +2013,6,16,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,-5,0,1250,-23,0,0 +2013,9,2,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,800,3,0,1013,42,1,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1000,0,0,1151,-4,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,-6,0,2128,-17,0,0 +2013,10,28,1,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-1,0,2100,-15,0,0 +2013,4,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,600,1,0,645,6,0,0 +2013,5,29,3,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,2,0,1415,18,1,0 +2013,6,3,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1853,-4,0,2100,-28,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,24,1,1306,10,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2200,1,0,2350,-10,0,0 +2013,9,5,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1921,3,0,2311,-4,0,0 +2013,6,10,1,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1520,36,1,1628,57,1,0 +2013,6,4,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1740,-4,0,1905,-8,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1200,3,0,1505,-5,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,940,-2,0,1205,-8,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2115,-5,0,2253,-28,0,0 +2013,8,30,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-7,0,1656,-21,0,0 +2013,6,1,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1135,5,0,1605,7,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,0,0,1247,-3,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1300,99,1,1540,107,1,0 +2013,9,6,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,910,-4,0,1025,4,0,0 +2013,7,18,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,237,1,1929,223,1,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,-5,0,1212,-10,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1040,6,0,1315,6,0,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2145,-2,0,50,-14,0,0 +2013,4,16,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,18,1,1917,18,1,0 +2013,10,5,6,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1645,63,1,1810,70,1,0 +2013,5,11,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,745,24,1,1010,5,0,0 +2013,7,8,1,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-6,0,823,-12,0,0 +2013,6,23,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,7,0,1810,-2,0,0 +2013,8,4,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,-3,0,1658,-14,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1010,4,0,1630,9,0,0 +2013,10,6,7,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-6,0,1920,-24,0,0 +2013,4,30,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1615,-1,0,1819,-19,0,0 +2013,7,12,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,1120,-8,0,0 +2013,7,18,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1002,-6,0,1139,-31,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-4,0,1114,-10,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,1,0,2050,-5,0,0 +2013,5,17,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,2010,-5,0,2120,-9,0,0 +2013,4,28,7,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,20,1,2140,18,1,0 +2013,10,27,7,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,900,0,0,1021,-16,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1002,-4,0,1308,-18,0,0 +2013,7,20,6,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1400,-4,0,1530,-14,0,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1000,-3,0,1100,-9,0,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1615,0,0,1725,-8,0,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,10,0,2130,8,0,0 +2013,4,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,935,1,0,1110,-2,0,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-1,0,810,7,0,0 +2013,5,3,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,855,-6,0,1235,-4,0,0 +2013,5,7,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1815,4,0,2020,-8,0,0 +2013,4,1,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,0,0,850,-11,0,0 +2013,9,3,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,104,1,1600,88,1,0 +2013,10,7,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1120,3,0,1320,10,0,0 +2013,10,6,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-6,0,835,-7,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1510,0,0,1630,-7,0,0 +2013,10,1,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,0,0,1850,-9,0,0 +2013,6,6,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1945,19,1,2055,17,1,0 +2013,10,6,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1016,9,0,1247,8,0,0 +2013,6,25,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,-2,0,1345,-15,0,0 +2013,7,13,6,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,2,0,1640,-1,0,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1800,11,0,2115,11,0,0 +2013,10,16,3,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,904,-26,0,0 +2013,10,29,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,735,-8,0,847,5,0,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,40,1,1810,24,1,0 +2013,6,24,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-3,0,1330,-9,0,0 +2013,8,2,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,0,0,1835,-2,0,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1615,5,0,47,-3,0,0 +2013,5,8,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1240,0,0,1600,-8,0,0 +2013,8,15,4,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,-2,0,1747,-15,0,0 +2013,7,24,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-5,0,1216,-11,0,0 +2013,6,4,2,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2241,0,0,2359,-12,0,0 +2013,9,9,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1623,-2,0,1916,-11,0,0 +2013,6,25,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,935,-3,0,1050,-1,0,0 +2013,6,14,5,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,0,0,1815,-3,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1920,25,1,55,13,0,0 +2013,8,18,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1320,-1,0,1440,-5,0,0 +2013,9,23,1,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-3,0,1549,-1,0,0 +2013,8,15,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1717,54,1,2010,55,1,0 +2013,7,30,2,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,847,-11,0,1207,-1,0,0 +2013,5,30,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1255,-3,0,1700,22,1,0 +2013,5,30,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-2,0,1430,9,0,0 +2013,6,20,4,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,630,-7,0,712,-22,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1510,1,0,2328,-22,0,0 +2013,10,24,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1705,19,1,1830,10,0,0 +2013,8,31,6,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1645,-5,0,1955,-5,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1252,42,1,1352,27,1,0 +2013,5,15,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-14,0,854,-31,0,0 +2013,7,3,3,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,-4,0,1845,37,1,0 +2013,10,14,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,11,0,2226,8,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,815,-3,0,1121,-25,0,0 +2013,10,30,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1835,8,0,2035,-12,0,0 +2013,8,11,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,91,1,2300,104,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,825,4,0,945,13,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1400,0,,1716,0,1,1 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1521,32,1,1640,31,1,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,740,-6,0,836,-14,0,0 +2013,9,17,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1855,5,0,2000,1,0,0 +2013,7,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,730,-7,0,907,2,0,0 +2013,8,20,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1441,-7,0,1544,-9,0,0 +2013,10,9,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-5,0,927,-12,0,0 +2013,8,25,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,610,-7,0,1029,-7,0,0 +2013,8,24,6,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,850,-6,0,1121,-12,0,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1240,3,0,1815,14,0,0 +2013,4,1,1,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1015,5,0,1133,2,0,0 +2013,8,17,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-14,0,2256,-10,0,0 +2013,4,13,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,725,-5,0,900,10,0,0 +2013,6,18,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1356,9,0,1802,-2,0,0 +2013,8,11,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,644,-5,0,1024,-16,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2051,106,1,2229,104,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1110,1,0,1404,-13,0,0 +2013,4,7,7,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,-5,0,1555,-7,0,0 +2013,8,9,5,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,-3,0,1508,-12,0,0 +2013,10,10,4,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1547,-11,0,1818,-7,0,0 +2013,9,1,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,-3,0,1705,-11,0,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1546,-5,0,1645,6,0,0 +2013,4,8,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,-4,0,735,-11,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1945,57,1,2055,46,1,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1340,12,0,1635,14,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,3,0,2205,-6,0,0 +2013,6,26,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,-5,0,2300,8,0,0 +2013,4,29,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1315,-8,0,1531,-23,0,0 +2013,5,14,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1429,-4,0,1605,-14,0,0 +2013,8,12,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,852,-6,0,1205,-20,0,0 +2013,10,16,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,8,0,1830,1,0,0 +2013,9,11,3,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,715,17,1,801,30,1,0 +2013,5,22,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,-2,0,1819,-5,0,0 +2013,10,6,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,-5,0,955,-30,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1004,-4,0,1320,-14,0,0 +2013,10,2,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,89,1,1825,0,1,1 +2013,10,11,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1638,1,0,1759,3,0,0 +2013,10,23,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,705,-5,0,805,-6,0,0 +2013,5,23,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,515,-3,0,811,-12,0,0 +2013,7,20,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,-6,0,1235,-23,0,0 +2013,8,16,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-1,0,948,-3,0,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,735,14,0,1258,10,0,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1639,12,0,2005,-25,0,0 +2013,8,30,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,600,-4,0,729,-5,0,0 +2013,5,15,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,741,-14,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1455,1,0,1720,12,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,-5,0,900,-13,0,0 +2013,5,24,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,630,7,0,735,-10,0,0 +2013,8,25,7,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1855,0,0,2130,-1,0,0 +2013,8,14,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,4,0,1015,2,0,0 +2013,6,15,6,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1125,-4,0,1240,-14,0,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2008,3,0,2102,-8,0,0 +2013,4,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,735,-2,0,950,-11,0,0 +2013,8,23,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,10,0,2045,9,0,0 +2013,5,4,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,529,-3,0,819,-14,0,0 +2013,7,3,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,-2,0,929,-22,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2050,0,0,2335,-3,0,0 +2013,10,19,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1947,-5,0,2135,-16,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,630,-3,0,750,-13,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1001,-1,0,1452,-8,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1850,13,0,2120,3,0,0 +2013,4,18,4,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1630,6,0,1820,2,0,0 +2013,10,8,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,525,-7,0,847,-2,0,0 +2013,5,14,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,5,0,1347,0,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,-2,0,2156,-27,0,0 +2013,9,25,3,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,606,3,0,1147,-1,0,0 +2013,4,23,2,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1645,2,0,1810,-9,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-4,0,1055,3,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1625,-2,0,1835,-8,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,10,0,1605,14,0,0 +2013,10,23,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1935,26,1,2229,7,0,0 +2013,8,7,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,930,1,0,0 +2013,4,26,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1720,0,0,1939,-2,0,0 +2013,5,30,4,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1411,55,1,1740,62,1,0 +2013,6,22,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,20,1,1351,19,1,0 +2013,4,26,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1748,23,1,2041,32,1,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,650,-6,0,1254,0,0,0 +2013,9,19,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1854,-1,0,2136,-5,0,0 +2013,5,31,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-6,0,926,-8,0,0 +2013,10,15,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2110,12,0,2355,-20,0,0 +2013,9,21,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,834,-5,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1320,-1,0,1530,3,0,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-2,0,1846,-7,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,44,1,1525,39,1,0 +2013,6,18,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,620,0,0,810,5,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1145,21,1,1345,23,1,0 +2013,8,19,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,-12,0,1500,-10,0,0 +2013,7,25,4,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1935,60,1,2120,46,1,0 +2013,6,19,3,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-7,0,936,-7,0,0 +2013,4,26,5,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2100,-6,0,2345,-5,0,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,-6,0,2051,-11,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1602,81,1,1732,73,1,0 +2013,9,8,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-8,0,1203,1,0,0 +2013,6,9,7,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1625,42,1,2010,39,1,0 +2013,8,3,6,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1912,6,0,2038,-8,0,0 +2013,5,21,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-3,0,1100,-9,0,0 +2013,7,3,3,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,6,0,2030,28,1,0 +2013,6,29,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1100,1,0,1220,13,0,0 +2013,7,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1010,-8,0,1315,-18,0,0 +2013,7,31,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,845,-2,0,1045,-22,0,0 +2013,10,16,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1535,13,0,1815,5,0,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1346,-1,0,1708,-21,0,0 +2013,10,4,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,50,1,900,47,1,0 +2013,6,10,1,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1925,66,1,2133,73,1,0 +2013,8,8,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,908,-2,0,1200,-1,0,0 +2013,4,21,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1824,-5,0,2211,-18,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1659,268,1,1842,259,1,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,832,-3,0,1105,-14,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1240,-5,0,1447,-15,0,0 +2013,10,25,5,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,852,-4,0,1208,-38,0,0 +2013,10,8,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,620,-6,0,1000,-17,0,0 +2013,6,24,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-5,0,2040,-5,0,0 +2013,9,19,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1746,5,0,1943,10,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-2,0,1405,4,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2120,46,1,2250,33,1,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,-8,0,1004,-12,0,0 +2013,5,26,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,605,-2,0,755,-14,0,0 +2013,8,22,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-9,0,812,-4,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,0,0,850,7,0,0 +2013,6,9,7,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,42,1,2018,45,1,0 +2013,5,18,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1520,-3,0,1646,-20,0,0 +2013,7,22,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-1,0,1056,-4,0,0 +2013,5,19,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1455,57,1,1515,49,1,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,15,1,2041,7,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,650,-2,0,815,-8,0,0 +2013,6,9,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,630,1,0,733,-7,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,94,1,1245,89,1,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1940,107,1,2042,116,1,0 +2013,9,17,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2117,-4,0,2205,-13,0,0 +2013,7,15,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-3,0,1255,6,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,27,1,1915,17,1,0 +2013,5,12,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,78,1,1733,75,1,0 +2013,8,19,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1115,6,0,1715,2,0,0 +2013,5,3,5,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1925,184,1,2120,161,1,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1725,22,1,1845,19,1,0 +2013,4,8,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1149,9,0,1300,10,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,1,0,2040,5,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-2,0,2131,9,0,0 +2013,10,1,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,900,-4,0,925,-14,0,0 +2013,7,4,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1212,-5,0,1954,-7,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,650,-5,0,815,-12,0,0 +2013,7,30,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-6,0,826,10,0,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,-3,0,853,-6,0,0 +2013,8,19,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,59,1,2020,54,1,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,9,0,1319,26,1,0 +2013,6,21,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,-2,0,830,-10,0,0 +2013,5,17,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2130,3,0,2350,-13,0,0 +2013,5,20,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1855,11,0,1955,15,1,0 +2013,6,26,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,18,1,942,-1,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,-5,0,1402,-11,0,0 +2013,10,1,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-4,0,2033,-17,0,0 +2013,5,30,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1936,94,1,2000,75,1,0 +2013,6,19,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,2,0,1115,1,0,0 +2013,5,9,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-3,0,955,-12,0,0 +2013,7,15,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1804,27,1,1944,15,1,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,903,-2,0,1043,-14,0,0 +2013,4,9,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,705,-2,0,1458,-1,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,-7,0,1335,-9,0,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-7,0,1110,-1,0,0 +2013,7,5,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,20,1,1415,27,1,0 +2013,7,17,3,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1215,1,0,1411,-3,0,0 +2013,4,11,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,635,-4,0,750,-12,0,0 +2013,10,2,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-6,0,1718,-19,0,0 +2013,5,15,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,7,0,1100,-5,0,0 +2013,8,29,4,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1305,48,1,1910,45,1,0 +2013,5,19,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2125,12,0,2250,11,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1413,36,1,1756,14,0,0 +2013,7,14,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1530,26,1,1635,7,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1130,43,1,1440,61,1,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1425,-6,0,1625,-16,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,-4,0,1115,-10,0,0 +2013,10,30,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1529,7,0,1850,-2,0,0 +2013,5,3,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,606,-9,0,800,-30,0,0 +2013,4,27,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,5,0,1135,-4,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1515,-6,0,1720,-11,0,0 +2013,10,25,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1840,-4,0,2129,-11,0,0 +2013,4,12,5,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1039,-7,0,1604,-5,0,0 +2013,8,2,5,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1514,-1,0,1735,-7,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1845,-4,0,2010,-15,0,0 +2013,9,16,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1459,-4,0,1814,-24,0,0 +2013,8,12,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-7,0,1923,-6,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1750,20,1,1940,17,1,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1705,-5,0,1838,-15,0,0 +2013,9,23,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,8,0,1650,15,1,0 +2013,6,3,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1806,243,1,1931,227,1,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1230,0,0,1341,7,0,0 +2013,9,14,6,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1430,21,1,1745,14,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,610,-5,0,900,-2,0,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1627,0,0,1959,-3,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1155,7,0,1310,3,0,0 +2013,5,23,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,62,1,1915,87,1,0 +2013,6,7,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,2,0,1515,-5,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,12,0,1959,18,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,830,-4,0,853,4,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,812,-2,0,916,-6,0,0 +2013,8,20,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1346,-4,0,1705,-6,0,0 +2013,7,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1214,-6,0,1348,-20,0,0 +2013,10,28,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,-1,0,845,-3,0,0 +2013,6,29,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2130,-3,0,2330,3,0,0 +2013,8,12,1,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1410,-1,0,2235,-5,0,0 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-7,0,1302,-1,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1021,-4,0,1350,-8,0,0 +2013,4,17,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1153,-3,0,1300,-9,0,0 +2013,7,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1415,31,1,1510,24,1,0 +2013,4,8,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,600,-1,0,843,-4,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1710,-4,0,1833,-11,0,0 +2013,5,4,6,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1424,-4,0,1550,-7,0,0 +2013,6,7,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,600,9,0,645,5,0,0 +2013,10,18,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,2,0,1314,-5,0,0 +2013,6,2,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,2,0,1745,-6,0,0 +2013,9,15,7,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1022,-1,0,1226,-24,0,0 +2013,9,10,2,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2000,-3,0,2220,-12,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,900,0,0,1010,13,0,0 +2013,4,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1105,-1,0,1215,4,0,0 +2013,7,3,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,2150,-7,0,202,-6,0,0 +2013,5,28,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2125,-4,0,2250,-12,0,0 +2013,6,10,1,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1701,361,1,2100,355,1,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,0,0,2150,3,0,0 +2013,8,3,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,0,,1130,0,1,1 +2013,6,23,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-1,0,815,-11,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2200,1,0,2355,-7,0,0 +2013,9,2,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-6,0,2350,-25,0,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1835,1,0,2155,-5,0,0 +2013,4,19,5,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,854,-6,0,1040,-4,0,0 +2013,10,8,2,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,855,-7,0,1504,-19,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1045,34,1,1210,49,1,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-4,0,1152,-10,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2005,-3,0,2130,-16,0,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,0,0,1053,-10,0,0 +2013,9,22,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,845,-5,0,1115,1,0,0 +2013,5,15,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,-5,0,942,-5,0,0 +2013,9,18,3,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1709,-1,0,1904,-10,0,0 +2013,6,9,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,46,1,1309,28,1,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,-2,0,1335,-13,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,31,1,2250,9,0,0 +2013,6,30,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1235,48,1,1440,25,1,0 +2013,6,30,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,35,1,1630,72,1,0 +2013,5,4,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1845,0,0,2120,-10,0,0 +2013,4,4,4,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,85,1,2250,84,1,0 +2013,5,6,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1630,7,0,1945,-4,0,0 +2013,4,22,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-4,0,1009,-11,0,0 +2013,9,5,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-10,0,840,-21,0,0 +2013,6,22,6,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1205,72,1,1451,72,1,0 +2013,6,6,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1356,6,0,1700,-10,0,0 +2013,10,21,1,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1800,0,0,2008,-4,0,0 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1556,95,1,1736,83,1,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,0,0,835,-9,0,0 +2013,6,24,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1453,67,1,1755,143,1,0 +2013,4,22,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-8,0,1821,34,1,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-7,0,2018,-31,0,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1415,12,0,1525,5,0,0 +2013,7,18,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,645,-6,0,1022,9,0,0 +2013,8,14,3,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,-4,0,2150,12,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1920,30,1,25,35,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1455,4,0,1559,4,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,708,-6,0,912,1,0,0 +2013,8,30,5,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-5,0,1440,-9,0,0 +2013,4,30,2,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,-6,0,1405,-28,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,30,1,1415,85,1,0 +2013,5,22,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1059,-6,0,1306,-11,0,0 +2013,5,3,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1620,16,1,1725,5,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1714,0,0,2129,5,0,0 +2013,7,30,2,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,630,-3,0,924,-13,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-4,0,1313,-20,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1300,-8,0,1550,-17,0,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1653,9,0,2229,3,0,0 +2013,9,29,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-1,0,1326,-17,0,0 +2013,10,27,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1535,55,1,1640,49,1,0 +2013,5,7,2,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1103,-3,0,1342,-11,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1910,32,1,2239,26,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1250,11,0,1457,8,0,0 +2013,9,24,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1815,-13,0,2058,-9,0,0 +2013,10,2,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1550,-1,0,1810,2,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1045,-5,0,1416,-21,0,0 +2013,7,19,5,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1136,-10,0,1338,-7,0,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-1,0,1612,10,0,0 +2013,4,17,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-3,0,855,6,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,825,-1,0,940,-10,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1705,101,1,1922,71,1,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1450,6,0,1815,1,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,630,-7,0,807,-6,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1450,31,1,1759,37,1,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1005,-5,0,1157,3,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2200,32,1,2305,29,1,0 +2013,7,26,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1501,-9,0,0 +2013,6,20,4,DL,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-5,0,1110,-11,0,0 +2013,9,9,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-9,0,1928,4,0,0 +2013,7,1,1,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,32,1,1810,18,1,0 +2013,10,30,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,740,-3,0,919,4,0,0 +2013,4,6,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1035,-2,0,1331,-15,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,930,-6,0,1155,-8,0,0 +2013,9,24,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-9,0,1650,3,0,0 +2013,7,12,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-10,0,1159,-7,0,0 +2013,5,18,6,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1815,-5,0,1955,-18,0,0 +2013,9,1,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1121,2,0,1501,-38,0,0 +2013,7,25,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,-3,0,750,-15,0,0 +2013,8,18,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,62,1,1755,53,1,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,7,0,1242,25,1,0 +2013,6,27,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-10,0,1903,-16,0,0 +2013,6,15,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1445,93,1,1549,84,1,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-5,0,1413,-23,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1237,-2,0,1755,-4,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1309,-7,0,1709,-22,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,0,0,1740,5,0,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,23,6,0,559,9,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,-3,0,1538,-16,0,0 +2013,4,19,5,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,27,1,1519,24,1,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,8,0,925,8,0,0 +2013,8,19,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2040,-1,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1735,14,0,2000,-3,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,0,0,855,0,0,0 +2013,8,15,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1225,85,1,1402,74,1,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1240,0,0,1420,-8,0,0 +2013,8,24,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-4,0,1645,-12,0,0 +2013,4,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,7,0,1015,-6,0,0 +2013,10,19,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-7,0,1740,-22,0,0 +2013,10,29,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-11,0,851,-9,0,0 +2013,10,7,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1025,-5,0,1200,5,0,0 +2013,7,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1026,-7,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1429,0,0,1531,0,0,0 +2013,9,30,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-4,0,1015,-13,0,0 +2013,6,21,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1845,31,1,2030,17,1,0 +2013,10,21,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1145,2,0,1430,8,0,0 +2013,5,12,7,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,-5,0,1305,0,0,0 +2013,7,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,728,-1,0,948,-12,0,0 +2013,8,18,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,0,0,815,-4,0,0 +2013,10,30,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,-4,0,2205,-14,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1755,-5,0,2030,-3,0,0 +2013,7,20,6,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2339,48,1,553,31,1,0 +2013,7,22,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,7,0,1600,1,0,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,1,0,1752,26,1,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1740,71,1,1850,78,1,0 +2013,9,26,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1201,4,0,1417,-17,0,0 +2013,10,9,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,800,-2,0,850,-1,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2040,-4,0,2152,-27,0,0 +2013,4,12,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1247,66,1,1542,107,1,0 +2013,9,2,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-3,0,2030,-10,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2030,24,1,2339,15,1,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1505,6,0,1750,-5,0,0 +2013,9,22,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,-3,0,1530,-13,0,0 +2013,4,3,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1235,-6,0,1425,-18,0,0 +2013,7,15,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-1,0,1530,14,0,0 +2013,9,8,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1545,1,0,2005,-10,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1819,0,0,2012,-18,0,0 +2013,6,27,4,OO,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,637,-2,0,935,-11,0,0 +2013,10,17,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1805,109,1,1950,99,1,0 +2013,6,9,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,16,1,1753,25,1,0 +2013,4,30,2,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,15,1,2025,38,1,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,1,0,1150,10,0,0 +2013,8,19,1,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,758,-3,0,1009,4,0,0 +2013,10,8,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-2,0,920,-8,0,0 +2013,8,27,2,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1940,-6,0,2255,-16,0,0 +2013,8,18,7,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,816,7,0,1031,-5,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,37,1,757,42,1,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2151,42,1,2309,26,1,0 +2013,6,15,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,23,1,1445,15,1,0 +2013,10,12,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1625,9,0,1710,26,1,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1550,5,0,1721,-8,0,0 +2013,8,18,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,830,1,0,945,-9,0,0 +2013,9,27,5,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-3,0,848,6,0,0 +2013,7,2,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-11,0,1012,-3,0,0 +2013,10,29,2,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1700,-5,0,1815,14,0,0 +2013,4,25,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,-3,0,1530,1,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,5,0,1530,3,0,0 +2013,6,18,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2026,81,1,2158,76,1,0 +2013,5,22,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,0,0,1835,-6,0,0 +2013,7,2,2,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,825,-6,0,1101,1,0,0 +2013,8,3,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,8,0,1150,14,0,0 +2013,4,9,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,530,0,0,734,-19,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,3,0,1605,-1,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1025,41,1,1231,35,1,0 +2013,10,20,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1210,4,0,1405,1,0,0 +2013,8,18,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1047,-4,0,1505,-5,0,0 +2013,7,23,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,625,-10,0,858,-21,0,0 +2013,8,9,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1517,-4,0,1655,-4,0,0 +2013,10,30,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,84,1,1600,114,1,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1851,-6,0,2020,-19,0,0 +2013,6,18,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-7,0,841,-28,0,0 +2013,9,23,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,829,9,0,1051,-10,0,0 +2013,6,9,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2016,31,1,2251,27,1,0 +2013,7,8,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-5,0,1634,-10,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1730,-1,0,1955,-2,0,0 +2013,10,11,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,4,0,1852,-5,0,0 +2013,8,1,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1231,-4,0,1505,7,0,0 +2013,4,5,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,2155,-1,0,2340,-6,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1055,-8,0,1233,-17,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1820,6,0,1920,-9,0,0 +2013,4,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,724,-6,0,1029,-11,0,0 +2013,7,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,5,0,2255,7,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,-6,0,2359,-13,0,0 +2013,8,8,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1343,-3,0,1433,-3,0,0 +2013,10,20,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1845,41,1,1935,41,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1637,15,1,1755,0,0,0 +2013,4,1,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2151,-2,0,2250,-12,0,0 +2013,7,27,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1940,41,1,2210,23,1,0 +2013,7,18,4,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-4,0,1556,-7,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,31,1,1450,30,1,0 +2013,7,1,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-7,0,1949,32,1,0 +2013,4,3,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,730,-1,0,930,-12,0,0 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,925,-3,0,1150,-11,0,0 +2013,8,28,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-10,0,1445,-10,0,0 +2013,6,15,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1719,-5,0,2108,-6,0,0 +2013,4,13,6,FL,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1052,7,0,1215,-1,0,0 +2013,9,26,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1655,-2,0,1930,16,1,0 +2013,8,7,3,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1905,-2,0,2044,-27,0,0 +2013,5,25,6,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,945,-1,0,1201,-8,0,0 +2013,10,16,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1402,-12,0,1529,3,0,0 +2013,6,29,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,23,1,1640,33,1,0 +2013,7,29,1,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,55,1,901,102,1,0 +2013,8,1,4,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,0,0,935,24,1,0 +2013,8,26,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2335,-2,0,800,5,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,27,1,1050,36,1,0 +2013,7,18,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-4,0,820,-11,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,540,1,0,915,-18,0,0 +2013,9,28,6,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,745,-4,0,1028,2,0,0 +2013,7,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,2025,0,0,2345,4,0,0 +2013,8,8,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2058,73,1,2316,63,1,0 +2013,10,17,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-4,0,925,-18,0,0 +2013,4,4,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1333,342,1,1524,334,1,0 +2013,6,29,6,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1445,10,0,2310,-4,0,0 +2013,4,25,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,3,0,1335,-11,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,50,1,1005,109,1,0 +2013,7,25,4,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-3,0,928,-6,0,0 +2013,10,16,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-4,0,1909,0,0,0 +2013,5,12,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1426,-3,0,1610,-45,0,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-1,0,1257,20,1,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,815,-2,0,1125,0,0,0 +2013,9,16,1,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1630,-5,0,1923,-14,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1605,-2,0,1705,-4,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1355,96,1,1622,84,1,0 +2013,9,3,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,-3,0,1120,-15,0,0 +2013,10,4,5,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1730,0,0,2045,29,1,0 +2013,10,13,7,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,750,0,0,855,10,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1515,-1,0,1735,2,0,0 +2013,4,6,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,710,3,0,945,3,0,0 +2013,10,25,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1543,0,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1948,-1,0,2057,-12,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-5,0,1653,-18,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1800,11,0,1935,-7,0,0 +2013,7,30,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-3,0,900,-6,0,0 +2013,6,16,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1705,-2,0,1810,1,0,0 +2013,7,13,6,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1904,31,1,2017,26,1,0 +2013,10,10,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,16,1,1427,32,1,0 +2013,4,1,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-6,0,817,-26,0,0 +2013,8,12,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,704,-5,0,835,-5,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1700,50,1,1850,41,1,0 +2013,6,5,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1940,5,0,50,-10,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,855,-7,0,1337,-1,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1928,28,1,2301,17,1,0 +2013,7,22,1,DL,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1920,0,0,2045,-11,0,0 +2013,9,2,1,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1725,205,1,1908,214,1,0 +2013,9,2,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,900,4,0,1646,3,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1117,2,0,1320,5,0,0 +2013,4,16,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,610,-8,0,809,-21,0,0 +2013,7,17,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,11,0,1210,8,0,0 +2013,9,30,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2031,21,1,2255,14,0,0 +2013,7,29,1,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1644,-10,0,1825,-26,0,0 +2013,5,31,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1819,0,,1904,0,1,1 +2013,8,19,1,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-3,0,1236,-13,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,53,1,1722,48,1,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1734,6,0,2022,-18,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1616,9,0,1742,6,0,0 +2013,4,8,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,-10,0,2031,-17,0,0 +2013,7,11,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1038,-4,0,1129,5,0,0 +2013,7,21,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1018,63,1,1150,67,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,43,1,1049,39,1,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,41,1,2250,46,1,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1035,-6,0,1331,-16,0,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1743,-2,0,1857,-22,0,0 +2013,8,1,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,739,-4,0,845,-8,0,0 +2013,8,7,3,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,8,0,2030,-6,0,0 +2013,6,6,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1233,16,1,1418,25,1,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,-1,0,710,3,0,0 +2013,4,13,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1717,-5,0,1820,-15,0,0 +2013,5,28,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-7,0,1345,-7,0,0 +2013,9,17,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1630,-5,0,1820,-15,0,0 +2013,6,10,1,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1915,17,1,2100,16,1,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1619,-3,0,1731,37,1,0 +2013,4,26,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1710,26,1,2005,19,1,0 +2013,5,15,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-5,0,2134,-32,0,0 +2013,4,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,1,0,1745,-21,0,0 +2013,7,5,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1541,-4,0,1833,-18,0,0 +2013,6,19,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,45,1,925,52,1,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1103,-9,0,1345,5,0,0 +2013,8,16,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-6,0,1329,-6,0,0 +2013,5,8,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,845,-8,0,0 +2013,9,8,7,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1951,-12,0,2105,-14,0,0 +2013,5,15,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-5,0,1725,-19,0,0 +2013,6,17,1,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,35,1,950,23,1,0 +2013,6,9,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1420,-4,0,1559,20,1,0 +2013,7,16,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,600,-2,0,725,4,0,0 +2013,9,24,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,625,-6,0,805,-23,0,0 +2013,8,22,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-6,0,2354,2,0,0 +2013,8,25,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1818,44,1,2000,48,1,0 +2013,7,30,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,-4,0,2230,-26,0,0 +2013,6,5,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2014,78,1,2229,82,1,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1855,-1,0,2025,6,0,0 +2013,6,26,3,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,184,1,2058,152,1,0 +2013,10,29,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1550,27,1,2359,2,0,0 +2013,5,1,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1215,-8,0,1529,-16,0,0 +2013,4,3,3,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1905,-8,0,2159,-1,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2000,8,0,2100,21,1,0 +2013,4,15,1,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1430,10,0,1644,7,0,0 +2013,8,30,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,-9,0,1033,-14,0,0 +2013,7,16,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1735,-7,0,1823,-6,0,0 +2013,5,14,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,4,0,1206,-10,0,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,-2,0,1546,-6,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1445,-7,0,1541,-2,0,0 +2013,8,21,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1208,157,1,1525,155,1,0 +2013,4,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1815,-2,0,1955,-8,0,0 +2013,6,17,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1517,-8,0,2025,-20,0,0 +2013,4,28,7,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1612,-5,0,1824,-2,0,0 +2013,7,24,3,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,-1,0,2022,-18,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2100,-3,0,2325,-8,0,0 +2013,8,27,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,-3,0,1220,-3,0,0 +2013,4,15,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,950,-3,0,0 +2013,4,7,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1655,-5,0,1720,-13,0,0 +2013,6,26,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1620,-10,0,0 +2013,7,28,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,24,1,1840,16,1,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2226,38,1,3,37,1,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2055,8,0,2240,-15,0,0 +2013,6,7,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-7,0,855,-1,0,0 +2013,5,14,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-2,0,920,-12,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,6,0,2059,-11,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1758,-1,0,2354,-11,0,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1340,-6,0,1445,-10,0,0 +2013,7,16,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1750,2,0,1850,-12,0,0 +2013,7,8,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1315,23,1,1910,18,1,0 +2013,6,15,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1655,79,1,1819,63,1,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2020,105,1,2120,96,1,0 +2013,10,4,5,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,-6,0,1343,1,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1547,43,1,2029,17,1,0 +2013,4,14,7,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-9,0,904,-42,0,0 +2013,4,4,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-1,0,1750,-8,0,0 +2013,7,16,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-5,0,1003,-9,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,745,1,0,1100,-3,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,15,1,1455,17,1,0 +2013,4,22,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1305,-2,0,1432,-14,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1412,6,0,1545,-13,0,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1350,5,0,1435,-3,0,0 +2013,4,23,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,-10,0,1535,-3,0,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1035,-4,0,1355,-17,0,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,4,0,1426,62,1,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,-4,0,2220,26,1,0 +2013,6,11,2,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,730,-6,0,1030,5,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,3,0,1719,-18,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,855,0,0,1125,5,0,0 +2013,6,13,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,169,1,1645,219,1,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1658,0,0,2129,-12,0,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,18,1,2228,19,1,0 +2013,6,13,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-8,0,1006,-15,0,0 +2013,4,19,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,2015,1,0,2154,7,0,0 +2013,10,1,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,-4,0,1000,-9,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,83,1,2335,97,1,0 +2013,8,7,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,-10,0,1115,-24,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,700,-1,0,1035,-22,0,0 +2013,8,15,4,AA,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1115,-2,0,1310,-6,0,0 +2013,5,5,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,750,-2,0,1009,0,0,0 +2013,5,19,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,600,-2,0,835,-9,0,0 +2013,10,9,3,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-9,0,1806,5,0,0 +2013,7,4,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,-1,0,1030,-16,0,0 +2013,9,30,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-4,0,815,-5,0,0 +2013,4,6,6,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1700,2,0,2015,-6,0,0 +2013,8,30,5,US,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,655,28,1,1042,23,1,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,630,-2,0,916,-8,0,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1119,17,1,1245,13,0,0 +2013,10,25,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1054,-6,0,1211,-2,0,0 +2013,8,20,2,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1424,45,1,1655,31,1,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1535,0,0,1620,4,0,0 +2013,9,24,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-6,0,641,-3,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,-3,0,958,-10,0,0 +2013,10,15,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,920,-6,0,1214,3,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,16,1,1715,98,1,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1125,-3,0,1310,0,0,0 +2013,9,6,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1226,9,0,1354,-3,0,0 +2013,7,10,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1806,0,,1931,0,1,1 +2013,10,6,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,3,0,615,12,0,0 +2013,8,16,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1110,35,1,1455,43,1,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1740,5,0,1905,12,0,0 +2013,9,23,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-4,0,1230,-9,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1810,4,0,2215,1,0,0 +2013,7,10,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,0,0,1930,-15,0,0 +2013,5,22,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1935,80,1,2120,64,1,0 +2013,6,20,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,2,0,1100,3,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,9,0,2250,3,0,0 +2013,7,7,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,830,-14,0,0 +2013,9,12,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,141,1,904,123,1,0 +2013,6,26,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,0,0,2205,-11,0,0 +2013,6,7,5,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1750,0,,2045,0,1,1 +2013,10,15,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,701,0,0,930,6,0,0 +2013,4,16,2,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1042,-3,0,1325,-18,0,0 +2013,10,26,6,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1105,-1,0,1500,-15,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1800,84,1,1905,75,1,0 +2013,10,28,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1815,-4,0,2019,-9,0,0 +2013,10,3,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1438,66,1,1959,45,1,0 +2013,10,13,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1350,-3,0,1502,-11,0,0 +2013,9,5,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,35,1,947,30,1,0 +2013,5,8,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,920,-5,0,1015,-19,0,0 +2013,9,13,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1145,-10,0,0 +2013,10,4,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1813,-7,0,1942,-11,0,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2145,16,1,2255,6,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1748,2,0,1851,-8,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1525,5,0,1655,-8,0,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1650,16,1,1817,26,1,0 +2013,8,27,2,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,935,-6,0,1118,-17,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1415,41,1,2050,49,1,0 +2013,10,29,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-8,0,2135,-16,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-2,0,1134,-14,0,0 +2013,10,9,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1030,0,,1155,0,1,1 +2013,7,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-6,0,1325,-28,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,923,-7,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,25,1,1915,29,1,0 +2013,10,3,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1925,2,0,2050,4,0,0 +2013,6,4,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,705,-1,0,800,-5,0,0 +2013,10,31,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,825,1,0,920,14,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1400,23,1,1625,20,1,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,2,0,2017,-4,0,0 +2013,10,13,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1903,-2,0,2115,-2,0,0 +2013,4,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1311,-1,0,1631,-14,0,0 +2013,5,28,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1751,-5,0,2000,10,0,0 +2013,9,20,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-4,0,1610,13,0,0 +2013,9,2,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,2,0,2115,3,0,0 +2013,10,2,3,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,855,2,0,1108,-3,0,0 +2013,10,18,5,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,745,-6,0,935,-15,0,0 +2013,7,29,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1340,-8,0,1505,-13,0,0 +2013,9,2,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1010,20,1,1113,35,1,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1955,0,0,2225,-15,0,0 +2013,4,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1700,-1,0,1930,-1,0,0 +2013,7,23,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,47,1,1435,43,1,0 +2013,10,6,7,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1500,23,1,1825,38,1,0 +2013,6,23,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1630,15,1,1910,-6,0,0 +2013,10,18,5,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-9,0,1430,-15,0,0 +2013,6,23,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1520,1,0,1814,15,1,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1450,73,1,1647,134,1,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2145,19,1,140,19,1,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,800,-3,0,930,-19,0,0 +2013,5,16,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1717,-2,0,1825,-22,0,0 +2013,7,28,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2150,-10,0,646,-18,0,0 +2013,10,8,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,5,0,1814,19,1,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-7,0,1815,-7,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1815,5,0,2015,3,0,0 +2013,4,17,3,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,1,0,830,-14,0,0 +2013,7,1,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1741,13,0,2032,17,1,0 +2013,4,19,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-3,0,930,7,0,0 +2013,7,24,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1100,-1,0,1155,1,0,0 +2013,4,29,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,0,0,1430,-25,0,0 +2013,7,7,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1600,6,0,1710,5,0,0 +2013,4,7,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2055,-2,0,2230,-15,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,14,0,2205,12,0,0 +2013,10,29,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1114,-4,0,1510,1,0,0 +2013,9,10,2,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1925,-9,0,2112,-14,0,0 +2013,9,20,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,2,0,1600,-34,0,0 +2013,7,21,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-5,0,1655,-16,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,14,0,1034,1,0,0 +2013,5,9,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1620,-2,0,2030,-22,0,0 +2013,5,18,6,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1700,-4,0,1751,-11,0,0 +2013,5,24,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-3,0,650,-3,0,0 +2013,4,5,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-3,0,835,8,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,705,-2,0,915,-17,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1812,44,1,2033,39,1,0 +2013,8,27,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,755,-6,0,1350,-12,0,0 +2013,7,15,1,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,920,-5,0,1200,-3,0,0 +2013,5,22,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-4,0,1822,-6,0,0 +2013,7,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1241,-4,0,1616,16,1,0 +2013,9,9,1,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,606,-2,0,1146,-3,0,0 +2013,5,4,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1700,-2,0,1831,-14,0,0 +2013,4,22,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1215,-1,0,1400,-5,0,0 +2013,4,2,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,45,1,2005,58,1,0 +2013,6,20,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,0,0,1230,-9,0,0 +2013,5,11,6,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1410,-8,0,1605,-19,0,0 +2013,10,26,6,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,4,0,1008,-5,0,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1440,76,1,1600,69,1,0 +2013,8,6,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-12,0,756,0,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1410,0,,1500,0,1,1 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-3,0,900,-15,0,0 +2013,4,16,2,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1411,-1,0,1540,5,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1020,-6,0,1120,-8,0,0 +2013,6,17,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-5,0,1048,2,0,0 +2013,7,10,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,845,3,0,1430,-14,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1040,-2,0,1230,-16,0,0 +2013,4,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1515,-7,0,1731,-2,0,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,1,0,1155,2,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,27,1,1631,16,1,0 +2013,10,12,6,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1545,-4,0,1826,-21,0,0 +2013,6,9,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,50,1,1325,38,1,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-6,0,1920,11,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,930,4,0,1130,-7,0,0 +2013,4,6,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1200,1,0,1305,-9,0,0 +2013,6,15,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-3,0,1225,-15,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,-4,0,1240,-31,0,0 +2013,7,8,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-9,0,1305,10,0,0 +2013,4,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1255,6,0,1620,-2,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1010,26,1,1335,19,1,0 +2013,10,18,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,5,0,1645,-3,0,0 +2013,7,8,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,845,0,0,1045,-4,0,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1840,145,1,1935,139,1,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,715,11,0,1050,-4,0,0 +2013,8,29,4,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1426,8,0,1604,-13,0,0 +2013,10,27,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1428,-2,0,1900,-21,0,0 +2013,7,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,-2,0,855,-14,0,0 +2013,10,21,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1925,3,0,2044,16,1,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1545,-1,0,1716,5,0,0 +2013,7,9,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,1,0,1435,-5,0,0 +2013,8,13,2,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1935,-6,0,2319,-42,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-6,0,1320,-19,0,0 +2013,7,13,6,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1435,0,0,1755,48,1,0 +2013,5,2,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,19,1,947,7,0,0 +2013,5,24,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,903,-7,0,1033,-18,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,3,0,1835,9,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,20,1,1201,44,1,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,835,0,0,1310,11,0,0 +2013,5,20,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,123,1,814,119,1,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,935,3,0,1043,-19,0,0 +2013,10,23,3,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1827,-6,0,2105,-5,0,0 +2013,7,14,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,7,0,930,-3,0,0 +2013,9,25,3,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,843,-1,0,901,2,0,0 +2013,9,16,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-2,0,1300,-13,0,0 +2013,7,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2135,-2,0,2325,-22,0,0 +2013,7,10,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,2,0,1045,16,1,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1905,-3,0,2025,-8,0,0 +2013,10,12,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-14,0,1435,-23,0,0 +2013,4,30,2,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-5,0,2055,-23,0,0 +2013,4,27,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-1,0,909,-9,0,0 +2013,7,9,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-5,0,1255,0,0,0 +2013,7,11,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,47,1,1905,31,1,0 +2013,4,25,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,12,0,2025,9,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1438,2,0,1628,1,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2000,53,1,2315,49,1,0 +2013,8,1,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1720,-3,0,1820,-7,0,0 +2013,4,22,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,-3,0,1500,-6,0,0 +2013,8,21,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1814,-6,0,2208,13,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,844,12,0,1647,37,1,0 +2013,4,11,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1446,59,1,1717,85,1,0 +2013,9,17,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-10,0,1252,-24,0,0 +2013,7,15,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-2,0,1013,-1,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,2,0,1904,-2,0,0 +2013,9,26,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-5,0,1725,-3,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1045,-1,0,1235,-15,0,0 +2013,10,14,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1348,-2,0,1721,-4,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2040,4,0,2300,-6,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1915,1,0,2030,-3,0,0 +2013,4,13,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1015,-1,0,1130,-4,0,0 +2013,8,19,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1415,15,1,1555,-1,0,0 +2013,7,22,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,709,180,1,755,205,1,0 +2013,8,21,3,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1118,26,1,1238,18,1,0 +2013,8,23,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,-5,0,840,-5,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2225,-5,0,2318,-14,0,0 +2013,5,26,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-9,0,1112,-15,0,0 +2013,10,9,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-9,0,720,-17,0,0 +2013,7,28,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-6,0,700,-17,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2019,-2,0,2330,-16,0,0 +2013,7,13,6,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1339,-12,0,0 +2013,4,27,6,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1830,-5,0,2134,-29,0,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1426,5,0,1820,-12,0,0 +2013,7,15,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,9,0,2146,8,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1825,42,1,2350,22,1,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,745,0,0,927,-10,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1700,15,1,2350,26,1,0 +2013,6,13,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,550,1,0,740,-10,0,0 +2013,4,16,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,25,1,2230,21,1,0 +2013,8,19,1,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1624,40,1,1806,52,1,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-2,0,1259,7,0,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2200,10,0,613,-10,0,0 +2013,10,4,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1420,40,1,1625,49,1,0 +2013,8,17,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1454,8,0,1624,23,1,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2025,21,1,2155,10,0,0 +2013,8,30,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-2,0,1331,-46,0,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,800,-7,0,925,-8,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-5,0,957,-4,0,0 +2013,4,14,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1508,-2,0,1641,16,1,0 +2013,7,5,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-13,0,1809,-13,0,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1610,-9,0,1732,-15,0,0 +2013,10,18,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,16,1,2150,4,0,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,730,-5,0,1115,-9,0,0 +2013,10,21,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,830,1,0,1010,-8,0,0 +2013,8,16,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1534,3,0,1830,-2,0,0 +2013,4,23,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,720,5,0,1109,15,1,0 +2013,4,24,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-4,0,2015,-7,0,0 +2013,7,20,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1355,14,0,1415,5,0,0 +2013,8,22,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,625,-8,0,820,-4,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,-3,0,925,-26,0,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,700,0,0,940,-15,0,0 +2013,5,24,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1552,147,1,1648,141,1,0 +2013,4,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1710,-4,0,1830,-2,0,0 +2013,8,15,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,729,-2,0,0 +2013,4,13,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,2,0,1635,1,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,611,5,0,948,-7,0,0 +2013,5,17,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,15,1,2119,13,0,0 +2013,10,31,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,700,-3,0,858,-3,0,0 +2013,6,6,4,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-5,0,1046,-13,0,0 +2013,7,6,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-9,0,1940,-7,0,0 +2013,10,5,6,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,745,1,0,1350,-4,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2213,-6,0,2347,-5,0,0 +2013,6,28,5,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1740,52,1,2000,125,1,0 +2013,7,11,4,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1855,13,0,2000,2,0,0 +2013,10,14,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,12,0,2359,-9,0,0 +2013,4,2,2,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1131,-5,0,2000,-27,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,-8,0,2359,-12,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2150,-4,0,27,0,0,0 +2013,6,19,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,35,1,1825,27,1,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-5,0,1540,-2,0,0 +2013,7,18,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-6,0,1500,-7,0,0 +2013,10,7,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2130,31,1,2350,16,1,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,53,1,1043,46,1,0 +2013,5,22,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,737,-10,0,848,-16,0,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1845,3,0,2200,-3,0,0 +2013,5,15,3,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,-3,0,1055,-3,0,0 +2013,7,8,1,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,811,3,0,952,5,0,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2010,-1,0,2235,-13,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1621,46,1,1758,32,1,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1715,-3,0,1840,-9,0,0 +2013,7,1,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,7,0,2135,17,1,0 +2013,7,20,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-4,0,1652,-24,0,0 +2013,9,24,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1052,0,0,1255,-2,0,0 +2013,8,7,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,-14,0,2154,-7,0,0 +2013,6,4,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,37,1,1121,43,1,0 +2013,10,22,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1542,-3,0,1814,10,0,0 +2013,6,29,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-2,0,830,-7,0,0 +2013,8,7,3,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1210,-5,0,1318,-7,0,0 +2013,6,14,5,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1544,-3,0,1805,3,0,0 +2013,8,7,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1254,-2,0,1543,0,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1450,0,0,1623,-16,0,0 +2013,8,4,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-9,0,1250,-18,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1244,9,0,1655,4,0,0 +2013,9,7,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-3,0,1150,-7,0,0 +2013,10,20,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-1,0,954,-8,0,0 +2013,6,11,2,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,1,0,1230,-16,0,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,-5,0,2352,-41,0,0 +2013,7,11,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-6,0,1305,-14,0,0 +2013,10,1,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1530,-4,0,2135,-12,0,0 +2013,4,17,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,730,-1,0,855,-7,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,5,0,1115,3,0,0 +2013,5,13,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1950,-3,0,2243,-15,0,0 +2013,4,22,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,1,0,1118,-2,0,0 +2013,9,11,3,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1957,-9,0,2201,-22,0,0 +2013,8,2,5,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1315,32,1,1910,7,0,0 +2013,9,1,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1535,-6,0,1840,-15,0,0 +2013,8,14,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,13,0,2150,-1,0,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-4,0,1232,-3,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1010,3,0,1725,-13,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1442,-3,0,1609,-16,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1150,-3,0,1245,-11,0,0 +2013,8,2,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-6,0,2016,-14,0,0 +2013,10,14,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,-2,0,1700,-3,0,0 +2013,9,14,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1745,1,0,1915,1,0,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1300,2,0,1610,-9,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1205,158,1,1344,158,1,0 +2013,4,25,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,2030,-5,0,2105,-7,0,0 +2013,4,5,5,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,5,0,1935,-4,0,0 +2013,7,16,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1126,-5,0,1205,11,0,0 +2013,10,12,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,837,0,0,0 +2013,4,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1251,-4,0,1352,-12,0,0 +2013,8,13,2,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1752,25,1,2159,5,0,0 +2013,10,12,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-5,0,1100,-10,0,0 +2013,5,21,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1021,-4,0,1135,-17,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1155,-3,0,1937,-31,0,0 +2013,5,18,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1205,-3,0,1330,-12,0,0 +2013,7,16,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,915,-8,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1330,0,0,1618,9,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,20,1,1605,12,0,0 +2013,7,22,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-2,0,1720,8,0,0 +2013,8,21,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1409,8,0,1650,0,0,0 +2013,5,6,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,1,0,1022,27,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,5,0,1203,3,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,-2,0,2125,-10,0,0 +2013,4,22,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,1438,-13,0,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,23,1,1040,20,1,0 +2013,6,1,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,843,-8,0,0 +2013,5,19,7,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1345,5,0,1530,-14,0,0 +2013,8,28,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,605,-5,0,747,-8,0,0 +2013,9,8,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,22,1,1810,9,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1920,-6,0,2048,-18,0,0 +2013,5,27,1,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1725,1,0,1840,-4,0,0 +2013,5,21,2,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,1,0,1050,-6,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,10,0,2152,-4,0,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2003,363,1,2243,331,1,0 +2013,5,29,3,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1940,0,0,2209,15,1,0 +2013,6,23,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,-5,0,2042,-15,0,0 +2013,10,23,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2153,-5,0,2332,-12,0,0 +2013,4,11,4,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1835,16,1,2058,1,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,2000,4,0,2120,-2,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-2,0,1150,78,1,0 +2013,4,4,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1015,-8,0,1256,-17,0,0 +2013,4,22,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1801,-2,0,2131,-7,0,0 +2013,8,19,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,-10,0,543,16,1,0 +2013,10,8,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,0,0,2050,3,0,0 +2013,9,6,5,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,547,-5,0,655,-23,0,0 +2013,4,7,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,0,0,1520,-9,0,0 +2013,10,7,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-5,0,805,-19,0,0 +2013,9,21,6,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-1,0,1228,-12,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1205,-6,0,2039,-19,0,0 +2013,10,6,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1510,-1,0,1557,-8,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2159,-2,0,2302,-8,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,700,0,0,840,5,0,0 +2013,10,15,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1400,7,0,2000,-27,0,0 +2013,6,30,7,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1420,24,1,1510,14,0,0 +2013,7,7,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,0,0,1323,-2,0,0 +2013,9,23,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-5,0,915,-14,0,0 +2013,9,14,6,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,840,-6,0,1108,-21,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1124,-6,0,1212,-9,0,0 +2013,5,22,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,27,1,1907,34,1,0 +2013,5,6,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,-1,0,1155,-2,0,0 +2013,8,6,2,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1220,-10,0,1431,-9,0,0 +2013,10,17,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,4,0,1040,-8,0,0 +2013,8,12,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,12,0,1814,24,1,0 +2013,5,23,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,8,0,1640,10,0,0 +2013,10,7,1,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1113,-7,0,1326,24,1,0 +2013,6,25,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-7,0,908,5,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,720,-1,0,919,-11,0,0 +2013,7,22,1,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1740,0,,2015,0,1,1 +2013,6,10,1,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,800,-9,0,1023,-13,0,0 +2013,8,13,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,13,0,1555,11,0,0 +2013,4,23,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,2010,-1,0,2125,-5,0,0 +2013,6,10,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,910,-6,0,1015,-8,0,0 +2013,9,3,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,2,0,1433,-11,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-5,0,958,2,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1255,13,0,1942,-9,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,14,0,2310,-8,0,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,625,-5,0,807,-6,0,0 +2013,6,20,4,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,925,-7,0,1142,-14,0,0 +2013,8,14,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,-2,0,1224,-3,0,0 +2013,10,23,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1615,-8,0,1905,-15,0,0 +2013,9,17,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1215,-4,0,1505,4,0,0 +2013,6,16,7,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-5,0,2051,-17,0,0 +2013,6,28,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-3,0,815,-13,0,0 +2013,8,19,1,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1725,-9,0,1730,-13,0,0 +2013,8,11,7,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2110,-5,0,2345,-11,0,0 +2013,8,25,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,725,0,0,855,-10,0,0 +2013,10,16,3,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-8,0,1423,-17,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1426,3,0,1625,-7,0,0 +2013,4,29,1,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,-1,0,1355,-9,0,0 +2013,5,2,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1358,-5,0,1456,-18,0,0 +2013,8,3,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,7,0,1530,-6,0,0 +2013,10,31,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-2,0,1714,12,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1307,7,0,1802,-16,0,0 +2013,10,4,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1305,26,1,1610,19,1,0 +2013,8,23,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,6,0,805,3,0,0 +2013,5,11,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,902,34,1,1057,24,1,0 +2013,10,19,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,910,-1,0,1010,5,0,0 +2013,9,7,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-7,0,1634,-17,0,0 +2013,5,27,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,930,0,0,1245,-2,0,0 +2013,5,3,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-1,0,1127,1,0,0 +2013,7,23,2,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1600,1,0,1705,-3,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1255,1,0,1340,3,0,0 +2013,6,13,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1541,135,1,2028,157,1,0 +2013,5,28,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1219,-1,0,1355,-6,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,-2,0,1007,-17,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,21,1,2220,13,0,0 +2013,6,29,6,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1747,-3,0,2244,-12,0,0 +2013,7,15,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,816,-7,0,929,-11,0,0 +2013,10,5,6,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,615,-2,0,950,-11,0,0 +2013,8,16,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,752,-20,0,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1026,-1,0,1608,7,0,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,-6,0,1825,-4,0,0 +2013,6,18,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-2,0,1405,39,1,0 +2013,7,10,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,759,-3,0,850,-2,0,0 +2013,10,25,5,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1700,21,1,1745,11,0,0 +2013,8,16,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-8,0,1118,-4,0,0 +2013,6,14,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-3,0,1152,-13,0,0 +2013,9,16,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1327,-3,0,2127,4,0,0 +2013,6,16,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,4,0,2105,4,0,0 +2013,5,7,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1050,-4,0,1209,-16,0,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,3,0,1045,9,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1520,-6,0,1956,19,1,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,625,0,0,735,-6,0,0 +2013,5,24,5,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,810,-10,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2005,4,0,2239,8,0,0 +2013,7,18,4,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1500,20,1,1919,26,1,0 +2013,9,25,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,3,0,1323,-13,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1730,11,0,1925,5,0,0 +2013,7,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,600,-6,0,1410,-5,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1345,23,1,1515,15,1,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,906,-3,0,1239,-13,0,0 +2013,6,18,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2005,36,1,2120,39,1,0 +2013,7,4,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,-8,0,1720,-12,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1359,-6,0,1523,-7,0,0 +2013,9,16,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,19,1,1240,19,1,0 +2013,7,12,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-6,0,730,-12,0,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,7,0,1045,-1,0,0 +2013,9,22,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1125,-3,0,1130,-5,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1641,3,0,1719,-10,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,630,-1,0,1140,-14,0,0 +2013,7,25,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1715,30,1,1835,22,1,0 +2013,7,24,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-5,0,1728,-11,0,0 +2013,8,23,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1415,1,0,1505,-4,0,0 +2013,6,23,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,0,0,1800,2,0,0 +2013,4,30,2,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1434,-10,0,1630,-27,0,0 +2013,7,9,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,905,-1,0,1729,6,0,0 +2013,6,10,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,66,1,2057,145,1,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,-2,0,1850,-20,0,0 +2013,9,4,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,6,0,2020,-4,0,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,850,-2,0,1010,-14,0,0 +2013,4,21,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1845,84,1,2029,71,1,0 +2013,7,19,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,615,-3,0,945,-4,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,10,0,1027,7,0,0 +2013,8,23,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,9,0,1605,9,0,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1130,2,0,1510,2,0,0 +2013,9,22,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,6,0,1435,8,0,0 +2013,9,9,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,20,1,1832,28,1,0 +2013,8,8,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-7,0,1334,2,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,940,0,0,1334,-6,0,0 +2013,6,27,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,610,-8,0,815,-17,0,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,115,-1,0,808,8,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-3,0,1605,-10,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1835,17,1,1945,8,0,0 +2013,9,30,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,8,0,1845,5,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,900,0,0,1043,-24,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1435,9,0,1605,-2,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1959,-1,0,2157,19,1,0 +2013,6,3,1,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,825,-3,0,1020,5,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,8,0,1127,-3,0,0 +2013,10,25,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-5,0,1545,-13,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,735,4,0,904,-4,0,0 +2013,6,4,2,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1710,-8,0,1858,-19,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2145,215,1,2250,215,1,0 +2013,10,28,1,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,-4,0,1115,-19,0,0 +2013,7,1,1,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,-1,0,730,5,0,0 +2013,10,5,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,6,0,1650,-2,0,0 +2013,7,21,7,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-3,0,936,-14,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1810,-2,0,2030,-26,0,0 +2013,9,3,2,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1520,33,1,1950,25,1,0 +2013,8,18,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,828,-6,0,1039,-9,0,0 +2013,4,3,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,0,0,1130,2,0,0 +2013,10,26,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-9,0,2134,0,0,0 +2013,5,8,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1200,0,0,1310,-1,0,0 +2013,7,9,2,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,625,60,1,836,45,1,0 +2013,9,18,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1124,3,0,1640,3,0,0 +2013,4,16,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1735,5,0,1953,-3,0,0 +2013,6,29,6,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1835,-6,0,2155,-29,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1629,-5,0,1919,-10,0,0 +2013,5,21,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1400,2,0,1540,-8,0,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1115,-3,0,1250,-18,0,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,820,-1,0,1020,-11,0,0 +2013,4,14,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1100,-6,0,1313,-23,0,0 +2013,9,11,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-5,0,840,-9,0,0 +2013,9,7,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1226,1,0,1422,10,0,0 +2013,5,29,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1401,-5,0,1515,-4,0,0 +2013,5,30,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-5,0,1201,2,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1953,-5,0,2008,-11,0,0 +2013,8,26,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1639,0,0,1919,4,0,0 +2013,5,31,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1654,41,1,1744,67,1,0 +2013,7,18,4,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,606,-9,0,755,-7,0,0 +2013,10,31,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-1,0,1929,-1,0,0 +2013,10,17,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-3,0,1021,-19,0,0 +2013,5,29,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,0,0,916,-14,0,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1335,2,0,1811,-33,0,0 +2013,6,4,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,530,-2,0,805,-18,0,0 +2013,6,11,2,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1155,-14,0,2030,-7,0,0 +2013,7,17,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,1125,7,0,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1815,8,0,2035,5,0,0 +2013,9,5,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,-6,0,940,-6,0,0 +2013,5,12,7,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1934,104,1,2104,96,1,0 +2013,5,31,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1745,-4,0,1853,-26,0,0 +2013,4,4,4,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1443,5,0,1919,1,0,0 +2013,7,2,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,3,0,2110,7,0,0 +2013,7,23,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-4,0,635,-16,0,0 +2013,9,29,7,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,715,-8,0,839,-26,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1808,-4,0,1950,27,1,0 +2013,6,3,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,54,1,2257,91,1,0 +2013,4,11,4,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1915,-1,0,2050,-21,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,184,1,1040,173,1,0 +2013,4,27,6,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1000,-3,0,1725,4,0,0 +2013,10,2,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1610,-4,0,1625,6,0,0 +2013,7,21,7,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1715,-8,0,1855,-27,0,0 +2013,7,3,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-6,0,957,-11,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1820,43,1,2040,33,1,0 +2013,5,6,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1950,-6,0,2200,-8,0,0 +2013,9,9,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,850,9,0,1100,23,1,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2003,-4,0,2108,-14,0,0 +2013,8,18,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1910,39,1,2040,21,1,0 +2013,8,28,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,815,-5,0,924,-16,0,0 +2013,7,15,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,714,-4,0,848,-12,0,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2207,5,0,2310,-16,0,0 +2013,6,20,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-1,0,2100,-2,0,0 +2013,4,3,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,801,-12,0,0 +2013,8,30,5,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1308,43,1,2102,46,1,0 +2013,7,9,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,9,0,1920,4,0,0 +2013,8,29,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,50,1,2125,49,1,0 +2013,10,17,4,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,-6,0,1542,8,0,0 +2013,4,1,1,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1840,26,1,2050,28,1,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,940,-4,0,1155,-4,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1720,-2,0,2045,-25,0,0 +2013,7,1,1,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,545,3,0,656,-2,0,0 +2013,7,22,1,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,625,-2,0,805,-11,0,0 +2013,7,23,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1710,11,0,1830,7,0,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1759,172,1,2053,176,1,0 +2013,5,10,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1800,6,0,2115,3,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-9,0,1039,-25,0,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1250,0,0,1355,-9,0,0 +2013,5,15,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1324,-7,0,1449,-19,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,-5,0,2215,-17,0,0 +2013,8,30,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-4,0,1815,-11,0,0 +2013,8,28,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,-3,0,1508,-13,0,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,732,-1,0,924,-9,0,0 +2013,7,18,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,600,6,0,850,-31,0,0 +2013,6,6,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,-4,0,1118,-9,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1950,9,0,2242,16,1,0 +2013,9,1,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1045,-8,0,1207,-8,0,0 +2013,8,8,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-2,0,1105,50,1,0 +2013,7,19,5,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,700,-4,0,950,3,0,0 +2013,4,6,6,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,752,-4,0,906,-6,0,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1030,-4,0,1220,-11,0,0 +2013,4,12,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,44,1,1915,40,1,0 +2013,9,26,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1320,1,0,1604,15,1,0 +2013,5,10,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1329,-9,0,1624,-20,0,0 +2013,6,3,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1730,1,0,1820,0,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1755,61,1,1910,54,1,0 +2013,6,11,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1235,0,0,1440,7,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1725,14,0,2240,22,1,0 +2013,5,15,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,617,-6,0,730,-4,0,0 +2013,8,10,6,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,29,1,1612,8,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1250,10,0,1425,11,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-3,0,1555,6,0,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1820,25,1,2240,25,1,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1150,13,0,1430,3,0,0 +2013,8,18,7,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-4,0,1521,4,0,0 +2013,10,15,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,0,0,1645,-15,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,3,0,1740,-1,0,0 +2013,6,23,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1325,-4,0,1345,-15,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1950,21,1,2045,17,1,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,-3,0,1826,-19,0,0 +2013,7,13,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1425,74,1,1520,76,1,0 +2013,10,1,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-6,0,1420,-42,0,0 +2013,6,18,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1415,35,1,1656,101,1,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-6,0,1620,8,0,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,-1,0,850,-8,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,935,-2,0,1225,2,0,0 +2013,9,2,1,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-9,0,900,-33,0,0 +2013,9,2,1,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,830,-6,0,1205,-12,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1139,-1,0,1254,-15,0,0 +2013,10,16,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-6,0,755,-7,0,0 +2013,4,28,7,EV,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,932,-8,0,1228,-19,0,0 +2013,6,15,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,3,0,1450,-3,0,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,-5,0,2034,-9,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,950,0,0,1115,2,0,0 +2013,5,28,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,925,-1,0,0 +2013,10,19,6,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2015,-6,0,2145,-5,0,0 +2013,10,19,6,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,-2,0,2300,-4,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1900,0,,2148,0,1,1 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1317,2,0,1915,1,0,0 +2013,10,22,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,-7,0,846,-13,0,0 +2013,7,25,4,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1437,0,0,1736,6,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1058,20,1,1348,-6,0,0 +2013,8,30,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-10,0,1809,-12,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1720,-2,0,1925,-28,0,0 +2013,7,11,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,2000,-5,0,2315,-10,0,0 +2013,6,21,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1345,0,0,1515,1,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1220,33,1,1315,30,1,0 +2013,5,5,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1925,-12,0,2105,-35,0,0 +2013,5,22,3,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1100,-9,0,1222,-12,0,0 +2013,4,21,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-3,0,1909,2,0,0 +2013,10,11,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1115,46,1,1702,47,1,0 +2013,4,4,4,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1645,17,1,2008,6,0,0 +2013,4,1,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1059,4,0,1117,-9,0,0 +2013,10,24,4,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,758,-16,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,4,0,1911,2,0,0 +2013,9,16,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1610,-9,0,1630,-12,0,0 +2013,9,15,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1307,11,0,1553,28,1,0 +2013,8,10,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-6,0,2104,-1,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1210,4,0,1232,-2,0,0 +2013,9,8,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1540,11,0,1655,4,0,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1300,26,1,1625,18,1,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1344,21,1,1504,-9,0,0 +2013,9,12,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1340,9,0,1545,25,1,0 +2013,6,13,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,28,1,1850,20,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1027,-6,0,1234,2,0,0 +2013,5,27,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1009,-7,0,1203,-15,0,0 +2013,6,27,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,-6,0,1414,-9,0,0 +2013,4,25,4,EV,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,928,17,1,1224,6,0,0 +2013,8,29,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,20,1,2100,21,1,0 +2013,6,22,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2041,-6,0,2209,-17,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2055,15,1,2215,14,0,0 +2013,5,19,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,816,27,1,937,42,1,0 +2013,6,29,6,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1340,89,1,1448,81,1,0 +2013,6,28,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,2,0,1540,-3,0,0 +2013,5,27,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1341,-3,0,1934,13,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,805,-2,0,915,-8,0,0 +2013,5,23,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,957,41,1,1106,27,1,0 +2013,4,18,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1300,-5,0,1556,-26,0,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-1,0,1412,0,0,0 +2013,8,5,1,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1144,5,0,1400,5,0,0 +2013,7,19,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1002,-1,0,1136,-7,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,2,0,2233,7,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,-1,0,2325,-24,0,0 +2013,10,5,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1840,-10,0,2120,-23,0,0 +2013,6,30,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1906,22,1,2003,16,1,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1355,-2,0,1455,3,0,0 +2013,9,20,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-4,0,1605,-18,0,0 +2013,6,24,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1407,5,0,1600,13,0,0 +2013,4,30,2,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1330,8,0,1529,13,0,0 +2013,4,22,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1218,-2,0,1330,19,1,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1936,99,1,2039,98,1,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1555,-2,0,1752,6,0,0 +2013,4,8,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,719,27,1,950,8,0,0 +2013,4,4,4,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1640,-18,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-4,0,1109,-13,0,0 +2013,5,19,7,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-3,0,1335,5,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,2,0,1235,-10,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,740,-3,0,1100,4,0,0 +2013,7,14,7,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,203,1,2115,153,1,0 +2013,9,21,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1012,78,1,1150,73,1,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1730,101,1,2200,101,1,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1910,46,1,2335,49,1,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,-2,0,2055,-25,0,0 +2013,7,8,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,6,0,1415,-2,0,0 +2013,10,22,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-5,0,1024,2,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2210,6,0,55,2,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,24,1,1735,9,0,0 +2013,7,6,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1706,8,0,0 +2013,5,22,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1145,-1,0,1404,-4,0,0 +2013,8,4,7,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-5,0,2010,-13,0,0 +2013,5,22,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1756,-4,0,1914,-22,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,725,-2,0,822,-21,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-8,0,1840,-35,0,0 +2013,7,9,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1642,43,1,1938,19,1,0 +2013,9,17,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1142,13,0,1533,23,1,0 +2013,6,27,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-6,0,735,-14,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,0,0,1703,-1,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,0,0,922,-4,0,0 +2013,6,11,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1535,10,0,1700,9,0,0 +2013,4,30,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,63,1,1546,53,1,0 +2013,10,9,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,-2,0,935,-8,0,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,625,-1,0,740,-2,0,0 +2013,8,19,1,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1444,-8,0,1617,-11,0,0 +2013,8,20,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,4,0,2200,-31,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,0,0,2350,-35,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2020,10,0,2155,12,0,0 +2013,5,9,4,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-5,0,1613,1,0,0 +2013,6,3,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1835,13,0,2115,7,0,0 +2013,7,14,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,-4,0,1615,-20,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,750,7,0,855,0,0,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,815,-7,0,940,-11,0,0 +2013,6,2,7,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-7,0,1006,-18,0,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1232,1,0,0 +2013,7,19,5,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,178,1,1949,161,1,0 +2013,6,20,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1649,-4,0,1846,-8,0,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,97,1,2030,93,1,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,2045,52,1,2240,46,1,0 +2013,7,30,2,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,656,-2,0,817,-5,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1335,40,1,1805,36,1,0 +2013,10,16,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1630,189,1,1751,181,1,0 +2013,7,21,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,750,0,0,905,-4,0,0 +2013,10,15,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1125,-1,0,1135,-4,0,0 +2013,8,30,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1656,-2,0,1846,-4,0,0 +2013,10,8,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-7,0,811,-6,0,0 +2013,5,14,2,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-2,0,1523,-15,0,0 +2013,7,13,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1715,0,,1942,0,1,1 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1623,0,0,2025,2,0,0 +2013,9,21,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,850,0,0,1030,16,1,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1535,-8,0,1643,-10,0,0 +2013,4,14,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1457,-9,0,0 +2013,9,12,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1145,-5,0,1307,9,0,0 +2013,5,30,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,541,0,0,900,-11,0,0 +2013,10,9,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-15,0,715,-12,0,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1355,124,1,1625,129,1,0 +2013,10,18,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1720,36,1,1815,21,1,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1211,3,0,1406,-7,0,0 +2013,4,1,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-10,0,2057,-19,0,0 +2013,10,24,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,21,1,1201,11,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,723,-4,0,957,24,1,0 +2013,8,14,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1600,-2,0,1825,-11,0,0 +2013,5,13,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2016,-7,0,2041,-21,0,0 +2013,10,24,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1735,-7,0,1945,-25,0,0 +2013,7,21,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1705,15,1,1857,9,0,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1945,-2,0,115,-22,0,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,-5,0,930,-17,0,0 +2013,4,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-3,0,1100,12,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,4,0,1750,-6,0,0 +2013,9,30,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1105,-4,0,1210,-16,0,0 +2013,4,24,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1215,3,0,1240,3,0,0 +2013,10,13,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1755,32,1,46,16,1,0 +2013,4,25,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1201,16,1,2041,4,0,0 +2013,9,10,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,-3,0,1830,16,1,0 +2013,10,8,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1330,1,0,1605,14,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,600,0,0,935,-5,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1000,-7,0,1130,-17,0,0 +2013,5,31,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1220,0,0,1350,-11,0,0 +2013,8,28,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,5,0,2237,1,0,0 +2013,4,6,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,4,0,1920,-1,0,0 +2013,4,25,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,1,0,1012,-1,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,0,0,1946,8,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,-5,0,1907,-8,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,103,1,2040,103,1,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,1,0,912,1,0,0 +2013,7,31,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-5,0,2025,-18,0,0 +2013,7,5,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,745,-5,0,1014,-14,0,0 +2013,8,28,3,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1930,0,,2112,0,1,1 +2013,4,25,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,0,0,1355,0,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-1,0,1015,-6,0,0 +2013,6,26,3,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1415,-4,0,1544,-13,0,0 +2013,6,26,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,915,28,1,1710,48,1,0 +2013,4,23,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,6,0,1910,-3,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1245,16,1,1500,9,0,0 +2013,8,30,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,710,-2,0,926,4,0,0 +2013,4,23,2,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,644,1,0,756,-3,0,0 +2013,9,12,4,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-1,0,1035,-3,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,26,1,2005,22,1,0 +2013,6,17,1,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1115,3,0,1405,-8,0,0 +2013,7,25,4,OO,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1512,50,1,1701,43,1,0 +2013,5,17,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1125,-3,0,1225,-16,0,0 +2013,9,16,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,708,1,0,840,11,0,0 +2013,6,11,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1535,-2,0,1643,10,0,0 +2013,10,10,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,-4,0,1035,-19,0,0 +2013,4,8,1,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,4,0,1640,-10,0,0 +2013,10,2,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,-6,0,1312,-6,0,0 +2013,9,11,3,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,-4,0,1955,-4,0,0 +2013,10,16,3,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,715,0,0,930,-9,0,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1043,5,0,1528,-34,0,0 +2013,10,20,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,645,-14,0,749,-16,0,0 +2013,10,12,6,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-1,0,2030,-9,0,0 +2013,5,5,7,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,930,1,0,1125,-10,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,23,1,1130,23,1,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-1,0,1109,0,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1608,-3,0,1725,-18,0,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,810,-1,0,920,-10,0,0 +2013,6,14,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1751,-6,0,2058,-14,0,0 +2013,9,18,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-5,0,1632,-7,0,0 +2013,7,29,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-6,0,1310,-3,0,0 +2013,6,3,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-5,0,1201,0,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,44,1,1525,53,1,0 +2013,5,28,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,-4,0,2105,26,1,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-2,0,1653,-3,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-6,0,1306,-18,0,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-5,0,1809,-3,0,0 +2013,9,22,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,-1,0,1810,-12,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,-4,0,1126,-3,0,0 +2013,8,18,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,-1,0,1915,-6,0,0 +2013,8,4,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1435,-3,0,1638,-23,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2205,-3,0,2356,-15,0,0 +2013,10,28,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1752,-1,0,2119,10,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1245,48,1,1345,44,1,0 +2013,7,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,2030,8,0,2220,-4,0,0 +2013,5,2,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1830,7,0,1905,-1,0,0 +2013,9,12,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-4,0,815,-11,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-4,0,2159,5,0,0 +2013,6,12,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,4,0,1922,3,0,0 +2013,7,24,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,23,1,2105,22,1,0 +2013,9,4,3,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1629,-4,0,1919,-4,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,855,-1,0,1005,-15,0,0 +2013,6,5,3,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,919,-9,0,1109,-13,0,0 +2013,10,12,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,735,-3,0,845,-12,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,3,0,1309,1,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1520,16,1,1648,11,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2110,24,1,2245,19,1,0 +2013,5,17,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,17,1,1620,15,1,0 +2013,4,28,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-3,0,855,-8,0,0 +2013,6,2,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,61,1,1023,54,1,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2025,-4,0,2150,-14,0,0 +2013,4,25,4,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,113,1,1514,100,1,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1235,0,0,1508,2,0,0 +2013,7,17,3,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,1420,-2,0,1721,-7,0,0 +2013,10,3,4,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,745,-2,0,941,-5,0,0 +2013,8,16,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,4,0,2125,-7,0,0 +2013,5,20,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,2,0,1450,3,0,0 +2013,6,21,5,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2333,17,1,500,-1,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,700,-1,0,825,9,0,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1645,10,0,1913,10,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2130,-9,0,2350,-11,0,0 +2013,8,18,7,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,2,0,1355,-15,0,0 +2013,6,8,6,FL,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1908,-7,0,2213,-20,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1715,38,1,2245,32,1,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1320,37,1,1445,25,1,0 +2013,6,17,1,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1033,-7,0,1347,-19,0,0 +2013,7,18,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,940,-2,0,1110,-29,0,0 +2013,5,6,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1625,-2,0,45,-6,0,0 +2013,7,12,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-5,0,627,-10,0,0 +2013,4,3,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1745,4,0,2155,-18,0,0 +2013,10,8,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-7,0,1635,-8,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,948,-2,0,1225,-1,0,0 +2013,10,31,4,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1540,-3,0,1650,-2,0,0 +2013,5,12,7,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2011,-9,0,2150,-27,0,0 +2013,7,29,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,9,0,905,-2,0,0 +2013,7,12,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,59,1,1947,66,1,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1540,23,1,2115,8,0,0 +2013,8,7,3,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,31,1,2155,22,1,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-5,0,825,-6,0,0 +2013,4,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1200,-3,0,1325,2,0,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,839,-16,0,0 +2013,7,14,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,730,-6,0,1019,3,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,825,-3,0,925,-1,0,0 +2013,4,23,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-4,0,844,-18,0,0 +2013,4,11,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1420,157,1,2115,158,1,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1630,61,1,1815,47,1,0 +2013,4,30,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,-4,0,805,-3,0,0 +2013,4,5,5,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-8,0,626,-11,0,0 +2013,10,2,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1516,-6,0,0 +2013,8,15,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-5,0,1347,-16,0,0 +2013,8,15,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1850,14,0,1945,7,0,0 +2013,9,9,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,655,-2,0,740,-14,0,0 +2013,8,7,3,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1735,-1,0,2044,22,1,0 +2013,7,24,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1312,44,1,2142,17,1,0 +2013,5,3,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,547,4,0,1204,-16,0,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,-6,0,1030,16,1,0 +2013,10,27,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-4,0,1744,-16,0,0 +2013,8,27,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1434,52,1,1534,51,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1244,15,1,1449,5,0,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1112,-6,0,1320,-14,0,0 +2013,7,5,5,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1030,-5,0,1325,5,0,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,103,1,2150,165,1,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1230,11,0,1605,60,1,0 +2013,6,15,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1438,-9,0,1643,-17,0,0 +2013,7,17,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,0,0,1025,-16,0,0 +2013,4,12,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-1,0,2212,-22,0,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,0,,1825,0,1,1 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,13,0,2100,27,1,0 +2013,10,6,7,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1715,6,0,1835,3,0,0 +2013,10,9,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1125,1,0,1210,0,0,0 +2013,7,2,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-7,0,1341,-10,0,0 +2013,5,23,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,850,-6,0,1002,-4,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,833,-1,0,1110,-14,0,0 +2013,10,5,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-4,0,2120,-14,0,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,2,0,1305,4,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2058,0,0,2239,-8,0,0 +2013,5,24,5,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1430,-7,0,1610,-14,0,0 +2013,7,29,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,830,-13,0,0 +2013,7,3,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2100,19,1,125,20,1,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,34,1,1225,52,1,0 +2013,4,29,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-10,0,2040,-6,0,0 +2013,6,29,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,1,0,1100,-3,0,0 +2013,10,10,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,17,1,2115,27,1,0 +2013,4,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,24,1,20,24,1,0 +2013,5,9,4,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,910,-2,0,1140,-12,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1305,32,1,1435,36,1,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,850,-2,0,1141,3,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1610,21,1,1910,3,0,0 +2013,7,14,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-1,0,1619,-3,0,0 +2013,5,9,4,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-6,0,843,-3,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-11,0,1617,-11,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,18,1,1317,9,0,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1506,0,0,1616,-6,0,0 +2013,9,2,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,755,-6,0,929,-12,0,0 +2013,5,21,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,2025,160,1,2100,153,1,0 +2013,5,30,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2110,11,0,2230,-3,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,0,0,2237,0,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2143,-1,0,2359,-29,0,0 +2013,9,28,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,28,1,1730,11,0,0 +2013,8,29,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-4,0,2024,8,0,0 +2013,7,25,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-8,0,1030,-22,0,0 +2013,4,7,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,910,-7,0,930,-16,0,0 +2013,9,9,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1055,24,1,1220,19,1,0 +2013,4,16,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1925,13,0,2015,16,1,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1510,6,0,1620,7,0,0 +2013,5,29,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,-4,0,1615,3,0,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1240,3,0,1355,-4,0,0 +2013,9,24,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1920,-5,0,2105,0,0,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1735,21,1,1841,9,0,0 +2013,8,15,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1420,48,1,1814,31,1,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2120,-3,0,2235,-10,0,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1610,33,1,1732,27,1,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1015,0,0,1255,-22,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1615,-1,0,1745,-7,0,0 +2013,4,30,2,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1930,-2,0,2230,-26,0,0 +2013,7,17,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-9,0,922,-4,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,944,-2,0,1036,-13,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,600,4,0,841,4,0,0 +2013,4,28,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1440,-7,0,1630,12,0,0 +2013,7,27,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,9,0,948,0,1,1 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1230,-5,0,1517,-7,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1840,-5,0,1945,-14,0,0 +2013,8,24,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,2,0,815,1,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1115,1,0,1244,-6,0,0 +2013,8,16,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,-5,0,1304,-10,0,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1329,-2,0,1813,1,0,0 +2013,5,23,4,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-5,0,755,-10,0,0 +2013,5,7,2,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-4,0,909,16,1,0 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,-1,0,2250,-11,0,0 +2013,9,2,1,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1409,40,1,1538,51,1,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1300,1,0,1455,-20,0,0 +2013,8,29,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,-1,0,1325,-11,0,0 +2013,7,17,3,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,949,-2,0,1453,-13,0,0 +2013,6,12,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,144,1,2113,137,1,0 +2013,7,27,6,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,10,0,730,10,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1720,-2,0,1950,-11,0,0 +2013,7,10,3,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,0,,1720,0,1,1 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,-3,0,2116,-12,0,0 +2013,6,13,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-2,0,1119,-5,0,0 +2013,5,9,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,3,0,1305,1,0,0 +2013,5,29,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,-7,0,1439,-15,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2104,-3,0,2234,-21,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,-3,0,1130,-19,0,0 +2013,8,9,5,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,110,1,2138,112,1,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1925,-3,0,2136,-23,0,0 +2013,8,5,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1555,-3,0,1750,5,0,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1450,14,0,1653,13,0,0 +2013,9,5,4,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,-5,0,1552,-11,0,0 +2013,4,25,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-7,0,1903,-22,0,0 +2013,5,20,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1420,0,,1717,0,1,1 +2013,8,19,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1657,-6,0,1746,-3,0,0 +2013,5,14,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,31,1,1900,42,1,0 +2013,9,21,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-6,0,2226,-5,0,0 +2013,8,17,6,OO,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1448,-7,0,1714,-7,0,0 +2013,4,22,1,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,6,0,750,7,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,0,0,1445,9,0,0 +2013,10,21,1,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,-6,0,2133,-10,0,0 +2013,6,25,2,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,645,-5,0,1435,-21,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,168,1,2329,163,1,0 +2013,4,30,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1250,-1,0,1605,-13,0,0 +2013,10,30,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1845,-2,0,2130,-36,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-6,0,1152,-17,0,0 +2013,7,15,1,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1745,-10,0,1911,-20,0,0 +2013,7,21,7,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-3,0,1024,-9,0,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,5,0,1149,-6,0,0 +2013,10,1,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,0,0,2115,-2,0,0 +2013,8,12,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1254,-6,0,1552,-1,0,0 +2013,8,28,3,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1711,8,0,1919,-15,0,0 +2013,10,27,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1230,-3,0,1810,-5,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1945,-5,0,2251,-6,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2023,-2,0,2330,0,0,0 +2013,5,8,3,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,825,-4,0,955,-7,0,0 +2013,7,20,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-4,0,1415,-7,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,-3,0,1433,-18,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,-1,0,1355,2,0,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1030,0,0,1121,-5,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,-1,0,1103,-8,0,0 +2013,8,28,3,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,805,-6,0,1003,-15,0,0 +2013,7,25,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,41,1,2130,35,1,0 +2013,4,2,2,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1345,255,1,1836,237,1,0 +2013,10,1,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1943,-2,0,2125,-30,0,0 +2013,8,18,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-5,0,1347,-20,0,0 +2013,6,11,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1945,-2,0,2140,3,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,5,0,1750,-4,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-4,0,1958,-9,0,0 +2013,9,23,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,15,1,2210,14,0,0 +2013,8,19,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2114,-8,0,2359,-5,0,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-3,0,1830,-15,0,0 +2013,7,6,6,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1120,13,0,1355,6,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,1,0,1720,35,1,0 +2013,8,23,5,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,5,0,2100,-9,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2055,126,1,2340,98,1,0 +2013,10,2,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-8,0,1544,-16,0,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1515,-6,0,1745,-22,0,0 +2013,9,8,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1255,0,0,1845,5,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,801,-1,0,1033,-4,0,0 +2013,7,21,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-8,0,1125,0,0,0 +2013,4,16,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1000,18,1,1119,7,0,0 +2013,4,19,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,33,1,1555,33,1,0 +2013,6,1,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,-8,0,728,-17,0,0 +2013,4,26,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,-4,0,1308,-13,0,0 +2013,5,8,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,10,0,2025,8,0,0 +2013,5,22,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,33,1,1535,24,1,0 +2013,6,24,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1654,-2,0,1934,-15,0,0 +2013,5,1,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,0,0,1035,1,0,0 +2013,7,3,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1231,-2,0,1322,1,0,0 +2013,8,12,1,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,957,-9,0,1038,-5,0,0 +2013,9,24,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,1,0,1300,-4,0,0 +2013,6,21,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,14,0,1650,-7,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,5,0,1711,15,1,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1119,0,0,1413,-9,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1525,110,1,1750,118,1,0 +2013,7,9,2,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,945,0,0,1505,-4,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,920,-2,0,1351,-14,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,8,0,1550,0,0,0 +2013,6,21,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,753,-5,0,921,-26,0,0 +2013,5,14,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1626,2,0,1714,-8,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-5,0,1242,4,0,0 +2013,5,27,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1015,-5,0,0 +2013,8,11,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,630,-7,0,812,-21,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1010,10,0,1212,5,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1144,-6,0,1316,-4,0,0 +2013,8,12,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1528,0,0,1721,-4,0,0 +2013,7,8,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,-4,0,923,-46,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1700,-1,0,1900,-13,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,0,0,1256,-3,0,0 +2013,6,26,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,97,1,1800,121,1,0 +2013,9,4,3,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-8,0,1757,-1,0,0 +2013,7,2,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1237,7,0,1805,-7,0,0 +2013,7,3,3,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1254,-3,0,1613,-11,0,0 +2013,10,8,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,16,1,1848,11,0,0 +2013,4,13,6,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,745,-9,0,903,-5,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,804,-4,0,932,-19,0,0 +2013,8,6,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2040,-5,0,2145,-14,0,0 +2013,4,2,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,-9,0,2056,-19,0,0 +2013,5,25,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,,925,0,1,1 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,0,0,930,3,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,725,0,0,900,-12,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,810,-3,0,1020,-3,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1145,8,0,1305,11,0,0 +2013,10,29,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,645,-6,0,909,-19,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1115,-7,0,1310,-19,0,0 +2013,8,20,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-6,0,845,-3,0,0 +2013,7,27,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1040,9,0,1150,-8,0,0 +2013,10,2,3,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,700,-10,0,1020,-15,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2120,-2,0,2240,-8,0,0 +2013,6,24,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,710,-6,0,941,-9,0,0 +2013,6,22,6,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,811,2,0,944,-9,0,0 +2013,9,3,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1140,-7,0,1150,-9,0,0 +2013,8,11,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-9,0,1140,-27,0,0 +2013,4,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1947,-8,0,2203,-8,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,909,-7,0,1350,1,0,0 +2013,9,4,3,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1706,-2,0,2300,4,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,810,-6,0,1140,-14,0,0 +2013,9,10,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,855,-8,0,1029,-15,0,0 +2013,5,2,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1115,9,0,1459,15,1,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2102,2,0,2223,30,1,0 +2013,6,19,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-10,0,755,7,0,0 +2013,4,27,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-9,0,854,10,0,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2000,45,1,2315,34,1,0 +2013,9,22,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1445,-6,0,1648,-8,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-5,0,1010,-8,0,0 +2013,7,26,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1850,-1,0,2138,-14,0,0 +2013,6,3,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-4,0,1534,-6,0,0 +2013,7,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,731,0,0,853,0,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,16,1,2240,-14,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1935,23,1,2105,10,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,-9,0,2320,-9,0,0 +2013,8,7,3,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1710,-5,0,1945,52,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,2,0,1115,3,0,0 +2013,4,22,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,32,1,1635,34,1,0 +2013,7,6,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-10,0,1912,-15,0,0 +2013,4,14,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-6,0,2110,-24,0,0 +2013,10,26,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,835,-7,0,925,-7,0,0 +2013,7,18,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,60,1,1835,62,1,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,-2,0,1810,-14,0,0 +2013,4,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1015,0,0,1158,-5,0,0 +2013,6,20,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2050,-2,0,2234,-12,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1005,0,0,1241,5,0,0 +2013,10,26,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-4,0,1113,3,0,0 +2013,10,18,5,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1223,0,0,1819,-36,0,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1929,-1,0,2049,-13,0,0 +2013,9,6,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,745,-4,0,905,-15,0,0 +2013,4,24,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,2,0,1925,-10,0,0 +2013,9,21,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,735,0,0,835,5,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1450,-3,0,2215,-15,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1350,-1,0,1620,-3,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2255,-2,0,2259,-11,0,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,9,0,2130,5,0,0 +2013,8,27,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,29,1,1618,38,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2035,-3,0,2216,-23,0,0 +2013,8,15,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,6,0,2045,16,1,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2025,54,1,2150,50,1,0 +2013,9,6,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-9,0,756,-2,0,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,40,1,1935,39,1,0 +2013,4,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,-5,0,1700,-13,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,5,0,847,33,1,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-7,0,1246,-18,0,0 +2013,7,5,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-9,0,1400,-5,0,0 +2013,4,29,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1225,-1,0,1426,-21,0,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1240,3,0,1435,9,0,0 +2013,4,22,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-2,0,1009,26,1,0 +2013,10,22,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-3,0,1335,-12,0,0 +2013,9,15,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,0,0,835,-4,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2155,140,1,2337,112,1,0 +2013,5,6,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1815,1,0,2054,-21,0,0 +2013,7,27,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2227,-2,0,611,-26,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,610,-1,0,700,-6,0,0 +2013,4,26,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2100,29,1,2200,24,1,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1745,27,1,2200,29,1,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1252,0,0,1352,-14,0,0 +2013,6,23,7,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1417,25,1,1520,14,0,0 +2013,9,3,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1429,-4,0,1536,-5,0,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,523,-4,0,1224,2,0,0 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,600,8,0,700,1,0,0 +2013,5,13,1,UA,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1828,-4,0,2031,-26,0,0 +2013,8,2,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-4,0,2235,-11,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1925,-5,0,2318,-21,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1915,-1,0,2100,-20,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,0,0,1750,-8,0,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1400,-1,0,1550,1,0,0 +2013,7,11,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,18,1,1314,1,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1425,74,1,1747,66,1,0 +2013,4,28,7,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,11,0,1120,9,0,0 +2013,5,21,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,0,,1740,0,1,1 +2013,8,5,1,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,0,0,1415,1,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1005,18,1,1145,19,1,0 +2013,5,18,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1750,-4,0,1915,-15,0,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1713,0,0,1837,5,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,705,-4,0,910,0,0,0 +2013,5,18,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1255,-4,0,1400,-12,0,0 +2013,5,24,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,2245,3,0,0 +2013,10,26,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-6,0,1527,1,0,0 +2013,10,17,4,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1856,-4,0,2110,-3,0,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,1055,-6,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,16,1,1008,14,0,0 +2013,8,7,3,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-5,0,1023,-1,0,0 +2013,5,17,5,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1600,290,1,1810,274,1,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,0,0,2155,-12,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1957,-3,0,2127,-9,0,0 +2013,6,11,2,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,830,-3,0,957,-8,0,0 +2013,8,1,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,14,0,620,0,0,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1625,7,0,2310,14,0,0 +2013,4,12,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1615,-7,0,1822,-7,0,0 +2013,4,16,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,801,3,0,0 +2013,8,25,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1624,-5,0,1819,-1,0,0 +2013,7,7,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,5,0,2020,16,1,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,51,1,940,61,1,0 +2013,5,13,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,5,0,1445,-1,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1625,10,0,2120,8,0,0 +2013,4,11,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,9,0,1719,23,1,0 +2013,9,18,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,1,0,1715,-3,0,0 +2013,7,14,7,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-5,0,1521,-14,0,0 +2013,7,12,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,1,0,1440,-6,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-3,0,1605,-13,0,0 +2013,10,7,1,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1838,-4,0,1942,-18,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2000,-5,0,2100,-9,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1357,40,1,1736,29,1,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1610,-5,0,1630,-12,0,0 +2013,5,26,7,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1003,3,0,1214,-2,0,0 +2013,8,15,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,6,0,1335,-7,0,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1817,4,0,2112,-39,0,0 +2013,9,12,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2140,107,1,40,99,1,0 +2013,9,21,6,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1135,81,1,1453,64,1,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1445,50,1,1615,40,1,0 +2013,8,18,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,108,1,1657,143,1,0 +2013,4,2,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,5,0,1356,-3,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2019,1,0,2117,-2,0,0 +2013,8,23,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,126,1,2005,120,1,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2235,26,1,12,28,1,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,640,4,0,815,14,0,0 +2013,4,12,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-4,0,1015,-2,0,0 +2013,8,26,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,8,0,1340,2,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,0,0,755,-17,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,10,0,1910,23,1,0 +2013,4,17,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,3,0,1941,-8,0,0 +2013,4,17,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-3,0,735,-2,0,0 +2013,10,8,2,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1600,-5,0,1755,-2,0,0 +2013,10,15,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1040,0,0,1200,-7,0,0 +2013,7,28,7,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,30,-4,0,602,-16,0,0 +2013,5,3,5,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10,-3,0,800,-15,0,0 +2013,6,26,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,153,1,729,165,1,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2115,39,1,20,49,1,0 +2013,6,6,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-3,0,2153,-5,0,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1519,-2,0,1643,49,1,0 +2013,8,3,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1111,9,0,1151,8,0,0 +2013,7,5,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1120,0,,1230,0,1,1 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1325,-3,0,1615,-19,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,-3,0,1854,-17,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1320,-1,0,1430,-10,0,0 +2013,4,30,2,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1145,-7,0,1356,9,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2130,-6,0,2338,-11,0,0 +2013,10,13,7,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-2,0,1924,-8,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1725,66,1,1925,101,1,0 +2013,9,24,2,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,825,-4,0,1113,-7,0,0 +2013,6,10,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,7,0,1635,16,1,0 +2013,10,30,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,730,-9,0,825,-10,0,0 +2013,9,29,7,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,8,0,1730,2,0,0 +2013,8,4,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2030,-1,0,2155,5,0,0 +2013,5,21,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,33,1,2213,21,1,0 +2013,7,11,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,38,1,1458,29,1,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2040,17,1,2235,11,0,0 +2013,4,27,6,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,640,-5,0,922,-12,0,0 +2013,9,13,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,920,10,0,1214,5,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1755,19,1,2030,12,0,0 +2013,10,25,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1904,-5,0,2030,-12,0,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1510,0,0,1825,17,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,820,-2,0,945,-19,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2020,-2,0,2241,-4,0,0 +2013,5,20,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2040,-2,0,2140,-8,0,0 +2013,6,14,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,122,1,1825,116,1,0 +2013,10,8,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,-2,0,845,-4,0,0 +2013,4,9,2,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,742,-3,0,838,-3,0,0 +2013,4,17,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1510,25,1,1710,11,0,0 +2013,9,9,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1800,34,1,2035,39,1,0 +2013,5,22,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,650,-3,0,700,-10,0,0 +2013,6,15,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1712,7,0,1957,14,0,0 +2013,5,9,4,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,610,2,0,750,16,1,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,900,-12,0,1041,-10,0,0 +2013,7,30,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-6,0,912,-5,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,6,0,1530,-10,0,0 +2013,8,12,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1710,-4,0,1833,-9,0,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,635,16,1,740,10,0,0 +2013,7,17,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1855,11,0,2008,-3,0,0 +2013,10,25,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,6,0,1123,5,0,0 +2013,8,10,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1457,-1,0,2005,11,0,0 +2013,8,4,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,-7,0,941,-16,0,0 +2013,5,22,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,348,1,1938,324,1,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1559,1,0,1721,-16,0,0 +2013,5,19,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,91,1,1320,90,1,0 +2013,4,6,6,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,1530,-3,0,1746,-7,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,1303,14,0,0 +2013,9,19,4,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,754,-12,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-5,0,1709,2,0,0 +2013,9,11,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,650,-4,0,750,1,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,25,1,2259,24,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,-1,0,1004,-17,0,0 +2013,4,5,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1345,-6,0,2015,-12,0,0 +2013,8,8,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2010,-3,0,2156,-3,0,0 +2013,5,7,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,56,1,1951,39,1,0 +2013,7,26,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,31,1,2045,19,1,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,825,0,0,1000,-10,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,953,-1,0,1209,-13,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1425,0,0,1545,-15,0,0 +2013,10,20,7,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,-2,0,1605,-4,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,801,-7,0,1018,-2,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,-2,0,1334,-11,0,0 +2013,4,17,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1737,18,1,1944,69,1,0 +2013,4,30,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1518,-6,0,1652,-17,0,0 +2013,7,8,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-1,0,1800,8,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,755,-4,0,855,-19,0,0 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,656,-8,0,817,-12,0,0 +2013,7,31,3,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2110,3,0,550,5,0,0 +2013,9,23,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,47,1,1755,35,1,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,22,1,1933,44,1,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1252,-4,0,1352,-20,0,0 +2013,6,18,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,741,-6,0,0 +2013,5,18,6,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1330,-3,0,1402,-3,0,0 +2013,10,13,7,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1400,-5,0,1435,-4,0,0 +2013,9,14,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1735,-2,0,1949,-13,0,0 +2013,8,27,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,933,6,0,1235,-6,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1715,17,1,2240,7,0,0 +2013,5,8,3,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1311,-2,0,1412,-15,0,0 +2013,8,7,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,0,0,1620,-14,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-4,0,1233,-16,0,0 +2013,4,21,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,3,0,1705,4,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,955,-5,0,1101,-2,0,0 +2013,7,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-3,0,1640,3,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1259,-5,0,2104,-11,0,0 +2013,6,7,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,605,-4,0,940,-11,0,0 +2013,8,23,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1916,5,0,2214,-8,0,0 +2013,9,29,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1950,4,0,2115,-1,0,0 +2013,4,29,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,650,-12,0,848,-19,0,0 +2013,7,25,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-6,0,745,5,0,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,900,3,0,945,5,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,719,-1,0,1555,-13,0,0 +2013,7,24,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,-5,0,820,-2,0,0 +2013,10,16,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1500,-14,0,1740,4,0,0 +2013,10,16,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1932,-2,0,2027,-19,0,0 +2013,5,30,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,0,0,2103,-9,0,0 +2013,8,25,7,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,710,-7,0,830,-39,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,7,0,2310,-1,0,0 +2013,7,27,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2135,0,0,603,-30,0,0 +2013,8,8,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,920,4,0,1020,3,0,0 +2013,8,10,6,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1005,-2,0,1135,-3,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,0,0,1830,42,1,0 +2013,10,23,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1220,-1,0,1345,-7,0,0 +2013,6,9,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1745,55,1,2043,59,1,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1325,1,0,1640,9,0,0 +2013,6,1,6,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,815,-17,0,0 +2013,5,22,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,720,-5,0,919,-1,0,0 +2013,8,14,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2042,39,1,454,50,1,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-2,0,1105,-10,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,844,-5,0,1102,0,0,0 +2013,8,9,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1535,3,0,1740,-5,0,0 +2013,6,26,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,68,1,2025,61,1,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1454,65,1,1608,60,1,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1330,61,1,1815,61,1,0 +2013,7,29,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-1,0,1943,-14,0,0 +2013,7,11,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,-8,0,2115,-8,0,0 +2013,5,12,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-8,0,740,-8,0,0 +2013,4,12,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1334,-2,0,1447,-16,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1355,-3,0,1521,-3,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,5,0,2210,4,0,0 +2013,10,23,3,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1130,-1,0,1957,-20,0,0 +2013,10,14,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,35,1,1517,31,1,0 +2013,8,1,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1800,77,1,1905,55,1,0 +2013,9,18,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1313,-4,0,1918,98,1,0 +2013,7,31,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1600,3,0,1704,1,0,0 +2013,6,21,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1035,-6,0,1210,-13,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,945,42,1,1125,32,1,0 +2013,8,7,3,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1435,5,0,1750,-5,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,940,-8,0,1035,1,0,0 +2013,7,15,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1030,-5,0,1142,-6,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2105,63,1,2155,69,1,0 +2013,4,24,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1020,-10,0,1258,22,1,0 +2013,7,25,4,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-7,0,955,-17,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,630,-2,0,735,0,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,6,0,1730,5,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,710,-7,0,824,-17,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1830,0,0,1935,-7,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2000,39,1,2205,38,1,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,-6,0,453,-3,0,0 +2013,7,4,4,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,-4,0,941,6,0,0 +2013,7,8,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,26,1,1748,19,1,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1240,-4,0,1525,-8,0,0 +2013,5,13,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1215,-5,0,1451,-20,0,0 +2013,4,17,3,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1750,-2,0,2110,1,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1725,8,0,2005,25,1,0 +2013,4,17,3,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,45,-2,0,622,3,0,0 +2013,7,10,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1415,163,1,1438,147,1,0 +2013,8,23,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-2,0,1445,-15,0,0 +2013,4,26,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,4,0,1324,-7,0,0 +2013,6,25,2,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1650,17,1,1802,19,1,0 +2013,9,24,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,630,0,0,735,-4,0,0 +2013,8,7,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1259,-1,0,1544,-12,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,16,1,1525,7,0,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-2,0,1949,-5,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-3,0,920,11,0,0 +2013,5,20,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,53,1,829,78,1,0 +2013,4,13,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,953,0,0,1254,-21,0,0 +2013,5,4,6,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-1,0,1700,8,0,0 +2013,10,18,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-2,0,1535,-1,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,7,0,1115,7,0,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1032,71,1,1629,50,1,0 +2013,10,5,6,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1835,-5,0,2137,-35,0,0 +2013,6,12,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-10,0,752,3,0,0 +2013,4,23,2,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,625,-2,0,940,7,0,0 +2013,5,6,1,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2011,-4,0,2306,-32,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,1,0,2330,-7,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1215,12,0,1510,12,0,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,811,-7,0,1027,-10,0,0 +2013,5,25,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1405,-2,0,1720,-18,0,0 +2013,5,7,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1645,-6,0,42,-8,0,0 +2013,6,19,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,4,0,1317,15,1,0 +2013,9,15,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1738,9,0,2028,10,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,77,1,2330,76,1,0 +2013,9,21,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1720,-8,0,1837,-17,0,0 +2013,10,23,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-9,0,2036,-19,0,0 +2013,5,18,6,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1200,-3,0,1345,-31,0,0 +2013,10,1,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1938,-15,0,2313,-22,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1420,7,0,1515,-2,0,0 +2013,4,10,3,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,5,0,1950,-2,0,0 +2013,5,22,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,32,1,2015,16,1,0 +2013,5,20,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-1,0,2235,-6,0,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1410,13,0,1550,14,0,0 +2013,8,19,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1358,-4,0,1614,10,0,0 +2013,5,27,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1443,-4,0,1636,-4,0,0 +2013,5,2,4,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,710,-3,0,915,-20,0,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,908,-2,0,1520,-18,0,0 +2013,6,23,7,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,845,-4,0,1054,-8,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,905,0,,1240,0,1,1 +2013,6,26,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-6,0,1346,-5,0,0 +2013,7,25,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-9,0,812,-5,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2035,48,1,2217,26,1,0 +2013,9,5,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1159,-7,0,1309,-15,0,0 +2013,5,30,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-13,0,1035,-7,0,0 +2013,9,29,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-8,0,2249,-21,0,0 +2013,7,27,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1158,-1,0,1433,-5,0,0 +2013,8,13,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1945,-1,0,2238,12,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2155,-3,0,2300,-11,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,-5,0,1526,-4,0,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,8,0,2157,5,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,34,1,1030,39,1,0 +2013,7,10,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,37,1,2137,39,1,0 +2013,5,26,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,2,0,1500,-3,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,-4,0,1451,-3,0,0 +2013,5,30,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,-3,0,1910,-17,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1455,9,0,1552,1,0,0 +2013,5,15,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-1,0,920,-7,0,0 +2013,10,25,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1955,-5,0,2125,-13,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,-3,0,1959,-7,0,0 +2013,4,22,1,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-2,0,909,-7,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-7,0,955,9,0,0 +2013,9,22,7,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,-4,0,1120,-2,0,0 +2013,4,30,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,755,-4,0,925,-8,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2055,0,0,2220,-17,0,0 +2013,9,18,3,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-10,0,1205,-13,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,9,0,900,17,1,0 +2013,9,20,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1740,0,0,1810,-12,0,0 +2013,5,17,5,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-9,0,500,-13,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-3,0,925,-12,0,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1959,-8,0,2313,-20,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,803,3,0,1041,8,0,0 +2013,8,20,2,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,-2,0,1205,-12,0,0 +2013,4,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2057,-6,0,2225,-9,0,0 +2013,5,13,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,-10,0,954,-28,0,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,0,0,1010,-6,0,0 +2013,7,22,1,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,830,2,0,945,5,0,0 +2013,8,12,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,327,1,1526,336,1,0 +2013,6,20,4,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,625,-1,0,836,4,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1810,6,0,1950,10,0,0 +2013,5,31,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1645,24,1,1800,18,1,0 +2013,5,27,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-9,0,1758,-11,0,0 +2013,7,15,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1025,-3,0,1040,-14,0,0 +2013,8,30,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,610,82,1,735,77,1,0 +2013,10,20,7,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,19,1,1800,17,1,0 +2013,6,7,5,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,0,0,531,-10,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,735,-5,0,940,-12,0,0 +2013,5,12,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1745,55,1,1925,34,1,0 +2013,10,15,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-6,0,837,16,1,0 +2013,5,3,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,-1,0,1124,5,0,0 +2013,9,26,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,609,-10,0,623,-25,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-6,0,1306,1,0,0 +2013,7,1,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,7,0,1853,21,1,0 +2013,6,28,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1940,42,1,2215,45,1,0 +2013,8,3,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-6,0,1850,-26,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2200,-2,0,2305,0,0,0 +2013,10,7,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,639,-3,0,722,33,1,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2045,14,0,2313,-12,0,0 +2013,4,15,1,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,15,1,1042,14,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2145,-4,0,2328,-7,0,0 +2013,9,28,6,OO,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1319,8,0,0 +2013,8,18,7,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-6,0,814,-14,0,0 +2013,7,12,5,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,10,0,1150,4,0,0 +2013,8,16,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,610,1,0,725,-10,0,0 +2013,5,14,2,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1435,-3,0,1615,-18,0,0 +2013,9,12,4,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,141,1,2200,133,1,0 +2013,8,2,5,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1325,-9,0,1546,-9,0,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-1,0,904,-1,0,0 +2013,6,16,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1005,-7,0,1120,-25,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,640,-7,0,1023,-15,0,0 +2013,9,5,4,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,920,-3,0,1055,-5,0,0 +2013,8,29,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1015,-7,0,1120,-15,0,0 +2013,4,15,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,-3,0,1157,0,0,0 +2013,5,16,4,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1241,-1,0,1405,-14,0,0 +2013,7,21,7,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1544,32,1,1929,20,1,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1010,-6,0,1343,-18,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-5,0,1425,-21,0,0 +2013,4,8,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-4,0,1744,-6,0,0 +2013,7,7,7,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-4,0,721,-8,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1815,77,1,1940,62,1,0 +2013,10,8,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-6,0,1905,-2,0,0 +2013,8,13,2,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-1,0,830,-3,0,0 +2013,4,12,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1520,4,0,1645,12,0,0 +2013,5,20,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1928,-4,0,2140,27,1,0 +2013,10,21,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1129,-7,0,1429,-6,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1246,-3,0,1628,-20,0,0 +2013,9,3,2,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1859,28,1,2147,-11,0,0 +2013,6,11,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2114,-11,0,2236,-14,0,0 +2013,4,27,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,-4,0,550,7,0,0 +2013,9,2,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2040,-6,0,2236,-29,0,0 +2013,5,10,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1815,75,1,1955,102,1,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1435,12,0,1611,-2,0,0 +2013,7,15,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1820,-3,0,1915,-21,0,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1331,1,0,1558,-16,0,0 +2013,10,31,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,29,1,1800,29,1,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1230,-3,0,1655,-15,0,0 +2013,8,10,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1434,2,0,1624,-8,0,0 +2013,8,4,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-5,0,1424,-15,0,0 +2013,7,30,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,-8,0,1935,-18,0,0 +2013,6,24,1,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,127,1,2058,97,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1241,0,0,1502,-7,0,0 +2013,10,8,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1958,0,0,2224,-9,0,0 +2013,7,9,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,0,0,2050,-3,0,0 +2013,8,11,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1345,-2,0,1425,1,0,0 +2013,7,3,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-2,0,820,-9,0,0 +2013,4,23,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,748,-1,0,1052,4,0,0 +2013,5,11,6,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,-5,0,910,-9,0,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,15,1,1150,15,1,0 +2013,7,12,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,29,1,2130,30,1,0 +2013,4,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1140,-1,0,1339,4,0,0 +2013,7,17,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,3,0,1455,-4,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1255,12,0,1355,10,0,0 +2013,5,19,7,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-12,0,1215,-12,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,2,0,1736,-33,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-2,0,1407,-13,0,0 +2013,8,30,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,2,0,729,-8,0,0 +2013,4,22,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2015,-3,0,2200,-4,0,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1015,16,1,1154,-4,0,0 +2013,8,16,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1510,-7,0,1625,-23,0,0 +2013,4,8,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2210,-3,0,2335,-2,0,0 +2013,7,28,7,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2025,-3,0,2125,17,1,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,844,-3,0,1017,-3,0,0 +2013,7,20,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,813,-7,0,930,-3,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1706,15,1,2111,-4,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1935,6,0,2040,-2,0,0 +2013,8,17,6,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,750,11,0,1630,7,0,0 +2013,7,30,2,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1753,-5,0,1935,-4,0,0 +2013,4,25,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,710,39,1,905,23,1,0 +2013,6,27,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1205,4,0,1320,-1,0,0 +2013,7,12,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,36,1,1820,18,1,0 +2013,8,22,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1027,-4,0,1303,-9,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-8,0,1804,10,0,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,1104,-13,0,0 +2013,10,31,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,740,2,0,900,-5,0,0 +2013,8,19,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1815,3,0,1910,4,0,0 +2013,5,14,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,830,-2,0,955,-9,0,0 +2013,7,16,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2042,115,1,454,126,1,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,0,,1315,0,1,1 +2013,4,5,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,925,-4,0,935,-13,0,0 +2013,9,18,3,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1845,-10,0,2123,-14,0,0 +2013,8,12,1,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-3,0,845,-9,0,0 +2013,9,10,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,-5,0,1726,-6,0,0 +2013,7,3,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2035,27,1,2335,21,1,0 +2013,6,27,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1210,1,0,1335,-7,0,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,814,43,1,1007,21,1,0 +2013,4,25,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1600,5,0,1920,-11,0,0 +2013,10,12,6,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1225,-1,0,2025,-24,0,0 +2013,7,28,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-5,0,808,-24,0,0 +2013,4,4,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,86,1,1235,84,1,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1630,169,1,1835,177,1,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-2,0,940,-5,0,0 +2013,4,29,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-10,0,1325,-21,0,0 +2013,7,4,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,945,-6,0,1100,-21,0,0 +2013,10,30,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,1,0,1835,12,0,0 +2013,7,28,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1235,0,0,2025,8,0,0 +2013,8,18,7,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,807,-6,0,944,9,0,0 +2013,10,10,4,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-4,0,938,-5,0,0 +2013,9,14,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1234,-9,0,1347,-11,0,0 +2013,8,11,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1025,-4,0,1315,-13,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,0,0,758,-1,0,0 +2013,5,21,2,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1155,-5,0,1430,-13,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1635,25,1,2225,26,1,0 +2013,6,3,1,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1450,-6,0,1641,23,1,0 +2013,10,25,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2205,-3,0,616,-15,0,0 +2013,8,14,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,20,-5,0,732,18,1,0 +2013,9,23,1,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-2,0,853,-9,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,0,0,1117,9,0,0 +2013,6,7,5,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,625,18,1,725,26,1,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,128,1,1355,101,1,0 +2013,5,20,1,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,2,0,1640,-11,0,0 +2013,5,21,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,0,,1835,0,1,1 +2013,4,28,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1730,119,1,2041,128,1,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,-3,0,1725,-11,0,0 +2013,10,24,4,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,0,0,1345,4,0,0 +2013,8,6,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1115,-12,0,1300,-28,0,0 +2013,4,1,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1224,-5,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,15,1,1605,17,1,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,940,10,0,1039,7,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1909,12,0,2128,-1,0,0 +2013,8,12,1,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-9,0,2154,-18,0,0 +2013,6,5,3,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,11,0,2050,11,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-1,0,2238,-15,0,0 +2013,7,16,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1502,96,1,1529,85,1,0 +2013,6,7,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,-5,0,1830,-22,0,0 +2013,7,30,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,13,0,2042,4,0,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,3,0,2245,14,0,0 +2013,10,17,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,640,-7,0,810,-5,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2045,41,1,2330,39,1,0 +2013,7,19,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,10,0,1800,6,0,0 +2013,7,16,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,3,0,1309,1,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1259,18,1,1427,16,1,0 +2013,7,31,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,115,4,0,615,-6,0,0 +2013,8,7,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,43,1,1317,39,1,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,820,14,0,915,6,0,0 +2013,7,12,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-6,0,1252,6,0,0 +2013,6,16,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1342,-7,0,1522,29,1,0 +2013,4,8,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-5,0,1130,6,0,0 +2013,4,9,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1130,-5,0,1950,2,0,0 +2013,10,28,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2045,-8,0,2204,-12,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,-2,0,1225,-5,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1335,90,1,1640,91,1,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-4,0,1151,-9,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-1,0,1153,-2,0,0 +2013,7,30,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1730,-3,0,1940,3,0,0 +2013,5,27,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,735,-8,0,800,-14,0,0 +2013,7,30,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1343,-7,0,1715,-14,0,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1557,-7,0,1733,-24,0,0 +2013,8,15,4,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,620,17,1,1224,16,1,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1005,0,0,1055,7,0,0 +2013,9,29,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,925,0,0,1025,-16,0,0 +2013,10,9,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1200,-10,0,1515,-48,0,0 +2013,10,20,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-2,0,1705,7,0,0 +2013,7,24,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1430,3,0,1558,-2,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,39,1,1235,32,1,0 +2013,5,29,3,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1450,0,0,1800,-15,0,0 +2013,10,23,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,840,-6,0,1108,5,0,0 +2013,6,3,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,625,83,1,855,72,1,0 +2013,7,2,2,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,1,0,1230,8,0,0 +2013,8,23,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,21,1,1846,30,1,0 +2013,8,11,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-3,0,635,-13,0,0 +2013,8,21,3,9E,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,6,0,957,13,0,0 +2013,7,25,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,705,1,0,1433,-21,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,11,0,2259,26,1,0 +2013,4,22,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1114,-1,0,1207,-7,0,0 +2013,8,6,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,2,0,1230,-7,0,0 +2013,8,12,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,51,1,147,44,1,0 +2013,7,29,1,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1750,26,1,1935,5,0,0 +2013,7,27,6,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,830,-2,0,1000,-9,0,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1220,7,0,1748,-17,0,0 +2013,4,19,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1455,156,1,1724,174,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1614,-4,0,1735,27,1,0 +2013,4,1,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1535,-11,0,0 +2013,5,31,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-4,0,1749,-14,0,0 +2013,10,28,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,116,1,1200,101,1,0 +2013,8,24,6,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2300,-6,0,615,-17,0,0 +2013,8,26,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,938,5,0,1114,-1,0,0 +2013,10,24,4,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,2,0,735,-1,0,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1525,2,0,1549,2,0,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1755,-7,0,2041,0,0,0 +2013,7,16,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1625,-1,0,1808,-10,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,29,1,1615,27,1,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1730,136,1,2000,132,1,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,-1,0,1431,-19,0,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,1922,-27,0,0 +2013,7,19,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1314,-8,0,1517,-14,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,714,-2,0,924,23,1,0 +2013,4,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,-6,0,1254,-14,0,0 +2013,9,23,1,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-4,0,809,0,0,0 +2013,7,16,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1440,27,1,1750,4,0,0 +2013,10,3,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,835,-3,0,1031,1,0,0 +2013,6,5,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1749,1,0,0 +2013,10,14,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1314,-1,0,2110,-27,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,4,0,1825,-7,0,0 +2013,4,9,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1232,2,0,2100,19,1,0 +2013,7,27,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-3,0,830,24,1,0 +2013,4,7,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1241,-7,0,1418,-18,0,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,805,44,1,1105,47,1,0 +2013,8,5,1,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1010,-13,0,1321,-3,0,0 +2013,7,12,5,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,955,-4,0,1750,3,0,0 +2013,6,21,5,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,185,1,2119,166,1,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1755,0,0,2000,-7,0,0 +2013,7,11,4,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,41,1,2210,37,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,-3,0,903,-13,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,-4,0,1026,-5,0,0 +2013,10,27,7,9E,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,15,1,2051,8,0,0 +2013,6,13,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2111,16,1,2238,5,0,0 +2013,5,11,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1725,-3,0,1945,-13,0,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1000,-5,0,1526,-8,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1430,-2,0,1630,-15,0,0 +2013,10,25,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2005,5,0,2115,5,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1340,20,1,1445,19,1,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-5,0,922,-2,0,0 +2013,10,21,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,38,1,1627,33,1,0 +2013,10,10,4,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1315,-1,0,1538,-14,0,0 +2013,9,4,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,-4,0,1150,-11,0,0 +2013,8,5,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,8,0,1848,-3,0,0 +2013,4,23,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1615,-11,0,1819,-20,0,0 +2013,6,20,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1435,8,0,1540,12,0,0 +2013,9,5,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,655,-5,0,845,2,0,0 +2013,9,29,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,930,0,0,1050,2,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,840,-2,0,1230,-16,0,0 +2013,10,20,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,913,-2,0,1200,-3,0,0 +2013,6,13,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-2,0,1448,-11,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1435,3,0,1640,-9,0,0 +2013,9,8,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,12,0,1912,6,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,2,0,2201,-7,0,0 +2013,4,2,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,207,1,1705,213,1,0 +2013,10,12,6,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1250,-5,0,1545,-5,0,0 +2013,8,15,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1920,29,1,2016,24,1,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1443,-4,0,1724,1,0,0 +2013,10,23,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,-9,0,1335,-17,0,0 +2013,5,1,3,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,27,1,2154,14,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,924,-12,0,0 +2013,7,31,3,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,3,0,935,10,0,0 +2013,7,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2055,37,1,2225,42,1,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,710,36,1,830,43,1,0 +2013,9,25,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1749,-14,0,2004,-12,0,0 +2013,10,20,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1830,42,1,2105,22,1,0 +2013,4,26,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,850,-6,0,1653,-15,0,0 +2013,10,1,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,-9,0,1916,-8,0,0 +2013,10,21,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,-2,0,2010,-16,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,271,1,2305,255,1,0 +2013,7,27,6,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1835,-5,0,2149,18,1,0 +2013,10,31,4,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1015,0,0,1825,-14,0,0 +2013,5,4,6,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,3,0,1405,-11,0,0 +2013,4,2,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1145,128,1,1354,120,1,0 +2013,8,11,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,801,-7,0,1317,-31,0,0 +2013,6,8,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1058,-4,0,1241,-11,0,0 +2013,4,12,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-2,0,1840,3,0,0 +2013,6,9,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,555,-5,0,700,-15,0,0 +2013,7,20,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-4,0,1024,-9,0,0 +2013,9,3,2,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,17,1,1818,-6,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1810,-4,0,2034,26,1,0 +2013,8,22,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,835,-9,0,1027,-41,0,0 +2013,5,24,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1801,14,0,2007,14,0,0 +2013,8,10,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1452,-8,0,1629,-14,0,0 +2013,7,25,4,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1053,-4,0,1350,-16,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,-1,0,1634,-7,0,0 +2013,8,29,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2158,-5,0,2226,-7,0,0 +2013,8,5,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1200,0,0,1358,9,0,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-3,0,1525,-2,0,0 +2013,6,1,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,0,0,835,-10,0,0 +2013,5,3,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,3,0,1944,2,0,0 +2013,9,28,6,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1015,-8,0,1243,-10,0,0 +2013,7,15,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,-5,0,1035,-22,0,0 +2013,6,9,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-9,0,754,-3,0,0 +2013,5,16,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1445,14,0,1610,15,1,0 +2013,7,19,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,4,0,2020,27,1,0 +2013,8,4,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-3,0,1654,-21,0,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1618,0,,1801,0,1,1 +2013,8,31,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,930,-5,0,0 +2013,10,26,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,87,1,828,69,1,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1730,13,0,2010,-11,0,0 +2013,8,23,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1120,-3,0,1302,6,0,0 +2013,9,2,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-1,0,1545,-1,0,0 +2013,8,10,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-1,0,820,-9,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,950,87,1,1715,131,1,0 +2013,6,9,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,-7,0,852,-17,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1100,-10,0,1353,-26,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1201,0,0,1355,-27,0,0 +2013,7,24,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1810,-5,0,1915,-7,0,0 +2013,9,19,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,827,0,0,954,8,0,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1600,33,1,1715,31,1,0 +2013,5,22,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1030,-5,0,1205,21,1,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1315,5,0,1510,-5,0,0 +2013,9,14,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,702,2,0,1021,3,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,804,0,0,939,-7,0,0 +2013,10,19,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,740,-3,0,1021,-14,0,0 +2013,6,13,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,27,1,1550,79,1,0 +2013,6,1,6,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,0,0,1949,3,0,0 +2013,6,30,7,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,8,0,1400,-6,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,851,-1,0,1659,-2,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1310,33,1,1504,92,1,0 +2013,10,4,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,16,1,1150,19,1,0 +2013,6,19,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,94,1,827,87,1,0 +2013,5,3,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,13,0,1916,8,0,0 +2013,6,16,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1135,-6,0,1451,-19,0,0 +2013,7,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-7,0,749,-11,0,0 +2013,6,29,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1215,-3,0,1430,-11,0,0 +2013,4,30,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2231,-5,0,2359,-20,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,0,0,812,-4,0,0 +2013,8,18,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,0,0,1602,-9,0,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,33,1,1740,25,1,0 +2013,9,6,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,625,-2,0,1214,-4,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1530,1,0,1650,1,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1025,24,1,1545,0,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-2,0,2300,-31,0,0 +2013,6,13,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1325,28,1,1633,-1,0,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,-3,0,122,-16,0,0 +2013,9,15,7,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,640,0,0,945,6,0,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1755,-1,0,2355,8,0,0 +2013,4,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,-2,0,1105,14,0,0 +2013,8,1,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,900,-4,0,1155,-19,0,0 +2013,9,7,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1735,0,,1900,0,1,1 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-1,0,1425,-18,0,0 +2013,4,15,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1235,0,0,1325,-6,0,0 +2013,8,20,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1145,-6,0,1357,-17,0,0 +2013,6,10,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,755,-18,0,0 +2013,7,24,3,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,8,0,1340,8,0,0 +2013,10,8,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1018,-10,0,1159,-9,0,0 +2013,7,7,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-6,0,1310,-9,0,0 +2013,6,17,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,850,-4,0,1030,-14,0,0 +2013,4,21,7,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1205,14,0,1458,6,0,0 +2013,6,24,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1245,185,1,1820,158,1,0 +2013,9,22,7,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,4,0,2314,-13,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-5,0,1344,-25,0,0 +2013,9,6,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,-2,0,2000,0,0,0 +2013,7,23,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,-5,0,10,-2,0,0 +2013,4,3,3,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,1400,-2,0,1550,-21,0,0 +2013,5,12,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1347,-5,0,1624,-17,0,0 +2013,4,7,7,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-8,0,802,-25,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1400,0,0,1955,4,0,0 +2013,4,12,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,727,34,1,909,24,1,0 +2013,9,3,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1210,53,1,1520,55,1,0 +2013,5,12,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-11,0,1434,-10,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,755,-1,0,1025,-4,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1230,-3,0,1510,-26,0,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1322,0,0,2157,-8,0,0 +2013,9,5,4,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-10,0,1906,-5,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2025,-2,0,2130,-1,0,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1525,12,0,1733,109,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,-3,0,1005,-18,0,0 +2013,5,3,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-9,0,1005,-11,0,0 +2013,4,11,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-6,0,1225,-3,0,0 +2013,4,22,1,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,715,-6,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,11,0,1625,12,0,0 +2013,4,30,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,935,0,0,1035,-1,0,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1403,107,1,1547,109,1,0 +2013,5,12,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-2,0,1300,-7,0,0 +2013,10,6,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1940,9,0,1955,-1,0,0 +2013,5,20,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,705,4,0,808,-3,0,0 +2013,4,28,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-7,0,1130,0,0,0 +2013,6,10,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1045,-1,0,1650,-17,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1415,15,1,2045,11,0,0 +2013,4,13,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1345,12,0,1550,-7,0,0 +2013,8,21,3,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1803,2,0,1850,-1,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,-5,0,1050,-1,0,0 +2013,10,22,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,600,-2,0,725,-10,0,0 +2013,6,13,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2015,27,1,2020,19,1,0 +2013,7,17,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,2,0,1750,0,0,0 +2013,4,3,3,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-9,0,1818,-29,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1720,-3,0,1832,-2,0,0 +2013,8,24,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,615,-9,0,749,-5,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-2,0,1225,1,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,805,3,0,1155,-20,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1339,-2,0,1525,-13,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1630,-4,0,1855,0,0,0 +2013,5,9,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,605,-8,0,710,-13,0,0 +2013,8,1,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,605,2,0,925,-12,0,0 +2013,4,7,7,9E,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-3,0,1806,-11,0,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2242,16,1,32,3,0,0 +2013,10,25,5,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1310,7,0,1525,20,1,0 +2013,5,9,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1640,107,1,1730,112,1,0 +2013,8,4,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2050,189,1,2205,191,1,0 +2013,6,27,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-8,0,1442,-2,0,0 +2013,8,3,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,5,0,1337,2,0,0 +2013,6,18,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,14,0,1533,28,1,0 +2013,10,17,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1315,31,1,1405,29,1,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1252,-3,0,1643,-8,0,0 +2013,5,16,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,700,3,0,950,3,0,0 +2013,10,22,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-5,0,913,6,0,0 +2013,7,17,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1137,-1,0,1343,-10,0,0 +2013,5,30,4,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2120,70,1,2340,65,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1950,-2,0,2142,-12,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1930,8,0,2130,5,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1842,-3,0,2022,-16,0,0 +2013,4,20,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,28,1,1205,19,1,0 +2013,4,10,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-4,0,1824,-25,0,0 +2013,10,21,1,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-7,0,1523,-10,0,0 +2013,8,13,2,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2310,77,1,730,57,1,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,5,0,1804,5,0,0 +2013,4,2,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1135,34,1,1300,25,1,0 +2013,10,15,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,740,6,0,910,-3,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,850,-8,0,1108,-31,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1310,110,1,1735,119,1,0 +2013,10,18,5,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2108,-10,0,2328,2,0,0 +2013,5,5,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2236,-5,0,715,-42,0,0 +2013,4,6,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,7,0,1226,3,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,749,7,0,1003,4,0,0 +2013,7,19,5,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,89,1,2055,79,1,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1756,100,1,1924,116,1,0 +2013,6,21,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-5,0,1554,-29,0,0 +2013,7,6,6,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1107,-4,0,1256,-12,0,0 +2013,5,3,5,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1750,-6,0,2044,-7,0,0 +2013,7,12,5,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,905,6,0,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1425,-1,0,1835,-1,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1738,-2,0,1956,-2,0,0 +2013,5,22,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1610,-2,0,1800,26,1,0 +2013,6,20,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1121,-1,0,1221,10,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-4,0,2300,-7,0,0 +2013,7,6,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,610,4,0,840,2,0,0 +2013,7,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,12,0,835,16,1,0 +2013,4,21,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,35,1,1855,26,1,0 +2013,9,19,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2005,3,0,2125,1,0,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2116,-8,0,2324,-20,0,0 +2013,10,23,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,21,1,1709,30,1,0 +2013,4,8,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1750,-3,0,1900,29,1,0 +2013,10,23,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1210,-1,0,1506,-25,0,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2040,60,1,2150,52,1,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,8,0,1520,11,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,945,-3,0,1115,-14,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1530,-4,0,1652,-14,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2200,8,0,2309,10,0,0 +2013,10,14,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,105,1,733,134,1,0 +2013,9,8,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1440,-6,0,1833,-20,0,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-8,0,758,-14,0,0 +2013,4,5,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1310,23,1,1446,18,1,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1505,21,1,1640,18,1,0 +2013,4,28,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1835,15,1,2138,3,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,0,0,2100,-7,0,0 +2013,10,4,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-2,0,1600,-2,0,0 +2013,6,2,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,827,0,0,1343,0,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,5,0,2110,-14,0,0 +2013,7,30,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-3,0,1921,-7,0,0 +2013,8,23,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1615,-1,0,1759,3,0,0 +2013,10,21,1,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-11,0,954,-22,0,0 +2013,10,22,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1305,0,0,1601,-8,0,0 +2013,5,11,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,750,-4,0,1030,-8,0,0 +2013,4,22,1,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,835,-5,0,941,-11,0,0 +2013,9,1,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2327,0,0,513,-11,0,0 +2013,8,15,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,644,-7,0,809,-9,0,0 +2013,6,18,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,530,-2,0,805,-4,0,0 +2013,9,17,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1515,21,1,1640,19,1,0 +2013,9,13,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1725,-1,0,1910,-18,0,0 +2013,6,13,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1455,0,0,1752,-15,0,0 +2013,6,28,5,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1745,0,,1859,0,1,1 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1245,8,0,1545,8,0,0 +2013,9,5,4,YV,14100,Philadelphia International,Philadelphia,PA,14524,Richmond International,Richmond,VA,943,-13,0,1044,-18,0,0 +2013,8,5,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1510,-8,0,1815,-8,0,0 +2013,4,27,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-5,0,1844,-12,0,0 +2013,8,25,7,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,16,1,2020,5,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2155,232,1,2315,230,1,0 +2013,5,15,3,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,-2,0,1932,-29,0,0 +2013,10,23,3,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-8,0,1508,-16,0,0 +2013,10,1,2,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,-7,0,1946,-45,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,900,-4,0,1030,-3,0,0 +2013,4,9,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1551,-6,0,1839,2,0,0 +2013,6,13,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-9,0,1212,-11,0,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,5,0,1804,3,0,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,847,53,1,1109,51,1,0 +2013,7,25,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,8,0,1940,-1,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1740,10,0,2100,6,0,0 +2013,7,9,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,0,0,1825,-5,0,0 +2013,4,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,4,0,750,1,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1420,13,0,1510,1,0,0 +2013,6,26,3,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,-3,0,1940,9,0,0 +2013,9,10,2,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1905,0,0,2027,-6,0,0 +2013,7,14,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,6,0,2115,-10,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-6,0,1025,-27,0,0 +2013,10,22,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1357,-10,0,1538,-18,0,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1255,-6,0,1405,-2,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-4,0,1900,-11,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,-3,0,1338,-19,0,0 +2013,4,16,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,630,-8,0,1040,-17,0,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2004,-4,0,2114,-20,0,0 +2013,5,18,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1115,-4,0,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1700,7,0,1950,24,1,0 +2013,5,3,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-2,0,1555,-6,0,0 +2013,7,20,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,656,3,0,817,-5,0,0 +2013,6,17,1,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1730,48,1,2055,26,1,0 +2013,4,18,4,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,800,-1,0,1140,-6,0,0 +2013,5,23,4,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,815,-1,0,1015,-8,0,0 +2013,6,22,6,OO,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,907,-3,0,1050,1,0,0 +2013,4,19,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2230,5,0,607,-8,0,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1210,-3,0,1425,11,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1955,35,1,2144,25,1,0 +2013,4,22,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1315,-8,0,1531,-28,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,1,0,1655,2,0,0 +2013,7,6,6,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-1,0,1538,6,0,0 +2013,5,6,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-2,0,1826,-4,0,0 +2013,10,3,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,9,0,1540,-2,0,0 +2013,8,2,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,4,0,1800,-2,0,0 +2013,7,19,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,0,0,1329,-6,0,0 +2013,9,2,1,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1440,7,0,1650,4,0,0 +2013,6,20,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1741,14,0,1934,31,1,0 +2013,4,19,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-6,0,1500,-8,0,0 +2013,10,15,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1335,44,1,1450,42,1,0 +2013,8,14,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1332,-9,0,2143,-15,0,0 +2013,10,24,4,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2130,-8,0,5,-6,0,0 +2013,10,23,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1254,-10,0,1441,-15,0,0 +2013,7,16,2,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,810,-5,0,950,-4,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1905,-3,0,2116,-14,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1010,6,0,1147,9,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1410,78,1,1500,78,1,0 +2013,4,18,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1400,451,1,1610,453,1,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1605,0,0,1930,-10,0,0 +2013,10,11,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1211,-5,0,1341,-15,0,0 +2013,9,25,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,68,1,2126,73,1,0 +2013,5,22,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1457,3,0,1837,-2,0,0 +2013,10,25,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1416,1,0,1700,-20,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1846,0,0,2144,-13,0,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,2,0,2225,-18,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1840,0,0,2110,-5,0,0 +2013,5,28,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1059,144,1,1340,118,1,0 +2013,6,29,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,-3,0,1025,-25,0,0 +2013,7,6,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-10,0,1440,-13,0,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1315,7,0,1420,6,0,0 +2013,5,31,5,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1110,0,0,1345,-12,0,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1515,91,1,1835,68,1,0 +2013,7,12,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1345,-1,0,1425,-11,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,615,-4,0,745,-19,0,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,1,0,2125,-7,0,0 +2013,4,12,5,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,-5,0,1615,-14,0,0 +2013,10,22,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1245,-9,0,1458,-18,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1010,-2,0,1230,-10,0,0 +2013,9,23,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2140,-3,0,555,-15,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1830,-3,0,2030,-16,0,0 +2013,5,25,6,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,607,7,0,926,-6,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1755,-1,0,1900,-7,0,0 +2013,6,3,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1309,21,1,1819,2,0,0 +2013,10,3,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1915,-4,0,2058,-13,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,18,1,2250,3,0,0 +2013,10,15,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,6,0,910,9,0,0 +2013,8,2,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1056,-3,0,1325,-5,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1404,-4,0,1519,-6,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,29,1,2110,26,1,0 +2013,8,1,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1045,1,0,1356,1,0,0 +2013,9,16,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,1,0,1305,-6,0,0 +2013,5,26,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,700,0,0,720,-17,0,0 +2013,9,22,7,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1329,5,0,1655,13,0,0 +2013,4,7,7,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,-7,0,1614,-17,0,0 +2013,4,19,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,640,-5,0,753,15,1,0 +2013,9,15,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-9,0,1912,-20,0,0 +2013,5,19,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,930,0,0,1045,-2,0,0 +2013,7,6,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,959,0,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1600,-1,0,1738,-11,0,0 +2013,7,6,6,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,11,0,1608,25,1,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1735,14,0,2315,1,0,0 +2013,8,26,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1545,44,1,1915,18,1,0 +2013,8,15,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1415,-8,0,1700,-31,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1445,-5,0,1718,-18,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1635,37,1,1755,26,1,0 +2013,4,15,1,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1815,1,0,2020,-5,0,0 +2013,8,21,3,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1725,38,1,1940,57,1,0 +2013,6,25,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,213,1,1755,204,1,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,805,2,0,845,-8,0,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,12,0,1550,4,0,0 +2013,7,1,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1200,0,0,1440,2,0,0 +2013,8,13,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-7,0,1014,-7,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1230,-2,0,1425,-2,0,0 +2013,5,3,5,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,31,1,1921,29,1,0 +2013,6,3,1,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1756,57,1,1916,54,1,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1550,258,1,2100,258,1,0 +2013,8,26,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1135,4,0,1405,4,0,0 +2013,9,5,4,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1005,-5,0,1455,-13,0,0 +2013,8,25,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1818,0,0,2011,-15,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,23,1,50,36,1,0 +2013,5,15,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1949,36,1,2324,4,0,0 +2013,4,22,1,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1643,2,0,1824,11,0,0 +2013,5,20,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-3,0,1832,-12,0,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-3,0,1546,22,1,0 +2013,5,5,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1020,1,0,1140,0,0,0 +2013,9,25,3,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-1,0,1129,7,0,0 +2013,10,11,5,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2305,-1,0,640,10,0,0 +2013,8,23,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-2,0,905,7,0,0 +2013,5,23,4,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,850,-6,0,1110,-9,0,0 +2013,9,27,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,645,-3,0,740,-12,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,14,0,1920,27,1,0 +2013,8,28,3,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,13,0,1405,45,1,0 +2013,4,20,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-9,0,1830,-23,0,0 +2013,9,17,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,907,108,1,1100,118,1,0 +2013,9,26,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1111,1,0,1353,-11,0,0 +2013,10,4,5,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1325,40,1,1545,44,1,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1718,-3,0,1841,-24,0,0 +2013,4,7,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,95,1,1820,86,1,0 +2013,6,1,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,2,0,1540,-10,0,0 +2013,5,22,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,12,0,801,3,0,0 +2013,6,29,6,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,-10,0,501,-4,0,0 +2013,7,3,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,109,1,1533,114,1,0 +2013,7,17,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,23,1,1555,36,1,0 +2013,8,22,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,-1,0,2035,-15,0,0 +2013,9,3,2,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,34,1,1505,30,1,0 +2013,8,10,6,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,530,-8,0,633,-18,0,0 +2013,8,24,6,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1348,71,1,1525,68,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,0,2250,-9,0,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1435,7,0,1750,5,0,0 +2013,5,5,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-7,0,1011,-25,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,818,-3,0,939,-15,0,0 +2013,4,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1525,-3,0,1710,-8,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1255,32,1,1610,32,1,0 +2013,7,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,835,9,0,1215,14,0,0 +2013,10,17,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1240,-5,0,1800,0,1,1 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,530,-4,0,820,-13,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-7,0,1343,7,0,0 +2013,7,8,1,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,20,1,2050,14,0,0 +2013,8,3,6,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,5,0,1655,5,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-4,0,1339,-7,0,0 +2013,10,17,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1045,6,0,1245,1,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1440,3,0,1805,14,0,0 +2013,10,6,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1734,-10,0,1923,-10,0,0 +2013,7,22,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,847,21,1,1015,16,1,0 +2013,4,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1305,-3,0,1523,-5,0,0 +2013,7,15,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1725,27,1,1840,4,0,0 +2013,9,23,1,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,827,-5,0,932,-7,0,0 +2013,6,4,2,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,626,-7,0,850,-14,0,0 +2013,9,8,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,605,0,0,700,-9,0,0 +2013,8,30,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-4,0,1015,-18,0,0 +2013,5,28,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-2,0,1639,21,1,0 +2013,4,8,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,-6,0,2050,-18,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,735,-3,0,848,-6,0,0 +2013,9,20,5,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1755,19,1,2005,16,1,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2130,96,1,2350,92,1,0 +2013,8,29,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,-6,0,955,-26,0,0 +2013,10,24,4,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1650,6,0,1939,-13,0,0 +2013,5,13,1,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1655,-6,0,1800,-4,0,0 +2013,10,31,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2105,0,0,2303,-3,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,41,1,1708,36,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1520,62,1,1820,54,1,0 +2013,7,31,3,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1550,-14,0,1804,-29,0,0 +2013,8,6,2,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,48,1,1345,38,1,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1510,12,0,1615,20,1,0 +2013,4,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1620,30,1,1725,19,1,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,831,-1,0,0 +2013,10,31,4,EV,12953,LaGuardia,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,845,-4,0,1030,-20,0,0 +2013,6,4,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-8,0,2036,4,0,0 +2013,6,1,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-7,0,754,8,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1645,5,0,2120,-5,0,0 +2013,6,20,4,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,8,0,1749,-18,0,0 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,2000,51,1,2310,50,1,0 +2013,8,11,7,FL,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1125,-4,0,1235,-8,0,0 +2013,7,16,2,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,710,-5,0,906,-12,0,0 +2013,8,25,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1900,-5,0,2135,0,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1840,-1,0,1958,-30,0,0 +2013,6,28,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,8,0,1725,8,0,0 +2013,5,8,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1440,-4,0,2220,-11,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,644,5,0,915,-14,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1230,13,0,1555,17,1,0 +2013,6,27,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1005,4,0,1300,2,0,0 +2013,10,17,4,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-5,0,900,-3,0,0 +2013,9,17,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1344,-6,0,1556,-5,0,0 +2013,4,25,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1419,47,1,1609,42,1,0 +2013,4,22,1,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1435,0,0,1525,-5,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,10,0,1830,3,0,0 +2013,6,16,7,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1350,-1,0,1644,-10,0,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1805,34,1,1920,25,1,0 +2013,7,4,4,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1215,0,0,1512,0,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2025,59,1,2155,50,1,0 +2013,5,22,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-5,0,810,-22,0,0 +2013,5,4,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2230,4,0,644,10,0,0 +2013,7,9,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1357,87,1,1429,105,1,0 +2013,9,5,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-3,0,1625,-6,0,0 +2013,7,2,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,58,1,609,63,1,0 +2013,6,23,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1802,32,1,2017,26,1,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,900,-4,0,1100,-19,0,0 +2013,7,15,1,EV,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-8,0,1004,-3,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2210,33,1,2315,38,1,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1755,130,1,2040,125,1,0 +2013,10,20,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-5,0,1930,-17,0,0 +2013,4,13,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1730,-2,0,1910,-17,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1902,2,0,2030,-8,0,0 +2013,10,31,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,2059,-24,0,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1455,22,1,1811,13,0,0 +2013,8,4,7,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-3,0,2042,-6,0,0 +2013,8,1,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,829,-7,0,1014,1,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,-1,0,1340,-24,0,0 +2013,9,18,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,935,-6,0,1130,-16,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1733,-7,0,1951,-23,0,0 +2013,4,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,940,9,0,1100,10,0,0 +2013,6,3,1,OO,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1430,-2,0,1610,-10,0,0 +2013,4,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1059,-5,0,1117,-18,0,0 +2013,7,21,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1116,1,0,1151,-1,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,700,-5,0,805,-12,0,0 +2013,9,22,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-2,0,1223,8,0,0 +2013,5,6,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,2,0,1905,10,0,0 +2013,9,25,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,-6,0,725,-12,0,0 +2013,9,18,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-7,0,905,2,0,0 +2013,4,7,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1345,-7,0,1608,-15,0,0 +2013,7,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1755,116,1,2000,119,1,0 +2013,5,3,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1617,21,1,1805,24,1,0 +2013,10,21,1,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-1,0,939,-11,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2300,39,1,2301,34,1,0 +2013,9,2,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1107,-4,0,1155,-14,0,0 +2013,10,16,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1925,8,0,2015,0,0,0 +2013,8,27,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,-1,0,147,-3,0,0 +2013,10,28,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,802,-2,0,1331,-23,0,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,641,21,1,915,10,0,0 +2013,10,19,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1605,5,0,1705,9,0,0 +2013,5,22,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1300,23,1,1525,11,0,0 +2013,9,5,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,906,-7,0,1034,3,0,0 +2013,8,15,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,2010,-8,0,2105,4,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,755,0,0,1408,-20,0,0 +2013,5,30,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2012,-3,0,2350,-5,0,0 +2013,6,14,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-1,0,1242,-12,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,10,0,1945,-1,0,0 +2013,9,13,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1125,-10,0,1230,-6,0,0 +2013,4,18,4,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,43,1,2025,19,1,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1535,14,0,1800,17,1,0 +2013,7,27,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1630,25,1,1750,14,0,0 +2013,7,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1802,52,1,2017,47,1,0 +2013,10,24,4,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1019,-5,0,1144,-16,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,855,-5,0,1150,-11,0,0 +2013,10,8,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1940,-2,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1400,71,1,1505,59,1,0 +2013,9,6,5,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-5,0,1955,-3,0,0 +2013,5,15,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1415,-6,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1606,47,1,2358,24,1,0 +2013,8,5,1,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2105,4,0,2355,1,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-7,0,1738,-26,0,0 +2013,10,6,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,-5,0,1927,-18,0,0 +2013,6,12,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-9,0,2132,-12,0,0 +2013,6,3,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-5,0,627,-14,0,0 +2013,7,30,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,8,0,1025,4,0,0 +2013,4,24,3,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,620,-1,0,907,-22,0,0 +2013,9,28,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1045,-4,0,1202,-11,0,0 +2013,8,28,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1830,0,,2030,0,1,1 +2013,5,14,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1040,8,0,1346,4,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,8,0,954,36,1,0 +2013,9,27,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,855,2,0,1020,-2,0,0 +2013,5,17,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1442,-5,0,1809,4,0,0 +2013,4,18,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,64,1,620,81,1,0 +2013,9,23,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,5,0,1304,4,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-6,0,1347,-9,0,0 +2013,4,21,7,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,700,-2,0,1450,-7,0,0 +2013,7,9,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,3,0,900,-4,0,0 +2013,9,11,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1010,-3,0,1140,-8,0,0 +2013,6,28,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1641,6,0,1815,-2,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1020,1,0,1222,5,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-5,0,1911,-17,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1032,-4,0,1109,-10,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-4,0,1229,-6,0,0 +2013,7,16,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1231,-2,0,1505,-33,0,0 +2013,10,3,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,85,1,1930,76,1,0 +2013,9,30,1,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,805,-8,0,1031,-12,0,0 +2013,8,27,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-7,0,1432,-11,0,0 +2013,9,15,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,1,0,1509,-6,0,0 +2013,8,22,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,42,1,1755,49,1,0 +2013,9,10,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1544,-12,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,730,1,0,830,-4,0,0 +2013,6,3,1,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1055,1,0,1850,-11,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2030,2,0,2135,-1,0,0 +2013,9,9,1,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-5,0,1920,-18,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1130,46,1,1435,36,1,0 +2013,8,14,3,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,750,-1,0,915,-7,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,48,1,2217,26,1,0 +2013,5,22,3,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1405,-4,0,1647,-9,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1235,-2,0,1510,-20,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1005,2,0,1250,-2,0,0 +2013,10,11,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1516,-11,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,815,4,0,1036,-15,0,0 +2013,9,11,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1045,-7,0,1310,-11,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-1,0,224,-8,0,0 +2013,6,12,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-5,0,1520,-1,0,0 +2013,6,28,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,69,1,1605,64,1,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1619,2,0,1919,-16,0,0 +2013,4,2,2,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1900,-5,0,2110,-11,0,0 +2013,9,13,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,-3,0,1611,-6,0,0 +2013,9,7,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,724,-4,0,1018,3,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1035,-1,0,1252,-5,0,0 +2013,5,19,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1717,35,1,1959,32,1,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1602,-4,0,1713,9,0,0 +2013,5,6,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,137,1,1830,123,1,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,1,0,810,-14,0,0 +2013,10,25,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1455,57,1,1759,67,1,0 +2013,4,28,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,-5,0,1345,-15,0,0 +2013,10,22,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,0,0,1156,-5,0,0 +2013,4,22,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,825,-5,0,1107,-23,0,0 +2013,6,14,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-1,0,1655,-4,0,0 +2013,6,6,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,0,0,2122,16,1,0 +2013,10,23,3,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1531,-7,0,1642,-1,0,0 +2013,10,29,2,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,659,-11,0,906,6,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2150,50,1,2335,46,1,0 +2013,6,21,5,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1742,-5,0,1919,-17,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1910,47,1,2125,45,1,0 +2013,7,23,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1543,47,1,1909,66,1,0 +2013,6,16,7,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-7,0,1125,3,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1915,-1,0,2035,1,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,750,1,0,1015,-6,0,0 +2013,5,20,1,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,1,0,915,-16,0,0 +2013,10,26,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2245,-1,0,650,-17,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1450,-1,0,2020,12,0,0 +2013,10,1,2,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1640,9,0,1834,0,0,0 +2013,5,30,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2020,-3,0,2150,2,0,0 +2013,9,13,5,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-3,0,2145,-8,0,0 +2013,6,13,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,0,,1310,0,1,1 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,740,1,0,1010,-14,0,0 +2013,6,4,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-7,0,1225,-29,0,0 +2013,4,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,630,-2,0,725,-8,0,0 +2013,4,18,4,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2011,102,1,2219,106,1,0 +2013,6,28,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,915,-5,0,1039,-19,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2135,18,1,35,18,1,0 +2013,5,3,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-5,0,1903,1,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1945,-4,0,2247,-12,0,0 +2013,9,22,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,7,0,1949,-1,0,0 +2013,8,11,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1459,-5,0,1547,5,0,0 +2013,5,1,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1645,2,0,1800,-8,0,0 +2013,5,19,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,705,-9,0,931,-44,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,941,4,0,1135,12,0,0 +2013,7,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,-3,0,2200,-14,0,0 +2013,8,29,4,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1035,34,1,1607,38,1,0 +2013,9,5,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,0,,800,0,1,1 +2013,6,25,2,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1550,-1,0,1715,-17,0,0 +2013,9,29,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1750,16,1,1915,7,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,850,5,0,1010,-18,0,0 +2013,6,21,5,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,4,0,1249,-6,0,0 +2013,6,7,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,0,,345,0,1,1 +2013,7,4,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-9,0,1209,-22,0,0 +2013,5,30,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1915,119,1,2035,110,1,0 +2013,8,1,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,98,1,2215,76,1,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,-1,0,2038,1,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1350,45,1,1910,31,1,0 +2013,5,29,3,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1415,-7,0,1546,-18,0,0 +2013,8,14,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,0,,2015,0,1,1 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,735,-3,0,1155,-2,0,0 +2013,8,4,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-4,0,2056,2,0,0 +2013,6,2,7,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1106,-6,0,1251,-6,0,0 +2013,8,18,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1525,30,1,1713,49,1,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2235,77,1,120,75,1,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,810,7,0,1350,4,0,0 +2013,9,6,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-7,0,1016,-13,0,0 +2013,7,30,2,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1821,0,0,2219,-7,0,0 +2013,9,29,7,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1458,-4,0,1620,-9,0,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-1,0,1315,2,0,0 +2013,9,20,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,800,5,0,915,-2,0,0 +2013,7,22,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,6,0,1341,0,0,0 +2013,8,11,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,20,1,1910,7,0,0 +2013,8,13,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,8,0,1006,4,0,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,854,65,1,1224,63,1,0 +2013,6,14,5,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,390,1,1810,375,1,0 +2013,7,25,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-5,0,925,-8,0,0 +2013,9,12,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,17,1,1945,8,0,0 +2013,5,13,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1457,-6,0,1837,0,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2100,29,1,2220,33,1,0 +2013,10,18,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,-3,0,1453,-9,0,0 +2013,6,30,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,300,3,0,658,-5,0,0 +2013,7,18,4,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,62,1,604,54,1,0 +2013,9,26,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1007,-5,0,1155,-13,0,0 +2013,9,4,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,755,-7,0,930,-9,0,0 +2013,7,14,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1914,-3,0,2030,-6,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1205,-4,0,1325,-14,0,0 +2013,4,28,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,11,0,2350,2,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1315,0,0,1840,4,0,0 +2013,4,5,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1247,-6,0,1850,-13,0,0 +2013,7,16,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,5,0,1750,-1,0,0 +2013,7,28,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,945,-2,0,1105,-4,0,0 +2013,6,7,5,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,650,2,0,935,2,0,0 +2013,5,8,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,925,0,0,1105,-5,0,0 +2013,10,17,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1751,34,1,1942,33,1,0 +2013,10,14,1,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,1,0,1551,2,0,0 +2013,10,3,4,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,703,-2,0,945,-4,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,2359,-7,0,453,-6,0,0 +2013,10,28,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-5,0,755,-4,0,0 +2013,5,16,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1145,-1,0,1350,-5,0,0 +2013,9,14,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,-6,0,1700,-19,0,0 +2013,8,9,5,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1305,7,0,1455,2,0,0 +2013,10,10,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-8,0,1012,0,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1002,59,1,1221,72,1,0 +2013,10,29,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1540,-4,0,1705,-14,0,0 +2013,6,30,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-8,0,1337,-8,0,0 +2013,9,10,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1245,4,0,1621,18,1,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,17,1,1904,17,1,0 +2013,4,3,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-7,0,1925,-9,0,0 +2013,9,13,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2030,-7,0,2147,-10,0,0 +2013,5,29,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,715,0,0,955,-1,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1810,4,0,2200,0,0,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,0,,1125,0,1,1 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,845,1,0,950,-2,0,0 +2013,10,30,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1130,0,,1230,0,1,1 +2013,6,15,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,919,5,0,1132,2,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,19,1,2110,12,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1025,1,0,1400,-10,0,0 +2013,5,20,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,0,0,2135,7,0,0 +2013,8,12,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1909,3,0,2200,-30,0,0 +2013,5,22,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1630,92,1,1826,93,1,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,19,1,1034,30,1,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1118,-5,0,1146,-20,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,845,61,1,1056,45,1,0 +2013,7,16,2,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1220,-3,0,1320,-8,0,0 +2013,9,11,3,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,635,-4,0,745,-18,0,0 +2013,5,26,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1705,3,0,1805,-1,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1814,6,0,1951,0,0,0 +2013,6,4,2,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1708,-3,0,1800,-17,0,0 +2013,10,12,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1035,-4,0,1215,-4,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2247,2,0,443,-18,0,0 +2013,7,5,5,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1130,191,1,1400,184,1,0 +2013,6,1,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1410,-6,0,1500,-7,0,0 +2013,5,26,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1215,-2,0,1240,-3,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,650,-5,0,920,-10,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,814,16,1,958,0,0,0 +2013,10,1,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-2,0,1831,-12,0,0 +2013,5,12,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,820,0,0,1025,-1,0,0 +2013,5,16,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-1,0,1304,-14,0,0 +2013,6,25,2,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,810,0,0,1055,13,0,0 +2013,7,30,2,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,2,0,1535,4,0,0 +2013,5,29,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,951,79,1,1105,73,1,0 +2013,6,13,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,940,11,0,1139,7,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,745,-5,0,852,3,0,0 +2013,5,17,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1100,-1,0,1307,2,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,4,0,936,14,0,0 +2013,8,4,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,0,0,1201,-21,0,0 +2013,8,16,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,939,49,1,1444,30,1,0 +2013,4,6,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1430,-7,0,1554,-11,0,0 +2013,8,26,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,940,-3,0,1140,-31,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1116,146,1,1451,158,1,0 +2013,10,5,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,844,-3,0,1123,-1,0,0 +2013,9,27,5,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1315,-3,0,1355,-17,0,0 +2013,7,4,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1600,23,1,1722,15,1,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,1,0,1845,-24,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-3,0,2302,-6,0,0 +2013,9,5,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-8,0,1434,-9,0,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,740,-3,0,900,-6,0,0 +2013,7,17,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1904,106,1,2013,135,1,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-5,0,922,-5,0,0 +2013,7,9,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-1,0,500,-5,0,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1514,-1,0,1858,-7,0,0 +2013,9,20,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1650,2,0,1743,12,0,0 +2013,10,28,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,37,1,1918,21,1,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,35,1,2230,32,1,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1319,-2,0,1635,-11,0,0 +2013,8,13,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,11,0,642,9,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1241,11,0,1502,-4,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,145,1,824,137,1,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,835,2,0,1110,-11,0,0 +2013,6,5,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,845,38,1,1044,31,1,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,955,6,0,1115,10,0,0 +2013,10,17,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-13,0,1327,-22,0,0 +2013,10,20,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,2,0,712,-6,0,0 +2013,5,4,6,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,755,-3,0,1032,-6,0,0 +2013,10,20,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,12,0,1944,-3,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-8,0,1238,-2,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,845,-3,0,955,-13,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1325,30,1,1850,27,1,0 +2013,4,13,6,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1155,7,0,1400,-4,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-1,0,840,-2,0,0 +2013,9,26,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1455,-8,0,1640,0,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1645,0,0,1820,0,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-6,0,2217,-8,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1200,3,0,1511,-26,0,0 +2013,9,10,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1055,13,0,1645,14,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,825,8,0,1100,18,1,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,97,1,1645,74,1,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,1112,-6,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,815,-4,0,1027,-6,0,0 +2013,9,19,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,1,0,1242,-3,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,740,-8,0,920,-14,0,0 +2013,9,11,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-3,0,1655,-12,0,0 +2013,9,5,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1415,29,1,1505,26,1,0 +2013,7,4,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1220,-3,0,1315,-4,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,46,1,1042,91,1,0 +2013,10,16,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,600,-6,0,734,-12,0,0 +2013,6,27,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,3,0,1545,8,0,0 +2013,6,19,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2000,14,0,2158,7,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1920,14,0,2045,9,0,0 +2013,6,15,6,UA,12173,Honolulu International,Honolulu,HI,11618,Newark Liberty International,Newark,NJ,2025,54,1,1204,6,0,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1115,35,1,1650,24,1,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1644,-3,0,1942,-32,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,12,0,15,2,0,0 +2013,4,24,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,29,1,2325,26,1,0 +2013,10,24,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,806,-5,0,904,-5,0,0 +2013,6,30,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1010,-8,0,1128,-3,0,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,44,1,1930,43,1,0 +2013,9,9,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1400,3,0,1545,-10,0,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,10,0,1538,-6,0,0 +2013,10,6,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1445,52,1,1640,72,1,0 +2013,10,22,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,17,1,1930,1,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1720,12,0,2255,-3,0,0 +2013,10,9,3,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,700,-1,0,750,-13,0,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1257,34,1,1602,10,0,0 +2013,7,18,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1815,31,1,1910,18,1,0 +2013,7,15,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,650,2,0,705,-6,0,0 +2013,5,5,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,740,-2,0,905,-13,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1800,23,1,2005,34,1,0 +2013,9,2,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,30,1,1535,-9,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2020,88,1,2325,72,1,0 +2013,4,7,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-3,0,918,-14,0,0 +2013,7,30,2,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-6,0,604,-16,0,0 +2013,6,9,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-11,0,2304,-6,0,0 +2013,6,10,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1518,-4,0,1618,-14,0,0 +2013,4,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1235,-1,0,1355,-10,0,0 +2013,6,13,4,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1045,5,0,1155,-1,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,2,0,1235,-14,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2040,-1,0,2150,4,0,0 +2013,10,15,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,635,-3,0,800,-5,0,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,4,0,1520,4,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1030,0,0,1340,-11,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,135,1,2035,138,1,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1635,7,0,1915,-1,0,0 +2013,7,29,1,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1100,-7,0,1335,-14,0,0 +2013,10,26,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1737,-8,0,2030,-26,0,0 +2013,9,27,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,841,-4,0,949,-8,0,0 +2013,9,8,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-8,0,1254,-12,0,0 +2013,7,26,5,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1740,11,0,1950,6,0,0 +2013,5,23,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,4,0,1354,5,0,0 +2013,4,29,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-6,0,1715,-21,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,-4,0,1841,-14,0,0 +2013,4,17,3,B6,14635,Southwest Florida International,Fort Myers,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,-10,0,2327,-18,0,0 +2013,9,14,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,835,-9,0,1030,-33,0,0 +2013,10,18,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-1,0,2125,-11,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,-3,0,1458,-11,0,0 +2013,10,10,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-4,0,1107,-23,0,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-5,0,1100,-22,0,0 +2013,5,10,5,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1135,-5,0,1520,-6,0,0 +2013,7,23,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-4,0,1914,-7,0,0 +2013,7,21,7,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,915,-1,0,1115,-17,0,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1150,20,1,1410,9,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1355,-2,0,1445,-4,0,0 +2013,9,13,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,-5,0,1905,-1,0,0 +2013,4,18,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1904,385,1,2159,363,1,0 +2013,9,1,7,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,-3,0,1015,-18,0,0 +2013,9,2,1,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1005,25,1,1455,35,1,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,610,-5,0,700,-8,0,0 +2013,5,23,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,-2,0,1155,1,0,0 +2013,4,26,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,800,-6,0,1053,-13,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,805,6,0,1315,-14,0,0 +2013,10,17,4,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,813,-6,0,929,-3,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1053,-2,0,1832,-9,0,0 +2013,9,16,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1550,47,1,1704,30,1,0 +2013,10,2,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,5,0,2120,-8,0,0 +2013,7,20,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,702,0,0,1000,-13,0,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1630,29,1,1850,29,1,0 +2013,9,25,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1755,-8,0,1857,-13,0,0 +2013,6,11,2,UA,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1913,32,1,2031,31,1,0 +2013,9,5,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,949,-31,0,0 +2013,5,19,7,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2255,-3,0,731,-17,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,3,0,1643,59,1,0 +2013,7,31,3,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2359,-2,0,828,-27,0,0 +2013,5,17,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1207,-5,0,1340,-1,0,0 +2013,5,30,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,700,0,0,940,-25,0,0 +2013,7,26,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,3,0,1125,1,0,0 +2013,10,26,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1435,0,0,1645,-21,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,750,4,0,1125,22,1,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1043,0,0,1534,-11,0,0 +2013,9,5,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-2,0,1052,-8,0,0 +2013,8,19,1,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1815,-1,0,2037,-23,0,0 +2013,5,11,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1245,5,0,1335,-13,0,0 +2013,6,24,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,825,-3,0,856,-25,0,0 +2013,10,27,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,9,0,1955,3,0,0 +2013,8,22,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,1,0,608,-2,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,-1,0,2244,-18,0,0 +2013,10,26,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1750,-2,0,2045,-24,0,0 +2013,4,24,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,600,-6,0,835,-10,0,0 +2013,8,20,2,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,647,-4,0,950,-4,0,0 +2013,9,5,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,800,-6,0,1025,-26,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1010,-3,0,1200,-2,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,40,1,1640,28,1,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,737,-1,0,1046,-1,0,0 +2013,5,23,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,745,-7,0,1025,-37,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,835,-4,0,1005,0,0,0 +2013,4,17,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,97,1,2045,133,1,0 +2013,10,20,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,9,0,1314,6,0,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-3,0,1805,1,0,0 +2013,6,4,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-10,0,1345,-14,0,0 +2013,7,31,3,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1310,15,1,1425,0,0,0 +2013,9,3,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,-3,0,1206,2,0,0 +2013,4,25,4,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1405,-13,0,1618,-24,0,0 +2013,6,5,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-5,0,840,-1,0,0 +2013,8,11,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,945,-2,0,1110,-6,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,1,0,2020,-3,0,0 +2013,7,30,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,3,0,1401,7,0,0 +2013,6,19,3,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1227,5,0,1455,-1,0,0 +2013,6,10,1,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-7,0,936,-5,0,0 +2013,6,23,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-3,0,2034,-10,0,0 +2013,4,28,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,-4,0,1536,5,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,940,-3,0,1151,-10,0,0 +2013,10,9,3,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,810,-6,0,1111,-23,0,0 +2013,7,15,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,-5,0,941,-2,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1319,-2,0,1519,-8,0,0 +2013,10,27,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1445,-4,0,1654,-12,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,8,0,2100,13,0,0 +2013,8,9,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-12,0,1542,-26,0,0 +2013,4,21,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,850,-3,0,950,-7,0,0 +2013,4,23,2,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2037,47,1,30,62,1,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-3,0,822,-1,0,0 +2013,6,10,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-5,0,810,-4,0,0 +2013,6,26,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2040,34,1,2232,21,1,0 +2013,10,11,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-3,0,1550,-28,0,0 +2013,5,3,5,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,841,0,0,1032,-5,0,0 +2013,10,12,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,940,-2,0,1248,-15,0,0 +2013,7,7,7,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,729,-5,0,918,-21,0,0 +2013,5,2,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1220,10,0,1251,2,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1510,-3,0,1840,4,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2210,7,0,2315,5,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,83,1,1120,79,1,0 +2013,7,25,4,YV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1813,21,1,1924,18,1,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,15,1,2155,-5,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1155,16,1,1245,13,0,0 +2013,4,23,2,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1705,152,1,1925,159,1,0 +2013,7,31,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-3,0,1925,-3,0,0 +2013,7,19,5,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,-2,0,2248,0,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1500,11,0,1845,1,0,0 +2013,7,26,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-9,0,1122,-9,0,0 +2013,8,7,3,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,-11,0,740,-13,0,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2200,8,0,12,-5,0,0 +2013,5,28,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,1454,-11,0,0 +2013,9,3,2,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,3,0,900,-4,0,0 +2013,8,12,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,5,0,1345,13,0,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-5,0,1005,-21,0,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,940,72,1,1514,60,1,0 +2013,6,4,2,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1309,-11,0,1414,-1,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1121,27,1,1307,15,1,0 +2013,7,25,4,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,645,-2,0,750,-15,0,0 +2013,7,9,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,1,0,732,-8,0,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,740,-8,0,1101,-12,0,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-3,0,1612,-6,0,0 +2013,8,20,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,739,12,0,837,38,1,0 +2013,4,29,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,3,0,1409,8,0,0 +2013,6,14,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,736,-10,0,826,-12,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,840,-2,0,1440,-26,0,0 +2013,6,28,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,850,4,0,1135,-2,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,923,-16,0,0 +2013,6,3,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2301,0,0,712,-3,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1225,22,1,1330,20,1,0 +2013,10,21,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-1,0,902,42,1,0 +2013,5,5,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,-1,0,1654,-16,0,0 +2013,7,11,4,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,1955,-8,0,2240,-12,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1630,3,0,1740,-6,0,0 +2013,10,4,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1840,114,1,2010,123,1,0 +2013,5,20,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,750,-1,0,1124,8,0,0 +2013,8,18,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1602,-2,0,1849,-10,0,0 +2013,9,16,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,2,0,1720,20,1,0 +2013,6,19,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1405,-1,0,1455,-6,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1815,-5,0,1957,-23,0,0 +2013,7,13,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,-2,0,1245,-14,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,1105,-13,0,0 +2013,6,24,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,52,1,2205,103,1,0 +2013,4,16,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2207,-7,0,2340,-8,0,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,57,1,2000,54,1,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,71,1,1629,66,1,0 +2013,5,4,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,845,-1,0,940,-13,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1010,47,1,1215,23,1,0 +2013,8,5,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-2,0,1037,5,0,0 +2013,4,26,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,905,-4,0,1112,-10,0,0 +2013,4,5,5,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1710,-6,0,1845,-32,0,0 +2013,7,1,1,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,1,0,2130,20,1,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,1,0,1030,7,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2015,0,,2257,0,1,1 +2013,10,23,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1145,8,0,1505,21,1,0 +2013,5,12,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1300,-5,0,1550,3,0,0 +2013,5,4,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,-1,0,1223,-8,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1245,56,1,1400,45,1,0 +2013,10,11,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1308,-2,0,1750,-34,0,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1005,10,0,1115,4,0,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,915,-9,0,1745,-7,0,0 +2013,9,12,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,19,1,1729,8,0,0 +2013,6,1,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,915,0,0,1124,-29,0,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1704,1,0,1952,-23,0,0 +2013,8,22,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,6,0,1905,-8,0,0 +2013,8,29,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,615,-7,0,810,-9,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1729,76,1,1900,62,1,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1544,-3,0,2129,-12,0,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-6,0,1224,-9,0,0 +2013,9,18,3,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1810,-10,0,1957,-11,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1100,23,1,1450,10,0,0 +2013,4,4,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-8,0,1028,-8,0,0 +2013,5,2,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,-8,0,2327,-20,0,0 +2013,7,8,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-7,0,1408,-10,0,0 +2013,7,14,7,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1707,-6,0,1831,-14,0,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1315,-1,0,1825,-13,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2150,79,1,54,71,1,0 +2013,10,6,7,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2157,-8,0,600,-13,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-2,0,1314,8,0,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1614,-1,0,30,-1,0,0 +2013,10,13,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,825,-7,0,1020,-19,0,0 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,5,0,840,-6,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,950,12,0,1100,9,0,0 +2013,7,7,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,53,1,2110,52,1,0 +2013,6,13,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-1,0,635,-5,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1815,-4,0,2054,-12,0,0 +2013,10,25,5,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1155,20,1,1443,14,0,0 +2013,7,18,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-7,0,1113,-24,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1725,21,1,2050,10,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,76,1,1851,84,1,0 +2013,7,22,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2220,-5,0,605,-22,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1240,60,1,1400,66,1,0 +2013,9,5,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1330,-4,0,2159,0,0,0 +2013,10,19,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1044,29,1,1324,16,1,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1220,1,0,1455,9,0,0 +2013,7,19,5,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-5,0,1904,-4,0,0 +2013,9,3,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1748,3,0,2030,0,0,0 +2013,9,15,7,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,940,1,0,1135,-11,0,0 +2013,9,29,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1641,-7,0,0 +2013,6,16,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,8,0,1919,5,0,0 +2013,4,23,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,730,-10,0,1125,-23,0,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1535,27,1,1820,33,1,0 +2013,4,6,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-10,0,1936,-27,0,0 +2013,8,26,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-4,0,1740,-10,0,0 +2013,9,19,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,126,1,2210,120,1,0 +2013,8,12,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,-6,0,1346,-13,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1830,0,0,1921,-2,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1650,59,1,1826,99,1,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2020,23,1,2235,23,1,0 +2013,5,7,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,820,-7,0,1110,-10,0,0 +2013,4,14,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1659,1,0,1843,17,1,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,9,0,2150,2,0,0 +2013,10,4,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,19,1,1850,23,1,0 +2013,10,20,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-7,0,715,-15,0,0 +2013,8,17,6,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1708,-7,0,1850,-18,0,0 +2013,5,28,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-3,0,2059,-11,0,0 +2013,6,16,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,946,-4,0,1007,-12,0,0 +2013,9,11,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,16,1,1750,8,0,0 +2013,9,10,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,-2,0,1223,-11,0,0 +2013,8,9,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1530,-1,0,1635,-2,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1955,10,0,2125,2,0,0 +2013,4,5,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-10,0,1750,-14,0,0 +2013,9,18,3,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,3,0,2014,15,1,0 +2013,8,13,2,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,7,0,548,-10,0,0 +2013,7,27,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1917,30,1,2030,12,0,0 +2013,9,10,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1850,-2,0,2055,-17,0,0 +2013,7,10,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,17,1,1510,23,1,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,941,-1,0,1201,-5,0,0 +2013,9,4,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1450,0,0,1535,-4,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1010,16,1,1120,31,1,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,-3,0,810,-9,0,0 +2013,7,4,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-9,0,1113,-5,0,0 +2013,7,26,5,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,815,2,0,1053,27,1,0 +2013,6,13,4,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1750,5,0,1857,5,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2105,184,1,2340,171,1,0 +2013,9,2,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,925,-12,0,0 +2013,5,13,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,122,1,1340,101,1,0 +2013,6,27,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2145,-1,0,2302,3,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,30,1,2350,20,1,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1708,-9,0,1753,-14,0,0 +2013,10,31,4,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-5,0,1205,-7,0,0 +2013,7,16,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,0,0,621,22,1,0 +2013,5,3,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1720,-2,0,1845,-11,0,0 +2013,8,5,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1345,77,1,1520,61,1,0 +2013,9,19,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1749,-4,0,1924,-5,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1410,39,1,2145,0,0,0 +2013,6,17,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2018,-8,0,2339,0,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1810,10,0,2034,51,1,0 +2013,4,15,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-14,0,850,-16,0,0 +2013,10,20,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,1,0,540,-1,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,930,-1,0,1039,-29,0,0 +2013,6,27,4,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1408,3,0,1613,-12,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,-7,0,2359,-17,0,0 +2013,6,23,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1110,-5,0,1359,-27,0,0 +2013,10,23,3,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1105,-2,0,1230,20,1,0 +2013,5,31,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,-3,0,1815,18,1,0 +2013,9,13,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,52,1,840,49,1,0 +2013,5,8,3,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,-6,0,1352,-22,0,0 +2013,5,3,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,738,-6,0,915,-15,0,0 +2013,9,28,6,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,19,1,1846,1,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1255,-4,0,1410,-14,0,0 +2013,7,27,6,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-1,0,1615,-15,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1825,-2,0,2120,-14,0,0 +2013,7,15,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,940,-9,0,1053,-20,0,0 +2013,7,3,3,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,7,0,935,1,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1305,0,0,1755,-13,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1145,-1,0,1340,-10,0,0 +2013,7,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2007,-6,0,2108,-9,0,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,2200,49,1,2303,35,1,0 +2013,6,28,5,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,2105,20,1,2355,11,0,0 +2013,10,27,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1958,23,1,2130,11,0,0 +2013,6,11,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1440,-2,0,1530,-5,0,0 +2013,10,30,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,855,-14,0,940,-23,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2301,-2,0,2326,-7,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1730,8,0,2205,6,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-3,0,1631,-23,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1935,0,0,2200,-11,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1245,-2,0,1715,-21,0,0 +2013,5,31,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2020,27,1,2255,17,1,0 +2013,5,1,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,-5,0,1428,-2,0,0 +2013,7,13,6,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,14,0,1416,8,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-6,0,2303,-22,0,0 +2013,7,1,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1225,-1,0,1805,1,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,65,1,1830,76,1,0 +2013,8,28,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-8,0,1356,-14,0,0 +2013,4,7,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1819,24,1,1955,22,1,0 +2013,8,21,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,655,10,0,815,12,0,0 +2013,4,21,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-9,0,912,-4,0,0 +2013,9,21,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1359,1,0,2200,-9,0,0 +2013,4,12,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1705,18,1,1825,10,0,0 +2013,8,20,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,614,-5,0,809,-20,0,0 +2013,8,18,7,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1822,61,1,1919,46,1,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1500,8,0,1620,0,0,0 +2013,5,8,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1845,-3,0,1955,-11,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,46,1,2225,32,1,0 +2013,8,28,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,718,-1,0,900,-8,0,0 +2013,6,26,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1255,2,0,1511,-3,0,0 +2013,6,17,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1219,-1,0,1337,12,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1108,24,1,1223,9,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,100,1,1755,89,1,0 +2013,7,8,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,26,1,2115,23,1,0 +2013,8,22,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1411,-5,0,1546,-20,0,0 +2013,7,6,6,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,730,-2,0,855,-13,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1315,-2,0,1625,-10,0,0 +2013,4,25,4,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,-5,0,1806,-9,0,0 +2013,6,20,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,608,-5,0,640,3,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1555,21,1,1738,6,0,0 +2013,4,30,2,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-6,0,1643,-5,0,0 +2013,9,9,1,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1605,2,0,1842,-1,0,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,1,0,1500,9,0,0 +2013,6,12,3,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1820,-2,0,2141,34,1,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1225,-3,0,1740,0,0,0 +2013,10,14,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1850,82,1,1925,77,1,0 +2013,5,18,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-5,0,928,-21,0,0 +2013,4,7,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1428,-3,0,1645,7,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,71,1,1343,74,1,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,855,-5,0,1210,-17,0,0 +2013,9,28,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,600,-9,0,905,-43,0,0 +2013,7,7,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-4,0,1634,0,0,0 +2013,9,24,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1741,0,0,2109,29,1,0 +2013,8,25,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,-13,0,2140,-13,0,0 +2013,8,25,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1450,-5,0,1831,-10,0,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-4,0,822,-4,0,0 +2013,9,5,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1940,-8,0,2120,-35,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1617,63,1,114,35,1,0 +2013,5,11,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,638,-2,0,803,-17,0,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,1,0,1500,-15,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2035,-4,0,2315,-9,0,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,929,-7,0,1234,-12,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1720,0,,1815,0,1,1 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,615,-3,0,825,-11,0,0 +2013,7,24,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,49,1,1530,77,1,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-2,0,2230,4,0,0 +2013,9,29,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-7,0,1351,1,0,0 +2013,10,9,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-3,0,805,-21,0,0 +2013,7,9,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,0,0,1722,-3,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1845,93,1,2036,73,1,0 +2013,7,29,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1800,98,1,1950,72,1,0 +2013,5,13,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1950,61,1,2159,69,1,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,10,0,2209,7,0,0 +2013,7,21,7,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,4,0,1225,-7,0,0 +2013,6,29,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-3,0,1530,-9,0,0 +2013,10,4,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-7,0,1829,-13,0,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1935,-3,0,2124,8,0,0 +2013,8,11,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1837,-7,0,44,-18,0,0 +2013,9,27,5,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,758,6,0,0 +2013,5,7,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-6,0,1939,3,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1406,-1,0,1621,15,1,0 +2013,6,28,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,120,1,23,111,1,0 +2013,8,7,3,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-7,0,1317,-27,0,0 +2013,9,5,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1035,24,1,1335,7,0,0 +2013,7,27,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,33,1,1935,26,1,0 +2013,10,8,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1912,-10,0,2247,-14,0,0 +2013,5,14,2,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,0,0,1135,0,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1255,7,0,1405,18,1,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,8,0,1210,6,0,0 +2013,9,5,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2017,-3,0,2111,-11,0,0 +2013,9,22,7,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1433,-5,0,2222,-4,0,0 +2013,4,14,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2049,192,1,2219,188,1,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1845,-5,0,2036,-22,0,0 +2013,4,7,7,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-2,0,1130,-2,0,0 +2013,6,12,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,8,0,1600,0,0,0 +2013,9,26,4,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,5,0,1300,-15,0,0 +2013,7,15,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,-2,0,2110,-4,0,0 +2013,5,4,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,11,0,1910,-33,0,0 +2013,7,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1315,-5,0,1342,-9,0,0 +2013,5,24,5,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1225,-8,0,2028,-19,0,0 +2013,4,26,5,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1110,1,0,1300,5,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,2,0,1250,-13,0,0 +2013,9,24,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1900,31,1,2015,42,1,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,815,31,1,1055,39,1,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-10,0,2246,-11,0,0 +2013,9,21,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1608,-3,0,1752,-25,0,0 +2013,8,2,5,EV,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1431,1,0,1703,-7,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,840,-2,0,1041,-4,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,0,0,1130,2,0,0 +2013,4,24,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,-6,0,1635,-14,0,0 +2013,8,14,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,2,0,1120,5,0,0 +2013,8,19,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1735,-5,0,1815,-13,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1635,13,0,1800,1,0,0 +2013,9,7,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-3,0,1609,-6,0,0 +2013,10,15,2,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,830,72,1,1125,70,1,0 +2013,7,1,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1155,1,0,1310,-12,0,0 +2013,5,26,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-3,0,2030,-13,0,0 +2013,10,13,7,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1735,-3,0,1750,-4,0,0 +2013,10,21,1,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1038,19,1,1133,12,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2155,-2,0,2306,-10,0,0 +2013,4,22,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-3,0,2024,-5,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1145,2,0,1240,-3,0,0 +2013,5,12,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1325,2,0,1646,-9,0,0 +2013,9,16,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,6,0,1850,8,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1225,180,1,1246,180,1,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,41,1,2150,29,1,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1420,15,1,1510,3,0,0 +2013,5,5,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,740,59,1,1125,49,1,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1000,4,0,1105,3,0,0 +2013,4,12,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2140,7,0,2245,0,0,0 +2013,9,3,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,0,0,801,-29,0,0 +2013,10,15,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1515,0,0,1645,-19,0,0 +2013,6,21,5,DL,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,732,-4,0,1016,-17,0,0 +2013,8,23,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,1,0,1812,-14,0,0 +2013,4,18,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,1,0,1115,5,0,0 +2013,4,22,1,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,545,2,0,743,-21,0,0 +2013,10,6,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,600,-6,0,1000,-21,0,0 +2013,7,13,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-1,0,1828,-3,0,0 +2013,5,18,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,759,-4,0,1109,-9,0,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,756,91,1,1106,80,1,0 +2013,9,4,3,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1910,-2,0,2221,-31,0,0 +2013,5,19,7,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,1,0,1455,22,1,0 +2013,4,1,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-6,0,1650,-5,0,0 +2013,5,22,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-9,0,1314,-6,0,0 +2013,6,20,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,605,12,0,925,-9,0,0 +2013,8,23,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,6,0,1332,-1,0,0 +2013,7,11,4,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1436,-1,0,1645,-4,0,0 +2013,9,26,4,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1259,-10,0,1540,-6,0,0 +2013,10,12,6,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1640,13,0,1920,4,0,0 +2013,5,23,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1225,19,1,1313,35,1,0 +2013,6,5,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,79,1,1427,64,1,0 +2013,4,14,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,3,0,641,8,0,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1450,-3,0,1717,-17,0,0 +2013,6,26,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,91,1,1600,79,1,0 +2013,6,10,1,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-5,0,1122,-4,0,0 +2013,10,11,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-3,0,817,-22,0,0 +2013,9,11,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,605,-5,0,806,-26,0,0 +2013,10,12,6,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1900,-6,0,2031,-32,0,0 +2013,9,8,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-6,0,1303,-7,0,0 +2013,9,10,2,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2000,-6,0,2122,-27,0,0 +2013,6,25,2,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2005,64,1,2234,73,1,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,35,1,2026,44,1,0 +2013,9,29,7,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1505,-2,0,1834,-5,0,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1140,2,0,2015,-5,0,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,0,0,2050,-7,0,0 +2013,5,28,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1005,0,,1131,0,1,1 +2013,10,26,6,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1125,4,0,1610,-16,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,630,-2,0,735,0,0,0 +2013,5,17,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,720,2,0,825,-3,0,0 +2013,7,28,7,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,1815,-2,0,2130,18,1,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1855,1,0,2240,9,0,0 +2013,4,26,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,1420,-7,0,0 +2013,5,28,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,36,1,2215,26,1,0 +2013,7,11,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,825,-3,0,1140,3,0,0 +2013,4,26,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,700,3,0,735,-2,0,0 +2013,8,22,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1140,-7,0,1335,-1,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,0,0,1620,-22,0,0 +2013,4,24,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,22,1,1635,19,1,0 +2013,4,6,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1630,-2,0,1917,-9,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,5,0,900,5,0,0 +2013,9,12,4,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1810,14,0,2048,10,0,0 +2013,9,21,6,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-3,0,1045,-21,0,0 +2013,7,23,2,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2205,-3,0,2317,15,1,0 +2013,10,21,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,920,-10,0,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1245,1,0,1450,-7,0,0 +2013,6,5,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1618,1,0,1748,-14,0,0 +2013,9,8,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-4,0,1437,9,0,0 +2013,4,11,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1300,0,,1438,0,1,1 +2013,5,23,4,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-2,0,735,1,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-1,0,1346,-14,0,0 +2013,4,3,3,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,740,-5,0,1117,2,0,0 +2013,8,21,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,925,4,0,1050,2,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1600,24,1,1738,27,1,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1920,-1,0,2036,-8,0,0 +2013,7,21,7,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-7,0,553,-14,0,0 +2013,8,28,3,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1320,144,1,1415,189,1,0 +2013,9,7,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1656,-8,0,1932,-21,0,0 +2013,6,15,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,720,-12,0,1145,-4,0,0 +2013,5,9,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,-2,0,1933,-4,0,0 +2013,9,12,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1835,12,0,2000,2,0,0 +2013,7,29,1,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,26,1,2055,22,1,0 +2013,4,9,2,F9,11292,Denver International,Denver,CO,14635,Southwest Florida International,Fort Myers,FL,1130,23,1,1704,70,1,0 +2013,10,31,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1729,4,0,0 +2013,9,11,3,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1725,18,1,1840,28,1,0 +2013,6,5,3,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1355,1,0,1700,2,0,0 +2013,8,14,3,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1525,11,0,1845,28,1,0 +2013,5,19,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,805,-4,0,1105,-15,0,0 +2013,4,6,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1845,-7,0,2003,-11,0,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,66,1,1438,69,1,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,27,1,1636,20,1,0 +2013,7,24,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2245,-6,0,15,4,0,0 +2013,5,6,1,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,2035,2,0,2241,-20,0,0 +2013,5,7,2,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,625,-6,0,701,-10,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2036,3,0,2204,-13,0,0 +2013,8,6,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,913,186,1,1430,178,1,0 +2013,9,21,6,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1215,0,,1340,0,1,1 +2013,5,28,2,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,-5,0,1820,4,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2115,141,1,15,145,1,0 +2013,4,4,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-3,0,1747,-10,0,0 +2013,10,27,7,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-6,0,717,-12,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,0,0,1455,-6,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1955,17,1,2205,24,1,0 +2013,5,23,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,715,2,0,830,-2,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1037,25,1,1219,24,1,0 +2013,5,29,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1519,6,0,1819,-21,0,0 +2013,6,4,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1031,30,1,1327,6,0,0 +2013,10,13,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1935,-2,0,2059,-6,0,0 +2013,9,13,5,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1217,81,1,1813,89,1,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,831,-1,0,1029,-2,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,712,0,0,929,-16,0,0 +2013,8,25,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,-7,0,2112,7,0,0 +2013,10,20,7,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-6,0,2045,-3,0,0 +2013,10,28,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,4,0,910,0,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1530,37,1,1755,29,1,0 +2013,5,10,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1733,20,1,2018,-1,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1750,24,1,1910,11,0,0 +2013,7,5,5,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1810,1,0,1935,1,0,0 +2013,9,23,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1425,15,1,1630,4,0,0 +2013,7,6,6,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,625,1,0,915,-15,0,0 +2013,5,11,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1529,57,1,1830,40,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,4,0,2000,6,0,0 +2013,10,27,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,930,8,0,1055,-4,0,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1712,-4,0,1907,-11,0,0 +2013,8,9,5,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,5,0,1431,10,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,829,-2,0,1020,-16,0,0 +2013,10,1,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-6,0,1757,-3,0,0 +2013,5,31,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1900,-3,0,2050,-11,0,0 +2013,7,16,2,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-1,0,1105,-17,0,0 +2013,8,11,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,4,0,1921,1,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,0,,1640,0,1,1 +2013,5,20,1,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-5,0,1806,6,0,0 +2013,9,5,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-5,0,1010,-14,0,0 +2013,9,20,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-8,0,1408,-1,0,0 +2013,8,15,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1025,15,1,1140,5,0,0 +2013,8,31,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,605,10,0,1418,-18,0,0 +2013,5,1,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,838,-6,0,0 +2013,4,6,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1122,79,1,1324,72,1,0 +2013,5,2,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,14,0,1820,48,1,0 +2013,5,11,6,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1245,-4,0,1305,-11,0,0 +2013,6,11,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2323,-1,0,524,-24,0,0 +2013,8,14,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,54,1,1641,57,1,0 +2013,7,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,-4,0,1905,10,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,0,0,1110,-9,0,0 +2013,6,22,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-6,0,1635,-9,0,0 +2013,6,7,5,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1659,246,1,1941,210,1,0 +2013,10,8,2,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,803,-1,0,1019,-24,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,-1,0,1945,11,0,0 +2013,5,9,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,24,1,913,11,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,0,0,1053,9,0,0 +2013,7,30,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,-3,0,2152,4,0,0 +2013,7,14,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,843,6,0,1014,-10,0,0 +2013,8,20,2,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,630,0,0,814,-2,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1944,76,1,2039,123,1,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-1,0,1045,-6,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1644,-5,0,115,16,1,0 +2013,6,6,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,4,0,1605,-14,0,0 +2013,4,7,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-7,0,2100,18,1,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1835,34,1,2210,80,1,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1655,0,0,1810,-9,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,94,1,1540,78,1,0 +2013,6,5,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,606,-8,0,800,-12,0,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1820,-6,0,2115,-6,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1833,-4,0,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1615,13,0,1855,8,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,-1,0,1245,34,1,0 +2013,5,28,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1940,40,1,2050,33,1,0 +2013,7,13,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11042,Cleveland-Hopkins International,Cleveland,OH,2258,-1,0,617,-16,0,0 +2013,6,10,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,15,1,1757,27,1,0 +2013,6,15,6,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1635,0,0,1825,-9,0,0 +2013,7,7,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,0,,1748,0,1,1 +2013,6,19,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1910,0,0,2126,-4,0,0 +2013,10,1,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1845,-2,0,2200,-3,0,0 +2013,8,6,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-4,0,921,1,0,0 +2013,6,17,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,601,-8,0,904,-16,0,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-5,0,947,-7,0,0 +2013,6,21,5,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1222,13,0,1519,16,1,0 +2013,6,18,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,800,-7,0,832,1,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,949,1,0,1226,-1,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,947,-4,0,1110,-3,0,0 +2013,10,7,1,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1700,-3,0,1745,-10,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,700,-1,0,850,-8,0,0 +2013,4,26,5,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,2255,-13,0,715,-5,0,0 +2013,8,21,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,-8,0,1155,-16,0,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,11,0,2100,-6,0,0 +2013,4,4,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,56,1,1752,35,1,0 +2013,5,18,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1605,-3,0,1735,-21,0,0 +2013,4,29,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1615,-2,0,1943,3,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,4,0,2300,11,0,0 +2013,5,29,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,947,-11,0,1349,-19,0,0 +2013,8,29,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1940,-5,0,2110,-3,0,0 +2013,9,13,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,-2,0,1755,3,0,0 +2013,4,19,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1036,27,1,1050,29,1,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,-3,0,1026,-7,0,0 +2013,10,22,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,803,-1,0,932,-1,0,0 +2013,7,23,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-5,0,1341,-7,0,0 +2013,5,10,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,-3,0,1225,-7,0,0 +2013,4,12,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,0,0,1237,1,0,0 +2013,8,10,6,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,935,34,1,1115,24,1,0 +2013,9,1,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-10,0,1949,-35,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-4,0,902,-17,0,0 +2013,6,27,4,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1500,10,0,1740,6,0,0 +2013,4,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,0,0,1800,-14,0,0 +2013,9,22,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1301,111,1,1655,115,1,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1505,9,0,2040,2,0,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,23,1,1105,9,0,0 +2013,8,15,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,-3,0,2250,-24,0,0 +2013,9,5,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1526,9,0,0 +2013,5,24,5,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-9,0,952,13,0,0 +2013,7,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,20,1,1230,12,0,0 +2013,8,28,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1447,-7,0,1635,-32,0,0 +2013,4,4,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1055,-1,0,1200,15,1,0 +2013,9,5,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,742,-1,0,928,13,0,0 +2013,9,13,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-3,0,2035,8,0,0 +2013,10,20,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1405,-5,0,1415,-9,0,0 +2013,5,27,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1612,33,1,1837,46,1,0 +2013,4,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,125,1,2149,133,1,0 +2013,7,13,6,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,0,0,600,9,0,0 +2013,6,27,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-1,0,758,-12,0,0 +2013,6,18,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,-2,0,813,0,0,0 +2013,8,21,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,43,1,2220,31,1,0 +2013,5,16,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,-7,0,17,-1,0,0 +2013,8,27,2,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1410,-12,0,1601,-26,0,0 +2013,5,14,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,-2,0,835,-8,0,0 +2013,4,26,5,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1745,27,1,2250,23,1,0 +2013,10,25,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1027,-3,0,1226,-12,0,0 +2013,5,22,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-3,0,1245,-15,0,0 +2013,8,11,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1853,0,0,1943,6,0,0 +2013,6,13,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,6,0,2105,19,1,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,23,1,2134,20,1,0 +2013,6,24,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,936,-4,0,1033,-16,0,0 +2013,9,4,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-3,0,1205,-13,0,0 +2013,9,22,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,-4,0,925,-2,0,0 +2013,8,1,4,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-5,0,1315,-3,0,0 +2013,6,22,6,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,15,1,615,20,1,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1210,-5,0,1323,0,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1340,-1,0,1533,-17,0,0 +2013,4,1,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,915,-6,0,930,-16,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,700,-2,0,825,1,0,0 +2013,5,1,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1205,-4,0,1310,-14,0,0 +2013,4,10,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,845,-7,0,1122,-25,0,0 +2013,4,28,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-1,0,2100,-11,0,0 +2013,9,26,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,840,-22,0,0 +2013,4,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1750,5,0,1915,1,0,0 +2013,8,28,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-9,0,1338,-12,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1420,1,0,1752,11,0,0 +2013,10,30,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1835,-3,0,2029,8,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,630,0,0,855,-11,0,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1948,41,1,2335,17,1,0 +2013,7,25,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1510,15,1,1825,9,0,0 +2013,8,20,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1425,23,1,1544,22,1,0 +2013,7,27,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,32,1,1646,12,0,0 +2013,7,27,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,28,1,2223,17,1,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,855,16,1,1155,8,0,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1755,-2,0,1930,-11,0,0 +2013,10,5,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1930,22,1,2025,18,1,0 +2013,9,27,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-7,0,1025,-3,0,0 +2013,7,14,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,73,1,2042,63,1,0 +2013,5,15,3,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,854,-7,0,1040,-12,0,0 +2013,7,8,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1703,81,1,1910,52,1,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1715,-2,0,1908,-12,0,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,21,1,1300,13,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2020,28,1,2240,14,0,0 +2013,5,25,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,15,1,2224,-17,0,0 +2013,7,9,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1910,34,1,2035,27,1,0 +2013,5,6,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1655,11,0,1820,-10,0,0 +2013,10,13,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1254,-4,0,1356,-12,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1950,4,0,2330,3,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,730,0,,850,0,1,1 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,-7,0,1310,-16,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-7,0,1402,0,0,0 +2013,8,25,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1734,6,0,1833,-9,0,0 +2013,6,21,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1525,14,0,1550,49,1,0 +2013,4,22,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,900,-6,0,1115,13,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,-10,0,2348,-21,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2000,0,0,2217,0,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,9,0,1006,2,0,0 +2013,9,6,5,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1728,-4,0,1851,-1,0,0 +2013,9,7,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-4,0,1230,-14,0,0 +2013,4,25,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-1,0,1346,-4,0,0 +2013,6,8,6,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1250,-6,0,1404,-16,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-7,0,1305,20,1,0 +2013,9,7,6,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-7,0,1930,-12,0,0 +2013,7,5,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1025,8,0,1040,4,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,840,6,0,1000,-10,0,0 +2013,4,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1403,-4,0,1554,-16,0,0 +2013,5,24,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,-4,0,1706,-14,0,0 +2013,4,9,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,8,0,1050,13,0,0 +2013,7,1,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1549,64,1,1723,58,1,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1645,0,0,1805,-3,0,0 +2013,4,10,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,-6,0,5,-10,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-8,0,1804,-1,0,0 +2013,9,14,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,1025,0,0,0 +2013,9,22,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,805,-4,0,1100,-18,0,0 +2013,9,25,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,9,0,2125,-4,0,0 +2013,5,7,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2256,-5,0,2345,-10,0,0 +2013,5,7,2,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,825,-8,0,1210,-9,0,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2005,57,1,2125,57,1,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,-2,0,1725,-7,0,0 +2013,10,31,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,7,0,1320,10,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1401,33,1,1642,45,1,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1405,23,1,1510,22,1,0 +2013,7,14,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1245,-4,0,1418,18,1,0 +2013,8,24,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-2,0,837,9,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1210,-5,0,1315,-11,0,0 +2013,9,3,2,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-1,0,1600,3,0,0 +2013,6,14,5,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1355,1,0,1520,14,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,629,52,1,906,35,1,0 +2013,10,28,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-9,0,1637,-10,0,0 +2013,7,12,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,-5,0,1731,-6,0,0 +2013,9,20,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,23,1,1634,8,0,0 +2013,4,19,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1757,36,1,2157,26,1,0 +2013,9,6,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1415,-6,0,1600,-12,0,0 +2013,8,30,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1253,0,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-2,0,2122,-1,0,0 +2013,4,11,4,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,1005,3,0,0 +2013,9,17,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,910,2,0,1025,0,0,0 +2013,10,30,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1046,-10,0,1334,-11,0,0 +2013,7,18,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-5,0,1905,-17,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1916,91,1,2047,77,1,0 +2013,6,11,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1345,-4,0,1520,-19,0,0 +2013,5,31,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,-5,0,1925,3,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1342,-1,0,1508,2,0,0 +2013,9,6,5,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1430,-2,0,1535,-3,0,0 +2013,4,14,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1800,21,1,1925,12,0,0 +2013,10,29,2,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1524,-2,0,1600,4,0,0 +2013,10,20,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1645,0,0,1930,15,1,0 +2013,8,7,3,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,117,1,629,109,1,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1615,228,1,45,221,1,0 +2013,5,3,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-6,0,2105,-1,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1248,-2,0,1532,-16,0,0 +2013,5,20,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,-2,0,1349,-10,0,0 +2013,5,17,5,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,620,7,0,915,6,0,0 +2013,9,8,7,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,830,-5,0,1120,-8,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,37,1,2347,43,1,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2000,-5,0,2100,-12,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1645,18,1,1905,11,0,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,14,0,1950,8,0,0 +2013,8,8,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,627,0,0,818,-2,0,0 +2013,8,9,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-4,0,835,24,1,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,-9,0,1133,-17,0,0 +2013,6,28,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,12,0,2010,14,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,-3,0,950,-18,0,0 +2013,6,2,7,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1205,6,0,1325,-6,0,0 +2013,6,13,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1618,4,0,1747,-6,0,0 +2013,4,10,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-1,0,1930,-8,0,0 +2013,4,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2130,8,0,2235,8,0,0 +2013,4,9,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,545,-3,0,747,-2,0,0 +2013,5,20,1,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,-2,0,812,-17,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,805,-2,0,0 +2013,4,12,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1845,-4,0,2003,-9,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,2055,-4,0,16,2,0,0 +2013,7,20,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1740,-10,0,0 +2013,10,21,1,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,18,1,2220,-1,0,0 +2013,6,24,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-3,0,1655,-2,0,0 +2013,6,19,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,607,6,0,830,0,0,0 +2013,7,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1735,19,1,1815,13,0,0 +2013,9,28,6,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1505,-5,0,1825,7,0,0 +2013,9,24,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,748,-4,0,838,-9,0,0 +2013,9,7,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1020,-3,0,1140,-9,0,0 +2013,7,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1345,16,1,1715,18,1,0 +2013,4,29,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-1,0,1005,-22,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,605,-3,0,735,-3,0,0 +2013,7,16,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,903,-10,0,937,-7,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1632,3,0,2002,-4,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2205,-1,0,2320,-9,0,0 +2013,9,19,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1824,37,1,2058,43,1,0 +2013,10,14,1,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1733,-13,0,1933,-27,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,113,1,2059,134,1,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-6,0,1307,-11,0,0 +2013,9,20,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1728,2,0,1928,15,1,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1803,9,0,1947,1,0,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1554,-7,0,1833,-20,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,758,20,1,915,21,1,0 +2013,4,18,4,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1753,-1,0,1838,0,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,-2,0,2025,-5,0,0 +2013,6,7,5,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1710,52,1,1815,45,1,0 +2013,4,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1535,-6,0,1755,-12,0,0 +2013,10,30,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1652,0,0,1747,-7,0,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,910,1,0,1013,-9,0,0 +2013,6,11,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,800,-6,0,1301,-2,0,0 +2013,7,28,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1905,64,1,2020,60,1,0 +2013,8,21,3,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1543,12,0,1909,-27,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2200,-2,0,613,-10,0,0 +2013,7,1,1,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,620,-2,0,1444,38,1,0 +2013,6,20,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,911,-2,0,1043,-7,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,-4,0,2245,-12,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,1119,-10,0,0 +2013,5,15,3,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1120,-6,0,1355,-13,0,0 +2013,4,7,7,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1730,1,0,1953,-4,0,0 +2013,8,26,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1132,8,0,1643,1,0,0 +2013,10,21,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-9,0,1304,-14,0,0 +2013,5,5,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1121,-5,0,1715,-9,0,0 +2013,10,21,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1739,-9,0,1950,-24,0,0 +2013,7,22,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1530,5,0,1800,-2,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,840,16,1,1050,15,1,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,-3,0,1215,-17,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1440,24,1,1800,11,0,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2135,0,0,2231,-11,0,0 +2013,8,7,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,735,-12,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1310,233,1,1540,222,1,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,902,-2,0,1604,11,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,738,-6,0,915,-9,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1258,-3,0,1423,-5,0,0 +2013,7,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2037,71,1,2148,58,1,0 +2013,9,16,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,845,-2,0,1053,-14,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1035,-1,0,1130,6,0,0 +2013,8,14,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-4,0,808,-19,0,0 +2013,9,18,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,910,6,0,1130,1,0,0 +2013,9,25,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10423,Austin - Bergstrom International,Austin,TX,840,-3,0,1050,-31,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1732,-3,0,2114,-53,0,0 +2013,5,22,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1850,8,0,2045,1,0,0 +2013,5,8,3,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,-3,0,629,5,0,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-3,0,1902,-11,0,0 +2013,7,19,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-7,0,1101,-13,0,0 +2013,7,11,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1420,22,1,1545,15,1,0 +2013,10,25,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,6,0,1353,9,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,9,0,1315,-7,0,0 +2013,6,13,4,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-3,0,639,-15,0,0 +2013,9,27,5,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1522,0,0,1840,11,0,0 +2013,5,30,4,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,730,-7,0,900,-9,0,0 +2013,4,21,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1500,22,1,2040,8,0,0 +2013,6,6,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1507,-1,0,1607,-17,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2135,-7,0,2331,1,0,0 +2013,9,18,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2120,5,0,2215,0,0,0 +2013,7,8,1,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1335,42,1,1635,53,1,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-8,0,2205,16,1,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,800,1,0,910,-13,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,959,0,0,1559,-12,0,0 +2013,9,28,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1710,-3,0,2025,-17,0,0 +2013,7,31,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1341,13,0,1650,1,0,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1546,-7,0,1720,0,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1355,-3,0,1650,-8,0,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,-1,0,1710,-3,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1539,-3,0,1806,-10,0,0 +2013,7,29,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-8,0,900,-9,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,600,-5,0,840,-28,0,0 +2013,7,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1320,-5,0,1425,-9,0,0 +2013,10,21,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1530,-2,0,1655,-5,0,0 +2013,5,11,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1712,9,0,1957,-3,0,0 +2013,4,9,2,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,0,0,1415,9,0,0 +2013,8,10,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,600,-1,0,725,-9,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,4,0,1135,-2,0,0 +2013,6,23,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-1,0,1820,-9,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1445,7,0,1705,3,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1755,0,0,2325,-8,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,-3,0,1750,0,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1826,2,0,2254,-22,0,0 +2013,6,5,3,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,800,-3,0,1140,-5,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1510,52,1,1605,55,1,0 +2013,5,6,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1137,-2,0,1429,-4,0,0 +2013,6,29,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,825,5,0,920,-2,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,955,-5,0,1046,-18,0,0 +2013,8,12,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1248,19,1,0 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1709,93,1,2214,120,1,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2118,3,0,2222,-8,0,0 +2013,4,2,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1357,-8,0,1459,-10,0,0 +2013,5,15,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1302,-10,0,1611,-7,0,0 +2013,8,11,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,946,-3,0,1102,-9,0,0 +2013,6,2,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1920,50,1,2050,41,1,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,7,0,1055,8,0,0 +2013,10,21,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,730,-3,0,830,-13,0,0 +2013,9,5,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-6,0,1244,-20,0,0 +2013,7,31,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-10,0,1037,-13,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1500,3,0,2257,1,0,0 +2013,4,25,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1331,24,1,1444,23,1,0 +2013,5,27,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1100,-2,0,1205,-9,0,0 +2013,5,12,7,YV,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1330,0,0,1730,3,0,0 +2013,10,27,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,5,0,1022,17,1,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,945,25,1,1420,33,1,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2145,0,,2315,0,1,1 +2013,5,8,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,1055,3,0,0 +2013,9,9,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-2,0,1950,-9,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,61,1,1944,135,1,0 +2013,8,28,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1630,187,1,1800,183,1,0 +2013,10,20,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1555,-2,0,1805,24,1,0 +2013,4,27,6,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1223,-2,0,1335,-7,0,0 +2013,5,3,5,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,-7,0,1846,-14,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,930,-4,0,1125,-3,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-4,0,1619,-14,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1420,1,0,1655,-8,0,0 +2013,9,4,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,755,685,1,929,686,1,0 +2013,8,29,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1140,7,0,1250,-4,0,0 +2013,5,17,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-1,0,1307,-7,0,0 +2013,8,31,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1551,-6,0,1654,-20,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,5,0,1946,45,1,0 +2013,9,19,4,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,-7,0,1754,0,0,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2220,32,1,2340,30,1,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,2,0,1946,-8,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1510,-7,0,2048,-19,0,0 +2013,5,30,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,902,-9,0,1100,-5,0,0 +2013,6,12,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,837,-11,0,901,-7,0,0 +2013,8,27,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,715,37,1,735,22,1,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,1,0,1805,-8,0,0 +2013,9,9,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-2,0,1730,-26,0,0 +2013,10,15,2,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-6,0,1706,-4,0,0 +2013,9,19,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1139,-5,0,1239,-8,0,0 +2013,4,9,2,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2243,0,0,640,-7,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,7,0,1013,7,0,0 +2013,8,22,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1102,-16,0,0 +2013,6,13,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1045,22,1,1145,18,1,0 +2013,5,7,2,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1155,-6,0,1540,-12,0,0 +2013,4,8,1,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1555,8,0,1725,5,0,0 +2013,4,4,4,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1700,-4,0,1835,1,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,-4,0,1150,-11,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1814,0,0,2104,-13,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1115,-1,0,1210,-1,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,-6,0,2257,8,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1505,16,1,1755,22,1,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,13,0,2250,13,0,0 +2013,9,7,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1114,-3,0,1201,-7,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,810,-3,0,1350,-13,0,0 +2013,8,18,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,32,1,842,40,1,0 +2013,6,18,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1109,-10,0,1305,-12,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,8,0,2030,20,1,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,2,0,1255,13,0,0 +2013,10,9,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,-2,0,1225,-18,0,0 +2013,9,26,4,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-5,0,1544,4,0,0 +2013,8,21,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,-4,0,706,1,0,0 +2013,9,20,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1435,11,0,1610,22,1,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,97,1,1451,102,1,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,810,-5,0,1110,-14,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,5,0,1150,9,0,0 +2013,5,9,4,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1916,18,1,2105,7,0,0 +2013,6,28,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,208,1,2144,198,1,0 +2013,9,16,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1610,161,1,1715,146,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,60,1,1430,39,1,0 +2013,10,25,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1339,-6,0,1450,6,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1630,0,0,1945,-17,0,0 +2013,8,10,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1230,8,0,1750,-5,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1721,8,0,1859,7,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,44,1,1125,33,1,0 +2013,8,31,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1206,25,1,1425,32,1,0 +2013,8,14,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,76,1,1925,86,1,0 +2013,7,7,7,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1130,106,1,1725,103,1,0 +2013,5,28,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1710,4,0,1948,-1,0,0 +2013,8,14,3,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,33,-2,0,449,2,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,910,-5,0,1040,-17,0,0 +2013,4,22,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,852,-5,0,1143,-5,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,3,0,1310,6,0,0 +2013,10,15,2,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,735,-5,0,1559,13,0,0 +2013,6,24,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,0,,1845,0,1,1 +2013,6,13,4,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,540,-3,0,625,8,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,0,0,2335,-7,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1825,2,0,2000,2,0,0 +2013,8,25,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1920,-9,0,2135,-21,0,0 +2013,6,17,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1500,14,0,2312,0,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-1,0,1102,-9,0,0 +2013,4,16,2,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-7,0,816,-8,0,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1255,22,1,1405,15,1,0 +2013,4,17,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-6,0,917,-21,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-2,0,1407,-16,0,0 +2013,10,14,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,855,-8,0,940,-13,0,0 +2013,5,30,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,815,-3,0,1030,11,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1125,4,0,1255,1,0,0 +2013,8,11,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2025,16,1,2125,24,1,0 +2013,10,28,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,729,71,1,812,79,1,0 +2013,9,21,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1100,-1,0,1345,4,0,0 +2013,5,22,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,-5,0,1112,-11,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1252,-1,0,1407,-10,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2020,32,1,2335,22,1,0 +2013,6,26,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,14,0,1140,7,0,0 +2013,5,12,7,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,19,1,1717,8,0,0 +2013,9,21,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,9,0,1250,6,0,0 +2013,6,22,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1255,2,0,1435,-2,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1550,34,1,1655,29,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2205,-8,0,2331,-20,0,0 +2013,10,19,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1510,-8,0,1636,1,0,0 +2013,6,22,6,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1348,-10,0,1643,59,1,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,2,0,1813,-27,0,0 +2013,8,31,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-7,0,1250,-15,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2200,-5,0,2310,-16,0,0 +2013,7,12,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,1,0,615,34,1,0 +2013,5,25,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1019,-6,0,1140,-10,0,0 +2013,5,12,7,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,655,-1,0,1022,-19,0,0 +2013,5,1,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1655,-9,0,1930,-21,0,0 +2013,5,28,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,700,0,,826,0,1,1 +2013,5,19,7,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,1356,-9,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,80,1,1700,79,1,0 +2013,6,7,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,1,0,1030,-8,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,5,0,954,9,0,0 +2013,9,1,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1515,-5,0,1604,-9,0,0 +2013,4,8,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,-8,0,1903,-14,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1313,-3,0,1419,-12,0,0 +2013,8,9,5,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1040,5,0,1307,7,0,0 +2013,7,16,2,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2349,3,0,715,9,0,0 +2013,8,3,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1635,74,1,1757,62,1,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-3,0,1045,-4,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,-5,0,1320,-19,0,0 +2013,9,5,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1558,-5,0,1855,24,1,0 +2013,8,1,4,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,0,,1447,0,1,1 +2013,4,13,6,EV,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-4,0,2043,-30,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1430,18,1,1530,12,0,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1000,11,0,1125,8,0,0 +2013,4,1,1,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,835,-6,0,1055,-16,0,0 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,0,0,1815,4,0,0 +2013,9,6,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,0,0,1110,-6,0,0 +2013,8,17,6,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-7,0,1802,-16,0,0 +2013,8,21,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1359,-4,0,1556,-15,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1455,-2,0,1720,-32,0,0 +2013,5,18,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-5,0,1225,-46,0,0 +2013,7,3,3,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1550,1,0,1715,2,0,0 +2013,5,5,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1123,17,1,1502,27,1,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,4,0,1730,-7,0,0 +2013,6,18,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-6,0,1249,-6,0,0 +2013,8,10,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,930,-2,0,1235,0,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1640,-6,0,2015,-2,0,0 +2013,7,24,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2125,32,1,544,18,1,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1535,132,1,1850,107,1,0 +2013,4,24,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1058,0,0,1225,1,0,0 +2013,10,4,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1252,-3,0,1419,-15,0,0 +2013,8,12,1,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,810,-4,0,1140,-19,0,0 +2013,8,13,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,850,0,0,1209,12,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,835,-1,0,1005,4,0,0 +2013,5,1,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1730,-1,0,1935,-21,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-6,0,1627,-11,0,0 +2013,7,3,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1038,1,0,1137,-12,0,0 +2013,9,15,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,23,1,2005,17,1,0 +2013,4,18,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1110,8,0,1705,14,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1310,13,0,1600,-5,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,3,0,1619,-7,0,0 +2013,4,10,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1935,33,1,2038,28,1,0 +2013,6,27,4,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1932,10,0,30,-18,0,0 +2013,8,14,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,-3,0,2030,-10,0,0 +2013,5,6,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1730,32,1,1910,20,1,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1212,-2,0,1641,-13,0,0 +2013,6,25,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,109,1,810,116,1,0 +2013,7,1,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2100,-6,0,125,-10,0,0 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,41,1,1748,60,1,0 +2013,5,2,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1825,-10,0,2002,-17,0,0 +2013,6,4,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-2,0,1710,-25,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1003,-7,0,1058,-15,0,0 +2013,10,25,5,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,2105,-20,0,0 +2013,10,18,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1835,-1,0,2035,-14,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2140,18,1,35,16,1,0 +2013,9,1,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-4,0,1705,-5,0,0 +2013,9,25,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-10,0,1930,0,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2120,1,0,2235,-7,0,0 +2013,5,28,2,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,545,-13,0,803,-1,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1000,-1,0,1105,-5,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,849,41,1,1623,22,1,0 +2013,8,18,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1955,-8,0,2145,0,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1125,0,0,1715,-18,0,0 +2013,4,13,6,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,515,-6,0,807,-14,0,0 +2013,6,11,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1125,-9,0,1305,-36,0,0 +2013,10,6,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,730,-3,0,911,-10,0,0 +2013,4,3,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1700,-9,0,1814,-4,0,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1243,2,0,1420,-5,0,0 +2013,4,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1225,-2,0,1350,6,0,0 +2013,7,23,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1747,0,,2026,0,1,1 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,0,0,629,14,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1614,-2,0,1810,-3,0,0 +2013,10,20,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1241,13,0,1759,4,0,0 +2013,6,21,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,2,0,1815,-14,0,0 +2013,9,9,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1330,-6,0,1434,-19,0,0 +2013,4,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1546,-10,0,1602,-23,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,0,0,1623,-5,0,0 +2013,7,11,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,730,-20,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,705,-5,0,819,-17,0,0 +2013,9,1,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-5,0,804,-7,0,0 +2013,5,24,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,800,-3,0,940,-34,0,0 +2013,8,11,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,840,-2,0,945,-8,0,0 +2013,10,13,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2055,-1,0,2113,14,0,0 +2013,9,25,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1708,-2,0,2232,-21,0,0 +2013,6,8,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,94,1,2041,66,1,0 +2013,6,19,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,52,1,1845,46,1,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,850,-1,0,1415,-10,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,0,0,1705,1,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2115,44,1,2205,51,1,0 +2013,6,1,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1500,3,0,1807,-8,0,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1340,314,1,1615,311,1,0 +2013,7,9,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,27,1,1918,28,1,0 +2013,5,16,4,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1620,-7,0,1847,-12,0,0 +2013,6,13,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1225,10,0,1415,11,0,0 +2013,10,21,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,1,0,1854,-10,0,0 +2013,5,25,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-7,0,849,-3,0,0 +2013,10,8,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,835,-1,0,1643,-24,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1810,11,0,1930,-5,0,0 +2013,6,14,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1325,2,0,1450,-3,0,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,-3,0,1623,2,0,0 +2013,9,20,5,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1805,-8,0,2055,-27,0,0 +2013,5,29,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1735,16,1,1855,21,1,0 +2013,6,15,6,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-8,0,1223,-13,0,0 +2013,7,29,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,0,0,1440,13,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,8,0,1303,11,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1005,-2,0,1110,-10,0,0 +2013,6,19,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,156,1,130,147,1,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1405,5,0,1740,1,0,0 +2013,10,28,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,-2,0,810,-7,0,0 +2013,4,12,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,-2,0,1245,2,0,0 +2013,9,25,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1600,-6,0,1657,-9,0,0 +2013,6,15,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1516,-7,0,1608,-7,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2015,-2,0,2105,-10,0,0 +2013,10,11,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,0,0,2052,-4,0,0 +2013,8,8,4,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1040,-2,0,1559,-18,0,0 +2013,8,14,3,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1544,22,1,1807,43,1,0 +2013,9,5,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,815,-13,0,0 +2013,5,13,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,559,-6,0,652,-26,0,0 +2013,4,29,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,2030,-2,0,2210,1,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-4,0,1115,-6,0,0 +2013,5,28,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,704,283,1,904,278,1,0 +2013,6,16,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1520,24,1,1814,14,0,0 +2013,5,8,3,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,14,0,1835,-16,0,0 +2013,6,12,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,9,0,2020,10,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,-2,0,2110,9,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,6,0,1418,0,0,0 +2013,8,24,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,20,1,1810,13,0,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-6,0,2050,3,0,0 +2013,9,3,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,847,-2,0,1536,12,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,1,0,1027,-13,0,0 +2013,5,15,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,-8,0,1430,-13,0,0 +2013,6,9,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1150,21,1,1305,9,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1635,-2,0,1740,-7,0,0 +2013,4,28,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,900,51,1,955,37,1,0 +2013,10,26,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1740,-4,0,1840,-1,0,0 +2013,9,3,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2040,20,1,2232,11,0,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1000,-2,0,1220,-11,0,0 +2013,4,24,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1200,-9,0,1305,-1,0,0 +2013,4,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-5,0,827,-14,0,0 +2013,10,4,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1110,-3,0,1430,-38,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,0,0,1440,3,0,0 +2013,7,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1905,-2,0,2025,-8,0,0 +2013,4,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1505,-5,0,1720,-11,0,0 +2013,7,7,7,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1921,20,1,2337,15,1,0 +2013,10,6,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1530,-3,0,1820,-15,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,825,0,0,1400,-18,0,0 +2013,10,16,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,18,1,2010,-9,0,0 +2013,7,13,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,700,70,1,759,76,1,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1000,-3,0,1259,-22,0,0 +2013,7,5,5,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,942,-4,0,1134,4,0,0 +2013,4,25,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2115,18,1,2325,3,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,-5,0,1005,-10,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,725,-3,0,908,-17,0,0 +2013,4,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1030,-6,0,1520,-36,0,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-3,0,2205,-21,0,0 +2013,5,30,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,-3,0,1130,-5,0,0 +2013,8,6,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1745,-6,0,2055,-9,0,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2005,33,1,2149,-6,0,0 +2013,6,6,4,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1000,-5,0,1222,-4,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1155,0,0,1430,4,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,816,-4,0,1008,0,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2035,84,1,2201,68,1,0 +2013,10,1,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1535,-5,0,1640,-14,0,0 +2013,9,23,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,855,-3,0,949,-1,0,0 +2013,7,22,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,7,0,1445,-4,0,0 +2013,7,29,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,-9,0,1749,-6,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1050,-4,0,1249,-13,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-5,0,1150,-5,0,0 +2013,10,17,4,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1457,60,1,1620,64,1,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,-7,0,2252,-25,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,910,-5,0,1035,-7,0,0 +2013,5,11,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-3,0,850,-16,0,0 +2013,4,15,1,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1005,-10,0,1302,-17,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1810,14,0,1915,3,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2021,119,1,2113,125,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,732,4,0,916,-8,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1351,-2,0,1525,-7,0,0 +2013,8,17,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1509,-1,0,1621,-9,0,0 +2013,8,6,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1850,41,1,2014,25,1,0 +2013,9,24,2,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-5,0,1914,-8,0,0 +2013,8,20,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-4,0,641,-3,0,0 +2013,8,27,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1743,-4,0,2059,-14,0,0 +2013,7,1,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,935,7,0,1028,44,1,0 +2013,5,5,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-2,0,1412,-6,0,0 +2013,9,21,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,655,-3,0,820,-2,0,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-7,0,1130,3,0,0 +2013,4,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,-7,0,1448,-13,0,0 +2013,10,1,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1511,-9,0,1532,-20,0,0 +2013,7,10,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1910,0,,2050,0,1,1 +2013,7,11,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,52,1,2125,39,1,0 +2013,7,11,4,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,720,24,1,1445,29,1,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1729,-1,0,2251,-20,0,0 +2013,6,28,5,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1421,-4,0,1601,-17,0,0 +2013,6,7,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,843,-11,0,0 +2013,10,14,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-1,0,815,-1,0,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,-7,0,956,-25,0,0 +2013,5,10,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1145,11,0,1450,2,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1940,-3,0,2105,-25,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-3,0,1914,1,0,0 +2013,5,21,2,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1805,3,0,2044,29,1,0 +2013,9,2,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1210,-5,0,1520,50,1,0 +2013,7,30,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,-4,0,1007,4,0,0 +2013,8,25,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2126,48,1,2327,21,1,0 +2013,10,13,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,751,-7,0,839,-4,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,2,0,2220,9,0,0 +2013,7,10,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1553,162,1,1641,159,1,0 +2013,7,24,3,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-9,0,1545,5,0,0 +2013,4,19,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,941,1,0,1030,-6,0,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1530,-7,0,1755,-2,0,0 +2013,10,7,1,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1140,14,0,1420,-5,0,0 +2013,8,11,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1149,-1,0,1700,-12,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-6,0,936,-28,0,0 +2013,10,22,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-7,0,2352,1,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-4,0,1252,7,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1310,-3,0,1656,0,0,0 +2013,9,23,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1034,-5,0,1303,0,0,0 +2013,9,13,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-7,0,1520,-21,0,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,18,1,1736,10,0,0 +2013,4,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,47,1,2135,42,1,0 +2013,6,22,6,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-2,0,1115,3,0,0 +2013,10,8,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,1020,-15,0,0 +2013,5,21,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1744,11,0,1955,8,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1215,2,0,1450,-3,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2105,26,1,5,14,0,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1201,-3,0,1330,-4,0,0 +2013,8,7,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1520,-4,0,1645,11,0,0 +2013,5,22,3,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1505,-1,0,1618,-5,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,858,-5,0,1123,-1,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-3,0,947,-25,0,0 +2013,5,15,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,715,0,,825,0,1,1 +2013,7,3,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,16,1,1740,10,0,0 +2013,10,22,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1930,22,1,2025,21,1,0 +2013,5,11,6,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,1100,2,0,0 +2013,10,14,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2054,-3,0,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-6,0,1254,-10,0,0 +2013,6,10,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1120,28,1,1245,68,1,0 +2013,6,8,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1715,58,1,1835,42,1,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1505,18,1,1610,14,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,-7,0,1309,16,1,0 +2013,6,17,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1501,-5,0,0 +2013,9,15,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-1,0,1915,-24,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,705,23,1,925,12,0,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1403,-5,0,1539,-17,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1840,6,0,2310,9,0,0 +2013,6,17,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,905,23,1,1249,26,1,0 +2013,4,16,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-2,0,1410,-15,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,924,1,0,1259,25,1,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1900,-4,0,2000,-14,0,0 +2013,5,22,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,925,-4,0,1217,7,0,0 +2013,9,22,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,735,-6,0,855,-7,0,0 +2013,7,1,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,449,46,1,744,35,1,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2050,0,0,2305,7,0,0 +2013,8,2,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1100,66,1,1320,65,1,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-2,0,935,3,0,0 +2013,6,15,6,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,615,-7,0,855,-6,0,0 +2013,9,3,2,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,-2,0,1346,-5,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,-2,0,2327,-9,0,0 +2013,9,7,6,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1535,-9,0,1700,-14,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1800,8,0,1905,9,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,705,-5,0,819,-11,0,0 +2013,5,3,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-7,0,2357,-9,0,0 +2013,10,26,6,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,935,-5,0,1155,-6,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1333,-3,0,1515,-13,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1510,-8,0,2328,-3,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,-2,0,2218,-16,0,0 +2013,6,11,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,1,0,1110,-1,0,0 +2013,6,11,2,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,555,-3,0,900,-5,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-6,0,1300,-3,0,0 +2013,4,15,1,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1338,-6,0,1601,-15,0,0 +2013,5,14,2,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1416,42,1,1943,51,1,0 +2013,4,21,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1546,14,0,1623,11,0,0 +2013,5,4,6,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,855,6,0,1330,0,0,0 +2013,7,29,1,OO,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-7,0,1626,20,1,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,6,0,1700,0,0,0 +2013,4,3,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1740,-3,0,1832,-5,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,845,-1,0,1055,-3,0,0 +2013,8,19,1,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1234,-3,0,2103,-11,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-4,0,1636,-18,0,0 +2013,6,29,6,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1332,0,0,1455,-10,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-5,0,1038,-21,0,0 +2013,6,30,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2211,11,0,2307,9,0,0 +2013,10,13,7,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1900,-3,0,2135,-1,0,0 +2013,5,19,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,-7,0,1324,2,0,0 +2013,4,28,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1105,-3,0,1225,-4,0,0 +2013,6,27,4,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,5,0,743,5,0,0 +2013,10,15,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,-10,0,2019,4,0,0 +2013,8,11,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-2,0,1735,-13,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,905,24,1,1125,5,0,0 +2013,9,4,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,730,-5,0,950,-26,0,0 +2013,4,6,6,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1506,-9,0,1636,-4,0,0 +2013,5,28,2,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1150,-2,0,1303,1,0,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-2,0,1907,22,1,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,-3,0,2040,-18,0,0 +2013,9,29,7,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-5,0,1007,-12,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,744,-7,0,920,-10,0,0 +2013,5,8,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-4,0,1054,2,0,0 +2013,8,23,5,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-7,0,1648,-2,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1830,-6,0,2123,-32,0,0 +2013,10,27,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,6,0,1138,-1,0,0 +2013,4,6,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-5,0,1344,-8,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-1,0,1429,15,1,0 +2013,7,1,1,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,79,1,1705,110,1,0 +2013,4,24,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1505,-4,0,1808,5,0,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2155,98,1,43,123,1,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,756,-5,0,1037,-27,0,0 +2013,9,11,3,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,740,-5,0,1200,-10,0,0 +2013,8,15,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,650,-2,0,745,-13,0,0 +2013,6,7,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1110,28,1,1235,22,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,10,0,1240,-3,0,0 +2013,9,8,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1150,-6,0,1330,0,0,0 +2013,10,4,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2000,-9,0,2029,-22,0,0 +2013,6,12,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1308,142,1,1601,129,1,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,-1,0,1501,-10,0,0 +2013,9,17,2,9E,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-4,0,1903,-10,0,0 +2013,8,12,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,29,1,2015,19,1,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2200,-3,0,2322,-13,0,0 +2013,7,27,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-1,0,2011,11,0,0 +2013,9,8,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1540,7,0,2120,0,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,33,1,2255,25,1,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,845,5,0,1005,3,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-9,0,1125,-8,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,13,0,1233,22,1,0 +2013,8,16,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,12,0,2145,-14,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,13,0,2139,-1,0,0 +2013,7,16,2,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,530,-4,0,634,-20,0,0 +2013,5,1,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1110,8,0,1215,-2,0,0 +2013,6,23,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-6,0,2005,-19,0,0 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,6,0,2155,3,0,0 +2013,4,12,5,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1435,75,1,1655,70,1,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1315,38,1,1555,27,1,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-8,0,1834,-6,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,-1,0,55,-2,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-4,0,1340,-14,0,0 +2013,4,26,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1440,-7,0,1744,-10,0,0 +2013,9,23,1,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,830,-2,0,1120,-7,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,-2,0,2156,-30,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2155,-2,0,2345,-3,0,0 +2013,10,3,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,-4,0,725,-14,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1445,-5,0,1650,-9,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1359,-5,0,2227,11,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,827,-6,0,850,0,0,0 +2013,5,10,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,83,1,1155,77,1,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1410,1,0,1745,-5,0,0 +2013,7,10,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1955,0,,2145,0,1,1 +2013,7,3,3,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1720,79,1,1859,69,1,0 +2013,9,5,4,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1730,-2,0,1905,-18,0,0 +2013,4,8,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1505,8,0,1605,17,1,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,-8,0,1743,-14,0,0 +2013,10,18,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,17,1,1115,22,1,0 +2013,9,13,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,154,1,2040,159,1,0 +2013,5,7,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1236,1,0,1401,-7,0,0 +2013,6,12,3,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,19,1,1722,3,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1820,37,1,2140,6,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1755,-5,0,1915,-5,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,10,0,1550,13,0,0 +2013,5,17,5,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,816,-4,0,1400,-16,0,0 +2013,7,2,2,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-6,0,1813,-15,0,0 +2013,4,10,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-7,0,1205,1,0,0 +2013,4,27,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1905,0,0,2125,-15,0,0 +2013,5,18,6,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,22,1,2314,49,1,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,21,1,1545,24,1,0 +2013,7,25,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,55,9,0,603,-4,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1822,1,0,2118,-6,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,0,0,2040,14,0,0 +2013,4,23,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2245,-4,0,640,-33,0,0 +2013,8,9,5,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1200,-3,0,1250,-12,0,0 +2013,4,22,1,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,710,-4,0,927,-12,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,-1,0,1005,-10,0,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2115,1,0,2350,-17,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,820,-3,0,945,-11,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1650,225,1,1827,215,1,0 +2013,9,14,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-1,0,1330,-8,0,0 +2013,5,12,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,2140,25,1,2350,8,0,0 +2013,9,21,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,-4,0,2117,-10,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-2,0,1705,-11,0,0 +2013,5,3,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-1,0,849,-1,0,0 +2013,5,25,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,9,0,1937,-14,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1345,122,1,1450,113,1,0 +2013,5,31,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1744,-3,0,2016,-8,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,10,0,1834,23,1,0 +2013,7,7,7,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-5,0,1227,-27,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1320,-1,0,1650,-40,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,1040,-5,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,647,-7,0,926,-7,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1215,-4,0,1322,-2,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,31,1,1445,15,1,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1002,-2,0,1830,-9,0,0 +2013,7,24,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,-6,0,1235,-15,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,810,-5,0,1014,-8,0,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1058,0,,1420,0,1,1 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1025,28,1,1640,8,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1231,0,0,1424,5,0,0 +2013,9,28,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,14,0,1530,15,1,0 +2013,9,20,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1130,6,0,0 +2013,6,16,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2125,0,0,2225,-4,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1227,-3,0,1250,-15,0,0 +2013,7,11,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,-2,0,1945,-4,0,0 +2013,9,30,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,620,-5,0,710,-12,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,21,1,2100,10,0,0 +2013,9,6,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,635,6,0,820,-8,0,0 +2013,4,23,2,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,747,1,0,832,0,0,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,841,-1,0,946,3,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2230,-1,0,55,6,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,8,0,1915,9,0,0 +2013,5,21,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-3,0,2108,-8,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1330,-1,0,1455,10,0,0 +2013,8,21,3,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-10,0,735,-5,0,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,321,1,1830,327,1,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1154,2,0,1400,-15,0,0 +2013,8,8,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1359,1,0,1551,8,0,0 +2013,6,4,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,3,0,1943,-4,0,0 +2013,10,26,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1623,-10,0,1823,-8,0,0 +2013,10,31,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,1,0,940,18,1,0 +2013,7,21,7,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1320,10,0,1350,8,0,0 +2013,6,17,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,68,1,1135,64,1,0 +2013,5,25,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,600,-1,0,731,11,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2200,9,0,2250,1,0,0 +2013,7,13,6,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,-6,0,2120,-24,0,0 +2013,9,5,4,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-10,0,805,-16,0,0 +2013,5,7,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2005,-3,0,2010,-13,0,0 +2013,6,21,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-1,0,1737,-10,0,0 +2013,6,23,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1037,-4,0,1620,7,0,0 +2013,10,16,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1345,29,1,1700,30,1,0 +2013,10,22,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1731,13,0,1915,17,1,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,31,1,818,16,1,0 +2013,5,21,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1625,17,1,1755,9,0,0 +2013,5,3,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2002,27,1,2214,20,1,0 +2013,8,3,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,5,0,2035,-6,0,0 +2013,7,26,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,1028,-1,0,0 +2013,10,16,3,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-7,0,2359,-17,0,0 +2013,9,12,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1940,-4,0,2049,-15,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1835,16,1,2008,7,0,0 +2013,6,23,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,-2,0,735,-11,0,0 +2013,10,13,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,755,-5,0,935,-28,0,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,750,6,0,940,-2,0,0 +2013,7,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1340,-1,0,1440,-1,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,844,7,0,1009,21,1,0 +2013,5,9,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1214,2,0,1520,-27,0,0 +2013,7,28,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,710,-17,0,0 +2013,4,7,7,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1713,-4,0,1720,-6,0,0 +2013,6,17,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,55,-7,0,620,-19,0,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1713,23,1,2338,25,1,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1345,4,0,1540,0,0,0 +2013,9,21,6,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,1,0,1536,25,1,0 +2013,9,12,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-3,0,941,-13,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,914,1,0,1121,-33,0,0 +2013,8,19,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1545,0,0,1612,-18,0,0 +2013,6,18,2,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,37,1,1220,30,1,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2233,1,0,2345,0,0,0 +2013,6,11,2,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,-4,0,1959,-39,0,0 +2013,8,23,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-8,0,1425,-5,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,36,1,1301,44,1,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,16,1,2048,-4,0,0 +2013,4,12,5,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1800,125,1,2235,123,1,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,0,0,1735,-18,0,0 +2013,6,6,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-5,0,2113,-15,0,0 +2013,4,12,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,659,-11,0,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1334,-3,0,1629,-4,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1915,0,0,2040,-7,0,0 +2013,8,28,3,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,0,0,2110,-37,0,0 +2013,5,29,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,-8,0,1905,-4,0,0 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,5,0,1025,-1,0,0 +2013,5,4,6,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1035,3,0,1215,-3,0,0 +2013,10,4,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,755,-2,0,930,19,1,0 +2013,8,10,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1655,-7,0,1910,-12,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1545,-3,0,1915,-19,0,0 +2013,10,17,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,1,0,810,-10,0,0 +2013,7,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,10,0,940,4,0,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1145,-5,0,1250,-9,0,0 +2013,7,14,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1335,1,0,1555,-4,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1758,6,0,1933,-24,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1235,-4,0,1428,-8,0,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,6,0,1735,-4,0,0 +2013,5,4,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-5,0,1629,23,1,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,104,1,923,117,1,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,720,0,0,810,-5,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,-2,0,1455,-3,0,0 +2013,5,26,7,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,823,-3,0,923,-11,0,0 +2013,8,24,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,905,6,0,1315,-1,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1154,16,1,1340,10,0,0 +2013,4,24,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,700,15,1,930,16,1,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-1,0,2010,-5,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1620,27,1,1847,56,1,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,730,-7,0,835,-16,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-1,0,1323,-18,0,0 +2013,6,19,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1618,23,1,0 +2013,6,28,5,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1146,-1,0,1449,7,0,0 +2013,7,2,2,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1542,4,0,1803,0,0,0 +2013,10,31,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1300,5,0,1410,-1,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,-1,0,1158,6,0,0 +2013,7,19,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,67,1,1325,52,1,0 +2013,4,9,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,0,0,1100,28,1,0 +2013,5,6,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2015,-5,0,2200,-19,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,755,-3,0,934,6,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,0,0,850,-7,0,0 +2013,5,19,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,9,0,845,-7,0,0 +2013,9,1,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,810,-3,0,945,-1,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-1,0,1336,-32,0,0 +2013,6,19,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1055,-13,0,1336,-11,0,0 +2013,5,15,3,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1435,-2,0,1525,-6,0,0 +2013,5,22,3,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,1,0,1515,-1,0,0 +2013,9,29,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,825,2,0,1235,-22,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,-1,0,2314,-10,0,0 +2013,4,10,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-3,0,628,-9,0,0 +2013,4,12,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-5,0,742,-32,0,0 +2013,9,8,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1315,16,1,1430,41,1,0 +2013,10,20,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1900,28,1,2125,22,1,0 +2013,6,3,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1251,-1,0,1449,2,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1445,-2,0,1740,-6,0,0 +2013,7,16,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1034,-18,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1825,15,1,2215,8,0,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1755,4,0,2114,3,0,0 +2013,9,4,3,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1010,0,0,1605,-2,0,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-6,0,1033,-3,0,0 +2013,8,26,1,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1415,-5,0,1544,-12,0,0 +2013,4,13,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1710,0,0,1747,1,0,0 +2013,9,17,2,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,0,0,1035,1,0,0 +2013,4,2,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1345,-6,0,1647,22,1,0 +2013,4,15,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,64,1,2005,68,1,0 +2013,7,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1415,-2,0,1540,-11,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,0,0,1953,-10,0,0 +2013,10,24,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1251,-1,0,1407,20,1,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1923,9,0,2102,-6,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1716,4,0,1942,-8,0,0 +2013,6,21,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1205,-10,0,1459,-13,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1057,1,0,1337,5,0,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,0,0,842,-4,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-1,0,1105,-20,0,0 +2013,8,13,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1525,-1,0,1940,-5,0,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,251,1,1901,263,1,0 +2013,5,14,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,-1,0,1640,-10,0,0 +2013,6,13,4,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1510,9,0,1630,-5,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1340,8,0,1840,10,0,0 +2013,7,23,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-2,0,1606,4,0,0 +2013,5,14,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1620,0,0,2030,-8,0,0 +2013,8,18,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-5,0,1151,-5,0,0 +2013,9,8,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,5,0,2235,17,1,0 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1430,75,1,1725,109,1,0 +2013,7,24,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2040,27,1,2232,14,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-3,0,815,-5,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,25,1,1750,14,0,0 +2013,4,11,4,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1921,-6,0,2147,-8,0,0 +2013,4,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1010,-1,0,1145,2,0,0 +2013,7,30,2,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2005,49,1,1130,23,1,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,1,0,1153,-13,0,0 +2013,10,14,1,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1729,-4,0,2029,-8,0,0 +2013,6,30,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2006,-12,0,2148,-17,0,0 +2013,4,29,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,842,-9,0,1015,-26,0,0 +2013,6,23,7,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1010,2,0,1245,14,0,0 +2013,9,2,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1415,-3,0,1555,0,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1855,12,0,2113,6,0,0 +2013,6,15,6,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1120,-2,0,1712,9,0,0 +2013,7,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,700,-7,0,816,-7,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,741,-4,0,910,-23,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,0,,5,0,1,1 +2013,7,4,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,0,0,1042,-4,0,0 +2013,6,5,3,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2038,-6,0,2359,-23,0,0 +2013,9,12,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,281,1,1642,277,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1435,19,1,1610,13,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,2,0,1518,-11,0,0 +2013,4,22,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-4,0,835,-18,0,0 +2013,9,23,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,-9,0,2025,-10,0,0 +2013,9,27,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1850,32,1,2015,24,1,0 +2013,4,16,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,1,0,1459,-12,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1052,92,1,1408,72,1,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,2005,20,1,2210,7,0,0 +2013,6,30,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1200,-5,0,1440,14,0,0 +2013,4,28,7,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,710,-7,0,742,-8,0,0 +2013,9,30,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1415,-3,0,1515,-11,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,820,0,0,934,28,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,7,0,1351,7,0,0 +2013,7,24,3,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,730,-4,0,933,-10,0,0 +2013,7,28,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,2022,39,1,2129,56,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1921,0,0,2051,-18,0,0 +2013,7,29,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,600,-7,0,850,-16,0,0 +2013,5,17,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1749,-1,0,1824,-9,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1945,18,1,2250,25,1,0 +2013,6,25,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1525,41,1,1625,31,1,0 +2013,10,18,5,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,15,1,1740,0,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,930,-1,0,1320,4,0,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-5,0,1015,-30,0,0 +2013,5,12,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,-1,0,2150,-9,0,0 +2013,8,7,3,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2202,-5,0,2344,-17,0,0 +2013,10,15,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,-5,0,1914,-5,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1510,-5,0,1830,-6,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,71,1,1701,72,1,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,26,1,2120,-1,0,0 +2013,4,11,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,700,0,,720,0,1,1 +2013,4,26,5,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,800,-5,0,916,-7,0,0 +2013,8,9,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,0,0,1010,-3,0,0 +2013,6,8,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1200,5,0,1300,0,0,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1325,17,1,1435,8,0,0 +2013,4,3,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,707,-15,0,0 +2013,10,24,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1420,0,0,1550,0,0,0 +2013,10,1,2,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-6,0,1020,-23,0,0 +2013,5,22,3,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1720,12,0,1908,14,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1640,25,1,1825,17,1,0 +2013,10,31,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1750,-3,0,1917,-14,0,0 +2013,5,22,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1805,0,,1925,0,1,1 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1205,-5,0,2040,-9,0,0 +2013,8,22,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,133,1,1810,130,1,0 +2013,5,12,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1125,-2,0,1449,-19,0,0 +2013,6,10,1,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-7,0,10,-11,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1634,-2,0,1814,-15,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,931,1,0,1145,-24,0,0 +2013,7,18,4,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1317,7,0,1528,-18,0,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,825,11,0,1055,6,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,845,5,0,1018,0,0,0 +2013,5,28,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1258,2,0,0 +2013,6,24,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,705,-1,0,930,-2,0,0 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1054,1,0,1922,-8,0,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1715,38,1,1929,10,0,0 +2013,9,10,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1935,-6,0,2156,-11,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,735,-2,0,926,-3,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1600,-10,0,1734,-29,0,0 +2013,4,26,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,-1,0,2255,-1,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,12,0,1840,19,1,0 +2013,8,11,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-1,0,1135,-10,0,0 +2013,6,29,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1716,-2,0,2137,-13,0,0 +2013,7,14,7,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,8,0,1719,1,0,0 +2013,5,20,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1005,0,0,1125,6,0,0 +2013,4,9,2,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-5,0,2359,6,0,0 +2013,5,13,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1045,-10,0,1333,-19,0,0 +2013,9,6,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1635,-7,0,1756,-9,0,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1650,17,1,1810,19,1,0 +2013,8,9,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1510,-1,0,1655,13,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1425,55,1,1545,53,1,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,24,1,2318,21,1,0 +2013,10,1,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-5,0,1920,-18,0,0 +2013,4,4,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-13,0,1750,-21,0,0 +2013,4,20,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,2,0,1810,-20,0,0 +2013,8,29,4,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1859,5,0,2012,-8,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,-3,0,1156,7,0,0 +2013,7,29,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-2,0,1710,14,0,0 +2013,6,17,1,9E,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,835,-8,0,1023,-18,0,0 +2013,4,17,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,320,1,2215,329,1,0 +2013,10,29,2,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-10,0,1930,7,0,0 +2013,10,21,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1350,-3,0,1500,-14,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,901,10,0,1101,-8,0,0 +2013,10,31,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1425,13,0,1545,-1,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,2,0,1530,-4,0,0 +2013,6,11,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1904,-2,0,8,-13,0,0 +2013,4,20,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,34,1,950,38,1,0 +2013,5,21,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,15,1,1150,5,0,0 +2013,4,4,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,3,0,1255,-13,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-4,0,1210,-11,0,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1153,-2,0,1333,-14,0,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,1,0,2114,-4,0,0 +2013,9,26,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2059,-6,0,2211,-1,0,0 +2013,6,24,1,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1228,155,1,1429,135,1,0 +2013,6,30,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1945,4,0,2057,-14,0,0 +2013,5,26,7,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,718,-5,0,852,-22,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,1,0,705,10,0,0 +2013,7,24,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,-1,0,2210,15,1,0 +2013,7,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1058,2,0,1327,-17,0,0 +2013,4,14,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,630,-7,0,1040,-15,0,0 +2013,4,8,1,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1217,-5,0,1413,-20,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,147,1,1922,151,1,0 +2013,9,28,6,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,830,-7,0,1114,-5,0,0 +2013,5,11,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1200,14,0,1300,-5,0,0 +2013,9,28,6,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1325,-1,0,1630,-9,0,0 +2013,9,11,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1238,-4,0,1429,-20,0,0 +2013,7,2,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-6,0,1227,0,0,0 +2013,10,2,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-4,0,855,-17,0,0 +2013,8,27,2,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,-8,0,1735,12,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,-1,0,1550,-16,0,0 +2013,8,19,1,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1205,-7,0,1351,-4,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1350,31,1,1715,14,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1042,2,0,1915,-19,0,0 +2013,5,9,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,-3,0,1848,5,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1921,46,1,2051,27,1,0 +2013,9,7,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1645,-2,0,1800,-5,0,0 +2013,6,21,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1118,15,1,1302,18,1,0 +2013,7,25,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-8,0,945,-6,0,0 +2013,7,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1910,11,0,2220,10,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,820,-5,0,929,-12,0,0 +2013,9,24,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-4,0,1013,2,0,0 +2013,7,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1415,-1,0,1540,-10,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,-4,0,1529,-9,0,0 +2013,5,15,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2200,0,0,2305,-13,0,0 +2013,7,5,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,-2,0,1915,-8,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2054,-3,0,2359,-9,0,0 +2013,10,30,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,6,0,1055,12,0,0 +2013,10,31,4,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1727,295,1,1806,281,1,0 +2013,10,5,6,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1132,-1,0,1316,-17,0,0 +2013,10,4,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1144,-19,0,0 +2013,7,26,5,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1650,6,0,1808,8,0,0 +2013,5,7,2,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,-7,0,1925,-7,0,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,92,1,2321,80,1,0 +2013,6,17,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1935,0,0,2105,-1,0,0 +2013,7,13,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,1,0,1330,0,0,0 +2013,7,9,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-4,0,2058,1,0,0 +2013,6,21,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-7,0,2010,2,0,0 +2013,5,3,5,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1100,3,0,1224,7,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1115,-4,0,1225,-17,0,0 +2013,8,25,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1243,34,1,1340,23,1,0 +2013,9,14,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,1,0,1200,3,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,930,-4,0,1039,-9,0,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1759,17,1,2046,43,1,0 +2013,10,6,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,645,-3,0,1504,16,1,0 +2013,9,11,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1220,-8,0,1318,-19,0,0 +2013,4,6,6,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1640,-6,0,1935,-22,0,0 +2013,8,24,6,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-5,0,1018,4,0,0 +2013,9,30,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1250,19,1,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1430,11,0,1555,2,0,0 +2013,9,4,3,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-5,0,1815,-18,0,0 +2013,6,26,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1320,-1,0,1410,3,0,0 +2013,7,23,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-8,0,736,-29,0,0 +2013,6,2,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-8,0,1609,-8,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,814,-3,0,903,2,0,0 +2013,5,8,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,943,-10,0,1043,-21,0,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,137,1,1805,163,1,0 +2013,6,13,4,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,95,1,1330,124,1,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2045,-3,0,2235,-14,0,0 +2013,9,25,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,0,0,1103,-11,0,0 +2013,9,17,2,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1256,0,0,1521,-14,0,0 +2013,8,15,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-6,0,541,-2,0,0 +2013,6,27,4,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,825,-7,0,1130,1,0,0 +2013,4,22,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,946,-6,0,1100,-13,0,0 +2013,4,23,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1400,-10,0,1714,28,1,0 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1845,1,0,2010,-1,0,0 +2013,5,20,1,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1955,89,1,2139,69,1,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1600,4,0,1731,-18,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1154,4,0,1600,-13,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1030,-3,0,1309,-6,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1335,-4,0,1642,-13,0,0 +2013,9,18,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,540,0,0,856,-16,0,0 +2013,8,31,6,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1420,8,0,1755,1,0,0 +2013,9,7,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,-7,0,1644,21,1,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,1,0,1505,-4,0,0 +2013,4,6,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1520,-6,0,1700,-17,0,0 +2013,9,14,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1415,255,1,1527,261,1,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,615,0,0,855,-3,0,0 +2013,4,2,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-9,0,1256,-10,0,0 +2013,6,16,7,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,0,0,531,-28,0,0 +2013,9,12,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1800,0,,2001,0,1,1 +2013,9,4,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1310,13,0,1515,14,0,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1730,4,0,1950,-17,0,0 +2013,9,20,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1450,30,1,1505,30,1,0 +2013,8,14,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,10,0,2131,9,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,729,0,0,900,-17,0,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1905,3,0,2030,-7,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,2005,8,0,45,-7,0,0 +2013,5,15,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-8,0,1108,-10,0,0 +2013,8,20,2,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1001,26,1,1139,4,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1720,2,0,2005,-23,0,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,2,0,830,-7,0,0 +2013,5,17,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1253,0,0,0 +2013,8,5,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-2,0,825,3,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1905,3,0,5,2,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,825,0,0,1055,-12,0,0 +2013,8,9,5,EV,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1431,3,0,1703,-12,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1800,42,1,1905,40,1,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1606,0,0,1859,0,0,0 +2013,4,14,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1810,46,1,1910,43,1,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,900,0,0,1405,1,0,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,-5,0,839,-8,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-5,0,1122,-11,0,0 +2013,7,17,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,714,11,0,817,16,1,0 +2013,4,25,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,715,15,1,1007,15,1,0 +2013,6,1,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-5,0,1448,-9,0,0 +2013,4,23,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-10,0,650,-7,0,0 +2013,10,29,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,-3,0,1125,1,0,0 +2013,4,5,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-1,0,2211,8,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2105,32,1,2240,39,1,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,-4,0,2336,2,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1455,8,0,1750,2,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2105,-8,0,2320,-4,0,0 +2013,6,8,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-2,0,1150,-22,0,0 +2013,9,20,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1955,10,0,2020,3,0,0 +2013,6,26,3,9E,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-6,0,1706,14,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2030,38,1,2345,34,1,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2042,-1,0,2359,-2,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,27,1,1332,8,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,5,0,1510,-8,0,0 +2013,4,10,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,206,1,1638,273,1,0 +2013,6,17,1,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1050,23,1,1415,28,1,0 +2013,5,16,4,DL,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1856,18,1,7,14,0,0 +2013,8,17,6,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,730,-3,0,1005,-5,0,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,6,0,1035,1,0,0 +2013,5,25,6,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,700,-3,0,825,-17,0,0 +2013,4,16,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1730,19,1,2041,9,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1205,37,1,1325,32,1,0 +2013,6,20,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-7,0,1450,-20,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-2,0,1133,1,0,0 +2013,10,24,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,830,-3,0,1021,-4,0,0 +2013,10,3,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-6,0,1918,-5,0,0 +2013,9,25,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,0,0,810,-7,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1838,13,0,2033,22,1,0 +2013,6,27,4,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2035,9,0,2335,4,0,0 +2013,9,22,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,0,0,1725,-10,0,0 +2013,5,30,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1121,-5,0,1232,-5,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,17,1,1623,17,1,0 +2013,6,21,5,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-9,0,1300,-20,0,0 +2013,4,25,4,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,858,-3,0,1003,-5,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,17,1,1909,22,1,0 +2013,9,28,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1715,-5,0,1905,-20,0,0 +2013,7,18,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1526,8,0,0 +2013,7,10,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,645,-1,0,933,-6,0,0 +2013,5,15,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1250,-1,0,1425,-35,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-1,0,940,5,0,0 +2013,10,17,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,18,1,1725,12,0,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2205,35,1,2335,26,1,0 +2013,6,26,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1956,59,1,2304,73,1,0 +2013,8,15,4,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1633,108,1,1805,85,1,0 +2013,6,17,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1729,-1,0,1905,-21,0,0 +2013,8,18,7,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,850,-3,0,1255,-33,0,0 +2013,6,6,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1109,3,0,1359,-15,0,0 +2013,6,7,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-3,0,1332,-7,0,0 +2013,4,26,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,715,-4,0,810,-11,0,0 +2013,10,9,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,11,0,2110,3,0,0 +2013,8,26,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,615,-5,0,740,1,0,0 +2013,4,15,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,834,-11,0,946,-29,0,0 +2013,10,19,6,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1500,-9,0,1758,-6,0,0 +2013,7,25,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-6,0,806,-12,0,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1246,1,0,1810,-17,0,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,-2,0,1830,-10,0,0 +2013,7,13,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1136,-8,0,1239,-15,0,0 +2013,8,1,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1804,63,1,2029,64,1,0 +2013,5,4,6,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1744,-14,0,1933,-15,0,0 +2013,4,27,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-5,0,1720,6,0,0 +2013,9,14,6,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,-8,0,2305,0,0,0 +2013,10,11,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,-6,0,1256,-22,0,0 +2013,4,6,6,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1435,-5,0,1745,-6,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1450,-1,0,1745,-30,0,0 +2013,4,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-2,0,1600,-6,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1403,10,0,1637,-6,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,9,0,1245,-5,0,0 +2013,7,28,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-3,0,1010,-5,0,0 +2013,9,23,1,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1244,2,0,1725,4,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,959,-1,0,1240,-23,0,0 +2013,5,13,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-1,0,910,-21,0,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1135,25,1,1250,45,1,0 +2013,5,15,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1823,14,0,2123,5,0,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,1030,-5,0,1157,-18,0,0 +2013,10,29,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1050,-5,0,0 +2013,4,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1245,-7,0,1327,-9,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,0,0,1020,3,0,0 +2013,5,19,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1110,-5,0,1300,-8,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1812,14,0,2033,2,0,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1855,14,0,2207,6,0,0 +2013,5,20,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1254,1,0,1354,12,0,0 +2013,8,27,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1320,-5,0,1520,-15,0,0 +2013,6,6,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,-6,0,2043,-9,0,0 +2013,9,21,6,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1030,10,0,1341,8,0,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,0,,1755,0,1,1 +2013,7,24,3,US,10529,Bradley International,Hartford,CT,11278,Ronald Reagan Washington National,Washington,DC,620,-6,0,741,-16,0,0 +2013,6,5,3,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-5,0,2050,-27,0,0 +2013,7,10,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,-11,0,1409,5,0,0 +2013,10,18,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,802,1,0,1039,14,0,0 +2013,9,2,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,9,0,1645,16,1,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1311,-3,0,1456,-3,0,0 +2013,5,25,6,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1645,4,0,1925,6,0,0 +2013,4,17,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1255,-4,0,1441,-17,0,0 +2013,6,20,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,700,68,1,830,52,1,0 +2013,5,23,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,813,-2,0,1035,-15,0,0 +2013,9,26,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,-6,0,2355,-18,0,0 +2013,5,21,2,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-8,0,1412,-17,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-3,0,1210,-8,0,0 +2013,4,30,2,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1511,-8,0,1611,14,0,0 +2013,6,18,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1351,18,1,1514,17,1,0 +2013,8,2,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,0,0,635,1,0,0 +2013,6,1,6,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-4,0,1955,-17,0,0 +2013,8,15,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1903,-2,0,2002,-17,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,855,58,1,1054,48,1,0 +2013,4,12,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1600,-7,0,2112,-29,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1611,-2,0,1814,-22,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,0,0,2009,-5,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1712,-4,0,1847,-13,0,0 +2013,5,16,4,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,15,1,2020,42,1,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,0,0,910,-10,0,0 +2013,7,24,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-4,0,1945,6,0,0 +2013,8,23,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,17,1,2035,15,1,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2140,-1,0,516,-6,0,0 +2013,8,14,3,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-2,0,2200,-18,0,0 +2013,6,30,7,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1555,3,0,2359,6,0,0 +2013,9,20,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-6,0,953,-12,0,0 +2013,4,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1045,3,0,1605,-8,0,0 +2013,5,18,6,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1030,-5,0,1121,-20,0,0 +2013,8,1,4,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,600,-5,0,745,-10,0,0 +2013,8,19,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-3,0,810,-13,0,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,7,0,1149,4,0,0 +2013,10,25,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,-5,0,1914,-17,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1359,-1,0,1502,5,0,0 +2013,5,20,1,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1121,148,1,1356,138,1,0 +2013,8,25,7,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1212,-2,0,1328,5,0,0 +2013,8,14,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,812,0,0,1105,-1,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1630,-3,0,1820,-17,0,0 +2013,6,26,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,27,1,5,19,1,0 +2013,7,9,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1448,2,0,1655,0,0,0 +2013,6,15,6,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1053,6,0,1445,-1,0,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,908,-5,0,1152,-12,0,0 +2013,8,8,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-7,0,2034,-2,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,3,0,2145,-2,0,0 +2013,8,9,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,1,0,930,-1,0,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1946,10,0,2242,3,0,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,6,0,1610,-7,0,0 +2013,7,31,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,917,-4,0,1451,-21,0,0 +2013,4,23,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1419,26,1,1625,46,1,0 +2013,8,17,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1525,-5,0,1647,-7,0,0 +2013,6,30,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-4,0,1938,-5,0,0 +2013,10,23,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,745,0,0,1100,-5,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1430,12,0,1630,11,0,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1020,-2,0,1301,-20,0,0 +2013,7,19,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1632,4,0,1725,-5,0,0 +2013,4,21,7,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,-2,0,1806,-3,0,0 +2013,7,31,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,14,0,2055,1,0,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1127,-1,0,1208,-4,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,9,0,1406,1,0,0 +2013,10,6,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1740,147,1,1919,143,1,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,5,0,1412,0,0,0 +2013,9,25,3,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,0,0,1610,-13,0,0 +2013,8,23,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-1,0,1245,4,0,0 +2013,6,25,2,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1344,-7,0,1601,-4,0,0 +2013,5,7,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-4,0,1040,-10,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1449,1,0,2214,18,1,0 +2013,6,2,7,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1630,-10,0,1721,-24,0,0 +2013,8,2,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1755,3,0,1855,-4,0,0 +2013,10,9,3,OO,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-9,0,2017,-23,0,0 +2013,4,1,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2055,30,1,2148,24,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1740,48,1,2110,37,1,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1435,6,0,1600,4,0,0 +2013,5,2,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1640,12,0,1850,8,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1320,-3,0,1540,-17,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2159,0,0,2356,3,0,0 +2013,4,9,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,700,-1,0,721,19,1,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1705,63,1,2230,51,1,0 +2013,8,13,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,5,0,1015,-3,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2140,4,0,2255,-9,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1105,-2,0,1414,-17,0,0 +2013,8,28,3,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1940,38,1,2202,42,1,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1610,8,0,1715,6,0,0 +2013,7,8,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,148,1,1920,148,1,0 +2013,10,26,6,YV,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-6,0,1703,1,0,0 +2013,4,30,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,18,1,1825,15,1,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1456,-10,0,1847,-24,0,0 +2013,7,20,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1641,10,0,1941,17,1,0 +2013,8,15,4,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1701,17,1,1908,10,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1602,11,0,1715,19,1,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1525,8,0,1625,15,1,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2145,9,0,2306,3,0,0 +2013,6,7,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,32,1,1030,20,1,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,0,,1540,0,1,1 +2013,10,6,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1730,-5,0,2104,-20,0,0 +2013,10,5,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1750,-5,0,1930,-28,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1243,-4,0,1502,-1,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1926,23,1,2210,-28,0,0 +2013,6,26,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,2,0,1145,0,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1840,-5,0,2005,-12,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1005,5,0,1505,-8,0,0 +2013,5,21,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1204,-2,0,1444,8,0,0 +2013,8,29,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1525,12,0,1645,8,0,0 +2013,7,31,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-4,0,830,-7,0,0 +2013,5,27,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,3,0,1414,-8,0,0 +2013,8,26,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2012,-5,0,2140,-12,0,0 +2013,7,15,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2100,-5,0,2220,11,0,0 +2013,4,22,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,43,1,1330,47,1,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,18,1,1813,13,0,0 +2013,4,10,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1757,1,0,1915,-2,0,0 +2013,8,4,7,9E,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,1415,-6,0,1557,4,0,0 +2013,9,4,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,825,-2,0,1023,1,0,0 +2013,8,6,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-5,0,905,7,0,0 +2013,9,8,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2015,1,0,2125,-5,0,0 +2013,4,12,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1800,43,1,2115,39,1,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,36,1,2321,50,1,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,4,0,2140,1,0,0 +2013,7,31,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,700,-2,0,820,-21,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1500,68,1,1811,70,1,0 +2013,10,16,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,17,1,2205,5,0,0 +2013,6,3,1,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1000,-1,0,1319,-7,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1308,-7,0,1830,-12,0,0 +2013,7,9,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-6,0,1008,-25,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,2,0,1500,-22,0,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1148,4,0,1505,-25,0,0 +2013,5,26,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,650,0,0,736,-5,0,0 +2013,8,4,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,3,0,1627,-1,0,0 +2013,10,6,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,757,-6,0,923,-4,0,0 +2013,4,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,35,1,2305,23,1,0 +2013,9,7,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1541,0,0,1737,-5,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2105,0,0,2225,-10,0,0 +2013,5,28,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-2,0,945,-23,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,900,-4,0,1321,-21,0,0 +2013,7,31,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,745,-1,0,845,-1,0,0 +2013,5,29,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,66,1,2023,70,1,0 +2013,4,5,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,930,-3,0,1100,-3,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,819,5,0,1103,12,0,0 +2013,8,8,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,12,0,2025,5,0,0 +2013,5,15,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,720,-1,0,905,0,0,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,-4,0,1130,-6,0,0 +2013,8,2,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1110,31,1,1246,28,1,0 +2013,5,30,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2340,1,0,653,-5,0,0 +2013,9,24,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-5,0,1143,-11,0,0 +2013,9,8,7,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,940,-8,0,1045,-8,0,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1833,74,1,2158,69,1,0 +2013,4,14,7,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,-3,0,2025,13,0,0 +2013,10,10,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1641,60,1,1930,59,1,0 +2013,6,13,4,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1358,35,1,1601,68,1,0 +2013,5,4,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,915,-7,0,1445,-2,0,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,935,18,1,1040,17,1,0 +2013,7,4,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,2,0,932,7,0,0 +2013,4,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1557,0,0,1758,-1,0,0 +2013,9,4,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1040,-5,0,1308,-33,0,0 +2013,9,20,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,-1,0,1140,-4,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1445,0,0,1625,-2,0,0 +2013,5,4,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1330,-15,0,1350,-17,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1737,-3,0,1902,-29,0,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1200,-2,0,1310,-14,0,0 +2013,4,5,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1155,-3,0,1320,-4,0,0 +2013,7,9,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2003,63,1,2212,89,1,0 +2013,10,18,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1625,4,0,1953,-20,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1859,23,1,2344,26,1,0 +2013,8,19,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,-4,0,1835,3,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,851,1,0,1022,-11,0,0 +2013,8,27,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,18,1,1155,12,0,0 +2013,5,12,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,0,0,1145,-1,0,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1815,0,0,2016,-5,0,0 +2013,10,9,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-12,0,1952,8,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1015,9,0,1143,1,0,0 +2013,10,30,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,-4,0,1030,-12,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1515,1,0,1735,-15,0,0 +2013,8,18,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,610,-9,0,800,-36,0,0 +2013,9,12,4,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1711,0,,1850,0,1,1 +2013,4,14,7,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,915,-5,0,1205,-8,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1309,14,0,1629,3,0,0 +2013,7,16,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,0,0,1210,-2,0,0 +2013,7,27,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1205,0,0,1335,-8,0,0 +2013,10,5,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,-2,0,1829,-7,0,0 +2013,7,13,6,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,46,0,0,606,11,0,0 +2013,4,25,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,6,0,1656,12,0,0 +2013,8,20,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1350,3,0,1625,-8,0,0 +2013,7,8,1,OO,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1436,16,1,1624,45,1,0 +2013,10,18,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1752,-1,0,1914,-7,0,0 +2013,9,19,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,831,-7,0,931,-1,0,0 +2013,5,27,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,942,-11,0,0 +2013,8,16,5,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2320,13,0,650,4,0,0 +2013,7,2,2,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,-2,0,1828,4,0,0 +2013,5,23,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,-2,0,735,-5,0,0 +2013,5,10,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1200,-4,0,1325,-7,0,0 +2013,7,29,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,847,-3,0,0 +2013,8,28,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,2009,-9,0,2333,-15,0,0 +2013,9,9,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,715,-6,0,830,-22,0,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1435,32,1,1545,29,1,0 +2013,8,12,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1025,-4,0,1301,-1,0,0 +2013,4,10,3,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1114,-7,0,1303,-5,0,0 +2013,8,14,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1515,11,0,1730,3,0,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1950,-2,0,2115,-5,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1150,0,0,1435,-24,0,0 +2013,7,9,2,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-5,0,1305,-23,0,0 +2013,10,2,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,-8,0,1931,-1,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1520,-6,0,1758,-17,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2120,6,0,2345,10,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1614,11,0,1719,18,1,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1815,76,1,2020,80,1,0 +2013,6,26,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1715,14,0,1957,-2,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1225,15,1,1505,6,0,0 +2013,8,23,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,615,0,,755,0,1,1 +2013,7,31,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,29,1,1915,30,1,0 +2013,9,12,4,OO,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1545,47,1,1723,58,1,0 +2013,8,31,6,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,2,0,1235,1,0,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2050,70,1,2205,55,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,142,1,2359,124,1,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1844,85,1,2154,117,1,0 +2013,5,31,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,14,0,1355,27,1,0 +2013,5,3,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-13,0,711,-7,0,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,9,0,945,4,0,0 +2013,8,30,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1949,-4,0,2212,-14,0,0 +2013,7,16,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,-4,0,1255,-10,0,0 +2013,7,9,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,720,-1,0,917,-12,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1927,-2,0,2120,-10,0,0 +2013,4,2,2,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,555,-10,0,847,-15,0,0 +2013,5,15,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,0,1855,2,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,725,-3,0,850,-9,0,0 +2013,8,21,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1905,0,0,2220,-24,0,0 +2013,4,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-2,0,2225,-6,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,845,4,0,1036,-12,0,0 +2013,10,6,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1605,3,0,1725,2,0,0 +2013,4,13,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,625,56,1,920,73,1,0 +2013,5,27,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-11,0,925,-14,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,924,-1,0,1111,-3,0,0 +2013,10,24,4,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1705,-2,0,1900,-17,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1455,6,0,1752,-1,0,0 +2013,5,25,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1645,0,0,1753,-17,0,0 +2013,10,2,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1755,3,0,1857,1,0,0 +2013,8,15,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1510,-1,0,1800,-14,0,0 +2013,9,5,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-14,0,2028,-13,0,0 +2013,8,21,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1446,12,0,2029,2,0,0 +2013,6,4,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1100,-2,0,1200,-2,0,0 +2013,9,26,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,840,-5,0,1006,-26,0,0 +2013,9,13,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-9,0,1230,-9,0,0 +2013,6,28,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,530,-2,0,627,-9,0,0 +2013,5,26,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,-7,0,946,-35,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,7,0,1152,16,1,0 +2013,10,12,6,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1044,-1,0,1149,1,0,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1527,0,0,1717,-29,0,0 +2013,8,5,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-4,0,2215,-17,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,13,0,1740,4,0,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-4,0,1415,-18,0,0 +2013,5,28,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,27,1,1915,32,1,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1124,104,1,1419,98,1,0 +2013,7,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,0,0,1455,-11,0,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1105,-6,0,1420,-19,0,0 +2013,6,16,7,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1805,2,0,2045,-16,0,0 +2013,5,23,4,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,129,1,2125,127,1,0 +2013,10,6,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1630,3,0,1855,15,1,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,9,0,1140,-5,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1136,90,1,1247,83,1,0 +2013,9,6,5,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-8,0,1920,-10,0,0 +2013,5,15,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,-3,0,1503,-2,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1240,-1,0,1420,-4,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1945,8,0,110,4,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1922,0,0,115,-13,0,0 +2013,10,4,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,-9,0,1808,-21,0,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,-4,0,1015,-6,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,830,9,0,1310,-7,0,0 +2013,6,9,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2055,21,1,2245,18,1,0 +2013,8,5,1,9E,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,647,-8,0,821,9,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2050,-5,0,2205,-21,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-8,0,2335,-13,0,0 +2013,4,12,5,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,39,1,1443,38,1,0 +2013,6,5,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1150,-7,0,1515,-17,0,0 +2013,7,22,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1425,16,1,1725,2,0,0 +2013,10,4,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-7,0,1557,-4,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,700,-5,0,1155,-8,0,0 +2013,9,14,6,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1110,-2,0,1907,12,0,0 +2013,5,13,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-4,0,1045,-17,0,0 +2013,8,15,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1336,-9,0,1555,-17,0,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2029,-5,0,2253,9,0,0 +2013,9,22,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1213,-13,0,1758,-43,0,0 +2013,6,8,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,14,0,1205,8,0,0 +2013,9,8,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,-4,0,1854,-12,0,0 +2013,4,17,3,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-4,0,1510,-17,0,0 +2013,8,30,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1300,64,1,1420,66,1,0 +2013,6,25,2,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1335,16,1,1920,3,0,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,0,0,1617,5,0,0 +2013,10,9,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1950,-4,0,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1420,1,0,2015,12,0,0 +2013,8,3,6,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2030,-4,0,2250,-11,0,0 +2013,5,26,7,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1427,-1,0,1650,-5,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-5,0,2245,-3,0,0 +2013,8,6,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,600,-9,0,850,-4,0,0 +2013,7,8,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1109,-3,0,1620,-6,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,-3,0,1530,-13,0,0 +2013,10,25,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2005,-3,0,2135,-14,0,0 +2013,9,2,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1200,-1,0,1515,-18,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,830,-2,0,955,-6,0,0 +2013,8,16,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,7,0,1914,0,0,0 +2013,8,8,4,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1449,37,1,1636,34,1,0 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2045,-1,0,2215,-5,0,0 +2013,4,7,7,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,8,0,2200,-21,0,0 +2013,8,11,7,EV,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,802,8,0,1101,2,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1535,1,0,2010,-4,0,0 +2013,5,16,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,845,4,0,1108,-10,0,0 +2013,5,3,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-6,0,728,-2,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1225,37,1,1935,45,1,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1125,7,0,1230,3,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2135,-1,0,2300,9,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1530,2,0,1736,-7,0,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-2,0,1430,-2,0,0 +2013,5,28,2,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1230,-1,0,1605,7,0,0 +2013,6,28,5,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,67,1,2051,56,1,0 +2013,8,11,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,56,1,1925,54,1,0 +2013,5,17,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-5,0,1819,-20,0,0 +2013,6,20,4,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1824,91,1,2050,35,1,0 +2013,9,25,3,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1637,-5,0,1746,2,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1205,-3,0,1340,-5,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1200,-4,0,1450,2,0,0 +2013,5,4,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,-1,0,1923,-31,0,0 +2013,5,2,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1717,-1,0,1959,10,0,0 +2013,5,4,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1215,-2,0,1525,3,0,0 +2013,9,12,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1007,-2,0,1304,-1,0,0 +2013,9,23,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,28,1,1900,27,1,0 +2013,9,15,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-15,0,1939,-14,0,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,645,-10,0,938,-1,0,0 +2013,4,13,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,64,1,1920,48,1,0 +2013,6,26,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1955,234,1,2115,207,1,0 +2013,8,3,6,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1045,-1,0,1440,-12,0,0 +2013,4,7,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1642,-17,0,1907,-29,0,0 +2013,5,25,6,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-8,0,1316,-6,0,0 +2013,8,5,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1300,0,0,1550,-2,0,0 +2013,9,13,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1359,-3,0,1654,33,1,0 +2013,10,17,4,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1235,37,1,1700,7,0,0 +2013,6,26,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1744,1,0,2009,-1,0,0 +2013,5,12,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,-1,0,1254,-10,0,0 +2013,5,23,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1500,28,1,2040,13,0,0 +2013,7,10,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,630,-5,0,1505,-30,0,0 +2013,6,7,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,802,-2,0,900,17,1,0 +2013,7,24,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,32,1,1810,38,1,0 +2013,9,22,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1625,-8,0,1645,-4,0,0 +2013,8,25,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,7,0,1411,-5,0,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,9,0,1757,2,0,0 +2013,5,25,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,16,1,1413,5,0,0 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,2,0,1934,28,1,0 +2013,5,8,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2035,-4,0,2055,-7,0,0 +2013,8,18,7,9E,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,846,-3,0,1034,-7,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,815,-1,0,1055,-7,0,0 +2013,9,29,7,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,0,0,1110,-23,0,0 +2013,5,9,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1740,-3,0,1900,2,0,0 +2013,9,21,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-3,0,1459,-10,0,0 +2013,4,27,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1230,-3,0,1340,-30,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-4,0,1248,-20,0,0 +2013,9,28,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,-8,0,945,-22,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,38,1,2120,17,1,0 +2013,7,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-3,0,1423,-4,0,0 +2013,7,28,7,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1339,-4,0,1517,17,1,0 +2013,6,23,7,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,22,1,1410,13,0,0 +2013,5,13,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,-6,0,1403,-12,0,0 +2013,9,17,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1245,-7,0,1415,-26,0,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,925,-3,0,1023,-3,0,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1450,-1,0,1810,-13,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1120,18,1,1530,14,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1715,17,1,2020,27,1,0 +2013,4,1,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1011,-9,0,0 +2013,10,16,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1035,3,0,1136,5,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1631,0,0,1749,-3,0,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,2,0,1335,-4,0,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,1,0,1440,-2,0,0 +2013,10,4,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2200,-5,0,30,5,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2300,111,1,2301,112,1,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1035,11,0,1200,6,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1440,-3,0,1915,-13,0,0 +2013,7,25,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,845,-5,0,950,-10,0,0 +2013,8,24,6,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1110,0,0,1234,1,0,0 +2013,9,19,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-7,0,617,-26,0,0 +2013,7,7,7,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,700,1,0,1235,-4,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1620,31,1,1943,34,1,0 +2013,9,1,7,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1726,-6,0,1810,-10,0,0 +2013,10,18,5,EV,13931,Norfolk International,Norfolk,VA,12953,LaGuardia,New York,NY,1830,-4,0,2010,14,0,0 +2013,6,8,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,830,-10,0,0 +2013,8,20,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1021,-5,0,1205,-16,0,0 +2013,5,14,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,-4,0,2155,-9,0,0 +2013,10,22,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,-4,0,1707,-6,0,0 +2013,10,9,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1728,1,0,0 +2013,10,7,1,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,645,-3,0,925,-8,0,0 +2013,9,11,3,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1811,37,1,1921,22,1,0 +2013,5,2,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1651,104,1,2015,108,1,0 +2013,5,27,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1330,-7,0,1623,-25,0,0 +2013,4,14,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-4,0,1235,-16,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-6,0,850,-10,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2000,20,1,2100,16,1,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1210,-2,0,1450,30,1,0 +2013,8,23,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-9,0,1250,-5,0,0 +2013,4,29,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,732,-11,0,939,-6,0,0 +2013,6,15,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,630,13,0,1225,9,0,0 +2013,5,12,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,-1,0,2025,7,0,0 +2013,5,30,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,-7,0,1355,-12,0,0 +2013,4,26,5,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,635,-8,0,651,-8,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,640,-8,0,950,-26,0,0 +2013,10,5,6,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,900,17,1,930,6,0,0 +2013,7,28,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,908,-8,0,1200,-6,0,0 +2013,8,15,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,930,-2,0,1035,-8,0,0 +2013,6,21,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1618,21,1,1747,38,1,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1305,17,1,1452,14,0,0 +2013,10,1,2,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,-5,0,1715,-5,0,0 +2013,6,14,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-5,0,2042,-15,0,0 +2013,8,1,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2115,89,1,2235,107,1,0 +2013,9,19,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,230,1,1315,216,1,0 +2013,7,17,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1745,-1,0,2145,1,0,0 +2013,9,13,5,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1631,264,1,1945,272,1,0 +2013,4,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2025,206,1,2210,203,1,0 +2013,9,7,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1350,-3,0,1450,-8,0,0 +2013,9,29,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-11,0,2020,-10,0,0 +2013,9,19,4,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,-4,0,740,-32,0,0 +2013,10,16,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,9,0,1740,3,0,0 +2013,6,20,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,44,1,2152,30,1,0 +2013,10,29,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,-5,0,2225,-26,0,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,5,0,1345,-14,0,0 +2013,4,9,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1750,-6,0,2056,-17,0,0 +2013,9,20,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,27,1,1825,6,0,0 +2013,8,20,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1356,-2,0,1458,-8,0,0 +2013,4,14,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1001,6,0,1122,10,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1435,5,0,1630,-11,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-2,0,1102,-6,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,0,0,1910,-17,0,0 +2013,10,6,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-3,0,1349,22,1,0 +2013,8,12,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1115,-5,0,1135,-4,0,0 +2013,6,17,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,-3,0,1459,-15,0,0 +2013,4,16,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,645,-1,0,815,-6,0,0 +2013,9,6,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1906,163,1,2052,149,1,0 +2013,10,1,2,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-16,0,1001,4,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,0,0,1100,-6,0,0 +2013,5,10,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1230,-2,0,1350,-13,0,0 +2013,8,7,3,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1700,11,0,1915,24,1,0 +2013,7,29,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,605,4,0,720,-11,0,0 +2013,8,8,4,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,32,1,2040,59,1,0 +2013,10,20,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,855,-2,0,1010,-10,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1830,-4,0,1944,-6,0,0 +2013,9,6,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1220,10,0,1318,1,0,0 +2013,7,25,4,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,0,0,1415,-8,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1850,0,0,2208,-16,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,710,-2,0,815,-10,0,0 +2013,7,16,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1035,-8,0,1415,-2,0,0 +2013,6,20,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1920,-10,0,2034,-17,0,0 +2013,9,30,1,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,945,8,0,1140,-2,0,0 +2013,5,13,1,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1945,1,0,2209,16,1,0 +2013,7,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1355,153,1,1650,165,1,0 +2013,10,5,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,849,-2,0,939,13,0,0 +2013,5,13,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,730,-2,0,1506,14,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-2,0,2017,-17,0,0 +2013,5,25,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,-4,0,1820,49,1,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,850,-6,0,1123,-1,0,0 +2013,5,6,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-7,0,1705,-23,0,0 +2013,8,29,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1740,22,1,1810,22,1,0 +2013,4,21,7,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,708,-10,0,910,-14,0,0 +2013,8,8,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,900,-5,0,0 +2013,6,1,6,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,-10,0,1705,-23,0,0 +2013,7,6,6,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,748,-5,0,1330,-11,0,0 +2013,6,15,6,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,715,0,0,810,-4,0,0 +2013,4,7,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1813,0,0,1924,-15,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1435,15,1,1825,-1,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1359,83,1,1539,78,1,0 +2013,5,21,2,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1135,78,1,1254,74,1,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,8,0,1320,10,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2045,-3,0,2140,-11,0,0 +2013,4,17,3,DL,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-10,0,918,-22,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1245,-4,0,1550,-22,0,0 +2013,6,19,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1208,-6,0,1330,2,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1756,-1,0,1910,-15,0,0 +2013,10,1,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-12,0,2035,-23,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1145,-3,0,1510,-10,0,0 +2013,4,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1252,-3,0,1528,-18,0,0 +2013,4,10,3,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1548,4,0,1820,-14,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,1,0,1114,-4,0,0 +2013,10,19,6,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1415,8,0,2232,4,0,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,-2,0,1135,-9,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,24,1,1535,73,1,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,13,0,735,3,0,0 +2013,6,20,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1555,1,0,1715,8,0,0 +2013,6,9,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-8,0,744,-7,0,0 +2013,5,19,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,0,0,1044,-7,0,0 +2013,6,13,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1015,-6,0,0 +2013,4,21,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,845,-2,0,900,-1,0,0 +2013,5,17,5,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-7,0,1543,-20,0,0 +2013,9,25,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1910,42,1,2240,49,1,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1459,7,0,1725,-3,0,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,505,5,0,805,-21,0,0 +2013,8,21,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,0,0,1015,-5,0,0 +2013,9,30,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1602,-6,0,15,-17,0,0 +2013,5,21,2,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1855,36,1,2206,29,1,0 +2013,7,11,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1423,14,0,1609,1,0,0 +2013,10,27,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1040,-5,0,1325,-8,0,0 +2013,5,25,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2005,15,1,2136,26,1,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1020,-7,0,1200,-18,0,0 +2013,4,16,2,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1655,12,0,1930,14,0,0 +2013,4,2,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,845,-2,0,1010,3,0,0 +2013,5,3,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1740,0,0,1854,-3,0,0 +2013,4,3,3,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1548,-7,0,1656,2,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,73,1,2225,62,1,0 +2013,7,4,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1500,-12,0,1635,-17,0,0 +2013,7,13,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,-6,0,806,-8,0,0 +2013,5,9,4,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,635,-4,0,745,0,0,0 +2013,5,20,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,-2,0,1542,25,1,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1030,-2,0,1243,-5,0,0 +2013,10,12,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-2,0,1553,-4,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1359,-2,0,1530,-32,0,0 +2013,5,16,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1338,-8,0,1454,-9,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,5,0,1835,0,0,0 +2013,8,2,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1030,-9,0,1243,-11,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2030,-1,0,2340,-2,0,0 +2013,4,29,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1240,-3,0,1520,-3,0,0 +2013,6,10,1,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-7,0,1046,-8,0,0 +2013,4,1,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,2,0,1205,-16,0,0 +2013,4,18,4,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1137,-6,0,1427,-15,0,0 +2013,8,20,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1810,1,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,162,1,1440,152,1,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,855,-6,0,1015,-15,0,0 +2013,4,26,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,645,-11,0,940,-18,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2055,-7,0,2341,1,0,0 +2013,4,5,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,12,0,556,11,0,0 +2013,9,13,5,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,0,0,1545,-7,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1855,74,1,2111,45,1,0 +2013,4,18,4,FL,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1055,4,0,1335,-11,0,0 +2013,9,8,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1741,9,0,1853,14,0,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-4,0,1931,-2,0,0 +2013,5,10,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1709,5,0,2039,-12,0,0 +2013,6,21,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,18,1,2005,19,1,0 +2013,6,1,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1055,1,0,1200,-17,0,0 +2013,9,9,1,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1605,24,1,1811,19,1,0 +2013,5,19,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1848,26,1,2059,12,0,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1255,4,0,1830,3,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,20,1,1344,21,1,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,0,0,1150,-3,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1020,8,0,1555,-5,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,858,-3,0,920,-6,0,0 +2013,7,30,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,5,0,815,-2,0,0 +2013,8,13,2,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,24,1,1454,10,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1922,2,0,2110,12,0,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1542,0,0,1748,-5,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1815,25,1,40,-12,0,0 +2013,10,24,4,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-6,0,1805,18,1,0 +2013,4,16,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-6,0,656,4,0,0 +2013,7,26,5,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-3,0,1300,-14,0,0 +2013,7,31,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1217,11,0,0 +2013,9,1,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1530,-10,0,1706,-28,0,0 +2013,8,25,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1120,9,0,1252,5,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1105,2,0,1330,-17,0,0 +2013,9,10,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-5,0,1630,0,0,0 +2013,7,15,1,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,15,1,1425,-1,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,740,-2,0,840,-7,0,0 +2013,8,30,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,10,0,1340,5,0,0 +2013,4,10,3,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,645,134,1,810,143,1,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-5,0,1236,3,0,0 +2013,8,29,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-9,0,1210,-15,0,0 +2013,10,19,6,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-5,0,1745,-4,0,0 +2013,4,6,6,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,810,12,0,1634,3,0,0 +2013,5,21,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,0,,1900,0,1,1 +2013,8,16,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,40,1,1455,35,1,0 +2013,8,15,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2107,-6,0,2223,-16,0,0 +2013,7,15,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,1,0,2240,0,0,0 +2013,7,15,1,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1220,-10,0,1412,-17,0,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,805,-4,0,1321,-4,0,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1700,-12,0,1818,-8,0,0 +2013,5,10,5,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,-1,0,1005,-23,0,0 +2013,6,14,5,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1930,0,0,2105,-2,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-2,0,1230,-15,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1200,-2,0,1412,-12,0,0 +2013,5,12,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2120,6,0,2240,1,0,0 +2013,9,26,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-7,0,1246,11,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,12,0,1355,-3,0,0 +2013,7,29,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,615,-8,0,855,-11,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2145,-8,0,10,-16,0,0 +2013,10,22,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-6,0,2033,-8,0,0 +2013,7,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1505,-5,0,1620,0,0,0 +2013,4,18,4,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1230,198,1,1605,193,1,0 +2013,7,25,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1745,40,1,2055,35,1,0 +2013,8,14,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,659,-2,0,809,-12,0,0 +2013,7,11,4,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,21,1,100,35,1,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-3,0,857,-8,0,0 +2013,4,8,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1234,-6,0,0 +2013,9,27,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1237,-2,0,1508,-11,0,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1045,21,1,1300,10,0,0 +2013,10,11,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-6,0,812,-10,0,0 +2013,9,1,7,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1616,-19,0,1821,-14,0,0 +2013,7,23,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-5,0,1530,-10,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2145,1,0,11,5,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1415,-1,0,1525,-11,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,925,3,0,1140,-7,0,0 +2013,6,28,5,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,2022,-15,0,2322,-31,0,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,652,53,1,1252,31,1,0 +2013,6,25,2,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,1,0,1230,-18,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,900,-5,0,1255,-10,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,6,0,1415,6,0,0 +2013,5,10,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,97,1,1714,90,1,0 +2013,7,17,3,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-2,0,805,-7,0,0 +2013,8,9,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1742,-5,0,0 +2013,6,20,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1530,-2,0,1833,-22,0,0 +2013,7,1,1,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-6,0,1538,-26,0,0 +2013,5,5,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,600,-6,0,835,-14,0,0 +2013,9,24,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,4,0,825,-10,0,0 +2013,8,26,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-4,0,1315,-12,0,0 +2013,5,23,4,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-7,0,1639,-19,0,0 +2013,4,21,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1355,4,0,2010,-8,0,0 +2013,10,29,2,EV,13931,Norfolk International,Norfolk,VA,12953,LaGuardia,New York,NY,1830,-10,0,2010,2,0,0 +2013,4,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1035,2,0,1345,7,0,0 +2013,4,26,5,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,8,0,2359,14,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,85,1,1445,99,1,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2025,1,0,2130,-1,0,0 +2013,4,28,7,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1105,4,0,1235,-1,0,0 +2013,8,5,1,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-9,0,1122,-8,0,0 +2013,6,27,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,6,0,1745,26,1,0 +2013,5,28,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1341,-3,0,1632,-6,0,0 +2013,4,7,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-3,0,1537,-5,0,0 +2013,6,19,3,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-10,0,2030,1,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,15,1,2255,18,1,0 +2013,7,21,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-5,0,1430,-9,0,0 +2013,7,30,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1135,-5,0,1210,-4,0,0 +2013,8,4,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,12266,George Bush Intercontinental/Houston,Houston,TX,2038,-6,0,624,-17,0,0 +2013,7,10,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-8,0,1432,12,0,0 +2013,9,16,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1210,13,0,1300,20,1,0 +2013,8,5,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1507,-5,0,1648,-10,0,0 +2013,9,11,3,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-2,0,750,-12,0,0 +2013,7,17,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,51,1,1845,141,1,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1905,-1,0,2230,-7,0,0 +2013,7,31,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1940,-5,0,2055,3,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1255,-10,0,0 +2013,9,22,7,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1030,-2,0,1313,-21,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,-3,0,5,-10,0,0 +2013,4,21,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,1,0,1459,-21,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1300,18,1,1405,28,1,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,0,,2054,0,1,1 +2013,6,1,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-6,0,850,-17,0,0 +2013,7,23,2,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-7,0,1254,-8,0,0 +2013,9,26,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1240,25,1,1350,19,1,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1003,25,1,1255,23,1,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2055,27,1,2150,21,1,0 +2013,6,30,7,EV,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1921,46,1,2047,32,1,0 +2013,4,30,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,30,7,0,454,-28,0,0 +2013,7,4,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,903,-3,0,937,-4,0,0 +2013,5,30,4,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1922,-5,0,2340,3,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1425,56,1,1845,54,1,0 +2013,9,12,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1610,71,1,1800,86,1,0 +2013,5,23,4,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,952,-5,0,1207,-17,0,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1005,17,1,1535,12,0,0 +2013,4,19,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,-3,0,1300,-8,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,-1,0,2225,-9,0,0 +2013,10,22,2,EV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1001,-9,0,1138,-9,0,0 +2013,9,20,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1640,20,1,1745,13,0,0 +2013,5,29,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-10,0,1148,18,1,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-3,0,1019,-15,0,0 +2013,9,8,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-5,0,1718,-22,0,0 +2013,5,8,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1029,40,1,1153,59,1,0 +2013,6,3,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,225,1,715,218,1,0 +2013,4,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,0,0,2307,-10,0,0 +2013,9,8,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1000,2,0,1405,-8,0,0 +2013,8,15,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,33,1,1237,32,1,0 +2013,4,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,716,-3,0,926,-9,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,837,3,0,901,-5,0,0 +2013,10,22,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,839,-2,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,-4,0,2027,18,1,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,3,0,2237,0,0,0 +2013,10,7,1,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1455,0,,1807,0,1,1 +2013,5,5,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,6,0,2255,6,0,0 +2013,4,10,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1132,115,1,1421,184,1,0 +2013,8,15,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1405,16,1,2200,-9,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,2040,-6,0,2326,-21,0,0 +2013,4,17,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,-8,0,1835,-15,0,0 +2013,4,28,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-5,0,920,-8,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1027,-1,0,1233,-13,0,0 +2013,5,22,3,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,813,-5,0,1049,11,0,0 +2013,6,21,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1450,15,1,1610,24,1,0 +2013,4,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-5,0,1335,-6,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,858,-5,0,1019,-14,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1105,2,0,1330,-11,0,0 +2013,9,16,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-4,0,1645,-9,0,0 +2013,10,28,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-4,0,1335,-2,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1310,9,0,1647,15,1,0 +2013,7,14,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,-3,0,933,-8,0,0 +2013,6,4,2,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,830,60,1,1005,57,1,0 +2013,9,17,2,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1900,-4,0,1918,-7,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,940,-5,0,1045,-5,0,0 +2013,7,29,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-1,0,1633,-11,0,0 +2013,5,28,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-6,0,915,-40,0,0 +2013,5,19,7,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10,-2,0,800,-7,0,0 +2013,8,6,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1205,7,0,1322,5,0,0 +2013,7,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,0,0,1205,-8,0,0 +2013,10,26,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1155,-7,0,1940,-34,0,0 +2013,6,28,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-1,0,920,-10,0,0 +2013,8,10,6,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,655,0,0,915,-12,0,0 +2013,7,11,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,29,1,1310,19,1,0 +2013,10,4,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1135,10,0,1250,10,0,0 +2013,6,30,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1750,37,1,2049,59,1,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1505,48,1,1615,49,1,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,2,0,1924,-7,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,1,0,1755,6,0,0 +2013,4,12,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-10,0,813,-22,0,0 +2013,7,4,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,917,82,1,1235,79,1,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1045,-1,0,1825,-11,0,0 +2013,10,26,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,4,0,1710,-7,0,0 +2013,9,23,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,-9,0,2125,-26,0,0 +2013,5,24,5,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,45,1,1648,65,1,0 +2013,7,22,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,13,0,2214,7,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1405,14,0,1750,14,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2150,2,0,2335,-1,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,7,0,2359,8,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,30,1,1737,14,0,0 +2013,4,29,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1010,-6,0,1139,-10,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1800,5,0,2054,-7,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2015,-5,0,2132,-11,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1359,-2,0,1511,-16,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2307,3,0,27,13,0,0 +2013,5,14,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,-4,0,1155,-16,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,11,0,1845,-9,0,0 +2013,7,20,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1415,4,0,1625,-5,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1501,34,1,2043,12,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1929,-6,0,2105,-17,0,0 +2013,6,21,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,908,-13,0,1200,-19,0,0 +2013,8,26,1,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1752,-5,0,2000,-4,0,0 +2013,4,7,7,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,845,-2,0,1010,-10,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1325,30,1,1530,16,1,0 +2013,9,17,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,815,-11,0,1115,-29,0,0 +2013,9,6,5,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-7,0,728,-17,0,0 +2013,7,9,2,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1436,1,0,1609,-10,0,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1208,-4,0,1343,-20,0,0 +2013,10,20,7,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,820,4,0,925,-9,0,0 +2013,6,24,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,3,0,2058,-19,0,0 +2013,5,3,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1801,14,0,2007,10,0,0 +2013,10,29,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1604,-2,0,1730,-21,0,0 +2013,4,7,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1440,-3,0,1753,-14,0,0 +2013,5,14,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-3,0,1633,5,0,0 +2013,10,16,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,645,-4,0,815,-18,0,0 +2013,7,24,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1140,-1,0,1300,-5,0,0 +2013,9,14,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1129,24,1,1300,12,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1040,-1,0,1215,-4,0,0 +2013,9,27,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,620,1,0,730,-4,0,0 +2013,7,17,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,1000,-3,0,0 +2013,6,18,2,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,60,1,2054,56,1,0 +2013,4,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,630,5,0,1235,4,0,0 +2013,6,19,3,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-1,0,909,-12,0,0 +2013,9,29,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-6,0,1734,-20,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,855,0,0,1555,-7,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1930,0,0,2027,-7,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1750,6,0,1950,3,0,0 +2013,9,18,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1300,21,1,1405,17,1,0 +2013,9,25,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1505,-6,0,1632,-7,0,0 +2013,10,23,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-6,0,1352,-43,0,0 +2013,5,15,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,905,-6,0,1033,-15,0,0 +2013,4,6,6,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2130,-10,0,2359,-24,0,0 +2013,8,2,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1714,13,0,1840,18,1,0 +2013,7,1,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1719,80,1,1830,68,1,0 +2013,7,14,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1105,0,0,1208,-6,0,0 +2013,8,23,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,621,-6,0,753,-4,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-6,0,1115,-2,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,0,0,1346,-12,0,0 +2013,8,29,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,-3,0,805,-14,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,900,-3,0,957,-13,0,0 +2013,9,10,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-6,0,2235,-12,0,0 +2013,9,23,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-2,0,1600,0,0,0 +2013,5,5,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1305,0,0,1450,-15,0,0 +2013,9,17,2,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,620,-4,0,814,-10,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,848,10,0,1037,5,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1738,59,1,2018,40,1,0 +2013,8,26,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,-5,0,2030,-11,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1740,22,1,1825,18,1,0 +2013,8,24,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1840,-5,0,2145,7,0,0 +2013,9,8,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-1,0,1305,-9,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1845,19,1,1955,10,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1015,20,1,1230,-4,0,0 +2013,5,16,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1220,42,1,1414,24,1,0 +2013,4,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1635,13,0,2105,6,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,-2,0,1807,12,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1955,4,0,2131,-13,0,0 +2013,4,14,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,0,0,815,8,0,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,28,1,2254,-11,0,0 +2013,4,18,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1440,-1,0,1605,-6,0,0 +2013,5,20,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,39,1,2259,33,1,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1850,11,0,40,-7,0,0 +2013,4,24,3,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-8,0,1029,-6,0,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,610,1,0,715,-8,0,0 +2013,6,28,5,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1328,-4,0,1819,-3,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-1,0,1731,-11,0,0 +2013,10,3,4,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,34,1,2100,17,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1240,-2,0,1403,0,0,0 +2013,4,5,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,10,0,2201,6,0,0 +2013,4,7,7,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,630,-11,0,901,-14,0,0 +2013,5,16,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1433,-1,0,1703,-22,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1455,1,0,1755,-5,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,-4,0,1306,-3,0,0 +2013,4,14,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,740,-2,0,745,-7,0,0 +2013,10,3,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,1,0,1838,-3,0,0 +2013,10,17,4,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1152,-1,0,2005,9,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-3,0,1055,-1,0,0 +2013,6,26,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1015,97,1,1135,122,1,0 +2013,4,30,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1400,-1,0,1530,-12,0,0 +2013,4,9,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-4,0,1655,-16,0,0 +2013,4,1,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,2020,0,0,2140,-2,0,0 +2013,8,31,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,22,1,1845,21,1,0 +2013,7,27,6,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,624,-3,0,1448,5,0,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,954,-2,0,1536,-14,0,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-10,0,2125,2,0,0 +2013,8,31,6,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1450,-2,0,1610,-1,0,0 +2013,5,13,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-3,0,1623,-1,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1959,-1,0,2157,-11,0,0 +2013,5,31,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-2,0,920,-9,0,0 +2013,5,25,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-3,0,1535,-7,0,0 +2013,4,30,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,-2,0,630,-28,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1630,4,0,2010,-7,0,0 +2013,7,22,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,15,1,1510,18,1,0 +2013,7,3,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,800,-20,0,0 +2013,9,13,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-9,0,2352,-7,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1946,-2,0,2038,-3,0,0 +2013,5,21,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-7,0,1920,-21,0,0 +2013,9,6,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1113,-2,0,1448,-50,0,0 +2013,8,26,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-6,0,1357,-12,0,0 +2013,7,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1714,2,0,2140,-14,0,0 +2013,9,22,7,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1125,-2,0,1422,-8,0,0 +2013,6,28,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-4,0,1624,-14,0,0 +2013,6,24,1,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,0,0,1242,10,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1500,0,0,1620,-2,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1745,-8,0,1930,-10,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1612,27,1,1929,24,1,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,857,11,0,1340,5,0,0 +2013,5,28,2,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,610,5,0,834,-2,0,0 +2013,8,27,2,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,-9,0,1614,-19,0,0 +2013,6,13,4,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1801,17,1,2015,11,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1745,0,0,1855,-6,0,0 +2013,4,2,2,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1150,37,1,1529,18,1,0 +2013,8,3,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1310,60,1,1504,58,1,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1840,16,1,2004,7,0,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1056,-7,0,1215,-21,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-4,0,1031,-9,0,0 +2013,10,13,7,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,37,1,729,10,0,0 +2013,4,9,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-5,0,1838,-21,0,0 +2013,5,24,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,1,0,1523,-5,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,729,-4,0,1050,-27,0,0 +2013,7,15,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-6,0,1055,5,0,0 +2013,9,17,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1245,-2,0,1410,-5,0,0 +2013,10,22,2,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1400,-6,0,1700,5,0,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1905,-3,0,111,-26,0,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1739,12,0,2029,36,1,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,0,0,1302,1,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,718,53,1,1204,12,0,0 +2013,4,11,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,29,1,604,21,1,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1455,13,0,1605,7,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1305,6,0,1620,59,1,0 +2013,7,1,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1635,-2,0,1801,8,0,0 +2013,7,21,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,44,1,1919,55,1,0 +2013,7,4,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-2,0,904,-6,0,0 +2013,6,12,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,21,1,1840,-6,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,2000,14,0,2237,19,1,0 +2013,4,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1505,-2,0,1827,69,1,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,98,1,2226,76,1,0 +2013,10,23,3,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1225,-2,0,1350,-9,0,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,31,1,2201,30,1,0 +2013,10,24,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-1,0,1826,4,0,0 +2013,7,12,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-1,0,750,2,0,0 +2013,8,8,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1350,99,1,1505,89,1,0 +2013,10,26,6,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-8,0,1021,7,0,0 +2013,9,9,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,2,0,1015,2,0,0 +2013,4,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,751,-4,0,947,3,0,0 +2013,7,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2055,66,1,2225,65,1,0 +2013,5,14,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1635,-3,0,1655,-12,0,0 +2013,7,21,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,14,0,1341,12,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2100,-1,0,2345,-9,0,0 +2013,8,26,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1600,1,0,1755,12,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-1,0,1038,-4,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1710,8,0,1845,-20,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-2,0,1918,-9,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,11,0,1505,5,0,0 +2013,10,28,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,740,-2,0,901,7,0,0 +2013,6,23,7,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2103,69,1,2359,79,1,0 +2013,6,1,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1330,-1,0,1350,-1,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1340,3,0,1440,-1,0,0 +2013,10,18,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,915,0,0,1157,-18,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-3,0,1451,5,0,0 +2013,8,30,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1050,5,0,1110,-9,0,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,-3,0,1830,3,0,0 +2013,8,4,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1525,40,1,1759,26,1,0 +2013,8,2,5,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-4,0,1205,1,0,0 +2013,4,28,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,5,0,1600,13,0,0 +2013,10,20,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1240,-3,0,1545,-15,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,945,1,0,1220,-21,0,0 +2013,7,13,6,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,925,-5,0,1210,-3,0,0 +2013,7,27,6,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,710,0,0,915,-7,0,0 +2013,4,5,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1346,-2,0,0 +2013,4,10,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-7,0,1200,-21,0,0 +2013,9,25,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1725,-14,0,1810,-7,0,0 +2013,10,21,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-7,0,1201,-12,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1340,-1,0,1600,8,0,0 +2013,4,23,2,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,10,0,1943,30,1,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1925,10,0,2230,34,1,0 +2013,9,1,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1555,-5,0,1655,-15,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,-3,0,1255,-5,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,30,1,1520,27,1,0 +2013,4,21,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1510,59,1,2345,60,1,0 +2013,9,16,1,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,945,7,0,1540,-3,0,0 +2013,9,29,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2010,-1,0,2115,12,0,0 +2013,6,10,1,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,925,-8,0,1132,-9,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,2,0,1335,-4,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1505,158,1,1720,222,1,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,81,1,1730,75,1,0 +2013,10,20,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2105,-8,0,2210,-4,0,0 +2013,9,5,4,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,605,0,0,725,-5,0,0 +2013,6,3,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,11,0,1903,3,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,850,-5,0,1141,-21,0,0 +2013,6,6,4,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,940,-3,0,1424,-13,0,0 +2013,5,6,1,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,825,9,0,1033,-9,0,0 +2013,7,19,5,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,720,-1,0,1445,10,0,0 +2013,6,24,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,530,-4,0,545,-17,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,725,-1,0,853,-12,0,0 +2013,4,12,5,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1104,5,0,1430,0,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2045,48,1,2210,51,1,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1404,-6,0,1532,-21,0,0 +2013,8,3,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,-2,0,1053,-11,0,0 +2013,5,12,7,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1026,-9,0,1306,-23,0,0 +2013,4,4,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,843,-7,0,1018,-6,0,0 +2013,8,28,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-8,0,903,-35,0,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,-5,0,1307,1,0,0 +2013,4,9,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1216,0,0,1509,-25,0,0 +2013,6,12,3,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1940,0,,2057,0,1,1 +2013,10,9,3,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,750,-3,0,1042,-13,0,0 +2013,6,17,1,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1435,14,0,1734,17,1,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,725,-1,0,835,5,0,0 +2013,4,30,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1905,31,1,2107,26,1,0 +2013,8,18,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1853,2,0,2151,5,0,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,-5,0,2057,-44,0,0 +2013,7,14,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,816,-5,0,1100,7,0,0 +2013,9,2,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-4,0,1900,-32,0,0 +2013,4,20,6,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1830,91,1,2055,68,1,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1853,64,1,2020,40,1,0 +2013,7,11,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,4,0,2025,13,0,0 +2013,8,4,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,600,-9,0,736,-20,0,0 +2013,9,18,3,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1120,15,1,1320,9,0,0 +2013,5,22,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-4,0,1114,1,0,0 +2013,5,4,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1601,1,0,1704,-3,0,0 +2013,9,13,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,615,0,,730,0,1,1 +2013,8,4,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,-3,0,50,-2,0,0 +2013,7,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1925,2,0,2115,2,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,60,1,1850,56,1,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,825,1,0,935,0,0,0 +2013,5,2,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1840,13,0,1935,14,0,0 +2013,6,7,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,910,22,1,1059,13,0,0 +2013,7,25,4,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-5,0,1225,-7,0,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1009,4,0,1308,-25,0,0 +2013,5,10,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1330,18,1,1440,30,1,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1425,0,0,1730,-12,0,0 +2013,7,30,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,600,31,1,840,19,1,0 +2013,6,9,7,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1446,-2,0,1658,-12,0,0 +2013,5,20,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1715,35,1,1840,37,1,0 +2013,7,22,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-5,0,1237,-10,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1238,-3,0,1617,-10,0,0 +2013,7,18,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-9,0,857,-15,0,0 +2013,9,10,2,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1232,-11,0,2100,-20,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,950,1,0,1115,-3,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-5,0,1839,-13,0,0 +2013,8,26,1,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,93,1,1800,99,1,0 +2013,5,3,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1333,-4,0,1702,-4,0,0 +2013,10,13,7,YV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,807,1,0,952,3,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,37,1,2240,8,0,0 +2013,5,13,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,-6,0,1733,-1,0,0 +2013,6,24,1,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,30,1,1140,25,1,0 +2013,8,22,4,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,834,-5,0,1043,-16,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1820,35,1,2035,22,1,0 +2013,4,15,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,947,5,0,1448,-15,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,0,0,2352,10,0,0 +2013,4,8,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1000,-5,0,1239,-2,0,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,3,0,1713,19,1,0 +2013,10,5,6,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,-8,0,1906,-44,0,0 +2013,7,8,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,0,0,2044,-4,0,0 +2013,8,6,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,705,3,0,825,-7,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1630,-1,0,1820,29,1,0 +2013,8,9,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,0,0,1040,-9,0,0 +2013,9,13,5,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,-4,0,1035,17,1,0 +2013,4,5,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,-2,0,1115,-14,0,0 +2013,6,1,6,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-11,0,717,-22,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2000,-6,0,2220,-2,0,0 +2013,6,28,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2055,1,0,2115,-9,0,0 +2013,5,29,3,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1711,113,1,1850,88,1,0 +2013,10,1,2,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1235,-9,0,1420,-2,0,0 +2013,8,18,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1935,101,1,2045,101,1,0 +2013,8,17,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-3,0,1742,-12,0,0 +2013,7,28,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-8,0,1657,-4,0,0 +2013,9,13,5,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1436,2,0,1621,-5,0,0 +2013,5,7,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-4,0,2215,-19,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2010,88,1,2105,97,1,0 +2013,5,18,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,705,-2,0,815,-8,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1133,-7,0,1417,-31,0,0 +2013,7,1,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1845,82,1,2030,53,1,0 +2013,10,29,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1210,-3,0,1350,-12,0,0 +2013,6,1,6,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,2,0,2055,-20,0,0 +2013,9,29,7,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,13,0,1545,23,1,0 +2013,10,21,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-3,0,1039,-13,0,0 +2013,10,2,3,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-6,0,1120,-14,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-8,0,1837,-13,0,0 +2013,6,22,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-7,0,843,-20,0,0 +2013,4,23,2,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,-2,0,2005,-5,0,0 +2013,5,10,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,605,2,0,1436,-5,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2145,77,1,2302,69,1,0 +2013,7,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1015,28,1,1124,18,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2204,-3,0,2329,-7,0,0 +2013,8,4,7,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,9,0,1722,1,0,0 +2013,8,16,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1029,-2,0,1336,-15,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,845,0,0,1630,-14,0,0 +2013,4,25,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,-11,0,1911,-21,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1500,16,1,1640,27,1,0 +2013,8,18,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,8,0,1545,27,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,56,1,2030,48,1,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,935,0,0,1100,-8,0,0 +2013,10,1,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,27,1,2235,18,1,0 +2013,10,5,6,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-11,0,1930,-5,0,0 +2013,4,7,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1622,7,0,1830,-6,0,0 +2013,8,2,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-3,0,1530,-2,0,0 +2013,9,8,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,6,0,2055,-17,0,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1824,18,1,29,7,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,925,-2,0,1118,-12,0,0 +2013,10,30,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-4,0,930,-8,0,0 +2013,9,7,6,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,653,0,0,929,3,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1110,-1,0,1227,-7,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,-5,0,2240,-18,0,0 +2013,7,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1115,0,0,1355,-3,0,0 +2013,5,30,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,825,-2,0,920,5,0,0 +2013,5,5,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-10,0,1450,-18,0,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1053,-3,0,1230,-7,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1359,45,1,1507,35,1,0 +2013,5,3,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1215,-3,0,1320,-5,0,0 +2013,8,2,5,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1721,130,1,1900,120,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,0,0,1538,-9,0,0 +2013,6,27,4,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,711,29,1,914,4,0,0 +2013,10,24,4,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,809,-10,0,1135,-11,0,0 +2013,6,17,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1105,24,1,1630,0,0,0 +2013,6,4,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1200,-3,0,1415,1,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,0,0,2113,7,0,0 +2013,9,30,1,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1128,-9,0,1403,-7,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-6,0,2331,-17,0,0 +2013,6,28,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2016,96,1,2225,106,1,0 +2013,4,12,5,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1521,-4,0,1645,-1,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,55,1,2229,48,1,0 +2013,7,22,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1735,0,0,1900,18,1,0 +2013,10,10,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,2058,-6,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,945,-2,0,1430,-15,0,0 +2013,9,10,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2005,0,0,2024,-7,0,0 +2013,10,27,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1547,-7,0,1720,-10,0,0 +2013,6,3,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,718,16,1,1015,32,1,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1738,-2,0,2021,1,0,0 +2013,7,13,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1304,6,0,2059,2,0,0 +2013,6,20,4,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,903,0,0,957,0,0,0 +2013,5,10,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,67,1,1615,71,1,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,842,-2,0,947,-11,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,17,1,1700,1,0,0 +2013,10,28,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-6,0,915,-16,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-7,0,1220,-15,0,0 +2013,6,3,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,700,30,1,906,22,1,0 +2013,7,24,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1237,175,1,1359,198,1,0 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,41,1,1305,25,1,0 +2013,5,24,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1655,308,1,1750,312,1,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-8,0,1635,-19,0,0 +2013,4,3,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,611,-7,0,844,-13,0,0 +2013,4,2,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,-5,0,1608,-10,0,0 +2013,10,31,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1905,3,0,2010,-7,0,0 +2013,4,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1031,-3,0,1130,-12,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2005,21,1,2255,24,1,0 +2013,8,26,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-7,0,1755,-4,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,2023,6,0,2245,-6,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2040,12,0,2305,8,0,0 +2013,7,1,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-5,0,1014,7,0,0 +2013,9,11,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,650,-8,0,827,-8,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1345,9,0,1500,14,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1642,-3,0,2000,-9,0,0 +2013,6,20,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1940,17,1,2215,26,1,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1836,56,1,2015,82,1,0 +2013,6,23,7,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1335,-1,0,1620,4,0,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-5,0,859,-9,0,0 +2013,9,10,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,-4,0,2154,-3,0,0 +2013,6,25,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,449,-3,0,744,-2,0,0 +2013,9,7,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1425,-2,0,1729,-48,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1345,0,0,1500,22,1,0 +2013,4,22,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,29,1,1820,105,1,0 +2013,4,18,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,13,0,1528,5,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1050,-1,0,1223,-11,0,0 +2013,4,7,7,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,800,-11,0,1557,-42,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1135,111,1,1450,127,1,0 +2013,9,13,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1520,-15,0,0 +2013,7,14,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1940,-28,0,0 +2013,6,23,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1035,-11,0,1105,-17,0,0 +2013,5,30,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,-6,0,1806,16,1,0 +2013,6,22,6,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1440,-4,0,2245,8,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1120,-1,0,1550,12,0,0 +2013,4,29,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-12,0,815,-19,0,0 +2013,9,3,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1127,85,1,1246,82,1,0 +2013,9,16,1,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1039,34,1,1330,42,1,0 +2013,7,9,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1330,2,0,1340,6,0,0 +2013,10,15,2,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-1,0,1525,-4,0,0 +2013,9,30,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1730,15,1,1926,-1,0,0 +2013,6,16,7,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-3,0,721,-18,0,0 +2013,6,9,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1353,21,1,1545,1,0,0 +2013,5,10,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,27,1,1210,29,1,0 +2013,4,15,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-4,0,1040,1,0,0 +2013,10,23,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-3,0,1115,-12,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,800,-2,0,930,-13,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1450,54,1,1653,99,1,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1145,10,0,1330,8,0,0 +2013,7,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1125,-2,0,1405,-3,0,0 +2013,6,7,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,12,0,930,8,0,0 +2013,8,3,6,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,600,-4,0,745,-6,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1510,-1,0,1850,-7,0,0 +2013,8,1,4,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1904,-6,0,2017,-17,0,0 +2013,6,11,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,24,1,2220,17,1,0 +2013,7,2,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-1,0,1357,-15,0,0 +2013,4,23,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-6,0,1805,-1,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2113,14,0,2359,-1,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1240,-3,0,1325,-2,0,0 +2013,9,19,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1401,-4,0,1515,11,0,0 +2013,5,6,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,-3,0,1403,-20,0,0 +2013,10,14,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-1,0,1415,-24,0,0 +2013,4,27,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2204,0,0,2359,-35,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1310,-2,0,1605,-4,0,0 +2013,7,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,625,-6,0,725,-13,0,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-2,0,1409,-23,0,0 +2013,7,11,4,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,-3,0,1840,-6,0,0 +2013,10,13,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1049,0,0,1622,-4,0,0 +2013,4,14,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-3,0,1435,-13,0,0 +2013,8,31,6,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1509,-10,0,1620,-10,0,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,0,0,1000,-9,0,0 +2013,4,2,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1724,14,0,1813,4,0,0 +2013,10,16,3,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,800,-5,0,1117,-35,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1839,31,1,2033,16,1,0 +2013,8,29,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,-4,0,1743,29,1,0 +2013,4,5,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,1,0,1540,-20,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,0,0,1608,1,0,0 +2013,10,24,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,18,1,1415,31,1,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1955,41,1,2225,37,1,0 +2013,8,14,3,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-4,0,627,-6,0,0 +2013,9,24,2,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2020,-2,0,2307,3,0,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1235,11,0,1529,-3,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,11,0,1805,71,1,0 +2013,7,6,6,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,1105,8,0,1325,-6,0,0 +2013,4,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,630,-3,0,740,-9,0,0 +2013,10,12,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-2,0,1937,-20,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1320,30,1,1502,14,0,0 +2013,10,3,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1345,3,0,1639,11,0,0 +2013,5,28,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-5,0,621,-11,0,0 +2013,10,28,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1300,-4,0,1400,-7,0,0 +2013,10,18,5,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1410,-3,0,1650,-9,0,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-5,0,1634,4,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,0,0,1139,-14,0,0 +2013,7,28,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,-5,0,720,-2,0,0 +2013,9,7,6,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1350,5,0,2155,6,0,0 +2013,10,8,2,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,811,-7,0,929,-11,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1417,-3,0,1530,-10,0,0 +2013,8,20,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1250,12,0,1606,13,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1240,-1,0,1459,-13,0,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-5,0,1026,2,0,0 +2013,8,21,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,-2,0,1135,-12,0,0 +2013,6,2,7,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,-2,0,1200,-17,0,0 +2013,4,23,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1200,18,1,1709,7,0,0 +2013,5,27,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1400,-1,0,2250,-40,0,0 +2013,5,3,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,16,1,2007,55,1,0 +2013,6,22,6,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1450,23,1,1700,18,1,0 +2013,5,28,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1730,1,0,2010,-6,0,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,38,1,1235,31,1,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1959,-5,0,2159,-13,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,2110,12,0,20,8,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1322,4,0,1544,-9,0,0 +2013,7,25,4,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,9,0,2216,47,1,0 +2013,9,28,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1300,-1,0,1455,-8,0,0 +2013,4,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1855,40,1,2130,35,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1110,2,0,1550,-3,0,0 +2013,5,6,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1035,-5,0,1144,-7,0,0 +2013,6,10,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1505,13,0,1630,11,0,0 +2013,4,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1001,-3,0,1149,-11,0,0 +2013,8,26,1,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,945,-8,0,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-2,0,1315,-6,0,0 +2013,8,1,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,741,-7,0,1009,-14,0,0 +2013,5,27,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,820,-6,0,1035,-19,0,0 +2013,10,12,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2155,-2,0,2255,-5,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,3,0,2110,-3,0,0 +2013,8,16,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-1,0,1755,-11,0,0 +2013,8,28,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,-1,0,1838,-9,0,0 +2013,9,20,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,7,0,755,-2,0,0 +2013,10,15,2,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,735,-2,0,1035,-28,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2145,9,0,2342,29,1,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2155,6,0,2324,-8,0,0 +2013,9,13,5,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,-4,0,1408,-4,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1310,119,1,1755,127,1,0 +2013,4,17,3,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,1952,12,0,2213,21,1,0 +2013,7,21,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-4,0,1252,-8,0,0 +2013,10,2,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,12,0,1655,22,1,0 +2013,7,9,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,121,1,2215,97,1,0 +2013,10,8,2,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1545,6,0,1755,-1,0,0 +2013,7,17,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-1,0,1230,-7,0,0 +2013,6,14,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,91,1,2110,65,1,0 +2013,8,28,3,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1100,0,0,1855,1,0,0 +2013,6,8,6,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,0,0,900,-6,0,0 +2013,7,14,7,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,738,1,0,841,-6,0,0 +2013,8,16,5,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1720,12,0,1845,14,0,0 +2013,5,1,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1815,-7,0,1915,-4,0,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,-6,0,1930,-16,0,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,26,1,1211,18,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1758,-2,0,1933,-19,0,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1555,15,1,1730,0,0,0 +2013,8,6,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,750,20,1,1005,22,1,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1725,1,0,2005,16,1,0 +2013,8,31,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,0,1230,14,0,0 +2013,5,23,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,739,-12,0,836,-19,0,0 +2013,5,10,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1500,26,1,1610,29,1,0 +2013,4,16,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,645,-6,0,755,0,0,0 +2013,9,9,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-5,0,2115,-5,0,0 +2013,8,5,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,9,0,543,-12,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1140,-4,0,1219,-5,0,0 +2013,7,6,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,151,1,841,166,1,0 +2013,6,10,1,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,32,1,722,20,1,0 +2013,10,13,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1506,-4,0,1709,8,0,0 +2013,9,19,4,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,759,-6,0,1019,-42,0,0 +2013,7,1,1,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,603,-5,0,711,-7,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1246,114,1,1409,96,1,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1431,2,0,1525,17,1,0 +2013,7,19,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,1,0,1929,-6,0,0 +2013,5,25,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2149,-7,0,143,-23,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-2,0,1145,-12,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,8,0,940,4,0,0 +2013,5,12,7,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-2,0,1824,-10,0,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1115,-1,0,1241,-1,0,0 +2013,4,20,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-3,0,1220,-3,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,955,30,1,1224,26,1,0 +2013,8,16,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1100,-7,0,1159,5,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1045,44,1,1315,40,1,0 +2013,7,8,1,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1450,5,0,1645,-7,0,0 +2013,6,30,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-6,0,840,-14,0,0 +2013,5,25,6,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1135,21,1,1230,19,1,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,855,4,0,950,0,0,0 +2013,4,11,4,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1242,45,1,1812,63,1,0 +2013,4,22,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1905,-2,0,2035,-9,0,0 +2013,6,13,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,80,1,1430,120,1,0 +2013,5,8,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1512,-6,0,2054,-2,0,0 +2013,6,23,7,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1035,16,1,1610,0,1,1 +2013,9,1,7,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,-5,0,1434,-15,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,625,-2,0,904,-2,0,0 +2013,4,13,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-3,0,1746,-4,0,0 +2013,9,9,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-3,0,833,3,0,0 +2013,9,30,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1450,1,0,1613,-15,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,63,1,1814,76,1,0 +2013,6,1,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,1,0,1845,0,0,0 +2013,8,27,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2010,30,1,2055,17,1,0 +2013,8,1,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,6,0,1140,-4,0,0 +2013,9,24,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1000,7,0,1005,0,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,915,-6,0,1025,-3,0,0 +2013,4,14,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-3,0,1347,20,1,0 +2013,5,28,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1340,0,0,1500,-10,0,0 +2013,7,12,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,2,0,1623,-4,0,0 +2013,6,27,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-11,0,1850,-11,0,0 +2013,7,9,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,18,1,1303,26,1,0 +2013,9,13,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-4,0,1646,-7,0,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1730,301,1,2108,307,1,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1540,5,0,1830,-3,0,0 +2013,9,19,4,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-3,0,1020,-28,0,0 +2013,6,4,2,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1300,0,0,2146,2,0,0 +2013,5,27,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1732,-9,0,2015,12,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,173,1,1425,167,1,0 +2013,6,19,3,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1909,-8,0,2014,-11,0,0 +2013,8,7,3,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1310,1,0,1610,-8,0,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,18,1,2150,29,1,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,806,-2,0,1412,-12,0,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,805,0,0,1130,-17,0,0 +2013,6,10,1,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,-6,0,739,2,0,0 +2013,5,30,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-1,0,1210,-4,0,0 +2013,6,2,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,805,4,0,0 +2013,6,25,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,1,0,1055,-2,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,-2,0,2118,-21,0,0 +2013,6,23,7,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,1,0,1315,-2,0,0 +2013,6,14,5,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,1,0,708,0,0,0 +2013,10,2,3,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-6,0,1024,-7,0,0 +2013,7,13,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-7,0,1245,-13,0,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,3,0,2038,11,0,0 +2013,5,3,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1505,191,1,1913,184,1,0 +2013,6,22,6,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1245,-8,0,1538,-8,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1915,-7,0,2150,3,0,0 +2013,6,6,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1415,-3,0,1645,6,0,0 +2013,4,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,-2,0,2118,9,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1840,3,0,2110,3,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1015,33,1,1355,19,1,0 +2013,10,5,6,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,611,24,1,1153,12,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1855,50,1,25,32,1,0 +2013,6,20,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,-9,0,1355,-19,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-5,0,1525,-7,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-6,0,1055,-24,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,-7,0,1235,-19,0,0 +2013,10,25,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,62,1,654,65,1,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-5,0,2249,11,0,0 +2013,7,19,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1255,25,1,1600,27,1,0 +2013,10,16,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2000,57,1,2055,51,1,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2059,12,0,2250,-6,0,0 +2013,4,14,7,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-6,0,2315,-1,0,0 +2013,9,23,1,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1635,1,0,1855,2,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1450,6,0,1705,-11,0,0 +2013,5,17,5,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-4,0,843,-15,0,0 +2013,7,3,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1730,-10,0,2027,-17,0,0 +2013,10,20,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,4,0,2020,-5,0,0 +2013,8,9,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,26,1,1845,111,1,0 +2013,7,6,6,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2230,-4,0,113,1,0,0 +2013,4,5,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1430,4,0,1540,-5,0,0 +2013,5,7,2,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1955,2,0,2139,-13,0,0 +2013,10,12,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1356,-1,0,1702,-12,0,0 +2013,10,26,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1315,-3,0,1435,-8,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,61,1,1145,83,1,0 +2013,7,13,6,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,710,-1,0,955,-41,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1930,-1,0,2131,-8,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2010,31,1,2136,26,1,0 +2013,4,29,1,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1737,-6,0,1916,-19,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,1,0,1954,-5,0,0 +2013,5,6,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,1,0,835,-10,0,0 +2013,7,6,6,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,-4,0,2009,-38,0,0 +2013,4,28,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-4,0,1054,11,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,605,-2,0,842,10,0,0 +2013,4,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1651,34,1,1743,28,1,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,944,-1,0,1108,-12,0,0 +2013,5,25,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,-4,0,825,-17,0,0 +2013,9,7,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,-4,0,1600,-27,0,0 +2013,4,29,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1000,-5,0,1130,-7,0,0 +2013,4,6,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,621,5,0,806,-13,0,0 +2013,9,4,3,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-3,0,1613,-9,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,6,0,2205,10,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1655,-3,0,1800,-22,0,0 +2013,6,18,2,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,-3,0,1815,55,1,0 +2013,5,1,3,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1700,-2,0,2030,-6,0,0 +2013,7,22,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,3,0,2000,80,1,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1246,-4,0,1514,-30,0,0 +2013,9,17,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,8,0,922,-6,0,0 +2013,6,5,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,15,1,1455,8,0,0 +2013,6,28,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-3,0,1139,-14,0,0 +2013,9,13,5,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1140,0,0,1355,-9,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1300,-3,0,1425,6,0,0 +2013,6,6,4,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,811,10,0,927,12,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,26,1,1035,28,1,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1429,-3,0,1604,-23,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1120,42,1,1240,33,1,0 +2013,9,4,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1830,-11,0,2030,-22,0,0 +2013,6,16,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-1,0,800,-16,0,0 +2013,4,5,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1620,3,0,1820,1,0,0 +2013,4,18,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-1,0,1130,0,0,0 +2013,8,25,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-3,0,2145,-31,0,0 +2013,5,4,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-2,0,905,-9,0,0 +2013,10,22,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1645,-5,0,1944,-2,0,0 +2013,7,19,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,800,20,1,1104,-7,0,0 +2013,10,16,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1400,4,0,1520,1,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,830,0,0,924,1,0,0 +2013,5,3,5,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,-1,0,2210,-9,0,0 +2013,9,27,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,815,-4,0,1105,-26,0,0 +2013,5,22,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1110,-9,0,0 +2013,10,11,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1239,68,1,1510,49,1,0 +2013,5,30,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,17,1,1330,0,0,0 +2013,7,31,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-3,0,1915,9,0,0 +2013,4,6,6,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,705,5,0,1305,-12,0,0 +2013,9,30,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1805,-8,0,1950,-29,0,0 +2013,4,30,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1000,-12,0,1258,-11,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1030,-1,0,1843,-8,0,0 +2013,8,29,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1310,0,0,1355,-10,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2110,0,,2238,0,1,1 +2013,5,31,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,745,-9,0,928,-1,0,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2110,28,1,2250,6,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,88,1,1242,80,1,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1605,39,1,1815,27,1,0 +2013,8,11,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1505,-6,0,1745,-13,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,-4,0,1545,-8,0,0 +2013,7,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,642,-3,0,940,-14,0,0 +2013,8,28,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,615,-11,0,743,4,0,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1955,-3,0,2115,22,1,0 +2013,8,30,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-2,0,905,-8,0,0 +2013,4,11,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1627,32,1,1904,26,1,0 +2013,9,7,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-9,0,1345,-26,0,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,836,-5,0,1012,-18,0,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1525,0,0,1635,2,0,0 +2013,10,30,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-2,0,854,-17,0,0 +2013,10,15,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,858,-12,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,930,-1,0,1539,-2,0,0 +2013,6,13,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,0,0,1527,-2,0,0 +2013,8,7,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,1,0,1745,-2,0,0 +2013,4,22,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1325,-7,0,1505,-19,0,0 +2013,7,28,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-3,0,1007,-10,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1205,24,1,1406,5,0,0 +2013,9,22,7,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,914,-6,0,1038,-13,0,0 +2013,10,10,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,620,-3,0,930,2,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1630,19,1,1825,2,0,0 +2013,7,20,6,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1303,-10,0,1623,-20,0,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1505,-6,0,1632,1,0,0 +2013,5,5,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2050,20,1,2256,16,1,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,-5,0,1636,-11,0,0 +2013,4,22,1,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1840,-3,0,2059,-6,0,0 +2013,6,17,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,169,1,2000,175,1,0 +2013,9,7,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,31,1,1655,26,1,0 +2013,6,15,6,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-1,0,1245,-5,0,0 +2013,9,6,5,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1140,-9,0,1410,-3,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1140,189,1,1310,212,1,0 +2013,4,4,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,3,0,1105,-14,0,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1209,-6,0,1344,-20,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2200,15,1,2317,9,0,0 +2013,7,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2130,-6,0,2250,-7,0,0 +2013,9,27,5,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1100,4,0,1155,4,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,2,0,1135,-15,0,0 +2013,7,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,10,0,1013,-1,0,0 +2013,8,14,3,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1943,36,1,2150,44,1,0 +2013,10,5,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2250,8,0,649,2,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,16,1,1658,37,1,0 +2013,8,12,1,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1425,-9,0,1603,-10,0,0 +2013,8,21,3,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,614,-7,0,748,1,0,0 +2013,7,30,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-3,0,1315,-3,0,0 +2013,8,15,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,-4,0,1345,-10,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,64,1,2155,59,1,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1750,0,0,2055,-9,0,0 +2013,6,21,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1602,-8,0,1744,-27,0,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1947,47,1,2312,60,1,0 +2013,10,1,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1955,-3,0,2125,-10,0,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,923,-19,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1742,0,0,1923,6,0,0 +2013,5,15,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1102,-7,0,1153,-10,0,0 +2013,8,31,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1330,4,0,1605,12,0,0 +2013,8,13,2,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1935,103,1,2120,134,1,0 +2013,6,15,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,18,1,1821,2,0,0 +2013,5,24,5,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-4,0,1125,13,0,0 +2013,6,24,1,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,-1,0,1230,12,0,0 +2013,6,23,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,900,-5,0,1040,-20,0,0 +2013,6,12,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1029,38,1,1135,29,1,0 +2013,10,16,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,830,2,0,915,0,0,0 +2013,5,16,4,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1131,-11,0,1609,-21,0,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1202,3,0,1447,-10,0,0 +2013,9,15,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1403,-2,0,1507,-7,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1905,23,1,2040,22,1,0 +2013,9,4,3,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,-9,0,815,-18,0,0 +2013,8,14,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-1,0,937,4,0,0 +2013,4,27,6,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,900,-10,0,1018,-15,0,0 +2013,10,11,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,35,1,1515,30,1,0 +2013,6,11,2,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,545,-5,0,716,-8,0,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,1,0,1813,-6,0,0 +2013,4,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1203,222,1,1422,216,1,0 +2013,8,8,4,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,2,0,845,4,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,2,0,935,-9,0,0 +2013,8,31,6,9E,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1400,-3,0,1618,-1,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1540,4,0,1705,-7,0,0 +2013,5,4,6,EV,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,917,-9,0,1038,-19,0,0 +2013,9,8,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-9,0,1352,-19,0,0 +2013,7,27,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1257,-16,0,0 +2013,4,24,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-7,0,1513,-19,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,847,-6,0,1115,9,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,8,0,1655,0,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,900,2,0,1100,19,1,0 +2013,6,3,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-9,0,837,-19,0,0 +2013,5,20,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,0,0,1352,0,0,0 +2013,4,19,5,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,42,1,1619,17,1,0 +2013,8,22,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-11,0,1947,-11,0,0 +2013,9,19,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,25,1,815,24,1,0 +2013,6,14,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1320,16,1,2155,-4,0,0 +2013,8,25,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,-5,0,2029,-13,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,2,0,1550,20,1,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1606,-2,0,2358,-4,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,3,0,1955,-3,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1622,17,1,1748,8,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2025,4,0,2135,-7,0,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1822,-4,0,2032,-3,0,0 +2013,9,29,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1155,8,0,1430,3,0,0 +2013,5,11,6,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,0,0,2000,9,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,13,0,1410,21,1,0 +2013,5,3,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1945,183,1,2125,153,1,0 +2013,9,20,5,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,800,-3,0,1044,-11,0,0 +2013,7,15,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1158,11,0,1435,4,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,-3,0,921,-17,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1117,13,0,1320,14,0,0 +2013,8,24,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,829,-4,0,1205,1,0,0 +2013,9,19,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-6,0,1751,-21,0,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,739,-3,0,1033,13,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1016,-5,0,1150,-6,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,940,1,0,1635,-14,0,0 +2013,8,1,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-7,0,1003,-22,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1642,30,1,1834,11,0,0 +2013,6,9,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-7,0,1906,-16,0,0 +2013,4,14,7,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,815,6,0,1620,-18,0,0 +2013,4,26,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-5,0,1105,-7,0,0 +2013,5,11,6,9E,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,-11,0,1430,-1,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,650,1,0,820,6,0,0 +2013,8,18,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2101,-4,0,2347,-21,0,0 +2013,8,18,7,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-1,0,1055,-5,0,0 +2013,8,28,3,9E,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,600,-2,0,743,-2,0,0 +2013,10,29,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-6,0,1812,-28,0,0 +2013,8,28,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,845,-3,0,1040,-5,0,0 +2013,6,6,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-9,0,1320,-11,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,43,1,1210,39,1,0 +2013,7,26,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,730,-5,0,1105,-11,0,0 +2013,10,27,7,OO,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-4,0,2059,-19,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1101,15,1,1221,15,1,0 +2013,10,7,1,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1547,-7,0,1818,-12,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,5,0,1740,-4,0,0 +2013,9,3,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,630,1,0,735,-8,0,0 +2013,6,12,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1245,-2,0,1543,-22,0,0 +2013,10,28,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1110,1,0,1130,3,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,930,-4,0,1116,-7,0,0 +2013,9,18,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1828,-2,0,2024,-4,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1716,1,0,2010,6,0,0 +2013,6,27,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,18,1,1918,15,1,0 +2013,8,17,6,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,1,0,1020,-27,0,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,-5,0,1150,-2,0,0 +2013,8,18,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1820,-4,0,2148,-18,0,0 +2013,7,16,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1515,-2,0,1650,0,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2105,-4,0,2354,-16,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2248,-1,0,724,4,0,0 +2013,8,14,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1325,43,1,1450,41,1,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,700,0,0,825,-16,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-6,0,2150,-6,0,0 +2013,5,20,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,605,-3,0,735,11,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,635,-4,0,1330,-24,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2014,45,1,2259,39,1,0 +2013,10,10,4,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1420,22,1,1721,30,1,0 +2013,4,5,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1515,3,0,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,825,12,0,1148,4,0,0 +2013,5,3,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,10,0,1905,8,0,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,810,-1,0,948,-8,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2005,46,1,2235,35,1,0 +2013,6,22,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,735,-2,0,925,-4,0,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1835,13,0,1945,3,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-6,0,1525,-7,0,0 +2013,6,2,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,46,1,2009,29,1,0 +2013,10,30,3,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1455,0,0,1723,10,0,0 +2013,8,1,4,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,15,1,2050,0,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1730,-3,0,1857,-4,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2055,62,1,2150,65,1,0 +2013,10,16,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,11,0,1445,33,1,0 +2013,9,11,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-11,0,1500,-21,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,0,0,1925,-27,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1635,-3,0,1800,-9,0,0 +2013,8,8,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-6,0,1124,-3,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,846,-1,0,1636,-11,0,0 +2013,8,14,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1745,24,1,2030,11,0,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1148,-6,0,1425,-21,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,13,0,1359,9,0,0 +2013,10,21,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-7,0,753,-7,0,0 +2013,5,23,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,20,1,1800,12,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1630,0,,1926,0,1,1 +2013,4,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1855,149,1,2156,145,1,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1415,-2,0,1540,-4,0,0 +2013,5,19,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1150,-5,0,1515,3,0,0 +2013,10,27,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1100,-1,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1700,-2,0,1910,-8,0,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,23,1,2357,43,1,0 +2013,6,14,5,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,47,1,1955,35,1,0 +2013,7,19,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1730,36,1,1848,35,1,0 +2013,4,19,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,805,-3,0,1421,-13,0,0 +2013,9,10,2,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1106,-5,0,1220,-15,0,0 +2013,7,29,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,951,9,0,1223,-9,0,0 +2013,5,2,4,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,715,-1,0,957,-12,0,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,3,0,1834,0,0,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1620,-1,0,1851,-13,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1234,-7,0,1834,-17,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1545,-4,0,1715,-15,0,0 +2013,4,9,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,73,1,1245,61,1,0 +2013,10,22,2,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1725,-4,0,2013,-7,0,0 +2013,9,19,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,847,-10,0,0 +2013,9,6,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1515,-2,0,2040,-8,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,959,-4,0,1126,-15,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,0,0,1801,-5,0,0 +2013,6,1,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,950,-2,0,1200,10,0,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1900,8,0,2130,16,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,117,1,2110,86,1,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1235,17,1,1445,7,0,0 +2013,10,21,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,710,6,0,740,20,1,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1243,0,0,1502,-7,0,0 +2013,4,3,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1830,-5,0,2005,-16,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,-3,0,1333,32,1,0 +2013,7,27,6,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,623,-4,0,1026,-22,0,0 +2013,9,16,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-9,0,945,-2,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,836,7,0,959,5,0,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-1,0,1440,2,0,0 +2013,8,28,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,827,-8,0,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,850,-4,0,1033,-3,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-5,0,1154,-31,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,21,1,1249,9,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,23,1,1920,14,0,0 +2013,5,26,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,500,-3,0,643,-1,0,0 +2013,4,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,845,21,1,922,7,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1540,2,0,1855,-14,0,0 +2013,6,9,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1805,23,1,2020,38,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,-3,0,1153,-18,0,0 +2013,9,19,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,38,1,935,49,1,0 +2013,6,8,6,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1411,55,1,1640,55,1,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1713,132,1,1919,200,1,0 +2013,6,6,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,915,-5,0,1215,2,0,0 +2013,4,23,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1150,-10,0,0 +2013,8,25,7,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,12,0,1540,-24,0,0 +2013,8,26,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,710,-5,0,805,-4,0,0 +2013,8,6,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1130,63,1,1345,56,1,0 +2013,4,18,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,9,0,1555,-7,0,0 +2013,9,30,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-5,0,1524,-4,0,0 +2013,9,13,5,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,18,1,1415,16,1,0 +2013,9,28,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1100,0,0,1410,-31,0,0 +2013,9,10,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1210,111,1,1310,113,1,0 +2013,10,22,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1630,-5,0,1830,-22,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,-6,0,2359,-13,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,-7,0,818,-17,0,0 +2013,7,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,-4,0,1156,-8,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,17,1,5,0,0,0 +2013,4,27,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-4,0,1545,-21,0,0 +2013,6,25,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,26,1,2135,12,0,0 +2013,7,25,4,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-13,0,835,-18,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1735,46,1,1854,75,1,0 +2013,6,29,6,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,802,25,1,920,16,1,0 +2013,5,15,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1010,0,0,1249,-11,0,0 +2013,4,19,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-6,0,1522,4,0,0 +2013,5,11,6,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,745,-3,0,1539,-21,0,0 +2013,4,22,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,703,-4,0,847,-18,0,0 +2013,5,9,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,740,1,0,905,-12,0,0 +2013,9,12,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1818,173,1,1959,166,1,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1416,12,0,1608,-9,0,0 +2013,9,7,6,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-3,0,747,6,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2115,19,1,20,13,0,0 +2013,7,18,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-8,0,1110,-10,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,740,-2,0,855,-2,0,0 +2013,8,4,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,3,0,1940,-13,0,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2155,-1,0,25,6,0,0 +2013,7,7,7,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1904,89,1,2135,76,1,0 +2013,5,19,7,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,710,-3,0,1119,-20,0,0 +2013,4,14,7,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1620,1,0,1800,-10,0,0 +2013,4,13,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,740,-3,0,855,19,1,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1915,26,1,2133,11,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,610,-3,0,725,-21,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,5,0,1115,8,0,0 +2013,9,27,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-3,0,630,-4,0,0 +2013,4,23,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,-3,0,1035,-8,0,0 +2013,8,12,1,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1600,13,0,1901,17,1,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,22,1,2249,2,0,0 +2013,6,24,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1456,-1,0,1641,-13,0,0 +2013,4,4,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,14,0,2110,5,0,0 +2013,9,7,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1829,149,1,2122,145,1,0 +2013,8,6,2,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1325,19,1,1545,32,1,0 +2013,6,20,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,29,1,2050,14,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,705,-1,0,910,-5,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,805,-4,0,1240,-9,0,0 +2013,4,28,7,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1435,12,0,1720,-1,0,0 +2013,10,3,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1018,-4,0,1309,-9,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-2,0,1305,-9,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1635,-6,0,1810,-35,0,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2003,0,0,2106,-9,0,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,620,-5,0,931,-21,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-2,0,1639,-6,0,0 +2013,6,22,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2256,-4,0,2352,-10,0,0 +2013,6,20,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-3,0,757,-8,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-2,0,1550,-6,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1805,21,1,2355,2,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-6,0,1800,-16,0,0 +2013,10,29,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-2,0,635,2,0,0 +2013,6,15,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-4,0,1415,7,0,0 +2013,4,18,4,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1435,190,1,1627,182,1,0 +2013,7,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,815,13,0,1053,10,0,0 +2013,7,2,2,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1455,-2,0,1710,12,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,-3,0,100,2,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,16,1,1909,14,0,0 +2013,8,24,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,731,-4,0,859,-8,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1440,85,1,1810,70,1,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,700,3,0,825,-3,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1627,5,0,1816,16,1,0 +2013,4,4,4,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,615,-6,0,742,3,0,0 +2013,9,23,1,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,952,-4,0,1142,-6,0,0 +2013,8,10,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,5,0,1412,-10,0,0 +2013,6,13,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,3,0,855,3,0,0 +2013,5,21,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,169,1,2015,158,1,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1911,22,1,2134,-6,0,0 +2013,8,9,5,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,5,0,1522,13,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2114,12,0,2355,-6,0,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2015,4,0,2120,1,0,0 +2013,5,12,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,11,0,2010,-6,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,21,1,1805,17,1,0 +2013,8,1,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,14,0,1114,21,1,0 +2013,8,18,7,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,650,-9,0,812,3,0,0 +2013,6,16,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-5,0,1915,-11,0,0 +2013,5,13,1,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1159,39,1,1427,36,1,0 +2013,10,16,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1317,-7,0,1445,-27,0,0 +2013,4,10,3,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1921,-7,0,2037,-9,0,0 +2013,8,15,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2155,-3,0,43,0,0,0 +2013,7,20,6,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,800,-2,0,935,-22,0,0 +2013,8,23,5,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,39,1,1712,39,1,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,-8,0,1608,-15,0,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,253,1,2126,273,1,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1537,2,0,1739,-9,0,0 +2013,5,8,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,57,1,1555,50,1,0 +2013,6,12,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,-4,0,1048,-15,0,0 +2013,10,20,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,-1,0,1400,-7,0,0 +2013,6,30,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-9,0,1150,-11,0,0 +2013,6,21,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,0,0,845,-3,0,0 +2013,7,18,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,5,0,1923,9,0,0 +2013,9,12,4,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,11,0,1605,14,0,0 +2013,8,20,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1325,15,1,1450,12,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1249,-3,0,1511,-9,0,0 +2013,6,11,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,55,1,1830,36,1,0 +2013,5,24,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,210,3,0,630,7,0,0 +2013,9,11,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1000,-5,0,1115,-10,0,0 +2013,5,2,4,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1740,-1,0,1846,-10,0,0 +2013,8,26,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1511,-2,0,1900,-17,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,4,0,1430,-6,0,0 +2013,4,16,2,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-2,0,1731,5,0,0 +2013,5,10,5,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,700,-5,0,800,-22,0,0 +2013,6,3,1,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,925,-5,0,1005,-14,0,0 +2013,9,20,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,9,0,2025,9,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,2,0,1429,7,0,0 +2013,5,7,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-1,0,1805,-11,0,0 +2013,6,5,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1437,-11,0,1647,-26,0,0 +2013,8,4,7,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,0,,2046,0,1,1 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,825,36,1,1100,21,1,0 +2013,4,26,5,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,635,-2,0,845,-8,0,0 +2013,9,11,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1540,13,0,1655,7,0,0 +2013,6,14,5,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,0,0,805,-5,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1206,-6,0,1449,-13,0,0 +2013,8,2,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-8,0,900,-16,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-2,0,1759,-3,0,0 +2013,7,19,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,16,1,2041,71,1,0 +2013,7,31,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,-4,0,2009,-6,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,14,0,1924,-1,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1348,2,0,1458,10,0,0 +2013,8,27,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,630,-3,0,805,5,0,0 +2013,6,19,3,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1728,159,1,2003,155,1,0 +2013,10,27,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,900,1,0,0 +2013,4,6,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1700,5,0,1755,-5,0,0 +2013,4,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-1,0,1220,-12,0,0 +2013,10,4,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2030,47,1,2155,39,1,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1440,0,0,1755,-2,0,0 +2013,10,13,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1506,7,0,1829,6,0,0 +2013,7,7,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1947,2,0,2145,-3,0,0 +2013,10,3,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,48,1,1650,63,1,0 +2013,9,2,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1900,17,1,2010,12,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1451,-3,0,1605,-3,0,0 +2013,10,14,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,955,-5,0,1243,2,0,0 +2013,6,19,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1730,10,0,1945,-4,0,0 +2013,6,24,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,620,-1,0,716,-6,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,62,1,1445,84,1,0 +2013,10,2,3,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1715,-3,0,2205,-14,0,0 +2013,8,24,6,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,6,0,1841,12,0,0 +2013,6,10,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-7,0,1127,-10,0,0 +2013,9,16,1,EV,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2000,-6,0,2053,-15,0,0 +2013,4,30,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1410,-6,0,2059,-12,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,855,-2,0,1300,-3,0,0 +2013,8,5,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1148,-2,0,1450,-3,0,0 +2013,5,13,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,-8,0,2137,-15,0,0 +2013,9,26,4,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,13,0,922,24,1,0 +2013,4,12,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1618,-8,0,1732,-4,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1520,84,1,1741,126,1,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,-6,0,1755,-18,0,0 +2013,6,28,5,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1750,138,1,1857,130,1,0 +2013,10,19,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1028,3,0,1418,-12,0,0 +2013,5,2,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-12,0,2040,-13,0,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,600,12,0,728,2,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1900,5,0,2320,-11,0,0 +2013,6,22,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,745,67,1,1520,50,1,0 +2013,5,5,7,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,21,1,1157,13,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1150,158,1,1505,168,1,0 +2013,6,6,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,715,-4,0,914,-11,0,0 +2013,5,20,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2000,53,1,2125,43,1,0 +2013,8,13,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,35,1,1845,35,1,0 +2013,7,19,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1219,-11,0,1320,-24,0,0 +2013,4,27,6,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1606,-8,0,1729,-25,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,530,-3,0,707,5,0,0 +2013,7,11,4,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,27,1,2259,40,1,0 +2013,6,28,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1015,5,0,1135,5,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,-1,0,2205,-4,0,0 +2013,6,21,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-4,0,1210,-10,0,0 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1350,-2,0,1435,1,0,0 +2013,7,30,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,112,1,2155,101,1,0 +2013,6,17,1,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,0,0,945,57,1,0 +2013,5,14,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1905,-7,0,2200,-14,0,0 +2013,7,22,1,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1114,11,0,1256,14,0,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1247,19,1,1835,26,1,0 +2013,8,10,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1717,47,1,1818,42,1,0 +2013,8,5,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-5,0,1517,-8,0,0 +2013,9,4,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-2,0,818,-13,0,0 +2013,6,15,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-3,0,905,-30,0,0 +2013,10,13,7,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1129,-6,0,1504,-14,0,0 +2013,8,25,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,70,1,1505,51,1,0 +2013,7,29,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-12,0,1918,-20,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-3,0,1353,-24,0,0 +2013,8,11,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1251,17,1,1537,1,0,0 +2013,7,12,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-1,0,1239,10,0,0 +2013,6,21,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,-4,0,1925,16,1,0 +2013,4,24,3,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1050,-2,0,1215,11,0,0 +2013,7,25,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2030,-2,0,2140,-13,0,0 +2013,6,18,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1645,18,1,1750,12,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,835,-2,0,1215,-17,0,0 +2013,4,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,-1,0,1839,1,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-2,0,1721,2,0,0 +2013,8,19,1,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1715,4,0,1840,-9,0,0 +2013,10,14,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,12,0,2102,13,0,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1719,-1,0,1909,-5,0,0 +2013,10,1,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1129,13,0,1456,-8,0,0 +2013,6,13,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,717,-4,0,902,9,0,0 +2013,8,4,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1554,-5,0,1848,2,0,0 +2013,7,18,4,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1000,-2,0,1050,-15,0,0 +2013,8,27,2,9E,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1242,0,0,1433,-15,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1713,-5,0,2100,-1,0,0 +2013,6,19,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1230,23,1,1335,14,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,-1,0,1623,-8,0,0 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-3,0,945,-2,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,-9,0,1140,-13,0,0 +2013,10,1,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,3,0,1650,3,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,0,0,1847,-5,0,0 +2013,10,28,1,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2035,103,1,2215,117,1,0 +2013,8,30,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,745,0,,905,0,1,1 +2013,10,4,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2345,-2,0,601,11,0,0 +2013,10,30,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1450,-1,0,1613,14,0,0 +2013,9,12,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1730,0,,1926,0,1,1 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2130,0,,2335,0,1,1 +2013,5,3,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,-3,0,2351,-6,0,0 +2013,9,10,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1920,-3,0,2045,-9,0,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1017,-1,0,1158,-19,0,0 +2013,9,30,1,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-6,0,939,-8,0,0 +2013,9,22,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,4,0,1220,-5,0,0 +2013,9,1,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,715,-10,0,1000,-37,0,0 +2013,8,12,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,54,1,130,43,1,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1150,25,1,1335,11,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1933,-5,0,2338,-19,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2110,-4,0,2212,-16,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,19,1,1405,20,1,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1220,-2,0,1345,-8,0,0 +2013,8,4,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1248,-2,0,1459,-6,0,0 +2013,10,20,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1245,-5,0,1320,-6,0,0 +2013,10,7,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1826,-7,0,1950,-7,0,0 +2013,4,22,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-9,0,2040,-2,0,0 +2013,5,29,3,OO,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1430,3,0,1610,-13,0,0 +2013,10,12,6,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1120,5,0,1345,-22,0,0 +2013,4,18,4,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,830,-3,0,1030,0,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,12,0,2115,5,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,755,-17,0,0 +2013,9,28,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,-3,0,1530,-15,0,0 +2013,6,12,3,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,730,4,0,930,11,0,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1557,2,0,1719,4,0,0 +2013,8,15,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1005,-5,0,1105,-6,0,0 +2013,7,25,4,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1510,36,1,1735,28,1,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,805,-7,0,0 +2013,9,26,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-6,0,1557,10,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,4,0,1020,4,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1409,0,0,2229,-34,0,0 +2013,6,19,3,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-4,0,817,-15,0,0 +2013,9,26,4,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1927,-5,0,2100,-4,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,57,1,2140,35,1,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,9,0,1115,-5,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1850,0,0,2345,2,0,0 +2013,5,14,2,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1450,72,1,1850,62,1,0 +2013,10,30,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-7,0,1635,-1,0,0 +2013,8,21,3,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1750,-9,0,1953,-15,0,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,19,1,1616,15,1,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,745,-1,0,1040,-11,0,0 +2013,7,28,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,-8,0,1127,-4,0,0 +2013,7,29,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,29,1,1655,23,1,0 +2013,9,7,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1725,-3,0,1800,-14,0,0 +2013,5,7,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-4,0,1744,-9,0,0 +2013,6,1,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-1,0,1557,-2,0,0 +2013,9,6,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,750,-8,0,1007,-30,0,0 +2013,5,31,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1310,-1,0,2049,-7,0,0 +2013,8,27,2,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1104,-7,0,1254,-18,0,0 +2013,10,11,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1500,0,,1600,0,1,1 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2045,-4,0,2330,-11,0,0 +2013,4,11,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1500,-1,0,1738,2,0,0 +2013,9,24,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1455,-7,0,1626,-19,0,0 +2013,7,10,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,23,1,1115,5,0,0 +2013,5,28,2,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1742,-3,0,2014,-9,0,0 +2013,6,23,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,15,1,1925,-1,0,0 +2013,6,16,7,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-10,0,925,-7,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,740,-6,0,1017,-13,0,0 +2013,4,10,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1205,16,1,1410,-7,0,0 +2013,5,8,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1359,-4,0,1641,7,0,0 +2013,6,24,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1630,-2,0,1740,-5,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1924,7,0,2157,4,0,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1629,61,1,1929,67,1,0 +2013,10,18,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-3,0,1605,-5,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1246,28,1,1408,18,1,0 +2013,10,20,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-6,0,1916,-11,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-9,0,1038,-11,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,804,5,0,1347,62,1,0 +2013,6,23,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1705,-8,0,2111,-27,0,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,-4,0,1932,-12,0,0 +2013,9,14,6,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1700,-2,0,2000,-51,0,0 +2013,6,15,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1655,8,0,1922,12,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2155,-6,0,10,-11,0,0 +2013,6,11,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1356,-8,0,1802,-15,0,0 +2013,8,9,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1505,91,1,1825,86,1,0 +2013,9,4,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1317,-10,0,1614,3,0,0 +2013,5,11,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1748,36,1,1956,11,0,0 +2013,8,30,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2203,-6,0,2344,-15,0,0 +2013,8,30,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1000,-5,0,1205,-30,0,0 +2013,6,10,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,-7,0,1025,-11,0,0 +2013,6,4,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1925,1,0,2158,-3,0,0 +2013,4,7,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-7,0,1747,-15,0,0 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1409,14,0,2229,-6,0,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2045,-5,0,2310,-14,0,0 +2013,9,23,1,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,-4,0,2110,9,0,0 +2013,7,11,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,818,7,0,1359,4,0,0 +2013,5,23,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1823,17,1,2145,41,1,0 +2013,7,11,4,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1252,0,,1641,0,1,1 +2013,5,13,1,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1659,-6,0,1906,4,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,18,1,1530,10,0,0 +2013,4,24,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,28,1,1200,28,1,0 +2013,10,8,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-9,0,1139,-19,0,0 +2013,6,19,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1511,0,0,1900,-11,0,0 +2013,6,22,6,9E,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-8,0,1705,-4,0,0 +2013,8,9,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1234,-5,0,1437,-15,0,0 +2013,5,21,2,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-4,0,909,-40,0,0 +2013,8,9,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,-4,0,801,-12,0,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,755,-4,0,914,27,1,0 +2013,6,20,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1305,33,1,1405,27,1,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-5,0,1347,-22,0,0 +2013,8,10,6,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,-2,0,1900,6,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1830,125,1,2132,136,1,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1940,26,1,2100,34,1,0 +2013,4,29,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1945,-4,0,2237,55,1,0 +2013,9,20,5,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1116,-2,0,1433,-6,0,0 +2013,6,28,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1915,38,1,2211,28,1,0 +2013,10,31,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1035,-2,0,1345,-22,0,0 +2013,6,8,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1335,9,0,1520,-7,0,0 +2013,9,21,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1745,21,1,1925,2,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1749,-2,0,2034,-1,0,0 +2013,8,5,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2333,-1,0,501,-8,0,0 +2013,8,4,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-1,0,1232,-4,0,0 +2013,4,1,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,605,0,0,810,-6,0,0 +2013,9,11,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,5,0,809,-12,0,0 +2013,6,23,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,107,1,952,89,1,0 +2013,10,21,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2030,-4,0,2106,0,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,10,0,1904,10,0,0 +2013,6,6,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1850,-4,0,2035,-22,0,0 +2013,8,14,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,945,2,0,1230,-17,0,0 +2013,8,24,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1040,-8,0,1222,-17,0,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-1,0,1745,-7,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,905,-9,0,1214,-22,0,0 +2013,9,27,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2135,-16,0,2357,-8,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2100,17,1,15,16,1,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2005,-1,0,2211,1,0,0 +2013,4,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1225,-2,0,1406,-11,0,0 +2013,10,22,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1915,1,0,2035,-2,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2210,37,1,2340,22,1,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1650,5,0,1805,5,0,0 +2013,5,7,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1536,-6,0,1812,-3,0,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,-11,0,1810,-17,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,-5,0,1255,-6,0,0 +2013,5,18,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,740,-1,0,815,-9,0,0 +2013,9,25,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,20,1,1715,24,1,0 +2013,10,28,1,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,911,33,1,1439,2,0,0 +2013,10,26,6,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1220,-8,0,0 +2013,5,8,3,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,-5,0,947,-19,0,0 +2013,6,4,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-8,0,5,-21,0,0 +2013,4,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1255,-2,0,1620,-5,0,0 +2013,9,17,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1210,-7,0,1400,-14,0,0 +2013,6,25,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-5,0,1517,0,0,0 +2013,5,16,4,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,938,-7,0,1204,29,1,0 +2013,9,14,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-7,0,1205,-17,0,0 +2013,5,4,6,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1716,9,0,1720,1,0,0 +2013,10,31,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,0,0,1125,-17,0,0 +2013,10,16,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1959,-10,0,2158,-28,0,0 +2013,9,4,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1256,-9,0,1447,-21,0,0 +2013,4,13,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,18,1,1810,19,1,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2105,9,0,2207,3,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-3,0,1150,-24,0,0 +2013,9,24,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,920,3,0,1040,-4,0,0 +2013,9,22,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,830,-6,0,948,-16,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-2,0,1615,0,0,0 +2013,8,9,5,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,545,-5,0,905,-15,0,0 +2013,4,7,7,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,800,20,1,959,18,1,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1900,-2,0,2005,-16,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1940,124,1,2147,115,1,0 +2013,9,10,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-2,0,1352,-14,0,0 +2013,6,28,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-1,0,1633,2,0,0 +2013,8,16,5,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,1557,6,0,716,5,0,0 +2013,6,25,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-11,0,2059,-4,0,0 +2013,9,24,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-4,0,1407,-13,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1735,14,0,2000,9,0,0 +2013,8,20,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,449,-6,0,744,-7,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-6,0,1451,26,1,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,745,3,0,840,8,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1620,20,1,1825,17,1,0 +2013,5,1,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,-9,0,1638,-23,0,0 +2013,5,25,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,110,1,1635,119,1,0 +2013,8,27,2,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,22,1,2145,-4,0,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1355,12,0,1520,3,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,-5,0,2114,-1,0,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,815,-1,0,1114,-12,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,935,39,1,1040,29,1,0 +2013,10,2,3,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1635,-7,0,1815,-30,0,0 +2013,9,1,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1520,-14,0,0 +2013,10,26,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,610,8,0,724,4,0,0 +2013,7,31,3,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1725,-10,0,1924,-30,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,-4,0,1355,-2,0,0 +2013,7,25,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,0,0,1055,0,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1815,35,1,1948,50,1,0 +2013,4,6,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1340,-4,0,2200,2,0,0 +2013,10,17,4,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,27,1,1915,2,0,0 +2013,8,12,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,3,0,1330,1,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,710,50,1,830,55,1,0 +2013,7,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1215,17,1,1315,22,1,0 +2013,5,6,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,740,0,0,905,-16,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,735,0,0,940,-6,0,0 +2013,9,4,3,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1725,-4,0,2002,-2,0,0 +2013,6,10,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,2,0,1500,14,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,855,2,0,1020,6,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1315,2,0,1610,-12,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-2,0,940,-4,0,0 +2013,4,9,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,24,1,1048,53,1,0 +2013,5,18,6,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,25,19,1,503,3,0,0 +2013,8,29,4,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1120,48,1,1320,42,1,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1525,-1,0,1732,9,0,0 +2013,7,16,2,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1957,-6,0,2309,-41,0,0 +2013,4,8,1,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1920,-2,0,2115,-11,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,-1,0,1508,3,0,0 +2013,8,30,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2125,-6,0,146,-1,0,0 +2013,7,7,7,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1648,-5,0,1817,6,0,0 +2013,4,1,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1030,-4,0,1210,-26,0,0 +2013,7,28,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,850,-6,0,1014,-20,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1920,-6,0,2302,-21,0,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,20,1,2330,11,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1310,0,0,1644,4,0,0 +2013,4,6,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,943,-8,0,0 +2013,6,22,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-9,0,1917,-12,0,0 +2013,5,4,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1653,3,0,1814,-5,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1905,6,0,2145,-5,0,0 +2013,8,6,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1117,-8,0,1335,0,0,0 +2013,8,8,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-2,0,2033,-2,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1155,47,1,1545,23,1,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2152,-1,0,2341,-12,0,0 +2013,10,4,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-3,0,2014,2,0,0 +2013,10,22,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,0,0,1045,-5,0,0 +2013,8,8,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,910,11,0,1215,16,1,0 +2013,6,7,5,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1427,39,1,1547,45,1,0 +2013,10,23,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,21,1,1840,15,1,0 +2013,6,13,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1725,12,0,1830,9,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,-1,0,1720,-21,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,7,0,2020,-2,0,0 +2013,6,27,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-9,0,1115,-30,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,716,-1,0,1311,6,0,0 +2013,9,1,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1955,-8,0,2219,-8,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2235,-1,0,120,3,0,0 +2013,7,12,5,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,710,-4,0,1012,-10,0,0 +2013,4,1,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,605,-8,0,725,-17,0,0 +2013,6,4,2,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-3,0,1710,20,1,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,930,-4,0,1020,-12,0,0 +2013,7,8,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-2,0,1800,-21,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,-2,0,1430,-1,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1250,-2,0,1500,-19,0,0 +2013,10,15,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1136,0,0,1420,-3,0,0 +2013,8,2,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,810,-6,0,1031,7,0,0 +2013,8,5,1,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,8,0,1455,-16,0,0 +2013,9,4,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2035,-8,0,2155,-12,0,0 +2013,5,21,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1854,-4,0,2051,-4,0,0 +2013,10,21,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,-5,0,2130,0,0,0 +2013,6,13,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-3,0,810,13,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,-4,0,1704,-11,0,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1655,6,0,1805,1,0,0 +2013,8,27,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,-5,0,2356,-12,0,0 +2013,7,14,7,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,7,0,2010,0,0,0 +2013,8,28,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,848,-8,0,922,-7,0,0 +2013,6,28,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,-4,0,830,-20,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,1510,13,0,2215,11,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,645,-1,0,810,0,0,0 +2013,7,10,3,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,5,0,1830,0,0,0 +2013,8,9,5,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1656,-4,0,1852,-1,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,846,0,0,1020,-14,0,0 +2013,4,4,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1830,-3,0,2052,-11,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-6,0,1305,-22,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,2,0,1320,1,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,2,0,1526,-1,0,0 +2013,6,2,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-4,0,808,-12,0,0 +2013,7,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,-3,0,1545,-16,0,0 +2013,7,21,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1451,172,1,1750,192,1,0 +2013,10,27,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1710,-7,0,1940,-15,0,0 +2013,9,14,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,24,1,1834,32,1,0 +2013,4,26,5,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,-5,0,1803,-10,0,0 +2013,5,6,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,9,0,920,12,0,0 +2013,5,20,1,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1135,-5,0,1546,-2,0,0 +2013,6,2,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,0,0,1850,-5,0,0 +2013,4,6,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1555,0,0,1857,-16,0,0 +2013,6,20,4,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,26,1,1630,26,1,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1250,45,1,1925,43,1,0 +2013,10,14,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,830,-8,0,1550,-48,0,0 +2013,5,15,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2025,-9,0,2220,-1,0,0 +2013,8,25,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1535,67,1,1655,89,1,0 +2013,7,27,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,4,0,1500,-3,0,0 +2013,7,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1930,-7,0,2015,-8,0,0 +2013,4,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,1,0,724,6,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,46,1,1829,35,1,0 +2013,5,26,7,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1620,-2,0,1801,-9,0,0 +2013,6,5,3,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,605,0,0,737,5,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1107,-3,0,1238,-5,0,0 +2013,4,22,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,22,1,2240,14,0,0 +2013,8,23,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1059,-12,0,1430,-21,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1125,9,0,1309,4,0,0 +2013,10,13,7,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-1,0,1110,-28,0,0 +2013,9,14,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,-5,0,1358,-18,0,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1007,25,1,1128,9,0,0 +2013,7,21,7,FL,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1025,-7,0,1302,5,0,0 +2013,10,19,6,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,13,0,2137,21,1,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1230,6,0,1504,-9,0,0 +2013,8,11,7,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,845,-1,0,1010,-5,0,0 +2013,8,31,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,746,0,0,1030,-38,0,0 +2013,9,8,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,857,-20,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1400,-3,0,1510,-9,0,0 +2013,5,17,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,2,0,1240,9,0,0 +2013,8,4,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1040,-8,0,1257,-34,0,0 +2013,6,23,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1959,-2,0,2147,-9,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,0,0,1045,-10,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,6,0,1736,3,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1527,7,0,1651,0,0,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,841,-2,0,938,-8,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1602,30,1,1715,20,1,0 +2013,5,15,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1900,170,1,1935,178,1,0 +2013,4,9,2,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1459,-8,0,1637,-11,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2010,-4,0,2134,-5,0,0 +2013,7,31,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,8,0,2257,5,0,0 +2013,4,12,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-1,0,1445,-15,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2147,-1,0,2344,-6,0,0 +2013,4,11,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1032,6,0,1311,19,1,0 +2013,4,21,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-3,0,1720,-5,0,0 +2013,7,18,4,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,36,1,2055,21,1,0 +2013,7,21,7,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,1259,1,0,1654,-23,0,0 +2013,5,17,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1740,-2,0,1940,-7,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1745,59,1,2010,49,1,0 +2013,7,20,6,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,627,0,,744,0,1,1 +2013,9,10,2,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1505,-4,0,1557,-1,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1355,5,0,1710,8,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2020,14,0,2145,2,0,0 +2013,6,16,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,24,1,1825,12,0,0 +2013,5,29,3,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1256,-2,0,1531,-8,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1640,52,1,1825,41,1,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-6,0,1055,4,0,0 +2013,8,21,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,8,0,1651,6,0,0 +2013,10,16,3,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1645,-6,0,2352,-35,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1305,-5,0,1423,4,0,0 +2013,9,22,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,900,-8,0,1010,-13,0,0 +2013,4,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1135,-5,0,1235,-3,0,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1620,1,0,1740,10,0,0 +2013,9,13,5,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,-11,0,2110,-16,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,5,0,1349,-4,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1045,11,0,1250,4,0,0 +2013,7,5,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1303,-4,0,1431,-12,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-4,0,1721,-10,0,0 +2013,9,1,7,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-4,0,955,-14,0,0 +2013,9,13,5,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1810,4,0,1920,-6,0,0 +2013,4,22,1,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,725,-8,0,1015,13,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1635,22,1,1900,26,1,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,-2,0,939,-5,0,0 +2013,8,6,2,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,11,0,1245,10,0,0 +2013,7,10,3,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-3,0,1006,1,0,0 +2013,7,30,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,550,-6,0,700,-22,0,0 +2013,5,23,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1810,27,1,2015,14,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1255,10,0,1600,4,0,0 +2013,6,18,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1030,2,0,1200,0,0,0 +2013,7,18,4,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2000,0,0,2310,-22,0,0 +2013,7,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1246,37,1,1648,20,1,0 +2013,10,14,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,27,1,2020,17,1,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1540,11,0,1645,7,0,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,845,2,0,1215,12,0,0 +2013,10,15,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1210,-1,0,1320,-10,0,0 +2013,9,4,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1051,-9,0,1417,-2,0,0 +2013,5,11,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1740,46,1,1905,39,1,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,2002,15,1,2155,-6,0,0 +2013,8,11,7,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,39,1,1305,32,1,0 +2013,4,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1825,-4,0,1945,-9,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,4,0,1916,-4,0,0 +2013,6,19,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,610,73,1,715,69,1,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,-4,0,2210,-10,0,0 +2013,5,16,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,-2,0,2100,-32,0,0 +2013,8,17,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,-2,0,2123,-4,0,0 +2013,4,4,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1652,7,0,1717,1,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1859,2,0,2344,1,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1925,24,1,2109,26,1,0 +2013,9,18,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-6,0,2145,-12,0,0 +2013,6,18,2,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1015,69,1,1315,74,1,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1820,-1,0,2124,-36,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1150,4,0,1330,10,0,0 +2013,4,22,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,620,-7,0,803,-31,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1010,-4,0,1430,9,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,15,1,2120,-3,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,6,0,1622,9,0,0 +2013,7,13,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,-1,0,1530,2,0,0 +2013,10,29,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,-2,0,1852,-11,0,0 +2013,4,15,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,1613,-6,0,0 +2013,8,20,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1130,-4,0,1410,-26,0,0 +2013,7,8,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,935,-3,0,950,-7,0,0 +2013,9,23,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-3,0,849,-18,0,0 +2013,7,19,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,921,-2,0,1051,-12,0,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,845,-1,0,1040,13,0,0 +2013,8,19,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,900,-7,0,951,2,0,0 +2013,7,18,4,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1645,-5,0,2235,-28,0,0 +2013,9,18,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,4,0,1558,-1,0,0 +2013,9,19,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1125,-3,0,1335,0,0,0 +2013,4,25,4,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1115,-5,0,1151,1,0,0 +2013,6,14,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-3,0,2044,2,0,0 +2013,10,31,4,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1106,42,1,1617,33,1,0 +2013,8,21,3,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1107,0,0,1400,-2,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1135,24,1,1300,27,1,0 +2013,8,20,2,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,930,-3,0,1750,-1,0,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,909,-2,0,1134,-23,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1900,10,0,2240,12,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-6,0,1035,-14,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1231,-6,0,1455,-15,0,0 +2013,7,24,3,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,945,-4,0,1505,-23,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,59,1,1020,50,1,0 +2013,7,20,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1149,-4,0,1756,-20,0,0 +2013,4,16,2,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,635,-10,0,723,-15,0,0 +2013,8,26,1,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-1,0,1828,-5,0,0 +2013,5,27,1,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1805,11,0,2019,3,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1749,7,0,2025,1,0,0 +2013,9,23,1,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1053,-3,0,1239,-14,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,2,0,2345,-7,0,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1013,-1,0,1340,-15,0,0 +2013,9,26,4,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1753,11,0,2104,3,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1328,-4,0,1716,-19,0,0 +2013,7,1,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-5,0,1439,20,1,0 +2013,6,2,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,745,-3,0,810,-10,0,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,833,-4,0,1139,-5,0,0 +2013,8,23,5,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,-6,0,1955,-25,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2107,-3,0,2204,0,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2210,-5,0,2300,-5,0,0 +2013,9,25,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,647,-4,0,1148,-17,0,0 +2013,5,25,6,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,945,-5,0,1055,-19,0,0 +2013,7,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,705,-2,0,944,6,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1350,11,0,1455,14,0,0 +2013,6,22,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,43,1,2100,31,1,0 +2013,8,23,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,650,8,0,825,6,0,0 +2013,10,4,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1710,-5,0,2130,-6,0,0 +2013,10,8,2,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,4,0,1435,-9,0,0 +2013,4,14,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-6,0,1232,-12,0,0 +2013,4,27,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1245,-1,0,1420,3,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1137,-5,0,1744,-14,0,0 +2013,8,28,3,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,0,0,1006,-16,0,0 +2013,7,5,5,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,-12,0,1230,-10,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1349,149,1,2229,141,1,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-1,0,1940,-5,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,-2,0,1310,-4,0,0 +2013,5,18,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1214,-6,0,1305,-13,0,0 +2013,6,4,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,0,0,1300,-8,0,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-5,0,1810,-7,0,0 +2013,7,26,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1246,-1,0,1817,9,0,0 +2013,6,29,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2115,-9,0,20,19,1,0 +2013,9,22,7,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,729,-7,0,1050,-4,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1312,12,0,1427,9,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,-3,0,1255,-11,0,0 +2013,6,21,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,0,,1200,0,1,1 +2013,4,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1948,49,1,2153,45,1,0 +2013,6,22,6,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,111,1,1615,94,1,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1040,4,0,1221,3,0,0 +2013,7,13,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,3,0,903,-6,0,0 +2013,10,17,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1007,0,0,1248,-10,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,745,50,1,1140,49,1,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,828,-5,0,835,-5,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1520,79,1,1812,57,1,0 +2013,6,7,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1945,-4,0,2202,3,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1220,52,1,1325,45,1,0 +2013,8,4,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-7,0,645,-5,0,0 +2013,9,22,7,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1040,-3,0,1150,-4,0,0 +2013,9,24,2,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1710,-19,0,2001,-35,0,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,530,-7,0,900,-18,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,850,13,0,1020,11,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1255,-1,0,1755,-7,0,0 +2013,5,28,2,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1840,2,0,1955,-2,0,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1300,7,0,1350,-1,0,0 +2013,5,11,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2055,-5,0,2130,-17,0,0 +2013,8,23,5,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1905,6,0,2240,17,1,0 +2013,5,13,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,955,5,0,1310,5,0,0 +2013,10,29,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,815,1,0,0 +2013,4,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1730,20,1,2000,22,1,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,-3,0,1850,-12,0,0 +2013,10,8,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,1,0,1515,-1,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,-6,0,1158,-6,0,0 +2013,7,11,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,-2,0,1040,0,0,0 +2013,4,28,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,5,0,1544,18,1,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-2,0,1102,6,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-5,0,2206,-11,0,0 +2013,8,16,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,1,0,950,17,1,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,11,0,1355,-10,0,0 +2013,9,30,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,-3,0,2130,-23,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1433,84,1,1525,119,1,0 +2013,10,16,3,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1355,13,0,1545,-6,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,-1,0,1720,-8,0,0 +2013,8,26,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,708,6,0,829,11,0,0 +2013,7,23,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2010,17,1,2125,24,1,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,816,0,,1141,0,1,1 +2013,7,26,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1805,70,1,1850,78,1,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1641,43,1,1806,12,0,0 +2013,6,16,7,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,16,1,2335,41,1,0 +2013,10,8,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,850,-6,0,0 +2013,7,17,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,954,-5,0,1028,-6,0,0 +2013,8,6,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,-8,0,2025,-18,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1605,-1,0,1714,85,1,0 +2013,7,19,5,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,810,122,1,1140,102,1,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-1,0,847,-7,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1605,-1,0,1655,10,0,0 +2013,6,30,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1636,0,,1845,0,1,1 +2013,4,3,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1605,-4,0,1800,11,0,0 +2013,4,16,2,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,740,-3,0,1000,5,0,0 +2013,7,19,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,146,1,1839,138,1,0 +2013,9,20,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2006,69,1,2321,54,1,0 +2013,5,15,3,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1558,-6,0,1645,-6,0,0 +2013,4,25,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1210,12,0,1325,16,1,0 +2013,5,26,7,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,1030,-1,0,1300,-5,0,0 +2013,4,3,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1358,5,0,1701,-10,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,-3,0,1449,-6,0,0 +2013,8,27,2,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,5,0,2015,9,0,0 +2013,8,24,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1640,59,1,1810,54,1,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,-1,0,1955,5,0,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2107,0,0,2155,-8,0,0 +2013,6,13,4,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1855,7,0,2205,9,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,6,0,2255,27,1,0 +2013,6,30,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,9,0,1600,4,0,0 +2013,10,14,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1440,38,1,1731,50,1,0 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1301,-5,0,1810,-9,0,0 +2013,5,2,4,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,610,0,0,820,6,0,0 +2013,5,19,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,124,1,2054,126,1,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-2,0,5,-19,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1802,-4,0,2215,-21,0,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,-1,0,1825,-2,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,3,0,1449,-11,0,0 +2013,10,14,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-9,0,752,-21,0,0 +2013,9,20,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-3,0,2125,-7,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1005,3,0,1355,-1,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1210,1,0,1350,-11,0,0 +2013,8,29,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2140,1,0,40,-31,0,0 +2013,6,7,5,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1045,58,1,1609,63,1,0 +2013,10,25,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,-10,0,2028,-26,0,0 +2013,6,29,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,147,1,1744,132,1,0 +2013,4,30,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,800,16,1,925,22,1,0 +2013,10,14,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1355,95,1,1546,81,1,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1810,0,0,2027,-14,0,0 +2013,7,17,3,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,-5,0,1712,-14,0,0 +2013,8,7,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1010,63,1,1023,66,1,0 +2013,10,7,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1747,1,0,1934,8,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1620,132,1,1755,126,1,0 +2013,9,26,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-8,0,923,14,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,84,1,2300,77,1,0 +2013,7,10,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,705,2,0,1524,-7,0,0 +2013,10,14,1,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1902,-6,0,2011,3,0,0 +2013,9,12,4,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-6,0,1057,-15,0,0 +2013,8,30,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,6,0,1810,10,0,0 +2013,7,3,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,-1,0,1903,-2,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1020,15,1,1417,4,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,-5,0,1030,-10,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,24,1,1240,13,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,77,1,1120,58,1,0 +2013,10,9,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1114,2,0,1217,-8,0,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,632,-9,0,940,-29,0,0 +2013,9,26,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-8,0,1626,-18,0,0 +2013,9,5,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1300,-3,0,1419,-2,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1925,57,1,2230,85,1,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,-5,0,1022,-8,0,0 +2013,10,9,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,949,5,0,1103,1,0,0 +2013,7,5,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1034,-1,0,1206,-5,0,0 +2013,4,23,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,641,-2,0,742,-1,0,0 +2013,8,23,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1645,6,0,1755,3,0,0 +2013,7,9,2,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,6,0,1905,12,0,0 +2013,6,10,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,-2,0,1815,-4,0,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,-8,0,1125,-15,0,0 +2013,6,10,1,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-3,0,1040,-7,0,0 +2013,10,14,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1532,-5,0,1543,4,0,0 +2013,10,9,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1359,-5,0,1511,-13,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,829,-4,0,1705,10,0,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,42,1,1435,49,1,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,902,0,0,1048,-6,0,0 +2013,10,4,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,-5,0,1217,-12,0,0 +2013,7,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,605,-7,0,822,-25,0,0 +2013,6,29,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1400,7,0,1505,1,0,0 +2013,9,11,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1335,-7,0,1750,-35,0,0 +2013,10,4,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-8,0,1845,16,1,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,0,0,1850,-20,0,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-2,0,1632,-16,0,0 +2013,5,9,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2017,-7,0,2114,-18,0,0 +2013,5,10,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1825,30,1,2056,36,1,0 +2013,6,11,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1115,20,1,1231,16,1,0 +2013,7,13,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,-1,0,1540,-2,0,0 +2013,6,16,7,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1318,12,0,1642,5,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1910,89,1,5,91,1,0 +2013,4,30,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,57,-1,0,630,-17,0,0 +2013,6,12,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2100,-3,0,2207,9,0,0 +2013,5,15,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,955,-5,0,1618,-11,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,0,0,2055,-2,0,0 +2013,6,30,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1830,-2,0,2015,-3,0,0 +2013,10,14,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1415,-2,0,1556,-11,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1415,-5,0,1607,-20,0,0 +2013,4,29,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,735,-9,0,820,-6,0,0 +2013,8,4,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1455,-1,0,1545,-8,0,0 +2013,8,1,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1510,-6,0,1655,8,0,0 +2013,9,19,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-3,0,1019,6,0,0 +2013,7,28,7,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1547,58,1,1830,85,1,0 +2013,8,10,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,641,-3,0,755,-14,0,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,17,1,1525,-7,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1650,-6,0,2045,-11,0,0 +2013,8,30,5,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1106,-6,0,1331,-30,0,0 +2013,10,29,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,952,-2,0,1602,-22,0,0 +2013,5,21,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,4,0,1210,-11,0,0 +2013,7,22,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,38,1,1905,23,1,0 +2013,8,10,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1400,119,1,1550,116,1,0 +2013,6,29,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1844,14,0,0 +2013,8,5,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,13,0,1925,20,1,0 +2013,4,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1735,-4,0,1900,-11,0,0 +2013,9,17,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1115,13,0,1230,6,0,0 +2013,7,2,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,-9,0,2140,5,0,0 +2013,7,12,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1103,22,1,1415,22,1,0 +2013,10,4,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2009,-3,0,2319,-3,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,730,-21,0,0 +2013,5,21,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,700,-10,0,825,-7,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1220,-4,0,1946,-24,0,0 +2013,4,11,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,752,-1,0,1545,2,0,0 +2013,5,21,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1840,24,1,2050,22,1,0 +2013,8,11,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-2,0,1212,-21,0,0 +2013,9,8,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1150,-6,0,1228,-9,0,0 +2013,9,20,5,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-5,0,1028,-19,0,0 +2013,8,19,1,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,-6,0,1905,4,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1905,-2,0,2035,-4,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1959,2,0,2150,-9,0,0 +2013,9,20,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1134,20,1,1343,23,1,0 +2013,10,13,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1235,-12,0,2033,-20,0,0 +2013,9,15,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,-5,0,2328,-19,0,0 +2013,8,20,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2005,-11,0,2106,-10,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1340,20,1,1525,16,1,0 +2013,10,20,7,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,950,-1,0,1302,-29,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,74,1,2004,131,1,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2030,0,0,2215,-14,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,13,0,1215,-1,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1124,-5,0,1227,2,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,100,1,2242,99,1,0 +2013,7,24,3,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,-4,0,1525,-13,0,0 +2013,5,15,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,632,-8,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1340,18,1,1505,10,0,0 +2013,4,9,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-16,0,1555,-15,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,11,0,1945,-3,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1000,35,1,1231,14,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,950,-2,0,1715,-32,0,0 +2013,9,16,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1127,-4,0,1629,-1,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,11,0,1115,8,0,0 +2013,4,26,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-6,0,1112,-10,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,0,0,2319,-18,0,0 +2013,6,10,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2115,-3,0,2220,-14,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2125,14,0,2300,1,0,0 +2013,8,25,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1310,60,1,1440,61,1,0 +2013,9,26,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,645,-9,0,1012,-9,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,64,1,1115,84,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,-5,0,1411,-17,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,800,-2,0,1055,-12,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1655,-1,0,1821,-6,0,0 +2013,8,25,7,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2225,-4,0,700,-13,0,0 +2013,6,2,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-5,0,2154,-17,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1520,54,1,1800,39,1,0 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1150,-7,0,1505,-17,0,0 +2013,10,10,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,635,0,0,1330,-9,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2035,23,1,2330,26,1,0 +2013,10,28,1,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,1010,3,0,1250,13,0,0 +2013,5,26,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1825,-8,0,2134,-15,0,0 +2013,7,18,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,705,-5,0,944,1,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,932,-6,0,1312,-21,0,0 +2013,9,24,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1135,-5,0,1250,-12,0,0 +2013,5,30,4,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1315,50,1,1605,51,1,0 +2013,9,19,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1040,165,1,1415,163,1,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1925,3,0,2110,-3,0,0 +2013,8,11,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,-6,0,1815,24,1,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1459,-1,0,1654,3,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,855,-2,0,1605,20,1,0 +2013,8,2,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1240,-2,0,1517,5,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,4,0,1920,-4,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,121,1,1105,113,1,0 +2013,8,14,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1453,-10,0,1539,-6,0,0 +2013,6,24,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,24,1,1225,27,1,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,-2,0,1925,-15,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1210,-4,0,1400,-6,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,288,1,1845,283,1,0 +2013,4,11,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,-10,0,1904,32,1,0 +2013,8,15,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,3,0,1645,-11,0,0 +2013,6,24,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,111,1,1900,134,1,0 +2013,10,22,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,810,1,0,910,-3,0,0 +2013,7,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1545,36,1,1710,29,1,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,-5,0,903,-16,0,0 +2013,9,13,5,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,0,0,800,-11,0,0 +2013,10,19,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-7,0,746,-19,0,0 +2013,5,15,3,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,615,-3,0,750,-11,0,0 +2013,5,31,5,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1302,2,0,1359,3,0,0 +2013,4,13,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1805,68,1,2050,61,1,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1704,54,1,2056,27,1,0 +2013,4,17,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2110,16,1,2225,8,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2105,56,1,2255,46,1,0 +2013,8,30,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,9,0,1545,5,0,0 +2013,8,1,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,-3,0,1115,22,1,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-2,0,1451,24,1,0 +2013,8,12,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-5,0,1156,21,1,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1039,1,0,1919,36,1,0 +2013,9,26,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1920,-4,0,2045,-1,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,13,0,1740,-7,0,0 +2013,4,4,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1530,-4,0,1620,-16,0,0 +2013,9,20,5,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,2,0,1300,-16,0,0 +2013,5,14,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,720,-4,0,1037,-3,0,0 +2013,7,31,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-4,0,1035,-12,0,0 +2013,8,18,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1228,-7,0,0 +2013,6,20,4,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-9,0,935,-10,0,0 +2013,9,5,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2052,-11,0,2245,-19,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1950,-6,0,2150,-7,0,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,620,0,0,900,39,1,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1220,12,0,1440,27,1,0 +2013,5,28,2,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,-7,0,1315,-8,0,0 +2013,8,3,6,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,1,0,1612,1,0,0 +2013,9,9,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,826,1,0,0 +2013,8,5,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1015,-4,0,1140,1,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,755,-7,0,934,-14,0,0 +2013,7,2,2,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,-2,0,2044,-3,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,-6,0,1121,-11,0,0 +2013,5,14,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,-14,0,1600,-15,0,0 +2013,7,6,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1040,-2,0,1410,-19,0,0 +2013,10,10,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,17,1,1615,13,0,0 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1521,184,1,1610,175,1,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1053,-3,0,1205,9,0,0 +2013,4,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-2,0,1749,-18,0,0 +2013,6,8,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,-9,0,1804,-24,0,0 +2013,7,24,3,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,5,0,1425,4,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1420,-1,0,1608,-11,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,42,1,2055,36,1,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1535,11,0,1640,13,0,0 +2013,4,7,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1725,-5,0,1848,-9,0,0 +2013,4,24,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,20,1,2002,56,1,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,-6,0,2055,-24,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1356,-1,0,1549,8,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1800,14,0,2030,4,0,0 +2013,7,1,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2105,72,1,2230,49,1,0 +2013,8,11,7,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1535,7,0,1750,7,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,-3,0,1430,-12,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1020,21,1,1135,20,1,0 +2013,4,26,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1925,-4,0,2110,1,0,0 +2013,5,23,4,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,9,0,1655,-7,0,0 +2013,10,16,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-9,0,730,-16,0,0 +2013,10,29,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-5,0,2044,-10,0,0 +2013,8,9,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,820,0,0,1200,-8,0,0 +2013,7,30,2,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1859,-5,0,2147,-31,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1344,5,0,1458,-4,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1330,-4,0,1614,-20,0,0 +2013,5,5,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,610,-6,0,747,-19,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,0,0,1817,1,0,0 +2013,8,28,3,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,27,1,2145,46,1,0 +2013,6,22,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1854,4,0,2132,-22,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1900,8,0,1955,25,1,0 +2013,9,14,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,954,-14,0,1120,-19,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,830,-5,0,1230,-18,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,12,0,1200,8,0,0 +2013,8,9,5,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1650,-7,0,2055,1,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1900,-3,0,2255,-7,0,0 +2013,10,31,4,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,34,1,1550,17,1,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1401,2,0,2229,-21,0,0 +2013,8,9,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,-3,0,905,-10,0,0 +2013,7,10,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,79,1,2230,0,1,1 +2013,10,28,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,28,1,1242,40,1,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1535,4,0,1650,-13,0,0 +2013,5,24,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,22,1,2230,12,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,756,-2,0,935,9,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,725,5,0,855,-9,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2055,-5,0,2215,-8,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,3,0,2210,-2,0,0 +2013,10,15,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,835,-7,0,1659,-25,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1155,20,1,1300,21,1,0 +2013,6,13,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1919,132,1,2122,118,1,0 +2013,4,15,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-4,0,740,-24,0,0 +2013,9,4,3,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2030,-8,0,5,-20,0,0 +2013,7,31,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,555,-3,0,725,2,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1540,-2,0,1845,1,0,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,51,1,1315,33,1,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1815,8,0,2355,-11,0,0 +2013,8,26,1,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1745,-6,0,2026,-15,0,0 +2013,4,3,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1635,-3,0,1840,-9,0,0 +2013,4,29,1,9E,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-7,0,1316,-33,0,0 +2013,6,22,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1930,27,1,2144,30,1,0 +2013,7,6,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,2000,-5,0,2107,-12,0,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1740,19,1,1905,15,1,0 +2013,9,17,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2114,-8,0,542,-27,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1957,-3,0,2301,-26,0,0 +2013,10,21,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,900,-6,0,958,-18,0,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1032,-6,0,1551,-11,0,0 +2013,9,4,3,9E,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1100,-6,0,1245,-20,0,0 +2013,4,14,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,0,0,1550,1,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,-5,0,1152,-9,0,0 +2013,9,21,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1830,-6,0,2010,-38,0,0 +2013,8,8,4,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1505,-1,0,1840,-4,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-6,0,808,-10,0,0 +2013,7,25,4,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1738,-4,0,2100,-5,0,0 +2013,8,14,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,940,1,0,1257,6,0,0 +2013,8,4,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1355,-8,0,1411,17,1,0 +2013,7,3,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,720,0,0,1549,21,1,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1225,12,0,1415,9,0,0 +2013,10,24,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1742,-2,0,1850,-7,0,0 +2013,5,25,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-8,0,1744,-1,0,0 +2013,4,12,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,915,-2,0,1515,-18,0,0 +2013,10,21,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1402,-3,0,1605,-4,0,0 +2013,4,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-1,0,1633,-4,0,0 +2013,4,5,5,9E,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1657,-2,0,2101,-12,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,-2,0,2355,-6,0,0 +2013,4,29,1,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1155,57,1,1430,56,1,0 +2013,7,13,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-2,0,925,-7,0,0 +2013,5,15,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1529,2,0,1810,-6,0,0 +2013,10,11,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1420,-2,0,1535,-5,0,0 +2013,9,6,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-6,0,915,-35,0,0 +2013,10,26,6,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,855,2,0,1040,0,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,9,0,2123,-12,0,0 +2013,10,12,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,758,-5,0,1204,-18,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-5,0,1237,-7,0,0 +2013,9,4,3,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,759,21,1,1019,1,0,0 +2013,6,12,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1138,-1,0,1700,-5,0,0 +2013,4,24,3,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,809,-4,0,0 +2013,7,4,4,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1337,1,0,1520,-6,0,0 +2013,5,3,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,610,0,0,1433,-1,0,0 +2013,7,10,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,1,0,505,-8,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1729,129,1,2040,131,1,0 +2013,6,1,6,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1700,154,1,1751,156,1,0 +2013,5,18,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,941,0,0,1333,10,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2205,-3,0,2305,5,0,0 +2013,6,18,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1430,-2,0,1633,-26,0,0 +2013,10,5,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1524,1,0,0 +2013,4,1,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,13,0,1900,-6,0,0 +2013,7,13,6,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2150,20,1,2330,25,1,0 +2013,8,29,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,719,-5,0,955,-36,0,0 +2013,8,29,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2216,-13,0,548,13,0,0 +2013,5,6,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-7,0,1200,-15,0,0 +2013,9,7,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1515,-9,0,1641,2,0,0 +2013,7,28,7,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1710,312,1,2000,314,1,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,4,0,1137,-1,0,0 +2013,9,25,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1225,2,0,1325,-3,0,0 +2013,10,27,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1449,-4,0,1655,-2,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1205,-3,0,1345,9,0,0 +2013,6,28,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,2,0,1755,-12,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-4,0,1334,1,0,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,2,0,2205,-23,0,0 +2013,5,17,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-7,0,1750,-4,0,0 +2013,10,29,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1315,-4,0,1435,-10,0,0 +2013,6,10,1,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-1,0,1630,-6,0,0 +2013,7,24,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,408,1,1150,417,1,0 +2013,7,22,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1558,116,1,1717,105,1,0 +2013,10,28,1,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1756,-1,0,1956,-1,0,0 +2013,5,13,1,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,700,2,0,905,-13,0,0 +2013,7,28,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-3,0,1015,-5,0,0 +2013,9,3,2,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1946,64,1,2054,48,1,0 +2013,9,1,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1412,-4,0,1559,-28,0,0 +2013,7,10,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-6,0,720,-13,0,0 +2013,4,9,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-4,0,1015,-13,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1550,9,0,1810,-12,0,0 +2013,7,23,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1535,10,0,1700,-4,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1430,-6,0,1602,-24,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,930,-8,0,1221,-31,0,0 +2013,7,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,-8,0,2200,-18,0,0 +2013,4,14,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,-1,0,1849,29,1,0 +2013,4,7,7,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1241,-10,0,1534,-15,0,0 +2013,5,5,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1255,1,0,1405,6,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2150,-5,0,25,-15,0,0 +2013,4,28,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1255,-8,0,1416,0,0,0 +2013,5,8,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2125,5,0,2220,-14,0,0 +2013,5,24,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2055,131,1,2230,135,1,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,950,-18,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1015,49,1,1320,57,1,0 +2013,5,24,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1611,-2,0,1730,-12,0,0 +2013,8,8,4,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-16,0,1127,-16,0,0 +2013,7,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-3,0,1315,-5,0,0 +2013,5,27,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-11,0,1324,-16,0,0 +2013,8,22,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,0,,1250,0,1,1 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1555,41,1,1830,20,1,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-4,0,1830,-33,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,-6,0,2035,-9,0,0 +2013,10,10,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,856,-6,0,1041,-19,0,0 +2013,6,24,1,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1435,-1,0,2305,-11,0,0 +2013,7,13,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,-2,0,940,-9,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2159,-3,0,2301,-15,0,0 +2013,10,30,3,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,710,-3,0,1433,-31,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2107,-6,0,2314,-22,0,0 +2013,10,12,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-9,0,1235,-15,0,0 +2013,8,5,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,1411,14,0,1945,2,0,0 +2013,9,13,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1219,60,1,1459,42,1,0 +2013,4,23,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,7,0,2011,-6,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,953,12,0,1225,-1,0,0 +2013,10,26,6,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,915,-3,0,1150,-2,0,0 +2013,6,9,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,33,1,1655,43,1,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,900,-3,0,1010,-12,0,0 +2013,5,8,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-6,0,908,-12,0,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,600,1,0,804,-8,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2125,11,0,2220,4,0,0 +2013,8,22,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1638,118,1,1835,130,1,0 +2013,4,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-5,0,9,-8,0,0 +2013,7,29,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1503,20,1,0 +2013,9,26,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-9,0,552,-14,0,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1005,15,1,1130,6,0,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-7,0,2310,-4,0,0 +2013,5,21,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-8,0,1030,-20,0,0 +2013,5,3,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,812,0,0,1135,-33,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,847,-6,0,1109,-9,0,0 +2013,6,29,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,30,1,2101,19,1,0 +2013,4,14,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1215,0,0,1330,-4,0,0 +2013,6,19,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1251,3,0,1521,-11,0,0 +2013,7,1,1,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,2335,-3,0,640,11,0,0 +2013,10,1,2,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1945,2,0,2059,-28,0,0 +2013,8,26,1,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1415,57,1,2215,51,1,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2100,-4,0,2215,-6,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,0,0,1207,3,0,0 +2013,5,21,2,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,845,-5,0,1130,-15,0,0 +2013,5,9,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1540,-2,0,1625,-16,0,0 +2013,7,16,2,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1120,55,1,1502,55,1,0 +2013,5,15,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1440,-8,0,1615,-19,0,0 +2013,10,7,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-5,0,826,3,0,0 +2013,5,26,7,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,-12,0,2115,-10,0,0 +2013,8,23,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,537,-5,0,858,-14,0,0 +2013,5,11,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-9,0,1144,-9,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1335,15,1,1620,3,0,0 +2013,10,23,3,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1200,27,1,1434,16,1,0 +2013,6,3,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1930,59,1,2050,58,1,0 +2013,8,15,4,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,603,-9,0,950,-17,0,0 +2013,4,25,4,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-3,0,2013,-15,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,0,0,1029,4,0,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,0,0,2113,12,0,0 +2013,7,21,7,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-6,0,1535,-4,0,0 +2013,7,15,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1803,6,0,1915,21,1,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1715,1,0,1815,-1,0,0 +2013,8,10,6,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,16,1,1415,0,0,0 +2013,8,2,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1510,-9,0,2018,-19,0,0 +2013,8,25,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,745,-8,0,1020,-17,0,0 +2013,6,27,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,18,1,1334,6,0,0 +2013,6,11,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,82,1,1220,90,1,0 +2013,8,28,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1700,5,0,1750,1,0,0 +2013,6,20,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,830,-4,0,1000,-17,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1735,-5,0,1855,-19,0,0 +2013,10,12,6,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1840,-7,0,2020,-20,0,0 +2013,9,26,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,715,0,0,846,8,0,0 +2013,9,30,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,0,0,1135,-29,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1940,0,0,2019,-2,0,0 +2013,6,12,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,6,0,1155,-1,0,0 +2013,8,23,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1415,27,1,1534,25,1,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-4,0,1415,-9,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1958,-8,0,2107,-8,0,0 +2013,7,12,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1525,19,1,1550,25,1,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2210,33,1,2300,37,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,4,0,2055,-22,0,0 +2013,10,27,7,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1220,5,0,1415,-2,0,0 +2013,7,6,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1725,2,0,2045,-32,0,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1002,-1,0,1347,-2,0,0 +2013,4,5,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1721,25,1,2000,30,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,-2,0,2355,-27,0,0 +2013,6,2,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-3,0,2125,-8,0,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1430,5,0,1530,-3,0,0 +2013,5,31,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1950,-10,0,2209,-15,0,0 +2013,4,17,3,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1132,-6,0,1358,-6,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1516,-2,0,1817,-36,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,726,-1,0,857,-9,0,0 +2013,6,5,3,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-2,0,1147,-11,0,0 +2013,9,6,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1356,12,0,1757,6,0,0 +2013,7,8,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-1,0,1838,-12,0,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,818,7,0,1359,14,0,0 +2013,4,5,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1555,-1,0,1847,-8,0,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2335,-12,0,624,-10,0,0 +2013,4,8,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,808,4,0,1109,-1,0,0 +2013,7,23,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1319,-9,0,1405,-17,0,0 +2013,6,12,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,6,0,1210,7,0,0 +2013,5,3,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,-8,0,1132,-16,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-6,0,818,-1,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1614,0,0,1712,20,1,0 +2013,4,5,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1440,-10,0,1630,-4,0,0 +2013,7,12,5,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,602,-8,0,1330,-9,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1726,-2,0,1818,-19,0,0 +2013,5,10,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,852,110,1,1030,93,1,0 +2013,4,14,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2035,54,1,2300,76,1,0 +2013,6,19,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,-3,0,1315,-4,0,0 +2013,7,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-7,0,707,-2,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1203,-3,0,1808,-10,0,0 +2013,4,17,3,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-2,0,2102,-1,0,0 +2013,8,17,6,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,849,52,1,1658,27,1,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1200,-6,0,1438,-17,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,25,1,1530,23,1,0 +2013,10,29,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,22,1,1456,9,0,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-3,0,1030,13,0,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1645,-3,0,2000,-20,0,0 +2013,6,29,6,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1223,0,0,2045,4,0,0 +2013,7,13,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,845,-5,0,1044,2,0,0 +2013,9,19,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1210,19,1,1305,20,1,0 +2013,10,27,7,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2045,-6,0,438,21,1,0 +2013,9,6,5,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,510,-1,0,930,-2,0,0 +2013,4,1,1,FL,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,620,5,0,934,3,0,0 +2013,7,24,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-6,0,1159,-4,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,-2,0,1925,-14,0,0 +2013,10,12,6,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1510,-1,0,1735,9,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,729,6,0,941,-5,0,0 +2013,6,28,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1854,61,1,2015,47,1,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,6,0,2013,-2,0,0 +2013,10,9,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,-3,0,1707,-11,0,0 +2013,8,6,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,705,1,0,935,-14,0,0 +2013,8,30,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1610,-8,0,1625,2,0,0 +2013,8,14,3,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1905,-4,0,2056,-5,0,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,-9,0,842,-2,0,0 +2013,10,24,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-2,0,930,0,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,26,1,2105,6,0,0 +2013,7,7,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,-2,0,955,2,0,0 +2013,8,25,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,93,1,1922,82,1,0 +2013,7,2,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1159,-11,0,1344,-17,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,7,0,1355,-8,0,0 +2013,5,13,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1550,11,0,1650,23,1,0 +2013,8,30,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1440,-1,0,1805,17,1,0 +2013,6,9,7,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,-2,0,1750,7,0,0 +2013,4,13,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,645,5,0,925,17,1,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,620,-2,0,845,-2,0,0 +2013,9,8,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1635,30,1,1800,29,1,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,13,0,1325,-4,0,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,3,0,1415,14,0,0 +2013,7,25,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,610,0,0,715,-12,0,0 +2013,7,25,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-5,0,1525,-21,0,0 +2013,4,21,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,-7,0,1705,9,0,0 +2013,4,14,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1410,-4,0,1510,-12,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1309,-2,0,1456,-15,0,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1659,67,1,1959,68,1,0 +2013,6,29,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,26,1,1830,37,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1725,-4,0,1916,-23,0,0 +2013,4,26,5,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,914,-9,0,0 +2013,8,6,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,944,16,1,1449,11,0,0 +2013,6,14,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,600,14,0,1128,8,0,0 +2013,4,19,5,EV,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,801,46,1,903,41,1,0 +2013,5,27,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,-6,0,852,-16,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1839,6,0,2356,15,1,0 +2013,8,1,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-1,0,1140,7,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1315,-6,0,1518,-8,0,0 +2013,10,1,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1956,-5,0,2155,-2,0,0 +2013,4,28,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1925,-3,0,2226,-17,0,0 +2013,9,1,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1112,-5,0,1343,-27,0,0 +2013,5,12,7,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,-9,0,2010,13,0,0 +2013,6,19,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-4,0,1910,2,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,27,1,1735,32,1,0 +2013,5,16,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,805,1,0,905,6,0,0 +2013,10,23,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-10,0,2100,-14,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,950,-1,0,1115,-4,0,0 +2013,7,28,7,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1255,2,0,1405,3,0,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,750,-4,0,1040,-5,0,0 +2013,4,7,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,27,1,707,20,1,0 +2013,9,27,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-1,0,1055,3,0,0 +2013,10,13,7,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,0,0,2020,-20,0,0 +2013,4,5,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1200,-7,0,1420,-29,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-3,0,2347,-17,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1735,20,1,1905,10,0,0 +2013,6,21,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,1,0,1155,-8,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-8,0,2026,2,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1834,205,1,2031,247,1,0 +2013,5,22,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2056,14,0,2209,1,0,0 +2013,8,20,2,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,0,0,930,-8,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1246,5,0,1648,-7,0,0 +2013,9,6,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1840,-9,0,1900,-16,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,939,12,0,1132,20,1,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,0,0,1425,1,0,0 +2013,4,19,5,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,63,1,2105,145,1,0 +2013,7,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1320,21,1,1516,20,1,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1133,6,0,1729,-28,0,0 +2013,7,10,3,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1850,8,0,16,4,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,0,0,1120,-4,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2145,-1,0,2305,3,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1423,8,0,1713,1,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1915,-2,0,2050,-16,0,0 +2013,6,24,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,-3,0,1228,1,0,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1223,-9,0,1414,-16,0,0 +2013,7,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2055,105,1,2220,97,1,0 +2013,9,23,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1010,-2,0,1135,5,0,0 +2013,10,1,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1155,-4,0,1335,-12,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2000,-5,0,2250,-4,0,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1520,-1,0,1730,-6,0,0 +2013,5,19,7,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,813,-24,0,0 +2013,8,6,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,14100,Philadelphia International,Philadelphia,PA,1816,-4,0,1930,8,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,-5,0,1021,-19,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1830,51,1,2140,78,1,0 +2013,4,25,4,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1955,8,0,2130,-1,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,1,0,1500,6,0,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1105,3,0,1210,-1,0,0 +2013,7,21,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1945,-6,0,2225,-10,0,0 +2013,8,8,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,4,0,1639,-8,0,0 +2013,4,30,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,87,1,1717,69,1,0 +2013,10,22,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1035,-4,0,1050,-9,0,0 +2013,5,26,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,31,1,1800,25,1,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-5,0,921,7,0,0 +2013,7,12,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,2,0,1303,5,0,0 +2013,6,20,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,720,1,0,0 +2013,7,25,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1230,9,0,1351,23,1,0 +2013,4,24,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,16,1,1926,52,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1721,22,1,1923,15,1,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,720,0,0,830,-3,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1605,4,0,2125,7,0,0 +2013,4,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,837,-2,0,1019,-3,0,0 +2013,7,3,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-5,0,848,-12,0,0 +2013,5,19,7,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1845,35,1,2150,37,1,0 +2013,7,26,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,51,1,1903,27,1,0 +2013,9,20,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,900,-5,0,0 +2013,9,4,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,925,0,0,1025,-7,0,0 +2013,8,13,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,615,-1,0,728,-14,0,0 +2013,7,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1530,33,1,1630,25,1,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,-3,0,1804,-11,0,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,-3,0,1830,4,0,0 +2013,5,6,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,530,5,0,800,6,0,0 +2013,8,15,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13244,Memphis International,Memphis,TN,135,-5,0,737,-7,0,0 +2013,6,22,6,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1505,22,1,1705,20,1,0 +2013,5,19,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2055,-1,0,2308,-10,0,0 +2013,8,20,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,845,-6,0,950,-20,0,0 +2013,6,23,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1450,16,1,1634,-7,0,0 +2013,6,3,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1818,40,1,2000,26,1,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,956,82,1,1158,71,1,0 +2013,4,11,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,40,1,1059,32,1,0 +2013,4,20,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,238,1,720,227,1,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,-7,0,832,-16,0,0 +2013,9,19,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1225,-1,0,1429,-8,0,0 +2013,7,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1620,5,0,1910,60,1,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,10,0,1900,-8,0,0 +2013,5,12,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-2,0,2027,-26,0,0 +2013,4,18,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,730,0,,933,0,1,1 +2013,6,28,5,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1700,-4,0,2141,9,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1601,-1,0,1737,-14,0,0 +2013,4,18,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1910,93,1,2035,93,1,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1020,-4,0,1133,0,0,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-5,0,1417,-3,0,0 +2013,10,17,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,10,0,552,25,1,0 +2013,4,13,6,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,-3,0,1600,3,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,0,0,1153,-10,0,0 +2013,5,10,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2259,-6,0,609,-6,0,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,0,0,2356,20,1,0 +2013,5,14,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-2,0,1230,-7,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1916,21,1,2057,13,0,0 +2013,10,10,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,90,1,1401,94,1,0 +2013,8,12,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-5,0,1113,-17,0,0 +2013,9,30,1,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,0,0,501,5,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1250,2,0,1410,-5,0,0 +2013,7,4,4,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1905,-5,0,2222,-21,0,0 +2013,4,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1705,-5,0,1810,-11,0,0 +2013,6,23,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,35,1,1425,36,1,0 +2013,9,29,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1455,11,0,1630,4,0,0 +2013,9,10,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,-2,0,2015,-13,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1200,-2,0,1350,-1,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,-2,0,2254,-22,0,0 +2013,4,21,7,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1127,7,0,1420,-7,0,0 +2013,10,17,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2013,8,0,2121,5,0,0 +2013,10,20,7,UA,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,952,-3,0,1122,-16,0,0 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,0,0,1840,-8,0,0 +2013,6,4,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,842,-12,0,0 +2013,10,23,3,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,841,-2,0,1315,-29,0,0 +2013,4,26,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1925,35,1,2243,7,0,0 +2013,7,31,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1300,-9,0,1525,-1,0,0 +2013,5,10,5,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1845,-5,0,2155,-16,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,730,0,,1025,0,1,1 +2013,5,11,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,815,-2,0,925,-12,0,0 +2013,9,14,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,41,1,1043,25,1,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,805,34,1,1630,31,1,0 +2013,5,10,5,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,620,-3,0,755,-7,0,0 +2013,7,11,4,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2355,-11,0,636,-9,0,0 +2013,10,30,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1020,1,0,1605,-16,0,0 +2013,4,5,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,759,-4,0,1039,26,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,-4,0,1032,-25,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2115,-3,0,25,-17,0,0 +2013,6,4,2,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,29,1,1535,33,1,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1251,1,0,1406,-6,0,0 +2013,4,6,6,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,-1,0,1618,-20,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1004,-3,0,1200,-13,0,0 +2013,5,3,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,829,-9,0,1034,-16,0,0 +2013,4,11,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,118,1,2100,112,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1142,-6,0,1221,-16,0,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2140,-6,0,15,-13,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,920,0,0,1155,8,0,0 +2013,4,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,645,3,0,950,-2,0,0 +2013,10,9,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-6,0,1605,-19,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-7,0,1423,-24,0,0 +2013,10,24,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,720,-11,0,0 +2013,9,11,3,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1508,-3,0,2046,-14,0,0 +2013,5,31,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-4,0,1604,-3,0,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1705,181,1,1945,199,1,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1525,2,0,1655,3,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,0,0,1302,22,1,0 +2013,6,11,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,2005,29,1,2309,18,1,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,857,0,0,1734,13,0,0 +2013,8,20,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1720,11,0,1800,29,1,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,43,1,1810,53,1,0 +2013,8,8,4,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-5,0,810,1,0,0 +2013,7,29,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-6,0,2101,-9,0,0 +2013,6,15,6,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-5,0,2020,0,0,0 +2013,9,29,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-10,0,1349,-14,0,0 +2013,9,17,2,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-4,0,1435,-9,0,0 +2013,4,5,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1055,0,0,1300,-3,0,0 +2013,6,15,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-10,0,1810,-8,0,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,630,-4,0,735,0,0,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2135,-7,0,20,-10,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,745,6,0,1120,8,0,0 +2013,8,15,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1050,13,0,1145,11,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1335,11,0,1445,3,0,0 +2013,10,15,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1654,10,0,1934,32,1,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,830,18,1,1020,40,1,0 +2013,10,13,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-7,0,2155,-24,0,0 +2013,4,22,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1050,-1,0,1145,-2,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1725,8,0,1920,-5,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,710,12,0,831,5,0,0 +2013,5,14,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,0,0,1801,13,0,0 +2013,4,9,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,820,-8,0,939,-21,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,-5,0,2351,-16,0,0 +2013,5,4,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-1,0,1000,-10,0,0 +2013,5,18,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2255,7,0,709,26,1,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-3,0,2145,-7,0,0 +2013,4,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1502,-2,0,1605,8,0,0 +2013,4,26,5,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1140,3,0,2016,9,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1635,4,0,1825,6,0,0 +2013,10,7,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,-8,0,2130,-14,0,0 +2013,8,2,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,80,1,2000,66,1,0 +2013,9,17,2,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1525,-4,0,1820,-4,0,0 +2013,9,28,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1130,-5,0,1250,6,0,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,650,0,,1008,0,1,1 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2121,81,1,2359,128,1,0 +2013,7,20,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-6,0,1357,-2,0,0 +2013,9,12,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1110,8,0,1255,-2,0,0 +2013,10,29,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1220,-3,0,1359,23,1,0 +2013,10,16,3,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1800,32,1,2215,-9,0,0 +2013,10,23,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,636,-11,0,745,-24,0,0 +2013,10,6,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1150,-3,0,1425,-6,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,-1,0,1435,9,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,0,0,910,-3,0,0 +2013,10,16,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2055,-8,0,5,-27,0,0 +2013,5,5,7,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,625,-3,0,1450,14,0,0 +2013,5,4,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,920,2,0,1025,-8,0,0 +2013,9,29,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1349,-18,0,0 +2013,10,5,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-5,0,1950,-12,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1729,-3,0,1857,4,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1100,43,1,1236,30,1,0 +2013,4,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1520,14,0,1640,8,0,0 +2013,9,8,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1150,11,0,1220,4,0,0 +2013,8,21,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,900,-7,0,1120,20,1,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,121,1,1030,107,1,0 +2013,6,21,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,710,-7,0,835,-3,0,0 +2013,4,29,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1845,0,0,2029,-10,0,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1315,13,0,1530,5,0,0 +2013,4,30,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-9,0,1414,-26,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,820,-1,0,1148,-6,0,0 +2013,7,12,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,940,1,0,1050,-4,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,605,1,0,710,-9,0,0 +2013,5,10,5,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,615,21,1,749,25,1,0 +2013,9,29,7,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1346,-5,0,1658,-21,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,6,0,2055,-22,0,0 +2013,7,16,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1136,0,0,1307,-14,0,0 +2013,6,8,6,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1900,-4,0,2035,-31,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,815,-5,0,1110,-1,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,930,-1,0,1115,-5,0,0 +2013,6,30,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-6,0,643,-15,0,0 +2013,8,2,5,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1543,7,0,1835,6,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1619,2,0,1918,16,1,0 +2013,10,31,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1055,-3,0,1205,-6,0,0 +2013,5,31,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,855,-3,0,900,-7,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1108,56,1,1211,47,1,0 +2013,9,13,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1238,4,0,1334,9,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1625,-2,0,1730,-7,0,0 +2013,10,25,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-4,0,829,-4,0,0 +2013,5,9,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1122,-1,0,1407,6,0,0 +2013,9,29,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-9,0,1750,1,0,0 +2013,9,17,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1557,-5,0,1704,1,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,10,0,1145,30,1,0 +2013,8,2,5,DL,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-4,0,2047,4,0,0 +2013,10,8,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-4,0,1630,-23,0,0 +2013,7,2,2,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1845,22,1,2140,63,1,0 +2013,9,27,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1015,-6,0,1340,-7,0,0 +2013,6,18,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1645,82,1,1830,74,1,0 +2013,5,10,5,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,1,0,1655,7,0,0 +2013,9,3,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1658,-5,0,1805,-25,0,0 +2013,6,28,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,910,3,0,1032,-4,0,0 +2013,4,6,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1507,2,0,2010,-16,0,0 +2013,8,2,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,804,81,1,1103,71,1,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,-2,0,2307,12,0,0 +2013,10,9,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-1,0,1556,-9,0,0 +2013,8,23,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,-3,0,2025,15,1,0 +2013,10,25,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-2,0,805,-1,0,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,1,0,2322,6,0,0 +2013,8,21,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,5,0,1809,7,0,0 +2013,9,23,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2035,6,0,2135,-7,0,0 +2013,8,1,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1200,-3,0,1315,-7,0,0 +2013,6,5,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1331,30,1,1624,57,1,0 +2013,7,11,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,13,0,1113,21,1,0 +2013,6,11,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-2,0,1603,7,0,0 +2013,7,11,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,282,1,950,285,1,0 +2013,4,29,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1705,-7,0,1835,2,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1500,15,1,2040,7,0,0 +2013,9,22,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1354,7,0,1519,6,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,-3,0,1800,-7,0,0 +2013,7,4,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,-7,0,2025,-20,0,0 +2013,9,18,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1935,139,1,2045,142,1,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,0,,1423,0,1,1 +2013,4,24,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,618,24,1,650,38,1,0 +2013,9,30,1,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1715,34,1,1950,43,1,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2219,-6,0,2305,-23,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,-3,0,1542,-10,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1555,2,0,1832,11,0,0 +2013,7,13,6,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1810,-4,0,2058,-12,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1655,9,0,1902,2,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1931,83,1,2129,74,1,0 +2013,10,14,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,600,6,0,716,-3,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1310,9,0,1448,28,1,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1150,17,1,1635,25,1,0 +2013,9,3,2,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,5,0,1705,-10,0,0 +2013,7,1,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,104,1,1720,96,1,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,759,-3,0,1405,-1,0,0 +2013,9,16,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-5,0,1203,9,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2027,57,1,2223,30,1,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1054,41,1,1219,68,1,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1519,140,1,1800,130,1,0 +2013,7,1,1,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,4,0,1255,-9,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,-6,0,1351,-2,0,0 +2013,6,30,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,1,0,1815,11,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,7,0,1240,12,0,0 +2013,6,4,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,810,-10,0,1050,2,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,12,0,2348,5,0,0 +2013,6,16,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,0,0,1320,-10,0,0 +2013,8,17,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,1705,-2,0,1710,-10,0,0 +2013,4,7,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,940,-6,0,1000,-22,0,0 +2013,6,12,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,21,1,720,4,0,0 +2013,7,10,3,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,655,-5,0,915,8,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1530,114,1,1847,112,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1630,0,0,1745,7,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1125,1,0,1223,-15,0,0 +2013,6,20,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1250,1,0,1535,-11,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1000,-4,0,1123,-4,0,0 +2013,9,13,5,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1005,0,0,1305,-1,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1130,0,0,1315,-28,0,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1520,10,0,1630,4,0,0 +2013,6,12,3,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1215,-4,0,1409,-18,0,0 +2013,7,1,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,164,1,1532,159,1,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2145,21,1,15,19,1,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1145,-4,0,1425,-14,0,0 +2013,4,17,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1500,-4,0,1621,-7,0,0 +2013,9,21,6,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,8,0,905,11,0,0 +2013,7,14,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,946,3,0,1448,0,0,0 +2013,7,3,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1840,1,0,1936,-15,0,0 +2013,7,3,3,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1620,90,1,1923,74,1,0 +2013,7,8,1,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,444,1,2115,429,1,0 +2013,4,22,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,1145,-20,0,0 +2013,5,3,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,625,-4,0,918,-25,0,0 +2013,6,8,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,620,0,0,716,5,0,0 +2013,9,5,4,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1400,-5,0,1619,-2,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,15,1,1320,6,0,0 +2013,8,6,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,600,-1,0,725,-13,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-5,0,841,-17,0,0 +2013,6,29,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1235,4,0,0 +2013,9,18,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,750,2,0,915,-2,0,0 +2013,5,20,1,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,12,0,2305,6,0,0 +2013,9,19,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,127,1,1555,125,1,0 +2013,6,20,4,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1040,-7,0,1428,-16,0,0 +2013,4,14,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1106,9,0,1209,1,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,955,-4,0,1058,-15,0,0 +2013,7,3,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,70,1,2225,60,1,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,0,0,2155,-3,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2025,31,1,2130,31,1,0 +2013,8,5,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,-8,0,1723,-13,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1815,2,0,2030,-3,0,0 +2013,8,22,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1650,18,1,1925,-3,0,0 +2013,4,9,2,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,4,0,1124,-2,0,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,850,1,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1735,5,0,1935,-15,0,0 +2013,9,18,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,-4,0,1255,0,0,0 +2013,6,19,3,DL,13244,Memphis International,Memphis,TN,14747,Seattle/Tacoma International,Seattle,WA,1940,-2,0,2212,-17,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,739,-1,0,913,-4,0,0 +2013,8,18,7,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1849,-10,0,2015,-22,0,0 +2013,9,22,7,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,845,0,0,1010,-1,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,800,0,0,925,20,1,0 +2013,8,13,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1130,56,1,1304,48,1,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-2,0,1620,-5,0,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,845,-1,0,1037,-5,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1755,2,0,2030,2,0,0 +2013,4,3,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1650,5,0,1831,-9,0,0 +2013,10,3,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,34,1,1945,22,1,0 +2013,7,28,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1834,-5,0,1948,31,1,0 +2013,5,20,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1715,-5,0,1832,-9,0,0 +2013,4,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,9,0,1135,24,1,0 +2013,7,30,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1545,4,0,1640,1,0,0 +2013,7,15,1,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2014,-4,0,2259,-9,0,0 +2013,6,20,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-9,0,1255,-11,0,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,-3,0,1050,-19,0,0 +2013,8,12,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-5,0,903,-18,0,0 +2013,4,11,4,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1247,-3,0,1733,-14,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,700,0,0,930,-24,0,0 +2013,6,1,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,0,0,1830,28,1,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1236,5,0,2001,5,0,0 +2013,6,12,3,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-4,0,2150,-2,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,5,0,1500,-7,0,0 +2013,8,25,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2237,-5,0,427,-16,0,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1524,40,1,1805,36,1,0 +2013,5,1,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1005,-3,0,1125,-8,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,735,2,0,1050,-9,0,0 +2013,5,13,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,-3,0,1850,-7,0,0 +2013,5,24,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,925,-7,0,0 +2013,8,15,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,15,1,749,13,0,0 +2013,10,13,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1228,61,1,1303,64,1,0 +2013,6,28,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1310,41,1,1656,62,1,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,1,0,1623,10,0,0 +2013,6,16,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1622,57,1,1920,86,1,0 +2013,7,13,6,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1110,-2,0,1245,-14,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-10,0,1122,-24,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,722,74,1,1559,37,1,0 +2013,4,11,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1450,6,0,1610,7,0,0 +2013,7,3,3,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1055,-3,0,1918,2,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1640,-1,0,1934,-2,0,0 +2013,7,16,2,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-4,0,856,-19,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1900,43,1,2049,31,1,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1200,142,1,1443,139,1,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2050,68,1,2145,65,1,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-6,0,1643,-10,0,0 +2013,9,7,6,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1535,-3,0,1655,-15,0,0 +2013,5,12,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,8,0,1910,19,1,0 +2013,8,4,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1340,6,0,1510,-14,0,0 +2013,10,25,5,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1433,-1,0,1540,-7,0,0 +2013,10,5,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1020,-3,0,1203,-14,0,0 +2013,8,27,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1955,13,0,2020,0,0,0 +2013,9,23,1,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1905,22,1,2025,10,0,0 +2013,9,28,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1510,-2,0,1800,-34,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1505,18,1,1629,14,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,3,0,1030,-10,0,0 +2013,10,6,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,755,-5,0,1035,-14,0,0 +2013,6,10,1,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,1,0,935,-7,0,0 +2013,9,26,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-5,0,1309,-15,0,0 +2013,7,22,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,18,1,1810,22,1,0 +2013,4,10,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1704,0,,1723,0,1,1 +2013,9,3,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,51,1,1734,65,1,0 +2013,6,13,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,-6,0,1816,11,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,22,1,1840,40,1,0 +2013,9,23,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1432,47,1,1523,53,1,0 +2013,9,9,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1306,-4,0,1345,-1,0,0 +2013,5,18,6,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1500,13,0,1550,4,0,0 +2013,8,26,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,-1,0,1855,6,0,0 +2013,8,12,1,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,77,1,1914,62,1,0 +2013,8,12,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,-5,0,1820,-18,0,0 +2013,8,23,5,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1515,-2,0,1700,-18,0,0 +2013,6,14,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,363,1,937,353,1,0 +2013,5,25,6,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-5,0,908,-10,0,0 +2013,9,17,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,800,-4,0,905,-5,0,0 +2013,4,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1055,-5,0,1410,-21,0,0 +2013,8,27,2,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1845,12,0,2030,-7,0,0 +2013,4,15,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1825,84,1,1927,127,1,0 +2013,7,3,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,7,0,1902,-5,0,0 +2013,5,18,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,920,-6,0,1227,-24,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,845,-2,0,1035,-4,0,0 +2013,5,23,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1217,6,0,1317,19,1,0 +2013,8,26,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-1,0,1605,-9,0,0 +2013,8,19,1,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-3,0,1315,-8,0,0 +2013,7,15,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,68,1,800,48,1,0 +2013,10,24,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,1,0,1905,19,1,0 +2013,4,21,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,53,1,2025,63,1,0 +2013,10,8,2,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1816,-9,0,1925,-23,0,0 +2013,8,6,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,34,1,1645,8,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,900,5,0,1145,-13,0,0 +2013,8,10,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,54,1,1729,41,1,0 +2013,8,30,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-6,0,1023,-8,0,0 +2013,5,9,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1329,49,1,1526,49,1,0 +2013,8,7,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,630,10,0,1225,0,0,0 +2013,10,6,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1610,7,0,1725,-1,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1333,7,0,1644,10,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2130,1,0,2250,-11,0,0 +2013,7,24,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,650,0,0,820,1,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1920,30,1,55,35,1,0 +2013,5,30,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,837,-2,0,0 +2013,10,27,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1414,-8,0,1639,-8,0,0 +2013,6,2,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-1,0,2050,10,0,0 +2013,6,11,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,738,-3,0,1021,-18,0,0 +2013,4,26,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,600,-1,0,1430,14,0,0 +2013,6,28,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,905,10,0,1015,11,0,0 +2013,8,14,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,7,0,1940,2,0,0 +2013,8,30,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-2,0,1220,-8,0,0 +2013,7,6,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-1,0,1330,-19,0,0 +2013,4,28,7,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2110,-6,0,2355,-22,0,0 +2013,9,18,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-13,0,1059,-16,0,0 +2013,6,14,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,-2,0,1816,8,0,0 +2013,6,30,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1110,-5,0,1238,2,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-5,0,828,-11,0,0 +2013,7,9,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1420,4,0,1530,1,0,0 +2013,7,9,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-5,0,1254,-13,0,0 +2013,8,7,3,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1115,-4,0,1330,3,0,0 +2013,6,23,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1720,1,0,1945,-6,0,0 +2013,5,3,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,923,12,0,1041,10,0,0 +2013,5,14,2,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1910,-4,0,2155,-4,0,0 +2013,6,2,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1500,8,0,2040,0,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-1,0,1126,-14,0,0 +2013,9,24,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,730,-6,0,0 +2013,4,16,2,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1438,-10,0,1610,-16,0,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1035,0,0,1620,-17,0,0 +2013,4,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1331,-7,0,1651,-19,0,0 +2013,8,3,6,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-3,0,1557,-14,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,-8,0,1225,-12,0,0 +2013,5,31,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1435,-4,0,1635,-22,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-7,0,1631,-20,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1458,0,0,1959,2,0,0 +2013,8,22,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,29,1,1619,23,1,0 +2013,7,20,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,959,3,0,1237,13,0,0 +2013,10,20,7,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1642,-6,0,1837,-10,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1815,20,1,2135,6,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1850,10,0,2110,10,0,0 +2013,10,6,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,850,0,0,945,-7,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,7,0,1823,4,0,0 +2013,5,16,4,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,944,155,1,1058,150,1,0 +2013,5,4,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-5,0,1944,-7,0,0 +2013,9,29,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1010,9,0,1440,2,0,0 +2013,6,18,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,58,95,1,550,92,1,0 +2013,7,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2018,14,0,2241,-31,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1455,-8,0,1651,-15,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1047,-3,0,1214,-20,0,0 +2013,6,3,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,1,0,1430,-10,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2235,-2,0,2325,0,0,0 +2013,6,16,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,935,21,1,1150,8,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,940,0,0,1435,1,0,0 +2013,4,8,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1359,4,0,1620,29,1,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,805,0,0,905,0,0,0 +2013,9,7,6,FL,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1355,5,0,1750,-9,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,184,1,1852,155,1,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1246,26,1,1400,11,0,0 +2013,5,8,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1009,5,0,1308,-16,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-2,0,1642,-16,0,0 +2013,6,2,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,8,0,2210,3,0,0 +2013,6,7,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,700,-2,0,820,-8,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1539,178,1,1727,166,1,0 +2013,8,23,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2126,23,1,2243,10,0,0 +2013,8,4,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1401,22,1,2008,6,0,0 +2013,6,1,6,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1925,97,1,2136,87,1,0 +2013,6,19,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,627,-4,0,745,-10,0,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,805,0,0,1050,27,1,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1300,-10,0,1622,-27,0,0 +2013,6,18,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1346,56,1,1540,68,1,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1550,-4,0,1715,-7,0,0 +2013,8,23,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,7,0,1856,-2,0,0 +2013,6,22,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1235,-6,0,1540,-16,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2015,106,1,2202,102,1,0 +2013,4,9,2,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1215,109,1,1459,106,1,0 +2013,6,17,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-5,0,1006,-15,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,30,1,1150,29,1,0 +2013,10,31,4,OO,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1604,1,0,1714,19,1,0 +2013,5,12,7,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,84,1,1425,75,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,720,7,0,855,-3,0,0 +2013,8,2,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1240,21,1,1355,18,1,0 +2013,6,14,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,36,1,904,29,1,0 +2013,6,25,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1040,-11,0,0 +2013,4,17,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1824,81,1,2115,71,1,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2045,92,1,2335,86,1,0 +2013,9,8,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1256,0,,1353,0,1,1 +2013,5,24,5,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,628,-15,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1730,-3,0,1950,-25,0,0 +2013,9,12,4,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1210,-2,0,1401,-5,0,0 +2013,8,3,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,856,14,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,2130,14,0,2344,6,0,0 +2013,8,23,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1022,-4,0,1210,-10,0,0 +2013,10,30,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1040,-5,0,1159,-9,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2016,7,0,2227,5,0,0 +2013,7,14,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,920,1,0,1120,-5,0,0 +2013,4,30,2,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,815,-1,0,1022,-7,0,0 +2013,10,4,5,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1010,13,0,1542,14,0,0 +2013,5,17,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,-5,0,1035,-29,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,810,-4,0,1110,-12,0,0 +2013,8,13,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1317,0,0,1453,-5,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-3,0,2255,-20,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1556,-1,0,1735,-9,0,0 +2013,4,26,5,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,708,-5,0,1031,-2,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1431,58,1,1529,63,1,0 +2013,6,24,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,655,86,1,820,88,1,0 +2013,10,14,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1844,-4,0,2033,-17,0,0 +2013,8,1,4,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,824,335,1,946,364,1,0 +2013,6,15,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,34,1,1800,11,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1310,-1,0,1415,-16,0,0 +2013,5,28,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1700,13,0,1753,7,0,0 +2013,10,5,6,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,810,-5,0,1050,-20,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,0,0,1840,-13,0,0 +2013,5,30,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1844,0,,2025,0,1,1 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,959,8,0,1659,2,0,0 +2013,6,21,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-4,0,903,-11,0,0 +2013,6,16,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,8,0,1250,5,0,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1325,-5,0,1650,-3,0,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1450,13,0,2029,15,1,0 +2013,6,29,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,725,0,,1100,0,1,1 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,-3,0,1320,-10,0,0 +2013,10,24,4,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,840,0,0,955,-3,0,0 +2013,8,19,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1450,6,0,1555,-5,0,0 +2013,8,8,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,2,0,1325,-3,0,0 +2013,8,22,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2020,-5,0,459,-12,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1651,55,1,2006,43,1,0 +2013,6,9,7,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1725,6,0,2020,13,0,0 +2013,9,3,2,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1100,3,0,1220,-5,0,0 +2013,7,19,5,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,730,-1,0,920,-1,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,6,0,1705,6,0,0 +2013,5,20,1,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1947,7,0,2054,0,0,0 +2013,4,29,1,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-2,0,2037,6,0,0 +2013,7,9,2,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,-5,0,1550,8,0,0 +2013,4,8,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-5,0,655,-8,0,0 +2013,8,4,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,2000,0,0,2127,13,0,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,2,0,1050,10,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1920,-1,0,2104,-10,0,0 +2013,5,8,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,622,-6,0,755,-14,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1124,-4,0,1246,-6,0,0 +2013,5,2,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1016,-2,0,1149,-10,0,0 +2013,8,9,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-7,0,1330,-12,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,950,-1,0,1745,2,0,0 +2013,4,18,4,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,855,4,0,1100,15,1,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1210,234,1,1435,261,1,0 +2013,5,8,3,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,6,0,1505,13,0,0 +2013,10,9,3,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1535,2,0,1725,-15,0,0 +2013,8,19,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1831,2,0,2205,-8,0,0 +2013,8,27,2,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,0,0,1935,-29,0,0 +2013,9,29,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1825,-4,0,1952,-5,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1630,11,0,2355,-8,0,0 +2013,9,22,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-3,0,1407,-14,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,953,-2,0,1044,-2,0,0 +2013,6,19,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-6,0,1456,9,0,0 +2013,7,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1600,34,1,1750,13,0,0 +2013,6,5,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2130,6,0,2250,6,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1017,4,0,1141,28,1,0 +2013,7,13,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1133,9,0,1729,15,1,0 +2013,10,11,5,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1459,-8,0,1644,-3,0,0 +2013,9,13,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,3,0,1542,7,0,0 +2013,8,24,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,949,-1,0,1103,-8,0,0 +2013,4,7,7,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1358,-10,0,1533,-23,0,0 +2013,9,15,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-3,0,2134,-6,0,0 +2013,9,5,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,1,0,1325,-5,0,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1200,4,0,1256,4,0,0 +2013,9,17,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1306,-7,0,1345,-4,0,0 +2013,5,24,5,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2230,19,1,608,38,1,0 +2013,10,22,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1159,-8,0,1309,-9,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,846,16,1,1638,13,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1919,106,1,2122,96,1,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2055,30,1,2320,39,1,0 +2013,4,29,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-4,0,925,-31,0,0 +2013,4,23,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1059,-7,0,1117,-20,0,0 +2013,9,10,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2025,3,0,2125,-4,0,0 +2013,6,1,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1745,-2,0,2117,5,0,0 +2013,8,6,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-2,0,1633,7,0,0 +2013,4,1,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,-3,0,2035,-3,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,24,1,1459,25,1,0 +2013,6,22,6,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,840,4,0,1120,0,0,0 +2013,8,1,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,139,1,1720,153,1,0 +2013,7,28,7,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,-5,0,1223,0,0,0 +2013,5,8,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,810,-9,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,600,-4,0,740,-18,0,0 +2013,8,9,5,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2012,18,1,2140,-5,0,0 +2013,6,26,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-4,0,2040,4,0,0 +2013,5,3,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,749,-1,0,905,-12,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1645,1,0,2200,1,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-2,0,1049,8,0,0 +2013,6,9,7,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1050,0,0,0 +2013,5,15,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,807,17,1,1100,-3,0,0 +2013,4,17,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,0,0,1512,8,0,0 +2013,8,23,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,2100,-5,0,0 +2013,7,7,7,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1835,11,0,2048,69,1,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1437,-2,0,1603,-13,0,0 +2013,6,21,5,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,910,0,0,1048,10,0,0 +2013,8,1,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,2,0,1524,19,1,0 +2013,7,14,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,0,0,1550,4,0,0 +2013,5,4,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1015,-2,0,1130,3,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1740,0,0,1955,-5,0,0 +2013,9,11,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,648,-6,0,841,-18,0,0 +2013,4,3,3,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1054,4,0,1259,-15,0,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,-2,0,1025,-9,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,745,1,0,1140,-14,0,0 +2013,9,23,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,805,5,0,919,1,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-7,0,1036,12,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,-5,0,1455,-7,0,0 +2013,4,5,5,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-7,0,1014,-33,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,755,13,0,1040,15,1,0 +2013,7,21,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,13,0,1630,-7,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1909,0,0,2037,4,0,0 +2013,6,11,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,715,-10,0,0 +2013,4,8,1,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,20,1,2300,26,1,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,14,0,1026,6,0,0 +2013,10,1,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,59,-2,0,557,1,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,0,,1810,0,1,1 +2013,6,19,3,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,-1,0,1820,27,1,0 +2013,7,7,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1825,215,1,2005,189,1,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2100,34,1,2253,21,1,0 +2013,8,5,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,955,27,1,1115,35,1,0 +2013,5,22,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1800,0,,2026,0,1,1 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2205,3,0,2355,-9,0,0 +2013,5,27,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1632,-7,0,1917,-3,0,0 +2013,10,24,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,705,-9,0,905,7,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,-5,0,2335,-27,0,0 +2013,7,25,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,44,1,1640,24,1,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1120,7,0,1306,21,1,0 +2013,4,17,3,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,-3,0,2036,-4,0,0 +2013,10,24,4,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,935,1,0,1420,0,0,0 +2013,8,6,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-10,0,1015,-13,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1115,-3,0,1311,-2,0,0 +2013,7,12,5,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,835,3,0,1144,10,0,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,846,0,0,953,-13,0,0 +2013,7,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-2,0,1310,8,0,0 +2013,9,3,2,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1257,-5,0,2029,-16,0,0 +2013,9,19,4,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1415,1,0,1635,-16,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,29,1,2220,8,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,605,-2,0,1025,-11,0,0 +2013,9,30,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1455,18,1,1610,15,1,0 +2013,10,25,5,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1115,141,1,1320,138,1,0 +2013,4,17,3,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1815,-2,0,2107,-6,0,0 +2013,4,17,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,700,-5,0,924,-10,0,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2005,-7,0,2206,-8,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1200,1,0,1310,2,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1155,5,0,1815,9,0,0 +2013,4,11,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,600,0,,735,0,1,1 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,-6,0,1526,-2,0,0 +2013,6,15,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,131,1,2019,118,1,0 +2013,8,20,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1638,104,1,1835,95,1,0 +2013,5,23,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1910,15,1,2020,12,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,90,1,1110,93,1,0 +2013,6,3,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,730,-2,0,845,1,0,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1859,-1,0,2228,-18,0,0 +2013,9,8,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,-6,0,2025,10,0,0 +2013,7,29,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-1,0,1114,-9,0,0 +2013,9,20,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,550,-4,0,720,-10,0,0 +2013,9,10,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1135,65,1,1710,62,1,0 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-3,0,1055,-11,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1645,4,0,1745,2,0,0 +2013,10,28,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,3,0,1355,-1,0,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,726,-3,0,1025,-9,0,0 +2013,8,9,5,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1951,78,1,2142,63,1,0 +2013,9,26,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,745,2,0,1055,4,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,-4,0,1750,-8,0,0 +2013,10,10,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,915,-8,0,1035,-10,0,0 +2013,6,22,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,-3,0,130,-14,0,0 +2013,10,9,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,10,0,1930,-13,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1315,17,1,1420,11,0,0 +2013,4,2,2,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,2005,7,0,2100,3,0,0 +2013,4,19,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1540,32,1,1855,55,1,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1855,13,0,1950,5,0,0 +2013,8,1,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,14,0,2106,18,1,0 +2013,8,6,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,640,6,0,735,12,0,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1145,-3,0,1245,-13,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1025,16,1,1135,37,1,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,10,0,2300,1,0,0 +2013,10,18,5,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-7,0,1051,-11,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2130,6,0,2250,12,0,0 +2013,6,14,5,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,745,-2,0,1050,-14,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,0,0,1120,-6,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,-2,0,1346,-11,0,0 +2013,5,29,3,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-4,0,1006,0,0,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2201,-2,0,2301,-13,0,0 +2013,4,30,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,818,-2,0,1305,4,0,0 +2013,4,20,6,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1200,-1,0,1750,-13,0,0 +2013,8,15,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1410,-3,0,1544,-7,0,0 +2013,8,16,5,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1055,1,0,1335,-8,0,0 +2013,6,25,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-3,0,1358,-3,0,0 +2013,5,26,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2056,-4,0,2209,-29,0,0 +2013,6,13,4,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,24,1,555,17,1,0 +2013,10,30,3,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2320,6,0,730,1,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-1,0,1229,-14,0,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1900,18,1,2245,-4,0,0 +2013,4,8,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1750,-5,0,1920,-22,0,0 +2013,5,20,1,9E,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,54,1,1616,41,1,0 +2013,4,11,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1020,99,1,1105,86,1,0 +2013,8,1,4,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-7,0,1132,-15,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,60,1,2032,66,1,0 +2013,5,13,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,846,-2,0,0 +2013,9,5,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1231,18,1,1410,8,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,5,0,1905,-15,0,0 +2013,7,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1346,-1,0,1705,1,0,0 +2013,9,8,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1905,6,0,2015,30,1,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,8,0,1809,7,0,0 +2013,9,3,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,4,0,850,-2,0,0 +2013,7,17,3,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,545,-2,0,650,5,0,0 +2013,7,20,6,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1157,-1,0,2023,-14,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,5,0,2310,60,1,0 +2013,9,25,3,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,530,1,0,853,-25,0,0 +2013,6,25,2,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,805,-11,0,0 +2013,8,15,4,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,608,-5,0,736,-14,0,0 +2013,8,9,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1255,16,1,1600,14,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1535,22,1,1650,2,0,0 +2013,7,1,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,75,1,2118,87,1,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,0,0,2155,-2,0,0 +2013,5,12,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1054,-9,0,1245,-20,0,0 +2013,10,2,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1035,1,0,1131,-9,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1840,17,1,2055,16,1,0 +2013,5,3,5,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1420,-4,0,1920,-20,0,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,630,-1,0,810,-12,0,0 +2013,4,17,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,14,0,1950,37,1,0 +2013,10,21,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-9,0,1550,-6,0,0 +2013,4,25,4,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1408,11,0,1554,23,1,0 +2013,9,28,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,905,-1,0,1045,-12,0,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,2,0,1525,14,0,0 +2013,7,29,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,-4,0,1254,-18,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1550,0,0,1729,-6,0,0 +2013,9,2,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,-1,0,1830,-5,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1320,-1,0,1440,-4,0,0 +2013,9,12,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-2,0,815,2,0,0 +2013,4,11,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,46,1,1719,30,1,0 +2013,7,26,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,4,0,2100,-13,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,2,0,905,-1,0,0 +2013,8,25,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1506,-16,0,2314,-3,0,0 +2013,8,4,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,2010,-5,0,2020,24,1,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,17,1,1420,11,0,0 +2013,6,22,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1505,-1,0,1731,-4,0,0 +2013,4,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1942,29,1,2159,38,1,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1536,14,0,1620,9,0,0 +2013,10,22,2,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-13,0,2050,-16,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1005,-4,0,1241,-8,0,0 +2013,9,24,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-9,0,1623,-15,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1226,-5,0,1359,-27,0,0 +2013,6,20,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,3,0,1255,0,0,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,10,0,1453,5,0,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,142,1,2131,80,1,0 +2013,8,9,5,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-4,0,1035,0,0,0 +2013,9,1,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,-4,0,2055,-17,0,0 +2013,10,13,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,920,-3,0,1255,-6,0,0 +2013,9,24,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-2,0,1220,-11,0,0 +2013,8,19,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,635,4,0,745,-7,0,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,1002,-9,0,0 +2013,8,1,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-7,0,1302,-14,0,0 +2013,8,23,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-6,0,832,-12,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1455,45,1,1555,47,1,0 +2013,4,23,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-1,0,1720,-8,0,0 +2013,4,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1519,-1,0,1731,-8,0,0 +2013,5,4,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1110,36,1,1425,7,0,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1227,-4,0,1416,-14,0,0 +2013,10,15,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1917,-3,0,2048,3,0,0 +2013,9,14,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2022,-4,0,2155,-11,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1110,-19,0,0 +2013,7,20,6,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1822,75,1,2025,59,1,0 +2013,5,8,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1329,-21,0,0 +2013,5,14,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1605,0,0,0 +2013,9,25,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1725,-2,0,1855,-5,0,0 +2013,10,30,3,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,-4,0,2110,-42,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1345,-1,0,1706,12,0,0 +2013,8,8,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1935,147,1,2135,157,1,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1603,47,1,1716,42,1,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1031,-5,0,1315,-1,0,0 +2013,10,5,6,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1618,-9,0,1755,-27,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1715,-1,0,2330,-7,0,0 +2013,5,20,1,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,805,0,0,1000,-16,0,0 +2013,7,18,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-6,0,1120,-19,0,0 +2013,5,16,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,5,0,1127,5,0,0 +2013,10,12,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,640,-9,0,935,2,0,0 +2013,8,25,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-1,0,1052,-4,0,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,905,-1,0,1140,6,0,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1605,-3,0,1655,-3,0,0 +2013,4,26,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,715,-2,0,850,-5,0,0 +2013,5,29,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1021,8,0,1135,12,0,0 +2013,9,25,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1150,-1,0,1500,15,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,-2,0,1115,-5,0,0 +2013,4,18,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1341,43,1,1820,31,1,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1729,179,1,1947,175,1,0 +2013,5,23,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1326,44,1,1647,37,1,0 +2013,5,29,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1205,2,0,1500,2,0,0 +2013,4,11,4,EV,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,1125,-3,0,1312,3,0,0 +2013,4,7,7,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,-8,0,1630,-19,0,0 +2013,5,23,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1145,-8,0,1425,-5,0,0 +2013,10,10,4,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1915,-2,0,2020,-10,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,0,0,1635,-1,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,905,1,0,1025,11,0,0 +2013,5,22,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2105,9,0,2204,2,0,0 +2013,6,12,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1030,0,0,1340,8,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1315,-3,0,1518,-13,0,0 +2013,4,26,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2025,2,0,2130,0,0,0 +2013,10,21,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-7,0,1438,-7,0,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2115,71,1,2245,78,1,0 +2013,10,15,2,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1620,-3,0,1935,-28,0,0 +2013,10,9,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-10,0,1030,-3,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,3,0,2014,6,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1644,-4,0,1817,-16,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,-2,0,1030,-1,0,0 +2013,8,17,6,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1950,17,1,2149,5,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1121,-1,0,1241,-9,0,0 +2013,9,18,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,-12,0,720,2,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,740,16,1,1045,15,1,0 +2013,7,9,2,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,955,0,0,1140,5,0,0 +2013,8,26,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-7,0,725,-1,0,0 +2013,9,5,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1155,-2,0,1805,10,0,0 +2013,10,27,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1359,0,0,1503,-11,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1520,-3,0,1815,12,0,0 +2013,6,14,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,955,35,1,1115,39,1,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1520,-5,0,1720,-12,0,0 +2013,5,14,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-5,0,1025,-20,0,0 +2013,8,4,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-11,0,852,-10,0,0 +2013,10,14,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1117,144,1,1631,135,1,0 +2013,9,3,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,900,-6,0,1217,-29,0,0 +2013,5,24,5,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,615,10,0,835,-1,0,0 +2013,8,19,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,739,-9,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,0,0,1529,-12,0,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1655,-2,0,1940,-9,0,0 +2013,8,12,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1237,42,1,1359,54,1,0 +2013,6,30,7,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,0,,2250,0,1,1 +2013,4,25,4,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-1,0,1405,10,0,0 +2013,8,19,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,-6,0,1712,6,0,0 +2013,4,13,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,94,1,2050,90,1,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1130,-2,0,1425,0,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1921,-4,0,2104,-3,0,0 +2013,10,25,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-8,0,541,-3,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1745,-5,0,1800,-1,0,0 +2013,7,15,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1205,-1,0,1320,-15,0,0 +2013,4,5,5,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1534,-3,0,1802,-6,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,-2,0,1135,-5,0,0 +2013,7,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,6,0,1015,1,0,0 +2013,8,28,3,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1700,70,1,2130,83,1,0 +2013,9,28,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,0,0,1230,-5,0,0 +2013,5,26,7,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1335,25,1,1725,11,0,0 +2013,8,12,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-5,0,921,-1,0,0 +2013,7,29,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1025,4,0,1245,-7,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,920,2,0,940,6,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,-5,0,1617,-10,0,0 +2013,8,31,6,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,655,2,0,920,-4,0,0 +2013,7,30,2,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-4,0,900,1,0,0 +2013,4,30,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-11,0,856,-27,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1615,39,1,1624,29,1,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1150,3,0,1337,0,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1440,0,0,1755,-9,0,0 +2013,5,2,4,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2022,23,1,2302,33,1,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-7,0,907,-5,0,0 +2013,5,21,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,700,10,0,909,11,0,0 +2013,4,22,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,710,-7,0,945,-15,0,0 +2013,6,27,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,515,13,0,1040,8,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1129,-7,0,1400,-20,0,0 +2013,5,15,3,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1204,-9,0,1345,8,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,811,207,1,1008,177,1,0 +2013,4,24,3,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,700,-9,0,930,28,1,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-1,0,1742,1,0,0 +2013,10,22,2,EV,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1333,68,1,1739,41,1,0 +2013,6,26,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,17,1,2100,6,0,0 +2013,9,4,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2250,-14,0,7,-18,0,0 +2013,8,20,2,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,808,-3,0,1110,-13,0,0 +2013,8,3,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,0,,1445,0,1,1 +2013,6,5,3,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,730,-5,0,950,-14,0,0 +2013,7,26,5,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1410,29,1,1610,23,1,0 +2013,4,30,2,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,623,-8,0,810,-30,0,0 +2013,9,19,4,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,602,2,0,852,-16,0,0 +2013,9,5,4,YV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1738,-6,0,1855,-2,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1905,358,1,2120,356,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1750,0,0,2012,-18,0,0 +2013,9,6,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1110,-4,0,1145,-16,0,0 +2013,8,30,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1625,20,1,1645,18,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,840,0,0,950,-8,0,0 +2013,7,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1300,-4,0,1521,-21,0,0 +2013,5,5,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-3,0,1455,-11,0,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1800,-1,0,2108,-15,0,0 +2013,8,30,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2038,-2,0,2358,9,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1735,5,0,2125,6,0,0 +2013,6,9,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1210,-4,0,1329,-14,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1345,115,1,1356,119,1,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-7,0,1036,-8,0,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,630,9,0,1120,-1,0,0 +2013,4,8,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1640,1,0,1856,-12,0,0 +2013,7,14,7,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1455,-2,0,1601,-12,0,0 +2013,9,12,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-6,0,1405,-19,0,0 +2013,5,21,2,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1145,9,0,1401,-1,0,0 +2013,5,30,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1250,-2,0,1522,-9,0,0 +2013,4,13,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1350,-5,0,1627,-13,0,0 +2013,9,29,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,845,-5,0,1029,20,1,0 +2013,9,24,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1008,8,0,1353,26,1,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1005,-4,0,1200,1,0,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2240,-6,0,2348,-9,0,0 +2013,8,27,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1206,-5,0,1425,-13,0,0 +2013,9,14,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10,-3,0,505,-3,0,0 +2013,10,8,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1503,12,0,1839,-2,0,0 +2013,10,22,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1025,-6,0,1135,1,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-7,0,1015,-9,0,0 +2013,10,23,3,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,825,0,0,1020,-11,0,0 +2013,7,27,6,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,940,-8,0,1208,-16,0,0 +2013,10,31,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1414,-4,0,1730,6,0,0 +2013,6,29,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1643,16,1,1823,31,1,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,-2,0,1116,3,0,0 +2013,7,2,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,908,-8,0,1200,7,0,0 +2013,10,29,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,908,-3,0,1133,2,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1405,-4,0,1549,-18,0,0 +2013,8,15,4,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,647,-8,0,950,-2,0,0 +2013,7,13,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,35,1,2044,33,1,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,620,-2,0,740,-15,0,0 +2013,7,18,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,189,1,1956,182,1,0 +2013,9,6,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-5,0,2044,-6,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1000,15,1,1315,10,0,0 +2013,10,16,3,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-4,0,810,-12,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,-4,0,925,-6,0,0 +2013,9,11,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,905,-7,0,1130,-21,0,0 +2013,5,21,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-5,0,1755,-2,0,0 +2013,10,14,1,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,0,0,1706,6,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,0,0,1525,-5,0,0 +2013,8,5,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-10,0,1004,-20,0,0 +2013,10,19,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1525,-4,0,1535,-10,0,0 +2013,8,5,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1605,-9,0,1731,-21,0,0 +2013,4,18,4,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,720,15,1,935,114,1,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,32,1,1105,30,1,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1015,-4,0,1315,-10,0,0 +2013,4,24,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,-4,0,1745,-7,0,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,843,0,0,1532,-18,0,0 +2013,7,19,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,651,0,0,905,-19,0,0 +2013,5,18,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-4,0,1600,1,0,0 +2013,8,4,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,30,1,2316,19,1,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,905,11,0,1340,2,0,0 +2013,7,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,45,1,1810,27,1,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1220,-2,0,1420,-4,0,0 +2013,5,5,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,12,0,1438,5,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,3,0,840,17,1,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1110,2,0,1550,5,0,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,605,-5,0,715,-6,0,0 +2013,8,7,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,-8,0,715,-11,0,0 +2013,7,9,2,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1115,-2,0,1235,-6,0,0 +2013,7,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,820,-3,0,1041,2,0,0 +2013,10,27,7,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1640,0,0,1805,-2,0,0 +2013,8,8,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,35,9,0,613,4,0,0 +2013,6,27,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,945,-4,0,1052,-7,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,13,0,2105,-4,0,0 +2013,7,22,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,12,0,1320,3,0,0 +2013,10,3,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1822,-11,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2001,635,1,2134,644,1,0 +2013,8,30,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,700,-12,0,830,-24,0,0 +2013,7,24,3,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1,-2,0,505,-15,0,0 +2013,6,26,3,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,-7,0,832,14,0,0 +2013,9,14,6,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,925,3,0,1455,-6,0,0 +2013,6,22,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1804,15,1,1956,1,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1817,-1,0,2058,-4,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1205,0,0,1310,-12,0,0 +2013,5,15,3,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1915,-7,0,2031,-5,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,-1,0,834,-16,0,0 +2013,9,10,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,-4,0,1930,11,0,0 +2013,5,5,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1310,-9,0,1356,-4,0,0 +2013,4,1,1,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1338,-8,0,1706,-10,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2130,12,0,2322,-8,0,0 +2013,6,25,2,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,172,1,730,170,1,0 +2013,4,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1006,-8,0,1120,-20,0,0 +2013,8,27,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-10,0,2125,-9,0,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1919,-1,0,2220,-37,0,0 +2013,7,17,3,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1855,1,0,2045,-11,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,2015,31,1,2235,7,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-4,0,2127,-8,0,0 +2013,7,6,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,55,-6,0,620,-13,0,0 +2013,5,8,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,9,0,2235,34,1,0 +2013,4,17,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2005,22,1,2145,19,1,0 +2013,4,12,5,9E,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,58,1,2110,41,1,0 +2013,4,10,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-4,0,949,1,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,755,-3,0,922,-18,0,0 +2013,9,17,2,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1709,-4,0,1837,-24,0,0 +2013,9,25,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,-1,0,1905,-7,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,2200,-6,0,511,-19,0,0 +2013,5,25,6,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1538,1,0,1856,-21,0,0 +2013,7,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,9,0,1556,-2,0,0 +2013,10,29,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-7,0,658,-13,0,0 +2013,4,13,6,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1021,-2,0,1145,-14,0,0 +2013,8,10,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,41,1,1050,40,1,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,-7,0,2205,-42,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,850,0,0,1123,-8,0,0 +2013,6,3,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,630,2,0,645,-5,0,0 +2013,8,4,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1134,-1,0,1305,-6,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1910,-3,0,2035,-11,0,0 +2013,8,24,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1347,-7,0,1641,-6,0,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1930,9,0,2247,5,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,829,9,0,944,-3,0,0 +2013,10,24,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,715,4,0,825,1,0,0 +2013,5,15,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-6,0,1804,-18,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,-4,0,1405,-14,0,0 +2013,9,13,5,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,717,219,1,1535,221,1,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2040,22,1,2210,21,1,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-3,0,1610,0,0,0 +2013,6,16,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1711,33,1,1757,32,1,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,40,1,1623,40,1,0 +2013,6,27,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-1,0,1139,-2,0,0 +2013,7,29,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,1,0,1421,-5,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1132,-6,0,1248,3,0,0 +2013,9,28,6,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,847,-13,0,1032,-13,0,0 +2013,8,25,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1920,-3,0,2010,-5,0,0 +2013,6,16,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-9,0,925,-11,0,0 +2013,5,22,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2045,78,1,2255,68,1,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,0,0,2012,-6,0,0 +2013,7,17,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1425,-3,0,1515,-16,0,0 +2013,7,31,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1159,-2,0,1344,-17,0,0 +2013,7,27,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,837,49,1,0 +2013,8,30,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2125,-7,0,2238,-12,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-1,0,1004,-24,0,0 +2013,4,19,5,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,-9,0,1424,-11,0,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,47,1,1030,60,1,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1020,-1,0,1209,-17,0,0 +2013,5,20,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,755,-4,0,1032,-17,0,0 +2013,7,9,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1555,-26,0,0 +2013,9,24,2,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-20,0,900,-30,0,0 +2013,9,6,5,OO,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1155,-6,0,1510,1,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,940,5,0,1435,8,0,0 +2013,9,16,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,0,,2034,0,1,1 +2013,6,5,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-4,0,1757,-5,0,0 +2013,10,23,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1925,18,1,2015,8,0,0 +2013,8,28,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1820,5,0,2000,-3,0,0 +2013,6,9,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-1,0,1220,15,1,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1255,1,0,1352,-7,0,0 +2013,7,10,3,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-2,0,1033,8,0,0 +2013,7,13,6,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,-7,0,1615,6,0,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1045,37,1,1205,24,1,0 +2013,9,5,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1925,9,0,2110,1,0,0 +2013,4,12,5,OO,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,957,-5,0,1108,-13,0,0 +2013,4,24,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1110,1,0,1407,0,0,0 +2013,10,20,7,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,115,-10,0,503,-21,0,0 +2013,8,23,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,800,1,0,925,1,0,0 +2013,9,10,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1100,-5,0,1518,-3,0,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,1,0,1003,-4,0,0 +2013,5,19,7,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,-7,0,2145,-12,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1038,-5,0,1220,-16,0,0 +2013,7,7,7,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,-11,0,1605,-21,0,0 +2013,7,21,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,951,49,1,1200,72,1,0 +2013,6,8,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,-10,0,1542,1,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1230,7,0,1435,7,0,0 +2013,4,1,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2030,9,0,2215,21,1,0 +2013,7,19,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1711,-4,0,1850,-17,0,0 +2013,10,22,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,900,-4,0,1010,-3,0,0 +2013,5,23,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1812,304,1,2000,286,1,0 +2013,9,13,5,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1000,-6,0,1115,-15,0,0 +2013,8,16,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-1,0,2041,-9,0,0 +2013,4,14,7,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1719,12,0,1843,17,1,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1655,47,1,2130,38,1,0 +2013,10,3,4,9E,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,645,-7,0,821,-12,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1240,-4,0,1500,-2,0,0 +2013,6,5,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,-7,0,1729,-6,0,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1754,-1,0,2306,22,1,0 +2013,10,21,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-6,0,1327,-19,0,0 +2013,7,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,115,1,1127,105,1,0 +2013,4,11,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1806,39,1,1935,5,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2210,18,1,25,14,0,0 +2013,7,28,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,0,0,1945,56,1,0 +2013,5,5,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2210,56,1,5,48,1,0 +2013,9,1,7,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-14,0,1622,-32,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1900,11,0,2040,28,1,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-7,0,1807,-5,0,0 +2013,5,19,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,9,0,1220,46,1,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,28,1,1355,4,0,0 +2013,4,1,1,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,104,1,1525,81,1,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2345,43,1,536,25,1,0 +2013,8,21,3,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,748,-5,0,1327,-6,0,0 +2013,5,2,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1735,9,0,1920,-7,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,830,-35,0,0 +2013,10,14,1,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1215,-1,0,1404,8,0,0 +2013,6,4,2,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1120,-5,0,1400,-12,0,0 +2013,8,10,6,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1340,-10,0,1600,-30,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,14,0,1445,6,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-5,0,1307,-1,0,0 +2013,7,1,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1010,-1,0,1105,-3,0,0 +2013,5,6,1,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1909,-2,0,2154,-20,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1435,24,1,2140,15,1,0 +2013,4,23,2,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1920,30,1,2022,26,1,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,18,1,2300,31,1,0 +2013,4,22,1,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1411,-9,0,1611,-6,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,745,37,1,1135,29,1,0 +2013,10,22,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1345,-5,0,1455,6,0,0 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1111,-5,0,1153,-14,0,0 +2013,7,4,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,0,0,1440,-13,0,0 +2013,7,3,3,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1553,-4,0,2140,22,1,0 +2013,8,15,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1623,2,0,1803,-7,0,0 +2013,4,3,3,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-1,0,1740,8,0,0 +2013,7,5,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-4,0,1033,-3,0,0 +2013,7,15,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-3,0,1106,5,0,0 +2013,8,8,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-3,0,649,-5,0,0 +2013,10,10,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-5,0,2114,-26,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,23,1,2120,18,1,0 +2013,10,12,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1554,-8,0,1628,-6,0,0 +2013,4,2,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1051,-4,0,1925,-11,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,118,1,1735,218,1,0 +2013,4,28,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,820,-18,0,0 +2013,9,23,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,623,-1,0,800,-1,0,0 +2013,4,3,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2017,4,0,2124,7,0,0 +2013,6,7,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,804,-4,0,928,4,0,0 +2013,9,2,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-3,0,2005,4,0,0 +2013,9,3,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,5,0,1411,-5,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,835,-3,0,1040,-19,0,0 +2013,7,10,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1624,-6,0,1824,-10,0,0 +2013,10,12,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-2,0,1942,-12,0,0 +2013,7,21,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,935,-2,0,1100,-10,0,0 +2013,9,4,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1034,1,0,1303,-1,0,0 +2013,10,18,5,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1300,11,0,1445,-11,0,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,41,1,1609,44,1,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-2,0,1310,13,0,0 +2013,5,12,7,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,830,-4,0,955,9,0,0 +2013,8,28,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1600,19,1,1755,17,1,0 +2013,7,14,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,930,1,0,0 +2013,4,8,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1555,-8,0,1715,-11,0,0 +2013,9,8,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2025,5,0,2310,-4,0,0 +2013,7,28,7,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,2,0,1745,0,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2113,6,0,2254,-7,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1455,1,0,1555,-4,0,0 +2013,8,4,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-3,0,1632,-22,0,0 +2013,8,9,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1355,-5,0,1739,-9,0,0 +2013,6,3,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,-12,0,943,-3,0,0 +2013,6,27,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1920,5,0,2050,-20,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1255,4,0,1645,-7,0,0 +2013,7,24,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,745,-5,0,810,-4,0,0 +2013,6,23,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,241,1,843,247,1,0 +2013,5,21,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1541,-2,0,1810,-6,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2210,-1,0,2315,-3,0,0 +2013,8,30,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,12,0,2155,7,0,0 +2013,5,7,2,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1526,21,1,1627,29,1,0 +2013,6,10,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,-2,0,735,1,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,15,1,1627,-10,0,0 +2013,6,30,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,11,0,1000,6,0,0 +2013,5,20,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,-1,0,1633,3,0,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1555,-3,0,1710,-7,0,0 +2013,7,20,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,630,-1,0,745,3,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1120,-3,0,1239,4,0,0 +2013,4,3,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,2050,-2,0,2230,14,0,0 +2013,8,7,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1749,24,1,2344,11,0,0 +2013,7,25,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-10,0,2148,-18,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1100,1,0,1325,8,0,0 +2013,7,24,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,49,1,1759,48,1,0 +2013,10,5,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1305,16,1,1430,2,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1550,64,1,2125,40,1,0 +2013,8,4,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,1205,-22,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2112,29,1,2201,12,0,0 +2013,8,21,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-4,0,1110,22,1,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,33,1,2252,11,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-3,0,2259,16,1,0 +2013,6,11,2,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1845,-7,0,2047,-4,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2045,-8,0,2245,-12,0,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-4,0,1920,11,0,0 +2013,8,27,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,1254,-2,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1305,-4,0,1415,-18,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,715,-6,0,820,-11,0,0 +2013,9,15,7,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,950,-2,0,1050,-10,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1550,-2,0,1655,-10,0,0 +2013,9,4,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1800,0,0,2118,-19,0,0 +2013,10,10,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1345,-3,0,1500,-15,0,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1035,-6,0,1203,-18,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,3,0,910,-15,0,0 +2013,6,23,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-4,0,955,-24,0,0 +2013,7,27,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-2,0,734,-8,0,0 +2013,7,26,5,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-8,0,735,-19,0,0 +2013,5,20,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1556,2,0,1701,4,0,0 +2013,8,18,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-4,0,1405,-10,0,0 +2013,5,20,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1755,62,1,2054,63,1,0 +2013,7,6,6,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-6,0,917,-11,0,0 +2013,4,11,4,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1842,-4,0,2009,-22,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,25,1,1005,22,1,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1057,-3,0,1159,-15,0,0 +2013,5,1,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-3,0,1312,5,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2205,-3,0,4,-13,0,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1400,-2,0,1540,10,0,0 +2013,5,16,4,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1840,6,0,1925,-15,0,0 +2013,8,31,6,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-6,0,1805,-11,0,0 +2013,4,14,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1509,272,1,1710,279,1,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,535,32,1,935,28,1,0 +2013,4,26,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,1250,-1,0,0 +2013,4,23,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,-8,0,1140,-9,0,0 +2013,4,15,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,130,-13,0,554,-46,0,0 +2013,6,5,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1355,-4,0,1757,-14,0,0 +2013,4,19,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-2,0,909,-4,0,0 +2013,9,11,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,16,1,2013,101,1,0 +2013,4,20,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-8,0,838,1,0,0 +2013,5,7,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,-3,0,2113,-14,0,0 +2013,5,27,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,-12,0,1735,-12,0,0 +2013,4,12,5,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1310,7,0,1620,7,0,0 +2013,5,10,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,555,-7,0,847,-18,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2145,-2,0,2343,-11,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,-4,0,1555,-15,0,0 +2013,5,16,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1715,0,0,1830,-3,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,13,0,2150,-2,0,0 +2013,4,24,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2220,-5,0,50,-9,0,0 +2013,7,2,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1911,11,0,2242,-25,0,0 +2013,7,21,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1859,15,1,2005,6,0,0 +2013,10,24,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1829,-5,0,2122,-14,0,0 +2013,5,3,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1344,-3,0,1621,5,0,0 +2013,9,21,6,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,935,-7,0,1420,-16,0,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1959,10,0,2128,6,0,0 +2013,7,28,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1737,-6,0,1822,-6,0,0 +2013,10,13,7,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,747,0,0,1139,-5,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,650,-6,0,822,-14,0,0 +2013,4,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1225,-4,0,1428,-15,0,0 +2013,8,10,6,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1500,28,1,1720,34,1,0 +2013,8,5,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,-6,0,1203,-9,0,0 +2013,10,23,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-3,0,2025,-6,0,0 +2013,4,7,7,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1100,173,1,1839,142,1,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2005,-6,0,2137,-9,0,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1540,-3,0,1715,21,1,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2200,99,1,2255,108,1,0 +2013,7,23,2,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2235,61,1,700,57,1,0 +2013,10,15,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-4,0,1500,9,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,-4,0,1720,-10,0,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1150,-1,0,1330,-21,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1949,-7,0,2115,-5,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2240,26,1,2340,26,1,0 +2013,6,18,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-2,0,908,0,0,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,53,1,2245,42,1,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1150,0,0,1445,3,0,0 +2013,8,16,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,26,1,2346,15,1,0 +2013,4,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2100,37,1,2354,22,1,0 +2013,10,27,7,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,10721,Logan International,Boston,MA,2124,-10,0,547,-21,0,0 +2013,5,21,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1250,1,0,1405,-6,0,0 +2013,4,2,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1150,-2,0,1315,1,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1425,0,,1520,0,1,1 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,925,2,0,1125,-5,0,0 +2013,7,5,5,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1310,-3,0,2108,5,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,0,0,1110,-9,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1824,29,1,2259,17,1,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-4,0,1134,-1,0,0 +2013,10,5,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1219,-11,0,1459,-14,0,0 +2013,7,24,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,2250,-13,0,615,-16,0,0 +2013,4,7,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1910,34,1,2035,14,0,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,12,0,2050,29,1,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1400,6,0,1500,-3,0,0 +2013,10,24,4,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-5,0,1523,-8,0,0 +2013,7,27,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,2,0,2107,-5,0,0 +2013,7,16,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1015,-9,0,1306,-4,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,811,-5,0,1059,-10,0,0 +2013,5,30,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,1,0,1845,-4,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1735,-1,0,2022,-15,0,0 +2013,5,15,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1730,-4,0,1835,-7,0,0 +2013,10,8,2,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,725,-5,0,945,-9,0,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2005,34,1,2130,34,1,0 +2013,8,29,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-2,0,1107,20,1,0 +2013,4,14,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,32,1,1620,21,1,0 +2013,6,1,6,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1054,-4,0,1147,-6,0,0 +2013,9,1,7,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1355,-9,0,1653,-20,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,8,0,1149,6,0,0 +2013,5,8,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1440,77,1,1640,78,1,0 +2013,7,1,1,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,20,1,1122,41,1,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,0,0,2200,21,1,0 +2013,9,8,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,-1,0,1535,-36,0,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,-3,0,2119,1,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1550,-6,0,1715,-9,0,0 +2013,6,5,3,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-9,0,1434,-20,0,0 +2013,9,29,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,13,0,1905,-3,0,0 +2013,7,31,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,705,2,0,755,-2,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1042,-5,0,1154,-8,0,0 +2013,8,7,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,801,15,1,1316,5,0,0 +2013,7,24,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1631,-2,0,1914,-23,0,0 +2013,8,29,4,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,23,1,2000,1,0,0 +2013,10,12,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1237,85,1,1417,68,1,0 +2013,5,6,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,2040,-7,0,2130,-13,0,0 +2013,8,2,5,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,730,-5,0,1538,-17,0,0 +2013,10,8,2,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1555,-3,0,1922,-25,0,0 +2013,10,1,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-6,0,743,-7,0,0 +2013,10,1,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1310,-3,0,1425,-5,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,-1,0,1555,-4,0,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,940,9,0,1205,-9,0,0 +2013,10,22,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,740,0,0,835,-2,0,0 +2013,8,16,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1645,20,1,1800,4,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1400,8,0,1505,5,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,816,-2,0,1037,8,0,0 +2013,10,8,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1016,-9,0,1154,3,0,0 +2013,8,8,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,755,-2,0,1400,-29,0,0 +2013,7,15,1,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,57,1,2316,69,1,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2100,4,0,2225,-6,0,0 +2013,10,10,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2009,66,1,2208,69,1,0 +2013,9,1,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2000,99,1,2139,88,1,0 +2013,6,7,5,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,19,1,2005,-16,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2100,4,0,2315,-6,0,0 +2013,9,29,7,9E,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1430,-6,0,1623,-20,0,0 +2013,10,4,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1815,3,0,1925,-4,0,0 +2013,8,19,1,OO,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,755,-3,0,916,-13,0,0 +2013,7,21,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1745,-4,0,1855,-6,0,0 +2013,6,7,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,645,-4,0,810,-4,0,0 +2013,4,23,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2120,-9,0,2240,-15,0,0 +2013,4,6,6,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-2,0,817,-15,0,0 +2013,10,16,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,920,-5,0,1308,-3,0,0 +2013,6,25,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,4,0,2042,8,0,0 +2013,8,30,5,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,629,-10,0,929,-29,0,0 +2013,10,28,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-2,0,1050,-2,0,0 +2013,6,30,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,935,8,0,1105,15,1,0 +2013,9,10,2,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1342,1,0,1642,-23,0,0 +2013,4,8,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1145,6,0,1420,-2,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1835,17,1,2055,23,1,0 +2013,5,9,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-1,0,1504,-5,0,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,5,0,2200,12,0,0 +2013,6,19,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1615,9,0,1800,5,0,0 +2013,6,13,4,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,66,1,2030,130,1,0 +2013,9,10,2,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1230,7,0,1420,-7,0,0 +2013,8,17,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,3,0,1248,-13,0,0 +2013,5,22,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1654,52,1,1700,58,1,0 +2013,4,27,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,755,2,0,1000,-22,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1942,-2,0,2041,-14,0,0 +2013,4,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1320,42,1,1442,34,1,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1935,20,1,2255,15,1,0 +2013,5,18,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1615,0,0,1710,0,0,0 +2013,6,20,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,812,3,0,929,-5,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,258,1,2135,243,1,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,5,0,1810,-11,0,0 +2013,5,12,7,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,0,0,2000,13,0,0 +2013,10,4,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,-5,0,2130,-3,0,0 +2013,7,14,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,26,1,1845,19,1,0 +2013,8,7,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,7,0,1830,6,0,0 +2013,6,10,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1721,4,0,1940,-4,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,7,0,956,10,0,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,3,0,1730,-5,0,0 +2013,5,6,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,845,-1,0,940,-12,0,0 +2013,6,20,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,0,0,928,-7,0,0 +2013,9,28,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,640,0,0,1005,-1,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1130,3,0,1230,-10,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,13,0,1427,16,1,0 +2013,4,27,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,805,-3,0,1110,-2,0,0 +2013,7,30,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,750,-6,0,950,-5,0,0 +2013,7,26,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-5,0,736,12,0,0 +2013,9,23,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1220,5,0,1330,-2,0,0 +2013,10,19,6,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1412,-9,0,1642,-10,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1909,28,1,2159,20,1,0 +2013,6,7,5,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1010,9,0,1321,23,1,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1010,-3,0,1320,-3,0,0 +2013,4,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1545,11,0,1710,1,0,0 +2013,4,16,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1430,1,0,1535,-6,0,0 +2013,9,10,2,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,-10,0,2132,-7,0,0 +2013,8,4,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1025,-2,0,1301,-1,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1440,1,0,1735,3,0,0 +2013,6,12,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-4,0,1414,-21,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1910,1,0,2044,-15,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,630,-2,0,1210,-3,0,0 +2013,8,26,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-7,0,845,-20,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1140,5,0,1725,-6,0,0 +2013,10,16,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,-5,0,2025,2,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2030,3,0,10,1,0,0 +2013,6,5,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-9,0,1912,-3,0,0 +2013,6,13,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1920,-4,0,2316,-7,0,0 +2013,6,8,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,16,1,1014,27,1,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1037,333,1,1354,334,1,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1725,0,0,1850,-1,0,0 +2013,5,31,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1640,51,1,1850,55,1,0 +2013,4,4,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1846,75,1,2118,69,1,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,0,,1430,0,1,1 +2013,9,3,2,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,955,-2,0,1445,2,0,0 +2013,8,16,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1015,-3,0,1200,-12,0,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,133,1,1925,106,1,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1105,-3,0,1410,-24,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2100,6,0,2325,-15,0,0 +2013,4,13,6,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1730,2,0,1830,-7,0,0 +2013,5,11,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,838,-4,0,1130,-4,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2002,9,0,2058,5,0,0 +2013,6,9,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1445,-4,0,1805,-12,0,0 +2013,5,5,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1021,7,0,1304,0,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1929,-5,0,2105,-4,0,0 +2013,6,11,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,900,-4,0,1130,5,0,0 +2013,10,28,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1118,-1,0,1120,8,0,0 +2013,8,21,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,3,0,1615,-8,0,0 +2013,5,24,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1928,0,,2140,0,1,1 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-9,0,950,-17,0,0 +2013,6,16,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,320,8,0,713,10,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2325,-2,0,730,-6,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1525,9,0,1620,1,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1805,-1,0,2059,-16,0,0 +2013,5,16,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-5,0,1711,-15,0,0 +2013,6,15,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,32,1,2005,12,0,0 +2013,5,18,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,0,0,1725,-8,0,0 +2013,10,12,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1425,-4,0,1525,1,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,-2,0,1909,5,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,6,0,2110,-11,0,0 +2013,4,8,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1020,8,0,1138,7,0,0 +2013,8,7,3,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1643,-6,0,1907,-28,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,910,0,0,1109,2,0,0 +2013,10,16,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2040,14,0,2300,6,0,0 +2013,8,22,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,855,5,0,1115,6,0,0 +2013,5,20,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1659,-7,0,1804,0,0,0 +2013,4,27,6,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,800,-4,0,925,-13,0,0 +2013,7,9,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1838,4,0,48,-7,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1621,-1,0,1746,-12,0,0 +2013,10,11,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1255,46,1,2116,18,1,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,845,-2,0,1100,-18,0,0 +2013,8,23,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,65,1,2125,53,1,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1410,36,1,1720,65,1,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1738,102,1,1904,110,1,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1825,17,1,45,25,1,0 +2013,7,23,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1115,5,0,1251,9,0,0 +2013,7,21,7,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,2305,-7,0,612,-16,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,910,-5,0,1035,-10,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,5,0,1340,5,0,0 +2013,8,27,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,705,28,1,1030,8,0,0 +2013,8,30,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-4,0,808,-18,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,825,4,0,1355,-5,0,0 +2013,9,21,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1945,-10,0,2252,-10,0,0 +2013,10,21,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1250,51,1,1405,58,1,0 +2013,8,8,4,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1000,-23,0,0 +2013,9,28,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-4,0,855,-33,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2035,14,0,2345,10,0,0 +2013,10,11,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,710,-14,0,0 +2013,5,26,7,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,28,1,5,14,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,38,1,1925,45,1,0 +2013,9,3,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1055,12,0,1210,9,0,0 +2013,7,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1750,63,1,1930,44,1,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,640,7,0,735,6,0,0 +2013,5,31,5,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,-11,0,1633,-22,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1610,-1,0,1817,8,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1500,2,0,1630,10,0,0 +2013,4,13,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-5,0,930,-10,0,0 +2013,9,11,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,-9,0,923,-50,0,0 +2013,4,24,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1855,-1,0,2127,-3,0,0 +2013,7,14,7,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,900,9,0,1455,24,1,0 +2013,6,25,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1448,60,1,1510,74,1,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1220,12,0,1425,10,0,0 +2013,4,15,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,710,-7,0,832,-23,0,0 +2013,5,3,5,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1646,230,1,1805,230,1,0 +2013,8,24,6,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1453,-7,0,1613,-13,0,0 +2013,9,9,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,730,-3,0,935,-3,0,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1600,-4,0,1755,-12,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,-6,0,1601,-18,0,0 +2013,9,23,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1355,36,1,1510,24,1,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,825,-4,0,920,-10,0,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,-3,0,2230,37,1,0 +2013,4,30,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-6,0,1519,-13,0,0 +2013,5,24,5,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2140,15,1,2255,14,0,0 +2013,4,11,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-2,0,1200,7,0,0 +2013,9,23,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1845,-10,0,2005,-9,0,0 +2013,8,21,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1740,-4,0,1855,-7,0,0 +2013,9,2,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1301,-4,0,1419,-14,0,0 +2013,9,21,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,-2,0,709,4,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1515,2,0,1830,-5,0,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1945,-5,0,2055,-8,0,0 +2013,9,17,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,915,1,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1550,-4,0,1827,-32,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-4,0,2331,-10,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1125,25,1,1240,27,1,0 +2013,6,18,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1150,-2,0,1337,-11,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,2,0,2201,5,0,0 +2013,9,7,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1700,-4,0,1800,-5,0,0 +2013,7,16,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,957,-3,0,1038,-12,0,0 +2013,7,25,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1050,3,0,1230,3,0,0 +2013,4,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1835,-4,0,2100,-20,0,0 +2013,6,1,6,YV,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,855,-4,0,1138,11,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,3,0,1730,-3,0,0 +2013,4,19,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,2050,-2,0,2245,1,0,0 +2013,7,1,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,545,-8,0,715,-17,0,0 +2013,6,2,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1945,67,1,2300,74,1,0 +2013,5,29,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2005,2,0,2107,-5,0,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-4,0,2202,2,0,0 +2013,7,25,4,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,648,25,1,948,17,1,0 +2013,5,24,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-12,0,2205,-14,0,0 +2013,8,26,1,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1425,-4,0,1615,-9,0,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1235,-3,0,1529,-2,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2201,-1,0,2321,-23,0,0 +2013,7,21,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-2,0,2034,-11,0,0 +2013,10,10,4,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,42,1,758,9,0,0 +2013,4,9,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1925,-4,0,2155,-14,0,0 +2013,6,29,6,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,4,0,1851,9,0,0 +2013,7,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1455,-4,0,1738,-19,0,0 +2013,7,16,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,-8,0,1843,-9,0,0 +2013,6,11,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,0,0,725,-2,0,0 +2013,8,6,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,824,-11,0,1635,-48,0,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1200,21,1,1630,10,0,0 +2013,4,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1150,5,0,1305,3,0,0 +2013,6,8,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1918,-7,0,2100,-24,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1815,-6,0,2135,-6,0,0 +2013,7,23,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,535,0,0,650,-2,0,0 +2013,7,7,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,755,-3,0,1115,-11,0,0 +2013,7,19,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-9,0,2203,-1,0,0 +2013,7,5,5,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,852,82,1,1138,94,1,0 +2013,5,5,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-8,0,1955,-14,0,0 +2013,5,6,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,843,9,0,1111,13,0,0 +2013,6,10,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1610,-2,0,1640,-14,0,0 +2013,6,8,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1755,33,1,2051,21,1,0 +2013,10,13,7,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-7,0,1520,-14,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,-4,0,1959,37,1,0 +2013,8,19,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1532,-10,0,1650,-21,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1921,0,0,2019,8,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,4,0,1735,13,0,0 +2013,8,15,4,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,835,-12,0,0 +2013,6,20,4,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,800,6,0,1557,2,0,0 +2013,4,29,1,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1310,-6,0,1500,-22,0,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,725,-3,0,830,-9,0,0 +2013,6,3,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,0,,1830,0,1,1 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1550,4,0,1710,-4,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,6,0,1814,6,0,0 +2013,9,29,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1827,-6,0,2107,-25,0,0 +2013,6,9,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1726,-3,0,1748,-15,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,-1,0,1140,-15,0,0 +2013,5,9,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1440,-5,0,1615,-10,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,15,1,2150,13,0,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,12,0,1059,9,0,0 +2013,5,15,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,942,-4,0,1116,-29,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,805,-3,0,930,-7,0,0 +2013,4,3,3,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1335,-3,0,1604,7,0,0 +2013,10,8,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1415,9,0,1545,-1,0,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,-1,0,1240,-14,0,0 +2013,9,14,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1025,-3,0,1135,-8,0,0 +2013,10,10,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-1,0,648,5,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,0,0,1515,-5,0,0 +2013,6,13,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1735,16,1,1830,4,0,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1301,-1,0,1419,-9,0,0 +2013,10,16,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-3,0,1203,4,0,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,0,,2135,0,1,1 +2013,8,7,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,1,0,920,-6,0,0 +2013,9,21,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-9,0,1354,-6,0,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,14,0,1042,1,0,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,2,0,1010,1,0,0 +2013,10,2,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1710,-6,0,1829,-16,0,0 +2013,7,28,7,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1509,15,1,1620,24,1,0 +2013,4,23,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-4,0,1900,-16,0,0 +2013,10,27,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-11,0,1332,-33,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1550,38,1,1905,24,1,0 +2013,10,8,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,816,-3,0,932,-8,0,0 +2013,6,10,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1215,2,0,1400,-11,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1936,109,1,2155,90,1,0 +2013,10,18,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1620,76,1,1710,85,1,0 +2013,5,6,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,13,0,1350,10,0,0 +2013,4,7,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1507,15,1,1636,3,0,0 +2013,10,15,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,731,0,0,848,-17,0,0 +2013,10,3,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,945,0,0,1129,-13,0,0 +2013,9,27,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,745,1,0,1501,-20,0,0 +2013,5,15,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-5,0,1241,-21,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,2,0,1143,6,0,0 +2013,6,26,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,631,-1,0,1426,3,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1235,-2,0,1415,0,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,731,-3,0,848,-7,0,0 +2013,4,12,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1915,-5,0,2155,-3,0,0 +2013,6,10,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,-5,0,740,-7,0,0 +2013,5,4,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1115,18,1,1245,27,1,0 +2013,8,3,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-5,0,849,-7,0,0 +2013,5,13,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1815,-4,0,1954,-21,0,0 +2013,10,4,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1707,-7,0,2218,-21,0,0 +2013,7,20,6,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1820,-7,0,2025,-14,0,0 +2013,6,24,1,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,-7,0,1053,-4,0,0 +2013,7,1,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1940,20,1,2115,5,0,0 +2013,4,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1845,-7,0,2100,-21,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1230,-4,0,1410,-3,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-6,0,2308,-8,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2020,17,1,2110,17,1,0 +2013,7,6,6,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,730,1,0,850,-9,0,0 +2013,6,23,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,-3,0,1715,-14,0,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2200,26,1,2320,25,1,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-1,0,1745,-11,0,0 +2013,4,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1730,-3,0,1908,-7,0,0 +2013,4,25,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1735,21,1,2007,8,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1813,19,1,2037,21,1,0 +2013,10,11,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1345,0,,1529,0,1,1 +2013,5,3,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,29,1,1652,25,1,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,6,0,930,-10,0,0 +2013,5,29,3,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-1,0,1603,-10,0,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1325,23,1,1626,41,1,0 +2013,7,14,7,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-6,0,1254,-22,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1310,-1,0,1620,-9,0,0 +2013,4,26,5,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,845,-8,0,1001,-14,0,0 +2013,5,24,5,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,839,-4,0,1143,-16,0,0 +2013,6,6,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1246,8,0,0 +2013,5,14,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-5,0,730,9,0,0 +2013,10,30,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-10,0,950,4,0,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1355,2,0,1643,-1,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1507,2,0,1653,-9,0,0 +2013,4,12,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,71,1,2129,71,1,0 +2013,7,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1650,0,0,1810,-3,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1615,32,1,2345,32,1,0 +2013,10,3,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1030,-3,0,1150,-6,0,0 +2013,10,6,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1720,39,1,1805,27,1,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,-8,0,734,-20,0,0 +2013,7,21,7,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,6,0,1543,17,1,0 +2013,8,12,1,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1650,28,1,1744,26,1,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,-3,0,1225,-3,0,0 +2013,9,22,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,715,-8,0,901,-17,0,0 +2013,9,12,4,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1300,-8,0,1410,-8,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,842,-5,0,1010,-9,0,0 +2013,7,17,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1451,-4,0,1715,-40,0,0 +2013,6,7,5,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,959,-4,0,1110,4,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1735,171,1,1858,158,1,0 +2013,7,30,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-3,0,1645,-14,0,0 +2013,6,11,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,69,1,2225,57,1,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1721,11,0,1919,-1,0,0 +2013,10,27,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2040,25,1,2245,24,1,0 +2013,9,14,6,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1110,55,1,1516,67,1,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1534,-5,0,1905,-14,0,0 +2013,7,13,6,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,602,-4,0,1331,-6,0,0 +2013,8,10,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,2,0,940,-5,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,935,0,0,1140,6,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,21,1,2039,9,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1945,-2,0,2050,-9,0,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1520,28,1,1639,44,1,0 +2013,10,1,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1710,-7,0,1851,-15,0,0 +2013,4,6,6,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1230,0,0,1615,-11,0,0 +2013,5,3,5,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,3,0,1948,-23,0,0 +2013,8,28,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,800,-3,0,915,5,0,0 +2013,5,16,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,645,-6,0,847,-17,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1759,5,0,1926,3,0,0 +2013,5,16,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2125,-3,0,2220,-20,0,0 +2013,4,14,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,801,-5,0,1055,-21,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,53,1,1705,48,1,0 +2013,5,25,6,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1315,-6,0,1510,-5,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,21,1,1739,25,1,0 +2013,6,14,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,0,0,910,-9,0,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,620,0,0,904,10,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-3,0,2122,-7,0,0 +2013,6,5,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1355,-1,0,1450,-12,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1546,9,0,1907,9,0,0 +2013,6,24,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,625,3,0,801,-9,0,0 +2013,7,27,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,835,-21,0,0 +2013,9,24,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1435,-4,0,1841,-3,0,0 +2013,10,12,6,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1131,-3,0,1350,-15,0,0 +2013,8,13,2,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1753,-3,0,1900,-13,0,0 +2013,8,24,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1233,-12,0,1441,-24,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1042,-3,0,1616,0,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,-3,0,1342,-4,0,0 +2013,4,21,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,8,0,2211,10,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2145,50,1,2329,28,1,0 +2013,6,2,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1920,5,0,2328,-20,0,0 +2013,4,8,1,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1215,-2,0,1525,-14,0,0 +2013,5,25,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1958,13,0,2130,7,0,0 +2013,8,12,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-6,0,1752,-3,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,820,-2,0,939,-3,0,0 +2013,6,1,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1955,-12,0,2210,-30,0,0 +2013,8,31,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1240,-8,0,1504,-27,0,0 +2013,8,28,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,645,0,0,700,2,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-2,0,824,-9,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,-4,0,1230,-20,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2105,60,1,10,56,1,0 +2013,8,30,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,0,0,1729,-11,0,0 +2013,6,29,6,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1553,-3,0,2139,-3,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1943,0,,2125,0,1,1 +2013,5,4,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,0,0,1500,-10,0,0 +2013,6,24,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1007,-3,0,1045,-3,0,0 +2013,5,14,2,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-6,0,1744,-7,0,0 +2013,6,10,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1651,-10,0,1812,-16,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,-2,0,913,-3,0,0 +2013,7,20,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1847,-6,0,1959,-11,0,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1056,26,1,1858,13,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2105,8,0,2250,13,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1507,8,0,1618,0,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,6,0,920,8,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,46,1,1715,33,1,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1537,17,1,1852,12,0,0 +2013,5,1,3,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1225,1,0,1330,-5,0,0 +2013,6,27,4,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,21,1,535,10,0,0 +2013,6,7,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,9,0,1610,45,1,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1315,-4,0,1601,1,0,0 +2013,6,12,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,732,24,1,1556,21,1,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1900,18,1,2330,32,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,726,-5,0,901,-9,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1230,-3,0,1402,-16,0,0 +2013,5,14,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,851,-11,0,1043,-40,0,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,925,-12,0,0 +2013,6,23,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,31,1,1446,39,1,0 +2013,4,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1445,-1,0,1640,3,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,940,-3,0,1514,-19,0,0 +2013,8,31,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1055,24,1,1209,16,1,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1550,9,0,1710,7,0,0 +2013,8,18,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,735,-2,0,1010,-5,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1307,-6,0,1634,-16,0,0 +2013,8,8,4,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2022,19,1,2330,37,1,0 +2013,4,29,1,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1022,-14,0,1310,-13,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1300,1,0,1651,4,0,0 +2013,9,19,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-5,0,759,10,0,0 +2013,5,30,4,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,1,0,1845,-21,0,0 +2013,7,11,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-5,0,1007,-12,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,29,1,2220,27,1,0 +2013,7,11,4,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1200,-2,0,2030,4,0,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,835,-4,0,853,-4,0,0 +2013,7,27,6,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,827,-9,0,942,-15,0,0 +2013,8,22,4,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,655,0,0,754,-5,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2051,5,0,2225,-2,0,0 +2013,6,24,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1529,123,1,1535,125,1,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1959,-7,0,2159,-21,0,0 +2013,4,13,6,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,-7,0,2300,-4,0,0 +2013,10,7,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1141,0,0,1753,-13,0,0 +2013,7,22,1,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,3,0,945,-1,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1310,242,1,1625,228,1,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2125,-1,0,10,-9,0,0 +2013,4,18,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1525,90,1,2345,79,1,0 +2013,4,12,5,WN,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1620,226,1,1905,219,1,0 +2013,5,31,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,7,0,1220,18,1,0 +2013,4,5,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2006,3,0,2315,8,0,0 +2013,4,30,2,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,3,0,2359,20,1,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,-1,0,1820,1,0,0 +2013,9,15,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-6,0,1240,-4,0,0 +2013,5,10,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-1,0,1210,-6,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,-3,0,1720,16,1,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1755,-2,0,2030,-19,0,0 +2013,8,15,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-1,0,1755,-11,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1515,-5,0,1635,-8,0,0 +2013,6,18,2,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1121,3,0,1305,0,0,0 +2013,4,28,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,6,0,1600,-8,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2250,-7,0,7,-8,0,0 +2013,5,30,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,14,0,1805,8,0,0 +2013,7,26,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,558,-10,0,945,-7,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,4,0,850,1,0,0 +2013,8,29,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,841,-4,0,941,-16,0,0 +2013,9,23,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,8,0,1312,-9,0,0 +2013,4,28,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1232,-10,0,1514,-5,0,0 +2013,8,24,6,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,-7,0,1858,-5,0,0 +2013,5,28,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,826,-7,0,951,-20,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2133,-1,0,602,-2,0,0 +2013,4,7,7,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-2,0,2020,6,0,0 +2013,4,15,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-5,0,1109,-10,0,0 +2013,5,16,4,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1435,-3,0,1600,30,1,0 +2013,8,6,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,-9,0,110,-21,0,0 +2013,6,4,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1010,-8,0,1143,-10,0,0 +2013,7,22,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1902,26,1,2020,25,1,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-6,0,2152,-21,0,0 +2013,4,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,3,0,1715,1,0,0 +2013,9,10,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-2,0,930,-9,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,-10,0,830,-5,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-8,0,1435,-17,0,0 +2013,6,22,6,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,603,-4,0,1000,-12,0,0 +2013,9,20,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,545,-8,0,738,-5,0,0 +2013,9,23,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2020,-10,0,2145,-1,0,0 +2013,9,9,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,32,1,1305,23,1,0 +2013,7,18,4,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-2,0,1339,35,1,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1725,-4,0,2005,-21,0,0 +2013,10,5,6,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,810,-1,0,1110,-32,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,-5,0,1925,-18,0,0 +2013,4,28,7,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,20,1,2230,11,0,0 +2013,8,11,7,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1345,30,1,1530,9,0,0 +2013,4,29,1,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,-1,0,2154,-14,0,0 +2013,5,10,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,5,0,1315,22,1,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1315,-8,0,1610,5,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1235,9,0,1715,8,0,0 +2013,5,14,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,950,1,0,1055,-11,0,0 +2013,4,4,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,16,1,2320,5,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1540,0,0,1747,-9,0,0 +2013,6,13,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-4,0,936,1,0,0 +2013,9,15,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,8,0,2245,-1,0,0 +2013,5,23,4,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2340,25,1,725,11,0,0 +2013,4,30,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,800,21,1,940,7,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1520,19,1,1615,18,1,0 +2013,8,4,7,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-7,0,1625,-9,0,0 +2013,4,24,3,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-11,0,1106,-14,0,0 +2013,9,26,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-2,0,2033,-9,0,0 +2013,10,4,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1320,12,0,1528,4,0,0 +2013,4,9,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1215,16,1,1315,18,1,0 +2013,7,2,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-5,0,1055,-2,0,0 +2013,5,24,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2149,28,1,143,0,0,0 +2013,5,24,5,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,36,1,1655,21,1,0 +2013,7,21,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,16,1,1620,3,0,0 +2013,5,28,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,840,-5,0,1034,-18,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1739,11,0,2020,30,1,0 +2013,10,16,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,918,4,0,1128,-4,0,0 +2013,5,23,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1205,4,0,1805,-5,0,0 +2013,10,29,2,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,835,-8,0,1120,-40,0,0 +2013,5,5,7,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1715,13,0,2235,14,0,0 +2013,9,5,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,900,-1,0,915,2,0,0 +2013,7,25,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1515,-10,0,1650,-11,0,0 +2013,9,17,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1845,46,1,2005,45,1,0 +2013,4,8,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1020,22,1,1625,-2,0,0 +2013,7,21,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,-4,0,1845,-17,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1415,11,0,1655,-5,0,0 +2013,6,26,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,824,-13,0,0 +2013,10,8,2,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,750,-8,0,1024,-22,0,0 +2013,9,11,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-3,0,745,-18,0,0 +2013,4,22,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2015,-8,0,2032,-17,0,0 +2013,7,21,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1321,30,1,1409,33,1,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1830,-4,0,1921,-6,0,0 +2013,10,30,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1410,-11,0,1651,-8,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-9,0,940,-14,0,0 +2013,6,25,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1117,-2,0,1630,-20,0,0 +2013,6,15,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,41,1,2220,25,1,0 +2013,5,1,3,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-6,0,626,-9,0,0 +2013,9,18,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2235,-3,0,5,-24,0,0 +2013,9,28,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-12,0,1029,-15,0,0 +2013,7,26,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,48,1,2108,42,1,0 +2013,10,9,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,5,0,1445,3,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,-4,0,1235,-3,0,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,944,18,1,1302,68,1,0 +2013,7,29,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1027,0,,1359,0,1,1 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1630,10,0,1802,-21,0,0 +2013,8,27,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,-1,0,1620,-3,0,0 +2013,6,19,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1005,-1,0,1155,-19,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1220,95,1,1730,90,1,0 +2013,10,2,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1845,24,1,2010,21,1,0 +2013,8,15,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,20,1,2140,25,1,0 +2013,5,25,6,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,53,1,1630,42,1,0 +2013,10,3,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1445,-3,0,1524,-3,0,0 +2013,8,19,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,1,0,706,11,0,0 +2013,6,16,7,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,700,-2,0,905,-12,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,734,0,0,1009,-21,0,0 +2013,4,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1136,15,1,0 +2013,7,1,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,30,1,1501,51,1,0 +2013,8,18,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1740,246,1,1850,244,1,0 +2013,10,23,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,1035,-15,0,0 +2013,5,1,3,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,-10,0,1117,2,0,0 +2013,10,8,2,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1758,4,0,2000,-5,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,-1,0,1155,-9,0,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1300,-7,0,1455,-5,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,40,1,1310,30,1,0 +2013,8,23,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1234,-3,0,1830,-20,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1725,-1,0,1840,-26,0,0 +2013,8,1,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1145,-5,0,1240,-16,0,0 +2013,10,25,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1334,-9,0,1454,-19,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-6,0,1342,-11,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2025,10,0,2125,3,0,0 +2013,7,23,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2300,106,1,704,89,1,0 +2013,6,29,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,2031,14,0,2140,10,0,0 +2013,7,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1325,10,0,1435,12,0,0 +2013,7,15,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,11,0,1635,3,0,0 +2013,5,31,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1115,-1,0,1354,-18,0,0 +2013,4,26,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,9,0,2325,1,0,0 +2013,9,14,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,705,-8,0,1018,-18,0,0 +2013,9,13,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1013,-3,0,1128,-10,0,0 +2013,8,7,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,69,1,2050,56,1,0 +2013,6,18,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1220,-2,0,1353,-7,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,929,-5,0,1120,11,0,0 +2013,8,26,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,635,-4,0,745,-9,0,0 +2013,7,14,7,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1003,12,0,1450,33,1,0 +2013,7,4,4,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,907,2,0,1200,8,0,0 +2013,4,1,1,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,-11,0,2125,-25,0,0 +2013,9,7,6,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,-5,0,1545,-12,0,0 +2013,5,28,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,645,3,0,1000,5,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1120,16,1,1410,16,1,0 +2013,9,1,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,-2,0,1845,-12,0,0 +2013,4,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,955,15,1,1100,12,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,-3,0,1813,-15,0,0 +2013,10,11,5,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,622,-6,0,1039,2,0,0 +2013,6,7,5,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1900,51,1,2035,36,1,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,4,0,1300,5,0,0 +2013,10,5,6,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,-3,0,1011,-12,0,0 +2013,8,12,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,42,1,1615,33,1,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,-6,0,2250,3,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1830,-5,0,2153,-21,0,0 +2013,6,14,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-1,0,953,-8,0,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1248,91,1,2118,135,1,0 +2013,10,24,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1145,-22,0,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1935,-4,0,50,-9,0,0 +2013,8,15,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1425,1,0,1535,-4,0,0 +2013,8,15,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,17,1,1839,-8,0,0 +2013,5,26,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1731,104,1,1831,90,1,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1615,-4,0,1707,-7,0,0 +2013,10,10,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1856,10,0,2152,-12,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1035,-4,0,1215,-13,0,0 +2013,8,18,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,4,0,1924,-8,0,0 +2013,10,21,1,US,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1106,0,0,1229,-1,0,0 +2013,6,29,6,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1700,7,0,1931,-6,0,0 +2013,9,13,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1052,-9,0,1452,-21,0,0 +2013,4,2,2,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1050,21,1,1335,13,0,0 +2013,5,6,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1345,-5,0,1709,-14,0,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1315,0,0,1440,-3,0,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,6,0,1650,-10,0,0 +2013,8,25,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2010,10,0,2156,0,0,0 +2013,5,9,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-2,0,1356,64,1,0 +2013,7,21,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,26,1,1900,18,1,0 +2013,9,23,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,603,-7,0,624,-18,0,0 +2013,6,10,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1305,3,0,1455,-2,0,0 +2013,4,3,3,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1431,24,1,2005,15,1,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,0,0,1510,-14,0,0 +2013,8,16,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,857,106,1,1025,104,1,0 +2013,10,27,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1915,-2,0,2247,-9,0,0 +2013,8,15,4,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-4,0,1535,-5,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,8,0,1831,10,0,0 +2013,6,26,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,814,-1,0,1025,-10,0,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,850,-1,0,1010,-21,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1515,-1,0,1726,-18,0,0 +2013,5,3,5,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-10,0,803,-15,0,0 +2013,10,6,7,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-3,0,1755,27,1,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,-2,0,1717,0,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,805,-6,0,0 +2013,8,13,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,-4,0,2108,-7,0,0 +2013,4,29,1,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1345,-5,0,1622,-16,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,954,-4,0,1117,-2,0,0 +2013,6,24,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2100,228,1,2220,215,1,0 +2013,8,8,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,83,1,1733,99,1,0 +2013,6,22,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,-2,0,1304,1,0,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,0,0,1126,-7,0,0 +2013,5,28,2,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-1,0,1409,-4,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1801,4,0,2232,-24,0,0 +2013,5,21,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-3,0,1744,-4,0,0 +2013,7,17,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1719,-2,0,1823,55,1,0 +2013,8,25,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1025,-4,0,1301,3,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,627,0,0,723,-2,0,0 +2013,4,14,7,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,554,16,1,739,10,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2145,10,0,2302,3,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,8,0,2334,5,0,0 +2013,10,19,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1050,-1,0,1155,12,0,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-4,0,1233,37,1,0 +2013,5,7,2,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1410,-10,0,1650,-18,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1719,-4,0,1829,-10,0,0 +2013,5,1,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1555,-14,0,1849,-17,0,0 +2013,9,2,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-1,0,1010,-7,0,0 +2013,7,3,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-6,0,2110,-21,0,0 +2013,10,9,3,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,0,0,1145,-5,0,0 +2013,8,8,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1705,47,1,1842,59,1,0 +2013,8,5,1,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-4,0,1355,-6,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,917,-2,0,1156,-12,0,0 +2013,8,13,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1225,86,1,1504,79,1,0 +2013,4,16,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1605,-5,0,1903,-8,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1520,6,0,1720,6,0,0 +2013,9,26,4,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,800,-3,0,915,1,0,0 +2013,6,19,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-2,0,1227,-5,0,0 +2013,9,18,3,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1310,-9,0,1508,-38,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1255,-4,0,1610,8,0,0 +2013,7,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,4,0,1921,83,1,0 +2013,6,6,4,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1225,-8,0,2055,7,0,0 +2013,4,23,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-4,0,2326,-1,0,0 +2013,8,27,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1545,-1,0,1651,-10,0,0 +2013,5,25,6,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1245,9,0,1605,-9,0,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,75,1,2250,73,1,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,605,21,1,914,18,1,0 +2013,4,24,3,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1902,0,0,2158,-8,0,0 +2013,9,16,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1825,0,0,1952,-1,0,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1703,-2,0,1734,-13,0,0 +2013,6,30,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-7,0,1458,-7,0,0 +2013,8,15,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14057,Portland International,Portland,OR,1811,-6,0,2018,-43,0,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,0,,2220,0,1,1 +2013,9,12,4,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-3,0,925,-2,0,0 +2013,10,17,4,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,1220,14,0,1444,11,0,0 +2013,5,26,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1510,-12,0,1920,-24,0,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2016,71,1,2132,57,1,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1750,34,1,2010,24,1,0 +2013,6,2,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-2,0,1704,-3,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1340,73,1,1544,77,1,0 +2013,9,25,3,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2003,20,1,502,10,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1600,-3,0,1705,4,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,956,-1,0,1154,-10,0,0 +2013,8,1,4,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,820,3,0,1005,5,0,0 +2013,4,8,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-9,0,1016,-10,0,0 +2013,8,26,1,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,0,0,840,-10,0,0 +2013,9,30,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,26,1,2030,20,1,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,17,1,2110,15,1,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1411,4,0,1702,7,0,0 +2013,7,18,4,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,56,1,1935,64,1,0 +2013,4,8,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1025,0,0,1135,-2,0,0 +2013,10,17,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1520,-1,0,1725,10,0,0 +2013,4,19,5,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,600,-1,0,825,-14,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1615,4,0,1720,-1,0,0 +2013,5,20,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-4,0,1408,-14,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,855,-6,0,1005,-11,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,945,-4,0,1105,-11,0,0 +2013,8,11,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1330,18,1,1530,22,1,0 +2013,10,8,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-5,0,2109,-9,0,0 +2013,6,27,4,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,1,0,1004,10,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1957,-1,0,2128,-17,0,0 +2013,9,21,6,OO,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1151,57,1,1612,47,1,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1241,0,0,1357,-19,0,0 +2013,8,19,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-3,0,1345,-20,0,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1730,55,1,2050,44,1,0 +2013,10,26,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1230,11,0,0 +2013,8,2,5,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,-8,0,1119,-25,0,0 +2013,9,14,6,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1500,-6,0,1723,-28,0,0 +2013,4,15,1,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,745,-1,0,1100,-28,0,0 +2013,6,6,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1412,-2,0,1649,-16,0,0 +2013,10,10,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1600,35,1,1930,19,1,0 +2013,7,24,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,188,1,2128,187,1,0 +2013,6,27,4,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,458,1,2018,446,1,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1835,8,0,2235,10,0,0 +2013,9,12,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2115,47,1,2328,44,1,0 +2013,9,20,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,6,0,1854,40,1,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,910,5,0,1130,10,0,0 +2013,8,16,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-9,0,2042,6,0,0 +2013,8,5,1,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,715,-15,0,0 +2013,7,8,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-8,0,621,-16,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-3,0,2343,-9,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,-3,0,2002,-5,0,0 +2013,6,8,6,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1230,5,0,1635,-10,0,0 +2013,5,31,5,9E,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1625,-1,0,1856,-20,0,0 +2013,7,17,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-5,0,810,0,0,0 +2013,8,25,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,5,0,1200,8,0,0 +2013,7,11,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-8,0,1618,-13,0,0 +2013,8,22,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,825,-4,0,850,-9,0,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,850,-4,0,1123,-15,0,0 +2013,9,4,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-3,0,1223,4,0,0 +2013,4,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1506,-5,0,1632,-7,0,0 +2013,4,8,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,930,-12,0,0 +2013,4,19,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1920,0,,2229,0,1,1 +2013,10,12,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1132,24,1,1359,3,0,0 +2013,5,4,6,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1705,8,0,1830,2,0,0 +2013,5,8,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,953,-8,0,1216,-24,0,0 +2013,5,28,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,29,1,2011,18,1,0 +2013,10,14,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,16,1,1930,12,0,0 +2013,10,3,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1635,-4,0,1924,-9,0,0 +2013,5,29,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1726,42,1,1916,30,1,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2100,2,0,2341,7,0,0 +2013,7,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1308,4,0,1435,3,0,0 +2013,7,30,2,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-3,0,920,3,0,0 +2013,7,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,723,-8,0,923,-17,0,0 +2013,7,3,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,0,0,1410,2,0,0 +2013,9,9,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,2,0,1655,-9,0,0 +2013,6,18,2,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-8,0,1307,-24,0,0 +2013,10,27,7,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,953,-10,0,1133,-16,0,0 +2013,10,16,3,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-8,0,1819,-21,0,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-2,0,1130,1,0,0 +2013,6,13,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,705,-1,0,810,25,1,0 +2013,8,31,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,844,-13,0,0 +2013,5,10,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1230,-5,0,1605,-14,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2206,78,1,2343,79,1,0 +2013,5,31,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1910,-10,0,2040,-16,0,0 +2013,7,4,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1906,5,0,2032,-13,0,0 +2013,10,2,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1250,-4,0,1545,-1,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1803,-1,0,1948,-33,0,0 +2013,5,12,7,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-6,0,1355,-11,0,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1121,-4,0,1244,-20,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,-2,0,2119,-3,0,0 +2013,9,5,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1945,-2,0,2040,-9,0,0 +2013,8,2,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1530,-5,0,1759,-5,0,0 +2013,8,7,3,OO,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1232,-1,0,1606,7,0,0 +2013,6,29,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1205,4,0,1353,-10,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1630,56,1,1740,57,1,0 +2013,8,11,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,65,1,2058,55,1,0 +2013,9,2,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1925,67,1,2045,67,1,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1629,34,1,1750,20,1,0 +2013,6,23,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,2,0,1140,-6,0,0 +2013,7,5,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,-3,0,920,-3,0,0 +2013,9,19,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,-5,0,2228,-15,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2114,13,0,2345,6,0,0 +2013,9,26,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2100,60,1,2215,55,1,0 +2013,8,13,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1135,36,1,1230,28,1,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1220,1,0,1530,-6,0,0 +2013,8,19,1,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1210,-4,0,1545,-23,0,0 +2013,5,18,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-7,0,625,-11,0,0 +2013,10,30,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,805,-4,0,1510,-21,0,0 +2013,7,14,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1049,65,1,1205,52,1,0 +2013,5,3,5,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1205,257,1,1820,248,1,0 +2013,6,12,3,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1515,-3,0,1736,5,0,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1055,26,1,1205,19,1,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,817,2,0,959,-7,0,0 +2013,8,6,2,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1345,45,1,1640,50,1,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1810,-3,0,1925,-8,0,0 +2013,10,14,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-4,0,2005,-8,0,0 +2013,9,29,7,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-1,0,1221,-3,0,0 +2013,10,3,4,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1425,-7,0,1606,-9,0,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1848,-4,0,1948,-5,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2015,79,1,2315,94,1,0 +2013,9,4,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1658,-7,0,1755,-13,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2105,1,0,2215,4,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,-4,0,1235,-11,0,0 +2013,10,29,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,9,0,2155,9,0,0 +2013,4,6,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-2,0,1215,6,0,0 +2013,8,18,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,855,-2,0,1038,-4,0,0 +2013,4,28,7,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1800,34,1,1955,24,1,0 +2013,8,6,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-1,0,1905,-19,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1600,113,1,2030,101,1,0 +2013,4,20,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-7,0,1655,4,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2145,46,1,2328,29,1,0 +2013,6,3,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1945,-10,0,2202,-5,0,0 +2013,7,26,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,0,0,1251,-12,0,0 +2013,10,27,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1252,-5,0,1814,-19,0,0 +2013,10,7,1,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,722,-8,0,1016,-11,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1035,-3,0,1201,-10,0,0 +2013,7,2,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-1,0,930,6,0,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1625,85,1,57,63,1,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2120,1,0,20,10,0,0 +2013,5,30,4,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1600,-4,0,1930,-12,0,0 +2013,6,2,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1730,50,1,2029,65,1,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-3,0,2015,-2,0,0 +2013,8,28,3,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1920,-6,0,2105,-17,0,0 +2013,5,24,5,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1855,22,1,1955,50,1,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,2,0,1700,-19,0,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1644,-4,0,1945,12,0,0 +2013,4,20,6,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1220,-6,0,1306,4,0,0 +2013,8,13,2,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,-6,0,1125,-2,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-1,0,1030,-10,0,0 +2013,9,25,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,0,0,1755,-8,0,0 +2013,8,31,6,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,653,-2,0,929,-6,0,0 +2013,8,22,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,22,1,2220,18,1,0 +2013,10,17,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,32,1,2344,22,1,0 +2013,9,28,6,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,750,-1,0,1120,9,0,0 +2013,4,24,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,3,0,2305,3,0,0 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,5,0,1534,14,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,22,1,1200,22,1,0 +2013,10,30,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1600,-2,0,1628,-1,0,0 +2013,9,23,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,1,0,948,3,0,0 +2013,8,19,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2100,7,0,2220,13,0,0 +2013,6,24,1,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1335,5,0,1929,23,1,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,25,1,2247,25,1,0 +2013,5,2,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1249,-1,0,1355,-7,0,0 +2013,9,13,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,835,5,0,1126,6,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,935,-2,0,1114,-3,0,0 +2013,8,28,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-2,0,1947,-10,0,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,11,0,2200,-2,0,0 +2013,10,2,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-9,0,2101,-13,0,0 +2013,9,30,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1934,0,0,2149,-20,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1320,21,1,1610,10,0,0 +2013,6,2,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,22,1,1845,20,1,0 +2013,7,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1940,-6,0,2157,-10,0,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1742,-2,0,1850,-12,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2115,36,1,2230,32,1,0 +2013,10,27,7,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,845,-3,0,1040,1,0,0 +2013,7,29,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,120,1,1310,112,1,0 +2013,10,30,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1330,-7,0,1435,-18,0,0 +2013,7,6,6,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1830,62,1,2049,9,0,0 +2013,9,18,3,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1329,2,0,1655,8,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1605,0,0,1900,-11,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1350,-1,0,1718,0,0,0 +2013,9,23,1,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1823,2,0,0 +2013,8,30,5,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,650,-3,0,917,-13,0,0 +2013,7,13,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1205,-5,0,1325,-2,0,0 +2013,4,20,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,940,17,1,1224,18,1,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,44,1,1655,40,1,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1710,20,1,2025,8,0,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,943,-2,0,1140,-12,0,0 +2013,5,17,5,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,29,1,903,-4,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,0,0,830,-12,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-1,0,1901,3,0,0 +2013,9,11,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,655,-6,0,845,-19,0,0 +2013,8,19,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1315,8,0,1616,1,0,0 +2013,9,7,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1125,4,0,1335,-13,0,0 +2013,4,22,1,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,645,-2,0,1505,14,0,0 +2013,9,20,5,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1954,76,1,2109,65,1,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1659,13,0,1932,3,0,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1115,8,0,1650,47,1,0 +2013,10,17,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,0,0,705,9,0,0 +2013,8,31,6,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1512,14,0,1706,2,0,0 +2013,9,6,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,700,-2,0,1056,-1,0,0 +2013,10,6,7,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-4,0,2033,-8,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,10,0,1140,5,0,0 +2013,8,5,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-8,0,1915,-17,0,0 +2013,6,7,5,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-8,0,628,5,0,0 +2013,4,17,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,2,0,1445,-10,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-3,0,1036,-6,0,0 +2013,8,14,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,931,-5,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,6,0,1905,6,0,0 +2013,10,3,4,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-7,0,1921,-11,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1035,-4,0,1235,13,0,0 +2013,10,2,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1940,-1,0,2040,-4,0,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,4,0,2045,-5,0,0 +2013,9,30,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,10,0,1505,-13,0,0 +2013,8,21,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-7,0,1220,-5,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,18,1,1505,18,1,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,21,1,2115,15,1,0 +2013,7,5,5,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2129,-7,0,514,-14,0,0 +2013,6,4,2,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,745,-8,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,9,0,2025,-15,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1840,91,1,2335,81,1,0 +2013,10,30,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,-6,0,1351,-2,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,722,116,1,1559,121,1,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1648,-8,0,2128,-19,0,0 +2013,5,5,7,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,805,-3,0,1027,-17,0,0 +2013,5,6,1,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1911,6,0,2136,8,0,0 +2013,4,14,7,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1155,-3,0,1430,-4,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,8,0,1633,-5,0,0 +2013,8,23,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1059,-3,0,1439,-12,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2345,2,0,813,6,0,0 +2013,5,29,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,0,0,1014,4,0,0 +2013,7,31,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,-1,0,1459,0,0,0 +2013,10,8,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1559,-7,0,1719,2,0,0 +2013,5,23,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1050,17,1,1215,14,0,0 +2013,9,27,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,-3,0,1943,-2,0,0 +2013,9,16,1,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1515,-3,0,1935,11,0,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,900,-9,0,0 +2013,6,7,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1915,57,1,2205,47,1,0 +2013,5,31,5,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-10,0,1350,-30,0,0 +2013,4,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1110,33,1,1210,43,1,0 +2013,7,16,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1032,-5,0,1336,-4,0,0 +2013,10,25,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,12,0,1928,14,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1926,10,0,2210,-15,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,747,-4,0,1054,-5,0,0 +2013,9,3,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1114,-3,0,1239,-18,0,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-2,0,1525,-8,0,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1922,1,0,117,-21,0,0 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1005,3,0,1150,0,0,0 +2013,7,29,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-8,0,2300,-12,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1129,-2,0,1346,-21,0,0 +2013,6,28,5,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-2,0,1530,17,1,0 +2013,6,4,2,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1318,0,0,2101,-6,0,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,744,-5,0,908,-9,0,0 +2013,7,19,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,-3,0,1758,-4,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2040,42,1,2340,24,1,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,0,0,1515,-5,0,0 +2013,9,30,1,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1219,-7,0,1709,-12,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1155,33,1,1300,37,1,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1730,27,1,2315,46,1,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,-5,0,2215,-25,0,0 +2013,5,30,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-9,0,700,-4,0,0 +2013,6,25,2,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1735,66,1,2030,90,1,0 +2013,4,18,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1320,0,0,2059,-12,0,0 +2013,8,21,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,854,-7,0,0 +2013,7,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1830,-5,0,2110,-7,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,4,0,1505,3,0,0 +2013,6,14,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,59,2,0,630,-12,0,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1445,1,0,1726,-21,0,0 +2013,4,11,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,30,1,1906,22,1,0 +2013,9,17,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2045,12,0,2150,9,0,0 +2013,5,4,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,-1,0,941,-4,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-10,0,645,-10,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1750,-3,0,1934,-10,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,20,1,1745,45,1,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,2,0,828,0,0,0 +2013,10,5,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-8,0,1119,-9,0,0 +2013,7,29,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2045,-11,0,2150,-12,0,0 +2013,10,20,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1908,0,0,2211,-11,0,0 +2013,9,24,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,-2,0,1231,-5,0,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,17,1,2125,6,0,0 +2013,5,5,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1045,5,0,1255,0,0,0 +2013,5,11,6,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,1025,22,1,1245,32,1,0 +2013,7,18,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,129,1,2135,123,1,0 +2013,9,19,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,520,0,0,607,1,0,0 +2013,7,6,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,900,-2,0,1002,-20,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2005,8,0,2235,4,0,0 +2013,9,1,7,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1500,3,0,1725,1,0,0 +2013,8,29,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1738,-4,0,2111,3,0,0 +2013,5,24,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-6,0,1600,-15,0,0 +2013,10,12,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1930,-8,0,2238,-14,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1630,-1,0,1827,-16,0,0 +2013,7,18,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,1,0,1450,-5,0,0 +2013,8,4,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-1,0,1010,-6,0,0 +2013,5,26,7,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-5,0,2015,-21,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,-2,0,2004,-13,0,0 +2013,9,22,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,755,-18,0,0 +2013,5,4,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1755,-10,0,2120,-29,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1315,6,0,1615,11,0,0 +2013,7,3,3,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,19,1,2020,4,0,0 +2013,10,11,5,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1826,-6,0,2018,-30,0,0 +2013,4,20,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1059,0,0,1225,-2,0,0 +2013,6,28,5,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,811,2,0,927,7,0,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,24,1,1305,21,1,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-4,0,1102,-32,0,0 +2013,4,23,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1325,1,0,1622,-10,0,0 +2013,6,2,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1653,62,1,1745,57,1,0 +2013,5,28,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1850,2,0,1920,-11,0,0 +2013,7,25,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-10,0,1128,-25,0,0 +2013,6,14,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,0,0,1507,-16,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,47,1,1758,34,1,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,730,22,1,830,21,1,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-3,0,840,1,0,0 +2013,10,27,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,730,-6,0,845,-16,0,0 +2013,9,16,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1845,8,0,2010,0,0,0 +2013,10,18,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-5,0,1550,-19,0,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,945,-1,0,1755,-6,0,0 +2013,4,17,3,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-1,0,1011,-17,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,810,-2,0,925,-6,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,-1,0,1045,-25,0,0 +2013,6,1,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,1110,-16,0,0 +2013,9,5,4,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1150,-2,0,1245,-25,0,0 +2013,9,6,5,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2103,-7,0,2346,-17,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1945,20,1,2205,35,1,0 +2013,10,5,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-9,0,1525,-15,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,825,-3,0,1400,-21,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,700,0,0,850,-7,0,0 +2013,6,27,4,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,830,3,0,920,2,0,0 +2013,9,12,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,10,0,617,4,0,0 +2013,8,21,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1000,-2,0,1100,-5,0,0 +2013,4,28,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,910,-7,0,1516,-14,0,0 +2013,5,18,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1740,-7,0,1805,-22,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,610,-1,0,838,-13,0,0 +2013,5,10,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1110,-10,0,1938,20,1,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1435,0,0,1614,-33,0,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,835,-5,0,1012,-15,0,0 +2013,9,21,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,550,-3,0,700,3,0,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1340,-1,0,1639,25,1,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1235,-2,0,1358,-5,0,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1115,-4,0,1458,-14,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,810,-5,0,1230,0,0,0 +2013,5,17,5,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1722,-5,0,1858,-11,0,0 +2013,7,28,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1930,299,1,2224,286,1,0 +2013,5,11,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,0,0,1555,-5,0,0 +2013,6,5,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-7,0,1112,-13,0,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,10,0,1126,24,1,0 +2013,4,27,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-5,0,1316,-13,0,0 +2013,6,4,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-5,0,1124,-13,0,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1010,59,1,1230,95,1,0 +2013,8,12,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,8,0,1731,10,0,0 +2013,5,26,7,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1425,-2,0,1630,-19,0,0 +2013,10,18,5,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,925,-3,0,1800,-3,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,6,0,1245,-8,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,12,0,2148,45,1,0 +2013,6,29,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,62,1,2055,58,1,0 +2013,10,23,3,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,-5,0,1920,-8,0,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,-6,0,1708,-24,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1810,-6,0,1943,18,1,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-4,0,2032,-10,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,826,-1,0,913,-17,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1312,-13,0,0 +2013,5,4,6,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1639,6,0,1850,26,1,0 +2013,5,28,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1550,29,1,1748,47,1,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1246,31,1,1456,36,1,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,955,9,0,1153,11,0,0 +2013,4,1,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,620,3,0,925,-20,0,0 +2013,10,10,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1106,5,0,1235,14,0,0 +2013,10,19,6,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1205,-4,0,2040,-35,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1020,-2,0,1122,-10,0,0 +2013,5,6,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2155,-6,0,2315,-19,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-1,0,1117,3,0,0 +2013,4,13,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-10,0,1253,-8,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1433,2,0,1525,3,0,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,141,1,1859,133,1,0 +2013,4,7,7,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,845,-3,0,1001,-9,0,0 +2013,9,29,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1730,-2,0,1858,-10,0,0 +2013,7,28,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2010,-8,0,2039,-17,0,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2210,57,1,2330,88,1,0 +2013,6,6,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1113,15,1,1242,12,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1935,-2,0,2215,-20,0,0 +2013,10,21,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,-8,0,910,-21,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,3,0,1150,9,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2259,17,1,107,5,0,0 +2013,6,11,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,14,0,1824,7,0,0 +2013,5,24,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,715,-4,0,0 +2013,9,14,6,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1955,12,0,2110,14,0,0 +2013,6,13,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,87,1,1709,92,1,0 +2013,10,31,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1725,3,0,1928,2,0,0 +2013,4,30,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1005,-4,0,1125,-13,0,0 +2013,7,11,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-5,0,2126,-2,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,-3,0,1205,-9,0,0 +2013,7,22,1,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,739,2,0,1035,3,0,0 +2013,8,15,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,1,0,1245,1,0,0 +2013,4,26,5,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1135,1,0,1320,-7,0,0 +2013,6,14,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,5,0,1229,10,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,855,1,0,1005,-3,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,935,0,0,1440,-8,0,0 +2013,6,5,3,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,813,-3,0,1054,-18,0,0 +2013,4,13,6,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,610,-6,0,730,-10,0,0 +2013,4,2,2,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1915,120,1,2015,114,1,0 +2013,8,3,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1856,16,1,1953,16,1,0 +2013,8,6,2,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-2,0,945,-11,0,0 +2013,4,23,2,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1334,-6,0,1542,-15,0,0 +2013,10,17,4,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-5,0,543,-22,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-3,0,2238,-16,0,0 +2013,4,1,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,94,1,1750,115,1,0 +2013,9,20,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,845,-2,0,1005,25,1,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,32,1,1831,18,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,15,1,1540,5,0,0 +2013,5,24,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,100,1,2126,148,1,0 +2013,4,11,4,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1451,29,1,1700,46,1,0 +2013,10,8,2,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,6,0,1040,0,0,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1044,1,0,1230,-2,0,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-7,0,1844,-3,0,0 +2013,10,5,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1005,-15,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,931,-2,0,1257,2,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1055,13,0,1301,4,0,0 +2013,10,27,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,9,0,715,3,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1515,0,0,1804,-23,0,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1345,2,0,1545,-1,0,0 +2013,10,18,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,940,8,0,1055,0,0,0 +2013,4,3,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,6,0,715,7,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,830,3,0,1020,-1,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1355,-3,0,1500,-13,0,0 +2013,10,10,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1840,8,0,1940,0,0,0 +2013,8,26,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-3,0,1053,-6,0,0 +2013,7,24,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1855,-3,0,1920,-19,0,0 +2013,7,2,2,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-2,0,934,-11,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,-1,0,1555,-11,0,0 +2013,10,10,4,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1830,-2,0,2051,5,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,-5,0,745,-19,0,0 +2013,9,23,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,-1,0,1653,-19,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,930,-3,0,1211,-39,0,0 +2013,6,18,2,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-8,0,841,-11,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1055,42,1,1230,26,1,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,730,-4,0,1035,-24,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,-3,0,2147,-15,0,0 +2013,7,25,4,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,1420,-8,0,1721,-12,0,0 +2013,9,21,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1235,9,0,1331,4,0,0 +2013,8,12,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1124,0,0,1430,-7,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,815,-4,0,1006,-13,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1706,23,1,1848,15,1,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,-7,0,810,-9,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-6,0,1310,-8,0,0 +2013,6,9,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,757,-20,0,0 +2013,5,4,6,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,1000,-8,0,1223,-13,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2110,-3,0,2251,-3,0,0 +2013,7,7,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,6,0,2050,9,0,0 +2013,4,20,6,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1215,0,0,1655,-7,0,0 +2013,6,20,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-13,0,1917,-19,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,-1,0,2114,-20,0,0 +2013,6,19,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-8,0,1934,-19,0,0 +2013,5,26,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,-6,0,2300,-17,0,0 +2013,5,10,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1403,-8,0,1530,-15,0,0 +2013,8,28,3,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-5,0,2000,-17,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2147,10,0,2303,-2,0,0 +2013,5,13,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1310,74,1,1358,70,1,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1835,-3,0,2057,-13,0,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1749,0,0,1911,-16,0,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2110,63,1,2258,49,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1745,158,1,1850,163,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1105,0,0,1430,-3,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1422,-1,0,1555,-8,0,0 +2013,10,8,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,-7,0,1750,15,1,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,8,0,1445,2,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1119,12,0,1254,10,0,0 +2013,6,28,5,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1330,-2,0,1444,-19,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1100,0,0,1229,-15,0,0 +2013,6,24,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,1,0,1435,12,0,0 +2013,5,16,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1948,84,1,2335,68,1,0 +2013,4,3,3,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,915,-7,0,1155,8,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1021,-4,0,1306,8,0,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,-2,0,2337,-16,0,0 +2013,8,9,5,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-11,0,2359,-16,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1755,45,1,2055,47,1,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1155,-4,0,1438,-11,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,37,1,1001,60,1,0 +2013,10,24,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1630,-8,0,1730,0,0,0 +2013,4,5,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1430,2,0,1450,-3,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,845,-13,0,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,70,1,2106,34,1,0 +2013,5,11,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1800,71,1,2115,57,1,0 +2013,10,2,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,825,-2,0,1053,-12,0,0 +2013,7,7,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,1,0,1348,-2,0,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,-2,0,1831,-13,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,-3,0,1235,-4,0,0 +2013,10,11,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1935,12,0,2010,5,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2255,-3,0,5,-22,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,-7,0,1720,8,0,0 +2013,4,10,3,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1958,274,1,2244,277,1,0 +2013,5,29,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-5,0,1625,1,0,0 +2013,9,22,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,645,-4,0,1514,-29,0,0 +2013,4,12,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1830,16,1,1945,16,1,0 +2013,10,5,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1810,27,1,2005,17,1,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,41,1,2330,36,1,0 +2013,7,24,3,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,606,-5,0,751,7,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,-1,0,1820,27,1,0 +2013,7,6,6,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,1,0,1225,-18,0,0 +2013,8,10,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-2,0,739,6,0,0 +2013,4,22,1,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-5,0,818,-18,0,0 +2013,5,9,4,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-4,0,1549,-2,0,0 +2013,6,16,7,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1713,-5,0,2057,-8,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1745,87,1,1845,90,1,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,2029,13,0,2252,-6,0,0 +2013,8,29,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,18,1,1620,7,0,0 +2013,4,24,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,1,0,1440,-2,0,0 +2013,8,10,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2115,61,1,2245,60,1,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1800,-3,0,2023,-19,0,0 +2013,5,12,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1856,0,0,2140,45,1,0 +2013,10,29,2,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1841,-6,0,1943,-15,0,0 +2013,7,29,1,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-4,0,807,-7,0,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2100,83,1,2325,77,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,3,0,2030,-8,0,0 +2013,6,21,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1936,3,0,2230,71,1,0 +2013,4,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-7,0,1715,-10,0,0 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,640,-1,0,1115,-2,0,0 +2013,4,15,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,806,-2,0,940,-11,0,0 +2013,5,19,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,2,0,1817,-8,0,0 +2013,6,20,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,13,0,1831,9,0,0 +2013,7,13,6,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1909,-6,0,2204,-16,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,-7,0,2221,12,0,0 +2013,4,22,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,19,1,1801,20,1,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,4,0,1135,-1,0,0 +2013,5,12,7,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1525,13,0,1857,-8,0,0 +2013,7,22,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1110,27,1,1229,16,1,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1950,0,,2325,0,1,1 +2013,10,6,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-9,0,955,-6,0,0 +2013,7,17,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,710,-5,0,941,-2,0,0 +2013,5,14,2,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,-6,0,2315,-8,0,0 +2013,7,10,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1620,0,,1820,0,1,1 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1615,25,1,1907,56,1,0 +2013,8,27,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-4,0,1309,-3,0,0 +2013,5,7,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1745,12,0,1849,14,0,0 +2013,10,9,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,0,0,1525,-8,0,0 +2013,7,22,1,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-2,0,1505,-15,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,900,6,0,1042,25,1,0 +2013,7,4,4,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1325,22,1,1505,-1,0,0 +2013,7,29,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-2,0,2132,-2,0,0 +2013,5,16,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,604,-2,0,853,-33,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,10,0,930,4,0,0 +2013,5,5,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,815,-1,0,930,0,0,0 +2013,4,22,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,930,-3,0,1056,2,0,0 +2013,8,19,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,0,0,1914,16,1,0 +2013,9,14,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1940,-6,0,2306,-1,0,0 +2013,4,22,1,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,947,6,0,1225,-11,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,0,0,1355,-1,0,0 +2013,9,17,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-8,0,1414,-14,0,0 +2013,4,1,1,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1715,48,1,1810,59,1,0 +2013,7,21,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,185,1,850,185,1,0 +2013,5,1,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1319,43,1,1444,22,1,0 +2013,4,11,4,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1700,50,1,1835,42,1,0 +2013,5,17,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-5,0,836,-23,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1135,1,0,1500,-2,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-5,0,926,3,0,0 +2013,8,3,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,8,0,1306,3,0,0 +2013,5,21,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,718,-2,0,848,1,0,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,13,0,2305,9,0,0 +2013,7,5,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,645,-1,0,805,-7,0,0 +2013,6,18,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1752,2,0,1854,16,1,0 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,24,1,1515,26,1,0 +2013,7,7,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,16,1,1405,2,0,0 +2013,10,24,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1835,24,1,1950,30,1,0 +2013,6,7,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1220,63,1,1455,52,1,0 +2013,9,20,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,33,1,1705,25,1,0 +2013,7,5,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,758,-2,0,834,-2,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,830,51,1,1125,60,1,0 +2013,5,2,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1745,17,1,1905,7,0,0 +2013,8,4,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1725,27,1,2330,11,0,0 +2013,9,7,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-4,0,1547,-1,0,0 +2013,5,10,5,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,102,1,1805,97,1,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1205,9,0,1615,-5,0,0 +2013,9,13,5,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1239,-2,0,1730,-11,0,0 +2013,9,13,5,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,1,0,1634,2,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1310,0,0,1415,-15,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1750,2,0,2000,0,0,0 +2013,6,21,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,0,,2012,0,1,1 +2013,8,19,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,16,1,1334,38,1,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2125,-4,0,8,-5,0,0 +2013,6,14,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1210,-3,0,1450,6,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1420,-2,0,1619,-16,0,0 +2013,5,3,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,1408,-9,0,0 +2013,7,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1640,68,1,1850,64,1,0 +2013,7,13,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1030,-3,0,1335,20,1,0 +2013,10,22,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,900,0,0,1020,3,0,0 +2013,5,5,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1400,130,1,1414,125,1,0 +2013,9,5,4,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,625,16,1,818,2,0,0 +2013,8,7,3,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1303,42,1,1419,28,1,0 +2013,6,20,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,819,0,0,942,-14,0,0 +2013,7,8,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,48,1,1720,40,1,0 +2013,9,21,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1540,1,0,2110,-8,0,0 +2013,6,22,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-8,0,2125,-13,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,0,0,1601,7,0,0 +2013,8,14,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,27,1,1530,18,1,0 +2013,9,6,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,603,-8,0,816,-19,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1455,-4,0,1738,-17,0,0 +2013,6,23,7,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-9,0,1931,-16,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1459,5,0,1807,-4,0,0 +2013,5,11,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,6,0,1944,2,0,0 +2013,9,28,6,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1748,-6,0,2026,-12,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-7,0,905,-12,0,0 +2013,8,15,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,23,1,1405,19,1,0 +2013,10,23,3,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,920,90,1,1205,82,1,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1721,25,1,1919,101,1,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1835,6,0,1920,-4,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,1,0,2139,-9,0,0 +2013,5,27,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1114,-11,0,1349,-30,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1540,42,1,1800,43,1,0 +2013,10,10,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,-3,0,1758,-7,0,0 +2013,6,6,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1415,24,1,1705,37,1,0 +2013,5,18,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-5,0,1850,-36,0,0 +2013,6,1,6,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,5,0,1200,-8,0,0 +2013,5,23,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1333,0,0,1522,-1,0,0 +2013,7,29,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,19,1,2110,4,0,0 +2013,9,2,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,2,0,1558,4,0,0 +2013,9,3,2,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1733,8,0,2054,30,1,0 +2013,8,16,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2210,-6,0,2328,-31,0,0 +2013,6,10,1,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1016,-6,0,1315,-4,0,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,1,0,1944,-8,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,10,0,1145,10,0,0 +2013,6,23,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1521,-2,0,1628,-7,0,0 +2013,7,12,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1510,11,0,1800,19,1,0 +2013,9,20,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1300,-2,0,1614,-9,0,0 +2013,5,1,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1920,65,1,2230,72,1,0 +2013,9,23,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,1,0,1407,-14,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1500,0,,1630,0,1,1 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-1,0,1743,33,1,0 +2013,9,16,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1015,-1,0,1120,-4,0,0 +2013,4,23,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,811,7,0,925,-5,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,-6,0,1823,-10,0,0 +2013,7,11,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-6,0,1300,-11,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1230,2,0,1325,-8,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,213,1,1007,199,1,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1411,42,1,1702,22,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-5,0,1243,-4,0,0 +2013,7,20,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1150,-3,0,1846,-16,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-5,0,1809,-8,0,0 +2013,8,19,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2005,30,1,2115,21,1,0 +2013,5,9,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1436,59,1,1654,93,1,0 +2013,6,3,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1516,0,0,1645,-10,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-7,0,2334,15,1,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-2,0,2035,-8,0,0 +2013,5,22,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1909,27,1,2024,4,0,0 +2013,9,10,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1522,-2,0,1840,-16,0,0 +2013,6,1,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,-5,0,1140,-7,0,0 +2013,5,19,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2202,38,1,2359,23,1,0 +2013,8,27,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,-3,0,2005,1,0,0 +2013,7,9,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-6,0,1315,-11,0,0 +2013,5,25,6,9E,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-6,0,1436,-15,0,0 +2013,5,14,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,-1,0,1005,-6,0,0 +2013,8,16,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,-7,0,2340,-9,0,0 +2013,6,5,3,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1410,4,0,1750,12,0,0 +2013,10,2,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1455,26,1,1525,22,1,0 +2013,7,8,1,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1655,37,1,1950,31,1,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,6,0,1605,13,0,0 +2013,8,19,1,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,-4,0,1757,5,0,0 +2013,6,9,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-4,0,1345,-2,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,12,0,1800,8,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1909,-1,0,2235,-19,0,0 +2013,9,23,1,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1830,9,0,1905,13,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1815,37,1,2259,21,1,0 +2013,4,29,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,755,-7,0,855,-10,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-2,0,1016,-15,0,0 +2013,9,21,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,2005,3,0,2240,7,0,0 +2013,9,16,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1101,-1,0,1458,-10,0,0 +2013,5,26,7,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,828,2,0,1048,-7,0,0 +2013,6,23,7,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-5,0,2005,-17,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,-2,0,1740,-10,0,0 +2013,9,30,1,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,-1,0,1310,-17,0,0 +2013,9,9,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,822,-12,0,0 +2013,6,14,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,19,1,1612,15,1,0 +2013,10,25,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1104,0,0,1200,10,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2000,3,0,2217,-4,0,0 +2013,6,8,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1145,-7,0,1311,-24,0,0 +2013,10,25,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-4,0,1900,-17,0,0 +2013,9,2,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1523,-6,0,1725,-12,0,0 +2013,7,14,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-2,0,1550,-15,0,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1910,1,0,2105,10,0,0 +2013,8,13,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,0,0,839,-5,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,536,-4,0,806,-17,0,0 +2013,6,5,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,73,1,1408,102,1,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,0,0,1155,-6,0,0 +2013,10,24,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1505,-4,0,1614,2,0,0 +2013,5,13,1,9E,14524,Richmond International,Richmond,VA,12478,John F. Kennedy International,New York,NY,605,16,1,726,3,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1808,47,1,1933,24,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,845,-5,0,1150,-19,0,0 +2013,8,30,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1144,-1,0,1444,-6,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,818,2,0,1152,-6,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,171,1,1927,175,1,0 +2013,5,29,3,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2025,2,0,2105,-7,0,0 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1425,18,1,1545,11,0,0 +2013,8,9,5,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,852,121,1,1205,135,1,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1754,-7,0,2051,-31,0,0 +2013,7,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1855,-4,0,2135,-4,0,0 +2013,9,8,7,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1605,-15,0,1721,-19,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1041,-3,0,1155,1,0,0 +2013,8,20,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1030,14,0,1140,21,1,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1355,29,1,1622,46,1,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,-3,0,1013,9,0,0 +2013,4,29,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,650,-6,0,830,0,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1830,-1,0,2145,-9,0,0 +2013,4,17,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-6,0,1415,-25,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1400,0,0,1455,4,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1315,23,1,1625,3,0,0 +2013,7,17,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,-6,0,848,-8,0,0 +2013,8,20,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1110,-6,0,1320,-25,0,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,71,1,2320,65,1,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,-3,0,2253,0,0,0 +2013,8,11,7,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,0,0,1655,15,1,0 +2013,7,6,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,25,1,2022,13,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,735,0,0,1136,-14,0,0 +2013,9,17,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,845,-1,0,955,-10,0,0 +2013,5,30,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,125,1,2050,133,1,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1755,10,0,1925,-8,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,10,0,2303,-3,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-1,0,2320,14,0,0 +2013,10,25,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1625,-5,0,1800,-2,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,757,36,1,1302,23,1,0 +2013,10,22,2,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1850,-10,0,2200,-31,0,0 +2013,6,6,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-2,0,900,-19,0,0 +2013,6,10,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1015,-1,0,1025,-12,0,0 +2013,8,27,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,-3,0,1811,10,0,0 +2013,5,28,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,0,0,754,7,0,0 +2013,8,5,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1005,25,1,1152,23,1,0 +2013,6,28,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,0,,1320,0,1,1 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2025,0,,2130,0,1,1 +2013,4,17,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,17,1,1845,11,0,0 +2013,5,23,4,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2321,29,1,310,36,1,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,65,1,2025,65,1,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1915,27,1,35,19,1,0 +2013,7,13,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1400,-9,0,1511,-9,0,0 +2013,8,30,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,-5,0,2113,-7,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1610,30,1,1728,27,1,0 +2013,4,6,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1630,-5,0,1842,4,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,1117,-12,0,0 +2013,8,25,7,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,1,0,643,-5,0,0 +2013,8,4,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,805,-6,0,0 +2013,5,22,3,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,44,1,2058,17,1,0 +2013,5,4,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,715,-1,0,845,-9,0,0 +2013,10,28,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,740,9,0,1320,6,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,4,0,1715,-4,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-2,0,1336,-8,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2020,302,1,2105,305,1,0 +2013,8,21,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,24,1,1905,30,1,0 +2013,10,7,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,4,0,2045,9,0,0 +2013,9,14,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-10,0,1525,-1,0,0 +2013,4,1,1,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,645,-3,0,840,-12,0,0 +2013,4,17,3,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-3,0,1625,-41,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,12,0,1021,0,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1635,6,0,1755,0,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,9,0,1430,23,1,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,827,0,0,1122,-4,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2130,61,1,2315,46,1,0 +2013,4,11,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2245,33,1,8,34,1,0 +2013,6,16,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1502,-3,0,1755,-9,0,0 +2013,10,26,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1520,-10,0,1816,-30,0,0 +2013,8,29,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,-2,0,1100,-14,0,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,945,-6,0,1037,-13,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1912,-1,0,2032,-10,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2050,4,0,2308,13,0,0 +2013,9,20,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,16,1,2059,16,1,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1135,24,1,1420,11,0,0 +2013,6,5,3,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,650,-3,0,825,-13,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,928,-11,0,1131,-4,0,0 +2013,4,14,7,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,8,0,1720,-9,0,0 +2013,6,13,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1000,-2,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,2,0,1815,0,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-7,0,900,-23,0,0 +2013,5,15,3,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,840,-3,0,956,7,0,0 +2013,7,30,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-7,0,853,-7,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,940,9,0,1415,13,0,0 +2013,8,9,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1153,-9,0,0 +2013,10,26,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1511,-6,0,1624,-7,0,0 +2013,10,1,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1626,-1,0,1828,-24,0,0 +2013,9,3,2,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1317,-4,0,1448,-14,0,0 +2013,10,16,3,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-12,0,1402,-17,0,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-3,0,224,-16,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,1,0,2359,12,0,0 +2013,4,11,4,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1345,111,1,1649,118,1,0 +2013,5,17,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-4,0,812,-11,0,0 +2013,8,29,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1745,88,1,1930,87,1,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1408,-5,0,1922,30,1,0 +2013,5,2,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,10,0,1210,16,1,0 +2013,7,21,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,132,1,2215,110,1,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,-4,0,845,-9,0,0 +2013,5,15,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1720,16,1,1920,39,1,0 +2013,8,28,3,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,5,0,1955,-17,0,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,19,1,2111,4,0,0 +2013,4,16,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1330,-1,0,1347,15,1,0 +2013,6,11,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,-2,0,1718,3,0,0 +2013,8,16,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,913,-5,0,1430,-19,0,0 +2013,6,27,4,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1755,19,1,2030,6,0,0 +2013,9,21,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,715,-5,0,1015,16,1,0 +2013,10,16,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-4,0,1000,-4,0,0 +2013,5,15,3,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2218,-7,0,559,-18,0,0 +2013,8,1,4,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,625,-10,0,706,-18,0,0 +2013,10,31,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,725,3,0,1024,-4,0,0 +2013,10,4,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1845,-19,0,2101,-3,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,7,0,1555,3,0,0 +2013,5,17,5,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-11,0,1258,-10,0,0 +2013,10,4,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1351,4,0,1658,-3,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,43,1,2131,49,1,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1755,-3,0,1930,-29,0,0 +2013,9,13,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1200,29,1,1328,22,1,0 +2013,5,18,6,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-6,0,1530,-19,0,0 +2013,8,21,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,-4,0,1655,-12,0,0 +2013,5,31,5,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1655,19,1,1825,-8,0,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1327,57,1,1914,47,1,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1845,11,0,2030,7,0,0 +2013,8,10,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,9,0,1254,11,0,0 +2013,4,23,2,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,-10,0,2034,-4,0,0 +2013,8,13,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1449,101,1,1934,96,1,0 +2013,9,4,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,-2,0,2018,23,1,0 +2013,10,8,2,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1515,-6,0,1703,2,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1930,89,1,2214,58,1,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1455,2,0,1811,-1,0,0 +2013,5,31,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,630,-1,0,755,-3,0,0 +2013,7,25,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,16,1,1130,13,0,0 +2013,9,9,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1137,5,0,1344,13,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,2013,79,1,2140,120,1,0 +2013,10,22,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,1350,-4,0,0 +2013,10,5,6,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,21,1,1930,15,1,0 +2013,10,17,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1200,-3,0,1755,-11,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1320,-1,0,1435,28,1,0 +2013,6,6,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,555,-4,0,735,7,0,0 +2013,4,5,5,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,700,-3,0,941,-19,0,0 +2013,9,23,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1045,-5,0,1202,-5,0,0 +2013,7,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1809,-7,0,1955,-17,0,0 +2013,9,19,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,603,-6,0,816,14,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,925,6,0,1255,-6,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,0,0,926,12,0,0 +2013,5,3,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,0,0,1610,13,0,0 +2013,10,12,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-6,0,1217,-18,0,0 +2013,10,17,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,4,0,1642,0,0,0 +2013,7,22,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-2,0,1645,2,0,0 +2013,5,18,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1116,1,0,1208,-6,0,0 +2013,4,3,3,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1730,25,1,1850,22,1,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2320,-4,0,750,-33,0,0 +2013,4,22,1,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1830,2,0,2150,15,1,0 +2013,4,3,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,5,0,1051,-14,0,0 +2013,9,25,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,850,-6,0,1100,-18,0,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,63,1,1920,53,1,0 +2013,10,12,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,840,1,0,1013,2,0,0 +2013,9,29,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1949,0,0,2341,-20,0,0 +2013,9,25,3,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-1,0,2052,-3,0,0 +2013,6,6,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,1,0,1340,6,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1042,20,1,1545,6,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,755,-6,0,959,-17,0,0 +2013,5,30,4,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2159,-8,0,2311,-19,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,-1,0,1103,-8,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,19,1,1755,13,0,0 +2013,8,24,6,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1145,-2,0,1235,-10,0,0 +2013,5,27,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,542,2,0,808,11,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1020,7,0,1540,10,0,0 +2013,8,21,3,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,33,1,1910,13,0,0 +2013,6,22,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1540,-9,0,1833,-29,0,0 +2013,5,26,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1032,-2,0,1557,-13,0,0 +2013,4,17,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,0,0,1943,-3,0,0 +2013,8,5,1,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1113,19,1,1457,6,0,0 +2013,6,14,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,20,1,1635,25,1,0 +2013,6,23,7,OO,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2111,129,1,15,126,1,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,627,-5,0,723,-15,0,0 +2013,5,29,3,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,710,-1,0,915,-30,0,0 +2013,7,21,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1845,-2,0,2026,-6,0,0 +2013,5,7,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1544,28,1,2129,25,1,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1010,-2,0,1210,-12,0,0 +2013,4,7,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-4,0,755,-16,0,0 +2013,5,26,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1040,-1,0,1235,-4,0,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,841,-3,0,1033,-27,0,0 +2013,5,12,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,733,-6,0,900,-21,0,0 +2013,10,24,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1900,40,1,2025,45,1,0 +2013,10,12,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1830,21,1,2010,-18,0,0 +2013,5,19,7,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1725,98,1,2052,77,1,0 +2013,10,11,5,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,625,3,0,940,-7,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-4,0,1016,-25,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,855,2,0,1215,-14,0,0 +2013,4,22,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,17,1,2019,50,1,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1210,23,1,1358,14,0,0 +2013,6,13,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,5,0,1140,0,0,0 +2013,8,3,6,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2210,2,0,30,-17,0,0 +2013,6,1,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1038,-1,0,1835,-10,0,0 +2013,5,25,6,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1520,11,0,1845,-1,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,1523,1,0,0 +2013,4,28,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,720,19,1,935,-2,0,0 +2013,6,3,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-6,0,1508,9,0,0 +2013,4,17,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1053,-3,0,1315,-9,0,0 +2013,7,5,5,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1325,17,1,1455,12,0,0 +2013,4,22,1,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1255,211,1,1426,263,1,0 +2013,6,4,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,835,-4,0,1105,-9,0,0 +2013,8,22,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,85,1,1505,76,1,0 +2013,4,5,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,2015,-9,0,2154,-7,0,0 +2013,6,18,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1909,41,1,44,21,1,0 +2013,5,28,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-2,0,1011,-11,0,0 +2013,5,17,5,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,44,1,2100,37,1,0 +2013,8,20,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,930,0,0,1035,-8,0,0 +2013,10,6,7,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,13,0,2130,-8,0,0 +2013,6,13,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1518,23,1,1622,27,1,0 +2013,8,28,3,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1455,25,1,1720,16,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,62,1,1810,49,1,0 +2013,9,26,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,-2,0,2129,0,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,823,1,0,1112,-3,0,0 +2013,5,6,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,4,0,1400,2,0,0 +2013,7,3,3,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1738,77,1,1920,77,1,0 +2013,6,2,7,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-9,0,914,-8,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1925,49,1,2149,15,1,0 +2013,5,21,2,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1000,-1,0,1220,-8,0,0 +2013,7,7,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-6,0,1740,-9,0,0 +2013,4,17,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,9,0,1524,6,0,0 +2013,7,29,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1030,-9,0,1243,-20,0,0 +2013,6,29,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,757,-1,0,1048,-3,0,0 +2013,7,30,2,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-2,0,1229,-8,0,0 +2013,7,19,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-5,0,1245,-17,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1457,9,0,1643,-16,0,0 +2013,4,23,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-7,0,1410,37,1,0 +2013,4,25,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1156,110,1,1354,151,1,0 +2013,4,22,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2153,43,1,2337,51,1,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,-3,0,2345,-25,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,0,0,2350,5,0,0 +2013,10,24,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,25,0,0,806,3,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,24,1,2359,38,1,0 +2013,6,28,5,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-3,0,1058,-5,0,0 +2013,7,27,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,720,-8,0,742,-9,0,0 +2013,9,28,6,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1329,-5,0,1655,-3,0,0 +2013,8,20,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,-1,0,1155,-5,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1227,29,1,1840,41,1,0 +2013,5,6,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-5,0,1709,-9,0,0 +2013,4,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1035,59,1,1350,50,1,0 +2013,8,22,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1851,-11,0,2124,-25,0,0 +2013,8,25,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-8,0,2003,-11,0,0 +2013,6,14,5,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,1050,-21,0,0 +2013,7,10,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1202,-4,0,1252,6,0,0 +2013,4,16,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,536,14,0,721,8,0,0 +2013,8,14,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,43,1,1516,48,1,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,-3,0,2200,8,0,0 +2013,8,21,3,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1452,0,0,1636,-10,0,0 +2013,5,5,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,823,-4,0,1405,-8,0,0 +2013,7,2,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-3,0,1255,-10,0,0 +2013,7,20,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,-6,0,1208,-12,0,0 +2013,10,12,6,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1030,0,0,1205,-9,0,0 +2013,6,26,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1353,9,0,1829,1,0,0 +2013,7,11,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-5,0,1000,-4,0,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,-2,0,1045,-13,0,0 +2013,4,23,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1650,10,0,1815,9,0,0 +2013,4,9,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1442,125,1,1603,130,1,0 +2013,5,6,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,605,-2,0,730,-11,0,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-2,0,1229,-3,0,0 +2013,10,15,2,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1455,-4,0,1723,-8,0,0 +2013,5,8,3,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1131,-3,0,1303,-10,0,0 +2013,10,31,4,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,700,3,0,750,15,1,0 +2013,7,10,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-11,0,1517,-4,0,0 +2013,7,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,810,0,0,1115,-4,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,11,0,1948,3,0,0 +2013,9,25,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1251,8,0,1545,9,0,0 +2013,4,9,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1650,85,1,1835,105,1,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1210,23,1,1315,18,1,0 +2013,6,18,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,3,0,1720,8,0,0 +2013,6,9,7,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,37,1,1515,38,1,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2115,-4,0,536,-1,0,0 +2013,7,21,7,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,-6,0,2308,-22,0,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,-9,0,1120,-19,0,0 +2013,9,13,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,32,1,2001,44,1,0 +2013,5,15,3,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1050,-4,0,1258,-8,0,0 +2013,8,14,3,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,845,-1,0,1005,-11,0,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1150,10,0,1350,6,0,0 +2013,4,26,5,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1655,27,1,1848,11,0,0 +2013,10,5,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1755,14,0,1914,-2,0,0 +2013,7,19,5,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-7,0,1454,-22,0,0 +2013,6,25,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,188,1,2308,170,1,0 +2013,7,14,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1935,91,1,2307,85,1,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2211,-8,0,12,-14,0,0 +2013,9,11,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,816,-16,0,0 +2013,4,4,4,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1505,-5,0,2042,2,0,0 +2013,10,27,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1740,-6,0,1905,8,0,0 +2013,10,6,7,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1557,-2,0,1729,-2,0,0 +2013,7,21,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1020,-6,0,1226,-15,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1410,-2,0,1625,-23,0,0 +2013,10,12,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,-9,0,1445,-13,0,0 +2013,6,30,7,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,32,1,1905,20,1,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2105,9,0,2250,8,0,0 +2013,8,30,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1150,-4,0,1715,77,1,0 +2013,10,9,3,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,715,3,0,930,-3,0,0 +2013,4,28,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1754,8,0,1931,2,0,0 +2013,9,27,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,-4,0,1940,-17,0,0 +2013,4,10,3,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-3,0,1426,51,1,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,710,4,0,1010,-7,0,0 +2013,7,10,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1150,19,1,1800,-3,0,0 +2013,4,24,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1248,-1,0,0 +2013,10,21,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1225,8,0,1330,11,0,0 +2013,4,2,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,0,0,725,-15,0,0 +2013,6,29,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1015,-1,0,1313,-6,0,0 +2013,8,11,7,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-3,0,857,-5,0,0 +2013,8,18,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-5,0,2022,-15,0,0 +2013,9,1,7,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,-3,0,1800,-18,0,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,2,0,1705,-3,0,0 +2013,5,5,7,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,172,1,531,193,1,0 +2013,4,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1319,46,1,1720,31,1,0 +2013,5,8,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-1,0,1355,-13,0,0 +2013,4,8,1,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1420,-4,0,1647,-20,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,-2,0,1501,-11,0,0 +2013,7,11,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,-3,0,755,-12,0,0 +2013,4,26,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,746,1,0,944,10,0,0 +2013,7,8,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,6,0,1220,-2,0,0 +2013,7,13,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1049,-1,0,0 +2013,9,7,6,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-5,0,1849,-14,0,0 +2013,4,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2057,0,,2157,0,1,1 +2013,8,10,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,16,1,1235,12,0,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,834,-10,0,1018,-21,0,0 +2013,8,5,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,15,1,1630,-10,0,0 +2013,6,29,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1530,34,1,1930,27,1,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1240,-9,0,1535,-13,0,0 +2013,6,26,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,545,-2,0,650,-12,0,0 +2013,4,27,6,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1230,7,0,1421,11,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,600,0,0,817,-1,0,0 +2013,5,10,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1950,78,1,2200,73,1,0 +2013,7,27,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1115,15,1,1235,17,1,0 +2013,5,17,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1325,47,1,1615,33,1,0 +2013,4,15,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1550,-1,0,2008,-4,0,0 +2013,8,13,2,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,806,-22,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1824,-1,0,2129,78,1,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,27,1,1021,15,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1500,4,0,1729,20,1,0 +2013,6,4,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-3,0,810,-10,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-6,0,2308,-5,0,0 +2013,6,26,3,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1755,33,1,1925,15,1,0 +2013,5,1,3,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,620,-4,0,902,-15,0,0 +2013,4,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,-2,0,1325,-5,0,0 +2013,4,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,600,0,,715,0,1,1 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,-3,0,1431,2,0,0 +2013,10,29,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1737,-1,0,1750,0,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1030,11,0,1145,-8,0,0 +2013,4,14,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,941,3,0,1147,7,0,0 +2013,5,24,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,944,5,0,1120,11,0,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-5,0,1841,-8,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-4,0,805,-18,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1915,-4,0,2340,-15,0,0 +2013,5,20,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1210,1,0,1335,-14,0,0 +2013,7,17,3,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,0,0,1100,5,0,0 +2013,9,10,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-6,0,2125,-24,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,733,-6,0,936,-8,0,0 +2013,6,8,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1740,0,0,2105,15,1,0 +2013,8,17,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,844,-5,0,1040,-1,0,0 +2013,7,23,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,705,4,0,816,-8,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-3,0,923,-2,0,0 +2013,8,7,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1415,-9,0,1555,3,0,0 +2013,7,4,4,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,-8,0,1940,-12,0,0 +2013,7,3,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,1,0,1201,-7,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,0,0,1040,1,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,38,1,1035,33,1,0 +2013,4,22,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,136,1,2104,130,1,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,19,1,1455,29,1,0 +2013,7,19,5,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,5,0,1213,2,0,0 +2013,6,30,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,610,-6,0,905,2,0,0 +2013,4,23,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,605,-6,0,730,-15,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,-9,0,1904,-25,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,15,1,1125,26,1,0 +2013,4,7,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1954,4,0,2127,6,0,0 +2013,7,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1210,0,0,1545,1,0,0 +2013,10,20,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,920,13,0,1035,2,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2235,0,0,707,-26,0,0 +2013,4,16,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1309,-11,0,1425,-15,0,0 +2013,4,20,6,EV,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,920,35,1,1017,25,1,0 +2013,7,23,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,0,,1940,0,1,1 +2013,8,2,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1325,-3,0,1435,-14,0,0 +2013,6,18,2,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,23,1,1519,42,1,0 +2013,5,18,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,210,-7,0,630,3,0,0 +2013,10,9,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-1,0,1745,-18,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1054,-5,0,1225,-9,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1550,20,1,1940,-9,0,0 +2013,10,1,2,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,0,0,821,-15,0,0 +2013,9,16,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-1,0,1125,-5,0,0 +2013,5,29,3,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1525,-7,0,1857,-16,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1325,-2,0,1415,7,0,0 +2013,7,5,5,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,736,-3,0,1532,-8,0,0 +2013,5,31,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,-1,0,1447,-13,0,0 +2013,8,13,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1055,1,0,1335,-16,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1520,107,1,1745,82,1,0 +2013,8,18,7,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,825,-2,0,1111,1,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-2,0,1807,-4,0,0 +2013,7,29,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1645,13,0,1935,13,0,0 +2013,5,21,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-6,0,1025,-2,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,0,0,1420,-9,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1820,-1,0,2340,-18,0,0 +2013,7,2,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-10,0,1645,9,0,0 +2013,7,22,1,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,707,-2,0,924,-2,0,0 +2013,4,12,5,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1100,-1,0,1340,-14,0,0 +2013,5,20,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,-9,0,1112,-16,0,0 +2013,8,22,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,13,0,1600,-3,0,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,25,1,2220,28,1,0 +2013,8,21,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2104,14,0,512,23,1,0 +2013,8,7,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,921,0,0,1318,-7,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1222,13,0,1819,-6,0,0 +2013,9,5,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1730,0,0,1835,-17,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1753,1,0,1906,24,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-3,0,1918,-20,0,0 +2013,10,23,3,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,930,-7,0,1144,3,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1320,1,0,1640,-15,0,0 +2013,7,31,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-4,0,1543,-6,0,0 +2013,8,3,6,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-3,0,958,-3,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2245,-6,0,111,0,0,0 +2013,10,31,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-4,0,1054,-20,0,0 +2013,5,22,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-4,0,923,-3,0,0 +2013,5,21,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1502,-3,0,1604,16,1,0 +2013,6,13,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,-5,0,1028,10,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1257,-1,0,1413,6,0,0 +2013,8,3,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1805,-3,0,2019,-7,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1959,-4,0,2207,15,1,0 +2013,10,15,2,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1310,-2,0,1517,-31,0,0 +2013,10,21,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,810,9,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1245,50,1,1500,40,1,0 +2013,10,22,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1750,-2,0,1845,-4,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2025,101,1,2309,67,1,0 +2013,4,2,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-4,0,541,-1,0,0 +2013,10,28,1,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1125,-2,0,1240,12,0,0 +2013,7,5,5,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-9,0,1206,-17,0,0 +2013,10,7,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,-15,0,2024,-10,0,0 +2013,8,12,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1640,11,0,2020,56,1,0 +2013,10,31,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-10,0,855,-1,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1040,4,0,1600,-15,0,0 +2013,6,18,2,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-3,0,1015,-2,0,0 +2013,9,26,4,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,945,-5,0,1031,1,0,0 +2013,4,27,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,6,0,2200,-5,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,5,0,1130,-22,0,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,1,0,850,-6,0,0 +2013,9,24,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,655,1,0,809,-5,0,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,603,-6,0,1220,-22,0,0 +2013,7,16,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,640,-2,0,840,7,0,0 +2013,4,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1950,-5,0,2159,0,0,0 +2013,4,26,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1855,-3,0,2005,-1,0,0 +2013,4,25,4,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1700,-1,0,1814,11,0,0 +2013,6,7,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-7,0,1352,2,0,0 +2013,5,23,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,1,0,2210,-6,0,0 +2013,6,24,1,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,-3,0,935,-5,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1410,29,1,1520,19,1,0 +2013,6,8,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,-6,0,2009,2,0,0 +2013,7,16,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-7,0,636,1,0,0 +2013,9,30,1,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,12,0,1905,4,0,0 +2013,5,4,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,-2,0,1135,-2,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1959,93,1,2310,121,1,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,-1,0,930,-5,0,0 +2013,6,24,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,520,6,0,845,2,0,0 +2013,9,19,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1915,-3,0,2053,-7,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,941,4,0,1809,-18,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1435,30,1,1805,24,1,0 +2013,10,26,6,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,850,0,0,1010,-5,0,0 +2013,9,20,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,0,,1850,0,1,1 +2013,6,3,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,2,0,1041,-9,0,0 +2013,10,30,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-8,0,1548,-14,0,0 +2013,8,11,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1651,-10,0,2000,-11,0,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-6,0,945,-11,0,0 +2013,9,3,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,603,-7,0,624,-15,0,0 +2013,4,17,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1715,40,1,2045,46,1,0 +2013,7,30,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,630,0,,1505,0,1,1 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,-1,0,2230,-24,0,0 +2013,5,29,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2112,-7,0,2243,-15,0,0 +2013,9,27,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1710,-2,0,1844,-18,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,84,1,2128,71,1,0 +2013,10,23,3,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1703,-8,0,1826,-10,0,0 +2013,4,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,925,37,1,0 +2013,6,23,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-2,0,1357,-1,0,0 +2013,4,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1810,3,0,1915,-2,0,0 +2013,9,27,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,0,0,1220,-13,0,0 +2013,5,8,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-3,0,1234,6,0,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1116,-6,0,1209,-16,0,0 +2013,8,4,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1455,7,0,1610,4,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1429,-4,0,1623,-6,0,0 +2013,5,2,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,905,0,0,1201,7,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,1,0,1227,-3,0,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-1,0,1627,-14,0,0 +2013,9,26,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,22,1,2110,14,0,0 +2013,8,21,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-1,0,1220,-3,0,0 +2013,9,4,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1935,-2,0,2250,-17,0,0 +2013,9,3,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1840,43,1,2120,22,1,0 +2013,6,7,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1555,299,1,1730,262,1,0 +2013,6,4,2,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1416,2,0,1715,-13,0,0 +2013,5,5,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-7,0,2129,-17,0,0 +2013,5,21,2,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1949,25,1,2238,41,1,0 +2013,9,18,3,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,823,-7,0,1421,-13,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1655,-4,0,1859,-13,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,108,1,1708,116,1,0 +2013,4,25,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1025,12,0,1035,5,0,0 +2013,10,17,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1735,-7,0,1850,-29,0,0 +2013,5,22,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,625,1,0,725,-2,0,0 +2013,5,9,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-6,0,909,33,1,0 +2013,5,10,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1121,49,1,1221,56,1,0 +2013,8,13,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1904,160,1,2008,152,1,0 +2013,6,14,5,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,730,-3,0,920,-5,0,0 +2013,8,2,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,-1,0,1115,10,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1655,46,1,1900,21,1,0 +2013,10,16,3,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1355,-9,0,1610,12,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1910,116,1,2335,107,1,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1359,-6,0,1647,-9,0,0 +2013,10,18,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-5,0,2035,-6,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1248,11,0,1355,0,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2039,17,1,2316,-5,0,0 +2013,6,27,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1916,60,1,2026,53,1,0 +2013,9,4,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-4,0,1938,4,0,0 +2013,5,3,5,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,0,0,1715,5,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,-4,0,1144,-5,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-2,0,1443,-15,0,0 +2013,4,11,4,9E,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,14,0,1523,18,1,0 +2013,4,9,2,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1715,-3,0,1810,-9,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1530,0,0,2024,-21,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,9,0,2305,1,0,0 +2013,4,4,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,13,0,1555,-5,0,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1814,31,1,2109,26,1,0 +2013,7,10,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,530,-4,0,633,-17,0,0 +2013,6,15,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-4,0,1642,-15,0,0 +2013,4,28,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2206,-5,0,2250,5,0,0 +2013,5,8,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,34,1,1338,-2,0,0 +2013,9,28,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1203,-9,0,1337,-8,0,0 +2013,8,16,5,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1650,-2,0,2010,-20,0,0 +2013,10,10,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,155,-6,0,824,-29,0,0 +2013,6,24,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1132,41,1,1344,42,1,0 +2013,10,9,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,930,-12,0,0 +2013,9,22,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2030,111,1,2310,110,1,0 +2013,4,10,3,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1525,23,1,1600,18,1,0 +2013,5,9,4,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1120,-5,0,1839,-18,0,0 +2013,10,25,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,719,-2,0,1015,-21,0,0 +2013,7,5,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-7,0,2015,-20,0,0 +2013,10,8,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1036,16,1,1213,22,1,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,847,49,1,1039,35,1,0 +2013,4,1,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,1,0,2240,-20,0,0 +2013,6,6,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,615,-1,0,848,-6,0,0 +2013,5,9,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1839,-6,0,2009,-2,0,0 +2013,7,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-6,0,1112,24,1,0 +2013,7,16,2,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,546,-5,0,759,-14,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,852,3,0,1212,4,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1210,-2,0,1525,-19,0,0 +2013,9,5,4,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1635,7,0,1740,3,0,0 +2013,8,6,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-5,0,1054,-9,0,0 +2013,5,3,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1150,-8,0,1306,-9,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-2,0,1951,-9,0,0 +2013,10,25,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,9,0,802,16,1,0 +2013,10,4,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1130,-1,0,1349,-11,0,0 +2013,10,21,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,6,0,2205,7,0,0 +2013,4,12,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1420,0,0,1935,-9,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,827,-7,0,835,-13,0,0 +2013,5,7,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-4,0,1220,-2,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,820,5,0,1300,-4,0,0 +2013,10,28,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1312,11,0,1618,-9,0,0 +2013,5,12,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,930,-2,0,1304,-17,0,0 +2013,6,19,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,630,-2,0,840,-9,0,0 +2013,4,9,2,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1834,-21,0,2000,-12,0,0 +2013,5,13,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-3,0,1512,-8,0,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,-6,0,1210,-8,0,0 +2013,8,30,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,753,1,0,951,3,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1910,142,1,2104,121,1,0 +2013,5,3,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1935,41,1,2100,31,1,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,2005,3,0,2125,-6,0,0 +2013,4,28,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,855,-3,0,900,-10,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,17,1,1658,0,0,0 +2013,6,6,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,545,-1,0,715,-12,0,0 +2013,9,3,2,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1205,2,0,1615,3,0,0 +2013,4,14,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-1,0,2155,13,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-2,0,2132,-12,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,-7,0,943,-10,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,843,0,0,1035,0,0,0 +2013,7,24,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,155,1,1135,171,1,0 +2013,9,22,7,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1149,-10,0,1311,-15,0,0 +2013,6,22,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-5,0,1236,4,0,0 +2013,10,7,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1445,8,0,1727,0,0,0 +2013,7,14,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-7,0,2110,-2,0,0 +2013,6,21,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1655,133,1,1710,127,1,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,900,-2,0,1645,-9,0,0 +2013,7,5,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,849,-7,0,926,-5,0,0 +2013,4,11,4,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1040,18,1,1840,-1,0,0 +2013,5,2,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,945,-4,0,1040,-11,0,0 +2013,5,10,5,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,25,-1,0,803,1,0,0 +2013,10,19,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,2036,-1,0,2209,-10,0,0 +2013,7,25,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-7,0,1541,-34,0,0 +2013,6,24,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1806,229,1,2118,215,1,0 +2013,5,8,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1630,11,0,1750,-13,0,0 +2013,4,13,6,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1508,-1,0,1819,-6,0,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,-1,0,1036,-11,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1150,0,0,1505,-11,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-2,0,1905,-4,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,3,0,1510,-7,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1905,57,1,2120,49,1,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1535,0,0,1700,-7,0,0 +2013,8,15,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1715,-3,0,1854,-19,0,0 +2013,7,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-4,0,935,17,1,0 +2013,4,21,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,710,5,0,750,4,0,0 +2013,8,17,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,-3,0,1413,0,0,0 +2013,7,28,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,805,-5,0,920,-12,0,0 +2013,4,25,4,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,44,1,1634,26,1,0 +2013,9,13,5,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,755,65,1,1554,54,1,0 +2013,10,9,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,853,-1,0,1209,-2,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1230,0,0,1335,-8,0,0 +2013,6,26,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-5,0,630,10,0,0 +2013,5,23,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,936,33,1,1040,57,1,0 +2013,10,9,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,720,-5,0,945,-16,0,0 +2013,8,7,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,936,-1,0,1211,-13,0,0 +2013,10,15,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1248,-5,0,1450,-26,0,0 +2013,5,16,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,600,3,0,715,-1,0,0 +2013,8,28,3,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,515,-7,0,642,-5,0,0 +2013,5,17,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1005,-2,0,1120,-11,0,0 +2013,6,29,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2003,2,0,2347,-1,0,0 +2013,4,28,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,-6,0,748,-22,0,0 +2013,5,19,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2000,-6,0,504,6,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,0,0,1145,-1,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,-1,0,1205,-2,0,0 +2013,6,7,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,-7,0,1211,19,1,0 +2013,5,31,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,-7,0,2050,-20,0,0 +2013,9,2,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1515,0,,1831,0,1,1 +2013,5,16,4,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2100,2,0,2235,-5,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1815,7,0,1935,11,0,0 +2013,10,20,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1340,-1,0,1550,8,0,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1330,-5,0,1600,-5,0,0 +2013,4,12,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,610,-2,0,730,-6,0,0 +2013,9,8,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1248,0,0,1542,-16,0,0 +2013,6,29,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,13,0,2252,10,0,0 +2013,10,13,7,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,800,-3,0,949,-25,0,0 +2013,6,9,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1340,-5,0,1428,-7,0,0 +2013,5,2,4,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,650,0,0,855,-16,0,0 +2013,10,21,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1145,9,0,1350,8,0,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1121,-2,0,1222,-3,0,0 +2013,6,20,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1335,0,0,1510,-9,0,0 +2013,5,29,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,-4,0,845,-5,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1351,6,0,1618,-17,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1924,140,1,2045,141,1,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,815,15,1,930,14,0,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1857,105,1,2110,105,1,0 +2013,10,5,6,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1749,-13,0,1924,-17,0,0 +2013,4,16,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1750,0,,1905,0,1,1 +2013,4,19,5,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,38,1,1025,40,1,0 +2013,10,22,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,755,-6,0,930,4,0,0 +2013,4,22,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,16,1,1107,12,0,0 +2013,8,2,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,956,-1,0,1757,-23,0,0 +2013,10,20,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2035,-11,0,2135,-24,0,0 +2013,5,28,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,950,1,0,1100,7,0,0 +2013,6,3,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1910,6,0,2105,1,0,0 +2013,6,3,1,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,-7,0,1501,-15,0,0 +2013,5,23,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,606,38,1,813,44,1,0 +2013,5,29,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1644,7,0,1844,-13,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1125,2,0,1635,-10,0,0 +2013,6,8,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-3,0,2035,-18,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,11,0,652,-10,0,0 +2013,7,25,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,4,0,1045,9,0,0 +2013,10,1,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1535,-7,0,1833,14,0,0 +2013,7,15,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1717,11,0,1944,-16,0,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,745,-2,0,850,19,1,0 +2013,6,12,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1611,0,,1719,0,1,1 +2013,7,30,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,-6,0,1035,-18,0,0 +2013,9,3,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,643,-3,0,808,-12,0,0 +2013,4,14,7,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1824,74,1,1959,82,1,0 +2013,9,2,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-4,0,2110,-4,0,0 +2013,4,5,5,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1100,-2,0,1409,-6,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,600,-4,0,708,-10,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,806,-4,0,1640,-7,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1048,0,0,1310,-6,0,0 +2013,4,19,5,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,18,1,1935,17,1,0 +2013,7,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1802,-3,0,1901,9,0,0 +2013,5,29,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,142,1,2005,138,1,0 +2013,8,13,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,630,5,0,835,-4,0,0 +2013,4,15,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-5,0,1355,-4,0,0 +2013,8,26,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,0,0,1245,8,0,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2220,18,1,2359,17,1,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1520,135,1,1740,126,1,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,1,0,2025,7,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1020,-1,0,1544,1,0,0 +2013,7,25,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1753,-4,0,1935,-1,0,0 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2000,18,1,2125,19,1,0 +2013,10,23,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1600,-3,0,1808,-2,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,-2,0,1933,-8,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1219,-4,0,1250,-14,0,0 +2013,7,7,7,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,20,1,1230,9,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,33,1,1826,26,1,0 +2013,9,11,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-3,0,935,0,0,0 +2013,9,9,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-7,0,840,-28,0,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,746,1,0,944,-5,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1610,-3,0,1730,-12,0,0 +2013,4,24,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1407,2,0,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,54,1,2120,51,1,0 +2013,7,14,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,27,22,1,633,16,1,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1316,17,1,2111,52,1,0 +2013,6,10,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2155,115,1,2305,114,1,0 +2013,5,4,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,-7,0,1551,-6,0,0 +2013,10,15,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,2,0,1314,5,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1340,7,0,1450,-1,0,0 +2013,8,7,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,540,-5,0,1152,-11,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,-8,0,2319,-15,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,53,1,2155,49,1,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,2,0,2204,-1,0,0 +2013,4,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1708,-5,0,1842,-20,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1529,7,0,1745,2,0,0 +2013,9,2,1,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1139,51,1,1520,36,1,0 +2013,5,10,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-12,0,1319,-1,0,0 +2013,7,1,1,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2155,7,0,2325,-7,0,0 +2013,10,19,6,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,900,-2,0,0 +2013,4,14,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-8,0,1650,-13,0,0 +2013,10,16,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1435,-2,0,1600,-9,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1645,-7,0,1940,-8,0,0 +2013,7,23,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1809,97,1,2142,107,1,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,600,9,0,805,5,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,5,0,2112,5,0,0 +2013,5,11,6,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1355,-2,0,1550,-13,0,0 +2013,7,7,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2240,48,1,625,32,1,0 +2013,6,21,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-5,0,908,-26,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,35,1,1640,27,1,0 +2013,5,1,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,750,2,0,1134,0,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1735,41,1,1900,58,1,0 +2013,4,1,1,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,749,2,0,911,4,0,0 +2013,10,9,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1250,-5,0,1545,-18,0,0 +2013,8,8,4,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,930,-6,0,1234,38,1,0 +2013,4,18,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,857,-13,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1950,-4,0,2125,-9,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,930,41,1,1248,5,0,0 +2013,8,22,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,930,-3,0,1045,-11,0,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,0,,1540,0,1,1 +2013,10,21,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1340,-3,0,1503,-8,0,0 +2013,4,12,5,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1810,67,1,2123,65,1,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,930,-3,0,1145,-7,0,0 +2013,4,8,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,-3,0,1400,15,1,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,908,0,0,1209,33,1,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-2,0,2331,-2,0,0 +2013,10,6,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2030,36,1,2224,29,1,0 +2013,10,17,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,652,0,0,954,-12,0,0 +2013,10,24,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-6,0,1450,-12,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-3,0,1227,-14,0,0 +2013,7,7,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1435,-3,0,1603,-1,0,0 +2013,4,13,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1825,0,0,2010,9,0,0 +2013,4,21,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1048,-7,0,1613,-14,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,853,-1,0,1703,1,0,0 +2013,8,9,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1415,-1,0,1550,19,1,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2115,16,1,2230,6,0,0 +2013,8,17,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,605,-11,0,715,-15,0,0 +2013,10,1,2,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1150,-4,0,1330,-20,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-3,0,1610,-5,0,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1905,0,0,2039,-23,0,0 +2013,4,30,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,0,0,1535,-14,0,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,0,0,1000,0,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,14,0,1606,20,1,0 +2013,8,19,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-3,0,810,-12,0,0 +2013,9,11,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2120,-9,0,2351,-3,0,0 +2013,7,23,2,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,817,-7,0,1359,-20,0,0 +2013,4,21,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,13,0,2259,11,0,0 +2013,5,23,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,-3,0,1513,0,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,-3,0,2152,-6,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,0,0,1733,-18,0,0 +2013,4,12,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,905,-4,0,0 +2013,6,13,4,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,830,21,1,935,21,1,0 +2013,10,5,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1516,-2,0,1644,-6,0,0 +2013,7,19,5,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2012,0,,2140,0,1,1 +2013,10,26,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1816,-3,0,2051,-10,0,0 +2013,10,17,4,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1036,0,0,1302,10,0,0 +2013,4,8,1,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1926,10,0,2155,-15,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,42,1,2000,34,1,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1133,-7,0,1309,8,0,0 +2013,8,22,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,755,-6,0,845,-10,0,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,601,28,1,900,22,1,0 +2013,10,19,6,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,830,-7,0,1116,-23,0,0 +2013,4,18,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1101,-8,0,0 +2013,10,5,6,EV,12953,LaGuardia,New York,NY,13931,Norfolk International,Norfolk,VA,1608,-7,0,1742,-38,0,0 +2013,5,13,1,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1755,256,1,2049,231,1,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1520,8,0,1650,6,0,0 +2013,4,9,2,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-8,0,1147,-26,0,0 +2013,10,12,6,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,739,-1,0,1012,-7,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,-4,0,2148,-12,0,0 +2013,9,6,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,712,7,0,818,7,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,14,0,2050,0,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-3,0,725,-3,0,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,138,1,609,141,1,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,7,0,1750,-20,0,0 +2013,5,2,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2005,-4,0,2140,-17,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,-2,0,1556,2,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2100,3,0,2220,-14,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-3,0,1823,-8,0,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2050,4,0,2245,-14,0,0 +2013,10,24,4,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1719,3,0,1840,0,0,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1517,-4,0,1655,-5,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,905,-1,0,1240,1,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1935,76,1,2250,76,1,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,845,0,0,1135,-9,0,0 +2013,8,15,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,830,13,0,0 +2013,5,30,4,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1838,45,1,2334,44,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,23,1,1150,20,1,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,82,1,2230,81,1,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1602,-2,0,1715,-8,0,0 +2013,8,11,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1335,0,0,1345,6,0,0 +2013,4,22,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-1,0,945,6,0,0 +2013,7,3,3,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2216,-7,0,635,-25,0,0 +2013,8,15,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1033,1,0,1405,-6,0,0 +2013,8,14,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,166,1,2322,152,1,0 +2013,10,27,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-4,0,1015,6,0,0 +2013,4,26,5,EV,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1654,116,1,1822,99,1,0 +2013,5,23,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,5,0,1610,4,0,0 +2013,6,25,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1005,-2,0,1245,-6,0,0 +2013,4,13,6,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,930,-3,0,1047,-12,0,0 +2013,7,8,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1745,-2,0,1855,-6,0,0 +2013,4,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1650,-3,0,2024,-4,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2155,25,1,2335,12,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-5,0,1028,1,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,0,0,2353,-10,0,0 +2013,6,19,3,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1352,-5,0,1520,-6,0,0 +2013,8,24,6,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,600,-7,0,835,-5,0,0 +2013,10,28,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1535,-1,0,1703,-3,0,0 +2013,6,7,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1515,12,0,1630,0,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1630,-1,0,1958,-12,0,0 +2013,10,15,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-2,0,1051,-11,0,0 +2013,8,12,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1923,10,0,2049,21,1,0 +2013,6,30,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-3,0,1746,10,0,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-3,0,1050,-13,0,0 +2013,7,10,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,816,-2,0,1416,-13,0,0 +2013,7,15,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-8,0,1839,-25,0,0 +2013,4,25,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,11,0,1023,20,1,0 +2013,5,30,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-3,0,2110,-12,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1810,14,0,1825,22,1,0 +2013,10,30,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,1529,-10,0,0 +2013,6,12,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,-5,0,2300,-15,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-8,0,913,-17,0,0 +2013,6,10,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1335,11,0,1505,-2,0,0 +2013,5,18,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-5,0,1555,-4,0,0 +2013,5,5,7,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1850,11,0,2350,14,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1715,-2,0,1825,-13,0,0 +2013,9,8,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1630,-5,0,1730,4,0,0 +2013,6,3,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,14,0,1825,9,0,0 +2013,10,11,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,830,1,0,1036,-6,0,0 +2013,8,10,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,2,0,1504,-6,0,0 +2013,5,19,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-7,0,1235,-34,0,0 +2013,4,8,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-6,0,1203,-20,0,0 +2013,4,1,1,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1535,3,0,1825,-4,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,5,0,1835,2,0,0 +2013,4,17,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13232,Chicago Midway International,Chicago,IL,845,1,0,1440,-16,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1050,-4,0,1140,-9,0,0 +2013,5,10,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-1,0,2020,-12,0,0 +2013,9,11,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1415,-6,0,1617,12,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,800,28,1,1145,28,1,0 +2013,6,12,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-3,0,1652,-25,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,915,7,0,1050,17,1,0 +2013,7,17,3,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1437,-8,0,1551,-13,0,0 +2013,6,17,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,146,1,1010,191,1,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1025,-5,0,1245,4,0,0 +2013,7,25,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-6,0,920,-21,0,0 +2013,4,11,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,630,-7,0,805,-20,0,0 +2013,7,12,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1918,103,1,2229,108,1,0 +2013,10,14,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,715,-3,0,903,-11,0,0 +2013,4,16,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1131,1,0,1633,-22,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,16,1,1025,9,0,0 +2013,5,9,4,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,5,0,2350,-16,0,0 +2013,5,14,2,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1915,-5,0,2250,-10,0,0 +2013,6,30,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1535,7,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1525,9,0,1635,1,0,0 +2013,5,29,3,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,735,-5,0,845,-6,0,0 +2013,7,21,7,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,0,0,1914,-10,0,0 +2013,10,7,1,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1829,26,1,1939,10,0,0 +2013,8,31,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-4,0,1729,15,1,0 +2013,9,9,1,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,809,-3,0,1018,-11,0,0 +2013,7,6,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,50,1,2005,10,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,-2,0,935,-6,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1236,-6,0,1354,7,0,0 +2013,9,3,2,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1052,-6,0,1219,-22,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,12,0,2200,7,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,0,0,1713,-11,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1330,21,1,1430,17,1,0 +2013,7,15,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-6,0,1743,0,0,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1355,-1,0,1517,18,1,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1905,-1,0,2010,-8,0,0 +2013,6,15,6,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,615,-5,0,755,-9,0,0 +2013,8,4,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,959,-5,0,1539,-28,0,0 +2013,8,26,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1610,-2,0,1705,-5,0,0 +2013,10,15,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,545,-8,0,705,-26,0,0 +2013,10,13,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1229,21,1,1357,23,1,0 +2013,9,13,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2204,102,1,2334,102,1,0 +2013,9,23,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1900,-15,0,1959,-18,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1705,0,0,2045,2,0,0 +2013,5,31,5,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1725,3,0,2052,-12,0,0 +2013,9,2,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,935,-1,0,1055,-5,0,0 +2013,10,31,4,EV,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-14,0,2049,-26,0,0 +2013,10,31,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-4,0,1939,0,0,0 +2013,8,19,1,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1653,3,0,1752,-1,0,0 +2013,9,28,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-5,0,2020,-9,0,0 +2013,9,18,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1504,-13,0,1659,-17,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,19,1,1915,11,0,0 +2013,7,15,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,645,-9,0,933,-12,0,0 +2013,5,2,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1135,-1,0,1729,-1,0,0 +2013,8,2,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,940,-9,0,1257,-26,0,0 +2013,10,8,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,705,-4,0,805,-16,0,0 +2013,7,5,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1615,3,0,1839,-19,0,0 +2013,7,14,7,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,715,-2,0,840,-24,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1050,7,0,1505,-2,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1355,34,1,1915,35,1,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-5,0,2206,18,1,0 +2013,8,1,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-1,0,2304,-23,0,0 +2013,8,11,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1950,-5,0,2225,-8,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1530,32,1,2000,15,1,0 +2013,7,9,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1004,-2,0,1605,5,0,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,49,1,1003,65,1,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2145,-10,0,2306,-14,0,0 +2013,8,28,3,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2011,-8,0,2022,0,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,630,13,0,742,5,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,830,0,,1049,0,1,1 +2013,5,3,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1539,0,0,1844,3,0,0 +2013,9,12,4,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1617,0,,2002,0,1,1 +2013,8,15,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,929,-10,0,0 +2013,6,1,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1659,-2,0,2024,4,0,0 +2013,8,26,1,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1729,13,0,30,1,0,0 +2013,9,5,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1105,0,0,1205,15,1,0 +2013,7,17,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1145,-1,0,1240,-16,0,0 +2013,10,10,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-4,0,954,-3,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,842,-2,0,1421,-20,0,0 +2013,6,3,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,1,0,1025,-4,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,610,-4,0,720,-11,0,0 +2013,9,5,4,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,930,-5,0,1530,3,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1916,67,1,2045,49,1,0 +2013,6,30,7,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,25,1,1925,23,1,0 +2013,4,26,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,931,-13,0,1128,-24,0,0 +2013,8,4,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,-2,0,950,-3,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1652,0,0,1809,-7,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1435,-2,0,1625,-7,0,0 +2013,10,11,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1925,57,1,2159,98,1,0 +2013,4,12,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,4,0,1320,7,0,0 +2013,4,17,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,904,-6,0,1014,-8,0,0 +2013,5,28,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1612,-1,0,1828,-10,0,0 +2013,5,23,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,900,-5,0,1210,-7,0,0 +2013,6,7,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,0,0,924,8,0,0 +2013,5,14,2,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1830,1,0,2125,-8,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1540,-4,0,1855,-41,0,0 +2013,9,17,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2000,-3,0,2005,-5,0,0 +2013,10,1,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,5,0,1012,14,0,0 +2013,4,17,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1655,14,0,1950,6,0,0 +2013,6,13,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1415,135,1,1555,141,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2205,35,1,2305,22,1,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1054,-5,0,1213,-3,0,0 +2013,9,5,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1035,-12,0,1640,-13,0,0 +2013,10,4,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,25,1,1440,16,1,0 +2013,10,9,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1121,-6,0,1225,-6,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2235,-6,0,120,-7,0,0 +2013,4,27,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-6,0,2037,-15,0,0 +2013,7,7,7,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,-5,0,1845,55,1,0 +2013,5,18,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-9,0,700,-18,0,0 +2013,4,29,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1835,-7,0,1935,-9,0,0 +2013,7,3,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1500,-7,0,1635,19,1,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-9,0,1837,-11,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1540,37,1,1845,35,1,0 +2013,6,16,7,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1004,7,0,1315,15,1,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,21,1,2100,17,1,0 +2013,9,11,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2005,58,1,2125,55,1,0 +2013,4,24,3,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1905,-4,0,2038,0,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,-3,0,2332,-13,0,0 +2013,7,26,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1825,36,1,2011,36,1,0 +2013,6,20,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,6,0,1530,17,1,0 +2013,4,24,3,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,710,-5,0,910,5,0,0 +2013,9,15,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-7,0,1500,7,0,0 +2013,8,31,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-6,0,1920,-16,0,0 +2013,6,27,4,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1659,4,0,1941,2,0,0 +2013,7,10,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1802,0,,1848,0,1,1 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,56,1,1105,45,1,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1340,-2,0,1544,-4,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1813,2,0,1949,-9,0,0 +2013,4,22,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,930,-1,0,1055,-20,0,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1347,-4,0,1528,-15,0,0 +2013,6,3,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,620,-3,0,750,-11,0,0 +2013,4,26,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1010,-8,0,0 +2013,7,7,7,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1410,5,0,1750,6,0,0 +2013,10,2,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,710,6,0,825,-2,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1440,5,0,1555,-2,0,0 +2013,5,21,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1730,0,,2010,0,1,1 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1215,20,1,1745,1,0,0 +2013,4,9,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1408,-6,0,1523,-22,0,0 +2013,6,29,6,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,0,0,1544,-5,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1535,66,1,1825,67,1,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1959,21,1,2208,13,0,0 +2013,10,25,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-7,0,1240,-4,0,0 +2013,7,8,1,WN,10693,Nashville International,Nashville,TN,14747,Seattle/Tacoma International,Seattle,WA,1225,-4,0,1510,-6,0,0 +2013,7,11,4,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-3,0,1330,7,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1654,1,0,1756,-10,0,0 +2013,10,11,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,850,5,0,945,-5,0,0 +2013,10,21,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-9,0,2041,-9,0,0 +2013,8,21,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,919,-4,0,0 +2013,8,13,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,-5,0,914,14,0,0 +2013,9,1,7,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1635,-3,0,1945,1,0,0 +2013,9,8,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1835,-6,0,2025,1,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,50,1,2059,60,1,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,2145,-4,0,2335,-7,0,0 +2013,9,16,1,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1200,-6,0,2020,4,0,0 +2013,4,5,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1916,18,1,2100,-4,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1929,1,0,2138,-14,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1918,101,1,2050,97,1,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,-7,0,1725,4,0,0 +2013,9,23,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1726,-8,0,1900,-2,0,0 +2013,9,29,7,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1900,6,0,2025,-5,0,0 +2013,5,6,1,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1012,18,1,1137,8,0,0 +2013,6,14,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1230,0,0,1335,-12,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1645,2,0,2000,-10,0,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,13796,Metropolitan Oakland International,Oakland,CA,1942,15,1,2308,-6,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2105,32,1,2215,25,1,0 +2013,7,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-7,0,1902,2,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-4,0,725,1,0,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,735,-1,0,848,-4,0,0 +2013,10,24,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1550,10,0,1752,4,0,0 +2013,9,18,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-7,0,1334,-39,0,0 +2013,7,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,76,1,1458,65,1,0 +2013,9,17,2,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-9,0,1045,0,0,0 +2013,5,16,4,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,6,0,1735,10,0,0 +2013,10,24,4,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1852,6,0,2117,-4,0,0 +2013,4,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,0,0,928,7,0,0 +2013,9,23,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-3,0,1912,-4,0,0 +2013,5,10,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-6,0,802,-9,0,0 +2013,8,22,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,840,0,0,1105,-16,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1316,50,1,1604,70,1,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1820,4,0,2205,-11,0,0 +2013,7,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-5,0,2203,-1,0,0 +2013,10,2,3,YV,14100,Philadelphia International,Philadelphia,PA,14524,Richmond International,Richmond,VA,943,-5,0,1047,-5,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-3,0,1610,2,0,0 +2013,7,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1205,3,0,1659,0,0,0 +2013,8,3,6,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1505,-4,0,1650,-4,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,1,0,1121,3,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2125,27,1,2230,35,1,0 +2013,4,22,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,811,-1,0,925,26,1,0 +2013,5,28,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1950,0,0,2055,39,1,0 +2013,8,2,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,-4,0,2243,-13,0,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,10,0,1400,3,0,0 +2013,5,11,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,628,116,1,734,113,1,0 +2013,9,12,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-6,0,1350,-20,0,0 +2013,9,29,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,26,1,1645,18,1,0 +2013,6,24,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-10,0,840,-6,0,0 +2013,10,4,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-4,0,1029,-1,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1434,1,0,1532,-6,0,0 +2013,7,16,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-7,0,1358,1,0,0 +2013,10,30,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,0,,1156,0,1,1 +2013,10,23,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1950,21,1,2125,7,0,0 +2013,4,16,2,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1030,5,0,1346,13,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-2,0,750,-7,0,0 +2013,10,21,1,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,955,-1,0,1314,-9,0,0 +2013,4,23,2,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-4,0,2227,-7,0,0 +2013,9,29,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-11,0,1030,-30,0,0 +2013,5,7,2,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1150,15,1,1345,9,0,0 +2013,10,23,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,4,0,1041,9,0,0 +2013,7,18,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1815,8,0,2125,8,0,0 +2013,9,24,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,3,0,1915,-21,0,0 +2013,8,6,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-5,0,2100,-7,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,-3,0,1132,-15,0,0 +2013,7,4,4,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,1035,-1,0,1250,-17,0,0 +2013,4,7,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,955,0,0,1350,-10,0,0 +2013,9,14,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1052,-7,0,1159,-15,0,0 +2013,4,29,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,6,0,712,12,0,0 +2013,6,3,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,-4,0,1042,-4,0,0 +2013,4,2,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1245,1,0,1834,-26,0,0 +2013,9,30,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-4,0,1001,-13,0,0 +2013,5,10,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,613,-4,0,1115,-4,0,0 +2013,4,19,5,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1800,90,1,1854,86,1,0 +2013,5,11,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-2,0,951,-12,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-1,0,1916,-18,0,0 +2013,7,23,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1424,2,0,1606,-10,0,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1805,101,1,1915,86,1,0 +2013,9,11,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1930,-4,0,2159,-3,0,0 +2013,10,10,4,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,3,0,1305,-4,0,0 +2013,6,22,6,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,600,-2,0,745,-30,0,0 +2013,5,7,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,-1,0,935,-9,0,0 +2013,10,21,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,930,0,0,1040,-6,0,0 +2013,8,14,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-5,0,1418,-9,0,0 +2013,9,14,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,12,0,1215,5,0,0 +2013,4,15,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,2,0,1155,-24,0,0 +2013,8,24,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1136,-9,0,1257,-1,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1815,-1,0,1910,-6,0,0 +2013,7,29,1,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2012,-5,0,2140,-20,0,0 +2013,4,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1310,-6,0,1420,-12,0,0 +2013,4,12,5,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,945,-13,0,1159,-4,0,0 +2013,7,9,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1215,10,0,1815,6,0,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1015,-3,0,1135,-3,0,0 +2013,10,21,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,6,0,2110,-15,0,0 +2013,9,30,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1730,-3,0,2031,-11,0,0 +2013,4,19,5,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1723,0,0,1945,10,0,0 +2013,4,17,3,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,845,-8,0,1112,-13,0,0 +2013,4,26,5,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,745,-6,0,1025,-38,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1715,-5,0,2059,2,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1305,-4,0,1430,-9,0,0 +2013,5,24,5,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,0,,1112,0,1,1 +2013,7,12,5,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,20,1,1210,20,1,0 +2013,4,2,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1730,-2,0,1800,-2,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,855,-6,0,1527,19,1,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1912,0,0,2039,-14,0,0 +2013,8,20,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1525,63,1,1627,78,1,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2025,1,0,2135,-1,0,0 +2013,4,11,4,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,2215,31,1,615,18,1,0 +2013,10,7,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1722,-3,0,1829,4,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1430,1,0,1725,-6,0,0 +2013,5,30,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,1,0,1425,-13,0,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1410,3,0,1725,-10,0,0 +2013,9,24,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-3,0,1526,-13,0,0 +2013,8,19,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,-4,0,1910,-6,0,0 +2013,5,9,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1815,-5,0,2142,-21,0,0 +2013,10,31,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,735,-4,0,0 +2013,6,27,4,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1303,-9,0,1613,-6,0,0 +2013,10,23,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,844,2,0,0 +2013,7,4,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,-1,0,840,-7,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1755,-2,0,1953,-2,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1105,24,1,1235,29,1,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1630,68,1,1820,56,1,0 +2013,4,25,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1605,13,0,1821,2,0,0 +2013,5,5,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1415,1,0,1545,-1,0,0 +2013,8,14,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2014,-7,0,2105,3,0,0 +2013,4,7,7,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1559,-7,0,1814,-12,0,0 +2013,4,29,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2155,-7,0,541,2,0,0 +2013,6,21,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,819,-6,0,1107,3,0,0 +2013,6,10,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-6,0,745,-6,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1550,-2,0,1754,0,1,1 +2013,4,2,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1735,-10,0,2109,-39,0,0 +2013,5,22,3,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,129,1,2240,127,1,0 +2013,9,18,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,959,0,0,1032,-15,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,-4,0,1230,-4,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,705,0,0,1240,-24,0,0 +2013,6,10,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-5,0,1225,-1,0,0 +2013,9,12,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,194,1,2058,191,1,0 +2013,8,2,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,639,-8,0,819,-9,0,0 +2013,7,30,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,106,1,1430,99,1,0 +2013,5,19,7,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1615,116,1,1805,117,1,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,635,-3,0,925,-5,0,0 +2013,10,4,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1319,12,0,1437,5,0,0 +2013,9,20,5,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1210,-9,0,2029,-26,0,0 +2013,9,2,1,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1900,-3,0,2321,-10,0,0 +2013,5,30,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2130,20,1,547,52,1,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1253,35,1,1622,11,0,0 +2013,4,18,4,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,-7,0,1033,6,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1850,8,0,1940,8,0,0 +2013,10,31,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,951,-4,0,1133,-8,0,0 +2013,6,15,6,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1033,-6,0,1301,-6,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,9,0,1831,11,0,0 +2013,7,4,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1515,-9,0,1611,-5,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1430,1,0,1608,-3,0,0 +2013,8,4,7,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-5,0,648,3,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,920,1,0,1055,2,0,0 +2013,9,11,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1143,-1,0,1256,0,0,0 +2013,6,4,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-2,0,1004,-27,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1700,41,1,1935,28,1,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1355,-7,0,1650,64,1,0 +2013,5,21,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1742,62,1,1850,39,1,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,830,22,1,1005,10,0,0 +2013,7,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,38,1,2215,31,1,0 +2013,4,4,4,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-10,0,1615,-19,0,0 +2013,5,18,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-1,0,1400,-17,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,825,5,0,1030,-6,0,0 +2013,4,7,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1810,-5,0,1934,3,0,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,85,1,1257,55,1,0 +2013,9,28,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1728,-27,0,0 +2013,8,3,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,5,0,905,-12,0,0 +2013,5,1,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-4,0,1105,-30,0,0 +2013,5,26,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-7,0,2058,0,0,0 +2013,7,12,5,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-4,0,2131,-16,0,0 +2013,10,28,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,930,-1,0,1121,-4,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1420,10,0,1645,-16,0,0 +2013,6,14,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,19,1,1210,27,1,0 +2013,5,23,4,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,2,0,1510,-4,0,0 +2013,6,15,6,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,16,1,1200,14,0,0 +2013,8,26,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1350,-1,0,1509,-5,0,0 +2013,4,15,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-12,0,1413,3,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1614,0,0,1737,0,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2200,-5,0,2343,3,0,0 +2013,9,5,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1801,0,0,1950,0,0,0 +2013,4,27,6,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,3,0,809,-6,0,0 +2013,4,25,4,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-3,0,1110,-6,0,0 +2013,6,12,3,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,600,9,0,645,-7,0,0 +2013,4,19,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,641,-18,0,0 +2013,6,26,3,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,620,-4,0,810,2,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1630,96,1,1855,82,1,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2158,-2,0,2226,-6,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,835,3,0,1105,7,0,0 +2013,4,25,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,955,-2,0,1130,-12,0,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,2010,-9,0,2249,-11,0,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1845,0,0,15,14,0,0 +2013,6,1,6,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1755,11,0,1920,13,0,0 +2013,10,6,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1148,1,0,1436,-1,0,0 +2013,7,1,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2139,9,0,539,20,1,0 +2013,9,29,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,6,0,1505,-8,0,0 +2013,7,9,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1235,-4,0,1505,-9,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,-1,0,1305,-22,0,0 +2013,10,26,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2232,-3,0,2355,-20,0,0 +2013,4,19,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1621,128,1,1706,161,1,0 +2013,5,26,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1515,-2,0,1810,-12,0,0 +2013,4,26,5,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1712,202,1,1945,186,1,0 +2013,10,22,2,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1106,-7,0,1617,-10,0,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1236,63,1,1354,56,1,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,87,1,2353,89,1,0 +2013,7,17,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-5,0,1918,-6,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2135,33,1,35,50,1,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-3,0,1735,-14,0,0 +2013,5,15,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1215,0,0,1425,-4,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,825,4,0,1121,-20,0,0 +2013,10,3,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1100,-2,0,1525,-9,0,0 +2013,9,30,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-5,0,1100,-23,0,0 +2013,4,11,4,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1711,19,1,2051,1,0,0 +2013,8,19,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,709,-5,0,755,-8,0,0 +2013,4,4,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,600,-8,0,735,-21,0,0 +2013,6,25,2,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1212,12,0,1258,8,0,0 +2013,6,11,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1630,-4,0,1826,-3,0,0 +2013,10,13,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1605,27,1,1830,18,1,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-8,0,1404,-12,0,0 +2013,7,3,3,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1540,65,1,1825,48,1,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1600,-4,0,2310,-12,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-5,0,1205,-9,0,0 +2013,9,25,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1130,1,0,0 +2013,10,18,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,9,0,1805,5,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,-5,0,1845,55,1,0 +2013,6,28,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,720,-2,0,926,-28,0,0 +2013,4,22,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,604,-3,0,1041,-10,0,0 +2013,6,16,7,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,60,1,2156,37,1,0 +2013,5,13,1,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,925,-7,0,1005,-19,0,0 +2013,10,3,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1429,-1,0,1543,-8,0,0 +2013,10,23,3,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,840,-9,0,1100,-17,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1630,124,1,1906,108,1,0 +2013,6,3,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2005,-7,0,2245,-4,0,0 +2013,4,21,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1920,-6,0,2008,-19,0,0 +2013,7,9,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,14,0,1012,9,0,0 +2013,8,10,6,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,830,3,0,920,0,0,0 +2013,5,15,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1120,-9,0,1300,-23,0,0 +2013,7,4,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,-3,0,858,-10,0,0 +2013,6,10,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1518,-4,0,1622,-9,0,0 +2013,10,24,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-1,0,1239,-10,0,0 +2013,6,22,6,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1530,13,0,1715,15,1,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1140,-3,0,1423,-12,0,0 +2013,10,19,6,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,-2,0,1550,11,0,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,9,0,930,11,0,0 +2013,4,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,12,0,2010,3,0,0 +2013,10,23,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1534,10,0,1745,-4,0,0 +2013,10,12,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-2,0,1010,-8,0,0 +2013,6,21,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,22,1,1610,30,1,0 +2013,8,1,4,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,941,-8,0,1129,-2,0,0 +2013,9,13,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-2,0,1643,-18,0,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,6,0,1420,-3,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,0,0,1150,-6,0,0 +2013,8,21,3,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,954,0,0,1451,14,0,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1624,-3,0,1914,-1,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,6,0,2215,-1,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,901,-9,0,1306,-10,0,0 +2013,7,23,2,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,23,1,2003,69,1,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,-1,0,1510,0,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2145,-3,0,2338,-16,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1905,27,1,2135,10,0,0 +2013,9,22,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1655,65,1,1800,61,1,0 +2013,5,9,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-1,0,745,5,0,0 +2013,6,2,7,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,816,-1,0,1158,-18,0,0 +2013,10,10,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-2,0,1240,-23,0,0 +2013,4,3,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1655,-4,0,1828,-10,0,0 +2013,9,15,7,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1048,-3,0,1107,-10,0,0 +2013,5,25,6,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,631,-3,0,756,-17,0,0 +2013,6,18,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-1,0,955,-7,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1700,27,1,1800,17,1,0 +2013,4,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2050,7,0,2205,1,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,0,0,1925,0,0,0 +2013,7,23,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,59,1,649,46,1,0 +2013,8,16,5,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1450,15,1,1634,0,0,0 +2013,10,15,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1442,1,0,1615,-8,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1110,9,0,1320,8,0,0 +2013,5,16,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,-5,0,2204,-26,0,0 +2013,9,7,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,6,0,2022,-4,0,0 +2013,5,10,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1430,12,0,1600,1,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1230,-1,0,1506,4,0,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1728,22,1,2126,4,0,0 +2013,7,15,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,-1,0,617,27,1,0 +2013,6,2,7,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,903,-10,0,1035,-19,0,0 +2013,10,15,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-7,0,1408,-10,0,0 +2013,4,2,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1315,-6,0,1435,-7,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1040,134,1,1325,133,1,0 +2013,6,15,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,710,7,0,815,4,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1911,43,1,2215,46,1,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,27,1,2300,28,1,0 +2013,9,11,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,740,-3,0,900,-6,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,16,1,900,15,1,0 +2013,9,9,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-7,0,1040,-15,0,0 +2013,8,28,3,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1546,-2,0,1649,-10,0,0 +2013,6,24,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1703,64,1,2113,68,1,0 +2013,6,17,1,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1415,-3,0,1601,-11,0,0 +2013,8,2,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-7,0,1903,-18,0,0 +2013,8,10,6,9E,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1826,-2,0,2058,-28,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,731,-4,0,904,-9,0,0 +2013,4,14,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,-9,0,1820,0,0,0 +2013,4,7,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,-7,0,2053,-15,0,0 +2013,8,5,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1015,1,0,1245,14,0,0 +2013,4,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1135,-3,0,1315,-17,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1529,-3,0,1840,-8,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-12,0,2116,-6,0,0 +2013,7,15,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,4,0,1625,-1,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,1936,-3,0,2122,-28,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,845,-2,0,1049,-21,0,0 +2013,9,6,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,-5,0,1133,-8,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-3,0,2345,-5,0,0 +2013,4,27,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,7,0,1535,4,0,0 +2013,10,23,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,85,1,1645,74,1,0 +2013,5,9,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1721,-7,0,1811,-9,0,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1831,180,1,2150,185,1,0 +2013,7,7,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,0,,1330,0,1,1 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1810,-5,0,2030,-17,0,0 +2013,5,13,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1621,4,0,1800,-21,0,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1239,35,1,1510,28,1,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1610,53,1,1720,30,1,0 +2013,4,2,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,640,-2,0,740,-8,0,0 +2013,6,9,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-8,0,1944,5,0,0 +2013,6,23,7,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-13,0,1752,-14,0,0 +2013,4,10,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1905,-12,0,2054,-16,0,0 +2013,5,5,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1340,-6,0,1607,19,1,0 +2013,9,28,6,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1625,24,1,1805,2,0,0 +2013,6,8,6,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-9,0,955,0,0,0 +2013,7,20,6,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,955,-1,0,1125,-20,0,0 +2013,9,3,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1105,39,1,1215,35,1,0 +2013,8,23,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-7,0,1240,-12,0,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,1,0,820,24,1,0 +2013,5,6,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1543,-8,0,1712,-8,0,0 +2013,8,29,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,514,3,0,636,-3,0,0 +2013,5,16,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1815,34,1,2125,30,1,0 +2013,8,26,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,920,-4,0,1040,-4,0,0 +2013,6,17,1,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1718,137,1,1828,118,1,0 +2013,4,22,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1617,35,1,1810,30,1,0 +2013,9,16,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,610,-6,0,916,-14,0,0 +2013,9,14,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1935,-10,0,2058,-13,0,0 +2013,10,20,7,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,654,-2,0,800,-7,0,0 +2013,7,13,6,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,753,5,0,950,-2,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1635,-3,0,1825,-11,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,5,0,1245,12,0,0 +2013,8,18,7,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1306,-6,0,1412,-6,0,0 +2013,10,23,3,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1120,9,0,1633,7,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,915,-1,0,1035,-1,0,0 +2013,6,9,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1435,-3,0,1635,14,0,0 +2013,8,3,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-2,0,2106,-10,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1911,7,0,2154,30,1,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1632,0,0,1758,-1,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,855,-1,0,1005,-6,0,0 +2013,8,1,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,-5,0,1750,-18,0,0 +2013,7,17,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,41,1,2149,28,1,0 +2013,7,22,1,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2216,23,1,617,25,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1910,5,0,2057,-5,0,0 +2013,9,1,7,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1005,-2,0,1245,-2,0,0 +2013,5,14,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-4,0,1055,-12,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2010,-5,0,2115,-6,0,0 +2013,6,15,6,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-5,0,1305,-14,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1725,-5,0,1916,-13,0,0 +2013,4,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-4,0,1719,-22,0,0 +2013,9,13,5,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1348,40,1,1521,40,1,0 +2013,8,18,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1045,-5,0,1115,-21,0,0 +2013,5,7,2,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,-10,0,1901,-40,0,0 +2013,10,7,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,1250,5,0,0 +2013,7,22,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1225,-1,0,1310,-9,0,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1425,17,1,1520,4,0,0 +2013,10,6,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,615,28,1,750,11,0,0 +2013,4,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,4,0,1956,0,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-1,0,1235,-6,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1055,-2,0,1305,-7,0,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,619,-1,0,756,-8,0,0 +2013,9,17,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,-8,0,1919,-22,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1350,1,0,2210,1,0,0 +2013,8,7,3,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1133,-5,0,1300,-33,0,0 +2013,6,1,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-8,0,621,-5,0,0 +2013,5,5,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1436,-2,0,1743,1,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,8,0,1316,2,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1833,6,0,2304,-16,0,0 +2013,5,17,5,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1151,-3,0,1259,-3,0,0 +2013,6,17,1,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,905,25,1,1033,25,1,0 +2013,8,27,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2020,-9,0,2145,4,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,-7,0,1550,-20,0,0 +2013,9,22,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1859,85,1,2210,72,1,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1800,40,1,1930,43,1,0 +2013,8,12,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,14,0,753,8,0,0 +2013,8,7,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1005,2,0,1135,14,0,0 +2013,9,27,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,950,-6,0,1310,-18,0,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,855,-5,0,1020,-18,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1150,46,1,1405,43,1,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,955,-2,0,1110,8,0,0 +2013,7,30,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,-2,0,1025,1,0,0 +2013,10,27,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,15,1,2225,1,0,0 +2013,8,21,3,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-2,0,1445,2,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-3,0,1705,9,0,0 +2013,5,24,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,5,0,853,-7,0,0 +2013,7,9,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,951,-1,0,1223,-8,0,0 +2013,9,29,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,2,0,1740,-6,0,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-5,0,1023,-13,0,0 +2013,7,16,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,939,-10,0,1231,-8,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,901,-3,0,1024,0,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1630,0,0,1725,-4,0,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-2,0,1450,5,0,0 +2013,9,11,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1555,-2,0,1805,-19,0,0 +2013,5,24,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-3,0,1825,-14,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,830,317,1,1050,308,1,0 +2013,8,4,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,-3,0,2140,-16,0,0 +2013,8,28,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,750,-1,0,845,-2,0,0 +2013,4,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1730,0,0,2002,-11,0,0 +2013,5,6,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,-3,0,2135,-4,0,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1555,10,0,1720,31,1,0 +2013,5,15,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1533,24,1,1830,11,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-3,0,1040,-1,0,0 +2013,7,9,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1050,-6,0,0 +2013,7,6,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2105,8,0,2338,-20,0,0 +2013,5,22,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,63,1,1915,0,1,1 +2013,6,3,1,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1636,8,0,1835,-2,0,0 +2013,10,14,1,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1600,27,1,1815,30,1,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1137,357,1,1349,383,1,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2048,-4,0,527,-22,0,0 +2013,5,25,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1915,-6,0,2020,-7,0,0 +2013,6,28,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2155,7,0,2255,-2,0,0 +2013,5,8,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2142,8,0,549,-5,0,0 +2013,6,16,7,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-6,0,1215,-11,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-2,0,2116,0,0,0 +2013,4,1,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1215,-3,0,1315,-8,0,0 +2013,6,5,3,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,77,1,812,54,1,0 +2013,9,9,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-5,0,1055,-31,0,0 +2013,7,4,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,25,1,1420,15,1,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1248,-2,0,1355,-16,0,0 +2013,7,17,3,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-3,0,639,15,1,0 +2013,6,27,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2000,70,1,2055,62,1,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-2,0,2127,-10,0,0 +2013,8,8,4,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-2,0,2003,-18,0,0 +2013,10,28,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-9,0,1115,-13,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1336,0,0,1410,-11,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1310,13,0,1605,2,0,0 +2013,5,2,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,559,-5,0,652,-1,0,0 +2013,4,5,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1939,3,0,2156,-5,0,0 +2013,4,30,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2155,-7,0,2250,-18,0,0 +2013,6,6,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-6,0,745,-7,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,-3,0,1703,-15,0,0 +2013,7,6,6,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1108,-7,0,1318,-13,0,0 +2013,5,3,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1232,-9,0,1520,-18,0,0 +2013,6,25,2,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1352,213,1,1520,199,1,0 +2013,6,21,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,853,-8,0,1012,-15,0,0 +2013,4,13,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-3,0,1025,-28,0,0 +2013,8,12,1,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-9,0,928,0,0,0 +2013,6,7,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2345,-1,0,719,0,0,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1715,-1,0,1840,-2,0,0 +2013,5,6,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,2,0,2159,-3,0,0 +2013,7,3,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,15,1,1712,15,1,0 +2013,7,6,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-5,0,1115,-11,0,0 +2013,9,11,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1940,22,1,2250,12,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1715,12,0,2020,-10,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,4,0,1340,-1,0,0 +2013,9,8,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,-1,0,759,6,0,0 +2013,7,14,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2228,-2,0,710,-29,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,13,0,1445,4,0,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1715,10,0,2015,-7,0,0 +2013,6,26,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,53,1,1255,47,1,0 +2013,6,4,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,0,0,905,-12,0,0 +2013,9,14,6,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1600,-11,0,1739,-24,0,0 +2013,9,9,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,635,-5,0,745,-17,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1514,13,0,1733,-5,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1200,-2,0,1355,-25,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1124,8,0,1308,13,0,0 +2013,5,8,3,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,830,-7,0,955,-11,0,0 +2013,8,6,2,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1815,23,1,1945,8,0,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1530,-4,0,1849,-14,0,0 +2013,10,10,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,835,1,0,955,-7,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1835,0,,2004,0,1,1 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,955,-6,0,1254,-28,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1025,0,0,1056,-13,0,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1015,-2,0,1131,-12,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1800,32,1,2028,28,1,0 +2013,9,24,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,-2,0,1940,-4,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,46,1,2250,27,1,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,-5,0,1934,11,0,0 +2013,10,8,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1830,-1,0,2053,-6,0,0 +2013,5,6,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,719,-17,0,0 +2013,9,12,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1054,2,0,1309,91,1,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,850,40,1,1120,55,1,0 +2013,9,15,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1700,-4,0,1750,-9,0,0 +2013,4,26,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,1205,10,0,0 +2013,7,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,2,0,2020,23,1,0 +2013,6,2,7,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,600,-2,0,757,10,0,0 +2013,8,15,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,35,1,1735,7,0,0 +2013,8,18,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1615,-6,0,1759,-13,0,0 +2013,10,28,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-6,0,916,-2,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1350,32,1,1830,13,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,600,20,1,806,1,0,0 +2013,4,25,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,632,-8,0,0 +2013,7,16,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,850,-4,0,1022,-9,0,0 +2013,10,13,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,-11,0,1150,4,0,0 +2013,7,28,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1140,-1,0,1304,-6,0,0 +2013,4,4,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1840,9,0,2057,3,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2030,-4,0,2253,-14,0,0 +2013,4,11,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,71,1,909,37,1,0 +2013,6,12,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,605,-8,0,750,14,0,0 +2013,8,13,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,845,-2,0,1100,-4,0,0 +2013,5,15,3,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,16,1,1105,1,0,0 +2013,6,1,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1125,18,1,1305,21,1,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,191,1,1612,252,1,0 +2013,8,2,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,700,-2,0,805,0,0,0 +2013,4,2,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1700,18,1,2225,10,0,0 +2013,7,29,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,4,0,800,-5,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-3,0,930,-20,0,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,630,-1,0,945,-8,0,0 +2013,7,29,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-2,0,641,4,0,0 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,750,9,0,1546,-2,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,-3,0,1003,-4,0,0 +2013,7,15,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1517,-9,0,1621,-11,0,0 +2013,8,23,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,0,0,1439,0,0,0 +2013,8,27,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,-3,0,1325,-2,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,3,0,1349,5,0,0 +2013,7,31,3,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-12,0,1913,-10,0,0 +2013,8,31,6,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,835,-2,0,1044,-9,0,0 +2013,10,29,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,1,0,1950,-1,0,0 +2013,10,23,3,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1835,32,1,2015,13,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,-1,0,1003,-18,0,0 +2013,6,25,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1150,7,0,1337,1,0,0 +2013,10,24,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,820,-7,0,1015,4,0,0 +2013,8,24,6,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,810,-3,0,1102,-28,0,0 +2013,9,13,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,57,1,717,56,1,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1740,17,1,2315,1,0,0 +2013,4,9,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-4,0,925,-18,0,0 +2013,10,15,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,900,-2,0,1040,-8,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,745,8,0,1235,5,0,0 +2013,5,30,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,700,-5,0,952,-20,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,0,0,1325,-1,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1135,5,0,1725,73,1,0 +2013,10,21,1,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1250,11,0,1610,-4,0,0 +2013,7,30,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1730,0,0,1800,-8,0,0 +2013,4,28,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,-7,0,1849,0,0,0 +2013,10,13,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-1,0,950,-9,0,0 +2013,4,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,-2,0,1105,-14,0,0 +2013,7,24,3,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,-4,0,1950,-7,0,0 +2013,8,14,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1312,23,1,2142,25,1,0 +2013,7,6,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1741,-1,0,1903,17,1,0 +2013,5,1,3,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-5,0,1545,-8,0,0 +2013,8,29,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2040,64,1,2210,52,1,0 +2013,10,3,4,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1535,-3,0,1700,-13,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,849,-3,0,946,-15,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1045,-2,0,1205,-8,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1640,-3,0,1833,-15,0,0 +2013,7,3,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,13,0,1532,58,1,0 +2013,6,25,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-4,0,1554,-2,0,0 +2013,8,1,4,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,600,-3,0,1409,-6,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,34,1,2120,65,1,0 +2013,4,12,5,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1925,11,0,2122,6,0,0 +2013,8,25,7,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,-7,0,1205,-2,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,-3,0,1152,-17,0,0 +2013,5,11,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-10,0,1247,-7,0,0 +2013,10,25,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,3,0,1430,-2,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,0,0,1313,-20,0,0 +2013,5,21,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1624,53,1,1823,53,1,0 +2013,7,27,6,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,37,1,1425,24,1,0 +2013,8,17,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1517,3,0,1621,4,0,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,30,1,2047,58,1,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1610,54,1,1817,42,1,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,700,0,0,850,-13,0,0 +2013,8,31,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1618,-1,0,1705,0,0,0 +2013,5,19,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,1,0,2355,39,1,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2210,8,0,2310,3,0,0 +2013,10,16,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1908,18,1,2023,19,1,0 +2013,8,27,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,-4,0,1846,-12,0,0 +2013,8,1,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-4,0,1348,-11,0,0 +2013,6,12,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,12,0,1435,17,1,0 +2013,6,10,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-4,0,1143,-15,0,0 +2013,6,20,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,930,0,0,1409,-18,0,0 +2013,10,26,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,0,,1349,0,1,1 +2013,8,13,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1115,11,0,1357,5,0,0 +2013,4,13,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,910,9,0,1055,-6,0,0 +2013,5,13,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,841,-9,0,1033,-45,0,0 +2013,8,27,2,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,9,0,1620,6,0,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1545,30,1,1650,22,1,0 +2013,5,12,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1920,8,0,2328,-18,0,0 +2013,9,2,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,732,-1,0,853,-10,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,2,0,1458,-1,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1420,5,0,1515,0,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-3,0,1150,-11,0,0 +2013,7,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1305,1,0,1405,-1,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2150,65,1,25,46,1,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1640,39,1,1924,23,1,0 +2013,4,22,1,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,950,-1,0,1100,10,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1450,8,0,1809,13,0,0 +2013,5,24,5,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,38,1,2034,7,0,0 +2013,10,17,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,630,-4,0,950,-14,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1000,-4,0,1209,-13,0,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,551,-9,0,700,-4,0,0 +2013,9,15,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-5,0,845,-23,0,0 +2013,7,23,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-3,0,905,-10,0,0 +2013,7,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1240,70,1,1655,74,1,0 +2013,6,11,2,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1817,6,0,2108,1,0,0 +2013,5,6,1,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1545,3,0,1643,5,0,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,605,-1,0,715,4,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1320,43,1,1435,42,1,0 +2013,4,26,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1016,-6,0,1143,19,1,0 +2013,10,17,4,OO,10423,Austin - Bergstrom International,Austin,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1403,-1,0,1758,-17,0,0 +2013,9,17,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2055,-7,0,2155,-17,0,0 +2013,10,1,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,-6,0,1511,-16,0,0 +2013,6,20,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1830,-3,0,2038,-24,0,0 +2013,7,20,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,2000,16,1,2205,28,1,0 +2013,4,6,6,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,735,-7,0,850,-33,0,0 +2013,10,5,6,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,-8,0,1756,-12,0,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,0,,1640,0,1,1 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1620,-3,0,1959,-25,0,0 +2013,10,14,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,940,10,0,1514,10,0,0 +2013,8,30,5,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1700,-6,0,1856,-5,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1325,4,0,1640,-6,0,0 +2013,9,17,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1905,1,0,2040,-4,0,0 +2013,8,9,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,35,21,1,613,33,1,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1621,8,0,1758,-2,0,0 +2013,9,7,6,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1920,-4,0,2131,-14,0,0 +2013,6,5,3,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1859,-8,0,2134,-20,0,0 +2013,9,1,7,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1359,4,0,1556,-3,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1310,9,0,1448,11,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,-2,0,2030,54,1,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-4,0,1710,-6,0,0 +2013,10,2,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,3,0,2300,-9,0,0 +2013,8,9,5,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-4,0,2108,-10,0,0 +2013,5,28,2,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1010,-4,0,1455,8,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1256,59,1,1425,85,1,0 +2013,9,7,6,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-3,0,1558,-51,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,810,14,0,905,6,0,0 +2013,6,26,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,830,0,,850,0,1,1 +2013,7,5,5,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1840,-5,0,2205,-6,0,0 +2013,9,11,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-5,0,1258,-10,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,854,3,0,1047,-12,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,106,1,1255,90,1,0 +2013,6,7,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1420,33,1,1550,32,1,0 +2013,4,24,3,OO,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1426,0,,1606,0,1,1 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1732,0,0,1929,-10,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,805,-4,0,1235,-17,0,0 +2013,10,17,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1455,0,0,1630,9,0,0 +2013,4,14,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,-2,0,1440,-11,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,-5,0,842,4,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1342,2,0,1512,-12,0,0 +2013,7,28,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-7,0,1019,3,0,0 +2013,10,28,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,20,1,1515,20,1,0 +2013,8,7,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,10,0,1431,17,1,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,33,1,2358,19,1,0 +2013,8,29,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,855,-2,0,955,-5,0,0 +2013,8,8,4,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2035,8,0,2220,-15,0,0 +2013,8,4,7,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2035,2,0,2254,6,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,910,114,1,1230,108,1,0 +2013,5,21,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1633,-21,0,0 +2013,10,16,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,810,-10,0,910,-4,0,0 +2013,6,27,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,45,1,920,59,1,0 +2013,7,8,1,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,111,1,2354,94,1,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1450,4,0,1600,-8,0,0 +2013,9,29,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-6,0,1910,-11,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,3,0,2100,2,0,0 +2013,9,1,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1040,-2,0,1145,-10,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,935,0,0,1725,-4,0,0 +2013,5,8,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1550,0,0,1650,-8,0,0 +2013,9,12,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1515,293,1,1904,270,1,0 +2013,8,2,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2115,-5,0,510,-9,0,0 +2013,7,22,1,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1108,-6,0,1259,-26,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1735,0,0,1935,-16,0,0 +2013,9,10,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,801,-15,0,0 +2013,9,13,5,OO,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1843,-9,0,2005,-21,0,0 +2013,7,24,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-4,0,1321,-38,0,0 +2013,10,13,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1101,6,0,1230,15,1,0 +2013,8,14,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1638,-5,0,1900,15,1,0 +2013,7,28,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,11,0,1533,7,0,0 +2013,6,8,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,2,0,1235,-3,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,5,0,1809,15,1,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2105,90,1,2225,96,1,0 +2013,6,24,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,847,1,0,0 +2013,9,23,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,845,3,0,1132,-3,0,0 +2013,7,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,-1,0,1715,30,1,0 +2013,7,12,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,0,,830,0,1,1 +2013,9,17,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1213,0,0,1330,0,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,0,0,1640,4,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1235,15,1,1320,15,1,0 +2013,4,11,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,44,1,1800,42,1,0 +2013,5,7,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-14,0,925,-27,0,0 +2013,7,22,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,-9,0,1500,-9,0,0 +2013,7,18,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,0,,1820,0,1,1 +2013,8,20,2,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1135,29,1,1614,15,1,0 +2013,9,21,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1710,4,0,1905,0,0,0 +2013,7,11,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-7,0,844,-10,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,12,0,1230,3,0,0 +2013,5,20,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-4,0,1814,-9,0,0 +2013,4,18,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,0,0,2014,-4,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1835,8,0,1943,-4,0,0 +2013,5,16,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1050,-5,0,1359,-7,0,0 +2013,5,10,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1245,-16,0,0 +2013,10,10,4,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,540,-5,0,850,-5,0,0 +2013,10,8,2,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1154,-1,0,2025,3,0,0 +2013,10,3,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2327,0,0,515,7,0,0 +2013,4,24,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,645,-4,0,815,-4,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,9,0,1620,-14,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1710,39,1,1850,19,1,0 +2013,9,15,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-8,0,848,-17,0,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,850,8,0,958,5,0,0 +2013,7,3,3,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,-6,0,745,-2,0,0 +2013,8,6,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,35,1,2202,21,1,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-3,0,1849,-3,0,0 +2013,9,15,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1209,-3,0,1444,-23,0,0 +2013,4,12,5,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,726,0,0,928,-34,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,939,-3,0,1146,-12,0,0 +2013,6,12,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,1,0,2217,3,0,0 +2013,8,10,6,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,639,-5,0,757,-23,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2031,-4,0,2100,-20,0,0 +2013,9,29,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1715,2,0,1750,-10,0,0 +2013,7,7,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,645,-24,0,0 +2013,6,8,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1419,14,0,1740,35,1,0 +2013,5,12,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1355,1,0,2000,13,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1410,-2,0,1505,-3,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1515,1,0,1724,-7,0,0 +2013,4,18,4,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2210,22,1,2256,32,1,0 +2013,5,7,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1554,-4,0,1820,-13,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1940,0,0,2310,12,0,0 +2013,6,25,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1626,-2,0,1835,1,0,0 +2013,6,10,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1249,-5,0,1429,-6,0,0 +2013,7,20,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,6,0,1830,-7,0,0 +2013,9,24,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1359,-4,0,2205,-15,0,0 +2013,8,27,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,8,0,842,-3,0,0 +2013,9,2,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1225,-10,0,1338,-24,0,0 +2013,5,7,2,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,951,-15,0,0 +2013,5,9,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1255,0,,1700,0,1,1 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1746,161,1,1848,161,1,0 +2013,10,2,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-5,0,945,-11,0,0 +2013,9,20,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,654,-3,0,750,-4,0,0 +2013,9,24,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,725,0,0,850,-3,0,0 +2013,10,7,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,8,0,1630,4,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,7,0,1013,-3,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1935,116,1,20,92,1,0 +2013,7,17,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,18,1,1915,-7,0,0 +2013,8,11,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-8,0,1345,-15,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2335,-6,0,624,-22,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1320,16,1,1545,5,0,0 +2013,6,8,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-3,0,1255,-8,0,0 +2013,9,12,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1128,0,0,1202,-16,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,956,-4,0,1158,-2,0,0 +2013,7,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-2,0,1915,-2,0,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,37,1,2151,32,1,0 +2013,6,8,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1317,-3,0,1456,-7,0,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1008,-7,0,1148,-22,0,0 +2013,6,15,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2128,-2,0,2251,5,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-6,0,1735,-28,0,0 +2013,6,21,5,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,30,1,1950,21,1,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1955,-4,0,2139,-18,0,0 +2013,6,25,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,9,0,1916,21,1,0 +2013,7,10,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,1,0,1620,-3,0,0 +2013,8,26,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1308,-9,0,1435,-10,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1215,-3,0,1350,-10,0,0 +2013,4,29,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-4,0,1100,-16,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,73,1,1225,85,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1310,-3,0,1640,-15,0,0 +2013,9,22,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,-4,0,1705,-5,0,0 +2013,5,2,4,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2130,15,1,2357,11,0,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,935,-9,0,1040,-12,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,5,0,1815,-14,0,0 +2013,6,25,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,-6,0,840,7,0,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1512,0,,1736,0,1,1 +2013,9,27,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,755,-8,0,1036,1,0,0 +2013,7,1,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-2,0,1733,21,1,0 +2013,4,12,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,634,-5,0,920,-21,0,0 +2013,8,20,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-1,0,1704,0,0,0 +2013,6,14,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1531,-5,0,1700,-5,0,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,1,0,1850,-4,0,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,840,7,0,1020,-1,0,0 +2013,8,14,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-1,0,1128,-7,0,0 +2013,9,20,5,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,124,1,1730,115,1,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1040,-1,0,1133,1,0,0 +2013,10,28,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1545,19,1,1800,18,1,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,24,1,1900,23,1,0 +2013,6,24,1,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,14,0,1735,0,0,0 +2013,5,12,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1230,-5,0,1506,-8,0,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,1,0,1135,1,0,0 +2013,10,21,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,-7,0,945,-13,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1901,-6,0,2213,-35,0,0 +2013,8,24,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,11,0,1715,11,0,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,0,0,932,-5,0,0 +2013,7,12,5,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1020,12,0,1245,4,0,0 +2013,9,17,2,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1114,-7,0,1239,-11,0,0 +2013,8,12,1,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1939,-11,0,2048,-19,0,0 +2013,7,29,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,160,1,1630,155,1,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2145,-2,0,5,-11,0,0 +2013,8,27,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-10,0,920,-10,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1856,54,1,2036,36,1,0 +2013,7,4,4,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1115,-5,0,1405,-4,0,0 +2013,8,7,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,847,-6,0,1042,8,0,0 +2013,4,3,3,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,45,19,1,622,9,0,0 +2013,5,18,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,19,1,1600,16,1,0 +2013,5,26,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,840,-3,0,1205,-6,0,0 +2013,7,7,7,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,634,-5,0,819,9,0,0 +2013,8,9,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1116,1,0,1232,-5,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1740,-5,0,1945,-22,0,0 +2013,9,15,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1905,21,1,1950,24,1,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1359,33,1,1647,20,1,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1226,107,1,1359,96,1,0 +2013,10,24,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-6,0,1119,-18,0,0 +2013,10,4,5,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,728,-5,0,0 +2013,4,15,1,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1505,22,1,2345,15,1,0 +2013,9,18,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1337,-7,0,1558,-23,0,0 +2013,7,18,4,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1935,23,1,2120,52,1,0 +2013,8,18,7,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1055,0,0,1918,0,0,0 +2013,5,3,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,-1,0,1853,-22,0,0 +2013,6,13,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,5,0,1832,13,0,0 +2013,4,22,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1406,-3,0,1700,-18,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1610,-3,0,1715,-6,0,0 +2013,6,6,4,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1345,-3,0,2203,-3,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1455,-4,0,1620,-9,0,0 +2013,6,23,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1744,-5,0,2330,1,0,0 +2013,9,18,3,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-6,0,2052,4,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,-3,0,1903,-17,0,0 +2013,6,27,4,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,-3,0,2305,-14,0,0 +2013,8,29,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1500,2,0,1634,0,0,0 +2013,6,7,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1937,-4,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1320,39,1,1630,34,1,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-4,0,930,-12,0,0 +2013,5,8,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,-10,0,2042,-18,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1920,-3,0,2301,-17,0,0 +2013,5,7,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1535,-3,0,1655,-4,0,0 +2013,9,18,3,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1133,-1,0,1358,-16,0,0 +2013,8,29,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,926,19,1,1119,7,0,0 +2013,9,20,5,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1455,33,1,1730,37,1,0 +2013,9,19,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,7,0,1604,10,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-2,0,1305,-10,0,0 +2013,8,8,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,50,1,1657,41,1,0 +2013,4,24,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-4,0,1315,-7,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1055,7,0,1420,-12,0,0 +2013,9,1,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,-2,0,1705,-11,0,0 +2013,5,19,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-7,0,1142,-1,0,0 +2013,8,9,5,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1825,84,1,2147,118,1,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1150,-5,0,1305,2,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,645,-3,0,929,-9,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-2,0,1237,-1,0,0 +2013,4,19,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,912,18,1,1153,17,1,0 +2013,10,10,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1212,-5,0,1450,-14,0,0 +2013,7,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2206,-4,0,2350,-19,0,0 +2013,4,13,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1230,-7,0,1832,-4,0,0 +2013,7,2,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1112,-5,0,0 +2013,5,7,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,547,10,0,845,-7,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1505,-6,0,2252,-27,0,0 +2013,5,7,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,907,-54,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,915,-1,0,1137,12,0,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-1,0,2222,31,1,0 +2013,6,14,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1340,-5,0,1700,23,1,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1355,8,0,1530,-7,0,0 +2013,4,3,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,0,0,1349,5,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2155,45,1,2310,47,1,0 +2013,10,13,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1513,12,0,1657,4,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,608,-4,0,1406,-28,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,9,0,1313,-2,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1948,3,0,2335,-13,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1137,13,0,1349,10,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,6,0,1351,2,0,0 +2013,6,30,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-9,0,1530,-20,0,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1331,1,0,1722,-3,0,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1315,-3,0,1450,-10,0,0 +2013,4,7,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,6,0,1920,0,0,0 +2013,7,20,6,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1259,14,0,1543,21,1,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1500,21,1,1815,3,0,0 +2013,8,11,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1440,-1,0,1606,-5,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1255,-2,0,1600,-9,0,0 +2013,7,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1517,3,0,1655,2,0,0 +2013,10,10,4,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,836,-3,0,1124,-4,0,0 +2013,8,29,4,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-10,0,610,2,0,0 +2013,10,23,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,938,-6,0,1127,-2,0,0 +2013,9,6,5,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1903,-10,0,1926,-7,0,0 +2013,4,19,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-1,0,1820,-14,0,0 +2013,7,31,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-5,0,843,1,0,0 +2013,10,18,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,716,-9,0,914,6,0,0 +2013,9,2,1,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1257,5,0,1429,14,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,1,0,855,-15,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,810,4,0,1215,-3,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,2006,10,0,2105,-13,0,0 +2013,7,23,2,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,608,59,1,736,141,1,0 +2013,8,9,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1605,0,,1640,0,1,1 +2013,10,19,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,930,-4,0,1636,-15,0,0 +2013,4,8,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,955,0,0,1235,-7,0,0 +2013,6,19,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1551,3,0,1,-2,0,0 +2013,10,9,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,1,0,1757,9,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1555,-2,0,2045,-6,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,110,1,1924,76,1,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,-1,0,1930,-5,0,0 +2013,10,17,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1956,-7,0,2112,-18,0,0 +2013,8,30,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-7,0,1334,-13,0,0 +2013,4,14,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,1,0,1344,-15,0,0 +2013,5,7,2,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,715,-6,0,1010,-31,0,0 +2013,7,29,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2059,28,1,2226,19,1,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1905,13,0,2125,-12,0,0 +2013,6,24,1,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1930,97,1,2246,101,1,0 +2013,7,2,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,33,1,2305,34,1,0 +2013,7,9,2,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1735,6,0,2044,18,1,0 +2013,7,12,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,941,13,0,1220,0,0,0 +2013,9,8,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,2000,151,1,2359,135,1,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-7,0,1453,-16,0,0 +2013,8,11,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,-6,0,1925,0,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1256,-8,0,1521,-6,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,4,0,1110,12,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1605,-6,0,1655,-15,0,0 +2013,6,5,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1056,-5,0,1220,-9,0,0 +2013,9,10,2,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1120,14,0,1259,9,0,0 +2013,5,21,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-3,0,1105,27,1,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,2323,-3,0,505,-5,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,27,1,1900,20,1,0 +2013,4,24,3,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1728,5,0,1905,0,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1430,6,0,1640,0,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,5,0,2200,-1,0,0 +2013,4,26,5,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-3,0,2033,-18,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-1,0,1745,-13,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1855,126,1,2110,129,1,0 +2013,4,7,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1945,-2,0,2145,-23,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1313,-2,0,1419,-14,0,0 +2013,8,20,2,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,3,-9,0,507,-6,0,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1022,-6,0,1605,-30,0,0 +2013,5,26,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1841,72,1,2358,46,1,0 +2013,9,26,4,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2030,0,0,2147,0,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1350,4,0,1603,-14,0,0 +2013,4,18,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1122,-3,0,1305,-8,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1956,-3,0,2144,-19,0,0 +2013,7,2,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2030,15,1,2130,9,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1548,-3,0,1714,-9,0,0 +2013,10,25,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,5,0,515,4,0,0 +2013,8,8,4,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1225,71,1,1359,75,1,0 +2013,8,10,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,63,1,2145,59,1,0 +2013,8,9,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2213,-1,0,2306,-11,0,0 +2013,6,22,6,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1300,6,0,1450,12,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,-5,0,2214,-11,0,0 +2013,5,11,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,-4,0,944,-23,0,0 +2013,5,8,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1110,3,0,1205,-11,0,0 +2013,7,28,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1210,-1,0,1330,-4,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,605,1,0,729,-5,0,0 +2013,9,5,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,19,1,855,16,1,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2020,57,1,2335,53,1,0 +2013,7,16,2,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,-8,0,2203,-13,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,20,1,1034,31,1,0 +2013,5,1,3,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2022,-3,0,2302,-5,0,0 +2013,6,19,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-3,0,1314,-2,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2040,140,1,25,131,1,0 +2013,5,24,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1200,5,0,1350,13,0,0 +2013,5,13,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,16,1,1705,11,0,0 +2013,4,26,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1740,5,0,1845,-3,0,0 +2013,9,29,7,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1440,-3,0,2315,-17,0,0 +2013,7,16,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-2,0,1042,2,0,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,847,54,1,1150,28,1,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2210,-2,0,14,-8,0,0 +2013,10,28,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,952,-5,0,1116,2,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,-3,0,1040,-1,0,0 +2013,8,26,1,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1928,-4,0,2100,-15,0,0 +2013,6,18,2,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,805,-6,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,920,13,0,1020,8,0,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,2135,20,1,2325,33,1,0 +2013,4,9,2,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1450,-6,0,1745,-15,0,0 +2013,10,11,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,11,0,1225,16,1,0 +2013,10,15,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,855,-2,0,1152,-19,0,0 +2013,5,9,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1853,-3,0,2100,-9,0,0 +2013,4,15,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,703,-1,0,1021,-3,0,0 +2013,5,2,4,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-5,0,1810,-7,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1631,183,1,1951,169,1,0 +2013,9,24,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,15,1,1157,13,0,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,37,1,1210,35,1,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1300,-5,0,1544,-6,0,0 +2013,5,18,6,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,845,-3,0,1437,-26,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1630,-5,0,1905,-33,0,0 +2013,7,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,916,4,0,1130,-5,0,0 +2013,5,26,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1906,11,0,2224,-4,0,0 +2013,10,11,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,9,0,1320,24,1,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,51,1,1715,44,1,0 +2013,9,13,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-5,0,1411,-19,0,0 +2013,6,20,4,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1108,-3,0,1259,-7,0,0 +2013,6,2,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2055,40,1,2220,34,1,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-5,0,1305,-16,0,0 +2013,8,16,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-4,0,1516,-8,0,0 +2013,7,11,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2045,-10,0,2159,-18,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-3,0,1054,-18,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,819,100,1,1100,90,1,0 +2013,5,4,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1030,26,1,1205,16,1,0 +2013,4,25,4,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,840,-1,0,1021,18,1,0 +2013,6,15,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,69,1,2159,58,1,0 +2013,6,2,7,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-9,0,920,-15,0,0 +2013,7,30,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,0,0,2130,-3,0,0 +2013,10,28,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1245,-6,0,1458,-8,0,0 +2013,6,23,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-1,0,1920,-14,0,0 +2013,10,16,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,-8,0,1920,-6,0,0 +2013,5,8,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1357,8,0,1546,16,1,0 +2013,5,29,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1242,-1,0,1939,1,0,0 +2013,5,11,6,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1259,7,0,1430,12,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,-5,0,1448,19,1,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1855,-2,0,1952,-10,0,0 +2013,5,1,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,-3,0,731,0,1,1 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1621,11,0,1742,-16,0,0 +2013,4,18,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,10,0,1406,12,0,0 +2013,4,20,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1835,5,0,1920,12,0,0 +2013,8,15,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2140,-1,0,542,21,1,0 +2013,8,23,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,755,-3,0,855,-4,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-5,0,1759,-1,0,0 +2013,4,8,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,7,0,1145,10,0,0 +2013,6,16,7,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,-3,0,2150,13,0,0 +2013,6,14,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,645,102,1,845,91,1,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,5,0,2110,-5,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,6,0,1805,-2,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,4,0,1415,-5,0,0 +2013,9,22,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1825,7,0,1900,-6,0,0 +2013,8,7,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1059,-5,0,1430,13,0,0 +2013,7,6,6,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,810,-6,0,1027,-3,0,0 +2013,8,2,5,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,645,6,0,930,-4,0,0 +2013,4,10,3,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1310,103,1,2135,118,1,0 +2013,4,8,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1930,-9,0,2251,-24,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1545,-2,0,1713,-7,0,0 +2013,10,10,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1610,-3,0,1713,-3,0,0 +2013,5,25,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1140,13,0,1455,-18,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-7,0,1251,-18,0,0 +2013,9,23,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1348,-3,0,1721,-11,0,0 +2013,6,15,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1254,-4,0,1532,1,0,0 +2013,6,27,4,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,846,-6,0,1035,-18,0,0 +2013,6,5,3,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1720,20,1,2000,1,0,0 +2013,10,28,1,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,36,1,1915,31,1,0 +2013,4,15,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-9,0,2226,-9,0,0 +2013,5,7,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1938,14,0,2159,35,1,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1345,-2,0,1510,-13,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,-8,0,935,2,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1948,82,1,2257,119,1,0 +2013,4,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,2016,-9,0,2341,-8,0,0 +2013,4,5,5,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,6,0,1008,3,0,0 +2013,9,14,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-8,0,1723,-3,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1000,2,0,1405,-3,0,0 +2013,4,24,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1030,58,1,1150,46,1,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1945,1,0,2128,-9,0,0 +2013,5,15,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-4,0,720,-13,0,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1645,-5,0,1813,-19,0,0 +2013,4,3,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,926,-10,0,0 +2013,4,17,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1147,-4,0,2029,-5,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,0,,1005,0,1,1 +2013,4,16,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1610,2,0,1732,5,0,0 +2013,9,13,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,610,-14,0,655,-15,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2220,20,1,2300,23,1,0 +2013,6,20,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1515,8,0,1730,10,0,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,605,-5,0,941,-14,0,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,-7,0,1120,-10,0,0 +2013,5,15,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1655,0,0,1944,-31,0,0 +2013,5,19,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,-7,0,945,-21,0,0 +2013,6,27,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1805,-1,0,1936,22,1,0 +2013,5,2,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-6,0,949,-11,0,0 +2013,5,10,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1135,-4,0,1623,-2,0,0 +2013,6,26,3,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,91,1,1948,102,1,0 +2013,4,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-6,0,1422,-10,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2035,1,0,2221,11,0,0 +2013,7,29,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,-5,0,951,-11,0,0 +2013,9,10,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1004,-3,0,1137,1,0,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,605,8,0,855,24,1,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1330,-9,0,1708,-17,0,0 +2013,6,20,4,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,18,1,2005,3,0,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1003,-6,0,1139,-32,0,0 +2013,4,7,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,629,-6,0,926,-16,0,0 +2013,5,3,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,722,-7,0,1008,-6,0,0 +2013,9,20,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,7,0,2100,-20,0,0 +2013,8,6,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1955,-3,0,2204,0,0,0 +2013,8,19,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,0,0,1115,-13,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1308,2,0,1611,-24,0,0 +2013,7,9,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1338,4,0,1616,-5,0,0 +2013,4,29,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,950,-1,0,1204,-7,0,0 +2013,10,18,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,855,-5,0,1025,-12,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1509,1,0,1741,0,0,0 +2013,7,8,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,804,4,0,940,-9,0,0 +2013,9,24,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-7,0,1630,1,0,0 +2013,4,6,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,6,0,706,-2,0,0 +2013,6,17,1,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1425,-2,0,1618,-10,0,0 +2013,9,23,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1247,-5,0,1535,-17,0,0 +2013,7,9,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1820,13,0,2005,-3,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,830,-3,0,950,-4,0,0 +2013,10,16,3,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-1,0,1219,-6,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,840,5,0,1100,1,0,0 +2013,9,13,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-5,0,2150,-4,0,0 +2013,10,9,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1028,-3,0,1256,-22,0,0 +2013,5,8,3,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,11042,Cleveland-Hopkins International,Cleveland,OH,1057,0,0,1424,15,1,0 +2013,9,14,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-7,0,903,3,0,0 +2013,4,29,1,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1530,31,1,1805,58,1,0 +2013,10,15,2,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,950,4,0,1205,2,0,0 +2013,8,8,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1905,9,0,50,-2,0,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,2,0,1520,-1,0,0 +2013,10,26,6,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-11,0,1120,-14,0,0 +2013,7,17,3,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,12,0,2025,14,0,0 +2013,6,2,7,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1722,-6,0,2300,-2,0,0 +2013,9,22,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,-4,0,1500,-7,0,0 +2013,5,31,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,610,-3,0,848,0,0,0 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1516,0,0,1800,6,0,0 +2013,10,12,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1740,17,1,1905,20,1,0 +2013,5,27,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-6,0,852,-19,0,0 +2013,9,6,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,946,-5,0,1041,-23,0,0 +2013,4,28,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,820,-2,0,920,-1,0,0 +2013,8,27,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-8,0,1949,-23,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,0,0,1525,-10,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1052,-1,0,1154,-20,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,815,-2,0,1030,-15,0,0 +2013,5,19,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,947,23,1,1317,16,1,0 +2013,6,6,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,845,-8,0,1645,-14,0,0 +2013,6,8,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,-3,0,1630,-4,0,0 +2013,6,26,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-3,0,636,-5,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,-1,0,2213,3,0,0 +2013,7,28,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1525,18,1,1650,23,1,0 +2013,10,29,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-6,0,920,-18,0,0 +2013,8,21,3,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1520,1,0,1950,-7,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,14,0,1630,-14,0,0 +2013,10,25,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1552,9,0,1800,-4,0,0 +2013,7,14,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,20,1,746,15,1,0 +2013,6,15,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1930,-5,0,2050,-12,0,0 +2013,7,23,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-3,0,1000,7,0,0 +2013,8,25,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,19,1,726,9,0,0 +2013,9,13,5,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1730,0,0,2005,6,0,0 +2013,4,9,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,934,2,0,1114,-7,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1525,-6,0,1650,-17,0,0 +2013,7,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1749,15,1,2027,14,0,0 +2013,8,7,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,940,-3,0,1050,-11,0,0 +2013,4,15,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,815,-2,0,1649,-22,0,0 +2013,5,17,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,0,0,1730,18,1,0 +2013,4,19,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,4,0,1617,-14,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,-1,0,1207,-18,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1805,4,0,2320,-16,0,0 +2013,4,30,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,-7,0,2125,-7,0,0 +2013,6,26,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,905,15,1,1030,6,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,7,0,344,11,0,0 +2013,5,3,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,605,-1,0,700,-16,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1900,191,1,2050,158,1,0 +2013,10,28,1,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1940,2,0,2240,36,1,0 +2013,8,15,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,3,0,2005,-22,0,0 +2013,10,13,7,EV,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-1,0,1334,-3,0,0 +2013,7,20,6,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2015,-12,0,2300,-16,0,0 +2013,5,14,2,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,745,-2,0,851,-7,0,0 +2013,4,7,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,905,-4,0,1020,-4,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1240,38,1,1325,33,1,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,646,92,1,734,89,1,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1729,-2,0,1929,-24,0,0 +2013,6,30,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-4,0,957,5,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1130,-1,0,1300,-15,0,0 +2013,5,16,4,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1214,-6,0,1819,-30,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-7,0,922,-4,0,0 +2013,6,15,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1206,-20,0,0 +2013,6,8,6,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1659,25,1,1919,19,1,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,32,1,1455,23,1,0 +2013,9,22,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1800,17,1,2034,15,1,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1120,2,0,1325,3,0,0 +2013,5,3,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,0,0,755,-7,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1115,6,0,1305,-9,0,0 +2013,8,11,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1050,4,0,1433,-16,0,0 +2013,7,14,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,348,1,1846,333,1,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1356,5,0,1436,-6,0,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2005,20,1,2130,18,1,0 +2013,5,27,1,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-4,0,1014,-22,0,0 +2013,8,13,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1530,118,1,1645,129,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,910,-5,0,1034,-10,0,0 +2013,7,10,3,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1156,-7,0,1312,3,0,0 +2013,5,23,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1230,-1,0,1309,-1,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,725,0,0,1020,-2,0,0 +2013,8,10,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1820,1,0,2112,-23,0,0 +2013,8,21,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,611,-8,0,1053,-8,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,-3,0,1850,11,0,0 +2013,10,12,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,4,0,1755,-2,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1058,0,0,1346,-6,0,0 +2013,7,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,750,4,0,905,1,0,0 +2013,5,30,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2011,-7,0,2328,-28,0,0 +2013,9,27,5,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1300,-8,0,1410,-9,0,0 +2013,9,9,1,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,545,-5,0,810,-17,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-5,0,1757,-16,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1330,17,1,1620,2,0,0 +2013,10,16,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,535,-3,0,935,-21,0,0 +2013,8,3,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,62,1,1406,47,1,0 +2013,4,26,5,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,2255,1,0,602,1,0,0 +2013,10,24,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-1,0,1335,-3,0,0 +2013,8,12,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,32,1,2155,51,1,0 +2013,9,22,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-7,0,1218,-5,0,0 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,57,1,1944,45,1,0 +2013,4,14,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1215,-1,0,1451,-12,0,0 +2013,8,26,1,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,845,-1,0,1031,-17,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,0,0,1150,-5,0,0 +2013,5,18,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1004,-1,0,0 +2013,9,25,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-4,0,1451,-3,0,0 +2013,10,3,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,73,1,2030,69,1,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,956,-7,0,1832,1,0,0 +2013,8,1,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1922,-6,0,2130,-1,0,0 +2013,6,5,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,54,1,1755,29,1,0 +2013,4,3,3,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,0,0,1549,-9,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,122,1,1925,108,1,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1130,-14,0,0 +2013,10,15,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,842,-3,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-6,0,1409,-12,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1535,-8,0,1814,-10,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,710,-8,0,0 +2013,7,29,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,5,0,1205,4,0,0 +2013,9,19,4,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1539,2,0,1824,5,0,0 +2013,7,25,4,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,68,1,2142,66,1,0 +2013,10,4,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,805,17,1,930,13,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,920,-3,0,1510,-18,0,0 +2013,7,14,7,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,0,,1409,0,1,1 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,209,1,1240,205,1,0 +2013,5,28,2,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,-3,0,1815,-9,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,10,0,1519,4,0,0 +2013,9,18,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1205,-7,0,1350,-30,0,0 +2013,8,20,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1850,22,1,2135,14,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1633,-5,0,1817,-6,0,0 +2013,7,5,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,815,3,0,1641,0,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1859,57,1,2117,52,1,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2050,-1,0,2255,-9,0,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1010,0,0,1420,-12,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1602,-2,0,1730,-6,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,48,1,2305,44,1,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-3,0,2003,6,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,857,-2,0,1014,-27,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,0,0,1924,-5,0,0 +2013,9,5,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-5,0,1636,-10,0,0 +2013,10,16,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-6,0,1515,-2,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,-6,0,1816,-12,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1859,32,1,2335,37,1,0 +2013,10,5,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,66,1,1605,55,1,0 +2013,10,15,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,57,1,1940,76,1,0 +2013,8,26,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1425,21,1,1545,18,1,0 +2013,6,27,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,835,6,0,1055,0,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1010,0,0,1200,2,0,0 +2013,10,16,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2125,-8,0,2230,-26,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,0,0,2200,-11,0,0 +2013,8,21,3,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1940,28,1,2245,22,1,0 +2013,7,23,2,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,9,0,1100,74,1,0 +2013,7,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-3,0,2110,1,0,0 +2013,10,31,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1103,5,0,1345,-2,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1850,-2,0,1953,-11,0,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,850,7,0,1000,52,1,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,97,1,2259,81,1,0 +2013,4,2,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,602,2,0,904,0,0,0 +2013,7,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1920,2,0,2050,4,0,0 +2013,10,16,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,800,17,1,900,29,1,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,16,1,1335,2,0,0 +2013,4,4,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-5,0,850,-14,0,0 +2013,7,5,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2258,-2,0,110,-7,0,0 +2013,10,24,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1445,141,1,1620,131,1,0 +2013,4,21,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-4,0,1700,-25,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-2,0,950,-1,0,0 +2013,8,20,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1950,19,1,2135,13,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,805,4,0,855,1,0,0 +2013,5,8,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-4,0,747,-6,0,0 +2013,7,18,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-4,0,2226,-2,0,0 +2013,4,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1642,34,1,2002,20,1,0 +2013,6,9,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-5,0,1029,-2,0,0 +2013,10,15,2,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-2,0,2030,-11,0,0 +2013,9,19,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1733,50,1,1743,48,1,0 +2013,9,4,3,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,730,-11,0,948,-1,0,0 +2013,6,4,2,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-5,0,1125,6,0,0 +2013,10,26,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,920,0,0,1025,-6,0,0 +2013,8,20,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,36,1,2000,28,1,0 +2013,6,13,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-6,0,843,-4,0,0 +2013,9,4,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,850,-6,0,1144,-26,0,0 +2013,7,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1255,-3,0,1400,-8,0,0 +2013,10,15,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,-7,0,2042,-10,0,0 +2013,4,9,2,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2328,11,0,658,29,1,0 +2013,4,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1910,-1,0,2030,-9,0,0 +2013,9,5,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1012,-16,0,0 +2013,7,12,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1950,67,1,2100,58,1,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1355,34,1,1930,9,0,0 +2013,6,27,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,31,1,1051,24,1,0 +2013,6,19,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1415,-1,0,1656,-22,0,0 +2013,5,5,7,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2040,-7,0,2300,-2,0,0 +2013,8,21,3,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1038,-8,0,1140,-22,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-7,0,915,-9,0,0 +2013,10,5,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,830,-6,0,1025,-15,0,0 +2013,4,20,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,0,,835,0,1,1 +2013,8,5,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-11,0,1556,-5,0,0 +2013,10,28,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,810,5,0,941,0,0,0 +2013,10,21,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,14,0,1929,2,0,0 +2013,4,25,4,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-6,0,1838,-9,0,0 +2013,10,16,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2055,-8,0,2304,-16,0,0 +2013,5,4,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1450,-10,0,1606,-24,0,0 +2013,7,24,3,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-4,0,1856,-14,0,0 +2013,6,5,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-9,0,629,-3,0,0 +2013,9,10,2,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-5,0,1945,-26,0,0 +2013,7,18,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,134,1,1907,117,1,0 +2013,8,15,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1250,-4,0,1535,3,0,0 +2013,5,28,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,800,-2,0,929,-9,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,839,9,0,1204,-6,0,0 +2013,5,11,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2238,7,0,629,-3,0,0 +2013,4,26,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1225,19,1,0 +2013,5,30,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,948,-9,0,1235,-19,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1825,-5,0,1925,-10,0,0 +2013,6,1,6,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1415,-3,0,1542,-11,0,0 +2013,9,30,1,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1450,0,0,1820,-3,0,0 +2013,10,14,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1104,-5,0,1200,1,0,0 +2013,5,9,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1835,-1,0,2135,25,1,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,750,-3,0,1055,-12,0,0 +2013,10,11,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1534,0,0,1707,-8,0,0 +2013,7,3,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2045,-5,0,2159,0,0,0 +2013,4,6,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,645,-7,0,802,-5,0,0 +2013,8,24,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1731,-7,0,2024,-8,0,0 +2013,5,12,7,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,4,0,1950,-12,0,0 +2013,5,5,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,68,1,1335,58,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-2,0,1245,7,0,0 +2013,9,13,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-3,0,1454,4,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1210,10,0,1400,-7,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1040,0,0,1645,-12,0,0 +2013,8,12,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,-2,0,1935,-11,0,0 +2013,6,1,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,700,14,0,1017,13,0,0 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1200,13,0,1405,8,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1317,-7,0,1609,-9,0,0 +2013,9,24,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,705,3,0,903,1,0,0 +2013,9,10,2,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1421,41,1,1545,29,1,0 +2013,8,31,6,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1700,15,1,2025,0,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2155,8,0,40,15,1,0 +2013,6,4,2,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,709,-10,0,1035,-24,0,0 +2013,5,26,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,-12,0,1924,-25,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2255,-2,0,4,17,1,0 +2013,5,11,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1050,7,0,1255,6,0,0 +2013,9,13,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1744,-3,0,2010,10,0,0 +2013,8,13,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,6,0,740,12,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,925,2,0,1400,3,0,0 +2013,8,1,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1342,89,1,1715,99,1,0 +2013,9,17,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,659,5,0,1209,-12,0,0 +2013,10,25,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,1001,11,0,0 +2013,9,5,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,815,-1,0,852,-2,0,0 +2013,9,28,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1710,95,1,1835,92,1,0 +2013,10,2,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-4,0,1257,-20,0,0 +2013,9,11,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2005,51,1,2130,62,1,0 +2013,7,17,3,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,645,-4,0,1455,-5,0,0 +2013,9,24,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-6,0,1652,4,0,0 +2013,4,27,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1609,-7,0,2200,-9,0,0 +2013,5,24,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1140,5,0,1315,-1,0,0 +2013,4,4,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1210,-11,0,1534,-17,0,0 +2013,5,7,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,0,0,1530,7,0,0 +2013,8,19,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,825,-4,0,0 +2013,10,20,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1950,-13,0,2055,-28,0,0 +2013,4,2,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1746,-14,0,0 +2013,10,15,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1125,13,0,1510,12,0,0 +2013,10,5,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1405,-5,0,1455,-12,0,0 +2013,4,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1710,-5,0,1752,-16,0,0 +2013,4,21,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-4,0,1939,-14,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1045,2,0,1246,-16,0,0 +2013,10,1,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-7,0,635,-10,0,0 +2013,6,26,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2020,50,1,2302,69,1,0 +2013,4,18,4,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1040,-1,0,1310,19,1,0 +2013,10,6,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1541,35,1,1715,20,1,0 +2013,8,26,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,-1,0,2048,-12,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,640,-3,0,750,-3,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,950,7,0,1758,8,0,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,600,-5,0,730,-18,0,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1455,-1,0,1800,3,0,0 +2013,9,26,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1940,6,0,2035,-3,0,0 +2013,5,20,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,-1,0,1715,-11,0,0 +2013,4,2,2,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,600,4,0,840,2,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-5,0,1132,-4,0,0 +2013,5,21,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,640,-1,0,926,-3,0,0 +2013,10,17,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,822,-10,0,0 +2013,10,7,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-5,0,1333,-18,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,5,0,2058,-19,0,0 +2013,10,10,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-3,0,1639,-10,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,600,-5,0,840,-3,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2237,5,0,20,-5,0,0 +2013,6,30,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,-5,0,1623,-3,0,0 +2013,4,16,2,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,937,-11,0,1015,-22,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1524,11,0,1650,5,0,0 +2013,5,8,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,48,1,1324,41,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1205,-3,0,1312,-1,0,0 +2013,10,28,1,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1419,-3,0,1600,-7,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2145,-2,0,8,-12,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,-3,0,1235,-8,0,0 +2013,9,2,1,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1125,-6,0,1300,-28,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,14,0,1250,-10,0,0 +2013,4,14,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-3,0,1015,7,0,0 +2013,9,1,7,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1440,10,0,1820,28,1,0 +2013,8,7,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1725,19,1,2330,10,0,0 +2013,8,16,5,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,945,-2,0,1220,-15,0,0 +2013,10,20,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1125,6,0,1324,5,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1317,24,1,1436,22,1,0 +2013,7,25,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,-5,0,1442,-7,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,16,1,1345,37,1,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,830,14,0,1050,33,1,0 +2013,8,12,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,950,2,0,1240,-15,0,0 +2013,6,9,7,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1925,11,0,2157,25,1,0 +2013,10,30,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1215,-8,0,1310,-26,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2015,59,1,2125,49,1,0 +2013,4,8,1,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,2120,-3,0,2310,-15,0,0 +2013,6,2,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1456,231,1,1650,223,1,0 +2013,4,2,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2040,43,1,2154,30,1,0 +2013,7,9,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1619,-2,0,2042,-2,0,0 +2013,9,22,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1153,-6,0,1447,-16,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1535,57,1,1620,85,1,0 +2013,5,4,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,834,-2,0,1445,4,0,0 +2013,10,14,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-2,0,954,-4,0,0 +2013,5,8,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1900,-5,0,2155,-14,0,0 +2013,9,26,4,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,827,2,0,1011,-12,0,0 +2013,4,30,2,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,725,0,0,940,0,0,0 +2013,4,27,6,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-4,0,1215,-16,0,0 +2013,8,5,1,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2005,0,0,2234,3,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,846,-2,0,1020,-10,0,0 +2013,5,18,6,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-4,0,1015,-3,0,0 +2013,4,10,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1958,-10,0,0 +2013,4,29,1,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,-9,0,1620,-11,0,0 +2013,5,2,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,945,-6,0,1159,-10,0,0 +2013,10,31,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2005,10,0,2202,18,1,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2114,-3,0,2233,-5,0,0 +2013,7,11,4,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,57,1,2115,85,1,0 +2013,8,29,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,659,-6,0,837,-21,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,955,-4,0,1203,2,0,0 +2013,6,20,4,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1331,-2,0,1437,-2,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-3,0,1020,-10,0,0 +2013,9,6,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,32,1,855,20,1,0 +2013,8,23,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1450,-5,0,1605,-22,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,7,0,1442,24,1,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1916,-4,0,1945,-17,0,0 +2013,6,15,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,-1,0,1550,-14,0,0 +2013,6,24,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,955,-2,0,1445,-33,0,0 +2013,9,16,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,759,-1,0,1056,-13,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1005,0,,1110,0,1,1 +2013,7,18,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,0,0,1457,-21,0,0 +2013,5,13,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1955,-4,0,2110,7,0,0 +2013,5,31,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1920,0,0,2050,-17,0,0 +2013,7,4,4,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,925,-9,0,1210,-19,0,0 +2013,7,15,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,3,0,815,-5,0,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,-4,0,1705,-23,0,0 +2013,7,4,4,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1119,-12,0,1234,-16,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1850,-6,0,2103,-8,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-2,0,1802,-8,0,0 +2013,7,30,2,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1835,4,0,2040,-11,0,0 +2013,4,10,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1225,0,,1405,0,1,1 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,905,-3,0,1439,-5,0,0 +2013,9,30,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1751,-7,0,1825,-2,0,0 +2013,7,16,2,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,-5,0,2115,-6,0,0 +2013,6,9,7,OO,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1511,34,1,1658,31,1,0 +2013,8,30,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,0,0,1115,-8,0,0 +2013,8,11,7,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-3,0,835,-13,0,0 +2013,9,8,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1101,-11,0,1458,-7,0,0 +2013,6,1,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,9,0,1705,4,0,0 +2013,9,24,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1000,-6,0,1158,0,0,0 +2013,10,4,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1226,11,0,1730,-4,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,14,0,1940,59,1,0 +2013,8,5,1,EV,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-5,0,1322,4,0,0 +2013,6,27,4,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1501,6,0,1919,-1,0,0 +2013,7,11,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1525,21,1,1640,13,0,0 +2013,7,6,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2040,-1,0,2145,-6,0,0 +2013,7,24,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2050,6,0,2230,-3,0,0 +2013,7,26,5,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1127,29,1,1402,18,1,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1122,-1,0,1234,6,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1725,27,1,2310,29,1,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1250,217,1,1703,226,1,0 +2013,5,4,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-3,0,755,-2,0,0 +2013,7,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,30,1,1655,23,1,0 +2013,7,20,6,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1855,2,0,2055,6,0,0 +2013,9,1,7,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,955,-6,0,1150,-24,0,0 +2013,4,22,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,917,-4,0,1020,-10,0,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1830,51,1,1920,44,1,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,-1,0,1608,-5,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,-2,0,1635,15,1,0 +2013,6,27,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1145,26,1,1750,41,1,0 +2013,7,5,5,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-5,0,2125,-16,0,0 +2013,6,5,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-7,0,1458,-32,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,42,1,1912,18,1,0 +2013,5,5,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,1,0,1435,-21,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,925,0,0,1047,-12,0,0 +2013,5,28,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,945,-12,0,1240,-19,0,0 +2013,6,27,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,1,0,1020,13,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1130,-2,0,1235,-6,0,0 +2013,6,7,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,920,-5,0,1113,-32,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,-3,0,1346,-16,0,0 +2013,10,11,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,20,1,1920,8,0,0 +2013,4,5,5,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,1015,-8,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,0,0,1639,-9,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1035,27,1,1400,25,1,0 +2013,7,5,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,15,1,1630,-2,0,0 +2013,9,22,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2204,5,0,48,-6,0,0 +2013,4,23,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-5,0,908,-15,0,0 +2013,4,4,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1610,12,0,1859,13,0,0 +2013,10,13,7,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1045,153,1,1219,136,1,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,-3,0,2122,-2,0,0 +2013,4,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2150,30,1,2305,30,1,0 +2013,10,6,7,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-2,0,1029,-16,0,0 +2013,9,23,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-5,0,1028,-13,0,0 +2013,8,6,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-10,0,2103,-12,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1710,0,0,1833,2,0,0 +2013,4,28,7,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1515,-1,0,1750,1,0,0 +2013,8,15,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2110,16,1,2230,3,0,0 +2013,5,4,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1720,-3,0,1850,-10,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2210,43,1,2339,31,1,0 +2013,6,13,4,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,8,0,1934,-1,0,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,-2,0,2247,5,0,0 +2013,7,30,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1015,8,0,1135,7,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1830,28,1,2255,24,1,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,945,1,0,1120,5,0,0 +2013,4,14,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,-1,0,1635,-4,0,0 +2013,6,29,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-7,0,840,2,0,0 +2013,6,2,7,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,625,-4,0,725,-11,0,0 +2013,4,15,1,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,2,0,2048,-11,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,-1,0,1942,-26,0,0 +2013,9,4,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1035,-10,0,1335,-12,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,650,0,0,1045,-13,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,2,0,1130,-9,0,0 +2013,4,17,3,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1110,-4,0,1300,-6,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1652,21,1,1815,20,1,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1150,1,0,1305,-1,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,755,-3,0,925,-8,0,0 +2013,5,31,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-3,0,1337,-4,0,0 +2013,6,14,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,145,1,1938,217,1,0 +2013,7,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,837,-4,0,1010,-11,0,0 +2013,8,15,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,1,0,1905,11,0,0 +2013,8,20,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,857,2,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1450,11,0,1745,-5,0,0 +2013,7,9,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,910,15,1,1038,7,0,0 +2013,8,7,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,825,1,0,1420,7,0,0 +2013,7,11,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,805,0,0,1150,-14,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1325,17,1,1530,41,1,0 +2013,5,12,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-8,0,1615,-3,0,0 +2013,9,8,7,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1720,-9,0,1931,-2,0,0 +2013,10,24,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1050,-4,0,1225,-17,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,740,3,0,1150,0,0,0 +2013,6,19,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1900,15,1,1925,1,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,-3,0,1912,1,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1425,3,0,2300,-25,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1720,-1,0,1748,-25,0,0 +2013,5,1,3,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,3,0,2125,1,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1440,3,0,1820,5,0,0 +2013,8,8,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1905,45,1,2140,33,1,0 +2013,5,9,4,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-9,0,1855,-14,0,0 +2013,9,16,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,-7,0,1604,-6,0,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1645,242,1,1755,234,1,0 +2013,6,14,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2150,7,0,100,-22,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,7,0,1605,7,0,0 +2013,6,21,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,0,0,2100,-6,0,0 +2013,8,7,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,7,0,1450,7,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1025,-4,0,1308,-13,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-4,0,2308,-9,0,0 +2013,5,2,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2225,-3,0,2351,-7,0,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,0,0,1754,5,0,0 +2013,10,28,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-5,0,1113,3,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1215,-4,0,1510,-10,0,0 +2013,9,22,7,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1242,-3,0,1546,-11,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1200,-3,0,1315,-10,0,0 +2013,10,31,4,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-7,0,1100,-4,0,0 +2013,7,22,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-2,0,1903,-12,0,0 +2013,10,23,3,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,-3,0,1729,-3,0,0 +2013,7,23,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-1,0,1934,-10,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1804,-10,0,15,-21,0,0 +2013,8,7,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1735,-8,0,2020,-8,0,0 +2013,10,26,6,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,-5,0,1844,-17,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2210,19,1,14,38,1,0 +2013,5,9,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1103,-7,0,1209,-13,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1725,17,1,1918,19,1,0 +2013,8,5,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-4,0,1201,-1,0,0 +2013,8,26,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1706,15,1,2019,-5,0,0 +2013,7,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1221,10,0,2012,3,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,955,40,1,1129,40,1,0 +2013,8,20,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-5,0,1920,-15,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1219,-4,0,1250,-12,0,0 +2013,6,28,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,10,0,807,-5,0,0 +2013,4,19,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,2015,14,0,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1150,4,0,1255,0,0,0 +2013,5,27,1,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1230,-1,0,1535,-4,0,0 +2013,9,20,5,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,954,-8,0,1034,-1,0,0 +2013,6,9,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1040,2,0,1310,-1,0,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,805,1,0,1015,-7,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1805,21,1,2240,7,0,0 +2013,6,19,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,-2,0,2345,1,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,-1,0,1932,0,0,0 +2013,9,27,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,650,-4,0,745,-17,0,0 +2013,10,6,7,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,835,-4,0,1643,-12,0,0 +2013,10,10,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-5,0,1113,-20,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1317,-2,0,1434,17,1,0 +2013,8,26,1,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,840,-1,0,1100,-21,0,0 +2013,6,13,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1115,80,1,1407,120,1,0 +2013,5,10,5,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1508,-2,0,1641,-29,0,0 +2013,9,23,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-1,0,1305,-5,0,0 +2013,4,23,2,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1800,19,1,1854,10,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1130,13,0,1310,-7,0,0 +2013,6,27,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,21,1,1330,20,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,20,1,1926,15,1,0 +2013,8,26,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,745,1,0,0 +2013,5,1,3,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1548,4,0,1630,-13,0,0 +2013,8,7,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1305,39,1,1525,33,1,0 +2013,8,18,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,949,-6,0,1204,12,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,14,0,1730,1,0,0 +2013,6,19,3,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-5,0,1305,2,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1304,4,0,1410,13,0,0 +2013,4,15,1,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,945,0,0,1300,-15,0,0 +2013,5,19,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,900,-2,0,1025,-11,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1135,12,0,1835,16,1,0 +2013,6,16,7,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,625,-1,0,940,-8,0,0 +2013,4,12,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-2,0,842,-5,0,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2345,-6,0,457,-6,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,0,0,927,6,0,0 +2013,5,14,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,12,0,2010,-2,0,0 +2013,6,29,6,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1905,86,1,2106,84,1,0 +2013,4,19,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,745,-9,0,911,-18,0,0 +2013,5,22,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,534,-10,0,622,-19,0,0 +2013,6,8,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,93,1,826,87,1,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1755,1,0,1935,1,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2030,18,1,2316,14,0,0 +2013,7,11,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-1,0,1545,20,1,0 +2013,9,30,1,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,-4,0,2115,-2,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2005,3,0,2305,-7,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1744,-4,0,1912,-28,0,0 +2013,5,24,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,-4,0,1821,6,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,7,0,710,11,0,0 +2013,8,30,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,730,-2,0,915,-9,0,0 +2013,5,19,7,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1931,74,1,2212,76,1,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1422,28,1,1705,-9,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,26,1,2250,13,0,0 +2013,10,9,3,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,815,102,1,947,81,1,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,-4,0,1121,-2,0,0 +2013,7,24,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,630,-4,0,840,12,0,0 +2013,6,30,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,5,0,1800,12,0,0 +2013,7,11,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1240,17,1,1554,7,0,0 +2013,7,18,4,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,-4,0,501,8,0,0 +2013,5,12,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,1,0,1153,1,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1810,10,0,2330,-1,0,0 +2013,4,8,1,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,910,-1,0,1035,1,0,0 +2013,6,14,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,3,0,940,-11,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1317,46,1,1609,33,1,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1525,5,0,1630,-5,0,0 +2013,5,20,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1735,-3,0,2105,-35,0,0 +2013,7,21,7,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1005,6,0,1150,3,0,0 +2013,9,24,2,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,845,-9,0,1045,-13,0,0 +2013,7,31,3,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,-3,0,2200,-11,0,0 +2013,5,19,7,EV,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,759,-5,0,1040,-11,0,0 +2013,4,30,2,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1950,-7,0,2203,1,0,0 +2013,10,21,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-2,0,823,-5,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1515,-2,0,1850,26,1,0 +2013,9,5,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1640,-1,0,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1600,6,0,1920,-51,0,0 +2013,8,15,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,715,-5,0,1010,-8,0,0 +2013,8,6,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1545,18,1,1710,14,0,0 +2013,6,10,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1940,7,0,2308,2,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1548,-11,0,2359,-38,0,0 +2013,7,16,2,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,12,0,2057,-13,0,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1140,15,1,1410,7,0,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1934,-1,0,2226,-41,0,0 +2013,7,1,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1335,0,0,1445,-4,0,0 +2013,10,21,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,719,-5,0,1014,2,0,0 +2013,6,20,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,745,-2,0,845,-5,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,834,-2,0,935,-3,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,14,0,1812,6,0,0 +2013,7,5,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,0,0,2215,11,0,0 +2013,6,23,7,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,56,1,1925,67,1,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1030,-3,0,1150,-21,0,0 +2013,9,23,1,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1820,-9,0,2000,-10,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1440,-6,0,1525,-14,0,0 +2013,10,13,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,202,1,1249,201,1,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,3,0,1025,-5,0,0 +2013,7,6,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-1,0,1440,-10,0,0 +2013,7,14,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,-2,0,1459,-11,0,0 +2013,8,30,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1101,7,0,1226,5,0,0 +2013,6,9,7,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,296,1,1641,299,1,0 +2013,8,22,4,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,730,-4,0,755,-11,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1205,-3,0,1340,7,0,0 +2013,7,5,5,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,-5,0,950,-25,0,0 +2013,5,1,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1210,13,0,1255,9,0,0 +2013,4,9,2,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1730,3,0,1850,-8,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1625,17,1,1715,15,1,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1240,4,0,1405,-24,0,0 +2013,9,10,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1918,-6,0,2010,24,1,0 +2013,5,30,4,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-15,0,711,-13,0,0 +2013,5,10,5,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-1,0,1639,-21,0,0 +2013,8,26,1,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,32,1,2144,31,1,0 +2013,8,5,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1316,-6,0,1402,-6,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1911,3,0,2249,8,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,855,0,0,1020,17,1,0 +2013,10,31,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2005,-8,0,2150,-21,0,0 +2013,6,20,4,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1555,-11,0,2359,-37,0,0 +2013,8,13,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,-2,0,2000,-11,0,0 +2013,7,20,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1745,0,,2105,0,1,1 +2013,4,12,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,2,0,1655,-2,0,0 +2013,6,17,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1606,23,1,1744,17,1,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-2,0,1018,-1,0,0 +2013,4,7,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1300,14,0,1700,7,0,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-2,0,750,-9,0,0 +2013,4,28,7,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,645,-2,0,755,-19,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,-3,0,1035,-9,0,0 +2013,10,23,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2341,-6,0,735,-38,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,34,1,2320,37,1,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,910,-3,0,1630,-16,0,0 +2013,5,24,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-1,0,950,-30,0,0 +2013,8,3,6,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-5,0,1728,10,0,0 +2013,8,27,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,-1,0,810,-5,0,0 +2013,7,17,3,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1329,1,0,1555,-13,0,0 +2013,5,27,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,-7,0,1305,-4,0,0 +2013,5,28,2,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1312,-2,0,1500,-18,0,0 +2013,7,14,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1553,-2,0,2140,4,0,0 +2013,8,4,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,-3,0,1901,-27,0,0 +2013,6,14,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2215,-6,0,2350,-17,0,0 +2013,8,4,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,10,0,1440,4,0,0 +2013,7,27,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2010,-1,0,2134,-5,0,0 +2013,6,23,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,12,0,2157,4,0,0 +2013,7,8,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,10,0,940,18,1,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2207,-3,0,2359,18,1,0 +2013,7,1,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1638,27,1,1815,32,1,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1055,10,0,1200,2,0,0 +2013,5,16,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-12,0,854,-22,0,0 +2013,6,25,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,16,1,1925,4,0,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,1949,-7,0,0 +2013,7,17,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,11,0,2245,10,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,-2,0,1405,-5,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2125,2,0,2250,-1,0,0 +2013,5,7,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1135,6,0,1340,-2,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-3,0,1640,-6,0,0 +2013,4,18,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1325,0,,1500,0,1,1 +2013,7,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,1,0,1514,-1,0,0 +2013,6,15,6,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,655,-5,0,917,-5,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1935,-3,0,2205,-8,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-2,0,1513,-17,0,0 +2013,5,31,5,FL,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1440,-5,0,1752,18,1,0 +2013,5,18,6,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,938,-5,0,1205,-14,0,0 +2013,4,6,6,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1134,-13,0,1645,-19,0,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,-1,0,1000,-1,0,0 +2013,8,23,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,46,1,1650,31,1,0 +2013,7,18,4,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1015,0,0,1145,-9,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1145,1,0,1315,-10,0,0 +2013,4,29,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,5,0,1415,-19,0,0 +2013,7,12,5,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,730,-6,0,1025,-8,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,850,3,0,1615,6,0,0 +2013,9,27,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1331,7,0,1840,-14,0,0 +2013,10,14,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,33,1,2040,29,1,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,5,0,1817,-25,0,0 +2013,5,9,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1145,-4,0,1425,-15,0,0 +2013,9,4,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2114,-3,0,542,-30,0,0 +2013,8,10,6,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1110,-5,0,1359,-21,0,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1730,43,1,2040,40,1,0 +2013,8,21,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,620,-6,0,832,24,1,0 +2013,5,31,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1030,-2,0,1406,-7,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,925,6,0,1100,-15,0,0 +2013,10,26,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1045,6,0,1218,37,1,0 +2013,9,6,5,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1845,0,0,2123,17,1,0 +2013,7,31,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,-4,0,700,-7,0,0 +2013,9,20,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,545,-3,0,652,-10,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-5,0,906,-12,0,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1935,0,,2100,0,1,1 +2013,9,15,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,2,0,2225,-6,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1339,-2,0,1619,-14,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,32,1,2238,40,1,0 +2013,4,3,3,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,600,29,1,755,11,0,0 +2013,8,20,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1713,0,,1800,0,1,1 +2013,9,23,1,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1005,-1,0,1305,2,0,0 +2013,8,31,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1816,4,0,2159,-8,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,-3,0,1151,-1,0,0 +2013,6,9,7,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,5,0,1411,6,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-4,0,1807,-1,0,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1755,-7,0,2030,-25,0,0 +2013,9,14,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-5,0,1410,-11,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,4,0,806,4,0,0 +2013,4,11,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,9,0,1746,21,1,0 +2013,5,13,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,0,0,1949,11,0,0 +2013,8,19,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-8,0,840,-4,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1006,82,1,1416,75,1,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,-6,0,2359,-21,0,0 +2013,7,26,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,12,0,2115,0,0,0 +2013,8,15,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1115,-4,0,1220,-12,0,0 +2013,8,6,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,755,-3,0,915,-8,0,0 +2013,4,13,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-8,0,1605,-2,0,0 +2013,9,19,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-8,0,1915,-14,0,0 +2013,5,22,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,88,1,2105,90,1,0 +2013,6,8,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1615,-5,0,1805,-12,0,0 +2013,5,24,5,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1715,-4,0,1925,-7,0,0 +2013,6,27,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,-1,0,1125,-11,0,0 +2013,8,2,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1947,1,0,103,-18,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1645,16,1,2003,0,0,0 +2013,4,16,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,925,0,0,1105,15,1,0 +2013,8,12,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,730,-2,0,850,-22,0,0 +2013,9,13,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,2,0,750,0,0,0 +2013,4,5,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,700,-6,0,905,-30,0,0 +2013,8,26,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1749,-3,0,1823,-17,0,0 +2013,7,19,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1609,76,1,1954,56,1,0 +2013,8,26,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,0,0,1005,-2,0,0 +2013,7,3,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1515,3,0,1755,-29,0,0 +2013,5,16,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,2000,-4,0,2205,3,0,0 +2013,4,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,847,10,0,1045,10,0,0 +2013,4,12,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,733,3,0,904,-5,0,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1540,11,0,1745,3,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,59,1,1624,69,1,0 +2013,10,31,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1020,-3,0,1147,-19,0,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-8,0,1922,-31,0,0 +2013,8,14,3,FL,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,-3,0,950,-7,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1815,-1,0,1940,-38,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,13,0,1203,39,1,0 +2013,7,9,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,-3,0,1235,-4,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,2,0,2130,-8,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,64,1,1945,74,1,0 +2013,4,26,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1310,5,0,1439,1,0,0 +2013,4,15,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,111,1,1327,107,1,0 +2013,8,5,1,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1654,34,1,1843,30,1,0 +2013,10,30,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1555,-5,0,1939,-2,0,0 +2013,10,13,7,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1455,-5,0,1723,-14,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,46,1,1104,77,1,0 +2013,6,8,6,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,9,0,1630,20,1,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1940,43,1,2218,19,1,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,-2,0,1550,-7,0,0 +2013,7,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-3,0,1005,-4,0,0 +2013,5,12,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,900,-10,0,1022,-16,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1211,15,1,1315,13,0,0 +2013,10,27,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1130,-8,0,1350,-13,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2110,13,0,2243,82,1,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-8,0,2017,75,1,0 +2013,5,15,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1845,7,0,2010,9,0,0 +2013,7,16,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1448,0,0,1650,0,0,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-2,0,1205,-8,0,0 +2013,7,2,2,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,1,0,1640,-6,0,0 +2013,9,8,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,-3,0,1301,-8,0,0 +2013,6,20,4,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1411,-4,0,1520,-17,0,0 +2013,9,6,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-5,0,810,-8,0,0 +2013,10,6,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2331,-11,0,705,-20,0,0 +2013,6,3,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,19,1,1635,18,1,0 +2013,8,26,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1250,-3,0,1405,5,0,0 +2013,7,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-1,0,943,0,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,0,0,1522,-18,0,0 +2013,4,28,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,-8,0,1555,-16,0,0 +2013,9,14,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1125,-9,0,1259,-7,0,0 +2013,10,16,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1012,28,1,1245,24,1,0 +2013,5,3,5,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1030,-4,0,1835,2,0,0 +2013,8,6,2,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1905,-1,0,2220,-8,0,0 +2013,4,22,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-4,0,818,-13,0,0 +2013,10,15,2,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1619,5,0,2100,-15,0,0 +2013,7,31,3,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-8,0,1509,-7,0,0 +2013,9,17,2,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2140,-4,0,605,-13,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1620,2,0,2000,-14,0,0 +2013,9,18,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,28,1,1935,17,1,0 +2013,8,12,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,955,7,0,1110,-9,0,0 +2013,6,21,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,0,0,925,-11,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,830,-3,0,933,-22,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1210,2,0,1410,-4,0,0 +2013,8,7,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,-3,0,1319,-18,0,0 +2013,5,6,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-9,0,2220,-7,0,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,737,3,0,931,3,0,0 +2013,5,6,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-7,0,2215,-12,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,36,1,1745,26,1,0 +2013,6,17,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,38,1,1205,32,1,0 +2013,9,21,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1825,19,1,1930,7,0,0 +2013,8,27,2,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,810,-2,0,1100,-20,0,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,3,0,2330,9,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,610,0,0,834,0,0,0 +2013,5,6,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1407,-13,0,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1435,-1,0,1603,-7,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1650,-1,0,1935,-3,0,0 +2013,8,30,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1210,-12,0,1255,-15,0,0 +2013,9,20,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1500,29,1,1645,25,1,0 +2013,7,5,5,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-8,0,902,-14,0,0 +2013,7,12,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-1,0,2220,0,0,0 +2013,5,25,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,610,-6,0,847,-11,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1640,2,0,2310,6,0,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,6,0,1758,16,1,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1250,1,0,1355,9,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1010,43,1,1430,51,1,0 +2013,7,26,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1257,9,0,2109,22,1,0 +2013,8,22,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1350,94,1,1509,94,1,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,18,1,2210,12,0,0 +2013,4,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,-6,0,1859,2,0,0 +2013,8,6,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,655,5,0,0 +2013,10,20,7,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1710,-2,0,1950,-5,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,902,-7,0,1128,-25,0,0 +2013,10,10,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,5,0,1721,2,0,0 +2013,5,24,5,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1445,25,1,1625,31,1,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,6,0,1435,25,1,0 +2013,5,15,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-5,0,1110,-10,0,0 +2013,5,20,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,638,-12,0,0 +2013,10,22,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,-3,0,1358,1,0,0 +2013,6,6,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,61,1,1753,59,1,0 +2013,5,29,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,952,-4,0,1207,-5,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,828,-8,0,835,-25,0,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1525,-5,0,1750,-24,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,0,0,1045,-7,0,0 +2013,8,2,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,72,1,905,75,1,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1715,-5,0,1835,-4,0,0 +2013,8,30,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1919,0,0,2159,9,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2040,-6,0,2303,-23,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1610,17,1,1701,8,0,0 +2013,9,11,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1225,21,1,1429,22,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,-6,0,1355,-11,0,0 +2013,4,28,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,935,26,1,0 +2013,5,5,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1717,19,1,1855,33,1,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,857,-3,0,1045,-27,0,0 +2013,5,20,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,632,-8,0,0 +2013,9,17,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-7,0,648,-13,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,644,6,0,933,-14,0,0 +2013,6,1,6,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-3,0,2020,-18,0,0 +2013,10,13,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,840,-5,0,1210,-8,0,0 +2013,8,26,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2210,-4,0,30,-33,0,0 +2013,4,8,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1008,8,0,1248,9,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-6,0,2327,-8,0,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,19,1,1644,17,1,0 +2013,9,9,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,-4,0,1425,-31,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1810,1,0,2330,-7,0,0 +2013,9,9,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1255,5,0,1420,-5,0,0 +2013,7,30,2,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,735,-4,0,1600,2,0,0 +2013,6,8,6,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1350,4,0,1515,-9,0,0 +2013,9,13,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,-4,0,1255,-8,0,0 +2013,5,8,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,805,-8,0,0 +2013,5,16,4,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,950,-3,0,1434,-4,0,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,830,-10,0,955,-18,0,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,1,0,1204,11,0,0 +2013,5,10,5,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,700,-5,0,945,4,0,0 +2013,7,22,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1728,0,,1925,0,1,1 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,0,0,2245,1,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,6,0,1005,11,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1215,-5,0,1340,-10,0,0 +2013,4,1,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,700,-3,0,825,2,0,0 +2013,5,6,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,953,-8,0,1216,-24,0,0 +2013,6,13,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,846,-3,0,918,-7,0,0 +2013,5,3,5,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-1,0,2020,6,0,0 +2013,8,3,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-4,0,2137,7,0,0 +2013,7,27,6,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1605,-3,0,1905,-8,0,0 +2013,4,18,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,634,-7,0,920,-13,0,0 +2013,4,17,3,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1040,10,0,1245,1,0,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,905,0,0,1315,-3,0,0 +2013,6,21,5,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1422,11,0,2159,-6,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,14,0,34,-2,0,0 +2013,5,29,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1629,-9,0,1814,-17,0,0 +2013,7,20,6,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,9,0,1535,2,0,0 +2013,7,26,5,EV,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1750,-3,0,1850,-1,0,0 +2013,7,6,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-7,0,2159,-21,0,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1425,89,1,1740,96,1,0 +2013,8,18,7,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-11,0,1634,-22,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1130,16,1,1655,2,0,0 +2013,6,29,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,0,0,850,-19,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,36,1,2115,21,1,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1925,10,0,2229,-2,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,76,1,1430,68,1,0 +2013,10,30,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1440,1,0,1630,15,1,0 +2013,5,24,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,1,0,845,-9,0,0 +2013,8,15,4,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1057,1,0,1310,-7,0,0 +2013,10,24,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1845,45,1,1935,45,1,0 +2013,10,24,4,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1225,18,1,2016,15,1,0 +2013,5,26,7,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1420,-5,0,1903,-11,0,0 +2013,8,23,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1640,0,0,1925,-15,0,0 +2013,7,14,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1346,1,0,1540,20,1,0 +2013,10,30,3,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,1031,-33,0,0 +2013,5,4,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1020,-3,0,1320,6,0,0 +2013,10,9,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1055,0,,1210,0,1,1 +2013,7,19,5,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,655,-6,0,917,17,1,0 +2013,6,6,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-9,0,654,1,0,0 +2013,6,12,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2105,56,1,2215,55,1,0 +2013,9,23,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1035,-4,0,1345,-12,0,0 +2013,7,20,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1325,-6,0,1630,-9,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-1,0,924,-18,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1426,-2,0,1518,-17,0,0 +2013,10,12,6,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,532,-2,0,855,-17,0,0 +2013,7,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-3,0,835,-8,0,0 +2013,6,23,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,40,1,1930,27,1,0 +2013,9,8,7,DL,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,700,-5,0,835,-27,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,-1,0,1715,-6,0,0 +2013,6,24,1,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,546,-7,0,625,-15,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1955,-5,0,2130,-21,0,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,-5,0,2330,-15,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-6,0,1038,-20,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,610,-7,0,1407,10,0,0 +2013,9,10,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,925,10,0,1450,-5,0,0 +2013,8,7,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,830,-4,0,1055,6,0,0 +2013,6,26,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,32,1,1350,45,1,0 +2013,8,8,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1245,-3,0,1415,-5,0,0 +2013,8,26,1,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,-11,0,2139,-3,0,0 +2013,7,15,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,315,1,1755,308,1,0 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1610,16,1,100,-19,0,0 +2013,10,11,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1930,65,1,2254,68,1,0 +2013,8,13,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,50,1,1205,97,1,0 +2013,6,3,1,UA,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,2020,-5,0,2200,-25,0,0 +2013,6,8,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1851,25,1,15,28,1,0 +2013,7,27,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1355,0,0,1435,0,0,0 +2013,8,15,4,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,930,-3,0,1234,-19,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,807,-4,0,924,-17,0,0 +2013,7,27,6,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1500,-4,0,1800,7,0,0 +2013,5,24,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,850,-2,0,942,3,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1631,2,0,1841,15,1,0 +2013,7,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2055,19,1,2300,22,1,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1105,6,0,1640,-6,0,0 +2013,10,22,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1537,-7,0,1649,-11,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2130,-1,0,2306,-3,0,0 +2013,7,1,1,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,619,2,0,657,-11,0,0 +2013,9,23,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-2,0,830,-14,0,0 +2013,10,14,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1925,-7,0,2044,-14,0,0 +2013,5,15,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,-4,0,1005,-5,0,0 +2013,4,5,5,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1010,-1,0,1221,-28,0,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,24,1,1910,31,1,0 +2013,5,1,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1745,-3,0,1915,-7,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,-5,0,1045,-20,0,0 +2013,9,27,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2200,-1,0,553,-8,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,0,0,836,-7,0,0 +2013,8,3,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2130,25,1,2320,3,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,20,1,1312,10,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2007,97,1,2322,95,1,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1020,-2,0,1315,-16,0,0 +2013,5,20,1,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1154,-7,0,1428,-12,0,0 +2013,4,25,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-8,0,628,-11,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1910,132,1,2335,126,1,0 +2013,4,9,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1740,-6,0,1905,-14,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-7,0,1801,-11,0,0 +2013,6,14,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,0,,1145,0,1,1 +2013,5,3,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-3,0,2129,-3,0,0 +2013,8,28,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-13,0,1320,-7,0,0 +2013,5,27,1,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,850,-8,0,1110,-24,0,0 +2013,10,15,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,606,-4,0,855,-5,0,0 +2013,6,14,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,35,1,1320,32,1,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2213,11,0,620,14,0,0 +2013,5,3,5,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1136,-2,0,1437,-6,0,0 +2013,8,27,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1554,-8,0,1844,-10,0,0 +2013,4,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1518,-6,0,1722,-9,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,37,1,2346,23,1,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,-1,0,1850,-10,0,0 +2013,7,22,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1059,5,0,1637,-6,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1735,54,1,2205,58,1,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1045,-6,0,1320,-13,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,7,0,1617,-9,0,0 +2013,8,3,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,0,0,1321,-15,0,0 +2013,9,27,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-8,0,1335,-19,0,0 +2013,8,13,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,7,0,1810,-17,0,0 +2013,6,12,3,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1523,56,1,1641,52,1,0 +2013,6,12,3,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1020,32,1,1301,20,1,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,-4,0,2240,-13,0,0 +2013,9,7,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,956,-18,0,0 +2013,4,4,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,615,-5,0,750,-22,0,0 +2013,5,24,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,703,-10,0,945,-18,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2126,15,1,543,7,0,0 +2013,4,12,5,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,-1,0,1645,-7,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,730,-8,0,1055,-16,0,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,948,4,0,1800,-5,0,0 +2013,10,6,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1730,23,1,1840,22,1,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,11,0,1000,-9,0,0 +2013,4,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-3,0,1644,-10,0,0 +2013,7,25,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1635,32,1,1805,29,1,0 +2013,5,8,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-3,0,949,-15,0,0 +2013,6,27,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,96,1,2100,122,1,0 +2013,7,26,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1143,-2,0,1330,-21,0,0 +2013,8,19,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1446,-1,0,1727,3,0,0 +2013,7,8,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2122,7,0,602,3,0,0 +2013,4,16,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-8,0,635,-17,0,0 +2013,4,21,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1840,28,1,1935,22,1,0 +2013,9,18,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1050,-4,0,1225,-12,0,0 +2013,8,12,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1108,-3,0,1321,6,0,0 +2013,7,21,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1005,13,0,1120,-6,0,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,0,0,1510,-13,0,0 +2013,9,16,1,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-6,0,915,-6,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,-3,0,824,-2,0,0 +2013,4,8,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,920,-1,0,1032,-6,0,0 +2013,7,24,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-5,0,938,4,0,0 +2013,8,28,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-4,0,759,-7,0,0 +2013,5,25,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,905,0,0,1011,12,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,143,1,1850,142,1,0 +2013,7,10,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,705,-6,0,930,-7,0,0 +2013,7,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1917,44,1,2113,36,1,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,38,1,2328,32,1,0 +2013,10,25,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1735,0,0,2236,-6,0,0 +2013,5,21,2,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,6,0,1650,-2,0,0 +2013,10,13,7,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1525,-7,0,1530,-16,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-1,0,1814,-7,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2055,-5,0,2230,-20,0,0 +2013,8,12,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-7,0,1335,-12,0,0 +2013,8,27,2,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,720,12,0,845,-24,0,0 +2013,9,28,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,648,-8,0,0 +2013,4,3,3,EV,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,1220,125,1,1252,113,1,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,-3,0,1623,-12,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,625,-3,0,725,-6,0,0 +2013,8,30,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1315,23,1,1520,8,0,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1525,-1,0,1656,-15,0,0 +2013,6,21,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,10,0,2050,34,1,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1700,-1,0,1805,10,0,0 +2013,9,29,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2248,-2,0,711,5,0,0 +2013,6,21,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,605,-4,0,1355,-9,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-1,0,859,-24,0,0 +2013,5,3,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,38,1,2020,56,1,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1450,25,1,1745,63,1,0 +2013,5,2,4,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,745,-8,0,1615,-16,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1930,54,1,5,34,1,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,16,1,830,12,0,0 +2013,7,2,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,7,0,1627,23,1,0 +2013,7,16,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1708,6,0,1830,21,1,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1623,-5,0,2002,-11,0,0 +2013,6,25,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1300,8,0,1552,6,0,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,705,-3,0,854,-11,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2112,0,0,2201,-19,0,0 +2013,10,11,5,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1505,-2,0,1625,-4,0,0 +2013,9,3,2,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1746,-5,0,53,-14,0,0 +2013,8,28,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,533,-6,0,632,6,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,102,1,1305,106,1,0 +2013,8,17,6,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,920,7,0,1235,2,0,0 +2013,8,30,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1105,72,1,1236,58,1,0 +2013,5,3,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,-5,0,1820,0,0,0 +2013,5,23,4,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2155,19,1,40,28,1,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1445,12,0,1705,15,1,0 +2013,10,2,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1328,-6,0,1443,-13,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1659,-3,0,1815,-21,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1525,1,0,1855,-3,0,0 +2013,9,3,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-3,0,756,5,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,855,4,0,1000,-4,0,0 +2013,10,17,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1745,-4,0,1840,-7,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,920,0,0,1430,-2,0,0 +2013,5,30,4,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,640,40,1,946,2,0,0 +2013,8,13,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2015,-6,0,2116,-12,0,0 +2013,6,3,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,1610,10,0,0 +2013,7,8,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,4,0,2016,6,0,0 +2013,6,12,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1533,-2,0,1710,83,1,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,-7,0,1414,0,0,0 +2013,6,23,7,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1855,-7,0,2015,-14,0,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,616,1,0,921,-4,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,839,-2,0,1037,-8,0,0 +2013,8,9,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1932,22,1,2141,23,1,0 +2013,5,1,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2025,16,1,2128,10,0,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1008,-1,0,1350,-21,0,0 +2013,7,30,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-3,0,1032,-1,0,0 +2013,6,1,6,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1515,-3,0,1740,-15,0,0 +2013,6,13,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,187,1,1146,217,1,0 +2013,6,3,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,0,0,1319,7,0,0 +2013,8,29,4,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,715,-6,0,1039,-17,0,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,825,-2,0,955,0,0,0 +2013,6,4,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,605,5,0,755,-13,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1345,-2,0,1511,-6,0,0 +2013,8,12,1,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,600,1,0,750,4,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,0,0,2019,5,0,0 +2013,5,17,5,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,-11,0,810,-4,0,0 +2013,4,14,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,950,-4,0,1110,-12,0,0 +2013,4,27,6,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,715,-7,0,1023,-34,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1310,-6,0,1520,-2,0,0 +2013,5,3,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1229,-11,0,0 +2013,10,16,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,624,-11,0,859,-26,0,0 +2013,4,18,4,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,10,0,2100,26,1,0 +2013,8,7,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1850,8,0,2045,0,0,0 +2013,4,16,2,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-3,0,2213,29,1,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1555,34,1,1828,49,1,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1710,0,,2230,0,1,1 +2013,4,18,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-3,0,820,51,1,0 +2013,8,10,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2100,17,1,120,36,1,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,10,0,2226,-2,0,0 +2013,9,7,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-10,0,1349,-1,0,0 +2013,4,9,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,805,24,1,1000,78,1,0 +2013,6,11,2,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1826,-3,0,2027,8,0,0 +2013,6,17,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1740,-2,0,1905,39,1,0 +2013,10,19,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,915,-2,0,1035,-5,0,0 +2013,9,17,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-8,0,1905,-22,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-4,0,1210,-1,0,0 +2013,9,13,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,650,0,0,750,-5,0,0 +2013,9,6,5,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,700,-3,0,1047,-7,0,0 +2013,10,2,3,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,2,0,1159,-2,0,0 +2013,8,2,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,-4,0,1304,-12,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1845,28,1,2010,19,1,0 +2013,6,7,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,0,0,1155,-5,0,0 +2013,7,27,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-9,0,924,-10,0,0 +2013,10,21,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,-2,0,1600,-12,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,-2,0,2342,-7,0,0 +2013,8,24,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-4,0,1356,-10,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,635,5,0,745,-13,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,800,-3,0,925,4,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,117,1,1958,93,1,0 +2013,5,29,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1057,-6,0,1453,1,0,0 +2013,6,2,7,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,48,1,1644,41,1,0 +2013,5,2,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1800,43,1,1925,58,1,0 +2013,9,28,6,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1000,-9,0,1115,7,0,0 +2013,8,7,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2140,2,0,2255,5,0,0 +2013,4,8,1,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,750,7,0,920,8,0,0 +2013,4,25,4,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1131,-3,0,1405,-11,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2000,49,1,2250,48,1,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,-1,0,2209,-12,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,555,-6,0,900,-13,0,0 +2013,5,4,6,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1117,-45,0,0 +2013,9,8,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,1419,0,0,1955,-18,0,0 +2013,5,17,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,855,16,1,1230,5,0,0 +2013,8,26,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1244,14,0,1612,66,1,0 +2013,9,9,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,715,-2,0,750,-14,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,-7,0,1503,-9,0,0 +2013,8,10,6,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,10,0,1318,0,0,0 +2013,9,14,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1244,-5,0,1530,-13,0,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,-8,0,2223,0,0,0 +2013,6,28,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,840,-4,0,1101,-18,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2110,19,1,2215,21,1,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1525,1,0,1705,9,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,835,6,0,1100,14,0,0 +2013,8,11,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,819,-8,0,1401,-29,0,0 +2013,5,19,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,2001,19,1,2210,8,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,0,0,1258,34,1,0 +2013,8,26,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,2,0,855,-11,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1123,-6,0,1455,-28,0,0 +2013,6,3,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-9,0,1715,1,0,0 +2013,6,28,5,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1845,4,0,2205,-11,0,0 +2013,4,19,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1359,18,1,1714,-8,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2209,0,0,2252,-9,0,0 +2013,6,13,4,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,60,1,1404,96,1,0 +2013,8,1,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,-2,0,1820,-1,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1400,25,1,1455,17,1,0 +2013,7,16,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,830,8,0,927,0,0,0 +2013,5,13,1,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-15,0,831,-19,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,723,-2,0,1200,-4,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,844,17,1,1032,15,1,0 +2013,10,26,6,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,-3,0,1525,-9,0,0 +2013,10,29,2,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1654,9,0,1851,4,0,0 +2013,9,5,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1700,-1,0,2032,3,0,0 +2013,5,8,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,0,0,2105,11,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1640,34,1,15,37,1,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2145,-3,0,2221,-11,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,645,-4,0,900,-20,0,0 +2013,5,1,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2125,-1,0,2250,-11,0,0 +2013,9,26,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-1,0,1620,-6,0,0 +2013,10,4,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1405,5,0,1610,-7,0,0 +2013,8,5,1,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1546,44,1,1553,46,1,0 +2013,6,3,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,229,1,2049,226,1,0 +2013,4,13,6,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,925,-3,0,1050,-10,0,0 +2013,10,4,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2100,-5,0,2325,20,1,0 +2013,10,14,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-4,0,715,-8,0,0 +2013,8,31,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,-2,0,1923,5,0,0 +2013,6,17,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1955,54,1,2024,63,1,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1635,60,1,1915,56,1,0 +2013,10,27,7,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,16,1,1810,7,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,600,0,0,715,6,0,0 +2013,5,5,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,91,1,1705,71,1,0 +2013,9,12,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2115,94,1,2240,116,1,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1120,0,0,1445,1,0,0 +2013,7,12,5,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1055,16,1,1335,17,1,0 +2013,5,8,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1125,-10,0,1246,-17,0,0 +2013,6,18,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,0,,1707,0,1,1 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,-3,0,1529,1,0,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2315,8,0,715,-8,0,0 +2013,8,27,2,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-3,0,1545,-8,0,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1550,109,1,1650,110,1,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1030,15,1,1405,-9,0,0 +2013,10,10,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,625,0,0,725,3,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,834,32,1,1002,34,1,0 +2013,9,30,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-6,0,848,-12,0,0 +2013,9,19,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-5,0,1052,-25,0,0 +2013,6,16,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,0,0,1450,-12,0,0 +2013,5,15,3,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-4,0,1215,-19,0,0 +2013,6,7,5,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1603,-22,0,0 +2013,7,31,3,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,35,1,1910,31,1,0 +2013,5,13,1,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,10,0,2201,7,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,4,0,1815,-4,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-4,0,1053,-15,0,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1330,5,0,1540,1,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1921,113,1,2049,98,1,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1310,-4,0,1520,-2,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1525,25,1,1757,23,1,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,925,10,0,1055,-2,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-4,0,2307,-8,0,0 +2013,9,2,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-2,0,1210,0,0,0 +2013,9,20,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,47,1,1420,45,1,0 +2013,9,12,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1340,-2,0,1520,0,0,0 +2013,4,17,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1151,-1,0,1804,-23,0,0 +2013,9,8,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1317,4,0,1504,-8,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1900,7,0,2005,-5,0,0 +2013,4,18,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-5,0,1516,-3,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1839,66,1,2356,82,1,0 +2013,8,4,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,955,-6,0,1124,-6,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,2000,19,1,2320,14,0,0 +2013,8,9,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,7,0,2120,-6,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,4,0,2330,-14,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,1,0,1525,7,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,-2,0,1204,-12,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1120,-3,0,1259,-9,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,2,0,1635,-5,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2040,109,1,2340,101,1,0 +2013,10,9,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,920,0,0,1049,1,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,725,0,0,903,3,0,0 +2013,7,27,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,-4,0,2124,-21,0,0 +2013,5,17,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,-1,0,1315,-4,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-6,0,818,-15,0,0 +2013,6,25,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,-1,0,2015,-1,0,0 +2013,9,27,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,759,-5,0,1045,0,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,-4,0,1610,-11,0,0 +2013,10,21,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,0,,2020,0,1,1 +2013,9,27,5,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,940,0,0,1100,-6,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2135,7,0,2242,7,0,0 +2013,5,15,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,12,0,1535,15,1,0 +2013,4,3,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-3,0,745,-3,0,0 +2013,4,16,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1526,34,1,1710,28,1,0 +2013,8,29,4,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,-5,0,1004,-22,0,0 +2013,7,3,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,755,-1,0,915,-25,0,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1550,-1,0,1725,-4,0,0 +2013,10,28,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1655,91,1,1755,90,1,0 +2013,6,9,7,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,750,-4,0,1035,0,0,0 +2013,6,3,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,846,-5,0,924,-2,0,0 +2013,4,7,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-11,0,1340,-24,0,0 +2013,10,22,2,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,900,60,1,1027,76,1,0 +2013,8,18,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1007,-7,0,1045,-11,0,0 +2013,9,6,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,2003,-4,0,2150,-20,0,0 +2013,8,4,7,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2339,81,1,553,67,1,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,-4,0,1720,-19,0,0 +2013,9,26,4,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1717,1,0,1940,-12,0,0 +2013,9,2,1,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1040,-2,0,1217,2,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2039,-4,0,2303,-10,0,0 +2013,10,11,5,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1410,-6,0,1611,-14,0,0 +2013,9,18,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,752,-12,0,904,-14,0,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2057,45,1,2359,30,1,0 +2013,8,9,5,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,2000,-3,0,2020,-7,0,0 +2013,5,15,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,42,1,2140,27,1,0 +2013,8,3,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,700,-2,0,800,-9,0,0 +2013,4,24,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,910,-8,0,1158,19,1,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,955,4,0,1055,4,0,0 +2013,7,2,2,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,730,-2,0,930,-20,0,0 +2013,7,25,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,2,0,2101,-1,0,0 +2013,7,29,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1140,8,0,1805,10,0,0 +2013,5,16,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1646,3,0,1814,-11,0,0 +2013,8,1,4,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1708,0,,1837,0,1,1 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,940,-1,0,1650,-21,0,0 +2013,6,29,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,37,1,2058,31,1,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1430,-3,0,1650,-10,0,0 +2013,6,29,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-7,0,924,6,0,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,3,0,735,-5,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1248,9,0,1608,-5,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,-2,0,2035,1,0,0 +2013,7,12,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,7,0,1845,-1,0,0 +2013,8,30,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,750,-2,0,929,-10,0,0 +2013,7,8,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,34,1,1017,20,1,0 +2013,10,7,1,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-8,0,1741,-15,0,0 +2013,4,5,5,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1617,-10,0,1803,-23,0,0 +2013,6,30,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,834,3,0,933,-5,0,0 +2013,10,17,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,745,-6,0,920,0,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,9,0,1000,-18,0,0 +2013,6,2,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,2,0,1705,-11,0,0 +2013,10,16,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1925,-9,0,2140,-15,0,0 +2013,10,10,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,9,0,1405,-6,0,0 +2013,8,12,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,1,0,1940,21,1,0 +2013,9,3,2,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,814,-2,0,847,2,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,37,1,1310,31,1,0 +2013,10,8,2,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1855,-3,0,2140,-23,0,0 +2013,10,11,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-6,0,835,-8,0,0 +2013,7,10,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,50,1,1923,55,1,0 +2013,9,25,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-2,0,1804,6,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1737,-7,0,1924,7,0,0 +2013,9,19,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,-10,0,1943,-13,0,0 +2013,9,18,3,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1242,-7,0,1400,-4,0,0 +2013,9,1,7,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,757,-5,0,913,-3,0,0 +2013,5,10,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-3,0,959,4,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1635,24,1,1825,23,1,0 +2013,7,31,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,421,1,1645,404,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1650,1,0,1905,-21,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1135,3,0,1835,-10,0,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1945,-6,0,2115,7,0,0 +2013,6,9,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,1,0,1414,6,0,0 +2013,7,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1640,-3,0,1745,-13,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-6,0,1440,-6,0,0 +2013,4,10,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,0,,1757,0,1,1 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1230,0,0,1425,-32,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,-5,0,1713,0,0,0 +2013,7,3,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,-9,0,1025,-24,0,0 +2013,4,6,6,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-4,0,1356,-16,0,0 +2013,5,28,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-5,0,911,-11,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,42,1,1931,41,1,0 +2013,5,20,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,-2,0,1830,-4,0,0 +2013,7,28,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1013,6,0,1304,-2,0,0 +2013,10,8,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1000,-7,0,1120,-19,0,0 +2013,10,28,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,826,-3,0,1053,-12,0,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-7,0,906,-8,0,0 +2013,10,31,4,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1815,7,0,2130,-14,0,0 +2013,9,27,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-6,0,1254,2,0,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,24,1,2327,11,0,0 +2013,10,18,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,2,0,1115,-9,0,0 +2013,9,10,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1133,172,1,1502,227,1,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,0,0,1355,-19,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1554,0,0,1848,-20,0,0 +2013,9,14,6,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,-7,0,1210,-2,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1310,-5,0,1400,-6,0,0 +2013,10,28,1,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1523,5,0,1650,3,0,0 +2013,10,27,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,845,0,0,1146,-21,0,0 +2013,7,11,4,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,17,1,626,4,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1344,6,0,1540,4,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1754,8,0,2013,21,1,0 +2013,4,9,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1712,105,1,1945,90,1,0 +2013,8,17,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1500,12,0,1655,-2,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1935,15,1,2155,-7,0,0 +2013,5,12,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,25,1,2015,13,0,0 +2013,10,14,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-7,0,1325,-4,0,0 +2013,7,19,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,44,1,1315,20,1,0 +2013,6,4,2,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2111,-8,0,2359,-19,0,0 +2013,8,12,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1819,-3,0,2118,-8,0,0 +2013,5,23,4,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-8,0,1914,-18,0,0 +2013,7,12,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,38,1,2210,40,1,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2010,0,0,2340,-11,0,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,815,4,0,1040,5,0,0 +2013,6,23,7,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1549,79,1,1705,75,1,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1210,27,1,1435,23,1,0 +2013,5,23,4,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1340,12,0,1705,-3,0,0 +2013,10,9,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-6,0,916,-22,0,0 +2013,10,6,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1736,-5,0,1907,-6,0,0 +2013,7,28,7,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-10,0,918,-5,0,0 +2013,9,5,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1019,0,,1031,0,1,1 +2013,8,19,1,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,11,0,1240,8,0,0 +2013,5,31,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-2,0,1127,-15,0,0 +2013,8,13,2,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,-2,0,1842,-3,0,0 +2013,7,26,5,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1800,12,0,1920,8,0,0 +2013,4,10,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1118,-6,0,1257,1,0,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,6,0,1320,6,0,0 +2013,10,7,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,7,0,1201,10,0,0 +2013,9,20,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,0,0,1912,3,0,0 +2013,5,12,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-9,0,1000,6,0,0 +2013,8,15,4,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,1,0,1012,2,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2225,7,0,2329,0,0,0 +2013,4,19,5,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1837,-5,0,1926,-5,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1120,-4,0,1258,-11,0,0 +2013,8,9,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1518,-7,0,2359,-47,0,0 +2013,7,2,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,-4,0,2126,-4,0,0 +2013,7,12,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2315,76,1,715,79,1,0 +2013,9,12,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1340,-1,0,1425,-4,0,0 +2013,8,17,6,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,-1,0,1025,-24,0,0 +2013,5,8,3,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,-7,0,1105,11,0,0 +2013,7,3,3,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,10,0,1845,5,0,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-3,0,1735,-16,0,0 +2013,8,17,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,-14,0,1506,-17,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1010,5,0,1140,12,0,0 +2013,6,29,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1359,46,1,1628,65,1,0 +2013,7,13,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,67,1,1601,64,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,0,0,1109,-24,0,0 +2013,6,16,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,17,1,2205,16,1,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1850,0,0,2130,-7,0,0 +2013,7,12,5,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,5,0,745,-5,0,0 +2013,4,3,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1150,-4,0,1310,-1,0,0 +2013,10,23,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,735,-3,0,1035,5,0,0 +2013,4,8,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,800,-5,0,1130,-25,0,0 +2013,10,21,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-1,0,1641,-14,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1150,16,1,1445,-7,0,0 +2013,10,4,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-10,0,1340,-14,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1210,-3,0,1316,13,0,0 +2013,6,20,4,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,840,-7,0,1111,-2,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2105,11,0,2310,1,0,0 +2013,7,26,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,714,-1,0,848,-11,0,0 +2013,7,30,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1645,-2,0,1800,2,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1950,16,1,2330,7,0,0 +2013,7,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,830,-4,0,956,-6,0,0 +2013,7,15,1,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1910,-3,0,2238,-47,0,0 +2013,6,23,7,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,747,0,0,1014,-5,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2009,-3,0,2206,-4,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1440,-1,0,1820,-8,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,20,1,5,24,1,0 +2013,7,11,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,449,106,1,744,104,1,0 +2013,5,12,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1650,0,0,1740,-13,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,2145,1,0,2314,6,0,0 +2013,6,6,4,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1834,-8,0,2037,5,0,0 +2013,7,29,1,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1620,-1,0,1820,-3,0,0 +2013,5,8,3,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,7,0,1238,8,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,-3,0,1908,-3,0,0 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2115,-2,0,2205,-8,0,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,28,1,2140,24,1,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,2,0,1905,-6,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-3,0,2335,-15,0,0 +2013,9,27,5,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2018,-9,0,2145,-5,0,0 +2013,7,21,7,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-1,0,900,18,1,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2130,-1,0,2306,-20,0,0 +2013,4,2,2,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1712,-4,0,1849,-8,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2050,42,1,2255,17,1,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1345,46,1,1706,44,1,0 +2013,8,7,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1317,110,1,1610,111,1,0 +2013,6,21,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2035,5,0,2255,-7,0,0 +2013,7,19,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,-5,0,2135,-19,0,0 +2013,7,28,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1755,129,1,1930,126,1,0 +2013,8,9,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,3,0,1355,-11,0,0 +2013,10,16,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1855,51,1,1945,55,1,0 +2013,9,15,7,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-5,0,1158,6,0,0 +2013,4,3,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,808,41,1,1109,24,1,0 +2013,4,30,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,922,0,0,0 +2013,4,15,1,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1425,4,0,1720,-3,0,0 +2013,4,24,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11042,Cleveland-Hopkins International,Cleveland,OH,1050,-3,0,1746,-34,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1745,-3,0,1908,-13,0,0 +2013,8,23,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-4,0,1346,-8,0,0 +2013,10,9,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,-3,0,1135,-4,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,4,0,2320,10,0,0 +2013,9,11,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1645,0,,1752,0,1,1 +2013,10,21,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,615,-6,0,750,-13,0,0 +2013,9,8,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,927,-4,0,1434,3,0,0 +2013,7,8,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1444,23,1,1709,14,0,0 +2013,6,5,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1038,-9,0,1209,-10,0,0 +2013,6,16,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,-9,0,2128,-13,0,0 +2013,5,6,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-5,0,1903,0,0,0 +2013,7,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2202,-7,0,2309,-8,0,0 +2013,6,17,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1042,3,0,1337,-1,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,32,1,2330,26,1,0 +2013,6,3,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,605,-2,0,1436,-4,0,0 +2013,8,7,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1158,-2,0,1435,-4,0,0 +2013,4,25,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-7,0,1206,-15,0,0 +2013,6,19,3,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,-9,0,1845,-14,0,0 +2013,5,10,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,102,1,1104,107,1,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,710,0,0,955,-11,0,0 +2013,8,14,3,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,550,-6,0,746,25,1,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2024,-4,0,2206,-7,0,0 +2013,4,6,6,EV,12264,Washington Dulles International,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,810,-9,0,930,-30,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1930,-4,0,2050,-18,0,0 +2013,8,23,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,630,-2,0,837,-3,0,0 +2013,8,4,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,22,1,1945,9,0,0 +2013,6,19,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1520,3,0,1805,19,1,0 +2013,8,15,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,-7,0,2152,-5,0,0 +2013,6,3,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,1000,-13,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1050,-2,0,1540,-5,0,0 +2013,10,24,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-2,0,1350,-12,0,0 +2013,7,17,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1909,13,0,2200,-11,0,0 +2013,10,9,3,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1355,4,0,1610,-3,0,0 +2013,6,6,4,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1440,8,0,1925,-5,0,0 +2013,8,5,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1423,-5,0,1526,-12,0,0 +2013,10,13,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1359,-5,0,1535,1,0,0 +2013,5,9,4,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,3,0,1005,-5,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,16,1,905,10,0,0 +2013,4,21,7,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,600,-5,0,855,1,0,0 +2013,4,16,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2055,-4,0,2225,-23,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,-2,0,1027,-7,0,0 +2013,8,29,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1829,-7,0,2108,-14,0,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1929,50,1,2233,34,1,0 +2013,5,11,6,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1730,2,0,1920,-3,0,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,854,-2,0,1009,-5,0,0 +2013,9,10,2,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1240,4,0,1545,-36,0,0 +2013,5,12,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,-3,0,1720,-21,0,0 +2013,7,29,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1820,127,1,1958,115,1,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,67,1,2146,53,1,0 +2013,10,27,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1858,-11,0,2025,-6,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1340,21,1,1600,-2,0,0 +2013,5,21,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,20,1,2125,15,1,0 +2013,6,26,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,23,1,2025,15,1,0 +2013,5,27,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,952,-3,0,1207,-3,0,0 +2013,8,2,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,514,-2,0,635,0,0,0 +2013,4,18,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1130,14,0,1340,3,0,0 +2013,7,15,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1405,0,0,2200,-4,0,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1730,0,0,2311,-10,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,747,-7,0,930,-3,0,0 +2013,6,4,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1617,-4,0,1805,-14,0,0 +2013,5,19,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,264,1,1825,285,1,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1920,-5,0,2302,-28,0,0 +2013,10,10,4,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1040,4,0,1215,22,1,0 +2013,6,7,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-5,0,1055,7,0,0 +2013,4,25,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1407,-15,0,0 +2013,4,4,4,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1009,-3,0,1329,-5,0,0 +2013,10,18,5,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1740,8,0,2035,14,0,0 +2013,4,13,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1520,7,0,1835,1,0,0 +2013,10,13,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1315,19,1,1405,23,1,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,43,1,1700,27,1,0 +2013,10,25,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1259,0,0,1504,-4,0,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1650,1,0,1935,2,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2225,38,1,2305,32,1,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,2,0,1855,-5,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1610,24,1,1732,34,1,0 +2013,7,13,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-7,0,821,0,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,800,-6,0,1050,-27,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,81,1,1929,108,1,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-3,0,1811,-6,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1740,43,1,2315,32,1,0 +2013,7,25,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1520,-7,0,1705,-22,0,0 +2013,9,7,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-5,0,1156,-7,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1045,-2,0,1150,3,0,0 +2013,9,2,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2125,-8,0,2238,-10,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,629,4,0,806,-5,0,0 +2013,5,15,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1302,1,0,1536,-11,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1335,146,1,1525,126,1,0 +2013,9,30,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,23,1,1430,18,1,0 +2013,5,8,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-4,0,947,-10,0,0 +2013,8,10,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1008,-7,0,1028,-7,0,0 +2013,7,25,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1217,-11,0,0 +2013,8,16,5,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,38,1,1941,25,1,0 +2013,6,1,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,25,1,1413,19,1,0 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-8,0,1718,-11,0,0 +2013,8,19,1,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,840,-4,0,1030,-11,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,630,-5,0,813,-13,0,0 +2013,5,3,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1330,-3,0,2145,26,1,0 +2013,7,2,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1100,-3,0,1431,13,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1835,59,1,2000,40,1,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,-5,0,2344,-15,0,0 +2013,8,30,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,755,-1,0,905,-19,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,733,-2,0,753,-14,0,0 +2013,8,22,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1816,7,0,2159,8,0,0 +2013,6,22,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,-3,0,842,12,0,0 +2013,6,11,2,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-2,0,1510,-14,0,0 +2013,10,19,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1925,88,1,2010,85,1,0 +2013,10,31,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1039,-1,0,1329,6,0,0 +2013,4,17,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1733,2,0,2104,2,0,0 +2013,7,16,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2040,-10,0,2232,-21,0,0 +2013,7,1,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1517,32,1,1627,54,1,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,-2,0,2034,-14,0,0 +2013,7,19,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,90,1,1945,76,1,0 +2013,5,29,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1700,-1,0,1814,20,1,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1100,0,0,1530,-1,0,0 +2013,10,21,1,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-4,0,1605,6,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2125,4,0,2315,6,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1715,5,0,1940,-16,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,-2,0,1230,1,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1040,-1,0,1100,-19,0,0 +2013,8,2,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,2055,84,1,2155,85,1,0 +2013,4,4,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1903,0,0,2040,-8,0,0 +2013,10,10,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,630,1,0,830,-3,0,0 +2013,5,10,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-6,0,1612,-18,0,0 +2013,4,9,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,1,0,2215,11,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1220,109,1,1741,131,1,0 +2013,9,18,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1005,13,0,1130,18,1,0 +2013,5,6,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,935,11,0,1030,11,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1115,1,0,1305,-1,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,17,1,1555,8,0,0 +2013,8,16,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1435,6,0,1625,4,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2020,-2,0,2120,-11,0,0 +2013,10,20,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-4,0,811,-3,0,0 +2013,6,19,3,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-13,0,707,-26,0,0 +2013,5,9,4,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1344,-8,0,1542,-14,0,0 +2013,6,15,6,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1716,-14,0,1815,-26,0,0 +2013,7,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,635,-2,0,810,-6,0,0 +2013,5,6,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-9,0,1028,-5,0,0 +2013,7,19,5,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,-8,0,2120,-13,0,0 +2013,8,13,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1720,95,1,1850,86,1,0 +2013,8,21,3,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,804,-6,0,918,-27,0,0 +2013,4,23,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1730,-2,0,2127,-28,0,0 +2013,5,28,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,810,-10,0,0 +2013,5,28,2,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1710,-4,0,1858,-12,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,853,-8,0,1013,-22,0,0 +2013,9,27,5,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,615,-4,0,900,-9,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1205,-3,0,1353,-27,0,0 +2013,9,18,3,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-2,0,840,-2,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,66,1,1530,39,1,0 +2013,5,18,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,722,-10,0,853,-22,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,-4,0,945,-5,0,0 +2013,6,7,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,11,0,2225,15,1,0 +2013,5,4,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1700,30,1,1735,36,1,0 +2013,7,27,6,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,4,0,2213,-6,0,0 +2013,5,25,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,820,2,0,945,1,0,0 +2013,8,18,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1530,5,0,1745,-13,0,0 +2013,5,28,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1447,-3,0,2010,-3,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1030,-3,0,0 +2013,10,27,7,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,805,-10,0,1114,-3,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2015,8,0,2120,18,1,0 +2013,6,19,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,943,-1,0,1115,-18,0,0 +2013,10,17,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1135,-2,0,1250,-9,0,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,17,1,1218,-5,0,0 +2013,8,12,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1114,49,1,1443,51,1,0 +2013,7,2,2,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-3,0,1104,5,0,0 +2013,5,24,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,745,-2,0,1047,-3,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,0,0,2212,-2,0,0 +2013,8,4,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-9,0,931,-4,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,3,0,1452,-12,0,0 +2013,7,24,3,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-1,0,857,5,0,0 +2013,10,27,7,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1210,1,0,1427,-4,0,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1820,19,1,2230,6,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-2,0,2050,0,0,0 +2013,10,5,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-5,0,1635,-4,0,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1054,5,0,1827,-5,0,0 +2013,5,31,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1010,5,0,1214,13,0,0 +2013,8,7,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,-5,0,1135,-4,0,0 +2013,4,26,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1300,-5,0,1556,20,1,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,17,1,1627,-1,0,0 +2013,10,25,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,649,-7,0,935,-10,0,0 +2013,8,11,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,103,1,1458,82,1,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1915,39,1,56,27,1,0 +2013,5,1,3,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,6,0,1428,-3,0,0 +2013,5,5,7,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,652,-12,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,8,0,1850,12,0,0 +2013,7,18,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1040,-10,0,1205,-26,0,0 +2013,5,27,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1800,-5,0,2115,-16,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,1,0,2025,0,0,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-2,0,1020,-8,0,0 +2013,9,21,6,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-8,0,1918,6,0,0 +2013,5,18,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1655,94,1,1800,87,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,0,0,1828,23,1,0 +2013,5,17,5,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1554,-2,0,2358,-11,0,0 +2013,5,26,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2010,-6,0,2030,-26,0,0 +2013,5,15,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1322,27,1,1420,28,1,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2220,36,1,2300,35,1,0 +2013,6,17,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1400,-8,0,1545,-11,0,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1620,6,0,1705,-1,0,0 +2013,10,29,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-9,0,1912,-9,0,0 +2013,9,27,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-5,0,2159,-20,0,0 +2013,6,13,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1200,1,0,1310,-4,0,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,8,0,2255,19,1,0 +2013,5,20,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,81,1,1733,133,1,0 +2013,7,12,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,935,0,,1105,0,1,1 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1845,-4,0,1955,-6,0,0 +2013,10,23,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,42,1,821,42,1,0 +2013,6,25,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,10,0,957,3,0,0 +2013,7,31,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,42,1,1914,40,1,0 +2013,4,11,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1758,10,0,1921,17,1,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1550,-3,0,1919,-15,0,0 +2013,6,11,2,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1235,65,1,1639,50,1,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,941,-2,0,1152,-7,0,0 +2013,6,3,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1015,117,1,1155,107,1,0 +2013,8,31,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1359,0,0,1559,-5,0,0 +2013,10,11,5,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1859,85,1,2024,69,1,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1405,12,0,1510,0,0,0 +2013,5,4,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,810,-5,0,955,-28,0,0 +2013,8,6,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,925,-2,0,1040,-7,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-6,0,1930,-28,0,0 +2013,7,28,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,23,1,1929,14,0,0 +2013,5,11,6,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,920,22,1,1715,21,1,0 +2013,5,16,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,11,0,1820,10,0,0 +2013,9,13,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2002,-7,0,2109,-24,0,0 +2013,10,27,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-10,0,1438,-11,0,0 +2013,10,4,5,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,33,1,1550,47,1,0 +2013,6,18,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,24,1,1959,61,1,0 +2013,8,9,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,530,2,0,731,-4,0,0 +2013,7,13,6,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,-8,0,1315,1,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,45,1,2220,37,1,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,710,-2,0,830,-12,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1540,18,1,1800,19,1,0 +2013,10,15,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,655,2,0,750,-5,0,0 +2013,10,19,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2030,28,1,2106,25,1,0 +2013,8,4,7,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,-6,0,1905,-9,0,0 +2013,10,31,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,820,-3,0,1145,-16,0,0 +2013,7,6,6,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1545,-2,0,1835,-10,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1900,110,1,2000,107,1,0 +2013,9,21,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-7,0,1937,-15,0,0 +2013,4,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,837,0,,1116,0,1,1 +2013,5,10,5,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1925,0,,2232,0,1,1 +2013,4,25,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1830,-11,0,2033,-27,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,908,-4,0,1158,-11,0,0 +2013,10,30,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1920,30,1,2053,20,1,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-3,0,2156,-15,0,0 +2013,9,27,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1938,10,0,28,7,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-3,0,1532,1,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1548,10,0,1723,3,0,0 +2013,6,23,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-6,0,915,1,0,0 +2013,10,4,5,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-7,0,1257,-12,0,0 +2013,9,22,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1811,-4,0,1931,-11,0,0 +2013,5,27,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-1,0,1826,-5,0,0 +2013,10,22,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,952,13,0,1120,12,0,0 +2013,6,23,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,945,-1,0,1105,2,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,29,1,2210,86,1,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1955,64,1,2305,71,1,0 +2013,10,6,7,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1320,-3,0,2130,-12,0,0 +2013,5,22,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,621,0,0,1435,-13,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,710,-4,0,1111,-12,0,0 +2013,4,25,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1605,-4,0,1730,-12,0,0 +2013,6,2,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-2,0,1620,0,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1400,0,0,1505,-4,0,0 +2013,8,21,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1415,0,0,1505,-6,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,42,1,2235,49,1,0 +2013,10,21,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1730,14,0,2012,11,0,0 +2013,10,6,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,4,0,2125,33,1,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-3,0,1630,-17,0,0 +2013,9,15,7,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,-2,0,1705,-13,0,0 +2013,10,3,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,805,-5,0,922,-24,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,32,1,1850,33,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1351,-2,0,1519,-3,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,3,0,1507,-3,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,108,1,2359,106,1,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1039,0,0,1915,6,0,0 +2013,7,16,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,7,0,1725,-7,0,0 +2013,4,21,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1742,14,0,1924,7,0,0 +2013,6,17,1,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,700,1,0,1045,0,0,0 +2013,7,25,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,4,0,1730,6,0,0 +2013,10,4,5,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,62,1,1945,78,1,0 +2013,6,4,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1547,-3,0,2108,-16,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,930,1,0,1045,-18,0,0 +2013,5,5,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1935,3,0,2120,-17,0,0 +2013,9,19,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2025,40,1,2255,43,1,0 +2013,9,26,4,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,100,1,1457,92,1,0 +2013,7,2,2,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,533,-1,0,940,-20,0,0 +2013,10,28,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,941,-5,0,1619,-35,0,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1910,0,0,2054,-4,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-6,0,1759,-3,0,0 +2013,7,18,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1540,-1,0,1710,-9,0,0 +2013,5,7,2,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1830,-1,0,1955,-5,0,0 +2013,5,5,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1345,6,0,1610,7,0,0 +2013,5,19,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,928,-20,0,0 +2013,9,18,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-6,0,1445,-12,0,0 +2013,8,20,2,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,9,0,1955,-5,0,0 +2013,4,21,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,-5,0,1915,-15,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1540,6,0,1745,-7,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-4,0,1259,-8,0,0 +2013,4,25,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1350,0,0,1535,-11,0,0 +2013,5,27,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-2,0,1825,-1,0,0 +2013,6,17,1,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1018,-7,0,1131,-20,0,0 +2013,7,14,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1755,10,0,1855,4,0,0 +2013,4,28,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,605,-4,0,715,0,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1304,-2,0,1714,4,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,955,-1,0,1100,1,0,0 +2013,8,26,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1656,-10,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,5,0,2139,2,0,0 +2013,7,18,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,600,-4,0,615,-3,0,0 +2013,9,6,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-5,0,1244,-20,0,0 +2013,7,13,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1228,52,1,1454,37,1,0 +2013,5,4,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1155,6,0,1230,0,0,0 +2013,7,21,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-6,0,715,-8,0,0 +2013,8,11,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1415,-5,0,1551,7,0,0 +2013,10,21,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1900,14,0,2210,-4,0,0 +2013,4,5,5,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,4,0,1832,19,1,0 +2013,5,21,2,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1855,26,1,2205,15,1,0 +2013,7,18,4,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,317,1,1815,302,1,0 +2013,5,16,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,833,87,1,946,78,1,0 +2013,6,18,2,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,735,3,0,910,-8,0,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,2,0,945,-3,0,0 +2013,7,11,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,0,0,1252,-3,0,0 +2013,10,29,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,-4,0,1613,-16,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,2,0,1515,7,0,0 +2013,5,30,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,2025,-3,0,2100,-2,0,0 +2013,8,25,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1820,-4,0,2148,-4,0,0 +2013,4,8,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,0,0,1327,-14,0,0 +2013,10,10,4,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1115,27,1,1555,24,1,0 +2013,7,23,2,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-2,0,1802,3,0,0 +2013,5,11,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,-2,0,1157,-7,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1102,-4,0,1230,-1,0,0 +2013,6,23,7,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-9,0,758,-23,0,0 +2013,6,28,5,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,803,7,0,1643,54,1,0 +2013,5,6,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,831,0,0,1102,-6,0,0 +2013,9,21,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-7,0,812,-10,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,0,,1035,0,1,1 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1930,9,0,2205,-17,0,0 +2013,8,5,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,2,0,2250,2,0,0 +2013,5,21,2,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1130,-7,0,1233,-21,0,0 +2013,10,5,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-10,0,1356,-12,0,0 +2013,6,16,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,8,0,2105,25,1,0 +2013,7,18,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,945,-4,0,1105,-5,0,0 +2013,6,13,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,0,,2047,0,1,1 +2013,6,18,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-5,0,725,-26,0,0 +2013,9,14,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,147,1,1550,141,1,0 +2013,8,7,3,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1235,-2,0,1430,-8,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1925,2,0,2250,9,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1846,5,0,2004,-12,0,0 +2013,7,16,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,730,-5,0,845,-17,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1230,13,0,1410,5,0,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2245,-7,0,2347,-8,0,0 +2013,7,5,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1320,-3,0,1935,-11,0,0 +2013,8,9,5,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1239,34,1,1734,22,1,0 +2013,5,28,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,650,7,0,750,-4,0,0 +2013,10,20,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1556,-9,0,13,-20,0,0 +2013,7,8,1,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-5,0,804,-17,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1910,44,1,2015,42,1,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,900,-3,0,1053,-19,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,830,-3,0,1050,-11,0,0 +2013,9,24,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,945,-2,0,1350,-19,0,0 +2013,7,7,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,15,1,1928,20,1,0 +2013,6,6,4,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,515,-5,0,626,-7,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-2,0,1830,-7,0,0 +2013,5,17,5,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1230,27,1,1442,21,1,0 +2013,6,18,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1615,14,0,1948,2,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,830,13,0,1540,11,0,0 +2013,5,27,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,613,-5,0,935,-16,0,0 +2013,4,16,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1640,186,1,1850,187,1,0 +2013,7,3,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,-3,0,1559,-19,0,0 +2013,4,8,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,700,-6,0,1515,-17,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,-1,0,1053,-13,0,0 +2013,7,3,3,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,715,-3,0,825,-9,0,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-5,0,2149,-12,0,0 +2013,4,5,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,12,0,2310,2,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1300,32,1,1610,31,1,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1440,9,0,1555,3,0,0 +2013,7,6,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,-6,0,859,-4,0,0 +2013,4,1,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,800,0,0,925,-11,0,0 +2013,9,18,3,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,625,88,1,818,75,1,0 +2013,5,28,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1610,2,0,1655,2,0,0 +2013,10,13,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1050,-8,0,1230,-21,0,0 +2013,9,22,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,3,0,930,-7,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1015,-2,0,1115,7,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1859,-1,0,2023,-3,0,0 +2013,8,16,5,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1721,-6,0,1925,-5,0,0 +2013,4,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,-1,0,2053,-15,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1500,6,0,1712,1,0,0 +2013,5,10,5,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2056,4,0,500,-2,0,0 +2013,6,1,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1135,0,0,1300,-2,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1737,1,0,1905,-15,0,0 +2013,4,14,7,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-8,0,1642,15,1,0 +2013,7,25,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,-4,0,2302,-8,0,0 +2013,5,29,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,730,-3,0,926,-3,0,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,710,-5,0,815,-14,0,0 +2013,4,4,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1100,-18,0,1315,-32,0,0 +2013,4,17,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1655,2,0,2206,-21,0,0 +2013,7,31,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,4,0,1810,2,0,0 +2013,8,7,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,907,-6,0,1129,12,0,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,-6,0,930,-16,0,0 +2013,9,21,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1657,-5,0,1837,-29,0,0 +2013,7,19,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,758,-7,0,959,-8,0,0 +2013,6,2,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1730,9,0,2119,-25,0,0 +2013,10,15,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,805,0,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-3,0,1201,-19,0,0 +2013,7,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1235,-2,0,1440,-12,0,0 +2013,5,30,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,-10,0,1744,5,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1703,3,0,1729,-8,0,0 +2013,10,13,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,-1,0,1920,1,0,0 +2013,4,5,5,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,3,0,1735,0,0,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1642,17,1,15,6,0,0 +2013,7,27,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,610,4,0,925,6,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-3,0,1338,-10,0,0 +2013,9,10,2,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1924,-12,0,2031,-13,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,815,-3,0,922,-4,0,0 +2013,4,24,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1502,3,0,2329,29,1,0 +2013,9,15,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1554,3,0,1628,1,0,0 +2013,10,13,7,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-7,0,1438,-28,0,0 +2013,4,6,6,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1350,-9,0,1454,-19,0,0 +2013,7,29,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1225,-2,0,1514,-17,0,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-7,0,1005,-6,0,0 +2013,8,16,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1603,-2,0,2139,-18,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-7,0,2327,-17,0,0 +2013,8,1,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1305,-4,0,1625,-7,0,0 +2013,8,16,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,-7,0,1355,-2,0,0 +2013,10,28,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-6,0,2005,-11,0,0 +2013,7,4,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,1,0,2020,-13,0,0 +2013,5,3,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1039,-7,0,1414,-21,0,0 +2013,10,15,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-3,0,912,-30,0,0 +2013,6,23,7,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1435,-9,0,1734,-2,0,0 +2013,8,5,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,940,0,0,1050,-7,0,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,715,-4,0,844,-6,0,0 +2013,9,11,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,45,1,2015,41,1,0 +2013,10,7,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,4,0,1905,8,0,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1710,0,0,2200,3,0,0 +2013,8,16,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-4,0,2203,2,0,0 +2013,9,9,1,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1825,0,0,2121,-24,0,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,-3,0,2050,-16,0,0 +2013,6,11,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,28,1,1805,-6,0,0 +2013,6,8,6,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2149,-10,0,2252,-28,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1005,1,0,1241,-2,0,0 +2013,9,12,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,0,,2120,0,1,1 +2013,5,12,7,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1455,-3,0,1638,-8,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2015,20,1,2215,1,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-6,0,900,12,0,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1330,20,1,1515,10,0,0 +2013,9,19,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1515,-6,0,1937,26,1,0 +2013,8,18,7,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1659,3,0,1853,-3,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2151,-5,0,2306,-16,0,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-7,0,1520,3,0,0 +2013,5,4,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,852,0,0,1008,8,0,0 +2013,4,11,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-6,0,1805,-1,0,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,-3,0,1550,-14,0,0 +2013,4,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1512,70,1,1727,76,1,0 +2013,6,28,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1005,0,0,1155,5,0,0 +2013,8,18,7,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,3,0,2155,-7,0,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1805,114,1,2045,80,1,0 +2013,8,23,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-1,0,1250,-5,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1300,-2,0,1643,1,0,0 +2013,9,30,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1905,23,1,2022,33,1,0 +2013,7,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,79,1,1945,90,1,0 +2013,10,29,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1537,8,0,1706,9,0,0 +2013,8,5,1,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1905,29,1,10,26,1,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,47,1,2335,34,1,0 +2013,8,7,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-10,0,955,10,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1735,17,1,1929,7,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1020,20,1,1404,22,1,0 +2013,7,22,1,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,0,0,846,-6,0,0 +2013,10,25,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1735,-10,0,2305,-6,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1225,-15,0,1350,3,0,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1330,-2,0,1540,1,0,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2014,9,0,2122,9,0,0 +2013,10,25,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-7,0,1718,-18,0,0 +2013,10,24,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1848,69,1,2136,59,1,0 +2013,6,14,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,0,,1327,0,1,1 +2013,6,4,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-5,0,2000,-28,0,0 +2013,8,3,6,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1214,23,1,1315,20,1,0 +2013,8,18,7,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,28,1,1715,5,0,0 +2013,10,10,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,10,0,1708,10,0,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2004,-4,0,2304,-21,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1945,0,,2050,0,1,1 +2013,9,8,7,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1400,5,0,1705,-16,0,0 +2013,8,30,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1825,144,1,1850,261,1,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1225,-4,0,1449,-49,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,23,1,1104,16,1,0 +2013,10,7,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-5,0,746,-16,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,800,-1,0,905,1,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1120,-1,0,1305,-8,0,0 +2013,5,6,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,8,0,1800,21,1,0 +2013,8,25,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1936,-4,0,2035,-29,0,0 +2013,8,2,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,500,-2,0,805,-7,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,810,7,0,919,26,1,0 +2013,7,15,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,2,0,2030,-3,0,0 +2013,10,11,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,40,1,1618,44,1,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1910,55,1,5,51,1,0 +2013,10,18,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1358,-12,0,1535,-15,0,0 +2013,10,30,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1147,-2,0,1309,-1,0,0 +2013,10,2,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,835,-10,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1255,10,0,1600,1,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1420,-2,0,1740,-9,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1159,-10,0,0 +2013,8,3,6,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,-8,0,1853,25,1,0 +2013,4,2,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-1,0,1832,-12,0,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,835,-1,0,1405,-3,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1550,46,1,1745,55,1,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,-1,0,2344,-22,0,0 +2013,10,14,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1625,66,1,1750,85,1,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,14,0,100,12,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1244,-5,0,1420,-11,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1425,-4,0,1835,-5,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1645,-6,0,1856,9,0,0 +2013,7,1,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,77,1,1001,88,1,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1941,7,0,2233,5,0,0 +2013,10,9,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-1,0,1434,-19,0,0 +2013,4,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-9,0,2253,-6,0,0 +2013,10,29,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,855,0,0,1000,-6,0,0 +2013,5,9,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1345,3,0,1541,-9,0,0 +2013,7,4,4,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1640,-4,0,1950,-4,0,0 +2013,7,11,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,-4,0,1323,0,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1630,128,1,2010,144,1,0 +2013,6,11,2,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,-5,0,756,-29,0,0 +2013,7,26,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1915,-2,0,2012,-9,0,0 +2013,5,5,7,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1759,46,1,2027,18,1,0 +2013,6,30,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,-6,0,935,3,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,60,1,2224,45,1,0 +2013,8,21,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-7,0,853,-10,0,0 +2013,8,5,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-2,0,2050,-2,0,0 +2013,8,25,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1735,3,0,1915,17,1,0 +2013,5,15,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-2,0,913,-54,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1720,15,1,2000,9,0,0 +2013,10,10,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1709,-3,0,2318,6,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1506,1,0,1738,-12,0,0 +2013,10,16,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1950,-8,0,2247,-12,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1825,28,1,45,11,0,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-4,0,858,-15,0,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,659,3,0,1007,1,0,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2011,-5,0,2328,3,0,0 +2013,8,3,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,0,,2010,0,1,1 +2013,8,9,5,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1455,78,1,1639,63,1,0 +2013,10,29,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1120,9,0,1901,-20,0,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,700,-4,0,959,-7,0,0 +2013,9,24,2,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,945,-3,0,1336,-40,0,0 +2013,4,7,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1130,-5,0,1421,-22,0,0 +2013,5,20,1,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,215,1,1905,189,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,-8,0,1720,20,1,0 +2013,10,31,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,940,-5,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1536,0,0,1620,-2,0,0 +2013,8,24,6,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1055,4,0,1331,-8,0,0 +2013,9,3,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,-2,0,1328,5,0,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,0,0,1710,0,0,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2242,0,0,704,-27,0,0 +2013,6,21,5,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,3,0,1258,5,0,0 +2013,9,4,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1935,-5,0,2059,-10,0,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1614,-5,0,1821,-5,0,0 +2013,5,27,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-4,0,1804,-1,0,0 +2013,9,25,3,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-4,0,853,-13,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-2,0,1918,-21,0,0 +2013,10,2,3,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2035,-6,0,2204,-36,0,0 +2013,8,9,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1646,-10,0,1811,7,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1935,-3,0,2215,-17,0,0 +2013,6,27,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1942,-1,0,137,-7,0,0 +2013,9,4,3,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1102,-11,0,1925,-17,0,0 +2013,7,8,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,829,-2,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,805,-4,0,930,-10,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,2132,-3,0,2308,-22,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,63,1,1850,36,1,0 +2013,6,1,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,-2,0,1843,-17,0,0 +2013,6,24,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2201,71,1,2305,61,1,0 +2013,5,30,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,650,-6,0,750,-19,0,0 +2013,10,10,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,639,3,0,835,-4,0,0 +2013,6,25,2,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1840,29,1,2150,14,0,0 +2013,7,9,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1115,-1,0,1405,0,0,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1551,123,1,1729,112,1,0 +2013,4,1,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,8,0,1007,25,1,0 +2013,5,26,7,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1344,-9,0,1621,-22,0,0 +2013,5,14,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1653,22,1,1738,14,0,0 +2013,9,29,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1610,-7,0,1625,-4,0,0 +2013,10,30,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1808,-5,0,2101,-15,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1145,-4,0,1344,13,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,6,0,1925,-1,0,0 +2013,4,12,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,545,-4,0,709,19,1,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1140,1,0,1650,-2,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1335,19,1,1515,12,0,0 +2013,10,1,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1557,6,0,1747,8,0,0 +2013,5,23,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,24,1,2010,18,1,0 +2013,7,9,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,700,-4,0,820,0,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,-1,0,1632,-6,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,30,1,1515,18,1,0 +2013,8,16,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1723,-5,0,1955,15,1,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,89,1,2250,80,1,0 +2013,6,26,3,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,11,0,1855,-6,0,0 +2013,9,17,2,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,-5,0,1408,-6,0,0 +2013,5,3,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1710,0,0,1845,5,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1100,1,0,1200,2,0,0 +2013,9,20,5,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,-5,0,1230,0,0,0 +2013,10,16,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1625,-6,0,1909,0,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,605,-2,0,729,-24,0,0 +2013,10,15,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1543,10,0,0 +2013,9,24,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-6,0,1335,-8,0,0 +2013,7,13,6,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,809,6,0,0 +2013,9,10,2,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2055,-4,0,2342,-11,0,0 +2013,6,4,2,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1416,4,0,1943,-17,0,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1850,16,1,2120,0,0,0 +2013,10,11,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1919,17,1,2100,25,1,0 +2013,9,13,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-5,0,1350,-5,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1421,-2,0,1557,40,1,0 +2013,5,20,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1900,245,1,2110,266,1,0 +2013,8,11,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,5,0,1935,14,0,0 +2013,4,23,2,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1550,-4,0,1905,4,0,0 +2013,10,21,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-7,0,1001,1,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-10,0,2033,-16,0,0 +2013,5,29,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,102,1,1622,101,1,0 +2013,7,8,1,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1035,8,0,1555,13,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-3,0,1610,0,0,0 +2013,6,21,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,800,-5,0,0 +2013,5,10,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,0,0,1252,-16,0,0 +2013,8,24,6,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1950,-7,0,2149,-25,0,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,-3,0,1137,-20,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,800,2,0,1108,-24,0,0 +2013,7,17,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,17,1,1350,-25,0,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1125,-5,0,1219,-18,0,0 +2013,8,7,3,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1345,-3,0,1640,54,1,0 +2013,7,6,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-9,0,1635,-26,0,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,2351,0,0,511,21,1,0 +2013,6,25,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,6,0,1122,-8,0,0 +2013,4,5,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,-5,0,1125,-6,0,0 +2013,6,18,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1754,10,0,2100,25,1,0 +2013,5,23,4,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1639,215,1,1930,213,1,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,17,1,1500,6,0,0 +2013,10,28,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1412,-4,0,1659,-10,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,930,29,1,1125,7,0,0 +2013,10,14,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1709,-4,0,1759,-2,0,0 +2013,5,14,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,-5,0,1558,-1,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,930,1,0,1500,-18,0,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,3,0,2125,-7,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,2155,6,0,2335,6,0,0 +2013,5,13,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-4,0,1015,-23,0,0 +2013,5,10,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1935,45,1,2259,50,1,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1355,7,0,1520,-6,0,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1305,48,1,2140,18,1,0 +2013,8,8,4,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,-5,0,2115,56,1,0 +2013,4,11,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2328,33,1,700,22,1,0 +2013,5,4,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,-4,0,1320,-13,0,0 +2013,5,13,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1115,-8,0,1247,-5,0,0 +2013,9,26,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-5,0,2005,-5,0,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,10,0,2244,-7,0,0 +2013,10,12,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-3,0,1451,3,0,0 +2013,5,6,1,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1245,-2,0,1533,6,0,0 +2013,9,8,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-9,0,1436,-2,0,0 +2013,7,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1716,0,0,2141,12,0,0 +2013,5,26,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-2,0,1733,-12,0,0 +2013,7,19,5,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,730,1,0,840,-17,0,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,0,,915,0,1,1 +2013,7,19,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1115,-10,0,1406,-11,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1605,-5,0,2125,0,0,0 +2013,6,4,2,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-3,0,1355,5,0,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,910,10,0,1510,1,0,0 +2013,5,13,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,2,0,1155,5,0,0 +2013,4,9,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,-3,0,2211,-5,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,-2,0,1425,-1,0,0 +2013,5,29,3,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,-4,0,2301,0,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1225,16,1,1655,4,0,0 +2013,8,23,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,-6,0,1359,-18,0,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,-2,0,2145,-21,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,735,-5,0,815,-11,0,0 +2013,5,2,4,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1751,-1,0,2000,9,0,0 +2013,6,22,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1220,-5,0,1445,-11,0,0 +2013,9,8,7,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1815,-15,0,2058,-20,0,0 +2013,4,27,6,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,820,-4,0,1035,-8,0,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1435,10,0,1535,17,1,0 +2013,6,8,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-1,0,2005,-32,0,0 +2013,6,6,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1015,-4,0,1125,-11,0,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1704,-4,0,1929,-21,0,0 +2013,7,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1517,0,0,1655,-18,0,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1557,-5,0,1736,0,0,0 +2013,9,17,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1216,75,1,1420,55,1,0 +2013,10,27,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,846,-6,0,1218,-11,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1135,-4,0,1316,-4,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1320,1,0,1435,0,0,0 +2013,5,8,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,0,0,1135,24,1,0 +2013,5,21,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1415,59,1,1813,37,1,0 +2013,10,11,5,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1600,4,0,1800,12,0,0 +2013,4,3,3,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,826,-6,0,947,-10,0,0 +2013,10,1,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,9,0,1911,4,0,0 +2013,10,22,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1840,28,1,1925,21,1,0 +2013,5,4,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-9,0,1535,-10,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2041,20,1,2307,8,0,0 +2013,6,19,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,100,1,2310,81,1,0 +2013,7,14,7,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,-2,0,1615,11,0,0 +2013,8,24,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-3,0,1748,-11,0,0 +2013,4,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-5,0,2325,-20,0,0 +2013,8,12,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,935,-10,0,0 +2013,4,24,3,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1455,17,1,1811,8,0,0 +2013,10,30,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1356,-5,0,1514,-9,0,0 +2013,8,24,6,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-11,0,1122,-9,0,0 +2013,4,4,4,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,740,-2,0,1115,-2,0,0 +2013,7,22,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1844,-6,0,2015,-10,0,0 +2013,6,5,3,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-4,0,832,-4,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,940,8,0,1125,3,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1455,-4,0,1603,16,1,0 +2013,10,31,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,-4,0,1201,0,0,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1305,9,0,1435,3,0,0 +2013,4,26,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1422,7,0,1518,4,0,0 +2013,5,25,6,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2305,-3,0,731,-8,0,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2005,2,0,2214,-17,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,19,1,1635,-3,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1050,13,0,1800,-3,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,727,6,0,900,-7,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,-3,0,2240,11,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,4,0,2300,-3,0,0 +2013,4,14,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,6,0,1720,-9,0,0 +2013,5,1,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-1,0,1540,-6,0,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1916,35,1,2151,13,0,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1247,-5,0,1535,10,0,0 +2013,7,31,3,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,-2,0,2010,-13,0,0 +2013,4,7,7,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1750,12,0,1910,17,1,0 +2013,8,29,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-2,0,1605,-4,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,28,1,2059,12,0,0 +2013,8,10,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1905,-11,0,2115,-32,0,0 +2013,4,18,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-4,0,810,1,0,0 +2013,7,7,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1030,270,1,1352,267,1,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-9,0,1200,-20,0,0 +2013,7,10,3,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,20,1,1922,70,1,0 +2013,6,5,3,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-9,0,1340,30,1,0 +2013,9,8,7,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1830,-5,0,2115,-11,0,0 +2013,4,25,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,500,-8,0,643,-17,0,0 +2013,8,16,5,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-5,0,917,8,0,0 +2013,4,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,-5,0,1618,-17,0,0 +2013,6,30,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1453,217,1,1755,207,1,0 +2013,6,7,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,23,1,1115,15,1,0 +2013,4,1,1,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,814,27,1,930,21,1,0 +2013,5,2,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1811,-5,0,2109,-14,0,0 +2013,8,12,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,725,-5,0,730,27,1,0 +2013,9,8,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,853,2,0,1007,-10,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1055,90,1,1215,86,1,0 +2013,4,21,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1024,-10,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1330,22,1,1425,9,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1306,34,1,1545,26,1,0 +2013,10,10,4,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,43,1,2253,47,1,0 +2013,7,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1750,-3,0,1910,-16,0,0 +2013,4,12,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,1,0,2020,18,1,0 +2013,6,10,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1529,-4,0,1629,-20,0,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,12,0,2253,25,1,0 +2013,9,13,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1850,23,1,2025,39,1,0 +2013,8,14,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,630,-2,0,1501,-15,0,0 +2013,4,2,2,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1007,9,0,0 +2013,6,17,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1400,36,1,1735,16,1,0 +2013,7,8,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1230,10,0,1335,3,0,0 +2013,10,15,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,0,0,1730,-17,0,0 +2013,8,18,7,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-7,0,2149,-3,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-8,0,1443,-9,0,0 +2013,5,29,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,1007,-6,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1645,101,1,1755,86,1,0 +2013,9,26,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-8,0,904,1,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,600,0,0,930,-6,0,0 +2013,7,28,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,-4,0,1852,-7,0,0 +2013,6,23,7,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-1,0,1005,-8,0,0 +2013,9,9,1,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1925,-8,0,2112,-16,0,0 +2013,9,20,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-5,0,1356,-6,0,0 +2013,10,18,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1110,16,1,1225,13,0,0 +2013,9,19,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,251,1,847,300,1,0 +2013,8,12,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1553,24,1,0 +2013,4,21,7,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1735,-10,0,1827,-9,0,0 +2013,6,13,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,-2,0,840,17,1,0 +2013,8,17,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2056,-1,0,2226,-9,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,-2,0,1005,-5,0,0 +2013,10,10,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,17,1,2040,19,1,0 +2013,6,17,1,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,0,0,1135,23,1,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1520,-5,0,1700,-17,0,0 +2013,4,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1450,-3,0,1615,-7,0,0 +2013,6,16,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,910,1,0,1155,5,0,0 +2013,7,6,6,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,-2,0,1205,-12,0,0 +2013,10,6,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,733,-21,0,0 +2013,4,29,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-5,0,1228,-9,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1415,52,1,1510,31,1,0 +2013,8,19,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,107,1,2040,89,1,0 +2013,8,2,5,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1929,0,0,30,-21,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,835,-2,0,1125,-28,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1705,58,1,2210,35,1,0 +2013,6,28,5,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,0,,1230,0,1,1 +2013,9,13,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,959,-3,0,1415,-6,0,0 +2013,8,2,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,57,1,1155,63,1,0 +2013,8,19,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,814,18,1,1025,18,1,0 +2013,9,24,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1050,-2,0,1854,-13,0,0 +2013,4,26,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,700,-8,0,1540,12,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,84,1,1518,74,1,0 +2013,10,4,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,855,102,1,1025,83,1,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,3,0,1745,-15,0,0 +2013,6,28,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1330,1,0,1413,0,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-3,0,929,-14,0,0 +2013,7,12,5,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1317,36,1,1610,29,1,0 +2013,5,1,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,-1,0,750,-7,0,0 +2013,7,10,3,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2110,-4,0,550,-1,0,0 +2013,8,5,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,857,-6,0,917,-13,0,0 +2013,5,5,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,900,-7,0,1114,-45,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1935,-4,0,2225,-17,0,0 +2013,6,7,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,64,1,1645,45,1,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-2,0,1721,25,1,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2005,49,1,2100,46,1,0 +2013,5,15,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1216,2,0,1339,75,1,0 +2013,5,27,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1602,137,1,1814,128,1,0 +2013,7,17,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,917,-5,0,1235,-11,0,0 +2013,4,1,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-4,0,1444,-17,0,0 +2013,5,7,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-9,0,1435,-26,0,0 +2013,9,22,7,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1630,-6,0,1820,-22,0,0 +2013,7,3,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1718,70,1,1940,72,1,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,-2,0,2102,4,0,0 +2013,4,16,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1540,0,,1650,0,1,1 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,25,1,1740,16,1,0 +2013,4,4,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,925,7,0,0 +2013,10,21,1,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1155,8,0,1405,8,0,0 +2013,9,6,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,-12,0,2055,-14,0,0 +2013,9,18,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1203,-3,0,1337,26,1,0 +2013,7,7,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,-1,0,1101,12,0,0 +2013,10,16,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,1,0,2059,2,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,735,5,0,845,-5,0,0 +2013,10,30,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,13,0,1405,6,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,650,9,0,910,8,0,0 +2013,9,27,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1304,5,0,1810,-8,0,0 +2013,10,30,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1030,-8,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,700,27,1,1244,12,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,830,4,0,1540,7,0,0 +2013,5,28,2,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1615,6,0,1800,-3,0,0 +2013,7,6,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,830,-3,0,1000,-7,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2100,84,1,2240,88,1,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1537,11,0,1740,12,0,0 +2013,9,9,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1837,35,1,2057,49,1,0 +2013,6,1,6,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1714,-6,0,1840,8,0,0 +2013,8,29,4,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-9,0,1930,-8,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2135,-2,0,2300,1,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,53,1,1114,65,1,0 +2013,8,22,4,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-10,0,1207,-12,0,0 +2013,10,17,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,1,0,1910,-9,0,0 +2013,8,14,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-3,0,828,1,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-3,0,1354,24,1,0 +2013,8,14,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,620,-11,0,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1041,52,1,1216,40,1,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1100,10,0,1256,22,1,0 +2013,8,8,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,1,0,1925,-1,0,0 +2013,7,6,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-2,0,2035,-16,0,0 +2013,8,14,3,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,841,-4,0,1135,-16,0,0 +2013,4,30,2,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,730,-1,0,905,21,1,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,930,25,1,1040,16,1,0 +2013,4,18,4,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2200,5,0,2308,11,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1310,-1,0,1755,-27,0,0 +2013,7,31,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,-2,0,2015,8,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1005,-3,0,1153,-22,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,1,0,754,-10,0,0 +2013,7,1,1,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-2,0,1600,-14,0,0 +2013,9,1,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1459,-4,0,1816,-21,0,0 +2013,9,4,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,655,-4,0,745,-13,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,940,15,1,1050,20,1,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1025,-5,0,1153,-19,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1130,5,0,1725,3,0,0 +2013,9,15,7,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1245,40,1,1421,30,1,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2125,-1,0,2315,-8,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2055,140,1,2324,123,1,0 +2013,7,7,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,0,0,1940,-7,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1220,151,1,1240,147,1,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1753,-2,0,1843,-3,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,-4,0,910,-11,0,0 +2013,6,3,1,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-7,0,1634,-20,0,0 +2013,10,14,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,34,1,1400,28,1,0 +2013,6,3,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,625,-6,0,900,-18,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,-2,0,1135,10,0,0 +2013,6,29,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1600,-4,0,1700,-5,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1035,46,1,1633,36,1,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,725,3,0,1050,0,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-6,0,1210,-18,0,0 +2013,9,4,3,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,615,-7,0,725,-20,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,-3,0,2138,-9,0,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,925,-4,0,1035,-12,0,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,-4,0,1730,-10,0,0 +2013,9,20,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,815,-9,0,1115,-17,0,0 +2013,9,10,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-6,0,1530,-15,0,0 +2013,9,22,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1703,-7,0,2130,-19,0,0 +2013,10,31,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,545,-6,0,723,-1,0,0 +2013,10,14,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,600,-1,0,715,-11,0,0 +2013,8,9,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1145,1,0,1300,6,0,0 +2013,10,25,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-8,0,1730,-10,0,0 +2013,10,12,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1800,5,0,1845,6,0,0 +2013,9,7,6,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-1,0,1200,-21,0,0 +2013,9,21,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,943,-9,0,0 +2013,7,2,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,928,-3,0,1220,-19,0,0 +2013,8,31,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1425,41,1,1805,39,1,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,630,-1,0,810,4,0,0 +2013,10,7,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1820,62,1,2005,52,1,0 +2013,9,3,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,800,-4,0,920,-9,0,0 +2013,6,1,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,14,0,1320,16,1,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2015,21,1,2105,4,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,24,1,1515,12,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1125,18,1,1230,11,0,0 +2013,4,25,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1115,7,0,1230,-2,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1759,-9,0,2044,1,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1301,11,0,1419,9,0,0 +2013,8,21,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,-2,0,2130,-4,0,0 +2013,7,26,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1515,-2,0,1853,-13,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1910,1,0,2125,-1,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,1,0,1522,9,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1715,33,1,1825,57,1,0 +2013,8,3,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2042,51,1,2319,47,1,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,10,0,2327,6,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1443,-12,0,0 +2013,4,28,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-9,0,1117,16,1,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1158,-2,0,1421,-1,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,1,0,2300,0,0,0 +2013,4,14,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,36,1,1838,31,1,0 +2013,8,14,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2146,79,1,2205,64,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2111,-3,0,2246,-7,0,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2211,-3,0,2318,-15,0,0 +2013,7,16,2,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1928,3,0,2103,-2,0,0 +2013,6,28,5,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1130,-2,0,1400,10,0,0 +2013,9,9,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1630,-6,0,1835,-16,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,756,-5,0,1037,18,1,0 +2013,5,14,2,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,0,0,1723,-5,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1640,11,0,1800,10,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-6,0,1115,-14,0,0 +2013,8,25,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1241,-2,0,0 +2013,8,18,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-4,0,1335,-10,0,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1715,-6,0,2136,-11,0,0 +2013,10,12,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1835,29,1,2130,8,0,0 +2013,7,16,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-1,0,1800,11,0,0 +2013,5,21,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,10,0,1830,7,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,0,0,2215,15,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1346,-3,0,1540,-5,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1350,113,1,1705,113,1,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,925,19,1,1130,14,0,0 +2013,4,14,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1600,-3,0,2000,-14,0,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1910,0,0,2105,-6,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-2,0,2202,-6,0,0 +2013,7,12,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2115,-5,0,20,-3,0,0 +2013,6,26,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,-2,0,1309,-5,0,0 +2013,10,25,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,710,-9,0,910,-10,0,0 +2013,5,21,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,556,-7,0,1151,-20,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,-6,0,1950,-17,0,0 +2013,4,29,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,-5,0,2025,0,0,0 +2013,8,27,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,1,0,2050,-13,0,0 +2013,8,10,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,1,0,747,-20,0,0 +2013,10,14,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1524,6,0,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1720,-4,0,2230,-5,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1340,5,0,1920,-4,0,0 +2013,5,30,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,945,-9,0,1120,-31,0,0 +2013,8,19,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,-12,0,2118,-22,0,0 +2013,10,8,2,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,847,-7,0,1155,-17,0,0 +2013,6,20,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,-1,0,903,14,0,0 +2013,7,1,1,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,1,0,1601,-1,0,0 +2013,7,9,2,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,745,3,0,950,-14,0,0 +2013,4,3,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1228,0,0,1432,-13,0,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1440,48,1,1605,44,1,0 +2013,8,9,5,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1730,-1,0,1825,2,0,0 +2013,5,16,4,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,-4,0,1720,-4,0,0 +2013,8,30,5,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-7,0,1225,5,0,0 +2013,5,19,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,750,-3,0,1020,-14,0,0 +2013,8,1,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,12,0,1415,-2,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1330,-4,0,1600,1,0,0 +2013,6,23,7,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,915,104,1,1710,98,1,0 +2013,6,6,4,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1728,37,1,1900,16,1,0 +2013,6,28,5,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,7,0,1846,6,0,0 +2013,10,29,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,715,-1,0,800,20,1,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1235,0,0,1340,-6,0,0 +2013,9,16,1,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-12,0,2010,-29,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,19,1,1935,13,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1910,2,0,2233,-13,0,0 +2013,7,27,6,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,1325,9,0,1548,5,0,0 +2013,7,2,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,-4,0,2300,27,1,0 +2013,5,22,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,59,1,2146,71,1,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,17,1,2226,7,0,0 +2013,9,26,4,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,9,0,500,-4,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,825,0,0,1041,0,0,0 +2013,9,4,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,-2,0,1605,-13,0,0 +2013,8,2,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1515,-4,0,1759,5,0,0 +2013,8,20,2,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1910,-11,0,1955,-10,0,0 +2013,10,23,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1252,-6,0,1550,-17,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,3,0,1029,-1,0,0 +2013,7,3,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1636,90,1,2027,84,1,0 +2013,6,6,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,126,1,1007,161,1,0 +2013,7,19,5,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,-10,0,950,6,0,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,700,-1,0,1255,-9,0,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2055,-1,0,2340,-10,0,0 +2013,9,2,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1051,-6,0,1333,-9,0,0 +2013,7,15,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1625,27,1,1825,46,1,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-3,0,1936,-8,0,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-7,0,2150,-15,0,0 +2013,6,8,6,EV,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,-6,0,1645,-21,0,0 +2013,5,24,5,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,0,0,925,-15,0,0 +2013,6,24,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1420,-1,0,1605,-10,0,0 +2013,4,4,4,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2100,2,0,2345,-9,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1944,-4,0,2039,2,0,0 +2013,10,27,7,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,6,0,1921,-18,0,0 +2013,9,14,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,1,0,2300,0,0,0 +2013,5,15,3,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,821,-4,0,933,-12,0,0 +2013,7,20,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2020,0,0,459,-16,0,0 +2013,7,19,5,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,13,0,1805,6,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,2,0,2032,-1,0,0 +2013,6,9,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2020,0,0,2112,5,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1540,0,0,1630,-3,0,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2157,0,0,2259,-13,0,0 +2013,6,6,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,6,0,1410,4,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2024,27,1,2330,44,1,0 +2013,4,8,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1935,0,,2045,0,1,1 +2013,8,8,4,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,181,1,2308,172,1,0 +2013,10,13,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-9,0,1632,-25,0,0 +2013,4,28,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,17,1,1542,1,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1255,0,0,1415,17,1,0 +2013,7,5,5,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1655,355,1,1950,369,1,0 +2013,10,5,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1005,95,1,1830,85,1,0 +2013,4,25,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,530,-7,0,800,-6,0,0 +2013,10,12,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,705,-4,0,938,-2,0,0 +2013,8,12,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1156,200,1,1309,241,1,0 +2013,6,11,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1210,-4,0,1451,-5,0,0 +2013,8,1,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-1,0,840,-14,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,4,0,2332,2,0,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,953,-5,0,1316,-3,0,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1711,8,0,1844,11,0,0 +2013,9,30,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,653,-6,0,820,-9,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1450,-7,0,1717,-14,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-3,0,725,-6,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1726,18,1,1850,19,1,0 +2013,9,28,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,16,1,1332,12,0,0 +2013,9,14,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-4,0,1229,-2,0,0 +2013,7,31,3,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1755,28,1,2255,26,1,0 +2013,10,17,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2143,-3,0,2236,-16,0,0 +2013,7,6,6,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1410,12,0,2235,8,0,0 +2013,5,22,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1450,24,1,1613,30,1,0 +2013,5,9,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2102,-19,0,0 +2013,4,25,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,21,1,1610,15,1,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,37,1,2335,29,1,0 +2013,5,6,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2003,-3,0,2333,-7,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1450,47,1,1745,23,1,0 +2013,5,24,5,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,11,0,1950,10,0,0 +2013,8,19,1,9E,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1116,-6,0,1305,-15,0,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1549,-9,0,1825,-40,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1320,-1,0,1625,-8,0,0 +2013,8,28,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1330,54,1,1458,49,1,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1337,81,1,1824,62,1,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1230,-4,0,1352,-9,0,0 +2013,10,15,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1300,-8,0,1622,-25,0,0 +2013,9,17,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-3,0,1650,1,0,0 +2013,10,8,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1604,8,0,1730,-25,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1100,45,1,1239,50,1,0 +2013,4,25,4,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,2,0,1453,-5,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,0,0,1235,-12,0,0 +2013,8,26,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-3,0,910,-7,0,0 +2013,6,2,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1251,1,0,2130,31,1,0 +2013,7,25,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,-4,0,905,0,0,0 +2013,9,7,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1000,1,0,1146,-6,0,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1944,4,0,2336,0,0,0 +2013,5,8,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,600,0,,729,0,1,1 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1212,-5,0,1716,7,0,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,7,0,1435,-3,0,0 +2013,10,1,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,710,-4,0,914,-4,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,900,42,1,1043,34,1,0 +2013,5,12,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1012,59,1,1315,42,1,0 +2013,6,18,2,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,-3,0,1546,-11,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2004,9,0,2126,5,0,0 +2013,4,20,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1740,-8,0,1909,-17,0,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,821,3,0,1030,-1,0,0 +2013,7,29,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,530,-4,0,633,-16,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1142,23,1,1736,13,0,0 +2013,7,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,-4,0,1003,-22,0,0 +2013,10,31,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1318,19,1,1624,19,1,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1325,24,1,1720,3,0,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,3,0,902,-5,0,0 +2013,10,6,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,828,-4,0,0 +2013,9,3,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,7,0,2031,12,0,0 +2013,4,4,4,9E,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-6,0,2105,6,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-5,0,1133,-6,0,0 +2013,10,14,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,0,0,730,3,0,0 +2013,10,13,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1136,22,1,1335,24,1,0 +2013,8,30,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,15,1,900,2,0,0 +2013,4,17,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1035,32,1,1145,25,1,0 +2013,5,6,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1959,-10,0,2328,-10,0,0 +2013,7,22,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1010,37,1,1320,80,1,0 +2013,9,19,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-5,0,1535,-6,0,0 +2013,10,8,2,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-1,0,1249,-23,0,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,-10,0,1904,-5,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1505,33,1,1835,20,1,0 +2013,7,23,2,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1000,0,0,1250,-10,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,810,0,0,1045,-12,0,0 +2013,8,18,7,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,830,10,0,1026,5,0,0 +2013,7,8,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2058,-10,0,2316,-6,0,0 +2013,6,21,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1414,-5,0,1543,1,0,0 +2013,10,31,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1745,1,0,2002,11,0,0 +2013,7,9,2,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1436,0,0,1808,-1,0,0 +2013,5,9,4,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1736,50,1,1900,40,1,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,715,0,0,953,-8,0,0 +2013,9,5,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-4,0,1915,-7,0,0 +2013,6,28,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,625,0,0,1230,4,0,0 +2013,8,12,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1006,-4,0,1314,-9,0,0 +2013,8,12,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-1,0,1405,-20,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2231,-4,0,705,-3,0,0 +2013,4,27,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1845,-9,0,2029,-33,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1705,5,0,1825,10,0,0 +2013,10,1,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1718,-2,0,1906,-5,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,735,-3,0,940,1,0,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1115,-6,0,1250,-6,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,1,0,2152,2,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1240,0,0,1640,-5,0,0 +2013,7,4,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,0,0,1024,3,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,-2,0,1733,-19,0,0 +2013,5,4,6,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,1859,8,0,2128,3,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1635,30,1,1915,20,1,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,14,0,1134,7,0,0 +2013,8,30,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1745,2,0,2030,9,0,0 +2013,9,6,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1309,11,0,1615,10,0,0 +2013,7,3,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1725,54,1,1746,53,1,0 +2013,6,21,5,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1043,22,1,1840,30,1,0 +2013,5,21,2,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,-3,0,1500,-6,0,0 +2013,9,14,6,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1749,-5,0,1924,-9,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,844,-4,0,1321,18,1,0 +2013,4,30,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,12,0,735,18,1,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1540,-1,0,1820,-3,0,0 +2013,6,21,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1657,117,1,1928,109,1,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,600,4,0,1400,4,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2101,3,0,2227,-12,0,0 +2013,8,18,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1026,30,1,1051,9,0,0 +2013,7,28,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,835,-8,0,0 +2013,9,7,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1232,-6,0,1424,-7,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,8,0,2210,13,0,0 +2013,9,8,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1342,-9,0,1429,-9,0,0 +2013,8,12,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,12,0,2030,25,1,0 +2013,9,21,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1245,-5,0,1409,-32,0,0 +2013,7,14,7,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1911,12,0,2004,15,1,0 +2013,9,18,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1822,-5,0,1924,12,0,0 +2013,7,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,22,1,1825,16,1,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1352,2,0,1549,-1,0,0 +2013,4,4,4,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,736,-3,0,835,-4,0,0 +2013,6,11,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,20,1,1813,3,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,-5,0,1447,-25,0,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1120,10,0,1210,-1,0,0 +2013,5,6,1,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,-4,0,2235,-12,0,0 +2013,8,23,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,837,72,1,950,66,1,0 +2013,5,26,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1205,-5,0,2029,-19,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,9,0,1105,19,1,0 +2013,9,15,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,105,1,1550,121,1,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,5,0,1022,-1,0,0 +2013,6,22,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,-3,0,1810,-10,0,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1107,23,1,1448,16,1,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,900,-7,0,1321,-2,0,0 +2013,5,2,4,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1515,0,0,1605,-22,0,0 +2013,10,24,4,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,750,-3,0,840,1,0,0 +2013,9,29,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1359,-3,0,1535,-8,0,0 +2013,8,22,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-3,0,1519,3,0,0 +2013,9,14,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1415,-2,0,1530,-6,0,0 +2013,10,7,1,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,-2,0,1605,31,1,0 +2013,4,27,6,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1859,-10,0,2230,-47,0,0 +2013,6,8,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,1145,-11,0,0 +2013,10,24,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,72,1,1240,75,1,0 +2013,8,1,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-2,0,1850,-10,0,0 +2013,8,22,4,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-10,0,1439,-26,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1246,-5,0,1408,-18,0,0 +2013,5,25,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,930,5,0,1031,-1,0,0 +2013,6,25,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-2,0,1429,-8,0,0 +2013,5,19,7,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,36,1,754,17,1,0 +2013,4,4,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,13,0,1247,6,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1643,18,1,1826,-8,0,0 +2013,8,17,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1310,40,1,1430,43,1,0 +2013,9,18,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1915,32,1,2025,31,1,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,601,0,0,1201,-15,0,0 +2013,8,26,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1136,13,0,1949,-14,0,0 +2013,4,9,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2049,2,0,510,13,0,0 +2013,5,5,7,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,10,0,1127,10,0,0 +2013,8,16,5,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1338,-3,0,1634,-30,0,0 +2013,6,19,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1221,6,0,1425,-4,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1736,-2,0,2015,6,0,0 +2013,9,20,5,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1646,-8,0,2047,-35,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,28,1,904,58,1,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2005,-3,0,2329,-20,0,0 +2013,10,31,4,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,635,-4,0,1005,0,0,0 +2013,7,7,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-7,0,1155,3,0,0 +2013,7,4,4,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,925,-6,0,1750,-2,0,0 +2013,9,18,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,610,8,0,750,14,0,0 +2013,5,3,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,610,-3,0,720,-9,0,0 +2013,7,22,1,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1633,0,0,1805,-9,0,0 +2013,10,31,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,720,-2,0,1330,21,1,0 +2013,5,13,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,935,-6,0,1020,-17,0,0 +2013,8,1,4,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-3,0,1004,-7,0,0 +2013,4,9,2,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1040,18,1,1501,58,1,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1220,5,0,1741,-2,0,0 +2013,8,11,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-8,0,1500,-13,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,601,11,0,721,5,0,0 +2013,8,6,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1347,-5,0,1644,-21,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,830,115,1,1310,104,1,0 +2013,10,20,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,730,-9,0,910,-27,0,0 +2013,6,3,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,-1,0,2025,-12,0,0 +2013,5,17,5,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2334,-1,0,704,-7,0,0 +2013,5,28,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1808,-13,0,2015,-25,0,0 +2013,10,12,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1355,-7,0,1519,-2,0,0 +2013,8,26,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,700,1,0,1312,-12,0,0 +2013,5,27,1,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-1,0,2139,17,1,0 +2013,4,13,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1642,-7,0,1940,-24,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,178,1,1647,152,1,0 +2013,9,9,1,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-12,0,1409,12,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,944,-2,0,1020,-11,0,0 +2013,8,24,6,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1910,-12,0,2133,-12,0,0 +2013,7,3,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1534,51,1,1830,54,1,0 +2013,8,6,2,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1020,-5,0,1125,11,0,0 +2013,9,4,3,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1425,-7,0,1615,-1,0,0 +2013,5,30,4,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,55,1,735,52,1,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1859,22,1,2146,-12,0,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1549,29,1,1951,9,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,8,0,1216,11,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2009,21,1,2206,4,0,0 +2013,4,1,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,940,-7,0,1050,-17,0,0 +2013,8,9,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,720,-3,0,850,-6,0,0 +2013,8,28,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-7,0,2135,-12,0,0 +2013,4,14,7,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,1,0,1400,-23,0,0 +2013,5,21,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-5,0,1115,17,1,0 +2013,10,4,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,749,-2,0,946,-15,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1830,21,1,2010,27,1,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1129,-1,0,1352,-10,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,0,0,2124,3,0,0 +2013,9,7,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,935,-4,0,1210,-12,0,0 +2013,7,17,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1758,77,1,1927,77,1,0 +2013,4,1,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-1,0,1410,-2,0,0 +2013,7,18,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1644,-5,0,2014,0,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1918,7,0,2033,-2,0,0 +2013,8,27,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-6,0,1615,-14,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,3,0,1822,-21,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1704,3,0,1844,-2,0,0 +2013,4,2,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1450,-10,0,1810,13,0,0 +2013,9,15,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,-5,0,1511,-19,0,0 +2013,4,17,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,700,2,0,755,0,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-5,0,2132,-7,0,0 +2013,8,22,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,857,111,1,1025,138,1,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1056,-2,0,1412,-25,0,0 +2013,9,4,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-6,0,1105,-7,0,0 +2013,9,26,4,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2055,-3,0,2325,2,0,0 +2013,7,28,7,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,-1,0,1515,-1,0,0 +2013,5,27,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-8,0,920,-5,0,0 +2013,6,6,4,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,2,0,705,-9,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1825,-1,0,2043,-19,0,0 +2013,8,20,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-11,0,755,-25,0,0 +2013,7,21,7,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1635,-4,0,1938,27,1,0 +2013,9,21,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1848,-1,0,2100,-13,0,0 +2013,5,9,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-9,0,1230,-31,0,0 +2013,5,17,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,48,1,1900,41,1,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1915,5,0,2340,19,1,0 +2013,8,18,7,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,955,-1,0,1204,-12,0,0 +2013,5,22,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,29,1,1005,32,1,0 +2013,9,12,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-4,0,2103,-6,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1440,2,0,1850,-11,0,0 +2013,8,11,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,749,-6,0,1041,-10,0,0 +2013,8,7,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,0,0,1625,1,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,5,0,2303,12,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,530,-4,0,810,-36,0,0 +2013,5,3,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,833,6,0,0 +2013,4,8,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1517,32,1,2024,16,1,0 +2013,5,3,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,955,-1,0,1115,-11,0,0 +2013,6,2,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1155,15,1,1325,13,0,0 +2013,10,25,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1110,15,1,1230,15,1,0 +2013,10,26,6,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1656,-11,0,1843,6,0,0 +2013,4,19,5,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-5,0,1538,-19,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,-4,0,2357,-23,0,0 +2013,6,8,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-4,0,1537,10,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,835,-2,0,1310,8,0,0 +2013,10,11,5,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-5,0,815,-12,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,733,4,0,847,-14,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,955,-7,0,1405,6,0,0 +2013,8,9,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,-3,0,1210,-2,0,0 +2013,9,30,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1220,-8,0,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,4,0,1545,-5,0,0 +2013,5,22,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,9,0,1545,-7,0,0 +2013,5,8,3,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-5,0,923,-2,0,0 +2013,4,3,3,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,-7,0,2215,-13,0,0 +2013,5,13,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1330,0,0,1535,2,0,0 +2013,5,6,1,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1845,-5,0,2019,-18,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,16,1,1320,4,0,0 +2013,5,27,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1205,19,1,1324,70,1,0 +2013,5,23,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-5,0,1044,-20,0,0 +2013,10,16,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1750,-11,0,2045,-22,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,32,1,2016,46,1,0 +2013,7,17,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1409,92,1,2245,79,1,0 +2013,10,2,3,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1918,-10,0,2159,-25,0,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,555,-7,0,715,-17,0,0 +2013,8,22,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1843,111,1,2135,103,1,0 +2013,8,26,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,4,0,1940,0,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2155,23,1,2325,28,1,0 +2013,6,3,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1825,124,1,2050,132,1,0 +2013,10,22,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1055,-3,0,1210,-16,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,12,0,652,24,1,0 +2013,6,3,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,8,0,1545,3,0,0 +2013,6,27,4,9E,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,74,1,1706,93,1,0 +2013,10,5,6,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,835,-6,0,940,-16,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2230,0,0,2345,-3,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1325,12,0,1605,13,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,800,3,0,855,-4,0,0 +2013,9,6,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1845,11,0,2005,5,0,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-7,0,919,-4,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1359,-7,0,1507,-3,0,0 +2013,5,6,1,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,-6,0,1320,11,0,0 +2013,4,16,2,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1740,-6,0,1849,-17,0,0 +2013,5,4,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,0,0,1409,3,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1350,51,1,1945,40,1,0 +2013,7,18,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1420,-5,0,1600,0,0,0 +2013,8,26,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-8,0,1923,-8,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,10,0,1943,-14,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,655,-3,0,1120,-4,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1600,-2,0,1717,-23,0,0 +2013,6,4,2,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-6,0,1914,-16,0,0 +2013,8,8,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,27,1,1330,17,1,0 +2013,9,25,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1730,-5,0,2017,-20,0,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1220,-3,0,1350,-6,0,0 +2013,7,28,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-5,0,2256,21,1,0 +2013,6,27,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,900,0,0,1213,3,0,0 +2013,4,9,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,3,0,1510,-1,0,0 +2013,10,21,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,51,1,1514,32,1,0 +2013,10,15,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-6,0,1228,-17,0,0 +2013,6,3,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-1,0,1225,-5,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-2,0,1251,1,0,0 +2013,8,7,3,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1452,32,1,1832,39,1,0 +2013,6,1,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,2,0,1544,21,1,0 +2013,9,18,3,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,7,0,835,-4,0,0 +2013,10,5,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1208,-4,0,1427,-19,0,0 +2013,9,18,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-5,0,1417,-6,0,0 +2013,5,16,4,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,0,,2125,0,1,1 +2013,5,9,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,740,-6,0,805,-31,0,0 +2013,10,23,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1630,12,0,2005,16,1,0 +2013,10,22,2,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-12,0,2202,-2,0,0 +2013,9,1,7,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2130,10,0,5,-6,0,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,-5,0,1027,-17,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1325,-7,0,1605,-16,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1030,0,0,1255,5,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1200,68,1,1400,67,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,-1,0,1715,14,0,0 +2013,10,17,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-3,0,1335,2,0,0 +2013,8,19,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-7,0,0 +2013,4,15,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,7,0,1359,19,1,0 +2013,4,5,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1952,-9,0,2131,-18,0,0 +2013,7,27,6,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1400,-6,0,1652,-16,0,0 +2013,9,26,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-1,0,617,-31,0,0 +2013,8,6,2,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-6,0,1815,-11,0,0 +2013,9,9,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,906,-5,0,1034,-4,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1730,-1,0,1842,-3,0,0 +2013,5,24,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1630,13,0,1945,-1,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1700,1,0,1827,-11,0,0 +2013,9,30,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1330,-5,0,1505,-8,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,625,0,0,904,-16,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-2,0,1540,5,0,0 +2013,4,15,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,-2,0,1735,-13,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,-1,0,1515,-7,0,0 +2013,5,24,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-5,0,919,2,0,0 +2013,9,12,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-10,0,654,-18,0,0 +2013,5,16,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1535,71,1,1655,78,1,0 +2013,6,3,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1750,42,1,2105,28,1,0 +2013,7,9,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1010,-7,0,1128,-6,0,0 +2013,6,9,7,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-10,0,1724,-23,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-6,0,1050,-7,0,0 +2013,5,14,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1205,-1,0,1320,-6,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1210,18,1,1316,19,1,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,840,11,0,1110,20,1,0 +2013,7,15,1,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,0,0,735,-29,0,0 +2013,10,21,1,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,800,122,1,1044,114,1,0 +2013,7,28,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1422,-5,0,1635,1,0,0 +2013,6,16,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1113,-1,0,1155,-10,0,0 +2013,9,8,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,13,0,1617,-8,0,0 +2013,6,19,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,0,0,845,-9,0,0 +2013,9,14,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,606,-4,0,730,-18,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,51,1,2025,37,1,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,925,18,1,1105,29,1,0 +2013,10,14,1,FL,13232,Chicago Midway International,Chicago,IL,13244,Memphis International,Memphis,TN,2105,36,1,2238,28,1,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,800,-5,0,925,-18,0,0 +2013,5,8,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2030,90,1,2205,93,1,0 +2013,4,29,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1230,-5,0,1420,-21,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2100,15,1,2220,5,0,0 +2013,4,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1120,11,0,1206,5,0,0 +2013,9,26,4,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-2,0,1753,-5,0,0 +2013,4,20,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1830,-5,0,2046,-18,0,0 +2013,9,30,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,940,3,0,1040,6,0,0 +2013,7,11,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-5,0,815,5,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1345,-1,0,1525,-4,0,0 +2013,8,15,4,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-3,0,1040,-11,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1425,4,0,1820,35,1,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1958,6,0,2221,-20,0,0 +2013,5,19,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1815,-2,0,1945,-4,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1855,17,1,2240,34,1,0 +2013,10,13,7,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1349,-4,0,1622,-1,0,0 +2013,4,20,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-7,0,1700,7,0,0 +2013,8,2,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,-7,0,850,-18,0,0 +2013,8,6,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,850,-8,0,1030,-12,0,0 +2013,5,23,4,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,728,-5,0,1030,-19,0,0 +2013,9,17,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,815,65,1,1100,48,1,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,856,36,1,922,123,1,0 +2013,7,1,1,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1651,0,,1800,0,1,1 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1344,-9,0,1515,-17,0,0 +2013,10,26,6,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1715,-10,0,2005,-44,0,0 +2013,7,27,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-4,0,1949,0,0,0 +2013,6,7,5,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1135,4,0,1420,9,0,0 +2013,10,30,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,1,0,1500,-12,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1425,-4,0,1900,-18,0,0 +2013,9,15,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,-7,0,1545,-26,0,0 +2013,4,1,1,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1430,9,0,1622,-5,0,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,745,-2,0,850,-4,0,0 +2013,8,25,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,0,0,1123,-4,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,951,-5,0,1123,5,0,0 +2013,5,30,4,US,14893,Sacramento International,Sacramento,CA,14100,Philadelphia International,Philadelphia,PA,2159,0,0,602,19,1,0 +2013,6,26,3,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,0,0,1924,-9,0,0 +2013,5,12,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-7,0,1410,-23,0,0 +2013,8,28,3,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1702,245,1,2000,236,1,0 +2013,4,19,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,11,0,1210,5,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2010,55,1,2105,81,1,0 +2013,9,18,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-17,0,2036,-24,0,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1200,0,0,1320,-7,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1305,-5,0,1450,-11,0,0 +2013,8,20,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-5,0,1905,-2,0,0 +2013,9,12,4,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1200,0,,1300,0,1,1 +2013,6,7,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,947,-1,0,1349,-6,0,0 +2013,4,21,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,945,26,1,1245,4,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-3,0,904,-14,0,0 +2013,6,15,6,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,-4,0,1840,-18,0,0 +2013,5,24,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,906,4,0,1253,8,0,0 +2013,4,15,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-7,0,753,-1,0,0 +2013,9,12,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,2,0,1905,0,0,0 +2013,5,29,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1545,64,1,1855,61,1,0 +2013,5,19,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-12,0,909,-21,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1910,41,1,2135,41,1,0 +2013,9,21,6,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,607,-9,0,901,-21,0,0 +2013,8,29,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-1,0,1432,-6,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-1,0,940,4,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,11,0,2342,9,0,0 +2013,5,20,1,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,655,131,1,1215,124,1,0 +2013,10,28,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,750,-4,0,905,-9,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2240,-5,0,124,-12,0,0 +2013,7,25,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,835,-8,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1030,-1,0,1135,0,0,0 +2013,9,14,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1744,-5,0,2010,-12,0,0 +2013,8,11,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2136,53,1,2314,38,1,0 +2013,7,28,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1430,20,1,1605,9,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,13,0,25,-1,0,0 +2013,8,10,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1433,-3,0,1725,14,0,0 +2013,5,8,3,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-9,0,1044,-16,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,3,0,1745,23,1,0 +2013,8,22,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1908,26,1,2129,19,1,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1350,130,1,1830,111,1,0 +2013,5,15,3,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2235,-6,0,623,-9,0,0 +2013,9,10,2,9E,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,655,5,0,824,16,1,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1030,9,0,1645,-7,0,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1345,19,1,1700,10,0,0 +2013,8,19,1,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,10,0,1239,-1,0,0 +2013,10,23,3,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1440,15,1,1738,15,1,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,14,0,1150,-3,0,0 +2013,9,26,4,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1650,-1,0,1902,-1,0,0 +2013,4,26,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-8,0,759,-3,0,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1650,-2,0,1930,1,0,0 +2013,5,15,3,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-2,0,1455,-3,0,0 +2013,10,27,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1215,4,0,1435,-10,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,1,0,1715,2,0,0 +2013,7,13,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1440,11,0,1535,11,0,0 +2013,9,22,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,2,0,1900,-12,0,0 +2013,8,14,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,5,0,1230,11,0,0 +2013,5,7,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,22,1,2205,14,0,0 +2013,9,13,5,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,714,-7,0,1435,14,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1335,-6,0,1655,-3,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2107,0,0,2154,-11,0,0 +2013,6,2,7,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-2,0,1214,-9,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1006,3,0,1154,8,0,0 +2013,9,24,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-15,0,1220,-8,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1010,61,1,1310,79,1,0 +2013,8,17,6,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,600,-4,0,730,-18,0,0 +2013,6,21,5,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1210,14,0,1545,-9,0,0 +2013,10,22,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1800,12,0,1845,24,1,0 +2013,5,22,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,720,27,1,853,30,1,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1920,-4,0,2150,-6,0,0 +2013,7,11,4,OO,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1659,17,1,1827,29,1,0 +2013,4,20,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,745,-1,0,830,4,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1550,5,0,1827,-6,0,0 +2013,10,22,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,659,-10,0,859,-13,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1435,7,0,1651,-4,0,0 +2013,5,19,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,-2,0,1825,10,0,0 +2013,10,7,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1014,-6,0,1451,-16,0,0 +2013,8,14,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-8,0,2010,-30,0,0 +2013,8,21,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1640,23,1,1920,19,1,0 +2013,10,8,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,620,2,0,750,-6,0,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,730,8,0,830,-1,0,0 +2013,9,30,1,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,715,-1,0,905,-11,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1235,12,0,1405,12,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,1450,24,1,2200,-3,0,0 +2013,5,24,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,-1,0,1355,-13,0,0 +2013,9,22,7,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-1,0,1634,-14,0,0 +2013,4,1,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,-1,0,2110,-11,0,0 +2013,10,4,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1800,0,0,2038,0,0,0 +2013,9,22,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,142,1,1825,133,1,0 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,88,1,2259,78,1,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1235,5,0,1640,-24,0,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,-4,0,1037,-18,0,0 +2013,4,5,5,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,5,0,1150,21,1,0 +2013,4,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,950,258,1,1204,298,1,0 +2013,8,21,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-5,0,1750,-3,0,0 +2013,10,9,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,914,-4,0,1150,1,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1829,2,0,2259,-12,0,0 +2013,6,21,5,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1003,10,0,1141,-4,0,0 +2013,7,16,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,600,3,0,640,6,0,0 +2013,9,21,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,6,0,603,-3,0,0 +2013,10,12,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1730,-1,0,1845,-1,0,0 +2013,6,10,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1250,-20,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,930,1,0,1205,-8,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,635,-3,0,1005,-12,0,0 +2013,8,25,7,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-6,0,1757,-12,0,0 +2013,7,27,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1315,7,0,1520,-3,0,0 +2013,9,3,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1034,-7,0,1303,-3,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,0,0,1503,2,0,0 +2013,8,2,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,608,-6,0,719,-11,0,0 +2013,6,16,7,EV,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1314,28,1,1610,38,1,0 +2013,4,5,5,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,9,0,1830,13,0,0 +2013,8,20,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1641,-8,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1815,-6,0,2046,-6,0,0 +2013,6,28,5,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1245,-7,0,1507,-15,0,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,-1,0,1310,-27,0,0 +2013,4,26,5,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,-2,0,2135,-1,0,0 +2013,9,18,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1250,-5,0,1410,-11,0,0 +2013,7,31,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,945,7,0,1130,2,0,0 +2013,6,24,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1350,-3,0,1550,-7,0,0 +2013,6,13,4,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,17,1,1925,18,1,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1008,41,1,1324,23,1,0 +2013,7,23,2,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,2,0,1105,5,0,0 +2013,6,14,5,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2006,-1,0,2202,4,0,0 +2013,9,21,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-7,0,1250,-12,0,0 +2013,8,27,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,725,-6,0,920,-12,0,0 +2013,4,22,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,500,-6,0,642,-5,0,0 +2013,9,27,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1950,-10,0,2103,-16,0,0 +2013,5,12,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,813,8,0,1020,24,1,0 +2013,10,23,3,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-13,0,1039,-28,0,0 +2013,10,5,6,WN,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,5,0,1340,-9,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,52,1,2140,42,1,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,920,20,1,1020,22,1,0 +2013,4,17,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1207,-2,0,1310,13,0,0 +2013,5,31,5,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,19,1,1320,30,1,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1631,-5,0,1921,5,0,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1036,2,0,1335,-5,0,0 +2013,7,14,7,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,8,0,1357,1,0,0 +2013,10,30,3,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1048,31,1,1345,25,1,0 +2013,7,25,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,-5,0,1345,-4,0,0 +2013,5,5,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,1005,-2,0,1530,-6,0,0 +2013,6,26,3,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,710,168,1,914,187,1,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,-2,0,2235,-18,0,0 +2013,4,22,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,6,0,953,-7,0,0 +2013,10,1,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,3,0,1440,2,0,0 +2013,5,10,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2010,14,0,2100,34,1,0 +2013,5,12,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2000,-1,0,2120,-16,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1506,11,0,1608,10,0,0 +2013,8,2,5,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,0,0,2056,-8,0,0 +2013,6,27,4,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1721,116,1,1954,109,1,0 +2013,10,8,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,-7,0,2039,7,0,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1150,-1,0,1250,-2,0,0 +2013,9,10,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-6,0,747,-6,0,0 +2013,4,23,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-1,0,1630,-2,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-2,0,2158,-10,0,0 +2013,9,2,1,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1053,-7,0,1832,-8,0,0 +2013,4,7,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1710,153,1,1836,136,1,0 +2013,6,26,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1003,81,1,1205,67,1,0 +2013,6,2,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,19,1,2125,14,0,0 +2013,8,3,6,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1108,-5,0,1259,-13,0,0 +2013,7,29,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-4,0,745,-13,0,0 +2013,7,26,5,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1700,31,1,1934,15,1,0 +2013,8,14,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,735,1,0,1050,3,0,0 +2013,9,15,7,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,725,-6,0,1116,-5,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,-2,0,901,-13,0,0 +2013,8,24,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,750,5,0,805,3,0,0 +2013,8,11,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,-1,0,1435,-7,0,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1543,0,0,1732,-9,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,37,1,1000,29,1,0 +2013,10,12,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2010,24,1,2225,17,1,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2009,-5,0,2207,-1,0,0 +2013,4,12,5,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1020,-4,0,1249,-13,0,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,2010,51,1,54,48,1,0 +2013,6,24,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1424,53,1,1800,38,1,0 +2013,6,25,2,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,55,-14,0,501,-42,0,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,3,0,2115,-6,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,8,0,2135,19,1,0 +2013,10,25,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-7,0,700,1,0,0 +2013,4,20,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-8,0,915,-5,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1130,12,0,1340,4,0,0 +2013,4,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,806,11,0,1023,6,0,0 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1720,6,0,1900,-9,0,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1705,-4,0,2315,-38,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1930,-2,0,2111,-19,0,0 +2013,9,24,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1730,2,0,2019,-8,0,0 +2013,6,26,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-7,0,1940,-5,0,0 +2013,4,20,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,855,-2,0,1112,-34,0,0 +2013,7,27,6,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-5,0,1216,-12,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2250,-2,0,36,-13,0,0 +2013,8,25,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1530,2,0,1630,2,0,0 +2013,10,28,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1105,-8,0,1357,-22,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1412,0,,1550,0,1,1 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,15,1,1920,24,1,0 +2013,6,30,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,59,1,2135,68,1,0 +2013,4,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2155,24,1,2255,22,1,0 +2013,5,10,5,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,745,-3,0,1015,-16,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,602,-4,0,847,-25,0,0 +2013,7,12,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1531,27,1,1658,27,1,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1247,-1,0,1535,-18,0,0 +2013,8,10,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,40,0,0,853,-11,0,0 +2013,5,30,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1400,0,0,1530,-12,0,0 +2013,8,16,5,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1810,-11,0,2055,-8,0,0 +2013,9,21,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1405,-4,0,1559,-4,0,0 +2013,10,5,6,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1145,111,1,1235,99,1,0 +2013,5,8,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,600,6,0,725,4,0,0 +2013,8,3,6,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-7,0,1225,-24,0,0 +2013,4,3,3,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,835,15,1,1024,11,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2135,-7,0,516,-1,0,0 +2013,9,27,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-7,0,1215,-10,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2047,17,1,2317,4,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1350,57,1,1715,54,1,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,13,0,2310,11,0,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1521,150,1,1645,149,1,0 +2013,10,24,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2035,2,0,2257,-4,0,0 +2013,4,21,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1557,0,0,1910,-7,0,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1700,30,1,1915,35,1,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1930,7,0,2108,-9,0,0 +2013,5,17,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,710,0,0,0 +2013,7,3,3,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,705,-1,0,1433,17,1,0 +2013,5,11,6,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-8,0,1400,-23,0,0 +2013,4,4,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1525,-3,0,1930,-15,0,0 +2013,8,1,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,711,-4,0,1155,-18,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,8,0,2110,-31,0,0 +2013,4,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1205,-1,0,1335,-4,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1945,-8,0,2155,-15,0,0 +2013,6,10,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,27,1,1200,22,1,0 +2013,10,8,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,935,-11,0,1226,-9,0,0 +2013,6,17,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,815,-6,0,935,-1,0,0 +2013,4,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1400,-3,0,1714,-7,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-6,0,1328,-12,0,0 +2013,9,13,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1325,21,1,1440,75,1,0 +2013,8,7,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,902,52,1,948,60,1,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1820,30,1,1935,13,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1735,65,1,2125,49,1,0 +2013,7,19,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-3,0,1725,-11,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,-2,0,1507,-9,0,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1310,4,0,1415,13,0,0 +2013,9,13,5,OO,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1058,39,1,1527,34,1,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1300,-4,0,1600,-12,0,0 +2013,9,17,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1040,7,0,1635,-12,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1710,-5,0,1830,-1,0,0 +2013,5,10,5,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1610,-3,0,1911,-30,0,0 +2013,8,22,4,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,17,1,1630,-17,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1255,1,0,1420,37,1,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1905,64,1,2120,55,1,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1725,29,1,1945,24,1,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2055,35,1,2320,30,1,0 +2013,5,10,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,910,-12,0,1110,-19,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1055,-2,0,1200,-3,0,0 +2013,7,9,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-13,0,29,-10,0,0 +2013,9,25,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1550,-4,0,1703,-3,0,0 +2013,7,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,2005,13,0,2135,16,1,0 +2013,8,8,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,600,0,,711,0,1,1 +2013,5,15,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,4,0,1740,1,0,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1610,-7,0,1740,-17,0,0 +2013,4,13,6,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1511,27,1,1804,30,1,0 +2013,6,11,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2000,85,1,2059,82,1,0 +2013,6,21,5,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,9,0,1635,-18,0,0 +2013,10,17,4,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,811,-7,0,929,3,0,0 +2013,7,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1749,-6,0,1905,-21,0,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1758,-1,0,2018,13,0,0 +2013,7,8,1,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1100,0,,1415,0,1,1 +2013,8,25,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,6,0,2025,-3,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,725,0,0,835,-10,0,0 +2013,10,11,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,-5,0,1513,8,0,0 +2013,6,22,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1455,-2,0,1615,-16,0,0 +2013,8,17,6,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,710,-1,0,915,-14,0,0 +2013,7,28,7,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,218,1,2055,239,1,0 +2013,4,24,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-4,0,700,0,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,832,0,0,909,-7,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,-6,0,2047,-13,0,0 +2013,9,20,5,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1538,15,1,1855,16,1,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2108,3,0,2359,-10,0,0 +2013,9,11,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1023,7,0,1257,-7,0,0 +2013,5,26,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1005,-2,0,1040,-18,0,0 +2013,6,7,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1618,85,1,1748,116,1,0 +2013,5,29,3,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,630,5,0,1230,11,0,0 +2013,4,1,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-4,0,1215,-15,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1420,0,0,1619,8,0,0 +2013,4,25,4,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1515,-5,0,1756,0,0,0 +2013,5,16,4,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2040,-4,0,500,0,0,0 +2013,6,26,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,825,9,0,945,3,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,641,-9,0,810,-33,0,0 +2013,7,30,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,-7,0,923,-21,0,0 +2013,5,21,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,902,-8,0,957,2,0,0 +2013,4,13,6,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-14,0,1130,-18,0,0 +2013,7,27,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1150,8,0,1315,-2,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1555,-1,0,1723,-23,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1550,-3,0,1810,-5,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1830,-4,0,2145,6,0,0 +2013,6,19,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,648,-4,0,0 +2013,8,8,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,39,1,2205,37,1,0 +2013,10,17,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1729,-2,0,1859,16,1,0 +2013,7,20,6,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1455,51,1,1810,52,1,0 +2013,5,9,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-2,0,1206,1,0,0 +2013,10,26,6,EV,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,550,-2,0,838,-11,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1615,-3,0,1705,-9,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-4,0,1033,-18,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,929,-12,0,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,-3,0,1000,-21,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1700,75,1,1805,75,1,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1253,7,0,1414,-6,0,0 +2013,6,4,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,0,0,1330,12,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2100,13,0,10,7,0,0 +2013,4,11,4,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1952,28,1,2131,74,1,0 +2013,5,9,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-1,0,1500,-7,0,0 +2013,4,7,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1556,-12,0,1710,-21,0,0 +2013,4,3,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1042,-3,0,0 +2013,8,21,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1910,3,0,2255,-6,0,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1940,-4,0,2118,3,0,0 +2013,9,6,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1622,-6,0,1900,-5,0,0 +2013,10,20,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,855,-2,0,958,-15,0,0 +2013,8,8,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,7,0,1115,4,0,0 +2013,6,18,2,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1307,-1,0,1459,14,0,0 +2013,7,14,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,957,0,0,1255,-6,0,0 +2013,5,11,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-3,0,1619,-15,0,0 +2013,9,4,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,-8,0,2052,-13,0,0 +2013,6,10,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,-5,0,2135,-22,0,0 +2013,7,20,6,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1450,1,0,1633,-2,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1038,-3,0,1917,-8,0,0 +2013,4,26,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,600,-1,0,822,4,0,0 +2013,7,5,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,848,3,0,0 +2013,4,25,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,-3,0,1710,-12,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,10,0,1810,3,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1729,-3,0,1932,-7,0,0 +2013,7,3,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,54,1,1122,59,1,0 +2013,6,5,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1555,-1,0,1747,-4,0,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,0,,1345,0,1,1 +2013,4,3,3,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,840,-7,0,1219,-27,0,0 +2013,6,4,2,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,-4,0,1645,-2,0,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-4,0,1251,-19,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,850,-9,0,1313,-8,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,-3,0,2112,-10,0,0 +2013,7,22,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,8,0,1255,14,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1049,-3,0,1443,-24,0,0 +2013,9,30,1,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1409,-11,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,287,1,45,279,1,0 +2013,9,22,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,-4,0,1430,-25,0,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-10,0,1634,-32,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1215,-1,0,1350,-5,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,940,-5,0,1132,-10,0,0 +2013,8,5,1,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,-3,0,1750,-22,0,0 +2013,9,2,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1723,74,1,1956,84,1,0 +2013,5,18,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,808,-2,0,1410,-6,0,0 +2013,8,28,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1040,-3,0,1131,2,0,0 +2013,8,18,7,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,625,0,,720,0,1,1 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2130,-1,0,2240,-5,0,0 +2013,6,3,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-7,0,736,-21,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,18,1,915,16,1,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1830,-2,0,2105,1,0,0 +2013,7,22,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,605,-5,0,635,2,0,0 +2013,8,20,2,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,219,1,922,215,1,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,10,0,2347,27,1,0 +2013,9,28,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,951,-4,0,1333,-10,0,0 +2013,6,27,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-5,0,930,-12,0,0 +2013,7,22,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1845,18,1,1945,12,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1257,-6,0,1412,-17,0,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,920,-5,0,1235,-1,0,0 +2013,8,19,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1055,26,1,1205,26,1,0 +2013,8,1,4,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,3,0,1340,-12,0,0 +2013,4,29,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,24,1,2145,13,0,0 +2013,10,16,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-3,0,725,-17,0,0 +2013,6,2,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1459,7,0,1635,-15,0,0 +2013,6,13,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,750,-1,0,855,5,0,0 +2013,7,23,2,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-3,0,813,-7,0,0 +2013,10,2,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-8,0,2054,-22,0,0 +2013,9,25,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1009,161,1,1650,155,1,0 +2013,4,30,2,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,929,24,1,1026,15,1,0 +2013,8,12,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1148,-1,0,1444,-14,0,0 +2013,6,3,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,730,-12,0,0 +2013,5,17,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,922,-20,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,146,1,2245,141,1,0 +2013,9,1,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-3,0,1110,-12,0,0 +2013,10,4,5,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1155,4,0,1405,2,0,0 +2013,8,1,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-1,0,1154,-5,0,0 +2013,5,10,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,703,-6,0,945,3,0,0 +2013,5,5,7,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1015,0,0,1200,-24,0,0 +2013,6,29,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,2,0,1955,25,1,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1330,105,1,1458,117,1,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1910,77,1,2145,68,1,0 +2013,4,16,2,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,25,1,1135,23,1,0 +2013,7,15,1,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1026,7,0,1200,-15,0,0 +2013,6,30,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1948,0,0,2058,-16,0,0 +2013,9,14,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,-1,0,1300,-4,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1758,98,1,2020,103,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1755,35,1,2335,43,1,0 +2013,8,22,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2150,1,0,2257,-18,0,0 +2013,6,15,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1953,-5,0,2335,-23,0,0 +2013,8,3,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1251,-5,0,1552,-15,0,0 +2013,10,23,3,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2315,-5,0,750,-13,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1922,19,1,2130,-8,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1917,7,0,2033,-7,0,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,30,1,40,25,1,0 +2013,6,4,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,-4,0,1600,-23,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,810,-3,0,914,-14,0,0 +2013,7,6,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1220,-13,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2155,57,1,2259,47,1,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-2,0,1210,-14,0,0 +2013,9,23,1,9E,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,829,-8,0,1001,-3,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1510,-1,0,1640,-12,0,0 +2013,5,8,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1707,43,1,1842,41,1,0 +2013,9,4,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1740,18,1,2010,20,1,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1755,18,1,1900,20,1,0 +2013,6,17,1,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,2,0,1740,-6,0,0 +2013,6,15,6,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1146,-7,0,1447,-2,0,0 +2013,10,18,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,550,-12,0,602,-18,0,0 +2013,8,21,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,-3,0,842,-8,0,0 +2013,6,25,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1950,20,1,2101,17,1,0 +2013,8,16,5,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,805,-9,0,925,-10,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-2,0,1323,-17,0,0 +2013,4,27,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1427,-6,0,1639,-31,0,0 +2013,4,3,3,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1215,14,0,1507,33,1,0 +2013,7,22,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,25,1,1215,14,0,0 +2013,4,11,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1520,112,1,1624,98,1,0 +2013,7,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,78,1,2033,68,1,0 +2013,4,9,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1850,-4,0,2045,-15,0,0 +2013,5,25,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,0,0,1325,-14,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,826,-2,0,1003,-9,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,800,7,0,926,24,1,0 +2013,6,17,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1420,7,0,1545,-3,0,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1125,0,0,1420,0,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1959,-3,0,2159,-6,0,0 +2013,10,17,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1450,5,0,1835,59,1,0 +2013,9,1,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-5,0,1705,-9,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1555,2,0,1830,2,0,0 +2013,5,18,6,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1755,-1,0,1920,-10,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1917,4,0,2158,3,0,0 +2013,5,6,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-7,0,908,-13,0,0 +2013,8,19,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-7,0,912,-4,0,0 +2013,9,28,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,9,0,1858,-5,0,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,0,0,1450,-4,0,0 +2013,9,2,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1735,-10,0,2305,-16,0,0 +2013,8,14,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1240,20,1,1420,14,0,0 +2013,7,14,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,2,0,850,-14,0,0 +2013,10,29,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1938,30,1,2313,33,1,0 +2013,9,7,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2020,33,1,2310,24,1,0 +2013,9,14,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1830,-4,0,2100,-7,0,0 +2013,9,12,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1845,85,1,2010,85,1,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1155,16,1,1700,6,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,18,1,835,0,0,0 +2013,9,22,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2020,35,1,2140,33,1,0 +2013,6,17,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,10,0,1809,20,1,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,841,21,1,1004,20,1,0 +2013,6,1,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2144,-6,0,2237,-15,0,0 +2013,5,1,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1450,-5,0,1613,-4,0,0 +2013,6,11,2,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,41,1,739,24,1,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2150,0,0,2337,-9,0,0 +2013,8,27,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,941,-2,0,1225,-2,0,0 +2013,10,17,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,-3,0,1030,-18,0,0 +2013,7,26,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-7,0,1612,1,0,0 +2013,10,22,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1335,-9,0,1435,-10,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1210,34,1,1259,38,1,0 +2013,4,19,5,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1345,-6,0,2204,-11,0,0 +2013,7,25,4,US,10529,Bradley International,Hartford,CT,11278,Ronald Reagan Washington National,Washington,DC,620,-10,0,741,-25,0,0 +2013,7,27,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1050,32,1,1655,16,1,0 +2013,7,7,7,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1436,-6,0,1929,9,0,0 +2013,8,6,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2017,3,0,2115,-7,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,650,-2,0,840,-11,0,0 +2013,4,15,1,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1859,11,0,2049,-3,0,0 +2013,4,30,2,EV,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,818,-3,0,1114,-5,0,0 +2013,4,18,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,22,1,2110,8,0,0 +2013,5,27,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,84,1,1341,74,1,0 +2013,8,7,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1435,12,0,1625,4,0,0 +2013,5,15,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-6,0,1028,-24,0,0 +2013,8,9,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,0,0,2145,-6,0,0 +2013,4,30,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2055,-6,0,455,1,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,10,0,1520,3,0,0 +2013,6,15,6,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,950,-1,0,1318,-28,0,0 +2013,10,25,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1957,-1,0,2125,-8,0,0 +2013,10,4,5,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-10,0,2010,-16,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,6,0,1355,-21,0,0 +2013,7,29,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-7,0,2151,-8,0,0 +2013,6,25,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,944,-9,0,0 +2013,4,4,4,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1408,-9,0,1740,-30,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,44,1,2010,42,1,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1650,70,1,40,52,1,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1859,-3,0,2030,-4,0,0 +2013,4,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1859,3,0,2248,-20,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,30,1,2245,26,1,0 +2013,9,25,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1155,-2,0,1330,-13,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1038,0,0,1245,27,1,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,-8,0,1554,-11,0,0 +2013,7,10,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,57,1,1548,53,1,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,800,-5,0,1050,-22,0,0 +2013,10,28,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1300,-3,0,1405,-11,0,0 +2013,7,2,2,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,2,0,1849,-14,0,0 +2013,5,16,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,600,-2,0,715,10,0,0 +2013,4,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,-3,0,1807,-10,0,0 +2013,7,1,1,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-7,0,955,-4,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-4,0,2307,-7,0,0 +2013,5,18,6,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1909,-1,0,2154,14,0,0 +2013,9,17,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1825,-4,0,2005,5,0,0 +2013,5,26,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,-5,0,2049,-14,0,0 +2013,9,17,2,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,7,0,1545,4,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,-3,0,1645,-3,0,0 +2013,6,20,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-7,0,640,-11,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,726,-2,0,859,-15,0,0 +2013,6,20,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,800,0,0,832,8,0,0 +2013,6,12,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,1,0,1816,-14,0,0 +2013,5,15,3,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1631,98,1,1823,83,1,0 +2013,8,3,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1234,-3,0,1436,-6,0,0 +2013,8,25,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1835,0,0,2000,-7,0,0 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1356,11,0,1914,-8,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1040,9,0,1335,-5,0,0 +2013,4,22,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1635,25,1,1850,45,1,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,756,-2,0,1008,-19,0,0 +2013,4,21,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,0,0,1900,-3,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,23,1,1424,24,1,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1937,12,0,2131,-4,0,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,4,0,2056,32,1,0 +2013,5,13,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-8,0,1758,-13,0,0 +2013,4,12,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1035,-8,0,1132,-13,0,0 +2013,6,26,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,745,120,1,905,179,1,0 +2013,9,28,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1450,0,0,2215,-7,0,0 +2013,6,10,1,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1015,1,0,1145,-9,0,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-3,0,1305,-7,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2042,-5,0,2220,-30,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,940,-2,0,1100,-7,0,0 +2013,9,2,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2051,-4,0,2202,-7,0,0 +2013,4,4,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1830,-6,0,1955,-10,0,0 +2013,5,30,4,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1025,-10,0,1125,-24,0,0 +2013,6,19,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,3,0,1045,-4,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1121,-4,0,1251,-15,0,0 +2013,6,9,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-8,0,950,-13,0,0 +2013,6,15,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-2,0,955,-10,0,0 +2013,8,11,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,30,1,2010,14,0,0 +2013,4,3,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,29,1,1900,30,1,0 +2013,8,16,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1744,30,1,2024,-7,0,0 +2013,7,18,4,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,2029,19,1,2115,19,1,0 +2013,8,6,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1035,-3,0,1200,-4,0,0 +2013,8,20,2,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1612,0,0,1708,-3,0,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,4,0,2027,9,0,0 +2013,10,12,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,815,-8,0,1048,15,1,0 +2013,8,20,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1249,0,0,1430,11,0,0 +2013,6,16,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,-5,0,1850,-4,0,0 +2013,10,17,4,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,0,,1230,0,1,1 +2013,6,7,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,1408,-12,0,0 +2013,9,24,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-11,0,1638,-33,0,0 +2013,6,14,5,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1650,1,0,1845,-5,0,0 +2013,10,6,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,-4,0,1845,-2,0,0 +2013,5,15,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,4,0,2135,-8,0,0 +2013,4,18,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,950,11,0,1100,11,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1545,0,0,1730,-5,0,0 +2013,9,18,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1300,-3,0,1416,-9,0,0 +2013,4,10,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,1,0,1805,-8,0,0 +2013,8,30,5,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,710,-6,0,820,-9,0,0 +2013,4,1,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,49,1,2202,49,1,0 +2013,7,21,7,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,725,-8,0,948,-15,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,740,-5,0,941,-18,0,0 +2013,5,29,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,48,1,25,62,1,0 +2013,6,4,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,742,-11,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,9,0,1950,-4,0,0 +2013,5,26,7,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1050,0,0,1110,-5,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1055,44,1,1210,49,1,0 +2013,8,9,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,600,-2,0,920,-10,0,0 +2013,8,10,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,27,1,2020,40,1,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,9,0,1914,14,0,0 +2013,6,29,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,830,1,0,1050,9,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,-4,0,942,18,1,0 +2013,6,20,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2045,-4,0,2150,-9,0,0 +2013,9,27,5,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1825,-1,0,1930,0,0,0 +2013,7,23,2,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1010,59,1,1325,53,1,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1222,-3,0,1502,-6,0,0 +2013,8,10,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,908,0,0,1200,-5,0,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,900,4,0,1015,3,0,0 +2013,8,10,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,910,-4,0,1010,-6,0,0 +2013,10,17,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1610,-3,0,1647,-5,0,0 +2013,4,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1350,-5,0,1709,-28,0,0 +2013,6,24,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1305,4,0,1455,-7,0,0 +2013,6,20,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,3,0,1525,5,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1557,9,0,1747,2,0,0 +2013,7,27,6,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1049,25,1,1531,3,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1220,-2,0,1415,-6,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-10,0,1705,-23,0,0 +2013,8,30,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1359,0,0,1919,-4,0,0 +2013,8,12,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1010,48,1,1301,60,1,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,-2,0,1624,-8,0,0 +2013,7,31,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,-4,0,2018,-19,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1850,-3,0,2015,5,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,115,1,2148,110,1,0 +2013,4,10,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-10,0,1125,-17,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1215,98,1,1420,94,1,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1743,5,0,1933,13,0,0 +2013,10,9,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,715,-8,0,857,5,0,0 +2013,9,26,4,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1257,17,1,1725,25,1,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2142,-5,0,2230,-14,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,9,0,1415,-10,0,0 +2013,9,7,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-8,0,621,-13,0,0 +2013,7,27,6,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,0,0,1348,-3,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,-1,0,1150,-8,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,-4,0,1705,-9,0,0 +2013,7,24,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-3,0,1225,-14,0,0 +2013,8,16,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,650,-3,0,800,-8,0,0 +2013,5,14,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-1,0,1354,-16,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,1215,-25,0,0 +2013,6,19,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-7,0,736,-10,0,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1919,-7,0,2052,-23,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1040,17,1,1230,28,1,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-5,0,950,-20,0,0 +2013,5,26,7,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-7,0,1900,15,1,0 +2013,5,10,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,610,0,0,630,-11,0,0 +2013,9,21,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-8,0,1438,-12,0,0 +2013,7,14,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-3,0,1310,-12,0,0 +2013,9,21,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1620,23,1,1725,18,1,0 +2013,7,10,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,70,1,1652,146,1,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1940,-2,0,2205,-10,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1700,3,0,1805,5,0,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,0,0,1050,12,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1445,82,1,2155,76,1,0 +2013,6,19,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-8,0,1757,5,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,23,-2,0,559,-4,0,0 +2013,8,29,4,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1108,-5,0,1850,3,0,0 +2013,6,29,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,131,1,1442,130,1,0 +2013,9,26,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1359,3,0,1945,-31,0,0 +2013,6,9,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-8,0,1130,1,0,0 +2013,8,11,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,-2,0,2155,2,0,0 +2013,8,18,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1825,23,1,2140,14,0,0 +2013,8,24,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,825,5,0,1420,-3,0,0 +2013,6,12,3,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-3,0,1309,-15,0,0 +2013,7,30,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,830,-3,0,940,-16,0,0 +2013,10,28,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,823,-6,0,1114,-15,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,855,-5,0,1054,-15,0,0 +2013,10,25,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-8,0,2235,-11,0,0 +2013,4,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-4,0,2025,-6,0,0 +2013,6,9,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,750,-5,0,807,-10,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2359,-4,0,655,-13,0,0 +2013,4,27,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1150,-3,0,1515,-14,0,0 +2013,5,9,4,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1620,-6,0,1815,-3,0,0 +2013,5,15,3,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1442,3,0,1809,32,1,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1338,23,1,1642,-4,0,0 +2013,4,5,5,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1155,1,0,1453,-35,0,0 +2013,10,6,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2025,10,0,2045,1,0,0 +2013,9,26,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1350,10,0,1430,24,1,0 +2013,9,5,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-12,0,1829,-24,0,0 +2013,6,23,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,20,1,1545,22,1,0 +2013,5,20,1,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,745,-8,0,1025,-53,0,0 +2013,10,21,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1820,5,0,2230,-5,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-5,0,1055,0,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,0,0,2156,-11,0,0 +2013,6,4,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,2030,-14,0,2105,-11,0,0 +2013,10,1,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,-4,0,1126,1,0,0 +2013,7,28,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,655,-11,0,825,-23,0,0 +2013,4,10,3,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1330,-5,0,1548,-4,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,10,0,1235,16,1,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,-1,0,1035,-6,0,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,845,10,0,1120,-2,0,0 +2013,6,21,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,49,1,2102,27,1,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,1,0,1825,-6,0,0 +2013,9,29,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,730,-6,0,1026,8,0,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1355,0,0,1510,-16,0,0 +2013,6,7,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1002,-10,0,1134,-25,0,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1005,16,1,1145,4,0,0 +2013,10,7,1,F9,11042,Cleveland-Hopkins International,Cleveland,OH,14122,Pittsburgh International,Pittsburgh,PA,800,-14,0,841,-13,0,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,-5,0,1235,-13,0,0 +2013,10,18,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1534,-8,0,1855,-6,0,0 +2013,5,23,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1214,40,1,1345,33,1,0 +2013,7,19,5,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-5,0,2046,15,1,0 +2013,10,16,3,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,745,0,0,941,-5,0,0 +2013,9,8,7,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,9,0,1945,-17,0,0 +2013,9,17,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1730,-7,0,1931,-22,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1025,3,0,1400,-6,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2055,22,1,2210,34,1,0 +2013,8,18,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1532,-3,0,1759,1,0,0 +2013,8,11,7,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,-5,0,1530,-12,0,0 +2013,4,26,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-3,0,1747,-1,0,0 +2013,10,20,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1744,-15,0,0 +2013,7,20,6,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1258,42,1,1316,27,1,0 +2013,8,11,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-4,0,2056,3,0,0 +2013,4,21,7,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-6,0,1122,-11,0,0 +2013,8,6,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,800,-7,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,901,0,0,1143,-17,0,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1840,-3,0,2100,1,0,0 +2013,5,15,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1634,-3,0,1955,-10,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,720,38,1,1100,46,1,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-2,0,1305,-13,0,0 +2013,9,25,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,-6,0,2152,2,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,715,15,1,945,14,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,915,10,0,1655,21,1,0 +2013,7,30,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,735,-10,0,905,-19,0,0 +2013,9,15,7,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1645,-8,0,1820,-25,0,0 +2013,7,3,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-8,0,1220,-2,0,0 +2013,4,2,2,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,1,0,828,-19,0,0 +2013,6,26,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1253,-5,0,1619,96,1,0 +2013,6,10,1,UA,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,55,1,918,33,1,0 +2013,4,7,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1824,-3,0,2115,-14,0,0 +2013,6,28,5,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,196,1,1521,194,1,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1721,36,1,1859,46,1,0 +2013,6,13,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,-2,0,927,10,0,0 +2013,5,6,1,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1930,88,1,2143,55,1,0 +2013,9,15,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1115,1,0,1210,-6,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,10,0,1920,10,0,0 +2013,10,16,3,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-7,0,1904,10,0,0 +2013,4,17,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1325,19,1,1425,22,1,0 +2013,5,28,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1300,-5,0,1350,-15,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1000,17,1,1332,3,0,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,740,-3,0,1010,-2,0,0 +2013,10,7,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1715,-4,0,1925,-4,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1420,30,1,1645,14,0,0 +2013,10,15,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,940,-3,0,1100,9,0,0 +2013,4,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,830,-3,0,950,-20,0,0 +2013,8,4,7,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,-2,0,1630,-7,0,0 +2013,7,28,7,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1435,10,0,1655,0,0,0 +2013,8,4,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-8,0,1013,-1,0,0 +2013,8,24,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,23,1,1800,23,1,0 +2013,10,12,6,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,1830,-14,0,2205,-21,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,44,1,1945,64,1,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1403,-1,0,1541,-13,0,0 +2013,6,9,7,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,920,16,1,1105,11,0,0 +2013,5,22,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1402,16,1,1955,45,1,0 +2013,8,16,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1810,-3,0,2100,1,0,0 +2013,10,31,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1620,-7,0,2155,-13,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1405,8,0,1810,13,0,0 +2013,7,21,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,840,-7,0,1023,-17,0,0 +2013,6,19,3,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-5,0,1055,-13,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,740,17,1,905,22,1,0 +2013,4,12,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-2,0,824,-4,0,0 +2013,9,13,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-3,0,1949,-6,0,0 +2013,7,25,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1750,5,0,1952,-9,0,0 +2013,5,1,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1545,15,1,1700,19,1,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,726,13,0,913,-1,0,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1710,12,0,1915,-3,0,0 +2013,7,31,3,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,810,-6,0,1610,-30,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,941,21,1,1257,-3,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2140,0,,2317,0,1,1 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2055,97,1,2225,93,1,0 +2013,10,11,5,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1640,24,1,1834,9,0,0 +2013,4,5,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1057,-5,0,0 +2013,8,18,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-3,0,1708,-10,0,0 +2013,9,18,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,640,-4,0,1110,-1,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,69,1,1730,58,1,0 +2013,7,2,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-1,0,1327,-18,0,0 +2013,4,4,4,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-7,0,1428,-20,0,0 +2013,5,1,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1420,6,0,1717,2,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,920,-2,0,1800,-12,0,0 +2013,8,3,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1100,2,0,1425,-11,0,0 +2013,6,14,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1240,0,0,1512,1,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,-2,0,2229,6,0,0 +2013,4,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2140,-4,0,2250,-7,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1600,-3,0,1719,-11,0,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1130,35,1,1245,29,1,0 +2013,10,17,4,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,910,-2,0,1140,10,0,0 +2013,10,25,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,0,0,635,23,1,0 +2013,5,22,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2026,-1,0,2147,-5,0,0 +2013,10,20,7,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1136,-3,0,1440,-16,0,0 +2013,9,7,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1355,-5,0,1539,-20,0,0 +2013,5,2,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,3,0,2154,-29,0,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1005,13,0,1249,0,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,0,0,1625,-4,0,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,30,1,2159,30,1,0 +2013,8,22,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,-12,0,739,-15,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1935,73,1,2150,97,1,0 +2013,4,15,1,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,925,-11,0,0 +2013,4,2,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1055,11,0,1255,4,0,0 +2013,6,1,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,955,7,0,1100,3,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,853,-4,0,1212,19,1,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1725,2,0,1830,-7,0,0 +2013,7,14,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1714,11,0,1836,24,1,0 +2013,8,3,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,1110,-23,0,0 +2013,6,29,6,9E,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,21,1,1321,23,1,0 +2013,8,21,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-6,0,2105,7,0,0 +2013,9,28,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1840,-4,0,1900,-22,0,0 +2013,9,27,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-3,0,1636,-10,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,39,1,2110,32,1,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1805,0,0,1905,2,0,0 +2013,7,1,1,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,925,3,0,1105,18,1,0 +2013,4,14,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,930,-2,0,1020,-7,0,0 +2013,7,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1936,-4,0,2120,-23,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,905,23,1,1025,69,1,0 +2013,4,11,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1517,78,1,1620,55,1,0 +2013,8,17,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1505,4,0,1700,4,0,0 +2013,10,19,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1615,5,0,1755,-13,0,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,111,1,1420,131,1,0 +2013,6,26,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,65,1,1915,62,1,0 +2013,5,29,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1810,29,1,2005,22,1,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1335,145,1,1726,125,1,0 +2013,10,26,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,940,-6,0,1100,-19,0,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1055,38,1,1151,39,1,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,603,0,0,922,0,0,0 +2013,10,25,5,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,840,2,0,0 +2013,4,29,1,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1250,-6,0,1405,-24,0,0 +2013,10,29,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1156,106,1,1438,103,1,0 +2013,6,21,5,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,29,1,1949,5,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1935,2,0,2150,-11,0,0 +2013,5,27,1,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1805,23,1,2330,22,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,4,0,1625,6,0,0 +2013,10,27,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1028,-4,0,1610,-11,0,0 +2013,6,25,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1805,45,1,1915,44,1,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,21,1,2004,32,1,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,14,0,1555,11,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1105,-2,0,1218,-3,0,0 +2013,7,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1415,5,0,1534,0,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,14,0,1500,10,0,0 +2013,5,14,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-2,0,909,-13,0,0 +2013,9,26,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,620,-1,0,755,-21,0,0 +2013,9,14,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1955,-6,0,2219,-10,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1115,4,0,1407,-7,0,0 +2013,8,3,6,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-9,0,1638,-24,0,0 +2013,5,25,6,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-1,0,1235,-20,0,0 +2013,7,10,3,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,172,1,735,172,1,0 +2013,7,2,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-7,0,937,1,0,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1255,-1,0,1541,-22,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-3,0,851,6,0,0 +2013,5,6,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1129,12,0,1235,-2,0,0 +2013,10,21,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1715,-8,0,2005,-23,0,0 +2013,10,23,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-4,0,1350,7,0,0 +2013,5,12,7,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1235,-7,0,1620,-21,0,0 +2013,5,27,1,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1729,-2,0,1920,0,0,0 +2013,4,14,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,715,-4,0,1008,-20,0,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,847,-3,0,1150,-28,0,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2145,37,1,2355,39,1,0 +2013,8,1,4,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1530,1,0,1800,-6,0,0 +2013,9,10,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-4,0,1914,-22,0,0 +2013,10,10,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,955,-6,0,1110,-8,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,701,-3,0,945,-22,0,0 +2013,9,18,3,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,759,-6,0,1056,-5,0,0 +2013,5,30,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,41,1,2300,35,1,0 +2013,4,1,1,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1730,13,0,2023,26,1,0 +2013,7,2,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1515,88,1,1815,72,1,0 +2013,5,4,6,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1348,6,0,1619,5,0,0 +2013,9,10,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,935,-4,0,1153,-16,0,0 +2013,5,6,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1602,-8,0,1744,-2,0,0 +2013,10,15,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1320,12,0,1535,15,1,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1815,16,1,1935,22,1,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2145,8,0,512,6,0,0 +2013,4,9,2,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1525,7,0,2326,-5,0,0 +2013,7,6,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,-10,0,1340,1,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1739,65,1,2055,73,1,0 +2013,5,4,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-7,0,702,-11,0,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,900,-14,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,736,2,0,930,2,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,950,30,1,1208,54,1,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,16,1,1145,8,0,0 +2013,9,15,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,705,-4,0,946,-16,0,0 +2013,9,26,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2005,-2,0,2115,-15,0,0 +2013,6,2,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1910,0,,2040,0,1,1 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1105,12,0,1420,3,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,929,-3,0,1053,11,0,0 +2013,10,6,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,725,-3,0,1022,-14,0,0 +2013,6,16,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1554,-2,0,2358,-2,0,0 +2013,4,15,1,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,757,-4,0,945,-25,0,0 +2013,9,26,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,0,0,1700,-17,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,-4,0,1535,2,0,0 +2013,7,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,48,1,2122,37,1,0 +2013,6,9,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,1305,24,1,0 +2013,9,22,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1650,0,0,1937,-10,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1840,2,0,2020,-2,0,0 +2013,6,20,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,815,-3,0,930,12,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,822,-3,0,944,-10,0,0 +2013,10,3,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1915,-1,0,2117,-11,0,0 +2013,6,13,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,362,1,2036,326,1,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1605,-3,0,1700,-12,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,732,10,0,1006,3,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2041,156,1,2154,167,1,0 +2013,9,6,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2045,-13,0,2150,-32,0,0 +2013,5,3,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,3,0,2200,-12,0,0 +2013,8,28,3,EV,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1517,10,0,1631,-8,0,0 +2013,6,18,2,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,60,1,2005,42,1,0 +2013,7,11,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1210,-3,0,1358,0,0,0 +2013,5,7,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1320,16,1,1530,11,0,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2124,48,1,2305,49,1,0 +2013,7,3,3,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1745,8,0,1911,-1,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1550,1,0,1745,-5,0,0 +2013,7,27,6,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-6,0,2140,-20,0,0 +2013,7,29,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1855,-4,0,2025,7,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2104,10,0,2345,2,0,0 +2013,4,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,104,1,1725,98,1,0 +2013,10,19,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,0,0,1805,1,0,0 +2013,5,29,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-2,0,1713,-4,0,0 +2013,10,30,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1411,-6,0,1620,-10,0,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1029,-4,0,1348,-34,0,0 +2013,6,22,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-10,0,1412,-5,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-3,0,1116,-11,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1705,12,0,1805,4,0,0 +2013,10,27,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1244,-4,0,1359,25,1,0 +2013,8,27,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1440,1,0,1805,-2,0,0 +2013,8,29,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,0,,831,0,1,1 +2013,8,8,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,69,1,1550,60,1,0 +2013,6,26,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,910,9,0,1025,-1,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,-3,0,1928,-12,0,0 +2013,7,12,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,2,0,2355,-6,0,0 +2013,5,1,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,11,0,1459,-1,0,0 +2013,7,17,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1045,-13,0,1500,-12,0,0 +2013,8,6,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,41,1,1648,51,1,0 +2013,7,14,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1017,49,1,1202,32,1,0 +2013,6,19,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1415,-6,0,1710,-18,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,1,0,1105,0,0,0 +2013,8,7,3,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1625,4,0,1745,-6,0,0 +2013,7,18,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1705,-4,0,1805,-6,0,0 +2013,10,1,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,7,0,1735,-4,0,0 +2013,9,20,5,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1704,-1,0,1932,9,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,1,0,1734,3,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,6,0,950,9,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1520,9,0,1745,-5,0,0 +2013,10,30,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1500,-13,0,0 +2013,6,13,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1230,13,0,1321,26,1,0 +2013,6,2,7,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1530,13,0,1635,11,0,0 +2013,5,6,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-4,0,814,-22,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,6,0,1015,-3,0,0 +2013,10,8,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,-11,0,2017,-12,0,0 +2013,4,29,1,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,730,97,1,1029,122,1,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,37,1,1810,28,1,0 +2013,6,14,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1650,9,0,1805,1,0,0 +2013,8,12,1,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-7,0,1626,-5,0,0 +2013,4,18,4,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1900,-5,0,2210,-4,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,2115,-10,0,0 +2013,4,2,2,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1455,-1,0,1620,36,1,0 +2013,4,15,1,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2032,-5,0,2257,-4,0,0 +2013,9,30,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-4,0,1218,-5,0,0 +2013,7,5,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-2,0,1134,-15,0,0 +2013,5,11,6,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,10,0,1335,3,0,0 +2013,4,18,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2135,28,1,600,20,1,0 +2013,10,11,5,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,710,-4,0,1439,-10,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2015,10,0,2130,3,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1308,-4,0,1416,-13,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1435,-4,0,1556,-20,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1905,-4,0,2120,-7,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2145,-2,0,2328,-15,0,0 +2013,8,6,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,12,0,2135,31,1,0 +2013,9,17,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,16,1,1544,6,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,7,0,519,43,1,0 +2013,6,9,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,12,0,1630,14,0,0 +2013,8,13,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,4,0,758,9,0,0 +2013,10,10,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1611,0,0,1728,5,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1550,-3,0,1835,-8,0,0 +2013,8,9,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1921,-17,0,1939,-32,0,0 +2013,6,23,7,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-6,0,1206,-23,0,0 +2013,5,30,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-6,0,1024,-9,0,0 +2013,4,11,4,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,6,0,1118,-15,0,0 +2013,6,4,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-3,0,1755,-13,0,0 +2013,4,25,4,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1433,153,1,1544,161,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,736,-5,0,856,-10,0,0 +2013,5,2,4,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1311,-1,0,1412,2,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1740,7,0,1858,-5,0,0 +2013,10,19,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,715,-1,0,845,15,1,0 +2013,7,28,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-7,0,1200,-18,0,0 +2013,10,14,1,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,755,0,0,935,-10,0,0 +2013,6,28,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,426,1,1637,441,1,0 +2013,4,12,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1935,24,1,2025,14,0,0 +2013,10,8,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2245,-2,0,124,-7,0,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,-3,0,1830,-9,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,13,0,930,5,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-1,0,2159,-15,0,0 +2013,6,2,7,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,720,-11,0,940,-18,0,0 +2013,8,23,5,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1920,-2,0,2045,-20,0,0 +2013,10,22,2,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1945,-6,0,2059,-36,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-3,0,1255,-12,0,0 +2013,8,2,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-3,0,1132,2,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,2,0,1333,-1,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2140,15,1,2315,17,1,0 +2013,6,7,5,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,605,-5,0,715,1,0,0 +2013,5,3,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1135,1,0,1355,3,0,0 +2013,6,24,1,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,10,0,1415,22,1,0 +2013,10,24,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1710,-2,0,1835,-6,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1310,15,1,1630,1,0,0 +2013,7,18,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1840,2,0,2024,9,0,0 +2013,7,31,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,600,17,1,700,5,0,0 +2013,10,27,7,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,48,1,1035,37,1,0 +2013,10,21,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,959,46,1,1126,35,1,0 +2013,8,14,3,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,9,0,1136,11,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,1,0,1524,0,0,0 +2013,4,8,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,1117,26,1,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,-3,0,1045,-8,0,0 +2013,5,2,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,600,0,0,720,0,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,12,0,1915,6,0,0 +2013,9,23,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,8,0,2232,-32,0,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-6,0,1413,-15,0,0 +2013,4,24,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,-6,0,815,-2,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1910,17,1,2015,13,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,-3,0,1810,-3,0,0 +2013,4,18,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,72,1,1745,65,1,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1155,7,0,1315,3,0,0 +2013,9,8,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,25,1,1914,-3,0,0 +2013,10,11,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-2,0,902,-19,0,0 +2013,9,2,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,15,1,1131,5,0,0 +2013,5,6,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,830,-1,0,1117,-2,0,0 +2013,10,6,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1610,-2,0,1631,3,0,0 +2013,8,23,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-7,0,1735,-22,0,0 +2013,4,26,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1556,3,0,1903,-9,0,0 +2013,7,24,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,29,1,2040,12,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1625,-5,0,1758,-11,0,0 +2013,5,8,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2225,31,1,2351,16,1,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,2,0,1545,-21,0,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1445,-1,0,2319,21,1,0 +2013,10,25,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1036,62,1,1302,71,1,0 +2013,5,20,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,945,-6,0,1037,-3,0,0 +2013,8,16,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,630,-1,0,847,-20,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,946,-3,0,953,-17,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,13,0,1200,16,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2050,0,0,40,-3,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,600,1,0,835,-2,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,-7,0,2356,0,0,0 +2013,4,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,948,-7,0,1050,-9,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,4,0,1916,-2,0,0 +2013,4,8,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,605,0,0,815,2,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1401,-6,0,2010,-8,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,10,0,1900,0,0,0 +2013,10,13,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1107,-8,0,1235,-12,0,0 +2013,4,3,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,833,4,0,0 +2013,6,28,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1254,120,1,2125,128,1,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,14,0,2212,7,0,0 +2013,10,10,4,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,-3,0,1343,0,0,0 +2013,4,6,6,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,920,39,1,1302,25,1,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,3,0,1130,-16,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2055,10,0,30,8,0,0 +2013,6,6,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1700,-9,0,1855,-34,0,0 +2013,4,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,945,-2,0,1100,1,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1520,5,0,1715,-19,0,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,-4,0,1546,-12,0,0 +2013,8,28,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,933,-1,0,1332,2,0,0 +2013,6,2,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,-8,0,1117,-2,0,0 +2013,8,16,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,1,0,1337,5,0,0 +2013,4,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2018,-13,0,2334,-16,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,-3,0,1346,-18,0,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1030,1,0,1309,-30,0,0 +2013,7,3,3,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1923,64,1,2115,53,1,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1755,34,1,1850,32,1,0 +2013,10,2,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,715,-12,0,844,-20,0,0 +2013,8,28,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1100,-9,0,1518,3,0,0 +2013,7,19,5,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,1,0,623,3,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,925,7,0,0 +2013,6,9,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1007,-16,0,0 +2013,7,14,7,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,0,,130,0,1,1 +2013,6,24,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1443,5,0,1645,9,0,0 +2013,7,1,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-2,0,1413,-8,0,0 +2013,10,8,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,72,1,910,53,1,0 +2013,5,16,4,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,-9,0,1950,-16,0,0 +2013,4,18,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,719,-5,0,902,-14,0,0 +2013,5,17,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1511,18,1,1825,35,1,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1630,-2,0,1822,5,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1050,0,0,1459,-11,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,641,-3,0,807,-2,0,0 +2013,4,12,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,-3,0,1420,-4,0,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,9,0,825,6,0,0 +2013,10,1,2,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1244,-6,0,1725,7,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,8,0,1913,1,0,0 +2013,5,4,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1541,-7,0,1652,-15,0,0 +2013,6,2,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,21,1,1844,62,1,0 +2013,9,20,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1935,19,1,2159,-4,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1725,-6,0,2050,-17,0,0 +2013,4,26,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-7,0,2145,-15,0,0 +2013,8,4,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,4,0,920,17,1,0 +2013,4,20,6,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1816,24,1,2100,11,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1146,12,0,1619,14,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1510,12,0,1640,8,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2055,0,0,2200,-3,0,0 +2013,10,18,5,DL,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1945,-7,0,2140,-16,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,6,0,1616,-5,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2155,37,1,10,15,1,0 +2013,7,30,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1550,31,1,1830,14,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,-3,0,1130,-8,0,0 +2013,7,15,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,29,1,1425,19,1,0 +2013,9,25,3,9E,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,859,-9,0,1027,-27,0,0 +2013,6,20,4,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1640,-3,0,1830,-34,0,0 +2013,10,28,1,WN,11278,Ronald Reagan Washington National,Washington,DC,12191,William P Hobby,Houston,TX,655,-1,0,915,-15,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,39,1,2055,28,1,0 +2013,4,15,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1850,-6,0,2136,4,0,0 +2013,8,29,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,9,0,1829,-2,0,0 +2013,7,23,2,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1645,13,0,1825,21,1,0 +2013,10,7,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,800,-4,0,1112,-8,0,0 +2013,4,7,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-4,0,1750,3,0,0 +2013,5,15,3,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,700,-5,0,1525,-29,0,0 +2013,8,9,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,957,-4,0,1201,-5,0,0 +2013,8,31,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1759,-11,0,1916,-11,0,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2145,29,1,10,22,1,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,0,,1500,0,1,1 +2013,7,17,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-4,0,1639,-10,0,0 +2013,4,3,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1641,18,1,1817,12,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,0,0,2340,-12,0,0 +2013,8,19,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,-10,0,1340,-14,0,0 +2013,6,26,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,23,1,1646,11,0,0 +2013,5,12,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1740,1,0,1905,-13,0,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,0,0,1022,-8,0,0 +2013,5,16,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1644,1,0,1844,13,0,0 +2013,10,17,4,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1845,-2,0,2125,-9,0,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1659,-1,0,2012,18,1,0 +2013,5,5,7,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,0,0,1540,-1,0,0 +2013,8,3,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-6,0,2102,-5,0,0 +2013,4,20,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,12,0,845,38,1,0 +2013,9,8,7,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-12,0,1440,-18,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,620,2,0,750,-4,0,0 +2013,10,31,4,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2045,-7,0,2150,0,0,0 +2013,9,5,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1215,-4,0,1451,-10,0,0 +2013,6,6,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1220,-12,0,0 +2013,5,17,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1105,-2,0,1235,-16,0,0 +2013,5,29,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-8,0,1127,-22,0,0 +2013,5,29,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-1,0,845,-15,0,0 +2013,9,16,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1610,10,0,1719,2,0,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1845,2,0,2020,-6,0,0 +2013,7,25,4,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-2,0,901,14,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,0,,1320,0,1,1 +2013,8,17,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,950,0,0,1240,-10,0,0 +2013,8,19,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,-6,0,2258,-14,0,0 +2013,6,23,7,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1245,10,0,1425,9,0,0 +2013,10,10,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,730,1,0,1100,-23,0,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,846,-6,0,1020,-49,0,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2344,-9,0,508,-28,0,0 +2013,4,7,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1000,-4,0,1130,-14,0,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,900,1,0,1055,10,0,0 +2013,8,10,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1826,-4,0,2027,12,0,0 +2013,10,29,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,855,349,1,1035,362,1,0 +2013,4,13,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,21,1,1505,46,1,0 +2013,6,19,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,-2,0,733,-13,0,0 +2013,9,29,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,17,1,2130,22,1,0 +2013,8,12,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1242,10,0,1345,-7,0,0 +2013,8,28,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,730,-4,0,835,-5,0,0 +2013,6,3,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,827,-5,0,1100,-20,0,0 +2013,7,20,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,91,1,1005,78,1,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,840,31,1,1210,26,1,0 +2013,10,4,5,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-2,0,1040,-2,0,0 +2013,6,23,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2128,57,1,2347,63,1,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1425,43,1,1708,53,1,0 +2013,4,15,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,819,98,1,1028,69,1,0 +2013,10,12,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,7,0,2331,-17,0,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,2002,-6,0,2155,-6,0,0 +2013,4,29,1,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,800,-10,0,916,-6,0,0 +2013,4,10,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,700,-3,0,1444,12,0,0 +2013,5,1,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-6,0,2026,-13,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1535,8,0,2255,-10,0,0 +2013,8,13,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1942,1,0,2113,-12,0,0 +2013,10,16,3,9E,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,0,,1018,0,1,1 +2013,10,16,3,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1145,6,0,1320,14,0,0 +2013,8,28,3,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2349,-5,0,709,-16,0,0 +2013,6,14,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,45,1,2015,36,1,0 +2013,10,10,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,615,-7,0,750,-11,0,0 +2013,8,22,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-9,0,1740,-30,0,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,0,0,958,8,0,0 +2013,8,20,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-9,0,1253,-13,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2216,2,0,7,3,0,0 +2013,4,20,6,EV,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2015,-9,0,2156,-30,0,0 +2013,4,13,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,-4,0,2025,-12,0,0 +2013,4,5,5,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-5,0,1216,-12,0,0 +2013,5,24,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-3,0,1333,-6,0,0 +2013,4,7,7,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,946,-6,0,1130,-8,0,0 +2013,8,4,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,3,0,1215,12,0,0 +2013,4,22,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-5,0,1345,-19,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-3,0,2335,-10,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2239,-3,0,631,-19,0,0 +2013,8,23,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-2,0,1215,-3,0,0 +2013,9,6,5,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,930,-3,0,1530,-3,0,0 +2013,5,13,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1035,32,1,1235,18,1,0 +2013,8,2,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-1,0,1620,-6,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,710,-1,0,815,-9,0,0 +2013,4,25,4,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1219,-3,0,1318,5,0,0 +2013,7,27,6,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1450,-2,0,1632,-31,0,0 +2013,9,1,7,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-6,0,1351,0,0,0 +2013,7,30,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,0,0,1130,1,0,0 +2013,7,13,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1402,-1,0,1549,2,0,0 +2013,7,31,3,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,-3,0,2150,6,0,0 +2013,10,15,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-3,0,1329,-3,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1911,1,0,2149,-7,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1613,3,0,1909,2,0,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1035,6,0,1240,6,0,0 +2013,4,21,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1619,69,1,1734,64,1,0 +2013,10,27,7,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,930,-17,0,1221,-27,0,0 +2013,4,16,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1232,18,1,2100,-31,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,36,1,1949,15,1,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,54,1,2055,53,1,0 +2013,8,4,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,724,45,1,910,28,1,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-2,0,1131,-13,0,0 +2013,10,9,3,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,626,-6,0,820,-5,0,0 +2013,9,25,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1045,-3,0,1210,-4,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1046,-6,0,1534,-15,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,730,-3,0,830,-3,0,0 +2013,4,21,7,OO,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1427,53,1,1640,63,1,0 +2013,10,1,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1924,18,1,2046,9,0,0 +2013,5,17,5,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,810,0,0,1035,-5,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-2,0,1627,8,0,0 +2013,7,11,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1510,-1,0,1815,-11,0,0 +2013,7,3,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,900,-1,0,1024,-9,0,0 +2013,8,4,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1247,-10,0,1835,8,0,0 +2013,4,16,2,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1259,-9,0,1515,-16,0,0 +2013,7,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-7,0,1625,-15,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1737,0,,2058,0,1,1 +2013,6,10,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,26,1,1615,34,1,0 +2013,7,4,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1932,3,0,2200,-7,0,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1340,19,1,1445,15,1,0 +2013,4,25,4,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,45,27,1,622,18,1,0 +2013,4,16,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1500,7,0,1700,7,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,5,0,1940,-8,0,0 +2013,4,22,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,905,-4,0,913,-13,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,704,-2,0,926,-16,0,0 +2013,7,26,5,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1455,63,1,1715,49,1,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1622,-2,0,1749,-8,0,0 +2013,4,10,3,OO,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1511,0,,1727,0,1,1 +2013,5,19,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,746,-6,0,1042,-9,0,0 +2013,4,3,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1630,-6,0,1835,-31,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1235,0,0,1340,-6,0,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1652,-1,0,1802,12,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,14,0,1050,-7,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1330,-5,0,1505,-14,0,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1840,179,1,1955,174,1,0 +2013,10,31,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1430,21,1,1605,-6,0,0 +2013,7,25,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-5,0,1336,-10,0,0 +2013,10,18,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-3,0,1320,-9,0,0 +2013,8,22,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1030,0,0,1121,13,0,0 +2013,6,2,7,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,48,1,0,630,-11,0,0 +2013,10,2,3,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1925,-3,0,2144,-5,0,0 +2013,5,1,3,OO,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-4,0,853,1,0,0 +2013,5,29,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,22,1,1858,25,1,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1015,-4,0,1140,-8,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,851,6,0,1025,5,0,0 +2013,6,9,7,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1035,-7,0,1235,-22,0,0 +2013,9,4,3,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,625,-4,0,740,-8,0,0 +2013,7,6,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1555,0,0,1715,0,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,38,1,1330,17,1,0 +2013,9,17,2,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,-2,0,1440,-6,0,0 +2013,4,11,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,19,1,1840,8,0,0 +2013,7,29,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-2,0,955,-7,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1445,-3,0,1704,-11,0,0 +2013,10,26,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,-4,0,1455,1,0,0 +2013,9,22,7,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1737,-1,0,1907,-6,0,0 +2013,8,3,6,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,-12,0,2204,-22,0,0 +2013,7,27,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1707,21,1,1915,14,0,0 +2013,7,25,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,37,1,2041,41,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,830,0,0,1000,-9,0,0 +2013,9,8,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,-3,0,2117,3,0,0 +2013,5,12,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,755,-7,0,818,1,0,0 +2013,8,12,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,940,29,1,1110,31,1,0 +2013,10,13,7,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,8,0,648,17,1,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,224,1,2058,204,1,0 +2013,9,18,3,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,-19,0,2200,-2,0,0 +2013,4,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1200,-5,0,1300,-10,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,-3,0,2320,4,0,0 +2013,4,15,1,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-3,0,1140,-11,0,0 +2013,6,22,6,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-1,0,10,-8,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-5,0,1157,-7,0,0 +2013,9,6,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,2,0,845,29,1,0 +2013,8,31,6,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-1,0,1115,20,1,0 +2013,4,30,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,-2,0,1340,-3,0,0 +2013,10,17,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1407,-9,0,1534,-17,0,0 +2013,9,30,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1915,-4,0,2025,-8,0,0 +2013,10,7,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-5,0,730,-11,0,0 +2013,9,4,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-8,0,1108,-8,0,0 +2013,7,24,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1451,99,1,1748,119,1,0 +2013,10,17,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1205,16,1,1350,8,0,0 +2013,6,24,1,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,921,-2,0,0 +2013,8,14,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1500,-4,0,2312,6,0,0 +2013,6,18,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1935,-5,0,2143,0,0,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1315,-6,0,1426,23,1,0 +2013,6,3,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1255,0,0,1405,-2,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1501,-1,0,1546,-19,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,-5,0,1447,-13,0,0 +2013,8,3,6,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1237,-6,0,1653,-34,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1055,33,1,1215,26,1,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1352,0,,1658,0,1,1 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1455,-5,0,1738,-33,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,2000,-2,0,50,-4,0,0 +2013,7,19,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2000,96,1,2112,98,1,0 +2013,6,8,6,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,715,-4,0,1019,-24,0,0 +2013,4,14,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,934,-9,0,1113,-16,0,0 +2013,4,26,5,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,755,3,0,1020,-11,0,0 +2013,7,7,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1327,-3,0,1514,-11,0,0 +2013,6,7,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1525,-3,0,1754,0,0,0 +2013,10,14,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-2,0,2021,-21,0,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,828,-1,0,1639,10,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-1,0,2159,56,1,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,-5,0,1558,-11,0,0 +2013,7,19,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1340,2,0,1440,-6,0,0 +2013,7,21,7,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,-4,0,1959,-15,0,0 +2013,5,1,3,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-5,0,818,-18,0,0 +2013,5,1,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,725,-3,0,904,-11,0,0 +2013,8,20,2,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,811,2,0,1051,-1,0,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1625,-15,0,0 +2013,4,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1557,15,1,1758,21,1,0 +2013,9,17,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1115,5,0,1215,2,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1430,-2,0,1808,-4,0,0 +2013,4,25,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-9,0,1115,-23,0,0 +2013,6,5,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1755,40,1,1855,28,1,0 +2013,8,4,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,3,0,2225,-9,0,0 +2013,9,28,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,655,-3,0,828,-6,0,0 +2013,9,7,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,0,0,754,-16,0,0 +2013,7,19,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-6,0,903,4,0,0 +2013,9,27,5,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,825,-10,0,1020,-16,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1835,11,0,1920,9,0,0 +2013,7,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,1,0,1214,-6,0,0 +2013,4,5,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,940,16,1,1100,17,1,0 +2013,6,15,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,5,0,1115,2,0,0 +2013,9,10,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2005,8,0,2115,-6,0,0 +2013,6,6,4,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1120,1,0,1400,-4,0,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,25,1,2045,2,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1135,2,0,1340,-4,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,835,-7,0,1145,-17,0,0 +2013,9,29,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-6,0,858,-1,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2115,227,1,2325,227,1,0 +2013,7,17,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,655,-5,0,825,-7,0,0 +2013,9,2,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-1,0,2005,-16,0,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,-2,0,1704,27,1,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1915,93,1,2205,76,1,0 +2013,8,31,6,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,-7,0,1735,-8,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1120,-4,0,1310,-8,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,16,1,1430,15,1,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1825,-5,0,2005,-20,0,0 +2013,9,30,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-6,0,1617,1,0,0 +2013,7,23,2,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1035,-4,0,1245,0,0,0 +2013,7,1,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,17,1,2240,14,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1305,0,0,1650,6,0,0 +2013,10,7,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,0,0,1100,3,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,-4,0,1320,-8,0,0 +2013,5,7,2,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,635,-1,0,830,-6,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,811,10,0,1207,11,0,0 +2013,8,21,3,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,-1,0,1830,2,0,0 +2013,10,12,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,935,-1,0,1210,-3,0,0 +2013,5,23,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,856,2,0,1158,0,0,0 +2013,8,22,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,55,1,2324,32,1,0 +2013,9,16,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1016,-14,0,1149,2,0,0 +2013,5,3,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1022,-4,0,1105,7,0,0 +2013,8,30,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1705,-10,0,1824,-10,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1929,-1,0,15,-13,0,0 +2013,7,30,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,0,0,2110,9,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,900,2,0,1625,-12,0,0 +2013,8,29,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,34,1,1416,44,1,0 +2013,9,30,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,700,-4,0,820,-5,0,0 +2013,9,15,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-10,0,1244,-8,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2050,6,0,2135,18,1,0 +2013,8,2,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1710,0,0,1830,1,0,0 +2013,6,28,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2209,4,0,2347,-14,0,0 +2013,9,29,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,14,0,2000,34,1,0 +2013,5,22,3,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,13,0,2001,31,1,0 +2013,9,6,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,730,-25,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1618,5,0,1710,3,0,0 +2013,10,5,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2015,8,0,2225,-5,0,0 +2013,4,19,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,106,1,1712,104,1,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,745,-1,0,941,-12,0,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,854,10,0,1214,-9,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2219,8,0,626,-5,0,0 +2013,4,4,4,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,19,1,1235,36,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1735,-4,0,1855,-12,0,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,4,0,2329,0,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1351,-3,0,1528,-15,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2045,-4,0,2232,-10,0,0 +2013,4,3,3,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,13,0,1905,-5,0,0 +2013,5,17,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1924,0,0,2246,-1,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,4,0,1331,3,0,0 +2013,7,10,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,936,-9,0,1040,-18,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,1300,-5,0,1719,3,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1630,60,1,1945,53,1,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,850,8,0,1135,-11,0,0 +2013,8,20,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,5,0,1415,-2,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1029,1,0,1320,114,1,0 +2013,10,24,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,4,0,2058,-8,0,0 +2013,5,4,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1830,-2,0,2142,-11,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1801,-3,0,1934,8,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1654,-5,0,1941,2,0,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,710,0,0,945,8,0,0 +2013,6,26,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,44,1,820,39,1,0 +2013,4,14,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1030,-4,0,1210,-8,0,0 +2013,10,3,4,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,925,0,0,1110,15,1,0 +2013,8,16,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,826,13,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1650,22,1,1743,64,1,0 +2013,6,20,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-6,0,1858,-1,0,0 +2013,6,26,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,6,0,1156,-16,0,0 +2013,8,13,2,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,625,15,1,905,6,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,820,-3,0,1055,-16,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1904,23,1,2035,20,1,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,2,0,1625,15,1,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,730,5,0,830,-2,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,755,8,0,1129,-6,0,0 +2013,7,17,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1548,-8,0,1638,-12,0,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1229,-9,0,1458,-23,0,0 +2013,7,19,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1650,10,0,1820,15,1,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2146,-8,0,2346,-19,0,0 +2013,8,22,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-2,0,1105,-7,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-3,0,1133,-12,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1810,-1,0,1944,-9,0,0 +2013,5,3,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1155,-1,0,1320,-15,0,0 +2013,6,22,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,10,0,1540,1,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,2,0,1015,-8,0,0 +2013,9,9,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2255,0,0,626,-20,0,0 +2013,5,1,3,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1705,-1,0,1835,-11,0,0 +2013,8,27,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-7,0,1615,-27,0,0 +2013,7,3,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2055,-5,0,2120,-6,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1325,-1,0,1430,-2,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-4,0,950,-5,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-4,0,1311,-21,0,0 +2013,8,25,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1220,-6,0,1548,-20,0,0 +2013,6,18,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,35,1,2040,23,1,0 +2013,9,21,6,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,814,-10,0,0 +2013,9,8,7,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,-1,0,1545,-18,0,0 +2013,10,10,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1438,10,0,1959,8,0,0 +2013,4,18,4,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1936,0,,2058,0,1,1 +2013,5,10,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-4,0,1825,-4,0,0 +2013,5,10,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,2,0,1845,44,1,0 +2013,7,27,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,11,0,1315,6,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,0,0,2013,2,0,0 +2013,5,4,6,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,800,-3,0,840,-5,0,0 +2013,8,22,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,605,-5,0,1020,-1,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,38,1,1230,28,1,0 +2013,8,17,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,631,5,0,904,1,0,0 +2013,8,13,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1848,10,0,2018,2,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,856,-5,0,1105,-6,0,0 +2013,5,6,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1734,-7,0,2105,41,1,0 +2013,6,4,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,-5,0,2135,9,0,0 +2013,4,1,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1750,40,1,2005,41,1,0 +2013,6,13,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1532,-3,0,1800,-12,0,0 +2013,10,31,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-12,0,2200,-37,0,0 +2013,8,24,6,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1157,-9,0,1408,-18,0,0 +2013,9,15,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,0,,1700,0,1,1 +2013,8,15,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,700,-10,0,816,-9,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1622,20,1,1844,4,0,0 +2013,4,24,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,29,1,1630,24,1,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,710,-2,0,815,-1,0,0 +2013,10,30,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,954,-4,0,1604,-4,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1145,3,0,1550,3,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,0,0,1830,1,0,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1035,19,1,1335,12,0,0 +2013,10,16,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1524,-4,0,1814,-15,0,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1130,8,0,2001,5,0,0 +2013,5,3,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1804,0,0,2159,0,0,0 +2013,7,12,5,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-2,0,1850,6,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1540,-1,0,1855,-32,0,0 +2013,4,10,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,825,382,1,855,419,1,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,30,1,2155,20,1,0 +2013,7,19,5,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,640,-22,0,0 +2013,7,8,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1643,184,1,1927,194,1,0 +2013,5,14,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-1,0,1015,-8,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1750,-1,0,2045,-18,0,0 +2013,6,3,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1045,274,1,1106,267,1,0 +2013,6,13,4,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1001,12,0,1100,18,1,0 +2013,4,24,3,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-5,0,1901,-15,0,0 +2013,10,8,2,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,737,7,0,1051,-18,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1345,1,0,1417,-8,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,905,1,0,1130,8,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,0,0,1310,-11,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,1,0,1420,-18,0,0 +2013,4,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2105,5,0,2232,-3,0,0 +2013,6,6,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,842,-3,0,917,-6,0,0 +2013,8,27,2,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1140,-2,0,1254,6,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,44,1,1005,51,1,0 +2013,8,23,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,-10,0,1720,-18,0,0 +2013,7,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,5,0,1810,5,0,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1100,1,0,1225,-4,0,0 +2013,5,6,1,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1337,-4,0,1655,-5,0,0 +2013,8,30,5,OO,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1343,-1,0,1415,-7,0,0 +2013,9,2,1,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-3,0,845,-24,0,0 +2013,7,8,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-2,0,1003,-5,0,0 +2013,5,19,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,66,1,2220,98,1,0 +2013,9,18,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1540,23,1,1840,12,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1100,-5,0,1240,-10,0,0 +2013,9,24,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1115,30,1,1340,18,1,0 +2013,10,16,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,720,-11,0,0 +2013,9,30,1,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1331,3,0,1544,8,0,0 +2013,7,19,5,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,2,0,1905,-5,0,0 +2013,7,21,7,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,58,1,1940,90,1,0 +2013,4,10,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-6,0,1415,-30,0,0 +2013,8,3,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,730,2,0,905,-10,0,0 +2013,7,20,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,958,-11,0,1220,-29,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2005,0,0,2305,-19,0,0 +2013,7,2,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,825,34,1,950,35,1,0 +2013,4,26,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1338,18,1,1450,16,1,0 +2013,8,1,4,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,840,-7,0,1025,-8,0,0 +2013,6,24,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-11,0,1105,-26,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,-3,0,2210,-6,0,0 +2013,5,28,2,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1245,2,0,1525,-40,0,0 +2013,4,16,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2000,-1,0,2325,14,0,0 +2013,8,26,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1018,-15,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,-4,0,1350,-19,0,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1115,13,0,1525,11,0,0 +2013,4,24,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,-3,0,2201,-9,0,0 +2013,10,12,6,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1615,-3,0,1856,-3,0,0 +2013,9,28,6,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-5,0,2014,0,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2029,13,0,27,29,1,0 +2013,4,15,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1250,-5,0,1420,-14,0,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,0,0,927,-9,0,0 +2013,7,2,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,26,1,1900,33,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2206,-1,0,2343,-5,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1901,41,1,2213,65,1,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1140,0,0,1335,-17,0,0 +2013,7,17,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,-5,0,2135,-11,0,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1444,1,0,1844,-17,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,930,-5,0,1309,3,0,0 +2013,7,7,7,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1457,3,0,1650,4,0,0 +2013,7,24,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-4,0,1307,-6,0,0 +2013,9,23,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2215,-7,0,32,-22,0,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1939,-2,0,2115,-20,0,0 +2013,6,11,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1909,17,1,2154,45,1,0 +2013,4,12,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1301,0,0,1430,8,0,0 +2013,6,26,3,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,755,8,0,1130,0,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2115,19,1,2255,7,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,-4,0,2110,-7,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1910,-2,0,2021,-24,0,0 +2013,6,14,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-4,0,2110,5,0,0 +2013,9,12,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1200,0,0,0 +2013,8,7,3,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,11,0,1305,4,0,0 +2013,6,3,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1853,-4,0,0 +2013,5,21,2,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2045,-4,0,2318,-15,0,0 +2013,5,25,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,831,-9,0,0 +2013,4,1,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-4,0,1900,29,1,0 +2013,8,11,7,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1905,122,1,2030,121,1,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,940,-4,0,1100,-2,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,0,0,1904,-19,0,0 +2013,5,29,3,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,0,0,2105,13,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,1,0,1120,-6,0,0 +2013,9,20,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-1,0,1332,-13,0,0 +2013,4,29,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1834,12,0,2139,19,1,0 +2013,4,9,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11618,Newark Liberty International,Newark,NJ,953,6,0,1115,2,0,0 +2013,5,19,7,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1855,-2,0,1957,-3,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1404,269,1,1643,302,1,0 +2013,9,17,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,-3,0,1055,-8,0,0 +2013,9,13,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1010,-5,0,1130,-9,0,0 +2013,7,17,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,256,1,2135,250,1,0 +2013,9,22,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1700,11,0,1945,-10,0,0 +2013,9,22,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,-1,0,1045,-27,0,0 +2013,9,1,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-1,0,1905,-18,0,0 +2013,9,20,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-7,0,1006,-5,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1000,37,1,1125,59,1,0 +2013,9,7,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,1946,-5,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,701,1,0,945,-12,0,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-7,0,2039,-6,0,0 +2013,5,4,6,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1618,-2,0,2130,-5,0,0 +2013,6,3,1,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2105,-4,0,2215,-10,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,-3,0,2015,-16,0,0 +2013,8,6,2,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-6,0,1529,-27,0,0 +2013,4,15,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1515,-11,0,1755,-24,0,0 +2013,5,18,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1640,-2,0,2300,-17,0,0 +2013,5,29,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,5,0,810,-2,0,0 +2013,6,12,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1434,-3,0,1525,-4,0,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,554,1,0,914,1,0,0 +2013,8,30,5,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1040,7,0,1258,9,0,0 +2013,7,9,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-6,0,1302,-3,0,0 +2013,9,11,3,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,949,5,0,1212,-1,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1355,7,0,1925,-7,0,0 +2013,4,7,7,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,904,6,0,1004,-12,0,0 +2013,6,1,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,802,-8,0,0 +2013,5,19,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,-12,0,1036,-13,0,0 +2013,10,10,4,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1040,24,1,1125,15,1,0 +2013,9,4,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1331,-8,0,1840,-21,0,0 +2013,6,3,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,-6,0,1755,-4,0,0 +2013,7,17,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,205,1,928,237,1,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1427,5,0,1556,-14,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1935,0,0,2118,-1,0,0 +2013,8,9,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1650,1,0,1810,0,0,0 +2013,7,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,48,1,2058,56,1,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,119,1,2230,174,1,0 +2013,6,20,4,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,630,-7,0,756,-4,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1953,2,0,2230,-18,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,6,0,2138,-4,0,0 +2013,9,13,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,1,0,1728,-17,0,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1610,10,0,1835,-14,0,0 +2013,8,8,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-7,0,835,-13,0,0 +2013,6,3,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-7,0,1316,-3,0,0 +2013,4,14,7,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2105,-3,0,544,-1,0,0 +2013,5,17,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-6,0,2139,-35,0,0 +2013,4,28,7,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1035,-7,0,1151,-25,0,0 +2013,9,26,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,-8,0,1809,-17,0,0 +2013,10,26,6,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1440,0,0,1630,1,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1410,116,1,1505,163,1,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1430,-2,0,1555,-9,0,0 +2013,5,31,5,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,-3,0,1240,-27,0,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-2,0,1605,-13,0,0 +2013,5,31,5,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1446,-8,0,1654,-21,0,0 +2013,10,25,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1509,-3,0,1731,4,0,0 +2013,7,13,6,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1717,91,1,1857,60,1,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,65,1,2254,39,1,0 +2013,5,16,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,906,10,0,1253,17,1,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-1,0,805,7,0,0 +2013,5,22,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,710,-5,0,914,-28,0,0 +2013,6,27,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2125,67,1,2335,86,1,0 +2013,10,28,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,0,,1145,0,1,1 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,530,-1,0,806,-6,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1940,10,0,2100,4,0,0 +2013,10,2,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,825,-2,0,935,3,0,0 +2013,10,16,3,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-4,0,1022,8,0,0 +2013,9,6,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1345,-5,0,1638,-2,0,0 +2013,9,25,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-8,0,955,-14,0,0 +2013,8,24,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1745,1,0,1915,-4,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,-4,0,834,-11,0,0 +2013,8,17,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,918,3,0,1158,-2,0,0 +2013,10,25,5,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1713,5,0,1930,24,1,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,17,1,1700,18,1,0 +2013,8,5,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1117,-10,0,1152,-12,0,0 +2013,10,8,2,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1642,-10,0,1837,-19,0,0 +2013,5,8,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1740,21,1,2150,47,1,0 +2013,5,2,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,27,1,814,7,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,54,1,1235,42,1,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-3,0,1836,-24,0,0 +2013,4,11,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1420,14,0,1935,-8,0,0 +2013,4,16,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-6,0,1258,-6,0,0 +2013,7,11,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,850,-1,0,1030,-7,0,0 +2013,6,2,7,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,0,0,1300,0,0,0 +2013,5,11,6,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,730,2,0,935,-10,0,0 +2013,6,5,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,2,0,1435,1,0,0 +2013,7,25,4,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1633,-3,0,1805,-22,0,0 +2013,10,18,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,22,1,1855,16,1,0 +2013,8,9,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,715,-3,0,950,-2,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,-3,0,1631,-27,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1115,53,1,1459,41,1,0 +2013,6,11,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-3,0,1415,-15,0,0 +2013,7,13,6,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1230,-7,0,1441,-13,0,0 +2013,10,5,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,625,0,0,1220,0,0,0 +2013,9,13,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,850,-23,0,0 +2013,6,1,6,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1931,-7,0,2305,-23,0,0 +2013,4,13,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,210,1,16,216,1,0 +2013,7,27,6,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1845,-4,0,2025,-25,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1515,29,1,1656,4,0,0 +2013,5,6,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,630,6,0,805,0,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1600,9,0,1940,10,0,0 +2013,9,6,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2026,-6,0,2120,1,0,0 +2013,7,6,6,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-2,0,828,8,0,0 +2013,4,11,4,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-7,0,1155,-21,0,0 +2013,7,17,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,15,1,1630,32,1,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,8,0,1802,0,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2050,16,1,2240,0,0,0 +2013,8,7,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,7,0,1920,13,0,0 +2013,4,28,7,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1240,-14,0,1428,-33,0,0 +2013,5,5,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,28,1,2103,34,1,0 +2013,10,5,6,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,817,-4,0,1127,-18,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,3,0,1022,-20,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1725,0,0,2050,9,0,0 +2013,9,20,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,0,0,1015,-1,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1350,-1,0,1635,-18,0,0 +2013,9,30,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-7,0,1140,-16,0,0 +2013,4,27,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,725,12,0,935,6,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2035,-3,0,2331,-7,0,0 +2013,9,3,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1352,-3,0,1946,-12,0,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1009,-3,0,1235,-20,0,0 +2013,6,21,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,3,0,1145,9,0,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,27,1,2330,17,1,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,94,1,5,84,1,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1120,-4,0,1259,-15,0,0 +2013,7,22,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1931,-1,0,2320,-2,0,0 +2013,7,26,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-5,0,2256,-2,0,0 +2013,10,31,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,-4,0,1542,-3,0,0 +2013,10,14,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1145,10,0,1455,-16,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,0,0,1823,-1,0,0 +2013,5,4,6,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1700,-2,0,2030,-12,0,0 +2013,8,1,4,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,6,0,1345,-3,0,0 +2013,7,11,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1715,-2,0,2010,-8,0,0 +2013,5,30,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,625,-7,0,935,-12,0,0 +2013,10,23,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,645,-2,0,835,-8,0,0 +2013,6,22,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,3,0,1750,-17,0,0 +2013,9,25,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1229,-10,0,1435,-22,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,9,0,1650,13,0,0 +2013,5,6,1,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1710,0,0,2157,-3,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1650,-1,0,2105,-5,0,0 +2013,6,11,2,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1405,2,0,1620,11,0,0 +2013,4,24,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,600,-2,0,700,-4,0,0 +2013,6,1,6,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1600,56,1,1840,48,1,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1716,-8,0,1859,-5,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,955,-2,0,1154,10,0,0 +2013,10,17,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,950,-6,0,1209,-12,0,0 +2013,8,5,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,0,0,621,11,0,0 +2013,7,16,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,2,0,2025,-4,0,0 +2013,6,7,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-8,0,1446,-13,0,0 +2013,7,23,2,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,4,0,1934,-5,0,0 +2013,9,30,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-10,0,1246,-18,0,0 +2013,6,27,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2020,3,0,447,-8,0,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,1,0,1342,-3,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,610,0,0,847,17,1,0 +2013,5,13,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-4,0,1050,-24,0,0 +2013,7,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2350,-1,0,724,9,0,0 +2013,4,27,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,-11,0,1205,-13,0,0 +2013,9,17,2,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-3,0,711,-24,0,0 +2013,5,7,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1555,-1,0,1629,0,0,0 +2013,5,28,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1545,2,0,1710,-5,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1551,-1,0,1704,-13,0,0 +2013,4,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1730,-2,0,1753,-10,0,0 +2013,7,21,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2115,38,1,2220,34,1,0 +2013,9,11,3,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1100,-2,0,1155,-12,0,0 +2013,9,22,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-7,0,2050,-10,0,0 +2013,5,7,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,0,0,830,-11,0,0 +2013,8,29,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-3,0,1634,2,0,0 +2013,8,5,1,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1155,-9,0,1430,0,0,0 +2013,5,25,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,852,-4,0,1008,-1,0,0 +2013,4,10,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1809,121,1,2156,102,1,0 +2013,6,25,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,114,83,1,629,74,1,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,923,-1,0,1042,-24,0,0 +2013,10,22,2,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1115,-9,0,1407,-22,0,0 +2013,10,24,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,0,0,1558,3,0,0 +2013,5,7,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1020,-2,0,1137,3,0,0 +2013,5,12,7,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,17,1,2010,-1,0,0 +2013,6,9,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,935,-3,0,955,-12,0,0 +2013,7,6,6,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-6,0,2244,-15,0,0 +2013,9,2,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,12,0,1830,18,1,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,-3,0,1145,-11,0,0 +2013,8,4,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,2000,-2,0,2101,-10,0,0 +2013,6,5,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1210,-4,0,1230,-2,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,625,-3,0,750,-3,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,0,0,1928,15,1,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1730,5,0,1905,-20,0,0 +2013,8,1,4,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,20,1,1220,11,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1507,-3,0,1738,-6,0,0 +2013,10,24,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,5,0,1916,16,1,0 +2013,8,2,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1002,2,0,1136,8,0,0 +2013,4,2,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1541,19,1,1805,2,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1010,-5,0,1441,-9,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2205,0,0,545,-5,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1256,15,1,1423,17,1,0 +2013,7,22,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,605,2,0,931,-3,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,815,-6,0,1110,-12,0,0 +2013,10,22,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1840,2,0,1935,-4,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,1,0,1349,-7,0,0 +2013,4,4,4,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1850,-5,0,2115,-13,0,0 +2013,5,4,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1444,7,0,1844,-14,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,855,-1,0,1005,-15,0,0 +2013,4,6,6,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2200,-2,0,845,-32,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,952,1,0,1116,-6,0,0 +2013,8,8,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1657,-6,0,1902,21,1,0 +2013,8,10,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,745,-1,0,805,-9,0,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,51,1,1339,49,1,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1225,40,1,1430,29,1,0 +2013,5,25,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,-3,0,1503,-9,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,-2,0,1316,-17,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2148,-4,0,2352,-5,0,0 +2013,8,29,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-7,0,2210,15,1,0 +2013,7,11,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,52,1,649,60,1,0 +2013,6,18,2,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2208,115,1,2331,114,1,0 +2013,7,5,5,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-5,0,1655,2,0,0 +2013,5,24,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,605,-2,0,735,-15,0,0 +2013,6,17,1,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,600,-5,0,729,-10,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,2,0,1025,2,0,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1034,29,1,1630,6,0,0 +2013,10,17,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-8,0,1329,-20,0,0 +2013,10,28,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1628,-6,0,1900,-2,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,7,0,1954,3,0,0 +2013,6,6,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2219,19,1,2354,5,0,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1440,32,1,1539,26,1,0 +2013,7,20,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2039,24,1,2200,16,1,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1543,-1,0,1845,-27,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1135,11,0,1335,10,0,0 +2013,7,8,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,0,0,1350,-11,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1707,-2,0,1859,-11,0,0 +2013,8,31,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1610,11,0,2035,6,0,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,805,0,0,1134,4,0,0 +2013,8,6,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,840,-2,0,1255,-2,0,0 +2013,5,7,2,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1600,-2,0,1930,-2,0,0 +2013,9,22,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-2,0,2232,-15,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,830,-9,0,1145,-26,0,0 +2013,5,5,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2155,10,0,2259,42,1,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-3,0,1356,-17,0,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1125,-4,0,1420,44,1,0 +2013,5,4,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,0,0,812,8,0,0 +2013,9,16,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,0,,1205,0,1,1 +2013,4,1,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-2,0,817,-4,0,0 +2013,10,8,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,605,-6,0,720,-9,0,0 +2013,4,28,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1119,11,0,1229,5,0,0 +2013,10,25,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,2,0,816,0,0,0 +2013,10,31,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-4,0,854,-2,0,0 +2013,6,3,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1945,-2,0,2120,-19,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,-3,0,1834,-2,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,14,0,1127,15,1,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,-5,0,2056,-30,0,0 +2013,6,9,7,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1625,20,1,1845,35,1,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1954,-4,0,2123,-9,0,0 +2013,9,6,5,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,645,-8,0,935,-26,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,615,-3,0,730,2,0,0 +2013,9,30,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,706,-5,0,828,3,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-3,0,1920,-14,0,0 +2013,4,12,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-6,0,1617,-14,0,0 +2013,5,21,2,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1715,4,0,1855,-9,0,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1334,-5,0,1432,-1,0,0 +2013,8,12,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-8,0,2214,-14,0,0 +2013,6,5,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,29,1,1235,53,1,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,2,0,1647,17,1,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,14,0,1335,23,1,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,-1,0,1516,-5,0,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,947,-5,0,1214,-41,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,10,0,1910,-2,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1810,32,1,1915,24,1,0 +2013,7,16,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-4,0,901,-11,0,0 +2013,4,20,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-3,0,941,-11,0,0 +2013,4,22,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-4,0,1910,-16,0,0 +2013,5,25,6,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-7,0,1559,-18,0,0 +2013,8,4,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,-1,0,1730,-9,0,0 +2013,5,9,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1930,2,0,2156,-2,0,0 +2013,7,19,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-3,0,2101,-18,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-5,0,1817,17,1,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,730,-3,0,850,-5,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,44,1,1246,50,1,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1325,8,0,1530,-4,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,66,1,1901,109,1,0 +2013,7,9,2,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,650,0,0,745,-5,0,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,855,15,1,1233,-1,0,0 +2013,4,30,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1000,-2,0,1105,-10,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,-1,0,1000,-15,0,0 +2013,8,30,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,645,-3,0,700,-11,0,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1710,182,1,2005,237,1,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1440,-3,0,1600,-14,0,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,-7,0,2059,-29,0,0 +2013,10,18,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-2,0,934,-3,0,0 +2013,9,7,6,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,85,1,1630,71,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,6,0,2219,-25,0,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,13,0,2308,16,1,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,5,0,845,4,0,0 +2013,6,29,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1105,2,0,1841,-8,0,0 +2013,8,7,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1523,30,1,1739,27,1,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1205,1,0,1418,-10,0,0 +2013,10,1,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1455,0,0,1525,5,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,42,1,1816,56,1,0 +2013,5,10,5,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,534,0,,702,0,1,1 +2013,8,19,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-10,0,2102,-12,0,0 +2013,8,2,5,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-1,0,1815,1,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,11,0,1015,13,0,0 +2013,5,22,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,727,-9,0,829,-15,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1635,34,1,1910,18,1,0 +2013,6,25,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,56,1,1809,45,1,0 +2013,7,21,7,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,19,1,1412,19,1,0 +2013,8,27,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,42,1,1700,30,1,0 +2013,10,23,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1442,25,1,1830,13,0,0 +2013,7,13,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1205,-8,0,1459,-7,0,0 +2013,10,20,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2351,-9,0,700,-30,0,0 +2013,4,4,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,-5,0,1100,-6,0,0 +2013,7,1,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,10,0,1910,3,0,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2156,10,0,2215,14,0,0 +2013,7,14,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,844,7,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1750,9,0,1855,7,0,0 +2013,7,26,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1015,1,0,1115,-6,0,0 +2013,5,8,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1110,-2,0,1356,10,0,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1200,1,0,1420,-12,0,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1935,17,1,2123,15,1,0 +2013,9,7,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1254,64,1,1630,114,1,0 +2013,8,20,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,-8,0,1505,-6,0,0 +2013,5,3,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,87,1,1645,79,1,0 +2013,7,6,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,0,0,130,-2,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1938,-4,0,28,-8,0,0 +2013,8,4,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1725,4,0,1900,41,1,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,750,27,1,910,18,1,0 +2013,10,15,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,846,-5,0,1218,-14,0,0 +2013,4,27,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,740,0,0,915,1,0,0 +2013,4,14,7,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,-6,0,2140,9,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1804,-5,0,1956,-19,0,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,13,0,629,7,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,5,0,2127,4,0,0 +2013,9,17,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-3,0,905,-8,0,0 +2013,6,3,1,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,1106,-12,0,0 +2013,5,24,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1115,7,0,1219,1,0,0 +2013,10,11,5,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1200,2,0,1345,0,0,0 +2013,7,6,6,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1750,-2,0,1958,5,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,811,-3,0,933,-19,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1810,39,1,1925,29,1,0 +2013,8,26,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,29,1,1950,7,0,0 +2013,4,22,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1815,155,1,2125,148,1,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1822,67,1,2118,52,1,0 +2013,4,6,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1246,110,1,1419,97,1,0 +2013,5,5,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1055,9,0,1200,8,0,0 +2013,8,24,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,-5,0,941,-12,0,0 +2013,6,21,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1455,14,0,1811,10,0,0 +2013,7,16,2,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-8,0,919,8,0,0 +2013,4,19,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2359,99,1,223,97,1,0 +2013,8,4,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,855,-7,0,1115,-22,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-9,0,1546,-18,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,850,0,0,1010,-5,0,0 +2013,6,7,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,0,0,1904,-3,0,0 +2013,8,26,1,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-6,0,1205,-21,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-4,0,1629,-15,0,0 +2013,6,26,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1743,-2,0,2144,36,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1625,-2,0,1739,-6,0,0 +2013,5,15,3,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,955,-6,0,1419,2,0,0 +2013,10,24,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1950,-5,0,2126,-3,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1126,-6,0,1239,-16,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1225,7,0,1615,-7,0,0 +2013,5,20,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-3,0,1403,-40,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1547,-4,0,1630,-13,0,0 +2013,9,19,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-4,0,1435,-12,0,0 +2013,10,29,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,600,286,1,1420,261,1,0 +2013,6,27,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,24,1,1820,50,1,0 +2013,5,7,2,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,-7,0,2350,-17,0,0 +2013,10,21,1,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,1,0,1034,-2,0,0 +2013,9,2,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1732,1,0,1853,-13,0,0 +2013,4,24,3,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,640,-2,0,748,19,1,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,-6,0,1250,-4,0,0 +2013,4,19,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1515,16,1,1555,8,0,0 +2013,9,30,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,830,3,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2351,10,0,819,-8,0,0 +2013,7,27,6,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,4,0,932,2,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-10,0,25,-23,0,0 +2013,10,31,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,650,-6,0,1012,-12,0,0 +2013,7,17,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-4,0,1524,11,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,2,0,1710,-15,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1320,36,1,1425,31,1,0 +2013,8,2,5,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1011,-3,0,1248,-5,0,0 +2013,9,29,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1710,11,0,2000,26,1,0 +2013,10,27,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1700,10,0,1800,-2,0,0 +2013,7,11,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,735,-6,0,926,-26,0,0 +2013,7,28,7,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2012,139,1,2135,140,1,0 +2013,6,19,3,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1310,0,0,1425,5,0,0 +2013,8,19,1,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1716,-3,0,2010,-2,0,0 +2013,6,28,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2147,168,1,2259,156,1,0 +2013,7,9,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1054,-3,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1209,-5,0,1310,-22,0,0 +2013,10,15,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1359,-4,0,1523,-10,0,0 +2013,7,11,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1230,-5,0,1335,-6,0,0 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,9,0,1235,-2,0,0 +2013,10,25,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,15,1,2051,6,0,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,23,1,2211,28,1,0 +2013,10,3,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10693,Nashville International,Nashville,TN,755,-3,0,825,-11,0,0 +2013,6,14,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2241,6,0,635,-4,0,0 +2013,6,27,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,835,-6,0,958,-16,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2045,136,1,2245,123,1,0 +2013,8,3,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,27,1,1450,31,1,0 +2013,10,17,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-6,0,1105,-5,0,0 +2013,4,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1055,0,0,1200,-7,0,0 +2013,10,15,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-2,0,905,-11,0,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,-1,0,1520,-9,0,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1612,0,0,1943,2,0,0 +2013,10,17,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1405,1,0,2000,0,0,0 +2013,7,22,1,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-14,0,1127,-20,0,0 +2013,5,5,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1940,-1,0,2156,9,0,0 +2013,5,10,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,935,-2,0,1105,-21,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,917,-5,0,1042,-15,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2120,6,0,2354,-7,0,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1848,-4,0,2005,-10,0,0 +2013,4,6,6,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1345,2,0,1351,-3,0,0 +2013,6,14,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-9,0,2146,4,0,0 +2013,6,30,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,11,0,925,10,0,0 +2013,10,1,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,850,10,0,1050,10,0,0 +2013,7,2,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,30,1,2030,30,1,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,2,0,955,1,0,0 +2013,6,17,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,25,1,1206,23,1,0 +2013,7,13,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,936,0,,1200,0,1,1 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1930,17,1,2341,-4,0,0 +2013,7,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1423,0,,1526,0,1,1 +2013,10,4,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,11,0,1555,5,0,0 +2013,10,23,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1708,-7,0,2230,2,0,0 +2013,4,28,7,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1737,-7,0,1916,-31,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,0,0,1354,-8,0,0 +2013,5,1,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,700,-5,0,909,-4,0,0 +2013,8,2,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,905,139,1,1140,129,1,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2115,11,0,20,13,0,0 +2013,4,30,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1420,-9,0,1505,-14,0,0 +2013,10,6,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1735,26,1,1940,5,0,0 +2013,9,29,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,3,0,1155,4,0,0 +2013,8,14,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,-8,0,952,-23,0,0 +2013,6,19,3,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2210,0,0,2300,-12,0,0 +2013,10,11,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,4,0,1115,5,0,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,952,-2,0,1535,-10,0,0 +2013,6,21,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-9,0,1903,-15,0,0 +2013,10,11,5,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,811,4,0,929,5,0,0 +2013,6,18,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1700,11,0,1825,6,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,-6,0,2255,-8,0,0 +2013,4,7,7,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,630,-5,0,800,-11,0,0 +2013,9,8,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1845,6,0,2025,4,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1320,13,0,1605,13,0,0 +2013,10,1,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1405,-6,0,2059,-18,0,0 +2013,4,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2140,1,0,2333,7,0,0 +2013,5,31,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1002,11,0,1134,-3,0,0 +2013,8,7,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1105,4,0,1110,-3,0,0 +2013,10,11,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,605,0,,750,0,1,1 +2013,5,24,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1942,148,1,2227,126,1,0 +2013,7,10,3,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2053,0,,500,0,1,1 +2013,7,31,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1602,-5,0,1759,-13,0,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,86,1,901,97,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,8,0,1238,2,0,0 +2013,7,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,625,36,1,740,24,1,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1105,10,0,1150,15,1,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2140,-1,0,2225,1,0,0 +2013,4,15,1,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,9,0,1611,33,1,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1930,2,0,2045,-7,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1430,1,0,1555,-4,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2056,1,0,2222,6,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1028,18,1,1321,13,0,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,-2,0,920,-5,0,0 +2013,5,27,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1124,-2,0,1357,-14,0,0 +2013,9,25,3,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1707,42,1,1809,28,1,0 +2013,4,28,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,1145,1,0,0 +2013,4,22,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-5,0,1017,-2,0,0 +2013,10,18,5,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2150,9,0,2236,14,0,0 +2013,5,30,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,-5,0,1007,4,0,0 +2013,6,26,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1219,0,0,1937,4,0,0 +2013,4,16,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,5,0,1642,-12,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1511,-4,0,1845,7,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,850,7,0,1240,-1,0,0 +2013,9,29,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,0,0,1700,-14,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1512,-4,0,1825,-13,0,0 +2013,9,12,4,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,707,-12,0,1028,-4,0,0 +2013,5,20,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1325,18,1,1450,16,1,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,13,0,2137,10,0,0 +2013,4,11,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,22,1,1714,29,1,0 +2013,6,10,1,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1959,75,1,2017,75,1,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1615,0,0,59,2,0,0 +2013,9,24,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,806,-11,0,0 +2013,6,8,6,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2057,-4,0,2329,-21,0,0 +2013,6,14,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-3,0,1415,-11,0,0 +2013,5,11,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,625,-2,0,724,-11,0,0 +2013,10,30,3,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,1015,15,1,0 +2013,6,11,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,13,0,2155,8,0,0 +2013,10,15,2,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,1455,-3,0,1740,-11,0,0 +2013,8,27,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-2,0,759,5,0,0 +2013,10,14,1,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-5,0,1005,5,0,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-8,0,945,-4,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1730,52,1,1900,35,1,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-3,0,710,-8,0,0 +2013,6,7,5,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1715,25,1,1859,8,0,0 +2013,8,19,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1821,20,1,2122,14,0,0 +2013,5,12,7,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,550,1,0,711,-6,0,0 +2013,8,25,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2130,-15,0,2215,-31,0,0 +2013,5,3,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,625,227,1,855,219,1,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1415,-1,0,1510,21,1,0 +2013,5,1,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-5,0,851,-2,0,0 +2013,8,29,4,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1115,-3,0,1240,-15,0,0 +2013,8,1,4,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,-2,0,1655,-30,0,0 +2013,10,23,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,845,-5,0,1035,-31,0,0 +2013,6,30,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,736,-16,0,0 +2013,8,8,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1725,49,1,1840,83,1,0 +2013,4,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-3,0,908,-18,0,0 +2013,6,25,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1225,12,0,1345,4,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2135,-1,0,2250,-6,0,0 +2013,6,25,2,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1722,-3,0,1855,-18,0,0 +2013,4,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2013,-8,0,2143,-12,0,0 +2013,10,7,1,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1800,4,0,2103,18,1,0 +2013,7,15,1,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-2,0,2154,-16,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,750,-3,0,1010,-4,0,0 +2013,9,6,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1540,8,0,1646,-11,0,0 +2013,7,9,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2200,-1,0,2305,14,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1040,6,0,1740,-17,0,0 +2013,8,14,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,4,0,1923,6,0,0 +2013,4,27,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1405,2,0,1650,-11,0,0 +2013,8,7,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2150,1,0,45,33,1,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,843,2,0,1033,-7,0,0 +2013,9,14,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1400,21,1,1505,18,1,0 +2013,8,1,4,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1325,1,0,1450,3,0,0 +2013,10,25,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1519,-13,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,620,-2,0,1050,-8,0,0 +2013,7,7,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1420,25,1,1712,27,1,0 +2013,8,12,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1040,-7,0,1325,-14,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1955,25,1,2225,60,1,0 +2013,6,6,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1735,2,0,2105,15,1,0 +2013,5,24,5,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1110,-2,0,1323,5,0,0 +2013,5,10,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1600,-2,0,1725,-5,0,0 +2013,5,1,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1042,22,1,1415,27,1,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,1,0,1610,-3,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1548,8,0,1827,1,0,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,-3,0,1246,-18,0,0 +2013,5,26,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1823,95,1,2123,90,1,0 +2013,6,10,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1224,134,1,1340,146,1,0 +2013,10,13,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1012,-2,0,1245,-5,0,0 +2013,4,8,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1830,5,0,1955,-7,0,0 +2013,4,30,2,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,745,-8,0,1025,-28,0,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1251,-2,0,1757,-11,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,915,-5,0,1145,-10,0,0 +2013,6,26,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,605,12,0,901,4,0,0 +2013,10,13,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-10,0,704,-9,0,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-4,0,1739,-8,0,0 +2013,6,16,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1540,112,1,1710,82,1,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1735,1,0,1944,-11,0,0 +2013,9,27,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1101,-9,0,1458,24,1,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1818,68,1,2113,66,1,0 +2013,7,21,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-4,0,1850,-22,0,0 +2013,8,28,3,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,810,-1,0,1000,-34,0,0 +2013,4,1,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,700,-6,0,1515,-15,0,0 +2013,6,28,5,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,-2,0,1538,18,1,0 +2013,8,30,5,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,23,1,1425,9,0,0 +2013,4,19,5,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1447,0,,1639,0,1,1 +2013,4,1,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,22,1,2018,30,1,0 +2013,5,18,6,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1036,-4,0,0 +2013,4,11,4,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1759,-7,0,1949,-26,0,0 +2013,4,4,4,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,620,-3,0,730,-14,0,0 +2013,9,11,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1235,-6,0,1704,-10,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-4,0,1019,3,0,0 +2013,9,7,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,855,-2,0,949,7,0,0 +2013,10,21,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1020,59,1,1242,39,1,0 +2013,7,10,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,730,-1,0,820,-5,0,0 +2013,10,3,4,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,915,0,,1005,0,1,1 +2013,5,13,1,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1318,-1,0,1814,-4,0,0 +2013,6,5,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,214,1,2015,201,1,0 +2013,8,2,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,530,0,0,731,-3,0,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1156,7,0,1654,19,1,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,34,1,45,6,0,0 +2013,7,9,2,OO,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,845,-3,0,1007,-6,0,0 +2013,10,5,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1620,-10,0,1745,-35,0,0 +2013,7,23,2,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,147,1,1705,156,1,0 +2013,7,18,4,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,740,0,0,920,-24,0,0 +2013,7,23,2,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1445,2,0,1725,30,1,0 +2013,8,20,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,2020,-4,0,2302,-7,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1525,22,1,1720,25,1,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,908,-3,0,1517,-10,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1450,-5,0,1730,-18,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1335,0,0,1945,-4,0,0 +2013,6,19,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,845,-1,0,950,-10,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,605,11,0,846,40,1,0 +2013,7,16,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,15,1,1833,16,1,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-5,0,910,-10,0,0 +2013,7,14,7,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1458,11,0,1600,8,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1320,6,0,1425,0,0,0 +2013,8,18,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1756,-3,0,1931,-2,0,0 +2013,4,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1850,7,0,2005,10,0,0 +2013,6,6,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,-2,0,1950,-9,0,0 +2013,4,10,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,152,1,2325,137,1,0 +2013,10,6,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1805,11,0,1930,3,0,0 +2013,4,13,6,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1635,-9,0,1846,-19,0,0 +2013,7,6,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,939,-13,0,1055,-14,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1439,0,0,1533,-9,0,0 +2013,8,7,3,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,835,-5,0,952,17,1,0 +2013,10,29,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,-7,0,1530,-29,0,0 +2013,9,6,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1940,-8,0,2140,-12,0,0 +2013,6,25,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-8,0,930,-25,0,0 +2013,8,27,2,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1830,0,0,2100,0,0,0 +2013,6,21,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-5,0,1035,-1,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1051,-2,0,1157,-11,0,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,-1,0,1755,-5,0,0 +2013,9,17,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2200,-8,0,2312,-10,0,0 +2013,7,22,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,-2,0,2022,-30,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2025,5,0,2311,-3,0,0 +2013,7,14,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1056,41,1,1325,40,1,0 +2013,7,27,6,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,840,-5,0,1706,2,0,0 +2013,7,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1439,65,1,1654,78,1,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,13,0,2215,22,1,0 +2013,6,8,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,955,-3,0,1140,-28,0,0 +2013,7,6,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1850,-7,0,2014,-21,0,0 +2013,7,31,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,-4,0,1910,-11,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,925,-3,0,1050,-6,0,0 +2013,6,25,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-3,0,1237,4,0,0 +2013,4,22,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,500,1,0,700,6,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1119,-1,0,1239,-13,0,0 +2013,7,29,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1739,-9,0,1840,-15,0,0 +2013,5,15,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,80,1,1550,89,1,0 +2013,6,15,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1128,14,0,1735,1,0,0 +2013,8,12,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,18,1,1705,13,0,0 +2013,4,24,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,941,21,1,1148,41,1,0 +2013,7,6,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,6,0,1630,-4,0,0 +2013,6,3,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,0,0,2005,9,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1450,74,1,1735,60,1,0 +2013,6,11,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-7,0,1329,11,0,0 +2013,10,13,7,EV,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,-6,0,1526,-19,0,0 +2013,8,3,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,905,1,0,1020,1,0,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1328,4,0,1819,2,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1205,4,0,1345,-6,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1805,26,1,2038,1,0,0 +2013,5,27,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1015,-7,0,1255,-9,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,4,0,2115,-10,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2025,-3,0,2130,-11,0,0 +2013,9,7,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-2,0,1730,3,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1020,-1,0,1210,22,1,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1803,29,1,2117,60,1,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1835,81,1,2200,85,1,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,3,0,2351,0,0,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,5,0,1935,-6,0,0 +2013,10,31,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,33,1,1105,30,1,0 +2013,6,18,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1737,0,0,1849,-7,0,0 +2013,4,21,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1054,-3,0,0 +2013,8,20,2,OO,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1225,-1,0,1401,-1,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1740,-6,0,2031,-17,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1420,12,0,1945,12,0,0 +2013,4,14,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,72,1,2040,53,1,0 +2013,5,13,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-8,0,945,2,0,0 +2013,8,2,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-4,0,1609,-14,0,0 +2013,8,31,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,945,3,0,1105,-3,0,0 +2013,9,23,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-3,0,2115,-14,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1615,0,0,1855,3,0,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,49,1,40,20,1,0 +2013,10,20,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-2,0,2103,-4,0,0 +2013,5,11,6,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,1,0,2133,-3,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,13,0,2018,12,0,0 +2013,10,13,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-4,0,1510,12,0,0 +2013,5,1,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1116,-7,0,0 +2013,10,25,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,915,2,0,1230,-20,0,0 +2013,5,15,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-4,0,1923,-2,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2200,-3,0,2328,-9,0,0 +2013,9,15,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2105,45,1,2240,44,1,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,37,1,1716,34,1,0 +2013,10,29,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,4,0,1930,-5,0,0 +2013,6,7,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,827,-10,0,0 +2013,6,20,4,OO,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2112,-2,0,2316,-4,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,900,9,0,1010,0,0,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1253,-2,0,1543,3,0,0 +2013,7,16,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,708,-5,0,810,18,1,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2040,0,0,2350,-13,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,2,0,1720,-5,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1335,30,1,1620,11,0,0 +2013,5,25,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,1,0,825,-5,0,0 +2013,8,26,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,0,0,1755,1,0,0 +2013,6,8,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1340,-2,0,1435,-2,0,0 +2013,6,16,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1135,-4,0,1316,-4,0,0 +2013,4,29,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,550,-2,0,805,-5,0,0 +2013,9,30,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,-5,0,2025,-14,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2002,43,1,2159,25,1,0 +2013,5,21,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-4,0,920,17,1,0 +2013,6,19,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,600,-5,0,705,-6,0,0 +2013,8,14,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,-6,0,1350,-14,0,0 +2013,4,10,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-5,0,2014,-3,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1000,-4,0,1147,-10,0,0 +2013,5,30,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-6,0,913,-1,0,0 +2013,9,4,3,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,1010,-3,0,1727,-5,0,0 +2013,4,21,7,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1133,-1,0,1233,-9,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1805,-9,0,2126,-1,0,0 +2013,9,16,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-5,0,1254,-12,0,0 +2013,4,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,12,0,2105,54,1,0 +2013,4,12,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2350,-8,0,613,-25,0,0 +2013,8,21,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-4,0,2140,-9,0,0 +2013,6,14,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,-6,0,2128,41,1,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,153,1,1550,153,1,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1500,20,1,1545,19,1,0 +2013,4,27,6,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1615,-6,0,1915,-16,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1345,0,0,1549,-5,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1940,17,1,55,2,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,5,0,1043,11,0,0 +2013,9,19,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,600,-4,0,850,-6,0,0 +2013,8,22,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,758,-6,0,834,-5,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,840,0,0,1005,-1,0,0 +2013,7,22,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,11,0,1155,7,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1750,17,1,2000,5,0,0 +2013,7,13,6,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1139,9,0,1254,4,0,0 +2013,7,14,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1130,4,0,1720,20,1,0 +2013,9,17,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2055,7,0,2148,16,1,0 +2013,8,7,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-4,0,701,-5,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1739,-7,0,1921,-12,0,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,817,-1,0,1404,-12,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1920,-3,0,2301,-17,0,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,700,-8,0,837,-13,0,0 +2013,10,19,6,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1715,50,1,2105,22,1,0 +2013,9,17,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1708,-8,0,1833,27,1,0 +2013,8,16,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-2,0,1035,-1,0,0 +2013,8,9,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1055,52,1,1220,36,1,0 +2013,7,28,7,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1555,180,1,1740,172,1,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2111,1,0,2247,-26,0,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2252,23,1,636,37,1,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1043,-2,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2111,-1,0,2218,-14,0,0 +2013,7,8,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1208,-2,0,1311,-17,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1925,-7,0,2109,-4,0,0 +2013,5,29,3,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,12,0,1215,32,1,0 +2013,9,5,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1410,-1,0,1645,-39,0,0 +2013,6,23,7,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1512,71,1,1840,78,1,0 +2013,10,28,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2020,0,0,2147,0,0,0 +2013,7,26,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,103,1,1945,95,1,0 +2013,8,27,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2202,-3,0,2255,-21,0,0 +2013,9,5,4,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1713,-9,0,1851,-22,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1125,-1,0,1635,-8,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,-2,0,1902,-21,0,0 +2013,9,20,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,859,-5,0,1049,9,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2000,87,1,20,82,1,0 +2013,8,12,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,550,-2,0,747,-14,0,0 +2013,9,12,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,25,1,1015,17,1,0 +2013,7,26,5,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1000,-2,0,1105,-7,0,0 +2013,8,21,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-6,0,1300,-1,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1950,-2,0,2255,-14,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,624,8,0,858,-13,0,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,0,0,1240,-10,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1815,2,0,1957,-18,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1030,-4,0,1310,-14,0,0 +2013,5,9,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-2,0,2235,-8,0,0 +2013,4,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,847,-4,0,1156,-9,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,52,1,1505,74,1,0 +2013,6,4,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1724,15,1,1929,16,1,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1050,-5,0,1459,27,1,0 +2013,9,10,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1452,4,0,1635,0,0,0 +2013,7,6,6,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-5,0,728,-6,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1135,59,1,1235,70,1,0 +2013,5,25,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1156,-1,0,1320,-9,0,0 +2013,5,18,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1339,15,1,1600,12,0,0 +2013,4,24,3,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,611,-10,0,724,-6,0,0 +2013,4,28,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,14,0,1807,7,0,0 +2013,9,6,5,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,-1,0,1915,-13,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2211,7,0,2318,18,1,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1615,37,1,2224,28,1,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,800,5,0,925,-8,0,0 +2013,9,16,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-8,0,753,2,0,0 +2013,8,22,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,85,1,1758,70,1,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1325,5,0,1720,-4,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,23,1,941,16,1,0 +2013,4,17,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-10,0,1137,6,0,0 +2013,6,10,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-1,0,1530,-8,0,0 +2013,4,15,1,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1710,-5,0,1845,-23,0,0 +2013,9,27,5,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-6,0,1007,-6,0,0 +2013,9,7,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,845,-3,0,1049,-8,0,0 +2013,8,28,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1205,22,1,1310,8,0,0 +2013,8,3,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-5,0,1925,-23,0,0 +2013,5,16,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-8,0,826,-10,0,0 +2013,6,13,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1030,-2,0,1405,11,0,0 +2013,8,20,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,620,-4,0,730,-4,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,713,139,1,1045,118,1,0 +2013,4,19,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2050,155,1,2212,157,1,0 +2013,9,30,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1650,-9,0,1815,-18,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2115,-5,0,2250,-16,0,0 +2013,10,7,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,30,1,1355,15,1,0 +2013,7,1,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-2,0,1659,7,0,0 +2013,8,27,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1200,-11,0,1305,-25,0,0 +2013,5,11,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1730,-4,0,1950,-23,0,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,74,1,1500,76,1,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,741,11,0,910,3,0,0 +2013,9,18,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,36,1,1650,20,1,0 +2013,4,19,5,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1036,-4,0,1155,37,1,0 +2013,4,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,-1,0,1735,-6,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1445,6,0,1610,-6,0,0 +2013,6,1,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1435,-5,0,1538,-6,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1035,-3,0,1250,9,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1705,-2,0,1858,-38,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1835,34,1,2300,85,1,0 +2013,9,26,4,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1835,-8,0,2120,-11,0,0 +2013,6,5,3,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,95,1,1435,92,1,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2035,19,1,2305,0,0,0 +2013,6,15,6,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,12,0,1124,-5,0,0 +2013,4,19,5,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1742,-1,0,1923,10,0,0 +2013,8,23,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,853,7,0,1112,2,0,0 +2013,8,7,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-1,0,1440,2,0,0 +2013,8,19,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1501,15,1,1800,7,0,0 +2013,10,23,3,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,730,-1,0,850,9,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1624,2,0,1735,-15,0,0 +2013,10,1,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1225,-10,0,1555,-22,0,0 +2013,6,10,1,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,710,-5,0,1012,-14,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1528,16,1,1653,3,0,0 +2013,5,5,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1859,144,1,2100,125,1,0 +2013,4,25,4,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,712,3,0,1301,-22,0,0 +2013,4,5,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1345,-10,0,0 +2013,7,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1830,13,0,2124,9,0,0 +2013,4,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2145,0,0,37,-4,0,0 +2013,4,30,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,-5,0,729,-8,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-7,0,1847,-6,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2210,-2,0,2315,0,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2040,9,0,25,-2,0,0 +2013,8,7,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,-9,0,1640,-19,0,0 +2013,10,31,4,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1150,14,0,1330,20,1,0 +2013,5,5,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-2,0,736,-15,0,0 +2013,5,21,2,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,820,-10,0,1058,-3,0,0 +2013,5,22,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1146,-8,0,1433,-1,0,0 +2013,4,21,7,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,116,1,1404,104,1,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,-4,0,1511,-16,0,0 +2013,5,28,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1434,117,1,1626,103,1,0 +2013,8,29,4,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,725,0,0,850,-19,0,0 +2013,8,15,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1925,0,0,2135,1,0,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,-3,0,1120,5,0,0 +2013,7,29,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-2,0,1620,55,1,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1120,13,0,1220,-1,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,945,-1,0,1040,0,0,0 +2013,7,19,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1731,-2,0,1821,-3,0,0 +2013,10,27,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,700,-3,0,1220,-13,0,0 +2013,4,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1600,1,0,1730,-2,0,0 +2013,9,29,7,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,705,-5,0,845,-27,0,0 +2013,8,1,4,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,6,0,758,4,0,0 +2013,6,20,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,0,0,1115,-9,0,0 +2013,9,26,4,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,2020,-9,0,2249,6,0,0 +2013,4,25,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-3,0,1410,-13,0,0 +2013,9,1,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1015,-4,0,1353,-14,0,0 +2013,6,17,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1144,-3,0,2000,-9,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1605,-3,0,1730,-8,0,0 +2013,8,4,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,-7,0,1855,-13,0,0 +2013,4,16,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1235,31,1,0 +2013,8,5,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,709,-8,0,0 +2013,4,3,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1952,-6,0,2131,2,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,4,0,1255,-13,0,0 +2013,9,6,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1143,-7,0,1614,-20,0,0 +2013,6,6,4,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1350,8,0,1644,-3,0,0 +2013,7,19,5,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,825,-1,0,1104,-8,0,0 +2013,9,5,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,911,-6,0,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,0,,2125,0,1,1 +2013,7,1,1,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1610,19,1,1918,77,1,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-4,0,1115,11,0,0 +2013,6,11,2,DL,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,630,-6,0,752,-9,0,0 +2013,7,11,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,68,1,1330,55,1,0 +2013,6,10,1,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,115,-4,0,830,6,0,0 +2013,9,19,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,-5,0,1605,-5,0,0 +2013,9,8,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1708,-1,0,1815,-6,0,0 +2013,10,23,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-12,0,1219,-4,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1240,77,1,1800,86,1,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,954,17,1,1531,9,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1630,-2,0,2325,26,1,0 +2013,7,28,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-4,0,940,-10,0,0 +2013,5,23,4,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2300,9,0,629,10,0,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,4,0,1430,-7,0,0 +2013,6,15,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-4,0,1740,-9,0,0 +2013,6,3,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,711,-10,0,845,-5,0,0 +2013,6,7,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-2,0,2047,-7,0,0 +2013,4,19,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1430,-3,0,1545,-7,0,0 +2013,5,20,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,15,1,1050,-6,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,54,1,1819,30,1,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1451,-2,0,1603,3,0,0 +2013,4,24,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-10,0,714,-27,0,0 +2013,6,23,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1312,17,1,1500,1,0,0 +2013,9,28,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,-4,0,1933,25,1,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,755,-8,0,914,-22,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2055,-2,0,2155,2,0,0 +2013,4,24,3,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1243,-7,0,1503,-17,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1855,19,1,2240,6,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,13,0,1720,36,1,0 +2013,8,5,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-2,0,2025,3,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2039,-1,0,2144,-10,0,0 +2013,4,22,1,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1015,6,0,1145,-3,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,41,1,1507,22,1,0 +2013,7,6,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,749,77,1,1110,67,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,15,1,2340,12,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,830,-10,0,952,-18,0,0 +2013,10,4,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1934,-1,0,2149,-4,0,0 +2013,7,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,42,1,1550,38,1,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,929,5,0,1052,21,1,0 +2013,4,19,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1730,124,1,1859,223,1,0 +2013,6,20,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1123,35,1,1336,50,1,0 +2013,6,14,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-5,0,803,-25,0,0 +2013,4,19,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,-11,0,615,3,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,600,0,0,1110,-4,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,846,-2,0,1125,-13,0,0 +2013,10,23,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,804,1,0,1320,-5,0,0 +2013,9,30,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1910,26,1,2203,1,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,-3,0,1627,-15,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1510,-5,0,1634,-10,0,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,-3,0,1032,-7,0,0 +2013,5,21,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,0,0,935,-6,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1135,-2,0,1240,-9,0,0 +2013,9,1,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1225,51,1,1335,48,1,0 +2013,7,26,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,0,0,1737,23,1,0 +2013,10,17,4,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1113,8,0,1412,-5,0,0 +2013,9,10,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,56,1,724,59,1,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2206,0,0,2303,-19,0,0 +2013,8,15,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1748,8,0,1940,1,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-2,0,1140,3,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1000,15,1,1212,-2,0,0 +2013,4,9,2,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,941,3,0,0 +2013,8,11,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1615,-6,0,0 +2013,10,5,6,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1645,-3,0,1913,-2,0,0 +2013,10,31,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,741,-6,0,1519,-21,0,0 +2013,7,31,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,5,0,1442,13,0,0 +2013,6,14,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-1,0,1501,-20,0,0 +2013,8,23,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,1,0,1550,-13,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1735,3,0,1845,-15,0,0 +2013,7,1,1,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-2,0,1540,2,0,0 +2013,7,14,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1248,-2,0,1609,-7,0,0 +2013,9,4,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1138,26,1,1710,32,1,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,0,0,1058,-2,0,0 +2013,4,1,1,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2129,0,0,540,-24,0,0 +2013,8,12,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,955,14,0,1600,21,1,0 +2013,6,24,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1705,-2,0,1835,-9,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-5,0,1305,5,0,0 +2013,7,16,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,900,6,0,0 +2013,9,8,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-9,0,900,-15,0,0 +2013,10,20,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1055,-1,0,1205,-4,0,0 +2013,10,22,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-18,0,750,-22,0,0 +2013,4,25,4,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-4,0,1834,-9,0,0 +2013,6,3,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2019,-9,0,2245,-5,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,25,1,2155,45,1,0 +2013,10,23,3,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,850,0,0,1100,1,0,0 +2013,4,1,1,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-4,0,1218,-6,0,0 +2013,7,27,6,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,840,-4,0,1355,-4,0,0 +2013,5,6,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-6,0,1106,0,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,-3,0,1452,-27,0,0 +2013,9,18,3,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1951,-2,0,2215,-12,0,0 +2013,5,26,7,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,0,0,1400,-21,0,0 +2013,6,18,2,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1124,-2,0,0 +2013,9,17,2,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2015,-7,0,2105,-13,0,0 +2013,5,2,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,630,-2,0,730,-12,0,0 +2013,8,17,6,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,-10,0,1640,-19,0,0 +2013,8,10,6,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1919,51,1,44,45,1,0 +2013,7,2,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,13,0,2155,5,0,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-5,0,828,-4,0,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-13,0,2116,6,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,-8,0,1000,-29,0,0 +2013,8,7,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,-5,0,1821,-4,0,0 +2013,4,30,2,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1706,5,0,1928,7,0,0 +2013,6,13,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,143,1,2340,130,1,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,-3,0,1342,-9,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1347,-4,0,1417,-5,0,0 +2013,9,5,4,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,12,0,740,16,1,0 +2013,7,25,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1335,16,1,1500,7,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1328,-2,0,1800,-1,0,0 +2013,7,9,2,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1656,-9,0,1852,-7,0,0 +2013,10,23,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,0,0,855,-11,0,0 +2013,5,15,3,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,841,-1,0,1032,-3,0,0 +2013,5,30,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,815,-4,0,0 +2013,4,8,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,12,0,1940,13,0,0 +2013,8,31,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1355,1,0,1455,7,0,0 +2013,10,19,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-3,0,1255,1,0,0 +2013,8,26,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1130,-7,0,1347,6,0,0 +2013,6,26,3,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,208,1,2155,204,1,0 +2013,7,11,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,75,1,1825,70,1,0 +2013,7,26,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-1,0,810,-14,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,2145,-6,0,2333,-2,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,650,-2,0,820,-9,0,0 +2013,7,8,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,930,-7,0,1054,-3,0,0 +2013,9,27,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,905,-9,0,1130,-18,0,0 +2013,8,15,4,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,-17,0,1153,-5,0,0 +2013,4,21,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-3,0,1752,-14,0,0 +2013,9,5,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1053,-6,0,1210,-23,0,0 +2013,9,29,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,705,-5,0,910,3,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,-1,0,923,-11,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,734,-2,0,926,-9,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2208,2,0,2,-11,0,0 +2013,6,7,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1539,-6,0,1640,-7,0,0 +2013,9,4,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-8,0,848,-9,0,0 +2013,10,30,3,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1715,4,0,1950,-6,0,0 +2013,5,27,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1116,-8,0,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,-2,0,818,-13,0,0 +2013,10,6,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-2,0,1743,3,0,0 +2013,10,14,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1016,-11,0,0 +2013,6,5,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,752,-10,0,1022,5,0,0 +2013,5,26,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1748,-9,0,2040,-18,0,0 +2013,6,27,4,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,0,0,1605,-27,0,0 +2013,8,23,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1305,2,0,1500,-8,0,0 +2013,7,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,32,1,1120,33,1,0 +2013,10,16,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1700,-1,0,1745,-8,0,0 +2013,4,13,6,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1350,33,1,1440,25,1,0 +2013,5,24,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1515,8,0,1530,22,1,0 +2013,5,29,3,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-6,0,1600,-10,0,0 +2013,5,16,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1940,-7,0,2113,-24,0,0 +2013,6,11,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1606,-3,0,1821,1,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,18,1,2035,17,1,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-4,0,1003,-11,0,0 +2013,10,31,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,32,1,1637,44,1,0 +2013,7,20,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,6,0,1830,6,0,0 +2013,5,31,5,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1415,-1,0,1640,-4,0,0 +2013,10,31,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,630,-1,0,755,56,1,0 +2013,5,4,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1215,-2,0,1430,-5,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1230,118,1,1705,107,1,0 +2013,9,27,5,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-2,0,1805,-28,0,0 +2013,8,22,4,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1452,3,0,1636,-13,0,0 +2013,10,4,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1812,-1,0,1955,-8,0,0 +2013,10,16,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1105,-11,0,1308,-3,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1357,-7,0,1629,-7,0,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1330,-7,0,1704,19,1,0 +2013,8,7,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,30,1,1734,31,1,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2013,13,0,2152,-1,0,0 +2013,5,23,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1600,85,1,1615,85,1,0 +2013,10,27,7,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1838,-8,0,1942,-20,0,0 +2013,6,3,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,57,1,1213,63,1,0 +2013,10,1,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,-7,0,2207,-14,0,0 +2013,4,22,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,610,1,0,935,3,0,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2225,-8,0,2347,17,1,0 +2013,5,12,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-8,0,2227,3,0,0 +2013,6,3,1,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1023,-8,0,1305,-1,0,0 +2013,5,13,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-1,0,1800,21,1,0 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1100,10,0,1530,-1,0,0 +2013,9,5,4,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,840,-7,0,1648,3,0,0 +2013,7,13,6,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1543,-1,0,1829,11,0,0 +2013,8,16,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2124,2,0,2317,1,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-1,0,849,-7,0,0 +2013,8,18,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,745,-3,0,805,-9,0,0 +2013,7,20,6,EV,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,36,1,1410,25,1,0 +2013,6,15,6,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,27,1,1425,21,1,0 +2013,6,24,1,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-4,0,1355,-3,0,0 +2013,8,27,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1212,-5,0,1503,-28,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1251,1,0,1903,26,1,0 +2013,5,13,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,709,-4,0,1531,59,1,0 +2013,7,17,3,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,9,0,2255,14,0,0 +2013,8,3,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,830,16,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,815,1,0,1030,-24,0,0 +2013,6,9,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1810,7,0,1935,10,0,0 +2013,8,18,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1541,19,1,1835,3,0,0 +2013,8,20,2,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1455,9,0,1720,3,0,0 +2013,9,18,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,-4,0,1110,-15,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1111,-4,0,1451,-19,0,0 +2013,9,8,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1455,-2,0,1750,5,0,0 +2013,10,4,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2035,131,1,2145,127,1,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1142,-3,0,1258,-30,0,0 +2013,6,6,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1701,-2,0,1918,9,0,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,720,-2,0,1050,-10,0,0 +2013,5,28,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1420,-2,0,1717,-12,0,0 +2013,8,25,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,26,1,1850,19,1,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2010,0,0,2250,-13,0,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,900,-3,0,1025,-17,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,14,0,1510,19,1,0 +2013,5,19,7,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1926,60,1,2030,51,1,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1034,3,0,1535,-6,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-6,0,1346,-3,0,0 +2013,9,5,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,-4,0,2039,-13,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1100,1,0,1441,-7,0,0 +2013,6,25,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1905,0,,2035,0,1,1 +2013,6,4,2,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1240,21,1,1815,14,0,0 +2013,6,15,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1550,-2,0,1856,-11,0,0 +2013,5,8,3,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1039,-5,0,1622,-21,0,0 +2013,5,10,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,15,1,1438,13,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1945,3,0,2316,-11,0,0 +2013,8,29,4,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1005,-5,0,1455,-16,0,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1707,-2,0,2257,-19,0,0 +2013,7,8,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1400,19,1,1540,45,1,0 +2013,7,23,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,810,0,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1310,2,0,1600,-8,0,0 +2013,4,22,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,600,0,0,801,-8,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1625,0,0,1903,-10,0,0 +2013,8,28,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,753,-1,0,1118,0,0,0 +2013,8,26,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,3,0,1044,-9,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,-6,0,1950,-8,0,0 +2013,7,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,730,-1,0,1035,-9,0,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,726,-2,0,905,-8,0,0 +2013,5,3,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,-1,0,1700,3,0,0 +2013,9,28,6,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1131,-11,0,1355,-16,0,0 +2013,8,16,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1509,-1,0,1850,-18,0,0 +2013,6,11,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,15,1,2310,0,0,0 +2013,9,25,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1900,-1,0,2042,-21,0,0 +2013,10,2,3,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-6,0,2050,31,1,0 +2013,9,7,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1645,-3,0,1725,-7,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1120,-4,0,1258,-19,0,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1104,22,1,1344,-8,0,0 +2013,10,25,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1823,-8,0,0 +2013,10,3,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,0,0,2022,-2,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1609,-11,0,0 +2013,8,4,7,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1407,-9,0,1613,-9,0,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,700,1,0,830,4,0,0 +2013,6,8,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1205,-4,0,2005,-16,0,0 +2013,6,1,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1752,72,1,1840,98,1,0 +2013,7,19,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1006,-5,0,1105,-24,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-4,0,1159,-25,0,0 +2013,9,18,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,-3,0,835,-15,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1615,5,0,1720,-4,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1620,-3,0,1825,-14,0,0 +2013,8,11,7,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1215,-4,0,1710,-16,0,0 +2013,9,1,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,600,2,0,738,-16,0,0 +2013,9,28,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,800,-4,0,925,-5,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,68,1,2035,80,1,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,43,1,1634,18,1,0 +2013,7,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2005,0,0,2200,2,0,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,842,-2,0,1010,-1,0,0 +2013,10,10,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,7,0,1940,5,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-5,0,1725,-23,0,0 +2013,4,30,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-6,0,827,2,0,0 +2013,7,8,1,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1531,85,1,1855,71,1,0 +2013,6,6,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1213,37,1,1501,29,1,0 +2013,7,6,6,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1650,0,0,1814,-11,0,0 +2013,9,16,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1106,30,1,1220,29,1,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1205,-3,0,1610,17,1,0 +2013,10,1,2,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,855,-14,0,1036,-25,0,0 +2013,9,10,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,55,1,1206,62,1,0 +2013,10,3,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-3,0,1335,-12,0,0 +2013,5,11,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-4,0,1810,10,0,0 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,7,0,1330,-2,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1110,4,0,1220,-5,0,0 +2013,6,21,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1400,0,0,1555,27,1,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,9,0,1922,-5,0,0 +2013,6,10,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,5,0,1825,-5,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,5,0,2004,-14,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2100,24,1,2240,4,0,0 +2013,10,14,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1935,45,1,2010,38,1,0 +2013,7,21,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1925,-2,0,2245,-8,0,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,847,4,0,1325,-9,0,0 +2013,9,28,6,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1002,-5,0,1323,-9,0,0 +2013,7,16,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-2,0,1154,-8,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1219,-3,0,1249,-16,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,-1,0,1605,-6,0,0 +2013,7,2,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-9,0,840,-17,0,0 +2013,8,8,4,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-1,0,1213,-12,0,0 +2013,8,26,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1023,-7,0,1815,1,0,0 +2013,9,3,2,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,750,3,0,1345,11,0,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,834,-3,0,1002,-25,0,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,0,0,1447,6,0,0 +2013,9,17,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,-1,0,939,-12,0,0 +2013,6,23,7,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,645,-7,0,740,-12,0,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1910,29,1,2015,108,1,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1745,67,1,1933,86,1,0 +2013,5,20,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1830,138,1,2010,120,1,0 +2013,8,26,1,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1620,157,1,1853,125,1,0 +2013,7,17,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-10,0,1255,-11,0,0 +2013,9,22,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,17,1,2130,15,1,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1755,0,,1929,0,1,1 +2013,8,21,3,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,2002,-9,0,2125,-22,0,0 +2013,6,16,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1550,3,0,1723,-5,0,0 +2013,5,14,2,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1115,11,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2050,-1,0,2150,-10,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,815,-24,0,0 +2013,9,17,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1115,-4,0,1408,-14,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,815,15,1,1000,-1,0,0 +2013,8,15,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1130,166,1,1354,158,1,0 +2013,8,12,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1325,24,1,1450,16,1,0 +2013,5,7,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-9,0,1417,-17,0,0 +2013,9,4,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,2054,13,0,0 +2013,6,16,7,9E,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-8,0,821,4,0,0 +2013,10,22,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1230,-1,0,1422,20,1,0 +2013,7,28,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,13,0,1735,7,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1259,-3,0,1709,-2,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,600,-3,0,734,-14,0,0 +2013,7,1,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1425,18,1,1545,3,0,0 +2013,5,28,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,0,0,810,-5,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1039,-6,0,1622,-35,0,0 +2013,6,9,7,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1130,59,1,1350,29,1,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1130,5,0,1445,0,0,0 +2013,6,2,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,800,0,0,1050,-11,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2125,-3,0,2300,-12,0,0 +2013,4,15,1,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1302,-7,0,1529,-25,0,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,2,0,1155,3,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1015,8,0,1200,0,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,840,15,1,1140,11,0,0 +2013,10,5,6,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,620,0,0,1220,-24,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,2035,111,1,15,113,1,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1520,-4,0,1810,-30,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1130,5,0,1515,-7,0,0 +2013,7,15,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1255,20,1,1600,17,1,0 +2013,6,4,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1010,8,0,1200,-9,0,0 +2013,10,28,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,16,1,1005,10,0,0 +2013,4,8,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,841,-8,0,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,-3,0,1215,-17,0,0 +2013,9,4,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,804,-7,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1705,0,0,50,-7,0,0 +2013,6,26,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1115,-6,0,1305,-15,0,0 +2013,8,24,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-4,0,957,-33,0,0 +2013,7,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1530,131,1,1645,129,1,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1035,70,1,1430,53,1,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,9,0,943,0,0,0 +2013,8,3,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1220,6,0,1405,0,0,0 +2013,5,25,6,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1748,-2,0,2311,-8,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1824,-3,0,29,-8,0,0 +2013,6,25,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,0,0,1255,-5,0,0 +2013,6,27,4,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1515,-2,0,1647,-7,0,0 +2013,6,22,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1310,-1,0,1441,-4,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1830,74,1,2110,52,1,0 +2013,8,31,6,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-2,0,1015,-16,0,0 +2013,10,31,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1420,62,1,1559,65,1,0 +2013,4,15,1,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1300,1,0,1846,-13,0,0 +2013,8,3,6,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2015,-3,0,2348,-24,0,0 +2013,4,17,3,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1515,0,0,1750,-9,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1336,42,1,2204,60,1,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1350,-2,0,1605,15,1,0 +2013,8,25,7,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,840,-5,0,1030,-21,0,0 +2013,7,3,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1220,1,0,1319,-10,0,0 +2013,5,13,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1705,-5,0,1910,-6,0,0 +2013,10,27,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1615,95,1,2310,68,1,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,834,-8,0,935,-16,0,0 +2013,7,19,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,48,1,1940,41,1,0 +2013,5,10,5,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1915,19,1,2015,3,0,0 +2013,4,14,7,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,-4,0,1900,-21,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,0,0,1705,-3,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1415,33,1,1625,29,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,810,-5,0,927,-10,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2110,12,0,2245,5,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,2010,-4,0,2238,-17,0,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,-3,0,2230,-7,0,0 +2013,6,16,7,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-8,0,1643,0,0,0 +2013,6,27,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-7,0,2047,12,0,0 +2013,9,12,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,910,6,0,1220,-14,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1415,-2,0,1735,-16,0,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,2,0,1450,-6,0,0 +2013,8,8,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-3,0,2110,-16,0,0 +2013,9,1,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-1,0,1155,-5,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1130,12,0,1405,-10,0,0 +2013,7,26,5,EV,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1354,-8,0,1708,-19,0,0 +2013,7,12,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,932,-2,0,1123,-17,0,0 +2013,9,16,1,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,650,-3,0,917,-6,0,0 +2013,7,27,6,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,4,0,1303,-8,0,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2215,-2,0,2332,-11,0,0 +2013,10,23,3,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1035,23,1,1305,27,1,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1830,1,0,2220,-4,0,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-6,0,2020,-6,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,945,7,0,1825,-1,0,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-4,0,2050,-9,0,0 +2013,6,14,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1845,-4,0,2030,-21,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,11,0,2135,14,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,3,0,2055,-19,0,0 +2013,5,21,2,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1710,42,1,1836,43,1,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,-1,0,1118,5,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1655,1,0,1805,-3,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,44,1,2359,23,1,0 +2013,4,22,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1337,-4,0,1655,-15,0,0 +2013,5,17,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-2,0,1605,-11,0,0 +2013,9,9,1,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,630,-1,0,1456,3,0,0 +2013,5,28,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,605,-4,0,846,-9,0,0 +2013,6,25,2,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,930,-6,0,1127,-18,0,0 +2013,8,18,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2105,16,1,2240,11,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,0,0,1141,-12,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1544,-4,0,1914,-5,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1124,5,0,1215,16,1,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1030,-3,0,1121,3,0,0 +2013,4,3,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1810,-7,0,2037,-20,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-5,0,1748,-20,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-4,0,2152,-4,0,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1247,-2,0,1835,15,1,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1459,8,0,1804,1,0,0 +2013,8,10,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,5,0,840,5,0,0 +2013,9,23,1,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,-8,0,1708,-25,0,0 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2310,-7,0,634,19,1,0 +2013,4,16,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,10,0,1354,11,0,0 +2013,9,27,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1920,-4,0,2011,4,0,0 +2013,8,14,3,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,32,1,2105,37,1,0 +2013,8,1,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2140,-4,0,2237,-3,0,0 +2013,4,13,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-2,0,1345,0,0,0 +2013,9,14,6,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,640,-2,0,910,-8,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,940,2,0,1105,-11,0,0 +2013,4,22,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1340,35,1,1445,36,1,0 +2013,5,22,3,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,5,0,937,6,0,0 +2013,4,30,2,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1431,6,0,1544,2,0,0 +2013,10,1,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1210,-10,0,1355,11,0,0 +2013,9,15,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1925,-11,0,2030,-10,0,0 +2013,7,30,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,1,0,1457,-4,0,0 +2013,5,25,6,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,642,-4,0,901,-13,0,0 +2013,8,1,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,5,0,1200,2,0,0 +2013,5,23,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1000,-3,0,1105,-7,0,0 +2013,8,30,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,709,-2,0,755,-13,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,935,18,1,1620,27,1,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,84,1,1910,84,1,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-1,0,1232,3,0,0 +2013,6,19,3,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1915,0,0,2131,-2,0,0 +2013,4,30,2,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1830,38,1,2150,-2,0,0 +2013,10,17,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,900,5,0,1150,-4,0,0 +2013,6,2,7,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1521,0,0,1617,-3,0,0 +2013,5,4,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1523,-8,0,1814,8,0,0 +2013,7,30,2,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1645,-1,0,1825,-8,0,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-4,0,2020,-4,0,0 +2013,9,20,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,748,-10,0,0 +2013,5,11,6,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1900,-1,0,2125,1,0,0 +2013,6,20,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,740,2,0,0 +2013,7,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,605,-5,0,700,-5,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1704,118,1,1941,116,1,0 +2013,6,20,4,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1335,4,0,1635,7,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,-4,0,1720,-7,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,815,15,1,930,11,0,0 +2013,6,23,7,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1455,-5,0,1800,-10,0,0 +2013,7,18,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1009,-6,0,1143,-17,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1045,-3,0,1210,-11,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1200,-1,0,1310,-11,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1350,6,0,1507,11,0,0 +2013,10,11,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1215,22,1,1400,14,0,0 +2013,9,18,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-7,0,911,-29,0,0 +2013,9,23,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,730,0,0,1130,-21,0,0 +2013,6,29,6,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,17,1,2046,9,0,0 +2013,5,4,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1331,-1,0,1456,20,1,0 +2013,7,25,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1035,23,1,1210,12,0,0 +2013,7,18,4,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1400,-2,0,1550,-21,0,0 +2013,10,28,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,935,-4,0,1143,-6,0,0 +2013,5,28,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,5,0,1225,-3,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1435,-1,0,1625,-6,0,0 +2013,7,31,3,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1850,7,0,35,-4,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,855,0,,1210,0,1,1 +2013,8,7,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,-1,0,1330,0,0,0 +2013,9,15,7,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,56,1,1235,50,1,0 +2013,8,23,5,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,657,-7,0,1032,-17,0,0 +2013,6,23,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,-2,0,620,-16,0,0 +2013,9,19,4,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1737,33,1,1907,27,1,0 +2013,5,15,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,750,1,0,900,-5,0,0 +2013,5,10,5,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,920,-1,0,1150,-7,0,0 +2013,6,26,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2341,9,0,730,19,1,0 +2013,7,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1725,6,0,1830,7,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,10,0,1837,25,1,0 +2013,7,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,-6,0,2223,-8,0,0 +2013,5,17,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,-5,0,1403,-7,0,0 +2013,7,12,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1332,-8,0,1415,-16,0,0 +2013,7,20,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,64,1,1158,44,1,0 +2013,8,4,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,753,-15,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1600,28,1,2325,74,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1930,10,0,2100,12,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1445,22,1,1600,21,1,0 +2013,10,14,1,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,800,-4,0,1048,-29,0,0 +2013,7,13,6,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1145,2,0,1340,-14,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1519,15,1,2357,-8,0,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,930,4,0,1210,7,0,0 +2013,4,8,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,1,0,930,-5,0,0 +2013,10,2,3,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2057,-13,0,2236,-17,0,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,615,2,0,1130,-3,0,0 +2013,10,29,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,908,-4,0,1204,-36,0,0 +2013,9,25,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,-11,0,2214,-7,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,910,-2,0,1035,-3,0,0 +2013,10,19,6,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,645,136,1,840,120,1,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,912,-6,0,1138,-20,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-2,0,1948,-13,0,0 +2013,5,29,3,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,930,-13,0,0 +2013,7,20,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1134,2,0,1244,6,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1018,4,0,1449,0,0,0 +2013,8,18,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1526,-3,0,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,72,1,1740,79,1,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1936,124,1,2110,111,1,0 +2013,7,15,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1237,-6,0,1359,-9,0,0 +2013,10,22,2,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,4,0,1205,2,0,0 +2013,10,21,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1948,9,0,2331,-18,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1202,16,1,1435,18,1,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-6,0,1410,-4,0,0 +2013,9,22,7,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1633,3,0,1923,8,0,0 +2013,4,12,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1230,17,1,1545,31,1,0 +2013,10,15,2,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,-2,0,810,-6,0,0 +2013,8,8,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1900,12,0,2110,8,0,0 +2013,7,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1530,2,0,1825,-11,0,0 +2013,8,20,2,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1602,-4,0,1744,-31,0,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1030,34,1,1121,35,1,0 +2013,10,18,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,15,1,1000,21,1,0 +2013,7,30,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1607,-4,0,1720,-2,0,0 +2013,4,24,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1232,11,0,1519,-2,0,0 +2013,7,17,3,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1659,-2,0,1853,-15,0,0 +2013,8,1,4,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1543,12,0,1831,87,1,0 +2013,7,10,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1728,-6,0,1802,-5,0,0 +2013,10,16,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2105,-2,0,2235,-13,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1605,-5,0,1725,-10,0,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,955,-6,0,1600,8,0,0 +2013,7,31,3,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,3,0,1805,-2,0,0 +2013,7,7,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1116,-13,0,1429,-29,0,0 +2013,4,28,7,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1025,-1,0,1210,11,0,0 +2013,4,26,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1630,1,0,1800,-9,0,0 +2013,10,1,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,6,0,1940,-2,0,0 +2013,4,23,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1023,8,0,1124,-4,0,0 +2013,9,6,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1230,9,0,1410,-8,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1840,63,1,2052,41,1,0 +2013,8,28,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,907,-2,0,1003,6,0,0 +2013,4,27,6,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,800,0,0,1151,-20,0,0 +2013,8,4,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2155,-3,0,43,-8,0,0 +2013,4,22,1,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,701,-11,0,0 +2013,6,8,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1145,1,0,1450,-2,0,0 +2013,6,10,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,17,1,1355,7,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-5,0,1019,-18,0,0 +2013,9,14,6,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1109,0,0,1220,4,0,0 +2013,4,19,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,710,-7,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1004,-8,0,1325,-26,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2100,-3,0,2212,-18,0,0 +2013,4,15,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1315,-3,0,1459,-9,0,0 +2013,7,27,6,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,900,-6,0,1357,-10,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,10,0,1455,9,0,0 +2013,6,24,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,903,11,0,1020,23,1,0 +2013,5,18,6,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-3,0,1858,-9,0,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1120,3,0,1309,9,0,0 +2013,6,8,6,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,836,-5,0,1023,-7,0,0 +2013,5,8,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1754,-6,0,1914,-13,0,0 +2013,4,19,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,925,80,1,1759,82,1,0 +2013,8,16,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,925,-1,0,1025,-6,0,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,1030,-4,0,1745,-32,0,0 +2013,4,7,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,2,0,2006,-13,0,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1415,66,1,1534,58,1,0 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1700,35,1,1830,28,1,0 +2013,9,10,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,-4,0,2157,-25,0,0 +2013,5,29,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2255,14,0,607,24,1,0 +2013,10,8,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-2,0,1044,-4,0,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1155,35,1,1700,35,1,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1232,-6,0,1822,-7,0,0 +2013,10,7,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,745,-8,0,1117,-24,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,755,0,0,845,-1,0,0 +2013,6,4,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,852,-5,0,1229,-12,0,0 +2013,9,30,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1125,6,0,1223,-2,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1253,28,1,1614,31,1,0 +2013,10,20,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1545,19,1,1834,13,0,0 +2013,5,3,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2037,39,1,2226,30,1,0 +2013,9,25,3,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,7,0,1415,-9,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1912,-4,0,2150,26,1,0 +2013,9,22,7,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,-12,0,1946,-22,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,-4,0,1805,-16,0,0 +2013,7,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,955,0,0,1054,-8,0,0 +2013,6,9,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,9,0,1121,18,1,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,0,0,1040,-21,0,0 +2013,4,29,1,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1036,-4,0,1155,-13,0,0 +2013,9,13,5,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,-2,0,1925,-11,0,0 +2013,9,21,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,905,-3,0,1249,1,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,955,0,0,1100,8,0,0 +2013,8,26,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-9,0,1229,-11,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1745,-2,0,1939,-17,0,0 +2013,10,9,3,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1730,27,1,1946,12,0,0 +2013,4,1,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1934,6,0,2101,-1,0,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1335,0,0,1435,1,0,0 +2013,4,29,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,-2,0,1125,-8,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1825,120,1,2043,113,1,0 +2013,6,15,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,75,1,1945,52,1,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,2,0,1028,5,0,0 +2013,8,24,6,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,935,-3,0,1129,-14,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1312,-3,0,1411,-14,0,0 +2013,5,19,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1410,-8,0,1430,-17,0,0 +2013,9,9,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1143,167,1,1256,165,1,0 +2013,9,17,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1412,17,1,1544,25,1,0 +2013,7,16,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,855,-3,0,1156,-33,0,0 +2013,6,18,2,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1227,-4,0,1455,-4,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1314,1,0,1632,-7,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,740,29,1,840,36,1,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-1,0,1914,50,1,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1340,77,1,1445,68,1,0 +2013,4,24,3,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,2,0,859,12,0,0 +2013,5,12,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,-6,0,1505,-3,0,0 +2013,10,31,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,28,1,2025,33,1,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,132,1,2335,117,1,0 +2013,8,24,6,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1410,-6,0,1545,-34,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1240,21,1,1330,12,0,0 +2013,4,19,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1405,41,1,1530,42,1,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1650,3,0,1805,0,0,0 +2013,6,21,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-4,0,2031,41,1,0 +2013,7,4,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,521,1,1033,524,1,0 +2013,4,28,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1925,-6,0,2300,-38,0,0 +2013,6,28,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1045,-4,0,1145,1,0,0 +2013,8,22,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,3,0,1933,16,1,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,740,15,1,1010,10,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,955,204,1,1253,178,1,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1116,-5,0,1403,-8,0,0 +2013,9,10,2,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1614,-5,0,1909,-3,0,0 +2013,9,25,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-6,0,2214,-8,0,0 +2013,6,7,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-5,0,1446,-4,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1345,8,0,1435,8,0,0 +2013,9,7,6,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1848,-9,0,1958,-6,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,-5,0,1015,-9,0,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,2,0,1420,17,1,0 +2013,8,19,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1257,-4,0,1830,-3,0,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,0,0,1710,13,0,0 +2013,9,15,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1430,-5,0,1551,-1,0,0 +2013,7,9,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1923,65,1,2118,80,1,0 +2013,7,14,7,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1537,26,1,1722,4,0,0 +2013,8,8,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1349,87,1,1519,83,1,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,9,0,1740,3,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,815,24,1,1045,25,1,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1230,22,1,1350,15,1,0 +2013,7,10,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,840,11,0,1115,0,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1500,17,1,1605,14,0,0 +2013,4,18,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,700,-6,0,941,-11,0,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1005,-2,0,1552,14,0,0 +2013,10,30,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1236,-6,0,1450,-8,0,0 +2013,8,9,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1215,-1,0,1400,-14,0,0 +2013,9,20,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,725,-3,0,745,-12,0,0 +2013,8,9,5,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,955,-3,0,1140,-15,0,0 +2013,8,12,1,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1954,87,1,2103,81,1,0 +2013,5,7,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,3,0,2045,2,0,0 +2013,4,10,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1218,-2,0,1340,5,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,0,0,903,-24,0,0 +2013,6,20,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,13,0,1650,10,0,0 +2013,4,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,-6,0,1539,-13,0,0 +2013,6,9,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1015,-5,0,1253,-7,0,0 +2013,8,19,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1644,1,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,555,-5,0,1150,-23,0,0 +2013,4,4,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-4,0,1122,-10,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,900,-1,0,1255,-14,0,0 +2013,6,30,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,33,1,2324,25,1,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1955,-4,0,2125,-31,0,0 +2013,5,23,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1944,4,0,2135,-2,0,0 +2013,4,6,6,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1339,-2,0,1450,-7,0,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-2,0,1107,-10,0,0 +2013,7,18,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1945,-6,0,2115,-9,0,0 +2013,4,17,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,0,,2118,0,1,1 +2013,7,14,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,600,-6,0,858,-18,0,0 +2013,4,8,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,815,-3,0,1048,-17,0,0 +2013,5,4,6,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-3,0,1140,-19,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,12,0,1450,2,0,0 +2013,4,17,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2150,32,1,2305,25,1,0 +2013,9,4,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,805,-6,0,1101,-34,0,0 +2013,4,18,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,0,0,2025,8,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-2,0,2209,3,0,0 +2013,6,17,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,550,3,0,740,-6,0,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1205,108,1,1428,90,1,0 +2013,9,15,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,2,0,1915,-9,0,0 +2013,9,25,3,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2130,2,0,2350,-5,0,0 +2013,4,9,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,-6,0,1355,-14,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,1,0,1555,-16,0,0 +2013,4,11,4,EV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1725,30,1,1912,64,1,0 +2013,5,8,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,-2,0,1230,-1,0,0 +2013,4,10,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-5,0,1009,2,0,0 +2013,7,28,7,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,8,0,1740,-7,0,0 +2013,5,19,7,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,720,-3,0,940,-18,0,0 +2013,9,27,5,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-2,0,955,-3,0,0 +2013,4,8,1,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1105,-2,0,1448,0,0,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-6,0,1133,8,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,17,1,2255,64,1,0 +2013,9,4,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,-5,0,830,3,0,0 +2013,9,5,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1905,16,1,2005,4,0,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,852,-5,0,1208,-40,0,0 +2013,8,28,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-8,0,825,-10,0,0 +2013,6,4,2,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-4,0,855,15,1,0 +2013,6,2,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1825,-8,0,2009,11,0,0 +2013,6,3,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-8,0,2124,-8,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1135,-3,0,1300,-9,0,0 +2013,10,16,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,30,1,2150,14,0,0 +2013,5,23,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1637,8,0,1815,-1,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1954,1,0,2112,11,0,0 +2013,6,14,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,955,-9,0,1121,-6,0,0 +2013,8,22,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,66,1,1751,77,1,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1055,6,0,1250,5,0,0 +2013,6,28,5,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-4,0,1541,3,0,0 +2013,10,2,3,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,-5,0,747,-23,0,0 +2013,10,21,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-10,0,940,-2,0,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,625,-2,0,900,-17,0,0 +2013,4,3,3,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,820,-8,0,956,4,0,0 +2013,5,15,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1108,0,0,1704,-3,0,0 +2013,7,9,2,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,-8,0,1340,-6,0,0 +2013,8,27,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,900,4,0,1114,-5,0,0 +2013,8,26,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,820,-2,0,945,-2,0,0 +2013,10,30,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-1,0,1939,4,0,0 +2013,10,2,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,800,-8,0,819,1,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,56,1,1730,46,1,0 +2013,10,9,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1715,-5,0,2235,-26,0,0 +2013,10,28,1,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,605,-4,0,755,-8,0,0 +2013,10,23,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2200,-3,0,2359,6,0,0 +2013,7,24,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,0,0,1900,3,0,0 +2013,5,24,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,12,0,2315,7,0,0 +2013,6,25,2,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,0,,749,0,1,1 +2013,8,22,4,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,1340,11,0,0 +2013,6,18,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1001,-3,0,1100,0,0,0 +2013,10,4,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1630,-3,0,1735,1,0,0 +2013,6,24,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,720,0,0,741,-10,0,0 +2013,10,25,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,716,-2,0,953,-11,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,-1,0,1030,-12,0,0 +2013,7,14,7,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,7,0,2005,-40,0,0 +2013,7,20,6,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,7,0,1110,7,0,0 +2013,4,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2350,-5,0,613,-10,0,0 +2013,4,9,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,642,-1,0,740,2,0,0 +2013,6,29,6,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,845,-7,0,1125,1,0,0 +2013,7,4,4,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1745,-3,0,1910,-9,0,0 +2013,9,29,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,8,0,1500,1,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2210,2,0,14,0,0,0 +2013,6,27,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1300,90,1,1420,88,1,0 +2013,5,31,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,534,-12,0,622,-11,0,0 +2013,9,24,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,950,-6,0,1119,-3,0,0 +2013,10,15,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2025,-4,0,2300,-18,0,0 +2013,5,7,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,72,1,1705,86,1,0 +2013,4,17,3,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2250,-3,0,730,21,1,0 +2013,9,4,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,815,1,0,905,-1,0,0 +2013,7,17,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1650,-1,0,1820,-7,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2102,4,0,2229,-2,0,0 +2013,5,21,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1941,14,0,2117,13,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1550,4,0,1819,17,1,0 +2013,6,6,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,5,0,1935,-6,0,0 +2013,5,12,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1659,-4,0,58,-9,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1805,6,0,2315,25,1,0 +2013,6,28,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-5,0,2251,-14,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2225,-4,0,19,-3,0,0 +2013,4,18,4,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,710,-5,0,1459,-30,0,0 +2013,9,7,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1735,37,1,1920,35,1,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1243,-8,0,1813,-7,0,0 +2013,4,7,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,320,15,1,713,45,1,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,828,-4,0,1435,-11,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1810,8,0,2030,-12,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,-1,0,1516,7,0,0 +2013,9,1,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-6,0,832,-11,0,0 +2013,6,4,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,540,-7,0,908,-8,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1904,208,1,2056,168,1,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1110,3,0,1654,2,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,920,10,0,1015,14,0,0 +2013,6,13,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,0,0,1545,-7,0,0 +2013,5,18,6,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-3,0,910,-3,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1340,10,0,1615,-9,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,700,0,0,1255,-4,0,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1920,10,0,2211,3,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1645,1,0,2230,-4,0,0 +2013,10,28,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-4,0,1525,-32,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1440,4,0,1554,-11,0,0 +2013,5,11,6,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,720,-5,0,913,-23,0,0 +2013,8,4,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1113,-12,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1125,0,0,1620,1,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2140,-1,0,2240,1,0,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1740,20,1,2255,11,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1814,0,0,2020,-32,0,0 +2013,7,21,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,900,0,0,1024,-4,0,0 +2013,10,23,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1820,75,1,1940,86,1,0 +2013,8,18,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1535,-3,0,1814,-14,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1000,7,0,1700,7,0,0 +2013,4,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,835,-1,0,1005,13,0,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-3,0,720,-17,0,0 +2013,5,30,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1430,-2,0,1535,-8,0,0 +2013,9,21,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1910,-3,0,2215,-9,0,0 +2013,6,3,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1655,-1,0,1800,-6,0,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1530,23,1,2000,24,1,0 +2013,10,10,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1852,4,0,2045,-5,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1342,-5,0,1457,-17,0,0 +2013,10,6,7,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,750,3,0,1025,-32,0,0 +2013,6,3,1,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,-1,0,1230,-13,0,0 +2013,9,15,7,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-2,0,1620,-8,0,0 +2013,5,23,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2020,20,1,2125,11,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,10,0,1134,8,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1613,-29,0,0 +2013,9,16,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-6,0,1302,-17,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1840,-1,0,1940,-4,0,0 +2013,5,13,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,3,0,2125,-13,0,0 +2013,8,24,6,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-4,0,714,-8,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,2,0,1250,7,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,6,0,1245,-4,0,0 +2013,5,5,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,930,3,0,1123,35,1,0 +2013,7,14,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1820,-11,0,2207,-17,0,0 +2013,4,26,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,2140,-5,0,5,-9,0,0 +2013,6,9,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1405,11,0,1455,2,0,0 +2013,10,22,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1500,-8,0,1656,-20,0,0 +2013,8,22,4,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1530,23,1,1710,10,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,8,0,1120,0,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1530,-3,0,1709,-14,0,0 +2013,10,21,1,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,608,-3,0,720,8,0,0 +2013,8,1,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1505,5,0,1555,46,1,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1320,0,,1620,0,1,1 +2013,5,14,2,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,643,0,0,947,-3,0,0 +2013,6,15,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,840,-5,0,1000,-8,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,10,0,1727,-5,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,-3,0,1817,16,1,0 +2013,5,6,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1740,15,1,1956,0,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2105,10,0,2254,8,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,0,0,1216,-6,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1631,-2,0,1758,-12,0,0 +2013,4,17,3,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,0,0,1858,19,1,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2050,0,0,2320,-12,0,0 +2013,6,25,2,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1948,17,1,2058,12,0,0 +2013,6,6,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,58,1,1435,53,1,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1450,51,1,1810,41,1,0 +2013,4,9,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-7,0,1820,-4,0,0 +2013,4,19,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,0,0,931,-1,0,0 +2013,6,1,6,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1920,2,0,2050,-8,0,0 +2013,5,28,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-2,0,1900,-2,0,0 +2013,5,2,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-4,0,755,-11,0,0 +2013,4,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1200,-2,0,1300,2,0,0 +2013,6,17,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,148,1,1837,148,1,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,744,-6,0,1045,-11,0,0 +2013,9,3,2,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,610,-5,0,707,-15,0,0 +2013,4,21,7,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1550,-6,0,1659,-24,0,0 +2013,5,22,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,21,1,1943,31,1,0 +2013,7,1,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,935,-10,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-3,0,1705,-3,0,0 +2013,4,27,6,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1705,-8,0,1827,-10,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1835,109,1,2210,103,1,0 +2013,4,3,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,615,-5,0,721,0,0,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-4,0,1550,-2,0,0 +2013,7,12,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1200,-7,0,1225,-23,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1021,-2,0,1446,-22,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1055,11,0,1420,1,0,0 +2013,4,28,7,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1345,-9,0,1530,-4,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,933,0,0,1759,-17,0,0 +2013,10,21,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1709,-5,0,1840,-5,0,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1215,-6,0,1450,-9,0,0 +2013,10,29,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-5,0,1635,-53,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,6,0,1225,-17,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,740,1,0,1045,5,0,0 +2013,10,12,6,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1725,-6,0,1850,-9,0,0 +2013,7,7,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1310,9,0,1603,11,0,0 +2013,4,17,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,935,-2,0,1140,0,0,0 +2013,8,14,3,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,-5,0,1630,-22,0,0 +2013,8,19,1,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,-10,0,1600,-5,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1840,12,0,2106,2,0,0 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,915,-2,0,1049,-17,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,6,0,1912,14,0,0 +2013,7,18,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,-3,0,1505,-13,0,0 +2013,6,27,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,0,0,815,-14,0,0 +2013,5,27,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,925,-4,0,1215,-21,0,0 +2013,8,28,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1315,2,0,1455,-4,0,0 +2013,7,20,6,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-10,0,1159,-22,0,0 +2013,4,12,5,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1804,32,1,2145,3,0,0 +2013,9,21,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1325,1,0,1630,-7,0,0 +2013,7,8,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,-1,0,130,-6,0,0 +2013,9,21,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,-5,0,1929,2,0,0 +2013,9,25,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-6,0,945,-11,0,0 +2013,10,13,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1815,-2,0,1905,-12,0,0 +2013,7,23,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1130,50,1,1238,49,1,0 +2013,5,6,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1935,-4,0,2259,-39,0,0 +2013,6,17,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,4,0,830,0,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,32,1,855,33,1,0 +2013,6,25,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1310,-2,0,1345,-11,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,650,10,0,1532,21,1,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-5,0,1030,-26,0,0 +2013,8,29,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1157,13,0,1332,0,0,0 +2013,7,6,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1735,5,0,1850,-12,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1455,23,1,1755,17,1,0 +2013,6,18,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-2,0,1017,-11,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1130,-3,0,1251,-18,0,0 +2013,9,13,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1655,45,1,1755,37,1,0 +2013,4,9,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,755,-3,0,1055,-15,0,0 +2013,9,23,1,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1629,0,0,1919,-2,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1029,27,1,1143,19,1,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,855,-2,0,1005,-17,0,0 +2013,7,12,5,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,55,1,2110,63,1,0 +2013,5,16,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,0,0,1720,-6,0,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1625,10,0,2320,8,0,0 +2013,10,12,6,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1529,-2,0,1826,-8,0,0 +2013,8,15,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,11,0,1850,-19,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,2,0,915,-3,0,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1430,-3,0,1555,-7,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1445,7,0,1622,15,1,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1257,20,1,2137,6,0,0 +2013,5,10,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,830,-2,0,1639,41,1,0 +2013,4,8,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,927,-11,0,1240,-17,0,0 +2013,4,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1120,-5,0,1330,-10,0,0 +2013,5,16,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1745,-4,0,1905,-15,0,0 +2013,4,12,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,628,-5,0,1459,3,0,0 +2013,7,11,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-5,0,1837,3,0,0 +2013,7,9,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,3,0,1558,0,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,0,,1840,0,1,1 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2230,19,1,643,37,1,0 +2013,7,30,2,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2225,33,1,630,22,1,0 +2013,5,4,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,28,1,1626,21,1,0 +2013,6,13,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,34,1,2253,28,1,0 +2013,6,28,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1620,-2,0,1905,-10,0,0 +2013,7,20,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1411,23,1,1555,25,1,0 +2013,4,9,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,-7,0,1900,-18,0,0 +2013,6,4,2,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1755,-2,0,1915,-4,0,0 +2013,4,30,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,915,-4,0,1515,-12,0,0 +2013,10,31,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-6,0,705,-5,0,0 +2013,9,13,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1400,12,0,1545,2,0,0 +2013,7,4,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1254,9,0,1543,4,0,0 +2013,7,2,2,YV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1605,-5,0,1732,-15,0,0 +2013,4,2,2,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,809,-2,0,953,26,1,0 +2013,9,11,3,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1835,46,1,2120,47,1,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1555,14,0,1755,-5,0,0 +2013,6,27,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1930,20,1,2059,26,1,0 +2013,6,23,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,0,0,915,-14,0,0 +2013,8,29,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,952,-7,0,1120,-12,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,45,1,1508,49,1,0 +2013,5,1,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1730,-11,0,1949,2,0,0 +2013,8,6,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,2010,65,1,6,48,1,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2040,5,0,2312,19,1,0 +2013,7,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,7,0,2120,4,0,0 +2013,8,24,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,620,0,0,729,-6,0,0 +2013,10,2,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,-3,0,1105,-9,0,0 +2013,6,21,5,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,935,9,0,1801,12,0,0 +2013,7,20,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1210,-10,0,1350,-36,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,0,0,1440,-8,0,0 +2013,4,6,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1030,-9,0,1052,-23,0,0 +2013,5,10,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1452,-5,0,1647,-5,0,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,2,0,901,9,0,0 +2013,7,21,7,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,2,0,1605,13,0,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1949,-5,0,2127,-18,0,0 +2013,8,9,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,6,0,2100,9,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,956,84,1,1238,79,1,0 +2013,5,25,6,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1445,3,0,1540,1,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,0,0,1715,-1,0,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2146,17,1,142,5,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2150,-2,0,2315,-6,0,0 +2013,5,18,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1240,-5,0,1320,-8,0,0 +2013,8,19,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,728,-2,0,1000,-20,0,0 +2013,8,4,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1351,-2,0,1516,-4,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,2,0,1918,47,1,0 +2013,4,4,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,705,-4,0,1048,-13,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1826,-5,0,2049,-21,0,0 +2013,5,14,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-6,0,1318,12,0,0 +2013,5,13,1,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1254,-1,0,1740,19,1,0 +2013,5,16,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,7,0,617,6,0,0 +2013,8,6,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-4,0,649,-13,0,0 +2013,10,17,4,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,825,-8,0,1210,-7,0,0 +2013,9,12,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,926,-10,0,1117,-27,0,0 +2013,9,18,3,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,39,1,1810,33,1,0 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2006,7,0,2044,17,1,0 +2013,7,2,2,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,625,-3,0,750,-11,0,0 +2013,10,29,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-9,0,2126,-12,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2040,-3,0,2152,-20,0,0 +2013,8,4,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2240,88,1,15,77,1,0 +2013,7,2,2,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-8,0,1820,8,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,45,1,1930,83,1,0 +2013,8,19,1,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2105,-6,0,15,-23,0,0 +2013,6,1,6,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1101,-10,0,1410,-12,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2038,-6,0,2203,-11,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2045,0,,2150,0,1,1 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1105,6,0,1300,3,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,835,5,0,1155,0,0,0 +2013,8,15,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1457,-10,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1435,-1,0,1600,-6,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,-3,0,1311,-2,0,0 +2013,5,23,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,739,-11,0,0 +2013,5,23,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1559,-5,0,1855,-1,0,0 +2013,6,15,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1250,1,0,1707,4,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-4,0,1021,15,1,0 +2013,10,3,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1800,0,0,2005,-6,0,0 +2013,8,31,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-5,0,957,-35,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1900,23,1,2050,8,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2055,3,0,2254,-22,0,0 +2013,7,5,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1720,4,0,1935,-10,0,0 +2013,8,7,3,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,2010,111,1,2325,86,1,0 +2013,5,24,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1530,47,1,1837,31,1,0 +2013,5,28,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,-5,0,1048,-4,0,0 +2013,5,14,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,940,-1,0,1040,1,0,0 +2013,5,28,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-3,0,1213,-13,0,0 +2013,6,18,2,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1140,62,1,1451,50,1,0 +2013,7,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,-7,0,2055,15,1,0 +2013,7,3,3,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,13,0,2229,26,1,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1824,-8,0,2302,-27,0,0 +2013,6,18,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,601,-10,0,904,-11,0,0 +2013,7,8,1,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1113,-1,0,1227,-6,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,14,0,1935,-1,0,0 +2013,7,5,5,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1121,-5,0,1445,-3,0,0 +2013,8,30,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1600,-4,0,1738,-14,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-1,0,1735,5,0,0 +2013,8,15,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1005,6,0,1535,-14,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1015,73,1,1124,73,1,0 +2013,7,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1145,-3,0,1400,3,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-4,0,1740,-3,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2250,-3,0,710,-22,0,0 +2013,8,25,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,937,27,1,1032,19,1,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,0,0,1133,-14,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1855,-2,0,2020,-10,0,0 +2013,6,26,3,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1050,18,1,1443,23,1,0 +2013,10,17,4,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,15,1,1325,10,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,-4,0,1351,11,0,0 +2013,6,25,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1359,141,1,1724,159,1,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1030,-8,0,0 +2013,5,16,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,700,12,0,826,1,0,0 +2013,4,11,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1935,6,0,2100,-2,0,0 +2013,9,23,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,725,-2,0,925,55,1,0 +2013,10,3,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-8,0,1218,-9,0,0 +2013,6,23,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,610,-1,0,739,1,0,0 +2013,5,6,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1305,-3,0,1601,-9,0,0 +2013,9,1,7,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1500,-2,0,1720,-8,0,0 +2013,6,25,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1555,0,0,1800,4,0,0 +2013,4,2,2,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2035,7,0,2250,15,1,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,0,0,1130,-20,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1526,-7,0,1913,4,0,0 +2013,5,15,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1210,-6,0,1611,-14,0,0 +2013,5,2,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1218,-6,0,1300,-16,0,0 +2013,7,5,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-8,0,1520,-7,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,940,-1,0,1007,-18,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,4,0,1909,-4,0,0 +2013,4,16,2,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,705,-9,0,826,-21,0,0 +2013,6,13,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,130,1,2149,139,1,0 +2013,7,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,99,1,1811,87,1,0 +2013,7,26,5,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1720,-7,0,2000,-19,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1432,-5,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1850,25,1,2205,22,1,0 +2013,7,12,5,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1709,1,0,1805,1,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,600,1,0,750,-2,0,0 +2013,5,4,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,720,-6,0,844,22,1,0 +2013,7,31,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1907,-2,0,2023,-8,0,0 +2013,7,12,5,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-5,0,630,-5,0,0 +2013,4,16,2,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1435,-3,0,1627,-23,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-2,0,1615,-24,0,0 +2013,9,8,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,-7,0,1025,-6,0,0 +2013,9,14,6,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1100,-6,0,1312,-21,0,0 +2013,8,1,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,28,1,2130,30,1,0 +2013,8,23,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1845,31,1,2010,34,1,0 +2013,6,6,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,188,1,2258,200,1,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1125,1,0,1340,-20,0,0 +2013,9,3,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,730,0,0,825,-2,0,0 +2013,10,25,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,-8,0,2030,-14,0,0 +2013,5,24,5,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1300,1,0,2130,-17,0,0 +2013,4,4,4,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,-4,0,1345,-15,0,0 +2013,9,7,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-7,0,730,0,0,0 +2013,4,2,2,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-6,0,1257,-4,0,0 +2013,7,8,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1713,0,,1919,0,1,1 +2013,6,5,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,0,0,1535,-2,0,0 +2013,6,20,4,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1150,44,1,1334,49,1,0 +2013,8,9,5,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,-3,0,2110,11,0,0 +2013,7,25,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-5,0,820,-2,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,820,-5,0,1015,-4,0,0 +2013,9,14,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1210,-5,0,1350,1,0,0 +2013,8,12,1,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-5,0,853,-12,0,0 +2013,9,22,7,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2345,3,0,547,-13,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1355,15,1,1530,-3,0,0 +2013,5,1,3,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1326,6,0,1830,7,0,0 +2013,10,6,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,4,0,1610,-4,0,0 +2013,9,17,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1943,-3,0,2038,11,0,0 +2013,4,27,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1233,3,0,1414,-11,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2120,4,0,2345,20,1,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,5,0,1913,11,0,0 +2013,10,30,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,855,-4,0,1125,-14,0,0 +2013,7,18,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-9,0,1114,-22,0,0 +2013,6,19,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,940,-11,0,0 +2013,6,11,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,-3,0,1115,-11,0,0 +2013,7,7,7,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,615,1,0,715,-10,0,0 +2013,10,27,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1359,-8,0,1535,-17,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1155,-3,0,1315,-13,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-4,0,1306,6,0,0 +2013,5,11,6,F9,13871,Eppley Airfield,Omaha,NE,13204,Orlando International,Orlando,FL,1659,-17,0,2050,-16,0,0 +2013,8,14,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1044,-4,0,1428,-17,0,0 +2013,10,12,6,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1331,-6,0,1724,-8,0,0 +2013,5,9,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1435,-8,0,1754,-34,0,0 +2013,5,22,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1854,49,1,2020,56,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2220,32,1,2300,26,1,0 +2013,8,4,7,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,1,0,1020,27,1,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,910,-3,0,1015,-9,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1640,-1,0,2000,-11,0,0 +2013,10,26,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1300,15,1,1619,0,0,0 +2013,8,23,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-4,0,1013,-13,0,0 +2013,4,27,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,1349,-15,0,0 +2013,8,17,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-1,0,1604,8,0,0 +2013,8,23,5,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1526,24,1,1844,17,1,0 +2013,6,30,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1510,45,1,1735,54,1,0 +2013,9,16,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1645,-4,0,1800,-4,0,0 +2013,8,2,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,0,0,1255,15,1,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,635,-4,0,800,-10,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2045,0,0,2150,-19,0,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,955,5,0,1100,4,0,0 +2013,6,10,1,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1040,-8,0,1402,-12,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,57,1,1945,59,1,0 +2013,5,23,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-3,0,1800,20,1,0 +2013,5,25,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,705,-3,0,805,-11,0,0 +2013,6,25,2,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1756,15,1,2044,-2,0,0 +2013,7,9,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,755,1,0,845,-2,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1615,18,1,1710,10,0,0 +2013,8,8,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1415,-1,0,1625,-3,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1615,-7,0,1714,-16,0,0 +2013,6,21,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1219,10,0,1937,-4,0,0 +2013,4,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,837,-5,0,1037,-3,0,0 +2013,4,23,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2105,62,1,2305,63,1,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1135,-4,0,1355,8,0,0 +2013,9,23,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,2,0,924,-16,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2235,-6,0,2320,-4,0,0 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1805,76,1,2000,98,1,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,24,1,1014,34,1,0 +2013,9,17,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1715,-11,0,2340,-2,0,0 +2013,6,13,4,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-4,0,1601,-19,0,0 +2013,10,2,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,930,12,0,1040,-9,0,0 +2013,7,23,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1235,-1,0,1355,2,0,0 +2013,6,6,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,585,1,1829,578,1,0 +2013,8,5,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,643,1,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1000,-4,0,1228,-24,0,0 +2013,9,5,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-11,0,1654,-15,0,0 +2013,9,17,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1629,-2,0,1915,-1,0,0 +2013,8,23,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,558,1,0,854,-2,0,0 +2013,10,7,1,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1705,15,1,1934,5,0,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-1,0,830,-2,0,0 +2013,5,27,1,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,30,1,1740,15,1,0 +2013,8,13,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,12,0,1809,8,0,0 +2013,9,25,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,600,-1,0,905,-5,0,0 +2013,8,12,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-1,0,2005,-15,0,0 +2013,10,25,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,60,1,1156,50,1,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,-2,0,1528,-17,0,0 +2013,8,7,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1946,5,0,2140,31,1,0 +2013,4,24,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,0,0,1630,10,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,-4,0,1940,12,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1212,-6,0,1413,-24,0,0 +2013,4,25,4,VX,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1855,4,0,2159,-5,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2259,16,1,11,6,0,0 +2013,8,23,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-6,0,2035,-14,0,0 +2013,9,16,1,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1559,1,0,1905,-3,0,0 +2013,9,20,5,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2030,45,1,2310,41,1,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1525,16,1,1655,-1,0,0 +2013,10,11,5,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-5,0,1511,-15,0,0 +2013,9,28,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1350,7,0,1645,4,0,0 +2013,8,12,1,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1107,-10,0,1340,-20,0,0 +2013,9,26,4,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1155,-5,0,1345,-11,0,0 +2013,9,5,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1330,-3,0,1615,-11,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1536,32,1,1725,19,1,0 +2013,9,24,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,905,-5,0,1155,-2,0,0 +2013,9,21,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,545,-4,0,705,-14,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-3,0,2249,-18,0,0 +2013,8,1,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-5,0,1518,-24,0,0 +2013,7,15,1,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1731,85,1,2056,84,1,0 +2013,10,2,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,810,-1,0,910,-7,0,0 +2013,8,27,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2040,8,0,2230,1,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1443,65,1,1720,62,1,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,2030,80,1,2227,100,1,0 +2013,6,24,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1940,-3,0,2050,-1,0,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,2015,-2,0,2344,-8,0,0 +2013,6,11,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1005,-3,0,1655,-7,0,0 +2013,10,9,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,34,1,1920,23,1,0 +2013,4,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1054,-6,0,1247,-29,0,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1110,4,0,1235,1,0,0 +2013,7,10,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,1000,-8,0,0 +2013,4,17,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1545,1,0,1700,2,0,0 +2013,9,6,5,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,840,-8,0,1146,-6,0,0 +2013,5,5,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,629,-10,0,839,-16,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1333,-5,0,1448,-20,0,0 +2013,10,2,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,22,1,1115,9,0,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1844,136,1,20,118,1,0 +2013,9,20,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1610,-3,0,1800,-23,0,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1855,6,0,2025,-2,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-5,0,1021,5,0,0 +2013,4,10,3,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-3,0,1033,-14,0,0 +2013,10,11,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1059,-4,0,1242,-28,0,0 +2013,5,3,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1315,8,0,1420,-10,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,31,1,2115,17,1,0 +2013,9,20,5,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1440,-3,0,2305,5,0,0 +2013,6,29,6,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,-2,0,1434,-11,0,0 +2013,10,6,7,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,750,0,0,1040,-22,0,0 +2013,4,18,4,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,55,1,1745,47,1,0 +2013,8,18,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1511,0,0,1900,7,0,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,67,1,1955,68,1,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1345,26,1,1435,24,1,0 +2013,6,29,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-2,0,2029,36,1,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,-3,0,1447,5,0,0 +2013,7,19,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,-10,0,1934,-8,0,0 +2013,5,25,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1805,8,0,1930,2,0,0 +2013,8,5,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,0,0,1935,-4,0,0 +2013,6,16,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,1,0,759,-9,0,0 +2013,5,29,3,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,-5,0,1932,0,0,0 +2013,8,30,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1051,-7,0,1333,7,0,0 +2013,9,5,4,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1440,-5,0,1715,-18,0,0 +2013,8,16,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-12,0,1413,-22,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1253,9,0,1425,1,0,0 +2013,9,26,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1759,14,0,2023,19,1,0 +2013,8,23,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,-9,0,1734,-1,0,0 +2013,5,19,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1829,55,1,2039,40,1,0 +2013,4,17,3,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1223,-7,0,1824,-13,0,0 +2013,4,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1910,-1,0,2235,-11,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,2,0,1955,24,1,0 +2013,9,3,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,-7,0,1255,-5,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1255,2,0,1720,5,0,0 +2013,9,23,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-7,0,1833,-1,0,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-3,0,2104,-15,0,0 +2013,8,15,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,11,0,1303,2,0,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,0,0,1626,-11,0,0 +2013,8,26,1,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1700,19,1,1845,-3,0,0 +2013,8,10,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1645,8,0,1850,3,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1405,0,,1759,0,1,1 +2013,7,11,4,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,1120,19,1,1711,46,1,0 +2013,10,25,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1621,2,0,1915,-5,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1510,14,0,1850,7,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1055,1,0,1215,-1,0,0 +2013,8,24,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1630,1,0,1839,-9,0,0 +2013,8,5,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1144,-4,0,1305,-2,0,0 +2013,7,12,5,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-5,0,2054,-24,0,0 +2013,4,26,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,645,-1,0,705,0,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,-1,0,1305,-11,0,0 +2013,10,30,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,1,0,1315,9,0,0 +2013,6,7,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,828,-2,0,0 +2013,6,24,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,8,0,1830,31,1,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-6,0,920,0,0,0 +2013,5,14,2,9E,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,615,-3,0,752,-22,0,0 +2013,5,5,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-5,0,1216,6,0,0 +2013,6,2,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,-3,0,1250,-2,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,8,0,1835,7,0,0 +2013,9,20,5,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-8,0,1930,-13,0,0 +2013,8,28,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1015,47,1,1227,36,1,0 +2013,5,6,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1410,25,1,1510,26,1,0 +2013,9,21,6,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,11,0,2320,2,0,0 +2013,6,8,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,-8,0,1600,33,1,0 +2013,10,27,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1615,-1,0,1735,7,0,0 +2013,6,25,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1225,0,0,1353,5,0,0 +2013,4,23,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1730,-3,0,2041,8,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,1815,-3,0,2044,-19,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,910,-2,0,1029,6,0,0 +2013,5,3,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1825,-2,0,1925,-18,0,0 +2013,4,18,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1100,-2,0,1354,-9,0,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1505,40,1,1710,33,1,0 +2013,10,2,3,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1620,-4,0,1825,-46,0,0 +2013,9,13,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-5,0,1010,-21,0,0 +2013,5,21,2,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1059,74,1,1258,68,1,0 +2013,4,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1350,-3,0,1709,-4,0,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1740,-5,0,2045,-16,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-1,0,2115,2,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,11,0,1500,4,0,0 +2013,5,11,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-5,0,1407,1,0,0 +2013,10,18,5,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,6,0,1205,12,0,0 +2013,8,17,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,835,-1,0,1235,13,0,0 +2013,4,4,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1718,10,0,1836,28,1,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1135,32,1,1300,28,1,0 +2013,4,29,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-9,0,1959,-6,0,0 +2013,6,7,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1754,61,1,1934,96,1,0 +2013,6,29,6,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,655,48,1,1211,42,1,0 +2013,5,23,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,807,3,0,1105,-1,0,0 +2013,7,11,4,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,620,18,1,914,7,0,0 +2013,8,28,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-7,0,1812,-18,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2225,-7,0,2318,-3,0,0 +2013,7,24,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,610,3,0,710,-4,0,0 +2013,9,24,2,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1300,276,1,1640,280,1,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,44,1,935,16,1,0 +2013,9,13,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1330,-7,0,2159,-10,0,0 +2013,8,24,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,1519,-14,0,0 +2013,7,6,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,1,0,1250,-1,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1645,5,0,1830,-10,0,0 +2013,7,16,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,-9,0,1325,-15,0,0 +2013,9,27,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1950,41,1,2110,25,1,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,750,-5,0,845,-12,0,0 +2013,10,17,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,-1,0,1120,-8,0,0 +2013,7,9,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-8,0,1130,-22,0,0 +2013,10,23,3,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1420,31,1,1613,11,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1435,66,1,1545,67,1,0 +2013,5,6,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1045,11,0,1150,-8,0,0 +2013,5,9,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1055,77,1,1259,78,1,0 +2013,5,9,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-13,0,914,-7,0,0 +2013,10,4,5,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,635,-9,0,723,-5,0,0 +2013,6,6,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,14,0,2145,26,1,0 +2013,6,9,7,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1230,23,1,1427,23,1,0 +2013,9,1,7,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1145,-8,0,1327,-15,0,0 +2013,10,27,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1500,-3,0,1849,-16,0,0 +2013,5,14,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1204,-8,0,1444,-5,0,0 +2013,4,20,6,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,72,1,904,68,1,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,900,1,0,1047,-3,0,0 +2013,4,22,1,B6,14635,Southwest Florida International,Fort Myers,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,191,1,2327,170,1,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,0,0,1128,7,0,0 +2013,8,13,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,725,-2,0,850,0,0,0 +2013,8,5,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,115,1,620,102,1,0 +2013,4,15,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-4,0,1421,-26,0,0 +2013,8,8,4,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2057,0,0,2329,-13,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1729,-2,0,1836,-1,0,0 +2013,9,30,1,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,-5,0,2027,-13,0,0 +2013,6,2,7,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,-1,0,1330,-8,0,0 +2013,7,23,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-5,0,825,-14,0,0 +2013,6,22,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1203,3,0,1441,-3,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2130,-2,0,2235,-10,0,0 +2013,7,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1411,3,0,1511,-3,0,0 +2013,5,9,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1647,-6,0,1723,-14,0,0 +2013,9,23,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1540,-5,0,2110,-18,0,0 +2013,4,28,7,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1643,159,1,1835,146,1,0 +2013,8,4,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1005,-4,0,1121,-7,0,0 +2013,8,17,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,25,1,1550,27,1,0 +2013,10,29,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1720,-1,0,1922,-11,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1757,7,0,2159,2,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,600,-2,0,710,-4,0,0 +2013,4,25,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1320,0,0,1345,5,0,0 +2013,6,14,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1932,-3,0,2113,7,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,-4,0,2346,-16,0,0 +2013,8,29,4,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,13,0,2200,6,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,939,-5,0,1150,-29,0,0 +2013,6,1,6,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,635,-10,0,759,-20,0,0 +2013,6,11,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,2025,-3,0,2345,-10,0,0 +2013,7,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2146,91,1,2205,69,1,0 +2013,10,29,2,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,1005,4,0,0 +2013,5,18,6,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1235,-1,0,1515,-6,0,0 +2013,9,23,1,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-10,0,2145,-3,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1725,-3,0,1935,-16,0,0 +2013,4,24,3,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1644,19,1,1940,18,1,0 +2013,9,29,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-3,0,1135,-9,0,0 +2013,9,23,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-6,0,1248,-15,0,0 +2013,10,5,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1232,-1,0,1827,19,1,0 +2013,9,15,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1530,-1,0,1645,-9,0,0 +2013,9,17,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1230,-7,0,1251,-20,0,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,855,-2,0,1037,-8,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1000,-1,0,1318,20,1,0 +2013,9,7,6,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,835,-15,0,1044,-21,0,0 +2013,9,16,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-14,0,1330,-19,0,0 +2013,8,8,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1345,11,0,1625,34,1,0 +2013,5,13,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1345,-2,0,1510,-3,0,0 +2013,6,23,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1412,-8,0,1705,-27,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,38,1,1730,34,1,0 +2013,5,22,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,920,-5,0,1230,10,0,0 +2013,6,23,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-5,0,629,-7,0,0 +2013,6,4,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1230,-1,0,1428,-7,0,0 +2013,7,3,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,4,0,1026,11,0,0 +2013,9,13,5,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,945,-1,0,1220,-13,0,0 +2013,9,17,2,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-16,0,1755,-15,0,0 +2013,6,28,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,633,-4,0,804,-12,0,0 +2013,7,1,1,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1850,-3,0,2154,-34,0,0 +2013,5,3,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1655,-6,0,1914,-17,0,0 +2013,8,5,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,700,46,1,808,34,1,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1350,-3,0,1541,-12,0,0 +2013,9,19,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1410,206,1,2010,194,1,0 +2013,10,9,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,15,1,1553,6,0,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1335,-2,0,1445,-7,0,0 +2013,4,27,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,97,1,930,104,1,0 +2013,8,18,7,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,-4,0,1051,-3,0,0 +2013,10,28,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,820,-1,0,945,-10,0,0 +2013,10,1,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1136,42,1,1420,36,1,0 +2013,9,6,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1112,-5,0,1404,-8,0,0 +2013,8,8,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,203,1,2035,210,1,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,638,-3,0,954,-12,0,0 +2013,4,5,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,1,0,915,4,0,0 +2013,9,30,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1555,-7,0,1625,-12,0,0 +2013,6,4,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1936,4,0,2151,-10,0,0 +2013,6,12,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-2,0,1010,-20,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1955,62,1,2105,71,1,0 +2013,8,26,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1320,-4,0,2155,-3,0,0 +2013,7,16,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,824,-7,0,946,-25,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1855,-2,0,1958,-16,0,0 +2013,10,28,1,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1234,-5,0,1534,-16,0,0 +2013,7,16,2,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,730,-2,0,933,-8,0,0 +2013,6,11,2,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,5,0,1245,-2,0,0 +2013,10,18,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,13,0,1721,4,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1040,-4,0,1155,-6,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,-1,0,2015,1,0,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1006,-4,0,1229,-12,0,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,12,0,1448,9,0,0 +2013,10,12,6,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,600,-5,0,727,10,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1935,20,1,50,29,1,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,16,1,1027,45,1,0 +2013,8,29,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1935,13,0,2250,26,1,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-3,0,1629,3,0,0 +2013,4,26,5,9E,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1630,-3,0,1859,-12,0,0 +2013,10,4,5,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-6,0,1815,8,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1351,0,0,1534,1,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1745,31,1,2225,22,1,0 +2013,8,14,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,15,1,2019,16,1,0 +2013,5,19,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,-4,0,1202,25,1,0 +2013,9,22,7,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,9,0,1118,4,0,0 +2013,5,2,4,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1720,4,0,1920,-13,0,0 +2013,6,8,6,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,3,0,743,-6,0,0 +2013,8,19,1,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2025,0,0,2321,-6,0,0 +2013,8,17,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-7,0,945,-7,0,0 +2013,4,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,750,-8,0,1010,-8,0,0 +2013,10,14,1,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1735,17,1,1953,34,1,0 +2013,4,20,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-5,0,930,-23,0,0 +2013,5,7,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-6,0,835,-14,0,0 +2013,5,2,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1005,-3,0,1353,-2,0,0 +2013,6,28,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,3,0,1122,6,0,0 +2013,4,22,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1205,2,0,1805,-20,0,0 +2013,10,30,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1915,-5,0,2235,-21,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,755,-4,0,1245,-15,0,0 +2013,6,8,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,-2,0,1310,-8,0,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,4,0,1030,4,0,0 +2013,4,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1055,3,0,1320,-19,0,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,813,-2,0,1042,11,0,0 +2013,10,3,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1445,0,,1740,0,1,1 +2013,4,9,2,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1325,-9,0,1715,-2,0,0 +2013,5,16,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1510,-5,0,1920,-25,0,0 +2013,4,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,910,37,1,937,17,1,0 +2013,5,19,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1808,5,0,1916,16,1,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,730,-7,0,845,-13,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1045,2,0,0 +2013,8,19,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,755,-15,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1140,13,0,1410,3,0,0 +2013,6,17,1,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1825,28,1,1935,19,1,0 +2013,9,22,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1733,26,1,1926,17,1,0 +2013,5,20,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,11,0,1947,25,1,0 +2013,6,17,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,715,7,0,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1845,20,1,2125,22,1,0 +2013,7,13,6,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1745,97,1,2036,129,1,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,915,6,0,1005,-1,0,0 +2013,5,10,5,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,139,1,2122,150,1,0 +2013,8,24,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,635,-6,0,740,-2,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2115,-4,0,2210,-9,0,0 +2013,5,6,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,10,0,1330,3,0,0 +2013,8,21,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-2,0,758,-8,0,0 +2013,7,23,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1655,-3,0,44,8,0,0 +2013,8,12,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-6,0,1628,-24,0,0 +2013,8,28,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1612,-3,0,1723,-16,0,0 +2013,6,2,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1720,2,0,1830,5,0,0 +2013,7,9,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,25,1,840,23,1,0 +2013,5,12,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1300,6,0,1505,-3,0,0 +2013,8,12,1,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1516,-3,0,1744,-11,0,0 +2013,6,18,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1420,0,,1555,0,1,1 +2013,9,8,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1935,-6,0,2232,-12,0,0 +2013,8,11,7,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,801,7,0,1036,11,0,0 +2013,8,7,3,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,63,1,1415,48,1,0 +2013,5,11,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1725,0,0,1845,4,0,0 +2013,8,2,5,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1425,-9,0,1607,12,0,0 +2013,5,16,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,22,1,911,18,1,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,-2,0,50,-17,0,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1000,-7,0,1225,-19,0,0 +2013,4,13,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1805,-6,0,2201,-4,0,0 +2013,9,22,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,-2,0,1205,1,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1229,-5,0,1336,-15,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,18,1,2155,17,1,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2225,6,0,2354,5,0,0 +2013,9,26,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1025,-9,0,1129,-10,0,0 +2013,7,16,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,643,-4,0,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1450,40,1,1657,34,1,0 +2013,10,16,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1910,9,0,2205,-7,0,0 +2013,9,28,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1315,-7,0,1449,-22,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1015,3,0,1356,-4,0,0 +2013,5,6,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,-11,0,2100,-21,0,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2155,37,1,2355,23,1,0 +2013,8,30,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,934,-4,0,1206,-14,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,635,-3,0,925,40,1,0 +2013,4,15,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2119,77,1,2334,63,1,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1121,7,0,1303,-5,0,0 +2013,7,18,4,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1155,-7,0,1300,-23,0,0 +2013,7,12,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1919,112,1,2210,84,1,0 +2013,6,20,4,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2130,-1,0,2359,11,0,0 +2013,10,14,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,940,0,0,1137,-5,0,0 +2013,6,22,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,700,-1,0,725,1,0,0 +2013,5,23,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,0,,2310,0,1,1 +2013,9,5,4,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1859,22,1,2020,17,1,0 +2013,5,23,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,645,5,0,755,1,0,0 +2013,8,24,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-3,0,1100,-8,0,0 +2013,9,6,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1140,2,0,1435,-6,0,0 +2013,4,19,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,700,-5,0,930,-5,0,0 +2013,10,14,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1225,238,1,1350,225,1,0 +2013,8,8,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,659,-2,0,809,5,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,925,0,0,1140,-17,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2130,0,0,2305,-16,0,0 +2013,7,16,2,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,700,28,1,810,34,1,0 +2013,4,21,7,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1512,23,1,1841,21,1,0 +2013,10,5,6,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,650,-6,0,820,-11,0,0 +2013,4,30,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,-5,0,1335,-10,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1855,6,0,2215,-9,0,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1450,4,0,1728,14,0,0 +2013,10,23,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,855,-5,0,1054,-15,0,0 +2013,4,8,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-1,0,838,-12,0,0 +2013,6,16,7,DL,14679,San Diego International,San Diego,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-2,0,1902,-22,0,0 +2013,7,26,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1513,-8,0,1616,-9,0,0 +2013,7,10,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,33,1,1825,31,1,0 +2013,5,5,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1440,4,0,1530,17,1,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,19,1,1045,11,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1450,29,1,2020,17,1,0 +2013,9,20,5,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1055,-6,0,1235,-6,0,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1825,25,1,2125,63,1,0 +2013,6,21,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,630,0,0,645,-1,0,0 +2013,8,23,5,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,539,-1,0,648,-12,0,0 +2013,4,11,4,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1859,2,0,2014,5,0,0 +2013,9,27,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,914,-2,0,1433,-8,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,0,,1815,0,1,1 +2013,6,10,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1820,-6,0,1857,-5,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2246,-1,0,15,2,0,0 +2013,8,10,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1150,51,1,1846,19,1,0 +2013,8,7,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,6,0,1304,9,0,0 +2013,10,12,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1704,21,1,1725,11,0,0 +2013,10,7,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,930,6,0,1121,17,1,0 +2013,7,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1758,19,1,1952,25,1,0 +2013,4,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1940,-2,0,55,-7,0,0 +2013,5,13,1,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1108,-1,0,1215,-6,0,0 +2013,8,4,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-3,0,925,-2,0,0 +2013,7,17,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1445,-3,0,1520,-15,0,0 +2013,8,13,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1919,3,0,15,3,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,855,-5,0,1000,-17,0,0 +2013,9,3,2,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,18,1,911,12,0,0 +2013,7,27,6,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1020,-9,0,1125,-7,0,0 +2013,7,28,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,45,1,1015,106,1,0 +2013,8,25,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,645,-7,0,830,16,1,0 +2013,5,22,3,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,-5,0,1105,5,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1455,7,0,1740,-2,0,0 +2013,9,23,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,715,-5,0,1034,-13,0,0 +2013,9,18,3,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,-2,0,1506,2,0,0 +2013,4,4,4,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1215,0,0,1507,2,0,0 +2013,9,8,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1705,-6,0,2032,-52,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,840,20,1,1010,14,0,0 +2013,9,12,4,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1830,5,0,1905,-3,0,0 +2013,6,22,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,12,0,2020,-5,0,0 +2013,10,14,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1606,-2,0,1833,-14,0,0 +2013,8,13,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,1,0,1500,8,0,0 +2013,10,31,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,244,1,1928,244,1,0 +2013,7,9,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,948,54,1,1045,73,1,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,33,1,1625,33,1,0 +2013,10,30,3,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1755,4,0,2005,47,1,0 +2013,5,10,5,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,835,-3,0,1215,-6,0,0 +2013,10,12,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1631,-10,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,800,57,1,1050,42,1,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,19,1,2230,19,1,0 +2013,5,16,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,534,-10,0,622,-14,0,0 +2013,6,20,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-6,0,924,12,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1550,2,0,1705,12,0,0 +2013,8,14,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1800,-2,0,1846,0,0,0 +2013,8,29,4,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,36,1,1750,37,1,0 +2013,5,23,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,6,0,2210,-3,0,0 +2013,4,28,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1225,-9,0,1444,-4,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,630,-4,0,755,-12,0,0 +2013,10,7,1,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,18,1,2139,14,0,0 +2013,5,3,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1159,-5,0,1907,-2,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,53,1,2110,21,1,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1630,3,0,1950,7,0,0 +2013,8,8,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,0,0,1729,1,0,0 +2013,8,18,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,810,-8,0,0 +2013,4,27,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,9,0,1317,-20,0,0 +2013,4,28,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1825,-3,0,1929,-8,0,0 +2013,8,4,7,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,730,-2,0,1025,-17,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1115,-6,0,1314,-19,0,0 +2013,4,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,800,-1,0,1055,-14,0,0 +2013,5,17,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-6,0,1410,-9,0,0 +2013,6,7,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,145,1,1600,186,1,0 +2013,9,8,7,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-2,0,1227,-7,0,0 +2013,6,25,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1236,-3,0,2111,-13,0,0 +2013,8,4,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,705,-2,0,935,-15,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,-4,0,1620,-31,0,0 +2013,6,21,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1510,-3,0,1800,-11,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1910,10,0,2215,12,0,0 +2013,7,25,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,0,0,1610,-2,0,0 +2013,5,21,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1915,0,0,2108,-12,0,0 +2013,7,3,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1555,-4,0,1710,-5,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,40,1,1946,25,1,0 +2013,5,19,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,-4,0,1755,3,0,0 +2013,10,31,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1725,11,0,1815,11,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1735,28,1,2325,17,1,0 +2013,7,27,6,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,28,1,1840,15,1,0 +2013,6,12,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-11,0,1125,-13,0,0 +2013,8,4,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1107,-1,0,1231,4,0,0 +2013,5,25,6,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1625,-8,0,2054,-25,0,0 +2013,5,10,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1125,91,1,1305,92,1,0 +2013,6,15,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1055,0,0,1220,-6,0,0 +2013,5,19,7,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,710,-6,0,930,-5,0,0 +2013,7,10,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,0,0,1602,0,0,0 +2013,10,5,6,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2022,0,0,2246,-14,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-7,0,2152,-13,0,0 +2013,10,21,1,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2006,-5,0,2055,-12,0,0 +2013,4,13,6,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,38,1,1330,26,1,0 +2013,10,13,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,925,0,0,1040,1,0,0 +2013,8,1,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1140,-1,0,1300,-6,0,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,735,-4,0,1030,0,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1840,35,1,2155,39,1,0 +2013,10,19,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1630,-12,0,2235,-16,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,850,-6,0,1314,4,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,26,1,2350,20,1,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-5,0,1429,-12,0,0 +2013,6,9,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,7,0,1323,5,0,0 +2013,8,27,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1345,-1,0,1636,-13,0,0 +2013,9,26,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,-3,0,1305,-7,0,0 +2013,7,2,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,0,0,1350,-21,0,0 +2013,4,19,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,2021,60,1,2329,54,1,0 +2013,9,16,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1520,-4,0,1735,-11,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,-5,0,1050,-17,0,0 +2013,7,10,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1700,-4,0,1910,-14,0,0 +2013,4,3,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1750,28,1,1910,33,1,0 +2013,6,28,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1505,19,1,1615,5,0,0 +2013,4,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,740,-5,0,838,-15,0,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1130,-3,0,2000,-16,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,700,0,0,950,-5,0,0 +2013,8,10,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,-6,0,40,-36,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,-2,0,1008,-10,0,0 +2013,4,19,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1855,-3,0,2032,0,0,0 +2013,4,20,6,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-12,0,1752,-17,0,0 +2013,7,25,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,0,0,1630,-8,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1216,4,0,1704,-6,0,0 +2013,4,25,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,740,-7,0,841,-14,0,0 +2013,4,26,5,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1650,18,1,1745,2,0,0 +2013,9,2,1,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,-3,0,2130,-9,0,0 +2013,7,31,3,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-4,0,1132,-10,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,635,-1,0,914,4,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1420,1,0,1600,-3,0,0 +2013,7,3,3,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,9,0,930,3,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,9,0,2200,-22,0,0 +2013,5,1,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,754,0,0,830,2,0,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1120,0,0,1410,5,0,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,14,0,2205,-14,0,0 +2013,6,30,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,730,-3,0,1024,-1,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1934,3,0,2054,-14,0,0 +2013,4,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1200,7,0,1300,-1,0,0 +2013,9,19,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,317,1,1253,319,1,0 +2013,10,6,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1423,-5,0,1610,-15,0,0 +2013,8,5,1,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-9,0,1522,-17,0,0 +2013,4,21,7,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,2,0,2121,-8,0,0 +2013,8,7,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1600,-2,0,1710,-1,0,0 +2013,7,17,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,-2,0,1912,-5,0,0 +2013,4,14,7,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1231,-9,0,1331,-19,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1625,53,1,1825,49,1,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1705,-11,0,2317,-23,0,0 +2013,9,25,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-4,0,1735,-1,0,0 +2013,10,15,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1645,48,1,1750,50,1,0 +2013,9,7,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,-8,0,1046,16,1,0 +2013,7,29,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1810,-11,0,1932,-22,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,630,-1,0,810,-12,0,0 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2135,58,1,2255,48,1,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1422,-4,0,1705,-10,0,0 +2013,4,25,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1045,86,1,1413,65,1,0 +2013,6,24,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-1,0,854,10,0,0 +2013,4,21,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2320,10,0,632,-6,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1904,4,0,2205,-6,0,0 +2013,6,19,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1827,-2,0,2110,-12,0,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1230,4,0,1335,-1,0,0 +2013,5,5,7,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1700,-7,0,2015,-12,0,0 +2013,5,19,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,9,0,1530,-1,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,715,10,0,954,-7,0,0 +2013,10,8,2,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1050,5,0,1235,11,0,0 +2013,4,3,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,940,98,1,1110,89,1,0 +2013,9,7,6,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1730,-3,0,1947,-1,0,0 +2013,5,26,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,826,20,1,1109,7,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2250,69,1,32,62,1,0 +2013,9,5,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-8,0,1349,3,0,0 +2013,7,1,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1435,7,0,1805,5,0,0 +2013,6,17,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,845,10,0,1215,2,0,0 +2013,4,28,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1203,14,0,0 +2013,9,1,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1524,-5,0,1641,-19,0,0 +2013,8,6,2,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,-2,0,1821,-13,0,0 +2013,4,15,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2053,69,1,2359,62,1,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,18,1,1850,7,0,0 +2013,10,7,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1353,-1,0,1440,-10,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,645,-10,0,1020,-13,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,-3,0,825,-8,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,845,0,0,1100,-1,0,0 +2013,4,18,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,83,1,800,143,1,0 +2013,10,5,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,545,-2,0,1140,-8,0,0 +2013,8,2,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,57,1,1127,37,1,0 +2013,9,9,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1100,-3,0,1149,-14,0,0 +2013,7,23,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1410,-4,0,1619,-16,0,0 +2013,10,8,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1747,12,0,2012,13,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,715,69,1,930,73,1,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1846,-3,0,2144,-10,0,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2215,7,0,20,3,0,0 +2013,9,18,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-12,0,1950,-27,0,0 +2013,7,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,845,1,0,1215,-8,0,0 +2013,8,8,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,950,-6,0,1240,-2,0,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,615,32,1,745,19,1,0 +2013,7,6,6,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-6,0,945,-15,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,935,52,1,1300,30,1,0 +2013,4,17,3,DL,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2300,-1,0,658,-35,0,0 +2013,9,24,2,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-7,0,915,-2,0,0 +2013,8,10,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,0,0,2347,3,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1137,-2,0,1231,-10,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,0,0,1815,-5,0,0 +2013,7,28,7,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1410,-4,0,1810,-20,0,0 +2013,8,12,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,847,-19,0,0 +2013,10,24,4,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,703,-2,0,945,0,0,0 +2013,10,6,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,926,-12,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1347,-5,0,1545,-8,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1230,11,0,1620,2,0,0 +2013,9,24,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-7,0,1728,-13,0,0 +2013,10,22,2,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1003,-9,0,1045,-10,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1124,-5,0,1212,-3,0,0 +2013,4,10,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,727,0,0,909,-6,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,-4,0,1245,-4,0,0 +2013,7,24,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1935,-2,0,2145,2,0,0 +2013,8,6,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1540,89,1,1855,78,1,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,753,-5,0,1149,13,0,0 +2013,10,1,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-3,0,854,-7,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-7,0,1810,-5,0,0 +2013,8,12,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1255,-9,0,1659,-25,0,0 +2013,9,26,4,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1704,-4,0,1932,1,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2100,119,1,2305,117,1,0 +2013,5,20,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,22,1,1425,22,1,0 +2013,4,28,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1040,-4,0,1449,-12,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1735,-6,0,1938,-29,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1635,-3,0,1800,-24,0,0 +2013,7,22,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1722,13,0,1808,5,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1040,4,0,1230,2,0,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1017,24,1,1124,12,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,-11,0,1629,-35,0,0 +2013,4,18,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,2,0,2125,21,1,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1245,20,1,1410,23,1,0 +2013,6,17,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,650,-1,0,720,-12,0,0 +2013,6,4,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1354,6,0,1610,-6,0,0 +2013,7,7,7,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-7,0,1757,-4,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1427,-5,0,1623,-6,0,0 +2013,8,31,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,620,-7,0,1209,-15,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,-4,0,1723,-16,0,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,610,0,0,835,20,1,0 +2013,9,8,7,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,950,-6,0,1310,6,0,0 +2013,5,2,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1859,-15,0,2100,-38,0,0 +2013,10,31,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,55,-10,0,905,-41,0,0 +2013,8,2,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,4,0,927,-4,0,0 +2013,9,28,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1730,-10,0,1950,-30,0,0 +2013,10,6,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1101,82,1,1209,68,1,0 +2013,4,2,2,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,753,-3,0,1340,-18,0,0 +2013,9,4,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1620,28,1,1805,14,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1610,169,1,1740,170,1,0 +2013,4,23,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1701,11,0,1855,10,0,0 +2013,7,17,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-3,0,1414,-1,0,0 +2013,10,24,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1245,0,0,1325,13,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1930,8,0,2310,9,0,0 +2013,6,25,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1910,2,0,1915,18,1,0 +2013,6,16,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,745,-6,0,921,-12,0,0 +2013,4,2,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,615,-3,0,715,-4,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-3,0,1010,-18,0,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1706,-4,0,2111,-10,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,711,-6,0,950,-21,0,0 +2013,5,16,4,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1855,21,1,2148,7,0,0 +2013,5,15,3,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,3,0,1630,2,0,0 +2013,9,18,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,-3,0,1050,-9,0,0 +2013,7,27,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,838,-9,0,1029,-6,0,0 +2013,6,29,6,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,908,-7,0,1400,-2,0,0 +2013,10,18,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1500,26,1,1602,27,1,0 +2013,10,19,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,925,7,0,1035,-6,0,0 +2013,7,16,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2035,-8,0,2140,-31,0,0 +2013,5,7,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1345,-3,0,1515,2,0,0 +2013,6,24,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,52,1,2106,100,1,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2155,48,1,2255,38,1,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1439,-1,0,1600,8,0,0 +2013,5,14,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,645,-7,0,1029,-2,0,0 +2013,5,25,6,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,630,-9,0,1125,8,0,0 +2013,4,25,4,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,23,1,2134,33,1,0 +2013,7,5,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,9,0,1319,6,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1619,6,0,1953,-11,0,0 +2013,7,20,6,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1925,79,1,2230,87,1,0 +2013,8,15,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,7,0,2135,7,0,0 +2013,5,13,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-6,0,2215,4,0,0 +2013,4,24,3,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,-1,0,1727,-9,0,0 +2013,9,8,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1630,18,1,1853,30,1,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,-3,0,1415,-11,0,0 +2013,6,28,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,-4,0,1200,-32,0,0 +2013,5,28,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,1,0,1830,1,0,0 +2013,5,5,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,-4,0,720,-14,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1755,20,1,1922,22,1,0 +2013,8,10,6,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,840,18,1,1135,11,0,0 +2013,4,28,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1920,63,1,1957,67,1,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,-1,0,1005,-4,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,2125,8,0,50,4,0,0 +2013,9,18,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,7,0,2020,-6,0,0 +2013,9,7,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-1,0,1205,-8,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,-5,0,1542,-10,0,0 +2013,6,7,5,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-1,0,805,12,0,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,-2,0,1705,-20,0,0 +2013,7,15,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1817,6,0,2105,3,0,0 +2013,8,30,5,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,25,1,1910,28,1,0 +2013,10,14,1,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1010,-4,0,1225,3,0,0 +2013,6,4,2,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1509,7,0,1845,31,1,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,705,-4,0,824,-16,0,0 +2013,6,26,3,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,0,0,1425,2,0,0 +2013,8,8,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1655,18,1,1923,11,0,0 +2013,4,30,2,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,749,-7,0,1328,-12,0,0 +2013,5,9,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,47,1,1705,46,1,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,7,0,1526,17,1,0 +2013,10,24,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1235,-7,0,1359,-8,0,0 +2013,9,27,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,-5,0,1659,-8,0,0 +2013,7,18,4,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1601,-2,0,1645,-17,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,-2,0,1730,-11,0,0 +2013,6,10,1,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-5,0,1125,27,1,0 +2013,9,3,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1725,-5,0,1933,-17,0,0 +2013,6,9,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,48,1,1828,51,1,0 +2013,7,8,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-8,0,1055,-9,0,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1030,-3,0,1314,-10,0,0 +2013,4,1,1,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1741,-6,0,1912,8,0,0 +2013,8,29,4,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,754,0,0,1059,0,0,0 +2013,10,6,7,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,905,-2,0,1145,-6,0,0 +2013,9,24,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,43,1,1255,37,1,0 +2013,5,13,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1409,19,1,1549,23,1,0 +2013,5,16,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,64,1,1615,54,1,0 +2013,6,18,2,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1500,2,0,1810,-5,0,0 +2013,4,2,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,0,0,1414,-7,0,0 +2013,7,7,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2115,127,1,2235,126,1,0 +2013,7,13,6,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,64,1,2316,99,1,0 +2013,8,13,2,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,39,1,1028,75,1,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2157,-9,0,2237,-21,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2010,9,0,2145,4,0,0 +2013,10,12,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,0,0,1240,-8,0,0 +2013,10,19,6,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1442,-10,0,1605,-25,0,0 +2013,5,30,4,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1336,96,1,1935,114,1,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2020,0,0,2230,-1,0,0 +2013,10,26,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1258,-9,0,1820,-16,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,-7,0,2054,-6,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,6,0,1015,0,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,-6,0,1011,8,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,-2,0,2300,-7,0,0 +2013,10,24,4,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,700,-1,0,930,-3,0,0 +2013,9,19,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-3,0,945,-21,0,0 +2013,5,18,6,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,930,-1,0,1120,-8,0,0 +2013,8,7,3,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1915,-5,0,2140,-19,0,0 +2013,7,11,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-1,0,2000,21,1,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1000,1,0,1259,-12,0,0 +2013,4,18,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1435,13,0,1535,10,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2046,6,0,525,-4,0,0 +2013,5,31,5,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1220,-5,0,1418,-8,0,0 +2013,8,21,3,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1500,-6,0,2020,12,0,0 +2013,6,11,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,19,1,2006,20,1,0 +2013,10,16,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-5,0,2025,-4,0,0 +2013,4,20,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-5,0,1628,-12,0,0 +2013,7,3,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1124,-5,0,1304,-2,0,0 +2013,8,21,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1001,-5,0,1140,-33,0,0 +2013,5,10,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,4,0,1535,2,0,0 +2013,5,1,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,22,1,836,27,1,0 +2013,10,18,5,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,-7,0,1915,-4,0,0 +2013,8,5,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,505,0,0,752,2,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,956,1,0,1225,-7,0,0 +2013,7,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,910,-3,0,1038,-13,0,0 +2013,7,22,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,36,1,2155,41,1,0 +2013,10,8,2,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1629,-1,0,1950,-39,0,0 +2013,7,27,6,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1341,2,0,1431,3,0,0 +2013,8,23,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,755,0,0,855,0,0,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1625,9,0,1806,4,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1630,0,0,1840,-7,0,0 +2013,7,16,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1255,0,0,1512,4,0,0 +2013,4,20,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-3,0,1316,-29,0,0 +2013,7,28,7,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,6,0,914,-3,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,610,-4,0,1125,3,0,0 +2013,5,10,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,0,0,1240,-1,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,-3,0,1339,-3,0,0 +2013,4,16,2,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,16,1,1453,2,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1320,-3,0,1420,-7,0,0 +2013,7,1,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-3,0,1200,-7,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1330,-2,0,2149,7,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,945,-1,0,1220,-13,0,0 +2013,6,22,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,-9,0,1332,-1,0,0 +2013,5,14,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1610,20,1,1956,27,1,0 +2013,8,25,7,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1730,178,1,1905,166,1,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1700,-2,0,1805,-2,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1931,-2,0,2105,-7,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,741,-2,0,1009,-13,0,0 +2013,5,25,6,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1536,5,0,1635,-5,0,0 +2013,6,29,6,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-1,0,835,-5,0,0 +2013,5,28,2,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1115,15,1,1300,3,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-4,0,935,-21,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1350,-4,0,1635,-32,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2005,-3,0,2208,-15,0,0 +2013,5,15,3,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1735,9,0,1835,-2,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,9,0,1715,10,0,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2135,-6,0,2306,8,0,0 +2013,6,5,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,620,-4,0,825,-9,0,0 +2013,5,23,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,655,-1,0,805,7,0,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2010,2,0,2225,-7,0,0 +2013,5,6,1,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,1,0,1210,-1,0,0 +2013,5,25,6,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-4,0,2055,-21,0,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1055,0,0,1716,-23,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2157,-3,0,2334,-9,0,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1415,-3,0,1555,-13,0,0 +2013,4,10,3,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,740,302,1,901,311,1,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1155,0,0,1545,4,0,0 +2013,4,11,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-9,0,641,-4,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,163,1,1949,176,1,0 +2013,9,16,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-6,0,1715,-15,0,0 +2013,9,16,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1740,-10,0,1930,-10,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,-2,0,1047,-9,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1305,1,0,1640,11,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,64,1,1950,48,1,0 +2013,5,27,1,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-10,0,1624,-15,0,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2025,14,0,2150,10,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1055,17,1,1348,1,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,705,-3,0,942,-13,0,0 +2013,10,23,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1908,4,0,2305,-28,0,0 +2013,8,30,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,519,2,0,843,6,0,0 +2013,10,31,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,710,-1,0,813,-3,0,0 +2013,8,9,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,160,1,2154,203,1,0 +2013,6,24,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1215,5,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1355,4,0,1455,1,0,0 +2013,6,17,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1745,5,0,1855,1,0,0 +2013,8,1,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1255,-6,0,1659,-11,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2055,6,0,2150,10,0,0 +2013,4,27,6,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1808,-3,0,2103,-20,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1725,269,1,1918,255,1,0 +2013,9,24,2,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,-8,0,1235,-5,0,0 +2013,8,20,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,819,-2,0,930,3,0,0 +2013,6,14,5,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,8,0,2,-13,0,0 +2013,10,16,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1615,11,0,1815,11,0,0 +2013,8,14,3,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1810,-1,0,1945,4,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2145,13,0,2320,18,1,0 +2013,6,19,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1556,0,0,1826,2,0,0 +2013,9,16,1,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,-6,0,1515,-6,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-4,0,912,3,0,0 +2013,6,18,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1256,11,0,1400,12,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,935,0,0,1104,-4,0,0 +2013,5,23,4,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,700,2,0,905,-10,0,0 +2013,10,30,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-5,0,1634,-2,0,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2030,90,1,2135,100,1,0 +2013,6,14,5,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,39,1,1745,34,1,0 +2013,8,12,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,3,0,1601,9,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1700,3,0,1820,3,0,0 +2013,4,8,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1220,-6,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-3,0,1925,-22,0,0 +2013,5,23,4,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2326,31,1,547,23,1,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1155,-1,0,1455,0,0,0 +2013,5,31,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1630,-8,0,1801,-6,0,0 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1001,12,0,1806,-5,0,0 +2013,5,31,5,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1748,-3,0,2330,-9,0,0 +2013,7,7,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,946,-10,0,1028,-15,0,0 +2013,6,12,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,937,-21,0,0 +2013,10,19,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2147,-2,0,620,-29,0,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,109,1,2322,113,1,0 +2013,5,15,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1236,18,1,1401,26,1,0 +2013,9,2,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-1,0,1310,-12,0,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1505,2,0,1825,-2,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-2,0,1053,-2,0,0 +2013,4,13,6,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1340,-4,0,1630,-2,0,0 +2013,6,18,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1558,247,1,1801,242,1,0 +2013,7,14,7,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1000,8,0,1145,-14,0,0 +2013,7,28,7,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,21,1,1335,12,0,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1600,5,0,1741,19,1,0 +2013,9,22,7,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-4,0,1600,3,0,0 +2013,10,12,6,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1154,-4,0,1440,-11,0,0 +2013,7,18,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,2010,10,0,2325,2,0,0 +2013,7,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,0,,2308,0,1,1 +2013,7,20,6,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1509,-2,0,1620,-1,0,0 +2013,6,13,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,83,1,1934,144,1,0 +2013,8,18,7,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1051,13,0,1445,12,0,0 +2013,8,28,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-11,0,1812,-12,0,0 +2013,4,30,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-9,0,1520,-23,0,0 +2013,8,7,3,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,-6,0,1815,-17,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,2000,56,1,2359,47,1,0 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1950,-6,0,2110,9,0,0 +2013,4,10,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1140,1,0,1310,-10,0,0 +2013,10,29,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-3,0,1640,-11,0,0 +2013,9,12,4,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,545,-4,0,719,-11,0,0 +2013,7,22,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1711,28,1,1943,30,1,0 +2013,6,12,3,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,810,-3,0,1055,3,0,0 +2013,5,12,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1239,-7,0,1500,-24,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1515,6,0,1839,-1,0,0 +2013,6,10,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1340,-2,0,1510,-30,0,0 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2045,20,1,2335,8,0,0 +2013,4,22,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1341,94,1,1646,99,1,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,23,1,1930,17,1,0 +2013,5,6,1,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,-7,0,1255,2,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1515,9,0,1745,-19,0,0 +2013,6,10,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,120,24,1,615,29,1,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1820,13,0,2250,9,0,0 +2013,5,7,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1300,0,0,1415,11,0,0 +2013,5,21,2,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,716,17,1,801,5,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,8,0,1820,-15,0,0 +2013,4,25,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,15,1,1515,20,1,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1620,-5,0,1705,-5,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-1,0,1834,-10,0,0 +2013,6,21,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1334,-7,0,1515,16,1,0 +2013,8,1,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1333,0,,1539,0,1,1 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,88,1,1506,71,1,0 +2013,10,18,5,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,811,-7,0,931,-12,0,0 +2013,9,7,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1510,0,0,1713,-19,0,0 +2013,10,31,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1843,6,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,14893,Sacramento International,Sacramento,CA,1940,7,0,2255,57,1,0 +2013,10,11,5,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1344,-7,0,1517,-11,0,0 +2013,6,26,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1930,3,0,2144,1,0,0 +2013,6,4,2,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,756,4,0,1113,-11,0,0 +2013,8,29,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,12,0,2210,6,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-7,0,1033,-10,0,0 +2013,4,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,-3,0,2205,-8,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1945,-1,0,2050,-8,0,0 +2013,8,25,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,600,-16,0,734,-38,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1622,-6,0,1940,-12,0,0 +2013,9,26,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,1,0,1515,-9,0,0 +2013,5,5,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,500,-8,0,643,-12,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,700,1,0,945,-17,0,0 +2013,5,20,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1422,-5,0,1442,-11,0,0 +2013,7,22,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2010,30,1,2130,156,1,0 +2013,8,30,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,4,0,1110,0,0,0 +2013,4,15,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,1955,-7,0,2145,-20,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,857,8,0,1113,19,1,0 +2013,4,1,1,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1151,55,1,1326,46,1,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2200,-4,0,2329,-16,0,0 +2013,10,8,2,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1333,9,0,1435,-7,0,0 +2013,7,18,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1235,-8,0,0 +2013,8,6,2,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1705,4,0,2105,-2,0,0 +2013,8,20,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1513,-6,0,1815,-26,0,0 +2013,4,26,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,940,35,1,1114,58,1,0 +2013,6,16,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-2,0,1128,-3,0,0 +2013,8,19,1,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1454,4,0,1708,9,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2015,-5,0,2225,-27,0,0 +2013,6,6,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1850,114,1,2023,117,1,0 +2013,6,13,4,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1404,0,,1530,0,1,1 +2013,8,27,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1625,0,0,1834,-1,0,0 +2013,9,10,2,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-6,0,808,-1,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1905,-6,0,2130,-10,0,0 +2013,8,17,6,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1642,-3,0,1721,3,0,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,945,13,0,1055,16,1,0 +2013,8,22,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-6,0,1415,-13,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-4,0,1307,-9,0,0 +2013,5,17,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,-6,0,1949,6,0,0 +2013,9,16,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,-7,0,2036,-17,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1725,-3,0,1951,-26,0,0 +2013,4,28,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,750,1,0,1145,-6,0,0 +2013,7,5,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1837,1,0,1919,1,0,0 +2013,8,31,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2247,-8,0,644,1,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2125,3,0,2355,-7,0,0 +2013,6,5,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1124,-4,0,1627,-8,0,0 +2013,5,1,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-1,0,1650,-13,0,0 +2013,8,10,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,-1,0,2225,-20,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1431,13,0,1535,11,0,0 +2013,6,27,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,11,0,1250,10,0,0 +2013,9,4,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1035,-3,0,1131,-8,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,849,-5,0,1623,16,1,0 +2013,4,3,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,-4,0,945,-15,0,0 +2013,8,24,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1330,-4,0,1400,4,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,1,0,1110,-4,0,0 +2013,8,12,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,708,29,1,738,36,1,0 +2013,10,15,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,935,-1,0,1050,-14,0,0 +2013,6,5,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,950,-1,0,1204,-11,0,0 +2013,8,8,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,917,116,1,1451,90,1,0 +2013,4,9,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1016,67,1,1143,54,1,0 +2013,7,25,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,835,127,1,933,124,1,0 +2013,5,18,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,1,0,900,1,0,0 +2013,9,7,6,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,955,0,0,1540,-7,0,0 +2013,5,22,3,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,7,0,2100,59,1,0 +2013,10,25,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-7,0,935,9,0,0 +2013,6,18,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,0,0,1020,8,0,0 +2013,8,11,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,959,-4,0,1225,5,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1140,79,1,1330,61,1,0 +2013,9,9,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1645,-5,0,1752,-12,0,0 +2013,4,6,6,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1430,-7,0,1603,3,0,0 +2013,10,1,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,929,-5,0,1132,-17,0,0 +2013,6,10,1,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,0,0,920,-4,0,0 +2013,6,12,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,950,20,1,1134,9,0,0 +2013,10,3,4,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1100,-11,0,1351,-27,0,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-3,0,1305,13,0,0 +2013,9,27,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1855,138,1,2000,132,1,0 +2013,5,24,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1020,-2,0,1136,-7,0,0 +2013,4,4,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,925,46,1,1055,31,1,0 +2013,7,29,1,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1745,5,0,2030,4,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1235,33,1,1433,28,1,0 +2013,7,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2355,-6,0,723,-4,0,0 +2013,9,15,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-2,0,2230,4,0,0 +2013,7,3,3,US,14893,Sacramento International,Sacramento,CA,14100,Philadelphia International,Philadelphia,PA,2159,-3,0,602,10,0,0 +2013,4,28,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,616,-8,0,1221,5,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1810,66,1,1930,65,1,0 +2013,4,22,1,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-1,0,2049,-19,0,0 +2013,10,16,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1045,7,0,1300,6,0,0 +2013,9,18,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1737,-9,0,1928,-21,0,0 +2013,7,8,1,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,3,0,1541,-1,0,0 +2013,7,17,3,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-11,0,718,-15,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1015,-4,0,1124,-8,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1355,7,0,1520,-14,0,0 +2013,10,31,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1515,-8,0,1609,-24,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,8,0,1810,8,0,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1527,152,1,1701,150,1,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2120,1,0,2240,-10,0,0 +2013,10,1,2,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-4,0,1524,-10,0,0 +2013,6,16,7,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,7,0,1010,29,1,0 +2013,8,9,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-8,0,602,17,1,0 +2013,5,3,5,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-11,0,1645,1,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,0,0,1351,-8,0,0 +2013,8,8,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,44,1,854,54,1,0 +2013,9,11,3,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1934,-4,0,2053,-7,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1650,5,0,1805,-4,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,715,-2,0,846,-28,0,0 +2013,4,16,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1008,-9,0,1148,-14,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1909,69,1,2006,64,1,0 +2013,7,29,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,-2,0,1015,-10,0,0 +2013,7,15,1,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1258,-3,0,1526,-4,0,0 +2013,7,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1959,-4,0,2,20,1,0 +2013,4,28,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,-1,0,1845,-16,0,0 +2013,9,6,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1828,-9,0,2024,-9,0,0 +2013,10,6,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,545,-6,0,1140,-2,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-3,0,1114,-4,0,0 +2013,5,25,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,822,-3,0,919,-5,0,0 +2013,6,22,6,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1905,-5,0,1935,-2,0,0 +2013,10,28,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2052,1,0,2212,5,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1705,-4,0,1800,-23,0,0 +2013,9,5,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1845,-11,0,1951,-11,0,0 +2013,8,16,5,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,0,0,1425,-10,0,0 +2013,6,17,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,27,-3,0,633,-11,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,735,-5,0,929,-11,0,0 +2013,7,7,7,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-3,0,1005,-11,0,0 +2013,6,19,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,5,0,1210,0,0,0 +2013,4,22,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1013,6,0,1412,16,1,0 +2013,7,16,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1720,11,0,1825,2,0,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2050,7,0,2200,9,0,0 +2013,9,23,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,603,76,1,723,72,1,0 +2013,7,14,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1620,-5,0,1912,-1,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,-1,0,1933,-19,0,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1622,6,0,1910,-20,0,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,18,1,1035,24,1,0 +2013,4,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,941,-7,0,1151,-10,0,0 +2013,8,23,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1215,0,0,1835,-22,0,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,,1519,0,1,1 +2013,6,22,6,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1729,20,1,2025,-6,0,0 +2013,5,6,1,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1842,-13,0,2059,-16,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,710,-2,0,1155,-7,0,0 +2013,4,9,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-8,0,2230,-16,0,0 +2013,10,9,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,9,0,2011,-6,0,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1758,132,1,2018,104,1,0 +2013,7,23,2,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-2,0,758,-14,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1710,-1,0,1958,-8,0,0 +2013,10,25,5,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1725,20,1,2002,9,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,726,2,0,854,12,0,0 +2013,6,2,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1556,124,1,1641,115,1,0 +2013,8,1,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1640,27,1,1808,25,1,0 +2013,4,12,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1630,-3,0,1835,12,0,0 +2013,9,18,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2016,-5,0,2135,-5,0,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1556,-2,0,2108,-14,0,0 +2013,10,28,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,720,-2,0,1330,-5,0,0 +2013,7,6,6,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-6,0,1305,25,1,0 +2013,7,31,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-5,0,2030,-7,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,2,0,1810,1,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-10,0,1252,-9,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1310,-1,0,1400,19,1,0 +2013,8,7,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,0,0,1356,2,0,0 +2013,9,28,6,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1216,-7,0,1856,-21,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2155,111,1,2245,108,1,0 +2013,7,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1412,1,0,1755,0,0,0 +2013,8,20,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-4,0,1548,-3,0,0 +2013,4,25,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,902,-5,0,1705,-27,0,0 +2013,4,1,1,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1855,-2,0,2206,-16,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2025,10,0,2155,-6,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,27,1,1750,5,0,0 +2013,4,17,3,F9,14635,Southwest Florida International,Fort Myers,FL,11292,Denver International,Denver,CO,1322,345,1,1523,356,1,0 +2013,4,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1535,-3,0,1755,-11,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,20,1,100,15,1,0 +2013,8,2,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,35,1,1632,7,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-1,0,905,-10,0,0 +2013,10,29,2,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1700,15,1,2010,-11,0,0 +2013,6,12,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1840,41,1,2005,41,1,0 +2013,6,26,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-7,0,1200,-5,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-4,0,1840,-14,0,0 +2013,4,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,0,,1500,0,1,1 +2013,8,5,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1525,-5,0,1625,-15,0,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1050,0,0,1317,5,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,950,0,0,1715,-15,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,945,-2,0,1415,-29,0,0 +2013,10,19,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,8,0,1645,2,0,0 +2013,7,11,4,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1425,0,,1607,0,1,1 +2013,4,22,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1558,1,0,1642,3,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1236,-1,0,1418,-7,0,0 +2013,10,20,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1430,0,0,1610,1,0,0 +2013,9,11,3,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1306,-9,0,2128,-22,0,0 +2013,7,24,3,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-5,0,1305,-3,0,0 +2013,6,23,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1650,15,1,1725,18,1,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1815,96,1,2044,92,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1720,1,0,2055,-13,0,0 +2013,4,23,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,725,-6,0,1014,12,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,22,1,2245,9,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1625,0,0,1745,3,0,0 +2013,10,24,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,845,-1,0,1053,-2,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1345,3,0,1349,2,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1315,7,0,1510,-4,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,958,-2,0,1133,-3,0,0 +2013,4,14,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,745,-7,0,0 +2013,8,4,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1223,83,1,1319,87,1,0 +2013,7,17,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,104,1,1729,128,1,0 +2013,6,8,6,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1436,-3,0,1615,-16,0,0 +2013,5,29,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,15,1,2148,49,1,0 +2013,7,18,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1115,15,1,1135,5,0,0 +2013,5,9,4,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,815,17,1,928,6,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1950,50,1,2221,24,1,0 +2013,7,17,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-3,0,815,-26,0,0 +2013,8,23,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1854,-4,0,2017,7,0,0 +2013,8,26,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,847,-1,0,0 +2013,4,9,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1017,-7,0,1135,-2,0,0 +2013,10,18,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1710,13,0,1835,4,0,0 +2013,4,30,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-4,0,1415,-16,0,0 +2013,5,19,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1520,1,0,1636,14,0,0 +2013,5,14,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-7,0,815,-24,0,0 +2013,7,3,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1135,92,1,1235,88,1,0 +2013,10,13,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,545,-10,0,801,5,0,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,24,1,2140,27,1,0 +2013,5,28,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,304,1,2020,294,1,0 +2013,5,8,3,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1350,198,1,1505,245,1,0 +2013,9,14,6,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1045,45,1,1440,71,1,0 +2013,4,6,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,-6,0,1648,-9,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1116,23,1,1451,-2,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,0,0,1320,-10,0,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1950,25,1,2155,14,0,0 +2013,5,2,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-2,0,1230,-15,0,0 +2013,7,23,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,830,0,0,940,-7,0,0 +2013,4,29,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-1,0,1817,-7,0,0 +2013,5,27,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1635,-8,0,1655,-18,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,-4,0,2059,-13,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2148,0,0,2354,-4,0,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-1,0,800,-17,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2118,53,1,2345,37,1,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-7,0,1155,-19,0,0 +2013,4,24,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1835,108,1,2029,102,1,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1526,136,1,1535,146,1,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1016,-7,0,1150,-11,0,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1640,-4,0,1802,-1,0,0 +2013,8,18,7,EV,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2017,2,0,2103,-11,0,0 +2013,4,7,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-4,0,1557,-24,0,0 +2013,9,26,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,2005,-1,0,0 +2013,8,8,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-10,0,2153,-12,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,700,27,1,815,17,1,0 +2013,5,5,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2115,-7,0,522,-11,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,24,1,901,13,0,0 +2013,7,1,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2130,-5,0,2240,-11,0,0 +2013,8,6,2,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-7,0,2046,-28,0,0 +2013,5,13,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1909,89,1,2214,68,1,0 +2013,4,18,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1201,15,1,2041,37,1,0 +2013,8,15,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-1,0,1853,6,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,0,0,2352,-9,0,0 +2013,9,18,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,648,-4,0,841,-10,0,0 +2013,5,22,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,915,-5,0,1515,-14,0,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,920,3,0,1235,-4,0,0 +2013,8,4,7,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,635,5,0,725,-2,0,0 +2013,6,3,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1900,2,0,2025,-5,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2146,0,0,2346,-15,0,0 +2013,9,29,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,800,-8,0,850,-3,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1516,5,0,1650,1,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,838,43,1,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,6,0,1455,6,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1625,7,0,2030,-15,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1512,5,0,1630,0,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1305,-1,0,1405,-6,0,0 +2013,9,4,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2309,12,0,2359,1,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2120,12,0,2302,1,0,0 +2013,8,1,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,62,1,2020,94,1,0 +2013,4,1,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1420,9,0,1535,1,0,0 +2013,9,14,6,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,640,11,0,755,-5,0,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1739,92,1,2304,71,1,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1730,0,0,2108,-16,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-1,0,1145,-11,0,0 +2013,6,4,2,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,816,-2,0,1400,-11,0,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1735,-3,0,1906,7,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2115,0,0,2300,7,0,0 +2013,9,18,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,1,0,1725,8,0,0 +2013,7,14,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,0,0,1116,-1,0,0 +2013,8,8,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1135,20,1,1254,13,0,0 +2013,7,23,2,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,720,1,0,945,-16,0,0 +2013,6,12,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,3,0,2049,9,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1020,4,0,1210,6,0,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1730,-2,0,2039,-58,0,0 +2013,10,1,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,-1,0,1717,10,0,0 +2013,4,20,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,930,-4,0,1155,-16,0,0 +2013,4,21,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2000,17,1,2325,-14,0,0 +2013,4,19,5,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1155,38,1,1405,14,0,0 +2013,6,12,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2341,24,1,534,26,1,0 +2013,8,15,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-7,0,1237,3,0,0 +2013,6,6,4,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1352,-7,0,1424,-9,0,0 +2013,10,27,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1725,76,1,1855,92,1,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1015,20,1,1105,25,1,0 +2013,4,30,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,31,1,1600,28,1,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1215,71,1,1545,71,1,0 +2013,10,3,4,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1755,10,0,1915,-1,0,0 +2013,8,25,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1559,-4,0,2108,22,1,0 +2013,6,25,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1353,-8,0,1601,-20,0,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1640,6,0,1835,-4,0,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1530,-7,0,1800,-38,0,0 +2013,9,13,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1210,-7,0,1255,-2,0,0 +2013,6,3,1,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1115,21,1,1235,26,1,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2156,-7,0,34,-22,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1027,5,0,1232,1,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1525,-2,0,1915,-7,0,0 +2013,8,10,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-5,0,1859,-28,0,0 +2013,10,4,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,618,-3,0,755,-9,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,18,1,1005,10,0,0 +2013,8,4,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2235,2,0,609,-5,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-3,0,1349,-21,0,0 +2013,5,14,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-1,0,1445,-3,0,0 +2013,9,2,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,7,0,1310,7,0,0 +2013,9,26,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,-5,0,1316,-16,0,0 +2013,6,4,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,191,1,2033,176,1,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,805,16,1,850,19,1,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,-1,0,1825,15,1,0 +2013,9,5,4,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,615,-6,0,930,-18,0,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,18,1,1745,33,1,0 +2013,6,13,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1420,42,1,1712,43,1,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1731,4,0,1835,-1,0,0 +2013,8,28,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,800,-1,0,915,-3,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-1,0,938,-8,0,0 +2013,8,4,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1811,-1,0,2000,-5,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1425,4,0,1655,3,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1650,18,1,1815,26,1,0 +2013,6,27,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,854,14,0,0 +2013,6,27,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,2,0,904,-2,0,0 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2055,-4,0,2305,-1,0,0 +2013,9,18,3,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,739,15,1,953,5,0,0 +2013,5,1,3,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-5,0,916,5,0,0 +2013,4,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1630,23,1,1745,27,1,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1155,-1,0,1315,-2,0,0 +2013,4,29,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1459,-4,0,1715,-10,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,-3,0,1613,-3,0,0 +2013,7,14,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,730,-4,0,921,-12,0,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,902,7,0,1606,0,0,0 +2013,7,3,3,HA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1355,6,0,2205,6,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,745,0,0,1020,4,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1705,-3,0,2015,4,0,0 +2013,4,30,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,704,0,0,909,-12,0,0 +2013,10,24,4,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,950,-6,0,1111,-8,0,0 +2013,8,11,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,845,10,0,1112,-16,0,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,16,1,1440,8,0,0 +2013,4,24,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1008,-2,0,1159,-13,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,25,1,2328,24,1,0 +2013,10,29,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,952,54,1,1116,59,1,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,129,1,1558,163,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,650,-1,0,816,-16,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1850,2,0,16,-3,0,0 +2013,4,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1655,10,0,1900,-11,0,0 +2013,7,17,3,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,52,1,2103,56,1,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,6,0,1220,2,0,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,0,,1630,0,1,1 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,935,0,0,1045,9,0,0 +2013,9,5,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1535,-3,0,1859,-8,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1510,-6,0,1648,-20,0,0 +2013,10,11,5,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1855,51,1,2040,29,1,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-5,0,1023,-5,0,0 +2013,6,25,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,-1,0,1805,-4,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,9,0,1355,5,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,-2,0,1154,-15,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1050,-2,0,1223,-16,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,600,-3,0,1110,-16,0,0 +2013,6,4,2,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-1,0,1318,-10,0,0 +2013,7,12,5,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1930,-3,0,2125,-19,0,0 +2013,4,16,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1245,3,0,0 +2013,6,19,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1525,5,0,1858,2,0,0 +2013,6,14,5,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1206,-7,0,1708,-6,0,0 +2013,6,21,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1747,-2,0,1956,-7,0,0 +2013,6,20,4,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,-4,0,2220,-40,0,0 +2013,7,18,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,645,-8,0,844,-25,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2113,7,0,2338,97,1,0 +2013,10,2,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1539,-10,0,1704,-11,0,0 +2013,6,24,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1534,-5,0,1852,-20,0,0 +2013,8,26,1,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,933,7,0,1332,0,0,0 +2013,10,6,7,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1735,4,0,1750,6,0,0 +2013,6,4,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1705,-6,0,1810,-7,0,0 +2013,5,2,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2050,10,0,2337,12,0,0 +2013,7,23,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,915,6,0,1035,0,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,-6,0,1558,-13,0,0 +2013,9,1,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-6,0,1934,-13,0,0 +2013,9,8,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1105,0,,1215,0,1,1 +2013,10,6,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2045,11,0,2327,8,0,0 +2013,10,25,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-5,0,1636,-21,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,741,3,0,911,-2,0,0 +2013,5,7,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,745,-5,0,1055,14,0,0 +2013,7,27,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1225,69,1,1402,76,1,0 +2013,8,1,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,45,1,1916,71,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2150,-2,0,2223,-16,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1515,-5,0,1850,-16,0,0 +2013,4,21,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-1,0,1344,-13,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,6,0,1730,-4,0,0 +2013,5,17,5,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2200,-2,0,2312,-5,0,0 +2013,10,20,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-6,0,1116,2,0,0 +2013,10,20,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1620,-1,0,1755,-28,0,0 +2013,5,27,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1032,-4,0,1430,-7,0,0 +2013,9,30,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-5,0,1937,-20,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,945,2,0,1350,-8,0,0 +2013,5,25,6,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1735,36,1,1915,33,1,0 +2013,8,28,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1530,-9,0,1827,-1,0,0 +2013,5,30,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1853,0,,1913,0,1,1 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1925,-2,0,2240,-10,0,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,-8,0,1421,-21,0,0 +2013,9,30,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,64,1,1755,74,1,0 +2013,8,5,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1040,0,0,1200,-2,0,0 +2013,8,23,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1610,-7,0,1940,-17,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1405,22,1,1810,17,1,0 +2013,7,31,3,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1234,30,1,1541,31,1,0 +2013,9,12,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,700,0,0,1056,-13,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,0,0,1617,-10,0,0 +2013,8,26,1,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,720,-4,0,940,-51,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,13,0,1645,4,0,0 +2013,7,17,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1319,-8,0,1405,-7,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1201,-1,0,1330,-14,0,0 +2013,7,15,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-4,0,2110,9,0,0 +2013,7,4,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,-6,0,2030,-2,0,0 +2013,5,28,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1125,4,0,1225,5,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2025,-1,0,2115,-14,0,0 +2013,8,10,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1520,2,0,1635,-1,0,0 +2013,5,31,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2150,41,1,2315,38,1,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1310,15,1,1647,5,0,0 +2013,5,14,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1552,-9,0,2359,-42,0,0 +2013,4,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,15,1,1525,15,1,0 +2013,8,31,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1000,-3,0,1404,-10,0,0 +2013,8,29,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1246,-2,0,1510,3,0,0 +2013,8,24,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-1,0,1741,25,1,0 +2013,5,20,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1530,1,0,1729,10,0,0 +2013,7,12,5,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,835,-8,0,1215,3,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-5,0,1905,-11,0,0 +2013,4,2,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1345,-4,0,1434,4,0,0 +2013,8,28,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,805,-14,0,0 +2013,5,10,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1545,19,1,1725,10,0,0 +2013,4,13,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1640,-5,0,1843,-7,0,0 +2013,8,5,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-1,0,1612,2,0,0 +2013,10,17,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,11,0,1922,22,1,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,0,0,1915,-18,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1251,-3,0,1839,-5,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-3,0,2143,9,0,0 +2013,4,8,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1917,139,1,2048,146,1,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1811,28,1,1849,17,1,0 +2013,4,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,4,0,1824,0,0,0 +2013,10,19,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,857,0,0,1027,21,1,0 +2013,7,18,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-2,0,1709,5,0,0 +2013,8,21,3,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1340,-13,0,0 +2013,7,21,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-1,0,1950,-7,0,0 +2013,6,24,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1323,-6,0,1635,-29,0,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,26,1,2115,11,0,0 +2013,7,14,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,800,-4,0,935,-8,0,0 +2013,9,22,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1505,-5,0,1550,-17,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,645,-6,0,822,-16,0,0 +2013,6,7,5,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,4,0,1940,-4,0,0 +2013,9,24,2,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1117,6,0,1240,4,0,0 +2013,10,17,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-2,0,1500,3,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,940,-3,0,1116,-10,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,1,0,2215,-15,0,0 +2013,7,11,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,2,0,1010,9,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,0,0,1109,-5,0,0 +2013,10,27,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1515,-4,0,1630,-14,0,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,15,1,2200,-1,0,0 +2013,6,25,2,EV,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2032,1,0,2119,-6,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,0,0,2131,-8,0,0 +2013,9,20,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-5,0,750,-6,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,635,-3,0,820,-5,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,202,1,2122,215,1,0 +2013,8,15,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1905,2,0,2005,3,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,0,0,2345,-7,0,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,38,1,1210,14,0,0 +2013,8,19,1,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-7,0,500,-13,0,0 +2013,4,2,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,3,0,1110,20,1,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1100,1,0,1200,2,0,0 +2013,7,4,4,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,136,1,1805,128,1,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1225,51,1,1345,34,1,0 +2013,10,24,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-9,0,2055,-17,0,0 +2013,8,30,5,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,930,-4,0,0 +2013,8,29,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1551,-15,0,2000,-24,0,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,3,0,2050,6,0,0 +2013,10,3,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-5,0,940,-3,0,0 +2013,6,10,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1906,-8,0,2229,-9,0,0 +2013,7,9,2,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,1515,-3,0,2105,-7,0,0 +2013,8,9,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1817,37,1,1918,35,1,0 +2013,9,28,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,750,0,0,1045,4,0,0 +2013,9,1,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1247,0,0,1443,13,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1955,36,1,2131,28,1,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1254,-2,0,1754,-19,0,0 +2013,8,13,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,645,1,0,700,0,0,0 +2013,10,17,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1015,-1,0,1140,-10,0,0 +2013,9,1,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1009,8,0,1151,-9,0,0 +2013,4,2,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1403,-6,0,0 +2013,8,1,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,644,19,1,825,22,1,0 +2013,5,3,5,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-3,0,1510,-21,0,0 +2013,6,9,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1925,-4,0,2113,-18,0,0 +2013,4,8,1,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,606,-2,0,815,-30,0,0 +2013,5,16,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1035,10,0,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1305,-6,0,1438,-15,0,0 +2013,8,14,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,0,0,2056,3,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1905,20,1,2018,6,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1935,-3,0,2128,-20,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1045,14,0,1303,13,0,0 +2013,7,28,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,-7,0,1215,13,0,0 +2013,10,14,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1534,0,0,1855,-6,0,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,22,1,2045,24,1,0 +2013,10,14,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1505,-7,0,1625,-16,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,95,1,1915,88,1,0 +2013,10,23,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-6,0,2053,10,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1015,3,0,1221,-8,0,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,905,0,0,1115,-8,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,900,-4,0,1042,-9,0,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1245,-2,0,1613,-18,0,0 +2013,5,17,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1320,6,0,1446,8,0,0 +2013,5,7,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-5,0,1423,-26,0,0 +2013,5,14,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2110,-8,0,2355,-10,0,0 +2013,4,21,7,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,3,0,2020,-16,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1710,25,1,2300,38,1,0 +2013,6,8,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1850,-1,0,2028,-11,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2240,-5,0,21,-15,0,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,655,-3,0,1000,-8,0,0 +2013,10,25,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,1,0,2125,68,1,0 +2013,6,14,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1335,-5,0,1450,11,0,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1940,-2,0,2150,-18,0,0 +2013,8,16,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-4,0,1105,-4,0,0 +2013,7,8,1,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-4,0,2244,-15,0,0 +2013,7,6,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2205,-3,0,10,-8,0,0 +2013,6,11,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1540,0,0,1625,8,0,0 +2013,4,2,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2005,-3,0,2145,-7,0,0 +2013,4,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1550,0,0,1925,-17,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1340,17,1,1645,30,1,0 +2013,4,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2039,-9,0,2225,-4,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,720,0,0,1100,7,0,0 +2013,7,23,2,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1655,4,0,1910,-9,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2155,42,1,40,28,1,0 +2013,8,5,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,4,0,2015,-6,0,0 +2013,7,12,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,-5,0,10,0,0,0 +2013,4,10,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1945,200,1,2240,224,1,0 +2013,6,2,7,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,1005,0,0,1300,-15,0,0 +2013,9,11,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1425,-1,0,2255,46,1,0 +2013,8,6,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-1,0,1707,-10,0,0 +2013,5,17,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,4,0,1825,1,0,0 +2013,7,7,7,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,0,0,2056,0,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1356,18,1,1914,-4,0,0 +2013,4,19,5,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1500,-3,0,1621,-3,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-1,0,1912,0,0,0 +2013,10,6,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1210,63,1,1350,51,1,0 +2013,9,18,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1345,-7,0,1636,-11,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-1,0,1409,2,0,0 +2013,4,17,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,17,1,1224,102,1,0 +2013,5,9,4,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,-3,0,1105,-11,0,0 +2013,5,6,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2145,1,0,32,-13,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2309,-4,0,2359,-3,0,0 +2013,8,28,3,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,27,1,1716,37,1,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2300,110,1,2350,106,1,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-7,0,1315,0,0,0 +2013,6,8,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1025,21,1,1345,7,0,0 +2013,6,3,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1442,3,0,1723,-12,0,0 +2013,10,25,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,-3,0,2050,12,0,0 +2013,5,9,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1554,97,1,1820,92,1,0 +2013,9,5,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1030,0,,1150,0,1,1 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,22,1,1415,-3,0,0 +2013,9,7,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-12,0,1345,-30,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1945,-3,0,2128,-18,0,0 +2013,10,3,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1315,0,0,1415,9,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,726,-3,0,748,-7,0,0 +2013,5,30,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1535,-3,0,1640,-11,0,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,43,1,2009,32,1,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,800,-4,0,1055,-11,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1445,57,1,1545,44,1,0 +2013,7,9,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,829,-5,0,1143,-22,0,0 +2013,4,13,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1755,-4,0,1948,2,0,0 +2013,4,8,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1944,101,1,2102,96,1,0 +2013,8,10,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,-6,0,1840,4,0,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1407,-7,0,1551,-23,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,1,0,1515,-24,0,0 +2013,8,16,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-2,0,1928,-16,0,0 +2013,7,12,5,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,20,1,1941,25,1,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,-1,0,1810,-4,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,88,1,1835,86,1,0 +2013,5,28,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1815,11,0,2125,32,1,0 +2013,8,23,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1755,-3,0,1925,0,0,0 +2013,10,9,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-5,0,934,-22,0,0 +2013,9,22,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,850,9,0,1051,-1,0,0 +2013,10,8,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,5,0,1940,-4,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,5,0,1735,9,0,0 +2013,10,15,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,710,-6,0,914,-6,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1050,0,0,1515,2,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,720,8,0,855,-1,0,0 +2013,7,10,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,545,58,1,645,82,1,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1742,13,0,1940,17,1,0 +2013,7,16,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1552,57,1,1845,62,1,0 +2013,7,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1907,29,1,2023,21,1,0 +2013,9,17,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1435,0,0,1545,-8,0,0 +2013,9,15,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-2,0,1346,-17,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-5,0,838,-10,0,0 +2013,9,27,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1845,12,0,2005,9,0,0 +2013,5,30,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1233,-6,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,926,12,0,1050,0,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-3,0,912,-14,0,0 +2013,7,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-6,0,853,-10,0,0 +2013,10,8,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,-7,0,833,-16,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,-5,0,1402,1,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,705,1,0,925,7,0,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-1,0,1055,-5,0,0 +2013,8,17,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,4,0,2110,-15,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1840,0,0,1945,-6,0,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1945,-1,0,50,-12,0,0 +2013,5,17,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,-5,0,1040,-2,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,745,-5,0,936,-14,0,0 +2013,5,29,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1210,8,0,1255,-3,0,0 +2013,7,6,6,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,845,1,0,1155,-13,0,0 +2013,10,18,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,5,0,1159,-9,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,0,0,1730,-6,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1000,13,0,1720,0,0,0 +2013,5,27,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-4,0,1058,-14,0,0 +2013,6,28,5,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,713,-7,0,1120,-13,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1857,21,1,2051,6,0,0 +2013,6,23,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-2,0,1825,-20,0,0 +2013,4,7,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1906,15,1,2108,5,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,-2,0,1830,1,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,718,-5,0,831,-8,0,0 +2013,9,28,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-3,0,2125,-7,0,0 +2013,7,2,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,-10,0,2118,13,0,0 +2013,9,17,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1329,-4,0,1444,-14,0,0 +2013,10,15,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-5,0,1900,-8,0,0 +2013,6,23,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2135,-1,0,2306,10,0,0 +2013,9,26,4,UA,12264,Washington Dulles International,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1707,5,0,1910,-4,0,0 +2013,6,15,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1310,6,0,1553,16,1,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,832,3,0,935,-8,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,824,-3,0,1329,-7,0,0 +2013,9,28,6,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,-4,0,1915,4,0,0 +2013,9,18,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-1,0,1434,-3,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,850,-2,0,1015,-5,0,0 +2013,5,2,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1700,-8,0,1751,-9,0,0 +2013,9,25,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,950,0,0,1100,-3,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2025,148,1,2227,185,1,0 +2013,4,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,914,-3,0,1126,-5,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,835,23,1,1005,23,1,0 +2013,4,21,7,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,835,0,0,900,-6,0,0 +2013,6,11,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,845,-9,0,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,29,1,1133,35,1,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1455,1,0,1720,-4,0,0 +2013,8,15,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,4,0,1424,-7,0,0 +2013,8,26,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,659,-4,0,810,-13,0,0 +2013,7,6,6,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2159,11,0,548,11,0,0 +2013,8,16,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,0,0,2003,15,1,0 +2013,8,30,5,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,0,0,1007,-10,0,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,14100,Philadelphia International,Philadelphia,PA,1518,1,0,1628,25,1,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1110,0,0,1350,-10,0,0 +2013,6,5,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2125,37,1,2225,31,1,0 +2013,7,6,6,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1307,13,0,1800,-3,0,0 +2013,6,5,3,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-3,0,1006,-3,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1723,-1,0,2245,-7,0,0 +2013,9,10,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,7,0,1705,-10,0,0 +2013,7,9,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,0,0,1245,-5,0,0 +2013,4,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1346,0,0,1432,10,0,0 +2013,4,16,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1455,9,0,1620,11,0,0 +2013,8,16,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,3,0,1030,-25,0,0 +2013,6,22,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1235,18,1,1345,14,0,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2006,-1,0,2103,-13,0,0 +2013,4,17,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1417,0,,1614,0,1,1 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2220,3,0,2235,5,0,0 +2013,5,21,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,836,-6,0,944,0,0,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,16,1,1815,0,0,0 +2013,5,16,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1402,1,0,1745,-18,0,0 +2013,10,24,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1840,13,0,2005,3,0,0 +2013,6,17,1,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,2000,-9,0,2205,-4,0,0 +2013,7,16,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,17,1,1633,6,0,0 +2013,8,12,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-11,0,2226,-9,0,0 +2013,5,31,5,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1318,118,1,1814,123,1,0 +2013,10,18,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1645,-1,0,1745,-5,0,0 +2013,5,23,4,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,810,-1,0,1050,-4,0,0 +2013,5,23,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1730,-3,0,1855,-9,0,0 +2013,6,6,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-6,0,1758,-8,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1753,36,1,1915,39,1,0 +2013,10,18,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,0,0,1410,5,0,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2150,0,0,25,-8,0,0 +2013,6,29,6,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,846,7,0,1141,12,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1402,-7,0,1752,-15,0,0 +2013,5,20,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-1,0,1722,-7,0,0 +2013,8,20,2,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1445,97,1,1701,76,1,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1150,-7,0,1629,30,1,0 +2013,5,29,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-8,0,1105,2,0,0 +2013,7,31,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1315,14,0,1616,13,0,0 +2013,6,1,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,25,1,2100,15,1,0 +2013,6,11,2,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,805,0,,926,0,1,1 +2013,5,19,7,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1850,0,0,2105,-8,0,0 +2013,9,27,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1700,-1,0,2017,25,1,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1510,-3,0,1634,-18,0,0 +2013,5,3,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1800,-10,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,915,-3,0,1150,-9,0,0 +2013,4,15,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1610,0,0,1724,-6,0,0 +2013,6,11,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-1,0,2055,-5,0,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-5,0,1234,16,1,0 +2013,7,22,1,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,953,1,0,1445,-7,0,0 +2013,5,25,6,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,-6,0,2233,-13,0,0 +2013,6,1,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-7,0,2134,-22,0,0 +2013,9,23,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1432,5,0,1559,5,0,0 +2013,5,19,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1205,20,1,1750,42,1,0 +2013,7,8,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1700,151,1,1816,154,1,0 +2013,5,6,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,2045,-4,0,2240,-12,0,0 +2013,7,7,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,713,281,1,810,280,1,0 +2013,4,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,65,1,1248,64,1,0 +2013,8,15,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1035,0,0,1145,-8,0,0 +2013,6,22,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1305,-1,0,1650,-25,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2030,-4,0,2225,-5,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,0,,1955,0,1,1 +2013,10,9,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1710,3,0,2016,-12,0,0 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,17,1,1929,15,1,0 +2013,5,8,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,645,-2,0,800,-17,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1935,-1,0,2247,-15,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1700,0,0,1750,9,0,0 +2013,5,28,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,810,0,0,950,-12,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2055,-5,0,2233,-16,0,0 +2013,10,15,2,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,0,0,1858,19,1,0 +2013,4,17,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1655,0,,1831,0,1,1 +2013,9,11,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,827,-23,0,0 +2013,7,14,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1255,-2,0,1410,-8,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1512,-3,0,1552,-19,0,0 +2013,8,31,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1800,-6,0,1920,-14,0,0 +2013,9,23,1,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,700,41,1,753,46,1,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1610,7,0,1720,-9,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,-7,0,28,18,1,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1629,9,0,1948,-23,0,0 +2013,5,2,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1536,-5,0,1704,-14,0,0 +2013,10,20,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1640,7,0,2005,-11,0,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,-2,0,2336,-2,0,0 +2013,7,15,1,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-4,0,1206,-20,0,0 +2013,4,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2030,-1,0,2259,13,0,0 +2013,4,1,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1340,17,1,1510,7,0,0 +2013,10,18,5,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1115,10,0,1650,-1,0,0 +2013,9,28,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,6,0,1000,12,0,0 +2013,7,31,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1747,-4,0,2002,1,0,0 +2013,6,30,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-13,0,2125,-13,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,-2,0,1350,0,0,0 +2013,8,26,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-5,0,1650,2,0,0 +2013,6,16,7,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,630,0,0,920,-3,0,0 +2013,9,18,3,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,900,-4,0,1158,-26,0,0 +2013,10,23,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,-6,0,2241,-8,0,0 +2013,5,10,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1655,0,0,1805,-26,0,0 +2013,9,29,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1509,-1,0,1635,4,0,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-1,0,1058,-10,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1701,-4,0,1722,-16,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1735,-2,0,2110,11,0,0 +2013,9,23,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1135,-3,0,1315,-3,0,0 +2013,4,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1031,0,,1116,0,1,1 +2013,4,25,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,522,-4,0,858,5,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1010,-8,0,1133,1,0,0 +2013,7,2,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1602,-3,0,1658,-4,0,0 +2013,4,3,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-5,0,1212,-7,0,0 +2013,7,1,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1624,0,0,1900,-4,0,0 +2013,6,3,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2055,16,1,2215,22,1,0 +2013,9,17,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,-7,0,648,-17,0,0 +2013,8,18,7,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-15,0,1311,-18,0,0 +2013,9,14,6,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1134,5,0,1357,1,0,0 +2013,9,16,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1435,11,0,1646,15,1,0 +2013,6,30,7,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1035,-2,0,1245,-13,0,0 +2013,7,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,600,-4,0,812,-6,0,0 +2013,8,27,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1428,-3,0,1553,-13,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-5,0,2358,-15,0,0 +2013,9,27,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1335,-2,0,1420,-6,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1435,10,0,1613,-10,0,0 +2013,6,19,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,859,-7,0,1004,6,0,0 +2013,6,30,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,0,0,810,-13,0,0 +2013,7,22,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,144,1,1405,141,1,0 +2013,10,2,3,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,-2,0,1230,-19,0,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,7,0,1525,1,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,3,0,855,1,0,0 +2013,4,29,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,14,0,1354,3,0,0 +2013,7,3,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1746,-8,0,0 +2013,9,8,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,850,-11,0,1015,-11,0,0 +2013,10,31,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,8,0,2050,-5,0,0 +2013,4,25,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,7,0,825,-11,0,0 +2013,9,13,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,20,1,1935,15,1,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1745,44,1,30,53,1,0 +2013,4,9,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-4,0,1600,-2,0,0 +2013,9,15,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,725,-2,0,827,-15,0,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1121,0,,1222,0,1,1 +2013,10,25,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1445,27,1,1605,20,1,0 +2013,10,9,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,5,0,1405,7,0,0 +2013,7,1,1,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,715,-5,0,915,-7,0,0 +2013,7,26,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1650,13,0,1815,5,0,0 +2013,10,9,3,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1525,-4,0,1530,-11,0,0 +2013,7,1,1,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1744,1,0,1910,3,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1059,11,0,1405,1,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2115,186,1,2230,183,1,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1920,33,1,2020,19,1,0 +2013,8,30,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,54,1,1514,19,1,0 +2013,4,4,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1855,11,0,2130,-8,0,0 +2013,6,10,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1345,-5,0,1445,-15,0,0 +2013,8,22,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-2,0,810,-17,0,0 +2013,6,4,2,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-5,0,1153,-19,0,0 +2013,8,21,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,4,0,1340,1,0,0 +2013,5,7,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1855,-1,0,2130,4,0,0 +2013,7,14,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1027,-2,0,1510,6,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,620,-2,0,904,-11,0,0 +2013,7,11,4,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,2,0,2316,-28,0,0 +2013,7,20,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,-1,0,1255,25,1,0 +2013,8,24,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1110,-4,0,1455,1,0,0 +2013,7,26,5,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1227,-2,0,1455,-12,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,4,0,1935,9,0,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,605,2,0,720,18,1,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2325,4,0,730,4,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,2,0,735,-6,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1526,12,0,1810,0,0,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-2,0,1155,-16,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,-3,0,921,-10,0,0 +2013,8,25,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1230,-4,0,1345,-19,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,844,-3,0,1009,-12,0,0 +2013,7,7,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1824,-1,0,2035,-1,0,0 +2013,10,10,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1731,-12,0,1820,-10,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1430,14,0,1710,7,0,0 +2013,7,21,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,27,1,1555,31,1,0 +2013,6,19,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,8,0,1100,-8,0,0 +2013,4,7,7,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,801,119,1,1100,115,1,0 +2013,8,6,2,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,0,0,1600,-4,0,0 +2013,4,30,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,1849,-17,0,0 +2013,5,3,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1625,2,0,1755,-7,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-10,0,1313,-35,0,0 +2013,7,18,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-8,0,735,-25,0,0 +2013,9,17,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1055,-1,0,1205,1,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1355,-1,0,1622,-10,0,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2035,-4,0,2315,-13,0,0 +2013,6,29,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1221,-5,0,1757,-3,0,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1733,-5,0,1903,-16,0,0 +2013,8,7,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2105,-7,0,2200,3,0,0 +2013,7,2,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1850,18,1,2005,16,1,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,246,1,1922,241,1,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1550,9,0,1940,-11,0,0 +2013,4,8,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-10,0,1135,-14,0,0 +2013,4,5,5,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,900,-2,0,1250,-6,0,0 +2013,7,15,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1435,9,0,1638,-25,0,0 +2013,7,6,6,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,-1,0,2130,-3,0,0 +2013,8,21,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,-1,0,1830,1,0,0 +2013,9,25,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,9,0,1455,3,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,940,2,0,1110,-1,0,0 +2013,4,3,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-7,0,1925,-2,0,0 +2013,10,6,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,85,1,1912,61,1,0 +2013,5,31,5,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,1005,-4,0,1300,-10,0,0 +2013,6,1,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,-5,0,1929,-22,0,0 +2013,6,17,1,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,630,5,0,915,8,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,29,1,1916,19,1,0 +2013,4,10,3,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,840,-6,0,1021,31,1,0 +2013,7,25,4,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1845,-3,0,2059,-18,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1035,23,1,1826,-5,0,0 +2013,10,24,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,735,-6,0,926,-12,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1550,-1,0,1720,-12,0,0 +2013,7,14,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1917,-6,0,2021,0,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,730,-2,0,1030,-10,0,0 +2013,8,25,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-6,0,1946,-9,0,0 +2013,5,20,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,14,0,2155,8,0,0 +2013,8,29,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1145,49,1,1335,41,1,0 +2013,9,17,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-3,0,1749,-7,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,0,0,1725,-16,0,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,820,61,1,1335,79,1,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1345,-3,0,1510,-13,0,0 +2013,10,24,4,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-4,0,2025,-7,0,0 +2013,9,22,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-2,0,1215,-29,0,0 +2013,4,1,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-7,0,810,-24,0,0 +2013,7,3,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1735,-1,0,1915,2,0,0 +2013,8,11,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-4,0,1305,-10,0,0 +2013,9,14,6,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1708,-4,0,1832,-2,0,0 +2013,4,7,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2025,114,1,2145,103,1,0 +2013,10,21,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-2,0,1030,-5,0,0 +2013,10,7,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,817,-2,0,1359,24,1,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,2,0,913,-8,0,0 +2013,8,14,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-8,0,945,10,0,0 +2013,4,4,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1545,0,0,1645,11,0,0 +2013,4,20,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1730,-4,0,1902,-9,0,0 +2013,7,28,7,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-9,0,1626,-17,0,0 +2013,5,31,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-7,0,1945,12,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1356,-4,0,1506,-8,0,0 +2013,8,16,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,-3,0,2000,7,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-4,0,905,1,0,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,17,1,1705,-4,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-3,0,755,-11,0,0 +2013,10,24,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1359,-9,0,1654,-16,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1326,15,1,1440,2,0,0 +2013,6,1,6,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,5,0,1530,11,0,0 +2013,9,30,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,31,1,824,17,1,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-7,0,933,-9,0,0 +2013,9,30,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-4,0,1910,-31,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,828,4,0,1056,-13,0,0 +2013,5,22,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1600,18,1,1650,12,0,0 +2013,4,15,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1740,-6,0,1831,2,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1900,2,0,2129,2,0,0 +2013,5,17,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,835,4,0,934,8,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2037,0,0,2204,-18,0,0 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1935,57,1,2210,39,1,0 +2013,8,26,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-7,0,1930,-17,0,0 +2013,8,7,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-4,0,1028,-15,0,0 +2013,4,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,61,1,2204,69,1,0 +2013,10,28,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1035,5,0,1640,-21,0,0 +2013,4,30,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,-2,0,1345,9,0,0 +2013,7,16,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,605,-5,0,1020,3,0,0 +2013,8,4,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,7,0,1924,32,1,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1250,5,0,1430,1,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,99,1,1250,80,1,0 +2013,5,7,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-9,0,841,1,0,0 +2013,7,2,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-7,0,633,-7,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,5,0,2025,-8,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1030,94,1,1610,87,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2304,-2,0,15,-15,0,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,13,0,1930,11,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,840,1,0,1020,8,0,0 +2013,10,15,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,15,1,1335,36,1,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,2,0,2115,-5,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,-2,0,1050,-2,0,0 +2013,8,7,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1315,-3,0,1342,-8,0,0 +2013,5,14,2,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-5,0,1510,5,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-2,0,1131,-38,0,0 +2013,6,2,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,600,-3,0,750,-6,0,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,0,0,2103,-10,0,0 +2013,4,23,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-7,0,1248,8,0,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2056,-2,0,2230,-7,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2051,114,1,2358,165,1,0 +2013,7,6,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,15,1,1915,-16,0,0 +2013,4,30,2,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1858,51,1,2132,40,1,0 +2013,8,14,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,73,1,1800,205,1,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1650,0,,2030,0,1,1 +2013,6,22,6,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1000,-2,0,1105,-5,0,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1550,-1,0,1710,-8,0,0 +2013,6,9,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,22,1,2335,21,1,0 +2013,10,23,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1140,-12,0,1258,-11,0,0 +2013,5,26,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,1245,-6,0,0 +2013,9,4,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,0,0,2050,-8,0,0 +2013,9,18,3,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,629,-9,0,929,-16,0,0 +2013,4,12,5,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,-3,0,1803,11,0,0 +2013,5,13,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,-3,0,1413,-11,0,0 +2013,9,18,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-4,0,1357,3,0,0 +2013,9,15,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1841,-3,0,2010,-14,0,0 +2013,8,26,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1150,14,0,1220,1,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,-1,0,2215,10,0,0 +2013,6,13,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,545,0,0,705,-5,0,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,710,-1,0,915,-9,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,725,-4,0,844,-4,0,0 +2013,9,19,4,OO,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1513,219,1,1624,217,1,0 +2013,7,7,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1720,-7,0,2000,-9,0,0 +2013,9,26,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,20,1,2228,49,1,0 +2013,8,10,6,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1745,0,0,1910,13,0,0 +2013,5,30,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,1,0,720,-7,0,0 +2013,7,6,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1728,9,0,1933,0,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,22,1,2141,13,0,0 +2013,9,29,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-6,0,826,-24,0,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,51,1,1555,34,1,0 +2013,4,16,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,2059,-8,0,2344,-2,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,905,-5,0,1110,3,0,0 +2013,10,28,1,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1145,0,,1505,0,1,1 +2013,7,1,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,820,-3,0,935,24,1,0 +2013,7,25,4,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-2,0,925,2,0,0 +2013,4,20,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-9,0,945,-11,0,0 +2013,4,14,7,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1410,15,1,1645,27,1,0 +2013,7,11,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,735,-8,0,855,-14,0,0 +2013,9,10,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1331,-10,0,1406,-5,0,0 +2013,6,4,2,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1131,1,0,1303,-19,0,0 +2013,6,15,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-1,0,1109,-4,0,0 +2013,7,30,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,824,-10,0,946,-29,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1754,0,0,1841,2,0,0 +2013,8,12,1,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,28,1,1614,20,1,0 +2013,6,8,6,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,810,24,1,934,14,0,0 +2013,9,6,5,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-11,0,1038,-15,0,0 +2013,6,20,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,935,-3,0,955,-5,0,0 +2013,6,17,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1005,-2,0,1105,-8,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-2,0,847,-14,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,18,1,951,13,0,0 +2013,9,22,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1459,-5,0,1620,-18,0,0 +2013,5,17,5,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,540,-6,0,629,-18,0,0 +2013,10,9,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1505,0,0,1555,-14,0,0 +2013,6,22,6,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,640,0,0,715,-6,0,0 +2013,5,11,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1120,-3,0,1223,-9,0,0 +2013,7,26,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,2,0,1915,6,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1445,-4,0,1651,-23,0,0 +2013,8,24,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,700,-2,0,815,-12,0,0 +2013,10,28,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1835,4,0,1945,7,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1215,-3,0,1930,5,0,0 +2013,7,30,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1803,48,1,1850,45,1,0 +2013,10,17,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1355,-6,0,1450,-1,0,0 +2013,9,13,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,89,1,1521,77,1,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,6,0,1425,3,0,0 +2013,4,2,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1454,70,1,1649,64,1,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,738,-3,0,1006,-14,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2105,15,1,2248,-7,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1245,27,1,1510,75,1,0 +2013,7,31,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1920,0,0,2050,-6,0,0 +2013,6,12,3,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1350,5,0,1644,38,1,0 +2013,8,28,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,710,-7,0,832,-9,0,0 +2013,10,4,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,915,13,0,1050,-2,0,0 +2013,6,1,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,2005,10,0,2110,3,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,-4,0,1055,-7,0,0 +2013,6,14,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,520,-6,0,620,-6,0,0 +2013,5,17,5,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1630,21,1,1805,1,0,0 +2013,4,8,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,2,0,1100,2,0,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,710,-7,0,926,-9,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1310,11,0,1755,9,0,0 +2013,4,16,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,0,,1820,0,1,1 +2013,7,14,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,11,0,1735,-13,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,955,0,0,1420,-21,0,0 +2013,5,13,1,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1555,11,0,1650,3,0,0 +2013,5,31,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1100,0,0,1225,11,0,0 +2013,6,18,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,-3,0,1115,-30,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,7,0,2130,-6,0,0 +2013,10,1,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1632,-2,0,1734,-3,0,0 +2013,4,11,4,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,8,0,2045,-3,0,0 +2013,6,26,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-2,0,2200,-2,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-1,0,1411,-7,0,0 +2013,10,20,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2100,1,0,2215,-24,0,0 +2013,10,18,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,-1,0,1912,-15,0,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1735,16,1,2305,30,1,0 +2013,5,13,1,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1205,37,1,1325,-2,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,645,0,0,1015,-13,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,26,1,1102,24,1,0 +2013,7,29,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-3,0,1250,-7,0,0 +2013,5,17,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,10,0,1645,10,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,112,1,1828,123,1,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,-4,0,2058,-19,0,0 +2013,4,12,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1110,6,0,1255,-6,0,0 +2013,5,15,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,8,0,1500,22,1,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,0,0,930,-8,0,0 +2013,6,17,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,-2,0,1840,-9,0,0 +2013,4,22,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,34,1,1905,27,1,0 +2013,6,7,5,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-1,0,940,-15,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1925,12,0,2025,6,0,0 +2013,10,20,7,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1910,17,1,2150,8,0,0 +2013,4,26,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,20,1,1755,27,1,0 +2013,10,17,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,-4,0,1234,12,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2211,4,0,2318,1,0,0 +2013,5,25,6,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,0,0,949,-31,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1626,1,0,1800,-14,0,0 +2013,10,5,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1854,-11,0,0 +2013,7,13,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1436,0,0,1808,43,1,0 +2013,8,12,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,615,-2,0,740,-13,0,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,-3,0,1917,-7,0,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2015,-3,0,2036,-9,0,0 +2013,6,25,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1215,0,,1500,0,1,1 +2013,10,15,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-2,0,1115,-13,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1257,135,1,1909,160,1,0 +2013,9,29,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,750,-9,0,1014,-4,0,0 +2013,4,10,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-2,0,1220,43,1,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,20,1,2050,22,1,0 +2013,9,15,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,0,0,1525,1,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1530,5,0,1650,7,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1140,10,0,1255,2,0,0 +2013,5,15,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,4,0,2010,1,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,922,4,0,1115,6,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,-3,0,1555,-27,0,0 +2013,9,30,1,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1750,16,1,1855,-15,0,0 +2013,8,27,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1657,-3,0,2257,4,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,3,0,2104,18,1,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,26,1,1420,18,1,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-7,0,1827,-20,0,0 +2013,10,27,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-6,0,1650,-21,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,-4,0,2050,-14,0,0 +2013,5,13,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1238,124,1,1459,115,1,0 +2013,4,24,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-4,0,945,-8,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,940,-1,0,1151,-21,0,0 +2013,10,14,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,659,-4,0,851,27,1,0 +2013,10,2,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1327,-7,0,2127,-22,0,0 +2013,6,28,5,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,54,1,2135,64,1,0 +2013,10,15,2,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1154,-5,0,1255,-2,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,812,-3,0,1011,-10,0,0 +2013,9,9,1,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1031,-4,0,1226,-15,0,0 +2013,10,18,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,5,0,1947,-4,0,0 +2013,6,19,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1647,22,1,1709,26,1,0 +2013,7,31,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-2,0,753,-18,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2149,7,0,2340,-6,0,0 +2013,10,2,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,850,-19,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1255,10,0,1430,12,0,0 +2013,10,9,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,935,-5,0,1032,-21,0,0 +2013,6,22,6,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2159,-2,0,548,1,0,0 +2013,4,2,2,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,12,0,1543,6,0,0 +2013,6,11,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1710,15,1,1936,-16,0,0 +2013,6,6,4,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,15,1,535,15,1,0 +2013,10,13,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,1234,0,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1640,-1,0,1820,-13,0,0 +2013,6,19,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1410,8,0,1610,10,0,0 +2013,5,29,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,1028,-7,0,0 +2013,8,1,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-8,0,1405,-21,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,615,2,0,715,-7,0,0 +2013,7,24,3,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-4,0,2045,-11,0,0 +2013,10,20,7,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1756,-6,0,1904,-13,0,0 +2013,7,4,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1819,15,1,2118,3,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2020,-1,0,2155,-9,0,0 +2013,9,5,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1728,-3,0,1928,-14,0,0 +2013,6,8,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2045,-9,0,2313,-22,0,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,24,1,2235,12,0,0 +2013,4,2,2,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,735,-3,0,930,-4,0,0 +2013,4,14,7,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1739,20,1,2030,55,1,0 +2013,5,20,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,715,-1,0,755,-7,0,0 +2013,6,20,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1056,-6,0,1428,-14,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1625,-4,0,1730,-12,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,-2,0,1720,-7,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1011,16,1,1220,-6,0,0 +2013,4,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,-3,0,1500,85,1,0 +2013,9,26,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1405,-6,0,1505,-7,0,0 +2013,8,10,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-6,0,1816,-14,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,-4,0,1604,-11,0,0 +2013,9,14,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1651,-6,0,1911,-15,0,0 +2013,8,28,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,900,-5,0,1130,-19,0,0 +2013,9,22,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1640,76,1,1920,63,1,0 +2013,8,2,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,1,0,2031,-8,0,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1820,31,1,2040,34,1,0 +2013,10,23,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,530,-4,0,706,-6,0,0 +2013,9,20,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,-1,0,1821,-4,0,0 +2013,10,15,2,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,-8,0,1006,-11,0,0 +2013,9,26,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1508,2,0,2119,-23,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,6,0,1400,10,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,0,0,2305,12,0,0 +2013,5,25,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1409,0,0,1517,-15,0,0 +2013,8,17,6,AS,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1155,-8,0,2019,-2,0,0 +2013,5,30,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1655,0,,1826,0,1,1 +2013,6,8,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1016,-5,0,1201,29,1,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1625,10,0,1815,16,1,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1415,-1,0,1525,-2,0,0 +2013,4,20,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,147,1,839,150,1,0 +2013,10,14,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-4,0,1252,-9,0,0 +2013,10,25,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-5,0,919,-4,0,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,940,-1,0,1110,-10,0,0 +2013,9,9,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1851,-8,0,2102,-8,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-3,0,1259,-12,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,929,31,1,1219,11,0,0 +2013,4,26,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1013,0,0,0 +2013,6,30,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,700,-7,0,944,-28,0,0 +2013,6,14,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1925,-7,0,2158,3,0,0 +2013,5,1,3,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1800,3,0,1955,-3,0,0 +2013,5,5,7,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,4,0,1655,-8,0,0 +2013,8,11,7,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,33,1,2140,26,1,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,24,1,1150,11,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1000,26,1,1210,16,1,0 +2013,9,26,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1800,-4,0,1900,-3,0,0 +2013,9,24,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2204,17,1,47,25,1,0 +2013,8,29,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1521,24,1,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,940,20,1,1230,33,1,0 +2013,10,2,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-7,0,1224,-14,0,0 +2013,7,17,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,-2,0,1015,-4,0,0 +2013,5,26,7,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1525,-1,0,1815,-9,0,0 +2013,10,14,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,945,-13,0,1105,-22,0,0 +2013,7,15,1,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,3,0,2027,-14,0,0 +2013,7,16,2,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1655,6,0,1810,-9,0,0 +2013,4,16,2,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,11,0,1330,18,1,0 +2013,10,4,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-5,0,859,-2,0,0 +2013,9,15,7,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,805,6,0,935,-9,0,0 +2013,8,24,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,958,-4,0,1145,4,0,0 +2013,5,9,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1452,41,1,1647,46,1,0 +2013,6,23,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-5,0,1020,-21,0,0 +2013,4,19,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,1,0,1505,8,0,0 +2013,7,8,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2010,-1,0,2039,-6,0,0 +2013,10,30,3,OO,10423,Austin - Bergstrom International,Austin,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1403,-6,0,1758,-20,0,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1555,-1,0,1705,-5,0,0 +2013,8,27,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1535,-10,0,1655,-19,0,0 +2013,7,10,3,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1414,131,1,2245,141,1,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-5,0,913,-11,0,0 +2013,5,16,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1105,-6,0,1420,-16,0,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,2004,20,1,2340,21,1,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,6,0,1053,-10,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1746,-6,0,1907,-21,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,625,-4,0,810,-13,0,0 +2013,7,26,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,5,0,2305,3,0,0 +2013,7,26,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,8,0,1205,3,0,0 +2013,5,20,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1031,-3,0,1327,-13,0,0 +2013,6,24,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-3,0,912,-13,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,815,-1,0,1149,-18,0,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1507,4,0,1905,-12,0,0 +2013,4,5,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1310,4,0,1605,-14,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,-3,0,2107,-3,0,0 +2013,4,2,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2020,-6,0,2130,9,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1958,13,0,2225,-7,0,0 +2013,9,26,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1930,-4,0,2040,3,0,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1115,-4,0,1200,-4,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,939,-2,0,1755,-11,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1306,-4,0,1442,-13,0,0 +2013,4,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1754,-3,0,1931,-6,0,0 +2013,6,1,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1355,-7,0,1615,-8,0,0 +2013,5,16,4,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1700,1,0,1730,-14,0,0 +2013,10,7,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-4,0,1335,-11,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1251,137,1,1845,118,1,0 +2013,9,22,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,13,0,858,17,1,0 +2013,8,25,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1745,8,0,2026,5,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2000,15,1,2130,-7,0,0 +2013,6,18,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1420,7,0,1650,-9,0,0 +2013,9,4,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,605,-10,0,804,-12,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,815,9,0,915,2,0,0 +2013,6,2,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1705,0,0,1815,-5,0,0 +2013,4,15,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1240,-6,0,1358,-20,0,0 +2013,9,13,5,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1021,124,1,1249,123,1,0 +2013,7,30,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1555,1,0,1710,-3,0,0 +2013,9,20,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-3,0,1707,-3,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,910,12,0,1620,5,0,0 +2013,7,16,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1755,71,1,2035,69,1,0 +2013,10,11,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,939,15,1,1120,2,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,730,-3,0,1045,4,0,0 +2013,10,29,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1238,87,1,1359,116,1,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1705,0,0,1841,-5,0,0 +2013,9,16,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,645,-3,0,750,-10,0,0 +2013,6,12,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1910,39,1,2100,91,1,0 +2013,4,20,6,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-1,0,1015,-2,0,0 +2013,6,15,6,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1252,23,1,1612,15,1,0 +2013,10,6,7,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-2,0,2030,8,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,71,1,2055,91,1,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1930,46,1,2030,34,1,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,710,-10,0,850,21,1,0 +2013,5,31,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1206,123,1,1327,121,1,0 +2013,9,23,1,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,0,0,1022,-3,0,0 +2013,8,22,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1615,0,,1800,0,1,1 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,-3,0,1200,-5,0,0 +2013,10,9,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,920,43,1,1214,39,1,0 +2013,10,14,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1005,71,1,1830,39,1,0 +2013,4,17,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1411,-5,0,1521,-7,0,0 +2013,7,1,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1020,-2,0,1228,4,0,0 +2013,7,15,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,7,0,838,19,1,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,9,0,1820,6,0,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1255,4,0,1620,-27,0,0 +2013,9,5,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2050,-13,0,2237,-11,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2125,0,,2305,0,1,1 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1454,-1,0,1603,-12,0,0 +2013,10,2,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1855,19,1,2120,4,0,0 +2013,4,13,6,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1740,-6,0,1850,0,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-4,0,2311,-16,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1840,41,1,2100,114,1,0 +2013,6,12,3,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-9,0,1013,-4,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,20,1,1810,23,1,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,24,1,1910,20,1,0 +2013,10,13,7,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1725,-2,0,2000,-3,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-7,0,2136,-10,0,0 +2013,9,5,4,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,13,0,2045,-9,0,0 +2013,5,15,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2141,-4,0,2326,-23,0,0 +2013,9,19,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1945,5,0,2305,12,0,0 +2013,6,10,1,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1421,0,,1529,0,1,1 +2013,8,17,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,4,0,1230,-1,0,0 +2013,5,19,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2055,137,1,2225,108,1,0 +2013,7,30,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-2,0,2040,-9,0,0 +2013,8,16,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1347,-6,0,1433,-12,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1655,6,0,2025,6,0,0 +2013,10,17,4,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,610,-1,0,740,13,0,0 +2013,8,20,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,715,-3,0,1010,-21,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,730,42,1,1040,29,1,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1840,58,1,2155,41,1,0 +2013,6,4,2,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1810,-4,0,2110,-9,0,0 +2013,6,9,7,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1159,122,1,1907,120,1,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1035,13,0,1355,19,1,0 +2013,9,30,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,-4,0,1610,-8,0,0 +2013,8,1,4,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-2,0,2235,22,1,0 +2013,4,27,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,600,-4,0,840,-22,0,0 +2013,10,28,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1215,-7,0,1505,-21,0,0 +2013,4,8,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,540,-3,0,745,-21,0,0 +2013,8,26,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1150,54,1,1321,30,1,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,825,-3,0,945,-4,0,0 +2013,10,26,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1815,-4,0,2135,-25,0,0 +2013,4,24,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,2,0,2030,-3,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1840,19,1,2000,12,0,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1600,22,1,1920,17,1,0 +2013,4,9,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-2,0,814,-2,0,0 +2013,7,8,1,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,5,0,1545,-4,0,0 +2013,5,15,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,645,11,0,800,9,0,0 +2013,10,1,2,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1004,-6,0,1331,-9,0,0 +2013,6,13,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1111,-9,0,0 +2013,10,8,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1035,-6,0,1133,-10,0,0 +2013,10,23,3,YV,14100,Philadelphia International,Philadelphia,PA,14730,Louisville International-Standiford Field,Louisville,KY,2040,-5,0,2241,-9,0,0 +2013,5,21,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1525,20,1,1810,9,0,0 +2013,5,26,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,43,1,2125,19,1,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,901,3,0,1204,-16,0,0 +2013,6,20,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,705,-2,0,800,-5,0,0 +2013,5,20,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,-4,0,2215,0,0,0 +2013,4,8,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,1449,-22,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2107,6,0,2307,8,0,0 +2013,9,6,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-10,0,810,-24,0,0 +2013,9,12,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1139,-6,0,1650,7,0,0 +2013,10,31,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,1,0,2217,-11,0,0 +2013,9,24,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,28,1,1405,30,1,0 +2013,7,24,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-3,0,1319,-15,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,955,-6,0,1119,-5,0,0 +2013,10,5,6,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1508,1,0,0 +2013,10,16,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,633,-9,0,1512,-40,0,0 +2013,7,22,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,700,-1,0,820,-17,0,0 +2013,8,11,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,8,0,852,9,0,0 +2013,5,21,2,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,945,-8,0,1224,-27,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2100,28,1,2200,13,0,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1232,-8,0,1530,-8,0,0 +2013,4,11,4,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,605,0,0,810,-17,0,0 +2013,9,27,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,-6,0,650,-9,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,14,0,2250,4,0,0 +2013,5,14,2,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1935,-12,0,2046,-24,0,0 +2013,6,6,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1417,4,0,1659,-15,0,0 +2013,6,30,7,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1855,0,,2229,0,1,1 +2013,5,13,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1453,21,1,1539,21,1,0 +2013,6,26,3,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,96,1,1345,115,1,0 +2013,9,9,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1150,-1,0,1255,-3,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,28,1,1540,18,1,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1444,-3,0,1603,-11,0,0 +2013,8,6,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1250,42,1,1626,43,1,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,1125,10,0,0 +2013,4,2,2,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,923,-6,0,1040,-2,0,0 +2013,7,18,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,930,-5,0,1059,-10,0,0 +2013,6,20,4,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-1,0,549,-5,0,0 +2013,5,27,1,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1630,-3,0,1735,-9,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2100,54,1,2240,32,1,0 +2013,10,12,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1730,-5,0,1858,-10,0,0 +2013,10,4,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-4,0,817,18,1,0 +2013,10,16,3,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1045,0,0,1325,-1,0,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2215,-3,0,620,-1,0,0 +2013,4,18,4,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1700,34,1,1843,58,1,0 +2013,5,5,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1010,-7,0,1345,-7,0,0 +2013,10,21,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-7,0,1210,-12,0,0 +2013,4,3,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1249,-3,0,1538,-8,0,0 +2013,4,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1130,7,0,1250,1,0,0 +2013,8,20,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-9,0,1606,-2,0,0 +2013,6,23,7,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1035,0,0,1245,-1,0,0 +2013,8,29,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,4,0,1805,-11,0,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1007,-1,0,1629,-29,0,0 +2013,4,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1220,3,0,1350,-15,0,0 +2013,9,16,1,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1006,-4,0,1713,-28,0,0 +2013,5,21,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1856,11,0,2140,2,0,0 +2013,6,11,2,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1521,29,1,1623,17,1,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,-3,0,1150,-2,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2005,1,0,2154,3,0,0 +2013,10,19,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1320,-12,0,1407,-25,0,0 +2013,8,12,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,-3,0,2155,0,0,0 +2013,10,23,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2246,-5,0,15,-8,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,705,-3,0,855,-8,0,0 +2013,4,12,5,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1237,-5,0,2105,-15,0,0 +2013,5,1,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-7,0,849,3,0,0 +2013,5,18,6,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,86,1,1856,99,1,0 +2013,9,12,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-6,0,850,-20,0,0 +2013,6,4,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1217,-1,0,1317,-20,0,0 +2013,9,20,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2015,45,1,2115,38,1,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1940,65,1,50,54,1,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,700,45,1,1014,24,1,0 +2013,7,7,7,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1910,0,0,2045,5,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1610,69,1,1749,66,1,0 +2013,4,24,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,815,-5,0,1649,26,1,0 +2013,9,3,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1450,10,0,1535,4,0,0 +2013,5,7,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,14,0,1052,19,1,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1845,70,1,2015,107,1,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1509,-6,0,1741,4,0,0 +2013,5,21,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1440,24,1,1614,35,1,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,85,1,1553,97,1,0 +2013,5,12,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1535,36,1,1835,34,1,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2100,16,1,510,25,1,0 +2013,8,5,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2015,6,0,2116,6,0,0 +2013,8,18,7,DL,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,620,-6,0,914,-2,0,0 +2013,4,16,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1715,-1,0,2045,-5,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1500,97,1,1940,82,1,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,73,1,2025,88,1,0 +2013,7,13,6,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1025,-1,0,1029,-5,0,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-6,0,905,-12,0,0 +2013,4,12,5,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,-6,0,2259,-32,0,0 +2013,5,12,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-7,0,1355,-9,0,0 +2013,4,7,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,945,-4,0,1126,2,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1125,69,1,1300,61,1,0 +2013,5,5,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,-1,0,1408,-4,0,0 +2013,4,26,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1530,-2,0,1931,-10,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,700,-5,0,1035,-6,0,0 +2013,5,16,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,807,-2,0,1105,1,0,0 +2013,10,6,7,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1835,32,1,2146,7,0,0 +2013,5,22,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,47,1,1845,26,1,0 +2013,8,2,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1615,3,0,1755,36,1,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1653,177,1,1901,176,1,0 +2013,5,18,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,740,-5,0,905,-25,0,0 +2013,10,7,1,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1540,35,1,1735,18,1,0 +2013,7,18,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1011,-3,0,1259,-11,0,0 +2013,6,8,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,-4,0,1520,-14,0,0 +2013,8,29,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1957,-6,0,2151,4,0,0 +2013,8,5,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1208,10,0,1410,-6,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1131,-6,0,1310,-7,0,0 +2013,9,23,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1844,-6,0,2006,-12,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-2,0,715,-7,0,0 +2013,6,5,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1745,7,0,2022,2,0,0 +2013,5,19,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,751,54,1,1044,49,1,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1056,-4,0,1207,-6,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1845,65,1,2135,55,1,0 +2013,4,28,7,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1750,71,1,2005,68,1,0 +2013,4,26,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,54,1,1910,45,1,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1810,52,1,2110,51,1,0 +2013,9,2,1,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1746,172,1,53,169,1,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1503,-3,0,1631,7,0,0 +2013,6,10,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,-6,0,1310,-8,0,0 +2013,10,30,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-7,0,935,-15,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1140,3,0,1410,-5,0,0 +2013,6,15,6,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1810,-5,0,1935,-25,0,0 +2013,9,18,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1636,-2,0,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1755,24,1,2305,18,1,0 +2013,6,15,6,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1405,25,1,1455,16,1,0 +2013,10,12,6,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,710,-2,0,1200,-13,0,0 +2013,4,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1047,14,0,1443,11,0,0 +2013,7,17,3,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,3,0,1245,4,0,0 +2013,7,27,6,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1105,8,0,1300,-2,0,0 +2013,5,14,2,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1930,-9,0,2155,-54,0,0 +2013,7,30,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,20,1,1600,9,0,0 +2013,9,5,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,910,-4,0,1735,-13,0,0 +2013,9,5,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1925,-10,0,2252,-10,0,0 +2013,6,29,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,0,,1934,0,1,1 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,735,-5,0,825,-2,0,0 +2013,5,19,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1835,79,1,1935,78,1,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,11,0,805,0,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,46,1,1100,48,1,0 +2013,5,23,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,943,113,1,1254,96,1,0 +2013,6,18,2,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1440,7,0,1725,12,0,0 +2013,10,29,2,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1825,-5,0,2100,8,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1625,3,0,1737,-5,0,0 +2013,9,23,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-6,0,1900,-27,0,0 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1600,4,0,1750,-8,0,0 +2013,10,9,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,853,-7,0,1045,-5,0,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1524,25,1,1649,18,1,0 +2013,10,15,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1742,-1,0,2025,-4,0,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,280,1,1917,332,1,0 +2013,9,20,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,600,0,,703,0,1,1 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,115,-3,0,810,7,0,0 +2013,7,20,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1130,14,0,1150,3,0,0 +2013,8,12,1,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1601,-11,0,1900,-17,0,0 +2013,8,3,6,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,-11,0,2206,-9,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1405,2,0,1540,-2,0,0 +2013,5,12,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1415,52,1,1545,45,1,0 +2013,9,30,1,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-12,0,955,-18,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1050,-2,0,1140,-4,0,0 +2013,8,7,3,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,758,-3,0,900,19,1,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1633,-4,0,1812,-8,0,0 +2013,5,4,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1316,-2,0,1417,7,0,0 +2013,8,1,4,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,13,0,1710,8,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1000,0,0,1151,-7,0,0 +2013,4,3,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,85,1,802,63,1,0 +2013,6,24,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1040,-9,0,1320,-1,0,0 +2013,6,2,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,64,1,1555,53,1,0 +2013,10,24,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,824,-2,0,1013,44,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,-3,0,2219,-11,0,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,804,5,0,922,-7,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1335,68,1,1815,53,1,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,1,0,2128,-2,0,0 +2013,4,22,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,-4,0,920,-6,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,-1,0,946,-11,0,0 +2013,9,13,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,750,-9,0,1115,-16,0,0 +2013,9,7,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,710,7,0,1035,-30,0,0 +2013,9,1,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1144,10,0,1411,-19,0,0 +2013,9,17,2,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1135,-3,0,1315,-2,0,0 +2013,5,4,6,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2235,0,0,623,9,0,0 +2013,5,15,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,605,-4,0,720,-12,0,0 +2013,4,30,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-3,0,1523,5,0,0 +2013,8,11,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1325,18,1,1430,11,0,0 +2013,9,19,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-3,0,1634,20,1,0 +2013,8,26,1,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1802,2,0,1917,-5,0,0 +2013,7,12,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-1,0,1155,6,0,0 +2013,10,29,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1520,0,0,1630,-13,0,0 +2013,9,24,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-7,0,1937,-7,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,915,-2,0,1250,-5,0,0 +2013,8,9,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-1,0,1606,7,0,0 +2013,9,11,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1650,-6,0,1855,-8,0,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1811,-2,0,1833,-16,0,0 +2013,8,28,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,-1,0,1645,6,0,0 +2013,8,20,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-4,0,810,0,0,0 +2013,7,13,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1302,0,0,1429,-2,0,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,903,2,0,1205,-33,0,0 +2013,6,24,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,738,-4,0,1530,24,1,0 +2013,5,3,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,620,-4,0,750,-19,0,0 +2013,7,16,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,2024,-3,0,0 +2013,6,9,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2000,1,0,2115,-21,0,0 +2013,8,17,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1030,-5,0,1151,-6,0,0 +2013,4,6,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,6,0,1209,6,0,0 +2013,10,23,3,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1206,-1,0,1750,-8,0,0 +2013,8,5,1,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1350,-2,0,1642,-8,0,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,5,0,1710,-1,0,0 +2013,4,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2147,1,0,2248,-8,0,0 +2013,10,3,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1945,-8,0,2121,-13,0,0 +2013,10,12,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1555,-6,0,1720,-9,0,0 +2013,9,26,4,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1255,97,1,2055,90,1,0 +2013,7,4,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1235,16,1,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2114,32,1,2358,29,1,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,745,-4,0,1040,-15,0,0 +2013,8,14,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,2,0,940,8,0,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2200,1,0,2256,12,0,0 +2013,7,29,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,113,1,1425,98,1,0 +2013,10,27,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1510,79,1,1706,72,1,0 +2013,7,5,5,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1235,-2,0,1525,-18,0,0 +2013,5,4,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1525,3,0,1810,-5,0,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,2,0,2145,24,1,0 +2013,5,14,2,EV,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,815,-4,0,917,-15,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1449,28,1,1726,-1,0,0 +2013,6,20,4,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1031,-5,0,1301,-22,0,0 +2013,10,14,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1935,21,1,2130,5,0,0 +2013,7,10,3,OO,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1923,36,1,2328,30,1,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2005,-5,0,2125,-15,0,0 +2013,4,22,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1800,112,1,2155,105,1,0 +2013,7,13,6,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,5,0,1035,-4,0,0 +2013,8,8,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,19,1,1545,18,1,0 +2013,5,20,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,166,1,1910,166,1,0 +2013,7,25,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1120,3,0,1249,20,1,0 +2013,10,28,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1715,19,1,2235,-5,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,-5,0,1225,11,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1045,76,1,1923,78,1,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2000,-4,0,2130,-11,0,0 +2013,7,4,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,-4,0,1912,10,0,0 +2013,7,4,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1645,-4,0,1800,-26,0,0 +2013,10,23,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-3,0,1605,-1,0,0 +2013,4,21,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1015,4,0,1615,-5,0,0 +2013,9,8,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1114,1,0,1217,-11,0,0 +2013,8,24,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1425,12,0,1545,15,1,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,24,1,1515,88,1,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1032,5,0,1444,-12,0,0 +2013,5,18,6,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1131,-4,0,1609,-14,0,0 +2013,10,28,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,847,10,0,1125,8,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,710,-6,0,830,-11,0,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,2200,12,0,618,0,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2140,8,0,2320,5,0,0 +2013,5,7,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1250,0,0,1405,-10,0,0 +2013,10,21,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,4,0,1320,6,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2050,43,1,2305,28,1,0 +2013,10,29,2,9E,12339,Indianapolis International,Indianapolis,IN,12953,LaGuardia,New York,NY,1310,-6,0,1514,-29,0,0 +2013,10,31,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,745,0,0,850,4,0,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-1,0,843,-5,0,0 +2013,4,17,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,35,1,1755,28,1,0 +2013,10,21,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,715,-5,0,850,-7,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1822,-3,0,1848,-23,0,0 +2013,10,13,7,US,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,0,0,1917,-3,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,2025,18,1,2135,8,0,0 +2013,7,6,6,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,911,-15,0,0 +2013,5,12,7,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1805,2,0,1940,-35,0,0 +2013,9,3,2,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1056,3,0,1304,-2,0,0 +2013,10,14,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1455,-4,0,1550,-6,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,73,1,1925,76,1,0 +2013,5,2,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,65,1,1235,64,1,0 +2013,6,20,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,138,1,2155,143,1,0 +2013,8,21,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1745,13,0,2110,-14,0,0 +2013,5,13,1,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1000,0,0,1105,-9,0,0 +2013,6,6,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,13,0,1912,22,1,0 +2013,7,31,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-8,0,1237,-13,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2055,10,0,2215,18,1,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-6,0,831,-8,0,0 +2013,8,2,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-1,0,1947,21,1,0 +2013,5,19,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,-5,0,1110,-6,0,0 +2013,10,2,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1639,-2,0,1947,-14,0,0 +2013,4,25,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2015,23,1,2130,17,1,0 +2013,6,6,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1609,67,1,1728,43,1,0 +2013,10,8,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,-5,0,1640,-9,0,0 +2013,10,4,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1325,9,0,1438,23,1,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1753,-3,0,1940,1,0,0 +2013,4,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1348,-7,0,2018,-15,0,0 +2013,4,24,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1400,-9,0,1812,-14,0,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1645,121,1,1813,111,1,0 +2013,5,10,5,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,49,1,705,54,1,0 +2013,7,20,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1850,-1,0,2014,17,1,0 +2013,8,18,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1800,13,0,1820,1,0,0 +2013,10,21,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1310,24,1,1425,21,1,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,0,1442,-4,0,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,-2,0,1440,1,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,-6,0,1100,-8,0,0 +2013,6,29,6,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1710,7,0,1945,-3,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,606,-2,0,853,-5,0,0 +2013,5,3,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,1145,0,0,1428,-10,0,0 +2013,6,22,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1848,-1,0,2025,-10,0,0 +2013,10,11,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,6,0,1757,20,1,0 +2013,9,28,6,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,1,0,1414,-3,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1200,23,1,1505,16,1,0 +2013,9,5,4,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1822,-2,0,2021,-21,0,0 +2013,6,14,5,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1200,-5,0,1435,9,0,0 +2013,5,20,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2210,-3,0,102,-9,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,-5,0,1235,0,0,0 +2013,5,28,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,8,0,1916,27,1,0 +2013,9,5,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1805,-1,0,1930,0,0,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-3,0,1823,10,0,0 +2013,6,2,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1105,4,0,1210,-4,0,0 +2013,5,4,6,YV,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-9,0,1502,-6,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1700,20,1,2011,16,1,0 +2013,4,24,3,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-9,0,1520,-13,0,0 +2013,6,11,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1651,7,0,1812,6,0,0 +2013,4,23,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1254,32,1,1418,64,1,0 +2013,6,9,7,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,809,-5,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2150,-5,0,2315,-17,0,0 +2013,9,6,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1412,6,0,0 +2013,8,5,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1300,-4,0,1350,-10,0,0 +2013,8,24,6,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1900,1,0,2229,0,0,0 +2013,5,6,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1010,-3,0,0 +2013,4,6,6,EV,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1607,-5,0,1704,-17,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1050,-3,0,1207,-3,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1010,7,0,1655,18,1,0 +2013,8,20,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,0,0,1925,3,0,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1610,12,0,1734,21,1,0 +2013,9,16,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1048,-1,0,1215,-15,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1800,192,1,2030,186,1,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,0,0,1650,-13,0,0 +2013,10,29,2,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1105,7,0,1255,-14,0,0 +2013,7,6,6,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,848,19,1,1124,0,0,0 +2013,6,2,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,62,1,2030,104,1,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-4,0,1615,-4,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,-1,0,2358,-5,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1905,2,0,2015,30,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-2,0,1225,-13,0,0 +2013,5,19,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,9,0,1839,0,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-2,0,1225,-15,0,0 +2013,10,22,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1115,67,1,1303,85,1,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,-4,0,2156,-3,0,0 +2013,9,5,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,933,-11,0,1017,-23,0,0 +2013,6,27,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,840,0,,1020,0,1,1 +2013,4,16,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-9,0,1543,-14,0,0 +2013,7,23,2,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,820,32,1,1043,10,0,0 +2013,4,22,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1645,21,1,1820,8,0,0 +2013,5,22,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,59,1,1330,40,1,0 +2013,10,12,6,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,-10,0,1010,-26,0,0 +2013,4,27,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1818,-1,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1415,-5,0,1525,-22,0,0 +2013,7,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,730,-5,0,1056,-11,0,0 +2013,8,22,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,4,0,729,-5,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,3,0,1839,-17,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,1,0,1815,-15,0,0 +2013,5,22,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,645,-3,0,1010,14,0,0 +2013,10,23,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,815,-9,0,925,-15,0,0 +2013,9,6,5,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,-6,0,2300,0,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,844,2,0,1725,-26,0,0 +2013,9,3,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-2,0,2055,-16,0,0 +2013,9,23,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1320,7,0,1615,50,1,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1945,1,0,2115,5,0,0 +2013,6,9,7,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1116,14,0,1350,6,0,0 +2013,10,28,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,22,1,1240,25,1,0 +2013,10,23,3,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1926,-4,0,2113,-15,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1045,2,0,1205,22,1,0 +2013,10,18,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1940,-9,0,2150,-26,0,0 +2013,6,10,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,1,0,2235,-10,0,0 +2013,7,31,3,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-4,0,1756,-9,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-3,0,2143,-5,0,0 +2013,4,21,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1355,22,1,1527,3,0,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,-4,0,755,-13,0,0 +2013,5,15,3,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,741,-5,0,1542,-23,0,0 +2013,9,16,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1405,14,0,1510,10,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2250,3,0,2338,9,0,0 +2013,9,27,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,610,1,0,710,1,0,0 +2013,7,18,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1415,-6,0,2030,-3,0,0 +2013,7,11,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,510,-2,0,647,15,1,0 +2013,9,9,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,-2,0,1114,-18,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,2,0,1148,-6,0,0 +2013,6,25,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,934,-3,0,1206,-12,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1535,4,0,1918,-15,0,0 +2013,10,2,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1859,11,0,2207,4,0,0 +2013,8,17,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-5,0,1640,-24,0,0 +2013,10,3,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-6,0,1617,-12,0,0 +2013,7,24,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,20,-4,0,732,-17,0,0 +2013,9,21,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1240,38,1,1438,15,1,0 +2013,9,21,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,45,1,1620,31,1,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,-2,0,1310,-6,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2100,-2,0,2316,-7,0,0 +2013,7,23,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1507,-4,0,1657,-11,0,0 +2013,4,27,6,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1228,-3,0,1331,-7,0,0 +2013,6,17,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,-1,0,1921,-3,0,0 +2013,6,11,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,-3,0,2250,-10,0,0 +2013,5,29,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1559,0,0,1745,-23,0,0 +2013,7,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,23,1,2205,19,1,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1506,47,1,1614,41,1,0 +2013,5,3,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,3,0,1410,-2,0,0 +2013,9,6,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1705,0,0,1850,-9,0,0 +2013,7,1,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,49,1,1028,46,1,0 +2013,9,13,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1155,-4,0,1417,-10,0,0 +2013,6,25,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1742,156,1,2020,127,1,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1225,75,1,1529,63,1,0 +2013,6,30,7,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,1100,-2,0,1655,-19,0,0 +2013,6,27,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,94,1,840,92,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1037,15,1,1155,-6,0,0 +2013,10,16,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,5,0,2050,-10,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,67,1,1935,76,1,0 +2013,6,1,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1600,22,1,1715,-7,0,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,9,0,2301,41,1,0 +2013,7,15,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,-3,0,2215,-8,0,0 +2013,4,20,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,801,-4,0,855,-6,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1655,2,0,1835,-8,0,0 +2013,5,20,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1230,0,0,1651,-8,0,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,40,1,2149,29,1,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,7,0,2035,6,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-1,0,1305,-2,0,0 +2013,8,20,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1039,-3,0,1210,-13,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2040,8,0,2145,-2,0,0 +2013,8,9,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-1,0,940,-15,0,0 +2013,9,15,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1745,-8,0,1957,-19,0,0 +2013,9,15,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1905,5,0,2015,4,0,0 +2013,4,19,5,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1035,-3,0,1350,1,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,64,1,2107,74,1,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14570,Reno/Tahoe International,Reno,NV,939,15,1,1127,0,0,0 +2013,9,2,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,605,-4,0,720,-9,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,33,1,2101,41,1,0 +2013,9,12,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1135,-8,0,1250,-12,0,0 +2013,8,2,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,15,1,2055,8,0,0 +2013,10,15,2,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1819,-10,0,2207,-23,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1855,105,1,2019,99,1,0 +2013,10,1,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,0,0,2005,-8,0,0 +2013,10,28,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,900,5,0,1040,1,0,0 +2013,10,5,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10792,Buffalo Niagara International,Buffalo,NY,1810,-7,0,1907,-15,0,0 +2013,4,16,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,841,-10,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,902,-1,0,1604,-9,0,0 +2013,5,11,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-5,0,1939,-9,0,0 +2013,7,21,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-8,0,1127,-7,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1130,-4,0,1252,-12,0,0 +2013,9,9,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1953,-16,0,2130,-30,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,915,-2,0,1307,3,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,-4,0,910,-15,0,0 +2013,10,5,6,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-9,0,2008,-10,0,0 +2013,7,25,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-9,0,854,-20,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,910,-3,0,1040,-11,0,0 +2013,6,30,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,-2,0,1335,-2,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1727,27,1,2049,21,1,0 +2013,9,14,6,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1412,-9,0,1430,-10,0,0 +2013,5,25,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-2,0,1544,-14,0,0 +2013,9,29,7,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-5,0,1510,0,0,0 +2013,4,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,-6,0,1715,-23,0,0 +2013,6,21,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,6,0,1030,-3,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,720,2,0,835,0,0,0 +2013,8,21,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1030,2,0,1125,-8,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,2,0,2240,0,0,0 +2013,6,6,4,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,800,-1,0,1045,8,0,0 +2013,4,12,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,-16,0,2247,-10,0,0 +2013,6,26,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1457,130,1,1644,133,1,0 +2013,6,5,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,350,1,1944,359,1,0 +2013,10,27,7,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1215,-4,0,1404,-9,0,0 +2013,5,3,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,752,-4,0,1022,-18,0,0 +2013,7,17,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,610,-5,0,945,36,1,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,3,0,1915,5,0,0 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1905,26,1,2114,31,1,0 +2013,4,11,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,25,1,2205,3,0,0 +2013,5,20,1,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,34,1,1248,19,1,0 +2013,9,14,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1005,12,0,1236,-11,0,0 +2013,10,26,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1033,-11,0,1116,-20,0,0 +2013,4,13,6,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,0,,1545,0,1,1 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1733,12,0,1850,11,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,-6,0,2330,-7,0,0 +2013,6,7,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,718,251,1,917,271,1,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1930,-2,0,2058,2,0,0 +2013,5,8,3,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,745,-10,0,943,-13,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,11,0,40,-1,0,0 +2013,6,15,6,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,4,0,1659,5,0,0 +2013,9,23,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1352,60,1,1549,44,1,0 +2013,6,4,2,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,2,0,2359,-1,0,0 +2013,9,11,3,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1205,8,0,1329,6,0,0 +2013,8,22,4,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1252,10,0,1331,8,0,0 +2013,5,5,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-15,0,1058,-20,0,0 +2013,8,5,1,EV,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-6,0,1840,-11,0,0 +2013,4,22,1,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1029,5,0,1220,-9,0,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2241,3,0,655,6,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2120,167,1,2300,173,1,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1435,31,1,1545,30,1,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,700,14,0,931,-5,0,0 +2013,7,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1251,-5,0,1501,-5,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,-5,0,1930,-5,0,0 +2013,4,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2040,0,0,2205,-8,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,15,1,1530,13,0,0 +2013,4,17,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1453,-3,0,1751,30,1,0 +2013,10,16,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,759,-4,0,1049,24,1,0 +2013,6,15,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1914,-3,0,2100,-13,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1535,1,0,1620,4,0,0 +2013,5,7,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,-5,0,1830,-19,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1230,11,0,1435,4,0,0 +2013,10,20,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1740,24,1,1905,20,1,0 +2013,6,28,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,600,3,0,842,1,0,0 +2013,5,19,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1121,-3,0,1859,-17,0,0 +2013,5,18,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1630,-6,0,1835,-20,0,0 +2013,10,26,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1100,-5,0,1115,-12,0,0 +2013,6,9,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,-2,0,1205,-9,0,0 +2013,5,25,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,21,1,1730,26,1,0 +2013,8,25,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1250,-7,0,1530,-15,0,0 +2013,10,23,3,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,830,-8,0,1125,5,0,0 +2013,8,3,6,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1115,-16,0,1300,-14,0,0 +2013,7,8,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,1,0,929,-6,0,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1042,-3,0,1618,-19,0,0 +2013,7,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2015,-1,0,2156,3,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1245,-3,0,1410,-3,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1400,-7,0,1525,-7,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1340,-5,0,1720,-12,0,0 +2013,7,2,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-8,0,654,-8,0,0 +2013,7,23,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-8,0,1748,-13,0,0 +2013,6,19,3,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1230,8,0,1441,2,0,0 +2013,7,7,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1237,7,0,1434,6,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2050,2,0,15,0,0,0 +2013,8,2,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,0,0,1857,-6,0,0 +2013,6,25,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1025,-5,0,1210,-11,0,0 +2013,4,29,1,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,615,-4,0,835,-8,0,0 +2013,5,15,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-6,0,1510,-8,0,0 +2013,4,21,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,825,-6,0,900,-10,0,0 +2013,4,22,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1435,6,0,1620,-7,0,0 +2013,5,8,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-1,0,740,-7,0,0 +2013,4,14,7,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,32,1,2255,16,1,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,-3,0,2050,19,1,0 +2013,7,17,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1059,-2,0,1215,3,0,0 +2013,10,17,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,855,-1,0,1010,-6,0,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-1,0,2125,25,1,0 +2013,7,1,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-8,0,914,-6,0,0 +2013,8,21,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,-6,0,2019,-16,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1345,12,0,1500,21,1,0 +2013,5,9,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,61,1,1935,38,1,0 +2013,5,11,6,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1215,-3,0,1440,-18,0,0 +2013,7,6,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1635,23,1,1800,13,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2145,2,0,6,-16,0,0 +2013,10,15,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,30,1,1755,20,1,0 +2013,10,2,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1250,-4,0,1634,33,1,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1050,14,0,1820,16,1,0 +2013,10,30,3,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1059,-9,0,1220,-3,0,0 +2013,9,13,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,2030,14,0,17,13,0,0 +2013,8,19,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1843,-3,0,2138,-18,0,0 +2013,4,7,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1120,-1,0,1512,9,0,0 +2013,4,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1215,9,0,1330,2,0,0 +2013,8,17,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2127,2,0,2242,-5,0,0 +2013,5,16,4,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,0,0,1454,-8,0,0 +2013,7,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,730,-2,0,900,-17,0,0 +2013,4,1,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,910,-5,0,1235,-17,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,-6,0,1600,-22,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,3,0,920,-3,0,0 +2013,8,15,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-6,0,835,-16,0,0 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1936,114,1,1954,110,1,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,-5,0,2324,41,1,0 +2013,10,10,4,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1524,10,0,1749,2,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,3,0,1849,-5,0,0 +2013,5,1,3,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,959,29,1,1110,30,1,0 +2013,4,10,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-10,0,1744,-6,0,0 +2013,7,1,1,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-4,0,607,7,0,0 +2013,5,8,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1655,68,1,1944,83,1,0 +2013,5,27,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-9,0,2358,-20,0,0 +2013,9,1,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,800,-5,0,900,-10,0,0 +2013,9,8,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-12,0,1029,-3,0,0 +2013,6,10,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,657,-8,0,920,-11,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,21,1,1645,30,1,0 +2013,9,20,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-7,0,805,-2,0,0 +2013,6,19,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14307,Theodore Francis Green State,Providence,RI,1355,-3,0,1739,-7,0,0 +2013,5,27,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2110,8,0,2240,-5,0,0 +2013,6,28,5,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,830,3,0,1110,-6,0,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1030,0,,1243,0,1,1 +2013,7,21,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1221,53,1,1431,59,1,0 +2013,5,9,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1505,-2,0,1923,22,1,0 +2013,7,28,7,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,-4,0,915,8,0,0 +2013,5,8,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2255,-3,0,2348,-3,0,0 +2013,8,18,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,1130,-21,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2115,-3,0,5,-9,0,0 +2013,9,26,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,733,-6,0,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1312,-3,0,1449,-13,0,0 +2013,8,20,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2344,-10,0,508,-15,0,0 +2013,6,1,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-9,0,932,-20,0,0 +2013,6,15,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1150,-1,0,1425,-20,0,0 +2013,7,5,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1925,-5,0,2025,-15,0,0 +2013,9,29,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,17,1,1015,13,0,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,709,1,0,1100,-2,0,0 +2013,9,29,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,31,1,1835,29,1,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1215,5,0,1335,0,0,0 +2013,5,17,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,535,-1,0,950,13,0,0 +2013,6,24,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,700,9,0,853,7,0,0 +2013,5,19,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-2,0,1030,0,0,0 +2013,9,22,7,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1200,0,0,1300,-2,0,0 +2013,10,10,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1742,-9,0,1850,-17,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1610,23,1,1619,16,1,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,1,0,1735,1,0,0 +2013,10,30,3,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,-5,0,2147,-22,0,0 +2013,5,14,2,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1620,-5,0,1748,-20,0,0 +2013,9,12,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1700,5,0,1830,-3,0,0 +2013,6,15,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,11,0,940,9,0,0 +2013,7,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1707,-4,0,2221,2,0,0 +2013,5,11,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1035,8,0,1315,20,1,0 +2013,9,19,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,810,-5,0,930,-5,0,0 +2013,8,4,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-4,0,1300,-18,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1419,5,0,1625,101,1,0 +2013,7,11,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,3,0,1345,-4,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1944,104,1,2023,103,1,0 +2013,9,7,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1330,-3,0,1635,-27,0,0 +2013,6,12,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-2,0,1026,-16,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2135,-4,0,2310,3,0,0 +2013,6,15,6,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1435,-5,0,2305,-29,0,0 +2013,6,30,7,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1741,22,1,1910,36,1,0 +2013,10,27,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1735,-1,0,1850,14,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2159,15,1,2356,4,0,0 +2013,9,19,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,840,64,1,1405,46,1,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1447,2,0,1630,-10,0,0 +2013,6,18,2,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1728,288,1,1900,273,1,0 +2013,9,18,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,7,0,2132,-11,0,0 +2013,7,7,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,40,1,2255,34,1,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1330,46,1,1445,42,1,0 +2013,4,29,1,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1525,-1,0,1810,-9,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1557,8,0,2204,4,0,0 +2013,5,21,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1200,13,0,1320,8,0,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1005,5,0,1130,-17,0,0 +2013,8,14,3,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-1,0,1955,-24,0,0 +2013,8,23,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1435,-2,0,1740,-11,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2038,-3,0,2203,-10,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1215,-2,0,1348,-11,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1946,9,0,35,-1,0,0 +2013,10,25,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,13,0,910,-2,0,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,-3,0,2238,2,0,0 +2013,5,7,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-8,0,1017,-1,0,0 +2013,4,12,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-8,0,1120,19,1,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1955,41,1,2215,37,1,0 +2013,10,26,6,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,728,-1,0,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,610,-3,0,902,-25,0,0 +2013,4,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1055,30,1,1320,14,0,0 +2013,10,31,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,710,2,0,910,-8,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,735,2,0,1300,-7,0,0 +2013,9,22,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1426,-2,0,1559,-8,0,0 +2013,7,24,3,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1550,-6,0,1848,-21,0,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1835,5,0,2130,-5,0,0 +2013,9,23,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1128,-7,0,1317,-23,0,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1410,16,1,1710,-1,0,0 +2013,4,26,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,-3,0,1512,-14,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,3,0,1815,-5,0,0 +2013,4,4,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1215,11,0,1351,14,0,0 +2013,9,5,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,613,181,1,1359,214,1,0 +2013,10,28,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2305,5,0,720,-13,0,0 +2013,4,26,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1151,-7,0,1704,-14,0,0 +2013,10,31,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-7,0,2226,-7,0,0 +2013,6,22,6,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,-2,0,2046,-10,0,0 +2013,9,15,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1025,37,1,1205,21,1,0 +2013,10,22,2,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1850,12,0,2005,5,0,0 +2013,9,14,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1840,-1,0,1940,-4,0,0 +2013,10,10,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1000,48,1,1030,44,1,0 +2013,9,15,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1005,0,0,1115,10,0,0 +2013,8,10,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1436,29,1,1721,5,0,0 +2013,8,23,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,755,-1,0,1400,-8,0,0 +2013,7,25,4,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,41,1,2203,25,1,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,755,2,0,900,-5,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,4,0,1540,4,0,0 +2013,9,7,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1500,-9,0,1908,0,0,0 +2013,6,26,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,1,0,949,-4,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,11,0,1309,1,0,0 +2013,8,23,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,900,-16,0,0 +2013,8,25,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,-6,0,1525,-2,0,0 +2013,7,25,4,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1515,6,0,1825,3,0,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1158,21,1,2036,23,1,0 +2013,5,24,5,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,62,1,1123,58,1,0 +2013,10,30,3,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-5,0,905,-2,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1754,-3,0,2051,-32,0,0 +2013,5,13,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,600,-8,0,735,-19,0,0 +2013,10,3,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-3,0,916,-15,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,2,0,1500,-5,0,0 +2013,7,8,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,44,1,904,38,1,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,42,1,1031,35,1,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1950,-7,0,2110,-3,0,0 +2013,10,6,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,0,0,1220,-3,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,-2,0,1821,-7,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1410,55,1,1520,42,1,0 +2013,10,2,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1516,-5,0,1645,-12,0,0 +2013,7,24,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,615,3,0,1138,-7,0,0 +2013,8,1,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-5,0,1110,-19,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1520,14,0,1636,15,1,0 +2013,10,1,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,3,0,2120,-8,0,0 +2013,5,4,6,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-8,0,831,-33,0,0 +2013,4,20,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1400,-4,0,1425,-3,0,0 +2013,6,25,2,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,839,10,0,1020,7,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,725,-7,0,1017,-31,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,4,0,1835,25,1,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,0,0,1955,-5,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1457,14,0,1711,6,0,0 +2013,7,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,940,-1,0,1045,-7,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-6,0,930,7,0,0 +2013,6,30,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,-6,0,1816,14,0,0 +2013,7,28,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1007,-6,0,1204,-15,0,0 +2013,5,19,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,41,1,1312,41,1,0 +2013,6,22,6,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1003,6,0,1230,44,1,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1250,43,1,1740,50,1,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2000,-4,0,2215,-18,0,0 +2013,10,21,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1700,74,1,1950,68,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,-5,0,1515,-44,0,0 +2013,9,23,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1853,8,0,2130,-5,0,0 +2013,7,12,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,953,-2,0,1121,-14,0,0 +2013,6,2,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,3,0,1412,1,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,-7,0,1234,-13,0,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,0,0,830,-2,0,0 +2013,6,16,7,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1202,-9,0,1450,-4,0,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,915,-2,0,1123,-5,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2255,45,1,5,26,1,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,-1,0,1455,-12,0,0 +2013,5,23,4,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1500,-7,0,1721,6,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1119,-7,0,1239,-43,0,0 +2013,9,30,1,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1910,-12,0,2020,-20,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,-1,0,1255,-18,0,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,825,-1,0,1050,-28,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1700,34,1,1805,43,1,0 +2013,7,2,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-2,0,753,-4,0,0 +2013,6,4,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-7,0,2054,-1,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1755,32,1,2013,14,0,0 +2013,10,1,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2010,-10,0,2212,-31,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,32,1,1710,22,1,0 +2013,8,12,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-7,0,810,-7,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1909,1,0,2352,13,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,22,1,1835,21,1,0 +2013,10,2,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1617,-9,0,1859,-17,0,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,16,1,1855,30,1,0 +2013,10,9,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1800,-10,0,2040,-23,0,0 +2013,4,1,1,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-5,0,1220,-22,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,601,162,1,1030,176,1,0 +2013,10,21,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-7,0,1302,-13,0,0 +2013,8,1,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,-3,0,2040,-2,0,0 +2013,6,21,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,380,1,1610,377,1,0 +2013,9,10,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1009,-4,0,1650,-9,0,0 +2013,4,22,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1010,-6,0,1139,-15,0,0 +2013,7,22,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,615,-4,0,645,-12,0,0 +2013,9,28,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,-4,0,1031,-18,0,0 +2013,10,20,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-5,0,910,-2,0,0 +2013,7,3,3,OO,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1659,-11,0,1827,-3,0,0 +2013,6,8,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,622,-10,0,750,-31,0,0 +2013,8,2,5,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,9,0,1642,-9,0,0 +2013,10,27,7,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,655,-5,0,1255,-15,0,0 +2013,6,18,2,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,0,0,1538,3,0,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,46,-4,0,621,-18,0,0 +2013,4,2,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1040,3,0,1140,-5,0,0 +2013,8,12,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1840,1,0,2105,-6,0,0 +2013,8,23,5,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1055,-3,0,1235,0,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2059,82,1,2324,79,1,0 +2013,8,5,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2308,0,,2355,0,1,1 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2105,-2,0,2220,-7,0,0 +2013,10,21,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1712,15,1,1849,2,0,0 +2013,8,2,5,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,620,7,0,809,1,0,0 +2013,7,24,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1533,16,1,1840,4,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1810,2,0,2034,-9,0,0 +2013,10,19,6,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1235,10,0,1730,8,0,0 +2013,7,24,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,2,0,1924,-3,0,0 +2013,10,20,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2110,19,1,2315,16,1,0 +2013,7,8,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-8,0,2056,-14,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,10,0,2156,6,0,0 +2013,4,3,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-7,0,1555,-14,0,0 +2013,8,5,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1110,0,0,1229,14,0,0 +2013,4,30,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,848,-4,0,0 +2013,10,22,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,753,-2,0,1012,16,1,0 +2013,6,23,7,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1640,-1,0,1909,-3,0,0 +2013,8,20,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1518,18,1,1645,7,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1050,-3,0,1236,-10,0,0 +2013,4,11,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,600,-2,0,914,-13,0,0 +2013,5,3,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,41,1,620,65,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,-2,0,1236,-20,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1435,0,0,1630,-18,0,0 +2013,9,4,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,758,-11,0,1020,-37,0,0 +2013,9,13,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-3,0,30,-2,0,0 +2013,9,25,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,833,-10,0,942,-6,0,0 +2013,8,2,5,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,610,7,0,745,-7,0,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1310,8,0,1620,-4,0,0 +2013,8,28,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-5,0,613,-10,0,0 +2013,10,1,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1257,96,1,1819,79,1,0 +2013,6,3,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,750,8,0,1013,-8,0,0 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1040,6,0,1140,6,0,0 +2013,5,19,7,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-5,0,850,8,0,0 +2013,8,21,3,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1910,65,1,2142,88,1,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,-4,0,2347,-10,0,0 +2013,4,6,6,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-6,0,2200,-19,0,0 +2013,6,12,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,66,1,1650,66,1,0 +2013,4,24,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,9,0,2235,3,0,0 +2013,5,5,7,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1608,-2,0,1815,-27,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1050,22,1,1430,17,1,0 +2013,4,25,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1903,6,0,1925,1,0,0 +2013,4,21,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1337,1,0,1655,-7,0,0 +2013,9,21,6,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1227,0,0,1330,5,0,0 +2013,10,24,4,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1600,3,0,1800,6,0,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2130,20,1,2345,4,0,0 +2013,7,24,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-9,0,1400,-15,0,0 +2013,6,2,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,2,0,2305,5,0,0 +2013,7,21,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1739,240,1,2018,220,1,0 +2013,8,6,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,-1,0,1615,-12,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2045,-7,0,2318,-5,0,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1121,161,1,1209,163,1,0 +2013,9,29,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1910,43,1,2155,42,1,0 +2013,4,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1520,-2,0,1640,-10,0,0 +2013,10,2,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-4,0,1907,-6,0,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1939,37,1,2250,55,1,0 +2013,8,4,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1822,-10,0,2024,0,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-4,0,1236,-7,0,0 +2013,8,6,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,729,-6,0,1023,-1,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1320,15,1,1640,17,1,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,111,1,2135,130,1,0 +2013,5,30,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1650,89,1,1810,84,1,0 +2013,10,31,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1250,2,0,1545,23,1,0 +2013,5,10,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,606,-2,0,800,39,1,0 +2013,7,18,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1210,-5,0,1358,-14,0,0 +2013,6,22,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,61,1,1445,144,1,0 +2013,6,24,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,8,0,1942,24,1,0 +2013,6,10,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,0,0,2050,2,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,0,0,2230,-4,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,530,-6,0,808,-32,0,0 +2013,6,11,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1118,6,0,1935,-15,0,0 +2013,10,23,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,845,-2,0,1141,-17,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2304,22,1,44,15,1,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1253,-3,0,1425,-18,0,0 +2013,4,26,5,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1520,15,1,1725,25,1,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2255,-4,0,46,-4,0,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,-1,0,2354,0,0,0 +2013,4,22,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-7,0,917,-10,0,0 +2013,8,16,5,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,700,27,1,1249,16,1,0 +2013,9,5,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1628,-3,0,1855,-1,0,0 +2013,10,8,2,OO,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1756,-3,0,2049,0,0,0 +2013,9,11,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,58,1,1932,153,1,0 +2013,10,15,2,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1530,-3,0,1848,-22,0,0 +2013,7,15,1,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1915,5,0,2010,0,0,0 +2013,10,15,2,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,850,-5,0,1025,-4,0,0 +2013,6,9,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,700,-10,0,858,-17,0,0 +2013,5,6,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1105,39,1,1225,32,1,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1901,27,1,1955,17,1,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1920,-3,0,2049,-11,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,615,2,0,835,-8,0,0 +2013,5,19,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1553,-2,0,1820,6,0,0 +2013,6,14,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-3,0,1409,19,1,0 +2013,5,14,2,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2013,49,1,2130,52,1,0 +2013,9,4,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,930,-7,0,1059,-22,0,0 +2013,9,7,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-2,0,1635,-16,0,0 +2013,9,3,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2100,-1,0,2210,-9,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,726,-2,0,859,6,0,0 +2013,7,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1540,-3,0,1706,-9,0,0 +2013,4,28,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1835,1,0,2000,-23,0,0 +2013,6,1,6,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,2005,-13,0,48,9,0,0 +2013,9,1,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,1,0,727,-2,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,935,0,0,1146,-27,0,0 +2013,9,7,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1510,-3,0,1625,-6,0,0 +2013,4,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1008,-4,0,1413,20,1,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2135,-3,0,600,-14,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,945,38,1,1045,32,1,0 +2013,6,14,5,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-4,0,758,-16,0,0 +2013,10,29,2,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,-4,0,2247,-28,0,0 +2013,4,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-8,0,1555,-15,0,0 +2013,10,31,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-11,0,1600,-11,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1830,25,1,2021,22,1,0 +2013,6,8,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1310,-2,0,1415,-11,0,0 +2013,5,26,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2350,-1,0,550,-27,0,0 +2013,5,5,7,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1717,-3,0,2009,-21,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,19,1,2200,4,0,0 +2013,7,15,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1358,10,0,1651,7,0,0 +2013,4,19,5,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1120,-2,0,1354,3,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1536,163,1,1820,166,1,0 +2013,8,1,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1540,72,1,1710,56,1,0 +2013,8,30,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-8,0,833,-20,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1425,-3,0,1510,-11,0,0 +2013,7,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1725,30,1,2100,20,1,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2145,-1,0,2332,-7,0,0 +2013,4,27,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,-8,0,940,-12,0,0 +2013,6,10,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1745,3,0,1835,4,0,0 +2013,6,26,3,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1325,23,1,1655,20,1,0 +2013,8,24,6,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2250,-7,0,18,-18,0,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2210,-4,0,2315,-7,0,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,838,-3,0,939,-10,0,0 +2013,5,13,1,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1340,8,0,1705,-13,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,747,-1,0,947,17,1,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1405,-1,0,1610,-7,0,0 +2013,10,31,4,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1510,-7,0,1920,-14,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1215,-3,0,1350,-11,0,0 +2013,8,9,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1315,-2,0,1440,-9,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1000,-6,0,1133,-15,0,0 +2013,5,25,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,645,-1,0,755,-8,0,0 +2013,7,6,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2140,30,1,2358,20,1,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,6,0,1550,6,0,0 +2013,5,2,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,2,0,1605,-1,0,0 +2013,5,6,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-3,0,1212,-7,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,625,-4,0,735,-18,0,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,4,0,750,4,0,0 +2013,8,15,4,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1710,-3,0,1838,2,0,0 +2013,6,10,1,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1100,-4,0,1222,-10,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2015,37,1,2310,35,1,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1540,158,1,1645,160,1,0 +2013,9,25,3,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1635,22,1,1945,1,0,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,-4,0,737,-3,0,0 +2013,4,16,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1625,-1,0,1755,-7,0,0 +2013,6,12,3,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1227,18,1,1455,12,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,25,1,1758,32,1,0 +2013,8,16,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2040,43,1,2150,34,1,0 +2013,5,4,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,-5,0,1710,-3,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2150,96,1,2245,92,1,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2102,-5,0,136,-11,0,0 +2013,8,25,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-6,0,2045,-21,0,0 +2013,4,10,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-3,0,745,13,0,0 +2013,7,2,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1600,-1,0,1925,-34,0,0 +2013,10,12,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2050,11,0,2205,15,1,0 +2013,7,27,6,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,2,0,649,0,0,0 +2013,5,30,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,19,1,2350,10,0,0 +2013,9,18,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-13,0,1020,-21,0,0 +2013,4,10,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1255,1,0,1535,-5,0,0 +2013,10,10,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1330,-8,0,1450,-4,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,950,-5,0,1244,-29,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-5,0,2159,-6,0,0 +2013,6,6,4,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1040,-6,0,1255,-17,0,0 +2013,8,14,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1510,-6,0,1634,-5,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1726,-1,0,1840,-28,0,0 +2013,8,7,3,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,532,-6,0,627,-8,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-2,0,935,-4,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,2,0,1415,-2,0,0 +2013,9,16,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,950,-1,0,1150,-11,0,0 +2013,5,28,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1730,-8,0,1935,4,0,0 +2013,9,25,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1543,-7,0,1808,-21,0,0 +2013,8,10,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,2150,0,0,202,-10,0,0 +2013,10,23,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,700,-4,0,927,-6,0,0 +2013,10,5,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,831,-11,0,1050,-27,0,0 +2013,9,4,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,655,-3,0,1252,0,0,0 +2013,7,17,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,-7,0,2130,-14,0,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,1,0,1905,-6,0,0 +2013,9,26,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,825,-1,0,920,10,0,0 +2013,10,5,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,851,-1,0,1454,12,0,0 +2013,9,9,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1030,13,0,1140,13,0,0 +2013,7,10,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1214,342,1,1355,375,1,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,915,1,0,1010,2,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,915,-1,0,1100,9,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,-2,0,1745,8,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-5,0,1250,-2,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2155,2,0,2315,-8,0,0 +2013,9,22,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1825,3,0,2118,-15,0,0 +2013,4,6,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,6,0,1845,-5,0,0 +2013,9,11,3,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1237,-7,0,1358,-18,0,0 +2013,8,11,7,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,1,0,1854,-7,0,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1915,3,0,2255,-7,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-1,0,2110,-18,0,0 +2013,6,23,7,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1457,-6,0,1600,3,0,0 +2013,7,24,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,-5,0,2345,-10,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2140,13,0,2255,-14,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1904,1,0,2226,-13,0,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2155,14,0,115,-1,0,0 +2013,9,18,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1453,-8,0,1620,-14,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,-1,0,2318,-15,0,0 +2013,5,23,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,922,2,0,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1210,-4,0,1400,-10,0,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1530,3,0,1700,-11,0,0 +2013,10,29,2,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1500,8,0,1716,-2,0,0 +2013,6,24,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1808,152,1,1830,229,1,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1335,12,0,1505,6,0,0 +2013,4,6,6,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,700,-3,0,940,-23,0,0 +2013,8,5,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,630,-6,0,847,6,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,6,0,1305,5,0,0 +2013,4,28,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,75,1,935,67,1,0 +2013,6,6,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1222,12,0,1744,-9,0,0 +2013,10,26,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,-10,0,2024,-10,0,0 +2013,6,19,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-2,0,1359,-13,0,0 +2013,8,28,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1430,21,1,1555,13,0,0 +2013,8,5,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,5,0,853,-4,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2103,-5,0,2206,-11,0,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,848,-10,0,1058,-30,0,0 +2013,9,18,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1735,9,0,1922,1,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1224,1,0,1445,1,0,0 +2013,7,22,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1705,46,1,1835,46,1,0 +2013,5,28,2,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1505,-4,0,2350,-8,0,0 +2013,6,30,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,601,-3,0,704,-12,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1900,22,1,2125,0,0,0 +2013,6,30,7,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,8,0,1620,7,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,-4,0,2119,-14,0,0 +2013,5,9,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1541,12,0,1734,15,1,0 +2013,4,13,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-7,0,857,-16,0,0 +2013,5,27,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1914,-6,0,2029,-7,0,0 +2013,8,3,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,752,-3,0,850,-12,0,0 +2013,10,19,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1800,-4,0,2045,-12,0,0 +2013,5,8,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,900,-3,0,1215,15,1,0 +2013,4,24,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1630,20,1,1756,34,1,0 +2013,10,4,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-11,0,1659,-19,0,0 +2013,5,4,6,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,-2,0,1113,4,0,0 +2013,7,30,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,2,0,930,-1,0,0 +2013,4,19,5,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,710,1,0,905,-5,0,0 +2013,8,17,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,745,-2,0,1100,-11,0,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1043,38,1,1607,15,1,0 +2013,8,17,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-2,0,834,-7,0,0 +2013,5,20,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-8,0,1607,-7,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,-3,0,1628,-12,0,0 +2013,4,30,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-3,0,1155,-24,0,0 +2013,10,10,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,827,-4,0,1019,-11,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1855,-5,0,2215,1,0,0 +2013,7,16,2,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,0,,1340,0,1,1 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1945,15,1,2230,15,1,0 +2013,4,7,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,645,-7,0,800,-16,0,0 +2013,5,6,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-5,0,747,-14,0,0 +2013,6,26,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1356,0,0,1652,-15,0,0 +2013,7,3,3,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1830,12,0,1950,-2,0,0 +2013,9,26,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-3,0,1805,-23,0,0 +2013,8,28,3,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,5,0,1831,14,0,0 +2013,9,10,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-2,0,1444,-6,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2009,38,1,2135,31,1,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-3,0,908,-14,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1955,-4,0,2115,1,0,0 +2013,5,4,6,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,-6,0,931,5,0,0 +2013,8,15,4,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1150,2,0,1400,-1,0,0 +2013,10,16,3,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2107,25,1,2318,15,1,0 +2013,10,4,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1735,8,0,2059,6,0,0 +2013,5,7,2,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1645,-1,0,2206,-1,0,0 +2013,6,15,6,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1500,7,0,1812,9,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,-4,0,910,-9,0,0 +2013,9,17,2,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1935,4,0,2033,12,0,0 +2013,7,30,2,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1755,-4,0,1854,-12,0,0 +2013,8,15,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,36,10,0,558,-4,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,2355,-7,0,545,-41,0,0 +2013,10,7,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,31,1,1624,18,1,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,47,1,1529,35,1,0 +2013,8,24,6,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,825,-2,0,0 +2013,6,13,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,945,2,0,1655,-8,0,0 +2013,10,24,4,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-3,0,1438,-10,0,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1635,-2,0,2215,-6,0,0 +2013,9,6,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1655,0,0,1810,-1,0,0 +2013,5,8,3,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1000,-2,0,1105,-6,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1705,25,1,1800,14,0,0 +2013,10,30,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1340,-2,0,1503,-4,0,0 +2013,7,2,2,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1758,47,1,2033,47,1,0 +2013,4,18,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,16,1,1350,14,0,0 +2013,10,4,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,0,0,845,-14,0,0 +2013,6,14,5,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,705,9,0,1442,4,0,0 +2013,7,4,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,-2,0,1335,-16,0,0 +2013,10,22,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1840,-7,0,2029,-19,0,0 +2013,7,17,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1002,0,0,1136,-2,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1129,14,0,1401,4,0,0 +2013,9,2,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,905,-6,0,1140,-31,0,0 +2013,10,25,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,750,-5,0,1020,7,0,0 +2013,9,22,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1317,19,1,1504,3,0,0 +2013,4,26,5,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,815,2,0,1320,-13,0,0 +2013,5,15,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,7,0,2125,8,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1440,30,1,1750,9,0,0 +2013,5,1,3,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,811,-7,0,1007,-22,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2110,25,1,2200,24,1,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1740,29,1,1955,31,1,0 +2013,10,3,4,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,0,0,1546,3,0,0 +2013,7,12,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-2,0,1755,8,0,0 +2013,5,13,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-6,0,1956,-13,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1735,90,1,1934,79,1,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1745,-4,0,2012,-26,0,0 +2013,6,30,7,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-13,0,1803,-18,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,70,1,2055,57,1,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2059,-3,0,2358,5,0,0 +2013,5,2,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-3,0,708,5,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,855,12,0,1110,8,0,0 +2013,5,30,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-3,0,1017,-15,0,0 +2013,5,31,5,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,-3,0,1815,0,0,0 +2013,6,17,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-1,0,1418,2,0,0 +2013,6,22,6,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1719,72,1,1848,51,1,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1040,-3,0,1308,-17,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,39,1,1510,54,1,0 +2013,10,17,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-2,0,1814,2,0,0 +2013,9,26,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,815,-7,0,1115,-16,0,0 +2013,6,21,5,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,-1,0,1625,-3,0,0 +2013,5,31,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,-3,0,1025,-11,0,0 +2013,9,27,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1855,140,1,2000,140,1,0 +2013,10,2,3,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1112,-8,0,1404,6,0,0 +2013,5,19,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,-3,0,2152,-10,0,0 +2013,8,10,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-1,0,1553,3,0,0 +2013,8,7,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1806,-6,0,1931,-21,0,0 +2013,4,18,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2010,27,1,2100,30,1,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2050,11,0,2150,5,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,710,-1,0,1200,5,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1317,0,0,1621,-2,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1442,16,1,2252,37,1,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1235,-3,0,1829,4,0,0 +2013,6,9,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-5,0,2308,-8,0,0 +2013,7,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1605,-3,0,1730,5,0,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,755,1,0,916,14,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,1,0,2110,27,1,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,48,1,2204,32,1,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,-4,0,1235,-15,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-4,0,1313,-22,0,0 +2013,7,27,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,-8,0,931,-11,0,0 +2013,8,5,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,69,1,1040,60,1,0 +2013,5,7,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,930,0,0,1245,-14,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,850,-4,0,1020,-16,0,0 +2013,8,28,3,9E,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,1435,-11,0,1622,-12,0,0 +2013,6,17,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1445,97,1,1710,93,1,0 +2013,10,23,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1230,16,1,1320,7,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1127,-2,0,1604,-27,0,0 +2013,5,14,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,625,3,0,918,-6,0,0 +2013,8,21,3,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1635,27,1,1820,5,0,0 +2013,6,8,6,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1555,76,1,1846,89,1,0 +2013,8,23,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,635,-5,0,1000,-21,0,0 +2013,5,2,4,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-5,0,1523,-13,0,0 +2013,7,12,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1748,20,1,2035,21,1,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2100,-4,0,2232,14,0,0 +2013,4,21,7,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-5,0,1315,-15,0,0 +2013,5,14,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,705,-7,0,718,-8,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2220,-4,0,2303,-17,0,0 +2013,8,21,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-9,0,1008,-17,0,0 +2013,4,22,1,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1435,125,1,2229,128,1,0 +2013,8,25,7,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2205,-1,0,2319,1,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-6,0,2132,-18,0,0 +2013,10,16,3,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,700,-3,0,840,0,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,0,0,957,-4,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1125,-5,0,1310,-7,0,0 +2013,10,29,2,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1158,-4,0,1340,-14,0,0 +2013,6,24,1,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1200,92,1,1520,79,1,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-2,0,30,-19,0,0 +2013,7,26,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-8,0,1228,-9,0,0 +2013,6,9,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1015,-2,0,1305,-12,0,0 +2013,5,14,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-6,0,932,-10,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1450,-1,0,1653,-22,0,0 +2013,9,16,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1035,8,0,1640,22,1,0 +2013,4,26,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1115,-8,0,1305,12,0,0 +2013,7,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1705,-3,0,1751,-5,0,0 +2013,4,7,7,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1104,43,1,1248,39,1,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2125,9,0,2300,11,0,0 +2013,5,17,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,81,1,2047,66,1,0 +2013,10,2,3,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,-6,0,2110,-20,0,0 +2013,6,3,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1707,60,1,1842,44,1,0 +2013,10,13,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,715,-19,0,855,-2,0,0 +2013,9,13,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1010,-5,0,1112,10,0,0 +2013,10,29,2,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,855,-9,0,1130,-25,0,0 +2013,8,1,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,18,1,2050,11,0,0 +2013,4,10,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1915,1,0,2050,-12,0,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,2,0,2135,0,0,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-2,0,940,-3,0,0 +2013,4,23,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,1,0,815,-1,0,0 +2013,6,15,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,0,0,910,-14,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1620,42,1,1818,37,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1350,-1,0,1603,-19,0,0 +2013,8,17,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,930,19,1,1235,15,1,0 +2013,9,11,3,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1822,39,1,2021,20,1,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1020,8,0,1655,-4,0,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,2,0,2130,-6,0,0 +2013,8,7,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1510,5,0,1735,-2,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,0,0,1835,-7,0,0 +2013,9,25,3,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,832,-7,0,926,4,0,0 +2013,6,12,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-5,0,1345,-10,0,0 +2013,5,22,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1610,1,0,1710,-2,0,0 +2013,9,13,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,706,91,1,1027,69,1,0 +2013,10,3,4,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1646,-7,0,2048,-12,0,0 +2013,4,24,3,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,753,-3,0,1340,-8,0,0 +2013,8,4,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,630,2,0,1505,-12,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,855,-1,0,1214,-3,0,0 +2013,4,6,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2000,8,0,2120,2,0,0 +2013,4,26,5,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-7,0,1145,-20,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1530,11,0,2000,3,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,83,1,1640,74,1,0 +2013,9,2,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1030,-1,0,1125,-10,0,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,645,3,0,927,0,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,-4,0,1950,-2,0,0 +2013,7,26,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1705,56,1,1857,54,1,0 +2013,8,21,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1729,4,0,0 +2013,5,15,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-5,0,2210,-21,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2330,2,0,517,-18,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1910,-4,0,2300,-20,0,0 +2013,10,5,6,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,858,11,0,1037,34,1,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,920,11,0,1035,-1,0,0 +2013,6,3,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1345,27,1,1500,33,1,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,715,0,0,915,-3,0,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1117,-1,0,1207,-13,0,0 +2013,5,23,4,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1300,20,1,1534,10,0,0 +2013,10,4,5,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1805,-3,0,2055,-21,0,0 +2013,5,9,4,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,827,-16,0,0 +2013,8,8,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1350,-3,0,1641,18,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1256,-5,0,1425,-16,0,0 +2013,7,26,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-1,0,725,-6,0,0 +2013,9,11,3,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1012,5,0,1126,1,0,0 +2013,7,12,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,705,-6,0,1535,4,0,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1050,7,0,1350,9,0,0 +2013,8,4,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,705,3,0,1433,-12,0,0 +2013,4,29,1,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1828,0,0,2130,-21,0,0 +2013,8,12,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1358,-4,0,1509,7,0,0 +2013,5,19,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,740,-3,0,901,1,0,0 +2013,6,24,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,0,0,1023,-4,0,0 +2013,10,26,6,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,113,1,1943,112,1,0 +2013,6,16,7,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,2005,115,1,48,107,1,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,835,16,1,1030,30,1,0 +2013,10,2,3,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,-4,0,2130,-7,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-8,0,2140,-6,0,0 +2013,9,1,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1455,-7,0,1725,-26,0,0 +2013,8,25,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,-1,0,2000,13,0,0 +2013,9,29,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-5,0,841,-11,0,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1730,-3,0,1835,-6,0,0 +2013,9,4,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,0,0,1410,-3,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,745,5,0,1005,-2,0,0 +2013,4,4,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,0,0,910,-14,0,0 +2013,9,21,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,755,-6,0,933,-3,0,0 +2013,7,12,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,-8,0,1525,-18,0,0 +2013,9,20,5,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1021,6,0,1249,15,1,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,730,0,,945,0,1,1 +2013,7,13,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,720,3,0,958,-21,0,0 +2013,10,13,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1926,8,0,2155,5,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1904,18,1,1958,4,0,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-8,0,2115,-7,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1940,3,0,15,-4,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1449,5,0,1626,-14,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,920,-3,0,1227,-8,0,0 +2013,10,10,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,1,0,1225,-9,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-4,0,2157,-18,0,0 +2013,10,18,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,610,12,0,824,3,0,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,715,-1,0,925,-15,0,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,733,11,0,936,4,0,0 +2013,9,16,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1905,-2,0,2045,-16,0,0 +2013,6,4,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1536,-2,0,1559,-10,0,0 +2013,9,27,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1924,-10,0,2033,-13,0,0 +2013,5,14,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,850,-1,0,1146,-4,0,0 +2013,8,17,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-4,0,1433,-14,0,0 +2013,7,13,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-2,0,1010,5,0,0 +2013,8,26,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,24,1,1310,-2,0,0 +2013,9,13,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,74,1,2139,74,1,0 +2013,4,11,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,-2,0,1100,-8,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1500,-2,0,1621,-19,0,0 +2013,7,10,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,630,4,0,800,1,0,0 +2013,5,19,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,940,1,0,1110,-16,0,0 +2013,7,25,4,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,-4,0,1636,-10,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-3,0,2356,-9,0,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1725,8,0,1820,10,0,0 +2013,4,5,5,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1006,-5,0,1234,-34,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,1,0,2020,-26,0,0 +2013,8,9,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1730,1,0,1800,2,0,0 +2013,5,16,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-7,0,2308,-3,0,0 +2013,10,23,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1710,-1,0,1824,-2,0,0 +2013,8,13,2,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1810,35,1,1920,48,1,0 +2013,4,15,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,605,-7,0,815,4,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1214,-4,0,1701,6,0,0 +2013,10,11,5,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1010,4,0,1320,4,0,0 +2013,5,23,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,1,0,1100,15,1,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2210,-3,0,2340,-18,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,27,1,609,-8,0,0 +2013,8,19,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,-8,0,715,-5,0,0 +2013,8,25,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-3,0,1920,1,0,0 +2013,10,13,7,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,-4,0,1250,-37,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1117,13,0,1235,6,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,950,2,0,1220,-19,0,0 +2013,5,2,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-2,0,1255,-22,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1900,26,1,2130,21,1,0 +2013,8,27,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,650,-3,0,1005,49,1,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1005,0,0,1138,2,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-10,0,1034,19,1,0 +2013,9,10,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1929,15,1,2336,15,1,0 +2013,7,11,4,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1348,-4,0,1604,-8,0,0 +2013,8,23,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1532,6,0,1948,-12,0,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2100,9,0,2150,2,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2235,-5,0,2335,-11,0,0 +2013,6,23,7,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,841,-10,0,1008,-27,0,0 +2013,10,12,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1855,-11,0,2025,-17,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,605,-1,0,720,1,0,0 +2013,10,25,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,23,1,1729,58,1,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-1,0,853,11,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,1,0,1055,8,0,0 +2013,10,6,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,930,2,0,1055,10,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-3,0,1250,4,0,0 +2013,5,17,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,910,-2,0,1055,-19,0,0 +2013,8,15,4,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1700,56,1,1955,55,1,0 +2013,5,31,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,850,54,1,1117,46,1,0 +2013,10,4,5,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-8,0,1544,-7,0,0 +2013,10,14,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-3,0,1145,3,0,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1950,3,0,2248,3,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,6,0,1505,3,0,0 +2013,10,11,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1640,0,0,1740,-2,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1900,5,0,2125,35,1,0 +2013,5,19,7,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,910,-2,0,1144,-8,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1720,22,1,1856,8,0,0 +2013,10,30,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-4,0,1205,-16,0,0 +2013,4,13,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,931,-1,0,1123,-5,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,-1,0,1110,-2,0,0 +2013,7,27,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,614,0,0,1016,-20,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,35,1,1335,29,1,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2010,15,1,2312,-8,0,0 +2013,7,23,2,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,5,0,2010,0,0,0 +2013,5,11,6,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,825,-13,0,1017,-32,0,0 +2013,9,25,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1001,-6,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,900,-2,0,1105,4,0,0 +2013,8,24,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1505,0,0,1605,1,0,0 +2013,8,15,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-4,0,930,12,0,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2155,19,1,2255,11,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,840,9,0,1010,16,1,0 +2013,10,3,4,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1004,2,0,1529,-12,0,0 +2013,6,19,3,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,12,0,2120,6,0,0 +2013,9,7,6,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,645,-1,0,815,-22,0,0 +2013,5,14,2,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-3,0,1705,-3,0,0 +2013,8,26,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,4,0,1020,9,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,-3,0,835,-13,0,0 +2013,8,19,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1210,77,1,1350,50,1,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,900,-2,0,1345,4,0,0 +2013,8,13,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1745,0,,1945,0,1,1 +2013,5,10,5,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1715,22,1,1840,26,1,0 +2013,8,5,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1030,-5,0,1145,-7,0,0 +2013,10,29,2,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1755,-4,0,1920,-20,0,0 +2013,6,29,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,9,0,1335,2,0,0 +2013,5,12,7,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-1,0,945,-11,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,830,9,0,1045,-9,0,0 +2013,5,31,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,744,-4,0,1550,-32,0,0 +2013,5,29,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2110,21,1,2225,13,0,0 +2013,4,16,2,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2305,-6,0,720,-12,0,0 +2013,6,18,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1927,56,1,2109,71,1,0 +2013,8,3,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,-10,0,1941,-11,0,0 +2013,9,12,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,1,0,745,-12,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-1,0,857,-7,0,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1025,-4,0,1329,-4,0,0 +2013,10,19,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-8,0,1643,-23,0,0 +2013,8,21,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1636,-1,0,1748,-2,0,0 +2013,9,7,6,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-6,0,1415,-17,0,0 +2013,6,30,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1550,-9,0,1728,-22,0,0 +2013,10,3,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,26,1,1809,32,1,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1135,0,0,1415,-13,0,0 +2013,10,24,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1729,-5,0,1900,-8,0,0 +2013,5,21,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,109,1,1820,118,1,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1257,-5,0,1413,1,0,0 +2013,8,8,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-5,0,1030,-11,0,0 +2013,5,1,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-7,0,1422,1,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,815,-3,0,920,-8,0,0 +2013,9,20,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1605,118,1,1811,134,1,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1700,33,1,1950,20,1,0 +2013,7,11,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,-5,0,1712,4,0,0 +2013,10,17,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,955,0,0,1135,-5,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,734,-7,0,929,-14,0,0 +2013,10,14,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2110,-24,0,2210,-24,0,0 +2013,7,26,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1245,-1,0,1415,2,0,0 +2013,9,13,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,16,1,1935,11,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,-4,0,2045,-16,0,0 +2013,5,19,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-6,0,700,-12,0,0 +2013,6,22,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,710,-5,0,725,-14,0,0 +2013,6,3,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1523,97,1,1814,92,1,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,610,-3,0,805,-5,0,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,1,0,1605,-9,0,0 +2013,7,10,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1930,-1,0,2050,21,1,0 +2013,4,25,4,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1635,15,1,1740,6,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2020,9,0,2305,2,0,0 +2013,7,29,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-10,0,1925,-23,0,0 +2013,6,6,4,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1030,-1,0,1835,-9,0,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,0,0,1035,-6,0,0 +2013,4,6,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1800,-10,0,1933,-33,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1037,-7,0,1219,-15,0,0 +2013,6,9,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,21,1,2351,40,1,0 +2013,8,16,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-3,0,908,4,0,0 +2013,8,29,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1120,0,,1315,0,1,1 +2013,9,4,3,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,835,-6,0,1044,-9,0,0 +2013,5,30,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,850,17,1,951,-5,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1405,-10,0,1658,-21,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1755,16,1,2320,-2,0,0 +2013,6,8,6,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1650,29,1,1930,7,0,0 +2013,6,16,7,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,751,6,0,908,-5,0,0 +2013,7,20,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,48,1,1735,56,1,0 +2013,10,21,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,0,0,718,-12,0,0 +2013,10,25,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1025,-2,0,1125,-14,0,0 +2013,9,10,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,0,0,1411,39,1,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1040,1,0,1915,-41,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1509,-3,0,1741,-21,0,0 +2013,7,7,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-4,0,1625,-12,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,-1,0,1125,8,0,0 +2013,10,26,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,2,0,2205,0,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1915,47,1,2156,30,1,0 +2013,4,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1315,15,1,1531,6,0,0 +2013,8,6,2,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2213,-4,0,605,-10,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,-5,0,2100,17,1,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1700,22,1,1820,26,1,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1345,5,0,1545,3,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,30,1,1627,11,0,0 +2013,8,14,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,84,1,1315,104,1,0 +2013,5,7,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1240,3,0,1447,-10,0,0 +2013,9,27,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1740,22,1,1835,18,1,0 +2013,8,4,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1315,14,0,1440,9,0,0 +2013,10,29,2,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1140,-4,0,1450,-36,0,0 +2013,4,13,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1530,29,1,1829,15,1,0 +2013,9,14,6,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,630,-4,0,741,-12,0,0 +2013,7,22,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,911,-3,0,1110,-7,0,0 +2013,9,18,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1535,0,0,1655,-3,0,0 +2013,7,17,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1317,4,0,1610,17,1,0 +2013,5,5,7,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1613,-6,0,1903,-10,0,0 +2013,4,27,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1833,125,1,1935,129,1,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-9,0,1801,-16,0,0 +2013,4,19,5,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,12,0,2010,3,0,0 +2013,10,13,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2010,-1,0,2300,-3,0,0 +2013,10,22,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1046,20,1,1210,17,1,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2040,274,1,2305,258,1,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,6,0,1651,0,0,0 +2013,10,10,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,830,-6,0,907,1,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2200,-2,0,2329,-15,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1635,16,1,2130,19,1,0 +2013,9,29,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,822,3,0,0 +2013,8,6,2,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,605,-3,0,612,-6,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,0,0,1440,-10,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1249,15,1,1703,-12,0,0 +2013,8,8,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,0,0,1545,0,0,0 +2013,5,3,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,640,146,1,849,156,1,0 +2013,6,7,5,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1455,18,1,1600,12,0,0 +2013,6,28,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-6,0,1341,-3,0,0 +2013,4,13,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,47,1,1330,39,1,0 +2013,8,28,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,945,0,0,1220,10,0,0 +2013,10,21,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,0,0,1820,-28,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-6,0,1347,-5,0,0 +2013,4,4,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,905,-4,0,1512,-10,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,1640,-11,0,0 +2013,7,8,1,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,641,-4,0,855,0,0,0 +2013,8,18,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,22,1,1412,8,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,18,1,1620,1,0,0 +2013,10,16,3,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1200,-8,0,1345,-11,0,0 +2013,5,6,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-7,0,855,-28,0,0 +2013,6,11,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1721,-7,0,1926,-6,0,0 +2013,7,2,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-6,0,2308,-18,0,0 +2013,5,27,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1320,-6,0,1614,-8,0,0 +2013,6,13,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,11,0,1635,-6,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1755,1,0,2005,26,1,0 +2013,9,11,3,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2005,4,0,2215,-4,0,0 +2013,7,26,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1809,-10,0,2100,-15,0,0 +2013,5,4,6,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-6,0,1020,-15,0,0 +2013,7,3,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,2,0,650,-13,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,0,0,1707,10,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1130,1,0,1445,-12,0,0 +2013,6,21,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,935,24,1,1225,15,1,0 +2013,8,31,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1330,-2,0,1635,-14,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1305,-4,0,1441,-5,0,0 +2013,7,1,1,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,-6,0,1510,-14,0,0 +2013,9,25,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,11,0,1644,-8,0,0 +2013,6,14,5,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,17,1,535,37,1,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1540,-3,0,1724,9,0,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,630,1,0,745,3,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,2,0,1545,-4,0,0 +2013,4,13,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-8,0,1634,-24,0,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-4,0,1640,-2,0,0 +2013,4,8,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1054,-6,0,1430,-13,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1925,-3,0,2130,-20,0,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,0,0,1831,-7,0,0 +2013,7,3,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-5,0,1749,-21,0,0 +2013,10,24,4,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2225,-10,0,700,-7,0,0 +2013,6,22,6,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-7,0,919,4,0,0 +2013,6,14,5,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,-7,0,1530,-9,0,0 +2013,5,7,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,-5,0,930,-35,0,0 +2013,4,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,23,1,2216,19,1,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1420,21,1,1840,24,1,0 +2013,6,30,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,932,83,1,1800,91,1,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,12,0,1438,7,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1535,36,1,1720,20,1,0 +2013,6,24,1,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1510,12,0,1735,21,1,0 +2013,7,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,33,1,1826,7,0,0 +2013,6,30,7,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-2,0,1625,11,0,0 +2013,10,3,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-1,0,1521,-7,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1436,-2,0,1602,-1,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,76,1,2016,69,1,0 +2013,7,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1834,-10,0,1934,-24,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,630,0,0,1125,-4,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1940,0,0,2055,-13,0,0 +2013,6,24,1,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,86,1,629,94,1,0 +2013,10,31,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,-14,0,920,-7,0,0 +2013,8,22,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2033,23,1,2324,13,0,0 +2013,6,4,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-5,0,1925,-6,0,0 +2013,6,1,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-12,0,1520,-21,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,-1,0,2125,-17,0,0 +2013,9,4,3,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,710,-3,0,815,-8,0,0 +2013,6,29,6,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-1,0,1405,-5,0,0 +2013,9,23,1,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1525,-7,0,1630,-11,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2155,14,0,10,0,0,0 +2013,9,19,4,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1810,60,1,1945,40,1,0 +2013,8,14,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1908,174,1,2043,158,1,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1820,30,1,2050,32,1,0 +2013,9,19,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2118,36,1,2359,13,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-6,0,1245,-14,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1044,42,1,1230,36,1,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,730,-1,0,835,-11,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,2,0,2255,16,1,0 +2013,4,1,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,1,0,1219,-10,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1830,2,0,2100,40,1,0 +2013,7,12,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,2,0,1820,-2,0,0 +2013,5,18,6,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1120,-6,0,1945,-13,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1909,-5,0,2037,-19,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-5,0,1019,-2,0,0 +2013,7,24,3,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1250,35,1,1851,25,1,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1405,72,1,1809,91,1,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-9,0,2320,-23,0,0 +2013,5,27,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,833,89,1,946,85,1,0 +2013,4,12,5,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,-1,0,2048,-17,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1227,-5,0,1250,-10,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,47,1,1434,32,1,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1355,-6,0,1744,-7,0,0 +2013,8,7,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,854,13,0,0 +2013,7,17,3,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,2105,14,0,2155,1,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,15,1,1330,4,0,0 +2013,10,31,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1010,18,1,1120,10,0,0 +2013,4,3,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-6,0,1608,-3,0,0 +2013,7,29,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1951,-4,0,2316,-20,0,0 +2013,10,17,4,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1755,78,1,2100,70,1,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,830,22,1,1015,30,1,0 +2013,7,5,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,-13,0,2015,88,1,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,-2,0,1738,-5,0,0 +2013,8,22,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1050,-11,0,1203,-31,0,0 +2013,4,19,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1005,0,,1352,0,1,1 +2013,7,27,6,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2101,-2,0,2334,-18,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1710,7,0,1940,2,0,0 +2013,6,2,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-7,0,841,-17,0,0 +2013,7,21,7,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2020,82,1,2151,76,1,0 +2013,10,2,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1915,-7,0,2050,-18,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,8,0,1911,8,0,0 +2013,6,22,6,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,800,14,0,1019,7,0,0 +2013,8,25,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,800,29,1,915,35,1,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2015,13,0,2122,6,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1754,2,0,2040,-21,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,17,1,1600,4,0,0 +2013,8,8,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,730,-3,0,1330,-6,0,0 +2013,6,24,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-5,0,1000,17,1,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,727,-22,0,0 +2013,7,30,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1236,-3,0,1418,2,0,0 +2013,8,4,7,DL,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1905,171,1,2020,260,1,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1000,17,1,1150,4,0,0 +2013,10,1,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1145,-8,0,1705,-15,0,0 +2013,4,8,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1650,2,0,0 +2013,5,19,7,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,2040,14,0,2330,18,1,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1330,11,0,1410,5,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1820,-2,0,2025,-15,0,0 +2013,10,11,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1145,45,1,1424,67,1,0 +2013,4,24,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,900,15,1,1212,4,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,-1,0,2308,-10,0,0 +2013,8,20,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1402,19,1,1520,28,1,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,700,27,1,815,23,1,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1635,11,0,1715,8,0,0 +2013,8,5,1,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,2215,-5,0,622,22,1,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,208,1,2151,220,1,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1557,4,0,1733,3,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1703,-2,0,1938,-24,0,0 +2013,8,25,7,YV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1808,-3,0,1924,-19,0,0 +2013,7,10,3,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,27,1,1600,33,1,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1741,-1,0,1920,-22,0,0 +2013,4,17,3,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,374,1,2250,347,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1727,-4,0,1910,8,0,0 +2013,9,12,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,715,18,1,1015,21,1,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-6,0,1035,-24,0,0 +2013,8,31,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-6,0,1625,-23,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,715,3,0,850,-8,0,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1505,-1,0,1620,-8,0,0 +2013,6,6,4,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,845,-6,0,1110,3,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1125,-7,0,1334,-24,0,0 +2013,5,8,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1249,-3,0,1357,-5,0,0 +2013,7,5,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,1415,-12,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,-1,0,1135,-10,0,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,835,-2,0,1235,9,0,0 +2013,10,25,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1049,-11,0,0 +2013,8,1,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,6,0,1035,-3,0,0 +2013,5,23,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,839,44,1,1420,44,1,0 +2013,6,2,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,946,-1,0,1129,6,0,0 +2013,4,26,5,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,14,0,1445,19,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,956,-5,0,1152,7,0,0 +2013,10,22,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1313,-3,0,1403,-13,0,0 +2013,9,9,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2004,1,0,2310,-10,0,0 +2013,4,15,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2150,-9,0,2315,-10,0,0 +2013,10,3,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1635,44,1,1655,52,1,0 +2013,5,21,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-7,0,1205,-16,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1459,223,1,1727,247,1,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2016,9,0,2223,0,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1245,11,0,1515,4,0,0 +2013,8,16,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,2,0,915,-4,0,0 +2013,10,25,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1509,-5,0,1919,-12,0,0 +2013,10,30,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1826,-19,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2050,-2,0,2205,-13,0,0 +2013,7,6,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,1,0,1200,-4,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1457,12,0,1653,8,0,0 +2013,6,17,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,9,0,1357,27,1,0 +2013,7,7,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,0,0,1748,-2,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1512,4,0,1646,-17,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1747,-2,0,1917,42,1,0 +2013,6,2,7,OO,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,620,4,0,858,5,0,0 +2013,9,14,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-1,0,1600,-13,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1320,17,1,1425,14,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,11,0,2135,-1,0,0 +2013,4,6,6,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1626,-12,0,1840,-28,0,0 +2013,4,23,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11042,Cleveland-Hopkins International,Cleveland,OH,1050,3,0,1744,-15,0,0 +2013,6,22,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,744,-7,0,820,-10,0,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,630,2,0,805,-4,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1116,14,0,1347,13,0,0 +2013,9,24,2,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,7,0,1710,-2,0,0 +2013,7,25,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1525,-3,0,1637,8,0,0 +2013,5,2,4,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-7,0,1315,0,0,0 +2013,5,9,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,914,-10,0,1012,-25,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1743,-3,0,1920,-12,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1140,0,0,1410,6,0,0 +2013,8,12,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-3,0,1620,-14,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1843,-5,0,2016,-14,0,0 +2013,6,18,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1116,-7,0,1151,-7,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1345,4,0,1621,3,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,3,0,1834,1,0,0 +2013,7,10,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,1,0,1205,1,0,0 +2013,5,5,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,705,-16,0,822,-7,0,0 +2013,7,21,7,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,930,21,1,1745,11,0,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,-6,0,1535,-8,0,0 +2013,10,11,5,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1835,-10,0,2154,-44,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2252,-4,0,30,-14,0,0 +2013,7,27,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,19,1,147,3,0,0 +2013,9,19,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,730,-4,0,1016,-15,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1900,15,1,2005,7,0,0 +2013,7,25,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1652,12,0,1727,3,0,0 +2013,10,7,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,707,-4,0,813,-8,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,920,-1,0,1100,-4,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,2,0,900,-1,0,0 +2013,4,12,5,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1156,13,0,1349,5,0,0 +2013,10,29,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1728,-2,0,1945,-11,0,0 +2013,4,20,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1650,67,1,1917,42,1,0 +2013,8,6,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,4,0,2103,8,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1741,112,1,1834,114,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1625,38,1,1730,48,1,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,1334,1,0,0 +2013,5,7,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-8,0,2103,-6,0,0 +2013,7,9,2,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1644,-3,0,1829,-13,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,-4,0,1915,-20,0,0 +2013,8,19,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1232,-2,0,1511,20,1,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1155,0,0,1700,-15,0,0 +2013,5,8,3,OO,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,22,1,853,15,1,0 +2013,8,25,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,-4,0,2042,-11,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2210,-2,0,14,1,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,-1,0,1035,-11,0,0 +2013,5,21,2,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,2,0,913,2,0,0 +2013,8,13,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,-5,0,903,-2,0,0 +2013,5,26,7,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,958,-1,0,1041,-8,0,0 +2013,4,5,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1725,-6,0,2009,-23,0,0 +2013,4,30,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-8,0,1955,-6,0,0 +2013,7,6,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1005,-17,0,0 +2013,4,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1350,-5,0,1532,2,0,0 +2013,7,24,3,OO,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,933,-1,0,1244,-3,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1051,-4,0,1205,-7,0,0 +2013,9,20,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,945,0,0,1207,-18,0,0 +2013,6,9,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1957,-4,0,2107,-19,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,0,0,2012,-9,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1505,0,0,1815,-5,0,0 +2013,7,10,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,26,1,1220,8,0,0 +2013,10,1,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1352,6,0,1624,3,0,0 +2013,4,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1805,3,0,2020,-16,0,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,-2,0,1312,-21,0,0 +2013,6,26,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1255,10,0,1544,-10,0,0 +2013,10,12,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,-3,0,2201,-2,0,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1805,1,0,2054,18,1,0 +2013,5,14,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,7,0,1815,1,0,0 +2013,4,7,7,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1030,-5,0,1130,-7,0,0 +2013,8,10,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1348,0,0,1545,-3,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-4,0,948,22,1,0 +2013,4,25,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,841,-4,0,1107,-4,0,0 +2013,5,3,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,620,1,0,905,1,0,0 +2013,10,29,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,740,-4,0,900,10,0,0 +2013,10,2,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-3,0,2120,-9,0,0 +2013,8,20,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1455,-9,0,1830,-15,0,0 +2013,9,22,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,830,-7,0,1022,-17,0,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,14,0,2350,-6,0,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,-11,0,2155,-6,0,0 +2013,9,25,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1220,-1,0,1342,-21,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,11,0,1445,9,0,0 +2013,4,2,2,EV,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-7,0,1400,-20,0,0 +2013,5,2,4,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,-1,0,1445,-3,0,0 +2013,7,22,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1425,26,1,1710,41,1,0 +2013,9,11,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-13,0,646,-13,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1308,2,0,1601,52,1,0 +2013,9,16,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,-9,0,2154,-21,0,0 +2013,8,3,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-6,0,1816,-20,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,745,-6,0,915,-20,0,0 +2013,7,8,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,2,0,1523,-2,0,0 +2013,6,17,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-6,0,1934,-2,0,0 +2013,9,6,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1119,-3,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1505,11,0,1825,2,0,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1112,-5,0,1243,-16,0,0 +2013,10,28,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,7,0,1548,0,0,0 +2013,4,20,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-7,0,603,-19,0,0 +2013,8,19,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2020,3,0,2235,-8,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1630,14,0,1811,-5,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1958,1,0,2128,-6,0,0 +2013,8,15,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1855,2,0,2015,9,0,0 +2013,9,20,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-5,0,2210,-16,0,0 +2013,7,31,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,0,0,1657,-18,0,0 +2013,9,9,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1624,1,0,1808,2,0,0 +2013,6,8,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1545,-2,0,1715,-12,0,0 +2013,9,26,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1556,-28,0,0 +2013,8,20,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1500,-6,0,1635,11,0,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,2,0,2240,-13,0,0 +2013,5,12,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-4,0,1120,-15,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,30,1,2220,26,1,0 +2013,9,8,7,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1430,-4,0,1606,-4,0,0 +2013,10,31,4,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1905,-1,0,2150,-12,0,0 +2013,9,27,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1840,42,1,2120,16,1,0 +2013,7,7,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1740,-4,0,1900,2,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-4,0,1350,-6,0,0 +2013,9,29,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1355,-2,0,1636,10,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1450,2,0,1720,13,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,42,1,1646,33,1,0 +2013,5,1,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-1,0,1519,-3,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1510,15,1,1520,22,1,0 +2013,6,22,6,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-9,0,2359,-43,0,0 +2013,6,13,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,820,-1,0,940,-9,0,0 +2013,9,19,4,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,725,-10,0,1022,-7,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,825,2,0,955,-4,0,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2010,-8,0,2300,-6,0,0 +2013,5,27,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,855,8,0,912,20,1,0 +2013,7,22,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1347,-2,0,1644,36,1,0 +2013,5,31,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,-8,0,1409,-12,0,0 +2013,8,1,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,2105,15,1,2155,-2,0,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1721,27,1,1938,2,0,0 +2013,7,10,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,800,49,1,1040,55,1,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,-7,0,830,-9,0,0 +2013,9,10,2,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1013,-4,0,1128,-13,0,0 +2013,9,16,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,-13,0,1135,0,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-1,0,745,-26,0,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-4,0,901,-7,0,0 +2013,7,22,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,67,1,1001,63,1,0 +2013,5,3,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-4,0,920,-3,0,0 +2013,10,2,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1639,10,0,1905,-5,0,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,614,-5,0,750,-19,0,0 +2013,9,11,3,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,-8,0,1819,-21,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1449,10,0,1726,37,1,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1245,0,0,1410,-10,0,0 +2013,9,22,7,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1039,-10,0,1211,-28,0,0 +2013,7,22,1,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,29,1,2205,21,1,0 +2013,5,17,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1710,-5,0,2333,-14,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1236,-1,0,1830,-9,0,0 +2013,10,14,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,640,-5,0,745,-7,0,0 +2013,10,9,3,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,-4,0,1640,-6,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1925,10,0,2230,4,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,840,6,0,1101,0,0,0 +2013,5,31,5,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,810,4,0,942,2,0,0 +2013,4,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1203,4,0,1406,2,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,8,0,1601,2,0,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1305,21,1,1835,8,0,0 +2013,5,11,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1115,0,0,1248,-4,0,0 +2013,6,6,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-6,0,1119,-12,0,0 +2013,7,28,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1444,-2,0,1555,-17,0,0 +2013,8,7,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,28,1,1221,73,1,0 +2013,7,2,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-1,0,1357,-1,0,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,5,0,1525,-7,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-2,0,926,-7,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2035,9,0,2234,60,1,0 +2013,10,17,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-3,0,945,-1,0,0 +2013,4,10,3,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,600,4,0,811,8,0,0 +2013,5,5,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1215,4,0,1410,-26,0,0 +2013,8,23,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-1,0,1355,-4,0,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-1,0,1325,13,0,0 +2013,5,4,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,5,0,2348,-9,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-3,0,1328,-21,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1000,-3,0,1350,-8,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1548,-2,0,1934,-11,0,0 +2013,7,2,2,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,-3,0,1205,-7,0,0 +2013,6,16,7,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2125,-1,0,545,-28,0,0 +2013,6,24,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-11,0,1650,-14,0,0 +2013,10,28,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-2,0,820,-7,0,0 +2013,5,15,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1810,7,0,2125,-3,0,0 +2013,9,12,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,6,0,745,7,0,0 +2013,6,19,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,33,1,1154,41,1,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1605,0,0,1745,-4,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-5,0,2120,-4,0,0 +2013,4,19,5,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,815,0,,1020,0,1,1 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,0,0,1215,-5,0,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,80,1,2345,82,1,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1423,18,1,1713,-2,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,0,0,1902,-3,0,0 +2013,5,31,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-6,0,1457,-10,0,0 +2013,7,4,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,853,-3,0,1115,-41,0,0 +2013,10,30,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-4,0,2019,3,0,0 +2013,8,23,5,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,-3,0,2140,-8,0,0 +2013,6,20,4,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1328,-6,0,1346,-4,0,0 +2013,5,17,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1521,-4,0,1606,-4,0,0 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,650,0,0,825,-9,0,0 +2013,8,25,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,0,0,2320,-13,0,0 +2013,6,10,1,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-8,0,1159,-15,0,0 +2013,7,16,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,3,0,815,1,0,0 +2013,5,18,6,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1755,-2,0,2113,-46,0,0 +2013,8,28,3,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1713,-2,0,2057,11,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1359,-8,0,1635,-15,0,0 +2013,8,20,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-8,0,1115,-15,0,0 +2013,5,8,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,16,1,1710,10,0,0 +2013,10,4,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1355,-8,0,1610,-23,0,0 +2013,6,21,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,710,-6,0,855,-8,0,0 +2013,7,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-5,0,805,-16,0,0 +2013,10,24,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-1,0,1550,-7,0,0 +2013,6,15,6,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,710,-3,0,820,-11,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1705,334,1,1944,292,1,0 +2013,7,8,1,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,81,1,1900,47,1,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,62,1,2310,58,1,0 +2013,5,18,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,625,22,1,945,5,0,0 +2013,6,5,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,915,-5,0,1058,-11,0,0 +2013,9,23,1,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,46,1,1445,32,1,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,14,0,1240,1,0,0 +2013,6,14,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1512,33,1,1618,23,1,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1350,20,1,1635,26,1,0 +2013,9,18,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,650,-1,0,910,-18,0,0 +2013,4,16,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2155,-3,0,2311,-14,0,0 +2013,10,8,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1024,-1,0,1413,0,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1042,1,0,1214,-19,0,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,7,0,1250,11,0,0 +2013,7,13,6,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,600,5,0,642,41,1,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1046,-1,0,1150,-2,0,0 +2013,7,30,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,0,0,920,0,0,0 +2013,10,9,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-7,0,1709,-5,0,0 +2013,10,4,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1115,63,1,1450,57,1,0 +2013,10,28,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1430,77,1,1555,90,1,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1745,-3,0,1919,-22,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,950,1,0,1145,9,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1640,-1,0,2120,-33,0,0 +2013,7,15,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-8,0,1205,-14,0,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1940,-4,0,2056,-31,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1125,47,1,1340,80,1,0 +2013,4,3,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1440,3,0,1540,30,1,0 +2013,8,30,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,920,-3,0,1255,0,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,37,1,1750,34,1,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1900,43,1,2145,28,1,0 +2013,5,9,4,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,-8,0,930,-4,0,0 +2013,7,20,6,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1438,386,1,1547,366,1,0 +2013,4,30,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-9,0,1438,-15,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1418,-8,0,1710,-7,0,0 +2013,6,21,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-5,0,754,-13,0,0 +2013,9,9,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-9,0,835,-21,0,0 +2013,9,30,1,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1401,-12,0,1525,-22,0,0 +2013,4,28,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1850,26,1,1925,7,0,0 +2013,10,30,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,27,1,1814,19,1,0 +2013,4,5,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,845,-7,0,1132,6,0,0 +2013,10,31,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,18,1,1900,1,0,0 +2013,6,29,6,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1100,3,0,1230,-6,0,0 +2013,7,7,7,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,15,1,758,40,1,0 +2013,5,20,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,700,-5,0,829,-6,0,0 +2013,8,18,7,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,925,-1,0,1248,-5,0,0 +2013,4,14,7,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1200,1,0,1350,-14,0,0 +2013,10,21,1,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1142,-10,0,1222,-25,0,0 +2013,9,4,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-6,0,1145,-23,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1730,7,0,1850,0,0,0 +2013,6,28,5,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1650,5,0,1835,0,0,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1030,-4,0,1232,-11,0,0 +2013,4,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2205,5,0,545,-10,0,0 +2013,7,22,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-11,0,1004,-18,0,0 +2013,7,12,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-5,0,2045,-14,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1945,54,1,2125,53,1,0 +2013,5,3,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2135,122,1,2319,121,1,0 +2013,8,26,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,38,1,1525,23,1,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1449,21,1,2214,29,1,0 +2013,7,16,2,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-6,0,1254,-12,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,36,1,2255,39,1,0 +2013,7,8,1,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1335,3,0,1920,-3,0,0 +2013,8,24,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,1040,-15,0,0 +2013,10,10,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2015,-5,0,2231,-15,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1355,15,1,1615,7,0,0 +2013,9,25,3,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,-1,0,1846,-16,0,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1311,45,1,1423,30,1,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1312,16,1,1512,30,1,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-4,0,1329,-10,0,0 +2013,8,16,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1435,-4,0,1740,-24,0,0 +2013,9,2,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1900,3,0,1959,-8,0,0 +2013,10,26,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,-5,0,1650,-6,0,0 +2013,9,7,6,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-2,0,1705,-25,0,0 +2013,10,7,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,-4,0,2240,-4,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1355,0,0,1533,-1,0,0 +2013,4,14,7,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,815,-3,0,946,6,0,0 +2013,10,7,1,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-5,0,2122,-12,0,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1205,14,0,1325,11,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,845,-1,0,1120,-10,0,0 +2013,10,23,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1611,17,1,1728,35,1,0 +2013,10,8,2,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-8,0,1624,-18,0,0 +2013,8,12,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,150,1,2019,142,1,0 +2013,9,8,7,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,-2,0,2015,-3,0,0 +2013,9,28,6,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1232,-10,0,2100,-38,0,0 +2013,5,15,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-10,0,1005,-22,0,0 +2013,7,6,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-5,0,1517,1,0,0 +2013,5,5,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,8,0,1325,6,0,0 +2013,8,14,3,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-6,0,1557,-6,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,-1,0,1402,-11,0,0 +2013,9,9,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-10,0,1756,16,1,0 +2013,6,23,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-4,0,2009,-8,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,625,-4,0,1135,-23,0,0 +2013,7,2,2,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,2209,-1,0,2320,5,0,0 +2013,9,5,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1050,2,0,1155,-6,0,0 +2013,7,20,6,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,-1,0,608,-5,0,0 +2013,7,2,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-4,0,1741,-3,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,42,1,1000,71,1,0 +2013,7,21,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1335,44,1,1455,32,1,0 +2013,7,25,4,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1243,1,0,1545,6,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1755,18,1,2005,30,1,0 +2013,7,13,6,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1000,4,0,1538,13,0,0 +2013,9,27,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-5,0,1155,-20,0,0 +2013,5,16,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1310,3,0,1356,11,0,0 +2013,7,22,1,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1341,-9,0,1450,-19,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,1332,-24,0,0 +2013,7,20,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,8,0,759,18,1,0 +2013,10,2,3,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1203,-12,0,1327,-6,0,0 +2013,8,20,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1925,0,0,2047,-4,0,0 +2013,9,17,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,635,0,0,820,10,0,0 +2013,6,27,4,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,321,1,2052,300,1,0 +2013,8,25,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-7,0,1201,-9,0,0 +2013,8,4,7,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1320,2,0,1350,1,0,0 +2013,10,7,1,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,620,-4,0,805,2,0,0 +2013,5,24,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1818,18,1,2120,43,1,0 +2013,10,27,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-5,0,1930,-6,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2155,68,1,2335,49,1,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,748,-4,0,916,-9,0,0 +2013,4,17,3,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2120,89,1,2340,108,1,0 +2013,7,28,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2010,0,,2306,0,1,1 +2013,4,5,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1420,-8,0,2115,-18,0,0 +2013,6,13,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-4,0,1105,0,0,0 +2013,4,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,730,-5,0,929,-21,0,0 +2013,7,18,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,8,0,2025,9,0,0 +2013,5,15,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1244,-8,0,1329,-3,0,0 +2013,8,5,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,625,2,0,735,-11,0,0 +2013,8,18,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,800,12,0,930,-4,0,0 +2013,10,26,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1210,-5,0,1500,-22,0,0 +2013,7,3,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-7,0,1003,-23,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,-2,0,1316,-22,0,0 +2013,6,11,2,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1650,16,1,1845,3,0,0 +2013,7,17,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1226,-3,0,1425,-18,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-3,0,925,-9,0,0 +2013,5,11,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-1,0,2005,-10,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1015,115,1,1155,96,1,0 +2013,10,10,4,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,-1,0,1135,3,0,0 +2013,10,1,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,-2,0,1105,-11,0,0 +2013,4,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1005,9,0,1120,-6,0,0 +2013,9,24,2,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,905,-8,0,1025,-6,0,0 +2013,7,16,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,154,1,2110,189,1,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,847,0,0,1030,2,0,0 +2013,4,12,5,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,-1,0,1910,-11,0,0 +2013,10,22,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1108,-7,0,1255,-19,0,0 +2013,9,15,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,-2,0,1120,-11,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-5,0,2346,-13,0,0 +2013,6,1,6,OO,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1620,21,1,1746,6,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,800,1,0,1559,17,1,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-2,0,1515,-8,0,0 +2013,6,14,5,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,515,-2,0,626,-5,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,-4,0,1505,-12,0,0 +2013,4,29,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-3,0,1633,4,0,0 +2013,6,29,6,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,935,4,0,1815,23,1,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,20,1,0,618,-26,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1445,12,0,1650,6,0,0 +2013,5,22,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,600,44,1,840,32,1,0 +2013,10,2,3,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1055,-2,0,1908,-23,0,0 +2013,10,18,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,844,5,0,0 +2013,8,5,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1720,-5,0,2045,-13,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1821,-4,0,2058,-18,0,0 +2013,5,2,4,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1038,-8,0,1212,-13,0,0 +2013,8,11,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,-4,0,1920,-3,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1623,-3,0,1805,-3,0,0 +2013,8,18,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,3,0,1515,-7,0,0 +2013,5,12,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2019,-12,0,2305,-17,0,0 +2013,5,12,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1015,-5,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,8,0,1333,12,0,0 +2013,9,29,7,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1852,-8,0,2147,-17,0,0 +2013,7,14,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,0,0,1134,-6,0,0 +2013,9,23,1,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,14,0,955,-9,0,0 +2013,4,25,4,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1641,-10,0,1816,5,0,0 +2013,5,4,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,921,22,1,1214,5,0,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,810,-6,0,1005,-27,0,0 +2013,10,28,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1041,-3,0,1347,-2,0,0 +2013,4,6,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1345,-6,0,1515,-10,0,0 +2013,7,20,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,136,1,1207,131,1,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,1325,-11,0,0 +2013,8,31,6,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,-5,0,2100,-21,0,0 +2013,6,22,6,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1639,-10,0,1746,-2,0,0 +2013,10,15,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-2,0,1632,-2,0,0 +2013,7,13,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,650,5,0,815,1,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2049,0,0,2214,-11,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,812,15,1,1019,7,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1455,-1,0,1752,-13,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1015,0,0,1110,-9,0,0 +2013,5,29,3,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1524,14,0,2012,39,1,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1015,13,0,1135,8,0,0 +2013,9,11,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1703,-3,0,1729,-12,0,0 +2013,10,25,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1255,1,0,1505,4,0,0 +2013,10,1,2,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,925,-1,0,1115,-24,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2209,6,0,2252,0,0,0 +2013,6,28,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,705,1,0,910,-6,0,0 +2013,8,22,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,825,-14,0,0 +2013,7,29,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,958,-2,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1305,18,1,1440,30,1,0 +2013,8,8,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1800,11,0,1855,-4,0,0 +2013,9,21,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,-1,0,1959,-4,0,0 +2013,6,12,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1358,5,0,1542,3,0,0 +2013,10,5,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,603,-3,0,725,15,1,0 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1809,-21,0,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1755,31,1,1855,40,1,0 +2013,7,20,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,10,0,1000,9,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1340,-6,0,1452,-3,0,0 +2013,4,12,5,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1612,111,1,1921,100,1,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1028,12,0,1339,15,1,0 +2013,7,23,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,0,0,1324,-9,0,0 +2013,9,7,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1100,0,0,1340,2,0,0 +2013,8,2,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-1,0,959,4,0,0 +2013,5,10,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,0,0,915,3,0,0 +2013,10,23,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,10,0,1445,8,0,0 +2013,5,4,6,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,-5,0,937,-6,0,0 +2013,5,3,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-4,0,1252,9,0,0 +2013,5,21,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,-2,0,1929,-1,0,0 +2013,7,23,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,822,-10,0,935,-15,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1100,1,0,1310,8,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1850,-6,0,2003,-11,0,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,857,-6,0,1151,9,0,0 +2013,6,9,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,37,1,1533,42,1,0 +2013,4,4,4,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,1,0,943,17,1,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1440,125,1,1750,127,1,0 +2013,10,31,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,-4,0,1627,-9,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1945,0,0,2115,0,0,0 +2013,5,24,5,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-7,0,805,-7,0,0 +2013,6,19,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2055,1,0,2120,5,0,0 +2013,10,12,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1339,-6,0,1524,-11,0,0 +2013,9,29,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,800,-1,0,929,35,1,0 +2013,4,23,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,12,0,1733,-2,0,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,815,0,0,1000,-1,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1710,0,,1844,0,1,1 +2013,8,5,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,805,10,0,915,2,0,0 +2013,8,2,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,902,-4,0,1013,-12,0,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,850,-1,0,1003,-16,0,0 +2013,7,7,7,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,740,6,0,1020,-1,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,-2,0,2000,1,0,0 +2013,8,19,1,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,-6,0,2204,-8,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,23,1,1453,16,1,0 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1445,-2,0,1721,-6,0,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1425,-3,0,2020,-2,0,0 +2013,8,19,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,0,0,2025,-3,0,0 +2013,7,8,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1650,10,0,1959,15,1,0 +2013,9,11,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1803,-2,0,0 +2013,6,6,4,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-3,0,1115,-21,0,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,830,0,0,957,8,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,915,-5,0,1020,-13,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,-4,0,1705,0,0,0 +2013,8,7,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-2,0,1029,3,0,0 +2013,7,27,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1903,-6,0,2004,-22,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,850,7,0,1015,6,0,0 +2013,9,20,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,-2,0,1245,27,1,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1247,-3,0,1419,-12,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1550,0,0,1705,0,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-6,0,1327,-6,0,0 +2013,9,8,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,829,-4,0,1051,-16,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,1,0,1130,-1,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1755,19,1,2005,9,0,0 +2013,4,29,1,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1025,7,0,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,745,-4,0,840,-12,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,950,27,1,1700,35,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1459,13,0,1725,0,0,0 +2013,4,29,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1522,-3,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,800,-2,0,1235,-18,0,0 +2013,4,15,1,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-3,0,1215,-20,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,902,-2,0,1230,-7,0,0 +2013,7,21,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-6,0,1105,-16,0,0 +2013,8,24,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,-1,0,1950,-7,0,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,830,-5,0,1630,1,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1540,2,0,1930,-12,0,0 +2013,5,12,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1815,-9,0,2045,-14,0,0 +2013,5,14,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,850,-17,0,0 +2013,4,3,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-2,0,940,1,0,0 +2013,5,5,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1550,48,1,1720,58,1,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1400,-1,0,1505,5,0,0 +2013,10,28,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12953,LaGuardia,New York,NY,1606,60,1,1804,48,1,0 +2013,5,19,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1048,-6,0,1215,0,0,0 +2013,6,30,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,801,-7,0,1054,-10,0,0 +2013,8,3,6,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1205,7,0,1310,4,0,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1455,12,0,1621,13,0,0 +2013,10,17,4,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1349,-3,0,1622,-9,0,0 +2013,7,9,2,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1300,-13,0,1635,-36,0,0 +2013,4,29,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1156,-10,0,1619,-38,0,0 +2013,6,2,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,540,6,0,718,-15,0,0 +2013,6,30,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1735,-8,0,2020,-16,0,0 +2013,4,4,4,FL,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,755,-4,0,848,-6,0,0 +2013,8,30,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,56,1,919,55,1,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1040,-6,0,1307,-27,0,0 +2013,4,4,4,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,635,-5,0,815,-20,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1530,0,0,1635,-5,0,0 +2013,7,2,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1915,-4,0,2116,-13,0,0 +2013,7,14,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,2336,-3,0,555,1,0,0 +2013,7,23,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1503,-5,0,1619,-19,0,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,8,0,1735,-4,0,0 +2013,6,28,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1205,15,1,1320,9,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,2,0,800,1,0,0 +2013,6,24,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2201,35,1,2258,32,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,3,0,1719,-22,0,0 +2013,7,3,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1943,-7,0,2105,-34,0,0 +2013,8,12,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,-4,0,2156,64,1,0 +2013,9,17,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1050,3,0,1110,-4,0,0 +2013,9,9,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1900,-8,0,2042,-5,0,0 +2013,4,1,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1440,0,0,1605,-9,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-1,0,2357,-6,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,-11,0,2337,-24,0,0 +2013,8,9,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,845,-1,0,950,1,0,0 +2013,4,26,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,-6,0,1626,-6,0,0 +2013,9,29,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,25,1,1409,6,0,0 +2013,5,24,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1715,-6,0,1815,-8,0,0 +2013,9,11,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,0,0,2050,2,0,0 +2013,8,12,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-11,0,1036,-12,0,0 +2013,8,28,3,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1645,-11,0,1925,-34,0,0 +2013,10,16,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,11,0,2223,3,0,0 +2013,7,10,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,220,-3,0,634,-11,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,605,-3,0,849,-6,0,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,0,0,1340,3,0,0 +2013,7,15,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1015,-2,0,1319,-8,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1315,161,1,1454,187,1,0 +2013,9,5,4,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,0,0,1820,-23,0,0 +2013,10,14,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1320,-2,0,1445,-7,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2205,105,1,2305,114,1,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,21,1,1841,11,0,0 +2013,8,15,4,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1750,0,0,1940,8,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-3,0,2139,-6,0,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,5,0,1155,0,0,0 +2013,10,11,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,28,1,1230,22,1,0 +2013,10,4,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,755,-3,0,940,1,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,10,0,1605,16,1,0 +2013,9,23,1,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,756,0,0,930,5,0,0 +2013,8,6,2,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,919,-8,0,1056,-3,0,0 +2013,4,20,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-6,0,1705,-11,0,0 +2013,4,16,2,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-4,0,1015,4,0,0 +2013,6,12,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1200,0,0,1315,-8,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1732,6,0,2015,4,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1133,-11,0,1451,-45,0,0 +2013,8,30,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1315,23,1,1342,12,0,0 +2013,10,25,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1730,-3,0,1845,-18,0,0 +2013,8,23,5,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,920,3,0,1155,2,0,0 +2013,8,20,2,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,1116,-19,0,0 +2013,9,17,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-5,0,1715,2,0,0 +2013,6,6,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1725,-2,0,1850,-3,0,0 +2013,10,27,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1430,-4,0,1754,-6,0,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1350,-6,0,1501,-10,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1035,-5,0,1154,-11,0,0 +2013,9,11,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,-8,0,1450,-16,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,-2,0,2218,4,0,0 +2013,9,12,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1305,-5,0,1509,4,0,0 +2013,6,19,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1907,3,0,2229,0,0,0 +2013,6,5,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,1004,2,0,0 +2013,5,17,5,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2217,10,0,620,-5,0,0 +2013,9,18,3,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1040,-5,0,1150,-7,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-4,0,2358,-18,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1206,8,0,1513,-24,0,0 +2013,7,17,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-5,0,1015,-16,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,2059,67,1,8,82,1,0 +2013,8,13,2,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1517,21,1,1621,21,1,0 +2013,9,6,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,47,1,1833,44,1,0 +2013,4,14,7,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1208,37,1,1340,50,1,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1215,14,0,1345,2,0,0 +2013,6,25,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,0,0,1115,-16,0,0 +2013,4,26,5,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,35,1,1717,14,0,0 +2013,8,14,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-3,0,1140,4,0,0 +2013,7,15,1,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-4,0,804,-13,0,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1802,-5,0,2056,-3,0,0 +2013,5,13,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1357,-7,0,1546,-19,0,0 +2013,5,23,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,831,-8,0,0 +2013,10,20,7,9E,12451,Jacksonville International,Jacksonville,FL,12953,LaGuardia,New York,NY,1125,-1,0,1345,-26,0,0 +2013,10,5,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1455,8,0,1715,-1,0,0 +2013,4,1,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,635,-4,0,1235,-21,0,0 +2013,9,17,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1940,-3,0,2110,-5,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-1,0,1205,-2,0,0 +2013,5,13,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,-4,0,1925,-10,0,0 +2013,6,20,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1840,10,0,2000,2,0,0 +2013,7,12,5,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,700,-4,0,750,-13,0,0 +2013,8,20,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,913,-2,0,1159,3,0,0 +2013,9,27,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,5,0,2015,1,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,735,-6,0,904,-7,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,831,-4,0,1029,-17,0,0 +2013,5,14,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,0,0,930,0,0,0 +2013,10,26,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1730,7,0,1858,0,0,0 +2013,5,21,2,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1915,58,1,2250,61,1,0 +2013,6,28,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1320,110,1,1459,112,1,0 +2013,8,17,6,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1652,-6,0,1710,-15,0,0 +2013,9,27,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,624,-7,0,859,-18,0,0 +2013,7,13,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1457,-11,0,2005,-13,0,0 +2013,9,26,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,0,0,1201,7,0,0 +2013,9,29,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,2,0,2014,-6,0,0 +2013,10,20,7,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1953,-10,0,2108,-20,0,0 +2013,5,25,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,835,-5,0,1207,-20,0,0 +2013,5,29,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1608,-9,0,1813,-21,0,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2107,26,1,2359,13,0,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,0,0,858,-20,0,0 +2013,6,17,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,129,1,1035,134,1,0 +2013,5,28,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,502,-4,0,620,-26,0,0 +2013,6,1,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1145,1,0,1330,-16,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1910,24,1,2045,18,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,42,1,1915,36,1,0 +2013,8,9,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,-7,0,1455,-9,0,0 +2013,7,25,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1115,0,0,1250,-10,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,-3,0,1820,-13,0,0 +2013,9,13,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1313,52,1,1645,52,1,0 +2013,6,7,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-12,0,604,-33,0,0 +2013,7,30,2,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,4,0,1559,-15,0,0 +2013,7,28,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1914,0,0,2049,-9,0,0 +2013,7,19,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1745,49,1,1900,43,1,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-4,0,747,-15,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2145,-5,0,157,41,1,0 +2013,9,27,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1007,16,1,1155,16,1,0 +2013,10,26,6,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,0,0,1227,-14,0,0 +2013,9,9,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,-2,0,1530,2,0,0 +2013,10,15,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,650,-4,0,827,-3,0,0 +2013,5,7,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,200,1,1645,177,1,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1705,47,1,1815,50,1,0 +2013,10,3,4,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1050,-3,0,1420,-19,0,0 +2013,4,1,1,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1715,28,1,1900,30,1,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-7,0,1917,-2,0,0 +2013,6,30,7,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,0,0,1348,-15,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1442,3,0,1749,13,0,0 +2013,10,6,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-5,0,2155,48,1,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,8,0,1438,0,0,0 +2013,8,11,7,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,945,-1,0,1220,-6,0,0 +2013,4,19,5,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1745,22,1,2105,38,1,0 +2013,9,5,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,-2,0,1825,5,0,0 +2013,4,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1710,15,1,2328,-9,0,0 +2013,5,28,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-1,0,1607,5,0,0 +2013,7,21,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2135,111,1,8,85,1,0 +2013,9,9,1,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,5,0,1040,-15,0,0 +2013,7,17,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,-3,0,1115,-6,0,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,2,0,1305,3,0,0 +2013,4,9,2,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1934,69,1,2104,60,1,0 +2013,7,14,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1611,-10,0,1940,5,0,0 +2013,10,26,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1010,176,1,1119,165,1,0 +2013,5,11,6,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,-1,0,1135,-13,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1650,0,,1900,0,1,1 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1155,-3,0,1300,61,1,0 +2013,7,31,3,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,-7,0,1937,19,1,0 +2013,6,13,4,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1115,0,,1252,0,1,1 +2013,4,24,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,1,0,1215,-5,0,0 +2013,10,16,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,4,0,1705,-2,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,7,0,1730,-10,0,0 +2013,7,26,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1205,58,1,1249,54,1,0 +2013,8,27,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1850,-7,0,2010,-8,0,0 +2013,5,11,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,815,1,0,1230,-13,0,0 +2013,5,29,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-4,0,1543,-6,0,0 +2013,7,20,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1104,20,1,1450,5,0,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,42,1,1910,29,1,0 +2013,8,5,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-2,0,1810,1,0,0 +2013,4,21,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,2030,118,1,2310,120,1,0 +2013,5,12,7,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1255,-7,0,1415,16,1,0 +2013,4,28,7,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1054,-2,0,1827,0,0,0 +2013,8,20,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-4,0,1516,-9,0,0 +2013,9,6,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1800,-3,0,1953,-25,0,0 +2013,7,13,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,-7,0,1055,-9,0,0 +2013,10,12,6,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1811,78,1,2000,83,1,0 +2013,7,7,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-1,0,1645,-8,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2041,-1,0,2151,-13,0,0 +2013,5,19,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,30,1,1405,33,1,0 +2013,4,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,2001,-9,0,2352,-23,0,0 +2013,6,23,7,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,616,-6,0,801,9,0,0 +2013,6,28,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,20,1,2352,16,1,0 +2013,4,9,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1930,0,0,2125,-6,0,0 +2013,4,14,7,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-6,0,1120,-13,0,0 +2013,5,7,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,941,-6,0,1119,-14,0,0 +2013,4,22,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,840,7,0,1020,5,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1240,-2,0,1447,27,1,0 +2013,9,12,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,-5,0,1131,22,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1740,185,1,2007,247,1,0 +2013,10,9,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,6,0,1605,-6,0,0 +2013,10,15,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-4,0,1648,15,1,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,-4,0,1212,-20,0,0 +2013,4,23,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1957,6,0,2150,29,1,0 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,-5,0,1738,9,0,0 +2013,4,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,835,-1,0,1200,-4,0,0 +2013,6,21,5,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1240,0,0,1815,-5,0,0 +2013,7,7,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,-2,0,815,-17,0,0 +2013,9,19,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,46,1,1530,45,1,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1305,-4,0,1423,-1,0,0 +2013,10,25,5,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,-5,0,2128,-16,0,0 +2013,6,24,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1625,39,1,1720,87,1,0 +2013,7,7,7,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2200,42,1,2322,28,1,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,-2,0,1815,-7,0,0 +2013,9,16,1,AA,12339,Indianapolis International,Indianapolis,IN,12892,Los Angeles International,Los Angeles,CA,1840,-6,0,2010,-10,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1550,1,0,1735,-3,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,88,1,929,77,1,0 +2013,9,1,7,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,-4,0,1635,2,0,0 +2013,6,12,3,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1910,-2,0,2054,-11,0,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,7,0,1524,11,0,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,2,0,2333,-15,0,0 +2013,8,12,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1040,8,0,1425,-2,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1040,-2,0,1307,-10,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1103,192,1,1426,186,1,0 +2013,7,30,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-5,0,1720,-7,0,0 +2013,7,18,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,19,1,2146,2,0,0 +2013,5,29,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2025,-6,0,2152,-18,0,0 +2013,7,30,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1650,29,1,1815,29,1,0 +2013,7,4,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-6,0,1413,-11,0,0 +2013,8,9,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,614,5,0,806,-4,0,0 +2013,5,2,4,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,2,0,1015,0,0,0 +2013,4,14,7,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2243,9,0,640,-4,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1612,-2,0,2159,33,1,0 +2013,8,10,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,635,-6,0,1020,0,0,0 +2013,8,20,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2331,-8,0,457,-11,0,0 +2013,10,5,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1510,-11,0,1844,-20,0,0 +2013,9,3,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,845,-1,0,1010,-3,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1115,2,0,1355,5,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,21,1,1525,22,1,0 +2013,5,30,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1425,6,0,1635,19,1,0 +2013,7,21,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,-2,0,1913,2,0,0 +2013,7,27,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1900,142,1,2010,137,1,0 +2013,6,18,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-7,0,701,13,0,0 +2013,8,15,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,700,-2,0,820,-2,0,0 +2013,8,1,4,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1155,-3,0,1340,-21,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,920,6,0,1145,-22,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1455,-1,0,1825,-14,0,0 +2013,6,30,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1305,0,0,1440,3,0,0 +2013,7,16,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,186,1,1649,184,1,0 +2013,8,12,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1355,7,0,1650,-14,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1042,-4,0,1154,9,0,0 +2013,7,24,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,2,0,2130,-5,0,0 +2013,8,7,3,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1110,2,0,1200,-8,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,734,-1,0,925,-13,0,0 +2013,7,7,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,940,-5,0,1140,-18,0,0 +2013,5,15,3,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1039,-3,0,1414,-9,0,0 +2013,8,9,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1557,-1,0,1719,-14,0,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2055,21,1,2205,-6,0,0 +2013,6,7,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-6,0,815,-11,0,0 +2013,5,22,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-5,0,635,-19,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,22,1,1525,18,1,0 +2013,8,24,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1800,-11,0,1925,-23,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-3,0,1201,-18,0,0 +2013,4,27,6,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,25,1,1807,-38,0,0 +2013,7,12,5,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1659,-13,0,1836,-12,0,0 +2013,9,3,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1945,0,,2055,0,1,1 +2013,4,17,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1245,-10,0,1352,-20,0,0 +2013,7,6,6,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-7,0,912,-9,0,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1447,70,1,1600,82,1,0 +2013,8,19,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1228,-20,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1304,6,0,1439,1,0,0 +2013,4,20,6,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,705,-11,0,1026,-8,0,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1845,-7,0,2000,-3,0,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,29,1,4,22,1,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,-4,0,1911,-20,0,0 +2013,9,9,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,818,-6,0,1034,-26,0,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1100,-2,0,1205,-7,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,22,1,2330,7,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1130,1,0,1430,-3,0,0 +2013,6,20,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,-4,0,1005,-7,0,0 +2013,9,30,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,1006,-8,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,-5,0,1626,-18,0,0 +2013,6,12,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,-6,0,1525,13,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1435,3,0,2140,3,0,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-2,0,855,4,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,740,-2,0,1100,9,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1107,-1,0,1231,-16,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-5,0,922,2,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,756,-6,0,935,-10,0,0 +2013,4,27,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1102,-13,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2307,0,0,27,-3,0,0 +2013,9,3,2,OO,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-4,0,1536,-16,0,0 +2013,8,19,1,FL,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1959,160,1,2334,147,1,0 +2013,7,1,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,759,-1,0,1059,2,0,0 +2013,5,9,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1450,-5,0,1717,12,0,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,1,0,1755,5,0,0 +2013,10,25,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1820,-3,0,2000,10,0,0 +2013,10,15,2,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-1,0,905,-3,0,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,730,-8,0,830,-16,0,0 +2013,10,8,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,153,1,930,174,1,0 +2013,7,2,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-8,0,754,-1,0,0 +2013,7,12,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,710,1,0,930,-16,0,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,-1,0,755,32,1,0 +2013,5,31,5,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-13,0,816,-17,0,0 +2013,7,5,5,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1523,-10,0,1650,3,0,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1400,1,0,1505,-5,0,0 +2013,9,30,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1014,30,1,1153,22,1,0 +2013,4,7,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1857,-7,0,2157,-24,0,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1340,-5,0,1452,-11,0,0 +2013,8,1,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,6,0,1840,-9,0,0 +2013,4,9,2,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,905,-3,0,1101,-13,0,0 +2013,10,18,5,OO,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-8,0,2017,-18,0,0 +2013,5,12,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-4,0,1255,-39,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-5,0,1019,-1,0,0 +2013,6,24,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1250,2,0,1400,-12,0,0 +2013,10,23,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2000,6,0,2214,-5,0,0 +2013,7,16,2,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1850,167,1,2125,162,1,0 +2013,9,14,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-3,0,1330,-18,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,800,-1,0,1131,-2,0,0 +2013,7,8,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,10,0,1415,14,0,0 +2013,5,8,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1502,-5,0,1649,-10,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,745,-6,0,1045,8,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2050,0,,2300,0,1,1 +2013,8,15,4,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-6,0,1019,-16,0,0 +2013,5,1,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-13,0,2200,-6,0,0 +2013,5,8,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,-3,0,1450,-12,0,0 +2013,5,8,3,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1602,-2,0,1855,-9,0,0 +2013,8,26,1,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,700,1,0,1300,-12,0,0 +2013,8,29,4,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1556,-9,0,1809,-13,0,0 +2013,9,1,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1050,-3,0,1230,11,0,0 +2013,5,7,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1330,-5,0,1428,-16,0,0 +2013,6,11,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1445,2,0,1600,-17,0,0 +2013,7,3,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-2,0,1211,-19,0,0 +2013,9,18,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,735,-2,0,800,0,0,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1635,1,0,1800,-15,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1020,12,0,1455,-17,0,0 +2013,4,3,3,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,650,-1,0,1022,-11,0,0 +2013,9,5,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,8,0,1530,4,0,0 +2013,7,1,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,9,0,729,12,0,0 +2013,6,10,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1919,-2,0,2220,21,1,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1549,-8,0,1832,-24,0,0 +2013,4,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,-2,0,2120,3,0,0 +2013,10,6,7,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,949,-5,0,1110,-5,0,0 +2013,7,29,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1022,165,1,1152,150,1,0 +2013,8,31,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1245,22,1,1435,11,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,-3,0,2015,-26,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,-1,0,1250,-15,0,0 +2013,5,25,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1725,9,0,1945,-3,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,745,-7,0,1041,-11,0,0 +2013,4,18,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2010,33,1,2248,28,1,0 +2013,5,30,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1825,-2,0,1945,-15,0,0 +2013,8,30,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,729,-13,0,0 +2013,7,8,1,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-8,0,1213,-24,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,8,0,2050,5,0,0 +2013,9,17,2,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,603,-12,0,816,-17,0,0 +2013,6,29,6,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,720,1,0,919,-3,0,0 +2013,7,20,6,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1105,14,0,1330,17,1,0 +2013,5,22,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-1,0,1410,1,0,0 +2013,10,17,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1655,3,0,1952,7,0,0 +2013,8,11,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1025,-3,0,1305,-12,0,0 +2013,6,28,5,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1455,12,0,1800,9,0,0 +2013,4,29,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,833,-2,0,1406,-5,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,3,0,1354,16,1,0 +2013,9,3,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1900,7,0,2230,5,0,0 +2013,8,4,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,-4,0,1255,-24,0,0 +2013,8,5,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,59,1,1025,61,1,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2005,12,0,2100,1,0,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,112,1,2325,111,1,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,-5,0,2035,-5,0,0 +2013,7,21,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,758,-9,0,1003,-21,0,0 +2013,4,30,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-1,0,1439,-9,0,0 +2013,4,23,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1135,-2,0,1315,-19,0,0 +2013,10,31,4,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1113,-5,0,1326,-6,0,0 +2013,6,11,2,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,833,-5,0,1043,-12,0,0 +2013,4,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,-1,0,1800,-6,0,0 +2013,5,20,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,17,1,911,10,0,0 +2013,4,25,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1835,7,0,2205,31,1,0 +2013,7,21,7,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1515,6,0,1825,-1,0,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1930,-3,0,2234,-7,0,0 +2013,4,7,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2140,-4,0,2320,-7,0,0 +2013,6,13,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,7,0,1400,11,0,0 +2013,6,25,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,946,-5,0,1007,6,0,0 +2013,8,12,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1845,10,0,2057,8,0,0 +2013,4,27,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1137,-8,0,1250,-19,0,0 +2013,8,9,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-6,0,1404,-21,0,0 +2013,4,22,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,-1,0,1310,20,1,0 +2013,7,30,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,913,-4,0,1430,-18,0,0 +2013,6,2,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-4,0,1709,-5,0,0 +2013,7,19,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2121,-4,0,2247,-15,0,0 +2013,7,30,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,11,0,1217,21,1,0 +2013,7,15,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,910,-8,0,1245,-1,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1635,9,0,1900,-12,0,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1830,-2,0,1921,-9,0,0 +2013,9,11,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1226,-10,0,1408,-17,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1800,10,0,1916,-2,0,0 +2013,8,24,6,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1325,-2,0,1630,-6,0,0 +2013,5,29,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-1,0,1806,-12,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,935,-4,0,1207,1,0,0 +2013,10,24,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1953,47,1,2109,47,1,0 +2013,10,13,7,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,912,-4,0,1053,-4,0,0 +2013,5,16,4,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,13,0,805,-7,0,0 +2013,10,31,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1900,3,0,2145,-3,0,0 +2013,4,2,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-4,0,1628,-7,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,17,1,1703,23,1,0 +2013,8,10,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1302,4,0,1555,-11,0,0 +2013,4,23,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1815,6,0,2103,-3,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,1,0,1110,24,1,0 +2013,6,19,3,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1033,5,0,1359,7,0,0 +2013,5,31,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1555,16,1,1710,18,1,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,845,7,0,1015,-4,0,0 +2013,8,7,3,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1539,91,1,1658,101,1,0 +2013,4,14,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,22,1,2051,22,1,0 +2013,8,26,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-8,0,1328,-2,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,935,-2,0,1315,-5,0,0 +2013,9,1,7,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1810,184,1,1945,153,1,0 +2013,5,24,5,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,830,-3,0,1128,-10,0,0 +2013,9,5,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1755,-7,0,2052,-8,0,0 +2013,10,1,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,905,-2,0,1700,-8,0,0 +2013,7,17,3,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1957,-1,0,2130,-13,0,0 +2013,4,10,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1015,4,0,0 +2013,9,18,3,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1040,-2,0,1640,-18,0,0 +2013,6,23,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-1,0,602,-13,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1613,4,0,1730,11,0,0 +2013,7,21,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1351,-6,0,1516,-17,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,17,1,1745,38,1,0 +2013,5,4,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-7,0,2128,-13,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-3,0,1846,-7,0,0 +2013,4,29,1,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1625,-2,0,2150,-7,0,0 +2013,8,16,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-5,0,753,1,0,0 +2013,4,8,1,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,620,-3,0,1015,-18,0,0 +2013,5,21,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1119,-8,0,1222,-9,0,0 +2013,7,9,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,0,0,850,-21,0,0 +2013,10,14,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,1,0,1810,-14,0,0 +2013,4,2,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,0,0,1451,3,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1055,39,1,1207,31,1,0 +2013,6,29,6,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,849,0,,1012,0,1,1 +2013,8,22,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,10,0,1250,10,0,0 +2013,10,28,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,-7,0,742,1,0,0 +2013,10,30,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1555,7,0,1918,6,0,0 +2013,4,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2013,-5,0,2344,-2,0,0 +2013,5,17,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1710,-8,0,1747,-6,0,0 +2013,4,26,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-5,0,1308,-19,0,0 +2013,6,12,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-5,0,2000,-3,0,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1815,7,0,2008,10,0,0 +2013,9,14,6,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-8,0,1757,-16,0,0 +2013,7,13,6,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,24,1,1948,-2,0,0 +2013,4,6,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1310,0,0,1445,-11,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,82,1,1600,82,1,0 +2013,5,8,3,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-15,0,900,-12,0,0 +2013,7,28,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,0,0,1425,-12,0,0 +2013,6,2,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,55,1,2200,46,1,0 +2013,4,30,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-8,0,1001,-2,0,0 +2013,8,11,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-5,0,2058,-11,0,0 +2013,10,31,4,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,848,-21,0,0 +2013,5,13,1,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,20,1,1755,7,0,0 +2013,10,26,6,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1547,-6,0,1735,7,0,0 +2013,8,14,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,0,,1645,0,1,1 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,-5,0,2255,-8,0,0 +2013,7,6,6,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-9,0,916,-24,0,0 +2013,7,11,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1820,-5,0,2105,-17,0,0 +2013,5,24,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1415,7,0,1535,-11,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2010,0,0,2325,15,1,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,30,1,1614,27,1,0 +2013,5,21,2,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-2,0,1007,-1,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,3,0,1102,15,1,0 +2013,7,9,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,711,8,0,1155,12,0,0 +2013,9,23,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,700,-4,0,847,-1,0,0 +2013,6,11,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1910,8,0,1915,17,1,0 +2013,10,12,6,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1650,0,0,1820,-14,0,0 +2013,4,19,5,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,-1,0,750,-23,0,0 +2013,10,20,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,618,-5,0,716,-12,0,0 +2013,9,17,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,825,-3,0,1023,-11,0,0 +2013,4,15,1,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1405,27,1,1955,9,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1255,-1,0,1415,-2,0,0 +2013,4,2,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,841,10,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1815,-3,0,2100,-19,0,0 +2013,9,19,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,-4,0,1022,-13,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1425,5,0,1655,14,0,0 +2013,5,20,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-6,0,932,-9,0,0 +2013,8,18,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,815,32,1,935,20,1,0 +2013,4,18,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,733,7,0,905,-9,0,0 +2013,10,7,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1144,0,0,1429,17,1,0 +2013,4,23,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-8,0,1855,-17,0,0 +2013,10,2,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-1,0,1030,-5,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1540,1,0,1724,-12,0,0 +2013,7,1,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1726,2,0,1917,37,1,0 +2013,4,13,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-5,0,1915,-23,0,0 +2013,5,16,4,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1530,21,1,1635,16,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-7,0,1158,-6,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1810,8,0,1930,-11,0,0 +2013,4,1,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,823,-2,0,1042,-10,0,0 +2013,5,31,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1345,31,1,1515,32,1,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,610,-1,0,805,-18,0,0 +2013,7,17,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,710,-6,0,930,-26,0,0 +2013,5,7,2,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1945,-8,0,50,-20,0,0 +2013,7,2,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1315,20,1,1435,25,1,0 +2013,10,28,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1231,2,0,1445,19,1,0 +2013,9,16,1,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1310,-1,0,1355,1,0,0 +2013,4,14,7,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1455,1,0,2245,-13,0,0 +2013,7,31,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1719,52,1,1829,61,1,0 +2013,10,31,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-6,0,853,-18,0,0 +2013,4,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1200,-3,0,1325,-12,0,0 +2013,4,10,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1600,-2,0,1720,-15,0,0 +2013,6,12,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,7,0,1800,3,0,0 +2013,4,22,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,650,2,0,750,-1,0,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2110,2,0,2233,-3,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1606,-3,0,1900,-13,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,-9,0,858,1,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,825,16,1,1055,11,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1435,16,1,1630,-1,0,0 +2013,8,5,1,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1721,0,0,1925,-24,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,-5,0,1255,-4,0,0 +2013,5,15,3,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,716,-9,0,916,-22,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,0,0,901,-4,0,0 +2013,5,25,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-4,0,1259,-7,0,0 +2013,8,26,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1920,-5,0,2052,-24,0,0 +2013,7,21,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,25,1,1024,47,1,0 +2013,10,19,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1510,-4,0,1625,-15,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,1,0,1925,26,1,0 +2013,8,23,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1005,-10,0,1154,-22,0,0 +2013,8,28,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1050,-3,0,1210,-12,0,0 +2013,10,5,6,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-5,0,2110,-1,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,10,0,1913,-1,0,0 +2013,7,12,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1415,0,0,1534,19,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,3,0,1947,-23,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,-6,0,2223,-10,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,-2,0,2140,-5,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,750,0,0,1109,11,0,0 +2013,8,24,6,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1256,-5,0,0 +2013,10,4,5,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1935,92,1,2010,93,1,0 +2013,4,23,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,853,8,0,1025,31,1,0 +2013,4,21,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1435,22,1,2000,13,0,0 +2013,5,26,7,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1714,-8,0,1834,-10,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1905,6,0,2035,1,0,0 +2013,9,7,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-9,0,1055,-8,0,0 +2013,10,11,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-1,0,2203,-21,0,0 +2013,7,12,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,920,84,1,1055,97,1,0 +2013,7,26,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,7,0,1655,0,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,955,0,0,1153,24,1,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,-1,0,1320,-13,0,0 +2013,8,29,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,6,0,1455,-14,0,0 +2013,5,13,1,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-2,0,1630,10,0,0 +2013,10,25,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,940,-6,0,1155,-4,0,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1023,1,0,1321,-14,0,0 +2013,8,18,7,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,2,0,1350,-2,0,0 +2013,7,14,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1051,-7,0,0 +2013,8,10,6,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,0,0,1155,-6,0,0 +2013,5,17,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,740,-4,0,1017,-18,0,0 +2013,4,24,3,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1016,83,1,1205,122,1,0 +2013,9,29,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1325,2,0,1450,-8,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,815,29,1,1055,23,1,0 +2013,9,13,5,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-5,0,1110,-15,0,0 +2013,6,11,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,52,1,1649,48,1,0 +2013,4,4,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,837,33,1,1116,12,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,236,1,1530,234,1,0 +2013,9,25,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1421,-5,0,1815,-19,0,0 +2013,9,27,5,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-9,0,913,-6,0,0 +2013,4,19,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,0,,1549,0,1,1 +2013,10,5,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1350,-3,0,1518,-17,0,0 +2013,9,19,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1252,-21,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1700,2,0,1839,0,0,0 +2013,9,26,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1905,-5,0,2227,-3,0,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,905,-4,0,1015,-8,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1755,1,0,2035,9,0,0 +2013,6,30,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1210,3,0,1310,10,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,-5,0,1950,2,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-1,0,1740,-8,0,0 +2013,5,25,6,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-8,0,2136,9,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2035,1,0,2255,6,0,0 +2013,7,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,40,1,1922,32,1,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1548,22,1,1723,4,0,0 +2013,4,1,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-5,0,705,-6,0,0 +2013,7,10,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-3,0,1620,-10,0,0 +2013,4,19,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,145,1,1737,167,1,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1820,3,0,2040,5,0,0 +2013,10,7,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1040,-9,0,1202,-20,0,0 +2013,6,4,2,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1300,0,0,2135,-21,0,0 +2013,10,25,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,917,-2,0,1716,0,0,0 +2013,9,30,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,705,-8,0,836,-7,0,0 +2013,9,24,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1916,-4,0,2127,-10,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,-7,0,14,-14,0,0 +2013,7,6,6,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1631,-2,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1415,4,0,1603,-1,0,0 +2013,9,11,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,-8,0,834,-13,0,0 +2013,8,19,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1650,9,0,1835,-6,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1635,13,0,2345,59,1,0 +2013,8,26,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1230,-4,0,1510,-12,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1505,-8,0,1831,-5,0,0 +2013,6,14,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,29,1,505,16,1,0 +2013,5,22,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1220,4,0,1350,-5,0,0 +2013,10,29,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1710,41,1,1835,27,1,0 +2013,7,25,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,-2,0,1055,-1,0,0 +2013,4,20,6,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,-6,0,1025,-13,0,0 +2013,5,17,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,-4,0,2209,-11,0,0 +2013,4,27,6,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1720,5,0,1840,-19,0,0 +2013,8,15,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,0,0,2150,0,0,0 +2013,9,8,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1004,-14,0,0 +2013,8,24,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,29,1,1310,27,1,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-7,0,1308,6,0,0 +2013,6,4,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-8,0,1639,-20,0,0 +2013,6,25,2,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,838,-4,0,1105,-17,0,0 +2013,9,24,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-4,0,809,-2,0,0 +2013,9,6,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1850,14,0,2103,11,0,0 +2013,4,14,7,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1508,-7,0,1840,-29,0,0 +2013,4,17,3,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1725,0,,1904,0,1,1 +2013,10,28,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1602,-5,0,0 +2013,5,11,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1255,0,0,2110,25,1,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,-4,0,1555,-13,0,0 +2013,4,16,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1245,-7,0,1327,-5,0,0 +2013,10,19,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,9,0,1917,-4,0,0 +2013,5,19,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-1,0,925,-6,0,0 +2013,10,15,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1043,3,0,1311,10,0,0 +2013,10,27,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-10,0,1304,5,0,0 +2013,10,18,5,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,0,0,2050,-14,0,0 +2013,4,11,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1118,-5,0,1249,-13,0,0 +2013,10,13,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1710,-10,0,1851,-30,0,0 +2013,6,25,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,7,0,1440,-9,0,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,-2,0,2201,0,0,0 +2013,6,8,6,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,802,-6,0,1107,-43,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1010,2,0,1455,-8,0,0 +2013,4,23,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1135,5,0,1155,-1,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,705,-1,0,945,-5,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1635,70,1,2045,70,1,0 +2013,9,19,4,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1200,-2,0,2020,22,1,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1905,33,1,2116,43,1,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,2,0,1315,-12,0,0 +2013,5,4,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1237,-4,0,1755,3,0,0 +2013,4,16,2,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,61,1,616,43,1,0 +2013,5,24,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-6,0,1633,-23,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,14,0,1556,5,0,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,959,-1,0,1450,-7,0,0 +2013,8,19,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,0,0,1421,-13,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,10,0,2059,-3,0,0 +2013,8,18,7,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-7,0,1306,7,0,0 +2013,8,20,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1929,5,0,2205,9,0,0 +2013,9,22,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1600,-1,0,1852,46,1,0 +2013,7,25,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-6,0,955,-23,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1114,3,0,1229,-4,0,0 +2013,4,30,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-7,0,1255,-14,0,0 +2013,10,13,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1253,9,0,1351,-6,0,0 +2013,9,3,2,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,835,-4,0,1150,-15,0,0 +2013,5,13,1,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-4,0,1755,17,1,0 +2013,4,14,7,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,8,0,1027,4,0,0 +2013,7,23,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2000,-6,0,2115,-19,0,0 +2013,8,24,6,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,805,1,0,1030,-2,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,10,0,1625,3,0,0 +2013,5,30,4,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1415,-3,0,1718,-13,0,0 +2013,4,1,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-3,0,1515,-9,0,0 +2013,4,28,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,645,-2,0,1021,2,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1845,52,1,2325,56,1,0 +2013,10,30,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,640,-2,0,1005,6,0,0 +2013,4,29,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,615,-1,0,725,0,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1806,-7,0,1940,-16,0,0 +2013,5,3,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2130,31,1,2315,23,1,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1944,-2,0,2055,-11,0,0 +2013,9,11,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,909,-1,0,1005,0,0,0 +2013,9,20,5,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-1,0,1137,11,0,0 +2013,9,29,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,752,-11,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,19,1,1328,14,0,0 +2013,4,20,6,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1725,32,1,2000,16,1,0 +2013,10,2,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,1245,0,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1453,0,0,1747,-12,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,12,0,2357,16,1,0 +2013,4,19,5,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1326,-6,0,1413,1,0,0 +2013,6,26,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-5,0,955,-4,0,0 +2013,9,20,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,835,3,0,0 +2013,9,18,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-11,0,2145,-18,0,0 +2013,9,1,7,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1159,4,0,1417,-14,0,0 +2013,7,7,7,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,700,-4,0,835,-4,0,0 +2013,9,15,7,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1130,60,1,1745,71,1,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-1,0,1903,-14,0,0 +2013,4,14,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,0,0,2203,-13,0,0 +2013,4,13,6,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1235,-4,0,1420,2,0,0 +2013,8,19,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,4,0,7,10,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1000,-1,0,1125,-6,0,0 +2013,5,13,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,1012,-26,0,0 +2013,5,13,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1410,4,0,1650,3,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,95,1,1120,124,1,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,5,0,2250,-7,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1115,-5,0,1235,-12,0,0 +2013,9,2,1,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1330,3,0,1536,-9,0,0 +2013,9,7,6,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,945,-1,0,1135,2,0,0 +2013,4,5,5,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1356,5,0,1616,-11,0,0 +2013,4,2,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1630,1,0,1820,-9,0,0 +2013,8,28,3,9E,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,811,-3,0,0 +2013,10,1,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1540,-6,0,1830,18,1,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1840,-2,0,1945,-3,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1640,-3,0,1740,-14,0,0 +2013,10,21,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2140,-3,0,2259,-13,0,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1808,55,1,2004,48,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,745,-1,0,915,2,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2142,-7,0,2250,-38,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,15,1,1616,0,0,0 +2013,6,27,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,28,1,2130,26,1,0 +2013,9,11,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,655,-2,0,830,-18,0,0 +2013,6,16,7,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,13,0,1415,8,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2235,-5,0,2330,-8,0,0 +2013,8,5,1,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1600,-1,0,2205,-16,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,935,0,0,1620,-5,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,32,1,1834,18,1,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1340,3,0,1700,15,1,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1815,44,1,2030,56,1,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1215,10,0,1510,-7,0,0 +2013,9,24,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-5,0,1418,-11,0,0 +2013,10,29,2,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1706,-4,0,1847,-4,0,0 +2013,4,11,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,0,,1235,0,1,1 +2013,8,7,3,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1655,17,1,1837,14,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,14,0,1135,-2,0,0 +2013,8,24,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,537,-5,0,654,-8,0,0 +2013,4,19,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,810,-5,0,0 +2013,5,23,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-3,0,1458,-13,0,0 +2013,7,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,735,-1,0,850,-1,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-2,0,1157,-16,0,0 +2013,5,9,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-1,0,1445,-2,0,0 +2013,4,21,7,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,-2,0,616,-5,0,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,2103,192,1,2310,155,1,0 +2013,4,5,5,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,615,-4,0,915,26,1,0 +2013,9,7,6,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1222,-1,0,1432,4,0,0 +2013,9,8,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,-1,0,1312,-16,0,0 +2013,5,19,7,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,834,15,1,1008,-4,0,0 +2013,8,21,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-8,0,1425,-23,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1240,0,0,1330,-9,0,0 +2013,10,16,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1510,1,0,1557,-3,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2159,1,0,2315,14,0,0 +2013,6,3,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1400,0,0,1414,-9,0,0 +2013,9,22,7,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1325,0,0,1433,-4,0,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1155,41,1,1300,37,1,0 +2013,9,9,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1150,52,1,1155,55,1,0 +2013,6,20,4,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1644,-7,0,1648,-17,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1439,-2,0,1533,5,0,0 +2013,8,29,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-6,0,1132,-9,0,0 +2013,10,29,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-1,0,1741,-7,0,0 +2013,4,18,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1602,196,1,2211,203,1,0 +2013,5,16,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,632,15,1,0 +2013,5,14,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1505,-7,0,1923,-15,0,0 +2013,8,17,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,850,31,1,1130,21,1,0 +2013,10,9,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,-4,0,1148,-39,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1605,8,0,1817,-6,0,0 +2013,6,25,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1050,176,1,1211,172,1,0 +2013,4,13,6,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,2015,-6,0,2154,25,1,0 +2013,8,21,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1725,-5,0,1900,-19,0,0 +2013,9,16,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,-2,0,1513,-6,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1410,-4,0,1550,-8,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,-5,0,1106,-9,0,0 +2013,7,27,6,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2324,-5,0,515,-20,0,0 +2013,6,16,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,1,0,2025,-1,0,0 +2013,8,6,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,36,1,1315,26,1,0 +2013,10,14,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,30,1,1905,12,0,0 +2013,4,24,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,956,-4,0,1155,-22,0,0 +2013,10,27,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,25,1,1635,24,1,0 +2013,4,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,27,1,1349,24,1,0 +2013,8,5,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-9,0,2047,-16,0,0 +2013,9,4,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1155,5,0,1335,5,0,0 +2013,8,9,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-1,0,928,-7,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1155,-6,0,1547,-12,0,0 +2013,7,7,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2005,-2,0,2210,-15,0,0 +2013,4,24,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,-6,0,1610,-5,0,0 +2013,9,10,2,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1225,3,0,1700,5,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,14,0,1850,11,0,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,605,0,0,710,10,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,630,0,0,946,12,0,0 +2013,4,27,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,0,0,1025,-10,0,0 +2013,4,21,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1230,-1,0,1330,-7,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1550,3,0,1940,0,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1559,-8,0,1946,-32,0,0 +2013,4,26,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,800,22,1,925,16,1,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2118,42,1,2221,30,1,0 +2013,6,11,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1505,2,0,1630,21,1,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1540,-4,0,1700,-13,0,0 +2013,5,22,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,6,0,2200,-14,0,0 +2013,7,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,5,0,820,-11,0,0 +2013,5,17,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1012,-18,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,1,0,1925,-5,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,4,0,2025,2,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,716,-1,0,1043,-19,0,0 +2013,8,12,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2159,-9,0,702,-22,0,0 +2013,5,11,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1520,27,1,1750,16,1,0 +2013,7,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1645,45,1,1905,61,1,0 +2013,10,6,7,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,750,1,0,1345,-17,0,0 +2013,4,25,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,830,-3,0,1242,-25,0,0 +2013,8,27,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,8,0,1405,-2,0,0 +2013,6,29,6,EV,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,812,19,1,925,12,0,0 +2013,4,19,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,35,-2,0,605,-5,0,0 +2013,7,15,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1938,49,1,128,57,1,0 +2013,6,27,4,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,920,-1,0,1140,-13,0,0 +2013,7,30,2,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1015,-5,0,1227,-18,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1130,-3,0,1340,-9,0,0 +2013,10,27,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1940,20,1,2140,22,1,0 +2013,9,27,5,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,-3,0,2255,-13,0,0 +2013,8,24,6,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-6,0,2005,0,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-7,0,1224,-8,0,0 +2013,7,9,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,755,-1,0,920,-5,0,0 +2013,8,17,6,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1810,-5,0,2119,-12,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-2,0,1620,14,0,0 +2013,7,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,-4,0,1304,0,0,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1150,18,1,1415,2,0,0 +2013,8,4,7,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-9,0,900,-7,0,0 +2013,8,23,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,640,-1,0,810,-20,0,0 +2013,9,21,6,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,32,1,2145,48,1,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,0,,1000,0,1,1 +2013,10,4,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1755,40,1,1920,38,1,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1730,-4,0,1900,-9,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,7,0,1820,23,1,0 +2013,7,22,1,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,810,183,1,950,207,1,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1620,8,0,52,-19,0,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,830,6,0,1145,-3,0,0 +2013,4,7,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,1,0,1925,0,0,0 +2013,10,29,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-7,0,908,11,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,30,1,1635,15,1,0 +2013,4,17,3,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1452,83,1,2302,67,1,0 +2013,4,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-7,0,809,-2,0,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1154,0,0,1418,16,1,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1730,-2,0,2050,-8,0,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,605,25,1,900,29,1,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1914,47,1,2040,44,1,0 +2013,6,22,6,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,16,1,1825,15,1,0 +2013,9,7,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,945,-3,0,1050,-11,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,905,96,1,1015,95,1,0 +2013,9,29,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1223,-3,0,1403,-16,0,0 +2013,7,23,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,8,0,2250,14,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1335,-7,0,1509,-1,0,0 +2013,6,27,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1641,5,0,1829,9,0,0 +2013,6,13,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1350,-1,0,1626,-11,0,0 +2013,9,12,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-10,0,1045,-9,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1940,37,1,2205,21,1,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,2,0,1219,-7,0,0 +2013,9,12,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1925,139,1,2110,146,1,0 +2013,6,14,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-5,0,1649,-7,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,608,-3,0,914,-15,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1008,9,0,1440,-5,0,0 +2013,9,19,4,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1150,-5,0,1340,-13,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1000,37,1,1128,8,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1728,-6,0,1824,-16,0,0 +2013,7,23,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,391,1,1712,384,1,0 +2013,9,27,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,950,2,0,1220,5,0,0 +2013,9,12,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-4,0,1205,-11,0,0 +2013,4,30,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,23,1,2225,12,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,-5,0,1055,-4,0,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1430,5,0,1535,-7,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,12,0,2020,5,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2050,17,1,2344,11,0,0 +2013,7,15,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-1,0,835,11,0,0 +2013,9,9,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,840,-7,0,1248,-19,0,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-5,0,1606,-15,0,0 +2013,6,19,3,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-1,0,1040,-2,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,846,-10,0,1048,-17,0,0 +2013,9,7,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1815,-1,0,2040,-20,0,0 +2013,8,13,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1815,32,1,1905,36,1,0 +2013,5,20,1,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1625,45,1,2150,34,1,0 +2013,10,30,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1855,-5,0,2035,-14,0,0 +2013,9,3,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-3,0,1721,-23,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-2,0,1130,0,0,0 +2013,4,4,4,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-10,0,1816,-6,0,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1035,-6,0,1350,-15,0,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1315,6,0,1630,30,1,0 +2013,4,8,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,-5,0,620,7,0,0 +2013,9,6,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,9,0,1527,15,1,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1115,7,0,1250,3,0,0 +2013,10,4,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1755,-5,0,1911,-4,0,0 +2013,9,10,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-8,0,845,2,0,0 +2013,7,3,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-9,0,1130,-27,0,0 +2013,9,13,5,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,655,0,0,830,-9,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,50,1,2246,33,1,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1340,1,0,1635,-10,0,0 +2013,7,2,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1100,9,0,1356,6,0,0 +2013,4,23,2,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1632,-13,0,1920,-6,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1835,7,0,2115,14,0,0 +2013,5,18,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,101,1,1720,144,1,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2105,29,1,2210,22,1,0 +2013,8,1,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2006,-1,0,2103,-3,0,0 +2013,10,13,7,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1439,-3,0,1551,-19,0,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,9,0,1110,43,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,30,1,1258,12,0,0 +2013,5,8,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1435,-2,0,1650,-7,0,0 +2013,7,5,5,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,745,-4,0,1017,-30,0,0 +2013,10,16,3,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1135,6,0,1225,-1,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1030,-7,0,1107,-1,0,0 +2013,9,25,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-6,0,902,-23,0,0 +2013,6,28,5,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1345,-2,0,1525,-11,0,0 +2013,5,18,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1524,-1,0,0 +2013,4,6,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2150,-2,0,539,-29,0,0 +2013,6,11,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1405,2,0,1555,-14,0,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1038,10,0,1411,22,1,0 +2013,8,13,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1428,0,0,1647,-12,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1609,-7,0,2012,-4,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,-5,0,1308,-26,0,0 +2013,8,14,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1358,26,1,1614,18,1,0 +2013,10,22,2,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1105,-3,0,1645,-12,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,-4,0,1440,-8,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,-1,0,1505,3,0,0 +2013,6,4,2,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,626,-11,0,746,-27,0,0 +2013,10,2,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,8,0,1404,14,0,0 +2013,9,17,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,726,-7,0,908,-7,0,0 +2013,9,22,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1925,195,1,2052,182,1,0 +2013,4,22,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,5,0,1820,3,0,0 +2013,4,10,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1229,-6,0,1515,-8,0,0 +2013,9,13,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1100,5,0,1120,3,0,0 +2013,10,9,3,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,-1,0,1045,-2,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,720,-5,0,900,-15,0,0 +2013,8,27,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-9,0,643,-20,0,0 +2013,5,16,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,-3,0,1256,-18,0,0 +2013,10,22,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1345,6,0,1435,-7,0,0 +2013,6,9,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-5,0,1559,-6,0,0 +2013,4,5,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-3,0,1600,2,0,0 +2013,10,9,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1810,-3,0,1920,-8,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1535,-3,0,1644,-7,0,0 +2013,7,17,3,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,602,-4,0,1330,8,0,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,705,2,0,824,-13,0,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1045,-1,0,1325,-12,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,855,-6,0,1233,3,0,0 +2013,6,17,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-5,0,1652,22,1,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1415,0,0,1658,-17,0,0 +2013,9,23,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1751,-6,0,1825,-8,0,0 +2013,6,13,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1320,0,0,1445,-2,0,0 +2013,9,25,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1129,-8,0,1247,-16,0,0 +2013,8,27,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,815,-2,0,945,-18,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1205,-4,0,1345,-21,0,0 +2013,6,15,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1500,72,1,1658,55,1,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,-4,0,2137,-6,0,0 +2013,7,3,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-2,0,2159,-8,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,755,-5,0,1118,-11,0,0 +2013,6,4,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,722,-4,0,1025,-10,0,0 +2013,7,27,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1416,270,1,1643,265,1,0 +2013,4,1,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1217,8,0,1420,31,1,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,32,1,2000,27,1,0 +2013,10,17,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1915,-8,0,2007,-9,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1340,5,0,1450,-8,0,0 +2013,7,25,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-2,0,1101,-17,0,0 +2013,9,1,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1425,-5,0,1525,-6,0,0 +2013,7,19,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,0,0,1325,-8,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2220,13,0,2355,-5,0,0 +2013,7,27,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,846,18,1,0 +2013,9,8,7,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1400,3,0,1745,3,0,0 +2013,10,11,5,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1430,20,1,1635,15,1,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,23,1,1454,30,1,0 +2013,4,20,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,3,0,1755,6,0,0 +2013,6,16,7,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1635,27,1,1827,21,1,0 +2013,7,11,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1850,0,0,1925,4,0,0 +2013,10,2,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2210,0,0,2355,-5,0,0 +2013,8,2,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,530,-1,0,705,-19,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1650,29,1,1840,6,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2000,153,1,2129,132,1,0 +2013,5,19,7,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1855,4,0,2206,-1,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,0,,2240,0,1,1 +2013,4,26,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-6,0,1925,1,0,0 +2013,10,13,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,754,-3,0,929,-7,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,729,-4,0,1125,-11,0,0 +2013,9,8,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,-3,0,1838,-4,0,0 +2013,10,9,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-5,0,849,-5,0,0 +2013,4,9,2,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,-5,0,2035,-4,0,0 +2013,8,31,6,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,850,-4,0,1012,-22,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,955,-7,0,1131,-28,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,40,1,1506,78,1,0 +2013,8,11,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,132,1,1250,137,1,0 +2013,10,16,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-4,0,1812,16,1,0 +2013,6,30,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,132,1,1922,132,1,0 +2013,7,13,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1230,0,,1335,0,1,1 +2013,10,25,5,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,930,-3,0,1009,-13,0,0 +2013,7,17,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-5,0,1600,-3,0,0 +2013,6,15,6,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,626,-2,0,815,0,0,0 +2013,6,27,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,5,0,1455,5,0,0 +2013,9,24,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1740,-2,0,1919,-6,0,0 +2013,5,5,7,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1255,-3,0,1550,0,0,0 +2013,5,16,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,959,-5,0,1117,-11,0,0 +2013,8,22,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1250,17,1,1530,30,1,0 +2013,10,29,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,545,-2,0,745,8,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2156,6,0,2221,-5,0,0 +2013,7,30,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1150,7,0,1310,-7,0,0 +2013,9,3,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-10,0,840,-5,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,950,-5,0,1130,-8,0,0 +2013,7,19,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1809,106,1,2100,98,1,0 +2013,6,2,7,OO,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1004,-2,0,1429,-7,0,0 +2013,7,16,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,0,0,1800,-6,0,0 +2013,5,8,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,14,0,1705,19,1,0 +2013,6,21,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1255,-5,0,1535,-11,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,8,0,1230,-3,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1005,4,0,1335,2,0,0 +2013,6,10,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1901,32,1,2139,33,1,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,10,0,1738,3,0,0 +2013,7,11,4,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1455,4,0,1905,-14,0,0 +2013,10,22,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,7,0,1230,8,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,25,1,2015,22,1,0 +2013,8,10,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-5,0,1105,-10,0,0 +2013,7,8,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,-1,0,1955,-9,0,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-4,0,1323,-18,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,915,0,0,1049,-23,0,0 +2013,4,4,4,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,1810,-2,0,2055,-5,0,0 +2013,4,1,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,-6,0,745,-6,0,0 +2013,4,27,6,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1208,-4,0,1420,-13,0,0 +2013,4,19,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1951,7,0,2056,43,1,0 +2013,4,13,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-2,0,830,-4,0,0 +2013,5,8,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,-3,0,1918,-2,0,0 +2013,8,5,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1200,11,0,1412,35,1,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1457,32,1,1634,26,1,0 +2013,6,18,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,605,-2,0,730,4,0,0 +2013,10,13,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,0,0,839,-1,0,0 +2013,5,6,1,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1600,10,0,2215,-1,0,0 +2013,5,20,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2317,0,0,509,-15,0,0 +2013,6,2,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,121,1,1613,133,1,0 +2013,6,14,5,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1722,-1,0,1855,-1,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-2,0,2159,5,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,734,10,0,925,11,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2100,14,0,2350,6,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1005,0,0,1215,-5,0,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-4,0,1151,0,0,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,740,-4,0,845,-19,0,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,630,1,0,1225,14,0,0 +2013,9,18,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-6,0,826,-12,0,0 +2013,10,16,3,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,8,0,1138,13,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,845,2,0,1115,-1,0,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2130,12,0,2255,2,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,745,-2,0,1144,-22,0,0 +2013,6,22,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-5,0,859,-7,0,0 +2013,6,17,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1800,-9,0,1950,-26,0,0 +2013,8,3,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1920,60,1,2035,53,1,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1935,-5,0,55,-21,0,0 +2013,6,25,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1555,-6,0,1710,-13,0,0 +2013,8,1,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1605,11,0,2155,-5,0,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,1,0,1946,-3,0,0 +2013,7,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2113,92,1,2245,79,1,0 +2013,9,27,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1300,16,1,1405,15,1,0 +2013,9,5,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-6,0,1049,1,0,0 +2013,6,19,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,-3,0,1918,-5,0,0 +2013,4,1,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,932,-2,0,1042,-22,0,0 +2013,9,5,4,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1815,-6,0,1917,-19,0,0 +2013,5,3,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1439,11,0,1600,-10,0,0 +2013,4,6,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1620,6,0,1657,10,0,0 +2013,6,19,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2004,-6,0,2108,-6,0,0 +2013,9,29,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1420,-11,0,1555,-33,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,850,12,0,1010,12,0,0 +2013,7,12,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2135,-5,0,2245,-12,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,955,-3,0,1115,-9,0,0 +2013,8,27,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1536,-4,0,1822,-25,0,0 +2013,5,8,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-1,0,1835,-13,0,0 +2013,8,22,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,959,1,0,1110,-3,0,0 +2013,6,13,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,167,1,2322,158,1,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,629,-4,0,805,4,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,0,0,1005,-9,0,0 +2013,8,18,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,535,-1,0,850,-11,0,0 +2013,5,1,3,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1438,-3,0,1634,-10,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1749,-8,0,1838,-23,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1305,54,1,1739,56,1,0 +2013,8,10,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1943,10,0,2125,4,0,0 +2013,9,18,3,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1829,-7,0,1939,-19,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,930,3,0,1210,0,0,0 +2013,4,24,3,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1515,37,1,2035,8,0,0 +2013,7,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,18,1,1225,13,0,0 +2013,5,16,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,-2,0,1115,-13,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,0,0,1418,-15,0,0 +2013,8,20,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2103,12,0,2222,-9,0,0 +2013,4,12,5,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,825,1,0,1057,16,1,0 +2013,10,23,3,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1800,-1,0,2008,-5,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2152,-2,0,2321,0,0,0 +2013,10,13,7,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,-5,0,1610,-18,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,-3,0,2225,6,0,0 +2013,4,6,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1455,39,1,1705,23,1,0 +2013,6,24,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,0,,2205,0,1,1 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2155,76,1,2326,80,1,0 +2013,5,11,6,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1525,471,1,1710,453,1,0 +2013,10,12,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,-6,0,2121,-2,0,0 +2013,7,27,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,730,-8,0,1026,-17,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,15,1,2120,-4,0,0 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,-1,0,1923,-8,0,0 +2013,9,15,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-1,0,858,-17,0,0 +2013,8,26,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2043,43,1,2159,40,1,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-6,0,2009,5,0,0 +2013,6,1,6,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1620,206,1,1836,230,1,0 +2013,10,7,1,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1755,98,1,2100,82,1,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1215,6,0,1350,-8,0,0 +2013,9,26,4,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,-4,0,1610,-4,0,0 +2013,10,8,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,630,53,1,805,41,1,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1810,45,1,1943,29,1,0 +2013,8,14,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,-1,0,750,3,0,0 +2013,9,9,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1233,-3,0,1602,0,0,0 +2013,6,6,4,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,-9,0,845,-24,0,0 +2013,10,14,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,2,0,1115,-10,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-2,0,923,-11,0,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1355,5,0,1600,-3,0,0 +2013,9,14,6,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-4,0,1918,-14,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,3,0,2328,1,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-4,0,1832,-14,0,0 +2013,6,23,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-5,0,730,-15,0,0 +2013,6,13,4,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1856,0,,2042,0,1,1 +2013,4,1,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,942,-10,0,1030,-8,0,0 +2013,4,17,3,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,810,33,1,1005,26,1,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1559,-1,0,1721,-23,0,0 +2013,5,6,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,855,-7,0,1230,-11,0,0 +2013,6,18,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,24,1,1915,21,1,0 +2013,7,1,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,9,0,1810,-2,0,0 +2013,10,11,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,31,1,1522,14,0,0 +2013,6,16,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1653,-1,0,1751,2,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,3,0,1032,-8,0,0 +2013,4,24,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,-5,0,729,-14,0,0 +2013,8,2,5,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,810,-6,0,1029,9,0,0 +2013,4,16,2,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-7,0,1628,-21,0,0 +2013,10,31,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-7,0,845,-22,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,-1,0,755,1,0,0 +2013,4,5,5,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,914,-8,0,955,-18,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2220,-2,0,2300,22,1,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-4,0,1305,-12,0,0 +2013,4,16,2,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1245,-3,0,1350,-9,0,0 +2013,4,7,7,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1140,-1,0,1425,1,0,0 +2013,6,14,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1232,-5,0,1444,14,0,0 +2013,4,10,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1801,5,0,2131,43,1,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1630,-1,0,1810,-24,0,0 +2013,4,2,2,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1025,-1,0,1610,-1,0,0 +2013,9,8,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,-2,0,1727,1,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,-3,0,1630,-5,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,2,0,1315,-9,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,7,0,1154,-3,0,0 +2013,10,22,2,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1700,28,1,1940,29,1,0 +2013,4,7,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-9,0,1630,-15,0,0 +2013,8,28,3,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1110,26,1,1939,32,1,0 +2013,8,26,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,625,5,0,850,10,0,0 +2013,8,12,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,1415,-21,0,0 +2013,10,29,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1800,-10,0,2008,-6,0,0 +2013,5,2,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1931,-8,0,2100,-12,0,0 +2013,10,24,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,535,-1,0,935,-17,0,0 +2013,8,18,7,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,900,-3,0,1155,-14,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,705,2,0,925,1,0,0 +2013,9,29,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,940,2,0,1100,1,0,0 +2013,7,31,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1355,-3,0,2114,-10,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1302,-2,0,1542,-21,0,0 +2013,10,17,4,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1030,2,0,1245,-9,0,0 +2013,8,16,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1251,-5,0,1503,4,0,0 +2013,10,31,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1120,-2,0,1256,-12,0,0 +2013,7,31,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1046,-10,0,1212,-16,0,0 +2013,6,25,2,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,735,8,0,926,16,1,0 +2013,8,15,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,30,-4,0,549,-2,0,0 +2013,5,5,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,-1,0,2055,-15,0,0 +2013,8,29,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,20,1,1225,18,1,0 +2013,7,14,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,710,-4,0,855,-17,0,0 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,8,0,1520,3,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1010,-8,0,1320,-17,0,0 +2013,4,20,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,851,0,,1025,0,1,1 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,-4,0,922,-15,0,0 +2013,4,26,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1626,-1,0,1809,7,0,0 +2013,5,11,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,39,1,2125,25,1,0 +2013,8,14,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-6,0,930,0,0,0 +2013,6,11,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1345,-7,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1514,-4,0,1733,-16,0,0 +2013,9,13,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,-10,0,1545,-23,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1855,-3,0,2015,5,0,0 +2013,4,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,635,14,0,950,10,0,0 +2013,4,28,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1715,0,0,1815,-9,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,844,39,1,1041,28,1,0 +2013,6,17,1,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,138,1,1940,176,1,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1750,-4,0,1915,-9,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1255,2,0,1720,3,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,2,0,2012,10,0,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1702,0,0,2308,3,0,0 +2013,7,22,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2047,5,0,2208,2,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,3,0,1301,1,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1840,4,0,2100,9,0,0 +2013,10,11,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,740,-8,0,910,-24,0,0 +2013,6,18,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,39,1,1317,22,1,0 +2013,6,18,2,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1229,-6,0,1442,-16,0,0 +2013,9,25,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1310,13,0,1440,27,1,0 +2013,4,15,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-2,0,628,15,1,0 +2013,5,25,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1529,8,0,1820,39,1,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1300,8,0,1605,-6,0,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-3,0,1917,-1,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,81,1,1735,74,1,0 +2013,5,7,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1345,-5,0,1543,-19,0,0 +2013,7,5,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,-2,0,815,-20,0,0 +2013,8,20,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1059,-6,0,1430,-11,0,0 +2013,8,20,2,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,-7,0,1031,-16,0,0 +2013,7,8,1,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,-2,0,845,-5,0,0 +2013,4,14,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-7,0,1245,-8,0,0 +2013,7,30,2,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1540,-3,0,1929,-2,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1415,95,1,1625,107,1,0 +2013,8,23,5,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,-2,0,1144,0,0,0 +2013,7,16,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-11,0,958,-17,0,0 +2013,8,23,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,924,-4,0,1646,7,0,0 +2013,4,29,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1142,-5,0,1230,-1,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,6,0,2148,-5,0,0 +2013,7,21,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,8,0,1425,6,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2200,38,1,2310,40,1,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1755,0,0,1940,-19,0,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1835,33,1,5,19,1,0 +2013,9,18,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1455,16,1,1605,16,1,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1420,2,0,1535,-3,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,855,1,0,1025,7,0,0 +2013,8,29,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-5,0,950,7,0,0 +2013,7,25,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,645,-11,0,844,-17,0,0 +2013,10,4,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,4,0,1019,59,1,0 +2013,8,19,1,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1513,-4,0,1653,-19,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2206,-1,0,2326,-17,0,0 +2013,4,25,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,1,0,1140,-3,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1855,31,1,25,24,1,0 +2013,4,27,6,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1100,-2,0,1310,-11,0,0 +2013,4,23,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,520,0,0,810,-11,0,0 +2013,7,8,1,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,13,0,1552,14,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1345,44,1,1512,55,1,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,5,0,951,-16,0,0 +2013,8,2,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1140,-4,0,1350,-10,0,0 +2013,9,14,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,47,1,1300,28,1,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,10,0,2139,1,0,0 +2013,4,12,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,600,-2,0,915,-19,0,0 +2013,10,12,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,550,-8,0,751,-29,0,0 +2013,10,16,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,755,-1,0,915,-6,0,0 +2013,10,29,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1115,51,1,1230,47,1,0 +2013,10,4,5,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,735,19,1,926,14,0,0 +2013,10,31,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,811,-5,0,1106,-34,0,0 +2013,10,6,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1620,-3,0,1730,-8,0,0 +2013,6,23,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,605,-5,0,831,-20,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2126,104,1,2253,139,1,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,615,-3,0,710,0,0,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1935,15,1,2310,-28,0,0 +2013,4,15,1,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,17,1,1300,-14,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,7,0,1635,15,1,0 +2013,5,14,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-1,0,940,3,0,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2125,2,0,2250,-8,0,0 +2013,9,6,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,19,1,1810,20,1,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,-7,0,2340,4,0,0 +2013,10,23,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,853,-9,0,1005,-13,0,0 +2013,5,16,4,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1255,-4,0,1550,-24,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,127,1,2244,148,1,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1252,-1,0,2108,25,1,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,2000,40,1,2320,43,1,0 +2013,8,23,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1845,33,1,2036,25,1,0 +2013,5,6,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1905,27,1,1927,15,1,0 +2013,6,9,7,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1721,9,0,1900,-2,0,0 +2013,8,1,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,-4,0,951,-9,0,0 +2013,10,7,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,1044,-2,0,0 +2013,7,9,2,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,9,0,1705,31,1,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,-3,0,900,0,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,-2,0,915,-16,0,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1459,-2,0,1730,-5,0,0 +2013,7,15,1,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-3,0,1634,-4,0,0 +2013,8,29,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,41,1,2035,18,1,0 +2013,8,24,6,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,935,-3,0,1102,-9,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1630,75,1,1745,78,1,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,38,1,1435,32,1,0 +2013,8,12,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,0,0,2205,3,0,0 +2013,7,28,7,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1557,-1,0,2020,21,1,0 +2013,9,19,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1400,-3,0,1735,18,1,0 +2013,8,6,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-5,0,1712,21,1,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,835,1,0,1010,-3,0,0 +2013,7,11,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1815,-14,0,2345,-9,0,0 +2013,7,11,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,715,-5,0,0 +2013,6,8,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-3,0,1640,5,0,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1930,21,1,35,14,0,0 +2013,9,12,4,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,5,0,1625,-3,0,0 +2013,10,24,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,19,1,1555,11,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1940,-1,0,2035,-4,0,0 +2013,4,9,2,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-6,0,925,5,0,0 +2013,8,2,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-5,0,936,0,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,-7,0,2229,-10,0,0 +2013,5,27,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1832,21,1,1936,21,1,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,931,42,1,1148,13,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2040,32,1,2145,23,1,0 +2013,5,17,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,6,0,2133,4,0,0 +2013,8,8,4,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-3,0,1205,6,0,0 +2013,7,24,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,824,-4,0,1635,-30,0,0 +2013,8,26,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-6,0,1200,-13,0,0 +2013,6,15,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1308,-1,0,1433,-3,0,0 +2013,9,28,6,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,900,-8,0,1125,-1,0,0 +2013,9,26,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,-1,0,2039,-6,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,650,-3,0,840,-8,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1531,-3,0,1710,0,0,0 +2013,7,21,7,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,2005,4,0,2100,0,0,0 +2013,9,29,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1235,-3,0,1822,-14,0,0 +2013,7,11,4,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,925,19,1,1115,12,0,0 +2013,8,8,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-5,0,1418,-30,0,0 +2013,6,24,1,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1410,-7,0,2246,-12,0,0 +2013,7,15,1,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,946,14,0,1140,-1,0,0 +2013,5,3,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,133,1,1338,136,1,0 +2013,8,23,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1736,7,0,2005,13,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,2,0,1553,2,0,0 +2013,10,18,5,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,804,-14,0,903,4,0,0 +2013,6,24,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,725,66,1,930,61,1,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1240,-2,0,1600,-14,0,0 +2013,9,12,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,50,-8,0,513,-12,0,0 +2013,10,1,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-7,0,1110,-8,0,0 +2013,9,3,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-4,0,1450,-6,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,621,-4,0,855,-24,0,0 +2013,4,8,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1504,-1,0,1750,-12,0,0 +2013,4,1,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,929,-8,0,1135,-11,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1840,89,1,2100,104,1,0 +2013,4,19,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,847,-6,0,1031,-28,0,0 +2013,5,27,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1900,24,1,2125,27,1,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-8,0,1319,-7,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,655,0,0,755,-7,0,0 +2013,8,27,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1015,6,0,1205,-30,0,0 +2013,10,10,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,635,-1,0,820,1,0,0 +2013,7,26,5,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1105,6,0,1135,1,0,0 +2013,4,24,3,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,6,0,1638,13,0,0 +2013,4,16,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1626,-1,0,1842,-17,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1310,-2,0,1654,-25,0,0 +2013,5,27,1,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-10,0,1329,-7,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1829,8,0,2150,44,1,0 +2013,8,11,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,3,0,2014,0,0,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,-2,0,1400,-9,0,0 +2013,9,24,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-8,0,705,-22,0,0 +2013,6,7,5,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,1091,1,2125,1114,1,0 +2013,6,25,2,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-4,0,1907,-10,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,15,1,55,5,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1635,-6,0,2005,-34,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,14,0,1750,13,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1500,2,0,1610,3,0,0 +2013,7,20,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,-1,0,1915,-6,0,0 +2013,8,20,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2205,-5,0,10,-12,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,4,0,1327,-9,0,0 +2013,10,3,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-7,0,855,-13,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-6,0,1435,-17,0,0 +2013,9,22,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-4,0,1408,-5,0,0 +2013,7,25,4,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1312,-4,0,1624,-2,0,0 +2013,6,30,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,53,1,2050,52,1,0 +2013,4,23,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-12,0,1639,0,0,0 +2013,9,2,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1558,-6,0,1610,-9,0,0 +2013,4,24,3,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,-4,0,2105,19,1,0 +2013,9,30,1,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1819,-9,0,2002,-13,0,0 +2013,6,23,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,47,1,2110,28,1,0 +2013,9,18,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,-7,0,1918,-23,0,0 +2013,7,28,7,DL,13244,Memphis International,Memphis,TN,14747,Seattle/Tacoma International,Seattle,WA,1940,-3,0,2212,4,0,0 +2013,10,7,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1045,0,0,1210,0,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1959,43,1,2135,19,1,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,35,1,1115,38,1,0 +2013,5,28,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,13,0,1155,13,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,605,-4,0,911,-13,0,0 +2013,6,29,6,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,-7,0,1205,-25,0,0 +2013,10,24,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,4,0,1246,-1,0,0 +2013,5,9,4,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1521,7,0,1706,-5,0,0 +2013,4,16,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1500,-6,0,1625,-10,0,0 +2013,5,1,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1936,4,0,2151,-9,0,0 +2013,5,4,6,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1133,3,0,1406,5,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,725,0,0,955,4,0,0 +2013,7,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1405,16,1,1510,5,0,0 +2013,9,24,2,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,-7,0,1913,-28,0,0 +2013,5,9,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,855,19,1,1119,22,1,0 +2013,6,18,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,9,0,1235,3,0,0 +2013,9,10,2,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1530,1,0,1710,-5,0,0 +2013,5,13,1,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1335,-4,0,1854,-1,0,0 +2013,8,9,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,2,0,750,6,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,845,-2,0,1123,1,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1826,6,0,2103,-4,0,0 +2013,9,20,5,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1654,-1,0,1929,-11,0,0 +2013,10,9,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1725,-1,0,2057,-4,0,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,905,-9,0,1008,-16,0,0 +2013,5,10,5,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-6,0,604,-7,0,0 +2013,7,15,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1135,43,1,1423,30,1,0 +2013,10,15,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1740,-3,0,1905,-14,0,0 +2013,6,30,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-2,0,941,-11,0,0 +2013,4,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,838,-5,0,0 +2013,10,17,4,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1355,18,1,1535,20,1,0 +2013,7,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1205,10,0,1500,17,1,0 +2013,4,21,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,805,1,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,73,1,2310,46,1,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2010,59,1,2130,54,1,0 +2013,4,1,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,705,160,1,735,158,1,0 +2013,8,26,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-3,0,1826,-7,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,-1,0,1405,-5,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,28,1,2139,22,1,0 +2013,5,21,2,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,600,13,0,713,13,0,0 +2013,9,8,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-4,0,1428,-1,0,0 +2013,10,21,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,12,0,1549,11,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1938,-1,0,52,-16,0,0 +2013,8,16,5,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,538,-2,0,945,-15,0,0 +2013,6,13,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1033,16,1,1209,47,1,0 +2013,9,11,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1755,43,1,1901,35,1,0 +2013,4,16,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,605,-7,0,730,-2,0,0 +2013,8,13,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-9,0,1026,-6,0,0 +2013,9,12,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2030,3,0,2316,33,1,0 +2013,6,12,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,755,-8,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2308,3,0,112,4,0,0 +2013,7,28,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,0,0,1655,0,0,0 +2013,8,26,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,-3,0,1945,-23,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1932,145,1,2056,143,1,0 +2013,7,24,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1909,24,1,2024,34,1,0 +2013,5,3,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-4,0,1435,2,0,0 +2013,7,18,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-2,0,1749,-24,0,0 +2013,10,10,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,540,1,0,1145,-18,0,0 +2013,4,10,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1241,19,1,1522,1,0,0 +2013,10,4,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1425,17,1,1614,2,0,0 +2013,6,19,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,545,0,0,807,-8,0,0 +2013,4,5,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,610,-7,0,909,-4,0,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1205,-4,0,1451,-23,0,0 +2013,4,18,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,935,0,0,1105,-6,0,0 +2013,8,10,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,815,0,0,925,-7,0,0 +2013,8,11,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1810,23,1,1930,9,0,0 +2013,6,11,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,0,0,1835,1,0,0 +2013,4,19,5,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1110,-14,0,1430,-12,0,0 +2013,9,18,3,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,10,0,1915,-17,0,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2115,-4,0,2235,-6,0,0 +2013,7,12,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-3,0,1746,-13,0,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,630,96,1,924,118,1,0 +2013,10,29,2,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1048,-9,0,1345,-19,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,608,1,0,827,-12,0,0 +2013,5,7,2,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-4,0,2030,15,1,0 +2013,7,9,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-3,0,2235,13,0,0 +2013,6,6,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1425,57,1,1631,48,1,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,35,1,1150,21,1,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1602,-1,0,1759,1,0,0 +2013,4,15,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1945,-15,0,2125,-14,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,9,0,1935,-7,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1411,34,1,1543,54,1,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2013,168,1,2323,194,1,0 +2013,10,24,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,2,0,906,12,0,0 +2013,7,8,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1619,-4,0,2042,-6,0,0 +2013,6,28,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1352,-7,0,1511,96,1,0 +2013,5,8,3,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,1400,-5,0,1543,-11,0,0 +2013,8,9,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1330,62,1,1458,60,1,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1623,21,1,1905,5,0,0 +2013,6,4,2,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,715,-2,0,825,-7,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,-1,0,1502,4,0,0 +2013,4,9,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,17,1,935,20,1,0 +2013,9,27,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-3,0,935,-18,0,0 +2013,6,30,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,849,34,1,947,41,1,0 +2013,9,18,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-7,0,1036,-8,0,0 +2013,10,19,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1237,4,0,1421,12,0,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1825,130,1,1915,123,1,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-6,0,2208,7,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1317,0,0,1458,1,0,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,14,0,1814,-1,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1051,-2,0,1151,-9,0,0 +2013,8,23,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,2230,-5,0,424,-8,0,0 +2013,4,13,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,2012,-5,0,2118,-5,0,0 +2013,9,17,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,-5,0,1035,-15,0,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1445,8,0,1720,16,1,0 +2013,6,23,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1755,-1,0,2000,6,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1532,-6,0,1741,-19,0,0 +2013,7,3,3,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,715,-3,0,940,5,0,0 +2013,8,12,1,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-7,0,1719,-3,0,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,1554,-31,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1200,5,0,1255,2,0,0 +2013,9,1,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,805,-7,0,1510,16,1,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2155,20,1,2335,0,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,2,0,1100,-4,0,0 +2013,8,30,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1734,-5,0,1949,-33,0,0 +2013,6,27,4,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,-6,0,1740,-1,0,0 +2013,6,26,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,9,0,1956,16,1,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,-5,0,1303,1,0,0 +2013,7,11,4,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,938,7,0,1239,2,0,0 +2013,4,1,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1724,-5,0,2029,-16,0,0 +2013,7,1,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,18,1,1710,11,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1850,7,0,2025,6,0,0 +2013,9,22,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1530,-3,0,1555,-7,0,0 +2013,10,20,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,850,-1,0,1008,-14,0,0 +2013,10,24,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2016,-3,0,2145,-12,0,0 +2013,4,22,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2050,272,1,2320,300,1,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1550,5,0,1810,-7,0,0 +2013,9,16,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1119,92,1,1420,89,1,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1725,0,0,1950,-18,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1811,-5,0,2000,-31,0,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-2,0,1929,9,0,0 +2013,6,17,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1625,-1,0,1640,2,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,22,1,1535,58,1,0 +2013,4,18,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1930,12,0,2235,3,0,0 +2013,10,8,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,817,-4,0,1400,-6,0,0 +2013,9,6,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-6,0,714,-7,0,0 +2013,8,22,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-6,0,1249,-3,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2049,44,1,2220,38,1,0 +2013,5,5,7,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1953,29,1,2100,16,1,0 +2013,6,4,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,0,0,2159,7,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-3,0,905,-3,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1355,25,1,1625,24,1,0 +2013,8,26,1,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-9,0,1050,-3,0,0 +2013,6,20,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-6,0,955,-16,0,0 +2013,6,21,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,13,0,1945,10,0,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1935,15,1,2138,-6,0,0 +2013,7,30,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-3,0,1520,-9,0,0 +2013,4,23,2,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,-2,0,1336,3,0,0 +2013,5,16,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,846,-6,0,924,-7,0,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,715,-1,0,815,-8,0,0 +2013,5,29,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1029,-1,0,1135,2,0,0 +2013,5,24,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1640,27,1,1800,25,1,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1105,18,1,1215,17,1,0 +2013,10,17,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-4,0,843,-10,0,0 +2013,9,30,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,939,-8,0,1054,4,0,0 +2013,5,6,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,815,-1,0,1111,3,0,0 +2013,9,18,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1107,-7,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1835,1,0,2050,-32,0,0 +2013,6,15,6,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1954,-9,0,2102,-15,0,0 +2013,4,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,-3,0,2311,-27,0,0 +2013,9,25,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,737,2,0,0 +2013,5,11,6,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,730,-4,0,1245,0,0,0 +2013,6,26,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1356,-1,0,1436,-14,0,0 +2013,6,11,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1215,-3,0,1400,-9,0,0 +2013,9,5,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1415,-7,0,1527,-6,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2110,23,1,2235,21,1,0 +2013,8,31,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-5,0,1955,-13,0,0 +2013,5,16,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,139,1,1132,121,1,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,-5,0,1235,-6,0,0 +2013,9,12,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1110,-2,0,1145,-2,0,0 +2013,4,15,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,20,1,2025,16,1,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1848,2,0,1945,-6,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1810,4,0,1905,-4,0,0 +2013,5,14,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-7,0,1049,-14,0,0 +2013,7,22,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,-6,0,2029,-10,0,0 +2013,9,26,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-5,0,1342,-25,0,0 +2013,8,14,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1125,11,0,1300,19,1,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,2000,-1,0,2145,22,1,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1750,100,1,1930,93,1,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,805,-2,0,920,-7,0,0 +2013,4,20,6,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1545,-6,0,1820,-21,0,0 +2013,4,11,4,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1556,-2,0,1810,-8,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,4,0,1926,2,0,0 +2013,6,28,5,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-3,0,1109,-6,0,0 +2013,8,20,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,635,3,0,930,6,0,0 +2013,9,16,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,6,0,1420,2,0,0 +2013,10,17,4,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,15,1,1810,2,0,0 +2013,8,8,4,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1437,151,1,1829,137,1,0 +2013,5,27,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1905,161,1,1929,159,1,0 +2013,7,1,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1420,0,0,1530,-9,0,0 +2013,5,2,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1205,-11,0,1333,-20,0,0 +2013,7,27,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,850,1,0,950,-4,0,0 +2013,8,6,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,6,0,1425,9,0,0 +2013,10,8,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-7,0,1516,-3,0,0 +2013,4,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,715,-3,0,825,-8,0,0 +2013,4,19,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,12,0,1916,17,1,0 +2013,4,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,837,-4,0,1138,-25,0,0 +2013,5,16,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2018,-3,0,2115,1,0,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1030,-4,0,1220,-1,0,0 +2013,6,11,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1046,-1,0,1350,-3,0,0 +2013,10,8,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,845,1,0,1141,-11,0,0 +2013,5,17,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1040,72,1,1210,59,1,0 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1550,83,1,1750,79,1,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1120,-6,0,1345,-12,0,0 +2013,8,31,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1940,-2,0,2045,1,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1735,9,0,1856,18,1,0 +2013,9,19,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1935,-1,0,2158,-7,0,0 +2013,5,24,5,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-7,0,2227,-11,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,2000,92,1,2320,94,1,0 +2013,10,3,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,38,1,1838,20,1,0 +2013,4,12,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,1,0,800,-4,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,42,1,2355,43,1,0 +2013,5,5,7,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1445,121,1,1754,118,1,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1410,30,1,1550,26,1,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,712,-3,0,1210,-3,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2145,13,0,2320,-4,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2100,14,0,2305,18,1,0 +2013,4,10,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1557,32,1,1659,84,1,0 +2013,5,8,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1120,-4,0,1440,-5,0,0 +2013,9,12,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1014,-5,0,1213,-7,0,0 +2013,8,6,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1935,-7,0,2058,-6,0,0 +2013,7,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,29,1,1214,28,1,0 +2013,10,7,1,OO,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1135,-4,0,1257,-7,0,0 +2013,5,11,6,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-5,0,1112,-12,0,0 +2013,10,13,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-6,0,1657,18,1,0 +2013,4,10,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,174,1,2100,164,1,0 +2013,7,16,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1742,-12,0,1805,-29,0,0 +2013,8,17,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,72,1,739,87,1,0 +2013,6,13,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,805,-4,0,1055,59,1,0 +2013,6,17,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,8,0,1610,-1,0,0 +2013,5,14,2,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,625,28,1,900,11,0,0 +2013,9,25,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1849,-8,0,2027,9,0,0 +2013,9,28,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-2,0,831,13,0,0 +2013,6,5,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-1,0,1652,-24,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1810,24,1,1935,24,1,0 +2013,8,30,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,615,-6,0,755,1,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1440,4,0,1540,4,0,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,635,6,0,1125,4,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,0,0,1825,-10,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,745,-4,0,1025,-10,0,0 +2013,5,16,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,637,-4,0,1421,14,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-1,0,1313,-1,0,0 +2013,10,13,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2010,-8,0,2204,-13,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1005,0,0,1257,-4,0,0 +2013,7,28,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,32,1,1610,30,1,0 +2013,5,15,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1905,-7,0,2015,-26,0,0 +2013,10,18,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,835,-4,0,1031,9,0,0 +2013,8,10,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-6,0,925,-16,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1015,55,1,1315,145,1,0 +2013,10,26,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1820,-5,0,1950,-24,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,16,1,1855,22,1,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1639,9,0,1810,20,1,0 +2013,6,6,4,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,715,-5,0,935,-6,0,0 +2013,6,22,6,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,953,0,0,1429,1,0,0 +2013,5,22,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,106,1,2105,92,1,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,-3,0,2052,-6,0,0 +2013,7,9,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,14,0,1721,75,1,0 +2013,7,9,2,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1234,9,0,1541,13,0,0 +2013,9,22,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,-3,0,1736,-13,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,20,1,2350,15,1,0 +2013,7,22,1,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1320,-1,0,1935,-7,0,0 +2013,7,14,7,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1510,8,0,1630,-8,0,0 +2013,4,23,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,940,-1,0,1229,7,0,0 +2013,10,10,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,-3,0,750,0,0,0 +2013,10,9,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,2,0,1822,-10,0,0 +2013,8,4,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-8,0,1928,-7,0,0 +2013,6,24,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,828,-1,0,1029,-8,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1745,13,0,2200,-5,0,0 +2013,9,5,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1835,-12,0,2025,-12,0,0 +2013,10,24,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,645,-6,0,808,-6,0,0 +2013,6,15,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1652,0,0,1751,-3,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1550,19,1,1810,30,1,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,850,12,0,1025,2,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2050,16,1,2320,12,0,0 +2013,9,1,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,65,1,2020,49,1,0 +2013,10,2,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1417,-13,0,0 +2013,7,3,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1344,-8,0,1430,-8,0,0 +2013,4,15,1,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1508,27,1,1640,22,1,0 +2013,6,23,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,83,1,1514,86,1,0 +2013,6,28,5,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-8,0,909,-14,0,0 +2013,5,20,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1725,-6,0,1908,-6,0,0 +2013,4,12,5,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-6,0,905,16,1,0 +2013,9,23,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1853,17,1,2053,6,0,0 +2013,6,26,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1220,-4,0,0 +2013,8,9,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,-3,0,1000,-9,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1000,12,0,1700,-7,0,0 +2013,4,19,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1820,221,1,2109,296,1,0 +2013,8,5,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-1,0,912,9,0,0 +2013,4,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2010,0,,2141,0,1,1 +2013,6,9,7,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,804,-6,0,1013,1,0,0 +2013,9,25,3,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,-2,0,2109,-1,0,0 +2013,9,18,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1850,0,0,2046,-5,0,0 +2013,10,9,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1925,26,1,2015,9,0,0 +2013,9,9,1,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1100,-6,0,1459,7,0,0 +2013,7,7,7,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,1950,15,1,42,12,0,0 +2013,6,17,1,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,815,35,1,1011,21,1,0 +2013,4,24,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-4,0,2022,-9,0,0 +2013,4,20,6,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1645,-8,0,1900,6,0,0 +2013,9,2,1,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1040,17,1,1240,-8,0,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-3,0,1650,-18,0,0 +2013,5,9,4,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-4,0,1038,-9,0,0 +2013,8,19,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-5,0,2051,-21,0,0 +2013,10,28,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-1,0,2034,4,0,0 +2013,9,22,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1750,-9,0,2022,3,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,-8,0,1712,-16,0,0 +2013,5,22,3,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1710,0,,1855,0,1,1 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2019,-3,0,2228,-21,0,0 +2013,7,6,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1040,-6,0,1220,-13,0,0 +2013,5,2,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1131,-5,0,1359,27,1,0 +2013,9,13,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1345,26,1,1638,17,1,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1320,20,1,1545,25,1,0 +2013,6,18,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,50,1,615,38,1,0 +2013,9,22,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,830,-1,0,1550,-15,0,0 +2013,6,7,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-6,0,1523,-14,0,0 +2013,6,14,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-8,0,904,-11,0,0 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1635,268,1,1815,250,1,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,905,-2,0,1317,-8,0,0 +2013,10,8,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,4,0,1740,0,0,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,-1,0,2255,1,0,0 +2013,7,15,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1305,5,0,1430,-4,0,0 +2013,5,13,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1957,3,0,2107,-8,0,0 +2013,10,18,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1519,-9,0,0 +2013,10,3,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,657,-14,0,0 +2013,9,12,4,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,823,7,0,1421,10,0,0 +2013,4,22,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,-6,0,1407,-16,0,0 +2013,4,24,3,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2207,-3,0,2254,15,1,0 +2013,7,15,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,-1,0,745,-9,0,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,13,0,1945,4,0,0 +2013,7,17,3,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,70,1,2231,71,1,0 +2013,10,17,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-5,0,1123,-22,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1315,-5,0,1607,4,0,0 +2013,9,10,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1200,-2,0,1505,-5,0,0 +2013,4,29,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,746,-3,0,905,13,0,0 +2013,9,27,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-4,0,1436,-4,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1045,39,1,1205,37,1,0 +2013,6,17,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1445,10,0,2310,-6,0,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1735,9,0,2045,4,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1805,24,1,1925,16,1,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1905,53,1,2035,83,1,0 +2013,9,26,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,82,1,2055,70,1,0 +2013,7,6,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,4,0,930,-1,0,0 +2013,6,10,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1945,-10,0,2300,-38,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,301,1,1904,317,1,0 +2013,6,2,7,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-4,0,1805,-22,0,0 +2013,5,6,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,622,-5,0,654,-1,0,0 +2013,10,5,6,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,750,-2,0,1040,-18,0,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1403,-2,0,1547,-16,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1820,32,1,2204,47,1,0 +2013,7,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1525,6,0,1625,7,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,-10,0,2300,-19,0,0 +2013,4,6,6,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,5,0,1630,5,0,0 +2013,9,25,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1858,-7,0,2026,9,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,1,0,1055,2,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,23,1,1050,23,1,0 +2013,7,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,-1,0,1055,11,0,0 +2013,9,25,3,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1401,-3,0,1525,-4,0,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2010,-5,0,2121,-19,0,0 +2013,9,20,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1753,148,1,1959,157,1,0 +2013,8,22,4,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1020,76,1,1130,83,1,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1512,3,0,1630,-21,0,0 +2013,8,16,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-5,0,1748,-5,0,0 +2013,9,29,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1732,0,0,1959,-7,0,0 +2013,10,9,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,5,0,2035,-4,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,835,-4,0,1045,-9,0,0 +2013,9,23,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,129,1,1549,140,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1912,-4,0,2106,-20,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,3,0,1140,0,0,0 +2013,10,17,4,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,918,-5,0,1128,-9,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,39,1,1115,41,1,0 +2013,4,15,1,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,1018,10,0,0 +2013,4,7,7,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1644,-8,0,1835,-21,0,0 +2013,6,29,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,920,1,0,0 +2013,9,2,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-3,0,1048,-5,0,0 +2013,10,12,6,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,802,-4,0,852,-15,0,0 +2013,8,25,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,815,-5,0,940,-13,0,0 +2013,6,16,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1622,-6,0,1800,-10,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-1,0,1305,-1,0,0 +2013,7,28,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,2045,-4,0,2140,0,0,0 +2013,10,31,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,-6,0,821,-24,0,0 +2013,4,13,6,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2315,-9,0,204,-20,0,0 +2013,9,26,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-6,0,2125,-18,0,0 +2013,10,11,5,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1210,60,1,1730,31,1,0 +2013,8,29,4,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1217,-4,0,1336,-10,0,0 +2013,9,10,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1825,13,0,1910,12,0,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1120,-4,0,1602,-4,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2010,-4,0,2300,-11,0,0 +2013,5,25,6,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1715,8,0,2034,-3,0,0 +2013,6,8,6,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-2,0,1030,-6,0,0 +2013,7,15,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1717,-4,0,1859,-10,0,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1506,-1,0,1554,-10,0,0 +2013,5,6,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1032,75,1,1130,58,1,0 +2013,10,4,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,740,-3,0,900,3,0,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1307,0,0,2130,4,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1341,-5,0,1447,-6,0,0 +2013,5,14,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1250,-1,0,1415,0,0,0 +2013,6,5,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1215,-3,0,1529,-32,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2100,47,1,10,34,1,0 +2013,4,23,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-3,0,1805,12,0,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1415,9,0,0 +2013,7,26,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1230,6,0,2110,4,0,0 +2013,7,6,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,755,-1,0,845,-3,0,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-4,0,1441,-21,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,850,-3,0,950,-3,0,0 +2013,8,1,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,-2,0,2243,-10,0,0 +2013,7,3,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1556,-6,0,2159,-25,0,0 +2013,6,18,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1459,13,0,1649,13,0,0 +2013,5,12,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1407,-7,0,1538,-11,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1840,30,1,2105,32,1,0 +2013,4,8,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1614,-2,0,0 +2013,4,4,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,0,0,1255,18,1,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1105,145,1,1335,150,1,0 +2013,8,5,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,3,0,1931,-17,0,0 +2013,9,25,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,955,-12,0,1245,-16,0,0 +2013,10,31,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-3,0,945,22,1,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,48,1,1814,55,1,0 +2013,4,12,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-3,0,745,21,1,0 +2013,9,11,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,4,0,1810,4,0,0 +2013,7,4,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,0,0,728,2,0,0 +2013,8,8,4,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,825,-1,0,1111,1,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,24,1,2305,14,0,0 +2013,10,2,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,829,-21,0,0 +2013,7,19,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-6,0,950,-9,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,-2,0,1528,-17,0,0 +2013,4,21,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-11,0,1139,-7,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,-8,0,453,-14,0,0 +2013,6,11,2,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,2340,8,0,808,-13,0,0 +2013,8,10,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1753,23,1,2354,2,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,826,-3,0,913,-1,0,0 +2013,7,8,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1429,16,1,1554,12,0,0 +2013,7,31,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1335,4,0,1455,-7,0,0 +2013,9,27,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,925,5,0,1450,-8,0,0 +2013,4,28,7,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,810,-6,0,1123,-13,0,0 +2013,4,9,2,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2115,-12,0,2220,-20,0,0 +2013,4,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1257,0,,1700,0,1,1 +2013,5,14,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,-5,0,853,-13,0,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1735,-2,0,2040,-23,0,0 +2013,10,7,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,850,-4,0,1155,7,0,0 +2013,5,26,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,0,0,1355,-5,0,0 +2013,10,16,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-8,0,1738,-2,0,0 +2013,5,8,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,-2,0,1854,2,0,0 +2013,4,5,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,18,1,1517,9,0,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-2,0,1850,39,1,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,8,0,1305,5,0,0 +2013,10,1,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1535,1,0,1735,-11,0,0 +2013,6,22,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,0,0,845,14,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1020,1,0,1301,-12,0,0 +2013,10,21,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1505,9,0,1825,6,0,0 +2013,10,18,5,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1119,54,1,1350,45,1,0 +2013,7,26,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,69,1,1835,64,1,0 +2013,4,15,1,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1950,-1,0,2038,-10,0,0 +2013,10,9,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,740,-3,0,835,-6,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,-5,0,834,-1,0,0 +2013,5,31,5,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,7,0,1045,12,0,0 +2013,8,23,5,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1715,9,0,2000,14,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,615,-1,0,835,4,0,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,835,-2,0,1005,-13,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1019,-8,0,1341,11,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1436,-2,0,1602,-7,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1415,11,0,1620,6,0,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,835,8,0,1000,-12,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1121,-5,0,1243,-15,0,0 +2013,10,15,2,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1520,8,0,1650,3,0,0 +2013,6,17,1,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,910,-8,0,1144,-24,0,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1755,2,0,2110,-9,0,0 +2013,10,1,2,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-3,0,1426,-17,0,0 +2013,9,4,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,-2,0,1518,1,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,11,0,951,3,0,0 +2013,8,29,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,-2,0,540,-24,0,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1605,1,0,1725,-5,0,0 +2013,8,17,6,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1715,-7,0,1855,-21,0,0 +2013,8,1,4,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,11,0,2055,16,1,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,-3,0,2105,-14,0,0 +2013,7,15,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1359,-1,0,1544,-23,0,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,930,17,1,1059,15,1,0 +2013,10,2,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1745,-8,0,1902,-21,0,0 +2013,6,26,3,EV,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1924,-3,0,2048,-17,0,0 +2013,5,15,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,840,28,1,900,15,1,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,735,-5,0,815,-10,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1215,7,0,1933,16,1,0 +2013,9,29,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,-4,0,1135,-7,0,0 +2013,9,12,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1625,2,0,1805,-8,0,0 +2013,7,6,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1810,-6,0,2340,-24,0,0 +2013,8,2,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,625,-1,0,1230,-1,0,0 +2013,5,26,7,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,4,0,1655,3,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,813,-6,0,1032,-9,0,0 +2013,10,24,4,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1155,-6,0,1800,10,0,0 +2013,4,16,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,645,-4,0,800,-9,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,0,0,559,-26,0,0 +2013,6,12,3,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-5,0,2055,-2,0,0 +2013,6,24,1,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1600,-9,0,1705,-4,0,0 +2013,4,8,1,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1040,-10,0,1501,-19,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-4,0,1135,-11,0,0 +2013,5,14,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-7,0,1407,-8,0,0 +2013,8,11,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-10,0,541,2,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,850,0,0,1033,-12,0,0 +2013,4,2,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1745,3,0,1944,6,0,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1505,11,0,1630,9,0,0 +2013,9,26,4,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1059,-7,0,1215,3,0,0 +2013,6,12,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1800,2,0,2030,-15,0,0 +2013,4,28,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,54,1,1510,47,1,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1515,-5,0,1610,-18,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,-1,0,1132,-8,0,0 +2013,7,11,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1305,18,1,1410,0,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1944,26,1,2023,12,0,0 +2013,7,24,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1231,-4,0,1505,1,0,0 +2013,9,7,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,9,0,1525,-1,0,0 +2013,9,18,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2045,13,0,2200,-2,0,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,745,-5,0,1045,10,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,3,0,1105,0,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2017,2,0,2139,7,0,0 +2013,7,16,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2115,41,1,131,36,1,0 +2013,4,14,7,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2110,6,0,2321,9,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,4,0,1945,113,1,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-4,0,850,2,0,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1414,6,0,1532,-3,0,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1545,82,1,1649,71,1,0 +2013,9,16,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1149,-10,0,1358,-32,0,0 +2013,4,6,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-4,0,2020,2,0,0 +2013,10,28,1,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,850,-2,0,1110,15,1,0 +2013,8,2,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,58,1,1715,42,1,0 +2013,9,18,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,-7,0,1515,0,0,0 +2013,4,5,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,715,-2,0,1008,-25,0,0 +2013,6,13,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1745,132,1,2055,148,1,0 +2013,10,21,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,1124,-17,0,0 +2013,7,14,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,-3,0,950,-25,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1732,2,0,1847,-3,0,0 +2013,9,20,5,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,855,0,0,1046,19,1,0 +2013,8,7,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,0,,1211,0,1,1 +2013,4,15,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2130,0,,2255,0,1,1 +2013,4,4,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,800,1,0,955,17,1,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1840,156,1,2115,158,1,0 +2013,9,2,1,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,252,-4,0,649,2,0,0 +2013,9,19,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,41,1,2004,38,1,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,0,0,1030,-12,0,0 +2013,4,12,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,21,1,1840,17,1,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,-4,0,1946,-34,0,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,47,1,1625,37,1,0 +2013,7,28,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-14,0,917,-7,0,0 +2013,4,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1435,-3,0,1805,10,0,0 +2013,5,22,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1010,-5,0,1258,-15,0,0 +2013,4,7,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-9,0,932,-8,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,900,5,0,1345,3,0,0 +2013,10,25,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-2,0,1335,-9,0,0 +2013,10,29,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,-4,0,1453,-6,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,6,0,1150,0,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-2,0,1108,-4,0,0 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1350,-2,0,1520,4,0,0 +2013,8,7,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,514,-4,0,635,-13,0,0 +2013,5,4,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-8,0,1429,-13,0,0 +2013,7,13,6,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,13,0,1003,16,1,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,6,0,1825,5,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,820,8,0,1340,1,0,0 +2013,5,17,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1552,-17,0,0 +2013,10,11,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,735,-18,0,0 +2013,8,3,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1307,-2,0,1541,-15,0,0 +2013,8,17,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1640,3,0,1810,-1,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,-8,0,1036,-12,0,0 +2013,4,5,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,2250,-3,0,427,-20,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1955,-1,0,2115,3,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1450,15,1,1815,12,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1905,-7,0,2157,61,1,0 +2013,10,28,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,39,1,1240,31,1,0 +2013,8,22,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,167,1,2300,157,1,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-4,0,2159,-18,0,0 +2013,7,23,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,0,0,848,-3,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1859,1,0,2020,-13,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1345,0,0,1418,-2,0,0 +2013,8,19,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-7,0,1556,-11,0,0 +2013,9,28,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1133,-9,0,1826,-18,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1805,2,0,2325,8,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,2,0,1445,5,0,0 +2013,7,13,6,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,755,-26,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1430,46,1,1840,41,1,0 +2013,5,7,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,-4,0,1637,-1,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1458,38,1,1625,39,1,0 +2013,7,18,4,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,-8,0,951,-9,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,33,1,1135,20,1,0 +2013,9,8,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,925,-1,0,1102,-16,0,0 +2013,10,9,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1545,7,0,1700,12,0,0 +2013,6,29,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-4,0,903,-29,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1959,11,0,2207,-14,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,955,0,0,1152,0,0,0 +2013,9,18,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-3,0,1053,-2,0,0 +2013,9,27,5,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1229,7,0,1326,31,1,0 +2013,7,14,7,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,701,2,0,930,-10,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2248,-6,0,710,-37,0,0 +2013,7,17,3,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,206,1,2120,219,1,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1240,34,1,1430,19,1,0 +2013,7,16,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2010,-2,0,2230,14,0,0 +2013,7,1,1,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1120,-8,0,1418,-28,0,0 +2013,10,14,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,12,0,1657,0,0,0 +2013,7,18,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,635,-7,0,0 +2013,7,18,4,MQ,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1910,4,0,1955,14,0,0 +2013,8,11,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,505,-6,0,752,-11,0,0 +2013,4,21,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,-2,0,1508,-14,0,0 +2013,5,11,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-9,0,905,-1,0,0 +2013,8,23,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,1000,-15,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1800,146,1,2030,145,1,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,31,1,1250,16,1,0 +2013,6,16,7,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,0,0,1420,-3,0,0 +2013,8,8,4,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1855,18,1,2055,21,1,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,0,0,1810,17,1,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,843,-4,0,946,4,0,0 +2013,4,22,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1510,-5,0,1730,21,1,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1600,-2,0,1710,-3,0,0 +2013,9,26,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,650,2,0,810,-3,0,0 +2013,10,6,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,82,1,1056,78,1,0 +2013,8,3,6,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-5,0,1213,-15,0,0 +2013,5,23,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1153,0,,1420,0,1,1 +2013,7,27,6,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1555,23,1,2155,7,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1614,11,0,1821,28,1,0 +2013,5,16,4,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,2,0,1625,6,0,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,2000,33,1,2135,114,1,0 +2013,8,2,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,620,-3,0,755,-13,0,0 +2013,4,24,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,4,0,1855,3,0,0 +2013,5,7,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-1,0,955,-19,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1855,-2,0,2015,3,0,0 +2013,5,26,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1058,-9,0,0 +2013,8,12,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1045,-3,0,1259,-7,0,0 +2013,10,31,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1704,1,0,1725,2,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1047,-6,0,1419,-24,0,0 +2013,6,5,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1713,-10,0,2137,-9,0,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1154,33,1,1736,9,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,820,-5,0,1155,-8,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,840,-1,0,1010,-11,0,0 +2013,4,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,714,1,0,924,-1,0,0 +2013,7,13,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1802,23,1,1949,36,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1445,5,0,1550,-3,0,0 +2013,4,27,6,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,-5,0,1853,15,1,0 +2013,6,28,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1539,55,1,1640,172,1,0 +2013,8,18,7,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,13,0,1600,-3,0,0 +2013,7,1,1,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,-2,0,1447,-12,0,0 +2013,10,31,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-7,0,811,-11,0,0 +2013,10,15,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1110,0,0,1417,-32,0,0 +2013,5,6,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-8,0,1005,-18,0,0 +2013,8,4,7,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1925,12,0,2033,7,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,834,1,0,1003,-5,0,0 +2013,9,24,2,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1005,-6,0,1455,-40,0,0 +2013,10,25,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1855,16,1,2225,10,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1750,-5,0,1837,-7,0,0 +2013,10,29,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1135,-7,0,2005,-4,0,0 +2013,5,3,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,6,0,1815,11,0,0 +2013,10,22,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,755,-6,0,1008,-11,0,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1140,3,0,1250,-1,0,0 +2013,5,10,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-10,0,1058,-4,0,0 +2013,10,15,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,-2,0,2130,-5,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1800,8,0,1913,5,0,0 +2013,9,25,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1405,-7,0,1715,-11,0,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1015,-5,0,1124,-11,0,0 +2013,7,3,3,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,-3,0,725,-8,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1320,-2,0,1625,-2,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-5,0,858,-18,0,0 +2013,7,7,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1115,106,1,1406,109,1,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,815,-5,0,1125,11,0,0 +2013,7,29,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,804,-7,0,945,14,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1727,1,0,1740,-14,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2135,3,0,2230,6,0,0 +2013,6,2,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-8,0,2200,-11,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2010,81,1,2340,80,1,0 +2013,8,20,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-3,0,2115,-3,0,0 +2013,9,3,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-7,0,1107,-5,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1805,119,1,2114,83,1,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1911,-4,0,2047,-25,0,0 +2013,5,31,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-3,0,635,2,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,-5,0,2340,-21,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,-1,0,2025,-15,0,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,127,1,2211,117,1,0 +2013,10,24,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,-12,0,1840,1,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1615,19,1,1730,3,0,0 +2013,7,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1501,10,0,1603,7,0,0 +2013,4,25,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,640,-3,0,811,-12,0,0 +2013,4,30,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1925,51,1,2219,31,1,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1335,13,0,1620,25,1,0 +2013,6,19,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-1,0,1412,16,1,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1415,0,0,1635,-6,0,0 +2013,9,20,5,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1330,-4,0,2136,-8,0,0 +2013,10,2,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,910,-2,0,1010,-4,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1515,39,1,1640,31,1,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1815,41,1,2135,41,1,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-5,0,2315,-13,0,0 +2013,10,31,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1350,19,1,1450,14,0,0 +2013,4,1,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,820,13,0,957,7,0,0 +2013,8,16,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,8,0,1228,11,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,2004,-4,0,2113,-12,0,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-5,0,2230,46,1,0 +2013,10,31,4,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,-6,0,2305,-16,0,0 +2013,4,10,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1710,53,1,2005,110,1,0 +2013,6,24,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,103,1,2019,96,1,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2200,44,1,2355,28,1,0 +2013,9,20,5,EV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,2205,31,1,2321,48,1,0 +2013,7,9,2,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,90,1,1555,89,1,0 +2013,5,5,7,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-7,0,1137,-11,0,0 +2013,6,24,1,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-8,0,758,-20,0,0 +2013,4,29,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-3,0,1147,-6,0,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1650,14,0,1810,15,1,0 +2013,8,24,6,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1515,2,0,2105,7,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1835,41,1,1940,52,1,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2114,19,1,2355,4,0,0 +2013,10,14,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,2,0,2100,8,0,0 +2013,7,17,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1935,-4,0,2135,-13,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2125,3,0,2350,-5,0,0 +2013,10,6,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1006,-7,0,1630,-7,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2030,6,0,2235,-1,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,610,-3,0,820,-12,0,0 +2013,4,6,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1535,-15,0,0 +2013,10,18,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2315,13,0,750,-19,0,0 +2013,8,21,3,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,2,0,809,-8,0,0 +2013,8,25,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,-6,0,1303,-8,0,0 +2013,8,26,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1800,-7,0,1950,-27,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,715,-5,0,847,5,0,0 +2013,6,6,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1224,-7,0,1340,-24,0,0 +2013,10,8,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,830,-4,0,1018,-12,0,0 +2013,9,18,3,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,17,1,1826,-3,0,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,945,20,1,1301,17,1,0 +2013,10,15,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1430,-9,0,1555,-9,0,0 +2013,8,8,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1340,3,0,1700,0,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,926,-3,0,1119,-15,0,0 +2013,4,5,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,705,-13,0,850,-11,0,0 +2013,8,20,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-6,0,1140,-17,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,-2,0,1735,15,1,0 +2013,9,16,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-7,0,725,-19,0,0 +2013,7,16,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,610,-5,0,625,-5,0,0 +2013,9,29,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,820,-4,0,1117,-3,0,0 +2013,8,8,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,29,1,2159,2,0,0 +2013,6,18,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,0,,1605,0,1,1 +2013,4,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-3,0,1413,-16,0,0 +2013,5,16,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1857,-1,0,2048,-17,0,0 +2013,4,1,1,UA,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1735,-7,0,1916,-20,0,0 +2013,5,24,5,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1715,0,0,1905,-11,0,0 +2013,7,11,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,36,1,1914,43,1,0 +2013,5,16,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1215,-3,0,1451,28,1,0 +2013,6,27,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1536,-6,0,1647,-19,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-3,0,2350,-4,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1340,-3,0,1615,-18,0,0 +2013,10,27,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1050,35,1,1225,21,1,0 +2013,4,12,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1651,-2,0,1746,-8,0,0 +2013,9,12,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-2,0,822,-24,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1621,2,0,1746,-4,0,0 +2013,8,14,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2015,8,0,2215,10,0,0 +2013,4,13,6,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-11,0,2020,-8,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1045,4,0,1155,1,0,0 +2013,9,5,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-4,0,1313,-2,0,0 +2013,6,1,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,11,0,1050,3,0,0 +2013,5,19,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1640,0,0,1745,-10,0,0 +2013,7,14,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1415,-9,0,1638,-1,0,0 +2013,6,21,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1535,-8,0,1725,-14,0,0 +2013,10,14,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2200,0,0,2255,0,0,0 +2013,9,24,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,710,-7,0,842,-6,0,0 +2013,10,7,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,-1,0,2001,1,0,0 +2013,9,7,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-4,0,1558,-11,0,0 +2013,10,20,7,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1829,89,1,1939,95,1,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,14,0,1510,-1,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-2,0,1554,-11,0,0 +2013,7,9,2,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,10,0,1626,9,0,0 +2013,7,14,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,-5,0,725,-20,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2120,9,0,2240,4,0,0 +2013,10,7,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1455,-4,0,1615,-7,0,0 +2013,6,13,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,79,1,2111,79,1,0 +2013,7,30,2,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,755,0,0,928,-2,0,0 +2013,7,21,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,828,-6,0,1113,-19,0,0 +2013,5,6,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1710,-3,0,1745,-12,0,0 +2013,5,22,3,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,815,4,0,1645,0,0,0 +2013,8,8,4,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,10,0,2103,40,1,0 +2013,10,29,2,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-5,0,858,-10,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1945,63,1,1955,62,1,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,51,1,2213,90,1,0 +2013,9,3,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,1,0,1920,1,0,0 +2013,4,4,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1114,7,0,1230,-12,0,0 +2013,5,11,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1815,82,1,1935,68,1,0 +2013,6,18,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,157,1,530,158,1,0 +2013,9,8,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1605,35,1,1725,26,1,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,7,0,2215,-1,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,80,1,2200,72,1,0 +2013,10,20,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1842,14,0,2044,11,0,0 +2013,6,30,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-8,0,807,-4,0,0 +2013,5,10,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,700,-16,0,827,-7,0,0 +2013,7,13,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-3,0,1026,-1,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1505,-3,0,1645,-18,0,0 +2013,7,24,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-1,0,815,-7,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1630,-1,0,1830,-18,0,0 +2013,6,2,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1358,-6,0,1423,-12,0,0 +2013,7,8,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1745,0,0,2010,-4,0,0 +2013,7,13,6,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,845,-3,0,1125,-4,0,0 +2013,4,9,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-3,0,1439,-6,0,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,1,0,2253,-8,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1200,7,0,1640,30,1,0 +2013,4,30,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1415,22,1,1545,17,1,0 +2013,6,21,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1819,-3,0,0 +2013,10,21,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1035,43,1,1631,9,0,0 +2013,6,10,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,-1,0,1135,18,1,0 +2013,4,15,1,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,-5,0,1835,-3,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1720,41,1,1856,28,1,0 +2013,7,16,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,710,-26,0,0 +2013,8,15,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,910,5,0,1035,1,0,0 +2013,9,13,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,-9,0,2035,-8,0,0 +2013,6,16,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-4,0,1006,-19,0,0 +2013,10,12,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,915,-5,0,1035,-11,0,0 +2013,8,8,4,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2347,44,1,544,52,1,0 +2013,8,23,5,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1252,65,1,1813,56,1,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,900,13,0,1015,19,1,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-7,0,1115,-13,0,0 +2013,4,5,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1725,2,0,1828,-5,0,0 +2013,8,12,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1235,-5,0,1345,-26,0,0 +2013,8,21,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-6,0,1843,-22,0,0 +2013,10,31,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1731,-7,0,1820,0,0,0 +2013,5,11,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1110,-10,0,1635,-10,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1130,42,1,1240,39,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1053,32,1,1205,22,1,0 +2013,6,6,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,-1,0,2025,-25,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,940,10,0,1310,2,0,0 +2013,8,6,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-3,0,659,4,0,0 +2013,4,17,3,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1455,-10,0,1632,-17,0,0 +2013,6,28,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1830,4,0,1935,7,0,0 +2013,7,24,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,0,0,1800,9,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,4,0,2006,-7,0,0 +2013,7,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1735,36,1,1830,50,1,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,9,0,1925,10,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,920,-3,0,1201,-16,0,0 +2013,7,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,600,-5,0,722,-21,0,0 +2013,7,25,4,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-7,0,1040,-13,0,0 +2013,5,16,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1843,3,0,2138,-10,0,0 +2013,5,14,2,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,600,-6,0,709,-10,0,0 +2013,5,18,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-3,0,740,-12,0,0 +2013,5,19,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,26,1,1735,17,1,0 +2013,7,27,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1623,56,1,1741,46,1,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1310,5,0,1640,-4,0,0 +2013,8,27,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,0,0,1228,-10,0,0 +2013,10,29,2,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1330,-4,0,1420,-2,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1520,80,1,1639,75,1,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1750,2,0,2005,-7,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,-5,0,1920,-2,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2020,22,1,2225,17,1,0 +2013,7,7,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-1,0,1006,-14,0,0 +2013,6,19,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,615,-7,0,839,-31,0,0 +2013,9,22,7,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-5,0,1845,-2,0,0 +2013,7,26,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,84,1,2106,78,1,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,740,-2,0,1255,-15,0,0 +2013,10,7,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,715,-11,0,923,5,0,0 +2013,10,14,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1530,-2,0,1805,-16,0,0 +2013,9,12,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-2,0,945,-8,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,707,-2,0,825,-10,0,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1342,-4,0,1649,-8,0,0 +2013,9,13,5,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1055,15,1,1908,19,1,0 +2013,10,29,2,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,805,-5,0,1045,0,0,0 +2013,6,15,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-5,0,1513,-13,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,-1,0,2050,4,0,0 +2013,7,31,3,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,755,9,0,928,20,1,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,52,1,1250,45,1,0 +2013,10,18,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1235,32,1,1400,26,1,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,625,-2,0,830,-5,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,51,1,1104,51,1,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,-3,0,1725,-12,0,0 +2013,7,5,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-11,0,1905,-3,0,0 +2013,7,21,7,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,0,0,1104,-14,0,0 +2013,8,7,3,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1744,-4,0,2000,-5,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,3,0,2056,-4,0,0 +2013,8,5,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1117,-8,0,1335,8,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,825,8,0,950,11,0,0 +2013,5,10,5,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1805,49,1,1846,59,1,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-1,0,1045,-21,0,0 +2013,10,12,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,756,-3,0,935,-18,0,0 +2013,4,14,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,2,0,953,8,0,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1405,15,1,1520,6,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,4,0,1325,3,0,0 +2013,4,2,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1835,4,0,2054,-13,0,0 +2013,4,15,1,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,620,10,0,940,-13,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1650,4,0,1805,-4,0,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1335,14,0,1550,13,0,0 +2013,10,21,1,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,700,0,0,829,11,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,836,-9,0,1415,-1,0,0 +2013,6,28,5,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1200,24,1,1624,24,1,0 +2013,7,13,6,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,0,,2025,0,1,1 +2013,6,16,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2105,0,0,2250,-2,0,0 +2013,7,27,6,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,-2,0,1325,4,0,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1620,0,0,1825,-3,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1600,71,1,1719,99,1,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-5,0,1000,9,0,0 +2013,8,21,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,0,0,1940,-18,0,0 +2013,4,28,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-5,0,1119,-15,0,0 +2013,10,26,6,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1301,-11,0,1515,0,0,0 +2013,10,21,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,16,1,1815,4,0,0 +2013,6,1,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,0,0,2050,-6,0,0 +2013,9,3,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-6,0,1915,-12,0,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,8,0,1950,7,0,0 +2013,5,3,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,-9,0,1403,-6,0,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1320,144,1,1405,140,1,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,0,,2145,0,1,1 +2013,8,6,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-4,0,1250,-12,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-1,0,1256,-8,0,0 +2013,10,5,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-10,0,720,-24,0,0 +2013,9,19,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1104,-19,0,0 +2013,5,19,7,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1035,0,0,1355,-9,0,0 +2013,9,21,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,858,25,1,948,31,1,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1605,4,0,2125,21,1,0 +2013,7,21,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,2250,-1,0,615,-5,0,0 +2013,9,16,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1625,30,1,1645,41,1,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-6,0,1945,0,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2040,27,1,25,36,1,0 +2013,4,4,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,0,0,1124,4,0,0 +2013,4,12,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-6,0,1732,-30,0,0 +2013,4,14,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1958,-13,0,2240,-14,0,0 +2013,5,8,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-7,0,1435,-20,0,0 +2013,10,12,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,532,1,0,739,6,0,0 +2013,6,15,6,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1836,-7,0,2145,46,1,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,920,-7,0,1340,-18,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1234,9,0,1830,13,0,0 +2013,4,9,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,2025,-3,0,2235,-11,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1055,1,0,1540,-10,0,0 +2013,6,3,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1550,-4,0,1748,-7,0,0 +2013,8,25,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,925,0,0,1450,-8,0,0 +2013,8,9,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,24,1,2203,15,1,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-7,0,1127,-36,0,0 +2013,8,1,4,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-6,0,910,-22,0,0 +2013,8,18,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-10,0,1119,5,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,-2,0,1141,-17,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1745,-2,0,2029,5,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2140,5,0,2300,-1,0,0 +2013,9,10,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1620,-4,0,1811,-20,0,0 +2013,6,26,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1340,510,1,1456,514,1,0 +2013,9,22,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1630,-1,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,939,-8,0,1805,21,1,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2000,1,0,2159,19,1,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2000,10,0,20,2,0,0 +2013,10,17,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10423,Austin - Bergstrom International,Austin,TX,840,-4,0,1050,15,1,0 +2013,4,16,2,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,835,-10,0,1050,-5,0,0 +2013,5,15,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-4,0,800,6,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1840,27,1,2055,16,1,0 +2013,9,25,3,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,700,1,0,950,-10,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,99,1,2210,99,1,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,820,-1,0,1155,-18,0,0 +2013,6,15,6,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,140,1,1701,126,1,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1525,8,0,1852,-10,0,0 +2013,7,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,13,0,130,6,0,0 +2013,6,2,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2255,43,1,2359,26,1,0 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,108,1,2248,149,1,0 +2013,9,8,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-5,0,816,-3,0,0 +2013,4,12,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-1,0,922,2,0,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,2,0,1155,4,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-3,0,2250,-15,0,0 +2013,6,20,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,836,-4,0,914,-8,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,-5,0,1816,-39,0,0 +2013,4,24,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1325,21,1,1410,27,1,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2235,3,0,2355,3,0,0 +2013,6,13,4,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1120,131,1,1515,101,1,0 +2013,5,11,6,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1255,2,0,1620,-18,0,0 +2013,5,15,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-8,0,850,3,0,0 +2013,4,25,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,3,0,2055,1,0,0 +2013,5,15,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1909,-9,0,2154,-13,0,0 +2013,9,7,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1123,0,0,1503,-37,0,0 +2013,9,26,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,540,-6,0,1145,-34,0,0 +2013,5,8,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,-2,0,2045,3,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1010,18,1,1611,-9,0,0 +2013,7,27,6,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-7,0,1235,-6,0,0 +2013,5,21,2,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,923,-2,0,1041,12,0,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1015,162,1,1157,158,1,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,-4,0,2357,-13,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,5,0,2004,1,0,0 +2013,7,12,5,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,943,-13,0,1416,-22,0,0 +2013,10,3,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1540,7,0,1715,7,0,0 +2013,9,26,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,600,-13,0,708,-14,0,0 +2013,9,27,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1632,10,0,1734,12,0,0 +2013,6,1,6,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,115,-3,0,830,-14,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,2,0,2149,-25,0,0 +2013,8,23,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,36,1,1750,29,1,0 +2013,7,29,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-5,0,1022,-11,0,0 +2013,6,21,5,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,-2,0,935,-1,0,0 +2013,7,24,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,957,9,0,0 +2013,9,1,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,11,0,1607,-7,0,0 +2013,6,25,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,-5,0,1500,8,0,0 +2013,6,2,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1100,24,1,1155,25,1,0 +2013,6,4,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1935,16,1,2255,-12,0,0 +2013,10,21,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1825,0,0,2128,2,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,940,12,0,1310,1,0,0 +2013,4,6,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1220,-2,0,1505,-8,0,0 +2013,7,14,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,10,0,2121,21,1,0 +2013,10,31,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1935,7,0,2234,-15,0,0 +2013,4,6,6,EV,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-4,0,1452,-3,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1015,17,1,1150,3,0,0 +2013,6,9,7,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-5,0,1017,-14,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1510,18,1,1640,9,0,0 +2013,4,10,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,7,0,2137,-7,0,0 +2013,8,29,4,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1015,20,1,1200,5,0,0 +2013,8,26,1,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2045,110,1,449,96,1,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2040,15,1,25,12,0,0 +2013,5,19,7,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,2,0,1350,-7,0,0 +2013,7,9,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1430,28,1,1810,40,1,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2150,56,1,2245,47,1,0 +2013,4,13,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,55,-2,0,532,-6,0,0 +2013,7,10,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,-7,0,842,-16,0,0 +2013,8,6,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1235,-3,0,1440,4,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,0,0,1115,1,0,0 +2013,8,26,1,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,0,0,1350,-31,0,0 +2013,9,26,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-8,0,1227,-16,0,0 +2013,5,26,7,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2326,3,0,547,-13,0,0 +2013,9,27,5,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,856,-13,0,0 +2013,4,2,2,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-8,0,1912,-2,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1125,31,1,1635,29,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2150,48,1,2339,35,1,0 +2013,8,17,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,935,-13,0,0 +2013,9,3,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1020,10,0,1202,-12,0,0 +2013,6,18,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,0,0,2259,-6,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,16,1,2009,15,1,0 +2013,5,18,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,535,-8,0,1021,-12,0,0 +2013,4,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1216,2,0,1309,-1,0,0 +2013,5,4,6,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1533,-2,0,1815,25,1,0 +2013,10,21,1,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,700,-6,0,910,-16,0,0 +2013,5,6,1,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,730,6,0,1029,21,1,0 +2013,5,16,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-5,0,715,-2,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,-5,0,920,-3,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,161,1,1508,150,1,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1735,0,0,2325,-24,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2110,36,1,2327,26,1,0 +2013,10,16,3,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-5,0,1029,-6,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1041,12,0,1313,-13,0,0 +2013,8,29,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1810,16,1,1940,20,1,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-7,0,1252,-19,0,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1615,-1,0,1740,-6,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,954,-2,0,1134,-16,0,0 +2013,10,8,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,905,-5,0,1129,-16,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,-1,0,2329,-5,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-2,0,910,-13,0,0 +2013,5,6,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,-10,0,943,-17,0,0 +2013,8,23,5,OO,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1214,-2,0,1315,0,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2155,0,,2300,0,1,1 +2013,8,2,5,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-4,0,1526,10,0,0 +2013,6,9,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,30,-6,0,810,-4,0,0 +2013,6,10,1,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,14,0,908,-4,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,0,0,946,-13,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1840,-2,0,2005,-11,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,851,-4,0,1621,-18,0,0 +2013,7,19,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,-6,0,1425,-2,0,0 +2013,7,12,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-1,0,955,-8,0,0 +2013,4,2,2,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,620,0,0,755,-11,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-7,0,1946,-11,0,0 +2013,7,26,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1500,-2,0,2312,-7,0,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-2,0,1848,-13,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1120,-4,0,1309,-9,0,0 +2013,7,1,1,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,700,-5,0,930,2,0,0 +2013,5,16,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1005,-1,0,1330,-12,0,0 +2013,9,14,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,-12,0,1728,-16,0,0 +2013,9,5,4,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1850,-2,0,2019,-13,0,0 +2013,5,28,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,830,-6,0,1036,-7,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,734,-4,0,925,-11,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1000,2,0,1321,-14,0,0 +2013,6,2,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1929,175,1,2054,169,1,0 +2013,4,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-5,0,2115,1,0,0 +2013,7,26,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,725,-32,0,0 +2013,4,19,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,35,1,2153,25,1,0 +2013,4,29,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,935,-4,0,1035,-5,0,0 +2013,7,22,1,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,845,228,1,1105,226,1,0 +2013,9,16,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1105,12,0,1420,4,0,0 +2013,9,27,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1410,-5,0,1645,-24,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,-4,0,2356,7,0,0 +2013,4,1,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2210,3,0,2335,3,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1630,-4,0,1810,-2,0,0 +2013,4,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1733,52,1,1833,50,1,0 +2013,5,1,3,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,2050,24,1,2335,23,1,0 +2013,9,21,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,847,-1,0,1129,-32,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2110,15,1,2202,15,1,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,15016,Lambert-St. Louis International,St. Louis,MO,1315,0,0,1840,-3,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-3,0,1326,-2,0,0 +2013,7,10,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,-3,0,1905,14,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1642,-1,0,1925,-12,0,0 +2013,6,14,5,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1359,-2,0,1556,-5,0,0 +2013,9,8,7,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-4,0,1910,-6,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,940,9,0,1420,-5,0,0 +2013,4,7,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,-10,0,2051,-15,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,-3,0,1148,-8,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1525,12,0,1710,14,0,0 +2013,9,6,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-4,0,1845,-25,0,0 +2013,8,9,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1107,5,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1443,19,1,1820,5,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1820,-3,0,2230,-16,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1255,-4,0,1452,-42,0,0 +2013,7,11,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,710,-12,0,0 +2013,6,17,1,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,12,0,2215,10,0,0 +2013,6,25,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-2,0,733,-10,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1905,-1,0,2120,1,0,0 +2013,9,12,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,14,0,2020,9,0,0 +2013,10,26,6,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,-8,0,1820,-19,0,0 +2013,9,27,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1835,-2,0,2035,-25,0,0 +2013,9,26,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,843,-6,0,1019,-7,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,845,47,1,1110,39,1,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,8,0,1435,16,1,0 +2013,7,30,2,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,-2,0,1925,-9,0,0 +2013,6,20,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,505,-6,0,751,-2,0,0 +2013,10,21,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-9,0,2245,-16,0,0 +2013,6,13,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,81,1,2125,75,1,0 +2013,6,19,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1000,-2,0,1225,-12,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,905,-1,0,1020,-9,0,0 +2013,10,12,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-8,0,858,-34,0,0 +2013,9,24,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,-7,0,1235,-17,0,0 +2013,8,18,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2016,-7,0,2259,-32,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,925,-2,0,1020,-10,0,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1655,6,0,1940,-1,0,0 +2013,7,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-5,0,1845,-11,0,0 +2013,5,21,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,705,-3,0,1035,6,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,845,13,0,1020,8,0,0 +2013,8,15,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,7,0,1353,11,0,0 +2013,5,15,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-6,0,2312,-10,0,0 +2013,10,15,2,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1835,5,0,2154,-7,0,0 +2013,4,23,2,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-9,0,1235,-10,0,0 +2013,6,9,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,659,-7,0,908,-15,0,0 +2013,8,25,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1535,19,1,0 +2013,6,9,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1210,14,0,1355,35,1,0 +2013,5,17,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1406,-12,0,0 +2013,10,26,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1630,1,0,1805,-8,0,0 +2013,8,26,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,69,1,1615,59,1,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1335,0,0,1440,5,0,0 +2013,8,14,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-2,0,940,6,0,0 +2013,5,6,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,-4,0,2054,-12,0,0 +2013,9,23,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1600,-4,0,1805,-10,0,0 +2013,10,16,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1135,-2,0,1421,1,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,710,1,0,1209,1,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,4,0,1109,8,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2025,83,1,2150,78,1,0 +2013,7,31,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,-9,0,2233,-26,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2304,5,0,27,-3,0,0 +2013,9,27,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1500,0,0,1815,-17,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,-1,0,1320,-8,0,0 +2013,10,28,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1053,28,1,1416,19,1,0 +2013,5,17,5,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,1800,-1,0,2039,0,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,69,1,1825,65,1,0 +2013,9,16,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,705,1,0,940,1,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-5,0,1002,-14,0,0 +2013,4,2,2,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-3,0,1612,-9,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1840,29,1,2045,23,1,0 +2013,5,12,7,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1557,1,0,1921,-4,0,0 +2013,9,14,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-1,0,855,-19,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1314,-3,0,1439,6,0,0 +2013,4,26,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1535,13,0,1655,4,0,0 +2013,6,18,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,68,1,2045,68,1,0 +2013,8,28,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-3,0,1746,-2,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,908,-7,0,1346,-26,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1930,62,1,2110,48,1,0 +2013,8,21,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1040,-4,0,1200,-7,0,0 +2013,4,27,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,920,27,1,1035,21,1,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,-3,0,1116,-13,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-4,0,1212,-6,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1255,25,1,1545,14,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-5,0,2259,-26,0,0 +2013,7,29,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,449,7,0,744,0,0,0 +2013,9,1,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,25,1,1649,12,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,-2,0,2023,-15,0,0 +2013,5,27,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,1,0,1020,-7,0,0 +2013,10,30,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,845,-6,0,905,6,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,-7,0,835,-15,0,0 +2013,5,1,3,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-3,0,1135,-16,0,0 +2013,4,20,6,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1729,6,0,1920,12,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1620,3,0,2105,8,0,0 +2013,10,28,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,0,0,802,7,0,0 +2013,5,27,1,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1900,9,0,2210,1,0,0 +2013,9,18,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,1705,-3,0,2304,-20,0,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1745,-2,0,1943,-3,0,0 +2013,8,14,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-5,0,2029,-13,0,0 +2013,7,25,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,1,0,1431,6,0,0 +2013,6,14,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,0,0,1820,-17,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1123,-6,0,1331,-13,0,0 +2013,9,30,1,AA,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1800,-1,0,1935,-15,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1541,-5,0,1911,-12,0,0 +2013,10,10,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-1,0,920,17,1,0 +2013,7,29,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1600,0,0,2111,6,0,0 +2013,10,11,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,725,-8,0,820,-5,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,1,0,1240,-12,0,0 +2013,5,11,6,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1825,9,0,2146,-29,0,0 +2013,10,22,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,-4,0,712,-14,0,0 +2013,7,2,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,801,2,0,0 +2013,8,22,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2105,14,0,2340,6,0,0 +2013,9,7,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1230,6,0,1430,1,0,0 +2013,6,14,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,655,-1,0,850,-15,0,0 +2013,7,13,6,OO,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1020,-4,0,1346,-10,0,0 +2013,4,6,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-3,0,1920,-11,0,0 +2013,8,1,4,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,1,0,1225,6,0,0 +2013,9,10,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1255,7,0,1845,24,1,0 +2013,8,6,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-6,0,922,-5,0,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,33,1,2215,26,1,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,830,11,0,935,4,0,0 +2013,5,11,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,6,0,1416,16,1,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1105,4,0,1340,-1,0,0 +2013,10,23,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-5,0,2351,-1,0,0 +2013,4,18,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1855,-15,0,2153,-16,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1018,37,1,1249,10,0,0 +2013,7,13,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,15,1,1552,30,1,0 +2013,8,6,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,56,1,1930,37,1,0 +2013,9,16,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,5,0,1022,-14,0,0 +2013,7,29,1,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1845,57,1,2140,52,1,0 +2013,4,2,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-1,0,1147,-7,0,0 +2013,7,2,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-1,0,1303,3,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-3,0,1013,-7,0,0 +2013,9,29,7,DL,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-6,0,1017,-32,0,0 +2013,6,22,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1728,13,0,1851,12,0,0 +2013,10,25,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1815,0,0,2021,4,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1805,24,1,1900,18,1,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,23,1,1757,11,0,0 +2013,5,9,4,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,838,5,0,1002,-8,0,0 +2013,9,18,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1605,-1,0,1755,-30,0,0 +2013,5,4,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-3,0,1410,-7,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2030,6,0,2235,15,1,0 +2013,4,21,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1545,-1,0,2104,-5,0,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2056,-7,0,2202,-2,0,0 +2013,4,1,1,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1740,-3,0,1925,-5,0,0 +2013,5,7,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,0,0,1755,-8,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1840,23,1,1950,28,1,0 +2013,9,19,4,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1209,-9,0,1749,-8,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,11,0,1115,1,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,3,0,2340,18,1,0 +2013,4,25,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-3,0,1735,-13,0,0 +2013,7,17,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1515,-5,0,1608,-22,0,0 +2013,7,11,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-8,0,1115,-15,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2112,-2,0,14,-6,0,0 +2013,8,16,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1650,-6,0,1902,2,0,0 +2013,9,3,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-4,0,1200,-12,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,-5,0,1915,-10,0,0 +2013,5,11,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,38,1,2000,4,0,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1325,0,0,1658,1,0,0 +2013,9,6,5,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,3,0,1910,9,0,0 +2013,9,10,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1545,11,0,1709,19,1,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1855,26,1,2020,21,1,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1450,-3,0,1603,-9,0,0 +2013,8,30,5,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,830,-15,0,1030,-11,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1150,8,0,1625,-21,0,0 +2013,5,14,2,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,915,103,1,1118,73,1,0 +2013,5,19,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2149,46,1,143,46,1,0 +2013,6,4,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-4,0,1015,-16,0,0 +2013,6,14,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1540,20,1,1910,21,1,0 +2013,8,5,1,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,745,-1,0,1614,-27,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1310,17,1,1655,13,0,0 +2013,4,3,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1810,1,0,1833,6,0,0 +2013,5,9,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-13,0,905,4,0,0 +2013,10,28,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1130,-13,0,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1605,20,1,1715,13,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2120,-1,0,2220,-7,0,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,0,0,2135,14,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,-4,0,1234,-2,0,0 +2013,5,28,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-3,0,1130,-3,0,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1800,25,1,2028,21,1,0 +2013,4,17,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,-1,0,1301,18,1,0 +2013,8,10,6,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,1,0,1920,4,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1515,-5,0,1905,-10,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1928,-3,0,2048,-6,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,2,0,1415,-5,0,0 +2013,8,31,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,835,-7,0,951,-14,0,0 +2013,7,31,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1450,1,0,1545,1,0,0 +2013,5,9,4,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2228,-4,0,616,-11,0,0 +2013,10,13,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,840,-5,0,1135,-7,0,0 +2013,9,28,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,635,-9,0,1330,-2,0,0 +2013,6,17,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-1,0,900,-8,0,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,23,1,1814,73,1,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1548,0,0,2359,-18,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,-4,0,1550,-18,0,0 +2013,7,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,845,-6,0,1230,-14,0,0 +2013,9,30,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1918,-5,0,2110,-11,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,-2,0,1400,-13,0,0 +2013,7,14,7,AA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1735,-8,0,645,-17,0,0 +2013,9,30,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1728,11,0,1928,16,1,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,76,1,1815,100,1,0 +2013,9,13,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,50,1,1111,36,1,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,11,0,1440,9,0,0 +2013,7,23,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1330,16,1,1340,31,1,0 +2013,9,15,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,-4,0,2353,-12,0,0 +2013,6,19,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,-2,0,1940,-10,0,0 +2013,9,29,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,16,1,2110,18,1,0 +2013,8,9,5,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,96,1,2142,86,1,0 +2013,6,8,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-2,0,1735,-20,0,0 +2013,10,28,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1849,-1,0,1912,7,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2000,21,1,2215,9,0,0 +2013,5,29,3,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1007,-8,0,1450,-18,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,640,-2,0,950,-28,0,0 +2013,4,25,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-5,0,1423,7,0,0 +2013,8,13,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1920,47,1,2235,30,1,0 +2013,10,20,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1235,1,0,1400,1,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1155,4,0,1330,-4,0,0 +2013,4,1,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,845,-4,0,1010,-3,0,0 +2013,9,27,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1315,-1,0,1524,-8,0,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,820,18,1,935,9,0,0 +2013,9,6,5,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1045,0,0,1325,-5,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-2,0,1605,-17,0,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2115,9,0,2345,6,0,0 +2013,4,7,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,14,0,1045,2,0,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,955,27,1,1305,29,1,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1426,-3,0,1729,-17,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,0,0,1545,2,0,0 +2013,6,18,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,545,0,,709,0,1,1 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1133,8,0,1304,-14,0,0 +2013,4,5,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,725,-5,0,833,-13,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1535,-4,0,1737,2,0,0 +2013,4,4,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1650,13,0,1725,7,0,0 +2013,4,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-6,0,1546,-19,0,0 +2013,9,16,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,757,-9,0,858,-24,0,0 +2013,5,20,1,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-11,0,749,-8,0,0 +2013,6,27,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1945,45,1,2105,52,1,0 +2013,10,16,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-2,0,1929,1,0,0 +2013,8,30,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,930,-5,0,1305,-26,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1554,0,0,2130,-9,0,0 +2013,9,11,3,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,0,0,1405,-10,0,0 +2013,9,25,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,-4,0,810,-10,0,0 +2013,8,9,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2214,88,1,558,60,1,0 +2013,8,27,2,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,24,1,1935,12,0,0 +2013,7,26,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,80,1,1845,99,1,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,725,-1,0,840,-6,0,0 +2013,4,30,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,-8,0,1745,-10,0,0 +2013,8,13,2,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1725,11,0,1840,-3,0,0 +2013,4,27,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1620,0,0,1923,-17,0,0 +2013,9,20,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1049,-16,0,1215,-41,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1025,-2,0,1150,-7,0,0 +2013,8,4,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-8,0,1020,-17,0,0 +2013,9,17,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-8,0,959,28,1,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1355,46,1,1623,38,1,0 +2013,4,12,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2051,-1,0,2341,-13,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1940,85,1,2245,76,1,0 +2013,4,8,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,29,1,1905,26,1,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1704,-11,0,1750,-12,0,0 +2013,5,24,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,41,1,1810,35,1,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1300,20,1,1615,14,0,0 +2013,5,23,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,3,0,1904,22,1,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,21,1,1810,11,0,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1140,-5,0,1323,-4,0,0 +2013,8,7,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-3,0,1026,17,1,0 +2013,5,13,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1754,15,1,1914,18,1,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,17,1,1045,55,1,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2211,42,1,15,40,1,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1900,27,1,2228,15,1,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2035,-5,0,2155,-12,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,642,-9,0,1019,-12,0,0 +2013,4,23,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-1,0,1410,-4,0,0 +2013,6,17,1,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1700,8,0,1915,51,1,0 +2013,6,5,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,945,-2,0,1130,-5,0,0 +2013,5,9,4,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,740,0,0,1230,24,1,0 +2013,7,5,5,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,724,-5,0,830,-21,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1650,52,1,1815,40,1,0 +2013,6,28,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,2,0,1527,30,1,0 +2013,6,3,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,725,-1,0,850,-5,0,0 +2013,7,15,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1935,60,1,2100,58,1,0 +2013,9,20,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1910,73,1,2015,61,1,0 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,635,-7,0,924,-22,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,1,0,1004,7,0,0 +2013,5,17,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1347,1,0,1558,-2,0,0 +2013,4,15,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,0,0,804,-6,0,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1323,-1,0,1717,-23,0,0 +2013,9,3,2,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,-5,0,1220,-30,0,0 +2013,5,2,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-9,0,1926,-9,0,0 +2013,7,22,1,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1023,-5,0,1259,-4,0,0 +2013,6,19,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1916,6,0,2026,12,0,0 +2013,8,1,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,7,0,1550,6,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2114,-5,0,2359,-11,0,0 +2013,7,14,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,-1,0,1705,13,0,0 +2013,7,24,3,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,-6,0,1010,-18,0,0 +2013,8,10,6,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,930,-13,0,0 +2013,7,12,5,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1930,-5,0,2103,-2,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2151,17,1,2334,26,1,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,-1,0,2250,-5,0,0 +2013,10,5,6,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-11,0,1140,-19,0,0 +2013,6,15,6,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-9,0,1222,-11,0,0 +2013,9,27,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1641,-13,0,1740,-7,0,0 +2013,9,9,1,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1645,8,0,1915,37,1,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1610,-4,0,1803,10,0,0 +2013,6,11,2,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,-2,0,2303,3,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,-4,0,1315,-19,0,0 +2013,10,13,7,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,615,-4,0,740,-24,0,0 +2013,5,26,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1450,42,1,1555,36,1,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1405,41,1,1750,75,1,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1131,14,0,1310,11,0,0 +2013,8,1,4,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1856,-7,0,2017,-2,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,11,0,1355,13,0,0 +2013,7,20,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,720,0,0,1007,-8,0,0 +2013,8,28,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1135,-4,0,1245,-14,0,0 +2013,7,18,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,950,-5,0,1130,-10,0,0 +2013,7,2,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1305,-5,0,1435,-8,0,0 +2013,8,28,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,900,0,0,1158,-5,0,0 +2013,7,5,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-9,0,919,-6,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1630,-1,0,1745,-3,0,0 +2013,9,29,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1405,-1,0,1615,-20,0,0 +2013,8,13,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-1,0,1100,-10,0,0 +2013,6,13,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1920,0,,2050,0,1,1 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,81,1,2105,87,1,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,810,-2,0,940,-9,0,0 +2013,9,20,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-6,0,1830,12,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,944,-3,0,1021,-9,0,0 +2013,9,22,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-8,0,1205,0,0,0 +2013,4,6,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,3,0,843,-10,0,0 +2013,8,3,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1244,-2,0,1440,-9,0,0 +2013,8,5,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-2,0,810,-15,0,0 +2013,7,26,5,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,-3,0,1650,-15,0,0 +2013,10,8,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1131,0,0,1258,5,0,0 +2013,7,17,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,611,-5,0,822,22,1,0 +2013,5,3,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,935,-2,0,1105,22,1,0 +2013,7,2,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1612,-4,0,1810,-21,0,0 +2013,9,29,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,-8,0,1809,-15,0,0 +2013,6,29,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1820,11,0,2218,12,0,0 +2013,8,24,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,29,1,1025,2,0,0 +2013,5,8,3,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1116,-1,0,1306,-10,0,0 +2013,9,24,2,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1243,6,0,1352,2,0,0 +2013,9,11,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-8,0,625,-16,0,0 +2013,5,20,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1900,-1,0,2000,-4,0,0 +2013,10,24,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-2,0,925,-6,0,0 +2013,9,25,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,7,0,2155,6,0,0 +2013,4,7,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,749,-4,0,1029,-9,0,0 +2013,6,8,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1528,-7,0,2352,-35,0,0 +2013,9,25,3,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1910,-13,0,2121,17,1,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1850,5,0,2250,10,0,0 +2013,7,29,1,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,-5,0,1930,-25,0,0 +2013,8,19,1,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1351,-1,0,1925,-6,0,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1906,-1,0,2046,-17,0,0 +2013,4,29,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1051,-7,0,1213,-10,0,0 +2013,8,26,1,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,-7,0,1437,-7,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,930,4,0,1055,19,1,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1550,44,1,1745,34,1,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,50,1,2340,44,1,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,3,0,1902,-8,0,0 +2013,5,17,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1010,75,1,1220,54,1,0 +2013,10,30,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,640,-4,0,740,-5,0,0 +2013,4,12,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1300,0,0,1415,3,0,0 +2013,5,1,3,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,600,2,0,830,3,0,0 +2013,4,25,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1405,42,1,2213,22,1,0 +2013,10,19,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,550,1,0,702,6,0,0 +2013,8,3,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1901,4,0,2213,9,0,0 +2013,4,26,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2150,8,0,2315,4,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-3,0,730,-14,0,0 +2013,8,1,4,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,128,1,1543,130,1,0 +2013,9,28,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,16,1,1240,32,1,0 +2013,10,16,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,812,5,0,0 +2013,4,22,1,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,846,-7,0,1120,-20,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1305,10,0,1412,5,0,0 +2013,4,29,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,-1,0,1658,-13,0,0 +2013,7,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,0,0,1705,-10,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,105,1,1435,123,1,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1740,1,0,1905,-3,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1829,93,1,2009,76,1,0 +2013,10,31,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1525,11,0,1635,11,0,0 +2013,10,4,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1225,5,0,1429,9,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1445,21,1,1545,18,1,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,26,1,2050,25,1,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1920,0,0,2020,-5,0,0 +2013,5,16,4,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1216,-3,0,1339,15,1,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1025,7,0,1455,-6,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1345,-1,0,1512,-4,0,0 +2013,7,2,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,916,11,0,1013,15,1,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,900,0,0,1015,6,0,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,-3,0,940,-11,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2000,1,0,2150,-25,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,855,10,0,1005,4,0,0 +2013,8,13,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1409,-8,0,1505,-5,0,0 +2013,9,3,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-10,0,1250,-21,0,0 +2013,4,19,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-3,0,1346,-14,0,0 +2013,7,19,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,-3,0,1310,-8,0,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2040,-6,0,2221,-17,0,0 +2013,6,16,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-6,0,1855,-12,0,0 +2013,6,10,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-1,0,1559,-9,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-6,0,2304,-18,0,0 +2013,10,4,5,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,0,0,1125,11,0,0 +2013,8,23,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,-5,0,1340,-9,0,0 +2013,4,7,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,-9,0,2125,-5,0,0 +2013,4,26,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-3,0,1110,-3,0,0 +2013,6,8,6,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,950,108,1,1450,116,1,0 +2013,10,14,1,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1046,-5,0,1535,-25,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,3,0,2248,-4,0,0 +2013,4,14,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1425,-8,0,1555,-18,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1720,25,1,1915,22,1,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,5,0,1658,1,0,0 +2013,4,4,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1519,24,1,1837,20,1,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,6,0,2250,4,0,0 +2013,6,27,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,-3,0,1526,1,0,0 +2013,10,6,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1804,65,1,1958,69,1,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1430,36,1,2000,21,1,0 +2013,4,18,4,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1252,-1,0,1700,7,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,2,0,1856,-5,0,0 +2013,8,31,6,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1715,-9,0,2030,-8,0,0 +2013,4,14,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1008,-5,0,1200,-12,0,0 +2013,7,21,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2341,-3,0,730,-13,0,0 +2013,5,29,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,717,-4,0,854,-9,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2025,-1,0,2130,-9,0,0 +2013,4,17,3,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1645,27,1,1849,20,1,0 +2013,6,19,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1942,51,1,137,29,1,0 +2013,7,30,2,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,558,-8,0,945,-15,0,0 +2013,4,21,7,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2106,-3,0,2250,-9,0,0 +2013,10,3,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,0,0,1955,-1,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1820,0,0,1940,-7,0,0 +2013,8,19,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1751,55,1,1944,47,1,0 +2013,5,30,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,29,1,1705,74,1,0 +2013,10,28,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,830,19,1,915,20,1,0 +2013,10,10,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,57,1,1843,51,1,0 +2013,9,30,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,857,-8,0,1024,-11,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,951,17,1,1104,5,0,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2030,3,0,2215,-8,0,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1050,5,0,1215,3,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1020,137,1,1115,131,1,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1843,21,1,2023,13,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,840,-2,0,1008,-12,0,0 +2013,6,5,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,632,-5,0,758,2,0,0 +2013,8,27,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1655,-3,0,1825,-4,0,0 +2013,10,6,7,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1825,19,1,1855,14,0,0 +2013,6,5,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1040,95,1,1212,86,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,959,11,0,1342,7,0,0 +2013,5,2,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1130,-3,0,0 +2013,4,5,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,-2,0,2020,-9,0,0 +2013,10,30,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1934,-6,0,2149,-3,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2155,-1,0,10,-7,0,0 +2013,8,20,2,9E,12451,Jacksonville International,Jacksonville,FL,11433,Detroit Metro Wayne County,Detroit,MI,840,-8,0,1106,-40,0,0 +2013,4,22,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-8,0,813,-20,0,0 +2013,5,11,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1220,1,0,1325,-6,0,0 +2013,8,7,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,635,-1,0,750,-2,0,0 +2013,8,26,1,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,17,1,1300,-15,0,0 +2013,10,1,2,OO,13244,Memphis International,Memphis,TN,10693,Nashville International,Nashville,TN,1715,-5,0,1813,5,0,0 +2013,7,2,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-6,0,2020,16,1,0 +2013,10,19,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,27,1,1530,35,1,0 +2013,8,13,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,36,1,2130,35,1,0 +2013,4,27,6,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,16,1,1530,13,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1515,52,1,1915,35,1,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-2,0,2332,-9,0,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-4,0,1225,-14,0,0 +2013,4,20,6,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1110,-5,0,1323,-1,0,0 +2013,7,18,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,24,1,1334,25,1,0 +2013,7,30,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,955,-3,0,1125,-12,0,0 +2013,8,16,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,40,1,2135,32,1,0 +2013,4,3,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,645,-5,0,925,-3,0,0 +2013,6,22,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-6,0,1914,-12,0,0 +2013,10,4,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1725,4,0,1910,7,0,0 +2013,9,22,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,821,-10,0,1020,-40,0,0 +2013,5,21,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,-1,0,805,-7,0,0 +2013,8,31,6,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1040,-8,0,1208,-24,0,0 +2013,5,8,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1344,51,1,1621,45,1,0 +2013,7,13,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,-3,0,1625,7,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1920,17,1,2020,8,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1244,-5,0,1411,-18,0,0 +2013,10,3,4,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2040,80,1,2248,60,1,0 +2013,5,22,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,30,1,1920,31,1,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,8,0,1103,-3,0,0 +2013,4,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1625,22,1,1918,46,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1906,-3,0,2033,4,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,844,-2,0,1011,-21,0,0 +2013,5,7,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1640,-5,0,1933,5,0,0 +2013,9,25,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1935,-4,0,2059,-2,0,0 +2013,5,19,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,53,1,1930,59,1,0 +2013,7,24,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1930,-2,0,2133,0,0,0 +2013,10,12,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,1,0,1329,-16,0,0 +2013,6,30,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,58,1,620,30,1,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,830,0,0,1040,-9,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1023,-3,0,1257,11,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1250,7,0,1355,-3,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,-6,0,2245,8,0,0 +2013,4,1,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,0,0,2120,-7,0,0 +2013,7,4,4,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1112,16,1,1236,13,0,0 +2013,4,20,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1235,17,1,1545,9,0,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,-1,0,1545,-9,0,0 +2013,10,27,7,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1315,-5,0,1533,-15,0,0 +2013,9,26,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-2,0,2250,-8,0,0 +2013,7,3,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,727,-5,0,900,-5,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,1,0,1505,-2,0,0 +2013,10,3,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,0,0,2005,-2,0,0 +2013,8,27,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-9,0,1515,-30,0,0 +2013,5,21,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1715,-4,0,1840,-11,0,0 +2013,10,5,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1333,-2,0,1835,6,0,0 +2013,4,12,5,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1100,0,0,1453,7,0,0 +2013,7,16,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-1,0,602,-1,0,0 +2013,6,1,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,-2,0,1823,-6,0,0 +2013,7,17,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,835,-5,0,1440,-7,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-9,0,1003,-19,0,0 +2013,9,21,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,0,0,1700,1,0,0 +2013,10,22,2,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1620,7,0,1825,0,0,0 +2013,5,1,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,856,1,0,1205,7,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2046,22,1,2314,-11,0,0 +2013,9,30,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,8,0,2259,15,1,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,1125,-10,0,0 +2013,10,31,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,-1,0,1438,-10,0,0 +2013,8,11,7,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1425,-3,0,1603,-1,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,709,11,0,1048,-11,0,0 +2013,5,14,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,-6,0,2324,-5,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1630,18,1,1850,28,1,0 +2013,9,13,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1605,32,1,2113,19,1,0 +2013,7,9,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1907,-5,0,2023,-9,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1723,-9,0,2315,-36,0,0 +2013,5,22,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,0,0,838,12,0,0 +2013,10,23,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1735,-9,0,2057,-13,0,0 +2013,7,28,7,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,-5,0,2055,-24,0,0 +2013,8,7,3,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1355,14,0,1700,8,0,0 +2013,6,8,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-12,0,2326,-11,0,0 +2013,4,27,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1635,-9,0,1939,10,0,0 +2013,10,28,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1925,-10,0,2030,-2,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,836,46,1,1137,98,1,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2025,-1,0,2150,3,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1129,-2,0,1334,0,0,0 +2013,6,1,6,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1333,-4,0,1424,-7,0,0 +2013,4,19,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,902,-10,0,951,-19,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1940,73,1,2045,63,1,0 +2013,10,19,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1216,-4,0,1340,-1,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1924,-6,0,2217,-18,0,0 +2013,5,17,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-8,0,1350,-7,0,0 +2013,4,15,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1129,2,0,1404,-4,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1155,89,1,1700,83,1,0 +2013,9,3,2,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,825,7,0,1554,11,0,0 +2013,8,25,7,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-9,0,1454,-20,0,0 +2013,6,10,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1710,7,0,1900,1,0,0 +2013,5,28,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-3,0,2030,-27,0,0 +2013,9,6,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-7,0,847,-6,0,0 +2013,7,29,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,916,3,0,1035,-13,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,725,-4,0,803,-12,0,0 +2013,5,6,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1740,-5,0,1940,-11,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,1,0,910,-9,0,0 +2013,5,29,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-2,0,1329,7,0,0 +2013,7,25,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,25,1,1846,21,1,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,9,0,5,-3,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,94,1,1908,85,1,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1125,-2,0,1515,-9,0,0 +2013,4,11,4,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1728,24,1,1905,21,1,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,900,3,0,1120,-2,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,0,0,2056,29,1,0 +2013,9,27,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1920,-10,0,2129,-8,0,0 +2013,10,19,6,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,915,2,0,1505,2,0,0 +2013,6,29,6,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,846,-14,0,1035,-3,0,0 +2013,6,20,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,12,0,1330,33,1,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,0,0,1729,-16,0,0 +2013,4,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1750,-2,0,1915,-13,0,0 +2013,8,14,3,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-9,0,1124,-27,0,0 +2013,4,2,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1719,38,1,2049,18,1,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,4,0,1310,12,0,0 +2013,4,16,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-2,0,1524,-9,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,41,1,2155,33,1,0 +2013,10,6,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1700,5,0,1829,5,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,3,0,1455,-10,0,0 +2013,5,16,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-10,0,2210,-16,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,-2,0,1832,8,0,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1355,-3,0,1517,-5,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2015,44,1,2145,43,1,0 +2013,7,3,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-10,0,1850,-18,0,0 +2013,7,24,3,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,-6,0,1051,-23,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1351,-1,0,1910,-10,0,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2025,-3,0,2300,-15,0,0 +2013,9,29,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,655,-4,0,725,-6,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1900,-6,0,2144,-1,0,0 +2013,10,5,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-5,0,1636,-7,0,0 +2013,8,26,1,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1359,-9,0,1420,-16,0,0 +2013,10,17,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-3,0,1552,-16,0,0 +2013,6,25,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1540,21,1,1741,69,1,0 +2013,9,3,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1405,-6,0,1724,-8,0,0 +2013,8,1,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1115,-4,0,1250,-9,0,0 +2013,10,20,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1317,1,0,1607,-3,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1900,250,1,2000,246,1,0 +2013,8,8,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1300,16,1,1820,-9,0,0 +2013,5,21,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1720,99,1,1933,81,1,0 +2013,5,9,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1050,6,0,1300,-14,0,0 +2013,8,19,1,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,700,-1,0,845,-4,0,0 +2013,8,25,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,745,-2,0,1134,4,0,0 +2013,9,10,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1055,15,1,1216,46,1,0 +2013,5,6,1,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-15,0,1755,7,0,0 +2013,6,2,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1623,142,1,1725,124,1,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1530,5,0,1556,-5,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,-1,0,2036,-16,0,0 +2013,6,28,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1505,57,1,1706,47,1,0 +2013,10,17,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,1,0,910,6,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2100,21,1,2245,10,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2051,-5,0,2358,-41,0,0 +2013,6,20,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2205,-2,0,2346,-7,0,0 +2013,7,19,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1205,-3,0,1249,-11,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,16,1,1145,19,1,0 +2013,8,1,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,153,1,1924,156,1,0 +2013,10,16,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1359,-7,0,1654,11,0,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1915,141,1,2216,130,1,0 +2013,6,17,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-7,0,1000,10,0,0 +2013,8,20,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,734,-10,0,1025,-10,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-3,0,1349,-6,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,-6,0,1133,-30,0,0 +2013,8,12,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,-4,0,1431,2,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1205,9,0,1405,13,0,0 +2013,9,25,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,5,0,1302,6,0,0 +2013,7,3,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,15,1,2305,13,0,0 +2013,10,16,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1435,0,0,1655,-5,0,0 +2013,6,7,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,-5,0,1542,-4,0,0 +2013,6,15,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,-3,0,1850,-24,0,0 +2013,10,24,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,915,-4,0,1230,-15,0,0 +2013,8,22,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1742,-6,0,1930,0,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2030,33,1,2235,27,1,0 +2013,9,26,4,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1104,1,0,1254,-3,0,0 +2013,8,14,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1548,-7,0,1619,-1,0,0 +2013,9,30,1,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,7,0,1420,-9,0,0 +2013,4,4,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,70,1,1324,74,1,0 +2013,4,26,5,EV,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,920,-7,0,1214,-15,0,0 +2013,8,4,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,815,0,0,1335,-3,0,0 +2013,7,11,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,-6,0,1028,-10,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1535,0,0,1758,-16,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-5,0,951,-4,0,0 +2013,5,27,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,35,1,1115,30,1,0 +2013,9,5,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-5,0,1042,8,0,0 +2013,8,6,2,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,713,-3,0,901,19,1,0 +2013,6,26,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1940,20,1,2050,20,1,0 +2013,7,28,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1242,-12,0,1345,-20,0,0 +2013,6,2,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,55,64,1,538,39,1,0 +2013,6,16,7,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,715,-3,0,915,-5,0,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,3,0,2233,2,0,0 +2013,6,13,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1150,59,1,1455,73,1,0 +2013,7,19,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1055,-3,0,1220,-3,0,0 +2013,4,20,6,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-7,0,1229,-18,0,0 +2013,7,27,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,632,-4,0,905,-7,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1710,0,0,2000,-5,0,0 +2013,5,12,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2040,10,0,2329,-11,0,0 +2013,10,15,2,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-10,0,915,-13,0,0 +2013,4,13,6,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-8,0,2043,-15,0,0 +2013,10,7,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1335,-2,0,1455,-1,0,0 +2013,10,7,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1756,21,1,2024,23,1,0 +2013,4,26,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,-5,0,630,-31,0,0 +2013,10,23,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,830,-5,0,1021,-2,0,0 +2013,8,28,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-3,0,751,-10,0,0 +2013,7,8,1,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-5,0,1014,-22,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,61,1,1940,62,1,0 +2013,7,10,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,121,1,1823,146,1,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,1119,-7,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1110,18,1,1215,8,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2207,21,1,2350,9,0,0 +2013,6,2,7,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-6,0,2020,-23,0,0 +2013,8,20,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1455,-4,0,1720,1,0,0 +2013,5,25,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1320,-5,0,1613,-16,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,705,16,1,835,6,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1332,31,1,1509,12,0,0 +2013,5,9,4,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-2,0,2048,-23,0,0 +2013,6,16,7,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,-7,0,551,0,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1600,-1,0,1920,-32,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,750,-1,0,1055,-8,0,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,-1,0,1520,-12,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2220,28,1,2303,15,1,0 +2013,4,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,8,0,2150,9,0,0 +2013,7,13,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1330,-4,0,1715,-12,0,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1700,25,1,2032,20,1,0 +2013,10,15,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1731,-8,0,1748,-11,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,638,11,0,911,-2,0,0 +2013,5,18,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1231,-4,0,1350,-6,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2050,21,1,2150,7,0,0 +2013,5,8,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1139,51,1,1333,64,1,0 +2013,7,20,6,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,550,-1,0,725,-9,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1455,-3,0,1712,-1,0,0 +2013,8,25,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-4,0,2055,-48,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1325,25,1,1654,27,1,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,0,0,1605,-1,0,0 +2013,4,23,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1945,-5,0,2115,15,1,0 +2013,10,23,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-2,0,1346,-10,0,0 +2013,10,31,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1135,-6,0,1153,-6,0,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1920,0,0,2230,5,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,935,0,0,1405,-1,0,0 +2013,4,26,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,6,0,1807,4,0,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1625,18,1,1920,12,0,0 +2013,10,18,5,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,915,-7,0,1037,-7,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,20,1,1510,32,1,0 +2013,6,23,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-5,0,820,-9,0,0 +2013,10,25,5,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1154,52,1,1308,45,1,0 +2013,7,14,7,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-6,0,2000,-11,0,0 +2013,4,18,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-2,0,915,-18,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2059,-2,0,2239,-12,0,0 +2013,4,29,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1822,0,0,2109,-5,0,0 +2013,9,29,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,-1,0,1821,-10,0,0 +2013,9,18,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,725,0,0,950,5,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-4,0,815,-20,0,0 +2013,5,7,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-2,0,750,-1,0,0 +2013,7,26,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1824,-6,0,1915,-1,0,0 +2013,10,23,3,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,910,-3,0,1140,-4,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,-3,0,1253,-7,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,27,1,1019,17,1,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,1,0,1500,22,1,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,740,1,0,1300,-12,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1135,4,0,1230,0,0,0 +2013,4,2,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,645,-4,0,805,-10,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1920,-5,0,2137,-2,0,0 +2013,10,11,5,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,730,4,0,850,3,0,0 +2013,7,31,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,730,-1,0,906,-2,0,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,16,1,1745,9,0,0 +2013,10,29,2,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1216,11,0,1405,12,0,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1410,64,1,1645,69,1,0 +2013,6,29,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1030,26,1,1410,48,1,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1645,-1,0,1709,-9,0,0 +2013,6,9,7,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1503,-9,0,1642,-11,0,0 +2013,10,20,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1225,-17,0,0 +2013,4,22,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-11,0,1255,-24,0,0 +2013,4,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1940,-5,0,2156,-12,0,0 +2013,4,20,6,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,920,86,1,1043,105,1,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1547,10,0,2107,2,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-10,0,1758,-15,0,0 +2013,5,14,2,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1810,-5,0,2055,-19,0,0 +2013,9,12,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,25,1,2150,48,1,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,6,0,2055,9,0,0 +2013,7,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,900,3,0,950,3,0,0 +2013,7,2,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-6,0,1252,-8,0,0 +2013,8,4,7,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,2,0,1959,-19,0,0 +2013,4,10,3,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,7,0,2145,13,0,0 +2013,7,14,7,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,-5,0,1740,-10,0,0 +2013,5,22,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1131,11,0,1445,9,0,0 +2013,7,3,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,835,2,0,1120,-10,0,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,-2,0,1357,-21,0,0 +2013,7,2,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,-2,0,1853,1,0,0 +2013,10,20,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1700,0,0,2017,-13,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1320,0,0,1825,6,0,0 +2013,7,21,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,4,0,735,-5,0,0 +2013,9,21,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-7,0,1030,-19,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2243,9,0,726,3,0,0 +2013,8,7,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,35,1,1545,54,1,0 +2013,6,11,2,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1610,63,1,1911,41,1,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,800,28,1,1040,16,1,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1425,1,0,2020,-4,0,0 +2013,8,12,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,21,1,2015,34,1,0 +2013,9,22,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,1017,-12,0,0 +2013,7,14,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,1,0,1800,17,1,0 +2013,6,18,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,3,0,1330,-2,0,0 +2013,9,21,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,925,-4,0,1045,-12,0,0 +2013,8,29,4,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1255,71,1,1600,65,1,0 +2013,8,23,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1020,-9,0,1125,-4,0,0 +2013,10,25,5,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1842,14,0,2014,1,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,2145,-2,0,2315,9,0,0 +2013,9,22,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-1,0,1319,-10,0,0 +2013,9,30,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2035,-8,0,2205,-12,0,0 +2013,5,28,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,-3,0,1905,-3,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1325,79,1,1450,84,1,0 +2013,9,29,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1408,-2,0,1514,1,0,0 +2013,4,22,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,915,12,0,1211,-9,0,0 +2013,6,11,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,85,1,957,76,1,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1310,-5,0,1545,-2,0,0 +2013,6,24,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1255,-8,0,1440,-25,0,0 +2013,4,12,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1705,57,1,2030,37,1,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1700,0,0,1850,-3,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,1,0,1927,-10,0,0 +2013,4,23,2,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,-3,0,1230,-9,0,0 +2013,8,28,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,14,0,646,15,1,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1124,-5,0,1303,-15,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1030,8,0,1545,8,0,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1750,-7,0,2122,15,1,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,-10,0,910,-24,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,857,40,1,1014,25,1,0 +2013,7,11,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,941,-2,0,1027,19,1,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1700,54,1,2011,61,1,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,715,64,1,925,41,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1230,-3,0,1411,-9,0,0 +2013,7,5,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-2,0,1420,8,0,0 +2013,7,18,4,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2050,-5,0,2255,-11,0,0 +2013,10,3,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1658,0,0,2256,-19,0,0 +2013,4,25,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-5,0,850,-25,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1210,-3,0,1410,-13,0,0 +2013,5,22,3,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,-6,0,2027,1,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1442,-4,0,1845,-7,0,0 +2013,7,3,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,14,0,1400,7,0,0 +2013,10,4,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,53,1,1100,59,1,0 +2013,9,22,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-6,0,2126,-6,0,0 +2013,4,1,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,2,0,1825,2,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,850,2,0,1210,-8,0,0 +2013,8,29,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,2,0,1218,-7,0,0 +2013,4,23,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2015,125,1,2143,127,1,0 +2013,5,9,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,840,-4,0,1120,-21,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2015,3,0,2255,2,0,0 +2013,5,20,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1808,-11,0,1946,-32,0,0 +2013,5,17,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,2,0,1630,4,0,0 +2013,7,17,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1225,-11,0,1353,-15,0,0 +2013,4,30,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1030,-4,0,1505,-21,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1920,2,0,2045,-1,0,0 +2013,8,1,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,829,-6,0,1004,2,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1748,3,0,1912,-21,0,0 +2013,8,16,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1058,-8,0,0 +2013,4,12,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,515,-3,0,633,-16,0,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,7,0,1005,21,1,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1720,68,1,2255,55,1,0 +2013,10,18,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1416,14,0,1700,7,0,0 +2013,7,21,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1112,0,,1520,0,1,1 +2013,5,2,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1935,-1,0,2100,-5,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,955,-3,0,1130,-12,0,0 +2013,9,30,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1510,23,1,1714,11,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,-1,0,2201,-4,0,0 +2013,5,9,4,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1358,-8,0,1456,-3,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2235,-1,0,125,1,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1805,-4,0,1915,-8,0,0 +2013,4,4,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,845,4,0,1005,-1,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1235,-26,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2208,28,1,2359,26,1,0 +2013,9,15,7,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1627,6,0,2002,1,0,0 +2013,5,12,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,823,-9,0,943,-13,0,0 +2013,9,10,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,-9,0,1330,-21,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,825,-4,0,1400,-4,0,0 +2013,7,4,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1230,-4,0,1441,-16,0,0 +2013,10,10,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1215,17,1,1310,7,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1340,22,1,1600,16,1,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1550,10,0,1710,1,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2020,0,,2335,0,1,1 +2013,7,5,5,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,940,-5,0,1045,-15,0,0 +2013,5,14,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1529,-4,0,1812,-8,0,0 +2013,5,31,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,2140,51,1,2235,46,1,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,643,-8,0,855,-37,0,0 +2013,5,12,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-3,0,1420,-8,0,0 +2013,6,14,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-3,0,152,-6,0,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,-4,0,1025,-10,0,0 +2013,6,1,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1240,1,0,1440,-6,0,0 +2013,4,14,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1950,-12,0,2055,-25,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1347,-1,0,1630,-8,0,0 +2013,5,30,4,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,-5,0,609,31,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2305,-6,0,2333,-11,0,0 +2013,5,6,1,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1300,-7,0,1423,-11,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,16,1,1258,26,1,0 +2013,7,25,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,600,-1,0,700,-5,0,0 +2013,10,15,2,9E,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1445,9,0,1755,7,0,0 +2013,10,22,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1120,-4,0,1320,-6,0,0 +2013,5,28,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,2,0,1431,-7,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,-1,0,1544,-7,0,0 +2013,4,3,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1810,-5,0,2125,-19,0,0 +2013,6,7,5,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1246,-11,0,1407,-8,0,0 +2013,5,25,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,-5,0,2220,-27,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1425,5,0,1552,-9,0,0 +2013,6,11,2,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-4,0,910,-6,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1255,33,1,1415,26,1,0 +2013,4,12,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2115,-4,0,2230,-11,0,0 +2013,10,1,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1820,-5,0,2000,-14,0,0 +2013,7,23,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1621,1,0,1820,-15,0,0 +2013,6,18,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1946,-7,0,2055,-2,0,0 +2013,8,2,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1530,-7,0,0 +2013,6,13,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,19,1,2200,0,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1830,5,0,2115,0,0,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,3,0,1615,17,1,0 +2013,9,19,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1657,45,1,1837,20,1,0 +2013,6,5,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,-1,0,1130,-3,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1725,-2,0,1919,-27,0,0 +2013,4,14,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1350,-7,0,1718,-4,0,0 +2013,10,21,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-3,0,845,-9,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,-4,0,1618,8,0,0 +2013,4,11,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1420,5,0,1535,-5,0,0 +2013,10,5,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1205,52,1,1500,52,1,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2030,18,1,2135,9,0,0 +2013,8,11,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-6,0,1454,-19,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2107,-2,0,2314,-21,0,0 +2013,8,21,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2145,-3,0,2252,-5,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1730,37,1,1935,35,1,0 +2013,7,17,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1655,26,1,1705,15,1,0 +2013,5,24,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1915,9,0,2107,10,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1235,2,0,1410,-15,0,0 +2013,4,25,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-1,0,835,-5,0,0 +2013,10,3,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,600,16,1,720,8,0,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,930,-3,0,1056,24,1,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2220,24,1,2353,13,0,0 +2013,10,21,1,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1115,-3,0,1650,-3,0,0 +2013,7,2,2,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1840,11,0,2150,-26,0,0 +2013,7,18,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1235,45,1,1440,36,1,0 +2013,8,26,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-7,0,1147,-15,0,0 +2013,7,5,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1333,-5,0,0 +2013,6,23,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,18,1,2130,9,0,0 +2013,10,11,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1659,2,0,2213,-9,0,0 +2013,8,11,7,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,35,1,2010,46,1,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,735,-4,0,1030,3,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2300,8,0,2350,3,0,0 +2013,5,19,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1645,60,1,1834,77,1,0 +2013,9,25,3,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1345,-5,0,1524,-6,0,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1220,-5,0,1331,-18,0,0 +2013,4,17,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1835,9,0,1925,-2,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1916,-1,0,2045,-21,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,845,-2,0,1015,-13,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,2,0,35,-10,0,0 +2013,5,5,7,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1859,32,1,2130,22,1,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-7,0,1313,-15,0,0 +2013,9,22,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,17,1,1315,7,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,13,0,1700,11,0,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,55,1,956,41,1,0 +2013,8,3,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,639,-6,0,819,15,1,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1133,-2,0,1309,3,0,0 +2013,9,20,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,715,-3,0,830,-2,0,0 +2013,4,8,1,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1743,-3,0,2108,6,0,0 +2013,8,17,6,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,-6,0,1340,-10,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1725,4,0,2015,26,1,0 +2013,10,17,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2045,0,0,2159,-7,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,812,-1,0,1019,-31,0,0 +2013,7,6,6,YV,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1700,-1,0,1844,13,0,0 +2013,8,6,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,-8,0,715,-9,0,0 +2013,6,27,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1201,-10,0,1450,-22,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,17,1,2250,18,1,0 +2013,6,27,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-8,0,1210,12,0,0 +2013,8,7,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1317,-6,0,2112,-23,0,0 +2013,8,23,5,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,950,-2,0,1220,9,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1025,-4,0,1245,-21,0,0 +2013,9,1,7,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1415,-4,0,1605,-3,0,0 +2013,8,13,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,828,-3,0,1645,-48,0,0 +2013,4,15,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-2,0,755,3,0,0 +2013,7,10,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1508,161,1,1819,173,1,0 +2013,10,27,7,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1042,-3,0,1826,-4,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,25,1,1615,25,1,0 +2013,4,25,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,12,0,1835,1,0,0 +2013,8,5,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-7,0,844,-6,0,0 +2013,4,29,1,DL,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1723,-2,0,1945,5,0,0 +2013,8,17,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,2,0,1854,-3,0,0 +2013,8,7,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-7,0,1225,12,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,840,-1,0,1110,-4,0,0 +2013,5,21,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1120,88,1,1440,75,1,0 +2013,7,1,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,245,1,2245,188,1,0 +2013,8,29,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,2040,14,0,2245,6,0,0 +2013,10,12,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,27,1,1940,50,1,0 +2013,6,11,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1353,-9,0,1601,-12,0,0 +2013,7,9,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-7,0,1014,-10,0,0 +2013,9,30,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1230,3,0,0 +2013,5,31,5,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1140,4,0,1258,4,0,0 +2013,9,23,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1033,75,1,1355,75,1,0 +2013,5,4,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,-3,0,1040,-5,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2030,-1,0,2345,-4,0,0 +2013,8,28,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,0,0,1044,2,0,0 +2013,4,6,6,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1235,1,0,1615,-9,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2147,-4,0,2315,-34,0,0 +2013,8,26,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,-5,0,5,-12,0,0 +2013,5,24,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1940,-2,0,2130,3,0,0 +2013,8,17,6,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1150,10,0,1316,6,0,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2110,-4,0,2222,-18,0,0 +2013,7,20,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1535,45,1,1920,56,1,0 +2013,5,24,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,645,-2,0,740,-13,0,0 +2013,4,11,4,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1710,0,,1845,0,1,1 +2013,4,5,5,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-3,0,1617,-4,0,0 +2013,6,5,3,OO,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,953,-5,0,1445,-22,0,0 +2013,9,6,5,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1845,20,1,2030,12,0,0 +2013,5,9,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-3,0,1909,-6,0,0 +2013,5,2,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-2,0,902,-16,0,0 +2013,5,2,4,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1159,32,1,1427,21,1,0 +2013,4,29,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-8,0,1140,-4,0,0 +2013,10,31,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1028,20,1,1610,7,0,0 +2013,9,16,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1510,2,0,1714,6,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1810,169,1,1945,164,1,0 +2013,9,27,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1400,-4,0,1533,-8,0,0 +2013,9,24,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1605,-3,0,1832,-6,0,0 +2013,4,23,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1435,-10,0,1604,-12,0,0 +2013,10,25,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,-2,0,1920,-4,0,0 +2013,8,14,3,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2035,176,1,2245,169,1,0 +2013,6,19,3,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,0,,900,0,1,1 +2013,4,14,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,2,0,931,16,1,0 +2013,10,26,6,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1136,-6,0,1355,0,0,0 +2013,8,17,6,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-3,0,1655,2,0,0 +2013,10,2,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-3,0,1603,-7,0,0 +2013,7,31,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,720,-2,0,945,-25,0,0 +2013,8,22,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-3,0,1229,1,0,0 +2013,9,15,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1737,-7,0,2110,2,0,0 +2013,9,1,7,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1905,-6,0,2145,-1,0,0 +2013,10,26,6,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1015,-4,0,1125,-9,0,0 +2013,6,14,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-4,0,1840,-16,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,12,0,2020,3,0,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1455,-9,0,1626,-23,0,0 +2013,5,4,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,61,1,1909,55,1,0 +2013,7,21,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1951,16,1,2316,4,0,0 +2013,10,19,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1254,0,0,1432,-10,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,0,0,1810,-10,0,0 +2013,5,8,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-5,0,747,-5,0,0 +2013,8,25,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,4,0,947,5,0,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1455,73,1,1630,70,1,0 +2013,8,14,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,-6,0,1121,-2,0,0 +2013,6,29,6,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1831,-6,0,2110,-2,0,0 +2013,10,7,1,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,0,0,1230,-2,0,0 +2013,10,24,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,4,0,1939,-4,0,0 +2013,4,30,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,-6,0,2100,-3,0,0 +2013,9,26,4,AA,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1800,-4,0,1935,26,1,0 +2013,6,23,7,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,735,-2,0,1000,-16,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2105,12,0,2325,9,0,0 +2013,9,1,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1955,8,0,2246,-3,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1357,4,0,2012,-19,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1741,-2,0,1920,0,0,0 +2013,6,16,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-4,0,1154,-4,0,0 +2013,6,6,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,0,0,1239,0,0,0 +2013,4,15,1,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-6,0,1315,-8,0,0 +2013,9,3,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,22,1,905,-4,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1425,10,0,1655,5,0,0 +2013,7,18,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,822,-4,0,935,-16,0,0 +2013,6,17,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,0,0,1808,-3,0,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1440,-2,0,1708,7,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1925,11,0,2042,-3,0,0 +2013,6,29,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,2140,-4,0,144,-5,0,0 +2013,7,21,7,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,16,1,2240,8,0,0 +2013,7,14,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-3,0,955,14,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,2055,-1,0,2335,-8,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,15,1,1330,6,0,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,950,19,1,1100,22,1,0 +2013,10,15,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1600,55,1,1739,38,1,0 +2013,9,22,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,1,0,1925,-13,0,0 +2013,9,26,4,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,9,0,2048,3,0,0 +2013,9,21,6,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1103,84,1,1245,68,1,0 +2013,9,29,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-9,0,800,-6,0,0 +2013,9,20,5,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,27,1,831,13,0,0 +2013,6,23,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,930,-4,0,1055,-8,0,0 +2013,4,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,4,0,2110,3,0,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1906,-2,0,2032,-14,0,0 +2013,8,6,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1800,-5,0,2005,-22,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,8,0,1440,5,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1203,-8,0,1435,-1,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1720,175,1,1815,170,1,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1305,-1,0,1610,4,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1806,-3,0,1940,-6,0,0 +2013,4,15,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,23,1,1805,7,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1341,9,0,1516,-7,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,840,3,0,1140,-9,0,0 +2013,5,23,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-4,0,705,-6,0,0 +2013,7,3,3,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1850,62,1,2125,35,1,0 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1550,48,1,1835,56,1,0 +2013,6,26,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,636,-7,0,0 +2013,9,22,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-4,0,2141,-12,0,0 +2013,5,26,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,950,-1,0,1110,-15,0,0 +2013,9,30,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1820,-3,0,1930,-6,0,0 +2013,5,27,1,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1405,-1,0,2215,23,1,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2220,-1,0,2315,-3,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,-3,0,1106,-5,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,46,1,1920,37,1,0 +2013,7,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-1,0,1207,-6,0,0 +2013,10,18,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1228,-6,0,1420,10,0,0 +2013,6,15,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-2,0,925,-3,0,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1620,0,0,1750,12,0,0 +2013,9,16,1,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-4,0,1450,-8,0,0 +2013,4,2,2,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1135,-5,0,1257,8,0,0 +2013,10,10,4,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-9,0,1120,-5,0,0 +2013,7,26,5,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,740,-1,0,1020,-12,0,0 +2013,10,31,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1204,-15,0,1457,-14,0,0 +2013,7,7,7,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1415,-4,0,1600,-22,0,0 +2013,4,1,1,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,32,1,1505,16,1,0 +2013,10,8,2,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-8,0,1750,2,0,0 +2013,10,3,4,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1500,-3,0,1740,5,0,0 +2013,5,4,6,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,700,0,0,850,-26,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2215,33,1,10,23,1,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-2,0,1402,8,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1315,-4,0,1453,-11,0,0 +2013,9,1,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,844,8,0,945,-1,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1550,3,0,1810,4,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,800,-3,0,1030,-14,0,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1829,-2,0,2009,-14,0,0 +2013,5,9,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-4,0,720,-7,0,0 +2013,5,24,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-10,0,728,-10,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1245,12,0,1515,8,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,11,0,2210,-6,0,0 +2013,6,9,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,-4,0,1839,-10,0,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-1,0,2120,-5,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1002,11,0,1153,12,0,0 +2013,4,29,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,852,-3,0,1006,6,0,0 +2013,8,11,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-1,0,1259,-5,0,0 +2013,5,6,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,502,-5,0,620,-16,0,0 +2013,7,11,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,52,1,2003,66,1,0 +2013,8,26,1,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,28,1,1910,36,1,0 +2013,9,22,7,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,2,0,1425,2,0,0 +2013,8,28,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1649,-3,0,1747,7,0,0 +2013,4,9,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,-2,0,1612,-14,0,0 +2013,7,7,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1112,-10,0,1403,-20,0,0 +2013,7,31,3,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,650,-5,0,812,-10,0,0 +2013,10,26,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1110,-3,0,1630,-10,0,0 +2013,7,20,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,10,0,1903,19,1,0 +2013,4,2,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,-7,0,1420,-15,0,0 +2013,6,19,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2201,-4,0,2344,-2,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-5,0,904,-18,0,0 +2013,7,29,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,500,5,0,805,-8,0,0 +2013,5,30,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1055,-4,0,1225,-28,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,2,0,1005,2,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1005,26,1,1325,14,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,0,0,1445,-3,0,0 +2013,6,9,7,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1629,-2,0,1800,-23,0,0 +2013,6,22,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2156,0,0,2214,5,0,0 +2013,10,7,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,930,6,0,1116,6,0,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2005,-5,0,2305,-9,0,0 +2013,9,16,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1800,0,0,2118,19,1,0 +2013,5,9,4,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,-3,0,1055,12,0,0 +2013,10,12,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-7,0,1425,3,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1041,-2,0,1155,-5,0,0 +2013,8,1,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,5,0,1635,19,1,0 +2013,10,2,3,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1730,19,1,1930,11,0,0 +2013,4,2,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,-4,0,915,1,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,800,-3,0,1240,-11,0,0 +2013,9,17,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,910,-2,0,1013,-9,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,1,0,1555,-26,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,1,0,1200,2,0,0 +2013,5,28,2,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1949,-6,0,2100,-10,0,0 +2013,4,16,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1810,-5,0,2125,-16,0,0 +2013,8,28,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,-4,0,1300,-8,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,833,-6,0,1125,-1,0,0 +2013,5,31,5,OO,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1221,-6,0,1400,-6,0,0 +2013,8,4,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,850,-4,0,1045,-15,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,-5,0,1823,-9,0,0 +2013,7,27,6,EV,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1425,73,1,1737,57,1,0 +2013,9,28,6,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1620,-4,0,1821,-45,0,0 +2013,4,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,7,0,1600,7,0,0 +2013,9,14,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,747,-1,0,828,-8,0,0 +2013,8,24,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1830,160,1,1936,157,1,0 +2013,4,11,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1652,7,0,1800,-9,0,0 +2013,8,25,7,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,820,2,0,1405,-3,0,0 +2013,8,8,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,728,-7,0,0 +2013,4,10,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1650,0,0,1810,5,0,0 +2013,6,5,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,-7,0,2135,-13,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1015,-3,0,1258,-29,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2151,-5,0,2201,-19,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,9,0,1740,-2,0,0 +2013,5,24,5,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1205,-3,0,2014,-9,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,810,-3,0,942,3,0,0 +2013,7,22,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2125,11,0,2345,11,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,728,0,0,906,-11,0,0 +2013,7,7,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1651,-6,0,2000,61,1,0 +2013,9,3,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,930,4,0,1030,4,0,0 +2013,10,22,2,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1035,-6,0,1245,-14,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1130,9,0,1515,0,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-4,0,1143,-7,0,0 +2013,7,1,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1440,23,1,1656,31,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1605,-2,0,1742,-20,0,0 +2013,4,21,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,855,25,1,910,18,1,0 +2013,10,8,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1505,-1,0,1740,-12,0,0 +2013,4,28,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,745,-8,0,815,-17,0,0 +2013,8,1,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,1,0,925,-2,0,0 +2013,5,5,7,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1835,2,0,1925,-13,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-4,0,1500,-8,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,-3,0,1902,-16,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,716,0,0,945,-25,0,0 +2013,7,4,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-6,0,959,-18,0,0 +2013,7,2,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1204,-8,0,1333,-10,0,0 +2013,4,3,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1150,10,0,1515,-6,0,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,610,-5,0,725,-8,0,0 +2013,4,18,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,800,-4,0,1053,-24,0,0 +2013,6,24,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-1,0,715,-6,0,0 +2013,8,7,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,4,0,1320,-16,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2318,1,0,122,-13,0,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,845,-3,0,1025,-22,0,0 +2013,9,15,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,-4,0,1035,11,0,0 +2013,7,6,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1720,1,0,2014,4,0,0 +2013,5,24,5,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2253,6,0,710,-1,0,0 +2013,7,17,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2235,62,1,609,74,1,0 +2013,10,29,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,0,0,1139,-5,0,0 +2013,9,17,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1330,-3,0,2120,-5,0,0 +2013,4,3,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2150,-6,0,2252,-30,0,0 +2013,8,8,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,-4,0,625,-19,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1349,50,1,2235,36,1,0 +2013,9,19,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1955,0,,2135,0,1,1 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,-1,0,1240,-4,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1740,15,1,1840,12,0,0 +2013,5,16,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-2,0,1345,-10,0,0 +2013,9,25,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,701,-3,0,1100,-15,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2015,41,1,2213,40,1,0 +2013,8,22,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-3,0,1652,-6,0,0 +2013,4,8,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1400,-5,0,2250,-13,0,0 +2013,4,26,5,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,24,1,1042,26,1,0 +2013,6,8,6,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1225,-1,0,1550,-12,0,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1315,0,0,1515,4,0,0 +2013,6,28,5,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,759,-1,0,1034,-3,0,0 +2013,5,10,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,830,-4,0,1012,14,0,0 +2013,8,26,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,4,0,1916,-12,0,0 +2013,10,27,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1000,-2,0,1055,-5,0,0 +2013,8,11,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1813,-5,0,2105,-16,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1302,-3,0,1436,-13,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2115,28,1,2218,7,0,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-6,0,2125,-11,0,0 +2013,5,9,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,50,1,2005,56,1,0 +2013,5,18,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1255,9,0,1440,-8,0,0 +2013,4,8,1,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,-1,0,2230,-5,0,0 +2013,5,5,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,730,9,0,1021,-10,0,0 +2013,4,18,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,15,1,1325,8,0,0 +2013,4,13,6,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,704,-5,0,909,-17,0,0 +2013,9,24,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,3,0,2050,-10,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-6,0,2004,-7,0,0 +2013,5,11,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,13,0,1604,8,0,0 +2013,10,27,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1513,4,0,1657,-20,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1445,37,1,1645,32,1,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1440,133,1,1805,128,1,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,40,-5,0,612,2,0,0 +2013,7,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,930,14,0,1025,8,0,0 +2013,9,6,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,830,-5,0,948,-13,0,0 +2013,6,11,2,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,-5,0,1920,-14,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,12,0,1151,8,0,0 +2013,9,9,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1935,-8,0,2159,-13,0,0 +2013,6,14,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1305,15,1,1440,25,1,0 +2013,8,24,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,0,0,1345,-12,0,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1425,15,1,1634,-6,0,0 +2013,5,12,7,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,612,-9,0,1100,-34,0,0 +2013,4,2,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,-8,0,1627,-18,0,0 +2013,10,24,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1455,-7,0,0 +2013,4,18,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1920,-11,0,2053,-26,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,635,-3,0,912,-17,0,0 +2013,8,14,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1850,0,0,2000,-11,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,14,0,1747,20,1,0 +2013,5,5,7,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1825,-5,0,2005,-38,0,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1118,113,1,1250,101,1,0 +2013,8,20,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1436,-8,0,1601,-30,0,0 +2013,7,31,3,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1245,9,0,1425,13,0,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,16,1,5,-5,0,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,720,-4,0,820,-4,0,0 +2013,5,5,7,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1525,-5,0,1655,-16,0,0 +2013,7,24,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-5,0,1014,-4,0,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1725,-6,0,2002,-19,0,0 +2013,8,11,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1121,1,0,1445,-7,0,0 +2013,10,19,6,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1505,8,0,1845,7,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1210,3,0,1905,12,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,846,-2,0,1141,0,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1150,-1,0,1600,22,1,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,215,1,2325,178,1,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1845,11,0,2010,7,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,159,1,1636,162,1,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,545,49,1,835,46,1,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2220,-9,0,209,-24,0,0 +2013,4,30,2,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,710,0,0,840,-25,0,0 +2013,8,15,4,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-5,0,748,-7,0,0 +2013,7,4,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1730,-5,0,2108,-42,0,0 +2013,8,30,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,7,0,831,40,1,0 +2013,6,5,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,902,-4,0,0 +2013,4,28,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1512,64,1,1618,54,1,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,720,-5,0,942,-21,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2145,-7,0,4,0,0,0 +2013,9,23,1,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1645,-2,0,1910,-2,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,745,-2,0,1135,4,0,0 +2013,10,8,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,810,-1,0,910,2,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1105,-4,0,1218,1,0,0 +2013,4,23,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,-1,0,1135,1,0,0 +2013,4,19,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1245,-2,0,1352,-4,0,0 +2013,9,7,6,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,945,-6,0,1028,-16,0,0 +2013,10,18,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1628,-6,0,2030,11,0,0 +2013,8,14,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,38,1,1500,34,1,0 +2013,10,14,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,606,11,0,855,-8,0,0 +2013,4,18,4,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1815,234,1,2055,224,1,0 +2013,9,18,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-3,0,1652,-9,0,0 +2013,8,4,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-3,0,1010,-13,0,0 +2013,7,30,2,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,37,1,1314,25,1,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,-2,0,1005,-5,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1341,-1,0,1450,-9,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2105,12,0,2359,-9,0,0 +2013,8,3,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,0,0,628,-18,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-8,0,932,0,0,0 +2013,4,8,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,800,4,0,920,-4,0,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,1,0,1435,-6,0,0 +2013,9,21,6,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,837,-12,0,0 +2013,10,15,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1812,-7,0,1912,7,0,0 +2013,8,29,4,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1425,9,0,1615,2,0,0 +2013,9,5,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1500,8,0,1745,12,0,0 +2013,7,15,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-2,0,1122,0,0,0 +2013,10,23,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,7,0,2157,-4,0,0 +2013,4,15,1,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,18,1,1715,8,0,0 +2013,9,11,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1051,-4,0,1425,-5,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,35,1,1755,44,1,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,2050,51,1,40,51,1,0 +2013,8,25,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1459,1,0,1759,-23,0,0 +2013,4,18,4,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1535,-4,0,1755,-17,0,0 +2013,10,3,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-6,0,1230,-13,0,0 +2013,9,17,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,615,-4,0,729,-12,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,1,0,1140,-5,0,0 +2013,9,26,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1450,9,0,1505,18,1,0 +2013,4,26,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,711,-5,0,1100,-15,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,-4,0,1000,-10,0,0 +2013,5,30,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2100,92,1,2334,138,1,0 +2013,5,31,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,20,1,1100,21,1,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,28,1,2220,26,1,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1910,-4,0,1955,2,0,0 +2013,6,11,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,751,-5,0,813,-15,0,0 +2013,5,30,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,-3,0,1051,7,0,0 +2013,4,29,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,4,0,1411,0,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,955,-4,0,1230,-7,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1140,12,0,1310,-19,0,0 +2013,6,21,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1630,131,1,1805,138,1,0 +2013,8,12,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,820,21,1,1002,10,0,0 +2013,5,12,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-13,0,1015,-26,0,0 +2013,6,27,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1615,-3,0,1710,-14,0,0 +2013,4,30,2,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,1420,-1,0,1722,-19,0,0 +2013,6,7,5,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,845,-7,0,1439,-19,0,0 +2013,5,12,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,900,-1,0,1025,-3,0,0 +2013,9,16,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1415,-4,0,1527,5,0,0 +2013,5,3,5,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,900,-14,0,0 +2013,9,16,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-6,0,1354,5,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1313,46,1,1544,30,1,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1835,-2,0,1925,3,0,0 +2013,6,28,5,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-1,0,1655,-3,0,0 +2013,6,28,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,24,1,1411,18,1,0 +2013,8,7,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,3,0,1954,-3,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-5,0,930,-17,0,0 +2013,9,17,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2339,-3,0,610,-11,0,0 +2013,5,11,6,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1520,6,0,1900,-2,0,0 +2013,10,10,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1340,51,1,1440,45,1,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-3,0,1405,-1,0,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,830,-1,0,945,9,0,0 +2013,6,13,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,84,1,1856,79,1,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-3,0,1020,0,0,0 +2013,10,2,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,-6,0,847,-11,0,0 +2013,7,25,4,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1755,42,1,1915,25,1,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,646,1,0,952,-14,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1510,12,0,1740,43,1,0 +2013,7,31,3,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,955,-2,0,1140,-8,0,0 +2013,4,29,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,12,0,1905,6,0,0 +2013,8,29,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-9,0,1000,-23,0,0 +2013,4,25,4,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1430,-5,0,1620,-5,0,0 +2013,10,5,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,850,-3,0,1010,-16,0,0 +2013,8,2,5,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,934,-15,0,0 +2013,5,14,2,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1030,-10,0,1830,-3,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1115,-5,0,1257,-13,0,0 +2013,5,15,3,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,645,-5,0,733,-3,0,0 +2013,8,19,1,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2258,1,0,702,5,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,-2,0,1740,-1,0,0 +2013,5,2,4,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1415,24,1,1655,3,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2010,-1,0,2340,-14,0,0 +2013,10,29,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-5,0,1202,-23,0,0 +2013,4,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,600,-1,0,725,2,0,0 +2013,4,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,20,1,1320,18,1,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,950,1,0,1040,-8,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1526,-1,0,1656,3,0,0 +2013,5,8,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1830,-3,0,2204,19,1,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1635,-9,0,1959,-14,0,0 +2013,7,9,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,-2,0,1840,-13,0,0 +2013,9,19,4,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1754,16,1,1955,11,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1415,-3,0,1635,-8,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-4,0,1147,-1,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-4,0,1115,-7,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,930,0,0,1115,5,0,0 +2013,7,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,11,0,2019,16,1,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1415,8,0,1905,-19,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1910,142,1,2345,136,1,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,12339,Indianapolis International,Indianapolis,IN,1749,24,1,1948,40,1,0 +2013,9,27,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1435,5,0,1655,-10,0,0 +2013,4,24,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1635,139,1,1840,150,1,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1615,-5,0,1800,-13,0,0 +2013,8,7,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,3,0,1221,3,0,0 +2013,7,22,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,845,-1,0,1044,-2,0,0 +2013,8,9,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1957,0,,2309,0,1,1 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1035,-5,0,1400,-12,0,0 +2013,5,25,6,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1037,-7,0,1147,-13,0,0 +2013,5,16,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,131,1,1310,125,1,0 +2013,6,8,6,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,800,-1,0,1153,-13,0,0 +2013,7,26,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,530,-3,0,705,-21,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,45,1,2326,26,1,0 +2013,6,19,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1335,1,0,1500,-6,0,0 +2013,4,16,2,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-12,0,916,-26,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1235,41,1,1433,30,1,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,800,14,0,925,13,0,0 +2013,9,28,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-1,0,1815,-12,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1003,-1,0,1459,-6,0,0 +2013,6,5,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,744,-3,0,1545,-23,0,0 +2013,6,5,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,-6,0,2105,-17,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,5,0,1430,-16,0,0 +2013,10,8,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-5,0,1810,-13,0,0 +2013,5,15,3,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1240,-2,0,1610,-6,0,0 +2013,10,14,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-7,0,1952,-5,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1410,-2,0,1640,14,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1845,-5,0,2054,-23,0,0 +2013,6,10,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1340,0,0,1515,-3,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,649,-1,0,933,0,0,0 +2013,8,9,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1850,52,1,1935,52,1,0 +2013,4,25,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,4,0,1917,1,0,0 +2013,5,27,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,25,1,1829,10,0,0 +2013,7,9,2,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1650,8,0,1744,-3,0,0 +2013,7,13,6,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1325,10,0,1546,-2,0,0 +2013,6,16,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,847,-10,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-4,0,1011,6,0,0 +2013,6,25,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,1,0,1314,8,0,0 +2013,8,17,6,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-4,0,525,-4,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2040,18,1,2140,23,1,0 +2013,6,20,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1626,-8,0,1826,-9,0,0 +2013,4,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,15,1,1303,0,0,0 +2013,8,3,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-5,0,810,-5,0,0 +2013,10,12,6,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-4,0,1815,-12,0,0 +2013,8,28,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,127,1,1810,88,1,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1030,8,0,1545,-1,0,0 +2013,9,24,2,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-8,0,1143,-21,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,-2,0,1025,-8,0,0 +2013,4,26,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,947,-5,0,1448,-19,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1706,30,1,1855,25,1,0 +2013,4,13,6,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1455,-4,0,1610,-10,0,0 +2013,9,22,7,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-3,0,1024,-11,0,0 +2013,9,21,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,700,-2,0,830,-7,0,0 +2013,9,5,4,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1410,-3,0,2225,-6,0,0 +2013,10,5,6,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,702,-3,0,1040,-13,0,0 +2013,8,16,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1020,3,0,1043,2,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,30,1,2115,52,1,0 +2013,6,13,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,722,6,0,944,6,0,0 +2013,7,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1615,3,0,2025,10,0,0 +2013,6,12,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,-14,0,2105,-16,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1500,2,0,1711,8,0,0 +2013,7,23,2,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1725,190,1,2015,195,1,0 +2013,9,4,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-7,0,1410,-7,0,0 +2013,7,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1020,-4,0,1253,-7,0,0 +2013,10,27,7,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,855,-2,0,1115,-17,0,0 +2013,10,31,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1520,0,0,1630,-1,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1859,0,0,1959,-5,0,0 +2013,4,9,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,705,6,0,835,3,0,0 +2013,10,10,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-9,0,1315,-10,0,0 +2013,6,7,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,-5,0,1240,9,0,0 +2013,8,12,1,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,99,1,2130,143,1,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2210,15,1,55,10,0,0 +2013,4,1,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1500,-2,0,1710,-11,0,0 +2013,8,9,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1653,0,0,2200,5,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1220,0,0,1337,-13,0,0 +2013,8,1,4,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1710,0,0,1835,-9,0,0 +2013,4,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1705,0,,1837,0,1,1 +2013,4,18,4,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1445,45,1,1705,51,1,0 +2013,7,8,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,44,1,827,34,1,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,-6,0,513,-1,0,0 +2013,5,4,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1600,15,1,1615,19,1,0 +2013,10,18,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-5,0,904,-1,0,0 +2013,6,17,1,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,600,-1,0,708,-3,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-5,0,1424,-21,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-3,0,1055,-15,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,-3,0,1830,21,1,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,625,-1,0,740,-9,0,0 +2013,4,9,2,9E,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-6,0,2012,-18,0,0 +2013,5,5,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1857,97,1,2010,171,1,0 +2013,6,5,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,2,0,2009,8,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-1,0,1630,-3,0,0 +2013,7,31,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1355,-2,0,1450,-7,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,821,-1,0,917,3,0,0 +2013,9,19,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1240,24,1,1350,20,1,0 +2013,7,3,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,-5,0,1813,-16,0,0 +2013,8,30,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1330,15,1,1645,7,0,0 +2013,5,28,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-3,0,1758,14,0,0 +2013,5,2,4,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1310,-2,0,1415,1,0,0 +2013,7,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,715,16,1,915,4,0,0 +2013,5,19,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1940,-2,0,2050,2,0,0 +2013,6,12,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,78,1,1735,70,1,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1840,29,1,2245,23,1,0 +2013,5,10,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1112,-1,0,1205,-8,0,0 +2013,10,11,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,15,1,1610,10,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,1,0,1405,17,1,0 +2013,9,9,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1930,-4,0,2105,12,0,0 +2013,5,24,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-2,0,1555,-10,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-5,0,1158,-10,0,0 +2013,7,16,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1601,-6,0,1645,-22,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1620,0,0,1812,18,1,0 +2013,4,9,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1715,5,0,2045,-12,0,0 +2013,7,25,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1900,31,1,2220,20,1,0 +2013,7,13,6,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1921,-11,0,2109,4,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,-1,0,1505,-14,0,0 +2013,5,20,1,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1205,3,0,1315,-9,0,0 +2013,8,28,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1816,0,0,2159,4,0,0 +2013,6,28,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,19,1,1155,13,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,-3,0,1820,-12,0,0 +2013,6,28,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,17,1,1650,66,1,0 +2013,5,5,7,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1359,15,1,1749,15,1,0 +2013,4,3,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1318,7,0,1500,-7,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,7,0,930,4,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1230,8,0,1325,3,0,0 +2013,9,27,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,745,-3,0,855,-7,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,835,-5,0,1050,-5,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1524,9,0,1846,1,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,800,3,0,1050,-2,0,0 +2013,5,28,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1400,1,0,1505,-6,0,0 +2013,9,12,4,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,955,78,1,1745,79,1,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,16,1,1315,14,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1246,1,0,1456,-7,0,0 +2013,4,8,1,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,-5,0,2200,-37,0,0 +2013,5,16,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1010,31,1,1135,28,1,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,605,15,1,729,-9,0,0 +2013,9,2,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1715,23,1,1848,38,1,0 +2013,5,10,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1140,2,0,1445,2,0,0 +2013,9,5,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1516,-5,0,1845,16,1,0 +2013,7,19,5,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2135,0,0,7,8,0,0 +2013,4,1,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14122,Pittsburgh International,Pittsburgh,PA,1400,23,1,1630,30,1,0 +2013,6,18,2,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,65,1,1914,78,1,0 +2013,10,4,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,744,-11,0,1035,10,0,0 +2013,4,27,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,21,1,1641,10,0,0 +2013,8,25,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,10,0,1405,7,0,0 +2013,6,21,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1740,1,0,1857,-5,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1550,5,0,1710,10,0,0 +2013,10,11,5,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,630,-1,0,730,-1,0,0 +2013,6,6,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,57,1,2206,57,1,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1750,4,0,1925,-3,0,0 +2013,10,24,4,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,535,-10,0,752,-4,0,0 +2013,4,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2120,-1,0,2330,10,0,0 +2013,10,16,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1216,-15,0,1340,-25,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1205,0,0,1407,-4,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,905,1,0,1440,-14,0,0 +2013,10,24,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,24,1,1625,14,0,0 +2013,6,7,5,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,-1,0,1135,-14,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-4,0,847,-2,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,106,1,1033,98,1,0 +2013,5,11,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-7,0,754,-14,0,0 +2013,9,1,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-2,0,1953,-6,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1606,-9,0,1900,-2,0,0 +2013,7,5,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1550,2,0,1840,-10,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,-2,0,1113,-13,0,0 +2013,4,2,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,750,-12,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1713,-3,0,1837,-12,0,0 +2013,7,8,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,34,1,2200,24,1,0 +2013,8,19,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1110,5,0,1229,17,1,0 +2013,4,6,6,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1408,1,0,1553,4,0,0 +2013,6,17,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,-1,0,1850,-7,0,0 +2013,7,7,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,0,,2030,0,1,1 +2013,9,4,3,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,710,19,1,1508,12,0,0 +2013,6,9,7,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1535,-3,0,1800,1,0,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,14,0,1745,0,0,0 +2013,5,18,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1639,9,0,1831,-12,0,0 +2013,6,12,3,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1810,12,0,1925,6,0,0 +2013,5,1,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,950,0,0,1200,-16,0,0 +2013,5,17,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1335,-2,0,1950,-11,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,-3,0,1430,-11,0,0 +2013,10,30,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,-7,0,711,-20,0,0 +2013,10,21,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,9,0,1045,-7,0,0 +2013,10,16,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-5,0,942,-5,0,0 +2013,5,21,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,935,-6,0,1041,-8,0,0 +2013,7,25,4,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,-2,0,655,-9,0,0 +2013,5,17,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1830,-18,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-5,0,1605,-10,0,0 +2013,6,17,1,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,925,68,1,1142,61,1,0 +2013,8,19,1,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,615,-1,0,740,-1,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,-1,0,1207,15,1,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,605,-1,0,900,5,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1840,6,0,2055,-5,0,0 +2013,9,18,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,0,,1409,0,1,1 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2025,-4,0,2150,-6,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2019,3,0,2227,17,1,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1350,0,0,1350,-4,0,0 +2013,7,5,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2000,11,0,2115,7,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1829,6,0,2150,10,0,0 +2013,6,19,3,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1010,-4,0,1321,-5,0,0 +2013,6,25,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1300,64,1,1445,90,1,0 +2013,6,27,4,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1922,30,1,2102,41,1,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,8,0,1925,8,0,0 +2013,6,2,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,31,1,1806,44,1,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1430,-5,0,1840,16,1,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1135,28,1,1425,34,1,0 +2013,5,3,5,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,800,-3,0,1105,7,0,0 +2013,7,9,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-10,0,645,-26,0,0 +2013,9,14,6,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1400,-2,0,1759,1,0,0 +2013,4,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,12,0,2224,1,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-5,0,2056,-19,0,0 +2013,10,11,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1835,23,1,1845,32,1,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-3,0,1245,-22,0,0 +2013,6,10,1,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,1725,-7,0,1849,-15,0,0 +2013,10,13,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,605,-8,0,748,-21,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-5,0,1030,-12,0,0 +2013,6,16,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,0,0,1900,-20,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,79,1,2035,65,1,0 +2013,10,9,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,24,1,1655,22,1,0 +2013,5,3,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-1,0,1633,-13,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,815,-1,0,1150,-14,0,0 +2013,4,30,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1516,-3,0,1659,6,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1030,24,1,1405,21,1,0 +2013,8,1,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,47,1,2120,17,1,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,945,0,0,1350,-11,0,0 +2013,9,26,4,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1210,-1,0,1612,-5,0,0 +2013,7,15,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1955,59,1,2145,63,1,0 +2013,6,8,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1530,9,0,1745,5,0,0 +2013,8,22,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1945,27,1,2137,39,1,0 +2013,8,4,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,841,-8,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1800,4,0,2105,-8,0,0 +2013,8,5,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1925,-9,0,2158,-16,0,0 +2013,4,13,6,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1230,26,1,1525,36,1,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1105,1,0,1235,-1,0,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1655,59,1,1822,63,1,0 +2013,7,8,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1759,7,0,1857,-5,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1410,-8,0,1734,-22,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1500,-2,0,1610,-14,0,0 +2013,6,30,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,0,0,1440,5,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1340,-2,0,1450,-12,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1020,46,1,1115,57,1,0 +2013,10,2,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1905,-1,0,2017,-7,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2008,-6,0,2102,-7,0,0 +2013,6,1,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-3,0,1420,66,1,0 +2013,8,15,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,800,-10,0,1037,4,0,0 +2013,9,2,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1720,14,0,1840,7,0,0 +2013,10,22,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-4,0,1920,-12,0,0 +2013,7,24,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-6,0,1340,-4,0,0 +2013,8,2,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1235,28,1,1355,17,1,0 +2013,4,29,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,841,-5,0,1111,-36,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1500,7,0,1930,-21,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,540,-1,0,825,-11,0,0 +2013,8,4,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,918,-6,0,1038,-11,0,0 +2013,10,12,6,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1400,-3,0,1710,-3,0,0 +2013,6,23,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2150,-1,0,2321,-3,0,0 +2013,5,24,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1540,12,0,1808,0,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1500,3,0,1610,-13,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,941,0,0,1112,8,0,0 +2013,7,8,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1210,129,1,1334,131,1,0 +2013,6,23,7,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,814,135,1,1055,122,1,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1215,-5,0,1535,-15,0,0 +2013,9,4,3,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1800,14,0,2015,8,0,0 +2013,9,29,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,840,-1,0,1248,-10,0,0 +2013,4,2,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,830,-4,0,1000,-12,0,0 +2013,9,15,7,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1830,-4,0,2137,-27,0,0 +2013,7,30,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1335,-2,0,1945,-20,0,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1410,42,1,1730,56,1,0 +2013,8,17,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1240,14,0,1355,11,0,0 +2013,6,25,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1115,17,1,1337,1,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-1,0,1500,-20,0,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,1705,11,0,1950,10,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,820,0,0,1055,-9,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,945,1,0,1420,0,0,0 +2013,4,21,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1142,3,0,1434,3,0,0 +2013,5,1,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1259,46,1,1721,32,1,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,2,0,2035,-6,0,0 +2013,4,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,847,15,1,1156,9,0,0 +2013,10,11,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2110,-1,0,519,-1,0,0 +2013,4,14,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-7,0,743,-9,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1815,7,0,2135,-1,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1935,10,0,2335,9,0,0 +2013,7,11,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1809,88,1,1917,83,1,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,-7,0,1750,-9,0,0 +2013,4,21,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1108,22,1,1154,27,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1100,-6,0,1200,-3,0,0 +2013,7,17,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1805,38,1,1850,28,1,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1000,-4,0,1039,-4,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1812,36,1,1942,22,1,0 +2013,6,25,2,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1359,-8,0,1612,-17,0,0 +2013,5,31,5,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1824,24,1,2040,-6,0,0 +2013,10,19,6,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1605,-8,0,1650,-2,0,0 +2013,6,26,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-3,0,1315,-5,0,0 +2013,4,20,6,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,40,117,1,914,104,1,0 +2013,4,21,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1510,71,1,1813,62,1,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1115,0,0,1340,-4,0,0 +2013,4,2,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-5,0,2102,-6,0,0 +2013,10,7,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1237,-7,0,1535,-15,0,0 +2013,7,23,2,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,615,0,0,705,-6,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,825,-3,0,1355,8,0,0 +2013,6,25,2,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1150,15,1,1755,10,0,0 +2013,4,15,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,910,-6,0,937,-20,0,0 +2013,8,14,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-4,0,1115,-2,0,0 +2013,5,22,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1134,-2,0,1402,-18,0,0 +2013,7,10,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1935,0,,1950,0,1,1 +2013,4,5,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1110,0,0,1315,-4,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-7,0,1058,-5,0,0 +2013,6,10,1,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1959,145,1,2140,136,1,0 +2013,10,18,5,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1640,23,1,1900,17,1,0 +2013,7,24,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1530,5,0,1650,-14,0,0 +2013,7,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,840,21,1,1000,14,0,0 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,-1,0,1156,-27,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1005,12,0,1347,9,0,0 +2013,5,13,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1217,-10,0,1317,2,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1300,4,0,1730,-1,0,0 +2013,4,27,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,-4,0,1451,2,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2151,58,1,2334,51,1,0 +2013,8,17,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,-2,0,1905,12,0,0 +2013,9,20,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,907,226,1,957,221,1,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,950,9,0,1245,33,1,0 +2013,7,21,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1919,55,1,2100,45,1,0 +2013,6,16,7,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,-6,0,2150,5,0,0 +2013,4,9,2,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1905,12,0,2120,-1,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1045,-4,0,1335,-12,0,0 +2013,5,30,4,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-1,0,906,-17,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,610,-9,0,1456,-27,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2045,-7,0,2317,-13,0,0 +2013,9,20,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1550,12,0,10,-12,0,0 +2013,4,20,6,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,815,-5,0,924,-8,0,0 +2013,6,2,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,-2,0,2107,-3,0,0 +2013,5,2,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-7,0,1125,10,0,0 +2013,7,25,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,193,1,1938,170,1,0 +2013,7,23,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,833,0,,1010,0,1,1 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1632,4,0,1758,7,0,0 +2013,4,24,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1910,24,1,55,20,1,0 +2013,10,11,5,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1155,3,0,1425,-4,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1739,67,1,1856,53,1,0 +2013,7,28,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,1,0,1250,-7,0,0 +2013,5,28,2,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,650,-2,0,1000,-18,0,0 +2013,7,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,754,-1,0,1118,-9,0,0 +2013,7,28,7,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,930,-6,0,1114,18,1,0 +2013,9,29,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-6,0,912,-12,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1731,-4,0,1835,-12,0,0 +2013,6,26,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,13,0,1225,15,1,0 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1459,-8,0,1801,-14,0,0 +2013,9,3,2,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,20,1,1218,13,0,0 +2013,6,8,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,-4,0,1100,0,0,0 +2013,7,8,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2130,65,1,2215,55,1,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1005,-7,0,1204,-6,0,0 +2013,6,3,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1520,0,0,2345,-5,0,0 +2013,8,30,5,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,620,-1,0,850,-17,0,0 +2013,8,24,6,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-11,0,935,-16,0,0 +2013,10,26,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-8,0,826,-4,0,0 +2013,6,13,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-4,0,825,-5,0,0 +2013,6,29,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,530,5,0,753,2,0,0 +2013,7,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,-2,0,1130,-7,0,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1945,28,1,2110,11,0,0 +2013,5,9,4,VX,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1855,1,0,2200,-13,0,0 +2013,9,21,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1023,-3,0,0 +2013,9,25,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,8,0,2223,1,0,0 +2013,4,26,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1945,-8,0,2045,-8,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1525,41,1,1720,23,1,0 +2013,5,8,3,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1455,48,1,2245,67,1,0 +2013,9,6,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-4,0,1835,-19,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,2059,4,0,8,-1,0,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,-5,0,2215,-9,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-3,0,1525,10,0,0 +2013,10,19,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1224,-7,0,1338,-5,0,0 +2013,7,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1729,27,1,1929,43,1,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1545,-2,0,1719,-7,0,0 +2013,6,30,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,7,0,1255,52,1,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1145,-8,0,1240,-7,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2030,-4,0,2217,-3,0,0 +2013,5,21,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2000,31,1,2120,27,1,0 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1400,169,1,1515,165,1,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1015,13,0,1305,-1,0,0 +2013,8,7,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-5,0,2010,-18,0,0 +2013,5,1,3,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1307,-7,0,1640,5,0,0 +2013,7,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,-7,0,830,-22,0,0 +2013,4,16,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,818,-7,0,928,-9,0,0 +2013,4,3,3,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-7,0,1857,-6,0,0 +2013,4,8,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,1003,-12,0,0 +2013,8,22,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,625,-5,0,635,-9,0,0 +2013,8,25,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,-4,0,1245,-5,0,0 +2013,8,28,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1806,-5,0,1955,-16,0,0 +2013,5,7,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,600,0,0,720,-3,0,0 +2013,8,7,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,-1,0,1922,-3,0,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,-4,0,2235,-30,0,0 +2013,8,11,7,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,-9,0,2308,-22,0,0 +2013,6,16,7,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,946,-1,0,1127,-8,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-3,0,1526,16,1,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,935,87,1,1055,86,1,0 +2013,8,31,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1713,-2,0,1840,-19,0,0 +2013,6,12,3,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2130,-8,0,2330,-4,0,0 +2013,5,11,6,UA,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,645,-1,0,818,0,0,0 +2013,5,18,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1200,-2,0,1551,2,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,935,10,0,1200,4,0,0 +2013,7,10,3,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1620,8,0,10,22,1,0 +2013,4,22,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1650,2,0,1935,-3,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1935,-1,0,54,-6,0,0 +2013,8,3,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,0,0,1005,-5,0,0 +2013,6,16,7,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1146,-9,0,1358,-18,0,0 +2013,6,8,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1925,87,1,2120,62,1,0 +2013,8,10,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,942,-6,0,1121,-3,0,0 +2013,10,2,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,0,0,2040,-9,0,0 +2013,9,30,1,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-2,0,1140,-3,0,0 +2013,10,12,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1446,-7,0,1641,-11,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2005,31,1,2105,27,1,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1741,-4,0,1823,8,0,0 +2013,6,1,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,805,14,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1630,17,1,1815,8,0,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1245,-2,0,1418,-14,0,0 +2013,4,13,6,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1545,7,0,1831,21,1,0 +2013,10,6,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,955,-6,0,1135,-23,0,0 +2013,7,14,7,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1700,21,1,1915,1,0,0 +2013,4,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,6,0,1010,3,0,0 +2013,4,9,2,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1050,-4,0,1308,-4,0,0 +2013,7,21,7,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,-6,0,625,-7,0,0 +2013,6,21,5,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,14,0,559,6,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1255,0,0,1645,7,0,0 +2013,8,30,5,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,940,-9,0,1051,8,0,0 +2013,9,21,6,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1550,-5,0,1904,-5,0,0 +2013,7,6,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,8,0,1828,6,0,0 +2013,6,25,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1449,-6,0,1626,-15,0,0 +2013,10,25,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,825,-3,0,1120,-15,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1720,3,0,1815,-1,0,0 +2013,6,14,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2015,32,1,2020,26,1,0 +2013,10,10,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-4,0,2123,-12,0,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,126,1,1909,123,1,0 +2013,6,5,3,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,5,0,2034,-9,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,2108,-4,0,2347,-19,0,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,740,-1,0,905,0,0,0 +2013,8,16,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1831,5,0,2205,-3,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,740,68,1,931,63,1,0 +2013,6,14,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1025,12,0,1205,-21,0,0 +2013,4,4,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1230,-8,0,1857,2,0,0 +2013,8,5,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,-1,0,1635,-8,0,0 +2013,4,29,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1255,3,0,1432,-20,0,0 +2013,10,16,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,-4,0,1320,-8,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1112,-7,0,1205,-13,0,0 +2013,4,8,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,-5,0,815,-2,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,705,-6,0,936,-18,0,0 +2013,5,22,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,43,1,1509,34,1,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,915,4,0,1005,1,0,0 +2013,4,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1855,55,1,2005,52,1,0 +2013,6,24,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-5,0,1720,4,0,0 +2013,9,6,5,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,174,1,2111,173,1,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,8,0,1535,3,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1210,-4,0,1350,-4,0,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1450,6,0,1755,-4,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-9,0,2355,-3,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,-2,0,2340,-18,0,0 +2013,9,15,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,827,-5,0,0 +2013,8,9,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,0,,1345,0,1,1 +2013,4,3,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,600,1,0,850,10,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,811,-2,0,1013,-6,0,0 +2013,5,15,3,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1538,2,0,1648,10,0,0 +2013,6,22,6,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,812,21,1,1008,12,0,0 +2013,8,15,4,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,812,-5,0,0 +2013,5,24,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1347,41,1,1652,33,1,0 +2013,4,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2155,26,1,2305,24,1,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1650,15,1,1815,6,0,0 +2013,4,27,6,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,9,0,540,18,1,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,-3,0,1004,-10,0,0 +2013,8,5,1,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,831,-6,0,1025,-20,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1755,0,,2140,0,1,1 +2013,6,20,4,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1000,1,0,1145,1,0,0 +2013,10,16,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-5,0,910,-6,0,0 +2013,8,22,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1845,61,1,2110,60,1,0 +2013,4,27,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,740,2,0,755,-1,0,0 +2013,7,28,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1930,54,1,2050,62,1,0 +2013,10,30,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,850,8,0,1015,2,0,0 +2013,5,10,5,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1949,4,0,2240,18,1,0 +2013,8,3,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,55,-3,0,546,-5,0,0 +2013,8,9,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,15,1,1540,10,0,0 +2013,6,19,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,-1,0,2059,-1,0,0 +2013,6,6,4,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1005,-2,0,1232,-11,0,0 +2013,8,31,6,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-3,0,1944,-28,0,0 +2013,6,14,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,194,1,927,182,1,0 +2013,4,26,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1859,0,0,2003,-8,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1742,-3,0,1844,10,0,0 +2013,9,14,6,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-5,0,1323,-27,0,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1940,-4,0,2305,-5,0,0 +2013,4,11,4,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,709,-7,0,1059,3,0,0 +2013,10,14,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1310,0,0,1445,23,1,0 +2013,7,28,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1348,-6,0,1510,-5,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,22,1,1850,10,0,0 +2013,6,2,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1358,0,0,1715,-18,0,0 +2013,6,25,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,24,1,1255,26,1,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1644,-10,0,1944,-23,0,0 +2013,4,21,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1555,-4,0,1910,6,0,0 +2013,10,20,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1230,-10,0,1422,-16,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,87,1,1900,140,1,0 +2013,7,20,6,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,-7,0,1600,-14,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,92,1,1757,84,1,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2200,1,0,5,3,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,900,-2,0,1055,0,0,0 +2013,8,16,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1136,-4,0,1300,-13,0,0 +2013,10,16,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1240,0,0,1333,10,0,0 +2013,8,13,2,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2320,3,0,650,-14,0,0 +2013,4,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1535,-12,0,1755,-20,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1455,0,0,1831,-28,0,0 +2013,6,27,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1224,-5,0,1448,0,0,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1105,14,0,1410,-1,0,0 +2013,7,21,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1110,-1,0,1229,-19,0,0 +2013,9,11,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,-3,0,755,-7,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,954,7,0,1305,-20,0,0 +2013,9,8,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2010,-4,0,2059,-4,0,0 +2013,6,5,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,1000,-9,0,0 +2013,4,1,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1250,11,0,1614,7,0,0 +2013,9,4,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-4,0,1605,-21,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1425,0,0,1635,6,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1340,-4,0,1608,-20,0,0 +2013,7,31,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-6,0,1100,-17,0,0 +2013,4,24,3,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1457,32,1,1805,41,1,0 +2013,6,5,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,35,1,1634,14,0,0 +2013,6,10,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,720,1,0,825,-8,0,0 +2013,7,9,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,800,-3,0,1301,6,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1100,17,1,1245,16,1,0 +2013,6,6,4,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,0,0,1425,-2,0,0 +2013,9,2,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-4,0,2135,-10,0,0 +2013,6,24,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1556,-1,0,1854,-13,0,0 +2013,9,19,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1118,-2,0,1226,-22,0,0 +2013,5,14,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,0,0,1728,-15,0,0 +2013,5,5,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,700,3,0,1029,3,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,9,0,1655,8,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1150,9,0,1325,-5,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,0,0,2105,12,0,0 +2013,6,16,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-4,0,30,-6,0,0 +2013,8,6,2,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1654,67,1,1730,97,1,0 +2013,9,15,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,0,0,2232,-10,0,0 +2013,5,15,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,-5,0,2300,-18,0,0 +2013,9,8,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-4,0,825,-11,0,0 +2013,8,5,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,12,0,2105,12,0,0 +2013,9,29,7,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1014,-2,0,1224,4,0,0 +2013,8,2,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,0,0,1544,11,0,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-5,0,1229,1,0,0 +2013,4,29,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,633,-6,0,0 +2013,6,10,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,18,1,2030,26,1,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1420,2,0,1530,-9,0,0 +2013,7,29,1,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,70,1,2029,90,1,0 +2013,4,11,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,3,0,655,-8,0,0 +2013,5,8,3,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,950,7,0,1205,20,1,0 +2013,9,4,3,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1645,-1,0,1813,-21,0,0 +2013,8,19,1,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1415,-7,0,1551,-9,0,0 +2013,4,15,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,845,-2,0,940,-7,0,0 +2013,8,1,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,935,0,,941,0,1,1 +2013,10,26,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,745,-8,0,1045,-19,0,0 +2013,6,15,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2021,28,1,2200,1,0,0 +2013,5,13,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1110,24,1,1324,23,1,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1201,-5,0,1333,-14,0,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,840,4,0,940,13,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,54,1,2150,54,1,0 +2013,6,16,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2201,8,0,2258,7,0,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1245,68,1,1840,56,1,0 +2013,10,20,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-3,0,2051,0,0,0 +2013,9,15,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-3,0,2055,-10,0,0 +2013,6,13,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-4,0,1125,-9,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1252,25,1,1515,29,1,0 +2013,10,2,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1117,-2,0,1312,-2,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1250,0,0,1416,51,1,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1235,0,0,1255,2,0,0 +2013,10,31,4,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1850,-4,0,2010,-18,0,0 +2013,6,2,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,645,-1,0,705,-7,0,0 +2013,9,30,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,0,0,1330,0,0,0 +2013,5,2,4,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-3,0,1105,1,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1530,21,1,2000,-1,0,0 +2013,4,29,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,850,0,,1025,0,1,1 +2013,6,4,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,-1,0,813,-7,0,0 +2013,6,28,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,628,97,1,815,77,1,0 +2013,5,9,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,0,0,1857,2,0,0 +2013,8,17,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,830,-4,0,1025,1,0,0 +2013,9,11,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1535,65,1,1652,44,1,0 +2013,10,20,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1745,-5,0,1845,2,0,0 +2013,10,29,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1920,-3,0,2020,-12,0,0 +2013,4,17,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,5,0,2133,0,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1620,-1,0,1725,-10,0,0 +2013,7,30,2,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1349,8,0,1520,1,0,0 +2013,6,19,3,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,716,-21,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,906,21,1,1753,17,1,0 +2013,9,7,6,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-7,0,1645,-3,0,0 +2013,10,3,4,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,2240,0,0,616,-34,0,0 +2013,4,12,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1730,-1,0,2041,-4,0,0 +2013,7,24,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1355,1,0,1515,5,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,21,1,1600,14,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1905,14,0,2130,27,1,0 +2013,9,26,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,750,15,1,1546,2,0,0 +2013,8,11,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,-5,0,1648,-1,0,0 +2013,8,4,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,104,1,2046,91,1,0 +2013,10,30,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1333,-6,0,1553,5,0,0 +2013,9,13,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,725,-3,0,850,3,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1733,-5,0,1915,20,1,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1310,-2,0,1415,8,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1050,13,0,1720,74,1,0 +2013,6,27,4,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,93,1,1410,90,1,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1620,-9,0,1906,-8,0,0 +2013,10,14,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,-5,0,835,-6,0,0 +2013,9,10,2,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-15,0,1445,-43,0,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1841,117,1,2011,122,1,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,940,36,1,1240,29,1,0 +2013,5,12,7,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1950,0,0,2200,20,1,0 +2013,8,4,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1950,-6,0,2215,-11,0,0 +2013,10,11,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,0,0,1245,2,0,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,3,0,1326,2,0,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1325,9,0,1454,-19,0,0 +2013,4,30,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1700,-5,0,2050,-24,0,0 +2013,8,27,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1851,7,0,1941,0,0,0 +2013,9,24,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,-7,0,1223,-5,0,0 +2013,10,15,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-6,0,1520,-3,0,0 +2013,4,27,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-7,0,1555,-12,0,0 +2013,6,8,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1645,46,1,1915,44,1,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1845,41,1,2040,47,1,0 +2013,7,27,6,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-3,0,1845,-22,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-4,0,1015,1,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2145,-3,0,2352,-15,0,0 +2013,8,6,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1445,57,1,1811,58,1,0 +2013,6,14,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1705,32,1,1820,21,1,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,9,0,2100,10,0,0 +2013,8,8,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,38,1,1414,35,1,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,-6,0,1917,-3,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1607,-1,0,1901,-11,0,0 +2013,9,29,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1930,-6,0,2120,-15,0,0 +2013,10,17,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,20,1,1320,26,1,0 +2013,8,26,1,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1741,-9,0,1904,-7,0,0 +2013,5,28,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,2,0,1348,14,0,0 +2013,4,9,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2150,2,0,2329,-9,0,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1845,8,0,19,8,0,0 +2013,5,15,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1930,-5,0,2115,-17,0,0 +2013,7,19,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,715,-5,0,950,-4,0,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1900,31,1,2025,29,1,0 +2013,7,9,2,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,930,1,0,1340,-4,0,0 +2013,7,2,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,-8,0,1845,-14,0,0 +2013,7,3,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2055,33,1,2158,20,1,0 +2013,5,22,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,825,-3,0,855,-21,0,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1330,-1,0,1614,-22,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,2,0,2200,3,0,0 +2013,4,19,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-9,0,759,-1,0,0 +2013,6,10,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,605,10,0,730,26,1,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,6,0,1701,-1,0,0 +2013,10,29,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1725,-5,0,1810,-12,0,0 +2013,9,13,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1315,-2,0,1550,-6,0,0 +2013,6,3,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1602,16,1,1853,-2,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,959,38,1,1113,27,1,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,730,-5,0,830,-9,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-6,0,1252,11,0,0 +2013,10,30,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1955,-2,0,2257,15,1,0 +2013,8,2,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2119,34,1,2354,13,0,0 +2013,7,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,3,0,904,-1,0,0 +2013,8,26,1,9E,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1425,-3,0,1618,-2,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2215,7,0,2318,13,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-8,0,825,-17,0,0 +2013,8,2,5,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1232,-6,0,1433,36,1,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2114,24,1,2221,24,1,0 +2013,5,7,2,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1915,57,1,2015,50,1,0 +2013,5,31,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2135,6,0,2156,22,1,0 +2013,8,13,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1145,-5,0,1155,-7,0,0 +2013,8,6,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1341,-6,0,1650,-27,0,0 +2013,9,4,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-2,0,1252,-33,0,0 +2013,7,3,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,1,0,1005,10,0,0 +2013,4,18,4,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1659,11,0,1906,-1,0,0 +2013,8,15,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1415,-1,0,1510,-15,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1123,-1,0,1251,-13,0,0 +2013,8,23,5,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1840,-8,0,2150,2,0,0 +2013,6,24,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1255,-2,0,1600,1,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1920,-6,0,2103,-21,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,4,0,1235,-13,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1430,89,1,1640,89,1,0 +2013,8,15,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1455,19,1,1605,25,1,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,3,0,1222,0,0,0 +2013,6,3,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,600,-7,0,1428,-29,0,0 +2013,6,5,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-2,0,1515,13,0,0 +2013,7,11,4,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1200,22,1,1358,23,1,0 +2013,7,19,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1119,-8,0,1310,-26,0,0 +2013,9,23,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1818,-8,0,1959,-17,0,0 +2013,8,16,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1255,1,0,1405,-2,0,0 +2013,6,2,7,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1300,-2,0,2135,-3,0,0 +2013,4,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1140,-2,0,1445,-1,0,0 +2013,10,27,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,8,0,1819,-6,0,0 +2013,7,1,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,-3,0,1903,-6,0,0 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2010,0,0,2236,-20,0,0 +2013,4,11,4,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,925,26,1,1045,24,1,0 +2013,8,19,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1056,-5,0,1205,-9,0,0 +2013,10,11,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1330,-1,0,2120,-20,0,0 +2013,5,2,4,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,24,1,1110,9,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1100,83,1,1200,84,1,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-4,0,1005,-19,0,0 +2013,10,25,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,10,0,2149,8,0,0 +2013,7,27,6,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1945,0,0,2130,-20,0,0 +2013,7,13,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1515,10,0,1630,41,1,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1428,6,0,1553,-4,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,27,1,1535,18,1,0 +2013,5,8,3,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1905,0,,2132,0,1,1 +2013,5,15,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,1435,-21,0,0 +2013,9,28,6,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,0,0,825,-6,0,0 +2013,7,17,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-8,0,807,-14,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,950,-4,0,1145,1,0,0 +2013,10,23,3,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1055,-5,0,1210,-3,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-4,0,941,-10,0,0 +2013,9,24,2,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1305,0,0,1716,-20,0,0 +2013,5,26,7,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1101,-1,0,1438,3,0,0 +2013,8,29,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-2,0,1420,-7,0,0 +2013,10,4,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,830,-7,0,1010,-24,0,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-2,0,2048,-5,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1310,-2,0,1446,17,1,0 +2013,9,22,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-4,0,1028,-16,0,0 +2013,7,4,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1910,-11,0,2125,-19,0,0 +2013,8,27,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2235,0,0,130,-22,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,51,1,1951,73,1,0 +2013,7,18,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-1,0,1434,-6,0,0 +2013,10,6,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1953,-4,0,2130,6,0,0 +2013,10,1,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-6,0,805,-8,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1515,-3,0,1620,-4,0,0 +2013,9,1,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1845,-1,0,1855,-11,0,0 +2013,5,13,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,0,,1435,0,1,1 +2013,8,12,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,-3,0,801,-18,0,0 +2013,4,3,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1447,5,0,1651,7,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,740,-4,0,1110,-11,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,708,74,1,1120,58,1,0 +2013,9,8,7,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,646,-17,0,0 +2013,10,15,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,933,-6,0,1230,1,0,0 +2013,9,3,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,800,-3,0,1015,15,1,0 +2013,7,5,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,11,0,1110,11,0,0 +2013,7,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1251,104,1,1618,85,1,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-3,0,1413,11,0,0 +2013,8,8,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,939,-14,0,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1854,22,1,2207,12,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2011,1,0,2306,-9,0,0 +2013,8,28,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2220,12,0,2305,8,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1536,10,0,1739,12,0,0 +2013,8,21,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-3,0,1602,9,0,0 +2013,4,8,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,600,-3,0,835,-9,0,0 +2013,7,9,2,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,135,1,1644,149,1,0 +2013,5,23,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2013,0,0,2030,4,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1805,4,0,2030,21,1,0 +2013,9,13,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-5,0,1015,-12,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1540,4,0,1810,7,0,0 +2013,4,8,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,-9,0,1125,-31,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-2,0,1010,-3,0,0 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1716,-2,0,2341,-20,0,0 +2013,4,10,3,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,0,,911,0,1,1 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1025,2,0,1232,-9,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1640,18,1,1835,0,0,0 +2013,5,5,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1900,5,0,2000,4,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,850,-4,0,1726,22,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1655,12,0,2130,5,0,0 +2013,7,25,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,17,1,1540,18,1,0 +2013,6,30,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,831,-1,0,1459,3,0,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1526,41,1,1837,62,1,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,-3,0,2009,-15,0,0 +2013,6,2,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,49,1,912,20,1,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1005,-1,0,1313,-3,0,0 +2013,4,18,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1825,78,1,1955,61,1,0 +2013,10,11,5,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,630,-8,0,840,6,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,0,,2254,0,1,1 +2013,8,8,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1845,14,0,1945,6,0,0 +2013,4,16,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1821,2,0,1957,7,0,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1610,7,0,1701,10,0,0 +2013,5,28,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,-2,0,2259,3,0,0 +2013,10,21,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,46,1,1912,31,1,0 +2013,8,18,7,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,-5,0,1828,15,1,0 +2013,7,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2244,3,0,15,-1,0,0 +2013,8,13,2,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,515,-1,0,800,-13,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,1,0,1705,-7,0,0 +2013,8,4,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-2,0,735,-8,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1205,155,1,1430,150,1,0 +2013,4,25,4,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1505,59,1,2340,36,1,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,74,1,1115,82,1,0 +2013,9,20,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,10,0,1330,2,0,0 +2013,10,4,5,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-3,0,752,-7,0,0 +2013,9,13,5,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,620,-5,0,850,-5,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,-7,0,2224,-24,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,924,-6,0,1048,3,0,0 +2013,8,17,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1049,21,1,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,-4,0,914,-9,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,-2,0,1815,9,0,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2015,1,0,2320,-5,0,0 +2013,6,28,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,106,1,2106,83,1,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1810,30,1,1935,51,1,0 +2013,5,21,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,744,30,1,1550,3,0,0 +2013,6,2,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,-3,0,1535,-9,0,0 +2013,6,11,2,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1640,49,1,1813,20,1,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,915,12,0,1307,21,1,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1320,7,0,1800,-23,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1600,-3,0,1745,-4,0,0 +2013,4,30,2,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,700,-9,0,945,-26,0,0 +2013,6,23,7,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,606,-6,0,735,-29,0,0 +2013,8,26,1,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,-7,0,1551,-16,0,0 +2013,4,24,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-5,0,735,-17,0,0 +2013,10,31,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,2,0,1330,-11,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1049,-1,0,1442,-20,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,33,1,2018,33,1,0 +2013,10,15,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,-3,0,1615,-4,0,0 +2013,7,26,5,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-15,0,902,-5,0,0 +2013,4,8,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1450,-1,0,1735,-19,0,0 +2013,8,4,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,0,,1735,0,1,1 +2013,4,2,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-6,0,1530,-12,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,24,1,1310,14,0,0 +2013,5,17,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1355,8,0,1450,3,0,0 +2013,6,26,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1030,145,1,1035,168,1,0 +2013,10,24,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,6,0,1445,0,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,710,-6,0,1151,-10,0,0 +2013,7,28,7,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,625,-8,0,752,-4,0,0 +2013,7,25,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2056,-8,0,512,-7,0,0 +2013,9,22,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2105,66,1,2240,62,1,0 +2013,5,29,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,-8,0,2055,-7,0,0 +2013,7,10,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,1,0,1705,-10,0,0 +2013,10,23,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1925,88,1,1940,77,1,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1001,268,1,1146,272,1,0 +2013,8,24,6,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2329,-2,0,757,0,0,0 +2013,6,28,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,618,25,1,733,23,1,0 +2013,7,6,6,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-5,0,1216,-11,0,0 +2013,10,3,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1258,93,1,1406,81,1,0 +2013,6,24,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1510,3,0,1620,8,0,0 +2013,7,11,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1243,10,0,1611,4,0,0 +2013,9,18,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,800,0,0,1015,4,0,0 +2013,10,9,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,-4,0,2220,-20,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,846,-3,0,939,-14,0,0 +2013,10,2,3,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,1830,-17,0,2205,-44,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1703,110,1,1847,92,1,0 +2013,4,1,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,934,-4,0,1044,6,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,700,-7,0,805,-5,0,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1730,3,0,1835,-6,0,0 +2013,8,13,2,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-1,0,1300,-4,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1915,4,0,2236,-3,0,0 +2013,7,18,4,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1805,2,0,1925,-22,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,630,-1,0,740,-5,0,0 +2013,5,27,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1145,-2,0,1513,-3,0,0 +2013,10,28,1,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1516,18,1,1710,29,1,0 +2013,4,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-2,0,1523,6,0,0 +2013,4,4,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,2000,39,1,2159,15,1,0 +2013,10,30,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2050,9,0,2220,-7,0,0 +2013,9,6,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,4,0,1535,4,0,0 +2013,4,10,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1125,1,0,1200,6,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1510,0,0,1639,10,0,0 +2013,7,2,2,B6,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1547,-5,0,1830,21,1,0 +2013,7,29,1,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2213,8,0,605,-11,0,0 +2013,6,29,6,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1250,-2,0,1425,-13,0,0 +2013,7,4,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,-3,0,625,-1,0,0 +2013,4,30,2,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,-4,0,820,-4,0,0 +2013,5,15,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-12,0,1804,-18,0,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,-1,0,1640,6,0,0 +2013,10,29,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,10,0,1400,18,1,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,-5,0,1130,-19,0,0 +2013,9,18,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-6,0,1521,-9,0,0 +2013,8,1,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,3,0,1810,6,0,0 +2013,9,21,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,730,-9,0,925,-26,0,0 +2013,4,18,4,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1054,0,,1220,0,1,1 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1619,-3,0,1800,2,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1729,53,1,2045,24,1,0 +2013,5,11,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,55,1,1026,14,0,0 +2013,7,3,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,0,0,1828,11,0,0 +2013,6,12,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1116,15,1,1241,10,0,0 +2013,7,9,2,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1113,392,1,1227,386,1,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1730,11,0,1956,13,0,0 +2013,6,10,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,-8,0,2031,-18,0,0 +2013,9,18,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1011,-4,0,1034,-16,0,0 +2013,4,5,5,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1840,-7,0,2056,-20,0,0 +2013,6,4,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-5,0,1800,-28,0,0 +2013,8,4,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,2,0,1813,2,0,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1720,35,1,1845,30,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,855,5,0,1110,-4,0,0 +2013,6,13,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1320,8,0,1850,-12,0,0 +2013,6,11,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,833,-34,0,0 +2013,5,31,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-3,0,709,-21,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1925,32,1,2217,29,1,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-4,0,1409,-3,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1850,6,0,2324,31,1,0 +2013,8,22,4,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-8,0,1300,-19,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1622,-2,0,1714,-10,0,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-3,0,1048,0,0,0 +2013,5,4,6,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1714,59,1,1840,135,1,0 +2013,6,23,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,609,-7,0,1429,-4,0,0 +2013,9,11,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1105,-6,0,1205,2,0,0 +2013,10,30,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-8,0,845,-1,0,0 +2013,6,21,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1721,-1,0,1940,-7,0,0 +2013,9,4,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,12,0,1935,-10,0,0 +2013,6,24,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,83,1,1642,86,1,0 +2013,6,17,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1235,8,0,1415,15,1,0 +2013,6,17,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,38,1,2215,24,1,0 +2013,8,5,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-4,0,1612,-5,0,0 +2013,8,16,5,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,905,-2,0,1125,-3,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1905,17,1,2030,35,1,0 +2013,9,6,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,0,0,1012,-14,0,0 +2013,5,30,4,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-1,0,2035,-18,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,5,0,1150,-10,0,0 +2013,4,22,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-3,0,1633,-4,0,0 +2013,7,11,4,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1638,-7,0,1727,-12,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,0,0,1707,-9,0,0 +2013,7,27,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,802,0,0,900,-13,0,0 +2013,7,23,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1415,0,0,1540,1,0,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,19,1,1405,16,1,0 +2013,8,21,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1345,28,1,1429,26,1,0 +2013,7,19,5,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1448,8,0,1709,0,0,0 +2013,6,2,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1019,224,1,1347,263,1,0 +2013,10,22,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2010,11,0,2055,10,0,0 +2013,10,10,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1320,11,0,1505,3,0,0 +2013,5,12,7,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,652,-18,0,0 +2013,8,14,3,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1539,-15,0,1900,-6,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2002,0,0,2142,-10,0,0 +2013,7,29,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2105,-5,0,2225,-9,0,0 +2013,6,11,2,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1945,3,0,2057,-20,0,0 +2013,10,6,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-4,0,1912,0,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,-2,0,1924,-15,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,8,0,1540,11,0,0 +2013,5,5,7,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1420,-1,0,1700,-30,0,0 +2013,4,25,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2054,32,1,2112,31,1,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2236,82,1,624,64,1,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,826,0,0,1653,-5,0,0 +2013,8,8,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1230,31,1,1403,30,1,0 +2013,8,2,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,0,0,950,-5,0,0 +2013,9,25,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,-8,0,1925,-18,0,0 +2013,10,17,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1455,4,0,1615,5,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2010,131,1,2340,120,1,0 +2013,10,12,6,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1105,-2,0,1305,-5,0,0 +2013,9,8,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1551,-4,0,1730,-9,0,0 +2013,5,15,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,-8,0,1130,-14,0,0 +2013,8,16,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-4,0,721,-21,0,0 +2013,7,2,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,-4,0,915,-13,0,0 +2013,9,2,1,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-4,0,1529,-6,0,0 +2013,4,12,5,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1535,5,0,1820,-15,0,0 +2013,7,13,6,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,550,-4,0,749,16,1,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1525,-4,0,1849,-39,0,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1530,25,1,1810,15,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1754,12,0,2028,-7,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,-4,0,1725,-13,0,0 +2013,4,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1900,12,0,2125,12,0,0 +2013,4,8,1,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,118,1,2314,123,1,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1320,0,0,1415,0,0,0 +2013,9,15,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2140,-11,0,2250,-18,0,0 +2013,8,24,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1610,5,0,2230,14,0,0 +2013,5,11,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,850,-8,0,1027,-19,0,0 +2013,5,11,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1454,8,0,1759,-12,0,0 +2013,4,19,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1010,62,1,1129,51,1,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1310,-1,0,1415,-4,0,0 +2013,7,23,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,0,0,1347,0,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1505,-4,0,1635,-28,0,0 +2013,5,21,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-1,0,1000,7,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2035,20,1,2155,32,1,0 +2013,8,1,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,715,5,0,915,1,0,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1735,4,0,30,-1,0,0 +2013,10,29,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1018,-8,0,0 +2013,4,9,2,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-2,0,1200,4,0,0 +2013,9,11,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,5,0,1508,-4,0,0 +2013,6,6,4,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,835,-1,0,1000,-9,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1625,0,0,1730,-2,0,0 +2013,6,6,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1325,-4,0,1525,-10,0,0 +2013,5,5,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,840,-6,0,1024,-5,0,0 +2013,9,19,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,942,-9,0,1221,-12,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,0,0,2340,-13,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1405,35,1,1845,61,1,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,835,0,0,1025,-2,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2005,7,0,2149,-3,0,0 +2013,5,29,3,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1446,13,0,1628,4,0,0 +2013,9,23,1,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,700,-3,0,854,1,0,0 +2013,9,4,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,-8,0,1759,9,0,0 +2013,8,16,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-8,0,1633,-11,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-4,0,850,-15,0,0 +2013,9,21,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1810,23,1,1910,24,1,0 +2013,4,13,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,4,0,1635,6,0,0 +2013,9,23,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,720,0,0,830,0,0,0 +2013,9,2,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,3,0,1945,14,0,0 +2013,8,3,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,730,0,,1040,0,1,1 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1459,-2,0,1746,-3,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1706,-3,0,2111,-34,0,0 +2013,7,29,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1500,68,1,2330,57,1,0 +2013,6,22,6,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-3,0,1215,-20,0,0 +2013,10,31,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1829,-13,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,950,7,0,1205,5,0,0 +2013,10,14,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,735,14,0,1130,12,0,0 +2013,6,18,2,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-9,0,840,-17,0,0 +2013,6,1,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-8,0,705,-5,0,0 +2013,6,9,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1515,-10,0,1648,-3,0,0 +2013,8,22,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,-1,0,913,-13,0,0 +2013,9,19,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1628,2,0,1855,-3,0,0 +2013,9,24,2,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1428,-11,0,1605,-6,0,0 +2013,4,15,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-4,0,1519,4,0,0 +2013,8,24,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,-5,0,1645,-23,0,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1135,73,1,1725,58,1,0 +2013,4,5,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-8,0,1453,-7,0,0 +2013,10,1,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-4,0,1900,-27,0,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,107,1,2243,100,1,0 +2013,9,18,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1313,10,0,1400,-1,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,3,0,2300,-15,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,732,-5,0,923,-7,0,0 +2013,6,5,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1400,29,1,1735,17,1,0 +2013,4,13,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1332,151,1,1553,128,1,0 +2013,5,1,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,725,-4,0,905,-27,0,0 +2013,9,15,7,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1627,-10,0,1730,-19,0,0 +2013,9,22,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1210,16,1,1445,8,0,0 +2013,7,30,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-5,0,1615,-20,0,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1150,5,0,1340,4,0,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1311,111,1,1605,127,1,0 +2013,7,12,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,39,1,1125,40,1,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1905,-1,0,2019,-12,0,0 +2013,8,30,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1135,4,0,1312,6,0,0 +2013,9,5,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1715,-7,0,1954,-21,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1440,0,0,1915,-11,0,0 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,845,-1,0,1012,17,1,0 +2013,5,20,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,924,4,0,1259,-33,0,0 +2013,6,12,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,14,0,1350,4,0,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1907,-6,0,2033,-6,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,36,1,2140,21,1,0 +2013,10,6,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1107,-5,0,1216,-30,0,0 +2013,6,19,3,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1514,-1,0,2015,-8,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1425,19,1,1530,12,0,0 +2013,4,12,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-4,0,1200,-7,0,0 +2013,7,15,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,51,1,1728,31,1,0 +2013,9,17,2,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1203,-3,0,1330,1,0,0 +2013,5,3,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-3,0,1320,-15,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1854,42,1,1948,35,1,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1036,-6,0,1238,-16,0,0 +2013,9,24,2,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1820,-11,0,2130,13,0,0 +2013,9,4,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,910,4,0,1052,-9,0,0 +2013,6,6,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1700,-5,0,1839,-15,0,0 +2013,4,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1625,3,0,1740,-3,0,0 +2013,8,17,6,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1205,-2,0,1415,15,1,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2145,45,1,2250,38,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1010,1,0,1430,-21,0,0 +2013,4,17,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1750,45,1,2000,69,1,0 +2013,6,15,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-14,0,500,-14,0,0 +2013,9,4,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,640,-3,0,1110,16,1,0 +2013,6,2,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1505,8,0,1731,-9,0,0 +2013,4,24,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,645,-1,0,740,-5,0,0 +2013,10,9,3,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,610,-7,0,745,-11,0,0 +2013,6,20,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2005,-2,0,2024,-2,0,0 +2013,4,15,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-9,0,1350,-17,0,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1430,4,0,1610,-6,0,0 +2013,4,22,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-2,0,1054,22,1,0 +2013,4,7,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-6,0,729,-17,0,0 +2013,6,20,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-8,0,1209,-8,0,0 +2013,5,23,4,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,-4,0,1510,-12,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,730,-3,0,900,-5,0,0 +2013,9,23,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-6,0,2020,-3,0,0 +2013,8,26,1,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1440,-1,0,1721,-11,0,0 +2013,5,27,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,-8,0,745,1,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,945,1,0,1115,-6,0,0 +2013,10,8,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-4,0,1205,-4,0,0 +2013,10,29,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1610,-5,0,1811,-19,0,0 +2013,6,30,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,0,0,1147,6,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1805,-5,0,2056,-5,0,0 +2013,7,23,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1119,-6,0,1310,-7,0,0 +2013,6,12,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-1,0,1250,-19,0,0 +2013,8,24,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-6,0,1535,-24,0,0 +2013,8,13,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,-2,0,1925,6,0,0 +2013,7,3,3,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1705,2,0,1937,2,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,-4,0,1155,-1,0,0 +2013,7,8,1,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1855,10,0,2008,9,0,0 +2013,8,15,4,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,0,,1303,0,1,1 +2013,4,12,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,16,1,1715,14,0,0 +2013,7,21,7,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1115,-2,0,1300,4,0,0 +2013,7,24,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,645,-9,0,823,-4,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,915,5,0,1135,-16,0,0 +2013,7,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-3,0,1300,2,0,0 +2013,6,8,6,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,3,0,1950,24,1,0 +2013,10,10,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2010,-1,0,2318,-22,0,0 +2013,4,1,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1420,-1,0,1720,-16,0,0 +2013,6,22,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,615,-4,0,725,2,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1135,10,0,1355,-16,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2115,59,1,5,48,1,0 +2013,8,9,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,3,0,1035,1,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,757,84,1,931,91,1,0 +2013,10,18,5,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,0,0,1957,24,1,0 +2013,5,5,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1349,0,0,1555,31,1,0 +2013,4,17,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,735,-4,0,905,-15,0,0 +2013,5,31,5,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1820,14,0,2105,5,0,0 +2013,4,19,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-8,0,2037,-17,0,0 +2013,5,17,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1500,14,0,1812,7,0,0 +2013,8,27,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1238,-9,0,1457,-7,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1750,134,1,1915,125,1,0 +2013,7,29,1,OO,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1436,115,1,1624,116,1,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,0,0,1754,-9,0,0 +2013,9,14,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-2,0,1559,-10,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,13,0,826,7,0,0 +2013,6,21,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,9,0,1840,21,1,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1416,-1,0,1602,-15,0,0 +2013,8,25,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,825,-2,0,1105,-9,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,935,79,1,1035,175,1,0 +2013,7,21,7,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-4,0,1019,-11,0,0 +2013,4,9,2,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,745,-4,0,857,13,0,0 +2013,9,7,6,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,600,-5,0,730,-15,0,0 +2013,8,2,5,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1810,-3,0,2021,-7,0,0 +2013,8,7,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1010,28,1,1145,23,1,0 +2013,9,3,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1803,16,1,1848,7,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,1,0,1240,-4,0,0 +2013,9,12,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2028,-2,0,2150,-2,0,0 +2013,6,22,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-12,0,1140,-17,0,0 +2013,10,18,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,755,13,0,1036,20,1,0 +2013,10,28,1,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,955,-2,0,1240,12,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1330,22,1,1455,12,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2243,5,0,726,-2,0,0 +2013,5,3,5,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2105,-1,0,2340,-21,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1612,11,0,1810,-10,0,0 +2013,8,18,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1817,132,1,2110,183,1,0 +2013,9,11,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1252,-10,0,1504,-13,0,0 +2013,5,1,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-7,0,1757,-4,0,0 +2013,5,1,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,-3,0,620,9,0,0 +2013,5,13,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,-10,0,558,-13,0,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1335,-1,0,1700,1,0,0 +2013,7,1,1,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1720,87,1,1849,83,1,0 +2013,6,20,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1850,12,0,40,4,0,0 +2013,6,7,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,18,1,1340,12,0,0 +2013,4,24,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1404,-6,0,0 +2013,6,9,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1935,48,1,2045,72,1,0 +2013,4,9,2,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,900,56,1,1025,44,1,0 +2013,4,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,940,0,0,1015,-2,0,0 +2013,8,5,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1352,13,0,1438,3,0,0 +2013,5,28,2,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,12954,Long Beach Airport,Long Beach,CA,105,0,0,723,-14,0,0 +2013,7,29,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1254,-7,0,1349,-23,0,0 +2013,5,20,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,945,-4,0,1053,-12,0,0 +2013,9,9,1,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,600,-3,0,714,-16,0,0 +2013,10,31,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,0,0,635,-10,0,0 +2013,10,11,5,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,804,-5,0,925,0,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,715,-1,0,920,-18,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1340,-1,0,1516,-14,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-2,0,1442,-20,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1650,-5,0,2200,-28,0,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1115,32,1,1610,36,1,0 +2013,5,24,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,740,-1,0,915,-3,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-3,0,1109,-2,0,0 +2013,9,28,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-3,0,820,-13,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1435,-1,0,1657,-1,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,600,5,0,915,2,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,-5,0,1811,4,0,0 +2013,7,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,24,1,1525,19,1,0 +2013,8,3,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,4,0,1920,-2,0,0 +2013,9,24,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1500,25,1,1745,29,1,0 +2013,4,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,-2,0,1330,-23,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-4,0,1210,-8,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1936,-3,0,2132,-5,0,0 +2013,8,3,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1020,9,0,1250,17,1,0 +2013,6,20,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1920,7,0,2050,2,0,0 +2013,10,5,6,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2050,14,0,2211,2,0,0 +2013,4,27,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1003,2,0,1320,-3,0,0 +2013,8,10,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,600,-11,0,759,-23,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1430,19,1,1559,11,0,0 +2013,8,6,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2210,-5,0,45,-15,0,0 +2013,6,20,4,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1942,-4,0,115,-8,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1305,33,1,1620,46,1,0 +2013,10,7,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-4,0,2059,-17,0,0 +2013,4,9,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,539,-6,0,718,-13,0,0 +2013,4,14,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1030,-7,0,1115,-8,0,0 +2013,8,18,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,700,3,0,853,-20,0,0 +2013,6,10,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-5,0,1730,26,1,0 +2013,7,26,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1643,0,,1907,0,1,1 +2013,5,21,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,12,0,1728,24,1,0 +2013,10,18,5,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1355,-8,0,1605,-29,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1055,-8,0,1704,-17,0,0 +2013,6,16,7,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,605,0,0,925,-11,0,0 +2013,9,10,2,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1536,-8,0,1908,21,1,0 +2013,4,9,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-1,0,708,-6,0,0 +2013,4,22,1,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1540,6,0,1655,-4,0,0 +2013,9,22,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1539,-9,0,1856,8,0,0 +2013,8,28,3,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-10,0,1213,-16,0,0 +2013,8,16,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1350,-7,0,1735,3,0,0 +2013,10,23,3,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,835,-2,0,1011,-9,0,0 +2013,7,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,14057,Portland International,Portland,OR,1525,33,1,1720,28,1,0 +2013,9,26,4,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,0,0,2113,-13,0,0 +2013,7,21,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1810,-8,0,1914,12,0,0 +2013,5,16,4,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,33,-11,0,558,-10,0,0 +2013,8,12,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1540,-9,0,1705,-19,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2040,148,1,2235,140,1,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,745,-2,0,845,5,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,605,-5,0,855,-18,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1921,-5,0,2049,-8,0,0 +2013,10,10,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,648,-3,0,913,-11,0,0 +2013,10,14,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-6,0,809,-7,0,0 +2013,10,24,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1135,9,0,1353,6,0,0 +2013,8,13,2,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1948,-7,0,2057,-15,0,0 +2013,9,1,7,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,2035,-3,0,2218,-36,0,0 +2013,5,13,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1115,24,1,1240,10,0,0 +2013,7,27,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1505,0,0,1652,-17,0,0 +2013,5,17,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1730,104,1,2014,93,1,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,14,0,2250,16,1,0 +2013,8,16,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,-5,0,2005,-30,0,0 +2013,5,10,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,840,81,1,900,58,1,0 +2013,8,15,4,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,630,-4,0,1235,-1,0,0 +2013,5,22,3,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-7,0,1558,-18,0,0 +2013,4,7,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,-5,0,1918,-16,0,0 +2013,6,5,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,11,0,2345,12,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,934,-12,0,1213,-47,0,0 +2013,7,27,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,854,61,1,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2000,102,1,2203,91,1,0 +2013,6,19,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1500,10,0,1646,-1,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-5,0,1404,6,0,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,835,-6,0,1125,1,0,0 +2013,4,23,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,638,111,1,1115,91,1,0 +2013,6,17,1,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,-2,0,1950,-14,0,0 +2013,10,10,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,0,0,1925,-12,0,0 +2013,7,16,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,950,10,0,1240,12,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,605,-1,0,720,-1,0,0 +2013,5,15,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,2,0,1355,-16,0,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,-3,0,1438,-2,0,0 +2013,7,25,4,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-4,0,1749,-25,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1755,-2,0,1919,-25,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1740,8,0,1850,5,0,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,10529,Bradley International,Hartford,CT,1715,14,0,2255,-1,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1932,5,0,2301,-2,0,0 +2013,5,2,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1405,-3,0,1530,-4,0,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,-3,0,1411,-12,0,0 +2013,9,1,7,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-7,0,1412,-10,0,0 +2013,8,28,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-4,0,1850,-24,0,0 +2013,7,9,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1020,0,,1150,0,1,1 +2013,7,31,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1216,0,0,1814,-7,0,0 +2013,10,9,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1830,-7,0,2103,-30,0,0 +2013,9,13,5,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1600,-5,0,1700,-11,0,0 +2013,10,9,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,855,-2,0,915,-2,0,0 +2013,7,28,7,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1706,107,1,1949,128,1,0 +2013,5,1,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,-3,0,1715,-8,0,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1535,197,1,1625,193,1,0 +2013,8,27,2,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1710,-5,0,1920,-21,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-2,0,922,-21,0,0 +2013,6,15,6,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1158,0,0,1255,-5,0,0 +2013,5,25,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1017,-3,0,1102,-7,0,0 +2013,5,25,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,815,0,0,930,1,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,4,0,2203,-20,0,0 +2013,9,15,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1548,-5,0,1634,-8,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2111,-2,0,2246,-15,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,-5,0,1125,-10,0,0 +2013,7,8,1,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,2,0,1615,8,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,22,1,1225,18,1,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1415,-2,0,1530,-12,0,0 +2013,8,29,4,EV,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1354,-5,0,1708,-18,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,91,1,2050,80,1,0 +2013,5,14,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,650,-2,0,808,-2,0,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1640,-3,0,1936,1,0,0 +2013,8,18,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,645,-6,0,926,-13,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2155,107,1,15,106,1,0 +2013,5,24,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,88,1,1925,70,1,0 +2013,6,21,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,926,7,0,1119,-7,0,0 +2013,5,26,7,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,3,0,1350,-1,0,0 +2013,5,15,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,6,0,1035,-10,0,0 +2013,10,25,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1407,-11,0,1528,-5,0,0 +2013,8,12,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,14,0,1852,22,1,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1750,0,0,1940,-7,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2008,-6,0,2140,-14,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1845,-4,0,1955,-14,0,0 +2013,6,4,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,950,0,0,1250,-11,0,0 +2013,7,30,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,638,-7,0,758,-14,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,1350,37,1,1945,28,1,0 +2013,5,13,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-3,0,624,-23,0,0 +2013,8,18,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1325,0,,1335,0,1,1 +2013,10,23,3,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1645,-5,0,1820,-3,0,0 +2013,5,13,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-4,0,850,-12,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1859,22,1,2053,21,1,0 +2013,6,4,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1905,0,0,2020,-4,0,0 +2013,4,3,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,950,-21,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1455,39,1,1635,70,1,0 +2013,10,18,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,4,0,1655,-1,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1545,23,1,1719,6,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-5,0,815,-16,0,0 +2013,8,26,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-2,0,1507,13,0,0 +2013,10,14,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,30,1,1805,22,1,0 +2013,9,29,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,9,0,1735,-2,0,0 +2013,6,20,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,11,0,2035,7,0,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1950,-7,0,2325,2,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1440,-4,0,1715,-11,0,0 +2013,9,14,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1300,-5,0,1355,-11,0,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1400,15,1,1500,9,0,0 +2013,10,21,1,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,0,0,2050,-10,0,0 +2013,4,9,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1553,14,0,1910,41,1,0 +2013,10,29,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-5,0,1652,-19,0,0 +2013,7,7,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-7,0,1024,-9,0,0 +2013,8,5,1,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,643,-1,0,855,-10,0,0 +2013,8,26,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1515,-3,0,2105,4,0,0 +2013,4,16,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1725,11,0,1735,12,0,0 +2013,9,6,5,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,-3,0,2034,-32,0,0 +2013,7,19,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,750,1,0,925,-13,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1300,11,0,1610,-2,0,0 +2013,4,12,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,528,0,0,735,-2,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,1,0,1005,0,0,0 +2013,4,1,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-6,0,1249,-6,0,0 +2013,10,10,4,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2102,-1,0,510,-7,0,0 +2013,9,15,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,-3,0,1337,-5,0,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,-5,0,1910,-14,0,0 +2013,5,18,6,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-8,0,917,5,0,0 +2013,7,31,3,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,611,28,1,1053,16,1,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,844,45,1,1139,64,1,0 +2013,5,22,3,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,850,-1,0,1117,5,0,0 +2013,5,24,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,36,1,2049,39,1,0 +2013,9,29,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1825,-12,0,2046,-19,0,0 +2013,7,8,1,EV,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,8,0,1109,2,0,0 +2013,10,14,1,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-6,0,1615,-16,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,850,-2,0,1005,-15,0,0 +2013,8,25,7,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1909,2,0,2008,5,0,0 +2013,4,1,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2050,0,0,2210,-12,0,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1730,7,0,1930,25,1,0 +2013,5,16,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-5,0,2252,8,0,0 +2013,8,26,1,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1545,0,0,1644,-12,0,0 +2013,6,22,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1355,-1,0,1650,-13,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1641,-2,0,1956,-13,0,0 +2013,7,2,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1624,0,,1819,0,1,1 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1130,-9,0,1414,-9,0,0 +2013,5,23,4,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1345,19,1,1651,11,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,730,35,1,830,47,1,0 +2013,7,19,5,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,-4,0,1217,-10,0,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1221,-7,0,1353,-24,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,0,0,1440,-22,0,0 +2013,8,4,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1855,166,1,2015,183,1,0 +2013,7,9,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1836,28,1,2258,24,1,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,752,11,0,932,-2,0,0 +2013,8,22,4,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-4,0,1710,-22,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-6,0,1308,-12,0,0 +2013,8,20,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,605,-13,0,1020,-6,0,0 +2013,10,13,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1009,-2,0,1136,10,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1230,-1,0,1447,-11,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,740,-8,0,1100,-21,0,0 +2013,5,1,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1929,5,0,2108,-11,0,0 +2013,8,12,1,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1120,-9,0,1417,19,1,0 +2013,4,28,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,-6,0,915,-14,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,850,11,0,1100,11,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,831,-3,0,943,3,0,0 +2013,4,19,5,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1220,0,0,1455,-16,0,0 +2013,6,10,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,24,1,1929,23,1,0 +2013,7,25,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1207,-3,0,1343,-18,0,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,4,0,935,-9,0,0 +2013,8,3,6,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-10,0,827,-20,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,953,9,0,1215,-6,0,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1039,0,,1135,0,1,1 +2013,10,6,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,23,1,2328,15,1,0 +2013,7,5,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-4,0,1815,-19,0,0 +2013,4,29,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,-1,0,730,-4,0,0 +2013,6,27,4,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1850,-1,0,2025,-6,0,0 +2013,5,21,2,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1401,-17,0,0 +2013,8,25,7,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,712,1,0,817,-11,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-5,0,2325,-16,0,0 +2013,4,28,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,2005,-5,0,2110,-21,0,0 +2013,9,30,1,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1534,-11,0,1720,-6,0,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,955,1,0,1545,-7,0,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,46,1,938,47,1,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,9,0,1220,13,0,0 +2013,5,24,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,1,0,1155,7,0,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1635,131,1,2045,123,1,0 +2013,9,27,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1450,-12,0,1825,-6,0,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1405,6,0,1549,-11,0,0 +2013,9,5,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,635,-2,0,930,2,0,0 +2013,6,29,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,625,1,0,745,-3,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,810,-4,0,905,1,0,0 +2013,9,12,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1738,0,,1953,0,1,1 +2013,4,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1555,34,1,1835,31,1,0 +2013,8,1,4,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,2340,43,1,743,46,1,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2056,24,1,2222,5,0,0 +2013,8,13,2,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,144,1,1951,154,1,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1740,0,0,1830,-8,0,0 +2013,5,14,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1615,7,0,1720,5,0,0 +2013,7,3,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2320,-1,0,629,-8,0,0 +2013,7,12,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-4,0,815,-9,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1850,11,0,2205,11,0,0 +2013,4,28,7,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1445,0,0,1749,7,0,0 +2013,9,2,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,0,0,1412,8,0,0 +2013,10,9,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,-2,0,1435,-3,0,0 +2013,10,4,5,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1525,87,1,1605,91,1,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2040,44,1,2155,44,1,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,805,-5,0,1155,-11,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1750,1,0,2041,1,0,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,0,0,1040,8,0,0 +2013,6,21,5,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,8,0,1755,0,0,0 +2013,10,17,4,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1715,132,1,1840,160,1,0 +2013,10,8,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,834,-4,0,1056,-28,0,0 +2013,6,1,6,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,13,0,616,20,1,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,1,0,1307,-11,0,0 +2013,8,5,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-7,0,1632,-13,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,655,-3,0,815,1,0,0 +2013,10,3,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2335,3,0,513,28,1,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1255,5,0,1620,18,1,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1250,-3,0,1555,-27,0,0 +2013,4,13,6,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,1735,4,0,1835,3,0,0 +2013,5,29,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,830,0,0,1100,-7,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-6,0,1823,-10,0,0 +2013,4,14,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1105,10,0,1948,-11,0,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1500,18,1,1620,14,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,48,1,1730,30,1,0 +2013,8,1,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,720,-2,0,1025,6,0,0 +2013,6,24,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1712,133,1,1848,121,1,0 +2013,9,11,3,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1733,-18,0,1930,-29,0,0 +2013,10,31,4,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1820,-7,0,2039,-4,0,0 +2013,5,8,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1110,123,1,1938,185,1,0 +2013,4,17,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1951,4,0,2056,23,1,0 +2013,5,10,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,930,-9,0,1120,-9,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,851,4,0,1033,-1,0,0 +2013,4,6,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,700,11,0,718,1,0,0 +2013,5,22,3,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,12,0,1835,-14,0,0 +2013,9,26,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,807,-9,0,0 +2013,9,4,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-6,0,1628,-6,0,0 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1359,4,0,1503,4,0,0 +2013,7,16,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,73,1,915,89,1,0 +2013,7,29,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,-3,0,1747,-14,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2115,-7,0,2325,-6,0,0 +2013,5,8,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,19,1,1942,7,0,0 +2013,5,21,2,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-1,0,1235,3,0,0 +2013,4,3,3,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1840,7,0,2059,-5,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,2,0,2032,8,0,0 +2013,6,9,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1417,16,1,1659,2,0,0 +2013,4,9,2,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1200,0,0,1255,-12,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1425,16,1,1645,7,0,0 +2013,5,27,1,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1005,-2,0,1330,-20,0,0 +2013,5,6,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,905,-2,0,1147,10,0,0 +2013,10,19,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,713,-4,0,1049,-7,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-4,0,1847,-13,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1920,3,0,2247,17,1,0 +2013,4,8,1,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1845,-10,0,2019,26,1,0 +2013,5,15,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,0,0,1438,3,0,0 +2013,5,7,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,825,-6,0,1419,3,0,0 +2013,10,14,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1655,21,1,1805,12,0,0 +2013,6,30,7,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-1,0,845,8,0,0 +2013,6,21,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1500,-5,0,1655,-10,0,0 +2013,8,8,4,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2254,10,0,607,2,0,0 +2013,6,14,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-9,0,815,-13,0,0 +2013,8,17,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1135,0,0,1235,-9,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,-2,0,1445,-18,0,0 +2013,5,8,3,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1140,105,1,1258,90,1,0 +2013,8,20,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,2,0,1850,5,0,0 +2013,9,11,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1555,46,1,1747,50,1,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1942,187,1,2041,175,1,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,810,0,0,1100,-7,0,0 +2013,4,29,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,5,0,950,11,0,0 +2013,5,9,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,0,,2040,0,1,1 +2013,10,27,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1720,3,0,1820,-1,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1559,-7,0,1858,-40,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1941,-5,0,2104,-5,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1645,-2,0,1813,-14,0,0 +2013,9,21,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1105,5,0,1235,4,0,0 +2013,6,25,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,921,-5,0,1201,-5,0,0 +2013,7,22,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1103,-5,0,1414,-7,0,0 +2013,8,8,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-6,0,1255,9,0,0 +2013,5,27,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,-5,0,1710,-32,0,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,0,0,1050,1,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,853,30,1,1254,13,0,0 +2013,6,10,1,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,2035,8,0,2335,-3,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-1,0,1102,2,0,0 +2013,5,3,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,4,0,1315,-8,0,0 +2013,7,31,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,655,-5,0,938,3,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,-2,0,626,-18,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1820,25,1,2045,13,0,0 +2013,5,24,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-1,0,1554,10,0,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1307,-5,0,1428,-10,0,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,1400,-14,0,0 +2013,10,30,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1036,18,1,1210,17,1,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1640,10,0,1830,14,0,0 +2013,10,22,2,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1735,-5,0,1750,-1,0,0 +2013,5,17,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1835,-3,0,1930,-12,0,0 +2013,8,22,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,11,0,1605,10,0,0 +2013,5,7,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,600,-3,0,735,-9,0,0 +2013,8,19,1,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,50,1,700,34,1,0 +2013,5,6,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,759,0,0,1615,15,1,0 +2013,8,16,5,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,840,-2,0,1120,-14,0,0 +2013,5,3,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,610,0,,834,0,1,1 +2013,4,19,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-6,0,1230,-16,0,0 +2013,8,1,4,OO,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1450,19,1,1626,32,1,0 +2013,7,8,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,,826,0,1,1 +2013,10,29,2,AS,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-7,0,1735,-3,0,0 +2013,6,22,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1750,1,0,1845,-6,0,0 +2013,4,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1430,-2,0,1550,-3,0,0 +2013,7,18,4,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,-1,0,1721,15,1,0 +2013,7,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1715,27,1,2122,18,1,0 +2013,10,17,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1135,-6,0,1430,-17,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,12,0,2005,13,0,0 +2013,7,9,2,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,910,-8,0,1035,10,0,0 +2013,7,11,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2055,32,1,2239,31,1,0 +2013,7,6,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1659,-3,0,1845,-41,0,0 +2013,7,21,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-11,0,840,-19,0,0 +2013,5,23,4,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2131,73,1,520,52,1,0 +2013,8,11,7,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,2305,-5,0,612,-12,0,0 +2013,10,12,6,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,8,0,2025,-11,0,0 +2013,7,19,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-3,0,1338,-10,0,0 +2013,5,25,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1030,-2,0,1155,-5,0,0 +2013,10,2,3,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1200,-6,0,1438,-12,0,0 +2013,10,9,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-4,0,1412,-19,0,0 +2013,10,11,5,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,-4,0,1955,-7,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,-4,0,1443,-13,0,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,-4,0,1615,-18,0,0 +2013,5,10,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1535,1,0,1655,-11,0,0 +2013,8,26,1,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1404,-21,0,0 +2013,8,25,7,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1005,-2,0,1431,-9,0,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,36,1,1500,46,1,0 +2013,10,6,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,23,1,2025,25,1,0 +2013,10,14,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,0,0,1326,0,0,0 +2013,5,10,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-10,0,1027,-33,0,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,55,1,2255,53,1,0 +2013,9,6,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2115,-2,0,538,6,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1747,-3,0,1950,-10,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,16,1,2248,21,1,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,853,11,0,1251,30,1,0 +2013,6,19,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1445,20,1,1620,49,1,0 +2013,4,21,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,14,0,2115,20,1,0 +2013,5,15,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1545,2,0,1715,1,0,0 +2013,10,7,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-7,0,904,-12,0,0 +2013,5,8,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,-7,0,1656,5,0,0 +2013,6,4,2,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1842,45,1,2059,28,1,0 +2013,7,15,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1705,16,1,1835,35,1,0 +2013,7,29,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,720,19,1,1222,8,0,0 +2013,10,29,2,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,-6,0,1840,-14,0,0 +2013,4,26,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,2012,-9,0,2118,-7,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1450,4,0,2337,-23,0,0 +2013,5,12,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1305,-4,0,1710,13,0,0 +2013,4,25,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,-4,0,1735,-4,0,0 +2013,8,9,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,952,-5,0,1136,-14,0,0 +2013,5,30,4,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1545,1,0,1643,-5,0,0 +2013,4,18,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2115,-6,0,2210,6,0,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-7,0,914,16,1,0 +2013,10,21,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,7,0,1525,6,0,0 +2013,8,18,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1610,10,0,1810,5,0,0 +2013,10,16,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1803,1,0,2117,43,1,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1855,-7,0,2323,3,0,0 +2013,10,23,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,40,3,0,530,-7,0,0 +2013,8,26,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,-4,0,1900,-20,0,0 +2013,10,16,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1516,1,0,1753,-10,0,0 +2013,8,13,2,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,700,-3,0,955,-12,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1750,-6,0,2115,-19,0,0 +2013,5,31,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1500,-4,0,1923,7,0,0 +2013,8,26,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1925,-4,0,2015,1,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2250,-1,0,2355,-6,0,0 +2013,6,6,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-2,0,1652,6,0,0 +2013,8,4,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,10,0,1435,-1,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,11,0,2059,15,1,0 +2013,10,17,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1515,-3,0,1703,-5,0,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,2036,0,0,2209,6,0,0 +2013,7,31,3,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,959,2,0,1315,18,1,0 +2013,8,7,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,12,0,2105,33,1,0 +2013,4,8,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,725,-2,0,1045,-13,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,-4,0,1605,-11,0,0 +2013,9,16,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-4,0,1229,-20,0,0 +2013,8,28,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,648,-8,0,0 +2013,4,26,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1027,0,0,1302,13,0,0 +2013,8,18,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,745,-5,0,910,-4,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,101,1,1500,85,1,0 +2013,5,12,7,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,930,-3,0,1105,0,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2155,3,0,2354,1,0,0 +2013,4,23,2,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2110,63,1,2242,50,1,0 +2013,6,8,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-3,0,840,-4,0,0 +2013,5,11,6,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-4,0,920,-48,0,0 +2013,7,31,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-2,0,1412,-4,0,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2105,-2,0,2205,-17,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,2,0,1206,-21,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1635,129,1,1938,99,1,0 +2013,4,1,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1533,28,1,1653,27,1,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-3,0,1045,-11,0,0 +2013,10,28,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1250,5,0,1409,49,1,0 +2013,6,15,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-5,0,825,12,0,0 +2013,9,30,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1922,3,0,2109,-7,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-5,0,1349,-16,0,0 +2013,9,23,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1615,34,1,2007,33,1,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1655,0,0,1755,-3,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1750,32,1,2045,48,1,0 +2013,5,4,6,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1020,-6,0,1208,-20,0,0 +2013,9,11,3,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-5,0,854,-16,0,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,824,50,1,1330,37,1,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1010,-2,0,1335,-16,0,0 +2013,8,27,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1145,-6,0,1155,-17,0,0 +2013,6,22,6,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,2120,-37,0,0 +2013,7,21,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,850,-3,0,1040,-15,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1125,0,0,1650,-16,0,0 +2013,5,29,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-4,0,1303,-15,0,0 +2013,5,28,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2039,-5,0,2210,-3,0,0 +2013,8,13,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,705,13,0,1058,21,1,0 +2013,5,20,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1445,4,0,1640,0,0,0 +2013,9,6,5,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-9,0,1800,1,0,0 +2013,10,17,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1825,-4,0,1955,-14,0,0 +2013,10,31,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-9,0,1815,-21,0,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-3,0,905,-23,0,0 +2013,6,24,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1335,195,1,1554,201,1,0 +2013,6,14,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1513,3,0,1834,-1,0,0 +2013,5,1,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,720,-1,0,825,-7,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,198,1,14,187,1,0 +2013,9,13,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-3,0,2038,1,0,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-4,0,1038,-9,0,0 +2013,4,26,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1816,-2,0,2033,-8,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1641,-10,0,1821,-14,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2025,-2,0,2130,-12,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,602,-4,0,729,-21,0,0 +2013,9,7,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-6,0,1455,-10,0,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2032,135,1,3,122,1,0 +2013,5,4,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,820,3,0,1040,7,0,0 +2013,10,12,6,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-8,0,1741,-7,0,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1636,14,0,2142,3,0,0 +2013,8,10,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,816,74,1,1412,50,1,0 +2013,7,9,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,9,0,2200,4,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,-8,0,2223,-4,0,0 +2013,10,2,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,2,0,1450,4,0,0 +2013,9,7,6,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1130,0,0,1615,-45,0,0 +2013,4,23,2,DL,15376,Tucson International,Tucson,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,1,0,1832,-25,0,0 +2013,9,30,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,-4,0,1708,-19,0,0 +2013,6,7,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2130,68,1,2247,52,1,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,6,0,1024,21,1,0 +2013,6,19,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1320,0,0,2155,-6,0,0 +2013,10,6,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1658,-3,0,2256,-8,0,0 +2013,9,28,6,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1605,-9,0,1842,-3,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-5,0,1430,-28,0,0 +2013,4,5,5,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,819,-3,0,1005,-20,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,7,0,1230,5,0,0 +2013,8,9,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,-7,0,2112,-2,0,0 +2013,5,21,2,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,0,0,805,-13,0,0 +2013,7,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-4,0,1322,-16,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2030,60,1,2340,66,1,0 +2013,7,29,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,79,1,1255,76,1,0 +2013,9,4,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,630,0,0,735,-15,0,0 +2013,10,19,6,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1425,7,0,1710,4,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1435,19,1,1910,36,1,0 +2013,5,23,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1803,-1,0,1929,-1,0,0 +2013,10,31,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1237,-1,0,1345,22,1,0 +2013,9,8,7,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-2,0,1221,-11,0,0 +2013,8,25,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-8,0,2255,-7,0,0 +2013,9,25,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1220,-6,0,1415,-14,0,0 +2013,4,19,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,8,0,2035,-5,0,0 +2013,4,17,3,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,54,1,2359,55,1,0 +2013,6,15,6,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,713,-8,0,901,-6,0,0 +2013,5,2,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1600,15,1,2000,12,0,0 +2013,6,7,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,58,1,2247,39,1,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2205,-1,0,15,-16,0,0 +2013,5,12,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1300,-2,0,1434,-2,0,0 +2013,7,26,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,859,0,,1050,0,1,1 +2013,9,19,4,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,835,-8,0,1001,-11,0,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1102,-2,0,0 +2013,7,25,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1615,15,1,1710,18,1,0 +2013,6,9,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,-4,0,1322,-17,0,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,2005,-5,0,2146,-11,0,0 +2013,10,4,5,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2150,-2,0,2236,-8,0,0 +2013,10,5,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-1,0,641,-7,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1200,9,0,1345,-10,0,0 +2013,4,15,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,-11,0,1255,-21,0,0 +2013,9,14,6,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-13,0,1753,-23,0,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,21,1,2135,13,0,0 +2013,8,30,5,OO,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1253,-6,0,1459,-18,0,0 +2013,6,30,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,3,0,1240,3,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,0,0,1547,-3,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2210,16,1,2355,6,0,0 +2013,4,11,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,29,1,2020,5,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,12,0,1415,4,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,855,-5,0,1150,-25,0,0 +2013,8,29,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,-6,0,2145,-1,0,0 +2013,4,8,1,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1333,2,0,1743,15,1,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1530,6,0,1835,-9,0,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,650,0,0,940,-4,0,0 +2013,4,23,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-7,0,1620,-1,0,0 +2013,6,6,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,750,2,0,1035,2,0,0 +2013,10,4,5,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1514,15,1,1630,13,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1210,1,0,1358,-8,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1605,-5,0,1739,-20,0,0 +2013,6,25,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,125,1,2135,131,1,0 +2013,8,9,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-3,0,1514,12,0,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,12,0,1755,3,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,900,29,1,1135,21,1,0 +2013,10,31,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1803,21,1,2115,35,1,0 +2013,10,18,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,700,3,0,825,-3,0,0 +2013,4,29,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,0,0,915,19,1,0 +2013,4,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,-1,0,1615,-22,0,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1301,3,0,1618,-14,0,0 +2013,4,7,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1510,-2,0,1640,-4,0,0 +2013,7,25,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1034,-14,0,1310,-24,0,0 +2013,4,2,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-4,0,1801,-11,0,0 +2013,5,30,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1328,-6,0,1512,-23,0,0 +2013,10,11,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1345,24,1,1505,15,1,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1230,-2,0,1449,3,0,0 +2013,8,25,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-3,0,1110,-6,0,0 +2013,4,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,715,-3,0,1246,-12,0,0 +2013,5,8,3,EV,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1100,-7,0,1251,-25,0,0 +2013,4,7,7,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1912,22,1,2052,-6,0,0 +2013,4,25,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1846,-3,0,2014,-2,0,0 +2013,7,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2225,53,1,9,41,1,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,953,15,1,1800,5,0,0 +2013,9,27,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,705,-6,0,930,1,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-5,0,1021,-15,0,0 +2013,7,20,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,-5,0,1928,-5,0,0 +2013,10,10,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,605,-1,0,755,-10,0,0 +2013,7,16,2,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,19,1,1839,-10,0,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2144,12,0,2258,-3,0,0 +2013,4,15,1,EV,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1652,-7,0,1836,-17,0,0 +2013,6,10,1,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1727,-4,0,1815,-8,0,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1025,51,1,1308,39,1,0 +2013,6,13,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1435,12,0,1540,23,1,0 +2013,4,30,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,-5,0,1819,-68,0,0 +2013,10,4,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,609,-4,0,1430,-5,0,0 +2013,7,4,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1007,-1,0,1246,-2,0,0 +2013,10,3,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1810,12,0,2147,11,0,0 +2013,7,30,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1611,-7,0,15,-20,0,0 +2013,4,24,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1740,16,1,2150,53,1,0 +2013,5,2,4,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2112,76,1,2330,62,1,0 +2013,4,30,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-5,0,805,-7,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1505,12,0,1645,13,0,0 +2013,4,11,4,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1540,33,1,1734,25,1,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2041,52,1,2307,45,1,0 +2013,9,18,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1100,-2,0,1518,-11,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1905,22,1,2250,14,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,2130,163,1,2359,168,1,0 +2013,8,15,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,2040,16,1,2140,10,0,0 +2013,8,10,6,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1430,-11,0,1611,-2,0,0 +2013,9,20,5,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1645,-5,0,1745,-17,0,0 +2013,5,22,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,11,0,2054,81,1,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1815,2,0,1948,7,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,101,1,2233,93,1,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,37,1,2034,34,1,0 +2013,6,14,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,-2,0,1939,64,1,0 +2013,4,9,2,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1800,12,0,1945,8,0,0 +2013,5,4,6,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1650,1,0,1820,-27,0,0 +2013,9,11,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1320,-3,0,1708,-15,0,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1505,5,0,1820,-6,0,0 +2013,4,15,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,-7,0,1255,2,0,0 +2013,8,9,5,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,55,1,1220,57,1,0 +2013,4,14,7,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-3,0,1618,-11,0,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-1,0,1748,-10,0,0 +2013,9,29,7,9E,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1709,-5,0,1904,-1,0,0 +2013,10,28,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-5,0,1705,-1,0,0 +2013,4,10,3,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,955,-7,0,1108,-10,0,0 +2013,9,5,4,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-1,0,847,-5,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1950,-5,0,42,-12,0,0 +2013,5,28,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,728,1,0,938,-6,0,0 +2013,6,8,6,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2343,-4,0,504,4,0,0 +2013,4,16,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-8,0,715,-15,0,0 +2013,9,30,1,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1835,-6,0,2148,5,0,0 +2013,9,17,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1119,0,0,0 +2013,9,27,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1205,0,0,1330,-15,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,600,-4,0,715,-1,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,940,-3,0,1200,-15,0,0 +2013,10,7,1,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,809,-10,0,0 +2013,5,11,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-7,0,1305,-11,0,0 +2013,5,13,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,2127,40,1,2337,27,1,0 +2013,8,22,4,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1637,53,1,1740,36,1,0 +2013,10,4,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-2,0,1009,-3,0,0 +2013,6,21,5,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,844,-7,0,1049,-19,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1000,-3,0,1125,-17,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,835,27,1,1115,14,0,0 +2013,5,14,2,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,-5,0,1804,-9,0,0 +2013,4,30,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1903,24,1,2125,25,1,0 +2013,5,2,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1347,4,0,1600,-1,0,0 +2013,10,26,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1110,10,0,1405,5,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,726,-2,0,904,-18,0,0 +2013,9,29,7,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1059,-3,0,1904,-15,0,0 +2013,9,12,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,650,-1,0,745,-4,0,0 +2013,4,23,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,850,-4,0,1010,0,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1920,22,1,2036,32,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1055,-3,0,1136,-11,0,0 +2013,7,12,5,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,1,0,930,-6,0,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1130,8,0,1250,8,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1535,-5,0,1735,-32,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,7,0,1020,-4,0,0 +2013,8,9,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,600,2,0,640,2,0,0 +2013,7,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1610,-5,0,1656,-14,0,0 +2013,6,30,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2049,-10,0,2303,-20,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,600,-2,0,830,-2,0,0 +2013,5,13,1,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,855,-9,0,938,-33,0,0 +2013,10,7,1,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,2028,-1,0,2227,-20,0,0 +2013,8,25,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1452,-8,0,1655,-7,0,0 +2013,9,3,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,715,4,0,850,2,0,0 +2013,6,23,7,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,850,-1,0,1105,-8,0,0 +2013,10,21,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-5,0,815,-11,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,158,1,2210,147,1,0 +2013,4,22,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2140,112,1,2259,106,1,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,709,-7,0,957,-4,0,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-7,0,1851,-27,0,0 +2013,7,29,1,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,-5,0,1525,0,0,0 +2013,4,25,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,-6,0,2105,-5,0,0 +2013,4,28,7,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1455,-5,0,1632,-27,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1805,33,1,1955,4,0,0 +2013,5,24,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-1,0,856,-11,0,0 +2013,5,31,5,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,640,-4,0,756,-4,0,0 +2013,5,23,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1845,-4,0,2000,-13,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,550,-5,0,700,-8,0,0 +2013,9,28,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-1,0,641,1,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,811,-8,0,1013,-15,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2302,23,1,25,11,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1825,8,0,2010,0,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1215,-1,0,1319,-20,0,0 +2013,7,3,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,6,0,1114,8,0,0 +2013,7,27,6,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1810,-1,0,1935,-2,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2055,-5,0,2324,3,0,0 +2013,5,20,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,-6,0,1803,-10,0,0 +2013,6,11,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,11,0,727,6,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,-1,0,2117,-3,0,0 +2013,10,1,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,0,0,802,-9,0,0 +2013,4,27,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,620,-3,0,750,-11,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,810,9,0,1020,18,1,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1720,2,0,1840,39,1,0 +2013,5,16,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,7,0,1230,5,0,0 +2013,5,27,1,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1735,0,0,1945,-2,0,0 +2013,9,15,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1309,-6,0,1530,13,0,0 +2013,6,18,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,936,-2,0,1154,-5,0,0 +2013,9,7,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,0,0,2210,-7,0,0 +2013,8,10,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1959,40,1,2140,68,1,0 +2013,4,25,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,0,0,810,-9,0,0 +2013,5,4,6,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,910,-8,0,1110,-22,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1342,-6,0,1513,-16,0,0 +2013,10,16,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1226,27,1,1344,98,1,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,18,1,951,-5,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1829,118,1,2125,160,1,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,4,0,1310,-2,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1050,19,1,1810,5,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,-3,0,629,-4,0,0 +2013,7,17,3,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,-3,0,1003,-15,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,621,10,0,1357,6,0,0 +2013,6,23,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1730,83,1,1825,73,1,0 +2013,6,20,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1615,10,0,1739,-13,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2145,-3,0,521,-1,0,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1947,22,1,2250,1,0,0 +2013,7,17,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,825,0,0,1010,-9,0,0 +2013,8,5,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,600,-5,0,705,-15,0,0 +2013,9,28,6,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1840,15,1,2046,16,1,0 +2013,10,17,4,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1245,19,1,2105,0,0,0 +2013,9,26,4,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,31,1,1228,26,1,0 +2013,10,7,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,610,-7,0,750,-16,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,700,-3,0,1110,4,0,0 +2013,8,24,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-5,0,1606,-1,0,0 +2013,7,8,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2040,0,,2235,0,1,1 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1610,7,0,1819,0,0,0 +2013,5,12,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-1,0,905,-11,0,0 +2013,5,13,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,2,0,2105,-31,0,0 +2013,10,23,3,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1646,-5,0,1739,-2,0,0 +2013,10,29,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,-3,0,1805,-10,0,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,0,0,1100,-5,0,0 +2013,7,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1001,11,0,1300,2,0,0 +2013,5,14,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1558,0,0,1620,-7,0,0 +2013,9,17,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-4,0,1734,0,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,940,0,0,1415,16,1,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1605,30,1,1810,26,1,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1015,0,0,1155,-22,0,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1210,1,0,1400,-9,0,0 +2013,10,22,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,-1,0,1905,-18,0,0 +2013,8,31,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1303,42,1,2119,28,1,0 +2013,10,12,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,-1,0,1050,-11,0,0 +2013,10,18,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1120,-4,0,1411,3,0,0 +2013,9,6,5,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1935,35,1,2045,30,1,0 +2013,4,19,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-2,0,925,-18,0,0 +2013,8,19,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1220,0,,1314,0,1,1 +2013,7,26,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2110,11,0,2225,11,0,0 +2013,10,2,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1819,202,1,2020,191,1,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1559,-2,0,1832,11,0,0 +2013,6,13,4,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2206,0,,2254,0,1,1 +2013,10,30,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,945,-4,0,1034,5,0,0 +2013,5,12,7,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1456,-2,0,1633,-3,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,719,0,0,1555,-16,0,0 +2013,9,2,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2040,66,1,2210,54,1,0 +2013,6,27,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-5,0,2144,8,0,0 +2013,10,5,6,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1335,-6,0,1750,-22,0,0 +2013,4,19,5,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1110,-6,0,1400,-10,0,0 +2013,7,16,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,-1,0,1035,-11,0,0 +2013,8,25,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1448,162,1,1635,187,1,0 +2013,6,2,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1320,-2,0,1325,-6,0,0 +2013,4,30,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,725,39,1,935,34,1,0 +2013,7,1,1,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,38,1,851,28,1,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,132,1,2220,133,1,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,1,0,1102,-5,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,700,-1,0,800,-5,0,0 +2013,8,16,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-2,0,1018,20,1,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-1,0,1655,-11,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1745,2,0,1757,-13,0,0 +2013,8,22,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1504,61,1,1645,62,1,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,835,-7,0,1025,-19,0,0 +2013,4,12,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,2050,-5,0,2309,-7,0,0 +2013,10,4,5,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,735,-8,0,905,-2,0,0 +2013,7,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1000,2,0,1310,-6,0,0 +2013,5,19,7,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,26,1,1022,24,1,0 +2013,10,7,1,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2320,-6,0,504,-12,0,0 +2013,7,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,955,4,0,1055,-7,0,0 +2013,4,16,2,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1630,30,1,1805,33,1,0 +2013,4,5,5,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-6,0,1549,7,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,600,6,0,835,0,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1400,28,1,1602,10,0,0 +2013,6,5,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1431,59,1,1544,67,1,0 +2013,6,5,3,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1900,-3,0,2158,-14,0,0 +2013,4,17,3,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,835,-3,0,1102,36,1,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1449,106,1,1623,106,1,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1056,0,0,1858,3,0,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1955,177,1,2230,163,1,0 +2013,4,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,-6,0,1040,44,1,0 +2013,8,17,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-1,0,1748,0,0,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1725,15,1,2310,6,0,0 +2013,5,22,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,751,-5,0,1042,7,0,0 +2013,7,16,2,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-9,0,944,-4,0,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,615,-1,0,730,1,0,0 +2013,9,20,5,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,835,-5,0,1001,-16,0,0 +2013,4,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,-4,0,933,-12,0,0 +2013,9,14,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-10,0,1925,-21,0,0 +2013,6,27,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1832,19,1,2104,-5,0,0 +2013,7,24,3,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-1,0,735,-5,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1010,9,0,1240,-17,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2300,-9,0,48,-19,0,0 +2013,9,13,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,-1,0,1700,-14,0,0 +2013,9,28,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-9,0,1501,-5,0,0 +2013,10,27,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-10,0,831,-15,0,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1435,14,0,1750,13,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1210,1,0,1430,24,1,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1246,-3,0,1415,11,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1240,4,0,1800,1,0,0 +2013,6,17,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1010,141,1,1119,128,1,0 +2013,7,13,6,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-9,0,1836,35,1,0 +2013,10,4,5,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,97,1,1913,126,1,0 +2013,6,14,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-4,0,1857,-4,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,0,1403,-9,0,0 +2013,10,1,2,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1325,-13,0,1545,-31,0,0 +2013,8,13,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,9,0,1720,17,1,0 +2013,4,23,2,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1105,70,1,1440,64,1,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1935,24,1,2240,10,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1501,-2,0,1656,-4,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1255,0,0,1415,1,0,0 +2013,4,10,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,1515,6,0,0 +2013,7,19,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,23,1,1100,11,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,615,0,0,740,6,0,0 +2013,4,20,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2245,-3,0,613,-16,0,0 +2013,4,9,2,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1103,13,0,1440,13,0,0 +2013,7,6,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1003,-6,0,1115,-31,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,98,1,1810,78,1,0 +2013,4,12,5,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-3,0,802,-11,0,0 +2013,6,4,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1640,78,1,1740,69,1,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,10,0,2336,8,0,0 +2013,9,16,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-4,0,1130,23,1,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,10,0,1600,3,0,0 +2013,5,10,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,739,-4,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2202,20,1,2314,17,1,0 +2013,7,16,2,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,2033,0,,2142,0,1,1 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,-5,0,2210,-17,0,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1155,117,1,1547,124,1,0 +2013,6,1,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,600,-7,0,815,-23,0,0 +2013,4,7,7,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,605,-1,0,755,-17,0,0 +2013,7,10,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2037,15,1,2359,8,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2147,-2,0,14,-4,0,0 +2013,5,23,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,2,0,1804,6,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1350,5,0,1535,2,0,0 +2013,4,28,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,615,-5,0,827,-16,0,0 +2013,7,9,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1847,-2,0,2047,-7,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1341,12,0,1749,-13,0,0 +2013,4,5,5,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1625,-5,0,1850,-28,0,0 +2013,8,12,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,816,-3,0,925,-3,0,0 +2013,4,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1240,0,0,1520,-15,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1140,13,0,1240,0,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1920,-2,0,2020,-16,0,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,3,0,1932,-33,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1910,-4,0,2016,-8,0,0 +2013,5,7,2,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,710,-5,0,1001,-32,0,0 +2013,5,5,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1530,-6,0,1810,-6,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2130,-3,0,2359,-7,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1755,-2,0,2055,-19,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1944,-3,0,2250,-12,0,0 +2013,8,27,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1450,1,0,1611,-20,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1730,222,1,1859,200,1,0 +2013,8,29,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1810,-2,0,1845,-6,0,0 +2013,5,19,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1242,0,0,1939,24,1,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,-6,0,1823,-36,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,0,0,2014,-9,0,0 +2013,6,21,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,29,1,1400,18,1,0 +2013,4,18,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,4,0,1520,5,0,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,-2,0,755,8,0,0 +2013,6,18,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,17,1,1100,7,0,0 +2013,10,11,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1635,52,1,1715,41,1,0 +2013,4,22,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,5,0,2119,20,1,0 +2013,4,8,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,656,-11,0,0 +2013,10,22,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1720,-4,0,2100,-24,0,0 +2013,6,5,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,55,-13,0,538,-34,0,0 +2013,10,12,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1730,10,0,1800,4,0,0 +2013,7,18,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-6,0,1356,-11,0,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1156,3,0,1438,-15,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1732,0,0,1933,-8,0,0 +2013,4,28,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-6,0,1730,-2,0,0 +2013,8,26,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-4,0,849,-5,0,0 +2013,9,24,2,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1632,-6,0,1721,-11,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1630,-3,0,1755,-6,0,0 +2013,5,15,3,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-11,0,740,-12,0,0 +2013,8,3,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,-6,0,110,-16,0,0 +2013,9,2,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2001,5,0,2345,21,1,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1020,-1,0,1435,-9,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,0,0,1714,-1,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,755,-4,0,915,-9,0,0 +2013,8,8,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1005,-2,0,1220,-16,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,855,11,0,1035,2,0,0 +2013,9,6,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1438,-4,0,1610,-10,0,0 +2013,5,23,4,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,640,86,1,756,74,1,0 +2013,7,1,1,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-12,0,1254,-25,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1250,4,0,1410,4,0,0 +2013,5,9,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,0,,1427,0,1,1 +2013,6,5,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,33,1,2203,27,1,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,2155,135,1,2340,130,1,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,21,1,2030,19,1,0 +2013,7,1,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1803,80,1,2109,75,1,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1735,22,1,1925,6,0,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,715,-1,0,847,-18,0,0 +2013,4,18,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1130,-2,0,1307,-8,0,0 +2013,6,11,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,2000,-4,0,2158,-16,0,0 +2013,7,4,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,610,1,0,725,-14,0,0 +2013,10,27,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1545,6,0,1705,6,0,0 +2013,10,21,1,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1355,-6,0,1535,-23,0,0 +2013,10,28,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,720,-9,0,941,-16,0,0 +2013,4,3,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-5,0,1839,11,0,0 +2013,9,8,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,142,1,902,111,1,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1450,26,1,1635,19,1,0 +2013,8,20,2,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-4,0,1229,-3,0,0 +2013,6,16,7,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-1,0,1010,-5,0,0 +2013,6,10,1,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1720,-2,0,1900,-7,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2156,-2,0,2348,-19,0,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2105,48,1,2340,34,1,0 +2013,7,31,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-8,0,955,-8,0,0 +2013,5,17,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1235,9,0,1330,4,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1924,-3,0,2202,-16,0,0 +2013,6,29,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1025,-2,0,1354,-6,0,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1315,12,0,1440,13,0,0 +2013,5,20,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,4,0,1510,-6,0,0 +2013,8,23,5,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1113,-4,0,1232,-9,0,0 +2013,9,12,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,206,1,1938,195,1,0 +2013,5,13,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-7,0,2159,-22,0,0 +2013,8,19,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,940,0,0,1110,-2,0,0 +2013,4,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1722,16,1,1832,-6,0,0 +2013,8,27,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,2,0,1140,-12,0,0 +2013,8,6,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,-1,0,1120,-6,0,0 +2013,7,12,5,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1325,155,1,1450,163,1,0 +2013,10,13,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,745,-4,0,950,-15,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1320,-3,0,1800,-33,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,910,8,0,1030,12,0,0 +2013,10,11,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1250,-6,0,1634,-2,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,-2,0,1315,-1,0,0 +2013,9,5,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2124,-8,0,529,-9,0,0 +2013,8,7,3,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1813,2,0,2054,-17,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1010,47,1,1132,29,1,0 +2013,10,25,5,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,620,-7,0,841,-5,0,0 +2013,4,27,6,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1610,-8,0,1758,-18,0,0 +2013,9,26,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,-2,0,1805,-20,0,0 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,831,-3,0,1125,-22,0,0 +2013,9,6,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-5,0,1405,-14,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,722,-11,0,901,-22,0,0 +2013,8,15,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1030,20,1,1157,2,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1800,11,0,35,-2,0,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1655,-3,0,1940,-29,0,0 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1932,0,0,2228,-8,0,0 +2013,5,6,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1300,10,0,1335,57,1,0 +2013,10,19,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1230,16,1,1330,14,0,0 +2013,10,8,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1810,-12,0,1905,-18,0,0 +2013,8,27,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-9,0,815,6,0,0 +2013,9,11,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1630,1,0,1805,10,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,730,-4,0,1103,-1,0,0 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2250,0,0,619,8,0,0 +2013,4,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,30,1,1630,35,1,0 +2013,9,24,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-5,0,740,-2,0,0 +2013,6,26,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-4,0,1531,-8,0,0 +2013,6,1,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,1001,-13,0,0 +2013,5,27,1,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1905,122,1,2031,123,1,0 +2013,4,7,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1930,-3,0,2010,-15,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,53,1,1950,45,1,0 +2013,7,24,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,17,1,2105,4,0,0 +2013,10,15,2,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1031,4,0,1305,-7,0,0 +2013,7,6,6,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1915,-5,0,2050,-14,0,0 +2013,9,20,5,EV,14307,Theodore Francis Green State,Providence,RI,11042,Cleveland-Hopkins International,Cleveland,OH,600,-3,0,758,-26,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1921,1,0,2238,9,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-6,0,1250,-14,0,0 +2013,10,19,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,840,-2,0,859,-9,0,0 +2013,10,12,6,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,820,-7,0,1027,-20,0,0 +2013,10,23,3,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,908,10,0,1048,1,0,0 +2013,9,23,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,645,3,0,800,-1,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1700,32,1,1915,37,1,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1155,-4,0,1545,-9,0,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,925,0,,1050,0,1,1 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2150,12,0,2305,3,0,0 +2013,5,24,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-5,0,1059,-14,0,0 +2013,6,23,7,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,2010,11,0,2310,15,1,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,955,1,0,1405,-5,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,-4,0,1558,-9,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1210,1,0,1639,-22,0,0 +2013,5,22,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,-8,0,844,-7,0,0 +2013,10,8,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-2,0,1252,-13,0,0 +2013,5,1,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1005,1,0,1120,13,0,0 +2013,4,25,4,OO,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1005,-3,0,1212,21,1,0 +2013,4,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1343,8,0,1750,29,1,0 +2013,9,7,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1300,23,1,1355,15,1,0 +2013,8,7,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1305,2,0,1455,-1,0,0 +2013,7,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1750,-6,0,2125,-14,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1605,-1,0,1747,-13,0,0 +2013,8,8,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1931,8,0,2057,-1,0,0 +2013,8,30,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,830,22,1,955,15,1,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2210,6,0,2357,18,1,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,1,0,1135,-4,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1620,11,0,2250,10,0,0 +2013,9,13,5,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1040,240,1,1157,232,1,0 +2013,5,2,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,627,-7,0,752,-22,0,0 +2013,10,28,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,-6,0,2326,-9,0,0 +2013,4,17,3,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1945,-2,0,2049,22,1,0 +2013,9,20,5,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1745,77,1,1905,76,1,0 +2013,6,30,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,802,25,1,900,24,1,0 +2013,4,11,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,69,1,2338,64,1,0 +2013,4,11,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,-1,0,1717,0,0,0 +2013,5,19,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1908,0,,2048,0,1,1 +2013,4,10,3,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1105,-5,0,1403,-2,0,0 +2013,5,27,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2015,-3,0,2125,-13,0,0 +2013,6,24,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1825,63,1,2100,69,1,0 +2013,10,16,3,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1112,-3,0,1402,-12,0,0 +2013,6,24,1,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1135,-6,0,1253,-11,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,7,0,1947,-2,0,0 +2013,10,4,5,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1820,36,1,1959,36,1,0 +2013,4,11,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-11,0,1040,-21,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1520,-2,0,2354,-15,0,0 +2013,9,26,4,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,920,3,0,1045,11,0,0 +2013,7,30,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1500,41,1,1655,31,1,0 +2013,8,25,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1459,25,1,2020,13,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,63,1,1415,50,1,0 +2013,4,30,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1745,2,0,1850,-5,0,0 +2013,6,28,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,640,1,0,755,-9,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,78,1,1608,80,1,0 +2013,6,3,1,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,-4,0,1630,-24,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,800,-6,0,927,-14,0,0 +2013,10,17,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,27,1,1400,20,1,0 +2013,4,10,3,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,-11,0,1917,-12,0,0 +2013,10,8,2,YV,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1753,-14,0,1935,-26,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1545,8,0,1813,-3,0,0 +2013,6,21,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2030,137,1,2140,128,1,0 +2013,5,15,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-7,0,1759,-7,0,0 +2013,4,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1730,-2,0,2023,-2,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1130,-3,0,1345,-12,0,0 +2013,6,2,7,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,957,-1,0,1753,1,0,0 +2013,8,29,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-6,0,1746,-1,0,0 +2013,10,10,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1125,3,0,1410,1,0,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1855,-2,0,2051,-17,0,0 +2013,4,22,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,641,-3,0,742,-15,0,0 +2013,10,16,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,-1,0,1855,-10,0,0 +2013,4,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1126,6,0,1340,1,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1150,-4,0,1320,-4,0,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1405,0,,1515,0,1,1 +2013,8,7,3,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1535,15,1,1850,14,0,0 +2013,6,29,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,825,-5,0,1100,-11,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1452,4,0,1610,5,0,0 +2013,9,22,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1915,80,1,2205,76,1,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1025,71,1,1210,115,1,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1725,0,0,2040,-10,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,955,-6,0,1101,-9,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1425,-1,0,1621,-12,0,0 +2013,4,7,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1320,83,1,1608,82,1,0 +2013,10,24,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1015,-14,0,1120,-9,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,624,-4,0,746,-17,0,0 +2013,5,11,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1825,1,0,1930,-2,0,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1130,-3,0,1345,-5,0,0 +2013,5,30,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-6,0,1259,-15,0,0 +2013,4,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,600,-1,0,740,-2,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1230,-2,0,1435,-9,0,0 +2013,10,9,3,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1200,19,1,1345,-5,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,915,0,0,1145,-12,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-3,0,1201,1,0,0 +2013,6,4,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,938,3,0,1040,-2,0,0 +2013,9,13,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,730,0,0,915,-3,0,0 +2013,7,13,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,0,0,1119,6,0,0 +2013,5,23,4,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1520,0,,1821,0,1,1 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1925,-2,0,2144,3,0,0 +2013,6,27,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,9,0,649,1,0,0 +2013,8,9,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1642,101,1,1938,75,1,0 +2013,5,10,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1840,-1,0,2005,5,0,0 +2013,10,10,4,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1400,-2,0,1710,-7,0,0 +2013,7,31,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,515,-7,0,635,-14,0,0 +2013,8,11,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1755,140,1,2120,172,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-4,0,1158,3,0,0 +2013,8,5,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1735,44,1,1815,57,1,0 +2013,5,30,4,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,11,0,745,-12,0,0 +2013,9,17,2,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1351,-2,0,1640,-1,0,0 +2013,9,3,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1420,-2,0,2300,-8,0,0 +2013,10,2,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-5,0,1825,-25,0,0 +2013,5,28,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-3,0,1007,-14,0,0 +2013,6,21,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1431,-7,0,1637,-23,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,3,0,1130,-17,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,714,40,1,924,50,1,0 +2013,8,20,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-6,0,1045,-11,0,0 +2013,8,16,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,949,-18,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,7,0,1315,-1,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,901,-1,0,1343,-18,0,0 +2013,9,19,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1005,-1,0,1300,2,0,0 +2013,5,15,3,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,0,0,845,-7,0,0 +2013,8,16,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1925,-1,0,2158,-21,0,0 +2013,7,6,6,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,0,0,840,2,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,44,1,2215,41,1,0 +2013,5,12,7,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,645,-5,0,908,-4,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,0,0,2355,-2,0,0 +2013,8,8,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-8,0,1712,87,1,0 +2013,4,4,4,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,0,0,1555,-7,0,0 +2013,5,4,6,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-4,0,1122,-13,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1520,-2,0,1745,-23,0,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,5,0,2135,-4,0,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1453,-4,0,1629,-28,0,0 +2013,9,28,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-2,0,1329,-10,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,900,-5,0,1033,-5,0,0 +2013,10,22,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1320,-3,0,1535,-25,0,0 +2013,7,24,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,-6,0,919,-14,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,820,7,0,1130,0,0,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1820,20,1,2250,14,0,0 +2013,7,10,3,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,40,1,1920,39,1,0 +2013,6,4,2,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,-6,0,1555,-13,0,0 +2013,8,17,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2305,44,1,13,30,1,0 +2013,10,11,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,-3,0,2220,-6,0,0 +2013,10,3,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1010,-6,0,1100,-12,0,0 +2013,6,12,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1745,-6,0,2029,-15,0,0 +2013,4,30,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,855,0,0,955,-3,0,0 +2013,8,4,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1257,-8,0,1830,-32,0,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,-3,0,1255,-1,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1320,1,0,1635,-1,0,0 +2013,8,2,5,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1805,0,0,2259,3,0,0 +2013,8,29,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,739,-1,0,845,-1,0,0 +2013,4,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1545,10,0,1810,16,1,0 +2013,5,16,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-9,0,1505,-11,0,0 +2013,9,13,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,701,2,0,802,0,0,0 +2013,8,19,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1820,0,0,1940,14,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1415,2,0,1435,3,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,44,1,1905,12,0,0 +2013,8,18,7,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1116,-7,0,1345,-29,0,0 +2013,6,7,5,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,825,-1,0,1232,-22,0,0 +2013,6,8,6,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,1050,-28,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,-4,0,1714,-22,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1710,-4,0,1945,10,0,0 +2013,10,15,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,2,0,1404,8,0,0 +2013,5,24,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1450,0,0,1613,34,1,0 +2013,9,18,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,605,-4,0,804,-9,0,0 +2013,6,6,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,720,-4,0,928,-2,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,0,0,1205,-8,0,0 +2013,7,3,3,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,-6,0,1607,4,0,0 +2013,9,9,1,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-10,0,1805,-16,0,0 +2013,5,6,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,700,0,0,951,-2,0,0 +2013,5,21,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2135,-3,0,2259,-1,0,0 +2013,10,2,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,934,-2,0,1045,-7,0,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,845,-6,0,1037,-14,0,0 +2013,5,22,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,650,3,0,834,-5,0,0 +2013,5,23,4,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,0,,2017,0,1,1 +2013,8,10,6,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1515,10,0,1630,-10,0,0 +2013,5,5,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,0,0,2110,4,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1820,35,1,2012,66,1,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,5,0,2139,-5,0,0 +2013,8,1,4,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-5,0,1400,-5,0,0 +2013,9,19,4,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1845,41,1,1950,42,1,0 +2013,7,6,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1405,-5,0,2200,-25,0,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2140,6,0,605,4,0,0 +2013,7,15,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-4,0,820,1,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,952,-2,0,1336,-18,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1812,66,1,2056,89,1,0 +2013,4,11,4,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1140,-2,0,1320,-25,0,0 +2013,5,14,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1545,-3,0,1715,-25,0,0 +2013,9,6,5,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1435,13,0,1715,68,1,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,-4,0,1953,0,0,0 +2013,4,4,4,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1040,4,0,1840,5,0,0 +2013,8,25,7,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1308,-6,0,1439,-4,0,0 +2013,4,22,1,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,705,39,1,1109,47,1,0 +2013,10,27,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1750,-5,0,2025,6,0,0 +2013,8,14,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,-6,0,909,-13,0,0 +2013,8,15,4,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-5,0,1019,-1,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1550,18,1,1820,10,0,0 +2013,5,11,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1855,1,0,2019,-15,0,0 +2013,8,19,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,545,-7,0,700,-22,0,0 +2013,7,14,7,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,34,1,918,45,1,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,620,-4,0,845,-10,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1245,0,0,1850,0,0,0 +2013,6,27,4,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,0,0,1340,-2,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,27,1,945,15,1,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1449,-7,0,1626,-30,0,0 +2013,10,7,1,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,600,29,1,728,45,1,0 +2013,6,14,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1850,2,0,1955,-4,0,0 +2013,7,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,951,-2,0,1319,-5,0,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2100,34,1,15,28,1,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1525,45,1,1757,40,1,0 +2013,9,10,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1328,9,0,1344,-2,0,0 +2013,10,27,7,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1240,35,1,1350,37,1,0 +2013,4,9,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,89,1,1215,80,1,0 +2013,8,22,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1714,-5,0,2324,-9,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1641,-2,0,1757,5,0,0 +2013,7,1,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,915,-6,0,1032,-19,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1540,0,0,1930,1,0,0 +2013,8,17,6,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1908,12,0,1940,8,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1652,-1,0,1754,-18,0,0 +2013,10,17,4,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,-3,0,1840,-5,0,0 +2013,10,7,1,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,18,1,1924,10,0,0 +2013,5,14,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,-13,0,2145,-13,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,-6,0,1320,-28,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1325,169,1,1745,185,1,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1128,-4,0,1300,-15,0,0 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2046,-3,0,2215,-16,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-1,0,1240,-4,0,0 +2013,7,6,6,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1000,-12,0,1223,-31,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1410,0,0,1425,-6,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1755,16,1,1920,5,0,0 +2013,10,12,6,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,830,7,0,1114,8,0,0 +2013,8,19,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,904,-2,0,1036,-7,0,0 +2013,5,2,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-2,0,1017,1,0,0 +2013,8,4,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1630,-2,0,1756,-22,0,0 +2013,7,10,3,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,122,1,2110,147,1,0 +2013,8,2,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-6,0,945,-22,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-3,0,2104,-7,0,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1840,91,1,1945,87,1,0 +2013,5,1,3,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,-3,0,608,7,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,9,0,2150,0,0,0 +2013,6,13,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,197,1,1755,190,1,0 +2013,6,16,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,0,0,2249,6,0,0 +2013,9,14,6,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1640,0,0,1825,-14,0,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1540,0,0,2115,-29,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,700,11,0,931,17,1,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1850,-4,0,2127,-23,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1359,1,0,1539,-21,0,0 +2013,10,15,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,655,-4,0,950,-2,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,15,1,1911,13,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1735,-5,0,2029,-26,0,0 +2013,6,25,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,2,0,1920,-13,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,833,-5,0,1125,-16,0,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1121,3,0,1307,-5,0,0 +2013,9,1,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1455,18,1,1630,20,1,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,19,1,1843,-19,0,0 +2013,8,19,1,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,800,-6,0,906,10,0,0 +2013,6,11,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1415,4,0,1530,-3,0,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,713,-3,0,1045,-11,0,0 +2013,10,4,5,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,930,-3,0,1200,3,0,0 +2013,6,24,1,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-2,0,1355,-4,0,0 +2013,9,23,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,825,-3,0,1636,-17,0,0 +2013,7,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-5,0,1105,-4,0,0 +2013,5,5,7,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,0,0,1110,-15,0,0 +2013,10,21,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-7,0,2058,8,0,0 +2013,6,29,6,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,-6,0,1838,-32,0,0 +2013,5,12,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1749,3,0,1850,4,0,0 +2013,9,29,7,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1825,-10,0,1855,-15,0,0 +2013,6,21,5,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1830,59,1,1925,49,1,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,930,-6,0,1300,-15,0,0 +2013,8,14,3,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1500,30,1,1607,37,1,0 +2013,4,15,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1810,36,1,2015,16,1,0 +2013,10,18,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1345,-5,0,1529,-17,0,0 +2013,6,17,1,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,709,-3,0,755,0,0,0 +2013,6,26,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-3,0,1523,44,1,0 +2013,5,8,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,5,0,1005,-3,0,0 +2013,8,7,3,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,-12,0,2355,7,0,0 +2013,10,25,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,-2,0,1442,-24,0,0 +2013,9,12,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,1,0,1735,-7,0,0 +2013,9,2,1,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1350,-1,0,1500,-1,0,0 +2013,7,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1225,-4,0,1350,-13,0,0 +2013,10,6,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,955,-5,0,1140,-22,0,0 +2013,7,9,2,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1436,38,1,1752,41,1,0 +2013,9,28,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1925,0,0,2025,-1,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,4,0,2250,7,0,0 +2013,10,19,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,820,-8,0,1050,-8,0,0 +2013,7,14,7,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,705,0,0,720,-4,0,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1750,0,0,1855,-7,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1755,42,1,1900,41,1,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2105,6,0,2204,3,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,713,-2,0,1026,-6,0,0 +2013,4,21,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,931,-10,0,0 +2013,10,3,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,2,0,920,4,0,0 +2013,7,16,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,836,4,0,1003,-13,0,0 +2013,5,24,5,OO,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1549,18,1,1715,15,1,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,910,0,0,1010,-9,0,0 +2013,6,5,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1100,-5,0,1307,-26,0,0 +2013,4,22,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1835,40,1,1925,43,1,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,0,0,1730,-12,0,0 +2013,6,5,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,130,1,2102,140,1,0 +2013,4,22,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,707,2,0,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,111,1,2354,99,1,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1825,40,1,2335,35,1,0 +2013,5,23,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1915,6,0,2244,9,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1750,4,0,1917,-2,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-1,0,745,-10,0,0 +2013,7,17,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1011,0,,1259,0,1,1 +2013,4,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,749,-3,0,901,0,0,0 +2013,10,9,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-10,0,855,-17,0,0 +2013,6,10,1,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1457,27,1,1600,17,1,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,2006,49,1,2105,42,1,0 +2013,4,18,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1555,43,1,1650,35,1,0 +2013,9,22,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,-2,0,2157,12,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1735,-5,0,1820,-15,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1916,4,0,1945,-1,0,0 +2013,8,14,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-9,0,1354,-12,0,0 +2013,6,11,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,-8,0,1750,-9,0,0 +2013,9,17,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1923,25,1,2207,27,1,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,1,0,1817,13,0,0 +2013,9,13,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1505,-1,0,1701,4,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2040,19,1,2152,-6,0,0 +2013,9,29,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-6,0,1630,1,0,0 +2013,5,31,5,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,2010,-1,0,2125,-8,0,0 +2013,6,4,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2140,-5,0,2243,-13,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1845,0,0,5,-3,0,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1936,42,1,2200,44,1,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,930,-8,0,1107,-23,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,59,1,1500,50,1,0 +2013,6,28,5,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,745,-4,0,1008,-11,0,0 +2013,10,22,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-12,0,1110,-19,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-1,0,1325,-10,0,0 +2013,6,17,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,935,-1,0,1100,-9,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1555,34,1,1720,32,1,0 +2013,6,14,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1305,-3,0,1419,-18,0,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,-7,0,1245,-32,0,0 +2013,8,25,7,YV,14100,Philadelphia International,Philadelphia,PA,14730,Louisville International-Standiford Field,Louisville,KY,2040,-2,0,2241,-17,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-2,0,1016,-5,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-1,0,922,-6,0,0 +2013,9,17,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2005,-4,0,2125,-18,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,720,-4,0,815,-17,0,0 +2013,4,20,6,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1619,-4,0,1910,-18,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,1,0,2100,1,0,0 +2013,8,6,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,825,-7,0,1040,-14,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1350,-1,0,1556,-9,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-6,0,1443,-9,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1905,1,0,2340,-33,0,0 +2013,9,3,2,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1930,-1,0,25,-6,0,0 +2013,5,23,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1225,2,0,1342,-9,0,0 +2013,9,16,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1238,-3,0,1825,-21,0,0 +2013,5,24,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1645,67,1,2025,153,1,0 +2013,10,1,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1350,-5,0,1500,-9,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,16,1,1918,3,0,0 +2013,8,16,5,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1840,46,1,2150,8,0,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,116,1,1350,107,1,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,917,-2,0,1737,-2,0,0 +2013,9,29,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-7,0,2033,-35,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1755,14,0,1910,11,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1900,-1,0,2120,-12,0,0 +2013,6,29,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1531,-11,0,1816,4,0,0 +2013,6,6,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1825,-5,0,2028,-25,0,0 +2013,6,14,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,0,0,1305,-4,0,0 +2013,8,25,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,21,1,2224,20,1,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1100,23,1,1228,11,0,0 +2013,9,21,6,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1700,-5,0,1859,-16,0,0 +2013,8,4,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1528,-4,0,1721,-6,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,19,1,1355,21,1,0 +2013,10,8,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-8,0,849,-9,0,0 +2013,10,24,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1555,13,0,1850,8,0,0 +2013,7,4,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,727,-3,0,900,-9,0,0 +2013,8,4,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,1,0,1815,0,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,825,0,0,1000,-10,0,0 +2013,4,23,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,845,-2,0,950,-2,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1650,141,1,1805,144,1,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1453,-3,0,1600,-17,0,0 +2013,5,27,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,2050,-3,0,2309,-22,0,0 +2013,9,27,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1245,-6,0,1600,-27,0,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1630,1,0,1753,0,0,0 +2013,9,20,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1836,50,1,2012,55,1,0 +2013,6,26,3,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1223,173,1,1408,197,1,0 +2013,7,9,2,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1845,67,1,2140,75,1,0 +2013,8,18,7,OO,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1654,-10,0,1836,6,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2100,10,0,2300,-16,0,0 +2013,7,3,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2125,-1,0,2345,1,0,0 +2013,9,25,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,-3,0,1159,-18,0,0 +2013,10,16,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,0,0,725,3,0,0 +2013,7,15,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,-3,0,1112,-18,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1911,14,0,2307,-17,0,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1857,3,0,0 +2013,9,17,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,901,-20,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,18,1,1715,10,0,0 +2013,4,21,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,1,0,1850,-11,0,0 +2013,6,29,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,12,0,800,9,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1030,1,0,1250,-15,0,0 +2013,8,29,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-5,0,1816,-5,0,0 +2013,5,23,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1423,14,0,1517,2,0,0 +2013,6,24,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1310,1,0,1939,-12,0,0 +2013,10,6,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1615,10,0,1905,2,0,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1640,-3,0,2020,9,0,0 +2013,9,27,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-4,0,915,-17,0,0 +2013,6,28,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,158,1,1450,153,1,0 +2013,4,16,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-6,0,1310,97,1,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1045,5,0,1505,13,0,0 +2013,9,18,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-1,0,2000,1,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1250,8,0,1425,11,0,0 +2013,6,27,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1640,1,0,1740,-11,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2040,43,1,2250,37,1,0 +2013,4,23,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,0,0,750,42,1,0 +2013,7,25,4,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,33,1,1215,54,1,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,11,0,1505,4,0,0 +2013,5,25,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,-3,0,1658,-6,0,0 +2013,10,5,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1133,7,0,1502,12,0,0 +2013,4,1,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1109,1,0,1356,-3,0,0 +2013,8,7,3,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1307,91,1,1459,92,1,0 +2013,10,6,7,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1515,16,1,1829,27,1,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,2,0,2333,-3,0,0 +2013,4,10,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,-2,0,910,-1,0,0 +2013,8,22,4,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1055,-2,0,1235,-3,0,0 +2013,4,7,7,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1940,13,0,2130,9,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,803,38,1,1020,46,1,0 +2013,8,18,7,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1848,-6,0,2100,-4,0,0 +2013,8,6,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1538,1,0,1824,-2,0,0 +2013,4,5,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1115,-1,0,1416,15,1,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-1,0,1521,0,0,0 +2013,4,19,5,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-2,0,1210,-1,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1015,12,0,1412,21,1,0 +2013,7,26,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,0,0,919,-1,0,0 +2013,4,18,4,EV,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,835,19,1,1022,10,0,0 +2013,9,7,6,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1001,-1,0,1116,-6,0,0 +2013,4,9,2,YV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,2057,144,1,2359,136,1,0 +2013,8,24,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,915,2,0,1642,2,0,0 +2013,9,16,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1150,-3,0,1445,0,0,0 +2013,4,3,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1800,-1,0,2028,-25,0,0 +2013,7,16,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1840,-1,0,1915,-9,0,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1315,39,1,1420,33,1,0 +2013,6,25,2,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1942,157,1,2105,184,1,0 +2013,6,2,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,715,-1,0,930,5,0,0 +2013,6,28,5,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1245,19,1,1344,13,0,0 +2013,5,26,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1150,0,0,1305,-9,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1955,-9,0,2220,-26,0,0 +2013,4,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2110,58,1,2220,48,1,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1725,9,0,1845,-6,0,0 +2013,5,11,6,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1551,7,0,1635,8,0,0 +2013,10,19,6,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1101,-4,0,1418,2,0,0 +2013,6,27,4,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2005,-5,0,1132,-24,0,0 +2013,4,19,5,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1330,9,0,1425,5,0,0 +2013,9,19,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1527,43,1,1701,29,1,0 +2013,6,17,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,-1,0,2039,60,1,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2150,0,0,2315,4,0,0 +2013,6,6,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,-7,0,1535,-8,0,0 +2013,5,5,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,851,-5,0,1153,5,0,0 +2013,8,27,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,1010,2,0,0 +2013,4,20,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,810,-4,0,920,-7,0,0 +2013,6,12,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-2,0,1615,-22,0,0 +2013,4,5,5,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1025,-7,0,1245,-14,0,0 +2013,4,26,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-4,0,1854,-14,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,-1,0,2155,0,0,0 +2013,10,14,1,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1546,-4,0,1721,-20,0,0 +2013,7,28,7,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-8,0,1227,-18,0,0 +2013,9,12,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1740,267,1,1830,299,1,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-5,0,830,-1,0,0 +2013,6,3,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-5,0,1103,21,1,0 +2013,5,27,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-2,0,712,-7,0,0 +2013,5,7,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-6,0,1656,-13,0,0 +2013,4,19,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1735,5,0,1855,-2,0,0 +2013,7,18,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,3,0,1915,25,1,0 +2013,6,11,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1001,15,1,1220,4,0,0 +2013,8,13,2,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,815,6,0,1053,17,1,0 +2013,9,18,3,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1627,-6,0,1754,-11,0,0 +2013,8,21,3,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,1420,-5,0,1721,3,0,0 +2013,6,22,6,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2205,18,1,2250,17,1,0 +2013,5,18,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1605,21,1,2230,14,0,0 +2013,7,6,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-3,0,940,-18,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,832,-2,0,910,-11,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1815,13,0,2046,13,0,0 +2013,4,28,7,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,800,1,0,1045,-9,0,0 +2013,7,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2017,11,0,2115,4,0,0 +2013,7,7,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,11,0,1423,14,0,0 +2013,5,8,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,-5,0,2047,-12,0,0 +2013,4,10,3,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,247,1,1940,258,1,0 +2013,9,22,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1510,17,1,1715,-2,0,0 +2013,7,1,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,-2,0,2155,-1,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2145,-2,0,2355,9,0,0 +2013,4,1,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2005,0,0,2330,9,0,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1415,4,0,1633,3,0,0 +2013,5,6,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,5,0,5,-8,0,0 +2013,6,29,6,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1045,126,1,1200,126,1,0 +2013,4,24,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,619,-5,0,0 +2013,6,19,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,39,1,1259,33,1,0 +2013,9,21,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,803,-12,0,0 +2013,4,16,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-3,0,810,6,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,6,0,2320,0,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1430,1,0,1530,6,0,0 +2013,9,5,4,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,850,-5,0,1025,-7,0,0 +2013,4,25,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1550,27,1,1710,16,1,0 +2013,10,17,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-5,0,1405,-15,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,740,-8,0,1010,4,0,0 +2013,10,9,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1825,-8,0,2045,-8,0,0 +2013,5,10,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-1,0,1420,7,0,0 +2013,7,10,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1445,0,,1500,0,1,1 +2013,7,13,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-3,0,901,-13,0,0 +2013,5,26,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,820,-8,0,942,-19,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,710,-3,0,830,2,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1240,141,1,1515,128,1,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1525,3,0,1806,-42,0,0 +2013,5,11,6,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,0,0,705,-8,0,0 +2013,10,25,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,8,0,906,17,1,0 +2013,9,12,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,948,55,1,1747,62,1,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-8,0,1012,5,0,0 +2013,6,28,5,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1743,-4,0,2034,0,0,0 +2013,9,3,2,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,0,0,1620,8,0,0 +2013,4,17,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-4,0,1128,-2,0,0 +2013,9,29,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,-8,0,1600,1,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1927,-1,0,2121,-24,0,0 +2013,4,14,7,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1759,-4,0,2329,-13,0,0 +2013,4,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-5,0,1015,-23,0,0 +2013,6,24,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,49,1,2255,38,1,0 +2013,5,18,6,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1310,-11,0,1801,-31,0,0 +2013,5,7,2,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1345,-6,0,2203,-6,0,0 +2013,9,29,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1703,-3,0,1729,-12,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,8,0,1110,25,1,0 +2013,8,22,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,5,0,2117,-4,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-2,0,2005,14,0,0 +2013,7,31,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1730,24,1,1820,21,1,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,-4,0,16,-19,0,0 +2013,4,9,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-15,0,914,-23,0,0 +2013,5,4,6,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1549,-2,0,2359,-7,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2113,131,1,2235,119,1,0 +2013,7,16,2,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1800,-6,0,1920,-16,0,0 +2013,9,27,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1712,0,0,1849,-10,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1005,10,0,1525,-6,0,0 +2013,9,16,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,700,-8,0,1515,-12,0,0 +2013,10,11,5,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,3,0,822,18,1,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2155,35,1,2305,31,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-2,0,1448,-14,0,0 +2013,7,10,3,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,752,-8,0,1555,-34,0,0 +2013,10,13,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2035,23,1,2205,-5,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1725,-1,0,1840,-3,0,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-4,0,927,10,0,0 +2013,5,21,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,13,0,1250,1,0,0 +2013,10,13,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1941,0,0,2230,-10,0,0 +2013,7,14,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1228,-8,0,0 +2013,5,12,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,804,-6,0,858,-14,0,0 +2013,10,5,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,815,1,0,940,25,1,0 +2013,6,27,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,744,-10,0,0 +2013,10,26,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,-6,0,2050,-44,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,-2,0,1410,-7,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1705,8,0,1815,-6,0,0 +2013,10,7,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-5,0,840,-18,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1100,-3,0,1227,-27,0,0 +2013,9,22,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,13,0,1345,10,0,0 +2013,4,19,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2153,127,1,2337,151,1,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1945,-4,0,2055,10,0,0 +2013,6,15,6,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1845,-7,0,29,-21,0,0 +2013,7,24,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,-1,0,2015,4,0,0 +2013,5,4,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-5,0,1111,-22,0,0 +2013,10,29,2,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,855,-7,0,1027,7,0,0 +2013,4,14,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2110,-4,0,2219,-5,0,0 +2013,4,2,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1156,0,0,1249,-10,0,0 +2013,8,14,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,0,0,1354,3,0,0 +2013,6,17,1,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,57,1,1525,61,1,0 +2013,4,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,83,1,2019,90,1,0 +2013,7,7,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,549,-5,0,859,-6,0,0 +2013,8,16,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1536,-6,0,2044,-8,0,0 +2013,5,5,7,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1125,-5,0,1715,-16,0,0 +2013,4,28,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2005,31,1,2027,33,1,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,910,-2,0,1225,-1,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1315,25,1,1445,27,1,0 +2013,7,7,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1425,-4,0,2020,17,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1620,0,0,1747,-8,0,0 +2013,6,2,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,-3,0,930,-5,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1840,-3,0,2356,-21,0,0 +2013,8,9,5,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,739,56,1,1035,57,1,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-2,0,1235,-20,0,0 +2013,4,21,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,3,0,2138,-35,0,0 +2013,10,29,2,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-9,0,1634,-9,0,0 +2013,8,4,7,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,-3,0,1240,-8,0,0 +2013,9,9,1,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1000,-6,0,1115,-3,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,925,7,0,1135,4,0,0 +2013,7,28,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-3,0,906,-12,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,719,-1,0,1311,-9,0,0 +2013,9,24,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,0,,2135,0,1,1 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1020,-3,0,1227,-15,0,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,13,0,2044,21,1,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,858,-3,0,1036,-18,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,-2,0,855,-4,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,-1,0,1005,-4,0,0 +2013,10,27,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,-7,0,2119,-16,0,0 +2013,10,17,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1129,15,1,1456,1,0,0 +2013,10,15,2,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,0,0,1110,-18,0,0 +2013,9,6,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1324,1,0,1457,-6,0,0 +2013,4,4,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,735,31,1,905,23,1,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,840,-4,0,1020,8,0,0 +2013,8,21,3,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1113,-1,0,1329,-1,0,0 +2013,6,15,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1535,28,1,1834,24,1,0 +2013,4,14,7,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,704,0,0,909,-17,0,0 +2013,5,25,6,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1050,31,1,1310,29,1,0 +2013,7,11,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,0,,2110,0,1,1 +2013,7,20,6,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1351,118,1,1456,116,1,0 +2013,7,1,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,909,14,0,1045,42,1,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-2,0,1018,7,0,0 +2013,6,19,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,2,0,1800,-14,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,-5,0,1200,-5,0,0 +2013,4,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,-4,0,1118,4,0,0 +2013,6,28,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1424,3,0,1605,6,0,0 +2013,6,11,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1850,119,1,2050,117,1,0 +2013,6,25,2,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,17,1,2354,11,0,0 +2013,5,8,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-7,0,2025,-11,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1500,-5,0,1830,10,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2030,40,1,2215,33,1,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,10,0,1033,-7,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,730,9,0,900,2,0,0 +2013,8,3,6,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,933,17,1,1332,36,1,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,22,1,1745,9,0,0 +2013,6,21,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,940,1,0,1050,4,0,0 +2013,8,23,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,800,-3,0,905,-3,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,920,-4,0,1113,-11,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,2,0,941,-8,0,0 +2013,7,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-6,0,2140,-14,0,0 +2013,5,19,7,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1546,49,1,1830,46,1,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1440,14,0,1645,9,0,0 +2013,8,10,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1630,-1,0,1915,0,0,0 +2013,7,4,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-9,0,1116,-5,0,0 +2013,4,5,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1610,-1,0,1740,-3,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1909,73,1,2022,72,1,0 +2013,10,5,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,801,-6,0,822,-3,0,0 +2013,7,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,810,6,0,905,-7,0,0 +2013,4,1,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,933,-2,0,1216,-8,0,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1516,102,1,1609,99,1,0 +2013,4,25,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,32,1,1830,27,1,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,950,-2,0,1045,-14,0,0 +2013,5,9,4,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,800,-8,0,1354,-10,0,0 +2013,8,2,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1935,-8,0,2058,-20,0,0 +2013,7,21,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1735,39,1,2022,86,1,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1959,-2,0,2123,1,0,0 +2013,7,28,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,810,-2,0,847,-25,0,0 +2013,10,24,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1550,-6,0,1705,-5,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,745,5,0,852,16,1,0 +2013,5,28,2,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,14,0,2015,5,0,0 +2013,8,20,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1855,-7,0,2359,-7,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,835,2,0,1000,-8,0,0 +2013,10,2,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1730,-2,0,1905,-11,0,0 +2013,4,4,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1025,-1,0,1040,-12,0,0 +2013,5,10,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1214,-4,0,1305,-17,0,0 +2013,7,26,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,141,1,859,136,1,0 +2013,5,15,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1544,-4,0,2000,8,0,0 +2013,6,28,5,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,44,1,743,31,1,0 +2013,8,23,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,5,0,2230,8,0,0 +2013,9,25,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,941,-2,0,1619,-10,0,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,942,-13,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1459,-4,0,1633,-35,0,0 +2013,4,7,7,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1730,12,0,2049,21,1,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2045,207,1,2215,206,1,0 +2013,7,14,7,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1730,34,1,1915,26,1,0 +2013,9,25,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1255,13,0,0 +2013,7,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,5,0,1710,-7,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,820,-2,0,1000,-2,0,0 +2013,10,2,3,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1834,-7,0,2036,-16,0,0 +2013,6,27,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,2140,-1,0,144,1,0,0 +2013,8,1,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1435,-5,0,1615,-21,0,0 +2013,4,5,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,801,-26,0,0 +2013,7,1,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,700,100,1,953,72,1,0 +2013,9,17,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1000,4,0,1315,-6,0,0 +2013,8,16,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-5,0,2214,-14,0,0 +2013,6,28,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1455,0,0,1830,-46,0,0 +2013,8,14,3,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,-5,0,1849,-8,0,0 +2013,10,3,4,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1639,-4,0,1920,-31,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2105,40,1,2210,40,1,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1915,-9,0,2044,-5,0,0 +2013,5,28,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,639,-1,0,809,-8,0,0 +2013,4,3,3,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2000,17,1,2220,10,0,0 +2013,8,23,5,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1136,-1,0,1949,-2,0,0 +2013,9,18,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1340,10,0,1440,6,0,0 +2013,5,7,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,6,0,1109,0,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,805,-3,0,1042,-9,0,0 +2013,7,18,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-6,0,912,-42,0,0 +2013,5,17,5,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1250,-6,0,2114,-15,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,910,4,0,1115,10,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1640,4,0,1920,6,0,0 +2013,8,15,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,1,0,740,-2,0,0 +2013,9,26,4,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1915,-5,0,2303,-42,0,0 +2013,6,2,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1335,47,1,1540,33,1,0 +2013,6,28,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1220,-2,0,1445,-9,0,0 +2013,8,13,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1607,0,0,1944,-13,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,725,-2,0,901,-7,0,0 +2013,5,12,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1135,4,0,1225,3,0,0 +2013,6,11,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1330,8,0,1610,8,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1050,7,0,1236,-4,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1520,67,1,1820,60,1,0 +2013,7,22,1,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1045,3,0,1240,-9,0,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1919,-5,0,2333,-35,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1256,5,0,1700,4,0,0 +2013,4,7,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,-6,0,1605,-10,0,0 +2013,10,25,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,5,0,2022,-4,0,0 +2013,6,30,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1455,0,0,1720,-10,0,0 +2013,5,31,5,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1720,15,1,2007,68,1,0 +2013,4,29,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1310,-1,0,1710,5,0,0 +2013,8,23,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,-3,0,2049,-3,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1735,44,1,1825,115,1,0 +2013,5,11,6,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1236,5,0,1401,3,0,0 +2013,10,31,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1100,14,0,1335,17,1,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,1,0,1353,0,0,0 +2013,5,22,3,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-9,0,1005,-16,0,0 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1040,4,0,1305,1,0,0 +2013,5,21,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,640,-4,0,840,-13,0,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,850,0,0,1054,-16,0,0 +2013,6,18,2,9E,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-2,0,1623,1,0,0 +2013,8,14,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2017,-5,0,2115,-14,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,1,0,2205,-17,0,0 +2013,9,11,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1450,35,1,1835,30,1,0 +2013,9,19,4,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1753,13,0,2104,47,1,0 +2013,6,20,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,-1,0,1235,-16,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,620,-6,0,745,-15,0,0 +2013,4,29,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1235,-5,0,1400,-12,0,0 +2013,6,3,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,0,0,910,3,0,0 +2013,10,5,6,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,950,0,0,1120,-16,0,0 +2013,4,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,755,-1,0,955,-6,0,0 +2013,9,3,2,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1500,-9,0,1757,-10,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1729,-3,0,1905,-16,0,0 +2013,10,18,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1312,-5,0,1618,-30,0,0 +2013,9,3,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-8,0,1010,-6,0,0 +2013,9,23,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1515,2,0,1631,-8,0,0 +2013,6,19,3,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1740,7,0,2020,3,0,0 +2013,7,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,838,-5,0,1105,-22,0,0 +2013,5,27,1,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1715,-4,0,2305,-11,0,0 +2013,8,22,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-3,0,840,4,0,0 +2013,7,4,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-5,0,830,-8,0,0 +2013,6,29,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,832,-4,0,935,-12,0,0 +2013,5,14,2,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,830,6,0,0 +2013,8,25,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-5,0,853,-7,0,0 +2013,6,6,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1800,-3,0,2325,9,0,0 +2013,7,17,3,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,203,1,1013,189,1,0 +2013,7,3,3,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1455,-5,0,1715,12,0,0 +2013,4,6,6,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1920,-2,0,2024,3,0,0 +2013,10,26,6,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2020,-2,0,2307,-14,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1736,116,1,1914,103,1,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1301,1,0,1446,7,0,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-9,0,840,-9,0,0 +2013,8,13,2,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2003,21,1,2208,30,1,0 +2013,9,12,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1000,-8,0,1030,-16,0,0 +2013,5,28,2,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1729,-2,0,2105,9,0,0 +2013,4,12,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,0,0,1325,-3,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,-3,0,1045,0,0,0 +2013,5,20,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1059,-2,0,1110,-12,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,1,0,940,2,0,0 +2013,5,29,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1030,1,0,1515,0,0,0 +2013,5,22,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-3,0,951,-33,0,0 +2013,6,11,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-1,0,1420,13,0,0 +2013,7,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,830,0,0,1000,-14,0,0 +2013,4,6,6,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-7,0,813,-15,0,0 +2013,4,24,3,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1352,-1,0,2216,-16,0,0 +2013,6,5,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1600,18,1,1615,18,1,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,1,0,1425,3,0,0 +2013,7,27,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,0,0,1655,-5,0,0 +2013,9,15,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-4,0,1705,-19,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,-3,0,1730,-7,0,0 +2013,10,22,2,AS,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1825,-5,0,2047,-19,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,-5,0,1357,-11,0,0 +2013,5,25,6,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1446,-7,0,1628,-12,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1405,-3,0,1509,-13,0,0 +2013,5,25,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-3,0,1010,1,0,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1855,34,1,2120,41,1,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1730,97,1,2019,107,1,0 +2013,8,14,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-7,0,1430,-10,0,0 +2013,6,17,1,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,814,-3,0,1055,12,0,0 +2013,4,15,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,10,0,1705,-8,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,17,1,1515,13,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,9,0,1500,2,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,915,-1,0,1015,-17,0,0 +2013,4,24,3,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1427,124,1,1650,120,1,0 +2013,10,3,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1220,17,1,1355,4,0,0 +2013,8,2,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-4,0,1550,-16,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,708,-7,0,1549,-28,0,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1040,4,0,1645,-8,0,0 +2013,7,26,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-2,0,1025,-2,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1220,23,1,1335,11,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,109,1,1911,150,1,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,24,1,1620,3,0,0 +2013,4,2,2,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,735,-5,0,1248,-19,0,0 +2013,8,7,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,650,0,0,1025,-9,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,-4,0,943,-32,0,0 +2013,4,10,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,,1406,0,1,1 +2013,6,16,7,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,805,-1,0,1100,-19,0,0 +2013,5,26,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-2,0,2227,-13,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,945,6,0,1415,-13,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-1,0,1150,-7,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1710,212,1,2240,205,1,0 +2013,6,2,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,35,1,1900,19,1,0 +2013,5,4,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1146,-7,0,1438,-9,0,0 +2013,10,9,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-16,0,1010,-29,0,0 +2013,8,6,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,711,-3,0,1034,-12,0,0 +2013,9,13,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1640,30,1,1815,21,1,0 +2013,7,16,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1441,-4,0,1600,8,0,0 +2013,4,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-6,0,2055,-19,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,945,-4,0,1045,-15,0,0 +2013,5,4,6,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,11,0,2154,-41,0,0 +2013,7,15,1,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,3,0,915,9,0,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,-2,0,1155,-3,0,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,705,-3,0,825,-10,0,0 +2013,5,14,2,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,925,-22,0,1110,-10,0,0 +2013,10,23,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,545,-7,0,705,-12,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1208,-5,0,1502,-28,0,0 +2013,5,5,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,700,-4,0,939,-15,0,0 +2013,5,7,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,800,3,0,925,6,0,0 +2013,8,6,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2250,2,0,139,-6,0,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1600,23,1,1725,19,1,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-2,0,950,-5,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1750,40,1,1840,39,1,0 +2013,7,28,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1859,5,0,2105,32,1,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1830,-3,0,2055,-42,0,0 +2013,8,10,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,19,1,1345,-1,0,0 +2013,6,9,7,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,808,-2,0,927,-5,0,0 +2013,9,17,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1715,19,1,1825,7,0,0 +2013,7,29,1,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1855,119,1,2215,140,1,0 +2013,6,3,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,-5,0,1942,7,0,0 +2013,7,12,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,745,0,,840,0,1,1 +2013,7,16,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-1,0,843,3,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1855,67,1,2215,64,1,0 +2013,8,12,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,1,0,845,-8,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1839,-5,0,2359,3,0,0 +2013,5,29,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,0,0,835,5,0,0 +2013,8,21,3,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,640,-9,0,805,-14,0,0 +2013,4,28,7,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-4,0,2040,7,0,0 +2013,5,31,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,755,-8,0,1032,-13,0,0 +2013,10,20,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1703,1,0,1830,0,0,0 +2013,4,17,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,0,0,2205,-1,0,0 +2013,7,4,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1045,0,0,1200,-14,0,0 +2013,6,22,6,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1955,-1,0,2249,-6,0,0 +2013,7,19,5,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,29,1,2115,38,1,0 +2013,8,5,1,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1855,-1,0,2000,8,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,154,1,1740,163,1,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1354,-6,0,1724,-32,0,0 +2013,9,22,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-4,0,1810,-21,0,0 +2013,7,15,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,6,0,1155,3,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,845,1,0,1200,-4,0,0 +2013,4,13,6,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1625,-4,0,2000,-8,0,0 +2013,4,5,5,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1008,61,1,1211,71,1,0 +2013,8,7,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,-4,0,1825,-16,0,0 +2013,9,26,4,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1930,3,0,2132,6,0,0 +2013,9,29,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1900,0,0,2000,-8,0,0 +2013,6,19,3,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,-4,0,1054,-12,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,15,1,842,7,0,0 +2013,10,24,4,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1215,-3,0,1334,-9,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1950,-5,0,2142,-10,0,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,-5,0,2155,-15,0,0 +2013,7,8,1,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,0,0,1800,-5,0,0 +2013,8,13,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,43,1,2125,37,1,0 +2013,4,21,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1935,0,,2104,0,1,1 +2013,5,28,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1610,-7,0,1722,-11,0,0 +2013,6,11,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-8,0,1858,-22,0,0 +2013,6,23,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,945,21,1,1105,28,1,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1110,-1,0,1435,-14,0,0 +2013,7,22,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,15,1,1017,-5,0,0 +2013,5,23,4,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,930,-5,0,1127,9,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,0,0,2330,-7,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,830,9,0,1310,22,1,0 +2013,6,12,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2115,0,0,2220,-10,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1430,0,0,1620,-3,0,0 +2013,5,12,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,29,1,2140,14,0,0 +2013,6,12,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-3,0,1940,-5,0,0 +2013,8,30,5,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,855,12,0,1210,0,0,0 +2013,4,2,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-11,0,1121,-18,0,0 +2013,7,18,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2055,108,1,2230,72,1,0 +2013,4,1,1,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1959,-9,0,2120,-5,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,735,-4,0,1155,-22,0,0 +2013,6,3,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1905,-5,0,2020,-11,0,0 +2013,7,16,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-2,0,1843,39,1,0 +2013,9,26,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1108,-3,0,1255,-5,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1235,5,0,1405,-8,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1555,0,0,1724,-20,0,0 +2013,10,21,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-3,0,2025,0,0,0 +2013,6,3,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1115,-2,0,1240,7,0,0 +2013,6,11,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,7,0,2102,-4,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2154,12,0,2339,5,0,0 +2013,6,4,2,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1540,45,1,1736,38,1,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2155,55,1,2250,47,1,0 +2013,10,21,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1310,77,1,1620,79,1,0 +2013,10,31,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,1035,1,0,0 +2013,8,25,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,953,48,1,1041,43,1,0 +2013,6,21,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-4,0,848,-11,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,27,1,2348,12,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1005,-5,0,1244,-40,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,815,-6,0,1057,-31,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,954,-3,0,1130,19,1,0 +2013,4,1,1,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1540,-3,0,1648,4,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,92,1,2245,81,1,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1915,22,1,2308,0,0,0 +2013,10,18,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1110,-12,0,1245,-14,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,117,1,1845,107,1,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-5,0,1520,-14,0,0 +2013,8,31,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1810,-2,0,2235,-1,0,0 +2013,10,19,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1210,0,0,1220,-5,0,0 +2013,4,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,24,1,2249,3,0,0 +2013,9,5,4,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1425,6,0,1533,5,0,0 +2013,10,7,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1554,-5,0,1846,-18,0,0 +2013,8,19,1,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1959,-5,0,2109,-6,0,0 +2013,7,17,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-3,0,1159,1,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2000,-3,0,2130,-8,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,63,1,1850,70,1,0 +2013,5,9,4,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2019,0,0,2259,-12,0,0 +2013,9,10,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1738,-5,0,1953,-21,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,1000,-6,0,0 +2013,6,5,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,216,1,2134,199,1,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2222,1,0,2344,-2,0,0 +2013,4,18,4,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1558,7,0,2004,16,1,0 +2013,9,11,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,930,0,0,1155,-7,0,0 +2013,8,8,4,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,3,0,1230,3,0,0 +2013,5,1,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1928,-7,0,2140,1,0,0 +2013,4,1,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,7,0,1140,-6,0,0 +2013,6,21,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1653,-2,0,1751,-4,0,0 +2013,4,7,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1705,2,0,1835,-3,0,0 +2013,7,10,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2015,81,1,2105,69,1,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-3,0,1040,-12,0,0 +2013,5,26,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,830,-6,0,1050,-16,0,0 +2013,9,13,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,-5,0,1920,-4,0,0 +2013,4,26,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,3,0,1930,-6,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,600,-1,0,730,-1,0,0 +2013,10,2,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1317,15,1,1607,14,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,8,0,2010,6,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,2,0,2115,-14,0,0 +2013,10,22,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,955,-7,0,1243,-13,0,0 +2013,10,15,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1425,60,1,1721,66,1,0 +2013,8,13,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,925,-8,0,945,-9,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,0,0,1030,-5,0,0 +2013,9,21,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,827,-12,0,0 +2013,7,10,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,44,1,1557,77,1,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1355,1,0,1659,-5,0,0 +2013,7,27,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1845,-12,0,2047,21,1,0 +2013,8,23,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2235,-2,0,700,1,0,0 +2013,8,31,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,839,0,,1052,0,1,1 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1615,29,1,1720,28,1,0 +2013,10,25,5,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,645,15,1,1039,10,0,0 +2013,7,16,2,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,830,2,0,1110,9,0,0 +2013,4,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-9,0,1340,-7,0,0 +2013,8,8,4,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,630,4,0,813,-1,0,0 +2013,10,7,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,18,1,1700,12,0,0 +2013,4,4,4,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1735,48,1,2003,29,1,0 +2013,8,20,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-10,0,1634,-3,0,0 +2013,4,26,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1155,-4,0,1233,1,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1205,-2,0,1312,-5,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,0,0,1029,-8,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,700,-9,0,957,7,0,0 +2013,7,28,7,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,-3,0,1538,-11,0,0 +2013,9,4,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1930,3,0,45,5,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-1,0,1952,-11,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1915,-5,0,2043,-13,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1125,-3,0,1324,-7,0,0 +2013,9,10,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-9,0,1656,-12,0,0 +2013,4,20,6,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,640,10,0,813,18,1,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1315,1,0,1536,-1,0,0 +2013,8,10,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1127,6,0,1246,2,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,835,-2,0,1045,-5,0,0 +2013,7,26,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-1,0,1607,34,1,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,605,-15,0,1425,-21,0,0 +2013,6,1,6,OO,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,807,0,0,1024,-7,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,710,-5,0,1225,-13,0,0 +2013,8,2,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1636,55,1,2027,43,1,0 +2013,5,21,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1015,7,0,1526,19,1,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,825,10,0,1040,9,0,0 +2013,7,19,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1350,18,1,1505,-5,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,1,0,1410,-4,0,0 +2013,5,9,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1420,-3,0,1717,0,0,0 +2013,8,9,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1744,9,0,1847,9,0,0 +2013,7,21,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1645,-2,0,0 +2013,10,4,5,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,2028,-3,0,2227,-11,0,0 +2013,5,6,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1450,11,0,1545,1,0,0 +2013,10,20,7,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1515,-8,0,1613,-11,0,0 +2013,9,27,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,23,1,2335,27,1,0 +2013,7,26,5,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,617,-7,0,1215,-16,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1000,-1,0,1100,-10,0,0 +2013,10,14,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-6,0,1051,-11,0,0 +2013,7,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,855,-3,0,1130,-11,0,0 +2013,10,25,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1200,-3,0,1309,-11,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,713,-2,0,1130,-22,0,0 +2013,9,14,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1939,-3,0,2103,-4,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1615,17,1,1935,6,0,0 +2013,6,1,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1128,28,1,1330,65,1,0 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,32,1,1346,30,1,0 +2013,8,5,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,0,0,1701,-4,0,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1305,2,0,1820,6,0,0 +2013,7,4,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,-2,0,1550,-15,0,0 +2013,7,5,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1040,-5,0,1855,-9,0,0 +2013,9,14,6,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,800,11,0,1105,-7,0,0 +2013,4,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,1,0,2255,2,0,0 +2013,10,31,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1551,-2,0,1753,-14,0,0 +2013,7,4,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1118,-1,0,1510,13,0,0 +2013,8,17,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1450,-2,0,1703,5,0,0 +2013,9,27,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,605,-6,0,750,-5,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-2,0,930,-5,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1820,9,0,2045,7,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,14,0,1028,4,0,0 +2013,10,11,5,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1130,-14,0,1607,-13,0,0 +2013,7,5,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-7,0,1936,-12,0,0 +2013,7,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,845,1,0,950,13,0,0 +2013,6,6,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2050,0,0,2338,-8,0,0 +2013,10,28,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1615,45,1,1740,42,1,0 +2013,10,20,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-4,0,1240,-3,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1910,13,0,2104,22,1,0 +2013,5,17,5,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,815,-6,0,1024,-24,0,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1725,37,1,2000,18,1,0 +2013,5,5,7,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,20,1,1710,14,0,0 +2013,4,14,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1130,-1,0,1230,-13,0,0 +2013,9,8,7,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-5,0,1534,-13,0,0 +2013,5,8,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1801,-4,0,2007,1,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,-1,0,1235,-6,0,0 +2013,9,22,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1804,-18,0,0 +2013,4,27,6,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,934,-5,0,1207,-13,0,0 +2013,10,11,5,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,640,0,0,805,-4,0,0 +2013,7,12,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,725,-19,0,0 +2013,9,2,1,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-9,0,1311,-10,0,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,3,0,1840,15,1,0 +2013,10,14,1,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-14,0,1001,-27,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1610,-2,0,1735,-10,0,0 +2013,10,20,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1739,1,0,1821,0,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,-9,0,1430,-24,0,0 +2013,10,3,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-8,0,925,-11,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2210,77,1,2305,88,1,0 +2013,5,17,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-2,0,1230,-2,0,0 +2013,10,10,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-3,0,1004,-2,0,0 +2013,9,8,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,850,3,0,1115,-22,0,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,4,0,1735,-8,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,28,1,2344,32,1,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1110,4,0,1245,11,0,0 +2013,5,22,3,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1655,182,1,1920,177,1,0 +2013,7,19,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,-7,0,1346,-13,0,0 +2013,6,25,2,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,730,-3,0,920,-6,0,0 +2013,10,19,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1540,0,0,1645,-6,0,0 +2013,5,3,5,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1554,-6,0,2358,0,0,0 +2013,7,28,7,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-3,0,1405,-19,0,0 +2013,6,12,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-2,0,1250,-6,0,0 +2013,6,16,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,940,0,0,1110,-12,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2325,-8,0,508,-28,0,0 +2013,10,14,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1328,47,1,1413,55,1,0 +2013,9,26,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-3,0,1820,-21,0,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,830,0,0,950,-4,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2115,64,1,5,67,1,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1440,24,1,1605,20,1,0 +2013,10,3,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1919,0,0,2026,-1,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1710,27,1,1900,25,1,0 +2013,7,21,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,4,0,1705,-13,0,0 +2013,8,23,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,840,-2,0,930,-2,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1315,35,1,1511,29,1,0 +2013,8,25,7,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1435,-2,0,2255,-12,0,0 +2013,10,10,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1905,-7,0,1930,-8,0,0 +2013,4,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,844,-4,0,1030,-1,0,0 +2013,4,22,1,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1110,-4,0,1430,2,0,0 +2013,7,19,5,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1456,0,0,1636,-5,0,0 +2013,6,12,3,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,920,1,0,1105,-6,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,901,1,0,1231,-8,0,0 +2013,8,10,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1725,-5,0,1744,9,0,0 +2013,4,6,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,-2,0,1900,-9,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,0,0,1028,15,1,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,31,1,1535,54,1,0 +2013,7,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,2000,1,0,2101,3,0,0 +2013,4,10,3,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1005,7,0,1225,-7,0,0 +2013,10,19,6,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,645,-1,0,805,6,0,0 +2013,6,20,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1527,-2,0,1652,-13,0,0 +2013,10,6,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1800,14,0,1900,47,1,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2225,50,1,120,42,1,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1640,2,0,2148,-31,0,0 +2013,4,17,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,942,9,0,1223,5,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,30,1,1055,31,1,0 +2013,7,24,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1510,-10,0,1642,3,0,0 +2013,4,27,6,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-3,0,1345,-15,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,735,-2,0,1010,-9,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,60,1,1720,50,1,0 +2013,6,14,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,14,0,1356,9,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2114,26,1,2234,8,0,0 +2013,10,3,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,2,0,1720,5,0,0 +2013,8,4,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-3,0,859,2,0,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,930,-3,0,1054,-17,0,0 +2013,8,27,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1934,-7,0,2128,-16,0,0 +2013,9,10,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1010,-9,0,1445,-21,0,0 +2013,7,23,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,27,1,1414,25,1,0 +2013,8,4,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,942,-4,0,1332,-14,0,0 +2013,10,28,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,0,0,1921,-2,0,0 +2013,7,9,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-1,0,1254,-11,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,3,0,1615,-4,0,0 +2013,6,21,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-3,0,1345,-29,0,0 +2013,10,30,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,815,2,0,1017,9,0,0 +2013,10,25,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1024,-11,0,1413,1,0,0 +2013,5,26,7,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1328,-2,0,1536,2,0,0 +2013,5,23,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1120,88,1,1716,82,1,0 +2013,6,8,6,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1345,-7,0,2203,-25,0,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,730,-1,0,950,-8,0,0 +2013,5,2,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,6,0,2234,-3,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1250,-2,0,1430,-13,0,0 +2013,5,30,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1200,-8,0,1327,-24,0,0 +2013,7,13,6,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1155,-4,0,1455,32,1,0 +2013,4,30,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,1,0,1643,-20,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1145,7,0,1240,4,0,0 +2013,10,30,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1030,2,0,1230,-5,0,0 +2013,6,2,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1115,-4,0,1249,3,0,0 +2013,10,23,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,822,73,1,1015,67,1,0 +2013,6,4,2,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,804,-10,0,950,-3,0,0 +2013,6,10,1,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,814,-5,0,1000,0,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-3,0,1110,-20,0,0 +2013,6,8,6,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1743,-5,0,2244,-9,0,0 +2013,4,16,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-13,0,1530,-4,0,0 +2013,4,30,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,905,-1,0,1013,-9,0,0 +2013,9,25,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2035,20,1,2150,13,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1743,-3,0,2106,-1,0,0 +2013,9,27,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1155,-3,0,1805,-31,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1605,24,1,1825,24,1,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1301,-4,0,1515,4,0,0 +2013,10,13,7,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1353,-1,0,1635,-18,0,0 +2013,8,15,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,6,0,901,-6,0,0 +2013,5,7,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1020,6,0,1310,1,0,0 +2013,9,19,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,-2,0,1052,-6,0,0 +2013,6,23,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1601,0,,1700,0,1,1 +2013,10,4,5,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1911,15,1,2050,-5,0,0 +2013,4,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1210,15,1,1425,31,1,0 +2013,5,1,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,-2,0,930,-11,0,0 +2013,9,3,2,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1700,-3,0,1912,-21,0,0 +2013,7,21,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1254,-2,0,1437,-5,0,0 +2013,8,1,4,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1555,-15,0,2340,5,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1445,111,1,1718,110,1,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-1,0,1945,-6,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1920,35,1,2150,35,1,0 +2013,8,24,6,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,740,-5,0,845,-11,0,0 +2013,10,28,1,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,3,0,110,-11,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-1,0,2337,-11,0,0 +2013,7,21,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,1,0,2028,-4,0,0 +2013,7,13,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,715,-1,0,815,-19,0,0 +2013,6,24,1,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,945,-1,0,1325,-13,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1010,16,1,1715,-3,0,0 +2013,9,27,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1605,4,0,1720,-22,0,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,840,10,0,1704,7,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2029,-2,0,2331,-20,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,0,0,1430,-7,0,0 +2013,6,25,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1840,-3,0,2053,5,0,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,820,45,1,1150,74,1,0 +2013,5,3,5,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1240,-3,0,2100,-1,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1406,0,0,1449,-3,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-9,0,1120,-13,0,0 +2013,7,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,-2,0,920,-6,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,-1,0,1850,-12,0,0 +2013,10,4,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1119,-7,0,1154,-1,0,0 +2013,6,22,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1115,6,0,1715,14,0,0 +2013,9,7,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1531,-5,0,1733,-11,0,0 +2013,5,10,5,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,73,1,1347,71,1,0 +2013,4,29,1,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,930,-6,0,1255,-3,0,0 +2013,4,3,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,1348,-6,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,-1,0,1814,-21,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,1,0,1540,-17,0,0 +2013,9,15,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1858,-7,0,2215,-22,0,0 +2013,10,12,6,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1600,-8,0,1739,-10,0,0 +2013,7,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1238,-4,0,1456,-15,0,0 +2013,10,13,7,OO,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,850,-1,0,1044,-6,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,814,62,1,1425,69,1,0 +2013,9,23,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1249,-8,0,1356,-18,0,0 +2013,7,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,730,-3,0,1056,-10,0,0 +2013,5,30,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1836,176,1,1939,188,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1935,-1,0,2045,-4,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,1,0,1802,8,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,56,1,900,49,1,0 +2013,10,28,1,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1706,-2,0,1847,-2,0,0 +2013,9,2,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2005,2,0,2125,17,1,0 +2013,10,22,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,600,-5,0,722,-15,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,605,-5,0,1122,-3,0,0 +2013,6,17,1,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,739,19,1,1035,35,1,0 +2013,7,9,2,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1152,23,1,1623,27,1,0 +2013,10,26,6,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,900,-3,0,930,-9,0,0 +2013,5,8,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,28,1,1851,16,1,0 +2013,10,19,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-4,0,1016,-2,0,0 +2013,4,23,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1504,16,1,1724,47,1,0 +2013,5,20,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1137,1,0,1429,4,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1744,94,1,2100,206,1,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,950,-10,0,1235,-10,0,0 +2013,5,9,4,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1335,-4,0,1854,-4,0,0 +2013,5,17,5,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1345,6,0,1545,5,0,0 +2013,7,29,1,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1400,-5,0,1605,-10,0,0 +2013,7,23,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1440,4,0,2230,-4,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,905,-2,0,1740,-24,0,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2055,22,1,2155,22,1,0 +2013,4,8,1,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,835,1,0,940,4,0,0 +2013,9,20,5,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,5,0,2130,17,1,0 +2013,10,20,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,750,14,0,1014,3,0,0 +2013,8,13,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-6,0,1829,-4,0,0 +2013,8,11,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1850,-3,0,2115,-13,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1755,-3,0,2026,-23,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,51,1,1710,62,1,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1136,115,1,1301,129,1,0 +2013,10,10,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1556,-5,0,2100,-17,0,0 +2013,4,3,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1155,10,0,1450,2,0,0 +2013,4,13,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,0,0,1315,0,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2015,-4,0,2120,-14,0,0 +2013,9,11,3,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-5,0,1105,-2,0,0 +2013,6,4,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,705,65,1,903,52,1,0 +2013,8,25,7,B6,10721,Logan International,Boston,MA,13796,Metropolitan Oakland International,Oakland,CA,1942,-2,0,2308,-6,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,800,26,1,1040,23,1,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1613,236,1,1837,224,1,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2025,16,1,2125,24,1,0 +2013,7,14,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-2,0,1238,-19,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2135,5,0,123,-1,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,158,1,1310,173,1,0 +2013,8,11,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-4,0,2045,25,1,0 +2013,10,8,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,2000,-4,0,2359,0,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,-5,0,2328,-9,0,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,-6,0,2050,-11,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1820,-3,0,2240,-10,0,0 +2013,8,21,3,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1859,80,1,2215,90,1,0 +2013,4,4,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1935,166,1,2117,148,1,0 +2013,9,11,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,700,0,0,830,-9,0,0 +2013,4,24,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-3,0,1925,-6,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-11,0,925,-18,0,0 +2013,10,21,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1555,-10,0,0 +2013,4,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,836,-3,0,919,-11,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1625,-2,0,1819,-18,0,0 +2013,9,13,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1000,9,0,1135,2,0,0 +2013,10,20,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1300,0,0,1407,-16,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,104,1,2200,123,1,0 +2013,10,31,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,26,1,1230,21,1,0 +2013,9,28,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,60,1,1655,55,1,0 +2013,8,9,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-2,0,1440,-1,0,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1938,-4,0,2251,-23,0,0 +2013,6,11,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-7,0,912,0,0,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-4,0,1030,-18,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,0,,1500,0,1,1 +2013,8,3,6,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1818,16,1,0 +2013,6,27,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,7,0,1415,2,0,0 +2013,5,26,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,608,-1,0,1203,12,0,0 +2013,10,22,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1340,-6,0,1525,-24,0,0 +2013,10,8,2,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1656,-10,0,1843,-22,0,0 +2013,10,16,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1330,28,1,1625,22,1,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2057,9,0,2133,-9,0,0 +2013,7,6,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,8,0,1855,0,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1347,-2,0,1540,5,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-3,0,1525,-6,0,0 +2013,6,23,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,63,1,2255,61,1,0 +2013,10,28,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1415,-6,0,1555,12,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1505,2,0,1740,-4,0,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-1,0,953,13,0,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,915,-3,0,1524,-24,0,0 +2013,8,28,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,17,1,2020,19,1,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,4,0,1555,2,0,0 +2013,4,14,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1130,-7,0,1132,-6,0,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,606,-1,0,757,-19,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1415,39,1,1630,51,1,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,-5,0,1935,12,0,0 +2013,8,21,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,955,-4,0,1200,-21,0,0 +2013,6,21,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1906,0,0,2229,1,0,0 +2013,9,5,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1015,1,0,1155,6,0,0 +2013,7,12,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,835,-10,0,0 +2013,4,9,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,850,-4,0,950,-3,0,0 +2013,5,18,6,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,15,1,2255,13,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1045,19,1,1215,17,1,0 +2013,7,26,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-7,0,1105,-25,0,0 +2013,5,12,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1848,-3,0,1955,-10,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,0,0,1345,2,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1630,3,0,1750,11,0,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1415,2,0,1640,0,0,0 +2013,8,17,6,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,1,0,728,-4,0,0 +2013,7,14,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-5,0,2124,-11,0,0 +2013,4,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2007,-4,0,2322,-19,0,0 +2013,9,30,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,-2,0,1930,-6,0,0 +2013,4,24,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-6,0,811,-15,0,0 +2013,10,15,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2259,-4,0,107,-18,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1800,22,1,1910,9,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-3,0,2334,-23,0,0 +2013,5,10,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-6,0,1010,-32,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1024,-1,0,1214,-2,0,0 +2013,7,1,1,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,-2,0,745,-6,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1020,31,1,1136,7,0,0 +2013,10,28,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1825,-1,0,1850,10,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1852,-5,0,2200,-6,0,0 +2013,9,22,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,705,-7,0,903,-5,0,0 +2013,8,1,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1750,5,0,1905,4,0,0 +2013,5,30,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,728,-8,0,1305,-9,0,0 +2013,5,28,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1135,-3,0,1300,-9,0,0 +2013,4,19,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1335,0,,1516,0,1,1 +2013,10,18,5,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1500,3,0,1810,2,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1155,3,0,1410,10,0,0 +2013,9,27,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1035,118,1,1149,128,1,0 +2013,9,23,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1209,13,0,1349,18,1,0 +2013,4,10,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1950,301,1,2311,259,1,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1330,-5,0,1810,-12,0,0 +2013,10,24,4,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1824,125,1,1944,118,1,0 +2013,10,4,5,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1010,-12,0,1158,-28,0,0 +2013,8,27,2,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1041,1,0,1204,-1,0,0 +2013,6,9,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1510,6,0,1646,-1,0,0 +2013,6,10,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-1,0,1419,-3,0,0 +2013,5,21,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,847,0,0,1023,2,0,0 +2013,9,14,6,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1000,3,0,1115,13,0,0 +2013,7,25,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1836,0,,2258,0,1,1 +2013,8,25,7,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2139,7,0,555,-2,0,0 +2013,4,12,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1420,-3,0,1747,15,1,0 +2013,9,3,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-11,0,715,6,0,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,216,1,1555,228,1,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1730,-5,0,5,-15,0,0 +2013,7,22,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1915,2,0,2210,-17,0,0 +2013,4,4,4,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,810,-2,0,920,-8,0,0 +2013,10,11,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1700,1,0,1800,15,1,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,2010,27,1,2320,21,1,0 +2013,5,7,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-4,0,1205,1,0,0 +2013,7,24,3,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,-4,0,2357,-20,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-4,0,1510,-8,0,0 +2013,7,18,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,42,1,2045,39,1,0 +2013,4,10,3,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1645,-9,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1210,-2,0,1505,-8,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-4,0,854,-12,0,0 +2013,8,9,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,940,-4,0,0 +2013,8,30,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,15,1,814,7,0,0 +2013,5,8,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,618,-3,0,937,-12,0,0 +2013,9,2,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-2,0,810,-3,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-3,0,943,-14,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1011,-1,0,1202,61,1,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-10,0,1556,-16,0,0 +2013,6,25,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,545,0,0,819,-10,0,0 +2013,6,11,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1350,-1,0,1456,-5,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2020,0,0,2335,-18,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1240,5,0,1430,-4,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1830,-4,0,1955,-10,0,0 +2013,4,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2005,-1,0,2145,-1,0,0 +2013,8,9,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1359,-3,0,1452,-4,0,0 +2013,4,30,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,1,0,1645,-2,0,0 +2013,5,23,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,7,0,1325,-3,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1150,-5,0,1319,-17,0,0 +2013,8,30,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1525,-4,0,1824,-8,0,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1605,2,0,1730,2,0,0 +2013,7,29,1,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,0,0,1740,-1,0,0 +2013,8,13,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,838,1,0,1213,-7,0,0 +2013,10,4,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-6,0,904,-7,0,0 +2013,6,30,7,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1135,-4,0,1400,8,0,0 +2013,8,25,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,-4,0,1155,-2,0,0 +2013,7,2,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-1,0,1755,-4,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,11,0,1010,9,0,0 +2013,9,26,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2000,-6,0,2257,-28,0,0 +2013,5,16,4,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,1,0,1615,-6,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1410,-1,0,1445,-11,0,0 +2013,4,7,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2110,13,0,104,5,0,0 +2013,4,28,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1018,-4,0,1132,-3,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2105,-3,0,2220,8,0,0 +2013,9,27,5,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1830,14,0,2041,-19,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1815,0,0,2020,-2,0,0 +2013,5,1,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1840,3,0,1935,3,0,0 +2013,5,24,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,630,4,0,1235,5,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,4,0,1750,20,1,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1905,12,0,2020,4,0,0 +2013,7,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-2,0,959,-8,0,0 +2013,9,8,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,1,0,1445,-6,0,0 +2013,7,23,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2003,6,0,2212,9,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,605,-3,0,729,-2,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,2155,-3,0,2340,-13,0,0 +2013,4,10,3,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1300,-5,0,2145,-10,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,7,0,2335,13,0,0 +2013,7,24,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1101,161,1,1424,160,1,0 +2013,6,2,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,925,-3,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1915,-5,0,2025,-8,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,920,-3,0,1055,-4,0,0 +2013,4,6,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1115,0,0,1215,-3,0,0 +2013,7,23,2,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1810,18,1,1925,15,1,0 +2013,5,15,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1225,-4,0,1337,-3,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2150,-4,0,2310,-4,0,0 +2013,6,13,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,3,0,1200,-9,0,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1533,-3,0,1824,-7,0,0 +2013,6,25,2,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,17,-9,0,520,-22,0,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,47,1,1810,45,1,0 +2013,4,24,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,635,-5,0,0 +2013,4,30,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,-9,0,1908,-16,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,21,1,1955,31,1,0 +2013,5,15,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-2,0,1400,-12,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2100,26,1,2305,28,1,0 +2013,4,4,4,UA,12173,Honolulu International,Honolulu,HI,12264,Washington Dulles International,Washington,DC,2005,-2,0,1115,-11,0,0 +2013,5,14,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,955,-8,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1930,-5,0,2246,-20,0,0 +2013,4,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1230,-1,0,1354,0,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1515,5,0,1735,-1,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,-3,0,2355,-18,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1952,-4,0,2315,-30,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,725,-7,0,835,-20,0,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2005,-14,0,2241,-15,0,0 +2013,6,7,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1120,-3,0,1145,-8,0,0 +2013,4,23,2,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,743,4,0,853,-13,0,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1720,3,0,1835,-1,0,0 +2013,8,23,5,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,940,-1,0,1010,-10,0,0 +2013,4,2,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,825,-1,0,1105,-10,0,0 +2013,10,22,2,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,-4,0,1715,-12,0,0 +2013,6,5,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,0,,900,0,1,1 +2013,5,2,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,39,1,1745,25,1,0 +2013,10,9,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,710,0,0,910,3,0,0 +2013,9,11,3,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2120,-5,0,514,-14,0,0 +2013,10,16,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1307,-5,0,1602,3,0,0 +2013,9,29,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1530,-3,0,1634,8,0,0 +2013,5,20,1,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,855,0,0,938,-15,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,735,-1,0,909,-17,0,0 +2013,4,15,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,715,-3,0,920,4,0,0 +2013,4,4,4,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1815,19,1,2107,9,0,0 +2013,7,11,4,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,-5,0,1035,-14,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,618,-8,0,726,-17,0,0 +2013,6,1,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1140,81,1,1235,70,1,0 +2013,4,9,2,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,1,0,2001,15,1,0 +2013,10,11,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1430,23,1,1635,18,1,0 +2013,5,17,5,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,41,1,955,25,1,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1721,9,0,1919,-7,0,0 +2013,6,26,3,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1415,19,1,1705,32,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-2,0,1158,-15,0,0 +2013,5,3,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2155,21,1,2315,20,1,0 +2013,9,9,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2344,-6,0,752,-3,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,915,-6,0,1040,-7,0,0 +2013,5,24,5,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1134,-9,0,1515,-22,0,0 +2013,5,26,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1250,14,0,1535,3,0,0 +2013,10,13,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-4,0,1915,-11,0,0 +2013,5,21,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1435,-3,0,1650,-6,0,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1357,-1,0,2012,-12,0,0 +2013,4,17,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1249,166,1,1843,193,1,0 +2013,8,12,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,715,-5,0,734,-20,0,0 +2013,4,30,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1135,-6,0,2010,-17,0,0 +2013,6,3,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1442,1,0,1625,-19,0,0 +2013,6,2,7,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,-11,0,1520,-12,0,0 +2013,5,12,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,725,-5,0,934,-19,0,0 +2013,5,11,6,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2015,-10,0,2135,-15,0,0 +2013,7,5,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-8,0,511,-20,0,0 +2013,6,4,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1556,-5,0,1701,-12,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,85,1,930,87,1,0 +2013,9,16,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,605,-8,0,715,-8,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,-7,0,2201,-19,0,0 +2013,9,28,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-7,0,1555,-14,0,0 +2013,7,26,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-7,0,725,-28,0,0 +2013,5,31,5,EV,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,1125,-8,0,1305,-15,0,0 +2013,5,25,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1350,170,1,1425,180,1,0 +2013,9,9,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1515,-1,0,1904,-12,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,810,2,0,930,-1,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1830,320,1,2140,309,1,0 +2013,10,13,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,829,-1,0,1139,-23,0,0 +2013,8,2,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1837,2,0,1955,-8,0,0 +2013,10,16,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-4,0,1624,-13,0,0 +2013,4,22,1,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1122,6,0,1222,-8,0,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1345,29,1,1510,19,1,0 +2013,8,23,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,74,1,1100,75,1,0 +2013,8,15,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1705,-12,0,1940,-32,0,0 +2013,6,26,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,0,,1820,0,1,1 +2013,7,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,935,-5,0,1100,-10,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,-3,0,1000,-8,0,0 +2013,5,18,6,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1119,-5,0,1237,-8,0,0 +2013,9,17,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,715,6,0,1106,7,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,830,9,0,1045,6,0,0 +2013,9,3,2,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1451,-2,0,1648,-15,0,0 +2013,6,14,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,5,0,1920,3,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,15,1,2226,2,0,0 +2013,4,29,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1420,-2,0,1623,-8,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1830,51,1,2220,45,1,0 +2013,5,23,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,1156,-9,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1900,0,0,2050,-26,0,0 +2013,4,21,7,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1345,-3,0,1649,-14,0,0 +2013,6,20,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,1,0,2155,-8,0,0 +2013,8,18,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,807,-3,0,1107,-5,0,0 +2013,10,26,6,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,-4,0,825,-3,0,0 +2013,9,22,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-8,0,844,-18,0,0 +2013,4,25,4,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1605,-5,0,1731,-4,0,0 +2013,4,29,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,635,-11,0,0 +2013,4,14,7,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2020,167,1,2335,164,1,0 +2013,10,13,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1245,24,1,1520,14,0,0 +2013,7,31,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1239,46,1,1534,54,1,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,5,0,1758,-12,0,0 +2013,10,5,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1555,5,0,1655,0,0,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,-2,0,1714,-29,0,0 +2013,5,28,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,8,0,1740,-3,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-4,0,1010,-1,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,3,0,1617,-12,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1820,40,1,2140,35,1,0 +2013,4,5,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1730,-1,0,1859,-22,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-3,0,1040,-13,0,0 +2013,9,13,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-5,0,805,-15,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,0,0,855,-2,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,11,0,1306,33,1,0 +2013,9,5,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1820,11,0,1910,10,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,18,1,1052,0,0,0 +2013,8,19,1,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1200,6,0,1300,-4,0,0 +2013,6,30,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,35,1,1930,11,0,0 +2013,5,25,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,0,0,1700,31,1,0 +2013,4,17,3,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1430,0,,1635,0,1,1 +2013,9,28,6,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1930,-10,0,2220,3,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1955,9,0,45,5,0,0 +2013,10,25,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1117,21,1,1235,15,1,0 +2013,8,16,5,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,600,-5,0,740,-36,0,0 +2013,7,10,3,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-7,0,900,2,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1945,11,0,2321,16,1,0 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,87,1,2250,71,1,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,20,1,1200,13,0,0 +2013,8,14,3,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,650,-7,0,812,2,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1505,8,0,1835,5,0,0 +2013,6,11,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,14,0,1630,20,1,0 +2013,10,27,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2143,-4,0,2236,-4,0,0 +2013,6,6,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,100,1,1155,90,1,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1235,66,1,1450,79,1,0 +2013,4,3,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,826,-4,0,0 +2013,4,10,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1955,14,0,2120,8,0,0 +2013,5,12,7,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,828,2,0,1119,-4,0,0 +2013,6,3,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,20,1,1820,65,1,0 +2013,7,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1315,-5,0,1700,-25,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1010,80,1,1343,89,1,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,825,11,0,1045,47,1,0 +2013,5,26,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,843,0,0,1210,12,0,0 +2013,6,11,2,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2320,11,0,740,10,0,0 +2013,5,9,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,855,5,0,1230,-7,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1717,-3,0,2026,-43,0,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-7,0,800,-17,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,945,-2,0,1100,-9,0,0 +2013,4,26,5,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2345,-5,0,759,-18,0,0 +2013,4,1,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1510,0,0,1751,-16,0,0 +2013,6,1,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1125,-2,0,1643,-8,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,745,-5,0,840,-13,0,0 +2013,9,8,7,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,-3,0,1035,-13,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1200,4,0,1505,-4,0,0 +2013,9,16,1,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1333,-12,0,1642,-10,0,0 +2013,5,7,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1446,-6,0,2020,-24,0,0 +2013,7,19,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,0,,1750,0,1,1 +2013,9,15,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1119,8,0,1214,5,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1829,-2,0,2153,-26,0,0 +2013,6,20,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,31,1,1840,19,1,0 +2013,9,16,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1930,-9,0,2049,-11,0,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,25,1,2215,37,1,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,5,0,1835,-12,0,0 +2013,8,16,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,29,1,1605,7,0,0 +2013,9,12,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2000,0,,2136,0,1,1 +2013,6,9,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1835,7,0,2120,-14,0,0 +2013,4,29,1,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,810,-2,0,1005,-8,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,900,19,1,1010,9,0,0 +2013,10,16,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1505,0,0,1615,-3,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1315,28,1,1410,26,1,0 +2013,9,14,6,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1216,-1,0,1313,-3,0,0 +2013,4,12,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,712,-5,0,1015,11,0,0 +2013,8,6,2,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-5,0,2245,5,0,0 +2013,10,17,4,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,625,-5,0,709,-3,0,0 +2013,8,5,1,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1240,11,0,1815,2,0,0 +2013,5,20,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1521,-4,0,1606,-9,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2045,-2,0,2303,-7,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,2,0,1050,-18,0,0 +2013,7,7,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2017,52,1,2145,47,1,0 +2013,8,17,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,710,0,0,820,-3,0,0 +2013,6,11,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,748,22,1,847,7,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,-3,0,1015,-9,0,0 +2013,10,15,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-10,0,659,-19,0,0 +2013,9,18,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,4,0,1941,-4,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2228,1,0,23,-19,0,0 +2013,6,9,7,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1501,334,1,1820,317,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1705,203,1,1800,190,1,0 +2013,8,27,2,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1755,-3,0,2041,-21,0,0 +2013,4,10,3,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1951,54,1,2333,67,1,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1422,26,1,1606,27,1,0 +2013,8,25,7,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,648,-1,0,755,2,0,0 +2013,5,21,2,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,540,-6,0,850,-18,0,0 +2013,6,6,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1439,-2,0,1600,55,1,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-5,0,2308,5,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1455,1,0,1628,-14,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1120,-2,0,1320,-8,0,0 +2013,9,15,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,715,-2,0,815,-4,0,0 +2013,8,19,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,38,1,1715,42,1,0 +2013,5,31,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-6,0,519,-13,0,0 +2013,9,16,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,635,3,0,932,-4,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-1,0,912,10,0,0 +2013,10,14,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,-2,0,1945,9,0,0 +2013,9,26,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,9,0,1816,18,1,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-6,0,1031,0,0,0 +2013,6,6,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,4,0,2020,-7,0,0 +2013,9,22,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1530,6,0,1940,35,1,0 +2013,6,28,5,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,730,-3,0,836,0,0,0 +2013,6,24,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1336,176,1,1711,165,1,0 +2013,8,11,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1415,8,0,1700,-9,0,0 +2013,8,16,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,10,0,1249,8,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,839,3,0,1034,14,0,0 +2013,7,21,7,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,830,-1,0,957,-3,0,0 +2013,6,9,7,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,2010,11,0,2053,-3,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1605,-2,0,1655,-15,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,22,1,1612,28,1,0 +2013,5,3,5,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1251,-5,0,1446,-24,0,0 +2013,8,27,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-6,0,857,2,0,0 +2013,9,11,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1527,16,1,1804,-3,0,0 +2013,10,3,4,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1829,13,0,2122,13,0,0 +2013,6,9,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,197,1,1530,195,1,0 +2013,7,9,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2000,79,1,2015,67,1,0 +2013,10,12,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1735,-8,0,1850,-22,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,-3,0,1258,-10,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,36,1,2124,19,1,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,-1,0,2115,1,0,0 +2013,6,14,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-4,0,649,-1,0,0 +2013,5,17,5,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,720,1,0,1050,-19,0,0 +2013,10,10,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,955,33,1,1140,24,1,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1430,6,0,1755,-3,0,0 +2013,7,30,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,630,-2,0,726,-7,0,0 +2013,10,18,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,815,-3,0,1000,-8,0,0 +2013,4,18,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1010,11,0,1145,10,0,0 +2013,4,7,7,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,42,1,1600,30,1,0 +2013,4,20,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1145,24,1,1423,8,0,0 +2013,10,10,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,0,0,1600,-9,0,0 +2013,7,9,2,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,0,0,945,-6,0,0 +2013,5,15,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,710,-10,0,905,-10,0,0 +2013,5,20,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1452,0,0,1647,12,0,0 +2013,6,24,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1742,0,,2020,0,1,1 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,10,0,2042,-3,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,732,-1,0,916,-13,0,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1155,0,0,1251,-6,0,0 +2013,4,30,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1449,-5,0,1622,-11,0,0 +2013,5,3,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1810,-5,0,2025,-8,0,0 +2013,7,24,3,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-4,0,1345,-18,0,0 +2013,7,9,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-4,0,1645,-12,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1715,21,1,2255,19,1,0 +2013,4,27,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,832,-7,0,0 +2013,10,16,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,17,1,1740,16,1,0 +2013,5,14,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,0,0,1003,-1,0,0 +2013,9,8,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1140,-5,0,1445,-8,0,0 +2013,10,27,7,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1905,14,0,2020,54,1,0 +2013,8,22,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1657,-12,0,0 +2013,10,14,1,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,840,-8,0,1114,-23,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1528,-3,0,1717,-29,0,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1635,7,0,2005,-24,0,0 +2013,10,16,3,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,548,-9,0,747,-18,0,0 +2013,5,4,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2005,-6,0,2130,-5,0,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,0,0,1230,1,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2225,13,0,2347,10,0,0 +2013,9,18,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2330,1,0,642,7,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1145,-4,0,1245,7,0,0 +2013,9,14,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-3,0,855,-23,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,25,1,2020,26,1,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,0,0,2005,-2,0,0 +2013,5,17,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-3,0,716,-7,0,0 +2013,9,25,3,EV,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1248,14,0,1654,-8,0,0 +2013,6,3,1,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1416,0,0,1943,-10,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,65,1,2305,53,1,0 +2013,5,20,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,16,1,1420,0,0,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,5,0,1420,-13,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,-1,0,1505,3,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-4,0,1237,-8,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1420,0,0,1652,0,0,0 +2013,5,5,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1200,-3,0,1325,-8,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1806,102,1,1940,92,1,0 +2013,8,11,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1705,-2,0,1805,-2,0,0 +2013,5,8,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-9,0,1011,-18,0,0 +2013,5,26,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,2,0,1100,-11,0,0 +2013,10,13,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1152,-3,0,1445,-7,0,0 +2013,5,2,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,-3,0,1040,-13,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,629,-3,0,810,-1,0,0 +2013,4,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-6,0,1520,-4,0,0 +2013,5,5,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1015,91,1,1150,92,1,0 +2013,7,23,2,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1437,0,,1829,0,1,1 +2013,4,22,1,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1405,27,1,2121,18,1,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,4,0,1255,1,0,0 +2013,4,27,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,15,1,1315,7,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,740,9,0,1150,2,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,-5,0,1808,-11,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1404,78,1,2239,46,1,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1245,25,1,1355,25,1,0 +2013,6,5,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1500,-6,0,1923,-25,0,0 +2013,10,7,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1506,60,1,1838,43,1,0 +2013,6,10,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1533,91,1,1729,84,1,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1225,0,0,1400,-6,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,-10,0,2152,43,1,0 +2013,4,28,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1836,3,0,2123,-43,0,0 +2013,7,27,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,0,0,1744,1,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1359,17,1,1553,38,1,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,21,1,1330,15,1,0 +2013,6,1,6,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-6,0,1753,6,0,0 +2013,6,18,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,0,0,1320,0,0,0 +2013,8,4,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2250,-4,0,2345,-5,0,0 +2013,8,7,3,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,810,0,0,0 +2013,8,30,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-6,0,848,-7,0,0 +2013,10,30,3,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1855,0,0,2130,14,0,0 +2013,9,23,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1310,-5,0,2149,-20,0,0 +2013,5,26,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,1216,-1,0,0 +2013,4,13,6,US,14307,Theodore Francis Green State,Providence,RI,11278,Ronald Reagan Washington National,Washington,DC,615,-5,0,740,6,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1550,43,1,1844,17,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1051,18,1,1137,29,1,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2100,32,1,2232,76,1,0 +2013,9,18,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-12,0,832,-13,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,-1,0,1342,-9,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,-4,0,1605,-14,0,0 +2013,6,21,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,857,26,1,1020,6,0,0 +2013,7,12,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,840,-7,0,900,-23,0,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,-1,0,910,13,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1410,10,0,1605,3,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1935,19,1,2249,64,1,0 +2013,7,15,1,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1809,6,0,2121,13,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1625,-2,0,1815,-8,0,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,5,0,940,-2,0,0 +2013,10,28,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1127,35,1,1315,37,1,0 +2013,8,30,5,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2005,-2,0,2215,1,0,0 +2013,4,22,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,3,0,1820,-8,0,0 +2013,9,16,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,20,1,1500,5,0,0 +2013,7,8,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-4,0,1918,-2,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1740,-1,0,1852,-17,0,0 +2013,7,13,6,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1208,3,0,1432,-6,0,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-5,0,815,-25,0,0 +2013,10,3,4,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,715,-8,0,835,-23,0,0 +2013,6,23,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1515,56,1,1815,48,1,0 +2013,9,2,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2000,-4,0,459,-31,0,0 +2013,8,18,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1459,-1,0,1827,-22,0,0 +2013,6,20,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1823,0,0,2108,1,0,0 +2013,7,24,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1013,-7,0,1304,-15,0,0 +2013,4,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,745,4,0,855,3,0,0 +2013,4,14,7,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,821,-2,0,1036,1,0,0 +2013,9,2,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-8,0,1125,10,0,0 +2013,5,29,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1959,-15,0,2254,-61,0,0 +2013,6,22,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-8,0,1135,-21,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,2021,-4,0,111,-10,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2050,0,,2300,0,1,1 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1859,6,0,2000,-9,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,955,-4,0,1101,-10,0,0 +2013,8,13,2,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,125,1,2145,97,1,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-7,0,832,-9,0,0 +2013,6,18,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,905,-6,0,1030,-15,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,645,-4,0,820,1,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1740,9,0,2305,-1,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1835,226,1,2200,218,1,0 +2013,6,14,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,4,0,1416,-6,0,0 +2013,9,1,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,700,-12,0,814,-21,0,0 +2013,4,9,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1935,-10,0,2150,5,0,0 +2013,6,3,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,645,-3,0,1156,0,0,0 +2013,4,21,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,-1,0,2209,-11,0,0 +2013,10,10,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,1209,-5,0,0 +2013,4,27,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,2,0,1350,2,0,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1800,75,1,2005,64,1,0 +2013,4,11,4,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,855,-4,0,1050,-16,0,0 +2013,8,23,5,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,1000,-1,0,1754,4,0,0 +2013,7,31,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,625,2,0,808,65,1,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,822,-2,0,1320,-4,0,0 +2013,4,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1230,0,0,1635,5,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1330,8,0,2206,10,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,15,1,2158,11,0,0 +2013,5,31,5,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,815,-8,0,941,-24,0,0 +2013,4,18,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-1,0,1759,0,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2005,-6,0,2110,14,0,0 +2013,7,18,4,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2127,21,1,7,18,1,0 +2013,6,24,1,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1235,-3,0,1415,1,0,0 +2013,4,26,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2105,-4,0,2115,-10,0,0 +2013,8,13,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,97,1,1215,83,1,0 +2013,4,22,1,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,805,-3,0,1020,-16,0,0 +2013,10,28,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,2012,-8,0,0 +2013,5,31,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,-3,0,1135,-14,0,0 +2013,4,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,635,-2,0,939,-7,0,0 +2013,8,8,4,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-9,0,912,-32,0,0 +2013,6,19,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,62,1,1213,99,1,0 +2013,6,20,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,-1,0,1220,1,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1839,133,1,2210,112,1,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,920,1,0,1010,-3,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,-2,0,1258,-9,0,0 +2013,8,2,5,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,105,1,1510,99,1,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1935,0,0,2125,2,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,955,0,0,1130,-10,0,0 +2013,9,30,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,8,0,1930,-1,0,0 +2013,5,23,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1630,28,1,1759,21,1,0 +2013,4,22,1,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,650,-1,0,940,-7,0,0 +2013,4,10,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,925,126,1,930,141,1,0 +2013,6,4,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1610,-4,0,2214,-17,0,0 +2013,8,12,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-7,0,855,-10,0,0 +2013,4,16,2,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1221,-6,0,1625,-12,0,0 +2013,4,22,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,-1,0,755,0,0,0 +2013,5,25,6,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1539,24,1,1810,-2,0,0 +2013,7,9,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,655,3,0,840,0,0,0 +2013,7,9,2,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1243,6,0,1348,13,0,0 +2013,7,18,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,655,-3,0,840,-3,0,0 +2013,4,20,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1510,-2,0,1920,-27,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1205,0,,1310,0,1,1 +2013,10,31,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1907,75,1,2033,79,1,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1246,45,1,1648,44,1,0 +2013,4,22,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,905,9,0,1045,-3,0,0 +2013,5,2,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1625,3,0,1755,-8,0,0 +2013,5,7,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1815,-2,0,2142,-14,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,835,2,0,1005,-12,0,0 +2013,10,26,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1930,119,1,2030,106,1,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1115,13,0,1220,13,0,0 +2013,9,28,6,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,745,-4,0,1501,-3,0,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,902,11,0,1606,-14,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,0,0,1629,-10,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2005,55,1,2310,31,1,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,850,9,0,1245,-4,0,0 +2013,9,6,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,-4,0,1112,-10,0,0 +2013,7,23,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,0,,1254,0,1,1 +2013,9,6,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-2,0,1506,-7,0,0 +2013,4,23,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,21,1,1638,38,1,0 +2013,6,29,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-1,0,735,-13,0,0 +2013,9,23,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-4,0,2033,-10,0,0 +2013,7,3,3,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1210,-6,0,1334,6,0,0 +2013,7,2,2,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1254,113,1,1747,115,1,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,900,-5,0,1209,-18,0,0 +2013,8,14,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,655,5,0,725,1,0,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1247,-3,0,1835,16,1,0 +2013,8,3,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,-5,0,505,-9,0,0 +2013,10,21,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-9,0,1310,-19,0,0 +2013,8,27,2,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2130,-4,0,2350,-3,0,0 +2013,7,10,3,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,940,-6,0,1212,-24,0,0 +2013,4,5,5,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,-5,0,1140,7,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,3,0,2033,17,1,0 +2013,10,26,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1700,-11,0,1945,-18,0,0 +2013,4,24,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1000,-3,0,1830,11,0,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,645,4,0,913,-43,0,0 +2013,7,29,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1840,-3,0,1915,-9,0,0 +2013,10,3,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2225,18,1,607,30,1,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,212,1,1650,194,1,0 +2013,9,24,2,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1725,-7,0,2008,1,0,0 +2013,5,18,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,10,0,1656,5,0,0 +2013,5,13,1,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,605,-5,0,737,-7,0,0 +2013,5,24,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,23,1,1850,8,0,0 +2013,8,5,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,720,-4,0,750,-7,0,0 +2013,8,5,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,-1,0,1200,-1,0,0 +2013,6,3,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1605,-4,0,1703,-17,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1500,31,1,1615,23,1,0 +2013,8,21,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1325,-2,0,1450,-9,0,0 +2013,4,29,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,925,1,0,1759,2,0,0 +2013,9,4,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1735,-3,0,1915,-29,0,0 +2013,6,27,4,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1650,5,0,1846,-9,0,0 +2013,8,19,1,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1730,57,1,1835,47,1,0 +2013,8,15,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,2,0,950,-11,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1224,3,0,1419,-12,0,0 +2013,6,16,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1509,-2,0,1722,-8,0,0 +2013,4,7,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2207,0,0,550,-20,0,0 +2013,7,25,4,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1007,-5,0,1040,3,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,-1,0,2336,-14,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,625,-1,0,830,-11,0,0 +2013,5,1,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,17,1,1355,7,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1541,22,1,1658,7,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1435,132,1,1625,123,1,0 +2013,7,7,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1131,10,0,1238,9,0,0 +2013,6,23,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-6,0,852,-1,0,0 +2013,6,19,3,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2025,3,0,2330,-4,0,0 +2013,8,16,5,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,831,-2,0,1025,-14,0,0 +2013,6,26,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,-2,0,957,-11,0,0 +2013,5,6,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1715,3,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-2,0,2206,-10,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1820,7,0,1945,1,0,0 +2013,7,18,4,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1523,-9,0,1619,-6,0,0 +2013,7,1,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,126,1,1930,115,1,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,912,-3,0,1729,-28,0,0 +2013,6,30,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-3,0,918,-15,0,0 +2013,9,25,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1105,2,0,1436,-5,0,0 +2013,10,15,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,854,33,1,1224,12,0,0 +2013,5,30,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,745,-4,0,1047,-10,0,0 +2013,7,18,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1436,7,0,1619,7,0,0 +2013,6,29,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-1,0,1825,-14,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2109,24,1,2203,23,1,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,-3,0,1253,-16,0,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,43,1,2248,16,1,0 +2013,8,27,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,1435,13,0,1625,-14,0,0 +2013,8,28,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,1415,-3,0,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,-5,0,2059,-18,0,0 +2013,10,20,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-4,0,1211,-20,0,0 +2013,9,10,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,710,-6,0,835,-15,0,0 +2013,7,16,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1800,21,1,2005,11,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,8,0,2245,1,0,0 +2013,5,19,7,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1445,14,0,1842,19,1,0 +2013,4,30,2,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-5,0,2145,15,1,0 +2013,10,26,6,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,7,0,1329,7,0,0 +2013,4,8,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,2005,-12,0,2151,-35,0,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,640,-4,0,851,-13,0,0 +2013,9,14,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,7,0,1330,-4,0,0 +2013,4,4,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-5,0,1028,-26,0,0 +2013,6,19,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,10,0,1410,5,0,0 +2013,10,5,6,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-16,0,2137,-24,0,0 +2013,7,20,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,33,1,1605,13,0,0 +2013,6,18,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1400,18,1,1515,21,1,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2120,0,0,2300,-5,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,48,1,1138,51,1,0 +2013,10,15,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1231,-4,0,1517,1,0,0 +2013,10,31,4,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-2,0,825,3,0,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,33,1,1700,33,1,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1125,3,0,1245,-1,0,0 +2013,5,24,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-4,0,1201,-7,0,0 +2013,10,13,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,-3,0,1158,6,0,0 +2013,6,25,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,85,1,1918,96,1,0 +2013,7,17,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1625,-10,0,1935,3,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,622,15,1,900,25,1,0 +2013,4,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,850,26,1,1424,65,1,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,-1,0,1203,-13,0,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2059,4,0,2240,-6,0,0 +2013,7,17,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-2,0,2300,-1,0,0 +2013,8,13,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,725,-4,0,730,9,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,1,0,1628,13,0,0 +2013,8,15,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,829,-16,0,0 +2013,10,22,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-5,0,1250,-10,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,830,12,0,1050,4,0,0 +2013,7,6,6,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,-3,0,1520,-9,0,0 +2013,9,22,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1207,6,0,1435,18,1,0 +2013,9,17,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1832,-3,0,2122,-14,0,0 +2013,9,6,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1140,-9,0,1447,-13,0,0 +2013,7,28,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-3,0,1356,0,0,0 +2013,8,31,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1325,-3,0,1425,54,1,0 +2013,7,28,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,142,1,1447,139,1,0 +2013,4,17,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,640,-2,0,921,-17,0,0 +2013,7,6,6,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-2,0,912,1,0,0 +2013,8,25,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1330,-7,0,1535,-7,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1050,17,1,1152,16,1,0 +2013,5,20,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1520,-6,0,1715,-4,0,0 +2013,10,16,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1639,-3,0,1826,-2,0,0 +2013,4,26,5,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-5,0,715,6,0,0 +2013,5,18,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1335,-5,0,1716,-13,0,0 +2013,7,19,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,34,1,1309,26,1,0 +2013,9,16,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1005,-3,0,1535,-11,0,0 +2013,9,10,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,12,0,1240,-8,0,0 +2013,8,21,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1223,-3,0,2045,5,0,0 +2013,5,5,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2245,-4,0,37,-4,0,0 +2013,9,18,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1100,-7,0,1225,-16,0,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,840,-4,0,1007,-8,0,0 +2013,4,20,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1425,-12,0,1535,-22,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,-5,0,750,-11,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1525,0,0,1705,-10,0,0 +2013,10,22,2,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1559,9,0,1710,3,0,0 +2013,5,10,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1405,-2,0,2213,1,0,0 +2013,4,18,4,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1250,9,0,1525,0,0,0 +2013,8,22,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,745,2,0,1055,5,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,-8,0,1150,-11,0,0 +2013,6,3,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1005,-8,0,1253,-14,0,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1610,2,0,1715,-2,0,0 +2013,10,3,4,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1747,-10,0,1842,-15,0,0 +2013,9,20,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-8,0,922,19,1,0 +2013,6,3,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1740,3,0,1905,-2,0,0 +2013,6,10,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-9,0,1745,-21,0,0 +2013,4,11,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2035,-2,0,2143,3,0,0 +2013,6,11,2,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,-2,0,2155,-9,0,0 +2013,6,24,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,102,1,1035,92,1,0 +2013,8,10,6,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1700,0,0,1825,-5,0,0 +2013,4,19,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2245,-1,0,640,-32,0,0 +2013,6,9,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-7,0,2016,12,0,0 +2013,9,14,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,955,-1,0,1120,-1,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1930,18,1,2200,5,0,0 +2013,6,12,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1135,1,0,1420,-6,0,0 +2013,4,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1015,-6,0,1143,0,0,0 +2013,8,1,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,46,1,620,23,1,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1100,16,1,1530,6,0,0 +2013,4,12,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1045,0,0,1150,-9,0,0 +2013,9,4,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,935,-8,0,1130,-19,0,0 +2013,4,24,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-1,0,1828,-1,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1630,-2,0,1935,-9,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1200,-2,0,1339,-18,0,0 +2013,9,8,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-9,0,1352,-28,0,0 +2013,7,5,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,627,-4,0,818,-6,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,27,1,1745,18,1,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1200,-1,0,1432,2,0,0 +2013,7,21,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,2150,2,0,202,9,0,0 +2013,6,1,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,905,-1,0,1010,-13,0,0 +2013,7,26,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,800,141,1,1040,128,1,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,15,1,2255,18,1,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1100,7,0,1420,-6,0,0 +2013,4,16,2,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2159,-7,0,2302,-24,0,0 +2013,5,24,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,940,-8,0,1040,-6,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1820,-6,0,2109,-2,0,0 +2013,5,10,5,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,800,-4,0,1550,6,0,0 +2013,9,28,6,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,825,-5,0,1025,-22,0,0 +2013,4,30,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2044,-3,0,2236,-21,0,0 +2013,8,25,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2125,3,0,2352,0,0,0 +2013,6,25,2,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1303,-7,0,1419,-17,0,0 +2013,5,1,3,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1110,38,1,1324,38,1,0 +2013,8,22,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-4,0,2018,-6,0,0 +2013,9,15,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1500,-2,0,1625,-19,0,0 +2013,5,16,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1430,3,0,1535,-11,0,0 +2013,9,21,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1850,7,0,1905,12,0,0 +2013,5,28,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-5,0,711,0,0,0 +2013,8,16,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,0,,1600,0,1,1 +2013,5,12,7,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,759,-1,0,943,3,0,0 +2013,8,3,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,100,-6,0,556,-23,0,0 +2013,6,9,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,1250,37,1,0 +2013,6,17,1,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1148,-8,0,1447,-17,0,0 +2013,7,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1520,-4,0,1708,-11,0,0 +2013,6,20,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,36,1,1437,36,1,0 +2013,4,22,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,43,1,1419,122,1,0 +2013,7,12,5,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,915,12,0,1039,-13,0,0 +2013,4,14,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1411,39,1,1600,48,1,0 +2013,4,23,2,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1220,-6,0,2051,0,0,0 +2013,5,18,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1918,-3,0,2213,-7,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-1,0,1421,-3,0,0 +2013,10,27,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1325,107,1,1450,119,1,0 +2013,7,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,-3,0,1344,9,0,0 +2013,9,17,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-3,0,1742,-18,0,0 +2013,10,28,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,-1,0,1645,-9,0,0 +2013,6,10,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,718,-7,0,1445,5,0,0 +2013,10,23,3,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-3,0,1550,5,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1520,25,1,2025,8,0,0 +2013,5,21,2,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,-2,0,1948,-9,0,0 +2013,8,17,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,0,0,1445,5,0,0 +2013,10,25,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1430,20,1,1535,13,0,0 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,28,1,2100,54,1,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1320,18,1,1610,12,0,0 +2013,10,16,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-1,0,929,-5,0,0 +2013,7,9,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,47,1,2159,5,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2025,56,1,2245,53,1,0 +2013,10,25,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,2,0,1516,-1,0,0 +2013,8,18,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,635,-1,0,845,-35,0,0 +2013,8,9,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,-6,0,1512,-15,0,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,2020,-2,0,2230,1,0,0 +2013,9,2,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1305,-8,0,1508,-3,0,0 +2013,4,28,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1030,-12,0,0 +2013,10,29,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-4,0,651,-17,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1449,-3,0,1726,-21,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,1,0,2238,3,0,0 +2013,4,24,3,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,835,-7,0,1102,3,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1019,-4,0,1200,22,1,0 +2013,10,4,5,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-1,0,822,3,0,0 +2013,8,1,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,-3,0,1125,85,1,0 +2013,8,21,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-9,0,1235,-10,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-2,0,950,-4,0,0 +2013,6,9,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1125,1,0,0 +2013,5,9,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-5,0,1053,-10,0,0 +2013,8,15,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,735,12,0,1050,10,0,0 +2013,8,20,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,930,8,0,0 +2013,4,14,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,17,1,1814,11,0,0 +2013,10,23,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-3,0,935,-13,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,111,1,1639,101,1,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1915,169,1,2103,156,1,0 +2013,8,19,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,645,-7,0,830,5,0,0 +2013,5,28,2,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1945,-3,0,2223,52,1,0 +2013,9,26,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-3,0,1545,-2,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1755,59,1,1925,49,1,0 +2013,5,4,6,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1558,-6,0,0 +2013,10,4,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2125,14,0,2250,7,0,0 +2013,5,8,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,855,-3,0,1032,-8,0,0 +2013,9,13,5,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,753,-3,0,1039,-30,0,0 +2013,4,4,4,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1710,-7,0,1853,-4,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,11,0,2030,4,0,0 +2013,5,22,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-1,0,1510,-9,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,645,-5,0,1255,-21,0,0 +2013,10,2,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-7,0,1010,-10,0,0 +2013,8,18,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2011,2,0,705,-2,0,0 +2013,6,8,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,655,-8,0,0 +2013,9,29,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2021,-8,0,2110,-11,0,0 +2013,6,3,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,52,1,650,44,1,0 +2013,8,14,3,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-4,0,1229,5,0,0 +2013,10,28,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,935,3,0,1055,3,0,0 +2013,7,23,2,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,12,0,1820,9,0,0 +2013,10,11,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-4,0,21,5,0,0 +2013,9,21,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1300,11,0,1455,6,0,0 +2013,9,19,4,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,0,0,1814,-31,0,0 +2013,10,2,3,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,28,1,1910,22,1,0 +2013,5,5,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2140,-7,0,2225,-17,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,720,74,1,902,69,1,0 +2013,10,26,6,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1330,-6,0,1510,-3,0,0 +2013,8,28,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,600,-7,0,819,-2,0,0 +2013,6,3,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,0,0,1943,2,0,0 +2013,9,9,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,31,1,2000,40,1,0 +2013,5,11,6,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,94,1,1853,117,1,0 +2013,9,17,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,809,-2,0,905,-1,0,0 +2013,5,11,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,850,76,1,1146,67,1,0 +2013,9,20,5,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,1,0,1436,-6,0,0 +2013,8,1,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1015,34,1,1258,-4,0,0 +2013,5,16,4,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1245,0,0,1525,-41,0,0 +2013,9,1,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-12,0,946,-19,0,0 +2013,6,10,1,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1542,-8,0,1803,-2,0,0 +2013,5,31,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,-1,0,838,-3,0,0 +2013,8,4,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1225,2,0,1340,1,0,0 +2013,6,2,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1530,151,1,1710,159,1,0 +2013,9,18,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1306,-4,0,1345,0,0,0 +2013,5,6,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1320,-5,0,1435,-8,0,0 +2013,7,6,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,18,1,2049,6,0,0 +2013,9,16,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1110,1,0,1255,3,0,0 +2013,4,18,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1245,-2,0,1445,3,0,0 +2013,8,19,1,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1930,4,0,2246,-6,0,0 +2013,5,10,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,145,1,2130,270,1,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1055,0,0,1301,-12,0,0 +2013,8,24,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1505,78,1,1829,64,1,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,-8,0,30,-12,0,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1610,-2,0,1840,-30,0,0 +2013,9,18,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,4,0,1455,0,0,0 +2013,9,21,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,940,-4,0,1035,-3,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,-5,0,930,-22,0,0 +2013,10,16,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-4,0,1257,-12,0,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,642,-6,0,808,-12,0,0 +2013,4,20,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,5,0,1429,-9,0,0 +2013,6,7,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1335,-3,0,1510,-2,0,0 +2013,4,28,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,621,4,0,1455,5,0,0 +2013,7,24,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-7,0,843,-14,0,0 +2013,4,30,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,945,-7,0,1131,0,0,0 +2013,6,12,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,635,-3,0,755,5,0,0 +2013,4,2,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,55,1,2125,59,1,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1025,13,0,1135,15,1,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1920,36,1,2058,20,1,0 +2013,8,18,7,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2205,-7,0,2319,-11,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1843,10,0,2330,-1,0,0 +2013,8,17,6,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1515,4,0,1840,-9,0,0 +2013,8,24,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,1107,-16,0,0 +2013,8,5,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,7,0,1315,-1,0,0 +2013,4,2,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1605,1,0,1741,6,0,0 +2013,7,30,2,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1500,-5,0,1657,-22,0,0 +2013,7,9,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,0,,817,0,1,1 +2013,10,1,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,810,-7,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,14,0,2210,5,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,0,,1911,0,1,1 +2013,6,25,2,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1602,28,1,1744,19,1,0 +2013,4,2,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,809,-10,0,859,-13,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,805,10,0,930,6,0,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-3,0,1219,-21,0,0 +2013,6,19,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1655,14,0,1740,14,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1345,23,1,1510,23,1,0 +2013,5,4,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,655,-3,0,755,-5,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1705,15,1,1955,3,0,0 +2013,9,20,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1911,6,0,2047,0,0,0 +2013,10,5,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,60,1,921,56,1,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1305,2,0,1755,-2,0,0 +2013,10,11,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,10,0,1740,10,0,0 +2013,9,27,5,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1303,-7,0,1448,-5,0,0 +2013,10,21,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,-2,0,1904,-8,0,0 +2013,9,28,6,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,0,0,1453,2,0,0 +2013,4,10,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2020,0,,2245,0,1,1 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1945,80,1,2105,76,1,0 +2013,7,10,3,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,291,1,2140,266,1,0 +2013,4,23,2,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,910,0,0,1045,7,0,0 +2013,10,10,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1002,-7,0,1055,-15,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,800,-3,0,1040,-9,0,0 +2013,9,9,1,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,-9,0,110,-5,0,0 +2013,10,8,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,755,-1,0,920,-12,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1935,4,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1910,59,1,2206,204,1,0 +2013,4,29,1,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2218,-7,0,2348,-3,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,7,0,1532,-10,0,0 +2013,10,9,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,735,-3,0,0 +2013,4,29,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1337,6,0,1655,2,0,0 +2013,8,19,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,743,7,0,0 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,901,-3,0,1446,-6,0,0 +2013,5,7,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1029,13,0,1153,8,0,0 +2013,10,25,5,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1730,31,1,2055,22,1,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,9,0,1911,13,0,0 +2013,8,9,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,830,6,0,1100,13,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1930,26,1,2030,13,0,0 +2013,9,30,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,706,-5,0,835,12,0,0 +2013,9,30,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-6,0,1648,4,0,0 +2013,9,8,7,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-10,0,1622,-9,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,855,10,0,1040,4,0,0 +2013,8,25,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,745,-5,0,1014,-11,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,900,-2,0,1045,9,0,0 +2013,7,5,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-6,0,1529,-3,0,0 +2013,8,19,1,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,725,-5,0,948,0,0,0 +2013,6,29,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,40,1,1447,59,1,0 +2013,8,7,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1130,-4,0,1145,-14,0,0 +2013,4,23,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1334,-7,0,1709,-17,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,811,2,0,1036,0,0,0 +2013,10,23,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1715,-2,0,2245,-10,0,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1910,50,1,2215,28,1,0 +2013,6,27,4,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,756,0,,1336,0,1,1 +2013,5,12,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,5,0,1355,5,0,0 +2013,5,17,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,3,0,1645,7,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,87,1,2115,88,1,0 +2013,5,2,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,955,0,0,1310,9,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1825,-5,0,2018,19,1,0 +2013,5,1,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,645,1,0,750,8,0,0 +2013,8,3,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1931,93,1,2320,88,1,0 +2013,10,3,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1450,17,1,1500,6,0,0 +2013,4,15,1,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1945,9,0,2240,14,0,0 +2013,7,24,3,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,650,-2,0,940,-11,0,0 +2013,9,8,7,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,115,0,0,515,-19,0,0 +2013,10,9,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,630,3,0,755,-1,0,0 +2013,6,13,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1028,-1,0,1426,-3,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1905,-8,0,50,1,0,0 +2013,8,8,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-9,0,1107,-1,0,0 +2013,6,25,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2006,0,,2054,0,1,1 +2013,8,15,4,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,10,0,2105,-9,0,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-7,0,1841,-6,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1859,207,1,2101,178,1,0 +2013,7,27,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1739,-6,0,2142,-30,0,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2153,-7,0,2246,-13,0,0 +2013,4,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1120,8,0,1235,-4,0,0 +2013,10,12,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,14,0,1247,8,0,0 +2013,8,16,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-5,0,1254,-8,0,0 +2013,4,19,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-3,0,845,-3,0,0 +2013,9,13,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,6,0,1458,33,1,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2105,0,0,2357,-9,0,0 +2013,9,21,6,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1116,4,0,1347,2,0,0 +2013,8,4,7,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1015,-7,0,1145,-15,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,608,-3,0,737,-6,0,0 +2013,10,29,2,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,620,0,0,755,-1,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,4,0,1405,-15,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1255,-2,0,1423,-18,0,0 +2013,8,22,4,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,22,1,1910,17,1,0 +2013,7,9,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1755,8,0,1935,10,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,804,2,0,932,-8,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-2,0,854,0,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,13,0,1855,3,0,0 +2013,5,22,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1425,28,1,1605,26,1,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,615,7,0,835,2,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14570,Reno/Tahoe International,Reno,NV,946,-1,0,1131,3,0,0 +2013,9,10,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1325,-4,0,1450,-4,0,0 +2013,4,5,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1905,9,0,2040,9,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1920,-4,0,2115,-11,0,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1655,-5,0,1757,-20,0,0 +2013,8,23,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,0,0,1720,-22,0,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-3,0,1345,-7,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1622,-3,0,1655,-3,0,0 +2013,10,10,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1559,7,0,1724,10,0,0 +2013,9,14,6,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1247,-5,0,1427,-13,0,0 +2013,8,28,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,-4,0,2206,-13,0,0 +2013,9,3,2,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1222,0,0,1432,-9,0,0 +2013,5,12,7,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-4,0,915,-27,0,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,845,12,0,1110,-17,0,0 +2013,6,1,6,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,810,0,0,950,3,0,0 +2013,8,30,5,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-8,0,1010,-20,0,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1354,-1,0,1734,-6,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,35,1,2210,35,1,0 +2013,9,28,6,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-4,0,1210,-21,0,0 +2013,10,22,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1720,3,0,1925,-7,0,0 +2013,6,26,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1132,10,0,1344,1,0,0 +2013,4,19,5,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,30,1,1545,35,1,0 +2013,8,8,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,2,0,1905,-11,0,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,919,-3,0,1052,-15,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1100,-2,0,1227,-13,0,0 +2013,5,15,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,2,0,1645,-12,0,0 +2013,9,10,2,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,5,0,1245,-22,0,0 +2013,9,2,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,198,1,2259,183,1,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,3,0,1439,0,0,0 +2013,10,18,5,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1240,-5,0,1540,-8,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,2025,-1,0,50,-15,0,0 +2013,4,13,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,850,0,0,1225,-21,0,0 +2013,8,17,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-7,0,2149,-12,0,0 +2013,4,11,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,-11,0,1044,-9,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1155,6,0,1409,-9,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,-1,0,1701,-14,0,0 +2013,10,30,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-5,0,1335,0,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1746,-3,0,2151,-20,0,0 +2013,5,16,4,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,16,1,1800,10,0,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-5,0,1026,-20,0,0 +2013,10,17,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1750,3,0,1855,-5,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1310,12,0,1450,25,1,0 +2013,10,30,3,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-8,0,643,-15,0,0 +2013,7,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,747,17,1,947,14,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1320,22,1,1750,1,0,0 +2013,10,10,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-4,0,1532,-8,0,0 +2013,10,29,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-4,0,845,-9,0,0 +2013,6,23,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,705,2,0,0 +2013,9,6,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,4,0,1950,2,0,0 +2013,7,23,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1048,-10,0,1422,-20,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,13,0,1103,1,0,0 +2013,10,9,3,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-14,0,1335,-11,0,0 +2013,9,22,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1130,6,0,1258,1,0,0 +2013,10,10,4,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1532,0,,1750,0,1,1 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,-1,0,930,-4,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,630,-2,0,910,-3,0,0 +2013,10,4,5,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1538,119,1,1834,113,1,0 +2013,10,29,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1303,-2,0,1425,-3,0,0 +2013,7,8,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1907,0,,2003,0,1,1 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,840,8,0,1105,9,0,0 +2013,5,3,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-3,0,624,-2,0,0 +2013,5,15,3,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,145,-6,0,659,-12,0,0 +2013,10,22,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,805,-3,0,910,0,0,0 +2013,4,1,1,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1923,5,0,2112,-9,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1525,38,1,1750,40,1,0 +2013,5,8,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1220,2,0,1350,-1,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,17,1,948,15,1,0 +2013,6,18,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1015,-2,0,1219,8,0,0 +2013,6,16,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1824,0,0,2025,-3,0,0 +2013,8,3,6,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1218,4,0,1454,-8,0,0 +2013,7,15,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,940,0,0,1100,-5,0,0 +2013,8,1,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,58,1,1156,54,1,0 +2013,5,24,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,76,1,1520,68,1,0 +2013,6,19,3,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,2044,-9,0,2308,-14,0,0 +2013,10,21,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2010,1,0,2247,-15,0,0 +2013,9,2,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1157,19,1,1332,12,0,0 +2013,5,15,3,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,606,-11,0,755,-8,0,0 +2013,8,21,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-9,0,2010,-17,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,920,1,0,1010,-10,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,900,8,0,1015,14,0,0 +2013,10,16,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,6,0,1900,-18,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1405,12,0,1500,18,1,0 +2013,7,21,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,14,0,2128,3,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1220,1,0,1650,-6,0,0 +2013,4,12,5,FL,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1815,0,0,2129,9,0,0 +2013,10,19,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,710,-1,0,830,-14,0,0 +2013,8,2,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,600,14,0,1155,9,0,0 +2013,10,30,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-5,0,1045,-2,0,0 +2013,5,17,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,640,-5,0,834,-19,0,0 +2013,4,30,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,626,-1,0,755,-2,0,0 +2013,8,22,4,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1630,-2,0,1820,-17,0,0 +2013,10,14,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1330,-1,0,1500,-5,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,21,1,2030,26,1,0 +2013,6,25,2,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,1,0,1133,-7,0,0 +2013,9,11,3,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,815,-4,0,1056,-11,0,0 +2013,4,27,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1021,-7,0,1205,-4,0,0 +2013,8,25,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1240,-8,0,1502,-15,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1915,9,0,2107,-5,0,0 +2013,7,28,7,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,735,-2,0,1030,22,1,0 +2013,7,27,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1506,7,0,1847,-12,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,740,9,0,955,23,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1422,-3,0,1555,-9,0,0 +2013,9,18,3,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1205,3,0,1325,3,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,-4,0,100,-7,0,0 +2013,10,11,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1905,-4,0,2006,-12,0,0 +2013,4,1,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1515,1,0,1610,-4,0,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,-2,0,1145,-2,0,0 +2013,6,14,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2120,124,1,2215,123,1,0 +2013,8,26,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1500,29,1,1630,27,1,0 +2013,8,5,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,937,21,1,1803,-14,0,0 +2013,8,23,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2105,-2,0,2220,-3,0,0 +2013,4,24,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-6,0,1446,-5,0,0 +2013,4,16,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,-4,0,1650,-9,0,0 +2013,10,16,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-7,0,1620,-16,0,0 +2013,8,6,2,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1230,10,0,1350,1,0,0 +2013,10,17,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-4,0,915,-13,0,0 +2013,6,14,5,OO,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,730,-6,0,836,1,0,0 +2013,7,18,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,1415,2,0,0 +2013,10,14,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,830,4,0,950,-3,0,0 +2013,6,16,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1248,21,1,1419,9,0,0 +2013,10,18,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-1,0,1905,-2,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,-7,0,1904,-35,0,0 +2013,6,23,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,14,0,2205,0,0,0 +2013,5,30,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1730,3,0,2017,-13,0,0 +2013,10,7,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-4,0,2014,-5,0,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1555,9,0,1910,32,1,0 +2013,5,31,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,800,0,0,925,-13,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,0,0,1445,-9,0,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,600,13,0,851,3,0,0 +2013,6,3,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1015,-12,0,1129,-25,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2140,37,1,2355,32,1,0 +2013,7,3,3,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1825,-2,0,2145,-41,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,1,0,1958,-26,0,0 +2013,5,28,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,9,0,1924,22,1,0 +2013,5,18,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,750,-8,0,855,1,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,2,0,850,-1,0,0 +2013,8,16,5,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,5,0,1813,10,0,0 +2013,9,12,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,650,1,0,908,7,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1620,-2,0,1835,-3,0,0 +2013,9,23,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1740,23,1,1850,21,1,0 +2013,4,18,4,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,2,0,840,-7,0,0 +2013,7,31,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-8,0,1200,-18,0,0 +2013,10,17,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1359,-5,0,1654,-12,0,0 +2013,5,9,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1624,0,0,2052,-3,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1125,-1,0,1225,-11,0,0 +2013,4,10,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-6,0,1118,1,0,0 +2013,4,26,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2157,-2,0,2329,-16,0,0 +2013,9,27,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-4,0,1855,-20,0,0 +2013,6,26,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,238,1,2005,224,1,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,800,5,0,1117,-10,0,0 +2013,7,12,5,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,829,-6,0,1637,-17,0,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1520,1,0,1650,-13,0,0 +2013,5,31,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,-8,0,1240,0,0,0 +2013,9,20,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1805,71,1,2355,53,1,0 +2013,6,20,4,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,13,0,835,-1,0,0 +2013,5,23,4,UA,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1537,0,,1905,0,1,1 +2013,10,2,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-5,0,1805,-11,0,0 +2013,5,28,2,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1225,7,0,1330,0,0,0 +2013,4,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1130,-10,0,1429,1,0,0 +2013,6,16,7,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-7,0,844,-20,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,755,-3,0,905,-5,0,0 +2013,8,26,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-2,0,1555,3,0,0 +2013,8,23,5,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,805,0,0,950,0,0,0 +2013,7,24,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2231,25,1,226,3,0,0 +2013,8,2,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,855,-1,0,1130,-1,0,0 +2013,10,4,5,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,0,0,1720,-11,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-2,0,1555,-7,0,0 +2013,7,7,7,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,-2,0,1130,-6,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,0,0,1112,-22,0,0 +2013,7,3,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,854,27,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,0,0,2110,-10,0,0 +2013,6,19,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,12,0,1915,6,0,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1015,2,0,1140,7,0,0 +2013,6,16,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1655,53,1,2015,42,1,0 +2013,8,22,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1812,0,0,2131,6,0,0 +2013,10,22,2,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,-6,0,1135,1,0,0 +2013,9,22,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,800,30,1,850,25,1,0 +2013,4,22,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2054,-3,0,2344,0,0,0 +2013,8,18,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1340,0,0,1700,-23,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1505,-14,0,1620,-13,0,0 +2013,10,8,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1945,-4,0,2120,-10,0,0 +2013,5,3,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,750,-4,0,855,-7,0,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1545,-2,0,1815,-7,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1745,-1,0,1850,-5,0,0 +2013,9,27,5,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1725,50,1,1940,81,1,0 +2013,4,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2020,-2,0,2151,-11,0,0 +2013,9,25,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,-9,0,853,0,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,1,0,1300,3,0,0 +2013,9,20,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,945,-4,0,955,-6,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,920,48,1,1010,40,1,0 +2013,9,8,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,800,18,1,1619,32,1,0 +2013,7,3,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1529,41,1,1840,2,0,0 +2013,4,5,5,EV,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,803,-8,0,905,-11,0,0 +2013,7,31,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1720,-9,0,1850,-28,0,0 +2013,8,18,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,850,16,1,1026,4,0,0 +2013,9,3,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1835,-3,0,2155,-15,0,0 +2013,8,24,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1820,-1,0,1925,-4,0,0 +2013,7,24,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1545,-3,0,1556,-7,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,855,-3,0,1015,-4,0,0 +2013,7,12,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-7,0,638,2,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-2,0,1337,-20,0,0 +2013,8,18,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2007,8,0,2127,61,1,0 +2013,9,16,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-7,0,1315,-15,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,826,-7,0,1109,-2,0,0 +2013,7,24,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1430,3,0,1725,1,0,0 +2013,7,19,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,95,1,2141,112,1,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1320,-9,0,1540,-11,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-2,0,2335,-13,0,0 +2013,8,2,5,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,946,-9,0,1140,-13,0,0 +2013,6,4,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1511,7,0,1825,4,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,830,-5,0,955,-16,0,0 +2013,7,31,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,0,,1840,0,1,1 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2020,-5,0,2159,8,0,0 +2013,9,12,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,650,0,0,827,5,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1758,101,1,1955,113,1,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,57,1,2214,81,1,0 +2013,7,20,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,700,0,0,820,16,1,0 +2013,5,14,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1259,96,1,1648,94,1,0 +2013,10,25,5,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,835,-3,0,1028,-2,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-1,0,1224,-2,0,0 +2013,6,20,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,0,0,2203,-15,0,0 +2013,4,25,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,-5,0,1405,-30,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-4,0,1625,-2,0,0 +2013,4,12,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,0,0,1145,-10,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,950,11,0,1340,-2,0,0 +2013,9,25,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1602,18,1,1824,16,1,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,2,0,1100,-17,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2200,3,0,2347,-6,0,0 +2013,4,19,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1917,-6,0,2048,0,0,0 +2013,5,7,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1055,4,0,1855,-11,0,0 +2013,8,7,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,744,-6,0,820,-2,0,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,28,1,2315,23,1,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,39,1,35,17,1,0 +2013,6,11,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,21,1,1946,15,1,0 +2013,5,3,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,3,0,822,21,1,0 +2013,7,21,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,-7,0,1325,-16,0,0 +2013,9,4,3,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,11,0,1219,5,0,0 +2013,9,14,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1630,-7,0,1730,-13,0,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1525,4,0,1655,14,0,0 +2013,5,22,3,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1007,11,0,0 +2013,7,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1514,14,0,1616,13,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,910,-1,0,1140,-10,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1721,0,0,1930,-20,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,858,-3,0,1119,-18,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,704,2,0,1543,-19,0,0 +2013,7,22,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,5,0,1225,16,1,0 +2013,6,21,5,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,830,-1,0,1022,-10,0,0 +2013,9,5,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,-4,0,901,-5,0,0 +2013,6,23,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1845,62,1,2030,67,1,0 +2013,5,14,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,716,-4,0,817,12,0,0 +2013,7,14,7,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-4,0,2054,-17,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1619,-5,0,1953,-13,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,-1,0,1219,-5,0,0 +2013,7,14,7,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,850,-7,0,1031,-19,0,0 +2013,9,12,4,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,-3,0,1847,-6,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,730,-5,0,1155,-22,0,0 +2013,5,8,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1455,54,1,1624,67,1,0 +2013,9,25,3,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-12,0,1041,2,0,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2040,-2,0,2340,-9,0,0 +2013,4,27,6,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,711,-7,0,1005,-19,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,919,39,1,1109,20,1,0 +2013,7,8,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1235,23,1,1440,35,1,0 +2013,5,16,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1020,2,0,1346,2,0,0 +2013,5,11,6,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,800,2,0,1040,-20,0,0 +2013,9,9,1,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1925,-6,0,2010,-14,0,0 +2013,7,24,3,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1758,6,0,2033,-13,0,0 +2013,6,9,7,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1431,5,0,1544,-2,0,0 +2013,10,1,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1910,-4,0,2220,-11,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,44,1,2152,33,1,0 +2013,6,11,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,959,75,1,1112,68,1,0 +2013,7,30,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,3,0,2115,-22,0,0 +2013,8,12,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-2,0,925,-8,0,0 +2013,7,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-7,0,2210,-6,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1650,33,1,1815,34,1,0 +2013,8,10,6,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,730,-1,0,1110,-4,0,0 +2013,10,16,3,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1806,-7,0,2051,-13,0,0 +2013,9,5,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-3,0,1411,-28,0,0 +2013,6,21,5,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,1,0,1701,-15,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1720,165,1,2025,158,1,0 +2013,4,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1015,-3,0,1205,-3,0,0 +2013,8,13,2,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1350,122,1,1554,114,1,0 +2013,10,24,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,0,,1845,0,1,1 +2013,8,21,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,-4,0,2259,-5,0,0 +2013,4,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,-5,0,2032,-13,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,28,1,1742,4,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-5,0,2021,13,0,0 +2013,7,11,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1405,13,0,1510,-1,0,0 +2013,7,21,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,825,0,0,945,-5,0,0 +2013,6,20,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1655,16,1,1822,17,1,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1905,15,1,50,1,0,0 +2013,4,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1319,304,1,1720,318,1,0 +2013,9,5,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1500,-3,0,1635,-8,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,900,0,0,1017,12,0,0 +2013,5,10,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1305,21,1,1601,34,1,0 +2013,10,25,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-4,0,1315,-14,0,0 +2013,5,3,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-5,0,821,-9,0,0 +2013,8,28,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,82,1,1839,96,1,0 +2013,7,22,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-4,0,1655,16,1,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,-5,0,1915,18,1,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1256,23,1,1751,0,0,0 +2013,6,19,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1533,30,1,1829,9,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,47,1,1705,34,1,0 +2013,7,24,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,615,0,0,945,-5,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,615,2,0,715,-1,0,0 +2013,7,12,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,25,1,1330,70,1,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1826,7,0,2049,-9,0,0 +2013,4,30,2,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,5,0,1907,-29,0,0 +2013,4,2,2,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1543,96,1,1710,98,1,0 +2013,5,3,5,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2130,-5,0,2310,-15,0,0 +2013,6,5,3,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,920,-7,0,1648,-3,0,0 +2013,6,27,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-1,0,1156,-9,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,737,-3,0,1046,-9,0,0 +2013,4,23,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,15376,Tucson International,Tucson,AZ,1135,17,1,1145,13,0,0 +2013,8,14,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2101,38,1,100,78,1,0 +2013,8,21,3,FL,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-1,0,2235,-13,0,0 +2013,7,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-3,0,904,-5,0,0 +2013,4,27,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1323,46,1,1449,53,1,0 +2013,5,7,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,610,-2,0,725,-24,0,0 +2013,8,26,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2039,16,1,2335,-4,0,0 +2013,10,16,3,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,-2,0,2247,-17,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2225,-4,0,2357,-9,0,0 +2013,7,1,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1810,0,0,2021,-9,0,0 +2013,4,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,1,0,900,-11,0,0 +2013,5,22,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2149,38,1,143,35,1,0 +2013,8,31,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1815,-6,0,2054,-15,0,0 +2013,8,15,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-1,0,2110,16,1,0 +2013,6,13,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1435,129,1,1555,120,1,0 +2013,7,19,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1705,13,0,1855,2,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1845,-3,0,2013,-8,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1400,70,1,1639,96,1,0 +2013,10,5,6,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1710,4,0,2259,7,0,0 +2013,8,24,6,EV,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,850,-10,0,1008,-17,0,0 +2013,8,28,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,47,1,1421,113,1,0 +2013,5,4,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,-1,0,1710,-11,0,0 +2013,6,10,1,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1341,-3,0,1601,-19,0,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1431,-1,0,1533,-9,0,0 +2013,4,4,4,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1408,6,0,1632,44,1,0 +2013,7,9,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2040,-3,0,2145,-1,0,0 +2013,7,6,6,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1405,5,0,1455,-2,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,948,1,0,1146,-9,0,0 +2013,5,27,1,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,945,-8,0,1157,-3,0,0 +2013,5,1,3,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,600,-2,0,735,-24,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2155,5,0,2344,3,0,0 +2013,9,28,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-4,0,1740,-11,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,740,2,0,845,2,0,0 +2013,7,19,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,2037,26,1,2245,-8,0,0 +2013,6,1,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,615,-4,0,738,-7,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,955,0,0,1157,-2,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1720,-4,0,1832,-24,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1450,2,0,1555,-3,0,0 +2013,8,23,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1734,8,0,2111,6,0,0 +2013,10,13,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,800,-2,0,855,-1,0,0 +2013,7,3,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,9,0,2020,4,0,0 +2013,10,31,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1006,-5,0,1628,-2,0,0 +2013,7,26,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,25,1,1943,37,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1405,-2,0,1513,-6,0,0 +2013,6,10,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1625,-3,0,2010,1,0,0 +2013,10,12,6,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,615,-3,0,1221,-23,0,0 +2013,8,26,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,1001,-25,0,0 +2013,5,10,5,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1127,-2,0,1420,-11,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1855,-9,0,2019,28,1,0 +2013,10,9,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1450,0,0,2146,-15,0,0 +2013,4,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1030,-3,0,1120,5,0,0 +2013,6,9,7,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-8,0,1210,-14,0,0 +2013,6,15,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,-12,0,1843,-7,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1945,12,0,2140,16,1,0 +2013,6,11,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,5,0,1050,14,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-2,0,2040,-2,0,0 +2013,4,23,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1005,0,0,1330,-19,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,800,-4,0,1040,23,1,0 +2013,5,6,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2048,-8,0,2152,-20,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2220,-2,0,2,-25,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,3,0,1315,-5,0,0 +2013,5,10,5,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,805,0,0,1235,-21,0,0 +2013,10,12,6,UA,12264,Washington Dulles International,Washington,DC,12173,Honolulu International,Honolulu,HI,850,6,0,1317,-14,0,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,705,34,1,1058,21,1,0 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1625,26,1,1905,23,1,0 +2013,8,18,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1410,-6,0,1444,0,0,0 +2013,9,19,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,63,1,1845,65,1,0 +2013,7,12,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-6,0,1430,103,1,0 +2013,9,12,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1405,26,1,1724,15,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1736,1,0,1902,-15,0,0 +2013,4,7,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,2000,-2,0,2125,-12,0,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1250,130,1,1419,120,1,0 +2013,4,22,1,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1122,-5,0,1318,-23,0,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2120,5,0,2257,-10,0,0 +2013,9,2,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-1,0,823,-12,0,0 +2013,7,7,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,8,0,2214,-6,0,0 +2013,8,14,3,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1155,-8,0,1455,-22,0,0 +2013,5,6,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,23,1,2053,19,1,0 +2013,9,13,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,8,0,1023,19,1,0 +2013,6,5,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1015,-2,0,0 +2013,10,24,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,-2,0,1453,-11,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,9,0,1700,-2,0,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,0,0,1320,-3,0,0 +2013,6,9,7,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1445,15,1,1945,26,1,0 +2013,7,15,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,-1,0,1700,2,0,0 +2013,5,22,3,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1031,14,0,1616,9,0,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2135,13,0,2350,3,0,0 +2013,6,13,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,850,-2,0,1135,-6,0,0 +2013,4,13,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1855,-10,0,2153,9,0,0 +2013,7,15,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1202,-5,0,1252,-11,0,0 +2013,4,23,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1735,-2,0,1849,15,1,0 +2013,8,4,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1710,-5,0,2035,58,1,0 +2013,7,4,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-8,0,1345,-14,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,0,0,1030,1,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,841,-3,0,1609,-7,0,0 +2013,5,26,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1409,4,0,1517,-10,0,0 +2013,9,17,2,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,700,1,0,910,-6,0,0 +2013,8,8,4,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,7,0,1643,-1,0,0 +2013,8,19,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1255,19,1,1544,15,1,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2115,5,0,2245,3,0,0 +2013,4,2,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,19,1,1650,3,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1059,-1,0,1431,-23,0,0 +2013,8,21,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,1530,4,0,1650,13,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,87,1,2345,87,1,0 +2013,4,19,5,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-6,0,1150,-16,0,0 +2013,7,13,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,715,-2,0,1010,-2,0,0 +2013,7,12,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,35,1,2136,5,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,-7,0,2059,-24,0,0 +2013,10,28,1,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,705,-5,0,1000,-31,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,-2,0,1904,-11,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,835,-4,0,1110,-15,0,0 +2013,7,18,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,1,0,759,-10,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1100,-4,0,1228,-6,0,0 +2013,5,9,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,31,1,853,46,1,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1055,-1,0,1220,-11,0,0 +2013,5,29,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,30,-5,0,814,-20,0,0 +2013,8,3,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1205,9,0,1325,4,0,0 +2013,6,3,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1305,59,1,1455,75,1,0 +2013,4,7,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-8,0,1755,-6,0,0 +2013,9,3,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,537,-3,0,654,-3,0,0 +2013,6,11,2,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-9,0,1245,-28,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1850,-1,0,1945,-10,0,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1545,-2,0,1828,10,0,0 +2013,10,10,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-5,0,1205,-11,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,700,-3,0,805,-5,0,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,2,0,1107,-14,0,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1835,-3,0,2110,-42,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1935,1,0,2035,-9,0,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,845,-2,0,945,-13,0,0 +2013,5,14,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1502,18,1,1604,1,0,0 +2013,4,21,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1359,-5,0,1642,-1,0,0 +2013,5,2,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-10,0,944,-19,0,0 +2013,4,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1015,5,0,1145,-9,0,0 +2013,5,4,6,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,12,0,1425,5,0,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,640,-1,0,800,2,0,0 +2013,10,7,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,847,-4,0,944,-12,0,0 +2013,10,20,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-1,0,2028,-5,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,950,0,0,1003,-9,0,0 +2013,5,26,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1810,2,0,1935,1,0,0 +2013,6,8,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1518,-7,0,1635,-16,0,0 +2013,8,16,5,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1200,-3,0,1430,-13,0,0 +2013,9,1,7,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1150,0,0,1310,4,0,0 +2013,6,26,3,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,-4,0,1642,-35,0,0 +2013,10,15,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,540,-2,0,1145,-28,0,0 +2013,10,14,1,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-2,0,815,4,0,0 +2013,5,24,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,849,50,1,1639,76,1,0 +2013,10,18,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1235,-8,0,1457,-14,0,0 +2013,6,4,2,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1510,-6,0,1719,-12,0,0 +2013,8,7,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-6,0,1347,1,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2145,1,0,2156,-16,0,0 +2013,6,18,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,144,1,2119,161,1,0 +2013,6,23,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1858,-4,0,1956,-8,0,0 +2013,6,17,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,0,,749,0,1,1 +2013,7,5,5,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,3,0,2145,0,0,0 +2013,5,30,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-6,0,2255,-9,0,0 +2013,8,5,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,610,-3,0,945,1,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,-1,0,2253,9,0,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1350,-4,0,1605,-5,0,0 +2013,5,15,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1231,-5,0,1524,-8,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1355,7,0,1755,20,1,0 +2013,5,13,1,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1745,6,0,1855,-4,0,0 +2013,8,8,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1705,6,0,1941,10,0,0 +2013,8,19,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2210,2,0,2356,-15,0,0 +2013,4,5,5,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1705,-8,0,1930,3,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,52,1,1819,55,1,0 +2013,4,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2110,2,0,2354,-7,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1447,20,1,1606,9,0,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,840,0,0,1000,-9,0,0 +2013,6,16,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,2,0,1227,-11,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2200,0,0,2328,-4,0,0 +2013,10,10,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1735,-6,0,1850,-24,0,0 +2013,7,26,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-5,0,846,-13,0,0 +2013,10,30,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1910,12,0,2040,-2,0,0 +2013,6,2,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,76,1,2340,66,1,0 +2013,9,16,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,65,1,1351,61,1,0 +2013,8,3,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,0,0,2123,2,0,0 +2013,4,21,7,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2321,-5,0,507,-23,0,0 +2013,4,5,5,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,2045,36,1,2353,-5,0,0 +2013,9,22,7,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-5,0,1230,-7,0,0 +2013,9,24,2,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,10,0,1935,13,0,0 +2013,9,11,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1215,-1,0,1315,-5,0,0 +2013,7,26,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-5,0,1805,-5,0,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-1,0,2307,-7,0,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,820,-2,0,1115,22,1,0 +2013,7,8,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1705,-1,0,1820,-9,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14570,Reno/Tahoe International,Reno,NV,946,-4,0,1131,-17,0,0 +2013,5,31,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1558,0,0,0 +2013,6,21,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1143,-2,0,1928,-17,0,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1406,-2,0,1721,4,0,0 +2013,4,13,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-2,0,1705,-15,0,0 +2013,10,26,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1321,-10,0,1444,-16,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2050,12,0,2355,-1,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,-3,0,1916,-2,0,0 +2013,5,31,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1850,105,1,2105,93,1,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,930,24,1,1455,21,1,0 +2013,5,16,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,4,0,1607,-16,0,0 +2013,5,19,7,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1137,99,1,1430,153,1,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1355,12,0,1620,2,0,0 +2013,9,24,2,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2305,-7,0,702,-20,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1243,-5,0,1549,43,1,0 +2013,4,19,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,601,-7,0,900,-19,0,0 +2013,5,16,4,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,2110,5,0,40,-8,0,0 +2013,4,14,7,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,920,-7,0,1715,7,0,0 +2013,6,28,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,-5,0,1356,0,0,0 +2013,4,21,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1715,-1,0,1840,-4,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1819,-5,0,2012,-18,0,0 +2013,9,10,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-3,0,25,-16,0,0 +2013,10,30,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,950,18,1,1105,8,0,0 +2013,5,7,2,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1036,-10,0,0 +2013,10,26,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1220,11,0,1730,-9,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-4,0,1026,-7,0,0 +2013,8,30,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-6,0,1222,-19,0,0 +2013,6,17,1,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1035,-5,0,1344,-11,0,0 +2013,4,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1711,-7,0,2046,-16,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,905,-3,0,1105,-17,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1710,2,0,1846,3,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,0,0,1453,-12,0,0 +2013,6,25,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1430,36,1,1555,31,1,0 +2013,8,6,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1120,13,0,1905,9,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1240,155,1,1455,137,1,0 +2013,10,15,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-4,0,1350,-9,0,0 +2013,4,24,3,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1137,-8,0,1624,-10,0,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1205,13,0,1400,-9,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,-5,0,1435,-15,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1339,-2,0,1450,-20,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1807,-4,0,1929,-10,0,0 +2013,7,28,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1730,0,,1900,0,1,1 +2013,6,17,1,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2147,-8,0,555,-34,0,0 +2013,6,9,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,7,0,1230,-4,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1505,-5,0,1634,-6,0,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1709,0,,1846,0,1,1 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1441,0,,1624,0,1,1 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,34,1,2106,15,1,0 +2013,4,11,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,119,1,1650,85,1,0 +2013,9,14,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-8,0,937,-4,0,0 +2013,4,17,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1720,-4,0,1845,-10,0,0 +2013,8,12,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1643,6,0,2000,16,1,0 +2013,10,14,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,4,0,2130,5,0,0 +2013,6,24,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1035,-5,0,1200,-4,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2025,40,1,2330,47,1,0 +2013,5,16,4,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1240,3,0,1432,11,0,0 +2013,5,20,1,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1133,3,0,1427,-3,0,0 +2013,7,30,2,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,919,0,,1100,0,1,1 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1758,-4,0,2034,-33,0,0 +2013,4,25,4,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1223,-5,0,1323,-7,0,0 +2013,5,6,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-2,0,1835,-18,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,0,0,1433,-8,0,0 +2013,4,27,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-6,0,1611,-13,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,7,0,2150,5,0,0 +2013,4,15,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1410,-1,0,1522,-16,0,0 +2013,8,23,5,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,825,-2,0,1000,-5,0,0 +2013,5,17,5,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1115,-4,0,1315,-3,0,0 +2013,5,10,5,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1755,2,0,1915,2,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1750,84,1,2012,74,1,0 +2013,6,23,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,620,-17,0,0 +2013,8,9,5,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,4,0,2125,-3,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1009,52,1,1437,52,1,0 +2013,6,14,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,0,0,1120,-8,0,0 +2013,7,22,1,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1742,-2,0,1919,-7,0,0 +2013,6,23,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-1,0,1456,1,0,0 +2013,8,17,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2005,-5,0,2146,1,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2155,-6,0,2305,-15,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1440,0,0,1743,4,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1515,16,1,1840,17,1,0 +2013,8,7,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1150,4,0,1847,6,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,857,-3,0,1112,-9,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1608,-3,0,2007,5,0,0 +2013,8,3,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1603,-5,0,1957,-22,0,0 +2013,8,11,7,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1020,-11,0,0 +2013,6,23,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,-3,0,2053,-18,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1930,9,0,2200,0,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1940,0,0,2140,0,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-3,0,1020,4,0,0 +2013,6,13,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,0,0,2030,54,1,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1559,7,0,1825,-13,0,0 +2013,5,21,2,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1409,-8,0,1619,-4,0,0 +2013,10,28,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,0,0,1415,-9,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1230,2,0,1345,-1,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,-6,0,1809,-9,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2201,-4,0,2340,-19,0,0 +2013,6,19,3,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1830,27,1,2021,53,1,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1621,29,1,1946,18,1,0 +2013,4,11,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1710,-8,0,1937,-3,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,2,0,1343,-15,0,0 +2013,7,5,5,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-6,0,810,-11,0,0 +2013,8,22,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,2001,-5,0,2142,-15,0,0 +2013,8,21,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14057,Portland International,Portland,OR,1811,1,0,2018,-21,0,0 +2013,10,23,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1310,21,1,1445,22,1,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1055,-4,0,1215,-15,0,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,-2,0,1351,15,1,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,1,0,1320,-3,0,0 +2013,10,6,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,61,1,2132,50,1,0 +2013,5,11,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,640,-5,0,836,-1,0,0 +2013,7,20,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-4,0,1015,-5,0,0 +2013,9,28,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-2,0,820,-7,0,0 +2013,7,15,1,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1936,-2,0,2155,-36,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1315,5,0,1600,-7,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1205,-5,0,1305,-12,0,0 +2013,6,16,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,809,-8,0,1405,-16,0,0 +2013,10,16,3,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1721,50,1,1859,34,1,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1005,0,0,1110,-5,0,0 +2013,6,30,7,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1925,0,0,2133,7,0,0 +2013,6,24,1,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1239,0,0,1406,95,1,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,28,1,1120,24,1,0 +2013,5,6,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,930,-4,0,1100,-4,0,0 +2013,4,21,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,615,-7,0,940,-18,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2105,16,1,2215,11,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1410,-8,0,1745,-12,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1845,15,1,47,27,1,0 +2013,10,2,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,620,1,0,1230,-8,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,3,0,1005,-2,0,0 +2013,5,18,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,10,0,1725,5,0,0 +2013,6,30,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,934,46,1,1045,59,1,0 +2013,8,9,5,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1107,135,1,1340,120,1,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,22,1,1831,51,1,0 +2013,4,11,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,10,0,1705,6,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-4,0,1322,-8,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,950,-3,0,1045,-4,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1405,13,0,1840,-16,0,0 +2013,8,24,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1325,-3,0,2053,-14,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1623,0,0,1728,0,0,0 +2013,10,13,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-2,0,1852,-13,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1442,16,1,2252,17,1,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1410,-3,0,1505,-4,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-5,0,914,-17,0,0 +2013,8,13,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,-4,0,2144,-21,0,0 +2013,9,17,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1155,0,,1320,0,1,1 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1725,0,0,1935,-18,0,0 +2013,9,11,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1040,-3,0,1155,-1,0,0 +2013,10,2,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1115,-2,0,1235,4,0,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,3,0,2110,-22,0,0 +2013,8,5,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,0,,820,0,1,1 +2013,6,29,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2156,-3,0,2213,5,0,0 +2013,8,19,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-5,0,805,-4,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1440,-4,0,1545,-17,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-1,0,1115,6,0,0 +2013,4,8,1,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1545,74,1,1845,64,1,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-5,0,1230,1,0,0 +2013,8,4,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-5,0,1400,3,0,0 +2013,8,13,2,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,820,0,0,1010,-6,0,0 +2013,9,23,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,830,-6,0,1047,-29,0,0 +2013,5,15,3,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,-5,0,1925,-10,0,0 +2013,7,30,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1040,6,0,1630,-8,0,0 +2013,9,1,7,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1305,-1,0,1910,-9,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,11,0,130,-1,0,0 +2013,10,15,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,0,,1115,0,1,1 +2013,9,1,7,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1144,57,1,1400,56,1,0 +2013,4,25,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,37,1,1825,30,1,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,730,3,0,935,3,0,0 +2013,5,19,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2255,-3,0,2359,-10,0,0 +2013,8,18,7,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,758,-1,0,953,-12,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,900,-1,0,1126,-13,0,0 +2013,5,7,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-3,0,1209,-2,0,0 +2013,6,4,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,-5,0,1542,5,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1915,11,0,2107,8,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1935,0,0,2047,-10,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,-2,0,2344,-9,0,0 +2013,8,22,4,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1740,25,1,2010,25,1,0 +2013,5,16,4,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1715,-9,0,1900,-5,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,0,0,2155,0,0,0 +2013,6,12,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1115,-5,0,1200,1,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-5,0,2214,-1,0,0 +2013,10,8,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,-7,0,2025,4,0,0 +2013,8,24,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-4,0,1315,-9,0,0 +2013,9,3,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,700,0,0,820,1,0,0 +2013,4,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2210,-2,0,2339,-2,0,0 +2013,5,31,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1315,19,1,1459,21,1,0 +2013,4,28,7,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-14,0,1258,-18,0,0 +2013,7,20,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1847,-1,0,2024,-15,0,0 +2013,9,6,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,600,-11,0,850,-24,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,34,1,2040,41,1,0 +2013,4,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,911,-5,0,1045,-21,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,4,0,2050,-15,0,0 +2013,9,12,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,1,0,720,-8,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-3,0,1522,1,0,0 +2013,10,17,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,-7,0,711,-13,0,0 +2013,8,5,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1910,-2,0,1915,16,1,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1345,0,0,1615,-13,0,0 +2013,4,5,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1445,6,0,1805,28,1,0 +2013,4,1,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1459,19,1,1637,31,1,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1814,-2,0,2020,-41,0,0 +2013,8,12,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-1,0,745,3,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-1,0,1840,-17,0,0 +2013,6,15,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,850,0,0,958,-2,0,0 +2013,4,19,5,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1715,249,1,2008,234,1,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1142,-2,0,1313,-10,0,0 +2013,5,10,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,13,0,1645,-9,0,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1735,-6,0,2040,-19,0,0 +2013,4,20,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,2,0,1436,17,1,0 +2013,8,25,7,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1438,14,0,1552,3,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-5,0,1851,-2,0,0 +2013,6,16,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-5,0,1217,-5,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,743,-2,0,1103,-15,0,0 +2013,8,8,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,0,0,1041,4,0,0 +2013,4,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2018,67,1,2334,68,1,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2050,33,1,2320,18,1,0 +2013,6,19,3,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1858,-5,0,2038,-12,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,3,0,1204,2,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1830,2,0,2058,-2,0,0 +2013,10,18,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-8,0,1742,-9,0,0 +2013,10,20,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1236,-7,0,1450,-14,0,0 +2013,5,13,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,0,0,1540,-22,0,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1529,-2,0,1840,-13,0,0 +2013,8,27,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,954,13,0,1034,8,0,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,5,0,1448,1,0,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2155,19,1,2255,11,0,0 +2013,6,19,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-7,0,749,3,0,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1335,79,1,1820,81,1,0 +2013,5,15,3,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1038,-8,0,1212,9,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1941,77,1,2140,74,1,0 +2013,4,25,4,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,-3,0,1547,0,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,3,0,2249,-3,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1932,20,1,2244,22,1,0 +2013,5,11,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1330,18,1,1635,49,1,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1910,-5,0,2059,-15,0,0 +2013,6,24,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,139,1,2137,138,1,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1555,5,0,1905,8,0,0 +2013,10,30,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,735,-3,0,840,18,1,0 +2013,7,20,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,1,0,1619,3,0,0 +2013,4,19,5,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1830,9,0,1955,19,1,0 +2013,9,25,3,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-11,0,1419,-15,0,0 +2013,8,2,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,840,3,0,1000,-5,0,0 +2013,6,5,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-4,0,836,-5,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-3,0,910,-26,0,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1105,-6,0,1420,-21,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1723,109,1,2315,89,1,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,605,3,0,904,-2,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1220,44,1,1650,33,1,0 +2013,6,23,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1453,-6,0,1543,-7,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,-4,0,1505,-11,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,-8,0,2117,-20,0,0 +2013,10,29,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-5,0,1807,-16,0,0 +2013,7,16,2,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1810,2,0,2021,-8,0,0 +2013,7,6,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,725,-8,0,948,-11,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,-3,0,1045,-22,0,0 +2013,7,24,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,618,0,0,756,-13,0,0 +2013,10,30,3,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1300,-4,0,2120,-28,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1251,4,0,1629,12,0,0 +2013,9,8,7,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1640,-6,0,1833,-9,0,0 +2013,8,5,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,945,15,1,1105,11,0,0 +2013,6,7,5,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1148,15,1,1447,20,1,0 +2013,5,5,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,740,-8,0,925,-20,0,0 +2013,5,10,5,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1700,9,0,1835,38,1,0 +2013,7,23,2,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,845,-3,0,955,-6,0,0 +2013,5,2,4,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1000,-11,0,1208,25,1,0 +2013,10,31,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,715,-6,0,850,-14,0,0 +2013,5,20,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1256,-5,0,1601,-7,0,0 +2013,10,28,1,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,0,0,703,-2,0,0 +2013,10,20,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1140,-12,0,1448,-29,0,0 +2013,10,14,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2000,39,1,2055,28,1,0 +2013,7,16,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2341,-3,0,730,2,0,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-1,0,2300,-7,0,0 +2013,9,7,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,915,5,0,1230,1,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1700,11,0,1830,3,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,-9,0,2155,-10,0,0 +2013,5,29,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1536,-6,0,1830,-10,0,0 +2013,7,25,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1056,-1,0,1130,1,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1920,90,1,55,79,1,0 +2013,10,20,7,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1805,5,0,1935,-6,0,0 +2013,8,25,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1540,9,0,1545,5,0,0 +2013,8,6,2,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1725,6,0,1730,4,0,0 +2013,10,9,3,OO,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1030,-9,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1220,-3,0,1337,-22,0,0 +2013,5,29,3,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-2,0,907,9,0,0 +2013,4,8,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1310,23,1,1435,15,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1240,2,0,1457,15,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1550,1,0,1940,-2,0,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-3,0,803,-7,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,-6,0,923,-14,0,0 +2013,5,22,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2055,20,1,2205,13,0,0 +2013,4,15,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1800,0,0,2015,-21,0,0 +2013,7,3,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,13,0,2050,6,0,0 +2013,8,18,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1301,6,0,1550,-10,0,0 +2013,7,25,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,831,-2,0,1015,-9,0,0 +2013,7,27,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,838,-6,0,1100,1,0,0 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2155,6,0,2300,9,0,0 +2013,5,10,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1500,62,1,1807,40,1,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1121,-3,0,1306,-11,0,0 +2013,10,24,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,31,1,2040,58,1,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,3,0,1035,-1,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1555,0,0,1710,-5,0,0 +2013,6,24,1,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,197,1,1733,198,1,0 +2013,6,5,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1515,17,1,1755,12,0,0 +2013,6,5,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1225,0,0,1320,-3,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,-8,0,1320,-9,0,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1537,-3,0,1852,-15,0,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,755,-2,0,1310,-19,0,0 +2013,7,11,4,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,39,1,1831,18,1,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,940,-1,0,1635,4,0,0 +2013,7,7,7,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,3,0,1435,-15,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1253,16,1,1518,1,0,0 +2013,4,19,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1920,-1,0,2045,-8,0,0 +2013,10,4,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,-5,0,1627,5,0,0 +2013,7,27,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,-7,0,2045,-33,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1622,-3,0,1749,-16,0,0 +2013,4,24,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1345,-4,0,1647,4,0,0 +2013,7,15,1,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,22,1,1950,-4,0,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,630,-3,0,916,-15,0,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,68,1,1745,57,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,3,0,1535,3,0,0 +2013,6,13,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1334,-10,0,1439,-33,0,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1600,10,0,40,-11,0,0 +2013,10,5,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1112,3,0,1245,19,1,0 +2013,7,24,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1505,14,0,1755,12,0,0 +2013,8,1,4,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,700,-2,0,1249,-18,0,0 +2013,4,22,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,28,1,1819,55,1,0 +2013,9,28,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,1,0,1940,-9,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,-2,0,2121,-8,0,0 +2013,5,10,5,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2300,-10,0,629,-5,0,0 +2013,6,14,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1714,1,0,1825,-11,0,0 +2013,7,10,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,810,-6,0,925,-5,0,0 +2013,8,15,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1550,-6,0,1709,-9,0,0 +2013,10,21,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1650,4,0,1927,9,0,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,23,1,2055,14,0,0 +2013,6,2,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,845,-11,0,947,-15,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1125,3,0,1335,17,1,0 +2013,7,11,4,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1505,9,0,1645,1,0,0 +2013,4,29,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,-2,0,935,-18,0,0 +2013,4,1,1,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1118,-1,0,1239,2,0,0 +2013,7,8,1,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,700,2,0,1045,-5,0,0 +2013,4,8,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1207,-4,0,1404,-12,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1449,16,1,1726,-2,0,0 +2013,7,9,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1205,-5,0,1459,-1,0,0 +2013,4,20,6,EV,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1359,-11,0,0 +2013,5,14,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,-1,0,2025,-3,0,0 +2013,4,1,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,1,0,1429,-8,0,0 +2013,5,17,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,-7,0,1640,13,0,0 +2013,8,22,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,22,1,1830,22,1,0 +2013,10,4,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,745,26,1,1556,-10,0,0 +2013,10,26,6,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-7,0,1052,-3,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-5,0,858,3,0,0 +2013,8,8,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2020,2,0,2255,0,0,0 +2013,6,23,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1500,16,1,2312,25,1,0 +2013,6,30,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,830,-5,0,935,-4,0,0 +2013,5,20,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,0,0,954,-12,0,0 +2013,6,9,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1350,-4,0,1500,-11,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,645,-5,0,938,-35,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2200,232,1,2316,220,1,0 +2013,7,3,3,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-4,0,1213,-2,0,0 +2013,10,27,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,6,0,1705,5,0,0 +2013,7,27,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,-5,0,914,0,0,0 +2013,10,10,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,-1,0,2028,-3,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2015,10,0,2120,15,1,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2100,-3,0,2325,-2,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2205,1,0,4,-26,0,0 +2013,4,20,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1655,-1,0,1942,-19,0,0 +2013,4,4,4,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,2125,89,1,2350,76,1,0 +2013,10,8,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,748,-6,0,838,-5,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1705,56,1,2024,54,1,0 +2013,10,21,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1635,9,0,1750,9,0,0 +2013,5,13,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1210,-6,0,1331,-3,0,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1741,8,0,2256,-1,0,0 +2013,6,2,7,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1535,5,0,1825,11,0,0 +2013,10,27,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,625,-2,0,738,-9,0,0 +2013,10,14,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,1,0,710,-12,0,0 +2013,10,17,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-5,0,1650,-10,0,0 +2013,8,14,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,21,1,2005,9,0,0 +2013,10,17,4,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1549,-5,0,1726,-8,0,0 +2013,10,11,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1200,104,1,1339,88,1,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,945,32,1,1230,19,1,0 +2013,10,20,7,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,-4,0,1550,-3,0,0 +2013,4,23,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1615,114,1,1855,123,1,0 +2013,5,9,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,105,1,1155,99,1,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1400,3,0,1520,-2,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,905,-4,0,1124,-17,0,0 +2013,6,26,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,950,28,1,1234,18,1,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2050,-3,0,2308,1,0,0 +2013,5,1,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1135,28,1,1340,17,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1510,5,0,1846,15,1,0 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2028,176,1,2247,199,1,0 +2013,7,27,6,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,51,1,1458,47,1,0 +2013,7,7,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1602,-6,0,1744,-28,0,0 +2013,9,8,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,-6,0,1738,-14,0,0 +2013,7,18,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-1,0,1210,2,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,3,0,1140,-4,0,0 +2013,9,19,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,640,316,1,901,336,1,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,920,-1,0,1120,-2,0,0 +2013,4,29,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2225,14,0,644,11,0,0 +2013,9,22,7,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-2,0,1259,-17,0,0 +2013,4,29,1,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1130,-8,0,1354,-32,0,0 +2013,4,16,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1535,-10,0,1638,1,0,0 +2013,9,5,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-7,0,2038,-19,0,0 +2013,5,19,7,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1012,-2,0,1314,-6,0,0 +2013,4,21,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1545,-12,0,1914,-28,0,0 +2013,9,2,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,9,0,729,-4,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1359,-5,0,1445,-17,0,0 +2013,4,12,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,535,-5,0,950,-19,0,0 +2013,7,23,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,51,1,2045,45,1,0 +2013,5,31,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,914,1,2045,907,1,0 +2013,6,19,3,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1500,-6,0,1609,-2,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1145,-1,0,1240,-11,0,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,639,-7,0,852,-20,0,0 +2013,8,9,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,1839,-14,0,0 +2013,4,2,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1245,72,1,2114,53,1,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,-3,0,1807,-3,0,0 +2013,8,1,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,843,-11,0,1024,-20,0,0 +2013,6,24,1,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,550,0,0,709,-8,0,0 +2013,4,7,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1400,-3,0,1440,-19,0,0 +2013,5,5,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-2,0,1515,-13,0,0 +2013,8,18,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,800,-3,0,925,-11,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1325,102,1,1520,80,1,0 +2013,10,5,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1353,-7,0,1440,2,0,0 +2013,4,29,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1745,-10,0,1925,-15,0,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1034,6,0,1409,-11,0,0 +2013,9,4,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-4,0,930,-17,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1355,-4,0,1550,-18,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1555,18,1,1850,21,1,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2130,-3,0,2320,-16,0,0 +2013,5,20,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,0,0,1820,-6,0,0 +2013,4,8,1,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1345,1,0,1635,-2,0,0 +2013,7,11,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,148,1,1908,127,1,0 +2013,10,2,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1945,21,1,2330,6,0,0 +2013,7,23,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-7,0,705,-5,0,0 +2013,4,12,5,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,605,0,0,750,7,0,0 +2013,10,9,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1333,18,1,1537,1,0,0 +2013,5,27,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1235,-1,0,1540,0,0,0 +2013,7,24,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,-2,0,1110,-6,0,0 +2013,9,25,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1810,-4,0,1930,-19,0,0 +2013,5,22,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1808,-5,0,1939,-16,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-5,0,845,-24,0,0 +2013,10,24,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,0,0,1355,-12,0,0 +2013,8,9,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1725,-5,0,1859,-13,0,0 +2013,6,20,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-6,0,2140,-4,0,0 +2013,9,15,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,-1,0,1220,-14,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,745,-3,0,915,-4,0,0 +2013,10,3,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1228,98,1,1420,85,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,78,1,1540,76,1,0 +2013,6,24,1,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-5,0,902,-3,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,910,-1,0,1015,-4,0,0 +2013,7,21,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1525,5,0,1650,0,0,0 +2013,6,2,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1220,-2,0,1350,-8,0,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1900,30,1,2046,23,1,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,21,1,2225,7,0,0 +2013,4,8,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,6,0,2106,-7,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,2,0,1913,13,0,0 +2013,10,28,1,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-5,0,2137,14,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,-6,0,1809,7,0,0 +2013,5,23,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,22,1,1605,22,1,0 +2013,10,25,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1220,2,0,1345,-3,0,0 +2013,4,23,2,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,705,35,1,826,64,1,0 +2013,6,9,7,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1345,-1,0,1601,-17,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,925,17,1,1205,11,0,0 +2013,10,18,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1608,-3,0,1725,-2,0,0 +2013,9,13,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1110,-9,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2020,9,0,2231,9,0,0 +2013,10,3,4,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,815,-7,0,947,-17,0,0 +2013,8,26,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,16,1,1531,16,1,0 +2013,10,13,7,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1729,-4,0,1856,10,0,0 +2013,5,29,3,OO,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1650,-5,0,1811,-21,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,4,0,2210,-6,0,0 +2013,8,17,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1040,-3,0,1318,8,0,0 +2013,10,4,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,635,-9,0,745,-8,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,745,6,0,931,-8,0,0 +2013,8,28,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,125,1,1944,130,1,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1343,9,0,1750,15,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1457,-4,0,1649,-7,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1015,4,0,1330,-9,0,0 +2013,6,10,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,10,0,1018,4,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1423,25,1,1550,42,1,0 +2013,4,12,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1037,10,0,1316,27,1,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1448,10,0,1745,-21,0,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1156,2,0,1654,-1,0,0 +2013,7,13,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-5,0,1433,-28,0,0 +2013,5,17,5,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,0,0,914,-9,0,0 +2013,5,8,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,-1,0,1138,26,1,0 +2013,9,28,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1635,2,0,1915,13,0,0 +2013,7,15,1,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2045,-7,0,2130,-8,0,0 +2013,7,23,2,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1910,-2,0,2043,8,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-2,0,2350,-5,0,0 +2013,4,1,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,1,0,935,-3,0,0 +2013,4,16,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1314,3,0,1430,-7,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1813,3,0,1836,5,0,0 +2013,5,4,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1805,-3,0,1910,-13,0,0 +2013,9,10,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,7,0,1812,12,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,830,-1,0,930,-13,0,0 +2013,4,19,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,915,-4,0,1147,-4,0,0 +2013,9,27,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1445,-8,0,1533,-6,0,0 +2013,7,14,7,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,850,4,0,1105,-27,0,0 +2013,7,2,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-1,0,2020,-19,0,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,853,-4,0,1115,-11,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1430,15,1,1650,15,1,0 +2013,9,3,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1940,-6,0,2306,15,1,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,16,1,1245,60,1,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,835,17,1,1100,7,0,0 +2013,7,19,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1423,47,1,1722,31,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,5,0,1445,-21,0,0 +2013,10,10,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1506,13,0,1838,11,0,0 +2013,6,20,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-4,0,744,-5,0,0 +2013,10,15,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,23,1,2017,25,1,0 +2013,8,16,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-2,0,1424,-20,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,-2,0,755,3,0,0 +2013,5,11,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1405,3,0,1620,39,1,0 +2013,6,6,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11042,Cleveland-Hopkins International,Cleveland,OH,2300,22,1,620,-2,0,0 +2013,4,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,2,0,1440,0,0,0 +2013,9,7,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-1,0,1315,6,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,855,-4,0,1030,-12,0,0 +2013,4,29,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-5,0,2044,-15,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2040,3,0,2340,-22,0,0 +2013,9,7,6,9E,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,955,41,1,1132,12,0,0 +2013,10,8,2,UA,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1058,3,0,1137,-8,0,0 +2013,7,14,7,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,-4,0,2146,-54,0,0 +2013,4,25,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,700,4,0,930,-3,0,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1600,-10,0,1758,-2,0,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1700,8,0,1830,9,0,0 +2013,10,4,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,-9,0,2137,-10,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1257,-4,0,1722,-17,0,0 +2013,5,25,6,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,840,-4,0,1025,-23,0,0 +2013,8,7,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1429,-3,0,1714,-7,0,0 +2013,5,13,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,-3,0,1405,-8,0,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1238,-5,0,1334,-11,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2235,0,0,125,-1,0,0 +2013,9,28,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-9,0,1628,-12,0,0 +2013,7,2,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1447,5,0,2029,32,1,0 +2013,7,1,1,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1000,-4,0,1209,-17,0,0 +2013,10,25,5,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,19,1,729,3,0,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1703,95,1,2009,105,1,0 +2013,9,13,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,800,-5,0,850,-4,0,0 +2013,5,26,7,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1141,-8,0,1437,-16,0,0 +2013,10,5,6,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,-4,0,800,-11,0,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,550,-7,0,918,-10,0,0 +2013,6,9,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1755,8,0,2054,-8,0,0 +2013,8,21,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1256,17,1,1447,31,1,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,740,-7,0,1200,1,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,-2,0,2314,3,0,0 +2013,7,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1830,20,1,1940,8,0,0 +2013,10,10,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,-1,0,808,-6,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,4,0,2217,-2,0,0 +2013,8,21,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,903,-2,0,1124,-11,0,0 +2013,6,1,6,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1830,-2,0,2010,-22,0,0 +2013,6,13,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1935,87,1,2302,94,1,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,0,0,2215,-2,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,-7,0,1200,-19,0,0 +2013,4,12,5,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,-7,0,1349,-3,0,0 +2013,4,25,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1130,0,0,1434,46,1,0 +2013,10,21,1,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1535,-8,0,1700,-28,0,0 +2013,4,7,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1637,-7,0,1755,-23,0,0 +2013,4,14,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1732,-2,0,1820,-12,0,0 +2013,6,23,7,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1635,39,1,1847,31,1,0 +2013,7,24,3,DL,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1500,-1,0,1722,6,0,0 +2013,5,8,3,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,600,9,0,645,3,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,-4,0,1242,-24,0,0 +2013,8,4,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1730,-15,0,1900,10,0,0 +2013,5,15,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,550,-5,0,715,-21,0,0 +2013,5,31,5,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-5,0,2056,-11,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1410,0,0,1649,5,0,0 +2013,4,20,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,0,0,1720,-14,0,0 +2013,10,31,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,-7,0,2024,0,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1345,16,1,1545,19,1,0 +2013,8,29,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,-8,0,2355,-3,0,0 +2013,8,5,1,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,2127,15,1,533,-5,0,0 +2013,4,5,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1656,37,1,2000,-2,0,0 +2013,7,24,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-8,0,1440,-9,0,0 +2013,5,2,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1245,-2,0,1416,-16,0,0 +2013,5,5,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-11,0,1020,-21,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1445,1,0,1835,0,0,0 +2013,4,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,635,-2,0,745,-9,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-3,0,1110,-10,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,12451,Jacksonville International,Jacksonville,FL,1700,27,1,2210,55,1,0 +2013,5,31,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1835,10,0,1950,4,0,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-9,0,2355,-13,0,0 +2013,7,31,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,1,0,1530,-2,0,0 +2013,10,25,5,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1114,-10,0,1424,-12,0,0 +2013,10,19,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1720,-4,0,1837,-7,0,0 +2013,10,25,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-4,0,1402,-8,0,0 +2013,7,9,2,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-5,0,911,-20,0,0 +2013,10,25,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-5,0,1600,-11,0,0 +2013,5,16,4,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,930,-7,0,1255,-24,0,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,945,21,1,1100,21,1,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1600,44,1,1730,56,1,0 +2013,4,10,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,-3,0,1900,-33,0,0 +2013,7,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1514,0,0,1840,13,0,0 +2013,6,28,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,0,,725,0,1,1 +2013,4,29,1,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,815,-1,0,1022,-11,0,0 +2013,7,6,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1500,12,0,1755,21,1,0 +2013,7,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,-3,0,1100,-3,0,0 +2013,5,21,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-4,0,1020,-4,0,0 +2013,7,1,1,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-5,0,525,23,1,0 +2013,10,15,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,1,0,1122,3,0,0 +2013,4,6,6,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1455,4,0,2245,-10,0,0 +2013,4,1,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1055,-4,0,1220,-21,0,0 +2013,7,8,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,925,-9,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,801,-1,0,929,-4,0,0 +2013,4,10,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1805,11,0,1932,-12,0,0 +2013,5,20,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1725,2,0,2005,-16,0,0 +2013,9,6,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-1,0,1912,21,1,0 +2013,8,3,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,758,-4,0,924,-20,0,0 +2013,6,17,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2054,6,0,2228,12,0,0 +2013,5,4,6,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1015,-4,0,1140,2,0,0 +2013,5,29,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1417,53,1,1659,52,1,0 +2013,6,2,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1359,-7,0,1714,-14,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2257,96,1,2302,93,1,0 +2013,9,3,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-3,0,2055,-22,0,0 +2013,5,8,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-3,0,1228,-6,0,0 +2013,6,30,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,-4,0,1201,2,0,0 +2013,4,21,7,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-9,0,1345,-8,0,0 +2013,10,10,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-5,0,950,-22,0,0 +2013,7,13,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1540,3,0,1635,1,0,0 +2013,4,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1910,0,0,2025,-14,0,0 +2013,6,15,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,-1,0,1900,-7,0,0 +2013,8,31,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1249,-4,0,2120,-5,0,0 +2013,10,26,6,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,825,-6,0,1633,-4,0,0 +2013,5,21,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,715,-6,0,1534,1,0,0 +2013,7,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1015,2,0,1545,0,0,0 +2013,7,29,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1825,42,1,1850,56,1,0 +2013,7,5,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,-2,0,1101,-6,0,0 +2013,8,10,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,730,-2,0,1035,-7,0,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,9,0,735,1,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-2,0,710,-11,0,0 +2013,10,15,2,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,9,0,1645,13,0,0 +2013,10,28,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2058,4,0,2239,13,0,0 +2013,8,9,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1616,62,1,21,44,1,0 +2013,4,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,831,-2,0,1119,20,1,0 +2013,9,2,1,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,700,0,0,900,-17,0,0 +2013,5,17,5,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,0,0,1948,-6,0,0 +2013,5,5,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,710,-2,0,1010,13,0,0 +2013,5,27,1,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,-1,0,1835,-9,0,0 +2013,6,9,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-4,0,1147,-15,0,0 +2013,10,17,4,EV,13871,Eppley Airfield,Omaha,NE,12953,LaGuardia,New York,NY,700,-5,0,1053,-20,0,0 +2013,5,21,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-3,0,934,11,0,0 +2013,8,16,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1705,32,1,1815,32,1,0 +2013,10,13,7,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1155,-5,0,1244,-18,0,0 +2013,9,21,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,845,-4,0,1049,-16,0,0 +2013,6,17,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,1516,-9,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,625,-2,0,940,4,0,0 +2013,6,6,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,750,4,0,1124,4,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,29,1,1925,30,1,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1705,76,1,1850,68,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1412,-4,0,1550,8,0,0 +2013,7,4,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-11,0,1443,-26,0,0 +2013,10,26,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1535,-15,0,1847,-24,0,0 +2013,9,14,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,1250,-12,0,0 +2013,7,20,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,752,1,0,850,52,1,0 +2013,10,25,5,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1700,9,0,1815,19,1,0 +2013,7,4,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1030,16,1,1200,19,1,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-8,0,1605,-10,0,0 +2013,6,16,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2005,54,1,2120,58,1,0 +2013,9,15,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-3,0,731,-22,0,0 +2013,8,5,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,-4,0,952,-8,0,0 +2013,10,29,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1519,-29,0,0 +2013,7,25,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-5,0,1915,-18,0,0 +2013,5,21,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,759,0,0,1405,-25,0,0 +2013,5,8,3,UA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,638,-5,0,844,-20,0,0 +2013,8,8,4,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,-10,0,2133,-12,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1900,2,0,2130,23,1,0 +2013,8,21,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1935,19,1,2035,13,0,0 +2013,10,13,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,726,3,0,0 +2013,8,4,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1156,-4,0,1342,-9,0,0 +2013,9,20,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1955,94,1,2125,85,1,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,806,17,1,1105,-7,0,0 +2013,9,10,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1737,-5,0,1831,-12,0,0 +2013,10,12,6,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2010,0,0,2239,19,1,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1100,91,1,1255,88,1,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,28,1,1625,23,1,0 +2013,5,17,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,57,1,2103,49,1,0 +2013,9,29,7,VX,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1700,-1,0,1845,-9,0,0 +2013,5,25,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1600,32,1,1925,5,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,2,0,913,-7,0,0 +2013,6,19,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1835,-6,0,2010,23,1,0 +2013,9,28,6,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1522,-1,0,1837,19,1,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,-3,0,1522,-10,0,0 +2013,10,15,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-5,0,1455,-4,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1240,0,0,1600,-4,0,0 +2013,5,12,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,804,0,0,954,0,0,0 +2013,4,15,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,705,4,0,915,6,0,0 +2013,5,12,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1811,-14,0,2013,-6,0,0 +2013,5,17,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-1,0,842,-2,0,0 +2013,5,27,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,736,-6,0,1249,-12,0,0 +2013,10,1,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,-2,0,720,-11,0,0 +2013,10,25,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1725,2,0,1827,6,0,0 +2013,6,29,6,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1845,-5,0,2025,-15,0,0 +2013,9,29,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1304,-2,0,1550,-7,0,0 +2013,8,5,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,-2,0,814,-8,0,0 +2013,6,9,7,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,605,1,0,740,-1,0,0 +2013,8,9,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,7,0,1923,8,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,845,1,0,1348,13,0,0 +2013,4,23,2,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,16,1,2055,8,0,0 +2013,6,13,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,24,1,1947,11,0,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1114,0,0,1250,-7,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1604,-2,0,1717,-11,0,0 +2013,5,9,4,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2120,19,1,2340,20,1,0 +2013,8,26,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,23,1,1435,10,0,0 +2013,10,9,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,825,0,0,1235,-3,0,0 +2013,6,22,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,-5,0,1725,-1,0,0 +2013,4,4,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,-6,0,2020,25,1,0 +2013,8,24,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1928,-2,0,2028,1,0,0 +2013,5,16,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1756,-5,0,1914,-11,0,0 +2013,7,11,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-3,0,2044,-4,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1905,8,0,2119,-20,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2155,0,,15,0,1,1 +2013,6,9,7,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1657,4,0,2238,-6,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,22,1,2059,38,1,0 +2013,6,10,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1220,0,0,1420,-5,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,955,-4,0,1058,-4,0,0 +2013,6,2,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,13,0,2030,8,0,0 +2013,5,24,5,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,710,11,0,840,-9,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,840,-3,0,1139,-21,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,-6,0,2156,-6,0,0 +2013,7,15,1,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-9,0,1020,-9,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1055,-1,0,1540,2,0,0 +2013,6,5,3,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1842,38,1,2133,34,1,0 +2013,7,5,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1053,-11,0,1240,-23,0,0 +2013,5,19,7,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,13,0,1826,16,1,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,70,1,1500,68,1,0 +2013,9,28,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,800,-9,0,933,-23,0,0 +2013,10,22,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1317,206,1,1915,199,1,0 +2013,7,29,1,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1255,-6,0,1405,-8,0,0 +2013,8,4,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,-6,0,1550,-7,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,15,1,1214,18,1,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2250,3,0,2355,-11,0,0 +2013,10,27,7,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,2023,-7,0,2257,-12,0,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1015,-4,0,1330,-5,0,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,0,,2000,0,1,1 +2013,8,24,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,605,15,1,857,0,0,0 +2013,8,7,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,63,1,2152,66,1,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-4,0,1104,-9,0,0 +2013,8,18,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,4,0,2030,-7,0,0 +2013,4,7,7,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,700,-4,0,923,-25,0,0 +2013,7,3,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,2,0,1305,-5,0,0 +2013,10,28,1,AS,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-5,0,1735,-6,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1055,6,0,1320,10,0,0 +2013,8,18,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,957,-2,0,1255,-4,0,0 +2013,6,8,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1248,6,0,1548,15,1,0 +2013,7,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1424,-6,0,1523,-8,0,0 +2013,9,24,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1140,0,0,1320,-3,0,0 +2013,4,23,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,-4,0,2158,9,0,0 +2013,10,17,4,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1445,0,0,1727,13,0,0 +2013,9,27,5,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,-7,0,1436,-15,0,0 +2013,9,12,4,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,655,0,0,830,10,0,0 +2013,8,17,6,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,59,1,1409,62,1,0 +2013,7,23,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,-5,0,755,-15,0,0 +2013,6,27,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1940,32,1,2308,25,1,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,530,-3,0,820,-3,0,0 +2013,9,27,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,600,10,0,750,-3,0,0 +2013,5,31,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,-1,0,1330,-5,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2105,-7,0,2301,-15,0,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1105,73,1,1420,54,1,0 +2013,5,16,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-1,0,1115,0,0,0 +2013,9,14,6,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,802,-5,0,940,-20,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,23,1,1240,12,0,0 +2013,4,1,1,DL,13244,Memphis International,Memphis,TN,15304,Tampa International,Tampa,FL,1945,-4,0,2234,-15,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,14,0,1410,8,0,0 +2013,6,15,6,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1514,-4,0,1645,-6,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1546,30,1,1720,14,0,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,75,1,1057,72,1,0 +2013,8,30,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,805,-2,0,1101,-27,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,3,0,2205,0,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1610,0,0,1715,1,0,0 +2013,7,14,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1913,-5,0,2145,6,0,0 +2013,6,24,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,5,0,642,5,0,0 +2013,6,22,6,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-8,0,1253,-16,0,0 +2013,7,3,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-4,0,1925,-11,0,0 +2013,7,20,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-5,0,1113,4,0,0 +2013,9,26,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1054,2,0,1211,-10,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,2,0,1442,-9,0,0 +2013,7,26,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1400,-5,0,1422,-11,0,0 +2013,9,18,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1630,34,1,1745,21,1,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2050,3,0,2234,19,1,0 +2013,9,22,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1830,223,1,2115,216,1,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1858,13,0,2322,24,1,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1925,19,1,2110,27,1,0 +2013,6,23,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1820,3,0,1905,9,0,0 +2013,8,29,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,89,1,1455,95,1,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1503,-1,0,1731,-13,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-3,0,1953,-12,0,0 +2013,10,3,4,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1410,-3,0,1755,-1,0,0 +2013,8,24,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1610,-3,0,5,-15,0,0 +2013,5,21,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1835,76,1,2020,73,1,0 +2013,8,16,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-13,0,2035,-17,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,-3,0,2150,4,0,0 +2013,9,11,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-5,0,1521,3,0,0 +2013,5,14,2,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-8,0,1147,-9,0,0 +2013,8,14,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1354,16,1,1510,9,0,0 +2013,10,11,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2012,-10,0,2112,-14,0,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1038,-9,0,1305,-17,0,0 +2013,8,15,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,558,-8,0,854,-13,0,0 +2013,9,7,6,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1410,-13,0,1605,-34,0,0 +2013,5,18,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1715,4,0,1840,-13,0,0 +2013,6,27,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1341,24,1,1707,20,1,0 +2013,5,7,2,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1650,10,0,1843,23,1,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1040,0,0,1215,-13,0,0 +2013,10,31,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1104,4,0,1908,-7,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,952,-3,0,1216,-20,0,0 +2013,5,15,3,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-3,0,1300,-38,0,0 +2013,7,7,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-5,0,840,-15,0,0 +2013,6,17,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,-1,0,1645,4,0,0 +2013,10,24,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,9,0,1420,10,0,0 +2013,4,18,4,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,0,0,859,9,0,0 +2013,10,27,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1845,73,1,2210,52,1,0 +2013,8,13,2,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-5,0,10,-10,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,9,0,1625,4,0,0 +2013,7,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1357,41,1,1803,45,1,0 +2013,4,29,1,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,830,0,0,1019,0,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1630,-1,0,1815,-24,0,0 +2013,8,12,1,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1620,-6,0,1740,-2,0,0 +2013,6,7,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,930,-5,0,1105,-5,0,0 +2013,10,2,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,-4,0,1825,-12,0,0 +2013,6,4,2,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2035,-2,0,2315,-2,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-4,0,940,-12,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,47,1,2220,31,1,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1044,86,1,1401,79,1,0 +2013,6,7,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,0,0,1051,0,0,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1135,0,0,1240,-5,0,0 +2013,10,1,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,840,-3,0,1005,-2,0,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1254,3,0,1456,8,0,0 +2013,8,21,3,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,710,-3,0,1535,-15,0,0 +2013,4,23,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,5,0,1327,-4,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1147,-5,0,2029,25,1,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1230,10,0,1715,2,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,-4,0,1442,13,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,8,0,1920,9,0,0 +2013,5,7,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1417,-7,0,1531,-10,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1100,46,1,1205,45,1,0 +2013,7,22,1,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,956,157,1,1113,156,1,0 +2013,6,16,7,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,840,-9,0,935,-12,0,0 +2013,5,26,7,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-2,0,1630,-12,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-2,0,825,-1,0,0 +2013,9,15,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,252,1,1919,250,1,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,735,3,0,1305,7,0,0 +2013,8,19,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,40,1,1354,38,1,0 +2013,10,13,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,845,-4,0,1000,7,0,0 +2013,5,11,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1010,-4,0,1414,-13,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1845,0,0,2010,1,0,0 +2013,4,11,4,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1712,15,1,1904,19,1,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,58,1,1100,57,1,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1930,5,0,2341,-1,0,0 +2013,10,25,5,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,-3,0,1135,-5,0,0 +2013,7,17,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-5,0,1345,-40,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,4,0,1250,12,0,0 +2013,10,4,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,0,0,1055,-7,0,0 +2013,8,30,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,950,54,1,1315,57,1,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,2002,-1,0,2203,-6,0,0 +2013,10,31,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1435,-1,0,1620,-7,0,0 +2013,10,1,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1025,-7,0,1305,-30,0,0 +2013,8,20,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1505,-1,0,1830,-1,0,0 +2013,9,6,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-1,0,1724,0,0,0 +2013,6,22,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1533,66,1,1646,58,1,0 +2013,6,19,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,3,0,1850,6,0,0 +2013,10,22,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-7,0,1933,-15,0,0 +2013,10,17,4,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1029,-6,0,1305,-11,0,0 +2013,7,5,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,829,142,1,959,144,1,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1130,-4,0,1418,-20,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1630,4,0,1850,23,1,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-4,0,1655,5,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,7,0,1715,-8,0,0 +2013,4,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,700,-1,0,805,-6,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2145,-2,0,15,-16,0,0 +2013,10,30,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1059,-2,0,1309,-2,0,0 +2013,9,25,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,1349,-17,0,0 +2013,9,28,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,655,-5,0,810,-18,0,0 +2013,9,6,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,740,-6,0,930,-13,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-5,0,1502,-11,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2118,6,0,15,1,0,0 +2013,5,31,5,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1400,0,0,2235,-8,0,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,2,0,1111,-19,0,0 +2013,5,21,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2135,6,0,600,-14,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,-3,0,1354,-11,0,0 +2013,4,17,3,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1700,25,1,1835,15,1,0 +2013,5,10,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,837,-2,0,857,-8,0,0 +2013,5,21,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1925,95,1,2125,99,1,0 +2013,7,23,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1420,-3,0,1545,-9,0,0 +2013,9,6,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-10,0,712,-18,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,-5,0,1744,24,1,0 +2013,5,8,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1910,51,1,2233,58,1,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1915,3,0,2103,-20,0,0 +2013,9,8,7,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1045,5,0,1325,12,0,0 +2013,9,21,6,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1538,-6,0,1720,-3,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,162,1,1835,148,1,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1525,60,1,1650,54,1,0 +2013,5,2,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-5,0,1623,-15,0,0 +2013,7,18,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1129,-1,0,1329,-3,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,752,2,0,926,17,1,0 +2013,8,29,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,13,0,1925,4,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,929,7,0,1241,-4,0,0 +2013,5,19,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,700,1,0,720,-13,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2010,30,1,2305,25,1,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1913,-6,0,123,-17,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-11,0,1835,-15,0,0 +2013,6,11,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,1,0,1747,5,0,0 +2013,9,11,3,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1715,0,0,2048,-21,0,0 +2013,7,26,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,36,1,2030,38,1,0 +2013,8,29,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,15,1,2235,18,1,0 +2013,4,19,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,70,1,2115,70,1,0 +2013,9,8,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,545,-1,0,1051,7,0,0 +2013,8,4,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,12,0,1442,5,0,0 +2013,8,21,3,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,0,0,2051,1,0,0 +2013,9,9,1,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2003,-3,0,2140,-16,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,700,12,0,905,9,0,0 +2013,8,29,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,-4,0,850,16,1,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1249,60,1,1700,130,1,0 +2013,5,5,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1420,-3,0,1559,9,0,0 +2013,6,8,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1120,3,0,1320,0,0,0 +2013,9,10,2,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1825,-9,0,2040,-14,0,0 +2013,5,17,5,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,902,-20,0,0 +2013,6,6,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1114,-6,0,1349,5,0,0 +2013,7,22,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,915,-7,0,1029,-4,0,0 +2013,7,31,3,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,2,0,1641,19,1,0 +2013,6,5,3,OO,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1740,8,0,1948,2,0,0 +2013,6,14,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1820,-7,0,2039,-11,0,0 +2013,4,9,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1935,-2,0,2040,-6,0,0 +2013,8,25,7,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1520,-5,0,1700,-13,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2154,43,1,2353,37,1,0 +2013,8,11,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-1,0,1015,-19,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,910,-3,0,1034,2,0,0 +2013,10,14,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1730,45,1,1825,52,1,0 +2013,10,8,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1800,4,0,1920,-5,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,5,0,2025,0,0,0 +2013,4,25,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-5,0,805,2,0,0 +2013,6,6,4,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1325,125,1,1546,124,1,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,820,-5,0,1212,-20,0,0 +2013,8,25,7,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1204,0,0,1303,-11,0,0 +2013,8,14,3,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1235,0,0,2100,0,0,0 +2013,8,12,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1645,-2,0,1940,-30,0,0 +2013,8,9,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1155,9,0,1255,7,0,0 +2013,4,5,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-4,0,949,-2,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-2,0,1112,-10,0,0 +2013,4,18,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,50,1,1510,49,1,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-7,0,1305,-34,0,0 +2013,5,1,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,2,0,930,-6,0,0 +2013,8,22,4,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,810,-11,0,0 +2013,5,3,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,954,23,1,1310,24,1,0 +2013,7,14,7,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,834,-2,0,1119,-8,0,0 +2013,4,11,4,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1015,144,1,1611,180,1,0 +2013,4,1,1,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1300,-1,0,1846,-13,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1750,-3,0,2045,-10,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,0,0,1554,-3,0,0 +2013,4,21,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1110,-14,0,1407,-1,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1608,-5,0,1950,-17,0,0 +2013,5,28,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,-5,0,1850,-5,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1100,2,0,1205,4,0,0 +2013,6,4,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-7,0,2025,-7,0,0 +2013,7,24,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,1,0,1747,8,0,0 +2013,10,15,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-1,0,1510,4,0,0 +2013,4,7,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1235,-7,0,1530,-13,0,0 +2013,10,25,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,725,72,1,1022,65,1,0 +2013,8,16,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2055,-3,0,2341,5,0,0 +2013,9,19,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-5,0,1910,-14,0,0 +2013,4,25,4,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1125,-2,0,1400,-15,0,0 +2013,5,20,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2340,0,0,653,-20,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,630,-1,0,1125,-7,0,0 +2013,6,30,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,3,0,845,19,1,0 +2013,6,29,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1654,-7,0,1954,-14,0,0 +2013,7,2,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,520,-6,0,642,6,0,0 +2013,7,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2135,3,0,2335,-8,0,0 +2013,8,9,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1901,7,0,2003,-5,0,0 +2013,10,2,3,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1340,44,1,1550,44,1,0 +2013,9,3,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1112,45,1,1229,63,1,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,9,0,1624,28,1,0 +2013,5,30,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,0,0,932,5,0,0 +2013,6,18,2,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1840,64,1,1921,65,1,0 +2013,4,9,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,-2,0,1107,5,0,0 +2013,4,23,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1840,48,1,2100,39,1,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,729,-3,0,901,-9,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-2,0,2021,4,0,0 +2013,10,26,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-4,0,1845,-5,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1000,-2,0,1245,-6,0,0 +2013,9,19,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,925,0,0,1135,-8,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,835,-3,0,1310,-7,0,0 +2013,5,23,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-5,0,1414,-13,0,0 +2013,10,19,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,655,-4,0,828,-5,0,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,6,0,1813,15,1,0 +2013,5,28,2,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1929,-5,0,2047,3,0,0 +2013,4,24,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1541,81,1,1901,69,1,0 +2013,8,14,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,902,-4,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,615,-4,0,930,1,0,0 +2013,5,13,1,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1725,-4,0,2020,-13,0,0 +2013,7,14,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,3,0,1742,0,0,0 +2013,5,4,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1515,-6,0,1539,10,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1725,-2,0,2110,-17,0,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,-4,0,930,-23,0,0 +2013,10,13,7,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2213,-5,0,2350,-4,0,0 +2013,6,23,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1925,264,1,2135,256,1,0 +2013,10,10,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1756,34,1,1928,33,1,0 +2013,7,8,1,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,600,13,0,840,-4,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1110,3,0,1331,18,1,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,2001,4,0,2126,-11,0,0 +2013,9,15,7,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,-2,0,1830,7,0,0 +2013,9,18,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-2,0,1510,-2,0,0 +2013,4,18,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1010,69,1,1139,76,1,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-4,0,1257,-18,0,0 +2013,7,20,6,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,36,1,500,31,1,0 +2013,10,22,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-8,0,2025,-16,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1632,8,0,1915,-4,0,0 +2013,7,5,5,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1930,-5,0,2137,-11,0,0 +2013,9,9,1,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,750,13,0,957,3,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,645,-1,0,915,-14,0,0 +2013,5,11,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,700,-3,0,937,-14,0,0 +2013,9,20,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1453,15,1,1539,14,0,0 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-5,0,1344,-18,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1342,-5,0,1610,-16,0,0 +2013,10,8,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,822,8,0,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1305,-2,0,1622,-5,0,0 +2013,8,6,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-7,0,1750,-21,0,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,16,1,1225,24,1,0 +2013,5,22,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1210,24,1,1255,19,1,0 +2013,4,13,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,235,-4,0,634,15,1,0 +2013,8,17,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,-1,0,1221,-19,0,0 +2013,4,22,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1510,41,1,1710,39,1,0 +2013,4,25,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,59,-7,0,600,-29,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,18,1,921,15,1,0 +2013,5,2,4,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1520,11,0,1830,12,0,0 +2013,8,23,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-9,0,802,-5,0,0 +2013,6,26,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,-3,0,1856,-10,0,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1118,3,0,1438,0,0,0 +2013,6,27,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1351,24,1,1630,19,1,0 +2013,6,15,6,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,720,0,0,750,-4,0,0 +2013,4,14,7,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1227,-6,0,1457,-10,0,0 +2013,10,27,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1912,-4,0,2247,-6,0,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,17,1,2105,7,0,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1120,4,0,1435,3,0,0 +2013,8,7,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1055,11,0,1708,29,1,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,0,0,1655,-3,0,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1805,15,1,2028,30,1,0 +2013,9,17,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,815,-3,0,945,-18,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1030,52,1,1345,78,1,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1255,-8,0,1550,-8,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,10,0,1030,-5,0,0 +2013,7,19,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,0,0,1532,1,0,0 +2013,4,7,7,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,20,1,1917,11,0,0 +2013,5,30,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1210,6,0,1330,-7,0,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2105,1,0,2300,9,0,0 +2013,7,24,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1605,-7,0,1740,-6,0,0 +2013,7,8,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,-6,0,2135,-14,0,0 +2013,9,28,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,-8,0,1810,-30,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,40,1,1820,25,1,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-11,0,1822,-1,0,0 +2013,6,21,5,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1735,9,0,1925,16,1,0 +2013,6,22,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1007,0,0,1320,-7,0,0 +2013,5,29,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2015,-4,0,2308,-30,0,0 +2013,6,14,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,0,,1345,0,1,1 +2013,6,24,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1103,24,1,1701,31,1,0 +2013,5,21,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1703,-12,0,1754,-23,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,-3,0,1050,-28,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1740,1,0,1957,1,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,1,0,1910,-36,0,0 +2013,5,2,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1505,-3,0,1554,-6,0,0 +2013,8,31,6,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1715,81,1,2025,71,1,0 +2013,4,26,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,4,0,1806,-4,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1535,9,0,1921,-3,0,0 +2013,8,31,6,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,30,1,1725,15,1,0 +2013,8,2,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1310,53,1,1435,49,1,0 +2013,8,4,7,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-3,0,1339,-6,0,0 +2013,6,16,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-7,0,1823,-27,0,0 +2013,7,17,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,41,1,2029,13,0,0 +2013,10,9,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1320,-6,0,1407,-16,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2035,56,1,2234,13,0,0 +2013,5,10,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-2,0,1237,11,0,0 +2013,7,24,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1130,66,1,1400,56,1,0 +2013,10,14,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,2014,76,1,2358,59,1,0 +2013,6,28,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1645,2,0,1750,-14,0,0 +2013,10,3,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,0,0,1350,-8,0,0 +2013,5,14,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1004,-14,0,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,620,-1,0,915,-12,0,0 +2013,8,5,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,16,1,1400,11,0,0 +2013,7,19,5,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-5,0,825,-13,0,0 +2013,4,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,-1,0,1150,-15,0,0 +2013,5,22,3,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1100,-3,0,1250,-15,0,0 +2013,9,25,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,-4,0,2129,-2,0,0 +2013,9,17,2,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1455,0,0,1744,41,1,0 +2013,5,4,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-5,0,1026,-36,0,0 +2013,7,17,3,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,16,1,1705,8,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,930,-2,0,1211,3,0,0 +2013,7,5,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-7,0,1017,-10,0,0 +2013,6,4,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-3,0,1215,-15,0,0 +2013,6,23,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,800,1,0,0 +2013,6,20,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-9,0,1026,-12,0,0 +2013,8,18,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-1,0,851,-6,0,0 +2013,7,3,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1909,3,0,2024,-18,0,0 +2013,8,19,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,1,0,1000,-2,0,0 +2013,5,6,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,-1,0,715,-8,0,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-2,0,845,-9,0,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1638,44,1,1811,31,1,0 +2013,8,9,5,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1930,82,1,2125,73,1,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,849,-3,0,1028,17,1,0 +2013,9,15,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1801,24,1,2052,18,1,0 +2013,5,29,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,-8,0,19,-21,0,0 +2013,6,26,3,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,20,1,1212,7,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,-1,0,1430,-13,0,0 +2013,9,12,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1054,-3,0,0 +2013,4,16,2,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1436,-6,0,1625,-11,0,0 +2013,10,25,5,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,28,1,2110,8,0,0 +2013,5,27,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2150,28,1,2305,21,1,0 +2013,10,6,7,9E,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1815,6,0,1946,-10,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1217,20,1,1248,11,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1529,-1,0,1620,-9,0,0 +2013,6,13,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,60,1,1344,68,1,0 +2013,4,22,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,655,15,1,805,14,0,0 +2013,8,5,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,1,0,800,-6,0,0 +2013,4,29,1,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,625,-1,0,925,-28,0,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1410,4,0,1505,-4,0,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1119,-3,0,1443,-18,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1915,15,1,15,8,0,0 +2013,6,22,6,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-2,0,1301,-12,0,0 +2013,6,29,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1305,9,0,1530,8,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,8,0,2159,-7,0,0 +2013,9,10,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1215,6,0,1415,-10,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1925,41,1,2030,26,1,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1610,-5,0,0 +2013,8,19,1,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-3,0,1955,-12,0,0 +2013,10,21,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1705,38,1,1940,23,1,0 +2013,6,5,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1600,27,1,1744,25,1,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,745,-8,0,1120,0,0,0 +2013,10,15,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-5,0,1401,-11,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1420,15,1,1600,14,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,13,0,1642,-7,0,0 +2013,9,16,1,AA,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,955,17,1,1715,14,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,920,-1,0,1110,-9,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1820,80,1,2025,79,1,0 +2013,10,30,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1042,29,1,1143,22,1,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1810,0,,2110,0,1,1 +2013,6,23,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1901,77,1,2139,66,1,0 +2013,9,29,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-6,0,558,-13,0,0 +2013,5,31,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,716,-6,0,931,-15,0,0 +2013,5,11,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-5,0,1654,-3,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,807,-26,0,0 +2013,5,14,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,610,2,0,620,-1,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1620,0,0,1843,-3,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-4,0,1834,12,0,0 +2013,5,26,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1146,-3,0,1707,-22,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1815,-1,0,1905,-5,0,0 +2013,7,8,1,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1212,15,1,1503,-3,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1840,-1,0,2004,-5,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2255,-3,0,5,-6,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-2,0,1319,15,1,0 +2013,5,22,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,809,-3,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1245,-6,0,1515,-17,0,0 +2013,6,19,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,20,1,1628,6,0,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1300,-4,0,1425,-2,0,0 +2013,10,11,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1055,68,1,1921,92,1,0 +2013,4,7,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-7,0,1410,-3,0,0 +2013,7,16,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1008,-9,0,1215,12,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1105,21,1,1218,24,1,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,955,1,0,1100,6,0,0 +2013,9,15,7,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,700,-5,0,846,-8,0,0 +2013,6,7,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,32,1,2102,15,1,0 +2013,9,26,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1215,-23,0,0 +2013,6,9,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,0,0,1935,-7,0,0 +2013,10,31,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,4,0,1759,19,1,0 +2013,8,18,7,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-4,0,1800,-11,0,0 +2013,10,10,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,16,1,2251,11,0,0 +2013,10,14,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,0,0,1246,-20,0,0 +2013,4,16,2,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-4,0,805,-20,0,0 +2013,4,1,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-6,0,836,-14,0,0 +2013,4,12,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,745,-1,0,1100,-24,0,0 +2013,7,19,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,611,-11,0,822,12,0,0 +2013,9,4,3,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,710,-6,0,855,-20,0,0 +2013,6,29,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,1,0,1814,-4,0,0 +2013,6,13,4,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,2105,258,1,2355,248,1,0 +2013,8,17,6,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,-1,0,741,14,0,0 +2013,7,31,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1445,56,1,1603,41,1,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1055,0,0,1115,-3,0,0 +2013,5,16,4,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,650,-5,0,810,16,1,0 +2013,6,4,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1019,-2,0,1200,2,0,0 +2013,5,21,2,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,15,1,1340,18,1,0 +2013,5,2,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-6,0,1922,-31,0,0 +2013,5,18,6,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,905,-1,0,1025,-7,0,0 +2013,6,4,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,22,1,744,17,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,-1,0,1110,-17,0,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1635,4,0,1725,16,1,0 +2013,6,6,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,9,0,1755,-4,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1859,-2,0,2010,-17,0,0 +2013,6,23,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,810,-5,0,909,13,0,0 +2013,5,13,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1130,-7,0,2010,10,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2035,-4,0,2225,-11,0,0 +2013,7,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,13,0,1155,3,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2205,0,0,616,-23,0,0 +2013,10,15,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,224,1,1246,238,1,0 +2013,5,25,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1700,24,1,1815,19,1,0 +2013,10,15,2,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,94,1,2011,83,1,0 +2013,4,1,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1745,11,0,1940,-21,0,0 +2013,5,30,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,-8,0,720,-2,0,0 +2013,7,30,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,-10,0,2250,-15,0,0 +2013,4,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,740,2,0,900,6,0,0 +2013,7,20,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-2,0,815,-7,0,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1255,1,0,1942,-20,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,-2,0,1605,1,0,0 +2013,5,27,1,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,20,1,1855,18,1,0 +2013,9,11,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1645,-6,0,2140,1,0,0 +2013,7,17,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-6,0,1107,-18,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,5,0,1606,1,0,0 +2013,9,15,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,19,1,1930,12,0,0 +2013,9,19,4,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,800,0,0,1040,-10,0,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-6,0,1207,-20,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,679,1,1947,673,1,0 +2013,4,20,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-4,0,1218,-3,0,0 +2013,5,31,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1105,-1,0,1636,-9,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,-3,0,1155,-9,0,0 +2013,4,8,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1325,-5,0,1505,-11,0,0 +2013,7,28,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,1,0,1554,2,0,0 +2013,8,17,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1013,-1,0,1303,-3,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,-5,0,1924,-16,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,31,1,1700,72,1,0 +2013,9,15,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,-4,0,1258,-5,0,0 +2013,10,22,2,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1720,10,0,2019,2,0,0 +2013,8,6,2,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,625,-6,0,706,-1,0,0 +2013,8,8,4,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-2,0,858,5,0,0 +2013,8,29,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,923,-6,0,1233,4,0,0 +2013,9,5,4,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,725,0,0,840,-15,0,0 +2013,5,6,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,737,-4,0,848,-14,0,0 +2013,7,12,5,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1907,83,1,2040,61,1,0 +2013,8,2,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,820,51,1,935,46,1,0 +2013,5,5,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1909,13,0,2154,-11,0,0 +2013,8,16,5,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,950,-3,0,1240,-6,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1025,-3,0,1214,-6,0,0 +2013,8,8,4,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1138,24,1,1228,19,1,0 +2013,8,7,3,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1825,16,1,2057,-2,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,0,0,1253,28,1,0 +2013,9,5,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-5,0,556,-7,0,0 +2013,5,21,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,830,-4,0,937,-12,0,0 +2013,8,19,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,3,0,2130,7,0,0 +2013,5,31,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,10,0,1310,6,0,0 +2013,9,20,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1230,-11,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1600,0,,1715,0,1,1 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-4,0,906,-9,0,0 +2013,8,11,7,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-8,0,1305,-2,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1312,-4,0,1659,-23,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,-5,0,1057,2,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1150,-4,0,1330,-12,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,638,46,1,853,79,1,0 +2013,7,18,4,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1407,-1,0,1613,-7,0,0 +2013,8,20,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-7,0,1242,-10,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,839,105,1,1058,116,1,0 +2013,4,1,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,3,0,1415,-11,0,0 +2013,9,27,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,20,1,1804,5,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2054,-4,0,2252,-11,0,0 +2013,9,11,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,-2,0,1853,49,1,0 +2013,8,20,2,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1254,6,0,1510,2,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1030,-4,0,1350,-12,0,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,17,1,1025,13,0,0 +2013,6,26,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,9,0,2055,1,0,0 +2013,6,8,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,515,-4,0,850,-11,0,0 +2013,6,24,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-3,0,718,0,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-5,0,2344,-3,0,0 +2013,6,3,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,-2,0,1543,2,0,0 +2013,7,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1900,135,1,2100,133,1,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,2150,-5,0,619,-10,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1455,41,1,1910,13,0,0 +2013,5,1,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,-1,0,1515,-8,0,0 +2013,9,23,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1306,43,1,1434,33,1,0 +2013,9,25,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,57,1,710,69,1,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1815,27,1,2017,21,1,0 +2013,5,22,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,-6,0,835,-1,0,0 +2013,6,15,6,B6,12954,Long Beach Airport,Long Beach,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1922,-4,0,2340,-28,0,0 +2013,4,29,1,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1834,-3,0,2039,-29,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,1530,-2,0,1707,-21,0,0 +2013,9,8,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1640,-3,0,1745,-12,0,0 +2013,10,7,1,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,621,-7,0,759,-21,0,0 +2013,7,26,5,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-9,0,1815,-17,0,0 +2013,8,9,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2002,-5,0,2346,-13,0,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1740,5,0,2030,-10,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1525,46,1,1650,52,1,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2020,-2,0,2235,12,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,745,-6,0,954,-14,0,0 +2013,7,8,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,0,0,1811,-8,0,0 +2013,10,8,2,OO,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1220,2,0,1414,18,1,0 +2013,4,5,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1800,0,0,2115,-1,0,0 +2013,7,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1620,7,0,1905,3,0,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-6,0,900,-22,0,0 +2013,8,23,5,9E,14122,Pittsburgh International,Pittsburgh,PA,13244,Memphis International,Memphis,TN,1155,-7,0,1300,-17,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2200,-1,0,2328,-22,0,0 +2013,5,8,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,0,0,1118,-13,0,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,123,1,2220,106,1,0 +2013,8,31,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,-13,0,1703,-9,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,-2,0,14,5,0,0 +2013,7,18,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,40,4,0,651,13,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,751,4,0,955,-15,0,0 +2013,6,3,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,7,0,2210,3,0,0 +2013,7,12,5,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-8,0,900,-46,0,0 +2013,6,8,6,EV,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,2101,-11,0,0 +2013,7,16,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,36,1,1727,49,1,0 +2013,10,9,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,-9,0,1340,-20,0,0 +2013,9,10,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-15,0,2220,-2,0,0 +2013,7,26,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,16,1,1925,3,0,0 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1420,0,0,1753,41,1,0 +2013,10,10,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,850,-14,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,5,0,1440,-12,0,0 +2013,8,16,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2029,59,1,2247,61,1,0 +2013,10,25,5,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1005,2,0,1505,-13,0,0 +2013,8,13,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1415,0,0,1550,-7,0,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1800,30,1,1920,31,1,0 +2013,9,30,1,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1600,-3,0,1843,-1,0,0 +2013,4,20,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-1,0,1820,3,0,0 +2013,4,12,5,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1850,159,1,2136,180,1,0 +2013,10,3,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,700,14,0,755,0,0,0 +2013,5,22,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,-4,0,2023,-11,0,0 +2013,6,3,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,19,1,1126,11,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1730,-2,0,1948,-20,0,0 +2013,8,23,5,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1635,-2,0,1847,5,0,0 +2013,5,18,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-8,0,1856,-9,0,0 +2013,10,7,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,900,-2,0,1150,-10,0,0 +2013,9,16,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-6,0,1115,-21,0,0 +2013,5,3,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-4,0,1205,-27,0,0 +2013,6,11,2,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1959,-7,0,2234,-19,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1643,0,,2129,0,1,1 +2013,6,21,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1925,-2,0,2235,-20,0,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,18,1,1730,8,0,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1301,0,0,1400,-6,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,-1,0,1454,5,0,0 +2013,7,21,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1735,-4,0,1902,26,1,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2014,1,0,2153,-15,0,0 +2013,5,29,3,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-1,0,1200,21,1,0 +2013,9,27,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1026,-16,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1115,11,0,1225,20,1,0 +2013,6,22,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1935,13,0,2130,1,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,6,0,1050,-11,0,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1055,0,0,1200,-5,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1055,-4,0,1220,-21,0,0 +2013,4,5,5,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1925,-3,0,2241,-15,0,0 +2013,10,31,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1020,-1,0,1243,6,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1904,13,0,1958,7,0,0 +2013,5,15,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,8,0,2325,7,0,0 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,715,-2,0,915,-14,0,0 +2013,7,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,838,-3,0,1105,2,0,0 +2013,6,10,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,740,40,1,935,10,0,0 +2013,7,5,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-4,0,1523,1,0,0 +2013,8,17,6,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1310,1,0,1520,-8,0,0 +2013,4,13,6,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1720,4,0,1915,0,0,0 +2013,5,14,2,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,1931,47,1,2216,40,1,0 +2013,10,20,7,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-5,0,1115,-16,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2100,168,1,2329,165,1,0 +2013,6,9,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,149,1,1200,131,1,0 +2013,4,30,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-3,0,1840,-20,0,0 +2013,9,7,6,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2035,-12,0,2255,-10,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,2,0,1906,4,0,0 +2013,6,14,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,50,1,1051,44,1,0 +2013,8,26,1,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,5,0,1030,-1,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2235,10,0,2355,9,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,7,0,1336,-6,0,0 +2013,9,1,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1330,-1,0,1445,-6,0,0 +2013,8,11,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1015,-2,0,1353,-9,0,0 +2013,8,19,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1555,-4,0,24,-16,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1815,18,1,1910,9,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1258,3,0,1703,-5,0,0 +2013,6,15,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1443,-2,0,1644,17,1,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,835,2,0,1100,-5,0,0 +2013,4,4,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1519,-7,0,2026,-15,0,0 +2013,5,3,5,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,-11,0,1005,-18,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,6,0,2235,-28,0,0 +2013,4,9,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,650,-7,0,815,5,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,0,0,925,-7,0,0 +2013,7,29,1,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,80,1,1705,81,1,0 +2013,9,3,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-2,0,1019,-20,0,0 +2013,9,16,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1326,-9,0,1617,12,0,0 +2013,10,12,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12339,Indianapolis International,Indianapolis,IN,1707,-1,0,2216,-3,0,0 +2013,9,11,3,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1606,-3,0,1624,-1,0,0 +2013,10,3,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1910,3,0,2149,-13,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,-1,0,2327,-3,0,0 +2013,10,13,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,720,2,0,857,-4,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1935,18,1,2120,22,1,0 +2013,5,8,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1840,-3,0,1930,-11,0,0 +2013,7,8,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-6,0,1540,-39,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1915,13,0,2253,32,1,0 +2013,7,18,4,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1647,-1,0,1800,2,0,0 +2013,8,21,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2200,11,0,2336,9,0,0 +2013,9,9,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,715,-4,0,832,4,0,0 +2013,9,18,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2025,-3,0,2110,-10,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-2,0,858,-19,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,10423,Austin - Bergstrom International,Austin,TX,1754,-2,0,2042,-6,0,0 +2013,8,28,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,742,61,1,928,100,1,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,27,1,1345,25,1,0 +2013,7,9,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-4,0,2140,1,0,0 +2013,9,21,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,735,-12,0,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1038,0,0,1247,2,0,0 +2013,10,30,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-8,0,1936,14,0,0 +2013,5,30,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,915,-6,0,1058,-22,0,0 +2013,6,3,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,710,-4,0,1000,-32,0,0 +2013,4,25,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2050,-4,0,2159,-5,0,0 +2013,4,10,3,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1551,1,0,1750,-14,0,0 +2013,7,24,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,825,-4,0,1420,-25,0,0 +2013,7,16,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-4,0,1839,-11,0,0 +2013,7,31,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,5,0,2111,27,1,0 +2013,6,7,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-2,0,1447,0,0,0 +2013,8,10,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,635,3,0,835,-10,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-3,0,1328,-32,0,0 +2013,9,5,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2018,-5,0,2135,11,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1315,6,0,1730,-2,0,0 +2013,6,7,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1708,-1,0,2120,-24,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2045,-2,0,2235,0,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,29,1,1443,32,1,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,830,9,0,945,5,0,0 +2013,10,19,6,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,10,0,1525,3,0,0 +2013,10,6,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-4,0,1604,-12,0,0 +2013,9,29,7,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,19,1,835,12,0,0 +2013,6,25,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,-6,0,1740,-19,0,0 +2013,5,3,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,613,-4,0,935,-37,0,0 +2013,6,12,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1840,0,,1915,0,1,1 +2013,6,14,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,57,1,1221,44,1,0 +2013,6,18,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,68,1,1100,66,1,0 +2013,7,9,2,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,715,-1,0,840,-13,0,0 +2013,4,13,6,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-8,0,1935,-20,0,0 +2013,4,3,3,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,735,2,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1520,34,1,1620,29,1,0 +2013,4,29,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-7,0,1224,-55,0,0 +2013,7,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1707,143,1,1830,183,1,0 +2013,8,4,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1624,-6,0,1824,10,0,0 +2013,10,30,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1845,57,1,1935,55,1,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,955,-3,0,1213,-25,0,0 +2013,6,16,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,1247,-12,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,828,-2,0,0 +2013,4,11,4,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1234,6,0,1500,-8,0,0 +2013,4,14,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1910,17,1,2035,13,0,0 +2013,9,15,7,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,5,0,2105,-17,0,0 +2013,6,1,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-4,0,1000,0,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,600,-3,0,814,-10,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1745,229,1,1850,231,1,0 +2013,4,12,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,-6,0,2115,0,0,0 +2013,9,2,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-10,0,1755,-2,0,0 +2013,9,4,3,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1150,-4,0,1245,-17,0,0 +2013,6,5,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,941,1,0,1043,-6,0,0 +2013,8,16,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,6,0,1425,-3,0,0 +2013,6,30,7,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1300,-1,0,1420,5,0,0 +2013,6,20,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,1,0,1959,-4,0,0 +2013,4,29,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-4,0,1301,-7,0,0 +2013,5,20,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1125,0,0,1225,-6,0,0 +2013,7,9,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,17,1,1525,3,0,0 +2013,9,30,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1650,-6,0,1855,-3,0,0 +2013,9,23,1,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1809,39,1,2109,29,1,0 +2013,4,15,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,-4,0,2045,-15,0,0 +2013,4,4,4,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1730,-3,0,1854,-37,0,0 +2013,10,13,7,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-7,0,2047,-11,0,0 +2013,5,24,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,19,1,1709,5,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,0,,1019,0,1,1 +2013,9,22,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1500,74,1,1615,74,1,0 +2013,6,25,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,26,1,930,27,1,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,-3,0,1420,-9,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,954,-5,0,1003,-1,0,0 +2013,6,10,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,214,1,2355,193,1,0 +2013,9,27,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1010,2,0,1210,1,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1735,-1,0,1935,-3,0,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,2,0,930,-2,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,17,1,820,8,0,0 +2013,6,4,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1708,-1,0,1751,-7,0,0 +2013,9,11,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2126,-3,0,2236,-10,0,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-4,0,926,-4,0,0 +2013,7,22,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1120,-6,0,0 +2013,7,24,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1130,-9,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,844,-2,0,1031,-17,0,0 +2013,5,21,2,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1640,-1,0,1920,-11,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,1,0,730,3,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,820,0,0,1055,19,1,0 +2013,7,24,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1958,-3,0,2125,31,1,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,69,1,1710,0,1,1 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,745,36,1,1320,25,1,0 +2013,8,22,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,-2,0,1242,12,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,-1,0,1915,-1,0,0 +2013,10,22,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,-5,0,2326,2,0,0 +2013,6,2,7,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1230,-1,0,1535,4,0,0 +2013,4,8,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2336,9,0,515,-11,0,0 +2013,4,3,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2155,-3,0,2250,-18,0,0 +2013,5,17,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,37,1,1749,46,1,0 +2013,5,20,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1700,0,0,2044,-39,0,0 +2013,9,29,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1815,-7,0,1849,-8,0,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1525,20,1,1655,9,0,0 +2013,5,21,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,924,5,0,1219,65,1,0 +2013,8,17,6,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,0,0,1925,-11,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1320,47,1,1800,28,1,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1120,10,0,1530,-5,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1940,12,0,2320,-1,0,0 +2013,7,19,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,23,1,2345,24,1,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1105,2,0,1325,0,0,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,0,,2348,0,1,1 +2013,4,4,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2315,-5,0,709,-19,0,0 +2013,8,17,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1825,-4,0,1930,-10,0,0 +2013,4,23,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,0,0,1040,-9,0,0 +2013,8,16,5,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1914,2,0,2105,-3,0,0 +2013,4,2,2,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1835,-3,0,1951,-5,0,0 +2013,5,22,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,630,10,0,815,-7,0,0 +2013,4,28,7,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1230,13,0,1640,-13,0,0 +2013,4,18,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1630,60,1,1756,58,1,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1355,17,1,1655,6,0,0 +2013,9,3,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,655,6,0,805,-3,0,0 +2013,9,8,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1447,-7,0,1634,-14,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1240,21,1,1815,13,0,0 +2013,7,28,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1319,-12,0,1500,-4,0,0 +2013,10,12,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1015,68,1,1128,56,1,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,4,0,1955,-10,0,0 +2013,5,27,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,956,-21,0,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2045,41,1,2215,28,1,0 +2013,9,13,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,8,0,1918,10,0,0 +2013,6,28,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,4,0,1720,9,0,0 +2013,5,30,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,705,0,0,830,1,0,0 +2013,8,7,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-4,0,2300,-5,0,0 +2013,5,20,1,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1955,-10,0,2157,-7,0,0 +2013,10,2,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1845,-4,0,2014,-3,0,0 +2013,6,13,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,12,0,2055,11,0,0 +2013,7,21,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1750,-10,0,1910,-19,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,701,8,0,1541,29,1,0 +2013,6,21,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1120,1,0,1953,5,0,0 +2013,4,4,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-5,0,1010,1,0,0 +2013,9,9,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1515,-1,0,2040,-1,0,0 +2013,8,20,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1355,-2,0,1639,-22,0,0 +2013,5,20,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-4,0,1140,0,0,0 +2013,7,19,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,-4,0,1251,-5,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1428,202,1,1840,232,1,0 +2013,10,11,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1800,-5,0,1901,-9,0,0 +2013,8,10,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1024,9,0,1303,-11,0,0 +2013,8,1,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,630,-3,0,920,-8,0,0 +2013,5,19,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1910,2,0,55,9,0,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1355,-8,0,1840,-7,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-3,0,1900,-9,0,0 +2013,6,27,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,0,0,1946,-10,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,-3,0,825,-15,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-4,0,912,-16,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,-4,0,1715,4,0,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2133,-1,0,23,1,0,0 +2013,10,1,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1516,9,0,1641,-1,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,925,7,0,1140,-8,0,0 +2013,8,20,2,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,631,0,0,808,-4,0,0 +2013,8,7,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,3,0,1200,1,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2155,-3,0,10,-22,0,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,-2,0,1315,0,0,0 +2013,5,31,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,759,0,0,1109,-17,0,0 +2013,9,18,3,OO,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1110,-2,0,1255,-6,0,0 +2013,9,29,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,-7,0,2131,-8,0,0 +2013,8,8,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,-3,0,1030,23,1,0 +2013,7,28,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2105,-15,0,2321,-22,0,0 +2013,8,1,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1120,3,0,1145,4,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,1,0,1850,-1,0,0 +2013,10,3,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,25,1,1336,23,1,0 +2013,9,28,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1410,-3,0,1710,11,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1252,39,1,1752,28,1,0 +2013,9,29,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1620,-7,0,1730,-22,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1317,57,1,1624,44,1,0 +2013,10,15,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,910,-14,0,0 +2013,6,19,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1816,-8,0,2159,-14,0,0 +2013,7,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,-1,0,940,-10,0,0 +2013,5,24,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1836,11,0,2015,34,1,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1800,5,0,2020,-6,0,0 +2013,4,5,5,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1245,9,0,1403,8,0,0 +2013,5,26,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,-2,0,1135,-7,0,0 +2013,5,12,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,910,-2,0,1040,-11,0,0 +2013,4,12,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1359,51,1,1605,73,1,0 +2013,4,22,1,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1210,9,0,1808,47,1,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,929,-6,0,1219,-25,0,0 +2013,7,1,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,15,1,2025,12,0,0 +2013,10,28,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-7,0,2145,-17,0,0 +2013,10,18,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1041,0,0,1401,2,0,0 +2013,9,3,2,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1936,7,0,2207,3,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1510,-5,0,1637,1,0,0 +2013,7,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,610,6,0,655,-2,0,0 +2013,9,27,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2040,18,1,2205,14,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1640,3,0,1745,2,0,0 +2013,10,18,5,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1128,-1,0,1403,6,0,0 +2013,10,14,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,42,1,1946,32,1,0 +2013,4,21,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,-4,0,2127,0,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1356,-1,0,1609,-27,0,0 +2013,7,31,3,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-7,0,1916,-21,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1355,397,1,1735,391,1,0 +2013,4,5,5,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,600,2,0,1155,-3,0,0 +2013,5,10,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,958,-10,0,1309,-20,0,0 +2013,8,10,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1525,50,1,1747,45,1,0 +2013,5,1,3,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,950,25,1,1050,35,1,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,600,-4,0,720,-20,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,955,-4,0,1200,-8,0,0 +2013,6,7,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1450,247,1,1757,275,1,0 +2013,8,14,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,69,1,2210,74,1,0 +2013,5,31,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1040,0,0,1340,-4,0,0 +2013,9,25,3,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1410,-2,0,2235,-7,0,0 +2013,5,16,4,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1336,16,1,1935,23,1,0 +2013,8,1,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,910,-3,0,1025,-8,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2025,54,1,2235,43,1,0 +2013,8,28,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,2,0,1035,-7,0,0 +2013,7,19,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,2000,49,1,2315,58,1,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,600,-3,0,1119,-16,0,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,830,0,0,1059,-14,0,0 +2013,10,26,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1555,-3,0,1844,-1,0,0 +2013,6,28,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-1,0,925,4,0,0 +2013,9,23,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1650,-3,0,1922,-8,0,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,855,-11,0,1038,-14,0,0 +2013,9,11,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,214,1,2049,214,1,0 +2013,9,6,5,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1315,-2,0,1645,-5,0,0 +2013,7,5,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1320,1,0,1520,-18,0,0 +2013,10,24,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,0,0,1129,-9,0,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-6,0,949,-20,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1635,0,0,1815,-8,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,-4,0,1102,-13,0,0 +2013,9,15,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,12,0,1916,2,0,0 +2013,4,4,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1430,-4,0,1720,-1,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,19,1,1936,6,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,-2,0,1933,-12,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1610,-5,0,1631,-2,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1420,0,0,1645,13,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,2120,2,0,2320,-7,0,0 +2013,4,1,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,941,-4,0,1124,-6,0,0 +2013,6,13,4,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,530,5,0,937,-17,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1716,-7,0,2137,-1,0,0 +2013,7,9,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,37,1,1810,20,1,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,53,1,1409,63,1,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2155,0,0,15,3,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,-6,0,2341,-19,0,0 +2013,7,17,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1200,-7,0,1426,-11,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,-6,0,1430,-9,0,0 +2013,6,4,2,FL,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1430,-5,0,1718,-17,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1535,-2,0,1740,-16,0,0 +2013,4,15,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-5,0,2125,-17,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,103,1,20,105,1,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2055,15,1,2355,6,0,0 +2013,7,4,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-9,0,1458,-12,0,0 +2013,9,13,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,-3,0,1705,-6,0,0 +2013,6,22,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1305,-4,0,1429,-2,0,0 +2013,7,1,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2205,10,0,2323,4,0,0 +2013,9,8,7,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,820,-6,0,1205,-20,0,0 +2013,6,30,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1959,78,1,2120,77,1,0 +2013,5,20,1,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,2,0,1715,9,0,0 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1658,-4,0,2018,-13,0,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-3,0,1643,25,1,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,88,1,2055,93,1,0 +2013,10,10,4,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,730,-5,0,1009,7,0,0 +2013,9,6,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-6,0,1315,-12,0,0 +2013,8,2,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,-6,0,1735,-12,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1205,9,0,1650,-4,0,0 +2013,9,12,4,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1045,0,,1442,0,1,1 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,47,1,801,37,1,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,102,1,2237,90,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1959,1,0,2136,-8,0,0 +2013,5,8,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,-1,0,1357,-20,0,0 +2013,6,22,6,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1850,0,0,2115,-16,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,-1,0,1314,-11,0,0 +2013,8,12,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-7,0,1135,-28,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2045,9,0,2145,11,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,844,46,1,959,28,1,0 +2013,7,17,3,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2333,-8,0,501,-1,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,18,1,1350,1,0,0 +2013,4,16,2,B6,14635,Southwest Florida International,Fort Myers,FL,10792,Buffalo Niagara International,Buffalo,NY,2040,32,1,2327,27,1,0 +2013,9,1,7,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,955,-2,0,1524,-5,0,0 +2013,7,1,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1205,10,0,1355,24,1,0 +2013,5,1,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1149,-4,0,1310,-15,0,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1205,2,0,1310,-5,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,78,1,28,70,1,0 +2013,9,20,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1650,31,1,1755,43,1,0 +2013,8,3,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,1,0,2118,9,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,-3,0,2223,2,0,0 +2013,8,29,4,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,620,-3,0,850,-19,0,0 +2013,4,3,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-6,0,627,-16,0,0 +2013,4,5,5,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1015,21,1,1445,1,0,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1320,56,1,1425,64,1,0 +2013,6,4,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1335,-12,0,1435,-30,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1757,-3,0,2018,6,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,615,-5,0,1010,-18,0,0 +2013,5,24,5,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1309,-5,0,1427,-4,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1955,4,0,2115,-7,0,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1759,-6,0,1914,-26,0,0 +2013,8,9,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,39,1,1545,40,1,0 +2013,4,30,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,-4,0,1355,-5,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,18,1,2230,20,1,0 +2013,7,8,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,83,1,2046,80,1,0 +2013,10,9,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1835,-5,0,2008,16,1,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,545,0,0,1110,-2,0,0 +2013,5,22,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,711,-5,0,900,-3,0,0 +2013,4,12,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1100,0,0,1923,9,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,5,0,855,-10,0,0 +2013,9,16,1,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,905,-2,0,1155,-16,0,0 +2013,8,1,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,905,-3,0,1015,-12,0,0 +2013,6,11,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14679,San Diego International,San Diego,CA,1615,-3,0,1725,-1,0,0 +2013,9,20,5,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,925,0,0,1110,-13,0,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2155,2,0,2300,-7,0,0 +2013,9,16,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,3,0,1015,-3,0,0 +2013,9,30,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,929,-11,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,-5,0,2300,3,0,0 +2013,5,30,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,-4,0,2025,-1,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1550,12,0,1655,2,0,0 +2013,9,15,7,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-7,0,1608,-16,0,0 +2013,6,21,5,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,955,5,0,1130,0,0,0 +2013,4,26,5,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,840,3,0,1010,-1,0,0 +2013,6,10,1,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,930,-6,0,1800,-16,0,0 +2013,10,22,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,-9,0,1733,-6,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1945,1,0,2055,1,0,0 +2013,6,19,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,89,1,837,83,1,0 +2013,6,29,6,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2115,-1,0,2332,58,1,0 +2013,7,5,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2000,4,0,2115,13,0,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,22,1,1315,22,1,0 +2013,7,20,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1350,-5,0,1403,-9,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1050,3,0,1555,7,0,0 +2013,10,10,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,853,-8,0,1005,-7,0,0 +2013,8,23,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1055,37,1,1220,29,1,0 +2013,4,20,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,702,-3,0,1025,-24,0,0 +2013,5,31,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1105,1,0,1229,-4,0,0 +2013,6,19,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,0,0,1239,6,0,0 +2013,8,3,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,-7,0,1255,-7,0,0 +2013,10,4,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1310,13,0,2139,-12,0,0 +2013,7,7,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-8,0,800,-14,0,0 +2013,5,10,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,630,-1,0,810,-14,0,0 +2013,6,25,2,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,1,0,1020,12,0,0 +2013,9,30,1,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,915,-4,0,1150,3,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1445,0,0,1720,-5,0,0 +2013,6,4,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1228,17,1,1404,15,1,0 +2013,6,13,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,10,0,1322,10,0,0 +2013,6,19,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,11,0,1810,0,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,915,62,1,1130,37,1,0 +2013,10,1,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,-11,0,2153,-23,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,512,14,0,758,-7,0,0 +2013,9,23,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,61,1,50,56,1,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1205,0,0,1325,-1,0,0 +2013,5,13,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,-8,0,2129,-29,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,7,0,2215,11,0,0 +2013,9,21,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1250,-12,0,0 +2013,10,25,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1429,41,1,1523,55,1,0 +2013,7,23,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,-9,0,1800,-27,0,0 +2013,8,23,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1957,-2,0,2126,-8,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1222,-3,0,1410,-10,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1135,2,0,1700,-10,0,0 +2013,4,21,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2110,-4,0,104,-11,0,0 +2013,6,30,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-1,0,1420,1,0,0 +2013,4,19,5,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1635,37,1,1759,18,1,0 +2013,10,28,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1520,3,0,1930,5,0,0 +2013,10,17,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1150,-5,0,1205,-11,0,0 +2013,8,7,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,44,1,1810,50,1,0 +2013,8,2,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,3,0,1645,-3,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1820,25,1,1920,19,1,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,842,18,1,1130,28,1,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,731,-4,0,903,-8,0,0 +2013,6,19,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-5,0,1425,-3,0,0 +2013,5,21,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1322,4,0,1537,15,1,0 +2013,8,29,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1825,-6,0,2042,-1,0,0 +2013,8,25,7,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1002,-6,0,1225,3,0,0 +2013,4,22,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1442,38,1,1809,41,1,0 +2013,4,3,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-7,0,1550,0,0,0 +2013,8,14,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,-3,0,14,13,0,0 +2013,9,6,5,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,600,-3,0,740,-31,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1500,-6,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,18,1,1635,21,1,0 +2013,8,6,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-6,0,1335,-24,0,0 +2013,5,31,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1127,-3,0,0 +2013,6,23,7,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,4,0,2215,-5,0,0 +2013,10,25,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,19,1,1511,25,1,0 +2013,10,19,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1250,-5,0,1400,-18,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,745,0,0,958,-18,0,0 +2013,9,25,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-4,0,1120,-13,0,0 +2013,5,17,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1340,3,0,1600,0,0,0 +2013,4,16,2,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,800,-2,0,1110,-1,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1615,-5,0,1655,-20,0,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,0,0,1915,17,1,0 +2013,4,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1340,7,0,1455,-2,0,0 +2013,7,26,5,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1437,-5,0,1829,-30,0,0 +2013,6,27,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,652,-3,0,748,21,1,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,-7,0,2135,-13,0,0 +2013,10,5,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1840,-4,0,2129,-10,0,0 +2013,9,30,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,-2,0,2043,-39,0,0 +2013,6,13,4,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,11,0,1620,-10,0,0 +2013,5,8,3,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,-2,0,2350,1,0,0 +2013,9,24,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,810,-9,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,17,1,1158,5,0,0 +2013,6,19,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1336,-5,0,1443,-14,0,0 +2013,9,9,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1229,-4,0,1347,-3,0,0 +2013,8,27,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,14,0,228,3,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1915,5,0,2115,-12,0,0 +2013,4,26,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,-1,0,1225,-15,0,0 +2013,7,29,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-2,0,1806,-9,0,0 +2013,5,24,5,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1221,73,1,1547,74,1,0 +2013,10,9,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2055,14,0,2220,-5,0,0 +2013,7,13,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1910,149,1,2125,144,1,0 +2013,8,30,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1815,-2,0,1915,-9,0,0 +2013,6,26,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,815,60,1,935,76,1,0 +2013,9,17,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1855,-8,0,1950,-16,0,0 +2013,5,12,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1150,-4,0,1318,5,0,0 +2013,5,16,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-1,0,1938,-9,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,37,1,1610,22,1,0 +2013,8,2,5,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,5,0,1632,-12,0,0 +2013,7,5,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1308,44,1,1435,36,1,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2115,1,0,25,-12,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,947,-2,0,1349,-9,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,1,0,1435,1,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2005,85,1,2235,49,1,0 +2013,8,10,6,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-1,0,1648,0,0,0 +2013,8,3,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1000,-4,0,1131,21,1,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1510,35,1,1643,14,0,0 +2013,6,30,7,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,754,-3,0,1309,1,0,0 +2013,4,29,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,-1,0,740,-10,0,0 +2013,4,26,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-11,0,1751,-9,0,0 +2013,6,3,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-7,0,903,14,0,0 +2013,6,4,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2035,-2,0,2145,-6,0,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1110,0,0,1229,-1,0,0 +2013,6,14,5,9E,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-5,0,1123,-7,0,0 +2013,5,14,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-8,0,1800,-6,0,0 +2013,10,11,5,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-5,0,1917,-18,0,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1001,-4,0,1541,-19,0,0 +2013,6,27,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-8,0,1022,-14,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1725,0,0,1845,-7,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,934,-4,0,1213,-18,0,0 +2013,9,19,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,917,-8,0,1044,-8,0,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,-6,0,1754,-22,0,0 +2013,5,1,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1436,165,1,1654,167,1,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,-5,0,1104,-8,0,0 +2013,5,7,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,816,-5,0,937,-8,0,0 +2013,8,1,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,39,1,1345,37,1,0 +2013,4,10,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,0,0,1949,1,0,0 +2013,8,6,2,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-4,0,912,-27,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,25,1,2255,27,1,0 +2013,4,25,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1327,32,1,1625,41,1,0 +2013,9,16,1,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,-3,0,2104,-31,0,0 +2013,9,7,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1405,-7,0,1559,-8,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,942,-7,0,1752,-2,0,0 +2013,5,29,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,0,0,1825,-19,0,0 +2013,8,26,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,0,0,1255,0,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1030,-3,0,1250,-30,0,0 +2013,5,7,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-4,0,945,-38,0,0 +2013,4,11,4,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1835,-5,0,2057,1,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,824,1,0,1055,13,0,0 +2013,8,20,2,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,23,1,1531,15,1,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,959,-1,0,1238,-14,0,0 +2013,9,18,3,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,0,0,1346,-12,0,0 +2013,6,29,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1150,41,1,1320,47,1,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,11,0,2034,17,1,0 +2013,4,30,2,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1020,-8,0,1835,-20,0,0 +2013,5,30,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,600,-2,0,655,-1,0,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,3,0,2340,19,1,0 +2013,5,10,5,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1655,73,1,1920,73,1,0 +2013,7,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2015,9,0,2116,-1,0,0 +2013,8,6,2,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1015,-3,0,1314,-17,0,0 +2013,5,20,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1950,11,0,2055,0,0,0 +2013,9,10,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1207,8,0,1457,9,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1639,-1,0,1817,-3,0,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1230,4,0,1715,-19,0,0 +2013,5,19,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,24,1,1319,13,0,0 +2013,6,21,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,930,-6,0,0 +2013,10,24,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,627,-5,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1522,12,0,1725,-1,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-1,0,1417,-12,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,18,1,1238,4,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1725,-8,0,1907,-20,0,0 +2013,7,1,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,-6,0,2356,2,0,0 +2013,8,13,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1110,42,1,1413,48,1,0 +2013,6,23,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-6,0,1408,-15,0,0 +2013,4,7,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1525,2,0,1730,-15,0,0 +2013,7,12,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-2,0,1804,5,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2020,8,0,2325,2,0,0 +2013,10,22,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1809,-9,0,2008,-16,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2036,6,0,2358,10,0,0 +2013,4,28,7,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2140,-4,0,545,-7,0,0 +2013,4,2,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1337,-2,0,1412,4,0,0 +2013,8,8,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,610,-6,0,805,11,0,0 +2013,6,2,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2115,1,0,522,-19,0,0 +2013,8,21,3,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1028,-5,0,1602,-6,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,9,0,1944,5,0,0 +2013,6,20,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-3,0,1524,-12,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1403,-3,0,1637,-20,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-7,0,840,-6,0,0 +2013,7,20,6,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,711,-4,0,1435,8,0,0 +2013,10,13,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1857,-7,0,2024,-9,0,0 +2013,10,22,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1540,-4,0,1729,-28,0,0 +2013,5,6,1,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1600,0,0,2000,30,1,0 +2013,4,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1120,4,0,1235,13,0,0 +2013,10,23,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1545,1,0,1605,-6,0,0 +2013,7,15,1,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,833,-4,0,0 +2013,6,18,2,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,655,-10,0,1010,-6,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,645,-1,0,755,-15,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1939,-4,0,2122,-17,0,0 +2013,8,20,2,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,955,-5,0,1445,-15,0,0 +2013,7,24,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,14,0,1940,28,1,0 +2013,7,6,6,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,2010,0,0,2219,-13,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,15,1,2357,9,0,0 +2013,10,9,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1119,-6,0,1350,-18,0,0 +2013,8,29,4,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1120,-5,0,1320,-8,0,0 +2013,8,26,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,5,0,1710,-15,0,0 +2013,7,19,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,-5,0,858,-16,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1220,-4,0,1415,6,0,0 +2013,7,7,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,8,0,1633,5,0,0 +2013,10,3,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1430,7,0,1535,-2,0,0 +2013,10,25,5,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,0,0,1905,-9,0,0 +2013,8,22,4,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1015,0,0,1227,-7,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,900,0,0,1600,0,0,0 +2013,4,21,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1350,-5,0,1532,-6,0,0 +2013,4,20,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,4,0,1445,-20,0,0 +2013,7,6,6,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1745,-2,0,1800,-7,0,0 +2013,4,1,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,0,0,2005,3,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-2,0,1325,0,0,0 +2013,7,21,7,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-5,0,1122,7,0,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1636,62,1,1805,64,1,0 +2013,8,29,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1951,11,0,2316,18,1,0 +2013,5,21,2,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,252,1,2015,264,1,0 +2013,7,22,1,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1650,14,0,1845,-6,0,0 +2013,10,26,6,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,-7,0,2055,9,0,0 +2013,9,18,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2002,43,1,2152,30,1,0 +2013,5,8,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1909,107,1,2154,103,1,0 +2013,8,17,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,90,1,1408,117,1,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,0,,2345,0,1,1 +2013,9,13,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,8,0,2140,-3,0,0 +2013,6,11,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-8,0,717,-9,0,0 +2013,4,6,6,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1135,-4,0,1505,1,0,0 +2013,7,10,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1025,13,0,1158,8,0,0 +2013,10,31,4,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,51,1,1915,33,1,0 +2013,9,2,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2140,75,1,2358,60,1,0 +2013,6,28,5,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,215,1,2115,232,1,0 +2013,9,15,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,920,-11,0,1049,-11,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1056,-1,0,1255,-11,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,1,0,1615,-3,0,0 +2013,6,27,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2207,7,0,2351,-1,0,0 +2013,7,16,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1720,146,1,2320,152,1,0 +2013,8,19,1,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1655,1,0,1735,-5,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2055,20,1,2205,24,1,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2125,-4,0,552,-19,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,925,1,0,1155,-7,0,0 +2013,10,11,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,37,1,1939,29,1,0 +2013,7,21,7,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,1105,50,1,1330,44,1,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1255,23,1,1750,26,1,0 +2013,5,14,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1715,41,1,1931,35,1,0 +2013,4,23,2,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1545,45,1,1952,37,1,0 +2013,8,6,2,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,-5,0,2305,-13,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,730,-1,0,850,1,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,2005,-3,0,2347,-27,0,0 +2013,4,20,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1400,-5,0,1542,-17,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1855,3,0,2245,-10,0,0 +2013,9,29,7,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,-8,0,1736,-9,0,0 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,2125,-4,0,5,-13,0,0 +2013,5,24,5,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1834,0,0,2036,-6,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,-4,0,1320,-3,0,0 +2013,10,7,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1221,4,0,1519,12,0,0 +2013,10,15,2,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1758,66,1,2000,87,1,0 +2013,6,22,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,12266,George Bush Intercontinental/Houston,Houston,TX,2041,5,0,632,-17,0,0 +2013,8,20,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1029,12,0,1154,9,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,810,5,0,1013,16,1,0 +2013,4,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,1,0,1806,-2,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-7,0,1107,1,0,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,837,0,0,1028,-22,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,729,3,0,845,7,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1535,7,0,1815,-2,0,0 +2013,4,9,2,FL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,1,0,2025,-2,0,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2255,0,0,510,-8,0,0 +2013,9,16,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1500,-4,0,1724,-4,0,0 +2013,4,15,1,UA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,540,8,0,752,6,0,0 +2013,10,21,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-7,0,1407,-12,0,0 +2013,10,23,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1018,-4,0,1309,-7,0,0 +2013,10,15,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1749,-2,0,2014,3,0,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,0,0,1930,1,0,0 +2013,7,12,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-10,0,1250,-3,0,0 +2013,7,25,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,1,0,1855,-18,0,0 +2013,6,12,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,633,-4,0,1502,-9,0,0 +2013,4,13,6,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2200,-3,0,616,14,0,0 +2013,8,17,6,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,940,-4,0,1740,-13,0,0 +2013,9,15,7,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-5,0,2014,-2,0,0 +2013,6,25,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1326,121,1,2130,153,1,0 +2013,10,11,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1730,60,1,1946,65,1,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,1,0,1145,2,0,0 +2013,9,11,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,-8,0,1552,-10,0,0 +2013,10,15,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1001,-4,0,1323,-1,0,0 +2013,9,25,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,17,1,1650,4,0,0 +2013,7,15,1,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,752,-6,0,1555,-7,0,0 +2013,7,2,2,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1557,33,1,2020,20,1,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-1,0,1056,-17,0,0 +2013,5,31,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14771,San Francisco International,San Francisco,CA,930,-4,0,1126,-13,0,0 +2013,8,27,2,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,810,-3,0,940,-6,0,0 +2013,5,14,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,705,-7,0,1050,-18,0,0 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,30,1,612,23,1,0 +2013,6,27,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,-3,0,1310,-9,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,-6,0,913,-12,0,0 +2013,5,8,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1807,23,1,2018,7,0,0 +2013,5,25,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,-4,0,1127,-6,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,4,0,1130,-3,0,0 +2013,8,9,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,2,0,1030,7,0,0 +2013,6,10,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,69,1,1715,59,1,0 +2013,4,20,6,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,31,1,813,14,0,0 +2013,4,28,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1530,-7,0,1650,-13,0,0 +2013,8,21,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,830,-1,0,1023,1,0,0 +2013,5,18,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,-4,0,1405,20,1,0 +2013,4,28,7,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,-7,0,1918,-12,0,0 +2013,10,23,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1505,-3,0,1825,1,0,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,0,0,1736,-12,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,0,0,1745,-13,0,0 +2013,7,26,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,908,98,1,1031,77,1,0 +2013,4,28,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1037,6,0,1147,1,0,0 +2013,8,20,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,1,0,2100,-10,0,0 +2013,5,14,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1722,-8,0,1953,-9,0,0 +2013,5,20,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1320,-6,0,1617,2,0,0 +2013,4,8,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2204,28,1,2334,56,1,0 +2013,10,5,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1725,15,1,1955,18,1,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,-4,0,1345,-6,0,0 +2013,7,27,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1334,-18,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,2,0,1455,2,0,0 +2013,8,11,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,-8,0,950,-11,0,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,725,-5,0,930,-26,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1200,-6,0,1405,-1,0,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1730,11,0,1930,-9,0,0 +2013,9,7,6,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1825,-4,0,2115,-43,0,0 +2013,7,14,7,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1000,-3,0,1050,-11,0,0 +2013,9,30,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,-5,0,1526,-11,0,0 +2013,10,18,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,22,1,1430,16,1,0 +2013,5,10,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,715,42,1,925,28,1,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,625,-4,0,1025,1,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1202,-4,0,1334,-10,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2010,-1,0,2223,-11,0,0 +2013,7,16,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,800,-10,0,1050,-9,0,0 +2013,6,13,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,846,-7,0,1016,-8,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2352,-7,0,820,-21,0,0 +2013,5,28,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,45,1,2005,36,1,0 +2013,7,13,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1730,-12,0,1848,-27,0,0 +2013,8,16,5,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,611,-7,0,1053,-18,0,0 +2013,9,27,5,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,700,-6,0,757,-21,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1019,-5,0,1636,-17,0,0 +2013,6,13,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1235,4,0,1415,-2,0,0 +2013,10,15,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-7,0,747,-9,0,0 +2013,5,7,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1400,-1,0,1645,-11,0,0 +2013,10,13,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,-1,0,2050,-13,0,0 +2013,8,3,6,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1640,107,1,1805,107,1,0 +2013,7,2,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,2,0,1410,-5,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1410,30,1,1605,7,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1035,0,0,1200,-7,0,0 +2013,7,23,2,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-3,0,1720,8,0,0 +2013,6,11,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1823,1,0,2108,-9,0,0 +2013,5,11,6,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1005,-1,0,1515,8,0,0 +2013,10,13,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,830,-3,0,0 +2013,7,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,710,-4,0,925,4,0,0 +2013,9,21,6,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1326,-16,0,1616,-27,0,0 +2013,7,6,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,0,0,1121,3,0,0 +2013,4,7,7,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2040,-6,0,2355,-1,0,0 +2013,8,1,4,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1053,-6,0,1333,-14,0,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1559,8,0,13,-6,0,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,5,0,1109,23,1,0 +2013,8,19,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,5,0,1905,-2,0,0 +2013,4,12,5,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1911,-8,0,2136,-23,0,0 +2013,5,24,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2007,-6,0,2100,-10,0,0 +2013,6,18,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,27,1,1310,12,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,625,0,0,735,-15,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2205,-1,0,2329,-20,0,0 +2013,5,27,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,-6,0,1445,-14,0,0 +2013,10,10,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,0,0,1245,1,0,0 +2013,5,8,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1515,6,0,1816,-8,0,0 +2013,6,17,1,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,9,0,949,10,0,0 +2013,7,23,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,5,0,1444,11,0,0 +2013,8,25,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1650,-8,0,1740,-24,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,0,0,725,-12,0,0 +2013,4,2,2,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1115,7,0,1355,19,1,0 +2013,9,17,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,645,-9,0,852,-6,0,0 +2013,4,7,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1130,-8,0,1300,-23,0,0 +2013,8,22,4,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,920,-1,0,1200,11,0,0 +2013,6,6,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,647,-6,0,735,-15,0,0 +2013,6,21,5,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1710,95,1,1838,86,1,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1835,-5,0,2305,-36,0,0 +2013,7,18,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-1,0,1553,2,0,0 +2013,9,15,7,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1414,-2,0,1957,10,0,0 +2013,9,17,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1335,0,0,1610,-3,0,0 +2013,7,3,3,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,625,34,1,836,8,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1620,4,0,2105,2,0,0 +2013,9,26,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1710,-2,0,1944,-16,0,0 +2013,9,9,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-2,0,1500,-14,0,0 +2013,7,27,6,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2100,-4,0,507,-21,0,0 +2013,5,4,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,700,19,1,829,18,1,0 +2013,5,30,4,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1530,-4,0,1740,5,0,0 +2013,5,2,4,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1420,-5,0,1640,-11,0,0 +2013,9,6,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-6,0,826,-9,0,0 +2013,4,26,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,-2,0,930,34,1,0 +2013,8,8,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1810,2,0,1815,-6,0,0 +2013,8,30,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1905,-3,0,2048,-11,0,0 +2013,6,17,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,720,130,1,920,114,1,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,740,-7,0,1045,-19,0,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,818,-3,0,1659,0,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-3,0,1349,-22,0,0 +2013,10,2,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,1,0,2050,7,0,0 +2013,7,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1453,323,1,1620,322,1,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1125,-4,0,1220,9,0,0 +2013,9,15,7,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,4,0,2005,-34,0,0 +2013,4,5,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1922,62,1,2230,45,1,0 +2013,9,11,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1930,2,0,2040,-3,0,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1315,-3,0,1430,-14,0,0 +2013,5,29,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,710,36,1,848,23,1,0 +2013,8,12,1,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1210,-1,0,1300,-3,0,0 +2013,8,15,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,700,-2,0,725,0,0,0 +2013,4,19,5,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,-5,0,2042,-7,0,0 +2013,6,15,6,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1016,-7,0,1020,-13,0,0 +2013,7,10,3,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1435,99,1,1750,103,1,0 +2013,9,6,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,0,0,1135,-10,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1515,-2,0,1915,4,0,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2121,-4,0,540,4,0,0 +2013,9,2,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,550,-6,0,758,-13,0,0 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1455,0,0,1609,-13,0,0 +2013,7,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1745,40,1,2340,26,1,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1150,3,0,1840,-11,0,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-9,0,1427,1,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,50,1,2251,37,1,0 +2013,5,19,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-4,0,1039,-5,0,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1021,24,1,1342,9,0,0 +2013,7,25,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,610,1,0,715,8,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1742,-2,0,1923,-4,0,0 +2013,10,17,4,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,953,-4,0,1327,-23,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2035,-3,0,2242,-3,0,0 +2013,9,21,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,0,0,1845,-26,0,0 +2013,10,12,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1012,-7,0,1245,-3,0,0 +2013,10,13,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-8,0,1545,-5,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-4,0,2159,3,0,0 +2013,10,31,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-5,0,916,-3,0,0 +2013,4,6,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,830,-8,0,855,11,0,0 +2013,7,18,4,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-9,0,900,-44,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1830,7,0,1945,12,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,635,-5,0,1330,2,0,0 +2013,4,8,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1820,-9,0,2104,-18,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-4,0,1525,-18,0,0 +2013,7,25,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,-3,0,955,-1,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,-6,0,915,-10,0,0 +2013,10,11,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1504,86,1,1615,83,1,0 +2013,5,14,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1812,-5,0,2002,5,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1005,0,0,1135,-6,0,0 +2013,10,26,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,915,28,1,1020,24,1,0 +2013,7,24,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,-10,0,1148,-12,0,0 +2013,9,11,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,67,1,2145,65,1,0 +2013,9,8,7,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,-7,0,1453,-14,0,0 +2013,5,27,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1640,-4,0,1805,-19,0,0 +2013,7,10,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,0,0,1200,-1,0,0 +2013,4,11,4,UA,11292,Denver International,Denver,CO,13830,Kahului Airport,Kahului,HI,1215,-4,0,1538,-34,0,0 +2013,8,11,7,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-9,0,2149,-1,0,0 +2013,8,19,1,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1138,6,0,1228,2,0,0 +2013,8,31,6,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1310,2,0,1435,6,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,7,0,1053,10,0,0 +2013,9,13,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1835,20,1,1935,13,0,0 +2013,9,29,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-3,0,900,-17,0,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,0,0,2020,4,0,0 +2013,10,11,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,829,-6,0,1026,-23,0,0 +2013,7,31,3,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1905,12,0,2020,9,0,0 +2013,4,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,9,0,1121,-9,0,0 +2013,6,16,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-5,0,1058,-13,0,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,-6,0,559,-12,0,0 +2013,10,8,2,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,-4,0,2105,-35,0,0 +2013,7,28,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1933,-3,0,2125,-15,0,0 +2013,8,25,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,14,0,1645,4,0,0 +2013,6,9,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,2,0,2238,5,0,0 +2013,6,5,3,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,8,0,1855,-11,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,0,0,1225,-7,0,0 +2013,4,6,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-9,0,1251,-17,0,0 +2013,9,10,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,-7,0,2050,-10,0,0 +2013,7,7,7,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,0,,545,0,1,1 +2013,8,27,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1315,-5,0,1425,-28,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,935,21,1,1304,14,0,0 +2013,8,22,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1656,12,0,1846,5,0,0 +2013,6,10,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,715,11,0,1004,0,0,0 +2013,8,4,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,29,1,1610,31,1,0 +2013,9,25,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1250,-10,0,1637,1,0,0 +2013,5,1,3,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1507,-10,0,1820,-11,0,0 +2013,5,3,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,936,25,1,1040,37,1,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1745,10,0,1930,15,1,0 +2013,5,4,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1530,-4,0,1555,-12,0,0 +2013,9,8,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-1,0,1451,-11,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,6,0,1445,-1,0,0 +2013,9,4,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-9,0,1550,-10,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1330,34,1,1550,39,1,0 +2013,6,28,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,33,1,1629,25,1,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1940,-4,0,2055,-10,0,0 +2013,10,17,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1328,40,1,1700,33,1,0 +2013,4,9,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,650,-6,0,930,-39,0,0 +2013,5,4,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1625,-4,0,1915,-2,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2220,35,1,15,31,1,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,900,0,0,1255,2,0,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1736,-6,0,1942,-10,0,0 +2013,7,31,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,33,1,2000,26,1,0 +2013,6,28,5,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,62,1,604,62,1,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1615,41,1,1800,128,1,0 +2013,8,16,5,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1427,29,1,2233,12,0,0 +2013,6,1,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,930,-10,0,1045,-1,0,0 +2013,5,18,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-7,0,1015,-9,0,0 +2013,4,30,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,945,-2,0,1230,-13,0,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,22,1,40,18,1,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1050,44,1,1630,35,1,0 +2013,7,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,7,0,1705,1,0,0 +2013,4,26,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1300,-5,0,1505,5,0,0 +2013,8,4,7,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,5,0,1340,8,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,-2,0,1635,-2,0,0 +2013,4,9,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,755,-6,0,920,1,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2020,198,1,2335,203,1,0 +2013,10,16,3,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1821,-1,0,2309,-30,0,0 +2013,10,20,7,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,725,-1,0,1010,2,0,0 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1706,56,1,2111,92,1,0 +2013,5,17,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,10,0,2000,9,0,0 +2013,10,28,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,15,1,2045,28,1,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1425,0,0,1835,-4,0,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,30,1,2020,33,1,0 +2013,4,5,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1447,-9,0,1716,-33,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,815,15,1,925,0,0,0 +2013,5,9,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,29,1,1311,36,1,0 +2013,7,11,4,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1516,12,0,1744,7,0,0 +2013,6,20,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1430,45,1,2030,36,1,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2035,112,1,2200,126,1,0 +2013,8,18,7,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,5,0,518,8,0,0 +2013,8,14,3,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,11,0,1815,13,0,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,749,-7,0,1145,-27,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,759,-10,0,937,-23,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1101,-3,0,1236,-5,0,0 +2013,5,16,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,600,1,0,645,3,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,1,0,2011,9,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1156,5,0,1327,-9,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1455,29,1,1700,25,1,0 +2013,4,23,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,750,-15,0,0 +2013,7,7,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1735,-3,0,1855,4,0,0 +2013,6,23,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,63,1,2308,60,1,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,17,1,1131,17,1,0 +2013,4,20,6,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,742,-10,0,1033,-24,0,0 +2013,9,23,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1250,24,1,1405,28,1,0 +2013,9,25,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1400,4,0,1930,-21,0,0 +2013,10,26,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,645,-5,0,814,-16,0,0 +2013,10,3,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1755,16,1,1920,6,0,0 +2013,5,16,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1557,-7,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-8,0,2336,-12,0,0 +2013,6,26,3,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,194,1,2330,193,1,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1115,12,0,1215,26,1,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,7,0,1640,12,0,0 +2013,10,12,6,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,729,-3,0,1128,-22,0,0 +2013,7,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1237,-1,0,1805,23,1,0 +2013,6,3,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1749,0,0,1824,-9,0,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,109,1,1700,130,1,0 +2013,4,14,7,EV,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1025,4,0,1255,1,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-5,0,1425,-8,0,0 +2013,4,29,1,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1800,-9,0,2032,-10,0,0 +2013,7,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1157,2,0,1651,10,0,0 +2013,6,16,7,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1745,0,0,1859,-27,0,0 +2013,6,27,4,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1235,8,0,1430,2,0,0 +2013,10,23,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2110,6,0,2341,5,0,0 +2013,6,21,5,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-1,0,1020,-11,0,0 +2013,8,25,7,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1745,-5,0,2017,-3,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,16,1,1620,-13,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2240,9,0,2340,7,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1145,5,0,1520,4,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1035,-1,0,1200,-12,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1705,6,0,1800,-11,0,0 +2013,5,29,3,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,818,-2,0,1027,-19,0,0 +2013,4,16,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,850,17,1,950,15,1,0 +2013,6,9,7,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2105,-7,0,2220,-16,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1740,17,1,1845,17,1,0 +2013,5,4,6,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1915,-6,0,2155,-4,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1520,33,1,1610,26,1,0 +2013,9,9,1,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,10,0,2020,0,0,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1230,-5,0,1350,-11,0,0 +2013,8,26,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,755,-1,0,910,-5,0,0 +2013,8,28,3,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1520,18,1,1950,19,1,0 +2013,8,18,7,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1545,73,1,1644,73,1,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,745,-1,0,1005,-9,0,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1402,-11,0,1752,-13,0,0 +2013,5,11,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,933,7,0,1025,-3,0,0 +2013,6,13,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,757,4,0,925,5,0,0 +2013,10,16,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1620,5,0,1825,-8,0,0 +2013,10,10,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-1,0,2102,7,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1242,75,1,1719,40,1,0 +2013,7,25,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,640,-3,0,810,-15,0,0 +2013,10,16,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1305,-7,0,1602,-9,0,0 +2013,7,1,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1256,-2,0,1400,-2,0,0 +2013,5,15,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,910,-2,0,1030,0,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,726,0,0,1025,11,0,0 +2013,5,29,3,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,813,0,0,1049,7,0,0 +2013,8,18,7,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1640,-2,0,1815,-18,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1916,24,1,2020,16,1,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,850,-6,0,1108,-1,0,0 +2013,9,8,7,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1345,30,1,1524,23,1,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1645,-5,0,1925,-16,0,0 +2013,7,9,2,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,720,-5,0,1052,-1,0,0 +2013,7,26,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1242,-4,0,1342,-16,0,0 +2013,10,24,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,648,-3,0,0 +2013,7,24,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,825,-6,0,1547,-17,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,1,0,2300,-7,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1025,1,0,1155,-5,0,0 +2013,5,7,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-8,0,1017,-1,0,0 +2013,6,2,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,1,0,900,-12,0,0 +2013,10,2,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,925,0,0,1325,-16,0,0 +2013,7,10,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,610,-5,0,805,-1,0,0 +2013,9,23,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1600,8,0,1735,-6,0,0 +2013,7,18,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-5,0,1620,-9,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-7,0,1133,-16,0,0 +2013,8,21,3,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1900,-3,0,2206,-18,0,0 +2013,9,5,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1657,-3,0,1849,-22,0,0 +2013,8,21,3,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1900,-5,0,2146,-7,0,0 +2013,8,3,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-6,0,1819,-18,0,0 +2013,4,27,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1106,-6,0,1253,-20,0,0 +2013,9,25,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,835,-5,0,852,-10,0,0 +2013,8,28,3,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-6,0,851,-12,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2145,-1,0,2316,-18,0,0 +2013,9,18,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,820,-4,0,1145,-2,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1250,47,1,1405,44,1,0 +2013,10,31,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1145,10,0,1309,12,0,0 +2013,6,27,4,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1120,-1,0,1255,-9,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-4,0,1229,3,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,-3,0,1850,-7,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,-5,0,453,-10,0,0 +2013,8,31,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1420,7,0,1510,-6,0,0 +2013,7,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-10,0,858,-8,0,0 +2013,6,14,5,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,163,1,1755,173,1,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2200,-4,0,2317,-18,0,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,809,50,1,1018,54,1,0 +2013,9,29,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-10,0,1330,-6,0,0 +2013,4,25,4,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,1030,7,0,1300,2,0,0 +2013,6,9,7,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,8,0,1901,-10,0,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,946,-5,0,1129,-16,0,0 +2013,5,15,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,-9,0,1418,-24,0,0 +2013,5,16,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-3,0,2245,-6,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,745,1,0,935,-2,0,0 +2013,7,14,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,-9,0,710,-19,0,0 +2013,4,15,1,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1822,-5,0,1945,-13,0,0 +2013,8,7,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1425,5,0,2250,-4,0,0 +2013,6,23,7,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,-3,0,856,0,0,0 +2013,8,19,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2000,-6,0,2055,-13,0,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1509,4,0,2349,6,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,850,-7,0,924,-6,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,24,1,2050,15,1,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2120,43,1,2220,32,1,0 +2013,4,27,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1125,-4,0,1305,-16,0,0 +2013,10,30,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,904,6,0,1056,-13,0,0 +2013,8,17,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,15,1,940,14,0,0 +2013,6,29,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,449,176,1,744,175,1,0 +2013,10,31,4,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1045,-9,0,1309,-6,0,0 +2013,5,29,3,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-7,0,1815,-14,0,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1640,74,1,1805,65,1,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,710,32,1,942,19,1,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,840,-2,0,1325,19,1,0 +2013,8,21,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,837,-13,0,1559,-13,0,0 +2013,6,23,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1539,14,0,1830,6,0,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1040,4,0,1250,-4,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,-2,0,1709,-21,0,0 +2013,9,13,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,822,-1,0,1215,-9,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,-5,0,1833,-14,0,0 +2013,7,29,1,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-3,0,1625,-6,0,0 +2013,8,11,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1955,17,1,2110,12,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,60,1,1615,58,1,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1430,10,0,1534,17,1,0 +2013,9,6,5,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1245,8,0,1600,4,0,0 +2013,7,15,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,620,1,0,750,-6,0,0 +2013,7,22,1,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,705,-3,0,832,-1,0,0 +2013,7,4,4,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1420,19,1,1650,10,0,0 +2013,9,17,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,-9,0,755,-23,0,0 +2013,10,21,1,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,955,22,1,1255,9,0,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,650,7,0,920,21,1,0 +2013,4,5,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,800,48,1,1158,73,1,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-5,0,1133,-7,0,0 +2013,5,21,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,645,5,0,740,0,0,0 +2013,4,12,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1835,7,0,1920,12,0,0 +2013,4,1,1,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1855,-4,0,2145,27,1,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,2,0,1355,-6,0,0 +2013,5,13,1,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,719,-3,0,948,-7,0,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1416,10,0,1512,-4,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,30,1,1440,24,1,0 +2013,10,5,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-1,0,1620,-1,0,0 +2013,7,30,2,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,22,1,1955,15,1,0 +2013,9,30,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-4,0,2214,-4,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,820,1,0,1055,-1,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1425,17,1,1555,16,1,0 +2013,10,21,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-3,0,809,0,0,0 +2013,4,23,2,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,613,-9,0,747,-28,0,0 +2013,6,22,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1831,1,0,0 +2013,9,4,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1156,-7,0,1352,-27,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1015,-10,0,1320,-15,0,0 +2013,4,10,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2000,67,1,2115,63,1,0 +2013,9,4,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1934,-6,0,2128,-9,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,-9,0,2053,-13,0,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2146,38,1,30,12,0,0 +2013,4,17,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1640,-5,0,1845,124,1,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1016,4,0,1333,-16,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,25,1,1530,-4,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,-1,0,2110,-15,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1015,56,1,1410,96,1,0 +2013,7,21,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,757,2,0,852,-7,0,0 +2013,8,30,5,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1900,3,0,2110,2,0,0 +2013,6,19,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-2,0,1524,3,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1510,-2,0,1738,-1,0,0 +2013,6,21,5,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,1514,141,1,1735,148,1,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,845,-1,0,1014,-4,0,0 +2013,4,22,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1310,-1,0,1710,10,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-7,0,2015,-25,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,-2,0,1820,-19,0,0 +2013,9,2,1,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1430,5,0,1611,-1,0,0 +2013,8,2,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2157,40,1,147,36,1,0 +2013,10,30,3,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1435,-8,0,1550,-21,0,0 +2013,4,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1735,142,1,1926,151,1,0 +2013,4,5,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,910,-5,0,937,-26,0,0 +2013,4,16,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1738,-3,0,1903,-5,0,0 +2013,6,23,7,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,-3,0,820,-5,0,0 +2013,10,17,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1414,-9,0,1639,-9,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1315,-7,0,1518,-8,0,0 +2013,10,22,2,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2305,-9,0,702,-27,0,0 +2013,5,29,3,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,540,-6,0,850,-18,0,0 +2013,9,27,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,645,0,0,748,-19,0,0 +2013,6,19,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-3,0,1054,-7,0,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-3,0,2140,1,0,0 +2013,5,18,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,915,-3,0,1215,10,0,0 +2013,9,8,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1148,-7,0,1344,-12,0,0 +2013,6,12,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,119,1,2045,100,1,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,-2,0,534,-10,0,0 +2013,4,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1730,7,0,1850,-4,0,0 +2013,4,22,1,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1858,91,1,2130,120,1,0 +2013,10,23,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1705,-5,0,1845,-13,0,0 +2013,9,28,6,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1400,14,0,1550,6,0,0 +2013,10,21,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1831,-3,0,2102,-1,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,1,0,2110,-4,0,0 +2013,7,15,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-9,0,1824,-18,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1030,-5,0,1315,-11,0,0 +2013,6,17,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,825,-2,0,1420,-26,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,735,-6,0,910,-16,0,0 +2013,6,23,7,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,842,-7,0,921,-15,0,0 +2013,5,7,2,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,745,-6,0,850,-11,0,0 +2013,8,31,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-5,0,1100,-22,0,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2005,3,0,2120,-2,0,0 +2013,8,5,1,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1510,3,0,1630,0,0,0 +2013,4,15,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2050,-2,0,2210,-9,0,0 +2013,9,17,2,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1705,4,0,1950,-2,0,0 +2013,7,30,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,0,0,2005,-22,0,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1250,10,0,1535,1,0,0 +2013,5,12,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,900,-13,0,0 +2013,9,25,3,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-6,0,1355,-28,0,0 +2013,5,4,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,703,-6,0,1048,17,1,0 +2013,7,16,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-1,0,940,7,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2159,238,1,2336,232,1,0 +2013,8,20,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,1,0,1421,29,1,0 +2013,8,9,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,-3,0,1930,12,0,0 +2013,9,21,6,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-5,0,758,6,0,0 +2013,8,15,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-2,0,1925,-12,0,0 +2013,6,4,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-1,0,2215,-18,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,20,1,1200,9,0,0 +2013,9,27,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1200,-5,0,1305,-10,0,0 +2013,6,6,4,OO,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,27,1,1833,16,1,0 +2013,8,9,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,-4,0,950,-19,0,0 +2013,5,6,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,10,0,1459,16,1,0 +2013,4,6,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,605,-4,0,835,-27,0,0 +2013,9,24,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1429,-7,0,1556,-17,0,0 +2013,4,10,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,715,2,0,1508,15,1,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1155,20,1,1430,6,0,0 +2013,6,6,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-6,0,1206,-8,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1720,-3,0,2011,-18,0,0 +2013,6,3,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,803,-13,0,0 +2013,6,25,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-1,0,1910,-3,0,0 +2013,7,26,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1110,-1,0,1310,11,0,0 +2013,5,1,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1806,-7,0,2012,-12,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,4,0,1015,13,0,0 +2013,7,12,5,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1649,-3,0,1828,-18,0,0 +2013,7,25,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,-1,0,1645,-6,0,0 +2013,9,13,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,829,-4,0,1139,-10,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1006,-2,0,1141,-20,0,0 +2013,4,9,2,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,1240,-3,0,2110,-12,0,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,148,1,2125,174,1,0 +2013,8,27,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1805,-3,0,2015,1,0,0 +2013,8,9,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-3,0,1408,-8,0,0 +2013,5,26,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,745,-7,0,918,-8,0,0 +2013,6,26,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1530,3,0,1635,-9,0,0 +2013,6,1,6,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1540,-1,0,1740,3,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1620,7,0,1810,15,1,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1640,73,1,1755,69,1,0 +2013,9,6,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1127,-1,0,1239,-12,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,909,3,0,1031,-8,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,-4,0,1555,-8,0,0 +2013,7,13,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1654,2,0,1755,0,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,818,-4,0,920,-6,0,0 +2013,10,22,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,722,19,1,922,8,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,740,-5,0,1125,-16,0,0 +2013,6,27,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1746,27,1,1857,105,1,0 +2013,6,12,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,600,-3,0,605,-4,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,29,1,1425,29,1,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2015,-5,0,2139,-14,0,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1518,-8,0,1740,-24,0,0 +2013,5,3,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1817,-8,0,1854,-4,0,0 +2013,10,19,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,115,-10,0,503,-13,0,0 +2013,10,11,5,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1335,-2,0,1410,-8,0,0 +2013,5,2,4,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,615,-8,0,749,-12,0,0 +2013,5,9,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-2,0,1900,-5,0,0 +2013,9,17,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-9,0,1044,-1,0,0 +2013,9,5,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,650,0,0,750,-6,0,0 +2013,8,11,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-6,0,1420,-7,0,0 +2013,8,22,4,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1714,0,,1810,0,1,1 +2013,9,20,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1125,9,0,1420,-13,0,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,815,-3,0,1057,-4,0,0 +2013,10,13,7,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,30,1,1325,16,1,0 +2013,10,19,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,12,0,900,12,0,0 +2013,9,3,2,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1713,110,1,1851,101,1,0 +2013,8,26,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,1,0,1521,-8,0,0 +2013,9,4,3,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2046,-8,0,2206,-11,0,0 +2013,10,4,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,103,1,920,96,1,0 +2013,7,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,-4,0,1455,-5,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,23,1,1835,16,1,0 +2013,4,10,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,42,1,1900,34,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,3,0,1510,4,0,0 +2013,9,5,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1650,-3,0,1855,-8,0,0 +2013,9,15,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1057,0,0,1423,-18,0,0 +2013,4,25,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1142,28,1,1429,22,1,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1540,11,0,2020,14,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2045,-3,0,2155,19,1,0 +2013,9,9,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1610,-3,0,1715,-8,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,-5,0,1129,-15,0,0 +2013,9,24,2,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1242,3,0,1400,0,0,0 +2013,7,23,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,835,-2,0,955,-10,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1544,-5,0,2104,-11,0,0 +2013,7,31,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1940,-7,0,2034,-5,0,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1140,13,0,1450,1,0,0 +2013,4,24,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1903,0,0,1925,-2,0,0 +2013,7,25,4,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-4,0,925,-15,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,910,4,0,1320,-2,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,-6,0,1909,-10,0,0 +2013,7,18,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1224,3,0,1449,-29,0,0 +2013,7,12,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-5,0,1012,-7,0,0 +2013,10,10,4,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-3,0,805,-6,0,0 +2013,7,24,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1340,-6,0,1700,-15,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,831,-3,0,1001,-8,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,-2,0,1131,-20,0,0 +2013,8,12,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,655,-1,0,855,-9,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2040,64,1,2220,65,1,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,6,0,2025,10,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,820,11,0,1045,2,0,0 +2013,5,6,1,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1312,-2,0,1658,0,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1750,29,1,2150,20,1,0 +2013,7,6,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1245,18,1,1440,-3,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1920,12,0,2105,8,0,0 +2013,6,26,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2104,-7,0,2318,-11,0,0 +2013,6,23,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,26,1,1135,18,1,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1405,-4,0,1615,1,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1940,-2,0,2042,-11,0,0 +2013,4,1,1,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1129,-8,0,1347,-7,0,0 +2013,5,1,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,6,0,1040,-7,0,0 +2013,5,21,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,700,1,0,940,5,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,8,0,1030,-5,0,0 +2013,4,8,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1604,-3,0,1722,-2,0,0 +2013,10,14,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-1,0,1757,-6,0,0 +2013,6,10,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1600,56,1,1721,52,1,0 +2013,9,3,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,-10,0,904,-18,0,0 +2013,4,13,6,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1351,-7,0,1507,-16,0,0 +2013,8,13,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1110,4,0,1240,9,0,0 +2013,4,25,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,850,-3,0,1010,-5,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,2055,17,1,2235,12,0,0 +2013,9,4,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1535,6,0,1650,5,0,0 +2013,5,10,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,-2,0,1603,11,0,0 +2013,8,1,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,800,2,0,900,3,0,0 +2013,6,23,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,13,0,2130,5,0,0 +2013,10,8,2,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1640,9,0,2202,17,1,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,0,0,1430,-2,0,0 +2013,8,8,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,940,-1,0,1142,-8,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-3,0,725,2,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,945,-1,0,1040,-17,0,0 +2013,4,23,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1530,-5,0,1555,2,0,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,-1,0,1825,7,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,25,1,1750,32,1,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-5,0,1050,-18,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,721,-3,0,1130,-15,0,0 +2013,4,20,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-6,0,1630,-13,0,0 +2013,5,1,3,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,600,0,0,840,-6,0,0 +2013,5,23,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,54,1,1255,38,1,0 +2013,9,9,1,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,605,-1,0,700,-4,0,0 +2013,5,18,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-3,0,1028,-19,0,0 +2013,4,15,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,831,24,1,1120,13,0,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,835,-5,0,1015,-8,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1208,3,0,1341,9,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,730,-6,0,915,-11,0,0 +2013,10,2,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1540,-9,0,1709,-12,0,0 +2013,5,15,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-5,0,918,-10,0,0 +2013,7,17,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,914,-5,0,1059,-9,0,0 +2013,10,13,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1315,3,0,1610,-4,0,0 +2013,5,26,7,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-2,0,2130,-19,0,0 +2013,10,15,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,728,2,0,905,-13,0,0 +2013,10,6,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2039,-5,0,2200,-11,0,0 +2013,8,31,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,73,1,1715,112,1,0 +2013,7,12,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-3,0,720,-11,0,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,638,-3,0,911,-7,0,0 +2013,10,15,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,-1,0,1555,1,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1457,-3,0,1617,-4,0,0 +2013,10,9,3,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,24,1,1355,24,1,0 +2013,6,26,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,82,1,1635,64,1,0 +2013,7,30,2,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,0,0,1014,-1,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1602,9,0,1920,0,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1415,27,1,1845,7,0,0 +2013,6,7,5,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,0,0,1515,-4,0,0 +2013,4,29,1,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1855,2,0,2349,1,0,0 +2013,10,23,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,650,-2,0,929,-19,0,0 +2013,7,5,5,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-4,0,1940,-14,0,0 +2013,6,2,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2000,-3,0,2115,-24,0,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2243,2,0,15,-12,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,71,1,2214,82,1,0 +2013,10,26,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,35,1,1840,36,1,0 +2013,10,14,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-9,0,1110,-14,0,0 +2013,10,13,7,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,1,0,939,-1,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-4,0,1320,4,0,0 +2013,10,12,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,835,6,0,1031,4,0,0 +2013,10,26,6,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1015,4,0,1210,-1,0,0 +2013,7,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2146,12,0,2205,9,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,-4,0,1225,2,0,0 +2013,5,7,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,735,-5,0,835,-12,0,0 +2013,7,9,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,610,-1,0,740,-10,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,955,-2,0,1330,-13,0,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1959,97,1,2247,107,1,0 +2013,6,9,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1347,16,1,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,728,10,0,957,-12,0,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1736,99,1,1933,78,1,0 +2013,8,23,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,900,-14,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,6,0,25,2,0,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,2205,-9,0,2358,-30,0,0 +2013,8,8,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,722,-2,0,855,0,0,0 +2013,10,7,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2043,-16,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1340,4,0,1520,2,0,0 +2013,5,2,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,-4,0,910,-7,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2135,16,1,516,44,1,0 +2013,8,12,1,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1805,7,0,2045,46,1,0 +2013,10,14,1,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,13,0,1805,-2,0,0 +2013,10,20,7,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,927,-17,0,0 +2013,4,25,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1522,3,0,1747,9,0,0 +2013,9,11,3,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,530,-3,0,859,6,0,0 +2013,10,28,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-8,0,939,-6,0,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1829,21,1,2114,6,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1530,-3,0,1740,-5,0,0 +2013,7,30,2,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1931,-4,0,2103,-9,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,1,0,1300,7,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2155,0,,2255,0,1,1 +2013,10,28,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1228,18,1,1420,17,1,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1920,130,1,2235,146,1,0 +2013,8,27,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1053,1,0,1636,-4,0,0 +2013,7,15,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1006,-9,0,1314,-21,0,0 +2013,9,5,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,0,,1010,0,1,1 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1005,45,1,1236,30,1,0 +2013,7,11,4,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,816,57,1,1620,56,1,0 +2013,4,3,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-3,0,1715,-9,0,0 +2013,9,10,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1613,-5,0,1728,-22,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1635,39,1,1735,33,1,0 +2013,7,31,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1247,-3,0,1619,-12,0,0 +2013,8,20,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2018,-4,0,2159,-10,0,0 +2013,8,15,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-8,0,2100,20,1,0 +2013,7,28,7,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2333,52,1,500,44,1,0 +2013,10,16,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1735,-10,0,1850,-30,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,831,-8,0,921,-15,0,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,62,1,1420,58,1,0 +2013,8,26,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1107,-1,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1040,7,0,1140,17,1,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1915,2,0,2313,-16,0,0 +2013,6,18,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1800,16,1,2015,26,1,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,715,0,0,950,-14,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2210,10,0,2357,1,0,0 +2013,5,5,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,845,-3,0,1254,12,0,0 +2013,10,3,4,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,7,0,1540,17,1,0 +2013,8,1,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1115,1,0,1132,0,0,0 +2013,10,23,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,834,-3,0,923,-13,0,0 +2013,8,15,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-6,0,1752,12,0,0 +2013,7,6,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1011,67,1,1202,65,1,0 +2013,7,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,-1,0,1053,2,0,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1030,-8,0,1121,-7,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,745,-8,0,846,-29,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1103,6,0,1247,-10,0,0 +2013,10,21,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1516,5,0,1641,14,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1813,-4,0,2012,-14,0,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,7,0,2025,-4,0,0 +2013,9,22,7,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,715,-7,0,927,-1,0,0 +2013,6,25,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,716,92,1,900,75,1,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1125,64,1,1715,59,1,0 +2013,7,16,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2151,-5,0,2342,-9,0,0 +2013,8,11,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,10,0,2139,20,1,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,-4,0,1502,-15,0,0 +2013,6,15,6,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-10,0,915,14,0,0 +2013,7,28,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1225,204,1,1335,199,1,0 +2013,10,16,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2045,0,0,441,-19,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,32,1,1911,16,1,0 +2013,9,29,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,-1,0,1230,-21,0,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1355,6,0,1955,10,0,0 +2013,10,14,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-9,0,916,-25,0,0 +2013,8,22,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,5,0,1113,4,0,0 +2013,10,27,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1955,-5,0,2109,3,0,0 +2013,5,29,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,5,0,802,5,0,0 +2013,9,19,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-6,0,1411,7,0,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,810,-6,0,1104,5,0,0 +2013,10,24,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,1,0,1925,-4,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1805,4,0,2020,0,0,0 +2013,10,27,7,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,-7,0,1815,-10,0,0 +2013,5,9,4,YV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1000,0,0,1137,-17,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1155,0,0,1320,45,1,0 +2013,5,2,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-2,0,1549,-6,0,0 +2013,10,14,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2135,-14,0,11,-17,0,0 +2013,5,26,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1225,-25,0,0 +2013,7,28,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-1,0,1532,-7,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,21,1,1005,16,1,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1935,38,1,2140,28,1,0 +2013,7,12,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1005,-6,0,1050,16,1,0 +2013,4,22,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,845,-1,0,945,2,0,0 +2013,8,30,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,-2,0,1645,-6,0,0 +2013,10,25,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,-1,0,1555,-5,0,0 +2013,9,4,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,-3,0,847,-8,0,0 +2013,4,9,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-5,0,2125,-8,0,0 +2013,6,12,3,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,640,10,0,747,1,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2307,-2,0,30,-9,0,0 +2013,4,23,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,950,-17,0,0 +2013,9,30,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,57,1,1939,29,1,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,901,-1,0,1143,-1,0,0 +2013,6,7,5,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,2,0,1740,24,1,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,630,-2,0,755,-8,0,0 +2013,5,6,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,815,-8,0,917,-14,0,0 +2013,6,26,3,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1325,1,0,1450,-6,0,0 +2013,7,15,1,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1306,11,0,1633,15,1,0 +2013,10,14,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2154,18,1,2306,22,1,0 +2013,5,6,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-4,0,1930,-6,0,0 +2013,9,17,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-6,0,935,-3,0,0 +2013,6,10,1,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,0,0,1320,-13,0,0 +2013,6,14,5,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1220,-1,0,1412,13,0,0 +2013,8,15,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,34,1,2215,33,1,0 +2013,5,23,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1000,12,0,1254,11,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,750,-2,0,900,-14,0,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1705,14,0,1850,10,0,0 +2013,9,28,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,24,1,648,25,1,0 +2013,7,28,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2031,65,1,2337,45,1,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1547,-6,0,1824,-66,0,0 +2013,9,20,5,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1349,4,0,1429,2,0,0 +2013,10,20,7,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1706,-20,0,1914,-6,0,0 +2013,10,5,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1220,-8,0,1400,-11,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1050,3,0,1515,-13,0,0 +2013,9,27,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-9,0,1657,-14,0,0 +2013,8,7,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-4,0,840,5,0,0 +2013,10,22,2,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1305,-8,0,1410,-15,0,0 +2013,9,26,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-5,0,1118,2,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,847,-4,0,1022,-24,0,0 +2013,9,30,1,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,930,30,1,1740,7,0,0 +2013,4,6,6,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,0,0,813,10,0,0 +2013,7,12,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1728,136,1,1900,132,1,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,750,1,0,910,9,0,0 +2013,8,6,2,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1000,-3,0,1248,8,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,620,-1,0,855,-12,0,0 +2013,10,24,4,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,759,-9,0,1100,-28,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2035,22,1,2225,47,1,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,10,0,1930,27,1,0 +2013,6,9,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,804,-6,0,1020,-14,0,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,-1,0,1205,-14,0,0 +2013,6,16,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,-4,0,1855,-24,0,0 +2013,9,14,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,900,-4,0,951,7,0,0 +2013,4,25,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,930,3,0,1020,-1,0,0 +2013,7,21,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,56,1,1928,58,1,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1535,44,1,1850,18,1,0 +2013,5,3,5,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,637,-1,0,1037,-16,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,43,1,832,48,1,0 +2013,4,29,1,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1338,145,1,1706,150,1,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,739,-6,0,1329,-23,0,0 +2013,5,29,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1026,-6,0,1306,12,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1050,-5,0,1112,-3,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,0,,2055,0,1,1 +2013,9,3,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-7,0,1504,-6,0,0 +2013,6,29,6,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1650,73,1,1815,84,1,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-8,0,1010,-15,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,9,0,1715,22,1,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,940,0,0,1050,-5,0,0 +2013,5,21,2,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1329,31,1,1604,103,1,0 +2013,6,12,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,77,1,2010,69,1,0 +2013,10,25,5,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1002,1,0,1210,-3,0,0 +2013,5,9,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-3,0,750,-7,0,0 +2013,10,10,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2320,-6,0,830,-5,0,0 +2013,9,13,5,US,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,825,59,1,1436,54,1,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1550,17,1,1827,10,0,0 +2013,10,26,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1515,3,0,1755,5,0,0 +2013,5,25,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-7,0,1122,-14,0,0 +2013,4,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1200,1,0,1300,-13,0,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,-2,0,1336,-3,0,0 +2013,8,12,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,939,-14,0,1120,-17,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-2,0,850,-3,0,0 +2013,10,1,2,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,8,0,1815,-14,0,0 +2013,7,14,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,79,1,827,88,1,0 +2013,4,15,1,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,842,-5,0,1031,-10,0,0 +2013,6,4,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,645,-3,0,925,-5,0,0 +2013,10,27,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2009,-8,0,2120,-25,0,0 +2013,6,29,6,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1500,15,1,1644,-7,0,0 +2013,4,1,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,905,23,1,1207,-2,0,0 +2013,8,10,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,6,0,2126,8,0,0 +2013,6,17,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,-2,0,2000,-3,0,0 +2013,9,20,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,809,7,0,932,6,0,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-7,0,1311,-25,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1755,-5,0,2114,7,0,0 +2013,5,27,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1945,55,1,2125,46,1,0 +2013,7,10,3,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1535,16,1,1825,9,0,0 +2013,6,11,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,834,-5,0,933,4,0,0 +2013,7,22,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1415,-8,0,1638,22,1,0 +2013,7,29,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,90,1,1225,78,1,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,-10,0,2325,-12,0,0 +2013,4,5,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1429,-1,0,1616,-5,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,835,6,0,1040,0,0,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1228,117,1,1532,138,1,0 +2013,10,6,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,849,-9,0,0 +2013,6,3,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,752,5,0,841,10,0,0 +2013,4,19,5,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-12,0,2058,-10,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,1,0,1635,-1,0,0 +2013,8,10,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,800,3,0,920,-4,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1351,-4,0,1519,-8,0,0 +2013,5,14,2,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,1710,42,1,1817,32,1,0 +2013,4,29,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1854,43,1,2140,33,1,0 +2013,5,26,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1145,-3,0,1355,-11,0,0 +2013,7,2,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,0,0,1634,4,0,0 +2013,10,16,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-3,0,1415,-23,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1450,-4,0,1517,-19,0,0 +2013,5,2,4,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,10,0,1209,11,0,0 +2013,6,2,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,910,-5,0,1107,-11,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,625,-2,0,750,-8,0,0 +2013,7,19,5,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,2,0,1305,-3,0,0 +2013,8,18,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,20,1,850,36,1,0 +2013,8,8,4,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1755,33,1,2055,22,1,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,25,1,1043,26,1,0 +2013,6,23,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,745,-7,0,0 +2013,8,4,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-3,0,1235,-14,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,920,-2,0,1350,-10,0,0 +2013,8,1,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,1425,4,0,1615,-5,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1505,0,0,1715,-2,0,0 +2013,8,29,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,-11,0,1630,-11,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,77,1,5,69,1,0 +2013,8,25,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,52,1,1909,47,1,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1200,0,0,1315,-11,0,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1328,2,0,1507,-5,0,0 +2013,7,20,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,-4,0,1201,-29,0,0 +2013,5,7,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1800,-3,0,1925,-4,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1510,10,0,1640,7,0,0 +2013,8,12,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-14,0,2151,-29,0,0 +2013,7,30,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,715,-9,0,734,-19,0,0 +2013,6,21,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,3,0,1155,-1,0,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1545,62,1,1900,39,1,0 +2013,9,4,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1835,-1,0,2008,-20,0,0 +2013,4,4,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,0,0,1355,-9,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1135,-9,0,1311,6,0,0 +2013,7,19,5,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1026,-3,0,1200,-20,0,0 +2013,5,24,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,945,4,0,1055,-2,0,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2135,-6,0,20,-15,0,0 +2013,4,7,7,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1215,-6,0,1355,-25,0,0 +2013,10,30,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1631,84,1,1911,123,1,0 +2013,8,26,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,-1,0,2105,-10,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2010,24,1,2055,15,1,0 +2013,5,20,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1420,0,,1450,0,1,1 +2013,6,30,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1655,13,0,2002,37,1,0 +2013,5,31,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-10,0,930,-15,0,0 +2013,10,10,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,2000,30,1,2211,28,1,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1000,-11,0,1155,2,0,0 +2013,6,5,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,615,-10,0,717,-12,0,0 +2013,8,1,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,923,-4,0,1105,-14,0,0 +2013,7,17,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1800,31,1,2030,69,1,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,910,9,0,1100,18,1,0 +2013,8,9,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,4,0,1657,-7,0,0 +2013,9,9,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-11,0,1011,-19,0,0 +2013,9,21,6,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-10,0,1748,-1,0,0 +2013,10,8,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1619,-7,0,1750,-20,0,0 +2013,4,20,6,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1420,10,0,1800,7,0,0 +2013,5,11,6,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1135,-6,0,1312,-25,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,18,1,1747,48,1,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1310,114,1,1522,105,1,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,-6,0,943,-12,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1124,-4,0,1743,-17,0,0 +2013,8,17,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,20,1,1530,24,1,0 +2013,4,4,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,755,0,0,910,0,0,0 +2013,6,4,2,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-4,0,1346,-11,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,825,-1,0,955,-3,0,0 +2013,4,17,3,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-5,0,935,-9,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-3,0,910,-4,0,0 +2013,8,19,1,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-5,0,1541,-10,0,0 +2013,8,18,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,0,0,1414,-4,0,0 +2013,10,17,4,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,35,1,2035,35,1,0 +2013,6,18,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1710,58,1,1942,62,1,0 +2013,4,1,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1142,10,0,1307,7,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,-2,0,1110,-3,0,0 +2013,4,17,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2135,20,1,2255,25,1,0 +2013,4,30,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,805,-3,0,929,-6,0,0 +2013,5,16,4,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,845,-1,0,1105,-13,0,0 +2013,10,3,4,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1015,0,0,1605,-6,0,0 +2013,9,26,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-10,0,811,-8,0,0 +2013,5,3,5,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,720,-3,0,1035,-14,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,-5,0,2215,-11,0,0 +2013,8,20,2,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,615,-6,0,652,-25,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,7,0,2030,-2,0,0 +2013,7,7,7,9E,12478,John F. Kennedy International,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,1615,0,0,1900,18,1,0 +2013,7,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,5,0,1110,-1,0,0 +2013,4,23,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,0,0,806,2,0,0 +2013,7,31,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1546,-5,0,1612,-8,0,0 +2013,7,28,7,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1800,10,0,2030,29,1,0 +2013,10,13,7,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,835,-6,0,1643,-15,0,0 +2013,9,15,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1113,-12,0,1227,-15,0,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1720,4,0,1830,25,1,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2255,-4,0,2359,-8,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1743,1,0,1837,-15,0,0 +2013,8,2,5,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1010,-9,0,1455,-15,0,0 +2013,7,19,5,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1502,2,0,1655,10,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,43,1,1503,42,1,0 +2013,9,23,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1000,-6,0,1120,-14,0,0 +2013,7,26,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1410,-5,0,1619,-7,0,0 +2013,8,14,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,925,0,0,1110,-3,0,0 +2013,5,6,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,930,4,0,1245,-11,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,3,0,1450,-15,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1557,14,0,1747,7,0,0 +2013,8,13,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-4,0,1442,4,0,0 +2013,8,6,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-6,0,1240,-4,0,0 +2013,7,15,1,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1744,131,1,2000,119,1,0 +2013,8,30,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,0,0,1000,-21,0,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-5,0,920,4,0,0 +2013,8,20,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,3,0,1227,5,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,16,1,1645,7,0,0 +2013,4,10,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,955,-7,0,1310,-29,0,0 +2013,10,31,4,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,630,-7,0,840,-10,0,0 +2013,4,19,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,4,0,2135,13,0,0 +2013,10,11,5,EV,11618,Newark Liberty International,Newark,NJ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,98,1,939,96,1,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,730,28,1,1030,31,1,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-6,0,928,-8,0,0 +2013,5,5,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1630,-3,0,1835,-12,0,0 +2013,7,21,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1525,-2,0,1819,14,0,0 +2013,6,27,4,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,-2,0,1700,-11,0,0 +2013,8,11,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-5,0,809,-16,0,0 +2013,8,18,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1530,11,0,1740,-8,0,0 +2013,9,23,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1553,-5,0,1609,19,1,0 +2013,7,1,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1335,20,1,1455,15,1,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1123,-5,0,1340,-32,0,0 +2013,5,2,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1840,0,0,2100,-15,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-5,0,1838,-12,0,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1120,-6,0,1345,-14,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,600,25,1,720,14,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2040,-3,0,2152,2,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1725,31,1,1830,22,1,0 +2013,5,6,1,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,48,-8,0,630,-8,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2145,-1,0,2317,-8,0,0 +2013,10,31,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2024,-8,0,2113,-14,0,0 +2013,8,28,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,0,0,1455,-5,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1315,-3,0,1500,-2,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1115,1,0,1251,0,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,141,1,2105,142,1,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1100,-4,0,1253,-21,0,0 +2013,9,25,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1840,-5,0,2029,-12,0,0 +2013,9,4,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1403,10,0,1958,22,1,0 +2013,9,18,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,2,0,1055,-9,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,830,-7,0,955,-4,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-5,0,950,-13,0,0 +2013,6,30,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1330,-4,0,1430,-10,0,0 +2013,8,16,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1702,-2,0,1925,-6,0,0 +2013,4,17,3,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1840,-6,0,2059,-3,0,0 +2013,6,20,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,115,-7,0,615,-21,0,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,13,0,1615,-6,0,0 +2013,4,14,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-11,0,1120,-35,0,0 +2013,10,25,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,958,-5,0,1045,-20,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1900,0,,2230,0,1,1 +2013,6,16,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-3,0,1549,-15,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1341,-2,0,1528,-11,0,0 +2013,5,26,7,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,855,-13,0,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2050,59,1,2215,49,1,0 +2013,5,10,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-5,0,1247,-3,0,0 +2013,6,18,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2000,70,1,2055,69,1,0 +2013,7,28,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-3,0,1408,-11,0,0 +2013,8,10,6,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1040,12,0,1217,13,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,12,0,2330,-8,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,54,1,1940,53,1,0 +2013,6,11,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,925,-11,0,1210,0,0,0 +2013,4,16,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-9,0,1120,5,0,0 +2013,9,17,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,52,1,1010,59,1,0 +2013,6,4,2,FL,11066,Port Columbus International,Columbus,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1227,-4,0,1455,-5,0,0 +2013,7,24,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-9,0,1637,-7,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,13,0,2112,-10,0,0 +2013,6,16,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2016,-6,0,2144,-12,0,0 +2013,9,10,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,555,159,1,1150,153,1,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-5,0,1616,-10,0,0 +2013,10,2,3,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1220,-5,0,1510,-2,0,0 +2013,5,5,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,0,0,1435,-3,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,-5,0,2107,0,0,0 +2013,6,29,6,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,615,-1,0,945,-13,0,0 +2013,5,3,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2001,2,0,2136,6,0,0 +2013,7,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2220,15,1,2350,9,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2135,220,1,2315,219,1,0 +2013,5,19,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1215,-3,0,1345,-7,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-4,0,1729,1,0,0 +2013,5,24,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1845,2,0,2015,-8,0,0 +2013,6,28,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-6,0,1014,-10,0,0 +2013,5,7,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-4,0,920,-12,0,0 +2013,9,18,3,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,600,-5,0,740,-34,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1635,3,0,1900,-35,0,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,-2,0,915,-12,0,0 +2013,9,25,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1308,-3,0,1605,-24,0,0 +2013,7,26,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1248,-3,0,0 +2013,10,14,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2038,-13,0,2213,-12,0,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,99,1,1631,82,1,0 +2013,6,4,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1143,-5,0,1930,-16,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,-2,0,1250,-13,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1435,0,0,1910,-8,0,0 +2013,10,9,3,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-9,0,1235,-20,0,0 +2013,10,24,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,600,-4,0,905,-7,0,0 +2013,10,10,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-8,0,1559,-15,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,2,0,850,11,0,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,11,0,1820,6,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,703,-7,0,813,6,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1600,0,0,1835,0,0,0 +2013,7,31,3,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,9,0,1735,-4,0,0 +2013,9,12,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,855,0,0,1046,31,1,0 +2013,6,5,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,27,1,1630,30,1,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1433,4,0,1525,0,0,0 +2013,10,13,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,-4,0,1809,-16,0,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,0,0,2154,-8,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-4,0,2309,0,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,735,-3,0,845,-16,0,0 +2013,8,29,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,635,-1,0,932,-21,0,0 +2013,6,17,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,808,-6,0,1024,-12,0,0 +2013,6,24,1,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,3,0,1010,-12,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1650,22,1,1805,25,1,0 +2013,5,21,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1635,49,1,1805,50,1,0 +2013,9,14,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-7,0,1015,-27,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,755,4,0,1105,6,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,750,-6,0,847,-15,0,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,915,-1,0,1025,-2,0,0 +2013,7,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,-5,0,1344,-13,0,0 +2013,9,25,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,0,0,715,0,0,0 +2013,8,26,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1248,-4,0,1500,-17,0,0 +2013,7,14,7,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2035,0,0,2245,2,0,0 +2013,5,20,1,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1155,-3,0,1615,1,0,0 +2013,7,31,3,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1625,-5,0,1915,-11,0,0 +2013,9,4,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-6,0,1020,-17,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1920,5,0,2158,-30,0,0 +2013,6,4,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,1,0,710,3,0,0 +2013,5,29,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-2,0,1759,1,0,0 +2013,6,23,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,2,0,1649,13,0,0 +2013,6,17,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,153,1,845,177,1,0 +2013,7,27,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,20,1,2155,10,0,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1249,-3,0,1629,-11,0,0 +2013,8,4,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1506,-4,0,1553,-12,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1230,-6,0,1355,-17,0,0 +2013,9,4,3,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1610,2,0,1945,0,0,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1014,0,,1128,0,1,1 +2013,7,5,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,13,0,2024,23,1,0 +2013,6,27,4,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,25,-5,0,557,-9,0,0 +2013,8,4,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-3,0,1930,-13,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,-5,0,2040,-13,0,0 +2013,10,8,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-3,0,810,-3,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,-1,0,1155,-5,0,0 +2013,9,4,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,19,1,1900,19,1,0 +2013,10,23,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,17,1,1600,17,1,0 +2013,9,15,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,730,-8,0,1028,-9,0,0 +2013,5,25,6,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,8,0,1815,4,0,0 +2013,9,22,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1305,55,1,1435,41,1,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-4,0,2105,-11,0,0 +2013,6,2,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,19,1,1546,2,0,0 +2013,9,13,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1300,58,1,1505,58,1,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1427,-2,0,1531,-5,0,0 +2013,7,20,6,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1040,-1,0,1640,-11,0,0 +2013,10,28,1,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,-5,0,1425,-12,0,0 +2013,5,20,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1624,2,0,44,-2,0,0 +2013,8,2,5,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1624,107,1,1926,86,1,0 +2013,5,26,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-17,0,2315,-15,0,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1630,3,0,1930,3,0,0 +2013,4,25,4,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,12,0,1545,12,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-4,0,1451,10,0,0 +2013,7,30,2,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1115,-3,0,1350,-21,0,0 +2013,4,2,2,EV,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1139,30,1,1325,36,1,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1820,-4,0,2019,-26,0,0 +2013,7,30,2,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,645,-1,0,930,-16,0,0 +2013,7,25,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-4,0,940,9,0,0 +2013,5,20,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,51,1,2027,36,1,0 +2013,6,14,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,830,9,0,955,10,0,0 +2013,7,1,1,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1549,124,1,1835,111,1,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-7,0,1617,-6,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1926,53,1,2143,161,1,0 +2013,8,9,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-12,0,1838,-14,0,0 +2013,8,16,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-1,0,1510,-9,0,0 +2013,6,3,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,935,-5,0,1145,-5,0,0 +2013,7,31,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,645,0,0,1025,-4,0,0 +2013,10,15,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2010,-5,0,2226,-13,0,0 +2013,6,16,7,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1700,34,1,1915,47,1,0 +2013,8,2,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,8,0,1250,2,0,0 +2013,10,21,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,13,0,714,14,0,0 +2013,8,24,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1105,-13,0,1630,-6,0,0 +2013,4,18,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1454,27,1,1636,17,1,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,951,5,0,1129,-11,0,0 +2013,10,22,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,12,0,1629,10,0,0 +2013,8,25,7,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1646,12,0,1811,-2,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1135,1,0,1300,-7,0,0 +2013,8,30,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1605,-2,0,1805,-16,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1115,3,0,1235,0,0,0 +2013,7,25,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1522,29,1,1624,15,1,0 +2013,9,30,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-5,0,1039,-6,0,0 +2013,8,1,4,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,715,-2,0,840,-10,0,0 +2013,9,15,7,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,3,0,1140,-5,0,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,13,0,1840,6,0,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-5,0,851,1,0,0 +2013,4,8,1,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,910,-2,0,1145,-5,0,0 +2013,10,9,3,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1338,-7,0,1508,-15,0,0 +2013,6,18,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,105,1,2020,169,1,0 +2013,5,16,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,800,-4,0,1301,7,0,0 +2013,4,5,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-5,0,1415,4,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1959,4,0,2157,-14,0,0 +2013,10,9,3,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1831,-8,0,2125,-3,0,0 +2013,10,24,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,12,0,1550,5,0,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1525,2,0,1625,0,0,0 +2013,8,20,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,-5,0,2159,-9,0,0 +2013,8,27,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1402,-6,0,1520,-19,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,-6,0,1615,-14,0,0 +2013,5,11,6,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,930,-8,0,1320,-17,0,0 +2013,6,3,1,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,1,0,2115,-11,0,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,905,-1,0,1140,-22,0,0 +2013,6,24,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2017,40,1,2250,49,1,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1252,0,0,1745,-1,0,0 +2013,4,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,0,0,2225,-8,0,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-1,0,2140,9,0,0 +2013,6,9,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2105,3,0,2225,0,0,0 +2013,4,6,6,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1513,8,0,1831,0,0,0 +2013,4,9,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1255,6,0,1405,3,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2010,52,1,2055,54,1,0 +2013,7,25,4,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1435,108,1,2300,95,1,0 +2013,10,5,6,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1550,-3,0,1700,-10,0,0 +2013,4,12,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1109,-5,0,1315,-16,0,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1335,-4,0,1525,-22,0,0 +2013,4,14,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-7,0,1501,-3,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,615,-3,0,855,-9,0,0 +2013,5,2,4,EV,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1350,-3,0,1519,3,0,0 +2013,8,18,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,8,0,750,3,0,0 +2013,9,17,2,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1132,-5,0,1248,1,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2110,5,0,2240,0,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,622,-6,0,1045,-7,0,0 +2013,7,5,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1445,-1,0,1846,-7,0,0 +2013,4,28,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,655,14,0,815,7,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2030,-1,0,2214,-15,0,0 +2013,6,16,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,1,0,1225,-3,0,0 +2013,10,24,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1549,0,0,1833,4,0,0 +2013,5,30,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,39,1,6,19,1,0 +2013,5,23,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-2,0,1315,5,0,0 +2013,6,19,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,3,0,1850,1,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1917,0,0,2051,-13,0,0 +2013,4,6,6,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1640,67,1,2020,81,1,0 +2013,6,30,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1658,1,0,2257,7,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1720,2,0,1830,1,0,0 +2013,10,14,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2050,13,0,2225,5,0,0 +2013,7,18,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1520,100,1,1635,71,1,0 +2013,5,9,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1610,-5,0,1816,-15,0,0 +2013,7,8,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,1345,-9,0,2021,-13,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,-5,0,1742,-11,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,-6,0,1130,0,0,0 +2013,6,4,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-9,0,2020,-13,0,0 +2013,10,12,6,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1830,-2,0,2047,-5,0,0 +2013,10,29,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,847,-6,0,1125,-10,0,0 +2013,9,27,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,2000,12,0,2359,-2,0,0 +2013,10,29,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,920,11,0,1020,8,0,0 +2013,6,25,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,547,-1,0,908,-14,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1943,4,0,2110,-11,0,0 +2013,10,9,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1029,-5,0,1459,-5,0,0 +2013,10,14,1,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1456,37,1,1630,40,1,0 +2013,10,30,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,-2,0,1920,-2,0,0 +2013,4,28,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-6,0,1020,-35,0,0 +2013,9,6,5,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,-8,0,2056,-3,0,0 +2013,5,14,2,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2028,-5,0,2150,-5,0,0 +2013,5,6,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,800,-8,0,1354,-26,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2000,30,1,2250,29,1,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1820,14,0,1925,5,0,0 +2013,6,19,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1645,-6,0,1842,-19,0,0 +2013,4,5,5,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1854,-3,0,2000,-17,0,0 +2013,4,15,1,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1024,-2,0,1545,-23,0,0 +2013,6,25,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-2,0,2106,-5,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,936,1,0,1030,-4,0,0 +2013,9,13,5,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2024,-7,0,2133,-16,0,0 +2013,5,14,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1410,-2,0,1530,-2,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,824,0,,1052,0,1,1 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-5,0,2325,-16,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,949,-1,0,1150,-23,0,0 +2013,10,28,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-5,0,1030,-11,0,0 +2013,9,20,5,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,920,-2,0,1430,8,0,0 +2013,8,11,7,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-8,0,1026,-16,0,0 +2013,8,22,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-3,0,1112,-2,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,715,-1,0,850,-2,0,0 +2013,7,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,820,-1,0,945,-3,0,0 +2013,5,9,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1440,9,0,1805,28,1,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1555,5,0,1750,22,1,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,-2,0,100,-6,0,0 +2013,6,6,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,-6,0,1730,5,0,0 +2013,4,24,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,-2,0,1916,20,1,0 +2013,4,24,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-6,0,803,-4,0,0 +2013,10,16,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1325,-7,0,1455,0,0,0 +2013,5,21,2,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,700,-4,0,1525,-6,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,5,0,1325,-7,0,0 +2013,7,7,7,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1625,-2,0,1735,-2,0,0 +2013,10,27,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1040,4,0,1140,-1,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1230,0,,1340,0,1,1 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1715,14,0,1810,18,1,0 +2013,10,10,4,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,715,6,0,841,-13,0,0 +2013,8,9,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,940,5,0,1110,3,0,0 +2013,8,30,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-2,0,1628,-10,0,0 +2013,10,25,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1215,-8,0,1455,-20,0,0 +2013,6,15,6,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1315,33,1,1515,18,1,0 +2013,7,13,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,10,0,1220,-20,0,0 +2013,10,22,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,720,0,0,1008,3,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2211,-1,0,2357,-10,0,0 +2013,7,10,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-12,0,1025,-10,0,0 +2013,8,15,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,129,1,1746,107,1,0 +2013,8,4,7,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,625,0,0,805,-8,0,0 +2013,10,13,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1127,-3,0,1559,-30,0,0 +2013,7,7,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,5,0,1249,16,1,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,844,-2,0,1321,-21,0,0 +2013,4,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,650,-1,0,935,-5,0,0 +2013,4,23,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,607,-11,0,1429,-16,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1644,12,0,115,0,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1010,15,1,1455,-7,0,0 +2013,10,18,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,21,1,2040,12,0,0 +2013,6,28,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1045,94,1,1255,101,1,0 +2013,4,4,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,7,0,1145,4,0,0 +2013,8,29,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1035,60,1,1200,57,1,0 +2013,6,24,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,840,-5,0,1122,8,0,0 +2013,10,29,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1105,0,0,1320,-22,0,0 +2013,5,20,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1745,86,1,2030,76,1,0 +2013,4,3,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,759,-10,0,825,-25,0,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1125,54,1,1715,43,1,0 +2013,5,23,4,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,615,-1,0,1054,-8,0,0 +2013,10,1,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-9,0,955,-27,0,0 +2013,5,18,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1155,0,0,1305,3,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,641,2,0,940,-3,0,0 +2013,4,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,805,-3,0,930,63,1,0 +2013,7,2,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,935,5,0,1620,3,0,0 +2013,5,10,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,3,0,1000,12,0,0 +2013,9,16,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,635,-2,0,820,1,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1252,8,0,1623,4,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2010,22,1,2055,32,1,0 +2013,7,7,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,-5,0,1656,-13,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2057,4,0,2359,3,0,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,900,93,1,1142,78,1,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,805,9,0,1150,-1,0,0 +2013,9,9,1,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1910,9,0,2045,3,0,0 +2013,8,29,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-5,0,810,-14,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,915,50,1,1135,101,1,0 +2013,8,7,3,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1752,5,0,2000,14,0,0 +2013,4,15,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1444,20,1,1735,13,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,825,0,0,930,-15,0,0 +2013,4,21,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1530,-6,0,1810,-30,0,0 +2013,5,16,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,955,-7,0,1122,0,0,0 +2013,8,1,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1550,-4,0,1705,-21,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,3,0,2311,31,1,0 +2013,6,28,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,170,1,1605,216,1,0 +2013,9,26,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,818,-3,0,1426,-11,0,0 +2013,6,16,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1435,-8,0,0 +2013,10,18,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1822,7,0,1925,-5,0,0 +2013,6,11,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1253,-2,0,1619,50,1,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,2020,1,0,2300,20,1,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-2,0,1112,-6,0,0 +2013,9,27,5,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1810,14,0,1920,9,0,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,814,13,0,913,8,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,30,1,1439,16,1,0 +2013,7,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,201,1,2356,189,1,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,-12,0,1351,-16,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,21,1,1622,18,1,0 +2013,6,5,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1800,-14,0,2216,-18,0,0 +2013,6,29,6,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,857,-8,0,1010,-13,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,635,-7,0,953,-9,0,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,-6,0,1023,-19,0,0 +2013,6,18,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,630,-2,0,840,29,1,0 +2013,9,19,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,2,0,1133,-4,0,0 +2013,8,31,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-6,0,843,-3,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2200,32,1,2320,31,1,0 +2013,5,15,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1339,28,1,1654,24,1,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1230,-2,0,1410,-1,0,0 +2013,6,25,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,-1,0,2135,-6,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1530,1,0,1915,-18,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,-1,0,1655,-9,0,0 +2013,10,26,6,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,920,-3,0,1155,8,0,0 +2013,10,15,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,-3,0,1835,-1,0,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,834,12,0,1449,4,0,0 +2013,4,28,7,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,959,-10,0,1110,-9,0,0 +2013,5,1,3,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,934,-5,0,1111,-17,0,0 +2013,4,8,1,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-7,0,1510,-16,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1830,109,1,1920,111,1,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-8,0,2346,-14,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1020,-7,0,1310,-14,0,0 +2013,7,16,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1040,-1,0,1059,-12,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,0,0,1050,-5,0,0 +2013,6,29,6,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,825,9,0,1111,33,1,0 +2013,8,2,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,5,0,2055,-12,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1425,6,0,0 +2013,6,10,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1043,96,1,1200,92,1,0 +2013,4,8,1,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,800,0,0,1016,13,0,0 +2013,9,18,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,4,0,505,4,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,900,-3,0,1105,-16,0,0 +2013,8,15,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,903,-3,0,1146,-18,0,0 +2013,5,29,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,14,0,1457,9,0,0 +2013,9,21,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,0,0,1000,-4,0,0 +2013,6,8,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1745,-1,0,1910,0,0,0 +2013,7,15,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-6,0,809,13,0,0 +2013,8,22,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-2,0,1415,-12,0,0 +2013,5,29,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-9,0,2034,-26,0,0 +2013,6,22,6,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,759,-6,0,1004,-16,0,0 +2013,9,16,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1540,7,0,2300,9,0,0 +2013,10,3,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,8,0,1920,4,0,0 +2013,10,18,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1900,-5,0,2134,5,0,0 +2013,4,14,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1731,22,1,2030,7,0,0 +2013,8,25,7,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,710,-2,0,830,-26,0,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,-6,0,835,-9,0,0 +2013,6,16,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,7,0,2230,-9,0,0 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,930,92,1,1500,83,1,0 +2013,5,16,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2025,-11,0,2115,-15,0,0 +2013,8,1,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,1,0,1800,0,0,0 +2013,9,11,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1805,64,1,2115,90,1,0 +2013,10,16,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,28,1,1509,28,1,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1050,12,0,1820,3,0,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,800,-2,0,905,-1,0,0 +2013,6,15,6,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1945,37,1,2130,28,1,0 +2013,4,12,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,1350,63,1,1652,67,1,0 +2013,10,10,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1031,-6,0,1240,-26,0,0 +2013,10,16,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1656,3,0,2228,-8,0,0 +2013,9,15,7,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1725,23,1,1940,12,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1425,19,1,1635,4,0,0 +2013,5,26,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1439,-11,0,1615,-1,0,0 +2013,6,5,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1051,36,1,1217,39,1,0 +2013,7,18,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,-4,0,2200,55,1,0 +2013,7,9,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1115,-6,0,1255,-9,0,0 +2013,10,13,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,-4,0,1852,-4,0,0 +2013,4,12,5,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2015,0,0,455,-2,0,0 +2013,8,7,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-8,0,1350,-16,0,0 +2013,5,21,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1934,-10,0,2105,2,0,0 +2013,8,25,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,722,-4,0,1020,-10,0,0 +2013,9,4,3,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,820,22,1,1405,20,1,0 +2013,4,16,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1108,8,0,1704,-12,0,0 +2013,4,12,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,15,1,1200,10,0,0 +2013,10,9,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1825,23,1,2115,24,1,0 +2013,7,5,5,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,605,4,0,732,-5,0,0 +2013,9,8,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-7,0,1533,-29,0,0 +2013,6,10,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1108,-2,0,1213,-12,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1058,20,1,1348,0,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1014,-4,0,1227,-23,0,0 +2013,8,11,7,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-7,0,1914,-6,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-5,0,1015,7,0,0 +2013,7,27,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1242,2,0,1805,-14,0,0 +2013,10,6,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1435,22,1,1550,16,1,0 +2013,5,11,6,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,607,0,0,926,-24,0,0 +2013,6,25,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1037,131,1,1134,127,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1200,3,0,1332,-3,0,0 +2013,4,20,6,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-6,0,1025,9,0,0 +2013,8,8,4,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1555,0,0,1904,52,1,0 +2013,8,17,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,-9,0,2154,3,0,0 +2013,5,20,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,38,1,1720,26,1,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1840,1,0,2115,12,0,0 +2013,8,18,7,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1710,3,0,1845,-14,0,0 +2013,8,26,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-8,0,2130,12,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-13,0,1612,7,0,0 +2013,8,21,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-10,0,1540,-8,0,0 +2013,9,8,7,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,1,0,935,-9,0,0 +2013,10,15,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1300,-3,0,1510,-4,0,0 +2013,9,27,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1800,0,0,2118,-24,0,0 +2013,7,31,3,DL,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1846,-7,0,2357,-16,0,0 +2013,5,21,2,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,914,2,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,46,1,1440,35,1,0 +2013,8,27,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,519,-7,0,542,-28,0,0 +2013,10,20,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,942,-1,0,1156,1,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2140,-1,0,2250,2,0,0 +2013,9,26,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1700,-7,0,1837,-18,0,0 +2013,8,8,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,-7,0,2038,4,0,0 +2013,9,29,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,1045,8,0,0 +2013,9,30,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,850,-1,0,1000,20,1,0 +2013,6,5,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,955,60,1,1618,63,1,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,-1,0,1334,-9,0,0 +2013,6,15,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,935,-3,0,1045,-5,0,0 +2013,7,26,5,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1857,0,0,2121,-16,0,0 +2013,9,24,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,935,-9,0,1226,-9,0,0 +2013,5,3,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-3,0,2100,1,0,0 +2013,7,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2242,-1,0,13,1,0,0 +2013,8,16,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1710,-7,0,1945,-14,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1905,18,1,2036,9,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1745,-2,0,2120,-9,0,0 +2013,5,5,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-8,0,947,-28,0,0 +2013,9,18,3,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1540,-5,0,1707,-4,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,0,0,1027,7,0,0 +2013,7,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,29,1,2249,33,1,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1400,-1,0,1515,-14,0,0 +2013,6,8,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,0,0,815,-9,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,600,-1,0,700,1,0,0 +2013,10,20,7,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1938,-2,0,2313,-16,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2300,36,1,112,18,1,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1859,12,0,2327,16,1,0 +2013,6,23,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,735,-7,0,911,-18,0,0 +2013,9,30,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-1,0,1420,-20,0,0 +2013,8,12,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1515,3,0,1755,15,1,0 +2013,5,21,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1246,212,1,1430,214,1,0 +2013,7,3,3,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-3,0,1129,9,0,0 +2013,10,21,1,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,545,-2,0,759,-9,0,0 +2013,7,2,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-9,0,1649,-23,0,0 +2013,5,13,1,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1515,5,0,1645,-4,0,0 +2013,6,28,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,800,0,0,910,-2,0,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1131,-5,0,1233,-3,0,0 +2013,5,12,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-3,0,1027,-22,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,940,0,0,1110,-7,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-7,0,1837,-10,0,0 +2013,9,22,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,-9,0,1939,-20,0,0 +2013,10,3,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1340,10,0,1931,17,1,0 +2013,5,14,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-3,0,735,-11,0,0 +2013,6,28,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-2,0,1105,1,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1755,76,1,1929,86,1,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,950,9,0,1745,-5,0,0 +2013,5,26,7,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1536,4,0,1650,6,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,-6,0,1106,-28,0,0 +2013,5,7,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,2000,18,1,2209,7,0,0 +2013,5,22,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1536,-2,0,1812,-10,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1300,3,0,1930,-3,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,6,0,1140,0,0,0 +2013,8,2,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,0,0,1102,-13,0,0 +2013,5,30,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1937,-6,0,2155,-26,0,0 +2013,4,14,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1015,-7,0,1205,-21,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1758,-3,0,2018,5,0,0 +2013,5,8,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1146,-5,0,1433,-9,0,0 +2013,10,5,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,-14,0,1636,-17,0,0 +2013,6,7,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2011,8,0,2328,2,0,0 +2013,4,22,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,811,13,0,930,6,0,0 +2013,7,22,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1343,-3,0,1715,8,0,0 +2013,8,12,1,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,55,1,1843,30,1,0 +2013,8,20,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,710,-2,0,950,-7,0,0 +2013,4,29,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,12,0,1310,-8,0,0 +2013,10,23,3,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,850,2,0,1255,-26,0,0 +2013,9,17,2,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,0,0,2130,-18,0,0 +2013,6,8,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-13,0,1200,-6,0,0 +2013,5,1,3,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-5,0,1603,-13,0,0 +2013,10,31,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-4,0,1645,-12,0,0 +2013,9,22,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,735,-3,0,1031,-14,0,0 +2013,10,4,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,607,-3,0,903,35,1,0 +2013,5,13,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1605,-6,0,1800,-9,0,0 +2013,8,6,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,-1,0,2032,-2,0,0 +2013,6,4,2,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1802,3,0,2140,6,0,0 +2013,4,8,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-5,0,1355,5,0,0 +2013,6,9,7,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1113,-2,0,1241,-10,0,0 +2013,4,12,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1115,-10,0,1305,12,0,0 +2013,4,2,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-5,0,1445,-1,0,0 +2013,8,23,5,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1812,-3,0,2040,-16,0,0 +2013,4,28,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,0,0,1350,-13,0,0 +2013,7,22,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,1,0,728,-11,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1331,108,1,1549,114,1,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1500,-6,0,1645,-5,0,0 +2013,4,28,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1715,-2,0,1927,-3,0,0 +2013,5,10,5,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,610,127,1,812,198,1,0 +2013,5,11,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,-11,0,1733,-23,0,0 +2013,4,14,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1135,-1,0,1315,-14,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,929,2,0,1112,-3,0,0 +2013,8,7,3,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,-2,0,1555,-3,0,0 +2013,5,8,3,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1405,-3,0,1647,2,0,0 +2013,5,19,7,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1201,112,1,1520,126,1,0 +2013,9,11,3,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1635,-1,0,1820,20,1,0 +2013,8,23,5,9E,14307,Theodore Francis Green State,Providence,RI,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-4,0,2033,-25,0,0 +2013,5,13,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1550,-2,0,1845,-9,0,0 +2013,10,30,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1835,14,0,2015,6,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-5,0,1349,-35,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2020,48,1,2215,48,1,0 +2013,8,4,7,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,38,1,1136,29,1,0 +2013,4,13,6,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,630,-6,0,750,-16,0,0 +2013,9,17,2,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-6,0,1505,-14,0,0 +2013,7,7,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1440,-1,0,1825,-1,0,0 +2013,6,20,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,12,0,2356,24,1,0 +2013,8,15,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,34,1,1115,42,1,0 +2013,9,19,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1105,-6,0,1215,-14,0,0 +2013,7,15,1,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-2,0,1300,-19,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2210,15,1,25,-21,0,0 +2013,5,6,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1929,-3,0,2017,-9,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1840,0,0,2310,-1,0,0 +2013,6,27,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,35,1,1710,46,1,0 +2013,4,14,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,745,-8,0,911,-16,0,0 +2013,4,7,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1705,-3,0,1825,-15,0,0 +2013,4,21,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-4,0,2046,-13,0,0 +2013,4,27,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,910,3,0,0 +2013,8,19,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,3,0,1724,-1,0,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,27,1,1847,10,0,0 +2013,5,27,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,850,-2,0,1215,-5,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1520,83,1,1814,62,1,0 +2013,6,5,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1410,-4,0,1830,-6,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,-3,0,2345,-15,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,6,0,2230,0,0,0 +2013,4,6,6,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1035,0,0,1215,-13,0,0 +2013,10,30,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,20,1,2135,30,1,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1340,39,1,1455,39,1,0 +2013,9,27,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,0,0,1944,29,1,0 +2013,9,22,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1035,11,0,1155,-1,0,0 +2013,6,15,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1555,56,1,1830,63,1,0 +2013,5,15,3,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1750,0,0,2335,55,1,0 +2013,7,28,7,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,2,0,2025,-2,0,0 +2013,10,31,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-3,0,1240,-15,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1730,-3,0,1850,-6,0,0 +2013,6,19,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-13,0,1633,-3,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,639,1,0,925,-2,0,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-2,0,1328,-7,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1215,17,1,1555,13,0,0 +2013,10,13,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2000,-3,0,2125,-7,0,0 +2013,8,1,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1429,28,1,1714,87,1,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,-4,0,932,0,0,0 +2013,7,21,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,33,1,845,28,1,0 +2013,9,18,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,905,-6,0,1130,-20,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1810,9,0,2000,7,0,0 +2013,10,11,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,740,-4,0,835,-4,0,0 +2013,6,23,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,-3,0,2135,-10,0,0 +2013,10,17,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1115,24,1,1702,0,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1745,6,0,1910,0,0,0 +2013,7,19,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,50,1,2012,34,1,0 +2013,5,7,2,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,-7,0,1042,-13,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,27,1,1025,11,0,0 +2013,10,27,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,0,0,610,1,0,0 +2013,7,24,3,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,-5,0,1150,4,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,545,-1,0,717,-18,0,0 +2013,10,5,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1739,1,0,1928,-9,0,0 +2013,10,14,1,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,15,1,2020,-7,0,0 +2013,7,30,2,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,850,9,0,1014,-8,0,0 +2013,6,14,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1950,-3,0,2310,-21,0,0 +2013,5,2,4,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,22,1,2025,7,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1200,2,0,1355,24,1,0 +2013,8,12,1,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1350,4,0,1500,38,1,0 +2013,7,13,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1330,-3,0,1708,-3,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,735,12,0,1050,-3,0,0 +2013,8,2,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,5,0,2139,20,1,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2200,62,1,2305,61,1,0 +2013,6,3,1,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1325,124,1,1444,115,1,0 +2013,8,17,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1335,-11,0,1414,-10,0,0 +2013,5,20,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1215,22,1,1325,49,1,0 +2013,7,5,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-2,0,1555,-10,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1325,-2,0,1430,-13,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2210,12,0,2340,-4,0,0 +2013,10,9,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,12,0,1835,0,0,0 +2013,10,21,1,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1120,237,1,1256,243,1,0 +2013,7,12,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,10,0,1735,22,1,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,1,0,2002,16,1,0 +2013,8,21,3,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,8,0,835,10,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1000,9,0,1715,-11,0,0 +2013,5,21,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1500,81,1,1818,115,1,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1215,0,0,1335,-5,0,0 +2013,8,26,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2100,-6,0,2215,-8,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,-6,0,1333,5,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1357,0,0,1530,3,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1150,0,,1405,0,1,1 +2013,7,12,5,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1415,-4,0,1530,-19,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1320,153,1,1445,152,1,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1345,18,1,1536,-6,0,0 +2013,5,10,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,-2,0,1435,-11,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2114,43,1,2359,46,1,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1525,-2,0,1650,-8,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1345,9,0,1512,10,0,0 +2013,5,2,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,8,0,800,10,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2245,23,1,2346,17,1,0 +2013,6,9,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1600,11,0,1720,5,0,0 +2013,10,19,6,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,2,0,2010,-13,0,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2255,-5,0,4,-5,0,0 +2013,4,13,6,9E,14524,Richmond International,Richmond,VA,12478,John F. Kennedy International,New York,NY,605,-3,0,724,-14,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2220,-7,0,2235,-10,0,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,630,-1,0,720,-6,0,0 +2013,5,27,1,UA,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1210,40,1,1349,33,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,822,-2,0,944,-7,0,0 +2013,5,1,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,824,-6,0,935,-25,0,0 +2013,7,9,2,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1405,0,0,2200,3,0,0 +2013,10,13,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,854,-7,0,1014,-18,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1805,4,0,1900,-1,0,0 +2013,9,28,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1835,-5,0,2115,-2,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,25,1,1716,23,1,0 +2013,10,21,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-8,0,1125,-4,0,0 +2013,6,14,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1241,1,0,1539,-3,0,0 +2013,9,13,5,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1400,65,1,1550,51,1,0 +2013,10,1,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-5,0,1626,-15,0,0 +2013,10,29,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,855,9,0,1029,8,0,0 +2013,10,1,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,900,-14,0,0 +2013,10,13,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,822,-6,0,1646,-33,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,8,0,1525,-16,0,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2228,2,0,620,-8,0,0 +2013,10,16,3,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1132,-6,0,1355,-6,0,0 +2013,10,2,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,2,0,1355,-2,0,0 +2013,5,1,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,-5,0,1158,-15,0,0 +2013,10,13,7,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,735,-4,0,1559,-10,0,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1635,-11,0,1902,0,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-3,0,1018,-8,0,0 +2013,5,13,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1754,-5,0,1931,3,0,0 +2013,7,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,12,0,1903,69,1,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,15,1,1420,10,0,0 +2013,8,4,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,950,-7,0,1250,-19,0,0 +2013,7,11,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1348,0,0,1458,6,0,0 +2013,8,19,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1100,13,0,1903,12,0,0 +2013,7,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1210,4,0,1335,-5,0,0 +2013,8,18,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,-3,0,1924,2,0,0 +2013,10,7,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1440,1,0,2315,-12,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,60,1,1850,96,1,0 +2013,7,11,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,25,1,1650,23,1,0 +2013,8,20,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-2,0,1400,-19,0,0 +2013,4,24,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1430,-8,0,1728,-6,0,0 +2013,7,6,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1901,4,0,1925,1,0,0 +2013,5,1,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,5,0,1330,9,0,0 +2013,5,11,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1435,-11,0,1828,-34,0,0 +2013,5,9,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1819,0,,1904,0,1,1 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2010,-2,0,2150,-11,0,0 +2013,6,11,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,843,-4,0,1249,-4,0,0 +2013,9,5,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,715,-3,0,1005,-6,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-1,0,1032,-5,0,0 +2013,7,4,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,800,-11,0,916,0,1,1 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-2,0,1258,-17,0,0 +2013,5,30,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,-2,0,1840,86,1,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1530,-1,0,1648,-30,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1945,20,1,2140,31,1,0 +2013,6,16,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-3,0,1125,-9,0,0 +2013,8,4,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,1,0,800,-7,0,0 +2013,7,7,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2005,22,1,2200,17,1,0 +2013,5,12,7,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-2,0,1210,1,0,0 +2013,7,9,2,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-2,0,2035,-25,0,0 +2013,9,24,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1523,-3,0,1634,-8,0,0 +2013,4,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1810,3,0,1950,-6,0,0 +2013,6,29,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-8,0,1115,-5,0,0 +2013,9,13,5,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,737,0,0,1105,92,1,0 +2013,5,13,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-2,0,900,-27,0,0 +2013,9,11,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-6,0,1059,-6,0,0 +2013,6,12,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-4,0,1439,-21,0,0 +2013,10,6,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,-4,0,1720,4,0,0 +2013,10,21,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1711,0,0,2344,-17,0,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,5,0,1900,93,1,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,-7,0,1933,-16,0,0 +2013,7,9,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1355,0,,1500,0,1,1 +2013,9,20,5,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,545,-2,0,803,-11,0,0 +2013,6,20,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-8,0,751,-10,0,0 +2013,4,22,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,741,12,0,0 +2013,8,23,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,610,-4,0,730,-3,0,0 +2013,8,10,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,4,0,1122,7,0,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2157,-3,0,2237,-8,0,0 +2013,4,8,1,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1933,0,0,2142,10,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2215,0,0,2352,-1,0,0 +2013,7,17,3,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,750,-7,0,1345,6,0,0 +2013,5,5,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,841,-22,0,0 +2013,9,27,5,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,-6,0,501,-10,0,0 +2013,5,11,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-12,0,1749,-9,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1935,7,0,2110,-5,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1700,7,0,1835,8,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,80,1,1315,90,1,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,2,0,1800,5,0,0 +2013,8,17,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1946,9,0,2127,1,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,700,-1,0,925,-4,0,0 +2013,6,11,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1741,16,1,1911,13,0,0 +2013,5,22,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,7,0,1012,-3,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,625,0,0,735,-7,0,0 +2013,9,9,1,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,700,0,0,740,-13,0,0 +2013,4,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1745,11,0,2000,5,0,0 +2013,10,15,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1044,36,1,1425,21,1,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1026,117,1,1205,193,1,0 +2013,4,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,657,-2,0,854,-1,0,0 +2013,7,26,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,5,0,1815,-3,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1952,39,1,2318,26,1,0 +2013,6,28,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1210,-2,0,1355,0,0,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1510,-4,0,1758,-32,0,0 +2013,10,23,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,650,-2,0,920,9,0,0 +2013,6,15,6,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1210,1,0,1356,2,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-5,0,917,17,1,0 +2013,8,10,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,915,-9,0,1155,-13,0,0 +2013,10,2,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,530,9,0,706,8,0,0 +2013,4,4,4,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,13,0,1915,4,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1944,0,0,2124,-13,0,0 +2013,6,30,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1240,-8,0,1305,-15,0,0 +2013,4,24,3,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,700,-3,0,1000,0,0,0 +2013,7,21,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-5,0,1525,-11,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,34,1,1624,23,1,0 +2013,5,29,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1840,60,1,2132,71,1,0 +2013,7,25,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,25,1,1630,18,1,0 +2013,8,13,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2336,-5,0,525,-13,0,0 +2013,10,31,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2340,-5,0,604,5,0,0 +2013,10,6,7,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2325,6,0,543,6,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,615,0,0,815,-24,0,0 +2013,7,31,3,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1510,0,0,1900,25,1,0 +2013,7,3,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,837,-10,0,935,-16,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,-2,0,2036,-5,0,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,935,0,0,1220,6,0,0 +2013,7,25,4,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,2340,-2,0,700,9,0,0 +2013,7,25,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,740,-1,0,855,-13,0,0 +2013,10,26,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1439,3,0,1533,18,1,0 +2013,9,13,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,610,-7,0,930,-19,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-1,0,1023,-3,0,0 +2013,6,27,4,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1001,-9,0,1120,-17,0,0 +2013,7,14,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,600,-4,0,840,-15,0,0 +2013,10,21,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1810,-7,0,2104,2,0,0 +2013,4,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1656,-3,0,1809,-11,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1700,29,1,1839,132,1,0 +2013,9,29,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1615,-4,0,1913,14,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1645,-1,0,1850,10,0,0 +2013,9,27,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,7,0,1500,-18,0,0 +2013,5,12,7,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,-2,0,1127,-13,0,0 +2013,7,10,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,2,0,1117,-7,0,0 +2013,4,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,940,-4,0,1041,1,0,0 +2013,4,18,4,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1455,57,1,1940,42,1,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-5,0,2044,-32,0,0 +2013,9,18,3,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2105,0,0,2345,0,0,0 +2013,4,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1530,6,0,1630,17,1,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1527,13,0,1637,27,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1920,40,1,2020,31,1,0 +2013,9,21,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1205,-4,0,1335,-6,0,0 +2013,10,26,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2153,-4,0,2303,-15,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1042,57,1,1524,41,1,0 +2013,7,2,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1545,13,0,1700,9,0,0 +2013,5,29,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-1,0,1533,-13,0,0 +2013,5,20,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1800,-3,0,2325,40,1,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1812,5,0,2124,-4,0,0 +2013,6,4,2,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1430,-6,0,2255,-2,0,0 +2013,8,14,3,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-1,0,825,-6,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,-5,0,2140,-14,0,0 +2013,10,24,4,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1715,3,0,2024,-29,0,0 +2013,9,27,5,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-5,0,1249,-19,0,0 +2013,6,15,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,655,1,0,700,-3,0,0 +2013,9,25,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1116,-5,0,1459,-15,0,0 +2013,8,28,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,725,1,0,830,14,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1725,26,1,2310,42,1,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,630,-2,0,755,5,0,0 +2013,7,25,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1605,-3,0,1730,-9,0,0 +2013,10,7,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,719,-4,0,1015,-20,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,750,42,1,900,47,1,0 +2013,7,16,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-3,0,1010,-9,0,0 +2013,6,14,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,600,-2,0,720,-3,0,0 +2013,8,8,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,3,0,753,0,0,0 +2013,7,27,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1025,-9,0,1309,-3,0,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1301,3,0,1419,-3,0,0 +2013,10,20,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1521,-3,0,1629,-21,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,262,1,2212,216,1,0 +2013,4,28,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-5,0,1340,-10,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-5,0,1311,-14,0,0 +2013,8,12,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,2,0,1735,8,0,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-7,0,701,-11,0,0 +2013,5,23,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1433,3,0,1757,-7,0,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1510,-4,0,2305,1,0,0 +2013,5,7,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-8,0,852,-19,0,0 +2013,10,31,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1351,2,0,1658,-6,0,0 +2013,6,26,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,113,1,2137,98,1,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,2143,-2,0,2237,-4,0,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1020,-4,0,1138,-16,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2116,70,1,2242,52,1,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,5,0,1255,5,0,0 +2013,4,21,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-5,0,1237,-1,0,0 +2013,5,9,4,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,655,-10,0,816,-6,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-3,0,725,-7,0,0 +2013,5,6,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-5,0,2052,0,0,0 +2013,10,13,7,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-1,0,1645,-18,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1555,5,0,2040,-1,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,-3,0,1609,7,0,0 +2013,6,24,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-4,0,1100,0,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1522,8,0,1623,0,0,0 +2013,6,24,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-10,0,1931,-10,0,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,-3,0,1525,-6,0,0 +2013,6,26,3,EV,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1743,146,1,1900,136,1,0 +2013,6,3,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-5,0,1115,-6,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1355,5,0,1448,-2,0,0 +2013,5,6,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,1055,-3,0,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,179,1,2250,193,1,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,600,4,0,731,-7,0,0 +2013,8,3,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,621,-2,0,717,1,0,0 +2013,4,3,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,3,0,2015,5,0,0 +2013,7,13,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1005,4,0,1120,-8,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2000,15,1,2306,58,1,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,-1,0,1120,35,1,0 +2013,5,1,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,-2,0,1545,-7,0,0 +2013,5,11,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1915,-7,0,2040,-21,0,0 +2013,7,31,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,825,-2,0,1140,-10,0,0 +2013,8,12,1,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,-9,0,1950,-21,0,0 +2013,8,28,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-5,0,2126,39,1,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,31,1,1800,48,1,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1735,15,1,2310,-17,0,0 +2013,5,15,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,758,-15,0,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-4,0,1504,-2,0,0 +2013,5,20,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-4,0,1918,-12,0,0 +2013,9,25,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1054,-7,0,1309,-11,0,0 +2013,6,24,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,-9,0,1945,-23,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1853,-3,0,2213,-15,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1243,14,0,1420,5,0,0 +2013,7,12,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1235,-3,0,1440,10,0,0 +2013,6,7,5,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-7,0,1817,5,0,0 +2013,10,14,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1225,17,1,1355,9,0,0 +2013,10,27,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1200,0,0,1320,-7,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2000,13,0,2220,7,0,0 +2013,4,20,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1230,8,0,1309,23,1,0 +2013,6,8,6,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,615,-4,0,755,-15,0,0 +2013,10,16,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-5,0,2136,-12,0,0 +2013,8,4,7,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2350,48,1,548,31,1,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1750,58,1,2315,45,1,0 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2029,-5,0,2331,-32,0,0 +2013,8,29,4,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1950,-8,0,2102,-8,0,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,847,-4,0,1039,-12,0,0 +2013,4,7,7,MQ,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1700,-8,0,1835,-23,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1336,-6,0,1512,-14,0,0 +2013,4,16,2,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,-1,0,1230,2,0,0 +2013,6,7,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,44,1,2249,47,1,0 +2013,6,8,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-2,0,848,8,0,0 +2013,8,6,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1020,-3,0,1226,-1,0,0 +2013,8,6,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1710,19,1,2000,12,0,0 +2013,10,24,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,608,-2,0,720,-2,0,0 +2013,8,8,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,915,0,0,1644,11,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1150,5,0,1830,-3,0,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,2,0,1215,0,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1155,16,1,1325,6,0,0 +2013,6,22,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1115,24,1,1235,21,1,0 +2013,7,11,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,10,0,2051,12,0,0 +2013,6,4,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,-3,0,2200,0,0,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,741,-7,0,1051,-54,0,0 +2013,5,3,5,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1010,9,0,1245,-6,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,0,0,2159,1,0,0 +2013,5,4,6,EV,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1133,-3,0,1419,9,0,0 +2013,10,24,4,OO,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,32,1,1402,31,1,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1243,-4,0,1405,-6,0,0 +2013,6,6,4,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1445,24,1,1600,3,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,5,0,1950,24,1,0 +2013,5,8,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-3,0,923,6,0,0 +2013,8,26,1,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1347,-1,0,1603,-14,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,43,1,2349,46,1,0 +2013,4,17,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1526,0,,1709,0,1,1 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-1,0,2059,8,0,0 +2013,7,8,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,14,0,837,23,1,0 +2013,6,13,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-5,0,751,-31,0,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1618,-1,0,1709,0,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1900,5,0,2030,8,0,0 +2013,10,31,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,920,13,0,1235,-11,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1415,-2,0,1525,-15,0,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-4,0,1810,-16,0,0 +2013,6,30,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,55,1,1656,63,1,0 +2013,8,10,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,1,0,2202,-1,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,22,1,1810,14,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,3,0,1050,3,0,0 +2013,7,21,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,184,1,1925,207,1,0 +2013,8,8,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1540,-2,0,1745,3,0,0 +2013,10,15,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,600,-3,0,710,9,0,0 +2013,8,2,5,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2057,20,1,2329,31,1,0 +2013,9,13,5,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1859,86,1,2210,87,1,0 +2013,9,16,1,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,600,-1,0,744,-20,0,0 +2013,7,18,4,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,645,22,1,934,-1,0,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,845,-3,0,1001,-27,0,0 +2013,10,23,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1852,6,0,2017,-7,0,0 +2013,9,16,1,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-1,0,614,-20,0,0 +2013,4,12,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1541,-3,0,1915,-20,0,0 +2013,10,18,5,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,729,-5,0,914,-2,0,0 +2013,7,20,6,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1937,-5,0,2208,-12,0,0 +2013,6,2,7,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1445,59,1,1945,75,1,0 +2013,7,14,7,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1910,2,0,2132,9,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,-1,0,1152,-8,0,0 +2013,6,21,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2215,0,0,620,-11,0,0 +2013,8,28,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,0,0,1205,-4,0,0 +2013,9,17,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1539,-6,0,1716,-16,0,0 +2013,7,3,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,-4,0,2350,-3,0,0 +2013,9,18,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1215,-2,0,1509,-23,0,0 +2013,8,24,6,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,819,45,1,930,34,1,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,2,0,1820,2,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1205,8,0,1310,9,0,0 +2013,5,27,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1720,50,1,1855,42,1,0 +2013,7,9,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1010,-9,0,1320,-18,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2245,-5,0,111,0,0,0 +2013,4,29,1,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,726,-10,0,928,-38,0,0 +2013,7,9,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1250,3,0,1407,-7,0,0 +2013,10,13,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2154,27,1,2306,28,1,0 +2013,7,22,1,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,805,11,0,1014,24,1,0 +2013,5,28,2,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1220,133,1,1700,129,1,0 +2013,10,20,7,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,0,0,900,7,0,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1650,16,1,1820,9,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1101,-2,0,1236,-24,0,0 +2013,10,15,2,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,959,-4,0,1230,-6,0,0 +2013,5,18,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-3,0,2015,-9,0,0 +2013,10,30,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1556,-3,0,2100,0,0,0 +2013,4,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1330,7,0,1614,152,1,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1055,-1,0,1855,-9,0,0 +2013,9,6,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,915,2,0,1230,-4,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,105,1,1230,102,1,0 +2013,10,23,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,10,0,2256,2,0,0 +2013,7,8,1,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,129,1,756,109,1,0 +2013,4,15,1,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1011,-6,0,1315,-7,0,0 +2013,5,17,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,730,-1,0,1330,-12,0,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,153,1,2230,140,1,0 +2013,5,31,5,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-1,0,1335,-9,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,715,1,0,1005,-4,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,9,0,1730,25,1,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-1,0,1520,-12,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,2,0,2359,5,0,0 +2013,9,14,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-5,0,1350,-14,0,0 +2013,4,23,2,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,915,-5,0,1205,2,0,0 +2013,4,22,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-3,0,1022,-8,0,0 +2013,5,30,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,823,15,1,1105,30,1,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-3,0,1240,10,0,0 +2013,6,27,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1727,-4,0,2100,9,0,0 +2013,7,31,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,2,0,1920,-8,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,8,0,26,-5,0,0 +2013,4,28,7,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1850,-4,0,2340,-24,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1615,38,1,2220,17,1,0 +2013,5,3,5,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1000,0,0,1150,-3,0,0 +2013,6,29,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1915,-5,0,2100,-14,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1820,-1,0,2215,1,0,0 +2013,9,21,6,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1332,-7,0,1500,-18,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1055,-6,0,1420,-16,0,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1315,-1,0,1558,-8,0,0 +2013,8,31,6,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,658,-4,0,910,14,0,0 +2013,8,17,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2031,-6,0,2337,-9,0,0 +2013,9,23,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1744,-1,0,2010,-11,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,-3,0,1331,-8,0,0 +2013,5,5,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,2,0,1629,50,1,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,615,0,0,710,-12,0,0 +2013,9,25,3,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,-10,0,1520,-35,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1425,7,0,1545,-3,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,60,1,1040,74,1,0 +2013,6,12,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2158,1,0,23,-14,0,0 +2013,8,26,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1730,18,1,1905,5,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1459,0,0,1725,-33,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,650,-6,0,840,-15,0,0 +2013,4,17,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,0,0,1225,-4,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1225,2,0,1942,3,0,0 +2013,7,31,3,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-1,0,1320,-1,0,0 +2013,5,23,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1010,-2,0,1143,-2,0,0 +2013,6,2,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-1,0,1554,9,0,0 +2013,8,1,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,828,-9,0,1037,-7,0,0 +2013,7,17,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1824,15,1,2022,-1,0,0 +2013,7,26,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1855,6,0,2120,6,0,0 +2013,7,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,715,-1,0,1009,10,0,0 +2013,10,31,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,725,-14,0,820,-22,0,0 +2013,4,8,1,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2150,6,0,2305,-3,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1910,-4,0,2054,-28,0,0 +2013,4,26,5,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-5,0,1955,-17,0,0 +2013,5,14,2,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1205,-1,0,1315,-10,0,0 +2013,8,3,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,0,0,1730,-5,0,0 +2013,10,22,2,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,0,0,822,-17,0,0 +2013,9,1,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,-5,0,1655,-4,0,0 +2013,5,20,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,815,2,0,915,-13,0,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1810,29,1,2215,25,1,0 +2013,4,15,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-4,0,711,1,0,0 +2013,7,8,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1543,2,0,2359,1,0,0 +2013,7,23,2,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-4,0,920,-7,0,0 +2013,7,24,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,-8,0,1530,-5,0,0 +2013,8,8,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1535,1,0,1759,-5,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1125,-4,0,1235,-23,0,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1030,37,1,1250,33,1,0 +2013,7,24,3,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-10,0,1916,-12,0,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2045,-6,0,2215,-7,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1540,11,0,1625,20,1,0 +2013,10,3,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1512,-1,0,1650,-18,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,2,0,825,0,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2110,136,1,2243,178,1,0 +2013,9,21,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1445,-6,0,1635,-18,0,0 +2013,7,15,1,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1120,-4,0,1515,-11,0,0 +2013,5,28,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1120,-5,0,1335,6,0,0 +2013,7,6,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,16,1,1840,2,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,-1,0,2210,-6,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,940,18,1,1050,-3,0,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,-6,0,1631,-13,0,0 +2013,4,12,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,725,-4,0,1013,0,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,909,-8,0,1350,8,0,0 +2013,5,21,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1135,23,1,1729,16,1,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,2,0,1330,-6,0,0 +2013,4,1,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1425,-7,0,1605,-21,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,-3,0,2050,-12,0,0 +2013,8,5,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,0,0,607,-14,0,0 +2013,7,6,6,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1729,-3,0,2251,-3,0,0 +2013,10,1,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1919,-4,0,2105,-11,0,0 +2013,6,17,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1629,73,1,1929,123,1,0 +2013,10,4,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1059,130,1,1254,126,1,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1650,-2,0,1900,-10,0,0 +2013,7,26,5,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2308,-12,0,623,-12,0,0 +2013,5,14,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1740,3,0,1956,1,0,0 +2013,10,9,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,18,1,1417,16,1,0 +2013,8,2,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1006,4,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1905,9,0,2140,0,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1915,-1,0,2249,-25,0,0 +2013,5,13,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-4,0,745,-23,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1740,4,0,2305,0,0,0 +2013,5,2,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,600,-7,0,745,-7,0,0 +2013,7,11,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1430,84,1,1725,86,1,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1815,-3,0,2046,-9,0,0 +2013,7,18,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-12,0,1748,-9,0,0 +2013,8,1,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,645,-7,0,1435,-11,0,0 +2013,8,5,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-5,0,2215,-13,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,-4,0,2351,-6,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1550,0,0,1930,31,1,0 +2013,9,26,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,20,1,1555,12,0,0 +2013,10,15,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1420,0,0,1652,1,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1500,11,0,1602,0,0,0 +2013,5,1,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-4,0,2050,-16,0,0 +2013,10,20,7,OO,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1633,7,0,1855,9,0,0 +2013,7,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,1,0,2206,1,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,838,-4,0,911,-14,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,-1,0,1155,-23,0,0 +2013,10,25,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-3,0,1214,-11,0,0 +2013,5,15,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1355,0,0,1502,2,0,0 +2013,9,30,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-5,0,1715,-21,0,0 +2013,4,30,2,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,720,-5,0,1035,-9,0,0 +2013,8,9,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1745,-7,0,1900,-7,0,0 +2013,10,26,6,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,855,6,0,1050,-12,0,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1135,-7,0,1435,17,1,0 +2013,7,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1505,13,0,1755,13,0,0 +2013,5,17,5,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1515,-3,0,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1045,13,0,1245,1,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,7,0,2112,1,0,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2000,33,1,2130,23,1,0 +2013,8,6,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,58,1,1135,63,1,0 +2013,5,2,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1300,8,0,1423,-4,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1605,-3,0,1725,-8,0,0 +2013,10,19,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1342,-3,0,1507,-12,0,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2150,0,,27,0,1,1 +2013,7,11,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,93,1,1401,99,1,0 +2013,9,14,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,-6,0,1410,-19,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1235,12,0,1510,-4,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2020,0,,2155,0,1,1 +2013,4,10,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,920,0,0,940,-6,0,0 +2013,9,12,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,925,-1,0,1450,15,1,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-3,0,2204,-12,0,0 +2013,8,14,3,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1720,-8,0,1900,-18,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1804,89,1,1932,81,1,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-4,0,1036,30,1,0 +2013,7,8,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,3,0,2025,-6,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1425,-4,0,1624,-7,0,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-3,0,1428,-10,0,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2000,25,1,2126,5,0,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,80,1,1830,99,1,0 +2013,8,3,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1029,-6,0,1305,-17,0,0 +2013,7,17,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,0,0,1935,-1,0,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,20,1,1515,10,0,0 +2013,8,26,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1657,-1,0,2257,6,0,0 +2013,5,20,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1725,2,0,1810,7,0,0 +2013,4,3,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1841,-6,0,1947,-9,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,58,1,1245,44,1,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1000,-2,0,1228,-12,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-2,0,1001,5,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1200,18,1,1305,6,0,0 +2013,4,26,5,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,857,-8,0,1021,-17,0,0 +2013,6,15,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,845,22,1,1320,9,0,0 +2013,9,11,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,840,-9,0,1006,-15,0,0 +2013,7,6,6,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,630,0,0,859,3,0,0 +2013,8,26,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1234,-12,0,1410,-3,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1420,1,0,1600,-9,0,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,652,0,0,1250,-8,0,0 +2013,6,26,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1600,56,1,1632,60,1,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,64,1,2110,89,1,0 +2013,8,14,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,-2,0,1155,-13,0,0 +2013,7,5,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1944,-10,0,2129,-18,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,945,1,0,1045,-10,0,0 +2013,4,3,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1051,-4,0,1116,-9,0,0 +2013,5,24,5,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1025,10,0,1304,0,0,0 +2013,10,17,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2149,9,0,2200,8,0,0 +2013,4,15,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-5,0,2045,-11,0,0 +2013,8,2,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-2,0,835,-4,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1920,-6,0,2135,-20,0,0 +2013,7,10,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,0,,1935,0,1,1 +2013,10,7,1,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1350,73,1,1732,103,1,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,820,77,1,1156,48,1,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,850,1,0,1640,12,0,0 +2013,10,7,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1815,6,0,1835,-1,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-4,0,1023,-11,0,0 +2013,6,6,4,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1600,13,0,1740,-2,0,0 +2013,9,27,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1115,278,1,1450,249,1,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1725,-1,0,2235,0,0,0 +2013,10,22,2,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1410,0,0,2240,-12,0,0 +2013,9,2,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1150,8,0,1445,6,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1855,6,0,2150,2,0,0 +2013,7,18,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-3,0,1535,-2,0,0 +2013,10,13,7,DL,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,2235,72,1,547,51,1,0 +2013,8,25,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,958,-6,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1100,-1,0,1200,-23,0,0 +2013,9,14,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1105,-4,0,1235,-12,0,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1435,7,0,1705,-2,0,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1250,36,1,1355,27,1,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,2,0,2255,-10,0,0 +2013,5,11,6,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1350,2,0,1541,-19,0,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1825,60,1,2043,63,1,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1202,18,1,1548,-1,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1125,15,1,1425,16,1,0 +2013,10,3,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-8,0,1245,8,0,0 +2013,4,21,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,-5,0,1916,-33,0,0 +2013,5,5,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1740,5,0,1935,-19,0,0 +2013,7,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1356,-7,0,1710,-20,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,2,0,1210,-10,0,0 +2013,5,31,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,710,-7,0,1000,-33,0,0 +2013,6,2,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,100,1,2300,82,1,0 +2013,5,31,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,615,22,1,749,12,0,0 +2013,8,29,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,850,-20,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1120,-3,0,1305,-4,0,0 +2013,9,7,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,815,1,0,1402,4,0,0 +2013,4,28,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,15,1,1410,8,0,0 +2013,9,20,5,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,630,-3,0,940,-9,0,0 +2013,6,8,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-6,0,1343,-19,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1315,9,0,1645,5,0,0 +2013,4,10,3,OO,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-6,0,1556,-11,0,0 +2013,10,20,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2019,-5,0,2120,-13,0,0 +2013,6,17,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,550,-1,0,725,-13,0,0 +2013,7,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,843,-5,0,946,9,0,0 +2013,8,26,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-6,0,1605,-21,0,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1610,235,1,1723,251,1,0 +2013,8,8,4,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1543,-2,0,1831,18,1,0 +2013,7,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1007,-10,0,1629,-25,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1335,31,1,1640,29,1,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1752,15,1,1953,15,1,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,-2,0,2105,-6,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-2,0,2010,-16,0,0 +2013,9,15,7,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-6,0,1300,-14,0,0 +2013,5,24,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,1,0,740,14,0,0 +2013,9,26,4,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-6,0,915,-28,0,0 +2013,6,1,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,900,-2,0,1126,-8,0,0 +2013,6,27,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1615,-6,0,1726,17,1,0 +2013,10,23,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,0,0,2005,20,1,0 +2013,4,29,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2000,0,0,2325,-36,0,0 +2013,5,1,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1727,-3,0,1824,-11,0,0 +2013,6,29,6,OO,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,646,15,1,939,5,0,0 +2013,7,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,-3,0,1100,-10,0,0 +2013,9,15,7,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,804,-7,0,913,-9,0,0 +2013,10,21,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,-7,0,1705,34,1,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,11,0,923,5,0,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,56,1,1030,59,1,0 +2013,9,12,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1253,185,1,1355,184,1,0 +2013,10,9,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1627,-5,0,1820,-23,0,0 +2013,8,4,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,2020,78,1,2214,54,1,0 +2013,7,4,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,920,-7,0,0 +2013,6,25,2,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,6,0,1016,-24,0,0 +2013,9,12,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1920,25,1,45,13,0,0 +2013,7,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1040,0,0,1200,-3,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1511,0,0,1638,10,0,0 +2013,4,5,5,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1935,4,0,2242,2,0,0 +2013,7,25,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1140,8,0,2006,17,1,0 +2013,9,27,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,24,1,820,12,0,0 +2013,5,6,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,25,1,2130,35,1,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1250,11,0,1355,12,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1320,8,0,1625,4,0,0 +2013,7,6,6,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,18,1,2021,16,1,0 +2013,6,2,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-1,0,1105,1,0,0 +2013,6,11,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1300,-2,0,1350,-4,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1450,-1,0,1600,-15,0,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1157,-4,0,1435,-10,0,0 +2013,9,6,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-8,0,1408,-8,0,0 +2013,5,22,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2031,-9,0,2212,-18,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1444,6,0,1631,6,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1924,-6,0,2313,-23,0,0 +2013,6,12,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2012,-4,0,2142,-9,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1955,23,1,2220,26,1,0 +2013,10,6,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1940,41,1,2125,28,1,0 +2013,6,10,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,804,319,1,928,320,1,0 +2013,10,22,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,646,-14,0,0 +2013,5,30,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1500,-6,0,1741,-14,0,0 +2013,9,30,1,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-1,0,1836,-13,0,0 +2013,8,16,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,830,-1,0,1100,-12,0,0 +2013,6,22,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-2,0,1044,-12,0,0 +2013,4,18,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,2,0,1913,-5,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,12,0,1610,18,1,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1512,-1,0,1715,-8,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2250,24,1,2355,16,1,0 +2013,10,17,4,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1310,3,0,1514,9,0,0 +2013,9,5,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,855,-2,0,1130,1,0,0 +2013,5,11,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,7,0,1150,0,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1705,17,1,1805,6,0,0 +2013,4,14,7,EV,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1657,-5,0,1917,1,0,0 +2013,8,6,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2050,0,,2215,0,1,1 +2013,5,10,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-3,0,840,-24,0,0 +2013,9,20,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,9,0,1355,12,0,0 +2013,6,14,5,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1333,21,1,1507,14,0,0 +2013,9,9,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1330,-2,0,1615,-10,0,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,650,-3,0,750,-4,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-4,0,1330,-6,0,0 +2013,7,25,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1535,-8,0,1759,-15,0,0 +2013,6,16,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1028,-8,0,1150,-5,0,0 +2013,5,11,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1655,29,1,1800,32,1,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,705,-5,0,1223,7,0,0 +2013,6,21,5,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1800,86,1,1935,92,1,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,4,0,1823,-1,0,0 +2013,7,5,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-2,0,1443,-13,0,0 +2013,10,19,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1325,12,0,1925,17,1,0 +2013,5,27,1,FL,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1755,19,1,1845,9,0,0 +2013,8,23,5,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,625,25,1,836,6,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1815,70,1,2121,80,1,0 +2013,10,26,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,15,1,1545,10,0,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,-4,0,1600,-6,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1645,3,0,1850,-21,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1000,-1,0,1250,-10,0,0 +2013,6,4,2,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1941,86,1,2309,73,1,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-1,0,1505,4,0,0 +2013,8,15,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1405,-4,0,1505,-10,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,835,-3,0,1120,-7,0,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,900,-6,0,1200,9,0,0 +2013,6,5,3,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1325,-10,0,1546,-16,0,0 +2013,9,20,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1822,-2,0,1942,36,1,0 +2013,7,29,1,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-5,0,858,4,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1935,20,1,2150,40,1,0 +2013,5,10,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1115,3,0,1219,-17,0,0 +2013,7,23,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,-7,0,1330,22,1,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,1,0,859,-14,0,0 +2013,4,30,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2140,0,,2250,0,1,1 +2013,8,9,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-6,0,1341,-14,0,0 +2013,7,30,2,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1826,24,1,2053,11,0,0 +2013,4,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1708,78,1,1842,67,1,0 +2013,8,6,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,13,0,1805,0,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1240,2,0,1850,10,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1720,9,0,1956,4,0,0 +2013,5,30,4,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1345,88,1,1530,71,1,0 +2013,10,7,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1510,29,1,1645,18,1,0 +2013,6,10,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,705,-3,0,755,-3,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2130,17,1,2235,8,0,0 +2013,10,28,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1650,1,0,1920,18,1,0 +2013,4,29,1,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10,-3,0,800,-4,0,0 +2013,9,18,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-6,0,848,-10,0,0 +2013,5,16,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1820,-1,0,2111,-9,0,0 +2013,6,5,3,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,950,-4,0,1244,-1,0,0 +2013,6,2,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,905,-3,0,1147,-9,0,0 +2013,4,22,1,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1445,-1,0,1945,-1,0,0 +2013,9,30,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,647,14,0,939,8,0,0 +2013,8,21,3,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1214,5,0,2030,31,1,0 +2013,6,12,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,72,1,2255,56,1,0 +2013,6,27,4,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,929,-3,0,1006,1,0,0 +2013,7,3,3,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1724,59,1,2020,73,1,0 +2013,9,23,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,645,-1,0,805,-7,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-1,0,900,-8,0,0 +2013,4,6,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,0,0,1409,-23,0,0 +2013,8,20,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-5,0,908,5,0,0 +2013,7,20,6,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1600,-7,0,2205,-18,0,0 +2013,4,29,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1205,39,1,1750,25,1,0 +2013,9,27,5,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1234,3,0,1534,9,0,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,19,1,1755,11,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,2132,8,0,2308,-18,0,0 +2013,10,6,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1047,0,0,1305,5,0,0 +2013,6,6,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,24,1,1805,7,0,0 +2013,9,20,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,640,-7,0,901,-19,0,0 +2013,7,25,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,4,0,2305,5,0,0 +2013,5,1,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,833,0,0,0 +2013,5,6,1,FL,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,755,-1,0,844,5,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,915,0,0,1140,-10,0,0 +2013,6,3,1,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,630,-5,0,729,-20,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,72,1,1110,66,1,0 +2013,4,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1022,1,0,1114,-3,0,0 +2013,6,6,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,8,0,1710,3,0,0 +2013,8,4,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1455,2,0,1610,5,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1630,23,1,1855,15,1,0 +2013,4,18,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-7,0,1125,-18,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,815,42,1,950,38,1,0 +2013,5,21,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,238,1,1101,333,1,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,-3,0,2350,-12,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,0,0,1327,-5,0,0 +2013,5,7,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,930,-8,0,1103,-30,0,0 +2013,8,18,7,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-9,0,741,-23,0,0 +2013,10,2,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1740,-3,0,1905,3,0,0 +2013,4,18,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1110,-4,0,1300,-9,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1510,5,0,2154,-1,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,2,0,828,-1,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1700,0,0,1955,2,0,0 +2013,9,4,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,910,-10,0,1450,-13,0,0 +2013,7,18,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,606,-6,0,705,-22,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1440,-4,0,1915,2,0,0 +2013,5,5,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1950,97,1,2050,105,1,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1930,2,0,2221,-6,0,0 +2013,5,22,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-5,0,1225,-22,0,0 +2013,9,23,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-7,0,1418,-4,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1415,-1,0,1603,2,0,0 +2013,4,5,5,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1435,-7,0,1610,-13,0,0 +2013,9,9,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-9,0,1224,-29,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1545,84,1,1840,82,1,0 +2013,5,6,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1349,-8,0,1555,5,0,0 +2013,5,15,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,2,0,1315,6,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1752,271,1,2049,248,1,0 +2013,4,21,7,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,605,2,0,1207,-23,0,0 +2013,6,10,1,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,2135,12,0,2344,-3,0,0 +2013,4,2,2,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1146,8,0,1418,8,0,0 +2013,7,5,5,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1311,-5,0,1638,-25,0,0 +2013,10,7,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,183,1,1928,148,1,0 +2013,5,29,3,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-8,0,940,-19,0,0 +2013,9,29,7,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,12,0,1715,15,1,0 +2013,4,30,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1720,1,0,1935,-6,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1250,-2,0,1513,-20,0,0 +2013,4,27,6,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1855,-4,0,2148,11,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1805,-2,0,2330,-13,0,0 +2013,6,29,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,-6,0,1300,20,1,0 +2013,8,25,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-5,0,935,-12,0,0 +2013,6,10,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,59,1,1720,63,1,0 +2013,7,29,1,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,807,-4,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-2,0,1155,-20,0,0 +2013,9,5,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1710,-8,0,1835,-12,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1615,8,0,1825,6,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2200,-2,0,2344,-13,0,0 +2013,10,16,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2020,40,1,2145,26,1,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1448,-6,0,1745,-22,0,0 +2013,10,5,6,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1035,1,0,1255,-7,0,0 +2013,6,17,1,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1555,5,0,2118,-6,0,0 +2013,4,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1940,-2,0,55,-9,0,0 +2013,9,18,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1615,0,0,1747,-15,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1020,55,1,1459,47,1,0 +2013,6,13,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,3,0,1450,22,1,0 +2013,7,24,3,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,-3,0,1710,-29,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,-4,0,1640,3,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2200,34,1,2310,33,1,0 +2013,8,21,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1356,5,0,1504,-15,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-6,0,1205,-14,0,0 +2013,7,3,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,1,0,1245,-4,0,0 +2013,10,14,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1231,-3,0,1338,2,0,0 +2013,9,24,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,1530,0,0,0 +2013,9,17,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,51,1,2224,47,1,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1920,-5,0,2244,-3,0,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1335,63,1,1620,45,1,0 +2013,6,6,4,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,-1,0,1635,-12,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1720,9,0,1735,-1,0,0 +2013,6,10,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1430,-3,0,1647,-4,0,0 +2013,6,4,2,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,635,-7,0,930,-1,0,0 +2013,5,16,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-1,0,1220,-10,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1240,-1,0,1605,-7,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1145,1,0,1240,-12,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1530,-5,0,1800,-27,0,0 +2013,4,14,7,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1230,12,0,1800,2,0,0 +2013,7,2,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1610,44,1,1906,26,1,0 +2013,6,12,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1114,-8,0,1349,-20,0,0 +2013,5,19,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1120,-1,0,1839,-20,0,0 +2013,10,31,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1700,4,0,1840,19,1,0 +2013,10,30,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-1,0,955,-7,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,-1,0,1950,5,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1230,67,1,1506,42,1,0 +2013,7,31,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,4,0,2115,-14,0,0 +2013,7,17,3,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1646,-6,0,1815,-15,0,0 +2013,8,28,3,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,-2,0,1605,36,1,0 +2013,6,28,5,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1102,-4,0,1226,-7,0,0 +2013,10,15,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,0,0,1115,12,0,0 +2013,9,29,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1810,-1,0,1831,14,0,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-1,0,1909,-11,0,0 +2013,10,31,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-8,0,808,-19,0,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,3,0,910,-1,0,0 +2013,8,21,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1339,7,0,1549,5,0,0 +2013,8,2,5,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,937,-10,0,1803,-41,0,0 +2013,8,28,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,840,0,0,1017,4,0,0 +2013,8,2,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1948,0,0,2125,-2,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1315,12,0,1630,9,0,0 +2013,7,29,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,930,-9,0,1235,-21,0,0 +2013,7,24,3,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-6,0,1855,-5,0,0 +2013,5,19,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,72,1,1256,56,1,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,956,0,,1238,0,1,1 +2013,7,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,942,-8,0,1331,-10,0,0 +2013,4,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2005,-5,0,2323,-14,0,0 +2013,6,20,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-2,0,1013,-15,0,0 +2013,7,14,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1643,-5,0,1923,-12,0,0 +2013,7,27,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1515,-1,0,1630,-1,0,0 +2013,5,3,5,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-7,0,2056,-18,0,0 +2013,7,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2010,1,0,2156,-12,0,0 +2013,4,3,3,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,845,-4,0,1122,-7,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,602,12,0,728,-21,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1220,5,0,1345,0,0,0 +2013,4,12,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,-4,0,1440,-13,0,0 +2013,9,3,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1845,10,0,2046,32,1,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1755,-3,0,1933,-11,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,-3,0,45,-9,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-3,0,1748,-9,0,0 +2013,7,16,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,-4,0,1355,-12,0,0 +2013,9,25,3,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,705,-2,0,755,1,0,0 +2013,7,24,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,-1,0,829,-14,0,0 +2013,5,14,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,360,1,2209,347,1,0 +2013,6,6,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,35,1,2100,28,1,0 +2013,7,5,5,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1450,5,0,1759,8,0,0 +2013,6,19,3,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,-7,0,545,-15,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,900,-2,0,1045,0,0,0 +2013,9,29,7,EV,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1647,-5,0,1742,-23,0,0 +2013,7,30,2,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,-4,0,1033,-5,0,0 +2013,8,26,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1812,74,1,2000,55,1,0 +2013,4,16,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1251,-2,0,1539,-10,0,0 +2013,10,20,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1355,6,0,1629,13,0,0 +2013,5,29,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1730,5,0,1930,-6,0,0 +2013,10,5,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-2,0,1631,-9,0,0 +2013,7,27,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,730,-3,0,1330,-4,0,0 +2013,9,3,2,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1135,-2,0,1405,-9,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1905,15,1,2135,8,0,0 +2013,8,12,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1830,21,1,1950,31,1,0 +2013,10,25,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,-8,0,813,-18,0,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,-6,0,2213,16,1,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1000,-2,0,1330,-2,0,0 +2013,4,30,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-6,0,853,-10,0,0 +2013,5,19,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,38,1,1730,54,1,0 +2013,4,6,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,800,-3,0,930,-23,0,0 +2013,9,21,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-6,0,1725,-15,0,0 +2013,10,12,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,825,0,0,945,-2,0,0 +2013,4,12,5,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1835,71,1,2110,52,1,0 +2013,7,15,1,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,-5,0,2010,-21,0,0 +2013,4,2,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-7,0,1339,-21,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,809,-5,0,836,-11,0,0 +2013,6,3,1,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,845,42,1,1439,26,1,0 +2013,9,12,4,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1242,-2,0,1400,-3,0,0 +2013,5,18,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,1125,-23,0,0 +2013,10,26,6,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1630,-8,0,1913,-5,0,0 +2013,5,7,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,832,-3,0,1121,-15,0,0 +2013,7,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,842,-7,0,1248,-26,0,0 +2013,7,6,6,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,12,0,2020,19,1,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,815,-3,0,1110,-31,0,0 +2013,6,6,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,10,0,1201,3,0,0 +2013,5,2,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,705,-5,0,718,-11,0,0 +2013,8,28,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,945,-4,0,955,-11,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1755,-5,0,2143,9,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1340,21,1,1825,20,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,53,1,1817,49,1,0 +2013,10,11,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,920,10,0,1049,14,0,0 +2013,6,15,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1528,2,0,1632,19,1,0 +2013,9,30,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1605,30,1,1832,10,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,820,4,0,925,-2,0,0 +2013,6,20,4,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1348,16,1,1644,1,0,0 +2013,10,1,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1615,6,0,1815,16,1,0 +2013,10,22,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,620,-5,0,805,-33,0,0 +2013,6,2,7,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,68,1,2025,71,1,0 +2013,10,10,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-8,0,716,-6,0,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1615,-2,0,1706,22,1,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,625,-10,0,807,6,0,0 +2013,9,10,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1010,-10,0,1126,-24,0,0 +2013,10,15,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,13,0,1659,7,0,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1700,109,1,1915,90,1,0 +2013,7,8,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1728,4,0,1905,14,0,0 +2013,8,17,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,810,12,0,925,11,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1433,31,1,1605,16,1,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2200,38,1,2347,21,1,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,735,-3,0,1058,8,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1212,-3,0,1508,-18,0,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1033,-3,0,1209,-17,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,-2,0,1738,-9,0,0 +2013,8,4,7,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,816,-1,0,1620,-35,0,0 +2013,6,5,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,40,1,1830,29,1,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1605,-1,0,1920,0,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1320,29,1,1435,33,1,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1910,86,1,2040,81,1,0 +2013,10,28,1,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1415,-3,0,1715,-8,0,0 +2013,9,30,1,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1546,-2,0,1617,5,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,2055,5,0,2221,-6,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,-4,0,1605,-18,0,0 +2013,10,4,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,850,-8,0,0 +2013,4,26,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1608,-10,0,1709,-33,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1455,-3,0,1606,3,0,0 +2013,10,23,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2059,-1,0,58,2,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,79,1,1338,108,1,0 +2013,5,4,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1015,-8,0,1150,4,0,0 +2013,6,27,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,735,-7,0,855,-10,0,0 +2013,8,10,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,600,-3,0,1416,-8,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,166,1,40,176,1,0 +2013,6,6,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-12,0,2326,-8,0,0 +2013,6,7,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1745,1,0,1930,-7,0,0 +2013,6,26,3,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-1,0,1615,-11,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,1125,-4,0,0 +2013,9,16,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,820,-5,0,1145,-6,0,0 +2013,6,30,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,846,18,1,0 +2013,8,29,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1724,-6,0,1935,-17,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1645,11,0,1905,21,1,0 +2013,6,30,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1649,59,1,1724,68,1,0 +2013,8,15,4,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2015,6,0,2345,-7,0,0 +2013,8,20,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2020,49,1,2140,36,1,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,830,-5,0,1100,-7,0,0 +2013,7,29,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,728,-12,0,0 +2013,10,21,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,610,-3,0,700,-9,0,0 +2013,5,11,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,620,-6,0,730,-28,0,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1110,-4,0,1331,-3,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,2335,-4,0,553,-4,0,0 +2013,8,8,4,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-8,0,918,6,0,0 +2013,8,9,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1042,118,1,1908,113,1,0 +2013,8,19,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1924,45,1,44,35,1,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,810,1,0,1025,-24,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,815,2,0,1045,-26,0,0 +2013,4,24,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,1122,-18,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,630,14,0,910,16,1,0 +2013,8,8,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,644,-6,0,1024,-12,0,0 +2013,5,25,6,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,3,0,1920,3,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,750,-3,0,1010,-10,0,0 +2013,10,25,5,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1800,274,1,1942,239,1,0 +2013,6,22,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1145,-3,0,1245,-9,0,0 +2013,7,10,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,35,1,2201,67,1,0 +2013,6,12,3,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,-2,0,820,-4,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1922,-4,0,2056,-16,0,0 +2013,4,21,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2159,-9,0,155,14,0,0 +2013,6,28,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1515,53,1,1815,117,1,0 +2013,6,11,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-7,0,1105,-34,0,0 +2013,8,21,3,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,36,-2,0,500,-11,0,0 +2013,5,16,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1955,127,1,2125,133,1,0 +2013,4,16,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1130,-5,0,1330,-18,0,0 +2013,8,15,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1355,4,0,1520,-8,0,0 +2013,7,4,4,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,820,0,0,940,-13,0,0 +2013,4,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1614,-6,0,29,-30,0,0 +2013,10,16,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1725,-8,0,1848,-21,0,0 +2013,8,30,5,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1734,1,0,1818,-4,0,0 +2013,8,8,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1219,10,0,1320,12,0,0 +2013,8,30,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1015,-2,0,1353,-18,0,0 +2013,9,8,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2105,15,1,2220,17,1,0 +2013,8,13,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1646,67,1,1834,68,1,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2157,-3,0,2333,-14,0,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,16,1,1957,5,0,0 +2013,8,13,2,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,640,9,0,745,10,0,0 +2013,4,28,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-6,0,2000,-2,0,0 +2013,6,2,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-6,0,1112,3,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1959,154,1,2208,158,1,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2030,64,1,2259,64,1,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1300,1,0,1505,-5,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1630,10,0,1950,12,0,0 +2013,7,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,900,-1,0,1043,-10,0,0 +2013,8,14,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,40,1,2005,39,1,0 +2013,7,25,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1555,-1,0,0 +2013,7,1,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1940,-8,0,2034,-10,0,0 +2013,7,27,6,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-9,0,1945,-1,0,0 +2013,6,9,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1445,-6,0,1655,-1,0,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1112,1,0,1206,-4,0,0 +2013,6,14,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-8,0,2148,-15,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,740,2,0,905,0,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1859,13,0,2121,1,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,935,-3,0,1040,-1,0,0 +2013,5,20,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1345,-3,0,1544,-11,0,0 +2013,8,28,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1405,-8,0,1611,-24,0,0 +2013,6,8,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1145,25,1,1350,21,1,0 +2013,7,21,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,6,0,2310,12,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,0,0,1343,32,1,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,116,1,2354,93,1,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,630,-3,0,755,-5,0,0 +2013,10,23,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1940,12,0,2245,-1,0,0 +2013,6,2,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-8,0,857,-14,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,905,3,0,1610,-14,0,0 +2013,5,21,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,3,0,1728,-8,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,1,0,927,-6,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1733,30,1,1842,21,1,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,-4,0,957,4,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-5,0,1237,-2,0,0 +2013,10,27,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1400,-5,0,1545,-12,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,24,1,1035,11,0,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,730,1,0,935,-3,0,0 +2013,6,13,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,730,-6,0,0 +2013,5,17,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-5,0,2143,-13,0,0 +2013,9,3,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1710,-5,0,1941,-3,0,0 +2013,10,29,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1817,96,1,2139,89,1,0 +2013,7,16,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1735,-2,0,1815,-9,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,18,1,2250,4,0,0 +2013,4,19,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1757,183,1,1855,195,1,0 +2013,4,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-2,0,1824,-2,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-5,0,1328,-11,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1918,0,0,2031,-13,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1035,-2,0,1200,-16,0,0 +2013,6,20,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-6,0,1419,-15,0,0 +2013,10,7,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-5,0,1425,-9,0,0 +2013,10,18,5,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,-4,0,1946,-16,0,0 +2013,8,1,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-1,0,625,-2,0,0 +2013,9,19,4,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1810,-4,0,2000,22,1,0 +2013,5,25,6,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1135,-9,0,1300,-13,0,0 +2013,8,21,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1230,0,0,1420,-14,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1930,15,1,2229,-1,0,0 +2013,10,10,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1022,1,0,1146,-24,0,0 +2013,7,22,1,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1230,-9,0,1451,-19,0,0 +2013,4,8,1,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,75,1,1215,66,1,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,40,1,1855,39,1,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,-7,0,1442,7,0,0 +2013,5,13,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,715,-6,0,1008,14,0,0 +2013,7,13,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,745,1,0,905,-5,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2010,12,0,2145,3,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,0,0,2032,10,0,0 +2013,5,12,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,605,-6,0,705,-16,0,0 +2013,9,28,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1100,-8,0,1245,-4,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1510,-6,0,1725,26,1,0 +2013,8,16,5,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1705,-4,0,2105,-7,0,0 +2013,5,16,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,13,0,1749,24,1,0 +2013,6,4,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1500,-7,0,1607,-24,0,0 +2013,7,5,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,759,-7,0,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-1,0,845,-8,0,0 +2013,4,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,831,-3,0,1457,31,1,0 +2013,7,2,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,-2,0,1321,3,0,0 +2013,9,17,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2137,-12,0,27,-20,0,0 +2013,10,21,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1730,-6,0,1901,-5,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1609,-4,0,1625,0,0,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-7,0,2208,-12,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,24,1,1620,4,0,0 +2013,5,9,4,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1245,-1,0,1543,-17,0,0 +2013,6,13,4,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1959,-1,0,2239,16,1,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,1,0,917,-6,0,0 +2013,7,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1440,2,0,1825,-8,0,0 +2013,5,13,1,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1440,2,0,1655,5,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1425,6,0,1825,-7,0,0 +2013,9,30,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1605,-6,0,1611,-10,0,0 +2013,10,18,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1449,-1,0,1644,17,1,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1959,0,0,2126,-15,0,0 +2013,10,7,1,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,-6,0,607,0,0,0 +2013,7,29,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1255,-10,0,1615,-26,0,0 +2013,9,1,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1345,-1,0,1515,-17,0,0 +2013,7,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1530,9,0,1635,1,0,0 +2013,4,19,5,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-4,0,1024,6,0,0 +2013,6,28,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1325,348,1,1335,399,1,0 +2013,5,27,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1417,-11,0,1456,-14,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,24,1,2350,30,1,0 +2013,6,18,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1504,-5,0,1630,-8,0,0 +2013,7,17,3,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1950,40,1,2149,47,1,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1747,46,1,2002,48,1,0 +2013,8,2,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-3,0,1251,-28,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1530,9,0,1705,7,0,0 +2013,6,14,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2013,0,0,2152,-14,0,0 +2013,7,12,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,29,1,1730,24,1,0 +2013,10,12,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,920,7,0,1031,2,0,0 +2013,9,9,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1326,-3,0,1617,-5,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1314,90,1,1545,74,1,0 +2013,9,6,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1845,-12,0,2134,-32,0,0 +2013,5,9,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1347,-5,0,1435,-6,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1935,209,1,2150,189,1,0 +2013,6,20,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-1,0,1105,0,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,740,0,0,905,-7,0,0 +2013,6,13,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,-1,0,1319,-4,0,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,0,0,1200,-3,0,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,14,0,1850,-12,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,600,0,0,835,-2,0,0 +2013,10,11,5,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,605,-5,0,755,-17,0,0 +2013,6,30,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1537,-5,0,1900,-9,0,0 +2013,7,25,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1822,134,1,2020,144,1,0 +2013,9,18,3,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,725,-1,0,850,8,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,3,0,1722,22,1,0 +2013,5,15,3,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,-4,0,1831,-16,0,0 +2013,10,10,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,-3,0,1405,-6,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1214,-10,0,1350,-14,0,0 +2013,7,18,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2020,22,1,2151,9,0,0 +2013,9,12,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,48,1,23,48,1,0 +2013,9,1,7,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-4,0,1451,-5,0,0 +2013,5,21,2,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,219,1,1105,231,1,0 +2013,4,19,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,840,4,0,1150,23,1,0 +2013,8,4,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-6,0,1750,-14,0,0 +2013,10,22,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,840,-3,0,944,-4,0,0 +2013,8,21,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,700,-7,0,1030,-9,0,0 +2013,10,22,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1930,-6,0,2005,-20,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1000,-1,0,1250,-14,0,0 +2013,10,7,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1805,14,0,2015,9,0,0 +2013,6,11,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-7,0,830,-12,0,0 +2013,9,19,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,1,0,1110,7,0,0 +2013,6,13,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-1,0,1048,-8,0,0 +2013,9,19,4,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1130,-6,0,1607,10,0,0 +2013,9,24,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-7,0,920,-11,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,-4,0,2322,-3,0,0 +2013,5,9,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-5,0,1650,-11,0,0 +2013,7,2,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,13,0,957,13,0,0 +2013,10,18,5,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1925,-5,0,2112,-25,0,0 +2013,7,7,7,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,800,1,0,935,-6,0,0 +2013,9,21,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1826,-8,0,1843,-15,0,0 +2013,6,16,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-7,0,2150,5,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1456,2,0,1603,26,1,0 +2013,5,11,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,730,-6,0,1047,-12,0,0 +2013,9,4,3,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1625,-8,0,1844,-40,0,0 +2013,7,18,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1155,-3,0,1455,-8,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1640,-2,0,1835,-12,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1740,1,0,1923,18,1,0 +2013,6,11,2,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2039,-5,0,2351,-19,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1810,-3,0,2040,-18,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1012,12,0,1049,3,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,30,1,1900,51,1,0 +2013,7,19,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1420,-3,0,1545,0,0,0 +2013,7,22,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,705,0,0,745,-3,0,0 +2013,7,14,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-8,0,1146,8,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,26,1,1505,25,1,0 +2013,6,25,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,-3,0,1810,-13,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2255,0,0,2327,-11,0,0 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,-5,0,1320,-14,0,0 +2013,5,16,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-4,0,1524,-19,0,0 +2013,4,20,6,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,655,-1,0,935,35,1,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,11,0,1631,13,0,0 +2013,8,11,7,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1946,-5,0,2103,-16,0,0 +2013,4,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1430,0,0,1550,-2,0,0 +2013,4,2,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1725,-5,0,1925,-12,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1702,8,0,1939,-27,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,732,-2,0,916,10,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1812,-4,0,2033,0,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1900,44,1,2035,30,1,0 +2013,7,29,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,0,0,1525,-9,0,0 +2013,5,19,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,640,-2,0,804,-24,0,0 +2013,10,20,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1259,-6,0,1522,-8,0,0 +2013,7,18,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,3,0,845,-5,0,0 +2013,9,11,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,-3,0,1120,-7,0,0 +2013,8,31,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1300,0,0,1455,0,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1533,-4,0,1824,-11,0,0 +2013,7,19,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-1,0,1610,-12,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1752,14,0,1909,21,1,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1755,7,0,2051,-24,0,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,0,0,900,0,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1444,9,0,1606,-10,0,0 +2013,7,26,5,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,545,-2,0,810,-15,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,730,-3,0,830,-16,0,0 +2013,6,28,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2130,-1,0,2320,-11,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,7,0,1102,12,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1700,107,1,1835,104,1,0 +2013,5,6,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-1,0,1250,1,0,0 +2013,8,20,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,32,1,1434,76,1,0 +2013,8,8,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,14,0,1839,-6,0,0 +2013,7,6,6,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1540,-3,0,1750,-24,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1820,9,0,2151,2,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-1,0,2128,1,0,0 +2013,4,7,7,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,-4,0,2110,-5,0,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1750,-4,0,2045,-11,0,0 +2013,8,19,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1350,-1,0,2142,22,1,0 +2013,6,9,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1235,-12,0,0 +2013,4,20,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,915,31,1,1055,30,1,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,-1,0,1439,-7,0,0 +2013,10,5,6,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,645,-2,0,805,1,0,0 +2013,4,18,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,2,0,1110,21,1,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1015,12,0,1230,32,1,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2120,16,1,2235,18,1,0 +2013,9,4,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,-2,0,1255,-9,0,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2115,-3,0,2255,-20,0,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1056,-5,0,1339,-1,0,0 +2013,10,17,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1944,30,1,2241,14,0,0 +2013,9,10,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,730,-5,0,845,-8,0,0 +2013,9,8,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1422,-2,0,1815,-1,0,0 +2013,9,24,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,930,-4,0,1111,-14,0,0 +2013,6,10,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2046,-5,0,2154,49,1,0 +2013,5,7,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-9,0,1519,-9,0,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,635,-5,0,1003,-17,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1952,-7,0,2315,-26,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,34,1,1250,28,1,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,0,0,1746,-11,0,0 +2013,9,24,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-2,0,1437,8,0,0 +2013,6,9,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,35,1,1916,4,0,0 +2013,7,8,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,38,1,920,20,1,0 +2013,4,28,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,19,1,845,4,0,0 +2013,6,30,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,1358,-20,0,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1010,2,0,1200,-22,0,0 +2013,8,28,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,700,0,0,831,-2,0,0 +2013,9,5,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1705,-2,0,1800,-23,0,0 +2013,7,19,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-2,0,859,2,0,0 +2013,7,30,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,835,-7,0,958,-13,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2035,-5,0,5,2,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,54,1,1810,52,1,0 +2013,7,18,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,6,0,914,-10,0,0 +2013,7,26,5,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-3,0,810,19,1,0 +2013,6,21,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,735,-1,0,905,24,1,0 +2013,9,16,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1730,-2,0,1926,4,0,0 +2013,6,3,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,3,0,1643,17,1,0 +2013,6,19,3,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1210,-6,0,1451,5,0,0 +2013,5,2,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-9,0,1235,-33,0,0 +2013,6,4,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,820,-3,0,920,-16,0,0 +2013,6,15,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,952,2,0,1200,-11,0,0 +2013,7,3,3,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,-4,0,1650,6,0,0 +2013,7,9,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1040,-3,0,1855,-2,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1830,-5,0,2100,0,0,0 +2013,6,14,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,605,0,0,730,-19,0,0 +2013,6,29,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-1,0,1210,-8,0,0 +2013,10,21,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1420,-7,0,1600,-16,0,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-1,0,1440,-12,0,0 +2013,9,26,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1443,33,1,1615,28,1,0 +2013,10,13,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1105,-6,0,1308,-13,0,0 +2013,4,3,3,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1855,46,1,2220,51,1,0 +2013,6,3,1,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2359,-4,0,601,-9,0,0 +2013,10,22,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1850,14,0,2015,-3,0,0 +2013,7,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1535,93,1,1707,109,1,0 +2013,7,14,7,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2359,4,0,556,-8,0,0 +2013,9,23,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1359,-8,0,1531,-11,0,0 +2013,9,29,7,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,910,-4,0,1031,-5,0,0 +2013,5,19,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-2,0,1410,-6,0,0 +2013,6,4,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1600,7,0,1719,11,0,0 +2013,5,8,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1225,8,0,1313,11,0,0 +2013,9,8,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-6,0,1020,-9,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1244,11,0,1356,18,1,0 +2013,9,18,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-9,0,1140,0,0,0 +2013,8,29,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,605,-3,0,920,-6,0,0 +2013,6,11,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,935,5,0,1105,-6,0,0 +2013,4,18,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,157,1,1750,148,1,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,710,1,0,945,-8,0,0 +2013,4,6,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,739,-3,0,1030,-14,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1131,1,0,1408,-14,0,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1655,13,0,1810,7,0,0 +2013,6,14,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1204,3,0,1305,6,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,2,0,1605,-2,0,0 +2013,8,31,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1205,-4,0,1255,-12,0,0 +2013,6,1,6,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1020,-3,0,1145,-13,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1700,2,0,1755,-5,0,0 +2013,8,3,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-5,0,1825,-9,0,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,910,-6,0,1012,-3,0,0 +2013,7,31,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1105,-1,0,1210,-3,0,0 +2013,7,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,13,0,1030,4,0,0 +2013,8,18,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1340,22,1,1500,16,1,0 +2013,4,14,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,7,0,1620,47,1,0 +2013,6,11,2,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1915,-10,0,2154,-32,0,0 +2013,4,27,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1525,-3,0,1547,-22,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,4,0,1924,0,0,0 +2013,9,28,6,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1820,-4,0,2109,-37,0,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,0,0,1700,-2,0,0 +2013,7,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,2,0,1135,17,1,0 +2013,7,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1415,31,1,1520,27,1,0 +2013,6,27,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,2,0,745,-3,0,0 +2013,10,30,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-9,0,1431,5,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-3,0,1120,-10,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1355,-5,0,1547,-26,0,0 +2013,5,21,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-5,0,1245,97,1,0 +2013,10,11,5,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1705,1,0,1900,-21,0,0 +2013,6,24,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-1,0,1400,-9,0,0 +2013,7,20,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1235,-3,0,1620,-20,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,19,1,906,-4,0,0 +2013,7,25,4,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,800,14,0,1108,4,0,0 +2013,5,7,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,840,78,1,1053,48,1,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1905,-1,0,2119,-22,0,0 +2013,8,25,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1029,-8,0,1600,-12,0,0 +2013,6,26,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2050,91,1,2205,86,1,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,29,1,2150,18,1,0 +2013,10,23,3,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1510,5,0,1710,-2,0,0 +2013,8,2,5,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,2,0,1920,-5,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-3,0,1413,-11,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2100,1,0,2240,4,0,0 +2013,7,29,1,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1620,-1,0,1853,-45,0,0 +2013,9,5,4,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,2,0,1334,9,0,0 +2013,7,7,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2130,57,1,2235,48,1,0 +2013,8,12,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1040,0,0,1905,-31,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,642,-7,0,909,-17,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,8,0,1231,28,1,0 +2013,9,28,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,712,-8,0,905,-9,0,0 +2013,4,29,1,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1125,-2,0,1250,-6,0,0 +2013,4,7,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1140,-9,0,1730,-24,0,0 +2013,8,27,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-12,0,1548,-21,0,0 +2013,10,11,5,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,710,-15,0,1038,-20,0,0 +2013,8,1,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1027,7,0,1302,109,1,0 +2013,4,24,3,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1422,-6,0,1538,-25,0,0 +2013,6,23,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,0,0,1013,-2,0,0 +2013,5,17,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2155,12,0,50,5,0,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,800,-5,0,940,-1,0,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1717,-5,0,2125,-17,0,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1447,67,1,1600,63,1,0 +2013,4,17,3,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,-12,0,1650,-20,0,0 +2013,6,1,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,943,-6,0,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,825,22,1,950,15,1,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,26,1,2255,27,1,0 +2013,10,24,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,600,-10,0,800,-8,0,0 +2013,8,24,6,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-11,0,916,-27,0,0 +2013,5,30,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1815,51,1,2015,32,1,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,97,1,1250,83,1,0 +2013,10,3,4,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2000,61,1,2229,69,1,0 +2013,4,30,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1423,24,1,1540,36,1,0 +2013,6,2,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1118,-1,0,1146,-10,0,0 +2013,4,15,1,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1940,-1,0,2247,-12,0,0 +2013,9,30,1,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,1055,-7,0,0 +2013,6,5,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,759,-4,0,903,-1,0,0 +2013,6,29,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1235,-2,0,1340,-12,0,0 +2013,6,6,4,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1120,-1,0,1248,-14,0,0 +2013,5,15,3,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1555,0,,1708,0,1,1 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,750,18,1,1055,9,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,-2,0,923,-4,0,0 +2013,5,3,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,3,0,1436,-10,0,0 +2013,9,30,1,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1730,29,1,1915,10,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,715,4,0,925,-3,0,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1855,-3,0,2218,-12,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1444,33,1,1722,-2,0,0 +2013,10,6,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1500,-5,0,1625,16,1,0 +2013,4,21,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,-2,0,950,-14,0,0 +2013,4,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,1650,100,1,2355,85,1,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,633,2,0,928,-5,0,0 +2013,6,3,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1841,-6,0,2300,-23,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-1,0,1333,25,1,0 +2013,4,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1020,2,0,1130,17,1,0 +2013,7,9,2,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,0,,1952,0,1,1 +2013,6,15,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1503,-6,0,1640,-8,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,730,-2,0,1004,-21,0,0 +2013,5,7,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2315,-8,0,707,-6,0,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,11,0,2213,-18,0,0 +2013,7,12,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,-7,0,1843,-4,0,0 +2013,8,26,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1411,23,1,1546,7,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-7,0,1229,-11,0,0 +2013,7,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2055,88,1,2225,85,1,0 +2013,4,1,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1830,0,0,2116,18,1,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,800,15,1,1025,1,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1340,24,1,1445,28,1,0 +2013,10,27,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,730,0,0,1110,-7,0,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,849,2,0,1348,26,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,959,-1,0,1342,-7,0,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-7,0,919,-8,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,-2,0,1805,-16,0,0 +2013,4,13,6,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1810,-7,0,2103,-12,0,0 +2013,8,16,5,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1432,12,0,2230,21,1,0 +2013,9,12,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1158,4,0,1442,24,1,0 +2013,8,16,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1519,-7,0,1645,5,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,1,0,1525,-5,0,0 +2013,7,16,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-5,0,1345,-18,0,0 +2013,4,1,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-4,0,2255,-13,0,0 +2013,9,9,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,759,5,0,1056,-2,0,0 +2013,6,20,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-6,0,1854,-14,0,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1145,-3,0,1513,-12,0,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1850,32,1,35,15,1,0 +2013,8,6,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,0,0,1810,-6,0,0 +2013,5,9,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1120,-4,0,1210,-1,0,0 +2013,8,8,4,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,711,1,0,805,2,0,0 +2013,7,17,3,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1142,-5,0,1402,-14,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,-5,0,1350,-13,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,20,1,830,11,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1025,-4,0,1230,-21,0,0 +2013,8,28,3,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,825,-7,0,1440,-17,0,0 +2013,10,25,5,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,900,7,0,1420,13,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1512,-1,0,1646,-23,0,0 +2013,6,1,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,21,1,2000,22,1,0 +2013,6,9,7,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1908,49,1,2140,39,1,0 +2013,8,25,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-5,0,1810,-31,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1710,5,0,1900,-1,0,0 +2013,9,23,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1045,5,0,1352,18,1,0 +2013,9,18,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,0,0,1742,8,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1330,18,1,1715,19,1,0 +2013,6,24,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-3,0,1236,0,0,0 +2013,7,20,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-5,0,1540,-2,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1225,3,0,1415,-6,0,0 +2013,6,29,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,1,0,2035,-12,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,930,-2,0,1035,-11,0,0 +2013,6,10,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,87,1,1800,88,1,0 +2013,8,18,7,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-11,0,1214,-22,0,0 +2013,8,8,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,175,1,2305,200,1,0 +2013,8,12,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1051,-6,0,1435,-16,0,0 +2013,9,14,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1653,-6,0,1705,3,0,0 +2013,5,24,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1500,18,1,2259,12,0,0 +2013,5,22,3,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-2,0,2010,-10,0,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,610,-3,0,735,-5,0,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,0,0,1535,-14,0,0 +2013,8,2,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,17,1,2145,12,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,-4,0,2217,-15,0,0 +2013,7,14,7,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-11,0,1020,-8,0,0 +2013,6,17,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1510,-1,0,1815,-4,0,0 +2013,5,27,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,-2,0,2200,37,1,0 +2013,7,1,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,105,1,1333,76,1,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,27,1,2321,21,1,0 +2013,8,14,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2155,80,1,43,90,1,0 +2013,6,26,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2109,5,0,2221,-4,0,0 +2013,7,31,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-6,0,1105,1,0,0 +2013,5,4,6,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1259,-4,0,1526,1,0,0 +2013,10,27,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-6,0,1845,-22,0,0 +2013,6,25,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,850,-6,0,0 +2013,6,5,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,0,0,940,3,0,0 +2013,9,4,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,0,0,1430,-7,0,0 +2013,4,1,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,-3,0,830,-3,0,0 +2013,6,29,6,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1916,-4,0,2130,-32,0,0 +2013,7,25,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-7,0,1719,-8,0,0 +2013,8,15,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,844,5,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,2,0,1310,-10,0,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-6,0,920,-12,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1800,30,1,1920,15,1,0 +2013,5,4,6,OO,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-10,0,1556,-12,0,0 +2013,5,1,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-3,0,1806,-24,0,0 +2013,10,16,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1224,-7,0,1441,-19,0,0 +2013,10,23,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,855,13,0,955,11,0,0 +2013,9,26,4,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1034,-4,0,1418,-12,0,0 +2013,7,7,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,-7,0,852,-12,0,0 +2013,7,6,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1523,56,1,1627,41,1,0 +2013,9,28,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1300,6,0,2132,-19,0,0 +2013,6,14,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-1,0,727,-5,0,0 +2013,4,30,2,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-5,0,2050,-8,0,0 +2013,4,8,1,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-2,0,1820,-6,0,0 +2013,6,27,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1735,38,1,1905,31,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,925,28,1,1152,17,1,0 +2013,7,1,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,-3,0,2225,-2,0,0 +2013,5,14,2,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1435,-5,0,2240,-3,0,0 +2013,9,29,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2030,65,1,2155,54,1,0 +2013,9,22,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,910,-8,0,1450,-24,0,0 +2013,4,5,5,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1515,-11,0,2317,-19,0,0 +2013,7,14,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1100,-1,0,1155,-9,0,0 +2013,10,14,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-4,0,2125,0,0,0 +2013,9,11,3,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1620,0,,1828,0,1,1 +2013,7,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,645,12,0,805,4,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,750,7,0,1148,-6,0,0 +2013,5,20,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,-6,0,2050,-12,0,0 +2013,10,19,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1043,7,0,1435,-15,0,0 +2013,8,16,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,630,2,0,735,1,0,0 +2013,10,15,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1855,60,1,2035,60,1,0 +2013,8,1,4,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1200,11,0,1513,15,1,0 +2013,5,10,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1558,-8,0,0 +2013,9,15,7,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1820,-7,0,2308,-27,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1320,19,1,1544,13,0,0 +2013,9,16,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,600,-2,0,745,-1,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1055,-3,0,1222,3,0,0 +2013,5,11,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,820,-3,0,1100,-7,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2145,42,1,15,35,1,0 +2013,8,22,4,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,6,0,1240,-6,0,0 +2013,7,13,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,-4,0,2034,-1,0,0 +2013,4,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,905,-10,0,1013,-19,0,0 +2013,10,3,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,629,-5,0,705,-3,0,0 +2013,6,20,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1459,-9,0,1649,-4,0,0 +2013,4,11,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,910,18,1,1059,38,1,0 +2013,4,20,6,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1900,-8,0,2227,-24,0,0 +2013,9,9,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,-1,0,1531,2,0,0 +2013,9,18,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1352,-4,0,1658,-10,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,16,1,1115,7,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,-6,0,1648,-13,0,0 +2013,4,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-5,0,855,-10,0,0 +2013,9,18,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,-1,0,1602,-20,0,0 +2013,6,29,6,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,7,0,1340,-2,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,-2,0,609,-11,0,0 +2013,8,24,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1720,15,1,1845,21,1,0 +2013,7,17,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-2,0,1215,-12,0,0 +2013,6,25,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,-5,0,1540,-8,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-4,0,1020,-14,0,0 +2013,6,28,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,27,1,1201,17,1,0 +2013,8,22,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,53,1,1530,64,1,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2125,0,,2250,0,1,1 +2013,8,18,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,-9,0,1525,4,0,0 +2013,9,2,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1025,13,0,1305,14,0,0 +2013,9,8,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-9,0,1655,-3,0,0 +2013,8,28,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,-4,0,1641,-4,0,0 +2013,10,6,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,-3,0,1605,-28,0,0 +2013,5,17,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1819,-9,0,1925,-10,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2151,-4,0,2337,-16,0,0 +2013,8,5,1,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1905,-5,0,2056,-9,0,0 +2013,10,30,3,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-7,0,1144,-6,0,0 +2013,9,27,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1000,-1,0,1115,-1,0,0 +2013,4,25,4,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1405,-6,0,1623,-26,0,0 +2013,7,13,6,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,748,-8,0,1330,-4,0,0 +2013,5,14,2,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1805,-6,0,2025,-28,0,0 +2013,9,24,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1707,-6,0,2048,-24,0,0 +2013,4,13,6,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1630,8,0,2155,-6,0,0 +2013,5,21,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,12,0,1125,19,1,0 +2013,9,6,5,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,845,-8,0,956,-16,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1440,-1,0,2101,-29,0,0 +2013,8,23,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1107,-1,0,1235,-5,0,0 +2013,7,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1455,36,1,1600,43,1,0 +2013,5,2,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,2,0,1137,-8,0,0 +2013,5,22,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,620,3,0,936,-15,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,10,0,1205,33,1,0 +2013,5,27,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,8,0,2205,-11,0,0 +2013,6,7,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,0,1826,15,1,0 +2013,6,29,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,2000,-5,0,2359,-19,0,0 +2013,5,26,7,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1420,-1,0,1550,-5,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,4,0,1055,-7,0,0 +2013,4,22,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-6,0,1208,-20,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-3,0,1050,-22,0,0 +2013,4,29,1,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,8,0,1005,11,0,0 +2013,6,5,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-4,0,1840,-6,0,0 +2013,5,24,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,49,1,1413,49,1,0 +2013,7,15,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1730,4,0,2025,6,0,0 +2013,7,30,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,0,0,1928,-12,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,0,0,850,-10,0,0 +2013,7,24,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1750,9,0,2345,-10,0,0 +2013,4,12,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,21,1,1021,11,0,0 +2013,6,8,6,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,710,0,0,925,-26,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-1,0,1330,-7,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1540,29,1,1810,44,1,0 +2013,8,19,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1550,-9,0,1848,-29,0,0 +2013,9,11,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-14,0,1630,-28,0,0 +2013,7,27,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,53,1,1508,88,1,0 +2013,7,17,3,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-2,0,1136,-11,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,845,-2,0,1104,10,0,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,-4,0,1415,-13,0,0 +2013,9,26,4,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,705,-9,0,908,-10,0,0 +2013,8,30,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,27,1,1735,18,1,0 +2013,4,20,6,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1115,40,1,1233,31,1,0 +2013,6,4,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1349,10,0,1410,9,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,715,-1,0,842,-6,0,0 +2013,5,10,5,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1750,2,0,2044,3,0,0 +2013,8,17,6,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,940,-23,0,0 +2013,6,19,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,274,1,1315,278,1,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,940,-6,0,1620,4,0,0 +2013,9,2,1,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1535,-1,0,1850,1,0,0 +2013,6,5,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,9,0,1105,32,1,0 +2013,6,11,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1930,-11,0,2144,-18,0,0 +2013,4,16,2,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1739,-1,0,2012,20,1,0 +2013,4,2,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2130,-2,0,2225,-7,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,845,4,0,1050,-12,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,935,6,0,1259,33,1,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1225,-1,0,1330,-8,0,0 +2013,6,17,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,2,0,739,1,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,9,0,1820,-7,0,0 +2013,6,2,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,830,0,0,1147,-2,0,0 +2013,7,13,6,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,2,0,929,-1,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1045,4,0,1315,-24,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,747,-3,0,1139,-14,0,0 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,-4,0,2135,13,0,0 +2013,6,8,6,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,720,-6,0,1552,-12,0,0 +2013,7,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,805,7,0,1050,-5,0,0 +2013,8,15,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1720,-2,0,2002,-9,0,0 +2013,10,3,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,-8,0,2052,-11,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,949,0,0,1112,-13,0,0 +2013,9,5,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1331,16,1,1840,11,0,0 +2013,10,13,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1345,49,1,1435,36,1,0 +2013,5,3,5,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1859,217,1,2134,167,1,0 +2013,4,9,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1610,71,1,1715,66,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1454,-6,0,1651,-5,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,603,-3,0,1150,-16,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,833,-1,0,1448,-29,0,0 +2013,10,9,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-7,0,747,-6,0,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1743,-3,0,1920,-13,0,0 +2013,4,21,7,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-8,0,903,10,0,0 +2013,8,29,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,745,-4,0,915,-29,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-5,0,1443,-7,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,853,-4,0,1020,5,0,0 +2013,8,10,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1534,27,1,1930,25,1,0 +2013,5,31,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,717,7,0,901,0,0,0 +2013,7,16,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,723,82,1,948,73,1,0 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,2010,-4,0,2249,-15,0,0 +2013,6,10,1,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1640,-9,0,1903,-25,0,0 +2013,5,1,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1655,28,1,1800,22,1,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-3,0,1740,-21,0,0 +2013,8,13,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,34,1,2150,36,1,0 +2013,5,13,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,22,1,2110,18,1,0 +2013,7,23,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,957,-13,0,1038,-14,0,0 +2013,6,24,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2350,15,1,724,9,0,0 +2013,4,25,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1118,-9,0,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1559,-5,0,1853,-6,0,0 +2013,4,23,2,VX,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1855,0,0,2159,5,0,0 +2013,9,23,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,92,1,1159,75,1,0 +2013,8,29,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-4,0,1123,0,0,0 +2013,9,23,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,715,-4,0,815,-7,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1705,9,0,2010,4,0,0 +2013,6,8,6,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,15,1,919,17,1,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,745,-4,0,925,-10,0,0 +2013,4,14,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-3,0,1100,-11,0,0 +2013,9,20,5,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,915,0,,1059,0,1,1 +2013,8,2,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1642,0,,1914,0,1,1 +2013,7,16,2,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1625,-2,0,1710,-13,0,0 +2013,7,30,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1422,15,1,1615,20,1,0 +2013,9,17,2,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1651,100,1,1957,93,1,0 +2013,5,20,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-1,0,835,-14,0,0 +2013,10,31,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-6,0,1505,5,0,0 +2013,6,14,5,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,8,0,1748,12,0,0 +2013,9,24,2,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,630,-7,0,925,-13,0,0 +2013,9,27,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1255,18,1,1412,8,0,0 +2013,10,19,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1256,-1,0,1606,-2,0,0 +2013,5,1,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1440,-5,0,2220,-4,0,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1835,317,1,2146,284,1,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1230,13,0,1705,31,1,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1512,-3,0,1853,-24,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1305,12,0,1426,-3,0,0 +2013,4,4,4,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1148,7,0,1359,-6,0,0 +2013,6,14,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2004,70,1,2108,84,1,0 +2013,9,26,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,921,-6,0,1035,-14,0,0 +2013,9,19,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1031,29,1,1226,24,1,0 +2013,9,11,3,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,920,-4,0,1120,-13,0,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,1,0,1420,-6,0,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1145,-5,0,1517,-4,0,0 +2013,9,13,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,936,9,0,1047,12,0,0 +2013,10,11,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,921,-3,0,1050,-3,0,0 +2013,6,12,3,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,-2,0,1230,1,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,27,1,1515,8,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1015,-3,0,1140,2,0,0 +2013,5,11,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,28,1,1700,53,1,0 +2013,8,3,6,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,730,0,0,855,3,0,0 +2013,8,14,3,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,840,1,0,1100,-2,0,0 +2013,4,28,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-6,0,835,-5,0,0 +2013,9,20,5,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1445,0,0,1830,-4,0,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1740,59,1,1945,47,1,0 +2013,9,6,5,DL,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,2235,-7,0,556,-11,0,0 +2013,8,28,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,2250,-11,0,0 +2013,8,25,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1529,-5,0,1731,-11,0,0 +2013,9,29,7,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,634,-3,0,1147,-12,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,1023,-10,0,0 +2013,5,5,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2000,2,0,2333,-35,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,841,1,0,1033,-27,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1040,1,0,1315,-13,0,0 +2013,8,27,2,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1437,-9,0,1610,-26,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1906,88,1,2046,73,1,0 +2013,8,22,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-1,0,1519,-2,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1206,-6,0,1452,17,1,0 +2013,6,14,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,18,1,2039,3,0,0 +2013,4,15,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-1,0,844,16,1,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1455,1,0,1635,-8,0,0 +2013,4,19,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,827,0,0,1024,17,1,0 +2013,4,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1155,0,0,1438,12,0,0 +2013,5,4,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-2,0,911,2,0,0 +2013,10,29,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1935,-5,0,2035,-18,0,0 +2013,7,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1247,-4,0,1619,-23,0,0 +2013,8,1,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,55,1,0,555,3,0,0 +2013,9,7,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,844,1,0,1604,10,0,0 +2013,10,6,7,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,0,0,1245,3,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,930,8,0,1655,-8,0,0 +2013,10,17,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-1,0,2005,-2,0,0 +2013,6,14,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2130,1,0,2250,3,0,0 +2013,7,2,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,4,0,1849,3,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1120,1,0,1453,-11,0,0 +2013,4,2,2,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,830,-4,0,1105,-18,0,0 +2013,4,9,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1707,-13,0,2005,-2,0,0 +2013,10,23,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,12,0,1320,9,0,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-4,0,1700,-12,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1545,86,1,1736,98,1,0 +2013,7,19,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1344,10,0,1530,14,0,0 +2013,7,26,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-9,0,852,-13,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1919,13,0,2300,-10,0,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,3,0,1501,-9,0,0 +2013,8,3,6,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1738,-2,0,1915,-10,0,0 +2013,6,13,4,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,0,0,1133,16,1,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2147,-6,0,2336,-13,0,0 +2013,8,18,7,UA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,650,-6,0,758,-6,0,0 +2013,7,31,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,917,-4,0,1130,-11,0,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,809,-5,0,932,-6,0,0 +2013,4,23,2,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1554,134,1,1759,121,1,0 +2013,10,17,4,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1535,-2,0,1700,14,0,0 +2013,10,17,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2115,27,1,2310,11,0,0 +2013,9,11,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-8,0,944,3,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,848,-1,0,1624,0,0,0 +2013,7,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,45,1,1815,35,1,0 +2013,10,10,4,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-3,0,1100,-2,0,0 +2013,10,23,3,OO,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-1,0,1330,3,0,0 +2013,4,4,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1550,0,0,1720,-4,0,0 +2013,7,12,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,829,38,1,1010,23,1,0 +2013,10,1,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1436,-3,0,1646,-19,0,0 +2013,9,23,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1805,-3,0,2115,-25,0,0 +2013,10,21,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,745,-1,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,2008,-1,0,2328,-9,0,0 +2013,6,26,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,19,1,5,37,1,0 +2013,9,29,7,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1050,-2,0,1420,-10,0,0 +2013,6,2,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-4,0,1754,-5,0,0 +2013,6,16,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-5,0,820,-5,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,2359,-10,0,454,-17,0,0 +2013,8,15,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-3,0,1030,9,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,827,-3,0,1006,-12,0,0 +2013,7,13,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,1406,21,1,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,855,-4,0,1555,-10,0,0 +2013,9,3,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1849,0,0,2137,3,0,0 +2013,8,7,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1212,5,0,1314,6,0,0 +2013,8,18,7,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,169,1,1529,175,1,0 +2013,6,14,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2036,68,1,2158,56,1,0 +2013,4,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1805,-1,0,2015,-7,0,0 +2013,7,20,6,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,0,0,855,-3,0,0 +2013,4,1,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1103,8,0,1302,-22,0,0 +2013,6,2,7,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1851,27,1,2015,25,1,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,2,0,1050,-23,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1620,8,0,2105,1,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1050,5,0,1345,-24,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,-6,0,2330,-22,0,0 +2013,9,5,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-9,0,936,-6,0,0 +2013,8,23,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,17,1,1825,13,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1735,-1,0,1852,-6,0,0 +2013,5,16,4,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,745,-12,0,943,1,0,0 +2013,5,19,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1040,14,0,1605,22,1,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1026,-14,0,0 +2013,5,2,4,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1415,-5,0,1640,-17,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2010,99,1,2130,83,1,0 +2013,8,17,6,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1620,-2,0,1740,-2,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1045,1,0,1226,-12,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,152,1,1935,145,1,0 +2013,5,24,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1131,-3,0,1303,-15,0,0 +2013,9,5,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,900,-2,0,0 +2013,10,1,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1011,-4,0,0 +2013,6,1,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,6,0,1406,5,0,0 +2013,9,26,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1340,33,1,1545,6,0,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-9,0,919,-10,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2100,-4,0,2350,-9,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,17,1,1800,10,0,0 +2013,8,3,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1955,-1,0,2135,-8,0,0 +2013,9,9,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-6,0,1119,14,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1200,64,1,1325,68,1,0 +2013,4,30,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1421,-5,0,1750,-20,0,0 +2013,5,3,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,950,1,0,1100,-1,0,0 +2013,7,12,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,640,0,0,755,-5,0,0 +2013,10,27,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,45,1,2040,30,1,0 +2013,4,12,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,600,-1,0,715,-11,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,929,1,0,1120,6,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,825,0,0,950,-17,0,0 +2013,9,18,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,7,0,1820,-3,0,0 +2013,7,4,4,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1858,-19,0,2159,-44,0,0 +2013,7,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-5,0,1016,-5,0,0 +2013,6,12,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-3,0,1655,-9,0,0 +2013,7,11,4,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2202,34,1,2353,25,1,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2110,12,0,2251,1,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1705,0,,1805,0,1,1 +2013,6,6,4,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-5,0,2148,4,0,0 +2013,9,22,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1000,-3,0,1009,-8,0,0 +2013,8,22,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,806,3,0,1400,7,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1439,-2,0,1627,5,0,0 +2013,7,2,2,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,810,-5,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2215,6,0,45,8,0,0 +2013,5,12,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1748,-4,0,2100,-13,0,0 +2013,7,3,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1605,24,1,1740,-1,0,0 +2013,7,20,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,600,2,0,902,-9,0,0 +2013,4,26,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1929,136,1,2109,125,1,0 +2013,4,14,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1542,29,1,1620,15,1,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,127,1,2335,124,1,0 +2013,7,6,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-8,0,1005,10,0,0 +2013,6,30,7,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1227,14,0,1412,12,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,-6,0,1409,-3,0,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2150,57,1,2300,55,1,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2225,43,1,2355,45,1,0 +2013,10,5,6,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,802,-21,0,0 +2013,10,8,2,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-4,0,909,11,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,600,-5,0,1025,-17,0,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,755,-1,0,940,17,1,0 +2013,9,7,6,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,857,-10,0,952,-22,0,0 +2013,9,17,2,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,810,-17,0,0 +2013,4,10,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1238,-7,0,2109,17,1,0 +2013,7,19,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-7,0,1355,-29,0,0 +2013,5,17,5,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,915,15,1,1209,15,1,0 +2013,9,23,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-2,0,1213,-11,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1153,-6,0,1629,-28,0,0 +2013,8,19,1,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,700,-1,0,910,-1,0,0 +2013,6,8,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-4,0,1809,-10,0,0 +2013,6,17,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1004,-1,0,1315,4,0,0 +2013,8,28,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,4,0,1240,-7,0,0 +2013,8,6,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,0,0,1940,-8,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2129,0,,2349,0,1,1 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,9,0,1302,-39,0,0 +2013,9,18,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,800,-3,0,1110,-28,0,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,-4,0,1812,-16,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2125,15,1,2250,9,0,0 +2013,7,18,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,2,0,1354,-11,0,0 +2013,8,21,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-2,0,2005,10,0,0 +2013,4,19,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-5,0,1413,1,0,0 +2013,8,17,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1611,26,1,1742,14,0,0 +2013,10,12,6,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1320,12,0,1515,15,1,0 +2013,10,22,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,-4,0,2135,-22,0,0 +2013,10,20,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1951,22,1,2014,33,1,0 +2013,8,22,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2035,2,0,2305,-9,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2005,60,1,2105,65,1,0 +2013,6,12,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,500,-9,0,654,-3,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,21,1,55,7,0,0 +2013,6,6,4,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,6,0,1330,22,1,0 +2013,10,9,3,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,-3,0,1350,-10,0,0 +2013,8,7,3,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1200,-6,0,1446,-7,0,0 +2013,9,2,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-3,0,1417,-11,0,0 +2013,6,19,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,1,0,1020,-9,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1200,-2,0,1414,-12,0,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-6,0,911,-13,0,0 +2013,10,21,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,6,0,1645,0,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,2,0,1830,-5,0,0 +2013,4,3,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,759,0,0,0 +2013,6,24,1,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1103,32,1,1400,30,1,0 +2013,4,29,1,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,610,-8,0,1203,-25,0,0 +2013,10,18,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-4,0,1023,2,0,0 +2013,5,22,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-3,0,1042,-4,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1707,10,0,1859,1,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,805,-13,0,0 +2013,6,26,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,650,0,0,720,-2,0,0 +2013,7,22,1,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1335,0,,1641,0,1,1 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,2,0,1322,2,0,0 +2013,7,25,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,34,1,736,36,1,0 +2013,5,7,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-5,0,1521,-1,0,0 +2013,7,17,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,-2,0,2230,1,0,0 +2013,5,16,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1344,19,1,1823,11,0,0 +2013,9,29,7,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1134,-6,0,1343,-4,0,0 +2013,10,14,1,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,621,0,0,759,-10,0,0 +2013,5,14,2,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1145,-9,0,0 +2013,9,11,3,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,-4,0,1305,-12,0,0 +2013,6,27,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,21,1,800,13,0,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,-3,0,930,-5,0,0 +2013,6,15,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1523,-5,0,0 +2013,7,23,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,-2,0,1759,-9,0,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,0,0,1200,-3,0,0 +2013,9,15,7,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-1,0,31,-11,0,0 +2013,4,8,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1015,-6,0,1305,7,0,0 +2013,4,20,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,4,0,2220,7,0,0 +2013,4,23,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,705,-8,0,922,-7,0,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1820,12,0,2300,6,0,0 +2013,7,24,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1730,12,0,1835,3,0,0 +2013,7,31,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,730,-5,0,845,-11,0,0 +2013,5,14,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,810,-5,0,1145,-10,0,0 +2013,9,25,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,825,-6,0,1023,-13,0,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,950,2,0,1230,11,0,0 +2013,7,7,7,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,0,0,2200,1,0,0 +2013,4,25,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,0,0,825,0,0,0 +2013,8,12,1,HA,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1325,-7,0,2130,-1,0,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1940,11,0,2240,14,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2045,19,1,2309,-10,0,0 +2013,8,4,7,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,13,0,1605,15,1,0 +2013,5,10,5,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-6,0,752,46,1,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,-9,0,915,8,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-1,0,1837,-29,0,0 +2013,4,17,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1208,8,0,1800,-22,0,0 +2013,5,1,3,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1340,-3,0,1529,-8,0,0 +2013,5,27,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-11,0,810,-15,0,0 +2013,10,15,2,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,830,-8,0,1019,-26,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,-5,0,1905,-14,0,0 +2013,5,16,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,-7,0,1615,11,0,0 +2013,8,1,4,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,545,0,0,845,-9,0,0 +2013,4,21,7,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-10,0,1915,-19,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-1,0,1640,10,0,0 +2013,8,11,7,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,5,0,1750,18,1,0 +2013,10,11,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2322,0,0,512,-12,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,13,0,1955,7,0,0 +2013,7,10,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-4,0,940,-14,0,0 +2013,4,9,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1329,-5,0,1504,-7,0,0 +2013,6,23,7,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-6,0,803,-9,0,0 +2013,7,9,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1250,-4,0,1425,1,0,0 +2013,6,3,1,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,19,1,1025,11,0,0 +2013,10,31,4,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,1,0,1550,27,1,0 +2013,10,13,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1515,-6,0,1812,-16,0,0 +2013,7,14,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-6,0,1225,-7,0,0 +2013,7,19,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-6,0,1534,-23,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1120,23,1,1330,19,1,0 +2013,9,12,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-6,0,1000,-16,0,0 +2013,8,29,4,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1823,0,0,2003,-17,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,45,1,1435,37,1,0 +2013,9,5,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,854,-8,0,1014,-11,0,0 +2013,8,23,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1445,0,0,1522,8,0,0 +2013,6,4,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1005,-7,0,1139,-3,0,0 +2013,8,18,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1542,11,0,1908,-1,0,0 +2013,5,22,3,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,-2,0,1234,-13,0,0 +2013,10,9,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,-1,0,1740,-8,0,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1210,3,0,1300,6,0,0 +2013,10,25,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-8,0,1043,-8,0,0 +2013,9,24,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1905,-5,0,2022,-13,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1635,18,1,1830,20,1,0 +2013,7,6,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1530,-2,0,1715,-13,0,0 +2013,6,18,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,9,0,1155,-9,0,0 +2013,4,19,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,700,126,1,1525,112,1,0 +2013,6,18,2,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,514,-4,0,625,1,0,0 +2013,9,26,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,-7,0,1045,-9,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,0,0,1650,5,0,0 +2013,7,11,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,152,1,1856,151,1,0 +2013,8,7,3,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2014,-8,0,2259,-15,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,8,0,1206,2,0,0 +2013,10,20,7,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1554,-5,0,1727,-11,0,0 +2013,5,17,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-1,0,1554,0,0,0 +2013,8,12,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,845,-9,0,1224,-8,0,0 +2013,8,25,7,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1820,128,1,2000,118,1,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1814,-1,0,2013,14,0,0 +2013,5,31,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1050,-17,0,1220,-12,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,-2,0,2010,-9,0,0 +2013,4,6,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2030,16,1,2258,-8,0,0 +2013,10,14,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-6,0,1522,-25,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-5,0,1030,-5,0,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1445,-3,0,1623,4,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-2,0,1835,-17,0,0 +2013,6,13,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1315,-5,0,1440,2,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1002,-2,0,1154,2,0,0 +2013,8,15,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,908,-3,0,1200,-10,0,0 +2013,5,22,3,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1230,-3,0,1331,-5,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,20,1,1750,18,1,0 +2013,8,2,5,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,-7,0,2126,-13,0,0 +2013,10,7,1,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1755,5,0,2237,15,1,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1830,-6,0,2112,-15,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,1,0,1625,-2,0,0 +2013,10,12,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1425,7,0,1550,3,0,0 +2013,4,30,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-7,0,1125,-17,0,0 +2013,9,15,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-5,0,2125,-3,0,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,19,1,1004,19,1,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1550,-6,0,2130,-23,0,0 +2013,4,24,3,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1825,-2,0,2005,18,1,0 +2013,5,11,6,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,620,-9,0,723,-18,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-1,0,1030,5,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,4,0,1819,12,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2125,-2,0,2249,-5,0,0 +2013,7,18,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,8,0,1959,13,0,0 +2013,6,5,3,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-8,0,1950,-19,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,935,40,1,1200,34,1,0 +2013,5,1,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1805,9,0,2331,27,1,0 +2013,5,21,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1146,-16,0,0 +2013,9,24,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1635,-10,0,1827,-20,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1200,1,0,1509,-14,0,0 +2013,9,16,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-5,0,925,4,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1334,-4,0,1525,-26,0,0 +2013,8,10,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-4,0,1628,-20,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,849,10,0,1634,31,1,0 +2013,7,29,1,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,15,1,1302,32,1,0 +2013,9,28,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-9,0,729,-6,0,0 +2013,4,4,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-7,0,1340,-15,0,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,20,1,2030,11,0,0 +2013,10,28,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1809,29,1,2030,24,1,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1545,-2,0,1840,-15,0,0 +2013,4,7,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,1008,-10,0,0 +2013,8,24,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1000,-4,0,1100,-13,0,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1725,-7,0,1830,-13,0,0 +2013,10,18,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,940,-6,0,1230,-18,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,0,0,2015,15,1,0 +2013,10,7,1,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1815,31,1,2000,24,1,0 +2013,8,24,6,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-3,0,1635,-8,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2205,-5,0,4,-27,0,0 +2013,6,9,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-1,0,1128,17,1,0 +2013,8,11,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1650,-1,0,2021,3,0,0 +2013,5,30,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1552,10,0,1648,7,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,714,-4,0,1111,1,0,0 +2013,9,15,7,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1900,3,0,1918,18,1,0 +2013,9,23,1,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,0,0,1907,-3,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1226,-2,0,1342,6,0,0 +2013,10,29,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,36,1,1950,26,1,0 +2013,10,21,1,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-5,0,1630,5,0,0 +2013,9,6,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-3,0,820,-14,0,0 +2013,10,4,5,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,920,-5,0,1220,10,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1505,3,0,2245,2,0,0 +2013,10,1,2,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-5,0,809,-5,0,0 +2013,9,17,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,135,1,2035,114,1,0 +2013,4,6,6,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1645,15,1,1800,8,0,0 +2013,5,14,2,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,835,0,0,1105,-14,0,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1715,6,0,1851,6,0,0 +2013,4,2,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,735,-3,0,800,-22,0,0 +2013,4,19,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,845,-1,0,1015,-7,0,0 +2013,8,23,5,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,1,0,1408,-1,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1850,0,0,2205,-13,0,0 +2013,7,29,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,641,-1,0,827,-19,0,0 +2013,7,2,2,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,-1,0,816,0,0,0 +2013,4,15,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1530,7,0,1810,-12,0,0 +2013,9,19,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,-3,0,1715,-8,0,0 +2013,10,15,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,4,0,1950,-4,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1000,6,0,1655,-4,0,0 +2013,7,13,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,820,30,1,1220,55,1,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,-1,0,1725,4,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1115,10,0,1302,26,1,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,829,0,,959,0,1,1 +2013,7,15,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,545,1,0,705,-7,0,0 +2013,4,9,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2035,5,0,2254,26,1,0 +2013,4,4,4,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-7,0,815,-8,0,0 +2013,8,24,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1226,-5,0,1820,31,1,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,5,0,2341,1,0,0 +2013,5,17,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1414,19,1,1652,9,0,0 +2013,9,28,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1205,-1,0,1335,-8,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-14,0,1112,-12,0,0 +2013,5,23,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,-5,0,1901,-8,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1531,-4,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1850,15,1,2000,0,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,820,1,0,1335,-6,0,0 +2013,4,2,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,9,0,2005,10,0,0 +2013,10,8,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-9,0,1850,-17,0,0 +2013,8,5,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,830,-5,0,1025,-5,0,0 +2013,8,20,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1350,3,0,1510,1,0,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2100,1,0,8,-19,0,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1055,1,0,1403,-3,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,-6,0,729,-13,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2204,-10,0,2328,-17,0,0 +2013,6,6,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1455,1,0,2245,-4,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1605,-4,0,2345,-22,0,0 +2013,8,22,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,20,1,1600,61,1,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,920,0,,1025,0,1,1 +2013,10,7,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,3,0,1100,1,0,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,-4,0,930,-10,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,5,0,2335,-1,0,0 +2013,10,12,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-5,0,1801,-4,0,0 +2013,6,19,3,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-6,0,1006,-5,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1935,23,1,2130,4,0,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1635,94,1,2005,88,1,0 +2013,9,2,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-7,0,1245,5,0,0 +2013,8,1,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,7,0,2050,12,0,0 +2013,9,22,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,907,-1,0,1100,-8,0,0 +2013,6,28,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1625,6,0,1815,-6,0,0 +2013,10,11,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,655,-1,0,745,-5,0,0 +2013,10,1,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,915,-1,0,1222,-30,0,0 +2013,6,24,1,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,-2,0,2305,5,0,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2010,-3,0,2250,23,1,0 +2013,4,12,5,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,1,0,1110,32,1,0 +2013,6,22,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-13,0,845,-9,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,-2,0,1855,6,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,-2,0,2100,-26,0,0 +2013,8,8,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1845,-3,0,2137,14,0,0 +2013,8,20,2,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2000,-2,0,2242,-22,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,7,0,1625,3,0,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,-2,0,1710,-6,0,0 +2013,7,12,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,108,1,2015,113,1,0 +2013,9,3,2,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1139,-3,0,1254,-12,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-2,0,2124,-1,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1155,0,0,1335,-7,0,0 +2013,9,21,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,820,9,0,900,8,0,0 +2013,10,29,2,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,802,3,0,1331,-15,0,0 +2013,4,10,3,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1730,89,1,1956,163,1,0 +2013,10,28,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-5,0,1315,-7,0,0 +2013,6,30,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,722,12,0,942,8,0,0 +2013,9,12,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2329,-4,0,515,-9,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,2030,17,1,2307,36,1,0 +2013,6,24,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-3,0,1046,-9,0,0 +2013,9,18,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,615,-6,0,810,-7,0,0 +2013,5,15,3,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1459,-8,0,1635,-23,0,0 +2013,9,7,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,956,0,,1603,0,1,1 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1940,87,1,5,71,1,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1905,8,0,1955,0,0,0 +2013,5,18,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-4,0,1820,-40,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2050,35,1,2323,-8,0,0 +2013,9,6,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1415,-6,0,1758,-18,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1324,88,1,2138,82,1,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1155,-5,0,2035,-30,0,0 +2013,10,10,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1120,16,1,1723,-17,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1050,-3,0,1234,-14,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1930,-4,0,2131,-7,0,0 +2013,8,28,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1656,2,0,1755,-4,0,0 +2013,10,21,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1625,-9,0,1800,-16,0,0 +2013,6,21,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1228,-3,0,1405,-7,0,0 +2013,6,8,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1632,4,0,0 +2013,10,27,7,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,915,1,0,1045,1,0,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,-4,0,1810,-14,0,0 +2013,7,14,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1208,14,0,1330,15,1,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1559,32,1,1740,33,1,0 +2013,8,18,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,6,0,1815,10,0,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1852,81,1,2200,70,1,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,932,-7,0,1042,-13,0,0 +2013,4,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1747,-5,0,1848,2,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1335,9,0,1415,6,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1540,16,1,1630,1,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1050,45,1,1720,10,0,0 +2013,8,23,5,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1440,2,0,1650,2,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,-1,0,1738,-8,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1725,19,1,2005,98,1,0 +2013,7,8,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,904,13,0,1036,36,1,0 +2013,10,2,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1835,-12,0,1940,-11,0,0 +2013,9,26,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,0,0,825,-17,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,59,1,2211,48,1,0 +2013,10,19,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1015,-4,0,1203,3,0,0 +2013,7,7,7,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1405,18,1,1645,10,0,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,16,1,2220,-12,0,0 +2013,4,14,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2015,11,0,2130,9,0,0 +2013,5,29,3,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1309,-7,0,1530,-18,0,0 +2013,8,7,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,23,1,2025,26,1,0 +2013,5,28,2,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1620,-1,0,1910,-10,0,0 +2013,7,23,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,128,1,1858,116,1,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1115,18,1,1815,25,1,0 +2013,9,3,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1849,-15,0,2134,-5,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,632,-10,0,812,-20,0,0 +2013,6,11,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-4,0,607,-21,0,0 +2013,4,3,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2016,-5,0,2244,-12,0,0 +2013,10,14,1,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2153,-7,0,605,-18,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1812,1,0,1941,-11,0,0 +2013,4,26,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1556,-5,0,1654,-6,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1025,7,0,1240,6,0,0 +2013,9,20,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-4,0,716,7,0,0 +2013,7,2,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-7,0,1119,-17,0,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,3,0,1250,-8,0,0 +2013,8,17,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,-6,0,1810,-14,0,0 +2013,5,12,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,722,-10,0,0 +2013,6,2,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,61,1,2153,58,1,0 +2013,10,23,3,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1545,-4,0,1805,0,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,7,0,2035,3,0,0 +2013,5,1,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,2,0,2210,-1,0,0 +2013,4,10,3,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,0,0,1308,24,1,0 +2013,4,15,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-7,0,2020,48,1,0 +2013,6,23,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,0,0,1945,8,0,0 +2013,4,3,3,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-3,0,1510,25,1,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-10,0,1816,-7,0,0 +2013,10,12,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1510,101,1,2117,74,1,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1520,-1,0,1620,0,0,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2135,-3,0,2306,1,0,0 +2013,10,23,3,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,-9,0,1845,-12,0,0 +2013,4,18,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,382,1,1334,376,1,0 +2013,6,5,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2110,6,0,2321,-4,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1735,68,1,1840,65,1,0 +2013,6,2,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-4,0,836,5,0,0 +2013,6,7,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,51,1,1837,58,1,0 +2013,6,19,3,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1815,4,0,2122,-18,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,13,0,1343,23,1,0 +2013,10,30,3,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,810,3,0,1005,13,0,0 +2013,4,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1127,-4,0,1231,-9,0,0 +2013,9,12,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-2,0,830,-15,0,0 +2013,8,31,6,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,17,1,2130,5,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1645,11,0,1858,-7,0,0 +2013,6,3,1,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,534,-9,0,702,-17,0,0 +2013,6,11,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1120,-2,0,1230,-7,0,0 +2013,4,30,2,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1650,-5,0,2035,-17,0,0 +2013,9,13,5,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,5,0,1915,-20,0,0 +2013,5,9,4,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1443,-8,0,1553,-9,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1625,10,0,1851,-11,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,0,0,1855,-11,0,0 +2013,5,25,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-1,0,1105,0,0,0 +2013,5,19,7,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1923,17,1,2135,13,0,0 +2013,6,14,5,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,2340,-2,0,701,-16,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,2000,40,1,55,26,1,0 +2013,4,12,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1055,31,1,1225,26,1,0 +2013,6,25,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1920,-3,0,2030,-20,0,0 +2013,5,9,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,-5,0,1240,-23,0,0 +2013,9,5,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1835,153,1,2155,146,1,0 +2013,6,20,4,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1945,28,1,2105,28,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1735,132,1,1850,118,1,0 +2013,10,25,5,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2222,10,0,613,-5,0,0 +2013,8,6,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1215,6,0,1400,-7,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1035,-4,0,1135,2,0,0 +2013,8,6,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,2,0,1555,12,0,0 +2013,7,23,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2055,-5,0,2120,4,0,0 +2013,6,9,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1235,6,0,2101,-33,0,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1650,60,1,1817,50,1,0 +2013,8,13,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,545,-1,0,706,-9,0,0 +2013,5,1,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,-4,0,2025,-20,0,0 +2013,10,15,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,1024,-4,0,0 +2013,10,28,1,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1135,0,0,1250,14,0,0 +2013,4,25,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1049,12,0,1355,-3,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1622,-1,0,1748,-3,0,0 +2013,8,20,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,0,0,1639,-13,0,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,724,-6,0,1029,-8,0,0 +2013,10,21,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,655,-4,0,845,-27,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1930,0,0,2107,-5,0,0 +2013,8,7,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1925,-1,0,2115,-11,0,0 +2013,8,4,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,16,1,1900,3,0,0 +2013,10,29,2,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,-7,0,2030,-15,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,745,-2,0,1010,8,0,0 +2013,7,15,1,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,845,-7,0,1054,-12,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1845,-3,0,2125,6,0,0 +2013,10,4,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,-1,0,1525,-21,0,0 +2013,10,15,2,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1700,-2,0,1805,1,0,0 +2013,6,10,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1003,104,1,1205,106,1,0 +2013,5,2,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,924,-5,0,1219,13,0,0 +2013,6,21,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-1,0,1645,43,1,0 +2013,7,20,6,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1449,24,1,1559,9,0,0 +2013,10,31,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1330,32,1,1440,28,1,0 +2013,4,29,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,1,0,1700,3,0,0 +2013,7,13,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,650,-4,0,855,5,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,4,0,1250,1,0,0 +2013,8,7,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1817,13,0,1918,21,1,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1959,9,0,2243,-10,0,0 +2013,6,28,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,632,-4,0,839,2,0,0 +2013,4,22,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,26,1,2230,21,1,0 +2013,10,27,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1804,8,0,2010,1,0,0 +2013,5,2,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,725,0,0,1028,4,0,0 +2013,5,4,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,4,0,1600,-3,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1945,0,0,2110,3,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1954,1,0,2331,-29,0,0 +2013,6,9,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,846,-12,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-7,0,2335,-17,0,0 +2013,4,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,193,1,1540,179,1,0 +2013,8,21,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1826,-5,0,1941,-1,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,2,0,2010,-1,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1853,15,1,2018,22,1,0 +2013,9,7,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1735,1,0,1845,-9,0,0 +2013,5,27,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1800,20,1,1940,15,1,0 +2013,8,28,3,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,700,-4,0,922,-11,0,0 +2013,10,3,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,1,0,1909,-6,0,0 +2013,7,5,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1615,-1,0,1800,-2,0,0 +2013,7,26,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1932,-4,0,2228,-26,0,0 +2013,7,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1000,6,0,1259,18,1,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,27,1,2343,16,1,0 +2013,9,11,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1425,-11,0,1533,-15,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1430,27,1,1734,-4,0,0 +2013,4,27,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1505,25,1,1605,38,1,0 +2013,8,20,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-11,0,805,-17,0,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1655,1,0,2220,-9,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2035,27,1,2315,20,1,0 +2013,7,14,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-9,0,735,-4,0,0 +2013,7,15,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,-6,0,1440,-46,0,0 +2013,5,26,7,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1245,60,1,1525,26,1,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,72,1,2155,81,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,939,76,1,1132,78,1,0 +2013,6,13,4,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,2039,89,1,2303,80,1,0 +2013,7,30,2,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1245,8,0,1425,11,0,0 +2013,8,1,4,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-7,0,1537,-15,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1530,-2,0,1835,-5,0,0 +2013,6,1,6,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1245,4,0,1538,-10,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1534,87,1,1728,66,1,0 +2013,10,11,5,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1410,1,0,1650,-11,0,0 +2013,8,18,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-10,0,1309,-21,0,0 +2013,4,29,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-5,0,1535,-9,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,0,0,830,-12,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1256,-2,0,1611,-1,0,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,700,3,0,805,-10,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1820,21,1,1915,46,1,0 +2013,10,7,1,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,606,3,0,1147,-4,0,0 +2013,9,28,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1415,-1,0,1510,-6,0,0 +2013,8,27,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1345,0,0,1556,-6,0,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,38,1,2343,44,1,0 +2013,8,8,4,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,830,0,0,1110,2,0,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1930,0,0,2131,2,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,700,-1,0,920,-24,0,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1631,169,1,1757,171,1,0 +2013,4,3,3,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1835,-2,0,2050,1,0,0 +2013,5,8,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,113,1,1300,113,1,0 +2013,5,31,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1720,5,0,1825,-2,0,0 +2013,5,16,4,9E,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1116,-6,0,1523,-6,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1900,26,1,2025,19,1,0 +2013,5,5,7,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-7,0,1604,-20,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1737,255,1,1925,249,1,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-3,0,1754,-10,0,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-6,0,2127,45,1,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1758,56,1,1955,35,1,0 +2013,10,16,3,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,750,6,0,1025,-13,0,0 +2013,7,24,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-1,0,1805,4,0,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-3,0,1030,-22,0,0 +2013,5,20,1,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1259,-1,0,1549,-3,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,-4,0,1712,-20,0,0 +2013,10,15,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,14,0,1400,22,1,0 +2013,7,2,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1625,-1,0,1904,-25,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1113,1,0,1250,-22,0,0 +2013,10,22,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,175,1,1915,163,1,0 +2013,5,28,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-1,0,1005,-18,0,0 +2013,8,11,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1750,13,0,2000,2,0,0 +2013,7,19,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1825,-5,0,2042,-5,0,0 +2013,4,28,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-7,0,937,-7,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,-3,0,1459,108,1,0 +2013,4,8,1,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,2010,-13,0,2212,-23,0,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1136,-5,0,1251,-21,0,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,2,0,1645,0,0,0 +2013,9,17,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1324,-1,0,1436,-9,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,635,-5,0,845,-14,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,845,-2,0,1005,-1,0,0 +2013,5,19,7,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1745,27,1,2120,17,1,0 +2013,5,14,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-8,0,1325,-16,0,0 +2013,7,21,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,-11,0,1633,2,0,0 +2013,8,17,6,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2015,15,1,2258,-17,0,0 +2013,9,9,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1943,6,0,2159,-14,0,0 +2013,5,22,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2159,0,,2311,0,1,1 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,930,-2,0,1208,-11,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1123,-8,0,1249,-17,0,0 +2013,8,20,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2153,10,0,2344,-1,0,0 +2013,7,26,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2029,0,0,453,-2,0,0 +2013,10,5,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1649,-16,0,0 +2013,10,5,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,850,-2,0,1050,-14,0,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,0,0,1305,-11,0,0 +2013,7,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1453,153,1,1620,148,1,0 +2013,4,21,7,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,754,-9,0,1555,-24,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,-1,0,1325,4,0,0 +2013,5,25,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1145,-5,0,1350,-10,0,0 +2013,10,7,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-4,0,1608,-32,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,725,8,0,955,-2,0,0 +2013,4,4,4,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14122,Pittsburgh International,Pittsburgh,PA,1400,10,0,1630,2,0,0 +2013,9,23,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,755,-7,0,929,-14,0,0 +2013,9,20,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,12,0,1655,14,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2240,0,0,40,-3,0,0 +2013,5,24,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,630,-7,0,1125,-2,0,0 +2013,8,13,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,845,1,0,1425,14,0,0 +2013,10,19,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1450,-6,0,2146,-34,0,0 +2013,6,8,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,6,0,1713,1,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,-2,0,1725,-11,0,0 +2013,9,26,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2055,-7,0,2113,-2,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,955,-6,0,1046,-13,0,0 +2013,4,29,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,16,1,801,2,0,0 +2013,10,1,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-6,0,1420,-20,0,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,2024,50,1,2354,26,1,0 +2013,6,7,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,802,-4,0,900,-15,0,0 +2013,9,11,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1435,-7,0,1610,-6,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1755,31,1,1905,26,1,0 +2013,8,1,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,11,0,2025,10,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1950,114,1,2330,91,1,0 +2013,7,22,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,934,7,0,1215,3,0,0 +2013,4,5,5,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,930,0,0,1040,-8,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,945,4,0,1120,-7,0,0 +2013,4,24,3,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1036,7,0,1829,-29,0,0 +2013,4,13,6,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1759,55,1,2321,53,1,0 +2013,7,2,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1818,-4,0,2046,6,0,0 +2013,10,2,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1110,-8,0,1245,-8,0,0 +2013,8,23,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-4,0,900,-1,0,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,9,0,1750,13,0,0 +2013,6,23,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1225,-2,0,1320,-4,0,0 +2013,6,13,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,269,1,1829,261,1,0 +2013,5,31,5,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1713,7,0,1841,0,0,0 +2013,6,12,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1559,-3,0,1727,-5,0,0 +2013,8,16,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-4,0,1557,-10,0,0 +2013,7,19,5,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,641,-4,0,855,-4,0,0 +2013,5,27,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,20,1,1649,19,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,835,-4,0,935,-2,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,635,-2,0,845,-14,0,0 +2013,7,15,1,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,530,-1,0,633,-25,0,0 +2013,6,15,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,1,0,845,-9,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1325,27,1,1545,-2,0,0 +2013,8,31,6,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,0,0,1350,3,0,0 +2013,5,27,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,1611,-15,0,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,4,0,1947,-12,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2146,57,1,2252,44,1,0 +2013,8,20,2,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-8,0,735,-11,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,238,1,2100,217,1,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1740,-8,0,1854,-12,0,0 +2013,6,28,5,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1725,89,1,1840,122,1,0 +2013,5,27,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,845,-1,0,0 +2013,7,7,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,800,6,0,1049,-2,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2004,-3,0,2311,-19,0,0 +2013,5,8,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1205,4,0,1320,1,0,0 +2013,10,29,2,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,0,0,1105,27,1,0 +2013,7,8,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,4,0,815,-12,0,0 +2013,9,8,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-7,0,1603,-10,0,0 +2013,8,6,2,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,1540,7,0,1745,-6,0,0 +2013,8,19,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1535,-2,0,1759,21,1,0 +2013,4,5,5,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,27,1,1711,2,0,0 +2013,9,23,1,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1059,-6,0,1904,-28,0,0 +2013,7,9,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-4,0,820,-5,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,-3,0,1803,-21,0,0 +2013,8,6,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1844,-8,0,2005,-3,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1259,-2,0,1552,-12,0,0 +2013,7,15,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1435,3,0,1710,-14,0,0 +2013,9,13,5,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,800,-3,0,1605,13,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2015,116,1,2258,129,1,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,6,0,2200,-2,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1545,11,0,1745,18,1,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-7,0,1213,-15,0,0 +2013,6,6,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1737,38,1,1909,45,1,0 +2013,10,26,6,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1634,-6,0,1645,2,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1230,6,0,1320,11,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-4,0,2209,-4,0,0 +2013,4,4,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,15376,Tucson International,Tucson,AZ,1100,-4,0,1115,-16,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1448,-5,0,1610,-3,0,0 +2013,7,9,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,51,1,1259,45,1,0 +2013,6,4,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1720,-5,0,2137,-11,0,0 +2013,7,17,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1536,9,0,1700,17,1,0 +2013,5,21,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,4,0,1709,-5,0,0 +2013,9,27,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1426,-4,0,1658,-3,0,0 +2013,4,4,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1927,-5,0,2037,-14,0,0 +2013,4,4,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1146,-4,0,1319,2,0,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1810,10,0,1940,7,0,0 +2013,8,12,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,1,0,555,-19,0,0 +2013,8,2,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,14,0,1320,2,0,0 +2013,6,30,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,182,1,1405,177,1,0 +2013,9,15,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,-5,0,2025,-8,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1352,43,1,1549,27,1,0 +2013,8,31,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,850,20,1,1145,8,0,0 +2013,10,22,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1733,-9,0,1900,-9,0,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,24,1,1250,20,1,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-9,0,1452,-26,0,0 +2013,8,19,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2130,-7,0,2215,-17,0,0 +2013,5,19,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1504,142,1,1719,139,1,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-1,0,1014,5,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,6,0,1317,15,1,0 +2013,10,2,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,29,1,1356,14,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2237,-8,0,709,-24,0,0 +2013,6,9,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,73,1,1845,76,1,0 +2013,4,11,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1800,0,0,2115,-6,0,0 +2013,6,10,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,-7,0,1930,0,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1445,3,0,1705,-6,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1035,6,0,1350,5,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,120,1,1401,119,1,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1820,26,1,1958,46,1,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,800,-1,0,1240,-10,0,0 +2013,4,20,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-6,0,641,-5,0,0 +2013,9,14,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1100,4,0,1205,-1,0,0 +2013,6,7,5,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,600,-1,0,730,-5,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2225,3,0,2349,0,0,0 +2013,8,13,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,6,0,625,-11,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1650,13,0,2030,45,1,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1728,-4,0,2226,-47,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,900,2,0,1250,-14,0,0 +2013,8,12,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1505,-2,0,1747,18,1,0 +2013,10,1,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1620,-4,0,1745,-8,0,0 +2013,6,10,1,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,2,0,2040,-19,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,-3,0,2241,5,0,0 +2013,8,21,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,-2,0,955,-4,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1325,0,0,1527,14,0,0 +2013,6,5,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-9,0,1235,-19,0,0 +2013,6,6,4,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1212,14,0,1503,-3,0,0 +2013,6,13,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,935,-1,0,1105,-12,0,0 +2013,4,23,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,944,-13,0,0 +2013,9,11,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,37,1,2135,2,0,0 +2013,5,29,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-3,0,1500,-7,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-2,0,2152,-2,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1106,-3,0,1650,11,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2118,35,1,2222,21,1,0 +2013,7,28,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1006,34,1,0 +2013,4,3,3,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,-5,0,2028,-16,0,0 +2013,10,7,1,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,0,0,1055,-5,0,0 +2013,4,14,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,935,-7,0,1050,-7,0,0 +2013,8,21,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,27,1,2024,25,1,0 +2013,6,13,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,12,0,2125,8,0,0 +2013,8,29,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,3,0,1755,8,0,0 +2013,7,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-2,0,1341,-1,0,0 +2013,9,30,1,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,555,-7,0,1420,-11,0,0 +2013,9,6,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-6,0,1306,-10,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2245,-3,0,707,1,0,0 +2013,8,7,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-2,0,1555,-4,0,0 +2013,4,23,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,2005,47,1,2200,56,1,0 +2013,4,23,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1750,18,1,2000,12,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2050,-3,0,2230,-10,0,0 +2013,9,25,3,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,840,1,0,930,-8,0,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1105,-5,0,1420,-31,0,0 +2013,8,24,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,1005,6,0,0 +2013,7,10,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,755,6,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,735,-2,0,1035,-10,0,0 +2013,8,7,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,2,0,1705,3,0,0 +2013,9,18,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1630,-2,0,1755,-4,0,0 +2013,5,19,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-3,0,1245,-2,0,0 +2013,7,2,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,825,-4,0,1106,4,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,2,0,1028,7,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1730,80,1,1925,85,1,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1142,5,0,1347,6,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,-3,0,1932,10,0,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1815,12,0,1940,12,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1742,-3,0,2026,-27,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1746,-9,0,2025,-20,0,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1725,-2,0,1859,2,0,0 +2013,7,13,6,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,55,6,0,555,23,1,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,7,0,1650,-3,0,0 +2013,10,11,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-5,0,1757,-5,0,0 +2013,10,15,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-5,0,1854,-7,0,0 +2013,8,21,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,-4,0,1635,4,0,0 +2013,9,4,3,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,0,0,1525,-14,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-4,0,1356,-16,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,4,0,2104,-4,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,618,-2,0,840,-12,0,0 +2013,10,16,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2015,0,,2125,0,1,1 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1855,-3,0,20,-4,0,0 +2013,10,22,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-4,0,1140,4,0,0 +2013,8,8,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-8,0,1555,-2,0,0 +2013,7,15,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,2011,2,0,2212,-5,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,25,1,1605,34,1,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,9,0,1134,7,0,0 +2013,6,9,7,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,14,0,2200,6,0,0 +2013,4,18,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1535,28,1,0 +2013,8,22,4,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,940,-7,0,1212,-5,0,0 +2013,7,7,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1455,4,0,1610,-6,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,2,0,2355,27,1,0 +2013,9,15,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,854,1,0,1102,6,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,-6,0,2317,-5,0,0 +2013,10,25,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,-4,0,1659,3,0,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2110,-2,0,2245,-1,0,0 +2013,10,11,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-4,0,2015,-2,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-1,0,1250,-15,0,0 +2013,9,27,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-9,0,904,3,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2030,106,1,2315,99,1,0 +2013,9,23,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1935,8,0,2144,8,0,0 +2013,5,25,6,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1545,-5,0,1740,-11,0,0 +2013,4,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1355,69,1,2000,42,1,0 +2013,4,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1527,-3,0,1737,-10,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,11,0,1450,-3,0,0 +2013,9,10,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,827,-11,0,0 +2013,9,29,7,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,7,0,616,7,0,0 +2013,8,2,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,644,2,0,825,11,0,0 +2013,4,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1935,54,1,2100,40,1,0 +2013,7,2,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1235,5,0,2045,10,0,0 +2013,5,5,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1755,-2,0,2101,-23,0,0 +2013,9,23,1,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,618,-4,0,915,-7,0,0 +2013,8,12,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,122,1,2039,122,1,0 +2013,5,21,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,-1,0,715,-2,0,0 +2013,9,1,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-6,0,849,-7,0,0 +2013,6,7,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,-4,0,2120,13,0,0 +2013,5,18,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,0,0,1405,6,0,0 +2013,10,21,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,45,-6,0,618,-5,0,0 +2013,4,17,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,801,14,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1208,2,0,1319,-10,0,0 +2013,10,11,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,844,-12,0,0 +2013,8,22,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1210,-2,0,1320,2,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1346,-2,0,1513,-8,0,0 +2013,4,24,3,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,-1,0,2028,-3,0,0 +2013,8,23,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,651,-1,0,905,-19,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1700,99,1,1955,105,1,0 +2013,8,29,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-2,0,900,-16,0,0 +2013,10,17,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,639,-5,0,835,1,0,0 +2013,9,27,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1805,-4,0,1950,-15,0,0 +2013,8,14,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,616,2,0,801,0,0,0 +2013,4,16,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1040,2,0,1340,-10,0,0 +2013,4,20,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,-7,0,2227,-12,0,0 +2013,5,7,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,-1,0,1640,-2,0,0 +2013,7,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,49,1,1038,50,1,0 +2013,6,6,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1744,19,1,2100,0,0,0 +2013,5,1,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,10,0,2215,6,0,0 +2013,6,3,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,915,-10,0,1105,-21,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1610,1,0,1740,-12,0,0 +2013,7,27,6,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,18,1,655,14,0,0 +2013,5,22,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1859,2,0,2250,22,1,0 +2013,7,23,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,708,-9,0,738,-31,0,0 +2013,7,15,1,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,5,0,1013,-31,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1755,0,0,2035,-1,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,0,0,2240,-16,0,0 +2013,8,6,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1810,-4,0,1915,-4,0,0 +2013,4,27,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1815,-6,0,1940,-18,0,0 +2013,10,27,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-5,0,905,2,0,0 +2013,8,15,4,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,1610,22,1,1750,20,1,0 +2013,7,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1006,-2,0,1158,-13,0,0 +2013,8,30,5,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,19,1,2258,15,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,5,0,2110,2,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,25,1,1345,35,1,0 +2013,6,15,6,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1455,-3,0,1715,-13,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1545,8,0,1800,7,0,0 +2013,8,30,5,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-5,0,1423,-14,0,0 +2013,4,7,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-5,0,2054,-11,0,0 +2013,6,2,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1437,2,0,1647,-3,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,700,-5,0,815,-12,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,-5,0,2006,0,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1520,4,0,1610,-1,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1307,-6,0,1640,-4,0,0 +2013,7,17,3,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-5,0,813,-10,0,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,27,1,1359,36,1,0 +2013,8,12,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1825,16,1,2015,35,1,0 +2013,5,22,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,930,-6,0,946,-20,0,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,715,5,0,945,-1,0,0 +2013,10,10,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1535,-10,0,1653,-29,0,0 +2013,9,1,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1605,-5,0,1650,-12,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1555,13,0,1730,5,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1230,-8,0,1410,-5,0,0 +2013,10,9,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,55,-1,0,529,-3,0,0 +2013,7,13,6,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,1116,9,0,0 +2013,4,21,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-4,0,811,-4,0,0 +2013,7,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-8,0,928,2,0,0 +2013,6,3,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1440,24,1,1614,40,1,0 +2013,8,1,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-10,0,2057,-20,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,-1,0,2337,-5,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2025,10,0,2125,-7,0,0 +2013,6,3,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2105,11,0,2227,8,0,0 +2013,4,19,5,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,7,0,550,3,0,0 +2013,5,4,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-8,0,1029,-7,0,0 +2013,5,2,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,24,1,2043,27,1,0 +2013,9,26,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-1,0,1310,-6,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,941,9,0,1209,3,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1516,-3,0,1638,4,0,0 +2013,7,27,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2039,-5,0,2200,8,0,0 +2013,5,31,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,601,0,0,1001,-7,0,0 +2013,4,21,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1925,-6,0,2254,-7,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1609,-2,0,1900,-22,0,0 +2013,4,5,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,719,-12,0,825,-22,0,0 +2013,9,26,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,5,0,901,22,1,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1155,-8,0,1300,-20,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,1,0,1055,-11,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1015,62,1,1201,43,1,0 +2013,7,19,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,12,0,2041,4,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1530,1,0,1630,-10,0,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,639,-1,0,850,-14,0,0 +2013,10,12,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1025,2,0,1500,-10,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1630,22,1,1826,8,0,0 +2013,8,14,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,-1,0,1735,2,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,30,1,1450,46,1,0 +2013,6,10,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,47,1,1745,58,1,0 +2013,6,24,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-2,0,2148,-7,0,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,850,7,0,1030,-11,0,0 +2013,6,22,6,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,1,0,558,0,0,0 +2013,5,19,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-12,0,1225,4,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1515,8,0,1830,1,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,733,-3,0,901,-10,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1335,-5,0,1900,-7,0,0 +2013,5,26,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,4,0,1321,-5,0,0 +2013,6,19,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1213,-6,0,1501,-37,0,0 +2013,5,17,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,-1,0,1515,6,0,0 +2013,10,7,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1417,23,1,0 +2013,6,25,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1908,175,1,1925,179,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1355,-1,0,1623,0,0,0 +2013,10,18,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1700,-8,0,1945,-13,0,0 +2013,5,21,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,-2,0,2043,-12,0,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,20,1,1740,30,1,0 +2013,8,25,7,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1311,-20,0,0 +2013,6,12,3,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1345,-4,0,1535,-13,0,0 +2013,10,25,5,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2055,-2,0,2206,-3,0,0 +2013,5,20,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2230,60,1,2354,45,1,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2235,48,1,2325,45,1,0 +2013,10,25,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,810,-3,0,945,-9,0,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,56,1,1950,54,1,0 +2013,10,2,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-5,0,1905,-9,0,0 +2013,5,29,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,831,-7,0,0 +2013,7,14,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,48,1,1630,49,1,0 +2013,5,21,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1301,-4,0,1412,-9,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1855,-2,0,2025,-5,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1356,-1,0,1611,1,0,0 +2013,8,31,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,-1,0,1315,-3,0,0 +2013,8,30,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1430,-6,0,1610,-20,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,1,0,1220,-12,0,0 +2013,7,7,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-4,0,1035,-5,0,0 +2013,7,25,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,2,0,1229,6,0,0 +2013,6,11,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1755,17,1,2005,21,1,0 +2013,6,7,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,-2,0,1040,3,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,8,0,1451,28,1,0 +2013,6,16,7,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,-1,0,1345,-5,0,0 +2013,9,8,7,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-4,0,828,1,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1045,-3,0,1145,-10,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,845,0,0,1036,-10,0,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1230,-1,0,1320,-9,0,0 +2013,5,22,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,1,0,927,11,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-2,0,1801,-8,0,0 +2013,4,14,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1200,-8,0,1420,-21,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1057,-5,0,1307,-23,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1530,-1,0,1635,-15,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,-2,0,1520,-2,0,0 +2013,10,7,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,710,-4,0,910,-4,0,0 +2013,4,25,4,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,115,1,1020,94,1,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1100,37,1,1450,31,1,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1009,62,1,1233,54,1,0 +2013,6,17,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1515,-10,0,1915,1,0,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,-2,0,950,-11,0,0 +2013,6,28,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1400,89,1,1545,85,1,0 +2013,4,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1119,-2,0,1224,-7,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1957,-2,0,2126,-23,0,0 +2013,7,20,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1324,-3,0,1445,10,0,0 +2013,4,1,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,810,5,0,934,6,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1245,40,1,1500,39,1,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,830,-1,0,1050,7,0,0 +2013,6,11,2,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1743,80,1,2034,59,1,0 +2013,8,18,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,-7,0,1835,-38,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,620,0,0,716,3,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2115,28,1,2335,26,1,0 +2013,8,26,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-5,0,1040,-22,0,0 +2013,4,29,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1410,-4,0,1655,-22,0,0 +2013,7,11,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,0,0,1725,-8,0,0 +2013,8,19,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,5,0,1145,14,0,0 +2013,5,30,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1508,-8,0,1639,-9,0,0 +2013,9,28,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1140,-2,0,1655,-22,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1610,16,1,1636,24,1,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1145,353,1,1551,333,1,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1930,-1,0,2041,3,0,0 +2013,10,17,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,0,0,1714,-4,0,0 +2013,7,22,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1830,0,,2015,0,1,1 +2013,9,13,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,-8,0,1220,-1,0,0 +2013,8,5,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-5,0,1947,-3,0,0 +2013,7,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1120,4,0,1410,-4,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,24,1,1720,4,0,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1905,2,0,2340,-27,0,0 +2013,6,13,4,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,2020,9,0,2300,2,0,0 +2013,4,21,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,85,1,1840,70,1,0 +2013,10,24,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,0,0,1652,-5,0,0 +2013,10,24,4,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1255,-5,0,1406,4,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1930,-3,0,2110,-28,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,9,0,2025,1,0,0 +2013,9,9,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1800,-6,0,2118,-19,0,0 +2013,8,29,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1042,-6,0,1908,-24,0,0 +2013,4,2,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1941,99,1,2019,85,1,0 +2013,10,17,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,9,0,2220,-5,0,0 +2013,7,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1200,49,1,1315,45,1,0 +2013,4,19,5,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,730,20,1,855,5,0,0 +2013,6,22,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-10,0,1345,-26,0,0 +2013,9,25,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,950,-2,0,1153,-8,0,0 +2013,6,19,3,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1810,-3,0,1935,-10,0,0 +2013,10,10,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1510,13,0,1738,13,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1205,-3,0,1340,15,1,0 +2013,6,26,3,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-7,0,919,-1,0,0 +2013,4,17,3,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1106,-5,0,1250,-3,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1640,-6,0,1820,0,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1030,5,0,1420,-8,0,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,730,-8,0,857,-4,0,0 +2013,4,18,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1540,39,1,1640,38,1,0 +2013,10,11,5,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,39,1,2011,24,1,0 +2013,6,11,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1455,16,1,1520,6,0,0 +2013,6,16,7,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1948,-1,0,2300,-19,0,0 +2013,8,16,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,-8,0,1206,-17,0,0 +2013,6,11,2,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1556,0,0,1826,-19,0,0 +2013,4,4,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-2,0,1315,-6,0,0 +2013,9,6,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-3,0,1545,-8,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,57,1,2225,36,1,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,1,0,1750,5,0,0 +2013,10,5,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1020,-10,0,1140,-5,0,0 +2013,4,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,822,0,0,1202,-17,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1220,-6,0,1415,-20,0,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2020,-2,0,2125,1,0,0 +2013,5,1,3,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,730,0,0,855,-17,0,0 +2013,6,27,4,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1910,0,0,1935,56,1,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1555,17,1,1820,20,1,0 +2013,6,26,3,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,905,-3,0,1115,-6,0,0 +2013,9,26,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1128,-4,0,1600,-25,0,0 +2013,4,20,6,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,645,0,0,1250,-21,0,0 +2013,7,26,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1315,1,0,1455,23,1,0 +2013,9,26,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,0,0,1117,-27,0,0 +2013,4,15,1,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,600,-4,0,852,-29,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1640,10,0,15,-3,0,0 +2013,8,22,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,900,1,0,1140,-4,0,0 +2013,4,17,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-8,0,1030,11,0,0 +2013,10,29,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1315,17,1,1450,9,0,0 +2013,4,14,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,1,0,1040,-2,0,0 +2013,4,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,815,1,0,936,-12,0,0 +2013,4,19,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1043,13,0,1214,42,1,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,805,0,0,945,5,0,0 +2013,5,4,6,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,735,-3,0,835,-11,0,0 +2013,8,13,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,610,-2,0,735,-2,0,0 +2013,5,23,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,4,0,1615,11,0,0 +2013,6,25,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,-1,0,1705,2,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1318,122,1,1610,123,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1052,1,0,1223,-3,0,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1156,6,0,1814,-16,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,25,1,1505,14,0,0 +2013,6,14,5,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1656,6,0,1841,21,1,0 +2013,7,20,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-5,0,1005,4,0,0 +2013,9,17,2,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1435,1,0,1550,-3,0,0 +2013,10,29,2,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1410,3,0,1755,-13,0,0 +2013,4,23,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-6,0,714,1,0,0 +2013,9,1,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1115,-6,0,1246,-25,0,0 +2013,7,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-9,0,1516,-5,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,7,0,1125,-5,0,0 +2013,9,17,2,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1055,-3,0,1445,-16,0,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1955,-5,0,2205,-13,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-4,0,1347,-1,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1730,-1,0,1845,-3,0,0 +2013,9,6,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,740,-7,0,911,-9,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1215,-4,0,1922,-12,0,0 +2013,10,15,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1336,-13,0,0 +2013,7,30,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,3,0,2120,10,0,0 +2013,8,21,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,1,0,940,5,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,941,-3,0,1120,-8,0,0 +2013,8,29,4,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1835,52,1,2120,46,1,0 +2013,10,12,6,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1134,-10,0,1343,-10,0,0 +2013,9,28,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,625,-5,0,1048,-13,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1610,12,0,1835,-14,0,0 +2013,7,15,1,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1708,7,0,2020,7,0,0 +2013,9,20,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,835,-5,0,912,-12,0,0 +2013,5,8,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2020,25,1,2040,13,0,0 +2013,10,31,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,146,1,928,130,1,0 +2013,5,20,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,9,0,1747,0,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,16,1,1800,5,0,0 +2013,4,28,7,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,13,0,1123,11,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1005,-5,0,1255,-22,0,0 +2013,10,19,6,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1440,-8,0,2305,5,0,0 +2013,5,18,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1605,45,1,1730,34,1,0 +2013,10,31,4,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1800,41,1,2040,63,1,0 +2013,7,18,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,620,-2,0,750,-17,0,0 +2013,8,27,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,32,1,1007,40,1,0 +2013,8,24,6,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1215,2,0,1410,-8,0,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1135,2,0,1255,-1,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1050,-5,0,1325,-19,0,0 +2013,7,31,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,705,7,0,840,8,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,6,0,5,-5,0,0 +2013,4,27,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,2014,-4,0,0 +2013,4,24,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,44,1,920,42,1,0 +2013,6,23,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,25,1,1810,26,1,0 +2013,5,3,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,1,0,931,14,0,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-5,0,1453,-4,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2300,52,1,2350,51,1,0 +2013,8,17,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,950,-3,0,1005,-9,0,0 +2013,8,14,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1650,-1,0,1820,5,0,0 +2013,8,14,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,601,12,0,1201,3,0,0 +2013,4,23,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1127,4,0,1325,-2,0,0 +2013,5,15,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1950,112,1,2120,89,1,0 +2013,10,2,3,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,900,3,0,945,-4,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,0,0,1050,5,0,0 +2013,7,1,1,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,13,0,1422,4,0,0 +2013,8,12,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2030,17,1,2055,16,1,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,1,0,1958,21,1,0 +2013,5,13,1,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,14,0,2020,-46,0,0 +2013,9,19,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1210,-1,0,1355,4,0,0 +2013,10,19,6,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,-9,0,1908,3,0,0 +2013,6,2,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1430,10,0,1647,5,0,0 +2013,8,1,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2200,-1,0,2216,-13,0,0 +2013,9,11,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1835,2,0,2155,-6,0,0 +2013,8,30,5,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,2023,-5,0,2257,-19,0,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,805,9,0,1125,16,1,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1715,12,0,1815,3,0,0 +2013,6,5,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,425,-8,0,730,-18,0,0 +2013,6,5,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2135,11,0,2225,11,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2010,43,1,2145,41,1,0 +2013,9,16,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-13,0,1245,-18,0,0 +2013,4,22,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,0,0,1258,10,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,-2,0,2017,-11,0,0 +2013,6,12,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-6,0,1142,18,1,0 +2013,10,2,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-5,0,1050,-8,0,0 +2013,8,17,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-1,0,1255,-6,0,0 +2013,4,19,5,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1259,54,1,1541,52,1,0 +2013,8,3,6,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1135,-7,0,1305,-35,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2100,3,0,2240,-1,0,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,0,0,1911,-9,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,1,0,1636,-19,0,0 +2013,8,3,6,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1700,0,0,1905,-9,0,0 +2013,6,26,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,809,7,0,902,0,0,0 +2013,9,1,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-3,0,1248,-11,0,0 +2013,9,21,6,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,1057,-7,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,720,-4,0,1100,-12,0,0 +2013,6,30,7,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-7,0,908,-14,0,0 +2013,10,5,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1921,39,1,2311,34,1,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1958,-6,0,2119,-12,0,0 +2013,5,1,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1315,0,0,1420,2,0,0 +2013,8,19,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1828,-2,0,2105,-1,0,0 +2013,10,25,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1145,1,0,1310,2,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1125,-3,0,1330,-4,0,0 +2013,6,7,5,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,144,1,1749,157,1,0 +2013,9,29,7,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1123,6,0,1249,-6,0,0 +2013,9,21,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,621,-6,0,748,-2,0,0 +2013,6,9,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-7,0,925,-13,0,0 +2013,6,26,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,45,1,1005,47,1,0 +2013,10,21,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1850,69,1,2050,80,1,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1858,-4,0,2045,-15,0,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,932,4,0,1310,-5,0,0 +2013,4,29,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-1,0,1814,-21,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1815,2,0,2259,-7,0,0 +2013,7,26,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2000,-4,0,2258,-10,0,0 +2013,7,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-8,0,935,8,0,0 +2013,9,13,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1250,95,1,1910,78,1,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1200,-1,0,1310,-7,0,0 +2013,6,13,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,45,-1,0,623,-18,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,21,1,2325,18,1,0 +2013,10,26,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,947,-18,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,123,1,129,108,1,0 +2013,9,22,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1100,2,0,1210,9,0,0 +2013,4,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-5,0,1124,-33,0,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-2,0,805,-10,0,0 +2013,6,11,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,-4,0,2305,0,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,851,-5,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1425,0,0,1447,-10,0,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,829,43,1,1637,54,1,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1200,76,1,1315,80,1,0 +2013,6,20,4,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,845,-17,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1230,9,0,1335,6,0,0 +2013,5,25,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1310,-1,0,1425,-10,0,0 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1540,5,0,1650,0,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2157,-4,0,2333,-16,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,655,17,1,818,16,1,0 +2013,8,5,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1554,-8,0,1715,-15,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1739,-1,0,1920,-2,0,0 +2013,10,29,2,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-11,0,1445,-2,0,0 +2013,5,3,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,0,0,1218,-3,0,0 +2013,8,31,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,-4,0,1535,-37,0,0 +2013,5,11,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1715,4,0,2225,10,0,0 +2013,9,27,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,750,-8,0,851,-11,0,0 +2013,6,2,7,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1330,1,0,1440,8,0,0 +2013,9,4,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-1,0,1734,-18,0,0 +2013,5,2,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,129,1,2240,117,1,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,734,-5,0,1329,-28,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1820,-4,0,2014,-9,0,0 +2013,6,4,2,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,800,-2,0,1157,-15,0,0 +2013,5,15,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1027,11,0,1302,12,0,0 +2013,10,9,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,600,-4,0,728,-7,0,0 +2013,10,20,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-6,0,1757,-4,0,0 +2013,5,8,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1311,-5,0,1559,21,1,0 +2013,5,5,7,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2112,15,1,2330,1,0,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1650,-3,0,1855,-1,0,0 +2013,5,18,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,710,-3,0,1240,-10,0,0 +2013,9,20,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,0,,955,0,1,1 +2013,7,20,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,101,1,1845,137,1,0 +2013,9,8,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1610,-3,0,1835,-26,0,0 +2013,4,20,6,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2100,0,0,2203,-15,0,0 +2013,9,28,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1657,-2,0,1811,-8,0,0 +2013,10,2,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1043,-3,0,1311,-29,0,0 +2013,6,13,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-1,0,636,-6,0,0 +2013,8,6,2,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1820,-1,0,2200,-20,0,0 +2013,4,23,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1917,7,0,2105,15,1,0 +2013,7,31,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1450,-3,0,1652,23,1,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1930,13,0,2128,7,0,0 +2013,10,28,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2101,91,1,2359,66,1,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,58,1,2319,64,1,0 +2013,9,15,7,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1300,15,1,1432,10,0,0 +2013,10,5,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1923,7,0,2254,36,1,0 +2013,7,30,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-1,0,1440,-10,0,0 +2013,7,2,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1238,5,0,1518,-13,0,0 +2013,9,17,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-3,0,2005,-3,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-4,0,1040,-23,0,0 +2013,6,23,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,945,-5,0,1052,-5,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1840,20,1,2210,8,0,0 +2013,8,10,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,705,8,0,936,2,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1425,-11,0,0 +2013,7,11,4,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1901,0,,2125,0,1,1 +2013,9,23,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,-6,0,2101,4,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,9,0,1155,11,0,0 +2013,5,2,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,1,0,1324,31,1,0 +2013,8,30,5,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1310,-8,0,2109,-21,0,0 +2013,9,17,2,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,730,-1,0,755,-2,0,0 +2013,6,20,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,725,1,0,820,-3,0,0 +2013,7,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,707,-3,0,924,-10,0,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,40,1,1100,39,1,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2105,18,1,2255,5,0,0 +2013,7,4,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,0,0,1345,-7,0,0 +2013,5,21,2,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1602,88,1,1814,86,1,0 +2013,8,28,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,730,-3,0,825,-1,0,0 +2013,9,9,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1320,-9,0,1626,-25,0,0 +2013,6,8,6,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,-10,0,1125,1,0,0 +2013,6,3,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,-1,0,1905,-11,0,0 +2013,9,9,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1131,-8,0,1340,-6,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1030,-5,0,1435,-15,0,0 +2013,9,10,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1310,-8,0,2133,-14,0,0 +2013,10,17,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1523,-4,0,1650,11,0,0 +2013,6,6,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-4,0,1012,0,0,0 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1955,-5,0,2115,0,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1545,19,1,1850,28,1,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1350,2,0,1910,7,0,0 +2013,10,11,5,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1500,18,1,1750,11,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1957,18,1,2139,3,0,0 +2013,10,2,3,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1102,0,0,1415,-2,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,0,,2030,0,1,1 +2013,7,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1430,3,0,1614,-16,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,-1,0,2140,7,0,0 +2013,8,15,4,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-1,0,905,-8,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,0,0,1620,1,0,0 +2013,6,15,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-6,0,1626,-8,0,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,1,0,1153,3,0,0 +2013,8,6,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2130,26,1,2235,22,1,0 +2013,8,16,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1300,-2,0,1540,1,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1730,-4,0,1922,3,0,0 +2013,10,11,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1637,1,0,1814,-1,0,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1035,-5,0,1310,3,0,0 +2013,7,27,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,5,0,2013,14,0,0 +2013,6,12,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1737,0,0,1849,-9,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,5,0,2012,-15,0,0 +2013,10,15,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,905,-5,0,1030,-12,0,0 +2013,10,31,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,-2,0,915,-1,0,0 +2013,6,1,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,631,-9,0,1505,-13,0,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2110,-4,0,2310,-35,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,16,1,1350,1,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2134,0,0,44,-6,0,0 +2013,9,13,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-2,0,1505,-4,0,0 +2013,10,6,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1911,23,1,2110,20,1,0 +2013,10,8,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1455,37,1,1610,38,1,0 +2013,7,5,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1150,-9,0,1315,-21,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,0,0,2225,0,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1652,52,1,1747,39,1,0 +2013,7,21,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1235,14,0,1830,14,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-4,0,1908,-12,0,0 +2013,8,16,5,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,805,0,0,950,-5,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-4,0,2245,-11,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2109,15,1,2343,-15,0,0 +2013,8,23,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1130,1,0,1725,-6,0,0 +2013,10,6,7,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,17,1,1336,9,0,0 +2013,8,9,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1908,131,1,2229,117,1,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1130,37,1,1345,40,1,0 +2013,5,1,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-9,0,941,11,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,-1,0,1850,-20,0,0 +2013,5,29,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,740,-1,0,900,-4,0,0 +2013,7,18,4,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,168,1,2343,167,1,0 +2013,4,2,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-4,0,1338,-15,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,44,1,1430,35,1,0 +2013,7,4,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1235,0,0,1355,-8,0,0 +2013,5,2,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1230,-5,0,1427,-19,0,0 +2013,4,1,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1209,-10,0,1444,-15,0,0 +2013,7,12,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,855,-8,0,1156,-24,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1449,4,0,2251,41,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1740,117,1,2110,93,1,0 +2013,6,12,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2014,68,1,2229,58,1,0 +2013,10,23,3,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,28,1,1700,14,0,0 +2013,8,9,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1853,40,1,2059,45,1,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,-2,0,2348,-2,0,0 +2013,10,9,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,720,-1,0,845,-12,0,0 +2013,9,8,7,9E,12953,LaGuardia,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1920,-5,0,2055,4,0,0 +2013,8,18,7,EV,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1438,-3,0,1707,-1,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,-5,0,2204,-5,0,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1735,-6,0,1933,-23,0,0 +2013,10,24,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1310,26,1,2135,27,1,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,805,-7,0,1020,-17,0,0 +2013,8,8,4,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,805,-6,0,1145,-21,0,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1030,-2,0,1355,-13,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2305,1,0,32,-14,0,0 +2013,5,1,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-9,0,1834,-5,0,0 +2013,10,19,6,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,800,5,0,1025,8,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,4,0,1345,18,1,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,14,0,1332,1,0,0 +2013,10,6,7,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-5,0,1756,-16,0,0 +2013,9,19,4,DL,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1950,-5,0,2134,1,0,0 +2013,5,21,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,735,5,0,1450,-3,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,855,1,0,1030,-7,0,0 +2013,10,17,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,917,-3,0,1716,-18,0,0 +2013,10,7,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-8,0,2132,-5,0,0 +2013,4,5,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-4,0,1520,-34,0,0 +2013,8,15,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,1,0,1054,14,0,0 +2013,9,24,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-8,0,815,-9,0,0 +2013,9,9,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1125,-5,0,1420,0,0,0 +2013,8,14,3,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2310,85,1,730,78,1,0 +2013,7,8,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-6,0,1004,-6,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,1,0,1831,15,1,0 +2013,8,22,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1000,52,1,1022,57,1,0 +2013,7,4,4,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1240,-8,0,1455,-16,0,0 +2013,10,9,3,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,615,-3,0,917,-4,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1025,6,0,1345,4,0,0 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,2,0,2310,-6,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,800,-8,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,737,5,0,841,5,0,0 +2013,7,6,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1330,-5,0,1715,9,0,0 +2013,8,2,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,950,-4,0,1240,1,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,-6,0,2342,1,0,0 +2013,8,30,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-5,0,2115,-21,0,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,87,1,1134,76,1,0 +2013,7,2,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,750,-3,0,925,-21,0,0 +2013,9,10,2,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1225,2,0,2021,5,0,0 +2013,8,21,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2035,-1,0,2200,-4,0,0 +2013,8,9,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-6,0,935,-9,0,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-2,0,1109,2,0,0 +2013,7,27,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,650,-6,0,855,-6,0,0 +2013,5,31,5,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1040,-4,0,1640,-6,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,-6,0,1833,-12,0,0 +2013,5,13,1,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1950,17,1,2104,13,0,0 +2013,9,29,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1549,88,1,1634,85,1,0 +2013,4,27,6,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1830,-8,0,2003,-25,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1945,48,1,2225,44,1,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1915,32,1,2030,23,1,0 +2013,10,21,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1843,3,0,0 +2013,10,17,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,13,0,2138,23,1,0 +2013,8,3,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,950,1,0,1240,5,0,0 +2013,4,5,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,809,2,0,1113,-32,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1830,-1,0,2026,28,1,0 +2013,9,22,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,745,-2,0,927,-18,0,0 +2013,10,3,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,730,-5,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,817,-2,0,1404,8,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,900,-3,0,1115,-8,0,0 +2013,9,12,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,-14,0,1145,-7,0,0 +2013,8,27,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1420,0,0,2015,16,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,740,25,1,1000,17,1,0 +2013,4,4,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1355,109,1,2015,87,1,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1330,14,0,1430,9,0,0 +2013,7,12,5,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1959,20,1,2106,22,1,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1625,-1,0,1715,11,0,0 +2013,9,18,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1131,-4,0,1233,-3,0,0 +2013,10,10,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1430,77,1,1555,70,1,0 +2013,10,23,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,4,0,1916,-1,0,0 +2013,4,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1707,-1,0,1758,-16,0,0 +2013,10,18,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1235,-1,0,1355,4,0,0 +2013,10,14,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1245,136,1,1325,141,1,0 +2013,9,2,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,2,0,1540,7,0,0 +2013,7,2,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-1,0,1437,3,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,-4,0,2036,-15,0,0 +2013,9,15,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1622,0,0,1958,-3,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,835,-6,0,944,-13,0,0 +2013,4,25,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,1,0,2055,-5,0,0 +2013,4,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,42,1,1305,21,1,0 +2013,10,6,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,800,1,0,930,-6,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,56,1,2151,36,1,0 +2013,4,19,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-6,0,1009,-17,0,0 +2013,6,5,3,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,33,1,745,21,1,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1305,3,0,1410,-4,0,0 +2013,6,11,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,903,-6,0,1020,-9,0,0 +2013,4,30,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,0,,1040,0,1,1 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,725,9,0,845,13,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,945,16,1,1350,0,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,1,0,1450,-3,0,0 +2013,7,26,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-1,0,1006,4,0,0 +2013,10,14,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,11,0,1519,8,0,0 +2013,5,23,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2000,44,1,2200,29,1,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1752,-4,0,2115,-29,0,0 +2013,4,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1550,30,1,1819,34,1,0 +2013,4,1,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1228,-3,0,1316,-4,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,720,4,0,820,-2,0,0 +2013,8,19,1,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1452,1,0,1636,-11,0,0 +2013,10,2,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1838,-7,0,1945,-23,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1425,65,1,1510,65,1,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,830,-5,0,921,0,0,0 +2013,5,2,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1115,-4,0,1300,-5,0,0 +2013,6,5,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1953,0,,2214,0,1,1 +2013,10,15,2,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1010,-1,0,1115,14,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1317,4,0,1527,4,0,0 +2013,10,16,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-8,0,1522,-18,0,0 +2013,5,22,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1819,-3,0,2012,-26,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2005,-4,0,2234,-20,0,0 +2013,7,18,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1531,2,0,1855,9,0,0 +2013,10,11,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1347,-19,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,850,-1,0,1330,-23,0,0 +2013,8,7,3,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,615,-3,0,705,-9,0,0 +2013,7,10,3,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1029,-4,0,1035,-6,0,0 +2013,8,18,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1235,-18,0,0 +2013,7,11,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,0,,1310,0,1,1 +2013,8,15,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-1,0,712,4,0,0 +2013,6,12,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,290,1,958,285,1,0 +2013,7,9,2,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1925,14,0,2221,9,0,0 +2013,4,5,5,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1345,-7,0,1731,-9,0,0 +2013,10,26,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,-2,0,1020,18,1,0 +2013,6,8,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1442,7,0,1600,3,0,0 +2013,10,2,3,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1117,9,0,1235,9,0,0 +2013,6,7,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,-4,0,855,-11,0,0 +2013,6,3,1,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,815,0,0,1019,-9,0,0 +2013,7,5,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1712,-2,0,2043,-14,0,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-2,0,845,-5,0,0 +2013,7,11,4,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1528,2,0,1637,-8,0,0 +2013,10,24,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,9,0,1629,14,0,0 +2013,6,8,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,-7,0,619,-20,0,0 +2013,4,10,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,-3,0,2025,6,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,40,1,1935,25,1,0 +2013,5,1,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1325,-8,0,1615,-15,0,0 +2013,6,4,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-4,0,1855,-7,0,0 +2013,6,27,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,1,0,2141,19,1,0 +2013,4,17,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,21,1,2005,9,0,0 +2013,9,3,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2140,20,1,2316,32,1,0 +2013,4,6,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1134,-10,0,1249,-14,0,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1945,20,1,2235,12,0,0 +2013,7,24,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1556,-4,0,2159,-32,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,825,19,1,940,8,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1550,4,0,1844,-5,0,0 +2013,8,23,5,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,750,-3,0,950,4,0,0 +2013,8,13,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1635,189,1,1833,196,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1422,-2,0,1552,-12,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1210,-3,0,1301,-7,0,0 +2013,9,27,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1700,11,0,1955,4,0,0 +2013,5,20,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,942,3,0,1302,2,0,0 +2013,9,6,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,825,-6,0,850,-13,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-3,0,1850,-9,0,0 +2013,5,6,1,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1543,-4,0,1934,-2,0,0 +2013,6,14,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,-4,0,2230,-21,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2115,9,0,2300,9,0,0 +2013,4,11,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1142,-4,0,1429,9,0,0 +2013,4,6,6,OO,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,731,-6,0,1133,-9,0,0 +2013,7,23,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,800,59,1,1005,38,1,0 +2013,9,6,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,58,1,1848,26,1,0 +2013,9,23,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1730,-3,0,2255,-11,0,0 +2013,8,3,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1545,-1,0,1725,2,0,0 +2013,8,16,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2100,18,1,2200,11,0,0 +2013,4,5,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2001,-5,0,2136,-13,0,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1450,29,1,1800,21,1,0 +2013,7,30,2,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,12,0,1814,-14,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-1,0,1555,-17,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,4,0,1803,11,0,0 +2013,7,22,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1507,-4,0,1657,29,1,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2020,22,1,2235,14,0,0 +2013,4,29,1,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1705,18,1,1835,8,0,0 +2013,4,21,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,16,1,1300,11,0,0 +2013,5,29,3,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1250,0,0,1535,-18,0,0 +2013,6,21,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2059,20,1,2226,11,0,0 +2013,9,16,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2025,29,1,2310,23,1,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2152,1,0,2323,-6,0,0 +2013,4,16,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1409,-4,0,2005,-31,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,815,-4,0,1121,-22,0,0 +2013,9,29,7,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1306,0,0,1419,-4,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1150,-2,0,1319,-13,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-1,0,906,-18,0,0 +2013,4,29,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1410,1,0,1530,-1,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,-1,0,2307,-8,0,0 +2013,5,17,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,759,-1,0,1405,2,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1438,-1,0,1528,-2,0,0 +2013,6,5,3,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1317,-5,0,1624,-8,0,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1455,0,,1755,0,1,1 +2013,9,8,7,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1925,-12,0,2035,-9,0,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,844,-1,0,1059,-13,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1140,-1,0,1219,-10,0,0 +2013,6,8,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,283,1,1850,266,1,0 +2013,8,10,6,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-3,0,1805,-7,0,0 +2013,10,17,4,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1025,-6,0,1315,-7,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2251,0,0,28,-18,0,0 +2013,10,18,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,940,-5,0,1130,18,1,0 +2013,5,8,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,640,-2,0,837,-17,0,0 +2013,8,19,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,54,1,1410,57,1,0 +2013,5,25,6,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1450,0,0,1540,-2,0,0 +2013,9,13,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1950,171,1,2145,167,1,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-1,0,1208,-7,0,0 +2013,5,2,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1608,-11,0,1755,-22,0,0 +2013,5,2,4,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1015,6,0,1200,-12,0,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,845,6,0,1040,0,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2100,22,1,2220,24,1,0 +2013,10,27,7,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,4,0,1403,-8,0,0 +2013,10,17,4,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1720,51,1,1830,48,1,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2050,8,0,2220,-6,0,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,625,1,0,1240,3,0,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1759,15,1,2115,3,0,0 +2013,5,8,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2325,9,0,520,1,0,0 +2013,8,28,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1250,-2,0,1530,1,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2010,3,0,2110,-2,0,0 +2013,6,24,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,16,1,1755,7,0,0 +2013,7,20,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,2100,-1,0,2215,-10,0,0 +2013,7,28,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2017,-9,0,2115,8,0,0 +2013,9,22,7,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-7,0,31,-26,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,58,1,912,43,1,0 +2013,8,18,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-3,0,1723,-12,0,0 +2013,8,2,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,0,0,732,-7,0,0 +2013,10,2,3,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1611,29,1,1756,27,1,0 +2013,8,19,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1535,2,0,1655,-3,0,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1915,-3,0,2247,-18,0,0 +2013,9,3,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-6,0,1500,-23,0,0 +2013,7,26,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-8,0,754,8,0,0 +2013,4,21,7,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1315,68,1,1655,64,1,0 +2013,4,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-10,0,2019,-18,0,0 +2013,7,9,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1403,6,0,2155,2,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1309,-2,0,1354,-9,0,0 +2013,10,31,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1555,22,1,1705,31,1,0 +2013,5,28,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,20,1,1330,4,0,0 +2013,7,27,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1330,-2,0,1715,-18,0,0 +2013,5,1,3,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,-2,0,600,4,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,835,-6,0,1025,-17,0,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1240,37,1,1644,65,1,0 +2013,10,23,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1604,-4,0,1730,-10,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,13,0,2048,-7,0,0 +2013,5,13,1,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1856,13,0,2051,-3,0,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,5,0,1439,-6,0,0 +2013,10,11,5,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,915,9,0,1115,13,0,0 +2013,7,9,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1650,2,0,1820,2,0,0 +2013,4,16,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1940,-7,0,2247,-24,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2020,-4,0,2126,7,0,0 +2013,4,18,4,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1340,-4,0,1534,-6,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1950,35,1,2026,19,1,0 +2013,5,20,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,600,1,0,705,2,0,0 +2013,10,11,5,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,747,22,1,1017,15,1,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,841,-3,0,1134,-7,0,0 +2013,6,30,7,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2205,32,1,2317,32,1,0 +2013,7,14,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,17,1,1016,-14,0,0 +2013,7,24,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1850,3,0,2035,1,0,0 +2013,10,14,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1945,0,0,2043,0,0,0 +2013,8,1,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1135,17,1,1300,12,0,0 +2013,9,2,1,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,650,-5,0,917,-15,0,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,24,1,2000,-7,0,0 +2013,7,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,-5,0,1859,-17,0,0 +2013,5,21,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,15,1,1806,16,1,0 +2013,10,3,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,18,1,1054,10,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1000,6,0,1345,1,0,0 +2013,6,1,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-3,0,1709,-16,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1110,-8,0,1331,1,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-3,0,1608,-8,0,0 +2013,4,5,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-7,0,858,-9,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1310,-4,0,1610,-6,0,0 +2013,4,14,7,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1531,15,1,1725,21,1,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1220,2,0,1710,1,0,0 +2013,10,3,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,2055,32,1,2215,24,1,0 +2013,8,21,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1600,-9,0,1805,8,0,0 +2013,5,27,1,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,2215,6,0,617,-4,0,0 +2013,7,12,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-4,0,1010,5,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,0,0,1711,-10,0,0 +2013,6,8,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,910,4,0,1325,-2,0,0 +2013,8,25,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1650,-4,0,2010,-47,0,0 +2013,10,10,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1815,4,0,2015,-5,0,0 +2013,9,27,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,545,-8,0,723,-8,0,0 +2013,7,22,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2117,122,1,2247,117,1,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,4,0,2138,-9,0,0 +2013,5,25,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-4,0,1604,-15,0,0 +2013,5,13,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,2030,-9,0,2210,-21,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,725,-2,0,850,-12,0,0 +2013,5,10,5,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,27,1,1825,19,1,0 +2013,6,20,4,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-4,0,2010,-2,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1450,1,0,1610,7,0,0 +2013,10,5,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1640,5,0,1815,-6,0,0 +2013,6,30,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,2010,26,1,2103,23,1,0 +2013,4,27,6,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,907,-5,0,0 +2013,6,2,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1920,-2,0,2145,-15,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1325,-4,0,1729,-19,0,0 +2013,7,1,1,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,1,0,1026,4,0,0 +2013,6,1,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,600,-9,0,710,-27,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,2,0,1540,-6,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1318,-2,0,1623,-2,0,0 +2013,5,18,6,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,-1,0,1815,-8,0,0 +2013,10,10,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,702,-2,0,1040,-14,0,0 +2013,10,19,6,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,715,-1,0,905,-4,0,0 +2013,9,26,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1835,14,0,2000,8,0,0 +2013,8,29,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1653,2,0,1921,-27,0,0 +2013,10,21,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1935,18,1,2250,22,1,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1250,-1,0,1350,4,0,0 +2013,8,8,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,0,,1803,0,1,1 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1400,-5,0,1505,-6,0,0 +2013,4,3,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,0,0,910,-21,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,-4,0,1255,1,0,0 +2013,10,30,3,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1050,0,0,1420,-2,0,0 +2013,6,4,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,6,0,1516,8,0,0 +2013,8,16,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-4,0,2030,12,0,0 +2013,8,4,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1039,-8,0,1914,-45,0,0 +2013,8,22,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1015,6,0,1311,16,1,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1252,9,0,1906,1,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,-2,0,2353,-11,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1230,25,1,1555,14,0,0 +2013,9,16,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1600,11,0,1755,1,0,0 +2013,9,16,1,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-4,0,945,-5,0,0 +2013,8,16,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1345,-4,0,1556,-5,0,0 +2013,10,16,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1702,-5,0,1741,-1,0,0 +2013,5,1,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1100,0,0,1200,-1,0,0 +2013,4,17,3,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,0,0,1230,32,1,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1120,129,1,1210,119,1,0 +2013,6,4,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-5,0,1707,11,0,0 +2013,5,6,1,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1107,-1,0,1112,-6,0,0 +2013,9,24,2,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,15,1,608,7,0,0 +2013,5,2,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-4,0,1635,-19,0,0 +2013,10,1,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,16,1,2117,15,1,0 +2013,4,4,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1510,-8,0,1928,-21,0,0 +2013,5,3,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,1150,-20,0,0 +2013,7,8,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,86,1,1355,78,1,0 +2013,4,19,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1218,-4,0,2030,31,1,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1700,11,0,1814,14,0,0 +2013,5,2,4,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1410,1,0,1800,9,0,0 +2013,5,6,1,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,3,0,1351,-4,0,0 +2013,8,18,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,186,1,1610,186,1,0 +2013,9,30,1,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1022,4,0,1410,-2,0,0 +2013,10,9,3,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1835,17,1,2138,0,0,0 +2013,5,29,3,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1455,-7,0,1646,-36,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,1,0,1430,-1,0,0 +2013,5,20,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1337,-2,0,1412,16,1,0 +2013,8,24,6,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,900,-6,0,1140,-12,0,0 +2013,10,25,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,1,0,920,-3,0,0 +2013,8,23,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1400,4,0,1530,-5,0,0 +2013,7,11,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-1,0,1235,0,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1310,3,0,1625,3,0,0 +2013,5,8,3,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2010,-1,0,2254,0,0,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-2,0,2155,7,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1635,66,1,1815,55,1,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,700,-3,0,1230,-1,0,0 +2013,6,1,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-4,0,1550,7,0,0 +2013,6,11,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,905,74,1,1140,71,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1301,59,1,1446,69,1,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1720,16,1,2005,-3,0,0 +2013,8,5,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1830,11,0,2015,9,0,0 +2013,9,23,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,650,-13,0,0 +2013,5,30,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1810,48,1,2015,33,1,0 +2013,6,10,1,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-6,0,1625,-2,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,-2,0,2040,1,0,0 +2013,10,21,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,88,1,1710,61,1,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1021,-3,0,1249,2,0,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1940,5,0,2210,-4,0,0 +2013,8,6,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,0,0,2240,-20,0,0 +2013,7,22,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-9,0,1555,-21,0,0 +2013,10,31,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,12,0,1810,21,1,0 +2013,9,6,5,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,749,-10,0,1043,-24,0,0 +2013,7,25,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-8,0,1420,-15,0,0 +2013,5,22,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1405,7,0,1555,-10,0,0 +2013,4,1,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1405,11,0,2213,-24,0,0 +2013,9,25,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,-8,0,1015,-15,0,0 +2013,7,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1810,-4,0,1935,8,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,0,0,1143,6,0,0 +2013,9,8,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1830,0,,2010,0,1,1 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,2130,-3,0,2307,-18,0,0 +2013,5,3,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-5,0,859,-8,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1959,17,1,2129,7,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,-2,0,1530,-10,0,0 +2013,5,11,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1212,2,0,1505,4,0,0 +2013,9,12,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1230,0,0,1325,-1,0,0 +2013,9,30,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1745,-3,0,2003,-3,0,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-6,0,1306,-16,0,0 +2013,7,21,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,745,18,1,1614,-5,0,0 +2013,6,1,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,718,-6,0,819,-12,0,0 +2013,6,13,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1305,12,0,1419,4,0,0 +2013,7,1,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,0,0,2127,-16,0,0 +2013,6,2,7,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-10,0,2201,-7,0,0 +2013,10,26,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1540,-4,0,1737,18,1,0 +2013,5,6,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,16,1,2025,20,1,0 +2013,9,8,7,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1210,-4,0,2025,-9,0,0 +2013,9,17,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-7,0,1242,-8,0,0 +2013,4,15,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,-6,0,1715,-8,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1000,1,0,1105,-6,0,0 +2013,4,5,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-2,0,1320,-1,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-2,0,924,-9,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,19,1,1915,11,0,0 +2013,9,17,2,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,-6,0,852,-22,0,0 +2013,9,24,2,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1251,2,0,1348,-2,0,0 +2013,6,1,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,755,-1,0,855,-8,0,0 +2013,7,14,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,210,1,1040,225,1,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2255,-1,0,18,-8,0,0 +2013,9,14,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,942,-5,0,1221,-11,0,0 +2013,9,6,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1359,-6,0,2205,0,0,0 +2013,8,28,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1729,-11,0,0 +2013,10,5,6,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2035,-7,0,2215,-26,0,0 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,945,10,0,1200,11,0,0 +2013,4,18,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,740,212,1,838,230,1,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-5,0,905,-12,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1325,-1,0,1622,-17,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,-3,0,1152,-8,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,44,1,1909,38,1,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,-6,0,1055,-11,0,0 +2013,6,17,1,EV,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,4,0,1004,-10,0,0 +2013,7,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2155,10,0,2330,0,0,0 +2013,5,26,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1315,-12,0,1630,-4,0,0 +2013,7,31,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,-5,0,1934,-16,0,0 +2013,5,2,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,652,-7,0,1254,-12,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1300,3,0,1930,-7,0,0 +2013,5,16,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-2,0,1510,0,0,0 +2013,4,18,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1551,-5,0,1839,-8,0,0 +2013,6,18,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,0,0,855,13,0,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,0,0,2036,24,1,0 +2013,9,1,7,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1840,59,1,2140,29,1,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1420,7,0,1600,6,0,0 +2013,9,30,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1145,-1,0,1245,-15,0,0 +2013,5,4,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1905,4,0,2125,-7,0,0 +2013,6,7,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,-2,0,1628,-21,0,0 +2013,8,22,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,0,0,1331,-8,0,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-3,0,2138,29,1,0 +2013,9,2,1,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,2147,41,1,610,74,1,0 +2013,9,16,1,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1013,-7,0,1114,-17,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1320,3,0,1425,-8,0,0 +2013,7,24,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1418,21,1,1547,9,0,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-1,0,1045,11,0,0 +2013,7,16,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-4,0,1216,14,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1333,-23,0,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-7,0,2251,-21,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1045,0,0,1226,-4,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1032,0,0,1551,18,1,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1900,140,1,2225,130,1,0 +2013,8,3,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-3,0,1205,-9,0,0 +2013,6,10,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,715,-2,0,1010,2,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1925,2,0,2240,-5,0,0 +2013,7,5,5,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1135,5,0,1245,-1,0,0 +2013,9,4,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,6,0,1914,6,0,0 +2013,5,20,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,-3,0,1510,9,0,0 +2013,8,30,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,4,0,1220,-6,0,0 +2013,6,14,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1822,16,1,2110,13,0,0 +2013,4,23,2,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,-1,0,1939,-14,0,0 +2013,7,7,7,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,12,0,2145,-1,0,0 +2013,6,28,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1702,113,1,1829,165,1,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1130,-1,0,1255,-9,0,0 +2013,4,4,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,2105,-5,0,2155,-5,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1612,-3,0,1706,-2,0,0 +2013,7,23,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2325,-2,0,500,-5,0,0 +2013,4,17,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,127,1,2145,104,1,0 +2013,7,20,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1011,-6,0,1202,-12,0,0 +2013,9,28,6,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1822,-6,0,2021,-24,0,0 +2013,5,8,3,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,47,1,35,31,1,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,835,5,0,940,5,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1209,0,,1341,0,1,1 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-5,0,1455,-14,0,0 +2013,8,7,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-3,0,1602,-7,0,0 +2013,7,8,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1437,20,1,1610,22,1,0 +2013,8,23,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1630,0,0,1839,18,1,0 +2013,8,17,6,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,3,0,2056,-24,0,0 +2013,10,7,1,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1557,118,1,1901,118,1,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1738,8,0,2021,8,0,0 +2013,5,14,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-5,0,2042,-5,0,0 +2013,10,27,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,940,-7,0,1046,-12,0,0 +2013,4,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1215,1,0,1330,2,0,0 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1750,0,0,1905,1,0,0 +2013,4,27,6,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,-2,0,1836,-40,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,16,1,1611,14,0,0 +2013,9,6,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1035,-3,0,1645,-9,0,0 +2013,7,15,1,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1440,-2,0,1605,-18,0,0 +2013,6,2,7,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1349,164,1,1640,145,1,0 +2013,6,23,7,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,800,-6,0,1045,-8,0,0 +2013,6,7,5,9E,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1247,12,0,1532,58,1,0 +2013,7,24,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,24,1,715,18,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1735,1,0,1909,-9,0,0 +2013,5,2,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1625,-1,0,45,-1,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,946,26,1,1203,18,1,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,79,1,1555,66,1,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2035,44,1,2215,24,1,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,915,0,0,1205,-21,0,0 +2013,5,25,6,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,19,1,1948,9,0,0 +2013,5,23,4,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,742,-5,0,838,9,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1245,16,1,1425,10,0,0 +2013,7,6,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,32,1,1940,47,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1727,17,1,1837,17,1,0 +2013,7,27,6,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2057,-6,0,2329,-19,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,734,-2,0,930,-4,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,855,147,1,1020,136,1,0 +2013,10,7,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,629,-6,0,1153,-1,0,0 +2013,9,2,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1140,4,0,1250,-2,0,0 +2013,10,3,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,11,0,2058,20,1,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,8,0,2055,20,1,0 +2013,6,11,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-11,0,1039,-16,0,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,835,-2,0,955,-2,0,0 +2013,5,19,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,39,8,0,528,-8,0,0 +2013,4,20,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1054,-5,0,1315,-6,0,0 +2013,4,27,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,745,-7,0,0 +2013,6,27,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,755,-2,0,845,-1,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-1,0,906,-17,0,0 +2013,8,5,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,651,-3,0,905,-7,0,0 +2013,4,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,-8,0,1715,-14,0,0 +2013,6,8,6,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,-4,0,1002,-6,0,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1058,2,0,1153,2,0,0 +2013,7,24,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,2,0,1920,10,0,0 +2013,5,31,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1020,-4,0,1205,-9,0,0 +2013,7,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1150,-3,0,1445,-10,0,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1230,-3,0,1605,-10,0,0 +2013,7,26,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,930,-9,0,1055,-24,0,0 +2013,6,1,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-7,0,1028,-16,0,0 +2013,5,31,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,2000,1,0,2150,-5,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,755,4,0,917,-2,0,0 +2013,10,15,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1315,-1,0,1520,-9,0,0 +2013,6,6,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1823,9,0,2042,13,0,0 +2013,8,11,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-6,0,2150,8,0,0 +2013,10,11,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1330,3,0,1455,-9,0,0 +2013,8,9,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,162,1,1209,156,1,0 +2013,4,29,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,715,-9,0,930,-21,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1500,44,1,1730,51,1,0 +2013,8,12,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,4,0,1250,5,0,0 +2013,8,16,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1340,3,0,1450,9,0,0 +2013,6,8,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-3,0,1100,-1,0,0 +2013,6,16,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-6,0,1527,-10,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,958,-6,0,1547,-16,0,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1259,-6,0,1605,-20,0,0 +2013,8,24,6,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-7,0,807,-8,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,29,1,110,35,1,0 +2013,6,3,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1820,0,0,2034,2,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,-3,0,1515,-1,0,0 +2013,10,18,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,59,1,1320,48,1,0 +2013,7,14,7,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1425,14,0,1710,8,0,0 +2013,5,8,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,0,0,1829,-5,0,0 +2013,6,22,6,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1916,3,0,2130,-11,0,0 +2013,8,13,2,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,855,1,0,1210,-4,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1600,29,1,1705,15,1,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2214,5,0,2356,14,0,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,-3,0,1618,-14,0,0 +2013,9,26,4,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,36,1,1805,12,0,0 +2013,6,18,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,49,1,2208,37,1,0 +2013,5,17,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2230,-7,0,2354,-15,0,0 +2013,8,16,5,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1518,1,0,1742,2,0,0 +2013,9,14,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-8,0,1805,-21,0,0 +2013,10,16,3,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,905,71,1,1050,71,1,0 +2013,10,21,1,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1524,-6,0,1840,-19,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,11,0,1445,-1,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1959,1,0,2107,-2,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1520,14,0,1715,12,0,0 +2013,7,13,6,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1830,0,,1926,0,1,1 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2035,14,0,2229,13,0,0 +2013,4,22,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1830,-9,0,1944,-24,0,0 +2013,4,7,7,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,700,-1,0,1135,-6,0,0 +2013,7,19,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-6,0,1019,-19,0,0 +2013,10,3,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1630,-1,0,1855,-1,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1745,14,0,1850,4,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-5,0,2154,1,0,0 +2013,4,22,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1256,-5,0,1416,-9,0,0 +2013,7,18,4,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1945,88,1,2210,53,1,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,25,1,1620,3,0,0 +2013,4,29,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1059,-11,0,1409,-14,0,0 +2013,5,31,5,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1900,-1,0,2158,-4,0,0 +2013,10,3,4,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-4,0,720,-7,0,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1435,-2,0,1745,-12,0,0 +2013,7,28,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1809,57,1,2100,63,1,0 +2013,7,23,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2052,88,1,2258,79,1,0 +2013,9,3,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,730,0,0,915,-6,0,0 +2013,4,25,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-11,0,836,-22,0,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1500,26,1,1645,20,1,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,630,-6,0,838,6,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,8,0,2230,-3,0,0 +2013,9,13,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,730,-4,0,900,-4,0,0 +2013,6,5,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,730,-2,0,845,3,0,0 +2013,8,4,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-7,0,1742,-7,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,820,0,0,1130,-1,0,0 +2013,5,30,4,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,4,0,833,-1,0,0 +2013,5,24,5,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,640,2,0,752,-7,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2010,33,1,2305,38,1,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,855,-3,0,1656,11,0,0 +2013,9,2,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1849,-5,0,2137,-1,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,18,1,2249,4,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1645,6,0,1820,3,0,0 +2013,7,31,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1220,-6,0,1320,-14,0,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2225,-2,0,644,-4,0,0 +2013,6,3,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1110,-6,0,1215,-9,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,800,-3,0,1040,-14,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,855,-3,0,1015,-6,0,0 +2013,8,9,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-8,0,1408,-2,0,0 +2013,10,30,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,10,0,2155,-9,0,0 +2013,6,18,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,831,-4,0,1121,-13,0,0 +2013,4,26,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2025,-3,0,2140,-10,0,0 +2013,8,24,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,758,4,0,950,-8,0,0 +2013,6,6,4,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1329,-15,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,1,0,1445,-5,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1950,2,0,2330,-5,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1941,3,0,2251,-9,0,0 +2013,7,21,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1255,6,0,1418,-16,0,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,808,3,0,1154,-6,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-6,0,2113,19,1,0 +2013,6,17,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1316,18,1,1502,11,0,0 +2013,9,24,2,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1455,5,0,1730,1,0,0 +2013,4,16,2,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2153,0,0,603,-17,0,0 +2013,5,18,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,840,-1,0,1015,5,0,0 +2013,10,22,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1025,-6,0,1455,-46,0,0 +2013,4,25,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,650,-6,0,830,-20,0,0 +2013,10,29,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1615,-2,0,1726,0,0,0 +2013,9,17,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1555,-6,0,1930,-9,0,0 +2013,6,11,2,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,-4,0,1025,-9,0,0 +2013,10,13,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1244,67,1,1530,61,1,0 +2013,6,9,7,UA,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,640,-4,0,720,-6,0,0 +2013,4,2,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-5,0,1132,-8,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,700,-6,0,1113,-7,0,0 +2013,8,12,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,-1,0,1237,-5,0,0 +2013,10,17,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,44,1,1945,43,1,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,9,0,2005,-26,0,0 +2013,8,18,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,2,0,1540,-3,0,0 +2013,9,11,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,3,0,1420,-2,0,0 +2013,6,15,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-7,0,1023,-11,0,0 +2013,6,4,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,627,0,0,806,-8,0,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,605,-1,0,740,-1,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,721,0,0,1143,-23,0,0 +2013,10,24,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1425,5,0,1545,-6,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2300,3,0,440,-12,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1630,-4,0,1737,5,0,0 +2013,9,6,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1055,-4,0,0 +2013,9,1,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,-2,0,1143,-13,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,3,0,905,-2,0,0 +2013,6,18,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,0,0,1705,-7,0,0 +2013,8,15,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-1,0,1900,-7,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1126,-5,0,1411,-31,0,0 +2013,10,6,7,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-7,0,1445,-4,0,0 +2013,4,5,5,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1519,-9,0,1639,-17,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,23,1,2050,18,1,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,955,3,0,1630,3,0,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2243,-5,0,15,-24,0,0 +2013,4,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-14,0,913,-19,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1845,47,1,2215,40,1,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-3,0,915,4,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,49,1,2100,34,1,0 +2013,10,1,2,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,755,-5,0,1026,14,0,0 +2013,8,9,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,550,1,0,655,-10,0,0 +2013,6,16,7,9E,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1455,-9,0,1720,-1,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1150,0,0,1433,-25,0,0 +2013,8,11,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1308,-3,0,1435,-13,0,0 +2013,9,13,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1449,-10,0,1825,0,0,0 +2013,7,12,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1555,73,1,1720,64,1,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-3,0,1851,7,0,0 +2013,7,7,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-8,0,1600,-18,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2120,23,1,2240,20,1,0 +2013,5,29,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-6,0,1820,48,1,0 +2013,8,4,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,630,-14,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1020,-6,0,1310,-17,0,0 +2013,5,7,2,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,-5,0,2015,-11,0,0 +2013,5,14,2,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-7,0,810,-10,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-3,0,1105,5,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,950,-1,0,1145,-4,0,0 +2013,10,18,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,752,-11,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,0,0,1830,33,1,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,58,1,2320,50,1,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1905,-1,0,2000,-3,0,0 +2013,6,15,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1715,6,0,1835,-6,0,0 +2013,5,29,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,905,-13,0,0 +2013,6,16,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1601,-3,0,1700,2,0,0 +2013,5,17,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1603,-10,0,1648,-7,0,0 +2013,7,27,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,-7,0,700,-15,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,0,0,1811,-15,0,0 +2013,9,6,5,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1631,15,1,1945,-21,0,0 +2013,5,10,5,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,740,62,1,905,67,1,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,900,2,0,1620,-1,0,0 +2013,5,4,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2040,8,0,2145,11,0,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,50,1,2254,48,1,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,-4,0,1045,-22,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1528,-2,0,1706,7,0,0 +2013,7,17,3,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-3,0,1940,-12,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,1955,13,0,2125,21,1,0 +2013,4,25,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2000,18,1,2120,14,0,0 +2013,7,19,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-10,0,815,-17,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,1,0,1300,2,0,0 +2013,10,19,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-1,0,1350,-15,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-6,0,2010,-14,0,0 +2013,6,28,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1604,0,,1705,0,1,1 +2013,7,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,-2,0,930,-4,0,0 +2013,4,2,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1915,28,1,2100,25,1,0 +2013,9,7,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,755,-5,0,1350,-3,0,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1700,8,0,1855,7,0,0 +2013,10,23,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1130,2,0,1908,-10,0,0 +2013,10,13,7,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1041,-2,0,1347,-4,0,0 +2013,5,10,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1735,0,0,1849,30,1,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1728,0,0,1910,-16,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2135,127,1,5,119,1,0 +2013,9,4,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,-6,0,1400,-24,0,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1700,-7,0,1814,-2,0,0 +2013,9,23,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,935,37,1,1124,34,1,0 +2013,8,8,4,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1249,0,0,1534,0,0,0 +2013,10,18,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,-4,0,1722,-3,0,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1230,5,0,1343,-10,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,815,9,0,1040,-8,0,0 +2013,6,25,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,-1,0,1900,-3,0,0 +2013,10,27,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,655,1,0,740,-11,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1405,-2,0,1447,-4,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1810,-2,0,1945,-2,0,0 +2013,7,1,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,900,0,0,945,-2,0,0 +2013,5,10,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2320,-5,0,610,-9,0,0 +2013,5,15,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,54,1,1850,95,1,0 +2013,6,28,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,921,43,1,1040,78,1,0 +2013,6,13,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,50,1,1055,45,1,0 +2013,10,8,2,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,1,0,1820,0,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-3,0,1810,-14,0,0 +2013,6,16,7,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1740,4,0,1903,14,0,0 +2013,5,12,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,1121,-8,0,0 +2013,6,28,5,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,2,0,922,-5,0,0 +2013,10,1,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,-5,0,1627,-14,0,0 +2013,6,3,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1655,-4,0,1710,-12,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2045,52,1,2150,48,1,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,0,0,1032,3,0,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1933,105,1,2358,89,1,0 +2013,4,28,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,-2,0,1330,-9,0,0 +2013,7,30,2,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1821,-11,0,2002,-18,0,0 +2013,6,13,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,8,0,1915,26,1,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,-10,0,922,-14,0,0 +2013,8,9,5,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1335,19,1,1515,16,1,0 +2013,6,8,6,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1720,-3,0,1843,-12,0,0 +2013,4,26,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,36,1,2125,30,1,0 +2013,7,13,6,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-5,0,1557,-10,0,0 +2013,8,23,5,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1640,33,1,1835,30,1,0 +2013,8,5,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1843,-9,0,2110,1,0,0 +2013,8,1,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,555,0,0,735,-7,0,0 +2013,7,24,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,1,0,1335,-5,0,0 +2013,7,20,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-9,0,1400,-21,0,0 +2013,10,10,4,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1020,8,0,1331,1,0,0 +2013,4,28,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-8,0,912,2,0,0 +2013,4,25,4,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,-1,0,2002,-10,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,845,0,0,935,-3,0,0 +2013,8,21,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1835,-5,0,2102,-26,0,0 +2013,9,15,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,-6,0,2214,-20,0,0 +2013,5,22,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1140,-15,0,1225,-13,0,0 +2013,10,3,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,815,15,1,1327,10,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2040,73,1,2340,60,1,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-4,0,1315,-4,0,0 +2013,10,23,3,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1428,4,0,1654,18,1,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1855,0,0,1958,-7,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1915,18,1,2236,-3,0,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1905,88,1,2140,80,1,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2000,14,0,2230,7,0,0 +2013,9,5,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-5,0,1642,5,0,0 +2013,7,23,2,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1633,-2,0,1805,7,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,755,-7,0,940,-17,0,0 +2013,10,15,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,610,-3,0,1125,-20,0,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1850,-1,0,2030,-5,0,0 +2013,7,9,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1645,-2,0,1940,-34,0,0 +2013,8,8,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1008,9,0,1118,15,1,0 +2013,4,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1800,0,0,2055,-14,0,0 +2013,8,24,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1230,-8,0,1611,-22,0,0 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,9,0,1205,0,0,0 +2013,5,22,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2145,63,1,105,63,1,0 +2013,8,29,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,37,1,1845,55,1,0 +2013,8,6,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1803,-5,0,1915,-18,0,0 +2013,8,12,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,700,-14,0,922,-8,0,0 +2013,5,3,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1632,-8,0,1753,-9,0,0 +2013,5,27,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,958,-12,0,1309,-48,0,0 +2013,9,2,1,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,1010,-8,0,1250,-16,0,0 +2013,6,27,4,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,-8,0,1546,-9,0,0 +2013,10,29,2,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1600,-8,0,1702,7,0,0 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1502,-2,0,1551,-7,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-8,0,1134,4,0,0 +2013,10,1,2,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,-2,0,1650,-13,0,0 +2013,8,23,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-5,0,2110,-12,0,0 +2013,5,8,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1045,5,0,1420,-23,0,0 +2013,4,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,645,2,0,950,-7,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1535,4,0,1737,0,0,0 +2013,8,13,2,YV,12264,Washington Dulles International,Washington,DC,11066,Port Columbus International,Columbus,OH,1811,2,0,1925,10,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1410,0,0,1434,42,1,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1245,12,0,1400,8,0,0 +2013,8,2,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1003,-7,0,1113,-20,0,0 +2013,6,23,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,910,1,0,1035,12,0,0 +2013,8,11,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1710,2,0,2031,19,1,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,1000,-4,0,0 +2013,9,20,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1430,-3,0,1629,1,0,0 +2013,7,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1214,-6,0,1422,-9,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1940,-4,0,2150,-17,0,0 +2013,4,11,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1550,10,0,1800,1,0,0 +2013,9,20,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,4,0,1158,6,0,0 +2013,4,10,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1230,-4,0,1309,-1,0,0 +2013,8,29,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-8,0,1320,-8,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,37,1,1935,24,1,0 +2013,5,1,3,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1535,-3,0,1817,-4,0,0 +2013,9,30,1,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1030,-1,0,1150,-5,0,0 +2013,10,22,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1327,19,1,2127,2,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1050,16,1,1223,16,1,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1750,12,0,1910,4,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,36,1,2115,21,1,0 +2013,6,18,2,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2236,85,1,624,65,1,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-6,0,1526,5,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1215,10,0,1320,9,0,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,47,1,1632,32,1,0 +2013,7,12,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,-2,0,1531,3,0,0 +2013,10,14,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,19,1,2330,5,0,0 +2013,7,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-5,0,1623,-7,0,0 +2013,8,14,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,2,0,2110,7,0,0 +2013,5,23,4,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1730,52,1,1745,45,1,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,2,0,1430,-13,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1625,2,0,2050,-7,0,0 +2013,10,8,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1909,-6,0,2129,-10,0,0 +2013,7,25,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-2,0,2159,-5,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1920,-3,0,2052,-21,0,0 +2013,10,8,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,102,1,1925,107,1,0 +2013,7,15,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1720,1,0,1905,19,1,0 +2013,8,22,4,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1545,45,1,1650,40,1,0 +2013,7,12,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,815,-2,0,920,-7,0,0 +2013,9,25,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1222,55,1,1322,46,1,0 +2013,9,23,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1001,0,0,1232,3,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-2,0,2332,-6,0,0 +2013,4,2,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1030,-3,0,1235,-21,0,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2000,31,1,2100,25,1,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,40,1,20,49,1,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2205,-7,0,2317,-3,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,14,0,917,0,0,0 +2013,4,4,4,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,855,-5,0,1020,-16,0,0 +2013,5,16,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1525,-6,0,1715,-12,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1350,-1,0,1541,8,0,0 +2013,10,13,7,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1254,0,,1411,0,1,1 +2013,5,31,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2230,23,1,709,25,1,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,3,0,2140,-6,0,0 +2013,6,11,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,17,1,2050,28,1,0 +2013,8,21,3,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-6,0,1028,-20,0,0 +2013,10,19,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,812,-12,0,0 +2013,10,26,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,-2,0,1126,-20,0,0 +2013,7,18,4,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,18,1,2025,19,1,0 +2013,9,4,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-1,0,840,-15,0,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2009,-2,0,2350,3,0,0 +2013,8,1,4,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,1,0,945,-9,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,955,2,0,1131,-17,0,0 +2013,4,29,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,-8,0,2310,-25,0,0 +2013,7,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-4,0,2016,-9,0,0 +2013,5,12,7,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,620,-2,0,722,-8,0,0 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1345,8,0,1610,2,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-3,0,1450,-2,0,0 +2013,5,5,7,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1650,16,1,1845,-21,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-7,0,1019,-9,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1019,-5,0,1200,5,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,28,1,2310,22,1,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1815,56,1,2150,41,1,0 +2013,5,22,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2115,5,0,2302,10,0,0 +2013,7,16,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1535,-5,0,1700,-22,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,0,,1540,0,1,1 +2013,5,30,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-5,0,1450,-9,0,0 +2013,5,27,1,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1240,1,0,1610,-6,0,0 +2013,8,18,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,1,0,1955,11,0,0 +2013,10,16,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-6,0,1015,7,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1325,3,0,1450,8,0,0 +2013,7,14,7,HA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1355,-1,0,2205,4,0,0 +2013,8,4,7,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1917,56,1,2019,74,1,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,11,0,1010,1,0,0 +2013,4,25,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,50,1,2240,36,1,0 +2013,4,17,3,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,656,49,1,817,52,1,0 +2013,5,3,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,840,8,0,1100,4,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1905,17,1,2050,8,0,0 +2013,8,19,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-7,0,1450,-28,0,0 +2013,9,8,7,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1127,-8,0,1344,-7,0,0 +2013,9,15,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1845,8,0,2010,-3,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,820,6,0,1000,-3,0,0 +2013,7,3,3,OO,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-12,0,2019,-15,0,0 +2013,5,9,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1750,9,0,1915,19,1,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,21,1,1535,15,1,0 +2013,5,11,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1434,-1,0,1555,-7,0,0 +2013,6,22,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,915,-7,0,1505,-11,0,0 +2013,9,2,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1125,-4,0,1130,-4,0,0 +2013,10,17,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1415,0,0,1740,-11,0,0 +2013,7,9,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,1,0,1728,-10,0,0 +2013,9,24,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1052,11,0,1310,8,0,0 +2013,10,30,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1700,28,1,1800,21,1,0 +2013,7,30,2,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,500,-2,0,802,-26,0,0 +2013,5,6,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1130,-3,0,1250,-3,0,0 +2013,5,5,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-8,0,1421,0,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1040,14,0,1919,10,0,0 +2013,8,5,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,4,0,1359,-9,0,0 +2013,5,28,2,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-5,0,841,3,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1354,-2,0,1550,0,0,0 +2013,7,18,4,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,10,0,2050,7,0,0 +2013,5,24,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1406,-7,0,1520,-20,0,0 +2013,6,24,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,740,-3,0,855,-10,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,13,0,1535,23,1,0 +2013,8,5,1,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,-7,0,909,-15,0,0 +2013,10,17,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-5,0,913,-4,0,0 +2013,4,5,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1148,13,0,1359,-6,0,0 +2013,8,17,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1705,-6,0,1950,-5,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1609,-4,0,1627,-2,0,0 +2013,7,6,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,-9,0,1045,-12,0,0 +2013,7,17,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,-1,0,1000,-11,0,0 +2013,4,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1836,-9,0,2003,-18,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1645,20,1,1850,12,0,0 +2013,5,10,5,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1715,26,1,2045,43,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2015,44,1,2315,41,1,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-6,0,1510,-1,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,1,0,1311,15,1,0 +2013,6,11,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-4,0,1300,-24,0,0 +2013,8,28,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,4,0,2025,12,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,26,1,1927,31,1,0 +2013,6,25,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,188,1,1355,183,1,0 +2013,4,26,5,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,856,17,1,1330,3,0,0 +2013,10,15,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1320,7,0,1511,-8,0,0 +2013,9,5,4,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-6,0,911,-5,0,0 +2013,7,31,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1120,-1,0,1210,-5,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-1,0,755,-14,0,0 +2013,4,29,1,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1150,-5,0,1258,-18,0,0 +2013,9,4,3,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1905,-5,0,2101,-24,0,0 +2013,10,1,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1429,3,0,1523,-8,0,0 +2013,10,4,5,B6,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1600,-10,0,1906,-20,0,0 +2013,7,22,1,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1448,-5,0,1745,-9,0,0 +2013,10,12,6,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1523,-2,0,1751,-10,0,0 +2013,8,11,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,0,0,2135,27,1,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-3,0,955,-5,0,0 +2013,10,3,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,756,-7,0,947,-19,0,0 +2013,8,26,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,3,0,800,2,0,0 +2013,8,31,6,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,700,-2,0,1040,-6,0,0 +2013,4,21,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1740,0,0,1935,-21,0,0 +2013,6,26,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,745,50,1,838,44,1,0 +2013,6,6,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-5,0,1108,-3,0,0 +2013,8,26,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,9,0,1540,1,0,0 +2013,5,3,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2031,6,0,2212,-3,0,0 +2013,6,13,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1308,-5,0,1647,-16,0,0 +2013,5,14,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,542,-1,0,808,-6,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1425,-1,0,1615,-6,0,0 +2013,7,18,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,856,1,0,918,11,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,949,43,1,1147,33,1,0 +2013,10,21,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1729,-5,0,1937,7,0,0 +2013,9,16,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-9,0,1955,15,1,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1935,22,1,2209,14,0,0 +2013,4,16,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1047,-3,0,1359,-14,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1240,-3,0,1521,-14,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1115,31,1,1355,30,1,0 +2013,4,11,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-1,0,1459,15,1,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,945,3,0,1250,-4,0,0 +2013,7,17,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,-8,0,2000,-23,0,0 +2013,10,17,4,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1450,10,0,1610,5,0,0 +2013,7,11,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-4,0,720,-11,0,0 +2013,4,1,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,335,5,0,620,5,0,0 +2013,10,25,5,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1841,77,1,1943,74,1,0 +2013,6,16,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,8,0,2036,10,0,0 +2013,9,30,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1025,164,1,1145,166,1,0 +2013,5,18,6,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,1,0,1748,-20,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,-3,0,2035,-22,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,3,0,1000,-6,0,0 +2013,7,12,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1830,0,0,1930,-2,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,6,0,1038,-10,0,0 +2013,6,12,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,-4,0,2009,-9,0,0 +2013,9,9,1,DL,12892,Los Angeles International,Los Angeles,CA,12339,Indianapolis International,Indianapolis,IN,1005,-4,0,1706,-2,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,930,-4,0,1120,10,0,0 +2013,4,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,18,1,1520,21,1,0 +2013,6,8,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,810,-3,0,1050,-27,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-2,0,1424,-27,0,0 +2013,8,3,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-1,0,1022,-3,0,0 +2013,8,9,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,154,1,2049,148,1,0 +2013,7,19,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2016,28,1,2251,21,1,0 +2013,4,22,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,0,0,750,10,0,0 +2013,6,12,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,12,0,1645,9,0,0 +2013,4,10,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1300,-10,0,1335,-7,0,0 +2013,10,14,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,715,-6,0,847,-9,0,0 +2013,4,2,2,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1500,7,0,1815,6,0,0 +2013,10,22,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1855,40,1,2030,15,1,0 +2013,8,10,6,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,821,-9,0,1407,3,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,34,1,1812,21,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-1,0,945,-10,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,89,1,1100,82,1,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1320,8,0,1705,37,1,0 +2013,9,4,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1400,-1,0,1540,-11,0,0 +2013,7,8,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1115,19,1,1200,4,0,0 +2013,5,13,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1525,0,0,1905,0,0,0 +2013,6,20,4,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1705,4,0,1835,-3,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1357,188,1,1706,178,1,0 +2013,7,23,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2014,0,0,2229,-8,0,0 +2013,6,12,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,23,1,1600,15,1,0 +2013,9,29,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,-8,0,2223,-10,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,935,10,0,1100,12,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-2,0,906,-2,0,0 +2013,8,13,2,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1935,24,1,2216,18,1,0 +2013,4,6,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2225,10,0,109,10,0,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1200,31,1,1630,21,1,0 +2013,10,3,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-10,0,826,-20,0,0 +2013,5,15,3,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-7,0,1543,-19,0,0 +2013,9,11,3,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,630,0,0,1120,-8,0,0 +2013,8,16,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1040,34,1,1223,23,1,0 +2013,9,28,6,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,-3,0,900,-25,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1209,3,0,1310,4,0,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,23,1,2259,25,1,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,925,-2,0,1150,-5,0,0 +2013,6,29,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1527,22,1,1714,8,0,0 +2013,9,13,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1530,57,1,1645,59,1,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1450,12,0,1810,2,0,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1010,7,0,1321,8,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,-6,0,2028,-26,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14570,Reno/Tahoe International,Reno,NV,944,49,1,1132,28,1,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1725,26,1,2137,17,1,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2235,-6,0,50,0,0,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1155,2,0,1320,5,0,0 +2013,8,3,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1210,-6,0,1335,-14,0,0 +2013,7,10,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,605,-6,0,710,-5,0,0 +2013,6,21,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-8,0,1028,34,1,0 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1035,-1,0,1633,-13,0,0 +2013,5,1,3,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-7,0,1314,-27,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,955,8,0,1405,4,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-5,0,1409,-12,0,0 +2013,6,7,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,815,-1,0,925,-3,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1155,-3,0,1510,-2,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,605,-4,0,725,-15,0,0 +2013,9,24,2,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,-3,0,1310,-15,0,0 +2013,5,13,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1400,56,1,1432,66,1,0 +2013,8,27,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,230,-4,0,646,-8,0,0 +2013,9,30,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1645,57,1,1750,52,1,0 +2013,6,4,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1630,0,0,1740,-5,0,0 +2013,4,18,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,180,1,1900,170,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,740,-4,0,840,-14,0,0 +2013,7,22,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1356,49,1,1629,65,1,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2008,-2,0,2102,2,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1120,10,0,1205,-2,0,0 +2013,10,20,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,-1,0,1200,2,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,735,-4,0,1012,-12,0,0 +2013,8,25,7,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1548,11,0,1619,-4,0,0 +2013,6,26,3,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,850,8,0,1013,18,1,0 +2013,9,17,2,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-12,0,919,-7,0,0 +2013,7,25,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-10,0,1349,-5,0,0 +2013,5,29,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,-7,0,1330,-13,0,0 +2013,6,27,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,600,24,1,1155,8,0,0 +2013,10,9,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,926,2,0,1140,-20,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,2040,185,1,2355,168,1,0 +2013,5,9,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,955,-6,0,1140,-24,0,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1143,4,0,1413,-5,0,0 +2013,8,23,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-11,0,1300,-23,0,0 +2013,5,22,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1121,1,0,1249,1,0,0 +2013,9,15,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1600,-8,0,1730,-20,0,0 +2013,6,23,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2100,11,0,510,-16,0,0 +2013,7,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,2130,-5,0,2250,-10,0,0 +2013,7,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1215,7,0,1512,5,0,0 +2013,5,29,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,823,-7,0,1000,-35,0,0 +2013,5,15,3,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1610,-9,0,1724,-15,0,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2155,-6,0,2221,-4,0,0 +2013,6,16,7,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1115,-1,0,1257,-5,0,0 +2013,4,6,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,716,-7,0,1046,-19,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-7,0,1505,-12,0,0 +2013,4,20,6,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1335,-2,0,1553,31,1,0 +2013,6,1,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,815,9,0,935,-6,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1755,0,0,2013,-9,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,-3,0,1335,-16,0,0 +2013,10,31,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,-7,0,2224,-24,0,0 +2013,8,20,2,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,905,-3,0,1050,-13,0,0 +2013,4,7,7,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1715,-4,0,1901,-16,0,0 +2013,5,14,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2020,-5,0,2205,-6,0,0 +2013,7,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1133,-3,0,1229,-18,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2140,-4,0,2232,10,0,0 +2013,6,8,6,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,-8,0,1125,-19,0,0 +2013,8,6,2,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1945,-1,0,2244,-8,0,0 +2013,10,23,3,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1715,0,0,1840,9,0,0 +2013,10,1,2,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1845,0,0,2002,-8,0,0 +2013,6,23,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1511,9,0,1900,1,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2050,13,0,2252,12,0,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,2,0,1310,-8,0,0 +2013,8,21,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1500,-13,0,1635,1,0,0 +2013,9,24,2,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1000,1,0,1324,-9,0,0 +2013,8,11,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1830,49,1,2110,49,1,0 +2013,5,11,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1655,6,0,1735,8,0,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1215,183,1,1305,185,1,0 +2013,5,4,6,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1535,-3,0,1920,-15,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1340,25,1,1610,23,1,0 +2013,10,30,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,835,-4,0,955,-6,0,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,-5,0,26,-24,0,0 +2013,5,9,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1635,-6,0,1830,-23,0,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1914,8,0,2048,3,0,0 +2013,9,4,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-17,0,2100,-17,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-3,0,1010,-25,0,0 +2013,5,2,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1350,75,1,1500,98,1,0 +2013,8,15,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,0,0,1311,-1,0,0 +2013,7,7,7,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1914,7,0,2059,-7,0,0 +2013,5,10,5,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,910,1,0,1730,36,1,0 +2013,5,5,7,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,925,12,0,1300,2,0,0 +2013,6,19,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,0,0,820,3,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,3,0,1120,20,1,0 +2013,4,17,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1005,-3,0,1305,-2,0,0 +2013,5,13,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1502,-6,0,1604,-6,0,0 +2013,8,12,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,220,-18,0,635,-14,0,0 +2013,4,19,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,3,0,1235,-1,0,0 +2013,6,14,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,642,-10,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2105,35,1,2210,29,1,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1411,12,0,1702,19,1,0 +2013,6,9,7,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,954,6,0,1103,-2,0,0 +2013,6,20,4,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,909,0,0,1020,-7,0,0 +2013,10,31,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-7,0,1251,-11,0,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1936,8,0,1955,0,0,0 +2013,5,30,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-7,0,744,-15,0,0 +2013,6,1,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1340,-4,0,1600,-20,0,0 +2013,8,27,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1122,-2,0,1225,3,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2150,-5,0,2258,-10,0,0 +2013,5,11,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-6,0,1350,1,0,0 +2013,5,26,7,B6,10423,Austin - Bergstrom International,Austin,TX,12954,Long Beach Airport,Long Beach,CA,715,-3,0,823,-7,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-1,0,2159,-28,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,8,0,1125,-2,0,0 +2013,5,6,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1015,-16,0,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,2,0,1904,-2,0,0 +2013,4,16,2,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,200,1,655,180,1,0 +2013,6,28,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,5,0,2025,2,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,600,0,,840,0,1,1 +2013,10,25,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,14,0,1425,3,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,1,0,2140,9,0,0 +2013,6,21,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1711,-5,0,1847,12,0,0 +2013,6,26,3,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1712,13,0,1848,22,1,0 +2013,5,11,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,-3,0,556,-13,0,0 +2013,5,4,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1950,59,1,2125,57,1,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,41,1,1520,30,1,0 +2013,7,31,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2105,-1,0,2230,-17,0,0 +2013,10,12,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1552,-2,0,1759,-19,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,0,0,2040,6,0,0 +2013,6,13,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1845,92,1,2005,84,1,0 +2013,8,1,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2155,-1,0,2305,-8,0,0 +2013,6,25,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1835,-8,0,2005,-7,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,925,4,0,1115,-2,0,0 +2013,4,22,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,0,0,1420,2,0,0 +2013,8,2,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-7,0,1100,-20,0,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1240,11,0,1601,5,0,0 +2013,10,22,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-3,0,1302,-5,0,0 +2013,5,30,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1310,-3,0,1500,-16,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1046,5,0,1150,-5,0,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1226,3,0,1655,-10,0,0 +2013,10,8,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-9,0,1505,10,0,0 +2013,5,22,3,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,24,1,1535,9,0,0 +2013,10,12,6,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1759,1,0,2044,-18,0,0 +2013,5,29,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,4,0,2119,8,0,0 +2013,4,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1240,16,1,1605,8,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1030,51,1,1133,45,1,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,1,0,820,-7,0,0 +2013,5,31,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,38,1,1912,68,1,0 +2013,4,30,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,906,-10,0,1506,-35,0,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,950,-7,0,1142,0,0,0 +2013,9,7,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,635,-4,0,925,-12,0,0 +2013,8,27,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2010,-11,0,2140,-12,0,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,-7,0,912,9,0,0 +2013,6,29,6,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,8,0,1840,6,0,0 +2013,10,9,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,18,1,1825,47,1,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1350,-1,0,1450,-5,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,-3,0,858,-9,0,0 +2013,4,29,1,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,-4,0,1945,-8,0,0 +2013,8,11,7,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,0,0,1045,0,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,6,0,2153,25,1,0 +2013,8,15,4,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1200,7,0,1330,4,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,700,-5,0,930,-9,0,0 +2013,10,8,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1733,-7,0,1900,-1,0,0 +2013,6,2,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1100,67,1,1457,67,1,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,602,33,1,728,5,0,0 +2013,10,24,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-2,0,1111,-12,0,0 +2013,9,3,2,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,-6,0,1844,-2,0,0 +2013,10,23,3,AA,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,955,-3,0,1715,-17,0,0 +2013,8,9,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-6,0,1210,-7,0,0 +2013,7,23,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,828,5,0,1032,-2,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,-1,0,2010,-29,0,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,655,-3,0,1035,-17,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,18,1,2145,1,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-7,0,1105,-2,0,0 +2013,8,17,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,-7,0,40,-16,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-2,0,857,-5,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1450,-3,0,1603,-19,0,0 +2013,8,24,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1225,-5,0,1235,-15,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,4,0,915,-10,0,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,835,-2,0,950,16,1,0 +2013,7,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1405,10,0,1525,10,0,0 +2013,4,21,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,746,-5,0,905,-16,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,-6,0,2201,0,0,0 +2013,7,28,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-7,0,1212,-14,0,0 +2013,4,29,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2105,-12,0,2305,-30,0,0 +2013,7,25,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,605,-4,0,725,-1,0,0 +2013,4,22,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-3,0,742,-9,0,0 +2013,9,30,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-5,0,1117,-23,0,0 +2013,8,30,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1310,-9,0,1440,-8,0,0 +2013,6,27,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,2033,24,1,2326,111,1,0 +2013,7,19,5,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,0,0,840,8,0,0 +2013,7,30,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1235,6,0,2110,1,0,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,7,0,2226,-11,0,0 +2013,7,5,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,0,,1355,0,1,1 +2013,8,6,2,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1835,50,1,2150,37,1,0 +2013,5,28,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1455,-1,0,1732,1,0,0 +2013,8,6,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1054,-5,0,1309,-14,0,0 +2013,7,26,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1917,-3,0,110,0,0,0 +2013,8,28,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-10,0,1352,-4,0,0 +2013,7,27,6,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1326,65,1,1501,64,1,0 +2013,10,22,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1210,-7,0,1520,-33,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,26,1,2105,22,1,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,558,5,0,1432,-23,0,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2200,5,0,2310,10,0,0 +2013,9,9,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1315,4,0,1440,-4,0,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1740,16,1,1931,39,1,0 +2013,9,15,7,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1050,-3,0,1250,-1,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,0,0,1612,-17,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1620,-2,0,1745,-5,0,0 +2013,7,30,2,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1020,-12,0,1200,-19,0,0 +2013,4,16,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,0,,1840,0,1,1 +2013,9,5,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1625,-1,0,1755,-12,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1500,117,1,1757,103,1,0 +2013,8,4,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-7,0,30,-20,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,-7,0,1810,-12,0,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-9,0,1512,-2,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,2,0,1645,-9,0,0 +2013,7,19,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1150,-7,0,1315,-19,0,0 +2013,6,2,7,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,2,0,931,-1,0,0 +2013,7,22,1,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1410,72,1,1530,0,1,1 +2013,5,20,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,600,-1,0,730,-9,0,0 +2013,7,8,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-7,0,1657,-12,0,0 +2013,7,6,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1550,60,1,1705,41,1,0 +2013,5,16,4,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1850,-7,0,2105,-20,0,0 +2013,10,19,6,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,936,14,0,1105,15,1,0 +2013,4,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1541,-12,0,1921,-18,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1435,5,0,1600,1,0,0 +2013,4,19,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,7,0,2225,-1,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,2043,27,1,15,20,1,0 +2013,6,9,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,81,1,1706,82,1,0 +2013,10,16,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1613,-6,0,1730,15,1,0 +2013,10,17,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,6,0,1657,9,0,0 +2013,10,8,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,835,-3,0,1025,-16,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-6,0,1101,-9,0,0 +2013,5,13,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2125,-8,0,2250,-9,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1924,71,1,2313,64,1,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,735,-3,0,1300,-25,0,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,745,-8,0,1123,-12,0,0 +2013,9,12,4,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2002,11,0,2209,2,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1449,-6,0,1629,-6,0,0 +2013,4,30,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,600,-3,0,720,0,0,0 +2013,5,2,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2005,-3,0,2130,7,0,0 +2013,9,24,2,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1003,-6,0,1110,-11,0,0 +2013,4,26,5,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1225,-2,0,1600,8,0,0 +2013,7,29,1,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,945,22,1,1040,11,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1312,0,0,1710,-19,0,0 +2013,8,13,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1600,17,1,1721,8,0,0 +2013,8,15,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1716,6,0,1844,-1,0,0 +2013,4,29,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1739,2,0,1946,7,0,0 +2013,7,13,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,700,-1,0,725,-1,0,0 +2013,4,16,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,361,1,1730,332,1,0 +2013,9,8,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-4,0,750,-14,0,0 +2013,9,1,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1820,-10,0,2207,-21,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-6,0,1510,-5,0,0 +2013,6,3,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1500,-4,0,1923,-7,0,0 +2013,10,24,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-1,0,1912,-5,0,0 +2013,7,3,3,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,8,0,1648,10,0,0 +2013,6,26,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1420,3,0,1535,-1,0,0 +2013,8,8,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-4,0,614,-2,0,0 +2013,4,12,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-8,0,1112,-7,0,0 +2013,4,11,4,OO,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1653,0,0,1833,16,1,0 +2013,8,10,6,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1020,-6,0,1220,-1,0,0 +2013,6,13,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,1,0,1155,-14,0,0 +2013,4,2,2,DL,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1825,-2,0,2333,-7,0,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1910,-6,0,2319,-24,0,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1610,17,1,1842,4,0,0 +2013,6,16,7,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2142,25,1,610,42,1,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1410,7,0,1500,-4,0,0 +2013,9,16,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1928,-4,0,2110,-11,0,0 +2013,6,20,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1624,-9,0,1715,-13,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,0,,749,0,1,1 +2013,6,6,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,40,1,1805,33,1,0 +2013,4,28,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,2000,30,1,2105,23,1,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,0,0,1040,-13,0,0 +2013,7,2,2,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,11,0,1330,-5,0,0 +2013,10,21,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1445,0,0,1727,-11,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,288,1,2020,260,1,0 +2013,4,8,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1337,10,0,1525,0,0,0 +2013,6,16,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1050,-1,0,1327,3,0,0 +2013,6,26,3,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1650,8,0,1802,8,0,0 +2013,9,6,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,5,0,2005,25,1,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1635,11,0,1959,35,1,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1741,-6,0,1920,9,0,0 +2013,6,5,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1920,0,0,2030,-15,0,0 +2013,5,27,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1154,-8,0,1338,-15,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1622,17,1,54,1,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,835,13,0,920,11,0,0 +2013,5,29,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,650,-1,0,855,-4,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,112,1,1654,141,1,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,2020,46,1,2335,43,1,0 +2013,10,17,4,9E,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-5,0,918,-17,0,0 +2013,4,6,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,45,1,1354,36,1,0 +2013,9,12,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1435,-2,0,1606,-6,0,0 +2013,7,19,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,230,1,2049,229,1,0 +2013,5,26,7,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1318,34,1,1534,47,1,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2130,2,0,2220,-14,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,152,1,1750,173,1,0 +2013,7,14,7,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1035,-11,0,1400,-11,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2140,22,1,2300,13,0,0 +2013,4,15,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,705,-4,0,922,-23,0,0 +2013,6,20,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1900,16,1,2005,7,0,0 +2013,7,27,6,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,845,-6,0,1014,7,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,2145,-4,0,2320,-35,0,0 +2013,7,31,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-10,0,1210,14,0,0 +2013,4,14,7,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,758,-6,0,927,-3,0,0 +2013,8,30,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1815,-2,0,1944,-21,0,0 +2013,10,17,4,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1900,-9,0,2018,-16,0,0 +2013,7,7,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,720,1,0,750,2,0,0 +2013,4,22,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1715,105,1,2000,102,1,0 +2013,9,25,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1004,-4,0,1159,-17,0,0 +2013,8,22,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1715,77,1,2010,66,1,0 +2013,4,17,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,38,1,1707,32,1,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,654,-2,0,825,6,0,0 +2013,8,1,4,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,730,15,1,930,24,1,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-1,0,920,-21,0,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-4,0,1715,-15,0,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,1500,-1,0,2257,-5,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,-4,0,1615,-14,0,0 +2013,10,13,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,30,-6,0,537,-12,0,0 +2013,9,3,2,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1655,6,0,1806,-16,0,0 +2013,6,28,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,3,0,1407,7,0,0 +2013,10,11,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,605,-3,0,1122,-1,0,0 +2013,6,14,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-6,0,1143,-10,0,0 +2013,10,21,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,14,0,1516,6,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,77,1,2333,75,1,0 +2013,8,27,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,730,-7,0,858,-3,0,0 +2013,9,25,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1925,-7,0,2252,-14,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,7,0,1125,8,0,0 +2013,6,25,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-1,0,1225,-11,0,0 +2013,6,26,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,-4,0,1155,-6,0,0 +2013,8,11,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2059,-3,0,2322,-5,0,0 +2013,7,24,3,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,-8,0,915,12,0,0 +2013,10,7,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,4,0,1908,6,0,0 +2013,9,24,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1017,-5,0,1033,-16,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,935,4,0,1220,-3,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,925,-3,0,1119,-4,0,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,27,1,2300,6,0,0 +2013,8,18,7,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1158,4,0,1440,3,0,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,-1,0,1910,-32,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,86,1,1620,68,1,0 +2013,7,3,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1334,-8,0,1559,-25,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1011,-7,0,1345,-25,0,0 +2013,9,20,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2153,-6,0,2241,-17,0,0 +2013,7,13,6,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1525,14,0,1605,-2,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2135,-2,0,43,-13,0,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2220,2,0,14,5,0,0 +2013,5,26,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-6,0,1446,-11,0,0 +2013,7,25,4,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,34,1,1210,30,1,0 +2013,10,4,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,-1,0,1225,0,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2200,32,1,2330,23,1,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-2,0,2238,-11,0,0 +2013,6,17,1,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1845,30,1,2140,57,1,0 +2013,4,13,6,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-2,0,931,13,0,0 +2013,5,23,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,902,-11,0,0 +2013,10,11,5,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1500,15,1,1626,12,0,0 +2013,9,23,1,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,915,-5,0,1045,-13,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1905,-1,0,2035,-11,0,0 +2013,9,30,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,1,0,856,31,1,0 +2013,5,22,3,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1300,-2,0,1415,-8,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-6,0,1413,-9,0,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2220,63,1,2335,62,1,0 +2013,7,26,5,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1845,2,0,2013,37,1,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,0,0,2003,-19,0,0 +2013,4,12,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,929,1,0,1033,20,1,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,715,-6,0,849,-19,0,0 +2013,7,5,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-11,0,2159,-21,0,0 +2013,9,26,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-6,0,2210,3,0,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-5,0,1242,7,0,0 +2013,7,29,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,739,0,0,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2000,1,0,2210,-2,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1450,32,1,1555,28,1,0 +2013,10,8,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,9,0,1210,12,0,0 +2013,6,15,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,11,0,750,12,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1220,64,1,1944,100,1,0 +2013,7,20,6,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,0,0,1055,-8,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1338,0,,1446,0,1,1 +2013,5,1,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-7,0,1805,-41,0,0 +2013,4,28,7,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1945,43,1,2255,31,1,0 +2013,9,23,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1250,12,0,1420,12,0,0 +2013,5,17,5,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,715,-3,0,1019,-11,0,0 +2013,10,13,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,614,2,0,745,-13,0,0 +2013,6,5,3,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,819,4,0,1100,-7,0,0 +2013,8,29,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,10,0,2030,1,0,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1229,-5,0,1247,-12,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,830,-2,0,945,-1,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,745,0,0,941,-5,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,925,3,0,1100,20,1,0 +2013,10,8,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-6,0,1420,-34,0,0 +2013,9,23,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1850,-4,0,2103,-21,0,0 +2013,5,22,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,940,-7,0,1040,-22,0,0 +2013,9,17,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2035,-2,0,2255,-6,0,0 +2013,9,22,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,13,0,1955,33,1,0 +2013,4,19,5,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-3,0,717,6,0,0 +2013,7,31,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1945,-4,0,2105,-7,0,0 +2013,6,17,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1720,-6,0,2000,-19,0,0 +2013,4,4,4,9E,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-3,0,1205,-26,0,0 +2013,10,14,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1958,-10,0,2224,-10,0,0 +2013,7,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1611,29,1,15,22,1,0 +2013,9,27,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-6,0,904,-25,0,0 +2013,8,20,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-7,0,753,1,0,0 +2013,9,2,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,1,0,1701,-10,0,0 +2013,10,21,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1325,2,0,1525,-9,0,0 +2013,5,4,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1543,2,0,1840,0,0,0 +2013,9,25,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1405,42,1,1510,34,1,0 +2013,10,23,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-7,0,1555,-3,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2250,1,0,2355,-3,0,0 +2013,8,25,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,1,0,2011,-12,0,0 +2013,6,16,7,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1945,-5,0,2115,15,1,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1410,3,0,1505,-8,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1755,3,0,1933,1,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1805,3,0,2021,2,0,0 +2013,10,15,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,197,1,1435,204,1,0 +2013,5,16,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,11,0,1542,11,0,0 +2013,9,16,1,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,30,-4,0,610,-13,0,0 +2013,9,11,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1845,0,0,2005,-1,0,0 +2013,5,11,6,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,-2,0,1802,17,1,0 +2013,6,10,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,115,1,1712,131,1,0 +2013,7,27,6,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1343,-5,0,1612,-13,0,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2035,91,1,2305,77,1,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1310,21,1,1526,41,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,855,-3,0,1049,-12,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,2,0,1845,-6,0,0 +2013,8,26,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1725,7,0,1820,8,0,0 +2013,6,18,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-7,0,1636,-3,0,0 +2013,7,31,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,-9,0,1610,-2,0,0 +2013,5,18,6,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,948,7,0,1230,14,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,28,1,1735,27,1,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1615,0,0,1720,14,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1425,0,0,1835,-18,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,854,8,0,1024,8,0,0 +2013,7,22,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,0,0,1400,-6,0,0 +2013,4,1,1,FL,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1815,-3,0,1905,-10,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1135,10,0,1300,-3,0,0 +2013,10,14,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,650,-4,0,830,-9,0,0 +2013,4,7,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-5,0,1555,-8,0,0 +2013,9,26,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,9,0,1323,-15,0,0 +2013,6,22,6,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1120,25,1,1305,8,0,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1725,2,0,1820,2,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1005,-7,0,1241,0,0,0 +2013,9,2,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1955,187,1,2229,174,1,0 +2013,9,24,2,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,70,1,1939,50,1,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,48,1,2250,33,1,0 +2013,4,5,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2005,6,0,2130,3,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1510,0,0,1944,-3,0,0 +2013,10,17,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1755,8,0,1930,-3,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-2,0,1605,-15,0,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1350,59,1,1905,44,1,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,900,9,0,1425,0,0,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,-2,0,1100,3,0,0 +2013,7,16,2,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1010,5,0,1245,-3,0,0 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,900,-6,0,1251,-26,0,0 +2013,6,18,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,0,0,1117,24,1,0 +2013,4,11,4,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,811,-2,0,1138,-26,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1457,0,0,1555,-12,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,-2,0,630,-6,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,935,-2,0,1055,-5,0,0 +2013,6,19,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-1,0,925,-2,0,0 +2013,6,7,5,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,35,1,1543,29,1,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,835,-5,0,1310,-8,0,0 +2013,9,6,5,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,6,0,2248,-32,0,0 +2013,8,11,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,19,1,2042,18,1,0 +2013,10,21,1,F9,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,25,1,652,19,1,0 +2013,9,21,6,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,840,-2,0,950,2,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,216,1,2045,211,1,0 +2013,9,23,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,6,0,1545,7,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,26,1,2250,23,1,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,819,-5,0,1348,-28,0,0 +2013,10,8,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1415,27,1,1615,9,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,-1,0,1732,-3,0,0 +2013,7,13,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1135,0,0,1310,-18,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,849,0,0,1252,3,0,0 +2013,5,16,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1040,9,0,1340,-2,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,4,0,1440,-12,0,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1939,7,0,2250,-16,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2020,30,1,2345,16,1,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1940,89,1,2101,77,1,0 +2013,5,12,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,-5,0,2252,0,0,0 +2013,4,7,7,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,9,0,1405,-2,0,0 +2013,8,27,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,49,1,1655,49,1,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-8,0,1019,-24,0,0 +2013,7,8,1,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,810,-1,0,935,-14,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,0,0,1438,-18,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1515,-1,0,1640,3,0,0 +2013,6,5,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1015,-8,0,1147,-22,0,0 +2013,6,7,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-2,0,1125,8,0,0 +2013,6,30,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13495,Louis Armstrong New Orleans International,New Orleans,LA,1716,0,0,2137,-11,0,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1630,33,1,1835,25,1,0 +2013,10,20,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-3,0,1445,4,0,0 +2013,5,3,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1335,57,1,1540,63,1,0 +2013,8,27,2,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-5,0,1058,-10,0,0 +2013,4,30,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1805,0,0,0 +2013,10,20,7,EV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1223,17,1,1328,38,1,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,605,-1,0,735,0,0,0 +2013,7,25,4,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,30,-11,0,835,2,0,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1930,-5,0,2152,-25,0,0 +2013,10,24,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2050,69,1,2225,48,1,0 +2013,10,23,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-8,0,1431,-28,0,0 +2013,4,1,1,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1110,-7,0,1228,-13,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,105,1,2329,97,1,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2140,0,0,10,-2,0,0 +2013,4,29,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1415,-7,0,1430,-16,0,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,805,-5,0,1029,-2,0,0 +2013,5,31,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2105,-5,0,2215,-1,0,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,13,0,612,29,1,0 +2013,4,2,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1610,31,1,1817,24,1,0 +2013,10,8,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-9,0,1115,-17,0,0 +2013,10,17,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,8,0,1312,4,0,0 +2013,7,10,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,659,6,0,0 +2013,8,5,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,910,-7,0,1105,-12,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,194,1,1357,199,1,0 +2013,8,23,5,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,5,0,2040,-4,0,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,835,7,0,940,1,0,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,208,1,1845,214,1,0 +2013,7,22,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1250,0,0,1535,8,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1645,355,1,1830,373,1,0 +2013,7,24,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,10,0,2105,-1,0,0 +2013,6,21,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-11,0,913,-7,0,0 +2013,10,17,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-5,0,1423,-13,0,0 +2013,5,15,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-6,0,1038,-14,0,0 +2013,7,23,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,905,0,0,1015,-12,0,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,-4,0,1635,-8,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1040,-3,0,1300,-2,0,0 +2013,8,15,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1350,2,0,2142,2,0,0 +2013,4,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1845,-2,0,2010,9,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1950,-7,0,2101,-15,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1031,0,,1246,0,1,1 +2013,7,7,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,949,-2,0,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2025,4,0,2150,9,0,0 +2013,6,20,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,2005,7,0,2106,5,0,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,5,0,2255,-3,0,0 +2013,7,21,7,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1415,86,1,1705,81,1,0 +2013,6,22,6,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2339,49,1,718,62,1,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1035,-2,0,1201,-6,0,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1300,-3,0,1415,-15,0,0 +2013,4,24,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-3,0,2002,35,1,0 +2013,9,13,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-7,0,911,-36,0,0 +2013,6,27,4,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2015,38,1,2300,36,1,0 +2013,6,5,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-7,0,1016,-17,0,0 +2013,9,27,5,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1700,30,1,1750,25,1,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1625,0,0,1754,11,0,0 +2013,6,19,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-2,0,1305,-3,0,0 +2013,7,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,53,1,1315,29,1,0 +2013,7,22,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,933,2,0,1221,1,0,0 +2013,7,22,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,745,-5,0,1000,-12,0,0 +2013,7,6,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-4,0,1934,-21,0,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,630,1,0,720,-2,0,0 +2013,6,30,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,61,1,2025,98,1,0 +2013,5,18,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1930,-4,0,2110,-12,0,0 +2013,7,6,6,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2100,-6,0,2225,-6,0,0 +2013,10,4,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1501,-4,0,1645,17,1,0 +2013,6,16,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-5,0,1119,-8,0,0 +2013,6,10,1,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,810,-3,0,1115,-9,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,20,1,1440,14,0,0 +2013,10,1,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1446,-9,0,1505,-5,0,0 +2013,5,20,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,804,-4,0,924,8,0,0 +2013,10,25,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,-6,0,2039,-1,0,0 +2013,7,31,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,1614,-5,0,0 +2013,6,6,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1020,11,0,1150,18,1,0 +2013,10,25,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,645,4,0,836,2,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1744,10,0,2159,-28,0,0 +2013,8,11,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-8,0,1809,-23,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,850,-2,0,1555,4,0,0 +2013,9,29,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1630,-3,0,1750,-6,0,0 +2013,6,28,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,3,0,2110,10,0,0 +2013,8,8,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,0,0,1053,-15,0,0 +2013,10,15,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,13,0,1822,9,0,0 +2013,7,15,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,49,1,1940,42,1,0 +2013,10,21,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1210,-3,0,1328,-2,0,0 +2013,6,4,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,11,0,1855,11,0,0 +2013,7,24,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,-2,0,2216,-14,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,840,0,0,1105,-12,0,0 +2013,4,19,5,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-3,0,1728,-8,0,0 +2013,9,16,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-6,0,1100,-23,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,1112,-13,0,0 +2013,5,11,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1121,-1,0,1231,-19,0,0 +2013,4,3,3,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,809,-4,0,931,-4,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1705,51,1,2255,41,1,0 +2013,10,28,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1535,-1,0,1640,-6,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,12,0,1935,3,0,0 +2013,6,25,2,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-9,0,603,-3,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,800,-4,0,1055,-15,0,0 +2013,5,12,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1835,-8,0,1939,-8,0,0 +2013,6,15,6,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,65,1,2305,62,1,0 +2013,9,28,6,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,930,-1,0,0 +2013,4,1,1,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1816,167,1,2137,191,1,0 +2013,6,4,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1625,17,1,1910,11,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,65,1,1735,57,1,0 +2013,9,21,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,4,0,1345,1,0,0 +2013,8,28,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,-3,0,1230,-15,0,0 +2013,10,15,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1038,-6,0,1141,-12,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1019,-1,0,1440,-1,0,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1441,31,1,1629,27,1,0 +2013,5,20,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1840,55,1,2237,40,1,0 +2013,8,25,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,629,-6,0,1040,7,0,0 +2013,4,4,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,903,-6,0,1033,-9,0,0 +2013,10,28,1,9E,12953,LaGuardia,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1920,38,1,2053,49,1,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1450,3,0,1610,-7,0,0 +2013,10,18,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1350,50,1,1510,53,1,0 +2013,5,14,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,-8,0,1256,-10,0,0 +2013,4,5,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1740,0,0,1915,7,0,0 +2013,5,9,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1827,13,0,2019,-4,0,0 +2013,5,15,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1600,2,0,1737,-7,0,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1659,-4,0,1840,-25,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-2,0,855,-4,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,4,0,1103,16,1,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,6,0,1420,-4,0,0 +2013,10,6,7,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,855,0,0,1115,-18,0,0 +2013,7,21,7,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1915,0,,2131,0,1,1 +2013,4,23,2,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,930,1,0,1100,-10,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2220,21,1,2235,17,1,0 +2013,8,4,7,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,950,-3,0,1825,-29,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,13,0,2149,-12,0,0 +2013,7,31,3,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,3,0,1230,-11,0,0 +2013,8,24,6,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,68,1,1920,49,1,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,-4,0,1010,0,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-1,0,948,-9,0,0 +2013,7,22,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,642,-2,0,725,-1,0,0 +2013,9,27,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,28,1,1625,14,0,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,7,0,1515,0,0,0 +2013,5,13,1,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1330,-1,0,1452,14,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1415,-4,0,1530,-19,0,0 +2013,4,17,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1855,18,1,1955,13,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2155,26,1,2250,36,1,0 +2013,4,11,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1805,-4,0,2050,-12,0,0 +2013,7,9,2,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2003,56,1,2208,33,1,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,745,-2,0,850,-8,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,-5,0,2059,2,0,0 +2013,4,27,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,-9,0,1906,-25,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1431,-3,0,1601,-12,0,0 +2013,8,11,7,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1402,-10,0,1439,-9,0,0 +2013,4,20,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1125,-1,0,1643,-7,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,601,-3,0,729,-10,0,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,-4,0,1622,3,0,0 +2013,5,22,3,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1252,3,0,1557,-11,0,0 +2013,7,9,2,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-9,0,1430,-5,0,0 +2013,7,28,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1734,1,0,2013,6,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,805,5,0,1255,-6,0,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,5,0,1845,21,1,0 +2013,9,18,3,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1300,-2,0,1640,-16,0,0 +2013,10,1,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1232,3,0,1530,-22,0,0 +2013,10,17,4,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2054,0,0,2358,12,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,800,-7,0,920,-17,0,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,0,0,1331,9,0,0 +2013,7,24,3,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1200,24,1,1313,11,0,0 +2013,9,14,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1007,-5,0,1030,-15,0,0 +2013,8,21,3,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-4,0,627,-13,0,0 +2013,7,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1940,30,1,2055,25,1,0 +2013,8,26,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1436,-4,0,1623,-17,0,0 +2013,10,6,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,8,0,1730,1,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1653,38,1,1840,25,1,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1330,-6,0,1609,4,0,0 +2013,5,29,3,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1500,0,0,2305,-21,0,0 +2013,9,12,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1155,-6,0,1453,-1,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,-2,0,730,-7,0,0 +2013,6,20,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1325,2,0,1345,2,0,0 +2013,6,9,7,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,29,1,1000,50,1,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1905,19,1,2025,14,0,0 +2013,5,8,3,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,210,1,2320,175,1,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1935,47,1,2115,41,1,0 +2013,9,27,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,650,-5,0,815,-18,0,0 +2013,6,8,6,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,940,1,0,1110,-6,0,0 +2013,6,1,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1447,-12,0,1643,-31,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,835,3,0,1125,-22,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,959,-6,0,1020,-11,0,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1630,-1,0,1835,-2,0,0 +2013,4,28,7,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,1,0,1137,16,1,0 +2013,5,6,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,7,0,1430,7,0,0 +2013,9,4,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1455,0,0,1750,-18,0,0 +2013,6,19,3,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1500,2,0,1645,5,0,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1930,18,1,2156,16,1,0 +2013,4,28,7,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,757,19,1,945,19,1,0 +2013,10,29,2,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2150,-7,0,2335,-9,0,0 +2013,7,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,745,1,0,1040,1,0,0 +2013,8,8,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,-7,0,1640,-12,0,0 +2013,4,11,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,-2,0,2310,-10,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1643,10,0,1820,-19,0,0 +2013,5,19,7,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,825,17,1,1020,7,0,0 +2013,6,8,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1224,0,0,1303,1,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,88,1,2039,61,1,0 +2013,4,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,847,1,0,1156,-9,0,0 +2013,5,5,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,810,-3,0,1050,-8,0,0 +2013,7,11,4,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1052,4,0,1824,-3,0,0 +2013,7,7,7,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1145,-5,0,1448,3,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2030,2,0,2135,-7,0,0 +2013,8,30,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,859,4,0,1137,-4,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,2,0,2105,-12,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-4,0,1325,-5,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-1,0,2335,-6,0,0 +2013,8,6,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,-2,0,1145,-14,0,0 +2013,5,21,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1106,6,0,1238,0,0,0 +2013,9,1,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-1,0,1705,-14,0,0 +2013,8,25,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,-7,0,725,-14,0,0 +2013,5,22,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,0,0,2011,12,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2109,19,1,2302,6,0,0 +2013,6,28,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1240,15,1,1610,8,0,0 +2013,4,10,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1952,-9,0,2131,-6,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2015,0,0,2229,-4,0,0 +2013,7,7,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,8,0,2205,-3,0,0 +2013,5,2,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1009,-8,0,1216,-18,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1135,4,0,1405,3,0,0 +2013,5,29,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,825,-11,0,1405,-10,0,0 +2013,9,29,7,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1350,-2,0,1914,-2,0,0 +2013,7,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1945,13,0,2125,-4,0,0 +2013,8,25,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-1,0,1602,-11,0,0 +2013,5,14,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-3,0,830,-5,0,0 +2013,4,18,4,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,8,0,2129,18,1,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1900,25,1,2050,-2,0,0 +2013,7,14,7,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1225,3,0,1410,-17,0,0 +2013,6,24,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,12,0,1922,70,1,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,-1,0,1931,20,1,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,755,8,0,1105,0,0,0 +2013,8,10,6,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,135,-6,0,803,-2,0,0 +2013,6,27,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-1,0,843,-7,0,0 +2013,4,23,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-3,0,922,11,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1906,13,0,2032,-8,0,0 +2013,5,25,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1358,5,0,1547,25,1,0 +2013,9,13,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,955,65,1,1320,65,1,0 +2013,5,1,3,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,938,-1,0,1204,2,0,0 +2013,9,22,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1630,-8,0,1839,-9,0,0 +2013,9,13,5,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,725,0,0,840,-5,0,0 +2013,10,20,7,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1225,0,,2019,0,1,1 +2013,5,20,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,120,27,1,615,18,1,0 +2013,10,16,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1900,-5,0,2041,-10,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-5,0,1102,-9,0,0 +2013,9,21,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1725,-3,0,1825,3,0,0 +2013,6,8,6,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,605,-3,0,757,7,0,0 +2013,4,25,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,817,4,0,914,15,1,0 +2013,4,19,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,1103,-18,0,0 +2013,7,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,835,-5,0,951,-35,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,-1,0,1151,-2,0,0 +2013,10,20,7,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,2005,4,0,2128,6,0,0 +2013,9,18,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1038,-13,0,1140,-26,0,0 +2013,9,1,7,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,-1,0,1925,-22,0,0 +2013,10,15,2,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-13,0,2047,-16,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2140,-3,0,2318,7,0,0 +2013,4,20,6,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1700,7,0,1910,-4,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,705,0,0,840,-5,0,0 +2013,7,5,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,-5,0,2356,-3,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,800,9,0,1055,2,0,0 +2013,8,30,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1554,25,1,1845,27,1,0 +2013,6,20,4,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-6,0,1028,-10,0,0 +2013,7,29,1,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1315,1,0,1910,-20,0,0 +2013,8,4,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2159,1,0,2341,-23,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,4,0,1735,-1,0,0 +2013,4,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,941,18,1,1151,32,1,0 +2013,10,14,1,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1035,1,0,1830,-24,0,0 +2013,4,27,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,48,1,1730,45,1,0 +2013,5,17,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1727,-2,0,1824,0,0,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1723,-2,0,1952,6,0,0 +2013,10,13,7,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-12,0,2020,-24,0,0 +2013,10,12,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1714,-13,0,2000,-27,0,0 +2013,9,11,3,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,-10,0,1529,-16,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1914,2,0,2043,-15,0,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1320,9,0,1905,16,1,0 +2013,8,7,3,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,823,0,0,1002,2,0,0 +2013,5,30,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1011,0,0,1206,2,0,0 +2013,7,28,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,1252,-16,0,0 +2013,10,26,6,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,5,0,1805,-14,0,0 +2013,10,12,6,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,800,-10,0,936,-24,0,0 +2013,6,27,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-2,0,801,-5,0,0 +2013,7,21,7,AA,13930,Chicago O'Hare International,Chicago,IL,14843,Luis Munoz Marin International,San Juan,PR,830,8,0,1415,19,1,0 +2013,10,1,2,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-4,0,1251,1,0,0 +2013,4,13,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1135,-7,0,1653,-8,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1355,-1,0,1717,-14,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1518,19,1,1710,31,1,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-4,0,941,-10,0,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1035,0,0,1155,-4,0,0 +2013,9,4,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1100,-5,0,0 +2013,9,26,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-5,0,1420,-7,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,-5,0,2104,-8,0,0 +2013,9,5,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1517,-4,0,0 +2013,6,23,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,0,0,1039,1,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,705,-4,0,958,8,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1000,-1,0,1227,-25,0,0 +2013,5,7,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,815,1,0,1140,-14,0,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1354,20,1,1545,15,1,0 +2013,9,19,4,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-12,0,1918,-18,0,0 +2013,9,30,1,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,825,5,0,1633,8,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,0,0,812,-11,0,0 +2013,4,15,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,5,0,2010,-4,0,0 +2013,4,16,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2320,3,0,744,-17,0,0 +2013,4,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1537,-4,0,1735,-3,0,0 +2013,7,19,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-5,0,843,3,0,0 +2013,5,8,3,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1345,-10,0,1610,-36,0,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,637,-4,0,1421,5,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,755,-1,0,1225,6,0,0 +2013,7,4,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,-6,0,1514,5,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,1330,-2,0,1720,-1,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,0,0,1953,-1,0,0 +2013,7,28,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,715,-3,0,820,-17,0,0 +2013,6,23,7,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1338,-3,0,1634,-10,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1624,3,0,1906,-5,0,0 +2013,8,22,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-5,0,619,0,0,0 +2013,6,19,3,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1605,-1,0,1916,-14,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,2,0,1555,-15,0,0 +2013,6,15,6,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,821,-4,0,1033,-16,0,0 +2013,6,14,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1535,-7,0,1657,-8,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2150,-3,0,2300,-9,0,0 +2013,5,9,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1840,0,0,2049,-6,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,855,94,1,1110,93,1,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,805,19,1,1105,25,1,0 +2013,4,4,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1700,-1,0,2015,11,0,0 +2013,10,9,3,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1219,-5,0,1709,-13,0,0 +2013,5,5,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1540,-12,0,1735,-16,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1010,12,0,1200,11,0,0 +2013,5,27,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1744,-9,0,1901,-10,0,0 +2013,8,28,3,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,855,-9,0,1101,-40,0,0 +2013,9,3,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1139,-6,0,1650,-8,0,0 +2013,8,5,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2100,11,0,2320,7,0,0 +2013,8,15,4,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1120,0,,1515,0,1,1 +2013,4,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1825,6,0,1915,20,1,0 +2013,4,3,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,24,1,1850,31,1,0 +2013,7,20,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,850,-2,0,1314,-4,0,0 +2013,10,17,4,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1602,-7,0,1707,3,0,0 +2013,4,14,7,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-9,0,940,-19,0,0 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1544,-5,0,1747,-14,0,0 +2013,6,2,7,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1440,31,1,1825,10,0,0 +2013,9,10,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,655,-5,0,725,-6,0,0 +2013,4,14,7,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,-9,0,1854,-15,0,0 +2013,6,17,1,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1920,8,0,2040,18,1,0 +2013,4,9,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1820,44,1,1915,22,1,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,-6,0,1235,6,0,0 +2013,5,29,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,6,0,1850,1,0,0 +2013,4,9,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-4,0,1044,-35,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1235,26,1,1340,19,1,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,-4,0,1210,-7,0,0 +2013,10,28,1,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1716,-3,0,1803,-5,0,0 +2013,6,12,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1050,-1,0,1810,0,0,0 +2013,6,4,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1315,5,0,1440,-2,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1246,44,1,1408,38,1,0 +2013,9,2,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1140,7,0,1345,-20,0,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2100,2,0,2212,-10,0,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,15,1,2055,8,0,0 +2013,10,14,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1405,5,0,1610,-2,0,0 +2013,6,10,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1850,16,1,2020,11,0,0 +2013,6,7,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,26,1,1030,18,1,0 +2013,4,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1239,-6,0,1405,-14,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,-4,0,1200,-34,0,0 +2013,7,8,1,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1338,-1,0,1634,-31,0,0 +2013,10,17,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,745,-4,0,1016,-18,0,0 +2013,9,13,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,0,0,1403,-3,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1340,13,0,1347,9,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1415,10,0,1525,5,0,0 +2013,7,17,3,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,3,0,917,1,0,0 +2013,6,19,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,639,-4,0,935,-24,0,0 +2013,8,22,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2145,103,1,2252,106,1,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2015,4,0,2215,-8,0,0 +2013,5,13,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2142,-8,0,549,-29,0,0 +2013,9,3,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,-2,0,1400,-18,0,0 +2013,4,24,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,191,1,2240,190,1,0 +2013,7,29,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2100,0,,2341,0,1,1 +2013,10,29,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,23,1,1840,19,1,0 +2013,10,9,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1815,10,0,1925,7,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,900,40,1,1715,45,1,0 +2013,4,19,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,1,0,1204,24,1,0 +2013,4,17,3,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,930,8,0,1020,5,0,0 +2013,8,12,1,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,0,1810,4,0,0 +2013,5,20,1,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1141,-8,0,1437,-11,0,0 +2013,10,5,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1804,212,1,1928,212,1,0 +2013,7,10,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1803,15,1,2133,6,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2205,77,1,13,63,1,0 +2013,6,16,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1159,-13,0,1344,-20,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2155,42,1,55,38,1,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-1,0,1034,13,0,0 +2013,5,27,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1245,-9,0,1446,-32,0,0 +2013,5,20,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1516,9,0,1645,37,1,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1900,1,0,2320,-12,0,0 +2013,9,12,4,9E,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,655,0,0,824,5,0,0 +2013,8,25,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1345,-5,0,1520,-6,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1112,-4,0,1237,-13,0,0 +2013,6,20,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1130,-5,0,1229,-22,0,0 +2013,8,14,3,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-7,0,1925,11,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,0,0,1025,-11,0,0 +2013,9,15,7,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1014,-4,0,1224,-6,0,0 +2013,4,15,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,840,5,0,1020,-9,0,0 +2013,7,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,-6,0,2300,-8,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-5,0,1031,-16,0,0 +2013,9,17,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-10,0,1400,0,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1200,15,1,1505,20,1,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,-7,0,534,-19,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,805,1,0,940,12,0,0 +2013,6,24,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1845,5,0,2015,15,1,0 +2013,10,17,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2340,-2,0,511,-24,0,0 +2013,10,1,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1710,-2,0,1757,8,0,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1855,1,0,2120,-9,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1825,-5,0,2000,-8,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1555,68,1,1659,66,1,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1400,123,1,1653,125,1,0 +2013,8,25,7,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1115,-5,0,1240,-17,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1440,43,1,1540,41,1,0 +2013,7,1,1,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,-5,0,1055,-2,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1630,21,1,5,-21,0,0 +2013,4,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1430,0,0,1555,1,0,0 +2013,8,28,3,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1919,1,0,2110,-17,0,0 +2013,5,9,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,3,0,1137,8,0,0 +2013,5,11,6,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-7,0,1200,-11,0,0 +2013,5,29,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2140,2,0,2243,9,0,0 +2013,6,12,3,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,-1,0,1130,1,0,0 +2013,9,25,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1355,-7,0,1437,-9,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,11,0,1605,-18,0,0 +2013,4,27,6,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1450,10,0,1745,-14,0,0 +2013,5,13,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,0,0,2105,-12,0,0 +2013,6,4,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1210,-1,0,1357,-19,0,0 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2250,0,0,14,-4,0,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1215,-2,0,1930,19,1,0 +2013,10,24,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-5,0,1852,2,0,0 +2013,8,3,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,13,0,1815,27,1,0 +2013,9,26,4,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1126,-2,0,1349,-6,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1623,-5,0,1728,-12,0,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,34,1,2112,23,1,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1805,-2,0,1950,-18,0,0 +2013,9,24,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-14,0,1010,-16,0,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1504,-2,0,1719,3,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1800,10,0,2025,5,0,0 +2013,6,27,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1600,6,0,1724,54,1,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1255,3,0,1345,9,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,710,-6,0,820,-15,0,0 +2013,4,24,3,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1020,-5,0,1150,-2,0,0 +2013,7,13,6,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1635,-1,0,1938,-17,0,0 +2013,4,14,7,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2200,-7,0,2308,-15,0,0 +2013,7,19,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,84,1,2355,82,1,0 +2013,9,26,4,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,-7,0,1020,-17,0,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,5,0,1040,-16,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2145,-8,0,157,-5,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-7,0,1334,-12,0,0 +2013,6,14,5,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1655,-1,0,1950,-5,0,0 +2013,5,12,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-6,0,1939,-16,0,0 +2013,8,8,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,19,1,1623,26,1,0 +2013,8,28,3,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1629,219,1,1927,204,1,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1830,0,0,2145,20,1,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1915,157,1,2100,147,1,0 +2013,4,3,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,1,0,1810,-7,0,0 +2013,8,23,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,0,0,1735,-3,0,0 +2013,8,6,2,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1152,-8,0,1623,-22,0,0 +2013,8,27,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,640,1,0,1441,13,0,0 +2013,7,14,7,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1550,60,1,1805,37,1,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1121,-4,0,1239,-4,0,0 +2013,4,14,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,758,0,0,1405,-19,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1845,15,1,2140,-6,0,0 +2013,8,7,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,550,0,0,740,-11,0,0 +2013,9,17,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1440,-6,0,1715,-2,0,0 +2013,8,22,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,-7,0,913,27,1,0 +2013,5,25,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1048,7,0,0 +2013,10,31,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,-4,0,1121,3,0,0 +2013,9,30,1,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-10,0,1600,-4,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1240,-5,0,1445,2,0,0 +2013,9,19,4,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-1,0,1820,10,0,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,-4,0,1615,-20,0,0 +2013,8,7,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1330,13,0,1724,19,1,0 +2013,9,24,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1700,-6,0,2105,-25,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,47,1,1035,66,1,0 +2013,4,29,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1129,0,0,1410,0,0,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1223,185,1,1406,242,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,726,-5,0,904,-7,0,0 +2013,8,25,7,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-6,0,2054,-14,0,0 +2013,5,12,7,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1140,-4,0,1421,-9,0,0 +2013,9,22,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,0,0,2249,-10,0,0 +2013,7,10,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1045,0,0,1220,-11,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1200,7,0,1520,2,0,0 +2013,9,5,4,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-2,0,1805,5,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,105,1,1053,91,1,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1311,-5,0,1436,9,0,0 +2013,4,1,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1715,-1,0,1855,-14,0,0 +2013,5,7,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2015,-6,0,2139,-23,0,0 +2013,6,6,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,630,-2,0,915,22,1,0 +2013,10,3,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,-4,0,1602,4,0,0 +2013,8,27,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,14,0,1536,-11,0,0 +2013,8,8,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1925,-7,0,1959,-7,0,0 +2013,5,24,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1848,19,1,2111,1,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,600,-4,0,1420,-18,0,0 +2013,5,30,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,942,-6,0,1116,-25,0,0 +2013,5,24,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-7,0,1814,-13,0,0 +2013,5,31,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-6,0,1953,-15,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,4,0,806,4,0,0 +2013,6,14,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1641,3,0,1829,4,0,0 +2013,10,11,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1020,73,1,1150,66,1,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-2,0,1319,12,0,0 +2013,6,28,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1518,0,0,1734,-2,0,0 +2013,9,11,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1910,46,1,2215,69,1,0 +2013,8,12,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,725,1,0,910,-13,0,0 +2013,10,28,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1750,-7,0,2025,-1,0,0 +2013,5,31,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1615,3,0,1720,0,0,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2253,-4,0,715,-6,0,0 +2013,7,2,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,745,-6,0,855,-14,0,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1451,-3,0,1710,-5,0,0 +2013,9,7,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1600,-14,0,1627,-15,0,0 +2013,6,29,6,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1449,39,1,1635,29,1,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,27,1,2355,26,1,0 +2013,5,16,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1840,3,0,2049,-7,0,0 +2013,8,25,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,-5,0,543,-12,0,0 +2013,7,2,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-7,0,1625,-21,0,0 +2013,5,18,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1230,57,1,1545,51,1,0 +2013,6,16,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-3,0,1720,-5,0,0 +2013,10,6,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,910,-3,0,1346,2,0,0 +2013,6,3,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2110,-5,0,2225,-7,0,0 +2013,7,22,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,1040,-3,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,-1,0,1049,-22,0,0 +2013,5,3,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1851,2,0,2055,-21,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1515,59,1,1730,81,1,0 +2013,7,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1004,-5,0,1259,-17,0,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2010,5,0,2254,-13,0,0 +2013,9,2,1,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,844,-9,0,1651,-21,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1536,13,0,1620,9,0,0 +2013,6,2,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-4,0,1255,6,0,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2100,2,0,2229,4,0,0 +2013,9,17,2,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1855,10,0,2020,10,0,0 +2013,9,23,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,26,1,1905,18,1,0 +2013,10,23,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-2,0,2032,28,1,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,2143,53,1,2346,54,1,0 +2013,5,28,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,33,1,1805,15,1,0 +2013,6,5,3,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1000,-3,0,1145,-10,0,0 +2013,7,31,3,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,38,1,2130,56,1,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2235,-4,0,2325,-7,0,0 +2013,9,29,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1049,-10,0,1215,-16,0,0 +2013,8,6,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,0,0,2210,-46,0,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-13,0,1936,-27,0,0 +2013,6,9,7,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,-1,0,1655,-1,0,0 +2013,6,19,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1725,51,1,1845,54,1,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1125,-4,0,1309,11,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,950,2,0,1745,-29,0,0 +2013,7,23,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1006,0,0,1105,-17,0,0 +2013,8,25,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,12,0,1305,-2,0,0 +2013,10,24,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,0,0,1648,8,0,0 +2013,5,22,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,-1,0,2128,2,0,0 +2013,7,17,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,645,-5,0,1435,-15,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1205,-5,0,1325,-14,0,0 +2013,5,28,2,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,1257,-7,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1245,1,0,1613,-12,0,0 +2013,6,24,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,117,1,2016,123,1,0 +2013,4,26,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-8,0,1325,-12,0,0 +2013,8,22,4,EV,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,845,-11,0,1041,-18,0,0 +2013,9,6,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,936,-8,0,1233,-57,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1659,30,1,1825,30,1,0 +2013,7,26,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,1,0,1015,0,0,0 +2013,9,6,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,956,12,0,0 +2013,8,10,6,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1029,146,1,1220,127,1,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,630,0,0,810,-11,0,0 +2013,8,8,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,-8,0,1255,-6,0,0 +2013,7,27,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,15,1,1903,39,1,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2015,-3,0,2123,2,0,0 +2013,5,10,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,7,0,1359,5,0,0 +2013,6,17,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,0,0,1556,-1,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1648,-5,0,2128,-36,0,0 +2013,9,16,1,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,725,2,0,1325,-14,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,846,4,0,1107,-14,0,0 +2013,9,2,1,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1842,17,1,2025,5,0,0 +2013,7,2,2,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1742,-1,0,1919,-20,0,0 +2013,9,9,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2025,-5,0,2110,-9,0,0 +2013,8,22,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,90,1,1355,88,1,0 +2013,9,22,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,625,-8,0,920,-6,0,0 +2013,7,12,5,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,179,1,2350,172,1,0 +2013,6,4,2,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1204,-12,0,1345,-14,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2200,-9,0,2310,-17,0,0 +2013,7,5,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-2,0,1838,15,1,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,19,1,1445,24,1,0 +2013,6,12,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1040,-8,0,1320,-11,0,0 +2013,5,4,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1858,-4,0,2153,-37,0,0 +2013,9,23,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-6,0,1218,-8,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,21,1,2335,19,1,0 +2013,7,14,7,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1757,12,0,1848,2,0,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,-3,0,2155,-8,0,0 +2013,6,21,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1451,1,0,2333,-23,0,0 +2013,10,10,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-6,0,1017,-15,0,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,835,0,0,1025,-9,0,0 +2013,5,13,1,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,741,-6,0,1542,-2,0,0 +2013,9,28,6,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,800,-3,0,925,-3,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1955,-3,0,2340,5,0,0 +2013,9,9,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1355,-8,0,1636,9,0,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1153,-1,0,1418,-9,0,0 +2013,6,11,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1416,-14,0,0 +2013,7,10,3,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,730,2,0,745,2,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1440,-6,0,1533,-12,0,0 +2013,5,17,5,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1130,-1,0,1440,6,0,0 +2013,4,14,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1519,19,1,1534,5,0,0 +2013,6,11,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,1,0,1539,-2,0,0 +2013,9,30,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1526,-1,0,0 +2013,7,12,5,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-7,0,852,-6,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,902,-6,0,1606,-2,0,0 +2013,4,19,5,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,0,,2310,0,1,1 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1030,1,0,1133,-19,0,0 +2013,7,13,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1235,1,0,1357,2,0,0 +2013,10,7,1,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,-3,0,1215,-1,0,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2238,-11,0,652,-24,0,0 +2013,6,25,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,0,0,815,-10,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,35,1,2230,34,1,0 +2013,6,23,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-4,0,1450,-12,0,0 +2013,8,3,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,745,-1,0,1014,-8,0,0 +2013,5,30,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-1,0,753,-18,0,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,714,-5,0,1035,-17,0,0 +2013,8,19,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,815,5,0,940,2,0,0 +2013,4,16,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-4,0,2354,-20,0,0 +2013,9,24,2,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1645,-5,0,1913,-12,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1905,7,0,2200,6,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-3,0,918,-8,0,0 +2013,8,27,2,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,614,-7,0,748,-20,0,0 +2013,9,17,2,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1605,-5,0,1855,-10,0,0 +2013,6,16,7,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,7,0,930,-4,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,11,0,1823,8,0,0 +2013,7,8,1,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1721,118,1,1925,108,1,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1645,-9,0,2004,18,1,0 +2013,10,16,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,835,-3,0,1025,-33,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1035,0,0,1344,-12,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1945,28,1,2050,30,1,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,830,13,0,1050,45,1,0 +2013,5,17,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,630,20,1,840,8,0,0 +2013,7,23,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,42,1,2132,14,0,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1315,-4,0,1420,-5,0,0 +2013,8,22,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2114,24,1,2136,17,1,0 +2013,6,1,6,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,-7,0,2337,9,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1052,1,0,1223,-16,0,0 +2013,6,9,7,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1740,30,1,1850,16,1,0 +2013,9,1,7,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,18,1,717,9,0,0 +2013,10,15,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,850,-4,0,1015,-14,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2205,7,0,48,-3,0,0 +2013,7,11,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,51,1,845,53,1,0 +2013,5,1,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1550,-7,0,1835,4,0,0 +2013,7,25,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1020,0,0,1206,4,0,0 +2013,8,30,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1320,-2,0,1535,2,0,0 +2013,8,14,3,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1221,-4,0,1406,-15,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,730,-4,0,830,-11,0,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1610,0,0,16,12,0,0 +2013,7,30,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-7,0,1233,-11,0,0 +2013,8,16,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,11,0,1505,13,0,0 +2013,8,26,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,945,15,1,1046,5,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1420,2,0,1606,0,0,0 +2013,6,24,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-2,0,1824,44,1,0 +2013,10,23,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1915,4,0,2247,-1,0,0 +2013,10,12,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1058,0,0,1132,5,0,0 +2013,4,11,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1305,34,1,1610,36,1,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1125,20,1,1712,30,1,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1330,-1,0,1515,-16,0,0 +2013,6,17,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-13,0,1255,-31,0,0 +2013,7,24,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,5,0,1035,-3,0,0 +2013,7,31,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,828,-8,0,1109,-12,0,0 +2013,6,2,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,7,0,1435,3,0,0 +2013,7,14,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,0,0,1130,5,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,0,0,930,0,0,0 +2013,10,17,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-8,0,1432,5,0,0 +2013,4,16,2,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2100,95,1,520,64,1,0 +2013,7,9,2,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,935,6,0,0 +2013,9,19,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,-4,0,2117,7,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,813,6,0,1035,0,0,0 +2013,8,4,7,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,17,1,1710,10,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,700,0,0,1155,31,1,0 +2013,5,12,7,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,635,-5,0,723,-11,0,0 +2013,8,4,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,658,-6,0,921,-7,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1212,-4,0,1334,-17,0,0 +2013,9,30,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-10,0,1241,-19,0,0 +2013,6,9,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2345,-3,0,719,4,0,0 +2013,5,30,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,640,0,0,840,-8,0,0 +2013,5,4,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1255,4,0,1350,-5,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,-4,0,2200,-3,0,0 +2013,6,22,6,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2327,183,1,510,220,1,0 +2013,7,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1440,6,0,1755,-2,0,0 +2013,8,15,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1936,8,0,2312,18,1,0 +2013,7,15,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,74,1,1925,69,1,0 +2013,6,9,7,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1653,-4,0,1805,-23,0,0 +2013,10,9,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1840,26,1,2119,18,1,0 +2013,5,23,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,1,0,1310,1,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-7,0,1000,-3,0,0 +2013,7,12,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2040,-3,0,2140,7,0,0 +2013,6,4,2,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,-7,0,2029,-7,0,0 +2013,8,30,5,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,1010,6,0,1250,4,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,-3,0,2255,-18,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1335,0,0,1520,-3,0,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,118,1,2104,108,1,0 +2013,10,17,4,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1305,54,1,1601,54,1,0 +2013,5,19,7,OO,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,850,5,0,1036,2,0,0 +2013,8,30,5,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,850,-6,0,1121,-17,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,6,0,2250,16,1,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,0,0,1054,1,0,0 +2013,6,26,3,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1722,0,,2044,0,1,1 +2013,10,29,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1805,-4,0,2028,3,0,0 +2013,5,13,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1420,0,0,1550,-8,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,-5,0,2300,-23,0,0 +2013,8,7,3,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,724,19,1,830,23,1,0 +2013,6,2,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,840,-4,0,1026,-19,0,0 +2013,5,27,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1935,9,0,2328,3,0,0 +2013,8,25,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,5,0,1747,-7,0,0 +2013,9,6,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1713,-6,0,2348,-4,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,-3,0,1825,-4,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1900,3,0,2041,-12,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1415,-3,0,1640,-1,0,0 +2013,4,14,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-4,0,1115,-8,0,0 +2013,9,24,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1055,-2,0,1908,-11,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,855,2,0,1119,14,0,0 +2013,7,15,1,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,-7,0,1119,-5,0,0 +2013,10,8,2,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-6,0,2215,-2,0,0 +2013,9,28,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,34,1,1638,32,1,0 +2013,8,21,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1920,18,1,2052,11,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1455,2,0,1705,-20,0,0 +2013,4,1,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,10,0,1743,-7,0,0 +2013,8,20,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-9,0,2225,0,0,0 +2013,5,7,2,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,1100,-16,0,0 +2013,7,17,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,900,1,0,950,-13,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,620,-2,0,750,-1,0,0 +2013,6,30,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,13,0,1011,15,1,0 +2013,10,7,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,-3,0,1730,5,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2007,-8,0,2259,-51,0,0 +2013,4,10,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1927,136,1,2220,163,1,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1930,-6,0,2113,-18,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,2129,-9,0,2356,-43,0,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1755,-4,0,2027,6,0,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1315,11,0,1430,14,0,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,610,-1,0,910,-16,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,0,0,828,4,0,0 +2013,9,10,2,YV,13851,Will Rogers World,Oklahoma City,OK,12264,Washington Dulles International,Washington,DC,1041,0,,1426,0,1,1 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,17,1,1914,5,0,0 +2013,10,14,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,755,-2,0,855,-4,0,0 +2013,7,26,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1710,46,1,1830,56,1,0 +2013,10,26,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-4,0,926,-2,0,0 +2013,9,18,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,710,-3,0,950,-9,0,0 +2013,10,18,5,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,0,0,1829,-4,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,600,49,1,837,42,1,0 +2013,8,4,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-7,0,945,-12,0,0 +2013,8,16,5,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1245,0,0,1507,1,0,0 +2013,9,5,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1520,3,0,1615,-6,0,0 +2013,10,25,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,549,0,0,712,-8,0,0 +2013,7,25,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,-3,0,2125,4,0,0 +2013,5,13,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1340,-1,0,1600,-7,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,12,0,1640,-9,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-1,0,1145,-14,0,0 +2013,7,22,1,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1835,0,0,2140,-2,0,0 +2013,6,18,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1540,229,1,1741,239,1,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1227,0,0,1422,7,0,0 +2013,10,12,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,615,10,0,1442,1,0,0 +2013,10,9,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1900,-1,0,2105,-12,0,0 +2013,5,28,2,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,3,0,1630,-3,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1230,-3,0,1940,42,1,0 +2013,4,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,920,0,,940,0,1,1 +2013,9,10,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-5,0,1319,-6,0,0 +2013,10,6,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,910,-5,0,1010,-13,0,0 +2013,4,3,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,950,6,0,1210,17,1,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1310,190,1,1735,186,1,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-2,0,1045,-5,0,0 +2013,4,18,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1410,34,1,1533,27,1,0 +2013,8,24,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,11,0,1036,0,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,1,0,1245,-10,0,0 +2013,4,15,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-1,0,1209,-3,0,0 +2013,6,22,6,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1250,5,0,1425,-13,0,0 +2013,7,28,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,0,0,1445,-12,0,0 +2013,4,28,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,2030,1,0,2210,20,1,0 +2013,10,6,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1218,-12,0,1805,-13,0,0 +2013,5,31,5,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-6,0,907,-25,0,0 +2013,4,19,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-1,0,845,6,0,0 +2013,9,29,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1510,0,0,1630,13,0,0 +2013,7,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,-1,0,845,0,0,0 +2013,7,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1530,-4,0,1932,-19,0,0 +2013,5,31,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,0,0,1135,-2,0,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-1,0,1254,-8,0,0 +2013,5,16,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,615,-1,0,710,-2,0,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1715,10,0,1836,6,0,0 +2013,8,22,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,3,0,1422,3,0,0 +2013,10,1,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1310,0,0,1315,-7,0,0 +2013,9,2,1,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,358,1,1859,332,1,0 +2013,7,28,7,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1855,4,0,2045,5,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1800,4,0,2009,-14,0,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2210,5,0,2351,-4,0,0 +2013,10,29,2,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1838,-8,0,2049,-15,0,0 +2013,8,26,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1116,-4,0,1407,-12,0,0 +2013,8,29,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1255,-12,0,0 +2013,9,16,1,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,700,-4,0,1047,-27,0,0 +2013,10,10,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,7,0,1225,5,0,0 +2013,4,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2136,-4,0,2245,-6,0,0 +2013,4,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1352,21,1,1409,18,1,0 +2013,5,14,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,610,-3,0,705,-18,0,0 +2013,7,29,1,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1917,-3,0,2054,-12,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1340,-2,0,1555,2,0,0 +2013,4,12,5,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1140,9,0,1325,18,1,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1840,14,0,1945,17,1,0 +2013,7,24,3,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2051,-6,0,2358,-16,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1550,-1,0,1856,-31,0,0 +2013,8,2,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1758,0,0,1824,3,0,0 +2013,8,17,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1745,-2,0,1840,-4,0,0 +2013,4,5,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1150,-9,0,1350,-17,0,0 +2013,5,14,2,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,950,-3,0,1050,-2,0,0 +2013,4,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1502,-6,0,1555,7,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,10,0,1954,85,1,0 +2013,8,17,6,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1036,-5,0,1247,-20,0,0 +2013,8,2,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1415,6,0,1705,-9,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1837,3,0,2151,-1,0,0 +2013,7,1,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1330,-3,0,1458,2,0,0 +2013,6,25,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,380,1,1600,431,1,0 +2013,6,26,3,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1831,14,0,2358,8,0,0 +2013,7,21,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1521,-10,0,1648,-8,0,0 +2013,7,29,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,31,1,2130,23,1,0 +2013,8,20,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,-3,0,1855,-2,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2140,-2,0,10,0,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1004,5,0,1055,15,1,0 +2013,8,10,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,900,-2,0,1121,-30,0,0 +2013,5,14,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1525,-5,0,1829,3,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,59,1,1553,61,1,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1150,12,0,1255,20,1,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-7,0,2202,-13,0,0 +2013,8,30,5,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1030,-34,0,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1400,0,0,1530,2,0,0 +2013,10,16,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1346,-1,0,1755,1,0,0 +2013,10,29,2,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-4,0,1630,21,1,0 +2013,9,23,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1610,-1,0,1715,-7,0,0 +2013,6,19,3,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,12,0,1600,15,1,0 +2013,4,19,5,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,0,0,1550,-12,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-6,0,1408,-15,0,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1930,-2,0,2105,-17,0,0 +2013,10,5,6,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1750,-2,0,1945,-6,0,0 +2013,9,24,2,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1915,-9,0,2255,-30,0,0 +2013,10,22,2,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,843,-1,0,901,-14,0,0 +2013,6,28,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1240,0,0,1500,9,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,-3,0,2326,-4,0,0 +2013,4,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1210,-3,0,1611,7,0,0 +2013,9,7,6,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1400,-9,0,1602,-8,0,0 +2013,7,8,1,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-3,0,2030,-12,0,0 +2013,8,11,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,-6,0,1815,10,0,0 +2013,9,5,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1143,-1,0,1434,-11,0,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1020,-6,0,1158,-14,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2045,71,1,2310,56,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,-2,0,2203,2,0,0 +2013,6,16,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,-2,0,1730,-10,0,0 +2013,10,21,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1256,79,1,1418,84,1,0 +2013,4,14,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1937,22,1,2251,26,1,0 +2013,5,6,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1124,-4,0,1225,-17,0,0 +2013,5,22,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,3,0,900,1,0,0 +2013,7,15,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-3,0,2029,-10,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,3,0,1150,5,0,0 +2013,10,3,4,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,8,0,1902,-6,0,0 +2013,6,6,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,2,0,2005,17,1,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,6,0,1301,-10,0,0 +2013,9,14,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1750,8,0,1920,-1,0,0 +2013,9,4,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2255,-10,0,2358,-11,0,0 +2013,6,1,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1213,1,0,1400,-27,0,0 +2013,5,12,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1445,0,0,1600,-7,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,700,-1,0,805,-6,0,0 +2013,8,24,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,-7,0,1941,-6,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2040,28,1,2145,24,1,0 +2013,6,29,6,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1655,35,1,1910,2,0,0 +2013,8,16,5,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,705,6,0,755,5,0,0 +2013,7,15,1,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2255,31,1,144,23,1,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1510,-3,0,1636,-8,0,0 +2013,4,8,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1231,-8,0,1407,-14,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,635,-4,0,914,-14,0,0 +2013,6,28,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,957,-10,0,1040,0,0,0 +2013,7,16,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1300,-2,0,1325,-7,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1755,4,0,2140,1,0,0 +2013,10,24,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1622,34,1,1900,29,1,0 +2013,4,21,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,806,21,1,900,2,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1605,-3,0,1815,11,0,0 +2013,7,15,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1830,70,1,2038,90,1,0 +2013,6,18,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1015,7,0,1115,6,0,0 +2013,7,21,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-1,0,1923,5,0,0 +2013,10,25,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1325,-9,0,1438,-10,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2035,40,1,2234,47,1,0 +2013,8,24,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1105,-4,0,1216,2,0,0 +2013,7,10,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-1,0,950,-2,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,635,0,0,930,0,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1127,16,1,1332,-8,0,0 +2013,6,21,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1115,-5,0,1838,-14,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,8,0,1812,-2,0,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-4,0,1328,-13,0,0 +2013,5,4,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-5,0,1420,8,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1600,0,0,1745,0,0,0 +2013,7,4,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,-1,0,620,-11,0,0 +2013,5,20,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,731,-1,0,849,0,0,0 +2013,7,30,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,7,0,1315,11,0,0 +2013,5,6,1,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,704,-8,0,835,0,0,0 +2013,4,3,3,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,945,-14,0,1255,-23,0,0 +2013,8,16,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,-6,0,1649,-10,0,0 +2013,7,13,6,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,-5,0,2147,-7,0,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,5,0,1631,1,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-5,0,921,-4,0,0 +2013,8,19,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1455,-1,0,1743,-7,0,0 +2013,4,4,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,810,12,0,0 +2013,7,22,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1102,56,1,1227,57,1,0 +2013,8,13,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2005,7,0,2245,-10,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2130,-1,0,2255,-9,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1758,132,1,2012,104,1,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-2,0,1757,-8,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,15,1,1935,22,1,0 +2013,5,15,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,852,1,0,1035,-4,0,0 +2013,4,8,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2145,-2,0,2325,4,0,0 +2013,10,14,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,805,19,1,930,16,1,0 +2013,9,7,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,720,-4,0,1143,1,0,0 +2013,5,5,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1618,1,0,1905,-1,0,0 +2013,4,26,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1341,78,1,1646,89,1,0 +2013,10,7,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1255,28,1,1350,29,1,0 +2013,9,24,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,2,0,1535,9,0,0 +2013,7,19,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1015,11,0,1115,12,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2005,95,1,2305,94,1,0 +2013,7,1,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,-2,0,1433,19,1,0 +2013,9,22,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1625,0,0,1746,-9,0,0 +2013,10,19,6,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-10,0,1150,-25,0,0 +2013,7,26,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1200,-4,0,1310,-15,0,0 +2013,5,12,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,640,-6,0,804,-16,0,0 +2013,10,1,2,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,900,-12,0,1123,-6,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1459,14,0,1749,7,0,0 +2013,4,15,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,540,-8,0,1407,-6,0,0 +2013,9,21,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,1,0,2002,5,0,0 +2013,10,7,1,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1803,-7,0,2106,-9,0,0 +2013,7,31,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,850,-2,0,955,2,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,8,0,1505,0,0,0 +2013,8,17,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,1,0,1514,-8,0,0 +2013,10,20,7,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1535,19,1,1725,23,1,0 +2013,9,14,6,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1640,-9,0,1902,-9,0,0 +2013,9,12,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1040,3,0,1308,27,1,0 +2013,5,16,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1448,34,1,1527,30,1,0 +2013,4,9,2,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1645,29,1,1905,10,0,0 +2013,8,22,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,938,12,0,1725,29,1,0 +2013,5,20,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,515,0,0,650,-7,0,0 +2013,4,5,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1015,-4,0,1205,-10,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,900,11,0,1105,-8,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1220,-7,0,1340,-13,0,0 +2013,4,11,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,22,1,2058,58,1,0 +2013,7,12,5,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,900,1,0,1213,-6,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1715,-1,0,1940,-24,0,0 +2013,5,25,6,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,836,-7,0,1201,-18,0,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1526,28,1,1913,50,1,0 +2013,10,10,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,38,1,1315,34,1,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,610,-5,0,905,-12,0,0 +2013,10,4,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,7,0,1155,-9,0,0 +2013,5,14,2,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,2,0,1305,-1,0,0 +2013,10,15,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1735,20,1,1915,20,1,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,-5,0,1421,-6,0,0 +2013,4,24,3,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,11,0,1643,-23,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-4,0,730,3,0,0 +2013,6,25,2,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,600,4,0,1420,-13,0,0 +2013,7,16,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-3,0,1942,-8,0,0 +2013,8,15,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1915,-5,0,2140,-4,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,0,0,2211,3,0,0 +2013,9,8,7,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,820,-1,0,1612,7,0,0 +2013,8,23,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,6,0,1420,5,0,0 +2013,10,11,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,1,0,1936,1,0,0 +2013,4,19,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-8,0,1057,-7,0,0 +2013,6,26,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,55,1,1329,63,1,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1610,-2,0,24,-21,0,0 +2013,9,29,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,605,0,0,710,-9,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1830,15,1,2021,18,1,0 +2013,9,23,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1830,6,0,1950,12,0,0 +2013,8,6,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,950,15,1,1219,13,0,0 +2013,7,27,6,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,-6,0,1950,-14,0,0 +2013,9,3,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,730,-4,0,825,-5,0,0 +2013,4,10,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,545,-4,0,905,-4,0,0 +2013,6,26,3,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,1005,-1,0,1300,7,0,0 +2013,6,23,7,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,755,-2,0,1130,-11,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1455,27,1,1950,47,1,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2105,7,0,2325,2,0,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,735,-2,0,1025,-5,0,0 +2013,9,28,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1415,-3,0,1600,-18,0,0 +2013,9,22,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1622,14,0,1900,11,0,0 +2013,5,13,1,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,280,1,1845,276,1,0 +2013,8,29,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,1,0,1100,1,0,0 +2013,4,9,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1706,224,1,1720,223,1,0 +2013,9,5,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-1,0,824,11,0,0 +2013,8,29,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,1,0,717,-3,0,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,76,1,1040,79,1,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1010,10,0,1441,-8,0,0 +2013,6,8,6,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,0,0,1545,-8,0,0 +2013,7,23,2,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1724,-7,0,1935,-12,0,0 +2013,10,7,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,52,1,1820,44,1,0 +2013,7,22,1,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,0,0,745,-14,0,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-6,0,1328,-10,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1714,-4,0,2243,-24,0,0 +2013,5,24,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,49,1,1340,42,1,0 +2013,6,14,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,915,-4,0,1033,-11,0,0 +2013,7,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,825,-1,0,1100,-13,0,0 +2013,6,29,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1400,25,1,1511,18,1,0 +2013,6,5,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,925,-2,0,1215,-8,0,0 +2013,5,28,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,550,-4,0,733,-22,0,0 +2013,5,26,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1317,-14,0,1405,-29,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,30,1,2101,38,1,0 +2013,5,24,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1220,-3,0,1432,-20,0,0 +2013,4,7,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1717,-3,0,1822,-8,0,0 +2013,7,11,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1916,23,1,2214,24,1,0 +2013,5,22,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-4,0,1325,-12,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,900,-3,0,1345,-18,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-3,0,1018,3,0,0 +2013,6,4,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-6,0,800,-18,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1317,-9,0,1543,-23,0,0 +2013,10,15,2,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1140,12,0,1450,8,0,0 +2013,9,30,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,-7,0,1715,-9,0,0 +2013,8,23,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-2,0,1755,-14,0,0 +2013,10,11,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,1109,-11,0,0 +2013,10,20,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,3,0,2057,-2,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1655,-5,0,1850,-7,0,0 +2013,9,27,5,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,657,-6,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1800,-3,0,1925,-7,0,0 +2013,10,31,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1330,0,0,2153,19,1,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,810,4,0,1215,-13,0,0 +2013,9,28,6,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,850,-3,0,1220,-26,0,0 +2013,4,7,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1132,-10,0,1415,-16,0,0 +2013,7,31,3,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1745,-6,0,1911,-10,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1200,-2,0,1332,-9,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,-1,0,1110,-3,0,0 +2013,9,4,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1830,-2,0,2030,-23,0,0 +2013,9,27,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-13,0,2236,1,0,0 +2013,4,13,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1059,-2,0,1147,-3,0,0 +2013,6,29,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1123,38,1,1443,0,1,1 +2013,7,18,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,842,-6,0,0 +2013,6,12,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-15,0,1120,-15,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,23,1,1630,63,1,0 +2013,6,8,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1255,0,,1400,0,1,1 +2013,8,20,2,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2132,-1,0,2344,-8,0,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,-6,0,729,-9,0,0 +2013,7,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,0,0,932,-2,0,0 +2013,9,16,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-5,0,740,1,0,0 +2013,8,11,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,955,-19,0,0 +2013,9,14,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1110,-5,0,1425,-15,0,0 +2013,7,19,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1159,80,1,1509,81,1,0 +2013,8,9,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1448,2,0,1717,1,0,0 +2013,6,28,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-1,0,745,-6,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,1,0,1900,-4,0,0 +2013,8,20,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-2,0,1535,11,0,0 +2013,8,29,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1530,1,0,1809,-10,0,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15376,Tucson International,Tucson,AZ,1115,-6,0,1236,-29,0,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1623,-4,0,1837,-12,0,0 +2013,9,30,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-5,0,1315,-21,0,0 +2013,5,3,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1735,21,1,1855,22,1,0 +2013,7,22,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-4,0,1428,5,0,0 +2013,9,20,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-7,0,1517,3,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1045,-3,0,1310,-1,0,0 +2013,6,20,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,14,0,2055,20,1,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-5,0,2140,-20,0,0 +2013,6,30,7,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1510,0,0,1736,-9,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2015,12,0,2229,2,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1246,56,1,1409,53,1,0 +2013,7,19,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-6,0,2200,-10,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2028,8,0,2339,-15,0,0 +2013,7,2,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,-6,0,932,-12,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-4,0,2159,-12,0,0 +2013,7,1,1,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,953,-10,0,1159,-7,0,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-5,0,645,-3,0,0 +2013,6,5,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,915,-4,0,1039,0,0,0 +2013,8,12,1,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1800,-6,0,1950,-18,0,0 +2013,5,23,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,16,1,859,28,1,0 +2013,9,7,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1615,3,0,1840,-5,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1720,-4,0,2025,-10,0,0 +2013,6,13,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,33,1,820,53,1,0 +2013,7,3,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-1,0,1238,18,1,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,86,1,2053,83,1,0 +2013,5,9,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1422,142,1,1529,203,1,0 +2013,5,1,3,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1200,12,0,1453,-7,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,-5,0,1247,-10,0,0 +2013,6,16,7,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1115,0,0,1405,-5,0,0 +2013,5,23,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1105,-5,0,1359,-18,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,825,-3,0,1115,-11,0,0 +2013,4,29,1,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,700,0,0,940,-11,0,0 +2013,7,30,2,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1820,-5,0,2005,-4,0,0 +2013,9,10,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,-6,0,2245,-15,0,0 +2013,6,6,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1300,-2,0,1529,1,0,0 +2013,10,29,2,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,905,0,0,0 +2013,6,7,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-9,0,1805,-6,0,0 +2013,4,17,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-8,0,1240,-6,0,0 +2013,5,3,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1009,5,0,1203,18,1,0 +2013,7,23,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1822,0,,2020,0,1,1 +2013,5,25,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1635,13,0,1810,8,0,0 +2013,9,21,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,-3,0,2250,-17,0,0 +2013,6,9,7,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1235,11,0,1415,4,0,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1730,32,1,2050,26,1,0 +2013,4,25,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1446,7,0,1717,12,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,116,1,1605,113,1,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1330,-3,0,1446,-6,0,0 +2013,5,25,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-7,0,1230,-14,0,0 +2013,9,22,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1025,-2,0,1140,0,0,0 +2013,5,30,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1659,-2,0,2005,-25,0,0 +2013,7,8,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-7,0,2128,-5,0,0 +2013,9,4,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,835,-10,0,1000,-24,0,0 +2013,10,25,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,21,1,2115,3,0,0 +2013,8,8,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1742,-7,0,1901,-4,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1602,-1,0,1715,-2,0,0 +2013,5,6,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,-7,0,1732,-23,0,0 +2013,5,13,1,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1703,-6,0,1831,-20,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2155,-2,0,2339,-14,0,0 +2013,7,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1008,-1,0,1413,-3,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,5,0,1150,4,0,0 +2013,9,15,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2010,24,1,2120,23,1,0 +2013,10,26,6,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,0,0,2110,-10,0,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1251,-3,0,1606,-9,0,0 +2013,5,8,3,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,-5,0,2043,-10,0,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1530,-5,0,1849,-7,0,0 +2013,5,19,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,0,0,2100,-13,0,0 +2013,8,26,1,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1550,9,0,1940,0,0,0 +2013,5,20,1,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,-2,0,1301,11,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-5,0,1051,-13,0,0 +2013,8,19,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,645,-4,0,1435,-12,0,0 +2013,4,23,2,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,18,1,1805,22,1,0 +2013,6,10,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13232,Chicago Midway International,Chicago,IL,1430,13,0,2030,-2,0,0 +2013,5,16,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,625,-2,0,918,-14,0,0 +2013,7,14,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,5,0,1825,-9,0,0 +2013,5,1,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,2,0,2130,-6,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,18,1,1840,2,0,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1000,-3,0,1131,-14,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1007,-5,0,1336,-19,0,0 +2013,7,13,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1220,2,0,1405,-29,0,0 +2013,10,14,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1114,-5,0,0 +2013,6,29,6,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,913,-1,0,1031,-13,0,0 +2013,5,12,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,724,-22,0,0 +2013,8,24,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,3,0,835,-9,0,0 +2013,7,8,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,31,1,1655,31,1,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,-5,0,1913,-13,0,0 +2013,4,12,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,0,,2119,0,1,1 +2013,9,11,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1104,6,0,1210,13,0,0 +2013,6,8,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,12,0,1530,-9,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,1,0,1140,-4,0,0 +2013,4,13,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-6,0,1545,-12,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1235,16,1,1320,11,0,0 +2013,5,8,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,-7,0,1030,0,0,0 +2013,5,26,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1826,-8,0,2000,-23,0,0 +2013,10,12,6,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1838,-1,0,1941,-7,0,0 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2245,2,0,124,-3,0,0 +2013,4,24,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,-8,0,1112,-20,0,0 +2013,8,1,4,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,816,59,1,1620,100,1,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,2,0,2327,-4,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,-4,0,1600,-23,0,0 +2013,5,23,4,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-5,0,855,-16,0,0 +2013,10,30,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-1,0,600,-22,0,0 +2013,9,30,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1559,-7,0,1827,-7,0,0 +2013,7,18,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1345,-5,0,1430,-14,0,0 +2013,7,24,3,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1559,92,1,1910,114,1,0 +2013,8,8,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,5,0,815,-12,0,0 +2013,10,17,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,0,0,2037,-10,0,0 +2013,9,5,4,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1750,-5,0,1935,-20,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1115,-4,0,1305,-18,0,0 +2013,9,13,5,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,17,1,2300,26,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,7,0,1519,1,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1250,-1,0,1405,-6,0,0 +2013,8,19,1,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-4,0,711,-19,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,0,0,1555,-19,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1825,50,1,2315,17,1,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1350,13,0,1615,-10,0,0 +2013,8,7,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,753,-2,0,950,-13,0,0 +2013,4,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,2001,-7,0,2140,0,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1920,-1,0,2036,-12,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,745,-2,0,1052,-19,0,0 +2013,8,23,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,4,0,805,1,0,0 +2013,4,13,6,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,2037,-7,0,27,-15,0,0 +2013,9,29,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1710,11,0,1851,-3,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1058,-2,0,1207,-8,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,901,-3,0,1448,-16,0,0 +2013,4,28,7,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1940,105,1,2110,95,1,0 +2013,7,22,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1930,-13,0,2133,-9,0,0 +2013,4,25,4,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,1,0,705,-17,0,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1821,4,0,2125,4,0,0 +2013,6,15,6,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1029,0,0,1203,9,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,1,0,1905,-7,0,0 +2013,6,8,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1053,-6,0,1131,-10,0,0 +2013,4,15,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,1714,-10,0,0 +2013,4,1,1,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-7,0,828,-41,0,0 +2013,10,18,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,23,1,1120,17,1,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,35,1,1645,12,0,0 +2013,9,23,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-1,0,802,-4,0,0 +2013,7,22,1,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,555,-4,0,852,15,1,0 +2013,6,2,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-6,0,1409,-9,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,-8,0,900,-9,0,0 +2013,5,17,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1050,-5,0,1359,-13,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,820,-2,0,1155,-14,0,0 +2013,7,20,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1855,2,0,1945,-4,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2015,-8,0,2122,-13,0,0 +2013,4,3,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,915,-1,0,1316,-31,0,0 +2013,8,3,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2240,8,0,634,-19,0,0 +2013,10,6,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,935,-2,0,1032,-20,0,0 +2013,5,11,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1635,-5,0,1735,-8,0,0 +2013,4,4,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,655,1,0,935,5,0,0 +2013,5,28,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,-3,0,2315,-18,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,850,-4,0,1314,-12,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1010,1,0,1120,5,0,0 +2013,9,9,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1005,0,0,1237,9,0,0 +2013,9,21,6,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1730,-5,0,1955,7,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1256,9,0,1512,6,0,0 +2013,6,3,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,40,-7,0,853,-14,0,0 +2013,9,4,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1853,-11,0,2053,-12,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1419,68,1,2246,58,1,0 +2013,8,20,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-2,0,1434,3,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1325,33,1,1430,25,1,0 +2013,9,14,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,900,2,0,1015,-10,0,0 +2013,10,26,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,0,0,1650,0,0,0 +2013,10,23,3,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1850,11,0,2225,-18,0,0 +2013,8,21,3,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,920,-1,0,1200,-10,0,0 +2013,7,14,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1525,11,0,1713,16,1,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,38,1,2050,30,1,0 +2013,4,26,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1642,88,1,2110,60,1,0 +2013,5,4,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-6,0,1909,-3,0,0 +2013,4,15,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,-5,0,1005,-3,0,0 +2013,8,5,1,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1310,-1,0,1610,3,0,0 +2013,9,7,6,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-10,0,1602,-19,0,0 +2013,8,10,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1727,-5,0,1838,-11,0,0 +2013,4,8,1,YV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2157,-6,0,2307,-16,0,0 +2013,9,27,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1741,0,0,2017,-9,0,0 +2013,6,29,6,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1855,9,0,2215,9,0,0 +2013,4,17,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,6,0,1000,-7,0,0 +2013,6,20,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,950,-3,0,1050,-11,0,0 +2013,7,6,6,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-5,0,1750,-17,0,0 +2013,5,23,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1750,12,0,1815,6,0,0 +2013,5,3,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,710,-17,0,1540,-21,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1905,30,1,2120,36,1,0 +2013,7,28,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,933,46,1,1221,54,1,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1132,-2,0,1246,-3,0,0 +2013,5,20,1,YV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1603,61,1,1730,57,1,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,19,1,1715,6,0,0 +2013,8,11,7,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,630,-7,0,900,-4,0,0 +2013,6,26,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-7,0,1115,-20,0,0 +2013,10,4,5,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,610,-2,0,743,11,0,0 +2013,10,24,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-10,0,1327,-9,0,0 +2013,8,21,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-3,0,1810,-12,0,0 +2013,6,9,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1210,3,0,1310,-8,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1340,-2,0,1403,-2,0,0 +2013,10,11,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,-4,0,825,-15,0,0 +2013,8,16,5,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2216,-3,0,630,-13,0,0 +2013,6,28,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2250,7,0,2357,4,0,0 +2013,8,31,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,48,1,1805,21,1,0 +2013,6,26,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,800,3,0,950,-2,0,0 +2013,6,6,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,168,1,901,174,1,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1140,23,1,1330,-4,0,0 +2013,5,10,5,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2040,-5,0,2300,-8,0,0 +2013,4,26,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1430,-6,0,1535,-10,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,950,8,0,1115,8,0,0 +2013,6,9,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1025,-3,0,1205,-13,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-5,0,936,-5,0,0 +2013,5,18,6,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1705,1,0,1830,-15,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-1,0,1425,-7,0,0 +2013,7,17,3,AA,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,30,-1,0,835,-2,0,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1035,12,0,1255,4,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,-4,0,1638,7,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1950,-2,0,32,14,0,0 +2013,4,29,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-9,0,1011,-4,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1615,1,0,1935,-4,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,1415,-1,0,2135,9,0,0 +2013,9,9,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,645,7,0,1235,17,1,0 +2013,5,2,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1330,-7,0,1440,-11,0,0 +2013,9,19,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-5,0,1840,-15,0,0 +2013,4,5,5,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,2020,0,0,2140,-9,0,0 +2013,4,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2040,-13,0,2307,-41,0,0 +2013,7,18,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,1,0,1107,-1,0,0 +2013,5,16,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-7,0,753,-14,0,0 +2013,5,24,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1108,22,1,1310,18,1,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1755,-8,0,2143,-28,0,0 +2013,7,12,5,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1830,145,1,2005,155,1,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2004,7,0,2126,1,0,0 +2013,5,7,2,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1100,-5,0,1250,-18,0,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2130,-3,0,2250,-8,0,0 +2013,7,29,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,2,0,1137,11,0,0 +2013,10,7,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,940,1,0,1514,-6,0,0 +2013,4,9,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2318,9,0,515,23,1,0 +2013,8,5,1,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,600,-8,0,745,-16,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,842,-3,0,1016,-16,0,0 +2013,7,14,7,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1251,0,0,1425,-8,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1547,76,1,2029,40,1,0 +2013,4,14,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-6,0,1455,6,0,0 +2013,6,23,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,855,103,1,948,96,1,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,910,-1,0,1320,-8,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2020,-1,0,2202,-14,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,4,0,1636,-14,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2229,106,1,424,109,1,0 +2013,6,9,7,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,8,0,920,4,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1925,-3,0,2250,-19,0,0 +2013,4,25,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,645,-3,0,0 +2013,9,29,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1405,2,0,1510,1,0,0 +2013,4,5,5,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,2036,-1,0,2255,8,0,0 +2013,10,13,7,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,810,0,0,1259,-8,0,0 +2013,6,1,6,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,80,1,1110,94,1,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1725,28,1,1855,28,1,0 +2013,8,12,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,11,0,1615,47,1,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1758,13,0,2044,7,0,0 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1310,20,1,1430,32,1,0 +2013,6,29,6,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2310,15,1,730,27,1,0 +2013,7,22,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-5,0,905,-18,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1930,8,0,5,8,0,0 +2013,5,21,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,1007,9,0,0 +2013,5,7,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1520,-4,0,1647,-9,0,0 +2013,6,22,6,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1339,-6,0,1458,-11,0,0 +2013,6,4,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1616,4,0,1903,0,0,0 +2013,6,24,1,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,925,-6,0,1210,-9,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1147,90,1,1454,80,1,0 +2013,10,14,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,0,0,855,-4,0,0 +2013,9,22,7,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-7,0,1254,-15,0,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,20,1,1555,16,1,0 +2013,4,18,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1651,7,0,1725,8,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,945,3,0,1040,8,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,6,0,2328,-16,0,0 +2013,8,2,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1115,6,0,1359,10,0,0 +2013,6,22,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-3,0,2036,-5,0,0 +2013,6,20,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,615,-7,0,740,-10,0,0 +2013,5,24,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,54,1,1535,63,1,0 +2013,7,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,729,-6,0,1009,-4,0,0 +2013,9,26,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-12,0,2135,-16,0,0 +2013,4,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1900,5,0,2125,3,0,0 +2013,8,27,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1117,2,0,1154,-3,0,0 +2013,4,11,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1015,14,0,1325,2,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1135,-2,0,1340,-1,0,0 +2013,10,21,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1211,-4,0,1341,-8,0,0 +2013,8,2,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,822,-3,0,1110,3,0,0 +2013,8,21,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,63,1,1100,47,1,0 +2013,9,2,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1320,12,0,1440,6,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,64,1,2255,64,1,0 +2013,5,12,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-6,0,626,-18,0,0 +2013,5,30,4,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,33,1,2208,21,1,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1718,74,1,1852,55,1,0 +2013,6,2,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,1,0,2140,29,1,0 +2013,5,30,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1408,-25,0,0 +2013,10,7,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,2,0,1020,-20,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1757,0,0,2013,1,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1440,9,0,1850,-15,0,0 +2013,6,12,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,5,0,2300,-1,0,0 +2013,5,4,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-4,0,1135,-7,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1956,8,0,2011,-1,0,0 +2013,4,1,1,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-9,0,1510,-12,0,0 +2013,6,14,5,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,1545,2,0,1935,-6,0,0 +2013,8,19,1,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-7,0,917,-12,0,0 +2013,4,4,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1330,7,0,1635,-3,0,0 +2013,10,3,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,13,0,1840,8,0,0 +2013,5,9,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1945,0,0,2145,7,0,0 +2013,8,10,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,816,-6,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,2000,-3,0,35,-1,0,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1046,-3,0,1630,-24,0,0 +2013,8,20,2,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2338,-7,0,717,16,1,0 +2013,9,23,1,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-8,0,1025,-39,0,0 +2013,7,9,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1157,16,1,2023,34,1,0 +2013,6,13,4,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,645,401,1,850,391,1,0 +2013,10,22,2,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1815,-4,0,2040,-27,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,82,1,2335,95,1,0 +2013,10,23,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2017,21,1,2320,8,0,0 +2013,6,14,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1815,10,0,2110,7,0,0 +2013,8,3,6,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-4,0,1019,-2,0,0 +2013,8,22,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1810,78,1,2100,98,1,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,-1,0,2354,-12,0,0 +2013,8,4,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-6,0,1315,-18,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,18,1,2105,5,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-5,0,1038,-11,0,0 +2013,8,21,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,0,1303,7,0,0 +2013,8,11,7,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1015,-2,0,1200,-7,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1558,133,1,1927,120,1,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-4,0,2154,8,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-2,0,1629,-13,0,0 +2013,7,17,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-4,0,1446,-16,0,0 +2013,5,12,7,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,819,-3,0,1029,-2,0,0 +2013,8,12,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1630,-7,0,1800,-13,0,0 +2013,4,2,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,850,-7,0,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2025,50,1,2210,47,1,0 +2013,8,21,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1721,5,0,1825,-6,0,0 +2013,9,3,2,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,703,-3,0,850,12,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,935,99,1,1055,118,1,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2125,16,1,2230,18,1,0 +2013,10,13,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1441,-4,0,1647,-25,0,0 +2013,4,2,2,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1108,-6,0,1235,-14,0,0 +2013,8,22,4,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1350,26,1,1625,27,1,0 +2013,7,10,3,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,2055,130,1,2324,109,1,0 +2013,6,27,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,855,-6,0,1105,-14,0,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,950,0,0,1115,4,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1426,-4,0,1622,3,0,0 +2013,4,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1815,10,0,2125,14,0,0 +2013,4,29,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-10,0,1447,-10,0,0 +2013,6,21,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1035,11,0,1155,6,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,940,-1,0,1127,-2,0,0 +2013,8,1,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-5,0,916,-21,0,0 +2013,9,13,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,605,-3,0,710,-4,0,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1603,-4,0,13,2,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1040,27,1,1410,30,1,0 +2013,7,14,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-1,0,1315,5,0,0 +2013,10,16,3,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1540,5,0,2110,-15,0,0 +2013,5,22,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,700,-4,0,810,-4,0,0 +2013,4,1,1,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-5,0,1205,4,0,0 +2013,9,15,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,-5,0,1202,-16,0,0 +2013,8,13,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1925,11,0,2045,6,0,0 +2013,7,12,5,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1820,10,0,2005,13,0,0 +2013,10,9,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1809,-5,0,1931,-10,0,0 +2013,6,10,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1026,-5,0,1306,-30,0,0 +2013,6,15,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,915,0,0,1505,3,0,0 +2013,6,14,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,-1,0,1252,-6,0,0 +2013,4,26,5,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,-6,0,618,-12,0,0 +2013,10,10,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,0,0,1634,-11,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,800,-5,0,1055,-13,0,0 +2013,5,29,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,751,-9,0,1042,-14,0,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,5,0,1120,-2,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1110,-2,0,1239,-8,0,0 +2013,9,27,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,71,1,1035,63,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1615,-3,0,1710,-12,0,0 +2013,9,15,7,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,-3,0,1848,-24,0,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-2,0,1038,-7,0,0 +2013,4,9,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-4,0,1202,4,0,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1220,-6,0,1445,-1,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1545,35,1,1840,47,1,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,-5,0,1532,-7,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2005,9,0,2255,4,0,0 +2013,7,18,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,900,2,0,950,-15,0,0 +2013,9,3,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1635,33,1,1800,31,1,0 +2013,5,31,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-16,0,1955,-31,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1755,5,0,1953,0,0,0 +2013,5,9,4,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-4,0,1820,-5,0,0 +2013,9,11,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-10,0,905,-24,0,0 +2013,7,17,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,25,1,1535,-4,0,0 +2013,4,4,4,OO,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-8,0,1556,-6,0,0 +2013,4,26,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1250,0,0,1623,7,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1835,22,1,2115,17,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1312,7,0,1410,-4,0,0 +2013,10,21,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1835,-5,0,2005,-14,0,0 +2013,7,3,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,2150,-3,0,2305,-11,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1851,-8,0,1950,-16,0,0 +2013,5,1,3,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,948,-5,0,1230,-10,0,0 +2013,9,27,5,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-5,0,1617,-7,0,0 +2013,10,24,4,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,50,1,2138,64,1,0 +2013,9,3,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1125,-4,0,1223,-1,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,1,0,1234,15,1,0 +2013,7,26,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-6,0,809,-5,0,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2105,15,1,2225,2,0,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,8,0,1725,-7,0,0 +2013,4,14,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,-1,0,930,-3,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1945,19,1,2239,17,1,0 +2013,5,24,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,176,1,2016,170,1,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1726,3,0,1737,-12,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,61,1,2105,58,1,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,-5,0,1453,-17,0,0 +2013,5,15,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-5,0,806,-26,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,0,0,1305,-11,0,0 +2013,9,15,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1248,-6,0,2101,-7,0,0 +2013,10,10,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1113,1,0,1200,0,0,0 +2013,4,11,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1205,60,1,1310,62,1,0 +2013,5,7,2,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,2035,-2,0,2205,-11,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,845,-5,0,1349,-22,0,0 +2013,9,12,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,252,1,2113,237,1,0 +2013,8,5,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1712,19,1,1733,12,0,0 +2013,7,13,6,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1300,9,0,1510,4,0,0 +2013,6,14,5,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,820,218,1,1624,227,1,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1205,-5,0,1610,-14,0,0 +2013,5,7,2,WN,10529,Bradley International,Hartford,CT,14635,Southwest Florida International,Fort Myers,FL,1040,-4,0,1345,-13,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1110,6,0,1550,6,0,0 +2013,6,10,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-3,0,1535,-7,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,20,1,2122,10,0,0 +2013,5,27,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1255,2,0,1430,-3,0,0 +2013,5,10,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,935,-6,0,1020,-4,0,0 +2013,10,31,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,9,0,1544,-2,0,0 +2013,9,26,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2050,17,1,2203,25,1,0 +2013,7,23,2,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,845,-3,0,1410,-24,0,0 +2013,6,17,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-3,0,1341,-2,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-8,0,1438,-18,0,0 +2013,10,28,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,900,21,1,1130,21,1,0 +2013,5,5,7,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,805,-7,0,1115,-5,0,0 +2013,5,11,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,925,-4,0,1030,-24,0,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,807,0,0,1107,-7,0,0 +2013,6,13,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1531,-3,0,1740,25,1,0 +2013,8,16,5,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1005,8,0,1245,3,0,0 +2013,6,26,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1540,47,1,1937,50,1,0 +2013,7,11,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2258,43,1,44,26,1,0 +2013,9,26,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,-5,0,2255,-25,0,0 +2013,4,23,2,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1655,17,1,1831,24,1,0 +2013,8,9,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1231,0,0,1505,1,0,0 +2013,10,19,6,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1605,20,1,2025,14,0,0 +2013,6,22,6,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1610,44,1,1955,38,1,0 +2013,6,3,1,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-3,0,1523,-8,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1550,62,1,2035,64,1,0 +2013,5,27,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1315,-4,0,1523,-5,0,0 +2013,4,16,2,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,740,-10,0,1526,-18,0,0 +2013,5,8,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,725,-5,0,1045,-6,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,715,-3,0,930,-4,0,0 +2013,8,3,6,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1725,-7,0,1838,-11,0,0 +2013,6,11,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,-8,0,1742,-12,0,0 +2013,9,2,1,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1344,100,1,1519,95,1,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1235,-9,0,1330,-17,0,0 +2013,5,8,3,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,17,1,2031,21,1,0 +2013,10,28,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-7,0,2055,-19,0,0 +2013,6,25,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,109,1,909,113,1,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1125,18,1,1335,13,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,625,0,0,900,1,0,0 +2013,9,13,5,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1100,104,1,1459,109,1,0 +2013,10,18,5,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1645,16,1,1800,11,0,0 +2013,7,1,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1116,-6,0,1151,-8,0,0 +2013,4,19,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1925,2,0,2254,-3,0,0 +2013,10,28,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,945,-2,0,1015,23,1,0 +2013,7,12,5,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1312,-24,0,0 +2013,10,27,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1429,-6,0,1450,-6,0,0 +2013,9,4,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,741,-23,0,0 +2013,7,27,6,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1225,-6,0,1818,-6,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1240,181,1,1350,200,1,0 +2013,7,4,4,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,-3,0,1845,-25,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1640,254,1,1843,224,1,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,7,0,1745,2,0,0 +2013,6,22,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1545,5,0,1710,8,0,0 +2013,5,22,3,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1025,-2,0,1245,4,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1702,1,0,2242,-9,0,0 +2013,9,26,4,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1627,0,0,2002,-15,0,0 +2013,9,22,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-5,0,1220,-9,0,0 +2013,9,8,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,935,-5,0,1124,-6,0,0 +2013,10,9,3,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1230,-8,0,1415,-4,0,0 +2013,7,11,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1740,-1,0,2202,15,1,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,700,-4,0,848,0,0,0 +2013,5,21,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1825,24,1,1925,11,0,0 +2013,9,27,5,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,720,-5,0,939,-19,0,0 +2013,9,1,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1905,10,0,1950,0,0,0 +2013,7,14,7,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,9,0,1826,-3,0,0 +2013,6,24,1,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,-2,0,1630,13,0,0 +2013,7,9,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,6,0,1434,5,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2145,-3,0,11,-18,0,0 +2013,4,28,7,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1821,17,1,2000,0,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,-4,0,2042,-17,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1920,18,1,25,13,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1655,56,1,1750,53,1,0 +2013,9,19,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,700,-4,0,937,-1,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,10,0,2130,21,1,0 +2013,4,13,6,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1645,-3,0,1835,-26,0,0 +2013,5,6,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,1,0,1330,0,0,0 +2013,10,11,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1105,30,1,1355,16,1,0 +2013,10,19,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1440,19,1,1545,19,1,0 +2013,4,25,4,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1430,22,1,1800,16,1,0 +2013,6,10,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,0,0,1345,-3,0,0 +2013,8,13,2,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,-1,0,815,5,0,0 +2013,5,25,6,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1300,-5,0,1535,-5,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1921,38,1,2019,26,1,0 +2013,5,3,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1220,178,1,1251,173,1,0 +2013,4,3,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1702,1,0,1823,9,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1415,50,1,1525,47,1,0 +2013,7,4,4,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-2,0,1012,2,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1830,2,0,2026,-18,0,0 +2013,5,9,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,720,5,0,928,-15,0,0 +2013,7,11,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1932,43,1,2200,32,1,0 +2013,8,15,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1530,3,0,1713,-7,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,24,1,2215,21,1,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1515,150,1,1715,211,1,0 +2013,8,4,7,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,959,38,1,1315,32,1,0 +2013,8,8,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,2,0,1400,0,0,0 +2013,6,3,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,5,0,1305,3,0,0 +2013,4,8,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,924,-3,0,1044,-5,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,-5,0,1644,-1,0,0 +2013,10,1,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2000,-1,0,2135,0,0,0 +2013,7,16,2,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1830,-10,0,2015,-31,0,0 +2013,6,17,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,30,1,1314,-4,0,0 +2013,10,7,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,0,0,1111,-5,0,0 +2013,5,4,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-6,0,1229,-1,0,0 +2013,8,10,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,751,7,0,1008,0,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1838,11,0,2055,9,0,0 +2013,4,1,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1740,15,1,1900,7,0,0 +2013,6,12,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,61,1,2210,38,1,0 +2013,9,13,5,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-14,0,1622,-19,0,0 +2013,6,5,3,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,14,0,2213,8,0,0 +2013,5,23,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,43,1,1542,56,1,0 +2013,9,20,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1435,-6,0,1559,-15,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,600,-3,0,805,-2,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1115,-1,0,1256,-10,0,0 +2013,6,7,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1859,-12,0,2210,-1,0,0 +2013,7,1,1,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,17,1,1210,-4,0,0 +2013,10,21,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1340,16,1,1545,11,0,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,6,0,2005,-1,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,720,-2,0,900,-13,0,0 +2013,7,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1120,67,1,1350,61,1,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,3,0,1930,-2,0,0 +2013,5,3,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,-5,0,2043,-5,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,3,0,1145,-3,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,955,1,0,1144,2,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,2009,-5,0,2102,-10,0,0 +2013,8,6,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,635,10,0,725,-4,0,0 +2013,8,23,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,-3,0,1659,-14,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1220,11,0,1335,7,0,0 +2013,8,4,7,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,704,-3,0,934,-21,0,0 +2013,6,12,3,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1007,-7,0,1108,-20,0,0 +2013,5,12,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1310,-1,0,1432,-5,0,0 +2013,9,14,6,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,-5,0,1705,-9,0,0 +2013,4,18,4,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,18,1,1230,31,1,0 +2013,10,14,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,820,-5,0,1145,-25,0,0 +2013,6,3,1,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,-1,0,1950,4,0,0 +2013,8,3,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1836,60,1,2030,57,1,0 +2013,7,15,1,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-14,0,648,-31,0,0 +2013,9,18,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,-5,0,1925,-19,0,0 +2013,8,12,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-7,0,1955,-14,0,0 +2013,9,26,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1715,-11,0,1923,-11,0,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,950,17,1,1130,18,1,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2055,-4,0,2325,-18,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,739,-4,0,1329,-18,0,0 +2013,8,7,3,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-6,0,2200,-20,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-2,0,2337,-8,0,0 +2013,8,25,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,0,0,1810,-7,0,0 +2013,10,18,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1619,4,0,1939,-17,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,-4,0,2146,3,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1820,-2,0,2020,-2,0,0 +2013,10,15,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,1020,-11,0,0 +2013,9,3,2,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1315,0,0,1426,-16,0,0 +2013,9,22,7,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2120,28,1,555,2,0,0 +2013,4,16,2,DL,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,800,-4,0,1052,-9,0,0 +2013,5,12,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,-4,0,1155,-15,0,0 +2013,7,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2304,-2,0,2359,-3,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1053,-18,0,0 +2013,9,11,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,0,0,751,-3,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,14057,Portland International,Portland,OR,1825,0,0,2051,-8,0,0 +2013,5,16,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,0,,805,0,1,1 +2013,4,1,1,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1935,100,1,2104,72,1,0 +2013,5,22,3,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-3,0,2039,6,0,0 +2013,9,21,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1205,-5,0,1451,-19,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,77,1,1044,54,1,0 +2013,6,5,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-4,0,635,-12,0,0 +2013,8,27,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1316,-6,0,1514,-17,0,0 +2013,8,27,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1830,1,0,1950,5,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1021,1,0,1200,0,0,0 +2013,6,9,7,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1653,138,1,1829,148,1,0 +2013,4,5,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,1,0,1130,1,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,14,0,1620,13,0,0 +2013,8,17,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1809,-3,0,2144,-14,0,0 +2013,6,12,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-4,0,1309,-27,0,0 +2013,6,21,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,600,-1,0,915,5,0,0 +2013,5,9,4,EV,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1400,125,1,1907,133,1,0 +2013,9,27,5,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1700,0,0,1820,-6,0,0 +2013,8,9,5,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1647,75,1,1735,78,1,0 +2013,4,8,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1030,15,1,1205,14,0,0 +2013,5,12,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,6,0,1410,-2,0,0 +2013,4,11,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,610,-8,0,847,-23,0,0 +2013,6,19,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,111,1,1545,128,1,0 +2013,5,1,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1015,-7,0,0 +2013,10,22,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,-1,0,1303,-19,0,0 +2013,6,18,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1640,7,0,2147,-8,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2030,1,0,10,-1,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,-4,0,855,-8,0,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,-6,0,2337,-13,0,0 +2013,9,30,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,0,0,1733,-5,0,0 +2013,4,26,5,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1422,-5,0,1538,-12,0,0 +2013,7,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1130,88,1,1515,88,1,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1020,16,1,1215,-13,0,0 +2013,8,11,7,FL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1038,-7,0,1336,-12,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,2,0,1745,-11,0,0 +2013,4,6,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,610,4,0,830,-15,0,0 +2013,10,27,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1750,1,0,1948,-8,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1155,-1,0,1318,-7,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1155,11,0,1310,2,0,0 +2013,10,16,3,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1325,-6,0,1615,-15,0,0 +2013,9,4,3,YV,14100,Philadelphia International,Philadelphia,PA,14524,Richmond International,Richmond,VA,943,-11,0,1044,-7,0,0 +2013,4,26,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,24,1,1100,30,1,0 +2013,4,23,2,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2140,-4,0,545,-23,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1405,2,0,1500,0,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1657,-4,0,1825,-8,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1230,9,0,1508,-5,0,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,1,0,1546,32,1,0 +2013,8,22,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,7,0,1631,-4,0,0 +2013,9,8,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,845,2,0,1054,-6,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1420,6,0,1615,32,1,0 +2013,4,7,7,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,700,246,1,807,224,1,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1826,0,0,2047,-6,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1855,4,0,2240,-14,0,0 +2013,4,5,5,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1955,-16,0,2140,-24,0,0 +2013,7,28,7,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1507,43,1,1610,39,1,0 +2013,8,15,4,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1413,-7,0,1528,-23,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1525,0,0,1655,-6,0,0 +2013,9,29,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,830,-9,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,925,-3,0,1155,6,0,0 +2013,4,17,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-2,0,1633,-15,0,0 +2013,5,30,4,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1705,17,1,1825,15,1,0 +2013,4,30,2,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-5,0,1630,-2,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,20,1,921,2,0,0 +2013,9,20,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,740,-21,0,0 +2013,6,18,2,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1745,2,0,2036,2,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,78,1,2039,98,1,0 +2013,7,17,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,940,28,1,1028,20,1,0 +2013,7,22,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1937,120,1,2039,104,1,0 +2013,5,23,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,3,0,1810,27,1,0 +2013,5,23,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,16,1,1510,7,0,0 +2013,6,24,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,33,1,1555,32,1,0 +2013,4,10,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,36,1,2130,1,0,0 +2013,5,11,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1225,97,1,1350,96,1,0 +2013,10,8,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1145,-5,0,1455,-8,0,0 +2013,9,17,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1510,12,0,1556,9,0,0 +2013,9,11,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-7,0,1557,1,0,0 +2013,6,15,6,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,2,0,2139,25,1,0 +2013,7,15,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,0,,1735,0,1,1 +2013,8,18,7,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,154,1,2336,145,1,0 +2013,10,2,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,-1,0,1955,-14,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,27,1,2340,8,0,0 +2013,7,13,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,-3,0,845,-10,0,0 +2013,8,27,2,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,625,-5,0,750,-22,0,0 +2013,8,4,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,1,0,1657,-4,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,955,-3,0,1125,-7,0,0 +2013,10,1,2,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,805,-3,0,1615,-7,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1031,-3,0,1349,-28,0,0 +2013,5,28,2,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-10,0,1111,-16,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1840,-3,0,2010,-12,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1745,3,0,2024,-11,0,0 +2013,7,6,6,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,14,0,1435,10,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-2,0,1912,-11,0,0 +2013,10,30,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,-10,0,1232,-2,0,0 +2013,4,6,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-9,0,750,-21,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1055,4,0,1219,-4,0,0 +2013,10,1,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-4,0,1739,-18,0,0 +2013,5,29,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,605,-1,0,1436,-10,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1630,-1,0,1815,-2,0,0 +2013,6,5,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,9,0,2125,7,0,0 +2013,8,4,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2000,22,1,2115,-2,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1430,2,0,1709,-4,0,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,920,2,0,1125,-8,0,0 +2013,8,22,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,5,0,940,6,0,0 +2013,10,9,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,3,0,1550,-2,0,0 +2013,5,21,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1205,2,0,1500,12,0,0 +2013,7,27,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1244,15,1,1323,12,0,0 +2013,7,16,2,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,2255,-4,0,608,-3,0,0 +2013,7,5,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-2,0,710,-15,0,0 +2013,5,17,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1215,33,1,1330,27,1,0 +2013,5,8,3,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-5,0,1600,-2,0,0 +2013,8,8,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,3,0,1544,6,0,0 +2013,4,11,4,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,910,39,1,1225,29,1,0 +2013,8,3,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1533,57,1,1859,85,1,0 +2013,6,3,1,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1045,-2,0,1240,-11,0,0 +2013,10,17,4,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,710,-2,0,725,10,0,0 +2013,4,9,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1935,14,0,2030,1,0,0 +2013,8,21,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1533,99,1,1710,87,1,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,845,1,0,1015,-8,0,0 +2013,8,29,4,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1234,34,1,1541,26,1,0 +2013,10,29,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1435,2,0,1555,2,0,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,1,0,1220,-8,0,0 +2013,6,1,6,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1455,17,1,1700,40,1,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,6,0,905,4,0,0 +2013,5,4,6,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,1050,-6,0,1339,3,0,0 +2013,4,8,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,41,1,1941,34,1,0 +2013,8,22,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1630,22,1,1835,11,0,0 +2013,4,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1710,-3,0,1930,-6,0,0 +2013,7,25,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,-4,0,2045,0,0,0 +2013,5,17,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1346,-3,0,0 +2013,6,28,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1440,40,1,1555,34,1,0 +2013,6,3,1,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,2,0,1745,34,1,0 +2013,8,4,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,758,-3,0,1003,-3,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-5,0,830,-13,0,0 +2013,4,25,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-5,0,740,-11,0,0 +2013,8,15,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,36,1,1719,43,1,0 +2013,6,4,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1748,4,0,2040,-5,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,52,1,1600,36,1,0 +2013,6,25,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1008,22,1,1200,24,1,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-1,0,2100,-22,0,0 +2013,10,28,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,615,-1,0,725,-11,0,0 +2013,10,29,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1715,0,0,1825,4,0,0 +2013,9,2,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2010,133,1,2134,141,1,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-9,0,1708,-9,0,0 +2013,10,30,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-8,0,2120,-32,0,0 +2013,5,1,3,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,805,-4,0,1020,-8,0,0 +2013,9,5,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-8,0,1044,-1,0,0 +2013,10,5,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1800,32,1,2024,25,1,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1120,73,1,1655,66,1,0 +2013,7,24,3,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-2,0,715,18,1,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,845,14,0,1125,3,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1944,-2,0,2043,7,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1550,43,1,1655,38,1,0 +2013,8,15,4,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1106,-8,0,1331,-32,0,0 +2013,6,21,5,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-2,0,648,2,0,0 +2013,4,9,2,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,920,-3,0,1055,16,1,0 +2013,6,29,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1825,66,1,1930,47,1,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1755,51,1,2230,19,1,0 +2013,7,20,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,0,,2107,0,1,1 +2013,9,12,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,635,-5,0,953,-8,0,0 +2013,10,31,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1416,-7,0,1517,15,1,0 +2013,9,29,7,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,805,-2,0,1045,5,0,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1810,-4,0,1925,-14,0,0 +2013,9,6,5,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2035,-9,0,2220,-22,0,0 +2013,4,6,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1325,-9,0,1615,-15,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,-4,0,1130,-9,0,0 +2013,9,23,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,31,1,2255,33,1,0 +2013,6,21,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1142,-4,0,1424,-13,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,900,22,1,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1303,11,0,1540,2,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1655,179,1,2250,152,1,0 +2013,5,14,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,759,-4,0,1405,2,0,0 +2013,4,18,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1118,-15,0,0 +2013,5,26,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,7,0,2056,3,0,0 +2013,7,8,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,-2,0,1650,-14,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2045,86,1,2250,72,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-4,0,1013,-21,0,0 +2013,9,22,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1830,11,0,2036,4,0,0 +2013,10,10,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1224,9,0,1440,-1,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1630,17,1,1730,16,1,0 +2013,8,22,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1553,-18,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1240,-1,0,1435,19,1,0 +2013,10,25,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,16,1,2221,25,1,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-2,0,1725,-5,0,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1630,56,1,1744,58,1,0 +2013,9,19,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1200,-1,0,1217,33,1,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,7,0,2159,-10,0,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,845,-7,0,1159,-7,0,0 +2013,5,23,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2015,85,1,2110,81,1,0 +2013,6,27,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2045,0,0,2330,1,0,0 +2013,10,30,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1215,2,0,1345,-7,0,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1735,24,1,1900,17,1,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1330,5,0,1440,15,1,0 +2013,10,1,2,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1352,-10,0,1504,-14,0,0 +2013,10,23,3,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,832,-10,0,1000,-23,0,0 +2013,5,9,4,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1300,3,0,2146,-22,0,0 +2013,5,11,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,751,-4,0,1043,-16,0,0 +2013,6,10,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2055,19,1,2239,2,0,0 +2013,4,1,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,600,-4,0,708,0,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,0,0,1253,-8,0,0 +2013,4,23,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,-10,0,911,-17,0,0 +2013,6,17,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,810,5,0,910,-2,0,0 +2013,9,8,7,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1655,14,0,1923,10,0,0 +2013,10,19,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,940,17,1,1035,10,0,0 +2013,7,11,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,805,0,0,850,-12,0,0 +2013,9,20,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1226,116,1,1502,104,1,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-1,0,1110,-3,0,0 +2013,10,20,7,UA,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,726,-4,0,743,20,1,0 +2013,7,17,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2005,-3,0,2147,-9,0,0 +2013,5,8,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,35,1,2255,26,1,0 +2013,5,1,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1025,1,0,0 +2013,4,5,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-8,0,2129,-5,0,0 +2013,10,12,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,855,-2,0,1020,-8,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,-6,0,2025,2,0,0 +2013,7,20,6,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1445,1,0,1550,-8,0,0 +2013,6,3,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-4,0,1811,-8,0,0 +2013,4,7,7,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1610,64,1,1720,61,1,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,3,0,2348,-6,0,0 +2013,5,28,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-2,0,856,-10,0,0 +2013,4,24,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-3,0,1240,-12,0,0 +2013,10,28,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2305,0,0,635,-47,0,0 +2013,6,2,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,14,0,1835,-7,0,0 +2013,10,7,1,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1350,-3,0,1445,-10,0,0 +2013,5,10,5,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,1,0,1351,-7,0,0 +2013,7,11,4,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1650,22,1,1959,55,1,0 +2013,8,14,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1543,-3,0,1745,-12,0,0 +2013,8,28,3,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,2156,-3,0,2242,-1,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1525,0,0,1750,-26,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,819,2,0,1041,1,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,-6,0,1849,-23,0,0 +2013,4,16,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,-4,0,2100,-41,0,0 +2013,9,16,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1745,-7,0,2110,-13,0,0 +2013,9,7,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-3,0,1018,-8,0,0 +2013,8,31,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1650,-3,0,1755,-11,0,0 +2013,10,16,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1250,-8,0,1536,-5,0,0 +2013,7,26,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-1,0,1936,11,0,0 +2013,6,17,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2030,50,1,2155,43,1,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1825,40,1,2018,20,1,0 +2013,8,16,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1941,-11,0,2140,-33,0,0 +2013,10,24,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-2,0,1218,8,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,2,0,1608,-8,0,0 +2013,4,23,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,731,156,1,857,158,1,0 +2013,4,2,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1205,-2,0,1345,-7,0,0 +2013,8,30,5,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,950,-5,0,1120,-26,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1455,-5,0,1807,-12,0,0 +2013,4,12,5,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,835,2,0,941,5,0,0 +2013,10,25,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,19,1,1810,-1,0,0 +2013,5,21,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1035,3,0,1145,1,0,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,36,1,1930,27,1,0 +2013,9,16,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,930,20,1,1100,19,1,0 +2013,6,27,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1230,-4,0,1357,0,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1205,4,0,1325,-2,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1715,-8,0,1848,-18,0,0 +2013,6,8,6,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2010,47,1,2140,29,1,0 +2013,5,6,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1112,-4,0,1359,15,1,0 +2013,10,11,5,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1505,27,1,1655,14,0,0 +2013,10,17,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,545,3,0,905,-9,0,0 +2013,7,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,845,28,1,1025,16,1,0 +2013,4,2,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-2,0,1335,-11,0,0 +2013,10,17,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,12,0,1545,26,1,0 +2013,6,2,7,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2255,0,0,710,-18,0,0 +2013,10,1,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-1,0,1148,-10,0,0 +2013,5,31,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,725,-3,0,1022,-18,0,0 +2013,4,9,2,EV,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,747,0,,847,0,1,1 +2013,7,16,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1804,2,0,2029,-15,0,0 +2013,8,6,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1051,-8,0,0 +2013,9,22,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-3,0,856,-13,0,0 +2013,9,14,6,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1650,3,0,1930,-6,0,0 +2013,8,5,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-7,0,1305,-14,0,0 +2013,8,18,7,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,0,0,1040,-3,0,0 +2013,4,1,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,755,-6,0,1007,-13,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1510,-1,0,1950,-7,0,0 +2013,7,7,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-14,0,937,-21,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1215,13,0,1325,0,0,0 +2013,6,17,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-5,0,940,-8,0,0 +2013,9,16,1,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,76,1,1755,61,1,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-2,0,1004,16,1,0 +2013,5,4,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-3,0,1222,-16,0,0 +2013,4,15,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1005,-4,0,1305,-9,0,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1735,2,0,1941,-2,0,0 +2013,5,28,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,-14,0,720,-6,0,0 +2013,6,7,5,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1345,7,0,1525,5,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,730,-2,0,1223,-30,0,0 +2013,9,24,2,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1438,-8,0,1537,-13,0,0 +2013,6,6,4,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1635,-5,0,2040,-19,0,0 +2013,8,22,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1720,-5,0,2000,-2,0,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1435,5,0,1621,-21,0,0 +2013,7,15,1,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1515,98,1,1845,98,1,0 +2013,10,18,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,844,-1,0,0 +2013,10,9,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1705,11,0,2015,-10,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,0,0,2044,-12,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-2,0,1325,-3,0,0 +2013,10,27,7,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1535,5,0,1635,-8,0,0 +2013,6,13,4,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1031,-1,0,1415,-12,0,0 +2013,6,21,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,18,1,1240,19,1,0 +2013,9,9,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-3,0,2201,-3,0,0 +2013,7,24,3,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-1,0,1245,-6,0,0 +2013,10,19,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,2,0,2041,5,0,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,610,1,0,806,5,0,0 +2013,8,25,7,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,900,-6,0,1140,-8,0,0 +2013,10,8,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,725,-8,0,1019,-11,0,0 +2013,4,23,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,645,-10,0,910,-15,0,0 +2013,8,2,5,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,910,-8,0,1025,-25,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,2020,38,1,2215,44,1,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,812,0,0,1136,-1,0,0 +2013,9,1,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,2,0,1311,-4,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,0,0,1610,-5,0,0 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1040,7,0,1200,-3,0,0 +2013,8,6,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,745,-5,0,1014,-13,0,0 +2013,9,18,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1210,-2,0,1612,-10,0,0 +2013,10,11,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,55,1,1317,67,1,0 +2013,8,1,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1712,14,0,2043,-6,0,0 +2013,6,9,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,725,-5,0,905,-30,0,0 +2013,6,3,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,851,0,,1138,0,1,1 +2013,6,9,7,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,7,0,1630,-4,0,0 +2013,8,4,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1231,72,1,1331,70,1,0 +2013,8,28,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1711,-4,0,2137,1,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1401,4,0,1512,0,0,0 +2013,4,3,3,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,855,-9,0,1128,2,0,0 +2013,9,2,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1135,44,1,1225,45,1,0 +2013,6,25,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1415,-4,0,1534,-7,0,0 +2013,8,27,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-4,0,1528,-14,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1610,0,0,1751,-10,0,0 +2013,6,6,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,0,0,1350,-14,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,830,-1,0,1145,-12,0,0 +2013,6,10,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1647,-3,0,1709,-17,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,49,1,1355,110,1,0 +2013,10,28,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,1,0,1936,-6,0,0 +2013,6,9,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1150,-1,0,1250,-7,0,0 +2013,8,12,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,611,42,1,954,58,1,0 +2013,7,18,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,1122,9,0,0 +2013,10,24,4,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,747,3,0,1139,-1,0,0 +2013,5,27,1,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2010,-4,0,2230,-11,0,0 +2013,10,11,5,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-1,0,915,6,0,0 +2013,9,15,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,915,-6,0,1216,-29,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1936,69,1,2246,67,1,0 +2013,4,30,2,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2207,-10,0,2254,-17,0,0 +2013,9,27,5,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-13,0,758,-18,0,0 +2013,4,19,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1150,6,0,1240,6,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,-1,0,1845,-27,0,0 +2013,7,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2140,-5,0,2250,-7,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1505,-1,0,1654,-6,0,0 +2013,9,27,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,2,0,1640,-3,0,0 +2013,9,26,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-1,0,1506,-10,0,0 +2013,4,7,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1845,10,0,2010,5,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1030,-2,0,1240,-4,0,0 +2013,9,8,7,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2207,4,0,552,14,0,0 +2013,5,15,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,9,0,1938,35,1,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-5,0,2200,-8,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1600,3,0,1715,8,0,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1115,-6,0,1220,2,0,0 +2013,5,19,7,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1900,-2,0,2150,-13,0,0 +2013,6,1,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-6,0,1500,-26,0,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-4,0,1318,-26,0,0 +2013,9,2,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,720,-3,0,1222,-5,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,842,-5,0,1425,-4,0,0 +2013,8,23,5,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1045,-5,0,1626,-21,0,0 +2013,7,28,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1050,-3,0,0 +2013,6,1,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-5,0,1850,-13,0,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2045,30,1,2300,29,1,0 +2013,5,25,6,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1714,37,1,1850,33,1,0 +2013,7,12,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1710,9,0,1747,7,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,855,0,0,1034,-6,0,0 +2013,8,28,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1323,142,1,1519,120,1,0 +2013,8,3,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,725,0,0,750,23,1,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2301,-1,0,712,-13,0,0 +2013,8,23,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-8,0,1250,-7,0,0 +2013,8,15,4,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1650,0,0,2140,-3,0,0 +2013,6,3,1,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1515,-6,0,1740,26,1,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1010,29,1,1220,14,0,0 +2013,9,29,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,0,0,1934,-1,0,0 +2013,10,11,5,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1142,8,0,1222,6,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,815,2,0,1055,-20,0,0 +2013,10,12,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-3,0,1140,-6,0,0 +2013,7,18,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,-6,0,1155,10,0,0 +2013,4,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,820,1,0,925,-6,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-3,0,1001,-11,0,0 +2013,7,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1532,-9,0,1833,-4,0,0 +2013,5,7,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,615,-7,0,848,-14,0,0 +2013,5,30,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-2,0,1653,9,0,0 +2013,9,3,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1220,23,1,1330,28,1,0 +2013,10,7,1,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1620,65,1,1935,64,1,0 +2013,4,4,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1645,-9,0,1842,-28,0,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,920,67,1,1201,76,1,0 +2013,10,24,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1403,4,0,1700,-6,0,0 +2013,5,4,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1030,0,0,1130,-7,0,0 +2013,6,6,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1611,6,0,1828,-2,0,0 +2013,6,25,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,19,1,1530,5,0,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,2015,0,0,2145,21,1,0 +2013,8,15,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2105,17,1,2240,9,0,0 +2013,6,26,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,21,21,1,528,14,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1630,2,0,1855,-18,0,0 +2013,6,29,6,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,917,4,0,1035,-7,0,0 +2013,4,19,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,830,13,0,955,9,0,0 +2013,10,16,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1019,-3,0,1142,-6,0,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,700,-5,0,830,-3,0,0 +2013,7,1,1,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1410,0,0,2235,26,1,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-1,0,2115,-2,0,0 +2013,7,8,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1458,1,0,1944,-8,0,0 +2013,6,19,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-5,0,1940,1,0,0 +2013,6,26,3,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2153,87,1,558,101,1,0 +2013,10,28,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,6,0,1250,7,0,0 +2013,7,10,3,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-4,0,1210,4,0,0 +2013,7,25,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,919,-3,0,1100,-11,0,0 +2013,6,13,4,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-6,0,1212,-19,0,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1630,8,0,1725,12,0,0 +2013,5,7,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,717,-6,0,901,-13,0,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1111,-3,0,1153,13,0,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1950,8,0,2105,1,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1530,0,0,1727,-24,0,0 +2013,5,6,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1339,-5,0,1732,-15,0,0 +2013,8,6,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1845,29,1,1915,18,1,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1700,22,1,2130,23,1,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2030,3,0,10,-4,0,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,655,54,1,912,102,1,0 +2013,8,19,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1135,-2,0,1315,-3,0,0 +2013,4,9,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,609,-8,0,725,-29,0,0 +2013,5,27,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,0,0,2135,7,0,0 +2013,6,5,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1545,31,1,1705,29,1,0 +2013,10,27,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,750,1,0,1640,-19,0,0 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,34,1,1755,20,1,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2035,20,1,2201,21,1,0 +2013,7,28,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,59,1,1945,49,1,0 +2013,8,25,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-3,0,1120,-4,0,0 +2013,7,31,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,10,0,1532,14,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1405,-5,0,1650,-2,0,0 +2013,8,21,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,1012,-2,0,0 +2013,10,9,3,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1210,0,0,1415,-4,0,0 +2013,8,11,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,0,0,1830,-18,0,0 +2013,8,18,7,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1210,-1,0,1325,-22,0,0 +2013,5,30,4,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1818,-10,0,0 +2013,7,5,5,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,0,0,2010,-5,0,0 +2013,4,23,2,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,802,-6,0,928,-15,0,0 +2013,7,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1930,8,0,2015,4,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2040,31,1,2152,32,1,0 +2013,7,20,6,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,387,1,1931,374,1,0 +2013,5,27,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1625,-4,0,1740,-8,0,0 +2013,8,24,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,0,0,2135,-6,0,0 +2013,4,21,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1015,0,0,1130,-9,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1120,7,0,1309,-8,0,0 +2013,6,18,2,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,5,0,1410,6,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2102,4,0,2229,-11,0,0 +2013,6,11,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1055,21,1,1225,-2,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1415,5,0,1640,8,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,-1,0,1005,-9,0,0 +2013,10,28,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1052,-6,0,1440,-15,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,68,1,2244,55,1,0 +2013,9,20,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,19,1,1815,11,0,0 +2013,7,16,2,EV,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1900,-7,0,2014,-19,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1840,5,0,1945,-1,0,0 +2013,4,19,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-6,0,1752,-14,0,0 +2013,6,22,6,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,-1,0,1325,1,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,950,4,0,1715,-5,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,740,-6,0,905,1,0,0 +2013,9,1,7,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,7,0,541,5,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,728,-5,0,900,-15,0,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1132,15,1,1246,4,0,0 +2013,7,18,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,845,-8,0,1023,-6,0,0 +2013,7,7,7,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,752,-4,0,1549,8,0,0 +2013,6,9,7,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1000,0,0,1055,-9,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-1,0,951,-37,0,0 +2013,5,23,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1801,-2,0,1921,-5,0,0 +2013,9,28,6,9E,12953,LaGuardia,New York,NY,13931,Norfolk International,Norfolk,VA,1608,-10,0,1744,-27,0,0 +2013,7,18,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-1,0,1348,-8,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1403,-7,0,1554,-13,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,2,0,2255,-6,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1354,-1,0,1550,-24,0,0 +2013,8,28,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-6,0,1613,-13,0,0 +2013,7,9,2,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1119,-11,0,1442,-1,0,0 +2013,8,18,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1555,-4,0,1645,-15,0,0 +2013,6,26,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,-2,0,1155,1,0,0 +2013,5,16,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1005,-5,0,1252,-7,0,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,0,0,1550,-10,0,0 +2013,4,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1644,30,1,2025,6,0,0 +2013,5,25,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,9,0,2254,-5,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,24,1,1225,19,1,0 +2013,5,27,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1348,-8,0,1510,-14,0,0 +2013,5,3,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1320,0,,1530,0,1,1 +2013,4,3,3,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,-6,0,1900,-35,0,0 +2013,4,15,1,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-1,0,1830,0,0,0 +2013,5,14,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2245,-2,0,621,8,0,0 +2013,5,25,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1430,-5,0,1554,-11,0,0 +2013,5,3,5,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1135,4,0,1725,-4,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,811,-4,0,1034,-19,0,0 +2013,6,22,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,713,-5,0,952,-13,0,0 +2013,7,21,7,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-3,0,1635,-17,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2020,14,0,2240,7,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1340,-4,0,1505,-11,0,0 +2013,9,15,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1645,32,1,1855,67,1,0 +2013,9,10,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1547,-4,0,2129,-7,0,0 +2013,10,4,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1840,-1,0,2025,-8,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-10,0,2136,-16,0,0 +2013,6,24,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,843,-10,0,1210,-15,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-1,0,1109,-26,0,0 +2013,7,27,6,EV,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,-1,0,1643,-19,0,0 +2013,6,30,7,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,804,-1,0,924,20,1,0 +2013,8,28,3,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-8,0,1715,-11,0,0 +2013,9,13,5,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1712,0,0,1850,-19,0,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,-5,0,2329,-5,0,0 +2013,6,4,2,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1700,1,0,2035,-9,0,0 +2013,7,15,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,835,2,0,940,1,0,0 +2013,5,5,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-5,0,1912,-19,0,0 +2013,8,2,5,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-5,0,1147,-1,0,0 +2013,7,23,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1359,-5,0,1551,-7,0,0 +2013,4,4,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1150,7,0,1305,8,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1510,31,1,1950,35,1,0 +2013,6,4,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-2,0,1540,-6,0,0 +2013,9,25,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-6,0,1709,-3,0,0 +2013,5,18,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,-8,0,1140,-2,0,0 +2013,4,25,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1329,0,0,1414,-2,0,0 +2013,5,22,3,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,704,4,0,835,3,0,0 +2013,7,8,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-7,0,920,-31,0,0 +2013,6,30,7,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,4,0,2127,-5,0,0 +2013,9,15,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-1,0,2027,-19,0,0 +2013,5,13,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,-5,0,1115,-7,0,0 +2013,6,24,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,137,1,1921,131,1,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2315,14,0,702,23,1,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1010,1,0,1237,-13,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1630,2,0,1745,-1,0,0 +2013,9,1,7,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-3,0,1526,-12,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1330,3,0,1810,-7,0,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1910,12,0,2253,-4,0,0 +2013,8,28,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1548,8,0,1609,6,0,0 +2013,7,3,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,610,-8,0,730,-15,0,0 +2013,8,13,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,700,10,0,833,14,0,0 +2013,9,28,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1230,-1,0,1350,-16,0,0 +2013,7,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,36,1,2145,33,1,0 +2013,7,19,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,8,0,1758,14,0,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1940,10,0,2040,9,0,0 +2013,9,18,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,-6,0,1135,-14,0,0 +2013,7,31,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,31,1,1620,30,1,0 +2013,4,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,7,0,2049,-7,0,0 +2013,7,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-1,0,1940,2,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1605,-1,0,1714,-16,0,0 +2013,5,18,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1410,-6,0,1642,1,0,0 +2013,10,23,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1730,-8,0,2007,-12,0,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1023,-4,0,1411,-6,0,0 +2013,5,1,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-1,0,1340,-18,0,0 +2013,4,6,6,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1330,10,0,1610,-3,0,0 +2013,8,11,7,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,22,1,2145,16,1,0 +2013,9,11,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-8,0,1602,-7,0,0 +2013,7,2,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,635,0,0,735,-4,0,0 +2013,5,7,2,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,730,-1,0,1031,-15,0,0 +2013,4,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,850,2,0,0 +2013,4,11,4,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1242,-4,0,1517,13,0,0 +2013,8,7,3,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1830,-2,0,2125,-4,0,0 +2013,7,17,3,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,840,-11,0,1025,-17,0,0 +2013,7,12,5,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1412,-5,0,1658,-12,0,0 +2013,4,9,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1559,-3,0,1856,-6,0,0 +2013,9,12,4,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-2,0,905,7,0,0 +2013,5,17,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-3,0,1535,-2,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1303,49,1,1540,39,1,0 +2013,9,10,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1300,4,0,1450,-10,0,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2055,48,1,2200,48,1,0 +2013,5,1,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2155,28,1,50,29,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-1,0,920,19,1,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1510,3,0,1830,8,0,0 +2013,8,30,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,826,-18,0,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,22,1,1805,10,0,0 +2013,5,14,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,8,0,1245,1,0,0 +2013,9,29,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1215,0,0,1320,-5,0,0 +2013,6,30,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1210,-3,0,1356,6,0,0 +2013,7,22,1,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1032,41,1,1158,32,1,0 +2013,8,17,6,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2028,-1,0,2247,-28,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,805,3,0,1240,33,1,0 +2013,10,31,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1549,18,1,1634,32,1,0 +2013,5,24,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,60,1,1715,98,1,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,950,36,1,1345,13,0,0 +2013,8,13,2,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1637,8,0,1819,4,0,0 +2013,5,22,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-9,0,1305,-17,0,0 +2013,7,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,135,1,930,143,1,0 +2013,5,2,4,OO,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,610,-1,0,812,-17,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2050,-2,0,2308,-4,0,0 +2013,9,8,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,533,20,1,629,12,0,0 +2013,6,10,1,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1848,10,0,2048,8,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1620,0,0,1747,-17,0,0 +2013,8,21,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1440,-4,0,1550,-8,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,27,1,1600,13,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1940,0,0,2019,-9,0,0 +2013,10,27,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1050,12,0,1205,26,1,0 +2013,9,26,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,25,1,905,23,1,0 +2013,10,19,6,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1015,6,0,1139,-8,0,0 +2013,6,14,5,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1925,-1,0,2120,-4,0,0 +2013,6,28,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,-2,0,1825,-8,0,0 +2013,8,16,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,835,0,0,945,-7,0,0 +2013,6,20,4,WN,10693,Nashville International,Nashville,TN,14747,Seattle/Tacoma International,Seattle,WA,1225,3,0,1510,-12,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,78,1,1754,118,1,0 +2013,10,3,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,2030,41,1,2340,36,1,0 +2013,4,11,4,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,800,0,0,953,7,0,0 +2013,8,31,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,748,-11,0,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,810,-2,0,1032,-24,0,0 +2013,9,5,4,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1905,-4,0,2027,-4,0,0 +2013,7,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1330,-7,0,1447,-11,0,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1745,18,1,1919,15,1,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,0,0,1843,-12,0,0 +2013,8,10,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1330,-4,0,1715,22,1,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1430,10,0,1720,-5,0,0 +2013,7,26,5,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,-7,0,1642,-49,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,620,1,0,1225,-7,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1410,8,0,1500,-4,0,0 +2013,8,17,6,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-10,0,1355,-19,0,0 +2013,5,3,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-7,0,2140,-2,0,0 +2013,4,15,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,725,-5,0,1045,-9,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1710,2,0,1935,-8,0,0 +2013,7,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2024,0,,2330,0,1,1 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,-3,0,1310,-8,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1759,-4,0,1958,-20,0,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1450,32,1,1800,38,1,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,-7,0,1945,2,0,0 +2013,4,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,900,-2,0,1020,-8,0,0 +2013,5,31,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1530,1,0,1647,-11,0,0 +2013,10,26,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,751,5,0,0 +2013,7,4,4,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,634,-7,0,819,2,0,0 +2013,8,30,5,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,39,1,2104,21,1,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,4,0,1035,-2,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1820,185,1,2013,185,1,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1057,8,0,1339,13,0,0 +2013,9,24,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1535,-12,0,1707,-34,0,0 +2013,10,30,3,UA,15016,Lambert-St. Louis International,St. Louis,MO,14771,San Francisco International,San Francisco,CA,1925,-5,0,2144,-8,0,0 +2013,6,18,2,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1805,121,1,2045,102,1,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1405,-9,0,1658,-18,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1157,44,1,1651,42,1,0 +2013,8,10,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,1,0,2016,37,1,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,41,1,1445,27,1,0 +2013,4,7,7,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,540,-5,0,629,-7,0,0 +2013,8,16,5,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1448,36,1,1609,28,1,0 +2013,9,5,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1555,1,0,1705,-1,0,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14057,Portland International,Portland,OR,2007,-1,0,2155,-11,0,0 +2013,9,18,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,7,0,617,-2,0,0 +2013,7,31,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1000,-1,0,1100,-6,0,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2235,-5,0,2325,-9,0,0 +2013,5,24,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1452,-27,0,0 +2013,9,9,1,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,-3,0,1425,-4,0,0 +2013,6,23,7,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1135,-5,0,1253,-24,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1432,51,1,1559,44,1,0 +2013,4,4,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,730,-1,0,930,-6,0,0 +2013,8,25,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1905,-2,0,2140,-6,0,0 +2013,8,18,7,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2153,-3,0,114,-13,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2114,0,0,2254,-10,0,0 +2013,4,21,7,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,855,25,1,1233,26,1,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,-2,0,1450,-11,0,0 +2013,8,28,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,44,1,2259,33,1,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1120,-5,0,1340,-16,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1448,3,0,2106,-11,0,0 +2013,6,27,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2105,93,1,2351,106,1,0 +2013,6,4,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-9,0,2011,-10,0,0 +2013,7,27,6,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1445,-2,0,1655,-8,0,0 +2013,4,4,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,815,11,0,0 +2013,8,21,3,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,815,-5,0,1110,-24,0,0 +2013,8,16,5,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,715,-3,0,750,-19,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,16,1,1018,20,1,0 +2013,8,18,7,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1138,-7,0,1228,-12,0,0 +2013,8,27,2,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2140,-5,0,40,-43,0,0 +2013,7,16,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1740,0,0,1850,-15,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2150,0,0,2355,-1,0,0 +2013,7,22,1,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1436,270,1,1609,266,1,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1731,14,0,1835,47,1,0 +2013,6,19,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1959,8,0,2147,2,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1335,7,0,1450,-6,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1611,99,1,1822,153,1,0 +2013,8,13,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1130,-6,0,1315,-15,0,0 +2013,8,5,1,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,0,0,1125,9,0,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1920,39,1,2238,6,0,0 +2013,6,30,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,857,-6,0,0 +2013,9,14,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1015,9,0,1105,6,0,0 +2013,10,29,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1910,22,1,2030,4,0,0 +2013,10,20,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,949,-22,0,0 +2013,5,14,2,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-8,0,1258,-9,0,0 +2013,4,20,6,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1015,-10,0,1128,-21,0,0 +2013,5,19,7,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1842,9,0,2059,11,0,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,835,-7,0,1003,-23,0,0 +2013,5,19,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1844,-1,0,2008,-11,0,0 +2013,7,28,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,-5,0,1656,-8,0,0 +2013,4,11,4,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,850,35,1,1035,29,1,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1720,200,1,1829,209,1,0 +2013,5,5,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1400,0,0,1535,-29,0,0 +2013,7,31,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,0,0,825,-9,0,0 +2013,5,14,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,2011,7,0,2328,-1,0,0 +2013,6,3,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,-5,0,1430,-2,0,0 +2013,6,18,2,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-1,0,1415,-8,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,8,0,1327,8,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1510,-3,0,1944,-6,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2050,42,1,10,102,1,0 +2013,4,10,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,45,1,2355,92,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,-7,0,1420,-17,0,0 +2013,9,21,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1125,4,0,1324,2,0,0 +2013,9,15,7,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1755,7,0,2005,1,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2102,59,1,2235,51,1,0 +2013,5,7,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,720,-3,0,1117,2,0,0 +2013,5,12,7,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,198,1,1757,195,1,0 +2013,5,20,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1525,-5,0,1736,13,0,0 +2013,7,27,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-3,0,1035,3,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,-2,0,2210,-19,0,0 +2013,9,13,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1005,46,1,1236,50,1,0 +2013,4,12,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1200,70,1,1305,92,1,0 +2013,5,12,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2125,0,,2235,0,1,1 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1150,6,0,1405,-1,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,950,-2,0,1715,-4,0,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1257,-3,0,1830,-12,0,0 +2013,7,17,3,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,855,0,0,1214,-8,0,0 +2013,10,20,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,642,4,0,742,-5,0,0 +2013,8,10,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-7,0,1855,-1,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,-3,0,1738,4,0,0 +2013,9,10,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-7,0,1258,-2,0,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1220,16,1,1350,1,0,0 +2013,7,15,1,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1859,-6,0,2105,-24,0,0 +2013,7,30,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,0,0,1639,-15,0,0 +2013,6,16,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,-2,0,2046,-3,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,830,1,0,1100,-5,0,0 +2013,10,28,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-4,0,1637,2,0,0 +2013,7,25,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-4,0,1415,-1,0,0 +2013,6,23,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2120,9,0,2230,13,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,730,0,0,830,-4,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,332,1,2215,314,1,0 +2013,5,16,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1958,-1,0,2230,-7,0,0 +2013,8,20,2,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1350,18,1,1500,15,1,0 +2013,5,21,2,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1909,-6,0,2235,-36,0,0 +2013,5,24,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,255,1,1855,262,1,0 +2013,5,29,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,940,4,0,0 +2013,9,2,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-3,0,1625,11,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,18,1,1440,16,1,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,930,-4,0,1320,-22,0,0 +2013,9,28,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-1,0,1205,0,0,0 +2013,5,27,1,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-2,0,1400,-24,0,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1013,3,0,1340,-8,0,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,-5,0,1431,5,0,0 +2013,6,21,5,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1125,-11,0,1406,-12,0,0 +2013,9,23,1,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1102,-5,0,1925,1,0,0 +2013,4,11,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1831,42,1,1952,82,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1740,27,1,2110,12,0,0 +2013,9,22,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,716,7,0,1015,6,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2220,-5,0,2340,15,1,0 +2013,6,2,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1916,-5,0,1930,-11,0,0 +2013,6,14,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1125,6,0,1250,7,0,0 +2013,8,19,1,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1417,-6,0,1630,-11,0,0 +2013,6,5,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1445,2,0,1605,-7,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,850,-1,0,955,-3,0,0 +2013,5,22,3,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,710,5,0,810,-4,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,20,1,1023,34,1,0 +2013,7,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,853,26,1,1551,30,1,0 +2013,4,22,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,955,-1,0,1310,42,1,0 +2013,5,21,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,-2,0,1635,-9,0,0 +2013,4,30,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1759,-8,0,1853,-16,0,0 +2013,4,20,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,1229,-21,0,0 +2013,10,23,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1450,-11,0,0 +2013,5,29,3,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1040,-3,0,1155,-6,0,0 +2013,6,13,4,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-6,0,2147,-14,0,0 +2013,10,18,5,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-4,0,1438,-11,0,0 +2013,5,5,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1514,12,0,2056,3,0,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1805,-1,0,2015,-6,0,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1520,156,1,1820,153,1,0 +2013,6,19,3,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1830,-1,0,1925,-11,0,0 +2013,9,22,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,2,0,2031,2,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1355,81,1,1704,63,1,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,841,66,1,1108,68,1,0 +2013,5,8,3,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1328,-5,0,1531,1,0,0 +2013,4,16,2,EV,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1348,-4,0,1855,-30,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,16,1,2155,5,0,0 +2013,5,9,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1538,0,0,1856,-26,0,0 +2013,7,9,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1105,-2,0,1236,-4,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2152,-2,0,2341,-16,0,0 +2013,7,13,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-3,0,2025,-4,0,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-1,0,825,2,0,0 +2013,6,21,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1510,11,0,1825,2,0,0 +2013,10,10,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-2,0,2047,-10,0,0 +2013,4,17,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1825,40,1,2050,19,1,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1435,4,0,1558,36,1,0 +2013,9,16,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1350,27,1,1430,22,1,0 +2013,10,30,3,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1705,-9,0,2005,10,0,0 +2013,7,3,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2114,13,0,2358,12,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1015,10,0,1105,20,1,0 +2013,10,31,4,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1036,24,1,1302,7,0,0 +2013,7,7,7,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,715,152,1,914,188,1,0 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,755,2,0,1404,13,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,-8,0,2244,-11,0,0 +2013,5,10,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1045,-1,0,1834,34,1,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1030,2,0,1302,-14,0,0 +2013,5,24,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2045,9,0,2200,14,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1905,-1,0,1932,-2,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2020,23,1,2105,15,1,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1005,-5,0,1133,-18,0,0 +2013,7,8,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,923,-4,0,1105,-16,0,0 +2013,5,31,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1552,-8,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1400,6,0,1510,18,1,0 +2013,6,11,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1550,106,1,1833,119,1,0 +2013,9,23,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,-5,0,1810,-23,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,805,-5,0,1500,-25,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,-1,0,1807,-13,0,0 +2013,6,5,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-5,0,834,-9,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1620,-1,0,1738,2,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1529,26,1,1740,30,1,0 +2013,4,7,7,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1135,-4,0,1257,-17,0,0 +2013,9,4,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-8,0,1855,-10,0,0 +2013,7,6,6,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1840,26,1,2020,5,0,0 +2013,8,9,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,-3,0,1710,-9,0,0 +2013,6,10,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,940,-2,0,1050,-10,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1339,-2,0,1455,-7,0,0 +2013,5,14,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,2,0,1100,-14,0,0 +2013,4,25,4,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1020,-7,0,1249,-15,0,0 +2013,4,11,4,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,749,147,1,855,144,1,0 +2013,4,23,2,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-10,0,916,-30,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,0,0,1204,-9,0,0 +2013,6,20,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,804,8,0,1142,-6,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,929,-3,0,1129,-24,0,0 +2013,6,25,2,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2300,87,1,704,74,1,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-7,0,2345,-18,0,0 +2013,5,6,1,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-5,0,1659,4,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1405,-4,0,1655,23,1,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1655,2,0,1800,-1,0,0 +2013,4,7,7,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-8,0,2056,-23,0,0 +2013,5,23,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,823,-5,0,1000,-27,0,0 +2013,8,20,2,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2100,13,0,28,-9,0,0 +2013,4,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,714,-3,0,1108,-14,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1040,-5,0,1308,-23,0,0 +2013,10,2,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1415,27,1,2010,15,1,0 +2013,9,5,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-4,0,1337,1,0,0 +2013,10,7,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,900,-1,0,1020,0,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1420,103,1,1617,83,1,0 +2013,5,6,1,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1135,-9,0,1623,-8,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,-4,0,1145,-5,0,0 +2013,7,10,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1405,1,0,2058,-12,0,0 +2013,7,17,3,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1845,42,1,19,45,1,0 +2013,6,13,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,640,0,,702,0,1,1 +2013,10,14,1,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,4,0,2110,-21,0,0 +2013,10,14,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-4,0,1419,-13,0,0 +2013,6,9,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-12,0,1105,-17,0,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1540,163,1,1616,159,1,0 +2013,7,15,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,0,0,820,-3,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,905,13,0,1315,-4,0,0 +2013,10,12,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1615,-3,0,1715,-5,0,0 +2013,8,14,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,87,1,1934,103,1,0 +2013,7,16,2,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,-5,0,2308,-13,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1329,-3,0,1624,-48,0,0 +2013,9,11,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1305,-8,0,1625,-17,0,0 +2013,4,6,6,OO,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-2,0,822,-4,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,825,0,0,1100,0,0,0 +2013,7,8,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,835,7,0,1120,-3,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,-1,0,1915,-6,0,0 +2013,5,16,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,1,0,2110,24,1,0 +2013,5,14,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1135,0,,1233,0,1,1 +2013,4,12,5,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1955,23,1,2115,9,0,0 +2013,7,20,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1910,33,1,2105,20,1,0 +2013,10,9,3,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1045,5,0,1140,-2,0,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1505,-6,0,1820,-22,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,830,5,0,950,-8,0,0 +2013,8,9,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,951,-6,0,1223,-10,0,0 +2013,7,13,6,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1655,28,1,1823,53,1,0 +2013,9,7,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1755,39,1,1900,41,1,0 +2013,9,8,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1610,-3,0,1705,-10,0,0 +2013,7,7,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2035,-5,0,2052,-5,0,0 +2013,8,1,4,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,6,0,1425,6,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1744,16,1,2100,-2,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,-5,0,1105,-48,0,0 +2013,10,24,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1848,-2,0,2014,-9,0,0 +2013,7,3,3,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2007,56,1,2259,36,1,0 +2013,7,1,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2000,-3,0,2132,-11,0,0 +2013,5,14,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,-9,0,1358,-7,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-2,0,902,0,0,0 +2013,6,27,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,615,-7,0,850,-5,0,0 +2013,9,11,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1357,-2,0,1610,3,0,0 +2013,7,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,0,,1820,0,1,1 +2013,5,10,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-2,0,2101,-15,0,0 +2013,5,17,5,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,-3,0,1140,-9,0,0 +2013,10,15,2,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1845,-10,0,2034,-23,0,0 +2013,8,16,5,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-12,0,2149,-20,0,0 +2013,10,12,6,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,655,-1,0,800,-8,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,925,-3,0,1040,-10,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1145,56,1,1330,55,1,0 +2013,5,2,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2155,86,1,2305,79,1,0 +2013,5,18,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,815,-9,0,1030,9,0,0 +2013,5,8,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1920,2,0,2045,-6,0,0 +2013,7,29,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-3,0,1548,-7,0,0 +2013,10,17,4,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1059,20,1,1220,13,0,0 +2013,4,25,4,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1144,-5,0,1424,-1,0,0 +2013,4,11,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1109,-2,0,1315,-1,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2015,-2,0,2225,-12,0,0 +2013,6,2,7,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,955,-3,0,1215,-8,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1148,-2,0,1547,6,0,0 +2013,8,20,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1728,-9,0,1802,-9,0,0 +2013,8,6,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,28,1,2208,21,1,0 +2013,7,21,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,159,1,2230,139,1,0 +2013,6,10,1,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,0,0,1010,-2,0,0 +2013,10,2,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,19,1,1510,5,0,0 +2013,7,15,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-5,0,1405,-14,0,0 +2013,10,20,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1855,-5,0,2035,-15,0,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1900,1,0,2040,-10,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1900,-1,0,2147,-14,0,0 +2013,6,25,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1655,17,1,2005,74,1,0 +2013,9,17,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,905,0,0,935,8,0,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,552,-4,0,804,-10,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2050,-2,0,2256,-8,0,0 +2013,8,26,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1240,9,0,1340,-10,0,0 +2013,9,7,6,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,805,-2,0,1150,-15,0,0 +2013,4,21,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1601,38,1,1757,44,1,0 +2013,4,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1455,-3,0,1750,-16,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1342,19,1,1513,15,1,0 +2013,10,9,3,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,-2,0,1025,-35,0,0 +2013,5,25,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,-5,0,520,-5,0,0 +2013,5,23,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,38,1,1308,23,1,0 +2013,7,20,6,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1200,-5,0,1339,-3,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1700,51,1,2005,39,1,0 +2013,6,21,5,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1506,-6,0,1601,-3,0,0 +2013,10,10,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1327,5,0,1621,3,0,0 +2013,6,16,7,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,30,1,1351,23,1,0 +2013,8,19,1,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1359,-5,0,1556,-17,0,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,825,-1,0,950,-5,0,0 +2013,10,7,1,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1205,-1,0,1255,11,0,0 +2013,4,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,845,-2,0,1030,-11,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-1,0,923,-1,0,0 +2013,9,21,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1125,-5,0,1259,-6,0,0 +2013,5,15,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,851,0,0,1100,10,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-3,0,1653,-25,0,0 +2013,4,24,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,20,1,1300,24,1,0 +2013,10,22,2,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1105,22,1,1419,14,0,0 +2013,4,30,2,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1820,-1,0,2142,-17,0,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2012,-2,0,2357,-4,0,0 +2013,5,9,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1830,35,1,2015,36,1,0 +2013,10,3,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1945,26,1,2050,24,1,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,755,-1,0,1000,-11,0,0 +2013,7,21,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,-2,0,1505,-6,0,0 +2013,4,26,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1930,16,1,2241,16,1,0 +2013,6,12,3,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,-9,0,1205,-10,0,0 +2013,6,4,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,0,0,627,8,0,0 +2013,9,15,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-5,0,1205,-11,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,909,8,0,1032,1,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2045,-1,0,2350,-10,0,0 +2013,8,7,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,0,0,830,7,0,0 +2013,7,20,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-1,0,1505,-14,0,0 +2013,5,5,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1705,1,0,1815,-3,0,0 +2013,4,22,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-7,0,1010,4,0,0 +2013,7,2,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,805,-3,0,820,-15,0,0 +2013,5,29,3,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,-3,0,1630,-5,0,0 +2013,4,16,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,710,-2,0,905,4,0,0 +2013,5,6,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-3,0,1607,21,1,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,19,1,1005,18,1,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1310,-2,0,1453,-3,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1731,5,0,1902,-3,0,0 +2013,10,26,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1205,-4,0,1255,-6,0,0 +2013,4,13,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1655,17,1,1800,11,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2303,6,0,15,-5,0,0 +2013,7,20,6,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,840,46,1,1111,37,1,0 +2013,10,1,2,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1600,-3,0,1730,-12,0,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1405,1,0,1535,0,0,0 +2013,10,30,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2110,3,0,2347,-1,0,0 +2013,10,30,3,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-3,0,1022,-12,0,0 +2013,10,10,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,700,-5,0,946,-6,0,0 +2013,7,22,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,858,-10,0,0 +2013,4,9,2,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2120,7,0,2335,3,0,0 +2013,9,1,7,OO,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1051,-2,0,1357,4,0,0 +2013,5,20,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2040,-2,0,500,-23,0,0 +2013,4,26,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1737,-5,0,1944,-1,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,13,0,1918,15,1,0 +2013,4,28,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2020,19,1,2040,19,1,0 +2013,7,19,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-3,0,1520,8,0,0 +2013,5,16,4,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1720,0,0,2019,-5,0,0 +2013,5,19,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1600,-2,0,1846,6,0,0 +2013,5,20,1,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-5,0,1327,46,1,0 +2013,7,7,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-5,0,852,-8,0,0 +2013,9,16,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,-5,0,1355,-13,0,0 +2013,9,27,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-4,0,1300,-8,0,0 +2013,9,30,1,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,43,1,1750,33,1,0 +2013,7,19,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-4,0,2013,17,1,0 +2013,10,29,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-9,0,854,-14,0,0 +2013,10,21,1,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,855,-3,0,1115,-2,0,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-8,0,1430,-7,0,0 +2013,4,10,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,600,0,0,655,-4,0,0 +2013,5,17,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,-3,0,735,-11,0,0 +2013,4,5,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1310,-3,0,1440,-17,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2120,65,1,2310,60,1,0 +2013,9,13,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,720,2,0,840,-5,0,0 +2013,10,17,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1250,34,1,1420,37,1,0 +2013,6,4,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,850,-2,0,1002,3,0,0 +2013,9,11,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1045,0,,1220,0,1,1 +2013,8,4,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1719,7,0,1805,1,0,0 +2013,6,15,6,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1420,0,0,1735,-11,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,-2,0,1005,-9,0,0 +2013,9,9,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,700,-1,0,847,-1,0,0 +2013,8,7,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-9,0,1400,-10,0,0 +2013,6,11,2,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-6,0,1046,-10,0,0 +2013,8,12,1,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,-3,0,2139,-7,0,0 +2013,9,8,7,EV,12953,LaGuardia,New York,NY,13871,Eppley Airfield,Omaha,NE,1730,-4,0,1950,-18,0,0 +2013,4,13,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,621,0,0,727,-13,0,0 +2013,9,24,2,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,750,0,0,1025,-13,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,4,0,2056,44,1,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,804,-2,0,924,-6,0,0 +2013,4,2,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1600,-10,0,1620,-4,0,0 +2013,8,27,2,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1740,-13,0,2041,-22,0,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,0,0,900,-5,0,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,2005,-3,0,2323,-8,0,0 +2013,4,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2150,-3,0,2305,-10,0,0 +2013,9,28,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-2,0,1816,-21,0,0 +2013,8,1,4,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2145,-7,0,605,-7,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,10,0,2359,5,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1915,-1,0,2250,-3,0,0 +2013,4,4,4,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,823,-8,0,1042,-18,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,1,0,1610,0,0,0 +2013,10,20,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,2002,-3,0,2245,-3,0,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1100,-2,0,1320,-17,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1725,2,0,1953,-32,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1756,-1,0,1914,-8,0,0 +2013,6,26,3,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,0,,711,0,1,1 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1650,10,0,1750,7,0,0 +2013,8,11,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14747,Seattle/Tacoma International,Seattle,WA,833,0,0,1046,-15,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2045,-1,0,2232,-11,0,0 +2013,9,3,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,1,0,830,-19,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-3,0,2206,-13,0,0 +2013,8,8,4,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1040,8,0,1240,-2,0,0 +2013,6,10,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-4,0,1210,-7,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,-2,0,2016,-13,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,-6,0,1647,-14,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,8,0,2345,21,1,0 +2013,6,18,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,-2,0,1810,-2,0,0 +2013,9,26,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1315,49,1,1355,34,1,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-5,0,2125,-1,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1749,0,0,1911,6,0,0 +2013,7,11,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,820,-1,0,959,9,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,-10,0,2259,-1,0,0 +2013,4,27,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,755,-2,0,1055,-5,0,0 +2013,10,11,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,800,-7,0,959,9,0,0 +2013,10,15,2,B6,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,2025,-7,0,2303,-10,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1115,5,0,1815,-3,0,0 +2013,6,9,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1030,31,1,1515,18,1,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,915,2,0,1025,0,0,0 +2013,4,10,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,530,-3,0,618,-13,0,0 +2013,6,3,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,3,0,1355,9,0,0 +2013,10,8,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1320,-4,0,1340,-6,0,0 +2013,9,21,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1325,3,0,1425,3,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-4,0,2214,-18,0,0 +2013,6,14,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,740,0,0,950,-13,0,0 +2013,7,18,4,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,89,1,1046,88,1,0 +2013,8,22,4,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1550,128,1,1940,123,1,0 +2013,10,23,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-9,0,730,-14,0,0 +2013,6,30,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-4,0,1430,-7,0,0 +2013,7,10,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,7,0,1035,0,0,0 +2013,7,23,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1845,66,1,1915,84,1,0 +2013,6,15,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,0,0,754,1,0,0 +2013,10,28,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1030,34,1,1150,35,1,0 +2013,9,21,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-4,0,1517,1,0,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1415,0,0,1645,-17,0,0 +2013,6,19,3,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,10,0,1259,4,0,0 +2013,9,25,3,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1632,14,0,1800,9,0,0 +2013,5,27,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-7,0,1119,-18,0,0 +2013,9,8,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1750,-4,0,1959,-15,0,0 +2013,5,7,2,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1915,21,1,2043,11,0,0 +2013,4,11,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-1,0,1344,-5,0,0 +2013,6,7,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,0,0,1135,2,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1115,-1,0,1247,2,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2020,-1,0,2225,13,0,0 +2013,5,3,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1215,-3,0,1425,-18,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,650,12,0,1210,3,0,0 +2013,6,26,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1035,0,,1105,0,1,1 +2013,6,4,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,7,0,1914,12,0,0 +2013,5,21,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,600,-2,0,835,13,0,0 +2013,8,5,1,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1729,-13,0,1935,-24,0,0 +2013,7,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-6,0,900,-23,0,0 +2013,9,26,4,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-1,0,2050,-1,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,920,-2,0,1335,-6,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1005,32,1,1318,-6,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1415,-5,0,1616,-7,0,0 +2013,10,12,6,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1115,2,0,1235,7,0,0 +2013,5,4,6,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,-3,0,1628,-8,0,0 +2013,5,15,3,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1700,6,0,2030,52,1,0 +2013,10,15,2,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1703,-4,0,1826,-12,0,0 +2013,6,2,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,4,0,1055,0,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1640,101,1,2015,97,1,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1610,-4,0,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,2008,0,0,2359,0,0,0 +2013,8,7,3,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-10,0,1415,-10,0,0 +2013,8,12,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-7,0,935,-12,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1705,-1,0,2045,-20,0,0 +2013,9,1,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1502,-19,0,1614,-31,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1840,0,0,2111,9,0,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-2,0,1058,-2,0,0 +2013,4,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,6,0,2011,4,0,0 +2013,4,14,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1400,-4,0,1525,8,0,0 +2013,7,30,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-5,0,905,-11,0,0 +2013,10,17,4,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,625,-1,0,940,2,0,0 +2013,4,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,645,-6,0,950,-28,0,0 +2013,10,18,5,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1048,-2,0,1345,-13,0,0 +2013,7,26,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1436,16,1,1610,58,1,0 +2013,6,25,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-4,0,1817,-20,0,0 +2013,6,29,6,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1730,36,1,2311,19,1,0 +2013,7,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1220,1,0,1820,7,0,0 +2013,4,25,4,EV,13244,Memphis International,Memphis,TN,13871,Eppley Airfield,Omaha,NE,842,-7,0,1032,2,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1030,2,0,1300,-14,0,0 +2013,10,28,1,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,700,80,1,1225,69,1,0 +2013,7,21,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2055,109,1,2250,103,1,0 +2013,4,12,5,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1910,53,1,2132,35,1,0 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2145,-2,0,2325,-7,0,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,655,-4,0,1040,-9,0,0 +2013,8,15,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1655,-3,0,1800,-2,0,0 +2013,4,23,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-10,0,2001,-17,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1027,-5,0,1343,-10,0,0 +2013,10,9,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1159,-12,0,0 +2013,4,29,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1900,5,0,2120,-5,0,0 +2013,9,30,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,630,-5,0,730,-5,0,0 +2013,5,11,6,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,755,-5,0,1600,-1,0,0 +2013,5,8,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,615,33,1,717,40,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1450,-3,0,1653,-13,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,-4,0,2125,-35,0,0 +2013,10,5,6,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,-4,0,1850,-3,0,0 +2013,7,27,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1725,-4,0,1843,-5,0,0 +2013,6,28,5,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,1,0,835,8,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,731,-7,0,828,-6,0,0 +2013,10,14,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1215,-7,0,2018,-13,0,0 +2013,10,14,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2320,-7,0,830,-18,0,0 +2013,10,1,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1300,-4,0,1614,-2,0,0 +2013,9,9,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,825,-6,0,1148,-35,0,0 +2013,7,20,6,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,8,0,2145,-7,0,0 +2013,10,8,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1220,0,0,1340,-5,0,0 +2013,10,11,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,925,83,1,1257,82,1,0 +2013,7,30,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-3,0,1837,-9,0,0 +2013,6,14,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,711,58,1,830,45,1,0 +2013,8,11,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-10,0,825,-18,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,0,0,1049,-19,0,0 +2013,6,30,7,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2224,0,0,616,-6,0,0 +2013,5,12,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,-2,0,2047,-11,0,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2130,0,0,2340,-11,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,5,0,2030,4,0,0 +2013,10,27,7,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2045,-7,0,2330,-5,0,0 +2013,6,24,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,-4,0,1155,-8,0,0 +2013,5,8,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2055,-12,0,2223,20,1,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1710,-6,0,1810,-10,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,30,1,1955,20,1,0 +2013,5,11,6,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,903,-9,0,1035,-15,0,0 +2013,8,1,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,-2,0,1255,-3,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1050,23,1,1800,9,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,45,1,1750,80,1,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,944,-2,0,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,600,-4,0,942,-20,0,0 +2013,8,22,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-7,0,2133,-8,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1555,18,1,1710,14,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1950,11,0,2255,-7,0,0 +2013,4,29,1,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,810,-7,0,1015,-5,0,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1445,-4,0,1539,-12,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,-1,0,1140,-20,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-3,0,1132,4,0,0 +2013,9,8,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-2,0,1725,-23,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,4,0,2310,-3,0,0 +2013,4,12,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-3,0,1956,15,1,0 +2013,10,18,5,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,940,-3,0,1120,-10,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1700,47,1,1930,30,1,0 +2013,9,1,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1248,-8,0,1539,-22,0,0 +2013,5,31,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1015,-9,0,0 +2013,7,6,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,835,-9,0,1203,-31,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,12,0,1940,20,1,0 +2013,7,26,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1043,-2,0,1914,-5,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,5,0,1030,-5,0,0 +2013,10,7,1,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1042,-6,0,1606,-1,0,0 +2013,4,21,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,-1,0,1950,-3,0,0 +2013,10,16,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1220,37,1,1355,20,1,0 +2013,6,15,6,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,-3,0,1500,-13,0,0 +2013,8,25,7,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,815,-8,0,1057,-34,0,0 +2013,8,15,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,935,0,0,1055,5,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1414,27,1,1746,31,1,0 +2013,9,20,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,2,0,1205,-1,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1710,163,1,1810,157,1,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1140,29,1,1410,31,1,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1419,-4,0,1605,3,0,0 +2013,9,29,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-4,0,1312,-14,0,0 +2013,4,3,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1435,-3,0,2240,0,0,0 +2013,5,30,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,625,-5,0,701,-15,0,0 +2013,6,18,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,58,1,1305,85,1,0 +2013,10,2,3,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1610,4,0,1645,3,0,0 +2013,7,14,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,800,-2,0,1240,-7,0,0 +2013,9,14,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1750,0,0,2002,-7,0,0 +2013,8,22,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-4,0,1530,4,0,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1205,11,0,1400,3,0,0 +2013,7,19,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1625,-2,0,2114,2,0,0 +2013,10,1,2,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,605,-4,0,910,-6,0,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-9,0,855,-3,0,0 +2013,4,17,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,0,0,810,-11,0,0 +2013,4,10,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-5,0,1030,1,0,0 +2013,5,7,2,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,850,8,0,1117,8,0,0 +2013,10,7,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1700,22,1,1710,16,1,0 +2013,8,13,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1800,0,0,2009,-2,0,0 +2013,10,18,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-5,0,1251,-19,0,0 +2013,6,23,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-4,0,1310,-13,0,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1930,35,1,2245,24,1,0 +2013,10,6,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1955,4,0,2045,12,0,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,14,0,850,8,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,555,-3,0,1155,-11,0,0 +2013,8,18,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,15,1,1115,36,1,0 +2013,6,10,1,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,730,12,0,934,19,1,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,2235,-3,0,2330,-11,0,0 +2013,7,10,3,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1731,276,1,2009,268,1,0 +2013,10,13,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,103,1,1645,86,1,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1025,4,0,1430,-21,0,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1750,25,1,1905,25,1,0 +2013,5,28,2,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1027,3,0,1126,5,0,0 +2013,5,9,4,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,12,0,1936,-8,0,0 +2013,9,15,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,810,-2,0,1410,21,1,0 +2013,7,11,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-6,0,949,-11,0,0 +2013,5,4,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-5,0,1827,-19,0,0 +2013,10,23,3,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,710,-5,0,1010,-11,0,0 +2013,6,22,6,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-3,0,1535,-3,0,0 +2013,9,16,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,730,23,1,915,9,0,0 +2013,8,1,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1348,8,0,1510,64,1,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2002,63,1,2140,41,1,0 +2013,8,15,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,655,-3,0,825,-8,0,0 +2013,4,3,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,725,-5,0,840,-3,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,540,2,0,825,-8,0,0 +2013,8,8,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1350,-4,0,1504,2,0,0 +2013,4,15,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1757,68,1,1915,63,1,0 +2013,10,20,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1353,-5,0,1525,-16,0,0 +2013,7,29,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-5,0,1255,-11,0,0 +2013,10,20,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,941,40,1,1130,25,1,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,18,1,1520,13,0,0 +2013,9,12,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,606,-6,0,717,-8,0,0 +2013,10,23,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,800,101,1,910,95,1,0 +2013,5,17,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-2,0,1105,-7,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1532,-2,0,1741,-11,0,0 +2013,7,11,4,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-5,0,2149,-9,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-2,0,1305,-15,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,28,1,2201,34,1,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2235,4,0,2359,-12,0,0 +2013,8,27,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-9,0,1317,-26,0,0 +2013,8,4,7,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1249,-7,0,1817,-12,0,0 +2013,6,7,5,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1120,104,1,1945,121,1,0 +2013,7,23,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,4,0,1807,1,0,0 +2013,4,30,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1520,-2,0,1625,-10,0,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,603,-8,0,1029,-14,0,0 +2013,7,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1724,25,1,1851,16,1,0 +2013,8,30,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,730,-12,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1355,-3,0,1702,-14,0,0 +2013,7,11,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1845,6,0,2104,25,1,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1120,6,0,1345,21,1,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1115,42,1,1815,23,1,0 +2013,9,18,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1507,-5,0,1641,-8,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,755,6,0,918,-5,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1015,5,0,1140,-4,0,0 +2013,6,13,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1210,5,0,1335,-8,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1310,-4,0,1656,-13,0,0 +2013,6,23,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,910,-5,0,1105,-29,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,2014,-2,0,2344,-27,0,0 +2013,8,17,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,30,-6,0,810,3,0,0 +2013,4,12,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1930,0,,2057,0,1,1 +2013,10,9,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,545,-2,0,855,-17,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1440,4,0,1755,10,0,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1015,1,0,1615,-8,0,0 +2013,4,17,3,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1149,6,0,1414,11,0,0 +2013,10,31,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1432,3,0,1613,15,1,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,-6,0,1850,18,1,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1257,1,0,1429,-7,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-6,0,1031,-25,0,0 +2013,7,28,7,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,757,-5,0,1055,-31,0,0 +2013,4,7,7,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,805,3,0,1134,13,0,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1925,86,1,2155,79,1,0 +2013,6,26,3,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,17,1,1447,15,1,0 +2013,7,30,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1615,-2,0,1755,8,0,0 +2013,5,27,1,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1309,-4,0,1427,-7,0,0 +2013,8,15,4,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1840,-7,0,2045,-12,0,0 +2013,9,18,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,26,1,2015,21,1,0 +2013,9,30,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,540,13,0,1145,4,0,0 +2013,9,28,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-4,0,1415,-4,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1405,48,1,1650,35,1,0 +2013,10,19,6,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-6,0,1540,-9,0,0 +2013,5,29,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1905,-1,0,2000,2,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1635,7,0,1750,-4,0,0 +2013,6,9,7,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,951,-6,0,1340,-14,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,825,-3,0,1104,-7,0,0 +2013,10,6,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1945,-5,0,2122,-18,0,0 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,650,-2,0,750,-5,0,0 +2013,6,15,6,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,550,-2,0,724,-7,0,0 +2013,6,2,7,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1215,24,1,1445,17,1,0 +2013,9,12,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-5,0,849,-4,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,62,1,2300,58,1,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,750,-1,0,855,-5,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,0,0,1128,10,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1145,0,0,1510,-15,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1815,-3,0,2052,23,1,0 +2013,8,21,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,744,-7,0,820,-3,0,0 +2013,9,15,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,283,1,1059,280,1,0 +2013,7,6,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-5,0,2149,-6,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1200,4,0,1325,6,0,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1755,-2,0,2049,42,1,0 +2013,5,13,1,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,0,0,1120,-8,0,0 +2013,4,21,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1825,-6,0,2010,-18,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1725,9,0,2002,4,0,0 +2013,7,1,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,1,0,2155,-15,0,0 +2013,4,10,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-10,0,630,-15,0,0 +2013,4,12,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2210,2,0,56,0,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-4,0,850,-16,0,0 +2013,5,9,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1000,-3,0,1237,-11,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,31,1,2235,37,1,0 +2013,8,27,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-2,0,928,-13,0,0 +2013,8,22,4,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1118,-2,0,1436,-4,0,0 +2013,9,19,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,0,,1035,0,1,1 +2013,10,4,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,715,-6,0,1545,1,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,750,5,0,920,-5,0,0 +2013,9,19,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,-1,0,2109,2,0,0 +2013,6,25,2,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1658,-1,0,1835,-2,0,0 +2013,8,14,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1427,-8,0,1543,-6,0,0 +2013,10,14,1,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1546,163,1,1617,164,1,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1600,-10,0,1739,-11,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1550,-4,0,1725,-16,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,845,186,1,1205,178,1,0 +2013,4,28,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1936,-1,0,2042,-9,0,0 +2013,9,11,3,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-6,0,1121,0,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,43,1,2229,40,1,0 +2013,5,29,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1900,0,0,2050,89,1,0 +2013,4,26,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1805,-1,0,1915,4,0,0 +2013,4,12,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1610,9,0,1800,8,0,0 +2013,4,26,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,935,-5,0,1040,-11,0,0 +2013,10,18,5,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1155,17,1,1619,-10,0,0 +2013,10,29,2,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-10,0,1140,2,0,0 +2013,9,18,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1117,4,0,1250,3,0,0 +2013,5,16,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,956,-10,0,1140,-20,0,0 +2013,4,15,1,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-5,0,1406,-6,0,0 +2013,9,15,7,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1633,-9,0,1722,-8,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1200,4,0,1405,-5,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1640,-1,0,1947,-42,0,0 +2013,9,20,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,720,-1,0,830,8,0,0 +2013,8,6,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-4,0,1124,-12,0,0 +2013,9,13,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-6,0,1923,-1,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-7,0,1055,-6,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,838,-5,0,1715,10,0,0 +2013,7,23,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,949,4,0,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,630,-3,0,810,2,0,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1347,-2,0,2155,-1,0,0 +2013,5,21,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1220,26,1,1345,24,1,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,740,0,0,1010,-6,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1340,-4,0,1544,-8,0,0 +2013,5,6,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1320,-2,0,1940,-2,0,0 +2013,4,24,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1232,-4,0,2030,-4,0,0 +2013,10,23,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1340,-6,0,1545,-5,0,0 +2013,8,31,6,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-3,0,1755,-7,0,0 +2013,6,23,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1821,-6,0,2000,-19,0,0 +2013,9,18,3,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2155,-9,0,605,-2,0,0 +2013,4,24,3,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1710,-6,0,1845,-30,0,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1040,-2,0,1310,5,0,0 +2013,7,21,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,924,11,0,1113,16,1,0 +2013,5,13,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1846,-11,0,2014,-24,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,8,0,2330,-5,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1615,9,0,1725,-6,0,0 +2013,6,26,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1932,0,,2059,0,1,1 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1130,6,0,1359,-6,0,0 +2013,8,21,3,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-2,0,1317,0,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,-4,0,1106,-18,0,0 +2013,8,16,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1923,106,1,2224,72,1,0 +2013,10,5,6,MQ,13303,Miami International,Miami,FL,14730,Louisville International-Standiford Field,Louisville,KY,1140,-7,0,1410,58,1,0 +2013,6,13,4,AS,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,710,0,0,1005,-5,0,0 +2013,7,1,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1515,59,1,1815,60,1,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-7,0,916,-16,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,705,-5,0,854,-11,0,0 +2013,8,12,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1455,-3,0,1725,-25,0,0 +2013,9,24,2,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1700,-1,0,2008,-20,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1625,21,1,1851,-10,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,745,1,0,1130,1,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1259,-5,0,1622,-21,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1305,-5,0,1736,1,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-8,0,1535,-21,0,0 +2013,10,25,5,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2130,-8,0,5,-9,0,0 +2013,4,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,16,1,2120,20,1,0 +2013,5,31,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-10,0,1912,-3,0,0 +2013,9,2,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-2,0,1254,-1,0,0 +2013,6,1,6,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,11,0,540,3,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,929,-6,0,1234,-14,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1407,16,1,1614,1,0,0 +2013,5,11,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2030,-5,0,2200,-13,0,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,2,0,814,17,1,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1615,-4,0,1812,0,0,0 +2013,8,17,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,-16,0,1815,-19,0,0 +2013,7,18,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1650,20,1,1830,23,1,0 +2013,10,19,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1445,0,0,1515,4,0,0 +2013,7,15,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1218,27,1,1409,20,1,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-3,0,1725,-21,0,0 +2013,10,26,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1835,-6,0,2057,-15,0,0 +2013,8,18,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-3,0,1220,-22,0,0 +2013,6,7,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,27,1,1945,28,1,0 +2013,4,2,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,909,-5,0,1130,-17,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1307,-1,0,2130,5,0,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,900,1,0,1010,5,0,0 +2013,5,20,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-3,0,825,-7,0,0 +2013,8,11,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,-5,0,1310,-4,0,0 +2013,9,25,3,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1425,19,1,2259,-2,0,0 +2013,6,1,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-2,0,1002,11,0,0 +2013,7,7,7,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,752,-8,0,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1625,-9,0,1942,-16,0,0 +2013,6,25,2,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,0,0,1940,-6,0,0 +2013,4,19,5,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1122,29,1,1222,20,1,0 +2013,5,24,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1430,6,0,1535,-1,0,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1754,13,0,1905,19,1,0 +2013,8,25,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1130,-6,0,1402,-2,0,0 +2013,8,14,3,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-7,0,2046,-18,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,555,0,0,925,-6,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2110,1,0,2200,4,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2004,52,1,2139,53,1,0 +2013,6,18,2,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,36,1,2230,-1,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,7,0,1555,2,0,0 +2013,7,31,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2105,40,1,2225,29,1,0 +2013,4,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1615,40,1,1855,46,1,0 +2013,4,10,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1118,-6,0,1203,0,0,0 +2013,6,18,2,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,0,0,2040,12,0,0 +2013,8,27,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,718,30,1,900,54,1,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,710,5,0,1230,-4,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2215,-4,0,2350,-5,0,0 +2013,8,6,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,1,0,1345,5,0,0 +2013,4,1,1,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1729,35,1,2050,61,1,0 +2013,10,20,7,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-1,0,1110,-10,0,0 +2013,8,31,6,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,0,,1021,0,1,1 +2013,7,8,1,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1225,-1,0,1359,-1,0,0 +2013,10,8,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,800,-1,0,1045,2,0,0 +2013,10,6,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1025,-1,0,1315,-4,0,0 +2013,6,15,6,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-3,0,1659,-1,0,0 +2013,7,23,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,30,1,1500,26,1,0 +2013,6,15,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-4,0,839,-28,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2046,4,0,2215,7,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,905,8,0,1125,11,0,0 +2013,6,20,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1510,-6,0,1655,-17,0,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1519,4,0,1820,20,1,0 +2013,9,19,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,-5,0,2150,0,0,0 +2013,6,18,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,17,1,1940,5,0,0 +2013,8,11,7,YV,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-5,0,1147,-17,0,0 +2013,9,23,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1858,-1,0,2031,-7,0,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,6,0,1510,3,0,0 +2013,10,15,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-3,0,1805,-6,0,0 +2013,10,4,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,0,0,1514,-23,0,0 +2013,9,16,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,21,1,2140,18,1,0 +2013,8,31,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1731,-7,0,1817,-6,0,0 +2013,7,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2007,-1,0,2108,-5,0,0 +2013,5,13,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,13,0,1900,11,0,0 +2013,5,30,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1341,44,1,1542,44,1,0 +2013,5,1,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-1,0,2016,-11,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1035,-3,0,1146,-11,0,0 +2013,9,18,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-4,0,1552,-3,0,0 +2013,4,5,5,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,946,117,1,1239,104,1,0 +2013,8,26,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-3,0,1445,-22,0,0 +2013,6,12,3,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1245,0,0,1530,-8,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,-3,0,1051,20,1,0 +2013,8,29,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1820,48,1,1857,47,1,0 +2013,10,4,5,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1840,-6,0,2010,-1,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,28,1,1415,17,1,0 +2013,5,12,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-9,0,830,-17,0,0 +2013,4,2,2,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1945,-2,0,2030,-18,0,0 +2013,4,17,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,605,-7,0,903,-12,0,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,950,-4,0,1249,-24,0,0 +2013,5,20,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,-1,0,1735,4,0,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2012,-10,0,2350,-12,0,0 +2013,9,11,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1045,7,0,1145,9,0,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1735,-5,0,1855,-3,0,0 +2013,7,30,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,2051,115,1,2306,122,1,0 +2013,7,30,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1150,-6,0,1455,-17,0,0 +2013,6,14,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,628,-6,0,815,-29,0,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,800,0,0,1036,-23,0,0 +2013,8,15,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,805,3,0,925,-1,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,34,1,2358,36,1,0 +2013,4,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-5,0,1441,-22,0,0 +2013,9,29,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,910,0,0,1203,5,0,0 +2013,9,20,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,737,-7,0,0 +2013,7,3,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1018,-4,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2155,26,1,2315,18,1,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1830,12,0,2235,12,0,0 +2013,4,8,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,957,-3,0,1522,-1,0,0 +2013,6,2,7,DL,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,0,,2144,0,1,1 +2013,5,19,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,-10,0,2017,-11,0,0 +2013,6,17,1,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-14,0,555,-36,0,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1930,2,0,2246,2,0,0 +2013,5,20,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,24,1,1700,2,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1900,214,1,2040,206,1,0 +2013,8,22,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,8,0,1100,3,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1525,89,1,1830,74,1,0 +2013,8,27,2,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1810,-1,0,2128,-45,0,0 +2013,10,23,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-4,0,2113,-3,0,0 +2013,5,30,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,-2,0,1418,-30,0,0 +2013,4,1,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,-3,0,724,0,0,0 +2013,5,31,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,815,-4,0,1034,-5,0,0 +2013,9,15,7,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1925,-1,0,2010,9,0,0 +2013,9,14,6,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,840,-5,0,910,4,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,0,0,1644,4,0,0 +2013,10,3,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1850,2,0,2055,-7,0,0 +2013,8,15,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,22,1,1605,16,1,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-1,0,2225,-24,0,0 +2013,8,8,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1120,-5,0,1417,8,0,0 +2013,10,3,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1530,93,1,1650,91,1,0 +2013,5,1,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-4,0,1510,-18,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2205,-7,0,2329,-16,0,0 +2013,4,25,4,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1050,13,0,1220,3,0,0 +2013,10,20,7,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,-7,0,542,-12,0,0 +2013,8,23,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1240,6,0,1420,7,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1010,-3,0,1510,-13,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2135,1,0,2230,2,0,0 +2013,9,27,5,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1725,-4,0,1908,-13,0,0 +2013,9,8,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1602,-7,0,1700,-16,0,0 +2013,5,19,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-3,0,1857,-22,0,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,35,1,2345,44,1,0 +2013,10,1,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1000,-4,0,1135,-19,0,0 +2013,8,18,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,833,-3,0,1037,12,0,0 +2013,5,3,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1109,2,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1535,-3,0,1620,-3,0,0 +2013,8,20,2,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-3,0,1346,-9,0,0 +2013,6,15,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,4,0,1640,3,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1925,1,0,2115,-21,0,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,-1,0,2136,18,1,0 +2013,8,12,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1805,54,1,1938,38,1,0 +2013,4,8,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1300,54,1,1613,49,1,0 +2013,8,6,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-8,0,711,-8,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,200,1,1848,201,1,0 +2013,10,4,5,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1451,45,1,1620,47,1,0 +2013,7,21,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1439,0,0,1753,-5,0,0 +2013,8,3,6,EV,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,800,-3,0,959,-15,0,0 +2013,6,23,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,3,0,1705,0,0,0 +2013,9,8,7,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,855,-9,0,1110,-13,0,0 +2013,5,3,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-5,0,1211,-13,0,0 +2013,5,13,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-5,0,850,-19,0,0 +2013,10,31,4,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-4,0,915,-1,0,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,905,-3,0,1110,0,0,0 +2013,4,11,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2120,103,1,2235,92,1,0 +2013,8,10,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,57,1,1605,38,1,0 +2013,7,22,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1940,-1,0,2035,-12,0,0 +2013,10,17,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1403,2,0,1700,-2,0,0 +2013,4,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2150,-1,0,2305,-10,0,0 +2013,10,23,3,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1500,-5,0,1750,2,0,0 +2013,4,17,3,WN,15376,Tucson International,Tucson,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1005,-5,0,1205,-2,0,0 +2013,4,28,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1623,3,0,1840,-19,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,800,3,0,905,-14,0,0 +2013,6,22,6,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,1959,9,0,2207,10,0,0 +2013,4,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,822,0,0,1202,-12,0,0 +2013,7,13,6,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1105,30,1,1300,17,1,0 +2013,4,19,5,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1716,238,1,1823,230,1,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1212,0,0,1423,-25,0,0 +2013,6,26,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1230,8,0,1345,-4,0,0 +2013,6,22,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1530,-8,0,1635,-17,0,0 +2013,8,24,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1347,186,1,1520,194,1,0 +2013,6,20,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-8,0,1408,-17,0,0 +2013,4,2,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,-8,0,2119,-12,0,0 +2013,5,11,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,6,0,1600,-3,0,0 +2013,7,14,7,FL,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,900,-3,0,1040,-15,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1614,-4,0,1650,-21,0,0 +2013,6,1,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,-6,0,1224,-9,0,0 +2013,9,7,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,905,92,1,1249,93,1,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2030,-3,0,5,-9,0,0 +2013,4,18,4,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1119,-3,0,1224,-6,0,0 +2013,6,27,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,10,0,1839,40,1,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1510,4,0,1641,1,0,0 +2013,8,30,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1051,-6,0,1417,-8,0,0 +2013,10,5,6,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-3,0,1733,4,0,0 +2013,8,21,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,700,0,0,815,-12,0,0 +2013,7,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1450,1,0,1545,3,0,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1657,0,0,1743,20,1,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1520,-3,0,2038,4,0,0 +2013,7,30,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,0,0,1355,-1,0,0 +2013,9,6,5,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1528,-6,0,1722,-22,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1908,-10,0,2220,-40,0,0 +2013,10,13,7,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,0,0,2205,0,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,-1,0,2105,-8,0,0 +2013,4,15,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,91,1,1320,85,1,0 +2013,8,14,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1148,5,0,1444,-24,0,0 +2013,4,5,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-5,0,1118,-6,0,0 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-3,0,2023,10,0,0 +2013,5,5,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1405,92,1,1530,102,1,0 +2013,9,6,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,-5,0,1357,-19,0,0 +2013,5,20,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,12,0,1600,1,0,0 +2013,7,14,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,32,1,940,26,1,0 +2013,4,15,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,725,-3,0,1014,16,1,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-4,0,935,1,0,0 +2013,4,11,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,83,1,2035,80,1,0 +2013,10,13,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1600,5,0,1828,-7,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1045,0,0,1420,-13,0,0 +2013,8,28,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1905,-8,0,2022,-11,0,0 +2013,8,13,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,-2,0,735,-8,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2145,-6,0,11,-26,0,0 +2013,5,23,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,750,7,0,915,-1,0,0 +2013,9,28,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,730,-8,0,1026,6,0,0 +2013,4,25,4,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1036,-8,0,1155,-25,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1507,17,1,1657,13,0,0 +2013,7,6,6,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1115,1,0,1400,-5,0,0 +2013,8,11,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,7,0,1935,-6,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,35,1,1215,28,1,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,14,0,957,-1,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1103,-4,0,1241,4,0,0 +2013,8,5,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1958,86,1,2200,67,1,0 +2013,5,6,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,920,-16,0,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1315,-2,0,1440,-12,0,0 +2013,9,24,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1309,-9,0,1416,-11,0,0 +2013,7,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,745,6,0,1005,0,0,0 +2013,7,18,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,835,-2,0,940,-13,0,0 +2013,9,12,4,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1035,-1,0,1140,1,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2335,-6,0,647,-24,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1101,-2,0,1302,-5,0,0 +2013,8,26,1,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-7,0,1142,-12,0,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,13,0,2200,4,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1928,1,0,15,-15,0,0 +2013,10,17,4,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-4,0,1005,-6,0,0 +2013,9,20,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1835,6,0,1955,13,0,0 +2013,8,5,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1700,16,1,1915,12,0,0 +2013,6,23,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1735,48,1,2008,31,1,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1122,16,1,1248,34,1,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1813,6,0,2045,19,1,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,9,0,849,7,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,-3,0,1648,-14,0,0 +2013,7,17,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1910,19,1,2110,9,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,-2,0,1645,-14,0,0 +2013,9,2,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1512,13,0,1646,-5,0,0 +2013,8,27,2,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-1,0,1306,-9,0,0 +2013,7,23,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-6,0,1037,-16,0,0 +2013,4,25,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,0,,1922,0,1,1 +2013,10,18,5,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-2,0,1205,-15,0,0 +2013,7,9,2,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,42,1,1800,65,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,10,0,1245,-1,0,0 +2013,10,18,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,9,0,1740,9,0,0 +2013,9,21,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1125,-6,0,1309,-13,0,0 +2013,5,14,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1855,-12,0,2026,-17,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1715,3,0,1810,-10,0,0 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,-4,0,1056,-21,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,3,0,1940,-8,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1445,37,1,1550,89,1,0 +2013,9,21,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,12,0,1946,-6,0,0 +2013,5,21,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1230,7,0,1420,-3,0,0 +2013,5,20,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1541,-4,0,1653,-4,0,0 +2013,4,5,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1205,10,0,1310,33,1,0 +2013,4,24,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,735,-1,0,1305,-24,0,0 +2013,5,6,1,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1100,-8,0,1340,-4,0,0 +2013,4,23,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2340,1,0,800,-21,0,0 +2013,9,9,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1650,49,1,1810,82,1,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1500,7,0,1725,11,0,0 +2013,6,19,3,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,12,0,2029,27,1,0 +2013,5,30,4,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1905,133,1,2132,89,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,4,0,1158,-2,0,0 +2013,9,27,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1855,18,1,2200,15,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1910,3,0,2103,-5,0,0 +2013,4,1,1,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1111,-3,0,1312,-2,0,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1310,4,0,1800,-9,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1650,-1,0,1810,-20,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-4,0,1622,-8,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,15,1,2218,16,1,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1425,-3,0,1520,-10,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,850,-1,0,1526,-24,0,0 +2013,5,10,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-5,0,1537,-9,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-2,0,805,10,0,0 +2013,8,28,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1030,-8,0,1125,-15,0,0 +2013,8,20,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,1614,-13,0,0 +2013,5,14,2,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-10,0,10,-12,0,0 +2013,7,18,4,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,855,-4,0,1135,-6,0,0 +2013,9,24,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1555,-8,0,1930,-12,0,0 +2013,8,14,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2105,2,0,2228,2,0,0 +2013,4,14,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,830,0,0,1110,-1,0,0 +2013,8,25,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,-1,0,1712,-12,0,0 +2013,9,3,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1532,-7,0,0 +2013,8,15,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1052,78,1,1213,67,1,0 +2013,7,10,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-2,0,1336,-15,0,0 +2013,7,7,7,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1845,-1,0,2140,-3,0,0 +2013,7,6,6,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,-13,0,1858,-5,0,0 +2013,8,18,7,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-3,0,834,-4,0,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,-1,0,1735,-13,0,0 +2013,6,11,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1530,56,1,1650,42,1,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1632,12,0,59,8,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1805,13,0,1905,5,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1720,0,0,1916,-18,0,0 +2013,7,25,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,92,1,2044,75,1,0 +2013,7,4,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-3,0,1026,-7,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1450,10,0,1710,12,0,0 +2013,10,5,6,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2130,-7,0,5,14,0,0 +2013,7,13,6,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-3,0,1003,6,0,0 +2013,4,29,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,10,0,930,-15,0,0 +2013,7,12,5,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,0,0,1124,6,0,0 +2013,5,14,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,6,0,1417,6,0,0 +2013,5,11,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,64,1,604,75,1,0 +2013,7,5,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1104,39,1,1233,32,1,0 +2013,6,8,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-7,0,1605,-12,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,14,0,2307,18,1,0 +2013,10,5,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1015,-5,0,1212,-17,0,0 +2013,8,7,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1215,9,0,1330,3,0,0 +2013,6,26,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,6,0,1640,4,0,0 +2013,8,23,5,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1353,-5,0,1520,10,0,0 +2013,5,24,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1713,-1,0,1837,-17,0,0 +2013,8,4,7,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,22,1,2154,32,1,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1030,15,1,1420,-2,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,0,0,1055,6,0,0 +2013,8,8,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1624,47,1,1824,40,1,0 +2013,5,26,7,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,700,-1,0,830,-1,0,0 +2013,9,1,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-7,0,1725,-18,0,0 +2013,8,29,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1651,1,0,1937,-6,0,0 +2013,7,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,-3,0,1735,-13,0,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-7,0,749,-11,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2030,29,1,10,26,1,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2255,74,1,20,94,1,0 +2013,10,8,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1715,-3,0,2009,-13,0,0 +2013,8,17,6,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1234,-4,0,2048,2,0,0 +2013,4,5,5,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1635,26,1,2040,6,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1910,-6,0,2054,3,0,0 +2013,4,4,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,920,-15,0,0 +2013,5,16,4,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-1,0,1558,-3,0,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1740,-3,0,1955,-17,0,0 +2013,6,22,6,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,840,18,1,1355,5,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,8,0,1120,9,0,0 +2013,6,6,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1935,4,0,50,-2,0,0 +2013,6,21,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1600,140,1,1635,145,1,0 +2013,9,22,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2151,-8,0,2331,2,0,0 +2013,4,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1310,3,0,1710,-6,0,0 +2013,6,23,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1215,15,1,1350,18,1,0 +2013,6,24,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,1,0,1212,-13,0,0 +2013,8,21,3,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1148,0,0,1450,5,0,0 +2013,9,27,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1157,18,1,1446,-5,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1450,-1,0,1603,-3,0,0 +2013,4,5,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,934,-8,0,1008,-7,0,0 +2013,4,30,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,814,1,0,937,8,0,0 +2013,9,4,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-4,0,854,-6,0,0 +2013,5,21,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2135,22,1,2255,46,1,0 +2013,5,19,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,603,12,0,1158,1,0,0 +2013,7,16,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1040,-6,0,1325,-1,0,0 +2013,6,30,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1106,4,0,1206,-9,0,0 +2013,8,5,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,857,-13,0,1004,-25,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1625,-5,0,1930,-17,0,0 +2013,5,30,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1703,81,1,1831,70,1,0 +2013,4,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-3,0,1707,0,0,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,39,1,1920,46,1,0 +2013,7,22,1,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-7,0,1142,8,0,0 +2013,5,8,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,25,1,1315,24,1,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,610,0,,720,0,1,1 +2013,5,27,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1415,56,1,1920,35,1,0 +2013,4,14,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-3,0,1805,12,0,0 +2013,9,6,5,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,17,1,1935,-19,0,0 +2013,8,20,2,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1230,-4,0,1450,-12,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1353,-1,0,1604,18,1,0 +2013,9,26,4,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2010,40,1,2100,41,1,0 +2013,9,24,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-8,0,1930,-10,0,0 +2013,8,21,3,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1425,13,0,1615,7,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1525,1,0,2055,-6,0,0 +2013,4,1,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,612,11,0,730,-3,0,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,630,-2,0,914,-16,0,0 +2013,6,2,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,610,2,0,717,-13,0,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1030,6,0,1345,-2,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,-3,0,1540,-16,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1722,6,0,2013,-2,0,0 +2013,10,9,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1645,13,0,1800,2,0,0 +2013,9,22,7,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-4,0,1205,-15,0,0 +2013,9,8,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,6,0,2145,4,0,0 +2013,4,21,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-4,0,1200,0,0,0 +2013,10,7,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1750,-5,0,1900,-14,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1043,57,1,1220,49,1,0 +2013,10,29,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,615,3,0,1220,-15,0,0 +2013,4,11,4,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,1317,-4,0,1413,-17,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1345,13,0,1435,5,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1530,23,1,1700,37,1,0 +2013,10,28,1,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,655,-2,0,809,6,0,0 +2013,5,19,7,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,620,45,1,940,22,1,0 +2013,10,5,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1043,82,1,1435,80,1,0 +2013,4,1,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,639,-4,0,803,-5,0,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1700,0,0,1900,-6,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1800,69,1,2100,66,1,0 +2013,8,10,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-3,0,945,-21,0,0 +2013,5,18,6,WN,15304,Tampa International,Tampa,FL,13931,Norfolk International,Norfolk,VA,1210,2,0,1415,-7,0,0 +2013,5,28,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1850,1,0,2154,-5,0,0 +2013,6,24,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1810,64,1,1915,57,1,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1450,46,1,1755,18,1,0 +2013,5,27,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,6,0,1622,3,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2152,18,1,2321,14,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1510,1,0,1706,1,0,0 +2013,4,20,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1010,-10,0,1138,-5,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,919,32,1,1101,65,1,0 +2013,5,8,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1510,-5,0,1607,-4,0,0 +2013,5,15,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2055,-5,0,2346,1,0,0 +2013,10,12,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,-3,0,1133,-13,0,0 +2013,4,6,6,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1505,43,1,2340,20,1,0 +2013,5,30,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1545,28,1,1710,18,1,0 +2013,9,3,2,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,-2,0,609,-3,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1643,54,1,1818,37,1,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,-5,0,2337,-11,0,0 +2013,8,29,4,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1435,14,0,1625,5,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2120,58,1,2325,56,1,0 +2013,6,1,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,530,-7,0,900,2,0,0 +2013,4,19,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-2,0,950,11,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,-2,0,830,-10,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1915,-7,0,2040,-12,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,4,0,1400,2,0,0 +2013,8,15,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,939,3,0,1444,0,0,0 +2013,10,23,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,605,-3,0,720,-2,0,0 +2013,7,19,5,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1944,-2,0,2304,-7,0,0 +2013,9,20,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1545,4,0,1825,0,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1425,10,0,1655,19,1,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,3,0,1143,-24,0,0 +2013,4,26,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2155,-3,0,2305,-8,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1730,-1,0,1837,-12,0,0 +2013,6,18,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,630,-6,0,756,-3,0,0 +2013,7,22,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,0,0,1813,-9,0,0 +2013,10,11,5,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-2,0,1010,0,0,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1115,-4,0,1304,-9,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1554,41,1,1848,60,1,0 +2013,10,1,2,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,805,50,1,1029,21,1,0 +2013,9,15,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,0,0,1435,-4,0,0 +2013,8,26,1,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1036,119,1,1411,116,1,0 +2013,9,20,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1455,132,1,1750,129,1,0 +2013,4,11,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,30,1,1453,8,0,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,935,-3,0,1205,2,0,0 +2013,7,30,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,610,0,0,1220,-23,0,0 +2013,8,30,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,625,-3,0,725,1,0,0 +2013,6,6,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,835,-3,0,947,-5,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1215,0,0,1340,29,1,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,31,1,2240,28,1,0 +2013,6,24,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-3,0,940,1,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1450,0,0,1555,-2,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1535,-1,0,2010,-2,0,0 +2013,5,4,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1120,-8,0,1321,-16,0,0 +2013,5,19,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1230,0,0,1330,-4,0,0 +2013,9,20,5,WN,13931,Norfolk International,Norfolk,VA,12451,Jacksonville International,Jacksonville,FL,1500,24,1,1635,20,1,0 +2013,6,20,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,20,1,2305,15,1,0 +2013,9,23,1,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,-1,0,1528,-3,0,0 +2013,4,30,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1200,-3,0,1320,-8,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2105,-1,0,2355,-9,0,0 +2013,5,10,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,840,-6,0,1209,2,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1145,36,1,1412,3,0,0 +2013,8,7,3,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1900,-4,0,2143,11,0,0 +2013,4,3,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1449,17,1,2055,17,1,0 +2013,4,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1715,-4,0,1835,-15,0,0 +2013,5,24,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1037,12,0,1330,-13,0,0 +2013,8,1,4,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,81,1,1848,77,1,0 +2013,9,17,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,1,0,1145,0,0,0 +2013,10,31,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,900,1,0,1048,-12,0,0 +2013,4,3,3,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,855,-1,0,935,-19,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,900,-2,0,1207,-21,0,0 +2013,9,7,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,-14,0,2217,-19,0,0 +2013,8,9,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,630,0,0,645,-1,0,0 +2013,6,9,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,5,0,1415,2,0,0 +2013,5,24,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2039,64,1,2210,72,1,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-6,0,1922,-11,0,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1415,11,0,1520,3,0,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1650,-4,0,2025,-17,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,2,0,1205,-6,0,0 +2013,9,2,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1209,300,1,1349,294,1,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1602,-4,0,1719,-14,0,0 +2013,4,13,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,1245,-26,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-3,0,1158,-21,0,0 +2013,5,3,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1405,200,1,1555,185,1,0 +2013,7,13,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1520,3,0,1635,-3,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1732,9,0,2015,58,1,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1005,3,0,1130,-6,0,0 +2013,8,11,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,643,-10,0,0 +2013,7,25,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,810,0,0,904,-6,0,0 +2013,10,9,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-3,0,1905,-27,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1315,-1,0,1440,5,0,0 +2013,6,21,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,15,1,2200,21,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1735,7,0,1851,-7,0,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1305,-3,0,1430,-11,0,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,-10,0,2210,-13,0,0 +2013,7,25,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,5,0,2205,-4,0,0 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2020,4,0,2345,17,1,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1754,4,0,2025,-20,0,0 +2013,7,6,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1915,162,1,2230,119,1,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1650,17,1,2340,-3,0,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1500,15,1,1940,3,0,0 +2013,10,28,1,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,853,-5,0,1023,-10,0,0 +2013,7,10,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,-6,0,1120,3,0,0 +2013,4,7,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,-6,0,2151,-16,0,0 +2013,4,3,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,-14,0,1034,-13,0,0 +2013,8,30,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,600,-7,0,738,-11,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,940,2,0,1650,-1,0,0 +2013,4,28,7,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1701,11,0,1804,9,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1800,0,0,2030,-10,0,0 +2013,6,18,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,630,-4,0,930,-1,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1340,3,0,1710,-5,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,28,1,1720,42,1,0 +2013,10,17,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1942,14,0,2250,25,1,0 +2013,9,30,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,-7,0,1640,-7,0,0 +2013,7,3,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1100,-7,0,1522,3,0,0 +2013,5,23,4,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2359,61,1,249,45,1,0 +2013,6,5,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,743,-19,0,0 +2013,9,4,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,755,-1,0,910,-8,0,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,11,0,1445,12,0,0 +2013,4,27,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,735,0,0,800,-20,0,0 +2013,9,8,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,2,0,1015,10,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1533,-5,0,1725,-36,0,0 +2013,9,3,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2319,1,0,730,-14,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1100,-1,0,1155,11,0,0 +2013,5,31,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,16,1,1500,13,0,0 +2013,10,10,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1106,0,0,1635,-10,0,0 +2013,7,3,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,0,0,2302,2,0,0 +2013,7,18,4,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1559,-6,0,1910,-23,0,0 +2013,6,23,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1710,-1,0,2340,5,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,-3,0,1125,-18,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,831,-5,0,952,-18,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2150,-3,0,20,-16,0,0 +2013,9,1,7,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,-2,0,2135,-4,0,0 +2013,5,15,3,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1922,-2,0,2159,-9,0,0 +2013,5,16,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1315,-1,0,1531,-3,0,0 +2013,6,19,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1635,-2,0,1805,-4,0,0 +2013,5,22,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1510,15,1,1741,20,1,0 +2013,9,6,5,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,745,-2,0,1050,-1,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,5,0,1135,-9,0,0 +2013,7,23,2,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1005,53,1,1130,48,1,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1750,35,1,1940,27,1,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,625,0,0,715,-6,0,0 +2013,6,3,1,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1350,5,0,1910,-11,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,-3,0,1406,-7,0,0 +2013,5,11,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,645,-2,0,925,-8,0,0 +2013,8,19,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1630,5,0,1805,-4,0,0 +2013,4,22,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1932,72,1,2052,86,1,0 +2013,9,11,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1536,-10,0,1728,20,1,0 +2013,8,20,2,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,755,-4,0,950,-2,0,0 +2013,6,11,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-2,0,2057,-11,0,0 +2013,9,8,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,745,-9,0,1045,-12,0,0 +2013,10,16,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,800,-4,0,910,-14,0,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1830,28,1,2152,31,1,0 +2013,7,7,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1015,0,0,1125,-1,0,0 +2013,7,13,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,0,0,1559,6,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-2,0,1505,-1,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1315,11,0,1450,25,1,0 +2013,8,23,5,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,-2,0,1320,14,0,0 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,20,1,2205,42,1,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1230,6,0,1335,2,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,940,-5,0,1050,-5,0,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1725,83,1,2200,62,1,0 +2013,7,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1125,-1,0,1405,-13,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,800,-2,0,855,13,0,0 +2013,5,20,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-4,0,2209,-7,0,0 +2013,4,20,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,1135,-5,0,0 +2013,4,17,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,21,1,2100,30,1,0 +2013,8,7,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,950,-3,0,1050,-3,0,0 +2013,9,6,5,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1005,-1,0,1320,10,0,0 +2013,6,12,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,28,1,1735,20,1,0 +2013,5,31,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,841,-9,0,1413,-17,0,0 +2013,5,24,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2110,-4,0,2225,-6,0,0 +2013,9,21,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-3,0,1030,0,0,0 +2013,6,27,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2006,124,1,2148,110,1,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1540,0,0,1705,-2,0,0 +2013,9,1,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1950,-8,0,2159,11,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-2,0,923,-6,0,0 +2013,5,13,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,829,-6,0,1359,5,0,0 +2013,9,9,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,16,1,2005,17,1,0 +2013,8,21,3,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1055,0,0,1425,-3,0,0 +2013,7,4,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1702,31,1,1813,7,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1130,8,0,1510,-1,0,0 +2013,4,4,4,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,4,0,1905,2,0,0 +2013,8,4,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-1,0,2215,1,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,29,1,1805,39,1,0 +2013,4,8,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,745,-3,0,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,-1,0,935,2,0,0 +2013,10,20,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1311,-2,0,1630,-21,0,0 +2013,5,9,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1706,-2,0,1922,-16,0,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,2035,-1,0,2345,-2,0,0 +2013,6,25,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1320,-4,0,1532,3,0,0 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1710,-1,0,2340,-21,0,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,-6,0,912,-15,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,720,-2,0,1110,-6,0,0 +2013,7,23,2,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,606,6,0,751,-11,0,0 +2013,10,6,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-2,0,1730,11,0,0 +2013,7,19,5,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1630,-4,0,1735,-3,0,0 +2013,10,9,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-7,0,1436,-12,0,0 +2013,10,6,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,-16,0,649,-22,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1925,-8,0,2255,-12,0,0 +2013,10,21,1,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-6,0,1725,4,0,0 +2013,10,3,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-5,0,1025,-5,0,0 +2013,9,18,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1051,-9,0,1417,-17,0,0 +2013,6,7,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1748,151,1,2040,138,1,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,745,-4,0,1025,11,0,0 +2013,5,31,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1525,0,,1715,0,1,1 +2013,4,22,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,0,0,1500,-12,0,0 +2013,6,27,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1651,88,1,1812,80,1,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1729,-4,0,2024,15,1,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,-3,0,2005,-13,0,0 +2013,6,6,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,0,,1028,0,1,1 +2013,5,27,1,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1930,28,1,2236,15,1,0 +2013,9,7,6,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-8,0,1936,4,0,0 +2013,10,13,7,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,58,1,641,45,1,0 +2013,5,2,4,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,-4,0,730,-11,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1800,0,,1920,0,1,1 +2013,6,25,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,28,1,2145,18,1,0 +2013,5,19,7,EV,11066,Port Columbus International,Columbus,OH,12264,Washington Dulles International,Washington,DC,1413,-1,0,1531,-11,0,0 +2013,6,17,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,835,-32,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2250,-2,0,35,-17,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-1,0,2320,-4,0,0 +2013,6,20,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,902,-2,0,1116,-4,0,0 +2013,8,23,5,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,-8,0,1030,-16,0,0 +2013,8,24,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,0,0,1300,-7,0,0 +2013,9,7,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1249,6,0,1419,5,0,0 +2013,8,22,4,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,73,1,1645,78,1,0 +2013,10,9,3,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1433,6,0,2222,-6,0,0 +2013,10,6,7,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1735,10,0,2000,-17,0,0 +2013,5,25,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1453,97,1,1635,85,1,0 +2013,5,13,1,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1310,-9,0,1422,-3,0,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,-1,0,1810,-7,0,0 +2013,6,7,5,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,36,1,1635,41,1,0 +2013,4,16,2,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,930,-4,0,1157,-9,0,0 +2013,4,29,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,3,0,1900,-7,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1330,-4,0,1614,-23,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,740,-6,0,1300,-24,0,0 +2013,8,11,7,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1045,-6,0,1824,-28,0,0 +2013,7,21,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,-3,0,1338,-3,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,1,0,2340,-7,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-1,0,1245,-2,0,0 +2013,9,15,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1331,-6,0,1840,-16,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,750,0,0,1148,-4,0,0 +2013,5,4,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,845,-1,0,1026,-16,0,0 +2013,7,29,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-3,0,754,-12,0,0 +2013,9,17,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1944,-4,0,2047,-22,0,0 +2013,9,8,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-3,0,1223,19,1,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-2,0,1755,-24,0,0 +2013,9,7,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-3,0,1205,-13,0,0 +2013,5,6,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1630,6,0,1755,13,0,0 +2013,9,9,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1930,4,0,2035,-19,0,0 +2013,9,27,5,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-5,0,915,-16,0,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,954,51,1,1304,51,1,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1320,0,0,1539,-2,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1042,-5,0,1400,-14,0,0 +2013,4,3,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-8,0,705,-13,0,0 +2013,8,27,2,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2349,44,1,709,44,1,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,2135,33,1,2325,27,1,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,622,6,0,900,-14,0,0 +2013,4,18,4,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-4,0,920,-22,0,0 +2013,10,5,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,-8,0,1035,-19,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,2350,0,0,659,-15,0,0 +2013,6,12,3,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1740,199,1,2020,235,1,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1505,42,1,1820,32,1,0 +2013,5,1,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,1,0,1510,-13,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1125,7,0,1405,-1,0,0 +2013,9,15,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1224,-8,0,1512,-20,0,0 +2013,4,3,3,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,620,-3,0,706,-11,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,815,10,0,1055,-21,0,0 +2013,10,8,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1658,1,0,1729,1,0,0 +2013,7,25,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1215,22,1,1400,18,1,0 +2013,4,4,4,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,30,1,1011,21,1,0 +2013,10,25,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-1,0,1404,-4,0,0 +2013,9,14,6,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1650,7,0,1915,-5,0,0 +2013,5,19,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,65,1,1400,56,1,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1602,2,0,2130,-2,0,0 +2013,10,22,2,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2008,-10,0,2015,-6,0,0 +2013,8,4,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,38,1,1839,23,1,0 +2013,10,27,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1031,0,,1116,0,1,1 +2013,4,25,4,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1410,-10,0,1645,-10,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1735,-6,0,2055,5,0,0 +2013,7,14,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1110,4,0,1321,-14,0,0 +2013,10,13,7,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,830,-4,0,1114,-4,0,0 +2013,10,11,5,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,910,190,1,1730,189,1,0 +2013,7,27,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1630,48,1,1905,37,1,0 +2013,10,2,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,830,-1,0,0 +2013,9,7,6,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,-9,0,2013,-27,0,0 +2013,10,12,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-1,0,1510,-21,0,0 +2013,4,1,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1725,-3,0,2100,5,0,0 +2013,4,3,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1800,0,0,2109,22,1,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,70,1,1555,72,1,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2010,-9,0,2254,-22,0,0 +2013,6,29,6,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,0,0,1722,-8,0,0 +2013,6,9,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,29,1,1645,37,1,0 +2013,7,28,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2130,130,1,2245,123,1,0 +2013,4,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1738,3,0,2051,-10,0,0 +2013,9,16,1,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,710,-5,0,1010,-5,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1035,9,0,1505,-14,0,0 +2013,5,28,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1608,-10,0,1813,-26,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1725,-6,0,1840,-30,0,0 +2013,5,14,2,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,52,1,1510,42,1,0 +2013,5,3,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,957,175,1,1041,183,1,0 +2013,5,19,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1655,24,1,1740,16,1,0 +2013,6,19,3,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,854,5,0,1035,9,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,45,1,2148,40,1,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,-1,0,1115,-5,0,0 +2013,4,13,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,0,0,1235,-5,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1259,3,0,1605,-15,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1705,-2,0,2021,7,0,0 +2013,9,9,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,610,-1,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2105,28,1,2225,29,1,0 +2013,8,11,7,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,915,-2,0,1115,-10,0,0 +2013,4,20,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-7,0,2040,-25,0,0 +2013,9,17,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-6,0,710,-14,0,0 +2013,8,17,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,805,-10,0,1151,-15,0,0 +2013,7,12,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,3,0,1018,6,0,0 +2013,7,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2102,0,0,2257,7,0,0 +2013,5,21,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1149,-6,0,1310,-10,0,0 +2013,4,3,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1201,-5,0,0 +2013,5,28,2,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-4,0,2020,-3,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,38,1,2248,98,1,0 +2013,10,3,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1325,17,1,1525,22,1,0 +2013,7,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,590,1,2350,600,1,0 +2013,10,27,7,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1040,-4,0,1625,-16,0,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2210,3,0,2340,-6,0,0 +2013,7,30,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,645,-5,0,940,-11,0,0 +2013,8,18,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1910,1,0,2125,7,0,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1520,-5,0,1907,-1,0,0 +2013,4,2,2,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-3,0,1605,-13,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-3,0,1031,-9,0,0 +2013,8,20,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,603,-6,0,716,-7,0,0 +2013,10,23,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,-7,0,1300,-9,0,0 +2013,6,15,6,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,958,18,1,1315,11,0,0 +2013,5,26,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,825,2,0,940,-4,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1332,-4,0,1402,-7,0,0 +2013,8,24,6,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1042,-2,0,1908,-7,0,0 +2013,9,20,5,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,750,3,0,1025,-26,0,0 +2013,9,18,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,849,-7,0,1041,-35,0,0 +2013,8,22,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,14,0,1340,14,0,0 +2013,10,11,5,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1605,2,0,1811,-3,0,0 +2013,5,11,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,-3,0,1448,-17,0,0 +2013,6,10,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1215,-1,0,1425,4,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,4,0,915,24,1,0 +2013,5,30,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,828,-6,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,-4,0,1542,-16,0,0 +2013,10,4,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,0,2059,-2,0,0 +2013,10,22,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1329,-3,0,1529,-8,0,0 +2013,8,17,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1825,3,0,1940,-7,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1705,8,0,1820,0,0,0 +2013,9,4,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1509,-6,0,1635,-14,0,0 +2013,8,2,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-7,0,903,-21,0,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2110,16,1,2225,11,0,0 +2013,4,26,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1800,86,1,1921,75,1,0 +2013,9,11,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-3,0,1905,-5,0,0 +2013,6,17,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1524,-8,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,0,0,910,-5,0,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1620,2,0,2105,10,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2155,39,1,2315,40,1,0 +2013,8,8,4,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,28,1,1235,28,1,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,-1,0,1450,-17,0,0 +2013,9,18,3,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-6,0,1815,3,0,0 +2013,5,23,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1847,112,1,2151,91,1,0 +2013,4,13,6,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1213,-2,0,1655,-5,0,0 +2013,5,12,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,840,-2,0,0 +2013,6,3,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1955,0,0,2110,-12,0,0 +2013,10,18,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1840,-4,0,2029,-16,0,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,545,-2,0,907,-27,0,0 +2013,8,16,5,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,710,-7,0,955,-18,0,0 +2013,7,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,4,0,2120,2,0,0 +2013,6,17,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1250,3,0,1649,-6,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1542,47,1,1709,102,1,0 +2013,5,1,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,-10,0,2105,-24,0,0 +2013,5,12,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1200,27,1,1709,17,1,0 +2013,8,9,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1548,-14,0,0 +2013,4,1,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,610,-5,0,950,-25,0,0 +2013,9,21,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,600,3,0,842,8,0,0 +2013,10,28,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1225,30,1,1345,18,1,0 +2013,9,30,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1124,34,1,1640,4,0,0 +2013,6,9,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1602,-10,0,0 +2013,8,31,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1405,-7,0,1525,-9,0,0 +2013,9,1,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1905,-4,0,2005,-16,0,0 +2013,10,8,2,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,-4,0,1255,4,0,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,645,-7,0,937,-10,0,0 +2013,6,25,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,0,0,2139,-10,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,905,-4,0,1025,-13,0,0 +2013,9,14,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,-1,0,1909,25,1,0 +2013,4,3,3,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1424,19,1,1618,11,0,0 +2013,4,13,6,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,32,1,913,3,0,0 +2013,6,21,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-8,0,718,-17,0,0 +2013,7,3,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,647,-3,0,809,10,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1600,26,1,1715,30,1,0 +2013,6,4,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,-13,0,828,-12,0,0 +2013,10,26,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1305,-4,0,1500,-25,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,945,4,0,1240,-13,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,630,-6,0,1053,-15,0,0 +2013,9,1,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1230,-9,0,1355,-13,0,0 +2013,9,18,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1557,-9,0,1704,-14,0,0 +2013,5,27,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,5,0,2113,6,0,0 +2013,6,16,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,754,15,1,1035,5,0,0 +2013,8,5,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,726,-4,0,908,-2,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1350,-5,0,1350,-4,0,0 +2013,9,19,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,-6,0,1943,16,1,0 +2013,8,28,3,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1655,-7,0,1806,-28,0,0 +2013,9,23,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2255,-4,0,626,-19,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1402,-5,0,1607,-5,0,0 +2013,9,4,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-6,0,2201,-34,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,171,1,1730,167,1,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1040,8,0,1535,2,0,0 +2013,6,13,4,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1000,-4,0,1250,-10,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,13,0,1450,0,0,0 +2013,6,23,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,836,-4,0,1030,0,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,840,16,1,1405,20,1,0 +2013,8,27,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,845,-2,0,1005,-7,0,0 +2013,4,13,6,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-1,0,1625,-27,0,0 +2013,8,30,5,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,0,0,1625,8,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,164,1,1905,157,1,0 +2013,10,11,5,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2153,-4,0,605,19,1,0 +2013,5,4,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1045,-6,0,1215,-11,0,0 +2013,5,25,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1525,0,0,1720,-5,0,0 +2013,9,10,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1237,1,0,1757,6,0,0 +2013,7,9,2,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1745,10,0,1910,9,0,0 +2013,9,20,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-10,0,1702,6,0,0 +2013,9,16,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,-2,0,940,-4,0,0 +2013,8,30,5,F9,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,21,1,645,29,1,0 +2013,8,29,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1123,2,0,1336,-3,0,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,925,-2,0,1150,-11,0,0 +2013,8,24,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-7,0,1309,-14,0,0 +2013,10,30,3,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1740,0,0,2106,1,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1700,13,0,1820,4,0,0 +2013,8,19,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1845,23,1,2010,29,1,0 +2013,4,23,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,3,0,1915,-6,0,0 +2013,7,6,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-7,0,1850,-26,0,0 +2013,10,28,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,-3,0,2057,3,0,0 +2013,8,29,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1240,-4,0,1535,3,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,835,-2,0,950,-20,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1545,-2,0,1826,-13,0,0 +2013,6,7,5,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,-5,0,1604,-14,0,0 +2013,5,5,7,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1600,162,1,1744,150,1,0 +2013,6,1,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,550,-2,0,1311,-5,0,0 +2013,6,16,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1236,-28,0,0 +2013,8,1,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1610,2,0,1656,-8,0,0 +2013,5,7,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,755,0,0,921,-7,0,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,959,-4,0,1125,-24,0,0 +2013,5,11,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,825,212,1,940,220,1,0 +2013,5,7,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1235,-2,0,1400,-7,0,0 +2013,8,16,5,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,2,0,1420,-2,0,0 +2013,4,4,4,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1710,0,0,2001,9,0,0 +2013,9,27,5,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,940,1,0,1010,-4,0,0 +2013,6,11,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1655,-7,0,1808,-1,0,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1115,52,1,1300,48,1,0 +2013,5,13,1,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,715,-4,0,735,-18,0,0 +2013,10,18,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1619,-3,0,2100,-11,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1124,-4,0,1211,-7,0,0 +2013,4,6,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,-7,0,1443,-23,0,0 +2013,7,18,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1340,6,0,1425,14,0,0 +2013,10,7,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1150,5,0,1400,-9,0,0 +2013,4,4,4,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,630,-5,0,740,-14,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1416,-3,0,1608,-27,0,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-10,0,1718,-5,0,0 +2013,6,2,7,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1100,0,0,1303,1,0,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1620,3,0,1705,1,0,0 +2013,8,26,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,6,0,1120,10,0,0 +2013,4,18,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1120,-7,0,1323,-7,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1215,-3,0,1450,-10,0,0 +2013,8,5,1,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,8,0,2140,-6,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,5,0,45,9,0,0 +2013,10,8,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1540,-1,0,1830,1,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,710,-8,0,930,-6,0,0 +2013,7,22,1,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,620,-6,0,827,-10,0,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1150,0,0,1255,-2,0,0 +2013,7,11,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,0,0,1024,4,0,0 +2013,5,29,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1140,1,0,1220,-1,0,0 +2013,6,27,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,836,-10,0,0 +2013,6,16,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1150,-4,0,1250,7,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,925,0,0,1400,5,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,8,0,1136,-1,0,0 +2013,9,15,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,715,-1,0,1015,-2,0,0 +2013,8,12,1,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1743,28,1,2014,6,0,0 +2013,8,11,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,-6,0,1715,-25,0,0 +2013,10,29,2,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1815,-7,0,2140,-41,0,0 +2013,6,10,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,810,-2,0,1032,1,0,0 +2013,5,28,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,3,0,1328,6,0,0 +2013,9,15,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,2,0,1437,13,0,0 +2013,8,13,2,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,701,-3,0,927,11,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,-5,0,859,-22,0,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1825,8,0,2014,-3,0,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1120,-2,0,1247,-23,0,0 +2013,9,24,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1724,-2,0,2304,-19,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,1815,46,1,2044,15,1,0 +2013,5,30,4,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1915,6,0,2155,-2,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-5,0,1631,-11,0,0 +2013,7,1,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,0,0,1619,9,0,0 +2013,5,6,1,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-8,0,752,-16,0,0 +2013,8,1,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,1014,-5,0,1227,-4,0,0 +2013,7,15,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,0,0,1145,-8,0,0 +2013,7,1,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,-3,0,1459,7,0,0 +2013,7,18,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,2,0,820,1,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,955,0,0,1115,5,0,0 +2013,4,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1459,-3,0,1957,8,0,0 +2013,6,20,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1036,-15,0,1222,-25,0,0 +2013,10,4,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,0,0,1700,23,1,0 +2013,8,8,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2025,10,0,2150,12,0,0 +2013,5,27,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,14,0,1327,13,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,41,1,2310,40,1,0 +2013,5,13,1,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,832,21,1,1047,8,0,0 +2013,5,16,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1455,16,1,1624,17,1,0 +2013,4,11,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-1,0,1026,-4,0,0 +2013,7,7,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1615,20,1,1800,14,0,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1945,28,1,2345,14,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1508,-5,0,2046,7,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1541,0,0,1824,-3,0,0 +2013,9,18,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,70,1,1517,54,1,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-1,0,1737,6,0,0 +2013,7,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,-1,0,1550,55,1,0 +2013,7,20,6,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,630,-2,0,940,-5,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,4,0,1846,-14,0,0 +2013,10,11,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-8,0,1845,-1,0,0 +2013,8,8,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1105,12,0,1210,9,0,0 +2013,10,16,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1526,-11,0,0 +2013,7,11,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1325,-5,0,1345,-13,0,0 +2013,9,5,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1755,-2,0,1930,-14,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-8,0,1434,-9,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,855,6,0,0 +2013,6,22,6,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,925,-4,0,1210,-6,0,0 +2013,10,28,1,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-9,0,2218,22,1,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1325,4,0,1450,11,0,0 +2013,4,30,2,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1515,-7,0,1740,-17,0,0 +2013,5,11,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-6,0,731,-13,0,0 +2013,10,25,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1941,-2,0,2256,-16,0,0 +2013,9,11,3,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1935,48,1,2047,43,1,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,-2,0,1032,-10,0,0 +2013,7,12,5,OO,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,0,0,2051,6,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,0,,2250,0,1,1 +2013,5,17,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,9,0,1558,-2,0,0 +2013,10,16,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,618,-8,0,659,-10,0,0 +2013,8,17,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,840,0,0,926,-8,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1916,16,1,2057,6,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,4,0,920,7,0,0 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,20,1,1917,19,1,0 +2013,5,8,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1915,-2,0,2035,-15,0,0 +2013,7,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1936,166,1,2120,160,1,0 +2013,9,20,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-7,0,1438,-14,0,0 +2013,8,16,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,855,5,0,1115,-7,0,0 +2013,10,8,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1550,100,1,1745,141,1,0 +2013,7,13,6,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1300,-4,0,1630,-9,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,945,0,0,1045,-9,0,0 +2013,6,23,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1549,-8,0,1742,-16,0,0 +2013,9,9,1,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1835,-5,0,2115,-6,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,6,0,1645,2,0,0 +2013,10,27,7,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-8,0,1544,-18,0,0 +2013,4,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,600,-4,0,658,-12,0,0 +2013,6,14,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-8,0,1400,-14,0,0 +2013,9,2,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-2,0,1835,-5,0,0 +2013,10,21,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1819,-2,0,2020,16,1,0 +2013,4,21,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-6,0,2322,-4,0,0 +2013,5,9,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1608,-4,0,1755,-12,0,0 +2013,6,6,4,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-7,0,2051,-7,0,0 +2013,6,22,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1335,10,0,1705,19,1,0 +2013,6,16,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,600,-1,0,735,-3,0,0 +2013,4,14,7,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,800,-5,0,1037,-16,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1410,38,1,1550,56,1,0 +2013,5,29,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,1,0,1951,-4,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1540,21,1,1801,2,0,0 +2013,4,14,7,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1518,-12,0,1745,-25,0,0 +2013,7,3,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,2,0,1535,-15,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2046,0,,525,0,1,1 +2013,6,19,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,18,1,1635,12,0,0 +2013,7,17,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1637,47,1,1810,40,1,0 +2013,5,22,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1900,-5,0,2143,-17,0,0 +2013,10,18,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-3,0,1415,8,0,0 +2013,4,16,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,605,-3,0,715,7,0,0 +2013,8,23,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1550,8,0,1850,0,0,0 +2013,4,23,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1920,80,1,2127,85,1,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1300,0,0,1510,-7,0,0 +2013,8,8,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,715,-3,0,955,-27,0,0 +2013,4,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,715,-4,0,850,3,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2057,2,0,2133,-6,0,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1400,-1,0,1505,-3,0,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,-1,0,1630,-10,0,0 +2013,6,5,3,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,-2,0,2135,-25,0,0 +2013,7,23,2,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-5,0,1554,-7,0,0 +2013,10,4,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,645,-2,0,655,1,0,0 +2013,10,3,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,-8,0,1900,-16,0,0 +2013,7,21,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,900,-5,0,1010,-16,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1225,44,1,1455,32,1,0 +2013,6,23,7,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,758,4,0,0 +2013,5,1,3,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,2,0,1117,-29,0,0 +2013,7,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-9,0,2133,-18,0,0 +2013,5,10,5,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-9,0,641,-21,0,0 +2013,4,12,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1750,-2,0,1905,-12,0,0 +2013,4,19,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,600,5,0,720,1,0,0 +2013,8,4,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,9,0,2008,19,1,0 +2013,8,28,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1051,40,1,1417,46,1,0 +2013,8,20,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,-3,0,1515,5,0,0 +2013,9,4,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,754,-6,0,842,-16,0,0 +2013,8,20,2,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1900,123,1,2226,78,1,0 +2013,10,5,6,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1645,29,1,1845,30,1,0 +2013,6,23,7,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2110,-5,0,550,-22,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,-3,0,1045,-13,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,830,-4,0,1035,-4,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,26,1,1402,43,1,0 +2013,4,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,8,0,2019,5,0,0 +2013,8,20,2,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1115,2,0,1150,2,0,0 +2013,7,18,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1131,1,0,1423,0,0,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,1,0,2251,-13,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1155,-2,0,1336,-6,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1125,14,0,1419,6,0,0 +2013,4,14,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,600,-8,0,818,-8,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,705,0,0,855,-31,0,0 +2013,9,5,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,840,-3,0,1025,-10,0,0 +2013,5,28,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1400,0,0,1500,0,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,925,11,0,1118,20,1,0 +2013,7,25,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1042,0,0,1329,-16,0,0 +2013,5,6,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,15,1,2205,11,0,0 +2013,10,7,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1604,125,1,1730,139,1,0 +2013,5,30,4,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1252,25,1,1557,10,0,0 +2013,8,16,5,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1712,5,0,1907,-17,0,0 +2013,9,23,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1115,-1,0,1959,-25,0,0 +2013,6,11,2,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,805,-26,0,0 +2013,4,16,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1000,19,1,1116,8,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1555,7,0,1743,0,0,0 +2013,7,7,7,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,6,0,2110,15,1,0 +2013,6,30,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,147,1,1720,161,1,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,851,31,1,939,16,1,0 +2013,10,17,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1957,1,0,2125,-7,0,0 +2013,5,3,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,722,-4,0,0 +2013,4,6,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1455,-10,0,1626,-16,0,0 +2013,8,17,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,949,-6,0,1045,-21,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,630,-3,0,800,3,0,0 +2013,10,11,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,18,1,1600,31,1,0 +2013,6,22,6,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-11,0,1400,-10,0,0 +2013,10,24,4,9E,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,-4,0,1424,-3,0,0 +2013,7,22,1,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1529,-16,0,0 +2013,8,7,3,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,816,-3,0,1620,-6,0,0 +2013,8,9,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,900,-3,0,1005,-21,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2000,45,1,2105,39,1,0 +2013,6,24,1,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1825,-6,0,2026,-3,0,0 +2013,6,12,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,0,0,1247,9,0,0 +2013,4,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1420,0,0,1540,-8,0,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1613,5,0,44,8,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2130,17,1,2300,23,1,0 +2013,7,6,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2005,-3,0,2228,-25,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1101,-4,0,1434,-15,0,0 +2013,9,11,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1636,-6,0,1921,-1,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2124,5,0,30,-5,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1610,1,0,2315,46,1,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,739,0,0,845,-6,0,0 +2013,7,20,6,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1119,40,1,1234,36,1,0 +2013,4,12,5,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,-5,0,2300,-3,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2050,34,1,2340,29,1,0 +2013,6,23,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,16,1,1520,1,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1829,4,0,2009,50,1,0 +2013,7,24,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1549,-2,0,1728,-13,0,0 +2013,10,30,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2040,25,1,2215,20,1,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-2,0,1056,-13,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1500,11,0,1730,14,0,0 +2013,8,1,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-3,0,1319,11,0,0 +2013,9,7,6,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,61,1,1900,48,1,0 +2013,10,21,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2210,-9,0,2328,-13,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1230,-4,0,1705,6,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1100,-2,0,1200,1,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-3,0,817,3,0,0 +2013,7,30,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1910,-9,0,2045,-22,0,0 +2013,5,20,1,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,-3,0,1055,-10,0,0 +2013,6,9,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1958,7,0,2125,1,0,0 +2013,4,18,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1756,162,1,1930,166,1,0 +2013,7,30,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1401,-4,0,1530,-6,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,11,0,2110,13,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,10,0,1414,1,0,0 +2013,10,23,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1255,-3,0,1405,-11,0,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,5,0,1928,27,1,0 +2013,5,10,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-4,0,618,-8,0,0 +2013,5,8,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,2059,-1,0,2344,1,0,0 +2013,10,20,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1340,-3,0,1618,-2,0,0 +2013,6,3,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,650,-4,0,834,-2,0,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,189,1,2201,170,1,0 +2013,5,16,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,841,0,0,1035,2,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-1,0,750,2,0,0 +2013,9,27,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-9,0,1244,2,0,0 +2013,7,5,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-4,0,1750,-22,0,0 +2013,6,1,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,-3,0,1522,4,0,0 +2013,7,12,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1630,-5,0,1805,-30,0,0 +2013,10,1,2,EV,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1310,20,1,1526,-14,0,0 +2013,7,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1635,44,1,1845,48,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,27,1,1620,6,0,0 +2013,5,15,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1745,-1,0,1959,-4,0,0 +2013,8,14,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2124,8,0,2317,4,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1000,15,1,1115,7,0,0 +2013,4,14,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-1,0,1235,-6,0,0 +2013,8,25,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1258,-7,0,1509,-12,0,0 +2013,5,25,6,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,24,1,1020,17,1,0 +2013,7,28,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1504,7,0,1635,-6,0,0 +2013,4,7,7,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1938,-10,0,2057,-12,0,0 +2013,7,24,3,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,2,0,1028,-8,0,0 +2013,7,3,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,1,0,2005,16,1,0 +2013,7,9,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-3,0,1748,8,0,0 +2013,4,17,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,0,0,1700,-10,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,0,0,1555,4,0,0 +2013,7,14,7,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,951,1,0,1458,-5,0,0 +2013,5,10,5,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,710,3,0,840,-6,0,0 +2013,4,28,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,-5,0,1219,-1,0,0 +2013,8,17,6,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,838,-2,0,1110,-27,0,0 +2013,9,12,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,0,0,850,-19,0,0 +2013,6,25,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2016,-8,0,2207,2,0,0 +2013,8,11,7,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,0,0,1035,-4,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1019,-6,0,1200,-12,0,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-3,0,1535,-11,0,0 +2013,4,28,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-1,0,1755,6,0,0 +2013,7,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1320,6,0,1445,3,0,0 +2013,7,15,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,1,0,2116,-6,0,0 +2013,9,11,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1635,-1,0,2006,67,1,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,-2,0,1530,-13,0,0 +2013,7,4,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1050,0,,1329,0,1,1 +2013,9,7,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1317,-4,0,1525,-22,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1452,2,0,1614,-5,0,0 +2013,7,31,3,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-5,0,1521,-11,0,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,4,0,2110,-20,0,0 +2013,8,28,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,34,1,1715,36,1,0 +2013,7,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2059,-7,0,2215,-6,0,0 +2013,4,30,2,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1353,210,1,1944,190,1,0 +2013,8,1,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1850,-5,0,2302,-3,0,0 +2013,8,10,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1650,2,0,1814,7,0,0 +2013,5,8,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1710,-1,0,1730,-9,0,0 +2013,5,16,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-5,0,1220,10,0,0 +2013,4,9,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,5,0,1605,-2,0,0 +2013,8,14,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,6,0,1258,7,0,0 +2013,9,3,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,6,0,2135,-3,0,0 +2013,10,20,7,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1044,12,0,1435,-9,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1950,0,0,2319,-14,0,0 +2013,10,23,3,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,625,-4,0,750,-9,0,0 +2013,5,25,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1215,6,0,1340,-4,0,0 +2013,10,1,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1110,-10,0,1417,-39,0,0 +2013,5,6,1,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1525,-5,0,1815,-11,0,0 +2013,8,28,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1726,-4,0,1900,-20,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1325,3,0,1435,-5,0,0 +2013,8,6,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,7,0,1345,-4,0,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-6,0,1838,-22,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1400,-1,0,1515,-11,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1755,1,0,1933,20,1,0 +2013,6,25,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1115,42,1,1515,40,1,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,5,0,1937,-9,0,0 +2013,8,6,2,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1546,-5,0,1648,-17,0,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1246,69,1,1841,84,1,0 +2013,9,13,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1706,-10,0,1900,-16,0,0 +2013,6,26,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-5,0,1424,2,0,0 +2013,4,10,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1302,7,0,1820,2,0,0 +2013,6,13,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1517,0,,1649,0,1,1 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,545,-9,0,933,12,0,0 +2013,4,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,1035,-17,0,0 +2013,4,8,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,0,0,920,-5,0,0 +2013,6,7,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,745,-1,0,855,-9,0,0 +2013,10,11,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1529,-8,0,1655,-7,0,0 +2013,7,4,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-10,0,852,-11,0,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,828,-2,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,-6,0,900,-16,0,0 +2013,4,11,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,745,0,0,1054,-2,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1734,0,0,2105,-1,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,52,1,945,27,1,0 +2013,9,8,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1035,2,0,1155,-6,0,0 +2013,8,8,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1639,19,1,0 +2013,5,10,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1357,-2,0,1710,12,0,0 +2013,9,13,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2016,30,1,2036,38,1,0 +2013,7,28,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1910,238,1,2050,222,1,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1305,-1,0,1442,-20,0,0 +2013,4,6,6,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1645,56,1,1820,45,1,0 +2013,8,27,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-10,0,2030,-24,0,0 +2013,10,12,6,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,925,-16,0,0 +2013,9,12,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1355,-1,0,1632,-5,0,0 +2013,4,28,7,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-10,0,1045,-11,0,0 +2013,9,6,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,725,290,1,745,284,1,0 +2013,4,11,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,32,1,2105,24,1,0 +2013,8,29,4,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1150,2,0,1400,5,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,-2,0,1125,-7,0,0 +2013,8,5,1,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,800,-2,0,1555,-5,0,0 +2013,7,3,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,-3,0,1900,-4,0,0 +2013,7,26,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1110,-3,0,1222,-10,0,0 +2013,5,31,5,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,74,1,1117,69,1,0 +2013,5,15,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1130,-8,0,1301,12,0,0 +2013,9,28,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,804,-2,0,1124,39,1,0 +2013,10,7,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1930,3,0,2105,-2,0,0 +2013,4,18,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1945,-1,0,2120,-23,0,0 +2013,9,3,2,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,134,1,1735,138,1,0 +2013,4,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1010,-10,0,1139,-18,0,0 +2013,5,9,4,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,1059,11,0,1258,-2,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1200,0,0,1405,-20,0,0 +2013,5,23,4,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1349,0,,1555,0,1,1 +2013,9,20,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,613,-3,0,1359,-25,0,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2258,0,0,702,-5,0,0 +2013,6,23,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-1,0,903,-9,0,0 +2013,9,26,4,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-9,0,1705,-27,0,0 +2013,4,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1200,71,1,1355,69,1,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,550,-5,0,913,-15,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,945,-5,0,1115,-13,0,0 +2013,10,28,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1020,-3,0,1220,6,0,0 +2013,5,8,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,815,-1,0,1010,-11,0,0 +2013,10,24,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,942,-8,0,0 +2013,8,10,6,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,2039,74,1,2200,92,1,0 +2013,6,13,4,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,95,1,1820,109,1,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1920,-1,0,5,-17,0,0 +2013,8,16,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-9,0,1014,-11,0,0 +2013,10,24,4,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,601,-5,0,946,-22,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1749,3,0,2034,-17,0,0 +2013,7,31,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-1,0,1525,1,0,0 +2013,6,1,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1019,-7,0,1128,-17,0,0 +2013,9,28,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1220,-1,0,1350,-14,0,0 +2013,5,6,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1438,-7,0,1634,-14,0,0 +2013,9,18,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1622,-5,0,1743,-9,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2235,-4,0,707,24,1,0 +2013,10,19,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-2,0,1607,-15,0,0 +2013,9,1,7,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-5,0,912,-4,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1220,173,1,1425,178,1,0 +2013,9,6,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1426,-1,0,1658,10,0,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,635,2,0,820,4,0,0 +2013,9,10,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1224,2,0,1430,43,1,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1719,79,1,1835,57,1,0 +2013,10,29,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,610,-1,0,740,7,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-2,0,1140,-1,0,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,14,0,2237,8,0,0 +2013,10,24,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1130,8,0,1230,11,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,850,56,1,1022,55,1,0 +2013,6,9,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,920,-13,0,0 +2013,10,18,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,835,-5,0,1041,-4,0,0 +2013,6,7,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1305,3,0,1427,-5,0,0 +2013,5,16,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-8,0,635,-16,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,635,-7,0,1110,-8,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1555,12,0,1730,-9,0,0 +2013,10,27,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-3,0,1639,-7,0,0 +2013,8,8,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1759,23,1,2120,19,1,0 +2013,5,3,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,-5,0,2023,-10,0,0 +2013,5,20,1,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1945,36,1,2120,38,1,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,730,-2,0,940,-8,0,0 +2013,10,27,7,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,17,1,2050,8,0,0 +2013,6,21,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-2,0,1019,-2,0,0 +2013,5,15,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,6,0,844,0,0,0 +2013,5,31,5,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-8,0,1123,5,0,0 +2013,8,17,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-5,0,1605,-13,0,0 +2013,5,28,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1750,-5,0,2110,-24,0,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,955,5,0,1200,-3,0,0 +2013,10,17,4,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,24,1,2220,11,0,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-2,0,1232,12,0,0 +2013,9,29,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1052,-8,0,1255,-15,0,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1359,5,0,1703,-27,0,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1740,3,0,2146,7,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-6,0,2118,-14,0,0 +2013,8,14,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1525,6,0,1627,-7,0,0 +2013,4,16,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1930,-6,0,2156,-2,0,0 +2013,5,30,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1640,0,0,1919,0,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,8,0,40,-22,0,0 +2013,7,8,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,950,-6,0,1130,-8,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2110,145,1,2243,129,1,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-1,0,1332,-13,0,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1635,-4,0,1951,-17,0,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,2125,1,0,5,3,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2200,55,1,2314,33,1,0 +2013,6,22,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1602,-9,0,1658,6,0,0 +2013,4,4,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-3,0,1838,7,0,0 +2013,4,13,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,755,22,1,1014,33,1,0 +2013,8,30,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,-2,0,1705,-11,0,0 +2013,6,21,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1235,-3,0,1440,-4,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,950,1,0,1105,-11,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1311,41,1,1452,43,1,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,4,0,1750,48,1,0 +2013,6,16,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-6,0,1003,-19,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,815,-3,0,915,-4,0,0 +2013,8,14,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,805,-2,0,0 +2013,10,19,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1214,5,0,1446,12,0,0 +2013,7,24,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,-11,0,1854,-6,0,0 +2013,10,31,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1300,-1,0,1459,-6,0,0 +2013,8,17,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,-3,0,1135,-1,0,0 +2013,9,16,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,947,5,0,1253,4,0,0 +2013,9,22,7,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1850,9,0,2212,17,1,0 +2013,8,18,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,17,1,1606,20,1,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2030,-1,0,2155,-7,0,0 +2013,8,9,5,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,0,0,1357,5,0,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,-6,0,1049,-23,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1745,-4,0,1753,-12,0,0 +2013,6,22,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,3,0,1829,8,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-5,0,1131,-11,0,0 +2013,9,2,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1400,10,0,1545,11,0,0 +2013,10,25,5,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1759,81,1,2000,90,1,0 +2013,7,11,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1645,44,1,1826,32,1,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1117,108,1,1259,130,1,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1603,0,0,2017,0,0,0 +2013,8,4,7,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,-3,0,1623,4,0,0 +2013,5,14,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-6,0,1811,-18,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1300,-2,0,1410,-18,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1150,12,0,1310,3,0,0 +2013,7,12,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-7,0,2103,-5,0,0 +2013,5,12,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,849,-5,0,1018,-19,0,0 +2013,6,14,5,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,-8,0,1835,-11,0,0 +2013,5,7,2,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,5,0,2133,1,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2135,195,1,8,185,1,0 +2013,10,28,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1130,-3,0,1350,10,0,0 +2013,4,20,6,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1615,-7,0,1841,-22,0,0 +2013,7,17,3,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1443,10,0,1644,11,0,0 +2013,4,23,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1317,-6,0,1530,-23,0,0 +2013,10,30,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1425,24,1,1721,32,1,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-4,0,1731,-3,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2150,-4,0,2334,0,0,0 +2013,6,20,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1515,-13,0,1800,0,0,0 +2013,8,19,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1315,2,0,1435,9,0,0 +2013,8,2,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1351,8,0,1516,3,0,0 +2013,8,6,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,40,1,2135,36,1,0 +2013,7,4,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,-4,0,1230,-10,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1405,20,1,1607,10,0,0 +2013,7,19,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,645,-16,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,800,-4,0,1230,-3,0,0 +2013,8,14,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1239,-8,0,1534,-16,0,0 +2013,10,18,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1359,10,0,1503,1,0,0 +2013,4,18,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1030,181,1,1226,157,1,0 +2013,9,9,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,16,1,1635,25,1,0 +2013,8,11,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1925,-3,0,2230,-25,0,0 +2013,9,8,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,545,-3,0,855,-22,0,0 +2013,8,5,1,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,638,-6,0,853,-10,0,0 +2013,6,9,7,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,27,1,1710,19,1,0 +2013,6,11,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,33,1,809,30,1,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1455,8,0,1750,18,1,0 +2013,6,11,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1910,0,,2040,0,1,1 +2013,5,25,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-4,0,1201,-9,0,0 +2013,8,27,2,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,840,-6,0,1025,-11,0,0 +2013,7,26,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,25,1,1947,36,1,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1620,0,0,1705,-7,0,0 +2013,8,2,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,737,-8,0,920,-6,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,17,1,930,10,0,0 +2013,7,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1652,146,1,1757,146,1,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-2,0,1807,1,0,0 +2013,9,28,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2129,-10,0,2323,-14,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,-3,0,1141,-14,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,805,-3,0,925,-18,0,0 +2013,10,7,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1709,-12,0,1833,-20,0,0 +2013,4,7,7,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1245,1,0,1500,-15,0,0 +2013,5,24,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1005,-1,0,1125,-9,0,0 +2013,8,10,6,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,700,7,0,1250,8,0,0 +2013,5,30,4,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1420,-7,0,1640,-8,0,0 +2013,8,12,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,10,0,900,11,0,0 +2013,5,3,5,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1225,15,1,1330,-14,0,0 +2013,4,24,3,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1855,-4,0,2148,-13,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-7,0,2011,-2,0,0 +2013,6,6,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,545,0,0,804,-2,0,0 +2013,6,9,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-1,0,900,16,1,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1110,7,0,1435,3,0,0 +2013,5,2,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,952,-2,0,1220,-13,0,0 +2013,9,27,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1749,-13,0,2004,-14,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2045,-2,0,2205,-16,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-1,0,1247,-17,0,0 +2013,7,1,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1110,-6,0,1238,-11,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2025,-6,0,2300,-8,0,0 +2013,5,4,6,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,945,-8,0,1240,-18,0,0 +2013,4,9,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,810,4,0,1050,1,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1952,4,0,2235,-9,0,0 +2013,4,20,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1717,-10,0,1820,-23,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,-3,0,2257,0,0,0 +2013,5,15,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1619,1,0,1914,-12,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2040,-2,0,2206,-9,0,0 +2013,4,4,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1745,-3,0,2024,-8,0,0 +2013,10,3,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1559,11,0,1654,17,1,0 +2013,8,12,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,65,1,5,79,1,0 +2013,10,11,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,735,-6,0,1308,-29,0,0 +2013,8,14,3,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-1,0,1153,5,0,0 +2013,9,21,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,910,-5,0,1030,-10,0,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1715,5,0,2305,0,0,0 +2013,6,15,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,630,-4,0,745,-13,0,0 +2013,10,6,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,6,0,1633,-21,0,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,2000,-1,0,2209,-11,0,0 +2013,6,21,5,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2245,-3,0,654,19,1,0 +2013,5,31,5,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1225,-1,0,1435,-14,0,0 +2013,5,19,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,930,-4,0,1035,-6,0,0 +2013,6,3,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1705,11,0,1935,13,0,0 +2013,4,23,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1140,1,0,1431,-20,0,0 +2013,5,22,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,0,0,952,-9,0,0 +2013,10,20,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1130,-5,0,1255,-19,0,0 +2013,6,9,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,-2,0,2045,-16,0,0 +2013,9,11,3,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1156,-7,0,1647,-3,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1325,-1,0,1527,-10,0,0 +2013,7,7,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,913,-5,0,1430,-10,0,0 +2013,10,17,4,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,659,11,0,912,8,0,0 +2013,6,24,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1125,27,1,1230,20,1,0 +2013,4,14,7,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1125,3,0,1337,-4,0,0 +2013,5,7,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1730,17,1,1950,11,0,0 +2013,5,2,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1135,-5,0,1725,-11,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,33,1,1940,30,1,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2100,85,1,2230,94,1,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2140,52,1,2315,42,1,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2150,3,0,530,2,0,0 +2013,4,17,3,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1300,121,1,1420,137,1,0 +2013,7,15,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,67,1,1630,67,1,0 +2013,9,4,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-6,0,1411,-32,0,0 +2013,6,12,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,0,0,1935,-6,0,0 +2013,4,24,3,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1039,-13,0,1344,-8,0,0 +2013,5,6,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1900,-4,0,2135,-9,0,0 +2013,9,24,2,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1938,-17,0,2254,-32,0,0 +2013,6,15,6,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,-1,0,1459,-9,0,0 +2013,8,5,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2031,-4,0,2125,4,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,600,-1,0,640,-1,0,0 +2013,9,22,7,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,27,1,2255,20,1,0 +2013,10,27,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,-1,0,1737,-6,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-5,0,910,-5,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1909,-3,0,2037,-17,0,0 +2013,8,27,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-6,0,2126,-7,0,0 +2013,4,26,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1139,-3,0,1349,-2,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1605,8,0,1750,15,1,0 +2013,9,6,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1120,3,0,1235,-17,0,0 +2013,10,25,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-4,0,950,-23,0,0 +2013,8,30,5,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,823,-5,0,1421,-10,0,0 +2013,5,3,5,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1250,19,1,1525,11,0,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,3,0,1530,1,0,0 +2013,5,7,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1440,2,0,1737,-20,0,0 +2013,8,14,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,7,0,1810,3,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1055,29,1,1435,30,1,0 +2013,10,9,3,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,31,1,2115,45,1,0 +2013,6,24,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,0,0,851,-7,0,0 +2013,5,3,5,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2100,-8,0,516,6,0,0 +2013,7,27,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,0,0,1809,2,0,0 +2013,9,16,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1601,-4,0,1809,-9,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1129,-3,0,1252,-13,0,0 +2013,5,27,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-9,0,1940,-26,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,523,4,0,1051,3,0,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1055,6,0,1310,-7,0,0 +2013,9,21,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1756,2,0,1929,-17,0,0 +2013,9,16,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2125,-7,0,2230,-22,0,0 +2013,10,9,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,655,-4,0,1200,-10,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1100,-1,0,1425,-2,0,0 +2013,7,13,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,1505,-4,0,1559,-1,0,0 +2013,7,10,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,13,0,1405,-3,0,0 +2013,6,23,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,0,0,843,-1,0,0 +2013,10,21,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,-7,0,1312,-8,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,749,-1,0,1101,-10,0,0 +2013,6,17,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-6,0,1619,-5,0,0 +2013,8,2,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,20,1,1006,45,1,0 +2013,10,17,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-10,0,1520,-17,0,0 +2013,7,1,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-10,0,1656,41,1,0 +2013,7,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1653,122,1,1933,118,1,0 +2013,7,31,3,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,56,1,1915,60,1,0 +2013,6,23,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2020,0,0,2359,8,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,615,-5,0,740,-18,0,0 +2013,9,27,5,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1357,-6,0,1547,-13,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,-2,0,1015,-5,0,0 +2013,6,23,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-4,0,1210,-18,0,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,117,1,1900,96,1,0 +2013,7,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,710,47,1,1046,34,1,0 +2013,6,12,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1426,10,0,1729,-5,0,0 +2013,6,26,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,855,-3,0,1015,-7,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,855,-6,0,912,16,1,0 +2013,5,24,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,715,-8,0,1008,-4,0,0 +2013,8,16,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-6,0,1255,-9,0,0 +2013,6,11,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1155,5,0,1255,-2,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1150,39,1,1330,22,1,0 +2013,5,14,2,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,630,-4,0,1454,4,0,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1056,-6,0,1858,-36,0,0 +2013,9,19,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1143,-9,0,1614,9,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1022,-6,0,1212,-5,0,0 +2013,5,6,1,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-2,0,843,0,0,0 +2013,10,23,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,940,-2,0,1215,-10,0,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1534,11,0,1626,7,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,732,-6,0,929,-21,0,0 +2013,9,6,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,920,-7,0,941,-18,0,0 +2013,7,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1745,5,0,2035,2,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1540,52,1,1655,44,1,0 +2013,7,18,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1715,-3,0,2000,-19,0,0 +2013,5,14,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-6,0,1501,-15,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,725,-3,0,845,-15,0,0 +2013,9,8,7,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1820,1,0,2001,-8,0,0 +2013,6,30,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,1951,5,0,503,-6,0,0 +2013,4,24,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,845,-3,0,950,-10,0,0 +2013,8,27,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-8,0,903,-47,0,0 +2013,7,28,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,-2,0,1815,6,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1752,-1,0,1953,-11,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,630,17,1,755,21,1,0 +2013,5,30,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,622,-5,0,755,-12,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1740,-1,0,1852,-14,0,0 +2013,7,19,5,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,730,1,0,930,-11,0,0 +2013,9,26,4,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-6,0,1007,-16,0,0 +2013,5,6,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-4,0,635,-17,0,0 +2013,6,27,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1135,168,1,1316,199,1,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,615,-6,0,730,-7,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1057,16,1,1339,31,1,0 +2013,8,20,2,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-6,0,1024,-16,0,0 +2013,6,23,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-1,0,1329,-7,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1520,2,0,1620,-1,0,0 +2013,8,13,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,-2,0,1110,-7,0,0 +2013,7,11,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,810,-2,0,1200,-1,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,-6,0,2241,-21,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1120,-2,0,1258,-20,0,0 +2013,7,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1315,103,1,1610,111,1,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,0,0,1955,-3,0,0 +2013,4,12,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,931,2,0,1129,-18,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,-4,0,1922,-12,0,0 +2013,4,21,7,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1440,-2,0,1655,-3,0,0 +2013,9,28,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-7,0,1524,-17,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1509,0,,1643,0,1,1 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,62,1,1154,62,1,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1050,1,0,1810,35,1,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1051,-4,0,1430,-12,0,0 +2013,6,21,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1420,30,1,1530,24,1,0 +2013,6,28,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1005,2,0,1210,-16,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,-5,0,1424,-17,0,0 +2013,5,1,3,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1715,18,1,2041,-12,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1659,0,0,1832,-14,0,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1755,0,0,2130,-10,0,0 +2013,7,12,5,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1230,6,0,1525,13,0,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,-2,0,1019,13,0,0 +2013,7,30,2,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-6,0,1355,-19,0,0 +2013,5,28,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1602,-3,0,1920,7,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1805,-3,0,1933,-9,0,0 +2013,6,26,3,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1521,92,1,1623,80,1,0 +2013,6,15,6,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,2159,-6,0,2354,-11,0,0 +2013,10,24,4,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,925,-7,0,1207,-16,0,0 +2013,8,28,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1032,-1,0,1551,2,0,0 +2013,8,30,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,743,-6,0,1524,-11,0,0 +2013,7,2,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,17,1,1006,29,1,0 +2013,8,26,1,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-12,0,1340,-17,0,0 +2013,5,8,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,11,0,1700,-2,0,0 +2013,7,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1535,24,1,1740,16,1,0 +2013,7,18,4,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,920,0,0,1105,-12,0,0 +2013,8,18,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1110,3,0,1229,0,1,1 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,-5,0,2101,-16,0,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,745,-1,0,900,4,0,0 +2013,7,28,7,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,710,-7,0,740,-5,0,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,110,1,2105,104,1,0 +2013,6,19,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1354,7,0,1450,9,0,0 +2013,6,10,1,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,6,0,2247,26,1,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1510,-1,0,1640,6,0,0 +2013,6,26,3,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-1,0,1225,-10,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2235,-6,0,2358,-8,0,0 +2013,5,5,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-5,0,2315,6,0,0 +2013,10,27,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1350,-1,0,1710,-6,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,10,0,2255,8,0,0 +2013,6,15,6,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1415,-5,0,1545,-5,0,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1925,25,1,2050,18,1,0 +2013,7,22,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1758,-6,0,1927,-7,0,0 +2013,6,5,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,11,0,1354,3,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1400,10,0,1825,3,0,0 +2013,5,21,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,63,1,1524,47,1,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,555,-1,0,915,-16,0,0 +2013,8,4,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-4,0,735,0,0,0 +2013,7,18,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,102,1,1004,80,1,0 +2013,4,19,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1255,78,1,1805,72,1,0 +2013,10,19,6,EV,15016,Lambert-St. Louis International,St. Louis,MO,12264,Washington Dulles International,Washington,DC,1758,3,0,2058,-7,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,-3,0,1640,-14,0,0 +2013,8,20,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-3,0,935,-5,0,0 +2013,6,12,3,9E,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,825,-1,0,1123,16,1,0 +2013,8,7,3,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,-3,0,2206,-13,0,0 +2013,10,20,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1050,-3,0,1225,-18,0,0 +2013,8,10,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,640,5,0,937,-6,0,0 +2013,8,9,5,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1230,6,0,1345,4,0,0 +2013,10,14,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1530,28,1,1813,21,1,0 +2013,4,27,6,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1105,10,0,1220,-5,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,940,9,0,1050,-8,0,0 +2013,10,1,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,840,0,0,945,-16,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1750,10,0,1915,-2,0,0 +2013,9,15,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-7,0,1642,-18,0,0 +2013,7,18,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1855,12,0,2215,20,1,0 +2013,9,23,1,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,700,0,0,740,4,0,0 +2013,6,12,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1940,7,0,2215,7,0,0 +2013,5,9,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1500,1,0,1610,-7,0,0 +2013,4,19,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,2015,7,0,2240,-2,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1615,33,1,1750,35,1,0 +2013,5,29,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1900,14,0,2110,7,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,845,-1,0,1130,-13,0,0 +2013,5,13,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1805,30,1,1936,46,1,0 +2013,10,25,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,800,-4,0,1029,-1,0,0 +2013,7,7,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2040,0,,2159,0,1,1 +2013,6,15,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,6,0,1530,-2,0,0 +2013,7,27,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1135,75,1,1310,79,1,0 +2013,6,13,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,2,0,2220,3,0,0 +2013,9,6,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-7,0,1922,-20,0,0 +2013,10,18,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1341,-18,0,0 +2013,9,3,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2045,79,1,2200,67,1,0 +2013,6,8,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1300,-4,0,1411,-3,0,0 +2013,6,18,2,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,615,-4,0,745,-6,0,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,-3,0,2317,6,0,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-6,0,1115,-2,0,0 +2013,6,6,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,628,-2,0,815,4,0,0 +2013,8,1,4,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,0,0,1405,-11,0,0 +2013,9,22,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1645,54,1,1752,46,1,0 +2013,5,20,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1515,-1,0,1530,-5,0,0 +2013,9,20,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1050,-1,0,1140,8,0,0 +2013,6,17,1,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,5,0,2355,-25,0,0 +2013,8,5,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,1,0,1400,-15,0,0 +2013,4,18,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-6,0,707,-26,0,0 +2013,6,11,2,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,630,35,1,801,25,1,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1306,1,0,1545,-4,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1456,23,1,1720,14,0,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,905,-3,0,1610,-26,0,0 +2013,7,2,2,DL,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1905,2,0,2020,-5,0,0 +2013,4,17,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-4,0,1415,-19,0,0 +2013,6,10,1,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2105,23,1,2355,10,0,0 +2013,9,25,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1755,44,1,1916,39,1,0 +2013,4,1,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,93,1,1515,80,1,0 +2013,9,21,6,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1059,4,0,1904,5,0,0 +2013,8,23,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,12,0,1712,26,1,0 +2013,4,12,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1750,-4,0,1920,-13,0,0 +2013,7,14,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,102,1,1950,104,1,0 +2013,6,7,5,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1047,2,0,1259,-1,0,0 +2013,4,8,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1135,-4,0,1920,-23,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1110,-5,0,1331,-5,0,0 +2013,5,5,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-6,0,1445,-25,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2007,53,1,2208,51,1,0 +2013,4,23,2,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,650,0,0,855,-2,0,0 +2013,5,31,5,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,1,0,855,-2,0,0 +2013,8,15,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1056,26,1,1205,18,1,0 +2013,8,25,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-7,0,1205,-28,0,0 +2013,6,18,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,705,4,0,1519,-30,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1845,-3,0,2215,-20,0,0 +2013,4,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1005,0,0,1120,-6,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1050,-2,0,1515,-3,0,0 +2013,9,30,1,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1440,65,1,1715,41,1,0 +2013,10,17,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-5,0,1124,-3,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,715,-1,0,1030,-14,0,0 +2013,9,20,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,655,-3,0,810,-5,0,0 +2013,5,26,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2020,-8,0,2332,-18,0,0 +2013,4,13,6,WN,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1105,10,0,1350,1,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1651,-2,0,1819,-12,0,0 +2013,8,11,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1816,1,0,2017,2,0,0 +2013,4,7,7,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-2,0,1955,9,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,730,1,0,832,0,0,0 +2013,9,2,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1714,59,1,2019,62,1,0 +2013,4,25,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,820,-5,0,1015,11,0,0 +2013,5,18,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,-6,0,949,0,0,0 +2013,8,26,1,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1234,-6,0,2103,-9,0,0 +2013,9,4,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-5,0,2143,-33,0,0 +2013,10,19,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1110,-2,0,1430,0,0,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,740,0,0,900,-4,0,0 +2013,7,21,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,60,1,2135,50,1,0 +2013,6,30,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1555,62,1,1828,54,1,0 +2013,7,24,3,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1505,-3,0,1645,-18,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,14,0,1720,5,0,0 +2013,7,21,7,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,2,0,2135,-6,0,0 +2013,6,21,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1735,218,1,2015,211,1,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,905,13,0,1125,2,0,0 +2013,5,3,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,-3,0,35,-9,0,0 +2013,4,14,7,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1952,1,0,2258,-4,0,0 +2013,5,28,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1700,-2,0,2005,-8,0,0 +2013,6,14,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,952,-4,0,1312,-6,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2000,-4,0,2135,-27,0,0 +2013,9,28,6,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1605,-6,0,1715,-17,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1115,-3,0,1255,-34,0,0 +2013,4,29,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1800,-1,0,1915,-11,0,0 +2013,6,27,4,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-3,0,1105,4,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,-4,0,2351,8,0,0 +2013,7,15,1,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1721,-6,0,1925,-25,0,0 +2013,10,25,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-5,0,2054,-18,0,0 +2013,7,29,1,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-4,0,1159,-7,0,0 +2013,7,23,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1951,127,1,2316,128,1,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,1,0,1800,-3,0,0 +2013,8,26,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-4,0,1853,-15,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1305,-7,0,1627,-15,0,0 +2013,6,28,5,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1725,51,1,1838,50,1,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,900,-1,0,1625,-11,0,0 +2013,7,19,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,12,0,2230,11,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,162,1,2105,134,1,0 +2013,4,26,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,740,3,0,850,-5,0,0 +2013,5,24,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,8,0,1017,6,0,0 +2013,4,11,4,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,720,-3,0,850,-20,0,0 +2013,7,16,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,904,4,0,0 +2013,10,18,5,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,36,1,1552,35,1,0 +2013,10,11,5,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2257,-8,0,19,-3,0,0 +2013,7,4,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,810,-3,0,1101,6,0,0 +2013,9,6,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1443,0,0,1820,1,0,0 +2013,8,7,3,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,6,0,1254,-5,0,0 +2013,8,31,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1254,80,1,1630,79,1,0 +2013,7,3,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-8,0,1643,-25,0,0 +2013,10,2,3,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-2,0,1945,-5,0,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1250,95,1,1436,87,1,0 +2013,7,29,1,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,-4,0,1635,-21,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1635,25,1,2215,-14,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1635,25,1,2145,13,0,0 +2013,4,28,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,25,1,1830,28,1,0 +2013,5,24,5,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,831,62,1,905,56,1,0 +2013,10,21,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,0,0,826,-10,0,0 +2013,4,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,600,0,0,940,-13,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,-4,0,2056,-32,0,0 +2013,10,31,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1625,1,0,1635,5,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,850,106,1,1030,119,1,0 +2013,10,8,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1940,-4,0,2240,-20,0,0 +2013,8,4,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1955,-7,0,2145,5,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-4,0,1612,5,0,0 +2013,4,18,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1340,14,0,1435,22,1,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1950,-5,0,2130,-20,0,0 +2013,7,12,5,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1425,155,1,1655,144,1,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,745,-3,0,900,-13,0,0 +2013,7,17,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,-2,0,1850,-10,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2320,12,0,517,1,0,0 +2013,5,18,6,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,652,-16,0,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2308,9,0,509,-12,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,740,0,0,855,-8,0,0 +2013,7,11,4,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1720,5,0,2011,11,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1236,-1,0,1418,-2,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,530,0,0,735,-2,0,0 +2013,6,25,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1600,23,1,1632,23,1,0 +2013,5,27,1,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1803,-3,0,2110,-22,0,0 +2013,9,9,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1530,-6,0,2135,-14,0,0 +2013,5,30,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1541,99,1,1716,114,1,0 +2013,10,23,3,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2104,-1,0,500,-14,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,725,-5,0,1032,-11,0,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1752,35,1,2010,35,1,0 +2013,10,24,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,9,0,2125,-6,0,0 +2013,6,2,7,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1203,147,1,1709,136,1,0 +2013,9,18,3,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1700,352,1,1820,342,1,0 +2013,5,26,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1700,127,1,2005,123,1,0 +2013,10,23,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,604,-5,0,730,-12,0,0 +2013,8,3,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2010,3,0,2130,4,0,0 +2013,6,26,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,46,1,2245,38,1,0 +2013,7,20,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,735,-4,0,1015,-20,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,91,1,2359,89,1,0 +2013,10,29,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-7,0,833,-6,0,0 +2013,7,14,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1145,12,0,1310,8,0,0 +2013,5,19,7,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1337,-3,0,1504,-9,0,0 +2013,9,2,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,4,0,1735,8,0,0 +2013,6,26,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,725,-1,0,820,-5,0,0 +2013,10,7,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1005,-8,0,1138,11,0,0 +2013,5,4,6,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1845,11,0,2145,-22,0,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,16,1,930,13,0,0 +2013,7,26,5,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2153,-2,0,105,-14,0,0 +2013,10,1,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,-5,0,1546,-3,0,0 +2013,6,1,6,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-6,0,900,6,0,0 +2013,5,2,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,-2,0,1100,-6,0,0 +2013,5,13,1,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,711,-2,0,927,-12,0,0 +2013,7,29,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,9,0,1859,-8,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1745,-1,0,2000,-5,0,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1500,12,0,1624,0,0,0 +2013,7,2,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-2,0,511,-11,0,0 +2013,10,27,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,0,0,1040,25,1,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1320,0,0,1540,-6,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,25,29,1,541,37,1,0 +2013,6,25,2,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,-3,0,900,4,0,0 +2013,4,24,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1405,-5,0,2000,-24,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,-4,0,2320,-3,0,0 +2013,9,3,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-5,0,945,-21,0,0 +2013,4,17,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1705,1,0,1809,14,0,0 +2013,5,15,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,826,-6,0,951,-11,0,0 +2013,5,8,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1755,60,1,1925,58,1,0 +2013,10,14,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1345,-6,0,1730,-12,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,0,,1529,0,1,1 +2013,9,27,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1343,-23,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1435,104,1,1655,102,1,0 +2013,4,2,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1750,-1,0,1910,-9,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2259,-6,0,107,-21,0,0 +2013,9,26,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,820,37,1,1113,36,1,0 +2013,4,30,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,700,-8,0,814,-6,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,850,-1,0,1010,3,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2145,-4,0,2359,-12,0,0 +2013,4,10,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1250,-3,0,1357,-10,0,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2125,-4,0,4,6,0,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,925,-4,0,1050,-9,0,0 +2013,8,6,2,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1720,-12,0,1900,-17,0,0 +2013,8,13,2,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1335,2,0,1945,-30,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,1,0,1305,0,0,0 +2013,8,31,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1840,40,1,1950,34,1,0 +2013,5,11,6,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1800,92,1,2025,77,1,0 +2013,5,20,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-5,0,1030,9,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,7,0,1850,31,1,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,-5,0,1803,-9,0,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2015,16,1,2120,25,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-2,0,1029,-8,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,2010,10,0,2340,2,0,0 +2013,4,23,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-2,0,745,5,0,0 +2013,4,30,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1051,0,0,1142,-1,0,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,-3,0,950,-12,0,0 +2013,8,8,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,16,1,2105,20,1,0 +2013,10,3,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1115,-1,0,1220,-2,0,0 +2013,10,20,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1032,-3,0,1309,-5,0,0 +2013,10,23,3,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1417,-1,0,1638,-1,0,0 +2013,5,22,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,3,0,2055,-19,0,0 +2013,7,21,7,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1731,-5,0,2110,-15,0,0 +2013,8,13,2,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1306,-6,0,2043,-15,0,0 +2013,8,3,6,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,940,-5,0,1208,-10,0,0 +2013,9,3,2,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,1120,-4,0,1846,-10,0,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1840,41,1,2310,34,1,0 +2013,6,24,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1100,121,1,1235,127,1,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1503,15,1,1733,25,1,0 +2013,10,15,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,720,-1,0,945,-25,0,0 +2013,7,13,6,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1255,-8,0,1615,-13,0,0 +2013,8,3,6,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2035,-8,0,2155,-13,0,0 +2013,4,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,6,0,2125,-1,0,0 +2013,8,13,2,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-5,0,947,11,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1115,21,1,1715,18,1,0 +2013,6,26,3,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-1,0,1025,-2,0,0 +2013,7,11,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,600,-2,0,715,-6,0,0 +2013,7,4,4,OO,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,645,-5,0,930,-15,0,0 +2013,8,28,3,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,930,-4,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,140,1,1548,136,1,0 +2013,9,25,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,5,0,1215,-4,0,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,12,0,1535,4,0,0 +2013,4,28,7,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1500,0,0,2055,-2,0,0 +2013,9,10,2,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-2,0,1121,20,1,0 +2013,4,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,705,0,0,755,-3,0,0 +2013,9,28,6,WN,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,11,0,1555,8,0,0 +2013,5,10,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1521,0,0,1705,9,0,0 +2013,10,23,3,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,647,-12,0,932,-13,0,0 +2013,9,3,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-9,0,2126,-14,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1230,0,0,2021,-5,0,0 +2013,6,28,5,WN,15304,Tampa International,Tampa,FL,11066,Port Columbus International,Columbus,OH,1710,-1,0,1925,-9,0,0 +2013,6,30,7,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-5,0,755,-15,0,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,904,-5,0,1056,0,0,0 +2013,6,8,6,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,54,1,723,51,1,0 +2013,7,22,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-3,0,1835,-5,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,9,0,1300,14,0,0 +2013,10,12,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-2,0,757,-26,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1607,12,0,2013,-6,0,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1740,5,0,2036,28,1,0 +2013,8,27,2,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1635,24,1,1855,-3,0,0 +2013,9,7,6,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1402,-7,0,1636,-15,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,555,2,0,925,-3,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1200,39,1,1332,43,1,0 +2013,8,21,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1446,-4,0,1622,-3,0,0 +2013,8,26,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,-7,0,1915,-12,0,0 +2013,4,24,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,29,1,2100,24,1,0 +2013,10,24,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1327,-2,0,1621,-16,0,0 +2013,7,24,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1352,-8,0,1438,-8,0,0 +2013,4,7,7,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,915,-7,0,1205,-6,0,0 +2013,4,7,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,2,0,1916,19,1,0 +2013,9,9,1,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,930,-1,0,1530,0,0,0 +2013,9,13,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,-1,0,1010,0,0,0 +2013,7,1,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2245,135,1,135,122,1,0 +2013,10,5,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,9,0,1031,14,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,600,-3,0,805,-9,0,0 +2013,7,26,5,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1414,-6,0,2245,-5,0,0 +2013,10,22,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1524,5,0,1809,-14,0,0 +2013,4,15,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,-5,0,2300,-13,0,0 +2013,6,7,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1209,23,1,1510,16,1,0 +2013,5,21,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1250,9,0,1415,1,0,0 +2013,7,10,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,67,1,1450,69,1,0 +2013,7,9,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,750,10,0,905,6,0,0 +2013,8,24,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,4,0,1123,13,0,0 +2013,7,20,6,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,704,-11,0,1033,3,0,0 +2013,6,19,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-3,0,859,16,1,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-5,0,730,-13,0,0 +2013,10,5,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1425,-4,0,1648,-8,0,0 +2013,4,5,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1225,-28,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,14,0,2020,13,0,0 +2013,4,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,13,0,1155,2,0,0 +2013,4,4,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,805,0,0,935,0,0,0 +2013,8,13,2,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1348,16,1,1604,4,0,0 +2013,9,25,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,2,0,1435,5,0,0 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1022,-3,0,1255,0,0,0 +2013,5,29,3,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1705,27,1,2100,23,1,0 +2013,5,19,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,633,-6,0,750,-20,0,0 +2013,10,14,1,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1615,-10,0,1921,4,0,0 +2013,7,14,7,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,103,1,550,104,1,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,13,0,1351,7,0,0 +2013,8,13,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,4,0,621,-13,0,0 +2013,5,12,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-10,0,1308,4,0,0 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,8,0,1810,-9,0,0 +2013,8,9,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1457,24,1,1709,18,1,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,915,-1,0,1040,-9,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-4,0,900,-7,0,0 +2013,4,17,3,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,0,0,2148,-15,0,0 +2013,6,28,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1215,40,1,1815,43,1,0 +2013,8,13,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1943,-1,0,2340,-27,0,0 +2013,6,16,7,DL,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1030,70,1,1631,43,1,0 +2013,7,12,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1410,61,1,1532,87,1,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1025,3,0,1229,2,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1918,15,1,2047,3,0,0 +2013,7,17,3,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1200,-6,0,2013,-9,0,0 +2013,5,14,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,-4,0,1920,-8,0,0 +2013,9,20,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,46,0,0,841,-12,0,0 +2013,10,2,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1125,17,1,1720,-5,0,0 +2013,7,20,6,YV,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-5,0,1849,3,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,72,1,2035,66,1,0 +2013,4,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1710,-5,0,1818,-9,0,0 +2013,9,12,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1755,84,1,1857,84,1,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,800,-7,0,1035,-11,0,0 +2013,8,3,6,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,-2,0,1740,14,0,0 +2013,9,23,1,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1240,-5,0,1449,1,0,0 +2013,10,30,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-5,0,1432,-37,0,0 +2013,4,29,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1318,0,,1420,0,1,1 +2013,9,23,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,7,0,1935,-1,0,0 +2013,5,6,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,-1,0,1840,4,0,0 +2013,5,7,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1350,5,0,1515,4,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,-4,0,1533,-17,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-2,0,829,-6,0,0 +2013,7,19,5,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,615,-1,0,803,-12,0,0 +2013,7,3,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1900,2,0,2220,4,0,0 +2013,5,29,3,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-2,0,1213,-3,0,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1055,-9,0,1233,-7,0,0 +2013,7,6,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,640,7,0,800,0,0,0 +2013,4,14,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,-3,0,1115,-6,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2145,74,1,2356,53,1,0 +2013,8,30,5,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1512,-2,0,1835,-13,0,0 +2013,6,22,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-3,0,1520,-1,0,0 +2013,7,27,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,851,61,1,1051,46,1,0 +2013,7,23,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-1,0,900,32,1,0 +2013,8,18,7,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1835,3,0,1950,-3,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,1,0,1924,-12,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1610,-2,0,1621,-4,0,0 +2013,5,27,1,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1109,0,0,1830,-5,0,0 +2013,7,9,2,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-5,0,1024,-11,0,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-6,0,1520,-24,0,0 +2013,7,31,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-3,0,649,-1,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-3,0,1201,2,0,0 +2013,6,23,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,-4,0,1206,-11,0,0 +2013,8,26,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-7,0,1620,-15,0,0 +2013,7,9,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,-6,0,2155,-9,0,0 +2013,9,3,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,2,0,2135,-6,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,-1,0,925,-6,0,0 +2013,6,16,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1405,-2,0,1515,-12,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,940,0,0,1100,-9,0,0 +2013,5,12,7,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1350,6,0,1512,4,0,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2155,2,0,2300,9,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2216,-3,0,2346,8,0,0 +2013,7,23,2,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1652,9,0,1751,5,0,0 +2013,7,18,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,3,0,1025,11,0,0 +2013,10,31,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-2,0,1634,-6,0,0 +2013,10,28,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,910,-2,0,1204,-7,0,0 +2013,9,18,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,-10,0,619,-16,0,0 +2013,5,31,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,1,0,950,20,1,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,608,-4,0,826,-8,0,0 +2013,7,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-7,0,1225,-18,0,0 +2013,7,15,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1355,-8,0,1411,-3,0,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1848,0,,1945,0,1,1 +2013,6,26,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,73,1,2251,58,1,0 +2013,7,10,3,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1300,2,0,1525,-5,0,0 +2013,7,1,1,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,840,3,0,1136,13,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,-7,0,2210,-10,0,0 +2013,5,24,5,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,6,0,2015,-7,0,0 +2013,4,10,3,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,1030,1,0,1630,8,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-5,0,918,-6,0,0 +2013,9,7,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,913,-2,0,1200,4,0,0 +2013,8,29,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1355,21,1,1905,19,1,0 +2013,4,23,2,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,605,-5,0,855,-9,0,0 +2013,7,22,1,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,-4,0,1538,3,0,0 +2013,9,26,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,2,0,955,7,0,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,2100,48,1,2250,38,1,0 +2013,9,5,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,8,0,810,8,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,917,33,1,1737,33,1,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1451,-6,0,1701,7,0,0 +2013,6,29,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1730,111,1,1850,110,1,0 +2013,9,15,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,-4,0,1425,7,0,0 +2013,9,14,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1535,-3,0,1650,-7,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1510,0,0,1630,-5,0,0 +2013,10,23,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-5,0,1905,1,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,820,-4,0,945,-11,0,0 +2013,9,2,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1027,275,1,1206,268,1,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1250,5,0,1845,9,0,0 +2013,5,14,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-10,0,830,-27,0,0 +2013,10,7,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1940,54,1,1950,52,1,0 +2013,8,11,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-7,0,1414,-13,0,0 +2013,10,24,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,938,-4,0,1127,-4,0,0 +2013,6,6,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,226,1,2106,210,1,0 +2013,10,15,2,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-1,0,2048,-16,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,13,0,2010,0,0,0 +2013,4,21,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,2,0,825,-7,0,0 +2013,10,26,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-2,0,2051,-2,0,0 +2013,9,3,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1415,51,1,1505,55,1,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-4,0,1523,-18,0,0 +2013,10,9,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-2,0,1645,-8,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,-1,0,1045,-20,0,0 +2013,7,2,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1702,31,1,1935,50,1,0 +2013,7,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,730,0,0,947,0,0,0 +2013,6,1,6,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1558,-3,0,2004,3,0,0 +2013,4,8,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1456,-4,0,1712,-4,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,-2,0,2033,-7,0,0 +2013,8,12,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,5,0,2153,18,1,0 +2013,10,3,4,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1545,8,0,1717,40,1,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1356,0,0,1548,0,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,15,1,2020,49,1,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-3,0,1612,20,1,0 +2013,6,7,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,21,1,1620,12,0,0 +2013,4,28,7,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2005,62,1,2140,53,1,0 +2013,9,3,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,655,2,0,950,6,0,0 +2013,8,14,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-2,0,2210,-5,0,0 +2013,5,12,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,-4,0,1452,-4,0,0 +2013,7,16,2,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,-5,0,1230,-20,0,0 +2013,10,22,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,11,0,1820,5,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1825,0,0,2010,-15,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1014,-7,0,1409,-12,0,0 +2013,8,30,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1305,8,0,1500,-5,0,0 +2013,9,30,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,20,1,1400,22,1,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,-6,0,2308,-18,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2110,16,1,2235,10,0,0 +2013,6,26,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1702,2,0,1829,5,0,0 +2013,6,12,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1006,-1,0,1628,-14,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,1115,-10,0,0 +2013,9,3,2,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,700,22,1,950,8,0,0 +2013,8,25,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,-6,0,1640,-10,0,0 +2013,7,26,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1605,13,0,2155,4,0,0 +2013,9,11,3,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,1,0,1355,-5,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1055,30,1,1305,40,1,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,957,-6,0,1224,-5,0,0 +2013,5,20,1,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,800,-2,0,955,-26,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1614,0,0,1712,-12,0,0 +2013,7,31,3,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,925,15,1,1750,33,1,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,9,0,1810,-10,0,0 +2013,6,9,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2045,17,1,2330,17,1,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,0,0,2337,-13,0,0 +2013,8,25,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-4,0,1010,0,0,0 +2013,10,5,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1540,-7,0,1554,0,0,0 +2013,8,21,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,2,0,1018,-7,0,0 +2013,6,29,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1205,-3,0,1320,-11,0,0 +2013,10,31,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-3,0,2221,-1,0,0 +2013,7,13,6,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2300,4,0,704,4,0,0 +2013,5,12,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,843,-8,0,1045,-13,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1629,0,0,1750,-7,0,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,53,1,1055,37,1,0 +2013,4,27,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,600,-5,0,910,-16,0,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1755,-4,0,2029,9,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2038,0,0,2200,-10,0,0 +2013,10,10,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,0,0,712,-4,0,0 +2013,9,23,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1215,10,0,1320,3,0,0 +2013,5,21,2,9E,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1109,11,0,1249,21,1,0 +2013,8,28,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1235,0,0,1320,-7,0,0 +2013,4,6,6,OO,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1804,0,0,2107,-11,0,0 +2013,7,8,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,14,0,910,3,0,0 +2013,9,1,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1630,23,1,1800,13,0,0 +2013,10,3,4,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-7,0,955,-16,0,0 +2013,8,8,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,640,-4,0,840,1,0,0 +2013,9,15,7,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,16,1,1910,20,1,0 +2013,9,19,4,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1620,40,1,2020,42,1,0 +2013,7,19,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,-4,0,1505,-9,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1345,51,1,1710,40,1,0 +2013,7,24,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1428,70,1,1626,57,1,0 +2013,6,16,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,0,0,2035,-8,0,0 +2013,6,22,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-10,0,1241,-15,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,24,1,2035,135,1,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2105,-3,0,2300,11,0,0 +2013,5,21,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-7,0,759,-21,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,6,0,1615,-11,0,0 +2013,7,7,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-1,0,648,-4,0,0 +2013,10,6,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1320,65,1,1600,44,1,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1645,101,1,2020,82,1,0 +2013,5,11,6,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,62,1,1645,39,1,0 +2013,10,15,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1140,-5,0,1305,-11,0,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1500,93,1,1940,95,1,0 +2013,10,15,2,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1221,0,0,1340,-7,0,0 +2013,4,6,6,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,925,5,0,1115,-7,0,0 +2013,6,15,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1725,-6,0,1950,-12,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1001,-2,0,1306,-20,0,0 +2013,5,20,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,630,-3,0,725,4,0,0 +2013,7,17,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1641,21,1,1941,1,0,0 +2013,7,12,5,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1130,-5,0,1400,6,0,0 +2013,4,16,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1105,132,1,1913,124,1,0 +2013,5,20,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,2115,22,1,40,11,0,0 +2013,6,7,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,82,1,1015,67,1,0 +2013,7,9,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,1320,-16,0,0 +2013,8,11,7,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,-1,0,1935,-9,0,0 +2013,10,4,5,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,36,1,930,115,1,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1020,8,0,1250,-6,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,830,0,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2030,17,1,2206,4,0,0 +2013,9,11,3,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1535,4,0,1725,-2,0,0 +2013,10,21,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,-4,0,2033,-10,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,750,-3,0,910,-11,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1309,2,0,1354,3,0,0 +2013,7,15,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1130,-3,0,1300,4,0,0 +2013,6,8,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,600,6,0,845,7,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1955,-1,0,2108,-9,0,0 +2013,4,18,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1820,34,1,2041,37,1,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,550,4,0,905,-9,0,0 +2013,9,18,3,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,552,-4,0,832,-12,0,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,1,0,1250,5,0,0 +2013,7,25,4,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-7,0,1015,-1,0,0 +2013,5,5,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2013,3,0,2139,-3,0,0 +2013,9,23,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,7,0,1758,-20,0,0 +2013,10,15,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,605,-11,0,720,-17,0,0 +2013,5,8,3,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2115,-1,0,2350,8,0,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1730,11,0,1855,-3,0,0 +2013,6,25,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,842,-9,0,1251,-13,0,0 +2013,5,24,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2155,5,0,2340,-7,0,0 +2013,7,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-4,0,1934,-5,0,0 +2013,8,23,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,1,0,1822,-11,0,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-2,0,1248,-17,0,0 +2013,4,13,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1520,10,0,1630,8,0,0 +2013,6,12,3,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1600,-7,0,2110,-23,0,0 +2013,4,10,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-7,0,2143,-13,0,0 +2013,8,19,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,815,-4,0,930,-9,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,7,0,2253,4,0,0 +2013,8,21,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,-2,0,1440,-9,0,0 +2013,5,30,4,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1310,-3,0,1400,-8,0,0 +2013,9,9,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1355,14,0,1737,6,0,0 +2013,10,20,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,848,-9,0,0 +2013,7,31,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-13,0,818,-10,0,0 +2013,6,13,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,123,1,2155,128,1,0 +2013,4,7,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-7,0,2019,-17,0,0 +2013,6,23,7,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,-6,0,1413,-15,0,0 +2013,4,20,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1454,-1,0,1608,-9,0,0 +2013,5,31,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,700,1,0,942,1,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,3,0,2034,6,0,0 +2013,10,20,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1742,-3,0,1848,-4,0,0 +2013,7,4,4,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,615,-4,0,830,-20,0,0 +2013,5,27,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,-13,0,940,-37,0,0 +2013,10,16,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1405,-8,0,1505,-4,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,815,-1,0,1035,1,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2057,-2,0,2224,-11,0,0 +2013,7,21,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,0,0,1004,-16,0,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1920,-4,0,2301,-14,0,0 +2013,5,13,1,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,926,-11,0,1129,-21,0,0 +2013,8,2,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1350,30,1,1615,19,1,0 +2013,8,16,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-7,0,1744,-23,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1229,-6,0,1343,-24,0,0 +2013,9,25,3,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1552,-7,0,1736,-23,0,0 +2013,9,23,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1210,3,0,1300,2,0,0 +2013,5,29,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1225,7,0,1335,-9,0,0 +2013,5,11,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1835,28,1,2015,17,1,0 +2013,9,21,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,820,16,1,920,5,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1518,17,1,1935,3,0,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1946,-4,0,2139,12,0,0 +2013,8,2,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1010,-8,0,1128,-11,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-4,0,2204,-14,0,0 +2013,6,8,6,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,815,1,0,950,-29,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,910,-2,0,1620,-12,0,0 +2013,10,31,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-8,0,1434,0,0,0 +2013,5,7,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1842,-10,0,2005,-3,0,0 +2013,4,6,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1433,0,0,1641,-6,0,0 +2013,5,6,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,47,1,2125,28,1,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,3,0,2259,7,0,0 +2013,9,5,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1725,22,1,2015,12,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1455,77,1,1648,56,1,0 +2013,6,16,7,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1716,-7,0,1815,-13,0,0 +2013,9,21,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1833,-18,0,0 +2013,6,25,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,2359,2,0,539,-14,0,0 +2013,8,22,4,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,615,-3,0,945,-2,0,0 +2013,10,24,4,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,623,-1,0,815,-12,0,0 +2013,7,2,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,846,-6,0,0 +2013,10,8,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,919,33,1,1103,6,0,0 +2013,5,2,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,825,-7,0,1419,-5,0,0 +2013,7,18,4,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,845,-5,0,1110,-21,0,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1329,-3,0,1637,-2,0,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1455,-2,0,1615,-6,0,0 +2013,4,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1530,5,0,1650,-1,0,0 +2013,5,30,4,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1131,-5,0,1609,-28,0,0 +2013,8,31,6,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1234,238,1,1359,234,1,0 +2013,5,21,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1300,58,1,1538,83,1,0 +2013,9,12,4,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-2,0,1215,13,0,0 +2013,5,29,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1936,-5,0,2221,-5,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,755,-5,0,1055,-14,0,0 +2013,8,12,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-7,0,1256,-30,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,958,25,1,1316,16,1,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,720,0,0,840,-1,0,0 +2013,10,21,1,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,620,-2,0,703,-6,0,0 +2013,10,24,4,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-4,0,457,-13,0,0 +2013,6,23,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,901,3,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1208,-4,0,1320,-16,0,0 +2013,8,6,2,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1246,-6,0,1650,-11,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,13,0,1625,-3,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-4,0,1310,-11,0,0 +2013,10,3,4,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1919,-3,0,2215,-35,0,0 +2013,5,17,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,914,-6,0,0 +2013,10,8,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1755,-10,0,1915,-19,0,0 +2013,8,17,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2203,-5,0,49,-37,0,0 +2013,6,14,5,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,805,335,1,950,342,1,0 +2013,6,28,5,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1625,8,0,1730,-4,0,0 +2013,4,17,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1040,-3,0,1210,-19,0,0 +2013,10,5,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1755,12,0,1940,5,0,0 +2013,7,22,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,940,0,0,1110,-10,0,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,5,0,1911,-27,0,0 +2013,6,16,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,905,-2,0,1015,-8,0,0 +2013,5,28,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,19,1,619,14,0,0 +2013,5,14,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1500,-12,0,2055,-11,0,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2020,-3,0,2054,-18,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,4,0,1210,2,0,0 +2013,4,4,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1530,30,1,1715,7,0,0 +2013,7,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-8,0,1020,-13,0,0 +2013,8,24,6,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1120,-4,0,1239,-4,0,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,13796,Metropolitan Oakland International,Oakland,CA,1942,2,0,2308,8,0,0 +2013,10,16,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1025,0,0,1155,-2,0,0 +2013,6,19,3,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,-3,0,720,-13,0,0 +2013,5,22,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,944,-6,0,1120,2,0,0 +2013,8,30,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,2120,18,1,2230,13,0,0 +2013,6,16,7,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,730,-1,0,905,6,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,810,-2,0,932,-19,0,0 +2013,4,20,6,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1435,28,1,1623,11,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,2040,12,0,2221,9,0,0 +2013,6,27,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,104,1,2044,86,1,0 +2013,6,17,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1700,64,1,1835,51,1,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1850,20,1,2017,22,1,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1320,31,1,1625,101,1,0 +2013,7,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,-1,0,814,10,0,0 +2013,7,28,7,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1125,-6,0,1300,-13,0,0 +2013,8,13,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,655,4,0,810,1,0,0 +2013,4,27,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-10,0,1150,8,0,0 +2013,9,30,1,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1010,1,0,1115,-9,0,0 +2013,9,3,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,4,0,1708,-2,0,0 +2013,9,1,7,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1430,10,0,2240,3,0,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,-3,0,950,-20,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,813,0,0,940,-5,0,0 +2013,10,7,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1855,12,0,2018,11,0,0 +2013,10,16,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1815,-6,0,2055,-17,0,0 +2013,10,25,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1225,29,1,1355,22,1,0 +2013,9,6,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1740,27,1,1855,27,1,0 +2013,4,28,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1228,-4,0,0 +2013,5,16,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1204,41,1,1444,28,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1015,-2,0,1153,-11,0,0 +2013,5,11,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,16,1,931,17,1,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1944,-3,0,2037,-18,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,-5,0,1209,-19,0,0 +2013,9,12,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,700,-1,0,1032,36,1,0 +2013,8,17,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,-2,0,2126,-9,0,0 +2013,4,7,7,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1015,-8,0,1315,-7,0,0 +2013,5,19,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1818,-4,0,2030,2,0,0 +2013,6,16,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1555,-6,0,1700,-17,0,0 +2013,10,14,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1435,9,0,1600,10,0,0 +2013,6,8,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1610,-15,0,1640,5,0,0 +2013,6,7,5,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1016,-11,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,530,0,0,735,-6,0,0 +2013,5,4,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1207,-3,0,1402,-32,0,0 +2013,4,26,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-5,0,1110,-7,0,0 +2013,7,17,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,520,-3,0,621,-4,0,0 +2013,8,30,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1810,22,1,1935,10,0,0 +2013,8,6,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,710,-4,0,829,-8,0,0 +2013,4,12,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,41,1,1215,44,1,0 +2013,6,3,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1734,149,1,1956,148,1,0 +2013,5,2,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,-7,0,720,-14,0,0 +2013,8,27,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,-2,0,1015,-4,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,15,1,1605,15,1,0 +2013,10,15,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1750,22,1,1925,14,0,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1758,10,0,2044,26,1,0 +2013,4,30,2,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,2333,-3,0,644,-23,0,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,-2,0,810,5,0,0 +2013,9,23,1,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,955,-3,0,1254,-28,0,0 +2013,8,17,6,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,-3,0,2343,-25,0,0 +2013,4,28,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,12,0,1100,-5,0,0 +2013,8,30,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-1,0,1550,-23,0,0 +2013,4,26,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-3,0,2058,-8,0,0 +2013,4,2,2,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2155,-2,0,542,14,0,0 +2013,10,22,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1330,-5,0,1609,-5,0,0 +2013,9,28,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,-2,0,1335,-1,0,0 +2013,9,11,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,830,-7,0,1118,21,1,0 +2013,10,29,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1030,-1,0,1200,-11,0,0 +2013,8,15,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-5,0,1925,-13,0,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1050,-4,0,1140,-13,0,0 +2013,7,7,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,841,9,0,0 +2013,10,18,5,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1448,-7,0,1806,-13,0,0 +2013,7,28,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,-4,0,1328,0,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,917,-1,0,1737,-16,0,0 +2013,8,29,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,0,0,1750,-4,0,0 +2013,4,2,2,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2055,6,0,2220,9,0,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,17,1,2240,-6,0,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1800,19,1,2039,43,1,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,836,-5,0,1005,-19,0,0 +2013,5,19,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1330,-3,0,1442,2,0,0 +2013,7,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1931,0,0,2320,-10,0,0 +2013,10,5,6,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-7,0,1245,-13,0,0 +2013,4,4,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,3,0,1635,-6,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1850,-1,0,2003,-9,0,0 +2013,4,18,4,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1730,58,1,1745,49,1,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,-6,0,1004,-17,0,0 +2013,4,12,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,630,0,0,810,-7,0,0 +2013,10,22,2,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1206,18,1,1750,10,0,0 +2013,6,13,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,0,0,1638,-3,0,0 +2013,10,18,5,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,931,-2,0,1110,1,0,0 +2013,6,13,4,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1752,3,0,2159,7,0,0 +2013,7,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,915,1,0,1015,-1,0,0 +2013,5,26,7,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1805,-3,0,2132,-28,0,0 +2013,4,15,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,28,1,1605,31,1,0 +2013,9,18,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1735,-3,0,2057,-7,0,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2155,34,1,2259,13,0,0 +2013,10,16,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1635,48,1,1655,37,1,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1302,-4,0,1520,-13,0,0 +2013,7,8,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,22,1,1413,16,1,0 +2013,8,23,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,0,,1210,0,1,1 +2013,9,24,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1345,-2,0,1455,0,0,0 +2013,9,24,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,905,-1,0,1710,-10,0,0 +2013,6,7,5,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,902,-11,0,0 +2013,8,8,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1435,-4,0,1535,-7,0,0 +2013,4,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,22,1,2118,52,1,0 +2013,4,4,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1129,-11,0,0 +2013,5,8,3,OO,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1129,-3,0,1325,-14,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-2,0,910,-26,0,0 +2013,7,11,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,725,-4,0,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,850,67,1,1209,84,1,0 +2013,7,29,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1330,135,1,1605,144,1,0 +2013,4,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,724,-5,0,1029,-1,0,0 +2013,4,16,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,-9,0,741,-16,0,0 +2013,6,28,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1325,11,0,1633,1,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1949,-1,0,2224,-13,0,0 +2013,10,3,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1115,-9,0,1232,-9,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1320,14,0,1635,10,0,0 +2013,7,28,7,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1915,0,,2131,0,1,1 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,638,-6,0,914,-22,0,0 +2013,6,6,4,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,950,-2,0,1208,15,1,0 +2013,8,10,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2115,0,0,126,-2,0,0 +2013,7,16,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1645,-6,0,1800,-36,0,0 +2013,5,8,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,0,,1900,0,1,1 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,805,49,1,1014,28,1,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,930,23,1,1309,-33,0,0 +2013,10,14,1,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1220,1,0,1405,-13,0,0 +2013,9,7,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1705,-5,0,1825,-10,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2140,2,0,20,1,0,0 +2013,7,10,3,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1234,73,1,2025,51,1,0 +2013,5,13,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1510,1,0,1710,-32,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,-2,0,1102,7,0,0 +2013,8,1,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,0,0,1615,-12,0,0 +2013,6,22,6,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,847,-7,0,0 +2013,5,21,2,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,618,5,0,752,-7,0,0 +2013,9,9,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1719,-3,0,1840,1,0,0 +2013,8,13,2,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1030,44,1,1157,27,1,0 +2013,5,25,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,8,0,935,3,0,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,-3,0,1003,-25,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,3,0,1355,-9,0,0 +2013,10,25,5,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-3,0,2004,0,0,0 +2013,5,26,7,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1443,-5,0,1635,-17,0,0 +2013,8,20,2,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,700,1,0,1300,0,0,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1315,-3,0,1420,-10,0,0 +2013,7,10,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,655,-2,0,840,14,0,0 +2013,4,4,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,610,13,0,900,11,0,0 +2013,8,30,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1828,-2,0,2024,-13,0,0 +2013,6,12,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1340,131,1,1507,126,1,0 +2013,5,29,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,13,0,1705,9,0,0 +2013,9,23,1,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,930,-6,0,1117,-4,0,0 +2013,5,7,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,700,-8,0,850,-10,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1610,-5,0,1718,-14,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1302,-3,0,1447,-1,0,0 +2013,5,5,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-6,0,2125,10,0,0 +2013,4,26,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1955,-5,0,2115,-21,0,0 +2013,10,24,4,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2022,10,0,2246,2,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1300,1,0,1651,9,0,0 +2013,7,21,7,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,-5,0,1508,-15,0,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-3,0,1150,-15,0,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1531,6,0,1915,-23,0,0 +2013,9,22,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1307,-5,0,1524,-10,0,0 +2013,8,17,6,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2325,-8,0,509,-12,0,0 +2013,9,21,6,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1450,-4,0,1700,-18,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,14,0,2241,0,0,0 +2013,10,10,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-5,0,610,-3,0,0 +2013,8,14,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,3,0,2124,62,1,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1110,18,1,1225,8,0,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1156,-2,0,1408,-3,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,2020,8,0,2235,5,0,0 +2013,7,21,7,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,0,0,1205,5,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1515,31,1,1715,42,1,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2232,-6,0,659,-20,0,0 +2013,8,5,1,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1700,-10,0,2141,-26,0,0 +2013,6,4,2,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,-6,0,615,5,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,1,0,1042,-10,0,0 +2013,9,4,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1343,-22,0,0 +2013,5,31,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-4,0,1811,-10,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1655,4,0,1833,-9,0,0 +2013,5,10,5,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,810,-6,0,1050,-5,0,0 +2013,10,14,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-1,0,1245,-44,0,0 +2013,7,16,2,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,850,-5,0,1014,-23,0,0 +2013,9,3,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,0,0,1747,1,0,0 +2013,5,20,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1730,224,1,1825,212,1,0 +2013,4,27,6,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,540,-6,0,722,-16,0,0 +2013,7,13,6,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,0,0,1230,-9,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,715,5,0,820,2,0,0 +2013,5,13,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2145,37,1,105,-11,0,0 +2013,4,5,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1225,-3,0,1440,-20,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2015,-1,0,2315,-5,0,0 +2013,10,11,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,153,1,2052,125,1,0 +2013,5,10,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1310,6,0,1605,7,0,0 +2013,8,22,4,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1845,26,1,2059,20,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1955,-5,0,2205,4,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1925,3,0,2149,-8,0,0 +2013,10,11,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1955,118,1,2120,103,1,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2010,138,1,2135,135,1,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2012,-8,0,2307,5,0,0 +2013,4,7,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1633,-6,0,1923,5,0,0 +2013,8,27,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1725,-6,0,1800,-13,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,833,0,0,926,2,0,0 +2013,5,29,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,111,1,2110,104,1,0 +2013,8,5,1,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1649,-5,0,1828,-12,0,0 +2013,8,15,4,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1239,-6,0,1427,-2,0,0 +2013,9,3,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1320,3,0,1905,26,1,0 +2013,7,12,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1415,0,0,1540,-11,0,0 +2013,7,24,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1249,-8,0,1550,7,0,0 +2013,9,5,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,0,0,2014,-2,0,0 +2013,6,25,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-3,0,1535,-25,0,0 +2013,6,17,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1637,7,0,0 +2013,5,17,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-3,0,1728,-4,0,0 +2013,7,10,3,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1949,-3,0,2100,34,1,0 +2013,9,26,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,800,0,,900,0,1,1 +2013,5,25,6,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1759,-1,0,2107,43,1,0 +2013,6,2,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1110,1,0,1310,-14,0,0 +2013,10,24,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1750,-2,0,2037,13,0,0 +2013,6,28,5,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,720,24,1,945,-18,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-4,0,1313,1,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1740,21,1,2305,16,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,10,0,1855,-9,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1745,33,1,2250,26,1,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1252,1,0,1758,-4,0,0 +2013,9,8,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1238,-7,0,1437,-17,0,0 +2013,10,16,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,-4,0,1730,-21,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1815,5,0,2046,2,0,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1325,0,0,1629,1,0,0 +2013,4,11,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-12,0,835,-5,0,0 +2013,9,11,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1416,6,0,1548,-3,0,0 +2013,10,15,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1255,41,1,1350,52,1,0 +2013,8,8,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,34,1,1903,18,1,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,52,1,55,40,1,0 +2013,4,23,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1110,-6,0,1300,-6,0,0 +2013,6,30,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1600,37,1,1648,48,1,0 +2013,7,12,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,700,61,1,1003,41,1,0 +2013,6,10,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,8,0,1730,-10,0,0 +2013,5,2,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,735,3,0,835,9,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1540,6,0,1930,12,0,0 +2013,7,16,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,615,-8,0,945,-5,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1225,0,,1800,0,1,1 +2013,4,8,1,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,1,0,1518,-8,0,0 +2013,10,21,1,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1845,-9,0,2019,-16,0,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-8,0,800,-17,0,0 +2013,9,15,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1455,-8,0,1634,-43,0,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,2,0,1435,-5,0,0 +2013,10,13,7,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,-1,0,1235,-14,0,0 +2013,7,7,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,835,-5,0,940,-24,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,74,1,2215,72,1,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,745,24,1,1050,27,1,0 +2013,6,23,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,8,0,1305,-2,0,0 +2013,7,30,2,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1910,22,1,2132,8,0,0 +2013,9,3,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-8,0,1810,-22,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1210,6,0,1500,14,0,0 +2013,8,13,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1325,16,1,1450,16,1,0 +2013,4,8,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,-5,0,1931,-6,0,0 +2013,4,17,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1837,-5,0,2132,-5,0,0 +2013,7,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1445,25,1,1622,16,1,0 +2013,9,12,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,0,0,1550,65,1,0 +2013,5,20,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2126,-8,0,547,29,1,0 +2013,8,27,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-4,0,1426,-16,0,0 +2013,6,4,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1053,59,1,1210,44,1,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,6,0,1346,16,1,0 +2013,9,15,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,-2,0,910,-25,0,0 +2013,8,14,3,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2200,2,0,550,-9,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,535,-7,0,935,-19,0,0 +2013,5,31,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1028,7,0,1426,-20,0,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,0,,2355,0,1,1 +2013,10,11,5,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,600,0,0,745,-18,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-3,0,1929,-1,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,825,-6,0,1010,-9,0,0 +2013,9,23,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,645,12,0,1235,2,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2318,12,0,510,12,0,0 +2013,7,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,600,0,0,725,-3,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1500,15,1,1605,18,1,0 +2013,9,18,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1830,7,0,2155,-6,0,0 +2013,9,25,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1700,-8,0,1910,-1,0,0 +2013,4,21,7,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1105,-9,0,1538,-17,0,0 +2013,4,29,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1500,-7,0,1917,-30,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,32,1,2225,34,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,8,0,2255,10,0,0 +2013,7,1,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1619,-5,0,1913,-5,0,0 +2013,5,19,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,56,1,1856,68,1,0 +2013,8,2,5,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,11,0,1425,27,1,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1930,76,1,2102,64,1,0 +2013,8,1,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,70,1,1805,67,1,0 +2013,6,24,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,184,1,2140,186,1,0 +2013,6,14,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1518,7,0,1616,5,0,0 +2013,8,25,7,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,718,-7,0,1039,-19,0,0 +2013,6,7,5,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,2,0,2110,9,0,0 +2013,6,11,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1655,17,1,2005,4,0,0 +2013,8,1,4,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1639,-14,0,0 +2013,5,4,6,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,840,1,0,1035,0,0,0 +2013,8,28,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1720,5,0,1920,-22,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,27,1,2222,18,1,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1739,0,0,1933,4,0,0 +2013,8,22,4,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1620,87,1,1930,84,1,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1825,-2,0,2005,-39,0,0 +2013,5,31,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,-3,0,1942,-9,0,0 +2013,6,3,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,-5,0,2105,-1,0,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,2,0,1603,9,0,0 +2013,8,20,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1250,-1,0,1647,12,0,0 +2013,9,18,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1546,-5,0,1657,-8,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1000,-9,0,0 +2013,4,19,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,840,7,0,1704,-8,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1700,35,1,1820,22,1,0 +2013,5,20,1,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1650,29,1,1745,16,1,0 +2013,8,15,4,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1105,-9,0,1317,-16,0,0 +2013,9,26,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,942,-1,0,1141,-4,0,0 +2013,5,23,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,36,1,2023,75,1,0 +2013,10,14,1,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1019,-5,0,1315,-16,0,0 +2013,8,23,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1440,0,0,1530,2,0,0 +2013,5,15,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,-1,0,940,-11,0,0 +2013,6,7,5,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,-4,0,1701,-6,0,0 +2013,7,27,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,22,1,2250,15,1,0 +2013,6,4,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-9,0,702,-17,0,0 +2013,4,18,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,15,1,1714,80,1,0 +2013,8,28,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,-6,0,1118,-19,0,0 +2013,9,2,1,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1849,-12,0,2134,-12,0,0 +2013,8,18,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,958,-3,0,1230,-21,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2215,8,0,2350,2,0,0 +2013,7,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,0,,625,0,1,1 +2013,8,14,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2050,60,1,2150,56,1,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1912,8,0,2107,3,0,0 +2013,7,16,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,735,8,0,0 +2013,8,18,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-6,0,1445,3,0,0 +2013,10,31,4,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,805,2,0,1029,-21,0,0 +2013,6,16,7,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,6,0,2133,-19,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1906,13,0,2226,27,1,0 +2013,7,1,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,954,7,0,1238,30,1,0 +2013,6,24,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-1,0,1240,8,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-5,0,1006,-1,0,0 +2013,10,9,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1024,-11,0,1107,-7,0,0 +2013,6,9,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,-2,0,2105,0,0,0 +2013,5,22,3,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,4,0,2035,-14,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1605,18,1,1720,0,0,0 +2013,7,15,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,44,1,2030,31,1,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,640,0,0,800,4,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,102,1,2252,102,1,0 +2013,4,12,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1110,202,1,1359,216,1,0 +2013,8,28,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,841,-4,0,936,-7,0,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-5,0,2231,-4,0,0 +2013,10,2,3,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1350,13,0,2200,24,1,0 +2013,4,4,4,EV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,835,-9,0,1312,-9,0,0 +2013,5,1,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,14,0,1705,95,1,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,5,0,1130,-4,0,0 +2013,8,18,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,23,1,1910,20,1,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1055,13,0,1445,-3,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,10,0,1905,0,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,13,0,2305,8,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1950,36,1,2255,21,1,0 +2013,8,9,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1150,11,0,1445,8,0,0 +2013,5,28,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,700,0,0,815,-7,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1320,5,0,1457,-2,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,38,1,2305,40,1,0 +2013,7,12,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,240,-8,0,654,-8,0,0 +2013,7,10,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,0,,1715,0,1,1 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,812,142,1,908,143,1,0 +2013,9,22,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2140,51,1,50,41,1,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,32,1,1253,43,1,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1425,21,1,1650,19,1,0 +2013,6,3,1,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,628,5,0,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,751,-3,0,1314,-18,0,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-5,0,959,-11,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-1,0,1359,-19,0,0 +2013,5,12,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-6,0,1435,5,0,0 +2013,10,8,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2058,20,1,2157,31,1,0 +2013,4,5,5,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1050,3,0,1420,-9,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1505,0,0,1751,-26,0,0 +2013,7,30,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,2,0,905,-3,0,0 +2013,7,21,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-5,0,1450,-1,0,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,-5,0,1510,12,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1805,10,0,1935,11,0,0 +2013,7,15,1,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,-8,0,1625,-3,0,0 +2013,5,29,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2110,3,0,2337,-11,0,0 +2013,5,12,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1900,0,,1935,0,1,1 +2013,5,26,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,807,-4,0,904,-10,0,0 +2013,8,21,3,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1127,76,1,1433,68,1,0 +2013,5,5,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-5,0,906,-13,0,0 +2013,5,8,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,854,-4,0,1310,-15,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,2,0,1320,13,0,0 +2013,8,13,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-9,0,902,6,0,0 +2013,8,21,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1200,-5,0,1531,-2,0,0 +2013,5,23,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1816,-2,0,2009,1,0,0 +2013,6,10,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,2149,3,0,143,-15,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1155,-6,0,2035,-36,0,0 +2013,8,30,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,125,1,1909,108,1,0 +2013,9,13,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,810,-4,0,934,3,0,0 +2013,7,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,835,-1,0,1105,-6,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,841,-3,0,1033,-26,0,0 +2013,6,24,1,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-7,0,955,-15,0,0 +2013,8,14,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-4,0,1000,-1,0,0 +2013,4,29,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1031,1,0,1116,-6,0,0 +2013,9,4,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-7,0,1940,-9,0,0 +2013,8,1,4,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1945,0,0,2140,-10,0,0 +2013,6,12,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-1,0,1451,5,0,0 +2013,9,24,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-8,0,823,-9,0,0 +2013,7,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1110,7,0,1404,-2,0,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1913,2,0,2359,-18,0,0 +2013,5,15,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,1,0,2046,-6,0,0 +2013,5,9,4,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1825,8,0,1927,-1,0,0 +2013,7,21,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1135,58,1,1300,62,1,0 +2013,4,9,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1558,0,,1620,0,1,1 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,535,2,0,912,-13,0,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,-1,0,2130,-32,0,0 +2013,6,26,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,9,0,740,28,1,0 +2013,7,8,1,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,820,8,0,1055,-2,0,0 +2013,9,1,7,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1934,-10,0,2230,-11,0,0 +2013,4,18,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,164,1,1640,157,1,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,605,41,1,1203,1,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,1,0,1109,2,0,0 +2013,10,16,3,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,610,-8,0,745,-18,0,0 +2013,9,5,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,735,-6,0,825,-10,0,0 +2013,5,30,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-9,0,1004,-6,0,0 +2013,6,22,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,46,1,737,57,1,0 +2013,8,9,5,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1307,33,1,1800,26,1,0 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1045,-9,0,1818,-2,0,0 +2013,7,27,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,810,-8,0,1104,-7,0,0 +2013,6,6,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1628,28,1,1920,-5,0,0 +2013,8,20,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,816,4,0,1100,9,0,0 +2013,9,3,2,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,858,-14,0,1039,-34,0,0 +2013,4,14,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2249,4,0,629,-23,0,0 +2013,7,1,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,1155,-12,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1335,40,1,1525,30,1,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1544,11,0,1656,10,0,0 +2013,9,11,3,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1242,-9,0,1515,-8,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,-3,0,1334,-20,0,0 +2013,5,15,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,0,0,1125,-13,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,925,2,0,1159,-22,0,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1700,0,0,1910,-7,0,0 +2013,7,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1942,25,1,2107,16,1,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,-9,0,2307,-34,0,0 +2013,4,16,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1710,26,1,1845,27,1,0 +2013,7,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1545,4,0,1700,-7,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2205,-4,0,2331,-10,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1530,0,0,1650,-1,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-3,0,1610,-4,0,0 +2013,10,19,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2250,-2,0,649,-23,0,0 +2013,5,6,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,745,-5,0,1037,-25,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1430,-3,0,1742,3,0,0 +2013,10,10,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-7,0,1045,0,0,0 +2013,10,17,4,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1230,2,0,1415,-4,0,0 +2013,9,22,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-4,0,1954,-2,0,0 +2013,8,29,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,25,1,1612,24,1,0 +2013,4,16,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,160,1,2000,173,1,0 +2013,5,4,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1050,33,1,1215,44,1,0 +2013,10,6,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,825,7,0,1344,-11,0,0 +2013,4,17,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1500,36,1,1610,32,1,0 +2013,8,20,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-5,0,2003,-8,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1018,-5,0,1201,-23,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,910,8,0,1112,7,0,0 +2013,9,11,3,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,-7,0,1736,-8,0,0 +2013,4,16,2,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,-2,0,1215,-12,0,0 +2013,8,10,6,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1210,79,1,1655,78,1,0 +2013,10,9,3,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1118,-2,0,1252,-15,0,0 +2013,6,19,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1355,-7,0,1514,-24,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,6,0,1900,-11,0,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1741,87,1,2037,63,1,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,7,0,2110,-1,0,0 +2013,9,30,1,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1229,-8,0,1528,1,0,0 +2013,8,9,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-2,0,701,-4,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2155,31,1,2305,19,1,0 +2013,6,19,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-4,0,1451,-7,0,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,4,0,1251,7,0,0 +2013,4,19,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,48,1,1914,71,1,0 +2013,4,7,7,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1625,-3,0,1850,-7,0,0 +2013,8,15,4,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,10,0,2035,-4,0,0 +2013,10,16,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,-6,0,1840,16,1,0 +2013,7,16,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1210,-2,0,1350,-7,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,735,-2,0,815,-10,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1212,7,0,1334,1,0,0 +2013,5,30,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-2,0,1944,-3,0,0 +2013,7,27,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,555,-2,0,714,-8,0,0 +2013,8,29,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,0,0,756,-17,0,0 +2013,5,27,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,70,1,1155,68,1,0 +2013,5,22,3,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-6,0,1123,-15,0,0 +2013,8,1,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,810,14,0,1330,4,0,0 +2013,4,6,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,755,6,0,1155,-8,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1355,0,0,1455,-2,0,0 +2013,8,10,6,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1227,-7,0,1441,-22,0,0 +2013,10,3,4,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2305,-5,0,702,-25,0,0 +2013,7,30,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1725,-4,0,1843,-6,0,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,-5,0,1055,-16,0,0 +2013,7,13,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1659,139,1,1924,95,1,0 +2013,8,4,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,600,-2,0,845,-9,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,805,-4,0,1040,-6,0,0 +2013,10,14,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,905,3,0,1035,7,0,0 +2013,10,30,3,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,12,0,822,4,0,0 +2013,8,27,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-9,0,1445,-19,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1325,-4,0,1450,-16,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,0,0,1008,0,0,0 +2013,6,18,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1830,8,0,2015,4,0,0 +2013,4,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1509,-8,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1940,2,0,2118,-4,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,47,1,2310,27,1,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1545,2,0,1829,-3,0,0 +2013,9,2,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2100,7,0,2350,6,0,0 +2013,5,1,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,645,7,0,810,1,0,0 +2013,5,28,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,0,0,720,4,0,0 +2013,5,31,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1545,10,0,1820,8,0,0 +2013,4,15,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1609,-2,0,1700,-8,0,0 +2013,5,6,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-5,0,1906,-7,0,0 +2013,10,24,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,913,-4,0,1135,-9,0,0 +2013,5,27,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,717,42,1,937,32,1,0 +2013,6,15,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,600,-5,0,836,-15,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1500,21,1,1630,-2,0,0 +2013,6,23,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,5,0,1950,-4,0,0 +2013,7,26,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2050,8,0,2330,-14,0,0 +2013,8,16,5,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-6,0,628,-15,0,0 +2013,8,22,4,YV,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1258,-10,0,1501,-8,0,0 +2013,8,18,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1010,-2,0,1150,-10,0,0 +2013,8,5,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1056,20,1,1325,26,1,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1445,-4,0,1600,0,0,0 +2013,9,17,2,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,6,0,1939,5,0,0 +2013,5,21,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1115,9,0,1235,3,0,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,845,-6,0,1029,-9,0,0 +2013,10,20,7,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1700,-6,0,2105,-19,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-1,0,1839,-13,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1500,-2,0,1630,-12,0,0 +2013,4,22,1,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1858,-2,0,2205,-1,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1459,9,0,1639,3,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1130,-1,0,1315,-1,0,0 +2013,10,20,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,629,-4,0,952,-23,0,0 +2013,10,17,4,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1910,-5,0,2235,-18,0,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,745,-8,0,954,-14,0,0 +2013,6,27,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,5,0,718,3,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,114,1,1735,112,1,0 +2013,4,1,1,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1646,-10,0,2036,-19,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-6,0,1131,-8,0,0 +2013,9,1,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1916,-8,0,2049,-18,0,0 +2013,10,18,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1800,118,1,1920,120,1,0 +2013,8,7,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-3,0,1747,-8,0,0 +2013,6,29,6,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1722,62,1,1845,55,1,0 +2013,10,22,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2005,-2,0,2313,-15,0,0 +2013,5,29,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1910,21,1,1932,13,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1935,8,0,2339,-19,0,0 +2013,6,27,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,-5,0,1435,0,0,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2000,25,1,2210,6,0,0 +2013,7,16,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,-1,0,950,-15,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,625,13,0,715,-5,0,0 +2013,7,4,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1510,-6,0,1620,-6,0,0 +2013,10,10,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1415,3,0,1740,-2,0,0 +2013,10,7,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1225,-5,0,1355,-14,0,0 +2013,9,20,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-4,0,2005,-16,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,-4,0,1506,-15,0,0 +2013,7,10,3,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1935,0,,2159,0,1,1 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1501,4,0,1655,1,0,0 +2013,9,6,5,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1010,-10,0,1310,-3,0,0 +2013,4,3,3,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,-7,0,2036,-1,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1355,-2,0,1759,8,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1123,-4,0,1340,-34,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-6,0,1912,-11,0,0 +2013,8,11,7,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,710,3,0,1300,-5,0,0 +2013,9,23,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-2,0,1351,9,0,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1440,2,0,1800,-13,0,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2010,14,0,2125,3,0,0 +2013,7,24,3,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-3,0,1424,-15,0,0 +2013,7,31,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1905,17,1,1940,11,0,0 +2013,9,13,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,827,-2,0,956,-11,0,0 +2013,8,5,1,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1455,-11,0,1735,-16,0,0 +2013,7,18,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-8,0,711,-13,0,0 +2013,7,27,6,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1719,-2,0,2002,-6,0,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,850,-7,0,1210,-3,0,0 +2013,9,29,7,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,-1,0,1820,-15,0,0 +2013,10,12,6,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1210,-3,0,1320,-23,0,0 +2013,10,19,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1600,-9,0,1705,-9,0,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,919,-7,0,1101,-11,0,0 +2013,7,13,6,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1220,117,1,1431,94,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,22,1,2143,13,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,32,1,1005,33,1,0 +2013,8,2,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,-5,0,1935,-7,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,-1,0,1810,-23,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,1,0,919,-8,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1720,16,1,1909,3,0,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1755,-7,0,1937,-20,0,0 +2013,6,21,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1023,1,0,1159,-20,0,0 +2013,4,17,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-5,0,811,-4,0,0 +2013,10,27,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1550,26,1,1710,26,1,0 +2013,9,28,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,1,0,1737,10,0,0 +2013,8,3,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,953,0,0,1320,-5,0,0 +2013,4,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,834,-5,0,936,-19,0,0 +2013,8,1,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,35,1,1540,39,1,0 +2013,9,6,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-9,0,1451,-18,0,0 +2013,5,24,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-3,0,1524,-7,0,0 +2013,10,23,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2134,-9,0,2206,-7,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2015,22,1,2300,19,1,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,-1,0,1545,-25,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1758,3,0,1933,-3,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2110,66,1,2215,50,1,0 +2013,9,30,1,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,2017,-5,0,2115,14,0,0 +2013,4,30,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-6,0,920,-5,0,0 +2013,6,10,1,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1149,5,0,1251,6,0,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1640,2,0,1750,2,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,740,8,0,840,2,0,0 +2013,9,19,4,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,10,0,1706,0,0,0 +2013,10,3,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-10,0,740,-27,0,0 +2013,7,13,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,600,-5,0,759,-9,0,0 +2013,4,12,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,90,1,1903,88,1,0 +2013,10,13,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1920,12,0,2114,-2,0,0 +2013,9,25,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1550,3,0,1735,-22,0,0 +2013,10,15,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1945,25,1,2043,21,1,0 +2013,6,15,6,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,910,3,0,1145,-1,0,0 +2013,6,27,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,715,-3,0,844,-14,0,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1630,5,0,1740,-1,0,0 +2013,5,22,3,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,0,0,1155,0,0,0 +2013,9,10,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-6,0,957,7,0,0 +2013,9,1,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1323,-6,0,1442,-7,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,-3,0,2251,-26,0,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1810,-3,0,1905,-12,0,0 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2025,-5,0,2150,-2,0,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,25,1,1300,19,1,0 +2013,6,30,7,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,600,-9,0,915,-5,0,0 +2013,8,4,7,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,219,1,2247,211,1,0 +2013,9,22,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,21,1,1115,15,1,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1046,-3,0,1148,-8,0,0 +2013,7,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,-3,0,1734,1,0,0 +2013,7,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2015,-1,0,2238,-38,0,0 +2013,6,1,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-6,0,27,-16,0,0 +2013,9,24,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1305,-8,0,1509,-12,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,730,0,0,915,-2,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,8,0,2042,3,0,0 +2013,6,6,4,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1200,-3,0,1435,19,1,0 +2013,5,8,3,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1416,56,1,1943,40,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-6,0,850,-10,0,0 +2013,8,26,1,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1758,4,0,2034,3,0,0 +2013,4,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1320,0,0,1530,5,0,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1758,-6,0,1931,-18,0,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,827,2,0,954,-6,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1330,-5,0,1540,-9,0,0 +2013,4,27,6,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1015,-7,0,1315,-7,0,0 +2013,4,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1600,0,,1621,0,1,1 +2013,7,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1712,14,0,2043,9,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1840,3,0,2130,-7,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,12,0,1135,12,0,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1123,-4,0,1251,-17,0,0 +2013,8,10,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,33,1,2115,8,0,0 +2013,7,8,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,710,-10,0,1010,-15,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,-1,0,1320,-8,0,0 +2013,4,4,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-5,0,1603,11,0,0 +2013,7,5,5,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1445,0,0,1616,-8,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1530,-2,0,1850,-1,0,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,-6,0,1808,-19,0,0 +2013,4,25,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,32,1,1215,38,1,0 +2013,7,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,734,-2,0,929,-4,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1146,7,0,1947,10,0,0 +2013,8,30,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,14,0,929,-8,0,0 +2013,9,10,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-3,0,1628,6,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2000,70,1,2105,66,1,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1228,-7,0,1404,-14,0,0 +2013,8,5,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1510,-1,0,1605,-1,0,0 +2013,5,5,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1717,0,0,1955,8,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1730,128,1,2200,100,1,0 +2013,7,11,4,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1620,11,0,1800,13,0,0 +2013,6,29,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,645,-2,0,1030,-3,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1355,14,0,1520,-1,0,0 +2013,5,5,7,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-7,0,1632,-41,0,0 +2013,8,29,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1855,1,0,2130,-14,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,-1,0,1300,-15,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-2,0,1936,5,0,0 +2013,9,16,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-8,0,1630,-14,0,0 +2013,5,3,5,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,72,1,1932,61,1,0 +2013,10,24,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1145,0,0,1842,3,0,0 +2013,6,23,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,9,0,2130,22,1,0 +2013,9,8,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1543,-8,0,1732,-21,0,0 +2013,4,17,3,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1301,-10,0,1403,-8,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,930,-2,0,1106,-3,0,0 +2013,8,8,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,3,0,1155,32,1,0 +2013,8,20,2,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,-5,0,646,1,0,0 +2013,6,30,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,94,1,1220,115,1,0 +2013,10,20,7,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2005,-5,0,2050,-1,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,7,0,1835,18,1,0 +2013,10,28,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1658,-5,0,1757,-3,0,0 +2013,5,16,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,745,-6,0,900,-12,0,0 +2013,7,22,1,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1917,9,0,2019,2,0,0 +2013,9,9,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-1,0,2140,-15,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1915,2,0,2055,-11,0,0 +2013,5,12,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1925,-3,0,2105,-43,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,805,0,0,945,-3,0,0 +2013,7,14,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,7,0,2028,1,0,0 +2013,4,19,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1615,25,1,1943,41,1,0 +2013,6,6,4,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1756,-12,0,2044,-29,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1915,1,0,2055,-4,0,0 +2013,8,31,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1610,8,0,2230,15,1,0 +2013,8,28,3,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1305,26,1,1335,22,1,0 +2013,6,28,5,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,12,0,1425,26,1,0 +2013,10,18,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,3,0,1110,-3,0,0 +2013,8,22,4,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1445,39,1,1701,29,1,0 +2013,9,26,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,700,-8,0,1520,-22,0,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,71,1,1415,68,1,0 +2013,5,22,3,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,645,0,0,805,10,0,0 +2013,4,2,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-6,0,757,-9,0,0 +2013,9,4,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,600,-6,0,819,-15,0,0 +2013,6,6,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1655,5,0,1742,4,0,0 +2013,10,10,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1542,-11,0,1702,0,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2200,116,1,2310,107,1,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1035,-7,0,1242,-13,0,0 +2013,4,16,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,630,0,0,915,-8,0,0 +2013,8,6,2,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1000,7,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1925,50,1,2215,27,1,0 +2013,8,26,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,750,1,0,920,-10,0,0 +2013,5,31,5,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1425,0,0,2235,21,1,0 +2013,6,15,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-2,0,1216,-7,0,0 +2013,9,12,4,WN,12451,Jacksonville International,Jacksonville,FL,13232,Chicago Midway International,Chicago,IL,600,-5,0,740,-26,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2130,-4,0,2306,-9,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1220,5,0,1425,7,0,0 +2013,6,28,5,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1850,99,1,35,105,1,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1550,27,1,1820,34,1,0 +2013,6,14,5,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,-5,0,1230,-28,0,0 +2013,6,29,6,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1425,13,0,1550,12,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,-6,0,1045,-28,0,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,847,-1,0,1054,-8,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1630,21,1,1833,51,1,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,14,0,1915,2,0,0 +2013,6,29,6,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,0,1300,-4,0,0 +2013,6,12,3,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,0,0,904,-5,0,0 +2013,9,18,3,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1409,-1,0,1525,-7,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,11,0,1805,12,0,0 +2013,9,15,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-2,0,1835,-22,0,0 +2013,4,3,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1955,3,0,2221,11,0,0 +2013,9,16,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1050,44,1,1225,31,1,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-2,0,2040,1,0,0 +2013,5,2,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1330,6,0,1535,-9,0,0 +2013,10,23,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,829,-5,0,913,-4,0,0 +2013,6,29,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,750,0,0,855,-14,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1945,18,1,2058,16,1,0 +2013,8,15,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,-5,0,1635,-20,0,0 +2013,6,11,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1017,109,1,1210,110,1,0 +2013,4,8,1,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,840,0,0,1021,26,1,0 +2013,8,9,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,5,0,1405,3,0,0 +2013,7,7,7,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,755,304,1,1009,270,1,0 +2013,6,26,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1439,19,1,1701,2,0,0 +2013,4,24,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1345,31,1,1505,30,1,0 +2013,4,1,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1901,-2,0,2010,-1,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-3,0,1722,-29,0,0 +2013,7,7,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,933,2,0,1215,2,0,0 +2013,4,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2107,-1,0,2359,2,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,26,1,1426,-11,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-3,0,725,-7,0,0 +2013,7,28,7,9E,13244,Memphis International,Memphis,TN,14683,San Antonio International,San Antonio,TX,835,121,1,1031,130,1,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,3,0,1309,-16,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,-2,0,1547,-16,0,0 +2013,4,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1556,-4,0,1719,-2,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,755,0,0,900,-12,0,0 +2013,6,15,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,2,0,902,26,1,0 +2013,4,30,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2155,-5,0,2320,-19,0,0 +2013,9,30,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,0,0,1900,-3,0,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1130,9,0,1340,8,0,0 +2013,10,9,3,9E,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1122,-5,0,1320,-10,0,0 +2013,5,1,3,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1545,38,1,1643,41,1,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-3,0,1025,-9,0,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1800,100,1,35,91,1,0 +2013,9,7,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1230,21,1,1545,34,1,0 +2013,10,3,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,-5,0,1632,-19,0,0 +2013,4,24,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1114,-3,0,1241,-12,0,0 +2013,8,6,2,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1130,0,0,1350,-1,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1315,14,0,1430,8,0,0 +2013,6,5,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,25,1,2000,28,1,0 +2013,10,25,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-1,0,1945,-4,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,-4,0,1530,4,0,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1200,24,1,1244,14,0,0 +2013,7,15,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-2,0,1357,-4,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1405,20,1,2150,4,0,0 +2013,5,13,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,-4,0,2056,-17,0,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1735,-5,0,2115,-25,0,0 +2013,8,24,6,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,-6,0,2039,-17,0,0 +2013,7,31,3,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1500,34,1,1657,28,1,0 +2013,9,17,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,1,0,1430,-4,0,0 +2013,6,23,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,65,1,1255,61,1,0 +2013,4,18,4,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2032,-7,0,2257,-16,0,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,9,0,1630,16,1,0 +2013,9,10,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-8,0,2009,-25,0,0 +2013,10,31,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1545,37,1,1810,37,1,0 +2013,9,8,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,198,1,1630,194,1,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1325,-3,0,1545,-18,0,0 +2013,4,24,3,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-5,0,1027,-7,0,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1122,75,1,1300,63,1,0 +2013,8,31,6,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1400,-6,0,1755,-15,0,0 +2013,6,30,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,10,0,627,2,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1957,-1,0,2126,-26,0,0 +2013,8,9,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1752,45,1,2010,43,1,0 +2013,6,9,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,935,-2,0,1055,-16,0,0 +2013,4,25,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,0,0,1255,-13,0,0 +2013,7,24,3,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,2,0,2103,-12,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-3,0,1505,-12,0,0 +2013,7,28,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-2,0,1348,-15,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-3,0,1048,-4,0,0 +2013,10,14,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1750,-4,0,2037,-1,0,0 +2013,5,17,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,930,-2,0,1103,-22,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,815,-5,0,910,-17,0,0 +2013,6,19,3,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1435,-4,0,1650,4,0,0 +2013,5,30,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1854,0,,2020,0,1,1 +2013,4,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,-6,0,2126,-7,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,-2,0,1045,-4,0,0 +2013,6,21,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,67,1,1430,61,1,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,134,1,1926,146,1,0 +2013,7,18,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,0,0,820,-2,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1420,-1,0,1525,5,0,0 +2013,7,28,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,68,1,2042,66,1,0 +2013,4,12,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1510,-1,0,2345,4,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2019,-3,0,2332,-10,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,-6,0,2300,-16,0,0 +2013,8,27,2,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1720,-2,0,1931,-10,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,21,1,2341,22,1,0 +2013,4,3,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,-3,0,1917,-9,0,0 +2013,9,24,2,9E,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1550,-3,0,1818,-10,0,0 +2013,4,1,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,12,0,1930,18,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1005,3,0,1055,1,0,0 +2013,8,15,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1312,-4,0,2142,-9,0,0 +2013,8,10,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1435,2,0,1638,-1,0,0 +2013,7,31,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2045,36,1,2150,16,1,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,-3,0,1430,-10,0,0 +2013,4,25,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-6,0,1614,5,0,0 +2013,10,21,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,1931,-7,0,0 +2013,9,3,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,-8,0,2044,-16,0,0 +2013,7,10,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-5,0,1900,8,0,0 +2013,5,10,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1238,-5,0,1459,-22,0,0 +2013,10,6,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,0,0,1729,-10,0,0 +2013,9,25,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1255,-6,0,1415,-25,0,0 +2013,4,9,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-8,0,1820,-20,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,-1,0,2213,-11,0,0 +2013,7,12,5,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1045,-7,0,1259,-10,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1220,-7,0,1507,-12,0,0 +2013,10,14,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,-11,0,1134,-16,0,0 +2013,4,5,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1045,0,0,1248,21,1,0 +2013,7,13,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1615,81,1,1814,70,1,0 +2013,4,24,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,44,1,1805,47,1,0 +2013,9,13,5,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1409,-8,0,1646,-19,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1305,51,1,1730,47,1,0 +2013,10,7,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2110,-4,0,2240,-19,0,0 +2013,8,25,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1643,-3,0,1842,1,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-4,0,1116,-5,0,0 +2013,9,3,2,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,16,1,1302,19,1,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,30,-3,0,552,-9,0,0 +2013,6,22,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,830,0,0,1230,3,0,0 +2013,9,6,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1049,-13,0,1215,-24,0,0 +2013,6,1,6,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,-3,0,2255,-12,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1650,35,1,1805,17,1,0 +2013,10,9,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1735,-2,0,2130,-5,0,0 +2013,8,7,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1409,2,0,1548,-16,0,0 +2013,10,23,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-6,0,1244,-1,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,929,3,0,1049,7,0,0 +2013,6,7,5,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1525,17,1,1615,11,0,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1315,39,1,1540,4,0,0 +2013,10,25,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2154,4,0,2306,12,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1010,9,0,1220,23,1,0 +2013,6,6,4,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1221,-1,0,2057,-25,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,820,-3,0,1150,-12,0,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,-1,0,2335,11,0,0 +2013,7,14,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1115,19,1,1250,14,0,0 +2013,6,21,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2057,54,1,2320,49,1,0 +2013,4,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,-6,0,1838,-3,0,0 +2013,5,17,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,2,0,655,-9,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,-3,0,1927,-1,0,0 +2013,8,30,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1130,-5,0,1145,-14,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,4,0,1120,-9,0,0 +2013,9,27,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1310,5,0,1430,9,0,0 +2013,10,28,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,940,8,0,1055,27,1,0 +2013,7,23,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-1,0,1940,-6,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,93,1,2215,83,1,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,2005,-1,0,2210,-25,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1115,7,0,1525,8,0,0 +2013,10,21,1,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-7,0,1149,-24,0,0 +2013,7,1,1,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-1,0,10,-4,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1330,-1,0,1405,-9,0,0 +2013,5,24,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1519,-3,0,1819,20,1,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,725,9,0,830,2,0,0 +2013,10,9,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,-5,0,924,-20,0,0 +2013,6,18,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,1,0,1346,-9,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,635,-7,0,740,-14,0,0 +2013,7,17,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,600,-1,0,725,5,0,0 +2013,8,6,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,14,0,1006,15,1,0 +2013,7,21,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1920,1,0,2045,2,0,0 +2013,5,19,7,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1720,33,1,1909,29,1,0 +2013,4,11,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,6,0,1330,16,1,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,5,0,1353,-18,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1925,43,1,2230,43,1,0 +2013,7,18,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,610,-3,0,615,-6,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1640,10,0,1705,3,0,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,923,0,,1042,0,1,1 +2013,4,19,5,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1459,65,1,1657,70,1,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1950,37,1,2110,39,1,0 +2013,8,19,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-1,0,1006,-1,0,0 +2013,4,5,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1048,-3,0,1240,0,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1855,-2,0,2325,-32,0,0 +2013,4,16,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-5,0,1228,-9,0,0 +2013,4,2,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-4,0,809,-3,0,0 +2013,9,6,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,1,0,1648,-3,0,0 +2013,4,6,6,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1005,24,1,1120,15,1,0 +2013,7,20,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,148,1,1940,166,1,0 +2013,7,12,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,1,0,2159,9,0,0 +2013,8,6,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,-4,0,2210,-28,0,0 +2013,6,27,4,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,805,-5,0,915,16,1,0 +2013,9,15,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,840,-4,0,1005,-20,0,0 +2013,5,30,4,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1900,38,1,2031,33,1,0 +2013,10,24,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1645,-3,0,2156,3,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,-7,0,1450,-1,0,0 +2013,10,15,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,10,0,1005,14,0,0 +2013,4,20,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1815,-1,0,1935,-14,0,0 +2013,9,29,7,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,79,1,1630,83,1,0 +2013,4,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1230,-1,0,1500,9,0,0 +2013,7,8,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-3,0,1401,-14,0,0 +2013,8,18,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1248,-1,0,1617,-10,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2030,16,1,2135,11,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,850,-1,0,940,-5,0,0 +2013,9,13,5,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2005,-10,0,2305,-18,0,0 +2013,9,11,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,7,0,1617,-9,0,0 +2013,7,13,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,20,1,1208,8,0,0 +2013,10,23,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1810,-5,0,1923,-13,0,0 +2013,10,10,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1310,30,1,1425,35,1,0 +2013,4,24,3,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,600,-4,0,825,-19,0,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1705,2,0,1910,-5,0,0 +2013,9,26,4,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-5,0,1742,1,0,0 +2013,6,14,5,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1030,-3,0,0 +2013,4,6,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1716,-4,0,2203,-17,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-5,0,1116,-13,0,0 +2013,5,18,6,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-8,0,1450,-20,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,735,-7,0,1035,-28,0,0 +2013,7,28,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-2,0,901,16,1,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1345,-2,0,1515,-14,0,0 +2013,4,12,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,15,1,2050,21,1,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1752,-8,0,1936,-6,0,0 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1512,-4,0,2117,-7,0,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1038,-7,0,1305,-22,0,0 +2013,9,24,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,2,0,2005,-4,0,0 +2013,6,4,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1216,-5,0,1356,-18,0,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1820,30,1,2109,29,1,0 +2013,8,1,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,755,15,1,1115,5,0,0 +2013,7,10,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,0,0,725,-4,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,9,0,1702,17,1,0 +2013,6,21,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,615,-8,0,900,-16,0,0 +2013,5,9,4,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,640,-5,0,1040,17,1,0 +2013,6,14,5,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-5,0,1940,48,1,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1415,45,1,1525,53,1,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1120,-4,0,1324,-18,0,0 +2013,5,29,3,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-5,0,2027,4,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1758,-5,0,2054,21,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,-2,0,1050,-15,0,0 +2013,8,21,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,-5,0,1816,-24,0,0 +2013,9,12,4,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,925,-10,0,1201,4,0,0 +2013,8,17,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-3,0,736,-5,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1025,2,0,1330,0,0,0 +2013,8,27,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1230,-9,0,1251,-17,0,0 +2013,6,28,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1756,9,0,1916,7,0,0 +2013,4,20,6,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1625,26,1,1935,7,0,0 +2013,8,7,3,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1427,11,0,2233,12,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,-3,0,1115,-10,0,0 +2013,4,25,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,1435,-16,0,0 +2013,8,20,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-5,0,950,-16,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,-3,0,2359,-18,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2125,-3,0,2220,-20,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,-1,0,2207,22,1,0 +2013,7,8,1,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,5,0,1730,4,0,0 +2013,4,1,1,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-2,0,919,1,0,0 +2013,7,29,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,853,32,1,1212,45,1,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,810,-2,0,925,-12,0,0 +2013,6,13,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1115,9,0,1259,5,0,0 +2013,6,29,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,45,1,1735,42,1,0 +2013,7,12,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,804,2,0,1103,-18,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1611,-6,0,2359,-37,0,0 +2013,8,6,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,805,15,1,1150,0,0,0 +2013,10,7,1,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-3,0,1344,-7,0,0 +2013,5,28,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2155,6,0,2315,2,0,0 +2013,8,1,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,830,-2,0,1000,-6,0,0 +2013,9,14,6,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,600,-2,0,753,15,1,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2020,15,1,2235,29,1,0 +2013,8,1,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,710,-6,0,903,-1,0,0 +2013,7,20,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-1,0,1458,-1,0,0 +2013,10,26,6,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,900,0,0,1445,-1,0,0 +2013,10,13,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2100,15,1,2205,6,0,0 +2013,10,23,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,29,1,1730,22,1,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,30,1,1230,12,0,0 +2013,4,28,7,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,79,1,2005,59,1,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,844,-2,0,1605,-28,0,0 +2013,5,1,3,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-6,0,913,-11,0,0 +2013,4,25,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-6,0,815,-9,0,0 +2013,9,24,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1100,5,0,1245,-11,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,8,0,1030,5,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,-5,0,1915,-12,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1355,2,0,1900,1,0,0 +2013,9,19,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1110,9,0,1210,4,0,0 +2013,8,15,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,621,-8,0,753,11,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,30,1,1545,24,1,0 +2013,7,3,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1640,3,0,1800,-11,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,915,2,0,1400,-10,0,0 +2013,8,3,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-8,0,955,-16,0,0 +2013,6,23,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,755,-5,0,948,-8,0,0 +2013,5,28,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,2,0,1315,5,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2114,-1,0,2358,-1,0,0 +2013,5,11,6,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1845,16,1,2310,-12,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-7,0,1450,-38,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,-4,0,1103,-6,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,7,0,1037,-1,0,0 +2013,5,31,5,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2220,10,0,608,39,1,0 +2013,7,27,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1210,-8,0,1350,-33,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-3,0,1112,-12,0,0 +2013,8,29,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1937,-4,0,2109,-8,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1359,6,0,1445,-9,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1320,-3,0,1800,-20,0,0 +2013,7,26,5,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,645,-10,0,928,-5,0,0 +2013,6,12,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-1,0,1029,24,1,0 +2013,4,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,26,1,2310,35,1,0 +2013,4,23,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2019,57,1,2157,45,1,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,13,0,935,3,0,0 +2013,4,7,7,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,745,30,1,1607,8,0,0 +2013,10,19,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1417,-4,0,1521,-4,0,0 +2013,8,27,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1330,35,1,1535,36,1,0 +2013,4,26,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1355,-2,0,2015,2,0,0 +2013,5,9,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1330,0,0,1504,-11,0,0 +2013,7,7,7,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,23,1,2255,28,1,0 +2013,4,6,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,-9,0,1225,-21,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,900,-2,0,1729,-17,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1315,-4,0,1425,0,0,0 +2013,5,2,4,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2200,20,1,13,1,0,0 +2013,7,3,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2115,33,1,2235,42,1,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-5,0,1322,-15,0,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1049,37,1,1326,26,1,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2154,-2,0,2352,18,1,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1250,-9,0,1848,-17,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1435,3,0,1625,-5,0,0 +2013,6,14,5,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,810,-5,0,1140,-1,0,0 +2013,4,25,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1505,1,0,1827,4,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,0,0,1028,2,0,0 +2013,4,3,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,945,11,0,1215,16,1,0 +2013,10,20,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,-5,0,1930,5,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,752,-5,0,923,16,1,0 +2013,8,8,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,0,0,1550,-9,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1015,-2,0,1543,-15,0,0 +2013,5,19,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1100,-6,0,1208,-18,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1000,1,0,1715,-12,0,0 +2013,4,26,5,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1625,-4,0,1901,-12,0,0 +2013,6,21,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1430,-2,0,1633,-30,0,0 +2013,7,9,2,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1527,-8,0,1742,-10,0,0 +2013,7,2,2,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1015,0,0,1315,1,0,0 +2013,8,21,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-10,0,1326,-16,0,0 +2013,5,27,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,714,-3,0,1051,-24,0,0 +2013,8,30,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-8,0,2215,-11,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1945,-2,0,2104,-14,0,0 +2013,6,10,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1640,1,0,1705,3,0,0 +2013,10,6,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,901,-2,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,917,-2,0,1355,-26,0,0 +2013,10,9,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,945,0,0,1015,2,0,0 +2013,9,27,5,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1203,0,0,1327,-8,0,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1534,0,0,1728,-9,0,0 +2013,9,19,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1315,20,1,1430,20,1,0 +2013,9,26,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,-5,0,1730,7,0,0 +2013,7,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1738,50,1,2014,50,1,0 +2013,9,2,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-5,0,1341,5,0,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,10,0,1445,1,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,620,-5,0,716,-5,0,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,540,28,1,915,19,1,0 +2013,4,11,4,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,932,5,0,1042,-10,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1850,18,1,1945,9,0,0 +2013,9,9,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1840,13,0,1940,14,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-2,0,1540,-5,0,0 +2013,4,19,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1137,7,0,1624,4,0,0 +2013,6,28,5,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,0,0,810,-3,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,810,5,0,1045,-13,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1220,15,1,1430,3,0,0 +2013,8,24,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-8,0,1104,-24,0,0 +2013,10,26,6,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,-1,0,2206,-11,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,820,-2,0,1033,-11,0,0 +2013,4,1,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1228,69,1,1432,62,1,0 +2013,5,17,5,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,-1,0,1940,-12,0,0 +2013,10,10,4,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,105,1,2010,128,1,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2108,7,0,2334,5,0,0 +2013,5,9,4,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,4,0,1315,22,1,0 +2013,8,29,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-3,0,1705,-17,0,0 +2013,9,11,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1720,-7,0,1930,-21,0,0 +2013,10,28,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-5,0,925,-8,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2200,24,1,2305,25,1,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1035,45,1,1200,41,1,0 +2013,9,2,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1340,7,0,1545,4,0,0 +2013,6,14,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,854,-18,0,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1125,13,0,1700,4,0,0 +2013,5,7,2,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,850,28,1,1123,3,0,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1237,0,0,1351,-9,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,79,1,2016,108,1,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,-1,0,935,3,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1905,214,1,2140,201,1,0 +2013,10,15,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1605,-9,0,19,-41,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-1,0,1154,-7,0,0 +2013,8,29,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,630,0,0,952,-21,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,15,1,1729,16,1,0 +2013,4,7,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-3,0,1120,-12,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,720,1,0,840,-11,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,-2,0,1443,0,0,0 +2013,7,13,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-1,0,1645,0,0,0 +2013,7,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1714,158,1,1821,174,1,0 +2013,9,13,5,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1420,-6,0,2230,-9,0,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1519,0,0,1936,-2,0,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1537,-5,0,1735,-5,0,0 +2013,10,23,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-10,0,1905,-20,0,0 +2013,7,29,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1246,77,1,1841,55,1,0 +2013,4,29,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1050,0,0,1145,-2,0,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,8,0,1310,-1,0,0 +2013,10,21,1,OO,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1110,-3,0,1253,-16,0,0 +2013,10,28,1,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-3,0,1006,-18,0,0 +2013,5,31,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,12,0,1048,9,0,0 +2013,4,25,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,10,0,2100,-5,0,0 +2013,8,2,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2050,0,0,2330,-14,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2130,-1,0,2359,-6,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1220,6,0,1420,-2,0,0 +2013,7,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,-4,0,2140,-29,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1904,43,1,1958,69,1,0 +2013,9,1,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1405,-1,0,1530,2,0,0 +2013,8,6,2,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1105,-8,0,1225,-14,0,0 +2013,10,29,2,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-14,0,2202,15,1,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1340,56,1,1451,76,1,0 +2013,4,29,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,807,-8,0,1048,-4,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1315,18,1,1435,7,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1848,97,1,2330,48,1,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,900,-1,0,1145,-1,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,13,0,2105,6,0,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1840,-4,0,2000,-19,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-1,0,1220,-10,0,0 +2013,5,8,3,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,745,-23,0,0 +2013,5,15,3,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,827,-6,0,0 +2013,4,29,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1250,10,0,1415,7,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1754,5,0,1907,11,0,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,53,1,2150,47,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,7,0,2159,-15,0,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-3,0,1620,1,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1955,0,,2340,0,1,1 +2013,8,3,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1545,9,0,1750,-5,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1338,38,1,2225,38,1,0 +2013,7,20,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1635,5,0,1755,-2,0,0 +2013,10,29,2,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2215,-5,0,556,-43,0,0 +2013,10,29,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1720,25,1,1845,15,1,0 +2013,5,22,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1710,-1,0,1745,-12,0,0 +2013,8,15,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1650,2,0,1925,-21,0,0 +2013,9,2,1,AA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1630,-2,0,1850,-43,0,0 +2013,4,18,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1155,51,1,1250,50,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,4,0,1922,9,0,0 +2013,5,30,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,950,-7,0,1129,-10,0,0 +2013,4,24,3,WN,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1055,10,0,1525,-11,0,0 +2013,8,4,7,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,800,-3,0,1140,-16,0,0 +2013,4,21,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,725,-5,0,1040,-11,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,800,-4,0,945,-3,0,0 +2013,6,14,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1050,-8,0,1203,-11,0,0 +2013,10,16,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1930,1,0,2240,-18,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-7,0,1108,-13,0,0 +2013,8,23,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2325,50,1,525,55,1,0 +2013,8,22,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1635,13,0,1740,4,0,0 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1355,1,0,1745,-1,0,0 +2013,4,4,4,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1941,-4,0,2143,-24,0,0 +2013,8,14,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1905,102,1,2110,112,1,0 +2013,5,30,4,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-2,0,1329,-3,0,0 +2013,6,15,6,9E,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1640,-4,0,1901,-15,0,0 +2013,8,29,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1210,-2,0,1325,-5,0,0 +2013,8,11,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1415,-1,0,1510,-7,0,0 +2013,8,1,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,934,-1,0,1226,-17,0,0 +2013,4,5,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,15376,Tucson International,Tucson,AZ,1100,12,0,1115,4,0,0 +2013,9,21,6,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1820,60,1,2130,51,1,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1150,6,0,1635,17,1,0 +2013,7,18,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,-6,0,745,-14,0,0 +2013,8,13,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-8,0,815,-15,0,0 +2013,6,25,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-1,0,1313,-10,0,0 +2013,9,6,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1416,-6,0,1548,-10,0,0 +2013,4,24,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1656,14,0,1848,52,1,0 +2013,7,11,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-5,0,848,45,1,0 +2013,8,11,7,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1725,6,0,1930,3,0,0 +2013,5,16,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1602,11,0,1920,18,1,0 +2013,9,24,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1034,-2,0,1303,-1,0,0 +2013,4,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1618,14,0,1833,12,0,0 +2013,7,26,5,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1119,-4,0,1442,8,0,0 +2013,4,5,5,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1945,100,1,2240,88,1,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,3,0,1615,-2,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2240,1,0,37,-6,0,0 +2013,8,30,5,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1359,3,0,1556,-2,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-2,0,1043,-8,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,49,1,730,56,1,0 +2013,9,20,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,650,-3,0,841,-6,0,0 +2013,5,23,4,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,712,31,1,931,18,1,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,-10,0,2134,-25,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1035,-4,0,1335,-30,0,0 +2013,10,15,2,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,-9,0,1729,-15,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,900,16,1,1010,22,1,0 +2013,5,31,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,730,-2,0,1025,-9,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1520,16,1,1650,6,0,0 +2013,4,8,1,WN,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1445,-4,0,1640,-16,0,0 +2013,6,27,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1840,67,1,2009,75,1,0 +2013,4,5,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1525,9,0,1645,5,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,840,33,1,943,33,1,0 +2013,10,20,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-3,0,1156,-3,0,0 +2013,4,5,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1900,53,1,2000,52,1,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1523,7,0,0 +2013,7,9,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,911,0,0,1110,-2,0,0 +2013,7,30,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-3,0,1112,-1,0,0 +2013,7,18,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,-3,0,1005,-15,0,0 +2013,4,30,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,948,5,0,0 +2013,4,27,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1545,5,0,1635,-2,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1744,0,0,1905,-2,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1901,6,0,2313,-4,0,0 +2013,7,12,5,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-6,0,1524,-1,0,0 +2013,8,25,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,720,0,0,935,-1,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,35,1,1630,35,1,0 +2013,8,23,5,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,-1,0,833,-2,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,31,1,2255,32,1,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,1,0,2000,-8,0,0 +2013,8,17,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,-11,0,750,-21,0,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-2,0,2105,34,1,0 +2013,5,12,7,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1620,-4,0,1800,-17,0,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,4,0,1035,4,0,0 +2013,5,3,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,31,1,945,38,1,0 +2013,8,27,2,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,25,1,1710,9,0,0 +2013,10,31,4,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1805,-12,0,1926,-2,0,0 +2013,10,10,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,822,10,0,0 +2013,8,24,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,915,-3,0,1155,-2,0,0 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1645,52,1,1855,47,1,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,835,-6,0,908,-7,0,0 +2013,6,10,1,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1129,128,1,1306,118,1,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,640,-4,0,850,-19,0,0 +2013,4,29,1,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,26,1,2129,38,1,0 +2013,6,2,7,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,34,1,1850,26,1,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-6,0,1536,-17,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,922,-4,0,1144,-23,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2255,-7,0,458,-14,0,0 +2013,6,4,2,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-4,0,908,-6,0,0 +2013,10,8,2,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1115,2,0,1230,-8,0,0 +2013,8,25,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-11,0,1141,-18,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-3,0,1109,11,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,1,0,1505,-7,0,0 +2013,5,21,2,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,28,1,2015,26,1,0 +2013,5,24,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2113,4,0,2328,-3,0,0 +2013,10,29,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1548,-5,0,1911,15,1,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-8,0,1027,-11,0,0 +2013,5,28,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,-1,0,1327,-15,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1420,70,1,1552,77,1,0 +2013,8,22,4,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,910,6,0,1300,11,0,0 +2013,10,25,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2005,11,0,2241,13,0,0 +2013,5,9,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,2015,91,1,2240,82,1,0 +2013,4,4,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,925,-1,0,1047,-13,0,0 +2013,7,28,7,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1556,1,0,1856,11,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2321,3,0,310,-2,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,748,-9,0,1055,-20,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1455,-4,0,1750,5,0,0 +2013,4,18,4,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-11,0,1728,-4,0,0 +2013,7,2,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,-5,0,1730,-18,0,0 +2013,4,11,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,941,-4,0,1148,7,0,0 +2013,4,30,2,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1545,-7,0,1707,11,0,0 +2013,8,28,3,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,625,0,0,940,-7,0,0 +2013,6,14,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,-4,0,840,-10,0,0 +2013,6,30,7,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1800,98,1,2035,83,1,0 +2013,5,11,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,730,-3,0,945,-4,0,0 +2013,9,16,1,OO,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1205,-10,0,1436,-8,0,0 +2013,10,25,5,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,-1,0,1027,9,0,0 +2013,7,14,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,0,0,930,-6,0,0 +2013,7,2,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1745,25,1,1926,24,1,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1630,10,0,1810,2,0,0 +2013,10,12,6,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1105,2,0,1640,-9,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,950,56,1,1110,61,1,0 +2013,5,28,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-5,0,33,-9,0,0 +2013,9,20,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-5,0,2024,-9,0,0 +2013,9,14,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-4,0,1010,-25,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1115,-1,0,1555,-5,0,0 +2013,9,8,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,8,0,2025,7,0,0 +2013,10,27,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1230,-7,0,1509,-17,0,0 +2013,10,5,6,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,915,-8,0,1150,-15,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2112,-2,0,2237,-28,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,2,0,1054,-4,0,0 +2013,8,15,4,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,725,68,1,840,59,1,0 +2013,5,26,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,-12,0,1955,-17,0,0 +2013,4,3,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-2,0,1846,-14,0,0 +2013,4,30,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-8,0,1057,-2,0,0 +2013,4,11,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1350,-3,0,1734,-19,0,0 +2013,6,21,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,-5,0,1333,72,1,0 +2013,10,29,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,155,1,1123,168,1,0 +2013,8,7,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,6,0,1430,5,0,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,750,25,1,1354,31,1,0 +2013,6,11,2,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,1,0,1510,-21,0,0 +2013,9,11,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1240,-2,0,1335,-6,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,67,1,1759,54,1,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,-3,0,1050,-13,0,0 +2013,6,25,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-3,0,1816,4,0,0 +2013,4,5,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,712,-2,0,1015,5,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1440,0,0,1850,-16,0,0 +2013,9,21,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1438,-3,0,1606,-5,0,0 +2013,9,18,3,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,1220,13,0,2020,2,0,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-1,0,1040,-6,0,0 +2013,7,27,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-2,0,1830,-3,0,0 +2013,4,3,3,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,600,-1,0,820,4,0,0 +2013,5,24,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1845,79,1,2027,46,1,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1029,-4,0,1139,8,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1955,29,1,2305,45,1,0 +2013,9,24,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-16,0,2045,-29,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1010,-4,0,1326,-10,0,0 +2013,6,18,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,7,0,1411,-4,0,0 +2013,9,5,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,933,0,0,1215,3,0,0 +2013,5,23,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-3,0,1030,14,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1000,7,0,1834,-10,0,0 +2013,7,8,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1828,135,1,2035,218,1,0 +2013,4,23,2,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1445,125,1,1839,125,1,0 +2013,5,28,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,910,-3,0,1040,1,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,0,0,810,-18,0,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1905,18,1,55,-1,0,0 +2013,7,22,1,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1340,11,0,1800,4,0,0 +2013,10,15,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-4,0,1707,-15,0,0 +2013,9,12,4,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,69,1,1809,92,1,0 +2013,4,18,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1741,-15,0,0 +2013,6,7,5,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,-4,0,2131,-38,0,0 +2013,4,13,6,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,0,0,1720,-8,0,0 +2013,4,9,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-3,0,1525,-8,0,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,-1,0,1555,-5,0,0 +2013,8,5,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1219,109,1,1805,122,1,0 +2013,9,13,5,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-2,0,1735,-9,0,0 +2013,4,12,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,8,0,1930,9,0,0 +2013,5,30,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2055,-3,0,2340,-5,0,0 +2013,5,29,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,0,,1955,0,1,1 +2013,7,4,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-7,0,1126,1,0,0 +2013,4,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,709,-5,0,743,-3,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1859,29,1,2345,26,1,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1455,-5,0,1750,-2,0,0 +2013,9,13,5,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,630,-8,0,727,2,0,0 +2013,10,16,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1215,10,0,1430,11,0,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,32,1,1305,21,1,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,700,-5,0,800,-15,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1455,19,1,1641,-2,0,0 +2013,9,12,4,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,-2,0,2110,60,1,0 +2013,5,11,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,730,-8,0,0 +2013,5,23,4,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1937,-3,0,2110,-7,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,16,1,1850,14,0,0 +2013,4,27,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,615,-6,0,725,-21,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,845,4,0,1115,-4,0,0 +2013,9,11,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,720,0,,900,0,1,1 +2013,6,22,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,-10,0,2152,-5,0,0 +2013,6,24,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1325,-2,0,1435,-3,0,0 +2013,5,8,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,2031,-8,0,35,-19,0,0 +2013,5,3,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,935,-4,0,1105,-11,0,0 +2013,8,19,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,9,0,1454,-9,0,0 +2013,4,18,4,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,740,-3,0,1559,23,1,0 +2013,10,31,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-9,0,2130,-6,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1739,-1,0,1921,-9,0,0 +2013,10,18,5,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1306,0,0,1540,18,1,0 +2013,7,22,1,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1727,-13,0,1815,-16,0,0 +2013,7,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,813,1,0,959,-14,0,0 +2013,8,14,3,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1254,-3,0,1530,-18,0,0 +2013,8,10,6,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1233,-5,0,1354,-14,0,0 +2013,8,23,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,752,18,1,1044,10,0,0 +2013,10,7,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,600,-11,0,840,-14,0,0 +2013,6,18,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,11,0,805,14,0,0 +2013,9,18,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,930,-1,0,1030,-2,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1855,0,0,2020,-2,0,0 +2013,5,7,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-8,0,1144,1,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1010,-1,0,1335,-9,0,0 +2013,6,28,5,EV,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,113,1,1810,173,1,0 +2013,4,22,1,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,0,0,840,-12,0,0 +2013,10,28,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,900,-10,0,1048,-19,0,0 +2013,7,26,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,19,1,2155,9,0,0 +2013,7,5,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1900,-7,0,2025,-15,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1450,2,0,1810,-20,0,0 +2013,4,21,7,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,910,-5,0,1145,-11,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1058,-2,0,1345,0,0,0 +2013,7,28,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,178,1,2126,197,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1230,2,0,1402,-19,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,23,1,15,5,0,0 +2013,10,10,4,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,640,0,0,810,-20,0,0 +2013,6,29,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,710,7,0,755,1,0,0 +2013,8,20,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2105,0,0,2235,5,0,0 +2013,7,23,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,950,10,0,1110,20,1,0 +2013,10,18,5,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1405,-2,0,2000,11,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,609,-6,0,747,-7,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-6,0,1345,-7,0,0 +2013,7,7,7,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1753,-1,0,1900,-7,0,0 +2013,4,19,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-4,0,1612,-22,0,0 +2013,10,19,6,AA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1630,14,0,1850,10,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,3,0,2247,0,0,0 +2013,4,28,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1955,43,1,2125,44,1,0 +2013,9,28,6,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,922,-11,0,0 +2013,4,20,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1310,-7,0,2129,-13,0,0 +2013,5,10,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1211,7,0,1534,-4,0,0 +2013,10,26,6,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,710,-9,0,810,3,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2151,-5,0,2331,-14,0,0 +2013,7,12,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,75,1,2100,79,1,0 +2013,10,27,7,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,23,1,1512,12,0,0 +2013,7,18,4,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1250,19,1,1425,24,1,0 +2013,9,27,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,733,9,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1435,1,0,1655,-8,0,0 +2013,8,17,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,27,1,2125,-5,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,-5,0,912,-30,0,0 +2013,5,24,5,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-5,0,1852,6,0,0 +2013,10,23,3,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-8,0,1405,-18,0,0 +2013,9,22,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-9,0,1328,-12,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,1,0,729,-3,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1726,-2,0,1739,-12,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,3,0,1030,3,0,0 +2013,9,1,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-1,0,1854,2,0,0 +2013,5,20,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-7,0,743,-6,0,0 +2013,4,1,1,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,835,0,0,1135,-16,0,0 +2013,7,22,1,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1945,-3,0,2256,-3,0,0 +2013,7,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2020,82,1,2255,84,1,0 +2013,5,2,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,3,0,1415,-3,0,0 +2013,10,20,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-6,0,1533,-5,0,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1815,19,1,2015,28,1,0 +2013,4,18,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1630,64,1,1740,59,1,0 +2013,7,30,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1742,-2,0,1846,-11,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,43,1,1403,37,1,0 +2013,10,2,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2115,2,0,524,-16,0,0 +2013,8,13,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,84,1,1634,84,1,0 +2013,8,25,7,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,809,-3,0,1013,-39,0,0 +2013,4,7,7,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,925,-6,0,1302,-13,0,0 +2013,10,7,1,EV,10792,Buffalo Niagara International,Buffalo,NY,12953,LaGuardia,New York,NY,1105,-6,0,1227,28,1,0 +2013,8,22,4,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,2031,62,1,2140,93,1,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1745,-4,0,2036,-10,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,8,0,1345,-3,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1650,36,1,1810,21,1,0 +2013,8,31,6,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1313,-5,0,1440,-14,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2056,8,0,2212,-6,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,939,-2,0,1127,-16,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1800,41,1,2005,30,1,0 +2013,7,14,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,0,0,1305,-4,0,0 +2013,5,7,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,700,6,0,1532,7,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,39,1,1645,53,1,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-4,0,2105,-13,0,0 +2013,6,22,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,820,-5,0,940,-3,0,0 +2013,8,27,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,-1,0,1805,-8,0,0 +2013,4,7,7,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,800,-4,0,1116,-8,0,0 +2013,7,5,5,YV,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-7,0,1335,-10,0,0 +2013,4,10,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1050,11,0,1855,35,1,0 +2013,9,7,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-7,0,1145,-9,0,0 +2013,7,10,3,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,800,-6,0,1131,-11,0,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,0,0,1000,-2,0,0 +2013,6,10,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1837,1,0,2045,11,0,0 +2013,4,16,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1109,0,0,1315,-8,0,0 +2013,6,1,6,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,620,-3,0,754,-24,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1800,55,1,1910,45,1,0 +2013,7,20,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,650,0,0,720,-10,0,0 +2013,10,27,7,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1435,-6,0,2255,-12,0,0 +2013,6,19,3,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1310,0,0,1630,-8,0,0 +2013,4,22,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,900,-3,0,1157,12,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,1,0,2139,-1,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,61,1,2101,70,1,0 +2013,10,3,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-2,0,1950,-3,0,0 +2013,6,13,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1650,-1,0,1753,6,0,0 +2013,9,14,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1310,146,1,1440,142,1,0 +2013,4,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1226,-3,0,1342,-2,0,0 +2013,7,25,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2145,53,1,2225,51,1,0 +2013,6,20,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1350,-4,0,1456,-11,0,0 +2013,7,30,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,650,-5,0,825,23,1,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,825,4,0,1055,-2,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,-3,0,730,-7,0,0 +2013,9,5,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1035,3,0,1240,-2,0,0 +2013,4,22,1,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1823,-5,0,2054,-1,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,-2,0,1255,-33,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,-10,0,2200,-24,0,0 +2013,10,23,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1520,5,0,1840,41,1,0 +2013,10,11,5,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1410,-1,0,2000,36,1,0 +2013,10,1,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1800,0,0,2100,-7,0,0 +2013,5,10,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2135,95,1,2245,88,1,0 +2013,6,26,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,13,0,1325,7,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1850,-2,0,2003,-12,0,0 +2013,5,16,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1815,68,1,2025,31,1,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1255,91,1,1645,99,1,0 +2013,4,17,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,811,-6,0,905,-11,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1319,17,1,0 +2013,7,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1755,0,,2000,0,1,1 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,-3,0,835,-18,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-6,0,907,-4,0,0 +2013,4,23,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,73,1,1538,90,1,0 +2013,5,22,3,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,0,0,2122,-10,0,0 +2013,10,21,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1040,1,0,1354,-1,0,0 +2013,5,6,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-7,0,726,3,0,0 +2013,6,28,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1845,17,1,2005,16,1,0 +2013,8,1,4,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,955,14,0,1130,7,0,0 +2013,9,22,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,623,5,0,737,-6,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,31,1,2240,24,1,0 +2013,9,2,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,8,0,2032,2,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2100,-5,0,2242,-15,0,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,7,0,1540,-7,0,0 +2013,8,18,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1405,7,0,1505,-4,0,0 +2013,10,12,6,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,18,1,1419,2,0,0 +2013,8,26,1,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1106,-3,0,1331,-24,0,0 +2013,5,23,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,605,33,1,800,31,1,0 +2013,8,19,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,710,-4,0,815,-6,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2040,8,0,2335,-2,0,0 +2013,5,8,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,637,-6,0,1421,6,0,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1020,1,0,1140,-7,0,0 +2013,6,8,6,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1115,2,0,1235,-17,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1905,-3,0,2036,-9,0,0 +2013,7,1,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,616,-4,0,715,15,1,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1530,113,1,2000,148,1,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,830,0,0,935,-5,0,0 +2013,7,28,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2205,275,1,2330,255,1,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,839,-2,0,1037,5,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,4,0,2255,-5,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,9,0,2250,8,0,0 +2013,7,8,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,828,-3,0,1009,-7,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1240,37,1,1420,16,1,0 +2013,7,12,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,630,0,0,645,-14,0,0 +2013,5,23,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1440,58,1,1640,56,1,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1246,10,0,1655,-1,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,600,-4,0,840,-13,0,0 +2013,8,16,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,1,0,1356,-7,0,0 +2013,6,19,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,-3,0,1540,-7,0,0 +2013,8,27,2,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-8,0,1019,-20,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1704,-3,0,1952,-60,0,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,2145,3,0,2318,-11,0,0 +2013,6,11,2,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-7,0,1311,3,0,0 +2013,10,25,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,36,1,1853,31,1,0 +2013,5,28,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,841,-4,0,1635,-24,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,2,0,2100,-13,0,0 +2013,5,4,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1515,0,0,1759,-6,0,0 +2013,5,5,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1900,-5,0,2035,-21,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1326,-3,0,1717,-15,0,0 +2013,6,20,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,59,-5,0,626,-14,0,0 +2013,6,7,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1425,36,1,2210,28,1,0 +2013,8,29,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,740,-5,0,910,-9,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1345,28,1,1725,53,1,0 +2013,5,9,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-5,0,835,-19,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2135,-4,0,2300,-8,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,715,-5,0,847,-6,0,0 +2013,6,6,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1348,-1,0,1510,8,0,0 +2013,10,1,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1510,-10,0,1750,-13,0,0 +2013,8,15,4,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1225,-7,0,1805,3,0,0 +2013,9,5,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1005,-6,0,1247,-28,0,0 +2013,6,12,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,945,-8,0,1240,-34,0,0 +2013,10,6,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1330,-7,0,1605,-3,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1410,-2,0,1550,-4,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,941,0,0,1157,-26,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,730,-3,0,1055,-14,0,0 +2013,7,10,3,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,0,0,1609,-1,0,0 +2013,8,19,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1350,1,0,1550,3,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1245,39,1,1510,51,1,0 +2013,8,26,1,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,901,-1,0,1204,-7,0,0 +2013,10,7,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-12,0,2041,-11,0,0 +2013,4,11,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,1120,-17,0,0 +2013,9,12,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2000,78,1,2130,72,1,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1750,19,1,2150,-5,0,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2045,123,1,2211,124,1,0 +2013,10,20,7,EV,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1325,-2,0,1438,1,0,0 +2013,9,22,7,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1355,-5,0,1650,-11,0,0 +2013,5,21,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-2,0,941,10,0,0 +2013,10,18,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-2,0,740,-11,0,0 +2013,4,7,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1233,3,0,0 +2013,4,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1235,1,0,1400,-5,0,0 +2013,5,16,4,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1135,2,0,1546,-13,0,0 +2013,8,7,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1320,1,0,1445,6,0,0 +2013,5,14,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,600,1,0,715,-4,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1530,38,1,2000,38,1,0 +2013,6,1,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,710,0,0,835,-18,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,950,0,0,1024,-11,0,0 +2013,9,5,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1940,-4,0,2059,-8,0,0 +2013,4,22,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,5,0,1908,-11,0,0 +2013,9,20,5,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-2,0,1040,-25,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,900,30,1,1115,16,1,0 +2013,6,13,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,12,0,910,57,1,0 +2013,10,9,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1117,7,0,1312,13,0,0 +2013,10,27,7,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1045,13,0,1148,13,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,2055,-1,0,2320,0,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,21,1,1338,14,0,0 +2013,8,7,3,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1630,78,1,1805,89,1,0 +2013,9,27,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1800,-10,0,1920,-8,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2210,-4,0,50,-9,0,0 +2013,9,5,4,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,835,-7,0,933,-5,0,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,14,0,1748,-13,0,0 +2013,7,19,5,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,7,0,1635,-10,0,0 +2013,5,9,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,36,1,1615,43,1,0 +2013,10,1,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-9,0,1432,-15,0,0 +2013,8,22,4,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1205,10,0,1957,5,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,720,6,0,1025,10,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,625,29,1,1040,14,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-1,0,912,0,0,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,-7,0,1207,11,0,0 +2013,5,6,1,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1050,-1,0,1410,1,0,0 +2013,8,26,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1000,10,0,1247,4,0,0 +2013,9,4,3,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,700,-5,0,910,-19,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,840,-4,0,1105,-8,0,0 +2013,4,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2151,213,1,2239,199,1,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,1010,4,0,1535,2,0,0 +2013,8,3,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1000,325,1,1220,343,1,0 +2013,5,4,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-2,0,626,-8,0,0 +2013,9,27,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,-7,0,1825,5,0,0 +2013,6,15,6,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1835,-6,0,2155,-22,0,0 +2013,9,20,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,25,1,1450,41,1,0 +2013,9,30,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1339,-4,0,1430,-1,0,0 +2013,9,27,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,20,1,1235,22,1,0 +2013,6,15,6,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1545,16,1,1714,17,1,0 +2013,9,30,1,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1700,10,0,2105,-2,0,0 +2013,6,19,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-8,0,1931,-3,0,0 +2013,6,14,5,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,700,-10,0,737,-14,0,0 +2013,10,17,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1110,11,0,1220,0,0,0 +2013,10,15,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,-6,0,830,-18,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1855,0,0,2215,-10,0,0 +2013,9,16,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,2250,-19,0,0 +2013,9,26,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-3,0,717,4,0,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-5,0,915,-13,0,0 +2013,6,16,7,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,88,1,2018,76,1,0 +2013,10,26,6,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1018,-5,0,1128,-12,0,0 +2013,9,29,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1448,-7,0,1522,-3,0,0 +2013,6,21,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-9,0,1110,5,0,0 +2013,4,27,6,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,840,-11,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,735,99,1,1050,97,1,0 +2013,10,13,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,745,-4,0,850,-6,0,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,18,1,2343,25,1,0 +2013,6,11,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1449,-4,0,1650,12,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,36,1,1540,22,1,0 +2013,8,18,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,844,3,0,1005,-5,0,0 +2013,10,30,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,0,0,945,-15,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-1,0,1145,0,0,0 +2013,10,27,7,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,841,10,0,1315,-5,0,0 +2013,7,6,6,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,-1,0,1144,6,0,0 +2013,4,26,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-5,0,1040,5,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2020,-1,0,2330,-9,0,0 +2013,10,14,1,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,-4,0,501,-20,0,0 +2013,9,20,5,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,0,0,1844,-5,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1803,-3,0,2045,2,0,0 +2013,10,16,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1830,33,1,2220,32,1,0 +2013,4,2,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1750,1,0,2048,1,0,0 +2013,6,25,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-7,0,1315,-17,0,0 +2013,4,8,1,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1335,49,1,1820,44,1,0 +2013,6,26,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,0,0,851,-16,0,0 +2013,6,2,7,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-2,0,1009,-16,0,0 +2013,5,18,6,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1705,-2,0,1910,-31,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1230,-7,0,1330,-20,0,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1730,2,0,2108,6,0,0 +2013,10,28,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,19,1,1540,17,1,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-1,0,951,1,0,0 +2013,9,13,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-7,0,1525,-18,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-3,0,1011,-27,0,0 +2013,5,12,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,8,0,830,17,1,0 +2013,10,29,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,0,0,1135,-7,0,0 +2013,9,21,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,14,0,2042,-7,0,0 +2013,7,20,6,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1715,37,1,2300,48,1,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,635,27,1,755,19,1,0 +2013,9,21,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-6,0,1550,2,0,0 +2013,6,13,4,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1754,22,1,2117,35,1,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1930,244,1,2120,241,1,0 +2013,7,16,2,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1645,14,0,1935,3,0,0 +2013,9,12,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,103,1,2255,85,1,0 +2013,8,18,7,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-3,0,715,0,0,0 +2013,10,24,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1100,7,0,1345,17,1,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1655,-4,0,1757,-21,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1625,-2,0,1803,1,0,0 +2013,4,24,3,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1405,-6,0,1525,-20,0,0 +2013,9,20,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1710,20,1,2329,12,0,0 +2013,10,18,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1535,-7,0,1847,-19,0,0 +2013,6,9,7,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1630,-6,0,1835,-8,0,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1030,-1,0,1247,5,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1218,-6,0,1444,-39,0,0 +2013,10,3,4,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2055,-7,0,2325,-8,0,0 +2013,8,20,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1450,-2,0,1555,-3,0,0 +2013,4,6,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1951,-6,0,2136,-6,0,0 +2013,6,7,5,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1417,-4,0,1610,-22,0,0 +2013,8,13,2,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-1,0,748,-5,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,11,0,1620,0,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1100,1,0,1408,-16,0,0 +2013,5,8,3,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,2,0,1425,-10,0,0 +2013,10,14,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1247,-6,0,1535,-22,0,0 +2013,10,6,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1015,14,0,1107,13,0,0 +2013,6,17,1,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2345,167,1,820,150,1,0 +2013,6,4,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2135,-1,0,600,-20,0,0 +2013,4,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1620,135,1,1959,120,1,0 +2013,8,2,5,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,20,1,648,37,1,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2027,-1,0,2259,-9,0,0 +2013,7,25,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2214,8,0,600,-12,0,0 +2013,7,12,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,148,1,2036,136,1,0 +2013,9,4,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,-6,0,1540,-3,0,0 +2013,5,7,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-2,0,1800,6,0,0 +2013,7,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,-1,0,2205,-15,0,0 +2013,8,31,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,-2,0,1735,-26,0,0 +2013,6,5,3,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1730,-2,0,1941,8,0,0 +2013,7,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1116,-2,0,1232,-10,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1445,-4,0,1620,-9,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,-5,0,904,-12,0,0 +2013,9,1,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,810,-3,0,1101,-6,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,7,0,935,-14,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,4,0,1547,15,1,0 +2013,4,7,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1715,29,1,1810,32,1,0 +2013,10,30,3,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1510,-8,0,1735,5,0,0 +2013,5,2,4,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,828,-2,0,1639,-19,0,0 +2013,5,18,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,7,0,1210,7,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,1,0,1339,-16,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1343,1,0,1510,-4,0,0 +2013,4,16,2,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,730,-7,0,1134,-29,0,0 +2013,10,16,3,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,605,-5,0,939,-10,0,0 +2013,8,25,7,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,-6,0,2022,-3,0,0 +2013,9,29,7,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1925,-3,0,2050,-8,0,0 +2013,5,19,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,8,0,1009,14,0,0 +2013,9,2,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1505,31,1,1620,25,1,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,124,1,1744,121,1,0 +2013,4,2,2,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,-1,0,1911,-13,0,0 +2013,4,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2230,-1,0,640,-7,0,0 +2013,6,23,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,-6,0,1520,-2,0,0 +2013,5,1,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,944,5,0,1120,-6,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2015,93,1,2315,93,1,0 +2013,5,29,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2155,-7,0,15,9,0,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1630,11,0,1750,12,0,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1620,7,0,2355,10,0,0 +2013,5,12,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-4,0,1452,-6,0,0 +2013,7,12,5,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2110,-11,0,550,-15,0,0 +2013,10,1,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,14,0,1659,22,1,0 +2013,5,11,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-3,0,1155,1,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,18,1,1813,6,0,0 +2013,4,9,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,19,1,1926,9,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1715,0,0,1840,0,0,0 +2013,5,2,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1710,-1,0,1745,-13,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1615,-3,0,1832,-22,0,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,-6,0,1249,2,0,0 +2013,10,27,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1153,18,1,1442,5,0,0 +2013,7,18,4,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-2,0,1950,9,0,0 +2013,4,4,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1130,-7,0,1550,1,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1220,-2,0,1420,-17,0,0 +2013,6,11,2,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,956,143,1,1218,161,1,0 +2013,10,6,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,1,0,2031,-7,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,-2,0,2040,-3,0,0 +2013,7,2,2,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,820,-5,0,940,-14,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,824,6,0,921,19,1,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-4,0,859,-20,0,0 +2013,6,23,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1645,59,1,1910,56,1,0 +2013,9,17,2,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1035,-4,0,1125,-10,0,0 +2013,9,27,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-2,0,755,-6,0,0 +2013,9,3,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-1,0,1130,-3,0,0 +2013,9,29,7,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,840,-2,0,1648,-29,0,0 +2013,4,16,2,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2037,15,1,30,-15,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1540,13,0,1800,50,1,0 +2013,8,8,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2045,-1,0,2214,-12,0,0 +2013,4,15,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-9,0,740,-7,0,0 +2013,10,9,3,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-9,0,709,-18,0,0 +2013,10,30,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1840,-7,0,2119,-9,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,-6,0,2230,23,1,0 +2013,5,16,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1853,8,0,2100,0,0,0 +2013,7,12,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,730,9,0,824,11,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,-6,0,1009,-33,0,0 +2013,4,13,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1900,-9,0,1957,-24,0,0 +2013,8,5,1,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,820,20,1,1255,4,0,0 +2013,9,27,5,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,-6,0,2037,-29,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2140,-3,0,2315,-6,0,0 +2013,9,11,3,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1624,-7,0,1808,-8,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,4,0,930,1,0,0 +2013,4,29,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,-2,0,1635,-2,0,0 +2013,5,5,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,6,0,1925,6,0,0 +2013,7,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1252,31,1,1450,32,1,0 +2013,4,25,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1239,-3,0,1318,-5,0,0 +2013,8,25,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1429,0,,1605,0,1,1 +2013,7,15,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,-5,0,1807,-7,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1410,26,1,1725,3,0,0 +2013,8,28,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1059,-8,0,1215,-8,0,0 +2013,4,16,2,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,811,1,0,946,38,1,0 +2013,6,3,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,113,1,2338,103,1,0 +2013,10,21,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,0,0,1635,1,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,0,0,1139,13,0,0 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1215,1,0,2040,36,1,0 +2013,8,29,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1315,-5,0,1452,0,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1205,11,0,1400,0,0,0 +2013,9,1,7,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-8,0,1904,-2,0,0 +2013,10,24,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1445,26,1,1550,23,1,0 +2013,7,25,4,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1053,-4,0,1333,-12,0,0 +2013,7,9,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,700,11,0,1310,18,1,0 +2013,8,24,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1008,-3,0,1453,-16,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,24,1,1735,18,1,0 +2013,5,19,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1820,1,0,2107,6,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1750,1,0,1910,-12,0,0 +2013,8,21,3,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,106,1,1855,115,1,0 +2013,8,25,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1245,-5,0,1405,-9,0,0 +2013,10,8,2,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1845,-7,0,2034,-28,0,0 +2013,9,28,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1235,-6,0,1426,-19,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,3,0,2115,11,0,0 +2013,10,28,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1807,20,1,1945,38,1,0 +2013,10,2,3,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1417,4,0,1638,-16,0,0 +2013,8,1,4,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-2,0,2103,-13,0,0 +2013,10,16,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,920,7,0,1255,7,0,0 +2013,5,28,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,127,1,2025,142,1,0 +2013,10,19,6,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,752,-10,0,907,-20,0,0 +2013,5,24,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,111,1,2145,118,1,0 +2013,4,16,2,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,700,-13,0,1120,-26,0,0 +2013,5,21,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1347,-4,0,1623,-11,0,0 +2013,5,21,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1004,-14,0,0 +2013,4,28,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,0,0,1854,36,1,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1900,158,1,2017,180,1,0 +2013,7,24,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1843,-6,0,2027,-14,0,0 +2013,5,2,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1541,6,0,1620,0,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,8,0,1840,-9,0,0 +2013,9,5,4,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1610,64,1,1803,72,1,0 +2013,10,13,7,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-6,0,1420,-5,0,0 +2013,4,20,6,EV,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1343,-19,0,1635,-32,0,0 +2013,5,21,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,900,-7,0,1431,-15,0,0 +2013,4,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,808,91,1,1255,92,1,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1055,11,0,1215,9,0,0 +2013,7,29,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-1,0,925,-15,0,0 +2013,7,27,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,125,1,1354,178,1,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,825,13,0,1100,37,1,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2150,35,1,2300,29,1,0 +2013,8,3,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,7,0,2126,0,0,0 +2013,4,9,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1157,15,1,1453,-3,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2255,26,1,5,20,1,0 +2013,4,1,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,905,0,0,1032,2,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1930,19,1,2200,36,1,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1935,213,1,2255,208,1,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,655,1,0,1200,-14,0,0 +2013,4,25,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1923,13,0,2135,19,1,0 +2013,8,27,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1725,-4,0,1908,-35,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,5,0,939,37,1,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-5,0,1923,-15,0,0 +2013,9,18,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1755,-9,0,2052,-8,0,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1740,6,0,2335,-1,0,0 +2013,9,15,7,WN,11278,Ronald Reagan Washington National,Washington,DC,12191,William P Hobby,Houston,TX,1600,4,0,1820,-4,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,1,0,925,-17,0,0 +2013,6,8,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-7,0,1409,-7,0,0 +2013,7,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,-3,0,1415,-13,0,0 +2013,6,30,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1946,-2,0,2242,16,1,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1250,154,1,1425,168,1,0 +2013,10,31,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,-3,0,919,-4,0,0 +2013,5,24,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1155,19,1,1310,12,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2040,100,1,2320,94,1,0 +2013,9,6,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1115,-2,0,1245,-4,0,0 +2013,4,3,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,13,0,2224,19,1,0 +2013,9,21,6,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1700,-4,0,2001,-18,0,0 +2013,7,24,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,7,0,2135,-5,0,0 +2013,9,29,7,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,1205,-13,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,-7,0,2250,-23,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1535,7,0,1648,-12,0,0 +2013,5,12,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1905,-2,0,2115,-2,0,0 +2013,6,20,4,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1545,-2,0,1735,-8,0,0 +2013,10,13,7,EV,13871,Eppley Airfield,Omaha,NE,12953,LaGuardia,New York,NY,715,0,0,1109,-12,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,1,0,2008,-13,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,0,0,1828,-16,0,0 +2013,8,29,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,42,1,1207,24,1,0 +2013,6,7,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-6,0,1408,-15,0,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1935,-4,0,2130,-6,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1319,-2,0,1615,4,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1545,-1,0,1720,1,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2105,20,1,2250,14,0,0 +2013,7,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,8,0,1055,17,1,0 +2013,5,5,7,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1757,-1,0,1910,5,0,0 +2013,8,16,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1842,-5,0,51,-19,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,-6,0,1700,-12,0,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-3,0,1743,-1,0,0 +2013,9,26,4,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1729,-1,0,2001,-8,0,0 +2013,6,26,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1615,142,1,1739,154,1,0 +2013,4,24,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,815,1,0,0 +2013,4,15,1,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,7,0,1728,-8,0,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,3,0,1039,-2,0,0 +2013,5,23,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-2,0,2102,20,1,0 +2013,8,7,3,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,19,1,44,7,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,735,-5,0,857,-14,0,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,-1,0,2057,-24,0,0 +2013,4,12,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-2,0,1135,7,0,0 +2013,5,12,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1755,5,0,1925,-10,0,0 +2013,9,8,7,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,810,-2,0,1120,-8,0,0 +2013,10,18,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1650,21,1,1922,25,1,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1345,0,0,1706,-1,0,0 +2013,4,16,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2000,-3,0,2144,-5,0,0 +2013,10,23,3,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,-6,0,712,-17,0,0 +2013,6,25,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,634,-2,0,835,-11,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,-1,0,1435,-14,0,0 +2013,9,23,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1356,-4,0,1757,-8,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,-2,0,1310,-20,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1140,0,0,1535,-14,0,0 +2013,5,17,5,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,-10,0,1940,-14,0,0 +2013,4,12,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,26,1,1410,26,1,0 +2013,8,23,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,0,0,1345,5,0,0 +2013,4,25,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,10,0,1915,8,0,0 +2013,5,21,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1100,-1,0,1405,-6,0,0 +2013,6,8,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,859,41,1,1009,38,1,0 +2013,10,16,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1020,-7,0,1211,-13,0,0 +2013,10,3,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1615,80,1,1726,76,1,0 +2013,8,28,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,34,1,1520,71,1,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,35,1,2225,29,1,0 +2013,4,26,5,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-11,0,930,-10,0,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,7,0,1630,-1,0,0 +2013,8,12,1,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1738,37,1,1958,42,1,0 +2013,7,30,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,925,0,0,945,-8,0,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-4,0,1026,15,1,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1155,12,0,1400,4,0,0 +2013,5,14,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1020,-6,0,1137,9,0,0 +2013,5,19,7,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,958,-5,0,1314,-16,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,18,1,955,12,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,3,0,1415,-15,0,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,15,1,1810,5,0,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,6,0,1029,8,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-4,0,830,-6,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,122,1,1115,175,1,0 +2013,6,14,5,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1515,2,0,1647,-9,0,0 +2013,8,5,1,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2015,45,1,8,35,1,0 +2013,4,19,5,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,2050,18,1,2335,4,0,0 +2013,4,4,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1829,58,1,2130,30,1,0 +2013,5,6,1,YV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1950,-10,0,2056,-21,0,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1305,-2,0,1442,-8,0,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1135,31,1,1430,29,1,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,1,0,2050,-4,0,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,843,2,0,1257,-7,0,0 +2013,5,8,3,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1625,-3,0,1900,-9,0,0 +2013,7,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1515,28,1,1726,18,1,0 +2013,4,20,6,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1558,42,1,1640,46,1,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-2,0,2150,-5,0,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1655,1,0,1800,-1,0,0 +2013,8,26,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-5,0,834,-13,0,0 +2013,4,21,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,-1,0,1600,-19,0,0 +2013,4,3,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-4,0,1735,-10,0,0 +2013,9,14,6,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,917,-14,0,1129,-20,0,0 +2013,7,30,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1825,0,0,1850,2,0,0 +2013,4,21,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,910,-6,0,1034,13,0,0 +2013,8,9,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,8,0,1750,-4,0,0 +2013,6,4,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,-3,0,1320,-10,0,0 +2013,9,13,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1431,0,,1601,0,1,1 +2013,8,14,3,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1605,12,0,1745,13,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,23,1,1615,10,0,0 +2013,9,20,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,850,13,0,935,12,0,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2040,-6,0,2221,-20,0,0 +2013,8,22,4,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1220,13,0,1354,8,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1900,-1,0,2005,-13,0,0 +2013,8,20,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-5,0,815,-21,0,0 +2013,10,13,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,825,-1,0,920,-15,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1439,-2,0,1600,-12,0,0 +2013,6,2,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,-5,0,2016,9,0,0 +2013,9,7,6,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,-6,0,1039,3,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2115,13,0,2340,40,1,0 +2013,9,22,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1714,-4,0,2334,-19,0,0 +2013,5,31,5,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-4,0,1820,-23,0,0 +2013,4,16,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,5,0,2114,-2,0,0 +2013,8,2,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,25,1,1205,18,1,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1019,4,0,1128,14,0,0 +2013,6,20,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-4,0,1602,-6,0,0 +2013,8,19,1,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1802,-6,0,1917,-12,0,0 +2013,7,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,0,0,2015,4,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1821,50,1,2055,16,1,0 +2013,7,20,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1345,-14,0,0 +2013,10,1,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-8,0,1235,-2,0,0 +2013,5,9,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,28,1,1517,16,1,0 +2013,6,17,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,815,2,0,0 +2013,9,23,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1800,46,1,1920,45,1,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1405,-1,0,1615,-5,0,0 +2013,9,13,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1311,5,0,1656,17,1,0 +2013,6,18,2,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1310,-1,0,1630,-6,0,0 +2013,10,6,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,914,2,0,1150,3,0,0 +2013,6,3,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1846,46,1,2014,33,1,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1005,-3,0,1515,2,0,0 +2013,7,30,2,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1200,10,0,1932,12,0,0 +2013,5,3,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1621,-4,0,1800,-9,0,0 +2013,4,15,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1846,-8,0,2025,-1,0,0 +2013,4,23,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-6,0,1623,-12,0,0 +2013,9,4,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1640,24,1,1947,-6,0,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,-3,0,2050,-22,0,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,635,-3,0,750,-8,0,0 +2013,7,26,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1921,1,0,2050,-5,0,0 +2013,9,16,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,4,0,1030,5,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,805,-1,0,1155,-22,0,0 +2013,7,15,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,0,0,1122,-9,0,0 +2013,9,20,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1430,34,1,1545,32,1,0 +2013,7,18,4,OO,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-3,0,1301,-5,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1557,-2,0,1737,1,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,0,0,755,4,0,0 +2013,8,7,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2145,-2,0,2305,-7,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,600,9,0,832,4,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1920,54,1,2158,128,1,0 +2013,5,24,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,655,-5,0,920,-35,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1515,-3,0,1715,-21,0,0 +2013,6,2,7,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,28,1,1620,22,1,0 +2013,9,24,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,909,-8,0,1021,-20,0,0 +2013,9,20,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1030,0,0,1245,-5,0,0 +2013,4,18,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2205,114,1,2309,89,1,0 +2013,7,28,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,0,0,846,-1,0,0 +2013,6,30,7,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-9,0,1155,-8,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1635,33,1,1805,36,1,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1945,-5,0,2255,-9,0,0 +2013,4,3,3,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,615,118,1,758,128,1,0 +2013,10,27,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,11,0,900,4,0,0 +2013,8,8,4,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1440,38,1,2245,50,1,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1415,16,1,1625,10,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1930,-3,0,2308,-11,0,0 +2013,10,10,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1709,-9,0,1759,-6,0,0 +2013,8,12,1,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1705,0,0,1930,22,1,0 +2013,9,20,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-8,0,1100,-16,0,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,0,,1100,0,1,1 +2013,10,12,6,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-1,0,1219,-1,0,0 +2013,5,17,5,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,4,0,1210,-1,0,0 +2013,9,21,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,35,1,1407,49,1,0 +2013,4,5,5,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,739,-13,0,954,-37,0,0 +2013,10,15,2,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-11,0,1329,2,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1435,0,0,1613,-16,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,830,-4,0,1149,-25,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1935,17,1,2100,7,0,0 +2013,8,11,7,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1529,2,0,1815,1,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-5,0,1115,-2,0,0 +2013,7,27,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,935,-3,0,1110,0,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,930,77,1,1130,90,1,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,1,0,1925,-2,0,0 +2013,9,10,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1012,-7,0,1124,-22,0,0 +2013,5,6,1,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,722,-5,0,1121,-2,0,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1614,0,0,1845,-18,0,0 +2013,6,19,3,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,1815,-2,0,2135,-2,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,-4,0,1739,-23,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1528,39,1,1710,55,1,0 +2013,8,2,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1850,0,,2037,0,1,1 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1130,-2,0,1515,-17,0,0 +2013,5,3,5,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,14,0,1653,-2,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,630,-3,0,745,-6,0,0 +2013,9,2,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1920,-1,0,2045,0,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-2,0,1100,-6,0,0 +2013,10,8,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1605,-1,0,1715,-7,0,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1630,57,1,1850,67,1,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,959,-4,0,1657,28,1,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,950,10,0,1230,4,0,0 +2013,8,5,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,715,-5,0,1030,-10,0,0 +2013,5,31,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1545,110,1,1710,104,1,0 +2013,8,10,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,0,0,1605,-2,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,10,0,1855,14,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1925,5,0,2354,-7,0,0 +2013,7,26,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,-2,0,1450,2,0,0 +2013,8,26,1,AS,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-4,0,1735,-15,0,0 +2013,9,6,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-6,0,2141,-5,0,0 +2013,4,8,1,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-5,0,1854,17,1,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,8,0,750,2,0,0 +2013,8,7,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1458,-4,0,1600,2,0,0 +2013,5,20,1,YV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,2100,4,0,2,11,0,0 +2013,10,7,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,645,-7,0,903,-16,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1450,-3,0,2015,-1,0,0 +2013,6,20,4,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,905,-3,0,1115,0,0,0 +2013,5,6,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1815,-3,0,1940,-7,0,0 +2013,10,22,2,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1510,-5,0,2110,-19,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1430,5,0,1955,12,0,0 +2013,7,1,1,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1640,182,1,1813,178,1,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,645,-5,0,915,-23,0,0 +2013,6,13,4,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,3,0,1630,26,1,0 +2013,10,25,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1700,4,0,1915,9,0,0 +2013,4,24,3,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1926,-7,0,2155,-16,0,0 +2013,4,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,4,0,845,8,0,0 +2013,10,13,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1513,-4,0,1637,6,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1825,1,0,1930,-4,0,0 +2013,10,14,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,17,1,1225,11,0,0 +2013,10,12,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,645,-2,0,715,-21,0,0 +2013,9,29,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-1,0,1650,-4,0,0 +2013,10,6,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1510,0,0,1800,-8,0,0 +2013,7,3,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,859,6,0,0 +2013,8,14,3,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,-2,0,2357,-17,0,0 +2013,4,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,2058,-10,0,2307,-11,0,0 +2013,4,26,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,855,-3,0,955,-2,0,0 +2013,10,21,1,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-6,0,1219,-16,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,856,-1,0,1523,2,0,0 +2013,9,16,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,-6,0,720,0,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1550,-3,0,1940,-21,0,0 +2013,6,22,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1936,37,1,2050,20,1,0 +2013,7,14,7,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-3,0,1558,0,0,0 +2013,7,4,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1702,-4,0,2000,-19,0,0 +2013,6,4,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,955,15,1,1125,10,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1810,-3,0,2050,-11,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-2,0,1201,-6,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1506,-3,0,1614,-7,0,0 +2013,7,27,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-9,0,1130,-18,0,0 +2013,10,23,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,927,0,0,1226,-6,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2145,16,1,158,14,0,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1010,-3,0,1253,-3,0,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,0,0,1758,-8,0,0 +2013,6,24,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,939,-1,0,1142,2,0,0 +2013,9,26,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-5,0,2150,-16,0,0 +2013,6,23,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1030,3,0,1205,-1,0,0 +2013,6,29,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,605,-4,0,1357,-10,0,0 +2013,6,12,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1850,-6,0,2135,-11,0,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,69,1,2130,60,1,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1630,51,1,1820,46,1,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1749,-1,0,1915,-24,0,0 +2013,9,8,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,1,0,1500,-18,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,904,-9,0,1021,-6,0,0 +2013,6,16,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,900,-2,0,1023,-20,0,0 +2013,10,27,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-7,0,1108,-17,0,0 +2013,5,11,6,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1310,92,1,1801,96,1,0 +2013,8,22,4,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1035,8,0,1355,12,0,0 +2013,10,10,4,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1835,0,0,2105,-28,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1340,0,0,1555,3,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2055,21,1,2249,17,1,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1545,3,0,1735,-16,0,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,-3,0,2055,-6,0,0 +2013,7,17,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,904,0,0,1036,-14,0,0 +2013,10,13,7,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,840,-3,0,955,-6,0,0 +2013,10,1,2,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,-3,0,1048,0,0,0 +2013,8,31,6,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-2,0,1227,-24,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1230,-2,0,1235,-13,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1339,-1,0,1458,-14,0,0 +2013,4,20,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1925,25,1,2204,3,0,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-7,0,1235,-10,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,825,12,0,1000,16,1,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1725,-7,0,1810,-1,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,615,-1,0,859,-10,0,0 +2013,6,11,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,11,0,1606,15,1,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,903,1,0,1200,-23,0,0 +2013,5,17,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,605,11,0,839,11,0,0 +2013,4,10,3,WN,15376,Tucson International,Tucson,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,600,2,0,800,-2,0,0 +2013,9,5,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1551,-1,0,2056,25,1,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,35,1,1905,83,1,0 +2013,9,4,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,1630,1,0,1820,-4,0,0 +2013,7,16,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1745,-4,0,1910,8,0,0 +2013,5,27,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1437,12,0,1600,14,0,0 +2013,6,27,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1850,1,0,2005,9,0,0 +2013,8,18,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,0,0,1859,-11,0,0 +2013,8,21,3,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,915,1,0,935,-3,0,0 +2013,9,9,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1418,10,0,1524,4,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2220,-1,0,2335,11,0,0 +2013,10,30,3,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-8,0,1930,-11,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-9,0,1643,-8,0,0 +2013,9,25,3,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1325,2,0,1545,4,0,0 +2013,9,10,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,827,-17,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1642,24,1,1833,7,0,0 +2013,10,13,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,7,0,1755,5,0,0 +2013,6,5,3,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1116,-10,0,1306,-21,0,0 +2013,5,19,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1220,-4,0,1700,82,1,0 +2013,5,29,3,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,-5,0,2204,-17,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,-3,0,2252,-19,0,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2005,22,1,2234,16,1,0 +2013,9,5,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,850,0,0,1008,-7,0,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1005,-4,0,1300,1,0,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1259,46,1,2130,69,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,29,1,1000,20,1,0 +2013,7,9,2,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,615,3,0,803,-22,0,0 +2013,9,25,3,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,1,0,1815,12,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,1,0,1754,-9,0,0 +2013,7,19,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1820,14,0,2052,44,1,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2031,87,1,2125,89,1,0 +2013,7,11,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-3,0,1450,8,0,0 +2013,4,19,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1330,22,1,1610,23,1,0 +2013,10,9,3,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1350,-2,0,1914,-12,0,0 +2013,6,17,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-10,0,1634,3,0,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1541,1,0,1641,5,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,3,0,1711,7,0,0 +2013,4,10,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1859,-4,0,2159,35,1,0 +2013,8,29,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1827,-5,0,2115,-3,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1734,-8,0,2009,-42,0,0 +2013,5,28,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1743,1,0,2115,1,0,0 +2013,5,7,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1150,11,0,1225,-4,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,809,-8,0,836,-24,0,0 +2013,4,4,4,EV,12451,Jacksonville International,Jacksonville,FL,12953,LaGuardia,New York,NY,1127,1,0,1349,-19,0,0 +2013,8,19,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,720,34,1,830,35,1,0 +2013,6,22,6,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,-5,0,1818,-24,0,0 +2013,9,12,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1825,13,0,1925,22,1,0 +2013,5,26,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1357,-6,0,2218,-31,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1215,31,1,1430,17,1,0 +2013,4,30,2,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,810,-2,0,1015,-8,0,0 +2013,6,17,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,-3,0,1848,27,1,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,913,-4,0,1137,-3,0,0 +2013,8,12,1,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-5,0,1800,-21,0,0 +2013,10,24,4,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1320,1,0,1450,0,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1735,42,1,1820,40,1,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-1,0,1030,-8,0,0 +2013,8,10,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-1,0,1820,-11,0,0 +2013,7,5,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-6,0,1055,-2,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,10,0,1313,17,1,0 +2013,5,4,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1705,15,1,1835,3,0,0 +2013,4,16,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,291,1,2030,282,1,0 +2013,5,29,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1355,1,0,1450,-4,0,0 +2013,7,29,1,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,2,0,920,-10,0,0 +2013,10,13,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,815,-2,0,910,-8,0,0 +2013,4,7,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1209,-9,0,1505,-19,0,0 +2013,5,13,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,29,1,2305,42,1,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,850,6,0,1010,-13,0,0 +2013,5,10,5,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,815,-5,0,1034,-9,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,-1,0,1520,-13,0,0 +2013,9,15,7,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-4,0,550,-4,0,0 +2013,6,29,6,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1255,147,1,1427,140,1,0 +2013,10,6,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,10,0,1115,3,0,0 +2013,5,31,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,830,-2,0,955,8,0,0 +2013,10,26,6,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,920,-4,0,1308,-5,0,0 +2013,10,2,3,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,-3,0,1009,-13,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,0,0,1643,-6,0,0 +2013,4,16,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-8,0,1413,2,0,0 +2013,6,27,4,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,940,-10,0,1202,-22,0,0 +2013,8,26,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1050,-6,0,1203,-14,0,0 +2013,10,13,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,637,-6,0,757,5,0,0 +2013,7,14,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,1,0,1654,7,0,0 +2013,5,24,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1920,5,0,2235,4,0,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1933,5,0,2245,8,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1010,7,0,1105,-1,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,633,14,0,852,13,0,0 +2013,4,6,6,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1629,8,0,1850,-14,0,0 +2013,4,4,4,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,3,0,2013,0,0,0 +2013,5,6,1,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,-5,0,845,-38,0,0 +2013,9,1,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-9,0,1242,-19,0,0 +2013,9,9,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,-7,0,2250,2,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,710,1,45,703,1,0 +2013,8,29,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1045,0,0,1306,11,0,0 +2013,10,19,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,730,1,0,900,-2,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1600,3,0,1730,-1,0,0 +2013,4,19,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1255,-4,0,1535,3,0,0 +2013,10,16,3,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,2005,-3,0,2130,-20,0,0 +2013,7,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1324,15,1,1451,10,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2055,3,0,2259,-10,0,0 +2013,6,15,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,600,0,,615,0,1,1 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1540,43,1,1655,35,1,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-1,0,1317,6,0,0 +2013,4,13,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-1,0,948,-15,0,0 +2013,7,20,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-6,0,758,-6,0,0 +2013,8,20,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-7,0,1210,-29,0,0 +2013,10,14,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,827,3,0,1112,-13,0,0 +2013,4,12,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,942,8,0,1223,9,0,0 +2013,10,27,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,-6,0,2320,-13,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1510,9,0,1615,17,1,0 +2013,4,26,5,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,610,-3,0,825,-14,0,0 +2013,10,11,5,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1859,84,1,2123,88,1,0 +2013,8,5,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1850,-4,0,2020,5,0,0 +2013,10,28,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,1,0,540,4,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,-1,0,1333,5,0,0 +2013,9,24,2,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,820,-1,0,1010,-10,0,0 +2013,6,10,1,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,905,-3,0,1115,-1,0,0 +2013,5,14,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,281,1,650,286,1,0 +2013,7,28,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,7,0,925,27,1,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1550,43,1,2125,18,1,0 +2013,7,10,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,0,0,1505,-7,0,0 +2013,9,25,3,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2135,-8,0,2320,-26,0,0 +2013,7,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1212,27,1,1706,27,1,0 +2013,4,26,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,520,-3,0,628,1,0,0 +2013,4,7,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2015,-3,0,2223,-14,0,0 +2013,4,19,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,845,9,0,1141,-15,0,0 +2013,7,27,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,3,0,1335,-11,0,0 +2013,6,22,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1015,15,1,1306,13,0,0 +2013,4,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1858,8,0,2010,9,0,0 +2013,5,13,1,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1839,51,1,1921,39,1,0 +2013,8,17,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2035,29,1,2206,17,1,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1617,-3,0,1820,6,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1255,3,0,1840,-23,0,0 +2013,10,24,4,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,915,-3,0,1115,3,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2050,54,1,2230,47,1,0 +2013,5,7,2,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,849,-8,0,0 +2013,10,11,5,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,4,0,1626,17,1,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,732,10,0,1006,19,1,0 +2013,4,10,3,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,0,,1330,0,1,1 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,735,-5,0,825,-13,0,0 +2013,6,21,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1335,15,1,1530,-7,0,0 +2013,7,16,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-7,0,1934,-5,0,0 +2013,10,21,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-4,0,1606,-18,0,0 +2013,4,11,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1545,51,1,1914,48,1,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,935,0,0,1105,-10,0,0 +2013,7,1,1,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-13,0,1029,-2,0,0 +2013,4,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,905,-5,0,1010,-7,0,0 +2013,8,3,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,25,1,1155,17,1,0 +2013,5,16,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,700,-2,0,831,-20,0,0 +2013,5,30,4,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-10,0,1100,-24,0,0 +2013,9,17,2,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-9,0,1300,-22,0,0 +2013,5,5,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,16,1,1200,13,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1045,32,1,1210,28,1,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,0,0,1135,1,0,0 +2013,10,8,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1350,0,0,1540,-1,0,0 +2013,7,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,11,0,1120,6,0,0 +2013,10,28,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1745,16,1,1840,17,1,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,729,0,0,1159,-3,0,0 +2013,7,12,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,920,-2,0,0 +2013,8,21,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,-4,0,1319,-7,0,0 +2013,10,17,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1304,-5,0,1422,-20,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1553,1,0,1733,13,0,0 +2013,5,12,7,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1530,58,1,1740,36,1,0 +2013,10,31,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,8,0,1959,8,0,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,905,-2,0,1125,-20,0,0 +2013,10,21,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-8,0,1427,-5,0,0 +2013,9,6,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1910,14,0,2040,3,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1745,12,0,2025,-11,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1305,-2,0,1625,8,0,0 +2013,5,3,5,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1330,6,0,1529,25,1,0 +2013,9,13,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-4,0,2110,-11,0,0 +2013,8,26,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,10,0,1925,9,0,0 +2013,10,20,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-6,0,900,-13,0,0 +2013,4,28,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2345,-11,0,149,-5,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1420,8,0,1620,6,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,750,26,1,1015,27,1,0 +2013,6,10,1,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,940,-1,0,1100,-1,0,0 +2013,10,30,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1656,0,0,1752,-7,0,0 +2013,10,26,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-2,0,800,-6,0,0 +2013,9,9,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,134,1,2155,126,1,0 +2013,5,17,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,0,0,715,-8,0,0 +2013,6,15,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1825,-6,0,2002,-24,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,-1,0,2112,-2,0,0 +2013,4,20,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-5,0,1225,-17,0,0 +2013,4,19,5,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,740,-2,0,930,-19,0,0 +2013,6,27,4,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,25,1,2029,40,1,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,5,0,2330,5,0,0 +2013,5,26,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-6,0,1650,-25,0,0 +2013,9,20,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1725,-3,0,1855,-3,0,0 +2013,6,2,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1740,7,0,1900,4,0,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,949,19,1,1522,-12,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1805,-2,0,2112,-33,0,0 +2013,8,21,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1000,1,0,1030,-8,0,0 +2013,4,1,1,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1215,6,0,1453,6,0,0 +2013,10,15,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,102,1,1845,83,1,0 +2013,5,14,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,820,14,0,1110,-10,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-5,0,1452,-17,0,0 +2013,10,1,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,-6,0,845,-23,0,0 +2013,4,20,6,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1240,-7,0,1434,-24,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,-1,0,1540,-16,0,0 +2013,6,2,7,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,-1,0,2110,88,1,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,820,0,0,940,5,0,0 +2013,10,14,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,33,1,1415,27,1,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-4,0,1655,-12,0,0 +2013,9,22,7,WN,10693,Nashville International,Nashville,TN,14747,Seattle/Tacoma International,Seattle,WA,920,-1,0,1210,-2,0,0 +2013,9,6,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-8,0,641,-23,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1745,12,0,1905,5,0,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,0,0,1508,-13,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1325,-3,0,1535,-4,0,0 +2013,8,14,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,8,0,2103,2,0,0 +2013,10,8,2,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,1830,-10,0,2205,-45,0,0 +2013,7,21,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,8,0,1320,-15,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-1,0,1544,-10,0,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,159,1,1209,157,1,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1220,5,0,1335,13,0,0 +2013,10,15,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-8,0,930,-1,0,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1140,-8,0,1305,6,0,0 +2013,9,2,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1200,-5,0,1310,-3,0,0 +2013,4,30,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1950,-8,0,2110,-1,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,929,-8,0,1201,-16,0,0 +2013,10,11,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,625,-5,0,920,-24,0,0 +2013,6,23,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,-7,0,1735,-9,0,0 +2013,7,30,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-8,0,1050,-13,0,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2148,-1,0,2300,8,0,0 +2013,10,27,7,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2200,-6,0,2310,-4,0,0 +2013,4,21,7,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-11,0,1029,-27,0,0 +2013,10,28,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-9,0,1435,-13,0,0 +2013,10,11,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,54,1,2245,39,1,0 +2013,5,13,1,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1129,18,1,1434,7,0,0 +2013,10,15,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1700,21,1,2105,20,1,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2000,-4,0,2143,-20,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2040,2,0,2305,0,0,0 +2013,4,26,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-2,0,1509,-7,0,0 +2013,8,19,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,3,0,1522,4,0,0 +2013,7,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1505,-8,0,1620,-1,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,-5,0,1904,11,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1335,1,0,1640,-19,0,0 +2013,10,26,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1812,-5,0,1954,-6,0,0 +2013,8,15,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1235,-8,0,1350,-19,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,-3,0,1243,-15,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,13,0,2105,-15,0,0 +2013,5,31,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-6,0,1105,-4,0,0 +2013,10,19,6,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,905,-2,0,1135,-15,0,0 +2013,7,4,4,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,714,-4,0,1325,-7,0,0 +2013,10,22,2,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1545,5,0,1755,-7,0,0 +2013,6,7,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1046,-7,0,1327,2,0,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1650,-1,0,2015,3,0,0 +2013,4,18,4,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1500,9,0,1535,20,1,0 +2013,10,1,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,-8,0,1958,-26,0,0 +2013,6,7,5,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,50,1,2100,51,1,0 +2013,9,13,5,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,630,0,,742,0,1,1 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2003,-4,0,2132,-23,0,0 +2013,7,31,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,630,2,0,1505,16,1,0 +2013,10,22,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1756,-4,0,1928,-9,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,0,0,820,-14,0,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,930,-4,0,1620,5,0,0 +2013,5,14,2,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1705,113,1,1932,116,1,0 +2013,8,5,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,-4,0,2030,-22,0,0 +2013,8,18,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1630,6,0,1755,-1,0,0 +2013,9,8,7,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1917,18,1,2019,13,0,0 +2013,4,24,3,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,545,-6,0,709,9,0,0 +2013,5,11,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1210,-4,0,1510,-15,0,0 +2013,6,29,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,2,0,1049,-3,0,0 +2013,5,17,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-4,0,1130,3,0,0 +2013,9,25,3,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1709,-10,0,1750,-18,0,0 +2013,10,4,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,3,0,1905,-4,0,0 +2013,7,31,3,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1755,2,0,1925,-2,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,-1,0,2220,-24,0,0 +2013,8,10,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,13,0,1900,3,0,0 +2013,8,18,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,2206,-5,0,2248,-13,0,0 +2013,8,24,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1100,-3,0,1402,-26,0,0 +2013,6,3,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,16,1,1340,2,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2205,104,1,2252,92,1,0 +2013,7,25,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,-6,0,1304,-13,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,743,-2,0,1103,-41,0,0 +2013,9,14,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1255,-9,0,1445,-28,0,0 +2013,4,18,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1230,26,1,1400,12,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1926,14,0,2210,-7,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,91,1,2110,77,1,0 +2013,9,24,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2059,-1,0,2259,-11,0,0 +2013,7,13,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,-4,0,1025,2,0,0 +2013,7,20,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,78,1,1315,68,1,0 +2013,8,13,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-3,0,1235,-17,0,0 +2013,7,29,1,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,704,-6,0,1004,-20,0,0 +2013,8,24,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1550,-1,0,1746,-13,0,0 +2013,9,1,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1400,-4,0,1425,-15,0,0 +2013,6,23,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,805,-2,0,858,-9,0,0 +2013,6,8,6,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,11,0,920,8,0,0 +2013,5,3,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,3,0,850,2,0,0 +2013,4,28,7,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2200,-4,0,2355,-5,0,0 +2013,5,8,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,1,0,1150,-10,0,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1055,0,0,1235,-2,0,0 +2013,10,25,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1537,73,1,1853,72,1,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1342,-2,0,1510,2,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,6,0,740,0,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,-3,0,913,-14,0,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,200,1,1125,177,1,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,1,0,1849,-31,0,0 +2013,9,6,5,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1355,104,1,1655,88,1,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-6,0,1008,-25,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1255,32,1,1645,18,1,0 +2013,6,10,1,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1725,-7,0,2015,-6,0,0 +2013,5,23,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,38,1,1110,37,1,0 +2013,7,6,6,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1630,98,1,1830,85,1,0 +2013,9,11,3,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,745,-10,0,1536,-14,0,0 +2013,8,13,2,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1735,115,1,2000,116,1,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,958,-2,0,1007,1,0,0 +2013,7,30,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-9,0,1200,-20,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,38,1,2020,30,1,0 +2013,10,18,5,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,3,0,1551,0,0,0 +2013,8,6,2,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,-8,0,2000,-8,0,0 +2013,10,1,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,922,-13,0,1030,-5,0,0 +2013,10,28,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,29,1,1940,21,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1232,2,0,1434,-17,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1708,-3,0,2319,-9,0,0 +2013,9,8,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1216,1,0,1420,-12,0,0 +2013,8,16,5,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,-2,0,2145,-5,0,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2210,-3,0,2315,24,1,0 +2013,7,29,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,65,1,2010,60,1,0 +2013,7,23,2,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,920,14,0,1055,6,0,0 +2013,9,20,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,2,0,825,-12,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,903,-6,0,1029,-4,0,0 +2013,4,3,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,29,1,1930,22,1,0 +2013,6,11,2,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1025,-7,0,1247,-16,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1425,-2,0,1520,-6,0,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1722,-4,0,2024,14,0,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1635,13,0,1835,-5,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1020,-2,0,1155,-15,0,0 +2013,5,22,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1814,20,1,1836,11,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,720,-5,0,830,-7,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1755,3,0,2010,-2,0,0 +2013,9,16,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,-6,0,1230,-18,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,615,0,0,835,15,1,0 +2013,6,30,7,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,835,1,0,1000,-5,0,0 +2013,8,23,5,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1055,2,0,1425,-7,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,-3,0,1200,-8,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1325,0,0,1720,-4,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1415,21,1,1625,27,1,0 +2013,9,11,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,844,-14,0,0 +2013,6,12,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1025,-3,0,1205,-22,0,0 +2013,6,4,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,-8,0,1904,-9,0,0 +2013,6,19,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,9,0,805,2,0,0 +2013,8,8,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2146,1,0,2241,3,0,0 +2013,7,10,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1715,0,,1854,0,1,1 +2013,4,28,7,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,-5,0,2033,-15,0,0 +2013,7,17,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-1,0,904,-2,0,0 +2013,5,3,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1600,25,1,1920,28,1,0 +2013,6,22,6,EV,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,-7,0,2028,-14,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,810,-2,0,920,-11,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1120,13,0,1213,8,0,0 +2013,6,12,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,740,-1,0,855,-11,0,0 +2013,9,13,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1455,4,0,2015,3,0,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,950,-4,0,1334,-10,0,0 +2013,8,12,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1821,6,0,2122,-14,0,0 +2013,4,11,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1504,-2,0,1724,-3,0,0 +2013,9,1,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,2,0,19,-15,0,0 +2013,6,20,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1138,1,0,1700,-9,0,0 +2013,5,4,6,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,819,-5,0,1017,-10,0,0 +2013,5,22,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1742,-9,0,1913,-17,0,0 +2013,9,11,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-8,0,840,-10,0,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,855,-2,0,1005,-23,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1220,63,1,1650,67,1,0 +2013,9,16,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-9,0,1019,-21,0,0 +2013,9,5,4,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,735,0,0,932,-2,0,0 +2013,9,21,6,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1615,12,0,1849,4,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,854,-5,0,1346,-6,0,0 +2013,6,14,5,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1100,-5,0,1250,-12,0,0 +2013,7,28,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1800,-1,0,1905,-10,0,0 +2013,7,16,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-6,0,2140,14,0,0 +2013,6,23,7,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,959,26,1,1110,23,1,0 +2013,6,29,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,12,0,1220,21,1,0 +2013,6,16,7,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,9,0,1320,25,1,0 +2013,7,4,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,845,-8,0,0 +2013,4,5,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,-5,0,838,-34,0,0 +2013,4,21,7,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1011,-1,0,1315,-1,0,0 +2013,6,7,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2055,8,0,2120,19,1,0 +2013,10,29,2,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1945,45,1,40,33,1,0 +2013,5,23,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2140,1,0,2250,2,0,0 +2013,9,26,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-8,0,1652,-12,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,855,-3,0,1210,-12,0,0 +2013,9,16,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,950,0,0,1120,-21,0,0 +2013,9,16,1,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,840,0,0,1146,-2,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-5,0,906,-13,0,0 +2013,10,14,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,4,0,1908,2,0,0 +2013,7,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1840,4,0,2001,1,0,0 +2013,9,28,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1501,-28,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1909,8,0,2037,-2,0,0 +2013,9,15,7,EV,13931,Norfolk International,Norfolk,VA,12953,LaGuardia,New York,NY,1103,-5,0,1232,-16,0,0 +2013,7,3,3,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1314,-9,0,2112,10,0,0 +2013,4,2,2,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1940,1,0,2315,22,1,0 +2013,8,30,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1135,3,0,1230,-1,0,0 +2013,10,29,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,-5,0,2043,-8,0,0 +2013,8,1,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-5,0,1415,-17,0,0 +2013,10,12,6,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1235,0,0,1335,-14,0,0 +2013,9,11,3,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1809,0,,2029,0,1,1 +2013,7,28,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,179,1,1630,175,1,0 +2013,4,7,7,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,-2,0,618,-12,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1129,-5,0,1357,-18,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1351,-9,0,1658,-26,0,0 +2013,10,28,1,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,-1,0,1935,43,1,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2145,-11,0,2245,-8,0,0 +2013,8,30,5,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,841,103,1,1108,102,1,0 +2013,6,15,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-6,0,1555,-7,0,0 +2013,4,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1005,-5,0,1135,-3,0,0 +2013,7,26,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1150,75,1,1800,76,1,0 +2013,4,30,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,-4,0,1945,-12,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1415,25,1,1640,15,1,0 +2013,6,5,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,0,0,1604,2,0,0 +2013,4,3,3,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,745,-10,0,1010,-10,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1720,6,0,1950,-1,0,0 +2013,4,12,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,24,1,2230,16,1,0 +2013,9,4,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-4,0,811,-20,0,0 +2013,8,27,2,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,4,0,2140,-8,0,0 +2013,4,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1737,75,1,1925,62,1,0 +2013,9,8,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-3,0,1215,-48,0,0 +2013,4,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,-2,0,2259,6,0,0 +2013,7,13,6,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-10,0,1724,-19,0,0 +2013,8,17,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,958,-9,0,1145,-16,0,0 +2013,8,24,6,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,0,0,1235,-17,0,0 +2013,6,29,6,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1655,0,0,1740,-14,0,0 +2013,5,2,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-6,0,1936,-9,0,0 +2013,6,26,3,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-1,0,1229,8,0,0 +2013,9,19,4,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,955,31,1,1240,39,1,0 +2013,7,3,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1955,-2,0,2246,1,0,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1950,55,1,2130,60,1,0 +2013,8,1,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,5,0,1516,10,0,0 +2013,8,8,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,0,0,1605,-8,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1920,7,0,2330,2,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1150,-2,0,1330,-4,0,0 +2013,9,13,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,855,-2,0,955,-8,0,0 +2013,4,5,5,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1741,-2,0,1912,-6,0,0 +2013,7,13,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-9,0,848,-22,0,0 +2013,6,23,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,755,-3,0,900,-25,0,0 +2013,9,20,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,-1,0,915,-14,0,0 +2013,7,17,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-1,0,1441,2,0,0 +2013,6,3,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1104,-6,0,1700,14,0,0 +2013,10,8,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1555,-5,0,1625,-9,0,0 +2013,4,6,6,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-6,0,1817,-3,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,735,-1,0,1300,-10,0,0 +2013,9,9,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,640,-4,0,750,-10,0,0 +2013,5,21,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,853,-9,0,1027,-7,0,0 +2013,8,17,6,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1040,-1,0,1325,-8,0,0 +2013,9,2,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1335,241,1,1522,227,1,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,841,16,1,949,0,0,0 +2013,7,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1215,5,0,1815,24,1,0 +2013,8,20,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,5,0,2050,-3,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1920,4,0,2036,-3,0,0 +2013,6,30,7,EV,11618,Newark Liberty International,Newark,NJ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1209,55,1,1312,168,1,0 +2013,6,21,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,4,0,750,-6,0,0 +2013,7,1,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,0,,1612,0,1,1 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1735,-2,0,1840,19,1,0 +2013,5,17,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,34,1,1225,29,1,0 +2013,5,7,2,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,909,11,0,0 +2013,8,26,1,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,2,0,608,-2,0,0 +2013,10,14,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,3,0,1838,17,1,0 +2013,6,27,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,855,0,0,1115,-13,0,0 +2013,6,26,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,-5,0,1810,9,0,0 +2013,10,19,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-4,0,2019,-20,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2030,72,1,2217,62,1,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2221,-3,0,702,-3,0,0 +2013,5,18,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1021,31,1,1304,22,1,0 +2013,10,17,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1635,-7,0,1951,-23,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1425,-2,0,1555,-4,0,0 +2013,7,22,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1850,0,,2030,0,1,1 +2013,5,13,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,-3,0,1900,-13,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1755,-5,0,1900,0,0,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,915,-3,0,1054,3,0,0 +2013,6,1,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,14,0,1825,5,0,0 +2013,7,1,1,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-3,0,2046,-5,0,0 +2013,7,17,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-1,0,1625,-8,0,0 +2013,4,30,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1240,-10,0,1451,-20,0,0 +2013,10,29,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1745,-1,0,1845,0,0,0 +2013,9,3,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1653,29,1,1921,22,1,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2246,-1,0,29,-22,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1045,143,1,1410,137,1,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1105,-3,0,1245,-2,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,15,1,1138,16,1,0 +2013,4,16,2,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1634,-5,0,1829,-20,0,0 +2013,7,24,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,629,-3,0,752,-8,0,0 +2013,7,14,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-2,0,2030,-4,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1515,0,0,1615,-1,0,0 +2013,8,20,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1105,0,,1156,0,1,1 +2013,7,3,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-4,0,2105,13,0,0 +2013,5,21,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1845,-6,0,2300,-11,0,0 +2013,4,5,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,20,27,1,535,23,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1340,21,1,1505,21,1,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1930,68,1,2050,65,1,0 +2013,4,30,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,12,0,2226,7,0,0 +2013,8,31,6,9E,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-7,0,1836,-1,0,0 +2013,9,18,3,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1150,0,0,1415,-33,0,0 +2013,6,12,3,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,-2,0,1710,-10,0,0 +2013,6,21,5,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1220,11,0,1401,-1,0,0 +2013,9,6,5,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,1,0,1559,0,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1520,-2,0,2304,-23,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1650,-2,0,2105,-23,0,0 +2013,6,17,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,-4,0,1255,-16,0,0 +2013,5,4,6,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1800,61,1,2115,25,1,0 +2013,6,27,4,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1500,-6,0,1810,1,0,0 +2013,10,19,6,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1715,33,1,2215,17,1,0 +2013,4,12,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,600,-3,0,725,-15,0,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1400,-4,0,1450,-15,0,0 +2013,8,11,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1240,-2,0,1554,-14,0,0 +2013,5,6,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-6,0,2215,-23,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,1,0,945,-5,0,0 +2013,9,4,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1900,28,1,2040,26,1,0 +2013,5,28,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,645,-5,0,808,-14,0,0 +2013,4,6,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,-4,0,1100,-10,0,0 +2013,5,16,4,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,78,1,1326,74,1,0 +2013,10,7,1,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1159,0,,1620,0,1,1 +2013,4,15,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,-6,0,1301,-13,0,0 +2013,7,16,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,8,0,1917,4,0,0 +2013,6,17,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,-6,0,2312,22,1,0 +2013,5,5,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1430,-4,0,1638,-18,0,0 +2013,9,22,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1545,43,1,1753,60,1,0 +2013,6,29,6,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,4,0,1526,-10,0,0 +2013,5,22,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,1,0,2100,-5,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1721,32,1,1923,26,1,0 +2013,6,8,6,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1710,-2,0,1945,-16,0,0 +2013,6,7,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1007,7,0,1133,-2,0,0 +2013,10,8,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,800,3,0,910,-14,0,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1420,12,0,1559,15,1,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,-5,0,1415,-17,0,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1945,-2,0,2110,-6,0,0 +2013,7,22,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,935,-14,0,1105,-20,0,0 +2013,7,28,7,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,720,-7,0,1000,13,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1000,1,0,1155,11,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,6,0,1945,14,0,0 +2013,5,12,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1450,7,0,1757,-9,0,0 +2013,8,16,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,121,1,2100,117,1,0 +2013,9,7,6,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,615,-6,0,750,-9,0,0 +2013,8,12,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,921,-5,0,1201,-11,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,956,7,0,1619,7,0,0 +2013,7,4,4,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,0,0,1051,-12,0,0 +2013,10,29,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-6,0,1510,-10,0,0 +2013,4,21,7,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1705,30,1,1843,30,1,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,29,1,2335,12,0,0 +2013,6,7,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1505,490,1,1654,467,1,0 +2013,7,12,5,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,641,-4,0,827,-7,0,0 +2013,6,25,2,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1115,-12,0,1330,-19,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1500,-4,0,1645,-13,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1050,-2,0,1210,-4,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1725,11,0,2015,22,1,0 +2013,4,10,3,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1329,5,0,1416,0,0,0 +2013,7,27,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-4,0,1050,-8,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1530,9,0,1700,15,1,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,830,-6,0,935,-12,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2030,0,0,2340,1,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1550,24,1,1645,19,1,0 +2013,4,24,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,23,1,2047,14,0,0 +2013,7,6,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-7,0,1127,-6,0,0 +2013,5,14,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,157,1,1420,144,1,0 +2013,5,26,7,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,0,0,555,-17,0,0 +2013,10,27,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1835,-6,0,2125,-14,0,0 +2013,10,18,5,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,645,-5,0,805,0,0,0 +2013,9,11,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1530,-1,0,1715,-12,0,0 +2013,6,25,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,5,0,2115,-13,0,0 +2013,8,22,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2025,26,1,2255,32,1,0 +2013,10,23,3,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1905,17,1,2011,7,0,0 +2013,6,5,3,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2100,18,1,2345,1,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,128,1,1349,136,1,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,-4,0,2205,-6,0,0 +2013,9,16,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,-6,0,2153,0,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1037,-6,0,1354,-29,0,0 +2013,9,13,5,OO,11278,Ronald Reagan Washington National,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1018,18,1,1140,15,1,0 +2013,10,1,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1610,1,0,1725,-7,0,0 +2013,5,29,3,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-6,0,2103,2,0,0 +2013,7,9,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,82,1,1831,106,1,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,5,0,1840,3,0,0 +2013,10,4,5,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,910,-3,0,1730,-4,0,0 +2013,6,19,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1116,-3,0,1439,-5,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1835,5,0,2200,-7,0,0 +2013,10,17,4,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1913,2,0,2035,8,0,0 +2013,9,26,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1815,-2,0,1905,-5,0,0 +2013,10,12,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1735,0,0,1953,2,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1630,50,1,2355,33,1,0 +2013,10,6,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,0,0,1352,-16,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1521,3,0,1619,13,0,0 +2013,7,24,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-6,0,1526,-6,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1510,0,0,1950,29,1,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,754,0,0,1630,26,1,0 +2013,10,29,2,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,1010,1,0,1235,-23,0,0 +2013,4,28,7,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,-7,0,2125,-18,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2030,-2,0,2135,-11,0,0 +2013,5,17,5,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2040,33,1,2320,29,1,0 +2013,10,15,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,818,2,0,1426,6,0,0 +2013,4,9,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1615,-5,0,1805,-15,0,0 +2013,10,6,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1351,-6,0,2002,-10,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,720,-1,0,820,1,0,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,-5,0,1612,-27,0,0 +2013,7,2,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,4,0,950,-1,0,0 +2013,10,10,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,710,-1,0,810,12,0,0 +2013,8,2,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-1,0,930,0,0,0 +2013,9,27,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,5,0,2035,-6,0,0 +2013,5,4,6,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1536,-1,0,1635,-4,0,0 +2013,8,24,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1035,0,0,1145,-7,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,55,1,1622,40,1,0 +2013,4,1,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1003,0,0,1146,-10,0,0 +2013,6,25,2,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,83,1,1948,73,1,0 +2013,8,4,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1425,-10,0,1601,-25,0,0 +2013,5,8,3,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,213,1,2039,222,1,0 +2013,5,8,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1712,201,1,1840,223,1,0 +2013,5,31,5,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1700,-3,0,2011,-21,0,0 +2013,8,6,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,57,1,2110,93,1,0 +2013,6,20,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,600,-6,0,834,-9,0,0 +2013,5,14,2,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,-9,0,2125,-6,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1240,7,0,1420,3,0,0 +2013,5,12,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,731,-4,0,1030,-4,0,0 +2013,6,18,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1835,12,0,1955,5,0,0 +2013,10,26,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1030,64,1,1115,67,1,0 +2013,5,22,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1755,-2,0,1948,-8,0,0 +2013,6,12,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1116,5,0,1439,2,0,0 +2013,9,24,2,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1630,16,1,1815,13,0,0 +2013,10,10,4,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1355,12,0,1530,-5,0,0 +2013,7,23,2,OO,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1020,8,0,1238,3,0,0 +2013,8,2,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,730,5,0,1019,-6,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1835,1,0,2000,-1,0,0 +2013,8,22,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1521,24,1,0 +2013,4,29,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,-9,0,2350,-6,0,0 +2013,5,23,4,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1922,62,1,2159,58,1,0 +2013,8,3,6,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1406,-4,0,1620,-13,0,0 +2013,7,3,3,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,84,1,1643,87,1,0 +2013,9,17,2,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,26,1,1701,41,1,0 +2013,5,30,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1214,109,1,1345,109,1,0 +2013,4,13,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1117,-9,0,1220,-19,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1920,5,0,2020,6,0,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,756,-4,0,1037,-4,0,0 +2013,5,27,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1541,-9,0,1829,-17,0,0 +2013,6,27,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,-5,0,1655,-7,0,0 +2013,9,26,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1420,6,0,0 +2013,7,7,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,-2,0,1229,9,0,0 +2013,4,28,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1010,99,1,1131,93,1,0 +2013,9,10,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-4,0,1610,1,0,0 +2013,4,28,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1714,-14,0,1818,-26,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-2,0,2349,-1,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1315,-4,0,1536,-23,0,0 +2013,6,19,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1535,0,0,1810,-17,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1540,9,0,1823,-1,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,945,54,1,1300,32,1,0 +2013,4,10,3,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1710,-14,0,1918,-17,0,0 +2013,8,4,7,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,735,-5,0,926,-21,0,0 +2013,7,15,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1850,2,0,2035,-12,0,0 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1556,47,1,1835,7,0,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-4,0,1037,-27,0,0 +2013,4,9,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1503,-6,0,2324,-7,0,0 +2013,4,1,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,600,0,0,720,-1,0,0 +2013,8,28,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1246,5,0,1526,7,0,0 +2013,5,9,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1459,-7,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1045,9,0,1210,-3,0,0 +2013,9,5,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,837,-3,0,921,-13,0,0 +2013,4,17,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-2,0,1226,-7,0,0 +2013,4,29,1,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,43,1,1327,39,1,0 +2013,5,16,4,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1500,137,1,2210,130,1,0 +2013,4,30,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-7,0,1345,-11,0,0 +2013,9,27,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,19,1,1959,21,1,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1720,10,0,1842,14,0,0 +2013,8,13,2,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-1,0,1140,-1,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,900,4,0,1030,2,0,0 +2013,10,18,5,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-9,0,906,-2,0,0 +2013,9,13,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,915,34,1,1130,30,1,0 +2013,4,28,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1144,-4,0,1359,-6,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,915,-3,0,1134,-22,0,0 +2013,4,3,3,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,611,-1,0,1155,-21,0,0 +2013,8,18,7,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,21,1,2105,26,1,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1645,-3,0,1820,-16,0,0 +2013,4,17,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-1,0,1205,-14,0,0 +2013,9,23,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,955,10,0,1203,11,0,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1945,-1,0,2152,-6,0,0 +2013,7,24,3,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,630,-3,0,730,0,0,0 +2013,8,1,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-2,0,1900,3,0,0 +2013,6,4,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,834,-7,0,1350,-26,0,0 +2013,5,5,7,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1145,26,1,1301,18,1,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1215,-4,0,1415,-19,0,0 +2013,10,9,3,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1900,0,0,2330,-17,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1051,16,1,1237,9,0,0 +2013,4,5,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,715,-8,0,825,-16,0,0 +2013,10,26,6,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1335,18,1,1535,13,0,0 +2013,10,3,4,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,25,1,2100,18,1,0 +2013,7,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,852,-7,0,1022,-2,0,0 +2013,10,1,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-2,0,1729,-32,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1455,3,0,1606,10,0,0 +2013,8,21,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-2,0,1943,-8,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1725,1,0,1921,2,0,0 +2013,10,20,7,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,700,1,0,1020,-4,0,0 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,817,-7,0,1106,-17,0,0 +2013,6,4,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,15,1,2320,6,0,0 +2013,6,3,1,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1925,4,0,2253,-23,0,0 +2013,10,7,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-9,0,918,6,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-3,0,1205,-18,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,950,12,0,1715,-3,0,0 +2013,9,4,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1405,-2,0,2100,-2,0,0 +2013,8,12,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2259,-1,0,133,-2,0,0 +2013,7,2,2,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1835,29,1,2155,42,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-3,0,1220,-14,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,730,4,0,906,-8,0,0 +2013,4,29,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-6,0,1730,-21,0,0 +2013,10,1,2,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,710,-1,0,1439,-8,0,0 +2013,7,26,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-3,0,1024,6,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1329,32,1,2157,-2,0,0 +2013,4,10,3,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1745,14,0,2105,30,1,0 +2013,4,30,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1455,-6,0,1630,-18,0,0 +2013,9,13,5,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1619,-4,0,1842,-18,0,0 +2013,4,28,7,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-8,0,1315,-22,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,-2,0,2210,20,1,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2145,21,1,158,13,0,0 +2013,7,9,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,57,1,2140,49,1,0 +2013,10,26,6,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,750,31,1,1040,33,1,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1321,3,0,1433,4,0,0 +2013,7,19,5,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1556,0,,1657,0,1,1 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1640,0,,2120,0,1,1 +2013,5,13,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1920,-3,0,2145,-12,0,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1120,-3,0,1309,-4,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,-4,0,1451,32,1,0 +2013,6,3,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,18,1,2227,21,1,0 +2013,6,24,1,EV,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-5,0,1004,-12,0,0 +2013,10,12,6,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-1,0,1205,-11,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1600,-2,0,1736,-7,0,0 +2013,10,13,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-2,0,843,-4,0,0 +2013,6,28,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1035,-2,0,1235,-17,0,0 +2013,7,3,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-5,0,859,28,1,0 +2013,5,19,7,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,20,1,2105,46,1,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,805,-4,0,946,-3,0,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1635,-2,0,1755,-15,0,0 +2013,10,20,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,-4,0,1705,-4,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1451,-3,0,1607,-26,0,0 +2013,7,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,951,-1,0,1319,-2,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,11,0,1645,6,0,0 +2013,5,10,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1744,-4,0,1955,-18,0,0 +2013,6,29,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1530,-3,0,1826,-8,0,0 +2013,8,12,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,4,0,1725,2,0,0 +2013,9,23,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,3,0,1155,-4,0,0 +2013,8,18,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,855,-3,0,1130,2,0,0 +2013,7,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,-4,0,1300,5,0,0 +2013,6,20,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-1,0,1315,-11,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,2,0,2037,18,1,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1254,-4,0,1649,-16,0,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,800,0,0,959,0,0,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1002,-2,0,1454,-13,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,25,1,35,13,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1520,7,0,1810,1,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1554,0,,1728,0,1,1 +2013,5,7,2,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,800,-4,0,1055,-16,0,0 +2013,6,2,7,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2119,-2,0,2346,-17,0,0 +2013,4,11,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1020,-4,0,1216,-15,0,0 +2013,9,24,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1246,12,0,1552,11,0,0 +2013,5,23,4,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1155,16,1,1405,8,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,810,-4,0,1017,-21,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1715,122,1,1840,120,1,0 +2013,6,6,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1500,3,0,2312,-17,0,0 +2013,7,15,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-9,0,1824,11,0,0 +2013,8,8,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,1,0,646,-10,0,0 +2013,8,12,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1145,39,1,1241,36,1,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1615,-4,0,1948,1,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,0,0,1338,-16,0,0 +2013,5,22,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,940,0,0,1057,6,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,655,-1,0,1000,-4,0,0 +2013,8,26,1,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2047,69,1,2223,61,1,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1228,-5,0,1337,-9,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2010,-5,0,2312,-18,0,0 +2013,4,22,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,17,1,1855,19,1,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1605,40,1,1741,30,1,0 +2013,5,12,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1745,-3,0,1947,-5,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1300,8,0,1544,1,0,0 +2013,8,9,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,958,1,0,1041,0,0,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-5,0,1134,-7,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1240,-6,0,1600,-11,0,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1915,5,0,2120,15,1,0 +2013,6,25,2,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1915,-3,0,2100,5,0,0 +2013,10,16,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1329,-6,0,1420,-14,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2104,6,0,2349,-2,0,0 +2013,5,16,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,3,0,1939,6,0,0 +2013,7,21,7,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1940,1,0,2035,-3,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2112,21,1,2201,1,0,0 +2013,9,9,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,855,-4,0,1130,-1,0,0 +2013,5,30,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1340,155,1,1950,169,1,0 +2013,9,18,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,850,-3,0,1100,-15,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1700,-1,0,1800,-11,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2215,8,0,2355,25,1,0 +2013,7,23,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-3,0,2145,-9,0,0 +2013,8,3,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,835,-17,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,28,1,1655,19,1,0 +2013,7,9,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,0,0,900,-4,0,0 +2013,8,7,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,-5,0,1905,7,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,24,1,1415,33,1,0 +2013,4,11,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,19,1,2110,33,1,0 +2013,7,2,2,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,909,72,1,1043,53,1,0 +2013,7,18,4,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,845,-6,0,1430,-2,0,0 +2013,8,10,6,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1645,3,0,1810,-3,0,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-5,0,2214,-15,0,0 +2013,7,8,1,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-5,0,555,-4,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,6,0,1630,39,1,0 +2013,8,15,4,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1252,0,0,1700,-32,0,0 +2013,6,15,6,9E,12451,Jacksonville International,Jacksonville,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-3,0,1645,19,1,0 +2013,10,17,4,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-10,0,1149,-7,0,0 +2013,4,3,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,56,1,1835,69,1,0 +2013,6,12,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,42,1,2020,28,1,0 +2013,8,16,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-3,0,759,-1,0,0 +2013,5,19,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1840,3,0,2008,-10,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1800,-5,0,2005,-14,0,0 +2013,7,19,5,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,623,-5,0,655,-15,0,0 +2013,7,24,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,9,0,1225,6,0,0 +2013,7,14,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1340,39,1,1648,19,1,0 +2013,9,21,6,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,935,2,0,1054,-2,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-2,0,1019,7,0,0 +2013,7,18,4,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,-1,0,1710,-1,0,0 +2013,10,12,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1015,-4,0,1203,22,1,0 +2013,4,18,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1233,-3,0,1534,-6,0,0 +2013,10,31,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,40,-11,0,530,-3,0,0 +2013,8,9,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1625,3,0,1915,1,0,0 +2013,9,11,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,5,0,2120,0,0,0 +2013,7,23,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,815,23,1,1141,10,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2155,105,1,2337,91,1,0 +2013,8,23,5,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1533,-10,0,1702,0,0,0 +2013,8,23,5,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1904,0,0,2109,-20,0,0 +2013,7,19,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,13,0,2215,0,0,0 +2013,8,13,2,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1232,75,1,1433,85,1,0 +2013,10,13,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1455,35,1,1744,33,1,0 +2013,10,3,4,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1110,-7,0,1944,-24,0,0 +2013,10,10,4,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1444,0,0,1624,22,1,0 +2013,9,14,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1626,-26,0,0 +2013,5,14,2,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1031,-7,0,1556,6,0,0 +2013,4,6,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1555,197,1,1845,191,1,0 +2013,8,1,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,111,1,2155,103,1,0 +2013,8,20,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-2,0,843,-9,0,0 +2013,8,9,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,28,1,1705,8,0,0 +2013,7,20,6,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1434,8,0,2015,-6,0,0 +2013,5,8,3,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-2,0,1826,-13,0,0 +2013,7,11,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,89,1,14,81,1,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,36,1,1705,18,1,0 +2013,6,13,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,705,-4,0,835,-2,0,0 +2013,5,7,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,-6,0,2145,-9,0,0 +2013,5,16,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,730,-3,0,1159,6,0,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,750,19,1,1210,9,0,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,700,-2,0,815,-19,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,1,0,1645,-10,0,0 +2013,5,8,3,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1240,-1,0,1432,-9,0,0 +2013,5,15,3,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,700,-3,0,850,-27,0,0 +2013,4,15,1,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,740,-7,0,1125,-12,0,0 +2013,4,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,707,-6,0,857,-26,0,0 +2013,8,9,5,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1007,-16,0,1246,-11,0,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,1000,13,0,1710,-10,0,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,910,2,0,1010,-7,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,-2,0,1922,-7,0,0 +2013,9,29,7,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1125,-1,0,1210,5,0,0 +2013,6,24,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-7,0,1418,10,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1002,-7,0,1538,2,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,43,1,1435,55,1,0 +2013,5,11,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,600,97,1,1125,89,1,0 +2013,8,15,4,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-6,0,1115,-17,0,0 +2013,8,31,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,952,-2,0,1335,-8,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1409,6,0,1540,1,0,0 +2013,10,22,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,930,-7,0,1112,9,0,0 +2013,6,27,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,839,-9,0,1128,-22,0,0 +2013,4,10,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-10,0,1034,-18,0,0 +2013,6,3,1,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,39,1,2110,13,0,0 +2013,10,29,2,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,-6,0,747,-3,0,0 +2013,5,3,5,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1631,10,0,1835,-17,0,0 +2013,6,13,4,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1355,2,0,1744,-2,0,0 +2013,4,27,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,810,-6,0,956,-2,0,0 +2013,9,20,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,17,1,1520,8,0,0 +2013,7,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,-1,0,1140,24,1,0 +2013,7,15,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-6,0,1039,6,0,0 +2013,6,11,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,-5,0,1830,1,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2135,27,1,2310,20,1,0 +2013,6,13,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1808,-1,0,1830,-9,0,0 +2013,9,4,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,0,0,1204,-24,0,0 +2013,10,10,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,850,-3,0,1155,-9,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,10,0,2033,-16,0,0 +2013,5,16,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2155,11,0,2340,-2,0,0 +2013,7,12,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2045,-2,0,2317,2,0,0 +2013,10,6,7,EV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1235,-8,0,1427,-4,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-2,0,1026,-24,0,0 +2013,5,23,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-4,0,1524,-8,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1620,1,0,1745,7,0,0 +2013,8,1,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1019,-5,0,1206,17,1,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1245,6,0,1400,7,0,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1119,11,0,1443,11,0,0 +2013,10,13,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,730,-2,0,1110,-18,0,0 +2013,10,26,6,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1615,-2,0,1755,-14,0,0 +2013,10,4,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1800,195,1,2011,187,1,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,7,0,1816,8,0,0 +2013,9,11,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-8,0,804,-13,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,18,1,2221,78,1,0 +2013,10,13,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,33,1,755,25,1,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2002,-6,0,2058,-17,0,0 +2013,7,7,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,2010,187,1,2325,177,1,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,-1,0,1055,3,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-2,0,1339,-15,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,850,-5,0,1013,0,0,0 +2013,4,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,25,1,1938,15,1,0 +2013,9,25,3,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1245,0,0,1624,-8,0,0 +2013,4,21,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,83,1,2110,168,1,0 +2013,6,7,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1345,-4,0,1709,-7,0,0 +2013,4,17,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,-5,0,1626,-2,0,0 +2013,6,16,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,5,0,614,-7,0,0 +2013,4,1,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,845,0,0,1045,-2,0,0 +2013,7,10,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,839,-2,0,0 +2013,9,14,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-4,0,2001,-16,0,0 +2013,7,4,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,742,-3,0,900,-7,0,0 +2013,6,23,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-2,0,1245,6,0,0 +2013,5,23,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,800,112,1,940,82,1,0 +2013,9,28,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1320,-5,0,1450,-7,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,0,0,2139,8,0,0 +2013,10,9,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1110,-5,0,1441,-14,0,0 +2013,9,17,2,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1602,16,1,1624,10,0,0 +2013,8,23,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,0,0,22,-34,0,0 +2013,4,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-4,0,1247,-7,0,0 +2013,10,28,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1935,-2,0,2010,6,0,0 +2013,4,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1400,10,0,1606,-9,0,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,835,-4,0,1125,-13,0,0 +2013,9,14,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2016,-2,0,2132,-10,0,0 +2013,8,18,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2105,36,1,2155,34,1,0 +2013,9,6,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1700,-1,0,1950,-16,0,0 +2013,8,31,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2135,-4,0,615,-21,0,0 +2013,4,15,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1120,-10,0,0 +2013,6,25,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,1,0,1206,4,0,0 +2013,5,31,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1832,-8,0,2108,-17,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,630,-6,0,924,-16,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,26,1,1236,7,0,0 +2013,10,25,5,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-2,0,1124,-9,0,0 +2013,6,4,2,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1230,1,0,1525,11,0,0 +2013,4,11,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,834,-14,0,0 +2013,10,25,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1424,0,0,1630,-10,0,0 +2013,4,10,3,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1310,5,0,1510,-6,0,0 +2013,5,5,7,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-7,0,1523,-7,0,0 +2013,8,10,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,605,-2,0,740,-5,0,0 +2013,7,22,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1525,-3,0,1627,-3,0,0 +2013,5,24,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1955,33,1,2055,26,1,0 +2013,9,20,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1840,46,1,2105,40,1,0 +2013,4,4,4,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-4,0,920,-11,0,0 +2013,6,20,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1045,11,0,1200,9,0,0 +2013,7,3,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,-3,0,1712,8,0,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,-3,0,2050,-29,0,0 +2013,7,20,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,720,-4,0,955,-14,0,0 +2013,4,7,7,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1430,10,0,1622,5,0,0 +2013,7,18,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,925,0,0,1035,-4,0,0 +2013,8,1,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,836,-3,0,1133,-24,0,0 +2013,10,12,6,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1535,-8,0,1847,-14,0,0 +2013,5,25,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1240,-5,0,2048,-1,0,0 +2013,4,6,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,744,-3,0,911,-8,0,0 +2013,9,20,5,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1711,0,,1919,0,1,1 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,530,-10,0,806,-21,0,0 +2013,4,17,3,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1457,-5,0,1634,-9,0,0 +2013,7,30,2,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1035,-3,0,1320,-5,0,0 +2013,7,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,-2,0,1440,-3,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,-1,0,1701,-20,0,0 +2013,6,19,3,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,603,-3,0,818,2,0,0 +2013,9,12,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,715,-5,0,749,-17,0,0 +2013,5,21,2,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1525,-5,0,1650,-13,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-2,0,925,-6,0,0 +2013,6,28,5,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,845,44,1,1105,37,1,0 +2013,7,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1015,-1,0,1352,-2,0,0 +2013,10,22,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-3,0,1725,-13,0,0 +2013,8,20,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1517,3,0,1727,12,0,0 +2013,10,5,6,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,-9,0,1728,-19,0,0 +2013,6,9,7,HA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1355,-3,0,2205,-12,0,0 +2013,10,13,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1015,8,0,1340,9,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1914,84,1,2000,72,1,0 +2013,10,5,6,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-8,0,1055,-6,0,0 +2013,8,12,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1538,2,0,1741,7,0,0 +2013,9,19,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,841,-2,0,949,4,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,12,0,1300,4,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,900,7,0,1020,1,0,0 +2013,7,22,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-3,0,1020,18,1,0 +2013,5,23,4,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,722,-4,0,1121,-13,0,0 +2013,6,27,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1533,-5,0,1829,10,0,0 +2013,8,9,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1325,-11,0,1633,-4,0,0 +2013,8,13,2,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-5,0,1355,-19,0,0 +2013,6,6,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1825,19,1,2050,-6,0,0 +2013,9,29,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,-5,0,1115,-10,0,0 +2013,8,22,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1412,-3,0,0 +2013,5,12,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,845,-2,0,900,-5,0,0 +2013,8,2,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,4,0,1900,-14,0,0 +2013,5,8,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1720,23,1,1933,20,1,0 +2013,6,30,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1350,37,1,1555,46,1,0 +2013,4,16,2,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1940,-7,0,2135,-5,0,0 +2013,7,23,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-2,0,808,-9,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2200,6,0,2320,-5,0,0 +2013,8,30,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-4,0,853,1,0,0 +2013,5,29,3,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,600,-3,0,935,2,0,0 +2013,5,20,1,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1838,-3,0,2334,4,0,0 +2013,6,21,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1318,104,1,1425,137,1,0 +2013,7,12,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,3,0,1600,7,0,0 +2013,8,9,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2100,21,1,2145,15,1,0 +2013,10,6,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-6,0,1127,-3,0,0 +2013,10,25,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1942,78,1,2250,104,1,0 +2013,5,19,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1310,-5,0,1443,-9,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,23,1,1608,46,1,0 +2013,8,1,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2259,30,1,133,25,1,0 +2013,7,14,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1659,-10,0,2021,7,0,0 +2013,4,25,4,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1833,-9,0,1934,-25,0,0 +2013,10,30,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1945,175,1,2043,170,1,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,3,0,2305,-7,0,0 +2013,6,10,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1525,0,0,1640,-2,0,0 +2013,7,1,1,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,735,1,0,910,3,0,0 +2013,9,19,4,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1845,-9,0,2038,-9,0,0 +2013,7,19,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1540,-1,0,1858,29,1,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,645,1,0,951,-31,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,-3,0,2123,-14,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,945,8,0,1235,-2,0,0 +2013,8,24,6,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,702,-2,0,927,-13,0,0 +2013,7,20,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,-6,0,1255,-9,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-3,0,2237,14,0,0 +2013,9,4,3,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2135,-7,0,543,-17,0,0 +2013,5,17,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,935,-3,0,1020,-17,0,0 +2013,10,9,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,-7,0,2130,-20,0,0 +2013,8,3,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1810,-5,0,2100,11,0,0 +2013,6,25,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2000,7,0,2115,12,0,0 +2013,10,28,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,133,1,1222,121,1,0 +2013,10,21,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,1,0,1255,-7,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,19,1,2035,8,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,835,19,1,1155,9,0,0 +2013,8,29,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1825,-2,0,1900,-33,0,0 +2013,7,29,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-3,0,1555,-16,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,-3,0,1713,-2,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1630,12,0,1850,12,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,2,0,817,-10,0,0 +2013,7,12,5,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1357,68,1,1630,68,1,0 +2013,9,17,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1104,-7,0,1710,-29,0,0 +2013,4,18,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,810,-10,0,0 +2013,8,18,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1110,-4,0,1320,-19,0,0 +2013,5,9,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-5,0,1535,1,0,0 +2013,8,28,3,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1820,2,0,1910,-8,0,0 +2013,5,28,2,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1856,17,1,2051,26,1,0 +2013,10,16,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-13,0,2322,-21,0,0 +2013,10,12,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1138,-2,0,1320,-20,0,0 +2013,9,18,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1815,8,0,1920,5,0,0 +2013,6,10,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,37,1,1650,55,1,0 +2013,10,20,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1500,-2,0,2256,12,0,0 +2013,5,12,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,-4,0,1020,-5,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,12,0,1455,-1,0,0 +2013,7,3,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1140,-9,0,1450,-21,0,0 +2013,7,27,6,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1650,28,1,1814,22,1,0 +2013,4,1,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1145,-4,0,1320,-17,0,0 +2013,10,23,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-5,0,933,-15,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,700,-3,0,820,-11,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,600,143,1,731,130,1,0 +2013,10,24,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1152,9,0,1445,1,0,0 +2013,10,2,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1657,-9,0,1815,-15,0,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-2,0,2159,-2,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1201,-2,0,1333,-6,0,0 +2013,4,30,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1305,-1,0,1410,-3,0,0 +2013,4,6,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2030,-3,0,2301,4,0,0 +2013,5,27,1,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,645,-5,0,850,-8,0,0 +2013,5,11,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-1,0,940,-5,0,0 +2013,4,27,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,1145,-4,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,34,1,1529,20,1,0 +2013,4,26,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1155,-8,0,1325,-21,0,0 +2013,4,11,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1113,100,1,1252,86,1,0 +2013,5,19,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2030,0,0,2205,13,0,0 +2013,7,13,6,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,0,,1940,0,1,1 +2013,8,11,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,842,-13,0,0 +2013,9,16,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1134,-4,0,1343,-11,0,0 +2013,6,11,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1947,4,0,2144,-15,0,0 +2013,4,17,3,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-5,0,2140,-11,0,0 +2013,10,8,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,-4,0,1931,-8,0,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,635,-10,0,956,-21,0,0 +2013,8,2,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,4,0,1905,26,1,0 +2013,8,26,1,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1050,-5,0,1218,-18,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,28,1,2033,31,1,0 +2013,10,18,5,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,640,-5,0,907,15,1,0 +2013,5,26,7,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,2,0,1145,-7,0,0 +2013,6,20,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1950,-4,0,2100,-5,0,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1632,28,1,1753,27,1,0 +2013,4,18,4,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-12,0,2025,-21,0,0 +2013,6,15,6,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,725,-2,0,750,13,0,0 +2013,8,12,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,7,0,827,-5,0,0 +2013,8,31,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,2,0,1735,-9,0,0 +2013,8,3,6,WN,10423,Austin - Bergstrom International,Austin,TX,13796,Metropolitan Oakland International,Oakland,CA,1400,4,0,1545,-17,0,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1500,-3,0,1552,-7,0,0 +2013,10,8,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-7,0,708,-15,0,0 +2013,7,14,7,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1921,-1,0,2238,-5,0,0 +2013,7,2,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,92,1,1155,64,1,0 +2013,4,16,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,612,-9,0,725,-8,0,0 +2013,4,25,4,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,627,-2,0,726,-15,0,0 +2013,8,2,5,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-5,0,944,-2,0,0 +2013,4,7,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,10,0,2015,-21,0,0 +2013,9,6,5,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1130,16,1,1245,12,0,0 +2013,9,29,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-5,0,1434,-23,0,0 +2013,10,28,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,24,1,2245,10,0,0 +2013,10,4,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,830,0,0,1021,-3,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,15,1,2105,38,1,0 +2013,4,23,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1730,-2,0,1910,-10,0,0 +2013,6,5,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,2,0,1635,0,0,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-8,0,1639,4,0,0 +2013,9,20,5,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1417,-3,0,1520,-8,0,0 +2013,5,8,3,9E,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1012,-6,0,1313,-5,0,0 +2013,9,24,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-5,0,826,-21,0,0 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2210,-5,0,2355,-12,0,0 +2013,5,18,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-2,0,1715,-12,0,0 +2013,5,22,3,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,-1,0,940,-21,0,0 +2013,6,21,5,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1656,13,0,1841,10,0,0 +2013,4,12,5,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,841,271,1,1040,282,1,0 +2013,8,31,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1053,0,0,1131,8,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1725,145,1,1920,164,1,0 +2013,8,7,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,-2,0,1833,-14,0,0 +2013,10,27,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-6,0,458,-36,0,0 +2013,5,9,4,F9,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1021,2,0,1352,-3,0,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,8,0,2125,-8,0,0 +2013,9,6,5,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1035,-8,0,1332,-7,0,0 +2013,7,23,2,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-3,0,1815,-9,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1040,75,1,1535,69,1,0 +2013,6,25,2,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,655,6,0,1010,-2,0,0 +2013,10,27,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-13,0,1806,4,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1305,-4,0,1500,-32,0,0 +2013,5,31,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,65,1,1745,50,1,0 +2013,7,25,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,5,0,1122,2,0,0 +2013,9,4,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1250,-2,0,1503,-22,0,0 +2013,4,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1500,2,0,1615,-5,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1806,-4,0,15,-23,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2211,-3,0,2318,-6,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1745,18,1,1925,17,1,0 +2013,5,5,7,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1619,20,1,1831,24,1,0 +2013,4,19,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1119,-3,0,1221,6,0,0 +2013,10,21,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,920,-13,0,0 +2013,5,4,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,730,-2,0,1506,11,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1700,-2,0,2032,-32,0,0 +2013,5,10,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1106,-1,0,1203,-17,0,0 +2013,9,29,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,24,1,2025,19,1,0 +2013,9,4,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1105,0,0,1335,-7,0,0 +2013,8,14,3,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,955,-4,0,1317,-14,0,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1340,6,0,1840,10,0,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,945,5,0,1540,-3,0,0 +2013,5,12,7,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-16,0,1053,-22,0,0 +2013,7,17,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1320,11,0,1520,-12,0,0 +2013,6,7,5,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2003,-2,0,2347,-5,0,0 +2013,5,24,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1030,3,0,1300,-9,0,0 +2013,10,20,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,-4,0,1316,-18,0,0 +2013,4,24,3,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,800,-4,0,1147,-14,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2110,69,1,2225,72,1,0 +2013,5,4,6,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1435,3,0,1720,7,0,0 +2013,5,31,5,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,8,0,1620,-7,0,0 +2013,6,29,6,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1904,-5,0,2150,-32,0,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,1250,-15,0,0 +2013,4,9,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,720,-5,0,919,-6,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1715,-5,0,1755,-15,0,0 +2013,6,17,1,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1007,-10,0,1108,-17,0,0 +2013,5,9,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,-6,0,1733,-19,0,0 +2013,4,8,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1715,4,0,1855,-16,0,0 +2013,8,24,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1657,-7,0,2256,-3,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1501,25,1,1546,47,1,0 +2013,9,19,4,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,956,-4,0,1140,-2,0,0 +2013,9,23,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2015,5,0,2115,6,0,0 +2013,8,28,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,745,-1,0,933,-11,0,0 +2013,10,1,2,9E,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,856,-8,0,1029,-11,0,0 +2013,7,27,6,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,6,0,2020,8,0,0 +2013,7,7,7,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,855,-8,0,1037,-7,0,0 +2013,10,18,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,14,0,1400,9,0,0 +2013,9,7,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,1,0,1009,-12,0,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,600,0,0,1439,5,0,0 +2013,9,23,1,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-10,0,711,-22,0,0 +2013,8,22,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,2020,77,1,2140,78,1,0 +2013,7,25,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1930,-9,0,2108,-18,0,0 +2013,4,16,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2145,-2,0,2325,-8,0,0 +2013,8,2,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1835,-8,0,2140,-14,0,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,755,-2,0,855,-6,0,0 +2013,7,23,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1519,-2,0,1645,-18,0,0 +2013,8,11,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1415,-12,0,1555,-21,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,851,-1,0,1022,-11,0,0 +2013,6,22,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1615,-12,0,1850,-14,0,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,925,11,0,1050,16,1,0 +2013,4,24,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-2,0,755,-3,0,0 +2013,9,27,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,100,1,2000,87,1,0 +2013,5,9,4,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-8,0,1656,12,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1235,5,0,1433,0,0,0 +2013,9,14,6,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,8,0,1516,19,1,0 +2013,6,30,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,6,0,1450,-13,0,0 +2013,8,11,7,9E,14524,Richmond International,Richmond,VA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,715,-1,0,852,9,0,0 +2013,8,15,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,105,29,1,826,-3,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,11,0,2020,17,1,0 +2013,6,5,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,12,0,1949,27,1,0 +2013,7,15,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,-4,0,1745,-2,0,0 +2013,4,6,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-8,0,1000,-14,0,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,945,5,0,1350,8,0,0 +2013,6,9,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,930,-2,0,1055,-7,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2010,0,0,2255,-8,0,0 +2013,6,6,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-2,0,1925,-1,0,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-1,0,1519,-10,0,0 +2013,9,19,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-6,0,1040,-6,0,0 +2013,5,19,7,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,610,-5,0,820,-17,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,940,-2,0,1110,-6,0,0 +2013,7,5,5,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-6,0,1914,-10,0,0 +2013,9,26,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,-6,0,2130,-1,0,0 +2013,7,22,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-9,0,1831,145,1,0 +2013,4,19,5,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1141,4,0,1349,5,0,0 +2013,10,27,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,2,0,2035,-10,0,0 +2013,6,26,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,832,-3,0,855,-8,0,0 +2013,8,10,6,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1000,27,1,1350,20,1,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,-8,0,1429,-9,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,35,1,2344,3,0,0 +2013,8,29,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2020,4,0,2135,-3,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,730,-4,0,931,-14,0,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1720,5,0,2000,1,0,0 +2013,8,25,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1705,21,1,1920,18,1,0 +2013,8,4,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-2,0,1045,-8,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2220,0,0,2343,-14,0,0 +2013,6,27,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2151,14,0,2335,21,1,0 +2013,7,11,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1340,-8,0,1700,-14,0,0 +2013,8,28,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,725,-5,0,1001,-12,0,0 +2013,4,27,6,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1555,-4,0,30,3,0,0 +2013,6,1,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-9,0,2035,-19,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,163,1,1749,164,1,0 +2013,8,6,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,545,-1,0,705,-3,0,0 +2013,5,25,6,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1936,31,1,2246,20,1,0 +2013,8,30,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1748,32,1,2035,11,0,0 +2013,8,29,4,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1150,37,1,1310,40,1,0 +2013,8,13,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1859,5,0,2150,-8,0,0 +2013,7,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1710,-1,0,1830,0,0,0 +2013,7,3,3,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,-7,0,1110,4,0,0 +2013,9,5,4,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,9,0,1915,-31,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-5,0,2335,-3,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1510,-5,0,1655,-18,0,0 +2013,4,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1855,-2,0,2216,40,1,0 +2013,5,18,6,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1915,-5,0,2222,-3,0,0 +2013,6,30,7,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2216,30,1,617,29,1,0 +2013,6,21,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-10,0,754,2,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1520,26,1,1810,82,1,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1728,19,1,1938,-5,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-2,0,1200,-14,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1910,10,0,5,-13,0,0 +2013,10,30,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1051,7,0,1310,17,1,0 +2013,6,10,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,-5,0,1155,-9,0,0 +2013,10,25,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1237,-3,0,1415,-2,0,0 +2013,8,5,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1325,2,0,1525,13,0,0 +2013,9,28,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,-11,0,1657,-22,0,0 +2013,10,13,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,757,-5,0,912,-17,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,-4,0,2245,-1,0,0 +2013,8,19,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1607,-5,0,1820,-12,0,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,-2,0,1923,-8,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1710,3,0,1820,2,0,0 +2013,5,31,5,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,0,0,1109,17,1,0 +2013,4,1,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1820,-5,0,2100,-6,0,0 +2013,4,3,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,720,-2,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,-1,0,1445,-8,0,0 +2013,6,11,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1256,23,1,1400,39,1,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-3,0,2310,-2,0,0 +2013,4,27,6,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1455,-6,0,1735,-6,0,0 +2013,10,22,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1540,8,0,1830,9,0,0 +2013,7,19,5,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,808,-5,0,1021,-19,0,0 +2013,6,3,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,817,-4,0,951,-12,0,0 +2013,8,25,7,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,-2,0,2355,10,0,0 +2013,4,4,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,38,1,2145,25,1,0 +2013,9,3,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-8,0,1955,6,0,0 +2013,10,25,5,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1110,-9,0,1944,11,0,0 +2013,4,20,6,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,2,0,806,22,1,0 +2013,4,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-4,0,1300,10,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,-6,0,2100,-18,0,0 +2013,6,18,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1754,29,1,1934,24,1,0 +2013,8,10,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,14,0,912,1,0,0 +2013,6,15,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,700,-2,0,840,-11,0,0 +2013,4,4,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1710,-8,0,2000,23,1,0 +2013,9,6,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,14,0,1602,9,0,0 +2013,5,18,6,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1515,7,0,1731,5,0,0 +2013,9,17,2,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1619,10,0,1742,-3,0,0 +2013,9,1,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1333,-7,0,1726,1,0,0 +2013,9,28,6,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1605,-2,0,1710,-12,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1400,-3,0,1500,0,0,0 +2013,8,9,5,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1652,12,0,1751,5,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1430,0,0,1630,6,0,0 +2013,4,16,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-6,0,815,9,0,0 +2013,7,14,7,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,-1,0,1910,-47,0,0 +2013,7,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,2025,34,1,2340,26,1,0 +2013,7,21,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1430,-4,0,1550,-6,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1215,-2,0,1320,-9,0,0 +2013,8,4,7,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-8,0,1805,10,0,0 +2013,4,20,6,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1855,22,1,2148,3,0,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1313,-1,0,1918,-19,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2135,174,1,5,169,1,0 +2013,6,21,5,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1241,-6,0,1539,-17,0,0 +2013,5,19,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,91,1,1712,88,1,0 +2013,10,17,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1003,4,0,0 +2013,7,20,6,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-7,0,1229,-14,0,0 +2013,9,9,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,0,,1617,0,1,1 +2013,7,17,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1237,0,0,1805,-11,0,0 +2013,10,15,2,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,5,0,1105,19,1,0 +2013,10,31,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2129,8,0,2323,15,1,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-7,0,1640,-21,0,0 +2013,10,19,6,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1455,-2,0,1740,-12,0,0 +2013,8,14,3,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,-10,0,1757,-14,0,0 +2013,6,20,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-2,0,1610,-16,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1935,20,1,2230,23,1,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,40,1,1800,25,1,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2235,1,0,2355,-9,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1622,2,0,1749,-7,0,0 +2013,10,1,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,17,1,1700,24,1,0 +2013,8,28,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-3,0,1045,-9,0,0 +2013,7,9,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,0,0,1858,-13,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,855,-3,0,1330,3,0,0 +2013,6,6,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1925,50,1,2158,26,1,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1306,-6,0,1502,-1,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,-6,0,1913,-13,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1055,1,0,1305,9,0,0 +2013,8,7,3,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,140,1,1305,152,1,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,56,1,1058,55,1,0 +2013,7,30,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1211,-8,0,1528,-15,0,0 +2013,9,6,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-6,0,850,-17,0,0 +2013,6,8,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,-2,0,2225,-33,0,0 +2013,4,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-6,0,44,-11,0,0 +2013,8,22,4,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,658,-9,0,910,-18,0,0 +2013,4,8,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,720,-8,0,0 +2013,6,17,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1920,-3,0,2125,-3,0,0 +2013,5,1,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,1,0,1328,0,0,0 +2013,4,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,745,-1,0,933,0,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1720,10,0,2055,-4,0,0 +2013,10,1,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,-3,0,1253,0,0,0 +2013,7,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1000,25,1,1259,37,1,0 +2013,6,12,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,8,0,1447,17,1,0 +2013,9,2,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-6,0,1105,1,0,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,3,0,2305,2,0,0 +2013,8,22,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-8,0,914,-11,0,0 +2013,10,1,2,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-6,0,1007,-11,0,0 +2013,8,7,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,38,1,2250,46,1,0 +2013,10,23,3,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1445,-3,0,1710,4,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,810,-3,0,932,-7,0,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-2,0,2304,-10,0,0 +2013,8,15,4,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,2,0,1230,4,0,0 +2013,6,25,2,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-2,0,1455,-1,0,0 +2013,5,14,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1745,6,0,2028,-22,0,0 +2013,10,6,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,730,-10,0,910,-27,0,0 +2013,10,5,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-10,0,858,-32,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,5,0,1026,8,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,15,1,1550,10,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1106,3,0,1223,-13,0,0 +2013,7,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1705,-7,0,1751,-15,0,0 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1207,26,1,1353,16,1,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,0,0,1158,-10,0,0 +2013,7,23,2,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-3,0,1355,34,1,0 +2013,6,24,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2056,190,1,2226,178,1,0 +2013,9,16,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,14,0,1455,21,1,0 +2013,10,21,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,50,1,1520,35,1,0 +2013,5,15,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2125,3,0,2225,-3,0,0 +2013,4,19,5,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1230,11,0,1420,-14,0,0 +2013,6,2,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1032,8,0,1050,9,0,0 +2013,5,1,3,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1514,26,1,1615,12,0,0 +2013,9,25,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1450,49,1,1645,28,1,0 +2013,10,11,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1110,26,1,1220,28,1,0 +2013,4,28,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1105,5,0,1420,-11,0,0 +2013,5,24,5,OO,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1240,-7,0,1458,-7,0,0 +2013,7,10,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,6,0,1101,24,1,0 +2013,7,11,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1805,-3,0,2120,-9,0,0 +2013,9,2,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,4,0,1710,-21,0,0 +2013,10,29,2,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2323,5,0,504,-10,0,0 +2013,9,27,5,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,-5,0,1843,-1,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,4,0,2220,6,0,0 +2013,7,30,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1150,-4,0,1320,-14,0,0 +2013,6,27,4,WN,10423,Austin - Bergstrom International,Austin,TX,14057,Portland International,Portland,OR,1525,1,0,1720,-7,0,0 +2013,4,12,5,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1420,4,0,1745,4,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1726,-3,0,1840,-25,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,4,0,1710,-12,0,0 +2013,6,6,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1006,-4,0,1241,6,0,0 +2013,5,28,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1630,6,0,1740,-3,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1550,-1,0,1820,-3,0,0 +2013,7,9,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1940,6,0,2035,0,0,0 +2013,7,6,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-3,0,1352,-8,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1340,-4,0,1455,-10,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1314,34,1,1545,18,1,0 +2013,6,5,3,DL,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,630,-6,0,810,-41,0,0 +2013,8,27,2,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2120,-3,0,555,-28,0,0 +2013,6,11,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-4,0,1914,-9,0,0 +2013,10,7,1,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,1855,-8,0,2123,-16,0,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,852,1,0,954,-7,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,28,1,825,34,1,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,129,1,1615,132,1,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,700,15,1,805,12,0,0 +2013,5,7,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,843,-3,0,1019,-4,0,0 +2013,10,27,7,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1704,1,0,1830,7,0,0 +2013,9,10,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-9,0,1333,-18,0,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2105,14,0,10,120,1,0 +2013,4,29,1,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1435,0,,1627,0,1,1 +2013,6,9,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2349,-5,0,708,-36,0,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,13,0,825,0,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,755,0,0,915,2,0,0 +2013,8,4,7,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,-4,0,1340,-2,0,0 +2013,8,14,3,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1030,2,0,1220,-3,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1725,4,0,2250,17,1,0 +2013,6,23,7,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,-5,0,1020,-9,0,0 +2013,4,29,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-2,0,2102,-3,0,0 +2013,8,12,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-2,0,1645,14,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2035,1,0,2250,20,1,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-3,0,1152,-5,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,725,-1,0,845,-4,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,951,122,1,1104,96,1,0 +2013,10,24,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1003,0,0,1610,-1,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-6,0,1122,-7,0,0 +2013,5,23,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,744,-6,0,905,-10,0,0 +2013,7,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1455,25,1,1910,33,1,0 +2013,8,8,4,EV,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-8,0,1530,-16,0,0 +2013,4,6,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1311,-9,0,2102,-4,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,-4,0,1236,-8,0,0 +2013,10,13,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,835,-9,0,1032,-6,0,0 +2013,6,4,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,740,0,0,845,8,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,18,1,918,6,0,0 +2013,8,2,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,55,30,1,555,40,1,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,929,25,1,1114,27,1,0 +2013,7,16,2,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,0,0,1145,-8,0,0 +2013,10,15,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,857,73,1,926,80,1,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-4,0,1754,0,0,0 +2013,5,1,3,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,610,-7,0,737,-13,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,730,-6,0,900,-11,0,0 +2013,5,31,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,725,0,0,1020,6,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2050,14,0,2305,11,0,0 +2013,10,26,6,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1425,-2,0,1733,-13,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1440,-6,0,1705,-20,0,0 +2013,8,9,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1640,92,1,1850,72,1,0 +2013,7,24,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1335,1,0,1700,-4,0,0 +2013,9,16,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1320,-4,0,1626,-31,0,0 +2013,8,10,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,704,9,0,811,-1,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1150,0,0,1800,-27,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1710,-2,0,1940,-6,0,0 +2013,9,15,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-3,0,1737,-6,0,0 +2013,9,13,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,945,-2,0,955,-5,0,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,14,0,1600,17,1,0 +2013,6,1,6,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1815,0,0,2005,-7,0,0 +2013,8,13,2,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1200,19,1,1300,20,1,0 +2013,6,17,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-7,0,1037,-20,0,0 +2013,8,26,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,23,1,845,31,1,0 +2013,10,12,6,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,601,-3,0,857,-19,0,0 +2013,4,27,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1750,-12,0,1905,-42,0,0 +2013,7,2,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-1,0,843,9,0,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1715,-3,0,1840,0,0,0 +2013,5,10,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,955,8,0,1130,-3,0,0 +2013,6,20,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1405,-1,0,1539,-3,0,0 +2013,4,9,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,2,0,1905,6,0,0 +2013,4,8,1,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,14,0,1302,8,0,0 +2013,10,1,2,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1628,37,1,1918,27,1,0 +2013,7,21,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-2,0,1839,6,0,0 +2013,10,18,5,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1128,-4,0,1240,1,0,0 +2013,10,4,5,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,0,,2104,0,1,1 +2013,4,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,7,0,2125,8,0,0 +2013,9,3,2,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,8,0,1540,-18,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,0,,2050,0,1,1 +2013,9,27,5,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-9,0,1326,4,0,0 +2013,9,18,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,-9,0,2247,-22,0,0 +2013,8,3,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,650,11,0,720,-7,0,0 +2013,10,3,4,9E,14524,Richmond International,Richmond,VA,12478,John F. Kennedy International,New York,NY,1230,-6,0,1353,-27,0,0 +2013,9,12,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1225,34,1,1535,34,1,0 +2013,5,25,6,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,750,0,0,1125,-15,0,0 +2013,6,12,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1945,0,0,2225,3,0,0 +2013,8,26,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-4,0,820,-5,0,0 +2013,5,3,5,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-7,0,1006,9,0,0 +2013,6,1,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1155,3,0,1455,-3,0,0 +2013,4,16,2,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,815,-7,0,926,-14,0,0 +2013,5,12,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2141,0,0,2326,-8,0,0 +2013,5,12,7,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1520,-6,0,1725,-25,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2005,-2,0,2250,-9,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2005,17,1,2136,13,0,0 +2013,7,29,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,22,1,1700,21,1,0 +2013,7,31,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,1,0,1816,1,0,0 +2013,9,5,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1030,9,0,1250,11,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-4,0,1310,21,1,0 +2013,6,14,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1429,-3,0,1714,-16,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2023,-6,0,2209,8,0,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-1,0,1225,-13,0,0 +2013,6,28,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1405,41,1,1510,37,1,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1813,20,1,1948,17,1,0 +2013,4,26,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,515,-9,0,840,-23,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1935,-1,0,2242,-24,0,0 +2013,4,27,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,910,-1,0,1040,-18,0,0 +2013,6,14,5,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1440,0,0,1721,-8,0,0 +2013,4,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1100,0,0,1430,-11,0,0 +2013,10,4,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1555,44,1,1640,53,1,0 +2013,8,30,5,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-3,0,1033,-4,0,0 +2013,9,14,6,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,730,-5,0,812,-3,0,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1255,-1,0,1525,6,0,0 +2013,10,15,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1915,71,1,2007,71,1,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1228,-5,0,1404,-11,0,0 +2013,10,30,3,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1841,-3,0,1958,-13,0,0 +2013,4,3,3,9E,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,30,1,1652,2,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-2,0,1244,-7,0,0 +2013,4,2,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-3,0,824,-8,0,0 +2013,10,20,7,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1840,-8,0,2001,-31,0,0 +2013,8,17,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,825,-11,0,1136,-33,0,0 +2013,7,26,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1010,11,0,1255,-6,0,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,0,0,1810,14,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-6,0,1000,11,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1320,14,0,1505,23,1,0 +2013,9,6,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,2015,-5,0,2155,-20,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-3,0,2245,-10,0,0 +2013,6,4,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1331,-2,0,1406,3,0,0 +2013,5,2,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1335,5,0,1425,6,0,0 +2013,6,4,2,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,800,-15,0,0 +2013,7,6,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1940,4,0,2210,-7,0,0 +2013,6,2,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,1,0,940,-5,0,0 +2013,6,29,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-3,0,825,-5,0,0 +2013,9,10,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1804,2,0,0 +2013,9,8,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1615,-1,0,1745,-25,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2150,-3,0,25,-2,0,0 +2013,6,23,7,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1644,46,1,1753,36,1,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1905,35,1,2125,33,1,0 +2013,7,2,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,604,7,0,725,-7,0,0 +2013,7,11,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1305,27,1,1525,19,1,0 +2013,10,6,7,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,750,-4,0,1024,-18,0,0 +2013,10,14,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1205,5,0,2040,-15,0,0 +2013,8,15,4,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,600,-5,0,754,-8,0,0 +2013,10,3,4,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1840,-2,0,2001,-8,0,0 +2013,9,21,6,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,940,-2,0,1800,-14,0,0 +2013,6,16,7,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,-1,0,2350,-4,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1305,5,0,1440,12,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-10,0,1034,-13,0,0 +2013,5,8,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,6,0,2259,5,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1030,8,0,1405,21,1,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1900,59,1,2150,46,1,0 +2013,8,29,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1445,20,1,1605,32,1,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1900,103,1,2000,105,1,0 +2013,8,4,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1550,28,1,1610,17,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,913,0,0,1137,-8,0,0 +2013,5,16,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,106,1,2215,129,1,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-3,0,2118,7,0,0 +2013,5,21,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1555,3,0,1712,-9,0,0 +2013,5,23,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,26,1,1550,31,1,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2120,12,0,2330,9,0,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,-6,0,1633,-11,0,0 +2013,8,30,5,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,610,-2,0,725,-12,0,0 +2013,6,9,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,545,-4,0,1110,-3,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,820,0,0,1041,-12,0,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1945,-5,0,2055,-14,0,0 +2013,6,26,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,194,1,1505,194,1,0 +2013,6,30,7,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,267,1,1455,252,1,0 +2013,8,4,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1814,92,1,1924,89,1,0 +2013,9,10,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-11,0,2020,1,0,0 +2013,7,8,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1753,-6,0,1900,2,0,0 +2013,6,6,4,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1208,-12,0,1337,-23,0,0 +2013,9,18,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1740,-5,0,1900,0,0,0 +2013,7,8,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-1,0,1358,-2,0,0 +2013,8,6,2,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1740,8,0,1850,-11,0,0 +2013,4,12,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1650,4,0,1930,10,0,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-8,0,1155,-9,0,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1031,-7,0,1340,1,0,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2110,16,1,2225,28,1,0 +2013,6,19,3,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,700,0,0,820,10,0,0 +2013,6,10,1,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,530,-1,0,937,-11,0,0 +2013,5,5,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2037,27,1,2201,28,1,0 +2013,9,17,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-3,0,1340,-6,0,0 +2013,8,6,2,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,520,26,1,801,38,1,0 +2013,9,13,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-5,0,2024,-5,0,0 +2013,8,16,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,-3,0,1525,-24,0,0 +2013,7,19,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1053,-5,0,1210,-10,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1124,-5,0,1246,-21,0,0 +2013,10,9,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1729,-10,0,1859,-27,0,0 +2013,9,16,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,828,1,0,1025,3,0,0 +2013,6,9,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1311,22,1,1407,12,0,0 +2013,6,23,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-7,0,1642,-11,0,0 +2013,5,17,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1541,-3,0,1734,-7,0,0 +2013,6,7,5,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1043,-5,0,1215,-10,0,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1911,2,0,2307,-8,0,0 +2013,9,7,6,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1210,-8,0,1350,-15,0,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,910,6,0,1025,2,0,0 +2013,7,5,5,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,835,1,0,1029,9,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1533,7,0,1719,7,0,0 +2013,5,5,7,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1710,-1,0,1915,4,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-10,0,959,-36,0,0 +2013,7,31,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,639,-6,0,819,3,0,0 +2013,7,4,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,741,-6,0,926,-9,0,0 +2013,10,15,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,851,0,0,1100,1,0,0 +2013,10,13,7,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,716,0,0,955,-20,0,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1335,89,1,1440,87,1,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,-2,0,1327,-16,0,0 +2013,10,3,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1759,6,0,2026,-14,0,0 +2013,4,18,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,745,156,1,1542,185,1,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,730,13,0,1103,-4,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1020,23,1,1210,17,1,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1820,23,1,2250,10,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,-4,0,2307,-9,0,0 +2013,10,6,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2010,-3,0,2159,-17,0,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1035,-2,0,1155,-14,0,0 +2013,9,23,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,12,0,1937,-4,0,0 +2013,10,31,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-6,0,1605,-8,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,730,-7,0,1009,-22,0,0 +2013,4,28,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,1205,2,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1220,0,0,1455,8,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,-3,0,2035,2,0,0 +2013,6,25,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1314,33,1,1439,43,1,0 +2013,10,17,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,5,0,1500,1,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1515,-2,0,1835,-13,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2209,16,1,2359,6,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,6,0,1825,-7,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1550,3,0,1705,-3,0,0 +2013,7,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,720,9,0,908,-3,0,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,740,20,1,1024,0,0,0 +2013,10,23,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1700,1,0,1753,-10,0,0 +2013,7,8,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2055,37,1,2225,23,1,0 +2013,10,21,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,715,-5,0,815,-5,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1809,12,0,1935,18,1,0 +2013,4,15,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-7,0,1759,-2,0,0 +2013,8,11,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1025,0,0,1135,-4,0,0 +2013,10,25,5,9E,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,-8,0,1424,-19,0,0 +2013,5,10,5,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1315,-2,0,2124,2,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-6,0,1735,-4,0,0 +2013,7,5,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,179,1,1445,184,1,0 +2013,8,15,4,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-7,0,919,-18,0,0 +2013,9,4,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-8,0,2113,-11,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2130,11,0,2300,16,1,0 +2013,7,8,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1815,0,0,1910,-7,0,0 +2013,9,3,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,1006,-3,0,0 +2013,8,19,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,7,0,1255,12,0,0 +2013,10,24,4,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1145,-6,0,1407,-7,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1015,-1,0,1330,-3,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,951,1,0,1124,-2,0,0 +2013,4,16,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1855,-4,0,2153,0,0,0 +2013,5,27,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,-4,0,1505,-4,0,0 +2013,9,21,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,-1,0,2005,-14,0,0 +2013,6,28,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,53,1,1315,53,1,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2120,19,1,2259,-4,0,0 +2013,4,13,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-9,0,1018,-1,0,0 +2013,8,22,4,OO,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-7,0,1857,-3,0,0 +2013,4,16,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,650,-6,0,700,-13,0,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,28,1,2255,24,1,0 +2013,6,8,6,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1100,-2,0,1222,-10,0,0 +2013,4,3,3,9E,11066,Port Columbus International,Columbus,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,857,-9,0,1018,-19,0,0 +2013,4,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1030,-5,0,1255,-9,0,0 +2013,5,14,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,-5,0,910,-25,0,0 +2013,8,4,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2109,7,0,2208,-3,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1839,-2,0,2102,-8,0,0 +2013,4,15,1,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,640,-4,0,718,-5,0,0 +2013,9,9,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-1,0,1458,-2,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,14,0,2235,19,1,0 +2013,10,3,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,-3,0,1645,-6,0,0 +2013,9,26,4,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,4,0,1935,-19,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1013,-6,0,1256,-16,0,0 +2013,7,1,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-2,0,1650,-5,0,0 +2013,7,9,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2040,-1,0,2200,-8,0,0 +2013,10,11,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,715,13,0,857,30,1,0 +2013,6,23,7,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,1105,-1,0,1330,-1,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-1,0,1158,5,0,0 +2013,10,10,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,800,-7,0,837,-7,0,0 +2013,9,28,6,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,1331,-5,0,1724,6,0,0 +2013,10,2,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1340,1,0,1450,-2,0,0 +2013,8,6,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1150,43,1,1455,38,1,0 +2013,5,16,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,12,0,1620,18,1,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1910,44,1,2235,10,0,0 +2013,6,3,1,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,950,9,0,1244,4,0,0 +2013,4,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,0,,2001,0,1,1 +2013,10,31,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,958,2,0,1045,0,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1005,-1,0,1110,-9,0,0 +2013,7,25,4,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,805,0,0,1255,1,0,0 +2013,5,28,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,735,58,1,1027,71,1,0 +2013,4,2,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,-5,0,32,-17,0,0 +2013,8,3,6,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1515,91,1,1632,134,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1133,-7,0,1304,-20,0,0 +2013,7,14,7,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,810,15,1,1026,-9,0,0 +2013,8,14,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,-2,0,1755,-3,0,0 +2013,5,24,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1258,-19,0,0 +2013,9,24,2,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1203,-2,0,1330,-4,0,0 +2013,8,25,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2105,126,1,2220,122,1,0 +2013,8,21,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1218,-5,0,0 +2013,7,16,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,625,-2,0,1245,-10,0,0 +2013,5,28,2,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,615,292,1,812,268,1,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-5,0,1115,-16,0,0 +2013,10,20,7,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,940,0,0,1228,5,0,0 +2013,4,11,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,900,-10,0,1111,-8,0,0 +2013,5,12,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1805,-2,0,1855,-17,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,-5,0,1127,-12,0,0 +2013,5,22,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,23,1,1925,25,1,0 +2013,10,27,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1501,7,0,2006,15,1,0 +2013,6,26,3,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2143,54,1,2333,58,1,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1835,-3,0,2135,-14,0,0 +2013,6,26,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1713,-6,0,2139,-1,0,0 +2013,9,9,1,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,-5,0,1231,-10,0,0 +2013,9,18,3,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1306,68,1,1419,79,1,0 +2013,4,2,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-2,0,1655,-14,0,0 +2013,6,28,5,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1140,0,0,1451,-13,0,0 +2013,4,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1711,-1,0,2046,-5,0,0 +2013,9,12,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,-1,0,1440,-5,0,0 +2013,9,10,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,800,-4,0,1050,-26,0,0 +2013,10,3,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,920,-13,0,0 +2013,4,7,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-1,0,1315,-7,0,0 +2013,4,19,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,720,-4,0,930,23,1,0 +2013,8,7,3,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-6,0,938,-26,0,0 +2013,8,8,4,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-3,0,1105,6,0,0 +2013,8,14,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,31,1,1905,18,1,0 +2013,4,16,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-5,0,630,4,0,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,11,0,1819,6,0,0 +2013,9,26,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1645,18,1,1750,5,0,0 +2013,9,25,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,-4,0,2200,-12,0,0 +2013,7,22,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1230,-4,0,1441,-15,0,0 +2013,9,3,2,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-6,0,1341,-13,0,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2210,37,1,2359,16,1,0 +2013,5,17,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,800,-4,0,935,2,0,0 +2013,7,21,7,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1243,-6,0,1620,-26,0,0 +2013,10,1,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-9,0,1327,-11,0,0 +2013,9,2,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-6,0,736,-15,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1050,-3,0,1240,-22,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1659,-1,0,2213,-1,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1100,-3,0,1250,-12,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,745,-10,0,1040,-9,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,-3,0,2357,-14,0,0 +2013,10,29,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,-3,0,1115,-19,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,0,0,930,5,0,0 +2013,9,19,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,620,48,1,653,108,1,0 +2013,6,18,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-3,0,1709,38,1,0 +2013,7,7,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,815,-1,0,1405,0,0,0 +2013,5,24,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,14,0,1620,17,1,0 +2013,4,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,0,0,1603,-14,0,0 +2013,10,19,6,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,609,-5,0,720,-10,0,0 +2013,8,3,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1530,1,0,1753,17,1,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1303,-7,0,1610,-33,0,0 +2013,6,25,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,74,1,1255,74,1,0 +2013,5,12,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,0,0,2125,2,0,0 +2013,6,22,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,849,-7,0,926,2,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2140,-3,0,35,-21,0,0 +2013,5,6,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-1,0,2200,-9,0,0 +2013,4,1,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1123,27,1,1420,13,0,0 +2013,7,5,5,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1725,-1,0,1838,-5,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1355,34,1,1645,28,1,0 +2013,7,28,7,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2015,99,1,2300,92,1,0 +2013,9,8,7,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-12,0,2149,-10,0,0 +2013,8,17,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,5,0,2000,5,0,0 +2013,6,6,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,605,-2,0,710,6,0,0 +2013,8,24,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-5,0,1058,-1,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1249,-3,0,2059,-13,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1906,0,0,2321,-8,0,0 +2013,4,1,1,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-6,0,1014,-17,0,0 +2013,4,18,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-6,0,920,0,0,0 +2013,10,9,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1110,-5,0,1430,-7,0,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,601,1,0,916,-6,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1610,-7,0,2200,-10,0,0 +2013,8,18,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-6,0,1555,-1,0,0 +2013,5,18,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,754,-1,0,1307,-1,0,0 +2013,4,8,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,106,1,1413,103,1,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,845,-2,0,1035,-8,0,0 +2013,8,15,4,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,841,98,1,1108,81,1,0 +2013,8,16,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1936,1,0,2120,-2,0,0 +2013,7,2,2,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2225,-1,0,628,0,0,0 +2013,7,17,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,847,-4,0,1042,-15,0,0 +2013,8,30,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1209,19,1,1446,-30,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1141,0,0,1332,23,1,0 +2013,7,29,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1245,-2,0,1605,-22,0,0 +2013,8,25,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2341,-3,0,730,6,0,0 +2013,9,25,3,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1905,6,0,2101,-16,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,0,0,614,11,0,0 +2013,7,29,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,2000,15,1,2115,7,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,5,0,1908,-4,0,0 +2013,4,9,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,707,1,0,857,-15,0,0 +2013,10,16,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-2,0,835,-5,0,0 +2013,9,22,7,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1550,52,1,2225,33,1,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1000,5,0,1303,-22,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1415,-8,0,1611,-20,0,0 +2013,4,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1126,-5,0,1240,-6,0,0 +2013,5,29,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-2,0,1145,-9,0,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1710,-4,0,1815,-3,0,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,26,1,1250,40,1,0 +2013,10,15,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1700,-11,0,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,630,10,0,730,6,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,920,31,1,1225,26,1,0 +2013,7,22,1,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1455,18,1,1615,21,1,0 +2013,7,12,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2239,23,1,633,58,1,0 +2013,8,9,5,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,7,0,1354,-13,0,0 +2013,7,2,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1443,-2,0,1554,-18,0,0 +2013,9,27,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-1,0,1120,-9,0,0 +2013,9,22,7,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1614,1,0,1837,-4,0,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1450,-1,0,1810,-14,0,0 +2013,9,18,3,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1115,-5,0,1414,-14,0,0 +2013,7,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1624,43,1,1926,24,1,0 +2013,9,6,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,850,-5,0,1210,6,0,0 +2013,8,18,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,820,-3,0,935,-13,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,0,0,2222,1,0,0 +2013,6,15,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1000,13,0,1834,-12,0,0 +2013,10,25,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,8,0,2138,-18,0,0 +2013,10,24,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-2,0,1835,-16,0,0 +2013,9,12,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-8,0,1220,-6,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1555,60,1,1810,59,1,0 +2013,4,21,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-7,0,1125,5,0,0 +2013,7,13,6,DL,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,1605,33,1,1921,37,1,0 +2013,7,4,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1935,-2,0,2100,-8,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1230,12,0,1325,-2,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,2006,17,1,2213,7,0,0 +2013,8,10,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-3,0,2120,-12,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1150,4,0,1337,-10,0,0 +2013,5,19,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,22,1,1735,8,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,835,-4,0,940,5,0,0 +2013,4,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-5,0,1823,-1,0,0 +2013,10,1,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1735,-3,0,1855,-11,0,0 +2013,5,17,5,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,720,1,0,845,-16,0,0 +2013,10,4,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,-3,0,1530,-18,0,0 +2013,7,26,5,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2333,39,1,500,27,1,0 +2013,4,10,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-5,0,1227,-3,0,0 +2013,10,23,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,925,3,0,1230,0,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,47,1,2205,50,1,0 +2013,9,26,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-3,0,815,-18,0,0 +2013,9,30,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,53,1,2005,35,1,0 +2013,4,17,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2015,100,1,2135,89,1,0 +2013,10,25,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,21,1,1905,29,1,0 +2013,9,29,7,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,815,-10,0,933,-18,0,0 +2013,6,26,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1301,91,1,1720,119,1,0 +2013,9,11,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,-6,0,1129,-6,0,0 +2013,8,22,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,946,14,0,1007,12,0,0 +2013,5,16,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-6,0,1130,-6,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1215,23,1,1345,21,1,0 +2013,9,5,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-1,0,1755,22,1,0 +2013,5,24,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1757,10,0,1909,11,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,4,0,1953,-16,0,0 +2013,7,27,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-16,0,2041,-9,0,0 +2013,8,31,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1140,-2,0,1255,1,0,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1545,-3,0,1735,-11,0,0 +2013,7,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,-5,0,1957,-8,0,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,-3,0,1715,8,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,8,0,1130,-8,0,0 +2013,10,2,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1755,-3,0,2025,-13,0,0 +2013,9,4,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2126,-8,0,2236,-12,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1307,2,0,1646,-13,0,0 +2013,9,10,2,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-6,0,809,-3,0,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,542,23,1,724,10,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,-1,0,2105,-4,0,0 +2013,7,17,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,96,1,735,104,1,0 +2013,4,8,1,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,2040,-3,0,2205,-8,0,0 +2013,8,1,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,0,0,929,-2,0,0 +2013,6,17,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1655,183,1,1805,167,1,0 +2013,9,10,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-8,0,1655,-11,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,-1,0,1515,-37,0,0 +2013,4,3,3,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2056,8,0,2212,9,0,0 +2013,10,22,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1320,3,0,1450,-2,0,0 +2013,5,31,5,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,2,0,1130,-2,0,0 +2013,9,16,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-5,0,1916,-10,0,0 +2013,5,10,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1251,73,1,1629,67,1,0 +2013,9,12,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,755,-6,0,905,-13,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,1,0,2104,2,0,0 +2013,6,30,7,DL,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,2235,-7,0,601,-25,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,-1,0,2222,-10,0,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,-5,0,1140,5,0,0 +2013,9,1,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2000,-2,0,2200,-6,0,0 +2013,9,15,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1030,0,0,1120,-12,0,0 +2013,9,11,3,9E,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,725,-5,0,916,-7,0,0 +2013,9,22,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,640,-4,0,815,-7,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,-2,0,1332,-6,0,0 +2013,5,5,7,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,1,0,2000,-12,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1200,-5,0,1414,-13,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,-1,0,1830,-3,0,0 +2013,9,12,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,700,-1,0,815,-2,0,0 +2013,10,7,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1310,18,1,2135,20,1,0 +2013,9,27,5,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,945,-7,0,1123,-28,0,0 +2013,9,7,6,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1325,12,0,1610,23,1,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-9,0,1040,-17,0,0 +2013,4,23,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1555,9,0,1650,-1,0,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,902,4,0,1100,6,0,0 +2013,4,12,5,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1140,-6,0,1400,-4,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1955,10,0,2205,-3,0,0 +2013,4,29,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,847,-1,0,1031,-28,0,0 +2013,4,1,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-9,0,1245,-8,0,0 +2013,6,15,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1535,54,1,1800,56,1,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,-4,0,1345,-10,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-3,0,1000,-9,0,0 +2013,7,13,6,F9,10299,Ted Stevens Anchorage International,Anchorage,AK,11292,Denver International,Denver,CO,2200,11,0,501,12,0,0 +2013,9,29,7,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1047,-10,0,1214,4,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,0,0,922,0,0,0 +2013,9,8,7,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1112,-10,0,1237,-6,0,0 +2013,5,27,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1912,-5,0,2130,-14,0,0 +2013,6,16,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,89,1,535,70,1,0 +2013,5,6,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1235,21,1,1400,22,1,0 +2013,7,10,3,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,835,9,0,1120,6,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,56,1,1027,41,1,0 +2013,6,11,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,800,-4,0,925,-12,0,0 +2013,10,6,7,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-5,0,1625,-20,0,0 +2013,7,9,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,740,1,0,855,-11,0,0 +2013,9,29,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1303,-7,0,1745,-40,0,0 +2013,5,17,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1602,237,1,1853,227,1,0 +2013,5,15,3,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,1005,31,1,1234,5,0,0 +2013,4,11,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1135,2,0,1300,-3,0,0 +2013,9,14,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,705,-3,0,1520,-3,0,0 +2013,7,2,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1316,21,1,2111,32,1,0 +2013,5,24,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-8,0,815,-27,0,0 +2013,7,16,2,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,900,-4,0,1128,0,0,0 +2013,4,16,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1222,-4,0,1419,-3,0,0 +2013,5,31,5,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,-7,0,740,-10,0,0 +2013,6,3,1,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,1,0,1916,20,1,0 +2013,9,17,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-6,0,1015,2,0,0 +2013,4,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1715,-4,0,1847,-13,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1015,-8,0,1627,-24,0,0 +2013,8,19,1,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1150,5,0,1710,-3,0,0 +2013,7,15,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1745,105,1,1900,89,1,0 +2013,6,15,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1250,12,0,1640,13,0,0 +2013,7,16,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1315,-3,0,1557,6,0,0 +2013,6,2,7,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2110,-3,0,15,-19,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1930,89,1,2120,91,1,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,53,1,1959,96,1,0 +2013,5,20,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1837,52,1,2121,34,1,0 +2013,5,31,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1530,-3,0,1835,-3,0,0 +2013,8,6,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1750,2,0,1911,13,0,0 +2013,7,14,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,933,16,1,1215,17,1,0 +2013,6,2,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,0,0,1445,-13,0,0 +2013,5,8,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,848,-10,0,0 +2013,9,24,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1636,-7,0,1740,-15,0,0 +2013,10,10,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,810,1,0,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,0,0,2130,-21,0,0 +2013,4,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1855,39,1,2156,51,1,0 +2013,7,16,2,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,619,-9,0,803,1,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-4,0,1345,1,0,0 +2013,10,14,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1011,-12,0,1140,-13,0,0 +2013,7,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1946,-1,0,2327,-2,0,0 +2013,4,14,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,700,-6,0,906,-20,0,0 +2013,6,19,3,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1542,-1,0,1707,1,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,605,-5,0,855,-19,0,0 +2013,7,29,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,14,0,1615,13,0,0 +2013,6,1,6,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-5,0,1106,-7,0,0 +2013,7,8,1,UA,14570,Reno/Tahoe International,Reno,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1217,-9,0,1800,-16,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,956,-14,0,0 +2013,10,4,5,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1550,-3,0,1755,-1,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1605,8,0,1735,-2,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-2,0,1805,8,0,0 +2013,10,25,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1605,-7,0,1624,-19,0,0 +2013,10,22,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1805,-3,0,1930,-13,0,0 +2013,8,13,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-3,0,1612,-11,0,0 +2013,7,18,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,10,0,2350,-12,0,0 +2013,10,1,2,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,0,0,1249,-30,0,0 +2013,8,16,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1120,7,0,1225,4,0,0 +2013,8,30,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1437,4,0,1658,2,0,0 +2013,7,21,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-2,0,1800,-4,0,0 +2013,8,3,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,-2,0,550,-31,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1810,7,0,2034,1,0,0 +2013,9,10,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1656,-5,0,1932,-12,0,0 +2013,5,20,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1545,5,0,1710,-4,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1632,3,0,2006,-5,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1520,-4,0,1650,-12,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1940,110,1,50,99,1,0 +2013,5,28,2,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1400,0,0,1645,-8,0,0 +2013,9,20,5,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1400,-5,0,1619,-12,0,0 +2013,7,17,3,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,6,0,1355,9,0,0 +2013,5,5,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,830,-1,0,1243,3,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1733,7,0,1842,-5,0,0 +2013,4,1,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1614,-3,0,1735,0,0,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,6,0,2205,1,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,-7,0,2351,-15,0,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2050,23,1,2135,26,1,0 +2013,10,4,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1340,-7,0,1538,-3,0,0 +2013,6,9,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,19,1,2023,34,1,0 +2013,10,10,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,1,0,1755,-18,0,0 +2013,4,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,715,-3,0,1246,-10,0,0 +2013,7,14,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1135,2,0,1420,2,0,0 +2013,6,9,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1832,33,1,2108,21,1,0 +2013,7,12,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,-1,0,1155,-9,0,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,-5,0,2336,-3,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1654,77,1,1756,77,1,0 +2013,4,21,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1535,-4,0,1702,-4,0,0 +2013,7,16,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1255,-4,0,1405,-7,0,0 +2013,8,29,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1027,1,0,1359,-1,0,0 +2013,6,1,6,WN,15304,Tampa International,Tampa,FL,13931,Norfolk International,Norfolk,VA,1210,-1,0,1415,-4,0,0 +2013,10,7,1,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,113,1,1809,121,1,0 +2013,9,2,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-1,0,827,-18,0,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,29,1,2152,25,1,0 +2013,7,5,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1600,-4,0,2111,-3,0,0 +2013,5,31,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2110,-2,0,2321,-10,0,0 +2013,4,5,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-2,0,1439,-20,0,0 +2013,8,18,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1804,20,1,2148,-8,0,0 +2013,10,28,1,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1425,-3,0,1530,-11,0,0 +2013,6,17,1,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-7,0,1240,-7,0,0 +2013,9,25,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,1,0,2131,-10,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,1,0,1435,-9,0,0 +2013,8,9,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,39,1,1922,87,1,0 +2013,7,13,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,-3,0,1335,-3,0,0 +2013,8,26,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,645,-1,0,755,-1,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1658,12,0,1831,-9,0,0 +2013,4,15,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1330,0,0,1440,3,0,0 +2013,6,17,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1015,-4,0,1207,-6,0,0 +2013,5,27,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1745,48,1,1910,26,1,0 +2013,8,26,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,740,9,0,920,8,0,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-2,0,1600,3,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1705,12,0,1944,-18,0,0 +2013,7,16,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,3,0,1413,2,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1238,9,0,1504,6,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,-5,0,1553,-14,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1447,-4,0,1606,-11,0,0 +2013,6,18,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1845,-6,0,2005,-13,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1705,17,1,1840,5,0,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1730,-1,0,2017,-3,0,0 +2013,8,11,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,924,-9,0,0 +2013,6,23,7,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1247,38,1,1641,23,1,0 +2013,6,19,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,0,0,1306,-10,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,23,1,1900,26,1,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,-4,0,1450,-12,0,0 +2013,10,5,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1324,-6,0,1453,-24,0,0 +2013,7,23,2,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1345,31,1,1640,53,1,0 +2013,4,1,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-7,0,1520,-15,0,0 +2013,10,13,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1010,-4,0,1303,-12,0,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1404,-7,0,1540,-10,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1220,-6,0,1505,-16,0,0 +2013,8,16,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-1,0,805,-13,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1105,-4,0,1435,-13,0,0 +2013,5,2,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1355,-4,0,1455,-6,0,0 +2013,9,30,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,655,-6,0,800,-11,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,-2,0,2244,-14,0,0 +2013,4,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,152,1,1319,142,1,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1840,6,0,2010,-2,0,0 +2013,6,3,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,710,-7,0,908,8,0,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1251,5,0,1356,2,0,0 +2013,7,6,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,2,0,955,1,0,0 +2013,5,30,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1759,-3,0,1958,-3,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,-2,0,1320,-13,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2120,107,1,2235,97,1,0 +2013,8,1,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,81,1,558,74,1,0 +2013,6,1,6,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1817,-15,0,2108,-34,0,0 +2013,5,28,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,6,0,1015,5,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,841,-4,0,1201,-17,0,0 +2013,5,5,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-3,0,2134,-10,0,0 +2013,8,21,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,-4,0,2150,-10,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,-1,0,2312,-3,0,0 +2013,7,2,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1500,-10,0,2309,15,1,0 +2013,9,20,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-2,0,2125,-15,0,0 +2013,4,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1059,-2,0,1117,-18,0,0 +2013,10,16,3,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,-3,0,905,-8,0,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,4,0,1126,16,1,0 +2013,8,15,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,840,5,0,1450,-3,0,0 +2013,6,21,5,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,68,1,2138,72,1,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1820,-1,0,2108,2,0,0 +2013,5,17,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,66,1,612,67,1,0 +2013,7,14,7,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-1,0,1925,-12,0,0 +2013,10,18,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1725,6,0,1815,6,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,-3,0,1043,-17,0,0 +2013,7,5,5,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1108,2,0,1405,-2,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,32,1,1930,31,1,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1627,9,0,41,8,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2015,14,0,2120,10,0,0 +2013,7,30,2,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,6,0,1000,-2,0,0 +2013,5,14,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1110,-2,0,1300,-1,0,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1905,-2,0,20,-3,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-5,0,1320,-12,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1520,-5,0,1730,-13,0,0 +2013,4,5,5,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-6,0,1315,-4,0,0 +2013,6,22,6,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,645,59,1,816,65,1,0 +2013,5,6,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-2,0,2025,-6,0,0 +2013,6,21,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,18,1,2024,21,1,0 +2013,9,2,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,20,1,1535,24,1,0 +2013,8,31,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-8,0,1241,-16,0,0 +2013,8,4,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-6,0,823,-6,0,0 +2013,6,2,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-9,0,1459,57,1,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,812,89,1,1013,69,1,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,10,0,2113,32,1,0 +2013,10,25,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1120,1,0,1230,-2,0,0 +2013,5,26,7,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1535,-3,0,1655,-19,0,0 +2013,6,1,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-6,0,1557,-13,0,0 +2013,5,31,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,-1,0,1249,-11,0,0 +2013,4,11,4,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,753,5,0,1340,4,0,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2155,38,1,55,26,1,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,1,0,2340,3,0,0 +2013,9,23,1,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1500,18,1,2010,4,0,0 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-10,0,1221,-2,0,0 +2013,7,18,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1645,9,0,2030,19,1,0 +2013,6,25,2,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2359,144,1,828,125,1,0 +2013,8,27,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2051,6,0,2130,11,0,0 +2013,9,6,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1246,-8,0,2044,-6,0,0 +2013,6,6,4,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1617,2,0,1805,1,0,0 +2013,5,2,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,620,-12,0,635,-16,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1835,12,0,2300,9,0,0 +2013,4,20,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1913,15,1,2135,-2,0,0 +2013,7,22,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,28,1,2135,19,1,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2109,3,0,2210,-13,0,0 +2013,5,28,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1021,0,0,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1015,5,0,1105,1,0,0 +2013,4,6,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1305,1,0,1445,-9,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1200,-4,0,1319,17,1,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1041,-1,0,1152,-15,0,0 +2013,10,24,4,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-5,0,1629,-21,0,0 +2013,10,18,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,8,0,1635,6,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1725,1,0,1959,-6,0,0 +2013,7,29,1,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2159,18,1,2321,15,1,0 +2013,9,29,7,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1010,-4,0,1321,1,0,0 +2013,6,16,7,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1850,45,1,2225,35,1,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,900,3,0,1330,13,0,0 +2013,10,1,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,-8,0,2330,-25,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1427,1,0,1632,-18,0,0 +2013,4,21,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1950,8,0,2235,5,0,0 +2013,10,10,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-6,0,1125,-17,0,0 +2013,8,17,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1648,-9,0,1815,-23,0,0 +2013,7,29,1,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,802,-2,0,930,-13,0,0 +2013,10,19,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,0,0,1012,-12,0,0 +2013,10,6,7,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,850,0,0,1100,10,0,0 +2013,5,24,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1615,31,1,1825,29,1,0 +2013,8,31,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-2,0,849,-3,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1900,20,1,2230,15,1,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,610,3,0,1215,7,0,0 +2013,4,21,7,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1930,0,0,2217,7,0,0 +2013,8,16,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,1715,-18,0,0 +2013,5,24,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,652,-2,0,1404,-18,0,0 +2013,8,30,5,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1730,-10,0,2255,16,1,0 +2013,10,30,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1600,-9,0,2157,-11,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,9,0,2330,-1,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1915,-7,0,2041,0,0,0 +2013,9,29,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1330,16,1,1440,12,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,2007,-4,0,2359,4,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,804,-2,0,939,-15,0,0 +2013,10,5,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-6,0,905,-24,0,0 +2013,8,13,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-3,0,1309,-8,0,0 +2013,7,12,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,854,-14,0,0 +2013,5,28,2,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1010,-2,0,1137,-4,0,0 +2013,6,13,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1150,9,0,1810,15,1,0 +2013,5,22,3,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,704,-6,0,904,-16,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2145,-1,0,521,-11,0,0 +2013,8,13,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1645,19,1,1910,26,1,0 +2013,4,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,850,0,0,1033,-16,0,0 +2013,8,15,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-3,0,1625,-7,0,0 +2013,10,14,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-1,0,1356,10,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,720,8,0,1157,-7,0,0 +2013,4,15,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-2,0,1925,-13,0,0 +2013,8,12,1,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-2,0,755,9,0,0 +2013,4,29,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,755,14,0,1036,25,1,0 +2013,10,10,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,605,-4,0,734,-6,0,0 +2013,5,16,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1705,18,1,1949,17,1,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1755,29,1,2055,34,1,0 +2013,7,8,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,911,0,,1029,0,1,1 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2155,-3,0,2337,-10,0,0 +2013,10,9,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,4,0,2115,3,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,714,-3,0,1131,-30,0,0 +2013,4,2,2,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1510,15,1,1730,20,1,0 +2013,5,23,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1210,-2,0,1335,-14,0,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2149,-1,0,600,-3,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,920,-4,0,1054,-8,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,-3,0,1440,-3,0,0 +2013,10,7,1,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-10,0,525,1,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-5,0,1442,-25,0,0 +2013,4,3,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,10,0,920,7,0,0 +2013,4,5,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,13,0,724,15,1,0 +2013,9,19,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-7,0,2251,-11,0,0 +2013,9,30,1,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,930,-5,0,1100,-9,0,0 +2013,4,8,1,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1105,2,0,1403,-21,0,0 +2013,6,22,6,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1845,28,1,2210,19,1,0 +2013,4,14,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,605,-4,0,755,-18,0,0 +2013,6,20,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1428,16,1,1540,20,1,0 +2013,7,1,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1106,-11,0,1126,-18,0,0 +2013,7,28,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1541,-4,0,1810,-11,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1010,-9,0,1132,-24,0,0 +2013,7,23,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-5,0,1804,0,0,0 +2013,8,22,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-7,0,946,-21,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1748,-1,0,1914,0,0,0 +2013,6,29,6,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,730,-2,0,936,12,0,0 +2013,5,29,3,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,2,0,1916,19,1,0 +2013,7,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1622,-4,0,1844,-12,0,0 +2013,7,27,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,-3,0,755,-2,0,0 +2013,8,17,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1410,10,0,1525,4,0,0 +2013,4,26,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-1,0,1710,-2,0,0 +2013,10,12,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,855,-1,0,1015,-4,0,0 +2013,6,14,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,540,-1,0,705,-10,0,0 +2013,4,29,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,32,1,2025,23,1,0 +2013,6,12,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,3,0,1500,14,0,0 +2013,8,28,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-7,0,1730,-9,0,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1517,-4,0,1621,-12,0,0 +2013,5,12,7,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1125,-2,0,1336,2,0,0 +2013,5,22,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1125,-4,0,1350,-17,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,-4,0,2145,-3,0,0 +2013,8,25,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-5,0,1230,-12,0,0 +2013,8,19,1,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,1,0,1340,0,0,0 +2013,8,6,2,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,-9,0,1830,-4,0,0 +2013,10,27,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1644,4,0,1929,9,0,0 +2013,7,18,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,-3,0,1901,72,1,0 +2013,9,18,3,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1430,36,1,1720,20,1,0 +2013,4,28,7,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-1,0,1625,0,0,0 +2013,5,24,5,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,24,1,1545,16,1,0 +2013,7,28,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-3,0,2125,-9,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,5,0,1154,-21,0,0 +2013,9,30,1,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-5,0,1445,-30,0,0 +2013,10,4,5,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,1,0,1635,15,1,0 +2013,10,9,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1950,64,1,2125,51,1,0 +2013,10,14,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1508,-7,0,1624,-21,0,0 +2013,5,30,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-9,0,1747,-11,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1535,0,0,1738,-16,0,0 +2013,8,2,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,835,-3,0,1035,-2,0,0 +2013,4,6,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1220,0,0,1245,-14,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,28,1,1935,23,1,0 +2013,8,11,7,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,912,-9,0,1231,-10,0,0 +2013,9,8,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1420,24,1,1600,19,1,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-4,0,1130,-12,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1320,-6,0,1438,-6,0,0 +2013,10,30,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1838,12,0,2123,6,0,0 +2013,5,21,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,905,2,0,1010,-2,0,0 +2013,7,18,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,737,-2,0,1033,-5,0,0 +2013,9,27,5,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-18,0,1050,0,0,0 +2013,8,9,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,0,0,1055,-4,0,0 +2013,7,16,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1920,-1,0,2100,-8,0,0 +2013,10,24,4,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1355,-2,0,1957,-6,0,0 +2013,9,5,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1504,17,1,2351,23,1,0 +2013,4,18,4,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,1,0,2035,-4,0,0 +2013,7,4,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,959,-1,0,0 +2013,10,22,2,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1815,7,0,1925,-7,0,0 +2013,9,25,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-11,0,1510,-10,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1140,-3,0,1204,-18,0,0 +2013,7,8,1,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,845,-3,0,1014,2,0,0 +2013,8,5,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,11,0,1545,10,0,0 +2013,5,12,7,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,842,-5,0,1109,-5,0,0 +2013,6,11,2,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-3,0,1016,31,1,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,725,-6,0,845,-10,0,0 +2013,5,23,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-4,0,2148,-10,0,0 +2013,10,22,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,853,-12,0,0 +2013,8,4,7,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1725,28,1,2155,5,0,0 +2013,7,29,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-2,0,1653,-1,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,-3,0,1142,2,0,0 +2013,10,25,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,15304,Tampa International,Tampa,FL,1620,7,0,1825,-7,0,0 +2013,10,30,3,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-2,0,2045,-23,0,0 +2013,6,9,7,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,1,0,1045,2,0,0 +2013,7,25,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1000,78,1,1650,79,1,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,-4,0,1230,1,0,0 +2013,6,13,4,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1719,164,1,1956,158,1,0 +2013,8,7,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,4,0,1810,2,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1459,17,1,1639,13,0,0 +2013,9,28,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,-13,0,1850,-40,0,0 +2013,8,9,5,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,2125,0,0,2245,0,0,0 +2013,10,10,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1134,-8,0,1319,-7,0,0 +2013,6,10,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,127,1,1425,130,1,0 +2013,4,22,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,14,0,1335,4,0,0 +2013,9,11,3,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,700,1,0,846,-11,0,0 +2013,10,4,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,1,0,1230,14,0,0 +2013,10,25,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-3,0,1342,-15,0,0 +2013,6,18,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1058,63,1,1315,61,1,0 +2013,7,18,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-3,0,1838,8,0,0 +2013,8,29,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,834,-23,0,0 +2013,9,27,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2011,-7,0,2111,-15,0,0 +2013,8,6,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,915,-3,0,1025,-8,0,0 +2013,5,25,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1905,25,1,2109,39,1,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1525,62,1,1640,62,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1750,8,0,1928,10,0,0 +2013,10,16,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1130,6,0,1405,13,0,0 +2013,5,14,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-12,0,859,-21,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1755,3,0,2044,-17,0,0 +2013,6,25,2,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1109,158,1,1305,184,1,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1450,16,1,1550,16,1,0 +2013,9,2,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,825,0,0,940,-9,0,0 +2013,7,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,7,0,1430,0,0,0 +2013,7,14,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,842,-3,0,0 +2013,7,3,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1414,23,1,1543,28,1,0 +2013,6,2,7,EV,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,-7,0,1524,-9,0,0 +2013,6,23,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,78,1,2300,91,1,0 +2013,5,4,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,1,0,1830,-12,0,0 +2013,6,10,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1452,17,1,1635,7,0,0 +2013,6,12,3,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,655,-6,0,1010,6,0,0 +2013,10,9,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2142,-5,0,2239,-26,0,0 +2013,5,8,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1053,-9,0,1210,-20,0,0 +2013,7,28,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1655,180,1,2030,177,1,0 +2013,8,17,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1305,25,1,1510,14,0,0 +2013,9,18,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,6,0,1908,-8,0,0 +2013,10,1,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,615,1,0,940,-14,0,0 +2013,5,1,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1748,28,1,2040,23,1,0 +2013,6,14,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,27,1,1752,25,1,0 +2013,10,11,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,90,1,1918,76,1,0 +2013,5,28,2,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,-6,0,1053,5,0,0 +2013,7,14,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1549,0,0,2130,6,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1301,-2,0,1430,-7,0,0 +2013,5,10,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1725,5,0,1748,-2,0,0 +2013,4,27,6,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1600,-9,0,1743,-34,0,0 +2013,9,27,5,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,700,4,0,1020,-15,0,0 +2013,4,4,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,1,0,2225,1,0,0 +2013,10,1,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1725,-3,0,1848,-11,0,0 +2013,8,26,1,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1615,69,1,1825,67,1,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2145,3,0,2319,-2,0,0 +2013,4,12,5,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2252,15,1,709,5,0,0 +2013,6,14,5,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1832,24,1,2235,5,0,0 +2013,4,10,3,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1351,-1,0,1619,4,0,0 +2013,7,2,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1109,33,1,1620,29,1,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1625,0,0,1730,-8,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2035,-5,0,5,3,0,0 +2013,6,26,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1215,116,1,1510,108,1,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,15,1,2129,0,0,0 +2013,7,9,2,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,630,2,0,920,-14,0,0 +2013,5,23,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,2,0,1605,-6,0,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-3,0,1346,-22,0,0 +2013,4,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1317,27,1,1536,24,1,0 +2013,8,23,5,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,630,-1,0,744,0,0,0 +2013,8,1,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1300,-2,0,1521,-19,0,0 +2013,4,4,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-7,0,1200,-6,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1935,41,1,0 +2013,9,20,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1105,-6,0,1436,-7,0,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,18,1,2125,6,0,0 +2013,4,7,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,2,0,1440,0,0,0 +2013,6,3,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-2,0,845,-9,0,0 +2013,6,21,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1658,-6,0,1757,-9,0,0 +2013,8,15,4,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1201,-6,0,1340,-12,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1616,-4,0,1812,-1,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,-3,0,1133,0,0,0 +2013,5,12,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-11,0,1310,-13,0,0 +2013,6,11,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,42,1,10,32,1,0 +2013,5,22,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,4,0,1645,12,0,0 +2013,6,10,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1500,112,1,1639,92,1,0 +2013,6,9,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-3,0,843,-6,0,0 +2013,8,27,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,0,0,1015,-9,0,0 +2013,4,15,1,OO,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1430,0,0,1645,20,1,0 +2013,10,22,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1033,-5,0,1310,-6,0,0 +2013,9,18,3,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1125,-4,0,1300,-37,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,94,1,2230,85,1,0 +2013,10,22,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1840,-3,0,2046,-4,0,0 +2013,5,3,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,2005,18,1,2130,1,0,0 +2013,6,11,2,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2216,25,1,37,5,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,714,7,0,952,1,0,0 +2013,10,3,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1108,-3,0,1214,-4,0,0 +2013,9,4,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,915,-7,0,1245,-20,0,0 +2013,7,28,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-4,0,2157,5,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1410,0,0,1505,1,0,0 +2013,10,9,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1203,-2,0,1412,-22,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-1,0,2237,6,0,0 +2013,7,29,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,2,0,1054,-6,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,835,-7,0,1000,3,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,-3,0,1855,-12,0,0 +2013,6,4,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1830,-6,0,2126,-26,0,0 +2013,10,26,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1855,-10,0,2035,-31,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,10,0,1836,7,0,0 +2013,5,1,3,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,837,-8,0,1013,-23,0,0 +2013,8,4,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,600,-5,0,720,0,0,0 +2013,4,13,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,-6,0,1309,20,1,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1255,82,1,1421,125,1,0 +2013,4,3,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,655,-4,0,735,-18,0,0 +2013,5,4,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,70,1,1900,86,1,0 +2013,10,23,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1125,-4,0,1321,19,1,0 +2013,5,5,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2000,-2,0,2110,-6,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2015,17,1,2145,49,1,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1837,32,1,2121,24,1,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-2,0,1520,-4,0,0 +2013,10,23,3,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,-1,0,1130,-5,0,0 +2013,10,18,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,30,1,1835,29,1,0 +2013,4,11,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1746,86,1,2000,102,1,0 +2013,9,25,3,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1452,-3,0,1555,-14,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2200,0,0,2359,-3,0,0 +2013,7,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,1,0,2320,-8,0,0 +2013,8,12,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1050,11,0,1145,10,0,0 +2013,7,2,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2010,2,0,2310,0,0,0 +2013,9,25,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,625,-6,0,920,-9,0,0 +2013,5,29,3,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,840,-2,0,956,2,0,0 +2013,7,3,3,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,20,1,1510,-2,0,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2100,11,0,2145,14,0,0 +2013,9,24,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-10,0,1904,-16,0,0 +2013,8,10,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,634,0,0,826,-22,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-3,0,854,18,1,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1054,-2,0,1132,-13,0,0 +2013,9,12,4,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,750,-5,0,1025,-11,0,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2110,38,1,2200,30,1,0 +2013,4,22,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,0,0,1322,7,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1225,-1,0,1350,-14,0,0 +2013,10,14,1,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,811,-3,0,929,-1,0,0 +2013,5,27,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2020,-7,0,2245,-22,0,0 +2013,9,19,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,12,0,2035,39,1,0 +2013,5,4,6,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,625,1,0,750,-14,0,0 +2013,9,8,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,2046,-13,0,2206,0,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1202,11,0,1454,12,0,0 +2013,4,14,7,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1930,-2,0,2045,-8,0,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1310,-1,0,1634,3,0,0 +2013,7,6,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,26,1,1855,19,1,0 +2013,6,8,6,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,128,1,545,126,1,0 +2013,4,16,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1825,-5,0,1929,4,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2150,48,1,2335,37,1,0 +2013,6,24,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,0,,740,0,1,1 +2013,9,28,6,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,636,1,0,1455,-23,0,0 +2013,7,19,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1540,325,1,1810,318,1,0 +2013,6,12,3,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1512,-1,0,1624,-1,0,0 +2013,4,30,2,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1131,309,1,1405,308,1,0 +2013,9,22,7,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,700,-5,0,1024,-9,0,0 +2013,6,14,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,65,1,2025,96,1,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,705,-2,0,835,-19,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1011,-5,0,1220,-12,0,0 +2013,5,17,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,3,0,1540,-4,0,0 +2013,5,14,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2145,72,1,2250,73,1,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1205,5,0,1645,-21,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1125,1,0,1635,-7,0,0 +2013,5,15,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,3,0,2320,-10,0,0 +2013,5,6,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1800,65,1,1832,73,1,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,-1,0,1610,6,0,0 +2013,10,13,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1155,24,1,1405,5,0,0 +2013,10,25,5,EV,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1645,-6,0,1838,-15,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2109,7,0,2159,-3,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2212,-8,0,1,-6,0,0 +2013,7,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,-2,0,1210,-6,0,0 +2013,4,13,6,YV,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,810,0,0,1210,25,1,0 +2013,6,20,4,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1826,39,1,2027,35,1,0 +2013,10,18,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1229,-5,0,1517,-11,0,0 +2013,7,18,4,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,724,8,0,830,-6,0,0 +2013,8,2,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-9,0,1540,-14,0,0 +2013,4,16,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-7,0,541,-1,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-6,0,1134,-10,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,46,1,2340,29,1,0 +2013,8,5,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2100,22,1,2251,5,0,0 +2013,9,14,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1010,14,0,1147,5,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-3,0,1605,-12,0,0 +2013,10,22,2,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1810,-10,0,1905,-22,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1850,20,1,1940,23,1,0 +2013,6,21,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,615,-4,0,755,-1,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1450,-1,0,1653,-7,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,700,3,0,1040,-4,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,27,1,2209,49,1,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1030,6,0,1309,-16,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,940,7,0,1120,2,0,0 +2013,7,30,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1850,-5,0,2020,0,0,0 +2013,8,19,1,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,800,-2,0,1110,-3,0,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1904,-4,0,2359,-7,0,0 +2013,4,19,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1335,-5,0,1540,2,0,0 +2013,9,12,4,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,6,0,1020,14,0,0 +2013,5,19,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1920,-1,0,2235,0,0,0 +2013,7,20,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,853,-3,0,1111,-21,0,0 +2013,5,16,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1125,-6,0,1246,-15,0,0 +2013,7,22,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,19,1,1743,43,1,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1540,73,1,1800,61,1,0 +2013,5,19,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1310,7,0,1635,-4,0,0 +2013,6,21,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1530,-9,0,1712,-1,0,0 +2013,7,8,1,9E,14524,Richmond International,Richmond,VA,12478,John F. Kennedy International,New York,NY,1311,8,0,1435,-14,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1530,0,0,1634,4,0,0 +2013,6,12,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,14,0,1535,2,0,0 +2013,5,28,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1942,25,1,2238,17,1,0 +2013,4,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1719,59,1,1849,56,1,0 +2013,10,13,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,76,1,1745,67,1,0 +2013,5,23,4,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,-1,0,1210,-8,0,0 +2013,9,18,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-6,0,1015,-13,0,0 +2013,10,6,7,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-6,0,736,-19,0,0 +2013,8,23,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,74,1,1220,80,1,0 +2013,6,24,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1501,-11,0,0 +2013,6,14,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,755,0,0,1310,-13,0,0 +2013,10,4,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,630,1,0,745,8,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-1,0,1556,-8,0,0 +2013,8,25,7,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,-5,0,2040,-17,0,0 +2013,10,11,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,715,-9,0,1017,-18,0,0 +2013,8,24,6,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,815,0,0,1057,-16,0,0 +2013,8,25,7,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,13,0,1744,-11,0,0 +2013,4,24,3,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2011,-5,0,2219,1,0,0 +2013,6,17,1,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,545,0,0,1010,-10,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1750,80,1,2022,64,1,0 +2013,8,16,5,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,2,0,2105,12,0,0 +2013,7,31,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1344,-3,0,1530,-10,0,0 +2013,8,19,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,911,3,0,1043,-6,0,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1315,0,,1445,0,1,1 +2013,10,20,7,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1120,-6,0,1238,-13,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,48,1,830,39,1,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1715,-3,0,1854,-4,0,0 +2013,5,16,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,5,0,1239,2,0,0 +2013,8,26,1,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,8,0,1730,2,0,0 +2013,7,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1210,5,0,1355,15,1,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2047,-4,0,2314,38,1,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1900,34,1,35,-5,0,0 +2013,7,4,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,-2,0,1055,-33,0,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2130,-2,0,2250,-7,0,0 +2013,9,23,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-5,0,1630,-6,0,0 +2013,9,26,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1259,-12,0,1716,-10,0,0 +2013,5,17,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,815,-6,0,0 +2013,10,24,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,0,0,2102,-1,0,0 +2013,10,5,6,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,840,1,0,1000,-10,0,0 +2013,9,18,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,750,0,0,830,0,0,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1645,1,0,1850,5,0,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-9,0,2013,-15,0,0 +2013,7,23,2,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-6,0,1806,-6,0,0 +2013,8,8,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1359,45,1,1556,64,1,0 +2013,10,5,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1055,12,0,1205,11,0,0 +2013,9,15,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,0,,1920,0,1,1 +2013,10,2,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,735,-1,0,835,-1,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1524,-7,0,1643,-10,0,0 +2013,10,27,7,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,0,,923,0,1,1 +2013,7,14,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1225,176,1,1353,167,1,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1250,0,0,1620,-24,0,0 +2013,10,25,5,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-5,0,1326,-8,0,0 +2013,6,13,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-1,0,1636,-16,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1216,-4,0,1353,-14,0,0 +2013,8,17,6,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1416,-6,0,1603,-2,0,0 +2013,4,20,6,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1243,-8,0,1503,2,0,0 +2013,5,20,1,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-2,0,1340,-22,0,0 +2013,5,25,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1952,-1,0,2128,-17,0,0 +2013,6,14,5,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,16,1,1025,11,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1904,11,0,2030,3,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,0,0,1336,-13,0,0 +2013,10,18,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-4,0,1728,-10,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-5,0,1539,-10,0,0 +2013,5,22,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1816,-3,0,2009,1,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1108,-5,0,1220,-17,0,0 +2013,7,26,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1426,69,1,1615,127,1,0 +2013,4,23,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1540,1,0,1848,4,0,0 +2013,7,1,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,2,0,1322,-9,0,0 +2013,9,1,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1330,-3,0,2120,19,1,0 +2013,10,11,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1845,-13,0,2359,-30,0,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1225,3,0,1400,-6,0,0 +2013,5,16,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,4,0,1203,0,0,0 +2013,6,26,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,6,0,1718,14,0,0 +2013,10,27,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,35,1,1550,26,1,0 +2013,10,1,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,27,1,1244,20,1,0 +2013,5,14,2,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1845,-9,0,2310,-18,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2010,57,1,2310,57,1,0 +2013,5,3,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2040,-5,0,500,-10,0,0 +2013,6,30,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1920,-1,0,2030,-4,0,0 +2013,7,29,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,1,0,800,-8,0,0 +2013,4,23,2,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,24,1,1808,22,1,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,-1,0,1236,-12,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1345,55,1,1634,17,1,0 +2013,5,14,2,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2120,-4,0,2345,-3,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1530,0,0,1811,-15,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1025,2,0,1140,-3,0,0 +2013,9,7,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1230,-5,0,1350,-7,0,0 +2013,5,31,5,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-8,0,1029,-15,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,0,0,1300,-3,0,0 +2013,4,11,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1325,-1,0,1605,-8,0,0 +2013,9,10,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,900,-1,0,915,-12,0,0 +2013,9,10,2,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1348,-2,0,1521,4,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1505,-1,0,1829,-16,0,0 +2013,10,9,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-4,0,807,-15,0,0 +2013,4,13,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1715,6,0,1835,7,0,0 +2013,4,29,1,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,-6,0,35,9,0,0 +2013,4,18,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,0,,1119,0,1,1 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-4,0,915,8,0,0 +2013,4,9,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,5,0,1653,-8,0,0 +2013,7,14,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,820,-8,0,1135,-39,0,0 +2013,4,21,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,-3,0,2040,-7,0,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,2,0,1058,-8,0,0 +2013,8,21,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1354,14,0,1516,35,1,0 +2013,5,27,1,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,13,0,1255,-6,0,0 +2013,5,4,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1505,-1,0,1625,-15,0,0 +2013,5,17,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1140,-2,0,1422,-21,0,0 +2013,5,13,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1452,145,1,1759,143,1,0 +2013,6,20,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1915,4,0,2159,-10,0,0 +2013,9,6,5,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1050,3,0,1140,0,0,0 +2013,7,22,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1606,105,1,1909,203,1,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,-2,0,2331,-18,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,2,0,925,7,0,0 +2013,9,30,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1235,5,0,1445,-10,0,0 +2013,6,4,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1940,-4,0,2109,-1,0,0 +2013,10,13,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1302,-6,0,1534,-11,0,0 +2013,10,4,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1127,-23,0,0 +2013,7,6,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,600,1,0,650,-8,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1220,8,0,1355,-8,0,0 +2013,6,9,7,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,800,3,0,911,8,0,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1340,0,0,1445,-3,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1554,-2,0,1733,-15,0,0 +2013,8,27,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1350,-1,0,1556,-2,0,0 +2013,7,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1357,222,1,1712,242,1,0 +2013,4,5,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,33,1,1545,21,1,0 +2013,4,24,3,9E,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,0,0,946,23,1,0 +2013,5,22,3,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,800,-4,0,957,-2,0,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1358,-3,0,1704,-9,0,0 +2013,5,9,4,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-2,0,1905,0,0,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1125,73,1,1450,90,1,0 +2013,6,27,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,850,16,1,1135,6,0,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,3,0,1900,-5,0,0 +2013,10,13,7,UA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,638,-1,0,843,-7,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,254,1,1905,262,1,0 +2013,9,30,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-3,0,1557,-11,0,0 +2013,8,9,5,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1055,18,1,1449,23,1,0 +2013,8,11,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1315,-8,0,1455,-28,0,0 +2013,10,1,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-7,0,1500,-24,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,835,-2,0,1405,-4,0,0 +2013,9,13,5,EV,14307,Theodore Francis Green State,Providence,RI,11042,Cleveland-Hopkins International,Cleveland,OH,600,-15,0,758,-18,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,6,0,2059,10,0,0 +2013,4,22,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-4,0,2210,3,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,32,1,2343,17,1,0 +2013,10,29,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1125,-8,0,1219,-12,0,0 +2013,5,26,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-13,0,1058,-13,0,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1920,-3,0,2256,-18,0,0 +2013,10,15,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1232,-20,0,0 +2013,4,22,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1100,0,0,1200,-2,0,0 +2013,7,17,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1725,34,1,1840,17,1,0 +2013,8,28,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-5,0,1100,-14,0,0 +2013,5,18,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,-6,0,1814,-22,0,0 +2013,9,22,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1030,7,0,1140,6,0,0 +2013,8,27,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1015,-3,0,1207,8,0,0 +2013,5,6,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,13,0,810,19,1,0 +2013,9,24,2,AA,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,730,-6,0,1600,-22,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-1,0,1644,-18,0,0 +2013,5,23,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1950,-5,0,2159,-1,0,0 +2013,10,29,2,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,-9,0,1240,-47,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1610,107,1,1720,88,1,0 +2013,4,25,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,0,0,1930,-4,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,-5,0,1134,-17,0,0 +2013,4,18,4,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1830,74,1,1935,64,1,0 +2013,5,7,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-12,0,1531,-17,0,0 +2013,4,19,5,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1500,128,1,1605,126,1,0 +2013,5,4,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-6,0,830,-7,0,0 +2013,5,26,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1319,7,0,1446,-5,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1945,-1,0,2055,4,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1550,-2,0,1810,-31,0,0 +2013,9,4,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1008,-3,0,1353,14,0,0 +2013,6,1,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1105,10,0,1315,-4,0,0 +2013,4,11,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,645,-1,0,800,-11,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1415,45,1,1549,33,1,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1500,53,1,1811,39,1,0 +2013,8,5,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,901,0,0,1120,3,0,0 +2013,4,26,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-2,0,1336,-6,0,0 +2013,4,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1330,-2,0,1459,-16,0,0 +2013,9,19,4,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,143,1,1930,133,1,0 +2013,6,6,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2008,95,1,2326,93,1,0 +2013,5,21,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-2,0,1011,-7,0,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1618,11,0,1957,14,0,0 +2013,8,5,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,113,1,1310,107,1,0 +2013,8,15,4,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-4,0,30,-27,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1050,0,0,1720,-7,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,725,-2,0,822,-18,0,0 +2013,10,9,3,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,1,0,2247,-30,0,0 +2013,10,5,6,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-3,0,2250,-12,0,0 +2013,10,8,2,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1050,6,0,1315,-5,0,0 +2013,4,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2200,39,1,2245,58,1,0 +2013,7,15,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,815,-6,0,0 +2013,6,26,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-4,0,750,-5,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,-8,0,901,-15,0,0 +2013,8,9,5,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1450,12,0,1620,7,0,0 +2013,6,23,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,152,1,1635,183,1,0 +2013,10,2,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-12,0,1340,-18,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,5,0,1626,6,0,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2100,33,1,2346,21,1,0 +2013,4,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-2,0,1805,-4,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1355,-6,0,1455,-8,0,0 +2013,9,26,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1819,11,0,2020,11,0,0 +2013,5,2,4,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,814,-3,0,1036,-26,0,0 +2013,8,26,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1826,-9,0,2029,-22,0,0 +2013,10,27,7,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,736,-2,0,959,14,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1310,-2,0,1445,-9,0,0 +2013,8,11,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-7,0,1706,-16,0,0 +2013,5,22,3,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1845,-6,0,2310,-7,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,944,26,1,1021,15,1,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1620,-7,0,1805,-1,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,30,1,1429,22,1,0 +2013,8,18,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1540,3,0,1635,10,0,0 +2013,10,11,5,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,26,1,820,27,1,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,2,0,1219,2,0,0 +2013,6,13,4,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,1500,63,1,1705,55,1,0 +2013,6,16,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,958,-5,0,0 +2013,4,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,2005,-2,0,2200,1,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1900,-5,0,2350,-15,0,0 +2013,5,4,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,-3,0,1705,-4,0,0 +2013,5,16,4,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1109,-8,0,0 +2013,8,30,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,852,46,1,1019,51,1,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1710,0,0,1901,-4,0,0 +2013,6,1,6,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,27,1,2325,33,1,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1058,7,0,1153,-6,0,0 +2013,6,3,1,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1109,19,1,1339,22,1,0 +2013,7,2,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1115,-10,0,1135,-32,0,0 +2013,8,8,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,605,-2,0,745,-9,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2053,105,1,2355,76,1,0 +2013,7,28,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1850,34,1,2056,23,1,0 +2013,7,29,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,709,-2,0,743,2,0,0 +2013,10,28,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,952,9,0,1525,9,0,0 +2013,10,26,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,705,-1,0,835,-4,0,0 +2013,5,29,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-3,0,1343,-11,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-2,0,1335,-11,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,2010,6,0,2235,-5,0,0 +2013,8,30,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,745,-4,0,918,-21,0,0 +2013,9,5,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1024,-5,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2111,10,0,2201,16,1,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,38,1,1905,140,1,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1655,-1,0,1750,7,0,0 +2013,6,12,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-7,0,1615,-19,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,-3,0,26,-23,0,0 +2013,8,27,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,711,-6,0,747,-4,0,0 +2013,5,29,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1835,-2,0,2044,-12,0,0 +2013,8,21,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,-1,0,1455,-4,0,0 +2013,9,6,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1117,3,0,1250,7,0,0 +2013,9,30,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1200,1,0,1305,-9,0,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1835,-1,0,2110,-11,0,0 +2013,7,17,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-10,0,830,-13,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,-2,0,1205,-4,0,0 +2013,7,4,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,3,0,745,-3,0,0 +2013,5,12,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1541,-10,0,1829,-6,0,0 +2013,8,29,4,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1940,-3,0,2240,-18,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1750,-2,0,1958,1,0,0 +2013,10,4,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1407,-1,0,1528,-14,0,0 +2013,5,5,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1101,-5,0,1334,2,0,0 +2013,9,14,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,615,1,0,1442,5,0,0 +2013,7,12,5,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,136,1,1605,138,1,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1135,37,1,1411,40,1,0 +2013,9,24,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1210,53,1,1305,51,1,0 +2013,6,12,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1100,-7,0,1349,-25,0,0 +2013,4,2,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1400,-4,0,1410,-13,0,0 +2013,4,10,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,1,0,1115,-9,0,0 +2013,8,20,2,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1957,7,0,2130,-4,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-5,0,954,-10,0,0 +2013,8,30,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,76,1,1255,61,1,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,956,15,1,1054,1,0,0 +2013,8,18,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-7,0,1020,-19,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,2145,-3,0,2335,-6,0,0 +2013,8,30,5,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1752,0,,1930,0,1,1 +2013,4,29,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,1120,5,0,0 +2013,6,13,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1635,15,1,2008,46,1,0 +2013,4,5,5,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,710,-9,0,1113,11,0,0 +2013,6,2,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,14,0,1418,8,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1501,-6,0,1706,-7,0,0 +2013,5,2,4,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,715,5,0,1508,16,1,0 +2013,4,27,6,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-3,0,2057,-23,0,0 +2013,7,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1248,2,0,1625,6,0,0 +2013,8,22,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1527,6,0,1715,8,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1447,21,1,1639,20,1,0 +2013,4,25,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,957,5,0,0 +2013,6,27,4,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,649,-6,0,916,-17,0,0 +2013,5,7,2,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1715,-5,0,1938,-12,0,0 +2013,9,6,5,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,8,0,1943,-2,0,0 +2013,7,24,3,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-7,0,1440,9,0,0 +2013,5,2,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1630,17,1,2205,17,1,0 +2013,9,29,7,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1704,-6,0,1919,-8,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1615,181,1,1710,179,1,0 +2013,7,23,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1600,-4,0,1630,-7,0,0 +2013,6,22,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-3,0,1840,7,0,0 +2013,5,24,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,2,0,1916,4,0,0 +2013,4,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,825,13,0,1030,36,1,0 +2013,8,14,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1629,-4,0,1821,-10,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,825,170,1,1025,145,1,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,810,-4,0,854,-13,0,0 +2013,8,12,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1150,3,0,1220,0,0,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1046,-6,0,1420,-25,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1705,39,1,1930,15,1,0 +2013,10,18,5,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1440,48,1,1600,48,1,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,30,1,752,23,1,0 +2013,10,11,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1025,19,1,1315,10,0,0 +2013,6,13,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,-4,0,750,0,1,1 +2013,6,26,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,15,1,1705,14,0,0 +2013,7,26,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,19,1,1815,26,1,0 +2013,7,6,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,-1,0,2310,-27,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1310,101,1,1615,95,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1745,-1,0,1925,-7,0,0 +2013,4,22,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,223,1,1838,216,1,0 +2013,6,19,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1640,2,0,1740,-8,0,0 +2013,10,28,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1117,-2,0,1312,-5,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1045,0,0,1345,22,1,0 +2013,6,3,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1745,17,1,2043,12,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-6,0,1440,-16,0,0 +2013,7,16,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1025,-11,0,1301,-2,0,0 +2013,7,8,1,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,3,0,1250,-9,0,0 +2013,5,28,2,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,724,-4,0,922,48,1,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,42,1,2342,41,1,0 +2013,9,4,3,9E,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,830,-11,0,1005,-7,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1308,-2,0,1437,-19,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1220,-3,0,1650,-27,0,0 +2013,7,2,2,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,730,-4,0,920,-24,0,0 +2013,10,3,4,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1245,17,1,1525,12,0,0 +2013,9,14,6,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,-1,0,1505,-25,0,0 +2013,6,16,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1526,-7,0,1631,-7,0,0 +2013,5,23,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1925,0,,2043,0,1,1 +2013,4,10,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,56,1,2015,48,1,0 +2013,6,20,4,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,-6,0,2208,-5,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,37,1,2102,56,1,0 +2013,6,12,3,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,21,1,2251,22,1,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1537,9,0,1718,-13,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,13,0,2059,-10,0,0 +2013,6,19,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1740,-5,0,1921,13,0,0 +2013,6,7,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,11,0,1235,8,0,0 +2013,6,5,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-6,0,1041,9,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,-3,0,1150,0,0,0 +2013,8,25,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,847,-8,0,1101,10,0,0 +2013,6,28,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1250,8,0,1535,7,0,0 +2013,10,21,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1157,-9,0,1446,-14,0,0 +2013,10,9,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-6,0,1510,-3,0,0 +2013,5,28,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1715,7,0,1851,-3,0,0 +2013,7,29,1,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1423,19,1,1721,3,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,6,0,1435,-7,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,53,1,1238,36,1,0 +2013,9,22,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1539,-2,0,1900,-13,0,0 +2013,8,12,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1625,9,0,1805,5,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1040,46,1,1640,30,1,0 +2013,5,3,5,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1710,211,1,1915,196,1,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,8,0,2120,-4,0,0 +2013,5,1,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-8,0,1112,-18,0,0 +2013,10,6,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,-8,0,1907,-26,0,0 +2013,6,28,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-2,0,1805,2,0,0 +2013,8,5,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,819,-11,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,5,0,55,0,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,9,0,1025,10,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1707,-3,0,1750,-2,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,28,1,1951,66,1,0 +2013,6,5,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,-3,0,1118,-10,0,0 +2013,4,2,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,-2,0,2205,8,0,0 +2013,8,2,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-9,0,21,-32,0,0 +2013,4,20,6,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,921,-18,0,0 +2013,6,30,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1624,1,0,1819,5,0,0 +2013,7,3,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-6,0,915,-2,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1912,-3,0,2025,-13,0,0 +2013,7,27,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,710,0,0,725,-11,0,0 +2013,5,21,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1728,11,0,2015,-3,0,0 +2013,6,16,7,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1720,216,1,2000,204,1,0 +2013,5,26,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,950,46,1,1119,34,1,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,10,0,1043,8,0,0 +2013,6,24,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,14,0,1855,7,0,0 +2013,7,15,1,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1415,-5,0,1645,-26,0,0 +2013,8,5,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1625,-13,0,1832,-25,0,0 +2013,5,20,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1336,25,1,1436,27,1,0 +2013,7,5,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,705,-5,0,825,-13,0,0 +2013,7,1,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-9,0,1903,-11,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1710,44,1,2105,35,1,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1550,1,0,1705,5,0,0 +2013,10,14,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1520,0,0,1705,-19,0,0 +2013,4,2,2,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1220,37,1,1600,3,0,0 +2013,8,26,1,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,830,-7,0,1023,-10,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1800,7,0,1939,-2,0,0 +2013,10,27,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-7,0,935,-14,0,0 +2013,6,2,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,10,0,2015,4,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,101,1,1430,110,1,0 +2013,7,8,1,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,944,1,0,1204,-14,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,940,1,0,1100,-7,0,0 +2013,4,2,2,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1535,0,0,1610,-1,0,0 +2013,5,22,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1425,-2,0,1631,-6,0,0 +2013,6,10,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1910,56,1,2030,63,1,0 +2013,6,2,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-2,0,1750,-11,0,0 +2013,7,13,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,1,0,1656,-3,0,0 +2013,4,24,3,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,845,-3,0,1050,-21,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1537,1,0,1659,-11,0,0 +2013,4,19,5,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1403,10,0,1522,-5,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,0,0,1132,-13,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,56,1,1530,61,1,0 +2013,8,28,3,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,0,0,1335,-3,0,0 +2013,6,16,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-3,0,2106,-7,0,0 +2013,10,2,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1145,2,0,1307,5,0,0 +2013,4,6,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2335,-4,0,630,-20,0,0 +2013,7,7,7,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1327,-6,0,1840,-9,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,-7,0,1811,-3,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,840,-3,0,1719,-27,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1010,-3,0,1230,-11,0,0 +2013,8,3,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1310,-3,0,1423,-7,0,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,545,1,0,645,4,0,0 +2013,4,11,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,930,-3,0,1055,-8,0,0 +2013,5,31,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-5,0,954,-7,0,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,2,0,1235,-4,0,0 +2013,7,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-3,0,1421,-15,0,0 +2013,6,25,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1055,45,1,1912,41,1,0 +2013,4,15,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,720,-4,0,931,-7,0,0 +2013,6,23,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,15,1,1640,6,0,0 +2013,6,27,4,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1740,-6,0,1956,2,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,831,-2,0,952,-17,0,0 +2013,7,27,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1435,10,0,1801,4,0,0 +2013,9,5,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2100,14,0,2145,10,0,0 +2013,8,18,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1125,-5,0,1440,-23,0,0 +2013,6,5,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1225,19,1,1600,10,0,0 +2013,8,2,5,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,841,-3,0,0 +2013,7,26,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,710,4,0,941,2,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,2020,-1,0,2300,-1,0,0 +2013,10,19,6,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-4,0,1227,11,0,0 +2013,10,29,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1800,3,0,1907,7,0,0 +2013,4,28,7,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1939,-3,0,100,-18,0,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,940,0,0,1045,-7,0,0 +2013,7,2,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1430,9,0,1615,-2,0,0 +2013,4,15,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1210,-7,0,1325,-10,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1510,-2,0,1850,22,1,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1725,-2,0,1950,-32,0,0 +2013,8,14,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,644,-2,0,825,-4,0,0 +2013,8,25,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-3,0,920,-3,0,0 +2013,6,5,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1930,16,1,2118,21,1,0 +2013,6,11,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-2,0,1155,-19,0,0 +2013,4,8,1,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1123,-1,0,1217,-4,0,0 +2013,7,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,845,-19,0,0 +2013,7,16,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,7,0,1025,11,0,0 +2013,7,12,5,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,9,0,1545,-10,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1155,0,0,1510,7,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1449,22,1,2214,5,0,0 +2013,9,8,7,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,720,-3,0,845,-31,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,715,-3,0,920,0,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2045,-6,0,2159,-13,0,0 +2013,8,29,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1430,5,0,1505,-5,0,0 +2013,5,10,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,901,-2,0,0 +2013,6,7,5,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1935,0,,2121,0,1,1 +2013,4,29,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,920,0,0,1200,-1,0,0 +2013,4,3,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1510,-9,0,1635,2,0,0 +2013,6,28,5,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,107,1,1642,155,1,0 +2013,8,17,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-5,0,1409,-11,0,0 +2013,5,16,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,945,-4,0,1020,-17,0,0 +2013,5,1,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1030,-3,0,1302,-15,0,0 +2013,10,9,3,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1750,21,1,1945,10,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1540,0,0,1845,1,0,0 +2013,7,31,3,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1640,2,0,1830,-24,0,0 +2013,9,15,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,21,1,1800,14,0,0 +2013,7,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-6,0,1112,-5,0,0 +2013,4,6,6,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1420,-13,0,1800,-17,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1750,-2,0,2040,-13,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,156,1,2207,164,1,0 +2013,4,28,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-2,0,1030,-8,0,0 +2013,7,3,3,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-3,0,912,-21,0,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1135,2,0,1425,-3,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,0,0,1645,-17,0,0 +2013,4,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,3,0,1050,-10,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1855,33,1,2214,30,1,0 +2013,7,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,930,-2,0,952,-15,0,0 +2013,4,17,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-5,0,1618,-18,0,0 +2013,4,19,5,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1420,2,0,1920,-5,0,0 +2013,8,19,1,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1702,-6,0,1925,-1,0,0 +2013,7,11,4,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1234,-13,0,1447,-20,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,-1,0,1340,-26,0,0 +2013,8,27,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-6,0,1237,-1,0,0 +2013,10,28,1,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1515,18,1,1745,42,1,0 +2013,8,2,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,-1,0,1445,-5,0,0 +2013,4,4,4,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1005,-2,0,1541,-7,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1146,-3,0,1420,2,0,0 +2013,5,14,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,702,-4,0,805,-2,0,0 +2013,4,1,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1205,27,1,1805,13,0,0 +2013,4,26,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,831,-10,0,1120,-21,0,0 +2013,4,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1535,1,0,1835,5,0,0 +2013,5,8,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2150,11,0,2305,12,0,0 +2013,4,5,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1637,-6,0,1920,-13,0,0 +2013,8,2,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1215,19,1,1815,13,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,-2,0,2155,-5,0,0 +2013,10,25,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-4,0,1638,1,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1820,10,0,2000,6,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,-3,0,1050,-6,0,0 +2013,5,19,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-5,0,810,-1,0,0 +2013,7,11,4,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1820,-4,0,2025,-12,0,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,90,1,1900,97,1,0 +2013,5,13,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,35,1,1850,15,1,0 +2013,7,31,3,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-6,0,1405,-8,0,0 +2013,4,18,4,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-2,0,2109,-2,0,0 +2013,7,23,2,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1215,-2,0,2003,-5,0,0 +2013,10,23,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,1,0,540,0,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1210,1,0,1905,27,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1855,39,1,2215,43,1,0 +2013,5,13,1,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-3,0,909,-19,0,0 +2013,5,27,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,635,-5,0,905,-15,0,0 +2013,4,22,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1910,21,1,2035,45,1,0 +2013,5,27,1,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2011,-1,0,2306,-7,0,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1936,-3,0,2118,-22,0,0 +2013,10,4,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1500,2,0,1829,-33,0,0 +2013,5,31,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-5,0,1000,-19,0,0 +2013,6,2,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1233,-3,0,1750,50,1,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,859,28,1,1337,22,1,0 +2013,5,18,6,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,945,-3,0,1140,-14,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,835,10,0,1155,-2,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1135,4,0,1355,-5,0,0 +2013,8,7,3,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,701,-3,0,930,-9,0,0 +2013,10,18,5,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1706,-3,0,1847,5,0,0 +2013,4,11,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,102,1,1830,97,1,0 +2013,4,24,3,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2130,23,1,2245,36,1,0 +2013,5,10,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1429,24,1,1531,83,1,0 +2013,4,14,7,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1500,-6,0,1820,-27,0,0 +2013,5,2,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1900,60,1,2125,62,1,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-6,0,1301,-4,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1820,29,1,2012,8,0,0 +2013,9,25,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2155,-4,0,2221,8,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1140,19,1,1345,-7,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1125,-8,0,1845,-5,0,0 +2013,10,4,5,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,710,-5,0,935,-13,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,730,0,0,900,0,0,0 +2013,7,16,2,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,31,1,2010,34,1,0 +2013,7,21,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,950,-8,0,1240,-15,0,0 +2013,9,29,7,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1000,-6,0,1110,-26,0,0 +2013,4,21,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1250,-7,0,1347,-8,0,0 +2013,4,5,5,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1344,5,0,1555,-9,0,0 +2013,9,4,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,47,1,1150,69,1,0 +2013,10,31,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1246,-7,0,1410,-18,0,0 +2013,10,8,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,-4,0,1805,-15,0,0 +2013,4,29,1,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1147,39,1,1315,90,1,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,830,-2,0,1145,-13,0,0 +2013,4,10,3,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2324,124,1,540,125,1,0 +2013,7,17,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,535,49,1,720,44,1,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,23,1,1805,22,1,0 +2013,8,16,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,0,,905,0,1,1 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,850,-2,0,1555,-7,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,956,-5,0,1129,-9,0,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1905,10,0,2240,5,0,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2050,-7,0,2256,-18,0,0 +2013,5,10,5,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1815,21,1,1930,15,1,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,21,1,1030,15,1,0 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1555,12,0,1725,10,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-3,0,2116,-11,0,0 +2013,10,1,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-5,0,1814,-16,0,0 +2013,4,13,6,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,734,4,0,941,9,0,0 +2013,9,12,4,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,-4,0,1805,-20,0,0 +2013,8,23,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2210,-3,0,45,-14,0,0 +2013,6,10,1,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-3,0,1238,-21,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,-2,0,1617,-9,0,0 +2013,8,17,6,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,-5,0,1543,2,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,7,0,1856,-10,0,0 +2013,8,15,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-6,0,735,8,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1015,1,0,1225,7,0,0 +2013,7,31,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2031,19,1,2118,18,1,0 +2013,4,5,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,1815,11,0,2335,-2,0,0 +2013,8,13,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,621,2,0,759,-5,0,0 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,700,6,0,815,0,0,0 +2013,9,25,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1800,-10,0,1900,25,1,0 +2013,10,15,2,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1535,21,1,1700,75,1,0 +2013,4,19,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-5,0,1325,-12,0,0 +2013,4,15,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,-7,0,2025,-33,0,0 +2013,10,20,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1334,8,0,1444,6,0,0 +2013,9,29,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,605,-4,0,1035,-22,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,-3,0,2252,-5,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,120,1,1225,121,1,0 +2013,7,2,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-6,0,935,0,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1120,15,1,1435,52,1,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2010,26,1,2310,9,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2110,2,0,2235,-7,0,0 +2013,5,31,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1710,-4,0,1840,11,0,0 +2013,4,14,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1955,90,1,2125,99,1,0 +2013,9,8,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-5,0,1013,-11,0,0 +2013,8,6,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,640,-10,0,1033,-28,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-5,0,1005,-15,0,0 +2013,4,16,2,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,710,-7,0,1005,9,0,0 +2013,5,16,4,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1119,159,1,1259,146,1,0 +2013,7,11,4,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,0,,820,0,1,1 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2114,0,0,2358,-33,0,0 +2013,6,1,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1005,-7,0,1155,-11,0,0 +2013,10,10,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-3,0,1538,-9,0,0 +2013,8,17,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1125,-1,0,1245,-3,0,0 +2013,9,26,4,EV,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1639,7,0,1734,15,1,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,43,1,2110,47,1,0 +2013,4,7,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-8,0,1245,-21,0,0 +2013,5,26,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1015,-1,0,1210,-13,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-4,0,1748,-17,0,0 +2013,10,5,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,4,0,1350,-16,0,0 +2013,5,12,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1016,0,0,1405,-8,0,0 +2013,6,15,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,-6,0,2305,-7,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1456,-3,0,1629,-17,0,0 +2013,5,13,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1600,-3,0,1720,-11,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1725,-2,0,1953,-11,0,0 +2013,5,25,6,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1640,16,1,1800,0,0,0 +2013,8,28,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1150,20,1,1155,13,0,0 +2013,10,19,6,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1710,8,0,1845,3,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1855,1,0,2050,-8,0,0 +2013,7,17,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1926,-4,0,2106,-14,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1450,-9,0,1600,-9,0,0 +2013,7,22,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,45,1,1715,41,1,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,845,0,0,1005,-11,0,0 +2013,8,15,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1925,-5,0,2000,-8,0,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1515,-1,0,1649,-12,0,0 +2013,10,21,1,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1205,51,1,1420,41,1,0 +2013,8,19,1,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,910,6,0,1013,5,0,0 +2013,6,3,1,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1745,55,1,1800,47,1,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,75,1,2359,69,1,0 +2013,6,21,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1545,98,1,1814,117,1,0 +2013,7,12,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-7,0,1315,-1,0,0 +2013,8,4,7,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2006,-6,0,2103,-6,0,0 +2013,5,7,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1140,-2,0,1445,16,1,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,5,0,1038,-8,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,0,,1005,0,1,1 +2013,9,1,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-3,0,1044,-4,0,0 +2013,10,23,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,1,0,1729,4,0,0 +2013,6,28,5,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-6,0,1042,-21,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,30,1,2245,19,1,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1310,20,1,1615,18,1,0 +2013,7,3,3,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,620,-4,0,809,-24,0,0 +2013,4,12,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-7,0,1240,7,0,0 +2013,10,27,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1847,150,1,2243,134,1,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-7,0,920,-13,0,0 +2013,4,22,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1829,-10,0,2010,-27,0,0 +2013,7,12,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,4,0,2145,11,0,0 +2013,5,4,6,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,946,-4,0,1127,-3,0,0 +2013,9,24,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-8,0,1200,-16,0,0 +2013,6,27,4,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,152,1,2144,177,1,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,930,-4,0,1230,-15,0,0 +2013,8,24,6,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,-3,0,1206,3,0,0 +2013,8,6,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,27,1,1635,-4,0,0 +2013,9,29,7,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1325,-1,0,1433,12,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1855,8,0,1950,7,0,0 +2013,8,17,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-9,0,1945,-18,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1210,-4,0,1456,-21,0,0 +2013,6,13,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1908,29,1,2006,26,1,0 +2013,6,2,7,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1330,-4,0,1452,-12,0,0 +2013,9,11,3,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1052,-12,0,1219,-25,0,0 +2013,5,31,5,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1835,74,1,1930,59,1,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,805,32,1,1240,30,1,0 +2013,9,15,7,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,710,-9,0,1000,-15,0,0 +2013,10,2,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1455,-2,0,1615,3,0,0 +2013,5,18,6,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1359,-6,0,1748,-12,0,0 +2013,10,16,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,610,-9,0,940,-1,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,3,0,1235,-3,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,752,0,0,929,-5,0,0 +2013,10,2,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1129,-3,0,1248,-22,0,0 +2013,8,9,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2105,-5,0,2220,7,0,0 +2013,8,23,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,6,0,1015,5,0,0 +2013,5,11,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,-8,0,1626,-22,0,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1652,103,1,2010,109,1,0 +2013,4,20,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1053,-2,0,1131,-4,0,0 +2013,7,13,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,-1,0,1835,4,0,0 +2013,6,12,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1232,27,1,1444,21,1,0 +2013,8,28,3,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1743,-4,0,1855,-14,0,0 +2013,9,2,1,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,-1,0,1925,-9,0,0 +2013,8,3,6,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-5,0,1339,-18,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1803,18,1,2106,22,1,0 +2013,4,10,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,0,0,859,6,0,0 +2013,10,25,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1900,-6,0,2025,-15,0,0 +2013,9,14,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,174,1,1240,178,1,0 +2013,10,2,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,3,0,1945,7,0,0 +2013,10,1,2,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1700,-4,0,1745,-23,0,0 +2013,9,4,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,900,-5,0,1110,-13,0,0 +2013,7,9,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-8,0,1310,-1,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,820,-4,0,1115,7,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,1,0,920,-7,0,0 +2013,4,12,5,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,725,-1,0,800,-13,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1650,0,0,2035,-4,0,0 +2013,10,7,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2045,34,1,2225,8,0,0 +2013,5,28,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,705,-3,0,1535,-27,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2259,-5,0,11,-7,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,21,1,1625,33,1,0 +2013,10,28,1,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,803,-4,0,1024,7,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,3,0,905,-7,0,0 +2013,7,17,3,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-2,0,1905,-12,0,0 +2013,8,2,5,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1159,-4,0,1314,-2,0,0 +2013,7,17,3,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-9,0,1615,-30,0,0 +2013,10,12,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1325,-3,0,2159,-15,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,900,-4,0,1053,-8,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1230,-2,0,1235,-13,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,8,0,1725,34,1,0 +2013,6,5,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2200,15,1,2310,17,1,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1251,38,1,1839,22,1,0 +2013,9,15,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1735,-2,0,1928,-9,0,0 +2013,10,27,7,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-2,0,625,-34,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,7,0,1148,0,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1046,1,0,1148,-9,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1650,2,0,1827,-8,0,0 +2013,7,16,2,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1213,24,1,1425,12,0,0 +2013,9,23,1,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,700,-3,0,822,-11,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,25,1,2345,12,0,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-4,0,2315,-6,0,0 +2013,5,23,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1305,19,1,1420,18,1,0 +2013,4,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,829,-8,0,937,7,0,0 +2013,10,14,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-3,0,835,-6,0,0 +2013,7,4,4,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,650,-8,0,1114,-15,0,0 +2013,6,12,3,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1738,0,0,1944,-16,0,0 +2013,4,25,4,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,-7,0,2105,-4,0,0 +2013,7,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,928,4,0,1214,-15,0,0 +2013,10,8,2,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1120,8,0,1256,-2,0,0 +2013,4,1,1,9E,12478,John F. Kennedy International,New York,NY,13342,General Mitchell International,Milwaukee,WI,1610,16,1,1758,18,1,0 +2013,9,23,1,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,540,-2,0,850,-16,0,0 +2013,6,4,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,30,1,1540,13,0,0 +2013,7,31,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,-4,0,1725,-17,0,0 +2013,9,7,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,1520,-2,0,1725,-9,0,0 +2013,5,16,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1205,-4,0,1445,-17,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1730,5,0,2205,-5,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1931,19,1,2237,13,0,0 +2013,10,7,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1700,-5,0,1829,-14,0,0 +2013,9,9,1,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1710,-7,0,1850,-38,0,0 +2013,10,31,4,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1013,-2,0,1027,-3,0,0 +2013,7,20,6,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,940,-3,0,0 +2013,5,20,1,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-1,0,756,-7,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,2,0,1000,-5,0,0 +2013,7,26,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,-3,0,1255,-10,0,0 +2013,10,19,6,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1708,-8,0,1901,-18,0,0 +2013,7,17,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-5,0,1035,-26,0,0 +2013,7,12,5,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,845,-5,0,955,-9,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1520,2,0,1625,-5,0,0 +2013,6,7,5,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,9,0,1020,21,1,0 +2013,6,26,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-4,0,1020,1,0,0 +2013,4,10,3,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,846,-5,0,1120,-8,0,0 +2013,9,5,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,956,7,0,1604,-1,0,0 +2013,8,6,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,36,1,1745,26,1,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,-2,0,1720,1,0,0 +2013,7,14,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,845,-4,0,1000,-7,0,0 +2013,4,10,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-9,0,1016,-19,0,0 +2013,10,5,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1815,81,1,1842,94,1,0 +2013,10,15,2,WN,14570,Reno/Tahoe International,Reno,NV,14747,Seattle/Tacoma International,Seattle,WA,940,0,0,1130,24,1,0 +2013,6,5,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,5,0,1625,1,0,0 +2013,8,1,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-1,0,1215,35,1,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,700,-5,0,1235,-22,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1725,29,1,2250,51,1,0 +2013,7,16,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1222,-3,0,1356,5,0,0 +2013,6,24,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,-8,0,649,-5,0,0 +2013,10,7,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1625,34,1,1800,34,1,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1500,13,0,1630,5,0,0 +2013,6,19,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1115,1,0,1200,2,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1725,-4,0,2019,-16,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1020,2,0,1043,1,0,0 +2013,10,22,2,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,755,-2,0,1558,-6,0,0 +2013,5,14,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1849,-5,0,2359,-12,0,0 +2013,4,27,6,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1900,29,1,2020,19,1,0 +2013,10,29,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1100,20,1,1225,24,1,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1820,16,1,2110,13,0,0 +2013,9,30,1,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1255,-2,0,1455,-31,0,0 +2013,7,21,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1334,-1,0,1439,-19,0,0 +2013,10,16,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1005,2,0,1830,-34,0,0 +2013,5,24,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1924,-1,0,2110,-13,0,0 +2013,8,7,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-1,0,1245,-7,0,0 +2013,4,1,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1605,16,1,1810,35,1,0 +2013,8,28,3,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,9,0,654,20,1,0 +2013,8,12,1,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-2,0,1629,-16,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,3,0,1825,19,1,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1820,0,,2140,0,1,1 +2013,9,20,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-1,0,1856,-21,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1800,10,0,1925,10,0,0 +2013,5,28,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1011,-5,0,1028,-17,0,0 +2013,7,1,1,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-1,0,1231,10,0,0 +2013,4,6,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,-3,0,1605,-7,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,84,1,1619,72,1,0 +2013,7,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,905,82,1,1144,72,1,0 +2013,8,23,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-4,0,1710,-12,0,0 +2013,4,6,6,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,1759,5,0,2046,-1,0,0 +2013,6,11,2,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,755,-18,0,1057,-23,0,0 +2013,7,13,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,720,-3,0,900,8,0,0 +2013,4,6,6,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1114,-1,0,1340,-27,0,0 +2013,4,5,5,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1945,-6,0,2245,-32,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,915,3,0,1445,-4,0,0 +2013,4,4,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1920,-2,0,2314,-12,0,0 +2013,6,10,1,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1825,109,1,2306,113,1,0 +2013,7,19,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,89,1,1740,128,1,0 +2013,7,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,4,0,904,-2,0,0 +2013,9,14,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,910,29,1,1012,23,1,0 +2013,8,10,6,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1310,-4,0,1659,-5,0,0 +2013,8,24,6,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,730,27,1,945,29,1,0 +2013,9,5,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1940,-9,0,2110,-11,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,51,1,1055,81,1,0 +2013,8,24,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1440,39,1,1602,24,1,0 +2013,5,24,5,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1340,-9,0,1500,-2,0,0 +2013,9,3,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1945,10,0,2100,6,0,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,2211,36,1,3,54,1,0 +2013,6,21,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1355,188,1,1955,177,1,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,18,1,2335,17,1,0 +2013,7,22,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2115,24,1,25,16,1,0 +2013,5,14,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,720,-1,0,825,-32,0,0 +2013,8,15,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1915,6,0,2025,6,0,0 +2013,8,7,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,-4,0,1515,-9,0,0 +2013,4,19,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1025,4,0,1140,-7,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1725,4,0,1851,-11,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-1,0,824,-8,0,0 +2013,6,13,4,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1445,0,0,1603,20,1,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1135,4,0,1230,-5,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1928,5,0,2131,-7,0,0 +2013,6,14,5,AS,14683,San Antonio International,San Antonio,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,6,0,2147,-15,0,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1850,-2,0,40,0,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,18,1,2300,7,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2005,-7,0,2305,2,0,0 +2013,9,12,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,919,-8,0,0 +2013,4,1,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1325,-4,0,1505,-5,0,0 +2013,10,15,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2135,-3,0,20,-11,0,0 +2013,10,13,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,925,-2,0,1440,-14,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,17,1,2123,3,0,0 +2013,9,10,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1345,-2,0,1505,1,0,0 +2013,6,27,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2155,76,1,2335,62,1,0 +2013,4,2,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,835,-1,0,1010,-17,0,0 +2013,7,22,1,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1650,0,0,2010,-7,0,0 +2013,10,30,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-8,0,830,-25,0,0 +2013,10,20,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1830,-5,0,1845,-12,0,0 +2013,7,27,6,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,8,0,1213,15,1,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-7,0,959,-8,0,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-7,0,1133,-15,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-4,0,710,-12,0,0 +2013,7,14,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,535,-4,0,632,-1,0,0 +2013,6,16,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2115,17,1,2235,10,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,608,-3,0,827,-13,0,0 +2013,6,28,5,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1855,-1,0,2045,-12,0,0 +2013,7,1,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,19,1,1651,5,0,0 +2013,6,9,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1400,2,0,1735,-12,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1341,0,0,1515,-13,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1456,-2,0,1554,-5,0,0 +2013,4,20,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1255,46,1,1416,39,1,0 +2013,9,15,7,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1455,-10,0,1630,-26,0,0 +2013,6,19,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2040,11,0,2153,-2,0,0 +2013,5,22,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,-2,0,1831,-9,0,0 +2013,6,13,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2001,53,1,2305,104,1,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-3,0,1850,46,1,0 +2013,5,14,2,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,920,-4,0,1045,3,0,0 +2013,9,5,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1355,1,0,1611,-9,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,735,-5,0,900,-11,0,0 +2013,6,2,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1635,0,0,1810,-1,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1350,9,0,1636,-20,0,0 +2013,8,2,5,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2050,8,0,2255,12,0,0 +2013,7,21,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,715,-3,0,930,-7,0,0 +2013,8,9,5,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1424,-2,0,1533,-7,0,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,654,0,0,750,7,0,0 +2013,7,11,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,708,-5,0,810,-20,0,0 +2013,5,19,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1810,204,1,1945,169,1,0 +2013,5,13,1,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1639,-3,0,1930,-6,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,725,-5,0,845,-15,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1450,57,1,1810,77,1,0 +2013,4,8,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-7,0,1605,-20,0,0 +2013,7,26,5,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,627,-4,0,745,-17,0,0 +2013,9,18,3,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1818,0,0,1900,-1,0,0 +2013,6,19,3,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1040,-9,0,1614,-20,0,0 +2013,9,7,6,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1145,-4,0,1448,-8,0,0 +2013,4,15,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1430,-1,0,1535,-9,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,1,0,1430,-15,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,3,0,1435,-2,0,0 +2013,5,3,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2144,-2,0,2238,-14,0,0 +2013,8,11,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1150,-4,0,1320,-20,0,0 +2013,6,22,6,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1724,-6,0,2020,-11,0,0 +2013,7,18,4,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1507,3,0,1657,25,1,0 +2013,8,16,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1405,-7,0,1547,-12,0,0 +2013,4,25,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1110,22,1,1235,82,1,0 +2013,4,21,7,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-6,0,1217,-11,0,0 +2013,10,9,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-1,0,2000,-14,0,0 +2013,10,30,3,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1010,-2,0,1155,-5,0,0 +2013,4,3,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,800,0,0,915,-6,0,0 +2013,9,26,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1840,-2,0,2120,-10,0,0 +2013,9,17,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,935,-5,0,1124,-16,0,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,-1,0,2035,-4,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1632,5,0,1705,3,0,0 +2013,5,5,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-8,0,1410,-11,0,0 +2013,10,30,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1355,4,0,1717,8,0,0 +2013,10,9,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1820,59,1,2000,56,1,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,720,-3,0,1025,-8,0,0 +2013,10,26,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,2,0,1356,-3,0,0 +2013,5,18,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1737,64,1,1922,51,1,0 +2013,7,27,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,-1,0,1458,-14,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2055,-1,0,2236,-19,0,0 +2013,6,9,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1739,-5,0,1959,-9,0,0 +2013,8,19,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-11,0,1450,-20,0,0 +2013,9,16,1,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,825,-5,0,1021,-6,0,0 +2013,8,26,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,-4,0,1645,-22,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1115,0,0,1815,-5,0,0 +2013,8,13,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,13,0,1615,0,0,0 +2013,4,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,6,0,1650,-8,0,0 +2013,5,9,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,-10,0,1327,-19,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,750,-3,0,1010,-34,0,0 +2013,10,5,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1514,-4,0,1607,-9,0,0 +2013,4,17,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1303,4,0,1429,-20,0,0 +2013,7,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1015,1,0,1320,-8,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,750,0,0,1020,-25,0,0 +2013,10,27,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,-5,0,915,-2,0,0 +2013,8,6,2,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2057,-2,0,2320,34,1,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1052,59,1,1341,31,1,0 +2013,8,6,2,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1406,-8,0,1620,-17,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1550,-2,0,2035,-16,0,0 +2013,6,17,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,-1,0,1440,-15,0,0 +2013,4,17,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,1415,14,0,1920,-8,0,0 +2013,7,2,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,900,-6,0,1030,8,0,0 +2013,7,7,7,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-5,0,1545,-7,0,0 +2013,10,8,2,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,950,11,0,1205,3,0,0 +2013,5,13,1,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,17,1,2100,14,0,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,910,0,0,1010,13,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,940,19,1,1410,10,0,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2114,-4,0,2358,0,0,0 +2013,7,29,1,OO,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,641,-3,0,855,18,1,0 +2013,4,12,5,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,34,1,1120,33,1,0 +2013,10,7,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,43,1,1410,38,1,0 +2013,5,12,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,-6,0,910,1,0,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,4,0,855,4,0,0 +2013,9,12,4,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1515,59,1,1935,56,1,0 +2013,6,25,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,910,-5,0,1115,5,0,0 +2013,4,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1640,-4,0,1855,-16,0,0 +2013,7,7,7,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,700,-5,0,905,1,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1635,0,,1907,0,1,1 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,855,1,0,1614,-19,0,0 +2013,8,11,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,951,69,1,1200,63,1,0 +2013,6,28,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1003,-4,0,1131,-9,0,0 +2013,10,28,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,725,1,0,845,10,0,0 +2013,10,24,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,22,1,850,17,1,0 +2013,7,3,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,4,0,1902,-2,0,0 +2013,8,12,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2010,23,1,2306,10,0,0 +2013,5,6,1,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1015,-12,0,1212,-12,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,810,2,0,930,-12,0,0 +2013,9,20,5,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,63,1,1525,56,1,0 +2013,8,23,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,720,-2,0,1007,-9,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,10,0,2359,22,1,0 +2013,10,18,5,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,0,0,2130,-15,0,0 +2013,7,26,5,VX,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,50,5,0,625,15,1,0 +2013,4,17,3,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,842,-5,0,1028,-15,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,630,3,0,845,3,0,0 +2013,8,31,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-1,0,1735,13,0,0 +2013,4,25,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1420,2,0,2115,-9,0,0 +2013,5,27,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,29,1,2020,25,1,0 +2013,10,27,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1140,0,0,1250,-3,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,-4,0,730,-1,0,0 +2013,6,19,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1636,36,1,2005,34,1,0 +2013,9,11,3,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1120,-1,0,1445,5,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1555,6,0,1950,-15,0,0 +2013,6,10,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,855,-1,0,1015,-9,0,0 +2013,10,22,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,-5,0,2120,-20,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2015,30,1,2340,16,1,0 +2013,7,31,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1121,-8,0,1221,4,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,0,0,2148,-16,0,0 +2013,5,21,2,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-6,0,2104,-18,0,0 +2013,10,28,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1205,32,1,1511,5,0,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,13,0,1815,23,1,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1900,6,0,2017,23,1,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,730,0,0,850,-6,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1620,-2,0,1808,-8,0,0 +2013,7,11,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,15,1,2220,1,0,0 +2013,4,11,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,6,0,1044,10,0,0 +2013,9,24,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1220,-3,0,1350,-4,0,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1551,20,1,1717,22,1,0 +2013,7,13,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,43,1,1140,45,1,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,823,-1,0,1710,-23,0,0 +2013,5,30,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1420,-4,0,1550,-4,0,0 +2013,4,2,2,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,945,-9,0,1159,-6,0,0 +2013,5,1,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1310,-7,0,1428,-17,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1955,16,1,2200,6,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2225,11,0,2347,14,0,0 +2013,8,3,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1013,4,0,1303,4,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,-5,0,1625,-33,0,0 +2013,6,24,1,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1414,140,1,2245,127,1,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2145,11,0,5,0,0,0 +2013,9,22,7,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1535,21,1,1816,115,1,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1600,6,0,2030,-32,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1830,-2,0,2055,-25,0,0 +2013,8,21,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1517,0,0,1621,-7,0,0 +2013,10,9,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-7,0,1901,-16,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,2,0,1750,-18,0,0 +2013,4,3,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1435,-2,0,1552,-8,0,0 +2013,8,15,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-2,0,1120,-11,0,0 +2013,4,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1824,11,0,1850,-3,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1053,-6,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,915,4,0,1100,-11,0,0 +2013,8,17,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1126,-5,0,1630,-5,0,0 +2013,6,4,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1102,-2,0,1635,-16,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,2,0,1836,-2,0,0 +2013,6,21,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,16,1,1455,7,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,-9,0,1651,4,0,0 +2013,8,26,1,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1005,26,1,1135,24,1,0 +2013,5,29,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,610,-5,0,745,-23,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-8,0,1229,18,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1425,29,1,1603,30,1,0 +2013,9,28,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,103,1,1650,122,1,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1715,-4,0,1837,-14,0,0 +2013,7,12,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-4,0,1006,-5,0,0 +2013,9,26,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1426,-2,0,1658,-6,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1417,12,0,1555,8,0,0 +2013,5,14,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1930,-2,0,2105,-2,0,0 +2013,8,19,1,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1110,-5,0,1220,-19,0,0 +2013,4,26,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,800,-5,0,832,-3,0,0 +2013,9,5,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,-4,0,1900,-40,0,0 +2013,9,6,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1010,-5,0,1244,-8,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1850,3,0,2045,-6,0,0 +2013,4,30,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1525,8,0,1905,9,0,0 +2013,4,8,1,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1445,-3,0,1753,0,0,0 +2013,6,22,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-9,0,1705,-24,0,0 +2013,9,14,6,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1125,29,1,1400,20,1,0 +2013,7,24,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,710,1,0,725,20,1,0 +2013,8,23,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,625,9,0,940,7,0,0 +2013,4,18,4,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,836,-10,0,1012,-9,0,0 +2013,9,20,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,745,10,0,1030,2,0,0 +2013,5,14,2,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1955,-6,0,2130,-14,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,20,1,1815,1,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2140,26,1,2255,24,1,0 +2013,5,12,7,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1310,-10,0,1510,-10,0,0 +2013,9,25,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,6,0,1155,4,0,0 +2013,8,24,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,0,0,1540,-19,0,0 +2013,9,2,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1815,-4,0,2102,-13,0,0 +2013,7,31,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1502,6,0,1550,14,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1410,23,1,1525,21,1,0 +2013,10,17,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1640,5,0,1955,1,0,0 +2013,7,21,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-4,0,1410,-5,0,0 +2013,6,27,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-7,0,720,-13,0,0 +2013,4,29,1,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1127,-5,0,1340,-17,0,0 +2013,4,12,5,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,0,,1654,0,1,1 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,144,1,805,151,1,0 +2013,9,19,4,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,20,1,1250,16,1,0 +2013,10,26,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1005,0,0,1105,-7,0,0 +2013,4,11,4,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1745,-6,0,1916,-14,0,0 +2013,10,9,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1030,62,1,1115,62,1,0 +2013,8,21,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,643,-2,0,820,-7,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1420,8,0,1531,-7,0,0 +2013,7,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1527,2,0,1644,-10,0,0 +2013,5,14,2,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1100,0,0,1450,-1,0,0 +2013,6,2,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1335,-4,0,1449,-6,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2015,23,1,2240,12,0,0 +2013,6,18,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2000,19,1,2126,33,1,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-1,0,645,-10,0,0 +2013,8,12,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,-4,0,21,-39,0,0 +2013,6,16,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,-2,0,1112,-3,0,0 +2013,10,16,3,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,7,0,2120,-13,0,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,845,0,0,956,-11,0,0 +2013,8,24,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2049,-6,0,2231,-12,0,0 +2013,5,23,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,24,1,1910,27,1,0 +2013,10,1,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1140,-4,0,1343,-6,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2020,10,0,2225,13,0,0 +2013,10,5,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-5,0,848,-12,0,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,0,0,1545,4,0,0 +2013,10,11,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,-2,0,1822,-9,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,713,-1,0,819,-6,0,0 +2013,9,3,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,14,0,1555,1,0,0 +2013,8,22,4,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1740,13,0,2048,4,0,0 +2013,8,24,6,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,5,0,626,-6,0,0 +2013,4,1,1,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,945,13,0,1159,2,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,630,0,0,1125,-10,0,0 +2013,6,11,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,45,1,2121,24,1,0 +2013,7,30,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,1,0,1325,-7,0,0 +2013,8,31,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1515,5,0,1812,0,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-3,0,1006,-30,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2100,-4,0,2337,-20,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,2,0,1926,-8,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1815,109,1,2020,116,1,0 +2013,7,8,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,853,-4,0,1204,-9,0,0 +2013,5,31,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,615,-5,0,900,5,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,0,0,2030,-3,0,0 +2013,7,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-4,0,1138,-12,0,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1931,-7,0,2256,-8,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1335,-3,0,1705,-10,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1215,68,1,1355,80,1,0 +2013,8,30,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,4,0,1221,1,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1150,1,0,1405,-9,0,0 +2013,9,22,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,0,0,735,-11,0,0 +2013,5,26,7,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,935,-7,0,1156,-11,0,0 +2013,7,9,2,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1230,248,1,1401,331,1,0 +2013,9,13,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1021,-1,0,1315,27,1,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1113,16,1,1232,19,1,0 +2013,6,21,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1539,95,1,1817,95,1,0 +2013,10,8,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1110,2,0,1224,11,0,0 +2013,7,30,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-6,0,1907,-10,0,0 +2013,5,27,1,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,800,-9,0,929,-12,0,0 +2013,4,8,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,-7,0,2125,-3,0,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,750,9,0,1015,0,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,831,-5,0,929,2,0,0 +2013,4,27,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1150,-1,0,1750,-9,0,0 +2013,9,29,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1655,0,0,1720,-14,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,33,1,1811,25,1,0 +2013,7,11,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,38,1,915,12,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-7,0,1105,4,0,0 +2013,5,31,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1515,71,1,1627,70,1,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1457,-1,0,1649,2,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,840,10,0,1115,6,0,0 +2013,10,23,3,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-6,0,843,-14,0,0 +2013,6,9,7,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,35,1,35,42,1,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1920,5,0,2053,-7,0,0 +2013,7,1,1,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1410,200,1,1750,209,1,0 +2013,10,9,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,827,-8,0,1019,-11,0,0 +2013,5,24,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1740,1,0,1933,12,0,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,4,0,2349,-5,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1645,-7,0,1833,-9,0,0 +2013,6,6,4,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1335,3,0,1929,12,0,0 +2013,6,6,4,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-7,0,1722,1,0,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,2027,62,1,2352,45,1,0 +2013,7,13,6,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,2125,-5,0,2305,-29,0,0 +2013,6,2,7,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1631,189,1,1835,170,1,0 +2013,10,17,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1129,-6,0,1429,-15,0,0 +2013,6,3,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2148,-4,0,2359,-7,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,-5,0,2054,28,1,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2010,13,0,2055,9,0,0 +2013,8,5,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1415,-4,0,1545,-13,0,0 +2013,8,15,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1159,115,1,1509,108,1,0 +2013,5,29,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1205,7,0,1320,5,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1450,8,0,1744,12,0,0 +2013,5,17,5,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,707,-5,0,1003,-1,0,0 +2013,4,21,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1345,-3,0,1614,-33,0,0 +2013,8,20,2,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-6,0,1233,-4,0,0 +2013,7,8,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-6,0,805,-18,0,0 +2013,6,13,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,730,-5,0,1102,-5,0,0 +2013,4,9,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1200,12,0,1709,83,1,0 +2013,10,15,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,758,-20,0,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,15,1,2100,1,0,0 +2013,10,11,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1440,35,1,1555,26,1,0 +2013,5,23,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1255,-3,0,1505,-14,0,0 +2013,4,29,1,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,910,-3,0,1145,-20,0,0 +2013,7,26,5,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1512,-8,0,1835,-23,0,0 +2013,6,16,7,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,605,-1,0,740,11,0,0 +2013,10,13,7,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,9,0,2054,22,1,0 +2013,9,7,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1405,-9,0,1530,-15,0,0 +2013,7,29,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1424,114,1,2035,93,1,0 +2013,10,24,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-5,0,1810,3,0,0 +2013,9,9,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,15,1,1316,14,0,0 +2013,4,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1642,0,0,2034,1,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1305,-6,0,1440,-3,0,0 +2013,6,11,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1922,56,1,2102,41,1,0 +2013,10,20,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1715,-9,0,1837,-13,0,0 +2013,7,24,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,107,1,1155,97,1,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,955,0,0,1320,-19,0,0 +2013,10,26,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,812,-15,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1835,2,0,2200,-3,0,0 +2013,6,10,1,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1400,102,1,2235,93,1,0 +2013,8,9,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,700,-5,0,807,-8,0,0 +2013,10,23,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,11,0,1815,8,0,0 +2013,4,28,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1730,-5,0,2050,-3,0,0 +2013,8,12,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-2,0,935,-3,0,0 +2013,7,6,6,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,815,10,0,1145,7,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1422,15,1,1620,13,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-2,0,1201,18,1,0 +2013,6,11,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,41,1,2140,2,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,-2,0,1655,-8,0,0 +2013,4,18,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,610,0,,745,0,1,1 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1252,-1,0,1528,11,0,0 +2013,6,2,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1639,-2,0,1800,-20,0,0 +2013,6,20,4,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1459,-2,0,1801,-28,0,0 +2013,9,11,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2105,18,1,2215,2,0,0 +2013,6,6,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1559,-7,0,0 +2013,6,30,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1503,-4,0,1605,-19,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1349,-2,0,1516,16,1,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1815,1,0,2020,12,0,0 +2013,4,24,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1742,-5,0,1850,9,0,0 +2013,5,24,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1838,-6,0,1953,-8,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-4,0,1911,19,1,0 +2013,4,22,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-3,0,740,8,0,0 +2013,4,24,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1827,-9,0,2100,-11,0,0 +2013,9,30,1,WN,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1645,-3,0,1905,-5,0,0 +2013,4,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,837,0,0,940,7,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,6,0,1620,-1,0,0 +2013,10,25,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,940,15,1,1514,-1,0,0 +2013,5,26,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-5,0,606,0,0,0 +2013,4,21,7,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1319,6,0,1610,-6,0,0 +2013,7,21,7,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2025,29,1,2250,12,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1920,25,1,2105,0,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,825,-3,0,1005,-9,0,0 +2013,5,18,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1130,0,0,1400,-29,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,600,-4,0,915,-7,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2115,-5,0,2250,-14,0,0 +2013,10,25,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1845,-11,0,2138,-28,0,0 +2013,10,15,2,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,812,-3,0,0 +2013,9,2,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-2,0,1204,-3,0,0 +2013,7,16,2,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1930,96,1,2142,89,1,0 +2013,7,13,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,-11,0,1948,-11,0,0 +2013,10,25,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1055,3,0,1210,3,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,545,6,0,933,0,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1955,-4,0,2200,-6,0,0 +2013,7,1,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1157,-11,0,1446,-13,0,0 +2013,5,17,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,30,1,1450,16,1,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,700,-6,0,1040,-12,0,0 +2013,6,19,3,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-2,0,1455,3,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1120,-4,0,1355,-20,0,0 +2013,4,8,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,545,-3,0,710,-11,0,0 +2013,6,1,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,711,-7,0,857,-18,0,0 +2013,7,15,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1335,-9,0,1510,-10,0,0 +2013,10,30,3,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-11,0,825,5,0,0 +2013,5,5,7,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-1,0,845,-3,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2221,-6,0,56,-10,0,0 +2013,6,30,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,29,1,2020,39,1,0 +2013,8,31,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-3,0,1605,-2,0,0 +2013,6,6,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-4,0,2210,9,0,0 +2013,6,23,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1327,81,1,1500,95,1,0 +2013,5,1,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,545,-3,0,905,-25,0,0 +2013,7,24,3,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1415,-8,0,1650,-7,0,0 +2013,6,12,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,4,0,1534,13,0,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,930,-7,0,1150,-18,0,0 +2013,4,10,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,-1,0,945,-9,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,9,0,1403,4,0,0 +2013,4,21,7,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,554,-5,0,739,-18,0,0 +2013,6,6,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-9,0,1633,-7,0,0 +2013,6,17,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,81,1,1815,44,1,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1100,1,0,1200,-2,0,0 +2013,5,6,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,851,-5,0,1153,-7,0,0 +2013,9,12,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,33,1,1720,0,1,1 +2013,4,25,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1027,-5,0,1126,-4,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1030,0,,1350,0,1,1 +2013,4,21,7,FL,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,2103,25,1,2259,18,1,0 +2013,4,20,6,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1840,85,1,2129,52,1,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1245,56,1,1807,46,1,0 +2013,8,15,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,31,1,2215,31,1,0 +2013,6,30,7,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,13,0,1105,11,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,810,-3,0,925,-8,0,0 +2013,9,5,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,11,0,1455,5,0,0 +2013,8,20,2,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,45,1,1110,53,1,0 +2013,4,26,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1950,15,1,2105,14,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1346,-3,0,1455,3,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,20,1,1310,6,0,0 +2013,9,4,3,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1825,12,0,2140,8,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1900,20,1,2150,55,1,0 +2013,9,27,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1000,-6,0,1110,-28,0,0 +2013,6,24,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2155,-1,0,2300,-2,0,0 +2013,7,29,1,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,3,0,1740,-11,0,0 +2013,4,22,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1000,0,0,1715,-16,0,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,-7,0,1355,-23,0,0 +2013,5,16,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,1,0,2200,-30,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1915,10,0,2148,11,0,0 +2013,7,10,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1429,-3,0,1714,7,0,0 +2013,6,27,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1334,-14,0,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1721,5,0,2001,3,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,1,0,1305,-5,0,0 +2013,4,26,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1915,11,0,2244,10,0,0 +2013,6,11,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-1,0,1919,5,0,0 +2013,10,20,7,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1148,-7,0,1343,-7,0,0 +2013,7,17,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,150,1,2003,147,1,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-1,0,1055,-5,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,-6,0,19,-2,0,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1555,-2,0,1646,6,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,28,1,1045,27,1,0 +2013,6,25,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,820,-11,0,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,56,1,2045,47,1,0 +2013,5,24,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,955,-4,0,1215,-3,0,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1256,-11,0,1555,-19,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,18,1,1110,8,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-1,0,1305,-2,0,0 +2013,8,1,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1641,43,1,1941,37,1,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-3,0,2044,-23,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,3,0,1345,19,1,0 +2013,6,21,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-1,0,745,-16,0,0 +2013,5,2,4,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1520,-11,0,1821,-11,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1545,-1,0,1829,-4,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2147,-2,0,14,-7,0,0 +2013,8,6,2,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1745,-1,0,1911,8,0,0 +2013,7,19,5,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1425,-3,0,1603,-22,0,0 +2013,10,27,7,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1740,7,0,1840,18,1,0 +2013,4,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1730,1,0,2016,14,0,0 +2013,5,17,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,-2,0,2030,-22,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1800,-3,0,2054,-11,0,0 +2013,7,20,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1840,-5,0,2010,-30,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-2,0,2120,-6,0,0 +2013,5,5,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,146,1,1207,178,1,0 +2013,6,27,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1030,1,0,1335,8,0,0 +2013,6,19,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-2,0,813,-15,0,0 +2013,10,31,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-4,0,1650,2,0,0 +2013,5,14,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,-1,0,2128,0,0,0 +2013,5,5,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-5,0,1232,-15,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,20,1,2134,37,1,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1350,0,0,1620,7,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1251,-8,0,1552,-19,0,0 +2013,7,17,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,0,0,1039,10,0,0 +2013,6,3,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-4,0,2145,-9,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,10,0,1940,-8,0,0 +2013,4,1,1,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,634,-6,0,951,-11,0,0 +2013,9,19,4,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-5,0,1008,-26,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,725,15,1,804,8,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,625,-4,0,1120,7,0,0 +2013,10,22,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,9,0,1910,-1,0,0 +2013,5,13,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1956,-9,0,2154,-16,0,0 +2013,6,17,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1356,-7,0,1436,-12,0,0 +2013,6,13,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1840,27,1,1945,31,1,0 +2013,7,28,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1240,-3,0,1616,-12,0,0 +2013,10,30,3,US,11278,Ronald Reagan Washington National,Washington,DC,14307,Theodore Francis Green State,Providence,RI,2205,-5,0,2318,-4,0,0 +2013,4,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1015,0,0,1205,-23,0,0 +2013,8,23,5,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,600,-5,0,840,-13,0,0 +2013,7,14,7,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,14,0,2354,-28,0,0 +2013,10,26,6,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,5,0,1521,2,0,0 +2013,6,15,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1745,12,0,1905,-4,0,0 +2013,7,25,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,800,-4,0,1040,-8,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,700,63,1,858,68,1,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1935,0,0,2209,-16,0,0 +2013,7,5,5,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-2,0,945,-13,0,0 +2013,8,10,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1400,7,0,1710,-3,0,0 +2013,5,18,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1707,-4,0,1850,-7,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-2,0,1850,9,0,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1910,-1,0,2129,-4,0,0 +2013,10,29,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1150,2,0,1305,0,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1755,56,1,2035,51,1,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2045,85,1,2215,77,1,0 +2013,6,10,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,845,15,1,1036,11,0,0 +2013,10,20,7,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,3,0,803,9,0,0 +2013,9,17,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1400,-8,0,1520,-19,0,0 +2013,5,26,7,UA,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-3,0,856,-16,0,0 +2013,6,1,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1008,-2,0,1149,-8,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,1,0,2030,-4,0,0 +2013,5,26,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-13,0,1424,-18,0,0 +2013,5,8,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1915,75,1,2125,84,1,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,955,-2,0,1153,-20,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1455,5,0,1745,4,0,0 +2013,4,9,2,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,959,9,0,1600,34,1,0 +2013,4,9,2,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-3,0,920,-7,0,0 +2013,8,12,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,11,0,1310,0,0,0 +2013,7,3,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-8,0,1245,-11,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1236,4,0,1516,-1,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1810,-1,0,2016,-7,0,0 +2013,8,10,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1130,-3,0,1230,-5,0,0 +2013,7,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1545,21,1,1813,0,0,0 +2013,4,22,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1756,0,,1930,0,1,1 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1041,-4,0,1203,-21,0,0 +2013,4,3,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-8,0,845,-6,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1320,5,0,1610,20,1,0 +2013,10,7,1,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,2,0,1305,3,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2008,-5,0,2133,-13,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14524,Richmond International,Richmond,VA,750,-1,0,1135,-10,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2205,-8,0,2355,-24,0,0 +2013,10,19,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1230,1,0,1330,-2,0,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,905,14,0,1214,-3,0,0 +2013,4,2,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,16,1,1045,19,1,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,18,1,1945,13,0,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1100,0,0,1650,2,0,0 +2013,5,23,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,-1,0,930,11,0,0 +2013,6,13,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-7,0,1451,-6,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1309,31,1,1648,25,1,0 +2013,8,3,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,4,0,1140,-4,0,0 +2013,8,11,7,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1115,-1,0,1228,1,0,0 +2013,5,29,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1547,3,0,1909,25,1,0 +2013,6,12,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,2,0,1921,-9,0,0 +2013,8,25,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1147,-12,0,0 +2013,10,30,3,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1905,-6,0,2159,-9,0,0 +2013,5,23,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,-1,0,1630,18,1,0 +2013,10,8,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1100,-1,0,1200,-5,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,2,0,1558,-3,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1525,0,0,1750,-15,0,0 +2013,9,8,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,929,-3,0,1220,-31,0,0 +2013,5,14,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,820,-3,0,1035,-13,0,0 +2013,7,13,6,DL,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1950,-5,0,2125,-22,0,0 +2013,10,8,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-7,0,1224,-12,0,0 +2013,5,16,4,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1025,0,0,1245,0,0,0 +2013,6,2,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1315,41,1,1435,30,1,0 +2013,8,28,3,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1553,20,1,2140,12,0,0 +2013,6,19,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,535,-7,0,857,-13,0,0 +2013,10,20,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-9,0,1357,-27,0,0 +2013,9,11,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1430,-4,0,1715,-9,0,0 +2013,7,22,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,941,3,0,1129,-1,0,0 +2013,4,5,5,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,905,-3,0,1144,-33,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,0,0,2055,-5,0,0 +2013,7,28,7,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,819,0,0,0 +2013,5,28,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1430,6,0,1545,6,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1414,4,0,1535,-14,0,0 +2013,8,12,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,-2,0,1904,-11,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-2,0,1500,-31,0,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,13,0,1735,10,0,0 +2013,4,7,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1625,-1,0,1803,-8,0,0 +2013,4,18,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,186,1,835,188,1,0 +2013,8,20,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1707,-5,0,1840,7,0,0 +2013,5,4,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,704,11,0,1208,-3,0,0 +2013,6,8,6,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1945,121,1,2100,114,1,0 +2013,9,12,4,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,923,-4,0,1119,-3,0,0 +2013,10,7,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1632,-3,0,2002,-13,0,0 +2013,4,13,6,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1824,-3,0,2000,-18,0,0 +2013,10,23,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,25,-1,0,806,-17,0,0 +2013,4,20,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1227,29,1,1550,9,0,0 +2013,10,19,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1454,1,0,1959,-17,0,0 +2013,5,12,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1300,-6,0,1415,8,0,0 +2013,4,27,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,7,0,1825,-7,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1220,31,1,1335,18,1,0 +2013,7,2,2,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1150,4,0,1443,9,0,0 +2013,4,25,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-1,0,1151,21,1,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,730,-5,0,911,5,0,0 +2013,9,18,3,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-5,0,610,-17,0,0 +2013,10,23,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,910,-12,0,0 +2013,6,29,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,1056,35,1,1427,30,1,0 +2013,9,19,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1725,-9,0,1845,-4,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1630,2,0,1830,-16,0,0 +2013,10,29,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2045,0,0,2205,13,0,0 +2013,8,22,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1821,159,1,2122,167,1,0 +2013,6,7,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1820,23,1,2200,28,1,0 +2013,5,23,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,-4,0,2359,-19,0,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1050,-5,0,1457,-14,0,0 +2013,7,24,3,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1800,13,0,1920,14,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1955,7,0,2105,5,0,0 +2013,9,5,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,-4,0,1250,-33,0,0 +2013,9,26,4,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1505,1,0,1610,-3,0,0 +2013,9,15,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,6,0,2035,4,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2010,99,1,2135,92,1,0 +2013,4,28,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1144,-6,0,1334,-10,0,0 +2013,7,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1940,37,1,2235,41,1,0 +2013,5,8,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-3,0,840,-8,0,0 +2013,10,5,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1453,-4,0,1606,-18,0,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1655,0,0,1800,-6,0,0 +2013,9,16,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1530,13,0,1701,-3,0,0 +2013,6,28,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2000,235,1,2126,221,1,0 +2013,10,14,1,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1110,2,0,1648,-18,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1555,4,0,1710,6,0,0 +2013,5,27,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1140,4,0,1254,-7,0,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1115,18,1,1740,19,1,0 +2013,6,27,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1850,63,1,1940,59,1,0 +2013,5,15,3,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,816,-6,0,929,-9,0,0 +2013,9,20,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1245,0,,1411,0,1,1 +2013,7,21,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-9,0,1235,-19,0,0 +2013,5,2,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-5,0,1230,-26,0,0 +2013,8,20,2,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1057,-8,0,1420,-12,0,0 +2013,9,20,5,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,805,-5,0,1101,-37,0,0 +2013,7,8,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1625,27,1,1720,19,1,0 +2013,4,5,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1055,43,1,1255,34,1,0 +2013,10,5,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1600,-7,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2100,0,,2235,0,1,1 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,105,-8,0,635,-19,0,0 +2013,8,31,6,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,2,0,1330,0,0,0 +2013,10,21,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-4,0,2210,-20,0,0 +2013,6,26,3,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,2,0,1839,41,1,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,704,-2,0,1036,6,0,0 +2013,7,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,-10,0,1028,-17,0,0 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1515,-6,0,1622,9,0,0 +2013,9,29,7,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1430,8,0,1630,10,0,0 +2013,4,21,7,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1328,11,0,1819,-6,0,0 +2013,9,12,4,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-2,0,815,-9,0,0 +2013,4,7,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2130,-1,0,2230,-9,0,0 +2013,9,23,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,905,19,1,1424,4,0,0 +2013,4,23,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1530,-4,0,1715,14,0,0 +2013,8,17,6,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-5,0,1039,-25,0,0 +2013,6,20,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,810,1,0,930,0,0,0 +2013,7,27,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1335,152,1,1450,154,1,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-2,0,2140,3,0,0 +2013,7,22,1,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-3,0,858,-6,0,0 +2013,5,17,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1700,5,0,2044,-18,0,0 +2013,7,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,835,-5,0,937,-20,0,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1850,9,0,2250,-5,0,0 +2013,8,6,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,810,-7,0,950,-23,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,22,1,1620,6,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2100,26,1,2350,17,1,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2225,1,0,2355,-10,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-3,0,1615,4,0,0 +2013,5,21,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-3,0,850,-4,0,0 +2013,8,17,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,810,-2,0,925,-5,0,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,3,0,1209,-5,0,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2215,-14,0,16,-17,0,0 +2013,10,12,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1540,-5,0,1815,-6,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,9,0,1155,0,0,0 +2013,9,17,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,850,-2,0,1050,-10,0,0 +2013,4,5,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1711,-4,0,1839,-23,0,0 +2013,5,30,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,817,-8,0,951,-23,0,0 +2013,4,5,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1003,-3,0,1221,-16,0,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1320,14,0,1430,22,1,0 +2013,9,15,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,10,0,1640,-15,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1814,2,0,2013,5,0,0 +2013,9,29,7,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,1,0,2158,-5,0,0 +2013,8,25,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1543,8,0,1909,-34,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1956,10,0,2149,-5,0,0 +2013,7,8,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,-5,0,1240,-5,0,0 +2013,7,20,6,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1452,0,,1832,0,1,1 +2013,10,30,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1305,-5,0,1410,31,1,0 +2013,6,4,2,B6,10299,Ted Stevens Anchorage International,Anchorage,AK,12954,Long Beach Airport,Long Beach,CA,105,-4,0,723,-11,0,0 +2013,10,2,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-1,0,1700,-16,0,0 +2013,9,19,4,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,0,0,1900,5,0,0 +2013,8,20,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-3,0,2142,5,0,0 +2013,8,4,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1300,1,0,1610,-4,0,0 +2013,4,9,2,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,2203,-5,0,2331,-14,0,0 +2013,8,19,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1625,10,0,1805,-6,0,0 +2013,9,13,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1130,134,1,1222,131,1,0 +2013,8,13,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1137,55,1,1429,33,1,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2150,20,1,20,15,1,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1340,-2,0,1450,-9,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,-3,0,2220,-2,0,0 +2013,5,15,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,-4,0,1655,-4,0,0 +2013,4,9,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1950,139,1,2201,133,1,0 +2013,5,3,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1645,1,0,1856,-15,0,0 +2013,8,10,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1445,5,0,1735,2,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,24,1,1805,14,0,0 +2013,4,25,4,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1625,5,0,1740,5,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1720,61,1,1815,61,1,0 +2013,5,21,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2026,-2,0,2147,-7,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1910,-1,0,2057,-3,0,0 +2013,7,2,2,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1705,5,0,1835,-10,0,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-1,0,1743,-11,0,0 +2013,7,15,1,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1656,-5,0,1852,0,0,0 +2013,8,17,6,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1743,10,0,2301,20,1,0 +2013,6,29,6,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1619,108,1,1834,110,1,0 +2013,10,31,4,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-12,0,1355,-6,0,0 +2013,7,31,3,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1715,27,1,1913,33,1,0 +2013,9,19,4,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1540,17,1,1720,8,0,0 +2013,7,7,7,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1455,30,1,1710,8,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-4,0,2131,-10,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1515,4,0,1647,-16,0,0 +2013,8,14,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1006,-9,0,0 +2013,8,8,4,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1310,19,1,1630,19,1,0 +2013,7,25,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,725,-28,0,0 +2013,6,4,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1637,-7,0,1938,-23,0,0 +2013,5,29,3,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,714,-4,0,1050,18,1,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,9,0,2215,12,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1357,-3,0,1532,-10,0,0 +2013,5,31,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1730,13,0,1935,2,0,0 +2013,8,16,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1338,4,0,1500,-2,0,0 +2013,10,24,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1808,10,0,2029,3,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,-2,0,103,-12,0,0 +2013,8,21,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1210,27,1,1306,13,0,0 +2013,6,1,6,B6,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,800,-8,0,1106,-28,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1820,16,1,1940,14,0,0 +2013,4,23,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1400,-4,0,1525,0,0,0 +2013,4,30,2,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,53,1,1910,32,1,0 +2013,4,3,3,VX,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1855,0,0,2159,-15,0,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1214,-2,0,1422,-2,0,0 +2013,8,17,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,850,46,1,955,70,1,0 +2013,8,11,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-1,0,1635,-9,0,0 +2013,7,24,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1625,-4,0,2230,-13,0,0 +2013,8,18,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1918,15,1,2105,14,0,0 +2013,5,8,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,-2,0,2220,-3,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,0,0,2222,3,0,0 +2013,5,13,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,630,2,0,810,-2,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1320,0,0,1708,-16,0,0 +2013,6,13,4,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1149,-1,0,1243,1,0,0 +2013,10,5,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1659,3,0,2213,-12,0,0 +2013,5,23,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1957,0,,2107,0,1,1 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,0,0,2247,-19,0,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1630,-4,0,2020,-1,0,0 +2013,8,7,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1708,66,1,1925,56,1,0 +2013,7,25,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1505,-4,0,1755,6,0,0 +2013,4,20,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1125,5,0,1521,-17,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,-4,0,2255,3,0,0 +2013,9,27,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,8,0,808,1,0,0 +2013,5,19,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,66,1,2110,62,1,0 +2013,5,9,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-4,0,1216,-28,0,0 +2013,8,13,2,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,-5,0,2042,-16,0,0 +2013,9,17,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,27,1,1440,14,0,0 +2013,9,14,6,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1009,-5,0,1710,-16,0,0 +2013,7,18,4,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-7,0,2103,-9,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,814,0,0,1425,-13,0,0 +2013,4,27,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1130,-6,0,1432,-23,0,0 +2013,4,5,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,-2,0,730,0,0,0 +2013,10,16,3,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,-4,0,1840,-16,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1620,-2,0,1818,11,0,0 +2013,6,30,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,2050,-3,0,2309,-11,0,0 +2013,9,22,7,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-4,0,1511,-9,0,0 +2013,9,30,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,12,0,2140,-5,0,0 +2013,7,21,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,0,0,1940,8,0,0 +2013,8,12,1,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,46,1,1915,37,1,0 +2013,5,4,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1550,-3,0,1800,-20,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1555,-2,0,1650,-8,0,0 +2013,6,22,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,2,0,1131,6,0,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,63,1,2308,64,1,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1925,13,0,2230,21,1,0 +2013,9,14,6,WN,12191,William P Hobby,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,0,0,2255,4,0,0 +2013,9,22,7,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,605,-9,0,741,-20,0,0 +2013,9,22,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1810,0,0,1845,-1,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1900,9,0,2000,8,0,0 +2013,6,27,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1500,37,1,1615,30,1,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-3,0,949,4,0,0 +2013,9,3,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1450,9,0,1615,5,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1705,8,0,2230,7,0,0 +2013,10,10,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,850,-8,0,911,-20,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,1,0,1335,-2,0,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,951,-8,0,1335,-18,0,0 +2013,6,25,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-6,0,1311,1,0,0 +2013,4,18,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,42,1,1225,43,1,0 +2013,5,15,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1149,-3,0,1237,-11,0,0 +2013,8,1,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,126,1,2118,122,1,0 +2013,10,5,6,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,659,-4,0,1011,-36,0,0 +2013,8,23,5,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,710,-7,0,820,-13,0,0 +2013,9,13,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1049,-8,0,1209,-20,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,845,7,0,950,6,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1927,4,0,2118,-5,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2105,4,0,2225,-10,0,0 +2013,4,22,1,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2140,0,0,540,-16,0,0 +2013,7,16,2,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1708,-13,0,1810,-4,0,0 +2013,6,13,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,905,-3,0,1249,-3,0,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,1,0,1909,-2,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,-9,0,2132,-3,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,13,0,959,14,0,0 +2013,4,14,7,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1840,3,0,2154,-17,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1729,-3,0,1857,-11,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1005,-1,0,1438,9,0,0 +2013,6,7,5,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1030,25,1,1835,74,1,0 +2013,10,2,3,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1615,-5,0,1815,-4,0,0 +2013,9,12,4,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1728,7,0,1807,6,0,0 +2013,8,10,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,1,0,1610,-3,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,725,41,1,903,70,1,0 +2013,8,10,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,-1,0,1220,-4,0,0 +2013,4,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-3,0,1500,-3,0,0 +2013,10,6,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1115,-11,0,1316,-18,0,0 +2013,4,3,3,FL,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,1146,2,0,1404,-5,0,0 +2013,5,8,3,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,2215,45,1,615,31,1,0 +2013,9,15,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,942,0,0,1221,8,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,640,-5,0,1025,61,1,0 +2013,10,26,6,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,2,0,1605,5,0,0 +2013,7,25,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,741,-3,0,0 +2013,7,25,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,19,1,1845,16,1,0 +2013,6,25,2,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1415,0,0,1544,0,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,-2,0,1110,-14,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1310,-4,0,1400,-2,0,0 +2013,8,17,6,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1038,6,0,1144,1,0,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1447,-3,0,1602,-19,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1335,29,1,1620,14,0,0 +2013,10,10,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1040,2,0,1140,2,0,0 +2013,9,14,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,835,12,0,1235,15,1,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1700,0,0,2039,3,0,0 +2013,8,3,6,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1510,-15,0,1551,-18,0,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1540,35,1,1712,9,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1840,-1,0,2111,-21,0,0 +2013,4,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,920,18,1,1740,29,1,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,807,0,0,1609,3,0,0 +2013,10,25,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,33,1,908,19,1,0 +2013,7,21,7,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1555,3,0,1840,-20,0,0 +2013,7,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,5,0,1333,5,0,0 +2013,5,15,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1229,1,0,0 +2013,8,2,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1605,114,1,1720,123,1,0 +2013,8,31,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-6,0,1250,-7,0,0 +2013,5,6,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,755,-2,0,1050,-16,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1230,3,0,1355,2,0,0 +2013,9,11,3,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-10,0,1205,-21,0,0 +2013,6,7,5,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1435,13,0,1710,-17,0,0 +2013,8,23,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,745,-8,0,830,-3,0,0 +2013,7,26,5,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,-2,0,1303,-8,0,0 +2013,7,20,6,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,2010,30,1,2310,32,1,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,826,-1,0,1109,0,0,0 +2013,4,17,3,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1615,0,0,1806,15,1,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1255,35,1,1405,36,1,0 +2013,10,14,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,836,-3,0,1004,17,1,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1750,3,0,2000,-16,0,0 +2013,10,15,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1200,0,0,1305,1,0,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,825,9,0,1010,-3,0,0 +2013,8,21,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1545,-3,0,1756,-1,0,0 +2013,10,21,1,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1950,115,1,2140,93,1,0 +2013,9,25,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1820,10,0,1915,7,0,0 +2013,8,5,1,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,-5,0,1338,1,0,0 +2013,4,21,7,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1001,-6,0,1129,-18,0,0 +2013,7,20,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,715,-1,0,909,-2,0,0 +2013,5,8,3,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,618,-3,0,752,-15,0,0 +2013,5,6,1,9E,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1708,12,0,2120,-4,0,0 +2013,10,20,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1915,-3,0,2026,-15,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1546,42,1,1745,49,1,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1400,22,1,1544,10,0,0 +2013,4,1,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,4,0,1550,-10,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1912,-2,0,2030,-9,0,0 +2013,10,20,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,4,0,1329,4,0,0 +2013,5,14,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1605,-8,0,1656,-13,0,0 +2013,8,12,1,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-3,0,710,-8,0,0 +2013,9,9,1,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1335,-1,0,1525,-37,0,0 +2013,10,10,4,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1046,2,0,1210,-5,0,0 +2013,5,4,6,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,830,-1,0,940,5,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,602,-5,0,906,-15,0,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,732,-3,0,1105,-16,0,0 +2013,6,11,2,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,25,1,551,41,1,0 +2013,9,4,3,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,-13,0,2035,-28,0,0 +2013,8,5,1,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,-9,0,857,8,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1557,-8,0,1921,-5,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,8,0,1345,-4,0,0 +2013,8,19,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,645,-1,0,752,-2,0,0 +2013,4,4,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,-8,0,630,-23,0,0 +2013,7,22,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-3,0,1750,2,0,0 +2013,4,1,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,-1,0,1335,-12,0,0 +2013,6,17,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,24,1,1115,-2,0,0 +2013,5,31,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2130,-3,0,558,-15,0,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,-5,0,1028,-6,0,0 +2013,9,27,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,900,-2,0,1020,-5,0,0 +2013,5,8,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1405,-4,0,2213,12,0,0 +2013,9,19,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1325,19,1,1450,43,1,0 +2013,10,27,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-5,0,1255,-12,0,0 +2013,5,15,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,35,1,1545,44,1,0 +2013,4,1,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1200,-5,0,1330,-4,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-11,0,1949,5,0,0 +2013,5,4,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1616,-9,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1135,-1,0,1300,23,1,0 +2013,6,7,5,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,915,-5,0,1055,-6,0,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1730,3,0,2050,-9,0,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1925,-3,0,2115,-14,0,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,39,1,1420,31,1,0 +2013,6,6,4,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2359,6,0,601,0,0,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1805,102,1,2033,61,1,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,905,22,1,1216,7,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,4,0,1847,-17,0,0 +2013,8,26,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,95,1,1751,108,1,0 +2013,10,18,5,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1052,-5,0,1318,-12,0,0 +2013,8,11,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1826,-1,0,2027,-28,0,0 +2013,6,15,6,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,-4,0,550,-11,0,0 +2013,5,27,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1345,-5,0,1512,-18,0,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1042,41,1,1618,23,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1945,-3,0,2155,-16,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1554,-7,0,1832,-32,0,0 +2013,8,24,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,828,-15,0,0 +2013,4,2,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-3,0,847,-8,0,0 +2013,6,9,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,700,-4,0,820,3,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1555,1,0,1820,5,0,0 +2013,8,21,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1550,-7,0,1709,-11,0,0 +2013,10,8,2,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,1,0,1501,-8,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1535,-2,0,1817,-18,0,0 +2013,4,12,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2159,22,1,2254,17,1,0 +2013,10,5,6,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,15,1,2040,0,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,905,8,0,1113,3,0,0 +2013,10,1,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1958,-4,0,2105,-16,0,0 +2013,8,28,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1750,-9,0,1914,-10,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1335,20,1,1725,26,1,0 +2013,6,7,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2140,20,1,2255,22,1,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1735,5,0,2015,3,0,0 +2013,6,24,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1820,225,1,2030,223,1,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,-1,0,1705,6,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-4,0,757,7,0,0 +2013,5,13,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,727,0,0,904,21,1,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,-4,0,2127,-7,0,0 +2013,4,3,3,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1810,-1,0,2107,-16,0,0 +2013,9,26,4,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,930,-20,0,0 +2013,10,6,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1240,10,0,1405,2,0,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,96,1,1850,76,1,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1130,-1,0,1500,-5,0,0 +2013,8,6,2,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-4,0,810,-1,0,0 +2013,5,12,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,0,0,2054,22,1,0 +2013,10,31,4,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1650,13,0,1815,26,1,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,3,0,1544,18,1,0 +2013,4,22,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1723,78,1,2004,78,1,0 +2013,4,23,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,700,-2,0,735,-15,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1631,-3,0,1639,-3,0,0 +2013,6,14,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,0,0,1030,-7,0,0 +2013,4,8,1,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,2125,53,1,55,35,1,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,940,-5,0,1158,-2,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,-3,0,834,-5,0,0 +2013,9,10,2,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-5,0,1919,-14,0,0 +2013,10,29,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,-3,0,1230,4,0,0 +2013,8,24,6,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,831,0,0,1004,2,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1419,7,0,1625,4,0,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1305,0,0,1410,-7,0,0 +2013,10,22,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-4,0,835,-5,0,0 +2013,5,19,7,YV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1654,-4,0,1759,-16,0,0 +2013,5,30,4,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2030,74,1,2217,53,1,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1745,24,1,2225,-4,0,0 +2013,8,10,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2130,-9,0,2328,-5,0,0 +2013,7,7,7,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1215,93,1,2003,78,1,0 +2013,9,6,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-6,0,1100,-13,0,0 +2013,10,27,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1825,3,0,1850,14,0,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,35,1,1835,26,1,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,11,0,2050,-24,0,0 +2013,9,4,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1950,-4,0,2055,-2,0,0 +2013,10,23,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1725,-2,0,1855,0,0,0 +2013,10,9,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-5,0,1755,-10,0,0 +2013,10,6,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,920,-4,0,1055,-15,0,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,0,0,1730,-2,0,0 +2013,10,16,3,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1315,120,1,1355,136,1,0 +2013,8,28,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2018,-4,0,2123,-20,0,0 +2013,4,20,6,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-8,0,1054,20,1,0 +2013,8,18,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1353,-7,0,1541,-1,0,0 +2013,8,19,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-3,0,724,-24,0,0 +2013,8,14,3,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-4,0,901,-27,0,0 +2013,9,4,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-10,0,2056,-18,0,0 +2013,9,29,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1830,-2,0,2105,5,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,907,-9,0,1254,-22,0,0 +2013,6,18,2,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,635,-2,0,755,-17,0,0 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,-1,0,2320,-2,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1818,17,1,2051,20,1,0 +2013,10,10,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1640,-1,0,1955,-10,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,5,0,1855,7,0,0 +2013,7,29,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1305,-6,0,1616,-3,0,0 +2013,8,4,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1450,12,0,1634,3,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,841,31,1,1108,9,0,0 +2013,9,3,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,-3,0,910,18,1,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,941,-6,0,1122,-12,0,0 +2013,8,31,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1330,25,1,1445,19,1,0 +2013,5,20,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1705,1,0,1805,-4,0,0 +2013,8,8,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,29,1,2115,19,1,0 +2013,4,5,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,29,1,1620,20,1,0 +2013,8,1,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1355,24,1,1515,26,1,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,6,0,1412,2,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1835,46,1,1940,80,1,0 +2013,6,30,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,-1,0,1945,-7,0,0 +2013,10,13,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,815,8,0,1027,-6,0,0 +2013,4,5,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,-6,0,1718,-9,0,0 +2013,4,30,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,605,-1,0,700,-14,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,6,0,1805,1,0,0 +2013,9,25,3,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1345,-8,0,1436,-18,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1235,-3,0,1402,-3,0,0 +2013,4,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1345,83,1,1500,78,1,0 +2013,10,15,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,846,-6,0,1010,-20,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,-6,0,2210,3,0,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2056,3,0,2226,-5,0,0 +2013,4,30,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-8,0,1343,14,0,0 +2013,7,26,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,95,1,1030,102,1,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,77,1,1935,69,1,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2204,2,0,2256,-3,0,0 +2013,7,11,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1611,-5,0,1940,-9,0,0 +2013,4,27,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,951,-6,0,1612,-13,0,0 +2013,10,24,4,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-1,0,1820,3,0,0 +2013,5,1,3,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1130,0,0,1440,3,0,0 +2013,8,7,3,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1545,37,1,1929,30,1,0 +2013,5,7,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1240,3,0,1525,-6,0,0 +2013,6,25,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,740,-2,0,840,-7,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,725,-1,0,848,-12,0,0 +2013,4,28,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,844,-10,0,907,-6,0,0 +2013,7,14,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,814,148,1,954,129,1,0 +2013,8,12,1,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,30,-2,0,602,-17,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1715,0,0,5,-2,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1735,-3,0,1935,25,1,0 +2013,4,4,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-3,0,1641,32,1,0 +2013,7,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,940,17,1,1257,13,0,0 +2013,4,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,2,0,1130,-2,0,0 +2013,7,21,7,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,-2,0,1320,-13,0,0 +2013,10,8,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1905,-10,0,2028,-13,0,0 +2013,9,19,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,715,0,0,840,-1,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1315,-7,0,1429,-16,0,0 +2013,10,19,6,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1520,23,1,1725,15,1,0 +2013,8,18,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1016,-1,0,1149,-13,0,0 +2013,4,14,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1346,3,0,1421,5,0,0 +2013,4,8,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,2100,-6,0,2225,-18,0,0 +2013,8,26,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-13,0,1236,5,0,0 +2013,8,14,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,1,0,2135,-8,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1120,59,1,1250,52,1,0 +2013,5,20,1,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,-3,0,845,-18,0,0 +2013,10,12,6,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,805,-5,0,1041,30,1,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-2,0,40,-7,0,0 +2013,7,25,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,-4,0,1005,6,0,0 +2013,8,26,1,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,-8,0,2342,-8,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,-2,0,1655,-16,0,0 +2013,6,3,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,0,0,2113,-8,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,929,6,0,1205,11,0,0 +2013,5,15,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,8,0,1610,9,0,0 +2013,10,16,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1440,24,1,2000,14,0,0 +2013,4,18,4,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1750,7,0,2115,2,0,0 +2013,10,13,7,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,-7,0,814,-18,0,0 +2013,5,23,4,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1446,-1,0,1654,-15,0,0 +2013,4,22,1,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1314,141,1,1440,140,1,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,955,63,1,1058,47,1,0 +2013,10,17,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,852,-6,0,1030,-4,0,0 +2013,5,17,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,-2,0,2035,-3,0,0 +2013,7,13,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1025,5,0,1135,0,0,0 +2013,7,19,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1310,-6,0,1504,-1,0,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1015,9,0,1230,-8,0,0 +2013,6,30,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-12,0,1235,-19,0,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1537,-3,0,1734,-18,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,-2,0,1200,-2,0,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-7,0,1612,13,0,0 +2013,10,14,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1125,1,0,1225,-5,0,0 +2013,4,7,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1735,-8,0,2109,-22,0,0 +2013,8,16,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1032,1,0,1232,-2,0,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,2130,-4,0,2311,-11,0,0 +2013,7,6,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-1,0,1543,1,0,0 +2013,8,18,7,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1034,-10,0,1310,-13,0,0 +2013,10,27,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,0,0,1625,-9,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2135,61,1,5,43,1,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,735,-3,0,1015,-11,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1200,-2,0,1501,-10,0,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,119,1,710,107,1,0 +2013,6,14,5,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-3,0,1405,-17,0,0 +2013,9,3,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,1105,-31,0,0 +2013,6,23,7,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1700,-7,0,2000,-15,0,0 +2013,8,29,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-3,0,949,1,0,0 +2013,10,24,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-8,0,1229,-20,0,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1359,5,0,1735,-3,0,0 +2013,10,20,7,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,600,5,0,728,-13,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1525,-4,0,1655,-8,0,0 +2013,9,26,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,-6,0,1705,-23,0,0 +2013,4,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,805,-5,0,1115,-9,0,0 +2013,7,17,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,0,,817,0,1,1 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1627,2,0,1816,10,0,0 +2013,9,5,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1555,4,0,1805,-18,0,0 +2013,7,16,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,99,1,1309,97,1,0 +2013,8,23,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,0,0,910,-1,0,0 +2013,6,20,4,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1608,-8,0,1825,-16,0,0 +2013,8,29,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,855,-1,0,1225,11,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1945,54,1,2258,43,1,0 +2013,7,24,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1135,0,0,1420,-6,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,830,-2,0,955,-15,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,-4,0,1349,8,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1417,-2,0,1647,8,0,0 +2013,5,25,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2205,67,1,545,66,1,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,-5,0,1026,17,1,0 +2013,5,9,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1526,20,1,1913,37,1,0 +2013,6,20,4,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,8,0,929,-2,0,0 +2013,6,7,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1635,-7,0,1920,-21,0,0 +2013,9,13,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1030,1,0,1340,-21,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1544,-3,0,1914,-3,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,7,0,2100,-4,0,0 +2013,7,19,5,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,240,1,2025,233,1,0 +2013,7,5,5,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,-3,0,2141,-27,0,0 +2013,10,21,1,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,940,0,0,1120,-4,0,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1325,-3,0,1625,-15,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1305,8,0,1720,1,0,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1945,59,1,110,46,1,0 +2013,5,18,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-6,0,830,-21,0,0 +2013,8,28,3,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,955,-5,0,1240,-7,0,0 +2013,7,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1546,-8,0,2359,-10,0,0 +2013,5,19,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-4,0,1250,-24,0,0 +2013,4,21,7,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1025,-8,0,1320,-19,0,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1920,0,0,2230,-8,0,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1620,7,0,1810,14,0,0 +2013,5,23,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1305,7,0,1405,21,1,0 +2013,5,14,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,925,-1,0,1030,-4,0,0 +2013,8,28,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1520,93,1,1810,54,1,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1355,-5,0,1510,3,0,0 +2013,5,22,3,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1329,41,1,1513,42,1,0 +2013,10,13,7,EV,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1116,-1,0,1248,-8,0,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,809,-7,0,932,-6,0,0 +2013,5,20,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1756,93,1,1930,86,1,0 +2013,4,9,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-3,0,1204,0,0,0 +2013,7,1,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-6,0,806,-9,0,0 +2013,10,1,2,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1315,-26,0,0 +2013,7,19,5,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,811,-8,0,1051,-13,0,0 +2013,7,31,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2030,-4,0,2140,-14,0,0 +2013,10,3,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,2155,-9,0,153,-10,0,0 +2013,10,17,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1045,-3,0,1256,-12,0,0 +2013,10,26,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1247,-2,0,1541,-22,0,0 +2013,10,10,4,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,-4,0,2225,2,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,26,1,2140,31,1,0 +2013,6,15,6,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1840,-3,0,2131,-21,0,0 +2013,6,18,2,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1205,-5,0,1320,-17,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,30,1,1932,84,1,0 +2013,10,19,6,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,739,-3,0,1012,-7,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1905,40,1,2125,24,1,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,-1,0,1825,1,0,0 +2013,4,12,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,12,0,950,9,0,0 +2013,6,16,7,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,-2,0,2027,-16,0,0 +2013,4,18,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1202,122,1,1800,132,1,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2000,25,1,2226,17,1,0 +2013,5,4,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,0,0,1732,7,0,0 +2013,5,4,6,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1305,2,0,1440,-18,0,0 +2013,5,28,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1140,16,1,1255,6,0,0 +2013,10,31,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,-7,0,2250,-9,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1130,-1,0,1315,-6,0,0 +2013,4,20,6,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,21,1,1455,-2,0,0 +2013,9,10,2,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,-5,0,1240,-13,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,25,1,2327,29,1,0 +2013,4,18,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1005,73,1,1125,63,1,0 +2013,4,8,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,11,0,1555,-3,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1711,-6,0,0 +2013,8,10,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,735,-7,0,855,-9,0,0 +2013,6,11,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-2,0,904,-13,0,0 +2013,10,27,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,953,3,0,1307,2,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2025,37,1,2250,27,1,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2005,30,1,2145,14,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1530,1,0,1835,-9,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1550,6,0,1820,-11,0,0 +2013,9,22,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1125,-8,0,1335,-14,0,0 +2013,5,9,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1954,-9,0,2115,-17,0,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1125,1,0,1340,-10,0,0 +2013,5,2,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1935,18,1,2120,0,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,857,10,0,1112,4,0,0 +2013,8,22,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,945,-1,0,1100,-5,0,0 +2013,6,23,7,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1728,0,,1837,0,1,1 +2013,6,3,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1440,-2,0,1755,-8,0,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,835,-2,0,1000,-11,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1720,-2,0,1815,-10,0,0 +2013,7,31,3,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1011,-1,0,1241,-1,0,0 +2013,7,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1514,8,0,1840,-2,0,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,10,0,1355,4,0,0 +2013,7,4,4,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,108,1,2000,111,1,0 +2013,4,30,2,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,0,0,2145,35,1,0 +2013,6,26,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,109,1,1535,122,1,0 +2013,4,9,2,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1345,-8,0,1530,-20,0,0 +2013,9,26,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1915,8,0,2025,3,0,0 +2013,6,6,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,12,0,1100,25,1,0 +2013,8,1,4,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,942,-5,0,1212,-3,0,0 +2013,4,29,1,FL,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1221,-2,0,1625,24,1,0 +2013,8,9,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1414,-7,0,1543,-11,0,0 +2013,9,19,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1435,16,1,1656,43,1,0 +2013,5,21,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,68,1,1615,50,1,0 +2013,4,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1614,6,0,1944,-9,0,0 +2013,5,24,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,3,0,1835,9,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1350,11,0,1525,1,0,0 +2013,4,27,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1720,-4,0,1844,72,1,0 +2013,5,29,3,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,72,1,815,57,1,0 +2013,4,25,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1155,28,1,1455,11,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1715,21,1,1840,13,0,0 +2013,7,6,6,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,715,10,0,1000,-4,0,0 +2013,8,7,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,63,1,2005,57,1,0 +2013,10,5,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-8,0,1129,-12,0,0 +2013,10,1,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,-2,0,1210,8,0,0 +2013,10,17,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,9,0,2001,9,0,0 +2013,4,5,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,47,1,2046,40,1,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,755,0,0,922,-1,0,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,635,95,1,800,76,1,0 +2013,6,6,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,3,0,1100,5,0,0 +2013,10,9,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1135,2,0,1250,-3,0,0 +2013,10,4,5,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1531,23,1,1951,29,1,0 +2013,5,16,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-2,0,1558,-11,0,0 +2013,8,1,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1325,75,1,1525,77,1,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,1258,-16,0,0 +2013,5,10,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1529,11,0,1725,-10,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1700,27,1,1840,27,1,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1355,6,0,1520,4,0,0 +2013,7,1,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1735,0,0,1845,7,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1421,-3,0,1555,-7,0,0 +2013,7,24,3,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1725,38,1,1730,35,1,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1510,2,0,1722,3,0,0 +2013,9,30,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1440,19,1,1635,0,0,0 +2013,4,14,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,605,3,0,719,-1,0,0 +2013,10,31,4,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,959,6,0,1320,-4,0,0 +2013,5,1,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,835,-4,0,1128,13,0,0 +2013,6,20,4,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1004,-2,0,1110,-6,0,0 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1859,2,0,2052,-16,0,0 +2013,6,24,1,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1610,158,1,1923,208,1,0 +2013,8,14,3,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,613,-7,0,715,-12,0,0 +2013,6,13,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1209,18,1,1340,15,1,0 +2013,10,8,2,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1115,0,0,1407,-13,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1336,-4,0,1410,-14,0,0 +2013,8,9,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,17,1,1007,10,0,0 +2013,5,21,2,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1910,44,1,2155,30,1,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-6,0,1246,-6,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1629,16,1,1750,-10,0,0 +2013,6,5,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1219,0,0,1355,25,1,0 +2013,7,11,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1355,67,1,1714,71,1,0 +2013,5,16,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,754,-5,0,830,0,0,0 +2013,8,12,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2053,-1,0,2126,2,0,0 +2013,10,31,4,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,854,-4,0,0 +2013,10,31,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1555,-3,0,1635,-5,0,0 +2013,6,5,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1505,-4,0,1620,1,0,0 +2013,4,16,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,850,17,1,1025,26,1,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1355,19,1,1615,18,1,0 +2013,8,9,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,20,1,1909,18,1,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1005,3,0,1200,-10,0,0 +2013,6,5,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1155,-5,0,1315,-7,0,0 +2013,9,9,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,-4,0,1120,-7,0,0 +2013,5,21,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,43,1,1212,44,1,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1200,28,1,1415,36,1,0 +2013,7,26,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,920,2,0,1035,7,0,0 +2013,10,26,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1910,-8,0,2235,-19,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1826,8,0,2043,-10,0,0 +2013,5,5,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2000,-5,0,2047,-22,0,0 +2013,10,15,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2025,14,0,2150,0,0,0 +2013,4,10,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,-8,0,1255,-6,0,0 +2013,10,27,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-6,0,1729,-21,0,0 +2013,7,10,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1518,1,0,2359,-21,0,0 +2013,7,23,2,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-5,0,910,0,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,-4,0,1256,-8,0,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1108,-5,0,1510,-5,0,0 +2013,10,16,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-4,0,1240,-1,0,0 +2013,5,19,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1745,-6,0,2156,41,1,0 +2013,4,25,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1638,-2,0,1851,10,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,940,3,0,1155,-8,0,0 +2013,8,24,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1134,-10,0,1220,-24,0,0 +2013,6,12,3,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-12,0,1210,-8,0,0 +2013,6,19,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-6,0,725,0,0,0 +2013,7,11,4,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,656,70,1,817,62,1,0 +2013,6,9,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1840,1,0,1952,3,0,0 +2013,6,23,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,600,-5,0,734,-21,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1056,-2,0,1234,2,0,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1812,-3,0,2035,-13,0,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,7,0,1750,25,1,0 +2013,10,27,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1340,2,0,1503,1,0,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,4,0,1635,-33,0,0 +2013,9,5,4,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,940,-9,0,1729,36,1,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,633,-2,0,928,-27,0,0 +2013,7,14,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1902,-2,0,2140,-2,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-2,0,217,-5,0,0 +2013,6,22,6,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-8,0,1017,-34,0,0 +2013,6,27,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-1,0,1620,2,0,0 +2013,7,24,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,628,-4,0,805,-17,0,0 +2013,8,19,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,715,-3,0,750,-19,0,0 +2013,8,30,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-6,0,1808,-1,0,0 +2013,8,28,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-4,0,659,-9,0,0 +2013,10,24,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1128,229,1,1359,221,1,0 +2013,6,21,5,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,822,-3,0,1630,-20,0,0 +2013,8,31,6,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,710,-1,0,955,-10,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,940,33,1,1050,34,1,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1850,16,1,1944,6,0,0 +2013,7,10,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1846,0,,2038,0,1,1 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,745,126,1,915,124,1,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1450,16,1,1615,24,1,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,25,1,1409,9,0,0 +2013,8,8,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,-8,0,740,-4,0,0 +2013,4,30,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-9,0,1600,-6,0,0 +2013,8,21,3,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-4,0,2213,-13,0,0 +2013,6,2,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,720,-6,0,1519,-15,0,0 +2013,9,12,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,700,-2,0,730,5,0,0 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,655,-1,0,938,-2,0,0 +2013,5,4,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,731,-4,0,1124,-32,0,0 +2013,4,11,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1917,-9,0,2048,-17,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,84,1,1913,107,1,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,600,-3,0,845,-8,0,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1310,-9,0,1620,-12,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1255,0,0,1645,0,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2000,3,0,2130,4,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,-4,0,2102,-6,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,726,-2,0,1025,3,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1700,-3,0,1805,-6,0,0 +2013,5,20,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1135,0,0,1300,-5,0,0 +2013,7,30,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,1411,17,1,1945,21,1,0 +2013,8,17,6,WN,13851,Will Rogers World,Oklahoma City,OK,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,27,1,1540,15,1,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1835,7,0,2000,5,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,9,0,1459,5,0,0 +2013,4,5,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,630,-4,0,810,-7,0,0 +2013,7,1,1,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-9,0,1058,-13,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2055,7,0,2200,2,0,0 +2013,10,22,2,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1110,24,1,1305,15,1,0 +2013,8,15,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,-3,0,1620,1,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,1,0,1845,-22,0,0 +2013,5,26,7,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,5,0,925,4,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,755,-2,0,1230,-3,0,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1105,9,0,1640,3,0,0 +2013,9,3,2,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-5,0,1035,-10,0,0 +2013,4,29,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-7,0,1205,-17,0,0 +2013,9,1,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1115,-6,0,1240,-24,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1355,-3,0,1547,-12,0,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1910,21,1,2135,17,1,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2056,-5,0,2232,-8,0,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1005,11,0,1115,-3,0,0 +2013,9,1,7,OO,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1930,0,0,2335,-1,0,0 +2013,4,7,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1519,-12,0,2026,-23,0,0 +2013,6,30,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,33,1,910,21,1,0 +2013,5,10,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-3,0,2011,-2,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1455,-1,0,1800,3,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1910,3,0,20,-25,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1155,-3,0,1545,-1,0,0 +2013,7,19,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,7,0,649,-9,0,0 +2013,5,16,4,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1920,64,1,2025,83,1,0 +2013,9,17,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1920,-5,0,1935,-16,0,0 +2013,6,17,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,-1,0,1450,-12,0,0 +2013,7,29,1,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,1309,2,0,0 +2013,4,11,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,63,1,1146,56,1,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-2,0,2331,2,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,-9,0,2335,-10,0,0 +2013,8,16,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,17,1,1553,18,1,0 +2013,6,24,1,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,810,48,1,1630,44,1,0 +2013,6,20,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,640,1,0,735,-3,0,0 +2013,8,31,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,94,1,1855,101,1,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2015,-5,0,2122,-1,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1823,0,,2100,0,1,1 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,-4,0,1712,-15,0,0 +2013,7,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-5,0,1031,-19,0,0 +2013,7,30,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,99,1,1550,105,1,0 +2013,5,14,2,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-5,0,1921,-14,0,0 +2013,5,5,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1655,3,0,1750,6,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1825,-3,0,2009,14,0,0 +2013,5,29,3,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1035,-5,0,1310,-21,0,0 +2013,8,20,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,-4,0,1320,-1,0,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1706,-3,0,1838,-7,0,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,655,2,0,1000,-10,0,0 +2013,10,12,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1441,-5,0,2102,-27,0,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2150,8,0,2337,-12,0,0 +2013,6,22,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,3,0,1900,4,0,0 +2013,6,27,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,19,1,1305,7,0,0 +2013,5,5,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1440,12,0,1725,-1,0,0 +2013,4,21,7,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1805,27,1,1925,32,1,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,54,1,1735,46,1,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,1,0,1005,-4,0,0 +2013,7,19,5,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2235,-9,0,44,-19,0,0 +2013,9,4,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-7,0,1310,-29,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,-3,0,1145,-2,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,8,0,2328,12,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,-4,0,1739,-3,0,0 +2013,4,17,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,15,1,2202,3,0,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-1,0,1917,-9,0,0 +2013,6,11,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,935,0,0,1050,-5,0,0 +2013,7,23,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,936,34,1,1200,44,1,0 +2013,5,13,1,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-9,0,705,9,0,0 +2013,6,16,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1235,1,0,1440,-4,0,0 +2013,5,20,1,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1955,0,0,2130,3,0,0 +2013,10,3,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1710,-10,0,2005,-20,0,0 +2013,5,16,4,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2234,0,0,650,0,0,0 +2013,7,6,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1303,-5,0,1631,5,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-7,0,1505,-3,0,0 +2013,4,4,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2105,-6,0,2115,-14,0,0 +2013,5,3,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,855,-2,0,912,8,0,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1732,-1,0,1853,-8,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1124,-3,0,1303,8,0,0 +2013,9,4,3,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-4,0,1011,-26,0,0 +2013,7,15,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,55,1,1916,39,1,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,-4,0,2357,-24,0,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2145,21,1,140,29,1,0 +2013,7,15,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1145,-1,0,1241,-5,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1000,1,0,1250,-1,0,0 +2013,5,31,5,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1340,29,1,1523,18,1,0 +2013,7,17,3,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,709,-1,0,755,-10,0,0 +2013,5,14,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1630,38,1,1805,25,1,0 +2013,6,6,4,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,-6,0,2020,-8,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1600,36,1,1713,40,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-3,0,1325,-12,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1405,-6,0,1530,-6,0,0 +2013,8,12,1,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1205,-5,0,1435,-2,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1727,16,1,2040,71,1,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1932,25,1,2228,50,1,0 +2013,5,25,6,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,620,-6,0,723,-14,0,0 +2013,4,22,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,950,0,0,1104,-6,0,0 +2013,10,18,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1940,-5,0,2051,-11,0,0 +2013,6,27,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-6,0,1747,-7,0,0 +2013,5,29,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1030,0,0,1130,-8,0,0 +2013,9,29,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,904,9,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1745,-7,0,1910,-10,0,0 +2013,8,18,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,1055,15,1,1615,9,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,15,1,2300,2,0,0 +2013,4,16,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-7,0,1439,-22,0,0 +2013,10,29,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,824,-5,0,1019,-21,0,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,-2,0,45,-6,0,0 +2013,4,21,7,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1432,19,1,1605,10,0,0 +2013,6,6,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1355,-2,0,1502,-7,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,18,1,1043,13,0,0 +2013,6,22,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1850,-10,0,1940,-13,0,0 +2013,5,7,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-5,0,1221,-17,0,0 +2013,5,10,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2150,136,1,15,142,1,0 +2013,5,23,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1510,-3,0,1730,-5,0,0 +2013,7,24,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,-4,0,1605,-23,0,0 +2013,10,7,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-9,0,2033,-5,0,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,2015,-8,0,2154,-19,0,0 +2013,10,26,6,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1117,-4,0,1407,-11,0,0 +2013,5,8,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,725,3,0,1115,7,0,0 +2013,5,28,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,-2,0,800,-7,0,0 +2013,10,31,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1709,73,1,1833,62,1,0 +2013,9,20,5,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,645,-8,0,935,-30,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2205,21,1,2305,24,1,0 +2013,10,20,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1913,-9,0,2035,5,0,0 +2013,8,14,3,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,-2,0,910,-6,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1455,4,0,1910,-13,0,0 +2013,4,24,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-4,0,2011,-4,0,0 +2013,9,8,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1510,-5,0,1912,8,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1916,-6,0,2214,-1,0,0 +2013,5,9,4,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1125,-1,0,1250,-4,0,0 +2013,9,4,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,-6,0,2053,-23,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1615,-4,0,1728,-13,0,0 +2013,10,12,6,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,800,-2,0,1025,-2,0,0 +2013,4,18,4,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1333,60,1,1600,66,1,0 +2013,4,20,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,930,0,0,1155,-4,0,0 +2013,4,13,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-4,0,720,-9,0,0 +2013,5,29,3,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,115,-1,0,830,-16,0,0 +2013,9,12,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,936,-1,0,1233,-24,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1615,-1,0,1720,-6,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1423,-4,0,1709,-8,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,1,0,1128,-4,0,0 +2013,7,13,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,630,-1,0,840,3,0,0 +2013,7,31,3,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1035,0,0,1515,6,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,740,-6,0,1048,2,0,0 +2013,6,11,2,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,55,1,2103,29,1,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-6,0,910,-37,0,0 +2013,4,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1300,-4,0,1350,-3,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,800,0,0,1110,-5,0,0 +2013,6,26,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,-4,0,1946,9,0,0 +2013,4,1,1,FL,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,720,5,0,955,-17,0,0 +2013,8,15,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-11,0,1900,-11,0,0 +2013,4,2,2,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-6,0,910,-9,0,0 +2013,9,11,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,22,1,2115,16,1,0 +2013,8,10,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1005,-4,0,1330,18,1,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1738,0,0,1855,-9,0,0 +2013,9,29,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1326,71,1,1455,56,1,0 +2013,6,16,7,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1755,0,0,2030,-11,0,0 +2013,5,17,5,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,759,0,0,0 +2013,7,10,3,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-10,0,1234,5,0,0 +2013,10,9,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,735,-2,0,835,-6,0,0 +2013,5,28,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-8,0,1334,-2,0,0 +2013,4,17,3,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,830,-2,0,1620,-30,0,0 +2013,6,29,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1453,25,1,1755,16,1,0 +2013,5,10,5,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1010,54,1,1125,52,1,0 +2013,9,22,7,OO,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,2014,32,1,2037,48,1,0 +2013,9,29,7,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,955,-17,0,0 +2013,9,23,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,0,0,1255,-3,0,0 +2013,4,12,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,923,0,,1237,0,1,1 +2013,6,21,5,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1725,11,0,2235,-3,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,-4,0,2144,-14,0,0 +2013,5,28,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1305,3,0,1410,-3,0,0 +2013,6,5,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-3,0,1834,21,1,0 +2013,10,24,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1948,-3,0,2025,-6,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,2010,66,1,2320,59,1,0 +2013,7,30,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1935,-5,0,2125,1,0,0 +2013,5,13,1,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,532,0,0,714,-3,0,0 +2013,6,11,2,WN,12451,Jacksonville International,Jacksonville,FL,11292,Denver International,Denver,CO,930,-2,0,1105,0,0,0 +2013,9,22,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,640,-2,0,915,-12,0,0 +2013,10,14,1,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1720,2,0,1830,-5,0,0 +2013,4,4,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,3,0,920,-13,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1040,109,1,1154,120,1,0 +2013,5,2,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,46,1,1345,42,1,0 +2013,10,19,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1452,-11,0,1634,1,0,0 +2013,4,6,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,11,0,847,5,0,0 +2013,6,8,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1045,92,1,1602,88,1,0 +2013,6,21,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,905,14,0,1420,24,1,0 +2013,9,15,7,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,617,-1,0,816,0,0,0 +2013,8,18,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1044,-3,0,1215,1,0,0 +2013,8,23,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,2,0,2011,2,0,0 +2013,8,3,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2349,12,0,550,-11,0,0 +2013,5,29,3,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,700,-5,0,1052,-6,0,0 +2013,7,26,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-1,0,2354,-2,0,0 +2013,9,17,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1007,3,0,0 +2013,4,23,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-7,0,1346,-10,0,0 +2013,4,25,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,600,-8,0,659,-8,0,0 +2013,5,20,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,19,1,1118,13,0,0 +2013,8,20,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,29,1,1710,19,1,0 +2013,4,10,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,724,-3,0,1106,25,1,0 +2013,5,21,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,20,1,2201,19,1,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1540,160,1,1635,171,1,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,830,7,0,1235,12,0,0 +2013,5,30,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1329,-1,0,1448,-8,0,0 +2013,8,6,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1700,19,1,1822,25,1,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2220,-4,0,2331,3,0,0 +2013,5,13,1,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-6,0,1001,-23,0,0 +2013,5,4,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1128,19,1,1330,9,0,0 +2013,9,9,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,15,1,2110,12,0,0 +2013,9,11,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1725,-7,0,1759,-6,0,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,12,0,1718,18,1,0 +2013,5,29,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-4,0,1500,-13,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1722,-13,0,1829,-22,0,0 +2013,4,15,1,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,20,1,1935,17,1,0 +2013,6,19,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,645,4,0,938,-1,0,0 +2013,4,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1100,-1,0,1157,-8,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2035,4,0,2250,2,0,0 +2013,7,20,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,22,1,2345,14,0,0 +2013,7,9,2,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1011,49,1,1248,49,1,0 +2013,7,19,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1925,113,1,2032,123,1,0 +2013,5,11,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1540,8,0,1655,3,0,0 +2013,8,4,7,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2025,-9,0,2125,-3,0,0 +2013,5,19,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,740,-4,0,1150,-13,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2115,38,1,20,32,1,0 +2013,5,28,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,56,1,2017,68,1,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,10,0,2350,-2,0,0 +2013,5,21,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1810,31,1,2015,33,1,0 +2013,9,3,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,935,-2,0,950,-8,0,0 +2013,5,15,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,-6,0,1318,-11,0,0 +2013,5,26,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1420,25,1,1740,12,0,0 +2013,7,5,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,830,-4,0,850,-21,0,0 +2013,9,1,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1845,49,1,2137,53,1,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-3,0,845,12,0,0 +2013,5,20,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1551,0,0,1749,6,0,0 +2013,4,7,7,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2050,18,1,504,11,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-1,0,2056,6,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1706,-6,0,2111,-12,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,66,1,1110,58,1,0 +2013,8,10,6,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,-7,0,705,-34,0,0 +2013,8,26,1,WN,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1150,-1,0,1400,-4,0,0 +2013,5,6,1,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,-5,0,1736,-17,0,0 +2013,8,6,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,630,5,0,830,8,0,0 +2013,10,31,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,603,-6,0,907,-10,0,0 +2013,10,26,6,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1223,-7,0,1500,-7,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,24,1,1048,56,1,0 +2013,10,28,1,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-8,0,445,-24,0,0 +2013,7,21,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,852,3,0,1117,0,0,0 +2013,4,2,2,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1646,-7,0,1927,-6,0,0 +2013,7,10,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,611,36,1,954,43,1,0 +2013,10,23,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,700,-7,0,805,-16,0,0 +2013,10,19,6,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1030,0,0,1611,-24,0,0 +2013,9,25,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1225,-5,0,1942,-22,0,0 +2013,5,21,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,820,23,1,1110,3,0,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-3,0,1347,1,0,0 +2013,10,9,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1942,-12,0,2230,-19,0,0 +2013,4,29,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-7,0,1058,-13,0,0 +2013,4,18,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1700,0,0,1851,-15,0,0 +2013,5,17,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,4,0,45,-11,0,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1005,-3,0,1500,-8,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,27,1,2347,18,1,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1859,-5,0,2207,-21,0,0 +2013,7,28,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1810,11,0,1935,5,0,0 +2013,6,11,2,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1039,2,0,1119,9,0,0 +2013,5,10,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,138,1,2255,121,1,0 +2013,8,5,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-4,0,1020,9,0,0 +2013,8,6,2,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1437,-5,0,1829,-21,0,0 +2013,4,17,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,650,3,0,855,-12,0,0 +2013,7,18,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,27,1,805,18,1,0 +2013,7,30,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,724,18,1,1020,7,0,0 +2013,4,29,1,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,720,-1,0,935,-21,0,0 +2013,9,30,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,-1,0,1445,2,0,0 +2013,9,13,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,7,0,1830,-11,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1659,0,0,2005,11,0,0 +2013,8,11,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-4,0,1605,-19,0,0 +2013,9,22,7,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,40,1,919,43,1,0 +2013,6,14,5,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-19,0,711,-25,0,0 +2013,9,5,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-5,0,1620,-17,0,0 +2013,5,4,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1305,-8,0,1410,-8,0,0 +2013,10,18,5,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1305,-6,0,1520,-5,0,0 +2013,5,25,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1445,-4,0,1805,-30,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1800,7,0,2135,10,0,0 +2013,5,1,3,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,70,1,2125,107,1,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1935,5,0,2330,34,1,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,41,1,1745,27,1,0 +2013,4,4,4,OO,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-4,0,1051,-14,0,0 +2013,6,6,4,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1030,1,0,1121,2,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2206,69,1,2347,55,1,0 +2013,7,9,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1817,0,0,2105,-12,0,0 +2013,9,12,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,931,-9,0,1021,-20,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,855,-5,0,1250,-22,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2250,0,0,15,-9,0,0 +2013,7,26,5,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-6,0,1535,-5,0,0 +2013,5,26,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,1,0,1045,-3,0,0 +2013,8,14,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,952,0,,1105,0,1,1 +2013,8,21,3,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,3,0,1536,37,1,0 +2013,6,8,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,-7,0,1740,4,0,0 +2013,8,3,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,2,0,1126,3,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,2002,5,0,2203,5,0,0 +2013,10,2,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1317,7,0,1915,7,0,0 +2013,4,14,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,0,0,1446,1,0,0 +2013,10,7,1,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-3,0,1450,14,0,0 +2013,7,12,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,144,1,1125,161,1,0 +2013,9,14,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1249,-7,0,1419,-15,0,0 +2013,9,18,3,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1615,-4,0,1738,-1,0,0 +2013,10,30,3,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1330,-5,0,1450,-13,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,16,1,2102,14,0,0 +2013,8,29,4,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-2,0,930,-8,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,1,0,2130,-1,0,0 +2013,5,18,6,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1711,0,0,1922,-19,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,905,4,0,1259,4,0,0 +2013,5,8,3,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1300,20,1,1420,7,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1210,12,0,1320,5,0,0 +2013,5,10,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1025,-5,0,1254,-10,0,0 +2013,8,28,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,1700,-5,0,1950,-26,0,0 +2013,5,14,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-6,0,2150,-22,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1945,66,1,2105,53,1,0 +2013,6,8,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1407,96,1,1815,62,1,0 +2013,5,8,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1000,9,0,1135,-19,0,0 +2013,8,29,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,7,0,1317,-13,0,0 +2013,10,4,5,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1740,2,0,1840,-7,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1905,-1,0,2230,-5,0,0 +2013,5,7,2,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,950,0,0,1205,4,0,0 +2013,7,19,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,1941,111,1,2228,106,1,0 +2013,7,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1517,-4,0,1655,-10,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1418,1,0,1801,-23,0,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,755,14,0,1129,-5,0,0 +2013,9,3,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1810,11,0,2048,10,0,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1512,-6,0,1612,-15,0,0 +2013,10,4,5,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1508,0,0,1648,-9,0,0 +2013,4,13,6,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1455,22,1,1705,5,0,0 +2013,5,12,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,920,-18,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1425,-5,0,1759,-24,0,0 +2013,9,11,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1020,2,0,1115,-7,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2047,-6,0,2315,-13,0,0 +2013,8,12,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,212,1,1210,204,1,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1610,57,1,1935,67,1,0 +2013,5,6,1,VX,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1855,21,1,2200,1,0,0 +2013,6,28,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,625,8,0,800,6,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,855,-1,0,1011,-14,0,0 +2013,6,12,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1815,-10,0,2055,-19,0,0 +2013,4,10,3,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,800,-4,0,916,-6,0,0 +2013,7,18,4,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,-5,0,1030,-13,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2151,5,0,2239,1,0,0 +2013,4,8,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,818,-6,0,1033,-8,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1730,14,0,2000,7,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1315,68,1,1730,63,1,0 +2013,10,18,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,940,-5,0,1046,-5,0,0 +2013,8,4,7,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1909,-10,0,2205,-16,0,0 +2013,7,22,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1425,31,1,2020,64,1,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1515,3,0,2353,-5,0,0 +2013,7,17,3,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-16,0,1127,-30,0,0 +2013,9,29,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-12,0,1344,-17,0,0 +2013,5,6,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,712,-6,0,1057,-5,0,0 +2013,6,23,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,45,14,0,616,14,0,0 +2013,6,17,1,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2210,1,0,2300,-9,0,0 +2013,5,23,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,715,-1,0,1051,19,1,0 +2013,9,10,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1315,4,0,1350,-7,0,0 +2013,10,5,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1520,4,0,1630,4,0,0 +2013,9,15,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1115,-5,0,1225,-6,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,2010,2,0,2249,-6,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1045,1,0,1410,-8,0,0 +2013,10,16,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1333,-2,0,1553,-11,0,0 +2013,10,4,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1955,-8,0,2121,-21,0,0 +2013,8,22,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1115,78,1,1310,76,1,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-9,0,941,-20,0,0 +2013,9,28,6,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1110,4,0,1320,14,0,0 +2013,10,22,2,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-7,0,1930,-12,0,0 +2013,4,14,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1420,14,0,0 +2013,8,2,5,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-3,0,855,-11,0,0 +2013,7,28,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,830,7,0,1028,-14,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,11,0,1055,4,0,0 +2013,9,28,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1735,0,0,1953,-14,0,0 +2013,10,9,3,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,-13,0,2145,-13,0,0 +2013,4,28,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1750,-2,0,1850,-3,0,0 +2013,6,5,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1510,27,1,1825,16,1,0 +2013,9,9,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,-3,0,1841,-11,0,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,800,0,0,925,-1,0,0 +2013,10,9,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,840,-9,0,1006,-18,0,0 +2013,7,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,-5,0,909,-11,0,0 +2013,8,8,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,5,0,1610,1,0,0 +2013,4,12,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,12,0,1520,12,0,0 +2013,5,2,4,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1118,-10,0,1154,-20,0,0 +2013,8,27,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1313,-1,0,1920,-7,0,0 +2013,9,17,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,-4,0,1720,0,0,0 +2013,5,16,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2135,-8,0,600,-20,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,-3,0,1430,-9,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1530,13,0,1640,28,1,0 +2013,7,5,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,615,-3,0,816,-3,0,0 +2013,7,2,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,0,0,1015,-18,0,0 +2013,7,11,4,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,4,0,2140,7,0,0 +2013,4,17,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,946,-2,0,1039,-4,0,0 +2013,4,22,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,745,-4,0,1015,-21,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1725,37,1,2245,41,1,0 +2013,4,27,6,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1145,21,1,1220,18,1,0 +2013,6,30,7,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1659,12,0,2020,6,0,0 +2013,10,1,2,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,830,-5,0,1026,-19,0,0 +2013,7,30,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1235,-2,0,1440,-15,0,0 +2013,10,31,4,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,925,-4,0,0 +2013,9,16,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,0,0,1918,-4,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,31,1,1905,22,1,0 +2013,4,24,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,848,-5,0,1022,-2,0,0 +2013,9,25,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1650,20,1,1810,21,1,0 +2013,9,27,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,1,0,2050,-18,0,0 +2013,5,31,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,807,-11,0,921,-18,0,0 +2013,6,15,6,WN,14747,Seattle/Tacoma International,Seattle,WA,10693,Nashville International,Nashville,TN,1215,10,0,1835,6,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1615,12,0,1720,19,1,0 +2013,10,25,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1610,18,1,1735,21,1,0 +2013,10,3,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-3,0,1033,3,0,0 +2013,9,11,3,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,2007,84,1,2238,53,1,0 +2013,8,14,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,929,-6,0,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,757,-2,0,0 +2013,8,29,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2000,11,0,2127,10,0,0 +2013,10,11,5,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1345,-4,0,1608,-20,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1606,-3,0,2358,-15,0,0 +2013,9,16,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,1,0,2210,-3,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2035,-9,0,2143,6,0,0 +2013,9,24,2,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1712,-12,0,1850,-31,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1500,-2,0,1700,-16,0,0 +2013,4,26,5,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-5,0,1115,-17,0,0 +2013,5,29,3,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,945,-1,0,1420,4,0,0 +2013,9,29,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,918,1,0,1002,-13,0,0 +2013,7,25,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1715,0,0,2128,3,0,0 +2013,6,27,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1850,0,0,2015,5,0,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,850,9,0,1325,8,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-1,0,849,-3,0,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2055,-1,0,2359,-14,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,-3,0,1309,-24,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,3,0,1711,-2,0,0 +2013,10,13,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1610,6,0,1720,7,0,0 +2013,8,25,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1420,-2,0,1445,-15,0,0 +2013,5,30,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-4,0,1447,-7,0,0 +2013,5,17,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,2,0,1930,-3,0,0 +2013,8,27,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,-2,0,1815,-5,0,0 +2013,10,22,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,30,1,2125,13,0,0 +2013,5,18,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,600,-1,0,726,-14,0,0 +2013,10,10,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-1,0,750,4,0,0 +2013,7,7,7,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2224,54,1,30,49,1,0 +2013,10,8,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1600,0,0,1727,-1,0,0 +2013,7,17,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1725,-6,0,1908,-26,0,0 +2013,8,24,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,942,8,0,1618,6,0,0 +2013,7,21,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,116,1,2108,126,1,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,734,0,0,930,-5,0,0 +2013,9,14,6,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1345,-1,0,1450,4,0,0 +2013,7,15,1,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1350,5,0,1639,5,0,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1723,9,0,2135,3,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,0,,1220,0,1,1 +2013,9,18,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,-6,0,1949,1,0,0 +2013,6,20,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1500,7,0,1745,-1,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,5,0,1402,-2,0,0 +2013,4,28,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1020,-2,0,1310,2,0,0 +2013,9,9,1,YV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,2056,-2,0,2359,-10,0,0 +2013,4,28,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1756,11,0,1930,28,1,0 +2013,9,15,7,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,805,0,0,955,-2,0,0 +2013,10,24,4,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,47,1,1820,46,1,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,700,-1,0,1043,-3,0,0 +2013,10,9,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,920,-6,0,1122,2,0,0 +2013,8,26,1,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-8,0,1627,-9,0,0 +2013,9,10,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1859,-2,0,2006,-1,0,0 +2013,10,16,3,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1835,-5,0,1940,-3,0,0 +2013,8,10,6,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1555,3,0,1630,-1,0,0 +2013,10,23,3,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1516,-3,0,2159,6,0,0 +2013,9,21,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-8,0,659,-2,0,0 +2013,8,23,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1705,-7,0,2030,-16,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,8,0,2204,-2,0,0 +2013,6,29,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1010,-3,0,1055,-5,0,0 +2013,6,3,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1355,-4,0,1659,8,0,0 +2013,6,10,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1125,-6,0,1224,-6,0,0 +2013,7,15,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1830,-1,0,2015,2,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,939,155,1,1053,154,1,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1750,4,0,2045,7,0,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,-1,0,2059,-26,0,0 +2013,7,8,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1820,21,1,2200,9,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1110,6,0,1320,-3,0,0 +2013,7,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,-4,0,519,0,0,0 +2013,6,3,1,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,3,0,1415,-11,0,0 +2013,10,8,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1345,-2,0,1440,-17,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1055,-3,0,1245,-16,0,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,45,1,1115,41,1,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,20,1,2230,17,1,0 +2013,6,20,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-4,0,1441,-10,0,0 +2013,8,26,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-5,0,1927,0,0,0 +2013,7,4,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,-4,0,913,-18,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,31,1,1440,16,1,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1615,-1,0,1710,-5,0,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2145,44,1,2240,41,1,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1248,-4,0,1404,-19,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,1,0,1654,-19,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2155,-4,0,2308,-24,0,0 +2013,4,19,5,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1715,93,1,1900,89,1,0 +2013,10,2,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,-3,0,1200,11,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1517,23,1,2351,-11,0,0 +2013,7,3,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,945,1,0,1506,-13,0,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,-4,0,1810,4,0,0 +2013,9,27,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1124,1,0,1640,-12,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1120,0,0,1300,-14,0,0 +2013,10,10,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-6,0,815,-6,0,0 +2013,5,14,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-6,0,926,-15,0,0 +2013,4,12,5,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1950,5,0,2100,8,0,0 +2013,4,16,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,-1,0,1040,-1,0,0 +2013,6,12,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1819,0,,2038,0,1,1 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,37,1,1700,42,1,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2211,-3,0,2358,0,0,0 +2013,9,14,6,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-5,0,1030,-1,0,0 +2013,5,8,3,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,23,1,1240,-1,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-3,0,805,-15,0,0 +2013,7,15,1,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2051,81,1,2358,55,1,0 +2013,5,22,3,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,950,0,0,1050,-4,0,0 +2013,8,29,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-8,0,805,-21,0,0 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1304,97,1,1449,101,1,0 +2013,5,29,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,20,1,1735,35,1,0 +2013,6,10,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-4,0,1105,5,0,0 +2013,7,12,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,930,0,0,1405,13,0,0 +2013,4,12,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,11,0,1200,9,0,0 +2013,7,19,5,FL,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1644,110,1,1829,94,1,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2245,-2,0,630,-11,0,0 +2013,4,8,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1425,-7,0,1555,-9,0,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1615,16,1,1740,12,0,0 +2013,5,24,5,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,172,1,1950,221,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,-2,0,1047,-2,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,743,-1,0,846,-7,0,0 +2013,8,9,5,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1105,32,1,1135,46,1,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,0,0,2015,22,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,939,-3,0,1150,-3,0,0 +2013,9,28,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,-3,0,2100,-12,0,0 +2013,8,3,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,824,-1,0,1344,-19,0,0 +2013,10,19,6,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1622,47,1,1833,39,1,0 +2013,6,8,6,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1459,31,1,1919,-3,0,0 +2013,5,24,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,-1,0,1050,-6,0,0 +2013,6,8,6,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1530,35,1,1810,70,1,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2005,-3,0,2130,-1,0,0 +2013,6,17,1,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,11,0,545,-5,0,0 +2013,10,15,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,-4,0,2125,-7,0,0 +2013,8,27,2,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1845,-5,0,2135,-13,0,0 +2013,6,5,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,10,0,1155,-2,0,0 +2013,4,11,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1100,-1,0,1245,-15,0,0 +2013,9,23,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2038,-7,0,2358,-21,0,0 +2013,8,29,4,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,901,4,0,1143,-9,0,0 +2013,6,17,1,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-4,0,1013,-16,0,0 +2013,8,13,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,857,88,1,1023,98,1,0 +2013,9,19,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,75,1,1750,73,1,0 +2013,8,30,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1500,-6,0,1644,-20,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1945,98,1,2105,86,1,0 +2013,10,28,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2105,-6,0,2210,-1,0,0 +2013,9,1,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1305,-4,0,1435,0,0,0 +2013,5,4,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-2,0,1557,-3,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1905,37,1,2135,20,1,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,930,-5,0,1107,-18,0,0 +2013,10,25,5,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-5,0,920,-18,0,0 +2013,10,11,5,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1935,29,1,2240,16,1,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1650,182,1,2035,178,1,0 +2013,8,7,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1114,0,0,1635,3,0,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,924,1,0,1246,-7,0,0 +2013,5,14,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,751,-3,0,1044,-9,0,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-2,0,1335,-10,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1001,17,1,1806,24,1,0 +2013,9,24,2,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,1,0,805,-10,0,0 +2013,6,8,6,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,11,0,1825,-12,0,0 +2013,10,18,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,952,-8,0,1118,-11,0,0 +2013,7,27,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,745,-5,0,1610,-10,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2024,6,0,2258,-7,0,0 +2013,4,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-5,0,1936,-16,0,0 +2013,10,26,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,525,-4,0,847,-7,0,0 +2013,7,6,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-1,0,1451,6,0,0 +2013,8,10,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,1,0,1811,20,1,0 +2013,8,28,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,810,-2,0,1410,-10,0,0 +2013,7,3,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-6,0,843,-16,0,0 +2013,9,19,4,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1852,44,1,2030,34,1,0 +2013,5,25,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-2,0,1554,-14,0,0 +2013,7,24,3,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,298,1,945,307,1,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,33,1,1246,22,1,0 +2013,10,1,2,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,6,0,1420,12,0,0 +2013,10,3,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1640,0,,1817,0,1,1 +2013,10,31,4,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1615,11,0,1921,11,0,0 +2013,10,11,5,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1159,-4,0,1620,-6,0,0 +2013,4,9,2,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1635,-8,0,1741,-7,0,0 +2013,10,14,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1547,-7,0,1720,4,0,0 +2013,7,16,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,825,-4,0,1025,0,0,0 +2013,6,17,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,735,-2,0,911,-8,0,0 +2013,5,9,4,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2105,-1,0,2359,-5,0,0 +2013,6,15,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-8,0,1450,-27,0,0 +2013,9,2,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1917,-7,0,2022,-3,0,0 +2013,4,9,2,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,1,0,1508,5,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,-4,0,1505,-12,0,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1425,-3,0,1648,-1,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,925,0,0,1425,-1,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,-6,0,2331,-7,0,0 +2013,9,2,1,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,913,-6,0,1033,-10,0,0 +2013,10,2,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-1,0,1255,5,0,0 +2013,5,28,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,730,-1,0,845,8,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,715,1,0,910,-10,0,0 +2013,10,1,2,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-5,0,2151,-13,0,0 +2013,8,27,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-4,0,1045,-13,0,0 +2013,10,12,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,7,0,1720,28,1,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1046,1,0,1150,-4,0,0 +2013,4,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1530,5,0,1720,11,0,0 +2013,8,2,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1036,8,0,1409,26,1,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,-7,0,2355,-12,0,0 +2013,4,17,3,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1805,-11,0,2044,-12,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,0,0,2350,-9,0,0 +2013,8,24,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,951,-12,0,1033,-16,0,0 +2013,4,13,6,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1725,-1,0,2050,-14,0,0 +2013,9,12,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-5,0,858,-17,0,0 +2013,10,23,3,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-7,0,849,2,0,0 +2013,5,23,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,-1,0,1230,15,1,0 +2013,7,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1845,-3,0,2005,-4,0,0 +2013,5,20,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1710,-3,0,1813,-8,0,0 +2013,10,21,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-4,0,1345,5,0,0 +2013,9,7,6,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1640,-8,0,1955,-9,0,0 +2013,7,9,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,0,,1143,0,1,1 +2013,7,14,7,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-2,0,1238,-11,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,32,1,940,27,1,0 +2013,4,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,-1,0,2049,-3,0,0 +2013,6,20,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,-1,0,1650,-5,0,0 +2013,4,4,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,6,0,1450,7,0,0 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1359,-2,0,1452,8,0,0 +2013,4,30,2,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,725,-3,0,1015,-26,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1505,0,0,1753,2,0,0 +2013,6,6,4,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1115,53,1,1200,55,1,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,12,0,1925,17,1,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,910,14,0,1155,21,1,0 +2013,9,15,7,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1135,-8,0,1250,2,0,0 +2013,4,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1712,64,1,1959,69,1,0 +2013,4,9,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-6,0,1217,-23,0,0 +2013,7,9,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1645,107,1,1800,99,1,0 +2013,10,11,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2200,0,0,2255,-6,0,0 +2013,7,11,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1830,-7,0,2115,-4,0,0 +2013,4,18,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,208,1,1340,225,1,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,705,-8,0,956,-17,0,0 +2013,9,2,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1053,-6,0,1637,-8,0,0 +2013,4,14,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,10,0,1410,22,1,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1247,-2,0,1617,22,1,0 +2013,4,12,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,645,0,0,835,-19,0,0 +2013,6,10,1,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,72,1,1940,0,1,1 +2013,6,8,6,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1730,-8,0,1905,-21,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1540,9,0,1645,5,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,-2,0,840,-5,0,0 +2013,6,17,1,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1755,-9,0,1905,-11,0,0 +2013,9,18,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1530,1,0,1715,2,0,0 +2013,4,17,3,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-3,0,1618,20,1,0 +2013,9,13,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1615,16,1,59,22,1,0 +2013,5,15,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2005,65,1,2018,56,1,0 +2013,10,11,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1634,-3,0,1843,-22,0,0 +2013,4,15,1,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1930,-5,0,2230,5,0,0 +2013,9,29,7,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2010,-7,0,2239,-19,0,0 +2013,5,4,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1232,-5,0,1807,-11,0,0 +2013,7,28,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,750,-19,0,0 +2013,10,16,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,0,0,809,4,0,0 +2013,4,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,745,-6,0,933,-1,0,0 +2013,8,15,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1649,40,1,1940,8,0,0 +2013,10,22,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-6,0,1751,3,0,0 +2013,9,12,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,0,,2041,0,1,1 +2013,10,11,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,55,1,1508,32,1,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1359,-3,0,1523,-11,0,0 +2013,8,26,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1306,1,0,1352,-2,0,0 +2013,5,16,4,EV,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-7,0,1748,-5,0,0 +2013,4,4,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-4,0,1335,5,0,0 +2013,5,18,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,720,-3,0,1020,-15,0,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,925,2,0,1240,0,0,0 +2013,9,26,4,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1408,-4,0,1703,-14,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,2,0,710,7,0,0 +2013,6,15,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-4,0,957,-7,0,0 +2013,5,25,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1426,17,1,1519,4,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2110,88,1,2225,83,1,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,41,1,2200,32,1,0 +2013,7,26,5,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2115,-3,0,2322,7,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2115,-7,0,2300,-9,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1220,25,1,1345,20,1,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,2114,20,1,2242,15,1,0 +2013,6,27,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,605,-6,0,745,-15,0,0 +2013,4,19,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-5,0,716,20,1,0 +2013,8,5,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,0,0,803,-6,0,0 +2013,5,4,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1030,-1,0,1600,-5,0,0 +2013,5,15,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,-6,0,2105,10,0,0 +2013,6,17,1,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,10,0,1850,-3,0,0 +2013,9,16,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,5,0,1310,-11,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,605,-4,0,1425,-20,0,0 +2013,10,14,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1720,46,1,1805,48,1,0 +2013,5,18,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1215,-7,0,1525,-16,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,2003,11,0,2213,11,0,0 +2013,4,30,2,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,710,6,0,935,-22,0,0 +2013,6,7,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,955,-4,0,1140,-40,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1530,2,0,1655,-1,0,0 +2013,6,26,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,948,92,1,1225,129,1,0 +2013,6,18,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,809,-2,0,902,0,0,0 +2013,10,28,1,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1720,-16,0,1937,-14,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,-1,0,1055,-1,0,0 +2013,9,23,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1110,15,1,1220,12,0,0 +2013,7,21,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,0,0,2041,-19,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1055,0,0,1229,-12,0,0 +2013,5,12,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,-4,0,2335,-23,0,0 +2013,10,17,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,820,2,0,945,1,0,0 +2013,10,12,6,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1600,-3,0,1934,-21,0,0 +2013,8,19,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1040,0,0,1130,-3,0,0 +2013,7,31,3,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,707,5,0,924,-1,0,0 +2013,4,2,2,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,830,-7,0,1146,-15,0,0 +2013,8,25,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1512,-1,0,1633,-11,0,0 +2013,8,2,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,10,0,1156,2,0,0 +2013,6,24,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,632,0,0,849,-6,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,1,0,1658,0,0,0 +2013,6,26,3,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,106,1,1357,138,1,0 +2013,4,27,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1445,64,1,1540,53,1,0 +2013,9,25,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-3,0,1205,-15,0,0 +2013,6,30,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1450,0,,1634,0,1,1 +2013,6,20,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,1128,3,0,0 +2013,6,24,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,143,1,2215,129,1,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-5,0,1438,-8,0,0 +2013,6,8,6,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,18,1,2130,11,0,0 +2013,5,3,5,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,1106,-3,0,0 +2013,8,20,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,-10,0,1356,-12,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,728,64,1,906,80,1,0 +2013,9,10,2,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,730,65,1,1110,60,1,0 +2013,10,18,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,930,1281,1,1525,1267,1,0 +2013,6,9,7,DL,12889,McCarran International,Las Vegas,NV,13244,Memphis International,Memphis,TN,1335,-3,0,1854,11,0,0 +2013,5,13,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,-2,0,1735,-13,0,0 +2013,7,10,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1320,0,0,1850,1,0,0 +2013,8,6,2,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,13,0,12,-26,0,0 +2013,4,1,1,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1042,-12,0,1325,-8,0,0 +2013,9,24,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1704,-4,0,2053,-25,0,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,-2,0,2155,13,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1430,20,1,1515,2,0,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,740,0,0,905,-10,0,0 +2013,4,1,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1645,2,0,1910,-8,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,2,0,2359,5,0,0 +2013,5,29,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1507,7,0,1639,14,0,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1250,2,0,2108,8,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1919,-5,0,2356,-20,0,0 +2013,8,17,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1401,-2,0,1450,4,0,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2015,52,1,2308,72,1,0 +2013,8,4,7,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-5,0,1541,-9,0,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2350,1,0,534,-17,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,0,0,1440,0,0,0 +2013,4,23,2,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1605,-5,0,1924,-31,0,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,633,-9,0,959,-29,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,625,-2,0,740,-3,0,0 +2013,7,23,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,815,-7,0,930,-11,0,0 +2013,7,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,1,0,1831,-4,0,0 +2013,7,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1300,-6,0,1424,-10,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,1,0,1130,9,0,0 +2013,6,8,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1829,-1,0,2114,-40,0,0 +2013,10,1,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1245,-2,0,1417,-14,0,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,2040,107,1,2220,121,1,0 +2013,4,14,7,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,840,6,0,1050,5,0,0 +2013,10,10,4,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1501,-3,0,1720,-11,0,0 +2013,6,5,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1710,-4,0,2333,-27,0,0 +2013,6,11,2,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,7,0,1145,2,0,0 +2013,7,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,241,1,814,249,1,0 +2013,4,28,7,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1215,-3,0,1350,-14,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1535,-1,0,1700,-6,0,0 +2013,8,13,2,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1115,0,0,1405,-5,0,0 +2013,10,28,1,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2035,-3,0,2340,-2,0,0 +2013,9,10,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1326,23,1,1607,-1,0,0 +2013,7,14,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1525,27,1,1640,20,1,0 +2013,4,26,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,6,0,1337,6,0,0 +2013,8,1,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,-5,0,1807,-8,0,0 +2013,4,30,2,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1640,0,0,2020,-4,0,0 +2013,9,12,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-5,0,835,-3,0,0 +2013,5,4,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1356,-7,0,1647,5,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,843,-1,0,1325,-38,0,0 +2013,8,10,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1925,16,1,2125,9,0,0 +2013,4,16,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1822,-7,0,1945,-8,0,0 +2013,7,11,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1647,25,1,1735,34,1,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,0,,2350,0,1,1 +2013,10,9,3,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-5,0,750,-19,0,0 +2013,4,30,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,840,0,0,1058,2,0,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,905,3,0,1200,-2,0,0 +2013,4,16,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-8,0,941,5,0,0 +2013,7,3,3,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1425,-9,0,1535,-2,0,0 +2013,5,20,1,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1825,103,1,2025,136,1,0 +2013,7,22,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1948,-4,0,2125,0,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,608,-1,0,827,-16,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1215,-6,0,1334,-4,0,0 +2013,9,30,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,646,-1,0,810,-8,0,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-2,0,1435,-5,0,0 +2013,9,8,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1135,-6,0,1251,-8,0,0 +2013,10,30,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,715,-5,0,903,-16,0,0 +2013,5,27,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1135,-4,0,1449,-4,0,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1055,31,1,1310,23,1,0 +2013,4,7,7,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,655,0,0,755,-6,0,0 +2013,7,14,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,5,0,1457,8,0,0 +2013,5,12,7,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1748,92,1,2014,79,1,0 +2013,7,31,3,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,9,0,1440,1,0,0 +2013,5,11,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-4,0,1805,2,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1018,-4,0,1406,-12,0,0 +2013,7,7,7,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-2,0,914,12,0,0 +2013,9,21,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,938,-4,0,1053,-18,0,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1400,39,1,1450,43,1,0 +2013,6,16,7,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2059,40,1,2234,38,1,0 +2013,10,15,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1054,-2,0,1211,5,0,0 +2013,5,16,4,OO,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1332,0,,1442,0,1,1 +2013,10,1,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-5,0,2005,-17,0,0 +2013,8,7,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1745,63,1,1915,57,1,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1530,8,0,1650,0,0,0 +2013,10,17,4,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1316,-10,0,1439,-21,0,0 +2013,6,26,3,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1914,-9,0,2049,-28,0,0 +2013,8,25,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-6,0,636,-11,0,0 +2013,4,21,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,815,-10,0,0 +2013,10,2,3,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1041,-1,0,1347,-8,0,0 +2013,7,21,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1935,-2,0,2135,-1,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1743,16,1,2009,29,1,0 +2013,10,28,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,800,-3,0,1635,-46,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1740,0,0,2100,-1,0,0 +2013,9,21,6,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1015,1,0,1412,-24,0,0 +2013,10,21,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,852,-8,0,1030,-17,0,0 +2013,6,13,4,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,815,25,1,1124,39,1,0 +2013,10,27,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1400,18,1,1705,6,0,0 +2013,7,4,4,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,1005,-19,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,2,0,2110,-9,0,0 +2013,10,31,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1910,17,1,2010,3,0,0 +2013,8,25,7,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1959,-10,0,2119,1,0,0 +2013,10,17,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,655,-5,0,905,-7,0,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1335,32,1,1435,37,1,0 +2013,10,20,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,840,0,,1210,0,1,1 +2013,9,8,7,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1537,-5,0,1728,-5,0,0 +2013,4,2,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1510,0,0,1640,-13,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1617,14,0,54,38,1,0 +2013,9,7,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1600,14,0,1835,25,1,0 +2013,10,30,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,8,0,1627,-23,0,0 +2013,10,26,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,834,-11,0,0 +2013,9,20,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-3,0,2200,6,0,0 +2013,4,12,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1855,128,1,1940,112,1,0 +2013,4,24,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1935,-11,0,2200,-12,0,0 +2013,7,23,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1231,-4,0,1322,4,0,0 +2013,9,5,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1906,-10,0,2052,-23,0,0 +2013,9,23,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1755,-8,0,1924,-12,0,0 +2013,8,29,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1555,0,0,1710,3,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2000,13,0,2315,12,0,0 +2013,4,3,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1650,1,0,1827,-8,0,0 +2013,4,15,1,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,805,-19,0,0 +2013,6,6,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-4,0,1021,-8,0,0 +2013,5,5,7,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1115,-9,0,1409,-36,0,0 +2013,5,12,7,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,3,0,1817,-1,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,835,52,1,930,57,1,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1915,39,1,35,35,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1920,8,0,2036,-3,0,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1325,-2,0,1435,-13,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,13,0,1253,-3,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,1,0,2059,-10,0,0 +2013,7,10,3,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,107,1,2140,98,1,0 +2013,7,19,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,24,1,1310,19,1,0 +2013,4,23,2,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-9,0,930,-3,0,0 +2013,4,8,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1420,80,1,1450,78,1,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1910,27,1,2057,6,0,0 +2013,4,18,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1920,37,1,2040,29,1,0 +2013,4,21,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,2040,-5,0,2130,-10,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1749,4,0,2034,-5,0,0 +2013,7,28,7,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,735,-1,0,1050,2,0,0 +2013,7,3,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1745,-7,0,2115,-21,0,0 +2013,5,11,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,11,0,1240,10,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,25,1,1830,37,1,0 +2013,5,15,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-3,0,2326,-2,0,0 +2013,4,16,2,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,184,1,1520,191,1,0 +2013,8,29,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-4,0,927,-10,0,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,735,-6,0,825,-5,0,0 +2013,9,27,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1515,0,0,1712,-7,0,0 +2013,6,23,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,905,-5,0,1015,-12,0,0 +2013,6,15,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,1530,11,0,1745,6,0,0 +2013,8,10,6,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1310,33,1,1425,36,1,0 +2013,5,23,4,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1224,2,0,1328,9,0,0 +2013,10,4,5,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,19,1,2020,2,0,0 +2013,10,1,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1357,-8,0,1538,-21,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1100,-5,0,1436,-8,0,0 +2013,6,4,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1620,-3,0,1905,-23,0,0 +2013,9,1,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2010,9,0,2306,19,1,0 +2013,8,4,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,-5,0,2300,-13,0,0 +2013,10,15,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,12,0,1614,0,0,0 +2013,8,10,6,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-4,0,1805,-5,0,0 +2013,10,23,3,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,825,-1,0,1135,-11,0,0 +2013,5,17,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1545,6,0,2135,10,0,0 +2013,4,16,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1820,-5,0,2132,-16,0,0 +2013,8,18,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,9,0,1110,1,0,0 +2013,7,17,3,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1700,-10,0,2141,-23,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1810,4,0,1925,-7,0,0 +2013,4,8,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1013,-4,0,0 +2013,10,28,1,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1600,5,0,1800,8,0,0 +2013,10,12,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,630,332,1,1508,308,1,0 +2013,8,18,7,MQ,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-4,0,1615,-6,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1030,5,0,1255,-3,0,0 +2013,8,8,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,720,-4,0,908,-8,0,0 +2013,10,24,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,-3,0,2135,3,0,0 +2013,9,18,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1048,-5,0,1215,-2,0,0 +2013,4,18,4,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1410,-3,0,1650,-10,0,0 +2013,5,24,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-9,0,931,7,0,0 +2013,6,11,2,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-2,0,2020,-26,0,0 +2013,6,30,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,-1,0,1540,3,0,0 +2013,5,17,5,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,2,0,950,-11,0,0 +2013,6,8,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,908,11,0,1030,-2,0,0 +2013,5,26,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2020,5,0,2325,-15,0,0 +2013,5,31,5,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,848,22,1,1142,39,1,0 +2013,5,14,2,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2025,10,0,2105,7,0,0 +2013,7,11,4,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1015,4,0,1227,1,0,0 +2013,6,3,1,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-9,0,1529,-21,0,0 +2013,5,2,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1026,-6,0,1306,-14,0,0 +2013,9,4,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1605,38,1,1725,42,1,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1440,-3,0,1617,1,0,0 +2013,7,26,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,915,14,0,0 +2013,5,9,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,-3,0,1118,-17,0,0 +2013,7,2,2,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,-1,0,812,-3,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1525,75,1,1740,65,1,0 +2013,4,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,900,5,0,941,12,0,0 +2013,7,28,7,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-8,0,947,-11,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,-3,0,1247,-12,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1055,-4,0,1146,-13,0,0 +2013,9,12,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,739,-5,0,1009,5,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,-3,0,1733,-14,0,0 +2013,7,10,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,44,1,1237,32,1,0 +2013,9,11,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1855,44,1,2205,46,1,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,835,0,0,940,-6,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1825,-3,0,2215,-2,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,-2,0,1114,15,1,0 +2013,10,10,4,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,633,9,0,830,-19,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,14,0,835,8,0,0 +2013,9,11,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,-2,0,625,-16,0,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1700,6,0,2017,0,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1525,15,1,1635,14,0,0 +2013,9,19,4,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2029,214,1,2146,217,1,0 +2013,8,19,1,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,55,-1,0,501,-32,0,0 +2013,10,20,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1117,-4,0,1230,-6,0,0 +2013,9,22,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,39,1,1625,26,1,0 +2013,6,5,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1317,0,0,1440,0,0,0 +2013,10,13,7,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,12,0,1900,4,0,0 +2013,5,11,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1050,-10,0,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-3,0,2159,-3,0,0 +2013,5,10,5,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1710,141,1,1807,139,1,0 +2013,10,26,6,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1435,36,1,2255,23,1,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2140,-2,0,2345,3,0,0 +2013,7,12,5,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,-4,0,1633,-3,0,0 +2013,6,27,4,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,4,0,1435,-18,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1745,5,0,1850,-2,0,0 +2013,4,22,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1325,-3,0,1650,-6,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1048,0,0,1310,-13,0,0 +2013,6,28,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,62,1,2230,71,1,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,806,-14,0,0 +2013,8,14,3,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-6,0,1905,-4,0,0 +2013,5,8,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,32,1,1359,8,0,0 +2013,8,4,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,800,42,1,915,49,1,0 +2013,6,28,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-5,0,936,-9,0,0 +2013,9,22,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1907,0,0,2040,-4,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1208,5,0,1320,3,0,0 +2013,6,15,6,9E,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-6,0,1836,-33,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,-2,0,1045,-46,0,0 +2013,10,17,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,740,-6,0,1048,-25,0,0 +2013,5,3,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,2,0,1300,-11,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1405,14,0,1515,2,0,0 +2013,5,30,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1007,-1,0,0 +2013,10,31,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1510,-1,0,1800,-6,0,0 +2013,8,11,7,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-3,0,950,-8,0,0 +2013,8,12,1,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,14,0,2020,3,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,130,1,1555,127,1,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,817,-2,0,1359,-10,0,0 +2013,4,4,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2135,17,1,2255,16,1,0 +2013,8,22,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-4,0,1634,37,1,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,855,-4,0,1330,-13,0,0 +2013,7,26,5,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,15,1,1455,47,1,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,820,13,0,915,11,0,0 +2013,8,11,7,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,3,0,1335,5,0,0 +2013,7,9,2,9E,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,2030,230,1,2211,198,1,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,78,1,1906,61,1,0 +2013,7,21,7,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1011,-8,0,1259,-9,0,0 +2013,8,29,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,7,0,1130,7,0,0 +2013,7,24,3,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-6,0,900,-11,0,0 +2013,6,27,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,6,0,130,18,1,0 +2013,4,19,5,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1850,28,1,2129,17,1,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,931,-8,0,0 +2013,5,30,4,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,29,1,1815,23,1,0 +2013,9,2,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1214,14,0,1733,16,1,0 +2013,6,12,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,835,-3,0,935,-8,0,0 +2013,8,25,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1325,3,0,1545,-10,0,0 +2013,6,12,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,2,0,1435,-5,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,820,-1,0,945,-8,0,0 +2013,7,31,3,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,915,-13,0,0 +2013,7,11,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,127,5,0,800,-6,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1040,3,0,1215,-7,0,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,0,0,1850,-17,0,0 +2013,5,24,5,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1125,13,0,1715,-4,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,47,1,951,52,1,0 +2013,9,12,4,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1844,241,1,2010,233,1,0 +2013,5,27,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1525,71,1,1720,65,1,0 +2013,9,9,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-6,0,749,-6,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,834,-2,0,1020,-7,0,0 +2013,5,13,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,715,-1,0,920,-23,0,0 +2013,9,12,4,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,79,1,20,81,1,0 +2013,9,14,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,705,-8,0,819,-17,0,0 +2013,6,11,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2209,3,0,2326,11,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1655,16,1,1915,6,0,0 +2013,8,17,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,650,6,0,954,-10,0,0 +2013,9,4,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,737,-4,0,922,-9,0,0 +2013,6,16,7,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1045,-2,0,1155,-10,0,0 +2013,10,31,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1530,37,1,1625,32,1,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2110,172,1,30,156,1,0 +2013,7,12,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,20,1,1650,11,0,0 +2013,8,29,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,0,0,1345,-8,0,0 +2013,5,28,2,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,718,-5,0,848,-3,0,0 +2013,5,2,4,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2228,0,,616,0,1,1 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1350,9,0,1625,44,1,0 +2013,4,3,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,-2,0,1632,-7,0,0 +2013,5,6,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1121,-1,0,1232,-8,0,0 +2013,4,1,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-1,0,2135,-1,0,0 +2013,4,22,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,18,1,1220,8,0,0 +2013,8,8,4,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,610,-1,0,745,-20,0,0 +2013,4,18,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1734,89,1,1850,83,1,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1105,0,0,1420,-13,0,0 +2013,8,1,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,-4,0,2142,0,0,0 +2013,6,2,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-5,0,1340,4,0,0 +2013,9,3,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1443,-7,0,1533,6,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,940,-2,0,1045,-4,0,0 +2013,7,10,3,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-6,0,844,-7,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,725,-3,0,1156,-11,0,0 +2013,8,28,3,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,625,-1,0,635,0,0,0 +2013,4,10,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,8,0,1459,7,0,0 +2013,5,1,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1202,-10,0,1500,-1,0,0 +2013,9,24,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,825,-8,0,1017,0,0,0 +2013,9,3,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,7,0,1954,2,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-5,0,1248,-13,0,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1710,4,0,1928,-8,0,0 +2013,8,28,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1545,230,1,1906,208,1,0 +2013,7,2,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-1,0,1150,-7,0,0 +2013,8,30,5,B6,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2339,0,0,553,0,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2004,0,0,2141,-10,0,0 +2013,7,4,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,726,9,0,944,-7,0,0 +2013,7,9,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2230,-5,0,655,-26,0,0 +2013,6,11,2,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,634,-3,0,845,-17,0,0 +2013,7,29,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1105,61,1,1330,50,1,0 +2013,10,29,2,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,600,0,0,720,-3,0,0 +2013,8,4,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-2,0,1402,17,1,0 +2013,9,12,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-1,0,1220,-1,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-3,0,2002,-2,0,0 +2013,5,15,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,7,0,620,-11,0,0 +2013,5,13,1,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-5,0,754,-8,0,0 +2013,8,1,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,950,-8,0,1119,-8,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1820,88,1,1915,148,1,0 +2013,4,3,3,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,77,1,1915,81,1,0 +2013,7,29,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,2,0,715,5,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1205,21,1,1310,22,1,0 +2013,10,17,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,1,0,1040,-3,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,935,0,0,1205,2,0,0 +2013,7,13,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,0,0,1115,-10,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,15,1,1603,23,1,0 +2013,8,18,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,800,0,0,920,0,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2255,-2,0,2355,-12,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,725,1,0,905,0,0,0 +2013,10,13,7,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1630,4,0,1920,7,0,0 +2013,4,29,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,23,1,1830,10,0,0 +2013,4,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,730,-4,0,900,-12,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1905,-2,0,2113,-4,0,0 +2013,4,5,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1604,3,0,1826,-11,0,0 +2013,5,27,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1219,-2,0,1413,-1,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,2010,76,1,2200,62,1,0 +2013,8,26,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,705,-9,0,1535,-16,0,0 +2013,7,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1845,11,0,2005,3,0,0 +2013,4,5,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-8,0,1801,-7,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1820,1,0,2050,-21,0,0 +2013,10,1,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1935,-4,0,2100,-4,0,0 +2013,6,27,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1035,53,1,1310,44,1,0 +2013,8,18,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1725,1,0,1935,-14,0,0 +2013,6,27,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,4,0,2035,19,1,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2210,-3,0,2300,-4,0,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-8,0,1920,1,0,0 +2013,4,1,1,9E,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1705,-4,0,1838,-6,0,0 +2013,9,9,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1210,1,0,1506,2,0,0 +2013,4,16,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,620,0,0,715,-6,0,0 +2013,8,5,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-5,0,1325,-9,0,0 +2013,6,23,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1238,3,0,2116,-4,0,0 +2013,9,3,2,EV,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1315,85,1,1516,65,1,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,630,-3,0,924,3,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,4,0,1735,24,1,0 +2013,9,19,4,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,16,1,1955,2,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2105,5,0,2155,8,0,0 +2013,10,20,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1937,-2,0,2143,-10,0,0 +2013,6,25,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2300,6,0,707,-4,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1135,-3,0,1520,17,1,0 +2013,5,12,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,605,-6,0,1215,-3,0,0 +2013,10,21,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,-2,0,2320,-17,0,0 +2013,7,14,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,710,-6,0,903,-4,0,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,1,0,1155,-8,0,0 +2013,10,29,2,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1725,-7,0,2013,-20,0,0 +2013,8,31,6,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1417,-2,0,1540,-3,0,0 +2013,7,20,6,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-10,0,919,-6,0,0 +2013,8,1,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-2,0,733,0,0,0 +2013,4,4,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-2,0,1310,-16,0,0 +2013,8,18,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-4,0,1110,-1,0,0 +2013,4,19,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,23,1,1925,12,0,0 +2013,4,1,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1155,8,0,1450,0,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1016,-3,0,1153,-12,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,515,-2,0,720,-22,0,0 +2013,6,19,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-1,0,720,-5,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,7,0,1116,-22,0,0 +2013,8,22,4,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,23,1,1215,12,0,0 +2013,4,28,7,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1200,-5,0,1337,-2,0,0 +2013,5,25,6,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,0,0,2010,-15,0,0 +2013,6,8,6,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-3,0,850,-19,0,0 +2013,7,25,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1235,9,0,1440,3,0,0 +2013,9,14,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1810,-7,0,1920,-26,0,0 +2013,9,23,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1118,4,0,1342,-3,0,0 +2013,6,29,6,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,735,1,0,840,4,0,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1855,-5,0,2210,-12,0,0 +2013,8,13,2,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1327,13,0,1840,22,1,0 +2013,7,7,7,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,0,0,2050,25,1,0 +2013,8,8,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1433,2,0,1650,-20,0,0 +2013,9,28,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,956,-8,0,1140,-7,0,0 +2013,10,14,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2000,-1,0,2315,-2,0,0 +2013,5,30,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,858,-4,0,932,-5,0,0 +2013,5,5,7,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,910,1,0,1045,3,0,0 +2013,4,11,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,1515,11,0,0 +2013,6,19,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,8,0,2025,-5,0,0 +2013,5,11,6,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,38,1,1020,33,1,0 +2013,6,4,2,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,2135,-7,0,2344,-14,0,0 +2013,9,27,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,5,0,1045,1,0,0 +2013,9,29,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1210,-8,0,1520,-19,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1910,86,1,5,76,1,0 +2013,7,15,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1315,11,0,1428,6,0,0 +2013,10,13,7,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,0,0,1235,-2,0,0 +2013,5,22,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,0,0,1030,-1,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-4,0,2204,-11,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1025,2,0,1310,-1,0,0 +2013,10,14,1,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-1,0,1405,-9,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2151,-3,0,2334,-10,0,0 +2013,10,6,7,9E,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1855,-4,0,2245,-2,0,0 +2013,4,15,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,756,-4,0,912,7,0,0 +2013,8,1,4,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1055,0,0,1345,-7,0,0 +2013,9,27,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2002,14,0,2152,2,0,0 +2013,10,15,2,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,640,-2,0,1245,-44,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,842,1,0,1315,8,0,0 +2013,5,25,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,2,0,607,-8,0,0 +2013,8,1,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,21,1,2045,14,0,0 +2013,4,1,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,0,0,720,-1,0,0 +2013,10,1,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,846,-3,0,1039,4,0,0 +2013,5,15,3,US,14893,Sacramento International,Sacramento,CA,11057,Charlotte Douglas International,Charlotte,NC,2259,-7,0,640,3,0,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,2,0,1319,10,0,0 +2013,10,25,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1153,-4,0,1321,1,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1255,-1,0,1355,-11,0,0 +2013,6,9,7,B6,13796,Metropolitan Oakland International,Oakland,CA,10721,Logan International,Boston,MA,2359,-2,0,827,3,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1515,0,0,1745,-2,0,0 +2013,5,14,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,850,-2,0,1010,1,0,0 +2013,4,9,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,610,-1,0,820,-10,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2259,-3,0,107,-5,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1240,48,1,1710,60,1,0 +2013,7,9,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1326,-1,0,1448,-17,0,0 +2013,9,23,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1200,0,0,1215,-4,0,0 +2013,4,29,1,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1930,-7,0,2133,-7,0,0 +2013,7,7,7,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,-2,0,1645,-9,0,0 +2013,9,2,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1735,2,0,1855,3,0,0 +2013,10,7,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2020,-5,0,2145,-22,0,0 +2013,9,9,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,956,-9,0,1140,-8,0,0 +2013,6,27,4,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,740,1,0,920,-15,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2000,83,1,2208,68,1,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,815,14,0,935,18,1,0 +2013,8,13,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-8,0,1420,-26,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1031,1,0,1815,-21,0,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,42,1,2215,34,1,0 +2013,5,11,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-4,0,1252,-11,0,0 +2013,7,10,3,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1810,23,1,1935,12,0,0 +2013,7,30,2,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1310,-5,0,1518,-14,0,0 +2013,10,13,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1546,-4,0,1645,-15,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,5,0,1135,-3,0,0 +2013,8,16,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-8,0,1631,-2,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,7,0,729,7,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1246,-3,0,1841,-5,0,0 +2013,7,28,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13198,Kansas City International,Kansas City,MO,1500,-3,0,1655,-5,0,0 +2013,7,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2039,16,1,2316,-5,0,0 +2013,8,23,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-7,0,1259,-4,0,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1555,10,0,1705,6,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,2,0,1905,-26,0,0 +2013,7,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,935,48,1,1055,43,1,0 +2013,7,11,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1246,-4,0,1527,5,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,0,0,845,9,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,650,-3,0,1055,4,0,0 +2013,10,4,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1915,-2,0,2135,-1,0,0 +2013,5,28,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-1,0,1605,-8,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2035,-7,0,2315,-17,0,0 +2013,5,1,3,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,1,0,2140,3,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1340,4,0,1721,-6,0,0 +2013,7,7,7,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1325,26,1,1525,7,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1455,18,1,1555,15,1,0 +2013,8,16,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,0,,900,0,1,1 +2013,9,20,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1700,-2,0,1746,8,0,0 +2013,5,6,1,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1445,-1,0,1705,-12,0,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1120,45,1,1245,41,1,0 +2013,8,26,1,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1600,58,1,1747,53,1,0 +2013,8,20,2,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,800,0,0,940,15,1,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2135,0,0,2235,-4,0,0 +2013,8,13,2,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,736,-3,0,900,8,0,0 +2013,7,11,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,141,1,2159,143,1,0 +2013,7,2,2,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1435,-6,0,2300,6,0,0 +2013,8,19,1,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2325,27,1,509,31,1,0 +2013,9,6,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1610,-2,0,1727,-4,0,0 +2013,8,5,1,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-8,0,1837,-23,0,0 +2013,5,10,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,825,5,0,1145,22,1,0 +2013,6,17,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,-2,0,1100,-8,0,0 +2013,5,8,3,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1002,-7,0,1504,8,0,0 +2013,7,19,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,-1,0,1515,13,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,-1,0,2012,-19,0,0 +2013,6,29,6,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1336,4,0,1711,6,0,0 +2013,7,11,4,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,1,0,2103,19,1,0 +2013,8,26,1,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1745,-1,0,1945,8,0,0 +2013,10,17,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,0,0,1824,-14,0,0 +2013,8,28,3,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,635,-7,0,838,-8,0,0 +2013,6,10,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,4,0,1010,9,0,0 +2013,6,28,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,635,122,1,917,115,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,15,1,1219,14,0,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,8,0,949,10,0,0 +2013,9,27,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-5,0,1021,-12,0,0 +2013,6,20,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,753,-15,0,0 +2013,10,11,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-2,0,1855,-20,0,0 +2013,5,4,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1455,-6,0,1555,-14,0,0 +2013,4,23,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1150,-3,0,1305,3,0,0 +2013,4,24,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1645,-3,0,1818,-6,0,0 +2013,10,25,5,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-2,0,1540,-12,0,0 +2013,5,25,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,940,-5,0,1744,-2,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,830,0,0,950,-14,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1050,14,0,1750,-3,0,0 +2013,7,4,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,6,0,930,-15,0,0 +2013,10,9,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,-1,0,1837,-1,0,0 +2013,10,2,3,US,10299,Ted Stevens Anchorage International,Anchorage,AK,14107,Phoenix Sky Harbor International,Phoenix,AZ,145,6,0,810,-9,0,0 +2013,6,23,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1520,0,0,1800,-5,0,0 +2013,4,10,3,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,-6,0,1901,-9,0,0 +2013,4,11,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1548,11,0,1820,9,0,0 +2013,8,10,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,625,1,0,1243,-3,0,0 +2013,10,25,5,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,935,-4,0,1037,-13,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,810,146,1,931,150,1,0 +2013,8,30,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,842,-2,0,1003,-5,0,0 +2013,8,15,4,DL,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,630,17,1,752,8,0,0 +2013,10,10,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,14,0,1830,11,0,0 +2013,10,8,2,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1945,-2,0,2235,-14,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,750,-4,0,900,2,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,952,6,0,1456,-15,0,0 +2013,4,30,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1255,-1,0,1546,2,0,0 +2013,9,4,3,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1712,-8,0,1850,-19,0,0 +2013,8,23,5,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1940,-2,0,2225,-6,0,0 +2013,5,24,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-2,0,1127,2,0,0 +2013,9,27,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,630,5,0,1208,-15,0,0 +2013,10,30,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1647,-6,0,1754,23,1,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1250,7,0,1430,-3,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,950,-6,0,1208,-2,0,0 +2013,5,12,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-4,0,1348,5,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1720,1,0,1815,2,0,0 +2013,5,4,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1755,-4,0,1905,-9,0,0 +2013,7,18,4,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2257,-4,0,704,-15,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1630,-1,0,1815,-7,0,0 +2013,9,8,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,-6,0,1425,-11,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,72,1,1504,71,1,0 +2013,6,28,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1530,0,,1735,0,1,1 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1630,1,0,1815,-5,0,0 +2013,4,28,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,935,-7,0,1145,-36,0,0 +2013,4,19,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1020,43,1,1035,56,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,-1,0,1443,1,0,0 +2013,4,29,1,UA,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,910,5,0,1029,-2,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1055,5,0,1615,11,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1820,-5,0,1956,-13,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1005,-2,0,1215,-18,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,857,2,0,1027,8,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1742,6,0,1823,-5,0,0 +2013,4,17,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,935,7,0,1055,-8,0,0 +2013,8,7,3,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1750,13,0,1935,-6,0,0 +2013,5,25,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,33,1,1500,38,1,0 +2013,7,23,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,820,-1,0,959,-18,0,0 +2013,10,7,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,711,-5,0,851,-3,0,0 +2013,4,14,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,3,0,1211,-12,0,0 +2013,5,21,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1849,-5,0,2017,-10,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,-1,0,1548,-22,0,0 +2013,4,30,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,-7,0,1200,12,0,0 +2013,9,6,5,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-6,0,953,-31,0,0 +2013,7,16,2,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1935,20,1,2125,24,1,0 +2013,7,8,1,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1155,9,0,1420,-12,0,0 +2013,7,21,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,34,1,2100,29,1,0 +2013,8,18,7,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-4,0,917,-10,0,0 +2013,10,10,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1359,-3,0,1507,0,0,0 +2013,9,18,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1514,-11,0,1735,-26,0,0 +2013,7,4,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,-1,0,1630,-23,0,0 +2013,7,14,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1100,5,0,1503,2,0,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,2142,1,0,2302,-18,0,0 +2013,10,15,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1310,0,0,1445,25,1,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,5,0,1615,3,0,0 +2013,8,24,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1709,-2,0,2034,-32,0,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,835,-3,0,1040,-6,0,0 +2013,4,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1220,0,0,1741,1,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1345,-1,0,1551,-8,0,0 +2013,10,30,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1640,19,1,1925,5,0,0 +2013,5,9,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1830,21,1,1905,16,1,0 +2013,9,26,4,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1250,-8,0,1400,-23,0,0 +2013,6,27,4,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-1,0,1815,-12,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,6,0,1450,-4,0,0 +2013,6,15,6,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,4,0,1314,15,1,0 +2013,5,21,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2245,-1,0,705,10,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1220,0,0,1240,1,0,0 +2013,8,13,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,68,1,2040,58,1,0 +2013,5,15,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,849,-11,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1354,32,1,1642,13,0,0 +2013,10,6,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,850,-1,0,919,16,1,0 +2013,8,22,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,910,-6,0,1731,-23,0,0 +2013,6,13,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1825,14,0,2055,41,1,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,605,-1,0,720,-4,0,0 +2013,7,29,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1710,-10,0,1946,-4,0,0 +2013,9,7,6,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1255,-1,0,1905,-7,0,0 +2013,5,17,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1355,-8,0,1455,-9,0,0 +2013,9,10,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-5,0,755,-14,0,0 +2013,7,4,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,610,-6,0,1220,-11,0,0 +2013,6,15,6,EV,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1027,-5,0,1152,-12,0,0 +2013,5,12,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1050,-5,0,1209,-8,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1010,4,0,1240,7,0,0 +2013,7,21,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-1,0,1500,-12,0,0 +2013,10,25,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1355,36,1,1900,18,1,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2039,-6,0,2147,-7,0,0 +2013,6,4,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-7,0,2025,-3,0,0 +2013,4,4,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1910,15,1,2115,8,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1435,1,0,1555,0,0,0 +2013,4,5,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1328,20,1,1544,2,0,0 +2013,9,17,2,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1006,-2,0,1713,-8,0,0 +2013,9,16,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,755,39,1,1035,52,1,0 +2013,7,18,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2245,73,1,614,60,1,0 +2013,5,5,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,0,0,1015,-28,0,0 +2013,4,10,3,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1002,-5,0,1308,-14,0,0 +2013,5,28,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1610,-12,0,1640,0,0,0 +2013,10,8,2,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1215,19,1,1255,10,0,0 +2013,8,18,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-5,0,1356,-7,0,0 +2013,4,12,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,3,0,1440,-1,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1650,40,1,1805,47,1,0 +2013,6,11,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,26,1,19,24,1,0 +2013,4,27,6,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,-4,0,1337,-6,0,0 +2013,4,9,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,23,1,925,30,1,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1525,31,1,1650,47,1,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2320,-1,0,610,-5,0,0 +2013,8,4,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,14,0,1259,1,0,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,11,0,1411,11,0,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,-3,0,1708,-7,0,0 +2013,7,7,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,3,0,2030,-7,0,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2205,24,1,2257,12,0,0 +2013,8,10,6,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,925,0,0,1210,-15,0,0 +2013,7,6,6,EV,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,808,-9,0,921,-13,0,0 +2013,6,7,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1633,6,0,1741,37,1,0 +2013,10,13,7,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-5,0,2132,-13,0,0 +2013,5,23,4,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1645,105,1,1851,161,1,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1740,-5,0,1902,-16,0,0 +2013,9,10,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1915,-5,0,2035,-15,0,0 +2013,9,27,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1436,-4,0,1808,-1,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-1,0,1150,12,0,0 +2013,6,24,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1850,322,1,2138,305,1,0 +2013,7,16,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,834,-5,0,1023,-12,0,0 +2013,5,4,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,-10,0,2135,-1,0,0 +2013,7,31,3,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,6,0,1930,-11,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2111,4,0,2356,3,0,0 +2013,10,15,2,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2035,7,0,2340,3,0,0 +2013,8,13,2,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-4,0,904,-15,0,0 +2013,5,2,4,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1155,-1,0,1515,4,0,0 +2013,4,11,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,-4,0,2153,1,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,31,1,10,30,1,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1015,0,0,1534,13,0,0 +2013,10,18,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2115,6,0,2310,-16,0,0 +2013,8,6,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1109,-6,0,1449,-14,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-3,0,945,5,0,0 +2013,8,14,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,620,-2,0,745,-19,0,0 +2013,4,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-3,0,1903,-14,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-3,0,2355,13,0,0 +2013,8,28,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2040,56,1,2154,48,1,0 +2013,8,19,1,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,900,-9,0,1153,2,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,-4,0,920,-5,0,0 +2013,8,7,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,0,0,635,-22,0,0 +2013,7,21,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1100,-4,0,1524,-3,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,21,1,1257,6,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1100,27,1,1315,30,1,0 +2013,6,22,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13244,Memphis International,Memphis,TN,130,-4,0,732,-1,0,0 +2013,7,1,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,-5,0,930,-9,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1835,0,0,2036,-21,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2105,25,1,2210,17,1,0 +2013,7,10,3,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1845,7,0,19,4,0,0 +2013,5,28,2,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,940,13,0,1042,8,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,800,71,1,1045,61,1,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1550,6,0,1801,1,0,0 +2013,5,9,4,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1112,-3,0,1205,-3,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1630,-6,0,2010,-1,0,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,600,-2,0,915,-1,0,0 +2013,10,17,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2100,15,1,2150,8,0,0 +2013,8,24,6,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1010,31,1,1322,30,1,0 +2013,7,5,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1430,-1,0,1700,2,0,0 +2013,8,1,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,551,2,0,700,-7,0,0 +2013,5,3,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1025,134,1,1035,144,1,0 +2013,8,30,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,920,-9,0,1055,-7,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2000,40,1,2300,32,1,0 +2013,8,18,7,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1315,64,1,1900,64,1,0 +2013,10,12,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,-6,0,755,-22,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1515,13,0,1830,10,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,600,5,0,700,0,0,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2025,-2,0,2105,2,0,0 +2013,5,26,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-7,0,1959,-21,0,0 +2013,9,28,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,-10,0,2214,-29,0,0 +2013,9,6,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1630,-6,0,1810,-21,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-2,0,1640,7,0,0 +2013,5,18,6,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1236,-1,0,1830,-8,0,0 +2013,7,18,4,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,15,1,2355,17,1,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,8,0,2125,0,0,0 +2013,4,23,2,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,2040,-6,0,2330,-4,0,0 +2013,8,18,7,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1440,16,1,2245,19,1,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,0,0,725,4,0,0 +2013,10,29,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1059,-14,0,1223,-25,0,0 +2013,9,3,2,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1156,-3,0,1520,-18,0,0 +2013,6,2,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1855,59,1,2120,52,1,0 +2013,4,11,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1845,85,1,2017,75,1,0 +2013,6,15,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,855,-2,0,1010,-1,0,0 +2013,8,24,6,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,545,25,1,655,6,0,0 +2013,6,28,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2059,152,1,2226,148,1,0 +2013,9,19,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1355,-7,0,1615,0,0,0 +2013,10,31,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1605,-5,0,1800,-11,0,0 +2013,8,1,4,OO,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2105,12,0,2311,28,1,0 +2013,4,25,4,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1615,21,1,1855,28,1,0 +2013,9,22,7,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,900,-1,0,1210,-16,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,745,0,0,1239,-7,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,905,0,0,1420,14,0,0 +2013,5,25,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1135,-1,0,1250,-7,0,0 +2013,8,31,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1450,38,1,1610,17,1,0 +2013,8,7,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1400,4,0,1504,56,1,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,53,1,2253,28,1,0 +2013,6,9,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1212,-3,0,1508,1,0,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-4,0,1525,-8,0,0 +2013,4,8,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,28,1,1120,24,1,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1032,-6,0,1350,-18,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,8,0,1417,17,1,0 +2013,7,20,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-2,0,1520,13,0,0 +2013,5,5,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,0,0,1515,20,1,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1350,1,0,1550,9,0,0 +2013,7,24,3,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1708,43,1,1953,52,1,0 +2013,7,17,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1454,-5,0,1635,-18,0,0 +2013,10,4,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,1209,-5,0,0 +2013,10,20,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1500,-11,0,1801,-11,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1435,3,0,1805,-15,0,0 +2013,10,25,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1625,5,0,1831,14,0,0 +2013,8,8,4,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,623,-7,0,1034,-27,0,0 +2013,8,11,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,-1,0,2153,11,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1400,67,1,2232,120,1,0 +2013,10,22,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-8,0,1939,-6,0,0 +2013,6,28,5,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,822,49,1,1630,75,1,0 +2013,8,17,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1042,-3,0,1328,-21,0,0 +2013,6,9,7,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,535,-3,0,711,-13,0,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,-6,0,1510,-4,0,0 +2013,7,26,5,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-2,0,2010,-15,0,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,-2,0,2249,-14,0,0 +2013,4,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,8,0,1105,10,0,0 +2013,6,20,4,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,845,-1,0,1125,-7,0,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,-1,0,2035,-14,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1610,0,0,1744,6,0,0 +2013,9,18,3,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1015,-3,0,1115,-10,0,0 +2013,5,10,5,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1525,6,0,1620,11,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-2,0,2130,-16,0,0 +2013,10,14,1,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,800,-6,0,1052,-22,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,830,0,0,1121,38,1,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,1435,-1,0,1625,-19,0,0 +2013,8,10,6,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1020,8,0,1200,-7,0,0 +2013,6,30,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,-5,0,1735,29,1,0 +2013,4,5,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,748,-4,0,931,-19,0,0 +2013,10,20,7,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1100,-13,0,1505,-31,0,0 +2013,6,17,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1205,0,0,1350,-13,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,12,0,2233,-7,0,0 +2013,6,1,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,941,-17,0,0 +2013,6,10,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,1,0,1021,18,1,0 +2013,9,19,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1650,31,1,1755,30,1,0 +2013,7,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1635,23,1,1827,14,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1805,33,1,1935,35,1,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-11,0,2342,-12,0,0 +2013,7,18,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1055,6,0,1150,9,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-4,0,2325,-15,0,0 +2013,8,27,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,8,0,832,-1,0,0 +2013,9,2,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,30,1,1814,7,0,0 +2013,9,3,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,855,0,0,1020,-4,0,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2118,-2,0,2344,-7,0,0 +2013,4,17,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,10,0,1315,12,0,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1015,19,1,1150,10,0,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-4,0,1625,4,0,0 +2013,6,11,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1555,-3,0,1828,-13,0,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1935,38,1,2040,37,1,0 +2013,7,17,3,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1445,0,0,0 +2013,6,20,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-1,0,810,-11,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1630,-1,0,2355,-23,0,0 +2013,6,19,3,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2205,-4,0,557,8,0,0 +2013,10,11,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1805,-10,0,2045,-12,0,0 +2013,7,28,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,13,0,1650,7,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,734,-1,0,912,-13,0,0 +2013,10,31,4,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,755,14,0,1546,1,0,0 +2013,5,9,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,850,4,0,1025,24,1,0 +2013,6,29,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,60,1,2140,61,1,0 +2013,8,16,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,11,0,2040,0,0,0 +2013,7,21,7,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-5,0,1609,-8,0,0 +2013,10,13,7,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1335,-9,0,1513,-16,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-2,0,1155,13,0,0 +2013,10,10,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1343,-3,0,1456,-6,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,-7,0,1120,-20,0,0 +2013,8,24,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1645,-5,0,1800,-7,0,0 +2013,6,11,2,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1515,34,1,1635,28,1,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,-4,0,1425,-4,0,0 +2013,7,15,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1635,-5,0,1805,-10,0,0 +2013,9,28,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,800,-6,0,1605,-14,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1516,28,1,1650,15,1,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,928,8,0,1027,-8,0,0 +2013,5,26,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,9,0,2107,10,0,0 +2013,5,20,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1558,7,0,1938,2,0,0 +2013,7,4,4,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1210,12,0,1435,2,0,0 +2013,9,26,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-4,0,941,-4,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1055,-1,0,1229,-11,0,0 +2013,4,3,3,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,705,-4,0,922,-4,0,0 +2013,8,21,3,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1125,-2,0,1335,2,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1424,0,0,1506,-13,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1755,3,0,2350,-3,0,0 +2013,6,13,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,18,1,1115,36,1,0 +2013,4,1,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,625,1,0,820,-13,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1320,20,1,1453,30,1,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,90,1,1421,77,1,0 +2013,4,23,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1913,-3,0,2135,-10,0,0 +2013,6,26,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,31,1,2042,18,1,0 +2013,4,23,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,935,-4,0,1105,-12,0,0 +2013,6,29,6,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,722,-2,0,1021,0,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,1,0,1310,2,0,0 +2013,5,13,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1935,-3,0,2050,-6,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2005,9,0,2315,-3,0,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,5,0,2310,32,1,0 +2013,4,9,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1145,59,1,1330,41,1,0 +2013,5,26,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2038,8,0,2127,7,0,0 +2013,10,25,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1020,-3,0,1211,-2,0,0 +2013,9,10,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1325,6,0,1450,1,0,0 +2013,10,5,6,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1715,-1,0,2141,-2,0,0 +2013,7,23,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1117,-3,0,1635,-8,0,0 +2013,6,17,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1420,-1,0,1657,-6,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-7,0,1505,-12,0,0 +2013,9,10,2,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,820,18,1,1121,9,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,815,-4,0,922,-9,0,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1417,-4,0,1508,-23,0,0 +2013,6,30,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2040,262,1,2313,244,1,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,-4,0,1704,-10,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1010,-1,0,1310,-5,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-2,0,1805,-10,0,0 +2013,7,24,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1040,-1,0,1905,-14,0,0 +2013,8,23,5,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,710,-3,0,815,-6,0,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,92,1,1515,102,1,0 +2013,10,30,3,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,2,0,2055,5,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,950,-2,0,1230,-13,0,0 +2013,5,29,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,0,0,1230,-9,0,0 +2013,8,24,6,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,0,0,833,7,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1355,33,1,1520,36,1,0 +2013,6,14,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,59,1,831,53,1,0 +2013,10,3,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1430,-8,0,1610,-2,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,-3,0,1103,-18,0,0 +2013,7,19,5,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1355,9,0,1700,1,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,900,2,0,1127,5,0,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1130,-1,0,1230,-14,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-9,0,1643,15,1,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1225,-5,0,1502,-14,0,0 +2013,6,5,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,18,1,1320,9,0,0 +2013,7,4,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-9,0,755,-14,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1622,20,1,1801,-8,0,0 +2013,5,8,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1010,32,1,1135,26,1,0 +2013,8,30,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1800,-2,0,1919,-6,0,0 +2013,9,18,3,EV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1215,-1,0,1407,3,0,0 +2013,8,18,7,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,600,-5,0,840,-4,0,0 +2013,9,23,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-7,0,2210,-21,0,0 +2013,10,27,7,9E,12953,LaGuardia,New York,NY,12451,Jacksonville International,Jacksonville,FL,805,-7,0,1047,-7,0,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,810,0,0,936,-3,0,0 +2013,10,25,5,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1134,-4,0,1343,-1,0,0 +2013,8,1,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1055,6,0,1445,3,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,835,3,0,1050,-3,0,0 +2013,9,4,3,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1540,2,0,1705,-8,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2210,-1,0,30,-18,0,0 +2013,9,13,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1935,-1,0,2158,3,0,0 +2013,8,29,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,730,0,0,825,-4,0,0 +2013,10,26,6,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,959,-3,0,1144,27,1,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,1,0,1330,-8,0,0 +2013,10,25,5,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-11,0,1450,-19,0,0 +2013,9,8,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1501,59,1,1600,52,1,0 +2013,8,3,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1725,258,1,1845,241,1,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1310,58,1,1735,61,1,0 +2013,4,8,1,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-5,0,1027,-12,0,0 +2013,7,3,3,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1640,-9,0,1840,-9,0,0 +2013,10,16,3,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,-2,0,2057,-20,0,0 +2013,5,12,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1220,6,0,1410,-3,0,0 +2013,6,19,3,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,36,1,2314,30,1,0 +2013,10,22,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1635,-10,0,1835,-33,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-3,0,1545,-5,0,0 +2013,7,8,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,47,1,1934,50,1,0 +2013,4,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1535,-2,0,1755,-10,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,1,0,828,17,1,0 +2013,4,9,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2155,-2,0,48,-17,0,0 +2013,6,6,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,34,1,2210,30,1,0 +2013,10,31,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-6,0,824,-16,0,0 +2013,7,9,2,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1035,-2,0,1300,-6,0,0 +2013,6,24,1,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,740,-4,0,920,-9,0,0 +2013,5,8,3,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,-9,0,1640,9,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,8,0,1251,-9,0,0 +2013,9,10,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1430,5,0,1610,-1,0,0 +2013,9,5,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2035,20,1,2223,10,0,0 +2013,10,23,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1205,-2,0,1330,8,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,15,1,1705,20,1,0 +2013,9,20,5,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2045,1,0,2317,8,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1940,28,1,2240,22,1,0 +2013,10,26,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1350,3,0,1500,-3,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1225,-3,0,1747,-9,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,5,0,1150,-6,0,0 +2013,9,18,3,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1148,-5,0,1412,-2,0,0 +2013,7,23,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1935,-16,0,2058,-4,0,0 +2013,9,15,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,2,0,1455,-3,0,0 +2013,7,5,5,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-4,0,1155,-12,0,0 +2013,8,9,5,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,950,-8,0,1130,-19,0,0 +2013,4,14,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1430,67,1,1624,83,1,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2010,-2,0,2225,-2,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,12,0,1310,13,0,0 +2013,7,29,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1205,1,0,1350,-10,0,0 +2013,9,12,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1220,8,0,1250,11,0,0 +2013,9,23,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1330,55,1,1439,28,1,0 +2013,7,17,3,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1145,-3,0,1241,-6,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,40,1,1915,35,1,0 +2013,7,17,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-5,0,1604,-3,0,0 +2013,7,6,6,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1518,8,0,1739,0,0,0 +2013,6,7,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,827,-11,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-2,0,1118,6,0,0 +2013,8,1,4,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-3,0,1040,-3,0,0 +2013,5,22,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,0,0,1027,-17,0,0 +2013,6,18,2,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-9,0,1126,-29,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,17,1,1615,6,0,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,-7,0,830,-9,0,0 +2013,4,7,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1955,7,0,2221,11,0,0 +2013,8,23,5,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1530,-7,0,1714,-25,0,0 +2013,10,10,4,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2055,-1,0,515,-26,0,0 +2013,7,5,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2135,48,1,2325,34,1,0 +2013,5,7,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,-1,0,1709,-9,0,0 +2013,7,24,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1709,70,1,1954,67,1,0 +2013,7,13,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,604,107,1,845,127,1,0 +2013,7,18,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,5,0,835,-7,0,0 +2013,9,3,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-7,0,730,-20,0,0 +2013,5,30,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1745,292,1,1849,357,1,0 +2013,4,6,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1125,0,0,1345,13,0,0 +2013,7,25,4,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,814,-6,0,1106,-8,0,0 +2013,6,14,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,6,0,1916,43,1,0 +2013,9,16,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,-3,0,1049,-3,0,0 +2013,5,12,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1400,-7,0,1550,-13,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-5,0,1351,-3,0,0 +2013,6,16,7,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-4,0,2005,-9,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,40,1,2222,30,1,0 +2013,6,4,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1928,-1,0,2140,-5,0,0 +2013,10,11,5,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,39,1,2152,39,1,0 +2013,7,10,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,735,-8,0,840,14,0,0 +2013,9,11,3,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,955,-8,0,1135,-20,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,19,1,1717,7,0,0 +2013,10,23,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-9,0,810,-13,0,0 +2013,7,8,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-2,0,1821,-9,0,0 +2013,5,30,4,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1250,-7,0,1525,-11,0,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,-4,0,1115,-18,0,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1150,3,0,1320,18,1,0 +2013,7,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1345,1,0,1710,-7,0,0 +2013,9,26,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,956,9,0,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2014,-3,0,2325,-20,0,0 +2013,5,6,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1540,5,0,1625,-5,0,0 +2013,4,9,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,-7,0,1504,-18,0,0 +2013,9,13,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1636,-8,0,1921,3,0,0 +2013,10,21,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2155,-6,0,2310,1,0,0 +2013,7,21,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,2035,136,1,2052,127,1,0 +2013,9,6,5,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1550,0,0,1730,3,0,0 +2013,5,17,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-7,0,2249,-10,0,0 +2013,8,14,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2335,-1,0,609,-12,0,0 +2013,10,24,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,900,-2,0,1255,-15,0,0 +2013,10,4,5,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,810,-5,0,1111,-20,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1910,87,1,2050,83,1,0 +2013,7,14,7,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,-1,0,1645,-10,0,0 +2013,4,6,6,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1140,-4,0,1510,-10,0,0 +2013,9,10,2,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-2,0,1402,-2,0,0 +2013,4,20,6,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,735,2,0,825,2,0,0 +2013,8,6,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1000,-9,0,1335,-18,0,0 +2013,5,1,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,21,1,1055,12,0,0 +2013,9,24,2,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-2,0,1905,-2,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1030,57,1,1335,41,1,0 +2013,10,30,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,850,-6,0,1010,3,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1945,74,1,2140,62,1,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1940,0,0,2110,-3,0,0 +2013,5,28,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,845,18,1,1020,17,1,0 +2013,7,17,3,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,9,0,902,13,0,0 +2013,8,31,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,-3,0,1444,2,0,0 +2013,6,12,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1315,1,0,1455,-6,0,0 +2013,7,25,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-3,0,1940,-5,0,0 +2013,10,12,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1436,-4,0,1835,-14,0,0 +2013,6,2,7,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1925,108,1,2043,104,1,0 +2013,5,23,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-4,0,755,-7,0,0 +2013,9,26,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,53,1,2015,41,1,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1840,30,1,2245,16,1,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-5,0,1030,-15,0,0 +2013,6,27,4,OO,13851,Will Rogers World,Oklahoma City,OK,14771,San Francisco International,San Francisco,CA,605,-1,0,735,-17,0,0 +2013,9,12,4,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1620,0,0,1754,0,0,0 +2013,6,25,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-8,0,2025,-9,0,0 +2013,9,18,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1628,-5,0,1855,-6,0,0 +2013,9,7,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1630,7,0,1954,-44,0,0 +2013,7,12,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,720,41,1,940,53,1,0 +2013,7,21,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,-1,0,1535,4,0,0 +2013,10,6,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,10,0,1555,22,1,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-3,0,1927,7,0,0 +2013,8,14,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1040,7,0,1916,11,0,0 +2013,9,30,1,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1457,-9,0,1620,-4,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,7,0,2335,-22,0,0 +2013,8,8,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-1,0,845,-12,0,0 +2013,7,27,6,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,830,5,0,945,-1,0,0 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,5,0,1709,2,0,0 +2013,6,16,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,4,0,1857,3,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1645,0,,2105,0,1,1 +2013,10,18,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1055,-4,0,1320,-18,0,0 +2013,6,25,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,89,1,2105,81,1,0 +2013,7,5,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1730,6,0,1800,4,0,0 +2013,9,14,6,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,623,-4,0,932,-20,0,0 +2013,7,25,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,-3,0,829,-10,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,5,0,1520,-11,0,0 +2013,7,20,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,28,1,1645,19,1,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,-8,0,1155,-4,0,0 +2013,9,23,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2137,-5,0,2322,-17,0,0 +2013,10,16,3,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1855,-3,0,2205,-9,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-1,0,1913,-10,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,-3,0,1025,-24,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2005,27,1,2139,17,1,0 +2013,7,22,1,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1805,-1,0,1840,-8,0,0 +2013,6,30,7,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1825,2,0,2145,-35,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,1,0,1913,-7,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-3,0,1040,-4,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,843,1,0,1108,6,0,0 +2013,8,11,7,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,13,0,2110,13,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,600,31,1,915,22,1,0 +2013,10,30,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1211,-5,0,1341,-11,0,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,711,8,0,1143,2,0,0 +2013,5,15,3,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1900,0,0,2158,-11,0,0 +2013,4,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,16,1,1307,10,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,23,1,2140,18,1,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,3,0,2117,-6,0,0 +2013,7,5,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,3,0,1943,19,1,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,8,0,1330,10,0,0 +2013,9,7,6,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,734,-12,0,1102,-6,0,0 +2013,6,24,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,630,-4,0,740,-19,0,0 +2013,6,27,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1214,-9,0,0 +2013,6,2,7,WN,14679,San Diego International,San Diego,CA,15016,Lambert-St. Louis International,St. Louis,MO,730,-4,0,1305,-21,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1010,-7,0,1220,1,0,0 +2013,8,5,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1938,35,1,2059,27,1,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-3,0,1355,-7,0,0 +2013,5,30,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,0,0,1017,6,0,0 +2013,7,23,2,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1317,-4,0,1610,2,0,0 +2013,9,29,7,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-7,0,914,-11,0,0 +2013,7,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2125,28,1,2335,30,1,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1135,1,0,1605,-7,0,0 +2013,8,24,6,OO,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1448,2,0,1714,9,0,0 +2013,10,12,6,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,809,-7,0,1133,0,0,0 +2013,6,23,7,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-7,0,2058,-21,0,0 +2013,6,11,2,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1120,36,1,1515,38,1,0 +2013,6,27,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,837,-6,0,938,-9,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1335,-8,0,1655,-14,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1614,-2,0,1735,1,0,0 +2013,9,24,2,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1129,-1,0,1405,-15,0,0 +2013,8,6,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,2025,9,0,2245,9,0,0 +2013,7,9,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1855,18,1,2042,15,1,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10140,Albuquerque International Sunport,Albuquerque,NM,1930,7,0,2113,19,1,0 +2013,8,12,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1115,10,0,1235,4,0,0 +2013,4,24,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,0,0,1645,14,0,0 +2013,6,20,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1015,10,0,1228,-6,0,0 +2013,8,28,3,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1705,-10,0,1932,-11,0,0 +2013,8,19,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,922,0,0,1041,25,1,0 +2013,7,22,1,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2000,73,1,2205,67,1,0 +2013,7,15,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,1,0,1118,-12,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1050,8,0,1720,9,0,0 +2013,7,29,1,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,0,0,2155,-18,0,0 +2013,9,24,2,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1100,-1,0,1233,8,0,0 +2013,10,11,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1201,-2,0,1315,-12,0,0 +2013,9,27,5,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1435,56,1,1610,50,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-3,0,1004,-11,0,0 +2013,8,18,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1725,-7,0,1857,-16,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,730,-1,0,935,3,0,0 +2013,9,22,7,F9,11042,Cleveland-Hopkins International,Cleveland,OH,14122,Pittsburgh International,Pittsburgh,PA,745,-20,0,824,-19,0,0 +2013,4,1,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-12,0,1420,-16,0,0 +2013,7,18,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,2,0,1650,-6,0,0 +2013,6,30,7,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,645,1,0,850,-8,0,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1220,16,1,1635,-12,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2115,0,0,20,3,0,0 +2013,8,17,6,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1158,9,0,1433,-14,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,745,-6,0,1010,1,0,0 +2013,7,15,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,705,-7,0,910,-13,0,0 +2013,8,13,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1415,-4,0,1819,-5,0,0 +2013,7,7,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1206,-5,0,1526,-11,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,530,-1,0,735,-7,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1430,8,0,2000,29,1,0 +2013,9,24,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2054,-9,0,2214,-18,0,0 +2013,5,7,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1423,-4,0,1517,-11,0,0 +2013,8,19,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,3,0,2055,4,0,0 +2013,9,8,7,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1125,0,0,1420,-20,0,0 +2013,8,28,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,655,-5,0,825,-17,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-5,0,1201,-17,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,820,-3,0,833,-5,0,0 +2013,4,15,1,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1029,-5,0,1248,-30,0,0 +2013,9,2,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,932,-5,0,1220,-7,0,0 +2013,9,18,3,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-5,0,1040,-31,0,0 +2013,7,5,5,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,-2,0,2034,7,0,0 +2013,8,15,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,29,1,1148,30,1,0 +2013,7,2,2,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,9,0,1535,12,0,0 +2013,6,19,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,7,0,1503,18,1,0 +2013,10,30,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1700,-5,0,1917,-6,0,0 +2013,8,24,6,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,4,0,1530,-15,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,-4,0,940,-7,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,845,0,0,950,-6,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1935,15,1,2159,13,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-4,0,1428,-3,0,0 +2013,5,2,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1833,-7,0,1940,-13,0,0 +2013,7,19,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1015,7,0,1245,7,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2020,2,0,2105,7,0,0 +2013,4,16,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1835,1,0,2005,-12,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1700,24,1,1820,17,1,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1035,66,1,1355,49,1,0 +2013,5,25,6,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1155,-4,0,1310,-7,0,0 +2013,8,21,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-13,0,840,-23,0,0 +2013,7,23,2,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1300,-13,0,1505,-3,0,0 +2013,10,23,3,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,744,7,0,1049,3,0,0 +2013,10,2,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-7,0,1200,-24,0,0 +2013,4,6,6,9E,12953,LaGuardia,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,-10,0,1426,-16,0,0 +2013,10,11,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,620,0,0,725,2,0,0 +2013,5,2,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,20,1,1945,18,1,0 +2013,4,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2210,-10,0,50,-17,0,0 +2013,9,2,1,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1930,12,0,2223,11,0,0 +2013,4,15,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,925,7,0,1105,15,1,0 +2013,5,30,4,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1450,75,1,1800,86,1,0 +2013,6,15,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1545,11,0,1710,4,0,0 +2013,8,6,2,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-4,0,1355,-10,0,0 +2013,8,26,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,913,81,1,1050,55,1,0 +2013,4,22,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,-4,0,1600,-2,0,0 +2013,4,1,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1525,22,1,1841,14,0,0 +2013,4,9,2,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,745,-6,0,1054,-17,0,0 +2013,4,27,6,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-1,0,745,2,0,0 +2013,9,19,4,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1757,11,0,2014,-5,0,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1247,24,1,1535,13,0,0 +2013,5,25,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1506,-4,0,1553,-8,0,0 +2013,10,2,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2005,9,0,2211,3,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,818,0,0,1037,-7,0,0 +2013,10,18,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1301,2,0,1430,-5,0,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,55,1,1714,40,1,0 +2013,4,19,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,-1,0,1304,-15,0,0 +2013,5,14,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1737,0,0,1849,-12,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2103,-1,0,2207,-14,0,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,1,0,1808,4,0,0 +2013,9,19,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,1045,8,0,0 +2013,6,2,7,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,4,0,1720,16,1,0 +2013,7,23,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,9,0,1745,-5,0,0 +2013,8,29,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-4,0,1349,-6,0,0 +2013,7,9,2,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,757,-20,0,0 +2013,8,8,4,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,20,1,2135,48,1,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,12,0,1840,13,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1420,17,1,1515,9,0,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2210,-3,0,2340,-15,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,34,1,755,34,1,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,6,0,1353,12,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1310,-2,0,1453,-7,0,0 +2013,4,27,6,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1701,-4,0,1830,18,1,0 +2013,7,29,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1649,-6,0,1726,-4,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,935,-3,0,1150,-14,0,0 +2013,4,5,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-4,0,939,-15,0,0 +2013,7,7,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,735,-1,0,908,-4,0,0 +2013,7,31,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,-3,0,1835,-24,0,0 +2013,7,24,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,615,-3,0,750,1,0,0 +2013,4,21,7,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-3,0,1538,-15,0,0 +2013,7,18,4,DL,13244,Memphis International,Memphis,TN,14747,Seattle/Tacoma International,Seattle,WA,1940,25,1,2212,5,0,0 +2013,5,3,5,FL,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1832,2,0,2000,-11,0,0 +2013,8,10,6,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1720,28,1,1935,23,1,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,7,0,1251,14,0,0 +2013,8,18,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1016,-1,0,1247,3,0,0 +2013,7,11,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,810,-1,0,930,-9,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,815,-2,0,925,-1,0,0 +2013,8,2,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1925,4,0,1959,6,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,735,-8,0,1002,-21,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-2,0,1301,-10,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,605,-2,0,839,-5,0,0 +2013,7,20,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,900,29,1,1114,14,0,0 +2013,6,1,6,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1236,-5,0,1401,-11,0,0 +2013,8,29,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-5,0,817,13,0,0 +2013,7,5,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-9,0,1911,-6,0,0 +2013,4,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1809,198,1,2111,173,1,0 +2013,6,1,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1830,0,0,1957,-16,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,-1,0,1847,-9,0,0 +2013,7,10,3,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,100,1,2050,91,1,0 +2013,9,29,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,8,0,1855,-4,0,0 +2013,5,6,1,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,959,11,0,1259,-15,0,0 +2013,5,3,5,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2356,-1,0,810,11,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1700,21,1,1840,15,1,0 +2013,9,8,7,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2005,-7,0,2130,-18,0,0 +2013,8,5,1,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,68,1,625,60,1,0 +2013,7,14,7,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1940,25,1,2055,23,1,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,623,16,1,1150,7,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2250,-5,0,612,7,0,0 +2013,9,29,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,925,0,0,1045,-6,0,0 +2013,9,10,2,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1820,-3,0,1845,-10,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2300,1,0,2350,-1,0,0 +2013,5,9,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1338,90,1,1454,88,1,0 +2013,5,4,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,800,-10,0,920,-27,0,0 +2013,9,14,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1530,11,0,1635,3,0,0 +2013,8,12,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-8,0,929,-20,0,0 +2013,8,26,1,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,4,0,605,12,0,0 +2013,4,15,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2120,-3,0,2240,-7,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1946,-7,0,2110,-17,0,0 +2013,4,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,2,0,1000,3,0,0 +2013,4,20,6,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,-7,0,1935,-16,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1955,17,1,2229,25,1,0 +2013,4,14,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1838,18,1,2128,19,1,0 +2013,9,3,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,810,4,0,930,2,0,0 +2013,5,11,6,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-2,0,2035,-10,0,0 +2013,7,20,6,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,545,-8,0,859,-29,0,0 +2013,7,18,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-10,0,830,-4,0,0 +2013,7,19,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,829,116,1,950,106,1,0 +2013,5,22,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1520,0,0,1640,-7,0,0 +2013,10,13,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1324,-6,0,1414,3,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1445,-1,0,1720,-19,0,0 +2013,7,4,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1550,1,0,2352,10,0,0 +2013,8,7,3,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1108,-4,0,1259,-16,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1500,-4,0,1820,-23,0,0 +2013,7,4,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,956,-3,0,1600,-3,0,0 +2013,6,15,6,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1725,-8,0,2047,-6,0,0 +2013,4,13,6,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,117,1,1735,110,1,0 +2013,4,28,7,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,1045,-1,0,1135,-4,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1529,-2,0,1723,3,0,0 +2013,10,31,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,3,0,1115,0,0,0 +2013,6,4,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,820,13,0,938,-7,0,0 +2013,6,7,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1055,30,1,1225,8,0,0 +2013,8,11,7,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1525,-3,0,1817,-13,0,0 +2013,7,28,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1525,21,1,1550,29,1,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-1,0,1340,-7,0,0 +2013,5,13,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,8,0,1125,-2,0,0 +2013,6,17,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1020,0,,1228,0,1,1 +2013,9,27,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-6,0,2005,-12,0,0 +2013,7,24,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,1,0,1737,1,0,0 +2013,8,25,7,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-4,0,1145,-9,0,0 +2013,6,4,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,-3,0,1942,-10,0,0 +2013,8,12,1,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,800,8,0,1025,6,0,0 +2013,9,16,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1300,-7,0,1415,-3,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,730,-3,0,923,-3,0,0 +2013,8,20,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,23,1,1515,20,1,0 +2013,7,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1430,21,1,2030,13,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,168,1,1135,175,1,0 +2013,6,30,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1006,-13,0,1140,-9,0,0 +2013,4,2,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,-1,0,1405,-10,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,2055,33,1,16,34,1,0 +2013,9,9,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2030,10,0,2110,9,0,0 +2013,4,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1658,2,0,1758,-2,0,0 +2013,10,19,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1228,-2,0,1303,-1,0,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1539,5,0,1647,-5,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1100,-5,0,1415,-9,0,0 +2013,6,5,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1720,7,0,1859,-14,0,0 +2013,6,5,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-8,0,1119,-8,0,0 +2013,5,2,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,615,-6,0,905,-7,0,0 +2013,4,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,847,39,1,1059,28,1,0 +2013,4,27,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,939,7,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1255,-5,0,1410,-4,0,0 +2013,8,21,3,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,11,0,1300,17,1,0 +2013,8,8,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,752,-6,0,918,-12,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2156,1,0,2359,0,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1810,18,1,2009,15,1,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2304,1,0,2359,4,0,0 +2013,10,24,4,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,852,16,1,1216,39,1,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1146,22,1,1622,4,0,0 +2013,4,27,6,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1154,-9,0,1343,0,0,0 +2013,7,4,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2040,-6,0,2145,-11,0,0 +2013,7,10,3,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,600,-1,0,705,-10,0,0 +2013,9,27,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1730,17,1,1935,6,0,0 +2013,10,4,5,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2115,19,1,2344,9,0,0 +2013,9,20,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,755,49,1,1000,65,1,0 +2013,9,26,4,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,705,-1,0,755,-1,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-2,0,1029,2,0,0 +2013,10,1,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,-3,0,1905,12,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1120,-5,0,1550,-11,0,0 +2013,8,12,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1819,-18,0,2110,-34,0,0 +2013,10,24,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,640,-3,0,930,10,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,635,-9,0,1330,-22,0,0 +2013,8,7,3,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,2350,-7,0,535,-11,0,0 +2013,5,12,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1030,-4,0,1055,0,0,0 +2013,8,17,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1355,0,0,1515,4,0,0 +2013,10,12,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1115,62,1,1150,50,1,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1749,9,0,2024,-2,0,0 +2013,8,6,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2100,4,0,2225,-1,0,0 +2013,4,3,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1904,-7,0,2036,-19,0,0 +2013,7,15,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,0,0,936,14,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,735,-2,0,1005,5,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,835,-4,0,1005,1,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2235,14,0,2355,10,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,844,11,0,1041,8,0,0 +2013,9,26,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1345,-6,0,1532,-9,0,0 +2013,7,31,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-5,0,1116,-17,0,0 +2013,8,3,6,B6,13796,Metropolitan Oakland International,Oakland,CA,10721,Logan International,Boston,MA,2359,119,1,822,99,1,0 +2013,10,25,5,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-8,0,505,-16,0,0 +2013,6,25,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,-7,0,2010,-8,0,0 +2013,7,30,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,930,2,0,1148,-4,0,0 +2013,10,3,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-2,0,826,-15,0,0 +2013,5,11,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2217,-6,0,641,-27,0,0 +2013,9,22,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1610,109,1,1720,97,1,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,655,-1,0,945,-2,0,0 +2013,7,1,1,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1520,127,1,1637,132,1,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,-3,0,2005,-5,0,0 +2013,10,30,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,-7,0,650,-4,0,0 +2013,9,27,5,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,23,1,1002,25,1,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1500,20,1,1615,21,1,0 +2013,6,20,4,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1920,-3,0,2025,-11,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1913,8,0,2042,27,1,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,-4,0,755,-5,0,0 +2013,6,7,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2035,161,1,2250,149,1,0 +2013,4,10,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1120,3,0,1330,-8,0,0 +2013,4,22,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,600,-6,0,914,-3,0,0 +2013,4,29,1,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2140,-10,0,540,-1,0,0 +2013,7,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2240,-7,0,115,-13,0,0 +2013,6,3,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,19,1,1001,12,0,0 +2013,8,18,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,30,-4,0,549,-8,0,0 +2013,7,15,1,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,945,2,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-4,0,829,-4,0,0 +2013,4,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1600,-3,0,2004,-26,0,0 +2013,6,23,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-5,0,1540,-23,0,0 +2013,9,14,6,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2135,-4,0,543,-4,0,0 +2013,6,18,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1410,2,0,1555,-8,0,0 +2013,5,6,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1155,16,1,1455,20,1,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,-4,0,1255,-23,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1920,-3,0,2045,-18,0,0 +2013,8,19,1,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1245,0,0,1440,-12,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,40,1,2240,24,1,0 +2013,6,11,2,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1348,1,0,1450,1,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,710,-1,0,955,-15,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2200,-2,0,2305,-6,0,0 +2013,10,12,6,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-9,0,1915,-5,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-4,0,1157,2,0,0 +2013,9,18,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1839,-2,0,2232,-1,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1205,-4,0,2040,-17,0,0 +2013,5,6,1,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-7,0,1820,-3,0,0 +2013,4,10,3,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2010,-6,0,2255,-9,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1200,0,0,1305,-9,0,0 +2013,9,6,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1759,-9,0,2024,-23,0,0 +2013,4,10,3,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1345,42,1,1647,46,1,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1255,-9,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,4,0,2035,-14,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,0,0,1007,-20,0,0 +2013,8,13,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,602,0,0,1421,-8,0,0 +2013,4,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1156,3,0,1452,8,0,0 +2013,10,16,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1130,53,1,1255,44,1,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1844,9,0,1939,3,0,0 +2013,9,21,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1305,38,1,2104,16,1,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2225,12,0,135,4,0,0 +2013,9,28,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,38,1,1230,25,1,0 +2013,10,15,2,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,622,-5,0,1039,-25,0,0 +2013,4,18,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,1145,-21,0,0 +2013,5,30,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,830,2,0,900,-3,0,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1155,-5,0,1322,-19,0,0 +2013,9,22,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1125,-6,0,1225,-13,0,0 +2013,4,13,6,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2122,-7,0,29,-42,0,0 +2013,4,20,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1318,-1,0,1621,-16,0,0 +2013,4,12,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,800,-7,0,1048,-30,0,0 +2013,6,17,1,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1105,24,1,1415,20,1,0 +2013,4,23,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,905,0,0,1112,-7,0,0 +2013,4,14,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,700,-1,0,1005,-4,0,0 +2013,4,24,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1315,15,1,1435,19,1,0 +2013,6,28,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,705,-6,0,835,-15,0,0 +2013,5,5,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1230,9,0,1510,21,1,0 +2013,10,27,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-6,0,1719,-6,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1920,-3,0,2039,-19,0,0 +2013,7,11,4,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,928,-1,0,1051,-5,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1700,8,0,1955,10,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,951,-4,0,1305,0,0,0 +2013,8,5,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,-10,0,1235,-15,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2030,-3,0,2322,-17,0,0 +2013,9,16,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1209,0,0,1349,-16,0,0 +2013,10,13,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,745,-10,0,935,-15,0,0 +2013,5,22,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-2,0,830,-7,0,0 +2013,5,3,5,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1744,-2,0,2016,-12,0,0 +2013,7,11,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,97,1,2254,68,1,0 +2013,7,5,5,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1735,11,0,1915,6,0,0 +2013,6,28,5,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,810,52,1,1140,47,1,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1855,0,0,2125,-5,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1505,-1,0,1740,-8,0,0 +2013,9,26,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1300,0,0,1622,-31,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,-1,0,1025,17,1,0 +2013,4,11,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,30,1,2110,30,1,0 +2013,8,31,6,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-4,0,1501,-17,0,0 +2013,9,24,2,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,639,-5,0,852,-14,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,-5,0,542,-28,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2250,16,1,2314,6,0,0 +2013,9,28,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,715,-7,0,845,1,0,0 +2013,7,28,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,839,-15,0,1004,-19,0,0 +2013,9,24,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-7,0,2027,-10,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1005,1,0,1228,-6,0,0 +2013,10,27,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-7,0,1353,-15,0,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,0,0,1325,-10,0,0 +2013,10,16,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1848,-7,0,2015,-16,0,0 +2013,5,5,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-7,0,2122,-7,0,0 +2013,6,13,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,-7,0,619,-20,0,0 +2013,10,12,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1734,-1,0,1902,-11,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1449,-1,0,2214,-23,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1255,37,1,1825,34,1,0 +2013,9,5,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1829,-8,0,1929,-4,0,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1220,2,0,1445,2,0,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1950,-6,0,2058,-18,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,-2,0,1130,8,0,0 +2013,8,17,6,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,805,-5,0,1315,-15,0,0 +2013,5,23,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-3,0,838,-3,0,0 +2013,5,4,6,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-9,0,1029,-4,0,0 +2013,4,15,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1950,-2,0,2120,14,0,0 +2013,4,13,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,752,-15,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,7,0,1620,-15,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,1,0,1518,1,0,0 +2013,8,8,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,0,,2035,0,1,1 +2013,4,17,3,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,4,0,1720,-4,0,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,5,0,1036,-16,0,0 +2013,5,25,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,725,4,0,920,-3,0,0 +2013,4,10,3,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1451,145,1,1700,156,1,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1715,-4,0,2055,-8,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1435,1,0,1625,6,0,0 +2013,7,1,1,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,12,0,1200,6,0,0 +2013,7,18,4,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1442,26,1,1615,17,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1630,8,0,1844,-17,0,0 +2013,9,14,6,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-5,0,917,-11,0,0 +2013,9,29,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1700,-3,0,1838,-10,0,0 +2013,5,9,4,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1245,3,0,1553,20,1,0 +2013,6,21,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1407,6,0,2100,16,1,0 +2013,6,17,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1415,7,0,1654,6,0,0 +2013,7,27,6,WN,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,49,1,2055,20,1,0 +2013,6,7,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1105,-5,0,1210,-15,0,0 +2013,4,21,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-6,0,1500,-26,0,0 +2013,5,14,2,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-7,0,1320,-7,0,0 +2013,8,4,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1330,-3,0,1425,-6,0,0 +2013,6,9,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,945,-16,0,0 +2013,10,30,3,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1619,6,0,1741,7,0,0 +2013,10,30,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-5,0,1819,-11,0,0 +2013,5,12,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2126,-10,0,547,-10,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1440,12,0,1555,14,0,0 +2013,4,20,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1744,-2,0,1905,-6,0,0 +2013,7,11,4,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,44,1,1937,58,1,0 +2013,4,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,942,-4,0,1551,9,0,0 +2013,9,1,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1000,-5,0,1436,-8,0,0 +2013,8,1,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1910,-3,0,2105,-9,0,0 +2013,5,2,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,12,0,2150,5,0,0 +2013,4,14,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-18,0,1030,-25,0,0 +2013,8,25,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,613,-5,0,1200,-2,0,0 +2013,9,10,2,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,-3,0,2110,-15,0,0 +2013,9,3,2,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1350,35,1,1905,44,1,0 +2013,5,6,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1955,-3,0,2125,-15,0,0 +2013,9,17,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-9,0,826,-2,0,0 +2013,5,22,3,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,29,1,2116,15,1,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-3,0,1105,-19,0,0 +2013,6,18,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-4,0,1332,0,0,0 +2013,7,27,6,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,12,0,1420,-1,0,0 +2013,10,26,6,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,3,0,1245,-6,0,0 +2013,10,2,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,815,-10,0,925,-14,0,0 +2013,9,24,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2034,-8,0,2123,47,1,0 +2013,4,5,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,926,-8,0,1108,5,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1445,76,1,1545,79,1,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,3,0,1931,-1,0,0 +2013,9,23,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-9,0,540,-24,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,755,32,1,1019,1,0,0 +2013,4,8,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,3,0,2145,19,1,0 +2013,4,6,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2155,1,0,2234,-2,0,0 +2013,10,6,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1804,23,1,1949,14,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,-5,0,1158,16,1,0 +2013,5,26,7,EV,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1331,-10,0,1446,-25,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,602,3,0,811,-4,0,0 +2013,4,15,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,619,-2,0,752,-1,0,0 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,930,-3,0,1230,-11,0,0 +2013,4,16,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,840,-8,0,0 +2013,8,13,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,52,1,1210,52,1,0 +2013,10,1,2,9E,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1855,-10,0,2245,-24,0,0 +2013,7,15,1,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1945,0,0,2244,2,0,0 +2013,6,6,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,741,1,0,0 +2013,5,13,1,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1610,-5,0,1749,-18,0,0 +2013,7,23,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,49,1,1516,49,1,0 +2013,8,24,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,-1,0,1758,0,0,0 +2013,7,23,2,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,109,1,2019,98,1,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,33,1,955,27,1,0 +2013,7,22,1,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,715,-6,0,935,-4,0,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1113,14,0,1436,2,0,0 +2013,7,18,4,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,-8,0,2213,-3,0,0 +2013,9,30,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1406,-4,0,1504,0,0,0 +2013,7,14,7,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1501,6,0,1645,-9,0,0 +2013,5,16,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1600,-4,0,11,-7,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,815,43,1,1121,7,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,16,1,2330,13,0,0 +2013,6,12,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1810,14,0,2059,11,0,0 +2013,5,21,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1655,-2,0,1800,-21,0,0 +2013,10,4,5,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,950,-5,0,1100,-14,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2042,-5,0,2155,-10,0,0 +2013,8,25,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1205,-2,0,1325,-7,0,0 +2013,6,4,2,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1815,18,1,1911,16,1,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1536,-4,0,1717,-28,0,0 +2013,7,15,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,600,-1,0,720,-3,0,0 +2013,4,18,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,71,1,1235,165,1,0 +2013,4,14,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1230,1,0,1401,-7,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1434,1,0,1524,0,0,0 +2013,8,24,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,900,5,0,1030,-9,0,0 +2013,10,26,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1952,35,1,2130,24,1,0 +2013,5,15,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-6,0,941,12,0,0 +2013,10,9,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1457,0,0,1745,-1,0,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,748,12,0,920,-18,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1711,18,1,1952,3,0,0 +2013,6,15,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1045,1,0,1325,-7,0,0 +2013,4,24,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1756,0,,1930,0,1,1 +2013,7,9,2,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-9,0,922,-11,0,0 +2013,9,1,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1335,0,0,1505,-9,0,0 +2013,6,17,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-4,0,957,-7,0,0 +2013,6,21,5,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,751,4,0,912,-1,0,0 +2013,7,7,7,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,530,-1,0,654,-5,0,0 +2013,8,18,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1225,10,0,1335,7,0,0 +2013,6,14,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,940,10,0,1030,8,0,0 +2013,7,16,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1645,-1,0,1854,21,1,0 +2013,5,15,3,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,848,-7,0,935,-18,0,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,7,0,1727,-19,0,0 +2013,7,23,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,23,1,1825,15,1,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,845,-1,0,1116,18,1,0 +2013,4,26,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1600,31,1,1859,10,0,0 +2013,10,1,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,1,0,1340,-1,0,0 +2013,8,22,4,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,809,0,0,1003,-8,0,0 +2013,7,1,1,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1159,176,1,1344,192,1,0 +2013,5,12,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-5,0,1600,-16,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,-1,0,2105,-17,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1230,6,0,1655,5,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,830,3,0,1235,10,0,0 +2013,6,10,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,35,1,1955,31,1,0 +2013,8,3,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2015,14,0,2120,3,0,0 +2013,7,22,1,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,0,,2140,0,1,1 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,16,1,1725,14,0,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1425,69,1,1518,60,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1405,-3,0,1513,-6,0,0 +2013,7,30,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1059,-5,0,1712,-26,0,0 +2013,4,30,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1045,10,0,1225,-12,0,0 +2013,7,23,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,720,-4,0,1127,-11,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2021,64,1,2200,50,1,0 +2013,8,22,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1303,0,0,1540,-1,0,0 +2013,10,9,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-3,0,1652,-5,0,0 +2013,9,30,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-6,0,903,-10,0,0 +2013,7,2,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,835,-2,0,958,-10,0,0 +2013,5,13,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1859,-4,0,2052,-11,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1210,-4,0,1351,3,0,0 +2013,9,12,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1707,-2,0,1829,3,0,0 +2013,6,12,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1613,-4,0,1929,-21,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,756,-6,0,952,1,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,730,-17,0,0 +2013,9,17,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,2050,6,0,2140,-2,0,0 +2013,5,3,5,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1135,-1,0,1255,19,1,0 +2013,7,9,2,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,1,0,609,-3,0,0 +2013,6,26,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2012,0,,2336,0,1,1 +2013,10,29,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1225,-6,0,1510,-15,0,0 +2013,7,20,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1330,13,0,1925,-2,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1939,-1,0,2329,-17,0,0 +2013,7,16,2,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1015,-2,0,1025,-10,0,0 +2013,6,30,7,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2115,34,1,2348,0,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,915,11,0,1015,5,0,0 +2013,10,10,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,942,0,0,0 +2013,4,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1935,1,0,2057,3,0,0 +2013,9,13,5,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-12,0,1756,1,0,0 +2013,5,29,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,615,-4,0,717,3,0,0 +2013,5,27,1,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1040,-7,0,1307,-14,0,0 +2013,10,29,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1120,-3,0,1259,-20,0,0 +2013,10,8,2,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-6,0,1815,1,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1740,28,1,1923,43,1,0 +2013,8,19,1,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,545,-5,0,756,7,0,0 +2013,9,27,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,845,1,0,1010,-1,0,0 +2013,6,23,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,654,12,0,755,19,1,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2120,56,1,2250,43,1,0 +2013,7,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2007,-6,0,2108,-9,0,0 +2013,10,26,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1651,-2,0,2059,-8,0,0 +2013,9,30,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1555,1,0,1720,-5,0,0 +2013,8,15,4,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,-2,0,1710,4,0,0 +2013,8,12,1,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,640,-1,0,750,-1,0,0 +2013,9,30,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,815,-7,0,852,-5,0,0 +2013,8,12,1,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,-18,0,14,-15,0,0 +2013,8,9,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2210,-6,0,2315,-10,0,0 +2013,10,20,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,903,-4,0,1047,-18,0,0 +2013,9,26,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1835,26,1,2155,12,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,115,1,1636,109,1,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1658,-2,0,1757,-2,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,919,-1,0,1023,-4,0,0 +2013,6,9,7,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,0,0,1635,-6,0,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1505,-6,0,1845,-14,0,0 +2013,5,30,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1310,21,1,1410,25,1,0 +2013,6,9,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,1559,-7,0,1700,-16,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1905,11,0,2130,12,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1736,-1,0,2015,-3,0,0 +2013,9,19,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-2,0,747,6,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1525,-6,0,1632,-12,0,0 +2013,9,7,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,-11,0,2030,-17,0,0 +2013,4,22,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1035,43,1,1420,65,1,0 +2013,5,6,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1725,15,1,1835,2,0,0 +2013,10,14,1,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1455,-2,0,1718,-29,0,0 +2013,5,21,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,-8,0,828,-14,0,0 +2013,10,2,3,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,8,0,1720,21,1,0 +2013,10,30,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2014,36,1,2317,25,1,0 +2013,7,22,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,10,0,1942,33,1,0 +2013,7,7,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-2,0,815,-10,0,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1820,4,0,2012,-27,0,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1805,-5,0,1925,-15,0,0 +2013,8,15,4,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2024,17,1,2323,12,0,0 +2013,8,13,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1645,13,0,1945,-10,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1610,1,0,1820,-16,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1452,5,0,1610,-5,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-9,0,2026,-31,0,0 +2013,10,24,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,3,0,2150,-3,0,0 +2013,4,20,6,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1930,-9,0,2131,1,0,0 +2013,5,11,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1420,32,1,1545,9,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1130,-5,0,1218,-8,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-2,0,1010,-13,0,0 +2013,9,16,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,18,1,847,0,0,0 +2013,4,5,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1904,35,1,2036,24,1,0 +2013,10,9,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1800,-7,0,1922,-14,0,0 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,5,0,2105,6,0,0 +2013,6,9,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1825,56,1,2050,44,1,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,742,-3,0,846,-11,0,0 +2013,9,26,4,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1139,-2,0,1300,-20,0,0 +2013,7,21,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1040,-2,0,1257,4,0,0 +2013,9,30,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-4,0,2115,-12,0,0 +2013,5,26,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-7,0,810,-12,0,0 +2013,10,5,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,835,9,0,1045,-8,0,0 +2013,8,23,5,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,950,1,0,1120,-5,0,0 +2013,6,24,1,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,43,1,919,58,1,0 +2013,9,14,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,433,1,1020,418,1,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1510,-5,0,1639,-3,0,0 +2013,9,1,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1420,0,0,2015,5,0,0 +2013,4,19,5,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,835,0,0,1220,9,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,11,0,1525,0,0,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,825,3,0,1630,1,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1208,-5,0,1355,-19,0,0 +2013,6,21,5,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1109,-4,0,1339,-9,0,0 +2013,8,29,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1822,-6,0,1955,23,1,0 +2013,7,21,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-2,0,930,1,0,0 +2013,4,13,6,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,0,0,1252,27,1,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,835,-1,0,1100,-9,0,0 +2013,5,25,6,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1315,-6,0,1435,-1,0,0 +2013,8,1,4,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,118,1,1630,99,1,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1355,-2,0,1937,-6,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,2100,67,1,2245,62,1,0 +2013,7,11,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,27,1,1943,17,1,0 +2013,9,9,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,19,1,745,14,0,0 +2013,7,10,3,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1144,5,0,1400,-6,0,0 +2013,7,15,1,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1437,14,0,1610,12,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,855,-6,0,912,-11,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1535,-1,0,1620,0,0,0 +2013,4,8,1,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1837,0,,2005,0,1,1 +2013,8,18,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-8,0,1249,1,0,0 +2013,5,23,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,5,0,1954,-5,0,0 +2013,5,18,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,825,9,0,0 +2013,9,16,1,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1620,33,1,2020,27,1,0 +2013,7,3,3,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1425,-2,0,2020,19,1,0 +2013,10,20,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1905,39,1,2152,48,1,0 +2013,7,13,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1015,-2,0,1140,-13,0,0 +2013,8,9,5,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,955,-11,0,1349,-8,0,0 +2013,7,9,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,-7,0,1255,-19,0,0 +2013,7,28,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1215,25,1,1310,29,1,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,905,3,0,1200,1,0,0 +2013,10,19,6,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-1,0,1100,-15,0,0 +2013,4,27,6,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1516,-5,0,1800,-4,0,0 +2013,10,5,6,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-3,0,821,27,1,0 +2013,9,4,3,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1120,1,0,1230,-4,0,0 +2013,4,20,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-4,0,1547,-1,0,0 +2013,10,21,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1350,23,1,1449,27,1,0 +2013,6,9,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1235,4,0,1615,29,1,0 +2013,4,8,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1733,-3,0,1929,-9,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,805,-3,0,1225,2,0,0 +2013,4,23,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1850,26,1,2030,25,1,0 +2013,4,15,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1827,-3,0,15,-29,0,0 +2013,4,3,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1245,14,0,1638,0,0,0 +2013,4,25,4,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,-4,0,1013,4,0,0 +2013,9,30,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1520,-4,0,1711,-7,0,0 +2013,5,22,3,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1430,10,0,1620,-5,0,0 +2013,5,2,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1605,-5,0,1729,-2,0,0 +2013,10,9,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1545,-4,0,1701,-9,0,0 +2013,7,15,1,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1847,-8,0,18,-9,0,0 +2013,5,15,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1315,2,0,1415,4,0,0 +2013,9,13,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,18,1,841,6,0,0 +2013,6,26,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,89,1,1200,89,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2235,2,0,2325,2,0,0 +2013,7,20,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,0,,1820,0,1,1 +2013,10,23,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,720,-1,0,945,-6,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1525,4,0,1655,0,0,0 +2013,9,19,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1756,-1,0,1903,-8,0,0 +2013,8,13,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1555,-6,0,0 +2013,10,14,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,645,0,0,815,-17,0,0 +2013,7,14,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-3,0,1122,-9,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1455,-4,0,1655,-11,0,0 +2013,8,21,3,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1129,-8,0,1345,-18,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1805,3,0,2320,-1,0,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,0,0,710,-3,0,0 +2013,9,4,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,610,-11,0,714,-16,0,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1520,-9,0,1805,-27,0,0 +2013,6,25,2,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1254,0,0,1530,6,0,0 +2013,8,21,3,FL,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,700,0,0,950,-3,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,45,1,1935,50,1,0 +2013,6,4,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,-1,0,1921,-19,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,-4,0,1705,-10,0,0 +2013,7,30,2,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1121,5,0,1241,2,0,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,530,0,0,805,2,0,0 +2013,4,14,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,30,-7,0,454,-29,0,0 +2013,8,1,4,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1051,-9,0,1225,-17,0,0 +2013,6,15,6,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,12,0,1525,6,0,0 +2013,10,28,1,YV,14100,Philadelphia International,Philadelphia,PA,14730,Louisville International-Standiford Field,Louisville,KY,2040,-5,0,2242,-11,0,0 +2013,9,11,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1650,-3,0,0 +2013,7,24,3,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,645,-7,0,1455,-26,0,0 +2013,6,17,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1515,72,1,1800,59,1,0 +2013,7,22,1,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,639,-7,0,819,4,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2115,-5,0,2255,-2,0,0 +2013,6,15,6,OO,14307,Theodore Francis Green State,Providence,RI,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,33,1,2032,38,1,0 +2013,4,2,2,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,820,-4,0,1045,-9,0,0 +2013,8,24,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1912,9,0,2009,0,0,0 +2013,8,26,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1105,-13,0,1155,-21,0,0 +2013,10,16,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1725,26,1,2012,41,1,0 +2013,10,30,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,826,-1,0,1053,-12,0,0 +2013,6,21,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1710,51,1,1834,46,1,0 +2013,6,14,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1010,3,0,1105,4,0,0 +2013,5,30,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1145,65,1,1450,74,1,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,741,-3,0,854,-5,0,0 +2013,8,4,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1655,-8,0,1705,-18,0,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1607,-5,0,1931,-38,0,0 +2013,6,6,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-6,0,712,-5,0,0 +2013,4,7,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1240,-8,0,1451,-21,0,0 +2013,8,8,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-1,0,1348,-15,0,0 +2013,5,30,4,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-1,0,1150,10,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,-5,0,2140,1,0,0 +2013,9,10,2,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,715,-2,0,815,-19,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1355,-11,0,2158,-29,0,0 +2013,9,18,3,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1420,-5,0,1616,-7,0,0 +2013,7,4,4,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1045,-7,0,1210,-18,0,0 +2013,10,14,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,15,1,1740,3,0,0 +2013,5,2,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-4,0,1058,19,1,0 +2013,9,28,6,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-2,0,2202,-14,0,0 +2013,9,16,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,2040,21,1,2140,17,1,0 +2013,6,30,7,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-7,0,1026,-27,0,0 +2013,5,23,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,2135,24,1,2255,18,1,0 +2013,7,26,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2030,3,0,2115,32,1,0 +2013,9,7,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,-2,0,1530,3,0,0 +2013,9,30,1,OO,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1200,3,0,1515,5,0,0 +2013,7,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2042,9,0,2319,5,0,0 +2013,4,21,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1740,-5,0,1831,-8,0,0 +2013,7,2,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1810,-6,0,1934,-5,0,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,1,0,1911,-6,0,0 +2013,9,8,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1000,1,0,1115,-10,0,0 +2013,6,16,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-5,0,1351,-6,0,0 +2013,4,5,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1355,7,0,1515,1,0,0 +2013,7,10,3,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1540,-3,0,1640,-10,0,0 +2013,9,20,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1105,0,0,1420,-8,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,7,0,1738,1,0,0 +2013,8,3,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,937,43,1,1050,35,1,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,906,-1,0,1035,-25,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,-3,0,1125,1,0,0 +2013,10,25,5,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1950,-5,0,2125,-18,0,0 +2013,8,31,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1438,10,0,1645,3,0,0 +2013,8,18,7,VX,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1655,-3,0,2255,0,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,855,3,0,1210,2,0,0 +2013,8,3,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,758,1,0,925,4,0,0 +2013,8,17,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2119,55,1,2354,51,1,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2130,22,1,2350,11,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1735,-3,0,2300,8,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,32,1,2059,16,1,0 +2013,7,29,1,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-6,0,936,-24,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1740,40,1,2255,23,1,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,800,15,1,855,11,0,0 +2013,10,2,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,843,-3,0,1325,-26,0,0 +2013,7,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,2055,20,1,2250,1,0,0 +2013,8,4,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1215,-3,0,1525,-12,0,0 +2013,10,5,6,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,723,-8,0,839,-19,0,0 +2013,6,27,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1143,-1,0,1928,4,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,705,-4,0,1116,-16,0,0 +2013,7,4,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,610,16,1,900,-4,0,0 +2013,5,27,1,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1835,-10,0,2225,-25,0,0 +2013,8,21,3,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1228,-8,0,1730,-16,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,2040,48,1,2220,49,1,0 +2013,5,17,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1250,2,0,1415,-7,0,0 +2013,5,11,6,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1200,7,0,1725,34,1,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,630,-4,0,807,4,0,0 +2013,5,14,2,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1515,-5,0,1614,-17,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,-2,0,1757,-20,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1951,2,0,2201,-3,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1408,-4,0,1451,-11,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2036,-10,0,2202,-15,0,0 +2013,5,26,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-8,0,720,33,1,0 +2013,9,24,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1612,-6,0,1811,-32,0,0 +2013,4,6,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1455,-10,0,1724,-25,0,0 +2013,9,14,6,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,609,-2,0,756,-16,0,0 +2013,8,9,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1610,-7,0,1800,17,1,0 +2013,9,6,5,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-6,0,1025,-51,0,0 +2013,4,9,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1310,28,1,1710,28,1,0 +2013,5,13,1,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1520,1,0,1830,8,0,0 +2013,9,28,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,0,0,1404,-12,0,0 +2013,5,1,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2040,-2,0,2215,-7,0,0 +2013,10,3,4,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1040,-6,0,1246,-14,0,0 +2013,5,7,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,-1,0,715,-10,0,0 +2013,6,1,6,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1035,-9,0,1255,20,1,0 +2013,7,19,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2142,37,1,2259,34,1,0 +2013,5,27,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-2,0,1945,-5,0,0 +2013,10,16,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-12,0,1250,-29,0,0 +2013,10,18,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-3,0,1524,-18,0,0 +2013,5,7,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,605,-6,0,715,-1,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1605,2,0,1835,-6,0,0 +2013,4,26,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,615,-7,0,809,13,0,0 +2013,8,16,5,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1500,31,1,1835,33,1,0 +2013,10,7,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1905,42,1,2000,43,1,0 +2013,6,16,7,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2026,1,0,2250,0,0,0 +2013,7,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,2025,0,0,2345,-2,0,0 +2013,10,17,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1925,18,1,2215,-17,0,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,8,0,1735,23,1,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,30,1,1640,14,0,0 +2013,7,3,3,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,12,0,1230,4,0,0 +2013,6,29,6,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-2,0,1506,-10,0,0 +2013,6,16,7,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,2,0,1600,2,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,700,9,0,920,-18,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,905,5,0,1220,-7,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1004,1,0,1322,0,0,0 +2013,7,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1215,0,0,1340,-7,0,0 +2013,9,9,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1320,0,0,1625,-2,0,0 +2013,4,10,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,1122,11,0,0 +2013,9,17,2,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,-2,0,2132,-4,0,0 +2013,9,28,6,MQ,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1115,-7,0,1355,1,0,0 +2013,4,12,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1705,9,0,1835,-4,0,0 +2013,7,31,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,-4,0,2041,-1,0,0 +2013,5,27,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,831,-8,0,1100,-6,0,0 +2013,6,19,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,845,-5,0,1230,-25,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1948,-2,0,2304,-19,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2118,-4,0,2310,-26,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1045,32,1,1203,28,1,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1630,13,0,1815,-1,0,0 +2013,9,17,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1530,13,0,1648,2,0,0 +2013,10,14,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1818,3,0,2100,-14,0,0 +2013,6,28,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,1,0,2340,-3,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1515,-12,0,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1651,24,1,1819,45,1,0 +2013,6,8,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1312,-5,0,2105,-9,0,0 +2013,8,6,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,845,-2,0,1230,-17,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1729,11,0,1934,14,0,0 +2013,5,13,1,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1508,-2,0,1641,-7,0,0 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,1655,13,0,2255,1,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1300,4,0,1355,3,0,0 +2013,10,13,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,830,-4,0,929,-2,0,0 +2013,5,3,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1830,-8,0,2027,-18,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1535,4,0,1735,-17,0,0 +2013,8,1,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,-1,0,614,-10,0,0 +2013,10,21,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-5,0,2235,-34,0,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,1,0,1256,56,1,0 +2013,10,1,2,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-5,0,1205,-15,0,0 +2013,6,11,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-1,0,1637,0,0,0 +2013,7,6,6,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1135,2,0,1725,-15,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-8,0,2206,-6,0,0 +2013,4,13,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,-10,0,1112,-18,0,0 +2013,5,14,2,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1005,-4,0,1345,-15,0,0 +2013,5,16,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-7,0,1320,-14,0,0 +2013,4,5,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,800,3,0,1309,-8,0,0 +2013,8,10,6,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1245,20,1,1324,20,1,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1612,16,1,1720,19,1,0 +2013,7,21,7,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1100,141,1,1335,142,1,0 +2013,7,15,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,610,1,0,725,-13,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,905,162,1,1140,165,1,0 +2013,5,22,3,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,842,110,1,1022,93,1,0 +2013,6,7,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-6,0,1553,-6,0,0 +2013,9,5,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,952,7,0,1120,1,0,0 +2013,7,5,5,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2010,-4,0,2220,-11,0,0 +2013,10,16,3,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,-2,0,1235,-15,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,650,2,0,1045,-6,0,0 +2013,9,23,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1730,-5,0,1748,-19,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1425,1,0,1635,5,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-4,0,805,-8,0,0 +2013,7,7,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,25,1,2000,17,1,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2244,-2,0,49,-16,0,0 +2013,4,5,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1645,89,1,1927,74,1,0 +2013,10,8,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,647,5,0,1148,-5,0,0 +2013,10,17,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1348,-7,0,1721,-22,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,952,-2,0,1525,-15,0,0 +2013,9,10,2,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,7,0,1606,-4,0,0 +2013,5,24,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,39,1,1805,43,1,0 +2013,4,18,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,1840,-4,0,1943,6,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,3,0,1540,-9,0,0 +2013,10,10,4,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,17,1,1715,15,1,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,15,1,1925,16,1,0 +2013,10,17,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,41,1,1540,37,1,0 +2013,4,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2100,21,1,2230,38,1,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,710,-1,0,1202,-10,0,0 +2013,4,19,5,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1350,75,1,1625,75,1,0 +2013,5,8,3,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1228,-3,0,1435,-1,0,0 +2013,8,14,3,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1936,-5,0,2207,18,1,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1759,-3,0,1834,-11,0,0 +2013,9,9,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-4,0,1305,-12,0,0 +2013,9,30,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1510,0,0,2044,-17,0,0 +2013,6,25,2,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1720,137,1,1859,112,1,0 +2013,6,17,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-2,0,607,-19,0,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,956,-9,0,1600,21,1,0 +2013,7,10,3,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1430,43,1,1729,38,1,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,915,10,0,1200,-2,0,0 +2013,10,21,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-5,0,1140,6,0,0 +2013,5,16,4,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,-3,0,2235,-12,0,0 +2013,5,11,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,0,0,1145,-10,0,0 +2013,7,27,6,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1040,57,1,1315,57,1,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2100,71,1,2240,46,1,0 +2013,5,6,1,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1111,-6,0,1405,0,0,0 +2013,7,15,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12478,John F. Kennedy International,New York,NY,2130,-17,0,543,-14,0,0 +2013,4,22,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,63,1,1410,58,1,0 +2013,6,23,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1144,-2,0,1316,-16,0,0 +2013,5,26,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1005,-1,0,1130,-6,0,0 +2013,9,30,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1250,-1,0,1405,-3,0,0 +2013,9,15,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,915,-3,0,1005,-5,0,0 +2013,7,28,7,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,745,-6,0,1132,-17,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,953,-2,0,1044,-6,0,0 +2013,6,11,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1310,-5,0,1553,8,0,0 +2013,8,31,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1124,0,0,1635,-10,0,0 +2013,8,22,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1731,24,1,1940,33,1,0 +2013,8,12,1,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,15,1,1425,33,1,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1206,15,1,1531,3,0,0 +2013,10,13,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,1805,0,0,1929,-9,0,0 +2013,6,22,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,19,1,1831,5,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1117,0,0,1320,-7,0,0 +2013,4,5,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-9,0,2117,-25,0,0 +2013,7,7,7,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1345,2,0,1640,0,0,0 +2013,9,8,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,0,0,640,-12,0,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1037,3,0,1624,-18,0,0 +2013,9,7,6,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1359,-2,0,1703,-43,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1116,-3,0,1232,-22,0,0 +2013,6,16,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,1,0,2148,-7,0,0 +2013,6,21,5,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,-2,0,2110,-2,0,0 +2013,9,6,5,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-5,0,924,-19,0,0 +2013,9,11,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,745,84,1,933,72,1,0 +2013,4,24,3,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1325,2,0,1440,17,1,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1010,-10,0,1439,-22,0,0 +2013,7,4,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,700,-1,0,750,-7,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1930,58,1,2105,43,1,0 +2013,10,28,1,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,24,1,1917,8,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,910,-2,0,1040,-15,0,0 +2013,4,24,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,1916,55,1,2042,85,1,0 +2013,9,8,7,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1213,-2,0,1758,-3,0,0 +2013,4,19,5,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,22,1,2055,12,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2306,21,1,2310,15,1,0 +2013,7,13,6,MQ,13244,Memphis International,Memphis,TN,13303,Miami International,Miami,FL,1220,-5,0,1555,-7,0,0 +2013,5,1,3,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1140,-6,0,2019,-25,0,0 +2013,7,27,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,715,0,0,1010,-4,0,0 +2013,4,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1126,7,0,1252,0,0,0 +2013,10,1,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1817,-6,0,2118,-17,0,0 +2013,9,19,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1135,3,0,1230,-5,0,0 +2013,10,29,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1457,-10,0,1546,-15,0,0 +2013,7,13,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-4,0,1435,-14,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,29,1,2327,24,1,0 +2013,6,24,1,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1942,-9,0,137,-15,0,0 +2013,9,28,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1905,-1,0,2030,-8,0,0 +2013,7,3,3,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,1,0,1750,-4,0,0 +2013,10,23,3,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-4,0,928,-6,0,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,735,6,0,840,-8,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1300,2,0,1400,-4,0,0 +2013,6,22,6,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1950,-1,0,2310,-28,0,0 +2013,10,11,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1325,4,0,1623,-6,0,0 +2013,7,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,49,1,1343,40,1,0 +2013,4,8,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,853,4,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1735,37,1,1835,34,1,0 +2013,8,20,2,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-2,0,648,-12,0,0 +2013,8,30,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-3,0,950,5,0,0 +2013,7,20,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1230,-1,0,2023,-5,0,0 +2013,10,24,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-2,0,1453,-18,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1750,15,1,2012,6,0,0 +2013,8,26,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-1,0,2225,-15,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,740,-2,0,845,-12,0,0 +2013,9,22,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1010,-6,0,1135,-23,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1820,17,1,2040,18,1,0 +2013,6,14,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,16,1,1725,1,0,0 +2013,9,24,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,849,-4,0,1021,-6,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1048,-2,0,1310,-2,0,0 +2013,4,15,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1239,-6,0,1318,-4,0,0 +2013,7,27,6,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-2,0,900,14,0,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1929,-9,0,2106,-12,0,0 +2013,9,15,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1905,27,1,2045,32,1,0 +2013,7,11,4,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,17,1,2020,14,0,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,88,1,1455,86,1,0 +2013,7,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,920,0,0,1120,-1,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2213,-1,0,2,-12,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1907,16,1,2007,13,0,0 +2013,7,23,2,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2055,22,1,2210,16,1,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1530,0,0,1655,-12,0,0 +2013,5,18,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1640,-4,0,1845,-18,0,0 +2013,4,22,1,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1910,0,0,2155,36,1,0 +2013,6,30,7,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,-2,0,1630,-9,0,0 +2013,8,4,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-4,0,1740,-17,0,0 +2013,5,7,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,47,1,2055,39,1,0 +2013,8,29,4,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1415,110,1,1755,102,1,0 +2013,10,4,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,930,3,0,1039,27,1,0 +2013,5,12,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1800,12,0,1940,7,0,0 +2013,6,12,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1005,-3,0,1251,-4,0,0 +2013,4,29,1,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2050,-5,0,2320,-14,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,-4,0,2159,13,0,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1820,1,0,1935,-9,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1930,-5,0,2234,-40,0,0 +2013,4,7,7,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1430,6,0,1644,0,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1020,3,0,1435,-17,0,0 +2013,5,19,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,-3,0,1619,13,0,0 +2013,5,27,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,730,-1,0,850,-15,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1716,-1,0,1913,-20,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1420,9,0,1520,3,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1645,0,0,2120,0,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,-3,0,2207,-8,0,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,-2,0,845,-2,0,0 +2013,10,4,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-4,0,1244,-18,0,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2246,-3,0,15,-13,0,0 +2013,6,25,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,6,0,1755,17,1,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,610,16,1,847,17,1,0 +2013,6,23,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,10,0,1427,9,0,0 +2013,6,3,1,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2146,-2,0,604,-18,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,2039,-12,0,2204,-21,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1820,7,0,2014,6,0,0 +2013,4,18,4,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1125,38,1,1715,67,1,0 +2013,6,2,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,932,-5,0,1041,-12,0,0 +2013,6,13,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,652,27,1,748,20,1,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1125,6,0,1425,4,0,0 +2013,10,6,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2045,43,1,2215,39,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,810,-2,0,1027,-16,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-2,0,1001,-12,0,0 +2013,4,16,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,600,-3,0,920,-16,0,0 +2013,7,11,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,831,-13,0,0 +2013,9,4,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,-1,0,1347,-2,0,0 +2013,6,20,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2339,-2,0,613,-16,0,0 +2013,9,18,3,UA,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,3,0,1842,-6,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,745,-2,0,950,-6,0,0 +2013,6,20,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1945,16,1,101,8,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,725,-2,0,902,-17,0,0 +2013,4,7,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-3,0,1154,-13,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1902,61,1,2215,49,1,0 +2013,4,15,1,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,840,10,0,1014,-22,0,0 +2013,6,4,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,730,-5,0,852,-5,0,0 +2013,9,26,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,-1,0,1121,8,0,0 +2013,8,22,4,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1315,64,1,1910,62,1,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1025,-7,0,1158,-13,0,0 +2013,6,22,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-2,0,1935,-9,0,0 +2013,8,13,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,849,-5,0,1440,-9,0,0 +2013,9,21,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1110,-3,0,1215,-6,0,0 +2013,4,28,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1427,15,1,1705,-8,0,0 +2013,8,6,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-19,0,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1911,-5,0,2225,-14,0,0 +2013,6,1,6,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-4,0,1520,-3,0,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1239,19,1,1534,12,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,10,0,2359,20,1,0 +2013,7,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1820,337,1,2148,319,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,21,1,1717,22,1,0 +2013,5,11,6,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1441,70,1,1552,88,1,0 +2013,5,4,6,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,11,0,1050,0,0,0 +2013,7,2,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-8,0,2100,-18,0,0 +2013,4,7,7,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1803,-4,0,1933,-7,0,0 +2013,5,23,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,3,0,2250,-12,0,0 +2013,5,18,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1020,8,0,1310,-7,0,0 +2013,4,11,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1716,245,1,1936,225,1,0 +2013,7,23,2,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1038,-6,0,1147,-3,0,0 +2013,5,6,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1020,2,0,1145,0,0,0 +2013,9,1,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,800,-9,0,1015,0,0,0 +2013,7,2,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1545,145,1,1710,139,1,0 +2013,4,28,7,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,123,1,1225,104,1,0 +2013,7,13,6,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,850,-2,0,1022,-10,0,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2210,5,0,102,9,0,0 +2013,4,23,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1633,-5,0,1834,-15,0,0 +2013,6,7,5,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,515,-3,0,626,-5,0,0 +2013,8,5,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,720,-2,0,917,-12,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1050,5,0,1223,-11,0,0 +2013,10,27,7,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,645,-1,0,926,-15,0,0 +2013,9,4,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-8,0,1212,-13,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1355,-2,0,1622,-37,0,0 +2013,8,20,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,-10,0,1950,-24,0,0 +2013,5,29,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1945,-9,0,2145,-29,0,0 +2013,8,26,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1539,-6,0,1639,5,0,0 +2013,6,18,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,0,,2128,0,1,1 +2013,5,31,5,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1620,-6,0,1801,-6,0,0 +2013,4,8,1,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,800,-8,0,949,-1,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-4,0,1434,-13,0,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2015,-5,0,2139,12,0,0 +2013,4,17,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,930,-5,0,1255,-17,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1803,32,1,1904,19,1,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,2040,-5,0,2326,-26,0,0 +2013,5,11,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1355,17,1,1643,25,1,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-4,0,1335,-7,0,0 +2013,7,12,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1826,61,1,2053,28,1,0 +2013,5,24,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,29,1,1535,45,1,0 +2013,9,6,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1850,2,0,2015,-12,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,951,-2,0,1124,-7,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1230,-2,0,1535,-4,0,0 +2013,6,2,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1500,-1,0,1853,-15,0,0 +2013,9,16,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,3,0,1525,-9,0,0 +2013,9,21,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1300,22,1,1810,-3,0,0 +2013,8,12,1,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-8,0,1020,-20,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-2,0,2320,-14,0,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,745,-3,0,1045,-5,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1145,-4,0,1255,-3,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-1,0,1510,-20,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,755,22,1,900,17,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-2,0,903,-9,0,0 +2013,10,30,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1900,-8,0,2030,-16,0,0 +2013,9,14,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1728,-16,0,0 +2013,9,5,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-11,0,1320,-14,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1230,1,0,1525,-1,0,0 +2013,10,21,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1700,-8,0,1945,-12,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,815,-2,0,935,-3,0,0 +2013,9,1,7,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,-10,0,1821,-17,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,0,0,953,13,0,0 +2013,5,16,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1210,34,1,1510,36,1,0 +2013,8,16,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2035,-3,0,2205,-5,0,0 +2013,4,29,1,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-12,0,1747,-14,0,0 +2013,6,15,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1710,-2,0,2340,-19,0,0 +2013,9,12,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-6,0,1252,-21,0,0 +2013,10,4,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-4,0,1040,16,1,0 +2013,4,29,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1227,-5,0,1315,-11,0,0 +2013,9,23,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-5,0,925,-19,0,0 +2013,8,3,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-4,0,1750,-1,0,0 +2013,7,24,3,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1416,-7,0,1603,-5,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1735,79,1,2325,57,1,0 +2013,6,15,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,725,-4,0,1013,-2,0,0 +2013,8,3,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-3,0,2354,-23,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,16,1,1545,-1,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1750,0,0,1928,-5,0,0 +2013,9,1,7,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,2013,-13,0,2254,-15,0,0 +2013,8,26,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-6,0,1817,-13,0,0 +2013,9,8,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1915,-4,0,2117,-11,0,0 +2013,5,22,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1612,139,1,1834,133,1,0 +2013,10,22,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,835,0,0,1005,-4,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1447,-9,0,1600,-15,0,0 +2013,5,20,1,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,650,235,1,858,223,1,0 +2013,9,1,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,845,0,0,1140,-11,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1757,2,0,2004,-27,0,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,6,0,1351,20,1,0 +2013,8,16,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-5,0,712,-11,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1555,6,0,1910,-11,0,0 +2013,8,3,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,149,1,1211,135,1,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1425,-4,0,1615,2,0,0 +2013,9,4,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1135,-4,0,1150,-10,0,0 +2013,7,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,905,-1,0,1015,-1,0,0 +2013,7,23,2,OO,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,4,0,1652,5,0,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1315,0,0,1625,46,1,0 +2013,6,10,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1130,-6,0,1247,-24,0,0 +2013,7,17,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1354,-7,0,1450,-1,0,0 +2013,10,21,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,-6,0,1955,-16,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1920,-4,0,2032,1,0,0 +2013,6,17,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1105,-7,0,1529,-5,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-1,0,2322,-14,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-5,0,1325,-30,0,0 +2013,10,20,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-9,0,1723,-2,0,0 +2013,6,10,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1335,5,0,1455,0,0,0 +2013,8,11,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,49,1,1759,47,1,0 +2013,7,4,4,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,545,-5,0,704,-11,0,0 +2013,5,17,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,900,-4,0,1050,-18,0,0 +2013,5,3,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-6,0,1420,-22,0,0 +2013,7,21,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1335,55,1,1455,51,1,0 +2013,5,17,5,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-4,0,1015,-1,0,0 +2013,4,26,5,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,745,-2,0,1025,-8,0,0 +2013,5,12,7,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,549,-3,0,702,-14,0,0 +2013,10,9,3,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2345,-7,0,547,-11,0,0 +2013,8,30,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1125,-4,0,1602,-12,0,0 +2013,8,29,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1415,48,1,1600,32,1,0 +2013,9,15,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1459,-4,0,1630,-6,0,0 +2013,7,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,745,21,1,1037,13,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,600,-4,0,939,-10,0,0 +2013,5,28,2,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,9,0,1805,13,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,557,4,0,932,-6,0,0 +2013,7,25,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1435,149,1,1740,123,1,0 +2013,8,17,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-6,0,909,-4,0,0 +2013,4,11,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,830,-4,0,1115,-10,0,0 +2013,4,17,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1235,-4,0,1351,19,1,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,-3,0,1210,-6,0,0 +2013,9,24,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1030,14,0,1305,17,1,0 +2013,4,25,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,605,4,0,910,9,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1630,-2,0,1830,-11,0,0 +2013,10,2,3,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,800,-3,0,1355,-19,0,0 +2013,10,27,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,2,0,1054,-12,0,0 +2013,10,27,7,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-6,0,1623,19,1,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1445,63,1,1624,90,1,0 +2013,7,9,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,-2,0,1040,-8,0,0 +2013,9,9,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-4,0,1543,7,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1905,41,1,2135,44,1,0 +2013,4,24,3,OO,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1136,-9,0,1433,5,0,0 +2013,4,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,743,-5,0,1139,-15,0,0 +2013,6,8,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1456,12,0,2351,-10,0,0 +2013,6,7,5,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1355,-5,0,2015,-21,0,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1352,-4,0,1458,-11,0,0 +2013,8,20,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,22,1,1635,13,0,0 +2013,7,26,5,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1154,8,0,2000,-2,0,0 +2013,6,16,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1711,17,1,2024,16,1,0 +2013,7,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1515,-2,0,1647,-11,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,56,1,2350,49,1,0 +2013,9,14,6,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1933,12,0,2049,0,0,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,900,-3,0,1030,-8,0,0 +2013,8,14,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,132,1,1115,168,1,0 +2013,8,30,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2231,12,0,2351,1,0,0 +2013,4,28,7,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1030,-9,0,1305,-26,0,0 +2013,6,22,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1133,-5,0,1440,-15,0,0 +2013,5,30,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1950,62,1,2100,68,1,0 +2013,9,10,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1715,-1,0,1825,-7,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2218,-4,0,2347,-14,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2200,31,1,2310,26,1,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1200,10,0,1505,7,0,0 +2013,5,17,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2040,-2,0,2339,-5,0,0 +2013,5,19,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,920,-5,0,1055,-3,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1330,0,0,1525,-4,0,0 +2013,6,26,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1039,23,1,1915,24,1,0 +2013,6,12,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1435,4,0,1555,-10,0,0 +2013,8,30,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1817,-3,0,2102,-10,0,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,658,-5,0,1300,7,0,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2213,-4,0,2306,-15,0,0 +2013,10,17,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,720,-2,0,1020,-9,0,0 +2013,10,15,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1525,-2,0,1817,-10,0,0 +2013,7,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2100,6,0,2354,0,0,0 +2013,4,1,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,629,-6,0,825,-9,0,0 +2013,10,14,1,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1957,41,1,2226,36,1,0 +2013,10,31,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,1,0,1056,25,1,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,645,4,0,900,-6,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,655,-4,0,815,-12,0,0 +2013,7,7,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-7,0,1522,-8,0,0 +2013,8,1,4,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,842,-7,0,1152,14,0,0 +2013,8,9,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1530,0,0,1826,10,0,0 +2013,5,16,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,800,-1,0,925,-2,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,835,-6,0,943,-10,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,845,8,0,1018,12,0,0 +2013,7,28,7,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,740,4,0,1055,17,1,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,940,-3,0,1100,-1,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1245,-4,0,1510,-7,0,0 +2013,4,4,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1006,-6,0,1118,-8,0,0 +2013,7,6,6,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1902,-7,0,2029,-19,0,0 +2013,4,11,4,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,751,-3,0,1055,2,0,0 +2013,10,23,3,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1118,-13,0,1244,-22,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,0,0,1257,-8,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1600,1,0,2310,-12,0,0 +2013,6,23,7,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,3,0,1800,-21,0,0 +2013,5,14,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,605,-1,0,710,-3,0,0 +2013,5,1,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1753,-2,0,1957,0,0,0 +2013,6,19,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1630,6,0,1735,10,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-11,0,1037,-6,0,0 +2013,5,13,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1720,3,0,1950,-15,0,0 +2013,10,26,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1120,-3,0,1240,-7,0,0 +2013,10,2,3,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1518,-2,0,1702,0,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1550,16,1,1940,10,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,815,-8,0,935,0,0,0 +2013,7,24,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,910,-2,0,1038,2,0,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,6,0,1309,-10,0,0 +2013,7,23,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1015,-5,0,1245,2,0,0 +2013,7,8,1,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2030,138,1,2211,110,1,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,929,-4,0,1056,-1,0,0 +2013,4,17,3,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2233,203,1,2351,183,1,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,4,0,828,-1,0,0 +2013,5,8,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,955,-5,0,1125,-8,0,0 +2013,5,14,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-2,0,1210,-21,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1250,29,1,1505,34,1,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,739,-5,0,920,9,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1001,38,1,1306,31,1,0 +2013,10,24,4,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,19,1,1815,24,1,0 +2013,4,9,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,-5,0,903,-2,0,0 +2013,7,23,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1716,79,1,1844,74,1,0 +2013,4,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1331,-6,0,1651,-16,0,0 +2013,6,28,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,21,1,753,19,1,0 +2013,7,24,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1515,-1,0,1608,-7,0,0 +2013,7,13,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1702,38,1,2010,40,1,0 +2013,10,19,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1545,-7,0,1834,6,0,0 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1115,-1,0,1132,0,0,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,14,0,1620,6,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1805,11,0,1935,-1,0,0 +2013,8,12,1,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1850,50,1,2037,59,1,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,755,-4,0,915,-7,0,0 +2013,9,16,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,945,4,0,1050,-3,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,640,1,0,1200,-11,0,0 +2013,9,29,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,16,1,754,10,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1425,121,1,1551,122,1,0 +2013,5,12,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-7,0,1425,6,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-12,0,859,-3,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1642,-1,0,1833,-14,0,0 +2013,4,6,6,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1114,-4,0,1315,-9,0,0 +2013,8,3,6,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,-4,0,1940,9,0,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1315,-5,0,1542,22,1,0 +2013,5,26,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1635,-2,0,1835,-13,0,0 +2013,6,17,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1905,116,1,2108,138,1,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,0,0,1610,-13,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,732,-1,0,923,-4,0,0 +2013,8,29,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1911,0,0,2228,-6,0,0 +2013,10,14,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1525,57,1,1802,54,1,0 +2013,8,17,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1006,-2,0,1311,-2,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,29,1,1955,27,1,0 +2013,5,5,7,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1320,4,0,1600,-3,0,0 +2013,5,15,3,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1648,79,1,1831,76,1,0 +2013,8,18,7,9E,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,835,-6,0,952,-5,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,28,1,2259,38,1,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1225,73,1,1655,73,1,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2035,6,0,2201,-14,0,0 +2013,8,10,6,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1645,-3,0,1912,-1,0,0 +2013,7,17,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1945,-6,0,2225,-11,0,0 +2013,9,24,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-8,0,849,-26,0,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,-2,0,1634,6,0,0 +2013,4,23,2,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-2,0,1855,-9,0,0 +2013,8,13,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,-10,0,1114,7,0,0 +2013,8,9,5,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1210,-6,0,1435,-7,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,-5,0,2133,-13,0,0 +2013,7,5,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1527,-4,0,1654,-9,0,0 +2013,8,18,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,840,-6,0,1103,-16,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1946,23,1,2038,25,1,0 +2013,9,30,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2153,8,0,550,-16,0,0 +2013,5,17,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-3,0,1513,-10,0,0 +2013,6,9,7,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,8,0,1845,29,1,0 +2013,4,24,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,2,0,1639,-4,0,0 +2013,8,22,4,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1656,39,1,1932,43,1,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,755,47,1,1010,30,1,0 +2013,9,28,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1025,34,1,1130,13,0,0 +2013,5,2,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,16,1,1312,28,1,0 +2013,4,25,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1659,-4,0,129,-24,0,0 +2013,10,7,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1200,14,0,1500,6,0,0 +2013,8,3,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,145,1,1355,148,1,0 +2013,9,4,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1505,-1,0,1617,-14,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2235,2,0,438,11,0,0 +2013,7,6,6,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1010,-2,0,1200,-4,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,915,-6,0,1525,-21,0,0 +2013,4,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,11,0,1840,8,0,0 +2013,7,2,2,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-5,0,1845,10,0,0 +2013,7,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1705,109,1,1820,97,1,0 +2013,4,25,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-2,0,1026,-2,0,0 +2013,4,2,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1610,8,0,1740,14,0,0 +2013,5,1,3,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,-2,0,750,-9,0,0 +2013,5,14,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1555,-3,0,1755,-10,0,0 +2013,4,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,1,0,2140,-5,0,0 +2013,5,28,2,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-5,0,821,14,0,0 +2013,4,23,2,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,0,0,1349,-6,0,0 +2013,10,29,2,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,1109,-23,0,0 +2013,4,23,2,EV,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1103,-3,0,1258,-8,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,9,0,1245,-10,0,0 +2013,10,23,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1700,-6,0,2017,-25,0,0 +2013,4,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,-2,0,1510,-6,0,0 +2013,5,26,7,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,-5,0,2010,-19,0,0 +2013,10,11,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1030,207,1,1115,213,1,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1840,46,1,2357,65,1,0 +2013,7,1,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1100,0,,1240,0,1,1 +2013,7,28,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1000,21,1,1133,11,0,0 +2013,5,1,3,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,825,-4,0,1615,4,0,0 +2013,7,30,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-3,0,9,-16,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1705,-9,0,2317,-24,0,0 +2013,4,27,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-6,0,2202,-9,0,0 +2013,7,31,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-7,0,1825,-1,0,0 +2013,9,22,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1007,-5,0,1304,-14,0,0 +2013,9,19,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,600,-1,0,641,2,0,0 +2013,10,26,6,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1650,-4,0,1939,-14,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1955,54,1,2225,61,1,0 +2013,7,6,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,30,1,1530,46,1,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1440,-2,0,1805,-9,0,0 +2013,7,10,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,116,1,820,102,1,0 +2013,10,21,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1140,8,0,1305,13,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1140,5,0,1345,12,0,0 +2013,6,28,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,99,1,1650,96,1,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-7,0,1914,-15,0,0 +2013,8,30,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1444,48,1,1742,53,1,0 +2013,10,23,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,850,5,0,1010,8,0,0 +2013,8,2,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-8,0,1155,-11,0,0 +2013,9,5,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-5,0,1315,-28,0,0 +2013,9,19,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-4,0,725,-6,0,0 +2013,10,17,4,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,625,-6,0,738,-11,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,5,0,1651,8,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1050,-5,0,1405,-17,0,0 +2013,8,19,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1925,-2,0,2040,-11,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,-2,0,1905,6,0,0 +2013,6,21,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-4,0,1631,4,0,0 +2013,7,18,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,15,1,625,29,1,0 +2013,8,14,3,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1809,-8,0,1950,-22,0,0 +2013,8,28,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,230,-10,0,646,-8,0,0 +2013,6,9,7,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1525,-3,0,1615,-14,0,0 +2013,10,29,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1050,-3,0,1710,-17,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1525,21,1,1740,12,0,0 +2013,5,12,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1235,-4,0,1325,-15,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,750,-3,0,920,4,0,0 +2013,9,1,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1631,-1,0,1817,7,0,0 +2013,6,6,4,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1340,-4,0,1524,-8,0,0 +2013,10,15,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-7,0,705,-11,0,0 +2013,5,8,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1820,-6,0,2108,-7,0,0 +2013,9,22,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1035,14,0,1140,9,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-5,0,1429,-14,0,0 +2013,7,13,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-4,0,705,-10,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,900,-3,0,1033,-19,0,0 +2013,9,28,6,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,1355,-29,0,0 +2013,10,13,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1202,3,0,1548,-17,0,0 +2013,6,19,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,1,0,1812,-17,0,0 +2013,9,10,2,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,-3,0,2300,-7,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,11,0,1940,-3,0,0 +2013,7,6,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1007,-1,0,1045,5,0,0 +2013,7,5,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,-1,0,1813,8,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1355,23,1,1510,7,0,0 +2013,6,16,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,605,45,1,736,80,1,0 +2013,10,3,4,9E,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,630,70,1,746,73,1,0 +2013,4,7,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,845,-9,0,1028,-4,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1010,11,0,1230,9,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,20,1,1400,11,0,0 +2013,7,1,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,39,1,1828,71,1,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,-4,0,1818,3,0,0 +2013,5,11,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1825,-2,0,2000,6,0,0 +2013,9,5,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,-5,0,1845,-2,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1110,-2,0,1240,-11,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1450,34,1,2205,18,1,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1850,-1,0,1949,-8,0,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,-2,0,2100,14,0,0 +2013,10,6,7,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,719,-3,0,817,-8,0,0 +2013,7,22,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-4,0,1150,-13,0,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-1,0,2110,17,1,0 +2013,6,27,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,854,-11,0,0 +2013,9,27,5,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1220,25,1,1555,28,1,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,843,1,0,1034,-15,0,0 +2013,8,30,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1710,-4,0,1835,-15,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1830,-4,0,2100,7,0,0 +2013,9,24,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-8,0,1725,-30,0,0 +2013,6,9,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,6,0,2043,31,1,0 +2013,6,10,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-14,0,655,-7,0,0 +2013,6,29,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1606,89,1,1909,92,1,0 +2013,4,6,6,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1743,-4,0,1923,-13,0,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1614,-2,0,1749,18,1,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2055,-4,0,2250,-9,0,0 +2013,9,18,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,0,0,1530,-16,0,0 +2013,5,2,4,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1235,4,0,1420,-16,0,0 +2013,4,27,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1142,-23,0,0 +2013,4,12,5,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1455,24,1,1649,21,1,0 +2013,9,9,1,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1015,-5,0,1129,-18,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1250,22,1,1550,11,0,0 +2013,4,22,1,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,814,-11,0,929,-1,0,0 +2013,4,13,6,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2236,7,0,658,-9,0,0 +2013,5,12,7,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-5,0,2040,-16,0,0 +2013,5,22,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,-3,0,1535,-18,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1040,6,0,1235,-6,0,0 +2013,8,2,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,4,0,1530,-7,0,0 +2013,8,28,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,722,-11,0,818,-10,0,0 +2013,10,3,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,600,-3,0,905,-17,0,0 +2013,4,13,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,935,-8,0,1120,-3,0,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,11,0,1725,-14,0,0 +2013,8,12,1,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1018,32,1,1210,29,1,0 +2013,8,10,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1030,-1,0,1133,2,0,0 +2013,10,19,6,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1530,-2,0,1701,9,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1250,-1,0,1355,-7,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1410,-2,0,1725,-11,0,0 +2013,8,20,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,2003,-12,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2105,-1,0,2232,-9,0,0 +2013,8,8,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,34,1,1820,23,1,0 +2013,5,13,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-5,0,920,-11,0,0 +2013,9,4,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-1,0,1825,-18,0,0 +2013,9,16,1,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,4,0,1440,3,0,0 +2013,8,30,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,945,-6,0,1129,-9,0,0 +2013,7,21,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-5,0,1107,-10,0,0 +2013,8,18,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1835,16,1,1935,15,1,0 +2013,10,29,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,14,0,1526,12,0,0 +2013,7,31,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1830,4,0,1940,1,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,14,0,2132,12,0,0 +2013,4,28,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,9,0,2115,8,0,0 +2013,9,7,6,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-8,0,1027,-13,0,0 +2013,5,6,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,1315,-5,0,1452,-11,0,0 +2013,4,26,5,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1330,-12,0,1604,-11,0,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1015,10,0,1330,2,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-2,0,922,-3,0,0 +2013,10,14,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1230,0,0,1509,14,0,0 +2013,5,6,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-9,0,955,-5,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1345,47,1,1725,53,1,0 +2013,5,31,5,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-6,0,911,-11,0,0 +2013,10,1,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,715,-5,0,1127,-22,0,0 +2013,8,1,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,605,0,0,720,-12,0,0 +2013,9,6,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1445,-1,0,1705,-2,0,0 +2013,4,17,3,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,-4,0,1118,-22,0,0 +2013,8,6,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,-5,0,1158,18,1,0 +2013,7,19,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1351,-5,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1452,19,1,1720,-7,0,0 +2013,4,23,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,-4,0,1820,-8,0,0 +2013,6,2,7,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,112,1,2021,90,1,0 +2013,6,4,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1625,15,1,1835,-1,0,0 +2013,7,13,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,815,-7,0,1053,3,0,0 +2013,8,4,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,845,-2,0,950,-1,0,0 +2013,6,19,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1710,0,0,1830,6,0,0 +2013,9,27,5,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1610,6,0,1945,-4,0,0 +2013,5,13,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1346,-7,0,1516,-21,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,37,1,1827,53,1,0 +2013,7,27,6,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,600,-2,0,840,-6,0,0 +2013,9,9,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1900,-3,0,2010,-4,0,0 +2013,10,14,1,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1128,0,0,1240,-17,0,0 +2013,9,8,7,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1750,-4,0,2000,-14,0,0 +2013,6,8,6,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-7,0,1615,-16,0,0 +2013,5,4,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1125,6,0,1210,16,1,0 +2013,9,4,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1845,-10,0,2025,-17,0,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1030,-2,0,1135,9,0,0 +2013,8,11,7,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1702,-5,0,1829,56,1,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2150,22,1,50,19,1,0 +2013,7,28,7,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,0,0,1045,-13,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,27,1,1815,57,1,0 +2013,7,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1550,56,1,1906,35,1,0 +2013,4,11,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1035,6,0,1408,-23,0,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,222,1,1810,238,1,0 +2013,5,4,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1810,0,0,1905,-8,0,0 +2013,4,16,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-8,0,1234,-15,0,0 +2013,7,28,7,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,0,0,2050,-20,0,0 +2013,9,18,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1940,-2,0,2049,-13,0,0 +2013,4,21,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,32,1,1858,38,1,0 +2013,10,5,6,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2140,-2,0,35,-7,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1240,-4,0,1420,-17,0,0 +2013,8,20,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1058,-5,0,1300,-29,0,0 +2013,8,13,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1115,4,0,1300,-14,0,0 +2013,6,26,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,132,1,1838,141,1,0 +2013,5,2,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-6,0,836,8,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1130,-3,0,1340,-13,0,0 +2013,6,10,1,9E,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,835,228,1,1144,270,1,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1056,-1,0,1226,-10,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,4,0,2050,-20,0,0 +2013,4,21,7,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,813,8,0,948,13,0,0 +2013,9,15,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,715,3,0,1432,-3,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-2,0,1016,-26,0,0 +2013,5,11,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,755,-5,0,855,-5,0,0 +2013,5,3,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,700,-4,0,939,-22,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,-2,0,955,2,0,0 +2013,9,4,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,913,-4,0,1200,0,0,0 +2013,9,15,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1530,36,1,1847,39,1,0 +2013,6,3,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1948,-2,0,2047,1,0,0 +2013,9,7,6,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,-5,0,1918,-8,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2152,-2,0,2321,-9,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,4,0,1320,-9,0,0 +2013,7,3,3,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-12,0,840,-15,0,0 +2013,9,4,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,735,-6,0,915,-9,0,0 +2013,10,8,2,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,830,-10,0,948,-21,0,0 +2013,6,27,4,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,930,654,1,1731,645,1,0 +2013,6,1,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,-5,0,2112,-23,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,630,3,0,930,-8,0,0 +2013,7,12,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,19,1,2240,7,0,0 +2013,6,17,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,905,-4,0,1225,-17,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1423,-1,0,1612,-10,0,0 +2013,9,8,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1830,21,1,2155,17,1,0 +2013,4,28,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1909,3,0,2022,6,0,0 +2013,4,10,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,-7,0,2359,-12,0,0 +2013,7,30,2,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,905,-5,0,1039,4,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1325,1,0,1445,3,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1321,87,1,1502,149,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-4,0,923,-13,0,0 +2013,10,18,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1328,-4,0,1443,2,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1020,-6,0,1533,8,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1850,29,1,2120,19,1,0 +2013,9,7,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-4,0,2100,-29,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1611,-6,0,1920,-28,0,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1445,172,1,1705,167,1,0 +2013,10,31,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14635,Southwest Florida International,Fort Myers,FL,940,-7,0,1201,-17,0,0 +2013,10,7,1,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1940,-9,0,2135,-15,0,0 +2013,4,11,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1820,5,0,1915,-8,0,0 +2013,10,14,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1200,-3,0,1405,-6,0,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1410,11,0,1550,-10,0,0 +2013,8,5,1,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-4,0,1556,-5,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2045,28,1,2300,32,1,0 +2013,8,25,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,6,0,1810,14,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1335,-2,0,1509,-13,0,0 +2013,10,22,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2000,-4,0,2139,-7,0,0 +2013,7,14,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,93,1,1224,89,1,0 +2013,6,10,1,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1540,114,1,1635,110,1,0 +2013,6,16,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,-4,0,735,-12,0,0 +2013,5,27,1,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,908,-1,0,1129,-10,0,0 +2013,6,29,6,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1759,19,1,2058,17,1,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,915,-5,0,1125,6,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1625,1,0,1851,-17,0,0 +2013,5,19,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-1,0,842,-1,0,0 +2013,6,5,3,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1220,-8,0,1600,-29,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,1,0,2035,-16,0,0 +2013,10,13,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1050,85,1,1140,83,1,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1000,89,1,1230,77,1,0 +2013,5,21,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,836,-10,0,947,-10,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1300,10,0,1405,1,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1200,2,0,1355,-18,0,0 +2013,6,25,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-5,0,852,-7,0,0 +2013,8,16,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,800,-6,0,0 +2013,4,27,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,0,0,934,-3,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,41,1,1610,70,1,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1125,1,0,1845,-7,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1626,28,1,1750,12,0,0 +2013,4,3,3,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1655,-7,0,2017,-18,0,0 +2013,9,22,7,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1830,24,1,2100,16,1,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,0,0,835,-9,0,0 +2013,6,8,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,941,-3,0,1333,0,0,0 +2013,7,30,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,0,0,2035,-2,0,0 +2013,4,7,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1417,0,0,2005,19,1,0 +2013,10,27,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1101,3,0,1230,-14,0,0 +2013,7,25,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-7,0,1542,-12,0,0 +2013,9,13,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,45,1,1059,41,1,0 +2013,5,28,2,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1745,35,1,1855,27,1,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2020,22,1,2350,4,0,0 +2013,8,13,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-4,0,1547,-2,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1020,-5,0,1625,-19,0,0 +2013,5,4,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,0,0,1610,-15,0,0 +2013,7,3,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1229,63,1,1454,53,1,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1336,-6,0,1533,-13,0,0 +2013,9,17,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,2,0,1659,2,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1843,36,1,2314,6,0,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,37,1,2104,24,1,0 +2013,6,13,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,50,1,2110,104,1,0 +2013,9,7,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1050,-9,0,1140,-18,0,0 +2013,9,18,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2050,-1,0,7,-10,0,0 +2013,9,3,2,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,0,,2015,0,1,1 +2013,10,9,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-1,0,1417,-7,0,0 +2013,10,4,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1426,8,0,1658,9,0,0 +2013,7,31,3,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-4,0,1826,-6,0,0 +2013,7,12,5,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1101,-5,0,1403,-29,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1130,90,1,1310,79,1,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,-8,0,1710,-20,0,0 +2013,7,20,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,6,0,2137,53,1,0 +2013,6,27,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1529,11,0,1629,20,1,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1315,2,0,1440,-3,0,0 +2013,9,26,4,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,834,-4,0,1120,-31,0,0 +2013,7,25,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1359,6,0,1632,-20,0,0 +2013,4,4,4,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,1800,116,1,2010,92,1,0 +2013,4,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1935,-1,0,2100,-4,0,0 +2013,6,27,4,EV,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,43,1,1522,30,1,0 +2013,6,23,7,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1718,-11,0,1940,-17,0,0 +2013,5,28,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1801,9,0,2007,30,1,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2220,5,0,2347,5,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1015,-3,0,1115,-6,0,0 +2013,5,21,2,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,159,1,1357,152,1,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2125,-7,0,2355,-6,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1420,8,0,1850,7,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2115,-8,0,2300,-16,0,0 +2013,7,14,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1324,27,1,1457,14,0,0 +2013,7,17,3,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,2,0,2151,2,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-1,0,1102,2,0,0 +2013,9,13,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-1,0,952,16,1,0 +2013,6,20,4,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1740,2,0,2015,-36,0,0 +2013,8,1,4,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,5,0,1225,-3,0,0 +2013,9,6,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-5,0,2013,-15,0,0 +2013,7,31,3,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1423,-1,0,1721,-17,0,0 +2013,9,2,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1431,2,0,1551,-4,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1430,10,0,1535,1,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2025,-5,0,2137,-2,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1909,-3,0,2036,-16,0,0 +2013,5,19,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,-5,0,1315,14,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,2,0,2034,-11,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,7,0,1420,13,0,0 +2013,4,9,2,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1044,27,1,1353,83,1,0 +2013,9,10,2,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-9,0,910,-36,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1900,1,0,2320,7,0,0 +2013,10,16,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1340,5,0,1615,0,0,0 +2013,9,1,7,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-3,0,1230,-3,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1543,-5,0,1717,-41,0,0 +2013,9,6,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,28,1,2035,18,1,0 +2013,4,3,3,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1440,15,1,1800,9,0,0 +2013,10,28,1,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1059,-9,0,1254,-21,0,0 +2013,10,12,6,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,1,0,1105,-20,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2135,72,1,2240,62,1,0 +2013,9,25,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1137,6,0,1918,4,0,0 +2013,9,20,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,5,0,1400,-12,0,0 +2013,9,3,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1345,0,0,1515,-25,0,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,0,0,1014,-13,0,0 +2013,9,10,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1620,-5,0,1725,-10,0,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,48,1,1836,26,1,0 +2013,4,13,6,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13232,Chicago Midway International,Chicago,IL,1555,6,0,1800,-8,0,0 +2013,10,6,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,733,-7,0,0 +2013,7,15,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-7,0,830,-11,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-2,0,1015,-3,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,3,0,1703,-9,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1840,-2,0,2005,-16,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1340,-5,0,1459,3,0,0 +2013,6,18,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1919,24,1,2210,15,1,0 +2013,9,16,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1800,18,1,1920,22,1,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,645,-2,0,750,-11,0,0 +2013,7,17,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1919,19,1,2100,12,0,0 +2013,10,18,5,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,25,1,2158,32,1,0 +2013,4,9,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,-3,0,1410,2,0,0 +2013,8,12,1,MQ,14524,Richmond International,Richmond,VA,13303,Miami International,Miami,FL,720,-2,0,955,-15,0,0 +2013,7,14,7,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,710,-2,0,955,6,0,0 +2013,5,21,2,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,-5,0,1315,2,0,0 +2013,7,4,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-4,0,1122,3,0,0 +2013,7,24,3,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,32,1,1305,28,1,0 +2013,4,6,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1755,-5,0,1920,-14,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,840,-3,0,1046,-3,0,0 +2013,10,15,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1830,-4,0,2030,-27,0,0 +2013,8,3,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1855,2,0,2135,2,0,0 +2013,6,30,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1420,10,0,1445,6,0,0 +2013,10,9,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1815,-5,0,40,-22,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2104,-7,0,2357,-19,0,0 +2013,8,31,6,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1720,52,1,2000,39,1,0 +2013,5,29,3,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-6,0,626,-19,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1905,43,1,2230,30,1,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1900,2,0,2225,1,0,0 +2013,4,18,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2115,164,1,2325,148,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1547,-5,0,1725,-7,0,0 +2013,6,1,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,915,0,0,1020,-2,0,0 +2013,4,15,1,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1824,1,0,2115,-14,0,0 +2013,6,16,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1620,2,0,1914,-11,0,0 +2013,6,19,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1210,1,0,1310,-3,0,0 +2013,7,7,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,2310,0,0,634,11,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1430,-3,0,1602,-15,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,17,1,1915,8,0,0 +2013,6,26,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,913,-6,0,1030,-15,0,0 +2013,10,5,6,AA,12478,John F. Kennedy International,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1700,1,0,1955,-1,0,0 +2013,7,11,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1445,31,1,1500,44,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,1,0,2112,-32,0,0 +2013,6,21,5,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,8,0,1805,0,0,0 +2013,9,13,5,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2105,0,0,2345,19,1,0 +2013,9,19,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,1,0,1015,-9,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,624,-1,0,900,-21,0,0 +2013,7,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2010,5,0,2247,-1,0,0 +2013,5,21,2,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1328,31,1,1512,32,1,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1131,1,0,1408,-7,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1721,15,1,1923,34,1,0 +2013,9,2,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,846,-5,0,0 +2013,4,13,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,715,0,0,830,-3,0,0 +2013,6,20,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1200,14,0,1325,3,0,0 +2013,7,14,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,840,-2,0,1032,-15,0,0 +2013,8,14,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1820,4,0,2000,3,0,0 +2013,4,2,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,750,-4,0,920,-11,0,0 +2013,7,24,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-5,0,2203,-5,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,815,14,0,910,5,0,0 +2013,9,23,1,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,18,1,1935,13,0,0 +2013,5,6,1,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1604,-7,0,1900,-2,0,0 +2013,6,25,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1431,137,1,1637,145,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1012,1,0,1148,4,0,0 +2013,4,7,7,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,0,0,1912,-7,0,0 +2013,7,6,6,9E,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1237,2,0,1432,-1,0,0 +2013,6,17,1,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-1,0,1109,44,1,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1450,72,1,1745,88,1,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,-4,0,730,-8,0,0 +2013,10,23,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,735,-11,0,926,-24,0,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,-5,0,1827,6,0,0 +2013,4,1,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1900,35,1,2300,6,0,0 +2013,5,4,6,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,4,0,2020,-3,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1715,0,,1940,0,1,1 +2013,7,8,1,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,20,1,1229,20,1,0 +2013,9,28,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,715,-6,0,1014,-7,0,0 +2013,10,8,2,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1645,-5,0,2352,-29,0,0 +2013,9,26,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,750,-5,0,1025,-12,0,0 +2013,9,7,6,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,3,0,1215,-4,0,0 +2013,7,16,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-4,0,1800,-6,0,0 +2013,7,9,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,605,-3,0,730,-6,0,0 +2013,7,31,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1105,-5,0,1236,-4,0,0 +2013,9,15,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,646,1,0,0 +2013,9,9,1,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,68,1,1620,63,1,0 +2013,8,28,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1045,4,0,1105,-3,0,0 +2013,8,6,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1825,2,0,2035,-8,0,0 +2013,10,24,4,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,945,-7,0,1338,5,0,0 +2013,7,29,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,115,1,2110,105,1,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,-3,0,1029,-1,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1500,89,1,1626,82,1,0 +2013,10,21,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1830,-10,0,2147,-14,0,0 +2013,4,14,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12173,Honolulu International,Honolulu,HI,1400,-7,0,1812,9,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1846,-2,0,2100,-15,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1927,17,1,2041,0,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,23,1,1250,27,1,0 +2013,4,14,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1520,0,0,1625,-10,0,0 +2013,6,5,3,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-3,0,900,11,0,0 +2013,10,2,3,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,756,-5,0,947,-15,0,0 +2013,7,6,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-7,0,1755,-19,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1955,-3,0,2044,-17,0,0 +2013,6,27,4,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1533,-2,0,1646,2,0,0 +2013,10,13,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,0,0,1312,-7,0,0 +2013,5,13,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,600,7,0,710,5,0,0 +2013,7,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1252,59,1,1630,76,1,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1840,2,0,2110,-31,0,0 +2013,8,4,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1215,-2,0,1315,-4,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1750,19,1,1940,6,0,0 +2013,8,16,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1855,-3,0,2204,-9,0,0 +2013,5,25,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1537,-5,0,1813,-12,0,0 +2013,6,3,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-4,0,1114,-14,0,0 +2013,8,26,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1021,1,0,1135,32,1,0 +2013,6,11,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-6,0,1230,-14,0,0 +2013,9,18,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1216,-7,0,1340,13,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1600,25,1,1905,35,1,0 +2013,8,6,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,13,0,1734,32,1,0 +2013,6,29,6,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,712,0,0,905,3,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,-1,0,1835,-11,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1500,2,0,1615,4,0,0 +2013,6,28,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,727,-2,0,900,-7,0,0 +2013,9,25,3,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1128,-7,0,1600,-21,0,0 +2013,5,16,4,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1236,-5,0,1515,-9,0,0 +2013,10,16,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,904,-1,0,1056,-15,0,0 +2013,4,24,3,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2315,28,1,204,18,1,0 +2013,4,7,7,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-7,0,945,-2,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,834,-5,0,953,-14,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,651,-3,0,954,-24,0,0 +2013,4,13,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,45,1,2110,71,1,0 +2013,9,17,2,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2025,-6,0,2350,-24,0,0 +2013,4,23,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,23,1,900,22,1,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1301,-3,0,1435,-11,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,2200,-3,0,2310,-7,0,0 +2013,10,31,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1105,-1,0,1210,-1,0,0 +2013,5,5,7,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,-8,0,2053,-10,0,0 +2013,9,13,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1755,-1,0,1850,-12,0,0 +2013,6,30,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1315,7,0,1440,7,0,0 +2013,8,13,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-7,0,2347,-3,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1905,-1,0,2123,-1,0,0 +2013,4,17,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1108,10,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,730,-4,0,1023,-10,0,0 +2013,6,28,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,28,1,2120,25,1,0 +2013,10,24,4,OO,14771,San Francisco International,San Francisco,CA,13851,Will Rogers World,Oklahoma City,OK,1106,-5,0,1617,4,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,20,1,1546,-2,0,0 +2013,10,11,5,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1708,0,0,1900,-4,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,849,-11,0,1153,-7,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,700,-4,0,1048,-7,0,0 +2013,9,24,2,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,0,0,835,-13,0,0 +2013,6,2,7,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1420,-4,0,1605,-8,0,0 +2013,8,5,1,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1415,-5,0,1645,-19,0,0 +2013,7,10,3,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-4,0,1230,-16,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1555,2,0,1700,-3,0,0 +2013,4,29,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,12,0,845,3,0,0 +2013,9,14,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1525,20,1,1635,19,1,0 +2013,5,27,1,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,2125,-5,0,2335,-14,0,0 +2013,7,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2050,12,0,2307,20,1,0 +2013,7,8,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,19,1,1615,14,0,0 +2013,4,12,5,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1325,0,0,1620,-14,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,0,0,1005,-17,0,0 +2013,6,13,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,7,0,2110,-10,0,0 +2013,6,26,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-5,0,1230,-15,0,0 +2013,7,15,1,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,620,-5,0,1211,-11,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1620,136,1,2155,131,1,0 +2013,4,5,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-6,0,1032,-9,0,0 +2013,6,25,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,5,0,2125,-4,0,0 +2013,7,19,5,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1946,-5,0,2103,-7,0,0 +2013,4,10,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,241,1,1935,248,1,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1905,3,0,2200,-3,0,0 +2013,7,20,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1756,-2,0,1825,-1,0,0 +2013,4,8,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,920,-1,0,1221,-7,0,0 +2013,10,19,6,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1208,8,0,1449,-2,0,0 +2013,9,16,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,730,-2,0,1301,7,0,0 +2013,8,15,4,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,44,1,2139,36,1,0 +2013,4,18,4,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1035,6,0,1344,3,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1805,5,0,1950,-4,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1508,-6,0,2340,-3,0,0 +2013,10,10,4,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1830,35,1,2148,5,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1245,5,0,1459,-7,0,0 +2013,7,5,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2203,-5,0,2314,-11,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1959,96,1,2344,83,1,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1252,5,0,1448,-2,0,0 +2013,6,23,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2209,-4,0,2326,-4,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,906,-7,0,1205,-12,0,0 +2013,9,22,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,835,-4,0,1001,-25,0,0 +2013,7,26,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1625,35,1,1640,21,1,0 +2013,9,4,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,1011,-19,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,907,-14,0,1159,-35,0,0 +2013,6,22,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1725,2,0,1950,16,1,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,0,0,1102,0,0,0 +2013,6,18,2,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2057,42,1,2329,26,1,0 +2013,10,14,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,15,1,2130,-1,0,0 +2013,8,9,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-5,0,1648,-7,0,0 +2013,9,3,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1731,7,0,1929,-20,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1900,6,0,2320,6,0,0 +2013,10,1,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,1015,-7,0,0 +2013,7,20,6,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,845,-6,0,1140,-11,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,845,45,1,1115,36,1,0 +2013,10,1,2,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2054,-14,0,2359,1,0,0 +2013,5,10,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,715,0,0,920,-5,0,0 +2013,9,10,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,715,-6,0,1015,3,0,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1442,6,0,1609,-21,0,0 +2013,7,14,7,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,841,130,1,1108,106,1,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1645,10,0,1750,8,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-2,0,1039,-2,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,900,-3,0,956,-14,0,0 +2013,4,2,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1127,82,1,1315,68,1,0 +2013,7,19,5,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,62,1,1830,63,1,0 +2013,9,26,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1600,-4,0,1853,-19,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1115,-5,0,1320,-15,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,97,1,2035,113,1,0 +2013,10,7,1,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,750,-4,0,835,-12,0,0 +2013,5,5,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1814,-10,0,1939,-32,0,0 +2013,6,17,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1110,-4,0,1235,-6,0,0 +2013,5,24,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1545,46,1,1900,59,1,0 +2013,8,4,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1125,0,0,1430,1,0,0 +2013,8,26,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1840,-7,0,2032,-6,0,0 +2013,9,2,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,216,1,1725,205,1,0 +2013,8,20,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,721,-1,0,859,-4,0,0 +2013,6,6,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-4,0,845,-3,0,0 +2013,8,10,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,0,0,920,-19,0,0 +2013,5,27,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-5,0,1155,21,1,0 +2013,8,6,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-3,0,1915,-7,0,0 +2013,4,27,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-5,0,2203,-16,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1305,20,1,1611,6,0,0 +2013,10,14,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1015,36,1,1358,34,1,0 +2013,5,14,2,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1355,-10,0,1535,-33,0,0 +2013,5,12,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1100,-1,0,1350,21,1,0 +2013,6,25,2,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,60,1,1310,47,1,0 +2013,9,26,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1340,-3,0,1600,-1,0,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1035,-3,0,1400,-6,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,41,1,1940,26,1,0 +2013,5,16,4,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1856,-7,0,2051,-8,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,1,0,1908,2,0,0 +2013,10,13,7,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1217,1,0,1316,-2,0,0 +2013,6,23,7,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1550,18,1,1830,14,0,0 +2013,6,12,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1618,-9,0,1748,-26,0,0 +2013,8,17,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1215,0,0,1320,-1,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1335,30,1,1620,27,1,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,833,3,0,1010,62,1,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2040,-4,0,2300,-26,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1915,-2,0,2040,-10,0,0 +2013,4,23,2,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1710,8,0,2045,-15,0,0 +2013,7,7,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,645,-7,0,813,-27,0,0 +2013,6,10,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,248,1,1653,228,1,0 +2013,8,24,6,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-2,0,1530,-10,0,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,821,-4,0,1151,-13,0,0 +2013,9,6,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-11,0,1110,-23,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,22,1,1831,12,0,0 +2013,7,1,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1728,-9,0,1904,-5,0,0 +2013,7,8,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1012,-6,0,1209,-19,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1900,20,1,2320,22,1,0 +2013,10,9,3,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-6,0,1205,-7,0,0 +2013,10,23,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-5,0,1908,-8,0,0 +2013,4,10,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,945,-3,0,1055,-11,0,0 +2013,6,22,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,2,0,810,-2,0,0 +2013,10,23,3,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1735,-7,0,2019,-13,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,800,-3,0,910,-10,0,0 +2013,7,19,5,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,715,3,0,1010,-26,0,0 +2013,9,4,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1500,-7,0,1636,-11,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1845,-4,0,1947,-20,0,0 +2013,8,16,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,845,-5,0,1257,0,0,0 +2013,8,14,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,0,0,2112,4,0,0 +2013,9,13,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2051,-5,0,2140,-1,0,0 +2013,10,1,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,658,-1,0,1302,5,0,0 +2013,9,23,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-9,0,1301,-12,0,0 +2013,4,7,7,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1650,-1,0,1820,-11,0,0 +2013,6,10,1,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-3,0,1541,-8,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,-1,0,2237,-10,0,0 +2013,4,8,1,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,809,-5,0,0 +2013,4,12,5,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2105,20,1,2305,12,0,0 +2013,4,5,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,955,-6,0,1030,-10,0,0 +2013,5,18,6,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1829,15,1,2036,-9,0,0 +2013,8,17,6,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-4,0,1755,-1,0,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,600,0,0,805,-3,0,0 +2013,8,22,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1450,27,1,1555,23,1,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1935,2,0,2115,-12,0,0 +2013,8,18,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,28,1,901,48,1,0 +2013,8,17,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1634,-7,0,1720,-11,0,0 +2013,9,29,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,915,-7,0,1023,-14,0,0 +2013,7,9,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,5,0,2105,-5,0,0 +2013,7,26,5,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1245,84,1,1406,78,1,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1720,1,0,1907,-9,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2155,24,1,2300,11,0,0 +2013,9,9,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1827,-9,0,2105,-18,0,0 +2013,6,28,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1520,27,1,1758,42,1,0 +2013,10,14,1,VX,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1425,6,0,2225,-16,0,0 +2013,10,18,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1610,-4,0,1715,-17,0,0 +2013,5,16,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1305,27,1,1610,31,1,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1704,23,1,1805,18,1,0 +2013,9,24,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-4,0,1808,-16,0,0 +2013,9,19,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1030,60,1,1139,44,1,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1640,2,0,1910,0,0,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1135,-4,0,1350,-16,0,0 +2013,6,30,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,540,-2,0,840,-15,0,0 +2013,7,24,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,0,0,1605,-7,0,0 +2013,9,29,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,9,0,1438,4,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1345,8,0,1640,-2,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1234,4,0,1740,24,1,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1025,9,0,1308,5,0,0 +2013,6,14,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,16,1,1130,18,1,0 +2013,7,3,3,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,4,0,745,0,0,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1320,33,1,1635,13,0,0 +2013,7,28,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2140,34,1,2255,44,1,0 +2013,6,6,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,11,0,1120,0,0,0 +2013,8,20,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,553,-10,0,737,-5,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,-3,0,2317,-19,0,0 +2013,6,23,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,925,4,0,1049,6,0,0 +2013,5,28,2,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1012,10,0,1314,13,0,0 +2013,7,6,6,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-2,0,1525,-23,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1330,31,1,1535,33,1,0 +2013,5,25,6,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-2,0,1900,-2,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,1,0,1815,-1,0,0 +2013,8,16,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,43,1,2003,70,1,0 +2013,6,23,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1850,0,0,2104,-5,0,0 +2013,4,27,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-4,0,1355,-9,0,0 +2013,10,10,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,16,1,1220,8,0,0 +2013,7,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1910,23,1,2220,16,1,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,0,0,1416,-8,0,0 +2013,7,8,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1840,0,0,2133,-4,0,0 +2013,5,3,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1815,-2,0,1940,-15,0,0 +2013,5,31,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1511,40,1,1825,61,1,0 +2013,6,16,7,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,959,-2,0,1110,-2,0,0 +2013,5,28,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,4,0,755,-11,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1430,22,1,1710,14,0,0 +2013,4,18,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,2,0,1544,7,0,0 +2013,10,9,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1345,1,0,1544,-11,0,0 +2013,5,28,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1037,-3,0,1400,-11,0,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,1,0,1435,-14,0,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1530,-10,0,1655,-25,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,740,0,0,1000,-11,0,0 +2013,10,19,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,935,-2,0,950,-1,0,0 +2013,5,6,1,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1250,5,0,1525,-16,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1121,44,1,1305,36,1,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1449,4,0,1702,-22,0,0 +2013,4,16,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1032,-7,0,1318,0,0,0 +2013,9,16,1,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,815,27,1,1022,12,0,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,2040,39,1,2145,36,1,0 +2013,8,2,5,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2104,17,1,2359,34,1,0 +2013,8,18,7,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1315,-2,0,1910,-16,0,0 +2013,8,28,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2133,-10,0,2205,-9,0,0 +2013,8,6,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1803,0,0,2133,-7,0,0 +2013,5,26,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,-1,0,1605,-18,0,0 +2013,7,31,3,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1218,-3,0,1409,2,0,0 +2013,10,22,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,-8,0,1115,-8,0,0 +2013,6,25,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,945,3,0,1130,-8,0,0 +2013,10,13,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2000,10,0,2055,6,0,0 +2013,5,6,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,17,1,2020,-23,0,0 +2013,7,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1950,10,0,2130,3,0,0 +2013,6,29,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,803,-1,0,1137,-46,0,0 +2013,7,10,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,10,0,1630,37,1,0 +2013,4,27,6,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,655,-8,0,820,-18,0,0 +2013,6,17,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-6,0,1418,24,1,0 +2013,6,8,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,700,-3,0,941,4,0,0 +2013,6,25,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,-7,0,1310,-9,0,0 +2013,10,30,3,9E,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,856,-3,0,1029,-14,0,0 +2013,8,7,3,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1439,169,1,1549,198,1,0 +2013,9,12,4,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2300,142,1,2345,135,1,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1455,-4,0,1720,9,0,0 +2013,8,4,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-12,0,835,-23,0,0 +2013,8,12,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,739,-5,0,845,-7,0,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,2100,28,1,2145,21,1,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,84,1,55,77,1,0 +2013,7,21,7,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,745,-4,0,1213,4,0,0 +2013,5,10,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,-3,0,1357,-13,0,0 +2013,6,23,7,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1715,99,1,1855,99,1,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,0,0,1445,-10,0,0 +2013,10,4,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-1,0,903,10,0,0 +2013,9,17,2,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2135,-2,0,543,5,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2050,22,1,2205,34,1,0 +2013,9,4,3,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,-3,0,735,-10,0,0 +2013,6,7,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,905,-5,0,1201,-21,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,41,1,1120,33,1,0 +2013,7,5,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1840,-4,0,2005,-6,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1405,26,1,1810,31,1,0 +2013,8,20,2,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1410,8,0,2235,-7,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-6,0,1906,-19,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1435,10,0,1705,17,1,0 +2013,10,6,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,25,1,2010,36,1,0 +2013,4,21,7,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2358,26,1,744,22,1,0 +2013,4,23,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1040,10,0,0 +2013,7,12,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1058,3,0,1345,-4,0,0 +2013,7,10,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,5,0,1724,-3,0,0 +2013,9,29,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1832,-5,0,2005,1,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1502,0,0,1734,2,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,750,-1,0,910,-4,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1040,16,1,1217,7,0,0 +2013,9,24,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1543,-3,0,1745,-5,0,0 +2013,7,31,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1120,10,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1624,21,1,2003,5,0,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1227,-4,0,1250,-10,0,0 +2013,10,13,7,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,-8,0,915,-15,0,0 +2013,6,14,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2105,32,1,2225,24,1,0 +2013,6,8,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,719,-3,0,957,1,0,0 +2013,6,10,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1315,-2,0,1442,-2,0,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1035,-1,0,1335,-10,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,740,-3,0,926,-5,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1855,53,1,2111,33,1,0 +2013,7,1,1,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2229,0,0,626,-23,0,0 +2013,7,15,1,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,745,-2,0,920,-12,0,0 +2013,7,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2019,-2,0,2042,-4,0,0 +2013,5,13,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,722,-3,0,0 +2013,8,17,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,600,683,1,1155,659,1,0 +2013,9,17,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1900,-11,0,2039,-13,0,0 +2013,4,25,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1139,4,0,1242,-4,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-5,0,1940,-15,0,0 +2013,7,26,5,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1932,-7,0,2055,2,0,0 +2013,4,29,1,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,-7,0,1711,8,0,0 +2013,9,15,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1400,-5,0,1730,-10,0,0 +2013,10,26,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-11,0,913,-3,0,0 +2013,4,21,7,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2145,45,1,2255,44,1,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1240,1,0,1410,-3,0,0 +2013,7,10,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,-4,0,1000,-1,0,0 +2013,10,12,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1530,162,1,1847,145,1,0 +2013,9,4,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,8,0,1435,10,0,0 +2013,8,5,1,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,-5,0,1235,0,0,0 +2013,10,26,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,950,-1,0,1120,-1,0,0 +2013,10,9,3,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1700,0,0,1854,-20,0,0 +2013,7,9,2,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-1,0,1039,4,0,0 +2013,10,4,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,-3,0,1102,-12,0,0 +2013,9,10,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,6,0,2102,5,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,2,0,55,-6,0,0 +2013,7,27,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1040,0,0,1140,-1,0,0 +2013,9,19,4,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1636,128,1,1802,117,1,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1910,-4,0,2030,-6,0,0 +2013,6,26,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-6,0,746,-8,0,0 +2013,6,30,7,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1430,24,1,1620,21,1,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1855,2,0,2320,-5,0,0 +2013,7,4,4,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-6,0,1355,-16,0,0 +2013,4,24,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,830,8,0,1235,-1,0,0 +2013,4,4,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1012,-8,0,1310,-6,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2115,68,1,2357,82,1,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1155,2,0,1330,-13,0,0 +2013,9,11,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-7,0,1351,-17,0,0 +2013,9,3,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,820,-1,0,945,-3,0,0 +2013,6,14,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,5,0,751,-17,0,0 +2013,5,3,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1640,1,0,1840,-8,0,0 +2013,5,20,1,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,815,0,0,1155,-14,0,0 +2013,6,18,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1828,103,1,2000,92,1,0 +2013,10,16,3,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,620,-9,0,841,24,1,0 +2013,7,1,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1345,-3,0,1717,9,0,0 +2013,6,4,2,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,930,-5,0,1800,-30,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1900,13,0,2223,19,1,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,626,-9,0,722,-3,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,-1,0,1553,-10,0,0 +2013,7,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,36,1,1705,41,1,0 +2013,7,6,6,FL,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,1210,-2,0,1356,-4,0,0 +2013,10,1,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,-7,0,1445,-9,0,0 +2013,7,29,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,42,1,2005,23,1,0 +2013,7,31,3,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-1,0,1710,-1,0,0 +2013,10,20,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,-8,0,1840,-11,0,0 +2013,7,18,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1042,-3,0,1908,14,0,0 +2013,6,23,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1037,0,0,1410,0,0,0 +2013,4,22,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,11,0,1859,8,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1424,14,0,1705,53,1,0 +2013,5,4,6,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1227,3,0,1455,-15,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1450,6,0,1610,-1,0,0 +2013,7,26,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,-2,0,1655,-13,0,0 +2013,8,16,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,800,67,1,929,64,1,0 +2013,9,16,1,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1315,2,0,1425,-6,0,0 +2013,5,30,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,6,0,2239,-8,0,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1135,0,,1322,0,1,1 +2013,5,13,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-3,0,1938,-16,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2045,-1,0,2330,8,0,0 +2013,10,11,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,-8,0,717,-17,0,0 +2013,10,18,5,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-11,0,558,-24,0,0 +2013,8,22,4,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,5,0,1915,-5,0,0 +2013,9,27,5,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-9,0,1059,-13,0,0 +2013,9,28,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1010,-2,0,1150,-18,0,0 +2013,4,23,2,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,820,-5,0,936,-12,0,0 +2013,10,11,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2020,7,0,2145,8,0,0 +2013,5,16,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-4,0,847,-8,0,0 +2013,5,19,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1140,-3,0,1419,2,0,0 +2013,8,24,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,4,0,1250,0,0,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1942,5,0,2003,-8,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1520,11,0,1610,12,0,0 +2013,7,30,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,3,0,1940,-3,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,954,-3,0,1130,2,0,0 +2013,7,4,4,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,830,-1,0,935,8,0,0 +2013,5,9,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,755,-6,0,1055,3,0,0 +2013,10,17,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1325,21,1,1525,8,0,0 +2013,7,28,7,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,9,0,826,11,0,0 +2013,4,6,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1910,-2,0,2035,-7,0,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,815,-1,0,1015,-16,0,0 +2013,8,10,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,750,0,,956,0,1,1 +2013,7,7,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-5,0,1014,-12,0,0 +2013,4,21,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,900,58,1,1225,26,1,0 +2013,4,12,5,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1155,4,0,1430,2,0,0 +2013,8,6,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,911,-8,0,1029,-19,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1811,-4,0,1849,-23,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,900,4,0,1030,-6,0,0 +2013,9,4,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1930,1,0,2050,-20,0,0 +2013,5,7,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1540,-3,0,1659,-15,0,0 +2013,9,1,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1030,4,0,1250,5,0,0 +2013,10,16,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2050,-2,0,2215,-24,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,3,0,2152,13,0,0 +2013,4,26,5,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1720,-6,0,1845,-6,0,0 +2013,7,29,1,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-2,0,2013,-1,0,0 +2013,10,7,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1341,-13,0,0 +2013,6,14,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,23,1,2205,15,1,0 +2013,9,6,5,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2100,-10,0,508,-4,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1520,-6,0,1952,-10,0,0 +2013,10,22,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1333,-7,0,1624,-13,0,0 +2013,7,16,2,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1450,33,1,1620,18,1,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1325,7,0,1605,9,0,0 +2013,10,9,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1534,19,1,1855,4,0,0 +2013,8,13,2,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,0,0,1908,-2,0,0 +2013,7,18,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1456,460,1,1751,0,1,1 +2013,8,5,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,-3,0,1310,-5,0,0 +2013,4,23,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,2055,216,1,2225,191,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-3,0,919,-9,0,0 +2013,8,10,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,8,0,1814,1,0,0 +2013,5,11,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1738,51,1,2105,58,1,0 +2013,7,12,5,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1300,15,1,1455,31,1,0 +2013,4,21,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1644,11,0,1747,10,0,0 +2013,6,22,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,2,0,1600,-8,0,0 +2013,6,28,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,-4,0,1513,-17,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1550,5,0,1812,-19,0,0 +2013,6,25,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,68,1,936,56,1,0 +2013,9,15,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,10,0,1615,-4,0,0 +2013,6,4,2,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-7,0,911,-8,0,0 +2013,7,30,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,26,1,2003,13,0,0 +2013,4,17,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-5,0,920,-6,0,0 +2013,9,26,4,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,810,5,0,940,0,1,1 +2013,9,17,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,835,-8,0,950,2,0,0 +2013,4,29,1,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1625,-9,0,1827,-30,0,0 +2013,6,26,3,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1015,-4,0,1134,7,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2304,131,1,27,125,1,0 +2013,7,13,6,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2010,122,1,2155,100,1,0 +2013,9,12,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,105,1,1916,108,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2205,10,0,2329,41,1,0 +2013,8,12,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,14771,San Francisco International,San Francisco,CA,1932,16,1,2200,14,0,0 +2013,6,11,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1020,381,1,1040,393,1,0 +2013,9,27,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1510,109,1,1630,93,1,0 +2013,9,23,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1326,-10,0,1617,-3,0,0 +2013,9,2,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-5,0,1611,-9,0,0 +2013,7,20,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-1,0,1947,2,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1207,-3,0,1349,-14,0,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,741,-4,0,1042,1,0,0 +2013,8,2,5,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1905,53,1,2108,62,1,0 +2013,5,8,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,1421,-7,0,1536,-3,0,0 +2013,10,14,1,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1456,-3,0,1650,-8,0,0 +2013,6,21,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,615,-6,0,945,21,1,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-6,0,1827,-15,0,0 +2013,5,21,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2055,14,0,2308,18,1,0 +2013,9,23,1,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1740,14,0,2035,-1,0,0 +2013,5,24,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-2,0,1950,15,1,0 +2013,8,7,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,850,-6,0,1030,-6,0,0 +2013,9,26,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,1,0,1700,11,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1545,-3,0,1813,-6,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1130,-7,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1735,15,1,1900,17,1,0 +2013,9,23,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,-6,0,1511,-18,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1009,-5,0,1401,-8,0,0 +2013,9,19,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1825,0,0,1900,-6,0,0 +2013,9,12,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1209,14,0,1410,4,0,0 +2013,9,22,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,-4,0,1355,-15,0,0 +2013,5,24,5,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2115,0,0,2220,-8,0,0 +2013,6,4,2,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-9,0,1045,-21,0,0 +2013,9,13,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,20,1,1905,10,0,0 +2013,4,15,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,748,-6,0,1013,1,0,0 +2013,9,10,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-4,0,840,-7,0,0 +2013,4,21,7,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1830,-7,0,1957,15,1,0 +2013,7,24,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,755,-3,0,915,-8,0,0 +2013,7,30,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,910,-10,0,1108,-1,0,0 +2013,8,17,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1845,-3,0,2030,-14,0,0 +2013,4,13,6,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,825,3,0,915,-4,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1342,14,0,1513,9,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1325,4,0,1425,14,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1018,9,0,1406,2,0,0 +2013,6,11,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1610,0,0,1640,-10,0,0 +2013,7,25,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2115,-4,0,2220,12,0,0 +2013,4,4,4,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,13,0,1515,18,1,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1245,4,0,1835,-16,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1900,6,0,2300,0,0,0 +2013,6,9,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-7,0,1524,18,1,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1016,-5,0,1146,-3,0,0 +2013,10,29,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1339,34,1,1525,31,1,0 +2013,4,25,4,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-12,0,2037,-18,0,0 +2013,8,28,3,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,725,-4,0,1116,-3,0,0 +2013,5,3,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,39,1,2013,62,1,0 +2013,4,3,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,53,1,1832,34,1,0 +2013,10,13,7,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1730,-6,0,2253,-19,0,0 +2013,10,1,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1025,0,0,1314,-10,0,0 +2013,9,26,4,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1524,-10,0,1647,-11,0,0 +2013,9,1,7,DL,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,-6,0,1541,6,0,0 +2013,9,5,4,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,615,-12,0,820,-13,0,0 +2013,10,25,5,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1510,21,1,1710,16,1,0 +2013,5,17,5,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2003,-8,0,2214,-10,0,0 +2013,6,14,5,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1835,63,1,2126,79,1,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1705,140,1,1925,165,1,0 +2013,7,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1939,-2,0,2115,-22,0,0 +2013,10,25,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1821,20,1,2102,8,0,0 +2013,4,29,1,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,700,-10,0,945,12,0,0 +2013,5,8,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1215,31,1,1345,29,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1506,-1,0,1602,17,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2159,0,0,2315,-13,0,0 +2013,9,12,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,747,67,1,901,56,1,0 +2013,8,24,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1650,0,0,1818,0,0,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1755,2,0,1940,-5,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1040,7,0,1855,-4,0,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1415,34,1,1530,37,1,0 +2013,7,11,4,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1241,-1,0,1518,-4,0,0 +2013,8,5,1,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,30,1,1750,34,1,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2020,14,0,2241,38,1,0 +2013,9,1,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1445,56,1,1846,54,1,0 +2013,10,9,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-8,0,1255,-14,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1916,3,0,2047,-28,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1500,38,1,2030,14,0,0 +2013,4,24,3,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,800,66,1,951,81,1,0 +2013,9,11,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1850,-7,0,2059,-16,0,0 +2013,5,15,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,9,0,1600,3,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1520,10,0,1810,8,0,0 +2013,7,28,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,-6,0,835,2,0,0 +2013,7,29,1,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-5,0,917,-11,0,0 +2013,8,2,5,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1700,-7,0,2141,-21,0,0 +2013,6,15,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14843,Luis Munoz Marin International,San Juan,PR,1256,319,1,1525,314,1,0 +2013,7,11,4,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,620,5,0,809,1,0,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,2155,133,1,2336,112,1,0 +2013,6,20,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,739,15,1,856,3,0,0 +2013,8,19,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1945,-5,0,2217,27,1,0 +2013,10,27,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1033,38,1,1423,26,1,0 +2013,4,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,700,-2,0,820,-8,0,0 +2013,5,24,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,11,0,1904,0,0,0 +2013,9,19,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,-5,0,2025,-29,0,0 +2013,6,3,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1400,69,1,1505,65,1,0 +2013,8,18,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,-1,0,2355,3,0,0 +2013,10,20,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-4,0,1843,-2,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,63,1,1930,47,1,0 +2013,7,25,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1340,-10,0,1648,-19,0,0 +2013,9,23,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1714,-5,0,1839,-11,0,0 +2013,6,3,1,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,17,1,2230,4,0,0 +2013,10,30,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1118,11,0,1330,4,0,0 +2013,7,7,7,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1734,-9,0,1821,-25,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2242,0,0,12,-12,0,0 +2013,8,3,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1220,-6,0,1415,10,0,0 +2013,4,17,3,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,5,0,848,26,1,0 +2013,4,13,6,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1208,11,0,1420,7,0,0 +2013,8,26,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-6,0,1044,-3,0,0 +2013,4,9,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1135,-4,0,2010,12,0,0 +2013,8,11,7,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1155,12,0,1405,13,0,0 +2013,7,13,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1855,-3,0,2205,10,0,0 +2013,9,10,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1959,81,1,2159,91,1,0 +2013,8,20,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2000,-6,0,2127,-10,0,0 +2013,4,4,4,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,0,0,1836,-12,0,0 +2013,9,19,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2002,47,1,2152,49,1,0 +2013,5,14,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1923,-5,0,2249,-24,0,0 +2013,6,28,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1210,7,0,1500,1,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1200,4,0,1315,-4,0,0 +2013,7,17,3,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,2006,5,0,100,0,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1325,32,1,1720,22,1,0 +2013,7,4,4,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,545,-7,0,654,-28,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1820,1,0,2000,-2,0,0 +2013,6,1,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1515,9,0,1805,4,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1955,-6,0,2115,-17,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1301,0,0,1434,0,0,0 +2013,10,4,5,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1855,-9,0,2205,-18,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1611,1,0,1818,5,0,0 +2013,5,1,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-3,0,753,-13,0,0 +2013,7,2,2,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1515,54,1,2002,78,1,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1440,4,0,1713,-21,0,0 +2013,4,16,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,0,,1535,0,1,1 +2013,10,22,2,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,720,-2,0,755,-15,0,0 +2013,10,31,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1940,0,0,2115,-9,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1805,13,0,2046,14,0,0 +2013,10,27,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1205,-2,0,1320,-14,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-3,0,1655,-12,0,0 +2013,10,10,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1204,8,0,1457,-8,0,0 +2013,4,4,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1015,-3,0,1305,-4,0,0 +2013,6,6,4,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,1259,19,1,1355,20,1,0 +2013,8,30,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,-4,0,848,-4,0,0 +2013,7,14,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1235,-1,0,1830,-1,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1750,15,1,2005,14,0,0 +2013,8,22,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,46,1,1508,46,1,0 +2013,6,6,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-7,0,1155,-10,0,0 +2013,7,4,4,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,-7,0,1722,26,1,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,738,-6,0,1006,5,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1514,1,0,1814,-8,0,0 +2013,5,11,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1320,3,0,1624,-43,0,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1700,-6,0,1950,-3,0,0 +2013,6,20,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1914,-1,0,2100,-4,0,0 +2013,4,3,3,9E,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,840,-5,0,1014,-15,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,-1,0,2123,-14,0,0 +2013,7,4,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2011,-5,0,2133,-14,0,0 +2013,7,6,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1616,-4,0,1824,-15,0,0 +2013,4,12,5,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,705,33,1,930,32,1,0 +2013,10,12,6,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1414,9,0,1603,-8,0,0 +2013,9,8,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-6,0,2056,-20,0,0 +2013,4,7,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,-2,0,2324,3,0,0 +2013,10,28,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1810,6,0,1920,13,0,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,759,-6,0,1100,-14,0,0 +2013,8,16,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-10,0,1302,-19,0,0 +2013,5,16,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-5,0,1335,-17,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1425,-2,0,1731,-37,0,0 +2013,4,21,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1738,8,0,1818,16,1,0 +2013,7,21,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-5,0,700,-13,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2205,90,1,2331,102,1,0 +2013,8,8,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-5,0,650,-15,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1018,41,1,1452,7,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,945,0,0,1235,-11,0,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1210,18,1,1914,20,1,0 +2013,4,30,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,714,-4,0,1045,-16,0,0 +2013,8,28,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,119,1,1825,121,1,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,0,0,925,-6,0,0 +2013,4,26,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1035,-4,0,1305,-5,0,0 +2013,6,20,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,6,0,1635,-16,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1815,46,1,1935,43,1,0 +2013,4,17,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1845,-10,0,2056,-31,0,0 +2013,8,12,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,620,-1,0,750,-5,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,-9,0,2141,-10,0,0 +2013,9,4,3,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1035,-4,0,1559,0,0,0 +2013,8,3,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,44,1,1900,22,1,0 +2013,7,10,3,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,46,1,1914,91,1,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2238,-3,0,701,-24,0,0 +2013,5,17,5,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1301,83,1,1420,83,1,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,-6,0,1650,-18,0,0 +2013,10,3,4,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,955,-3,0,1218,-3,0,0 +2013,7,25,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-5,0,1856,2,0,0 +2013,4,1,1,OO,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1557,20,1,1710,9,0,0 +2013,7,11,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1100,-5,0,1213,-13,0,0 +2013,10,31,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,600,2,0,720,4,0,0 +2013,7,1,1,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1517,0,,1840,0,1,1 +2013,7,13,6,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1708,35,1,1832,29,1,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,13,0,2255,11,0,0 +2013,9,10,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1416,-3,0,0 +2013,4,29,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,715,-8,0,1508,6,0,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,620,0,0,950,-17,0,0 +2013,8,7,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1359,-1,0,1556,-4,0,0 +2013,8,6,2,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,12,0,2353,4,0,0 +2013,7,3,3,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,77,1,2113,67,1,0 +2013,10,6,7,WN,10792,Buffalo Niagara International,Buffalo,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,-5,0,1550,-31,0,0 +2013,6,15,6,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1700,35,1,1825,50,1,0 +2013,8,17,6,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,810,-6,0,1005,-3,0,0 +2013,6,24,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2105,0,0,2225,-3,0,0 +2013,8,23,5,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1710,2,0,2108,-15,0,0 +2013,8,12,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,725,4,0,0 +2013,4,16,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,3,0,2045,4,0,0 +2013,5,3,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1339,-4,0,1732,-7,0,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,4,0,2010,26,1,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1905,4,0,2142,-20,0,0 +2013,4,28,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-4,0,2158,-17,0,0 +2013,8,9,5,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1735,83,1,1915,77,1,0 +2013,10,8,2,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1344,-3,0,1745,2,0,0 +2013,10,30,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1300,-1,0,1614,0,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,820,51,1,958,38,1,0 +2013,5,22,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,32,1,2045,23,1,0 +2013,4,10,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-3,0,1320,-7,0,0 +2013,7,14,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1741,73,1,1904,74,1,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,-2,0,1335,-10,0,0 +2013,7,13,6,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2133,0,0,535,2,0,0 +2013,4,18,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1450,5,0,1606,-13,0,0 +2013,10,27,7,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,555,-2,0,835,-1,0,0 +2013,5,17,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1230,-5,0,2021,-6,0,0 +2013,9,7,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,727,-4,0,930,-7,0,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,-1,0,1450,-10,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,31,1,930,25,1,0 +2013,10,24,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,-3,0,1931,13,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,133,1,1925,141,1,0 +2013,5,30,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,123,1,924,136,1,0 +2013,8,30,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,846,0,0,1638,-8,0,0 +2013,10,31,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-6,0,950,18,1,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1347,-1,0,1545,-6,0,0 +2013,9,25,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,-6,0,2152,-17,0,0 +2013,9,15,7,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,-7,0,555,-13,0,0 +2013,6,28,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1735,4,0,2045,10,0,0 +2013,8,2,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,2,0,900,-1,0,0 +2013,9,20,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1345,-9,0,1636,-8,0,0 +2013,5,21,2,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,555,-5,0,900,15,1,0 +2013,8,7,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-4,0,1648,-7,0,0 +2013,5,5,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2030,1,0,2330,1,0,0 +2013,9,11,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-9,0,849,-10,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1020,7,0,1215,-8,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,-3,0,1427,-13,0,0 +2013,4,1,1,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,940,5,0,1420,-8,0,0 +2013,8,24,6,VX,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1530,0,0,1715,-23,0,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1355,1,0,1515,0,0,0 +2013,4,14,7,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1725,6,0,1749,-14,0,0 +2013,6,1,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,120,1,2023,105,1,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1920,170,1,2235,155,1,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1540,21,1,1820,39,1,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,22,1,2020,37,1,0 +2013,5,4,6,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1650,-7,0,1835,-24,0,0 +2013,9,10,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,8,0,1400,-6,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,88,1,1110,81,1,0 +2013,4,15,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-3,0,1010,10,0,0 +2013,5,16,4,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1101,-2,0,1334,-5,0,0 +2013,6,28,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-8,0,2259,-15,0,0 +2013,6,16,7,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,700,-1,0,1003,17,1,0 +2013,7,31,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2130,-5,0,2250,-5,0,0 +2013,10,17,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-4,0,2115,-24,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,79,1,1545,76,1,0 +2013,10,3,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,905,39,1,1129,49,1,0 +2013,5,18,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1355,0,0,1501,-9,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1737,48,1,1924,59,1,0 +2013,8,16,5,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1607,-2,0,1820,-7,0,0 +2013,6,11,2,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1940,86,1,2130,74,1,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,-6,0,1610,-6,0,0 +2013,9,25,3,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-6,0,957,-18,0,0 +2013,8,5,1,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-10,0,1354,-3,0,0 +2013,7,17,3,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1130,-4,0,1350,-12,0,0 +2013,7,22,1,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,0,0,825,-8,0,0 +2013,8,28,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-7,0,1019,-5,0,0 +2013,7,16,2,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,-12,0,905,-8,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1500,-3,0,1728,-36,0,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,708,-5,0,912,-18,0,0 +2013,7,9,2,DL,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1705,24,1,2105,26,1,0 +2013,10,10,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1830,-12,0,1930,-26,0,0 +2013,5,24,5,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1829,30,1,2144,14,0,0 +2013,10,3,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,835,2,0,1025,2,0,0 +2013,10,31,4,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1353,-4,0,1649,-4,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1415,32,1,1640,155,1,0 +2013,5,1,3,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1724,25,1,1903,-8,0,0 +2013,9,18,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,740,-10,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1630,-3,0,1855,-24,0,0 +2013,6,15,6,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,745,4,0,1340,0,0,0 +2013,4,23,2,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,510,-8,0,756,-30,0,0 +2013,7,12,5,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,845,-3,0,1430,-7,0,0 +2013,8,27,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,2012,11,0,2142,11,0,0 +2013,9,5,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1040,-1,0,1131,-2,0,0 +2013,5,26,7,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,19,1,2045,5,0,0 +2013,8,9,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-3,0,815,-7,0,0 +2013,9,7,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-10,0,715,-12,0,0 +2013,9,6,5,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-8,0,1901,8,0,0 +2013,9,20,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1425,-7,0,1605,-4,0,0 +2013,4,19,5,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,600,6,0,810,-5,0,0 +2013,10,15,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,755,-4,0,1201,-23,0,0 +2013,10,6,7,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,754,-4,0,913,-12,0,0 +2013,6,7,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-4,0,1304,-10,0,0 +2013,5,31,5,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,830,17,1,1131,0,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1730,0,0,1825,41,1,0 +2013,8,25,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,955,-6,0,1248,4,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,-3,0,1343,-17,0,0 +2013,8,10,6,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1222,-4,0,1417,-11,0,0 +2013,4,28,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2028,-3,0,2336,-24,0,0 +2013,8,29,4,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1606,136,1,1624,136,1,0 +2013,9,25,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,845,-5,0,1054,-17,0,0 +2013,9,22,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-10,0,1320,16,1,0 +2013,5,11,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1858,-5,0,2358,-9,0,0 +2013,4,23,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,815,5,0,935,-3,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-2,0,1624,-1,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,-3,0,1458,-15,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1251,-5,0,1617,-17,0,0 +2013,8,15,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1805,-9,0,1930,-17,0,0 +2013,5,12,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1135,0,0,1200,5,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1502,3,0,1635,-1,0,0 +2013,6,8,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2138,-2,0,2229,-15,0,0 +2013,10,10,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2035,42,1,2330,31,1,0 +2013,5,23,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1731,330,1,1949,360,1,0 +2013,4,21,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,-5,0,1357,10,0,0 +2013,8,5,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,0,0,1025,-1,0,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,740,-3,0,950,-9,0,0 +2013,4,1,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1622,-7,0,1940,-8,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1335,10,0,1547,19,1,0 +2013,6,28,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,742,-3,0,900,-3,0,0 +2013,4,20,6,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,855,-5,0,1337,-8,0,0 +2013,6,22,6,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1200,0,0,2045,-10,0,0 +2013,7,26,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1010,25,1,1128,60,1,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,927,-5,0,1021,-9,0,0 +2013,8,26,1,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,835,-16,0,0 +2013,10,23,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1935,10,0,2035,-1,0,0 +2013,9,6,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,845,-6,0,955,-16,0,0 +2013,9,1,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1800,-4,0,2020,-15,0,0 +2013,8,29,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,845,-4,0,1140,-9,0,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1855,94,1,2135,99,1,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,907,-5,0,1254,1,0,0 +2013,9,19,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,2000,-5,0,2127,-5,0,0 +2013,9,1,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1910,-6,0,2028,-30,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1515,2,0,1742,15,1,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2215,7,0,2356,-5,0,0 +2013,4,18,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2140,29,1,2250,23,1,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1855,21,1,2019,26,1,0 +2013,7,27,6,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1214,121,1,1315,133,1,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1320,7,0,1435,16,1,0 +2013,8,5,1,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-4,0,1122,1,0,0 +2013,5,9,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,96,1,1827,86,1,0 +2013,5,7,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,-2,0,1850,-10,0,0 +2013,8,6,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1825,-4,0,2138,-16,0,0 +2013,5,29,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1106,21,1,1238,26,1,0 +2013,7,20,6,DL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1110,-3,0,1328,-10,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,-1,0,2017,-13,0,0 +2013,4,1,1,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-8,0,917,-2,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,635,-4,0,800,-23,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,124,1,1830,115,1,0 +2013,5,29,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,935,-4,0,1042,0,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1251,3,0,1859,9,0,0 +2013,9,7,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1750,-8,0,2045,-20,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1935,24,1,2240,19,1,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1415,21,1,1515,12,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1140,6,0,1315,-8,0,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-3,0,1240,8,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-2,0,1016,-5,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1855,-2,0,2259,0,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1100,0,0,1235,-7,0,0 +2013,8,23,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,910,2,0,1130,-16,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1555,-5,0,1646,-8,0,0 +2013,5,16,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,1,0,1315,6,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,-3,0,1000,-11,0,0 +2013,10,7,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,3,0,1527,49,1,0 +2013,7,23,2,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-12,0,711,-15,0,0 +2013,10,8,2,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1529,-5,0,1820,-18,0,0 +2013,8,24,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,0,0,755,-1,0,0 +2013,5,6,1,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1351,-7,0,1605,-16,0,0 +2013,10,14,1,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1022,16,1,1348,1,0,0 +2013,6,16,7,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2110,-6,0,550,-22,0,0 +2013,8,10,6,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,-3,0,604,-10,0,0 +2013,8,23,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-5,0,909,0,0,0 +2013,7,18,4,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1500,-4,0,1747,13,0,0 +2013,4,17,3,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1131,2,0,2000,-17,0,0 +2013,9,30,1,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-3,0,1515,0,0,0 +2013,6,18,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,-3,0,1240,-2,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,950,-1,0,1138,-2,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1654,-7,0,2110,19,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,10,0,1238,1,0,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,820,0,,950,0,1,1 +2013,9,18,3,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1535,-8,0,1700,-9,0,0 +2013,5,24,5,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1920,180,1,2039,197,1,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1242,17,1,1520,3,0,0 +2013,5,2,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,814,-8,0,1425,12,0,0 +2013,9,18,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,9,0,14,-6,0,0 +2013,4,25,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,955,16,1,1236,5,0,0 +2013,5,4,6,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1215,36,1,1406,26,1,0 +2013,8,14,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1300,-4,0,1540,7,0,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1525,-1,0,1811,-30,0,0 +2013,10,8,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1105,-2,0,1320,-12,0,0 +2013,9,20,5,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,630,6,0,753,5,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,0,0,2000,10,0,0 +2013,4,25,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1700,14,0,2124,18,1,0 +2013,5,17,5,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1050,-5,0,1410,-14,0,0 +2013,10,28,1,YV,14100,Philadelphia International,Philadelphia,PA,14524,Richmond International,Richmond,VA,940,-4,0,1045,-19,0,0 +2013,4,2,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,600,1,0,940,2,0,0 +2013,6,16,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,2,0,1435,-20,0,0 +2013,7,15,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1645,160,1,1800,140,1,0 +2013,10,18,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2025,-4,0,2122,-15,0,0 +2013,10,14,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,7,0,1540,10,0,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2055,-7,0,2228,-17,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1958,-2,0,2200,-16,0,0 +2013,9,30,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,525,-5,0,847,-14,0,0 +2013,4,13,6,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1400,47,1,2250,6,0,0 +2013,7,5,5,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1825,-9,0,2145,-36,0,0 +2013,8,5,1,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,-1,0,912,-6,0,0 +2013,6,2,7,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1511,0,0,1626,1,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1610,308,1,1725,292,1,0 +2013,7,26,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-5,0,1643,-23,0,0 +2013,10,21,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,-3,0,1610,-1,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1707,-6,0,2318,-23,0,0 +2013,8,11,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,829,-3,0,1120,-10,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1605,0,0,1745,7,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,-2,0,1340,-18,0,0 +2013,10,21,1,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,805,6,0,1045,-2,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,-5,0,945,-24,0,0 +2013,4,11,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,600,-4,0,715,-10,0,0 +2013,9,21,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1250,1,0,1400,-2,0,0 +2013,9,17,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,600,0,0,750,-12,0,0 +2013,4,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1010,6,0,1135,-8,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,5,0,1055,8,0,0 +2013,4,2,2,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,34,1,1955,27,1,0 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1705,-6,0,1805,-2,0,0 +2013,8,16,5,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1029,5,0,1319,2,0,0 +2013,6,20,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,-10,0,1810,-18,0,0 +2013,10,8,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1054,-13,0,1400,-45,0,0 +2013,6,26,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,705,2,0,830,-7,0,0 +2013,8,9,5,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1815,8,0,2110,8,0,0 +2013,5,26,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1140,1,0,1310,-9,0,0 +2013,10,16,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,750,2,0,1225,-20,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1045,3,0,1200,8,0,0 +2013,4,22,1,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,63,1,1140,55,1,0 +2013,10,18,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1620,72,1,1811,74,1,0 +2013,10,31,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1455,-5,0,1710,-16,0,0 +2013,8,6,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,515,-8,0,635,-15,0,0 +2013,4,16,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,842,-8,0,1110,-22,0,0 +2013,8,31,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,-1,0,1746,28,1,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,741,-4,0,910,-17,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,1,0,720,9,0,0 +2013,4,21,7,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-5,0,2240,-23,0,0 +2013,8,10,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2304,18,1,650,37,1,0 +2013,6,26,3,AS,10423,Austin - Bergstrom International,Austin,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,35,1,2036,29,1,0 +2013,6,9,7,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,2355,13,0,724,8,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,2,0,2210,54,1,0 +2013,10,16,3,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1705,-2,0,1912,-4,0,0 +2013,10,25,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2005,-7,0,2125,-8,0,0 +2013,9,3,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1955,0,0,2145,7,0,0 +2013,5,29,3,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1649,-3,0,1940,1,0,0 +2013,7,30,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,-3,0,1230,-8,0,0 +2013,4,21,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1145,14,0,1250,12,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2030,-3,0,2129,-17,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,830,-2,0,950,-18,0,0 +2013,4,8,1,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1950,-5,0,2209,29,1,0 +2013,10,10,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1333,-3,0,1624,-22,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1900,10,0,2035,-6,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1240,0,0,1615,-3,0,0 +2013,4,25,4,9E,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,822,-17,0,0 +2013,8,7,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,758,-4,0,1017,-3,0,0 +2013,5,16,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1015,-3,0,1125,-13,0,0 +2013,4,10,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1900,168,1,2015,195,1,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1528,-3,0,1709,-12,0,0 +2013,4,19,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1855,47,1,2200,94,1,0 +2013,5,5,7,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,-7,0,2039,-28,0,0 +2013,5,9,4,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,830,-4,0,955,-8,0,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,2030,36,1,35,30,1,0 +2013,10,30,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,-4,0,1722,-12,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1526,0,0,1654,-19,0,0 +2013,8,31,6,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,1047,-12,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1900,101,1,2325,106,1,0 +2013,4,13,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,610,-11,0,824,-6,0,0 +2013,6,11,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,0,0,904,5,0,0 +2013,10,16,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,-3,0,1127,4,0,0 +2013,6,23,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,911,-9,0,1030,-23,0,0 +2013,7,12,5,EV,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1040,-4,0,1240,-8,0,0 +2013,9,27,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1600,46,1,1755,24,1,0 +2013,6,5,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,600,-11,0,741,-16,0,0 +2013,8,25,7,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-1,0,1412,18,1,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1015,40,1,1444,13,0,0 +2013,4,21,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-8,0,950,-24,0,0 +2013,7,9,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,-2,0,1007,2,0,0 +2013,10,29,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1530,-4,0,1829,-21,0,0 +2013,9,19,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-1,0,1918,-5,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,930,-3,0,1105,-14,0,0 +2013,9,28,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1335,6,0,1420,0,0,0 +2013,4,15,1,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2005,51,1,2050,85,1,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-1,0,1855,-10,0,0 +2013,4,19,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-1,0,1026,-10,0,0 +2013,10,2,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1555,-2,0,1838,-5,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-5,0,710,1,0,0 +2013,6,9,7,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,8,0,2230,12,0,0 +2013,5,22,3,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,650,-1,0,940,-13,0,0 +2013,9,22,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2035,-6,0,2243,-17,0,0 +2013,6,17,1,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,10,0,753,4,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,25,1,2128,10,0,0 +2013,8,13,2,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1750,9,0,1910,1,0,0 +2013,7,27,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,725,11,0,929,4,0,0 +2013,5,23,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,707,-2,0,823,-9,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1615,27,1,1720,28,1,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,650,-2,0,940,-1,0,0 +2013,9,6,5,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,4,0,1035,17,1,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,900,0,0,1000,-2,0,0 +2013,9,29,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1430,246,1,1555,235,1,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2155,5,0,5,-5,0,0 +2013,8,30,5,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-2,0,1100,9,0,0 +2013,10,21,1,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-6,0,1915,8,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1745,19,1,1925,10,0,0 +2013,4,10,3,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1610,-1,0,1720,5,0,0 +2013,8,14,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1545,194,1,1906,194,1,0 +2013,7,9,2,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,610,1,0,745,-7,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,925,25,1,1010,17,1,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-4,0,948,-6,0,0 +2013,7,2,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,-2,0,855,5,0,0 +2013,10,18,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1727,-1,0,2008,-15,0,0 +2013,10,5,6,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1810,37,1,2045,29,1,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1300,19,1,1430,12,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-1,0,1313,-13,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1435,21,1,1550,19,1,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,-5,0,1024,-21,0,0 +2013,10,21,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1115,27,1,1715,37,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1630,-1,0,1745,20,1,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1340,-3,0,1639,-15,0,0 +2013,4,1,1,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2300,-6,0,624,-26,0,0 +2013,8,5,1,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1821,42,1,2002,45,1,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1325,6,0,1645,26,1,0 +2013,6,1,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1125,38,1,1328,33,1,0 +2013,6,3,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,3,0,1821,-9,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2210,-5,0,2358,1,0,0 +2013,7,22,1,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,49,1,1355,44,1,0 +2013,5,16,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1021,3,0,1135,8,0,0 +2013,6,16,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,605,6,0,837,-8,0,0 +2013,5,8,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1312,113,1,1403,120,1,0 +2013,7,19,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,930,-4,0,1054,4,0,0 +2013,4,2,2,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,902,154,1,1145,153,1,0 +2013,8,1,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1440,17,1,1648,32,1,0 +2013,4,20,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,640,1,0,844,-1,0,0 +2013,5,23,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2010,205,1,2144,196,1,0 +2013,4,26,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1336,-1,0,1621,-9,0,0 +2013,9,16,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1030,-1,0,1120,4,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,745,-1,0,855,-6,0,0 +2013,5,6,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,831,9,0,1031,-22,0,0 +2013,7,18,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,3,0,1928,26,1,0 +2013,10,20,7,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,-11,0,1255,-8,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2230,-1,0,2340,-2,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,59,-3,0,630,-16,0,0 +2013,5,26,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-10,0,1400,-16,0,0 +2013,4,8,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1530,-1,0,1715,-7,0,0 +2013,7,22,1,DL,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-2,0,1110,-6,0,0 +2013,10,10,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1423,9,0,1604,-6,0,0 +2013,4,18,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1545,-2,0,1827,38,1,0 +2013,5,5,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,-1,0,1955,-5,0,0 +2013,7,27,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1750,-3,0,1900,9,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1211,-4,0,1406,-16,0,0 +2013,9,13,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,10,0,1230,7,0,0 +2013,10,10,4,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1815,16,1,1905,11,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2019,1,0,2332,-9,0,0 +2013,9,30,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1519,-2,0,1553,0,0,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1730,5,0,2000,-9,0,0 +2013,10,3,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1517,-4,0,1834,-8,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1346,8,0,2221,12,0,0 +2013,8,10,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1449,-3,0,1614,-1,0,0 +2013,7,7,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1232,-3,0,1440,-3,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,855,-7,0,1005,-20,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,730,-2,0,1010,-16,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2035,18,1,2215,19,1,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1033,-12,0,1434,-18,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1850,9,0,1950,9,0,0 +2013,9,22,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,720,-1,0,1015,-4,0,0 +2013,6,1,6,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,-9,0,2025,-6,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,5,0,2215,-8,0,0 +2013,4,24,3,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1133,-4,0,1406,-6,0,0 +2013,8,12,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,848,-6,0,1020,-17,0,0 +2013,9,18,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1515,-5,0,2040,-19,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1618,18,1,1701,24,1,0 +2013,4,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1010,-4,0,1320,2,0,0 +2013,10,1,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1745,7,0,2003,5,0,0 +2013,4,24,3,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1720,100,1,1835,97,1,0 +2013,6,21,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2245,60,1,135,60,1,0 +2013,4,17,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,20,41,1,535,15,1,0 +2013,10,5,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1605,2,0,2352,14,0,0 +2013,8,8,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2140,100,1,542,102,1,0 +2013,5,15,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1700,-9,0,1804,-21,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,825,-2,0,1055,-11,0,0 +2013,6,7,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,800,2,0,0 +2013,6,12,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1750,1,0,1929,-5,0,0 +2013,8,15,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2335,-2,0,800,-7,0,0 +2013,9,26,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1120,-1,0,1220,9,0,0 +2013,7,5,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1325,-4,0,1345,-14,0,0 +2013,8,16,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,-5,0,2037,-4,0,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1355,4,0,1702,-10,0,0 +2013,6,24,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1746,128,1,1857,176,1,0 +2013,9,13,5,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1455,54,1,1615,46,1,0 +2013,6,30,7,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1115,-10,0,1330,-14,0,0 +2013,10,22,2,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1827,-2,0,2029,-23,0,0 +2013,4,25,4,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1530,12,0,1645,10,0,0 +2013,6,30,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-6,0,1340,-13,0,0 +2013,6,13,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,-4,0,919,-7,0,0 +2013,6,29,6,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,10,0,2218,12,0,0 +2013,7,15,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,727,-3,0,839,-5,0,0 +2013,5,8,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2017,-1,0,2118,-9,0,0 +2013,8,6,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,12,0,1115,28,1,0 +2013,10,2,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,515,-12,0,641,-24,0,0 +2013,4,15,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,827,-14,0,1024,-19,0,0 +2013,10,3,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1200,-5,0,1319,-10,0,0 +2013,4,14,7,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,1217,-26,0,0 +2013,8,24,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,-3,0,2203,25,1,0 +2013,7,15,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1359,-4,0,1636,-14,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-3,0,1019,-14,0,0 +2013,7,3,3,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1714,0,0,2053,-8,0,0 +2013,7,7,7,EV,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,625,0,0,758,-4,0,0 +2013,9,28,6,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,829,-4,0,841,-15,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,4,0,1250,-3,0,0 +2013,8,7,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,940,46,1,1344,33,1,0 +2013,9,27,5,FL,13244,Memphis International,Memphis,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1609,5,0,1915,10,0,0 +2013,4,24,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2100,19,1,2155,18,1,0 +2013,9,14,6,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1530,-5,0,1659,-19,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,745,-2,0,1045,-11,0,0 +2013,8,30,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1735,-8,0,1854,6,0,0 +2013,4,21,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,750,-1,0,920,9,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,-1,0,705,-8,0,0 +2013,5,13,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,-6,0,1652,-10,0,0 +2013,6,23,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,714,-3,0,856,-32,0,0 +2013,5,27,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1002,-2,0,1115,-12,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-1,0,720,5,0,0 +2013,10,24,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1925,3,0,2109,-7,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1745,0,0,1900,-14,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,2050,0,,2224,0,1,1 +2013,8,17,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1240,-6,0,1622,-22,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-4,0,1401,-8,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-1,0,925,-2,0,0 +2013,10,18,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-4,0,1224,-20,0,0 +2013,4,20,6,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1155,1,0,1215,-2,0,0 +2013,6,29,6,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1120,21,1,1355,30,1,0 +2013,6,29,6,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1252,-4,0,1433,-1,0,0 +2013,10,15,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,0,0,1357,-9,0,0 +2013,10,31,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-6,0,1910,11,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,0,0,2337,-12,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-2,0,1939,1,0,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1220,2,0,1353,-4,0,0 +2013,5,10,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-4,0,1840,1,0,0 +2013,9,9,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,700,-6,0,1515,1,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1314,7,0,1439,10,0,0 +2013,10,29,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1825,-3,0,1950,-2,0,0 +2013,5,29,3,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,700,-3,0,955,-13,0,0 +2013,6,2,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,721,-7,0,905,-8,0,0 +2013,4,14,7,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,35,-2,0,605,-20,0,0 +2013,6,22,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1258,-11,0,1425,-21,0,0 +2013,8,22,4,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1859,33,1,2022,29,1,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1752,57,1,1854,45,1,0 +2013,9,29,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-3,0,1828,2,0,0 +2013,5,12,7,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-8,0,2055,-9,0,0 +2013,8,10,6,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,4,0,1455,3,0,0 +2013,9,18,3,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,920,-4,0,1043,4,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1408,-3,0,1451,-10,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1005,0,0,1305,-2,0,0 +2013,7,26,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1230,26,1,1335,25,1,0 +2013,8,4,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,845,-6,0,1015,-15,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,810,-1,0,1030,11,0,0 +2013,10,8,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1153,4,0,1340,7,0,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1305,35,1,1600,31,1,0 +2013,8,28,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1815,0,0,1835,-14,0,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1015,-3,0,1148,-15,0,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1617,-5,0,1923,-21,0,0 +2013,7,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1850,127,1,2100,101,1,0 +2013,4,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,2000,-14,0,2238,-9,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1515,-2,0,1816,-13,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2025,94,1,2235,94,1,0 +2013,7,13,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1000,-2,0,1131,3,0,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,11,0,2035,4,0,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,730,-4,0,1010,-2,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1600,-2,0,1742,-9,0,0 +2013,4,21,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1210,-1,0,1255,5,0,0 +2013,6,10,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1955,129,1,2110,141,1,0 +2013,9,25,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,843,-6,0,1322,-36,0,0 +2013,7,23,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-2,0,725,-1,0,0 +2013,9,1,7,EV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,957,-4,0,1133,-10,0,0 +2013,8,31,6,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1024,-3,0,1825,-26,0,0 +2013,10,20,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,29,1,1625,26,1,0 +2013,6,4,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,1,0,745,-13,0,0 +2013,9,22,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1129,-4,0,1405,-17,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1225,5,0,1325,6,0,0 +2013,7,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1945,-1,0,2258,-10,0,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,736,20,1,854,25,1,0 +2013,5,1,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-8,0,1201,-4,0,0 +2013,6,14,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,21,1,2020,37,1,0 +2013,7,11,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,315,1,1030,326,1,0 +2013,7,15,1,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-3,0,1007,-14,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1840,4,0,2359,-10,0,0 +2013,5,24,5,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2020,-3,0,115,6,0,0 +2013,9,23,1,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1713,-6,0,1840,-22,0,0 +2013,5,3,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,2,0,1612,-15,0,0 +2013,6,29,6,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,48,1,1403,46,1,0 +2013,8,8,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1605,0,0,1730,0,0,0 +2013,9,19,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1025,-2,0,1320,3,0,0 +2013,4,4,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1305,27,1,1610,28,1,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-4,0,1911,-12,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-6,0,1333,-27,0,0 +2013,5,31,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,948,10,0,0 +2013,8,20,2,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1640,-1,0,1755,-25,0,0 +2013,6,15,6,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1645,2,0,1913,31,1,0 +2013,6,7,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,945,1,0,1120,-21,0,0 +2013,10,4,5,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,3,0,1905,-4,0,0 +2013,7,12,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,51,1,1535,44,1,0 +2013,8,27,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1935,7,0,2105,-12,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,840,-4,0,1105,-25,0,0 +2013,6,22,6,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,640,1,0,820,3,0,0 +2013,5,17,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-4,0,2059,-15,0,0 +2013,4,10,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1711,225,1,1725,264,1,0 +2013,10,20,7,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,854,-5,0,932,-9,0,0 +2013,8,18,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,-7,0,1750,-21,0,0 +2013,10,23,3,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2018,0,0,2144,-18,0,0 +2013,7,28,7,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1120,2,0,1200,0,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,619,-8,0,833,-9,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,-5,0,1335,11,0,0 +2013,9,16,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,704,-7,0,1543,-19,0,0 +2013,4,4,4,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1246,61,1,1730,31,1,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,730,-4,0,830,-7,0,0 +2013,10,19,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1655,2,0,1813,-6,0,0 +2013,9,30,1,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1100,-3,0,1855,1,0,0 +2013,8,18,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,500,-2,0,937,-14,0,0 +2013,10,9,3,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,-1,0,1024,-1,0,0 +2013,4,29,1,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1057,-8,0,1302,-8,0,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1615,-1,0,1719,-5,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1130,-7,0,1338,-11,0,0 +2013,8,23,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1205,-7,0,1458,-21,0,0 +2013,10,10,4,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2055,0,0,2359,-14,0,0 +2013,4,16,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1301,0,0,1624,-21,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,7,0,1530,25,1,0 +2013,7,25,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,836,-12,0,1005,-8,0,0 +2013,10,20,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-1,0,1700,9,0,0 +2013,4,22,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,645,-3,0,815,-5,0,0 +2013,7,18,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1742,7,0,1823,19,1,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-1,0,1353,-17,0,0 +2013,6,23,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,-6,0,719,5,0,0 +2013,9,13,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1440,193,1,2315,196,1,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1620,-5,0,1705,-7,0,0 +2013,7,4,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1330,-8,0,1515,-1,0,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-3,0,1930,-5,0,0 +2013,7,31,3,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,0,0,2216,-19,0,0 +2013,6,4,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1417,13,0,1603,30,1,0 +2013,6,24,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,937,-6,0,1214,-27,0,0 +2013,5,6,1,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1750,-8,0,1908,-15,0,0 +2013,8,9,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1645,6,0,1949,24,1,0 +2013,7,2,2,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,623,-13,0,915,-6,0,0 +2013,9,6,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1630,25,1,1835,0,0,0 +2013,8,27,2,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,3,0,1543,9,0,0 +2013,7,23,2,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,953,-6,0,1159,-15,0,0 +2013,7,26,5,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1954,7,0,2103,-1,0,0 +2013,8,3,6,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1510,-17,0,1710,-30,0,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,645,-7,0,802,8,0,0 +2013,6,16,7,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,24,1,1630,27,1,0 +2013,5,3,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1045,-7,0,1333,-15,0,0 +2013,9,30,1,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1917,65,1,2129,44,1,0 +2013,7,12,5,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,617,-10,0,730,-15,0,0 +2013,9,6,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,955,127,1,1245,123,1,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1810,17,1,2240,8,0,0 +2013,4,11,4,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,2018,52,1,2141,44,1,0 +2013,9,19,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1900,-3,0,2122,-41,0,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,-6,0,822,-10,0,0 +2013,7,30,2,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1257,-4,0,1435,-27,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,925,-2,0,1152,-21,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1624,11,0,1907,91,1,0 +2013,10,13,7,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1355,-7,0,1608,-2,0,0 +2013,5,6,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2135,1,0,2350,2,0,0 +2013,9,29,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1800,-8,0,1940,-15,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,2210,93,1,2317,95,1,0 +2013,7,25,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-3,0,1400,-9,0,0 +2013,10,18,5,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,601,0,0,915,-4,0,0 +2013,6,5,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2142,10,0,2335,2,0,0 +2013,10,18,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1145,-1,0,1424,7,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,3,0,1430,-7,0,0 +2013,7,22,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1416,-1,0,1602,-10,0,0 +2013,7,8,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2115,167,1,2349,137,1,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1550,25,1,1818,-8,0,0 +2013,5,3,5,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,56,1,1428,57,1,0 +2013,10,1,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1509,-3,0,1731,-22,0,0 +2013,7,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,2008,75,1,2331,72,1,0 +2013,8,18,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1304,-20,0,1350,-13,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1737,-3,0,1902,-7,0,0 +2013,4,19,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,601,39,1,830,37,1,0 +2013,8,10,6,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1626,-6,0,1835,-10,0,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2344,-1,0,338,-4,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,33,1,1459,42,1,0 +2013,10,29,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,850,0,0,1045,-9,0,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2025,3,0,2155,17,1,0 +2013,7,3,3,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-1,0,1112,21,1,0 +2013,8,23,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2120,-6,0,2347,5,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1735,1,0,2040,8,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1800,-1,0,2105,19,1,0 +2013,9,9,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1349,21,1,1601,19,1,0 +2013,7,26,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1212,6,0,1955,-14,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,700,-2,0,805,-6,0,0 +2013,7,19,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-2,0,1712,0,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,-6,0,1715,-25,0,0 +2013,10,2,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,3,0,1120,-9,0,0 +2013,5,15,3,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1205,0,0,1820,-1,0,0 +2013,7,13,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2045,-13,0,449,-36,0,0 +2013,7,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1120,-3,0,1320,-7,0,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,1054,20,1,1831,5,0,0 +2013,7,18,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,23,1,720,7,0,0 +2013,10,20,7,EV,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1743,2,0,1913,19,1,0 +2013,5,7,2,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1031,-5,0,1556,-8,0,0 +2013,7,11,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1845,18,1,2005,12,0,0 +2013,5,4,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,648,-2,0,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1635,42,1,1735,31,1,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,642,-4,0,1019,14,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1605,-4,0,1705,-8,0,0 +2013,10,10,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,831,-4,0,930,-15,0,0 +2013,9,14,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,659,23,1,742,23,1,0 +2013,7,25,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,14,0,1825,0,0,0 +2013,6,29,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1008,0,0,1133,-18,0,0 +2013,6,13,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,53,1,1923,78,1,0 +2013,4,9,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,126,1,2215,182,1,0 +2013,6,21,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1328,-5,0,1530,3,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1515,-3,0,1840,-16,0,0 +2013,7,23,2,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,41,1,1940,48,1,0 +2013,4,25,4,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,645,-9,0,746,-13,0,0 +2013,5,25,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-4,0,1645,14,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,27,1,1915,27,1,0 +2013,10,25,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1745,-6,0,2345,-8,0,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2045,2,0,2309,6,0,0 +2013,7,9,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1415,53,1,2030,37,1,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,925,8,0,1010,-1,0,0 +2013,7,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-3,0,1224,-15,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1455,0,0,1623,-5,0,0 +2013,10,10,4,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1254,5,0,1411,6,0,0 +2013,7,11,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1025,37,1,1131,49,1,0 +2013,6,20,4,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2155,9,0,2305,15,1,0 +2013,4,10,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,32,1,1913,30,1,0 +2013,6,11,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,26,1,1721,11,0,0 +2013,10,3,4,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1005,50,1,1355,77,1,0 +2013,6,18,2,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1130,-1,0,1725,-25,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1825,6,0,2215,8,0,0 +2013,4,11,4,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2135,1,0,15,-4,0,0 +2013,7,1,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,919,7,0,1237,-11,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1000,-4,0,1407,-15,0,0 +2013,6,28,5,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1018,-6,0,1140,-24,0,0 +2013,4,15,1,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1125,-4,0,1958,0,0,0 +2013,6,10,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-8,0,754,-18,0,0 +2013,8,29,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1105,83,1,1220,92,1,0 +2013,6,5,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,902,-2,0,1100,26,1,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,850,26,1,1057,10,0,0 +2013,10,12,6,UA,11618,Newark Liberty International,Newark,NJ,12173,Honolulu International,Honolulu,HI,1329,19,1,1813,-1,0,0 +2013,7,30,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1400,-3,0,1735,-21,0,0 +2013,8,13,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-12,0,1227,-20,0,0 +2013,10,22,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,800,0,0,900,-2,0,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1135,-5,0,1321,-9,0,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,855,-3,0,1011,-19,0,0 +2013,5,10,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-8,0,2210,-7,0,0 +2013,4,10,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,732,-5,0,1015,-13,0,0 +2013,7,18,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1056,-7,0,1325,-2,0,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2151,-8,0,2347,-27,0,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1515,2,0,1830,-4,0,0 +2013,4,21,7,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,605,-5,0,903,10,0,0 +2013,9,2,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-3,0,1918,-6,0,0 +2013,10,18,5,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2008,-6,0,2015,10,0,0 +2013,4,5,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1705,6,0,1825,-1,0,0 +2013,9,14,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1755,-5,0,1933,-10,0,0 +2013,5,30,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1250,55,1,1444,59,1,0 +2013,9,23,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,10,0,1539,0,0,0 +2013,7,15,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,6,0,1155,1,0,0 +2013,7,4,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1545,-2,0,1900,-47,0,0 +2013,4,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1119,-8,0,1232,-11,0,0 +2013,8,9,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,0,0,1106,-10,0,0 +2013,9,1,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,-1,0,1658,1,0,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,747,-1,0,1139,-13,0,0 +2013,4,27,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1120,-4,0,1310,-4,0,0 +2013,10,23,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1836,-10,0,0 +2013,4,9,2,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1735,0,0,2019,-10,0,0 +2013,10,6,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2147,-4,0,2235,2,0,0 +2013,10,9,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,39,1,2150,18,1,0 +2013,10,8,2,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,917,-16,0,1130,-26,0,0 +2013,9,19,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1034,100,1,1119,103,1,0 +2013,4,4,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,-6,0,1905,1,0,0 +2013,7,28,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,1,0,1950,15,1,0 +2013,4,9,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,199,1,1221,190,1,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-7,0,905,-21,0,0 +2013,7,26,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,12,0,1250,14,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-5,0,1103,-18,0,0 +2013,9,22,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1730,-9,0,1842,12,0,0 +2013,8,21,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,-7,0,1619,7,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,814,-7,0,1425,-11,0,0 +2013,5,6,1,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1409,-2,0,1619,15,1,0 +2013,7,22,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,30,1,2000,26,1,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,655,-5,0,1125,-27,0,0 +2013,8,30,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,645,-2,0,720,6,0,0 +2013,5,8,3,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,-10,0,1820,-9,0,0 +2013,10,16,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,505,-12,0,541,-10,0,0 +2013,7,1,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1835,-1,0,1930,-11,0,0 +2013,7,21,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2114,18,1,2359,30,1,0 +2013,4,14,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,-7,0,1733,-12,0,0 +2013,10,23,3,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1605,-11,0,1819,-17,0,0 +2013,4,18,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12339,Indianapolis International,Indianapolis,IN,1012,-4,0,1126,-13,0,0 +2013,8,7,3,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1230,-5,0,1558,-27,0,0 +2013,9,14,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-5,0,847,-4,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1900,50,1,2050,29,1,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1331,64,1,1509,63,1,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,730,-4,0,750,-12,0,0 +2013,5,20,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1815,77,1,2054,84,1,0 +2013,5,8,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,62,1,1345,66,1,0 +2013,7,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,-2,0,2115,2,0,0 +2013,10,15,2,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1456,-5,0,1641,-11,0,0 +2013,10,6,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-2,0,1015,-8,0,0 +2013,6,12,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1925,10,0,2148,-20,0,0 +2013,9,3,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2114,-1,0,542,-26,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,950,2,0,1232,75,1,0 +2013,10,18,5,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1359,0,0,1703,-15,0,0 +2013,8,16,5,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,18,1,2139,38,1,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2125,-6,0,4,-4,0,0 +2013,9,4,3,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1845,-11,0,2134,-33,0,0 +2013,9,27,5,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1710,-12,0,1930,-22,0,0 +2013,6,13,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1600,51,1,24,38,1,0 +2013,6,30,7,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,936,82,1,1128,78,1,0 +2013,5,7,2,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1403,5,0,2000,-18,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1020,113,1,1237,95,1,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,950,-2,0,1232,-1,0,0 +2013,9,22,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,-5,0,1121,-4,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1340,6,0,1440,-3,0,0 +2013,6,25,2,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,187,1,1350,189,1,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1945,12,0,2058,10,0,0 +2013,7,17,3,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1440,23,1,1721,30,1,0 +2013,9,25,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-9,0,1049,-22,0,0 +2013,4,13,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,6,0,2324,6,0,0 +2013,7,18,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1344,-2,0,1530,1,0,0 +2013,9,12,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,920,-4,0,1220,-17,0,0 +2013,9,10,2,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2200,-1,0,840,-4,0,0 +2013,9,19,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-3,0,1218,-9,0,0 +2013,4,1,1,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1739,-5,0,2024,-20,0,0 +2013,7,21,7,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1005,-4,0,1110,-6,0,0 +2013,4,10,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,856,-16,0,0 +2013,8,26,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1101,3,0,1125,-10,0,0 +2013,9,8,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,-2,0,940,-13,0,0 +2013,8,3,6,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1535,36,1,1747,40,1,0 +2013,6,21,5,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1445,-3,0,1725,-3,0,0 +2013,6,26,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1602,100,1,1759,144,1,0 +2013,7,13,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,840,1,0,955,-7,0,0 +2013,5,13,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,600,-1,0,730,-11,0,0 +2013,4,19,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1400,3,0,1701,-7,0,0 +2013,6,3,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,43,1,2030,21,1,0 +2013,5,30,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-6,0,1845,0,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2046,17,1,2215,14,0,0 +2013,10,9,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1210,0,,1325,0,1,1 +2013,5,30,4,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,922,-2,0,1102,-2,0,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1615,6,0,1715,3,0,0 +2013,5,30,4,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1901,1,0,1949,6,0,0 +2013,10,24,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2043,0,,2132,0,1,1 +2013,10,1,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1245,-9,0,1400,10,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1431,1,0,1628,4,0,0 +2013,7,10,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,67,1,1815,91,1,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1745,27,1,1855,24,1,0 +2013,5,18,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1735,-4,0,1900,-17,0,0 +2013,10,1,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1420,15,1,1610,7,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,654,27,1,825,15,1,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,929,5,0,1157,54,1,0 +2013,9,23,1,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,840,-2,0,1025,6,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,9,0,1950,1,0,0 +2013,5,16,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1635,-6,0,1810,-16,0,0 +2013,8,20,2,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,2235,-3,0,710,-9,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1410,20,1,1535,12,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,-3,0,855,-4,0,0 +2013,9,3,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,728,-3,0,1000,-9,0,0 +2013,8,29,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,1642,-15,0,0 +2013,7,14,7,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1530,0,0,1755,-1,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2025,-4,0,2210,-17,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1720,17,1,1845,8,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1730,4,0,55,-9,0,0 +2013,6,26,3,OO,13244,Memphis International,Memphis,TN,13851,Will Rogers World,Oklahoma City,OK,1420,99,1,1551,85,1,0 +2013,9,18,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1605,-9,0,1655,-18,0,0 +2013,9,18,3,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,640,-2,0,910,-10,0,0 +2013,7,15,1,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,1,0,518,-9,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,900,8,0,1030,1,0,0 +2013,5,5,7,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1415,-1,0,1656,-8,0,0 +2013,10,5,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1605,-3,0,1758,-13,0,0 +2013,8,28,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,148,1,1820,124,1,0 +2013,8,16,5,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,-5,0,1130,5,0,0 +2013,4,23,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1649,20,1,1938,11,0,0 +2013,4,8,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,-4,0,1920,-12,0,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1201,-4,0,1302,-16,0,0 +2013,6,30,7,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1355,36,1,1520,27,1,0 +2013,5,8,3,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,17,1,1620,2,0,0 +2013,7,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,755,-4,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1925,6,0,2230,-11,0,0 +2013,8,23,5,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1030,-3,0,1340,-20,0,0 +2013,10,15,2,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,-3,0,1350,-12,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,2036,0,0,2256,-5,0,0 +2013,8,8,4,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1155,-1,0,1306,0,0,0 +2013,10,22,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,805,2,0,930,3,0,0 +2013,7,26,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,825,2,0,1045,32,1,0 +2013,5,21,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,600,-2,0,725,-9,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1121,68,1,1459,52,1,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2245,19,1,122,20,1,0 +2013,6,20,4,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-3,0,820,-5,0,0 +2013,4,7,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,945,-5,0,1255,-12,0,0 +2013,7,27,6,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1522,-8,0,1742,-12,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1315,30,1,1624,23,1,0 +2013,4,27,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-10,0,1018,-6,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1345,2,0,1610,-5,0,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,843,-6,0,1114,-6,0,0 +2013,9,12,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1156,-9,0,1352,-22,0,0 +2013,10,16,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1150,-1,0,1205,-4,0,0 +2013,8,23,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1105,12,0,1405,9,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1805,-1,0,15,-32,0,0 +2013,5,11,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1955,2,0,2210,-15,0,0 +2013,7,14,7,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1210,-5,0,1318,-2,0,0 +2013,4,25,4,EV,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,912,20,1,1155,27,1,0 +2013,4,8,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,1,0,1510,-1,0,0 +2013,6,27,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-5,0,904,-2,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,925,-1,0,1400,-13,0,0 +2013,8,22,4,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,32,1,629,48,1,0 +2013,7,13,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1551,0,0,1816,-29,0,0 +2013,10,31,4,9E,12339,Indianapolis International,Indianapolis,IN,13244,Memphis International,Memphis,TN,725,16,1,752,26,1,0 +2013,5,5,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1735,1,0,2040,-17,0,0 +2013,8,18,7,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1320,6,0,1450,-1,0,0 +2013,7,15,1,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1744,17,1,2026,-20,0,0 +2013,10,27,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,1,0,810,-5,0,0 +2013,5,1,3,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1910,-3,0,2155,-7,0,0 +2013,6,12,3,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,34,1,1830,45,1,0 +2013,9,1,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1300,12,0,1415,10,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1910,-2,0,2335,-2,0,0 +2013,8,13,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2000,6,0,2300,-6,0,0 +2013,10,12,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,7,0,1520,-12,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1010,2,0,1140,10,0,0 +2013,8,20,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,615,-1,0,710,-5,0,0 +2013,10,31,4,OO,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,857,0,0,1037,51,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,730,0,0,903,-1,0,0 +2013,9,4,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1847,-6,0,2358,11,0,0 +2013,8,29,4,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,-7,0,518,-24,0,0 +2013,9,14,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1235,-2,0,1457,-7,0,0 +2013,7,13,6,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1745,91,1,1935,72,1,0 +2013,4,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,58,1,1005,78,1,0 +2013,6,25,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,4,0,1918,-2,0,0 +2013,9,12,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1630,-7,0,1730,9,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,0,0,1800,3,0,0 +2013,5,7,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1942,-15,0,2232,-38,0,0 +2013,9,7,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,-8,0,1809,-9,0,0 +2013,5,21,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1144,35,1,1334,27,1,0 +2013,6,18,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1359,-6,0,1724,32,1,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,830,2,0,935,-5,0,0 +2013,10,7,1,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,6,0,1548,17,1,0 +2013,5,2,4,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,621,38,1,1435,36,1,0 +2013,6,11,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-6,0,808,-19,0,0 +2013,10,30,3,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,605,-5,0,805,-6,0,0 +2013,8,23,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,1402,-13,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1510,-12,0,0 +2013,8,15,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2024,-5,0,2137,1,0,0 +2013,7,6,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1445,-1,0,1610,-2,0,0 +2013,10,16,3,UA,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1712,-7,0,1845,-21,0,0 +2013,9,16,1,AA,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1800,17,1,1935,80,1,0 +2013,4,12,5,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1023,0,,1124,0,1,1 +2013,7,25,4,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,758,-11,0,900,-29,0,0 +2013,5,20,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,909,-4,0,1415,0,0,0 +2013,10,2,3,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-6,0,1045,-34,0,0 +2013,10,5,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,239,1,1250,270,1,0 +2013,7,11,4,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,840,6,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1945,5,0,2346,-3,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1431,12,0,1608,2,0,0 +2013,5,24,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,3,0,1151,-6,0,0 +2013,6,20,4,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,9,0,1050,3,0,0 +2013,8,4,7,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1020,-6,0,1125,3,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,755,0,0,915,-14,0,0 +2013,7,19,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1455,1,0,1610,-3,0,0 +2013,5,18,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,2,0,2028,4,0,0 +2013,4,4,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-6,0,833,-11,0,0 +2013,8,6,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1850,2,0,2033,8,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1910,-2,0,2142,-3,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,912,36,1,1057,20,1,0 +2013,9,6,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1943,-3,0,2159,-43,0,0 +2013,9,23,1,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1257,-1,0,1429,-21,0,0 +2013,5,4,6,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-3,0,906,-8,0,0 +2013,9,23,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,14,0,2328,37,1,0 +2013,10,28,1,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1725,11,0,1905,23,1,0 +2013,6,12,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,4,0,1943,-16,0,0 +2013,8,23,5,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,700,-3,0,730,-11,0,0 +2013,9,24,2,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-4,0,1021,-15,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,31,1,2200,17,1,0 +2013,4,29,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,859,184,1,1009,188,1,0 +2013,10,10,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1820,10,0,1950,-4,0,0 +2013,4,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2220,-2,0,2,-9,0,0 +2013,5,14,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1540,-6,0,1625,0,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1231,-7,0,1714,-16,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-2,0,1309,28,1,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-2,0,1837,-10,0,0 +2013,7,30,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1809,-2,0,2142,-19,0,0 +2013,5,5,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-4,0,2108,-3,0,0 +2013,10,29,2,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1845,-4,0,2018,-9,0,0 +2013,9,19,4,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-8,0,840,2,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1815,55,1,1940,52,1,0 +2013,9,23,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-4,0,759,-5,0,0 +2013,9,5,4,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,1005,-13,0,1544,-2,0,0 +2013,9,19,4,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-10,0,718,4,0,0 +2013,6,18,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1630,57,1,1755,50,1,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1220,-2,0,1455,-14,0,0 +2013,8,11,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,1,0,1935,1,0,0 +2013,4,22,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1440,-4,0,1633,-9,0,0 +2013,6,18,2,OO,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,9,0,1651,27,1,0 +2013,9,27,5,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1000,-5,0,1150,-11,0,0 +2013,9,17,2,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1140,-9,0,1305,1,0,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,57,1,2140,87,1,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1511,5,0,1852,-7,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,845,1,0,1018,-10,0,0 +2013,8,18,7,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,9,0,1019,-22,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,-9,0,1340,-21,0,0 +2013,5,30,4,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,550,0,0,727,1,0,0 +2013,7,12,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-7,0,1740,-12,0,0 +2013,5,7,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1450,-2,0,1553,-22,0,0 +2013,4,13,6,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1712,64,1,1904,49,1,0 +2013,6,8,6,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1221,0,0,1337,-1,0,0 +2013,6,21,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-8,0,1340,5,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2300,118,1,46,110,1,0 +2013,5,1,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-4,0,820,-10,0,0 +2013,10,25,5,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-5,0,919,-5,0,0 +2013,9,12,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1627,-10,0,1906,-11,0,0 +2013,5,19,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1245,-3,0,1439,-8,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1900,28,1,2145,17,1,0 +2013,9,13,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,-6,0,1250,-21,0,0 +2013,9,28,6,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1257,7,0,1459,-9,0,0 +2013,10,29,2,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,1030,-6,0,1745,-12,0,0 +2013,4,18,4,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1429,14,0,1721,-1,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,62,1,1400,69,1,0 +2013,8,2,5,DL,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1830,22,1,2010,25,1,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1900,46,1,2000,42,1,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2040,48,1,2125,43,1,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1455,3,0,1910,-11,0,0 +2013,9,3,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1350,1,0,1955,-1,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,-3,0,25,-31,0,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1655,-2,0,1740,-5,0,0 +2013,9,2,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-1,0,1800,-6,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1507,-3,0,1650,-23,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,727,-3,0,900,-16,0,0 +2013,8,31,6,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,0,0,1010,-3,0,0 +2013,8,1,4,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,2147,60,1,610,80,1,0 +2013,5,16,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,-2,0,1431,-9,0,0 +2013,10,25,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,602,-6,0,1149,-12,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1304,-2,0,1640,-15,0,0 +2013,9,30,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,-17,0,2104,-34,0,0 +2013,7,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1714,-9,0,1845,1,0,0 +2013,6,19,3,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1705,-4,0,2004,-18,0,0 +2013,7,14,7,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,735,0,0,1020,-28,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,655,58,1,815,49,1,0 +2013,6,13,4,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1658,0,,1835,0,1,1 +2013,9,3,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1652,-2,0,1823,-24,0,0 +2013,10,6,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2025,-2,0,2145,-6,0,0 +2013,4,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-2,0,1055,-12,0,0 +2013,10,20,7,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,12,0,1510,-1,0,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2115,110,1,2325,102,1,0 +2013,4,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1235,-1,0,1406,-15,0,0 +2013,8,19,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2228,-1,0,608,-5,0,0 +2013,5,15,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,0,0,1330,-7,0,0 +2013,9,27,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1240,30,1,1350,22,1,0 +2013,10,9,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,26,1,2249,18,1,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2045,18,1,2205,-2,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,710,-6,0,1120,9,0,0 +2013,4,5,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1108,-11,0,1900,-20,0,0 +2013,5,12,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-2,0,1115,-35,0,0 +2013,10,7,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-11,0,646,-18,0,0 +2013,10,21,1,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,1010,-12,0,1250,0,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,3,0,1540,-16,0,0 +2013,10,26,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,735,2,0,950,-10,0,0 +2013,5,1,3,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,830,-3,0,1130,-1,0,0 +2013,7,27,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1859,-5,0,2147,-20,0,0 +2013,6,15,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1230,-1,0,1430,-7,0,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1310,-4,0,1415,-3,0,0 +2013,8,11,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,91,1,1142,81,1,0 +2013,9,10,2,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-5,0,758,-15,0,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1115,12,0,1230,14,0,0 +2013,6,5,3,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1248,0,0,1646,-1,0,0 +2013,7,21,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1703,-4,0,1810,-14,0,0 +2013,5,21,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-11,0,2100,-17,0,0 +2013,10,7,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1008,-20,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1359,10,0,1443,3,0,0 +2013,5,30,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1035,-6,0,1144,-8,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1622,1,0,1740,-13,0,0 +2013,9,8,7,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1903,-7,0,2114,-26,0,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1135,-2,0,1336,-19,0,0 +2013,7,14,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,645,0,,844,0,1,1 +2013,8,27,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-5,0,1026,-15,0,0 +2013,5,26,7,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2135,-8,0,10,-22,0,0 +2013,4,12,5,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,842,4,0,1057,-11,0,0 +2013,4,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1333,33,1,1442,28,1,0 +2013,10,13,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-3,0,1826,-4,0,0 +2013,7,31,3,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,955,-6,0,1349,12,0,0 +2013,4,20,6,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1600,-10,0,1745,-22,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2032,13,0,2237,21,1,0 +2013,6,11,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-5,0,1653,-7,0,0 +2013,5,13,1,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1629,58,1,1939,13,0,0 +2013,7,7,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,715,-18,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-7,0,1526,-11,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,-2,0,1315,-9,0,0 +2013,8,6,2,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-5,0,1856,8,0,0 +2013,7,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1835,31,1,2102,21,1,0 +2013,8,13,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2200,6,0,110,-5,0,0 +2013,7,3,3,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,940,-9,0,1212,-35,0,0 +2013,8,16,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1420,-1,0,1617,-22,0,0 +2013,8,4,7,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,854,151,1,1040,150,1,0 +2013,4,17,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,0,,2125,0,1,1 +2013,7,30,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-9,0,1228,-20,0,0 +2013,4,3,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,12,0,1145,-3,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,12,0,2110,0,0,0 +2013,9,9,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,855,-6,0,949,-1,0,0 +2013,9,15,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1555,-6,0,1833,-4,0,0 +2013,9,17,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1341,8,0,1420,6,0,0 +2013,4,8,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,1403,-17,0,0 +2013,5,3,5,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-5,0,753,-14,0,0 +2013,7,31,3,EV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1708,18,1,1912,10,0,0 +2013,7,24,3,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1233,-1,0,1354,-4,0,0 +2013,5,17,5,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-6,0,855,-9,0,0 +2013,9,27,5,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,0,,815,0,1,1 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1030,10,0,1120,0,0,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,823,-7,0,1033,-32,0,0 +2013,5,3,5,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,735,-2,0,1005,-44,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1336,-9,0,1626,-25,0,0 +2013,6,19,3,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2025,39,1,2217,63,1,0 +2013,7,8,1,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,704,-4,0,805,-6,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-2,0,747,-12,0,0 +2013,7,24,3,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,2,0,2005,-1,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1450,1,0,1615,-14,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1320,-6,0,1540,-6,0,0 +2013,8,21,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1749,6,0,1946,4,0,0 +2013,7,23,2,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,630,-9,0,915,-7,0,0 +2013,6,4,2,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,1,0,705,2,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1205,-4,0,1338,-4,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1015,2,0,1315,-7,0,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1850,27,1,2005,97,1,0 +2013,4,4,4,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1740,79,1,1930,57,1,0 +2013,9,29,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,735,-2,0,905,17,1,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1700,37,1,2150,32,1,0 +2013,5,12,7,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1231,-9,0,1446,-15,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,1,0,1740,25,1,0 +2013,10,10,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1710,94,1,1905,112,1,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1055,0,0,1220,-20,0,0 +2013,5,3,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,920,-1,0,1050,-11,0,0 +2013,10,3,4,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-5,0,1235,-7,0,0 +2013,8,7,3,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,-5,0,827,-22,0,0 +2013,4,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1215,-3,0,1355,-9,0,0 +2013,10,10,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,600,-5,0,837,-13,0,0 +2013,4,17,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1523,-13,0,0 +2013,6,4,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1915,7,0,2246,-5,0,0 +2013,8,12,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-3,0,845,-3,0,0 +2013,8,22,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,739,8,0,833,4,0,0 +2013,6,7,5,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,615,-6,0,745,-21,0,0 +2013,7,28,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,133,1,936,127,1,0 +2013,6,26,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,650,124,1,912,120,1,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1325,4,0,1425,0,0,0 +2013,9,14,6,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1250,152,1,1410,176,1,0 +2013,9,27,5,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,825,-2,0,1040,-10,0,0 +2013,7,20,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,-3,0,1505,12,0,0 +2013,4,22,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,1906,-3,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2247,-13,0,59,-31,0,0 +2013,6,22,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1631,-4,0,1920,-25,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,29,1,1447,43,1,0 +2013,6,23,7,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1150,-12,0,1534,-3,0,0 +2013,4,3,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1200,-5,0,1310,-9,0,0 +2013,10,8,2,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1911,-5,0,2215,-10,0,0 +2013,10,17,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,-2,0,1818,1,0,0 +2013,6,2,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,1145,-14,0,0 +2013,8,2,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1540,17,1,1858,35,1,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,610,-6,0,838,-15,0,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1140,20,1,1434,29,1,0 +2013,5,30,4,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1350,-5,0,1715,34,1,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,-4,0,1125,-7,0,0 +2013,6,7,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-8,0,1120,-7,0,0 +2013,4,28,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1344,4,0,1520,13,0,0 +2013,8,6,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1834,8,0,2025,19,1,0 +2013,9,16,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-9,0,826,-13,0,0 +2013,7,10,3,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2215,76,1,700,55,1,0 +2013,8,26,1,9E,14307,Theodore Francis Green State,Providence,RI,13487,Minneapolis-St Paul International,Minneapolis,MN,1830,-2,0,2033,-10,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1106,-4,0,1223,-16,0,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,945,0,0,1211,0,0,0 +2013,6,29,6,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,930,2,0,0 +2013,10,22,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,12,0,1500,10,0,0 +2013,4,12,5,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1700,42,1,1830,55,1,0 +2013,10,8,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,615,-4,0,745,-11,0,0 +2013,8,31,6,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,634,-8,0,715,-19,0,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1744,-1,0,2025,2,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-3,0,1811,5,0,0 +2013,8,17,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1753,21,1,1848,24,1,0 +2013,4,28,7,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,955,-12,0,1236,-2,0,0 +2013,8,15,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,-5,0,1724,-7,0,0 +2013,5,20,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,515,-5,0,842,-2,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,14,0,50,11,0,0 +2013,5,22,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,0,0,2154,-16,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-1,0,2037,-22,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1200,-4,0,1320,-12,0,0 +2013,7,3,3,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,-2,0,1745,12,0,0 +2013,4,19,5,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,627,7,0,726,-5,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1717,5,0,2125,1,0,0 +2013,9,25,3,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-9,0,959,-19,0,0 +2013,6,27,4,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1518,101,1,1815,87,1,0 +2013,8,12,1,OO,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1232,11,0,1606,-8,0,0 +2013,8,12,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,3,0,1650,1,0,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1135,1,0,1725,-5,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,60,1,1208,61,1,0 +2013,4,12,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1010,-7,0,1139,-12,0,0 +2013,5,11,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-4,0,1032,-28,0,0 +2013,6,3,1,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1653,-1,0,1814,-3,0,0 +2013,4,1,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1300,-4,0,1431,-5,0,0 +2013,5,5,7,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,745,-9,0,1615,10,0,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,920,51,1,1155,43,1,0 +2013,5,19,7,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1010,-4,0,1237,-2,0,0 +2013,7,24,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1042,-3,0,1126,-15,0,0 +2013,10,16,3,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,-5,0,1820,-6,0,0 +2013,6,14,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,84,1,1829,73,1,0 +2013,6,15,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-7,0,1150,-8,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,925,9,0,1045,-1,0,0 +2013,5,7,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2320,-3,0,610,-4,0,0 +2013,10,24,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-6,0,2020,0,0,0 +2013,7,28,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,4,0,1630,-2,0,0 +2013,4,8,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,2015,-8,0,2117,2,0,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2009,-4,0,2257,-9,0,0 +2013,10,15,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,2,0,1401,-2,0,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-3,0,1036,16,1,0 +2013,7,18,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1250,-1,0,1817,-5,0,0 +2013,9,18,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-11,0,2129,-6,0,0 +2013,6,23,7,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1118,-3,0,1436,1,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1915,-3,0,2015,2,0,0 +2013,5,11,6,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,930,-8,0,1140,-11,0,0 +2013,7,25,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1237,-9,0,1445,31,1,0 +2013,8,15,4,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1200,-4,0,2030,-10,0,0 +2013,4,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,24,1,44,39,1,0 +2013,6,25,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1310,251,1,1625,267,1,0 +2013,8,23,5,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-5,0,919,-7,0,0 +2013,6,22,6,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2217,-3,0,609,-17,0,0 +2013,9,5,4,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,4,0,940,9,0,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1112,-1,0,1207,-8,0,0 +2013,8,2,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,6,0,1712,7,0,0 +2013,10,17,4,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-8,0,928,-15,0,0 +2013,8,16,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-1,0,1540,-2,0,0 +2013,5,25,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1020,-4,0,1155,-14,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1650,-1,0,1805,-12,0,0 +2013,10,28,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1248,0,0,1350,-8,0,0 +2013,9,19,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1635,-10,0,1756,-9,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1630,1,0,1859,-28,0,0 +2013,4,10,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,0,0,2025,-2,0,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,745,-1,0,900,-5,0,0 +2013,8,27,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,0,0,2135,-31,0,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1855,0,0,2146,-38,0,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1215,19,1,1545,1,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,811,-6,0,1027,-13,0,0 +2013,4,8,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,1,0,2015,8,0,0 +2013,5,16,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,6,0,1820,-10,0,0 +2013,6,20,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,812,14,0,0 +2013,8,7,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,26,1,2100,17,1,0 +2013,8,7,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,725,-3,0,820,-6,0,0 +2013,5,31,5,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,11,0,1620,12,0,0 +2013,8,2,5,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1437,179,1,1551,161,1,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1735,-1,0,1949,-22,0,0 +2013,5,11,6,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,935,-17,0,1148,-15,0,0 +2013,9,3,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,726,-4,0,908,4,0,0 +2013,9,10,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1430,-4,0,1808,-9,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2050,67,1,2307,67,1,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,835,1,0,939,-12,0,0 +2013,5,24,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,835,-1,0,1020,-12,0,0 +2013,6,15,6,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1640,6,0,1740,-2,0,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,953,1,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1850,26,1,40,13,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1300,22,1,1355,16,1,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1630,1,0,1855,-9,0,0 +2013,10,29,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,-3,0,1125,4,0,0 +2013,10,19,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-4,0,641,0,0,0 +2013,9,24,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,1,0,1715,3,0,0 +2013,4,23,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-10,0,824,-7,0,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,18,1,1110,47,1,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1835,-3,0,1940,-8,0,0 +2013,7,27,6,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,-6,0,2056,-6,0,0 +2013,9,10,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,-1,0,1925,-11,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1925,10,0,2035,-6,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1820,29,1,2040,14,0,0 +2013,10,30,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,605,-6,0,845,-16,0,0 +2013,4,5,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-7,0,1415,-25,0,0 +2013,8,4,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2045,123,1,2253,147,1,0 +2013,7,16,2,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1950,33,1,2325,30,1,0 +2013,9,22,7,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,-2,0,1820,-13,0,0 +2013,10,25,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1830,-5,0,2105,-12,0,0 +2013,8,7,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,-6,0,1230,-7,0,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1440,22,1,2015,46,1,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,950,-1,0,1332,10,0,0 +2013,7,28,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,2145,44,1,2328,44,1,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1410,0,0,1635,-10,0,0 +2013,7,18,4,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,605,-1,0,931,-35,0,0 +2013,10,31,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,21,1,1335,37,1,0 +2013,4,23,2,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,929,19,1,1049,10,0,0 +2013,4,10,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,949,-4,0,1319,7,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,8,0,1355,67,1,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1627,19,1,1810,1,0,0 +2013,9,22,7,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,-4,0,2104,5,0,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1230,-2,0,1355,9,0,0 +2013,8,30,5,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1355,15,1,1650,-17,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,-1,0,2328,-3,0,0 +2013,5,24,5,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1850,-5,0,2101,-25,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,-4,0,923,-1,0,0 +2013,5,11,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,645,8,0,820,2,0,0 +2013,7,22,1,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-4,0,1746,-4,0,0 +2013,9,15,7,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,2,0,1925,-6,0,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1246,142,1,1655,111,1,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,845,12,0,915,10,0,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,67,1,1841,76,1,0 +2013,7,6,6,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,322,1,1959,297,1,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1945,-1,0,2235,-9,0,0 +2013,6,15,6,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1227,1,0,1435,-4,0,0 +2013,6,13,4,MQ,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1700,12,0,1845,63,1,0 +2013,8,3,6,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2230,-2,0,658,-28,0,0 +2013,5,29,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-4,0,1953,-12,0,0 +2013,9,1,7,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,4,0,1435,-6,0,0 +2013,7,18,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,6,0,930,8,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-2,0,1144,-8,0,0 +2013,8,16,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,0,0,1606,-13,0,0 +2013,6,29,6,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1227,36,1,1340,39,1,0 +2013,7,31,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-7,0,2135,-4,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1225,-1,0,1655,-13,0,0 +2013,5,1,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,14,0,2227,28,1,0 +2013,8,12,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,745,-12,0,0 +2013,6,27,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,620,1,0,745,-12,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1455,-1,0,1655,5,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1202,-2,0,1435,-7,0,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,830,6,0,1130,-5,0,0 +2013,10,25,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-7,0,1312,0,0,0 +2013,5,7,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1640,33,1,1820,15,1,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1030,0,0,1356,5,0,0 +2013,6,1,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-10,0,1636,-11,0,0 +2013,6,4,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1317,-6,0,1457,-14,0,0 +2013,7,30,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1530,4,0,1640,-9,0,0 +2013,6,29,6,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1950,0,0,2305,-7,0,0 +2013,10,5,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,835,36,1,1035,32,1,0 +2013,4,29,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,-7,0,1311,7,0,0 +2013,4,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,9,0,1000,1,0,0 +2013,4,23,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-8,0,1140,-6,0,0 +2013,10,31,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,930,-1,0,1220,-22,0,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1755,53,1,2000,30,1,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,0,0,1303,-14,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,751,20,1,1307,9,0,0 +2013,6,3,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1704,-7,0,1814,-7,0,0 +2013,10,11,5,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,540,-7,0,850,-21,0,0 +2013,8,20,2,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-8,0,1209,-9,0,0 +2013,5,2,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,700,-3,0,805,-7,0,0 +2013,7,21,7,9E,13198,Kansas City International,Kansas City,MO,12478,John F. Kennedy International,New York,NY,1105,-5,0,1505,-8,0,0 +2013,5,16,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,42,1,1700,34,1,0 +2013,8,29,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,92,1,1108,77,1,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,13,0,1130,15,1,0 +2013,6,27,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,528,-4,0,750,-8,0,0 +2013,9,23,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1125,17,1,1250,3,0,0 +2013,9,1,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,15,1,1945,0,0,0 +2013,8,12,1,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1310,-10,0,2140,8,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1420,7,0,1645,23,1,0 +2013,6,9,7,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1351,-1,0,1605,-12,0,0 +2013,7,13,6,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1645,-3,0,1912,43,1,0 +2013,6,8,6,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1000,-4,0,1105,-6,0,0 +2013,6,22,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-5,0,757,-14,0,0 +2013,10,8,2,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,755,-9,0,1035,-18,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1155,-2,0,1510,-6,0,0 +2013,9,2,1,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,835,-26,0,0 +2013,10,19,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,952,-9,0,1035,-13,0,0 +2013,10,19,6,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-2,0,1445,-29,0,0 +2013,9,16,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-8,0,1945,-32,0,0 +2013,6,2,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,45,1,1612,44,1,0 +2013,6,10,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,1125,-5,0,0 +2013,4,29,1,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,700,-6,0,735,-7,0,0 +2013,5,11,6,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,810,-1,0,940,-4,0,0 +2013,10,5,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1455,1,0,1720,-6,0,0 +2013,5,16,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1830,-4,0,2055,-20,0,0 +2013,9,29,7,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,920,2,0,1125,-11,0,0 +2013,4,21,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,852,3,0,0 +2013,9,2,1,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1842,168,1,2022,165,1,0 +2013,8,28,3,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,17,1,2127,2,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,57,1,2159,55,1,0 +2013,4,7,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1510,-3,0,1835,-12,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,835,1,0,1010,-7,0,0 +2013,4,27,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,46,1,1425,41,1,0 +2013,7,14,7,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,65,1,1922,66,1,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,-8,0,951,-24,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,900,60,1,1255,42,1,0 +2013,8,7,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,52,1,1240,74,1,0 +2013,5,29,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-7,0,2056,8,0,0 +2013,7,10,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,4,0,2150,-2,0,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,805,0,0,1030,1,0,0 +2013,9,20,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,801,-17,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,-5,0,2300,-18,0,0 +2013,6,14,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-4,0,759,-5,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,830,0,0,1034,-11,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1740,-2,0,2150,-4,0,0 +2013,9,30,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1745,-1,0,1854,-6,0,0 +2013,5,19,7,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,725,0,0,920,-13,0,0 +2013,5,1,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1051,-7,0,1925,-19,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,-5,0,1719,21,1,0 +2013,7,8,1,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,-11,0,1510,-19,0,0 +2013,9,2,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-2,0,840,-4,0,0 +2013,10,7,1,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1411,-2,0,1548,-5,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1716,5,0,1913,-26,0,0 +2013,10,2,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,-6,0,2235,15,1,0 +2013,7,14,7,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1000,-1,0,1105,-16,0,0 +2013,8,15,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,4,0,2133,1,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,700,4,0,1056,-3,0,0 +2013,10,9,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1205,-2,0,1511,-11,0,0 +2013,8,1,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-6,0,2142,-1,0,0 +2013,9,18,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,9,0,1620,1,0,0 +2013,8,21,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,748,58,1,928,103,1,0 +2013,6,3,1,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1845,-9,0,2155,-11,0,0 +2013,6,14,5,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,600,-5,0,740,5,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1305,42,1,1441,30,1,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,1,0,2155,-1,0,0 +2013,7,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,605,0,0,745,3,0,0 +2013,5,9,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1825,14,0,2055,5,0,0 +2013,4,19,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-2,0,646,-4,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1125,-2,0,1251,-23,0,0 +2013,8,4,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,1,0,1940,-5,0,0 +2013,10,21,1,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,735,-7,0,926,-13,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1950,35,1,2105,24,1,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1800,-2,0,1901,-16,0,0 +2013,9,24,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1257,62,1,1621,43,1,0 +2013,7,1,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-8,0,715,-7,0,0 +2013,7,28,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2340,-3,0,750,-19,0,0 +2013,4,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1905,41,1,2227,57,1,0 +2013,9,3,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2125,-10,0,2215,-24,0,0 +2013,5,4,6,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,852,22,1,1035,5,0,0 +2013,10,23,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1955,0,0,2130,9,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1944,-3,0,2039,14,0,0 +2013,5,4,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1455,35,1,1624,53,1,0 +2013,5,7,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1239,0,0,1405,-6,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1845,3,0,2335,-23,0,0 +2013,6,29,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,605,5,0,735,-3,0,0 +2013,5,26,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,20,1,1335,2,0,0 +2013,4,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1100,-3,0,1157,-15,0,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1551,39,1,1708,39,1,0 +2013,8,2,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1759,0,0,1911,-8,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,6,0,1845,-1,0,0 +2013,6,19,3,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,602,-1,0,710,-8,0,0 +2013,4,22,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1230,44,1,1605,35,1,0 +2013,6,15,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-7,0,1748,-7,0,0 +2013,10,21,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1547,-10,0,1720,-17,0,0 +2013,8,15,4,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,48,1,2125,22,1,0 +2013,8,3,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2010,3,0,2115,0,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1205,-6,0,1326,-11,0,0 +2013,5,30,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1930,7,0,35,-7,0,0 +2013,6,9,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,704,-3,0,1226,-14,0,0 +2013,9,18,3,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1315,15,1,1645,0,0,0 +2013,10,10,4,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,855,-1,0,1115,-8,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1340,-5,0,1527,-13,0,0 +2013,5,24,5,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,11,0,1235,1,0,0 +2013,4,18,4,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,550,224,1,724,241,1,0 +2013,10,24,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,840,0,0,1025,1,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1850,25,1,2350,16,1,0 +2013,10,8,2,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,-5,0,2133,-16,0,0 +2013,9,20,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1545,0,0,1650,-13,0,0 +2013,6,6,4,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,837,-5,0,1013,-13,0,0 +2013,7,1,1,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-2,0,2045,-16,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1121,3,0,1251,19,1,0 +2013,5,10,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1347,138,1,1435,124,1,0 +2013,8,2,5,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,1,0,2350,-11,0,0 +2013,4,22,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1606,2,0,1731,-1,0,0 +2013,5,19,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-6,0,1109,-15,0,0 +2013,9,8,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1129,-9,0,1208,-9,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,1,0,1500,-18,0,0 +2013,4,13,6,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-10,0,817,-24,0,0 +2013,7,30,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,-4,0,2135,-4,0,0 +2013,10,14,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,3,0,949,29,1,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1435,12,0,2010,-10,0,0 +2013,6,6,4,9E,13244,Memphis International,Memphis,TN,14122,Pittsburgh International,Pittsburgh,PA,830,-6,0,1131,-20,0,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1015,-8,0,1125,-17,0,0 +2013,7,18,4,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1840,107,1,2155,112,1,0 +2013,4,23,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1836,-8,0,2004,-12,0,0 +2013,7,11,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,34,1,2240,32,1,0 +2013,6,27,4,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1415,30,1,1611,22,1,0 +2013,5,4,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1715,1,0,1918,-2,0,0 +2013,7,2,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,3,0,1858,24,1,0 +2013,4,25,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1818,4,0,1922,18,1,0 +2013,8,24,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1840,-2,0,1945,-5,0,0 +2013,9,10,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-1,0,930,3,0,0 +2013,5,31,5,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,20,1,1232,33,1,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,0,0,1740,-5,0,0 +2013,8,15,4,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1428,-2,0,1600,-3,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2155,31,1,2335,33,1,0 +2013,7,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1502,-2,0,1608,-8,0,0 +2013,4,28,7,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1315,-3,0,2129,1,0,0 +2013,10,21,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,-5,0,2104,-8,0,0 +2013,5,15,3,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1805,-2,0,1846,3,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1030,10,0,1345,11,0,0 +2013,6,21,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1655,-3,0,2005,-19,0,0 +2013,5,29,3,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2228,-8,0,616,-14,0,0 +2013,6,26,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1942,22,1,2106,88,1,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1955,34,1,2305,42,1,0 +2013,5,24,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1632,32,1,2021,35,1,0 +2013,8,15,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,900,-3,0,1215,-29,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1155,49,1,1343,46,1,0 +2013,5,9,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1055,1,0,1225,16,1,0 +2013,6,7,5,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,8,0,1239,1,0,0 +2013,5,22,3,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,645,-3,0,946,-16,0,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1750,17,1,2025,23,1,0 +2013,10,13,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,9,0,1645,-9,0,0 +2013,10,13,7,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-3,0,1544,-5,0,0 +2013,7,30,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-10,0,1805,-20,0,0 +2013,7,11,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-1,0,809,-15,0,0 +2013,10,3,4,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1557,-1,0,1901,-10,0,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1125,-6,0,1334,-30,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1010,4,0,1200,-1,0,0 +2013,7,9,2,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,755,0,0,1402,-9,0,0 +2013,6,14,5,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1426,13,0,1646,-13,0,0 +2013,10,18,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1120,20,1,1325,8,0,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1859,-5,0,2238,-18,0,0 +2013,6,7,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1135,-5,0,1210,4,0,0 +2013,9,5,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,610,-9,0,1130,-11,0,0 +2013,5,4,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1633,-7,0,1926,-9,0,0 +2013,9,7,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,-6,0,1243,-33,0,0 +2013,5,27,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-11,0,1815,-13,0,0 +2013,6,13,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,0,,1925,0,1,1 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,2,0,2035,14,0,0 +2013,8,5,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1456,11,0,1615,50,1,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1445,7,0,1705,10,0,0 +2013,5,11,6,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1310,-1,0,1420,0,0,0 +2013,4,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1315,0,,1515,0,1,1 +2013,5,15,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,31,1,1615,27,1,0 +2013,8,8,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,1,0,1120,-1,0,0 +2013,8,27,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,9,0,1900,-10,0,0 +2013,5,21,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1050,9,0,1215,11,0,0 +2013,7,8,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1900,-7,0,2041,-9,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,1,0,1301,-7,0,0 +2013,6,23,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,52,1,2140,30,1,0 +2013,5,1,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1004,-10,0,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,12,0,1930,2,0,0 +2013,9,13,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,630,-4,0,827,-8,0,0 +2013,4,12,5,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1436,0,0,1625,-2,0,0 +2013,4,8,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1940,15,1,2105,10,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1655,79,1,2130,52,1,0 +2013,7,4,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1816,2,0,2159,-12,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1020,-1,0,1430,-2,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,98,1,1627,84,1,0 +2013,4,9,2,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-9,0,748,6,0,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,0,0,1544,3,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,9,0,1525,18,1,0 +2013,9,4,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1820,-10,0,2000,-30,0,0 +2013,5,9,4,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1310,-2,0,2049,7,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,-2,0,1611,-19,0,0 +2013,4,5,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1123,0,0,0 +2013,7,21,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2030,-10,0,2206,-12,0,0 +2013,4,26,5,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,8,0,715,3,0,0 +2013,4,4,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,132,1,2202,113,1,0 +2013,6,4,2,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,842,-3,0,1650,-19,0,0 +2013,6,6,4,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1145,-4,0,1450,2,0,0 +2013,5,9,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,171,1,1900,158,1,0 +2013,10,7,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,79,1,1815,82,1,0 +2013,6,5,3,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,-7,0,2201,9,0,0 +2013,10,15,2,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-6,0,1230,-3,0,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-1,0,1800,-6,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1458,-3,0,1624,-2,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1100,-8,0,1240,-10,0,0 +2013,7,20,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-4,0,1705,-19,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,0,0,1253,-5,0,0 +2013,5,15,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1705,-4,0,1820,-9,0,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-4,0,1712,-11,0,0 +2013,10,4,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,2040,37,1,2215,46,1,0 +2013,4,19,5,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1530,15,1,1645,10,0,0 +2013,9,14,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10529,Bradley International,Hartford,CT,1921,24,1,2311,13,0,0 +2013,9,7,6,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1730,-5,0,1851,-8,0,0 +2013,9,10,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,0,0,1305,-7,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1533,-2,0,1729,16,1,0 +2013,4,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1730,0,0,1850,-3,0,0 +2013,8,27,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1145,-5,0,1620,4,0,0 +2013,6,13,4,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1850,20,1,2035,32,1,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,720,0,0,902,-8,0,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,910,8,0,1030,0,0,0 +2013,7,24,3,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1542,0,0,1803,6,0,0 +2013,7,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,28,1,1850,28,1,0 +2013,10,18,5,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1700,-4,0,1859,-11,0,0 +2013,5,6,1,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1740,38,1,2150,16,1,0 +2013,5,20,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,750,-3,0,920,-23,0,0 +2013,7,23,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1507,-5,0,1530,-14,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,7,0,1545,-10,0,0 +2013,6,12,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-9,0,1110,0,0,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,-2,0,832,-8,0,0 +2013,7,3,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1221,-1,0,1424,-3,0,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1729,8,0,2032,-3,0,0 +2013,7,2,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,3,0,1804,11,0,0 +2013,8,14,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2126,15,1,2243,4,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2015,-2,0,2105,-6,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,51,1,1655,48,1,0 +2013,10,24,4,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-1,0,1751,3,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1257,-1,0,1628,-15,0,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-4,0,757,13,0,0 +2013,8,26,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1700,-7,0,1816,-19,0,0 +2013,9,29,7,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,27,1,1230,16,1,0 +2013,10,12,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,910,-2,0,1220,-12,0,0 +2013,8,2,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,700,-2,0,905,-8,0,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,914,6,0,1136,-20,0,0 +2013,8,15,4,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,710,-2,0,830,2,0,0 +2013,5,25,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-7,0,1026,-2,0,0 +2013,7,25,4,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1410,28,1,1545,9,0,0 +2013,10,17,4,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,-1,0,1124,47,1,0 +2013,6,15,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1450,41,1,1600,34,1,0 +2013,4,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1550,2,0,1825,-2,0,0 +2013,10,7,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,650,-1,0,819,-1,0,0 +2013,7,2,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-1,0,2014,4,0,0 +2013,10,15,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1310,5,0,1604,-2,0,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1905,14,0,2355,7,0,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2055,4,0,2215,3,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-5,0,2141,-8,0,0 +2013,6,11,2,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,710,-7,0,1012,-5,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,-2,0,930,-1,0,0 +2013,5,21,2,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1800,69,1,1931,121,1,0 +2013,8,22,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,5,0,1517,1,0,0 +2013,9,16,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1225,-3,0,1511,-13,0,0 +2013,6,9,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,605,0,0,900,-9,0,0 +2013,8,2,5,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,815,15,1,955,0,0,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,-4,0,1357,-22,0,0 +2013,5,21,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,510,36,1,631,40,1,0 +2013,7,16,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,630,-2,0,840,-2,0,0 +2013,10,29,2,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,26,1,1540,43,1,0 +2013,7,7,7,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1030,0,0,1205,-1,0,0 +2013,9,2,1,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1949,-3,0,2002,10,0,0 +2013,10,30,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,1204,-28,0,0 +2013,5,12,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,20,1,1250,29,1,0 +2013,5,4,6,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,99,1,1310,95,1,0 +2013,7,17,3,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,-4,0,1155,-9,0,0 +2013,5,24,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,610,6,0,620,13,0,0 +2013,4,13,6,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,835,2,0,1020,-10,0,0 +2013,8,25,7,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2010,-2,0,2100,-12,0,0 +2013,8,4,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1136,-8,0,1251,-11,0,0 +2013,4,26,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,626,-4,0,1450,7,0,0 +2013,8,21,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1724,-5,0,1743,-24,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1540,-4,0,1653,-8,0,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1725,-4,0,2136,9,0,0 +2013,10,18,5,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2330,0,0,639,8,0,0 +2013,9,2,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1200,33,1,1325,24,1,0 +2013,7,26,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,600,4,0,839,-5,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1623,0,0,1928,-13,0,0 +2013,6,4,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,610,31,1,720,23,1,0 +2013,9,27,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1035,22,1,1645,0,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1945,-4,0,2128,-2,0,0 +2013,5,25,6,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1330,29,1,1610,20,1,0 +2013,9,27,5,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-5,0,825,-13,0,0 +2013,4,17,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1700,279,1,1753,287,1,0 +2013,6,19,3,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1710,-7,0,1815,-15,0,0 +2013,10,17,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1725,-2,0,1820,-11,0,0 +2013,10,18,5,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,16,1,913,13,0,0 +2013,4,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1505,0,0,1725,-13,0,0 +2013,6,8,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1550,-3,0,1817,2,0,0 +2013,6,1,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1555,22,1,1720,11,0,0 +2013,7,3,3,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,23,1,1140,19,1,0 +2013,7,20,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,0,0,845,-3,0,0 +2013,4,12,5,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1646,-8,0,1900,-10,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,17,1,1342,-2,0,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,-6,0,801,-42,0,0 +2013,10,14,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1120,-9,0,1314,-26,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,855,4,0,1338,6,0,0 +2013,10,16,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-6,0,1725,10,0,0 +2013,8,12,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-5,0,936,-6,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1745,-4,0,1943,-10,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1254,-7,0,1519,-12,0,0 +2013,8,27,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1025,-6,0,1140,-14,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1500,7,0,2056,11,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1859,1,0,2147,4,0,0 +2013,9,2,1,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1915,0,,2131,0,1,1 +2013,6,8,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1010,6,0,1520,7,0,0 +2013,10,9,3,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,-6,0,1527,-13,0,0 +2013,7,27,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1515,39,1,1837,20,1,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1125,5,0,1235,-2,0,0 +2013,5,19,7,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,-5,0,2218,-10,0,0 +2013,4,27,6,WN,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1245,0,0,1505,-14,0,0 +2013,7,16,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1208,11,0,1446,4,0,0 +2013,8,17,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1825,-8,0,2038,-1,0,0 +2013,5,20,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13851,Will Rogers World,Oklahoma City,OK,851,-2,0,1043,16,1,0 +2013,8,24,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1147,-11,0,0 +2013,7,11,4,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1555,-6,0,1924,-14,0,0 +2013,7,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1340,-2,0,1515,-8,0,0 +2013,10,9,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1305,-5,0,1355,-6,0,0 +2013,5,17,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-9,0,1152,-36,0,0 +2013,8,21,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-5,0,1252,12,0,0 +2013,8,7,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,0,0,1205,-16,0,0 +2013,9,13,5,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1355,8,0,1512,-2,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,2159,63,1,2338,20,1,0 +2013,4,5,5,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1430,-7,0,1611,-10,0,0 +2013,7,23,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2155,56,1,2255,47,1,0 +2013,4,3,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,605,1,0,725,0,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1640,60,1,2345,42,1,0 +2013,6,21,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,32,1,2106,14,0,0 +2013,10,14,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,840,-6,0,1100,-13,0,0 +2013,4,19,5,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2115,48,1,2353,45,1,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1227,-1,0,1836,-1,0,0 +2013,6,15,6,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1200,-11,0,1457,-25,0,0 +2013,8,3,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-3,0,1915,-19,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-2,0,1427,-12,0,0 +2013,9,4,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2018,-2,0,2135,-17,0,0 +2013,4,21,7,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,-6,0,1940,-2,0,0 +2013,6,28,5,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,815,130,1,1001,120,1,0 +2013,8,18,7,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-7,0,2046,-10,0,0 +2013,4,3,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-6,0,1523,6,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,715,-2,0,815,-3,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1230,-1,0,1535,-12,0,0 +2013,6,2,7,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-1,0,1048,-3,0,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,825,-4,0,1055,11,0,0 +2013,6,18,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1310,0,,1415,0,1,1 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2205,8,0,2305,-4,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1225,13,0,1650,3,0,0 +2013,9,3,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1445,29,1,1811,32,1,0 +2013,9,30,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,118,1,1240,113,1,0 +2013,4,17,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,825,-3,0,1030,-5,0,0 +2013,4,13,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-7,0,2110,-6,0,0 +2013,10,10,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-1,0,1800,-7,0,0 +2013,6,1,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,-4,0,1537,-20,0,0 +2013,8,31,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-1,0,950,-11,0,0 +2013,4,1,1,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-1,0,1045,-12,0,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1725,44,1,2200,41,1,0 +2013,10,3,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1605,-3,0,1721,3,0,0 +2013,9,11,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,615,-2,0,720,-12,0,0 +2013,5,2,4,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-7,0,1356,-3,0,0 +2013,6,28,5,EV,10792,Buffalo Niagara International,Buffalo,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1653,9,0,1755,-4,0,0 +2013,4,1,1,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1252,-9,0,1709,-25,0,0 +2013,5,16,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1741,23,1,1910,17,1,0 +2013,4,18,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,12,0,1755,4,0,0 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1257,6,0,1640,21,1,0 +2013,5,24,5,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,-1,0,1047,-3,0,0 +2013,9,5,4,OO,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1259,-2,0,1748,0,0,0 +2013,6,29,6,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-5,0,1809,-2,0,0 +2013,4,12,5,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1855,0,,2349,0,1,1 +2013,6,7,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1607,27,1,1926,25,1,0 +2013,7,2,2,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2155,58,1,2340,48,1,0 +2013,7,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,904,-6,0,1022,-2,0,0 +2013,4,11,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-5,0,2209,7,0,0 +2013,9,4,3,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-9,0,1342,-16,0,0 +2013,4,18,4,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2250,103,1,653,99,1,0 +2013,8,23,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,953,-9,0,1137,-15,0,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,-1,0,1705,-17,0,0 +2013,8,21,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,2100,34,1,2215,33,1,0 +2013,10,10,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,600,-2,0,705,-5,0,0 +2013,4,26,5,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,20,1,2036,11,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-3,0,1647,1,0,0 +2013,7,24,3,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,-5,0,2111,-9,0,0 +2013,8,3,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,605,-2,0,740,-5,0,0 +2013,4,4,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1044,-3,0,1415,-8,0,0 +2013,6,4,2,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1725,-3,0,2040,-26,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-1,0,2200,-14,0,0 +2013,10,31,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1221,-3,0,1925,-11,0,0 +2013,7,15,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1850,-2,0,2014,3,0,0 +2013,6,22,6,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1010,0,0,1130,-6,0,0 +2013,6,27,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-3,0,1245,0,0,0 +2013,8,10,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,716,1,0,1035,-15,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1456,41,1,1724,35,1,0 +2013,6,9,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-2,0,1115,10,0,0 +2013,8,17,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,735,-6,0,910,-33,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,4,0,825,-6,0,0 +2013,4,12,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1410,12,0,2015,7,0,0 +2013,10,6,7,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1820,13,0,2038,9,0,0 +2013,6,20,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,0,0,2354,-11,0,0 +2013,5,9,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1115,173,1,1305,166,1,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,13,0,2255,13,0,0 +2013,6,8,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1810,-3,0,2042,3,0,0 +2013,4,17,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1925,2,0,2155,-8,0,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-1,0,1642,-3,0,0 +2013,7,5,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1510,-5,0,1620,-1,0,0 +2013,4,18,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,638,-6,0,809,23,1,0 +2013,5,2,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,13204,Orlando International,Orlando,FL,1555,0,0,1755,-1,0,0 +2013,5,11,6,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,608,-2,0,1149,-6,0,0 +2013,10,1,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1445,-6,0,1524,-5,0,0 +2013,8,13,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13244,Memphis International,Memphis,TN,1733,-6,0,1900,-20,0,0 +2013,4,7,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1855,28,1,2215,26,1,0 +2013,4,5,5,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,841,-1,0,1110,-14,0,0 +2013,9,3,2,DL,12173,Honolulu International,Honolulu,HI,14869,Salt Lake City International,Salt Lake City,UT,2100,4,0,711,-16,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,-1,0,1103,-12,0,0 +2013,10,13,7,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2025,1,0,2140,-7,0,0 +2013,7,18,4,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-4,0,830,-22,0,0 +2013,5,31,5,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,9,0,1645,-3,0,0 +2013,9,25,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,705,1,0,0 +2013,7,27,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,700,-10,0,829,-17,0,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,917,-1,0,1737,3,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1500,22,1,1719,-11,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,52,1,2059,53,1,0 +2013,6,5,3,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,2030,-5,0,2155,-14,0,0 +2013,9,27,5,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-6,0,1252,-19,0,0 +2013,5,21,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1244,-6,0,1329,-4,0,0 +2013,9,23,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,29,1,2104,26,1,0 +2013,5,12,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1847,-2,0,2151,13,0,0 +2013,4,9,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,6,0,1620,0,0,0 +2013,8,5,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1515,-10,0,1915,-14,0,0 +2013,7,22,1,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,0,0,1420,5,0,0 +2013,5,19,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2135,61,1,2245,54,1,0 +2013,8,27,2,WN,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1200,-6,0,1330,-12,0,0 +2013,6,15,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,9,0,1905,5,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,6,0,928,-9,0,0 +2013,8,30,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1245,-7,0,1415,4,0,0 +2013,8,24,6,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1641,-8,0,1744,-9,0,0 +2013,9,13,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,709,-9,0,1141,-10,0,0 +2013,7,15,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,40,1,1405,38,1,0 +2013,9,21,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1628,0,0,1853,8,0,0 +2013,5,26,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,630,0,0,826,-2,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-6,0,1622,2,0,0 +2013,8,5,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-4,0,1643,-10,0,0 +2013,8,7,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1325,11,0,1335,22,1,0 +2013,7,29,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,175,1,1155,171,1,0 +2013,9,11,3,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1755,-2,0,2014,0,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,18,1,1925,15,1,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,153,1,50,129,1,0 +2013,9,15,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,2140,-8,0,2156,-4,0,0 +2013,5,16,4,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1208,-7,0,1430,-10,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,920,19,1,1035,16,1,0 +2013,10,15,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2015,-5,0,2125,-17,0,0 +2013,10,8,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1115,-6,0,1242,-19,0,0 +2013,6,15,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1425,15,1,1617,11,0,0 +2013,7,30,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1715,119,1,1835,103,1,0 +2013,8,8,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2105,0,,2200,0,1,1 +2013,7,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1200,71,1,1420,54,1,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,59,1,1309,45,1,0 +2013,6,5,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-2,0,1345,1,0,0 +2013,4,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1020,34,1,1145,29,1,0 +2013,4,5,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-4,0,1346,-11,0,0 +2013,4,1,1,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,98,1,913,68,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,725,0,0,906,-9,0,0 +2013,6,26,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,-4,0,1859,-6,0,0 +2013,10,7,1,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,700,-3,0,1530,-7,0,0 +2013,6,6,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,-11,0,720,-15,0,0 +2013,9,10,2,UA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,844,0,0,1719,-4,0,0 +2013,7,25,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,-1,0,1520,-5,0,0 +2013,10,24,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2045,93,1,2215,73,1,0 +2013,4,10,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1431,-4,0,1643,-9,0,0 +2013,7,9,2,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1136,-5,0,1338,-15,0,0 +2013,4,12,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,8,0,845,10,0,0 +2013,8,15,4,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,1,0,500,-9,0,0 +2013,4,1,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,0,0,1118,0,0,0 +2013,7,30,2,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,-4,0,1119,-22,0,0 +2013,4,25,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,47,1,2240,33,1,0 +2013,10,5,6,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,750,-7,0,855,-6,0,0 +2013,7,23,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,-3,0,2017,0,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1729,-3,0,1929,-4,0,0 +2013,9,12,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1600,3,0,1801,3,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,835,-3,0,939,-10,0,0 +2013,6,18,2,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,3,0,918,4,0,0 +2013,8,25,7,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-1,0,759,-9,0,0 +2013,10,12,6,EV,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1645,-5,0,1837,-22,0,0 +2013,10,25,5,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-4,0,2100,-3,0,0 +2013,8,14,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1440,-1,0,2245,-10,0,0 +2013,10,14,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2010,9,0,2105,-2,0,0 +2013,5,27,1,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1815,14,0,2039,-11,0,0 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1140,-5,0,2006,-22,0,0 +2013,5,2,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-4,0,1827,-6,0,0 +2013,8,16,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1600,14,0,1656,16,1,0 +2013,4,19,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1200,39,1,1338,35,1,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2145,3,0,2235,2,0,0 +2013,8,1,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-6,0,820,-10,0,0 +2013,5,31,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1440,-8,0,1652,-9,0,0 +2013,6,17,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,0,0,940,106,1,0 +2013,7,29,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,935,-3,0,941,1,0,0 +2013,7,8,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,0,1405,-5,0,0 +2013,9,1,7,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1135,0,0,1251,-15,0,0 +2013,6,21,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-5,0,1559,-4,0,0 +2013,5,13,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1755,-5,0,1913,4,0,0 +2013,10,3,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-2,0,1558,4,0,0 +2013,7,22,1,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,743,-9,0,847,-17,0,0 +2013,9,4,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-4,0,1650,-3,0,0 +2013,8,3,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1331,-1,0,1643,-13,0,0 +2013,5,20,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1720,6,0,1850,8,0,0 +2013,6,8,6,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,77,1,2247,56,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1110,1,0,1245,-2,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,3,0,1049,7,0,0 +2013,7,31,3,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,1,0,1122,-3,0,0 +2013,8,13,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1825,1,0,2030,-5,0,0 +2013,7,16,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1349,6,0,1607,-2,0,0 +2013,10,14,1,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,959,-1,0,1320,9,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,30,1,1420,22,1,0 +2013,8,20,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-2,0,700,-11,0,0 +2013,4,23,2,EV,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2107,52,1,2251,63,1,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,858,-2,0,1001,-7,0,0 +2013,5,24,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,2,0,1012,-5,0,0 +2013,10,19,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-6,0,1842,-16,0,0 +2013,6,24,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-6,0,1003,-12,0,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,-13,0,2327,-19,0,0 +2013,9,18,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,-4,0,1649,-11,0,0 +2013,9,30,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1655,16,1,1810,6,0,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,850,-1,0,910,-15,0,0 +2013,7,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-5,0,1016,-3,0,0 +2013,7,5,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,740,-20,0,0 +2013,6,19,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2029,-1,0,2115,22,1,0 +2013,9,15,7,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2030,0,0,2215,-12,0,0 +2013,5,4,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1855,-7,0,2153,-16,0,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1755,4,0,1935,-8,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2001,-4,0,2100,0,0,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1910,-3,0,2135,-10,0,0 +2013,7,17,3,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,9,0,2157,7,0,0 +2013,10,30,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1049,-1,0,1157,-4,0,0 +2013,7,29,1,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1430,99,1,1729,116,1,0 +2013,5,13,1,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,950,0,0,1100,-8,0,0 +2013,5,30,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1605,21,1,1713,16,1,0 +2013,5,8,3,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1733,-2,0,1821,-8,0,0 +2013,5,18,6,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1300,-6,0,1602,-9,0,0 +2013,8,16,5,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,3,0,627,1,0,0 +2013,9,22,7,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-5,0,1545,-36,0,0 +2013,5,7,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1552,13,0,1648,13,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1122,-5,0,1410,-4,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1335,4,0,1520,-2,0,0 +2013,7,29,1,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1234,65,1,1541,54,1,0 +2013,7,15,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,835,-5,0,930,-5,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1738,2,0,2004,-5,0,0 +2013,8,31,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1007,-9,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1659,21,1,2012,14,0,0 +2013,7,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1910,108,1,2220,92,1,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1023,-1,0,1137,0,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1951,37,1,2153,62,1,0 +2013,9,5,4,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1905,-5,0,2025,-13,0,0 +2013,10,13,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-13,0,904,-23,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,851,-5,0,1045,-5,0,0 +2013,8,20,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,958,10,0,1230,3,0,0 +2013,9,3,2,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1512,-1,0,1834,-10,0,0 +2013,5,4,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,910,-3,0,1040,-2,0,0 +2013,4,16,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,847,-2,0,1054,30,1,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1600,-3,0,1905,-5,0,0 +2013,8,6,2,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1900,0,0,2206,-12,0,0 +2013,5,2,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,615,-7,0,729,-5,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,920,23,1,1220,25,1,0 +2013,9,22,7,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,610,-5,0,735,-6,0,0 +2013,10,12,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2228,8,0,2359,0,0,0 +2013,4,9,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1810,3,0,1925,0,0,0 +2013,10,11,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1401,-8,0,1552,-8,0,0 +2013,7,17,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,2,0,1405,-11,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1206,-5,0,1340,-25,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,85,1,1339,113,1,0 +2013,8,28,3,B6,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1529,20,1,1821,7,0,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1233,55,1,1729,56,1,0 +2013,10,30,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-6,0,1632,-15,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2057,38,1,2224,23,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,21,1,2055,37,1,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,-3,0,1830,-5,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1545,25,1,1630,22,1,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1258,-2,0,2110,-14,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,23,1,1545,5,0,0 +2013,6,17,1,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-2,0,1404,-6,0,0 +2013,10,10,4,YV,14100,Philadelphia International,Philadelphia,PA,14524,Richmond International,Richmond,VA,939,0,,1040,0,1,1 +2013,10,3,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1810,31,1,1920,25,1,0 +2013,7,9,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,0,0,955,-18,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1611,-3,0,1629,-4,0,0 +2013,6,25,2,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1518,145,1,1624,138,1,0 +2013,4,8,1,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-2,0,1820,-42,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,645,-3,0,920,6,0,0 +2013,8,12,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,41,1,1315,46,1,0 +2013,4,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2020,1,0,2125,1,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1804,9,0,1956,0,0,0 +2013,4,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1530,24,1,1955,19,1,0 +2013,6,25,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,68,1,1332,70,1,0 +2013,8,15,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,941,11,0,1225,15,1,0 +2013,7,18,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,840,-9,0,857,0,0,0 +2013,9,11,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1320,-7,0,1445,-22,0,0 +2013,8,21,3,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,752,-2,0,919,-15,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1525,-2,0,1910,-15,0,0 +2013,8,7,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1357,-3,0,1609,-2,0,0 +2013,4,25,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1855,5,0,2025,1,0,0 +2013,9,25,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1345,77,1,1505,74,1,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2025,5,0,2130,-1,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1545,4,0,1735,-16,0,0 +2013,10,7,1,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1635,30,1,2042,6,0,0 +2013,4,29,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,900,-3,0,1005,-12,0,0 +2013,10,5,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1347,-8,0,1628,1,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1429,-2,0,1609,-1,0,0 +2013,5,22,3,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,900,-4,0,1210,6,0,0 +2013,5,24,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,132,1,1745,147,1,0 +2013,6,2,7,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,28,1,2105,42,1,0 +2013,7,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,43,1,1800,54,1,0 +2013,8,29,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-8,0,1024,-1,0,0 +2013,7,31,3,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-7,0,1537,-17,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1910,1,0,2044,9,0,0 +2013,10,22,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1715,-1,0,1825,-1,0,0 +2013,7,25,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2115,17,1,2230,16,1,0 +2013,10,10,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,2,0,1931,1,0,0 +2013,8,11,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-1,0,935,-7,0,0 +2013,9,12,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2110,-7,0,2210,-6,0,0 +2013,7,20,6,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-8,0,1213,-18,0,0 +2013,4,16,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1047,-2,0,1305,-1,0,0 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2306,8,0,57,-3,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1200,8,0,1925,-3,0,0 +2013,10,8,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1448,33,1,1533,25,1,0 +2013,5,16,4,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,830,12,0,1120,8,0,0 +2013,10,11,5,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,646,124,1,943,131,1,0 +2013,7,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,3,0,835,1,0,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1515,11,0,1635,6,0,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,-2,0,1600,9,0,0 +2013,10,26,6,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1545,-2,0,1705,-1,0,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,-2,0,1427,1,0,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,950,-2,0,1121,-1,0,0 +2013,7,25,4,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,900,-4,0,1359,11,0,0 +2013,5,11,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,-2,0,2015,-10,0,0 +2013,4,9,2,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1700,-7,0,2015,-22,0,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,-4,0,1840,3,0,0 +2013,8,7,3,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,-5,0,1220,-7,0,0 +2013,10,4,5,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1945,40,1,2252,38,1,0 +2013,9,8,7,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1045,1,0,1320,-7,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1934,0,0,2055,-12,0,0 +2013,6,27,4,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,600,-6,0,835,-2,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-5,0,1359,-17,0,0 +2013,5,27,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1126,6,0,1224,25,1,0 +2013,8,6,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,650,-4,0,825,-11,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1900,-2,0,2225,-3,0,0 +2013,8,4,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2016,11,0,2251,17,1,0 +2013,10,28,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,2000,-3,0,2145,-16,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,640,-3,0,1025,-8,0,0 +2013,6,3,1,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,11,0,1950,-1,0,0 +2013,5,8,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2055,22,1,2200,16,1,0 +2013,4,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,945,-1,0,1100,3,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,44,1,1508,29,1,0 +2013,10,9,3,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1911,37,1,2110,28,1,0 +2013,9,18,3,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1820,15,1,2000,82,1,0 +2013,8,12,1,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,0,,828,0,1,1 +2013,5,16,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1100,-13,0,1245,-23,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,-2,0,24,-6,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-1,0,1004,-14,0,0 +2013,6,4,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,550,-2,0,850,-10,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,845,-2,0,1025,-22,0,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1958,28,1,2200,28,1,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1740,29,1,1825,32,1,0 +2013,5,24,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13930,Chicago O'Hare International,Chicago,IL,1510,-10,0,1920,-28,0,0 +2013,8,19,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1101,-5,0,1320,-13,0,0 +2013,7,17,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1835,-10,0,2029,-12,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1606,-1,0,2020,-19,0,0 +2013,9,9,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,0,0,1702,-13,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,615,0,0,825,-11,0,0 +2013,5,3,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1630,-1,0,1800,-4,0,0 +2013,7,6,6,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-5,0,1000,-14,0,0 +2013,5,1,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-2,0,845,-24,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1011,-3,0,1220,-16,0,0 +2013,5,24,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1210,21,1,1410,13,0,0 +2013,5,15,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1235,-8,0,1325,-6,0,0 +2013,5,6,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-5,0,1540,-4,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1615,9,0,1720,1,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2050,0,0,2247,6,0,0 +2013,10,6,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1652,-8,0,1747,4,0,0 +2013,9,9,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,-1,0,2128,-21,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1855,-1,0,2225,-12,0,0 +2013,6,12,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1732,2,0,2114,-1,0,0 +2013,7,20,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1448,-2,0,1744,-3,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,5,0,2306,3,0,0 +2013,7,6,6,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1400,32,1,1635,25,1,0 +2013,4,21,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,25,1,1446,21,1,0 +2013,9,24,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,138,1,2157,118,1,0 +2013,4,14,7,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-14,0,912,-12,0,0 +2013,7,9,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,849,-4,0,1021,-6,0,0 +2013,10,13,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,700,2,0,805,-9,0,0 +2013,10,13,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,710,-8,0,913,-12,0,0 +2013,7,7,7,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1455,6,0,1601,21,1,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-3,0,959,-7,0,0 +2013,5,13,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1700,-6,0,1817,-20,0,0 +2013,8,11,7,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-9,0,1516,-9,0,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,139,1,1910,132,1,0 +2013,8,26,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,848,-18,0,0 +2013,10,1,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,1518,-2,0,1615,-14,0,0 +2013,8,18,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1750,32,1,1906,17,1,0 +2013,10,21,1,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,905,-12,0,1150,-4,0,0 +2013,8,26,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1006,0,0,1300,22,1,0 +2013,4,19,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1337,5,0,1412,8,0,0 +2013,4,27,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1405,-3,0,1720,-8,0,0 +2013,6,16,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1727,-2,0,1748,-10,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1127,10,0,1300,20,1,0 +2013,6,10,1,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-8,0,815,-5,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,6,0,945,0,0,0 +2013,10,10,4,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,948,-3,0,0 +2013,10,31,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-4,0,1240,6,0,0 +2013,4,24,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,-6,0,1600,-3,0,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,955,-1,0,1248,3,0,0 +2013,10,16,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,0,0,1824,-3,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,-5,0,1620,-6,0,0 +2013,6,6,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,3,0,1235,-15,0,0 +2013,6,16,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,3,0,2035,-7,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1100,14,0,1235,-1,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,845,-3,0,1058,-19,0,0 +2013,4,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1555,3,0,1850,12,0,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,-1,0,1351,15,1,0 +2013,10,26,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,730,-1,0,945,-8,0,0 +2013,6,23,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,720,-8,0,1007,-15,0,0 +2013,9,4,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,86,1,1904,84,1,0 +2013,9,26,4,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1146,0,0,1412,-6,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1055,0,0,1420,-1,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2145,35,1,2245,34,1,0 +2013,9,25,3,YV,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,850,-10,0,1120,-26,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,15,1,1546,18,1,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,0,0,2215,-14,0,0 +2013,4,27,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1630,-3,0,1750,-18,0,0 +2013,6,1,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1310,0,0,1820,-17,0,0 +2013,7,11,4,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1240,-4,0,2057,-29,0,0 +2013,7,15,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-6,0,1610,-5,0,0 +2013,9,16,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1216,-9,0,1329,-10,0,0 +2013,10,29,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1150,84,1,1425,61,1,0 +2013,9,7,6,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,803,-6,0,923,-21,0,0 +2013,5,10,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,49,1,2215,47,1,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,930,37,1,1320,38,1,0 +2013,5,1,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1935,2,0,2100,14,0,0 +2013,6,21,5,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1544,-8,0,1905,-21,0,0 +2013,4,18,4,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1036,-4,0,1155,-16,0,0 +2013,9,29,7,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1702,-8,0,2059,-32,0,0 +2013,7,31,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-1,0,1142,-9,0,0 +2013,7,24,3,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1036,-11,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1208,7,0,1342,-1,0,0 +2013,8,7,3,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2015,154,1,2103,158,1,0 +2013,9,29,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1455,7,0,1615,-2,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,731,-7,0,1015,-9,0,0 +2013,9,20,5,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,1153,-4,0,1250,-18,0,0 +2013,8,23,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,845,15,1,1040,14,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1640,1,0,2110,-15,0,0 +2013,6,4,2,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1220,-5,0,1412,-5,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1920,-2,0,2045,-5,0,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1955,-3,0,2107,-4,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1141,-9,0,1307,-2,0,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,-1,0,1155,-2,0,0 +2013,5,12,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2017,-4,0,2118,-20,0,0 +2013,6,1,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1005,60,1,1152,47,1,0 +2013,4,10,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1800,166,1,1950,186,1,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,2110,-5,0,20,-16,0,0 +2013,6,10,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1805,36,1,1910,42,1,0 +2013,9,9,1,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1545,10,0,1920,-21,0,0 +2013,8,4,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1256,-5,0,1512,-10,0,0 +2013,10,8,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1105,69,1,1215,72,1,0 +2013,5,11,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,855,0,0,1105,-13,0,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,605,44,1,929,46,1,0 +2013,8,7,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-12,0,2256,-6,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1620,-5,0,1837,-29,0,0 +2013,8,4,7,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,940,4,0,1045,-7,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1004,-4,0,1251,-11,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2005,6,0,2208,15,1,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,845,5,0,1025,-5,0,0 +2013,4,2,2,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1345,-4,0,1622,-3,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1741,-1,0,1909,-2,0,0 +2013,6,1,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1515,-2,0,1800,-26,0,0 +2013,6,22,6,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,-4,0,1605,-2,0,0 +2013,9,20,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1845,-1,0,2057,-6,0,0 +2013,6,5,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1455,7,0,1600,3,0,0 +2013,4,28,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-5,0,2000,-10,0,0 +2013,9,14,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,0,0,1223,-4,0,0 +2013,7,16,2,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,-2,0,2052,10,0,0 +2013,7,12,5,OO,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,808,112,1,1038,116,1,0 +2013,4,3,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-7,0,1907,4,0,0 +2013,6,22,6,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-8,0,1805,-8,0,0 +2013,8,3,6,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1921,-15,0,2109,-12,0,0 +2013,6,10,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,905,7,0,1220,-3,0,0 +2013,7,10,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1916,116,1,2129,114,1,0 +2013,9,7,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1100,-11,0,1135,8,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-1,0,1653,-16,0,0 +2013,8,8,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1446,-4,0,1622,-9,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1345,23,1,1545,18,1,0 +2013,8,4,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,-3,0,840,-4,0,0 +2013,10,10,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1245,-5,0,1415,-17,0,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1230,-5,0,1435,-1,0,0 +2013,8,14,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1950,31,1,2135,28,1,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1950,1,0,2115,-9,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-2,0,1109,-16,0,0 +2013,5,3,5,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,1,0,1656,-6,0,0 +2013,10,8,2,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2010,-1,0,2300,4,0,0 +2013,4,28,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1425,2,0,1630,-18,0,0 +2013,9,11,3,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1725,24,1,2245,22,1,0 +2013,8,23,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,23,1,1900,14,0,0 +2013,5,20,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1745,-2,0,2044,-9,0,0 +2013,6,24,1,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-6,0,1900,-11,0,0 +2013,10,14,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,805,-2,0,930,-8,0,0 +2013,9,9,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1029,-10,0,1149,-29,0,0 +2013,10,14,1,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1930,29,1,2250,16,1,0 +2013,10,20,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1535,8,0,1640,4,0,0 +2013,7,10,3,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1345,0,0,1640,18,1,0 +2013,8,1,4,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1742,-9,0,1919,0,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1450,187,1,1646,188,1,0 +2013,8,19,1,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1525,1,0,1845,25,1,0 +2013,6,17,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,2359,-2,0,555,-4,0,0 +2013,4,3,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,920,-6,0,0 +2013,9,10,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,900,-1,0,1020,-10,0,0 +2013,9,8,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,840,-4,0,930,-12,0,0 +2013,8,31,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,600,14,0,718,3,0,0 +2013,5,8,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,745,-3,0,855,-14,0,0 +2013,8,24,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1259,70,1,1631,73,1,0 +2013,5,29,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1914,26,1,2100,15,1,0 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1822,-5,0,1848,-17,0,0 +2013,4,12,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,30,1,849,20,1,0 +2013,7,16,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1545,-5,0,1640,-23,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,730,-7,0,1140,-12,0,0 +2013,6,4,2,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,0,0,1215,-6,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,25,1,1935,25,1,0 +2013,7,29,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,810,25,1,908,30,1,0 +2013,8,13,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1125,-1,0,1140,8,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-4,0,916,-4,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1420,106,1,1525,106,1,0 +2013,4,8,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-5,0,745,-21,0,0 +2013,8,24,6,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,750,3,0,1120,6,0,0 +2013,8,26,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1450,-2,0,1550,-3,0,0 +2013,10,6,7,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-4,0,1302,-5,0,0 +2013,10,19,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-5,0,935,-11,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1004,4,0,1327,-3,0,0 +2013,8,25,7,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,806,-2,0,1015,-17,0,0 +2013,8,3,6,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1740,18,1,1950,-9,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1015,82,1,1305,67,1,0 +2013,7,20,6,UA,14570,Reno/Tahoe International,Reno,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1234,-3,0,1817,-14,0,0 +2013,5,17,5,YV,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,825,9,0,1033,-1,0,0 +2013,6,13,4,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,1312,21,1,2110,1,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1515,10,0,1802,-5,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-4,0,2115,-5,0,0 +2013,10,21,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,60,1,1115,55,1,0 +2013,8,25,7,YV,14683,San Antonio International,San Antonio,TX,11057,Charlotte Douglas International,Charlotte,NC,1330,0,0,1723,2,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-4,0,1137,-9,0,0 +2013,9,8,7,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1829,-7,0,1939,-12,0,0 +2013,5,18,6,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-5,0,1510,-10,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1120,-7,0,1316,-9,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1733,-5,0,1916,-7,0,0 +2013,5,1,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,805,-3,0,1342,6,0,0 +2013,10,9,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1040,-4,0,1200,-18,0,0 +2013,9,12,4,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1247,26,1,0 +2013,8,11,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,735,-1,0,1559,-26,0,0 +2013,8,27,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1350,19,1,2100,8,0,0 +2013,4,2,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,630,7,0,945,34,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,0,,1445,0,1,1 +2013,4,1,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1924,3,0,2115,-14,0,0 +2013,6,15,6,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1530,41,1,1850,38,1,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1920,17,1,2120,9,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2042,-1,0,2155,-4,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,845,-5,0,1029,-5,0,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,46,1,1816,57,1,0 +2013,6,20,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1040,-1,0,1200,-7,0,0 +2013,10,21,1,9E,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1200,-12,0,1349,-8,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2100,22,1,2210,11,0,0 +2013,5,18,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1630,-7,0,2239,-8,0,0 +2013,10,23,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-17,0,1554,-8,0,0 +2013,8,20,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-6,0,29,-9,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,31,1,1915,12,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-2,0,2110,-6,0,0 +2013,9,10,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,-1,0,1538,-15,0,0 +2013,8,12,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,3,0,1525,-14,0,0 +2013,9,9,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1801,-8,0,2052,-2,0,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2016,-6,0,2105,0,0,0 +2013,6,21,5,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,-7,0,625,-6,0,0 +2013,8,11,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,-3,0,1313,-10,0,0 +2013,6,24,1,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,530,-2,0,650,-5,0,0 +2013,10,6,7,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2102,-2,0,510,2,0,0 +2013,10,2,3,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,3,0,2030,10,0,0 +2013,9,6,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-2,0,1641,9,0,0 +2013,8,12,1,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,720,-5,0,917,-8,0,0 +2013,6,30,7,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1112,17,1,1636,-2,0,0 +2013,9,1,7,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1705,-8,0,1825,9,0,0 +2013,10,18,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,0,0,1650,1,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,645,-3,0,929,2,0,0 +2013,10,28,1,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1104,6,0,1200,2,0,0 +2013,5,23,4,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1825,131,1,2005,119,1,0 +2013,5,26,7,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,825,-6,0,1023,-10,0,0 +2013,10,9,3,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1431,61,1,1645,27,1,0 +2013,4,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,12,0,2155,5,0,0 +2013,7,16,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1420,37,1,1510,40,1,0 +2013,7,1,1,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,920,-2,0,1200,-19,0,0 +2013,6,7,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1440,74,1,1737,98,1,0 +2013,7,13,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,900,1,0,0 +2013,8,29,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1640,-1,0,1850,-1,0,0 +2013,7,24,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1150,-3,0,1425,-10,0,0 +2013,10,30,3,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2339,-10,0,759,-39,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1029,0,0,1143,-9,0,0 +2013,6,4,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-5,0,2150,-13,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,840,0,0,1120,32,1,0 +2013,8,15,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,8,0,1555,1,0,0 +2013,6,29,6,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-1,0,1336,-16,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1535,59,1,1650,59,1,0 +2013,6,1,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2100,1,0,2155,-11,0,0 +2013,4,23,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1735,0,,1926,0,1,1 +2013,10,29,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1940,-7,0,2229,-26,0,0 +2013,6,20,4,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-5,0,1609,-10,0,0 +2013,7,9,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,6,0,1100,-3,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1710,-3,0,1835,-17,0,0 +2013,4,29,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-7,0,1725,-19,0,0 +2013,6,11,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1425,16,1,1520,14,0,0 +2013,6,23,7,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,-13,0,1830,6,0,0 +2013,5,19,7,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-6,0,1314,-17,0,0 +2013,6,14,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,0,,2016,0,1,1 +2013,10,5,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1610,-3,0,1717,-14,0,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,73,1,1300,64,1,0 +2013,9,6,5,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-7,0,1126,1,0,0 +2013,4,22,1,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1400,245,1,2250,200,1,0 +2013,9,26,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,1600,-4,0,1720,-7,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1247,-2,0,1501,16,1,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,-2,0,1303,14,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,600,-2,0,705,-8,0,0 +2013,5,26,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1235,-4,0,1325,-12,0,0 +2013,6,9,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,700,-4,0,952,6,0,0 +2013,5,21,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,-2,0,1510,-5,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1905,-4,0,2000,-16,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,-2,0,1835,0,0,0 +2013,6,28,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,0,0,1225,6,0,0 +2013,10,14,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,1105,-2,0,0 +2013,8,2,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-3,0,1209,-20,0,0 +2013,10,4,5,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1104,-5,0,1505,-1,0,0 +2013,4,2,2,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2120,11,0,25,11,0,0 +2013,8,21,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,-8,0,942,-17,0,0 +2013,6,19,3,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2345,-1,0,820,-13,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,740,-2,0,1010,-15,0,0 +2013,6,22,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2040,-2,0,2152,-20,0,0 +2013,9,7,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,-4,0,1530,-12,0,0 +2013,6,27,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,530,-8,0,649,-18,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1343,-1,0,1701,-9,0,0 +2013,7,22,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1555,20,1,1800,10,0,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,905,-4,0,1113,-5,0,0 +2013,6,21,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1855,-4,0,2301,-20,0,0 +2013,4,3,3,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,29,1,1522,10,0,0 +2013,10,5,6,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,640,-6,0,910,-17,0,0 +2013,6,16,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1732,-6,0,1910,-13,0,0 +2013,5,12,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1023,-9,0,1147,-25,0,0 +2013,7,12,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,2045,89,1,2310,71,1,0 +2013,7,27,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,857,-1,0,1020,-20,0,0 +2013,9,16,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,835,-5,0,852,2,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2155,2,0,55,-5,0,0 +2013,6,10,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,0,,1421,0,1,1 +2013,5,10,5,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1315,-4,0,1616,11,0,0 +2013,9,13,5,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1532,-9,0,1720,-6,0,0 +2013,9,19,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,615,-1,0,730,-3,0,0 +2013,6,2,7,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1538,-8,0,1820,-14,0,0 +2013,10,16,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1625,0,0,1645,-9,0,0 +2013,8,22,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1205,-6,0,1302,-15,0,0 +2013,8,27,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,935,-2,0,1130,-4,0,0 +2013,7,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,-3,0,2221,-12,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2100,0,0,2240,-13,0,0 +2013,9,25,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1955,-8,0,2135,-20,0,0 +2013,5,26,7,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1545,-6,0,1856,-17,0,0 +2013,9,8,7,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,-9,0,1818,9,0,0 +2013,6,14,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-10,0,836,-13,0,0 +2013,4,28,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-15,0,1705,-28,0,0 +2013,9,28,6,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,740,-7,0,1115,-16,0,0 +2013,8,11,7,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1332,-5,0,1528,-3,0,0 +2013,10,18,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1402,-21,0,0 +2013,10,23,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,800,-2,0,945,-7,0,0 +2013,8,17,6,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-2,0,2115,-37,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1820,-2,0,2230,-19,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1410,13,0,1536,-1,0,0 +2013,4,22,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-1,0,1837,35,1,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1945,-3,0,2318,-17,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1023,-1,0,1257,1,0,0 +2013,5,13,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1114,-6,0,1224,-7,0,0 +2013,4,14,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1806,3,0,1910,0,0,0 +2013,4,17,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,755,18,1,1010,16,1,0 +2013,6,6,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,600,-6,0,940,0,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1415,34,1,1630,18,1,0 +2013,8,17,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1520,-3,0,1630,-6,0,0 +2013,9,27,5,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1855,-3,0,2207,-8,0,0 +2013,6,22,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,820,49,1,1040,35,1,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,845,-1,0,955,15,1,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,806,4,0,1643,7,0,0 +2013,9,25,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2039,-3,0,2341,-3,0,0 +2013,4,17,3,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1505,10,0,2345,14,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,803,0,0,1041,-13,0,0 +2013,5,21,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1940,-1,0,2010,-3,0,0 +2013,5,8,3,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1358,-6,0,1413,-14,0,0 +2013,8,21,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-1,0,1629,1,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,735,-4,0,1012,-13,0,0 +2013,8,30,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2015,15,1,2235,8,0,0 +2013,4,9,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,1,0,1508,-1,0,0 +2013,5,1,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,-1,0,2210,-1,0,0 +2013,6,15,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1440,-3,0,1750,-10,0,0 +2013,8,2,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1716,16,1,1844,25,1,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1735,10,0,1955,7,0,0 +2013,6,6,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2225,-2,0,2325,5,0,0 +2013,10,29,2,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1245,0,0,1424,-8,0,0 +2013,7,29,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,10,5,0,616,-9,0,0 +2013,10,9,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1129,-4,0,1248,-22,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,910,-6,0,1048,-4,0,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,855,-1,0,950,-8,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,2055,19,1,2200,14,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,625,-1,0,920,-7,0,0 +2013,9,17,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1335,4,0,1440,-7,0,0 +2013,8,5,1,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,716,-8,0,1008,-27,0,0 +2013,8,18,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,1,0,1746,-1,0,0 +2013,8,26,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1045,-4,0,1306,17,1,0 +2013,8,25,7,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,553,-4,0,1000,-4,0,0 +2013,5,30,4,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,837,37,1,1013,20,1,0 +2013,9,9,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,706,-9,0,838,-9,0,0 +2013,5,16,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-7,0,1255,-11,0,0 +2013,6,19,3,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1523,-2,0,1826,34,1,0 +2013,7,23,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,1200,48,1,1302,47,1,0 +2013,8,16,5,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-3,0,1856,-9,0,0 +2013,4,26,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,-1,0,1913,-5,0,0 +2013,7,17,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,610,0,0,729,-23,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1115,13,0,1247,12,0,0 +2013,8,8,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,11,0,2230,13,0,0 +2013,9,11,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1325,-1,0,1440,-9,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-1,0,2007,-16,0,0 +2013,7,30,2,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,536,-3,0,806,-14,0,0 +2013,10,13,7,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1322,83,1,1749,71,1,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,38,1,2210,39,1,0 +2013,10,25,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,-11,0,2103,-1,0,0 +2013,8,8,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,923,-6,0,1045,-19,0,0 +2013,9,21,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,645,-6,0,938,-25,0,0 +2013,8,4,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2015,12,0,2105,2,0,0 +2013,6,18,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1550,44,1,1820,37,1,0 +2013,7,26,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,3,0,2017,-9,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,750,4,0,1125,-4,0,0 +2013,7,26,5,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1710,12,0,1833,1,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,2010,172,1,2320,165,1,0 +2013,8,6,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,932,-10,0,1123,-13,0,0 +2013,7,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,-1,0,1632,0,0,0 +2013,10,3,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,900,1,0,1735,-10,0,0 +2013,6,30,7,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1312,84,1,2142,82,1,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,857,50,1,1151,43,1,0 +2013,6,6,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,935,6,0,1130,9,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,9,0,1630,11,0,0 +2013,10,2,3,DL,10140,Albuquerque International Sunport,Albuquerque,NM,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-5,0,1124,-5,0,0 +2013,5,19,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,75,1,1700,74,1,0 +2013,9,25,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,26,1,1940,18,1,0 +2013,10,2,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1430,1,0,1602,-13,0,0 +2013,9,4,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1315,-5,0,2052,11,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,-6,0,2257,-20,0,0 +2013,10,16,3,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,700,-2,0,930,6,0,0 +2013,7,16,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1445,4,0,1811,2,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14570,Reno/Tahoe International,Reno,NV,952,73,1,1137,60,1,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,8,0,2230,2,0,0 +2013,5,15,3,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,819,-3,0,1029,-8,0,0 +2013,7,10,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1350,-3,0,1504,-2,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,745,5,0,1010,4,0,0 +2013,8,9,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1544,2,0,1753,-5,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,18,1,1850,65,1,0 +2013,10,27,7,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,930,-5,0,1212,-12,0,0 +2013,9,18,3,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,1335,-17,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1410,2,0,1655,-9,0,0 +2013,10,12,6,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1223,32,1,1819,26,1,0 +2013,9,10,2,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-1,0,1840,-13,0,0 +2013,6,30,7,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,37,1,2115,10,0,0 +2013,6,26,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,84,1,1710,76,1,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1940,-3,0,2240,-6,0,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1315,0,0,1649,3,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,-1,0,1320,-6,0,0 +2013,5,22,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-7,0,2039,16,1,0 +2013,4,8,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1026,3,0,1310,11,0,0 +2013,5,23,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,0,,1652,0,1,1 +2013,7,31,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,-9,0,2350,2,0,0 +2013,5,18,6,OO,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,807,-11,0,1024,-11,0,0 +2013,4,19,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,749,-5,0,843,-8,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,33,1,2245,18,1,0 +2013,4,6,6,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1145,-3,0,1945,-21,0,0 +2013,7,4,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1034,0,0,1310,-5,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,820,-4,0,925,-14,0,0 +2013,8,6,2,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1728,42,1,2110,31,1,0 +2013,6,2,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1340,-3,0,1450,-2,0,0 +2013,6,25,2,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,19,1,1705,18,1,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1715,-2,0,1755,-10,0,0 +2013,6,4,2,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-5,0,1610,-26,0,0 +2013,7,4,4,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,30,-5,0,602,-16,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1840,-4,0,100,-11,0,0 +2013,10,27,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,-6,0,1733,-11,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1650,56,1,1755,55,1,0 +2013,6,2,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,46,1,1705,46,1,0 +2013,4,29,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,726,0,0,924,12,0,0 +2013,4,3,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1120,4,0,1330,-7,0,0 +2013,4,17,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,915,2,0,1155,8,0,0 +2013,7,14,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1600,-10,0,1725,-18,0,0 +2013,4,23,2,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2105,0,0,544,-8,0,0 +2013,6,8,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,940,-1,0,1119,-2,0,0 +2013,7,7,7,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2052,-5,0,22,-14,0,0 +2013,7,9,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-7,0,2016,7,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1355,-1,0,1521,6,0,0 +2013,4,12,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,619,5,0,752,-8,0,0 +2013,10,17,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,30,-1,0,538,3,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,850,-1,0,1555,-9,0,0 +2013,5,16,4,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,13,0,1255,18,1,0 +2013,7,22,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,2333,30,1,508,183,1,0 +2013,10,6,7,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,956,-8,0,1309,-5,0,0 +2013,5,28,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1455,2,0,1545,-1,0,0 +2013,8,17,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,4,0,2055,-6,0,0 +2013,6,22,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1710,-7,0,1841,-4,0,0 +2013,7,5,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1630,-3,0,1735,-13,0,0 +2013,8,7,3,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1314,18,1,2129,8,0,0 +2013,8,21,3,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-5,0,733,-4,0,0 +2013,7,14,7,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,0,0,2201,-6,0,0 +2013,8,2,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-2,0,2045,-15,0,0 +2013,8,31,6,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2230,-7,0,25,-12,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,955,-3,0,1233,-8,0,0 +2013,4,25,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1240,27,1,1358,38,1,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1747,-1,0,1840,-11,0,0 +2013,9,13,5,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1036,0,0,1242,-10,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1100,-2,0,1630,-13,0,0 +2013,9,29,7,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1236,2,0,1757,8,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1551,3,0,1748,-7,0,0 +2013,4,9,2,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1625,-5,0,34,-10,0,0 +2013,4,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1520,40,1,1645,61,1,0 +2013,9,3,2,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,18,1,801,16,1,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1905,44,1,2025,43,1,0 +2013,5,25,6,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1400,-3,0,2235,-26,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-1,0,1004,-4,0,0 +2013,8,15,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1755,14,0,1850,9,0,0 +2013,4,1,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,-3,0,1247,-2,0,0 +2013,9,19,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1310,3,0,1640,5,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,28,1,2255,22,1,0 +2013,8,22,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,845,-2,0,1425,6,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,820,39,1,1035,32,1,0 +2013,8,27,2,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,700,-4,0,1004,-26,0,0 +2013,9,30,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2115,-3,0,2220,6,0,0 +2013,6,17,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1748,-2,0,2005,0,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,7,0,1819,7,0,0 +2013,7,31,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,627,-3,0,745,-9,0,0 +2013,8,29,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1240,28,1,1400,27,1,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1225,0,0,1430,-1,0,0 +2013,6,29,6,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1706,-2,0,1828,2,0,0 +2013,8,8,4,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,3,0,2102,-3,0,0 +2013,7,23,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-5,0,1915,-8,0,0 +2013,8,4,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,10,0,1540,26,1,0 +2013,9,25,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1220,-3,0,1350,-13,0,0 +2013,10,5,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1315,21,1,1645,17,1,0 +2013,6,8,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-4,0,759,-8,0,0 +2013,4,10,3,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1415,8,0,1615,29,1,0 +2013,4,16,2,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1302,-12,0,1438,-25,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,2055,56,1,2220,37,1,0 +2013,7,15,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1150,-2,0,1847,6,0,0 +2013,8,10,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,905,4,0,1040,1,0,0 +2013,6,27,4,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,97,1,2027,82,1,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1305,0,0,1530,-17,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1955,-3,0,2114,-3,0,0 +2013,4,30,2,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,805,-7,0,1153,-16,0,0 +2013,8,22,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-2,0,1334,-11,0,0 +2013,9,23,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,6,0,1255,6,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-1,0,2300,-1,0,0 +2013,7,3,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,0,,1340,0,1,1 +2013,10,16,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1304,-3,0,1343,5,0,0 +2013,5,16,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1710,3,0,1745,13,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2005,-5,0,2057,-5,0,0 +2013,6,17,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1728,-3,0,2117,20,1,0 +2013,7,14,7,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-3,0,1435,-40,0,0 +2013,7,17,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1557,-8,0,2020,-8,0,0 +2013,4,8,1,EV,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,930,3,0,1230,-5,0,0 +2013,8,2,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1345,24,1,1540,16,1,0 +2013,9,4,3,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,-10,0,1224,2,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1655,-1,0,1800,-4,0,0 +2013,6,17,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1005,0,0,1220,-10,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,-1,0,25,-11,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,32,1,1015,25,1,0 +2013,6,26,3,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,833,5,0,0 +2013,9,3,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-2,0,1856,-16,0,0 +2013,10,31,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1323,-1,0,1553,2,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,814,-1,0,958,-11,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,950,3,0,1720,-11,0,0 +2013,9,22,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,715,-5,0,1015,8,0,0 +2013,8,15,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,5,0,1130,22,1,0 +2013,9,10,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-8,0,1044,-9,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1636,17,1,1827,21,1,0 +2013,8,28,3,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-4,0,1430,-16,0,0 +2013,8,22,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1000,2,0,1157,-3,0,0 +2013,5,31,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1700,54,1,1804,55,1,0 +2013,8,20,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1555,-2,0,1659,-6,0,0 +2013,6,10,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1750,105,1,1815,96,1,0 +2013,7,4,4,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1900,9,0,2139,-30,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1015,-2,0,1315,-3,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2102,7,0,2326,3,0,0 +2013,9,13,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-5,0,1652,-13,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1020,-6,0,1544,-28,0,0 +2013,7,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1355,-4,0,1715,3,0,0 +2013,10,19,6,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1705,-10,0,1802,-8,0,0 +2013,8,27,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1905,-1,0,2025,-13,0,0 +2013,5,3,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,2016,5,0,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,0,0,2250,-2,0,0 +2013,6,17,1,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,730,-3,0,835,-7,0,0 +2013,6,14,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1315,-1,0,1440,-15,0,0 +2013,8,17,6,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1245,-2,0,1808,0,0,0 +2013,5,8,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1245,-2,0,1802,35,1,0 +2013,5,31,5,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1930,42,1,2155,32,1,0 +2013,7,18,4,WN,12191,William P Hobby,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,955,45,1,1055,41,1,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1557,7,0,1918,-10,0,0 +2013,4,16,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,72,1,2137,49,1,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1015,-2,0,1130,-12,0,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2006,-9,0,2103,-20,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1359,23,1,1559,25,1,0 +2013,4,3,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,835,-4,0,1159,-19,0,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1815,38,1,2015,37,1,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,14,0,10,17,1,0 +2013,5,5,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-4,0,1115,-16,0,0 +2013,7,3,3,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,800,4,0,855,-12,0,0 +2013,9,6,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,747,-6,0,901,-27,0,0 +2013,5,25,6,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,34,31,1,502,22,1,0 +2013,9,5,4,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1844,-8,0,2010,-9,0,0 +2013,5,3,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1630,24,1,1922,4,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1120,15,1,1325,-2,0,0 +2013,7,19,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2007,17,1,2140,10,0,0 +2013,7,23,2,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,940,23,1,1212,-5,0,0 +2013,4,12,5,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1920,4,0,40,4,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1045,16,1,1210,5,0,0 +2013,6,2,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1426,99,1,2300,131,1,0 +2013,8,8,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,1325,-19,0,0 +2013,8,22,4,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2209,39,1,615,21,1,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,650,-2,0,1005,-7,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,952,-2,0,1830,14,0,0 +2013,6,13,4,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,7,9,0,605,-13,0,0 +2013,4,11,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-5,0,1423,7,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1805,14,0,1937,26,1,0 +2013,4,23,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2130,32,1,2350,16,1,0 +2013,8,24,6,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1915,31,1,2120,29,1,0 +2013,6,12,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,-8,0,950,-17,0,0 +2013,10,24,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,930,-7,0,1051,-17,0,0 +2013,9,11,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,2,0,2050,10,0,0 +2013,4,18,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1055,6,0,1310,13,0,0 +2013,5,10,5,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1339,0,0,1520,-5,0,0 +2013,8,25,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1835,37,1,2155,21,1,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1345,93,1,1450,99,1,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1150,-1,0,1405,-7,0,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,1,0,1220,-8,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-1,0,1210,-8,0,0 +2013,4,9,2,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,954,-4,0,1220,16,1,0 +2013,9,17,2,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,905,8,0,1440,-7,0,0 +2013,5,13,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,830,12,0,955,14,0,0 +2013,9,6,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1915,-1,0,56,-4,0,0 +2013,9,18,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,710,-1,0,820,-7,0,0 +2013,4,22,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1925,-1,0,2105,-7,0,0 +2013,4,21,7,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1437,0,,1547,0,1,1 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,3,0,2244,8,0,0 +2013,6,25,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,22,1,2111,29,1,0 +2013,5,29,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,4,0,1935,-11,0,0 +2013,10,21,1,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1804,-9,0,1930,-19,0,0 +2013,7,19,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1105,-3,0,1528,-11,0,0 +2013,9,9,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,800,-2,0,910,-12,0,0 +2013,6,20,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1430,-3,0,1610,13,0,0 +2013,8,21,3,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,913,-16,0,1159,-20,0,0 +2013,7,28,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,-6,0,1201,-12,0,0 +2013,8,30,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,56,1,930,48,1,0 +2013,4,25,4,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,1,0,1436,-4,0,0 +2013,8,6,2,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2335,-4,0,700,-18,0,0 +2013,9,1,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,830,4,0,957,-4,0,0 +2013,10,29,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1159,-7,0,1309,-1,0,0 +2013,8,24,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,705,-1,0,925,-4,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1530,-7,0,1700,-12,0,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,170,1,2045,195,1,0 +2013,10,17,4,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-8,0,1815,-15,0,0 +2013,8,10,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,0,0,1524,12,0,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,717,44,1,1159,14,0,0 +2013,5,31,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-5,0,915,-24,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1210,-8,0,1320,-12,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1230,9,0,1501,-8,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-9,0,1642,-6,0,0 +2013,7,13,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,715,-6,0,1030,-17,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2020,1,0,2306,2,0,0 +2013,7,23,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2115,26,1,2235,25,1,0 +2013,4,5,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1227,16,1,1337,1,0,0 +2013,8,28,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1825,23,1,1925,15,1,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,735,-8,0,835,-17,0,0 +2013,4,10,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-5,0,659,-4,0,0 +2013,4,21,7,9E,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,800,28,1,1025,19,1,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,0,0,730,-18,0,0 +2013,10,21,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1810,-2,0,1847,-2,0,0 +2013,6,7,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,-2,0,1933,16,1,0 +2013,6,23,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-4,0,1340,-25,0,0 +2013,9,16,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1007,65,1,1304,59,1,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1906,-3,0,2050,-18,0,0 +2013,5,31,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1130,-4,0,2010,6,0,0 +2013,9,2,1,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1824,-4,0,2026,-11,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,830,19,1,1020,-1,0,0 +2013,7,25,4,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1351,4,0,1910,5,0,0 +2013,9,4,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,14100,Philadelphia International,Philadelphia,PA,1345,-10,0,1730,-17,0,0 +2013,6,25,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,0,0,2125,-10,0,0 +2013,8,10,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,53,1,2135,49,1,0 +2013,6,29,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1545,3,0,1715,-3,0,0 +2013,5,26,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1249,-4,0,1618,-11,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,610,-3,0,910,0,0,0 +2013,7,19,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11618,Newark Liberty International,Newark,NJ,1400,-1,0,1529,62,1,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1100,65,1,1330,44,1,0 +2013,6,8,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-8,0,2355,-6,0,0 +2013,9,19,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,0,0,1200,-5,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,800,-3,0,1100,-4,0,0 +2013,4,25,4,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1955,115,1,2139,119,1,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1555,25,1,1950,33,1,0 +2013,5,1,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1415,83,1,1430,70,1,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,2,0,1804,-3,0,0 +2013,10,6,7,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1215,-7,0,1329,-16,0,0 +2013,4,13,6,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,600,-2,0,921,14,0,0 +2013,7,1,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,59,1,1151,55,1,0 +2013,8,11,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,728,-3,0,1000,-15,0,0 +2013,7,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1310,11,0,1500,-7,0,0 +2013,9,11,3,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1845,103,1,2250,102,1,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,720,0,0,850,-2,0,0 +2013,9,4,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-14,0,2319,-3,0,0 +2013,8,2,5,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,24,1,1150,17,1,0 +2013,6,9,7,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,850,-3,0,1405,-8,0,0 +2013,5,4,6,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1514,17,1,1619,76,1,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1540,9,0,1630,-3,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,2,0,2300,-7,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1355,2,0,1659,36,1,0 +2013,7,20,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-10,0,826,-10,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1735,4,0,2025,-8,0,0 +2013,6,2,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1113,-4,0,1241,-12,0,0 +2013,4,15,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1505,-2,0,1735,13,0,0 +2013,9,7,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,-4,0,2117,0,0,0 +2013,9,20,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,955,1,0,1100,-15,0,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,918,0,0,1204,6,0,0 +2013,8,5,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1018,-3,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,610,-5,0,720,-12,0,0 +2013,6,9,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,2,0,1245,-5,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,841,-4,0,941,-9,0,0 +2013,5,8,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1155,-6,0,1335,-13,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,6,0,1519,5,0,0 +2013,4,11,4,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,39,1,2105,38,1,0 +2013,10,25,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1745,6,0,1840,5,0,0 +2013,10,12,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1214,7,0,1446,5,0,0 +2013,9,8,7,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1405,28,1,2005,34,1,0 +2013,8,26,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1352,49,1,1500,45,1,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2155,2,0,55,-11,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1355,48,1,1503,36,1,0 +2013,9,30,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1855,10,0,1945,2,0,0 +2013,6,29,6,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,3,0,1003,-5,0,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,840,5,0,1139,30,1,0 +2013,8,20,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,840,-8,0,955,-38,0,0 +2013,8,1,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,5,0,1619,7,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1745,11,0,2250,2,0,0 +2013,4,18,4,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,40,1,1140,12,0,0 +2013,6,30,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1105,-2,0,1444,-6,0,0 +2013,10,25,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,-8,0,1427,-9,0,0 +2013,9,9,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,600,-1,0,725,-9,0,0 +2013,5,20,1,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1040,-6,0,1155,25,1,0 +2013,8,27,2,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1715,-3,0,1920,-7,0,0 +2013,7,12,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,0,0,2016,8,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,10,0,2220,12,0,0 +2013,9,9,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,18,1,2250,15,1,0 +2013,7,19,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-1,0,1824,-20,0,0 +2013,9,9,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1650,-3,0,1835,-23,0,0 +2013,9,6,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-7,0,2132,-18,0,0 +2013,10,9,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,545,-4,0,745,2,0,0 +2013,9,30,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1120,83,1,1220,81,1,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,13,0,1835,-12,0,0 +2013,7,19,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,2045,33,1,2140,28,1,0 +2013,9,10,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,1026,-21,0,0 +2013,8,9,5,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1426,-13,0,1646,-12,0,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,853,0,0,1140,-2,0,0 +2013,5,25,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1230,-7,0,1550,-23,0,0 +2013,5,23,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1114,383,1,1235,365,1,0 +2013,6,26,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,650,14,0,720,0,0,0 +2013,10,15,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1117,-7,0,1312,-11,0,0 +2013,6,5,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1859,2,0,2052,1,0,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,700,8,0,825,87,1,0 +2013,8,31,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,-4,0,1458,-22,0,0 +2013,6,22,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,15,1,1351,25,1,0 +2013,7,20,6,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,56,1,2045,56,1,0 +2013,5,13,1,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,-3,0,2045,-4,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,0,0,505,-8,0,0 +2013,9,5,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1750,-5,0,1914,4,0,0 +2013,7,30,2,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1110,15,1,1359,0,0,0 +2013,10,20,7,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2025,-10,0,2142,-16,0,0 +2013,4,4,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1145,-12,0,1404,-7,0,0 +2013,7,10,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,4,0,1255,-8,0,0 +2013,7,31,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,21,1,1354,17,1,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1545,46,1,1839,40,1,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,161,1,2215,159,1,0 +2013,7,15,1,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,10,0,1737,17,1,0 +2013,8,28,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-2,0,1709,-6,0,0 +2013,9,2,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1051,-20,0,0 +2013,5,4,6,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1255,43,1,1440,30,1,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,22,1,1922,37,1,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,840,15,1,1105,73,1,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,-1,0,1335,-13,0,0 +2013,10,17,4,9E,12451,Jacksonville International,Jacksonville,FL,12953,LaGuardia,New York,NY,1125,14,0,1345,-1,0,0 +2013,10,25,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,2020,-3,0,2120,-1,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,610,66,1,905,71,1,0 +2013,10,29,2,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1850,1,0,2005,13,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1810,-4,0,1944,-11,0,0 +2013,5,17,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1623,2,0,1916,-5,0,0 +2013,7,27,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1548,4,0,1828,23,1,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1740,-4,0,1904,-13,0,0 +2013,9,30,1,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,-1,0,1335,-7,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,720,-5,0,1215,-9,0,0 +2013,5,16,4,WN,15376,Tucson International,Tucson,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1005,-8,0,1205,-11,0,0 +2013,8,21,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1230,-5,0,1330,-11,0,0 +2013,10,31,4,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,920,-4,0,1050,-13,0,0 +2013,4,20,6,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,72,1,929,87,1,0 +2013,8,13,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1030,0,0,1245,-7,0,0 +2013,5,5,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1630,-3,0,1923,-31,0,0 +2013,10,1,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1920,-2,0,2040,-6,0,0 +2013,9,8,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,-7,0,1855,-1,0,0 +2013,10,17,4,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1803,12,0,2056,9,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1545,89,1,1850,84,1,0 +2013,5,3,5,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1513,29,1,1626,36,1,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,730,-8,0,1055,-7,0,0 +2013,7,18,4,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,0,,1545,0,1,1 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1000,5,0,1125,-3,0,0 +2013,8,11,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1040,101,1,1201,91,1,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,807,7,0,1631,-8,0,0 +2013,5,5,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-7,0,2100,-19,0,0 +2013,5,7,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,810,-2,0,920,-7,0,0 +2013,8,30,5,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-4,0,758,-14,0,0 +2013,7,11,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1750,6,0,1910,9,0,0 +2013,8,4,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,910,-6,0,1025,-11,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1330,5,0,1810,9,0,0 +2013,7,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1246,-1,0,1655,-21,0,0 +2013,5,17,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1720,-1,0,2137,7,0,0 +2013,5,9,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2210,-7,0,15,8,0,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2155,-5,0,10,-15,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1420,13,0,2015,7,0,0 +2013,7,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-2,0,1145,-3,0,0 +2013,10,24,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,920,3,0,1025,-5,0,0 +2013,4,14,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1810,13,0,2015,-7,0,0 +2013,5,7,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1150,1,0,1430,-10,0,0 +2013,10,15,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,1417,4,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,625,-6,0,1135,-18,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-1,0,805,2,0,0 +2013,8,14,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,221,1,1955,218,1,0 +2013,7,18,4,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1855,51,1,2316,58,1,0 +2013,8,19,1,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,645,-5,0,926,-15,0,0 +2013,4,5,5,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,915,-4,0,1028,-15,0,0 +2013,10,22,2,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1605,-7,0,2353,-20,0,0 +2013,5,7,2,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,800,-5,0,955,-30,0,0 +2013,5,25,6,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1231,-2,0,1554,-6,0,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1505,-4,0,1820,-17,0,0 +2013,8,22,4,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-4,0,1957,-1,0,0 +2013,7,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,-7,0,1648,8,0,0 +2013,8,15,4,DL,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,2235,-7,0,602,-33,0,0 +2013,9,23,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-1,0,1912,-12,0,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1636,71,1,1805,117,1,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,953,3,0,1225,22,1,0 +2013,7,11,4,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1700,-2,0,1842,-14,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1749,0,0,1916,-23,0,0 +2013,8,26,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1250,-1,0,1404,-10,0,0 +2013,8,22,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,0,0,915,4,0,0 +2013,10,9,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,910,-5,0,1015,-16,0,0 +2013,7,24,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1240,82,1,1610,76,1,0 +2013,7,31,3,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1735,51,1,1915,45,1,0 +2013,4,2,2,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,745,-6,0,1100,-22,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1310,4,0,1755,-20,0,0 +2013,9,30,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,0,0,1005,-24,0,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2210,57,1,2300,55,1,0 +2013,8,28,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-6,0,955,-1,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,5,0,2215,1,0,0 +2013,6,16,7,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2235,-4,0,625,-12,0,0 +2013,9,22,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1619,32,1,1919,28,1,0 +2013,9,21,6,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1159,-9,0,1407,-13,0,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,820,-3,0,950,43,1,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2240,-5,0,9,-13,0,0 +2013,8,17,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-4,0,1900,-11,0,0 +2013,6,24,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,730,-5,0,1026,-16,0,0 +2013,5,24,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1655,8,0,2225,7,0,0 +2013,5,14,2,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,828,-6,0,919,14,0,0 +2013,4,10,3,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,858,-8,0,1003,4,0,0 +2013,4,17,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,1,0,1200,-3,0,0 +2013,5,1,3,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1205,-2,0,1820,-11,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,9,0,1450,-2,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,-3,0,930,15,1,0 +2013,8,7,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1938,9,0,130,-5,0,0 +2013,4,26,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,10,0,1650,-19,0,0 +2013,4,16,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,3,0,40,-2,0,0 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,2025,-3,0,2235,-10,0,0 +2013,7,14,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2130,4,0,2255,-1,0,0 +2013,5,23,4,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1305,-4,0,1435,-9,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1135,39,1,1300,33,1,0 +2013,4,13,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1414,-6,0,1600,-13,0,0 +2013,5,26,7,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-1,0,1115,-28,0,0 +2013,6,30,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,-1,0,2103,10,0,0 +2013,7,6,6,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1609,29,1,1804,9,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1430,28,1,1955,8,0,0 +2013,7,10,3,DL,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,612,-5,0,745,-6,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,-2,0,2155,2,0,0 +2013,5,17,5,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1320,0,0,2150,-2,0,0 +2013,9,26,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1934,1,0,2055,7,0,0 +2013,9,3,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,910,-5,0,1130,-10,0,0 +2013,5,27,1,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1825,-10,0,1948,-26,0,0 +2013,9,17,2,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,-3,0,1626,-21,0,0 +2013,10,29,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,829,-4,0,913,-10,0,0 +2013,5,9,4,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1247,-6,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,2211,-6,0,2358,-15,0,0 +2013,5,5,7,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,5,0,1445,4,0,0 +2013,4,10,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,2000,11,0,2125,47,1,0 +2013,4,13,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-7,0,1635,-22,0,0 +2013,8,27,2,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,-5,0,1031,4,0,0 +2013,6,29,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1850,-2,0,2005,-4,0,0 +2013,9,8,7,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,-7,0,2048,-8,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1840,20,1,2155,17,1,0 +2013,6,19,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2205,-1,0,2350,-3,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1845,75,1,1945,74,1,0 +2013,4,26,5,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,911,-7,0,1101,-17,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,22,1,1415,18,1,0 +2013,4,9,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2105,5,0,2226,-2,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,8,0,1420,-3,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,901,-2,0,1343,-17,0,0 +2013,10,25,5,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1203,-2,0,1327,-10,0,0 +2013,7,22,1,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,625,-2,0,725,-9,0,0 +2013,7,31,3,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,-3,0,1230,2,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,650,18,1,911,27,1,0 +2013,8,5,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,-4,0,1815,4,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,825,18,1,1010,9,0,0 +2013,8,30,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,17,1,2020,26,1,0 +2013,10,14,1,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1030,5,0,1530,-1,0,0 +2013,8,10,6,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1659,14,0,1853,7,0,0 +2013,10,18,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,830,2,0,907,26,1,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-2,0,935,-5,0,0 +2013,6,24,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1852,-5,0,1942,-4,0,0 +2013,10,13,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,720,-7,0,1330,-33,0,0 +2013,7,2,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-6,0,1030,7,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1456,5,0,2306,4,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,900,-5,0,1030,-5,0,0 +2013,10,14,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1542,3,0,1702,0,0,0 +2013,4,23,2,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,740,-6,0,1526,-25,0,0 +2013,7,28,7,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1744,176,1,2000,191,1,0 +2013,4,14,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,759,48,1,1258,38,1,0 +2013,6,16,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1420,0,0,1645,4,0,0 +2013,8,21,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-5,0,608,-8,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,1,0,925,1,0,0 +2013,9,27,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,835,2,0,1012,-5,0,0 +2013,5,14,2,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1107,123,1,1340,113,1,0 +2013,7,26,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,910,-2,0,1215,-2,0,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,-4,0,1936,-22,0,0 +2013,7,10,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,601,-3,0,915,-19,0,0 +2013,10,24,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,5,0,2050,2,0,0 +2013,7,21,7,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,745,8,0,817,17,1,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,721,-3,0,1143,-27,0,0 +2013,9,19,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1552,0,,1651,0,1,1 +2013,5,30,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,21,1,2156,21,1,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,830,2,0,1049,-9,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1207,58,1,1404,32,1,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,20,1,1758,14,0,0 +2013,7,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-5,0,1320,-10,0,0 +2013,5,8,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,0,0,830,-7,0,0 +2013,7,16,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,800,-2,0,900,-9,0,0 +2013,5,7,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-10,0,1910,-8,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1725,21,1,1850,2,0,0 +2013,7,8,1,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1527,6,0,1742,-10,0,0 +2013,7,22,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-1,0,900,10,0,0 +2013,7,3,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1015,-2,0,1206,4,0,0 +2013,10,8,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,-3,0,1518,-3,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1650,30,1,2010,7,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1440,9,0,1554,3,0,0 +2013,9,7,6,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,745,0,0,945,-15,0,0 +2013,6,9,7,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,1625,-1,0,1745,-2,0,0 +2013,5,8,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-5,0,1800,-44,0,0 +2013,7,19,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1029,-4,0,1305,-10,0,0 +2013,5,30,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,18,1,1432,11,0,0 +2013,4,3,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,907,10,0,0 +2013,8,2,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1103,-4,0,1241,-3,0,0 +2013,7,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,2030,48,1,2330,47,1,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1750,10,0,2000,9,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1620,-2,0,1845,-16,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,10,0,1640,7,0,0 +2013,4,8,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1359,-3,0,1554,-10,0,0 +2013,10,6,7,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1640,-20,0,0 +2013,8,17,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1902,-13,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,910,0,0,1219,-11,0,0 +2013,9,2,1,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1525,9,0,1655,12,0,0 +2013,6,9,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,-1,0,1731,-24,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,735,9,0,940,5,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1305,10,0,1535,33,1,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,-4,0,2041,-24,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1010,3,0,1215,13,0,0 +2013,5,29,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,905,-6,0,1147,-11,0,0 +2013,10,21,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2035,-6,0,2200,-13,0,0 +2013,7,20,6,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-8,0,1631,-24,0,0 +2013,8,29,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2012,3,0,2323,2,0,0 +2013,8,31,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-6,0,848,-8,0,0 +2013,6,10,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,700,0,,802,0,1,1 +2013,6,1,6,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,600,-3,0,715,-18,0,0 +2013,9,9,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1401,3,0,1640,1,0,0 +2013,8,3,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,122,1,620,105,1,0 +2013,5,25,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1700,-4,0,2039,-16,0,0 +2013,10,10,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1521,-6,0,1610,-7,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,710,40,1,1110,17,1,0 +2013,7,6,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1505,-10,0,1925,-8,0,0 +2013,9,27,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,-3,0,1926,0,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1203,1,0,1330,-2,0,0 +2013,8,27,2,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,937,-9,0,1803,-13,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2125,8,0,2250,3,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,910,12,0,1210,4,0,0 +2013,9,22,7,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,-2,0,1755,-7,0,0 +2013,7,20,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2220,106,1,605,96,1,0 +2013,10,15,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1004,-5,0,1049,-7,0,0 +2013,10,21,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,600,-1,0,705,-9,0,0 +2013,5,24,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1815,-5,0,1945,-12,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2109,-1,0,2218,-11,0,0 +2013,6,30,7,YV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1536,38,1,1540,36,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1405,22,1,1536,23,1,0 +2013,4,30,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,-6,0,1610,-17,0,0 +2013,5,13,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1545,0,0,1826,-32,0,0 +2013,7,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,1,0,1355,-2,0,0 +2013,7,3,3,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1743,-3,0,2014,-23,0,0 +2013,9,25,3,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1845,15,1,1950,23,1,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1315,15,1,1435,15,1,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,5,0,1855,8,0,0 +2013,5,31,5,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,640,-4,0,752,1,0,0 +2013,9,24,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1300,27,1,1450,26,1,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1358,-5,0,1542,2,0,0 +2013,6,6,4,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1735,66,1,1835,59,1,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2110,4,0,2347,-19,0,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1210,-1,0,1315,-7,0,0 +2013,6,28,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1300,8,0,1423,16,1,0 +2013,10,13,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1350,17,1,2010,-19,0,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,735,-7,0,855,-20,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-7,0,935,-4,0,0 +2013,6,24,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,106,1,2135,93,1,0 +2013,10,19,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1410,-3,0,1645,0,0,0 +2013,10,1,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1100,-3,0,1120,-7,0,0 +2013,10,28,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,25,1,1535,21,1,0 +2013,8,16,5,9E,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,-9,0,2308,-30,0,0 +2013,8,24,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,750,-2,0,950,-4,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1040,-3,0,1259,-14,0,0 +2013,7,4,4,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,910,-2,0,1255,-18,0,0 +2013,7,9,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,844,-5,0,1125,2,0,0 +2013,5,19,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,-8,0,1532,-19,0,0 +2013,7,27,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,-8,0,2257,-6,0,0 +2013,10,7,1,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-2,0,845,-20,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1610,0,0,1715,-7,0,0 +2013,7,5,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1600,-11,0,1646,42,1,0 +2013,4,23,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1800,30,1,1920,23,1,0 +2013,8,23,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,829,-8,0,1004,-19,0,0 +2013,5,17,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1800,6,0,2325,16,1,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,-3,0,2243,3,0,0 +2013,5,25,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1120,-1,0,1414,-3,0,0 +2013,8,8,4,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1923,-4,0,2115,-11,0,0 +2013,8,23,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-6,0,831,10,0,0 +2013,8,6,2,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1510,13,0,2050,8,0,0 +2013,4,24,3,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2243,17,1,640,-20,0,0 +2013,7,1,1,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-8,0,2051,18,1,0 +2013,4,11,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-3,0,1310,-13,0,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,645,-2,0,811,-16,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,831,0,0,906,1,0,0 +2013,5,31,5,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,915,0,0,1155,0,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,-1,0,1500,-12,0,0 +2013,8,6,2,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,623,0,0,1034,-23,0,0 +2013,4,12,5,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,720,4,0,835,-3,0,0 +2013,8,28,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1429,8,0,1536,14,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1100,0,0,1310,3,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1245,-3,0,1515,-16,0,0 +2013,8,9,5,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1434,3,0,1607,-5,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,28,1,1745,29,1,0 +2013,9,23,1,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,840,5,0,1050,3,0,0 +2013,5,2,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1328,-9,0,1439,-13,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,820,4,0,930,0,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1205,4,0,1650,-16,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1500,-8,0,1638,-13,0,0 +2013,9,19,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,846,1,0,939,-3,0,0 +2013,10,5,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1330,36,1,1445,36,1,0 +2013,7,16,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2243,-11,0,626,-16,0,0 +2013,9,12,4,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2156,-5,0,2313,-11,0,0 +2013,5,8,3,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,7,0,2057,6,0,0 +2013,4,6,6,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1110,-11,0,1420,-28,0,0 +2013,5,18,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1735,12,0,2028,-4,0,0 +2013,5,14,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1505,1,0,1610,-4,0,0 +2013,8,26,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,826,-24,0,0 +2013,5,20,1,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,820,-4,0,1035,-15,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,34,1,905,14,0,0 +2013,5,25,6,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1315,-3,0,1612,-5,0,0 +2013,8,29,4,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,658,-5,0,910,-12,0,0 +2013,6,6,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,1248,-13,0,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,700,-1,0,830,-2,0,0 +2013,4,4,4,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1635,-5,0,1855,-9,0,0 +2013,8,8,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1135,4,0,1412,-1,0,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1336,234,1,2204,230,1,0 +2013,5,9,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,2020,0,0,2040,3,0,0 +2013,5,9,4,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,-9,0,1912,-10,0,0 +2013,9,28,6,UA,14843,Luis Munoz Marin International,San Juan,PR,12266,George Bush Intercontinental/Houston,Houston,TX,1242,-8,0,1626,-11,0,0 +2013,10,2,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1709,-8,0,1840,-2,0,0 +2013,10,13,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-7,0,1024,4,0,0 +2013,4,29,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1707,-5,0,2115,-8,0,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1111,-2,0,1639,6,0,0 +2013,4,18,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1100,61,1,1420,48,1,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,-4,0,1337,-12,0,0 +2013,7,27,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-2,0,1828,-9,0,0 +2013,4,29,1,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1105,4,0,1235,-10,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2255,-1,0,42,-10,0,0 +2013,9,7,6,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,-4,0,1908,-11,0,0 +2013,10,20,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-6,0,2159,1,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,23,1,1555,21,1,0 +2013,5,26,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1908,16,1,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,955,-1,0,1115,-8,0,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1955,6,0,2125,-3,0,0 +2013,6,4,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,19,1,2100,20,1,0 +2013,10,5,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-5,0,825,-9,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,-4,0,2330,-15,0,0 +2013,9,11,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1017,-5,0,1153,-17,0,0 +2013,4,22,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-13,0,1955,-15,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1045,19,1,1510,31,1,0 +2013,8,8,4,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1200,-10,0,1326,-21,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1920,2,0,2157,12,0,0 +2013,6,8,6,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1617,-14,0,1804,-12,0,0 +2013,5,14,2,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-11,0,1155,-13,0,0 +2013,8,19,1,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2320,16,1,650,5,0,0 +2013,4,24,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2038,-9,0,2200,10,0,0 +2013,5,6,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-7,0,1425,0,0,0 +2013,8,30,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-3,0,1201,-9,0,0 +2013,4,20,6,WN,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,2,0,1140,19,1,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-4,0,735,5,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1030,-2,0,1443,-11,0,0 +2013,10,1,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,843,-7,0,1035,-3,0,0 +2013,10,19,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1640,17,1,1655,14,0,0 +2013,9,9,1,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,855,-2,0,1210,-11,0,0 +2013,10,3,4,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1730,-12,0,1854,-35,0,0 +2013,4,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1955,19,1,2050,25,1,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-2,0,1130,4,0,0 +2013,5,13,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-1,0,1115,-18,0,0 +2013,6,12,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,-6,0,129,-4,0,0 +2013,4,17,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2154,-2,0,2324,-12,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1900,87,1,2358,64,1,0 +2013,6,28,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-3,0,1236,-12,0,0 +2013,8,23,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,6,0,2143,-4,0,0 +2013,7,30,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-4,0,1434,-16,0,0 +2013,5,9,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2145,6,0,32,18,1,0 +2013,6,4,2,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1440,-6,0,2245,-4,0,0 +2013,4,5,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1119,-6,0,1221,9,0,0 +2013,8,30,5,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,5,0,740,-16,0,0 +2013,5,21,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1026,24,1,1459,35,1,0 +2013,6,21,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1345,32,1,1505,32,1,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-6,0,1226,-26,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,925,-1,0,1255,4,0,0 +2013,4,25,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1433,4,0,1600,6,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,-3,0,1150,-12,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1805,8,0,1950,14,0,0 +2013,5,12,7,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1725,2,0,2000,4,0,0 +2013,6,28,5,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1515,117,1,1647,232,1,0 +2013,9,6,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,830,-2,0,950,-1,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1750,-5,0,2129,1,0,0 +2013,6,12,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1442,-3,0,1516,-3,0,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1040,22,1,1300,0,0,0 +2013,9,6,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1807,-2,0,2159,-11,0,0 +2013,6,9,7,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,625,0,0,940,-9,0,0 +2013,4,30,2,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1855,0,0,2148,-2,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1110,-3,0,1215,-7,0,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1935,4,0,2045,1,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,950,-6,0,1342,-23,0,0 +2013,6,6,4,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,-2,0,1025,10,0,0 +2013,5,10,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,812,-4,0,909,-2,0,0 +2013,9,3,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1020,-4,0,1105,-12,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1355,-1,0,1715,-23,0,0 +2013,10,20,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1900,19,1,2025,20,1,0 +2013,9,29,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1630,-5,0,1839,3,0,0 +2013,6,6,4,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,-1,0,2218,-4,0,0 +2013,4,13,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2321,-12,0,514,-33,0,0 +2013,8,31,6,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-1,0,820,-6,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1450,-5,0,1518,-13,0,0 +2013,10,21,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,13,0,1240,-4,0,0 +2013,10,27,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-9,0,1642,4,0,0 +2013,9,23,1,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1615,-4,0,1855,5,0,0 +2013,7,30,2,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,704,-4,0,830,-14,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,2145,14,0,2252,15,1,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,640,-2,0,815,-7,0,0 +2013,5,19,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,-1,0,810,-11,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1300,6,0,1405,11,0,0 +2013,9,15,7,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2005,69,1,2016,54,1,0 +2013,9,10,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-3,0,825,-19,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1440,-2,0,1800,-9,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,0,0,1609,-4,0,0 +2013,7,7,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1420,254,1,1516,256,1,0 +2013,9,15,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-2,0,2014,-12,0,0 +2013,8,2,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,-3,0,1630,-10,0,0 +2013,6,25,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,2025,1,0,2125,-8,0,0 +2013,8,8,4,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,930,67,1,1745,84,1,0 +2013,6,1,6,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1007,8,0,1300,-19,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,-1,0,1955,-9,0,0 +2013,4,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,-2,0,900,-3,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1640,13,0,1750,2,0,0 +2013,9,28,6,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1314,-5,0,1533,-20,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,920,23,1,1225,7,0,0 +2013,7,6,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-4,0,815,-4,0,0 +2013,10,21,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,840,5,0,1005,17,1,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1540,-4,0,1655,-4,0,0 +2013,6,2,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,3,0,904,-3,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1610,31,1,1935,12,0,0 +2013,5,19,7,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1239,7,0,1405,2,0,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1357,68,1,1531,63,1,0 +2013,7,19,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-16,0,1129,-15,0,0 +2013,7,26,5,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,-7,0,2342,-6,0,0 +2013,10,14,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-6,0,626,1,0,0 +2013,7,23,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,26,1,1505,14,0,0 +2013,10,15,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1150,30,1,1305,26,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1210,0,0,1316,-12,0,0 +2013,10,22,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1810,-1,0,1918,-13,0,0 +2013,7,12,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1246,20,1,1510,16,1,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,23,1,1131,24,1,0 +2013,8,10,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-8,0,1400,-6,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,-1,0,1140,-2,0,0 +2013,9,18,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1506,-1,0,1835,-14,0,0 +2013,4,1,1,EV,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,930,14,0,1230,2,0,0 +2013,10,21,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-7,0,604,-10,0,0 +2013,4,30,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-6,0,1202,-40,0,0 +2013,4,17,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1035,0,0,1332,-16,0,0 +2013,7,22,1,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-7,0,2257,-10,0,0 +2013,6,30,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2350,26,1,748,34,1,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,18,1,1020,7,0,0 +2013,9,1,7,OO,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-9,0,743,-6,0,0 +2013,9,2,1,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,237,1,2052,216,1,0 +2013,9,26,4,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-3,0,1032,-21,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,-2,0,1955,-21,0,0 +2013,6,29,6,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,756,15,1,1106,-3,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2210,0,0,5,-3,0,0 +2013,5,2,4,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1955,15,1,2125,4,0,0 +2013,6,3,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1008,15,1,1152,19,1,0 +2013,5,18,6,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1900,-2,0,2005,-8,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1715,0,0,1840,-8,0,0 +2013,6,26,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1346,-2,0,1705,-3,0,0 +2013,8,27,2,WN,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,13,0,1400,-25,0,0 +2013,5,10,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,34,1,1715,81,1,0 +2013,9,10,2,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,-9,0,2040,-11,0,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,3,0,1210,-9,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1807,-2,0,2120,23,1,0 +2013,4,5,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1600,-4,0,1745,-18,0,0 +2013,7,5,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1411,53,1,1702,58,1,0 +2013,4,18,4,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,22,1,1901,7,0,0 +2013,9,11,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1155,-7,0,1245,-24,0,0 +2013,6,16,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1215,-2,0,1315,-6,0,0 +2013,9,4,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-9,0,1905,-21,0,0 +2013,7,2,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,359,1,1155,388,1,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,710,4,0,921,-9,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,82,1,1830,76,1,0 +2013,9,30,1,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1707,-1,0,1830,-10,0,0 +2013,6,24,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1533,237,1,1710,245,1,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,850,1,0,1003,-6,0,0 +2013,9,15,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,900,-2,0,1700,0,0,0 +2013,5,2,4,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,920,-6,0,1215,-10,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1135,3,0,1450,-5,0,0 +2013,7,23,2,DL,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1925,16,1,2055,7,0,0 +2013,7,17,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1935,-7,0,2058,-18,0,0 +2013,10,22,2,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,621,-9,0,759,-38,0,0 +2013,8,12,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,-4,0,1810,-10,0,0 +2013,5,20,1,9E,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,36,1,1609,23,1,0 +2013,4,21,7,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,-4,0,2148,-5,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-2,0,1809,-3,0,0 +2013,9,26,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-1,0,1320,-6,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,-8,0,453,-11,0,0 +2013,6,8,6,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1417,0,0,1607,-3,0,0 +2013,9,6,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1514,-1,0,1735,-17,0,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1455,-2,0,2157,4,0,0 +2013,4,11,4,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,61,1,1923,73,1,0 +2013,9,16,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,13,0,1515,19,1,0 +2013,5,22,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1325,19,1,1425,17,1,0 +2013,9,30,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1558,4,0,1856,-20,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,3,0,2210,-11,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-4,0,1830,-15,0,0 +2013,10,25,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1653,6,0,2005,21,1,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-4,0,1650,-9,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-2,0,1326,1,0,0 +2013,7,15,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-1,0,1540,-32,0,0 +2013,4,17,3,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1438,-4,0,1610,-12,0,0 +2013,8,17,6,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,630,-1,0,920,-9,0,0 +2013,8,25,7,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,845,-7,0,1125,-14,0,0 +2013,7,25,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,1,0,1235,-1,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,700,-6,0,1040,-9,0,0 +2013,5,6,1,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1525,8,0,1857,-5,0,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1335,-6,0,1526,-12,0,0 +2013,7,23,2,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1855,14,0,1915,3,0,0 +2013,8,25,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-3,0,1853,-30,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,855,42,1,921,37,1,0 +2013,5,4,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,705,-1,0,1109,21,1,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1655,3,0,1800,-7,0,0 +2013,10,6,7,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,700,1,0,927,-13,0,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1840,-1,0,2215,-1,0,0 +2013,4,5,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,745,4,0,902,7,0,0 +2013,4,24,3,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,635,0,0,830,-1,0,0 +2013,8,1,4,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,530,-1,0,840,-8,0,0 +2013,9,26,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,32,1,1626,26,1,0 +2013,8,19,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1244,-2,0,1426,-10,0,0 +2013,10,10,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-6,0,1928,9,0,0 +2013,10,30,3,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,3,0,1943,-10,0,0 +2013,7,14,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,10,0,2159,-26,0,0 +2013,10,9,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2020,-8,0,2225,1,0,0 +2013,7,12,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1940,-1,0,2050,-5,0,0 +2013,6,4,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-6,0,1130,5,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1410,-4,0,1725,-18,0,0 +2013,4,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,-2,0,1839,-13,0,0 +2013,6,14,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,705,0,0,830,-9,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1212,3,0,1309,-8,0,0 +2013,10,27,7,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2245,12,0,651,10,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,3,0,2059,-8,0,0 +2013,8,25,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1714,-4,0,2324,-2,0,0 +2013,5,31,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1655,4,0,1820,0,0,0 +2013,5,24,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1308,108,1,1413,110,1,0 +2013,6,13,4,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,722,110,1,923,110,1,0 +2013,9,10,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1110,-2,0,1239,-4,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1209,25,1,1248,17,1,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1525,6,0,1635,7,0,0 +2013,8,20,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1330,0,0,1618,-7,0,0 +2013,6,21,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1559,15,1,1828,-5,0,0 +2013,9,12,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,555,-11,0,753,-12,0,0 +2013,8,3,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1520,4,0,1635,1,0,0 +2013,8,11,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,50,1,2120,32,1,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,-4,0,1450,-22,0,0 +2013,7,16,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1212,-4,0,1314,-16,0,0 +2013,5,23,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,700,4,0,920,-22,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1351,0,0,1519,-7,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1500,158,1,1728,165,1,0 +2013,10,29,2,OO,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1005,4,0,1207,7,0,0 +2013,8,12,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1351,21,1,1459,32,1,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,6,0,1615,-19,0,0 +2013,8,4,7,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-6,0,1405,-14,0,0 +2013,10,20,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-6,0,1552,-6,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,3,0,1949,10,0,0 +2013,6,13,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,121,1,2140,123,1,0 +2013,8,8,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,32,1,929,33,1,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-5,0,1016,-9,0,0 +2013,7,4,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-1,0,1119,-8,0,0 +2013,7,6,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,0,,2330,0,1,1 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,1,0,2321,-13,0,0 +2013,7,10,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,3,0,1325,3,0,0 +2013,9,22,7,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2124,-8,0,2337,-25,0,0 +2013,6,3,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2255,-4,0,4,-13,0,0 +2013,5,31,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,6,0,1015,7,0,0 +2013,9,30,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1605,83,1,1805,71,1,0 +2013,7,5,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-4,0,1820,-21,0,0 +2013,4,14,7,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1529,-8,0,1648,-13,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,2119,8,0,2225,-6,0,0 +2013,5,26,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1738,-7,0,1901,-10,0,0 +2013,9,25,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,11,0,1340,-4,0,0 +2013,6,18,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1606,53,1,1744,41,1,0 +2013,7,16,2,EV,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,635,-3,0,748,-13,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,850,16,1,1245,18,1,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1205,-7,0,1451,-19,0,0 +2013,4,30,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,930,10,0,1810,0,0,0 +2013,7,23,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,30,1,1521,20,1,0 +2013,4,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,605,6,0,735,13,0,0 +2013,7,5,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,825,9,0,1010,3,0,0 +2013,4,18,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-3,0,1747,-11,0,0 +2013,8,30,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,-4,0,1355,-5,0,0 +2013,4,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,9,0,1150,5,0,0 +2013,5,14,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,0,0,2030,-9,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,-7,0,938,-10,0,0 +2013,6,14,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,-3,0,2215,-16,0,0 +2013,8,9,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1528,-6,0,1721,-17,0,0 +2013,4,8,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,-5,0,1655,-8,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-7,0,1150,-4,0,0 +2013,5,18,6,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,645,-2,0,753,-16,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2150,103,1,2355,95,1,0 +2013,4,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-3,0,1250,-1,0,0 +2013,5,30,4,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,-12,0,2203,-18,0,0 +2013,7,30,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,705,9,0,816,-4,0,0 +2013,10,26,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,835,-2,0,1041,-9,0,0 +2013,4,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1320,2,0,1725,-2,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,24,1,10,18,1,0 +2013,10,15,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1022,17,1,1146,2,0,0 +2013,4,19,5,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1856,51,1,1955,45,1,0 +2013,10,22,2,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-5,0,1913,-12,0,0 +2013,6,8,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,740,1,0,910,-18,0,0 +2013,6,13,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1459,-2,0,1758,15,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1410,-2,0,1500,0,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,915,3,0,1010,7,0,0 +2013,4,20,6,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1210,28,1,1305,54,1,0 +2013,9,17,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,700,27,1,840,25,1,0 +2013,4,16,2,OO,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,918,8,0,1039,31,1,0 +2013,10,23,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1617,-2,0,1755,-4,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2205,85,1,2349,59,1,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1253,8,0,1730,4,0,0 +2013,8,30,5,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,630,3,0,720,-3,0,0 +2013,4,11,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1855,12,0,2140,-3,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,740,2,0,1310,-10,0,0 +2013,6,27,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,13,0,1045,12,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1015,1,0,1210,-2,0,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,-1,0,1325,0,0,0 +2013,10,31,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-1,0,1836,-7,0,0 +2013,6,28,5,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,136,1,1645,280,1,0 +2013,9,10,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,957,-6,0,1053,-8,0,0 +2013,5,5,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,935,-7,0,1041,-2,0,0 +2013,10,16,3,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,835,-8,0,1028,-19,0,0 +2013,8,16,5,HA,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-3,0,1945,13,0,0 +2013,8,22,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1125,-3,0,1334,-18,0,0 +2013,10,15,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1015,-5,0,1230,-5,0,0 +2013,10,28,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,810,-16,0,0 +2013,7,20,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1400,47,1,1656,46,1,0 +2013,8,29,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2150,77,1,2334,61,1,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1803,19,1,2059,4,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2045,23,1,2140,10,0,0 +2013,8,23,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-2,0,1030,-19,0,0 +2013,5,17,5,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,756,-10,0,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1440,0,0,1701,0,0,0 +2013,9,12,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1130,17,1,1354,12,0,0 +2013,10,25,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,840,-3,0,1013,-3,0,0 +2013,7,1,1,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1200,6,0,1624,3,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1946,-5,0,2110,-9,0,0 +2013,5,21,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1950,14,0,2050,6,0,0 +2013,4,6,6,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1230,-4,0,1512,6,0,0 +2013,8,1,4,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1000,-2,0,1245,8,0,0 +2013,5,11,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1045,-3,0,1245,-16,0,0 +2013,5,12,7,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-6,0,1806,3,0,0 +2013,8,25,7,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2015,30,1,2345,9,0,0 +2013,4,12,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1730,49,1,1859,39,1,0 +2013,9,2,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,36,1,1558,36,1,0 +2013,4,22,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1008,-5,0,1200,-5,0,0 +2013,7,1,1,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,718,5,0,1038,10,0,0 +2013,8,20,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1415,6,0,1625,-1,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2112,0,0,2232,-7,0,0 +2013,8,21,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1120,29,1,1435,39,1,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,910,12,0,1029,16,1,0 +2013,4,15,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,1,0,845,6,0,0 +2013,8,17,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,36,1,1225,41,1,0 +2013,5,3,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,2003,0,0,2108,1,0,0 +2013,8,21,3,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2310,-1,0,740,4,0,0 +2013,7,8,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1559,-14,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,62,1,1800,54,1,0 +2013,10,19,6,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1015,-1,0,1610,-13,0,0 +2013,6,7,5,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1130,-6,0,1240,-1,0,0 +2013,6,18,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1115,-6,0,1459,-13,0,0 +2013,10,29,2,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-12,0,1115,-17,0,0 +2013,5,6,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-2,0,1826,37,1,0 +2013,7,15,1,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-8,0,1455,7,0,0 +2013,5,10,5,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,829,3,0,1359,-5,0,0 +2013,5,24,5,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,724,0,0,931,-17,0,0 +2013,7,27,6,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,-6,0,1913,-14,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1756,15,1,1925,-3,0,0 +2013,4,26,5,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1900,-6,0,2210,-10,0,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1332,-6,0,1402,-18,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,2150,-2,0,2339,-7,0,0 +2013,6,5,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-12,0,945,-5,0,0 +2013,10,14,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1417,-13,0,1523,-9,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1224,0,0,1339,-20,0,0 +2013,10,14,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1344,0,0,1449,-8,0,0 +2013,10,25,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,645,13,0,755,7,0,0 +2013,10,11,5,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,700,81,1,1049,74,1,0 +2013,4,30,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,900,-6,0,1215,-22,0,0 +2013,8,12,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1009,-4,0,1143,-25,0,0 +2013,9,29,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1405,-2,0,1415,-7,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1525,11,0,1720,-4,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1210,-6,0,1515,-28,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,938,16,1,1030,25,1,0 +2013,8,4,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,8,0,2205,1,0,0 +2013,5,10,5,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1008,-14,0,1139,-23,0,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1440,0,0,1715,-14,0,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,0,0,1705,-6,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1415,68,1,1635,48,1,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1725,131,1,2015,134,1,0 +2013,4,30,2,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,-3,0,1508,-4,0,0 +2013,9,25,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1100,7,0,1408,-14,0,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,6,0,1930,-5,0,0 +2013,5,13,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1124,-13,0,0 +2013,7,21,7,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-8,0,1036,-6,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1135,0,,1605,0,1,1 +2013,7,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,600,7,0,1155,-2,0,0 +2013,9,24,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1339,-6,0,1450,-16,0,0 +2013,4,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,730,-7,0,1141,0,0,0 +2013,7,16,2,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1144,0,0,1316,-4,0,0 +2013,9,1,7,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1026,-2,0,1206,-19,0,0 +2013,10,27,7,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1805,-2,0,1926,-22,0,0 +2013,5,16,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,1650,-2,0,1801,4,0,0 +2013,7,24,3,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-6,0,2047,-10,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,-1,0,1050,0,0,0 +2013,10,19,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1240,3,0,1415,-9,0,0 +2013,10,23,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-6,0,938,0,0,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1050,18,1,1715,12,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,915,-1,0,1049,-11,0,0 +2013,6,23,7,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1945,16,1,2130,7,0,0 +2013,9,19,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2010,-9,0,2115,0,1,1 +2013,8,18,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1630,15,1,1825,9,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,29,25,1,600,14,0,0 +2013,5,16,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,900,0,0,1047,-1,0,0 +2013,5,3,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1436,-6,0,1821,-22,0,0 +2013,4,12,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1825,-9,0,1929,-13,0,0 +2013,6,16,7,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1235,19,1,1811,28,1,0 +2013,5,3,5,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1256,48,1,1531,48,1,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,0,0,734,-5,0,0 +2013,6,4,2,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2235,-5,0,623,-16,0,0 +2013,7,14,7,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-6,0,1639,-33,0,0 +2013,5,2,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1540,-3,0,1640,-25,0,0 +2013,5,31,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-7,0,1007,-7,0,0 +2013,5,23,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1121,334,1,1322,321,1,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,2010,25,1,2115,22,1,0 +2013,7,11,4,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1114,-3,0,1244,-8,0,0 +2013,10,8,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,-2,0,1850,-17,0,0 +2013,8,19,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-9,0,1645,-15,0,0 +2013,10,31,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1850,59,1,2050,67,1,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2040,-2,0,2340,-10,0,0 +2013,10,26,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,42,1,1635,19,1,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1714,-3,0,2053,-7,0,0 +2013,9,2,1,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1748,-8,0,2110,-7,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,47,1,2115,32,1,0 +2013,8,20,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,715,4,0,0 +2013,7,29,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,-4,0,2126,0,0,0 +2013,6,20,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,1,0,1500,-9,0,0 +2013,7,30,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1105,-2,0,1110,-5,0,0 +2013,8,12,1,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,0,0,940,-12,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,-4,0,1150,-11,0,0 +2013,8,18,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11066,Port Columbus International,Columbus,OH,1747,-1,0,1848,-11,0,0 +2013,8,29,4,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,650,-5,0,940,-8,0,0 +2013,4,20,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,34,1,1930,47,1,0 +2013,4,27,6,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1310,-8,0,1510,-25,0,0 +2013,4,6,6,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1525,6,0,1735,-5,0,0 +2013,6,12,3,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,810,-7,0,1032,5,0,0 +2013,6,9,7,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,1,0,1750,-1,0,0 +2013,7,28,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,630,-6,0,930,-18,0,0 +2013,8,22,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1325,-7,0,1605,-1,0,0 +2013,5,11,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,22,1,1924,34,1,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1230,23,1,1340,16,1,0 +2013,8,6,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1500,-8,0,1546,-10,0,0 +2013,7,24,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,605,-3,0,1020,8,0,0 +2013,5,18,6,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,59,-9,0,805,2,0,0 +2013,4,14,7,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,5,0,2322,-1,0,0 +2013,6,12,3,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1140,11,0,1451,-3,0,0 +2013,4,26,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-2,0,2024,-2,0,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1125,0,0,1230,3,0,0 +2013,5,2,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,-7,0,1210,-13,0,0 +2013,4,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1925,31,1,2025,27,1,0 +2013,7,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,910,106,1,1731,100,1,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1514,17,1,1858,2,0,0 +2013,5,13,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,925,-7,0,1053,-3,0,0 +2013,6,16,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,15,1,2030,4,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1845,22,1,1950,23,1,0 +2013,6,20,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1440,5,0,1755,-6,0,0 +2013,4,16,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,2125,9,0,2250,-1,0,0 +2013,10,21,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-7,0,814,-19,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,-2,0,2146,-27,0,0 +2013,10,24,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,615,-1,0,720,-10,0,0 +2013,9,25,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,735,-2,0,825,5,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,28,1,1600,23,1,0 +2013,7,11,4,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,13,0,900,-6,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,19,1,1550,26,1,0 +2013,6,11,2,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-10,0,1140,-3,0,0 +2013,5,21,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,800,-11,0,0 +2013,8,30,5,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,1,0,805,-5,0,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1920,0,0,2022,-9,0,0 +2013,4,18,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1915,92,1,2244,80,1,0 +2013,5,14,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1230,45,1,1545,51,1,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1758,-8,0,2025,-48,0,0 +2013,5,28,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,-5,0,1235,-4,0,0 +2013,4,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2220,-7,0,3,-6,0,0 +2013,10,12,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1002,-9,0,0 +2013,7,16,2,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1413,-7,0,1813,-12,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,600,1,0,740,-5,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1130,0,0,1315,2,0,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,855,-6,0,1330,13,0,0 +2013,6,5,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1940,-8,0,2034,-14,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1915,16,1,2048,9,0,0 +2013,5,3,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,8,0,1205,-5,0,0 +2013,10,12,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-7,0,635,-6,0,0 +2013,6,25,2,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1550,77,1,1805,91,1,0 +2013,10,19,6,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,905,1,0,1219,0,0,0 +2013,4,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,-4,0,1154,-11,0,0 +2013,4,2,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1100,-2,0,1245,-11,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,6,0,2158,-2,0,0 +2013,8,16,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,24,1,1015,2,0,0 +2013,5,18,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1704,-2,0,2110,11,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2211,-5,0,2359,3,0,0 +2013,9,21,6,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1119,41,1,1308,41,1,0 +2013,10,28,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1700,47,1,1838,44,1,0 +2013,4,14,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1033,0,,1319,0,1,1 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2256,-3,0,2303,1,0,0 +2013,10,15,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1508,-3,0,1625,-13,0,0 +2013,5,20,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1240,13,0,1410,8,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1635,28,1,1745,28,1,0 +2013,4,28,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-4,0,1903,-13,0,0 +2013,9,3,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,-8,0,1251,-23,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,11,0,2250,8,0,0 +2013,4,29,1,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1326,65,1,1455,79,1,0 +2013,6,23,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,-4,0,2147,3,0,0 +2013,9,13,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,0,0,2100,-6,0,0 +2013,4,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,704,22,1,830,26,1,0 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,845,1,0,1010,-13,0,0 +2013,4,19,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,620,0,0,907,-20,0,0 +2013,4,12,5,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1650,19,1,1805,16,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1754,19,1,1933,3,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,0,0,1102,6,0,0 +2013,6,5,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1300,-1,0,1425,-10,0,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1827,63,1,2200,47,1,0 +2013,5,18,6,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,830,10,0,950,-5,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,2140,12,0,2300,13,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1030,-5,0,1445,-16,0,0 +2013,5,18,6,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,-6,0,1940,-30,0,0 +2013,5,11,6,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1901,-3,0,1949,-16,0,0 +2013,4,14,7,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1445,-8,0,1753,-21,0,0 +2013,7,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1135,-6,0,1240,-5,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1602,-3,0,1715,-4,0,0 +2013,7,21,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-7,0,845,-10,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2030,1,0,2215,-12,0,0 +2013,4,26,5,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,0,0,1805,-8,0,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1222,17,1,1347,26,1,0 +2013,7,29,1,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,815,-6,0,1110,-27,0,0 +2013,10,26,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1510,2,0,1615,-10,0,0 +2013,8,5,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,3,0,1425,-4,0,0 +2013,7,11,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1155,-4,0,1525,-3,0,0 +2013,5,10,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1215,-3,0,1320,-2,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1814,-2,0,1836,5,0,0 +2013,10,25,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1801,-8,0,2052,-3,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,605,-2,0,735,3,0,0 +2013,7,3,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-8,0,2255,-7,0,0 +2013,9,11,3,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,-1,0,1435,-1,0,0 +2013,8,19,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,-3,0,1615,-2,0,0 +2013,8,27,2,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1308,-6,0,2037,5,0,0 +2013,4,2,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1155,-2,0,1320,-11,0,0 +2013,8,22,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1705,10,0,1835,1,0,0 +2013,7,21,7,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,619,-8,0,727,-16,0,0 +2013,4,5,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,1,0,1002,-21,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1735,8,0,2220,2,0,0 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,843,-3,0,957,-3,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2205,-1,0,2,6,0,0 +2013,6,8,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1430,19,1,1530,3,0,0 +2013,8,23,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,630,-9,0,700,-19,0,0 +2013,4,23,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2018,-8,0,2120,-17,0,0 +2013,4,9,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,-7,0,1155,7,0,0 +2013,4,17,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1551,93,1,2355,122,1,0 +2013,8,2,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,910,19,1,1035,26,1,0 +2013,5,3,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,605,8,0,725,4,0,0 +2013,6,25,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,920,-8,0,1211,0,0,0 +2013,7,22,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-6,0,1559,-8,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1530,-4,0,1835,-11,0,0 +2013,9,17,2,EV,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1315,28,1,1516,21,1,0 +2013,5,21,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,7,0,1007,7,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,729,-4,0,845,-12,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,121,1,2110,85,1,0 +2013,9,14,6,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,905,-2,0,1019,-4,0,0 +2013,4,20,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1020,3,0,1314,-4,0,0 +2013,6,5,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-8,0,853,-17,0,0 +2013,5,6,1,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1325,-8,0,1615,-8,0,0 +2013,5,17,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,955,-8,0,1310,-19,0,0 +2013,9,6,5,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1140,0,0,1725,0,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,51,1,2245,49,1,0 +2013,7,26,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,10,0,2056,1,0,0 +2013,10,24,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,-5,0,505,-12,0,0 +2013,7,9,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1550,1,0,1700,5,0,0 +2013,10,6,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1816,-10,0,2108,-19,0,0 +2013,7,31,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-5,0,1040,-9,0,0 +2013,5,17,5,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1329,-3,0,1526,-4,0,0 +2013,9,30,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1115,-3,0,1319,-14,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,5,0,920,12,0,0 +2013,6,13,4,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1650,85,1,1815,139,1,0 +2013,4,9,2,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,615,-1,0,730,-23,0,0 +2013,7,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1400,8,0,1514,21,1,0 +2013,10,25,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,705,-4,0,1000,-15,0,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-2,0,1105,-10,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1735,-1,0,1840,60,1,0 +2013,6,20,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,815,-6,0,935,-5,0,0 +2013,6,17,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1401,-3,0,1451,-14,0,0 +2013,10,13,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,-7,0,2050,-4,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1448,-3,0,1610,-4,0,0 +2013,5,28,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1051,120,1,1145,108,1,0 +2013,6,26,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-2,0,1829,-12,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1342,3,0,1531,-10,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1440,-6,0,1750,-26,0,0 +2013,5,11,6,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1235,-9,0,1503,-13,0,0 +2013,7,8,1,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2000,17,1,2130,2,0,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,640,42,1,750,54,1,0 +2013,6,2,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,-7,0,1843,-19,0,0 +2013,4,5,5,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1111,3,0,1312,0,0,0 +2013,6,1,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,810,9,0,1104,6,0,0 +2013,6,18,2,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,900,0,0,1006,-1,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,-1,0,1525,-7,0,0 +2013,5,27,1,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1210,-1,0,1515,-13,0,0 +2013,7,14,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1311,20,1,1525,31,1,0 +2013,4,26,5,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2050,42,1,2110,35,1,0 +2013,8,30,5,EV,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-3,0,1530,-3,0,0 +2013,4,3,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,0,0,1240,-13,0,0 +2013,8,4,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2035,-4,0,2202,-12,0,0 +2013,9,10,2,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1050,25,1,1235,11,0,0 +2013,4,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1938,-2,0,2148,1,0,0 +2013,10,26,6,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1305,13,0,1405,14,0,0 +2013,7,21,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-6,0,1216,-10,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,54,1,1040,47,1,0 +2013,6,21,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-5,0,1820,-18,0,0 +2013,4,19,5,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,821,2,0,1030,0,0,0 +2013,8,25,7,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1535,-8,0,1720,-20,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,6,0,55,-3,0,0 +2013,6,20,4,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1722,-8,0,2044,-14,0,0 +2013,4,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1010,-1,0,1240,-6,0,0 +2013,8,31,6,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1134,-17,0,1357,-23,0,0 +2013,4,8,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,625,-3,0,940,-7,0,0 +2013,6,3,1,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,2035,67,1,2330,62,1,0 +2013,4,11,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-2,0,1413,-2,0,0 +2013,7,14,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1745,5,0,1900,-10,0,0 +2013,5,24,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,-5,0,910,-15,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14893,Sacramento International,Sacramento,CA,2015,0,0,2229,0,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1815,6,0,1910,-1,0,0 +2013,6,23,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-4,0,830,8,0,0 +2013,6,4,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,-1,0,1655,-1,0,0 +2013,10,16,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,16,1,1055,2,0,0 +2013,5,12,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1725,17,1,1941,29,1,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-3,0,25,0,0,0 +2013,6,24,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1535,1,0,2105,39,1,0 +2013,4,30,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1915,-10,0,2210,-21,0,0 +2013,10,6,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-4,0,1015,-14,0,0 +2013,10,18,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2125,-6,0,148,-27,0,0 +2013,9,30,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,841,-7,0,1440,0,1,1 +2013,8,17,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1010,-3,0,1135,6,0,0 +2013,4,4,4,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1051,-9,0,1220,-16,0,0 +2013,8,18,7,F9,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1605,-3,0,2155,20,1,0 +2013,7,2,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1045,-5,0,1301,-1,0,0 +2013,9,20,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,11,0,2201,-7,0,0 +2013,4,4,4,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-11,0,714,-2,0,0 +2013,10,18,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1612,-3,0,1811,2,0,0 +2013,10,20,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-11,0,2135,-9,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-7,0,1055,19,1,0 +2013,10,31,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,845,-5,0,1200,-1,0,0 +2013,7,5,5,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-5,0,1724,-5,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1155,6,0,1855,-9,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1915,-5,0,2225,-11,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1514,16,1,1649,6,0,0 +2013,7,20,6,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,1,0,2058,-25,0,0 +2013,4,4,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,10,0,1930,1,0,0 +2013,4,24,3,9E,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1015,-14,0,1205,-30,0,0 +2013,10,15,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1135,66,1,1450,45,1,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,1,0,1445,0,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1105,1,0,1323,22,1,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1010,17,1,1420,-9,0,0 +2013,7,26,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,815,-4,0,1035,17,1,0 +2013,4,2,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1000,-4,0,1251,-18,0,0 +2013,5,6,1,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,2,0,1405,-13,0,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,9,0,925,30,1,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,6,0,1830,-5,0,0 +2013,8,21,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1721,10,0,1836,3,0,0 +2013,5,5,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1005,0,0,1125,-14,0,0 +2013,8,3,6,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1651,62,1,1831,64,1,0 +2013,8,19,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,2,0,1340,11,0,0 +2013,9,15,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,2006,-1,0,2344,-9,0,0 +2013,10,11,5,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,700,-1,0,930,-11,0,0 +2013,4,20,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1010,-3,0,1245,-29,0,0 +2013,7,20,6,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1040,0,0,1220,-3,0,0 +2013,7,11,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1136,-1,0,1307,-14,0,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,1,0,2025,-4,0,0 +2013,8,22,4,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,1000,-4,0,1754,-4,0,0 +2013,5,25,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-6,0,1127,-14,0,0 +2013,10,10,4,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1545,0,0,1705,8,0,0 +2013,8,18,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,723,-4,0,805,-4,0,0 +2013,5,6,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,853,5,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1720,0,0,1856,-20,0,0 +2013,7,12,5,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1947,-2,0,2030,-16,0,0 +2013,5,13,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1210,10,0,1230,29,1,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-5,0,1351,-9,0,0 +2013,8,6,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,810,-7,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,745,0,0,900,2,0,0 +2013,9,10,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,650,-13,0,1247,-13,0,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,7,0,2331,-18,0,0 +2013,10,27,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1100,-3,0,1200,4,0,0 +2013,7,5,5,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2350,-6,0,548,-11,0,0 +2013,8,16,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,7,0,1112,9,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,835,16,1,1030,24,1,0 +2013,4,21,7,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-2,0,1131,-21,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1045,-5,0,1420,14,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-2,0,1120,-17,0,0 +2013,10,23,3,UA,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1005,-5,0,1135,-6,0,0 +2013,5,30,4,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1031,0,0,1556,-13,0,0 +2013,10,27,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,600,0,0,1430,-22,0,0 +2013,6,29,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,615,8,0,930,-5,0,0 +2013,9,15,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2245,10,0,122,9,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,1,0,2205,6,0,0 +2013,10,11,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1700,18,1,1855,7,0,0 +2013,8,2,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,79,1,2125,66,1,0 +2013,9,30,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,710,-3,0,810,-11,0,0 +2013,10,9,3,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,620,0,0,850,-4,0,0 +2013,4,4,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2000,-4,0,2115,-6,0,0 +2013,8,16,5,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1252,6,0,1331,11,0,0 +2013,5,22,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1532,3,0,1705,-13,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1605,0,0,1740,-3,0,0 +2013,4,4,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,605,-7,0,735,20,1,0 +2013,8,10,6,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1034,0,0,1226,-8,0,0 +2013,7,18,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,950,3,0,1040,3,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,37,1,1310,29,1,0 +2013,7,22,1,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-5,0,1025,-23,0,0 +2013,8,21,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-2,0,1040,-19,0,0 +2013,7,3,3,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,730,-4,0,933,-6,0,0 +2013,6,1,6,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,755,-2,0,925,13,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1355,-2,0,1640,50,1,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,2,0,1945,-25,0,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1205,-6,0,1310,-11,0,0 +2013,8,25,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1050,-3,0,1100,-6,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1455,10,0,1910,10,0,0 +2013,10,3,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,7,0,2120,-7,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1707,5,0,2318,-8,0,0 +2013,6,21,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1155,0,,1410,0,1,1 +2013,9,8,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,1,0,1630,-4,0,0 +2013,6,7,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,4,0,2119,54,1,0 +2013,6,8,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-5,0,920,-15,0,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,855,0,,1105,0,1,1 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1705,19,1,1800,11,0,0 +2013,4,18,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,17,1,1405,22,1,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,800,0,0,1035,-1,0,0 +2013,10,26,6,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-3,0,1640,-20,0,0 +2013,10,8,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,610,-3,0,700,-11,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,3,0,1739,-2,0,0 +2013,9,17,2,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,0,0,1847,-12,0,0 +2013,8,8,4,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-13,0,2019,7,0,0 +2013,5,7,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-3,0,1420,-1,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,700,-6,0,1003,-12,0,0 +2013,10,1,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1330,-1,0,2149,-9,0,0 +2013,5,30,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1357,-6,0,1710,-9,0,0 +2013,4,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,951,-2,0,1614,-24,0,0 +2013,10,6,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1910,14,0,2030,6,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,44,1,20,42,1,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1330,2,0,1430,0,0,0 +2013,7,14,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-7,0,1602,-12,0,0 +2013,9,11,3,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,615,-8,0,917,-12,0,0 +2013,7,18,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,802,-18,0,0 +2013,8,23,5,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,600,-6,0,724,-9,0,0 +2013,4,19,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,750,-2,0,900,-10,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1615,-1,0,2120,-21,0,0 +2013,8,9,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,715,10,0,734,9,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,900,-3,0,1030,-5,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1445,-3,0,1608,-13,0,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1135,19,1,1450,13,0,0 +2013,6,16,7,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1855,-11,0,2053,-14,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1840,0,0,2000,-12,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1520,23,1,1718,22,1,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,2105,-3,0,10,-8,0,0 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1746,6,0,1955,-15,0,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,845,-2,0,1356,-17,0,0 +2013,4,3,3,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1700,16,1,2215,25,1,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,4,0,1750,-5,0,0 +2013,8,28,3,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-4,0,900,8,0,0 +2013,7,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,952,-4,0,1135,-12,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,9,0,2335,9,0,0 +2013,4,9,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1019,102,1,1542,118,1,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1550,-5,0,1655,-2,0,0 +2013,10,1,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,951,-31,0,0 +2013,7,26,5,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,0,1340,-18,0,0 +2013,6,14,5,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2057,14,0,2329,18,1,0 +2013,4,18,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-2,0,1010,0,0,0 +2013,9,27,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-4,0,2150,-1,0,0 +2013,6,17,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,0,0,2205,-5,0,0 +2013,10,25,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,-3,0,1642,-13,0,0 +2013,6,16,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1600,-6,0,1721,-7,0,0 +2013,6,29,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-8,0,945,-19,0,0 +2013,7,11,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1534,43,1,2215,36,1,0 +2013,9,28,6,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,86,1,1940,96,1,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1252,-6,0,1354,-11,0,0 +2013,8,7,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-3,0,1340,-26,0,0 +2013,7,15,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,0,0,1715,-2,0,0 +2013,6,6,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1119,43,1,1557,14,0,0 +2013,5,10,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,725,-4,0,850,-12,0,0 +2013,9,10,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1002,-7,0,1830,-17,0,0 +2013,9,10,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-1,0,1459,14,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,2335,-2,0,553,-10,0,0 +2013,7,1,1,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-3,0,1615,-10,0,0 +2013,5,25,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1325,-3,0,1442,-8,0,0 +2013,9,16,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,800,-1,0,905,-6,0,0 +2013,6,22,6,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,0,0,1000,-8,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2211,5,0,2356,13,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1245,12,0,1515,5,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,1320,10,0,1545,6,0,0 +2013,7,3,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1325,0,0,1500,6,0,0 +2013,10,28,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1315,16,1,1415,1,0,0 +2013,4,12,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1121,0,0,1244,-7,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1440,28,1,1645,28,1,0 +2013,10,1,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,-1,0,2154,-14,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1450,22,1,1725,7,0,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,-1,0,1825,-10,0,0 +2013,4,23,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,3,0,2019,-3,0,0 +2013,7,19,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-8,0,1434,-12,0,0 +2013,4,13,6,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,905,-4,0,1130,-8,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,910,-1,0,1045,-1,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1245,6,0,1605,0,0,0 +2013,8,3,6,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1125,4,0,1231,4,0,0 +2013,6,2,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1340,-8,0,1500,-3,0,0 +2013,10,4,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1036,-4,0,1302,-12,0,0 +2013,8,15,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1425,66,1,1800,73,1,0 +2013,8,4,7,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1819,-5,0,1918,-17,0,0 +2013,9,3,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,840,8,0,1210,-1,0,0 +2013,8,3,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1035,13,0,1310,12,0,0 +2013,4,10,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,822,5,0,1026,-4,0,0 +2013,10,25,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2157,-7,0,100,-13,0,0 +2013,10,21,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,610,2,0,735,8,0,0 +2013,5,9,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1626,8,0,1714,5,0,0 +2013,5,31,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-5,0,914,-4,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1640,13,0,1745,32,1,0 +2013,5,19,7,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1805,7,0,1925,-16,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1230,-1,0,1800,5,0,0 +2013,7,23,2,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1901,10,0,2125,-5,0,0 +2013,10,8,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1940,-5,0,2155,-7,0,0 +2013,10,7,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1545,5,0,1615,-2,0,0 +2013,9,2,1,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1055,-6,0,1445,-13,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,1,0,2212,-1,0,0 +2013,5,16,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1405,-4,0,1555,-11,0,0 +2013,8,25,7,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,811,-13,0,0 +2013,5,31,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,750,-2,0,920,-12,0,0 +2013,8,11,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1300,-2,0,1400,0,0,0 +2013,8,22,4,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1440,76,1,1820,83,1,0 +2013,8,15,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,4,0,1414,5,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1115,15,1,1805,-6,0,0 +2013,6,11,2,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1204,25,1,1305,16,1,0 +2013,9,12,4,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1347,7,0,1645,-3,0,0 +2013,7,4,4,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,41,1,2025,34,1,0 +2013,8,20,2,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,825,-5,0,1028,-19,0,0 +2013,4,20,6,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1020,-1,0,1140,7,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,0,0,1757,-13,0,0 +2013,5,28,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,78,1,1800,70,1,0 +2013,10,6,7,B6,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,2022,-5,0,2246,-13,0,0 +2013,8,3,6,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,655,0,0,1035,-8,0,0 +2013,9,24,2,OO,10693,Nashville International,Nashville,TN,14869,Salt Lake City International,Salt Lake City,UT,730,773,1,1013,774,1,0 +2013,9,11,3,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1809,-8,0,2135,-27,0,0 +2013,5,9,4,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2259,4,0,659,10,0,0 +2013,8,8,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,0,0,1230,6,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2155,-4,0,2310,8,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2257,90,1,713,64,1,0 +2013,6,10,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,12266,George Bush Intercontinental/Houston,Houston,TX,2040,92,1,625,88,1,0 +2013,9,17,2,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,620,-7,0,841,-23,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,-1,0,1220,-6,0,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2220,43,1,2335,36,1,0 +2013,9,22,7,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1925,9,0,2010,12,0,0 +2013,4,1,1,DL,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-4,0,849,-15,0,0 +2013,8,29,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2045,39,1,2145,36,1,0 +2013,8,25,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1415,-4,0,1505,-10,0,0 +2013,4,21,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-7,0,905,-13,0,0 +2013,5,25,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1830,-4,0,1935,-8,0,0 +2013,7,31,3,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1055,-3,0,1330,-8,0,0 +2013,8,26,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,0,0,1735,-1,0,0 +2013,7,4,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,12,0,1741,7,0,0 +2013,5,2,4,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1200,-5,0,1532,-37,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1425,34,1,1520,74,1,0 +2013,6,26,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-2,0,944,17,1,0 +2013,7,6,6,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,96,1,1940,82,1,0 +2013,4,9,2,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1805,53,1,2128,10,0,0 +2013,6,10,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,930,-9,0,1120,3,0,0 +2013,4,21,7,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1200,35,1,2003,22,1,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,700,1,0,945,-10,0,0 +2013,10,4,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1716,5,0,2020,2,0,0 +2013,10,6,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-2,0,1436,8,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1442,6,0,1723,0,0,0 +2013,10,5,6,9E,10792,Buffalo Niagara International,Buffalo,NY,12953,LaGuardia,New York,NY,1105,-8,0,1225,6,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,15,1,2355,10,0,0 +2013,7,21,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1545,-4,0,1906,6,0,0 +2013,7,18,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,1,0,1945,1,0,0 +2013,7,14,7,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,915,-5,0,1035,-8,0,0 +2013,4,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1135,0,0,1332,8,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1115,6,0,1740,-16,0,0 +2013,6,8,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1658,0,0,1936,-6,0,0 +2013,7,27,6,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,604,-7,0,720,-17,0,0 +2013,4,10,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,33,1,2045,44,1,0 +2013,5,20,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,-9,0,1445,0,0,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,2225,2,0,2325,-3,0,0 +2013,7,22,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-4,0,720,-16,0,0 +2013,4,10,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,940,-2,0,1229,-8,0,0 +2013,4,3,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-2,0,850,5,0,0 +2013,10,26,6,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-12,0,505,-26,0,0 +2013,9,9,1,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-2,0,1450,-34,0,0 +2013,4,12,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1210,-6,0,1611,-11,0,0 +2013,10,21,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,615,-12,0,955,-9,0,0 +2013,10,16,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,-6,0,1445,14,0,0 +2013,5,18,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-3,0,1659,1,0,0 +2013,7,4,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,621,-7,0,1141,1,0,0 +2013,6,10,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-5,0,1849,-10,0,0 +2013,6,3,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,730,62,1,1511,45,1,0 +2013,4,17,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,7,0,1455,1,0,0 +2013,7,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1755,60,1,1900,71,1,0 +2013,4,27,6,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1335,-8,0,1553,-18,0,0 +2013,8,1,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,800,-3,0,1021,-8,0,0 +2013,6,5,3,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,11,0,1445,39,1,0 +2013,7,28,7,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-6,0,1923,2,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,825,5,0,1046,-8,0,0 +2013,8,21,3,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,545,-7,0,650,-12,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1635,7,0,1845,8,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1130,14,0,1440,10,0,0 +2013,10,26,6,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-7,0,1020,1,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,4,0,1703,-7,0,0 +2013,10,22,2,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1530,3,0,1755,-1,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,-2,0,2200,-15,0,0 +2013,4,22,1,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,703,0,0,1452,-11,0,0 +2013,5,19,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1829,3,0,2114,1,0,0 +2013,5,16,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1725,-2,0,1900,-23,0,0 +2013,5,5,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1600,20,1,1700,22,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1932,13,0,2056,1,0,0 +2013,5,30,4,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1547,2,0,2129,26,1,0 +2013,4,22,1,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1230,46,1,1510,36,1,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2045,-7,0,2329,5,0,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1343,38,1,1514,4,0,0 +2013,4,3,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1437,-3,0,1705,-7,0,0 +2013,6,14,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2215,3,0,45,-4,0,0 +2013,8,25,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,28,1,936,24,1,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1250,27,1,1410,18,1,0 +2013,4,30,2,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1608,-10,0,1709,-25,0,0 +2013,6,8,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1302,-8,0,1337,-4,0,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1125,-4,0,1420,-16,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2010,-4,0,2103,-2,0,0 +2013,6,29,6,OO,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1703,72,1,1903,65,1,0 +2013,9,21,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-2,0,804,-13,0,0 +2013,8,2,5,YV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1936,23,1,2104,10,0,0 +2013,8,6,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1735,110,1,2025,92,1,0 +2013,5,8,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1910,18,1,2126,4,0,0 +2013,8,1,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,920,-6,0,1133,60,1,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1534,3,0,1728,-16,0,0 +2013,4,20,6,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,-1,0,2002,-24,0,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2200,70,1,2320,114,1,0 +2013,5,25,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-3,0,941,-8,0,0 +2013,10,8,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1553,-6,0,1947,-12,0,0 +2013,8,18,7,OO,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,-11,0,1608,-22,0,0 +2013,4,1,1,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,700,-5,0,1528,-41,0,0 +2013,8,13,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,2,0,620,-19,0,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1828,50,1,2110,28,1,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1815,8,0,2030,16,1,0 +2013,5,31,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,715,-1,0,920,-6,0,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1950,23,1,2139,9,0,0 +2013,6,24,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,-3,0,1025,-13,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,0,0,1835,-9,0,0 +2013,4,6,6,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1542,-6,0,1828,-11,0,0 +2013,9,26,4,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,0,0,1505,-25,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2005,2,0,2213,13,0,0 +2013,5,10,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2213,86,1,59,65,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-4,0,1248,-4,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1340,-14,0,0 +2013,7,20,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,19,1,1155,37,1,0 +2013,10,13,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-5,0,938,-39,0,0 +2013,4,21,7,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1607,-8,0,1835,-8,0,0 +2013,8,9,5,DL,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1744,-4,0,2000,-3,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1035,4,0,1200,-1,0,0 +2013,8,26,1,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,-6,0,2105,-1,0,0 +2013,7,18,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,123,1,1946,148,1,0 +2013,6,15,6,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1059,-4,0,1334,-22,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1200,132,1,1445,127,1,0 +2013,6,30,7,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,750,33,1,1345,45,1,0 +2013,7,28,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,730,2,0,855,1,0,0 +2013,7,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1910,0,0,2120,22,1,0 +2013,4,26,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1347,9,0,1558,-1,0,0 +2013,5,24,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1750,-5,0,2054,-17,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-2,0,1911,-13,0,0 +2013,10,2,3,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2000,18,1,2324,-10,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2211,5,0,15,7,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,3,0,855,8,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,5,0,1810,6,0,0 +2013,8,25,7,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,922,-19,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1939,5,0,2234,0,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1355,-5,0,1544,-13,0,0 +2013,9,28,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,930,3,0,1755,-7,0,0 +2013,8,17,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1550,6,0,1555,6,0,0 +2013,9,30,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,820,-5,0,1659,-22,0,0 +2013,6,12,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1150,11,0,1255,-5,0,0 +2013,7,19,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1735,1,0,1800,-10,0,0 +2013,7,27,6,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1155,-3,0,1440,1,0,0 +2013,4,2,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1516,-5,0,1559,-7,0,0 +2013,6,14,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1215,-2,0,1815,-7,0,0 +2013,10,3,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1625,-5,0,1901,-7,0,0 +2013,7,28,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,-2,0,1530,4,0,0 +2013,5,19,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1450,6,0,1633,8,0,0 +2013,10,17,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,920,-1,0,1025,-1,0,0 +2013,9,3,2,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1915,-9,0,2255,-28,0,0 +2013,9,6,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-5,0,1435,-8,0,0 +2013,5,5,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,-6,0,1925,-7,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1442,2,0,1656,-18,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1134,-2,0,1415,-18,0,0 +2013,7,29,1,OO,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1731,52,1,2110,38,1,0 +2013,9,24,2,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1800,-13,0,2026,-18,0,0 +2013,9,30,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,732,-9,0,903,-16,0,0 +2013,9,27,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-10,0,2035,-17,0,0 +2013,9,4,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,-1,0,1700,-12,0,0 +2013,4,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1315,5,0,1540,-1,0,0 +2013,7,17,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,4,0,1705,-7,0,0 +2013,10,5,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1353,62,1,1715,35,1,0 +2013,8,1,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1558,121,1,2014,126,1,0 +2013,10,5,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,20,1,1603,7,0,0 +2013,7,25,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1040,0,0,1302,2,0,0 +2013,9,16,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,-2,0,1918,-12,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,850,-3,0,1013,-11,0,0 +2013,6,30,7,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1235,5,0,1620,4,0,0 +2013,10,22,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1719,-5,0,2012,-30,0,0 +2013,9,25,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1250,11,0,1623,-8,0,0 +2013,9,11,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,-4,0,2013,-15,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,833,4,0,1722,25,1,0 +2013,4,22,1,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1605,-5,0,1741,-2,0,0 +2013,9,22,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-3,0,1746,-13,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1310,15,1,1625,15,1,0 +2013,6,7,5,OO,14771,San Francisco International,San Francisco,CA,15376,Tucson International,Tucson,AZ,1856,0,0,2103,5,0,0 +2013,5,8,3,EV,11618,Newark Liberty International,Newark,NJ,10529,Bradley International,Hartford,CT,2159,137,1,2304,109,1,0 +2013,7,16,2,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1740,-3,0,2015,-40,0,0 +2013,8,26,1,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-4,0,1635,-40,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,840,-1,0,1059,-21,0,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2035,65,1,2225,56,1,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,-1,0,1145,-1,0,0 +2013,4,30,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1920,-4,0,2050,-4,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,835,7,0,1000,30,1,0 +2013,5,11,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,2004,-7,0,2349,-16,0,0 +2013,9,27,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1405,10,0,1715,6,0,0 +2013,6,7,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1110,-7,0,1708,-3,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1915,-8,0,2015,95,1,0 +2013,10,2,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-2,0,1750,-2,0,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2225,-1,0,2335,-25,0,0 +2013,10,26,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1010,13,0,1115,6,0,0 +2013,4,10,3,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1646,0,,1900,0,1,1 +2013,8,22,4,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1825,28,1,1935,34,1,0 +2013,6,26,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1415,2,0,1530,-4,0,0 +2013,7,2,2,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1555,2,0,1800,-8,0,0 +2013,8,20,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1630,7,0,1750,-7,0,0 +2013,6,11,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,11,0,800,5,0,0 +2013,4,26,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,16,1,955,6,0,0 +2013,10,20,7,YV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1150,-5,0,1335,-12,0,0 +2013,4,4,4,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-5,0,1532,-1,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1645,68,1,1815,59,1,0 +2013,5,6,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,705,-1,0,800,-2,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1710,20,1,1850,44,1,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1205,184,1,1515,148,1,0 +2013,7,6,6,EV,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,951,-9,0,1130,-10,0,0 +2013,8,28,3,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,1255,2,0,0 +2013,5,20,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,13,0,1456,3,0,0 +2013,5,2,4,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1155,-4,0,1430,-25,0,0 +2013,4,14,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,20,1,0,535,-13,0,0 +2013,8,13,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1850,0,0,1925,16,1,0 +2013,4,13,6,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1935,-7,0,2059,-10,0,0 +2013,9,22,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,3,0,615,-17,0,0 +2013,7,4,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,850,-2,0,0 +2013,10,6,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1400,-1,0,1652,5,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1328,15,1,1939,-4,0,0 +2013,7,21,7,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1135,-2,0,1345,-4,0,0 +2013,8,12,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,40,-3,0,651,5,0,0 +2013,7,13,6,UA,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,630,-4,0,758,-11,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2105,8,0,5,-1,0,0 +2013,9,11,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1123,-5,0,1710,-6,0,0 +2013,4,30,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-3,0,715,-23,0,0 +2013,4,24,3,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-2,0,1624,-6,0,0 +2013,9,15,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,2,0,1810,-11,0,0 +2013,10,27,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,900,4,0,1215,-1,0,0 +2013,10,15,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1705,-4,0,1759,-10,0,0 +2013,4,21,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,836,-3,0,1055,-11,0,0 +2013,10,23,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,830,-14,0,0 +2013,8,10,6,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1250,-1,0,1425,-19,0,0 +2013,10,18,5,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,-8,0,2059,-21,0,0 +2013,6,10,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,141,1,1404,140,1,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,2059,2,0,2217,-1,0,0 +2013,5,21,2,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1402,19,1,1455,58,1,0 +2013,9,17,2,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2320,148,1,504,171,1,0 +2013,8,14,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,2130,-1,0,2215,-1,0,0 +2013,6,14,5,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,1554,61,1,2358,47,1,0 +2013,4,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1100,-5,0,1400,-6,0,0 +2013,6,20,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1555,-1,0,1710,-5,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,949,5,0,1147,-2,0,0 +2013,9,3,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1720,156,1,1930,152,1,0 +2013,8,11,7,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,618,5,0,1445,-26,0,0 +2013,8,3,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1505,71,1,1735,55,1,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,859,-3,0,1125,-29,0,0 +2013,4,6,6,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,930,-4,0,1152,-4,0,0 +2013,9,12,4,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1315,-11,0,2046,4,0,0 +2013,10,20,7,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1245,-4,0,1825,-5,0,0 +2013,7,24,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,-2,0,1513,-2,0,0 +2013,10,30,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1830,-11,0,2105,4,0,0 +2013,4,4,4,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1033,-6,0,1309,-9,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1053,-9,0,1239,-9,0,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,66,1,1440,52,1,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1835,12,0,1940,9,0,0 +2013,4,22,1,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1430,0,,1622,0,1,1 +2013,5,1,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,720,-6,0,1050,-2,0,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1430,160,1,1520,165,1,0 +2013,4,21,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1710,-3,0,1745,-11,0,0 +2013,5,21,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1907,26,1,2252,45,1,0 +2013,7,14,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,725,1,0,1524,9,0,0 +2013,5,6,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1426,40,1,1703,31,1,0 +2013,5,18,6,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1815,0,0,1850,-10,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1415,34,1,1625,25,1,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1400,-4,0,1651,-45,0,0 +2013,8,30,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1520,12,0,1630,12,0,0 +2013,8,4,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,800,-2,0,900,-6,0,0 +2013,6,26,3,AA,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1845,87,1,2140,128,1,0 +2013,4,19,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,935,-10,0,1023,-12,0,0 +2013,10,20,7,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-2,0,1746,-8,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1200,12,0,1315,15,1,0 +2013,7,3,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1002,-6,0,1136,1,0,0 +2013,5,24,5,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,735,0,0,1110,-27,0,0 +2013,10,30,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1632,53,1,2008,91,1,0 +2013,10,10,4,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,5,0,1945,1,0,0 +2013,4,3,3,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1700,-1,0,2045,-17,0,0 +2013,6,25,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,11,0,1825,14,0,0 +2013,9,5,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-9,0,1214,-7,0,0 +2013,9,15,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,725,-13,0,0 +2013,4,21,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-6,0,1327,-28,0,0 +2013,10,30,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-3,0,650,-3,0,0 +2013,5,31,5,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,807,-3,0,921,4,0,0 +2013,4,2,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1100,-9,0,1240,-12,0,0 +2013,9,25,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,-1,0,925,-2,0,0 +2013,10,30,3,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1356,17,1,1528,22,1,0 +2013,7,23,2,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1850,99,1,35,88,1,0 +2013,10,6,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1038,3,0,1245,-5,0,0 +2013,4,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1205,-3,0,1315,-15,0,0 +2013,10,28,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,815,-6,0,1115,-23,0,0 +2013,7,15,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-3,0,1255,-10,0,0 +2013,8,2,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1745,-7,0,2110,-37,0,0 +2013,5,28,2,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2108,-4,0,530,-14,0,0 +2013,10,24,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1523,-1,0,1733,-12,0,0 +2013,9,10,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1200,-1,0,1310,-2,0,0 +2013,8,7,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-5,0,1709,-5,0,0 +2013,8,7,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1550,6,0,1700,10,0,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,930,-2,0,1210,-7,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,14,0,2225,7,0,0 +2013,6,15,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,0,0,1930,-6,0,0 +2013,5,13,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2125,-5,0,2335,-12,0,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,25,1,5,16,1,0 +2013,4,30,2,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-11,0,2039,-13,0,0 +2013,10,18,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,7,0,2235,13,0,0 +2013,5,10,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1755,10,0,1850,6,0,0 +2013,4,11,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1635,55,1,1840,55,1,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,-1,0,2155,-14,0,0 +2013,5,9,4,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1256,133,1,1523,144,1,0 +2013,4,19,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-7,0,925,-19,0,0 +2013,9,2,1,OO,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1155,-2,0,1510,-15,0,0 +2013,5,20,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,66,1,1745,69,1,0 +2013,6,29,6,DL,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1950,22,1,2125,29,1,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,17,1,1713,11,0,0 +2013,8,21,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1915,26,1,2205,31,1,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,0,0,1331,-5,0,0 +2013,4,26,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1327,14,0,1430,14,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1738,43,1,1853,125,1,0 +2013,7,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2105,98,1,2225,107,1,0 +2013,5,15,3,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-4,0,1425,-6,0,0 +2013,8,31,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1315,-2,0,1542,-23,0,0 +2013,8,7,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1015,-2,0,1227,-3,0,0 +2013,6,6,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,-7,0,1450,-12,0,0 +2013,7,18,4,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2054,7,0,509,16,1,0 +2013,5,19,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,900,-1,0,1230,-31,0,0 +2013,10,9,3,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,851,15,1,0 +2013,8,14,3,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-4,0,1053,23,1,0 +2013,6,23,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-7,0,924,6,0,0 +2013,6,3,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1250,-4,0,1452,-1,0,0 +2013,8,25,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,700,-1,0,840,1,0,0 +2013,4,2,2,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1505,-5,0,1715,-11,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1755,10,0,2020,7,0,0 +2013,6,1,6,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1718,-2,0,1902,-4,0,0 +2013,9,14,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1350,-10,0,1717,-10,0,0 +2013,6,11,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,800,-1,0,1135,-43,0,0 +2013,10,28,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,-3,0,1813,-4,0,0 +2013,4,19,5,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,16,1,608,5,0,0 +2013,10,7,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,750,1,0,1546,-2,0,0 +2013,6,30,7,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1642,46,1,1907,57,1,0 +2013,6,30,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1125,-5,0,1224,-6,0,0 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2301,52,1,730,16,1,0 +2013,10,30,3,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,944,-9,0,1030,-8,0,0 +2013,8,10,6,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,602,-4,0,1331,-20,0,0 +2013,6,25,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1000,49,1,1243,28,1,0 +2013,9,6,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,831,-5,0,931,-13,0,0 +2013,9,11,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,2020,35,1,2230,43,1,0 +2013,5,17,5,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1038,10,0,1212,9,0,0 +2013,4,14,7,F9,14635,Southwest Florida International,Fort Myers,FL,11292,Denver International,Denver,CO,617,6,0,818,8,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,820,-2,0,1340,10,0,0 +2013,4,18,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,35,1,2002,44,1,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,955,-4,0,1203,-12,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,2,0,1647,10,0,0 +2013,8,23,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,-4,0,1342,-11,0,0 +2013,5,10,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1030,-10,0,1205,-24,0,0 +2013,9,29,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,2110,4,0,2240,13,0,0 +2013,9,24,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,925,-4,0,1804,-11,0,0 +2013,10,26,6,DL,12889,McCarran International,Las Vegas,NV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1215,-5,0,1850,-1,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1345,-2,0,1434,-9,0,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1127,-4,0,1243,-7,0,0 +2013,9,26,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1315,6,0,1450,-5,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-1,0,1705,-13,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1555,-1,0,1910,-2,0,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1305,-5,0,1610,-11,0,0 +2013,4,23,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1455,-4,0,1545,-6,0,0 +2013,6,8,6,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,820,-6,0,1018,-16,0,0 +2013,6,24,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,720,-5,0,1035,-16,0,0 +2013,9,10,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1115,0,0,1235,-7,0,0 +2013,4,25,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1713,-2,0,1909,-16,0,0 +2013,7,23,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1145,4,0,1300,-8,0,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1330,2,0,1616,-22,0,0 +2013,6,27,4,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,930,0,0,1123,-14,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,700,-8,0,827,-11,0,0 +2013,6,25,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-6,0,535,-17,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,710,3,0,1111,3,0,0 +2013,10,5,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,700,-1,0,800,-13,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-2,0,725,-4,0,0 +2013,9,5,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1640,4,0,1920,-2,0,0 +2013,5,11,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1345,-5,0,1430,-11,0,0 +2013,5,21,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1900,14,0,2110,18,1,0 +2013,9,30,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,-8,0,2110,-16,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1630,0,0,2110,25,1,0 +2013,6,25,2,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,810,2,0,950,-6,0,0 +2013,5,1,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1615,-6,0,1825,-14,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-6,0,1400,-15,0,0 +2013,5,31,5,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1220,-2,0,1455,-3,0,0 +2013,4,14,7,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2140,-2,0,545,-25,0,0 +2013,4,18,4,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-5,0,553,-17,0,0 +2013,5,7,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,908,-6,0,1129,-21,0,0 +2013,10,31,4,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-7,0,1411,0,0,0 +2013,4,15,1,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-3,0,1050,-24,0,0 +2013,8,2,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,114,1,749,106,1,0 +2013,4,21,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-5,0,902,39,1,0 +2013,7,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,745,-1,0,1145,-8,0,0 +2013,10,19,6,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,-3,0,1135,28,1,0 +2013,7,2,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1910,12,0,2035,10,0,0 +2013,7,8,1,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-6,0,1159,-10,0,0 +2013,9,14,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1800,-3,0,1920,-4,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,11,0,1905,-4,0,0 +2013,6,22,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1235,-2,0,1340,-13,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1250,2,0,1405,6,0,0 +2013,10,31,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1115,-3,0,1230,-14,0,0 +2013,6,5,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1740,-5,0,1852,-11,0,0 +2013,10,11,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1205,-7,0,1356,-18,0,0 +2013,9,23,1,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,50,1,1950,44,1,0 +2013,10,21,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1125,15,1,1420,7,0,0 +2013,10,18,5,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,715,-4,0,835,19,1,0 +2013,8,11,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,55,1,1959,29,1,0 +2013,9,26,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,700,0,0,834,-18,0,0 +2013,7,4,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1550,-4,0,1610,-17,0,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1915,4,0,2250,-8,0,0 +2013,10,13,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,8,0,1920,-11,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,715,0,0,1240,-6,0,0 +2013,7,4,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1750,-8,0,2125,-20,0,0 +2013,8,14,3,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1515,15,1,1700,-8,0,0 +2013,7,31,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,5,0,1750,-5,0,0 +2013,5,16,4,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-6,0,2056,-1,0,0 +2013,5,14,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1750,-2,0,1815,-18,0,0 +2013,9,9,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-4,0,1950,-9,0,0 +2013,10,24,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,725,-2,0,825,1,0,0 +2013,8,24,6,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,640,-10,0,1140,1,0,0 +2013,10,16,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1000,-4,0,1115,-6,0,0 +2013,4,21,7,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1205,-8,0,1425,1,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1740,15,1,1847,7,0,0 +2013,8,31,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13931,Norfolk International,Norfolk,VA,1433,-3,0,1812,-10,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1329,-2,0,1718,23,1,0 +2013,10,13,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,4,0,1858,4,0,0 +2013,6,8,6,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-2,0,1543,-4,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1820,5,0,2050,3,0,0 +2013,6,3,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,906,-8,0,1253,-12,0,0 +2013,6,9,7,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1430,-5,0,1614,-13,0,0 +2013,4,3,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1930,-1,0,2202,-6,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-4,0,1000,-5,0,0 +2013,4,22,1,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1930,97,1,2235,110,1,0 +2013,6,17,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1210,6,0,1310,2,0,0 +2013,9,5,4,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1625,-5,0,1756,-37,0,0 +2013,5,7,2,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,928,8,0,1150,-6,0,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,926,-4,0,1210,-4,0,0 +2013,5,10,5,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1655,-4,0,1840,-5,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,70,1,1855,63,1,0 +2013,5,5,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1230,-2,0,1520,-1,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1515,-2,0,1715,-5,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1815,-4,0,1909,-10,0,0 +2013,10,30,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1710,-7,0,1830,-12,0,0 +2013,9,18,3,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2055,-5,0,515,-23,0,0 +2013,7,22,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1415,-1,0,1650,-3,0,0 +2013,9,27,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1720,47,1,1845,41,1,0 +2013,5,31,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1556,-2,0,1852,-36,0,0 +2013,8,29,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-6,0,1927,-4,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1020,-5,0,1227,-14,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,-2,0,2040,0,0,0 +2013,10,18,5,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1625,43,1,1827,31,1,0 +2013,4,10,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,815,17,1,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-6,0,1545,-14,0,0 +2013,10,12,6,OO,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,803,23,1,1026,19,1,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,12339,Indianapolis International,Indianapolis,IN,752,-6,0,926,-8,0,0 +2013,10,8,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,719,-9,0,1015,-20,0,0 +2013,4,10,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1535,-1,0,1730,-9,0,0 +2013,7,13,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,2,0,1526,-2,0,0 +2013,5,6,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1745,56,1,2031,65,1,0 +2013,7,2,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-7,0,1050,-7,0,0 +2013,4,14,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,1150,-27,0,0 +2013,4,13,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,846,-2,0,1050,2,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1401,6,0,1642,-11,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2050,18,1,2304,0,0,0 +2013,4,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,735,-2,0,850,-10,0,0 +2013,10,5,6,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2000,0,0,2115,-6,0,0 +2013,5,16,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1815,16,1,1940,7,0,0 +2013,10,13,7,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,805,-1,0,950,-3,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,1,0,2357,-5,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-3,0,1855,8,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2025,55,1,2135,45,1,0 +2013,9,22,7,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1720,5,0,2008,-15,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1310,55,1,1504,78,1,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,-3,0,1819,-5,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,850,5,0,1415,-11,0,0 +2013,6,23,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1815,-5,0,2054,-4,0,0 +2013,7,2,2,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2304,37,1,704,42,1,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1920,180,1,2125,188,1,0 +2013,4,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1020,6,0,1540,7,0,0 +2013,9,25,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,705,0,0,836,6,0,0 +2013,7,17,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,-10,0,2350,-16,0,0 +2013,10,31,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1725,-7,0,1910,0,0,0 +2013,4,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2225,-3,0,2351,-7,0,0 +2013,6,9,7,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,0,0,923,-13,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,45,1,736,64,1,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2300,39,1,10,33,1,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,-3,0,2120,-21,0,0 +2013,5,17,5,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,2000,8,0,2245,-9,0,0 +2013,10,3,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1619,5,0,2100,-11,0,0 +2013,9,15,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-2,0,1405,-21,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-2,0,928,-9,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1140,-2,0,1315,-11,0,0 +2013,9,21,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-7,0,1014,-36,0,0 +2013,4,29,1,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-6,0,1807,-7,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1530,-1,0,1850,-4,0,0 +2013,10,15,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1535,20,1,1730,17,1,0 +2013,10,4,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1739,4,0,1933,2,0,0 +2013,6,7,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1130,2,0,0 +2013,7,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1702,-2,0,2031,-2,0,0 +2013,9,4,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,118,1,2344,96,1,0 +2013,9,18,3,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1403,0,0,1958,87,1,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1550,1,0,1810,-9,0,0 +2013,6,28,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,718,-4,0,0 +2013,8,29,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,755,-10,0,1035,8,0,0 +2013,10,25,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,920,15,1,1049,6,0,0 +2013,8,19,1,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,844,6,0,1020,4,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1850,15,1,2150,3,0,0 +2013,9,28,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,935,-6,0,1037,-24,0,0 +2013,6,21,5,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1455,11,0,1615,35,1,0 +2013,5,20,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-1,0,2104,2,0,0 +2013,7,2,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-1,0,900,-15,0,0 +2013,8,25,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1750,-3,0,2125,-22,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,32,1,1145,31,1,0 +2013,9,14,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-1,0,1200,-15,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,-3,0,834,-3,0,0 +2013,9,18,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1210,-5,0,1617,-9,0,0 +2013,9,8,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,5,0,2328,-30,0,0 +2013,9,14,6,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2220,-7,0,2332,-20,0,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,825,-2,0,1100,-11,0,0 +2013,9,13,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2045,15,1,2200,10,0,0 +2013,6,1,6,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,655,4,0,1214,-6,0,0 +2013,8,29,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1827,5,0,2034,-17,0,0 +2013,9,18,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,-5,0,1635,1,0,0 +2013,4,10,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,600,17,1,915,3,0,0 +2013,4,15,1,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,27,1,55,13,0,0 +2013,8,16,5,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-4,0,2108,-5,0,0 +2013,6,25,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,825,-4,0,1112,-1,0,0 +2013,9,27,5,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2240,17,1,608,16,1,0 +2013,5,6,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1800,-6,0,1915,-15,0,0 +2013,9,6,5,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1635,4,0,2005,-9,0,0 +2013,4,25,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,743,-4,0,1024,-3,0,0 +2013,7,22,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,-2,0,1545,-4,0,0 +2013,10,8,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,820,-7,0,845,-28,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1750,-2,0,1926,-9,0,0 +2013,4,16,2,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1358,2,0,1456,8,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,0,0,2115,13,0,0 +2013,6,22,6,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,14,0,2020,7,0,0 +2013,6,2,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,-2,0,1513,10,0,0 +2013,10,10,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-5,0,701,3,0,0 +2013,5,24,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,805,-7,0,0 +2013,6,20,4,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,929,0,0,1214,2,0,0 +2013,4,21,7,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2159,0,0,2311,-6,0,0 +2013,5,13,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-4,0,753,-17,0,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-1,0,855,-7,0,0 +2013,6,17,1,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,20,1,1820,6,0,0 +2013,8,23,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1710,10,0,2005,4,0,0 +2013,7,25,4,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,22,1,2000,35,1,0 +2013,4,29,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1146,-5,0,1429,-5,0,0 +2013,7,19,5,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1131,-8,0,1305,4,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1430,38,1,1905,74,1,0 +2013,4,4,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,610,5,0,740,1,0,0 +2013,4,7,7,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-5,0,2040,-1,0,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,4,0,1905,29,1,0 +2013,7,25,4,9E,13342,General Mitchell International,Milwaukee,WI,12478,John F. Kennedy International,New York,NY,1134,215,1,1455,241,1,0 +2013,9,16,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,905,-4,0,1100,-14,0,0 +2013,7,28,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,19,1,1030,21,1,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1410,0,0,1545,-12,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,15,1,2205,36,1,0 +2013,8,22,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-2,0,1402,-2,0,0 +2013,5,20,1,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,2106,-9,0,2154,-5,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,725,-5,0,913,11,0,0 +2013,8,28,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,10,0,830,7,0,0 +2013,10,26,6,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,955,0,0,1145,-9,0,0 +2013,8,13,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1535,-2,0,1710,6,0,0 +2013,7,6,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,11,0,1650,-4,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,635,-6,0,755,-9,0,0 +2013,9,14,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1115,-4,0,1958,-23,0,0 +2013,6,9,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,120,14,0,515,-1,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2254,-3,0,29,-15,0,0 +2013,6,6,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,3,0,1450,-3,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,2,0,1540,-8,0,0 +2013,6,14,5,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,16,1,1905,15,1,0 +2013,10,17,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1555,9,0,1725,-4,0,0 +2013,7,7,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-5,0,853,-10,0,0 +2013,8,7,3,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1954,16,1,2103,17,1,0 +2013,5,11,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1205,3,0,1330,-2,0,0 +2013,8,3,6,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,816,3,0,1620,-26,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,29,1,1208,30,1,0 +2013,5,28,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,952,33,1,1057,24,1,0 +2013,5,15,3,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-5,0,1859,-32,0,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,900,-1,0,1055,-9,0,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1405,106,1,1925,108,1,0 +2013,8,7,3,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,1153,-21,0,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2155,2,0,2310,-9,0,0 +2013,6,21,5,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,607,-5,0,900,-7,0,0 +2013,5,30,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,-7,0,2205,-10,0,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1945,50,1,2135,45,1,0 +2013,4,11,4,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1328,11,0,1544,-2,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,955,3,0,1545,16,1,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1635,30,1,1725,22,1,0 +2013,8,4,7,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1540,14,0,1630,15,1,0 +2013,9,15,7,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1810,-8,0,2000,-24,0,0 +2013,8,29,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,8,0,1226,16,1,0 +2013,4,12,5,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,0,0,1335,-20,0,0 +2013,7,12,5,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2126,77,1,7,50,1,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,11,0,1932,8,0,0 +2013,5,9,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1310,80,1,1500,79,1,0 +2013,10,12,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,-8,0,1945,8,0,0 +2013,6,15,6,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1719,-4,0,1848,-18,0,0 +2013,4,17,3,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2210,0,0,846,5,0,0 +2013,6,4,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1916,-8,0,2141,-5,0,0 +2013,8,27,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1420,-8,0,1550,20,1,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1859,8,0,2224,-7,0,0 +2013,4,13,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1141,-2,0,1413,-27,0,0 +2013,10,5,6,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1521,2,0,1646,-12,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1429,-4,0,1733,2,0,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1614,-4,0,1801,-11,0,0 +2013,4,9,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1505,-7,0,1913,-10,0,0 +2013,5,25,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1215,9,0,1430,6,0,0 +2013,6,8,6,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1104,12,0,1313,-1,0,0 +2013,6,20,4,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1925,-5,0,2120,19,1,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,-4,0,1100,-4,0,0 +2013,9,14,6,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-3,0,855,-21,0,0 +2013,6,23,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,-3,0,1155,-7,0,0 +2013,4,15,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,2050,-1,0,2200,-1,0,0 +2013,4,29,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1305,-6,0,1450,-15,0,0 +2013,6,12,3,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-4,0,1317,-11,0,0 +2013,10,25,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-5,0,817,7,0,0 +2013,9,28,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1021,0,0,1313,6,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,3,0,1523,-9,0,0 +2013,7,20,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1055,10,0,1615,6,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,2015,-2,0,2235,-14,0,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2005,-7,0,2059,-15,0,0 +2013,7,5,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,640,-3,0,1000,-1,0,0 +2013,7,8,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1054,426,1,1254,440,1,0 +2013,10,28,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,633,-2,0,959,-14,0,0 +2013,10,26,6,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1005,14,0,1830,35,1,0 +2013,4,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,8,0,1820,-1,0,0 +2013,4,12,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,64,1,2124,66,1,0 +2013,10,12,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1915,3,0,2249,-15,0,0 +2013,5,26,7,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1605,3,0,1900,-13,0,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,725,-9,0,745,-10,0,0 +2013,4,27,6,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,700,-9,0,918,-8,0,0 +2013,8,29,4,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,840,-2,0,1017,6,0,0 +2013,9,19,4,US,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,17,1,1710,8,0,0 +2013,6,15,6,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-5,0,830,-15,0,0 +2013,7,21,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,855,7,0,1045,3,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1220,0,0,1420,-3,0,0 +2013,5,31,5,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1400,22,1,1709,12,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-3,0,1245,2,0,0 +2013,7,6,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,640,6,0,937,-4,0,0 +2013,4,30,2,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-10,0,1731,-12,0,0 +2013,7,13,6,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-9,0,1734,-13,0,0 +2013,4,5,5,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1305,3,0,1620,-7,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1000,14,0,1332,-5,0,0 +2013,9,8,7,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2140,-3,0,35,-1,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1027,-1,0,1232,16,1,0 +2013,10,11,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,930,-4,0,1039,-9,0,0 +2013,9,11,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-2,0,1301,-16,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1805,20,1,1920,18,1,0 +2013,8,21,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,41,1,2031,29,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,-3,0,1717,-12,0,0 +2013,7,24,3,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1333,25,1,1539,1,0,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,928,1,0,1114,-15,0,0 +2013,9,21,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1755,2,0,1900,4,0,0 +2013,4,17,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,0,0,1305,5,0,0 +2013,5,3,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1546,21,1,1720,5,0,0 +2013,6,25,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1700,-2,0,1845,-7,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1735,13,0,2125,11,0,0 +2013,10,30,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1530,-5,0,1820,-9,0,0 +2013,6,11,2,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1658,-6,0,1822,-13,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,710,2,0,955,2,0,0 +2013,8,27,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-6,0,1641,-4,0,0 +2013,4,26,5,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1731,-2,0,1900,-12,0,0 +2013,7,9,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1441,231,1,1755,287,1,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1856,41,1,1953,23,1,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,23,1,1623,21,1,0 +2013,6,1,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1300,0,,1451,0,1,1 +2013,9,28,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,759,-9,0,934,-41,0,0 +2013,9,7,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1840,-6,0,1912,6,0,0 +2013,8,21,3,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-11,0,645,-17,0,0 +2013,9,12,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1508,-3,0,1636,-17,0,0 +2013,6,4,2,VX,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,935,-1,0,1800,-16,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1209,-1,0,1320,-11,0,0 +2013,4,10,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,0,0,931,21,1,0 +2013,10,16,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-1,0,935,6,0,0 +2013,10,9,3,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1415,18,1,1715,-1,0,0 +2013,7,15,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1048,-5,0,1422,-8,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,0,0,1430,5,0,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,912,-1,0,1010,-3,0,0 +2013,4,6,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,-9,0,1819,-13,0,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1625,16,1,1933,54,1,0 +2013,8,13,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,4,0,2219,-3,0,0 +2013,8,14,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-4,0,1335,-11,0,0 +2013,6,26,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,940,2,0,1110,-2,0,0 +2013,7,30,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1740,10,0,1812,13,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,950,1,0,1109,-6,0,0 +2013,7,1,1,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,2105,61,1,2235,61,1,0 +2013,6,11,2,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2050,67,1,2302,64,1,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,-1,0,1954,-8,0,0 +2013,10,18,5,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,607,-11,0,915,-24,0,0 +2013,8,25,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-4,0,1815,-4,0,0 +2013,8,1,4,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-3,0,1320,-8,0,0 +2013,10,16,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1840,-7,0,2112,-14,0,0 +2013,10,7,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1910,2,0,2035,-5,0,0 +2013,4,10,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,836,-9,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1740,32,1,2005,27,1,0 +2013,5,24,5,US,14893,Sacramento International,Sacramento,CA,14100,Philadelphia International,Philadelphia,PA,2159,54,1,602,54,1,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1240,-3,0,1427,-14,0,0 +2013,7,16,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,902,4,0,1116,-1,0,0 +2013,4,9,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,825,22,1,1030,34,1,0 +2013,9,22,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1710,59,1,1810,49,1,0 +2013,6,2,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-3,0,1912,-1,0,0 +2013,9,23,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1055,11,0,1645,10,0,0 +2013,8,20,2,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,-4,0,2150,-12,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2016,7,0,2340,-4,0,0 +2013,8,10,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1800,79,1,1925,70,1,0 +2013,10,31,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,738,36,1,930,34,1,0 +2013,8,14,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2210,-3,0,37,-3,0,0 +2013,10,2,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,-8,0,1944,-13,0,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,859,-2,0,1125,-21,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1756,1,0,1910,-15,0,0 +2013,6,7,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,530,-6,0,627,15,1,0 +2013,10,20,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1730,17,1,1845,11,0,0 +2013,4,17,3,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2140,29,1,547,40,1,0 +2013,8,8,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,740,-1,0,905,5,0,0 +2013,10,26,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,700,60,1,721,52,1,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,51,1,2250,37,1,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1445,-2,0,1740,-13,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1801,-4,0,2359,-20,0,0 +2013,7,14,7,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,-3,0,1330,-11,0,0 +2013,8,11,7,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1947,26,1,2201,19,1,0 +2013,6,3,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-4,0,1000,15,1,0 +2013,9,6,5,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1030,5,0,1314,4,0,0 +2013,4,9,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,840,-3,0,1022,-5,0,0 +2013,4,25,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1035,-7,0,1408,3,0,0 +2013,9,15,7,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,-9,0,1638,-8,0,0 +2013,9,28,6,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,-5,0,1315,-11,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1200,1,0,1252,1,0,0 +2013,4,14,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1155,-4,0,1233,-2,0,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,708,-9,0,1245,-10,0,0 +2013,5,28,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,1010,4,0,1535,-12,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-8,0,1245,-32,0,0 +2013,8,12,1,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-6,0,900,-19,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-4,0,1308,-20,0,0 +2013,8,17,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-4,0,2103,-5,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1927,-3,0,2121,-32,0,0 +2013,8,8,4,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,-4,0,518,-13,0,0 +2013,10,2,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1708,-4,0,1838,-15,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2220,0,0,2355,3,0,0 +2013,8,29,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1127,-9,0,1328,-23,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1355,-2,0,1617,-13,0,0 +2013,10,12,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2130,2,0,2310,-9,0,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1710,85,1,1952,73,1,0 +2013,6,3,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1737,63,1,2051,52,1,0 +2013,10,2,3,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,-6,0,2050,-19,0,0 +2013,10,12,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,-3,0,1334,-5,0,0 +2013,5,29,3,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1941,-5,0,2309,-23,0,0 +2013,8,17,6,FL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,1038,-5,0,1336,-4,0,0 +2013,9,16,1,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,603,21,1,723,12,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1907,3,0,2036,17,1,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-5,0,945,-4,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1200,5,0,1355,2,0,0 +2013,10,20,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,53,1,1830,36,1,0 +2013,8,1,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1835,43,1,2140,32,1,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,1,0,2205,-8,0,0 +2013,10,11,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,8,0,1230,-1,0,0 +2013,10,21,1,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1825,-4,0,2110,-4,0,0 +2013,10,16,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,706,-8,0,828,-18,0,0 +2013,5,15,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,710,-24,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1835,15,1,2010,0,0,0 +2013,5,23,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,-7,0,910,-1,0,0 +2013,9,15,7,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1555,321,1,1710,325,1,0 +2013,4,12,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-4,0,1552,-15,0,0 +2013,7,3,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-7,0,1554,-32,0,0 +2013,7,10,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1602,-7,0,1759,59,1,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2140,-8,0,2312,2,0,0 +2013,5,17,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,1,0,1423,4,0,0 +2013,10,5,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,855,51,1,1100,53,1,0 +2013,4,28,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1829,-9,0,2104,-25,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1645,37,1,1750,32,1,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1800,-3,0,1855,-18,0,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1210,7,0,1410,-35,0,0 +2013,5,9,4,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,800,6,0,1105,10,0,0 +2013,7,24,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1946,11,0,2129,0,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1630,-1,0,1906,6,0,0 +2013,4,23,2,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1020,10,0,1249,30,1,0 +2013,10,1,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,935,-5,0,1040,-19,0,0 +2013,9,12,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2005,60,1,2130,61,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,910,2,0,955,-9,0,0 +2013,7,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,70,1,1735,46,1,0 +2013,10,25,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1715,23,1,2005,30,1,0 +2013,4,1,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,-3,0,855,-10,0,0 +2013,9,3,2,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1640,-12,0,1833,2,0,0 +2013,9,25,3,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1435,-2,0,1734,-11,0,0 +2013,9,3,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,0,0,2147,-4,0,0 +2013,8,12,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-1,0,935,1,0,0 +2013,4,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2055,28,1,2315,35,1,0 +2013,10,19,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-2,0,1336,-1,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,-2,0,1735,-13,0,0 +2013,4,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1525,1,0,1815,-33,0,0 +2013,9,18,3,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2322,-5,0,634,-11,0,0 +2013,6,12,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,2035,24,1,0 +2013,9,2,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,5,0,2035,-2,0,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-3,0,1016,4,0,0 +2013,7,19,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-8,0,1100,-20,0,0 +2013,8,21,3,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,-7,0,1230,-18,0,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,1355,-8,0,1744,-11,0,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1125,2,0,1420,58,1,0 +2013,6,29,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2330,-2,0,844,-14,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1645,-6,0,1855,1,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,724,-6,0,836,-16,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,41,1,2230,84,1,0 +2013,9,30,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,-2,0,1640,-16,0,0 +2013,10,14,1,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,700,55,1,1020,63,1,0 +2013,4,25,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1245,-3,0,1520,-13,0,0 +2013,6,22,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1312,-6,0,1603,-17,0,0 +2013,8,15,4,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1856,9,0,2140,1,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-4,0,1019,-5,0,0 +2013,8,24,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1840,-3,0,2136,-25,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1918,5,0,2017,3,0,0 +2013,10,1,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1105,0,0,1335,-7,0,0 +2013,5,24,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,2040,5,0,2305,-15,0,0 +2013,7,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,32,1,1605,31,1,0 +2013,9,18,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2038,2,0,2358,0,0,0 +2013,7,16,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1525,0,,1655,0,1,1 +2013,6,14,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1030,-2,0,1135,-5,0,0 +2013,5,22,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1608,18,1,1704,11,0,0 +2013,8,11,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,14,0,1620,15,1,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2105,-3,0,2351,-5,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1721,7,0,1923,-10,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,-3,0,1242,-7,0,0 +2013,4,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1310,-3,0,1400,4,0,0 +2013,4,19,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-2,0,1646,-12,0,0 +2013,8,26,1,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1358,3,0,1526,4,0,0 +2013,5,15,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,945,-10,0,1240,-24,0,0 +2013,6,7,5,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1440,3,0,1540,-1,0,0 +2013,8,12,1,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1752,-2,0,2010,35,1,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,650,0,0,935,-12,0,0 +2013,7,5,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-7,0,1943,-15,0,0 +2013,9,6,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,-3,0,1335,-27,0,0 +2013,4,22,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1040,-1,0,1210,-8,0,0 +2013,10,13,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,1,0,1642,9,0,0 +2013,10,20,7,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,-1,0,1235,-6,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,110,1,1717,106,1,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,-4,0,1423,-4,0,0 +2013,7,19,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,600,11,0,725,-1,0,0 +2013,8,4,7,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,10,0,1805,7,0,0 +2013,5,31,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,9,0,1800,8,0,0 +2013,4,5,5,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-5,0,737,-10,0,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2001,-6,0,2249,-19,0,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,825,-3,0,950,4,0,0 +2013,8,20,2,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-5,0,2200,-17,0,0 +2013,10,12,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1310,36,1,1630,17,1,0 +2013,10,15,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,124,1,1915,105,1,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-3,0,900,-5,0,0 +2013,6,8,6,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,710,-3,0,816,-16,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-7,0,2153,-26,0,0 +2013,6,5,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,,1035,0,1,1 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,24,1,1220,8,0,0 +2013,5,20,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,247,1,1010,264,1,0 +2013,9,25,3,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1021,54,1,1453,37,1,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1140,15,1,1334,30,1,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1250,17,1,1405,11,0,0 +2013,10,30,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2325,-3,0,608,-23,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2115,1,0,2300,0,0,0 +2013,5,3,5,VX,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,945,31,1,1800,9,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1645,47,1,1750,39,1,0 +2013,5,14,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,615,17,1,740,1,0,0 +2013,8,6,2,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,945,2,0,1505,-18,0,0 +2013,8,23,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1300,12,0,1530,4,0,0 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1530,11,0,1556,9,0,0 +2013,4,11,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1235,-1,0,1400,-11,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2215,-1,0,2345,-2,0,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1355,17,1,1925,1,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,600,8,0,745,-3,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,740,-2,0,1110,-11,0,0 +2013,8,4,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1125,1,0,1250,-5,0,0 +2013,6,30,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1930,94,1,2251,92,1,0 +2013,8,28,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-2,0,1004,-18,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2020,-10,0,2212,0,0,0 +2013,7,24,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,-2,0,1445,-5,0,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2005,8,0,2235,-1,0,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1657,-2,0,1919,8,0,0 +2013,7,28,7,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1005,0,0,1110,2,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,955,6,0,1100,11,0,0 +2013,5,13,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2045,-12,0,2211,-24,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1935,4,0,2250,-4,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,925,4,0,1133,6,0,0 +2013,10,23,3,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1546,-5,0,1721,-5,0,0 +2013,5,22,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,630,0,0,730,-8,0,0 +2013,8,14,3,US,14679,San Diego International,San Diego,CA,11278,Ronald Reagan Washington National,Washington,DC,2300,1,0,700,-37,0,0 +2013,4,23,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1525,9,0,1730,21,1,0 +2013,10,6,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,930,2,0,1039,6,0,0 +2013,9,6,5,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1155,31,1,1443,19,1,0 +2013,6,9,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,2110,-6,0,2225,-12,0,0 +2013,5,19,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,56,-3,0,607,17,1,0 +2013,8,15,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1810,-3,0,1925,-12,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,602,8,0,1212,23,1,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,745,-5,0,930,-1,0,0 +2013,6,21,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1545,-2,0,1705,-8,0,0 +2013,10,24,4,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-4,0,1105,-11,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,11,0,1925,6,0,0 +2013,4,12,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1100,3,0,1425,-2,0,0 +2013,5,28,2,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1830,-11,0,2150,-16,0,0 +2013,7,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,13,0,1415,23,1,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2255,0,0,43,-27,0,0 +2013,6,9,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1345,20,1,1710,25,1,0 +2013,10,25,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-3,0,1010,3,0,0 +2013,7,26,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,632,-4,0,957,-8,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,2,0,1555,-3,0,0 +2013,7,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,755,22,1,1135,2,0,0 +2013,9,29,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,15,1,1820,8,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1344,2,0,1500,9,0,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,7,0,1640,5,0,0 +2013,6,1,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1505,126,1,1605,134,1,0 +2013,4,10,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1145,-6,0,1450,-20,0,0 +2013,5,6,1,WN,13198,Kansas City International,Kansas City,MO,15304,Tampa International,Tampa,FL,1840,-4,0,2215,-23,0,0 +2013,10,25,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,35,1,759,61,1,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,940,-1,0,1420,-11,0,0 +2013,8,2,5,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,-7,0,1345,-7,0,0 +2013,7,30,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-6,0,1448,-5,0,0 +2013,8,8,4,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12339,Indianapolis International,Indianapolis,IN,855,-5,0,1039,-9,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-8,0,840,-9,0,0 +2013,6,21,5,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-4,0,628,-18,0,0 +2013,7,7,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,-4,0,1816,-8,0,0 +2013,5,3,5,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1010,-13,0,1137,-18,0,0 +2013,5,27,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,722,-5,0,853,-24,0,0 +2013,4,15,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,840,-2,0,1022,0,0,0 +2013,4,23,2,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-4,0,1045,33,1,0 +2013,6,8,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-2,0,1205,-28,0,0 +2013,4,26,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1740,-2,0,1900,-5,0,0 +2013,5,14,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,-5,0,2120,-18,0,0 +2013,7,4,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-4,0,1045,-46,0,0 +2013,4,14,7,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,163,1,727,136,1,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1335,45,1,1655,63,1,0 +2013,7,31,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,14,0,2035,48,1,0 +2013,4,21,7,WN,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,710,-1,0,935,-10,0,0 +2013,6,25,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,605,-7,0,641,0,0,0 +2013,7,25,4,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2055,84,1,2247,91,1,0 +2013,5,12,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,55,-6,0,624,-15,0,0 +2013,5,30,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,949,-19,0,0 +2013,6,18,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-5,0,1130,-4,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,9,0,1800,12,0,0 +2013,7,11,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,630,1,0,1225,-9,0,0 +2013,4,18,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,110,1,1655,112,1,0 +2013,4,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1957,36,1,2110,36,1,0 +2013,5,18,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,18,1,750,7,0,0 +2013,4,3,3,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1105,-5,0,1225,-3,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,6,0,1317,-7,0,0 +2013,4,26,5,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1655,11,0,1820,8,0,0 +2013,8,31,6,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,940,-1,0,1800,-11,0,0 +2013,8,1,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,1,0,1641,-3,0,0 +2013,7,16,2,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1905,7,0,2020,-2,0,0 +2013,5,18,6,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,620,-7,0,723,-24,0,0 +2013,5,3,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,940,-6,0,1052,-18,0,0 +2013,5,9,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,710,-2,0,815,-3,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,735,-6,0,903,-13,0,0 +2013,6,16,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,93,1,2125,89,1,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1935,5,0,2255,-5,0,0 +2013,4,15,1,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1338,-2,0,1905,31,1,0 +2013,10,26,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1247,1,0,1640,-19,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1940,95,1,2055,92,1,0 +2013,5,21,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1855,-2,0,2156,-4,0,0 +2013,4,26,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-6,0,905,-15,0,0 +2013,8,12,1,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1641,4,0,1821,-5,0,0 +2013,6,17,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,1215,-2,0,1529,-14,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,2,0,2205,-7,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1550,15,1,1723,2,0,0 +2013,8,3,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1718,-6,0,1840,-24,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,17,1,1115,9,0,0 +2013,5,2,4,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,5,0,1340,0,0,0 +2013,5,30,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1740,0,,1805,0,1,1 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1320,-1,0,2155,25,1,0 +2013,8,4,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2030,49,1,2115,48,1,0 +2013,10,22,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1330,-8,0,2155,-24,0,0 +2013,4,10,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,62,1,2131,49,1,0 +2013,5,13,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2105,0,0,2232,-13,0,0 +2013,9,8,7,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1231,-3,0,1405,-7,0,0 +2013,10,24,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,700,-2,0,915,-10,0,0 +2013,10,6,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1515,12,0,1812,15,1,0 +2013,5,27,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2005,-3,0,2259,2,0,0 +2013,7,9,2,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2225,5,0,630,4,0,0 +2013,8,19,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,722,-1,0,1020,-10,0,0 +2013,10,27,7,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-7,0,1229,-11,0,0 +2013,7,19,5,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,715,-5,0,1030,-13,0,0 +2013,5,20,1,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-3,0,1053,-32,0,0 +2013,6,18,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-4,0,830,-9,0,0 +2013,10,31,4,UA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,700,-4,0,905,-22,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1530,6,0,1635,-8,0,0 +2013,4,30,2,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1005,-1,0,1210,-17,0,0 +2013,5,12,7,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,-5,0,1110,-27,0,0 +2013,4,10,3,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,236,1,1335,232,1,0 +2013,6,3,1,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2130,-4,0,2255,-10,0,0 +2013,5,18,6,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1324,3,0,1450,-3,0,0 +2013,6,19,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,93,1,1655,92,1,0 +2013,4,2,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1920,-5,0,2200,-18,0,0 +2013,6,14,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,755,-2,0,935,0,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-4,0,1150,-5,0,0 +2013,5,13,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1524,0,0,1739,18,1,0 +2013,10,1,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-5,0,1259,-20,0,0 +2013,10,31,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,825,-2,0,950,-6,0,0 +2013,8,30,5,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,606,-5,0,717,-29,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,805,-3,0,1145,1,0,0 +2013,6,10,1,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,137,1,2130,134,1,0 +2013,5,27,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-5,0,1705,-25,0,0 +2013,10,11,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,520,-3,0,848,-8,0,0 +2013,4,20,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,620,2,0,753,5,0,0 +2013,6,2,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1311,-7,0,1730,17,1,0 +2013,8,25,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,833,53,1,1537,54,1,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1255,35,1,1600,38,1,0 +2013,9,10,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,701,-4,0,919,-8,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,23,1,943,43,1,0 +2013,9,30,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-4,0,1502,-18,0,0 +2013,6,28,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1057,25,1,1259,5,0,0 +2013,8,20,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,61,1,1939,50,1,0 +2013,9,23,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1900,3,0,2230,-15,0,0 +2013,9,17,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-2,0,1005,-6,0,0 +2013,4,18,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-1,0,1220,21,1,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1330,6,0,1500,-2,0,0 +2013,4,19,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,60,1,1115,55,1,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,2359,-2,0,453,-20,0,0 +2013,6,29,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1240,6,0,1515,-2,0,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1810,4,0,1915,9,0,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1500,24,1,1632,38,1,0 +2013,7,5,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1552,3,0,1748,-12,0,0 +2013,4,29,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,1004,18,1,0 +2013,9,8,7,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,-8,0,2100,-32,0,0 +2013,10,17,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-6,0,1346,-2,0,0 +2013,9,24,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1755,43,1,2120,45,1,0 +2013,4,4,4,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,600,-6,0,708,-7,0,0 +2013,5,3,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-2,0,911,-43,0,0 +2013,9,19,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,629,15,1,805,10,0,0 +2013,10,16,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1456,35,1,1556,25,1,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,12,0,55,5,0,0 +2013,8,4,7,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1735,15,1,1831,22,1,0 +2013,8,6,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,4,0,1950,0,0,0 +2013,4,16,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,814,-11,0,950,-15,0,0 +2013,10,17,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1900,0,0,2045,-1,0,0 +2013,8,14,3,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1201,-3,0,1340,-6,0,0 +2013,7,11,4,OO,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1336,0,,1444,0,1,1 +2013,4,16,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,12,0,1836,-5,0,0 +2013,8,23,5,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,-2,0,1235,-23,0,0 +2013,8,6,2,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,-3,0,756,-34,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1730,17,1,2025,5,0,0 +2013,8,14,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,955,15,1,1320,6,0,0 +2013,8,2,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2245,1,0,737,-26,0,0 +2013,4,26,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-6,0,707,-1,0,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1725,2,0,1855,-15,0,0 +2013,9,4,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,711,-3,0,1045,0,0,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1111,-9,0,1409,-29,0,0 +2013,10,1,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1528,-1,0,1600,-5,0,0 +2013,6,9,7,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-3,0,2154,-7,0,0 +2013,6,28,5,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1512,5,0,1624,6,0,0 +2013,9,7,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1018,-14,0,0 +2013,8,20,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1710,4,0,1850,6,0,0 +2013,9,4,3,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2010,31,1,2329,23,1,0 +2013,5,19,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-5,0,1627,-5,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,2,0,2304,-8,0,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2125,-2,0,2339,-13,0,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,82,1,2104,70,1,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,5,0,2344,5,0,0 +2013,7,10,3,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1559,162,1,1828,0,1,1 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-1,0,1038,-26,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1643,11,0,1835,19,1,0 +2013,5,7,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1810,-3,0,2125,-9,0,0 +2013,10,1,2,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,832,-5,0,1110,-24,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,615,-2,0,935,2,0,0 +2013,9,27,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,7,0,1105,14,0,0 +2013,4,10,3,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1119,-3,0,1215,-18,0,0 +2013,4,24,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1525,18,1,1905,-2,0,0 +2013,9,2,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1922,0,,2230,0,1,1 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,752,0,0,918,6,0,0 +2013,4,16,2,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,600,-8,0,914,-28,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,12,0,1415,16,1,0 +2013,8,28,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-2,0,1030,-12,0,0 +2013,4,22,1,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1630,20,1,1800,24,1,0 +2013,6,27,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-4,0,1858,-25,0,0 +2013,4,15,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,121,1,2227,130,1,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,745,1,0,1556,-7,0,0 +2013,6,7,5,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,620,-4,0,810,0,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1808,6,0,1940,18,1,0 +2013,5,19,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1001,-5,0,1131,4,0,0 +2013,9,3,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1520,0,0,1725,4,0,0 +2013,8,27,2,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-8,0,2124,-11,0,0 +2013,10,27,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1315,-9,0,1424,-1,0,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1943,0,0,2110,-25,0,0 +2013,10,21,1,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1115,-7,0,1254,10,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1725,3,0,1959,-4,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,52,1,1420,45,1,0 +2013,7,25,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1621,-5,0,1820,11,0,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1632,79,1,1954,65,1,0 +2013,10,7,1,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,600,-2,0,733,-12,0,0 +2013,8,14,3,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,625,-7,0,704,-5,0,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1329,-4,0,1637,-14,0,0 +2013,5,14,2,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1645,-4,0,2003,-30,0,0 +2013,10,8,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1020,-1,0,1207,-3,0,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1257,0,0,1722,9,0,0 +2013,7,7,7,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,-6,0,2255,-13,0,0 +2013,9,19,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,603,-9,0,624,99,1,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2140,-4,0,515,-12,0,0 +2013,8,2,5,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,1,0,1425,-9,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1044,-4,0,1230,-12,0,0 +2013,4,21,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1651,12,0,1725,11,0,0 +2013,5,5,7,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1145,19,1,1250,44,1,0 +2013,9,5,4,VX,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,1705,-5,0,2000,-31,0,0 +2013,5,2,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,125,1,1914,119,1,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1606,-3,0,1900,-16,0,0 +2013,4,7,7,DL,13244,Memphis International,Memphis,TN,12889,McCarran International,Las Vegas,NV,1400,-2,0,1550,-13,0,0 +2013,5,7,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-3,0,1005,2,0,0 +2013,9,9,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1050,0,0,1130,-7,0,0 +2013,9,13,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1215,0,0,1415,-16,0,0 +2013,10,10,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1115,15,1,1303,0,0,0 +2013,9,19,4,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1345,-6,0,1634,-11,0,0 +2013,10,12,6,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,1205,-25,0,0 +2013,9,6,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,930,-4,0,1107,-29,0,0 +2013,6,23,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1325,16,1,1516,30,1,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1405,0,0,1500,-8,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2040,12,0,2335,12,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1705,10,0,1805,3,0,0 +2013,5,20,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1829,-3,0,2114,1,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,600,0,0,750,8,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1804,-1,0,1956,-13,0,0 +2013,8,17,6,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1157,-7,0,2023,-6,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1932,135,1,2228,125,1,0 +2013,6,25,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,4,0,1934,12,0,0 +2013,8,15,4,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1655,-3,0,1900,-20,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-4,0,900,-13,0,0 +2013,5,15,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1512,-7,0,2054,-5,0,0 +2013,10,8,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,515,-10,0,649,-13,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1950,-6,0,32,-13,0,0 +2013,10,30,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,0,0,1829,13,0,0 +2013,7,31,3,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-8,0,1658,-19,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1559,2,0,2029,-13,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-3,0,1313,-21,0,0 +2013,9,13,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-5,0,1320,1,0,0 +2013,8,28,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-1,0,1505,-19,0,0 +2013,8,3,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,720,-1,0,825,9,0,0 +2013,10,29,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,7,0,1600,-3,0,0 +2013,6,2,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1938,-1,0,2111,31,1,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1310,-4,0,1658,14,0,0 +2013,9,25,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,630,-7,0,857,-5,0,0 +2013,5,7,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1846,-5,0,1944,-10,0,0 +2013,9,15,7,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1306,-8,0,1550,0,0,0 +2013,10,15,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,730,-7,0,1016,-6,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,748,-3,0,1044,-17,0,0 +2013,10,24,4,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1200,-6,0,1319,-11,0,0 +2013,5,6,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,8,0,2017,0,0,0 +2013,8,10,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1005,-3,0,1120,-21,0,0 +2013,8,21,3,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1420,7,0,1445,-3,0,0 +2013,7,19,5,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1010,-10,0,1321,-17,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1445,22,1,1550,23,1,0 +2013,7,5,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,930,-7,0,1229,-10,0,0 +2013,8,5,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,30,-4,0,549,-20,0,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,815,0,0,1114,-9,0,0 +2013,10,8,2,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,-5,0,2144,-21,0,0 +2013,8,24,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1010,-7,0,1147,-18,0,0 +2013,8,19,1,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1001,-4,0,1139,-5,0,0 +2013,4,8,1,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,700,-8,0,945,-5,0,0 +2013,8,11,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2125,30,1,2359,33,1,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-3,0,1323,-20,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,1,0,1125,4,0,0 +2013,9,19,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,639,-6,0,850,-30,0,0 +2013,6,8,6,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-5,0,1257,-10,0,0 +2013,5,17,5,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1650,-2,0,1901,-32,0,0 +2013,6,26,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,0,,1555,0,1,1 +2013,6,4,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,17,1,2145,18,1,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,16,1,1705,6,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1542,33,1,1707,26,1,0 +2013,5,26,7,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,816,-1,0,1057,-18,0,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1735,0,,1944,0,1,1 +2013,7,10,3,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2052,79,1,22,77,1,0 +2013,6,19,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2031,-14,0,2209,-27,0,0 +2013,6,12,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1350,-5,0,1505,-20,0,0 +2013,7,25,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-8,0,1918,-14,0,0 +2013,8,19,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-5,0,1556,-11,0,0 +2013,7,29,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1500,-3,0,1622,11,0,0 +2013,5,24,5,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1120,-10,0,1356,-23,0,0 +2013,6,13,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1651,92,1,1726,83,1,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1750,2,0,2022,-10,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1405,0,0,1815,-34,0,0 +2013,6,15,6,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,910,-7,0,1034,-10,0,0 +2013,5,8,3,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1925,20,1,2304,22,1,0 +2013,8,22,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,110,1,1536,92,1,0 +2013,8,12,1,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2005,15,1,2215,13,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2045,19,1,2101,3,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,-6,0,23,-16,0,0 +2013,8,14,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,0,,2110,0,1,1 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-2,0,1235,-13,0,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1644,61,1,1942,34,1,0 +2013,6,22,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-1,0,1952,-22,0,0 +2013,8,3,6,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1735,80,1,2024,101,1,0 +2013,8,30,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1705,0,0,1857,-19,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,725,-6,0,919,-10,0,0 +2013,7,8,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,600,-2,0,615,0,0,0 +2013,8,2,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2117,-4,0,2342,-5,0,0 +2013,8,13,2,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,81,1,649,75,1,0 +2013,8,9,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-7,0,750,-28,0,0 +2013,5,12,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-5,0,1019,-9,0,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,135,1,2212,121,1,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2005,-9,0,2125,-9,0,0 +2013,6,27,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,10,0,1353,7,0,0 +2013,5,24,5,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1920,-1,0,2114,-5,0,0 +2013,9,13,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-5,0,641,-23,0,0 +2013,6,26,3,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,54,1,1910,73,1,0 +2013,4,17,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,-5,0,1535,-10,0,0 +2013,5,8,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,816,-5,0,937,-8,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,5,0,2129,-8,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,844,5,0,1330,-7,0,0 +2013,10,12,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1459,12,0,1754,17,1,0 +2013,7,7,7,EV,11066,Port Columbus International,Columbus,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1658,12,0,1840,35,1,0 +2013,4,13,6,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1036,-8,0,1154,-25,0,0 +2013,8,27,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,739,-5,0,831,-14,0,0 +2013,7,20,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1940,80,1,2210,89,1,0 +2013,6,13,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,610,0,,715,0,1,1 +2013,9,23,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,725,-2,0,1020,-9,0,0 +2013,9,9,1,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1249,30,1,1646,13,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,615,-5,0,930,-3,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,10,0,2234,8,0,0 +2013,6,5,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,802,-7,0,900,-11,0,0 +2013,9,25,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1824,-3,0,2110,-10,0,0 +2013,10,20,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1955,12,0,2251,4,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1759,12,0,2053,-10,0,0 +2013,4,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1150,5,0,1415,49,1,0 +2013,10,22,2,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-8,0,1220,-16,0,0 +2013,9,15,7,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,830,1,0,1028,-20,0,0 +2013,8,12,1,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2012,149,1,2140,121,1,0 +2013,4,8,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1425,31,1,1620,10,0,0 +2013,10,11,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,615,-2,0,745,-7,0,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,838,-4,0,1008,-12,0,0 +2013,10,31,4,OO,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,550,-2,0,750,8,0,0 +2013,6,22,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,705,-4,0,910,1,0,0 +2013,6,10,1,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1810,75,1,2110,63,1,0 +2013,9,19,4,EV,12953,LaGuardia,New York,NY,13871,Eppley Airfield,Omaha,NE,1730,-10,0,1950,0,0,0 +2013,9,15,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1240,3,0,1415,-16,0,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1440,0,0,1533,7,0,0 +2013,10,21,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1412,2,0,1659,-20,0,0 +2013,8,5,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-2,0,1734,-5,0,0 +2013,6,2,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,74,1,1948,82,1,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1725,11,0,1918,-5,0,0 +2013,8,31,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1016,2,0,1212,-5,0,0 +2013,4,11,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,620,-5,0,813,18,1,0 +2013,7,21,7,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,-3,0,1551,-11,0,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,3,0,2154,9,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,-1,0,2030,-8,0,0 +2013,5,29,3,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1745,9,0,1925,29,1,0 +2013,10,31,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,835,0,0,935,-7,0,0 +2013,9,20,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,905,8,0,1115,5,0,0 +2013,6,26,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,-3,0,2030,-13,0,0 +2013,7,15,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1230,25,1,1345,15,1,0 +2013,8,3,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1810,0,,1915,0,1,1 +2013,9,4,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,730,-7,0,1020,-3,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,615,-7,0,1010,-13,0,0 +2013,10,18,5,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,720,0,0,850,-4,0,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,-3,0,1330,-9,0,0 +2013,4,17,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,1325,-20,0,0 +2013,5,25,6,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,26,1,2206,0,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1529,-4,0,1729,-13,0,0 +2013,8,14,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,3,0,1935,41,1,0 +2013,7,1,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1420,27,1,1515,12,0,0 +2013,6,8,6,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,710,-5,0,930,-1,0,0 +2013,8,19,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-3,0,901,-35,0,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1540,66,1,1855,71,1,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1455,45,1,1720,26,1,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,-2,0,2300,-14,0,0 +2013,10,2,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,600,-4,0,1352,-37,0,0 +2013,9,5,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,722,-5,0,901,-11,0,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,61,1,1947,66,1,0 +2013,10,5,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1632,0,0,1859,-6,0,0 +2013,9,22,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,1,0,758,-12,0,0 +2013,10,8,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1105,0,0,0 +2013,8,3,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,36,1,545,14,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,740,62,1,905,66,1,0 +2013,7,23,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1207,155,1,1531,148,1,0 +2013,4,9,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-15,0,1745,5,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,35,1,1835,31,1,0 +2013,7,4,4,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1636,-21,0,2027,-38,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1632,-5,0,1754,-16,0,0 +2013,4,18,4,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1800,-10,0,2205,-7,0,0 +2013,5,23,4,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,710,-3,0,1001,-21,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1419,-3,0,1622,-11,0,0 +2013,10,23,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,627,-9,0,747,10,0,0 +2013,9,1,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,0,0,740,-9,0,0 +2013,9,4,3,FL,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1115,-4,0,1240,-17,0,0 +2013,7,25,4,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1821,20,1,1920,6,0,0 +2013,5,16,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,630,-1,0,700,-3,0,0 +2013,5,1,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,845,-5,0,1254,-7,0,0 +2013,10,29,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,713,-9,0,1006,-5,0,0 +2013,7,26,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,1,0,2000,6,0,0 +2013,9,25,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,-3,0,847,1,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1815,29,1,2310,29,1,0 +2013,7,6,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1344,0,,1517,0,1,1 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1650,0,,1900,0,1,1 +2013,8,11,7,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,635,-5,0,816,-7,0,0 +2013,5,3,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1706,-5,0,2236,-15,0,0 +2013,5,13,1,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,32,1,1800,5,0,0 +2013,7,31,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,0,0,1045,-2,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,930,19,1,1045,19,1,0 +2013,6,16,7,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1348,-6,0,1604,-16,0,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1120,0,0,1220,13,0,0 +2013,8,12,1,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,2128,-15,0,2308,-19,0,0 +2013,4,2,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1835,32,1,2000,21,1,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1305,5,0,1535,0,0,0 +2013,4,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,830,-1,0,935,0,0,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1529,-6,0,1742,-18,0,0 +2013,8,25,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,13,0,759,26,1,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,1515,1,0,1843,-8,0,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1243,-1,0,1406,-16,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1145,5,0,1235,-7,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2015,115,1,2145,99,1,0 +2013,7,25,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,914,-2,0,1059,-11,0,0 +2013,4,28,7,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1607,-5,0,1743,-19,0,0 +2013,8,22,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-2,0,1725,-1,0,0 +2013,9,8,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1625,29,1,1755,31,1,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1435,-2,0,1709,-2,0,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-6,0,1833,3,0,0 +2013,4,9,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2010,7,0,2120,11,0,0 +2013,4,17,3,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-5,0,1821,3,0,0 +2013,4,24,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1045,-1,0,1322,-7,0,0 +2013,9,13,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-7,0,1550,5,0,0 +2013,4,11,4,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,-3,0,2300,8,0,0 +2013,8,30,5,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,9,0,2007,10,0,0 +2013,10,13,7,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,-2,0,1240,-18,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,64,1,1635,56,1,0 +2013,5,28,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1625,4,0,45,-4,0,0 +2013,10,5,6,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,37,1,1420,34,1,0 +2013,10,1,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,915,-5,0,1230,-43,0,0 +2013,6,5,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1505,-4,0,1610,2,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,915,1,0,1625,0,0,0 +2013,9,24,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1605,6,0,1715,1,0,0 +2013,4,8,1,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,56,1,2134,27,1,0 +2013,8,1,4,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-2,0,1020,-11,0,0 +2013,10,15,2,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-6,0,955,-7,0,0 +2013,8,1,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1645,8,0,1820,5,0,0 +2013,8,5,1,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1855,-6,0,2216,-16,0,0 +2013,10,1,2,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1356,-3,0,1645,-2,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,1,0,1618,-7,0,0 +2013,6,16,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,855,-3,0,1011,-2,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1930,8,0,2242,12,0,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1315,-6,0,1429,-12,0,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1200,-5,0,1346,-15,0,0 +2013,7,20,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,4,0,1520,-4,0,0 +2013,7,29,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1546,0,0,2359,-33,0,0 +2013,6,12,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-2,0,910,2,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1035,3,0,1200,-8,0,0 +2013,5,4,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1235,-1,0,1510,-2,0,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,13,0,1430,-3,0,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-13,0,1012,13,0,0 +2013,8,27,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1500,-7,0,1521,-18,0,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,600,-3,0,755,-11,0,0 +2013,9,20,5,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-3,0,1140,-2,0,0 +2013,9,21,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-3,0,641,-2,0,0 +2013,4,6,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1730,33,1,2041,24,1,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1550,66,1,1723,62,1,0 +2013,7,25,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2220,0,0,2355,7,0,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,830,-4,0,945,-7,0,0 +2013,10,31,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2211,-3,0,2328,-14,0,0 +2013,5,13,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,831,-3,0,1102,-9,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,925,2,0,1235,8,0,0 +2013,10,2,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,905,-6,0,1055,-24,0,0 +2013,5,21,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,4,0,1420,1,0,0 +2013,8,13,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,-6,0,1619,-6,0,0 +2013,4,26,5,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-8,0,1345,25,1,0 +2013,5,10,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,8,0,1245,-6,0,0 +2013,7,31,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,2311,-8,0,500,-21,0,0 +2013,7,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1415,6,0,1639,3,0,0 +2013,4,5,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-4,0,1032,-10,0,0 +2013,5,22,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1031,-4,0,1133,-10,0,0 +2013,4,30,2,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1508,-6,0,1640,-20,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,925,9,0,1035,-9,0,0 +2013,4,9,2,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1710,-11,0,1918,-17,0,0 +2013,6,25,2,DL,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,935,7,0,1759,6,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1329,5,0,1803,14,0,0 +2013,7,28,7,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-4,0,2028,-8,0,0 +2013,4,9,2,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1435,32,1,1959,33,1,0 +2013,10,5,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2017,-7,0,2105,-12,0,0 +2013,10,26,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-4,0,1114,-11,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,810,-3,0,919,-12,0,0 +2013,5,7,2,WN,13851,Will Rogers World,Oklahoma City,OK,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-3,0,845,-1,0,0 +2013,8,27,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-2,0,732,-5,0,0 +2013,10,21,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1355,-4,0,1432,5,0,0 +2013,6,24,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-3,0,1614,1,0,0 +2013,9,6,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,-6,0,1611,8,0,0 +2013,4,24,3,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-17,0,1305,-27,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,955,-5,0,1233,-17,0,0 +2013,10,27,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2000,-5,0,2201,-14,0,0 +2013,6,4,2,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1940,-8,0,2159,4,0,0 +2013,6,2,7,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1000,-2,0,1157,-13,0,0 +2013,10,16,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1615,-5,0,1706,-4,0,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,923,-9,0,0 +2013,10,3,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-5,0,1350,-25,0,0 +2013,9,16,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,-9,0,1940,18,1,0 +2013,7,21,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1910,2,0,2015,-7,0,0 +2013,6,21,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,15,1,1940,3,0,0 +2013,8,9,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,957,3,0,1208,-12,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-5,0,2158,6,0,0 +2013,6,11,2,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-2,0,627,-7,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2151,-4,0,2331,-6,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1526,1,0,1656,-20,0,0 +2013,5,14,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1428,1,0,1513,-9,0,0 +2013,6,17,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1355,13,0,1455,16,1,0 +2013,4,9,2,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1205,3,0,1345,5,0,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1215,-5,0,1935,-10,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,61,1,2135,76,1,0 +2013,4,15,1,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1559,3,0,1836,6,0,0 +2013,5,16,4,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,2010,36,1,2105,35,1,0 +2013,10,27,7,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1549,8,0,1726,-9,0,0 +2013,4,28,7,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,3,0,1638,0,0,0 +2013,9,15,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1226,-8,0,1337,-11,0,0 +2013,10,7,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1022,-6,0,1146,-15,0,0 +2013,10,2,3,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-5,0,1352,-9,0,0 +2013,7,20,6,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,715,94,1,950,91,1,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1755,6,0,2335,12,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2150,27,1,2305,12,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1150,6,0,1315,-3,0,0 +2013,8,20,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1355,-7,0,1519,0,0,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1028,-3,0,1320,-6,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1435,16,1,1950,-7,0,0 +2013,4,21,7,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1330,8,0,1445,15,1,0 +2013,6,19,3,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1025,-1,0,1247,0,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-4,0,1527,-7,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1915,7,0,2340,-3,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,-5,0,55,-9,0,0 +2013,7,28,7,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1650,-4,0,1910,-5,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1548,-1,0,1645,2,0,0 +2013,9,26,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-7,0,1354,-13,0,0 +2013,7,25,4,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1455,25,1,1600,21,1,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1615,34,1,1815,24,1,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1050,1,0,1203,-9,0,0 +2013,8,28,3,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,54,-7,0,601,-1,0,0 +2013,4,28,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-7,0,1839,-1,0,0 +2013,9,6,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,-3,0,1955,-10,0,0 +2013,6,25,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1255,1,0,1600,-2,0,0 +2013,7,25,4,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1405,36,1,1645,34,1,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,39,1,1730,28,1,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1230,-2,0,1410,-1,0,0 +2013,4,28,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1156,20,1,1241,17,1,0 +2013,5,22,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,910,-1,0,1117,-3,0,0 +2013,5,13,1,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,854,11,0,1127,16,1,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,835,0,0,1010,17,1,0 +2013,5,13,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,-5,0,1155,-7,0,0 +2013,10,18,5,UA,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1905,3,0,2135,0,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,720,-7,0,1100,-11,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1250,10,0,1430,3,0,0 +2013,9,26,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1524,-12,0,0 +2013,8,16,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1533,15,1,1724,9,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,17,1,1155,8,0,0 +2013,5,13,1,9E,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1140,-9,0,1258,-25,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1407,10,0,1610,10,0,0 +2013,7,25,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1945,0,0,2316,1,0,0 +2013,7,17,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,839,21,1,1045,13,0,0 +2013,4,16,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,-9,0,1255,46,1,0 +2013,9,24,2,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1035,0,0,1301,6,0,0 +2013,10,7,1,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,1355,1,0,1610,14,0,0 +2013,6,28,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1715,-1,0,1840,1,0,0 +2013,8,4,7,F9,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,850,-10,0,1031,-11,0,0 +2013,4,24,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-1,0,1411,-15,0,0 +2013,7,28,7,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1635,0,0,1847,4,0,0 +2013,9,29,7,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,24,1,1535,13,0,0 +2013,10,28,1,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1500,2,0,1626,7,0,0 +2013,8,6,2,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,0,0,1749,-23,0,0 +2013,8,23,5,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,0,0,1315,23,1,0 +2013,7,9,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,600,-1,0,640,-11,0,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2035,38,1,2240,22,1,0 +2013,7,14,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1135,-9,0,1210,-6,0,0 +2013,8,16,5,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1357,8,0,1640,1,0,0 +2013,10,1,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1845,-2,0,1935,-4,0,0 +2013,5,6,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1050,7,0,1610,13,0,0 +2013,4,27,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-2,0,2056,4,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-5,0,2324,-18,0,0 +2013,5,2,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,2,0,1221,37,1,0 +2013,7,8,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,845,-4,0,1125,19,1,0 +2013,7,9,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,141,1,2012,137,1,0 +2013,8,30,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1920,-8,0,2051,-4,0,0 +2013,7,21,7,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,840,0,,1030,0,1,1 +2013,9,15,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,58,1,1450,62,1,0 +2013,10,1,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2022,-4,0,2200,-24,0,0 +2013,7,23,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1200,-4,0,1250,-10,0,0 +2013,7,22,1,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,27,1,1826,24,1,0 +2013,5,16,4,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1545,10,0,1849,-20,0,0 +2013,10,2,3,EV,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1516,1,0,1710,-14,0,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,-3,0,2244,-4,0,0 +2013,9,22,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1635,253,1,1740,247,1,0 +2013,9,9,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1520,-3,0,1707,-2,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,12,0,1440,-7,0,0 +2013,7,23,2,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,3,0,2155,-9,0,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,935,8,0,1110,-13,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2105,-3,0,2250,-14,0,0 +2013,9,17,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,820,-5,0,935,-17,0,0 +2013,5,28,2,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,716,30,1,942,55,1,0 +2013,6,10,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,600,-2,0,838,-18,0,0 +2013,6,26,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2120,40,1,2215,43,1,0 +2013,7,28,7,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1350,-1,0,1642,0,0,0 +2013,5,30,4,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1720,-10,0,1859,-23,0,0 +2013,9,22,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1845,4,0,1910,3,0,0 +2013,9,26,4,EV,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,800,-4,0,1201,-4,0,0 +2013,5,28,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,161,1,842,162,1,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1305,-2,0,1426,-7,0,0 +2013,5,30,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1625,-3,0,45,21,1,0 +2013,9,24,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1955,9,0,2250,13,0,0 +2013,5,26,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-6,0,1955,-25,0,0 +2013,7,27,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1407,-4,0,2100,-9,0,0 +2013,8,10,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1749,-2,0,2027,13,0,0 +2013,6,15,6,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1130,-2,0,1520,-5,0,0 +2013,10,11,5,US,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,-2,0,1917,-6,0,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1947,-6,0,2100,-2,0,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1235,-4,0,1400,-5,0,0 +2013,7,6,6,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-8,0,1000,-24,0,0 +2013,6,25,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,32,1,1040,33,1,0 +2013,6,2,7,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1205,-3,0,1330,2,0,0 +2013,7,30,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,605,10,0,833,17,1,0 +2013,6,13,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,735,-1,0,805,-6,0,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,-5,0,2249,-10,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-5,0,825,-13,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1415,-3,0,1817,-14,0,0 +2013,8,10,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1100,255,1,1222,353,1,0 +2013,6,8,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,6,0,1300,-5,0,0 +2013,4,18,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,600,0,,630,0,1,1 +2013,10,22,2,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1200,-6,0,1434,-1,0,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,-7,0,1158,-18,0,0 +2013,4,7,7,OO,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1741,-9,0,2112,-9,0,0 +2013,5,10,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1945,42,1,2125,37,1,0 +2013,4,28,7,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1148,-6,0,1359,-4,0,0 +2013,8,28,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,905,18,1,1510,11,0,0 +2013,4,7,7,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1557,13,0,1754,8,0,0 +2013,9,7,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1405,-7,0,1748,16,1,0 +2013,8,1,4,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1716,-6,0,1851,-21,0,0 +2013,5,24,5,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1405,17,1,2000,10,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,840,-10,0,1144,-13,0,0 +2013,4,9,2,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-5,0,1029,-28,0,0 +2013,7,7,7,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,635,-3,0,930,-12,0,0 +2013,9,21,6,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,-5,0,1459,0,0,0 +2013,6,1,6,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-5,0,1630,-9,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1310,13,0,1540,-6,0,0 +2013,7,7,7,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-6,0,1040,-22,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1335,17,1,1610,1,0,0 +2013,8,29,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,49,1,2110,44,1,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1230,14,0,1420,0,0,0 +2013,10,4,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-4,0,1445,-14,0,0 +2013,10,29,2,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,11,0,1100,14,0,0 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1055,-7,0,1824,-19,0,0 +2013,4,22,1,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,610,-6,0,802,-7,0,0 +2013,8,2,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-12,0,1240,-15,0,0 +2013,9,27,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1715,135,1,1954,122,1,0 +2013,7,9,2,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,830,-2,0,935,-3,0,0 +2013,4,20,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,740,-5,0,900,0,0,0 +2013,10,3,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1939,0,0,2300,-11,0,0 +2013,8,29,4,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,3,0,1925,-9,0,0 +2013,6,14,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2126,88,1,2302,62,1,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2040,0,0,2310,-7,0,0 +2013,7,14,7,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1210,-6,0,1334,5,0,0 +2013,9,11,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1240,-5,0,1325,1,0,0 +2013,5,26,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1620,-1,0,1725,-14,0,0 +2013,9,26,4,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1325,-3,0,1625,-11,0,0 +2013,8,25,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-1,0,1525,-18,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2255,-8,0,2259,-13,0,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1740,-5,0,1905,-13,0,0 +2013,9,22,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2305,-14,0,2350,-21,0,0 +2013,7,18,4,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1936,-8,0,2045,-25,0,0 +2013,4,14,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,832,-1,0,1630,-17,0,0 +2013,5,17,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,25,1,1829,54,1,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1810,13,0,2040,-10,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1150,-4,0,1540,-3,0,0 +2013,5,9,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,652,42,1,1254,42,1,0 +2013,4,20,6,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-4,0,1835,6,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,646,-2,0,851,-12,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1300,6,0,1430,5,0,0 +2013,10,25,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1630,-5,0,1757,12,0,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,955,-3,0,1255,-18,0,0 +2013,5,29,3,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,-1,0,1955,19,1,0 +2013,10,6,7,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,4,0,2045,-8,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1810,9,0,2047,12,0,0 +2013,9,29,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,955,-3,0,1045,-5,0,0 +2013,6,14,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-3,0,1100,-6,0,0 +2013,9,6,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,711,-8,0,1051,-10,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1700,-6,0,1823,12,0,0 +2013,7,4,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,-4,0,2045,-14,0,0 +2013,5,30,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1733,162,1,2018,139,1,0 +2013,8,10,6,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,-2,0,1959,6,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2125,4,0,2230,6,0,0 +2013,8,14,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,19,1,1435,17,1,0 +2013,8,7,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,604,310,1,845,341,1,0 +2013,5,16,4,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1709,2,0,1845,-8,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,25,1,2045,9,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,900,3,0,1030,25,1,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1720,-3,0,118,-14,0,0 +2013,5,29,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,744,-4,0,1046,3,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2005,2,0,2305,1,0,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1305,-6,0,1610,106,1,0 +2013,9,13,5,YV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1547,-7,0,1714,-10,0,0 +2013,6,29,6,DL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,805,-3,0,1026,-4,0,0 +2013,9,20,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,650,52,1,908,25,1,0 +2013,8,9,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,0,,2120,0,1,1 +2013,8,5,1,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1851,-1,0,2156,-12,0,0 +2013,8,6,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,530,-2,0,650,1,0,0 +2013,7,10,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,12,0,1335,12,0,0 +2013,7,9,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,2,0,623,-12,0,0 +2013,5,17,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,-4,0,1052,-16,0,0 +2013,7,14,7,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1848,-1,0,2016,29,1,0 +2013,10,25,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,13,0,1514,8,0,0 +2013,4,24,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,50,1,1851,59,1,0 +2013,4,21,7,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,755,77,1,1020,69,1,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,-5,0,1232,-14,0,0 +2013,6,22,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,-3,0,1559,-14,0,0 +2013,10,4,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,-5,0,1815,-8,0,0 +2013,10,26,6,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1315,21,1,1455,28,1,0 +2013,9,24,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1340,0,0,1450,-6,0,0 +2013,9,11,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1508,-2,0,1635,-2,0,0 +2013,4,10,3,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,650,7,0,945,12,0,0 +2013,6,10,1,9E,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1332,-3,0,1456,-3,0,0 +2013,7,3,3,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,630,-6,0,755,-19,0,0 +2013,10,24,4,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-9,0,1007,-10,0,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1325,5,0,1450,11,0,0 +2013,7,20,6,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,740,14,0,845,29,1,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1050,-3,0,1240,-13,0,0 +2013,4,26,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-5,0,1417,4,0,0 +2013,8,28,3,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1516,-5,0,1845,-15,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1540,0,,1930,0,1,1 +2013,6,7,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,910,3,0,1040,-3,0,0 +2013,10,1,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,935,-6,0,1032,-21,0,0 +2013,4,23,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,9,0,1345,4,0,0 +2013,7,16,2,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1542,44,1,1745,39,1,0 +2013,9,20,5,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,2,0,1527,-12,0,0 +2013,10,5,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-2,0,1620,-2,0,0 +2013,9,3,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,925,11,0,1135,6,0,0 +2013,5,15,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-10,0,1434,-21,0,0 +2013,4,30,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1755,3,0,2030,-24,0,0 +2013,6,19,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-11,0,1254,-17,0,0 +2013,4,30,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,849,2,0,0 +2013,4,23,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,2115,-4,0,20,-15,0,0 +2013,5,16,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-7,0,815,-21,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-3,0,1105,-5,0,0 +2013,7,6,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1700,-4,0,2054,-12,0,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1400,53,1,1916,44,1,0 +2013,10,13,7,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1959,12,0,2117,7,0,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1615,-1,0,1740,-2,0,0 +2013,6,8,6,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,-3,0,739,-19,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1030,3,0,1843,4,0,0 +2013,7,24,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1448,37,1,1650,20,1,0 +2013,4,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1703,-6,0,2312,6,0,0 +2013,7,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,-6,0,1504,-6,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,-2,0,519,4,0,0 +2013,9,30,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,2,0,1554,0,0,0 +2013,7,15,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,158,1,2115,144,1,0 +2013,4,10,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,950,-5,0,1110,-6,0,0 +2013,4,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1619,11,0,1743,6,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1630,-3,0,1814,-8,0,0 +2013,10,6,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,-2,0,2139,-5,0,0 +2013,10,1,2,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1115,-7,0,1226,-3,0,0 +2013,4,9,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1515,-2,0,1550,-10,0,0 +2013,10,22,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,-5,0,1708,-2,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,1,0,1646,-10,0,0 +2013,8,30,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,820,2,0,1106,-9,0,0 +2013,9,19,4,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1410,281,1,1633,279,1,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1115,36,1,1247,33,1,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1410,-2,0,1625,-5,0,0 +2013,4,15,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2315,-1,0,709,-36,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2200,-3,0,2305,11,0,0 +2013,9,19,4,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1942,8,0,2155,16,1,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,-7,0,829,9,0,0 +2013,6,28,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,720,-4,0,1040,-6,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,4,0,1705,6,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,54,1,2300,51,1,0 +2013,6,21,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,16,1,1520,10,0,0 +2013,10,27,7,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,900,-10,0,1048,-6,0,0 +2013,10,11,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1011,-9,0,1125,-9,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-5,0,919,-17,0,0 +2013,5,10,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1945,-4,0,45,5,0,0 +2013,5,13,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,0,0,1324,-9,0,0 +2013,10,15,2,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1035,-1,0,1310,0,0,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,940,0,0,1025,-2,0,0 +2013,10,30,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,810,0,0,920,-1,0,0 +2013,9,23,1,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,-2,0,1627,-5,0,0 +2013,5,25,6,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1844,-6,0,2007,-19,0,0 +2013,10,5,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,0,0,1900,-5,0,0 +2013,9,22,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,655,-1,0,809,-5,0,0 +2013,5,28,2,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-5,0,1600,-13,0,0 +2013,10,13,7,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-2,0,1105,-33,0,0 +2013,5,5,7,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1731,-1,0,2100,2,0,0 +2013,4,11,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1040,102,1,1140,118,1,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1120,2,0,1350,3,0,0 +2013,6,18,2,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-10,0,1538,-5,0,0 +2013,7,2,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1835,-2,0,1930,-11,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1615,20,1,2135,7,0,0 +2013,5,13,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1920,2,0,2303,11,0,0 +2013,5,26,7,DL,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2255,-3,0,708,4,0,0 +2013,5,9,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,827,-1,0,1015,-22,0,0 +2013,10,13,7,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1245,265,1,1440,240,1,0 +2013,6,1,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2142,37,1,547,22,1,0 +2013,9,28,6,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1342,18,1,1642,-11,0,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1123,-3,0,1207,-13,0,0 +2013,6,10,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1510,8,0,1621,11,0,0 +2013,8,25,7,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1533,-7,0,1715,-10,0,0 +2013,8,8,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,-5,0,1612,-8,0,0 +2013,4,22,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,825,2,0,940,-6,0,0 +2013,4,11,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1050,0,0,1349,9,0,0 +2013,5,11,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,6,0,910,-9,0,0 +2013,8,6,2,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-9,0,2105,-14,0,0 +2013,4,2,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1045,-3,0,1310,-17,0,0 +2013,5,10,5,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,640,-3,0,849,-6,0,0 +2013,4,12,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2140,57,1,2258,39,1,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,2,0,1443,30,1,0 +2013,9,12,4,YV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,2056,0,0,2359,-13,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1005,-5,0,1134,-10,0,0 +2013,6,6,4,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1500,-7,0,1609,-7,0,0 +2013,4,1,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1015,2,0,1200,-7,0,0 +2013,6,29,6,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,18,1,1605,9,0,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1820,-3,0,1856,-12,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,605,0,0,745,-15,0,0 +2013,8,29,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-7,0,2213,-1,0,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1016,33,1,1151,24,1,0 +2013,7,18,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-3,0,2245,-13,0,0 +2013,4,12,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,945,-8,0,1129,-27,0,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1135,19,1,1340,50,1,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,59,1,1435,46,1,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1118,11,0,1357,-3,0,0 +2013,4,3,3,EV,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1337,-2,0,1450,3,0,0 +2013,8,12,1,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2255,13,0,612,0,0,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-1,0,1927,0,0,0 +2013,8,7,3,EV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1006,26,1,1455,21,1,0 +2013,6,10,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1520,-4,0,1650,-11,0,0 +2013,7,18,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1720,124,1,1905,125,1,0 +2013,5,16,4,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1230,9,0,1420,17,1,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,12,0,2139,13,0,0 +2013,4,25,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,830,0,0,900,1,0,0 +2013,5,18,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,955,-2,0,1207,-9,0,0 +2013,8,18,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1131,-2,0,1322,14,0,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1300,-2,0,1624,-6,0,0 +2013,4,5,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-6,0,820,-8,0,0 +2013,10,27,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1114,-3,0,1510,0,0,0 +2013,6,27,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,0,0,1459,3,0,0 +2013,4,25,4,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1720,88,1,1835,84,1,0 +2013,5,24,5,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1050,-5,0,1410,-20,0,0 +2013,8,11,7,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-6,0,1508,-4,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2105,45,1,2225,43,1,0 +2013,10,13,7,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-1,0,1600,-1,0,0 +2013,7,5,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,-5,0,1115,-28,0,0 +2013,9,21,6,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-1,0,825,-7,0,0 +2013,10,10,4,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1740,20,1,2035,11,0,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,46,1,1555,45,1,0 +2013,10,13,7,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,855,-2,0,1029,-7,0,0 +2013,4,13,6,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,1200,0,0,0 +2013,7,16,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1835,3,0,2102,-2,0,0 +2013,4,19,5,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,2035,0,0,2205,2,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,745,-3,0,1500,1,0,0 +2013,5,28,2,DL,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1830,-2,0,2017,-9,0,0 +2013,10,14,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1131,18,1,1315,-4,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,955,8,0,1657,1,0,0 +2013,4,8,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,515,-9,0,840,-3,0,0 +2013,7,25,4,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,834,-4,0,1015,-13,0,0 +2013,9,30,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1203,122,1,1315,111,1,0 +2013,5,28,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,-7,0,1732,-10,0,0 +2013,8,13,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-5,0,801,-1,0,0 +2013,10,14,1,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,-1,0,912,9,0,0 +2013,7,12,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,-6,0,1600,-3,0,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2219,12,0,626,52,1,0 +2013,4,26,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1420,22,1,1935,10,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,855,34,1,950,55,1,0 +2013,9,27,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1238,-3,0,1429,-15,0,0 +2013,8,27,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1000,-1,0,1018,-13,0,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,12,0,1810,14,0,0 +2013,10,13,7,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1740,-4,0,1955,-3,0,0 +2013,5,19,7,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1202,-4,0,1423,-32,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1050,-5,0,1249,-11,0,0 +2013,6,17,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1710,15,1,1900,2,0,0 +2013,9,6,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1800,49,1,1925,47,1,0 +2013,7,31,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1224,-10,0,1339,-21,0,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1355,-3,0,1825,12,0,0 +2013,9,30,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,37,1,1210,53,1,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2040,37,1,2145,21,1,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1600,4,0,2310,-1,0,0 +2013,7,9,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1050,18,1,1230,13,0,0 +2013,6,30,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-3,0,1441,-10,0,0 +2013,5,31,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1820,5,0,2111,3,0,0 +2013,4,3,3,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,920,-14,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,855,-6,0,1010,-14,0,0 +2013,7,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2235,-16,0,2344,-22,0,0 +2013,8,29,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-4,0,1155,-9,0,0 +2013,8,28,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,-6,0,1924,-3,0,0 +2013,9,7,6,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,1215,-3,0,1420,-10,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,845,22,1,1040,4,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,1055,0,0,1830,-12,0,0 +2013,10,25,5,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-15,0,2049,34,1,0 +2013,8,14,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1420,15,1,1540,14,0,0 +2013,9,4,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1746,-4,0,1951,-26,0,0 +2013,7,10,3,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1100,-5,0,1229,-7,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,-5,0,1453,-16,0,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1745,198,1,2200,210,1,0 +2013,7,31,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1700,-2,0,1841,26,1,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1539,144,1,1803,135,1,0 +2013,6,27,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1615,-1,0,1822,-14,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1520,19,1,1640,12,0,0 +2013,6,28,5,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1705,264,1,2005,300,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2205,3,0,2252,-8,0,0 +2013,4,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,54,1,1302,42,1,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1250,33,1,1357,22,1,0 +2013,5,2,4,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,800,-4,0,1135,5,0,0 +2013,9,30,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-5,0,1749,-14,0,0 +2013,7,13,6,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,1,0,1535,-14,0,0 +2013,7,19,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1755,-8,0,1929,-10,0,0 +2013,8,24,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1555,-1,0,1835,-10,0,0 +2013,8,6,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,0,0,2120,-4,0,0 +2013,4,8,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1620,-3,0,1725,-21,0,0 +2013,7,23,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,1,0,2205,-2,0,0 +2013,5,13,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,17,1,1555,27,1,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,-3,0,2106,9,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,820,0,0,1021,-7,0,0 +2013,6,14,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2210,-4,0,2312,5,0,0 +2013,5,10,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-4,0,955,2,0,0 +2013,8,22,4,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1130,-4,0,1305,-15,0,0 +2013,8,31,6,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-4,0,917,-18,0,0 +2013,8,12,1,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1709,-7,0,1805,-14,0,0 +2013,10,1,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-7,0,1753,-17,0,0 +2013,8,25,7,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1310,1,0,1640,-6,0,0 +2013,6,13,4,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,45,1,2030,76,1,0 +2013,4,23,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1200,8,0,1325,-4,0,0 +2013,8,15,4,VX,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,50,-9,0,625,0,0,0 +2013,7,14,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,1156,8,0,0 +2013,10,31,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,-7,0,818,-23,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1932,-4,0,2018,1,0,0 +2013,4,7,7,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,555,2,0,759,-14,0,0 +2013,6,17,1,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2205,0,,10,0,1,1 +2013,10,17,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1540,43,1,1700,34,1,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1309,30,1,1440,24,1,0 +2013,9,30,1,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1630,-8,0,1809,-37,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-7,0,2259,16,1,0 +2013,5,13,1,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1947,-1,0,2054,10,0,0 +2013,5,29,3,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1605,-2,0,1736,3,0,0 +2013,4,25,4,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,150,-5,0,500,-10,0,0 +2013,6,26,3,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,614,-2,0,900,28,1,0 +2013,9,22,7,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1515,76,1,1700,56,1,0 +2013,4,29,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,640,-9,0,828,8,0,0 +2013,4,14,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,855,-5,0,1230,-7,0,0 +2013,6,22,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,736,-3,0,823,42,1,0 +2013,4,17,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1524,-4,0,1558,2,0,0 +2013,6,15,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,915,-5,0,1111,-19,0,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1715,7,0,1843,-19,0,0 +2013,10,29,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,915,20,1,0 +2013,4,25,4,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1921,-5,0,2037,-7,0,0 +2013,5,27,1,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1856,-7,0,2118,-23,0,0 +2013,9,22,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-3,0,1306,6,0,0 +2013,5,3,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2155,-10,0,2250,3,0,0 +2013,6,2,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1345,7,0,1510,3,0,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2108,-7,0,2328,-31,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,820,0,0,1130,-9,0,0 +2013,7,16,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1800,60,1,1905,77,1,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2135,42,1,2230,28,1,0 +2013,4,12,5,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1550,0,,1659,0,1,1 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1815,54,1,2030,55,1,0 +2013,6,20,4,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,542,-11,0,755,-13,0,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1843,-5,0,2138,-14,0,0 +2013,4,19,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1104,17,1,1400,-9,0,0 +2013,8,25,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,850,-2,0,1055,-12,0,0 +2013,6,4,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1720,-6,0,1939,-11,0,0 +2013,5,24,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1820,4,0,1955,-12,0,0 +2013,6,14,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1320,8,0,1850,-10,0,0 +2013,7,29,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1805,-3,0,2030,0,0,0 +2013,4,5,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,-3,0,2129,-3,0,0 +2013,6,13,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,134,1,1235,135,1,0 +2013,5,22,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1806,4,0,2012,-1,0,0 +2013,5,25,6,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,811,103,1,932,92,1,0 +2013,9,27,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1024,11,0,1430,-14,0,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2000,32,1,2229,31,1,0 +2013,7,1,1,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1540,-10,0,1835,-1,0,0 +2013,9,30,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,610,2,0,700,-8,0,0 +2013,6,20,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-8,0,1741,-10,0,0 +2013,8,12,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,-5,0,942,-16,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-4,0,1747,-4,0,0 +2013,4,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1625,52,1,1638,48,1,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,905,15,1,1005,1,0,0 +2013,6,17,1,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1800,2,0,1920,5,0,0 +2013,10,29,2,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1815,6,0,2000,8,0,0 +2013,7,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1851,20,1,2245,13,0,0 +2013,10,3,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,-12,0,2115,7,0,0 +2013,9,21,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,918,-3,0,1240,-11,0,0 +2013,8,8,4,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1616,-3,0,1758,-6,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2210,4,0,14,-9,0,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1305,4,0,1629,0,0,0 +2013,9,25,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,230,-12,0,704,-24,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1005,-3,0,1145,-5,0,0 +2013,10,17,4,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1627,-4,0,1959,-22,0,0 +2013,10,11,5,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-2,0,2122,-11,0,0 +2013,10,19,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1320,16,1,1340,25,1,0 +2013,4,20,6,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,-1,0,1250,1,0,0 +2013,10,25,5,WN,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,15,1,1940,6,0,0 +2013,8,26,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1914,9,0,2105,-22,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1730,39,1,1850,40,1,0 +2013,4,12,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1049,29,1,1358,14,0,0 +2013,8,14,3,B6,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1434,21,1,1607,25,1,0 +2013,6,13,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1721,70,1,1919,145,1,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,0,0,906,13,0,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1449,0,0,1626,-3,0,0 +2013,7,25,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,26,1,2110,24,1,0 +2013,5,14,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-8,0,1325,-3,0,0 +2013,5,23,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1026,-3,0,1306,1,0,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,34,1,2141,22,1,0 +2013,6,8,6,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1550,42,1,1632,37,1,0 +2013,6,7,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1218,91,1,1314,93,1,0 +2013,8,15,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1230,-1,0,1440,3,0,0 +2013,8,5,1,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,615,-2,0,755,-3,0,0 +2013,8,18,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,-2,0,1213,-15,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,1601,-4,0,1720,-6,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,11,0,2151,21,1,0 +2013,7,2,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-12,0,1940,-21,0,0 +2013,9,11,3,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1626,0,,1831,0,1,1 +2013,6,7,5,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1740,6,0,2031,-13,0,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,-2,0,1146,-7,0,0 +2013,8,10,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1626,-4,0,1912,1,0,0 +2013,7,15,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,-2,0,859,10,0,0 +2013,6,15,6,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2030,37,1,2155,63,1,0 +2013,7,28,7,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1315,4,0,1800,-7,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1830,12,0,2105,31,1,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,-6,0,1705,-4,0,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,900,-8,0,922,-11,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,615,3,0,710,4,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1410,13,0,1520,-6,0,0 +2013,5,16,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,646,-6,0,812,-9,0,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1155,12,0,1433,12,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2005,19,1,2200,6,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1103,-1,0,1241,-1,0,0 +2013,10,10,4,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,550,-5,0,727,-19,0,0 +2013,9,1,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1405,-6,0,1425,-16,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-2,0,1321,0,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2200,146,1,2328,142,1,0 +2013,6,4,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,936,57,1,1040,52,1,0 +2013,6,17,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-6,0,2115,-8,0,0 +2013,7,25,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,8,0,1415,16,1,0 +2013,6,15,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,940,4,0,1210,-2,0,0 +2013,7,2,2,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,77,1,1245,65,1,0 +2013,6,6,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-7,0,1329,-27,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1406,-3,0,1540,2,0,0 +2013,9,8,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-8,0,1617,-5,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-7,0,1804,-6,0,0 +2013,10,2,3,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1712,-7,0,2002,-23,0,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,815,-3,0,954,-11,0,0 +2013,6,15,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,37,1,1735,35,1,0 +2013,8,28,3,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,700,0,0,942,-32,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,10,0,1253,6,0,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1450,44,1,1605,56,1,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2004,-1,0,2304,6,0,0 +2013,10,16,3,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1830,-5,0,2042,0,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1830,-1,0,2112,-23,0,0 +2013,4,25,4,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,-3,0,2054,-2,0,0 +2013,9,2,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1740,38,1,1812,39,1,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,843,-2,0,1325,-39,0,0 +2013,5,31,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1020,97,1,1320,89,1,0 +2013,9,2,1,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,710,-3,0,1009,-1,0,0 +2013,8,21,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1610,3,0,1810,6,0,0 +2013,10,13,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1040,-2,0,1320,-1,0,0 +2013,4,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,600,3,0,731,-10,0,0 +2013,8,26,1,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,615,-3,0,810,-6,0,0 +2013,7,8,1,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,7,0,1150,-8,0,0 +2013,8,26,1,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1640,-14,0,1725,-17,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1243,1,0,1405,-6,0,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1450,201,1,2337,173,1,0 +2013,10,28,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,805,-6,0,1510,-10,0,0 +2013,6,14,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,169,1,929,172,1,0 +2013,10,8,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1244,-11,0,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1925,53,1,2302,52,1,0 +2013,5,18,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1445,-1,0,1550,-3,0,0 +2013,7,3,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,-4,0,1329,-6,0,0 +2013,4,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1250,4,0,1620,-20,0,0 +2013,5,8,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1735,21,1,1905,19,1,0 +2013,9,5,4,WN,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1050,0,0,1300,2,0,0 +2013,5,2,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1700,10,0,2033,2,0,0 +2013,6,22,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-1,0,1010,-3,0,0 +2013,6,13,4,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1744,10,0,2016,10,0,0 +2013,5,11,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,1,0,1540,-14,0,0 +2013,10,9,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1909,-2,0,2044,-2,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1220,-3,0,1340,-4,0,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,807,-3,0,1631,-2,0,0 +2013,4,5,5,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1010,-4,0,1112,5,0,0 +2013,6,21,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1845,-3,0,2058,0,0,0 +2013,4,6,6,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1130,-4,0,1245,-13,0,0 +2013,8,16,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1300,26,1,1425,18,1,0 +2013,5,12,7,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-2,0,2015,-27,0,0 +2013,8,2,5,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1725,48,1,1850,53,1,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1457,0,0,1711,-11,0,0 +2013,4,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,6,0,1643,-16,0,0 +2013,8,10,6,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1538,-8,0,1700,29,1,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1613,-3,0,1810,-23,0,0 +2013,8,31,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1720,4,0,1845,3,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,840,0,0,1020,-25,0,0 +2013,7,10,3,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,-1,0,1515,-10,0,0 +2013,5,8,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1250,1,0,1415,3,0,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1120,-1,0,1456,1,0,0 +2013,5,15,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1750,40,1,1855,28,1,0 +2013,4,26,5,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,7,0,1642,-7,0,0 +2013,4,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,825,14,0,1030,12,0,0 +2013,8,16,5,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,-4,0,2045,25,1,0 +2013,9,25,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1545,36,1,1650,13,0,0 +2013,4,3,3,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,825,-4,0,945,-13,0,0 +2013,10,25,5,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1057,-5,0,1224,-7,0,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2140,-5,0,35,15,1,0 +2013,6,10,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1802,61,1,1848,74,1,0 +2013,10,10,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,744,6,0,1005,-3,0,0 +2013,4,1,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,805,24,1,1010,57,1,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1145,4,0,1510,-2,0,0 +2013,10,23,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1650,0,0,1855,26,1,0 +2013,7,22,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,118,1,1755,121,1,0 +2013,7,8,1,AA,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1115,-2,0,1310,-7,0,0 +2013,4,1,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1645,-5,0,2005,30,1,0 +2013,4,30,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-3,0,1655,-25,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1255,0,0,1400,-9,0,0 +2013,6,17,1,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1955,-1,0,2130,-17,0,0 +2013,8,21,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1443,-1,0,1630,-17,0,0 +2013,8,3,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1250,-3,0,1709,-11,0,0 +2013,6,13,4,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1245,50,1,1553,36,1,0 +2013,4,6,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1310,-2,0,1405,-17,0,0 +2013,6,10,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1638,38,1,1746,43,1,0 +2013,10,20,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1052,1,0,1424,-14,0,0 +2013,7,20,6,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,707,-5,0,923,13,0,0 +2013,7,16,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,-5,0,1510,4,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1040,2,0,1315,-1,0,0 +2013,10,6,7,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1535,19,1,1715,25,1,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1012,18,1,1425,8,0,0 +2013,7,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2250,-4,0,2345,5,0,0 +2013,4,20,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1830,-6,0,1930,-14,0,0 +2013,5,27,1,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1310,-2,0,1510,-7,0,0 +2013,6,26,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2115,-10,0,2328,-14,0,0 +2013,4,29,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,705,1,0,830,-10,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,1730,51,1,2155,46,1,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2040,-3,0,2350,23,1,0 +2013,7,9,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-1,0,1424,1,0,0 +2013,5,16,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,80,1,1830,68,1,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,855,-7,0,922,-10,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,954,-4,0,1003,-19,0,0 +2013,8,8,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1535,-1,0,1640,-3,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1920,-4,0,50,-26,0,0 +2013,8,23,5,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1325,4,0,1625,-1,0,0 +2013,9,23,1,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1224,-10,0,1556,-7,0,0 +2013,5,20,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,840,2,0,0 +2013,5,18,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1115,8,0,1246,-6,0,0 +2013,5,20,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1255,-3,0,1726,-11,0,0 +2013,8,4,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2135,-3,0,2325,-12,0,0 +2013,5,20,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-2,0,1505,-43,0,0 +2013,6,12,3,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1932,0,,30,0,1,1 +2013,9,30,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1735,-4,0,1905,-16,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1220,-4,0,1554,-8,0,0 +2013,8,3,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,600,-4,0,845,-8,0,0 +2013,8,17,6,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1127,2,0,1434,-13,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1408,0,0,1434,3,0,0 +2013,6,6,4,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1735,38,1,1755,48,1,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1905,0,0,2059,-17,0,0 +2013,4,1,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,-5,0,1059,-17,0,0 +2013,7,10,3,B6,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,2125,249,1,2354,218,1,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1210,11,0,1315,11,0,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,700,10,0,1155,-6,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1715,10,0,5,54,1,0 +2013,4,3,3,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,555,0,0,847,2,0,0 +2013,7,14,7,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,915,-8,0,1040,-14,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2004,0,0,2138,3,0,0 +2013,8,15,4,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,910,-1,0,1049,-11,0,0 +2013,4,22,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,0,0,1400,-6,0,0 +2013,6,21,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,-1,0,2108,-12,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1335,20,1,1450,17,1,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,-1,0,1005,0,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,600,-2,0,1130,-7,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1530,1,0,1650,-3,0,0 +2013,8,29,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,725,-4,0,845,23,1,0 +2013,8,30,5,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1204,-6,0,1805,-5,0,0 +2013,8,10,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1535,0,0,1835,-13,0,0 +2013,5,31,5,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1101,-10,0,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1820,-5,0,2035,-24,0,0 +2013,5,15,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,2155,-5,0,2325,-11,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1818,3,0,2055,-31,0,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,2,0,1609,0,0,0 +2013,6,6,4,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,530,-2,0,642,-10,0,0 +2013,9,8,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1212,9,0,1324,4,0,0 +2013,8,12,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1148,10,0,1450,4,0,0 +2013,7,21,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1625,-5,0,1710,-10,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1100,27,1,1330,33,1,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1859,-5,0,2345,-18,0,0 +2013,7,20,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,845,-2,0,950,-6,0,0 +2013,6,1,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1420,7,0,1615,5,0,0 +2013,8,12,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,3,0,1610,-5,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,9,0,1245,1,0,0 +2013,5,22,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,720,-9,0,1151,-24,0,0 +2013,5,15,3,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,810,-7,0,1117,-2,0,0 +2013,6,9,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,-1,0,1740,-8,0,0 +2013,7,18,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1455,-6,0,1712,-9,0,0 +2013,5,29,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1540,-9,0,1736,-9,0,0 +2013,10,7,1,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,850,0,0,1125,0,0,0 +2013,9,26,4,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,17,1,1858,8,0,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,119,1,2126,119,1,0 +2013,9,17,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-2,0,1645,17,1,0 +2013,9,27,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1910,31,1,2015,24,1,0 +2013,4,8,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-9,0,1420,-4,0,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1900,175,1,2148,189,1,0 +2013,9,15,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1639,43,1,1743,47,1,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,815,-8,0,1000,-6,0,0 +2013,6,18,2,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,40,22,1,853,26,1,0 +2013,6,16,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1850,-9,0,2030,9,0,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1150,3,0,1625,-16,0,0 +2013,4,26,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,905,-2,0,1045,-7,0,0 +2013,6,26,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1130,-12,0,1747,-4,0,0 +2013,9,13,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-6,0,759,-15,0,0 +2013,8,5,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2125,0,0,2335,-4,0,0 +2013,10,31,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,7,0,1554,-17,0,0 +2013,6,27,4,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1626,-14,0,0 +2013,5,24,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,739,24,1,913,-2,0,0 +2013,10,12,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,-3,0,1510,-2,0,0 +2013,5,8,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,930,-6,0,1245,5,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,820,-2,0,915,-6,0,0 +2013,6,1,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1245,26,1,1935,21,1,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,900,36,1,923,54,1,0 +2013,10,4,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-7,0,1522,-19,0,0 +2013,7,30,2,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1130,-4,0,1245,-11,0,0 +2013,7,22,1,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1625,0,0,2114,-5,0,0 +2013,9,15,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1655,30,1,1810,20,1,0 +2013,6,7,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,0,0,755,16,1,0 +2013,4,24,3,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,555,-9,0,701,-17,0,0 +2013,6,8,6,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,0,0,2200,-22,0,0 +2013,7,22,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,644,51,1,825,53,1,0 +2013,6,3,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1915,116,1,2110,125,1,0 +2013,7,11,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,945,-3,0,1045,-12,0,0 +2013,5,23,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-6,0,1201,-10,0,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,37,1,1735,33,1,0 +2013,8,26,1,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,850,3,0,1104,-2,0,0 +2013,8,17,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1450,10,0,1610,-9,0,0 +2013,10,17,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,930,1,0,1040,-8,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2150,-1,0,2223,-16,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1030,2,0,1405,-7,0,0 +2013,8,16,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,746,54,1,857,53,1,0 +2013,6,11,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1034,16,1,1630,2,0,0 +2013,7,17,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-4,0,1150,-10,0,0 +2013,7,5,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,-2,0,1420,-7,0,0 +2013,7,27,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,0,0,1415,0,0,0 +2013,6,18,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,850,-8,0,924,-2,0,0 +2013,9,8,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,1730,-5,0,1854,-6,0,0 +2013,8,10,6,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,24,1,1600,19,1,0 +2013,9,8,7,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,-8,0,1552,-23,0,0 +2013,5,6,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1600,2,0,1727,-5,0,0 +2013,8,30,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1810,1,0,2100,-23,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,6,0,920,-1,0,0 +2013,10,5,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,6,0,1010,1,0,0 +2013,6,17,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1101,3,0,1259,20,1,0 +2013,4,16,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,0,,1925,0,1,1 +2013,10,10,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1655,64,1,1840,59,1,0 +2013,9,21,6,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,5,0,1245,-1,0,0 +2013,4,1,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2130,3,0,2345,0,0,0 +2013,5,1,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,900,-9,0,1209,-2,0,0 +2013,10,21,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1535,13,0,1640,4,0,0 +2013,4,10,3,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1835,1,0,2110,12,0,0 +2013,6,24,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,930,-3,0,1327,-12,0,0 +2013,7,17,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,17,1,1815,8,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1520,37,1,1730,27,1,0 +2013,7,27,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,15,1,1750,10,0,0 +2013,9,20,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1215,-4,0,1450,-4,0,0 +2013,7,28,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,0,0,1850,-8,0,0 +2013,10,4,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1610,39,1,1625,33,1,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,-4,0,1502,7,0,0 +2013,5,1,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,0,0,1240,-9,0,0 +2013,4,8,1,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,5,0,1745,7,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-4,0,2115,-9,0,0 +2013,4,23,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2000,-5,0,2200,10,0,0 +2013,8,8,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,955,21,1,1115,47,1,0 +2013,10,5,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,26,1,2327,11,0,0 +2013,10,21,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1545,20,1,1700,18,1,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1815,15,1,1910,13,0,0 +2013,10,8,2,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2320,4,0,504,5,0,0 +2013,8,27,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1510,39,1,1826,45,1,0 +2013,8,2,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1559,3,0,1922,14,0,0 +2013,4,3,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1456,6,0,1712,19,1,0 +2013,9,4,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,-6,0,1507,-15,0,0 +2013,4,29,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1339,-4,0,1638,-34,0,0 +2013,7,2,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12451,Jacksonville International,Jacksonville,FL,1240,56,1,1554,60,1,0 +2013,6,9,7,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1115,-13,0,1305,-21,0,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2010,0,0,2134,-9,0,0 +2013,9,13,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1705,43,1,1815,37,1,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,810,-2,0,935,-6,0,0 +2013,10,18,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,843,-3,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1548,0,0,1737,-9,0,0 +2013,9,27,5,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,-4,0,1650,36,1,0 +2013,8,24,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-2,0,1341,-15,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,600,-3,0,820,1,0,0 +2013,4,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1155,-4,0,1315,-5,0,0 +2013,10,8,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1335,-8,0,1442,-25,0,0 +2013,10,21,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,2005,-1,0,2115,-20,0,0 +2013,9,20,5,OO,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,830,-4,0,1123,-8,0,0 +2013,5,1,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-9,0,955,-5,0,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,756,-9,0,1008,-9,0,0 +2013,4,19,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,828,-5,0,905,-9,0,0 +2013,6,8,6,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,710,-4,0,745,-8,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,51,1,1645,64,1,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2357,-9,0,550,-9,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1030,-1,0,1420,1,0,0 +2013,6,23,7,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,759,2,0,1034,-2,0,0 +2013,10,14,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1124,-6,0,1246,-2,0,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1650,-1,0,1748,-15,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1450,0,,1615,0,1,1 +2013,4,11,4,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1650,53,1,2058,25,1,0 +2013,5,22,3,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1120,-4,0,1325,16,1,0 +2013,4,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1510,27,1,1813,17,1,0 +2013,7,3,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-4,0,1116,-26,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1020,39,1,1533,50,1,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1405,5,0,1735,-6,0,0 +2013,5,9,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,82,1,2015,84,1,0 +2013,5,17,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1915,9,0,2101,14,0,0 +2013,7,27,6,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1320,0,0,1440,1,0,0 +2013,5,17,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1557,-6,0,1921,-20,0,0 +2013,5,2,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1910,6,0,2128,0,0,0 +2013,10,1,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,750,3,0,1044,-15,0,0 +2013,6,19,3,FL,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1220,-4,0,1538,2,0,0 +2013,7,8,1,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,29,1,900,33,1,0 +2013,10,11,5,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1715,-6,0,1919,-9,0,0 +2013,10,22,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,-1,0,802,9,0,0 +2013,7,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1010,9,0,1140,-2,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1620,308,1,1812,303,1,0 +2013,5,13,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1755,-3,0,1919,-16,0,0 +2013,7,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,630,-4,0,805,-14,0,0 +2013,8,16,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-10,0,2237,3,0,0 +2013,10,9,3,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1208,-6,0,1449,-13,0,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,2020,100,1,55,106,1,0 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-4,0,1625,-11,0,0 +2013,10,29,2,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2010,5,0,2140,-6,0,0 +2013,5,16,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1706,-1,0,2025,-12,0,0 +2013,4,3,3,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,-2,0,1819,4,0,0 +2013,6,22,6,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1230,17,1,1450,47,1,0 +2013,8,17,6,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,2005,21,1,2127,44,1,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,44,1,2357,25,1,0 +2013,4,9,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1540,0,,1625,0,1,1 +2013,7,26,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1254,27,1,1700,24,1,0 +2013,8,14,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1545,8,0,1725,1,0,0 +2013,5,13,1,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-2,0,1012,-7,0,0 +2013,8,23,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1755,40,1,2018,36,1,0 +2013,10,17,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2025,-4,0,2257,-18,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1945,46,1,2055,41,1,0 +2013,9,21,6,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,810,2,0,925,3,0,0 +2013,8,7,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,930,0,0,1030,0,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-3,0,2135,-15,0,0 +2013,10,20,7,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1931,33,1,2101,14,0,0 +2013,4,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1125,4,0,1210,1,0,0 +2013,10,25,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1255,-3,0,1531,-13,0,0 +2013,7,11,4,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-1,0,1615,9,0,0 +2013,10,28,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-5,0,750,-7,0,0 +2013,10,17,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-7,0,920,-7,0,0 +2013,10,27,7,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2129,0,0,10,5,0,0 +2013,9,26,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-1,0,1227,-22,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,63,1,1954,63,1,0 +2013,6,26,3,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,700,2,0,825,8,0,0 +2013,4,3,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,-6,0,2106,-5,0,0 +2013,4,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1935,-5,0,2230,-23,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,827,98,1,954,91,1,0 +2013,5,29,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,-4,0,2152,27,1,0 +2013,10,11,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-2,0,930,-10,0,0 +2013,7,10,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,1,0,1139,-8,0,0 +2013,8,14,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2300,3,0,735,20,1,0 +2013,7,8,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,18,1,1554,4,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1945,0,0,2318,-17,0,0 +2013,10,16,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1700,50,1,2011,37,1,0 +2013,5,11,6,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,8,0,1330,14,0,0 +2013,9,10,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1826,19,1,1953,16,1,0 +2013,5,19,7,YV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1530,-4,0,1657,-7,0,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1715,2,0,1840,1,0,0 +2013,7,18,4,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,801,14,0,1036,-24,0,0 +2013,7,11,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1025,-7,0,1225,-22,0,0 +2013,7,3,3,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1710,-2,0,1833,-14,0,0 +2013,7,27,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,0,0,1005,-9,0,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1048,-5,0,1420,-13,0,0 +2013,8,25,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1154,1,0,1453,-19,0,0 +2013,4,29,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1357,-4,0,1519,-15,0,0 +2013,6,19,3,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1901,-5,0,1949,0,0,0 +2013,4,16,2,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,720,0,0,935,24,1,0 +2013,8,30,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1510,-9,0,1826,-15,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,4,0,2125,-5,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,929,0,0,1114,-1,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,944,-6,0,1055,-14,0,0 +2013,8,16,5,EV,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-12,0,1010,-15,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,620,-3,0,745,-17,0,0 +2013,6,12,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1755,24,1,1940,6,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1150,-1,0,1330,-8,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,630,-4,0,745,-10,0,0 +2013,5,28,2,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1930,-2,0,2117,-28,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2340,-6,0,750,-3,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,-3,0,901,-15,0,0 +2013,4,19,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,630,0,0,820,2,0,0 +2013,7,27,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-11,0,1859,-12,0,0 +2013,10,3,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,700,-2,0,915,1,0,0 +2013,5,20,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,2,0,1459,24,1,0 +2013,6,17,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1442,11,0,1624,25,1,0 +2013,8,6,2,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1500,0,0,1607,30,1,0 +2013,4,14,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1345,10,0,1450,-6,0,0 +2013,5,29,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,930,1,0,1220,-9,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1630,4,0,1753,6,0,0 +2013,8,16,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,815,-3,0,925,-12,0,0 +2013,9,2,1,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2015,-5,0,2145,-3,0,0 +2013,10,24,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,78,1,1729,83,1,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,10,0,2215,7,0,0 +2013,7,4,4,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,700,4,0,1020,-1,0,0 +2013,5,30,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1435,0,0,1601,-8,0,0 +2013,9,20,5,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2200,15,1,840,-6,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,902,-6,0,1606,-26,0,0 +2013,8,3,6,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,739,0,0,1035,2,0,0 +2013,6,9,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-4,0,900,2,0,0 +2013,5,3,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-3,0,1913,2,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,13,0,1406,13,0,0 +2013,7,4,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1340,4,0,1425,3,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,22,1,1813,15,1,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1340,0,0,1729,-13,0,0 +2013,7,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,14057,Portland International,Portland,OR,1525,47,1,1720,46,1,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-3,0,1149,-16,0,0 +2013,6,30,7,EV,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1052,-4,0,1129,-1,0,0 +2013,7,24,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1420,0,,1600,0,1,1 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,28,1,800,28,1,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1905,161,1,2140,158,1,0 +2013,7,18,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,44,1,2021,37,1,0 +2013,4,23,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-5,0,810,-11,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1842,1,0,2207,-14,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,29,1,1346,28,1,0 +2013,6,4,2,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,2,0,1210,-2,0,0 +2013,9,26,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1403,-8,0,1653,-11,0,0 +2013,8,6,2,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1258,-3,0,1526,-14,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,7,0,1650,-15,0,0 +2013,10,24,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1845,0,0,2019,-9,0,0 +2013,8,4,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1656,-2,0,44,-14,0,0 +2013,5,8,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,619,-8,0,745,-23,0,0 +2013,4,10,3,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2300,-4,0,624,-16,0,0 +2013,7,24,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-5,0,1105,2,0,0 +2013,4,14,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1355,0,,1527,0,1,1 +2013,10,11,5,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,920,-10,0,1308,11,0,0 +2013,7,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,940,-3,0,1045,-3,0,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-6,0,1122,-5,0,0 +2013,10,7,1,WN,13342,General Mitchell International,Milwaukee,WI,14747,Seattle/Tacoma International,Seattle,WA,1520,-3,0,1740,-15,0,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1555,4,0,1737,-8,0,0 +2013,6,18,2,UA,14771,San Francisco International,San Francisco,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1614,22,1,28,10,0,0 +2013,6,14,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-2,0,1250,-7,0,0 +2013,8,21,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1225,10,0,1400,-1,0,0 +2013,7,12,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,694,1,1215,0,1,1 +2013,5,14,2,EV,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,946,-3,0,1302,2,0,0 +2013,8,2,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1848,0,0,2100,-3,0,0 +2013,9,30,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1345,2,0,1500,-4,0,0 +2013,7,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1941,13,0,2233,8,0,0 +2013,7,16,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1245,21,1,1530,5,0,0 +2013,4,26,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1445,-2,0,1649,-1,0,0 +2013,7,1,1,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,955,0,0,1125,0,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,16,1,1710,5,0,0 +2013,6,28,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,134,1,1810,143,1,0 +2013,8,16,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,-4,0,857,-8,0,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1549,-7,0,2024,-17,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,835,-6,0,1025,-9,0,0 +2013,5,17,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1239,-1,0,1450,-3,0,0 +2013,4,7,7,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1900,-6,0,2125,-1,0,0 +2013,6,4,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1246,-9,0,0 +2013,9,26,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,-5,0,1158,-6,0,0 +2013,5,4,6,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,-5,0,1845,-38,0,0 +2013,9,20,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,735,53,1,1040,51,1,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2100,-1,0,2212,-18,0,0 +2013,7,29,1,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,817,-5,0,1359,-21,0,0 +2013,7,5,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-4,0,1800,5,0,0 +2013,4,29,1,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2305,-1,0,720,-1,0,0 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-3,0,1434,-18,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1425,2,0,1615,-18,0,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,735,-4,0,1028,-5,0,0 +2013,9,14,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1051,-10,0,1156,-21,0,0 +2013,8,19,1,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1453,-5,0,1806,2,0,0 +2013,9,8,7,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1522,-9,0,1644,-7,0,0 +2013,5,24,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,11,0,1348,6,0,0 +2013,4,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,845,-3,0,1045,-15,0,0 +2013,8,17,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1650,12,0,1743,5,0,0 +2013,5,23,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,9,0,2315,3,0,0 +2013,7,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1301,1,0,1434,4,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2110,29,1,20,17,1,0 +2013,8,9,5,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,720,17,1,917,13,0,0 +2013,6,21,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1700,22,1,1825,20,1,0 +2013,5,12,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-9,0,1345,-1,0,0 +2013,5,24,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1855,3,0,2156,2,0,0 +2013,7,1,1,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1700,-9,0,1852,-17,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,20,1,1800,22,1,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1350,-5,0,1403,-14,0,0 +2013,10,4,5,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1729,-6,0,1835,-10,0,0 +2013,5,16,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2110,4,0,2321,8,0,0 +2013,10,17,4,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,722,-4,0,922,-7,0,0 +2013,10,11,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,745,1,0,1005,-9,0,0 +2013,6,11,2,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,6,0,1400,-2,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1133,-5,0,1403,5,0,0 +2013,4,26,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,1255,-5,0,1432,-25,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,4,0,1450,-5,0,0 +2013,7,30,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,955,18,1,1115,18,1,0 +2013,4,23,2,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1251,7,0,2115,-28,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2145,-9,0,140,-22,0,0 +2013,4,12,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,825,-2,0,950,-2,0,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,92,1,2255,83,1,0 +2013,6,26,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2115,43,1,10,64,1,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1815,72,1,2000,67,1,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,605,-4,0,920,-11,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1815,0,0,2047,-5,0,0 +2013,9,10,2,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2010,12,0,2120,8,0,0 +2013,5,1,3,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1524,-5,0,1843,-7,0,0 +2013,8,12,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,936,-2,0,1200,-22,0,0 +2013,7,5,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,0,0,1726,0,0,0 +2013,4,3,3,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1029,-8,0,1313,-19,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2210,5,0,2253,-1,0,0 +2013,4,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1205,8,0,1315,12,0,0 +2013,7,15,1,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,700,14,0,930,-3,0,0 +2013,10,15,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,-5,0,1343,-3,0,0 +2013,4,1,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,545,45,1,725,48,1,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1850,4,0,2330,14,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1010,-3,0,1355,-18,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1610,-1,0,1739,-9,0,0 +2013,4,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1615,5,0,1805,-19,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1945,4,0,2050,1,0,0 +2013,4,10,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1730,0,,2023,0,1,1 +2013,10,13,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,605,-3,0,1035,2,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,2024,7,0,2330,0,0,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1255,-3,0,1646,-5,0,0 +2013,10,20,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,730,-8,0,904,-13,0,0 +2013,10,4,5,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1145,5,0,1505,-15,0,0 +2013,6,6,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-3,0,850,15,1,0 +2013,7,1,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,3,0,1010,-8,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,-2,0,2236,-12,0,0 +2013,8,31,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1603,147,1,1615,171,1,0 +2013,7,18,4,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1153,-11,0,1359,-28,0,0 +2013,7,27,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,930,3,0,1149,-12,0,0 +2013,5,22,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1046,1,0,1327,-1,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2302,49,1,48,44,1,0 +2013,5,25,6,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1250,-9,0,2114,-28,0,0 +2013,5,9,4,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1155,15,1,1700,19,1,0 +2013,9,11,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,-7,0,2103,-12,0,0 +2013,7,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,2115,-1,0,2235,-1,0,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1620,-6,0,1810,-13,0,0 +2013,9,22,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1815,49,1,1835,77,1,0 +2013,4,10,3,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2140,3,0,545,1,0,0 +2013,9,10,2,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1745,-4,0,2000,-10,0,0 +2013,7,31,3,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,-4,0,1434,0,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,2010,55,1,2325,57,1,0 +2013,6,13,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-7,0,1413,-13,0,0 +2013,6,9,7,YV,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1815,3,0,1840,14,0,0 +2013,4,16,2,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-5,0,2151,-10,0,0 +2013,6,30,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1559,97,1,1828,108,1,0 +2013,10,31,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1654,190,1,1809,182,1,0 +2013,7,17,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2200,37,1,2216,31,1,0 +2013,4,14,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1710,43,1,2005,53,1,0 +2013,9,23,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,827,26,1,0 +2013,4,5,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,61,1,1404,53,1,0 +2013,5,26,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1905,23,1,2045,25,1,0 +2013,9,30,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12889,McCarran International,Las Vegas,NV,1355,9,0,1600,-37,0,0 +2013,9,10,2,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1755,-12,0,1924,-25,0,0 +2013,7,7,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2130,11,0,2240,0,0,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-4,0,1800,0,0,0 +2013,9,24,2,9E,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1900,-5,0,2154,-48,0,0 +2013,9,13,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,925,21,1,1050,13,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1416,-2,0,1559,-11,0,0 +2013,4,3,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,955,-2,0,1120,0,0,0 +2013,9,17,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,700,-1,0,1031,-12,0,0 +2013,4,10,3,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1640,40,1,1737,21,1,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,955,22,1,1254,0,0,0 +2013,10,27,7,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,830,-2,0,1413,-19,0,0 +2013,4,17,3,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,752,-2,0,1547,-3,0,0 +2013,5,9,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1430,3,0,1550,9,0,0 +2013,5,8,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,820,-5,0,935,3,0,0 +2013,5,5,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1059,-7,0,1110,-25,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,815,-3,0,945,-12,0,0 +2013,4,12,5,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1005,-3,0,1206,-11,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,-6,0,1145,-14,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,-1,0,1130,-3,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,655,-3,0,815,-19,0,0 +2013,7,24,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,3,0,1514,1,0,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1055,-4,0,1210,-1,0,0 +2013,7,2,2,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,32,1,2035,57,1,0 +2013,6,1,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1420,-10,0,1528,-16,0,0 +2013,9,16,1,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1205,-3,0,1410,-5,0,0 +2013,10,10,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-3,0,648,-11,0,0 +2013,7,8,1,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1333,70,1,1539,51,1,0 +2013,7,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,808,0,0,935,-4,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1430,-4,0,1614,2,0,0 +2013,10,18,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,-6,0,1614,10,0,0 +2013,6,16,7,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,828,3,0,1008,11,0,0 +2013,5,21,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-6,0,1215,-4,0,0 +2013,9,30,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1735,-6,0,1850,-2,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1215,-7,0,1810,-18,0,0 +2013,5,13,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1830,17,1,2204,28,1,0 +2013,6,21,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1215,-3,0,1326,1,0,0 +2013,6,7,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,600,1,0,1128,2,0,0 +2013,4,13,6,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1740,194,1,1831,199,1,0 +2013,4,10,3,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1945,30,1,2245,13,0,0 +2013,6,12,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1650,13,0,1810,13,0,0 +2013,4,23,2,OO,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-8,0,1556,-2,0,0 +2013,5,28,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2110,35,1,2125,47,1,0 +2013,7,12,5,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1529,67,1,1840,26,1,0 +2013,4,17,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,853,-10,0,1030,-2,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2110,15,1,2200,17,1,0 +2013,9,2,1,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,-1,0,1959,-1,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1055,13,0,1115,9,0,0 +2013,10,18,5,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,820,-2,0,1100,1,0,0 +2013,7,1,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-5,0,1055,5,0,0 +2013,6,8,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,-1,0,919,-6,0,0 +2013,5,20,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-3,0,1427,5,0,0 +2013,4,23,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-10,0,1054,-9,0,0 +2013,5,19,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1336,-1,0,1438,0,0,0 +2013,9,28,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-7,0,1620,-2,0,0 +2013,4,6,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1229,0,0,1426,0,0,0 +2013,7,23,2,MQ,14122,Pittsburgh International,Pittsburgh,PA,13303,Miami International,Miami,FL,615,-5,0,900,-11,0,0 +2013,5,19,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1647,0,0,1824,-2,0,0 +2013,9,18,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,-7,0,1430,-4,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,730,-4,0,849,-8,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1945,-1,0,2202,2,0,0 +2013,8,20,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1415,-4,0,1638,-21,0,0 +2013,6,21,5,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,600,9,0,700,12,0,0 +2013,9,15,7,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1500,-2,0,1809,-1,0,0 +2013,10,24,4,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1820,30,1,2109,56,1,0 +2013,7,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1359,-1,0,1452,-3,0,0 +2013,9,27,5,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,10,0,1925,-3,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,-4,0,2305,0,0,0 +2013,10,18,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2235,-3,0,28,-22,0,0 +2013,10,25,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,1000,-7,0,0 +2013,9,14,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1612,1,0,1929,-19,0,0 +2013,6,3,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1112,-8,0,1450,-3,0,0 +2013,9,17,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,8,0,1000,-11,0,0 +2013,9,17,2,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-16,0,1659,-21,0,0 +2013,6,20,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,854,-6,0,1605,-19,0,0 +2013,6,22,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-6,0,2000,-18,0,0 +2013,10,16,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-4,0,910,-27,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,45,1,1159,33,1,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,930,2,0,1342,-23,0,0 +2013,8,25,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1920,-9,0,2034,-13,0,0 +2013,10,31,4,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,752,0,0,1049,-11,0,0 +2013,10,25,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,-3,0,910,2,0,0 +2013,8,1,4,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,-6,0,1955,-20,0,0 +2013,6,8,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,700,0,0,825,5,0,0 +2013,10,7,1,F9,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1905,-7,0,2025,-33,0,0 +2013,10,29,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,949,-12,0,0 +2013,5,21,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2230,-9,0,2320,-17,0,0 +2013,8,7,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-4,0,1217,10,0,0 +2013,4,3,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-2,0,942,-8,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,625,0,0,920,-7,0,0 +2013,4,1,1,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,905,-6,0,1018,-8,0,0 +2013,6,8,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2120,47,1,2325,42,1,0 +2013,8,15,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1249,-6,0,1404,3,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1800,0,0,1932,10,0,0 +2013,8,28,3,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1736,24,1,2011,24,1,0 +2013,6,24,1,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1850,39,1,2110,35,1,0 +2013,6,7,5,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,615,-1,0,645,-11,0,0 +2013,10,14,1,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1723,13,0,2259,15,1,0 +2013,9,22,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1620,-1,0,1832,-9,0,0 +2013,4,7,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,545,-7,0,707,-16,0,0 +2013,5,1,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1535,-2,0,1759,-27,0,0 +2013,5,28,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,920,-2,0,1110,21,1,0 +2013,5,30,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1915,15,1,2015,15,1,0 +2013,4,26,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-4,0,1820,-33,0,0 +2013,5,11,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2045,0,0,2310,-25,0,0 +2013,10,2,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,-4,0,1625,-16,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,808,-3,0,901,-13,0,0 +2013,10,17,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-2,0,1222,3,0,0 +2013,5,9,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,745,0,0,900,0,0,0 +2013,4,16,2,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1650,4,0,1750,-3,0,0 +2013,7,9,2,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,740,-2,0,935,-3,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1920,-3,0,2031,-9,0,0 +2013,5,7,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,-4,0,1600,-7,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2040,10,0,2305,8,0,0 +2013,9,5,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-3,0,1821,-4,0,0 +2013,6,12,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1241,-2,0,1440,-14,0,0 +2013,8,2,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1120,-2,0,1320,5,0,0 +2013,9,23,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,2,0,1246,2,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,705,-7,0,825,-18,0,0 +2013,9,19,4,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1455,16,1,1720,14,0,0 +2013,7,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,857,-3,0,1023,2,0,0 +2013,6,26,3,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2229,33,1,626,22,1,0 +2013,4,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,31,1,1125,53,1,0 +2013,9,4,3,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,947,-7,0,1259,-20,0,0 +2013,9,3,2,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1320,1,0,1551,5,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2209,-2,0,2320,-10,0,0 +2013,5,23,4,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,0,0,1319,1,0,0 +2013,8,28,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1955,27,1,2209,22,1,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2000,0,0,2335,1,0,0 +2013,5,16,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,89,1,1733,82,1,0 +2013,10,14,1,WN,11278,Ronald Reagan Washington National,Washington,DC,12191,William P Hobby,Houston,TX,655,0,0,915,-12,0,0 +2013,6,19,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-1,0,1805,10,0,0 +2013,8,26,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,836,-3,0,1114,-7,0,0 +2013,10,3,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,625,1,0,705,-7,0,0 +2013,7,9,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1630,-1,0,1839,37,1,0 +2013,7,25,4,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-4,0,2000,-4,0,0 +2013,5,24,5,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1714,-6,0,1923,-7,0,0 +2013,8,14,3,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,755,0,,840,0,1,1 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-4,0,1720,-5,0,0 +2013,4,20,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-12,0,1501,-8,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,0,0,2013,19,1,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2145,15,1,2240,12,0,0 +2013,9,27,5,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-5,0,1227,-38,0,0 +2013,6,9,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,940,-4,0,1100,-10,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2005,17,1,2255,39,1,0 +2013,10,7,1,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,643,-2,0,855,-13,0,0 +2013,10,28,1,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1445,-4,0,1550,-13,0,0 +2013,8,29,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-2,0,1317,-12,0,0 +2013,8,16,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1220,-4,0,1946,-9,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1925,-4,0,2116,-20,0,0 +2013,5,16,4,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,1530,-1,0,1710,42,1,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,-8,0,1610,-14,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-5,0,1028,-4,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,62,1,2255,46,1,0 +2013,10,10,4,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-9,0,1917,-17,0,0 +2013,4,28,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1433,9,0,1656,31,1,0 +2013,7,14,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,-1,0,2105,0,0,0 +2013,5,6,1,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,842,125,1,1020,116,1,0 +2013,5,17,5,HA,12478,John F. Kennedy International,New York,NY,12173,Honolulu International,Honolulu,HI,1000,-2,0,1500,-12,0,0 +2013,6,22,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1915,4,0,2010,25,1,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,600,19,1,725,16,1,0 +2013,10,6,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1545,-5,0,1943,-7,0,0 +2013,9,19,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1046,-9,0,1322,6,0,0 +2013,10,3,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1011,-1,0,1049,0,0,0 +2013,4,12,5,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,5,0,2030,-16,0,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1935,25,1,50,33,1,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1212,-3,0,1508,-11,0,0 +2013,8,13,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,2,0,916,2,0,0 +2013,8,9,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,900,-1,0,1130,-6,0,0 +2013,4,18,4,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-7,0,1344,-2,0,0 +2013,8,17,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,545,2,0,757,-3,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,935,43,1,1725,46,1,0 +2013,8,5,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1029,-6,0,1141,-14,0,0 +2013,9,19,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1415,82,1,1600,92,1,0 +2013,4,29,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,53,0,0,630,-4,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1542,0,0,1651,2,0,0 +2013,5,9,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1015,0,0,1143,8,0,0 +2013,6,23,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1100,-1,0,1245,-1,0,0 +2013,8,11,7,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2155,2,0,105,-13,0,0 +2013,7,8,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1925,-2,0,2040,-9,0,0 +2013,4,7,7,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1315,8,0,1430,-1,0,0 +2013,5,22,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1345,-5,0,1718,-13,0,0 +2013,10,27,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,18,1,1048,7,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1650,4,0,1826,-10,0,0 +2013,9,30,1,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1005,-5,0,1110,-14,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1625,-1,0,1825,-12,0,0 +2013,7,11,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1210,3,0,1320,1,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2035,-2,0,2315,-2,0,0 +2013,10,20,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1400,-6,0,2152,-21,0,0 +2013,4,28,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,754,3,0,1048,3,0,0 +2013,10,21,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1240,2,0,1405,1,0,0 +2013,4,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,27,1,1420,21,1,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,955,-5,0,1254,-19,0,0 +2013,10,11,5,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,805,0,0,1031,7,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1320,19,1,1505,7,0,0 +2013,9,24,2,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,-2,0,1845,-13,0,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1435,-7,0,1610,-6,0,0 +2013,7,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1635,53,1,2005,38,1,0 +2013,10,21,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-1,0,1408,11,0,0 +2013,6,27,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,0,,1315,0,1,1 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,939,17,1,1110,20,1,0 +2013,9,12,4,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1603,42,1,1658,56,1,0 +2013,6,9,7,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1845,64,1,2135,81,1,0 +2013,5,17,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,640,-1,0,1434,-30,0,0 +2013,4,5,5,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,840,-5,0,1028,0,0,0 +2013,4,29,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1935,24,1,2105,17,1,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,900,15,1,1255,13,0,0 +2013,5,3,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-2,0,1340,9,0,0 +2013,7,30,2,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,741,11,0,926,-5,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1815,28,1,2117,27,1,0 +2013,5,28,2,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,29,1,2015,19,1,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1101,-4,0,1236,-1,0,0 +2013,10,6,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1515,5,0,1605,4,0,0 +2013,8,4,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1314,13,0,1640,12,0,0 +2013,6,10,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1603,-13,0,1850,-25,0,0 +2013,8,6,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1543,25,1,2359,13,0,0 +2013,9,21,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,608,-8,0,800,-14,0,0 +2013,8,21,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1245,14,0,1425,18,1,0 +2013,8,28,3,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1745,0,0,1935,-5,0,0 +2013,10,26,6,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,630,-9,0,1107,-30,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1015,5,0,1412,-18,0,0 +2013,6,25,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-7,0,1348,-12,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1729,-3,0,1932,-1,0,0 +2013,10,1,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,809,-26,0,0 +2013,5,19,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,614,-3,0,1015,42,1,0 +2013,9,15,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1958,-3,0,2115,10,0,0 +2013,8,3,6,WN,11278,Ronald Reagan Washington National,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1710,-2,0,1925,-10,0,0 +2013,5,19,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1255,15,1,1405,12,0,0 +2013,4,3,3,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,605,-4,0,906,-6,0,0 +2013,5,31,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1025,53,1,1130,52,1,0 +2013,10,10,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2035,11,0,2155,2,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1640,54,1,2345,50,1,0 +2013,4,3,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,946,2,0,1239,-11,0,0 +2013,10,18,5,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1341,-4,0,1513,-16,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-3,0,905,-4,0,0 +2013,8,8,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,6,0,1319,1,0,0 +2013,7,22,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,44,1,2018,45,1,0 +2013,10,30,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1325,1,0,1625,-12,0,0 +2013,4,18,4,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1324,0,,1422,0,1,1 +2013,10,22,2,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,725,4,0,1112,13,0,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,55,1,1809,41,1,0 +2013,7,3,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1515,1,0,1630,-5,0,0 +2013,10,29,2,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1740,-3,0,1840,8,0,0 +2013,8,20,2,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1530,3,0,1840,24,1,0 +2013,8,24,6,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,-1,0,1014,7,0,0 +2013,10,29,2,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,705,-4,0,1029,15,1,0 +2013,7,23,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1349,184,1,1519,221,1,0 +2013,10,6,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,715,-3,0,850,-5,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1509,0,0,1741,-20,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,825,2,0,1025,4,0,0 +2013,8,12,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1530,22,1,1630,12,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1355,94,1,1559,87,1,0 +2013,4,16,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1237,2,0,1753,1,0,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1555,-4,0,1655,-6,0,0 +2013,9,23,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1445,-10,0,1605,-13,0,0 +2013,5,16,4,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1745,12,0,1855,4,0,0 +2013,10,27,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1744,-6,0,2116,-8,0,0 +2013,5,4,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,800,-18,0,0 +2013,6,8,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-1,0,1425,-18,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2020,2,0,2215,-1,0,0 +2013,6,19,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-3,0,1635,19,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1940,-1,0,2325,-5,0,0 +2013,4,25,4,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1216,12,0,1530,2,0,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,955,-3,0,1125,-10,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-5,0,1232,-4,0,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1645,0,0,1745,-7,0,0 +2013,8,31,6,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,745,-1,0,815,-4,0,0 +2013,9,24,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,26,1,1045,22,1,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1830,-6,0,2119,-5,0,0 +2013,8,30,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,-7,0,1939,-10,0,0 +2013,8,13,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1430,38,1,1555,34,1,0 +2013,4,15,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,805,15,1,929,5,0,0 +2013,6,19,3,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1645,-4,0,2003,-15,0,0 +2013,9,7,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,530,-7,0,810,-35,0,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1825,3,0,1925,-1,0,0 +2013,5,8,3,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,955,-11,0,1215,1,0,0 +2013,7,10,3,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,-8,0,1010,-25,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-3,0,1549,-20,0,0 +2013,8,28,3,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,605,-6,0,749,-25,0,0 +2013,4,11,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1915,88,1,2020,86,1,0 +2013,6,4,2,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,805,4,0,1305,-8,0,0 +2013,6,29,6,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,710,-2,0,1110,-16,0,0 +2013,10,25,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1045,-4,0,1202,-1,0,0 +2013,5,25,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,600,1,0,1028,-16,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,11,0,1050,1,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,935,-4,0,1315,-26,0,0 +2013,10,13,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1840,-1,0,1910,-2,0,0 +2013,8,30,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1530,42,1,1705,37,1,0 +2013,7,2,2,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,710,54,1,910,52,1,0 +2013,8,1,4,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,144,1,2308,124,1,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,0,,2215,0,1,1 +2013,8,14,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,715,-3,0,736,0,0,0 +2013,6,22,6,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-2,0,1039,17,1,0 +2013,4,20,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,2045,6,0,2320,18,1,0 +2013,4,1,1,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-14,0,2015,-28,0,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1535,-7,0,1635,-6,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1145,-5,0,1219,-3,0,0 +2013,10,24,4,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-4,0,445,-13,0,0 +2013,9,28,6,WN,14570,Reno/Tahoe International,Reno,NV,14057,Portland International,Portland,OR,1600,0,0,1720,6,0,0 +2013,6,9,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1951,7,0,2140,-17,0,0 +2013,8,22,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1759,42,1,2106,38,1,0 +2013,10,1,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-4,0,944,-15,0,0 +2013,7,23,2,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1910,-7,0,2023,-16,0,0 +2013,7,2,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,926,-7,0,1030,-20,0,0 +2013,4,16,2,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-8,0,1254,-13,0,0 +2013,4,29,1,WN,15304,Tampa International,Tampa,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,10,0,2235,8,0,0 +2013,9,14,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,83,1,1611,73,1,0 +2013,5,1,3,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-3,0,1320,-10,0,0 +2013,6,20,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1115,-3,0,1255,-23,0,0 +2013,10,13,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2135,10,0,615,-17,0,0 +2013,6,23,7,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,-3,0,2230,-12,0,0 +2013,4,2,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,-5,0,1135,-8,0,0 +2013,8,17,6,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-3,0,1329,14,0,0 +2013,7,17,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,18,1,1330,8,0,0 +2013,10,19,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1015,32,1,1230,18,1,0 +2013,5,24,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1132,-8,0,1335,-9,0,0 +2013,5,22,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,1055,-8,0,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1249,-10,0,1352,-6,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1254,6,0,2058,5,0,0 +2013,9,29,7,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-5,0,1905,-14,0,0 +2013,9,27,5,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,948,-2,0,1205,-2,0,0 +2013,5,27,1,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1258,-8,0,1533,-4,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1645,13,0,1910,8,0,0 +2013,8,16,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1713,-8,0,2057,-4,0,0 +2013,10,11,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1045,43,1,1155,33,1,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,7,0,2215,-3,0,0 +2013,6,11,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1930,7,0,2059,25,1,0 +2013,9,26,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1959,-2,0,2127,-15,0,0 +2013,7,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2050,10,0,2308,20,1,0 +2013,6,9,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,835,-1,0,1055,-13,0,0 +2013,7,5,5,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1600,-7,0,1705,-4,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1910,30,1,2015,28,1,0 +2013,10,15,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1123,57,1,1456,59,1,0 +2013,5,24,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,744,100,1,905,92,1,0 +2013,5,25,6,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2057,-5,0,453,28,1,0 +2013,5,25,6,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,-2,0,2018,-11,0,0 +2013,9,22,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,2,0,1634,0,0,0 +2013,6,5,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,0,0,1825,-29,0,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,825,164,1,1010,152,1,0 +2013,5,31,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,0,0,1930,-5,0,0 +2013,8,22,4,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,640,-15,0,0 +2013,4,25,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1656,18,1,2000,11,0,0 +2013,10,7,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,43,1,2000,38,1,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1825,-2,0,2010,-11,0,0 +2013,10,6,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1600,-5,0,1720,-4,0,0 +2013,8,15,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,3,0,2047,-7,0,0 +2013,7,3,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,30,1,1155,27,1,0 +2013,8,26,1,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,11,0,2135,7,0,0 +2013,10,12,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,4,0,859,2,0,0 +2013,7,20,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1905,0,,2115,0,1,1 +2013,8,25,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,6,0,1335,-7,0,0 +2013,9,16,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1245,6,0,1352,2,0,0 +2013,8,13,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,11,0,545,-3,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2035,-1,0,2305,17,1,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,7,0,1727,39,1,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,-4,0,1735,-7,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1735,0,0,2045,-2,0,0 +2013,8,12,1,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,900,-3,0,1036,-5,0,0 +2013,5,2,4,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1602,-7,0,1814,-11,0,0 +2013,10,20,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1625,-2,0,1730,5,0,0 +2013,8,20,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1535,-3,0,1715,-1,0,0 +2013,6,4,2,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,745,-8,0,1239,-22,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1908,-1,0,2100,-14,0,0 +2013,7,6,6,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1341,-2,0,1600,-4,0,0 +2013,5,7,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1935,6,0,2159,-8,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-1,0,1535,8,0,0 +2013,8,2,5,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,3,0,715,-4,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,745,42,1,915,35,1,0 +2013,8,7,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,-1,0,1010,-7,0,0 +2013,4,7,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1542,-2,0,1828,-5,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,900,-9,0,0 +2013,10,21,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,901,0,0,1013,3,0,0 +2013,7,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1750,232,1,1900,220,1,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1909,69,1,2030,59,1,0 +2013,10,25,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1010,15,1,1220,-12,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,905,10,0,1155,8,0,0 +2013,10,23,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,820,0,0,1130,0,0,0 +2013,4,12,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1115,10,0,1240,2,0,0 +2013,6,24,1,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-6,0,2205,28,1,0 +2013,9,24,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1300,-7,0,1409,-10,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,700,-1,0,1035,-20,0,0 +2013,10,23,3,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,2145,-10,0,0 +2013,9,15,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1100,-5,0,1432,-16,0,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,954,7,0,1214,-9,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1425,17,1,1820,13,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,600,-2,0,935,-16,0,0 +2013,9,2,1,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1724,3,0,1907,-9,0,0 +2013,8,15,4,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,3,88,1,507,75,1,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1745,15,1,1928,11,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1006,18,1,1141,9,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,1,0,1315,-17,0,0 +2013,5,15,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-10,0,2113,-14,0,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1710,1,0,2015,-20,0,0 +2013,8,5,1,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1901,-7,0,2003,-10,0,0 +2013,10,2,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1520,8,0,1710,7,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,805,26,1,1255,19,1,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,625,-6,0,820,-11,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,-5,0,1430,-4,0,0 +2013,8,26,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2055,-4,0,2220,-15,0,0 +2013,6,14,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,845,70,1,1024,65,1,0 +2013,7,19,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2020,4,0,2255,5,0,0 +2013,8,26,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1018,-6,0,1101,-14,0,0 +2013,9,29,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1255,-14,0,0 +2013,5,3,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,26,1,1329,25,1,0 +2013,5,4,6,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1555,-2,0,1840,-2,0,0 +2013,4,5,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1430,6,0,1530,10,0,0 +2013,8,2,5,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,5,0,1400,1,0,0 +2013,5,28,2,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,930,1,0,1100,-3,0,0 +2013,7,1,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,4,0,1305,-7,0,0 +2013,7,26,5,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1525,32,1,1550,30,1,0 +2013,9,14,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-4,0,1845,-11,0,0 +2013,4,15,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1559,8,0,1906,18,1,0 +2013,6,7,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2114,15,1,2334,24,1,0 +2013,4,13,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1107,-5,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1525,0,0,1654,-20,0,0 +2013,5,3,5,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,4,0,1805,8,0,0 +2013,7,11,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-3,0,1631,32,1,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1745,1,0,1935,-14,0,0 +2013,10,24,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,1020,3,0,1230,-6,0,0 +2013,8,20,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1705,15,1,1746,11,0,0 +2013,4,13,6,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1740,-5,0,2030,-1,0,0 +2013,7,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1500,-1,0,1745,-2,0,0 +2013,5,4,6,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-7,0,1215,-13,0,0 +2013,6,27,4,FL,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1908,2,0,2213,-6,0,0 +2013,10,12,6,UA,12173,Honolulu International,Honolulu,HI,11292,Denver International,Denver,CO,2210,-4,0,844,-12,0,0 +2013,8,3,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1736,0,0,1906,3,0,0 +2013,6,3,1,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,-7,0,2201,-17,0,0 +2013,5,14,2,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-6,0,745,-13,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1450,65,1,1645,70,1,0 +2013,4,4,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2050,226,1,2300,206,1,0 +2013,4,29,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,29,1,1315,33,1,0 +2013,6,29,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1848,20,1,2025,18,1,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2143,0,0,2248,0,0,0 +2013,10,25,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1540,10,0,1905,-1,0,0 +2013,7,22,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,1050,7,0,1800,7,0,0 +2013,5,14,2,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1330,74,1,1556,74,1,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1440,93,1,1640,78,1,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10299,Ted Stevens Anchorage International,Anchorage,AK,1525,98,1,1915,101,1,0 +2013,10,5,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1715,-2,0,1900,-22,0,0 +2013,5,19,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,-1,0,500,-3,0,0 +2013,8,28,3,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1750,-2,0,2045,3,0,0 +2013,4,6,6,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,830,-1,0,1136,2,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1917,-4,0,2055,-8,0,0 +2013,9,11,3,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1315,-2,0,1426,-7,0,0 +2013,9,20,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,25,1,1337,11,0,0 +2013,7,14,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,14,0,2111,37,1,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,6,0,930,1,0,0 +2013,5,9,4,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1701,-10,0,1803,-6,0,0 +2013,7,21,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,715,-3,0,734,-13,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,812,0,0,921,-13,0,0 +2013,10,16,3,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1036,-10,0,1302,-11,0,0 +2013,8,1,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1015,0,0,1353,28,1,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,5,0,1400,4,0,0 +2013,10,28,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1526,-7,0,1711,23,1,0 +2013,9,18,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1055,4,0,1220,6,0,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1207,-6,0,1435,-3,0,0 +2013,9,1,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1922,-8,0,1956,-7,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1356,61,1,1507,50,1,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,905,0,0,1140,2,0,0 +2013,5,28,2,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,759,-3,0,1020,-30,0,0 +2013,5,16,4,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2200,6,0,2312,20,1,0 +2013,5,26,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1320,-2,0,1530,-17,0,0 +2013,9,3,2,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1810,35,1,2055,-3,0,0 +2013,8,13,2,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-5,0,1151,33,1,0 +2013,5,14,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-12,0,635,-22,0,0 +2013,7,8,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,1,0,2000,0,0,0 +2013,6,8,6,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1155,-1,0,1405,-30,0,0 +2013,7,25,4,9E,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-7,0,1718,-28,0,0 +2013,9,9,1,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2230,-7,0,610,0,0,0 +2013,10,7,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,645,-1,0,800,8,0,0 +2013,10,8,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,625,-1,0,935,-31,0,0 +2013,4,12,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1405,133,1,1659,116,1,0 +2013,9,14,6,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,1450,-3,0,1830,-7,0,0 +2013,10,15,2,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-5,0,1733,-5,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1540,-5,0,1930,-6,0,0 +2013,10,7,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,-5,0,1542,-15,0,0 +2013,10,24,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,44,1,2125,42,1,0 +2013,7,19,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,0,,2020,0,1,1 +2013,6,18,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1540,23,1,1655,25,1,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,-5,0,2346,-23,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1045,3,0,1140,10,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-1,0,1526,18,1,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1955,0,0,2128,-1,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,8,0,1250,-3,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1743,-3,0,1920,-12,0,0 +2013,8,3,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,902,-3,0,1145,-19,0,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,2145,-2,0,520,7,0,0 +2013,7,20,6,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,12,0,1330,2,0,0 +2013,10,19,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,-7,0,1931,-1,0,0 +2013,10,12,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1855,3,0,2135,-18,0,0 +2013,7,16,2,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1753,118,1,1900,108,1,0 +2013,5,18,6,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-3,0,1814,-11,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1640,-3,0,1825,20,1,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1010,-1,0,1157,22,1,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,-3,0,1010,-6,0,0 +2013,4,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,4,0,1305,3,0,0 +2013,5,31,5,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1710,41,1,2157,24,1,0 +2013,5,24,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2100,-4,0,2340,-21,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2025,10,0,2145,1,0,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1550,1,0,1940,-11,0,0 +2013,4,8,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,840,8,0,1310,3,0,0 +2013,8,26,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1250,-2,0,1420,-23,0,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1040,-1,0,1855,-13,0,0 +2013,9,9,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,9,0,1145,4,0,0 +2013,4,26,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-2,0,1953,-5,0,0 +2013,8,22,4,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,538,85,1,945,76,1,0 +2013,7,28,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-1,0,1010,1,0,0 +2013,5,16,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1902,-2,0,2030,6,0,0 +2013,9,12,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,13,0,1459,14,0,0 +2013,6,13,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-3,0,1600,-15,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1350,-1,0,1627,-4,0,0 +2013,4,17,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,800,3,0,1406,9,0,0 +2013,10,9,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1050,-1,0,1340,-12,0,0 +2013,6,2,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-8,0,2005,-19,0,0 +2013,9,5,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1955,29,1,2125,20,1,0 +2013,4,28,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1357,20,1,1540,29,1,0 +2013,7,7,7,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1255,-8,0,1615,-19,0,0 +2013,10,29,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,-7,0,1627,-25,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,729,0,0,901,-13,0,0 +2013,7,3,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1040,-21,0,0 +2013,10,29,2,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1445,-3,0,1757,-38,0,0 +2013,10,6,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,650,-6,0,841,-18,0,0 +2013,4,19,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,700,-5,0,1010,-9,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,15,1,2112,13,0,0 +2013,8,8,4,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1438,51,1,1659,22,1,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,940,0,,1240,0,1,1 +2013,7,23,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-9,0,1400,-7,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,-6,0,1953,-21,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,0,0,1029,-7,0,0 +2013,6,15,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1725,72,1,2045,32,1,0 +2013,4,1,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1406,15,1,1632,26,1,0 +2013,7,13,6,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1303,-6,0,1431,-11,0,0 +2013,4,29,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1355,39,1,1610,33,1,0 +2013,8,10,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1205,-5,0,1645,-28,0,0 +2013,7,21,7,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1330,0,0,1447,-15,0,0 +2013,9,8,7,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1210,-14,0,1730,-15,0,0 +2013,6,19,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,-6,0,2118,-11,0,0 +2013,7,14,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,2,0,952,-6,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-6,0,801,-11,0,0 +2013,8,19,1,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,650,-6,0,812,3,0,0 +2013,8,13,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,615,5,0,705,3,0,0 +2013,6,12,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,800,-6,0,930,1,0,0 +2013,10,6,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1555,49,1,1850,45,1,0 +2013,4,20,6,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,1540,-4,0,1740,2,0,0 +2013,10,17,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,2002,-7,0,2245,-6,0,0 +2013,7,21,7,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-9,0,1104,-15,0,0 +2013,10,1,2,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1240,1,0,1425,-29,0,0 +2013,4,6,6,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2155,-7,0,535,-5,0,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,19,1,853,12,0,0 +2013,4,21,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,1,0,1620,4,0,0 +2013,8,31,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,935,-1,0,1050,29,1,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1325,-3,0,1627,29,1,0 +2013,9,24,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1117,3,0,1250,11,0,0 +2013,7,19,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1320,12,0,1435,6,0,0 +2013,10,21,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,-3,0,1435,-14,0,0 +2013,8,27,2,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1157,-8,0,1311,-22,0,0 +2013,7,30,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,-3,0,1445,-22,0,0 +2013,6,30,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-6,0,1323,-22,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-2,0,945,-5,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1115,11,0,1319,4,0,0 +2013,6,25,2,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-4,0,1235,-8,0,0 +2013,4,6,6,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,840,0,0,1010,-7,0,0 +2013,7,8,1,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1800,76,1,2015,72,1,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1915,18,1,2054,33,1,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2004,209,1,2306,191,1,0 +2013,7,6,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1950,2,0,2255,-19,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,139,1,1745,120,1,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1240,12,0,1400,30,1,0 +2013,5,27,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1125,13,0,1400,38,1,0 +2013,9,23,1,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2140,0,0,2159,-2,0,0 +2013,7,24,3,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,2000,1,0,2200,-13,0,0 +2013,4,3,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,630,-2,0,730,-8,0,0 +2013,10,25,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-2,0,859,9,0,0 +2013,9,19,4,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,62,1,1355,52,1,0 +2013,7,13,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1242,14,0,1805,20,1,0 +2013,4,27,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-4,0,1343,-4,0,0 +2013,5,4,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,955,0,0,1215,18,1,0 +2013,5,13,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-9,0,2015,-14,0,0 +2013,6,26,3,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1730,103,1,2017,169,1,0 +2013,8,17,6,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,600,9,0,921,-15,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,17,1,1945,9,0,0 +2013,7,4,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,15,1,1254,15,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1752,69,1,1953,60,1,0 +2013,9,3,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-3,0,1832,-7,0,0 +2013,10,14,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,700,-4,0,858,-5,0,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1020,95,1,1455,119,1,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1725,-3,0,1955,-10,0,0 +2013,7,19,5,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,1505,7,0,1758,10,0,0 +2013,10,6,7,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1411,2,0,0 +2013,9,6,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2000,45,1,2245,39,1,0 +2013,8,21,3,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,-3,0,1823,3,0,0 +2013,8,12,1,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1055,-4,0,1235,-5,0,0 +2013,6,16,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1555,-2,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,-7,0,812,-7,0,0 +2013,6,6,4,UA,14570,Reno/Tahoe International,Reno,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1222,29,1,1805,20,1,0 +2013,6,18,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,2012,-4,0,2136,5,0,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,636,-1,0,912,2,0,0 +2013,10,18,5,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1654,-6,0,1915,31,1,0 +2013,4,17,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1625,60,1,1915,44,1,0 +2013,8,24,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1108,-3,0,1222,-25,0,0 +2013,8,17,6,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2139,6,0,2300,-19,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-2,0,1033,-9,0,0 +2013,8,22,4,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-10,0,1153,-21,0,0 +2013,8,18,7,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-2,0,1120,-10,0,0 +2013,9,9,1,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1140,-6,0,1334,-14,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1215,16,1,1510,0,0,0 +2013,9,30,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,0,0,1030,-2,0,0 +2013,4,10,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1030,0,0,1309,-18,0,0 +2013,10,10,4,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1125,-3,0,1430,-6,0,0 +2013,5,15,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1124,0,0,1627,3,0,0 +2013,9,15,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,954,-7,0,1131,-4,0,0 +2013,9,29,7,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1540,-2,0,2150,-25,0,0 +2013,10,1,2,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1215,4,0,2100,-24,0,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,-4,0,1300,6,0,0 +2013,4,16,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1555,-6,0,1838,-7,0,0 +2013,8,9,5,YV,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1105,0,0,1229,-6,0,0 +2013,5,15,3,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2106,1,0,2339,-6,0,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,915,-3,0,1205,-9,0,0 +2013,4,13,6,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-5,0,1107,-28,0,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,-3,0,1705,-15,0,0 +2013,7,30,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-3,0,1335,-10,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1612,-10,0,44,-8,0,0 +2013,6,26,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1908,191,1,2006,181,1,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1850,18,1,2015,11,0,0 +2013,5,15,3,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1915,7,0,2250,-7,0,0 +2013,7,5,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1235,-22,0,0 +2013,5,5,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2000,124,1,2120,114,1,0 +2013,9,12,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1055,24,1,1220,43,1,0 +2013,9,23,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,606,-6,0,730,-11,0,0 +2013,7,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1045,-2,0,1418,-10,0,0 +2013,7,9,2,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1241,-14,0,0 +2013,8,18,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1510,-8,0,1620,35,1,0 +2013,8,3,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,2,0,930,-10,0,0 +2013,4,12,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2015,-9,0,2133,-10,0,0 +2013,7,9,2,FL,14635,Southwest Florida International,Fort Myers,FL,14122,Pittsburgh International,Pittsburgh,PA,1020,4,0,1245,10,0,0 +2013,4,5,5,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1942,12,0,2103,1,0,0 +2013,5,22,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,1,0,1435,-27,0,0 +2013,8,31,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-3,0,1038,-21,0,0 +2013,7,5,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1208,-11,0,1330,3,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,705,-1,0,1140,-2,0,0 +2013,9,6,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1210,-7,0,1325,-9,0,0 +2013,4,1,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1757,128,1,2157,106,1,0 +2013,10,12,6,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1917,-7,0,2048,-20,0,0 +2013,7,9,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-8,0,1320,-28,0,0 +2013,5,16,4,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1859,17,1,2142,22,1,0 +2013,8,22,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,-1,0,2155,-9,0,0 +2013,4,6,6,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,0,0,1720,-7,0,0 +2013,4,24,3,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1135,56,1,1920,71,1,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-3,0,1256,-10,0,0 +2013,8,11,7,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,4,0,2142,15,1,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,610,2,0,846,-6,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1645,2,0,1905,4,0,0 +2013,6,5,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,16,1,1424,11,0,0 +2013,6,7,5,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1100,-8,0,1430,-23,0,0 +2013,8,2,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,730,-4,0,1112,-14,0,0 +2013,4,19,5,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,635,-4,0,852,-18,0,0 +2013,5,27,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2000,0,0,2059,-1,0,0 +2013,4,17,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-6,0,847,3,0,0 +2013,8,4,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1910,5,0,2015,-3,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1810,53,1,1915,55,1,0 +2013,5,11,6,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,745,-5,0,1036,-14,0,0 +2013,6,23,7,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1130,-8,0,1837,-10,0,0 +2013,4,17,3,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1529,0,,1920,0,1,1 +2013,4,2,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,525,-8,0,702,0,0,0 +2013,7,24,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,735,-1,0,0 +2013,9,16,1,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1000,-8,0,1115,-11,0,0 +2013,9,20,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,625,-1,0,1010,-10,0,0 +2013,10,23,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1340,-6,0,1522,5,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2216,-3,0,2357,-11,0,0 +2013,9,29,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1133,-2,0,2011,-9,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1840,4,0,2100,-11,0,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,2345,-2,0,735,-26,0,0 +2013,7,12,5,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1515,1,0,1816,1,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-3,0,1159,-19,0,0 +2013,10,17,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1942,-2,0,2219,-8,0,0 +2013,5,20,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-1,0,1348,0,0,0 +2013,9,26,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,58,1,1825,42,1,0 +2013,8,1,4,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1230,-3,0,1450,-6,0,0 +2013,4,5,5,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1658,-3,0,1839,1,0,0 +2013,7,31,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1415,0,0,1645,-17,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,835,-6,0,945,-20,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,650,2,0,813,5,0,0 +2013,4,1,1,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-9,0,1026,-12,0,0 +2013,9,23,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,12,0,1459,8,0,0 +2013,7,3,3,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,5,0,1320,-7,0,0 +2013,4,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,10,0,1131,26,1,0 +2013,4,10,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1550,0,,1655,0,1,1 +2013,6,9,7,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,0,0,1351,-14,0,0 +2013,8,8,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,0,0,1435,0,0,0 +2013,4,23,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1200,22,1,1440,20,1,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,-4,0,1106,-2,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1343,20,1,1510,16,1,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,813,-3,0,1330,-11,0,0 +2013,4,21,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-8,0,2026,-9,0,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2243,2,0,15,4,0,0 +2013,7,20,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1017,40,1,1344,41,1,0 +2013,10,15,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,0,0,1353,-19,0,0 +2013,7,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1754,57,1,1907,50,1,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1225,-5,0,1406,3,0,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1200,1,0,1325,-4,0,0 +2013,5,11,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1255,0,,1428,0,1,1 +2013,9,22,7,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,5,0,1850,-2,0,0 +2013,4,14,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,930,-4,0,1045,-26,0,0 +2013,4,9,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,-2,0,1630,-9,0,0 +2013,4,5,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,1348,-11,0,0 +2013,4,12,5,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,600,-4,0,822,-8,0,0 +2013,4,18,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,605,16,1,800,8,0,0 +2013,8,6,2,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,-4,0,1357,-9,0,0 +2013,4,26,5,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1825,6,0,2025,2,0,0 +2013,5,13,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1328,-4,0,1717,7,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,48,1,1935,48,1,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1345,-5,0,1440,-13,0,0 +2013,5,29,3,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1415,-5,0,1705,-9,0,0 +2013,6,2,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,0,0,1400,-11,0,0 +2013,9,19,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,3,0,800,-2,0,0 +2013,4,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,21,1,2327,35,1,0 +2013,5,8,3,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1858,-6,0,2130,-13,0,0 +2013,10,18,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-9,0,1417,-5,0,0 +2013,9,18,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-2,0,1900,-9,0,0 +2013,8,2,5,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,600,-8,0,850,-8,0,0 +2013,8,15,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1630,8,0,1800,3,0,0 +2013,4,19,5,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1500,-4,0,1820,-2,0,0 +2013,9,27,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1627,-2,0,1905,-9,0,0 +2013,6,30,7,DL,13244,Memphis International,Memphis,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,-5,0,1653,5,0,0 +2013,8,17,6,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1435,156,1,2255,148,1,0 +2013,5,2,4,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1925,-2,0,2303,-47,0,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-5,0,1020,29,1,0 +2013,8,15,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1810,-2,0,1940,2,0,0 +2013,8,14,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1730,3,0,2026,1,0,0 +2013,9,10,2,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1010,-2,0,1120,0,0,0 +2013,10,29,2,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1930,-2,0,2030,15,1,0 +2013,8,29,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1158,-11,0,1440,-2,0,0 +2013,5,1,3,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,600,-4,0,706,2,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1345,11,0,1600,16,1,0 +2013,5,27,1,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1130,10,0,1440,-3,0,0 +2013,5,25,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,-1,0,2340,-7,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1620,2,0,1835,-16,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-3,0,2012,-21,0,0 +2013,6,29,6,WN,12889,McCarran International,Las Vegas,NV,10529,Bradley International,Hartford,CT,900,46,1,1655,38,1,0 +2013,10,25,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1020,-4,0,1245,-13,0,0 +2013,7,22,1,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,735,-4,0,1050,-13,0,0 +2013,6,5,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,-4,0,1454,-13,0,0 +2013,4,26,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1011,25,1,1313,14,0,0 +2013,5,21,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,73,1,2021,93,1,0 +2013,7,20,6,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1625,-2,0,1757,0,0,0 +2013,8,4,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,515,0,0,720,6,0,0 +2013,7,29,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-8,0,1902,-10,0,0 +2013,8,18,7,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1700,3,0,1954,0,0,0 +2013,8,12,1,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,917,-2,0,1130,-11,0,0 +2013,5,30,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1214,-7,0,1430,-27,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1100,23,1,1145,18,1,0 +2013,9,17,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-2,0,1025,1,0,0 +2013,8,26,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1820,7,0,2052,9,0,0 +2013,6,19,3,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,720,0,0,945,-4,0,0 +2013,5,31,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1545,15,1,1900,-14,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1700,0,0,1825,0,0,0 +2013,6,20,4,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,630,-3,0,720,-6,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,5,0,1025,9,0,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1825,-4,0,1925,-1,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,0,0,2046,-12,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2005,10,0,2320,-9,0,0 +2013,8,3,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,740,40,1,900,38,1,0 +2013,4,17,3,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,2210,23,1,2338,8,0,0 +2013,8,27,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,908,-3,0,1100,-27,0,0 +2013,4,23,2,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,642,-8,0,808,-3,0,0 +2013,7,2,2,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,732,-3,0,1046,-15,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,2,0,2006,-2,0,0 +2013,5,5,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,-7,0,2211,-12,0,0 +2013,6,9,7,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,27,1,1020,29,1,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,730,-4,0,834,0,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,40,1,2047,14,0,0 +2013,5,10,5,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1350,-3,0,1628,5,0,0 +2013,5,28,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-5,0,1150,-13,0,0 +2013,9,25,3,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,1715,16,1,1840,-9,0,0 +2013,5,5,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2135,124,1,2245,125,1,0 +2013,5,13,1,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1924,-1,0,2110,-20,0,0 +2013,6,18,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-9,0,2045,3,0,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1300,1,0,1435,-12,0,0 +2013,6,4,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1820,-5,0,2111,-20,0,0 +2013,6,14,5,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1841,0,0,2019,-1,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1625,9,0,1755,-5,0,0 +2013,9,20,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,109,1,2000,102,1,0 +2013,7,20,6,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,203,1,1710,197,1,0 +2013,10,14,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2059,38,1,2211,26,1,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,830,4,0,1010,1,0,0 +2013,6,1,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1430,18,1,1810,29,1,0 +2013,7,3,3,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,615,-4,0,752,8,0,0 +2013,9,11,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1755,-9,0,2052,-8,0,0 +2013,8,2,5,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,220,1,942,231,1,0 +2013,9,3,2,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-4,0,1028,-20,0,0 +2013,10,21,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,905,-5,0,1022,-3,0,0 +2013,5,17,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,6,0,741,-10,0,0 +2013,7,12,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-7,0,1611,-1,0,0 +2013,9,29,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-7,0,1547,-6,0,0 +2013,8,8,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,39,1,2046,75,1,0 +2013,9,17,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1610,-11,0,1759,-18,0,0 +2013,5,31,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,83,1,2045,90,1,0 +2013,7,23,2,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,755,112,1,925,101,1,0 +2013,9,26,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1803,-4,0,1944,-23,0,0 +2013,4,28,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1930,-2,0,2115,1,0,0 +2013,4,6,6,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,935,-5,0,1305,-12,0,0 +2013,7,31,3,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1126,-5,0,1246,0,0,0 +2013,7,2,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,1386,1,1250,1394,1,0 +2013,5,20,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,19,1,1221,20,1,0 +2013,4,25,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,855,-11,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1015,13,0,1150,-3,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2115,153,1,2346,149,1,0 +2013,4,21,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,935,-7,0,1155,-8,0,0 +2013,9,4,3,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,650,-4,0,745,-13,0,0 +2013,8,21,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,-8,0,1945,-1,0,0 +2013,10,30,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1652,-1,0,1747,-12,0,0 +2013,8,23,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,2040,9,0,2140,7,0,0 +2013,9,16,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1915,14,0,2243,-9,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,600,-5,0,910,-18,0,0 +2013,4,10,3,WN,13931,Norfolk International,Norfolk,VA,15304,Tampa International,Tampa,FL,905,-4,0,1110,-14,0,0 +2013,4,20,6,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,2059,39,1,2344,18,1,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,11,0,1901,-3,0,0 +2013,8,2,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,-4,0,840,-15,0,0 +2013,10,14,1,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,1010,-1,0,1250,16,1,0 +2013,9,29,7,OO,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,10,0,1746,6,0,0 +2013,8,8,4,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,704,-8,0,835,-15,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,800,26,1,930,34,1,0 +2013,8,9,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,608,-7,0,719,-10,0,0 +2013,6,9,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1135,6,0,1420,3,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,42,1,1110,48,1,0 +2013,10,27,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2040,2,0,2215,-13,0,0 +2013,6,15,6,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1715,0,0,2010,-13,0,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,941,-1,0,1259,-16,0,0 +2013,6,21,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1850,-2,0,2020,-7,0,0 +2013,8,20,2,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,715,-16,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-5,0,1407,-7,0,0 +2013,6,12,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,-4,0,1550,-10,0,0 +2013,10,19,6,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,1110,6,0,1440,-4,0,0 +2013,5,9,4,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2355,8,0,815,4,0,0 +2013,6,14,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,5,0,2030,3,0,0 +2013,9,23,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,805,-1,0,910,-2,0,0 +2013,10,24,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1140,-1,0,1343,-15,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2202,-4,0,2246,-16,0,0 +2013,7,21,7,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,79,1,2019,68,1,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2025,-8,0,2124,10,0,0 +2013,7,9,2,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,925,-6,0,1210,-19,0,0 +2013,9,1,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1250,-14,0,1414,-26,0,0 +2013,10,21,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,802,-2,0,1331,-15,0,0 +2013,10,27,7,9E,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1550,-6,0,1816,-17,0,0 +2013,9,26,4,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1445,5,0,1811,7,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1659,-1,0,1845,-13,0,0 +2013,10,14,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-8,0,1145,-13,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14635,Southwest Florida International,Fort Myers,FL,905,-1,0,1329,-12,0,0 +2013,5,30,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1848,-7,0,2000,27,1,0 +2013,7,4,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1735,-3,0,2045,2,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,11,0,2330,12,0,0 +2013,8,31,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1114,-7,0,1204,-10,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1225,-1,0,1430,5,0,0 +2013,7,9,2,DL,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2148,-4,0,555,-15,0,0 +2013,4,24,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1110,7,0,1323,9,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,7,0,859,4,0,0 +2013,6,28,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1545,65,1,2005,75,1,0 +2013,4,28,7,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,700,-5,0,1450,7,0,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1740,45,1,1935,50,1,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,1,0,1745,-7,0,0 +2013,9,9,1,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,735,-7,0,1000,-21,0,0 +2013,5,15,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2300,5,0,617,-13,0,0 +2013,5,7,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2111,0,0,509,-4,0,0 +2013,6,15,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,14,0,2215,-2,0,0 +2013,8,2,5,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,753,-23,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,635,-4,0,819,-13,0,0 +2013,8,2,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1038,-3,0,1129,5,0,0 +2013,5,21,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1150,16,1,1515,26,1,0 +2013,8,22,4,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1444,0,,1617,0,1,1 +2013,9,6,5,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1830,13,0,2025,6,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1725,48,1,1955,36,1,0 +2013,7,31,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-8,0,709,-6,0,0 +2013,5,1,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,819,-6,0,0 +2013,8,13,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,34,1,2120,47,1,0 +2013,5,14,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1259,-2,0,1534,-19,0,0 +2013,5,16,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1050,4,0,1300,-11,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1355,47,1,1600,43,1,0 +2013,6,1,6,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,19,1,1357,11,0,0 +2013,7,1,1,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1659,115,1,1823,103,1,0 +2013,4,28,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1130,-4,0,1441,-31,0,0 +2013,5,30,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,13,0,1826,7,0,0 +2013,5,28,2,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,1016,-5,0,0 +2013,8,10,6,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1245,-2,0,1520,-15,0,0 +2013,7,5,5,EV,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,805,-8,0,918,-24,0,0 +2013,8,3,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,602,0,0,843,-16,0,0 +2013,6,17,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-3,0,1251,-30,0,0 +2013,7,5,5,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1020,-11,0,1200,-5,0,0 +2013,7,9,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1120,-2,0,1249,6,0,0 +2013,8,10,6,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1714,108,1,1903,95,1,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,-4,0,1410,-13,0,0 +2013,9,15,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,715,-5,0,1106,-16,0,0 +2013,7,16,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,700,0,0,905,-27,0,0 +2013,8,28,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-3,0,1353,-11,0,0 +2013,8,4,7,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-8,0,1205,-10,0,0 +2013,8,1,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1658,133,1,1840,155,1,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,0,,1720,0,1,1 +2013,4,29,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-8,0,2220,-5,0,0 +2013,5,21,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1929,49,1,2059,33,1,0 +2013,5,27,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2120,17,1,2235,12,0,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1900,12,0,2230,-11,0,0 +2013,9,6,5,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,545,-6,0,803,-12,0,0 +2013,10,22,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,12,0,1000,7,0,0 +2013,4,9,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-8,0,1306,-4,0,0 +2013,8,18,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-2,0,905,6,0,0 +2013,9,14,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,5,0,1345,-13,0,0 +2013,4,24,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,4,0,1916,-22,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1959,-6,0,2145,-15,0,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,850,-5,0,955,-10,0,0 +2013,5,15,3,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,710,-2,0,930,2,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2045,-8,0,2247,-22,0,0 +2013,4,29,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1515,7,0,1635,0,0,0 +2013,9,18,3,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1214,-7,0,1300,-2,0,0 +2013,5,1,3,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1621,29,1,1855,53,1,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,19,1,2205,12,0,0 +2013,6,27,4,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1305,-9,0,1530,-11,0,0 +2013,8,9,5,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,-4,0,2257,-25,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1221,22,1,1457,-2,0,0 +2013,4,11,4,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1855,2,0,2010,8,0,0 +2013,6,15,6,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,710,-7,0,837,-15,0,0 +2013,5,14,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,830,-1,0,925,-4,0,0 +2013,5,24,5,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1617,-4,0,1840,1,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1700,58,1,1850,61,1,0 +2013,10,11,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,845,-8,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1940,39,1,2105,43,1,0 +2013,5,25,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1840,0,0,2029,-5,0,0 +2013,10,6,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,15,1,2309,13,0,0 +2013,4,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,0,0,1155,-14,0,0 +2013,5,15,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1544,-2,0,1700,-6,0,0 +2013,7,8,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1235,-2,0,1707,4,0,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1606,-7,0,1909,-19,0,0 +2013,6,27,4,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-5,0,1250,-4,0,0 +2013,8,4,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1730,2,0,2017,-13,0,0 +2013,6,19,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-5,0,900,-17,0,0 +2013,4,11,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-4,0,1240,-9,0,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1325,20,1,1450,10,0,0 +2013,9,20,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,9,0,2130,4,0,0 +2013,7,9,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1140,-4,0,1352,-6,0,0 +2013,10,29,2,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,0,0,2132,1,0,0 +2013,7,29,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,59,1,1840,41,1,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1510,114,1,1608,123,1,0 +2013,7,13,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,730,-1,0,852,-1,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2252,8,0,2339,-7,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,19,1,2112,62,1,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2003,56,1,2220,104,1,0 +2013,10,24,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1705,-4,0,1950,-13,0,0 +2013,9,11,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,940,-6,0,1225,-22,0,0 +2013,9,23,1,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,-7,0,1220,-19,0,0 +2013,10,25,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1815,54,1,2145,45,1,0 +2013,7,18,4,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1710,13,0,1815,10,0,0 +2013,7,18,4,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1456,1,0,1636,-1,0,0 +2013,8,13,2,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2130,9,0,555,-1,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1015,9,0,1148,8,0,0 +2013,6,14,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1207,13,0,1427,1,0,0 +2013,6,24,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1835,30,1,2109,32,1,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1052,113,1,1650,86,1,0 +2013,9,8,7,9E,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1758,-13,0,1920,-2,0,0 +2013,7,10,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1005,-3,0,1220,-3,0,0 +2013,8,25,7,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1725,7,0,1840,-24,0,0 +2013,5,1,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1703,4,0,1831,4,0,0 +2013,4,12,5,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1150,-2,0,1249,-14,0,0 +2013,8,17,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,6,0,1235,5,0,0 +2013,8,12,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-1,0,1056,5,0,0 +2013,9,19,4,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,-8,0,813,-41,0,0 +2013,4,10,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,746,-15,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2100,-6,0,2212,-19,0,0 +2013,5,17,5,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,1025,-3,0,1810,-13,0,0 +2013,9,19,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1605,56,1,1700,51,1,0 +2013,10,29,2,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1755,11,0,2052,5,0,0 +2013,8,11,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,950,0,0,1055,1,0,0 +2013,5,28,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,855,-3,0,1337,-10,0,0 +2013,9,29,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1600,7,0,1710,5,0,0 +2013,10,8,2,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1040,-7,0,1200,-13,0,0 +2013,5,8,3,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,-2,0,1925,-9,0,0 +2013,10,5,6,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,710,6,0,805,-1,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,800,2,0,1050,-5,0,0 +2013,6,20,4,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2010,137,1,2220,128,1,0 +2013,7,6,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-7,0,1628,-19,0,0 +2013,6,23,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,848,7,0,0 +2013,4,15,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1520,115,1,1835,102,1,0 +2013,4,27,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1602,55,1,1650,43,1,0 +2013,8,7,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,620,-3,0,737,3,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2100,85,1,2235,105,1,0 +2013,9,16,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1020,12,0,1140,11,0,0 +2013,9,2,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1704,-2,0,1842,-13,0,0 +2013,4,1,1,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1240,5,0,1356,13,0,0 +2013,4,10,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,910,-4,0,1029,-15,0,0 +2013,8,21,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,1,0,1737,8,0,0 +2013,4,10,3,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1430,48,1,1814,57,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,-1,0,1530,-1,0,0 +2013,5,7,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1455,1,0,1620,-8,0,0 +2013,5,10,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,940,-2,0,1057,-2,0,0 +2013,6,11,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1650,8,0,1805,-2,0,0 +2013,8,19,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1740,22,1,1959,28,1,0 +2013,4,19,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,-1,0,2212,4,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,10,0,1716,45,1,0 +2013,10,30,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1435,-3,0,1620,-9,0,0 +2013,10,31,4,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,-6,0,1046,-12,0,0 +2013,8,2,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,30,1,1555,52,1,0 +2013,4,24,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1215,-4,0,1355,5,0,0 +2013,7,11,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-8,0,1914,-8,0,0 +2013,9,18,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1545,13,0,1645,43,1,0 +2013,6,17,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1939,85,1,2105,94,1,0 +2013,8,11,7,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1850,9,0,2134,1,0,0 +2013,9,30,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1315,-2,0,1340,-16,0,0 +2013,4,2,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1409,5,0,1714,-13,0,0 +2013,6,26,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,-2,0,1430,-10,0,0 +2013,6,1,6,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,825,6,0,1055,3,0,0 +2013,10,13,7,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,600,-7,0,927,-20,0,0 +2013,5,18,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-7,0,2052,-17,0,0 +2013,7,31,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2155,0,0,2335,15,1,0 +2013,4,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-1,0,1105,-4,0,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,840,-22,0,0 +2013,7,11,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1654,117,1,1843,108,1,0 +2013,9,12,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1715,9,0,1825,-1,0,0 +2013,10,25,5,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1825,3,0,2045,2,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-4,0,2124,-15,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1341,-2,0,1450,-5,0,0 +2013,8,28,3,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-6,0,2145,15,1,0 +2013,8,9,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1242,25,1,1345,8,0,0 +2013,10,22,2,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1014,40,1,1112,41,1,0 +2013,8,29,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,958,-8,0,0 +2013,10,6,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1106,-4,0,1635,4,0,0 +2013,10,27,7,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1756,-10,0,2115,-13,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2155,2,0,31,12,0,0 +2013,10,10,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1539,92,1,1716,93,1,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1910,4,0,2020,19,1,0 +2013,10,6,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1635,7,0,1740,-1,0,0 +2013,8,18,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1605,-8,0,1731,-26,0,0 +2013,7,31,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1350,-5,0,1549,-6,0,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1514,-7,0,1840,-11,0,0 +2013,4,25,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1230,0,0,1512,-6,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,13,0,1515,7,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2016,-1,0,2227,-19,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,67,1,2335,52,1,0 +2013,5,17,5,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,62,1,920,43,1,0 +2013,5,14,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-3,0,1004,-9,0,0 +2013,10,28,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,905,2,0,1020,-1,0,0 +2013,4,14,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1125,18,1,1235,17,1,0 +2013,9,22,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1714,-3,0,2057,0,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,8,0,1430,5,0,0 +2013,4,11,4,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1822,12,0,2020,102,1,0 +2013,10,15,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1435,-5,0,1725,-8,0,0 +2013,6,8,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,-2,0,1412,12,0,0 +2013,5,4,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,6,0,1920,21,1,0 +2013,10,13,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,-5,0,1249,-18,0,0 +2013,5,6,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1259,-2,0,1604,-10,0,0 +2013,5,9,4,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2305,-9,0,731,9,0,0 +2013,9,15,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2020,-5,0,2145,5,0,0 +2013,10,7,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1334,2,0,1454,-11,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2100,2,0,2316,-4,0,0 +2013,10,7,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,11,0,2137,17,1,0 +2013,7,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,850,-1,0,1020,-17,0,0 +2013,8,16,5,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1020,-1,0,1240,-3,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1130,-4,0,1251,-14,0,0 +2013,6,10,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10792,Buffalo Niagara International,Buffalo,NY,1240,53,1,1537,28,1,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,827,2,0,850,12,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,37,1,1050,36,1,0 +2013,7,20,6,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1445,-1,0,1720,-3,0,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1320,5,0,1540,2,0,0 +2013,9,15,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-1,0,1224,-5,0,0 +2013,4,23,2,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-6,0,1925,-17,0,0 +2013,4,29,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,0,0,950,-5,0,0 +2013,6,4,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,750,-8,0,1009,-4,0,0 +2013,5,13,1,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,26,1,1652,13,0,0 +2013,6,28,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1815,16,1,2140,39,1,0 +2013,9,8,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,265,1,2350,266,1,0 +2013,9,17,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-6,0,1244,-6,0,0 +2013,9,6,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1059,-3,0,1900,-11,0,0 +2013,7,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1635,17,1,1845,15,1,0 +2013,9,25,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,926,85,1,1013,84,1,0 +2013,6,20,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1655,31,1,2015,29,1,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1730,10,0,1935,5,0,0 +2013,4,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2115,25,1,2222,2,0,0 +2013,8,2,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,725,39,1,1020,26,1,0 +2013,7,16,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,7,0,2116,46,1,0 +2013,4,21,7,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1835,70,1,2120,63,1,0 +2013,8,14,3,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,613,-7,0,835,9,0,0 +2013,9,22,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-4,0,1940,-9,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,11,0,1745,2,0,0 +2013,6,30,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,520,4,0,730,4,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1806,-8,0,2104,-22,0,0 +2013,7,5,5,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1515,39,1,2043,38,1,0 +2013,7,30,2,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-5,0,1240,-10,0,0 +2013,4,12,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,641,-2,0,754,-10,0,0 +2013,10,6,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,545,-7,0,705,12,0,0 +2013,7,26,5,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,640,1,0,930,9,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2040,20,1,2355,7,0,0 +2013,8,14,3,EV,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1756,-5,0,2013,-14,0,0 +2013,9,6,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,905,-4,0,1505,-6,0,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,-3,0,1917,-24,0,0 +2013,10,8,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1843,-8,0,2313,-26,0,0 +2013,8,12,1,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1514,77,1,1758,69,1,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,23,1,1725,38,1,0 +2013,6,16,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1214,-2,0,1453,-13,0,0 +2013,5,19,7,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1810,23,1,2114,-5,0,0 +2013,7,2,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1126,-13,0,1225,-19,0,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,-3,0,2356,19,1,0 +2013,9,9,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,901,4,0,0 +2013,4,16,2,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2245,-4,0,621,-28,0,0 +2013,5,21,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,41,1,1310,26,1,0 +2013,6,8,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1713,-8,0,2028,-15,0,0 +2013,7,12,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-12,0,1130,-33,0,0 +2013,9,12,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,23,1,1126,9,0,0 +2013,6,12,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2000,-2,0,2126,14,0,0 +2013,7,1,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2339,-11,0,613,-14,0,0 +2013,6,21,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1235,35,1,1426,12,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1840,-2,0,2018,-15,0,0 +2013,8,27,2,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1005,-3,0,1155,-8,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1435,22,1,1640,16,1,0 +2013,6,4,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,-4,0,2305,-13,0,0 +2013,9,27,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,920,-3,0,1205,7,0,0 +2013,10,2,3,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-4,0,1844,11,0,0 +2013,8,24,6,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1237,1,0,1545,7,0,0 +2013,7,1,1,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1440,21,1,1719,3,0,0 +2013,7,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,930,0,0,1155,11,0,0 +2013,7,26,5,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1930,-7,0,2103,-19,0,0 +2013,10,10,4,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,615,3,0,1220,0,0,0 +2013,5,27,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1633,-4,0,1926,-4,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1920,-5,0,2048,-12,0,0 +2013,6,4,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1555,-3,0,1727,0,0,0 +2013,9,5,4,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1441,-9,0,1548,-22,0,0 +2013,5,8,3,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1531,0,0,1640,-5,0,0 +2013,9,24,2,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1600,-10,0,1747,-15,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,715,86,1,925,74,1,0 +2013,6,28,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1525,-5,0,1932,-3,0,0 +2013,10,17,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1525,96,1,1840,77,1,0 +2013,9,18,3,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1900,28,1,2017,29,1,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,834,-1,0,1030,-10,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-7,0,1831,-5,0,0 +2013,7,29,1,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1628,24,1,1851,32,1,0 +2013,5,5,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-2,0,1815,-10,0,0 +2013,8,26,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,613,-2,0,745,-11,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1210,0,0,1350,2,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1651,-3,0,1957,-8,0,0 +2013,4,23,2,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1920,26,1,2133,28,1,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,745,-2,0,1040,-12,0,0 +2013,4,3,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2045,5,0,2210,-3,0,0 +2013,8,18,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1105,10,0,1205,12,0,0 +2013,7,16,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,659,-6,0,820,-25,0,0 +2013,6,4,2,UA,14683,San Antonio International,San Antonio,TX,11618,Newark Liberty International,Newark,NJ,1204,-2,0,1706,-25,0,0 +2013,6,26,3,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,720,-3,0,735,-3,0,0 +2013,7,31,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-2,0,1207,-17,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2025,-1,0,2150,0,0,0 +2013,10,22,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,650,-5,0,841,-3,0,0 +2013,8,3,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,-5,0,915,-5,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,925,19,1,1105,11,0,0 +2013,8,5,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,800,-12,0,1050,-17,0,0 +2013,8,24,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1137,-7,0,1427,-2,0,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1033,20,1,1311,8,0,0 +2013,6,10,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-9,0,747,5,0,0 +2013,9,30,1,9E,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1815,-10,0,1947,-13,0,0 +2013,7,22,1,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1135,35,1,1422,23,1,0 +2013,4,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1306,-4,0,1446,-1,0,0 +2013,8,10,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,17,1,621,-3,0,0 +2013,6,28,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,755,7,0,915,-6,0,0 +2013,10,23,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1015,6,0,1150,-7,0,0 +2013,7,18,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,10,0,1507,15,1,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1803,38,1,2059,50,1,0 +2013,10,9,3,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,604,-12,0,855,-13,0,0 +2013,6,4,2,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,910,26,1,1145,28,1,0 +2013,9,1,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1000,-7,0,1120,-15,0,0 +2013,4,30,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1105,-8,0,1153,-14,0,0 +2013,9,24,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1003,7,0,1231,2,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,2,0,2159,-7,0,0 +2013,5,2,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1510,26,1,1620,21,1,0 +2013,7,12,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-7,0,1010,-10,0,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,3,0,1535,-4,0,0 +2013,9,19,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,835,-1,0,1126,-5,0,0 +2013,9,12,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,-3,0,1052,-15,0,0 +2013,7,15,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-4,0,910,5,0,0 +2013,10,27,7,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,649,0,0,945,-18,0,0 +2013,4,16,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,714,-6,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1925,23,1,2136,15,1,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1425,-2,0,1551,-10,0,0 +2013,5,2,4,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,815,-5,0,955,-1,0,0 +2013,9,11,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1600,41,1,1725,32,1,0 +2013,7,29,1,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,634,-6,0,819,-2,0,0 +2013,10,28,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-4,0,1015,3,0,0 +2013,4,8,1,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,10,0,1230,27,1,0 +2013,7,10,3,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1505,76,1,1645,82,1,0 +2013,9,9,1,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-8,0,1600,-3,0,0 +2013,9,8,7,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1900,-1,0,2135,2,0,0 +2013,7,5,5,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,545,-1,0,656,-7,0,0 +2013,8,6,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-10,0,840,-6,0,0 +2013,10,3,4,FL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1835,15,1,2008,23,1,0 +2013,4,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1430,-3,0,1615,5,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1019,-7,0,1145,-14,0,0 +2013,6,26,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1722,6,0,2128,-8,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,932,-5,0,1809,-8,0,0 +2013,5,18,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-3,0,1939,-13,0,0 +2013,4,20,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,1120,-21,0,0 +2013,7,15,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1010,-9,0,1023,1,0,0 +2013,4,24,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-4,0,715,-7,0,0 +2013,8,14,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,725,0,0,925,14,0,0 +2013,6,11,2,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,72,1,1005,52,1,0 +2013,9,8,7,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1225,-9,0,1243,-17,0,0 +2013,8,8,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-5,0,725,-11,0,0 +2013,9,4,3,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-4,0,1812,-13,0,0 +2013,5,4,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1105,-3,0,1635,13,0,0 +2013,5,21,2,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,0,,1635,0,1,1 +2013,9,22,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1050,-4,0,1310,-7,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1729,-7,0,2031,-30,0,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,800,21,1,1050,24,1,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1835,42,1,1920,28,1,0 +2013,9,13,5,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,0,,827,0,1,1 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2150,20,1,2300,12,0,0 +2013,7,26,5,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,655,21,1,1119,7,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1600,-3,0,1705,-16,0,0 +2013,7,6,6,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,-8,0,2150,-18,0,0 +2013,6,6,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-5,0,1052,0,0,0 +2013,7,28,7,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,1515,-2,0,2105,-19,0,0 +2013,4,2,2,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-4,0,858,-2,0,0 +2013,8,17,6,EV,10792,Buffalo Niagara International,Buffalo,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1000,-7,0,1104,-25,0,0 +2013,5,30,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,635,-4,0,845,-7,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1005,27,1,1055,18,1,0 +2013,5,26,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-7,0,830,-19,0,0 +2013,8,23,5,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-3,0,1020,-14,0,0 +2013,5,3,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,-7,0,1059,-2,0,0 +2013,7,14,7,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,601,-5,0,904,10,0,0 +2013,8,14,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,25,1,2150,21,1,0 +2013,6,6,4,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,815,-2,0,925,-8,0,0 +2013,10,20,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,925,-8,0,1302,-26,0,0 +2013,7,24,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1438,39,1,1550,45,1,0 +2013,5,29,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,-3,0,1100,11,0,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1420,7,0,1840,-4,0,0 +2013,10,25,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,35,1,2120,25,1,0 +2013,4,17,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1659,0,0,1906,-2,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1958,17,1,2135,9,0,0 +2013,5,22,3,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1555,134,1,1749,260,1,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1825,-9,0,2003,-4,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,1230,1,0,2023,-41,0,0 +2013,5,14,2,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,855,-3,0,1005,-10,0,0 +2013,4,11,4,OO,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,940,8,0,1108,10,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,955,-5,0,1153,-3,0,0 +2013,10,15,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,827,-2,0,1019,10,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,1520,25,1,1618,49,1,0 +2013,9,1,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,745,-2,0,1501,3,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,900,1,0,1025,2,0,0 +2013,8,16,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,844,-4,0,1035,-11,0,0 +2013,8,14,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,-3,0,1414,-2,0,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,550,-6,0,728,-16,0,0 +2013,4,20,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,830,5,0,0 +2013,7,30,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,945,65,1,1506,68,1,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-7,0,1319,-8,0,0 +2013,7,31,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-10,0,848,-17,0,0 +2013,6,14,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1135,-1,0,1405,-7,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,800,9,0,1021,12,0,0 +2013,7,25,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,82,1,2000,65,1,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2036,3,0,2258,-6,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1317,-7,0,1434,-22,0,0 +2013,5,25,6,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,920,-1,0,1145,-10,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,-2,0,1552,-15,0,0 +2013,8,25,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,1,0,1600,-21,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,835,-3,0,1012,-20,0,0 +2013,9,26,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,947,-2,0,1130,-12,0,0 +2013,6,7,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1950,12,0,2243,6,0,0 +2013,7,8,1,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1435,-1,0,1625,-17,0,0 +2013,7,16,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,-5,0,950,-15,0,0 +2013,7,8,1,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2130,55,1,2346,50,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1503,56,1,1755,73,1,0 +2013,7,5,5,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1145,51,1,1444,54,1,0 +2013,4,24,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,2,0,1714,10,0,0 +2013,7,6,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1820,4,0,1945,-5,0,0 +2013,4,23,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1323,5,0,1717,-22,0,0 +2013,7,28,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-10,0,1012,-23,0,0 +2013,4,5,5,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,620,-5,0,944,-15,0,0 +2013,4,17,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1142,16,1,1646,-6,0,0 +2013,5,10,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1620,10,0,1730,3,0,0 +2013,5,9,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-2,0,900,-27,0,0 +2013,6,3,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1655,2,0,1840,-15,0,0 +2013,10,28,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1022,-8,0,1146,-22,0,0 +2013,6,6,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1154,99,1,2035,98,1,0 +2013,8,31,6,FL,13232,Chicago Midway International,Chicago,IL,13244,Memphis International,Memphis,TN,830,3,0,1003,-5,0,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1850,24,1,2210,15,1,0 +2013,7,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-8,0,900,-23,0,0 +2013,8,22,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,-4,0,940,-3,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,700,-1,0,930,13,0,0 +2013,6,13,4,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,850,12,0,1110,10,0,0 +2013,5,19,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1503,33,1,1645,21,1,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,825,-1,0,945,-2,0,0 +2013,8,23,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1330,-4,0,1435,-22,0,0 +2013,6,28,5,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,-3,0,1445,-5,0,0 +2013,7,21,7,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,715,-3,0,825,10,0,0 +2013,4,24,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,494,1,1939,474,1,0 +2013,4,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,949,-10,0,1319,-14,0,0 +2013,4,23,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,-10,0,2359,-11,0,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,2040,4,0,2312,18,1,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1244,25,1,1422,12,0,0 +2013,4,4,4,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1611,-3,0,1932,-23,0,0 +2013,5,11,6,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,1645,5,0,1925,-14,0,0 +2013,4,2,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1500,2,0,1810,3,0,0 +2013,4,27,6,FL,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,800,-4,0,849,-2,0,0 +2013,4,23,2,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1955,-7,0,2115,-4,0,0 +2013,7,14,7,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,922,-6,0,1040,-22,0,0 +2013,5,2,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,2020,9,0,2255,3,0,0 +2013,6,14,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,655,1,0,911,1,0,0 +2013,5,13,1,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,16,1,1412,23,1,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1730,188,1,1825,176,1,0 +2013,6,4,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,710,2,0,825,-8,0,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1530,7,0,1700,8,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,805,3,0,1000,-6,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2115,-5,0,5,8,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,-4,0,2324,-13,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,20,1,1713,16,1,0 +2013,9,26,4,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1435,-4,0,1734,-9,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1122,2,0,1256,-7,0,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1554,2,0,1832,-10,0,0 +2013,10,28,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,0,0,1759,-12,0,0 +2013,10,31,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1430,87,1,1605,67,1,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1900,4,0,2035,-2,0,0 +2013,4,23,2,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,600,-1,0,735,-17,0,0 +2013,9,4,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,0,0,1540,-5,0,0 +2013,9,25,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,2,0,2005,24,1,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,21,1,2110,3,0,0 +2013,4,25,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,610,-1,0,850,-11,0,0 +2013,8,6,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1934,-12,0,2230,-29,0,0 +2013,4,30,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,600,-7,0,850,-13,0,0 +2013,4,8,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,2001,-11,0,2136,-18,0,0 +2013,4,25,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,24,1,2155,17,1,0 +2013,4,4,4,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1645,-14,0,1858,-30,0,0 +2013,8,27,2,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-5,0,1647,-32,0,0 +2013,9,26,4,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,840,-3,0,1648,-8,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,853,6,0,1450,-9,0,0 +2013,5,22,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,0,0,1700,-4,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1940,-1,0,2207,-10,0,0 +2013,8,30,5,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1410,1,0,1705,-28,0,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,705,46,1,1115,40,1,0 +2013,5,7,2,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,850,-2,0,950,-10,0,0 +2013,7,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,600,19,1,921,20,1,0 +2013,8,6,2,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-9,0,1610,-15,0,0 +2013,6,29,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1453,-1,0,1614,-1,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,10,0,2045,2,0,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,645,-3,0,1250,5,0,0 +2013,5,20,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2020,83,1,2200,62,1,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2238,-2,0,2339,-13,0,0 +2013,10,11,5,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,745,-2,0,1130,-12,0,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1645,-2,0,1856,-20,0,0 +2013,4,4,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1505,39,1,1720,35,1,0 +2013,5,24,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1305,5,0,1410,6,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,-4,0,900,0,0,0 +2013,7,19,5,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1234,-5,0,1447,-16,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1210,-5,0,1635,-8,0,0 +2013,5,13,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1025,13,0,1140,17,1,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1119,42,1,1213,45,1,0 +2013,4,22,1,9E,13198,Kansas City International,Kansas City,MO,13244,Memphis International,Memphis,TN,615,-3,0,742,-8,0,0 +2013,4,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1350,-3,0,1734,-11,0,0 +2013,9,1,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1200,-4,0,1309,-4,0,0 +2013,4,11,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,189,1,1430,220,1,0 +2013,5,12,7,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1311,-4,0,1624,-17,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2225,-4,0,2347,7,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,-7,0,1401,3,0,0 +2013,9,20,5,AA,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1800,-7,0,1935,17,1,0 +2013,7,28,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-2,0,1525,-20,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2040,59,1,2125,50,1,0 +2013,4,22,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,133,1,1350,127,1,0 +2013,6,6,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-4,0,1920,9,0,0 +2013,7,22,1,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2115,-5,0,518,-19,0,0 +2013,10,21,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1623,-3,0,1804,-8,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1120,6,0,1250,-6,0,0 +2013,8,4,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2212,111,1,2309,108,1,0 +2013,7,21,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,755,1,0,914,-7,0,0 +2013,7,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2007,-3,0,2108,-4,0,0 +2013,4,18,4,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,37,1,1015,55,1,0 +2013,5,17,5,9E,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1109,-12,0,1249,-15,0,0 +2013,6,8,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,900,21,1,1029,8,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2145,18,1,2325,45,1,0 +2013,9,12,4,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1740,142,1,1910,141,1,0 +2013,6,9,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,0,0,944,-6,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,808,-4,0,901,-15,0,0 +2013,4,10,3,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,539,19,1,719,9,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,13,0,1825,-1,0,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2025,0,0,2115,-6,0,0 +2013,4,12,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,725,275,1,850,264,1,0 +2013,5,27,1,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1454,40,1,1747,42,1,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,-5,0,2356,15,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-3,0,1115,-8,0,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,4,0,1200,21,1,0 +2013,10,20,7,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,735,-2,0,1300,-15,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1355,4,0,1455,1,0,0 +2013,6,13,4,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1828,280,1,2000,259,1,0 +2013,10,22,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1647,-11,0,0 +2013,9,5,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1625,-3,0,1645,-12,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-2,0,1405,-11,0,0 +2013,8,22,4,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,950,2,0,1315,0,0,0 +2013,10,14,1,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,5,0,1451,-16,0,0 +2013,9,19,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1025,-2,0,1115,-20,0,0 +2013,5,21,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1240,-7,0,1701,19,1,0 +2013,10,17,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-1,0,1230,-12,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,855,0,0,1048,-3,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-3,0,859,-6,0,0 +2013,9,20,5,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,17,1,1753,21,1,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,900,11,0,1015,28,1,0 +2013,8,15,4,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,810,0,0,1140,-17,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1000,-2,0,1345,-6,0,0 +2013,10,27,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2000,-11,0,2214,-24,0,0 +2013,10,16,3,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-10,0,1640,9,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1420,33,1,1525,21,1,0 +2013,6,2,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-5,0,2020,-4,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1305,3,0,2000,20,1,0 +2013,5,13,1,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1105,-10,0,1330,-21,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,2156,13,0,2323,-1,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,835,5,0,1100,10,0,0 +2013,8,10,6,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-1,0,1402,-9,0,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,2020,70,1,2300,62,1,0 +2013,9,6,5,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1508,195,1,1717,187,1,0 +2013,6,17,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,930,5,0,1500,-7,0,0 +2013,9,15,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1656,1,0,0 +2013,4,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,2010,94,1,40,95,1,0 +2013,4,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1840,-2,0,2127,0,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,1,0,1519,-4,0,0 +2013,6,10,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,840,-3,0,1438,-10,0,0 +2013,5,24,5,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2113,11,0,2344,2,0,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1030,34,1,1345,27,1,0 +2013,8,10,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,844,2,0,1006,-2,0,0 +2013,5,13,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1746,-5,0,1852,5,0,0 +2013,5,14,2,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1900,69,1,2031,53,1,0 +2013,8,21,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1118,-4,0,1424,-10,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,2045,2,0,2350,8,0,0 +2013,10,4,5,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,955,-7,0,1243,-5,0,0 +2013,5,16,4,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1620,-7,0,1748,-25,0,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,605,-1,0,751,1,0,0 +2013,8,13,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,940,12,0,1055,29,1,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,10,0,915,28,1,0 +2013,4,14,7,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1510,10,0,1613,-5,0,0 +2013,9,29,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,900,-7,0,1340,17,1,0 +2013,10,9,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,36,1,2353,30,1,0 +2013,5,11,6,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1002,-8,0,1320,11,0,0 +2013,6,6,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,600,1,0,1128,1,0,0 +2013,5,22,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1725,-1,0,2025,-11,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,630,-2,0,730,-2,0,0 +2013,4,2,2,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1910,-7,0,2140,-9,0,0 +2013,8,17,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2340,9,0,750,1,0,0 +2013,4,29,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,648,-19,0,0 +2013,5,3,5,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,600,-10,0,852,-5,0,0 +2013,9,18,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1435,-4,0,2245,-32,0,0 +2013,7,24,3,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-2,0,1455,-8,0,0 +2013,6,13,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-6,0,1341,26,1,0 +2013,5,20,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,829,0,0,941,-17,0,0 +2013,6,10,1,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1915,0,,2131,0,1,1 +2013,6,21,5,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,854,-7,0,1040,-7,0,0 +2013,10,21,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-6,0,1029,2,0,0 +2013,6,18,2,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1230,-9,0,1626,1,0,0 +2013,6,23,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1435,65,1,1750,81,1,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,615,-1,0,730,-3,0,0 +2013,6,9,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,-4,0,2105,-10,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-3,0,1425,-5,0,0 +2013,6,20,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1606,18,1,1704,32,1,0 +2013,9,25,3,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1119,-16,0,1213,-27,0,0 +2013,10,4,5,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1710,-1,0,1935,22,1,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1614,5,0,1825,-9,0,0 +2013,8,13,2,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-8,0,1630,-25,0,0 +2013,6,11,2,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1026,-4,0,1306,-22,0,0 +2013,5,28,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1626,4,0,1714,-4,0,0 +2013,6,2,7,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,900,-9,0,1150,-9,0,0 +2013,7,23,2,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-9,0,1538,-13,0,0 +2013,10,17,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,31,1,920,48,1,0 +2013,7,13,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,610,-11,0,918,-4,0,0 +2013,7,31,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1335,4,0,1645,-12,0,0 +2013,10,14,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2105,33,1,2337,21,1,0 +2013,5,1,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-9,0,920,2,0,0 +2013,7,11,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1345,-5,0,1455,-15,0,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1255,7,0,1415,5,0,0 +2013,9,7,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1045,-1,0,1200,-15,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,2038,-1,0,2207,-7,0,0 +2013,8,8,4,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2105,7,0,2336,-15,0,0 +2013,5,24,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-5,0,1435,7,0,0 +2013,10,22,2,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,610,-6,0,743,-22,0,0 +2013,9,27,5,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,840,-4,0,1245,-7,0,0 +2013,9,29,7,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1900,-15,0,2040,3,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2050,36,1,2225,22,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1915,1,0,2048,-6,0,0 +2013,5,14,2,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,5,0,1737,0,0,0 +2013,7,29,1,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1515,-13,0,1719,-15,0,0 +2013,8,2,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,22,1,1924,23,1,0 +2013,10,2,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,7,0,1614,-11,0,0 +2013,5,7,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,855,-2,0,1635,9,0,0 +2013,4,5,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1510,-1,0,2345,-23,0,0 +2013,7,15,1,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,928,-3,0,958,-13,0,0 +2013,7,26,5,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,1713,-5,0,1855,-17,0,0 +2013,6,22,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1115,0,0,1226,-2,0,0 +2013,7,9,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1324,104,1,1937,104,1,0 +2013,5,18,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,730,-4,0,950,-15,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1640,0,0,1911,-25,0,0 +2013,6,27,4,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,815,-2,0,1053,-14,0,0 +2013,5,29,3,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1520,8,0,1700,0,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1850,15,1,2205,-2,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1010,27,1,1125,21,1,0 +2013,6,30,7,OO,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1142,-1,0,1659,-8,0,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2129,67,1,2307,61,1,0 +2013,9,6,5,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1125,-2,0,1300,-21,0,0 +2013,8,23,5,OO,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,615,-5,0,755,0,0,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,31,1,1735,43,1,0 +2013,5,16,4,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1230,-4,0,1331,1,0,0 +2013,10,12,6,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1314,-5,0,1705,-18,0,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1500,10,0,1820,-3,0,0 +2013,8,16,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1801,-2,0,2026,-7,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1935,31,1,2250,24,1,0 +2013,9,30,1,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,4,0,735,-3,0,0 +2013,4,29,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,840,11,0,900,1,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,-1,0,2025,17,1,0 +2013,4,9,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,-13,0,1019,-22,0,0 +2013,10,5,6,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1100,-3,0,1225,-19,0,0 +2013,7,27,6,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,1240,-2,0,1340,-6,0,0 +2013,9,27,5,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,4,0,810,-9,0,0 +2013,7,27,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1555,15,1,1705,2,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1630,13,0,2010,22,1,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1635,10,0,1805,-6,0,0 +2013,10,4,5,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1707,-8,0,1913,-36,0,0 +2013,4,21,7,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,91,1,1901,84,1,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1040,1,0,1230,-14,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1755,4,0,2005,3,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,820,10,0,940,-1,0,0 +2013,8,6,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,0,0,1550,-21,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-2,0,1415,-20,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1930,30,1,2030,24,1,0 +2013,6,30,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,0,0,1254,0,0,0 +2013,10,2,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,905,-7,0,1219,-8,0,0 +2013,10,12,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1743,-4,0,1929,-14,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,-4,0,1733,7,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1805,0,0,2024,-19,0,0 +2013,9,11,3,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1730,-8,0,2253,8,0,0 +2013,4,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1509,19,1,1721,19,1,0 +2013,8,4,7,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,17,1,951,9,0,0 +2013,9,6,5,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,0,0,1041,5,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2206,0,0,2343,-5,0,0 +2013,8,10,6,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,3,0,1615,-12,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1930,-4,0,2105,-20,0,0 +2013,8,15,4,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,-3,0,1930,-22,0,0 +2013,5,29,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1358,-1,0,1423,-7,0,0 +2013,5,15,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1959,-12,0,2328,7,0,0 +2013,9,19,4,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1015,-3,0,1230,-10,0,0 +2013,7,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2215,64,1,10,43,1,0 +2013,5,2,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,810,-1,0,0 +2013,7,13,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,-7,0,1557,-15,0,0 +2013,4,30,2,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,925,-1,0,1759,-6,0,0 +2013,8,27,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-7,0,1229,-1,0,0 +2013,9,17,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,845,0,0,1115,-4,0,0 +2013,8,8,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1419,-5,0,1659,-18,0,0 +2013,8,16,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1312,4,0,1516,13,0,0 +2013,10,22,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,-6,0,1430,-8,0,0 +2013,4,28,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,1120,7,0,0 +2013,6,22,6,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1556,-3,0,1655,0,0,0 +2013,10,11,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1850,22,1,2215,-5,0,0 +2013,9,16,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-8,0,1756,-18,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1343,36,1,1549,27,1,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1541,7,0,1641,6,0,0 +2013,9,1,7,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1103,-8,0,1241,-10,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1553,-1,0,1809,-10,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1913,44,1,2251,30,1,0 +2013,7,15,1,OO,12264,Washington Dulles International,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,919,20,1,1056,4,0,0 +2013,7,1,1,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,555,-5,0,732,4,0,0 +2013,9,13,5,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,126,1,1255,117,1,0 +2013,6,25,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,71,1,1055,61,1,0 +2013,5,27,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,30,1,2255,25,1,0 +2013,5,7,2,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,604,-8,0,619,-21,0,0 +2013,8,27,2,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1525,-2,0,1638,-2,0,0 +2013,10,25,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,600,3,0,940,-18,0,0 +2013,9,9,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,-1,0,910,3,0,0 +2013,7,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-4,0,905,-19,0,0 +2013,7,12,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,545,-5,0,706,-1,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1620,6,0,1725,-2,0,0 +2013,4,29,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1100,55,1,1218,65,1,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,940,1,0,1100,-1,0,0 +2013,6,10,1,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1525,11,0,1615,5,0,0 +2013,7,28,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,13,0,1022,2,0,0 +2013,8,4,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1223,36,1,2045,44,1,0 +2013,4,30,2,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,1715,-6,0,2046,-21,0,0 +2013,6,29,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,25,1,2259,33,1,0 +2013,6,28,5,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,-1,0,1250,-11,0,0 +2013,9,29,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,-5,0,1940,1,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1147,-4,0,1423,-12,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,935,-5,0,1315,-20,0,0 +2013,9,23,1,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,605,-4,0,723,-2,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1315,15,1,1625,12,0,0 +2013,8,22,4,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1515,26,1,1730,25,1,0 +2013,7,19,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,-6,0,2113,-12,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,953,-2,0,1225,-14,0,0 +2013,4,11,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,655,-4,0,935,11,0,0 +2013,10,23,3,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,700,-3,0,753,-13,0,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,15016,Lambert-St. Louis International,St. Louis,MO,1310,12,0,1835,17,1,0 +2013,10,20,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1750,-6,0,1935,-29,0,0 +2013,7,12,5,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1125,0,0,1300,-15,0,0 +2013,5,16,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-9,0,1220,-7,0,0 +2013,7,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,24,1,1530,15,1,0 +2013,6,15,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,13,0,1816,13,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1541,19,1,2029,73,1,0 +2013,9,16,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,-8,0,1916,0,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1340,32,1,1457,18,1,0 +2013,9,17,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1312,-10,0,1434,-13,0,0 +2013,9,13,5,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-4,0,945,-17,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2155,42,1,2335,31,1,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1205,49,1,1345,60,1,0 +2013,6,19,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1825,46,1,2055,29,1,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1215,-3,0,1315,-7,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2155,0,,5,0,1,1 +2013,7,18,4,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,942,79,1,1134,84,1,0 +2013,10,24,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,21,1,1905,10,0,0 +2013,5,2,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-2,0,940,10,0,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1715,38,1,2015,26,1,0 +2013,5,7,2,FL,14122,Pittsburgh International,Pittsburgh,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1611,-7,0,1845,-8,0,0 +2013,4,11,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,910,0,,1205,0,1,1 +2013,8,2,5,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1215,28,1,1512,27,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1605,-3,0,1815,-15,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1910,0,,2110,0,1,1 +2013,10,14,1,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-4,0,1630,-5,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1340,-1,0,1622,-19,0,0 +2013,6,13,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-5,0,1245,1,0,0 +2013,6,5,3,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1758,-3,0,2033,-19,0,0 +2013,7,21,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,20,1,913,14,0,0 +2013,8,16,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,26,1,1445,27,1,0 +2013,8,1,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1825,14,0,1945,-7,0,0 +2013,4,5,5,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,-7,0,1935,-8,0,0 +2013,7,13,6,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,813,9,0,923,-3,0,0 +2013,4,9,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1446,-3,0,1536,-15,0,0 +2013,10,29,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1150,37,1,1300,51,1,0 +2013,5,15,3,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1100,-5,0,1430,-29,0,0 +2013,8,12,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-2,0,1031,12,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,920,-5,0,1155,0,0,0 +2013,7,22,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,2010,23,1,2135,14,0,0 +2013,5,10,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,45,1,2125,48,1,0 +2013,10,13,7,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1400,-5,0,1518,52,1,0 +2013,10,18,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-6,0,1842,13,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,846,-7,0,1107,-5,0,0 +2013,4,29,1,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-3,0,1550,10,0,0 +2013,4,26,5,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,710,-2,0,917,11,0,0 +2013,7,22,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1215,43,1,1835,18,1,0 +2013,4,14,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,42,1,2211,44,1,0 +2013,4,21,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1805,-4,0,1915,3,0,0 +2013,9,1,7,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2042,-1,0,454,0,0,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,1,0,1400,-2,0,0 +2013,9,3,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1038,-1,0,1917,-13,0,0 +2013,7,3,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,13,0,1928,40,1,0 +2013,8,26,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,25,1,2200,25,1,0 +2013,9,9,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1030,-8,0,1302,-8,0,0 +2013,10,30,3,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,24,1,2240,-4,0,0 +2013,5,31,5,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1855,-2,0,2000,-2,0,0 +2013,9,9,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,828,-5,0,1025,-10,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1620,8,0,2105,-2,0,0 +2013,5,8,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2240,1,0,2331,-1,0,0 +2013,9,7,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,716,-12,0,0 +2013,7,7,7,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-3,0,1159,-4,0,0 +2013,6,30,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1550,0,,1909,0,1,1 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2000,-3,0,2335,-57,0,0 +2013,7,23,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1722,12,0,1835,26,1,0 +2013,10,13,7,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1525,-1,0,1630,-3,0,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1800,81,1,1926,78,1,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1948,-2,0,2219,-19,0,0 +2013,8,17,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,700,-3,0,951,-6,0,0 +2013,10,4,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1445,-4,0,1721,-5,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1130,41,1,1515,27,1,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1035,32,1,1355,16,1,0 +2013,9,28,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,900,-3,0,1659,8,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,655,-1,0,945,-22,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2115,63,1,2230,56,1,0 +2013,6,3,1,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1023,10,0,1544,-3,0,0 +2013,8,29,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,-3,0,2110,-14,0,0 +2013,9,24,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1210,8,0,1310,16,1,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2110,-3,0,2230,-10,0,0 +2013,4,7,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1355,3,0,1445,-1,0,0 +2013,7,7,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2100,4,0,510,-9,0,0 +2013,5,11,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-5,0,1000,-16,0,0 +2013,5,11,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1405,-2,0,1515,-9,0,0 +2013,10,14,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,12,0,2005,-3,0,0 +2013,8,9,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-10,0,1612,-2,0,0 +2013,9,6,5,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1020,-8,0,1259,-6,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,0,0,1131,13,0,0 +2013,8,3,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,935,-10,0,0 +2013,8,29,4,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,941,-5,0,1129,-12,0,0 +2013,8,5,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-2,0,1936,-21,0,0 +2013,5,2,4,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-5,0,1830,-37,0,0 +2013,9,19,4,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1118,110,1,1214,103,1,0 +2013,5,8,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1145,2,0,1435,6,0,0 +2013,7,24,3,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1845,35,1,2058,28,1,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,-4,0,2005,-38,0,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1555,0,0,1820,22,1,0 +2013,7,23,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-2,0,1250,6,0,0 +2013,6,4,2,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1442,34,1,1751,34,1,0 +2013,9,19,4,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,750,0,,947,0,1,1 +2013,6,16,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,0,0,1129,-4,0,0 +2013,4,5,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1530,14,0,1732,24,1,0 +2013,10,3,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-4,0,910,20,1,0 +2013,6,3,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-4,0,2017,-18,0,0 +2013,5,16,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,2030,-8,0,2105,-17,0,0 +2013,7,31,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,600,-9,0,711,-9,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1319,0,0,1635,-2,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,750,-1,0,910,-13,0,0 +2013,10,6,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-4,0,1012,-25,0,0 +2013,10,30,3,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2257,-12,0,19,-19,0,0 +2013,4,12,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,710,-2,0,927,-13,0,0 +2013,4,11,4,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1638,180,1,1820,179,1,0 +2013,9,13,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1405,26,1,1510,24,1,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,650,-2,0,935,-3,0,0 +2013,9,26,4,9E,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1750,-4,0,1938,-17,0,0 +2013,6,3,1,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1020,-6,0,1325,-5,0,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1706,5,0,2104,-22,0,0 +2013,10,30,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2220,-2,0,2354,-9,0,0 +2013,8,12,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2155,-5,0,543,-23,0,0 +2013,6,22,6,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,825,-7,0,1111,-7,0,0 +2013,10,11,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,101,1,2205,86,1,0 +2013,9,30,1,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1025,-4,0,1859,-27,0,0 +2013,7,30,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1530,-4,0,1615,-20,0,0 +2013,4,4,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1135,0,0,1230,-7,0,0 +2013,10,26,6,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1540,-2,0,1705,-4,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1355,0,0,1659,14,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1625,-3,0,1855,-25,0,0 +2013,10,23,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1720,-3,0,1925,-15,0,0 +2013,7,9,2,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1341,3,0,1456,0,0,0 +2013,6,8,6,US,14057,Portland International,Portland,OR,14100,Philadelphia International,Philadelphia,PA,820,-1,0,1624,-12,0,0 +2013,6,2,7,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,700,5,0,821,75,1,0 +2013,6,3,1,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1848,38,1,2226,24,1,0 +2013,8,14,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,941,-4,0,1027,13,0,0 +2013,7,4,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1410,0,0,2210,-5,0,0 +2013,9,30,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,755,0,0,900,-9,0,0 +2013,4,17,3,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1005,-2,0,1210,-8,0,0 +2013,4,5,5,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,850,-8,0,1011,-21,0,0 +2013,6,6,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,1405,-10,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2150,-2,0,2357,-6,0,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1839,2,0,2359,-11,0,0 +2013,4,1,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1505,31,1,1826,54,1,0 +2013,8,18,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1125,-4,0,1300,-9,0,0 +2013,6,21,5,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,42,1,2025,46,1,0 +2013,8,16,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1740,-3,0,1850,-8,0,0 +2013,10,28,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,23,1,1315,17,1,0 +2013,6,25,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1430,2,0,1705,-9,0,0 +2013,4,12,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,2145,0,0,2300,-3,0,0 +2013,4,17,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,952,-6,0,1207,-10,0,0 +2013,6,27,4,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,947,2,0,0 +2013,10,13,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,0,,1649,0,1,1 +2013,5,13,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1721,-1,0,1845,-7,0,0 +2013,4,30,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,941,-2,0,1030,1,0,0 +2013,4,28,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1345,-8,0,1434,-19,0,0 +2013,8,30,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,737,-8,0,913,-17,0,0 +2013,8,9,5,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-5,0,1130,-27,0,0 +2013,9,17,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,34,1,1430,30,1,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,-5,0,1022,-10,0,0 +2013,10,23,3,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1635,18,1,1810,1,0,0 +2013,8,22,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2110,17,1,2235,17,1,0 +2013,9,19,4,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,1645,-6,0,1814,-10,0,0 +2013,6,11,2,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-6,0,1255,7,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1540,99,1,2300,100,1,0 +2013,7,1,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,2,0,1633,7,0,0 +2013,8,19,1,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1415,8,0,1640,-10,0,0 +2013,6,27,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,2,0,715,-10,0,0 +2013,6,9,7,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2135,2,0,548,1,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1940,2,0,2105,2,0,0 +2013,8,26,1,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1500,-4,0,1821,-21,0,0 +2013,6,23,7,OO,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,835,1,0,1002,19,1,0 +2013,5,5,7,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,835,0,0,1215,-9,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,720,8,0,855,11,0,0 +2013,9,28,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,0,,1720,0,1,1 +2013,6,12,3,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1125,0,0,1224,1,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,900,-2,0,1345,1,0,0 +2013,4,14,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1251,7,0,1348,-4,0,0 +2013,5,11,6,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1714,-4,0,1836,-21,0,0 +2013,6,30,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1345,4,0,1425,-4,0,0 +2013,10,16,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,-5,0,1641,-25,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1730,-1,0,1837,-20,0,0 +2013,9,26,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,-1,0,2220,-5,0,0 +2013,10,19,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,818,-2,0,1042,-11,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,959,-5,0,1657,-24,0,0 +2013,6,18,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,5,0,1710,6,0,0 +2013,10,11,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1650,18,1,1825,20,1,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1532,-3,0,1721,-12,0,0 +2013,7,25,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,830,5,0,1037,-6,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1732,-3,0,1925,-21,0,0 +2013,5,29,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,950,16,1,1100,23,1,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-8,0,1625,-13,0,0 +2013,5,2,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,1,0,1150,1,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1040,-2,0,1210,-9,0,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,705,-2,0,1138,-27,0,0 +2013,5,17,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1645,4,0,1834,-22,0,0 +2013,6,11,2,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,602,-5,0,728,-16,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1600,6,0,1733,12,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,-1,0,1643,-6,0,0 +2013,9,17,2,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1630,28,1,1720,30,1,0 +2013,4,3,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,-1,0,1510,-7,0,0 +2013,7,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1825,38,1,45,29,1,0 +2013,4,18,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,0,,1000,0,1,1 +2013,7,26,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1600,-1,0,1710,2,0,0 +2013,6,17,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,800,-4,0,1017,-15,0,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1445,-2,0,1655,-9,0,0 +2013,8,16,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1308,-2,0,1514,-7,0,0 +2013,10,30,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,940,17,1,1442,5,0,0 +2013,7,2,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1845,-4,0,2044,-6,0,0 +2013,9,24,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,800,-5,0,1045,-15,0,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-2,0,830,-17,0,0 +2013,7,8,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,845,0,,1224,0,1,1 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2019,-4,0,2042,-4,0,0 +2013,6,3,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,2048,77,1,2152,68,1,0 +2013,6,28,5,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1724,60,1,2020,62,1,0 +2013,10,22,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,959,4,0,1758,-5,0,0 +2013,10,11,5,UA,15304,Tampa International,Tampa,FL,12264,Washington Dulles International,Washington,DC,900,4,0,1115,4,0,0 +2013,10,21,1,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2125,0,0,2345,-7,0,0 +2013,5,6,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1555,-3,0,1710,-10,0,0 +2013,5,8,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1808,-12,0,1939,-9,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1440,-2,0,1618,-15,0,0 +2013,7,14,7,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1651,5,0,1821,-18,0,0 +2013,10,7,1,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1535,3,0,1847,3,0,0 +2013,10,5,6,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,1,0,1100,-3,0,0 +2013,6,16,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,730,-5,0,828,0,0,0 +2013,5,12,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1815,-5,0,2016,-1,0,0 +2013,5,29,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,1,0,1841,-8,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2205,21,1,13,3,0,0 +2013,7,8,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1505,-6,0,1603,-9,0,0 +2013,10,2,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-3,0,2053,-13,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,636,-1,0,1220,14,0,0 +2013,6,4,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-9,0,456,-11,0,0 +2013,6,29,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,15,1,1858,6,0,0 +2013,7,17,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1800,193,1,1905,172,1,0 +2013,5,31,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-8,0,1119,-14,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1145,8,0,1349,4,0,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,940,0,0,1130,-4,0,0 +2013,4,9,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1055,-2,0,1210,-11,0,0 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1400,-1,0,1625,-12,0,0 +2013,8,2,5,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,2,0,2020,-4,0,0 +2013,8,20,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-9,0,1659,-15,0,0 +2013,4,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-1,0,1850,-18,0,0 +2013,9,8,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1020,5,0,1345,5,0,0 +2013,7,12,5,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-9,0,810,-2,0,0 +2013,8,11,7,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1840,4,0,2150,2,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1745,23,1,2130,10,0,0 +2013,7,31,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1942,-5,0,2140,-6,0,0 +2013,5,26,7,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1037,-6,0,1343,-12,0,0 +2013,9,5,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2142,-16,0,2252,-31,0,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,730,-7,0,842,-1,0,0 +2013,8,14,3,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,24,1,2250,17,1,0 +2013,8,12,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,800,9,0,900,8,0,0 +2013,5,16,4,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1949,-2,0,2145,-17,0,0 +2013,5,14,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,2110,2,0,2245,1,0,0 +2013,10,8,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1020,-5,0,1310,-6,0,0 +2013,10,13,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-9,0,1050,15,1,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1440,15,1,1634,10,0,0 +2013,9,1,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,805,-5,0,910,-12,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1340,-2,0,1600,-14,0,0 +2013,6,27,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1555,99,1,1705,105,1,0 +2013,4,17,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1220,100,1,1455,175,1,0 +2013,4,3,3,B6,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1035,3,0,1224,-3,0,0 +2013,10,25,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1011,-2,0,1049,-7,0,0 +2013,4,28,7,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,940,0,0,1110,-14,0,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1345,20,1,1500,63,1,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1645,-2,0,2003,-32,0,0 +2013,4,12,5,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2035,-5,0,2143,-7,0,0 +2013,8,14,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,26,1,2040,16,1,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,820,6,0,1340,11,0,0 +2013,8,26,1,EV,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,700,-6,0,912,-10,0,0 +2013,5,13,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1450,-2,0,1553,-9,0,0 +2013,7,7,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1215,116,1,1310,102,1,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1115,193,1,1406,201,1,0 +2013,6,29,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1436,88,1,1836,75,1,0 +2013,6,14,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,814,4,0,1054,2,0,0 +2013,5,15,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1150,22,1,1430,28,1,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1630,85,1,1945,73,1,0 +2013,8,22,4,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,0,0,1730,-19,0,0 +2013,6,13,4,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,615,5,0,825,-5,0,0 +2013,5,23,4,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1451,151,1,1605,174,1,0 +2013,9,12,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1150,41,1,1615,33,1,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1805,5,0,1905,9,0,0 +2013,9,9,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1816,5,0,1925,-3,0,0 +2013,6,12,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,53,1,1925,37,1,0 +2013,5,19,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-1,0,1318,-3,0,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1030,35,1,1155,29,1,0 +2013,10,14,1,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1608,-1,0,1725,-3,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1430,5,0,1618,-2,0,0 +2013,8,10,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,0,0,1514,-11,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1815,8,0,2020,10,0,0 +2013,10,19,6,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-5,0,1225,0,0,0 +2013,9,26,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1740,-8,0,1850,-12,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,910,-1,0,1230,4,0,0 +2013,7,8,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1546,-6,0,1729,-13,0,0 +2013,8,9,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,2059,0,,2249,0,1,1 +2013,4,2,2,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1759,7,0,2115,-6,0,0 +2013,5,22,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1045,0,0,1602,3,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,2125,5,0,2255,-5,0,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1425,-2,0,1557,-15,0,0 +2013,10,6,7,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,740,-6,0,910,-14,0,0 +2013,8,13,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1026,-5,0,1317,-12,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1500,18,1,1824,8,0,0 +2013,7,20,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1015,0,0,1335,-4,0,0 +2013,8,30,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-5,0,1031,-5,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1650,22,1,1900,0,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,1,0,2317,-2,0,0 +2013,6,25,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,845,-2,0,950,-9,0,0 +2013,6,24,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,2135,23,1,2230,39,1,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1325,71,1,1643,58,1,0 +2013,4,1,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1011,66,1,1142,57,1,0 +2013,6,17,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,264,1,1341,298,1,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2015,58,1,2155,61,1,0 +2013,4,24,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1901,18,1,2000,28,1,0 +2013,6,7,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1254,-1,0,1532,127,1,0 +2013,7,31,3,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-6,0,1023,2,0,0 +2013,9,21,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1645,0,0,1810,-7,0,0 +2013,6,29,6,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-4,0,938,-10,0,0 +2013,8,23,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1735,101,1,1911,87,1,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1235,3,0,1455,-4,0,0 +2013,5,14,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,940,-6,0,1236,-12,0,0 +2013,5,12,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,605,-4,0,755,-17,0,0 +2013,9,27,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,1,0,1430,-3,0,0 +2013,7,4,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1002,-2,0,1136,-4,0,0 +2013,7,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1758,-2,0,1955,-23,0,0 +2013,7,12,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1935,-5,0,2032,-2,0,0 +2013,5,31,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1045,0,0,1225,-24,0,0 +2013,7,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,137,1,1759,137,1,0 +2013,10,12,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1850,13,0,2105,6,0,0 +2013,6,19,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-2,0,1320,8,0,0 +2013,10,11,5,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1856,-1,0,2108,-18,0,0 +2013,6,11,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,95,1,542,91,1,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1916,-4,0,2056,-14,0,0 +2013,8,13,2,B6,10529,Bradley International,Hartford,CT,14843,Luis Munoz Marin International,San Juan,PR,1245,-3,0,1631,55,1,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1840,22,1,2026,10,0,0 +2013,6,17,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1357,74,1,1609,79,1,0 +2013,5,8,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1326,-2,0,1645,14,0,0 +2013,7,5,5,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1703,15,1,1910,24,1,0 +2013,5,3,5,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,700,-7,0,1229,7,0,0 +2013,7,30,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-2,0,2050,-4,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,850,-5,0,1115,-16,0,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2130,-1,0,2340,-7,0,0 +2013,6,22,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,0,0,1314,-12,0,0 +2013,4,25,4,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,535,-10,0,859,-23,0,0 +2013,4,21,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-7,0,1325,-9,0,0 +2013,4,9,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,700,0,0,835,-6,0,0 +2013,9,7,6,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1400,4,0,1705,-7,0,0 +2013,5,17,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1715,10,0,1843,-2,0,0 +2013,4,24,3,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,855,-9,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2135,21,1,2235,17,1,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1215,-7,0,1409,-11,0,0 +2013,10,5,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1343,-6,0,1455,-10,0,0 +2013,10,15,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1920,-1,0,2230,5,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,900,8,0,1030,4,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,600,60,1,737,57,1,0 +2013,4,8,1,OO,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,630,-5,0,749,-16,0,0 +2013,9,18,3,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2209,-4,0,556,-6,0,0 +2013,9,6,5,YV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1716,-10,0,1845,15,1,0 +2013,7,8,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1438,-5,0,1517,-7,0,0 +2013,6,13,4,EV,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1228,-5,0,1429,-19,0,0 +2013,9,18,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1155,-5,0,1355,-5,0,0 +2013,7,13,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-2,0,2024,-11,0,0 +2013,6,3,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,0,0,1940,0,0,0 +2013,9,29,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1600,33,1,1710,32,1,0 +2013,6,1,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,905,-2,0,1100,-5,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2110,19,1,2213,12,0,0 +2013,4,11,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2140,64,1,2320,65,1,0 +2013,8,7,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1325,19,1,1711,-1,0,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1455,-7,0,1626,-6,0,0 +2013,7,13,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1606,30,1,2022,24,1,0 +2013,5,5,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1330,-1,0,1425,-3,0,0 +2013,4,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2250,-8,0,2359,1,0,0 +2013,9,13,5,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1333,160,1,1642,153,1,0 +2013,8,28,3,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,714,-2,0,846,-6,0,0 +2013,7,5,5,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1155,7,0,1340,5,0,0 +2013,6,30,7,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,59,1,1818,62,1,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2205,35,1,2356,21,1,0 +2013,6,18,2,OO,13871,Eppley Airfield,Omaha,NE,14869,Salt Lake City International,Salt Lake City,UT,1744,-4,0,1910,-13,0,0 +2013,9,3,2,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,664,1,805,634,1,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2300,20,1,2356,11,0,0 +2013,8,19,1,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,-4,0,1020,-15,0,0 +2013,8,21,3,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,845,0,0,1231,-12,0,0 +2013,6,29,6,YV,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,607,18,1,705,11,0,0 +2013,8,6,2,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1325,-1,0,1525,10,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1830,30,1,2021,30,1,0 +2013,4,13,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1845,0,0,2045,-4,0,0 +2013,9,19,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1410,-4,0,0 +2013,10,8,2,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1555,0,0,1640,2,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,940,11,0,1215,-4,0,0 +2013,4,9,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,635,-2,0,1216,11,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,12,0,1905,11,0,0 +2013,8,28,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,1010,10,0,0 +2013,6,30,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1955,235,1,2229,217,1,0 +2013,8,25,7,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,844,-1,0,1005,-11,0,0 +2013,4,12,5,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,630,0,0,705,-4,0,0 +2013,5,20,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-6,0,920,-7,0,0 +2013,7,14,7,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1159,102,1,1753,108,1,0 +2013,6,12,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1535,-7,0,1643,-9,0,0 +2013,9,22,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,810,-11,0,0 +2013,5,15,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,-4,0,1300,-6,0,0 +2013,8,22,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1210,7,0,1400,2,0,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,-4,0,1040,-4,0,0 +2013,5,5,7,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1610,-10,0,1956,-18,0,0 +2013,8,3,6,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1443,-5,0,1733,6,0,0 +2013,5,7,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2150,-10,0,2305,-15,0,0 +2013,5,10,5,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1328,-3,0,1819,-4,0,0 +2013,8,24,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1630,10,0,1950,15,1,0 +2013,7,5,5,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1355,-4,0,2205,-12,0,0 +2013,9,19,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,16,1,1740,-4,0,0 +2013,9,29,7,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1708,-2,0,1833,6,0,0 +2013,7,13,6,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1746,-7,0,1904,-25,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1440,-5,0,1925,-6,0,0 +2013,4,4,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,945,-15,0,1255,-21,0,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,655,0,0,815,-11,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,929,-2,0,1234,24,1,0 +2013,8,10,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1424,6,0,1606,-1,0,0 +2013,4,3,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-5,0,745,0,0,0 +2013,5,20,1,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1350,0,0,1505,-13,0,0 +2013,4,2,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1742,82,1,1929,76,1,0 +2013,9,3,2,YV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1645,69,1,1910,72,1,0 +2013,4,20,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,832,-13,0,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,905,-4,0,1021,-19,0,0 +2013,6,28,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,-7,0,619,-13,0,0 +2013,4,12,5,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,6,0,1911,-6,0,0 +2013,5,6,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1000,-10,0,1128,-14,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,2,0,2200,-14,0,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-2,0,2204,-10,0,0 +2013,9,22,7,9E,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2030,-5,0,2250,-7,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,728,-3,0,846,-8,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1205,-4,0,1315,-11,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,702,27,1,805,20,1,0 +2013,5,14,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,835,3,0,1235,12,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,830,-6,0,1201,-3,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1435,0,0,1630,-11,0,0 +2013,6,13,4,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-7,0,645,-9,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,831,-3,0,952,-16,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,-2,0,2249,1,0,0 +2013,9,12,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1400,8,0,1917,1,0,0 +2013,10,14,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1350,-5,0,1404,-5,0,0 +2013,4,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,2,0,946,8,0,0 +2013,10,12,6,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1210,8,0,1730,-2,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-4,0,2336,-9,0,0 +2013,9,6,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-5,0,1923,-4,0,0 +2013,10,14,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,7,0,1250,-16,0,0 +2013,5,19,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,846,-2,0,1249,4,0,0 +2013,7,15,1,YV,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1616,-11,0,1758,-9,0,0 +2013,10,30,3,EV,10529,Bradley International,Hartford,CT,11042,Cleveland-Hopkins International,Cleveland,OH,1401,-9,0,1549,-12,0,0 +2013,9,4,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,69,1,1315,60,1,0 +2013,6,5,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,3,0,1910,-10,0,0 +2013,4,26,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1150,-3,0,1400,-1,0,0 +2013,9,7,6,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1355,-2,0,1702,6,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2155,13,0,15,16,1,0 +2013,7,28,7,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1702,-5,0,1925,1,0,0 +2013,9,2,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,-2,0,1550,-10,0,0 +2013,4,1,1,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1445,9,0,1801,-9,0,0 +2013,6,6,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,-7,0,1345,1,0,0 +2013,7,2,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,627,-6,0,800,-6,0,0 +2013,9,19,4,UA,14893,Sacramento International,Sacramento,CA,12264,Washington Dulles International,Washington,DC,755,2,0,1554,3,0,0 +2013,5,5,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1421,-3,0,1714,-16,0,0 +2013,8,10,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1645,9,0,1940,-8,0,0 +2013,10,3,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,0,0,2013,8,0,0 +2013,9,19,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,12,0,1829,5,0,0 +2013,4,22,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,65,1,1710,74,1,0 +2013,4,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,830,22,1,1235,6,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1530,16,1,1630,8,0,0 +2013,10,21,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,915,9,0,1116,8,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,80,1,2009,88,1,0 +2013,10,13,7,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1056,-4,0,1259,-12,0,0 +2013,5,31,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,1120,-9,0,0 +2013,10,28,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1710,0,0,1905,-23,0,0 +2013,10,10,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1335,-6,0,1750,-30,0,0 +2013,9,12,4,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1725,24,1,1800,23,1,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,830,-9,0,1146,-12,0,0 +2013,6,28,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,970,1,2005,960,1,0 +2013,6,14,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1435,-7,0,1603,-21,0,0 +2013,8,16,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,4,0,1453,2,0,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,-4,0,1230,9,0,0 +2013,10,8,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-3,0,1500,-8,0,0 +2013,9,7,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,0,0,1310,-7,0,0 +2013,10,15,2,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,1,0,2037,-25,0,0 +2013,6,24,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,700,-3,0,947,-6,0,0 +2013,8,31,6,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2216,-7,0,618,-24,0,0 +2013,9,25,3,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-9,0,959,-10,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1810,-7,0,2011,-20,0,0 +2013,6,3,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1232,-10,0,1520,-9,0,0 +2013,4,4,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-2,0,1140,-8,0,0 +2013,8,11,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,41,1,2006,29,1,0 +2013,4,25,4,B6,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,2139,8,0,550,8,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1455,14,0,1804,17,1,0 +2013,6,12,3,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,810,-6,0,1140,-20,0,0 +2013,4,20,6,FL,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,659,-6,0,911,2,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-1,0,1351,0,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,735,-4,0,904,-2,0,0 +2013,10,11,5,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1000,43,1,1605,24,1,0 +2013,7,13,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2059,30,1,2220,32,1,0 +2013,7,29,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1809,1,0,2020,-18,0,0 +2013,8,3,6,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1743,-10,0,2018,-14,0,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1935,-4,0,2343,13,0,0 +2013,10,1,2,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,755,-2,0,910,-11,0,0 +2013,10,16,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1635,36,1,1740,31,1,0 +2013,7,28,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,700,-4,0,924,-9,0,0 +2013,9,29,7,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,-5,0,1420,-12,0,0 +2013,4,1,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,900,6,0,1115,5,0,0 +2013,8,22,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,605,1,0,741,0,0,0 +2013,8,28,3,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1803,43,1,2109,54,1,0 +2013,9,14,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,-6,0,902,-12,0,0 +2013,10,4,5,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,725,-5,0,830,-15,0,0 +2013,6,13,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,26,1,1028,24,1,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1832,57,1,1940,54,1,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,-7,0,828,-8,0,0 +2013,4,16,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,810,1,0,940,-12,0,0 +2013,7,20,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-5,0,849,-8,0,0 +2013,5,23,4,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1025,1,0,1329,-7,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,154,1,2231,141,1,0 +2013,5,10,5,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-1,0,1238,10,0,0 +2013,5,14,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,2,0,2145,-18,0,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1255,14,0,1615,20,1,0 +2013,7,6,6,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,-4,0,1636,-4,0,0 +2013,9,13,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,945,-2,0,1800,-1,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1235,-4,0,1519,-33,0,0 +2013,8,6,2,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1530,15,1,2335,6,0,0 +2013,6,6,4,EV,12339,Indianapolis International,Indianapolis,IN,11618,Newark Liberty International,Newark,NJ,1356,0,0,1559,-8,0,0 +2013,5,30,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-3,0,1120,-12,0,0 +2013,7,17,3,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,829,-2,0,1637,10,0,0 +2013,6,4,2,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1330,-2,0,1623,-14,0,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,819,-6,0,1210,33,1,0 +2013,9,12,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1210,0,,1520,0,1,1 +2013,4,7,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1535,-2,0,1635,-4,0,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-3,0,1033,-10,0,0 +2013,9,18,3,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-5,0,2041,-9,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,920,0,0,1100,-8,0,0 +2013,9,9,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,-6,0,1036,-23,0,0 +2013,8,28,3,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1415,-9,0,1601,-17,0,0 +2013,8,12,1,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-2,0,1529,-14,0,0 +2013,10,17,4,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,655,3,0,944,-5,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1350,3,0,1546,-7,0,0 +2013,6,17,1,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1635,4,0,1845,0,1,1 +2013,6,6,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,209,1,1738,198,1,0 +2013,8,28,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1440,7,0,2004,-9,0,0 +2013,4,17,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1516,-12,0,0 +2013,4,9,2,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1805,-5,0,2055,-24,0,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,1,0,1258,-5,0,0 +2013,6,17,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-8,0,1329,-7,0,0 +2013,6,2,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,8,0,1405,0,0,0 +2013,7,1,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-9,0,913,-7,0,0 +2013,7,27,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1350,11,0,1510,10,0,0 +2013,4,16,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1055,2,0,0 +2013,8,11,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,195,1,1430,185,1,0 +2013,9,3,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1724,-4,0,1943,-10,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,20,1,1735,32,1,0 +2013,10,18,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1255,-2,0,1550,-14,0,0 +2013,5,29,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1450,-3,0,1832,-16,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1825,36,1,2018,44,1,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2155,23,1,10,6,0,0 +2013,4,7,7,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,730,-1,0,955,-9,0,0 +2013,4,14,7,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,32,1,2256,27,1,0 +2013,8,13,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,173,1,2340,171,1,0 +2013,4,11,4,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1545,-8,0,1652,19,1,0 +2013,5,27,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-3,0,1900,-12,0,0 +2013,5,17,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1340,-4,0,1608,-21,0,0 +2013,7,27,6,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,-5,0,1420,-28,0,0 +2013,10,18,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1440,42,1,1525,40,1,0 +2013,8,22,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1027,3,0,1124,7,0,0 +2013,7,5,5,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1940,-5,0,2255,-21,0,0 +2013,7,18,4,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1254,4,0,1437,3,0,0 +2013,8,29,4,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-5,0,1216,-9,0,0 +2013,6,5,3,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,756,-6,0,931,-12,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-11,0,1043,21,1,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1810,2,0,1946,-9,0,0 +2013,10,24,4,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2202,9,0,2323,0,0,0 +2013,9,28,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1932,0,0,0 +2013,5,13,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1037,-6,0,1224,-20,0,0 +2013,8,9,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,211,135,1,559,140,1,0 +2013,9,30,1,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,827,-3,0,1318,-4,0,0 +2013,10,21,1,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,920,1,0,1214,-14,0,0 +2013,5,19,7,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1040,-2,0,1235,-26,0,0 +2013,10,3,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,38,1,1205,22,1,0 +2013,6,2,7,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1957,13,0,2108,14,0,0 +2013,4,4,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,740,1,0,1545,-15,0,0 +2013,8,29,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1008,-2,0,1236,-11,0,0 +2013,4,21,7,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-10,0,930,-2,0,0 +2013,6,3,1,OO,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1457,19,1,1610,16,1,0 +2013,9,18,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,650,-1,0,1015,-12,0,0 +2013,6,7,5,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,620,-3,0,740,-4,0,0 +2013,7,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1000,12,0,1310,7,0,0 +2013,6,10,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,500,0,0,650,-8,0,0 +2013,6,29,6,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1840,26,1,1920,17,1,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1529,-3,0,1814,73,1,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2040,71,1,2155,79,1,0 +2013,10,9,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1840,19,1,2010,10,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,625,36,1,1000,20,1,0 +2013,9,23,1,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1842,-10,0,2019,-28,0,0 +2013,4,27,6,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1920,-6,0,0 +2013,7,7,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,39,1,2013,56,1,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,925,1,0,1105,-5,0,0 +2013,9,5,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,-6,0,1850,-4,0,0 +2013,4,1,1,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-6,0,1643,13,0,0 +2013,10,9,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,940,-2,0,1025,-11,0,0 +2013,8,18,7,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1302,81,1,1445,88,1,0 +2013,10,21,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,3,0,1600,-9,0,0 +2013,5,12,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,9,0,1535,7,0,0 +2013,7,1,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,74,1,2149,65,1,0 +2013,9,19,4,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-8,0,1215,-17,0,0 +2013,10,11,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,845,0,0,905,-11,0,0 +2013,4,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1905,-1,0,2035,-2,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,650,-1,0,920,-1,0,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1235,1,0,1822,-19,0,0 +2013,5,29,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,-3,0,2019,11,0,0 +2013,7,11,4,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,713,-5,0,901,-9,0,0 +2013,7,17,3,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,0,0,908,-45,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1822,9,0,2155,-34,0,0 +2013,10,31,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1728,-4,0,2026,-20,0,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14730,Louisville International-Standiford Field,Louisville,KY,1115,1,0,1740,-27,0,0 +2013,10,28,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,745,1,0,1011,-3,0,0 +2013,5,12,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,930,0,0,1255,1,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1450,7,0,1710,12,0,0 +2013,7,22,1,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1702,117,1,2000,104,1,0 +2013,7,1,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,734,-5,0,817,-7,0,0 +2013,10,14,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2020,4,0,2145,-11,0,0 +2013,9,3,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1945,-2,0,2110,-6,0,0 +2013,10,29,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-4,0,2245,-11,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,725,-1,0,945,-15,0,0 +2013,6,2,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,-2,0,2118,22,1,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,1,0,1245,11,0,0 +2013,4,27,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,805,-14,0,1320,-24,0,0 +2013,7,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,11,0,1535,-7,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1405,48,1,1615,49,1,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-1,0,1915,28,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,0,0,1930,-5,0,0 +2013,5,21,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,3,0,1934,6,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1020,78,1,1225,62,1,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,-1,0,2210,-16,0,0 +2013,6,1,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,2005,-5,0,2240,-18,0,0 +2013,4,19,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1855,31,1,2056,38,1,0 +2013,9,1,7,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,920,-6,0,1140,-20,0,0 +2013,7,23,2,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1545,3,0,1906,-18,0,0 +2013,4,22,1,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,600,-7,0,845,20,1,0 +2013,4,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1900,0,0,2254,-1,0,0 +2013,5,14,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,855,80,1,1000,75,1,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1115,21,1,1200,18,1,0 +2013,10,12,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1920,34,1,2205,4,0,0 +2013,8,6,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2330,18,1,516,8,0,0 +2013,9,4,3,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,855,-4,0,1012,0,0,0 +2013,5,27,1,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,7,0,1445,-3,0,0 +2013,8,7,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1940,-4,0,2030,-12,0,0 +2013,7,29,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,1410,-20,0,0 +2013,6,11,2,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,46,1,1845,31,1,0 +2013,4,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-7,0,1831,-5,0,0 +2013,6,18,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,17,1,1632,31,1,0 +2013,4,26,5,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,2059,-9,0,2220,-8,0,0 +2013,8,2,5,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1409,24,1,1650,29,1,0 +2013,10,5,6,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,10,0,2202,13,0,0 +2013,5,14,2,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,935,-4,0,1055,3,0,0 +2013,5,8,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,2050,-4,0,2245,-18,0,0 +2013,10,14,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2125,45,1,2300,24,1,0 +2013,7,20,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,-8,0,1854,-1,0,0 +2013,7,30,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,758,-6,0,834,-2,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,932,-4,0,1310,-10,0,0 +2013,5,31,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,40,1,1305,42,1,0 +2013,5,11,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1705,22,1,1848,18,1,0 +2013,8,28,3,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,615,-4,0,742,-16,0,0 +2013,9,22,7,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1510,-7,0,1750,-14,0,0 +2013,4,13,6,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1710,36,1,2105,4,0,0 +2013,4,4,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,24,1,1835,17,1,0 +2013,6,1,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1102,-5,0,1255,-16,0,0 +2013,10,18,5,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-11,0,1440,3,0,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1600,99,1,1730,90,1,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,1,0,1735,18,1,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,48,1,1520,44,1,0 +2013,10,28,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2040,76,1,2145,67,1,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1610,7,0,1821,-2,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1705,0,0,2230,13,0,0 +2013,7,14,7,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1042,-13,0,1454,-4,0,0 +2013,6,5,3,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1835,1,0,2126,-26,0,0 +2013,9,6,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1100,-1,0,1230,5,0,0 +2013,5,31,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,740,26,1,825,25,1,0 +2013,5,21,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,2055,-5,0,2200,-21,0,0 +2013,6,1,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,740,-4,0,900,-8,0,0 +2013,8,8,4,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,0,,1952,0,1,1 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1230,52,1,1425,16,1,0 +2013,5,6,1,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,910,-6,0,1730,16,1,0 +2013,6,3,1,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,720,-1,0,905,-13,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1630,-1,0,1847,-4,0,0 +2013,5,21,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,11,0,1710,-1,0,0 +2013,6,23,7,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,216,1,730,206,1,0 +2013,5,17,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,-12,0,1435,-14,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1725,0,0,1925,-2,0,0 +2013,4,9,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,645,-2,0,835,-17,0,0 +2013,6,2,7,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1800,0,,1918,0,1,1 +2013,10,22,2,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1415,10,0,1645,-5,0,0 +2013,6,22,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1515,1,0,1640,-2,0,0 +2013,4,11,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1155,3,0,1300,8,0,0 +2013,5,5,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,800,-5,0,1301,-21,0,0 +2013,8,19,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1600,6,0,1630,-1,0,0 +2013,5,19,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1020,0,0,1140,-5,0,0 +2013,9,5,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-10,0,850,-23,0,0 +2013,6,15,6,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1505,18,1,1620,15,1,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2015,15,1,2135,6,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1145,0,0,1412,-37,0,0 +2013,6,25,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1030,-6,0,1258,-9,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1020,-7,0,1200,-20,0,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,-2,0,1529,8,0,0 +2013,4,27,6,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1630,-4,0,1830,-19,0,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1815,-3,0,2131,-50,0,0 +2013,6,2,7,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,1,0,1655,20,1,0 +2013,4,1,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,747,-2,0,1029,-10,0,0 +2013,7,21,7,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1227,-5,0,1552,-14,0,0 +2013,9,13,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1703,-4,0,1928,-3,0,0 +2013,10,10,4,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,800,-1,0,905,2,0,0 +2013,6,3,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1944,-1,0,2229,-20,0,0 +2013,5,23,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,750,0,0,1507,-7,0,0 +2013,8,23,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1003,18,1,1112,18,1,0 +2013,6,17,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,84,1,1235,79,1,0 +2013,4,29,1,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1205,12,0,1325,1,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1630,-4,0,1811,-12,0,0 +2013,7,11,4,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1651,19,1,2056,14,0,0 +2013,5,5,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,5,0,2301,15,1,0 +2013,9,30,1,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1940,3,0,2245,1,0,0 +2013,9,15,7,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1105,-4,0,1215,-9,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-3,0,1256,-17,0,0 +2013,10,4,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,1,0,1600,-9,0,0 +2013,9,25,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,-9,0,1350,-5,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,21,1,1120,32,1,0 +2013,7,30,2,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,6,0,1645,0,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,-4,0,858,-1,0,0 +2013,7,22,1,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,10,0,1058,8,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,935,-3,0,1100,-12,0,0 +2013,9,3,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1025,1,0,1320,9,0,0 +2013,5,12,7,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,830,23,1,1026,7,0,0 +2013,10,10,4,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1710,37,1,1840,26,1,0 +2013,8,30,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2040,0,0,0 +2013,6,25,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,2000,0,,2315,0,1,1 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1835,-4,0,2225,1,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,835,-5,0,1055,-1,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1405,0,0,1608,-20,0,0 +2013,4,18,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1120,29,1,1220,20,1,0 +2013,7,13,6,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,2037,152,1,2145,132,1,0 +2013,4,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,-4,0,1150,-13,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,2003,-3,0,2120,-12,0,0 +2013,8,22,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,920,-2,0,1040,-1,0,0 +2013,7,19,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1651,-8,0,1837,-22,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,77,1,1940,88,1,0 +2013,10,17,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-2,0,2055,10,0,0 +2013,5,27,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,703,-8,0,943,-13,0,0 +2013,7,18,4,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1040,14,0,1425,9,0,0 +2013,7,13,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-5,0,1411,-7,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,15,1,1809,39,1,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1301,-4,0,2135,-27,0,0 +2013,10,6,7,9E,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1801,0,0,2117,-2,0,0 +2013,7,25,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1735,1,0,2044,21,1,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1125,0,0,1235,-14,0,0 +2013,9,7,6,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,5,0,1455,-4,0,0 +2013,5,31,5,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,600,10,0,830,4,0,0 +2013,10,20,7,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,620,-3,0,710,-12,0,0 +2013,5,27,1,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1133,32,1,1904,24,1,0 +2013,4,20,6,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,202,1,655,195,1,0 +2013,5,25,6,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1500,10,0,1550,14,0,0 +2013,8,9,5,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1730,8,0,1955,-15,0,0 +2013,6,24,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,2,0,1240,-4,0,0 +2013,6,7,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1728,177,1,1900,202,1,0 +2013,5,3,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,-1,0,1230,-4,0,0 +2013,9,4,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1105,-4,0,1353,-23,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2050,0,,2150,0,1,1 +2013,9,5,4,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-1,0,1045,-12,0,0 +2013,6,20,4,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,814,-7,0,1055,-20,0,0 +2013,4,26,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1740,-3,0,2105,-14,0,0 +2013,7,8,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1114,17,1,1244,15,1,0 +2013,10,18,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1515,-5,0,1812,-11,0,0 +2013,6,19,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,618,-4,0,1215,-12,0,0 +2013,9,24,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1145,-5,0,1314,-5,0,0 +2013,4,27,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,600,-9,0,725,-13,0,0 +2013,7,20,6,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1455,57,1,1600,121,1,0 +2013,9,3,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1517,-8,0,1745,-6,0,0 +2013,4,19,5,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1731,0,,1905,0,1,1 +2013,6,28,5,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-6,0,853,-9,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1735,2,0,2110,-13,0,0 +2013,8,18,7,UA,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1633,9,0,1804,-7,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2055,13,0,2324,6,0,0 +2013,8,24,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-10,0,1303,-11,0,0 +2013,5,29,3,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-2,0,810,4,0,0 +2013,7,31,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1710,11,0,1830,8,0,0 +2013,6,23,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-13,0,1500,-23,0,0 +2013,8,30,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,621,-6,0,1227,-17,0,0 +2013,10,21,1,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1507,-4,0,1738,4,0,0 +2013,5,3,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1749,0,0,1937,5,0,0 +2013,10,30,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,1020,-5,0,1201,-16,0,0 +2013,4,11,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1600,0,0,1658,6,0,0 +2013,5,24,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,709,6,0,743,8,0,0 +2013,9,4,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-6,0,1035,-9,0,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1818,2,0,2039,7,0,0 +2013,9,5,4,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-13,0,1125,-16,0,0 +2013,8,13,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-2,0,925,-6,0,0 +2013,9,20,5,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-7,0,1022,-2,0,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1850,214,1,2215,208,1,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,0,0,1050,-6,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2040,6,0,2240,-14,0,0 +2013,9,18,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-5,0,1210,-7,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,625,-2,0,750,-4,0,0 +2013,8,27,2,FL,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,1715,24,1,2000,-5,0,0 +2013,10,29,2,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1642,-3,0,1837,18,1,0 +2013,10,22,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-2,0,1255,-5,0,0 +2013,9,10,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1530,-1,0,1625,2,0,0 +2013,8,12,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1753,-3,0,1900,-14,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1700,29,1,1755,41,1,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,17,1,2000,-1,0,0 +2013,4,14,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,848,-12,0,0 +2013,7,15,1,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,2030,9,0,2211,3,0,0 +2013,6,22,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,823,-8,0,0 +2013,6,26,3,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,610,1,0,725,31,1,0 +2013,10,8,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,950,-5,0,1115,-9,0,0 +2013,7,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,0,0,855,0,0,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-9,0,1256,-7,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1035,-2,0,1505,-13,0,0 +2013,9,17,2,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,-6,0,1835,-14,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1850,48,1,1955,42,1,0 +2013,6,2,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-5,0,1345,-12,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1054,-5,0,1158,-30,0,0 +2013,7,18,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-5,0,1707,-7,0,0 +2013,10,10,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,740,-6,0,1045,16,1,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,955,7,0,1101,5,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,2035,1,0,5,2,0,0 +2013,7,6,6,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1320,-12,0,1532,-16,0,0 +2013,9,8,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1615,-4,0,1747,2,0,0 +2013,5,31,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1030,127,1,1250,109,1,0 +2013,5,19,7,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2031,13,0,2209,-3,0,0 +2013,9,30,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1830,-6,0,2000,-8,0,0 +2013,6,7,5,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1440,5,0,1659,-11,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1510,42,1,1610,41,1,0 +2013,10,31,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,0,0,1819,2,0,0 +2013,5,31,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1815,0,0,1835,-12,0,0 +2013,10,11,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1445,26,1,1605,23,1,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1128,-3,0,1443,-9,0,0 +2013,8,10,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1420,11,0,1640,9,0,0 +2013,6,7,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1440,91,1,1652,91,1,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1245,8,0,1615,-8,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-5,0,1627,-18,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,17,1,1400,4,0,0 +2013,4,27,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,615,43,1,829,34,1,0 +2013,8,1,4,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,109,1,1921,105,1,0 +2013,7,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,642,0,0,940,-11,0,0 +2013,5,15,3,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,534,-10,0,702,-9,0,0 +2013,4,16,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1829,-4,0,1959,-18,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,930,7,0,1320,2,0,0 +2013,5,1,3,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-3,0,1025,-7,0,0 +2013,6,15,6,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,845,-1,0,1115,-1,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,600,-3,0,805,-6,0,0 +2013,9,10,2,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,740,-23,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,0,0,907,-11,0,0 +2013,9,9,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1450,1,0,1505,-1,0,0 +2013,10,28,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1919,-4,0,2100,-17,0,0 +2013,6,4,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,13,0,2055,17,1,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-1,0,1735,-18,0,0 +2013,4,15,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1731,-13,0,1913,-5,0,0 +2013,4,28,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1102,-1,0,1313,2,0,0 +2013,7,16,2,EV,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,69,1,1840,52,1,0 +2013,8,9,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1631,26,1,1914,10,0,0 +2013,7,14,7,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1550,36,1,1705,45,1,0 +2013,7,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,5,0,1740,0,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1340,-4,0,1516,-10,0,0 +2013,10,13,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-2,0,2113,-5,0,0 +2013,4,22,1,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,87,1,2210,75,1,0 +2013,10,4,5,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1500,12,0,1620,1,0,0 +2013,4,27,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2000,27,1,2144,-2,0,0 +2013,6,10,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,846,-7,0,918,-16,0,0 +2013,8,15,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,2355,-1,0,612,3,0,0 +2013,9,27,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1710,-3,0,1829,16,1,0 +2013,9,1,7,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,-1,0,2055,3,0,0 +2013,9,18,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1510,-10,0,1826,-19,0,0 +2013,6,6,4,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,107,1,1856,103,1,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1725,77,1,1935,69,1,0 +2013,5,16,4,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,600,-4,0,840,-21,0,0 +2013,10,19,6,WN,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,645,-1,0,855,0,0,0 +2013,4,15,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1855,7,0,2135,12,0,0 +2013,10,1,2,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-6,0,1725,-9,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,63,1,1805,48,1,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1320,10,0,1638,19,1,0 +2013,8,4,7,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1132,38,1,1453,31,1,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2155,4,0,2335,0,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2211,-5,0,15,-12,0,0 +2013,9,3,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1248,0,0,1616,0,0,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-1,0,1647,29,1,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,2000,-1,0,2139,-2,0,0 +2013,7,13,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,47,1,1932,40,1,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1636,3,0,1805,10,0,0 +2013,8,26,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,5,0,1750,10,0,0 +2013,4,10,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,2035,9,0,2305,4,0,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1154,0,0,1302,-8,0,0 +2013,5,30,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1300,-3,0,1435,-16,0,0 +2013,10,30,3,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,640,-4,0,807,-8,0,0 +2013,4,6,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1338,-7,0,1654,-3,0,0 +2013,6,6,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1840,6,0,1945,6,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,825,4,0,1005,5,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1800,-6,0,1925,-14,0,0 +2013,4,1,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,716,-5,0,1046,-4,0,0 +2013,6,5,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,735,-2,0,805,-5,0,0 +2013,5,6,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-9,0,2058,-13,0,0 +2013,6,21,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1045,39,1,1250,28,1,0 +2013,6,6,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11042,Cleveland-Hopkins International,Cleveland,OH,1354,-8,0,1510,-25,0,0 +2013,10,22,2,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,925,3,0,945,8,0,0 +2013,10,31,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,30,1,1805,30,1,0 +2013,5,19,7,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,50,1,1452,56,1,0 +2013,9,9,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,831,-8,0,933,-25,0,0 +2013,8,10,6,UA,12264,Washington Dulles International,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1723,65,1,2013,47,1,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1100,-7,0,1240,-12,0,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1959,0,,2126,0,1,1 +2013,8,18,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1940,17,1,2250,13,0,0 +2013,5,1,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1345,-8,0,1530,4,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,3,0,1415,11,0,0 +2013,4,22,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1225,20,1,1355,21,1,0 +2013,8,19,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1600,-4,0,1704,-6,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,1,0,1038,-4,0,0 +2013,10,31,4,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1333,-7,0,1838,-4,0,0 +2013,10,11,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,4,0,1256,9,0,0 +2013,8,14,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,621,2,0,759,-10,0,0 +2013,7,10,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1705,94,1,1830,92,1,0 +2013,6,10,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,-6,0,915,-7,0,0 +2013,5,15,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-3,0,1505,-30,0,0 +2013,8,19,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,201,1,1605,235,1,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1700,-4,0,2158,-21,0,0 +2013,4,1,1,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2100,13,0,2220,17,1,0 +2013,4,25,4,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1043,-1,0,1241,6,0,0 +2013,7,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1020,-5,0,1343,1,0,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-2,0,40,-8,0,0 +2013,8,10,6,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1135,32,1,1420,13,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,-7,0,2358,-12,0,0 +2013,7,15,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1035,-3,0,1350,-29,0,0 +2013,7,30,2,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,630,-10,0,758,-11,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,-3,0,1145,-9,0,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,834,33,1,933,24,1,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1500,-2,0,1550,-9,0,0 +2013,6,18,2,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-11,0,2047,-23,0,0 +2013,7,22,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2320,11,0,517,4,0,0 +2013,8,30,5,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1310,-5,0,1429,-10,0,0 +2013,9,9,1,US,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,914,-1,0,1031,-10,0,0 +2013,7,25,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1503,28,1,1659,26,1,0 +2013,8,30,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,807,-7,0,931,-11,0,0 +2013,7,2,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1407,-1,0,2100,8,0,0 +2013,9,26,4,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-13,0,711,-26,0,0 +2013,7,13,6,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,810,-2,0,1020,3,0,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,935,-3,0,1110,-11,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1525,-1,0,1733,-2,0,0 +2013,6,28,5,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1735,135,1,1823,139,1,0 +2013,7,29,1,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1659,50,1,2020,41,1,0 +2013,10,19,6,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,905,-4,0,1030,-8,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2000,0,0,2328,-12,0,0 +2013,10,26,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,8,0,949,-3,0,0 +2013,6,8,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1520,5,0,1646,-3,0,0 +2013,9,2,1,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,700,2,0,942,-22,0,0 +2013,10,3,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1416,-3,0,1700,-8,0,0 +2013,5,1,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1455,48,1,1635,41,1,0 +2013,9,29,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1650,34,1,1815,35,1,0 +2013,10,20,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,2,0,1810,-1,0,0 +2013,9,18,3,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,710,91,1,836,67,1,0 +2013,10,21,1,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,-6,0,1314,-13,0,0 +2013,9,25,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-1,0,1117,-3,0,0 +2013,6,15,6,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-10,0,1123,-1,0,0 +2013,4,27,6,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1120,-3,0,1300,-32,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1310,-8,0,1444,-19,0,0 +2013,8,25,7,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-6,0,1240,-12,0,0 +2013,5,18,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1255,37,1,1418,27,1,0 +2013,10,4,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1103,-1,0,1930,-21,0,0 +2013,6,24,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,813,31,1,947,25,1,0 +2013,8,7,3,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,1410,-8,0,1619,-14,0,0 +2013,7,15,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1100,29,1,1155,27,1,0 +2013,4,30,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1920,-5,0,2234,-11,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1325,10,0,1850,-4,0,0 +2013,5,8,3,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,2235,-1,0,601,-11,0,0 +2013,9,8,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,17,1,1742,15,1,0 +2013,4,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2112,9,0,2246,13,0,0 +2013,8,8,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-6,0,1006,2,0,0 +2013,8,19,1,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,2105,74,1,2220,58,1,0 +2013,9,1,7,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1920,-1,0,2230,6,0,0 +2013,7,7,7,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-9,0,1955,86,1,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1942,-8,0,2115,-20,0,0 +2013,4,14,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-8,0,909,6,0,0 +2013,10,28,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,630,-1,0,755,5,0,0 +2013,8,20,2,MQ,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1240,-11,0,1420,-32,0,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,-5,0,2356,-18,0,0 +2013,7,25,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1630,54,1,1915,45,1,0 +2013,5,29,3,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,952,-3,0,1230,-8,0,0 +2013,7,8,1,WN,13198,Kansas City International,Kansas City,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1235,-3,0,1430,-11,0,0 +2013,6,10,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1757,4,0,1955,1,0,0 +2013,5,6,1,AA,13930,Chicago O'Hare International,Chicago,IL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,-4,0,2200,-17,0,0 +2013,5,16,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2125,9,0,2245,15,1,0 +2013,7,19,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1557,-2,0,1800,-16,0,0 +2013,8,4,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,-5,0,2252,-7,0,0 +2013,4,12,5,WN,14570,Reno/Tahoe International,Reno,NV,13232,Chicago Midway International,Chicago,IL,1025,16,1,1610,13,0,0 +2013,8,12,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,921,-2,0,1318,-11,0,0 +2013,8,4,7,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,840,-2,0,910,-6,0,0 +2013,6,27,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1340,5,0,1505,3,0,0 +2013,8,24,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1334,2,0,1505,4,0,0 +2013,5,31,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,832,-2,0,935,9,0,0 +2013,10,27,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1842,-4,0,2057,6,0,0 +2013,7,14,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1315,-3,0,1616,-11,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1150,10,0,1410,3,0,0 +2013,7,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,703,-1,0,815,-4,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1720,-3,0,1922,-7,0,0 +2013,5,17,5,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1121,-6,0,1827,-17,0,0 +2013,7,26,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2015,22,1,2140,11,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,820,-3,0,1015,-9,0,0 +2013,6,24,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1910,207,1,2054,219,1,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,56,1,850,45,1,0 +2013,6,13,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,29,1,1505,30,1,0 +2013,8,13,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1621,-1,0,1828,-3,0,0 +2013,6,20,4,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,2340,31,1,701,20,1,0 +2013,9,27,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1040,14,0,1131,38,1,0 +2013,4,26,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,705,-5,0,751,17,1,0 +2013,10,12,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,-4,0,2050,-31,0,0 +2013,10,24,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1728,2,0,1945,6,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,843,2,0,1532,-10,0,0 +2013,6,22,6,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1551,-21,0,1732,-34,0,0 +2013,8,25,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1658,7,0,1840,-6,0,0 +2013,8,25,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1145,-3,0,1336,0,0,0 +2013,7,28,7,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1744,-5,0,2055,-9,0,0 +2013,9,3,2,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,839,-13,0,1004,-26,0,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1625,12,0,1803,6,0,0 +2013,8,14,3,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,-7,0,905,-14,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1400,4,0,1515,-3,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1515,83,1,1605,97,1,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-6,0,948,-12,0,0 +2013,10,29,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-1,0,2051,5,0,0 +2013,9,5,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,10,0,1435,5,0,0 +2013,7,16,2,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1705,12,0,1820,5,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1145,3,0,1550,-4,0,0 +2013,9,1,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,-11,0,1709,-9,0,0 +2013,9,20,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,931,-13,0,1235,-33,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1335,-6,0,1444,-20,0,0 +2013,8,7,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1350,-3,0,1504,-1,0,0 +2013,5,22,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,2140,119,1,2245,137,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2209,-6,0,2359,-13,0,0 +2013,6,2,7,DL,11618,Newark Liberty International,Newark,NJ,14869,Salt Lake City International,Salt Lake City,UT,1725,62,1,2034,82,1,0 +2013,6,19,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,14,0,1450,19,1,0 +2013,7,1,1,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,920,-1,0,1105,-9,0,0 +2013,8,26,1,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-3,0,1240,2,0,0 +2013,5,10,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1530,0,0,1826,-16,0,0 +2013,9,4,3,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-1,0,745,-21,0,0 +2013,4,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1120,-2,0,1342,0,0,0 +2013,6,5,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,3,0,1205,5,0,0 +2013,6,25,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,0,0,2238,-12,0,0 +2013,5,25,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1819,0,0,2050,12,0,0 +2013,4,3,3,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1250,23,1,1422,23,1,0 +2013,5,24,5,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,21,1,1805,19,1,0 +2013,9,6,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-9,0,1006,-15,0,0 +2013,4,26,5,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,1,0,1455,-7,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1331,19,1,1940,47,1,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1625,7,0,1630,5,0,0 +2013,5,30,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1505,-2,0,1630,-12,0,0 +2013,7,17,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1543,11,0,2359,29,1,0 +2013,7,12,5,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-5,0,1940,-29,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1500,0,0,1715,-6,0,0 +2013,8,28,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1545,0,0,1820,-4,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1635,-1,0,1825,-15,0,0 +2013,4,26,5,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1838,-13,0,2108,-28,0,0 +2013,7,24,3,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1735,154,1,2145,134,1,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,620,57,1,755,37,1,0 +2013,5,5,7,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1530,15,1,1645,-6,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,805,-1,0,1015,-9,0,0 +2013,9,30,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1130,16,1,1346,8,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1215,115,1,1348,92,1,0 +2013,4,21,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1109,0,0,1240,-3,0,0 +2013,7,19,5,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1125,-11,0,1231,-8,0,0 +2013,5,16,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,812,-14,0,0 +2013,5,10,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1525,28,1,1905,27,1,0 +2013,6,9,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-2,0,1945,3,0,0 +2013,9,14,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,735,-4,0,1500,-13,0,0 +2013,5,31,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1145,-1,0,1450,7,0,0 +2013,7,25,4,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1311,-18,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,-3,0,2324,-17,0,0 +2013,6,26,3,FL,13204,Orlando International,Orlando,FL,13342,General Mitchell International,Milwaukee,WI,1915,116,1,2100,104,1,0 +2013,5,30,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-3,0,608,1,0,0 +2013,6,15,6,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-6,0,1228,3,0,0 +2013,5,3,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,-3,0,2320,-25,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1535,13,0,1620,2,0,0 +2013,8,11,7,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1942,-8,0,2155,-11,0,0 +2013,9,15,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1332,-2,0,1600,0,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-3,0,1430,-11,0,0 +2013,10,5,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-6,0,1329,-5,0,0 +2013,10,11,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,609,1,0,1430,33,1,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,6,0,1255,15,1,0 +2013,8,22,4,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1940,-6,0,2127,-16,0,0 +2013,5,12,7,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,1,0,1455,-2,0,0 +2013,9,12,4,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1627,-1,0,2002,-10,0,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,2130,-6,0,2300,-31,0,0 +2013,6,18,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,1,0,840,12,0,0 +2013,4,9,2,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,811,0,,942,0,1,1 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,935,-2,0,1315,4,0,0 +2013,7,11,4,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-3,0,911,-12,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,835,-1,0,1030,1,0,0 +2013,4,30,2,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,-10,0,1252,-7,0,0 +2013,8,3,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2015,34,1,2225,25,1,0 +2013,7,21,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,600,-5,0,710,-11,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2059,3,0,2219,-11,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-2,0,1454,-25,0,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1325,-7,0,2159,-9,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1930,0,0,5,-4,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1430,-5,0,1655,-4,0,0 +2013,7,25,4,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2153,-1,0,558,14,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1903,48,1,2239,39,1,0 +2013,7,10,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,171,1,2011,186,1,0 +2013,5,18,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1615,-1,0,1725,-12,0,0 +2013,9,11,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-4,0,1916,5,0,0 +2013,5,27,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1800,62,1,2325,57,1,0 +2013,9,7,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1000,-3,0,1100,-6,0,0 +2013,9,3,2,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,-3,0,922,-10,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-2,0,710,-10,0,0 +2013,10,5,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,2,0,1610,13,0,0 +2013,8,25,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,-1,0,2051,-7,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1430,7,0,1515,2,0,0 +2013,8,5,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1445,-8,0,1811,-6,0,0 +2013,9,3,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,613,-3,0,831,-7,0,0 +2013,8,25,7,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-4,0,1309,-7,0,0 +2013,6,5,3,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2008,0,,2135,0,1,1 +2013,5,16,4,OO,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,2008,-2,0,2359,19,1,0 +2013,7,13,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,731,1,0,1149,-9,0,0 +2013,10,11,5,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,630,8,0,1208,-13,0,0 +2013,9,23,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,650,0,0,814,15,1,0 +2013,5,30,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,8,0,2151,9,0,0 +2013,5,21,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,30,1,800,96,1,0 +2013,9,17,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,-7,0,850,-5,0,0 +2013,9,11,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-9,0,1247,-24,0,0 +2013,10,23,3,EV,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,700,-11,0,1101,-26,0,0 +2013,8,2,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1013,16,1,1256,35,1,0 +2013,4,11,4,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,857,49,1,1042,33,1,0 +2013,7,12,5,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1702,-12,0,1925,-12,0,0 +2013,5,28,2,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1620,12,0,1847,5,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,24,1,2045,11,0,0 +2013,7,3,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1435,34,1,1526,24,1,0 +2013,6,12,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,735,-7,0,755,-22,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-3,0,844,-5,0,0 +2013,9,20,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-5,0,1350,-13,0,0 +2013,6,1,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1800,45,1,2020,26,1,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1134,0,,1337,0,1,1 +2013,7,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1550,36,1,1745,7,0,0 +2013,8,12,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1605,11,0,1725,-1,0,0 +2013,9,3,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-4,0,641,-3,0,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1730,0,0,1825,2,0,0 +2013,10,22,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,725,-2,0,745,-7,0,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-4,0,1120,-12,0,0 +2013,10,31,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1815,6,0,2010,2,0,0 +2013,4,30,2,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,-3,0,1044,-8,0,0 +2013,8,29,4,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1349,-5,0,1517,-15,0,0 +2013,8,25,7,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1245,10,0,1610,-3,0,0 +2013,7,10,3,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,730,-2,0,933,-6,0,0 +2013,10,18,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,5,0,1440,8,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,817,-3,0,1127,-21,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-2,0,715,-5,0,0 +2013,5,17,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,15,1,2055,16,1,0 +2013,5,8,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,613,-7,0,935,-41,0,0 +2013,7,23,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,915,-7,0,1100,-17,0,0 +2013,5,29,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,49,1,2220,60,1,0 +2013,10,10,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1910,63,1,2030,67,1,0 +2013,7,28,7,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,1305,-10,0,0 +2013,5,17,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-1,0,1348,-15,0,0 +2013,8,1,4,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1850,59,1,2025,58,1,0 +2013,9,25,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,645,-3,0,810,-7,0,0 +2013,5,20,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-5,0,919,-4,0,0 +2013,7,14,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,805,-2,0,1150,3,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1007,-6,0,1342,-29,0,0 +2013,8,21,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1750,-5,0,1904,-19,0,0 +2013,5,1,3,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,0,0,735,-5,0,0 +2013,6,27,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1050,9,0,1200,-5,0,0 +2013,9,22,7,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,14,0,2047,12,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,805,-5,0,910,-7,0,0 +2013,10,8,2,US,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1106,7,0,1229,4,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,-3,0,1807,-8,0,0 +2013,6,17,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1416,-1,0,0 +2013,5,20,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,47,1,2224,70,1,0 +2013,7,17,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,1,0,1130,-1,0,0 +2013,10,25,5,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,920,-5,0,1235,4,0,0 +2013,6,4,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1428,13,0,1610,-7,0,0 +2013,4,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,720,-2,0,936,-10,0,0 +2013,8,15,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,-9,0,1140,-10,0,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1351,7,0,1658,-5,0,0 +2013,7,10,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-4,0,820,-16,0,0 +2013,6,22,6,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,705,-7,0,914,-6,0,0 +2013,5,19,7,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1230,0,0,1627,11,0,0 +2013,10,21,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1715,29,1,2225,7,0,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,0,0,1030,-12,0,0 +2013,5,31,5,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1017,11,0,1510,17,1,0 +2013,5,6,1,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,841,-10,0,1032,0,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1355,8,0,1830,16,1,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,545,9,0,640,12,0,0 +2013,7,24,3,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,-7,0,2004,-33,0,0 +2013,4,25,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,935,-7,0,1023,-11,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1810,5,0,2042,42,1,0 +2013,4,26,5,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1545,-7,0,1752,-24,0,0 +2013,10,2,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,745,35,1,831,28,1,0 +2013,7,22,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,-1,0,2215,-13,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1230,4,0,1405,-3,0,0 +2013,9,11,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,0,0,1425,5,0,0 +2013,6,11,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1536,5,0,1750,3,0,0 +2013,9,7,6,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1334,132,1,1512,122,1,0 +2013,5,10,5,YV,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-11,0,1412,-11,0,0 +2013,10,5,6,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,955,-7,0,1048,-14,0,0 +2013,7,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1502,0,,1729,0,1,1 +2013,8,17,6,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1604,-4,0,1818,-18,0,0 +2013,10,3,4,9E,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,856,-6,0,1029,-15,0,0 +2013,8,30,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,900,-11,0,0 +2013,7,26,5,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1850,-2,0,2015,4,0,0 +2013,9,26,4,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,1,0,1205,3,0,0 +2013,9,11,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,948,-8,0,1205,-7,0,0 +2013,9,22,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1030,-3,0,1139,-15,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1656,-2,0,1932,-7,0,0 +2013,9,3,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1925,-1,0,2240,-13,0,0 +2013,5,30,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1349,-7,0,1410,-13,0,0 +2013,4,5,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1705,0,0,1905,-16,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1635,2,0,15,0,0,0 +2013,5,21,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1520,24,1,1625,16,1,0 +2013,8,13,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2230,124,1,659,89,1,0 +2013,10,2,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1305,2,0,1610,-4,0,0 +2013,5,15,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1045,199,1,1834,194,1,0 +2013,7,18,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,11,0,2346,-4,0,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1419,-2,0,2246,-23,0,0 +2013,4,15,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-4,0,1120,5,0,0 +2013,5,24,5,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,625,-2,0,1355,28,1,0 +2013,7,27,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1950,28,1,2120,17,1,0 +2013,7,13,6,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,705,-7,0,1207,-16,0,0 +2013,8,25,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1115,-4,0,1225,-5,0,0 +2013,8,21,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,715,-4,0,953,-23,0,0 +2013,9,6,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,6,0,2010,-17,0,0 +2013,8,11,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1356,-1,0,1710,3,0,0 +2013,8,20,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2110,-2,0,2300,-12,0,0 +2013,9,15,7,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1335,19,1,1605,6,0,0 +2013,9,21,6,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,545,-6,0,706,-13,0,0 +2013,5,29,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,-3,0,940,2,0,0 +2013,6,22,6,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1750,-1,0,1840,-2,0,0 +2013,7,16,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,0,0,815,1,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1412,12,0,1550,16,1,0 +2013,6,26,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13244,Memphis International,Memphis,TN,800,-6,0,1301,-3,0,0 +2013,10,3,4,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,825,0,0,1140,-9,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,629,-2,0,805,-3,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,705,-3,0,811,-23,0,0 +2013,6,14,5,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,5,0,1930,7,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2145,6,0,2340,-1,0,0 +2013,7,7,7,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1440,69,1,1605,58,1,0 +2013,8,7,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,0,,1829,0,1,1 +2013,5,16,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1132,6,0,1335,12,0,0 +2013,4,24,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,837,26,1,1601,6,0,0 +2013,8,4,7,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1145,-8,0,1320,-10,0,0 +2013,10,20,7,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,910,18,1,1210,3,0,0 +2013,10,8,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,855,-4,0,955,-8,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,8,0,1544,-1,0,0 +2013,7,31,3,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1741,-3,0,1904,15,1,0 +2013,4,12,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1415,1,0,1510,-6,0,0 +2013,8,26,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-4,0,1600,-15,0,0 +2013,5,14,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2257,-8,0,505,-4,0,0 +2013,5,18,6,WN,13204,Orlando International,Orlando,FL,10140,Albuquerque International Sunport,Albuquerque,NM,1730,-7,0,1930,-6,0,0 +2013,9,19,4,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,645,-5,0,1519,13,0,0 +2013,4,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,-4,0,2126,-2,0,0 +2013,4,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1015,0,0,1615,-16,0,0 +2013,5,26,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1300,-3,0,1745,-6,0,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1830,0,0,1940,4,0,0 +2013,7,26,5,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1623,25,1,1743,-1,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1850,-2,0,1950,-1,0,0 +2013,4,22,1,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,37,1,1918,32,1,0 +2013,4,28,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,-5,0,610,-16,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1348,27,1,1458,27,1,0 +2013,5,17,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,24,1,1344,24,1,0 +2013,6,2,7,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,86,1,2135,83,1,0 +2013,10,16,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,742,11,0,823,13,0,0 +2013,6,5,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,24,1,1937,102,1,0 +2013,4,20,6,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1645,-4,0,1705,-10,0,0 +2013,10,15,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,618,-9,0,716,-4,0,0 +2013,7,15,1,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1135,104,1,1230,108,1,0 +2013,10,5,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,2120,41,1,2351,38,1,0 +2013,5,28,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1155,0,0,1434,-10,0,0 +2013,4,14,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1144,3,0,1423,8,0,0 +2013,6,5,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1150,-11,0,1309,9,0,0 +2013,6,29,6,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1903,37,1,2139,25,1,0 +2013,7,19,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1855,-2,0,2020,-12,0,0 +2013,4,8,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,17,1,1515,9,0,0 +2013,10,22,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-4,0,1638,-17,0,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2055,1,0,2259,-1,0,0 +2013,4,26,5,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,8,0,1245,32,1,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-3,0,1710,-4,0,0 +2013,7,24,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1707,-3,0,1830,0,0,0 +2013,5,9,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,-11,0,2020,-16,0,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1653,-9,0,1933,-3,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-3,0,1830,-1,0,0 +2013,5,29,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1906,-9,0,2018,-10,0,0 +2013,8,1,4,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1316,-9,0,1422,-24,0,0 +2013,9,14,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1555,32,1,1635,31,1,0 +2013,9,10,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2020,23,1,2135,19,1,0 +2013,6,17,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,1,0,1335,-6,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1010,-4,0,1110,-19,0,0 +2013,7,12,5,DL,13244,Memphis International,Memphis,TN,13204,Orlando International,Orlando,FL,825,5,0,1128,5,0,0 +2013,9,29,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2040,5,0,2235,-1,0,0 +2013,8,7,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,62,1,2320,51,1,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1506,24,1,1608,19,1,0 +2013,7,14,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-6,0,2045,-11,0,0 +2013,4,15,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,635,-3,0,810,-5,0,0 +2013,5,11,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1115,-2,0,1246,6,0,0 +2013,7,13,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12889,McCarran International,Las Vegas,NV,900,-1,0,1002,-19,0,0 +2013,6,13,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1932,17,1,2059,9,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1918,4,0,2035,-5,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1415,-2,0,1644,13,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1016,-5,0,1150,-9,0,0 +2013,5,17,5,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,810,-4,0,1050,-5,0,0 +2013,6,5,3,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-3,0,1416,0,0,0 +2013,8,6,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-5,0,843,-3,0,0 +2013,7,22,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1412,-5,0,1658,-4,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,1609,1,0,1627,7,0,0 +2013,10,26,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1735,-13,0,2305,-12,0,0 +2013,6,24,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2029,-4,0,2105,4,0,0 +2013,6,25,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,-2,0,1735,-7,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1025,55,1,1640,68,1,0 +2013,8,18,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,27,1,1730,21,1,0 +2013,5,10,5,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1720,-4,0,1839,23,1,0 +2013,5,17,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-3,0,1820,-33,0,0 +2013,7,7,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1120,7,0,1230,1,0,0 +2013,6,16,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,912,16,1,1442,-5,0,0 +2013,7,15,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,920,-5,0,1525,15,1,0 +2013,7,3,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,850,-5,0,1025,-23,0,0 +2013,9,25,3,OO,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1909,-10,0,2050,-22,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1630,50,1,1735,51,1,0 +2013,8,7,3,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1454,-4,0,1710,-28,0,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1015,-5,0,1143,-9,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,-6,0,1530,-16,0,0 +2013,9,9,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,-8,0,2035,-7,0,0 +2013,7,17,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,750,15,1,810,3,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,26,1,2357,19,1,0 +2013,9,27,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,615,-3,0,846,-1,0,0 +2013,9,21,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,1725,-2,0,1800,-10,0,0 +2013,5,16,4,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,705,-6,0,850,-5,0,0 +2013,8,22,4,AS,14747,Seattle/Tacoma International,Seattle,WA,15376,Tucson International,Tucson,AZ,955,-5,0,1250,8,0,0 +2013,4,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1125,-4,0,1250,-4,0,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,-3,0,19,-10,0,0 +2013,4,23,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1935,-3,0,2035,-4,0,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,822,2,0,1030,-7,0,0 +2013,4,21,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-7,0,1345,2,0,0 +2013,5,31,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,61,1,2110,48,1,0 +2013,7,17,3,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,938,10,0,1239,-3,0,0 +2013,8,3,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-6,0,1538,-16,0,0 +2013,4,10,3,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1030,-7,0,1142,-13,0,0 +2013,7,23,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2010,-5,0,2230,-1,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1633,26,1,2210,20,1,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1642,6,0,1804,9,0,0 +2013,4,23,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1620,-8,0,1735,0,0,0 +2013,5,2,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,21,1,1120,17,1,0 +2013,6,11,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-5,0,951,1,0,0 +2013,10,27,7,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-5,0,1105,-16,0,0 +2013,9,9,1,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1756,-8,0,2112,-8,0,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,28,1,2056,23,1,0 +2013,9,17,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,26,1,1223,41,1,0 +2013,7,3,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,33,1,1213,26,1,0 +2013,4,17,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1300,290,1,1525,270,1,0 +2013,5,9,4,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,630,-5,0,811,4,0,0 +2013,10,18,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,15,1,1450,10,0,0 +2013,9,27,5,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,740,4,0,0 +2013,7,15,1,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2105,17,1,2355,6,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,8,0,1335,2,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2215,-1,0,2352,-5,0,0 +2013,7,18,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,630,0,0,1225,-3,0,0 +2013,5,8,3,WN,13198,Kansas City International,Kansas City,MO,13851,Will Rogers World,Oklahoma City,OK,1705,6,0,1810,11,0,0 +2013,8,29,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1410,10,0,1735,7,0,0 +2013,7,7,7,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,755,-2,0,0 +2013,5,24,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,-2,0,1120,-3,0,0 +2013,5,31,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1210,16,1,1345,-5,0,0 +2013,10,1,2,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-6,0,1333,9,0,0 +2013,4,12,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1623,41,1,1840,15,1,0 +2013,6,20,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1002,-14,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-4,0,1916,-15,0,0 +2013,5,27,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12339,Indianapolis International,Indianapolis,IN,1115,0,0,1352,-7,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1415,-3,0,1520,-11,0,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1320,-1,0,1540,-6,0,0 +2013,9,28,6,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1335,-6,0,1645,-12,0,0 +2013,9,6,5,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1450,1,0,1810,5,0,0 +2013,7,25,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1650,7,0,1820,0,1,1 +2013,10,2,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1455,-5,0,1605,-8,0,0 +2013,8,2,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,-3,0,1655,-5,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,13,0,1155,10,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2215,-4,0,23,-10,0,0 +2013,8,13,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1936,-7,0,2105,0,0,0 +2013,6,14,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,17,1,20,13,0,0 +2013,4,28,7,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,-7,0,1635,-17,0,0 +2013,10,1,2,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,2145,-4,0,559,-5,0,0 +2013,4,21,7,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,44,1,1540,30,1,0 +2013,5,19,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,9,0,2350,-9,0,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1830,2,0,1920,2,0,0 +2013,8,29,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,610,-4,0,905,-7,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1525,-3,0,1803,16,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1755,-1,0,2140,18,1,0 +2013,10,6,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-3,0,849,-4,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1005,-4,0,1145,-5,0,0 +2013,10,27,7,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,919,6,0,1105,-9,0,0 +2013,4,16,2,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1245,-3,0,1403,-6,0,0 +2013,6,3,1,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-2,0,745,-12,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1238,2,0,1617,-21,0,0 +2013,4,26,5,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,835,-8,0,941,-26,0,0 +2013,6,27,4,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1430,8,0,1725,16,1,0 +2013,4,2,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,0,0,1145,-5,0,0 +2013,8,14,3,YV,12264,Washington Dulles International,Washington,DC,13851,Will Rogers World,Oklahoma City,OK,1845,0,0,2039,1,0,0 +2013,10,2,3,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1210,-1,0,1320,-9,0,0 +2013,5,5,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1710,-4,0,1916,0,0,0 +2013,6,11,2,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1010,84,1,1127,89,1,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,3,0,2229,-3,0,0 +2013,5,27,1,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,-3,0,2204,-9,0,0 +2013,9,29,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1305,-19,0,0 +2013,6,2,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,9,0,1448,8,0,0 +2013,7,27,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2000,40,1,2125,50,1,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1645,41,1,1915,38,1,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-6,0,950,-7,0,0 +2013,9,28,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1510,-2,0,1610,-2,0,0 +2013,4,12,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,946,158,1,1120,158,1,0 +2013,7,20,6,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-8,0,1541,-13,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1806,-4,0,1940,-5,0,0 +2013,10,25,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1733,-2,0,2207,-37,0,0 +2013,6,8,6,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,615,-3,0,945,-10,0,0 +2013,9,21,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1200,0,0,1445,-5,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-2,0,1643,0,0,0 +2013,4,14,7,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1454,10,0,1724,19,1,0 +2013,6,25,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,610,1,0,910,-2,0,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,1,0,1335,6,0,0 +2013,10,28,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1312,-5,0,1535,10,0,0 +2013,8,24,6,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,705,-4,0,839,-12,0,0 +2013,9,10,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,841,-8,0,1038,-25,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,815,-1,0,1110,-8,0,0 +2013,5,3,5,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1038,195,1,1212,189,1,0 +2013,8,24,6,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,-4,0,1632,-17,0,0 +2013,8,22,4,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1918,0,,2229,0,1,1 +2013,8,20,2,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1601,-10,0,1722,-19,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1740,18,1,1845,-4,0,0 +2013,8,26,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,819,-9,0,1139,-11,0,0 +2013,8,9,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1458,-5,0,1943,-20,0,0 +2013,6,14,5,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,103,1,2035,94,1,0 +2013,10,28,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,-6,0,1515,-21,0,0 +2013,5,3,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,856,-8,0,1105,-45,0,0 +2013,5,2,4,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,11,0,2008,-8,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-1,0,900,-3,0,0 +2013,8,4,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1255,11,0,1855,-6,0,0 +2013,10,11,5,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1430,-1,0,1630,11,0,0 +2013,4,6,6,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,745,-10,0,1040,-27,0,0 +2013,10,12,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,650,-6,0,921,-34,0,0 +2013,4,13,6,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1705,-5,0,1838,-20,0,0 +2013,7,14,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,0,0,1010,-6,0,0 +2013,6,15,6,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1300,0,0,1435,8,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,0,,1835,0,1,1 +2013,7,20,6,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,16,1,1510,5,0,0 +2013,7,23,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1755,51,1,2120,77,1,0 +2013,7,22,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,12,0,720,-4,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1309,7,0,1629,-4,0,0 +2013,9,22,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1202,4,0,1511,1,0,0 +2013,5,25,6,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1024,-1,0,1158,-7,0,0 +2013,7,29,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,1028,19,1,0 +2013,9,30,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1500,-6,0,1801,-3,0,0 +2013,4,22,1,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-11,0,1036,-18,0,0 +2013,8,3,6,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1420,-7,0,2227,2,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,850,-3,0,1000,-11,0,0 +2013,10,18,5,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1829,-4,0,2105,-15,0,0 +2013,10,27,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1244,-4,0,1514,-10,0,0 +2013,6,18,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,600,-1,0,735,-14,0,0 +2013,4,7,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-2,0,1246,11,0,0 +2013,10,28,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1820,6,0,2005,13,0,0 +2013,9,19,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1540,96,1,1646,116,1,0 +2013,10,7,1,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1658,-1,0,1915,-5,0,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1305,89,1,1614,99,1,0 +2013,6,29,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1735,183,1,1850,186,1,0 +2013,9,9,1,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1648,-3,0,1842,-18,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1835,38,1,2130,31,1,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,26,1,2110,2,0,0 +2013,9,23,1,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,820,-3,0,1115,-12,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2000,4,0,2130,0,0,0 +2013,8,13,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,-5,0,1610,-10,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1055,8,0,1200,7,0,0 +2013,4,20,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,17,1,1159,2,0,0 +2013,8,8,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1845,-5,0,2005,-10,0,0 +2013,4,6,6,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,600,-8,0,703,-16,0,0 +2013,5,27,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1715,-3,0,1838,-9,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,905,-2,0,1032,-18,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,14,0,2045,6,0,0 +2013,10,30,3,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,917,-5,0,1037,-15,0,0 +2013,9,21,6,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1305,9,0,1435,10,0,0 +2013,10,21,1,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1628,3,0,2159,1,0,0 +2013,9,27,5,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1630,8,0,1940,0,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1200,-2,0,1405,-16,0,0 +2013,5,3,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,957,-9,0,1040,-7,0,0 +2013,8,27,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12264,Washington Dulles International,Washington,DC,1431,0,,1601,0,1,1 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,825,-2,0,1255,-25,0,0 +2013,8,9,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,745,72,1,1000,81,1,0 +2013,10,2,3,DL,10140,Albuquerque International Sunport,Albuquerque,NM,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-6,0,1031,-29,0,0 +2013,10,5,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-7,0,1311,-10,0,0 +2013,5,23,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1015,25,1,1200,25,1,0 +2013,6,24,1,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1835,54,1,2115,64,1,0 +2013,8,27,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-5,0,1018,9,0,0 +2013,8,1,4,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1947,0,0,2030,-8,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1420,87,1,1758,83,1,0 +2013,8,7,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,2002,78,1,2155,74,1,0 +2013,5,23,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,0,,1959,0,1,1 +2013,6,17,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,214,1,1225,234,1,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,-1,0,1455,-8,0,0 +2013,10,19,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,1,0,1539,-24,0,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1335,-3,0,1431,0,0,0 +2013,4,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10423,Austin - Bergstrom International,Austin,TX,630,-1,0,1150,-18,0,0 +2013,10,25,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1605,21,1,1900,10,0,0 +2013,5,28,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,833,9,0,946,4,0,0 +2013,9,28,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1005,-4,0,1322,-3,0,0 +2013,5,10,5,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1230,1,0,1515,4,0,0 +2013,9,28,6,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1030,-4,0,1230,1,0,0 +2013,10,2,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1730,-1,0,1835,29,1,0 +2013,4,9,2,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1427,66,1,1640,63,1,0 +2013,5,28,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,720,-3,0,1037,-3,0,0 +2013,4,29,1,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,610,-10,0,937,-18,0,0 +2013,5,21,2,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-3,0,2055,3,0,0 +2013,8,22,4,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,835,-2,0,1145,6,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,0,0,2055,-5,0,0 +2013,5,6,1,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1133,-3,0,1420,-8,0,0 +2013,5,2,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,842,-2,0,1036,-12,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1500,8,0,1624,0,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,-3,0,2012,-9,0,0 +2013,6,13,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1314,0,,1440,0,1,1 +2013,8,9,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,-1,0,1805,-2,0,0 +2013,9,28,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1115,-5,0,1718,-22,0,0 +2013,5,4,6,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1200,0,0,1232,6,0,0 +2013,10,30,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1600,15,1,1715,8,0,0 +2013,6,28,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1435,7,0,1540,13,0,0 +2013,7,17,3,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,830,0,0,1630,8,0,0 +2013,4,1,1,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1720,0,0,1859,-4,0,0 +2013,7,18,4,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2035,11,0,2154,4,0,0 +2013,6,23,7,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,600,-1,0,731,-3,0,0 +2013,8,3,6,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,3,0,2135,-26,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2004,1,0,2103,-8,0,0 +2013,8,3,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2349,30,1,813,23,1,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-2,0,1031,-13,0,0 +2013,5,1,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1056,-9,0,0 +2013,10,6,7,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,953,-5,0,1133,-18,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,810,7,0,930,5,0,0 +2013,5,6,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,-4,0,2259,-5,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,819,-4,0,924,-9,0,0 +2013,5,14,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1800,105,1,1921,116,1,0 +2013,7,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1955,6,0,2135,8,0,0 +2013,7,22,1,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,10,0,1156,1,0,0 +2013,4,23,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,600,254,1,940,242,1,0 +2013,10,6,7,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1455,-1,0,1552,3,0,0 +2013,4,10,3,9E,12478,John F. Kennedy International,New York,NY,14524,Richmond International,Richmond,VA,1820,200,1,2000,221,1,0 +2013,10,16,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1355,-3,0,1609,32,1,0 +2013,4,18,4,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1335,182,1,1725,181,1,0 +2013,10,16,3,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,0,0,1225,0,0,0 +2013,5,26,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1925,-6,0,2110,-15,0,0 +2013,10,29,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1350,-6,0,1517,-13,0,0 +2013,5,22,3,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,605,-1,0,800,1,0,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2045,2,0,2245,7,0,0 +2013,7,29,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,725,-5,0,859,-4,0,0 +2013,6,2,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,-5,0,1940,-1,0,0 +2013,5,27,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,18,1,34,4,0,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,1,0,1040,-9,0,0 +2013,8,12,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1035,-6,0,1320,-15,0,0 +2013,7,26,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2235,-4,0,50,-9,0,0 +2013,6,29,6,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,900,2,0,1115,-21,0,0 +2013,5,23,4,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,-7,0,817,2,0,0 +2013,6,10,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1641,55,1,1815,49,1,0 +2013,4,24,3,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1810,111,1,2000,101,1,0 +2013,7,31,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1416,23,1,1550,37,1,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,535,-1,0,1315,-21,0,0 +2013,5,4,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1720,-5,0,1932,-17,0,0 +2013,4,14,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,2130,-2,0,2353,3,0,0 +2013,9,24,2,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1750,-2,0,2045,-5,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1340,64,1,1825,50,1,0 +2013,10,27,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,850,-8,0,0 +2013,8,12,1,HA,14057,Portland International,Portland,OR,12173,Honolulu International,Honolulu,HI,940,2,0,1235,5,0,0 +2013,4,28,7,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,850,-4,0,1059,-5,0,0 +2013,7,29,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,940,-6,0,1142,-12,0,0 +2013,10,25,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-9,0,902,-10,0,0 +2013,7,16,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-6,0,1844,-16,0,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,844,-1,0,1041,-8,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,1,0,2250,-6,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,919,12,0,1052,2,0,0 +2013,8,23,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1340,0,0,1445,-2,0,0 +2013,8,20,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1254,6,0,1816,7,0,0 +2013,9,26,4,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,1403,-18,0,0 +2013,9,16,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1035,28,1,1200,24,1,0 +2013,7,13,6,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,1529,-2,0,1710,1,0,0 +2013,9,23,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1135,-7,0,1250,4,0,0 +2013,8,10,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-10,0,1026,-15,0,0 +2013,6,23,7,DL,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-5,0,1023,18,1,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,645,-1,0,1015,-12,0,0 +2013,9,6,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-7,0,2000,-31,0,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1310,1,0,1435,-10,0,0 +2013,8,25,7,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,925,16,1,1240,8,0,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1830,-2,0,12,13,0,0 +2013,9,15,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-8,0,917,-11,0,0 +2013,9,20,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,706,-2,0,838,18,1,0 +2013,4,15,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,-1,0,1817,-13,0,0 +2013,8,31,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1750,6,0,2010,-10,0,0 +2013,8,23,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-1,0,1030,-23,0,0 +2013,4,10,3,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,2032,18,1,2257,7,0,0 +2013,5,15,3,EV,13931,Norfolk International,Norfolk,VA,11618,Newark Liberty International,Newark,NJ,1010,-10,0,1137,-1,0,0 +2013,10,29,2,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1030,-4,0,1222,-16,0,0 +2013,7,20,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1025,-4,0,1208,-14,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,2150,86,1,2335,79,1,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,525,34,1,1219,26,1,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,857,-3,0,1009,-1,0,0 +2013,10,17,4,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,600,0,0,710,3,0,0 +2013,4,20,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-2,0,920,3,0,0 +2013,5,8,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,18,1,2305,12,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1403,-2,0,1541,-14,0,0 +2013,9,9,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,15,1,1337,4,0,0 +2013,8,1,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1947,4,0,2135,-3,0,0 +2013,7,14,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1646,101,1,1733,91,1,0 +2013,9,10,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1035,-5,0,1607,10,0,0 +2013,7,8,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1712,32,1,1733,61,1,0 +2013,9,18,3,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,5,0,1340,-7,0,0 +2013,7,16,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-4,0,727,-16,0,0 +2013,7,11,4,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1107,16,1,1340,-2,0,0 +2013,6,16,7,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1745,-1,0,2014,-16,0,0 +2013,7,18,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1000,-7,0,1133,-33,0,0 +2013,5,17,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-2,0,1000,3,0,0 +2013,5,22,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-9,0,852,-12,0,0 +2013,7,9,2,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,710,7,0,1305,-4,0,0 +2013,6,9,7,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1557,-10,0,1850,0,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,53,1,1026,50,1,0 +2013,8,4,7,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1435,2,0,2255,-2,0,0 +2013,5,9,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1530,3,0,1635,-2,0,0 +2013,10,10,4,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-7,0,1043,14,0,0 +2013,4,10,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1805,-2,0,0 +2013,9,25,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,730,-7,0,1026,-23,0,0 +2013,8,21,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1105,-1,0,1115,0,0,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1251,-2,0,1552,-12,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1710,-3,0,2000,-15,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1720,0,0,1925,-27,0,0 +2013,6,28,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,831,2,0,1459,1,0,0 +2013,9,7,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,930,1,0,1210,-11,0,0 +2013,5,22,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1623,-2,0,2157,-23,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,107,1,1737,100,1,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-6,0,2154,-2,0,0 +2013,8,9,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1006,0,0,1158,0,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,915,2,0,1200,3,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,745,-2,0,1005,1,0,0 +2013,10,6,7,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1409,-7,0,1704,-8,0,0 +2013,6,29,6,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1555,-6,0,2057,0,0,0 +2013,9,18,3,WN,10423,Austin - Bergstrom International,Austin,TX,11278,Ronald Reagan Washington National,Washington,DC,1205,-3,0,1615,-12,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2150,19,1,2300,9,0,0 +2013,8,18,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,5,0,2132,22,1,0 +2013,9,19,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,958,70,1,1232,54,1,0 +2013,8,4,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1139,-4,0,1429,10,0,0 +2013,9,28,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1505,82,1,1620,76,1,0 +2013,5,18,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,840,-15,0,0 +2013,4,16,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1137,19,1,1747,-3,0,0 +2013,7,21,7,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1248,-5,0,1425,-28,0,0 +2013,9,26,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1815,-4,0,2015,-14,0,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,0,0,1020,0,0,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1510,9,0,1630,31,1,0 +2013,4,4,4,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1327,4,0,1844,-11,0,0 +2013,7,13,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1945,-7,0,2104,-19,0,0 +2013,6,2,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1930,-5,0,2122,-15,0,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1156,-3,0,1447,-5,0,0 +2013,4,20,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,50,1,1155,40,1,0 +2013,4,8,1,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1520,10,0,1640,13,0,0 +2013,5,21,2,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1450,11,0,1600,8,0,0 +2013,9,26,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,900,-3,0,1700,3,0,0 +2013,4,19,5,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1220,8,0,1357,15,1,0 +2013,10,6,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1526,-3,0,1845,-9,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-1,0,1329,-6,0,0 +2013,9,1,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,3,0,1758,-10,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2135,98,1,2305,107,1,0 +2013,10,11,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,-7,0,921,-19,0,0 +2013,9,13,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1759,15,1,2052,9,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,11,0,2055,-7,0,0 +2013,8,4,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1947,21,1,2135,36,1,0 +2013,6,15,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,3,0,2005,5,0,0 +2013,5,13,1,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1915,-5,0,2125,0,0,0 +2013,8,29,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,805,-7,0,1510,3,0,0 +2013,4,25,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,20,1,2245,13,0,0 +2013,9,3,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,-7,0,1140,-26,0,0 +2013,9,7,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1212,53,1,1323,48,1,0 +2013,8,3,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,106,1,1954,108,1,0 +2013,9,6,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1349,-2,0,1758,7,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-4,0,918,-8,0,0 +2013,6,22,6,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,700,-9,0,808,-19,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-5,0,1201,-10,0,0 +2013,7,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1755,15,1,2000,1,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,-2,0,1449,-1,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,-1,0,1253,-1,0,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2145,-17,0,2359,-27,0,0 +2013,4,4,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1146,-8,0,1320,-23,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,28,1,1051,44,1,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,-2,0,2350,-11,0,0 +2013,7,17,3,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,554,3,0,914,17,1,0 +2013,7,19,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1625,-2,0,1843,-1,0,0 +2013,8,30,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1710,-4,0,2005,-12,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2015,7,0,2220,-1,0,0 +2013,10,4,5,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1305,28,1,2020,14,0,0 +2013,9,18,3,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1614,-9,0,2200,-16,0,0 +2013,9,28,6,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,-4,0,1809,-22,0,0 +2013,6,9,7,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1805,13,0,1846,36,1,0 +2013,9,18,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,837,-4,0,921,-3,0,0 +2013,8,8,4,WN,15304,Tampa International,Tampa,FL,15016,Lambert-St. Louis International,St. Louis,MO,1045,-1,0,1200,0,0,0 +2013,7,26,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,740,4,0,905,19,1,0 +2013,7,7,7,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1300,5,0,1425,-7,0,0 +2013,10,5,6,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1050,-6,0,1325,-24,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-4,0,2357,-13,0,0 +2013,5,17,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-6,0,1110,0,0,0 +2013,10,7,1,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1257,-3,0,1602,11,0,0 +2013,5,23,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1325,6,0,1330,30,1,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1730,16,1,2004,3,0,0 +2013,4,16,2,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1900,12,0,2050,8,0,0 +2013,6,21,5,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2325,127,1,730,120,1,0 +2013,9,4,3,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-6,0,1110,-1,0,0 +2013,8,11,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-5,0,1151,-14,0,0 +2013,5,3,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2155,-8,0,2315,-18,0,0 +2013,9,16,1,FL,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,1222,-1,0,1432,-9,0,0 +2013,8,3,6,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1754,3,0,1907,2,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1955,68,1,2225,62,1,0 +2013,6,10,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-4,0,1611,-13,0,0 +2013,7,12,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1010,12,0,1145,5,0,0 +2013,7,10,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,655,-5,0,830,-21,0,0 +2013,5,5,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,945,-3,0,1142,-18,0,0 +2013,10,22,2,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1510,-1,0,1735,20,1,0 +2013,8,22,4,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,745,-2,0,855,-3,0,0 +2013,5,7,2,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1840,-5,0,2005,7,0,0 +2013,5,15,3,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-5,0,2035,-17,0,0 +2013,9,10,2,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-7,0,2050,1,0,0 +2013,6,25,2,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1107,-5,0,1208,-10,0,0 +2013,8,4,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1005,-4,0,1140,-16,0,0 +2013,5,6,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1155,2,0,2014,23,1,0 +2013,10,9,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1801,52,1,2052,73,1,0 +2013,7,19,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,-6,0,2103,7,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1319,-4,0,1527,14,0,0 +2013,5,10,5,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,6,0,2054,20,1,0 +2013,9,20,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1430,-3,0,1808,-21,0,0 +2013,9,13,5,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,35,1,2350,27,1,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,111,1,2205,101,1,0 +2013,6,23,7,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,900,-7,0,1129,-13,0,0 +2013,7,20,6,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,650,-4,0,738,-4,0,0 +2013,7,16,2,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,63,1,2211,69,1,0 +2013,5,8,3,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-3,0,1000,-10,0,0 +2013,8,19,1,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,6,0,1305,-1,0,0 +2013,10,16,3,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1105,-3,0,1230,10,0,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,853,-4,0,1115,-20,0,0 +2013,10,2,3,EV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,802,-7,0,1128,-10,0,0 +2013,5,27,1,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1700,0,0,1924,-16,0,0 +2013,9,29,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1410,-2,0,1729,-15,0,0 +2013,4,8,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,4,0,1320,8,0,0 +2013,5,10,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1016,-4,0,1202,-16,0,0 +2013,7,22,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-9,0,2210,-14,0,0 +2013,5,24,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,745,-1,0,1055,1,0,0 +2013,10,26,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,753,0,0,848,-2,0,0 +2013,8,29,4,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1635,83,1,1832,57,1,0 +2013,10,17,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1516,10,0,2324,27,1,0 +2013,10,9,3,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,47,1,830,50,1,0 +2013,6,10,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1740,69,1,1949,113,1,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,2,0,1140,-7,0,0 +2013,10,13,7,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1007,-8,0,1304,-8,0,0 +2013,4,25,4,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1205,-5,0,1345,7,0,0 +2013,9,9,1,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1150,-5,0,1345,-6,0,0 +2013,5,2,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,28,1,1628,9,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1150,-5,0,1337,-11,0,0 +2013,6,14,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,825,-1,0,950,-4,0,0 +2013,6,5,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,633,1,0,1148,-15,0,0 +2013,9,22,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,-3,0,1925,1,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,831,-4,0,1059,-32,0,0 +2013,10,14,1,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1025,-1,0,1345,-6,0,0 +2013,6,17,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1210,-6,0,1320,-21,0,0 +2013,5,11,6,OO,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,631,-14,0,756,-21,0,0 +2013,5,29,3,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,600,3,0,840,10,0,0 +2013,10,11,5,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1804,-1,0,1956,-17,0,0 +2013,8,2,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,0,0,1730,-16,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,5,0,1510,6,0,0 +2013,5,30,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1610,-4,0,1829,0,0,0 +2013,9,30,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,32,1,2158,8,0,0 +2013,10,26,6,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,-4,0,1635,-10,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2059,7,0,2324,-1,0,0 +2013,10,29,2,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1035,22,1,1300,12,0,0 +2013,6,24,1,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-3,0,1210,-16,0,0 +2013,7,27,6,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1935,57,1,2357,47,1,0 +2013,8,21,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1115,-5,0,1205,-3,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-3,0,1224,-4,0,0 +2013,7,25,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1438,14,0,1550,16,1,0 +2013,6,15,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,725,-9,0,0 +2013,4,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,2045,-3,0,2145,-6,0,0 +2013,10,31,4,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1423,1,0,0 +2013,4,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2135,3,0,2355,1,0,0 +2013,9,7,6,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1730,-4,0,1905,-18,0,0 +2013,6,22,6,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1345,10,0,1530,4,0,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,-2,0,1437,3,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,924,32,1,1056,31,1,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1510,-4,0,1610,29,1,0 +2013,9,15,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-5,0,1845,33,1,0 +2013,5,27,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2015,-7,0,2037,0,0,0 +2013,5,9,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1455,9,0,1610,6,0,0 +2013,5,15,3,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1557,14,0,1858,3,0,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2246,-5,0,15,-9,0,0 +2013,5,19,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-1,0,1910,72,1,0 +2013,9,26,4,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,5,0,1825,3,0,0 +2013,5,8,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1833,-8,0,2004,-17,0,0 +2013,4,1,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1230,0,0,1355,2,0,0 +2013,10,7,1,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,3,0,1052,13,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2210,8,0,2359,9,0,0 +2013,6,2,7,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,2056,-8,0,512,-17,0,0 +2013,7,15,1,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-6,0,918,-15,0,0 +2013,4,11,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,622,2,0,1059,-1,0,0 +2013,7,17,3,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1724,-9,0,1900,-16,0,0 +2013,4,25,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1739,52,1,2030,81,1,0 +2013,5,11,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1010,-1,0,1208,-4,0,0 +2013,8,18,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1840,-4,0,2015,0,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1935,2,0,2045,3,0,0 +2013,8,24,6,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,705,34,1,840,7,0,0 +2013,9,7,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-6,0,1500,-14,0,0 +2013,7,12,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1540,5,0,1655,0,0,0 +2013,8,31,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,745,16,1,1045,15,1,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1435,1,0,1645,-7,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1700,-2,0,1800,-5,0,0 +2013,6,21,5,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1825,-1,0,2115,-13,0,0 +2013,10,3,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,835,-4,0,1533,-15,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1625,4,0,2030,-12,0,0 +2013,7,10,3,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1130,14,0,1226,14,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,650,-3,0,813,-11,0,0 +2013,8,11,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1030,-6,0,1202,-22,0,0 +2013,4,29,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-12,0,1050,1,0,0 +2013,8,16,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1350,0,0,1500,6,0,0 +2013,4,14,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,2000,25,1,2310,14,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2105,27,1,2205,1,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1650,2,0,2215,3,0,0 +2013,6,6,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1305,29,1,1410,17,1,0 +2013,8,29,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1500,46,1,1745,40,1,0 +2013,7,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,2047,0,0,2302,-38,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1749,-4,0,1838,-14,0,0 +2013,10,7,1,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-12,0,1819,-23,0,0 +2013,8,4,7,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1350,-8,0,1620,-11,0,0 +2013,9,15,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1515,14,0,1555,12,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,730,5,0,1055,-3,0,0 +2013,9,10,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,603,-8,0,740,-16,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1525,-3,0,1740,-5,0,0 +2013,5,9,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1525,-4,0,1810,6,0,0 +2013,5,17,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2155,61,1,2245,58,1,0 +2013,6,27,4,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,600,65,1,640,58,1,0 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,15,1,2155,14,0,0 +2013,10,10,4,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1654,23,1,1802,18,1,0 +2013,7,23,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1245,-2,0,1537,17,1,0 +2013,8,25,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,12,0,1024,4,0,0 +2013,7,13,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1835,85,1,2101,120,1,0 +2013,10,14,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,70,1,2230,62,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,-2,0,1910,-8,0,0 +2013,7,25,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,555,-5,0,725,-8,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1100,-1,0,1220,1,0,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1120,-5,0,1334,-30,0,0 +2013,7,23,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1900,33,1,2100,22,1,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1435,1,0,1825,10,0,0 +2013,10,28,1,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1530,-6,0,1848,-24,0,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,1022,-1,0,0 +2013,10,31,4,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1710,-3,0,1840,2,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,856,-3,0,1047,-12,0,0 +2013,10,3,4,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1100,-1,0,1250,2,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2215,-4,0,2350,-4,0,0 +2013,4,28,7,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-2,0,2240,-16,0,0 +2013,6,28,5,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,43,1,1855,39,1,0 +2013,4,14,7,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1330,-2,0,1604,-19,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1205,23,1,1433,18,1,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-2,0,1538,-2,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2025,125,1,2125,142,1,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1705,24,1,2030,17,1,0 +2013,8,20,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1654,6,0,2200,-7,0,0 +2013,5,19,7,EV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,842,2,0,1109,4,0,0 +2013,8,17,6,HA,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,845,-1,0,1145,-18,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,705,-6,0,1037,-20,0,0 +2013,5,20,1,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-2,0,810,-2,0,0 +2013,8,5,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1910,22,1,2220,4,0,0 +2013,4,2,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,600,-4,0,715,-2,0,0 +2013,10,27,7,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1935,-8,0,2047,-10,0,0 +2013,6,9,7,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,-2,0,1018,-1,0,0 +2013,5,23,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1235,-2,0,1515,-9,0,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1021,9,0,1306,-7,0,0 +2013,5,5,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1325,-11,0,1500,-20,0,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,935,-3,0,1210,-1,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1405,1,0,1642,4,0,0 +2013,6,9,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1335,7,0,1530,-4,0,0 +2013,10,11,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1630,0,0,1855,-13,0,0 +2013,4,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1505,-6,0,1720,-9,0,0 +2013,8,4,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1440,-4,0,1613,-19,0,0 +2013,10,23,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,-3,0,1130,-9,0,0 +2013,10,19,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,845,-4,0,1157,-17,0,0 +2013,4,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1129,-4,0,1238,-4,0,0 +2013,5,29,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1511,6,0,1825,4,0,0 +2013,10,5,6,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1210,11,0,1325,1,0,0 +2013,6,10,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1300,1,0,1435,5,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1155,19,1,1300,22,1,0 +2013,10,9,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1759,-2,0,1853,-1,0,0 +2013,6,6,4,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,730,11,0,900,-5,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1825,-7,0,2005,-26,0,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,835,-4,0,1431,-18,0,0 +2013,8,18,7,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-2,0,550,10,0,0 +2013,4,28,7,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-5,0,1225,-32,0,0 +2013,9,23,1,UA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,703,9,0,802,-11,0,0 +2013,5,30,4,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2330,-5,0,730,-12,0,0 +2013,10,13,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1449,29,1,1612,32,1,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1615,12,0,1720,3,0,0 +2013,7,18,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1705,14,0,1830,16,1,0 +2013,9,3,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1210,26,1,1310,25,1,0 +2013,4,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1740,-5,0,2050,2,0,0 +2013,8,9,5,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-7,0,1252,-25,0,0 +2013,7,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,2010,4,0,2238,-4,0,0 +2013,7,24,3,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,530,-6,0,634,-18,0,0 +2013,5,26,7,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,3,0,1245,-14,0,0 +2013,10,29,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,645,-2,0,825,-2,0,0 +2013,6,15,6,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-5,0,1421,-5,0,0 +2013,10,8,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,3,0,1628,-11,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2100,1,0,2337,-10,0,0 +2013,8,14,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1200,19,1,1316,9,0,0 +2013,5,19,7,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-7,0,1127,21,1,0 +2013,6,9,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1815,24,1,1849,28,1,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-4,0,951,-8,0,0 +2013,8,16,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,-6,0,2324,-29,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,618,-11,0,840,-9,0,0 +2013,9,9,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,610,-1,0,735,-9,0,0 +2013,8,12,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1903,25,1,2239,10,0,0 +2013,6,2,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1435,-7,0,1602,-28,0,0 +2013,4,2,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,1,0,2338,4,0,0 +2013,9,23,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1155,3,0,1420,-10,0,0 +2013,5,5,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1405,-4,0,2121,-3,0,0 +2013,6,13,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1935,43,1,1955,47,1,0 +2013,10,16,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-11,0,1650,-10,0,0 +2013,4,11,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,725,7,0,905,-1,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1540,84,1,1718,69,1,0 +2013,10,29,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,0,0,1345,-5,0,0 +2013,5,10,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,510,-3,0,631,-12,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1210,20,1,1500,23,1,0 +2013,7,1,1,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2110,-4,0,2145,-11,0,0 +2013,8,29,4,UA,14771,San Francisco International,San Francisco,CA,15016,Lambert-St. Louis International,St. Louis,MO,1250,20,1,1848,14,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1940,80,1,2207,143,1,0 +2013,6,4,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1627,-7,0,1748,-15,0,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,550,19,1,920,29,1,0 +2013,5,24,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1640,22,1,1913,25,1,0 +2013,6,12,3,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1148,-11,0,1447,-15,0,0 +2013,6,24,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,715,-2,0,815,-4,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,-3,0,2025,-16,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,4,0,2130,1,0,0 +2013,7,4,4,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,720,159,1,740,161,1,0 +2013,7,26,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,2,0,1358,-16,0,0 +2013,6,10,1,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1241,-6,0,1423,-1,0,0 +2013,5,25,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2111,10,0,526,5,0,0 +2013,5,26,7,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1410,3,0,1535,0,0,0 +2013,10,4,5,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,19,1,1900,32,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,29,1,2225,15,1,0 +2013,4,8,1,EV,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1047,195,1,1257,188,1,0 +2013,7,29,1,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,121,1,950,166,1,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,35,1,55,30,1,0 +2013,9,12,4,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,22,1,649,21,1,0 +2013,4,26,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1700,-2,0,1815,-6,0,0 +2013,9,27,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,111,1,1908,102,1,0 +2013,5,29,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-3,0,1415,-5,0,0 +2013,7,18,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-1,0,1805,2,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1636,-1,0,1921,-35,0,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1523,-1,0,1752,-13,0,0 +2013,6,26,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1020,103,1,1045,137,1,0 +2013,8,1,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,-4,0,2332,-6,0,0 +2013,10,9,3,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1745,12,0,2130,-1,0,0 +2013,7,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1757,4,0,2004,18,1,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1855,2,0,2015,2,0,0 +2013,6,1,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1150,19,1,1315,10,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1855,6,0,2115,-6,0,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1101,9,0,1221,-4,0,0 +2013,7,16,2,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,853,-4,0,957,0,0,0 +2013,5,20,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-7,0,1139,-13,0,0 +2013,7,16,2,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2030,108,1,2206,90,1,0 +2013,9,16,1,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1052,-8,0,1219,-26,0,0 +2013,5,10,5,DL,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-7,0,1612,-28,0,0 +2013,5,20,1,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,-8,0,1440,-39,0,0 +2013,10,12,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1740,11,0,1840,6,0,0 +2013,5,3,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1230,-2,0,1605,7,0,0 +2013,8,11,7,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1221,-4,0,1431,3,0,0 +2013,5,23,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1557,1,0,1808,-15,0,0 +2013,4,2,2,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,72,1,1846,77,1,0 +2013,8,6,2,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,4,0,1820,-20,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1914,-7,0,49,-17,0,0 +2013,10,7,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1315,-6,0,1919,-2,0,0 +2013,10,5,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,-3,0,1942,-13,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1635,34,1,1725,33,1,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,70,1,1608,70,1,0 +2013,9,19,4,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,1359,136,1,1511,175,1,0 +2013,4,9,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1010,1,0,1120,-1,0,0 +2013,10,11,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1357,-2,0,1751,0,0,0 +2013,4,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1920,6,0,2318,2,0,0 +2013,10,28,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,-18,0,1940,-22,0,0 +2013,4,7,7,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1645,-9,0,1825,-14,0,0 +2013,10,18,5,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,2120,1,0,522,-17,0,0 +2013,7,1,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,38,1,1410,42,1,0 +2013,5,2,4,EV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1710,-7,0,1836,-4,0,0 +2013,9,6,5,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1515,-7,0,1811,0,0,0 +2013,10,6,7,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1310,-8,0,2107,2,0,0 +2013,10,13,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1256,-2,0,1513,-6,0,0 +2013,8,12,1,OO,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1624,-6,0,1926,-4,0,0 +2013,9,19,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-2,0,1855,-11,0,0 +2013,7,23,2,WN,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1155,16,1,1740,8,0,0 +2013,5,6,1,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,630,2,0,1230,10,0,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1030,0,0,1356,-16,0,0 +2013,7,21,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,10,0,1514,-4,0,0 +2013,10,2,3,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1539,6,0,1803,-5,0,0 +2013,10,29,2,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,150,1,1125,145,1,0 +2013,4,21,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-4,0,1125,-17,0,0 +2013,10,13,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1630,38,1,2310,13,0,0 +2013,6,16,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,2150,9,0,2305,2,0,0 +2013,9,29,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1045,10,0,1315,-16,0,0 +2013,8,23,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1850,26,1,2059,12,0,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,930,-1,0,1251,-17,0,0 +2013,6,13,4,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,945,111,1,1224,154,1,0 +2013,4,18,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1500,0,,1820,0,1,1 +2013,4,25,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1710,31,1,2005,18,1,0 +2013,4,25,4,EV,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-5,0,1257,-9,0,0 +2013,6,4,2,B6,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1922,-9,0,2159,-11,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,605,-1,0,850,-28,0,0 +2013,7,29,1,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,7,0,1737,-2,0,0 +2013,10,28,1,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,605,-3,0,805,-5,0,0 +2013,9,2,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-5,0,817,7,0,0 +2013,6,25,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1852,0,0,2054,-1,0,0 +2013,10,31,4,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1045,-7,0,1320,-23,0,0 +2013,4,9,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,2110,1,0,2255,-8,0,0 +2013,7,30,2,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,-7,0,2029,11,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,-3,0,1006,-16,0,0 +2013,10,31,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1005,0,,1140,0,1,1 +2013,4,7,7,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1335,0,0,1448,-7,0,0 +2013,10,27,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-6,0,1413,-5,0,0 +2013,6,23,7,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,135,1,1915,119,1,0 +2013,9,24,2,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,1508,-14,0,0 +2013,8,28,3,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,650,-3,0,917,-5,0,0 +2013,10,16,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-4,0,1129,-6,0,0 +2013,10,28,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1308,1,0,1554,6,0,0 +2013,4,12,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1700,1,0,1825,-7,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,-3,0,1130,-25,0,0 +2013,10,31,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1250,3,0,2059,-1,0,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1310,4,0,1632,5,0,0 +2013,9,10,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1135,-6,0,1245,-16,0,0 +2013,5,26,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-7,0,604,-13,0,0 +2013,5,4,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-6,0,1020,-13,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1825,91,1,2043,85,1,0 +2013,7,25,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,53,1,1805,53,1,0 +2013,6,14,5,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-4,0,1854,-4,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,-1,0,925,6,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1930,-5,0,2049,-15,0,0 +2013,7,16,2,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1905,0,0,2150,1,0,0 +2013,10,26,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1729,-6,0,2050,6,0,0 +2013,5,28,2,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,830,-5,0,1005,-5,0,0 +2013,9,14,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,-9,0,2255,-20,0,0 +2013,9,26,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-3,0,1040,-13,0,0 +2013,9,5,4,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1140,0,0,1250,-6,0,0 +2013,8,26,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,211,126,1,559,125,1,0 +2013,7,27,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,84,1,1652,107,1,0 +2013,7,4,4,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,1414,3,0,0 +2013,7,28,7,OO,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-6,0,1040,-16,0,0 +2013,4,18,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,106,1,1805,97,1,0 +2013,10,27,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1817,-1,0,2118,-5,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1907,184,1,2050,180,1,0 +2013,8,4,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,700,-6,0,1501,-44,0,0 +2013,8,21,3,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1455,23,1,1812,33,1,0 +2013,10,6,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,925,25,1,1025,10,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1430,-2,0,1454,-9,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,0,0,859,-3,0,0 +2013,5,15,3,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,-2,0,1325,-2,0,0 +2013,5,21,2,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,935,-10,0,1148,-6,0,0 +2013,9,8,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1155,-5,0,1420,-10,0,0 +2013,7,13,6,US,10529,Bradley International,Hartford,CT,11278,Ronald Reagan Washington National,Washington,DC,620,-8,0,741,-18,0,0 +2013,10,22,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-3,0,1335,-3,0,0 +2013,10,4,5,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1628,-4,0,1840,16,1,0 +2013,10,24,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1547,-7,0,1630,-15,0,0 +2013,9,7,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-1,0,850,-23,0,0 +2013,5,12,7,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-1,0,1040,-6,0,0 +2013,9,5,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1250,1,0,1530,3,0,0 +2013,4,30,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,10,0,1245,-24,0,0 +2013,10,14,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,-5,0,1115,-15,0,0 +2013,5,30,4,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,750,-3,0,910,-12,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,853,11,0,1140,5,0,0 +2013,5,16,4,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,1630,1,0,1805,-14,0,0 +2013,9,25,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1105,-6,0,1127,22,1,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,655,-8,0,1010,-18,0,0 +2013,10,7,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,901,81,1,1013,74,1,0 +2013,6,10,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1315,-1,0,1540,33,1,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1010,4,0,1140,4,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,12,0,1355,8,0,0 +2013,9,10,2,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,729,-6,0,914,-12,0,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,-9,0,1356,-16,0,0 +2013,4,5,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,2,0,1820,-16,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1651,-3,0,2100,-8,0,0 +2013,6,12,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2151,11,0,2346,20,1,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,-3,0,1725,20,1,0 +2013,7,4,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1315,9,0,1405,3,0,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1910,12,0,2248,9,0,0 +2013,4,28,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1725,-4,0,2032,-15,0,0 +2013,9,13,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1416,2,0,1512,7,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1545,-2,0,1815,-19,0,0 +2013,6,11,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,814,-10,0,0 +2013,4,27,6,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1310,-9,0,2129,5,0,0 +2013,8,29,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,1,0,1309,-8,0,0 +2013,9,7,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,16,1,2100,6,0,0 +2013,6,26,3,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-2,0,807,-7,0,0 +2013,9,25,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1020,0,0,1219,-7,0,0 +2013,5,30,4,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,700,-9,0,905,-11,0,0 +2013,9,3,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1145,20,1,1425,7,0,0 +2013,6,20,4,UA,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1727,1,0,1815,-14,0,0 +2013,4,27,6,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,-6,0,2137,-24,0,0 +2013,8,1,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2020,42,1,2230,32,1,0 +2013,6,13,4,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,9,0,951,1,0,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1025,-3,0,1300,14,0,0 +2013,10,9,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1842,-8,0,2135,-11,0,0 +2013,7,17,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,136,1,2230,129,1,0 +2013,9,1,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1810,-3,0,2034,18,1,0 +2013,8,6,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,0,0,735,2,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1700,16,1,1839,-4,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1845,0,0,2305,-17,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1215,-1,0,1930,-18,0,0 +2013,9,23,1,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1832,-3,0,2122,-6,0,0 +2013,4,25,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,645,-5,0,740,-12,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,850,10,0,955,-2,0,0 +2013,9,21,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-7,0,1505,-10,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,23,1,2045,45,1,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,840,5,0,935,8,0,0 +2013,4,1,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1231,-3,0,1407,-9,0,0 +2013,4,18,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,0,,955,0,1,1 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1320,5,0,1522,5,0,0 +2013,6,17,1,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,900,-1,0,1101,-7,0,0 +2013,4,6,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1955,-7,0,2155,-21,0,0 +2013,4,6,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-5,0,1807,-18,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2045,0,0,2150,0,0,0 +2013,5,30,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,10,0,20,-14,0,0 +2013,10,23,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1105,-5,0,1255,-12,0,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1919,-5,0,2300,-17,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2040,91,1,2340,87,1,0 +2013,5,4,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1640,3,0,1915,-9,0,0 +2013,10,17,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1352,4,0,1639,3,0,0 +2013,5,28,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,0,0,2018,-20,0,0 +2013,10,18,5,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,1200,-1,0,1345,7,0,0 +2013,10,7,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2115,-12,0,2322,-15,0,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1253,0,0,1421,-7,0,0 +2013,8,21,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1235,-2,0,1500,-30,0,0 +2013,5,8,3,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1320,17,1,2059,9,0,0 +2013,7,7,7,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1210,-2,0,1500,-15,0,0 +2013,4,26,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,959,-10,0,1144,-10,0,0 +2013,8,29,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1154,-9,0,1521,6,0,0 +2013,5,24,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,615,-5,0,905,-13,0,0 +2013,8,20,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,-2,0,1905,-19,0,0 +2013,4,5,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,855,-1,0,1555,-3,0,0 +2013,8,6,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1015,0,,1124,0,1,1 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,825,3,0,1435,7,0,0 +2013,7,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1255,3,0,1512,-1,0,0 +2013,7,10,3,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,-12,0,1250,-1,0,0 +2013,10,23,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,703,44,1,1020,27,1,0 +2013,4,25,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,37,1,1426,37,1,0 +2013,10,23,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-9,0,917,-8,0,0 +2013,8,25,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,615,-7,0,800,-4,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1205,0,0,1315,4,0,0 +2013,7,12,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,3,0,1619,-5,0,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1805,-9,0,1938,-17,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-8,0,1007,75,1,0 +2013,6,23,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1150,-3,0,1425,-8,0,0 +2013,10,3,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1025,-2,0,1305,-1,0,0 +2013,10,4,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1340,-2,0,1618,-19,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2155,-2,0,33,-9,0,0 +2013,10,31,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,630,-2,0,745,-5,0,0 +2013,9,16,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,730,0,0,825,-6,0,0 +2013,8,2,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1420,1,0,1445,6,0,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1410,46,1,1520,52,1,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2100,-3,0,2255,32,1,0 +2013,7,22,1,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2115,10,0,510,7,0,0 +2013,4,3,3,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,3,0,1435,18,1,0 +2013,7,26,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,7,0,1507,4,0,0 +2013,9,20,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1755,-7,0,1924,-5,0,0 +2013,10,9,3,9E,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,706,-6,0,830,-15,0,0 +2013,7,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1220,29,1,1650,37,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1220,6,0,1420,9,0,0 +2013,7,15,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1445,-9,0,2310,-12,0,0 +2013,9,20,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,1,0,1950,-8,0,0 +2013,6,8,6,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-11,0,500,-34,0,0 +2013,5,5,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1700,15,1,1805,3,0,0 +2013,6,25,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,-4,0,1620,-8,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1115,-5,0,1158,-3,0,0 +2013,10,8,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,845,-4,0,1000,-9,0,0 +2013,4,15,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1000,-6,0,1258,-1,0,0 +2013,4,24,3,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1345,-2,0,1608,-10,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1950,40,1,2130,29,1,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2005,129,1,2149,114,1,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1115,3,0,1240,-1,0,0 +2013,4,23,2,AA,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,600,-3,0,910,-17,0,0 +2013,9,10,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1400,0,0,1515,-7,0,0 +2013,4,27,6,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1259,0,0,1541,0,0,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,2328,3,0,700,-13,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,835,-4,0,1055,-1,0,0 +2013,6,13,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,755,8,0,1048,-3,0,0 +2013,5,18,6,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2006,10,0,2240,7,0,0 +2013,8,29,4,UA,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1545,4,0,1618,-3,0,0 +2013,9,27,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1055,-4,0,1342,18,1,0 +2013,8,24,6,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,558,-14,0,854,-14,0,0 +2013,9,2,1,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1830,6,0,2100,0,0,0 +2013,9,6,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,0,0,1635,5,0,0 +2013,7,5,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1955,6,0,2220,4,0,0 +2013,5,6,1,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,809,0,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,825,1,0,1050,-4,0,0 +2013,9,25,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1320,0,0,1445,0,0,0 +2013,8,12,1,DL,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1813,-3,0,2054,-14,0,0 +2013,5,1,3,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1125,1,0,1230,-18,0,0 +2013,6,19,3,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1810,1,0,2059,-9,0,0 +2013,7,3,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,65,1,951,52,1,0 +2013,5,10,5,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,728,0,0,938,-9,0,0 +2013,4,25,4,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,630,-4,0,756,6,0,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,750,0,0,1020,2,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1117,-4,0,1324,-3,0,0 +2013,9,12,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1035,0,,1200,0,1,1 +2013,10,10,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1350,72,1,1605,64,1,0 +2013,9,7,6,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,4,0,1600,-27,0,0 +2013,10,5,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1317,-2,0,1540,-16,0,0 +2013,8,6,2,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1559,0,0,2107,-8,0,0 +2013,5,25,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1738,31,1,1902,26,1,0 +2013,7,21,7,B6,10529,Bradley International,Hartford,CT,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1400,-5,0,1652,-14,0,0 +2013,9,24,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-5,0,1506,-5,0,0 +2013,6,20,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-2,0,1620,-1,0,0 +2013,10,10,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,700,-3,0,947,-12,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1325,4,0,1450,-4,0,0 +2013,7,14,7,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,2,0,1254,-15,0,0 +2013,9,5,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-10,0,914,-18,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1650,-2,0,2105,-10,0,0 +2013,5,27,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1400,-11,0,1535,-13,0,0 +2013,8,24,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1820,17,1,1935,5,0,0 +2013,4,29,1,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1735,6,0,1930,-3,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1926,-3,0,2104,-8,0,0 +2013,6,2,7,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,758,-18,0,0 +2013,9,9,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1120,19,1,1227,6,0,0 +2013,10,7,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,615,0,0,712,-1,0,0 +2013,4,11,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,955,-2,0,1235,-5,0,0 +2013,7,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-4,0,1224,-4,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,609,-2,0,912,6,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-1,0,1440,4,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1425,10,0,1635,10,0,0 +2013,9,22,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1625,-3,0,1800,-10,0,0 +2013,8,11,7,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,745,-2,0,952,-17,0,0 +2013,7,3,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,2050,26,1,5,30,1,0 +2013,5,29,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,920,-8,0,1120,0,0,0 +2013,6,19,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,655,-12,0,0 +2013,9,22,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1011,47,1,1132,36,1,0 +2013,10,4,5,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-16,0,800,-8,0,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1105,-4,0,1600,-2,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1630,0,,1740,0,1,1 +2013,9,26,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-3,0,720,-12,0,0 +2013,4,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1027,41,1,1138,26,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2155,6,0,2355,-8,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2100,-1,0,2305,-20,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1926,67,1,2100,66,1,0 +2013,6,27,4,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1254,-5,0,1752,-4,0,0 +2013,8,8,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1800,-1,0,2015,-8,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,8,0,1125,4,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2155,-1,0,16,-7,0,0 +2013,4,22,1,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1400,48,1,2210,22,1,0 +2013,6,7,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1402,1,0,1556,-3,0,0 +2013,8,17,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-5,0,847,-14,0,0 +2013,9,23,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-5,0,1845,-18,0,0 +2013,5,4,6,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1740,56,1,1805,40,1,0 +2013,5,15,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1700,8,0,1855,-8,0,0 +2013,10,30,3,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,3,0,2205,1,0,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1808,-3,0,2007,-20,0,0 +2013,8,12,1,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-6,0,1454,-17,0,0 +2013,7,13,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1539,70,1,1824,39,1,0 +2013,4,17,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,549,-11,0,859,-13,0,0 +2013,4,26,5,FL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1127,0,0,1420,-4,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1835,21,1,1930,16,1,0 +2013,8,26,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1325,1,0,1430,-8,0,0 +2013,10,19,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,161,1,2006,133,1,0 +2013,4,1,1,OO,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1516,10,0,1711,-6,0,0 +2013,6,17,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1553,8,0,1748,-4,0,0 +2013,9,18,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1320,13,0,1415,14,0,0 +2013,5,30,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1235,-5,0,1400,-8,0,0 +2013,6,19,3,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-1,0,720,5,0,0 +2013,4,15,1,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1146,0,0,1300,-8,0,0 +2013,8,7,3,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,758,-3,0,959,5,0,0 +2013,5,11,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,-6,0,2302,-12,0,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1335,15,1,1820,27,1,0 +2013,9,6,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,940,-7,0,1120,-28,0,0 +2013,6,12,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,8,0,1545,12,0,0 +2013,6,27,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2025,114,1,2155,115,1,0 +2013,4,3,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-4,0,859,3,0,0 +2013,10,16,3,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-2,0,1524,-22,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,1640,12,0,2315,5,0,0 +2013,7,24,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1110,-4,0,1213,-10,0,0 +2013,9,13,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,625,9,0,740,-1,0,0 +2013,7,9,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2005,-9,0,2210,-20,0,0 +2013,8,28,3,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,6,0,754,11,0,0 +2013,10,15,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,830,0,0,950,-7,0,0 +2013,5,8,3,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-6,0,1419,-15,0,0 +2013,7,12,5,EV,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,22,1,1626,15,1,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,-6,0,1230,-13,0,0 +2013,10,22,2,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1400,-1,0,1705,-11,0,0 +2013,7,22,1,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,1930,10,0,2125,-8,0,0 +2013,10,14,1,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-9,0,1917,-25,0,0 +2013,7,9,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1920,-1,0,2030,-15,0,0 +2013,10,31,4,9E,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1445,-10,0,1755,-18,0,0 +2013,6,6,4,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,815,8,0,1020,9,0,0 +2013,7,2,2,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1436,-5,0,1645,5,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1252,-7,0,1407,-25,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1820,11,0,2025,-1,0,0 +2013,7,7,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1135,-4,0,1254,-12,0,0 +2013,7,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-6,0,1250,-8,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,804,43,1,1310,27,1,0 +2013,8,14,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1345,7,0,1455,16,1,0 +2013,6,2,7,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-7,0,1207,-12,0,0 +2013,7,9,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,-2,0,1200,-7,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,-4,0,1346,-11,0,0 +2013,8,10,6,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2245,25,1,654,13,0,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1723,-1,0,2135,5,0,0 +2013,7,30,2,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1022,-2,0,1605,-19,0,0 +2013,5,15,3,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,955,0,0,1030,5,0,0 +2013,5,22,3,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,925,-5,0,1240,-18,0,0 +2013,6,11,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,900,-6,0,1016,-15,0,0 +2013,4,25,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1901,3,0,2014,1,0,0 +2013,7,23,2,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,825,-5,0,1111,10,0,0 +2013,5,9,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1730,27,1,1935,28,1,0 +2013,9,19,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2208,1,0,2348,1,0,0 +2013,7,22,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2135,21,1,2325,5,0,0 +2013,7,2,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,825,26,1,0 +2013,6,23,7,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,2105,-5,0,2155,-15,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1105,-2,0,1340,-9,0,0 +2013,10,24,4,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,944,-3,0,1030,-11,0,0 +2013,5,12,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,34,1,1430,22,1,0 +2013,9,18,3,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,915,-10,0,1150,12,0,0 +2013,6,4,2,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,-5,0,1950,-21,0,0 +2013,6,10,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1457,4,0,1632,35,1,0 +2013,8,1,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,630,5,0,1225,-5,0,0 +2013,8,11,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,4,0,2014,-1,0,0 +2013,6,17,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,605,1,0,720,-8,0,0 +2013,10,9,3,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-3,0,1904,2,0,0 +2013,6,15,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2305,11,0,635,-4,0,0 +2013,9,29,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1640,44,1,2150,44,1,0 +2013,8,21,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1035,-1,0,1205,-7,0,0 +2013,7,19,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1200,-3,0,1305,6,0,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1016,-2,0,1149,-24,0,0 +2013,10,10,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1425,11,0,1545,-2,0,0 +2013,7,3,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,2,0,1749,-27,0,0 +2013,10,2,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1443,0,0,1805,-5,0,0 +2013,5,14,2,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,645,-5,0,717,-7,0,0 +2013,7,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2005,44,1,2057,32,1,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1315,0,0,1536,1,0,0 +2013,8,20,2,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2015,5,0,2258,-17,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1349,-2,0,1639,-21,0,0 +2013,4,21,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2140,-4,0,2227,-2,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1252,-1,0,1637,-8,0,0 +2013,4,7,7,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,1859,-9,0,2049,-16,0,0 +2013,8,18,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1227,4,0,1840,-7,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1635,26,1,2045,35,1,0 +2013,10,30,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,-7,0,1359,-5,0,0 +2013,9,26,4,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-5,0,920,0,0,0 +2013,5,24,5,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1145,-10,0,1322,-15,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1725,1,0,1830,-14,0,0 +2013,5,13,1,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2040,11,0,2355,9,0,0 +2013,6,29,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,835,-16,0,0 +2013,7,21,7,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,0,0,1655,22,1,0 +2013,8,17,6,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,615,-9,0,725,-10,0,0 +2013,5,24,5,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-3,0,937,-12,0,0 +2013,5,30,4,EV,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,1100,-17,0,1251,-26,0,0 +2013,10,1,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,830,-11,0,0 +2013,10,16,3,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1925,8,0,2210,3,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,-4,0,1355,-9,0,0 +2013,8,26,1,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1355,5,0,1651,0,0,0 +2013,10,28,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1602,39,1,15,-8,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,755,-2,0,1000,-8,0,0 +2013,8,16,5,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1610,0,0,1945,-1,0,0 +2013,7,12,5,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,650,33,1,931,37,1,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,2150,-5,0,619,-8,0,0 +2013,6,20,4,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1620,5,0,1805,-4,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,97,1,1833,81,1,0 +2013,4,21,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1750,43,1,1900,47,1,0 +2013,9,19,4,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1355,21,1,1842,31,1,0 +2013,4,16,2,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1051,0,0,1932,-28,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1540,24,1,1845,14,0,0 +2013,5,16,4,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1329,-9,0,1504,-14,0,0 +2013,6,14,5,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1730,-4,0,1941,28,1,0 +2013,8,18,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1930,-1,0,2154,13,0,0 +2013,10,31,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1400,-4,0,1500,-6,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1820,-7,0,2025,-40,0,0 +2013,10,4,5,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2004,-6,0,2049,-8,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,735,2,0,1305,-13,0,0 +2013,8,30,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1130,-1,0,1905,-15,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1258,-3,0,1425,0,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1349,33,1,1516,63,1,0 +2013,10,10,4,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2110,39,1,2202,32,1,0 +2013,7,16,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,749,-4,0,1041,-4,0,0 +2013,10,17,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1747,-4,0,1841,-4,0,0 +2013,4,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,-2,0,1938,-36,0,0 +2013,9,16,1,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1507,-5,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2210,4,0,2315,-3,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,38,1,2310,28,1,0 +2013,9,29,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,-8,0,1402,-3,0,0 +2013,6,14,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,27,1,2052,91,1,0 +2013,7,27,6,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-4,0,1804,-9,0,0 +2013,6,8,6,YV,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1710,0,,1909,0,1,1 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,31,1,2305,2,0,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,0,0,2205,-3,0,0 +2013,4,1,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1200,0,,1354,0,1,1 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1410,4,0,1515,-1,0,0 +2013,7,4,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2100,4,0,8,-15,0,0 +2013,4,7,7,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1328,-1,0,1836,-5,0,0 +2013,4,17,3,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1010,-9,0,1129,-16,0,0 +2013,7,13,6,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1711,-1,0,2039,5,0,0 +2013,5,17,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,812,-3,0,1135,-6,0,0 +2013,10,14,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-2,0,850,22,1,0 +2013,7,22,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1310,64,1,1615,75,1,0 +2013,10,8,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1015,-5,0,1212,-11,0,0 +2013,9,18,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-7,0,1100,-10,0,0 +2013,6,3,1,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,610,2,0,745,7,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1249,-6,0,1441,1,0,0 +2013,5,23,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2015,-4,0,2037,-12,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1105,-1,0,1430,1,0,0 +2013,10,18,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,1007,-14,0,0 +2013,5,9,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-9,0,1150,-13,0,0 +2013,5,21,2,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,846,6,0,1036,-11,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,943,104,1,1206,89,1,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1515,4,0,1605,6,0,0 +2013,6,18,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1125,0,,1315,0,1,1 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,845,-5,0,1135,8,0,0 +2013,5,17,5,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1859,25,1,2014,20,1,0 +2013,6,14,5,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,0,0,959,-6,0,0 +2013,9,25,3,OO,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-7,0,1340,-17,0,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1558,15,1,2048,5,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1945,-5,0,2044,16,1,0 +2013,9,8,7,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1430,1,0,1535,-6,0,0 +2013,4,18,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,6,0,2122,-4,0,0 +2013,9,6,5,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-1,0,1816,-2,0,0 +2013,8,15,4,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1702,6,0,2000,0,0,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,815,-6,0,1142,-11,0,0 +2013,7,20,6,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,202,1,1950,193,1,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1035,6,0,1309,5,0,0 +2013,8,12,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1325,-2,0,1630,-17,0,0 +2013,8,20,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,11,0,1815,7,0,0 +2013,9,23,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,810,-2,0,925,7,0,0 +2013,8,6,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,1,0,1048,-18,0,0 +2013,6,13,4,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,46,1,1952,49,1,0 +2013,10,19,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,925,-3,0,1050,-15,0,0 +2013,5,3,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1020,50,1,1316,76,1,0 +2013,10,15,2,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,14,0,1835,5,0,0 +2013,9,4,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,740,2,0,855,-2,0,0 +2013,4,15,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,79,1,707,71,1,0 +2013,7,5,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,635,-4,0,735,-7,0,0 +2013,6,6,4,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,47,1,1724,62,1,0 +2013,8,29,4,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1205,74,1,2017,96,1,0 +2013,7,10,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,4,0,940,-1,0,0 +2013,5,1,3,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1930,14,0,35,2,0,0 +2013,7,8,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,1730,20,1,1905,23,1,0 +2013,8,12,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,658,-2,0,910,-5,0,0 +2013,8,2,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,5,0,1531,0,0,0 +2013,5,20,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1646,3,0,1814,-1,0,0 +2013,10,2,3,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1606,14,0,1711,16,1,0 +2013,4,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1821,0,0,2005,-16,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1921,4,0,2051,-21,0,0 +2013,4,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1615,-1,0,1822,1,0,0 +2013,9,25,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,610,-2,0,735,-2,0,0 +2013,4,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1005,-5,0,1245,-23,0,0 +2013,8,23,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1537,0,,1605,0,1,1 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-1,0,1911,2,0,0 +2013,6,23,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,36,1,2055,25,1,0 +2013,7,9,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1625,-7,0,1806,-13,0,0 +2013,5,22,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,850,-6,0,1146,1,0,0 +2013,6,3,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1010,-1,0,1125,1,0,0 +2013,4,23,2,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,645,0,0,735,-1,0,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1105,8,0,1215,-3,0,0 +2013,6,30,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,30,1,1843,23,1,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,-2,0,859,13,0,0 +2013,5,10,5,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-4,0,1034,-26,0,0 +2013,9,14,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-5,0,1304,-16,0,0 +2013,4,17,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,23,1,840,18,1,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1739,-5,0,1850,-14,0,0 +2013,6,14,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-3,0,701,3,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2040,17,1,2130,9,0,0 +2013,6,24,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,1,0,1920,0,0,0 +2013,7,30,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,850,27,1,1010,9,0,0 +2013,4,19,5,OO,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1430,10,0,1645,26,1,0 +2013,5,11,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-4,0,1250,-7,0,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1505,3,0,1610,7,0,0 +2013,5,6,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1530,20,1,1650,14,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,945,-3,0,1235,-5,0,0 +2013,4,24,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-1,0,1145,0,0,0 +2013,10,11,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-1,0,1116,-6,0,0 +2013,10,18,5,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,0,1639,5,0,0 +2013,6,1,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-2,0,635,-13,0,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,730,-5,0,850,-6,0,0 +2013,8,31,6,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,-3,0,1838,20,1,0 +2013,5,23,4,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2113,63,1,2344,51,1,0 +2013,8,4,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1205,-1,0,1310,-2,0,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2002,4,0,2058,-2,0,0 +2013,9,11,3,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1400,5,0,1510,2,0,0 +2013,8,3,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1206,-6,0,1309,-13,0,0 +2013,6,17,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1213,168,1,1501,152,1,0 +2013,7,26,5,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-6,0,945,27,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,700,2,0,1130,-21,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,745,-3,0,931,7,0,0 +2013,4,19,5,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,645,18,1,920,24,1,0 +2013,7,5,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,840,-1,0,1020,-31,0,0 +2013,5,8,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,720,-6,0,922,1,0,0 +2013,9,16,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,905,-8,0,1424,-18,0,0 +2013,10,31,4,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1010,0,0,1310,-16,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1035,1,0,1335,4,0,0 +2013,9,10,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,540,-9,0,1200,-32,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1015,-1,0,1336,-1,0,0 +2013,7,3,3,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,705,-6,0,800,-7,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-1,0,2159,-9,0,0 +2013,7,21,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-6,0,902,14,0,0 +2013,8,4,7,OO,13851,Will Rogers World,Oklahoma City,OK,13244,Memphis International,Memphis,TN,1710,-1,0,1838,6,0,0 +2013,9,8,7,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2005,11,0,2215,3,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,930,-2,0,1058,-11,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,715,-1,0,820,-9,0,0 +2013,5,8,3,WN,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1425,18,1,1720,5,0,0 +2013,7,25,4,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,815,-8,0,955,-7,0,0 +2013,5,14,2,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,-3,0,1006,-3,0,0 +2013,6,25,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1043,6,0,1425,28,1,0 +2013,9,25,3,HA,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,955,-14,0,1220,-19,0,0 +2013,6,26,3,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1625,38,1,2114,66,1,0 +2013,6,5,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,640,-6,0,800,-1,0,0 +2013,8,6,2,FL,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,-6,0,1710,-12,0,0 +2013,8,8,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1112,-3,0,1200,-12,0,0 +2013,4,3,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,650,-10,0,836,-12,0,0 +2013,7,28,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1524,1,0,1637,20,1,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1155,12,0,1433,25,1,0 +2013,10,18,5,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,740,4,0,1032,2,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2005,42,1,2215,33,1,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1135,-6,0,1545,-22,0,0 +2013,8,25,7,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-1,0,938,-18,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,850,-1,0,1104,-12,0,0 +2013,10,31,4,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2055,-5,0,515,-25,0,0 +2013,5,20,1,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1130,0,0,1255,-1,0,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,-1,0,1951,-28,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1745,-5,0,2020,-22,0,0 +2013,5,23,4,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,22,1,640,-4,0,0 +2013,9,25,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,955,-4,0,1140,-9,0,0 +2013,10,30,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1935,-5,0,2104,-14,0,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1330,-1,0,1438,7,0,0 +2013,9,30,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-6,0,1035,3,0,0 +2013,5,28,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,755,-2,0,950,7,0,0 +2013,9,4,3,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1700,-4,0,1830,-3,0,0 +2013,4,3,3,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-9,0,1402,-11,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,-7,0,1525,5,0,0 +2013,10,13,7,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,710,-5,0,1025,-18,0,0 +2013,5,27,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1415,-1,0,1545,-8,0,0 +2013,5,18,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,901,-4,0,0 +2013,4,25,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,815,10,0,0 +2013,8,23,5,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1240,-3,0,1350,2,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1310,47,1,1620,62,1,0 +2013,10,28,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1129,6,0,1456,10,0,0 +2013,5,19,7,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1946,11,0,2126,8,0,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1010,-4,0,1115,3,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,0,0,1445,-10,0,0 +2013,8,8,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,857,14,0,1014,-2,0,0 +2013,9,6,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1840,7,0,2120,-10,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,21,1,1635,37,1,0 +2013,9,25,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1840,-3,0,2249,-6,0,0 +2013,8,12,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,840,19,1,1019,6,0,0 +2013,5,16,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,910,0,0,1110,-17,0,0 +2013,10,2,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,-7,0,1820,-21,0,0 +2013,5,3,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,-2,0,1559,-10,0,0 +2013,4,20,6,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1130,-5,0,1325,-14,0,0 +2013,9,4,3,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-3,0,810,-15,0,0 +2013,10,15,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1950,13,0,2130,-1,0,0 +2013,5,23,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1833,0,,1940,0,1,1 +2013,6,14,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,38,1,2005,55,1,0 +2013,9,11,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,1020,-5,0,0 +2013,4,22,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-1,0,740,-15,0,0 +2013,8,24,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,3,0,617,4,0,0 +2013,9,3,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,840,0,0,1025,-6,0,0 +2013,10,8,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,805,1,0,859,-2,0,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1530,14,0,1745,6,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,720,-4,0,820,-7,0,0 +2013,10,22,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1020,-13,0,1324,-14,0,0 +2013,9,17,2,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-6,0,1005,-26,0,0 +2013,8,28,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1335,0,0,1610,5,0,0 +2013,8,23,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,700,-1,0,820,-5,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2145,-5,0,158,1,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,715,-2,0,955,-8,0,0 +2013,9,25,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1131,-5,0,1315,-2,0,0 +2013,4,9,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1735,53,1,1955,39,1,0 +2013,9,2,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1215,-2,0,1445,-10,0,0 +2013,8,26,1,9E,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-6,0,1019,-38,0,0 +2013,10,13,7,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1322,-3,0,1448,-19,0,0 +2013,6,29,6,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1336,-6,0,1541,-6,0,0 +2013,4,12,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1840,-1,0,2005,-14,0,0 +2013,4,27,6,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-4,0,744,-16,0,0 +2013,8,30,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1600,9,0,1725,9,0,0 +2013,7,30,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,830,-1,0,930,-3,0,0 +2013,5,28,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,605,4,0,842,-22,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1734,-10,0,2052,4,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1549,-1,0,1721,-16,0,0 +2013,5,18,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1035,-6,0,1210,-15,0,0 +2013,9,11,3,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1105,-17,0,1353,-38,0,0 +2013,9,4,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-13,0,1315,-26,0,0 +2013,10,15,2,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,2005,-1,0,2130,-7,0,0 +2013,6,10,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,605,-1,0,720,-7,0,0 +2013,10,25,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,645,-5,0,800,-9,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1100,12,0,1200,33,1,0 +2013,10,9,3,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,805,-3,0,1050,11,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1001,-1,0,1047,-16,0,0 +2013,6,6,4,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2005,-14,0,2050,-11,0,0 +2013,7,26,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,1,0,1153,-11,0,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1823,21,1,2119,21,1,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,810,6,0,1055,1,0,0 +2013,9,14,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,830,-11,0,1145,-26,0,0 +2013,10,3,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1915,127,1,2035,168,1,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,0,0,915,-1,0,0 +2013,10,27,7,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1940,45,1,2240,109,1,0 +2013,9,13,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,1,0,1650,-32,0,0 +2013,10,27,7,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1327,-3,0,1649,4,0,0 +2013,7,22,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-5,0,542,-14,0,0 +2013,5,29,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,605,-2,0,740,-11,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1908,-1,0,2114,-31,0,0 +2013,4,20,6,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1326,-11,0,1612,-10,0,0 +2013,7,7,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-4,0,1911,1,0,0 +2013,10,13,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,-10,0,2355,-18,0,0 +2013,9,7,6,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1400,-2,0,1540,-15,0,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,810,-7,0,1115,-4,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,102,1,1430,106,1,0 +2013,8,12,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1923,11,0,2020,5,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1645,6,0,1815,10,0,0 +2013,6,17,1,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,111,4,0,930,-19,0,0 +2013,10,22,2,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1701,-3,0,1840,-18,0,0 +2013,9,15,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1525,11,0,1630,3,0,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1855,-6,0,2206,-25,0,0 +2013,9,13,5,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-4,0,1254,-10,0,0 +2013,10,1,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-6,0,1435,-8,0,0 +2013,10,16,3,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,810,-2,0,1635,-24,0,0 +2013,9,3,2,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,759,-2,0,820,-11,0,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,804,-8,0,1347,-13,0,0 +2013,4,15,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1642,-3,0,2110,-16,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2146,-3,0,2252,2,0,0 +2013,10,17,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,812,8,0,1045,11,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,930,-3,0,1114,-16,0,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1455,15,1,1940,23,1,0 +2013,4,4,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-3,0,1120,-17,0,0 +2013,7,28,7,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1711,-14,0,2015,11,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1455,10,0,1557,8,0,0 +2013,8,21,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,740,-6,0,855,-14,0,0 +2013,10,1,2,EV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1420,-5,0,1613,-4,0,0 +2013,9,3,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1812,68,1,1942,61,1,0 +2013,9,11,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1531,-2,0,1830,-7,0,0 +2013,5,1,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,-6,0,1310,-18,0,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,0,0,959,-42,0,0 +2013,7,10,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1740,314,1,1925,297,1,0 +2013,7,22,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,720,-7,0,959,0,0,0 +2013,8,13,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2059,-3,0,2322,27,1,0 +2013,5,3,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1045,160,1,1150,154,1,0 +2013,10,22,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,26,1,2230,13,0,0 +2013,7,6,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-1,0,842,-9,0,0 +2013,7,13,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,830,24,1,920,53,1,0 +2013,6,23,7,OO,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,616,-4,0,754,11,0,0 +2013,6,8,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1420,3,0,1545,3,0,0 +2013,10,20,7,EV,12264,Washington Dulles International,Washington,DC,10529,Bradley International,Hartford,CT,1215,-1,0,1334,-12,0,0 +2013,7,23,2,YV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,545,-4,0,654,-11,0,0 +2013,4,21,7,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2140,-3,0,545,-5,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1015,-4,0,1128,0,0,0 +2013,4,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2150,59,1,2315,51,1,0 +2013,5,13,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2036,3,0,2219,-22,0,0 +2013,5,15,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-1,0,1005,-10,0,0 +2013,8,2,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,555,0,0,720,-8,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1617,-3,0,1739,-7,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2020,12,0,2345,7,0,0 +2013,6,13,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1230,-1,0,1315,-2,0,0 +2013,8,3,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2150,15,1,2334,12,0,0 +2013,7,15,1,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-3,0,1749,-16,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,4,0,2040,1,0,0 +2013,8,23,5,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,2005,-4,0,2130,-2,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,21,1,1145,24,1,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1448,-3,0,1625,-10,0,0 +2013,8,25,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1610,44,1,1715,36,1,0 +2013,7,31,3,UA,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,917,1,0,1030,-1,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,927,-6,0,1043,-25,0,0 +2013,9,5,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1715,-2,0,2005,-17,0,0 +2013,5,27,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,630,-10,0,828,-24,0,0 +2013,6,3,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,6,0,1329,8,0,0 +2013,7,27,6,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,-4,0,2350,1,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-5,0,1006,-9,0,0 +2013,5,14,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1537,55,1,1910,50,1,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,-5,0,935,-9,0,0 +2013,10,28,1,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2205,57,1,2316,50,1,0 +2013,7,19,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-2,0,1321,-28,0,0 +2013,7,25,4,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1030,-3,0,1140,-19,0,0 +2013,6,26,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2156,32,1,2342,28,1,0 +2013,7,22,1,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1550,11,0,1830,28,1,0 +2013,8,27,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,900,50,1,1154,44,1,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,-4,0,1440,-14,0,0 +2013,5,30,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1537,43,1,1910,39,1,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,0,0,950,-2,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,930,12,0,1400,1,0,0 +2013,5,30,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2020,3,0,2125,-6,0,0 +2013,4,1,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1235,-6,0,1436,-15,0,0 +2013,8,16,5,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,552,-5,0,720,-17,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,800,10,0,1250,-5,0,0 +2013,4,15,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1450,0,0,1751,-8,0,0 +2013,7,18,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,820,-2,0,1015,-20,0,0 +2013,9,2,1,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1405,-1,0,1525,1,0,0 +2013,6,18,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1950,102,1,2050,98,1,0 +2013,9,24,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-9,0,1617,-14,0,0 +2013,7,10,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-5,0,2050,-10,0,0 +2013,10,7,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1407,-3,0,1528,-6,0,0 +2013,9,25,3,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1155,0,0,1435,-10,0,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1602,-3,0,1730,-3,0,0 +2013,7,31,3,OO,10693,Nashville International,Nashville,TN,13244,Memphis International,Memphis,TN,1200,-3,0,1303,-5,0,0 +2013,7,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,25,1,1128,-1,0,0 +2013,4,9,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1610,19,1,1740,17,1,0 +2013,10,24,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1155,14,0,1430,6,0,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2240,143,1,2359,135,1,0 +2013,6,1,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,700,8,0,1000,9,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1915,20,1,2040,6,0,0 +2013,10,5,6,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,935,-8,0,0 +2013,4,30,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1731,0,0,2030,-12,0,0 +2013,4,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1700,-4,0,2127,-22,0,0 +2013,6,12,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,0,,2130,0,1,1 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-7,0,1328,-9,0,0 +2013,4,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1450,-4,0,1720,-17,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,832,-3,0,907,-22,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,923,-7,0,1152,-15,0,0 +2013,5,2,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-5,0,1302,-2,0,0 +2013,5,27,1,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2220,-3,0,209,-13,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,2100,28,1,10,23,1,0 +2013,10,10,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2308,-6,0,2359,-10,0,0 +2013,5,9,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2018,-3,0,2115,-17,0,0 +2013,6,9,7,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,37,1,1914,47,1,0 +2013,8,26,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-6,0,2200,25,1,0 +2013,8,24,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,105,1,1711,107,1,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,900,11,0,1120,26,1,0 +2013,4,24,3,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,835,-5,0,1220,-7,0,0 +2013,5,24,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1425,-3,0,1522,3,0,0 +2013,5,13,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2125,9,0,2230,-11,0,0 +2013,8,5,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,713,4,0,805,6,0,0 +2013,10,30,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2000,-5,0,2257,-18,0,0 +2013,8,17,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1230,-1,0,1350,1,0,0 +2013,9,25,3,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1550,0,0,1800,-4,0,0 +2013,8,19,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,840,-2,0,1105,6,0,0 +2013,4,24,3,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1144,-6,0,1349,10,0,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1200,18,1,1330,34,1,0 +2013,4,21,7,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,56,1,1855,44,1,0 +2013,7,17,3,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1425,3,0,2025,24,1,0 +2013,7,19,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,900,-4,0,1045,-11,0,0 +2013,6,15,6,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,725,-1,0,930,-8,0,0 +2013,10,21,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1339,65,1,2222,47,1,0 +2013,4,26,5,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,1300,-1,0,1846,-11,0,0 +2013,8,8,4,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1641,8,0,1941,74,1,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-3,0,1313,4,0,0 +2013,9,6,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-1,0,900,-21,0,0 +2013,9,25,3,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,940,2,0,1205,13,0,0 +2013,10,23,3,WN,14843,Luis Munoz Marin International,San Juan,PR,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,14,0,2115,6,0,0 +2013,7,11,4,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1425,24,1,1545,6,0,0 +2013,8,31,6,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1025,-29,0,0 +2013,10,6,7,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,2030,7,0,2215,-2,0,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1249,-5,0,1550,-3,0,0 +2013,6,7,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,95,1,1935,60,1,0 +2013,10,28,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1457,-10,0,1543,-12,0,0 +2013,7,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,700,-2,0,815,-7,0,0 +2013,5,18,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1906,-10,0,2229,-12,0,0 +2013,7,9,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-4,0,1249,-4,0,0 +2013,5,2,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1200,-5,0,1400,10,0,0 +2013,8,14,3,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1225,-7,0,1402,-12,0,0 +2013,5,7,2,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,-4,0,1015,-7,0,0 +2013,10,20,7,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,2000,4,0,2011,-8,0,0 +2013,5,27,1,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1920,-5,0,2058,-15,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,2,0,2100,-2,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,620,-7,0,1050,9,0,0 +2013,7,6,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,4,0,1159,-5,0,0 +2013,7,10,3,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-3,0,721,-21,0,0 +2013,10,23,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13342,General Mitchell International,Milwaukee,WI,1405,-3,0,1625,-14,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1400,-6,0,1500,-13,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-6,0,1725,-16,0,0 +2013,8,13,2,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1635,5,0,1945,-1,0,0 +2013,6,14,5,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,700,-3,0,914,-13,0,0 +2013,4,24,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,19,1,1338,7,0,0 +2013,5,18,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2025,-5,0,2150,28,1,0 +2013,6,7,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1605,-2,0,1628,-21,0,0 +2013,10,13,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,0,0,1725,4,0,0 +2013,9,3,2,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,812,-8,0,928,3,0,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,1632,14,0,22,-2,0,0 +2013,5,26,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,-4,0,1638,-23,0,0 +2013,7,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1625,-4,0,1802,-4,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-2,0,922,-12,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,755,-5,0,1015,-25,0,0 +2013,4,29,1,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1003,-5,0,1322,-27,0,0 +2013,7,15,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,645,-3,0,735,-17,0,0 +2013,6,2,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,173,1,1724,194,1,0 +2013,10,12,6,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1348,20,1,1418,10,0,0 +2013,6,18,2,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,700,-2,0,814,0,0,0 +2013,10,20,7,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,955,-5,0,1254,-7,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,935,-1,0,1132,-18,0,0 +2013,5,14,2,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,29,-4,0,457,-26,0,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1025,-4,0,1426,-7,0,0 +2013,7,22,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2000,0,,2140,0,1,1 +2013,8,5,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,710,5,0,829,-3,0,0 +2013,5,20,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-3,0,1732,-7,0,0 +2013,7,19,5,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,-3,0,2046,-25,0,0 +2013,5,18,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-2,0,955,-20,0,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2025,8,0,2255,-26,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1605,2,0,1850,2,0,0 +2013,6,22,6,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,9,0,1910,6,0,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1610,49,1,1725,29,1,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,89,1,1319,130,1,0 +2013,8,12,1,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,10,0,1850,9,0,0 +2013,9,21,6,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,815,-3,0,1137,-2,0,0 +2013,10,12,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-6,0,1115,-21,0,0 +2013,9,8,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1535,-3,0,1655,-8,0,0 +2013,4,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1850,79,1,2030,81,1,0 +2013,5,6,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1229,-6,0,1630,-18,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1251,9,0,1522,5,0,0 +2013,8,4,7,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2135,2,0,2225,-4,0,0 +2013,6,18,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1252,-15,0,0 +2013,7,23,2,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1935,123,1,2255,103,1,0 +2013,5,6,1,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,2005,77,1,2145,60,1,0 +2013,7,13,6,YV,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1539,-7,0,1706,-7,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,700,-4,0,826,-24,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1145,-6,0,1430,-15,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1415,2,0,1549,-2,0,0 +2013,8,5,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,-7,0,1820,-13,0,0 +2013,5,6,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1332,-7,0,0 +2013,6,7,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-8,0,1227,-9,0,0 +2013,5,4,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1545,8,0,1828,5,0,0 +2013,8,2,5,US,14100,Philadelphia International,Philadelphia,PA,14057,Portland International,Portland,OR,1754,8,0,2047,34,1,0 +2013,7,11,4,9E,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,840,316,1,1015,303,1,0 +2013,9,24,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,-4,0,1022,-13,0,0 +2013,9,3,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1815,11,0,1905,10,0,0 +2013,6,10,1,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,814,-2,0,1055,1,0,0 +2013,4,25,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1130,6,0,1235,-8,0,0 +2013,8,30,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1845,-6,0,2137,-7,0,0 +2013,7,13,6,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1638,-4,0,1859,54,1,0 +2013,8,29,4,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1035,-11,0,1515,-14,0,0 +2013,9,9,1,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1655,-3,0,1844,-13,0,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,-1,0,1115,-9,0,0 +2013,4,6,6,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1027,-7,0,1219,-17,0,0 +2013,5,7,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,908,-8,0,1052,-33,0,0 +2013,9,18,3,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,-1,0,1105,-6,0,0 +2013,7,14,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1720,2,0,1820,4,0,0 +2013,5,10,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,40,1,1542,34,1,0 +2013,5,1,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-7,0,2215,-7,0,0 +2013,6,19,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-5,0,854,-4,0,0 +2013,8,17,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1310,1,0,1525,-10,0,0 +2013,10,25,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,7,0,1032,-5,0,0 +2013,10,31,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1152,-5,0,1248,-12,0,0 +2013,6,11,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1550,64,1,1705,70,1,0 +2013,5,22,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1230,0,0,1800,20,1,0 +2013,7,2,2,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1805,65,1,2030,88,1,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1932,66,1,2113,95,1,0 +2013,8,16,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,36,1,1330,31,1,0 +2013,5,24,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1609,-3,0,1738,-13,0,0 +2013,8,9,5,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,710,-1,0,1012,-14,0,0 +2013,5,16,4,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,740,2,0,825,-10,0,0 +2013,5,6,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1000,-3,0,1121,1,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,826,1,0,1150,-16,0,0 +2013,10,22,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,3,0,2015,-10,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2020,22,1,2245,13,0,0 +2013,10,19,6,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,915,5,0,1120,6,0,0 +2013,4,20,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1110,36,1,1220,34,1,0 +2013,10,31,4,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1735,-8,0,2254,-6,0,0 +2013,6,12,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,-3,0,1120,-7,0,0 +2013,8,29,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-8,0,1454,-13,0,0 +2013,4,12,5,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,848,-4,0,1105,-33,0,0 +2013,9,28,6,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,600,-2,0,730,-4,0,0 +2013,6,4,2,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1446,-12,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1028,-6,0,1148,-9,0,0 +2013,10,18,5,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,900,-7,0,1027,-19,0,0 +2013,9,20,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1230,0,,1457,0,1,1 +2013,7,16,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1245,-10,0,1418,-21,0,0 +2013,4,18,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1719,89,1,1949,99,1,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-1,0,2045,2,0,0 +2013,8,31,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,17,1,1808,8,0,0 +2013,9,27,5,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1356,-2,0,1646,0,0,0 +2013,8,21,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2000,-12,0,2135,-17,0,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1430,6,0,1755,-7,0,0 +2013,7,16,2,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,6,0,1515,-11,0,0 +2013,5,9,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,51,1,2030,45,1,0 +2013,8,17,6,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1735,3,0,1955,-20,0,0 +2013,7,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,608,7,0,923,20,1,0 +2013,4,12,5,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,841,33,1,1135,33,1,0 +2013,5,17,5,WN,10693,Nashville International,Nashville,TN,15016,Lambert-St. Louis International,St. Louis,MO,1425,7,0,1530,-1,0,0 +2013,10,22,2,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-8,0,900,-17,0,0 +2013,7,1,1,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,635,-3,0,755,-10,0,0 +2013,8,30,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,4,0,1314,-30,0,0 +2013,9,10,2,WN,13871,Eppley Airfield,Omaha,NE,15016,Lambert-St. Louis International,St. Louis,MO,1430,2,0,1535,6,0,0 +2013,8,14,3,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1845,0,0,2015,22,1,0 +2013,10,7,1,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1629,18,1,1902,14,0,0 +2013,10,19,6,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1120,-5,0,1306,-10,0,0 +2013,7,16,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1650,-2,0,1945,7,0,0 +2013,8,24,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,800,-11,0,0 +2013,5,15,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1444,-5,0,1619,-4,0,0 +2013,4,2,2,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1945,20,1,2100,22,1,0 +2013,10,6,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-1,0,1950,-11,0,0 +2013,9,15,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1259,-3,0,1724,-17,0,0 +2013,4,4,4,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,915,-2,0,1155,-14,0,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,37,1,2255,33,1,0 +2013,10,28,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1450,0,0,1620,-12,0,0 +2013,9,30,1,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,610,-9,0,826,-7,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,-5,0,1745,9,0,0 +2013,7,25,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-5,0,1618,-8,0,0 +2013,9,28,6,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-1,0,815,-10,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-10,0,901,-16,0,0 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,923,139,1,1210,166,1,0 +2013,5,15,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1410,3,0,1540,4,0,0 +2013,6,5,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,1735,0,0,2320,-6,0,0 +2013,8,15,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1937,12,0,2106,4,0,0 +2013,5,2,4,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1320,354,1,1425,372,1,0 +2013,9,8,7,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,-5,0,2159,-4,0,0 +2013,7,20,6,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1140,-8,0,1430,-16,0,0 +2013,8,11,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,12,0,1910,-5,0,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,840,-4,0,1205,-18,0,0 +2013,9,14,6,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1925,6,0,2130,-9,0,0 +2013,8,31,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1118,-5,0,1421,-28,0,0 +2013,10,1,2,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1845,-3,0,2055,-18,0,0 +2013,9,6,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1855,10,0,2000,14,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,925,-3,0,1118,-13,0,0 +2013,8,10,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1000,-5,0,1148,-11,0,0 +2013,8,25,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,-3,0,1225,-4,0,0 +2013,7,14,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,942,-5,0,1019,-12,0,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,1257,-5,0,1414,0,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1700,20,1,1950,15,1,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-7,0,1900,9,0,0 +2013,9,30,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,640,-9,0,844,-20,0,0 +2013,9,4,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,931,99,1,1021,96,1,0 +2013,8,13,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,715,-3,0,950,-13,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,855,-5,0,1342,-20,0,0 +2013,7,5,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1140,0,0,1305,7,0,0 +2013,10,6,7,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1417,-1,0,1638,-20,0,0 +2013,7,1,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,959,-8,0,1041,-8,0,0 +2013,7,28,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,3,0,1500,1,0,0 +2013,5,30,4,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1425,3,0,1655,12,0,0 +2013,4,18,4,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1739,158,1,2030,126,1,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2135,-1,0,2325,-15,0,0 +2013,10,13,7,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,-13,0,2050,-17,0,0 +2013,5,1,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,39,1,0,528,2,0,0 +2013,5,21,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,605,-17,0,800,6,0,0 +2013,4,30,2,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1420,-1,0,1520,-17,0,0 +2013,7,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1015,-3,0,1131,-15,0,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1805,0,0,2015,-2,0,0 +2013,7,29,1,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1415,-15,0,1534,-15,0,0 +2013,9,24,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2111,7,0,507,-4,0,0 +2013,6,12,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2113,28,1,2235,16,1,0 +2013,9,23,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1507,-4,0,1729,-18,0,0 +2013,6,12,3,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1221,9,0,1810,7,0,0 +2013,5,18,6,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,38,1,1740,74,1,0 +2013,10,2,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1742,-3,0,1940,-14,0,0 +2013,5,7,2,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,653,-4,0,1006,0,1,1 +2013,5,5,7,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1105,15,1,1410,4,0,0 +2013,4,26,5,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,35,1,937,24,1,0 +2013,10,28,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1015,8,0,1715,4,0,0 +2013,9,1,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,-5,0,1935,-9,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,2,0,2226,-3,0,0 +2013,6,28,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-11,0,558,3,0,0 +2013,7,26,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1935,54,1,2302,24,1,0 +2013,4,29,1,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1638,-5,0,1928,-3,0,0 +2013,6,7,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,815,-3,0,845,-3,0,0 +2013,6,13,4,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-1,0,1750,-19,0,0 +2013,7,21,7,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2055,4,0,2259,29,1,0 +2013,4,14,7,FL,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,955,-4,0,1145,-19,0,0 +2013,9,10,2,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1750,23,1,1937,12,0,0 +2013,4,27,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,833,-6,0,944,-29,0,0 +2013,8,8,4,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2047,15,1,2317,21,1,0 +2013,6,23,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,5,0,741,-1,0,0 +2013,6,25,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,650,3,0,730,33,1,0 +2013,10,23,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,805,-8,0,1108,22,1,0 +2013,4,17,3,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1650,-6,0,1913,-10,0,0 +2013,7,1,1,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,955,1,0,1130,2,0,0 +2013,10,9,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,-6,0,1041,-1,0,0 +2013,7,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,845,-4,0,1346,-13,0,0 +2013,5,26,7,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1630,-4,0,1757,-5,0,0 +2013,10,2,3,EV,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,621,-5,0,759,-25,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1710,63,1,1900,61,1,0 +2013,7,28,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1520,17,1,1710,26,1,0 +2013,10,8,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1450,-4,0,1825,-5,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1325,0,0,1520,-8,0,0 +2013,8,2,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1500,7,0,1625,9,0,0 +2013,6,1,6,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1742,-8,0,2013,-7,0,0 +2013,6,30,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,32,1,1224,66,1,0 +2013,6,10,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,33,1,1311,32,1,0 +2013,8,30,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1935,-6,0,2237,-23,0,0 +2013,7,9,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-1,0,1925,-13,0,0 +2013,10,25,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,650,20,1,0 +2013,7,15,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,82,1,1805,84,1,0 +2013,9,26,4,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,530,2,0,851,-19,0,0 +2013,8,9,5,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,744,37,1,1613,-9,0,0 +2013,4,23,2,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,745,-4,0,935,-9,0,0 +2013,5,20,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,5,0,2025,-37,0,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,715,-1,0,1000,-2,0,0 +2013,10,8,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,722,-2,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,740,0,0,1305,-4,0,0 +2013,8,10,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,658,-5,0,1028,-21,0,0 +2013,8,20,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,729,-3,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,155,1,1930,165,1,0 +2013,7,21,7,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,740,-9,0,1021,-11,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1905,116,1,2125,108,1,0 +2013,5,23,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,945,0,0,1055,-9,0,0 +2013,8,9,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1310,1,0,1525,-18,0,0 +2013,6,12,3,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1921,-2,0,44,-4,0,0 +2013,6,16,7,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1000,-10,0,1208,-17,0,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,835,7,0,1225,-10,0,0 +2013,4,5,5,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,1056,-3,0,1215,-11,0,0 +2013,7,2,2,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,-5,0,1815,16,1,0 +2013,6,8,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-1,0,747,0,0,0 +2013,4,14,7,B6,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1619,-8,0,2030,12,0,0 +2013,9,5,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1955,-7,0,2115,-5,0,0 +2013,8,19,1,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1803,63,1,2109,58,1,0 +2013,7,3,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1700,-2,0,1825,-7,0,0 +2013,9,5,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1720,2,0,1845,1,0,0 +2013,10,6,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,24,1,1400,16,1,0 +2013,10,18,5,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1150,-2,0,1340,-23,0,0 +2013,7,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,52,1,2231,55,1,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,6,0,20,-15,0,0 +2013,9,29,7,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1145,-5,0,1324,-16,0,0 +2013,6,16,7,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,800,-3,0,1023,-5,0,0 +2013,9,3,2,YV,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,842,-10,0,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1850,69,1,2350,47,1,0 +2013,7,31,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1702,24,1,2315,-7,0,0 +2013,7,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1202,-10,0,1307,1,0,0 +2013,9,10,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2050,-18,0,2237,-16,0,0 +2013,5,10,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,635,-4,0,950,2,0,0 +2013,10,30,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1850,6,0,2105,16,1,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,12,0,1440,8,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,110,1,2120,104,1,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1959,-3,0,2221,12,0,0 +2013,7,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1640,8,0,1740,-4,0,0 +2013,8,19,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,840,49,1,1115,49,1,0 +2013,8,12,1,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-6,0,855,21,1,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1345,38,1,1500,34,1,0 +2013,4,8,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1525,6,0,1650,4,0,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2010,98,1,2055,117,1,0 +2013,7,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1620,-4,0,1705,-2,0,0 +2013,7,2,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-6,0,955,-9,0,0 +2013,6,14,5,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1240,8,0,0 +2013,8,31,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1735,41,1,1949,30,1,0 +2013,7,7,7,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-9,0,2055,-13,0,0 +2013,9,20,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,55,1,1220,88,1,0 +2013,9,1,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1735,12,0,1827,13,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1400,236,1,1625,218,1,0 +2013,5,31,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2030,-4,0,2330,-9,0,0 +2013,4,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,115,0,0,802,-13,0,0 +2013,10,26,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1505,21,1,1620,21,1,0 +2013,8,14,3,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,955,-6,0,1115,-14,0,0 +2013,10,18,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,-4,0,1155,-14,0,0 +2013,10,23,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1915,13,0,2145,-2,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,-6,0,2300,-9,0,0 +2013,10,8,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1545,-1,0,1944,5,0,0 +2013,5,26,7,AA,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1700,-5,0,1955,-24,0,0 +2013,4,15,1,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1815,-6,0,2103,-7,0,0 +2013,7,3,3,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-15,0,848,-25,0,0 +2013,9,28,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2155,-3,0,2308,-8,0,0 +2013,10,4,5,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1030,-6,0,1340,-4,0,0 +2013,5,17,5,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1855,-1,0,2023,6,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,-1,0,1212,0,0,0 +2013,10,9,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,625,5,0,900,-1,0,0 +2013,10,25,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,707,-8,0,813,-16,0,0 +2013,5,9,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1737,44,1,2051,43,1,0 +2013,4,1,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1825,-2,0,1935,-6,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1335,-1,0,1547,-12,0,0 +2013,9,15,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1525,-2,0,1711,-22,0,0 +2013,9,10,2,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1731,-8,0,1900,5,0,0 +2013,10,6,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2145,-3,0,2334,6,0,0 +2013,9,12,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1115,5,0,1215,2,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1222,-3,0,1349,-9,0,0 +2013,10,29,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1300,-5,0,2141,-13,0,0 +2013,10,11,5,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1745,13,0,2023,-1,0,0 +2013,6,22,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,23,1,1905,17,1,0 +2013,6,28,5,EV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11618,Newark Liberty International,Newark,NJ,1724,0,,1835,0,1,1 +2013,6,30,7,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,955,-11,0,1209,-22,0,0 +2013,8,18,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,710,6,0,830,3,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,705,2,0,1022,-7,0,0 +2013,5,8,3,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,0,0,1030,22,1,0 +2013,9,19,4,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1100,0,,1357,0,1,1 +2013,6,17,1,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,1366,1,1435,1348,1,0 +2013,10,27,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1630,0,0,1735,-9,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1335,11,0,1445,60,1,0 +2013,8,21,3,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-2,0,1113,31,1,0 +2013,8,16,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1925,0,0,2116,-9,0,0 +2013,7,31,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1620,40,1,1730,37,1,0 +2013,8,18,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,-1,0,945,-26,0,0 +2013,6,1,6,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1250,-3,0,1444,-17,0,0 +2013,4,21,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-4,0,1250,-16,0,0 +2013,7,24,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,737,-1,0,1033,-1,0,0 +2013,8,12,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1935,13,0,2250,7,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,750,4,0,1546,-21,0,0 +2013,8,18,7,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,0,0,1028,-3,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1845,-2,0,1955,0,0,0 +2013,4,2,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,10,0,740,12,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1426,-3,0,1700,-20,0,0 +2013,7,6,6,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,940,-6,0,1115,-25,0,0 +2013,9,26,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1740,15,1,2116,-2,0,0 +2013,4,1,1,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-6,0,1912,-3,0,0 +2013,4,14,7,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1630,-4,0,1753,-1,0,0 +2013,4,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2012,-3,0,2343,-14,0,0 +2013,5,23,4,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,5,0,936,-1,0,0 +2013,10,13,7,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,829,21,1,1100,-5,0,0 +2013,6,13,4,OO,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1855,-1,0,2045,-9,0,0 +2013,4,16,2,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1925,0,,2105,0,1,1 +2013,5,16,4,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,2159,-4,0,2344,-13,0,0 +2013,6,26,3,9E,14730,Louisville International-Standiford Field,Louisville,KY,12478,John F. Kennedy International,New York,NY,1335,7,0,1555,30,1,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1509,-6,0,1729,-5,0,0 +2013,10,18,5,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-10,0,1755,4,0,0 +2013,10,3,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,845,-7,0,1109,-17,0,0 +2013,5,29,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1510,2,0,1650,-19,0,0 +2013,8,12,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2240,2,0,619,-17,0,0 +2013,5,23,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1955,-4,0,2210,-14,0,0 +2013,10,15,2,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1330,-11,0,1539,-27,0,0 +2013,7,12,5,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1410,-3,0,1820,4,0,0 +2013,5,19,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1215,4,0,1430,3,0,0 +2013,4,10,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,842,-6,0,1649,1,0,0 +2013,5,15,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,11,0,1545,6,0,0 +2013,6,13,4,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1425,113,1,1608,104,1,0 +2013,6,7,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1440,-3,0,1648,-13,0,0 +2013,7,30,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,-2,0,2200,-10,0,0 +2013,8,18,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,653,-5,0,1215,-11,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,715,-2,0,1050,-16,0,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1840,37,1,2150,38,1,0 +2013,4,27,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,750,-6,0,1022,-26,0,0 +2013,9,4,3,EV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,540,-4,0,703,-15,0,0 +2013,8,6,2,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1421,4,0,1659,9,0,0 +2013,5,6,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2040,-1,0,2310,-2,0,0 +2013,6,15,6,YV,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,800,4,0,0 +2013,9,15,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,1,0,1844,1,0,0 +2013,6,21,5,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1155,-3,0,1357,5,0,0 +2013,8,3,6,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1810,0,0,1950,4,0,0 +2013,5,4,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,12889,McCarran International,Las Vegas,NV,1230,-5,0,1340,-32,0,0 +2013,10,23,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,0,0,1735,-8,0,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,900,-5,0,1016,-16,0,0 +2013,8,11,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2235,-4,0,2322,-7,0,0 +2013,5,30,4,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1555,-6,0,1715,7,0,0 +2013,5,12,7,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-5,0,1401,-3,0,0 +2013,7,21,7,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1904,22,1,2150,14,0,0 +2013,4,23,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,2025,34,1,2322,27,1,0 +2013,4,19,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,41,1,815,41,1,0 +2013,4,7,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1140,-9,0,2004,-27,0,0 +2013,7,17,3,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2212,29,1,610,20,1,0 +2013,7,11,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-1,0,1200,-2,0,0 +2013,5,22,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1034,0,,1119,0,1,1 +2013,6,1,6,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1600,-3,0,1810,-8,0,0 +2013,10,25,5,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,941,1,0,1229,-1,0,0 +2013,8,19,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2042,-6,0,2319,3,0,0 +2013,4,11,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1650,3,0,1913,7,0,0 +2013,6,16,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1845,54,1,2005,50,1,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1944,4,0,2054,-1,0,0 +2013,9,23,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,910,14,0,1035,5,0,0 +2013,7,26,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1010,12,0,1040,5,0,0 +2013,7,8,1,OO,14683,San Antonio International,San Antonio,TX,14771,San Francisco International,San Francisco,CA,600,-7,0,745,-22,0,0 +2013,7,24,3,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1914,-1,0,2059,-12,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1124,-3,0,1306,-1,0,0 +2013,10,6,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,0,0,1420,-3,0,0 +2013,6,22,6,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,638,-8,0,758,-2,0,0 +2013,8,1,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,-10,0,800,-9,0,0 +2013,5,25,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,-1,0,630,-39,0,0 +2013,8,21,3,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1208,-4,0,1311,-8,0,0 +2013,5,15,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,600,-5,0,745,-10,0,0 +2013,9,21,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,12,0,1537,17,1,0 +2013,9,14,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,855,5,0,1110,10,0,0 +2013,10,31,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1215,2,0,1350,-11,0,0 +2013,9,20,5,EV,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1807,70,1,1940,65,1,0 +2013,5,2,4,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,1125,333,1,1350,349,1,0 +2013,5,10,5,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,1950,-5,0,2204,-2,0,0 +2013,8,29,4,EV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,709,-3,0,755,-12,0,0 +2013,8,12,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,1935,-2,0,2143,0,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1645,6,0,2010,-5,0,0 +2013,9,24,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1550,-6,0,1703,0,0,0 +2013,10,17,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1830,46,1,2010,51,1,0 +2013,6,5,3,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1441,-4,0,1637,-18,0,0 +2013,9,23,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-1,0,1319,-19,0,0 +2013,8,8,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,88,1,2042,72,1,0 +2013,6,19,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,115,12,0,545,23,1,0 +2013,6,20,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-4,0,1348,-21,0,0 +2013,8,24,6,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2155,-4,0,638,-22,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-8,0,228,-35,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1900,40,1,2225,38,1,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,8,0,1805,3,0,0 +2013,7,22,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,29,91,1,445,77,1,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1905,-5,0,2020,-21,0,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,15016,Lambert-St. Louis International,St. Louis,MO,1150,-6,0,1735,0,0,0 +2013,5,31,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-6,0,1200,-12,0,0 +2013,6,24,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,-3,0,2006,30,1,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1150,5,0,1305,-3,0,0 +2013,9,30,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1343,-15,0,0 +2013,10,5,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,30,1,1052,36,1,0 +2013,10,28,1,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,-6,0,2018,4,0,0 +2013,9,3,2,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,2215,-1,0,608,-5,0,0 +2013,5,28,2,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,600,0,0,740,-15,0,0 +2013,4,25,4,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,110,1,45,92,1,0 +2013,9,3,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,615,-2,0,740,-17,0,0 +2013,4,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,600,-1,0,720,-9,0,0 +2013,6,6,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1335,23,1,1540,12,0,0 +2013,10,9,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1721,3,0,2100,7,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1955,-2,0,2115,1,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,901,2,0,1124,3,0,0 +2013,9,9,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-10,0,1306,-12,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1250,1,0,1430,4,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1820,21,1,1930,18,1,0 +2013,6,3,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1929,18,1,2105,0,0,0 +2013,4,3,3,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,809,3,0,1027,4,0,0 +2013,4,24,3,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1010,27,1,1125,24,1,0 +2013,10,16,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,10,0,1445,21,1,0 +2013,9,1,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-2,0,858,-8,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,-2,0,1635,-6,0,0 +2013,9,6,5,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1933,93,1,2245,70,1,0 +2013,10,8,2,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,945,7,0,1245,15,1,0 +2013,9,20,5,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,23,1,1815,18,1,0 +2013,10,25,5,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-11,0,1438,-12,0,0 +2013,5,1,3,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,720,-6,0,846,-16,0,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1711,-2,0,2039,14,0,0 +2013,9,18,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,13,0,1813,22,1,0 +2013,9,7,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,832,-9,0,918,-8,0,0 +2013,8,19,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,-3,0,1030,-21,0,0 +2013,8,6,2,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,700,-5,0,1142,-9,0,0 +2013,10,30,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,846,37,1,1100,53,1,0 +2013,4,6,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,-6,0,1052,-28,0,0 +2013,9,8,7,OO,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2147,3,0,3,-2,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,955,-1,0,1330,-21,0,0 +2013,5,10,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,2040,-7,0,2329,-15,0,0 +2013,8,15,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-3,0,830,-3,0,0 +2013,9,24,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1950,14,0,2145,12,0,0 +2013,5,23,4,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1050,-2,0,1323,-2,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1555,4,0,1710,9,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2000,28,1,2217,43,1,0 +2013,4,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2012,0,0,2113,-15,0,0 +2013,9,29,7,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1401,19,1,1551,-1,0,0 +2013,7,25,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,13,0,1345,-5,0,0 +2013,8,1,4,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,2030,2,0,2225,2,0,0 +2013,8,7,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1116,4,0,1232,-7,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1450,23,1,1745,24,1,0 +2013,4,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,13,0,1645,-23,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,27,1,2055,29,1,0 +2013,6,27,4,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1357,-5,0,1630,-10,0,0 +2013,10,4,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,830,-6,0,1550,-34,0,0 +2013,10,1,2,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1500,-9,0,1625,-10,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,855,-5,0,950,-12,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-3,0,1313,-7,0,0 +2013,4,24,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1915,13,0,2020,10,0,0 +2013,9,1,7,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1238,0,0,2036,-20,0,0 +2013,6,28,5,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1238,21,1,1338,23,1,0 +2013,9,12,4,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1120,20,1,1230,48,1,0 +2013,5,9,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,58,1,2338,37,1,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,730,142,1,1020,138,1,0 +2013,8,14,3,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,0,0,1710,-2,0,0 +2013,5,11,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1053,3,0,1314,24,1,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2005,-4,0,2313,1,0,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1030,0,0,1309,-16,0,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1635,0,0,1750,-7,0,0 +2013,6,6,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,32,1,6,36,1,0 +2013,7,24,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-8,0,2033,13,0,0 +2013,7,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1555,0,,1725,0,1,1 +2013,4,10,3,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,625,-7,0,754,-19,0,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-3,0,954,0,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1105,-2,0,1601,-1,0,0 +2013,10,3,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-6,0,948,36,1,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,3,0,1455,1,0,0 +2013,9,23,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-2,0,1242,-7,0,0 +2013,4,20,6,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1353,8,0,1507,2,0,0 +2013,8,31,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2010,-10,0,2230,-2,0,0 +2013,5,25,6,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1640,5,0,2155,3,0,0 +2013,6,9,7,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-2,0,1820,-25,0,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,3,0,2059,-3,0,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1250,30,1,1410,31,1,0 +2013,10,13,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1820,47,1,2230,38,1,0 +2013,8,3,6,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-4,0,805,-15,0,0 +2013,6,6,4,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,0,0,1642,11,0,0 +2013,8,4,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,710,91,1,920,99,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1915,-4,0,2055,-9,0,0 +2013,7,5,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13198,Kansas City International,Kansas City,MO,1802,4,0,1901,18,1,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,850,2,0,1025,-11,0,0 +2013,8,1,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1840,-1,0,130,-5,0,0 +2013,5,29,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,1103,-16,0,0 +2013,10,24,4,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,-1,0,1905,3,0,0 +2013,8,24,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,0,0,1352,2,0,0 +2013,10,6,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1015,-2,0,1351,-3,0,0 +2013,6,21,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,-6,0,1840,-25,0,0 +2013,5,6,1,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1135,-5,0,1554,-6,0,0 +2013,10,8,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1415,-9,0,1748,-25,0,0 +2013,8,29,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-6,0,1345,-10,0,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,12,0,1335,-6,0,0 +2013,6,20,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,1008,-13,0,0 +2013,10,6,7,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1325,-1,0,1530,-11,0,0 +2013,4,12,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1710,21,1,1836,17,1,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,715,-5,0,829,-11,0,0 +2013,10,7,1,YV,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1015,29,1,1321,37,1,0 +2013,7,26,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1959,96,1,2159,98,1,0 +2013,6,4,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1630,-1,0,1805,-6,0,0 +2013,9,17,2,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,6,0,822,26,1,0 +2013,7,15,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,625,153,1,805,127,1,0 +2013,8,20,2,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,7,0,2110,-3,0,0 +2013,10,21,1,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,2055,1,0,515,-10,0,0 +2013,4,17,3,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-2,0,2106,-7,0,0 +2013,5,27,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1923,-4,0,117,-9,0,0 +2013,6,15,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1845,76,1,1930,75,1,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,12,0,1740,15,1,0 +2013,7,8,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,600,0,0,725,5,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1045,4,0,1150,-8,0,0 +2013,5,23,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1910,57,1,2035,42,1,0 +2013,10,26,6,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1530,-4,0,1650,-2,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1715,-2,0,2000,-5,0,0 +2013,6,19,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1535,-2,0,1814,-15,0,0 +2013,9,10,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,-5,0,2035,5,0,0 +2013,10,12,6,AS,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,0,0,1125,1,0,0 +2013,4,21,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-8,0,645,-6,0,0 +2013,6,18,2,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,137,1,850,133,1,0 +2013,7,18,4,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1940,-6,0,2225,-5,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2205,-4,0,2356,-23,0,0 +2013,7,6,6,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,725,-4,0,1010,-4,0,0 +2013,5,7,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,848,10,0,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2100,-4,0,2332,-24,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1730,-1,0,2108,-3,0,0 +2013,9,25,3,9E,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-6,0,917,-16,0,0 +2013,9,30,1,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1410,18,1,1540,6,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,825,9,0,1055,6,0,0 +2013,5,10,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1130,-3,0,1431,-16,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1757,-3,0,2013,-8,0,0 +2013,7,17,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1425,0,0,2020,15,1,0 +2013,4,14,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2000,0,0,2144,-5,0,0 +2013,5,24,5,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,655,-1,0,741,-1,0,0 +2013,5,4,6,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,540,-6,0,916,-13,0,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2115,94,1,2218,77,1,0 +2013,10,22,2,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,950,6,0,1108,-8,0,0 +2013,8,29,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,605,-7,0,719,-18,0,0 +2013,7,21,7,DL,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1310,-9,0,1556,-20,0,0 +2013,4,20,6,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,8,0,1105,-14,0,0 +2013,8,10,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1011,-3,0,1201,-14,0,0 +2013,8,18,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1710,6,0,1810,6,0,0 +2013,8,7,3,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1809,30,1,2121,29,1,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,1,0,1025,7,0,0 +2013,9,8,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,-4,0,1130,-18,0,0 +2013,8,25,7,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2030,-4,0,2330,-5,0,0 +2013,10,3,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,924,17,1,1117,20,1,0 +2013,10,18,5,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1355,11,0,1545,-11,0,0 +2013,9,25,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1500,40,1,1614,31,1,0 +2013,10,7,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,900,19,1,1050,-2,0,0 +2013,10,21,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1830,-2,0,2105,-6,0,0 +2013,4,16,2,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1429,4,0,1600,24,1,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1345,46,1,1607,65,1,0 +2013,5,17,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,829,9,0,941,9,0,0 +2013,8,25,7,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,-4,0,2020,-4,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1955,7,0,2340,6,0,0 +2013,10,8,2,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1035,-6,0,1607,6,0,0 +2013,4,2,2,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1310,8,0,1800,-7,0,0 +2013,6,18,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1210,-7,0,1451,-6,0,0 +2013,7,10,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1115,6,0,1405,23,1,0 +2013,6,18,2,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-6,0,1304,-7,0,0 +2013,5,12,7,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1945,-1,0,2100,-5,0,0 +2013,7,16,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,935,-1,0,955,0,0,0 +2013,5,17,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1725,1,0,1910,-12,0,0 +2013,7,29,1,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,0,0,2040,-5,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2240,-3,0,2340,-7,0,0 +2013,10,25,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1050,45,1,1230,34,1,0 +2013,4,16,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,618,-8,0,935,-19,0,0 +2013,6,4,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-5,0,1929,-15,0,0 +2013,8,22,4,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2018,-1,0,2159,38,1,0 +2013,4,25,4,EV,11618,Newark Liberty International,Newark,NJ,14122,Pittsburgh International,Pittsburgh,PA,802,10,0,928,31,1,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1543,-4,0,1722,-10,0,0 +2013,9,5,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1255,0,,1357,0,1,1 +2013,10,10,4,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,645,8,0,826,14,0,0 +2013,9,13,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,825,-5,0,837,1,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,830,-2,0,1003,-8,0,0 +2013,5,29,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-2,0,5,52,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1449,-4,0,1726,-35,0,0 +2013,4,16,2,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2002,-7,0,2130,-3,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,720,1,0,840,0,0,0 +2013,5,15,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1409,-1,0,1619,-22,0,0 +2013,4,7,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,0,0,2000,-5,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1610,0,0,1732,-13,0,0 +2013,9,26,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1305,0,0,1736,38,1,0 +2013,8,24,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1314,-5,0,1609,-14,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1610,-3,0,1622,-10,0,0 +2013,5,21,2,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1303,13,0,2130,16,1,0 +2013,6,21,5,DL,10721,Logan International,Boston,MA,14869,Salt Lake City International,Salt Lake City,UT,700,-2,0,1019,-20,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1532,12,0,1721,5,0,0 +2013,6,14,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1735,13,0,1855,8,0,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2005,130,1,2240,127,1,0 +2013,8,29,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1245,2,0,1830,4,0,0 +2013,5,10,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,26,1,1315,17,1,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1122,1,0,1317,-19,0,0 +2013,8,6,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1628,2,0,1851,11,0,0 +2013,5,24,5,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1700,147,1,1855,134,1,0 +2013,8,1,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1440,-3,0,1610,-16,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1335,-3,0,1450,-14,0,0 +2013,10,15,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1405,36,1,2005,34,1,0 +2013,4,22,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1057,-5,0,1259,-3,0,0 +2013,6,6,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,5,0,1202,33,1,0 +2013,9,18,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,0,,1200,0,1,1 +2013,7,16,2,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,2117,3,0,2247,-13,0,0 +2013,7,3,3,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1003,38,1,1700,68,1,0 +2013,5,23,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1640,233,1,1915,226,1,0 +2013,4,14,7,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1552,9,0,1649,7,0,0 +2013,10,11,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1855,12,0,2020,2,0,0 +2013,5,3,5,OO,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1057,16,1,1307,36,1,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1110,-3,0,1229,-8,0,0 +2013,9,23,1,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,816,-10,0,934,-8,0,0 +2013,5,1,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1925,74,1,2110,68,1,0 +2013,7,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,0,0,1840,0,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1415,10,0,1745,12,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,709,1,0,1009,13,0,0 +2013,5,26,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1035,-4,0,1424,4,0,0 +2013,4,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,2200,-5,0,2312,-15,0,0 +2013,7,19,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,7,0,1253,-4,0,0 +2013,8,14,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1310,-3,0,1632,-7,0,0 +2013,8,4,7,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,6,0,1730,-11,0,0 +2013,6,28,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1105,1,0,1230,-11,0,0 +2013,8,3,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1235,1,0,1811,-20,0,0 +2013,7,17,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,930,-4,0,1059,-15,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1025,87,1,1220,77,1,0 +2013,5,9,4,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,615,-4,0,916,-10,0,0 +2013,7,23,2,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1748,-16,0,2114,-2,0,0 +2013,8,11,7,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1825,10,0,2057,-1,0,0 +2013,5,7,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,832,6,0,935,-2,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,2,0,1345,-6,0,0 +2013,10,29,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1306,-6,0,1633,-28,0,0 +2013,5,4,6,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-3,0,1746,-14,0,0 +2013,6,28,5,US,14893,Sacramento International,Sacramento,CA,14100,Philadelphia International,Philadelphia,PA,2159,179,1,602,178,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2215,31,1,2335,27,1,0 +2013,8,9,5,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,845,5,0,1205,1,0,0 +2013,5,4,6,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,305,1,2020,293,1,0 +2013,5,10,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,550,1,0,900,-5,0,0 +2013,10,22,2,YV,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,800,-5,0,1018,13,0,0 +2013,7,3,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2030,32,1,2115,23,1,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,-1,0,1022,-4,0,0 +2013,10,14,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1337,-7,0,1530,-13,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1340,27,1,1505,28,1,0 +2013,4,19,5,DL,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1935,264,1,2256,253,1,0 +2013,7,14,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-7,0,1942,-7,0,0 +2013,5,30,4,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1515,58,1,1605,49,1,0 +2013,10,22,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1200,14,0,1335,8,0,0 +2013,4,8,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2215,-7,0,2355,-14,0,0 +2013,6,13,4,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,735,3,0,1019,50,1,0 +2013,4,12,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1651,-7,0,1758,-33,0,0 +2013,8,30,5,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,1005,-8,0,1544,5,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,941,0,0,1140,-17,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1540,33,1,1650,16,1,0 +2013,8,30,5,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1346,-2,0,1948,-2,0,0 +2013,4,19,5,YV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,704,-3,0,832,20,1,0 +2013,7,31,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,2030,14,0,2320,14,0,0 +2013,5,15,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,845,-2,0,1023,-8,0,0 +2013,5,25,6,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1925,4,0,2145,-8,0,0 +2013,5,23,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1005,-5,0,1120,-4,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,2035,0,0,2215,-14,0,0 +2013,9,11,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,600,-3,0,720,0,0,0 +2013,7,25,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,536,-4,0,806,-6,0,0 +2013,7,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,2125,-1,0,5,-5,0,0 +2013,10,27,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,955,-2,0,1115,-7,0,0 +2013,9,9,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,2,0,1505,-1,0,0 +2013,7,15,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,700,18,1,831,15,1,0 +2013,4,3,3,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1215,0,0,1435,-12,0,0 +2013,8,19,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1055,-9,0,1425,-8,0,0 +2013,7,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1505,2,0,1627,-21,0,0 +2013,10,7,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,744,-7,0,1005,17,1,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,856,96,1,922,112,1,0 +2013,10,15,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1450,-5,0,1620,-10,0,0 +2013,10,17,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,-10,0,1417,-10,0,0 +2013,10,22,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,-2,0,1132,9,0,0 +2013,10,22,2,WN,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1100,-5,0,1250,-34,0,0 +2013,10,7,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-4,0,1407,-6,0,0 +2013,9,28,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1240,9,0,1405,2,0,0 +2013,8,22,4,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,925,-5,0,1115,4,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,47,1,1703,51,1,0 +2013,6,16,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2355,-6,0,723,-21,0,0 +2013,7,4,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-7,0,805,7,0,0 +2013,4,24,3,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,720,-3,0,805,2,0,0 +2013,9,19,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1322,26,1,2146,30,1,0 +2013,5,13,1,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1630,-2,0,1820,-9,0,0 +2013,6,24,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,96,1,2234,72,1,0 +2013,5,12,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,-4,0,1920,5,0,0 +2013,4,5,5,EV,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,545,-5,0,725,-15,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1525,-4,0,1733,-16,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1034,23,1,1409,22,1,0 +2013,9,15,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,840,1,0,1405,-15,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1208,41,1,1410,15,1,0 +2013,8,26,1,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1045,3,0,1130,-10,0,0 +2013,4,14,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1706,20,1,2025,11,0,0 +2013,9,28,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,-3,0,1628,-5,0,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1535,-3,0,1645,-19,0,0 +2013,5,3,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1120,2,0,1305,12,0,0 +2013,10,12,6,EV,12451,Jacksonville International,Jacksonville,FL,13930,Chicago O'Hare International,Chicago,IL,1430,-1,0,1604,-14,0,0 +2013,6,29,6,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,2,0,1115,7,0,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,19,1,35,23,1,0 +2013,4,8,1,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1645,29,1,1930,25,1,0 +2013,8,21,3,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1154,-9,0,1300,-3,0,0 +2013,4,10,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-5,0,1738,-2,0,0 +2013,4,15,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1013,4,0,0 +2013,7,8,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-3,0,1710,10,0,0 +2013,8,20,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,945,1,0,1305,-14,0,0 +2013,4,30,2,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,916,83,1,1034,75,1,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,0,,1005,0,1,1 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-3,0,1037,-21,0,0 +2013,6,10,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,720,-5,0,900,-10,0,0 +2013,6,10,1,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1429,11,0,1714,4,0,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2220,0,,2340,0,1,1 +2013,8,8,4,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1025,8,0,1241,7,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1615,9,0,1832,-2,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2056,6,0,2237,3,0,0 +2013,9,20,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,6,0,1730,6,0,0 +2013,4,17,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,645,-8,0,841,3,0,0 +2013,5,18,6,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1035,-5,0,1741,-17,0,0 +2013,9,3,2,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2035,7,0,2135,11,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2055,13,0,2234,3,0,0 +2013,4,22,1,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1916,72,1,1950,74,1,0 +2013,10,11,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1359,5,0,1531,1,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1410,0,,1745,0,1,1 +2013,6,23,7,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,96,1,1015,98,1,0 +2013,10,20,7,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,645,0,0,1039,-1,0,0 +2013,5,7,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,615,-3,0,715,-5,0,0 +2013,10,5,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-7,0,1609,-13,0,0 +2013,8,19,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,952,-8,0,1040,-18,0,0 +2013,4,1,1,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,810,0,0,1037,-21,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-2,0,948,-4,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,3,0,2346,-10,0,0 +2013,4,22,1,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,645,-3,0,940,-30,0,0 +2013,9,25,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1836,4,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,-1,0,1805,-16,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,925,-1,0,1050,-17,0,0 +2013,5,20,1,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,609,-2,0,1150,-14,0,0 +2013,8,13,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1600,86,1,1746,64,1,0 +2013,6,20,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1707,-2,0,1839,-17,0,0 +2013,8,20,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2140,0,0,542,14,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,810,-5,0,852,-8,0,0 +2013,6,7,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,1020,-15,0,1230,-32,0,0 +2013,6,21,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,810,-6,0,955,-25,0,0 +2013,6,15,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,7,0,1855,3,0,0 +2013,10,30,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1137,-13,0,1309,-14,0,0 +2013,4,21,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,2150,-4,0,2300,-10,0,0 +2013,10,20,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1655,-4,0,1820,-16,0,0 +2013,8,4,7,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,3,0,950,-16,0,0 +2013,5,26,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1817,-2,0,1854,-7,0,0 +2013,5,30,4,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,804,-1,0,1019,-9,0,0 +2013,8,20,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,-4,0,2300,-11,0,0 +2013,7,29,1,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1850,11,0,2025,10,0,0 +2013,6,27,4,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2220,2,0,105,-1,0,0 +2013,4,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1457,14,0,1602,0,0,0 +2013,8,3,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1409,-5,0,1650,-7,0,0 +2013,5,22,3,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1127,0,,1420,0,1,1 +2013,10,17,4,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1333,-7,0,1553,-12,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1830,14,0,2230,8,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1614,-1,0,1708,6,0,0 +2013,5,15,3,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,1510,17,1,1810,12,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,25,1,2004,36,1,0 +2013,6,18,2,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-4,0,812,-9,0,0 +2013,8,22,4,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1540,20,1,2300,28,1,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1835,2,0,2015,0,0,0 +2013,10,22,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1556,-10,0,2100,2,0,0 +2013,7,27,6,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,23,1,2330,28,1,0 +2013,7,16,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-6,0,830,-8,0,0 +2013,9,4,3,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1844,5,0,2015,-3,0,0 +2013,9,5,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,-1,0,1655,-10,0,0 +2013,9,3,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,800,8,0,915,9,0,0 +2013,8,8,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-1,0,2226,-2,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,843,6,0,1033,-5,0,0 +2013,4,28,7,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1720,0,0,1920,18,1,0 +2013,6,14,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,40,1,1810,30,1,0 +2013,8,14,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1125,12,0,1414,11,0,0 +2013,7,13,6,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1750,87,1,2314,76,1,0 +2013,9,7,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,825,-2,0,1050,-1,0,0 +2013,6,10,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,1,0,1115,-6,0,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,600,2,0,900,-38,0,0 +2013,10,29,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,4,0,2230,3,0,0 +2013,7,16,2,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,2110,3,0,20,6,0,0 +2013,7,9,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1335,-3,0,1611,-3,0,0 +2013,7,30,2,DL,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1743,258,1,2018,249,1,0 +2013,10,20,7,F9,11042,Cleveland-Hopkins International,Cleveland,OH,14122,Pittsburgh International,Pittsburgh,PA,745,72,1,826,72,1,0 +2013,4,24,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,-8,0,2055,-10,0,0 +2013,4,4,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,615,-9,0,1041,-34,0,0 +2013,4,17,3,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1345,-5,0,1541,-13,0,0 +2013,5,12,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-4,0,1109,-41,0,0 +2013,4,28,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,-1,0,2110,-21,0,0 +2013,6,20,4,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,109,1,2023,100,1,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1510,-6,0,1719,-7,0,0 +2013,5,28,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2020,-2,0,2125,-14,0,0 +2013,6,15,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1005,6,0,1302,-1,0,0 +2013,8,15,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1645,-5,0,1855,-23,0,0 +2013,10,17,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1915,-5,0,2050,0,0,0 +2013,7,4,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1301,-7,0,1502,5,0,0 +2013,6,21,5,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,4,0,803,-3,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1721,9,0,1919,-7,0,0 +2013,10,19,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,-9,0,2015,-19,0,0 +2013,6,5,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1305,1,0,1450,-7,0,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,25,1,1615,51,1,0 +2013,10,30,3,US,14307,Theodore Francis Green State,Providence,RI,11278,Ronald Reagan Washington National,Washington,DC,615,-9,0,740,-16,0,0 +2013,4,23,2,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,-10,0,1735,-22,0,0 +2013,5,8,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1415,-3,0,1430,-8,0,0 +2013,8,7,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1735,10,0,1815,26,1,0 +2013,10,18,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1300,5,0,1420,-7,0,0 +2013,4,6,6,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1125,2,0,1320,0,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,630,3,0,755,41,1,0 +2013,5,15,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,755,-3,0,921,4,0,0 +2013,9,27,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,0,0,1615,2,0,0 +2013,4,25,4,WN,14771,San Francisco International,San Francisco,CA,13232,Chicago Midway International,Chicago,IL,1335,0,0,1950,-16,0,0 +2013,10,1,2,UA,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,600,8,0,719,1,0,0 +2013,5,31,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1955,29,1,2115,22,1,0 +2013,6,9,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,72,1,1740,76,1,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-5,0,1111,54,1,0 +2013,8,11,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1750,27,1,1910,36,1,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1125,-1,0,1515,-7,0,0 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,9,0,1640,2,0,0 +2013,7,17,3,DL,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1440,-5,0,1749,-16,0,0 +2013,10,4,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-5,0,1725,-7,0,0 +2013,4,20,6,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1210,-9,0,1445,29,1,0 +2013,10,9,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1715,1,0,2020,-9,0,0 +2013,7,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2110,12,0,2213,-3,0,0 +2013,6,14,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1857,26,1,2032,29,1,0 +2013,10,31,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,-3,0,1105,-22,0,0 +2013,8,23,5,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,750,5,0,915,-7,0,0 +2013,7,27,6,US,14893,Sacramento International,Sacramento,CA,11057,Charlotte Douglas International,Charlotte,NC,2259,4,0,638,-12,0,0 +2013,8,30,5,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1030,-9,0,1340,-14,0,0 +2013,7,11,4,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,-2,0,1846,-8,0,0 +2013,5,2,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,-4,0,1503,-9,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,720,-3,0,820,-1,0,0 +2013,10,14,1,WN,11066,Port Columbus International,Columbus,OH,15016,Lambert-St. Louis International,St. Louis,MO,1945,7,0,2005,1,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-6,0,1525,-16,0,0 +2013,6,2,7,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1850,104,1,2035,103,1,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1835,6,0,2050,-8,0,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,-1,0,1555,-3,0,0 +2013,4,11,4,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1017,-7,0,1601,-12,0,0 +2013,6,22,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,950,-5,0,1115,-17,0,0 +2013,9,2,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,7,0,1335,-4,0,0 +2013,6,4,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,-1,0,1724,-7,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-1,0,2155,-4,0,0 +2013,8,23,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,4,0,1735,-3,0,0 +2013,4,8,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,2030,11,0,2210,-10,0,0 +2013,7,26,5,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1820,135,1,2052,101,1,0 +2013,4,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2105,-4,0,2225,-17,0,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,710,-7,0,815,-10,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1811,-2,0,2000,-21,0,0 +2013,5,28,2,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-13,0,1613,-5,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,814,-1,0,918,-10,0,0 +2013,8,18,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,735,-4,0,1010,-14,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1813,22,1,2037,21,1,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2025,14,0,2321,-18,0,0 +2013,6,22,6,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1000,-7,0,1116,-14,0,0 +2013,8,19,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,-1,0,2015,6,0,0 +2013,10,24,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,6,0,1005,8,0,0 +2013,4,5,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,-3,0,1140,-2,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1428,20,1,1840,3,0,0 +2013,10,18,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-4,0,1406,-23,0,0 +2013,6,17,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,222,1,1816,224,1,0 +2013,9,2,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1255,-8,0,1845,-9,0,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,600,-3,0,700,-5,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1905,-8,0,2050,-21,0,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1855,-5,0,2146,-14,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1959,44,1,2237,39,1,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1255,-1,0,1340,4,0,0 +2013,4,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1755,-5,0,2048,-14,0,0 +2013,6,24,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1830,22,1,1856,13,0,0 +2013,7,21,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,840,-5,0,1627,23,1,0 +2013,8,5,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,9,0,2050,10,0,0 +2013,4,21,7,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1635,-7,0,1720,-16,0,0 +2013,8,5,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,600,-1,0,650,0,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,945,-6,0,1202,-9,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,859,1,0,1613,7,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1640,67,1,1847,84,1,0 +2013,7,29,1,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,3,0,2011,2,0,0 +2013,9,3,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,8,0,1535,4,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1655,-2,0,1814,-18,0,0 +2013,6,14,5,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,700,-1,0,930,-6,0,0 +2013,8,1,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,38,1,2052,27,1,0 +2013,8,18,7,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1805,-6,0,2259,-17,0,0 +2013,4,5,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-9,0,905,-38,0,0 +2013,6,18,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,625,-4,0,1057,-15,0,0 +2013,8,27,2,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1508,11,0,2044,-2,0,0 +2013,8,9,5,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1120,-6,0,1905,-1,0,0 +2013,6,24,1,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1228,-6,0,1603,-5,0,0 +2013,5,9,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,600,-6,0,725,-7,0,0 +2013,6,16,7,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1524,-16,0,0 +2013,5,4,6,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1540,33,1,1658,43,1,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1415,9,0,1645,-3,0,0 +2013,4,3,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1020,-6,0,1319,-7,0,0 +2013,5,31,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-5,0,1634,-28,0,0 +2013,8,17,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1527,34,1,1637,31,1,0 +2013,8,15,4,FL,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-10,0,1410,-5,0,0 +2013,6,22,6,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1410,1,0,1535,-9,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1215,-1,0,1346,-14,0,0 +2013,5,12,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,715,-8,0,825,-13,0,0 +2013,4,28,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-10,0,1115,-36,0,0 +2013,10,20,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1450,126,1,1555,132,1,0 +2013,5,3,5,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1230,1,0,1427,-10,0,0 +2013,10,24,4,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-4,0,2359,0,0,0 +2013,6,30,7,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1000,-1,0,1105,7,0,0 +2013,10,21,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1855,22,1,1945,47,1,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,935,-4,0,1155,19,1,0 +2013,7,3,3,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1812,12,0,2017,13,0,0 +2013,8,27,2,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2010,-2,0,2145,-7,0,0 +2013,9,28,6,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,39,1,1750,26,1,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,650,1,0,1010,-17,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1715,82,1,2000,96,1,0 +2013,6,22,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1950,-1,0,2110,8,0,0 +2013,10,7,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-5,0,2020,-12,0,0 +2013,6,21,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,6,0,1741,2,0,0 +2013,6,3,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1355,34,1,1757,15,1,0 +2013,6,7,5,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,600,-3,0,900,-14,0,0 +2013,9,5,4,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,86,1,2030,90,1,0 +2013,7,7,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1455,-4,0,1830,-51,0,0 +2013,6,4,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1519,-5,0,1756,-44,0,0 +2013,9,30,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1015,3,0,1715,20,1,0 +2013,4,9,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1555,-9,0,1855,-16,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,2155,5,0,2356,5,0,0 +2013,5,4,6,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,12,0,1535,-8,0,0 +2013,8,12,1,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1208,24,1,1452,89,1,0 +2013,5,11,6,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,850,-1,0,1115,9,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2059,-1,0,2225,1,0,0 +2013,8,29,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,0,0,1157,-8,0,0 +2013,10,21,1,WN,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,930,-9,0,1245,-17,0,0 +2013,5,19,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,808,0,0,902,-6,0,0 +2013,6,6,4,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1810,62,1,2000,66,1,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1830,-3,0,1920,-14,0,0 +2013,7,25,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,951,-6,0,1319,0,0,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1140,10,0,1250,1,0,0 +2013,8,10,6,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,600,7,0,715,-3,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1335,64,1,1520,53,1,0 +2013,9,11,3,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1409,-7,0,1646,-31,0,0 +2013,6,17,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,6,0,1411,5,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,2,0,1814,-3,0,0 +2013,7,28,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1925,-4,0,2035,-10,0,0 +2013,4,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1330,-7,0,1459,-11,0,0 +2013,8,9,5,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1950,0,0,2115,2,0,0 +2013,6,24,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,109,1,1340,113,1,0 +2013,6,25,2,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1920,3,0,2105,-2,0,0 +2013,7,14,7,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1255,3,0,1501,0,0,0 +2013,8,22,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-6,0,1024,9,0,0 +2013,7,12,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2200,106,1,2255,97,1,0 +2013,10,7,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1340,-2,0,1621,-4,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2135,20,1,2300,11,0,0 +2013,10,4,5,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1842,-7,0,2135,22,1,0 +2013,10,10,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,0,0,1343,-12,0,0 +2013,7,11,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1750,13,0,1905,4,0,0 +2013,5,3,5,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1420,9,0,1520,0,0,0 +2013,6,5,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,9,0,2115,10,0,0 +2013,8,21,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2053,-4,0,2307,-2,0,0 +2013,9,23,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,-6,0,1701,-22,0,0 +2013,9,2,1,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,730,0,0,1020,-14,0,0 +2013,10,22,2,AA,13830,Kahului Airport,Kahului,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1650,-10,0,500,-32,0,0 +2013,5,19,7,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,803,23,1,855,27,1,0 +2013,8,30,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,17,1,2115,20,1,0 +2013,4,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,600,-7,0,815,-17,0,0 +2013,7,3,3,AS,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,-6,0,147,-11,0,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-8,0,905,0,0,0 +2013,8,20,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1145,-1,0,1310,11,0,0 +2013,8,29,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,809,1,0,1559,9,0,0 +2013,7,27,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-3,0,1030,-7,0,0 +2013,8,27,2,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1502,1,0,1607,1,0,0 +2013,10,9,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,855,-7,0,1054,-17,0,0 +2013,4,11,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-3,0,947,-3,0,0 +2013,6,8,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1735,3,0,1845,-5,0,0 +2013,6,13,4,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1839,131,1,2028,164,1,0 +2013,5,10,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1716,12,0,1835,97,1,0 +2013,10,4,5,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,720,-1,0,857,-6,0,0 +2013,10,29,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1108,-10,0,1255,-21,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1338,3,0,1800,-10,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,955,54,1,1430,44,1,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,650,-2,0,805,-3,0,0 +2013,10,2,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,839,0,0,1431,-21,0,0 +2013,7,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,900,0,0,1010,-9,0,0 +2013,6,24,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1340,17,1,1510,-4,0,0 +2013,5,17,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1750,5,0,1908,-6,0,0 +2013,6,10,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1412,-6,0,1451,-4,0,0 +2013,8,20,2,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-10,0,1055,-18,0,0 +2013,4,17,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1036,-1,0,1234,-13,0,0 +2013,6,24,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2107,24,1,2227,25,1,0 +2013,10,23,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1823,3,0,2015,-3,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1850,26,1,2310,18,1,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,3,0,1255,0,0,0 +2013,10,18,5,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,-9,0,1840,8,0,0 +2013,5,10,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1835,6,0,2050,4,0,0 +2013,10,23,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-4,0,1300,-13,0,0 +2013,6,2,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,24,1,1559,47,1,0 +2013,8,30,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1148,-1,0,1447,54,1,0 +2013,10,26,6,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,632,16,1,1223,12,0,0 +2013,7,10,3,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,-2,0,2015,16,1,0 +2013,9,29,7,EV,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,11,0,1623,-4,0,0 +2013,9,2,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-4,0,1323,-12,0,0 +2013,5,2,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,-8,0,1136,-17,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,741,-2,0,911,-21,0,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1235,3,0,1520,2,0,0 +2013,4,5,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1202,-3,0,1335,-12,0,0 +2013,7,31,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,857,-13,0,1004,-16,0,0 +2013,5,3,5,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,900,-4,0,1022,-8,0,0 +2013,4,17,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1120,-4,0,1452,9,0,0 +2013,6,26,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-1,0,2207,-18,0,0 +2013,9,22,7,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,2210,-10,0,2348,-19,0,0 +2013,7,24,3,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,-4,0,1224,-10,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,0,0,1330,-6,0,0 +2013,9,23,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,-5,0,2148,-10,0,0 +2013,6,28,5,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,758,-10,0,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2000,48,1,2225,50,1,0 +2013,5,29,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,619,6,0,732,3,0,0 +2013,9,30,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,730,0,0,830,-1,0,0 +2013,4,5,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1459,-3,0,1637,-9,0,0 +2013,5,7,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,615,-5,0,730,-14,0,0 +2013,7,14,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1040,0,0,1355,-9,0,0 +2013,5,27,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1305,54,1,1340,51,1,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2210,-6,0,45,-15,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,5,0,1805,9,0,0 +2013,4,25,4,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,825,26,1,1650,6,0,0 +2013,9,15,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1445,9,0,1650,-3,0,0 +2013,7,25,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1000,-4,0,1125,3,0,0 +2013,6,14,5,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,-1,0,1720,-1,0,0 +2013,9,27,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,705,0,0,1225,-3,0,0 +2013,6,19,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,-4,0,1451,-3,0,0 +2013,10,17,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,4,0,1322,10,0,0 +2013,9,30,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1835,-4,0,1940,-7,0,0 +2013,8,11,7,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,900,-1,0,1130,28,1,0 +2013,7,19,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,800,-22,0,0 +2013,8,5,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,77,1,1315,68,1,0 +2013,8,22,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,700,-5,0,1455,4,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-5,0,1947,10,0,0 +2013,4,6,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-7,0,1008,-3,0,0 +2013,10,10,4,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2200,-3,0,2317,-7,0,0 +2013,6,18,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,32,1,928,27,1,0 +2013,10,31,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,0,0,1100,1,0,0 +2013,6,1,6,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1800,-6,0,1911,-15,0,0 +2013,7,19,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1320,-5,0,1459,7,0,0 +2013,5,30,4,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1705,-3,0,1927,-6,0,0 +2013,4,14,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,8,0,2125,-11,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,-1,0,1819,6,0,0 +2013,10,27,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,720,3,0,840,12,0,0 +2013,9,2,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2040,7,0,2055,12,0,0 +2013,5,24,5,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-8,0,746,-6,0,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,0,0,1905,-19,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,14683,San Antonio International,San Antonio,TX,1225,2,0,1705,2,0,0 +2013,9,30,1,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,1,0,910,-4,0,0 +2013,6,10,1,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1644,20,1,1648,17,1,0 +2013,5,7,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1000,-1,0,1105,-4,0,0 +2013,7,20,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1145,-5,0,1255,-12,0,0 +2013,8,7,3,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1537,1,0,1718,-10,0,0 +2013,5,2,4,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1450,-5,0,1740,6,0,0 +2013,7,28,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1735,30,1,1855,48,1,0 +2013,4,12,5,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1640,10,0,1925,7,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1345,2,0,1450,6,0,0 +2013,9,18,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,759,-5,0,1044,-15,0,0 +2013,9,30,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1145,-6,0,1359,-15,0,0 +2013,5,4,6,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,0,0,715,-21,0,0 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,0,0,2101,6,0,0 +2013,9,20,5,9E,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,1550,-6,0,1818,-32,0,0 +2013,10,3,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-8,0,1817,6,0,0 +2013,5,10,5,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1807,30,1,2130,3,0,0 +2013,4,12,5,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,-9,0,1820,4,0,0 +2013,9,12,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1628,1,0,1855,3,0,0 +2013,9,20,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1445,-6,0,1550,-4,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1055,27,1,1855,1,0,0 +2013,10,27,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,37,1,2040,40,1,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,1,0,1830,-7,0,0 +2013,10,6,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,2004,10,0,2049,16,1,0 +2013,6,28,5,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1655,25,1,1835,19,1,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1200,-1,0,1532,-10,0,0 +2013,9,21,6,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1350,2,0,1615,-1,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,630,-4,0,730,-8,0,0 +2013,4,20,6,OO,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-4,0,856,4,0,0 +2013,9,18,3,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1635,-10,0,1756,-22,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,715,13,0,925,34,1,0 +2013,5,5,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,850,-3,0,950,-3,0,0 +2013,7,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1005,3,0,1214,-18,0,0 +2013,10,27,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1525,102,1,1645,112,1,0 +2013,10,10,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,8,0,1452,22,1,0 +2013,7,17,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-9,0,853,-19,0,0 +2013,10,31,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1130,-3,0,1140,-11,0,0 +2013,7,3,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1030,34,1,1352,40,1,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1630,39,1,1950,27,1,0 +2013,5,30,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,82,1,2215,92,1,0 +2013,7,6,6,B6,14524,Richmond International,Richmond,VA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1210,-4,0,1425,-7,0,0 +2013,7,23,2,DL,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1830,75,1,2010,96,1,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2110,2,0,2215,-7,0,0 +2013,8,15,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,705,-5,0,910,-4,0,0 +2013,4,1,1,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1310,-8,0,1500,-17,0,0 +2013,5,23,4,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,22,1,2021,42,1,0 +2013,6,27,4,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,806,-4,0,1015,-16,0,0 +2013,8,16,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,840,-4,0,1105,-13,0,0 +2013,6,4,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1755,-2,0,1855,-7,0,0 +2013,8,2,5,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1425,28,1,2025,47,1,0 +2013,8,24,6,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,0,0,1455,5,0,0 +2013,9,11,3,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,832,-5,0,1110,-15,0,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1822,119,1,2118,115,1,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,829,4,0,1113,13,0,0 +2013,4,23,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-3,0,1943,1,0,0 +2013,5,1,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-1,0,846,-8,0,0 +2013,8,17,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1328,-7,0,1931,-22,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2025,115,1,2135,113,1,0 +2013,8,22,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,845,-1,0,1100,16,1,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2050,101,1,2351,87,1,0 +2013,7,17,3,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,14,0,1555,-18,0,0 +2013,9,23,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-5,0,1944,-3,0,0 +2013,7,29,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2308,-5,0,2355,2,0,0 +2013,9,4,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1825,-7,0,1858,-28,0,0 +2013,9,10,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,66,1,928,77,1,0 +2013,4,20,6,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1620,17,1,1850,-5,0,0 +2013,7,17,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,0,0,755,-5,0,0 +2013,7,31,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2110,14,0,2243,2,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1429,0,0,1604,-16,0,0 +2013,7,14,7,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,930,-2,0,1114,-5,0,0 +2013,10,29,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1548,-5,0,1815,-18,0,0 +2013,10,3,4,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,804,-5,0,857,-15,0,0 +2013,5,25,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1550,-5,0,1655,-24,0,0 +2013,7,11,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,83,1,1329,77,1,0 +2013,10,8,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1815,0,0,1905,-1,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,-3,0,1034,2,0,0 +2013,7,17,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,515,-2,0,643,-19,0,0 +2013,7,22,1,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1655,14,0,1950,13,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1935,30,1,2045,11,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,655,-2,0,820,-6,0,0 +2013,8,27,2,WN,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,27,1,1910,15,1,0 +2013,7,23,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-5,0,701,-2,0,0 +2013,4,8,1,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1035,1,0,1408,2,0,0 +2013,5,27,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,10,0,2125,44,1,0 +2013,6,23,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,820,0,0,1005,3,0,0 +2013,8,18,7,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1136,-7,0,1338,-6,0,0 +2013,9,11,3,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1300,16,1,1419,7,0,0 +2013,4,15,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-7,0,1005,-10,0,0 +2013,4,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1310,20,1,1415,21,1,0 +2013,6,21,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2154,11,0,30,1,0,0 +2013,6,7,5,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1810,78,1,1955,78,1,0 +2013,8,26,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1840,-2,0,1940,-6,0,0 +2013,7,31,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1741,-6,0,1857,-23,0,0 +2013,5,23,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,857,2,0,1734,30,1,0 +2013,7,9,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1230,-2,0,1335,-11,0,0 +2013,10,18,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,28,1,915,27,1,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-4,0,924,-6,0,0 +2013,10,28,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1555,23,1,1725,11,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1325,-1,0,1745,-20,0,0 +2013,6,11,2,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,13,0,1630,14,0,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,1118,-5,0,1225,-12,0,0 +2013,9,6,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1910,-2,0,2000,0,0,0 +2013,8,13,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,845,-6,0,1124,1,0,0 +2013,9,9,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,-1,0,850,-3,0,0 +2013,4,13,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,600,-2,0,721,-8,0,0 +2013,4,1,1,9E,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1925,28,1,2141,20,1,0 +2013,4,25,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,500,-5,0,543,12,0,0 +2013,5,15,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,12,0,1645,8,0,0 +2013,4,3,3,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,630,0,0,725,-1,0,0 +2013,7,5,5,VX,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,800,-8,0,1610,-2,0,0 +2013,10,15,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1715,9,0,1750,-6,0,0 +2013,5,31,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1812,1,0,2017,-10,0,0 +2013,4,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1940,-3,0,2050,-12,0,0 +2013,5,9,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2040,-2,0,2200,-14,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,915,-6,0,1055,-15,0,0 +2013,4,19,5,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,-2,0,1013,-14,0,0 +2013,7,13,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-2,0,955,15,1,0 +2013,4,25,4,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2254,2,0,714,-18,0,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,5,0,2214,-12,0,0 +2013,10,10,4,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1805,-9,0,2055,-31,0,0 +2013,5,20,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1630,-1,0,1805,-19,0,0 +2013,5,31,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-4,0,828,5,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-7,0,926,1,0,0 +2013,5,16,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-7,0,1839,-2,0,0 +2013,4,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1300,-3,0,1609,4,0,0 +2013,5,17,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,630,0,0,825,5,0,0 +2013,8,18,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1910,-2,0,2015,-7,0,0 +2013,6,28,5,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2005,159,1,2149,125,1,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-5,0,1027,-2,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,1940,-6,0,28,-8,0,0 +2013,6,3,1,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,-6,0,1420,-17,0,0 +2013,10,2,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1955,0,0,2130,-15,0,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1155,-2,0,1310,2,0,0 +2013,8,7,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,1415,-2,0,1545,-16,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,6,0,1235,-1,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1035,36,1,1430,27,1,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,820,15,1,950,16,1,0 +2013,8,15,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1137,-5,0,1429,-15,0,0 +2013,9,26,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,17,1,1330,14,0,0 +2013,6,27,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1040,42,1,1919,57,1,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1545,7,0,1810,-10,0,0 +2013,9,16,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-2,0,1408,-6,0,0 +2013,9,14,6,EV,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-8,0,1130,-17,0,0 +2013,5,30,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2040,-2,0,2210,-11,0,0 +2013,4,24,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-4,0,1803,-3,0,0 +2013,7,30,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,0,0,901,-13,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1627,-1,0,1810,-17,0,0 +2013,4,23,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1010,-7,0,1445,-16,0,0 +2013,10,20,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,840,-6,0,1020,-1,0,0 +2013,9,9,1,WN,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,710,98,1,1010,103,1,0 +2013,9,19,4,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,0,0,955,6,0,0 +2013,6,30,7,FL,13342,General Mitchell International,Milwaukee,WI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,-4,0,1710,-2,0,0 +2013,8,25,7,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,843,-16,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1945,38,1,2155,34,1,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1550,1,0,1745,4,0,0 +2013,7,2,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,620,-3,0,715,-3,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1455,0,0,1655,-1,0,0 +2013,9,4,3,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1725,-4,0,1845,-15,0,0 +2013,4,27,6,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1917,-6,0,2105,-14,0,0 +2013,4,3,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1915,-4,0,2210,-17,0,0 +2013,5,11,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-2,0,1559,-3,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,-6,0,1911,-16,0,0 +2013,5,22,3,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-2,0,1533,-8,0,0 +2013,10,21,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1141,-5,0,1753,-8,0,0 +2013,6,23,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1831,4,0,2144,1,0,0 +2013,10,3,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1125,-3,0,1313,7,0,0 +2013,8,3,6,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1950,2,0,2100,-14,0,0 +2013,7,4,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,700,2,0,800,-5,0,0 +2013,7,31,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,-1,0,1930,-20,0,0 +2013,7,2,2,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,749,194,1,1023,171,1,0 +2013,7,22,1,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,750,-3,0,1058,6,0,0 +2013,4,14,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,2,0,1510,2,0,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1143,21,1,1625,27,1,0 +2013,8,5,1,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,-3,0,1510,2,0,0 +2013,6,23,7,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-7,0,1543,-13,0,0 +2013,7,8,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,2,0,1010,-11,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,102,1,1620,88,1,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,955,-5,0,1203,3,0,0 +2013,5,20,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1025,-1,0,1313,8,0,0 +2013,5,16,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1530,-10,0,1712,5,0,0 +2013,5,11,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,700,-7,0,840,-13,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1235,2,0,1415,-6,0,0 +2013,7,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,-10,0,1525,-7,0,0 +2013,4,26,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1515,16,1,1800,32,1,0 +2013,7,31,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1840,11,0,1936,10,0,0 +2013,9,19,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1435,0,0,1656,-14,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1930,42,1,2310,36,1,0 +2013,7,14,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1247,0,0,1515,-11,0,0 +2013,5,9,4,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1745,10,0,2250,2,0,0 +2013,7,20,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,800,-2,0,940,-5,0,0 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1510,1,0,1605,2,0,0 +2013,8,29,4,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-10,0,1609,-12,0,0 +2013,7,15,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1125,2,0,1449,2,0,0 +2013,4,10,3,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1515,14,0,1610,11,0,0 +2013,7,23,2,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,840,-2,0,1015,-7,0,0 +2013,6,26,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,276,1,1605,259,1,0 +2013,5,3,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,6,0,1100,11,0,0 +2013,6,30,7,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,2,0,1124,0,0,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2003,-7,0,2127,-14,0,0 +2013,6,22,6,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,-5,0,1758,-12,0,0 +2013,10,11,5,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-3,0,925,10,0,0 +2013,6,5,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1429,4,0,1531,-4,0,0 +2013,7,7,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,725,-2,0,911,-23,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,73,1,1445,66,1,0 +2013,7,6,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1545,4,0,1725,-8,0,0 +2013,8,29,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,-3,0,915,-2,0,0 +2013,5,31,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,630,-7,0,735,-21,0,0 +2013,7,8,1,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1535,0,0,1856,36,1,0 +2013,6,10,1,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-8,0,1733,-15,0,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2025,-2,0,2305,12,0,0 +2013,4,17,3,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1440,-5,0,2305,16,1,0 +2013,8,7,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-3,0,835,-10,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1630,87,1,2010,71,1,0 +2013,7,10,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,62,1,1330,49,1,0 +2013,10,4,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2120,1,0,2220,26,1,0 +2013,7,16,2,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,12,0,1532,35,1,0 +2013,10,1,2,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,23,1,2010,12,0,0 +2013,6,22,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,-2,0,1731,-2,0,0 +2013,7,3,3,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-5,0,918,-4,0,0 +2013,4,9,2,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1042,71,1,1214,79,1,0 +2013,5,4,6,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,1,0,1820,-3,0,0 +2013,10,11,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,854,-3,0,1014,-9,0,0 +2013,6,10,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,905,-2,0,1015,1,0,0 +2013,7,19,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2210,73,1,2330,71,1,0 +2013,4,22,1,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-2,0,908,-12,0,0 +2013,7,18,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-3,0,1410,6,0,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,-10,0,1923,-32,0,0 +2013,4,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1945,2,0,2120,-6,0,0 +2013,9,25,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1740,12,0,1845,1,0,0 +2013,7,28,7,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,8,0,2305,-7,0,0 +2013,7,31,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1350,-1,0,1735,-8,0,0 +2013,5,16,4,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,12,0,2308,-7,0,0 +2013,10,3,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,-5,0,1000,21,1,0 +2013,5,13,1,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1200,-5,0,1424,-21,0,0 +2013,5,22,3,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1240,27,1,1415,11,0,0 +2013,7,8,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1000,102,1,1125,109,1,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,0,0,2137,-10,0,0 +2013,5,4,6,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,814,-3,0,1158,-16,0,0 +2013,7,11,4,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1323,-6,0,1613,-19,0,0 +2013,5,20,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-4,0,1210,-2,0,0 +2013,5,28,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-9,0,1003,-15,0,0 +2013,6,3,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,650,2,0,820,4,0,0 +2013,8,29,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1615,-6,0,2007,-14,0,0 +2013,10,18,5,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1548,7,0,1815,6,0,0 +2013,9,17,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,1,0,805,-15,0,0 +2013,4,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,17,1,1324,13,0,0 +2013,7,24,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1015,3,0,1140,6,0,0 +2013,9,4,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,10,0,1800,13,0,0 +2013,7,4,4,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1904,4,0,2013,8,0,0 +2013,4,1,1,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-3,0,1003,40,1,0 +2013,8,29,4,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1105,2,0,1145,-10,0,0 +2013,5,21,2,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,555,0,0,847,9,0,0 +2013,9,9,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1420,3,0,1540,-5,0,0 +2013,4,7,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,1030,-5,0,1242,-7,0,0 +2013,10,19,6,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1419,-7,0,0 +2013,4,7,7,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,1120,-18,0,0 +2013,7,22,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1355,-2,0,1615,-5,0,0 +2013,8,14,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,2010,2,0,2120,0,0,0 +2013,5,19,7,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1905,111,1,2132,101,1,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-2,0,1323,-5,0,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,855,63,1,1036,54,1,0 +2013,10,7,1,OO,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1744,-2,0,1946,-13,0,0 +2013,9,4,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,11618,Newark Liberty International,Newark,NJ,1224,-10,0,1430,-7,0,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,820,-1,0,1110,14,0,0 +2013,8,17,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2330,0,0,619,-6,0,0 +2013,10,24,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1540,81,1,1655,74,1,0 +2013,10,22,2,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1640,-4,0,1834,-15,0,0 +2013,4,18,4,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1100,119,1,1413,125,1,0 +2013,4,21,7,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1129,-10,0,1410,-18,0,0 +2013,10,7,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,2340,-4,0,510,-14,0,0 +2013,7,11,4,DL,12892,Los Angeles International,Los Angeles,CA,13244,Memphis International,Memphis,TN,700,9,0,1249,5,0,0 +2013,9,24,2,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,-9,0,2103,-15,0,0 +2013,10,20,7,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,832,-10,0,1110,-5,0,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,845,16,1,923,13,0,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1815,-6,0,2259,-47,0,0 +2013,4,4,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,750,9,0,1130,14,0,0 +2013,4,10,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1750,15,1,1820,17,1,0 +2013,7,15,1,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1450,-8,0,1600,-7,0,0 +2013,7,13,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,70,1,1006,75,1,0 +2013,8,4,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1131,88,1,1238,82,1,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,805,2,0,1240,-5,0,0 +2013,10,16,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1632,-5,0,1845,-5,0,0 +2013,6,20,4,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,830,4,0,1104,3,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1001,-3,0,1300,-11,0,0 +2013,5,1,3,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1930,-6,0,2117,-38,0,0 +2013,9,4,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1055,1,0,1205,4,0,0 +2013,4,13,6,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1550,8,0,1555,11,0,0 +2013,10,29,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2020,-9,0,2140,-11,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1929,132,1,2126,199,1,0 +2013,10,14,1,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,935,46,1,1155,39,1,0 +2013,9,15,7,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,2010,0,0,2125,-2,0,0 +2013,8,17,6,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1300,-5,0,1515,-7,0,0 +2013,8,15,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-7,0,1210,-2,0,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2115,18,1,2213,18,1,0 +2013,10,30,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1720,1,0,1922,2,0,0 +2013,7,10,3,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,-1,0,1228,-2,0,0 +2013,4,9,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1630,-12,0,1911,-21,0,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1721,3,0,1958,13,0,0 +2013,6,14,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,18,1,1025,-9,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1837,36,1,2140,21,1,0 +2013,5,23,4,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2234,-3,0,650,-27,0,0 +2013,10,31,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1730,82,1,1912,78,1,0 +2013,5,22,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,2020,6,0,2332,-7,0,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,0,0,1330,-15,0,0 +2013,6,30,7,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,805,-4,0,1305,3,0,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1714,5,0,2339,-20,0,0 +2013,8,4,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,-4,0,1505,-11,0,0 +2013,8,18,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1722,-3,0,1808,-6,0,0 +2013,8,13,2,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2300,-5,0,12,-21,0,0 +2013,10,16,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1940,56,1,2125,51,1,0 +2013,6,6,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1720,0,0,1825,-4,0,0 +2013,4,26,5,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-5,0,825,-10,0,0 +2013,8,24,6,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-11,0,1150,-15,0,0 +2013,7,22,1,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,855,1,0,1018,1,0,0 +2013,6,23,7,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,1750,-4,0,2145,-20,0,0 +2013,6,24,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,2035,-5,0,2130,54,1,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,720,-1,0,925,-1,0,0 +2013,9,29,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2010,7,0,2145,1,0,0 +2013,5,9,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,86,1,1205,80,1,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2045,40,1,2310,18,1,0 +2013,7,29,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,645,0,0,805,-7,0,0 +2013,6,23,7,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1810,-6,0,2021,3,0,0 +2013,4,11,4,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,700,5,0,1011,28,1,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2005,-4,0,2250,-21,0,0 +2013,10,10,4,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-3,0,1120,0,0,0 +2013,6,2,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1635,0,0,1845,11,0,0 +2013,9,8,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1300,-5,0,1419,-10,0,0 +2013,7,11,4,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2255,188,1,735,205,1,0 +2013,7,25,4,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,9,0,1020,11,0,0 +2013,9,8,7,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-6,0,1313,-12,0,0 +2013,6,11,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,-4,0,1338,-8,0,0 +2013,5,26,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-5,0,1809,-12,0,0 +2013,8,20,2,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,-2,0,1230,6,0,0 +2013,6,13,4,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,2335,93,1,641,92,1,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1650,64,1,1847,54,1,0 +2013,4,23,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,650,0,0,804,1,0,0 +2013,9,5,4,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1210,-5,0,1325,-13,0,0 +2013,4,14,7,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1821,-4,0,2025,26,1,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,-1,0,905,-10,0,0 +2013,5,31,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1010,-4,0,1145,-14,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2252,-2,0,2314,-10,0,0 +2013,4,18,4,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,2055,13,0,16,8,0,0 +2013,7,26,5,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-5,0,1213,-6,0,0 +2013,4,15,1,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,545,-5,0,901,-17,0,0 +2013,4,22,1,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1415,32,1,1545,33,1,0 +2013,4,9,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1935,-1,0,2050,-7,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,615,-6,0,1010,-11,0,0 +2013,7,2,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1505,9,0,1615,6,0,0 +2013,5,4,6,B6,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1700,90,1,1911,66,1,0 +2013,5,15,3,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-3,0,1116,-6,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1945,7,0,2159,2,0,0 +2013,7,19,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,43,1,2130,34,1,0 +2013,9,28,6,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,-2,0,2145,8,0,0 +2013,10,25,5,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,2000,-1,0,2140,-14,0,0 +2013,10,25,5,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1235,92,1,1400,86,1,0 +2013,5,17,5,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-2,0,803,1,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13830,Kahului Airport,Kahului,HI,1230,183,1,1525,190,1,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,2140,-4,0,144,-3,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-6,0,27,-3,0,0 +2013,9,3,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,1,0,1515,3,0,0 +2013,8,20,2,9E,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1242,-3,0,1434,10,0,0 +2013,7,23,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,22,1,29,17,1,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,830,5,0,1120,-12,0,0 +2013,9,16,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1135,0,0,1330,-2,0,0 +2013,4,30,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-2,0,1605,-13,0,0 +2013,4,28,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2015,0,0,2145,0,0,0 +2013,6,10,1,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1749,26,1,2055,16,1,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,850,-2,0,1037,-14,0,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2130,7,0,20,12,0,0 +2013,6,15,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1236,2,0,1543,31,1,0 +2013,5,11,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-5,0,2149,-1,0,0 +2013,8,9,5,DL,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1846,-4,0,2357,-12,0,0 +2013,10,2,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,5,0,1550,-5,0,0 +2013,8,18,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1801,2,0,2026,-7,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1805,-5,0,2052,-20,0,0 +2013,5,5,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,2003,7,0,2144,-8,0,0 +2013,5,29,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,13930,Chicago O'Hare International,Chicago,IL,1232,-4,0,1615,-15,0,0 +2013,8,6,2,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2059,-7,0,2322,-19,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1251,5,0,1425,3,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1041,70,1,1652,64,1,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,0,0,1906,-7,0,0 +2013,9,20,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-4,0,1203,-4,0,0 +2013,6,24,1,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1950,-3,0,2325,-9,0,0 +2013,9,2,1,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,2025,-6,0,2321,32,1,0 +2013,6,16,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1925,7,0,1959,11,0,0 +2013,5,20,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1155,6,0,1233,4,0,0 +2013,7,28,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1557,-1,0,1701,20,1,0 +2013,6,29,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,855,-2,0,1005,-12,0,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,4,0,1510,2,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1405,21,1,1615,29,1,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,-2,0,1555,-5,0,0 +2013,7,29,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1745,0,0,1850,23,1,0 +2013,8,26,1,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-6,0,1730,-25,0,0 +2013,10,21,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1335,-3,0,1500,-14,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1640,11,0,15,-5,0,0 +2013,8,15,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1335,-3,0,1440,-12,0,0 +2013,5,5,7,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,828,-5,0,1100,-3,0,0 +2013,7,24,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-9,0,1140,-15,0,0 +2013,7,24,3,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,1402,-21,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,835,-7,0,1027,-14,0,0 +2013,5,6,1,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1440,3,0,2220,-12,0,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1253,0,0,1702,-12,0,0 +2013,5,6,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1810,25,1,2015,16,1,0 +2013,7,2,2,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,1,0,1525,10,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1909,14,0,2345,17,1,0 +2013,10,22,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-6,0,1923,-7,0,0 +2013,7,23,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1825,61,1,2005,54,1,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1535,26,1,2015,3,0,0 +2013,7,17,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1210,0,0,1329,-11,0,0 +2013,4,10,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-4,0,1235,-19,0,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1905,81,1,2200,70,1,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,8,0,2220,-2,0,0 +2013,10,9,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1152,59,1,2023,58,1,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1830,-4,0,2115,-6,0,0 +2013,10,9,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-4,0,1829,-12,0,0 +2013,4,2,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,910,47,1,1120,46,1,0 +2013,4,13,6,AA,13930,Chicago O'Hare International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1710,-3,0,1925,-1,0,0 +2013,8,26,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1951,-2,0,2316,-18,0,0 +2013,10,6,7,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,7,0,930,10,0,0 +2013,10,7,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1100,-3,0,1210,-14,0,0 +2013,8,26,1,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,830,-2,0,1635,1,0,0 +2013,6,1,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1959,8,0,2340,-47,0,0 +2013,8,25,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,2146,21,1,2333,13,0,0 +2013,8,1,4,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2115,102,1,131,84,1,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1740,3,0,2050,1,0,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,1005,2,0,1438,19,1,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2056,-3,0,2209,-19,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1125,1,0,1330,6,0,0 +2013,5,23,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,2,0,1540,-7,0,0 +2013,4,30,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1300,2,0,1559,19,1,0 +2013,9,2,1,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,0,0,1805,-3,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,945,6,0,1125,-3,0,0 +2013,7,7,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,3,0,1825,-14,0,0 +2013,4,21,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,2,0,1410,3,0,0 +2013,4,1,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1042,16,1,1358,6,0,0 +2013,10,1,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,-2,0,945,-11,0,0 +2013,7,21,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-15,0,1055,-19,0,0 +2013,7,30,2,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-4,0,1630,-9,0,0 +2013,8,17,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1500,-1,0,1923,-17,0,0 +2013,8,31,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1708,-1,0,1958,-9,0,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2130,-5,0,2247,-10,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,3,0,950,-11,0,0 +2013,4,8,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-2,0,1730,-4,0,0 +2013,8,19,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,821,-5,0,917,5,0,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1245,-5,0,1410,-13,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1740,42,1,1905,44,1,0 +2013,9,19,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,802,102,1,1405,73,1,0 +2013,8,15,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,-2,0,1354,-4,0,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2155,-3,0,2310,2,0,0 +2013,10,5,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-6,0,1356,-18,0,0 +2013,7,22,1,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1830,58,1,2015,58,1,0 +2013,10,18,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1649,-5,0,1822,-9,0,0 +2013,7,8,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1645,24,1,1800,14,0,0 +2013,10,4,5,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,700,-4,0,910,-16,0,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-8,0,2210,-18,0,0 +2013,10,13,7,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,835,-5,0,1641,-26,0,0 +2013,5,17,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,-1,0,1840,-14,0,0 +2013,8,8,4,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1617,-5,0,1923,8,0,0 +2013,10,3,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,1935,76,1,2108,78,1,0 +2013,7,28,7,FL,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1120,-4,0,1502,-18,0,0 +2013,5,11,6,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2013,36,1,2149,25,1,0 +2013,4,8,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,12478,John F. Kennedy International,New York,NY,1045,-7,0,1413,-25,0,0 +2013,9,5,4,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-3,0,1435,-6,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,18,1,1804,18,1,0 +2013,6,9,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2055,-1,0,2231,-21,0,0 +2013,10,25,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1520,-4,0,1630,-11,0,0 +2013,5,9,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,745,-5,0,900,-3,0,0 +2013,5,18,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-1,0,1828,-5,0,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,58,1,1030,69,1,0 +2013,4,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,84,1,1405,101,1,0 +2013,6,12,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,8,0,1630,6,0,0 +2013,5,6,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1005,53,1,1241,47,1,0 +2013,9,22,7,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1115,-7,0,1420,-25,0,0 +2013,7,25,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,745,-1,0,910,18,1,0 +2013,8,4,7,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,6,0,1425,12,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2045,83,1,2205,79,1,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,-4,0,1833,2,0,0 +2013,10,26,6,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,-8,0,1000,-21,0,0 +2013,9,22,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,813,-1,0,1104,-14,0,0 +2013,9,4,3,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,1424,-1,0,2000,-6,0,0 +2013,8,14,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1254,-4,0,1437,-6,0,0 +2013,9,4,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2025,-3,0,2300,-14,0,0 +2013,10,2,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,915,0,0,1025,2,0,0 +2013,8,18,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1055,-3,0,1220,-15,0,0 +2013,7,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1400,58,1,1450,45,1,0 +2013,7,29,1,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,740,1,0,835,5,0,0 +2013,5,14,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1946,-7,0,2120,-27,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2145,2,0,2335,6,0,0 +2013,4,10,3,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1405,-6,0,1535,4,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1940,42,1,2240,36,1,0 +2013,10,17,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,-7,0,1622,-6,0,0 +2013,9,11,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,125,1,2045,98,1,0 +2013,5,8,3,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,16,1,1600,28,1,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1805,32,1,1910,25,1,0 +2013,9,26,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1727,-3,0,2055,-9,0,0 +2013,5,27,1,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1510,-5,0,1710,-21,0,0 +2013,10,10,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,13,0,1505,12,0,0 +2013,5,27,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1840,127,1,2045,133,1,0 +2013,6,27,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,940,-4,0,1045,-7,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1725,0,0,1850,-5,0,0 +2013,7,27,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-3,0,2340,-3,0,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,-2,0,917,2,0,0 +2013,9,3,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-3,0,1352,-6,0,0 +2013,5,29,3,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,915,-1,0,1005,-9,0,0 +2013,8,28,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,725,0,0,730,-7,0,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2200,-4,0,2359,5,0,0 +2013,7,18,4,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1729,-1,0,1935,3,0,0 +2013,10,24,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,9,0,1555,7,0,0 +2013,10,3,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1520,-5,0,1630,-23,0,0 +2013,9,15,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14683,San Antonio International,San Antonio,TX,905,-6,0,1115,-13,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1042,-3,0,1358,-21,0,0 +2013,4,18,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2010,-5,0,2235,-21,0,0 +2013,8,4,7,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,-1,0,14,7,0,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1800,2,0,2005,8,0,0 +2013,5,22,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,-2,0,945,11,0,0 +2013,10,19,6,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-12,0,1115,-18,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1510,-1,0,1633,-14,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,800,3,0,1235,0,0,0 +2013,9,27,5,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,800,2,0,1630,-6,0,0 +2013,5,16,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,745,17,1,905,16,1,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1830,-7,0,2158,-26,0,0 +2013,6,10,1,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,640,-2,0,808,4,0,0 +2013,5,30,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1520,21,1,1615,12,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1310,20,1,1605,26,1,0 +2013,4,13,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1315,-6,0,1435,-6,0,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,720,0,0,1240,-14,0,0 +2013,6,20,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,755,-4,0,920,-7,0,0 +2013,10,9,3,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-2,0,930,-8,0,0 +2013,5,19,7,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,725,-6,0,935,-21,0,0 +2013,10,5,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,2,0,1517,0,0,0 +2013,8,25,7,VX,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,950,-5,0,1220,-30,0,0 +2013,4,16,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-2,0,825,-2,0,0 +2013,4,18,4,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,22,1,2115,33,1,0 +2013,4,18,4,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,700,-7,0,959,-12,0,0 +2013,10,17,4,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,700,-9,0,805,-6,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1500,12,0,1610,-2,0,0 +2013,8,26,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1830,-4,0,1921,-5,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1558,-3,0,2110,-11,0,0 +2013,4,7,7,AS,14057,Portland International,Portland,OR,13830,Kahului Airport,Kahului,HI,1720,-5,0,2018,-17,0,0 +2013,6,4,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-7,0,1838,-7,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,857,0,0,1038,2,0,0 +2013,9,6,5,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,2129,37,1,2239,23,1,0 +2013,7,10,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2056,-5,0,512,-24,0,0 +2013,10,5,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1309,-5,0,1446,-12,0,0 +2013,7,30,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1625,-1,0,1843,16,1,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1910,0,0,2245,-12,0,0 +2013,9,8,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,6,0,2135,3,0,0 +2013,6,26,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-1,0,1748,1,0,0 +2013,10,11,5,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1855,-7,0,1945,-11,0,0 +2013,10,11,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,1,0,2058,10,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-4,0,1928,-33,0,0 +2013,6,16,7,9E,12953,LaGuardia,New York,NY,13931,Norfolk International,Norfolk,VA,1105,-4,0,1238,4,0,0 +2013,7,26,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1540,31,1,1645,27,1,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,1,0,801,-7,0,0 +2013,7,15,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1945,85,1,2110,75,1,0 +2013,9,13,5,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1844,27,1,2007,18,1,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,915,17,1,1030,22,1,0 +2013,10,1,2,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1154,-1,0,2025,-29,0,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1725,0,0,1830,3,0,0 +2013,10,11,5,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,805,-9,0,1100,-5,0,0 +2013,7,20,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-6,0,701,-6,0,0 +2013,5,11,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,6,0,1430,-5,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1630,27,1,1855,4,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,850,22,1,1038,16,1,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,906,2,0,1035,7,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1635,46,1,1735,45,1,0 +2013,4,22,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1905,9,0,2000,2,0,0 +2013,4,5,5,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1550,1,0,1900,-5,0,0 +2013,10,20,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,800,0,0,905,0,0,0 +2013,4,14,7,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,945,-1,0,1055,-8,0,0 +2013,9,18,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-8,0,1400,-13,0,0 +2013,4,28,7,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,13,0,1745,4,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,735,1,0,1155,8,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1945,6,0,2335,-4,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1025,3,0,1325,8,0,0 +2013,9,21,6,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1710,68,1,1850,57,1,0 +2013,8,8,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,600,-3,0,700,-6,0,0 +2013,9,26,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,-1,0,940,0,0,0 +2013,9,12,4,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,1,0,1810,92,1,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,-3,0,2036,-8,0,0 +2013,8,23,5,EV,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1354,-8,0,1708,-29,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1715,10,0,1845,6,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2040,7,0,2220,3,0,0 +2013,4,23,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,-6,0,816,12,0,0 +2013,8,18,7,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1220,1,0,1320,-4,0,0 +2013,4,12,5,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-10,0,2051,-15,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1455,-6,0,1616,6,0,0 +2013,10,13,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,-10,0,806,-10,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1030,67,1,1235,60,1,0 +2013,7,3,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1557,62,1,1800,68,1,0 +2013,6,19,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,23,1,1205,3,0,0 +2013,8,31,6,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,829,-3,0,1007,11,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1610,-2,0,1808,-1,0,0 +2013,6,26,3,US,11278,Ronald Reagan Washington National,Washington,DC,12889,McCarran International,Las Vegas,NV,2045,4,0,2245,1,0,0 +2013,4,13,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,655,-5,0,0 +2013,10,28,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,655,1,0,1018,-1,0,0 +2013,5,30,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1350,-5,0,1759,-4,0,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1415,0,0,1534,8,0,0 +2013,7,26,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,345,1,2105,326,1,0 +2013,10,31,4,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,710,-3,0,825,-13,0,0 +2013,4,24,3,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-2,0,37,2,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,700,-1,0,845,14,0,0 +2013,6,22,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1746,-10,0,2100,-40,0,0 +2013,7,12,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-6,0,1657,-13,0,0 +2013,9,29,7,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,845,-7,0,956,-21,0,0 +2013,9,22,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1220,1,0,1325,-8,0,0 +2013,7,7,7,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1246,-6,0,1655,14,0,0 +2013,5,18,6,UA,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1850,-4,0,2036,-24,0,0 +2013,6,12,3,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,945,-6,0,1224,-5,0,0 +2013,8,26,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,640,-10,0,800,-15,0,0 +2013,6,30,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,2,0,1656,30,1,0 +2013,5,27,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2135,-6,0,600,-6,0,0 +2013,4,21,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,-8,0,1859,-19,0,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1923,-4,0,2245,-8,0,0 +2013,9,22,7,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1137,-3,0,1342,-11,0,0 +2013,4,21,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1302,-5,0,1529,-16,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2250,3,0,15,-5,0,0 +2013,4,18,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,625,4,0,1101,40,1,0 +2013,4,2,2,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1123,-4,0,1437,-14,0,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2000,3,0,2134,-3,0,0 +2013,10,25,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1520,35,1,1900,46,1,0 +2013,8,2,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-4,0,1116,-14,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,372,1,1636,360,1,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,2,0,2030,-10,0,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1000,-4,0,1140,-18,0,0 +2013,7,5,5,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-1,0,935,0,0,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,1610,10,0,2315,6,0,0 +2013,7,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,0,0,2345,6,0,0 +2013,6,9,7,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1255,3,0,1550,-10,0,0 +2013,9,26,4,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,1,0,1235,0,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1105,16,1,1235,8,0,0 +2013,6,13,4,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1910,3,0,2138,-18,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1415,9,0,1605,18,1,0 +2013,6,17,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,705,-4,0,745,-1,0,0 +2013,6,10,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1705,7,0,1835,-1,0,0 +2013,5,28,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,219,1,1922,209,1,0 +2013,9,30,1,AS,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,21,1,1604,-10,0,0 +2013,10,16,3,9E,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1445,3,0,1755,3,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,2145,39,1,5,27,1,0 +2013,10,2,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1715,8,0,2009,2,0,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,935,14,0,1055,3,0,0 +2013,5,11,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,5,0,1824,29,1,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,700,-7,0,1002,-9,0,0 +2013,6,27,4,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1440,11,0,1825,-8,0,0 +2013,5,1,3,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,712,185,1,933,187,1,0 +2013,5,9,4,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2145,8,0,2335,-8,0,0 +2013,6,2,7,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,-2,0,1250,-22,0,0 +2013,9,20,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,2,0,1746,-4,0,0 +2013,4,3,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1740,-4,0,2139,-20,0,0 +2013,4,19,5,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1645,58,1,1925,73,1,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,2021,65,1,2305,49,1,0 +2013,4,2,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,21,1,1535,10,0,0 +2013,7,31,3,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,625,-5,0,740,-9,0,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2015,106,1,2107,95,1,0 +2013,10,7,1,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1055,-7,0,1350,-20,0,0 +2013,7,11,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-2,0,1400,-9,0,0 +2013,8,29,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1809,80,1,1949,65,1,0 +2013,5,30,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,-5,0,1230,-6,0,0 +2013,10,9,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1641,1,0,1809,-16,0,0 +2013,4,23,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-3,0,1151,-9,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-6,0,2234,-12,0,0 +2013,6,18,2,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1730,-7,0,1945,2,0,0 +2013,7,31,3,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1115,4,0,1302,-3,0,0 +2013,5,23,4,OO,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1507,-8,0,1638,-4,0,0 +2013,6,23,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,24,1,1439,10,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2235,2,0,630,-12,0,0 +2013,5,30,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,2002,66,1,2155,31,1,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-6,0,2135,-10,0,0 +2013,9,22,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-9,0,1315,-15,0,0 +2013,8,23,5,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,754,4,0,931,0,0,0 +2013,9,30,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1500,-5,0,1631,-35,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,1,0,1710,-10,0,0 +2013,4,18,4,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1645,-8,0,2004,-21,0,0 +2013,5,29,3,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1318,17,1,2101,72,1,0 +2013,9,20,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,910,21,1,1220,6,0,0 +2013,6,18,2,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,3,0,1655,-13,0,0 +2013,9,23,1,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,23,1,2055,16,1,0 +2013,6,5,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1936,7,0,2057,5,0,0 +2013,4,25,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2040,2,0,2140,-3,0,0 +2013,9,14,6,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,950,-1,0,1100,-12,0,0 +2013,10,31,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1005,-2,0,1123,-20,0,0 +2013,5,14,2,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,625,18,1,1443,-1,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,44,1,2025,62,1,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1520,1,0,1610,30,1,0 +2013,4,27,6,B6,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,-11,0,1939,-30,0,0 +2013,9,9,1,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-5,0,1210,-7,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,940,-6,0,1620,-35,0,0 +2013,6,23,7,YV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1621,-1,0,1815,-14,0,0 +2013,10,12,6,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1520,9,0,1625,4,0,0 +2013,8,13,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,700,4,0,820,-4,0,0 +2013,7,9,2,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1240,-11,0,1455,-12,0,0 +2013,10,2,3,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,-10,0,905,-21,0,0 +2013,6,12,3,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2210,33,1,2300,28,1,0 +2013,8,3,6,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,700,5,0,815,-3,0,0 +2013,8,1,4,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1835,37,1,2010,44,1,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1754,-1,0,1907,10,0,0 +2013,10,30,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,956,-11,0,1123,-13,0,0 +2013,7,18,4,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1030,70,1,1315,75,1,0 +2013,4,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1350,93,1,1711,97,1,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1842,5,0,2209,-3,0,0 +2013,4,19,5,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,22,1,1218,16,1,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1105,1,0,1330,-2,0,0 +2013,5,11,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2025,10,0,2130,14,0,0 +2013,5,8,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1240,61,1,1410,55,1,0 +2013,10,1,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1339,-4,0,1524,-1,0,0 +2013,5,10,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,744,6,0,1105,-23,0,0 +2013,8,1,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-3,0,1007,0,0,0 +2013,8,8,4,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-3,0,1317,2,0,0 +2013,8,19,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,62,1,2110,51,1,0 +2013,5,27,1,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1625,-4,0,45,-3,0,0 +2013,10,4,5,AA,14570,Reno/Tahoe International,Reno,NV,13930,Chicago O'Hare International,Chicago,IL,800,-5,0,1355,-15,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1448,-1,0,1612,-6,0,0 +2013,5,2,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2003,-4,0,2333,-7,0,0 +2013,6,17,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,2001,5,0,2202,23,1,0 +2013,4,19,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,-2,0,1254,-6,0,0 +2013,5,29,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1823,0,0,2123,-15,0,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,-1,0,1850,-7,0,0 +2013,6,20,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1011,-5,0,1248,-7,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1407,18,1,1614,3,0,0 +2013,7,29,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1410,4,0,1510,4,0,0 +2013,6,6,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-1,0,2159,-12,0,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2005,-5,0,2313,-19,0,0 +2013,4,6,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-2,0,1025,8,0,0 +2013,5,12,7,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-1,0,1435,16,1,0 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,-4,0,2222,-10,0,0 +2013,8,28,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1516,-8,0,1609,-4,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,149,1,1940,140,1,0 +2013,6,2,7,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1739,34,1,2100,27,1,0 +2013,8,12,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1830,-3,0,2040,-8,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1800,-8,0,2101,32,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1350,10,0,1443,-6,0,0 +2013,8,30,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,910,-1,0,1130,-18,0,0 +2013,10,2,3,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1447,-5,0,1559,-16,0,0 +2013,10,14,1,WN,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,154,1,1350,152,1,0 +2013,4,3,3,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1922,-5,0,2220,-7,0,0 +2013,5,5,7,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,805,-4,0,1117,-15,0,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-4,0,920,-9,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1547,2,0,1738,-6,0,0 +2013,4,25,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2158,16,1,2233,0,0,0 +2013,9,10,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,1,0,1320,-3,0,0 +2013,5,30,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,121,1,1638,179,1,0 +2013,6,10,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1240,18,1,1355,2,0,0 +2013,8,12,1,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,251,1,930,240,1,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2210,153,1,2315,147,1,0 +2013,5,15,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,1,0,722,-8,0,0 +2013,6,4,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,2105,-5,0,2305,-15,0,0 +2013,7,17,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1655,-1,0,1825,-6,0,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,-1,0,720,-2,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1935,5,0,2035,2,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1946,20,1,2038,18,1,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1835,1,0,2305,-20,0,0 +2013,5,30,4,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1400,15,1,2235,11,0,0 +2013,5,1,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,-3,0,1640,-5,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1419,8,0,1652,-1,0,0 +2013,10,31,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-5,0,1025,-8,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1020,22,1,1212,3,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1010,-3,0,1245,-13,0,0 +2013,8,11,7,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1910,4,0,2145,-3,0,0 +2013,10,11,5,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,835,5,0,1015,-8,0,0 +2013,7,7,7,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1752,0,0,2100,7,0,0 +2013,10,13,7,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,935,0,0,1115,-12,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,855,0,0,1656,7,0,0 +2013,10,29,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1935,49,1,2105,35,1,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,855,2,0,1021,3,0,0 +2013,5,13,1,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1912,6,0,2229,25,1,0 +2013,4,3,3,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1849,-5,0,2014,8,0,0 +2013,8,14,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1505,68,1,1835,63,1,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,710,-4,0,1022,-15,0,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,4,0,1700,5,0,0 +2013,7,30,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1735,-1,0,1900,-8,0,0 +2013,8,18,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1150,0,0,1800,-11,0,0 +2013,8,21,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,-9,0,2250,0,0,0 +2013,10,30,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,905,-5,0,1219,-6,0,0 +2013,7,3,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2010,-3,0,2103,-12,0,0 +2013,6,16,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-4,0,901,2,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,805,-6,0,1105,-6,0,0 +2013,5,17,5,9E,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1012,-3,0,1313,-7,0,0 +2013,5,5,7,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-3,0,958,4,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1930,0,0,2210,-7,0,0 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-1,0,1255,-11,0,0 +2013,6,16,7,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1430,-1,0,1718,-14,0,0 +2013,4,2,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-1,0,1012,-10,0,0 +2013,9,22,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-6,0,1125,-7,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2058,62,1,2252,47,1,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1625,-1,0,1638,-13,0,0 +2013,9,27,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1200,-2,0,1309,-14,0,0 +2013,9,4,3,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,759,-1,0,1056,-14,0,0 +2013,9,16,1,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1855,-1,0,2200,1,0,0 +2013,10,15,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1128,-1,0,1316,-6,0,0 +2013,8,28,3,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1238,0,,1828,0,1,1 +2013,7,19,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1100,-2,0,1315,9,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,2039,49,1,2259,60,1,0 +2013,5,10,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,6,0,745,8,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,905,-4,0,1337,-19,0,0 +2013,4,18,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,605,-6,0,738,-2,0,0 +2013,7,7,7,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,2155,73,1,2329,49,1,0 +2013,6,14,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,10,0,810,2,0,0 +2013,5,17,5,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1811,1,0,1931,7,0,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1005,-9,0,1245,-16,0,0 +2013,8,20,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11618,Newark Liberty International,Newark,NJ,1005,-7,0,1631,-20,0,0 +2013,8,18,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,630,1,0,930,11,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1505,-2,0,1518,-9,0,0 +2013,5,25,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1615,32,1,1825,18,1,0 +2013,9,25,3,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,-9,0,1531,-13,0,0 +2013,5,7,2,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,41,1,959,-2,0,0 +2013,4,30,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,0,0,1315,-12,0,0 +2013,9,24,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1323,-5,0,1831,-19,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1640,6,0,1900,0,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,0,0,1810,-13,0,0 +2013,5,12,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,-5,0,1214,-12,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1650,21,1,2035,30,1,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1600,-1,0,1731,-1,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,825,-3,0,838,-18,0,0 +2013,7,31,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,-1,0,1200,-9,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1340,4,0,1510,6,0,0 +2013,8,14,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1735,11,0,1845,-4,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,7,0,2100,-2,0,0 +2013,8,26,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,745,0,0,1055,-2,0,0 +2013,10,16,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,-2,0,923,7,0,0 +2013,5,5,7,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,10,0,855,18,1,0 +2013,6,20,4,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,-2,0,1230,-12,0,0 +2013,9,8,7,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,-2,0,1645,-13,0,0 +2013,5,21,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1900,20,1,2050,26,1,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,-2,0,1830,-10,0,0 +2013,10,13,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,3,0,1510,-5,0,0 +2013,9,24,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-1,0,1642,-2,0,0 +2013,9,30,1,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1500,-4,0,1710,-15,0,0 +2013,6,24,1,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1900,170,1,2147,156,1,0 +2013,10,11,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,640,-1,0,1005,3,0,0 +2013,6,29,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,25,1,2113,18,1,0 +2013,5,19,7,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1730,0,,1930,0,1,1 +2013,10,9,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1656,-5,0,1752,-22,0,0 +2013,4,24,3,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,830,-6,0,1019,-11,0,0 +2013,9,30,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-3,0,1340,5,0,0 +2013,10,26,6,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,1920,-1,0,2140,-8,0,0 +2013,7,14,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1732,4,0,1854,-3,0,0 +2013,8,22,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,645,75,1,855,77,1,0 +2013,5,10,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,12,0,2249,5,0,0 +2013,6,2,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-3,0,1556,-11,0,0 +2013,5,27,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1330,-6,0,1428,-15,0,0 +2013,4,3,3,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,956,-3,0,1042,4,0,0 +2013,8,1,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1130,11,0,1305,30,1,0 +2013,6,14,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1105,5,0,1110,16,1,0 +2013,5,13,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2345,-1,0,545,-11,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1410,-3,0,1625,-6,0,0 +2013,8,30,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1820,26,1,2114,134,1,0 +2013,9,8,7,9E,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,9,0,1505,9,0,0 +2013,9,24,2,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2202,7,0,604,2,0,0 +2013,7,2,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,1821,29,1,2055,27,1,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1230,46,1,1651,44,1,0 +2013,4,23,2,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,616,-6,0,1000,-3,0,0 +2013,8,26,1,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,-2,0,1846,-33,0,0 +2013,6,5,3,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-9,0,828,-4,0,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1720,10,0,1905,7,0,0 +2013,8,1,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2325,37,1,525,26,1,0 +2013,9,21,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,750,-3,0,1020,25,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-6,0,851,-2,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1922,1,0,2037,-18,0,0 +2013,9,1,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,930,-4,0,1225,0,0,0 +2013,6,30,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,6,0,805,3,0,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1051,-7,0,1157,-24,0,0 +2013,7,16,2,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1929,52,1,2233,41,1,0 +2013,7,13,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-1,0,736,-2,0,0 +2013,7,3,3,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1300,2,0,1345,4,0,0 +2013,9,30,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,-4,0,1525,16,1,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,13851,Will Rogers World,Oklahoma City,OK,1015,2,0,1440,4,0,0 +2013,8,10,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,650,-7,0,840,-12,0,0 +2013,4,2,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,515,2,0,805,-2,0,0 +2013,7,4,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1055,-2,0,1455,-17,0,0 +2013,7,18,4,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1705,-2,0,1842,0,0,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1010,30,1,1220,18,1,0 +2013,5,15,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,930,14,0,1103,-17,0,0 +2013,4,9,2,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1020,-6,0,1325,-33,0,0 +2013,9,4,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1210,-3,0,1328,-7,0,0 +2013,6,26,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-9,0,1220,-23,0,0 +2013,6,10,1,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1820,-6,0,1915,102,1,0 +2013,4,28,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1120,1,0,1210,-6,0,0 +2013,4,1,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1835,-3,0,2025,0,0,0 +2013,7,21,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,-9,0,1658,-7,0,0 +2013,6,13,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,35,-4,0,451,-17,0,0 +2013,4,17,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-4,0,1828,-3,0,0 +2013,6,11,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,2150,-12,0,2305,-7,0,0 +2013,7,22,1,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,17,1,2145,91,1,0 +2013,8,25,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-2,0,2030,9,0,0 +2013,5,27,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-9,0,1329,-4,0,0 +2013,9,8,7,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,7,0,2110,3,0,0 +2013,7,25,4,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2212,23,1,2350,4,0,0 +2013,5,11,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1417,15,1,1525,15,1,0 +2013,9,23,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,852,-7,0,1125,-4,0,0 +2013,6,26,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1629,-2,0,1955,1,0,0 +2013,9,17,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1220,-3,0,1245,-7,0,0 +2013,7,3,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,726,30,1,944,39,1,0 +2013,10,28,1,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,555,-5,0,655,-12,0,0 +2013,8,19,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-1,0,712,1,0,0 +2013,4,14,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,600,-2,0,836,-17,0,0 +2013,9,23,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1125,-8,0,1227,-6,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1925,4,0,2250,8,0,0 +2013,7,11,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,68,1,1550,48,1,0 +2013,5,15,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,751,7,0,1304,-1,0,0 +2013,7,16,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,8,0,1839,7,0,0 +2013,5,19,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,914,-5,0,1012,-23,0,0 +2013,7,8,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,645,-4,0,813,-8,0,0 +2013,7,25,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1210,-2,0,1355,-5,0,0 +2013,9,19,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2050,-14,0,2237,0,0,0 +2013,7,28,7,DL,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,1935,69,1,2319,60,1,0 +2013,9,9,1,9E,12451,Jacksonville International,Jacksonville,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1432,59,1,1635,41,1,0 +2013,10,25,5,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1815,-1,0,2130,-2,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,3,0,1103,-8,0,0 +2013,6,11,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1729,7,0,0 +2013,10,14,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1754,11,0,2100,21,1,0 +2013,4,25,4,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1800,4,0,2343,-6,0,0 +2013,4,24,3,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1936,67,1,2058,58,1,0 +2013,10,21,1,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1007,-4,0,1441,-9,0,0 +2013,8,5,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1334,90,1,1439,80,1,0 +2013,7,28,7,OO,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1318,-2,0,1618,-25,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1901,44,1,2133,39,1,0 +2013,5,10,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1304,93,1,1437,94,1,0 +2013,7,12,5,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,933,42,1,1332,27,1,0 +2013,7,8,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2015,37,1,2130,34,1,0 +2013,7,7,7,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,404,1,2121,382,1,0 +2013,10,8,2,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1300,-15,0,1400,-17,0,0 +2013,8,21,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-1,0,725,0,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,820,-4,0,915,-8,0,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1200,26,1,1445,12,0,0 +2013,5,16,4,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,42,1,2308,6,0,0 +2013,5,26,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1805,-5,0,1957,7,0,0 +2013,9,18,3,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,-6,0,1013,-14,0,0 +2013,9,29,7,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1020,-6,0,1131,-3,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,18,1,1208,8,0,0 +2013,6,4,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,-3,0,1312,1,0,0 +2013,5,29,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,-5,0,1643,-12,0,0 +2013,8,16,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1718,147,1,2105,119,1,0 +2013,9,3,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1755,14,0,1850,7,0,0 +2013,8,19,1,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-3,0,2020,8,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,96,1,2137,126,1,0 +2013,9,14,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,945,-2,0,1150,-7,0,0 +2013,5,29,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,832,-1,0,1100,-26,0,0 +2013,5,4,6,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,36,1,1145,27,1,0 +2013,4,29,1,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2030,7,0,2258,-3,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-2,0,1256,-1,0,0 +2013,7,20,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1905,11,0,2227,1,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,750,-7,0,959,-19,0,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,62,1,1525,62,1,0 +2013,4,27,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1110,-2,0,1255,-25,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,935,-1,0,1215,-22,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1820,121,1,1920,107,1,0 +2013,9,15,7,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-1,0,1542,3,0,0 +2013,5,29,3,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1639,17,1,1933,13,0,0 +2013,6,3,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2013,-6,0,2030,0,0,0 +2013,10,25,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1205,-1,0,1331,-10,0,0 +2013,4,13,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-2,0,1807,-13,0,0 +2013,4,11,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,-1,0,953,-9,0,0 +2013,9,7,6,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,-1,0,1916,-28,0,0 +2013,9,12,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-4,0,1916,-11,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1550,-2,0,1715,-1,0,0 +2013,8,28,3,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,610,-6,0,708,-13,0,0 +2013,6,10,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-1,0,1106,-10,0,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2055,17,1,2259,5,0,0 +2013,5,12,7,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-7,0,626,-9,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,800,-3,0,1120,0,0,0 +2013,9,10,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,-4,0,1625,-4,0,0 +2013,10,7,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1720,26,1,1805,16,1,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,730,-4,0,915,-6,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1619,0,0,1753,7,0,0 +2013,9,12,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1850,22,1,2103,32,1,0 +2013,4,18,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1530,38,1,1840,29,1,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-7,0,1434,-12,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1454,4,0,1608,1,0,0 +2013,8,6,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-6,0,1813,-16,0,0 +2013,4,21,7,DL,11066,Port Columbus International,Columbus,OH,12892,Los Angeles International,Los Angeles,CA,1958,15,1,2200,16,1,0 +2013,5,6,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,1850,-6,0,2045,-16,0,0 +2013,4,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1545,-4,0,1806,-13,0,0 +2013,5,1,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,500,-9,0,640,1,0,0 +2013,4,30,2,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1635,-9,0,1755,-12,0,0 +2013,9,9,1,AS,13204,Orlando International,Orlando,FL,14747,Seattle/Tacoma International,Seattle,WA,1855,-6,0,2155,-33,0,0 +2013,5,3,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1240,-5,0,1425,-20,0,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1605,-7,0,1652,-25,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1252,-1,0,1515,-18,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1740,-1,0,1852,-1,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,24,1,2015,22,1,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,830,-3,0,927,0,0,0 +2013,9,24,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2105,30,1,2155,27,1,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2030,-12,0,2210,-4,0,0 +2013,6,9,7,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,15,1,2055,37,1,0 +2013,8,8,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,710,-19,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-6,0,1021,-2,0,0 +2013,10,24,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,3,0,1219,-3,0,0 +2013,8,10,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1730,-8,0,1940,-29,0,0 +2013,4,11,4,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,19,1,1841,13,0,0 +2013,10,14,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,-1,0,2117,-6,0,0 +2013,6,16,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,1353,6,0,1738,12,0,0 +2013,6,11,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1235,-4,0,2101,-18,0,0 +2013,8,15,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2001,-8,0,2100,-7,0,0 +2013,6,7,5,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1855,-5,0,1952,-19,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,915,5,0,1130,3,0,0 +2013,4,5,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,700,-5,0,825,5,0,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1519,1,0,1820,-27,0,0 +2013,9,15,7,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,58,1,734,38,1,0 +2013,6,20,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,847,-11,0,0 +2013,7,13,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1935,49,1,2259,50,1,0 +2013,4,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,640,-5,0,811,-21,0,0 +2013,8,1,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,-1,0,1914,-5,0,0 +2013,9,13,5,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-4,0,1041,-2,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2250,-1,0,36,-17,0,0 +2013,8,5,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,-3,0,2046,-16,0,0 +2013,8,2,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,14,0,1040,-5,0,0 +2013,9,25,3,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1150,-1,0,1320,27,1,0 +2013,8,21,3,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1642,152,1,1827,142,1,0 +2013,6,21,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1955,86,1,2205,85,1,0 +2013,8,14,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1025,9,0,1158,-5,0,0 +2013,8,12,1,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1306,22,1,1633,-4,0,0 +2013,7,3,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1800,-4,0,1925,7,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,40,1,1825,38,1,0 +2013,9,6,5,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,717,-1,0,1535,-10,0,0 +2013,5,2,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1220,-1,0,1815,10,0,0 +2013,6,13,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,19,1,1735,18,1,0 +2013,6,21,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1649,-3,0,1726,-3,0,0 +2013,8,11,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,845,-1,0,1055,-2,0,0 +2013,7,29,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,900,-2,0,1130,-3,0,0 +2013,10,17,4,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,600,-4,0,745,-1,0,0 +2013,10,23,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,630,0,0,745,-2,0,0 +2013,8,31,6,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,933,10,0,1153,13,0,0 +2013,4,28,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1400,-9,0,1513,9,0,0 +2013,10,25,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,610,-5,0,730,-5,0,0 +2013,8,30,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,930,1,0,1032,-2,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,8,0,1815,-5,0,0 +2013,10,10,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1947,7,0,2250,19,1,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,755,-1,0,1245,-8,0,0 +2013,7,7,7,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-8,0,2244,-12,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2150,-3,0,15,-10,0,0 +2013,9,24,2,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,555,-1,0,1355,-1,0,0 +2013,5,20,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,930,24,1,1059,33,1,0 +2013,9,20,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1535,32,1,1704,31,1,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,655,-6,0,1125,-13,0,0 +2013,4,2,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-3,0,641,1,0,0 +2013,6,7,5,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1930,89,1,811,85,1,0 +2013,4,6,6,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2104,-8,0,2156,-23,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,847,-2,0,1030,2,0,0 +2013,10,2,3,MQ,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1320,-1,0,1515,4,0,0 +2013,5,3,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,850,-4,0,1015,-9,0,0 +2013,9,25,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1436,4,0,1808,9,0,0 +2013,4,22,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2055,0,,2225,0,1,1 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1755,13,0,1850,21,1,0 +2013,7,14,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1740,21,1,1925,2,0,0 +2013,5,19,7,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,805,-6,0,1130,-29,0,0 +2013,9,23,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1435,14,0,1630,17,1,0 +2013,8,16,5,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1223,10,0,1340,-1,0,0 +2013,4,24,3,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-2,0,1420,3,0,0 +2013,7,26,5,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1005,21,1,1145,25,1,0 +2013,4,22,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,830,21,1,925,11,0,0 +2013,10,20,7,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1130,-2,0,1615,-28,0,0 +2013,8,10,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1756,7,0,1825,14,0,0 +2013,5,8,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1519,16,1,1758,32,1,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,900,-4,0,1041,12,0,0 +2013,7,22,1,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1406,-3,0,1620,-9,0,0 +2013,9,8,7,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1136,-4,0,1929,-4,0,0 +2013,8,11,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1640,1,0,2043,-27,0,0 +2013,7,7,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1200,0,,1325,0,1,1 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1915,-6,0,2100,-2,0,0 +2013,7,9,2,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2115,13,0,510,6,0,0 +2013,8,29,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1526,-4,0,1713,-9,0,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1253,-3,0,1622,9,0,0 +2013,5,2,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,950,-4,0,1105,-5,0,0 +2013,8,13,2,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1800,2,0,1920,3,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,729,-2,0,1005,-26,0,0 +2013,4,24,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,725,-2,0,1021,-10,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,-1,0,2106,-18,0,0 +2013,6,1,6,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1720,-2,0,1845,-7,0,0 +2013,6,18,2,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,22,1,1840,23,1,0 +2013,10,23,3,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1705,9,0,2210,2,0,0 +2013,5,4,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1751,159,1,1904,176,1,0 +2013,9,7,6,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,903,-3,0,1457,-22,0,0 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,5,0,35,0,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1210,14,0,1445,-5,0,0 +2013,7,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,920,3,0,1335,-4,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,1630,4,0,1906,-5,0,0 +2013,4,6,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1340,-3,0,1450,8,0,0 +2013,9,23,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1617,-3,0,1934,-5,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-2,0,1520,-3,0,0 +2013,10,5,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,830,-3,0,1059,-23,0,0 +2013,8,2,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1555,0,0,1710,-8,0,0 +2013,5,11,6,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1540,3,0,1730,-11,0,0 +2013,4,3,3,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,810,-3,0,1055,-6,0,0 +2013,10,16,3,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1720,-6,0,1925,-17,0,0 +2013,4,14,7,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,44,1,2045,47,1,0 +2013,10,19,6,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,1,0,1116,-13,0,0 +2013,5,8,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1017,19,1,1304,34,1,0 +2013,4,28,7,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1610,-10,0,25,-9,0,0 +2013,9,28,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,-5,0,1830,-21,0,0 +2013,4,30,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2340,5,0,520,-9,0,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,635,-3,0,755,-5,0,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1245,-3,0,1349,-8,0,0 +2013,9,21,6,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1710,44,1,2235,36,1,0 +2013,8,30,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1325,-2,0,1615,-26,0,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1615,29,1,1800,26,1,0 +2013,8,5,1,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2159,-4,0,2321,-9,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,710,3,0,930,-10,0,0 +2013,8,5,1,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,2235,-1,0,553,-11,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,907,-5,0,1140,-15,0,0 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,939,-4,0,1049,-17,0,0 +2013,10,25,5,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,-1,0,2105,9,0,0 +2013,4,19,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1735,15,1,1850,12,0,0 +2013,6,9,7,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,115,-6,0,830,-15,0,0 +2013,10,24,4,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1540,-2,0,1650,-5,0,0 +2013,6,22,6,AS,13830,Kahului Airport,Kahului,HI,14893,Sacramento International,Sacramento,CA,1020,-8,0,1820,-13,0,0 +2013,10,30,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,1130,-5,0,1230,-4,0,0 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,1105,24,1,1330,14,0,0 +2013,5,6,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1734,0,0,1855,-5,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,930,-2,0,1209,-21,0,0 +2013,9,21,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,2000,-4,0,2103,-13,0,0 +2013,7,15,1,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,-3,0,639,21,1,0 +2013,7,12,5,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,810,53,1,925,64,1,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10299,Ted Stevens Anchorage International,Anchorage,AK,2205,-3,0,100,-19,0,0 +2013,6,19,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2202,2,0,2318,0,0,0 +2013,6,8,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,659,-7,0,1028,-13,0,0 +2013,7,14,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,53,1,1535,50,1,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1210,-3,0,1425,10,0,0 +2013,8,19,1,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1125,39,1,1210,33,1,0 +2013,4,23,2,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,931,39,1,1149,8,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-6,0,1227,-3,0,0 +2013,4,24,3,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,2055,12,0,2240,-1,0,0 +2013,5,27,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-5,0,905,-22,0,0 +2013,8,20,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1230,-2,0,1345,-7,0,0 +2013,4,12,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,910,-4,0,1125,-5,0,0 +2013,8,2,5,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1025,-6,0,1210,-22,0,0 +2013,4,10,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,600,2,0,940,-2,0,0 +2013,6,22,6,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-1,0,1620,-7,0,0 +2013,7,15,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1515,-10,0,1559,-9,0,0 +2013,7,20,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,-9,0,1623,-8,0,0 +2013,7,5,5,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,1755,8,0,2235,3,0,0 +2013,4,4,4,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-6,0,1804,-6,0,0 +2013,9,26,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-4,0,1916,-19,0,0 +2013,10,8,2,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1500,6,0,1620,-3,0,0 +2013,9,14,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1230,-1,0,1350,-1,0,0 +2013,9,1,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,-5,0,1955,0,0,0 +2013,10,19,6,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1404,-4,0,1522,-4,0,0 +2013,10,2,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1005,-4,0,1306,-18,0,0 +2013,8,1,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1936,-1,0,2207,-2,0,0 +2013,9,20,5,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,847,0,0,1123,-9,0,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-4,0,40,-13,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1510,-1,0,1723,-3,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,855,-1,0,1020,-11,0,0 +2013,10,21,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1242,26,1,1520,26,1,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1840,4,0,2335,-4,0,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2000,2,0,2215,1,0,0 +2013,10,29,2,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1330,3,0,1430,-8,0,0 +2013,5,17,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,800,-5,0,919,8,0,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2000,0,0,2234,-21,0,0 +2013,10,1,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1200,-3,0,1219,-16,0,0 +2013,8,7,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,70,1,2043,93,1,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2210,-2,0,2300,-3,0,0 +2013,10,27,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1007,-6,0,1222,-12,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-2,0,1831,1,0,0 +2013,9,1,7,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1535,-15,0,1817,-5,0,0 +2013,8,16,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1350,2,0,1515,-9,0,0 +2013,9,14,6,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2125,-7,0,2345,-16,0,0 +2013,5,30,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1415,22,1,1525,20,1,0 +2013,8,14,3,WN,14683,San Antonio International,San Antonio,TX,13232,Chicago Midway International,Chicago,IL,750,-1,0,1025,-6,0,0 +2013,9,23,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-3,0,1322,-8,0,0 +2013,5,2,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-1,0,1005,-18,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1100,25,1,1334,25,1,0 +2013,7,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1225,-3,0,1340,-3,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,1,0,1013,-14,0,0 +2013,6,24,1,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1801,173,1,2029,170,1,0 +2013,5,18,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1600,-2,0,1835,-19,0,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,16,1,1455,9,0,0 +2013,4,18,4,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1115,0,,1241,0,1,1 +2013,8,12,1,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-5,0,801,0,0,0 +2013,9,19,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1800,-3,0,1918,-20,0,0 +2013,5,16,4,UA,11618,Newark Liberty International,Newark,NJ,14683,San Antonio International,San Antonio,TX,1728,-4,0,2057,-25,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1130,-2,0,1306,0,0,0 +2013,6,11,2,OO,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,810,-3,0,1029,-4,0,0 +2013,9,20,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,-6,0,615,-17,0,0 +2013,10,26,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,755,47,1,915,36,1,0 +2013,7,2,2,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,950,-5,0,1116,-15,0,0 +2013,5,1,3,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1403,0,0,2000,-3,0,0 +2013,4,24,3,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1310,-6,0,1523,-14,0,0 +2013,4,22,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,8,0,2100,4,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2125,10,0,2230,12,0,0 +2013,7,29,1,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,840,-7,0,1030,-12,0,0 +2013,10,11,5,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,2020,-4,0,2305,-5,0,0 +2013,5,28,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,828,-14,0,0 +2013,4,11,4,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1034,17,1,1343,5,0,0 +2013,7,12,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1345,0,0,1610,-7,0,0 +2013,6,29,6,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,-10,0,1351,-10,0,0 +2013,4,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1105,2,0,1155,-2,0,0 +2013,8,29,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1451,6,0,1620,-14,0,0 +2013,4,20,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,900,0,0,1225,-15,0,0 +2013,10,24,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1446,-6,0,1505,-9,0,0 +2013,5,23,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-5,0,918,-9,0,0 +2013,10,4,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,-1,0,1200,-19,0,0 +2013,4,18,4,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1440,11,0,1800,11,0,0 +2013,6,2,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-5,0,1341,0,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,726,-5,0,859,-11,0,0 +2013,5,5,7,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1230,-5,0,2102,-11,0,0 +2013,8,16,5,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1240,-3,0,1505,-5,0,0 +2013,5,11,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-2,0,1120,-7,0,0 +2013,7,31,3,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2217,21,1,601,23,1,0 +2013,5,25,6,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,805,-2,0,1044,-13,0,0 +2013,4,27,6,YV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1145,-4,0,1446,-9,0,0 +2013,6,4,2,DL,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,835,-1,0,1301,8,0,0 +2013,8,1,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1740,12,0,1855,2,0,0 +2013,6,29,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1944,-1,0,2129,-20,0,0 +2013,4,3,3,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,0,0,1014,-5,0,0 +2013,6,16,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,2010,-9,0,2050,-15,0,0 +2013,4,28,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,828,25,1,1036,28,1,0 +2013,7,6,6,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1045,3,0,1135,-3,0,0 +2013,4,11,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1241,12,0,1435,30,1,0 +2013,6,30,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,19,1,1912,9,0,0 +2013,8,6,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,630,-1,0,720,-1,0,0 +2013,5,31,5,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,18,1,2205,-6,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1630,-3,0,1730,-14,0,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13871,Eppley Airfield,Omaha,NE,1356,-1,0,1710,-11,0,0 +2013,6,5,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-6,0,1201,-6,0,0 +2013,6,15,6,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1904,-11,0,2013,-11,0,0 +2013,10,3,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1850,113,1,2155,113,1,0 +2013,9,8,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2035,38,1,2345,33,1,0 +2013,4,26,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1355,0,0,1925,0,0,0 +2013,10,21,1,YV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1629,-9,0,1750,-10,0,0 +2013,10,18,5,YV,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-11,0,1507,-4,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2200,7,0,2347,-12,0,0 +2013,6,18,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1823,163,1,2115,152,1,0 +2013,8,3,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1517,-1,0,1654,8,0,0 +2013,9,1,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1505,11,0,1800,-3,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1643,0,0,1814,-24,0,0 +2013,8,9,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1000,-3,0,1315,-13,0,0 +2013,10,23,3,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,955,-4,0,1140,-5,0,0 +2013,6,3,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1900,90,1,2100,88,1,0 +2013,10,16,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1614,14,0,1736,14,0,0 +2013,6,21,5,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,1032,-5,0,1345,-7,0,0 +2013,9,11,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2147,6,0,2256,-5,0,0 +2013,9,1,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1420,3,0,1535,9,0,0 +2013,7,20,6,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,929,-3,0,1214,-16,0,0 +2013,10,18,5,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,-6,0,1250,-6,0,0 +2013,7,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,2130,-2,0,2344,-7,0,0 +2013,4,28,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,0,0,1055,-17,0,0 +2013,4,7,7,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,600,-3,0,802,-4,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1320,26,1,1650,9,0,0 +2013,4,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1540,18,1,1905,-6,0,0 +2013,7,10,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1645,0,,1810,0,1,1 +2013,7,3,3,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1935,51,1,2255,33,1,0 +2013,8,19,1,UA,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1930,0,0,2308,-1,0,0 +2013,6,10,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-2,0,1655,-17,0,0 +2013,7,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,615,3,0,730,-4,0,0 +2013,4,25,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,910,-6,0,1054,3,0,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,-2,0,1700,-7,0,0 +2013,6,27,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,0,0,1220,-2,0,0 +2013,10,23,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1356,-3,0,1514,-9,0,0 +2013,4,30,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,750,-4,0,920,-21,0,0 +2013,8,28,3,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1500,7,0,1654,-10,0,0 +2013,5,29,3,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,-2,0,1645,-2,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-7,0,1120,13,0,0 +2013,10,19,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,0,0,1635,-17,0,0 +2013,6,13,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,805,6,0,0 +2013,7,14,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1435,-3,0,1555,-8,0,0 +2013,10,4,5,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,900,23,1,1020,14,0,0 +2013,4,28,7,WN,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,-2,0,1455,0,0,0 +2013,4,17,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-6,0,835,-7,0,0 +2013,9,30,1,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,701,1,0,827,-7,0,0 +2013,6,23,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1515,9,0,1635,37,1,0 +2013,7,9,2,EV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1821,15,1,1920,10,0,0 +2013,9,3,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1125,-1,0,1250,-10,0,0 +2013,8,2,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2305,-4,0,13,-11,0,0 +2013,10,1,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1930,-3,0,2155,-9,0,0 +2013,6,13,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-8,0,1230,-2,0,0 +2013,10,7,1,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-5,0,1420,-10,0,0 +2013,10,22,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,19,1,1915,-3,0,0 +2013,9,14,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,825,-5,0,915,-16,0,0 +2013,8,15,4,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,628,-7,0,753,-8,0,0 +2013,7,26,5,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1800,100,1,1925,100,1,0 +2013,8,10,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,955,-5,0,1115,-9,0,0 +2013,6,2,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,1,0,1240,-8,0,0 +2013,6,24,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1429,2,0,1659,-6,0,0 +2013,4,5,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,907,0,0,1020,0,0,0 +2013,8,29,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-12,0,904,-19,0,0 +2013,7,22,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1625,0,0,1655,-1,0,0 +2013,9,18,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,750,-7,0,1035,-7,0,0 +2013,5,31,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,954,4,0,1215,3,0,0 +2013,4,14,7,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,12,0,2010,-14,0,0 +2013,6,26,3,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1755,-3,0,1910,4,0,0 +2013,9,21,6,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,854,-4,0,1014,-8,0,0 +2013,10,20,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1850,27,1,1925,26,1,0 +2013,4,9,2,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1447,-6,0,1630,-12,0,0 +2013,4,14,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1355,15,1,1505,13,0,0 +2013,8,27,2,9E,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1655,107,1,1923,99,1,0 +2013,4,15,1,WN,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,2035,145,1,2155,171,1,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1429,50,1,1805,28,1,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1350,6,0,1920,8,0,0 +2013,7,19,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2210,-6,0,45,6,0,0 +2013,9,9,1,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1445,-5,0,1905,-15,0,0 +2013,6,4,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1148,-1,0,2025,-11,0,0 +2013,10,28,1,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1540,-2,0,1655,3,0,0 +2013,8,12,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1440,56,1,1802,39,1,0 +2013,6,11,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1100,2,0,1310,5,0,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1515,34,1,1837,23,1,0 +2013,7,18,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1442,1,0,1727,16,1,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,43,1,2356,41,1,0 +2013,4,28,7,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1450,-1,0,1800,4,0,0 +2013,8,24,6,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,539,-14,0,625,-9,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,-4,0,1225,-5,0,0 +2013,5,27,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,2,0,1840,-13,0,0 +2013,4,12,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,610,276,1,745,272,1,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1955,40,1,2115,40,1,0 +2013,10,31,4,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1535,-7,0,2322,-14,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,900,-2,0,1055,-4,0,0 +2013,9,9,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,615,-3,0,740,-7,0,0 +2013,7,30,2,WN,11057,Charlotte Douglas International,Charlotte,NC,12191,William P Hobby,Houston,TX,955,66,1,1130,52,1,0 +2013,7,17,3,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,840,0,0,1110,-7,0,0 +2013,10,27,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,800,-5,0,917,2,0,0 +2013,5,28,2,YV,13198,Kansas City International,Kansas City,MO,12264,Washington Dulles International,Washington,DC,1740,-1,0,2102,11,0,0 +2013,6,6,4,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,14,0,1720,28,1,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,-3,0,1528,-17,0,0 +2013,9,20,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-5,0,2051,-7,0,0 +2013,4,6,6,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1351,-6,0,1619,-6,0,0 +2013,10,11,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1512,77,1,1650,90,1,0 +2013,5,16,4,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1320,-1,0,1457,-6,0,0 +2013,6,18,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1545,67,1,1750,53,1,0 +2013,7,13,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1455,5,0,1626,13,0,0 +2013,9,11,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-2,0,1949,-3,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1255,25,1,1340,17,1,0 +2013,9,12,4,DL,15304,Tampa International,Tampa,FL,12892,Los Angeles International,Los Angeles,CA,705,1,0,908,-16,0,0 +2013,6,22,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2100,16,1,2205,15,1,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,1,0,1950,-7,0,0 +2013,8,12,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2135,20,1,2355,22,1,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1210,-4,0,1510,-5,0,0 +2013,4,3,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1135,38,1,1318,15,1,0 +2013,7,19,5,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1559,101,1,1739,101,1,0 +2013,8,6,2,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1045,10,0,1510,1,0,0 +2013,9,16,1,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1650,-1,0,1743,-15,0,0 +2013,7,23,2,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1729,-3,0,30,-20,0,0 +2013,10,7,1,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,655,-2,0,810,2,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,908,0,0,1049,-8,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,805,-4,0,1015,-5,0,0 +2013,6,20,4,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1525,-3,0,1817,-7,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,213,1,2303,203,1,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-1,0,1151,-6,0,0 +2013,7,20,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,12,0,1515,19,1,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1530,172,1,1630,165,1,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,900,14,0,1255,23,1,0 +2013,6,10,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1045,2,0,1654,-6,0,0 +2013,7,9,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1352,12,0,1438,0,0,0 +2013,5,17,5,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,0,0,1310,-7,0,0 +2013,8,24,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,855,-3,0,1043,-18,0,0 +2013,10,8,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,850,-3,0,1003,-6,0,0 +2013,10,26,6,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1629,-7,0,1915,-5,0,0 +2013,10,24,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2200,15,1,2247,7,0,0 +2013,10,3,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1500,26,1,1634,33,1,0 +2013,5,13,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,930,-1,0,1400,10,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1530,-5,0,1727,-25,0,0 +2013,7,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,-1,0,1311,2,0,0 +2013,8,8,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,0,0,1100,-2,0,0 +2013,4,28,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1505,-4,0,1755,-9,0,0 +2013,7,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,23,1,1435,12,0,0 +2013,5,15,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,645,-7,0,759,6,0,0 +2013,7,20,6,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-7,0,1303,-3,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1655,-1,0,1750,19,1,0 +2013,9,8,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,955,8,0,1233,12,0,0 +2013,8,22,4,YV,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,920,5,0,1035,8,0,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1625,2,0,45,9,0,0 +2013,4,16,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,10,0,1310,2,0,0 +2013,4,24,3,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1510,15,1,1820,5,0,0 +2013,5,18,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-1,0,1340,-34,0,0 +2013,4,22,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1630,-10,0,1800,-14,0,0 +2013,7,30,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,655,-8,0,825,-8,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,2045,-1,0,2150,-10,0,0 +2013,6,13,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,745,66,1,1520,67,1,0 +2013,6,11,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,207,1,1835,195,1,0 +2013,6,10,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,10,0,1910,-18,0,0 +2013,10,12,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1315,-6,0,1449,-12,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1824,121,1,29,124,1,0 +2013,4,25,4,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,810,4,0,950,9,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,-10,0,1003,-46,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,950,3,0,1055,-5,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,9,0,1550,4,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,954,-5,0,1130,-13,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,17,1,2240,20,1,0 +2013,8,13,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10529,Bradley International,Hartford,CT,1040,-2,0,1223,7,0,0 +2013,10,18,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1333,8,0,1537,-2,0,0 +2013,8,9,5,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1715,14,0,1948,-5,0,0 +2013,10,20,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-5,0,1410,-5,0,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2240,37,1,115,20,1,0 +2013,8,27,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,800,-7,0,847,-5,0,0 +2013,5,26,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1335,-3,0,1655,-14,0,0 +2013,5,30,4,EV,13244,Memphis International,Memphis,TN,15016,Lambert-St. Louis International,St. Louis,MO,1415,-7,0,1527,-11,0,0 +2013,5,23,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2136,6,0,2245,-2,0,0 +2013,7,10,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,822,0,0,1110,-1,0,0 +2013,5,20,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,853,-6,0,1027,-2,0,0 +2013,9,1,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,0,0,1850,32,1,0 +2013,8,19,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1310,22,1,1420,31,1,0 +2013,6,10,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1525,-2,0,1635,-15,0,0 +2013,5,1,3,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,-7,0,2140,-29,0,0 +2013,7,13,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1335,74,1,1525,60,1,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14679,San Diego International,San Diego,CA,837,-5,0,1037,-19,0,0 +2013,8,12,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,-4,0,2245,-6,0,0 +2013,6,18,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1940,4,0,2105,-1,0,0 +2013,5,9,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1300,97,1,1505,80,1,0 +2013,7,21,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1515,0,0,1630,4,0,0 +2013,5,25,6,OO,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-5,0,1302,-14,0,0 +2013,7,12,5,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,555,-3,0,915,-9,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,3,0,1015,-17,0,0 +2013,6,28,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1725,38,1,1850,38,1,0 +2013,8,17,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,-3,0,1620,10,0,0 +2013,8,6,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,940,-7,0,1053,-21,0,0 +2013,5,10,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2315,-4,0,729,7,0,0 +2013,5,10,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,605,-6,0,725,-1,0,0 +2013,9,11,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,841,-7,0,1138,9,0,0 +2013,8,17,6,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-2,0,1450,-15,0,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-2,0,903,-14,0,0 +2013,7,2,2,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1500,6,0,1657,-16,0,0 +2013,6,19,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1025,7,0,1120,3,0,0 +2013,6,6,4,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,2,0,1015,10,0,0 +2013,7,8,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1230,1,0,1755,-5,0,0 +2013,5,22,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,98,1,1745,102,1,0 +2013,6,27,4,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,751,-1,0,912,-9,0,0 +2013,4,21,7,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1950,-3,0,2159,22,1,0 +2013,5,7,2,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1205,14,0,1330,5,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,811,-4,0,1013,-3,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1050,0,0,1150,-14,0,0 +2013,8,19,1,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1830,-11,0,2140,-5,0,0 +2013,5,27,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,815,-3,0,1034,-11,0,0 +2013,9,18,3,EV,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,757,-9,0,1022,-12,0,0 +2013,6,11,2,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2155,-2,0,2305,13,0,0 +2013,5,25,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,905,-1,0,1202,-14,0,0 +2013,7,8,1,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1835,3,0,2046,-1,0,0 +2013,6,5,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1440,19,1,1737,8,0,0 +2013,5,24,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1610,-17,0,0 +2013,6,25,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,711,-1,0,1028,1,0,0 +2013,6,8,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,841,-6,0,1156,-16,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10792,Buffalo Niagara International,Buffalo,NY,1650,-3,0,2355,-22,0,0 +2013,6,28,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,9,0,1603,0,0,0 +2013,7,14,7,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,2,0,1557,-3,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,730,-2,0,940,-11,0,0 +2013,5,15,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1315,-6,0,1430,-8,0,0 +2013,4,10,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,850,3,0,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1536,-4,0,1858,-18,0,0 +2013,10,28,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,730,-6,0,901,-11,0,0 +2013,9,19,4,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-6,0,743,-11,0,0 +2013,9,3,2,EV,13244,Memphis International,Memphis,TN,12953,LaGuardia,New York,NY,700,0,0,1047,-13,0,0 +2013,6,30,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1346,-10,0,1505,-15,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1540,150,1,1723,157,1,0 +2013,5,16,4,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,30,1,1338,15,1,0 +2013,10,30,3,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1500,-7,0,1626,1,0,0 +2013,6,1,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,3,0,950,-6,0,0 +2013,8,30,5,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2005,-3,0,2115,1,0,0 +2013,7,25,4,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,5,0,1850,-1,0,0 +2013,6,27,4,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,816,11,0,1115,13,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,957,-13,0,0 +2013,5,29,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,2130,0,0,25,7,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,930,12,0,1210,13,0,0 +2013,7,11,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1520,28,1,1750,62,1,0 +2013,10,22,2,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,2023,31,1,2240,21,1,0 +2013,10,28,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-7,0,1934,-13,0,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,825,-4,0,1050,-7,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,950,-3,0,1326,-12,0,0 +2013,7,31,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1128,-2,0,1443,-5,0,0 +2013,7,26,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,940,-6,0,1053,-16,0,0 +2013,4,7,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-4,0,1043,-12,0,0 +2013,9,9,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,-1,0,2209,-10,0,0 +2013,7,6,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1021,0,0,1309,-1,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1730,0,0,1930,-1,0,0 +2013,5,14,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,-4,0,1128,-5,0,0 +2013,10,23,3,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,917,-9,0,1130,-15,0,0 +2013,8,3,6,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1410,18,1,1535,13,0,0 +2013,5,25,6,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1057,11,0,1410,11,0,0 +2013,4,2,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1850,-7,0,2035,-34,0,0 +2013,7,3,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1510,-4,0,1815,-12,0,0 +2013,9,4,3,9E,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1750,-6,0,1938,-14,0,0 +2013,4,19,5,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1129,-4,0,1410,-1,0,0 +2013,10,28,1,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1652,28,1,1800,36,1,0 +2013,10,22,2,US,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,835,21,1,910,7,0,0 +2013,5,26,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2252,-7,0,15,-16,0,0 +2013,5,24,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1131,13,0,1359,0,0,0 +2013,9,27,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,655,-2,0,1200,-1,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1500,-3,0,1655,-16,0,0 +2013,7,30,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,0,0,1445,-5,0,0 +2013,7,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,843,-1,0,1532,-1,0,0 +2013,10,14,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,-2,0,1918,0,0,0 +2013,9,28,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-9,0,754,-12,0,0 +2013,7,3,3,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1105,-1,0,1135,-13,0,0 +2013,10,25,5,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,820,7,0,1055,-1,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2100,25,1,2250,22,1,0 +2013,10,8,2,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,-8,0,747,-23,0,0 +2013,6,10,1,WN,14057,Portland International,Portland,OR,10140,Albuquerque International Sunport,Albuquerque,NM,700,-2,0,1045,-3,0,0 +2013,4,22,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1655,-5,0,1929,-1,0,0 +2013,5,25,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1215,-7,0,1450,16,1,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1020,-3,0,1122,-16,0,0 +2013,6,20,4,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-3,0,721,-17,0,0 +2013,8,8,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,41,1,2117,94,1,0 +2013,7,8,1,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,-5,0,2350,4,0,0 +2013,10,3,4,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-7,0,1631,-5,0,0 +2013,4,3,3,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-4,0,1355,-10,0,0 +2013,9,22,7,EV,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,955,0,0,1329,-14,0,0 +2013,8,26,1,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1905,16,1,2150,4,0,0 +2013,9,15,7,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,4,0,1416,9,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,9,0,2136,6,0,0 +2013,8,12,1,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,-8,0,1240,-23,0,0 +2013,6,12,3,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,9,0,925,7,0,0 +2013,9,2,1,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,844,-3,0,0 +2013,4,1,1,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1240,59,1,1451,72,1,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,600,-1,0,900,-5,0,0 +2013,7,9,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-1,0,1900,5,0,0 +2013,8,9,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-1,0,2016,-13,0,0 +2013,9,27,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2145,14,0,2355,15,1,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1530,95,1,2225,102,1,0 +2013,9,2,1,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1305,11,0,1418,6,0,0 +2013,7,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1145,4,0,1510,-1,0,0 +2013,10,4,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,50,15,1,620,-1,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1905,-1,0,2059,0,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2256,-6,0,2258,-15,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,935,5,0,1130,3,0,0 +2013,7,31,3,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1950,-4,0,2105,-1,0,0 +2013,7,18,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2058,11,0,2316,0,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,10,0,1005,6,0,0 +2013,9,13,5,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2015,-6,0,2145,-3,0,0 +2013,10,30,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,730,-4,0,911,8,0,0 +2013,6,22,6,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,758,-1,0,940,-18,0,0 +2013,6,18,2,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1650,-1,0,1935,27,1,0 +2013,8,12,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,625,-3,0,1428,-9,0,0 +2013,5,21,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1212,107,1,1508,97,1,0 +2013,6,25,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1830,19,1,2124,27,1,0 +2013,5,25,6,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1445,16,1,1805,30,1,0 +2013,4,25,4,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1900,41,1,2227,29,1,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1435,37,1,1654,26,1,0 +2013,4,14,7,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,110,1,2140,134,1,0 +2013,5,9,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1955,-1,0,2125,-10,0,0 +2013,9,20,5,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,2,0,1331,2,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1540,-1,0,2020,-23,0,0 +2013,7,27,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1045,4,0,1210,6,0,0 +2013,7,6,6,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,800,0,0,1021,-11,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,-4,0,1110,-6,0,0 +2013,7,7,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,3,0,2248,23,1,0 +2013,5,30,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,855,2,0,1005,3,0,0 +2013,8,31,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1200,5,0,1355,-11,0,0 +2013,6,30,7,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1251,-1,0,1550,-4,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,-2,0,1045,1,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,710,-3,0,1010,-4,0,0 +2013,9,18,3,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1210,10,0,1815,-9,0,0 +2013,7,8,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1254,-7,0,1349,-13,0,0 +2013,7,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1356,0,0,1436,-8,0,0 +2013,5,8,3,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-11,0,722,-18,0,0 +2013,5,12,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-4,0,2035,-16,0,0 +2013,10,25,5,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1015,2,0,1345,-8,0,0 +2013,7,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1356,-3,0,1436,2,0,0 +2013,6,14,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,725,4,0,911,0,0,0 +2013,8,26,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,935,-10,0,1105,-8,0,0 +2013,7,3,3,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,820,-2,0,940,-2,0,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1430,-3,0,1545,-11,0,0 +2013,5,31,5,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,-5,0,2330,-22,0,0 +2013,9,3,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1849,12,0,2030,7,0,0 +2013,4,17,3,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,1640,266,1,1820,276,1,0 +2013,8,30,5,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1352,-2,0,1958,10,0,0 +2013,5,28,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,915,0,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1359,0,0,1530,1,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,940,-4,0,1230,-5,0,0 +2013,5,25,6,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1915,-2,0,2222,-10,0,0 +2013,8,14,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2105,20,1,2215,27,1,0 +2013,4,30,2,WN,12191,William P Hobby,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,840,22,1,1010,-1,0,0 +2013,5,28,2,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,2031,-5,0,2212,-16,0,0 +2013,4,20,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,730,-2,0,835,-9,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,915,-1,0,1037,3,0,0 +2013,7,3,3,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,11,0,1913,9,0,0 +2013,6,15,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1655,0,0,1840,-25,0,0 +2013,6,13,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,825,14,0,950,12,0,0 +2013,9,2,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1702,-3,0,2023,-3,0,0 +2013,8,18,7,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-5,0,1701,-17,0,0 +2013,10,18,5,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1530,-10,0,1820,-5,0,0 +2013,7,2,2,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,919,-7,0,1100,-15,0,0 +2013,4,27,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,700,-3,0,735,2,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,655,4,0,1120,-12,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,74,1,1530,77,1,0 +2013,6,30,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,715,-1,0,820,-12,0,0 +2013,10,8,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,955,-3,0,1140,-9,0,0 +2013,4,3,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,-3,0,2120,-18,0,0 +2013,8,23,5,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-1,0,1540,-18,0,0 +2013,9,10,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1704,-10,0,2314,-15,0,0 +2013,5,16,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1305,2,0,1450,4,0,0 +2013,5,21,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-7,0,1021,-6,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,834,5,0,1001,19,1,0 +2013,9,15,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-4,0,855,-13,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,927,8,0,1305,69,1,0 +2013,6,10,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1630,7,0,1824,5,0,0 +2013,5,29,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,14,0,1807,18,1,0 +2013,9,4,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1453,-11,0,1633,-10,0,0 +2013,7,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,830,0,0,1145,-7,0,0 +2013,8,12,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,816,-1,0,1100,19,1,0 +2013,10,18,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1200,-6,0,1431,-33,0,0 +2013,10,22,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,610,-5,0,735,-6,0,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,811,-1,0,938,-15,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1701,1,0,1722,-10,0,0 +2013,9,7,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,-5,0,19,-24,0,0 +2013,7,18,4,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,3,0,935,0,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,10,0,1450,21,1,0 +2013,4,6,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1447,11,0,1548,-7,0,0 +2013,5,17,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,29,1,2120,34,1,0 +2013,8,2,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1145,13,0,1240,16,1,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,707,1,0,924,-7,0,0 +2013,5,12,7,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1755,-5,0,1913,17,1,0 +2013,10,16,3,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,75,1,2205,45,1,0 +2013,8,11,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1935,37,1,2123,17,1,0 +2013,5,31,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,1,0,1645,-2,0,0 +2013,8,7,3,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,-4,0,1305,10,0,0 +2013,5,1,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,-1,0,1835,-14,0,0 +2013,4,19,5,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1550,107,1,1700,106,1,0 +2013,6,21,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-2,0,1425,3,0,0 +2013,6,29,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,6,0,750,-4,0,0 +2013,4,3,3,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,825,-1,0,1149,-2,0,0 +2013,9,8,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1004,-3,0,0 +2013,5,17,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1650,21,1,1830,-1,0,0 +2013,5,3,5,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,945,-6,0,1159,-4,0,0 +2013,5,17,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,945,-5,0,1100,-18,0,0 +2013,5,10,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,7,0,2025,27,1,0 +2013,8,17,6,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,840,2,0,1205,2,0,0 +2013,5,23,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,705,1,0,808,-11,0,0 +2013,4,9,2,OO,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,550,2,0,805,-5,0,0 +2013,4,25,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1715,-6,0,2046,-34,0,0 +2013,4,25,4,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,745,148,1,1037,137,1,0 +2013,5,16,4,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,32,1,1900,26,1,0 +2013,10,2,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,710,5,0,1025,-32,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,85,1,2135,43,1,0 +2013,10,8,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1840,-6,0,1958,2,0,0 +2013,5,25,6,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,1715,-6,0,2000,-8,0,0 +2013,5,22,3,9E,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1505,87,1,1639,84,1,0 +2013,4,12,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,3,0,911,-12,0,0 +2013,4,1,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1500,-5,0,1826,-19,0,0 +2013,10,11,5,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2050,98,1,2320,86,1,0 +2013,8,30,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1645,7,0,1829,-7,0,0 +2013,6,9,7,9E,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1509,-1,0,1845,-3,0,0 +2013,8,5,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1310,-2,0,1603,-1,0,0 +2013,6,11,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-7,0,925,-12,0,0 +2013,4,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1935,6,0,2154,-3,0,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1110,-4,0,1331,14,0,0 +2013,7,5,5,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1930,-8,0,2246,-13,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1615,23,1,1719,15,1,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-5,0,1401,14,0,0 +2013,7,6,6,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1950,-2,0,2110,-3,0,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1820,-6,0,2115,-10,0,0 +2013,9,14,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1543,-1,0,1738,-5,0,0 +2013,6,21,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1745,-9,0,2030,-16,0,0 +2013,5,5,7,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-8,0,1900,-11,0,0 +2013,7,17,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1815,33,1,2020,23,1,0 +2013,8,3,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,105,-1,0,825,-9,0,0 +2013,5,19,7,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,810,-12,0,942,-19,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,820,8,0,1130,-5,0,0 +2013,10,23,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,715,-3,0,910,-8,0,0 +2013,4,8,1,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1105,-9,0,1203,5,0,0 +2013,4,23,2,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,700,5,0,1450,-11,0,0 +2013,5,16,4,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,1812,-3,0,2036,0,0,0 +2013,9,20,5,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,75,1,1404,72,1,0 +2013,6,19,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,59,1,812,68,1,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1735,4,0,1932,5,0,0 +2013,6,25,2,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,930,10,0,1136,-3,0,0 +2013,4,28,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,1,0,1755,10,0,0 +2013,10,17,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1150,-4,0,1407,-3,0,0 +2013,6,2,7,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1912,-7,0,2150,-9,0,0 +2013,5,8,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1730,-3,0,2245,-20,0,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,2012,-6,0,2250,-10,0,0 +2013,10,14,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1810,82,1,1950,73,1,0 +2013,8,27,2,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1945,36,1,2105,34,1,0 +2013,10,15,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,700,51,1,819,33,1,0 +2013,4,22,1,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1735,-5,0,1955,-12,0,0 +2013,5,6,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1840,-4,0,2049,-8,0,0 +2013,8,29,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1525,10,0,1605,-7,0,0 +2013,10,6,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,35,1,2035,14,0,0 +2013,9,23,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,2,0,2340,-17,0,0 +2013,9,13,5,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,635,-10,0,747,-6,0,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1017,-2,0,1324,-12,0,0 +2013,9,16,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1620,10,0,1657,10,0,0 +2013,5,22,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,750,-8,0,1016,6,0,0 +2013,7,8,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-1,0,1106,-5,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,951,7,0,1158,1,0,0 +2013,8,25,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1310,21,1,1410,38,1,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,855,0,0,1024,-4,0,0 +2013,10,25,5,OO,10423,Austin - Bergstrom International,Austin,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1403,-7,0,1758,-7,0,0 +2013,9,6,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,1510,-7,0,1750,-7,0,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2000,22,1,2210,12,0,0 +2013,4,2,2,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-7,0,1345,-18,0,0 +2013,5,24,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,855,40,1,1010,28,1,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1750,191,1,1910,242,1,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1125,-5,0,1559,-27,0,0 +2013,6,14,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-3,0,1510,-20,0,0 +2013,5,3,5,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,705,8,0,1015,14,0,0 +2013,8,11,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,7,0,1606,0,0,0 +2013,6,20,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,755,-2,0,1400,-13,0,0 +2013,7,28,7,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,12266,George Bush Intercontinental/Houston,Houston,TX,2038,90,1,624,74,1,0 +2013,5,20,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,730,-9,0,1527,-3,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,0,0,1506,-2,0,0 +2013,7,25,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1311,-1,0,1439,11,0,0 +2013,6,19,3,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1320,7,0,1621,61,1,0 +2013,6,19,3,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,834,-6,0,1350,-21,0,0 +2013,10,24,4,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,89,1,2344,86,1,0 +2013,9,13,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-4,0,1610,-4,0,0 +2013,5,23,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-2,0,1056,8,0,0 +2013,7,16,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1240,16,1,1434,3,0,0 +2013,5,27,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-3,0,1623,-4,0,0 +2013,9,1,7,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1445,-4,0,1650,0,0,0 +2013,5,3,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,705,-2,0,905,-1,0,0 +2013,6,20,4,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1640,20,1,2320,7,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-3,0,906,-8,0,0 +2013,9,1,7,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,858,-11,0,1039,-22,0,0 +2013,9,8,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-2,0,1605,8,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1050,6,0,1820,14,0,0 +2013,4,9,2,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1800,-1,0,1920,-14,0,0 +2013,4,18,4,MQ,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,50,1,1245,77,1,0 +2013,5,30,4,YV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1701,-7,0,1803,-13,0,0 +2013,6,26,3,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,13,0,1712,23,1,0 +2013,10,24,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-3,0,1115,-12,0,0 +2013,6,3,1,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,-7,0,35,-34,0,0 +2013,6,15,6,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1905,-8,0,2020,-23,0,0 +2013,9,17,2,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-6,0,1313,-21,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1230,3,0,1620,-6,0,0 +2013,10,6,7,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,908,-26,0,0 +2013,5,17,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,745,23,1,910,13,0,0 +2013,6,30,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1645,171,1,2000,156,1,0 +2013,6,24,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1540,79,1,1705,68,1,0 +2013,8,9,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1657,17,1,1746,16,1,0 +2013,8,3,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1510,6,0,2049,4,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1735,-4,0,2100,3,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2220,0,0,2355,-4,0,0 +2013,6,17,1,F9,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1450,-6,0,1805,-12,0,0 +2013,9,12,4,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-5,0,1303,-2,0,0 +2013,8,4,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2008,0,,2217,0,1,1 +2013,6,22,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-4,0,836,-5,0,0 +2013,8,20,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1810,-1,0,1910,-3,0,0 +2013,5,5,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1510,-6,0,2027,9,0,0 +2013,4,17,3,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,805,1,0,1000,-16,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1333,5,0,1447,0,0,0 +2013,8,10,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,755,-4,0,930,-16,0,0 +2013,9,1,7,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,1810,60,1,1933,55,1,0 +2013,6,10,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1445,96,1,1655,104,1,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1825,30,1,2350,18,1,0 +2013,10,5,6,AA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2000,51,1,2130,40,1,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1640,20,1,1740,21,1,0 +2013,7,27,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1925,1,0,2340,15,1,0 +2013,5,29,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-1,0,1015,-7,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1544,-3,0,1836,-19,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,76,1,1545,64,1,0 +2013,6,26,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,-3,0,1330,-12,0,0 +2013,8,9,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,45,1,2050,43,1,0 +2013,7,27,6,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,9,0,1122,11,0,0 +2013,6,14,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1006,-7,0,1628,-6,0,0 +2013,6,19,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2105,-3,0,2225,1,0,0 +2013,6,27,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1313,-6,0,1433,-2,0,0 +2013,7,24,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1541,1,0,1835,-23,0,0 +2013,10,16,3,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1010,-4,0,1320,-2,0,0 +2013,9,4,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1700,-12,0,1829,-15,0,0 +2013,6,26,3,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,645,-3,0,850,-7,0,0 +2013,10,23,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1822,-5,0,2109,-9,0,0 +2013,8,3,6,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1021,-11,0,1105,-14,0,0 +2013,10,4,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,920,-1,0,1010,-2,0,0 +2013,9,18,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1240,-3,0,1325,10,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,725,-1,0,948,-10,0,0 +2013,8,29,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,523,-1,0,1224,-7,0,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,700,-2,0,846,-7,0,0 +2013,9,2,1,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1318,-3,0,1522,-13,0,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,11,0,1316,3,0,0 +2013,8,2,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,755,4,0,1115,-11,0,0 +2013,6,11,2,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1440,-4,0,1510,-4,0,0 +2013,8,1,4,US,14100,Philadelphia International,Philadelphia,PA,14683,San Antonio International,San Antonio,TX,1802,-4,0,2058,0,0,0 +2013,10,4,5,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,2,0,1229,2,0,0 +2013,9,19,4,DL,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1830,0,0,2029,8,0,0 +2013,6,6,4,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,2005,-4,0,2309,-10,0,0 +2013,5,31,5,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-7,0,1302,-13,0,0 +2013,8,16,5,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1512,-10,0,1835,-19,0,0 +2013,9,23,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,1805,-5,0,1945,-5,0,0 +2013,6,4,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1320,0,0,1705,-14,0,0 +2013,8,2,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1740,-5,0,2152,-2,0,0 +2013,9,1,7,FL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2359,-10,0,734,-4,0,0 +2013,9,11,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1615,13,0,1720,0,0,0 +2013,5,20,1,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1345,19,1,1505,7,0,0 +2013,5,3,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-4,0,1509,-17,0,0 +2013,4,3,3,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1035,-1,0,1352,-25,0,0 +2013,9,5,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1225,-6,0,1330,-20,0,0 +2013,9,18,3,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1623,-5,0,1705,-23,0,0 +2013,4,18,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1130,-2,0,1221,-12,0,0 +2013,5,7,2,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1805,63,1,2055,56,1,0 +2013,5,24,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2120,12,0,3,2,0,0 +2013,10,10,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2219,24,1,2305,5,0,0 +2013,8,9,5,DL,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,2220,-1,0,636,-30,0,0 +2013,4,28,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-4,0,1455,-1,0,0 +2013,4,21,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1956,3,0,2141,-1,0,0 +2013,4,27,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2256,2,0,28,-18,0,0 +2013,7,15,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,-7,0,2345,-13,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,2,0,1905,-3,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,-4,0,2128,-3,0,0 +2013,4,30,2,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1315,-5,0,2044,-19,0,0 +2013,5,22,3,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1351,30,1,1605,75,1,0 +2013,9,29,7,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-3,0,1605,-16,0,0 +2013,6,27,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1630,1,0,1740,-1,0,0 +2013,8,7,3,YV,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1935,65,1,2252,35,1,0 +2013,10,23,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1308,-5,0,1327,6,0,0 +2013,8,27,2,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1530,1,0,2100,-6,0,0 +2013,9,4,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,630,-4,0,915,-39,0,0 +2013,4,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1830,26,1,2235,26,1,0 +2013,6,30,7,WN,12191,William P Hobby,Houston,TX,13796,Metropolitan Oakland International,Oakland,CA,1100,-2,0,1255,-15,0,0 +2013,8,28,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-6,0,1225,-10,0,0 +2013,6,16,7,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,0,0,1629,-9,0,0 +2013,10,31,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1840,1,0,2100,-10,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1018,-2,0,1401,-8,0,0 +2013,10,1,2,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1110,-6,0,1258,-19,0,0 +2013,8,3,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2320,-2,0,629,-11,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1855,37,1,2155,16,1,0 +2013,4,16,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,,1520,0,1,1 +2013,7,5,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,755,0,0,1115,-12,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1350,-5,0,1457,-19,0,0 +2013,7,22,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,655,0,0,840,17,1,0 +2013,4,8,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-2,0,1325,-17,0,0 +2013,6,7,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,2020,0,0,2235,11,0,0 +2013,5,13,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1200,0,0,1519,-13,0,0 +2013,7,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1121,-6,0,1208,-10,0,0 +2013,8,20,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,-10,0,1525,-24,0,0 +2013,5,21,2,UA,14635,Southwest Florida International,Fort Myers,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1103,-1,0,1342,-10,0,0 +2013,5,21,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1441,14,0,1648,12,0,0 +2013,9,28,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1930,23,1,2159,37,1,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1125,-5,0,1348,-10,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2150,6,0,2250,6,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,920,0,0,1010,-10,0,0 +2013,6,9,7,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1440,-6,0,1652,-16,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1842,49,1,2159,24,1,0 +2013,4,8,1,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1320,9,0,1620,24,1,0 +2013,10,8,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1545,-4,0,1826,0,0,0 +2013,4,3,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,845,4,0,955,-11,0,0 +2013,9,10,2,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,1700,-8,0,1930,-11,0,0 +2013,7,19,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2005,24,1,2205,5,0,0 +2013,8,4,7,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,0,,830,0,1,1 +2013,8,28,3,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1815,-2,0,1935,-15,0,0 +2013,5,22,3,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,4,0,738,-2,0,0 +2013,5,29,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1540,51,1,1855,72,1,0 +2013,6,16,7,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,2211,65,1,2307,47,1,0 +2013,4,5,5,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,742,22,1,856,19,1,0 +2013,4,6,6,EV,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1500,-6,0,1735,-17,0,0 +2013,7,26,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1420,0,0,1530,-2,0,0 +2013,6,7,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,41,1,2203,57,1,0 +2013,10,24,4,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,815,-9,0,1008,-11,0,0 +2013,7,9,2,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,36,1,1925,24,1,0 +2013,10,13,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,945,-6,0,1034,-12,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1430,83,1,1550,88,1,0 +2013,7,11,4,MQ,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1650,0,0,2055,-8,0,0 +2013,8,13,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1642,17,1,1955,11,0,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1345,36,1,1515,32,1,0 +2013,5,2,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1610,0,0,2219,1,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1348,40,1,1502,38,1,0 +2013,8,18,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,820,0,0,940,7,0,0 +2013,5,14,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,742,-4,0,945,-21,0,0 +2013,10,16,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1125,-3,0,1219,-14,0,0 +2013,4,2,2,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,650,17,1,750,8,0,0 +2013,8,21,3,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,800,-5,0,1021,-9,0,0 +2013,4,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,2012,-5,0,2112,-20,0,0 +2013,4,23,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1105,-14,0,1234,-13,0,0 +2013,6,2,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-6,0,836,-20,0,0 +2013,10,28,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1055,0,,1320,0,1,1 +2013,9,23,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1920,59,1,2045,46,1,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1155,14,0,1323,14,0,0 +2013,4,4,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1004,-5,0,1133,-9,0,0 +2013,7,26,5,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,31,1,1415,22,1,0 +2013,5,21,2,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-1,0,1625,5,0,0 +2013,5,10,5,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1957,71,1,2104,71,1,0 +2013,7,25,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14747,Seattle/Tacoma International,Seattle,WA,829,-6,0,1033,-4,0,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,2137,-4,0,2322,3,0,0 +2013,9,17,2,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,845,-1,0,1016,2,0,0 +2013,4,18,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1015,-1,0,1300,-22,0,0 +2013,5,11,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,3,0,1559,-17,0,0 +2013,4,28,7,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,935,-5,0,1110,-20,0,0 +2013,5,21,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,98,1,1750,126,1,0 +2013,8,30,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,2250,9,0,0 +2013,9,12,4,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1715,131,1,2255,181,1,0 +2013,10,7,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,805,-2,0,922,-23,0,0 +2013,8,20,2,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1724,-12,0,1855,-5,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,945,34,1,1301,9,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,825,-2,0,834,7,0,0 +2013,4,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1359,-2,0,1800,-9,0,0 +2013,8,2,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,3,0,636,-2,0,0 +2013,4,8,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1940,24,1,2135,39,1,0 +2013,8,6,2,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2020,-6,0,459,16,1,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1645,-8,0,45,-26,0,0 +2013,4,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,-5,0,1710,-7,0,0 +2013,9,30,1,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1439,-4,0,1607,-32,0,0 +2013,5,12,7,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-6,0,1042,-18,0,0 +2013,6,14,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2130,-3,0,2340,1,0,0 +2013,4,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1550,-6,0,1715,-15,0,0 +2013,5,7,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1010,2,0,1135,-3,0,0 +2013,10,17,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,17,1,1605,7,0,0 +2013,4,22,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2105,-15,0,2215,-9,0,0 +2013,7,28,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1707,-15,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1733,-3,0,1938,-28,0,0 +2013,4,13,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1120,2,0,1328,-11,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1630,62,1,1751,61,1,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,745,-2,0,1556,-11,0,0 +2013,8,22,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,40,1,1905,29,1,0 +2013,6,2,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1500,5,0,1510,-6,0,0 +2013,9,11,3,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,740,-21,0,0 +2013,9,28,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1010,-2,0,1323,-15,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1750,-4,0,1955,19,1,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1415,3,0,1656,-21,0,0 +2013,6,7,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2210,114,1,2353,99,1,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,947,38,1,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,955,-4,0,1152,-8,0,0 +2013,4,23,2,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1710,-4,0,1842,-9,0,0 +2013,10,16,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,707,-8,0,1042,-3,0,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,850,-7,0,924,-11,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1959,-6,0,2118,-16,0,0 +2013,4,4,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,905,6,0,1116,19,1,0 +2013,4,23,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,955,-1,0,1130,-3,0,0 +2013,6,27,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,-1,0,930,-9,0,0 +2013,9,10,2,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-12,0,711,-19,0,0 +2013,7,3,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1948,15,1,9,-33,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1915,12,0,2130,11,0,0 +2013,7,18,4,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1430,-1,0,1630,-15,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-4,0,1012,3,0,0 +2013,4,15,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1118,-9,0,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,-4,0,1532,-9,0,0 +2013,7,5,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1124,-5,0,1430,-6,0,0 +2013,4,16,2,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,2155,-6,0,2259,-8,0,0 +2013,8,15,4,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-1,0,1632,-7,0,0 +2013,8,17,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,900,-4,0,1143,-30,0,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1630,-1,0,1835,-4,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1107,-1,0,1448,-4,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,820,-29,0,0 +2013,9,10,2,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,640,-15,0,912,-8,0,0 +2013,5,9,4,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,750,-2,0,0 +2013,7,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,705,-9,0,832,-4,0,0 +2013,4,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2105,14,0,2246,3,0,0 +2013,4,9,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-6,0,1855,-20,0,0 +2013,8,14,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,745,0,0,1005,5,0,0 +2013,6,25,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1530,23,1,2016,30,1,0 +2013,9,19,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,40,1,2152,22,1,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1820,-1,0,1935,-9,0,0 +2013,10,5,6,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,-3,0,1846,-11,0,0 +2013,4,30,2,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1735,5,0,1955,15,1,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,10,0,1935,6,0,0 +2013,10,4,5,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1030,69,1,1133,91,1,0 +2013,6,17,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-2,0,1924,-4,0,0 +2013,6,29,6,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-5,0,2005,-8,0,0 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1333,52,1,1642,59,1,0 +2013,5,11,6,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1057,7,0,1350,20,1,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1753,33,1,1944,23,1,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1600,1,0,1930,-20,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1414,-3,0,1556,-33,0,0 +2013,10,4,5,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1025,-1,0,1308,-21,0,0 +2013,9,3,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-2,0,1510,-4,0,0 +2013,10,26,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1905,1,0,2152,7,0,0 +2013,9,13,5,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,1550,6,0,1725,9,0,0 +2013,9,11,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,2004,-5,0,2255,-11,0,0 +2013,10,10,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1415,-3,0,1748,5,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1610,0,0,1736,-14,0,0 +2013,7,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,2105,9,0,2200,7,0,0 +2013,4,8,1,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1855,-1,0,1940,-14,0,0 +2013,10,13,7,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-4,0,1316,-3,0,0 +2013,9,14,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,920,-2,0,1045,-6,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1515,13,0,1905,6,0,0 +2013,9,9,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-4,0,2226,1,0,0 +2013,8,13,2,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1840,22,1,2135,19,1,0 +2013,9,2,1,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1535,47,1,1700,47,1,0 +2013,6,17,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,730,-7,0,1257,-14,0,0 +2013,4,7,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1705,-4,0,1905,-33,0,0 +2013,5,22,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1911,123,1,1925,119,1,0 +2013,8,14,3,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-3,0,815,-18,0,0 +2013,8,20,2,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,948,1,0,1317,-9,0,0 +2013,6,10,1,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1252,-1,0,1435,5,0,0 +2013,5,18,6,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1350,0,0,1515,-6,0,0 +2013,5,13,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,2057,-1,0,2122,-3,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1350,11,0,1830,-18,0,0 +2013,6,20,4,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,-3,0,2245,-9,0,0 +2013,6,5,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1240,-3,0,1425,-11,0,0 +2013,6,16,7,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2200,-6,0,2255,-5,0,0 +2013,4,4,4,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1940,-5,0,100,-17,0,0 +2013,5,20,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,710,33,1,1052,45,1,0 +2013,9,21,6,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1518,-6,0,1636,-10,0,0 +2013,4,7,7,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,700,0,0,941,9,0,0 +2013,7,13,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,845,-6,0,1055,-7,0,0 +2013,10,4,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,538,1,0,811,1,0,0 +2013,7,19,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,8,0,1307,-8,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1615,11,0,2120,4,0,0 +2013,4,3,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,15,1,2055,10,0,0 +2013,7,22,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1629,30,1,0 +2013,4,6,6,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1210,-14,0,1455,-17,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2030,3,0,2201,-7,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,-4,0,100,-20,0,0 +2013,8,1,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,0,0,1025,-17,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,955,-5,0,1119,-15,0,0 +2013,8,24,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1945,29,1,2050,25,1,0 +2013,5,9,4,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1615,45,1,1800,27,1,0 +2013,6,25,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1659,13,0,1902,0,0,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1510,77,1,1630,60,1,0 +2013,6,12,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,705,-6,0,830,0,0,0 +2013,8,19,1,WN,11292,Denver International,Denver,CO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1725,29,1,2235,25,1,0 +2013,5,10,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,52,1,1840,52,1,0 +2013,4,12,5,US,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1800,19,1,2031,28,1,0 +2013,6,19,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1940,0,0,2215,-3,0,0 +2013,8,23,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,716,3,0,1200,-20,0,0 +2013,9,13,5,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,839,-5,0,1125,2,0,0 +2013,5,3,5,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,8,0,1925,-11,0,0 +2013,9,30,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-1,0,1640,4,0,0 +2013,9,6,5,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,735,3,0,930,-5,0,0 +2013,10,27,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1602,-13,0,1649,-20,0,0 +2013,8,24,6,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1750,8,0,2015,12,0,0 +2013,4,29,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-7,0,1230,-11,0,0 +2013,6,17,1,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1412,-9,0,1705,-27,0,0 +2013,10,14,1,US,12451,Jacksonville International,Jacksonville,FL,14100,Philadelphia International,Philadelphia,PA,1040,-12,0,1246,-17,0,0 +2013,10,15,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1555,-10,0,1635,-15,0,0 +2013,4,23,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1619,212,1,1731,208,1,0 +2013,9,10,2,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,805,65,1,957,39,1,0 +2013,6,29,6,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1450,54,1,1745,46,1,0 +2013,8,16,5,EV,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1355,63,1,1708,47,1,0 +2013,5,23,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1133,-4,0,1904,7,0,0 +2013,9,11,3,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,1340,18,1,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1320,-2,0,1617,-12,0,0 +2013,9,21,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,3,0,1235,1,0,0 +2013,8,10,6,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1805,40,1,1955,20,1,0 +2013,8,5,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2005,27,1,2149,26,1,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,0,0,1830,-9,0,0 +2013,8,14,3,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,817,8,0,835,-5,0,0 +2013,4,17,3,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1900,299,1,2100,292,1,0 +2013,10,1,2,9E,12478,John F. Kennedy International,New York,NY,13931,Norfolk International,Norfolk,VA,1456,-3,0,1641,-30,0,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1500,22,1,1940,27,1,0 +2013,7,27,6,WN,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,600,-2,0,810,-3,0,0 +2013,6,23,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,105,1,1800,117,1,0 +2013,6,19,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1440,6,0,1643,14,0,0 +2013,6,6,4,WN,13232,Chicago Midway International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,835,15,1,1030,28,1,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,3,0,1235,-15,0,0 +2013,5,14,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-4,0,1855,-10,0,0 +2013,5,30,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1729,-1,0,2044,-45,0,0 +2013,6,11,2,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,49,1,1435,18,1,0 +2013,5,14,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,-1,0,2110,-8,0,0 +2013,6,17,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1940,136,1,2035,130,1,0 +2013,9,10,2,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1435,85,1,2243,96,1,0 +2013,7,17,3,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,8,0,1922,86,1,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1355,-1,0,1503,-10,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,1,0,1500,-9,0,0 +2013,7,7,7,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,625,-2,0,805,-12,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1217,-1,0,1248,-7,0,0 +2013,10,7,1,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1600,-6,0,1800,-8,0,0 +2013,5,17,5,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-6,0,833,-11,0,0 +2013,6,5,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14492,Raleigh-Durham International,Raleigh/Durham,NC,1910,5,0,2155,1,0,0 +2013,6,17,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,9,0,1425,5,0,0 +2013,7,6,6,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,941,-7,0,1205,-29,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1420,2,0,1620,8,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2211,-5,0,2345,-10,0,0 +2013,8,21,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1045,22,1,1149,28,1,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1625,40,1,1730,60,1,0 +2013,8,29,4,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1429,35,1,1629,31,1,0 +2013,5,31,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1859,13,0,2201,2,0,0 +2013,5,30,4,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1830,-3,0,2123,-20,0,0 +2013,4,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1430,-5,0,1821,-10,0,0 +2013,8,1,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,45,1,1534,28,1,0 +2013,10,28,1,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,-1,0,1610,21,1,0 +2013,7,18,4,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1355,6,0,1515,12,0,0 +2013,4,4,4,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1640,2,0,1850,27,1,0 +2013,10,5,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,608,-4,0,800,-10,0,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,845,-4,0,955,-17,0,0 +2013,10,9,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1345,-4,0,0 +2013,6,12,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2125,0,,2350,0,1,1 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1315,4,0,1520,-5,0,0 +2013,4,10,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1020,155,1,1145,151,1,0 +2013,8,18,7,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-5,0,1345,-11,0,0 +2013,10,30,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,830,-2,0,1010,-17,0,0 +2013,4,10,3,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,18,1,1916,64,1,0 +2013,5,29,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,950,-6,0,1100,2,0,0 +2013,8,29,4,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-9,0,1605,-17,0,0 +2013,10,27,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,2010,13,0,2105,0,0,0 +2013,10,5,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1554,-9,0,0 +2013,7,7,7,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1509,6,0,1620,9,0,0 +2013,7,2,2,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,-5,0,2137,-25,0,0 +2013,5,1,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,2140,4,0,5,-7,0,0 +2013,10,15,2,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1225,-1,0,1552,-16,0,0 +2013,4,16,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,26,1,1940,13,0,0 +2013,6,7,5,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-7,0,1624,2,0,0 +2013,8,1,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-4,0,2031,-16,0,0 +2013,4,19,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1719,32,1,1915,38,1,0 +2013,5,4,6,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2130,-4,0,512,11,0,0 +2013,8,23,5,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,-6,0,1105,-11,0,0 +2013,5,18,6,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,755,-2,0,925,-8,0,0 +2013,8,9,5,OO,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1117,-6,0,1208,-3,0,0 +2013,8,10,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,2,0,1234,-7,0,0 +2013,10,30,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,650,-3,0,804,-4,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1650,0,0,2105,-15,0,0 +2013,10,8,2,US,11066,Port Columbus International,Columbus,OH,11057,Charlotte Douglas International,Charlotte,NC,1755,-4,0,1917,2,0,0 +2013,7,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1135,34,1,1345,41,1,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,-6,0,1439,-6,0,0 +2013,8,27,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1720,18,1,1925,-12,0,0 +2013,5,18,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1924,-4,0,2332,-11,0,0 +2013,10,19,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,-6,0,1242,-5,0,0 +2013,5,21,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,751,-8,0,0 +2013,7,13,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,12,0,2035,1,0,0 +2013,8,15,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1010,-2,0,1130,-5,0,0 +2013,6,26,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,71,1,1100,74,1,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1605,7,0,1835,-4,0,0 +2013,8,12,1,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1245,5,0,1600,-7,0,0 +2013,10,31,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1515,92,1,1630,88,1,0 +2013,10,8,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-2,0,840,-24,0,0 +2013,4,5,5,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1415,48,1,1755,39,1,0 +2013,4,28,7,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1700,0,0,1735,5,0,0 +2013,8,12,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1935,1,0,2310,1,0,0 +2013,8,27,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1313,3,0,1400,0,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1106,-4,0,1223,-3,0,0 +2013,7,28,7,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,79,1,2025,69,1,0 +2013,6,28,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,815,-8,0,0 +2013,10,20,7,EV,11618,Newark Liberty International,Newark,NJ,12264,Washington Dulles International,Washington,DC,610,-6,0,722,-1,0,0 +2013,7,13,6,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,23,1,1135,21,1,0 +2013,9,8,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1330,2,0,1430,-1,0,0 +2013,6,9,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1430,54,1,1540,51,1,0 +2013,7,15,1,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,645,-3,0,850,-18,0,0 +2013,9,5,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,12191,William P Hobby,Houston,TX,945,9,0,1135,-16,0,0 +2013,8,20,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,1,0,940,-8,0,0 +2013,4,15,1,YV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1953,-10,0,2101,-15,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1747,46,1,1952,26,1,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1445,-1,0,1654,-5,0,0 +2013,5,13,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2110,-4,0,2235,-12,0,0 +2013,5,12,7,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1526,-1,0,1627,-5,0,0 +2013,9,2,1,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1640,7,0,1835,-7,0,0 +2013,5,24,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,610,-5,0,720,-16,0,0 +2013,9,9,1,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1230,-10,0,1440,-24,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1345,-1,0,1725,-15,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,-1,0,1205,-12,0,0 +2013,4,30,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2130,-2,0,2303,-17,0,0 +2013,10,9,3,US,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,2008,-1,0,2140,-15,0,0 +2013,6,15,6,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1543,0,0,1819,22,1,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1000,42,1,1216,13,0,0 +2013,7,20,6,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,8,0,1755,13,0,0 +2013,10,7,1,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1050,-7,0,1325,23,1,0 +2013,6,18,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1000,4,0,1132,6,0,0 +2013,7,29,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,725,-4,0,1506,-25,0,0 +2013,4,17,3,EV,12264,Washington Dulles International,Washington,DC,14730,Louisville International-Standiford Field,Louisville,KY,1700,25,1,1843,34,1,0 +2013,10,13,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1745,-3,0,1840,1,0,0 +2013,5,16,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1730,33,1,1905,3,0,0 +2013,7,11,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,3,0,725,4,0,0 +2013,7,16,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1300,60,1,1421,75,1,0 +2013,10,3,4,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-3,0,1728,-24,0,0 +2013,10,12,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1510,12,0,1556,6,0,0 +2013,9,22,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,2000,1,0,2125,-3,0,0 +2013,6,4,2,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1823,0,0,2123,-12,0,0 +2013,6,24,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,830,-7,0,1039,-15,0,0 +2013,8,19,1,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1600,98,1,1747,60,1,0 +2013,8,9,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,720,-2,0,932,-2,0,0 +2013,7,30,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,32,1,2305,28,1,0 +2013,10,16,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,-4,0,1105,-9,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1745,-4,0,1753,-11,0,0 +2013,7,21,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1715,4,0,2128,8,0,0 +2013,8,6,2,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,-4,0,1028,-9,0,0 +2013,4,19,5,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,615,-4,0,650,7,0,0 +2013,10,22,2,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,-5,0,1651,-14,0,0 +2013,9,16,1,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,756,3,0,1552,7,0,0 +2013,4,21,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1230,-7,0,1413,0,0,0 +2013,6,23,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2205,37,1,2335,32,1,0 +2013,7,20,6,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,-1,0,1445,-18,0,0 +2013,7,30,2,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,23,1,1843,40,1,0 +2013,8,19,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1855,-2,0,2000,-8,0,0 +2013,9,2,1,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,817,-4,0,1038,-19,0,0 +2013,6,23,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,603,-3,0,745,0,0,0 +2013,6,2,7,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,0,0,815,6,0,0 +2013,6,5,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,0,0,920,-12,0,0 +2013,7,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,2214,-1,0,2244,-6,0,0 +2013,6,29,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,-3,0,1720,-6,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,-3,0,1425,-9,0,0 +2013,4,17,3,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,920,0,0,1150,-7,0,0 +2013,7,22,1,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1650,32,1,1820,44,1,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2210,-11,0,45,-15,0,0 +2013,10,31,4,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1500,10,0,1810,5,0,0 +2013,9,27,5,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-3,0,1315,-9,0,0 +2013,6,26,3,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2205,112,1,10,107,1,0 +2013,6,30,7,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-5,0,937,-1,0,0 +2013,6,19,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,835,-4,0,1055,-13,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2105,23,1,2246,5,0,0 +2013,5,29,3,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,1525,-2,0,1650,-6,0,0 +2013,10,20,7,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,96,1,1814,94,1,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1945,14,0,2150,4,0,0 +2013,5,1,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,26,1,1545,18,1,0 +2013,9,17,2,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1235,-3,0,1529,-2,0,0 +2013,9,17,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1738,-7,0,1953,-15,0,0 +2013,7,26,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-2,0,1606,-20,0,0 +2013,7,30,2,B6,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1312,-2,0,1618,-14,0,0 +2013,7,6,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,600,-3,0,845,-9,0,0 +2013,5,20,1,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,940,-18,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,700,-5,0,1113,-31,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1305,9,0,2140,72,1,0 +2013,5,5,7,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1255,-4,0,1429,-3,0,0 +2013,9,25,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1955,-5,0,2125,-3,0,0 +2013,9,20,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,0,0,758,-6,0,0 +2013,9,23,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,922,-6,0,1110,-1,0,0 +2013,10,29,2,B6,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,910,0,0,1222,-30,0,0 +2013,4,3,3,AA,13342,General Mitchell International,Milwaukee,WI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,1,0,1950,-4,0,0 +2013,7,9,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,730,-2,0,930,3,0,0 +2013,4,16,2,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1000,47,1,1443,61,1,0 +2013,10,26,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,605,-7,0,733,-13,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1400,34,1,1750,29,1,0 +2013,5,3,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1556,47,1,1758,38,1,0 +2013,7,10,3,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1624,55,1,1926,71,1,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,70,1,1818,60,1,0 +2013,7,28,7,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1234,-4,0,1447,-20,0,0 +2013,7,16,2,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1420,-6,0,1620,8,0,0 +2013,10,12,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-1,0,1645,11,0,0 +2013,9,14,6,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,629,-1,0,809,-27,0,0 +2013,8,10,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-8,0,1206,5,0,0 +2013,7,2,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1925,52,1,2150,49,1,0 +2013,9,28,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,655,0,0,820,-1,0,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1805,13,0,2117,-6,0,0 +2013,7,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,0,0,1057,8,0,0 +2013,4,8,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1505,39,1,1755,36,1,0 +2013,6,30,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1807,4,0,1853,-4,0,0 +2013,9,19,4,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1124,139,1,1453,128,1,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1531,-2,0,1815,2,0,0 +2013,9,17,2,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1845,67,1,2250,54,1,0 +2013,5,5,7,US,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,2005,-8,0,2126,1,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1735,-5,0,2033,-37,0,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,2120,2,0,2220,-2,0,0 +2013,10,22,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12191,William P Hobby,Houston,TX,1820,29,1,2030,13,0,0 +2013,8,1,4,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1420,-1,0,1515,-10,0,0 +2013,9,2,1,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1926,-5,0,2100,1,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1935,187,1,2035,207,1,0 +2013,9,30,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,740,-3,0,1110,-12,0,0 +2013,7,22,1,EV,11618,Newark Liberty International,Newark,NJ,13871,Eppley Airfield,Omaha,NE,808,-6,0,1021,-16,0,0 +2013,5,14,2,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1654,-6,0,1941,-7,0,0 +2013,9,17,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,28,1,1820,8,0,0 +2013,7,8,1,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,-5,0,1810,-3,0,0 +2013,5,12,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1405,-5,0,1530,-6,0,0 +2013,4,23,2,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,950,-8,0,1100,-2,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,745,0,0,1120,-7,0,0 +2013,4,12,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,-5,0,1819,-26,0,0 +2013,6,4,2,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1235,3,0,1423,-11,0,0 +2013,6,2,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,905,-4,0,1037,-12,0,0 +2013,10,27,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1835,22,1,2127,29,1,0 +2013,8,7,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,-4,0,1210,-4,0,0 +2013,6,1,6,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,800,-4,0,1153,3,0,0 +2013,4,16,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,2030,-10,0,2218,-7,0,0 +2013,9,3,2,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,928,-1,0,1435,13,0,0 +2013,6,5,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-12,0,856,-26,0,0 +2013,10,23,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,735,12,0,835,11,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,655,0,0,1526,-6,0,0 +2013,8,9,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-3,0,715,-10,0,0 +2013,8,23,5,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1150,32,1,1455,36,1,0 +2013,10,22,2,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-8,0,2135,-12,0,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,915,6,0,1440,9,0,0 +2013,9,21,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1458,-2,0,1756,-1,0,0 +2013,7,18,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2345,-8,0,536,-9,0,0 +2013,5,17,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,0,0,1623,-3,0,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1730,13,0,2050,-6,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,-2,0,1520,-12,0,0 +2013,10,14,1,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1423,10,0,1559,-16,0,0 +2013,7,19,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1710,-2,0,1810,48,1,0 +2013,8,13,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1325,11,0,1335,6,0,0 +2013,8,20,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1550,-3,0,1724,1,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,0,0,1739,9,0,0 +2013,5,20,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,828,-6,0,905,-13,0,0 +2013,6,11,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1810,-1,0,2027,-12,0,0 +2013,6,19,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,710,37,1,815,34,1,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1400,19,1,1655,15,1,0 +2013,5,16,4,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,740,-1,0,1025,16,1,0 +2013,8,16,5,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1935,-8,0,2045,-6,0,0 +2013,4,19,5,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,27,1,1230,-17,0,0 +2013,7,30,2,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1403,-7,0,2155,-41,0,0 +2013,9,8,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1855,8,0,2120,18,1,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2005,3,0,2138,1,0,0 +2013,10,30,3,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1054,-13,0,0 +2013,5,14,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,630,4,0,750,2,0,0 +2013,10,1,2,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1319,-2,0,1444,11,0,0 +2013,8,6,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1705,3,0,1946,-19,0,0 +2013,7,21,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1130,-4,0,1304,-3,0,0 +2013,8,27,2,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,755,-4,0,925,-5,0,0 +2013,9,20,5,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1115,-12,0,1329,-16,0,0 +2013,7,31,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,745,-1,0,830,22,1,0 +2013,7,16,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,830,23,1,925,25,1,0 +2013,4,19,5,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1530,47,1,1839,38,1,0 +2013,7,5,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13303,Miami International,Miami,FL,2250,-4,0,615,-20,0,0 +2013,6,18,2,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1010,21,1,1230,28,1,0 +2013,4,26,5,B6,10792,Buffalo Niagara International,Buffalo,NY,14635,Southwest Florida International,Fort Myers,FL,710,-9,0,1006,-15,0,0 +2013,4,10,3,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-7,0,925,-10,0,0 +2013,7,3,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,0,0,1310,-18,0,0 +2013,6,17,1,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-1,0,935,-5,0,0 +2013,5,29,3,EV,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1723,-8,0,1853,-12,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,2,0,1820,9,0,0 +2013,8,17,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1820,1,0,1915,-5,0,0 +2013,6,15,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1100,3,0,1255,-8,0,0 +2013,7,7,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,1513,-4,0,0 +2013,6,5,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-5,0,1847,-17,0,0 +2013,4,9,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,-5,0,2026,-7,0,0 +2013,8,9,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,834,-6,0,909,-9,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1500,-2,0,1826,-9,0,0 +2013,4,19,5,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1540,-3,0,1640,-9,0,0 +2013,5,6,1,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1545,0,0,1833,-26,0,0 +2013,10,4,5,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,800,-6,0,940,-4,0,0 +2013,7,13,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1029,-2,0,1250,-10,0,0 +2013,7,27,6,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,38,1,1945,15,1,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,640,47,1,756,44,1,0 +2013,10,3,4,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1115,20,1,1303,-1,0,0 +2013,8,25,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1209,7,0,1329,-5,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1950,1,0,2235,16,1,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1755,-1,0,2204,-25,0,0 +2013,10,15,2,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1340,11,0,1545,3,0,0 +2013,7,10,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-4,0,1150,-8,0,0 +2013,10,26,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,845,-6,0,1157,-20,0,0 +2013,9,26,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2045,36,1,2150,32,1,0 +2013,4,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,630,-3,0,735,-12,0,0 +2013,10,2,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,745,-2,0,1310,-10,0,0 +2013,4,22,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-2,0,1757,-13,0,0 +2013,7,14,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1500,-8,0,1744,-36,0,0 +2013,5,25,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,855,-1,0,950,-13,0,0 +2013,8,31,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,-3,0,1016,-10,0,0 +2013,9,22,7,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,605,-8,0,905,-27,0,0 +2013,8,17,6,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,650,-1,0,955,2,0,0 +2013,4,25,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1340,-2,0,1505,-7,0,0 +2013,9,16,1,AS,13830,Kahului Airport,Kahului,HI,14679,San Diego International,San Diego,CA,1435,-5,0,2243,-4,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,2,0,2329,13,0,0 +2013,9,18,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,735,-5,0,940,-8,0,0 +2013,9,9,1,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2105,-5,0,2350,-12,0,0 +2013,4,14,7,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1445,123,1,1805,92,1,0 +2013,6,5,3,OO,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-10,0,1754,-17,0,0 +2013,7,31,3,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2049,11,0,2348,31,1,0 +2013,7,7,7,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1935,158,1,2255,129,1,0 +2013,7,8,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-6,0,636,-7,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,820,-4,0,1000,-15,0,0 +2013,4,21,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1157,7,0,1453,-16,0,0 +2013,5,12,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1220,-7,0,1251,-15,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,950,4,0,1100,0,0,0 +2013,6,20,4,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1550,24,1,1650,24,1,0 +2013,9,27,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,15,1,1030,2,0,0 +2013,7,26,5,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1900,63,1,2035,60,1,0 +2013,8,12,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1700,-4,0,1750,-3,0,0 +2013,9,3,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,22,1,754,6,0,0 +2013,6,20,4,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2030,-3,0,2206,-16,0,0 +2013,9,5,4,9E,13931,Norfolk International,Norfolk,VA,10721,Logan International,Boston,MA,1600,-5,0,1747,-13,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,55,1,2025,53,1,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1300,19,1,1400,9,0,0 +2013,7,13,6,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1100,2,0,1915,9,0,0 +2013,9,11,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1413,4,0,1546,-13,0,0 +2013,8,21,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2000,124,1,2050,123,1,0 +2013,4,3,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1045,21,1,1248,8,0,0 +2013,10,23,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1125,-1,0,1230,3,0,0 +2013,6,25,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1350,-2,0,1355,-4,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,2025,21,1,2320,21,1,0 +2013,5,8,3,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1910,-8,0,2040,-16,0,0 +2013,5,18,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1815,-7,0,1849,-9,0,0 +2013,10,14,1,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1100,1,0,1250,-3,0,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1230,-4,0,1457,-21,0,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1630,97,1,1704,94,1,0 +2013,7,14,7,9E,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1445,3,0,1642,-18,0,0 +2013,6,26,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-1,0,1305,-2,0,0 +2013,9,22,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,1005,-6,0,1544,-4,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,3,0,1705,-20,0,0 +2013,9,21,6,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1150,-4,0,1340,-2,0,0 +2013,9,7,6,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2130,41,1,2350,42,1,0 +2013,6,16,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,18,1,2156,3,0,0 +2013,9,2,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,2330,0,0,630,1,0,0 +2013,8,23,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,755,-6,0,930,-26,0,0 +2013,4,9,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-3,0,1340,-8,0,0 +2013,4,24,3,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1555,-6,0,1715,41,1,0 +2013,10,24,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,940,3,0,1110,-8,0,0 +2013,5,15,3,EV,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1007,-5,0,1450,-10,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,0,0,2357,-7,0,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1111,1,0,1153,-7,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,-5,0,1946,10,0,0 +2013,6,30,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,0,0,1555,21,1,0 +2013,8,7,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1310,44,1,1522,19,1,0 +2013,8,9,5,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,-1,0,2215,-12,0,0 +2013,10,12,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1150,53,1,1430,38,1,0 +2013,7,5,5,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1025,10,0,1245,11,0,0 +2013,4,28,7,B6,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1145,-7,0,1356,-8,0,0 +2013,5,18,6,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,-3,0,1636,-1,0,0 +2013,6,26,3,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,800,-3,0,1634,10,0,0 +2013,4,22,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,752,0,0,948,-24,0,0 +2013,9,29,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,600,3,0,930,-10,0,0 +2013,4,14,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,2007,43,1,2315,5,0,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1235,-6,0,1825,-20,0,0 +2013,10,17,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2305,-1,0,510,-2,0,0 +2013,8,30,5,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,824,-8,0,933,-11,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1300,1,0,1420,-12,0,0 +2013,6,19,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1150,-2,0,1430,-19,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-6,0,1115,-19,0,0 +2013,9,11,3,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,515,-9,0,642,-11,0,0 +2013,10,10,4,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1845,-1,0,2140,-23,0,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14730,Louisville International-Standiford Field,Louisville,KY,1855,-1,0,2050,-1,0,0 +2013,6,28,5,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2223,144,1,649,144,1,0 +2013,9,24,2,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2104,12,0,2234,-2,0,0 +2013,5,7,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2155,-1,0,50,22,1,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,2029,14,0,2134,11,0,0 +2013,4,25,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1035,-2,0,1145,-7,0,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,0,0,2331,-7,0,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,-10,0,1316,-22,0,0 +2013,8,16,5,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,840,-4,0,1245,-19,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1935,14,0,2059,-14,0,0 +2013,6,26,3,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,-4,0,1905,-10,0,0 +2013,7,17,3,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,2029,25,1,2359,-4,0,0 +2013,7,17,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,27,1,2044,18,1,0 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,920,1,0,1145,7,0,0 +2013,7,17,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,12,0,2055,5,0,0 +2013,4,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,-1,0,1417,1,0,0 +2013,6,6,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,9,0,1035,-1,0,0 +2013,8,31,6,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,958,-2,0,1256,-38,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,7,0,820,6,0,0 +2013,8,2,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1917,0,0,2105,6,0,0 +2013,5,29,3,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1328,30,1,1819,45,1,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1657,-2,0,1746,6,0,0 +2013,9,30,1,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,735,-9,0,926,-17,0,0 +2013,7,29,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,600,0,0,650,0,0,0 +2013,4,12,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1210,10,0,1515,34,1,0 +2013,6,6,4,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-7,0,1520,-2,0,0 +2013,8,18,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1340,-2,0,1430,-4,0,0 +2013,8,29,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,-5,0,1628,-16,0,0 +2013,5,1,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1040,-3,0,1220,-15,0,0 +2013,7,16,2,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1915,1,0,2205,-1,0,0 +2013,7,6,6,DL,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1559,127,1,1907,97,1,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1405,0,,1510,0,1,1 +2013,9,21,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,21,1,840,14,0,0 +2013,6,29,6,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1930,18,1,2145,6,0,0 +2013,5,30,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1330,-4,0,1455,-17,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2120,19,1,2325,-2,0,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,2045,-7,0,2317,-6,0,0 +2013,7,17,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,805,-4,0,1150,-5,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2200,3,0,2255,23,1,0 +2013,7,22,1,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,2349,8,0,747,16,1,0 +2013,5,12,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-3,0,1249,-3,0,0 +2013,8,13,2,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1840,-2,0,2045,4,0,0 +2013,5,3,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-3,0,1407,-13,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1640,-1,0,1803,4,0,0 +2013,7,15,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,745,0,,841,0,1,1 +2013,9,27,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,9,0,925,12,0,0 +2013,9,17,2,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1340,-5,0,1452,-9,0,0 +2013,4,1,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,944,-8,0,1034,-15,0,0 +2013,7,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1810,10,0,1925,8,0,0 +2013,10,25,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1555,9,0,1850,7,0,0 +2013,4,7,7,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-6,0,1634,-33,0,0 +2013,8,10,6,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1347,4,0,1622,-5,0,0 +2013,5,18,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1733,-4,0,2029,-12,0,0 +2013,6,15,6,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-4,0,1009,5,0,0 +2013,10,24,4,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1016,2,0,1311,-8,0,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1935,3,0,2110,-3,0,0 +2013,5,12,7,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-6,0,1956,-13,0,0 +2013,5,23,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,800,31,1,925,20,1,0 +2013,8,4,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,-1,0,1755,-15,0,0 +2013,10,13,7,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1455,13,0,1815,6,0,0 +2013,10,28,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,0,0,1831,-5,0,0 +2013,4,20,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,630,6,0,1216,0,0,0 +2013,4,14,7,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1152,4,0,1306,-3,0,0 +2013,10,7,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,0,0,1200,50,1,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,14679,San Diego International,San Diego,CA,2026,-1,0,2249,4,0,0 +2013,8,5,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1723,145,1,2014,126,1,0 +2013,7,10,3,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,710,-23,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,830,-1,0,935,-8,0,0 +2013,9,12,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,723,13,0,929,6,0,0 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-1,0,755,-1,0,0 +2013,10,31,4,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1333,9,0,1435,9,0,0 +2013,5,4,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,820,0,0,1020,22,1,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,930,-4,0,1103,-21,0,0 +2013,7,10,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1750,13,0,2345,-5,0,0 +2013,5,18,6,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,820,-4,0,1000,-8,0,0 +2013,9,27,5,F9,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,700,-5,0,1240,-10,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,0,0,2255,-12,0,0 +2013,5,28,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,-7,0,1911,-11,0,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1220,21,1,1315,20,1,0 +2013,8,25,7,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1710,-4,0,1945,12,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1444,-2,0,1606,-14,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1535,-7,0,1725,-9,0,0 +2013,6,19,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,930,10,0,1030,4,0,0 +2013,9,14,6,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1545,-2,0,1805,-16,0,0 +2013,6,5,3,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,655,-5,0,840,-15,0,0 +2013,7,4,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1145,-10,0,1258,-12,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,-2,0,2119,-16,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1845,-4,0,1950,-5,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1930,-3,0,2044,-9,0,0 +2013,7,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-11,0,1404,-11,0,0 +2013,9,29,7,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,935,-17,0,0 +2013,8,30,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,605,-2,0,1008,4,0,0 +2013,7,30,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,2,0,1353,12,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1355,-1,0,1546,-7,0,0 +2013,5,20,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1710,20,1,1821,7,0,0 +2013,6,20,4,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,745,2,0,950,7,0,0 +2013,4,22,1,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,615,-2,0,750,-14,0,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1735,40,1,1900,45,1,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,1900,25,1,2104,8,0,0 +2013,6,16,7,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,18,1,2020,38,1,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1135,-5,0,1235,-16,0,0 +2013,10,11,5,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,2,0,1023,-6,0,0 +2013,9,24,2,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1305,-7,0,1438,-14,0,0 +2013,4,2,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,725,-4,0,905,-16,0,0 +2013,9,8,7,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1701,-4,0,1829,2,0,0 +2013,6,1,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1120,16,1,1350,14,0,0 +2013,5,27,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-7,0,1201,-8,0,0 +2013,5,19,7,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,930,-3,0,1255,-24,0,0 +2013,6,18,2,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,615,-5,0,715,9,0,0 +2013,6,16,7,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,1405,-1,0,1535,12,0,0 +2013,6,16,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1535,120,1,1824,121,1,0 +2013,8,25,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1020,14,0,1140,11,0,0 +2013,7,9,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,705,-5,0,801,-5,0,0 +2013,4,8,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,-3,0,2039,-19,0,0 +2013,9,14,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1405,-4,0,1525,-8,0,0 +2013,5,10,5,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1645,-6,0,1941,-10,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1154,244,1,2035,258,1,0 +2013,8,30,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1010,26,1,1126,20,1,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,3,0,2130,5,0,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1125,-6,0,1233,-15,0,0 +2013,5,14,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,1823,12,0,2145,-10,0,0 +2013,8,10,6,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,2025,13,0,2305,3,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1018,-1,0,1139,-25,0,0 +2013,10,1,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-5,0,1115,0,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,-2,0,2131,-6,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,-5,0,1315,-3,0,0 +2013,8,5,1,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2100,7,0,2305,23,1,0 +2013,4,7,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1905,-12,0,2015,-19,0,0 +2013,7,22,1,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,12,0,1255,18,1,0 +2013,4,24,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1302,-4,0,1537,2,0,0 +2013,8,13,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,700,-2,0,828,0,0,0 +2013,5,11,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1145,-5,0,1259,-9,0,0 +2013,4,26,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1215,-4,0,1507,-12,0,0 +2013,6,26,3,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,28,1,2314,36,1,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1020,59,1,1330,56,1,0 +2013,4,3,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,102,1,1940,94,1,0 +2013,8,5,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1350,-1,0,1622,1,0,0 +2013,7,9,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,933,0,,1054,0,1,1 +2013,6,1,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1025,0,0,1320,3,0,0 +2013,6,21,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,40,1,1301,31,1,0 +2013,6,5,3,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,724,-1,0,931,-31,0,0 +2013,5,13,1,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,-6,0,1845,-9,0,0 +2013,6,22,6,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,-4,0,856,-4,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1150,16,1,1340,-6,0,0 +2013,8,5,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,8,0,912,-2,0,0 +2013,7,13,6,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-13,0,711,-16,0,0 +2013,9,20,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1020,-2,0,1105,-8,0,0 +2013,9,15,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-3,0,1259,-5,0,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-1,0,1418,-5,0,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2000,5,0,2122,1,0,0 +2013,10,7,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,2045,8,0,2230,8,0,0 +2013,7,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,30,1,1135,32,1,0 +2013,7,25,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1605,-2,0,1740,7,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1745,1,0,1935,-12,0,0 +2013,7,12,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,915,4,0,0 +2013,6,12,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2015,0,0,2115,-2,0,0 +2013,5,14,2,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2148,-8,0,2359,-16,0,0 +2013,9,29,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1649,-2,0,1801,-12,0,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,0,0,1836,-18,0,0 +2013,6,14,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,859,-3,0,1035,-19,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1359,-5,0,1439,0,0,0 +2013,4,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1604,-7,0,1717,-19,0,0 +2013,7,19,5,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,3,0,1020,10,0,0 +2013,4,24,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,924,-3,0,1102,6,0,0 +2013,7,25,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,10,0,1715,6,0,0 +2013,8,27,2,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1445,19,1,1630,9,0,0 +2013,5,26,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1316,-3,0,1641,-34,0,0 +2013,10,25,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1537,-1,0,1649,-18,0,0 +2013,7,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1750,6,0,1905,7,0,0 +2013,4,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,841,7,0,1135,3,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2015,9,0,2130,14,0,0 +2013,10,30,3,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1328,4,0,1400,15,1,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1015,-5,0,1222,-19,0,0 +2013,6,3,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1412,-6,0,1649,-3,0,0 +2013,8,23,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-6,0,1105,-31,0,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,2100,36,1,2315,48,1,0 +2013,6,21,5,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1041,-1,0,1620,-8,0,0 +2013,8,31,6,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1210,26,1,1350,17,1,0 +2013,6,27,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,156,1,2118,150,1,0 +2013,5,8,3,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,1825,28,1,2000,25,1,0 +2013,8,28,3,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1325,-2,0,1548,5,0,0 +2013,4,23,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-9,0,816,-1,0,0 +2013,4,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,108,1,1420,119,1,0 +2013,8,26,1,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,915,2,0,1025,2,0,0 +2013,7,13,6,UA,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1947,67,1,2227,70,1,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2200,5,0,41,-20,0,0 +2013,8,31,6,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,830,39,1,1005,27,1,0 +2013,4,25,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,15,1,1055,2,0,0 +2013,6,15,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,940,-2,0,1549,-17,0,0 +2013,5,14,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1800,-11,0,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1403,-4,0,1537,-12,0,0 +2013,4,13,6,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1730,-6,0,1815,-6,0,0 +2013,4,21,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2020,0,,2212,0,1,1 +2013,7,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1000,44,1,1310,53,1,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,33,1,1705,2,0,0 +2013,9,8,7,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1905,9,0,2130,13,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1430,-2,0,1605,-17,0,0 +2013,7,22,1,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,23,1,2135,27,1,0 +2013,7,1,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,59,-4,0,621,8,0,0 +2013,9,7,6,WN,14679,San Diego International,San Diego,CA,10693,Nashville International,Nashville,TN,930,-3,0,1525,5,0,0 +2013,8,3,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1100,-1,0,1430,-17,0,0 +2013,6,9,7,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1350,-5,0,1517,-12,0,0 +2013,9,19,4,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1005,8,0,1215,7,0,0 +2013,8,12,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11433,Detroit Metro Wayne County,Detroit,MI,1342,-4,0,1639,-10,0,0 +2013,4,23,2,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-2,0,1528,-23,0,0 +2013,5,3,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1446,-2,0,1655,-12,0,0 +2013,5,14,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,-7,0,2115,-22,0,0 +2013,9,17,2,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1759,5,0,2016,12,0,0 +2013,5,9,4,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1207,2,0,1340,-12,0,0 +2013,4,7,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1950,-4,0,2004,-18,0,0 +2013,7,19,5,AA,14679,San Diego International,San Diego,CA,13303,Miami International,Miami,FL,2145,-7,0,540,-12,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,20,1,2320,14,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1340,12,0,1840,19,1,0 +2013,8,5,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1450,10,0,1650,-7,0,0 +2013,9,25,3,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,743,-1,0,934,-12,0,0 +2013,10,17,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,0,0,930,12,0,0 +2013,8,20,2,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,-4,0,1920,-11,0,0 +2013,8,24,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1334,-16,0,0 +2013,9,30,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-2,0,1143,4,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,910,-3,0,1034,5,0,0 +2013,9,12,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1532,-7,0,1637,-10,0,0 +2013,10,24,4,VX,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,945,177,1,1150,171,1,0 +2013,5,22,3,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2225,150,1,135,155,1,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,86,1,2044,62,1,0 +2013,5,24,5,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1205,84,1,1333,150,1,0 +2013,8,7,3,WN,12191,William P Hobby,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1405,11,0,1630,4,0,0 +2013,5,6,1,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,4,0,1025,-12,0,0 +2013,7,11,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1405,7,0,1636,4,0,0 +2013,4,6,6,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,700,-10,0,825,-6,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,1,0,1220,-2,0,0 +2013,7,30,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11066,Port Columbus International,Columbus,OH,1537,-1,0,1807,10,0,0 +2013,6,10,1,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1635,1,0,1830,-11,0,0 +2013,9,21,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,62,1,1455,81,1,0 +2013,7,14,7,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1945,22,1,2345,14,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1140,1,0,1610,-17,0,0 +2013,4,11,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1447,20,1,2159,16,1,0 +2013,8,2,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,-4,0,1606,-14,0,0 +2013,7,18,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,730,-4,0,1330,6,0,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,5,0,2005,8,0,0 +2013,7,31,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-1,0,1535,-38,0,0 +2013,8,17,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1545,0,0,1700,-11,0,0 +2013,7,1,1,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,839,-1,0,1034,17,1,0 +2013,7,22,1,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,0,0,715,-1,0,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,945,53,1,1715,50,1,0 +2013,8,18,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,81,1,1725,80,1,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1000,5,0,1155,4,0,0 +2013,10,22,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-4,0,1723,-4,0,0 +2013,5,7,2,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1548,-3,0,1630,-1,0,0 +2013,9,16,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,950,38,1,1133,24,1,0 +2013,4,1,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,825,-3,0,1107,18,1,0 +2013,8,12,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2150,-2,0,100,-11,0,0 +2013,8,8,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1642,30,1,1938,63,1,0 +2013,4,5,5,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-6,0,1015,-8,0,0 +2013,4,22,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1625,31,1,1915,54,1,0 +2013,4,29,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1010,1,0,1115,-10,0,0 +2013,4,3,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,12,0,2125,4,0,0 +2013,7,3,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-7,0,810,4,0,0 +2013,6,12,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1000,0,0,1655,-5,0,0 +2013,6,16,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-3,0,1345,-4,0,0 +2013,5,18,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,700,-4,0,1144,-6,0,0 +2013,5,2,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1130,-5,0,1931,21,1,0 +2013,8,12,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,720,-2,0,925,-2,0,0 +2013,6,30,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-7,0,1329,2,0,0 +2013,5,21,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1510,111,1,1615,214,1,0 +2013,9,28,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1735,11,0,1835,18,1,0 +2013,7,18,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1841,-2,0,2300,3,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,635,3,0,930,-6,0,0 +2013,6,9,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1010,0,0,1135,-7,0,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,840,0,0,935,-5,0,0 +2013,5,23,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1825,-1,0,2019,-12,0,0 +2013,5,3,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,850,-3,0,1130,-7,0,0 +2013,8,7,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1200,-3,0,1520,-7,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,715,-4,0,820,-6,0,0 +2013,8,2,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1245,12,0,1348,4,0,0 +2013,7,27,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,716,7,0,1035,-5,0,0 +2013,4,9,2,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,-3,0,1345,-11,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2211,17,1,2328,23,1,0 +2013,8,31,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1645,-10,0,1839,-10,0,0 +2013,8,10,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-7,0,735,-12,0,0 +2013,10,2,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-14,0,1234,-20,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1255,83,1,1355,71,1,0 +2013,5,18,6,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,730,12,0,1030,4,0,0 +2013,10,31,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,4,0,1418,-3,0,0 +2013,7,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,53,1,2009,49,1,0 +2013,5,30,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1741,11,0,0 +2013,4,18,4,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,11,0,35,26,1,0 +2013,4,18,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,0,0,1355,-11,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1520,-4,0,1715,-2,0,0 +2013,6,1,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1329,-12,0,1414,-14,0,0 +2013,8,1,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,8,0,1020,1,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2019,5,0,2332,-5,0,0 +2013,7,6,6,B6,12889,McCarran International,Las Vegas,NV,10721,Logan International,Boston,MA,938,-1,0,1735,-5,0,0 +2013,8,10,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,855,94,1,1459,72,1,0 +2013,6,18,2,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2145,56,1,605,54,1,0 +2013,7,16,2,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,645,-20,0,0 +2013,9,20,5,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,20,1,1555,25,1,0 +2013,6,24,1,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,6,0,1125,15,1,0 +2013,7,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1750,10,0,2150,-4,0,0 +2013,4,16,2,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1421,12,0,1750,-7,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1630,11,0,1730,24,1,0 +2013,6,9,7,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,715,-5,0,1128,-22,0,0 +2013,7,28,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1125,-1,0,1720,-14,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1715,72,1,2010,71,1,0 +2013,4,19,5,YV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1054,-1,0,1218,-2,0,0 +2013,8,22,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1355,33,1,1915,31,1,0 +2013,10,25,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-2,0,927,-4,0,0 +2013,7,7,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,0,0,511,-6,0,0 +2013,10,7,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,605,-4,0,755,-11,0,0 +2013,7,14,7,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2210,-6,0,2315,-8,0,0 +2013,7,18,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,-3,0,2130,-40,0,0 +2013,10,25,5,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1130,15,1,1315,13,0,0 +2013,5,11,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,845,-3,0,1211,-8,0,0 +2013,5,21,2,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1619,-3,0,1914,-7,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,615,-1,0,1145,-12,0,0 +2013,10,28,1,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1210,-6,0,1715,-13,0,0 +2013,6,20,4,DL,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,730,-6,0,928,-18,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1620,-1,0,1720,-11,0,0 +2013,4,11,4,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,815,-23,0,0 +2013,6,7,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,-3,0,842,13,0,0 +2013,6,5,3,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1055,-7,0,1405,-20,0,0 +2013,10,6,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,915,-3,0,1023,-8,0,0 +2013,7,10,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1007,373,1,1629,362,1,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,745,-10,0,909,-5,0,0 +2013,5,18,6,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,0,0,903,10,0,0 +2013,4,2,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,81,1,1535,113,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1240,-1,0,1403,-11,0,0 +2013,8,7,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,-9,0,948,1,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,700,-4,0,1018,-20,0,0 +2013,4,30,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-4,0,1814,-28,0,0 +2013,4,19,5,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,1955,29,1,2235,26,1,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1440,35,1,1658,46,1,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1945,4,0,2050,5,0,0 +2013,10,6,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1510,-6,0,1742,2,0,0 +2013,4,15,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2115,27,1,2215,24,1,0 +2013,7,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-6,0,2204,-17,0,0 +2013,5,23,4,FL,14635,Southwest Florida International,Fort Myers,FL,12339,Indianapolis International,Indianapolis,IN,1620,4,0,1847,3,0,0 +2013,8,6,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,600,-6,0,700,2,0,0 +2013,8,6,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-1,0,1529,12,0,0 +2013,4,29,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1714,108,1,1833,127,1,0 +2013,8,26,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1015,-8,0,1227,3,0,0 +2013,7,21,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1359,4,0,1731,-8,0,0 +2013,8,9,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,1,0,2132,0,0,0 +2013,6,30,7,UA,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1037,0,0,1624,2,0,0 +2013,8,3,6,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,-5,0,1018,-13,0,0 +2013,5,29,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1558,1,0,1747,-4,0,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1759,-3,0,1912,-6,0,0 +2013,5,6,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,5,0,1530,18,1,0 +2013,6,17,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1845,126,1,2009,127,1,0 +2013,7,29,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-6,0,1230,-10,0,0 +2013,4,30,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1145,-5,0,1354,-10,0,0 +2013,10,13,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1545,-8,0,1800,38,1,0 +2013,4,3,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,2,0,2035,10,0,0 +2013,6,26,3,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1547,-4,0,1835,2,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2245,3,0,737,-15,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1655,120,1,1850,127,1,0 +2013,10,31,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,922,-1,0,0 +2013,8,31,6,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,1340,4,0,1500,-2,0,0 +2013,8,6,2,WN,14893,Sacramento International,Sacramento,CA,13232,Chicago Midway International,Chicago,IL,1425,5,0,2025,-4,0,0 +2013,4,26,5,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,630,44,1,810,42,1,0 +2013,9,3,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1031,-5,0,1215,-42,0,0 +2013,8,28,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1044,1,0,1202,-1,0,0 +2013,9,21,6,WN,15304,Tampa International,Tampa,FL,13198,Kansas City International,Kansas City,MO,1145,18,1,1330,19,1,0 +2013,4,10,3,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2050,169,1,2221,138,1,0 +2013,7,10,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1215,76,1,1333,71,1,0 +2013,5,31,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1924,12,0,2246,21,1,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,915,-6,0,1108,-6,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1830,44,1,2103,40,1,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1350,25,1,1837,21,1,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1735,15,1,1800,11,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,600,-1,0,1447,10,0,0 +2013,5,17,5,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2200,-3,0,2355,-8,0,0 +2013,6,26,3,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,1306,150,1,2135,153,1,0 +2013,8,30,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1230,4,0,1320,-8,0,0 +2013,8,23,5,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,545,-3,0,728,-4,0,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-1,0,755,-14,0,0 +2013,7,3,3,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2055,-4,0,2348,-1,0,0 +2013,9,14,6,YV,14730,Louisville International-Standiford Field,Louisville,KY,14100,Philadelphia International,Philadelphia,PA,700,-7,0,847,-5,0,0 +2013,9,21,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,850,8,0,1003,-2,0,0 +2013,5,21,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1305,2,0,1410,-6,0,0 +2013,8,24,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1005,-6,0,1626,10,0,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1750,10,0,2010,4,0,0 +2013,4,20,6,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-1,0,625,15,1,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,3,0,1520,-4,0,0 +2013,9,18,3,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,8,0,1740,13,0,0 +2013,8,17,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1930,1,0,2209,-8,0,0 +2013,6,9,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,94,1,2020,100,1,0 +2013,10,30,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-4,0,925,-11,0,0 +2013,5,28,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,2110,5,0,2355,-3,0,0 +2013,4,5,5,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,720,-1,0,1001,-9,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,1330,-2,0,1515,-2,0,0 +2013,9,6,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2005,-4,0,2135,-4,0,0 +2013,5,28,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1030,-3,0,1156,-10,0,0 +2013,4,26,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-2,0,2130,3,0,0 +2013,10,30,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,847,-10,0,1051,-24,0,0 +2013,10,17,4,AS,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,800,-2,0,1120,-36,0,0 +2013,4,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1655,154,1,2130,137,1,0 +2013,4,30,2,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,555,0,0,900,0,0,0 +2013,10,15,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1455,-1,0,1710,1,0,0 +2013,9,2,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,61,1,1812,43,1,0 +2013,9,4,3,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,755,-2,0,855,4,0,0 +2013,9,10,2,EV,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1145,-6,0,1425,-22,0,0 +2013,10,2,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,800,-4,0,1048,-11,0,0 +2013,8,13,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1235,14,0,1405,9,0,0 +2013,5,7,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,16,1,1310,10,0,0 +2013,7,21,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,708,367,1,1547,425,1,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,2006,-1,0,2105,-33,0,0 +2013,5,26,7,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1640,-5,0,1730,-5,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,955,-4,0,1130,-6,0,0 +2013,10,9,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2050,0,0,2230,13,0,0 +2013,10,12,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-6,0,710,-13,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,-3,0,1114,3,0,0 +2013,10,13,7,WN,14570,Reno/Tahoe International,Reno,NV,14679,San Diego International,San Diego,CA,810,-1,0,950,-18,0,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1650,37,1,1815,24,1,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,-1,0,1220,2,0,0 +2013,10,17,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1650,15,1,1922,21,1,0 +2013,9,12,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1045,11,0,1418,14,0,0 +2013,10,19,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-5,0,1250,-8,0,0 +2013,10,26,6,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-5,0,1910,-16,0,0 +2013,7,9,2,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,814,9,0,1106,9,0,0 +2013,6,4,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,550,0,0,710,-11,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,955,-9,0,1330,-21,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1611,-1,0,1733,-6,0,0 +2013,7,8,1,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1043,7,0,1840,40,1,0 +2013,4,18,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1710,90,1,1836,89,1,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1705,-6,0,2055,-17,0,0 +2013,9,24,2,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1813,-4,0,2128,-36,0,0 +2013,8,16,5,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1628,8,0,1955,-15,0,0 +2013,5,9,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1450,17,1,1613,62,1,0 +2013,8,29,4,EV,10721,Logan International,Boston,MA,11042,Cleveland-Hopkins International,Cleveland,OH,946,-3,0,1152,-12,0,0 +2013,4,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,830,-3,0,959,-12,0,0 +2013,6,11,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,2200,31,1,16,13,0,0 +2013,9,30,1,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2110,-8,0,2208,-22,0,0 +2013,9,23,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-5,0,1110,-12,0,0 +2013,6,19,3,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2358,-5,0,744,-9,0,0 +2013,8,21,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,730,-6,0,1026,-13,0,0 +2013,6,30,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,95,1,1606,83,1,0 +2013,9,17,2,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,-7,0,1218,-8,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2030,-3,0,2135,-8,0,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,-4,0,1043,-23,0,0 +2013,8,5,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1341,47,1,1443,35,1,0 +2013,8,28,3,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,643,-7,0,820,4,0,0 +2013,8,1,4,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1349,11,0,1937,0,0,0 +2013,10,20,7,UA,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,838,-3,0,900,-19,0,0 +2013,5,24,5,UA,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,959,6,0,1520,12,0,0 +2013,5,22,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1225,-6,0,1337,-7,0,0 +2013,8,7,3,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-9,0,1235,-7,0,0 +2013,10,17,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1445,69,1,1628,82,1,0 +2013,4,4,4,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1750,71,1,2058,93,1,0 +2013,5,20,1,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,2145,-2,0,2244,-3,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,4,0,1416,16,1,0 +2013,7,2,2,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-1,0,1440,5,0,0 +2013,9,11,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-8,0,1115,-29,0,0 +2013,5,11,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,0,0,1120,2,0,0 +2013,8,15,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1159,-6,0,1527,-1,0,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1430,1,0,1650,-7,0,0 +2013,10,10,4,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2025,86,1,2125,77,1,0 +2013,9,27,5,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,3,0,1315,14,0,0 +2013,7,27,6,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,830,4,0,1020,7,0,0 +2013,9,29,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,630,26,1,735,4,0,0 +2013,6,24,1,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,705,-4,0,928,-1,0,0 +2013,5,9,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1725,16,1,1835,0,0,0 +2013,5,16,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1222,-1,0,1347,4,0,0 +2013,9,4,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2120,-1,0,2240,-6,0,0 +2013,8,7,3,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,9,0,2110,5,0,0 +2013,8,1,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,530,-1,0,655,-2,0,0 +2013,8,25,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,-7,0,2345,-8,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,-4,0,1624,27,1,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2155,117,1,2330,100,1,0 +2013,5,24,5,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1445,-10,0,1745,-16,0,0 +2013,7,28,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,25,1,2040,22,1,0 +2013,10,27,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,19,1,833,14,0,0 +2013,9,15,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1016,1,0,1149,8,0,0 +2013,9,30,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-1,0,705,-4,0,0 +2013,6,9,7,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1534,-5,0,1718,-12,0,0 +2013,10,15,2,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1650,14,0,1940,1,0,0 +2013,5,12,7,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1155,5,0,1435,-16,0,0 +2013,10,16,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1637,0,0,1744,-16,0,0 +2013,9,11,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1453,-2,0,1747,-8,0,0 +2013,10,11,5,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1451,1,0,1609,1,0,0 +2013,8,18,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,630,-5,0,1501,-7,0,0 +2013,10,22,2,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-2,0,1408,-21,0,0 +2013,8,26,1,FL,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,-2,0,1035,12,0,0 +2013,8,19,1,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,615,6,0,935,0,0,0 +2013,7,23,2,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,-8,0,2223,-2,0,0 +2013,5,26,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2155,20,1,2306,10,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1525,-2,0,1705,9,0,0 +2013,8,21,3,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1445,20,1,1704,5,0,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2020,147,1,2235,143,1,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,88,1,1845,85,1,0 +2013,4,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1430,9,0,1600,-4,0,0 +2013,8,4,7,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,2030,-5,0,2257,-7,0,0 +2013,6,16,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-1,0,1943,19,1,0 +2013,6,23,7,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-6,0,645,-2,0,0 +2013,7,1,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,-10,0,1619,-2,0,0 +2013,4,7,7,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1555,-3,0,1745,-7,0,0 +2013,8,3,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1025,0,0,1150,0,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1920,3,0,2305,-12,0,0 +2013,10,31,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,912,-7,0,1053,5,0,0 +2013,5,25,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-7,0,914,-18,0,0 +2013,8,5,1,F9,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1350,0,0,1837,-16,0,0 +2013,10,10,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1448,0,0,1612,-3,0,0 +2013,9,19,4,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1815,59,1,2310,51,1,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1925,22,1,2215,-12,0,0 +2013,6,18,2,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,0,0,901,-7,0,0 +2013,6,25,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,740,38,1,915,35,1,0 +2013,10,11,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,2,0,1755,-16,0,0 +2013,7,25,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1025,-2,0,1135,-13,0,0 +2013,10,10,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,7,0,1225,5,0,0 +2013,7,28,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,0,0,2055,33,1,0 +2013,6,9,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1549,-7,0,2030,-14,0,0 +2013,7,5,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-9,0,2103,-11,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1605,1,0,1830,-23,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,-3,0,755,-5,0,0 +2013,7,17,3,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,-8,0,1208,-15,0,0 +2013,4,27,6,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1610,0,0,1820,-5,0,0 +2013,8,25,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1810,13,0,1935,0,0,0 +2013,8,8,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1715,-2,0,1839,-5,0,0 +2013,10,17,4,YV,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1255,-10,0,1507,-15,0,0 +2013,7,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,44,1,1835,36,1,0 +2013,6,10,1,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,825,-7,0,1119,-15,0,0 +2013,7,1,1,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,4,0,541,40,1,0 +2013,6,21,5,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,2054,-3,0,2228,0,0,0 +2013,10,1,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,4,0,1931,-6,0,0 +2013,9,22,7,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,1215,72,1,1743,55,1,0 +2013,9,26,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1220,2,0,1318,-7,0,0 +2013,10,4,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1050,-10,0,1502,-19,0,0 +2013,10,12,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1610,-5,0,1840,5,0,0 +2013,4,2,2,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-5,0,2033,-15,0,0 +2013,10,22,2,UA,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,954,-3,0,1458,-12,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1550,0,0,1812,-18,0,0 +2013,7,24,3,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1020,-3,0,1655,-13,0,0 +2013,5,21,2,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,815,78,1,1010,67,1,0 +2013,6,20,4,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,-1,0,915,-7,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1930,-2,0,2205,1,0,0 +2013,8,11,7,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,930,1,0,1041,-1,0,0 +2013,4,21,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1043,-2,0,1244,-10,0,0 +2013,8,20,2,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,600,-1,0,840,-4,0,0 +2013,4,24,3,WN,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1755,27,1,2325,7,0,0 +2013,4,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1735,-1,0,1825,-4,0,0 +2013,8,12,1,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1602,33,1,1918,59,1,0 +2013,4,24,3,B6,10140,Albuquerque International Sunport,Albuquerque,NM,12478,John F. Kennedy International,New York,NY,2355,59,1,557,25,1,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1737,32,1,1905,27,1,0 +2013,10,30,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,905,-4,0,1055,1,0,0 +2013,7,2,2,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,838,4,0,953,-2,0,0 +2013,7,5,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1730,-6,0,1910,-5,0,0 +2013,7,22,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1330,-5,0,1500,-12,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,1834,7,0,1959,-3,0,0 +2013,4,14,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1345,-4,0,2220,-39,0,0 +2013,5,1,3,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1655,37,1,1831,64,1,0 +2013,10,13,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1807,1,0,2020,-11,0,0 +2013,6,21,5,DL,12892,Los Angeles International,Los Angeles,CA,15304,Tampa International,Tampa,FL,2240,-6,0,629,-23,0,0 +2013,7,3,3,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1124,-4,0,1331,-30,0,0 +2013,10,17,4,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1230,25,1,1744,1,0,0 +2013,7,12,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,0,,1340,0,1,1 +2013,7,19,5,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1215,2,0,1525,-11,0,0 +2013,5,18,6,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-10,0,1737,-12,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-2,0,907,-14,0,0 +2013,9,27,5,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1655,5,0,1830,-11,0,0 +2013,4,10,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,815,1,0,936,-2,0,0 +2013,10,25,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1407,-5,0,1745,-8,0,0 +2013,8,21,3,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1945,-7,0,2101,-29,0,0 +2013,5,8,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1020,11,0,1040,-3,0,0 +2013,8,27,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1910,-14,0,2009,-24,0,0 +2013,7,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,16,1,2024,28,1,0 +2013,8,25,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1545,55,1,1825,50,1,0 +2013,6,9,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1700,-5,0,1855,-4,0,0 +2013,5,1,3,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1630,7,0,2323,3,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1450,22,1,1550,14,0,0 +2013,10,20,7,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1217,-9,0,1500,10,0,0 +2013,8,2,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1635,-4,0,1844,7,0,0 +2013,6,13,4,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,959,-11,0,1310,22,1,0 +2013,7,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,2146,132,1,16,108,1,0 +2013,9,11,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1800,2,0,1925,4,0,0 +2013,6,28,5,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1507,19,1,1612,37,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,9,0,1502,8,0,0 +2013,10,5,6,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,715,1,0,940,2,0,0 +2013,5,23,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,910,-2,0,1055,-32,0,0 +2013,6,14,5,9E,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,5,0,1237,3,0,0 +2013,6,2,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,902,29,1,1100,31,1,0 +2013,7,4,4,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,8,0,2019,-4,0,0 +2013,10,5,6,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1330,50,1,1522,43,1,0 +2013,10,24,4,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,-10,0,821,-21,0,0 +2013,10,12,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1505,-1,0,1555,-10,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,926,-7,0,1307,-17,0,0 +2013,10,30,3,HA,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,0,0,2359,1,0,0 +2013,9,8,7,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1555,15,1,1730,1,0,0 +2013,8,21,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1530,0,0,1645,-6,0,0 +2013,7,29,1,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1530,-4,0,1759,-6,0,0 +2013,5,5,7,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1315,-2,0,1625,-9,0,0 +2013,9,3,2,9E,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,71,1,2119,34,1,0 +2013,4,3,3,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,715,5,0,1235,-10,0,0 +2013,5,12,7,WN,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-2,0,1905,-13,0,0 +2013,10,22,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,-3,0,2135,-22,0,0 +2013,9,5,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-2,0,1035,-3,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1925,77,1,2320,69,1,0 +2013,7,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1000,-3,0,1145,2,0,0 +2013,9,6,5,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1150,-5,0,1340,-15,0,0 +2013,5,8,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2005,6,0,2010,2,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,745,-2,0,935,-10,0,0 +2013,4,21,7,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,840,-1,0,955,-2,0,0 +2013,7,22,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,755,-6,0,955,-14,0,0 +2013,7,28,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,930,0,0,1050,-7,0,0 +2013,6,12,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1845,173,1,2030,177,1,0 +2013,4,3,3,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1210,-3,0,1450,-3,0,0 +2013,4,30,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,830,-3,0,0 +2013,7,15,1,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1035,51,1,1155,54,1,0 +2013,5,26,7,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1225,-1,0,1335,-18,0,0 +2013,9,25,3,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1635,1,0,1849,-4,0,0 +2013,7,2,2,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-5,0,1940,-7,0,0 +2013,8,31,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1320,14,0,1450,-5,0,0 +2013,6,17,1,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-2,0,900,-1,0,0 +2013,9,27,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,2,0,2135,10,0,0 +2013,6,16,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1050,-19,0,0 +2013,8,19,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,35,1,2226,15,1,0 +2013,4,17,3,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1256,5,0,1439,-1,0,0 +2013,8,10,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,715,4,0,0 +2013,10,27,7,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1542,-5,0,1832,-17,0,0 +2013,6,29,6,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,735,7,0,1005,-2,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1302,0,,1542,0,1,1 +2013,6,12,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,825,-2,0,940,-3,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2036,29,1,2145,28,1,0 +2013,8,7,3,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1845,33,1,2030,37,1,0 +2013,4,30,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1445,-4,0,1608,3,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,1,0,1325,8,0,0 +2013,7,22,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1930,0,,2100,0,1,1 +2013,9,26,4,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1530,-1,0,1910,3,0,0 +2013,6,5,3,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1848,36,1,2226,19,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,720,-4,0,919,-12,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1540,77,1,1810,60,1,0 +2013,5,28,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,-1,0,1210,-4,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-3,0,1346,-5,0,0 +2013,6,10,1,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1912,24,1,2102,44,1,0 +2013,7,18,4,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,1,0,856,-7,0,0 +2013,6,11,2,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1745,-9,0,2016,-3,0,0 +2013,8,4,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1905,96,1,2025,96,1,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1125,-3,0,1255,-12,0,0 +2013,8,7,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1448,6,0,1745,-3,0,0 +2013,4,18,4,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,1020,316,1,1249,321,1,0 +2013,6,15,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-3,0,925,-4,0,0 +2013,5,19,7,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1230,-5,0,1331,-4,0,0 +2013,7,2,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,0,0,2045,9,0,0 +2013,9,25,3,UA,11278,Ronald Reagan Washington National,Washington,DC,14771,San Francisco International,San Francisco,CA,800,-7,0,1116,-3,0,0 +2013,5,16,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,650,0,0,750,-4,0,0 +2013,7,16,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,600,-12,0,800,-21,0,0 +2013,7,1,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1654,256,1,1954,247,1,0 +2013,6,17,1,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1600,-4,0,2205,-11,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1525,26,1,1815,22,1,0 +2013,6,19,3,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1145,14,0,1305,7,0,0 +2013,10,14,1,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1835,0,0,2015,-5,0,0 +2013,10,2,3,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2020,-8,0,2140,7,0,0 +2013,4,9,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,900,-8,0,940,-8,0,0 +2013,10,9,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1238,20,1,1348,7,0,0 +2013,6,28,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,944,31,1,1245,17,1,0 +2013,5,6,1,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-7,0,626,-2,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2140,-9,0,2237,6,0,0 +2013,8,7,3,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1343,0,0,1433,3,0,0 +2013,9,4,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,936,-3,0,1047,-5,0,0 +2013,7,30,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,100,1,29,78,1,0 +2013,6,29,6,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1045,-1,0,1617,-8,0,0 +2013,7,18,4,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,1145,-8,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1311,18,1,1601,10,0,0 +2013,4,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,10,0,1511,6,0,0 +2013,5,28,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1215,-1,0,1525,-4,0,0 +2013,9,18,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1054,-6,0,0 +2013,8,20,2,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,830,9,0,1045,-1,0,0 +2013,5,3,5,EV,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-8,0,1940,-10,0,0 +2013,4,3,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2155,-5,0,2300,-16,0,0 +2013,4,17,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1130,-8,0,1400,-10,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,905,-4,0,1125,-10,0,0 +2013,10,14,1,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,754,-12,0,0 +2013,5,27,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,805,-3,0,0 +2013,8,21,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-6,0,1335,-5,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,2130,12,0,2250,6,0,0 +2013,6,13,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1320,-14,0,1532,-12,0,0 +2013,4,2,2,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1123,5,0,1946,-4,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,710,-2,0,945,-8,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,2,0,1340,-31,0,0 +2013,5,13,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2020,-4,0,2220,-19,0,0 +2013,6,28,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1825,60,1,2100,53,1,0 +2013,5,19,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,107,1,1830,117,1,0 +2013,5,16,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,2030,1,0,2245,-24,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,1350,24,1,1910,15,1,0 +2013,8,13,2,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,-11,0,742,-22,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,2015,-2,0,2315,-7,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,800,1,0,855,5,0,0 +2013,5,8,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2118,-5,0,2223,-10,0,0 +2013,6,11,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2110,40,1,2212,30,1,0 +2013,7,18,4,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1420,9,0,1630,-16,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,956,-1,0,1153,-16,0,0 +2013,8,19,1,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,838,10,0,1027,7,0,0 +2013,6,19,3,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-2,0,1655,76,1,0 +2013,7,17,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,1,0,1056,-12,0,0 +2013,5,23,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2130,28,1,2250,21,1,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1118,-5,0,1305,0,0,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1240,-6,0,1500,-5,0,0 +2013,8,7,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,7,0,2155,7,0,0 +2013,5,30,4,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1209,5,0,1532,14,0,0 +2013,9,11,3,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1420,15,1,1605,7,0,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,930,-8,0,1220,-25,0,0 +2013,4,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-8,0,806,-22,0,0 +2013,8,7,3,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,745,0,0,1019,-8,0,0 +2013,8,4,7,US,14683,San Antonio International,San Antonio,TX,14100,Philadelphia International,Philadelphia,PA,810,-10,0,1245,-17,0,0 +2013,4,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,34,1,2135,17,1,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,920,2,0,1240,14,0,0 +2013,7,12,5,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1746,127,1,1925,160,1,0 +2013,6,22,6,UA,14635,Southwest Florida International,Fort Myers,FL,12266,George Bush Intercontinental/Houston,Houston,TX,606,-2,0,729,-13,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,38,1,1000,13,0,0 +2013,8,10,6,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1040,-7,0,1310,-11,0,0 +2013,5,8,3,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1825,-4,0,1939,-20,0,0 +2013,9,19,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,66,1,2105,57,1,0 +2013,9,30,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1400,-2,0,1525,-5,0,0 +2013,9,6,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-9,0,1407,15,1,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1719,-7,0,1902,-25,0,0 +2013,4,10,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,2,0,1836,-10,0,0 +2013,9,21,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,-4,0,938,-4,0,0 +2013,8,14,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,0,0,1843,-10,0,0 +2013,7,11,4,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-1,0,1915,-12,0,0 +2013,8,11,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,5,0,2300,7,0,0 +2013,8,27,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1255,-4,0,1600,-7,0,0 +2013,4,24,3,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,-7,0,1636,3,0,0 +2013,7,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,844,26,1,1009,1,0,0 +2013,10,4,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,39,1,1100,38,1,0 +2013,7,12,5,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-4,0,500,7,0,0 +2013,8,7,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1712,2,0,1733,39,1,0 +2013,7,25,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1155,-5,0,1425,9,0,0 +2013,5,31,5,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,-2,0,1733,-14,0,0 +2013,5,3,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1935,31,1,2045,17,1,0 +2013,10,18,5,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,827,-3,0,1011,2,0,0 +2013,7,11,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,650,-2,0,1230,-15,0,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,855,-3,0,1333,15,1,0 +2013,5,26,7,FL,12339,Indianapolis International,Indianapolis,IN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1358,-4,0,1633,-11,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,739,28,1,936,33,1,0 +2013,4,18,4,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,715,-1,0,1246,11,0,0 +2013,5,27,1,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1650,17,1,1920,18,1,0 +2013,6,18,2,WN,10423,Austin - Bergstrom International,Austin,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,283,1,2235,259,1,0 +2013,8,22,4,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2120,83,1,2135,74,1,0 +2013,4,10,3,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1057,-7,0,1259,-4,0,0 +2013,8,1,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,1545,12,0,1649,8,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1230,19,1,1435,6,0,0 +2013,5,4,6,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,650,-4,0,1005,-13,0,0 +2013,8,13,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1355,130,1,1630,120,1,0 +2013,10,16,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,-6,0,1939,-8,0,0 +2013,8,12,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,1,0,1340,-3,0,0 +2013,8,20,2,WN,13342,General Mitchell International,Milwaukee,WI,15016,Lambert-St. Louis International,St. Louis,MO,1855,0,0,2005,-11,0,0 +2013,7,21,7,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,10,0,742,6,0,0 +2013,7,9,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,3,0,1320,-11,0,0 +2013,6,3,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,905,-7,0,1156,-20,0,0 +2013,4,13,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1415,18,1,1430,6,0,0 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2055,50,1,2311,33,1,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,620,0,0,805,-11,0,0 +2013,4,30,2,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1215,-3,0,2040,8,0,0 +2013,10,31,4,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1545,-9,0,1930,-18,0,0 +2013,4,13,6,OO,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1555,48,1,1733,44,1,0 +2013,9,24,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,930,-2,0,1040,-15,0,0 +2013,8,21,3,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1455,25,1,1810,25,1,0 +2013,6,3,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1110,0,0,1230,9,0,0 +2013,9,10,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1930,31,1,2036,101,1,0 +2013,5,30,4,UA,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1655,0,,1800,0,1,1 +2013,6,20,4,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,900,41,1,1105,19,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1020,10,0,1455,-16,0,0 +2013,6,11,2,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,17,1,1421,11,0,0 +2013,6,4,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1250,8,0,1439,-7,0,0 +2013,6,19,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,44,1,1735,40,1,0 +2013,5,19,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2039,-2,0,2225,-19,0,0 +2013,8,11,7,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1439,2,0,1644,2,0,0 +2013,9,25,3,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,2,0,1729,24,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1510,-1,0,1719,-4,0,0 +2013,7,7,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1230,-3,0,1330,-13,0,0 +2013,5,17,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1040,-4,0,1230,-11,0,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1210,0,0,1450,-9,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,21,1,2112,1,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,740,4,0,1230,-8,0,0 +2013,6,8,6,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-3,0,1516,-2,0,0 +2013,5,27,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-2,0,650,2,0,0 +2013,8,17,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,3,0,1710,-5,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,835,-4,0,907,-13,0,0 +2013,4,19,5,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1823,2,0,2100,0,0,0 +2013,8,3,6,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1015,-15,0,1235,-5,0,0 +2013,10,2,3,FL,11278,Ronald Reagan Washington National,Washington,DC,14635,Southwest Florida International,Fort Myers,FL,800,-6,0,1033,-16,0,0 +2013,10,23,3,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-5,0,1900,-17,0,0 +2013,5,3,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1736,3,0,1900,8,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1745,19,1,1935,13,0,0 +2013,7,25,4,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1745,129,1,2145,144,1,0 +2013,5,15,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,0,0,1531,-8,0,0 +2013,9,2,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,0,0,1530,14,0,0 +2013,5,12,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1605,1,0,1830,-17,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14570,Reno/Tahoe International,Reno,NV,958,-5,0,1149,-25,0,0 +2013,10,8,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1744,1,0,2025,1,0,0 +2013,10,10,4,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,34,1,1910,25,1,0 +2013,6,14,5,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1110,-3,0,1413,-32,0,0 +2013,9,5,4,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1655,3,0,1930,4,0,0 +2013,9,21,6,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1320,7,0,1615,-13,0,0 +2013,6,30,7,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,725,22,1,926,23,1,0 +2013,7,17,3,YV,11057,Charlotte Douglas International,Charlotte,NC,11066,Port Columbus International,Columbus,OH,730,-4,0,848,-12,0,0 +2013,6,5,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1800,-10,0,2026,9,0,0 +2013,4,21,7,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-7,0,1215,-19,0,0 +2013,8,15,4,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,925,-2,0,1010,0,0,0 +2013,7,25,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1015,0,0,1245,6,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1815,19,1,2015,16,1,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1546,35,1,1657,17,1,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1610,-3,0,1715,-5,0,0 +2013,4,26,5,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,635,0,0,750,-11,0,0 +2013,8,26,1,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1810,-8,0,2021,-19,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,-1,0,1758,-3,0,0 +2013,8,5,1,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,2005,7,0,2138,-1,0,0 +2013,4,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,15,1,2135,25,1,0 +2013,9,24,2,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-2,0,825,-11,0,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,905,-3,0,1150,-3,0,0 +2013,6,1,6,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1715,2,0,2215,-6,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1123,2,0,1350,-10,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1908,22,1,2051,11,0,0 +2013,10,22,2,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,3,0,1435,-10,0,0 +2013,9,13,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1440,47,1,1739,31,1,0 +2013,4,8,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1518,1,0,1722,-9,0,0 +2013,10,24,4,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1146,-8,0,1412,-23,0,0 +2013,10,14,1,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,609,-6,0,740,-16,0,0 +2013,10,8,2,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1600,-5,0,1722,-31,0,0 +2013,10,22,2,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1555,60,1,1729,51,1,0 +2013,7,9,2,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,-7,0,1830,4,0,0 +2013,7,2,2,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,829,-3,0,1143,-26,0,0 +2013,7,16,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,851,-4,0,1212,-16,0,0 +2013,9,23,1,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,23,1,1945,1,0,0 +2013,4,28,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1145,5,0,1404,0,0,0 +2013,6,11,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-8,0,1555,-11,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,845,-2,0,953,2,0,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-7,0,2100,11,0,0 +2013,4,28,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1115,-6,0,1300,-17,0,0 +2013,5,31,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-2,0,900,-3,0,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1745,-2,0,1753,-16,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2210,13,0,2330,15,1,0 +2013,8,11,7,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,615,-10,0,846,-9,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1420,3,0,1645,-6,0,0 +2013,7,9,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,45,1,1205,45,1,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,2025,-3,0,2151,35,1,0 +2013,5,2,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1514,7,0,1709,-7,0,0 +2013,5,1,3,EV,11278,Ronald Reagan Washington National,Washington,DC,13244,Memphis International,Memphis,TN,1731,-4,0,1855,-16,0,0 +2013,4,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,-6,0,1756,-26,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2359,-3,0,343,6,0,0 +2013,8,30,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1639,11,0,1746,4,0,0 +2013,7,8,1,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,915,10,0,1055,9,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,939,-8,0,1101,-10,0,0 +2013,8,17,6,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-2,0,2139,-20,0,0 +2013,7,27,6,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,749,18,1,927,5,0,0 +2013,8,17,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-2,0,1215,-8,0,0 +2013,8,20,2,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1905,53,1,2103,14,0,0 +2013,9,13,5,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,914,-5,0,1250,-24,0,0 +2013,7,27,6,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1845,35,1,2105,33,1,0 +2013,4,5,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,2,0,1505,-6,0,0 +2013,7,16,2,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,922,-12,0,1046,-32,0,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1545,10,0,1740,-4,0,0 +2013,4,28,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-6,0,1140,-22,0,0 +2013,10,29,2,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1133,-4,0,1310,2,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1746,-10,0,1902,-26,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,625,5,0,715,-6,0,0 +2013,9,8,7,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-1,0,1230,-15,0,0 +2013,9,25,3,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,911,-6,0,1119,-22,0,0 +2013,10,14,1,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1701,-2,0,1920,-3,0,0 +2013,10,22,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1600,-6,0,1715,-29,0,0 +2013,10,16,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,27,1,1600,26,1,0 +2013,10,19,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,730,-2,0,840,-11,0,0 +2013,6,24,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1005,-5,0,1130,0,0,0 +2013,9,18,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1725,253,1,1845,267,1,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1157,0,0,1447,-23,0,0 +2013,7,6,6,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1020,73,1,1300,69,1,0 +2013,10,28,1,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-6,0,1021,-20,0,0 +2013,9,20,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1735,0,,1937,0,1,1 +2013,9,28,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1849,32,1,2030,15,1,0 +2013,8,11,7,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-3,0,1940,13,0,0 +2013,10,7,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1822,0,0,2108,-11,0,0 +2013,10,21,1,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,3,0,615,-8,0,0 +2013,7,13,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-4,0,1010,1,0,0 +2013,6,26,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,28,1,2320,43,1,0 +2013,9,25,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1830,-1,0,2122,-13,0,0 +2013,6,7,5,WN,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,955,2,0,1210,7,0,0 +2013,6,11,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,650,-3,0,855,-9,0,0 +2013,10,19,6,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1040,12,0,1250,24,1,0 +2013,5,5,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,825,-1,0,855,-15,0,0 +2013,9,29,7,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,-7,0,2130,2,0,0 +2013,4,3,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,-4,0,1841,-15,0,0 +2013,7,27,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,635,18,1,724,-7,0,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1945,10,0,2250,6,0,0 +2013,7,20,6,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1610,8,0,1835,0,0,0 +2013,7,6,6,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,705,0,0,1230,-7,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1538,-3,0,1725,-3,0,0 +2013,7,7,7,DL,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1959,0,,2140,0,1,1 +2013,10,27,7,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1520,0,0,1930,2,0,0 +2013,6,13,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,955,142,1,1750,177,1,0 +2013,6,7,5,YV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1329,-3,0,1646,-1,0,0 +2013,4,2,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,847,0,0,1101,7,0,0 +2013,9,22,7,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,2,0,1933,-7,0,0 +2013,8,25,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,-4,0,940,-12,0,0 +2013,6,27,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,935,85,1,1235,57,1,0 +2013,5,31,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1341,-10,0,1542,-13,0,0 +2013,9,12,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,75,1,1916,76,1,0 +2013,7,28,7,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-7,0,1310,-7,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,-2,0,1948,-9,0,0 +2013,8,21,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,745,-4,0,1134,-11,0,0 +2013,6,6,4,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1915,-2,0,2242,14,0,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1935,-3,0,2150,-25,0,0 +2013,10,20,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1320,0,0,1729,-1,0,0 +2013,5,5,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,-1,0,1630,11,0,0 +2013,7,10,3,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,900,13,0,1215,12,0,0 +2013,6,26,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,0,0,830,-9,0,0 +2013,8,11,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,2055,114,1,2348,102,1,0 +2013,6,20,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,6,0,2300,-2,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,1000,-11,0,0 +2013,10,31,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,730,240,1,815,236,1,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,-6,0,903,-11,0,0 +2013,4,19,5,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2215,-5,0,715,-29,0,0 +2013,9,7,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,850,-1,0,1037,-16,0,0 +2013,7,28,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,-8,0,1923,-6,0,0 +2013,7,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2124,0,0,12,-2,0,0 +2013,5,24,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1710,0,0,1745,-15,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1810,24,1,2240,21,1,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1633,-2,0,1806,-10,0,0 +2013,6,23,7,AS,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1005,-8,0,1605,-14,0,0 +2013,6,14,5,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1823,2,0,2123,28,1,0 +2013,7,20,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,735,-9,0,905,-26,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-5,0,2200,-4,0,0 +2013,4,6,6,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1450,-6,0,1730,-4,0,0 +2013,8,12,1,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,1058,23,1,1906,17,1,0 +2013,8,23,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,15,1,1825,30,1,0 +2013,7,12,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,-2,0,1223,-7,0,0 +2013,10,28,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1545,-8,0,1705,-20,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1740,2,0,2021,3,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,827,-8,0,1025,-12,0,0 +2013,5,22,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,-9,0,1746,-9,0,0 +2013,9,28,6,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1345,4,0,1544,-24,0,0 +2013,8,18,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2140,-3,0,2220,-5,0,0 +2013,10,9,3,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1345,-4,0,1640,-8,0,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1140,-4,0,1410,-2,0,0 +2013,10,10,4,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-7,0,1039,-12,0,0 +2013,10,5,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,740,0,0,855,12,0,0 +2013,6,16,7,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,2110,117,1,30,113,1,0 +2013,10,15,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-1,0,1757,-2,0,0 +2013,5,21,2,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1015,-7,0,1129,-17,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,820,-6,0,833,-15,0,0 +2013,8,27,2,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-8,0,2205,-17,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1505,4,0,1835,9,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2010,10,0,2115,-1,0,0 +2013,8,2,5,AA,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1705,65,1,1910,90,1,0 +2013,7,24,3,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,600,-2,0,855,2,0,0 +2013,9,8,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1053,-3,0,1428,-10,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2135,7,0,2230,-3,0,0 +2013,7,5,5,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,830,-4,0,950,-9,0,0 +2013,7,7,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,735,0,0,940,-20,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1122,-1,0,1329,-27,0,0 +2013,4,4,4,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1715,-8,0,1840,15,1,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,838,-6,0,1715,1,0,0 +2013,5,6,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,1,0,1713,22,1,0 +2013,10,24,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1930,-4,0,2125,-22,0,0 +2013,10,18,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,1100,-12,0,0 +2013,9,27,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1335,10,0,1505,3,0,0 +2013,7,30,2,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1105,-1,0,1230,-12,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,11278,Ronald Reagan Washington National,Washington,DC,1715,-1,0,1808,7,0,0 +2013,10,27,7,OO,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1444,-4,0,1615,3,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-3,0,1214,-13,0,0 +2013,10,30,3,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1158,-3,0,1506,-24,0,0 +2013,9,14,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1507,-4,0,2007,-12,0,0 +2013,8,20,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,47,1,2035,47,1,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1910,-4,0,2042,-28,0,0 +2013,8,24,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1713,3,0,1820,-4,0,0 +2013,6,13,4,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1655,3,0,1910,-3,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2235,65,1,2355,88,1,0 +2013,9,7,6,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1304,0,0,2131,9,0,0 +2013,6,23,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1510,51,1,1850,35,1,0 +2013,6,24,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1159,15,1,1450,18,1,0 +2013,6,20,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1016,-3,0,1100,-9,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,600,-6,0,731,-9,0,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1445,3,0,1610,12,0,0 +2013,7,19,5,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,2115,45,1,2230,41,1,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-1,0,1535,-24,0,0 +2013,4,15,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1529,-9,0,1648,-1,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1010,-5,0,1255,-17,0,0 +2013,6,11,2,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1735,25,1,1937,-6,0,0 +2013,9,30,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-4,0,1221,-5,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,4,0,2152,-3,0,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,730,-6,0,1142,-21,0,0 +2013,7,10,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1942,0,,2100,0,1,1 +2013,6,3,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1025,4,0,1150,-8,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1105,-2,0,1236,11,0,0 +2013,4,24,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-1,0,1610,-3,0,0 +2013,6,2,7,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,130,1,1911,141,1,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-6,0,1600,6,0,0 +2013,7,10,3,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1825,0,,2046,0,1,1 +2013,10,4,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,845,-1,0,1116,-22,0,0 +2013,4,3,3,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,613,5,0,811,15,1,0 +2013,9,22,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2105,1,0,2320,-5,0,0 +2013,8,7,3,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1825,0,0,2147,9,0,0 +2013,7,12,5,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1929,11,0,30,17,1,0 +2013,10,20,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2129,0,0,2323,12,0,0 +2013,8,21,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,741,-10,0,936,-37,0,0 +2013,5,12,7,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1915,3,0,2250,-9,0,0 +2013,5,1,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1820,-1,0,1935,-8,0,0 +2013,6,20,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1006,-6,0,1628,-5,0,0 +2013,8,26,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14869,Salt Lake City International,Salt Lake City,UT,840,20,1,1022,10,0,0 +2013,4,22,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1550,47,1,1655,38,1,0 +2013,5,8,3,9E,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,-7,0,1914,2,0,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,850,-6,0,1552,-33,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1215,63,1,1959,58,1,0 +2013,6,13,4,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,40,1,2215,36,1,0 +2013,10,29,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1446,-3,0,1706,-14,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1405,-2,0,1530,16,1,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,-1,0,2104,-17,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1555,-3,0,1740,-21,0,0 +2013,4,12,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,10,0,1400,8,0,0 +2013,5,3,5,DL,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1854,-4,0,2144,-17,0,0 +2013,8,7,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-1,0,1250,-1,0,0 +2013,5,17,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,4,0,902,-6,0,0 +2013,7,25,4,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1105,-9,0,1931,-13,0,0 +2013,10,14,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,905,49,1,1118,58,1,0 +2013,7,19,5,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1615,-7,0,1800,-22,0,0 +2013,10,6,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1559,2,0,1730,-10,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1825,2,0,2215,-1,0,0 +2013,10,6,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1650,-6,0,1715,-13,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,42,1,2128,55,1,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,12953,LaGuardia,New York,NY,1320,53,1,1750,36,1,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,-2,0,1000,2,0,0 +2013,4,14,7,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,-1,0,1315,-15,0,0 +2013,6,18,2,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1410,-7,0,1553,-12,0,0 +2013,9,12,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,1,0,1324,6,0,0 +2013,10,14,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,0,0,1553,-13,0,0 +2013,10,2,3,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,7,0,1257,-11,0,0 +2013,4,3,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1109,-2,0,1242,4,0,0 +2013,4,22,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,-4,0,2255,-10,0,0 +2013,5,16,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,842,-3,0,1110,-13,0,0 +2013,7,2,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1720,66,1,2000,67,1,0 +2013,4,29,1,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2000,45,1,2230,46,1,0 +2013,5,29,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,630,1,0,735,-8,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1339,-3,0,1447,-7,0,0 +2013,6,16,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,41,1,936,28,1,0 +2013,6,8,6,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,935,0,0,1740,2,0,0 +2013,10,14,1,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1656,-4,0,1758,-11,0,0 +2013,8,1,4,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1226,0,,1343,0,1,1 +2013,8,18,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,0,0,1943,7,0,0 +2013,8,23,5,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2157,24,1,2342,23,1,0 +2013,9,11,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1505,-10,0,1727,12,0,0 +2013,9,30,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2308,4,0,2359,-2,0,0 +2013,5,11,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1835,71,1,1920,60,1,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1115,-5,0,1310,-13,0,0 +2013,9,30,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,748,-7,0,838,5,0,0 +2013,6,22,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,-3,0,1705,-7,0,0 +2013,5,13,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-12,0,2057,-13,0,0 +2013,7,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,840,-7,0,1000,-9,0,0 +2013,5,12,7,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1600,2,0,1720,-14,0,0 +2013,9,4,3,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,0,0,1005,-8,0,0 +2013,10,25,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1723,0,0,1959,-16,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1502,14,0,1549,12,0,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1725,0,0,1920,-18,0,0 +2013,6,30,7,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1725,11,0,2027,2,0,0 +2013,10,2,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1310,-4,0,1325,-1,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1730,-2,0,1825,-14,0,0 +2013,9,9,1,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,700,-4,0,1019,-7,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,725,-2,0,850,-12,0,0 +2013,4,20,6,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1310,23,1,1435,9,0,0 +2013,4,5,5,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1440,104,1,1800,90,1,0 +2013,7,11,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,1423,-1,0,1613,-14,0,0 +2013,10,19,6,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-5,0,1108,-22,0,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1551,-6,0,1740,3,0,0 +2013,9,6,5,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,900,28,1,1145,15,1,0 +2013,4,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,929,-2,0,1311,-20,0,0 +2013,6,10,1,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,10,0,1735,0,0,0 +2013,4,22,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2050,32,1,2155,24,1,0 +2013,9,3,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,-2,0,1939,-12,0,0 +2013,10,25,5,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1824,127,1,2207,118,1,0 +2013,9,20,5,DL,12478,John F. Kennedy International,New York,NY,14683,San Antonio International,San Antonio,TX,1925,-5,0,2248,-32,0,0 +2013,6,18,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,0,,1010,0,1,1 +2013,5,22,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1355,-3,0,1520,4,0,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,700,-2,0,1235,2,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1550,0,0,2035,-14,0,0 +2013,6,5,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,955,0,0,1046,2,0,0 +2013,4,2,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-9,0,1336,-13,0,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,28,1,1425,7,0,0 +2013,4,29,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1754,-2,0,1828,-1,0,0 +2013,8,15,4,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,0,0,1210,-5,0,0 +2013,8,25,7,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,61,1,1751,49,1,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1145,-1,0,1510,-5,0,0 +2013,10,14,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,14730,Louisville International-Standiford Field,Louisville,KY,1520,-3,0,1813,2,0,0 +2013,7,2,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1635,7,0,1815,2,0,0 +2013,6,6,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1850,8,0,1940,9,0,0 +2013,6,16,7,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,83,1,856,76,1,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-3,0,947,-7,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1955,0,0,2300,-2,0,0 +2013,5,5,7,AS,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,800,-9,0,1650,1,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1930,86,1,2230,80,1,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1050,43,1,1355,41,1,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1130,-6,0,1249,7,0,0 +2013,9,6,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,700,-3,0,840,-29,0,0 +2013,5,9,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,5,0,2045,8,0,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,2,0,1915,-8,0,0 +2013,8,12,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,8,0,1905,10,0,0 +2013,4,4,4,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1750,117,1,2110,129,1,0 +2013,5,6,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,2050,-2,0,2309,-7,0,0 +2013,9,9,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1859,-6,0,2126,-12,0,0 +2013,5,15,3,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1759,6,0,1944,23,1,0 +2013,4,18,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,20,1,1540,78,1,0 +2013,7,19,5,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,705,-3,0,911,-16,0,0 +2013,7,12,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1105,-1,0,1230,-7,0,0 +2013,6,7,5,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1536,-8,0,1859,-6,0,0 +2013,5,28,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1030,5,0,1250,-7,0,0 +2013,7,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1725,0,0,1825,-11,0,0 +2013,7,27,6,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1412,-3,0,1820,-15,0,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1311,46,1,1456,41,1,0 +2013,6,26,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,715,13,0,921,-7,0,0 +2013,10,17,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1426,-2,0,1558,-10,0,0 +2013,6,18,2,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,900,18,1,1440,-1,0,0 +2013,8,17,6,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1440,-1,0,1610,-13,0,0 +2013,6,17,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1351,3,0,1427,16,1,0 +2013,6,19,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1331,-2,0,1406,-1,0,0 +2013,6,30,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,710,14,0,830,18,1,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1949,24,1,2225,36,1,0 +2013,4,3,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1358,-2,0,1559,-21,0,0 +2013,8,15,4,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,-5,0,1355,-16,0,0 +2013,10,30,3,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,1756,14,0,1920,1,0,0 +2013,4,12,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2000,15,1,2112,12,0,0 +2013,8,15,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,0,0,1500,5,0,0 +2013,5,17,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1300,-5,0,1538,-22,0,0 +2013,9,17,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1645,-3,0,1925,-7,0,0 +2013,7,3,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,-7,0,2300,22,1,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,820,29,1,1155,3,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1730,0,0,1928,-15,0,0 +2013,7,15,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,2135,4,0,2325,-16,0,0 +2013,7,11,4,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1030,20,1,1145,20,1,0 +2013,9,8,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1923,-3,0,2312,-14,0,0 +2013,8,9,5,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1335,44,1,1650,48,1,0 +2013,7,12,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,9,0,2055,15,1,0 +2013,4,9,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1557,1,0,1758,-16,0,0 +2013,9,10,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,1,0,905,4,0,0 +2013,5,10,5,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,805,-2,0,1130,-14,0,0 +2013,10,21,1,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-4,0,753,12,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1020,6,0,1655,-8,0,0 +2013,4,13,6,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-9,0,754,9,0,0 +2013,6,2,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,620,6,0,1453,-1,0,0 +2013,5,3,5,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1533,-2,0,1830,-1,0,0 +2013,9,28,6,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,633,-4,0,949,-38,0,0 +2013,9,5,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1552,-12,0,1651,-27,0,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1845,-7,0,2033,-17,0,0 +2013,9,12,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,19,1,2000,23,1,0 +2013,4,20,6,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,36,1,1640,24,1,0 +2013,10,11,5,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,800,-5,0,1055,-12,0,0 +2013,4,7,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-7,0,1814,-27,0,0 +2013,8,24,6,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,845,357,1,1420,351,1,0 +2013,9,17,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14570,Reno/Tahoe International,Reno,NV,1545,1,0,1725,-8,0,0 +2013,7,3,3,WN,12191,William P Hobby,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1230,-2,0,1350,-8,0,0 +2013,8,13,2,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,655,-5,0,740,-8,0,0 +2013,6,24,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,65,1,2011,73,1,0 +2013,10,14,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2330,-2,0,520,-10,0,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,900,2,0,1625,-9,0,0 +2013,6,27,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1348,-9,0,1510,-8,0,0 +2013,10,19,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,5,0,1430,-1,0,0 +2013,8,3,6,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-10,0,1030,-13,0,0 +2013,6,17,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1644,26,1,1815,32,1,0 +2013,10,10,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,830,-3,0,927,-10,0,0 +2013,6,14,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,720,99,1,926,118,1,0 +2013,8,2,5,WN,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1330,29,1,1830,24,1,0 +2013,4,17,3,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1820,-4,0,2110,-27,0,0 +2013,10,2,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1603,17,1,1710,12,0,0 +2013,6,14,5,EV,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1730,54,1,2055,38,1,0 +2013,8,18,7,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,-5,0,1952,-22,0,0 +2013,10,9,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,10423,Austin - Bergstrom International,Austin,TX,840,-2,0,1050,-22,0,0 +2013,8,15,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2042,0,0,454,-7,0,0 +2013,7,8,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1225,51,1,1310,48,1,0 +2013,9,6,5,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,2,0,1917,-1,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,11066,Port Columbus International,Columbus,OH,2010,57,1,2220,53,1,0 +2013,9,20,5,YV,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,8,0,655,4,0,0 +2013,6,19,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1415,-8,0,1549,-16,0,0 +2013,6,22,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,810,57,1,1030,51,1,0 +2013,4,3,3,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1155,-1,0,1455,-12,0,0 +2013,5,8,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,26,1,1850,-17,0,0 +2013,9,20,5,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1324,109,1,1457,133,1,0 +2013,6,6,4,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1101,-3,0,1334,-12,0,0 +2013,7,30,2,AA,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,810,0,0,1615,-17,0,0 +2013,4,4,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,39,1,2325,48,1,0 +2013,9,20,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1930,41,1,2105,37,1,0 +2013,8,30,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1530,232,1,1755,223,1,0 +2013,10,15,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1313,6,0,1525,-6,0,0 +2013,4,21,7,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,25,1,2045,43,1,0 +2013,9,1,7,DL,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,820,-5,0,1053,-15,0,0 +2013,9,9,1,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1850,-10,0,2052,-1,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,948,-1,0,1316,6,0,0 +2013,4,16,2,EV,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,912,75,1,1155,67,1,0 +2013,6,18,2,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1510,84,1,1745,71,1,0 +2013,8,24,6,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1605,-5,0,1830,-13,0,0 +2013,6,11,2,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,0,0,1320,-8,0,0 +2013,6,12,3,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1235,-3,0,1415,-8,0,0 +2013,7,7,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1100,0,0,1145,9,0,0 +2013,6,30,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,1350,34,1,1615,15,1,0 +2013,10,2,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-3,0,1007,-7,0,0 +2013,5,2,4,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1020,0,0,1152,20,1,0 +2013,8,25,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1645,-3,0,1745,-8,0,0 +2013,5,16,4,OO,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1430,13,0,1610,7,0,0 +2013,8,15,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1005,-1,0,1205,3,0,0 +2013,7,31,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1415,-3,0,1700,-5,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-4,0,1019,5,0,0 +2013,6,15,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2155,13,0,105,10,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1959,-5,0,2118,3,0,0 +2013,7,15,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1059,21,1,1240,46,1,0 +2013,7,15,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,25,1,1457,17,1,0 +2013,8,23,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,620,-6,0,730,-7,0,0 +2013,10,28,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-3,0,854,-19,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1525,-3,0,1920,-8,0,0 +2013,10,9,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,2308,-4,0,2359,-9,0,0 +2013,4,28,7,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1055,-13,0,1140,-13,0,0 +2013,9,13,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,1045,5,0,1145,-7,0,0 +2013,8,4,7,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,655,-2,0,1000,-3,0,0 +2013,7,16,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-5,0,905,-8,0,0 +2013,4,16,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1535,10,0,1835,10,0,0 +2013,8,4,7,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,955,-5,0,1315,-13,0,0 +2013,6,4,2,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1759,-13,0,1925,-26,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,-5,0,2201,-9,0,0 +2013,10,18,5,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,700,-1,0,826,-18,0,0 +2013,6,6,4,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1450,12,0,1610,4,0,0 +2013,9,30,1,EV,13851,Will Rogers World,Oklahoma City,OK,11618,Newark Liberty International,Newark,NJ,622,-4,0,1039,-3,0,0 +2013,8,26,1,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,655,-1,0,754,-7,0,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,15376,Tucson International,Tucson,AZ,1955,-3,0,2135,-3,0,0 +2013,10,27,7,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1344,0,0,1553,-12,0,0 +2013,5,8,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,730,-3,0,1103,-16,0,0 +2013,10,25,5,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,823,6,0,0 +2013,9,26,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-1,0,824,1,0,0 +2013,7,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1645,14,0,1915,132,1,0 +2013,10,23,3,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,820,-2,0,1132,11,0,0 +2013,7,2,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1305,-3,0,1557,-4,0,0 +2013,6,5,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,842,-2,0,1130,11,0,0 +2013,7,7,7,DL,13244,Memphis International,Memphis,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,108,1,2050,106,1,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1120,41,1,1325,29,1,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1051,59,1,1256,44,1,0 +2013,4,16,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,121,1,1831,132,1,0 +2013,6,26,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,3,0,1911,91,1,0 +2013,4,14,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1450,-5,0,1751,-24,0,0 +2013,9,25,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-12,0,1035,-14,0,0 +2013,6,15,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1300,1,0,1620,6,0,0 +2013,7,24,3,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,915,-6,0,1055,-12,0,0 +2013,10,9,3,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,759,-4,0,1100,-20,0,0 +2013,9,16,1,UA,14679,San Diego International,San Diego,CA,12264,Washington Dulles International,Washington,DC,2209,-6,0,556,-17,0,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,810,-2,0,1055,-18,0,0 +2013,6,20,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,15,1,1816,13,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1355,12,0,1601,26,1,0 +2013,6,17,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-8,0,1428,-10,0,0 +2013,10,12,6,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,-6,0,1634,-21,0,0 +2013,9,22,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1050,35,1,1247,25,1,0 +2013,6,20,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14524,Richmond International,Richmond,VA,1905,0,0,2307,-11,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1003,-4,0,1343,-14,0,0 +2013,10,17,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,710,10,0,825,2,0,0 +2013,4,12,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-1,0,1610,-15,0,0 +2013,10,23,3,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1020,14,0,1242,-12,0,0 +2013,5,15,3,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1140,-7,0,1253,-9,0,0 +2013,8,31,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1618,-10,0,1754,-8,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-2,0,928,-7,0,0 +2013,4,29,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1358,-4,0,1424,-8,0,0 +2013,9,22,7,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,2005,61,1,2130,63,1,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1741,233,1,1848,250,1,0 +2013,7,16,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1810,-10,0,1910,5,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,715,-2,0,849,-11,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1855,2,0,2320,2,0,0 +2013,5,16,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11066,Port Columbus International,Columbus,OH,840,-4,0,1100,-8,0,0 +2013,8,27,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,29,1,2205,8,0,0 +2013,6,16,7,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,739,-4,0,0 +2013,8,14,3,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1905,8,0,2108,-4,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1440,10,0,1640,5,0,0 +2013,10,6,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2030,18,1,2129,-1,0,0 +2013,9,14,6,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,910,-5,0,1025,5,0,0 +2013,8,7,3,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1350,-10,0,1525,-8,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1535,0,0,1640,1,0,0 +2013,8,10,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-1,0,1941,15,1,0 +2013,7,29,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1447,2,0,1700,20,1,0 +2013,4,27,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1016,-5,0,1332,-5,0,0 +2013,7,3,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1855,-8,0,1953,-3,0,0 +2013,4,26,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2135,-4,0,2255,-11,0,0 +2013,5,8,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,27,1,1540,-1,0,0 +2013,7,22,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,2000,1,0,2100,-2,0,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-3,0,1326,0,0,0 +2013,4,28,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,5,0,1135,1,0,0 +2013,8,28,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-4,0,1016,-9,0,0 +2013,5,25,6,OO,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,630,-2,0,851,9,0,0 +2013,4,14,7,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-8,0,844,0,0,0 +2013,9,2,1,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1942,-1,0,2155,-4,0,0 +2013,7,10,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,655,-5,0,906,-17,0,0 +2013,5,9,4,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-2,0,950,-21,0,0 +2013,6,19,3,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1146,115,1,1747,106,1,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,-5,0,2128,-16,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,14570,Reno/Tahoe International,Reno,NV,1620,16,1,1825,19,1,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1550,16,1,1748,12,0,0 +2013,6,23,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1645,7,0,1800,2,0,0 +2013,9,10,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1000,1,0,1315,-5,0,0 +2013,5,24,5,WN,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1810,-1,0,2125,-7,0,0 +2013,9,4,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1510,-5,0,1714,-12,0,0 +2013,8,23,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,715,-2,0,930,-1,0,0 +2013,8,7,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,-2,0,1924,-20,0,0 +2013,7,25,4,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1705,-3,0,1934,-11,0,0 +2013,4,8,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1815,3,0,1940,5,0,0 +2013,4,19,5,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1518,103,1,1633,98,1,0 +2013,10,1,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,920,-4,0,1055,-12,0,0 +2013,10,22,2,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1345,-1,0,1430,-10,0,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1903,-6,0,2034,-20,0,0 +2013,4,3,3,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,-3,0,1625,-24,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1910,161,1,2140,147,1,0 +2013,8,8,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-2,0,1150,-8,0,0 +2013,8,2,5,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1149,14,0,1400,22,1,0 +2013,8,24,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1125,17,1,1405,25,1,0 +2013,7,7,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2044,-6,0,2308,-14,0,0 +2013,7,8,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1025,0,0,1256,10,0,0 +2013,7,12,5,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,0,0,1950,1,0,0 +2013,7,3,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,24,1,2118,27,1,0 +2013,10,21,1,UA,13204,Orlando International,Orlando,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1126,-6,0,1349,-10,0,0 +2013,8,7,3,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1200,1,0,2030,5,0,0 +2013,4,18,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1345,36,1,1945,26,1,0 +2013,7,1,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-11,0,1258,-10,0,0 +2013,4,25,4,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1020,-3,0,1250,-11,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1820,17,1,1915,-5,0,0 +2013,5,2,4,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,731,13,0,1012,-3,0,0 +2013,6,27,4,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,22,1,545,-3,0,0 +2013,6,10,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,935,-4,0,1151,1,0,0 +2013,6,26,3,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,5,0,2251,0,0,0 +2013,6,14,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,22,1,1425,15,1,0 +2013,9,22,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-6,0,2110,-6,0,0 +2013,8,1,4,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1031,-1,0,1415,-12,0,0 +2013,6,1,6,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1430,-9,0,1625,-21,0,0 +2013,9,26,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11433,Detroit Metro Wayne County,Detroit,MI,926,16,1,1117,4,0,0 +2013,7,18,4,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1136,25,1,1949,21,1,0 +2013,8,27,2,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,-11,0,1013,-31,0,0 +2013,7,7,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1809,-7,0,2100,-16,0,0 +2013,6,29,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1210,31,1,1255,29,1,0 +2013,10,27,7,DL,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1235,-1,0,1442,-7,0,0 +2013,9,18,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,5,0,2333,-3,0,0 +2013,6,7,5,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,905,-5,0,1735,-23,0,0 +2013,6,8,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,615,0,0,738,-8,0,0 +2013,8,25,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1532,-6,0,1850,-21,0,0 +2013,5,4,6,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,738,-3,0,1535,-14,0,0 +2013,8,8,4,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1728,191,1,1925,182,1,0 +2013,7,20,6,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,920,-4,0,1040,-11,0,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1150,35,1,1220,32,1,0 +2013,4,20,6,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2309,-3,0,719,-4,0,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,5,0,1441,-9,0,0 +2013,10,12,6,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1725,23,1,1900,8,0,0 +2013,5,11,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,745,-3,0,900,-5,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1320,-10,0,1506,-10,0,0 +2013,4,25,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1202,10,0,1804,2,0,0 +2013,8,6,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,-5,0,1654,-17,0,0 +2013,10,31,4,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1245,0,0,2120,5,0,0 +2013,8,22,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-2,0,1439,-3,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1050,-5,0,1929,1,0,0 +2013,7,26,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1336,-4,0,1936,-7,0,0 +2013,7,4,4,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,530,-5,0,654,-19,0,0 +2013,7,6,6,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1208,0,0,1252,-8,0,0 +2013,6,12,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1752,0,,2359,0,1,1 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,730,0,0,1030,0,0,0 +2013,10,17,4,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2120,19,1,2230,0,0,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1925,1,0,2144,-18,0,0 +2013,10,8,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1330,2,0,1440,5,0,0 +2013,4,28,7,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1837,66,1,2044,73,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1355,0,,1810,0,1,1 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1205,-2,0,1426,-6,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,35,1,2354,20,1,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1945,14,0,2105,-3,0,0 +2013,5,31,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-6,0,855,-2,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2045,-4,0,2310,-14,0,0 +2013,9,2,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,0,0,1553,-2,0,0 +2013,9,1,7,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1525,-5,0,1757,-8,0,0 +2013,8,14,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,735,4,0,1010,-12,0,0 +2013,5,6,1,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-7,0,2054,-15,0,0 +2013,6,4,2,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1430,-7,0,1630,-13,0,0 +2013,6,9,7,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,-4,0,940,-13,0,0 +2013,7,10,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1251,-12,0,1606,-6,0,0 +2013,8,26,1,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1655,-3,0,1935,1,0,0 +2013,9,8,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1010,-2,0,1140,-7,0,0 +2013,6,2,7,OO,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1059,41,1,1300,34,1,0 +2013,5,2,4,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1635,4,0,1846,-7,0,0 +2013,6,11,2,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,83,1,1354,82,1,0 +2013,5,16,4,AS,13930,Chicago O'Hare International,Chicago,IL,10299,Ted Stevens Anchorage International,Anchorage,AK,925,-8,0,1300,2,0,0 +2013,8,6,2,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,640,-6,0,1216,-25,0,0 +2013,9,25,3,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-5,0,1015,-15,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,640,1,0,856,16,1,0 +2013,5,16,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1755,-4,0,1948,-21,0,0 +2013,9,9,1,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,7,0,2158,5,0,0 +2013,10,13,7,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1920,-4,0,2050,-9,0,0 +2013,6,28,5,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1120,-4,0,1325,-13,0,0 +2013,6,11,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,19,1,1459,-3,0,0 +2013,5,28,2,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,630,-2,0,731,3,0,0 +2013,5,5,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-3,0,1004,-26,0,0 +2013,5,4,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,-3,0,1735,-12,0,0 +2013,10,18,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,715,2,0,825,-6,0,0 +2013,5,7,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1645,-1,0,1925,-10,0,0 +2013,6,19,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,805,-2,0,940,9,0,0 +2013,9,30,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,10721,Logan International,Boston,MA,1619,-10,0,2030,-4,0,0 +2013,10,17,4,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1811,-3,0,2130,-7,0,0 +2013,9,23,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,39,1,2205,25,1,0 +2013,6,22,6,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1316,-4,0,1434,5,0,0 +2013,5,6,1,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1818,11,0,2030,-4,0,0 +2013,10,24,4,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1933,-4,0,810,-22,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1345,28,1,1500,24,1,0 +2013,5,4,6,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1047,-4,0,1219,-28,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1415,-1,0,1633,-6,0,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-8,0,1028,-15,0,0 +2013,10,28,1,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,915,-7,0,1050,5,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1755,-5,0,2030,1,0,0 +2013,4,25,4,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,10,0,1920,23,1,0 +2013,4,16,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,959,3,0,1200,-2,0,0 +2013,9,26,4,WN,10529,Bradley International,Hartford,CT,15304,Tampa International,Tampa,FL,1245,14,0,1545,-9,0,0 +2013,9,3,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,363,1,1145,322,1,0 +2013,8,25,7,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,535,-2,0,850,-17,0,0 +2013,6,16,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1945,18,1,2115,18,1,0 +2013,6,5,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,735,-4,0,1450,-23,0,0 +2013,6,20,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1015,-2,0,1207,-3,0,0 +2013,10,14,1,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,6,0,1905,-13,0,0 +2013,10,17,4,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1945,7,0,2233,4,0,0 +2013,6,15,6,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,825,-2,0,1125,-10,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,-2,0,910,-10,0,0 +2013,10,26,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1045,0,0,1155,-6,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1015,1,0,1201,-6,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2210,10,0,2351,-3,0,0 +2013,6,14,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1359,10,0,1445,10,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1746,113,1,2003,108,1,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1315,49,1,1610,55,1,0 +2013,5,3,5,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-4,0,1910,-23,0,0 +2013,6,20,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,620,1,0,910,4,0,0 +2013,4,14,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-6,0,735,-6,0,0 +2013,6,19,3,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1238,-7,0,1356,-21,0,0 +2013,6,28,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,900,0,0,1000,-2,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1008,-2,0,1220,-20,0,0 +2013,7,6,6,EV,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-5,0,723,-24,0,0 +2013,6,10,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-8,0,2035,-7,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1745,-6,0,2037,-23,0,0 +2013,7,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1520,68,1,2302,49,1,0 +2013,10,29,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1835,3,0,2215,-22,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,2,0,40,4,0,0 +2013,9,20,5,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1059,-1,0,1904,-5,0,0 +2013,7,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1435,-4,0,1535,-13,0,0 +2013,4,30,2,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1026,-2,0,1325,-6,0,0 +2013,4,28,7,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,12,0,1935,-5,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1525,11,0,1640,11,0,0 +2013,5,24,5,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-2,0,850,3,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1755,23,1,1925,14,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,940,0,0,1045,-3,0,0 +2013,10,26,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,2,0,1445,-9,0,0 +2013,10,18,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1909,-6,0,2045,-3,0,0 +2013,6,17,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1011,-4,0,1153,-23,0,0 +2013,9,15,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1820,2,0,1845,-2,0,0 +2013,10,15,2,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,935,7,0,1111,-2,0,0 +2013,6,10,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1825,-2,0,2045,-7,0,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1756,50,1,1940,38,1,0 +2013,6,28,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1114,2,0,1303,-4,0,0 +2013,8,19,1,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,-2,0,2308,-15,0,0 +2013,10,20,7,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,730,-2,0,830,-16,0,0 +2013,4,1,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1015,-5,0,1253,5,0,0 +2013,8,7,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2059,0,0,2322,-5,0,0 +2013,8,19,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-4,0,1309,-8,0,0 +2013,4,11,4,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2015,-7,0,2315,12,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2040,0,0,2310,-4,0,0 +2013,8,23,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1815,29,1,1915,26,1,0 +2013,6,21,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1834,0,0,2025,-10,0,0 +2013,9,20,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2002,5,0,2152,3,0,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1133,0,0,1304,-6,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1000,4,0,1318,-11,0,0 +2013,7,2,2,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1220,0,0,1431,-14,0,0 +2013,9,5,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,750,-3,0,903,-8,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1625,-2,0,1715,-5,0,0 +2013,5,16,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,-6,0,2235,-8,0,0 +2013,9,19,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,600,-5,0,1401,23,1,0 +2013,6,8,6,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,720,-3,0,845,-7,0,0 +2013,6,4,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12191,William P Hobby,Houston,TX,810,2,0,1330,-21,0,0 +2013,8,26,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,-4,0,1914,-4,0,0 +2013,5,27,1,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1540,5,0,1658,0,0,0 +2013,7,20,6,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1645,2,0,2028,4,0,0 +2013,10,20,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,65,1,1940,61,1,0 +2013,7,19,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1435,5,0,1800,-4,0,0 +2013,6,11,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,2028,-5,0,2333,-29,0,0 +2013,5,29,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-8,0,1501,-15,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1735,4,0,1759,-6,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12173,Honolulu International,Honolulu,HI,1300,26,1,1605,21,1,0 +2013,4,26,5,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1319,18,1,1610,13,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2135,43,1,2255,42,1,0 +2013,10,11,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,600,4,0,850,3,0,0 +2013,8,8,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1600,-7,0,1748,-3,0,0 +2013,5,6,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,-2,0,815,-8,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2050,143,1,2222,130,1,0 +2013,10,11,5,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,3,0,2245,5,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1745,37,1,2120,32,1,0 +2013,7,25,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,0,0,930,0,0,0 +2013,10,9,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1500,-5,0,1602,1,0,0 +2013,7,14,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1249,5,0,1429,-6,0,0 +2013,7,30,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-9,0,1101,-20,0,0 +2013,6,18,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,41,1,1612,39,1,0 +2013,4,22,1,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2225,2,0,622,-7,0,0 +2013,10,6,7,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,800,0,0,1025,-19,0,0 +2013,7,26,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,645,-20,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1935,16,1,2200,-1,0,0 +2013,4,13,6,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1953,-7,0,2125,-13,0,0 +2013,10,7,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1536,-3,0,1835,-2,0,0 +2013,9,24,2,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1720,-9,0,1855,-26,0,0 +2013,4,8,1,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1505,0,0,1715,-7,0,0 +2013,9,21,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,-4,0,2313,-12,0,0 +2013,8,31,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1300,-3,0,1405,-4,0,0 +2013,4,14,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1115,-10,0,1145,-22,0,0 +2013,8,27,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-7,0,1225,-23,0,0 +2013,10,24,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,5,0,1439,-12,0,0 +2013,8,25,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,134,1,2255,131,1,0 +2013,9,26,4,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1433,0,0,1917,-14,0,0 +2013,8,17,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1110,-3,0,1250,-14,0,0 +2013,4,6,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1130,-8,0,1400,8,0,0 +2013,4,18,4,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1945,102,1,2245,85,1,0 +2013,9,6,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1132,-3,0,1438,-21,0,0 +2013,4,5,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,725,-5,0,1040,20,1,0 +2013,6,26,3,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1935,0,,2159,0,1,1 +2013,10,6,7,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,615,14,0,818,-11,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1500,5,0,1626,1,0,0 +2013,10,3,4,WN,13232,Chicago Midway International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,20,1,1335,21,1,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,840,0,0,1117,-22,0,0 +2013,8,7,3,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2050,9,0,2200,1,0,0 +2013,9,20,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1145,-12,0,1620,6,0,0 +2013,4,26,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1827,-6,0,2100,-17,0,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2125,-1,0,545,-7,0,0 +2013,4,18,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-2,0,830,-7,0,0 +2013,6,22,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1025,-5,0,1309,-2,0,0 +2013,5,24,5,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1435,-3,0,1615,-3,0,0 +2013,7,9,2,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,642,11,0,940,1,0,0 +2013,10,21,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1347,4,0,1630,-4,0,0 +2013,10,18,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1455,-1,0,1831,-14,0,0 +2013,4,3,3,OO,14869,Salt Lake City International,Salt Lake City,UT,15376,Tucson International,Tucson,AZ,2006,-5,0,2059,-5,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,-4,0,2210,-18,0,0 +2013,9,1,7,B6,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,710,-7,0,906,-22,0,0 +2013,8,9,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,-5,0,1340,-9,0,0 +2013,5,10,5,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-6,0,1501,1,0,0 +2013,4,21,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1716,357,1,1955,345,1,0 +2013,7,23,2,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1515,34,1,2043,26,1,0 +2013,9,23,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2250,-3,0,436,-5,0,0 +2013,6,27,4,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1021,110,1,1320,97,1,0 +2013,9,6,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1750,-1,0,1915,-9,0,0 +2013,4,27,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,-4,0,1150,-9,0,0 +2013,9,16,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1827,-8,0,2105,-17,0,0 +2013,7,21,7,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,20,1,2259,9,0,0 +2013,6,6,4,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,710,-4,0,1119,-32,0,0 +2013,7,14,7,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1810,-7,0,1940,-16,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,22,1,1410,22,1,0 +2013,10,1,2,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1235,-2,0,1403,-7,0,0 +2013,5,11,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1910,78,1,2020,63,1,0 +2013,8,31,6,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1010,1,0,1145,-22,0,0 +2013,5,11,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1320,9,0,1440,-6,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1540,6,0,1740,10,0,0 +2013,4,5,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1625,0,0,1740,-13,0,0 +2013,7,11,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,28,1,2130,46,1,0 +2013,10,6,7,HA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,900,-2,0,1125,-9,0,0 +2013,7,4,4,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1530,-5,0,1749,-20,0,0 +2013,5,8,3,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-10,0,1255,-6,0,0 +2013,10,16,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2051,-2,0,2210,-1,0,0 +2013,6,9,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,-7,0,2215,-20,0,0 +2013,8,23,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,-6,0,745,-7,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1340,0,0,1533,-6,0,0 +2013,10,5,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1205,-1,0,1330,-12,0,0 +2013,9,13,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,0,0,1640,-5,0,0 +2013,10,19,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1430,-3,0,1605,-17,0,0 +2013,4,5,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1600,19,1,1800,20,1,0 +2013,4,8,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1320,-4,0,1615,-11,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2104,1,0,2347,-1,0,0 +2013,6,26,3,9E,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1830,5,0,2101,-10,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-1,0,2044,-9,0,0 +2013,4,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,-8,0,1610,-16,0,0 +2013,4,16,2,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1815,8,0,2103,2,0,0 +2013,6,12,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1750,55,1,1910,50,1,0 +2013,5,1,3,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,700,-7,0,800,-20,0,0 +2013,7,18,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,0,,1508,0,1,1 +2013,4,21,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-2,0,1235,-22,0,0 +2013,7,31,3,OO,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1032,7,0,1158,9,0,0 +2013,4,19,5,EV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1426,111,1,1608,100,1,0 +2013,8,6,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1029,-5,0,1320,-10,0,0 +2013,5,24,5,UA,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,800,48,1,1024,5,0,0 +2013,6,3,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1940,43,1,2028,34,1,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1315,63,1,1440,46,1,0 +2013,5,10,5,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,714,-3,0,830,-14,0,0 +2013,8,21,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1003,16,1,1600,10,0,0 +2013,10,27,7,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,800,-1,0,935,6,0,0 +2013,5,8,3,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1635,11,0,1720,9,0,0 +2013,6,14,5,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1835,1,0,2155,80,1,0 +2013,7,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12451,Jacksonville International,Jacksonville,FL,1201,1,0,1420,46,1,0 +2013,5,13,1,WN,13931,Norfolk International,Norfolk,VA,10693,Nashville International,Nashville,TN,940,1,0,1030,2,0,0 +2013,9,22,7,UA,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1912,-3,0,2124,-9,0,0 +2013,10,31,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,9,0,1540,-8,0,0 +2013,9,28,6,MQ,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,-9,0,2130,-18,0,0 +2013,8,22,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1640,19,1,1835,-4,0,0 +2013,10,23,3,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,86,1,1940,74,1,0 +2013,6,19,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1820,21,1,1955,-7,0,0 +2013,9,21,6,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1018,-11,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1925,17,1,2256,-12,0,0 +2013,10,5,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,750,-2,0,755,31,1,0 +2013,5,14,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-3,0,1440,-2,0,0 +2013,5,14,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,-4,0,815,12,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1345,-3,0,1450,-15,0,0 +2013,8,22,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1727,2,0,1752,52,1,0 +2013,8,5,1,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2155,84,1,7,79,1,0 +2013,10,28,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,758,-6,0,817,-2,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,0,0,1040,-11,0,0 +2013,10,22,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1532,5,0,1806,-16,0,0 +2013,5,25,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,920,38,1,1235,34,1,0 +2013,6,30,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,755,0,0,845,-9,0,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,600,-2,0,915,-14,0,0 +2013,6,18,2,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1541,-2,0,1829,63,1,0 +2013,10,24,4,AA,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1455,-4,0,1750,28,1,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,720,-1,0,1240,-8,0,0 +2013,4,8,1,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,600,-4,0,828,-6,0,0 +2013,6,24,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1205,0,0,1325,6,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,30,1,2348,29,1,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1004,-1,0,1525,2,0,0 +2013,4,4,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-3,0,1743,36,1,0 +2013,6,11,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1715,-3,0,1906,-6,0,0 +2013,9,6,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-11,0,1120,-23,0,0 +2013,5,16,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,601,-3,0,1156,-13,0,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,659,0,0,951,-10,0,0 +2013,5,18,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-9,0,1500,-22,0,0 +2013,7,24,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,36,1,1550,10,0,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,11,0,1916,0,0,0 +2013,4,5,5,WN,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,850,-2,0,950,-11,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,900,-2,0,1030,-5,0,0 +2013,8,28,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1957,-3,0,2151,11,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1020,-2,0,1410,-22,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1700,0,0,1910,-8,0,0 +2013,4,2,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1305,-6,0,1452,-17,0,0 +2013,4,25,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1704,12,0,1723,6,0,0 +2013,7,23,2,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1910,2,0,2035,1,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1815,-3,0,2052,-5,0,0 +2013,5,1,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-6,0,710,-14,0,0 +2013,6,14,5,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,10,0,1909,13,0,0 +2013,6,29,6,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,630,-7,0,1504,-13,0,0 +2013,7,9,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1020,8,0,1435,-2,0,0 +2013,7,11,4,EV,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1959,-7,0,2146,-6,0,0 +2013,9,29,7,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1805,4,0,2055,-24,0,0 +2013,8,15,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,758,-1,0,1017,6,0,0 +2013,7,7,7,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2230,-5,0,655,-40,0,0 +2013,4,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2000,-5,0,2230,-40,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1750,-2,0,1915,-13,0,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,956,-2,0,1213,-10,0,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2032,-2,0,2237,-10,0,0 +2013,10,17,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,46,1,1930,37,1,0 +2013,4,17,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,230,-1,0,648,-21,0,0 +2013,10,8,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,-8,0,1200,-22,0,0 +2013,10,24,4,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1015,29,1,1340,26,1,0 +2013,6,8,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1410,-4,0,1500,-6,0,0 +2013,5,30,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,949,8,0,1150,29,1,0 +2013,10,19,6,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1005,-11,0,1224,-18,0,0 +2013,8,6,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,630,-1,0,755,-6,0,0 +2013,9,28,6,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,725,206,1,1021,190,1,0 +2013,10,17,4,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1136,-9,0,1335,-5,0,0 +2013,7,24,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1838,-5,0,2005,-22,0,0 +2013,5,8,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1700,2,0,1800,4,0,0 +2013,7,29,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,802,-3,0,855,-2,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1130,-1,0,1235,-7,0,0 +2013,8,30,5,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1155,-1,0,1330,-5,0,0 +2013,7,30,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,730,-5,0,845,-13,0,0 +2013,7,10,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1510,9,0,1605,18,1,0 +2013,6,27,4,9E,10529,Bradley International,Hartford,CT,14492,Raleigh-Durham International,Raleigh/Durham,NC,940,-5,0,1122,-6,0,0 +2013,10,14,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1615,-1,0,1726,-2,0,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1055,-3,0,1235,16,1,0 +2013,9,23,1,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1715,-1,0,1905,-20,0,0 +2013,10,31,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1134,-6,0,1404,-16,0,0 +2013,6,18,2,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1830,50,1,1945,50,1,0 +2013,6,3,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,9,0,2125,1,0,0 +2013,9,17,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12478,John F. Kennedy International,New York,NY,1215,7,0,1650,-6,0,0 +2013,6,12,3,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,601,-1,0,957,2,0,0 +2013,4,15,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2111,0,0,2201,-10,0,0 +2013,10,6,7,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,635,-2,0,1505,11,0,0 +2013,9,26,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,-3,0,1033,-17,0,0 +2013,5,8,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-7,0,949,2,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,-10,0,2009,-12,0,0 +2013,10,23,3,OO,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2107,0,0,2318,-4,0,0 +2013,10,15,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1649,-3,0,1807,4,0,0 +2013,4,17,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,700,-5,0,747,-7,0,0 +2013,5,11,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1905,87,1,2039,117,1,0 +2013,5,8,3,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,-1,0,2100,14,0,0 +2013,7,9,2,OO,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1530,-7,0,1759,-17,0,0 +2013,6,11,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1735,7,0,1825,2,0,0 +2013,8,17,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-2,0,1348,-16,0,0 +2013,7,1,1,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1645,88,1,1842,58,1,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2020,17,1,2245,12,0,0 +2013,6,16,7,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,-3,0,900,-5,0,0 +2013,5,13,1,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,2015,-5,0,2050,-14,0,0 +2013,5,21,2,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1037,1,0,1224,-2,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1210,3,0,1405,17,1,0 +2013,10,10,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,35,1,1200,50,1,0 +2013,4,3,3,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1215,25,1,1457,13,0,0 +2013,6,21,5,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1250,45,1,1535,46,1,0 +2013,9,1,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,930,-4,0,940,-11,0,0 +2013,5,11,6,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1625,13,0,1915,25,1,0 +2013,7,2,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,-3,0,1540,-7,0,0 +2013,10,13,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,5,0,1740,3,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1510,3,0,1855,2,0,0 +2013,8,31,6,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1115,24,1,1235,21,1,0 +2013,8,24,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,2055,-2,0,2317,12,0,0 +2013,5,7,2,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,735,0,0,820,-1,0,0 +2013,10,4,5,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,840,-4,0,1049,3,0,0 +2013,10,2,3,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1315,-8,0,1449,-11,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1555,-4,0,1752,-4,0,0 +2013,8,15,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1815,45,1,2151,25,1,0 +2013,4,2,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1903,-5,0,2100,-15,0,0 +2013,4,1,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,1005,2,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1310,-4,0,1634,3,0,0 +2013,5,2,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2240,-5,0,9,-19,0,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,845,-2,0,950,0,0,0 +2013,6,7,5,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1830,162,1,2027,146,1,0 +2013,10,8,2,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1220,0,0,1415,1,0,0 +2013,7,5,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1650,-12,0,1740,-19,0,0 +2013,10,4,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2204,-1,0,557,6,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1450,31,1,1615,31,1,0 +2013,6,4,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,745,0,0,930,-8,0,0 +2013,9,5,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2225,-3,0,607,14,0,0 +2013,10,6,7,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,858,8,0,1037,-12,0,0 +2013,7,17,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1130,18,1,1245,-1,0,0 +2013,4,1,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1035,7,0,1345,0,0,0 +2013,4,18,4,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,61,1,2050,41,1,0 +2013,4,12,5,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-4,0,955,4,0,0 +2013,8,17,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,900,-3,0,1045,-6,0,0 +2013,9,15,7,AA,14057,Portland International,Portland,OR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,545,-5,0,1125,3,0,0 +2013,4,13,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1116,-3,0,1401,-5,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1150,-1,0,1350,21,1,0 +2013,6,28,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,735,-6,0,905,1,0,0 +2013,10,13,7,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,1840,0,0,2020,3,0,0 +2013,4,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1544,1,0,1821,-16,0,0 +2013,8,4,7,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-6,0,1009,-25,0,0 +2013,8,20,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,-2,0,1112,-11,0,0 +2013,6,11,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,11,0,1155,-18,0,0 +2013,9,5,4,YV,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,655,8,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1715,0,0,1940,-29,0,0 +2013,6,27,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,625,-1,0,715,-12,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,727,-4,0,859,2,0,0 +2013,10,17,4,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,1,0,1927,0,0,0 +2013,7,14,7,DL,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1045,-3,0,1632,1,0,0 +2013,6,3,1,WN,13232,Chicago Midway International,Chicago,IL,14057,Portland International,Portland,OR,1955,15,1,2210,19,1,0 +2013,10,30,3,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,931,-11,0,1110,-12,0,0 +2013,7,1,1,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,720,72,1,832,67,1,0 +2013,9,23,1,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,0,0,852,-10,0,0 +2013,7,1,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,900,-4,0,1025,59,1,0 +2013,9,19,4,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,-4,0,1420,-10,0,0 +2013,7,2,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,707,-6,0,834,-19,0,0 +2013,6,30,7,AS,13830,Kahului Airport,Kahului,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-8,0,2051,-12,0,0 +2013,5,8,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1452,73,1,1647,70,1,0 +2013,9,27,5,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,710,-4,0,1010,-9,0,0 +2013,8,5,1,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,800,-3,0,1631,-25,0,0 +2013,9,3,2,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1700,17,1,1914,7,0,0 +2013,9,10,2,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1116,-4,0,1439,6,0,0 +2013,8,20,2,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1210,51,1,1545,44,1,0 +2013,10,21,1,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11042,Cleveland-Hopkins International,Cleveland,OH,1101,0,0,1748,-9,0,0 +2013,10,5,6,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1117,12,0,1407,8,0,0 +2013,10,3,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1335,147,1,1728,144,1,0 +2013,5,13,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1415,-2,0,1633,2,0,0 +2013,10,21,1,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,915,-2,0,1115,-1,0,0 +2013,10,10,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1230,-3,0,1330,-14,0,0 +2013,9,17,2,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1355,-12,0,1605,-27,0,0 +2013,4,24,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1202,-7,0,1500,1,0,0 +2013,9,8,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1517,0,0,0 +2013,5,28,2,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-3,0,908,3,0,0 +2013,9,12,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,43,1,1350,28,1,0 +2013,8,25,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,755,1,0,845,5,0,0 +2013,8,23,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1930,-11,0,2057,-15,0,0 +2013,8,3,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,-5,0,2213,-36,0,0 +2013,9,28,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1852,-6,0,2126,-11,0,0 +2013,10,7,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1128,-4,0,1359,-9,0,0 +2013,6,6,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1123,-2,0,1415,-17,0,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1755,56,1,2035,38,1,0 +2013,6,13,4,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-4,0,2027,-6,0,0 +2013,7,9,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1359,-6,0,1452,0,0,0 +2013,8,26,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1210,-2,0,1500,16,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1510,7,0,1725,1,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,31,1,2035,34,1,0 +2013,7,23,2,9E,10721,Logan International,Boston,MA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,630,9,0,856,-9,0,0 +2013,10,20,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1323,10,0,1538,-13,0,0 +2013,6,9,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1245,69,1,1408,67,1,0 +2013,10,21,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,0,0,940,-6,0,0 +2013,10,24,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,6,0,1824,0,0,0 +2013,5,17,5,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,-1,0,1210,0,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1300,-5,0,1435,-26,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2035,23,1,2225,12,0,0 +2013,10,2,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,852,104,1,1030,87,1,0 +2013,8,14,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1910,11,0,2030,36,1,0 +2013,10,7,1,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2040,169,1,2248,166,1,0 +2013,4,4,4,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,920,-6,0,1110,-14,0,0 +2013,7,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,9,0,1314,-2,0,0 +2013,8,15,4,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,2,0,1800,-4,0,0 +2013,10,10,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1205,75,1,1530,61,1,0 +2013,8,30,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-9,0,1550,-8,0,0 +2013,8,19,1,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1650,11,0,1930,-4,0,0 +2013,9,8,7,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,606,-1,0,1146,-3,0,0 +2013,9,5,4,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2047,106,1,2159,103,1,0 +2013,8,3,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,-5,0,1401,-15,0,0 +2013,9,9,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,56,1,2020,43,1,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2100,44,1,2215,36,1,0 +2013,9,22,7,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,955,-3,0,1110,-17,0,0 +2013,7,15,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-7,0,1412,-6,0,0 +2013,5,4,6,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-6,0,1835,-21,0,0 +2013,7,3,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2055,-1,0,2155,6,0,0 +2013,7,18,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1515,-8,0,1608,-21,0,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-2,0,1550,-11,0,0 +2013,4,23,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1835,-3,0,2110,0,0,0 +2013,6,13,4,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,910,-4,0,1255,-15,0,0 +2013,8,18,7,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1130,-3,0,1349,11,0,0 +2013,7,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2011,-8,0,2345,-10,0,0 +2013,5,24,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2150,-8,0,2305,-15,0,0 +2013,8,7,3,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1020,-4,0,1318,3,0,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-4,0,1100,5,0,0 +2013,9,12,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1555,-9,0,1635,-7,0,0 +2013,9,17,2,UA,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1437,-7,0,1925,-15,0,0 +2013,8,14,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-3,0,755,-22,0,0 +2013,10,14,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1525,-8,0,1840,-17,0,0 +2013,9,17,2,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1440,0,0,1722,-10,0,0 +2013,9,23,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1515,64,1,1712,64,1,0 +2013,7,17,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,735,0,0,1050,3,0,0 +2013,8,7,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,720,-3,0,1549,-29,0,0 +2013,9,19,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1830,-3,0,2100,11,0,0 +2013,9,9,1,WN,11618,Newark Liberty International,Newark,NJ,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,-3,0,2105,-37,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1035,4,0,1205,0,0,0 +2013,8,4,7,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2040,-6,0,2152,-11,0,0 +2013,8,28,3,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1250,-3,0,1405,-3,0,0 +2013,10,20,7,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,2021,-10,0,2110,-21,0,0 +2013,7,22,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,0,,1820,0,1,1 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,32,1,1820,0,0,0 +2013,7,31,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1145,32,1,1257,27,1,0 +2013,4,14,7,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-8,0,852,-27,0,0 +2013,8,20,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-4,0,1107,-14,0,0 +2013,6,18,2,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1629,92,1,1955,83,1,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,14843,Luis Munoz Marin International,San Juan,PR,1815,10,0,2146,6,0,0 +2013,8,17,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1810,2,0,1910,0,0,0 +2013,8,14,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1951,-5,0,2126,-7,0,0 +2013,7,19,5,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,712,-6,0,750,-9,0,0 +2013,7,3,3,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,750,3,0,910,-18,0,0 +2013,10,27,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-5,0,941,-3,0,0 +2013,6,12,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-1,0,758,0,0,0 +2013,6,5,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1040,2,0,1145,-1,0,0 +2013,7,9,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,162,1,1735,159,1,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1235,4,0,1550,-10,0,0 +2013,4,24,3,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,705,-6,0,1009,4,0,0 +2013,5,20,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1735,25,1,2005,33,1,0 +2013,10,4,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,721,-5,0,1000,-12,0,0 +2013,9,12,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1918,27,1,2010,19,1,0 +2013,6,18,2,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,725,0,0,820,11,0,0 +2013,9,9,1,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-1,0,1255,-15,0,0 +2013,9,25,3,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1535,-9,0,1701,-8,0,0 +2013,8,2,5,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1359,0,0,1452,-5,0,0 +2013,9,27,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,-9,0,917,-16,0,0 +2013,8,29,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,1,0,1501,6,0,0 +2013,8,18,7,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-6,0,750,2,0,0 +2013,6,5,3,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,600,0,,817,0,1,1 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,855,-2,0,1015,-5,0,0 +2013,8,1,4,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,600,-4,0,659,9,0,0 +2013,10,18,5,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1740,2,0,1901,-9,0,0 +2013,9,17,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1906,-2,0,2015,-9,0,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2200,30,1,2310,18,1,0 +2013,4,28,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1420,1,0,1535,0,0,0 +2013,8,6,2,OO,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1945,-6,0,44,4,0,0 +2013,6,28,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1900,-2,0,2100,-6,0,0 +2013,9,15,7,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1825,-1,0,2300,-1,0,0 +2013,10,11,5,AS,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-6,0,2136,-14,0,0 +2013,8,30,5,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,929,-3,0,1214,-23,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-2,0,1429,0,0,0 +2013,6,10,1,WN,14683,San Antonio International,San Antonio,TX,13204,Orlando International,Orlando,FL,910,-6,0,1255,-24,0,0 +2013,5,24,5,US,10529,Bradley International,Hartford,CT,11278,Ronald Reagan Washington National,Washington,DC,620,-2,0,741,6,0,0 +2013,5,6,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,650,-2,0,815,-10,0,0 +2013,8,11,7,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1625,47,1,1735,40,1,0 +2013,6,25,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-8,0,1341,-12,0,0 +2013,4,8,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,600,-4,0,706,-27,0,0 +2013,5,3,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,2100,-8,0,2210,-14,0,0 +2013,4,14,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,850,-6,0,1653,-40,0,0 +2013,9,4,3,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1135,-4,0,1305,-20,0,0 +2013,6,10,1,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1110,3,0,1820,-21,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1325,-4,0,1445,-2,0,0 +2013,8,10,6,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,0,0,2001,-24,0,0 +2013,8,19,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-3,0,1554,17,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,2145,-2,0,4,-26,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1450,1,0,1634,-14,0,0 +2013,9,29,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,620,-4,0,710,-7,0,0 +2013,9,29,7,B6,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1129,-9,0,1504,-9,0,0 +2013,8,22,4,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1850,142,1,1907,136,1,0 +2013,6,20,4,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,910,-1,0,1048,-6,0,0 +2013,6,1,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,910,1,0,1040,-18,0,0 +2013,8,5,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,-1,0,1455,-7,0,0 +2013,4,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,2116,8,0,2329,0,0,0 +2013,10,8,2,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1305,17,1,1601,4,0,0 +2013,5,20,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1240,5,0,1410,-4,0,0 +2013,9,15,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1432,5,0,1523,3,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,0,0,1558,14,0,0 +2013,5,28,2,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1450,7,0,1810,-16,0,0 +2013,5,25,6,MQ,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1155,-8,0,1325,-17,0,0 +2013,9,24,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,-9,0,1555,-1,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1035,-3,0,1221,-3,0,0 +2013,7,31,3,9E,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-11,0,1615,-20,0,0 +2013,7,31,3,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1758,0,0,1927,0,0,0 +2013,7,22,1,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1420,13,0,1515,9,0,0 +2013,4,27,6,EV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1449,5,0,1628,-16,0,0 +2013,6,2,7,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-1,0,1152,-18,0,0 +2013,7,10,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1315,-4,0,1616,-5,0,0 +2013,7,4,4,FL,15304,Tampa International,Tampa,FL,12339,Indianapolis International,Indianapolis,IN,1822,19,1,2033,12,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1626,-3,0,1846,-36,0,0 +2013,7,27,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1040,0,0,1209,1,0,0 +2013,6,12,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,14,0,1810,9,0,0 +2013,5,23,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,-3,0,612,-13,0,0 +2013,4,27,6,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,545,-2,0,802,2,0,0 +2013,9,20,5,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,9,0,1340,3,0,0 +2013,8,11,7,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,0,0,2147,13,0,0 +2013,6,22,6,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,0,0,1220,3,0,0 +2013,5,21,2,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,617,-10,0,730,7,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1054,8,0,1217,-7,0,0 +2013,10,28,1,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,63,1,1645,41,1,0 +2013,9,23,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1157,0,0,1311,-9,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,81,1,1505,77,1,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1545,31,1,2030,28,1,0 +2013,7,11,4,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1035,-4,0,1150,-9,0,0 +2013,6,12,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,600,-1,0,845,-13,0,0 +2013,10,10,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2100,52,1,2245,44,1,0 +2013,6,19,3,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,1000,5,0,1050,2,0,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,800,2,0,1112,-11,0,0 +2013,8,31,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1510,-4,0,1730,-26,0,0 +2013,5,30,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1130,-3,0,1152,-18,0,0 +2013,10,27,7,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1605,-5,0,1822,-6,0,0 +2013,8,13,2,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-10,0,715,6,0,0 +2013,7,19,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1122,-10,0,0 +2013,5,19,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,5,0,2151,9,0,0 +2013,4,5,5,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1755,-1,0,2120,6,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1033,-6,0,1406,-4,0,0 +2013,6,22,6,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1250,-1,0,1410,-6,0,0 +2013,6,5,3,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1100,63,1,1450,54,1,0 +2013,5,5,7,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,48,1,2047,62,1,0 +2013,5,16,4,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1940,37,1,2110,37,1,0 +2013,4,25,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2130,25,1,2315,15,1,0 +2013,10,31,4,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1445,2,0,1600,-4,0,0 +2013,7,25,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1710,73,1,1840,81,1,0 +2013,7,25,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1015,-2,0,1140,-6,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1425,0,,1730,0,1,1 +2013,5,16,4,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,2040,4,0,2339,-3,0,0 +2013,9,27,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10800,Bob Hope,Burbank,CA,1125,-5,0,1227,-19,0,0 +2013,8,9,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1945,70,1,2105,66,1,0 +2013,4,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1600,5,0,2325,6,0,0 +2013,6,3,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1330,2,0,1530,-13,0,0 +2013,6,29,6,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,819,24,1,1336,16,1,0 +2013,6,11,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1945,-3,0,101,-6,0,0 +2013,7,30,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1457,-3,0,1709,-14,0,0 +2013,5,2,4,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-4,0,1340,-9,0,0 +2013,10,1,2,9E,14635,Southwest Florida International,Fort Myers,FL,12953,LaGuardia,New York,NY,1515,-4,0,1807,11,0,0 +2013,7,21,7,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1949,85,1,2100,78,1,0 +2013,4,9,2,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1650,11,0,1827,15,1,0 +2013,8,3,6,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1025,13,0,1135,9,0,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,26,1,1431,8,0,0 +2013,6,28,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-2,0,1220,-8,0,0 +2013,9,16,1,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1030,2,0,1220,7,0,0 +2013,4,16,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,605,-1,0,1202,-11,0,0 +2013,5,16,4,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,925,4,0,1049,-4,0,0 +2013,6,4,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1609,-2,0,1728,-15,0,0 +2013,6,11,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-3,0,1030,-13,0,0 +2013,5,14,2,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2155,-2,0,2310,-5,0,0 +2013,4,11,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-3,0,910,3,0,0 +2013,8,1,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1554,37,1,1728,38,1,0 +2013,4,30,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2015,138,1,2220,131,1,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1255,-2,0,1550,-13,0,0 +2013,5,13,1,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1833,-9,0,1940,-18,0,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1235,5,0,1450,-5,0,0 +2013,9,5,4,EV,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,1228,-7,0,1441,-16,0,0 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1705,-2,0,2015,-5,0,0 +2013,9,24,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1620,-4,0,1805,-5,0,0 +2013,4,28,7,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2135,0,0,2335,2,0,0 +2013,6,28,5,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,745,68,1,948,53,1,0 +2013,5,3,5,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1935,-5,0,2213,-6,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1910,25,1,2031,13,0,0 +2013,4,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,745,-4,0,1033,-2,0,0 +2013,10,12,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1158,0,0,1326,-8,0,0 +2013,4,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1449,4,0,2214,44,1,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,-1,0,1223,-5,0,0 +2013,6,3,1,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2120,-7,0,2345,-17,0,0 +2013,4,27,6,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1602,5,0,2134,-8,0,0 +2013,9,22,7,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,720,13,0,1220,5,0,0 +2013,9,6,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1350,-6,0,1512,-22,0,0 +2013,5,11,6,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1655,-9,0,1819,-28,0,0 +2013,9,22,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,820,-8,0,1644,-25,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,0,0,2059,2,0,0 +2013,8,22,4,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,720,3,0,925,-21,0,0 +2013,5,29,3,HA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1405,-4,0,2215,-20,0,0 +2013,8,22,4,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1726,67,1,1937,57,1,0 +2013,4,16,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1423,-7,0,1550,-9,0,0 +2013,6,19,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,46,1,1855,37,1,0 +2013,6,7,5,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1200,12,0,1435,22,1,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1525,-5,0,1735,-15,0,0 +2013,9,11,3,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2000,-1,0,2337,-1,0,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,15,1,2245,9,0,0 +2013,4,27,6,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-4,0,1555,-5,0,0 +2013,8,26,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1500,0,0,2335,-7,0,0 +2013,6,10,1,DL,14747,Seattle/Tacoma International,Seattle,WA,13244,Memphis International,Memphis,TN,130,-8,0,732,-29,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,4,0,1745,8,0,0 +2013,8,4,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2150,4,0,45,-4,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1541,19,1,2029,28,1,0 +2013,6,5,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1440,4,0,1555,-8,0,0 +2013,6,21,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,-4,0,2046,4,0,0 +2013,10,27,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1356,-2,0,1514,-5,0,0 +2013,5,10,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,29,1,2030,23,1,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2005,7,0,2234,18,1,0 +2013,6,7,5,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,2,0,840,20,1,0 +2013,6,12,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1555,28,1,1905,20,1,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1505,2,0,1815,-9,0,0 +2013,4,15,1,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,1548,0,0,1820,-20,0,0 +2013,7,2,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2115,-6,0,2237,11,0,0 +2013,5,22,3,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,725,-2,0,1115,-5,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1655,-1,0,2030,-1,0,0 +2013,5,10,5,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,725,0,0,820,-9,0,0 +2013,7,30,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,745,-5,0,1000,-4,0,0 +2013,5,13,1,B6,10423,Austin - Bergstrom International,Austin,TX,10721,Logan International,Boston,MA,1855,44,1,2350,37,1,0 +2013,6,18,2,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,55,1,1145,50,1,0 +2013,7,29,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-2,0,1334,-21,0,0 +2013,7,24,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,-2,0,1705,-8,0,0 +2013,4,15,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,710,-4,0,944,-27,0,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,62,1,2210,48,1,0 +2013,9,13,5,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1515,12,0,1640,10,0,0 +2013,8,28,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,1107,-5,0,0 +2013,6,21,5,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,-7,0,1310,-20,0,0 +2013,6,24,1,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,14,0,1351,20,1,0 +2013,4,30,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,910,-11,0,1235,-9,0,0 +2013,4,30,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2140,0,0,2315,-11,0,0 +2013,5,23,4,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,920,14,0,1715,26,1,0 +2013,8,19,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1300,-2,0,1616,-4,0,0 +2013,7,31,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1405,-4,0,2058,-12,0,0 +2013,8,21,3,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1240,14,0,1455,13,0,0 +2013,7,28,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-4,0,1326,-5,0,0 +2013,6,14,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1450,1,0,2020,16,1,0 +2013,7,13,6,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2010,-5,0,2115,-5,0,0 +2013,6,26,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,2054,50,1,2358,23,1,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1637,18,1,1755,9,0,0 +2013,4,11,4,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,94,1,915,70,1,0 +2013,5,23,4,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,756,-5,0,1037,2,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,745,0,0,915,3,0,0 +2013,8,4,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2355,131,1,548,119,1,0 +2013,7,1,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1452,61,1,1635,52,1,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2125,0,,2315,0,1,1 +2013,4,1,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1129,2,0,1635,-21,0,0 +2013,6,29,6,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,716,-2,0,1439,4,0,0 +2013,8,3,6,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,-7,0,1720,-14,0,0 +2013,7,7,7,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,4,0,2300,4,0,0 +2013,10,6,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1020,2,0,1250,-34,0,0 +2013,8,30,5,DL,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,950,0,0,1707,-3,0,0 +2013,4,2,2,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2140,5,0,545,-9,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1610,0,0,1707,4,0,0 +2013,6,7,5,EV,13244,Memphis International,Memphis,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-4,0,2228,-14,0,0 +2013,10,27,7,9E,14122,Pittsburgh International,Pittsburgh,PA,12953,LaGuardia,New York,NY,856,-3,0,1029,2,0,0 +2013,4,15,1,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1245,-9,0,1403,-11,0,0 +2013,7,4,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,935,-5,0,1235,-9,0,0 +2013,7,13,6,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2130,1,0,559,-4,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1350,66,1,1830,45,1,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,-1,0,1102,2,0,0 +2013,9,7,6,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,-11,0,2000,-6,0,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1246,31,1,1404,53,1,0 +2013,4,12,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1302,51,1,1634,38,1,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1010,4,0,1145,1,0,0 +2013,8,2,5,EV,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1353,171,1,1400,249,1,0 +2013,4,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,705,-5,0,810,4,0,0 +2013,5,23,4,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-7,0,1609,-12,0,0 +2013,7,20,6,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,955,-5,0,1115,-10,0,0 +2013,10,10,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1455,55,1,1525,60,1,0 +2013,7,17,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1215,0,0,1326,-8,0,0 +2013,8,28,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1544,0,,1733,0,1,1 +2013,9,27,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1825,0,0,2055,-23,0,0 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2140,22,1,2300,15,1,0 +2013,4,26,5,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,720,1,0,845,4,0,0 +2013,9,26,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-9,0,1515,-27,0,0 +2013,6,13,4,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1455,0,,1645,0,1,1 +2013,8,20,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1810,-5,0,2104,-19,0,0 +2013,7,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,900,53,1,1105,43,1,0 +2013,8,11,7,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2119,-4,0,2349,-9,0,0 +2013,9,29,7,9E,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1250,-3,0,1637,0,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1530,-5,0,1830,-3,0,0 +2013,8,20,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,843,-5,0,1045,-16,0,0 +2013,4,10,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1030,-2,0,1226,-10,0,0 +2013,10,13,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1500,15,1,1815,1,0,0 +2013,7,26,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1425,1,0,1520,-10,0,0 +2013,5,4,6,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-11,0,1913,-8,0,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1540,-6,0,1809,-6,0,0 +2013,10,4,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,0,0,1205,-16,0,0 +2013,10,28,1,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,820,-4,0,1017,2,0,0 +2013,6,29,6,YV,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1530,-4,0,1631,-8,0,0 +2013,5,12,7,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,704,-7,0,835,-17,0,0 +2013,4,22,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1800,-5,0,2055,-11,0,0 +2013,8,23,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,725,-4,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,10,0,2300,12,0,0 +2013,10,13,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10693,Nashville International,Nashville,TN,1615,1,0,2135,-29,0,0 +2013,4,13,6,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1130,22,1,1430,19,1,0 +2013,7,22,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,552,-6,0,730,-17,0,0 +2013,10,13,7,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1815,-4,0,2058,-8,0,0 +2013,4,6,6,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1515,-4,0,2317,-12,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1320,6,0,1510,8,0,0 +2013,6,18,2,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,2359,29,1,539,11,0,0 +2013,9,28,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1140,4,0,1405,-3,0,0 +2013,8,20,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1125,-2,0,1300,-3,0,0 +2013,10,2,3,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1445,-15,0,1611,-8,0,0 +2013,6,21,5,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2329,80,1,757,70,1,0 +2013,9,18,3,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2145,1,0,2250,-2,0,0 +2013,10,24,4,US,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-7,0,810,-10,0,0 +2013,8,29,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1652,-1,0,1754,-23,0,0 +2013,4,23,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1830,53,1,2235,38,1,0 +2013,8,5,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,6,0,2105,-15,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1540,3,0,1720,-11,0,0 +2013,9,9,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1010,11,0,1725,8,0,0 +2013,8,5,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,6,0,1530,0,0,0 +2013,4,3,3,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,705,-2,0,913,-6,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1455,54,1,1745,59,1,0 +2013,10,24,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1450,-4,0,2215,-7,0,0 +2013,6,2,7,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,0,0,1640,-5,0,0 +2013,10,31,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1415,-3,0,1530,-7,0,0 +2013,6,24,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,9,0,1038,-6,0,0 +2013,7,1,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2040,0,0,2145,1,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,-3,0,2145,-13,0,0 +2013,4,14,7,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,1740,-10,0,2025,-5,0,0 +2013,7,31,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1055,-5,0,1901,-14,0,0 +2013,10,5,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1031,5,0,1121,5,0,0 +2013,9,21,6,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1510,64,1,2048,37,1,0 +2013,5,21,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1315,22,1,1540,17,1,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,16,1,1635,-2,0,0 +2013,4,16,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1825,-3,0,2133,-19,0,0 +2013,8,29,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,7,0,2215,-13,0,0 +2013,8,15,4,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1525,15,1,1800,-7,0,0 +2013,6,9,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,1345,1,0,1658,23,1,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1215,-1,0,1326,-9,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,830,-3,0,929,-12,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-6,0,1229,-10,0,0 +2013,9,29,7,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1811,0,,2008,0,1,1 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1445,2,0,1715,2,0,0 +2013,8,10,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,725,8,0,919,11,0,0 +2013,7,22,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,12,0,2000,9,0,0 +2013,6,14,5,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-3,0,1201,3,0,0 +2013,5,28,2,VX,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1015,-7,0,1535,-17,0,0 +2013,6,20,4,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1050,-14,0,1220,-20,0,0 +2013,5,2,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1738,-5,0,2238,-17,0,0 +2013,10,23,3,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1430,9,0,1635,5,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1450,95,1,1600,121,1,0 +2013,8,12,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1910,38,1,2057,93,1,0 +2013,4,6,6,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1109,-1,0,1242,-5,0,0 +2013,8,18,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,30,-5,0,810,-7,0,0 +2013,10,31,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,730,-2,0,1011,5,0,0 +2013,6,16,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1830,0,0,2030,0,0,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1120,6,0,1255,83,1,0 +2013,10,26,6,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-9,0,936,-10,0,0 +2013,7,7,7,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,917,-11,0,0 +2013,7,28,7,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,6,0,2145,4,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,610,-3,0,905,-14,0,0 +2013,8,16,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,847,-2,0,934,-3,0,0 +2013,9,7,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1535,-3,0,1650,-13,0,0 +2013,8,1,4,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1122,-5,0,0 +2013,6,22,6,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1017,-8,0,1135,1,0,0 +2013,10,17,4,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,837,-5,0,1643,-33,0,0 +2013,9,27,5,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1215,20,1,1355,13,0,0 +2013,6,7,5,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,1730,12,0,2040,18,1,0 +2013,9,3,2,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,1,0,1815,0,0,0 +2013,8,9,5,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2315,-2,0,702,-29,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-7,0,2200,6,0,0 +2013,8,25,7,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1915,-10,0,2125,-13,0,0 +2013,8,5,1,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1840,1,0,2150,20,1,0 +2013,8,19,1,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1139,-8,0,1219,-23,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2045,0,0,2211,-13,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1135,-2,0,1300,2,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2040,43,1,2225,50,1,0 +2013,6,9,7,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1118,-1,0,1436,-1,0,0 +2013,8,27,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,852,-8,0,1205,-1,0,0 +2013,7,19,5,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1115,7,0,1244,-3,0,0 +2013,6,25,2,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1130,-7,0,1415,-26,0,0 +2013,7,23,2,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1019,3,0,1440,1,0,0 +2013,7,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1200,-3,0,1320,-2,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1900,-7,0,2128,-25,0,0 +2013,8,14,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1320,-7,0,1524,-9,0,0 +2013,10,30,3,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,0,0,1550,23,1,0 +2013,6,7,5,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,930,11,0,1340,0,0,0 +2013,10,23,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-5,0,2245,-12,0,0 +2013,4,21,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1429,-5,0,1743,-4,0,0 +2013,9,24,2,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1540,18,1,1812,12,0,0 +2013,9,3,2,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,1630,-3,0,1813,-4,0,0 +2013,6,6,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1604,-2,0,1705,-8,0,0 +2013,6,4,2,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,-1,0,2200,-36,0,0 +2013,6,15,6,UA,14679,San Diego International,San Diego,CA,11618,Newark Liberty International,Newark,NJ,801,-1,0,1630,-11,0,0 +2013,9,8,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,625,-10,0,835,-18,0,0 +2013,10,20,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1140,0,0,1400,13,0,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,605,0,0,725,30,1,0 +2013,7,24,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,600,16,1,1155,16,1,0 +2013,6,26,3,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,2025,52,1,2125,40,1,0 +2013,9,11,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,-11,0,859,-12,0,0 +2013,10,25,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1512,-9,0,1914,-6,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1340,21,1,1710,5,0,0 +2013,10,21,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1748,4,0,1914,-18,0,0 +2013,10,10,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1320,-2,0,1558,-9,0,0 +2013,6,24,1,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1140,56,1,1451,49,1,0 +2013,10,4,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,-7,0,2155,-15,0,0 +2013,5,23,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,925,3,0,1125,-4,0,0 +2013,6,27,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,835,-8,0,906,-22,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,920,53,1,1255,47,1,0 +2013,5,28,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1510,-6,0,1816,-9,0,0 +2013,9,13,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,705,-3,0,816,-8,0,0 +2013,6,24,1,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,2215,5,0,639,-21,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,745,-9,0,904,-5,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1915,-5,0,2107,-20,0,0 +2013,4,22,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1330,29,1,1535,8,0,0 +2013,6,21,5,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,-6,0,835,-11,0,0 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,12451,Jacksonville International,Jacksonville,FL,755,-12,0,1012,-11,0,0 +2013,10,17,4,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1435,-5,0,1830,-5,0,0 +2013,4,9,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,-6,0,1120,-6,0,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,1,0,1628,13,0,0 +2013,9,25,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1030,-3,0,1250,-2,0,0 +2013,9,20,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,-6,0,1917,-27,0,0 +2013,6,12,3,AA,12478,John F. Kennedy International,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,1,0,1930,-13,0,0 +2013,6,2,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1800,132,1,2140,131,1,0 +2013,9,21,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,2245,-3,0,447,-14,0,0 +2013,4,23,2,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-9,0,2025,-12,0,0 +2013,4,9,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1835,-1,0,2000,-11,0,0 +2013,4,27,6,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,1345,0,0,1515,-23,0,0 +2013,10,27,7,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1915,9,0,2122,-5,0,0 +2013,9,17,2,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1220,-12,0,1415,-24,0,0 +2013,8,14,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1501,-2,0,1603,4,0,0 +2013,5,29,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1955,30,1,2159,25,1,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1525,5,0,2055,-15,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2355,-4,0,636,-8,0,0 +2013,5,30,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,25,1,1245,17,1,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1735,1,0,1935,-8,0,0 +2013,4,5,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1559,7,0,1907,1,0,0 +2013,7,14,7,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,1305,21,1,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,60,1,1914,42,1,0 +2013,7,21,7,US,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1100,-7,0,1636,-24,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,5,0,1030,4,0,0 +2013,10,6,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1801,-6,0,2052,-12,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1100,-1,0,1200,4,0,0 +2013,7,17,3,VX,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,36,1,2329,30,1,0 +2013,9,14,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1135,6,0,1335,2,0,0 +2013,7,24,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1334,11,0,1432,2,0,0 +2013,5,27,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2150,29,1,15,29,1,0 +2013,7,12,5,US,14843,Luis Munoz Marin International,San Juan,PR,11057,Charlotte Douglas International,Charlotte,NC,1445,-8,0,1830,-10,0,0 +2013,9,6,5,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,-14,0,2132,-16,0,0 +2013,6,4,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,630,-2,0,1332,-3,0,0 +2013,4,9,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1740,40,1,1925,26,1,0 +2013,5,24,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1240,2,0,1459,-5,0,0 +2013,8,21,3,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1540,-12,0,2042,-14,0,0 +2013,4,10,3,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1510,9,0,1835,24,1,0 +2013,8,23,5,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1455,-1,0,1715,-24,0,0 +2013,6,25,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,17,1,1910,9,0,0 +2013,6,23,7,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1655,-1,0,1740,-10,0,0 +2013,5,6,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1115,29,1,1145,1,0,0 +2013,5,21,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,23,1,754,74,1,0 +2013,4,24,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1000,6,0,1105,7,0,0 +2013,8,10,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1010,19,1,1145,14,0,0 +2013,5,16,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1115,2,0,1407,22,1,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1015,1,0,1750,0,0,0 +2013,7,10,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,900,5,0,1105,-1,0,0 +2013,6,15,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2330,37,1,524,15,1,0 +2013,4,23,2,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,955,9,0,1205,2,0,0 +2013,10,26,6,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,1125,24,1,1335,41,1,0 +2013,4,24,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2005,126,1,2125,126,1,0 +2013,4,29,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1005,0,0,1138,-10,0,0 +2013,6,9,7,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-5,0,1820,-22,0,0 +2013,10,1,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-2,0,837,-1,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1145,4,0,1320,1,0,0 +2013,6,9,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,2040,90,1,2200,87,1,0 +2013,6,4,2,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,905,-8,0,1134,-13,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,2145,-5,0,2320,-18,0,0 +2013,7,15,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10529,Bradley International,Hartford,CT,1255,3,0,1600,-8,0,0 +2013,9,17,2,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1930,-5,0,2110,-36,0,0 +2013,6,28,5,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1700,40,1,1905,33,1,0 +2013,4,26,5,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1735,-4,0,1953,-12,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1020,16,1,1445,-1,0,0 +2013,9,19,4,YV,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-13,0,1901,-19,0,0 +2013,7,11,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-16,0,2326,-15,0,0 +2013,6,27,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,705,-1,0,1245,-13,0,0 +2013,5,23,4,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,755,-5,0,1122,-1,0,0 +2013,9,24,2,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,642,-1,0,830,-14,0,0 +2013,4,13,6,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2359,4,0,710,-1,0,0 +2013,6,29,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1105,45,1,1210,47,1,0 +2013,6,16,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-7,0,1500,-10,0,0 +2013,6,21,5,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1745,0,0,1910,1,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,835,-3,0,1012,-9,0,0 +2013,6,10,1,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2343,4,0,504,7,0,0 +2013,9,21,6,9E,13851,Will Rogers World,Oklahoma City,OK,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-1,0,917,-2,0,0 +2013,8,24,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2045,3,0,2215,-11,0,0 +2013,6,11,2,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,625,-4,0,1440,-19,0,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1745,1,0,1910,-5,0,0 +2013,5,27,1,EV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,823,-5,0,1004,5,0,0 +2013,7,16,2,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1905,4,0,2355,-2,0,0 +2013,9,6,5,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,1445,-7,0,1550,-13,0,0 +2013,5,3,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1835,18,1,2125,6,0,0 +2013,5,10,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1910,27,1,2130,29,1,0 +2013,9,28,6,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1830,2,0,1845,-5,0,0 +2013,9,7,6,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,735,-2,0,1002,-29,0,0 +2013,8,18,7,WN,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1945,0,0,2015,4,0,0 +2013,6,12,3,OO,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1904,8,0,8,5,0,0 +2013,4,4,4,DL,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1055,36,1,1347,29,1,0 +2013,5,15,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1630,28,1,1922,32,1,0 +2013,9,25,3,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,855,-3,0,1244,-8,0,0 +2013,6,29,6,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1323,6,0,1452,31,1,0 +2013,10,8,2,OO,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1200,-5,0,1515,1,0,0 +2013,4,20,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1200,2,0,1300,23,1,0 +2013,5,22,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,-2,0,825,-3,0,0 +2013,6,15,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1725,-2,0,1916,5,0,0 +2013,10,8,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1947,-6,0,2159,-36,0,0 +2013,8,11,7,FL,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1515,-2,0,1700,-14,0,0 +2013,5,25,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1605,3,0,2010,3,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1005,28,1,1115,22,1,0 +2013,8,8,4,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-8,0,1609,-13,0,0 +2013,10,25,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1930,-8,0,2040,-17,0,0 +2013,9,24,2,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,600,-6,0,815,-17,0,0 +2013,4,3,3,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10529,Bradley International,Hartford,CT,1958,1,0,2240,15,1,0 +2013,8,21,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2000,20,1,2127,59,1,0 +2013,8,17,6,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1545,10,0,1735,2,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1804,11,0,2015,9,0,0 +2013,5,4,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2004,-10,0,2309,-19,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1620,2,0,1749,-2,0,0 +2013,9,1,7,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,713,-9,0,901,-3,0,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2150,3,0,2320,-4,0,0 +2013,5,26,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-6,0,1308,-14,0,0 +2013,8,18,7,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1139,-2,0,1254,-4,0,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1249,9,0,1405,-2,0,0 +2013,6,15,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1552,11,0,1605,-1,0,0 +2013,8,4,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-5,0,1048,-20,0,0 +2013,7,19,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,800,-6,0,904,-18,0,0 +2013,8,25,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1623,-1,0,1917,-6,0,0 +2013,10,24,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1034,4,0,1428,-3,0,0 +2013,8,25,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2225,5,0,2327,-9,0,0 +2013,4,19,5,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,40,1,1834,23,1,0 +2013,7,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,800,0,0,905,-5,0,0 +2013,5,29,3,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1925,52,1,2055,14,0,0 +2013,4,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,830,4,0,935,-2,0,0 +2013,6,20,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-2,0,900,-7,0,0 +2013,6,14,5,9E,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2045,57,1,2308,23,1,0 +2013,5,9,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1848,0,,2000,0,1,1 +2013,6,15,6,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,10,0,1535,-2,0,0 +2013,5,23,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,0,0,1523,6,0,0 +2013,9,6,5,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1440,-5,0,1833,-15,0,0 +2013,7,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1215,0,0,1815,3,0,0 +2013,5,23,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1501,0,,1820,0,1,1 +2013,7,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1730,14,0,1850,13,0,0 +2013,9,5,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-7,0,1555,-16,0,0 +2013,5,13,1,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1659,-5,0,1923,-3,0,0 +2013,5,25,6,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,735,-4,0,1045,-23,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,755,33,1,1125,17,1,0 +2013,8,26,1,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2145,-4,0,2316,-28,0,0 +2013,6,29,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-5,0,1314,-18,0,0 +2013,6,9,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,-1,0,1622,-6,0,0 +2013,7,4,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1855,-4,0,2055,-36,0,0 +2013,8,18,7,B6,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1551,-1,0,1724,-6,0,0 +2013,4,27,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1245,-7,0,1326,-12,0,0 +2013,9,5,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1910,3,0,2042,-11,0,0 +2013,4,12,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,920,29,1,1205,28,1,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,850,24,1,1020,8,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,-5,0,1047,2,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1308,2,0,1816,-20,0,0 +2013,7,26,5,DL,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,715,17,1,840,6,0,0 +2013,8,17,6,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,812,-9,0,1119,-17,0,0 +2013,5,21,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1155,-3,0,1233,-4,0,0 +2013,4,11,4,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,0,,1231,0,1,1 +2013,10,6,7,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,955,-1,0,1435,9,0,0 +2013,5,15,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1100,8,0,1500,-11,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1320,-1,0,1640,-13,0,0 +2013,5,20,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,600,0,0,725,-7,0,0 +2013,6,11,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,725,-3,0,947,-10,0,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,0,0,942,-14,0,0 +2013,10,16,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1855,-5,0,2209,-22,0,0 +2013,10,15,2,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,-5,0,2021,25,1,0 +2013,8,11,7,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1359,5,0,1615,-8,0,0 +2013,10,3,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,959,-4,0,1230,-8,0,0 +2013,4,14,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,835,-2,0,955,-3,0,0 +2013,10,27,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1805,16,1,1920,13,0,0 +2013,5,16,4,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1235,-2,0,1358,-3,0,0 +2013,6,2,7,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1905,-1,0,2135,1,0,0 +2013,10,4,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1050,0,0,1225,-11,0,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1548,19,1,1727,11,0,0 +2013,5,14,2,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1408,51,1,1701,39,1,0 +2013,5,22,3,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1415,23,1,1545,16,1,0 +2013,7,28,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,1028,7,0,0 +2013,6,21,5,YV,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1311,119,1,1605,123,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,831,-2,0,1059,-1,0,0 +2013,8,14,3,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,756,2,0,924,4,0,0 +2013,7,22,1,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1225,-1,0,1514,-9,0,0 +2013,4,3,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,2142,-3,0,2251,2,0,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,18,1,1715,24,1,0 +2013,5,24,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2150,-2,0,2307,0,0,0 +2013,4,22,1,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,-3,0,1526,-17,0,0 +2013,7,4,4,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,0,0,920,-21,0,0 +2013,10,28,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1529,-5,0,1850,9,0,0 +2013,4,1,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,24,1,1450,10,0,0 +2013,10,9,3,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1328,-2,0,1400,2,0,0 +2013,8,7,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1315,1,0,1440,-2,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1313,179,1,1419,179,1,0 +2013,4,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14683,San Antonio International,San Antonio,TX,815,11,0,1055,-3,0,0 +2013,8,7,3,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,32,1,1525,32,1,0 +2013,7,20,6,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1310,10,0,1420,3,0,0 +2013,4,23,2,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1118,5,0,1258,20,1,0 +2013,4,22,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1359,-3,0,1518,-16,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2015,9,0,2137,6,0,0 +2013,4,22,1,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,830,3,0,955,9,0,0 +2013,8,30,5,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,2033,15,1,2122,8,0,0 +2013,8,13,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,3,0,617,-22,0,0 +2013,7,3,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1745,-1,0,1855,-4,0,0 +2013,10,18,5,YV,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,840,-8,0,1114,-8,0,0 +2013,7,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1820,20,1,2335,19,1,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1235,1,0,1431,-3,0,0 +2013,8,22,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2100,53,1,120,54,1,0 +2013,9,16,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,846,51,1,1210,55,1,0 +2013,7,2,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-5,0,900,-19,0,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,720,-5,0,904,12,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1617,-3,0,1818,-12,0,0 +2013,10,12,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,-5,0,2305,-32,0,0 +2013,8,5,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2041,-2,0,2155,-5,0,0 +2013,8,22,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,7,0,1404,13,0,0 +2013,4,24,3,OO,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1716,6,0,1722,0,0,0 +2013,10,17,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1035,65,1,1130,76,1,0 +2013,8,2,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1155,36,1,1433,17,1,0 +2013,9,1,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1420,12,0,1703,27,1,0 +2013,9,8,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,730,0,0,845,-5,0,0 +2013,10,16,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,935,4,0,1315,-20,0,0 +2013,7,13,6,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,2210,-5,0,621,-4,0,0 +2013,4,15,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1739,-7,0,2030,-26,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1540,29,1,1916,3,0,0 +2013,5,24,5,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1624,-4,0,2052,-7,0,0 +2013,10,11,5,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1600,5,0,1657,-6,0,0 +2013,10,30,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-8,0,1905,-8,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1746,-1,0,1907,0,0,0 +2013,7,3,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1810,0,,2045,0,1,1 +2013,5,21,2,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,854,-10,0,1028,-15,0,0 +2013,10,8,2,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1735,1,0,1930,-19,0,0 +2013,10,19,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,54,1,759,60,1,0 +2013,10,2,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2215,-8,0,20,-13,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2210,-11,0,2315,-20,0,0 +2013,4,25,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13342,General Mitchell International,Milwaukee,WI,1425,-4,0,1635,10,0,0 +2013,5,5,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1005,13,0,1325,0,0,0 +2013,9,19,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,645,-3,0,937,-28,0,0 +2013,6,9,7,EV,14524,Richmond International,Richmond,VA,12266,George Bush Intercontinental/Houston,Houston,TX,555,-2,0,753,3,0,0 +2013,9,24,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-5,0,1400,6,0,0 +2013,6,29,6,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1257,3,0,1354,-3,0,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1913,-1,0,2006,1,0,0 +2013,4,14,7,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1559,-18,0,0 +2013,8,18,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1745,-5,0,1943,-18,0,0 +2013,9,30,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,-3,0,1450,-6,0,0 +2013,7,15,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,755,-5,0,1012,14,0,0 +2013,7,10,3,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1120,3,0,1240,-15,0,0 +2013,6,22,6,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1407,25,1,2100,20,1,0 +2013,5,26,7,F9,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1328,-5,0,1819,-9,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2005,17,1,2255,15,1,0 +2013,4,13,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1059,-5,0,1150,-9,0,0 +2013,8,30,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1615,10,0,1822,18,1,0 +2013,6,22,6,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,730,0,0,1000,-22,0,0 +2013,7,6,6,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1620,8,0,1805,10,0,0 +2013,5,9,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-8,0,1038,-26,0,0 +2013,7,30,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1740,-1,0,1905,1,0,0 +2013,4,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1445,-4,0,1610,-13,0,0 +2013,8,24,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1758,15,1,2058,3,0,0 +2013,4,1,1,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1655,6,0,1924,31,1,0 +2013,5,22,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,1815,25,1,1930,20,1,0 +2013,8,27,2,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,0,0,1200,-8,0,0 +2013,4,26,5,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-13,0,844,-11,0,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,-4,0,1914,-8,0,0 +2013,8,23,5,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,4,0,837,23,1,0 +2013,4,4,4,WN,12339,Indianapolis International,Indianapolis,IN,13198,Kansas City International,Kansas City,MO,1525,-8,0,1600,-23,0,0 +2013,9,24,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,730,-5,0,1130,-24,0,0 +2013,7,21,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,2,0,1715,42,1,0 +2013,4,4,4,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,0,0,1618,-3,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,800,-2,0,948,-4,0,0 +2013,7,28,7,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1804,387,1,2100,371,1,0 +2013,9,21,6,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,515,21,1,849,12,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-4,0,1210,-2,0,0 +2013,9,20,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1725,26,1,1830,23,1,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1830,-6,0,1944,0,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,6,0,2200,-1,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2025,11,0,2155,-1,0,0 +2013,8,31,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-4,0,1604,-1,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1735,33,1,2125,26,1,0 +2013,10,12,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,755,-3,0,1000,-12,0,0 +2013,6,10,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1345,-6,0,1515,-21,0,0 +2013,10,20,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1410,-6,0,1508,-4,0,0 +2013,9,18,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1920,-6,0,2104,2,0,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1830,7,0,2132,38,1,0 +2013,6,19,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-7,0,1900,-15,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1535,44,1,2255,49,1,0 +2013,8,29,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,710,-8,0,845,-11,0,0 +2013,10,30,3,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-4,0,2051,-12,0,0 +2013,7,10,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2129,123,1,2244,125,1,0 +2013,9,27,5,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2109,15,1,2159,24,1,0 +2013,8,5,1,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,10,0,1936,16,1,0 +2013,6,6,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,850,0,0,1313,5,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1000,-3,0,1106,7,0,0 +2013,7,24,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,940,6,0,1620,-15,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,805,-2,0,855,7,0,0 +2013,5,18,6,F9,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1645,26,1,1913,73,1,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1045,37,1,1610,26,1,0 +2013,7,18,4,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1729,9,0,1855,56,1,0 +2013,9,11,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,722,-4,0,901,-16,0,0 +2013,10,5,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1110,9,0,1240,-1,0,0 +2013,4,20,6,AA,14771,San Francisco International,San Francisco,CA,13303,Miami International,Miami,FL,615,10,0,1440,-23,0,0 +2013,6,3,1,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1235,-1,0,1420,-20,0,0 +2013,7,25,4,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1940,143,1,2115,125,1,0 +2013,5,27,1,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1130,24,1,1215,33,1,0 +2013,4,17,3,B6,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1725,-5,0,2246,-24,0,0 +2013,7,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,630,-1,0,739,-2,0,0 +2013,5,31,5,EV,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,643,22,1,947,12,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1930,6,0,2214,-6,0,0 +2013,7,27,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,933,-16,0,1235,-38,0,0 +2013,6,18,2,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1035,0,0,1344,11,0,0 +2013,5,11,6,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,0,0,1120,3,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1820,21,1,1930,16,1,0 +2013,5,4,6,9E,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1652,-8,0,1905,-12,0,0 +2013,10,5,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,1045,9,0,1625,13,0,0 +2013,5,30,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1600,-4,0,1630,3,0,0 +2013,9,20,5,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1125,2,0,1210,4,0,0 +2013,6,6,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1035,0,0,1200,-5,0,0 +2013,6,12,3,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1310,1,0,1532,0,0,0 +2013,5,17,5,WN,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,650,-2,0,940,-13,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,552,-2,0,804,-1,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1435,-1,0,1645,0,0,0 +2013,7,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1630,0,0,1745,0,0,0 +2013,9,24,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1935,0,0,2035,3,0,0 +2013,5,30,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,20,1,2110,27,1,0 +2013,6,19,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,940,14,0,1820,-8,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,845,-4,0,1014,-18,0,0 +2013,10,21,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12191,William P Hobby,Houston,TX,630,6,0,1210,17,1,0 +2013,10,9,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,33,1,1709,16,1,0 +2013,10,1,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-8,0,749,-12,0,0 +2013,10,29,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1712,0,0,1904,-2,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2030,-5,0,10,-4,0,0 +2013,6,19,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-2,0,1739,-8,0,0 +2013,4,26,5,9E,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,1935,91,1,2129,82,1,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1030,41,1,1335,50,1,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,741,-5,0,854,-9,0,0 +2013,5,15,3,WN,13232,Chicago Midway International,Chicago,IL,14683,San Antonio International,San Antonio,TX,610,0,0,900,-5,0,0 +2013,5,21,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-5,0,920,-12,0,0 +2013,4,7,7,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1050,-1,0,1150,0,0,0 +2013,6,30,7,FL,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,1908,107,1,2213,101,1,0 +2013,8,31,6,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,818,-5,0,1034,-23,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,13,0,1936,64,1,0 +2013,7,2,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1547,74,1,1840,72,1,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,832,10,0,1124,-3,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,12451,Jacksonville International,Jacksonville,FL,1000,-9,0,1123,1,0,0 +2013,5,19,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,2215,38,1,2335,25,1,0 +2013,8,12,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1010,-5,0,1150,-11,0,0 +2013,6,7,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1235,20,1,1620,19,1,0 +2013,6,19,3,B6,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1350,-1,0,1505,-14,0,0 +2013,7,14,7,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1744,-5,0,1929,-2,0,0 +2013,4,15,1,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,804,-5,0,933,2,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1830,14,0,1940,2,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1109,1,0,1413,-14,0,0 +2013,4,29,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,700,-3,0,959,-16,0,0 +2013,9,6,5,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1045,-6,0,1312,3,0,0 +2013,9,25,3,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2149,0,0,2334,0,0,0 +2013,4,19,5,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1010,24,1,1645,11,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1458,10,0,1624,-4,0,0 +2013,9,24,2,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,840,16,1,1025,16,1,0 +2013,5,22,3,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1720,5,0,2000,7,0,0 +2013,9,29,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-3,0,1431,-43,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,850,-1,0,1209,12,0,0 +2013,7,26,5,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1945,0,,2230,0,1,1 +2013,5,18,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1756,75,1,1821,64,1,0 +2013,8,15,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1335,2,0,1449,-20,0,0 +2013,5,13,1,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1825,-4,0,2005,-12,0,0 +2013,4,11,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1218,100,1,1330,105,1,0 +2013,5,13,1,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2000,-1,0,2120,-11,0,0 +2013,4,4,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1655,-5,0,1801,-13,0,0 +2013,6,23,7,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,953,-5,0,1159,-12,0,0 +2013,9,13,5,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1345,62,1,1510,58,1,0 +2013,5,1,3,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1045,-1,0,1230,-19,0,0 +2013,6,2,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1017,-1,0,1304,3,0,0 +2013,6,4,2,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,930,-3,0,1125,-2,0,0 +2013,6,19,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,2045,4,0,2140,1,0,0 +2013,5,9,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1950,46,1,2243,48,1,0 +2013,8,2,5,9E,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,13,0,1156,3,0,0 +2013,8,8,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1010,-7,0,1309,-3,0,0 +2013,6,19,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-6,0,1152,-7,0,0 +2013,10,12,6,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1700,3,0,1915,-12,0,0 +2013,9,27,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,605,-2,0,835,-14,0,0 +2013,8,31,6,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,47,1,1358,37,1,0 +2013,5,29,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1817,-4,0,1854,-8,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-4,0,1632,-14,0,0 +2013,7,1,1,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1558,-6,0,1645,-8,0,0 +2013,7,29,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,-3,0,1901,-9,0,0 +2013,7,8,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1930,7,0,2059,17,1,0 +2013,5,4,6,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1055,11,0,1210,-15,0,0 +2013,5,29,3,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1000,92,1,1222,90,1,0 +2013,7,15,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,1,0,1720,15,1,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1850,34,1,2120,47,1,0 +2013,8,14,3,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,-5,0,1930,-24,0,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,2150,11,0,2349,-8,0,0 +2013,5,9,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1050,1,0,1540,-3,0,0 +2013,10,7,1,B6,10721,Logan International,Boston,MA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1652,18,1,2016,17,1,0 +2013,7,30,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,2035,-11,0,2206,-12,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1520,143,1,1717,154,1,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1755,98,1,1924,80,1,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1205,-4,0,1426,12,0,0 +2013,6,13,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1130,0,0,1247,-19,0,0 +2013,8,28,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1112,-7,0,1154,-9,0,0 +2013,9,24,2,DL,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,2115,-4,0,553,4,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1655,7,0,2110,-13,0,0 +2013,10,8,2,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,755,-2,0,935,-12,0,0 +2013,7,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1610,6,0,1740,0,0,0 +2013,6,25,2,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1646,-2,0,1749,-2,0,0 +2013,8,30,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1116,16,1,1628,9,0,0 +2013,7,5,5,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,930,-3,0,1651,19,1,0 +2013,5,30,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1200,-1,0,1325,-12,0,0 +2013,4,24,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-7,0,1945,-12,0,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1044,-6,0,1317,17,1,0 +2013,4,15,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,1955,-11,0,0 +2013,4,2,2,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,957,-5,0,1320,-8,0,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1220,46,1,1650,38,1,0 +2013,7,20,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,950,-3,0,1145,-11,0,0 +2013,7,16,2,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1947,33,1,2135,22,1,0 +2013,7,24,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-4,0,1043,-14,0,0 +2013,7,11,4,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,735,-1,0,925,-2,0,0 +2013,8,18,7,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,759,0,0,950,10,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,830,21,1,1020,2,0,0 +2013,4,19,5,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1515,22,1,1605,2,0,0 +2013,8,12,1,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-7,0,1813,-22,0,0 +2013,9,6,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-5,0,836,-3,0,0 +2013,4,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,740,0,0,900,8,0,0 +2013,9,18,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,950,-6,0,1305,-18,0,0 +2013,4,26,5,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1059,8,0,1240,-2,0,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2210,-2,0,2339,-13,0,0 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2025,21,1,2155,14,0,0 +2013,4,30,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,759,-4,0,1039,-10,0,0 +2013,9,30,1,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1508,33,1,1648,34,1,0 +2013,5,20,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,10,0,925,10,0,0 +2013,6,6,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1744,-7,0,1930,-13,0,0 +2013,4,30,2,UA,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1456,-8,0,1657,-14,0,0 +2013,5,13,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,1818,12,0,2055,-5,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1815,-2,0,1920,-2,0,0 +2013,8,16,5,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,1800,11,0,2005,0,0,0 +2013,5,6,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,2015,-2,0,2037,-13,0,0 +2013,5,1,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1923,-4,0,2135,0,0,0 +2013,4,5,5,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,930,-4,0,1240,-12,0,0 +2013,9,6,5,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1125,6,0,1335,-7,0,0 +2013,10,19,6,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,2,0,1835,-17,0,0 +2013,4,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1315,-2,0,1417,-8,0,0 +2013,5,14,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-1,0,1335,8,0,0 +2013,6,5,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1505,9,0,1610,7,0,0 +2013,4,22,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-1,0,1335,-4,0,0 +2013,7,22,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,1,0,1619,11,0,0 +2013,10,15,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1227,-8,0,1605,-12,0,0 +2013,7,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1729,9,0,1929,-22,0,0 +2013,7,8,1,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-1,0,2030,1,0,0 +2013,4,27,6,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-3,0,1107,-2,0,0 +2013,4,24,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,710,-5,0,830,9,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1835,6,0,2135,-1,0,0 +2013,6,13,4,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,158,1,2308,148,1,0 +2013,8,31,6,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,7,0,1517,8,0,0 +2013,8,11,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,1605,-5,0,1652,-2,0,0 +2013,4,23,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-7,0,1355,17,1,0 +2013,5,29,3,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,1345,25,1,1755,51,1,0 +2013,9,2,1,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1530,33,1,1645,23,1,0 +2013,8,7,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1000,-3,0,1121,-6,0,0 +2013,6,14,5,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2130,122,1,2245,99,1,0 +2013,7,22,1,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,605,-8,0,612,-17,0,0 +2013,6,22,6,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,805,-2,0,1120,-16,0,0 +2013,5,18,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,3,0,1427,25,1,0 +2013,5,26,7,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,629,-7,0,1221,-16,0,0 +2013,10,13,7,WN,12953,LaGuardia,New York,NY,13342,General Mitchell International,Milwaukee,WI,935,-3,0,1055,-23,0,0 +2013,8,1,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,36,1,1845,59,1,0 +2013,10,13,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-3,0,1419,-11,0,0 +2013,8,12,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1325,11,0,1550,11,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1015,4,0,1315,-5,0,0 +2013,5,11,6,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,13,0,2337,6,0,0 +2013,5,12,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,940,-14,0,0 +2013,7,21,7,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2150,17,1,25,3,0,0 +2013,10,11,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1150,2,0,1305,-4,0,0 +2013,4,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,1945,-1,0,2240,-4,0,0 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-7,0,1224,2,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-1,0,1425,-29,0,0 +2013,4,4,4,WN,10693,Nashville International,Nashville,TN,13198,Kansas City International,Kansas City,MO,630,1,0,810,-7,0,0 +2013,5,17,5,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1410,-3,0,2010,-9,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2040,48,1,2305,50,1,0 +2013,8,21,3,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,-4,0,1323,-12,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1750,-6,0,1911,-17,0,0 +2013,10,9,3,EV,12451,Jacksonville International,Jacksonville,FL,11618,Newark Liberty International,Newark,NJ,1136,-5,0,1355,-11,0,0 +2013,8,2,5,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2003,-7,0,2212,7,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2050,9,0,2210,1,0,0 +2013,7,6,6,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1053,8,0,1317,6,0,0 +2013,8,9,5,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1205,57,1,1249,62,1,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,940,-4,0,1105,-16,0,0 +2013,7,15,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,2,0,1040,-6,0,0 +2013,7,26,5,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,545,4,0,640,5,0,0 +2013,9,18,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,1,0,1602,1,0,0 +2013,5,24,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2025,-11,0,2115,-15,0,0 +2013,7,20,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1245,1,0,1340,-2,0,0 +2013,9,4,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1355,5,0,1520,17,1,0 +2013,10,18,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,940,7,0,1215,7,0,0 +2013,6,21,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1330,6,0,1425,-2,0,0 +2013,7,6,6,B6,12451,Jacksonville International,Jacksonville,FL,12478,John F. Kennedy International,New York,NY,1100,-4,0,1313,-10,0,0 +2013,9,28,6,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1125,-4,0,1222,-12,0,0 +2013,8,1,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1610,-2,0,1825,-13,0,0 +2013,10,23,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,800,-3,0,1028,-27,0,0 +2013,9,8,7,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1520,-5,0,1705,-8,0,0 +2013,6,21,5,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2040,100,1,2300,96,1,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1430,80,1,2305,92,1,0 +2013,10,23,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1005,-11,0,1217,-20,0,0 +2013,7,11,4,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1930,60,1,2232,64,1,0 +2013,8,7,3,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1033,33,1,1355,33,1,0 +2013,9,4,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1055,-4,0,1411,-15,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2018,5,0,2307,-5,0,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1719,63,1,1829,76,1,0 +2013,4,5,5,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-10,0,740,-6,0,0 +2013,10,24,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,2101,8,0,2227,4,0,0 +2013,8,19,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,-7,0,1810,-8,0,0 +2013,5,24,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1110,-7,0,1441,-6,0,0 +2013,7,28,7,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2154,3,0,2338,-10,0,0 +2013,7,13,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1640,201,1,1800,185,1,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1455,-5,0,1740,-16,0,0 +2013,6,28,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,730,-2,0,945,3,0,0 +2013,9,27,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1120,5,0,1227,20,1,0 +2013,8,23,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1217,-4,0,1354,-1,0,0 +2013,8,13,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1303,82,1,1419,73,1,0 +2013,8,27,2,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,1700,2,0,1830,0,0,0 +2013,6,22,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1155,2,0,1310,-12,0,0 +2013,7,6,6,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-2,0,830,-6,0,0 +2013,10,22,2,EV,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1656,-13,0,1843,-8,0,0 +2013,8,22,4,FL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,2,0,2010,22,1,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-7,0,2229,11,0,0 +2013,6,25,2,DL,14869,Salt Lake City International,Salt Lake City,UT,15016,Lambert-St. Louis International,St. Louis,MO,2004,2,0,2353,-10,0,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,2,0,1350,8,0,0 +2013,10,30,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,-5,0,1845,-1,0,0 +2013,4,8,1,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1921,44,1,2037,33,1,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1642,-7,0,48,-18,0,0 +2013,4,26,5,WN,10721,Logan International,Boston,MA,13232,Chicago Midway International,Chicago,IL,600,9,0,755,1,0,0 +2013,7,6,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,545,4,0,1309,16,1,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,14771,San Francisco International,San Francisco,CA,835,7,0,1115,-27,0,0 +2013,5,20,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,830,-6,0,959,-10,0,0 +2013,6,2,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,79,1,1930,104,1,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,1145,174,1,1320,184,1,0 +2013,4,9,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1545,1,0,1705,-3,0,0 +2013,9,6,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,855,-1,0,1020,-20,0,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1301,1,0,1434,3,0,0 +2013,9,17,2,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,4,0,1450,-7,0,0 +2013,7,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1445,8,0,1605,9,0,0 +2013,6,15,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,846,-16,0,0 +2013,10,30,3,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,-17,0,1710,-14,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1035,7,0,1218,-1,0,0 +2013,7,11,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-4,0,1356,0,0,0 +2013,5,13,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-7,0,2037,-13,0,0 +2013,5,31,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1525,1,0,1715,-4,0,0 +2013,5,17,5,HA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,-2,0,2055,-9,0,0 +2013,5,23,4,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,-1,0,1358,-14,0,0 +2013,8,15,4,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1135,-6,0,1250,-8,0,0 +2013,9,10,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1925,1,0,2110,-11,0,0 +2013,9,7,6,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,4,0,1809,7,0,0 +2013,5,20,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1930,0,0,2156,34,1,0 +2013,5,8,3,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,-3,0,1408,-3,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2045,31,1,2335,29,1,0 +2013,8,5,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,635,-3,0,750,-11,0,0 +2013,4,12,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,230,1,1040,216,1,0 +2013,9,16,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,859,-1,0,1049,-6,0,0 +2013,5,22,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1251,0,0,1515,-2,0,0 +2013,8,21,3,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,850,-2,0,1041,16,1,0 +2013,4,25,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,630,-2,0,715,4,0,0 +2013,6,12,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,640,-3,0,710,-9,0,0 +2013,10,7,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1635,4,0,2215,-18,0,0 +2013,10,30,3,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2045,-10,0,2203,-14,0,0 +2013,8,4,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,17,1,2040,33,1,0 +2013,5,8,3,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,825,-10,0,1419,-14,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,815,22,1,1045,24,1,0 +2013,9,8,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1053,-11,0,1131,-10,0,0 +2013,5,23,4,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1517,44,1,1811,29,1,0 +2013,10,31,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1405,-3,0,1456,8,0,0 +2013,10,6,7,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1521,0,0,1643,-3,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14635,Southwest Florida International,Fort Myers,FL,1906,10,0,2226,-2,0,0 +2013,8,3,6,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1855,25,1,2040,1,0,0 +2013,8,5,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,-5,0,1617,-8,0,0 +2013,10,3,4,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1902,19,1,1959,26,1,0 +2013,8,12,1,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,830,4,0,1022,-2,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,36,1,2219,19,1,0 +2013,8,12,1,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2140,73,1,50,65,1,0 +2013,9,2,1,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,850,-5,0,1251,-19,0,0 +2013,10,17,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2142,-5,0,2239,-22,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,845,0,0,1617,-6,0,0 +2013,8,18,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1816,97,1,2050,61,1,0 +2013,6,6,4,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,1930,-8,0,2047,-2,0,0 +2013,4,9,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2029,-8,0,2200,-21,0,0 +2013,6,22,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12451,Jacksonville International,Jacksonville,FL,1000,56,1,1355,67,1,0 +2013,4,28,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,945,-1,0,1237,7,0,0 +2013,6,26,3,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2220,-1,0,105,-2,0,0 +2013,8,25,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1145,-4,0,1424,-14,0,0 +2013,8,17,6,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2025,-7,0,2148,-23,0,0 +2013,7,5,5,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,955,-1,0,1128,-38,0,0 +2013,10,24,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1125,-8,0,1225,-17,0,0 +2013,6,24,1,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1221,1,0,1415,-5,0,0 +2013,9,13,5,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,725,0,0,850,-12,0,0 +2013,6,15,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1115,-5,0,1407,6,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,945,-6,0,1125,10,0,0 +2013,7,2,2,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1652,-4,0,2159,-20,0,0 +2013,9,19,4,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,639,-6,0,852,-24,0,0 +2013,7,8,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1445,1,0,2146,-1,0,0 +2013,6,14,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,56,1,2252,43,1,0 +2013,7,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1955,-4,0,2201,6,0,0 +2013,4,11,4,EV,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,38,1,1422,28,1,0 +2013,4,5,5,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1205,-6,0,1345,-1,0,0 +2013,9,23,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,940,-3,0,1045,-8,0,0 +2013,8,4,7,UA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1351,1,0,1939,-22,0,0 +2013,7,21,7,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1945,0,0,2140,0,0,0 +2013,4,2,2,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,635,-6,0,920,-11,0,0 +2013,6,28,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,1,0,1135,-16,0,0 +2013,10,30,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,535,-5,0,935,-23,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1447,17,1,1605,38,1,0 +2013,7,15,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1215,9,0,1330,29,1,0 +2013,5,27,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1235,-2,0,1425,-19,0,0 +2013,4,6,6,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1240,2,0,1641,22,1,0 +2013,5,3,5,OO,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,1940,12,0,2127,-6,0,0 +2013,5,9,4,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1815,-1,0,2022,-3,0,0 +2013,5,6,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1320,-2,0,1457,-7,0,0 +2013,5,14,2,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1336,-4,0,1521,0,0,0 +2013,10,7,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,-4,0,2020,-5,0,0 +2013,6,1,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1309,-3,0,1830,16,1,0 +2013,7,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,630,-11,0,937,-14,0,0 +2013,6,13,4,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-11,0,711,-20,0,0 +2013,6,17,1,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1705,120,1,1830,120,1,0 +2013,10,24,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1405,0,0,2000,15,1,0 +2013,9,27,5,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2030,-1,0,2110,7,0,0 +2013,6,9,7,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1540,21,1,1745,28,1,0 +2013,8,25,7,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2208,10,0,41,9,0,0 +2013,5,19,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-3,0,1402,-16,0,0 +2013,8,8,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-2,0,2108,-2,0,0 +2013,4,15,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,730,-7,0,855,-19,0,0 +2013,6,5,3,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1720,57,1,1839,45,1,0 +2013,7,2,2,YV,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,840,20,1,1120,8,0,0 +2013,8,19,1,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1332,-6,0,1415,-16,0,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,715,1,0,915,-2,0,0 +2013,8,7,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-2,0,1055,-16,0,0 +2013,10,1,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1730,-6,0,1905,-11,0,0 +2013,4,22,1,B6,14893,Sacramento International,Sacramento,CA,12478,John F. Kennedy International,New York,NY,2309,111,1,719,92,1,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1905,-2,0,2110,-3,0,0 +2013,8,27,2,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1043,-1,0,1354,19,1,0 +2013,8,16,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1555,-4,0,1750,-11,0,0 +2013,5,16,4,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1830,61,1,1925,60,1,0 +2013,7,7,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,815,-5,0,955,-15,0,0 +2013,4,2,2,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,0,0,2056,-2,0,0 +2013,10,11,5,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1515,2,0,1640,2,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,0,0,1113,-13,0,0 +2013,10,21,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1315,9,0,1540,0,0,0 +2013,8,14,3,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1230,-7,0,1356,-10,0,0 +2013,4,22,1,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1420,-2,0,0 +2013,4,25,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1255,0,0,1615,-13,0,0 +2013,7,17,3,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2235,7,0,2325,-8,0,0 +2013,8,23,5,AA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,850,-11,0,1110,-31,0,0 +2013,8,28,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,650,164,1,710,158,1,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1756,1,0,1910,7,0,0 +2013,5,8,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1008,201,1,1152,206,1,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1555,0,,1710,0,1,1 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1815,-10,0,1955,-30,0,0 +2013,9,21,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1740,-5,0,1905,-12,0,0 +2013,5,24,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1905,-1,0,2335,-1,0,0 +2013,7,30,2,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,715,-7,0,940,-10,0,0 +2013,9,4,3,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,545,-3,0,715,-8,0,0 +2013,8,8,4,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1010,1,0,1120,3,0,0 +2013,5,28,2,EV,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1338,-5,0,1656,-21,0,0 +2013,8,1,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,18,1,1734,32,1,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,1344,84,1,2212,71,1,0 +2013,4,23,2,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1610,-5,0,1724,-3,0,0 +2013,6,21,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-2,0,1249,-4,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,855,-7,0,1047,-21,0,0 +2013,8,14,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-7,0,1255,2,0,0 +2013,6,26,3,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1055,-8,0,1455,-14,0,0 +2013,5,28,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1715,4,0,2045,6,0,0 +2013,6,25,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-5,0,820,-19,0,0 +2013,5,15,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1421,0,0,1646,-14,0,0 +2013,6,4,2,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2234,5,0,650,3,0,0 +2013,9,16,1,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2045,-3,0,2340,-4,0,0 +2013,9,29,7,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1457,1,0,1623,14,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,1027,-16,0,0 +2013,7,22,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,753,-14,0,0 +2013,6,4,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,730,-4,0,820,2,0,0 +2013,7,29,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,615,68,1,837,65,1,0 +2013,7,10,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1755,89,1,2009,85,1,0 +2013,4,8,1,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1600,8,0,1715,1,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,820,-1,0,926,14,0,0 +2013,8,24,6,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1005,-5,0,1714,-16,0,0 +2013,5,13,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-1,0,1630,3,0,0 +2013,5,11,6,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2111,-1,0,526,-7,0,0 +2013,6,30,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,0,0,634,29,1,0 +2013,6,11,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1650,14,0,1805,3,0,0 +2013,10,31,4,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,626,-4,0,820,0,0,0 +2013,6,4,2,F9,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1650,33,1,1802,35,1,0 +2013,8,13,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2225,-5,0,2330,-23,0,0 +2013,9,5,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1345,13,0,1544,-6,0,0 +2013,8,8,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,550,-3,0,740,-16,0,0 +2013,6,26,3,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1905,-3,0,2020,-6,0,0 +2013,7,27,6,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-4,0,1300,-8,0,0 +2013,5,1,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-5,0,1035,-12,0,0 +2013,9,17,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-5,0,1723,-4,0,0 +2013,7,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,0,0,1029,-3,0,0 +2013,7,15,1,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,730,1,0,1020,-11,0,0 +2013,9,15,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-5,0,1252,-9,0,0 +2013,8,21,3,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1803,4,0,2109,-2,0,0 +2013,9,5,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,-2,0,2156,-10,0,0 +2013,10,7,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2000,0,,2129,0,1,1 +2013,6,19,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,920,-5,0,1017,4,0,0 +2013,8,1,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,735,0,0,825,-1,0,0 +2013,9,20,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,905,55,1,1337,74,1,0 +2013,6,30,7,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-5,0,929,-6,0,0 +2013,6,7,5,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1030,-2,0,1315,0,0,0 +2013,9,16,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,815,0,0,925,-11,0,0 +2013,4,18,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,38,1,1530,34,1,0 +2013,7,9,2,9E,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1935,179,1,2223,162,1,0 +2013,4,8,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1120,-10,0,1233,-10,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2210,-2,0,2347,-12,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,940,-1,0,1220,-20,0,0 +2013,7,5,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1115,-3,0,1222,-13,0,0 +2013,8,18,7,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1928,24,1,2103,18,1,0 +2013,10,30,3,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1715,-4,0,2015,-39,0,0 +2013,5,9,4,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10721,Logan International,Boston,MA,722,-5,0,1025,-20,0,0 +2013,9,11,3,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1000,-1,0,1556,-2,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13931,Norfolk International,Norfolk,VA,1825,11,0,2215,9,0,0 +2013,10,19,6,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,835,2,0,1150,-4,0,0 +2013,5,16,4,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2025,3,0,2333,-34,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1726,-2,0,1840,-12,0,0 +2013,6,19,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2155,10,0,5,14,0,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-2,0,950,-8,0,0 +2013,10,14,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1710,-4,0,2016,0,0,0 +2013,9,25,3,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1745,1,0,2016,-8,0,0 +2013,7,24,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,850,-6,0,924,-9,0,0 +2013,10,3,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,735,-5,0,835,-5,0,0 +2013,5,13,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,910,1,0,1437,20,1,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1210,-2,0,1940,18,1,0 +2013,8,25,7,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-8,0,900,-25,0,0 +2013,10,22,2,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-6,0,1405,-12,0,0 +2013,9,22,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,830,-2,0,1019,-9,0,0 +2013,4,7,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-1,0,1803,1,0,0 +2013,6,15,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,640,-6,0,843,-18,0,0 +2013,10,8,2,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1450,-3,0,1700,-24,0,0 +2013,4,10,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-6,0,1427,-14,0,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1231,0,0,1505,11,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,951,0,0,1158,-23,0,0 +2013,10,17,4,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1716,-5,0,1920,-32,0,0 +2013,8,23,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1406,-5,0,1559,-12,0,0 +2013,6,21,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,161,1,23,148,1,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,-3,0,1140,-3,0,0 +2013,7,27,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,852,-7,0,941,0,0,0 +2013,10,17,4,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1145,-1,0,1450,-31,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2021,12,0,2200,-3,0,0 +2013,9,17,2,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,755,-2,0,905,10,0,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1357,-7,0,1803,4,0,0 +2013,8,12,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-4,0,2240,-18,0,0 +2013,5,15,3,OO,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,755,-2,0,1045,2,0,0 +2013,5,2,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1553,0,,1758,0,1,1 +2013,7,25,4,9E,14683,San Antonio International,San Antonio,TX,13244,Memphis International,Memphis,TN,1111,-5,0,1305,-7,0,0 +2013,7,28,7,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1633,11,0,1909,16,1,0 +2013,5,17,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,615,-1,0,739,0,0,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2035,1,0,2302,-2,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,-2,0,1940,-10,0,0 +2013,4,5,5,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1535,-1,0,1718,-3,0,0 +2013,10,17,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1103,-5,0,1150,-9,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,0,0,1945,-14,0,0 +2013,9,3,2,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,2033,0,0,2211,-5,0,0 +2013,5,17,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-4,0,1509,-19,0,0 +2013,9,6,5,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2025,2,0,2310,-10,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,17,1,2135,18,1,0 +2013,10,31,4,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,605,-7,0,720,-11,0,0 +2013,9,17,2,AS,14893,Sacramento International,Sacramento,CA,13830,Kahului Airport,Kahului,HI,945,-8,0,1210,-3,0,0 +2013,7,10,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1323,-3,0,1442,-7,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1540,-7,0,1656,-18,0,0 +2013,6,14,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1310,3,0,1939,-1,0,0 +2013,5,11,6,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1344,15,1,1527,-4,0,0 +2013,10,20,7,AS,14679,San Diego International,San Diego,CA,13830,Kahului Airport,Kahului,HI,710,-13,0,1001,2,0,0 +2013,4,7,7,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,812,-4,0,1151,-5,0,0 +2013,4,15,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1025,2,0,1226,-3,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,2109,-9,0,2234,-4,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1617,-2,0,1739,-9,0,0 +2013,10,29,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,720,-2,0,820,-7,0,0 +2013,10,31,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-6,0,715,-10,0,0 +2013,4,9,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1845,-7,0,2011,-22,0,0 +2013,8,20,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,16,1,1900,8,0,0 +2013,6,23,7,B6,14831,Norman Y. Mineta San Jose International,San Jose,CA,12478,John F. Kennedy International,New York,NY,2310,72,1,730,69,1,0 +2013,8,12,1,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,90,1,2330,90,1,0 +2013,10,26,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1844,34,1,1918,42,1,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,0,0,2013,9,0,0 +2013,7,22,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-6,0,1025,-2,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1255,0,0,1445,-2,0,0 +2013,9,13,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,800,10,0,917,8,0,0 +2013,7,1,1,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,0,,2142,0,1,1 +2013,7,29,1,WN,10423,Austin - Bergstrom International,Austin,TX,15304,Tampa International,Tampa,FL,1310,-3,0,1630,0,0,0 +2013,4,1,1,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,615,-5,0,735,-12,0,0 +2013,8,9,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1240,0,0,1610,0,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1000,1,0,1154,-11,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,905,0,0,1240,8,0,0 +2013,7,6,6,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,605,-2,0,810,0,0,0 +2013,10,25,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,857,-1,0,1659,29,1,0 +2013,5,17,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,4,0,1709,2,0,0 +2013,4,29,1,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1755,-5,0,1917,-6,0,0 +2013,8,15,4,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,640,-1,0,936,-9,0,0 +2013,6,8,6,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1320,-3,0,1606,-7,0,0 +2013,7,8,1,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1650,-2,0,2010,-35,0,0 +2013,5,9,4,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-5,0,832,15,1,0 +2013,6,30,7,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1330,-6,0,1425,-7,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,-4,0,1113,-11,0,0 +2013,5,30,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2004,-7,0,2141,-9,0,0 +2013,5,23,4,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1957,-5,0,2108,-4,0,0 +2013,5,3,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,7,0,1442,-4,0,0 +2013,10,29,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,2042,-9,0,2330,-11,0,0 +2013,9,4,3,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1852,3,0,2013,-2,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1515,-6,0,1801,4,0,0 +2013,8,30,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1815,-1,0,2100,-11,0,0 +2013,5,28,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1740,0,0,1938,-3,0,0 +2013,4,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-3,0,1230,-11,0,0 +2013,8,23,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1735,-2,0,1850,-13,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,12,0,1515,1,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1920,0,0,2330,-6,0,0 +2013,7,24,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,23,1,2145,14,0,0 +2013,7,11,4,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,705,1,0,800,4,0,0 +2013,8,17,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2125,2,0,15,-5,0,0 +2013,7,25,4,EV,14122,Pittsburgh International,Pittsburgh,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1822,7,0,1930,-3,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1640,4,0,1915,-9,0,0 +2013,10,4,5,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,-1,0,1824,-1,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1500,1,0,1630,5,0,0 +2013,7,31,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1152,20,1,1238,26,1,0 +2013,9,20,5,9E,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1740,-13,0,1930,-21,0,0 +2013,7,12,5,B6,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,916,-11,0,0 +2013,5,21,2,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-2,0,740,-17,0,0 +2013,7,4,4,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1859,-10,0,2133,-21,0,0 +2013,5,10,5,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1036,-5,0,1619,-11,0,0 +2013,6,2,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,650,-3,0,855,-15,0,0 +2013,5,11,6,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,844,-4,0,1106,8,0,0 +2013,7,7,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,4,0,854,6,0,0 +2013,7,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1810,0,0,1925,47,1,0 +2013,5,6,1,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,14,0,2039,-38,0,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,-2,0,855,-5,0,0 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2000,6,0,2300,7,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-5,0,819,-19,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,625,-3,0,1040,-6,0,0 +2013,8,29,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-11,0,810,-19,0,0 +2013,7,3,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,830,2,0,1155,-13,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,3,0,1954,1,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,0,0,2000,-2,0,0 +2013,6,20,4,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,611,-7,0,954,-1,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1950,-4,0,2110,-27,0,0 +2013,5,2,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1350,7,0,1535,17,1,0 +2013,10,27,7,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,1305,-1,0,2029,-1,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1615,5,0,1903,27,1,0 +2013,10,3,4,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1331,-2,0,1604,-8,0,0 +2013,10,25,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1516,-5,0,2324,-16,0,0 +2013,4,18,4,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,726,-7,0,928,-38,0,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,25,1,1816,22,1,0 +2013,9,14,6,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1405,-4,0,1615,-22,0,0 +2013,9,25,3,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1430,-4,0,1606,-2,0,0 +2013,5,31,5,OO,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,700,-2,0,920,-7,0,0 +2013,6,21,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1825,-12,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,745,0,0,1005,-9,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1529,2,0,1845,-4,0,0 +2013,7,22,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1958,16,1,2125,19,1,0 +2013,8,18,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1103,28,1,1700,25,1,0 +2013,9,19,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1130,-3,0,1316,-9,0,0 +2013,9,23,1,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,916,-5,0,1126,-11,0,0 +2013,6,8,6,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,0,0,810,-6,0,0 +2013,6,22,6,DL,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1715,8,0,1933,-6,0,0 +2013,8,16,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-2,0,930,0,0,0 +2013,7,8,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1606,-4,0,1915,-5,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,815,28,1,925,16,1,0 +2013,6,20,4,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1410,-3,0,1820,-21,0,0 +2013,5,7,2,DL,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,605,-6,0,843,-7,0,0 +2013,4,19,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2100,22,1,2235,10,0,0 +2013,5,9,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1100,0,0,1340,-8,0,0 +2013,5,12,7,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,930,0,0,1050,-3,0,0 +2013,4,20,6,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1820,0,0,1934,-8,0,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,15,1,1510,13,0,0 +2013,8,18,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,0,0,1015,-6,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1648,60,1,55,86,1,0 +2013,8,12,1,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,37,1,1600,42,1,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1345,6,0,1454,-5,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10299,Ted Stevens Anchorage International,Anchorage,AK,1535,-2,0,1921,-12,0,0 +2013,6,11,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1015,-1,0,1115,-8,0,0 +2013,5,19,7,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1715,103,1,1829,121,1,0 +2013,7,9,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,0,0,1016,0,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1905,1,0,2036,-1,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1505,0,0,1629,-5,0,0 +2013,10,26,6,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1740,7,0,1900,-8,0,0 +2013,8,22,4,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1315,-4,0,1605,-9,0,0 +2013,7,23,2,MQ,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,1420,39,1,1515,26,1,0 +2013,6,19,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-7,0,1520,-12,0,0 +2013,9,30,1,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1925,-2,0,2050,-20,0,0 +2013,10,16,3,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1856,-2,0,2110,-6,0,0 +2013,8,4,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1251,-3,0,1700,6,0,0 +2013,8,9,5,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1040,98,1,1315,95,1,0 +2013,10,8,2,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1850,29,1,2205,24,1,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1910,0,0,2100,-12,0,0 +2013,8,12,1,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-2,0,2031,-13,0,0 +2013,8,4,7,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,-6,0,815,13,0,0 +2013,7,27,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1501,54,1,1800,31,1,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,-2,0,1010,-1,0,0 +2013,9,17,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1145,0,0,1246,11,0,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13204,Orlando International,Orlando,FL,930,-2,0,1755,-11,0,0 +2013,10,23,3,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,735,-3,0,1300,-16,0,0 +2013,10,19,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1910,0,0,2210,-14,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1720,2,0,2025,7,0,0 +2013,4,2,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,830,31,1,935,40,1,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1745,15,1,2205,9,0,0 +2013,5,25,6,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,1545,3,0,1805,-3,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,13,0,1705,13,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1525,15,1,1655,10,0,0 +2013,4,29,1,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,749,-3,0,1328,-6,0,0 +2013,4,12,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1941,-6,0,2135,-17,0,0 +2013,5,26,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1510,14,0,1705,15,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1330,1,0,1550,1,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,941,5,0,1120,-15,0,0 +2013,10,10,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,2040,20,1,2145,7,0,0 +2013,10,6,7,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,-2,0,1920,-2,0,0 +2013,9,22,7,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,2,0,1815,9,0,0 +2013,7,28,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1125,0,0,1302,13,0,0 +2013,8,22,4,WN,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,16,1,2040,-5,0,0 +2013,8,23,5,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1130,1,0,1425,3,0,0 +2013,9,29,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1305,-3,0,1426,-6,0,0 +2013,4,9,2,B6,14107,Phoenix Sky Harbor International,Phoenix,AZ,12478,John F. Kennedy International,New York,NY,2113,-5,0,500,-7,0,0 +2013,7,18,4,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1556,-6,0,1848,-17,0,0 +2013,7,29,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,830,0,0,0 +2013,5,3,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1830,-3,0,2200,-14,0,0 +2013,8,13,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1340,-5,0,1405,11,0,0 +2013,8,19,1,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,2120,-6,0,2255,3,0,0 +2013,8,14,3,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1850,-4,0,2113,7,0,0 +2013,10,12,6,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1310,10,0,1355,2,0,0 +2013,4,25,4,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,630,0,0,1230,-28,0,0 +2013,7,19,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1025,-13,0,1155,-1,0,0 +2013,8,2,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1314,-3,0,1517,-9,0,0 +2013,8,27,2,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,625,-7,0,820,-3,0,0 +2013,5,13,1,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1154,52,1,1800,59,1,0 +2013,8,2,5,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1355,-3,0,1710,-19,0,0 +2013,5,16,4,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,850,-4,0,1027,-8,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,-1,0,1415,-14,0,0 +2013,10,12,6,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,830,-3,0,1615,19,1,0 +2013,10,9,3,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1840,-1,0,1955,-13,0,0 +2013,6,13,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,802,9,0,1357,-2,0,0 +2013,10,4,5,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1630,11,0,1840,19,1,0 +2013,10,13,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,2130,6,0,2305,3,0,0 +2013,9,19,4,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2145,-2,0,2245,4,0,0 +2013,8,12,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1525,-10,0,1610,-15,0,0 +2013,6,3,1,B6,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,2359,-1,0,249,-4,0,0 +2013,9,8,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,955,-5,0,1405,-3,0,0 +2013,9,14,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1040,-4,0,1310,-1,0,0 +2013,8,18,7,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,4,0,1655,10,0,0 +2013,9,7,6,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,0,0,1816,-20,0,0 +2013,4,18,4,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,611,173,1,912,190,1,0 +2013,7,24,3,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,1730,35,1,1945,28,1,0 +2013,4,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,925,-3,0,1100,-6,0,0 +2013,10,16,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,4,0,1445,-8,0,0 +2013,7,29,1,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1420,2,0,1530,-3,0,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1830,8,0,1930,12,0,0 +2013,4,20,6,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1450,-3,0,2320,-9,0,0 +2013,5,26,7,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,-1,0,705,-8,0,0 +2013,9,25,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1333,4,0,1515,-11,0,0 +2013,4,14,7,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1320,-2,0,1711,11,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1350,-1,0,1645,-2,0,0 +2013,9,2,1,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,608,-9,0,719,-8,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1710,1,0,2105,-4,0,0 +2013,4,29,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,740,-2,0,923,10,0,0 +2013,7,21,7,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1230,-6,0,1415,-16,0,0 +2013,8,12,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1010,1,0,0 +2013,10,28,1,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1610,2,0,1850,13,0,0 +2013,5,4,6,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1755,-2,0,1953,-3,0,0 +2013,9,17,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1730,-3,0,1926,-5,0,0 +2013,9,18,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2110,11,0,2230,-2,0,0 +2013,8,9,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1522,-3,0,1624,-13,0,0 +2013,9,20,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,1355,32,1,1509,33,1,0 +2013,6,9,7,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1019,-1,0,1128,-12,0,0 +2013,10,4,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1600,-8,0,1718,-21,0,0 +2013,7,12,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1910,-5,0,2015,-7,0,0 +2013,6,22,6,OO,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1026,-3,0,1322,-3,0,0 +2013,9,15,7,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1325,1,0,1625,2,0,0 +2013,7,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1430,45,1,1556,43,1,0 +2013,10,25,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1053,35,1,1416,57,1,0 +2013,10,15,2,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1025,7,0,1615,-11,0,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,955,-3,0,1110,-14,0,0 +2013,4,16,2,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1339,-5,0,1655,-15,0,0 +2013,4,13,6,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,0,0,1400,-6,0,0 +2013,4,9,2,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,620,-9,0,1015,17,1,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1336,0,0,2204,-3,0,0 +2013,8,3,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1510,45,1,1630,53,1,0 +2013,9,8,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1730,-7,0,1825,-20,0,0 +2013,9,23,1,WN,14683,San Antonio International,San Antonio,TX,15016,Lambert-St. Louis International,St. Louis,MO,600,-3,0,810,-10,0,0 +2013,5,15,3,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-2,0,1659,-8,0,0 +2013,9,10,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1735,35,1,1855,38,1,0 +2013,9,17,2,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,800,-2,0,1109,4,0,0 +2013,8,31,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1750,34,1,2000,34,1,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,0,0,15,-18,0,0 +2013,10,7,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,845,-1,0,1100,2,0,0 +2013,9,28,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,2020,0,0,2054,-13,0,0 +2013,5,4,6,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,21,1,1904,-8,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1930,1,0,2120,0,0,0 +2013,5,23,4,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,630,-3,0,813,-3,0,0 +2013,9,30,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,13,0,1635,15,1,0 +2013,6,28,5,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1510,9,0,1630,-9,0,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1620,23,1,1755,8,0,0 +2013,4,27,6,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1529,-8,0,1647,4,0,0 +2013,7,19,5,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,904,-5,0,1036,-26,0,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,855,-6,0,1322,-10,0,0 +2013,9,1,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1335,77,1,1435,68,1,0 +2013,4,16,2,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1050,16,1,1200,9,0,0 +2013,4,16,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,855,-6,0,1542,-2,0,0 +2013,7,14,7,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1715,22,1,1815,2,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1905,37,1,2125,29,1,0 +2013,10,17,4,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,730,-5,0,1127,-9,0,0 +2013,4,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,2135,3,0,5,-12,0,0 +2013,9,26,4,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1200,-2,0,1920,-25,0,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1710,-1,0,1820,-14,0,0 +2013,10,7,1,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1328,-2,0,1400,-7,0,0 +2013,10,23,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1622,6,0,1900,13,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1055,-5,0,1420,-17,0,0 +2013,10,31,4,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1845,129,1,2029,98,1,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1925,14,0,2354,21,1,0 +2013,7,17,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,920,-18,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,1,0,1617,-15,0,0 +2013,4,23,2,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1730,28,1,2050,33,1,0 +2013,6,22,6,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1445,-3,0,1510,-12,0,0 +2013,10,16,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-7,0,1133,-7,0,0 +2013,9,25,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1220,70,1,2050,70,1,0 +2013,7,19,5,UA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1145,4,0,1324,17,1,0 +2013,7,7,7,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1920,14,0,2049,1,0,0 +2013,8,2,5,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,47,1,525,63,1,0 +2013,6,17,1,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2125,25,1,2250,18,1,0 +2013,6,6,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,46,1,1624,30,1,0 +2013,4,22,1,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1318,-1,0,1420,-15,0,0 +2013,7,7,7,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,5,0,1850,-3,0,0 +2013,4,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1130,-5,0,1424,-18,0,0 +2013,4,4,4,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,46,1,2035,33,1,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1950,143,1,2145,154,1,0 +2013,5,6,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,815,-2,0,940,-9,0,0 +2013,9,14,6,AS,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,700,0,0,840,2,0,0 +2013,8,26,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1729,0,0,1932,-12,0,0 +2013,6,23,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1650,0,0,1735,0,0,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,835,-3,0,843,-15,0,0 +2013,9,26,4,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,825,-4,0,1020,-5,0,0 +2013,10,9,3,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2050,18,1,2355,11,0,0 +2013,9,23,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1105,-1,0,1127,7,0,0 +2013,10,31,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1130,18,1,1530,18,1,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,715,-7,0,930,-15,0,0 +2013,10,8,2,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1915,-8,0,2203,-1,0,0 +2013,9,14,6,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1429,-2,0,1705,-29,0,0 +2013,9,19,4,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1940,106,1,2205,116,1,0 +2013,9,27,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1000,-5,0,1205,-15,0,0 +2013,5,27,1,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1220,-6,0,1330,-18,0,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1800,135,1,2040,131,1,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1626,-1,0,1750,-8,0,0 +2013,6,2,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13198,Kansas City International,Kansas City,MO,1130,4,0,1655,-5,0,0 +2013,10,27,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,540,1,0,1145,-8,0,0 +2013,4,21,7,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-5,0,1633,-3,0,0 +2013,10,1,2,WN,11292,Denver International,Denver,CO,13796,Metropolitan Oakland International,Oakland,CA,2050,-4,0,2225,-13,0,0 +2013,4,9,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1445,-6,0,1605,-7,0,0 +2013,6,6,4,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1525,-7,0,1630,2,0,0 +2013,10,22,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1200,-5,0,1312,-13,0,0 +2013,8,10,6,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1325,0,0,1515,-8,0,0 +2013,7,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1255,-3,0,1420,-18,0,0 +2013,10,28,1,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,12,0,1540,-1,0,0 +2013,10,15,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-2,0,1729,-11,0,0 +2013,5,4,6,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1920,-5,0,2050,-31,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1235,-4,0,1529,-14,0,0 +2013,10,11,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1850,23,1,2015,13,0,0 +2013,5,18,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-6,0,2047,-16,0,0 +2013,5,21,2,WN,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,610,-1,0,705,-17,0,0 +2013,5,15,3,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1459,1,0,1759,-6,0,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1536,-1,0,1725,-15,0,0 +2013,5,23,4,9E,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,825,0,0,1232,-10,0,0 +2013,8,10,6,WN,13891,Ontario International,Ontario,CA,13232,Chicago Midway International,Chicago,IL,900,-2,0,1455,-30,0,0 +2013,5,8,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1744,-4,0,1955,18,1,0 +2013,7,18,4,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1346,-9,0,1540,-15,0,0 +2013,5,12,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,34,1,1027,17,1,0 +2013,9,18,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1951,-1,0,2025,-2,0,0 +2013,6,24,1,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,801,0,0,936,8,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1750,-3,0,1934,-13,0,0 +2013,9,11,3,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,555,0,0,1355,20,1,0 +2013,9,23,1,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1330,1,0,1335,5,0,0 +2013,7,16,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,540,0,0,908,-4,0,0 +2013,4,24,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1910,-4,0,2035,-18,0,0 +2013,7,11,4,B6,12954,Long Beach Airport,Long Beach,CA,10423,Austin - Bergstrom International,Austin,TX,908,-5,0,1400,2,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,102,1,2207,89,1,0 +2013,8,5,1,YV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1535,-2,0,1634,-7,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1310,3,0,1500,-8,0,0 +2013,6,18,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1037,-9,0,1250,-22,0,0 +2013,8,24,6,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,0,0,1115,15,1,0 +2013,5,30,4,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,1545,-7,0,1708,14,0,0 +2013,5,1,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,942,-7,0,1116,-15,0,0 +2013,6,16,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1658,66,1,1757,55,1,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,2110,-4,0,2353,-18,0,0 +2013,10,26,6,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-6,0,2054,-24,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,15304,Tampa International,Tampa,FL,1717,3,0,2125,-5,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2100,1,0,2328,-7,0,0 +2013,7,10,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11042,Cleveland-Hopkins International,Cleveland,OH,2330,79,1,649,64,1,0 +2013,4,21,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-2,0,1605,-34,0,0 +2013,7,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,0,0,1135,-5,0,0 +2013,7,21,7,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,1,0,1400,1,0,0 +2013,8,30,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1757,-12,0,1910,-11,0,0 +2013,9,3,2,OO,14869,Salt Lake City International,Salt Lake City,UT,14683,San Antonio International,San Antonio,TX,951,-7,0,1335,-17,0,0 +2013,4,7,7,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,910,-2,0,1059,-3,0,0 +2013,9,25,3,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1130,-10,0,1615,-7,0,0 +2013,9,23,1,DL,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,1245,-4,0,1421,-16,0,0 +2013,9,15,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2115,8,0,2350,-28,0,0 +2013,7,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-2,0,1612,10,0,0 +2013,9,4,3,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,815,9,0,959,-4,0,0 +2013,10,13,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,-6,0,1505,-19,0,0 +2013,5,12,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-7,0,1359,-15,0,0 +2013,9,29,7,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1510,18,1,1920,5,0,0 +2013,10,11,5,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1840,28,1,2005,28,1,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1508,0,0,2340,9,0,0 +2013,7,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,-6,0,1835,-23,0,0 +2013,8,8,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,722,-7,0,1020,-8,0,0 +2013,4,13,6,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,915,3,0,0 +2013,9,26,4,OO,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,858,-8,0,1037,-16,0,0 +2013,8,2,5,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,2,0,1320,7,0,0 +2013,10,17,4,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1625,7,0,1905,-1,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1205,47,1,1322,37,1,0 +2013,5,15,3,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1108,4,0,1215,2,0,0 +2013,6,6,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-6,0,656,-11,0,0 +2013,9,1,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1440,-6,0,1525,-9,0,0 +2013,6,7,5,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1230,13,0,1515,3,0,0 +2013,10,20,7,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1400,0,0,1700,12,0,0 +2013,7,29,1,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1145,-1,0,1320,-8,0,0 +2013,7,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1730,-1,0,1914,2,0,0 +2013,4,15,1,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1800,10,0,2325,-12,0,0 +2013,9,11,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1740,55,1,2215,81,1,0 +2013,7,12,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1246,12,0,1817,14,0,0 +2013,5,27,1,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1451,2,0,1701,-22,0,0 +2013,6,20,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,550,-3,0,700,-16,0,0 +2013,10,28,1,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1035,-7,0,1257,7,0,0 +2013,5,21,2,WN,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1235,-7,0,1620,-14,0,0 +2013,6,6,4,WN,15304,Tampa International,Tampa,FL,14730,Louisville International-Standiford Field,Louisville,KY,945,20,1,1145,21,1,0 +2013,9,12,4,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1335,39,1,1430,32,1,0 +2013,10,12,6,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1035,-1,0,1150,7,0,0 +2013,6,24,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,629,-2,0,750,-25,0,0 +2013,5,3,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,705,0,,718,0,1,1 +2013,8,2,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,2010,10,0,2039,0,0,0 +2013,6,15,6,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2015,-8,0,2130,0,0,0 +2013,6,28,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,739,0,,1531,0,1,1 +2013,5,4,6,US,14100,Philadelphia International,Philadelphia,PA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,-6,0,1305,-16,0,0 +2013,4,11,4,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,915,1,0,1738,8,0,0 +2013,7,16,2,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,845,-4,0,1420,13,0,0 +2013,5,13,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-9,0,1215,-19,0,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,748,-7,0,919,-21,0,0 +2013,5,5,7,WN,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,600,37,1,915,23,1,0 +2013,4,1,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1040,12,0,1145,4,0,0 +2013,7,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1032,-2,0,1129,-15,0,0 +2013,5,10,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,29,1,1434,21,1,0 +2013,10,13,7,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1113,3,0,1700,-7,0,0 +2013,8,7,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1050,30,1,1152,54,1,0 +2013,4,1,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,700,0,0,810,2,0,0 +2013,9,25,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,815,-2,0,940,-2,0,0 +2013,10,19,6,DL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,805,-3,0,1026,-12,0,0 +2013,6,21,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,605,2,0,700,0,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1646,-3,0,2043,-3,0,0 +2013,10,9,3,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1403,-3,0,1653,-1,0,0 +2013,6,16,7,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1523,1,0,1800,-6,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1405,21,1,1500,2,0,0 +2013,4,15,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-3,0,1608,3,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1626,10,0,1750,9,0,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1930,103,1,55,93,1,0 +2013,4,29,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2015,5,0,2143,-4,0,0 +2013,8,12,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,75,1,1458,74,1,0 +2013,4,6,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1816,3,0,2021,-1,0,0 +2013,9,27,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1123,-6,0,1456,-9,0,0 +2013,5,3,5,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-1,0,905,-14,0,0 +2013,7,23,2,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1120,-1,0,1240,-14,0,0 +2013,7,12,5,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,745,-2,0,1000,-22,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1210,-3,0,1530,-8,0,0 +2013,5,29,3,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,1559,-5,0,8,-20,0,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1117,16,1,1259,39,1,0 +2013,8,13,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,600,-7,0,657,-2,0,0 +2013,10,12,6,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1905,-10,0,1954,-5,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2000,6,0,2205,5,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,835,0,0,1027,2,0,0 +2013,5,3,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1605,23,1,1725,15,1,0 +2013,10,31,4,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-3,0,1750,-17,0,0 +2013,6,22,6,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1535,-2,0,1725,-21,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,748,95,1,901,95,1,0 +2013,6,3,1,WN,13931,Norfolk International,Norfolk,VA,13232,Chicago Midway International,Chicago,IL,645,-1,0,750,-7,0,0 +2013,8,31,6,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,-2,0,1828,1,0,0 +2013,10,14,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,610,76,1,742,59,1,0 +2013,8,18,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,-5,0,1945,-13,0,0 +2013,10,8,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1830,-5,0,2110,-11,0,0 +2013,7,25,4,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1301,113,1,1419,128,1,0 +2013,5,3,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,933,0,0,1207,6,0,0 +2013,5,9,4,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1318,-4,0,1607,-5,0,0 +2013,10,12,6,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1545,-4,0,1930,-12,0,0 +2013,5,1,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2000,-8,0,2130,-10,0,0 +2013,10,24,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,900,7,0,1036,-4,0,0 +2013,5,30,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-5,0,835,-3,0,0 +2013,10,25,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1720,131,1,2335,112,1,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,14122,Pittsburgh International,Pittsburgh,PA,920,6,0,1630,5,0,0 +2013,7,4,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1915,-1,0,2045,-7,0,0 +2013,5,4,6,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,930,-4,0,1045,-17,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2230,-4,0,2327,-5,0,0 +2013,8,20,2,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1605,-10,0,1642,-8,0,0 +2013,6,6,4,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1043,0,0,1215,8,0,0 +2013,5,3,5,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1148,-4,0,1659,-9,0,0 +2013,9,13,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,610,-2,0,725,2,0,0 +2013,9,15,7,HA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,800,-7,0,1130,10,0,0 +2013,8,21,3,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,800,-1,0,1620,-12,0,0 +2013,5,15,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2150,-3,0,2315,-7,0,0 +2013,7,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1235,1,0,1345,-4,0,0 +2013,7,29,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,-5,0,2205,-6,0,0 +2013,4,22,1,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,1815,18,1,2020,9,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2225,3,0,2340,-3,0,0 +2013,8,12,1,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1725,50,1,2218,52,1,0 +2013,10,21,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,27,1,2020,33,1,0 +2013,8,22,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,-5,0,1210,28,1,0 +2013,10,4,5,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,-1,0,1355,11,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,845,1,0,1035,5,0,0 +2013,4,19,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1059,-1,0,1117,-9,0,0 +2013,7,16,2,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,920,3,0,1105,-2,0,0 +2013,10,22,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-6,0,815,-21,0,0 +2013,8,6,2,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,2030,4,0,2115,5,0,0 +2013,4,14,7,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1835,0,0,2010,-11,0,0 +2013,5,22,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,835,3,0,940,-6,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1755,-1,0,1922,-19,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,822,-6,0,1630,-5,0,0 +2013,8,2,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1225,-3,0,1633,-6,0,0 +2013,4,27,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1645,-3,0,1845,-10,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,820,-1,0,1005,-18,0,0 +2013,10,28,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1235,6,0,1330,2,0,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,63,1,1900,57,1,0 +2013,10,22,2,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,900,-6,0,1016,-10,0,0 +2013,4,11,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14893,Sacramento International,Sacramento,CA,858,6,0,1117,5,0,0 +2013,8,2,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1301,7,0,1435,0,0,0 +2013,4,30,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,740,-3,0,825,-4,0,0 +2013,8,18,7,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1019,-8,0,1302,-15,0,0 +2013,10,21,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1700,-4,0,1737,0,0,0 +2013,6,29,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1750,43,1,1900,29,1,0 +2013,4,10,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,0,,1540,0,1,1 +2013,9,29,7,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1643,50,1,2352,49,1,0 +2013,10,24,4,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,645,2,0,750,8,0,0 +2013,8,13,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,9,0,1700,19,1,0 +2013,4,22,1,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,21,1,1544,25,1,0 +2013,5,26,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1310,-1,0,1635,-12,0,0 +2013,8,8,4,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,17,1,1435,11,0,0 +2013,5,15,3,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1630,8,0,2205,6,0,0 +2013,8,17,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1540,-3,0,1815,-22,0,0 +2013,4,18,4,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1826,-6,0,2110,-9,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1610,-3,0,1740,-14,0,0 +2013,4,6,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2120,-3,0,2310,-8,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,,1520,0,1,1 +2013,7,24,3,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,600,-10,0,958,-12,0,0 +2013,7,31,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1241,88,1,1340,89,1,0 +2013,5,5,7,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,745,-24,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1444,0,0,1621,4,0,0 +2013,5,5,7,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,2115,2,0,2220,-19,0,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1105,10,0,1510,0,0,0 +2013,7,14,7,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-1,0,1435,-11,0,0 +2013,4,17,3,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,620,5,0,940,24,1,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-3,0,1832,-1,0,0 +2013,8,6,2,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2200,-1,0,2216,-11,0,0 +2013,9,7,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1135,-6,0,1405,-16,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1630,-1,0,1755,-2,0,0 +2013,10,7,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-5,0,1244,-15,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1440,11,0,1645,15,1,0 +2013,7,5,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1645,-4,0,1921,2,0,0 +2013,5,31,5,OO,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1345,-4,0,1502,-15,0,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,2050,19,1,2215,18,1,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,-2,0,1235,2,0,0 +2013,4,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,7,0,1053,-2,0,0 +2013,5,18,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,1,0,1055,8,0,0 +2013,8,18,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1505,-3,0,1923,2,0,0 +2013,6,15,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-4,0,819,-5,0,0 +2013,9,23,1,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,908,-2,0,1021,-3,0,0 +2013,7,6,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,630,-5,0,1155,-7,0,0 +2013,10,19,6,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1306,-3,0,1600,-25,0,0 +2013,8,11,7,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1625,135,1,1826,141,1,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,645,0,0,735,-1,0,0 +2013,4,17,3,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1500,42,1,1640,51,1,0 +2013,10,15,2,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1610,0,,1733,0,1,1 +2013,6,23,7,VX,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,1910,223,1,2155,216,1,0 +2013,6,28,5,DL,14683,San Antonio International,San Antonio,TX,12478,John F. Kennedy International,New York,NY,907,116,1,1359,158,1,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,642,3,0,1529,-1,0,0 +2013,7,12,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1647,55,1,1845,87,1,0 +2013,7,10,3,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,73,1,2030,88,1,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,821,-6,0,1030,-8,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1740,0,0,1845,-16,0,0 +2013,5,14,2,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,1425,-5,0,1915,21,1,0 +2013,7,23,2,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1838,-8,0,48,-18,0,0 +2013,9,19,4,9E,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1350,-2,0,1525,-15,0,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-1,0,747,2,0,0 +2013,10,24,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,14869,Salt Lake City International,Salt Lake City,UT,155,-5,0,824,-16,0,0 +2013,6,25,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1210,-7,0,1249,-5,0,0 +2013,7,14,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-5,0,1114,-40,0,0 +2013,4,2,2,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1325,-6,0,1615,-20,0,0 +2013,10,20,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,5,0,1759,-7,0,0 +2013,10,21,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1800,13,0,2045,3,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1515,0,0,1610,4,0,0 +2013,10,27,7,9E,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1355,-5,0,1605,-27,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1205,-8,0,1256,-12,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,-5,0,1345,-10,0,0 +2013,6,30,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,1933,30,1,2220,13,0,0 +2013,10,9,3,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1107,-8,0,1354,-4,0,0 +2013,10,9,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1100,-4,0,1220,-6,0,0 +2013,4,13,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1100,119,1,1250,124,1,0 +2013,8,5,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2035,1,0,2145,-8,0,0 +2013,6,27,4,AS,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14747,Seattle/Tacoma International,Seattle,WA,800,12,0,1124,-3,0,0 +2013,9,11,3,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1839,-7,0,2232,-2,0,0 +2013,10,3,4,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,2100,-2,0,2344,-14,0,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2110,-1,0,2345,-7,0,0 +2013,9,15,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1835,50,1,2025,47,1,0 +2013,9,3,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,2215,20,1,2347,10,0,0 +2013,7,25,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1416,-1,0,1602,8,0,0 +2013,5,19,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1630,0,0,1730,-6,0,0 +2013,6,29,6,US,14843,Luis Munoz Marin International,San Juan,PR,14100,Philadelphia International,Philadelphia,PA,1700,99,1,2054,89,1,0 +2013,5,5,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,850,-3,0,0 +2013,4,9,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-5,0,714,15,1,0 +2013,4,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1420,9,0,1759,35,1,0 +2013,10,27,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,753,2,0,1044,-8,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1155,61,1,1500,55,1,0 +2013,7,22,1,UA,10299,Ted Stevens Anchorage International,Anchorage,AK,14771,San Francisco International,San Francisco,CA,35,4,0,613,-9,0,0 +2013,7,23,2,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,11,0,1255,10,0,0 +2013,5,1,3,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1220,-8,0,1600,-24,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1855,28,1,2350,23,1,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1435,11,0,1835,14,0,0 +2013,6,20,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1534,-4,0,0 +2013,8,30,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,845,9,0,1115,4,0,0 +2013,9,1,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,-6,0,1410,23,1,0 +2013,4,8,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2120,-6,0,2202,-7,0,0 +2013,6,26,3,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1050,-2,0,1330,-11,0,0 +2013,5,21,2,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1630,19,1,1815,15,1,0 +2013,7,4,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1809,-12,0,2142,-40,0,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,925,8,0,1140,5,0,0 +2013,8,8,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1358,2,0,1437,-3,0,0 +2013,6,24,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1313,13,0,1434,4,0,0 +2013,6,27,4,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,-3,0,1205,-11,0,0 +2013,4,2,2,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1123,34,1,1445,16,1,0 +2013,9,11,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1450,-4,0,1728,-14,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1520,-5,0,1912,3,0,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,935,-2,0,1040,-12,0,0 +2013,10,15,2,UA,14057,Portland International,Portland,OR,12266,George Bush Intercontinental/Houston,Houston,TX,1203,-4,0,1808,-14,0,0 +2013,5,23,4,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,11,0,1220,6,0,0 +2013,8,9,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1300,15,1,1425,21,1,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1755,-2,0,1929,1,0,0 +2013,9,14,6,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1640,-6,0,1955,-15,0,0 +2013,9,27,5,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1115,-25,0,0 +2013,10,13,7,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,941,25,1,1054,22,1,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1145,53,1,1344,52,1,0 +2013,4,3,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2155,-8,0,2320,-7,0,0 +2013,6,30,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,0,,955,0,1,1 +2013,6,11,2,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1643,4,0,1824,2,0,0 +2013,10,28,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1800,-3,0,1845,14,0,0 +2013,8,7,3,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1242,0,0,1318,1,0,0 +2013,7,4,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1033,-6,0,1417,-15,0,0 +2013,9,4,3,US,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,1805,-10,0,2114,-32,0,0 +2013,6,2,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,620,-5,0,930,-13,0,0 +2013,4,11,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-3,0,803,19,1,0 +2013,8,12,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1748,38,1,1922,28,1,0 +2013,10,21,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1024,-5,0,1413,-11,0,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,14893,Sacramento International,Sacramento,CA,1750,1,0,2037,-16,0,0 +2013,9,5,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1500,19,1,2030,14,0,0 +2013,7,15,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,730,6,0,845,-12,0,0 +2013,10,29,2,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,805,0,0,1147,-9,0,0 +2013,9,23,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,929,-5,0,1056,4,0,0 +2013,8,10,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,831,-3,0,1005,-6,0,0 +2013,8,31,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1615,-7,0,1706,-12,0,0 +2013,9,5,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1347,-3,0,1501,-11,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1457,-3,0,1653,-8,0,0 +2013,7,7,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,11,0,1409,6,0,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14869,Salt Lake City International,Salt Lake City,UT,900,-5,0,1045,-19,0,0 +2013,6,7,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1815,5,0,2015,0,0,0 +2013,5,22,3,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,644,4,0,754,66,1,0 +2013,7,17,3,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-6,0,1747,-16,0,0 +2013,6,18,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1940,36,1,2030,30,1,0 +2013,8,16,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,745,-5,0,1040,-10,0,0 +2013,9,13,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1830,175,1,2030,150,1,0 +2013,4,2,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,-2,0,1747,-12,0,0 +2013,5,31,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1945,6,0,2105,1,0,0 +2013,9,18,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-5,0,2226,-4,0,0 +2013,10,30,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,829,4,0,1026,11,0,0 +2013,10,11,5,WN,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,950,29,1,1205,44,1,0 +2013,4,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,5,0,1450,-2,0,0 +2013,5,28,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2140,14,0,2315,5,0,0 +2013,10,9,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1605,1,0,1710,-3,0,0 +2013,10,17,4,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1815,22,1,2140,-9,0,0 +2013,7,27,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1052,48,1,1230,35,1,0 +2013,4,19,5,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-3,0,909,4,0,0 +2013,4,25,4,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1515,-3,0,1800,3,0,0 +2013,5,24,5,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1358,12,0,1413,9,0,0 +2013,9,6,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,-6,0,1515,-16,0,0 +2013,10,10,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1614,20,1,1739,23,1,0 +2013,9,3,2,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1940,-1,0,0 +2013,6,4,2,WN,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1550,5,0,1805,0,0,0 +2013,5,14,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-10,0,1705,-5,0,0 +2013,4,15,1,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1700,-3,0,2050,-18,0,0 +2013,8,20,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2110,1,0,2302,7,0,0 +2013,4,1,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-8,0,730,-16,0,0 +2013,4,18,4,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,701,-3,0,857,-2,0,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,845,2,0,1050,-2,0,0 +2013,6,28,5,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1955,213,1,2204,244,1,0 +2013,10,17,4,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,952,-7,0,1116,-5,0,0 +2013,8,12,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1955,-1,0,2201,-15,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1410,9,0,1425,-2,0,0 +2013,6,16,7,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1010,-7,0,1523,-24,0,0 +2013,6,11,2,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,12,0,1340,-3,0,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1635,100,1,2215,75,1,0 +2013,7,27,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-5,0,726,-9,0,0 +2013,9,5,4,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,951,40,1,1218,3,0,0 +2013,10,31,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,0,0,900,-9,0,0 +2013,8,8,4,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,800,-6,0,1050,11,0,0 +2013,6,6,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,-3,0,1348,-2,0,0 +2013,8,2,5,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1840,-5,0,2024,-13,0,0 +2013,10,26,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1435,0,0,2214,-1,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1130,0,,1258,0,1,1 +2013,10,20,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1341,-7,0,1440,-16,0,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1750,0,,1845,0,1,1 +2013,8,27,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-5,0,29,-3,0,0 +2013,9,16,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,906,0,0,1034,-15,0,0 +2013,6,29,6,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-4,0,1434,-17,0,0 +2013,10,29,2,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1645,9,0,1850,41,1,0 +2013,8,1,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1240,-2,0,1455,-7,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1823,45,1,2139,52,1,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1410,-1,0,1550,-7,0,0 +2013,6,17,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,600,0,0,720,-12,0,0 +2013,4,18,4,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-4,0,1837,-8,0,0 +2013,9,2,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1805,-1,0,1935,-11,0,0 +2013,4,8,1,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1830,-8,0,2125,-7,0,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1645,18,1,1815,7,0,0 +2013,10,23,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1555,-2,0,1640,-2,0,0 +2013,7,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,935,12,0,1114,30,1,0 +2013,4,30,2,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1345,-4,0,1615,-35,0,0 +2013,7,6,6,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,910,-6,0,1145,-29,0,0 +2013,4,20,6,AS,13796,Metropolitan Oakland International,Oakland,CA,12173,Honolulu International,Honolulu,HI,815,-5,0,1040,-21,0,0 +2013,7,13,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-5,0,1433,-5,0,0 +2013,7,17,3,OO,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1659,0,0,1920,-2,0,0 +2013,7,12,5,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,650,-3,0,1254,-13,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1007,-6,0,1221,-7,0,0 +2013,10,11,5,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1725,-4,0,1816,7,0,0 +2013,5,11,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,-1,0,1016,-5,0,0 +2013,6,30,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1420,94,1,1637,111,1,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,705,0,0,820,-4,0,0 +2013,7,8,1,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-7,0,903,5,0,0 +2013,4,14,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,-3,0,1620,4,0,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1140,0,0,1320,-3,0,0 +2013,5,25,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-9,0,1628,-20,0,0 +2013,5,6,1,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,0,0,905,-8,0,0 +2013,4,4,4,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1330,-4,0,1414,-7,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1614,0,0,1821,11,0,0 +2013,8,8,4,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,634,-5,0,819,0,0,0 +2013,8,15,4,9E,13244,Memphis International,Memphis,TN,12339,Indianapolis International,Indianapolis,IN,1425,-9,0,1655,-30,0,0 +2013,8,20,2,B6,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,929,7,0,1214,-5,0,0 +2013,6,29,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1050,-11,0,0 +2013,9,30,1,EV,11618,Newark Liberty International,Newark,NJ,13931,Norfolk International,Norfolk,VA,1154,-8,0,1308,-17,0,0 +2013,7,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2005,48,1,2120,43,1,0 +2013,4,15,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1330,-6,0,1519,-8,0,0 +2013,7,11,4,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,23,1,1555,50,1,0 +2013,7,23,2,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2330,-6,0,755,-20,0,0 +2013,4,3,3,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,1015,12,0,1220,0,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2015,-7,0,2225,-10,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1500,93,1,1655,80,1,0 +2013,6,7,5,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1655,8,0,1813,-9,0,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,722,-8,0,1559,-22,0,0 +2013,6,16,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1815,11,0,1940,8,0,0 +2013,9,12,4,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,855,-4,0,1210,-13,0,0 +2013,6,29,6,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1940,-1,0,2110,-16,0,0 +2013,5,25,6,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,955,-5,0,1115,-12,0,0 +2013,10,28,1,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,950,15,1,1730,-10,0,0 +2013,7,28,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1730,0,0,1820,2,0,0 +2013,5,7,2,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,-6,0,1229,-10,0,0 +2013,7,17,3,WN,14747,Seattle/Tacoma International,Seattle,WA,12191,William P Hobby,Houston,TX,1250,10,0,1915,8,0,0 +2013,5,2,4,9E,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,745,10,0,0 +2013,6,18,2,WN,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1155,3,0,1420,44,1,0 +2013,9,17,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,11,0,1033,-1,0,0 +2013,5,4,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-3,0,1355,-5,0,0 +2013,5,13,1,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1315,-6,0,2124,14,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1835,1,0,2015,0,0,0 +2013,9,26,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-5,0,740,-8,0,0 +2013,4,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,750,0,0,935,15,1,0 +2013,8,23,5,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,6,0,831,30,1,0 +2013,10,31,4,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,535,-5,0,752,12,0,0 +2013,7,10,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,44,1,2355,30,1,0 +2013,10,5,6,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1835,-3,0,1935,-6,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,-5,0,1730,4,0,0 +2013,9,25,3,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1205,0,0,1420,-12,0,0 +2013,4,5,5,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1455,-3,0,1820,6,0,0 +2013,5,15,3,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,8,0,2025,20,1,0 +2013,8,5,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-9,0,1155,-14,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,849,-4,0,1213,-25,0,0 +2013,5,3,5,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,-4,0,1524,27,1,0 +2013,10,13,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-14,0,1310,-12,0,0 +2013,8,14,3,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,600,-1,0,908,35,1,0 +2013,10,16,3,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1142,-8,0,1412,0,1,1 +2013,4,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1643,-4,0,1815,-13,0,0 +2013,4,4,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,841,-6,0,948,6,0,0 +2013,10,30,3,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,13,0,1913,38,1,0 +2013,10,11,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1235,28,1,1345,21,1,0 +2013,4,5,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,2115,24,1,2230,24,1,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1250,-2,0,1520,-38,0,0 +2013,7,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1445,-1,0,2215,29,1,0 +2013,10,4,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,650,3,0,819,1,0,0 +2013,7,18,4,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1025,2,0,1305,5,0,0 +2013,4,15,1,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,620,-6,0,714,-6,0,0 +2013,5,1,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1240,-3,0,1410,-10,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,2,0,1743,-31,0,0 +2013,5,26,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1345,-1,0,1610,-8,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1340,1,0,1534,-7,0,0 +2013,7,27,6,AS,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1910,-12,0,2043,-5,0,0 +2013,9,25,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,1815,10,0,1905,6,0,0 +2013,7,31,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,849,0,0,1005,-6,0,0 +2013,4,30,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,905,-3,0,1030,-6,0,0 +2013,7,30,2,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1640,199,1,1800,184,1,0 +2013,5,7,2,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1905,-10,0,2033,-17,0,0 +2013,7,7,7,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1029,38,1,1212,11,0,0 +2013,5,11,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-8,0,1340,-10,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1755,-1,0,1905,-3,0,0 +2013,10,29,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1210,-5,0,1318,0,0,0 +2013,4,30,2,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1054,-5,0,1220,-1,0,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1855,-2,0,2040,-8,0,0 +2013,4,19,5,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1905,242,1,2210,256,1,0 +2013,9,15,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-5,0,1005,-12,0,0 +2013,5,10,5,WN,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1420,46,1,1840,44,1,0 +2013,9,6,5,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,2115,13,0,2328,3,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,655,-2,0,820,-12,0,0 +2013,8,10,6,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,809,-7,0,932,-6,0,0 +2013,9,26,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1339,-6,0,1450,-14,0,0 +2013,10,3,4,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-1,0,1527,-7,0,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,7,0,1600,4,0,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1559,119,1,1908,109,1,0 +2013,6,22,6,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1520,9,0,1802,-9,0,0 +2013,9,29,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1245,-4,0,1411,0,0,0 +2013,5,1,3,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-3,0,909,-1,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,935,-3,0,1100,-9,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,0,0,1758,-15,0,0 +2013,6,19,3,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1151,4,0,1313,-4,0,0 +2013,10,16,3,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1803,-5,0,2013,4,0,0 +2013,9,27,5,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1901,-5,0,2110,-18,0,0 +2013,10,5,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,940,13,0,1145,8,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,800,1,0,930,-12,0,0 +2013,4,20,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1414,0,0,1545,-18,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,930,4,0,1025,6,0,0 +2013,10,3,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1125,6,0,1230,4,0,0 +2013,5,23,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1515,-4,0,1811,-14,0,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1940,3,0,2131,-1,0,0 +2013,7,13,6,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1030,-7,0,1325,-11,0,0 +2013,8,10,6,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2055,0,0,2146,-7,0,0 +2013,7,27,6,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-7,0,1025,23,1,0 +2013,9,30,1,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,929,-4,0,1129,-4,0,0 +2013,6,9,7,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1040,-3,0,1205,7,0,0 +2013,4,30,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2015,-5,0,2123,5,0,0 +2013,6,6,4,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,925,48,1,1049,41,1,0 +2013,9,10,2,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1435,39,1,1546,33,1,0 +2013,7,31,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1715,-2,0,1855,-7,0,0 +2013,9,29,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1805,25,1,2245,23,1,0 +2013,4,1,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1920,0,0,2025,-8,0,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1620,1,0,1805,-5,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2005,69,1,2155,56,1,0 +2013,7,6,6,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1055,1,0,1455,-21,0,0 +2013,9,27,5,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1450,-5,0,1645,4,0,0 +2013,5,29,3,MQ,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,600,2,0,700,-4,0,0 +2013,4,27,6,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,0,0,2259,-42,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,2030,1,0,2235,-9,0,0 +2013,10,12,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1704,-3,0,1834,-8,0,0 +2013,4,4,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1640,53,1,1809,48,1,0 +2013,5,6,1,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,1945,0,0,2125,-7,0,0 +2013,8,14,3,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1715,1,0,1850,-17,0,0 +2013,4,25,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,615,0,0,725,16,1,0 +2013,10,9,3,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1355,21,1,1530,4,0,0 +2013,9,11,3,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,-6,0,910,6,0,0 +2013,5,28,2,UA,15304,Tampa International,Tampa,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1509,55,1,1629,45,1,0 +2013,4,22,1,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1135,-1,0,1344,-6,0,0 +2013,8,20,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1546,-9,0,1929,0,0,0 +2013,5,29,3,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1244,-3,0,1344,5,0,0 +2013,10,26,6,WN,15304,Tampa International,Tampa,FL,14843,Luis Munoz Marin International,San Juan,PR,1250,1,0,1545,-9,0,0 +2013,4,27,6,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,645,-3,0,759,-24,0,0 +2013,4,18,4,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1557,0,,1754,0,1,1 +2013,10,20,7,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,600,-1,0,751,-16,0,0 +2013,5,2,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-7,0,835,-13,0,0 +2013,6,7,5,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1845,-8,0,20,-6,0,0 +2013,7,4,4,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1335,-7,0,1525,-17,0,0 +2013,10,22,2,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,2257,4,0,19,1,0,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1045,-2,0,1235,12,0,0 +2013,8,20,2,EV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,651,-3,0,852,-9,0,0 +2013,9,30,1,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2153,3,0,2303,1,0,0 +2013,6,19,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-1,0,1255,0,0,0 +2013,8,26,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,710,-1,0,740,-18,0,0 +2013,5,10,5,AS,12892,Los Angeles International,Los Angeles,CA,11278,Ronald Reagan Washington National,Washington,DC,1250,-11,0,2056,-3,0,0 +2013,6,7,5,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1631,11,0,1953,2,0,0 +2013,7,11,4,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,-8,0,618,-7,0,0 +2013,7,10,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1945,0,,2006,0,1,1 +2013,4,7,7,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1250,94,1,1500,94,1,0 +2013,6,3,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1605,2,0,1624,2,0,0 +2013,5,13,1,EV,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,1642,-4,0,2054,-3,0,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1950,15,1,2136,24,1,0 +2013,5,30,4,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-1,0,1110,-22,0,0 +2013,9,3,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1340,10,0,1525,4,0,0 +2013,7,6,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,0,0,1230,-3,0,0 +2013,8,4,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1015,-6,0,1615,-6,0,0 +2013,8,22,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1715,-7,0,1853,-18,0,0 +2013,5,5,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,845,1,0,1126,-17,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1505,-3,0,1835,-7,0,0 +2013,5,30,4,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1330,22,1,1420,23,1,0 +2013,5,10,5,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,0,0,1955,-3,0,0 +2013,4,15,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,-5,0,1305,-24,0,0 +2013,9,5,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,820,17,1,1130,0,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1305,8,0,1410,6,0,0 +2013,4,1,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1505,-6,0,1913,-8,0,0 +2013,7,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,815,0,0,930,-3,0,0 +2013,4,24,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2000,21,1,2120,10,0,0 +2013,5,25,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,659,-2,0,1529,23,1,0 +2013,4,2,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,825,-13,0,1005,-9,0,0 +2013,7,15,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,26,1,1630,27,1,0 +2013,9,6,5,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2008,13,0,2256,6,0,0 +2013,9,8,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1215,-5,0,1430,-10,0,0 +2013,8,14,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1959,0,0,2136,-9,0,0 +2013,5,15,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1745,-6,0,1940,2,0,0 +2013,4,7,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1055,14,0,1205,7,0,0 +2013,4,13,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1055,-1,0,1415,-15,0,0 +2013,5,17,5,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2155,11,0,2310,3,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1630,-1,0,1820,-16,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,710,-3,0,932,-6,0,0 +2013,5,21,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,610,-7,0,847,-16,0,0 +2013,8,22,4,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12173,Honolulu International,Honolulu,HI,1000,-7,0,1230,-1,0,0 +2013,6,25,2,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1040,4,0,1521,3,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,735,22,1,1050,12,0,0 +2013,4,1,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-6,0,1938,-19,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,814,-10,0,1425,-15,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1435,-5,0,1612,11,0,0 +2013,7,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,2,0,1130,-1,0,0 +2013,10,21,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2010,15,1,2110,-5,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14122,Pittsburgh International,Pittsburgh,PA,1515,-9,0,1810,-18,0,0 +2013,4,4,4,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,45,11,0,622,17,1,0 +2013,7,19,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,5,0,1620,23,1,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1457,-1,0,1643,-3,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1115,0,,1500,0,1,1 +2013,4,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1351,3,0,1620,-8,0,0 +2013,6,25,2,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1755,-2,0,1950,34,1,0 +2013,10,26,6,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1145,7,0,1525,-6,0,0 +2013,10,9,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,505,-1,0,920,-1,0,0 +2013,8,8,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,2120,29,1,2259,25,1,0 +2013,8,1,4,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1430,-5,0,1729,15,1,0 +2013,8,23,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,845,3,0,1215,-4,0,0 +2013,7,13,6,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1130,-8,0,1341,-14,0,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1925,10,0,2120,12,0,0 +2013,7,7,7,YV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1245,-8,0,1538,-8,0,0 +2013,6,11,2,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1740,-1,0,1857,-5,0,0 +2013,7,2,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1455,0,0,1545,0,0,0 +2013,8,18,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1025,-3,0,1135,-5,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,0,0,2300,-7,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1540,-7,0,1855,-37,0,0 +2013,6,14,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1635,22,1,1845,12,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2125,-3,0,2235,-9,0,0 +2013,10,7,1,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,910,-6,0,1229,-9,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,73,1,1844,67,1,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,13,0,1849,5,0,0 +2013,7,23,2,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,805,1,0,1255,3,0,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,-6,0,2205,-20,0,0 +2013,10,12,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,556,-6,0,726,-11,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-3,0,1335,-13,0,0 +2013,10,11,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2050,-5,0,2100,8,0,0 +2013,9,2,1,B6,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1805,96,1,2019,83,1,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,700,-5,0,800,-11,0,0 +2013,10,15,2,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,2045,16,1,2215,0,0,0 +2013,4,1,1,WN,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1300,-3,0,1510,-13,0,0 +2013,7,10,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1251,108,1,1419,101,1,0 +2013,7,14,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1520,22,1,1720,26,1,0 +2013,10,25,5,UA,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2158,-5,0,2255,-17,0,0 +2013,5,31,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,10,0,1825,3,0,0 +2013,6,22,6,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,817,232,1,1057,206,1,0 +2013,5,13,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14893,Sacramento International,Sacramento,CA,920,-5,0,1113,-20,0,0 +2013,7,20,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1640,12,0,1807,9,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1955,31,1,2240,25,1,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1624,-5,0,44,-19,0,0 +2013,7,4,4,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,-3,0,840,-3,0,0 +2013,5,15,3,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1530,-1,0,1549,1,0,0 +2013,4,22,1,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1350,18,1,1955,-7,0,0 +2013,8,12,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1805,26,1,2010,29,1,0 +2013,9,15,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,-11,0,1745,-21,0,0 +2013,8,21,3,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,1810,-7,0,2055,-1,0,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1345,31,1,1500,25,1,0 +2013,6,2,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-2,0,1506,-13,0,0 +2013,6,29,6,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-4,0,1813,-10,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-2,0,2215,-22,0,0 +2013,4,29,1,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1329,24,1,1604,23,1,0 +2013,7,12,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1510,40,1,1630,25,1,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1830,-1,0,1920,2,0,0 +2013,4,11,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1730,27,1,2040,4,0,0 +2013,10,20,7,DL,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1810,-4,0,2125,-10,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,725,-4,0,849,-14,0,0 +2013,10,16,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,3,0,1740,-4,0,0 +2013,7,1,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1930,-4,0,2056,-8,0,0 +2013,9,8,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1309,-3,0,1418,8,0,0 +2013,6,4,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,-2,0,1010,-17,0,0 +2013,9,2,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1210,-2,0,1315,-4,0,0 +2013,7,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1255,4,0,1532,11,0,0 +2013,4,18,4,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,600,0,0,806,11,0,0 +2013,9,4,3,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1715,-6,0,2141,3,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,708,39,1,833,33,1,0 +2013,5,12,7,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1113,-4,0,1300,-15,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1200,37,1,1320,35,1,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,730,-3,0,955,-15,0,0 +2013,7,4,4,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,600,-9,0,728,-21,0,0 +2013,10,6,7,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1135,3,0,1300,-9,0,0 +2013,4,28,7,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,-8,0,919,-10,0,0 +2013,8,27,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,-6,0,1335,-3,0,0 +2013,9,14,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11278,Ronald Reagan Washington National,Washington,DC,956,-3,0,1601,-17,0,0 +2013,6,20,4,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1127,2,0,1855,1,0,0 +2013,5,19,7,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1825,11,0,2000,46,1,0 +2013,4,4,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1600,-2,0,1735,-19,0,0 +2013,7,9,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1025,-6,0,1222,-30,0,0 +2013,8,6,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,4,0,2335,-6,0,0 +2013,5,28,2,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,2059,7,0,2215,5,0,0 +2013,6,15,6,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,638,-7,0,852,-21,0,0 +2013,10,5,6,9E,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1230,-5,0,1346,-16,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,-4,0,1830,32,1,0 +2013,6,10,1,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-3,0,2055,-12,0,0 +2013,7,18,4,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1230,25,1,1345,38,1,0 +2013,5,28,2,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,2030,-8,0,2210,-3,0,0 +2013,7,9,2,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1000,-7,0,1319,-14,0,0 +2013,8,27,2,VX,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2040,-10,0,2150,-12,0,0 +2013,8,22,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-1,0,840,4,0,0 +2013,9,8,7,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,0,0,1005,-1,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12173,Honolulu International,Honolulu,HI,1000,-11,0,1314,8,0,0 +2013,7,1,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1219,8,0,1935,0,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1000,91,1,1318,93,1,0 +2013,5,2,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,-5,0,2002,6,0,0 +2013,9,26,4,9E,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,700,8,0,753,-11,0,0 +2013,10,23,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1735,10,0,1855,6,0,0 +2013,7,7,7,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,944,-4,0,1125,-16,0,0 +2013,4,4,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-3,0,1750,66,1,0 +2013,5,15,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,2230,0,,2330,0,1,1 +2013,6,8,6,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-5,0,940,-22,0,0 +2013,10,29,2,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1730,2,0,2022,-3,0,0 +2013,4,18,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1750,-4,0,1907,-8,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,3,0,1034,-5,0,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1130,5,0,1225,27,1,0 +2013,4,29,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,659,-5,0,0 +2013,5,16,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,720,1,0,853,1,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1725,28,1,55,4,0,0 +2013,9,16,1,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,705,-10,0,840,-12,0,0 +2013,9,18,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1952,-6,0,2006,-6,0,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1915,-3,0,2255,-4,0,0 +2013,8,19,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2000,35,1,2150,24,1,0 +2013,7,7,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1119,81,1,1234,80,1,0 +2013,7,5,5,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1523,-3,0,1821,-16,0,0 +2013,7,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1405,19,1,1510,15,1,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1825,34,1,45,25,1,0 +2013,6,27,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,800,17,1,1020,9,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,40,1,1754,27,1,0 +2013,10,6,7,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,0,0,1820,-15,0,0 +2013,8,28,3,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,-10,0,1500,-2,0,0 +2013,9,29,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,11,0,1005,-8,0,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,730,-2,0,830,0,0,0 +2013,5,7,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2155,5,0,2315,0,0,0 +2013,4,8,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1155,75,1,1450,65,1,0 +2013,5,27,1,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-7,0,1700,-23,0,0 +2013,7,25,4,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,655,-11,0,905,-17,0,0 +2013,5,26,7,EV,10693,Nashville International,Nashville,TN,12264,Washington Dulles International,Washington,DC,1310,-8,0,1600,-17,0,0 +2013,8,25,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1415,8,0,1805,-7,0,0 +2013,7,12,5,WN,14683,San Antonio International,San Antonio,TX,12889,McCarran International,Las Vegas,NV,1115,-2,0,1200,-14,0,0 +2013,7,7,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,13,0,1515,17,1,0 +2013,9,27,5,OO,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1001,-2,0,1420,0,0,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,6,0,652,-2,0,0 +2013,10,20,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1100,-3,0,1214,-18,0,0 +2013,7,11,4,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1815,17,1,2010,100,1,0 +2013,4,25,4,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,834,-7,0,1116,-6,0,0 +2013,7,11,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,52,1,1610,55,1,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1032,-6,0,1309,-25,0,0 +2013,9,22,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,843,16,1,1007,9,0,0 +2013,8,24,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1002,-7,0,1300,-12,0,0 +2013,9,20,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,835,-7,0,1031,-4,0,0 +2013,5,7,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,855,2,0,955,-7,0,0 +2013,8,12,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1645,-1,0,1810,-9,0,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1430,2,0,1550,2,0,0 +2013,4,24,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1101,-11,0,0 +2013,9,11,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2005,50,1,2225,45,1,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,2100,-1,0,2210,-4,0,0 +2013,5,1,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1725,0,0,1810,-4,0,0 +2013,7,25,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1000,-9,0,1113,6,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,11066,Port Columbus International,Columbus,OH,1145,17,1,1840,23,1,0 +2013,4,19,5,AA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,825,-3,0,1615,-13,0,0 +2013,5,24,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1210,-5,0,1529,-12,0,0 +2013,5,4,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1125,0,0,1200,0,0,0 +2013,9,6,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1830,-7,0,2115,-7,0,0 +2013,9,20,5,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1755,51,1,1925,45,1,0 +2013,10,9,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,905,-4,0,1022,-2,0,0 +2013,6,4,2,OO,13891,Ontario International,Ontario,CA,14771,San Francisco International,San Francisco,CA,852,11,0,1030,65,1,0 +2013,6,19,3,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1330,-8,0,1612,-21,0,0 +2013,8,11,7,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1915,24,1,2131,3,0,0 +2013,10,4,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2029,1,0,2123,-5,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,14,0,1655,59,1,0 +2013,4,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1030,21,1,1250,7,0,0 +2013,8,22,4,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-3,0,745,-11,0,0 +2013,4,13,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,6,0,2009,11,0,0 +2013,6,14,5,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1514,-6,0,1624,3,0,0 +2013,4,16,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,0,,1914,0,1,1 +2013,5,31,5,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,700,-2,0,1525,1,0,0 +2013,10,22,2,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1005,-4,0,1050,-1,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,2040,-1,0,2155,8,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1720,1,0,1905,1,0,0 +2013,7,12,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1651,-6,0,1927,-2,0,0 +2013,5,14,2,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1220,-4,0,1439,-1,0,0 +2013,4,2,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,800,5,0,1630,11,0,0 +2013,8,10,6,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-8,0,2039,42,1,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1720,-5,0,2115,-18,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1930,3,0,2312,47,1,0 +2013,8,24,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,1630,16,1,1945,8,0,0 +2013,10,20,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,119,1,1537,125,1,0 +2013,7,2,2,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,-4,0,29,14,0,0 +2013,4,27,6,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,715,-2,0,840,-9,0,0 +2013,5,30,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1425,7,0,1708,15,1,0 +2013,4,8,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1044,-2,0,0 +2013,6,8,6,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1252,12,0,1612,14,0,0 +2013,8,29,4,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-3,0,1213,-9,0,0 +2013,5,7,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,-6,0,1750,-15,0,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1650,1,0,2020,0,0,0 +2013,6,24,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1325,74,1,1623,64,1,0 +2013,4,20,6,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,8,0,1903,-7,0,0 +2013,8,5,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,800,0,0,935,-8,0,0 +2013,4,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1145,12,0,1513,7,0,0 +2013,5,18,6,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-13,0,805,-14,0,0 +2013,5,22,3,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1754,-4,0,1912,3,0,0 +2013,6,4,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1440,10,0,1614,-15,0,0 +2013,4,21,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2009,-6,0,2049,22,1,0 +2013,4,22,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,840,7,0,1105,13,0,0 +2013,9,20,5,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1050,7,0,1250,12,0,0 +2013,4,14,7,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2235,164,1,11,151,1,0 +2013,9,3,2,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,727,9,0,1007,3,0,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1510,-6,0,1632,4,0,0 +2013,8,31,6,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,-4,0,2118,-11,0,0 +2013,9,8,7,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,930,17,1,1127,7,0,0 +2013,4,22,1,WN,13851,Will Rogers World,Oklahoma City,OK,13198,Kansas City International,Kansas City,MO,1000,5,0,1105,3,0,0 +2013,8,30,5,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,840,0,,1150,0,1,1 +2013,4,5,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,705,1,0,825,-10,0,0 +2013,4,2,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13198,Kansas City International,Kansas City,MO,905,35,1,1002,31,1,0 +2013,10,28,1,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,25,1,830,21,1,0 +2013,5,3,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,752,6,0,936,16,1,0 +2013,9,24,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,-2,0,930,-2,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1155,9,0,1351,4,0,0 +2013,6,2,7,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1835,102,1,2115,102,1,0 +2013,10,2,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,-12,0,2243,-11,0,0 +2013,8,13,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,705,-2,0,925,-6,0,0 +2013,9,12,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,27,1,2225,26,1,0 +2013,8,30,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,-10,0,1355,-26,0,0 +2013,10,23,3,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,850,14,0,1110,7,0,0 +2013,8,24,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,900,-4,0,945,-5,0,0 +2013,7,2,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1345,4,0,1449,-2,0,0 +2013,4,4,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1500,-8,0,1826,-16,0,0 +2013,4,11,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,30,-6,0,454,-19,0,0 +2013,7,4,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,-5,0,1647,-2,0,0 +2013,4,21,7,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,815,-7,0,1033,-15,0,0 +2013,7,9,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1419,-1,0,1559,-8,0,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1525,12,0,1750,2,0,0 +2013,7,29,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1500,49,1,1758,36,1,0 +2013,5,9,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,21,1,1105,15,1,0 +2013,5,12,7,US,12889,McCarran International,Las Vegas,NV,11278,Ronald Reagan Washington National,Washington,DC,2359,0,0,722,26,1,0 +2013,4,26,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1959,-6,0,2151,-13,0,0 +2013,5,21,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,921,6,0,1206,3,0,0 +2013,7,21,7,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,1610,-5,0,2145,-15,0,0 +2013,10,24,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1426,-2,0,1529,-7,0,0 +2013,4,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1040,-4,0,1211,-23,0,0 +2013,9,25,3,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2200,-3,0,2328,-7,0,0 +2013,5,17,5,YV,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1001,-1,0,1224,-12,0,0 +2013,4,10,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2155,-2,0,2310,-2,0,0 +2013,6,20,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,2002,5,0,2242,17,1,0 +2013,9,15,7,UA,11292,Denver International,Denver,CO,14100,Philadelphia International,Philadelphia,PA,1003,14,0,1535,4,0,0 +2013,6,5,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1209,48,1,1532,26,1,0 +2013,9,10,2,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1010,1,0,1745,18,1,0 +2013,8,31,6,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1603,5,0,1800,0,0,0 +2013,7,29,1,EV,12953,LaGuardia,New York,NY,13198,Kansas City International,Kansas City,MO,820,32,1,1043,12,0,0 +2013,9,12,4,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-9,0,1959,-18,0,0 +2013,5,11,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1840,-4,0,1940,-8,0,0 +2013,8,6,2,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,1553,21,1,1641,14,0,0 +2013,5,6,1,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1055,-10,0,1225,-7,0,0 +2013,6,26,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1320,71,1,1440,70,1,0 +2013,5,7,2,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,755,3,0,1020,-4,0,0 +2013,5,3,5,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,800,4,0,1550,17,1,0 +2013,5,10,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2057,9,0,2133,0,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-1,0,1305,26,1,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1305,5,0,1412,-8,0,0 +2013,10,7,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1020,16,1,1043,3,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,704,-9,0,1011,23,1,0 +2013,4,21,7,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,747,1,0,919,-3,0,0 +2013,10,21,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-1,0,2014,0,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1420,10,0,1645,6,0,0 +2013,6,4,2,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2255,-10,0,629,-11,0,0 +2013,8,18,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1638,25,1,1804,14,0,0 +2013,8,4,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,820,-9,0,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,828,0,0,1344,-8,0,0 +2013,4,20,6,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1521,15,1,1645,25,1,0 +2013,6,19,3,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,625,-1,0,750,-13,0,0 +2013,10,22,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1430,-5,0,1835,-31,0,0 +2013,6,26,3,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,2,0,733,-11,0,0 +2013,8,3,6,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1855,104,1,2035,84,1,0 +2013,8,8,4,EV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1956,21,1,2118,24,1,0 +2013,10,28,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1210,5,0,1635,-5,0,0 +2013,6,26,3,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,600,95,1,856,123,1,0 +2013,9,2,1,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,757,84,1,922,66,1,0 +2013,5,24,5,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,2,0,2255,-5,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1957,1,0,2301,-20,0,0 +2013,10,9,3,AA,11042,Cleveland-Hopkins International,Cleveland,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-3,0,805,1,0,0 +2013,7,30,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,11,0,836,-5,0,0 +2013,4,14,7,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1454,47,1,1805,1,0,0 +2013,6,9,7,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,-2,0,1710,-33,0,0 +2013,5,5,7,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1305,-2,0,1410,-9,0,0 +2013,10,20,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,-7,0,1632,-5,0,0 +2013,6,30,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1509,54,1,1722,51,1,0 +2013,9,24,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1930,-2,0,2025,4,0,0 +2013,4,1,1,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1400,-7,0,1714,-17,0,0 +2013,9,8,7,WN,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1300,4,0,1640,-11,0,0 +2013,10,3,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1731,-1,0,1807,-2,0,0 +2013,4,15,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2120,-8,0,2350,-23,0,0 +2013,10,2,3,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1101,4,0,1418,-11,0,0 +2013,4,8,1,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1845,-3,0,2120,-19,0,0 +2013,8,27,2,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,610,-3,0,904,-9,0,0 +2013,5,11,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,25,1,2127,25,1,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1350,1,0,1350,-5,0,0 +2013,4,1,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1524,-7,0,1824,-18,0,0 +2013,5,8,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-10,0,1050,-2,0,0 +2013,8,31,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,645,-3,0,759,-15,0,0 +2013,7,31,3,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1235,-1,0,1400,0,0,0 +2013,8,12,1,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-10,0,1037,-4,0,0 +2013,4,8,1,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1410,-7,0,1928,-2,0,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1110,-1,0,1340,-21,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,2145,-3,0,2356,-22,0,0 +2013,6,22,6,WN,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,730,-1,0,850,-19,0,0 +2013,10,27,7,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1822,-3,0,1929,-9,0,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,810,-1,0,930,-1,0,0 +2013,10,19,6,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,700,-7,0,832,1,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1315,7,0,1446,-10,0,0 +2013,9,21,6,YV,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,850,-5,0,1117,-13,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2105,1,0,2340,-13,0,0 +2013,10,31,4,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1410,-2,0,1651,-8,0,0 +2013,8,5,1,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1120,8,0,1245,4,0,0 +2013,6,26,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-5,0,900,-16,0,0 +2013,7,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1859,11,0,2038,-6,0,0 +2013,6,5,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1910,0,0,1915,22,1,0 +2013,9,21,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,1520,-3,0,1725,1,0,0 +2013,5,8,3,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,915,-6,0,1033,-8,0,0 +2013,5,18,6,DL,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,915,-9,0,1432,-7,0,0 +2013,6,27,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1635,23,1,1815,26,1,0 +2013,4,11,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1553,51,1,1822,36,1,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,2155,-3,0,27,-5,0,0 +2013,8,3,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1234,5,0,1455,-3,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,31,1,1655,29,1,0 +2013,6,6,4,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1640,-4,0,1919,-12,0,0 +2013,4,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1735,134,1,1928,118,1,0 +2013,6,4,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-8,0,1127,-11,0,0 +2013,5,8,3,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-14,0,740,3,0,0 +2013,7,25,4,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,910,-4,0,1040,-17,0,0 +2013,4,19,5,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,1,0,1234,-6,0,0 +2013,7,24,3,DL,15376,Tucson International,Tucson,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-2,0,1307,1,0,0 +2013,9,14,6,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,755,0,0,1035,-10,0,0 +2013,4,26,5,US,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-4,0,909,7,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1100,0,0,1245,-6,0,0 +2013,6,5,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-9,0,925,-17,0,0 +2013,10,15,2,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,920,-4,0,1235,1,0,0 +2013,9,20,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1635,-10,0,1756,-3,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,60,1,1158,33,1,0 +2013,5,26,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,55,1,1459,47,1,0 +2013,6,21,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1800,110,1,1820,120,1,0 +2013,4,17,3,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,28,1,1720,9,0,0 +2013,10,27,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1400,-4,0,1930,-15,0,0 +2013,4,28,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-1,0,1555,5,0,0 +2013,7,23,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1840,14,0,2215,30,1,0 +2013,8,11,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1925,27,1,2040,18,1,0 +2013,8,23,5,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1335,0,0,1430,-2,0,0 +2013,4,6,6,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,753,-7,0,1559,-27,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1950,14,0,2240,33,1,0 +2013,9,18,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,720,0,0,830,-1,0,0 +2013,10,23,3,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1024,-1,0,1107,-2,0,0 +2013,6,27,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,2050,-4,0,2309,0,0,0 +2013,6,26,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12451,Jacksonville International,Jacksonville,FL,1225,-4,0,1415,-6,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1037,4,0,1219,1,0,0 +2013,10,24,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1010,5,0,1336,-6,0,0 +2013,9,5,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,-1,0,1709,-8,0,0 +2013,5,8,3,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1430,-6,0,1617,-12,0,0 +2013,10,20,7,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1910,1,0,20,-10,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1305,-3,0,1640,-7,0,0 +2013,9,20,5,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1210,21,1,1300,39,1,0 +2013,4,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1640,-2,0,2010,-28,0,0 +2013,9,9,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1010,15,1,1500,16,1,0 +2013,6,21,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1555,16,1,1710,17,1,0 +2013,9,12,4,AA,10299,Ted Stevens Anchorage International,Anchorage,AK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2055,7,0,605,12,0,0 +2013,7,25,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1800,-1,0,1922,-8,0,0 +2013,9,29,7,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,-15,0,929,-10,0,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1605,-4,0,1735,-13,0,0 +2013,5,27,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,-10,0,1917,13,0,0 +2013,7,22,1,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1723,34,1,2014,40,1,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1055,-2,0,1310,-8,0,0 +2013,4,6,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,729,93,1,929,91,1,0 +2013,9,12,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,830,-8,0,948,-10,0,0 +2013,6,12,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,35,1,2015,16,1,0 +2013,4,3,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-11,0,1053,-8,0,0 +2013,10,15,2,VX,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,920,-4,0,1155,-9,0,0 +2013,8,13,2,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1003,41,1,1600,51,1,0 +2013,4,21,7,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1801,7,0,2134,18,1,0 +2013,8,20,2,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,2003,33,1,2208,7,0,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2040,16,1,2224,14,0,0 +2013,5,23,4,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1029,-2,0,1239,-5,0,0 +2013,8,7,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,-6,0,1355,10,0,0 +2013,9,25,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-2,0,1000,9,0,0 +2013,5,7,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1159,23,1,1348,20,1,0 +2013,4,22,1,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,-5,0,920,-16,0,0 +2013,7,16,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14122,Pittsburgh International,Pittsburgh,PA,1610,-5,0,1718,9,0,0 +2013,6,28,5,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,925,31,1,1750,95,1,0 +2013,7,17,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,2,0,2310,8,0,0 +2013,7,28,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,-4,0,1108,-14,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1850,-6,0,2335,-13,0,0 +2013,9,6,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,-3,0,1150,-15,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,800,-2,0,1240,-8,0,0 +2013,6,9,7,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1230,12,0,1345,5,0,0 +2013,6,29,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1210,-4,0,1335,-9,0,0 +2013,5,2,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1155,40,1,1335,38,1,0 +2013,8,3,6,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,816,-9,0,0 +2013,7,17,3,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1350,2,0,1505,-2,0,0 +2013,7,29,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12451,Jacksonville International,Jacksonville,FL,1130,-7,0,1315,-16,0,0 +2013,8,26,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1030,2,0,1400,0,0,0 +2013,8,31,6,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1125,-8,0,1416,-21,0,0 +2013,7,25,4,EV,13931,Norfolk International,Norfolk,VA,13930,Chicago O'Hare International,Chicago,IL,700,-5,0,813,-7,0,0 +2013,4,11,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,-3,0,1457,-10,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1350,11,0,1500,13,0,0 +2013,5,2,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1810,39,1,2015,25,1,0 +2013,7,21,7,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1030,1,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1910,45,1,2300,41,1,0 +2013,8,9,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2350,19,1,711,11,0,0 +2013,6,6,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,606,-6,0,706,-11,0,0 +2013,9,6,5,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,840,-6,0,1447,-14,0,0 +2013,9,17,2,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1725,-10,0,2017,-20,0,0 +2013,7,15,1,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,540,-3,0,728,-6,0,0 +2013,9,30,1,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,755,-3,0,925,-8,0,0 +2013,6,19,3,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,15,1,1250,3,0,0 +2013,6,20,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-4,0,922,-16,0,0 +2013,5,27,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,0,0,1245,-12,0,0 +2013,7,30,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1535,-7,0,1640,-5,0,0 +2013,7,7,7,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,-3,0,1943,46,1,0 +2013,6,12,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,920,-1,0,1125,-6,0,0 +2013,7,10,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,2150,100,1,2305,102,1,0 +2013,8,27,2,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,0,0,1655,7,0,0 +2013,7,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1250,1,0,1405,-14,0,0 +2013,10,30,3,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,4,0,2125,-9,0,0 +2013,9,16,1,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1305,-2,0,1415,0,0,0 +2013,10,8,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1436,-7,0,1621,-25,0,0 +2013,6,13,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1925,14,0,2025,7,0,0 +2013,4,4,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1030,4,0,1150,-7,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1340,-2,0,1540,40,1,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1508,79,1,1851,62,1,0 +2013,5,31,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1310,22,1,1540,18,1,0 +2013,6,28,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,9,0,1140,4,0,0 +2013,10,2,3,DL,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-7,0,2046,-3,0,0 +2013,10,26,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1410,-2,0,1455,4,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1640,7,0,1745,8,0,0 +2013,8,1,4,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,634,-14,0,1409,-37,0,0 +2013,9,21,6,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,545,-3,0,855,-49,0,0 +2013,9,2,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1825,0,,2135,0,1,1 +2013,4,20,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,650,5,0,1240,2,0,0 +2013,8,19,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,752,-9,0,809,-20,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,632,64,1,745,54,1,0 +2013,4,14,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-6,0,1645,1,0,0 +2013,4,2,2,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1942,2,0,2247,-5,0,0 +2013,10,5,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1405,-5,0,1615,-18,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,-3,0,1043,-16,0,0 +2013,4,30,2,OO,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,1355,-2,0,1759,-12,0,0 +2013,10,15,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1345,-5,0,1638,3,0,0 +2013,10,8,2,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1535,-6,0,1700,-16,0,0 +2013,4,4,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1744,34,1,2010,11,0,0 +2013,6,9,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,600,-2,0,725,-12,0,0 +2013,9,18,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-8,0,1428,-16,0,0 +2013,7,31,3,OO,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1200,35,1,1320,27,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,650,-3,0,840,-8,0,0 +2013,7,21,7,B6,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1307,-4,0,1800,-20,0,0 +2013,8,6,2,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-6,0,1345,-10,0,0 +2013,5,20,1,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,299,1,1225,291,1,0 +2013,5,17,5,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,730,4,0,855,0,0,0 +2013,6,24,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,859,-20,0,0 +2013,7,19,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-2,0,1730,44,1,0 +2013,6,14,5,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1123,2,0,1643,-8,0,0 +2013,6,1,6,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1445,10,0,1550,-2,0,0 +2013,6,30,7,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1550,0,0,1810,-20,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2030,-3,0,2231,-5,0,0 +2013,8,31,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,959,-7,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1129,6,0,1252,-7,0,0 +2013,4,2,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1750,13,0,1915,14,0,0 +2013,9,30,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,530,-2,0,707,-29,0,0 +2013,8,9,5,F9,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1908,14,0,1940,13,0,0 +2013,7,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,-9,0,1004,-8,0,0 +2013,6,16,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1551,-1,0,1731,-11,0,0 +2013,4,22,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,928,3,0,1131,21,1,0 +2013,9,18,3,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,1,0,1634,15,1,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1526,-1,0,1653,-4,0,0 +2013,8,15,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11066,Port Columbus International,Columbus,OH,1506,8,0,1557,0,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1435,0,0,1705,-1,0,0 +2013,8,23,5,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,19,1,1201,13,0,0 +2013,9,9,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1020,4,0,1140,4,0,0 +2013,10,16,3,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,15304,Tampa International,Tampa,FL,1020,-5,0,1211,-13,0,0 +2013,7,23,2,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,537,-7,0,645,-15,0,0 +2013,6,21,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-8,0,2047,-19,0,0 +2013,5,26,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1110,0,0,1240,-11,0,0 +2013,4,17,3,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2155,-5,0,48,-20,0,0 +2013,9,21,6,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,0,0,1415,2,0,0 +2013,5,9,4,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,800,-2,0,1550,7,0,0 +2013,8,6,2,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-6,0,1025,-6,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,1042,-4,0,1154,-12,0,0 +2013,4,22,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1755,153,1,2120,147,1,0 +2013,5,17,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,0,0,1230,3,0,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1115,-1,0,1229,2,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1135,10,0,1220,-2,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,13931,Norfolk International,Norfolk,VA,2015,15,1,2122,18,1,0 +2013,5,30,4,OO,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-10,0,2055,-9,0,0 +2013,5,9,4,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1940,2,0,2050,-1,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,2015,-3,0,2145,-19,0,0 +2013,8,30,5,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2125,0,0,2345,9,0,0 +2013,9,24,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,735,48,1,928,70,1,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1240,-4,0,1430,-6,0,0 +2013,10,2,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2035,14,0,2200,8,0,0 +2013,7,22,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1759,-3,0,1917,-6,0,0 +2013,4,20,6,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1720,6,0,2000,3,0,0 +2013,6,13,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,15,1,930,22,1,0 +2013,10,8,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1145,0,0,2016,-8,0,0 +2013,9,30,1,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,852,-1,0,1126,-16,0,0 +2013,9,4,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1925,-4,0,2035,-14,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12191,William P Hobby,Houston,TX,1830,29,1,2300,20,1,0 +2013,9,5,4,WN,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1710,45,1,2300,59,1,0 +2013,7,25,4,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1550,58,1,1750,52,1,0 +2013,4,9,2,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-8,0,920,-9,0,0 +2013,7,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1533,13,0,1723,11,0,0 +2013,5,16,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1330,25,1,1648,9,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1005,-2,0,1150,-7,0,0 +2013,4,11,4,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1625,8,0,1843,11,0,0 +2013,4,16,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,705,-2,0,1008,-2,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,1500,-2,0,2159,-9,0,0 +2013,7,25,4,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,2150,46,1,154,45,1,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,600,-5,0,730,-20,0,0 +2013,4,3,3,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,725,0,0,935,-7,0,0 +2013,5,4,6,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,-4,0,1930,-18,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,732,-3,0,916,-4,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1614,-3,0,1735,-9,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-3,0,1254,2,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,857,-1,0,1014,-9,0,0 +2013,9,18,3,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1341,-6,0,1530,-15,0,0 +2013,4,30,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1525,1,0,1650,-3,0,0 +2013,10,7,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1200,0,0,1405,2,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1230,0,0,1406,14,0,0 +2013,4,28,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,615,-3,0,905,-9,0,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,700,-3,0,800,-9,0,0 +2013,7,14,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,727,-11,0,839,-3,0,0 +2013,7,3,3,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1902,-4,0,2149,28,1,0 +2013,5,3,5,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1805,-1,0,1920,-1,0,0 +2013,4,1,1,EV,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,35,1,1256,22,1,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2205,87,1,2305,79,1,0 +2013,5,9,4,B6,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1345,-2,0,1601,-11,0,0 +2013,5,4,6,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1545,4,0,1810,7,0,0 +2013,8,10,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,530,-3,0,719,-2,0,0 +2013,5,17,5,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1150,-6,0,1345,-2,0,0 +2013,8,16,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1705,43,1,1815,37,1,0 +2013,6,4,2,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1115,-7,0,1305,2,0,0 +2013,5,1,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1659,-8,0,2310,-16,0,0 +2013,8,29,4,MQ,13303,Miami International,Miami,FL,13244,Memphis International,Memphis,TN,1105,33,1,1230,27,1,0 +2013,6,11,2,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1525,-2,0,2055,4,0,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2359,-12,0,654,-25,0,0 +2013,9,24,2,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1310,2,0,1410,-5,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,2,0,1605,0,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,56,1,1350,27,1,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2050,17,1,2200,15,1,0 +2013,8,20,2,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,2124,27,1,30,4,0,0 +2013,10,19,6,B6,10721,Logan International,Boston,MA,14635,Southwest Florida International,Fort Myers,FL,1310,2,0,1636,-3,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,938,-6,0,1117,-1,0,0 +2013,10,7,1,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,1,0,1051,8,0,0 +2013,5,13,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1405,0,0,1515,1,0,0 +2013,4,6,6,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,0,0,903,-12,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1325,3,0,1625,2,0,0 +2013,6,17,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-4,0,733,-11,0,0 +2013,10,10,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1910,23,1,2015,16,1,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,2105,11,0,2215,8,0,0 +2013,9,16,1,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,725,5,0,850,-5,0,0 +2013,6,28,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1925,27,1,2035,22,1,0 +2013,9,11,3,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,645,-6,0,1227,-20,0,0 +2013,5,29,3,DL,14771,San Francisco International,San Francisco,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2300,-3,0,629,-5,0,0 +2013,5,31,5,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1815,17,1,2135,-6,0,0 +2013,7,21,7,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1310,18,1,1630,-3,0,0 +2013,9,30,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12478,John F. Kennedy International,New York,NY,1950,19,1,2200,17,1,0 +2013,5,21,2,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,645,0,0,805,-3,0,0 +2013,10,18,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,-6,0,1445,-16,0,0 +2013,9,15,7,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,1010,-8,0,1250,-10,0,0 +2013,10,29,2,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,1955,13,0,2245,-7,0,0 +2013,8,7,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1725,-4,0,2100,5,0,0 +2013,9,25,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,3,0,1658,6,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1230,-2,0,1620,-10,0,0 +2013,6,16,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1240,11,0,1420,33,1,0 +2013,8,9,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,2255,40,1,19,38,1,0 +2013,4,7,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1745,66,1,2028,47,1,0 +2013,9,3,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1021,-6,0,1836,-13,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1335,3,0,1435,0,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1810,5,0,2041,0,0,0 +2013,9,24,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1255,-1,0,1635,2,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,815,-3,0,920,-11,0,0 +2013,5,2,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1818,18,1,2120,-5,0,0 +2013,5,24,5,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,10,0,1205,5,0,0 +2013,9,9,1,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1535,0,0,1635,-4,0,0 +2013,7,31,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,57,1,1540,54,1,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1024,-2,0,1214,-5,0,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,0,0,1000,-4,0,0 +2013,6,4,2,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,1,0,2135,-2,0,0 +2013,6,13,4,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,2035,72,1,2145,64,1,0 +2013,4,26,5,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1222,3,0,1419,-2,0,0 +2013,9,13,5,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,759,245,1,937,236,1,0 +2013,10,18,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2010,12,0,2257,5,0,0 +2013,6,5,3,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1136,-14,0,1437,-9,0,0 +2013,7,13,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-2,0,1210,6,0,0 +2013,5,14,2,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,2010,-5,0,2125,-13,0,0 +2013,8,26,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1050,-2,0,1215,7,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1500,25,1,2335,8,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1110,-5,0,1505,-7,0,0 +2013,10,3,4,AA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-3,0,1520,-10,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1250,0,,1430,0,1,1 +2013,4,5,5,UA,11292,Denver International,Denver,CO,11618,Newark Liberty International,Newark,NJ,1930,-5,0,113,-30,0,0 +2013,7,20,6,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,2045,18,1,2335,10,0,0 +2013,10,11,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,2030,13,0,2152,15,1,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1140,-8,0,1355,-23,0,0 +2013,5,3,5,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2030,-1,0,2200,-12,0,0 +2013,6,20,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,930,13,0,1059,1,0,0 +2013,4,27,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1235,1,0,1755,10,0,0 +2013,7,22,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,19,1,1750,4,0,0 +2013,8,12,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,812,-7,0,914,-14,0,0 +2013,8,1,4,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,620,-3,0,810,-8,0,0 +2013,4,1,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1310,4,0,1605,-8,0,0 +2013,10,14,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,545,-10,0,700,-12,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-3,0,1030,-17,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,730,-3,0,830,-6,0,0 +2013,5,4,6,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,811,0,0,1104,-8,0,0 +2013,8,26,1,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,1,0,1751,22,1,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,925,14,0,1115,1,0,0 +2013,6,27,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,44,1,2056,65,1,0 +2013,8,2,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,1,0,1940,-11,0,0 +2013,4,21,7,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1355,-2,0,1520,-4,0,0 +2013,5,8,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,727,-5,0,904,-12,0,0 +2013,7,10,3,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,759,-1,0,854,-10,0,0 +2013,10,22,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1035,-6,0,1131,-11,0,0 +2013,6,9,7,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,1035,-1,0,1630,-6,0,0 +2013,6,16,7,US,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-3,0,1905,19,1,0 +2013,5,24,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1030,0,0,1340,-4,0,0 +2013,9,13,5,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1905,-8,0,2101,-3,0,0 +2013,9,27,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-3,0,1347,-3,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,900,-2,0,1020,-23,0,0 +2013,4,26,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,107,1,1515,110,1,0 +2013,10,26,6,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1030,13,0,1205,-8,0,0 +2013,7,6,6,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2003,0,,2143,0,1,1 +2013,10,1,2,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1222,32,1,1322,22,1,0 +2013,6,10,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,-4,0,935,-13,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-1,0,1317,2,0,0 +2013,10,6,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,1035,27,1,1830,24,1,0 +2013,4,23,2,EV,14524,Richmond International,Richmond,VA,12264,Washington Dulles International,Washington,DC,1932,-4,0,2020,-6,0,0 +2013,5,19,7,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,-5,0,1000,-5,0,0 +2013,4,29,1,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1400,-6,0,1625,-10,0,0 +2013,5,29,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2115,-7,0,521,-1,0,0 +2013,6,19,3,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,1615,20,1,1935,7,0,0 +2013,8,24,6,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-6,0,928,-9,0,0 +2013,5,27,1,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1712,33,1,1800,32,1,0 +2013,10,28,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,52,1,2215,43,1,0 +2013,6,9,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,2010,-8,0,2145,-18,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1720,55,1,2110,49,1,0 +2013,6,23,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,855,4,0,1004,29,1,0 +2013,7,17,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1219,-2,0,1805,0,0,0 +2013,10,2,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,835,-5,0,1043,7,0,0 +2013,8,30,5,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,636,-5,0,759,-13,0,0 +2013,4,18,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1945,90,1,2125,90,1,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,9,0,1510,-8,0,0 +2013,9,3,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1115,-1,0,1305,-16,0,0 +2013,9,21,6,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1015,-5,0,1245,2,0,0 +2013,10,11,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,750,-6,0,1049,-25,0,0 +2013,10,9,3,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-9,0,1056,-13,0,0 +2013,10,20,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,-3,0,2055,7,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,930,-2,0,1107,-17,0,0 +2013,10,9,3,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,710,-3,0,835,17,1,0 +2013,10,22,2,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1712,-7,0,1904,-29,0,0 +2013,4,22,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,0,,500,0,1,1 +2013,5,28,2,EV,12264,Washington Dulles International,Washington,DC,10693,Nashville International,Nashville,TN,1700,-5,0,1751,-18,0,0 +2013,10,2,3,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1110,7,0,1645,-6,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,2000,-1,0,2210,-19,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1030,2,0,1143,-4,0,0 +2013,8,7,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,2200,-1,0,2315,-8,0,0 +2013,7,28,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-3,0,2107,9,0,0 +2013,10,11,5,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,2055,-2,0,2225,-20,0,0 +2013,4,25,4,WN,13204,Orlando International,Orlando,FL,14730,Louisville International-Standiford Field,Louisville,KY,1005,3,0,1210,-1,0,0 +2013,6,18,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,801,16,1,1100,-8,0,0 +2013,7,29,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1230,-3,0,1335,-15,0,0 +2013,5,27,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,652,0,0,1000,-30,0,0 +2013,4,26,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1410,3,0,1530,9,0,0 +2013,7,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1625,283,1,1849,278,1,0 +2013,10,29,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2107,-6,0,2219,-11,0,0 +2013,7,10,3,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1500,18,1,1705,31,1,0 +2013,5,12,7,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,1915,10,0,2015,0,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1310,15,1,1415,11,0,0 +2013,9,27,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,3,0,1720,-4,0,0 +2013,7,30,2,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1150,-1,0,1430,-9,0,0 +2013,10,13,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1104,0,0,1210,17,1,0 +2013,9,16,1,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1545,-5,0,1733,-23,0,0 +2013,7,7,7,AS,12173,Honolulu International,Honolulu,HI,10299,Ted Stevens Anchorage International,Anchorage,AK,2145,-1,0,549,-7,0,0 +2013,6,6,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,745,-4,0,905,-7,0,0 +2013,10,2,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14100,Philadelphia International,Philadelphia,PA,1712,0,0,2328,-1,0,0 +2013,5,13,1,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1108,-10,0,1431,4,0,0 +2013,5,29,3,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,820,-1,0,1012,-14,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-5,0,1710,-6,0,0 +2013,6,30,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1345,-5,0,1535,-14,0,0 +2013,7,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1500,21,1,1730,17,1,0 +2013,8,9,5,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1820,-2,0,1945,-3,0,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-3,0,2230,-11,0,0 +2013,9,13,5,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,2220,6,0,110,-17,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1202,7,0,1548,-19,0,0 +2013,4,10,3,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,839,-22,0,0 +2013,9,28,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1335,-9,0,1625,-21,0,0 +2013,6,1,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,1420,14,0,1700,10,0,0 +2013,6,23,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,835,-8,0,958,-14,0,0 +2013,5,23,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,730,-3,0,855,-9,0,0 +2013,5,22,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1410,-3,0,1533,-7,0,0 +2013,10,15,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,723,-2,0,805,-1,0,0 +2013,7,17,3,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,49,1,2115,12,0,0 +2013,8,31,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2230,-8,0,2330,-19,0,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-3,0,1133,-4,0,0 +2013,10,13,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1715,-1,0,1830,-5,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1005,1,0,1116,-7,0,0 +2013,7,22,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1725,11,0,1830,22,1,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,14,0,40,-1,0,0 +2013,8,1,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1528,-2,0,1647,-7,0,0 +2013,7,10,3,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1601,-7,0,1722,-4,0,0 +2013,5,14,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1235,35,1,1517,-7,0,0 +2013,8,15,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1029,4,0,1305,2,0,0 +2013,6,11,2,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,105,1,2224,79,1,0 +2013,5,9,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1821,-2,0,1953,5,0,0 +2013,4,3,3,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1100,-8,0,1235,-12,0,0 +2013,8,17,6,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,615,2,0,1235,-17,0,0 +2013,6,28,5,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1630,0,,1855,0,1,1 +2013,8,6,2,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1800,-3,0,1925,11,0,0 +2013,10,2,3,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,-8,0,1411,-8,0,0 +2013,10,23,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,726,-2,0,842,-20,0,0 +2013,4,17,3,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1445,-7,0,1839,9,0,0 +2013,7,18,4,YV,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1455,21,1,1610,34,1,0 +2013,10,17,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1123,-10,0,1340,1,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,955,-2,0,1029,-9,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,855,-4,0,1129,-5,0,0 +2013,7,25,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,2000,78,1,2101,58,1,0 +2013,7,14,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,800,2,0,925,-6,0,0 +2013,9,9,1,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-4,0,1755,9,0,0 +2013,5,30,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1446,13,0,1623,-1,0,0 +2013,7,11,4,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1025,-4,0,1510,-6,0,0 +2013,6,22,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-6,0,735,-11,0,0 +2013,6,18,2,9E,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1425,-4,0,1716,-9,0,0 +2013,10,4,5,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,-2,0,1905,-3,0,0 +2013,8,22,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,2135,166,1,2255,162,1,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1946,40,1,2038,26,1,0 +2013,5,23,4,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1050,22,1,1210,10,0,0 +2013,9,12,4,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-3,0,1919,-14,0,0 +2013,8,16,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,2200,1,0,2346,-9,0,0 +2013,9,25,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,800,3,0,915,-13,0,0 +2013,9,22,7,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,2215,-9,0,32,-20,0,0 +2013,10,21,1,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,2,0,1836,6,0,0 +2013,8,6,2,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,959,-9,0,1250,-12,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1739,3,0,1850,-7,0,0 +2013,9,21,6,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,849,-15,0,0 +2013,7,17,3,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1500,80,1,1535,85,1,0 +2013,8,30,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1859,0,0,2006,-4,0,0 +2013,10,2,3,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,740,-26,0,0 +2013,4,19,5,AS,12173,Honolulu International,Honolulu,HI,14831,Norman Y. Mineta San Jose International,San Jose,CA,1310,-3,0,2121,-13,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1200,12,0,1305,-4,0,0 +2013,6,18,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2016,53,1,2144,51,1,0 +2013,9,9,1,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-7,0,1110,-16,0,0 +2013,10,4,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,3,0,609,-16,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1435,12,0,1705,13,0,0 +2013,10,8,2,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1245,-3,0,1419,-14,0,0 +2013,4,25,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,824,9,0,1113,35,1,0 +2013,9,22,7,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2035,-5,0,2211,-32,0,0 +2013,9,20,5,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,757,6,0,922,-1,0,0 +2013,6,7,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1910,4,0,2020,12,0,0 +2013,9,28,6,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,845,-1,0,956,-12,0,0 +2013,4,25,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,844,-3,0,1030,-10,0,0 +2013,4,10,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,0,,1549,0,1,1 +2013,9,20,5,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1150,-3,0,1205,-14,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,3,0,2330,-5,0,0 +2013,5,19,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-2,0,1510,-28,0,0 +2013,5,18,6,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1155,0,0,2014,5,0,0 +2013,4,23,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,1030,-6,0,1242,-1,0,0 +2013,10,29,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1502,0,0,1524,0,0,0 +2013,5,16,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1652,2,0,1754,-5,0,0 +2013,4,2,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,-5,0,1921,-3,0,0 +2013,5,2,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1955,-2,0,2107,-3,0,0 +2013,6,28,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1750,12,0,1917,-7,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-4,0,1441,-2,0,0 +2013,6,15,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1230,-6,0,1335,-8,0,0 +2013,7,13,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,610,-2,0,735,-3,0,0 +2013,9,27,5,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,1200,-3,0,1348,-6,0,0 +2013,6,5,3,US,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-8,0,2149,-7,0,0 +2013,4,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1900,-4,0,2025,-11,0,0 +2013,5,6,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-8,0,734,-12,0,0 +2013,10,9,3,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1920,8,0,2105,-3,0,0 +2013,7,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1901,-1,0,2313,-16,0,0 +2013,7,21,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,745,-15,0,0 +2013,10,2,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1340,9,0,1500,0,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,600,-3,0,1420,-33,0,0 +2013,9,26,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,630,-2,0,750,-4,0,0 +2013,6,24,1,9E,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,2002,44,1,2353,26,1,0 +2013,9,11,3,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,1,0,1755,6,0,0 +2013,8,26,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1417,4,0,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,62,1,1034,74,1,0 +2013,4,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1500,-7,0,1824,-17,0,0 +2013,10,13,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1710,17,1,1835,10,0,0 +2013,5,1,3,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,943,-5,0,1127,-1,0,0 +2013,8,20,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-4,0,959,6,0,0 +2013,4,1,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1630,-4,0,1745,-11,0,0 +2013,7,31,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1835,-2,0,2352,-14,0,0 +2013,6,4,2,VX,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,855,-4,0,1025,-2,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2255,82,1,2355,77,1,0 +2013,10,5,6,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1410,2,0,1530,-14,0,0 +2013,8,14,3,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-6,0,1019,2,0,0 +2013,9,16,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1432,-1,0,1523,-6,0,0 +2013,8,10,6,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,740,24,1,1136,14,0,0 +2013,9,30,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,814,52,1,914,41,1,0 +2013,10,1,2,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1350,-4,0,1518,-17,0,0 +2013,6,9,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,935,6,0,1030,6,0,0 +2013,7,29,1,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1235,-6,0,1555,-9,0,0 +2013,7,18,4,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,1841,68,1,2007,55,1,0 +2013,5,14,2,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,-2,0,2300,-32,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,958,-4,0,1007,-8,0,0 +2013,4,14,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1407,-5,0,2250,-16,0,0 +2013,9,2,1,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2052,0,0,0 +2013,7,5,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1423,0,0,1650,-7,0,0 +2013,7,14,7,9E,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1348,-9,0,1604,-32,0,0 +2013,10,28,1,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1115,-2,0,1235,1,0,0 +2013,6,13,4,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,805,68,1,820,60,1,0 +2013,6,28,5,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1315,-7,0,1910,0,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15016,Lambert-St. Louis International,St. Louis,MO,1725,55,1,1835,44,1,0 +2013,5,7,2,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,-5,0,2140,-1,0,0 +2013,7,28,7,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1725,-1,0,2100,5,0,0 +2013,10,22,2,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2000,55,1,2248,78,1,0 +2013,5,27,1,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1610,13,0,1855,16,1,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,1440,0,0,1545,-1,0,0 +2013,9,11,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,4,0,2250,11,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1025,-2,0,1135,1,0,0 +2013,9,5,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1800,-6,0,2034,-6,0,0 +2013,7,3,3,9E,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1755,41,1,2003,49,1,0 +2013,6,2,7,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,900,8,0,1025,0,0,0 +2013,10,31,4,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1350,-3,0,1529,-20,0,0 +2013,8,21,3,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1200,23,1,1325,17,1,0 +2013,6,13,4,OO,12264,Washington Dulles International,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1217,-1,0,1318,1,0,0 +2013,6,9,7,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1435,0,0,1710,-22,0,0 +2013,8,1,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,845,-1,0,1100,-12,0,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1725,-1,0,1845,0,1,1 +2013,4,25,4,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,745,0,0,905,-6,0,0 +2013,10,31,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1530,26,1,1630,33,1,0 +2013,5,1,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-4,0,945,0,0,0 +2013,9,5,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1950,-6,0,2125,-3,0,0 +2013,6,27,4,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1644,13,0,1753,65,1,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,2100,3,0,2340,-24,0,0 +2013,8,3,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1725,28,1,2150,18,1,0 +2013,6,12,3,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,641,-3,0,940,-21,0,0 +2013,9,9,1,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1010,-4,0,1201,2,0,0 +2013,6,2,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13871,Eppley Airfield,Omaha,NE,816,-3,0,937,-3,0,0 +2013,8,12,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,159,1,2020,147,1,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1402,-7,0,1700,-13,0,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,900,100,1,1226,82,1,0 +2013,4,28,7,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,835,-1,0,1012,-1,0,0 +2013,9,8,7,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,849,-10,0,1010,-5,0,0 +2013,6,17,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1125,157,1,1251,189,1,0 +2013,9,8,7,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,835,-1,0,1211,-6,0,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1630,25,1,1745,34,1,0 +2013,4,17,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1800,-8,0,2055,-6,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,1,0,1125,4,0,0 +2013,10,29,2,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,85,1,2135,65,1,0 +2013,7,29,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,609,-3,0,848,-17,0,0 +2013,4,11,4,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1039,1,0,1344,14,0,0 +2013,9,25,3,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1700,77,1,1940,65,1,0 +2013,6,8,6,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1051,10,0,1510,-30,0,0 +2013,9,18,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,645,0,0,1514,-7,0,0 +2013,8,2,5,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-1,0,745,-2,0,0 +2013,5,24,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1009,-2,0,1235,-15,0,0 +2013,5,10,5,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1705,-6,0,1906,6,0,0 +2013,6,7,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1355,14,0,1420,14,0,0 +2013,7,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1010,-5,0,1212,-1,0,0 +2013,10,29,2,EV,12264,Washington Dulles International,Washington,DC,13495,Louis Armstrong New Orleans International,New Orleans,LA,927,-7,0,1112,-17,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2301,2,0,502,-6,0,0 +2013,4,8,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,635,1,0,755,2,0,0 +2013,6,11,2,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2142,-2,0,610,-13,0,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,855,8,0,1528,26,1,0 +2013,8,18,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1745,110,1,2030,137,1,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1940,-1,0,2220,-7,0,0 +2013,8,10,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,745,-14,0,0 +2013,8,12,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1555,6,0,1905,-4,0,0 +2013,6,13,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1750,254,1,2100,293,1,0 +2013,5,30,4,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,114,1,1819,138,1,0 +2013,10,22,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1804,10,0,2102,6,0,0 +2013,9,18,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1200,1,0,1255,-2,0,0 +2013,4,7,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-4,0,905,-7,0,0 +2013,10,29,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1404,-8,0,0 +2013,6,27,4,EV,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1740,0,,1850,0,1,1 +2013,4,19,5,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,1,0,1925,2,0,0 +2013,7,14,7,US,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-3,0,1741,8,0,0 +2013,9,13,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,740,-6,0,1029,-13,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,815,-7,0,937,-8,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1345,88,1,1700,60,1,0 +2013,4,2,2,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1946,-9,0,2023,-7,0,0 +2013,6,17,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-4,0,1634,4,0,0 +2013,7,18,4,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1450,1,0,1610,-2,0,0 +2013,5,21,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1615,7,0,1719,-8,0,0 +2013,5,7,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,-6,0,1625,-6,0,0 +2013,10,8,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1054,-2,0,1211,-19,0,0 +2013,4,18,4,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,30,1,1759,85,1,0 +2013,10,16,3,FL,13232,Chicago Midway International,Chicago,IL,13244,Memphis International,Memphis,TN,2105,8,0,2238,5,0,0 +2013,7,10,3,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-6,0,1535,17,1,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,840,-2,0,1719,-20,0,0 +2013,9,21,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1551,40,1,2022,29,1,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,950,-1,0,1005,-12,0,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1645,45,1,1729,46,1,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1615,1,0,1705,-7,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,1814,1,0,2038,10,0,0 +2013,5,9,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1250,-1,0,1415,-4,0,0 +2013,6,16,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-5,0,940,-15,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,2040,3,0,2255,7,0,0 +2013,9,29,7,9E,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2030,-12,0,2250,-20,0,0 +2013,9,15,7,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2035,10,0,2155,0,0,0 +2013,6,2,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-6,0,1211,19,1,0 +2013,8,3,6,WN,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-2,0,1535,-12,0,0 +2013,9,26,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2025,-6,0,2300,10,0,0 +2013,7,24,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1311,-14,0,1439,-29,0,0 +2013,5,22,3,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1535,-4,0,1645,-10,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,950,3,0,1109,20,1,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,735,-4,0,1010,6,0,0 +2013,6,4,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-6,0,1411,-14,0,0 +2013,8,22,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1244,-9,0,1432,-15,0,0 +2013,7,11,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,2210,12,0,55,10,0,0 +2013,8,1,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,-1,0,1130,1,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1630,-1,0,2310,-15,0,0 +2013,8,10,6,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,700,-4,0,920,-1,0,0 +2013,8,31,6,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1050,1,0,1155,-15,0,0 +2013,9,25,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-3,0,1400,-8,0,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,608,-4,0,900,-27,0,0 +2013,7,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1235,4,0,1615,-6,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,2020,-2,0,2214,-15,0,0 +2013,6,3,1,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-10,0,1622,-21,0,0 +2013,10,15,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1551,-4,0,1708,-15,0,0 +2013,6,4,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1840,-1,0,2335,-16,0,0 +2013,5,22,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1551,-7,0,1749,-18,0,0 +2013,8,21,3,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,641,0,0,807,1,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1415,-3,0,1535,-19,0,0 +2013,10,26,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,635,-3,0,751,-5,0,0 +2013,10,9,3,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,926,-4,0,1159,2,0,0 +2013,10,29,2,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1015,-7,0,1120,6,0,0 +2013,10,10,4,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1530,58,1,1805,59,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2202,-3,0,2345,-20,0,0 +2013,9,22,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1855,-3,0,2100,-16,0,0 +2013,8,18,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1620,-3,0,2000,-12,0,0 +2013,4,2,2,FL,11066,Port Columbus International,Columbus,OH,14635,Southwest Florida International,Fort Myers,FL,1535,-5,0,1757,-3,0,0 +2013,5,8,3,WN,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1915,56,1,2250,65,1,0 +2013,7,23,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1750,48,1,1955,43,1,0 +2013,8,13,2,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1300,-2,0,1355,-5,0,0 +2013,10,17,4,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2305,16,1,505,-1,0,0 +2013,5,18,6,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1100,-9,0,1222,5,0,0 +2013,6,20,4,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,14771,San Francisco International,San Francisco,CA,700,-3,0,951,-18,0,0 +2013,10,16,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1045,3,0,1210,4,0,0 +2013,6,2,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,927,180,1,1203,172,1,0 +2013,4,3,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1115,-1,0,1235,-12,0,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1845,31,1,2120,14,0,0 +2013,5,16,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1010,-2,0,1320,-6,0,0 +2013,8,30,5,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1205,-2,0,1325,-7,0,0 +2013,4,20,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13232,Chicago Midway International,Chicago,IL,1430,6,0,1810,-3,0,0 +2013,7,28,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1750,-3,0,1945,6,0,0 +2013,10,16,3,AS,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1100,17,1,1205,20,1,0 +2013,5,7,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1150,-3,0,1750,3,0,0 +2013,7,19,5,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,810,-5,0,1020,-7,0,0 +2013,5,10,5,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,9,0,1128,18,1,0 +2013,9,20,5,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1944,97,1,2051,83,1,0 +2013,4,27,6,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,1340,1,0,1520,2,0,0 +2013,4,30,2,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1339,-7,0,1552,-12,0,0 +2013,9,17,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1205,-5,0,1350,-1,0,0 +2013,6,14,5,AA,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,-7,0,715,-5,0,0 +2013,8,15,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,930,8,0,1155,5,0,0 +2013,7,21,7,EV,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,20,1,1010,14,0,0 +2013,9,8,7,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,735,-7,0,1605,-13,0,0 +2013,9,21,6,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,-7,0,945,1,0,0 +2013,8,12,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,115,-5,0,615,-22,0,0 +2013,7,10,3,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,2,0,648,-5,0,0 +2013,7,27,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-3,0,1050,2,0,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,830,-2,0,935,-13,0,0 +2013,5,10,5,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1003,16,1,1248,14,0,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1121,63,1,1232,44,1,0 +2013,6,21,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,900,-1,0,1020,-14,0,0 +2013,6,4,2,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1135,-9,0,1546,-14,0,0 +2013,7,19,5,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,545,-8,0,739,-12,0,0 +2013,6,16,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-9,0,1955,-7,0,0 +2013,7,12,5,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,520,1,0,845,15,1,0 +2013,7,30,2,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1640,3,0,1900,-12,0,0 +2013,9,23,1,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1210,44,1,1921,61,1,0 +2013,10,23,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,923,-10,0,0 +2013,7,26,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,1602,1,0,1700,5,0,0 +2013,5,1,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,857,3,0,1113,-18,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1155,-1,0,1320,-3,0,0 +2013,7,3,3,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,-8,0,1415,0,0,0 +2013,6,30,7,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2242,20,1,705,30,1,0 +2013,6,26,3,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,950,1,0,1100,-6,0,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1705,31,1,2100,23,1,0 +2013,6,10,1,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1000,5,0,1145,-9,0,0 +2013,7,18,4,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,1355,-5,0,2114,0,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2000,-4,0,2057,-13,0,0 +2013,9,20,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,650,0,0,710,0,0,0 +2013,6,21,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1033,-3,0,1212,-13,0,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1555,-3,0,1910,-10,0,0 +2013,6,19,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,857,-1,0,1020,-18,0,0 +2013,6,17,1,UA,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1545,6,0,1735,-1,0,0 +2013,10,6,7,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,834,-5,0,923,-12,0,0 +2013,7,12,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13930,Chicago O'Hare International,Chicago,IL,745,-5,0,1145,-5,0,0 +2013,4,5,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,2055,55,1,2323,44,1,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2050,17,1,2205,10,0,0 +2013,8,2,5,F9,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1940,3,0,2259,-8,0,0 +2013,7,11,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,1,0,1847,0,0,0 +2013,9,26,4,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1730,27,1,1935,21,1,0 +2013,10,23,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1525,16,1,1650,11,0,0 +2013,9,19,4,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1550,29,1,1640,28,1,0 +2013,6,19,3,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1420,5,0,1545,-1,0,0 +2013,5,2,4,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,19,1,1702,102,1,0 +2013,9,10,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1240,17,1,1525,-2,0,0 +2013,8,7,3,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-8,0,1720,-22,0,0 +2013,6,26,3,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,0,0,1620,6,0,0 +2013,8,12,1,B6,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,637,-8,0,912,-14,0,0 +2013,4,14,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1650,-6,0,1804,-4,0,0 +2013,5,12,7,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1710,-4,0,1951,18,1,0 +2013,4,8,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1615,8,0,1750,-2,0,0 +2013,5,9,4,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,1,0,1915,1,0,0 +2013,7,15,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1705,37,1,1922,19,1,0 +2013,5,9,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2155,26,1,2250,24,1,0 +2013,6,6,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1140,0,0,1419,-1,0,0 +2013,4,11,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,745,26,1,915,102,1,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,1615,30,1,1814,16,1,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,3,0,1933,-10,0,0 +2013,4,26,5,VX,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,945,-7,0,1800,-12,0,0 +2013,9,6,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2012,-9,0,2215,-11,0,0 +2013,5,9,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,935,-3,0,1023,-7,0,0 +2013,10,3,4,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,-1,0,2054,-13,0,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1015,0,0,1135,-8,0,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,835,-5,0,1113,-11,0,0 +2013,8,5,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,14,0,2156,6,0,0 +2013,5,24,5,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,72,1,2245,65,1,0 +2013,9,27,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,810,2,0,955,-14,0,0 +2013,9,11,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1743,99,1,1933,81,1,0 +2013,4,15,1,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1525,50,1,1650,79,1,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1959,-4,0,2118,-1,0,0 +2013,9,2,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-3,0,1912,1,0,0 +2013,7,16,2,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1409,37,1,1645,65,1,0 +2013,9,2,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1243,-3,0,1408,-12,0,0 +2013,4,23,2,WN,14570,Reno/Tahoe International,Reno,NV,13796,Metropolitan Oakland International,Oakland,CA,850,22,1,950,8,0,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,909,-6,0,1044,-10,0,0 +2013,10,24,4,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1240,0,0,1315,-1,0,0 +2013,9,14,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,903,-4,0,1023,-20,0,0 +2013,5,13,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1540,1,0,1820,-4,0,0 +2013,4,19,5,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1650,47,1,1800,39,1,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,3,0,2055,-15,0,0 +2013,7,2,2,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2210,1,0,630,11,0,0 +2013,5,9,4,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1300,-1,0,1440,8,0,0 +2013,4,11,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,630,0,0,830,16,1,0 +2013,6,5,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-5,0,805,-9,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,855,43,1,1250,33,1,0 +2013,8,22,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,845,-2,0,1116,-27,0,0 +2013,8,21,3,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1320,4,0,1520,-18,0,0 +2013,6,12,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-8,0,1300,-18,0,0 +2013,10,27,7,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,10,0,1310,9,0,0 +2013,9,3,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,705,-5,0,830,-15,0,0 +2013,7,14,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1600,3,0,1705,-10,0,0 +2013,5,21,2,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,8,0,1810,70,1,0 +2013,8,9,5,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,449,17,1,744,-2,0,0 +2013,4,20,6,EV,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1604,30,1,1705,20,1,0 +2013,9,18,3,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1900,1,0,1945,-3,0,0 +2013,10,24,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2317,23,1,701,18,1,0 +2013,10,24,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,650,-2,0,820,4,0,0 +2013,6,6,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1030,36,1,1406,8,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,2015,-4,0,2120,-5,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2200,44,1,2250,50,1,0 +2013,8,15,4,WN,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,11,0,1815,-3,0,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,23,1,1615,18,1,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1035,5,0,1154,-5,0,0 +2013,10,11,5,9E,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2018,75,1,2144,50,1,0 +2013,9,11,3,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1646,7,0,1833,-1,0,0 +2013,8,17,6,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,905,9,0,1125,3,0,0 +2013,5,24,5,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,3,0,1825,-5,0,0 +2013,5,23,4,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1900,-1,0,2251,18,1,0 +2013,5,10,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14492,Raleigh-Durham International,Raleigh/Durham,NC,710,-4,0,1048,-17,0,0 +2013,10,24,4,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,748,-6,0,1044,6,0,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,2205,-5,0,2305,-6,0,0 +2013,4,13,6,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1655,-8,0,1915,-31,0,0 +2013,10,6,7,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1350,7,0,1830,-1,0,0 +2013,6,6,4,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1452,55,1,1619,61,1,0 +2013,8,22,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,930,20,1,1120,8,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1545,4,0,1650,-2,0,0 +2013,7,21,7,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,44,1,1245,32,1,0 +2013,9,10,2,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-4,0,1749,-8,0,0 +2013,6,8,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1936,8,0,2308,-15,0,0 +2013,4,29,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,1715,-5,0,1855,-23,0,0 +2013,8,26,1,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,3,0,1907,-10,0,0 +2013,9,13,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,838,-4,0,936,2,0,0 +2013,5,25,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1940,-11,0,2105,-13,0,0 +2013,4,7,7,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1935,-6,0,2045,-16,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,13891,Ontario International,Ontario,CA,1800,-1,0,2005,-6,0,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,808,-10,0,929,-22,0,0 +2013,7,30,2,WN,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1200,1,0,1305,4,0,0 +2013,6,8,6,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-2,0,1030,-19,0,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1247,-2,0,1444,-6,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1758,-5,0,2025,11,0,0 +2013,4,5,5,WN,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1300,11,0,1510,2,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,1,0,2245,-15,0,0 +2013,7,20,6,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,-3,0,913,-10,0,0 +2013,8,5,1,US,12173,Honolulu International,Honolulu,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2250,0,0,742,-13,0,0 +2013,8,8,4,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,810,11,0,1020,47,1,0 +2013,8,16,5,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1133,-8,0,1300,-29,0,0 +2013,5,9,4,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1829,0,0,2032,-3,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1119,-4,0,1254,-13,0,0 +2013,6,8,6,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1630,-3,0,1735,-2,0,0 +2013,4,26,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1610,-4,0,1720,-16,0,0 +2013,9,22,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,659,8,0,946,-18,0,0 +2013,5,3,5,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1805,1,0,1954,-3,0,0 +2013,10,9,3,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1325,-2,0,1605,-17,0,0 +2013,10,4,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,925,-2,0,1150,-19,0,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2110,6,0,2225,1,0,0 +2013,8,31,6,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-1,0,855,-9,0,0 +2013,10,12,6,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1128,-3,0,1232,-2,0,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,945,1,0,1040,-26,0,0 +2013,9,23,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1845,2,0,1910,3,0,0 +2013,7,14,7,WN,10693,Nashville International,Nashville,TN,14107,Phoenix Sky Harbor International,Phoenix,AZ,920,0,0,1050,-13,0,0 +2013,8,15,4,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1425,7,0,1545,-2,0,0 +2013,7,10,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-7,0,1128,-12,0,0 +2013,10,10,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,2045,1,0,2140,-2,0,0 +2013,9,10,2,WN,14100,Philadelphia International,Philadelphia,PA,15016,Lambert-St. Louis International,St. Louis,MO,805,2,0,935,-18,0,0 +2013,5,29,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14100,Philadelphia International,Philadelphia,PA,802,-2,0,900,-21,0,0 +2013,10,3,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,800,-8,0,933,-22,0,0 +2013,10,20,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,705,-1,0,810,-13,0,0 +2013,8,25,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,26,1,1349,25,1,0 +2013,8,6,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,187,1,1915,179,1,0 +2013,9,24,2,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,655,-1,0,830,-3,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1950,17,1,2128,17,1,0 +2013,5,20,1,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1945,11,0,2017,16,1,0 +2013,9,16,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1015,-8,0,1133,-11,0,0 +2013,6,2,7,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-1,0,730,-7,0,0 +2013,7,9,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1113,19,1,1700,16,1,0 +2013,10,23,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,-2,0,1529,-9,0,0 +2013,9,18,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,18,1,1746,16,1,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,600,-10,0,758,-26,0,0 +2013,10,20,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2050,1,0,2200,-13,0,0 +2013,7,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1645,43,1,1809,49,1,0 +2013,8,6,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,-6,0,2127,-22,0,0 +2013,8,26,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1100,13,0,1315,-7,0,0 +2013,10,4,5,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1135,7,0,1905,-2,0,0 +2013,10,21,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-7,0,1800,-8,0,0 +2013,10,13,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1850,-5,0,2130,-14,0,0 +2013,6,21,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,-6,0,1820,2,0,0 +2013,6,9,7,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2025,12,0,2150,15,1,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1820,-2,0,2220,-8,0,0 +2013,4,13,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-6,0,940,-15,0,0 +2013,7,30,2,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1316,-7,0,1420,-5,0,0 +2013,8,28,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1725,0,0,2200,17,1,0 +2013,10,1,2,DL,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,630,-3,0,749,-18,0,0 +2013,9,4,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,815,-7,0,852,-7,0,0 +2013,10,16,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,917,-7,0,1716,-38,0,0 +2013,10,4,5,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1801,-11,0,2110,-10,0,0 +2013,9,8,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1650,-2,0,1902,-13,0,0 +2013,8,16,5,DL,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1705,1,0,2004,-25,0,0 +2013,8,14,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,835,-5,0,1025,-29,0,0 +2013,10,25,5,B6,10721,Logan International,Boston,MA,12954,Long Beach Airport,Long Beach,CA,1719,10,0,2034,5,0,0 +2013,7,29,1,OO,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,915,42,1,1208,44,1,0 +2013,7,18,4,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,1540,14,0,1635,0,0,0 +2013,9,12,4,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1855,30,1,2000,35,1,0 +2013,4,2,2,9E,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1011,0,0,1315,-12,0,0 +2013,5,12,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-7,0,1805,-7,0,0 +2013,4,3,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1110,30,1,1255,26,1,0 +2013,8,12,1,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,60,1,1905,54,1,0 +2013,5,25,6,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,-4,0,1757,-10,0,0 +2013,9,6,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,1230,4,0,1410,5,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,905,19,1,1348,-7,0,0 +2013,10,9,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1922,-7,0,2109,-3,0,0 +2013,10,14,1,AA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,57,1,1015,46,1,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2100,-2,0,2300,-24,0,0 +2013,6,17,1,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,41,1,1952,89,1,0 +2013,9,21,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,1600,123,1,1725,119,1,0 +2013,5,28,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,641,7,0,738,3,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1410,-3,0,1624,-11,0,0 +2013,4,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1310,-6,0,1422,-9,0,0 +2013,6,27,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-4,0,1030,-31,0,0 +2013,9,6,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,759,-4,0,934,-27,0,0 +2013,7,3,3,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1448,51,1,1717,55,1,0 +2013,8,11,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-1,0,1020,-10,0,0 +2013,5,9,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-1,0,1830,0,0,0 +2013,7,21,7,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,200,1,1942,207,1,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,15,1,1711,17,1,0 +2013,4,10,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1905,79,1,2030,78,1,0 +2013,9,29,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1946,-1,0,2113,3,0,0 +2013,5,24,5,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,2220,0,0,615,-3,0,0 +2013,5,28,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,605,-5,0,815,-2,0,0 +2013,10,26,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1710,-2,0,1840,-38,0,0 +2013,8,23,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,733,-11,0,854,-18,0,0 +2013,5,26,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,-5,0,1050,-21,0,0 +2013,4,19,5,UA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1835,0,,2205,0,1,1 +2013,5,15,3,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,630,-8,0,930,-18,0,0 +2013,10,31,4,DL,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1402,0,0,1655,-7,0,0 +2013,10,5,6,WN,14635,Southwest Florida International,Fort Myers,FL,15016,Lambert-St. Louis International,St. Louis,MO,1145,1,0,1315,0,0,0 +2013,7,17,3,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,900,-6,0,1428,-2,0,0 +2013,5,15,3,OO,10800,Bob Hope,Burbank,CA,14057,Portland International,Portland,OR,945,-4,0,1157,0,0,0 +2013,5,19,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-6,0,1000,10,0,0 +2013,5,29,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1510,-3,0,1730,-19,0,0 +2013,5,20,1,DL,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,645,-3,0,755,-12,0,0 +2013,5,21,2,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1533,-3,0,1830,3,0,0 +2013,8,5,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1735,19,1,1914,12,0,0 +2013,8,5,1,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,0,0,2047,3,0,0 +2013,5,10,5,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,910,1,0,955,-7,0,0 +2013,4,19,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,940,-3,0,1035,-6,0,0 +2013,9,24,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,725,-3,0,828,-15,0,0 +2013,10,30,3,FL,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1210,-7,0,1255,0,0,0 +2013,6,18,2,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,2039,-6,0,2159,-19,0,0 +2013,5,14,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1614,-4,0,1821,9,0,0 +2013,10,19,6,YV,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,1205,180,1,1341,186,1,0 +2013,9,12,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1205,34,1,1335,29,1,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1105,8,0,1430,11,0,0 +2013,10,2,3,DL,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1210,-4,0,1427,-12,0,0 +2013,4,5,5,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1935,-10,0,2111,-14,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2156,-6,0,2221,-17,0,0 +2013,7,5,5,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,-3,0,1759,-7,0,0 +2013,8,14,3,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1350,16,1,1715,7,0,0 +2013,10,13,7,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,2145,-2,0,140,-5,0,0 +2013,5,4,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1055,0,,1229,0,1,1 +2013,8,26,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,-9,0,1050,-22,0,0 +2013,5,28,2,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,2015,-4,0,2139,-23,0,0 +2013,8,22,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1850,-2,0,2220,-7,0,0 +2013,6,17,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,7,0,1202,-3,0,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1440,-3,0,1704,-15,0,0 +2013,7,11,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1245,22,1,1537,37,1,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,172,1,2327,168,1,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2214,2,0,2340,5,0,0 +2013,5,5,7,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,620,-8,0,1215,-7,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1939,82,1,2140,98,1,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1525,-5,0,2304,5,0,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1735,28,1,45,18,1,0 +2013,8,26,1,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,1,0,1125,3,0,0 +2013,5,21,2,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,800,7,0,1003,-12,0,0 +2013,4,17,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1825,0,,1927,0,1,1 +2013,4,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,945,-3,0,1215,4,0,0 +2013,6,10,1,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2346,26,1,501,11,0,0 +2013,8,19,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1955,-3,0,2225,4,0,0 +2013,8,16,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,3,0,2057,10,0,0 +2013,7,20,6,AA,12339,Indianapolis International,Indianapolis,IN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1705,36,1,1825,20,1,0 +2013,4,10,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1719,30,1,1949,24,1,0 +2013,5,6,1,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2015,30,1,2308,23,1,0 +2013,6,15,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-3,0,701,-12,0,0 +2013,8,25,7,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1050,-7,0,1329,-7,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1055,2,0,1540,-10,0,0 +2013,10,13,7,DL,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1830,7,0,2051,13,0,0 +2013,7,7,7,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1812,123,1,2147,130,1,0 +2013,8,26,1,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1608,1,0,1757,-11,0,0 +2013,8,24,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1750,20,1,1925,2,0,0 +2013,8,28,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1609,75,1,1758,81,1,0 +2013,6,30,7,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-4,0,1250,10,0,0 +2013,8,4,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,-3,0,1155,-8,0,0 +2013,5,4,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12451,Jacksonville International,Jacksonville,FL,1550,-1,0,1710,-13,0,0 +2013,7,26,5,DL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,800,-1,0,1027,-2,0,0 +2013,6,28,5,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1659,233,1,1946,248,1,0 +2013,4,5,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2155,10,0,2230,2,0,0 +2013,4,8,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1935,26,1,2030,27,1,0 +2013,5,12,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1945,7,0,55,35,1,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1140,4,0,1245,2,0,0 +2013,9,26,4,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1803,-2,0,2044,-27,0,0 +2013,7,21,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1821,5,0,2122,57,1,0 +2013,10,12,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1247,-4,0,1640,-3,0,0 +2013,5,21,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1600,7,0,1615,12,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2125,34,1,2235,41,1,0 +2013,9,18,3,OO,11292,Denver International,Denver,CO,13244,Memphis International,Memphis,TN,959,-3,0,1318,-3,0,0 +2013,10,10,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,-4,0,916,-16,0,0 +2013,8,14,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2040,48,1,2145,41,1,0 +2013,7,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1201,-2,0,1355,-8,0,0 +2013,5,28,2,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1735,-6,0,2035,0,0,0 +2013,9,16,1,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2025,7,0,2310,-4,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1020,22,1,1315,14,0,0 +2013,10,12,6,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,3,0,1001,-16,0,0 +2013,5,8,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1020,-3,0,1109,-11,0,0 +2013,10,29,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-5,0,1633,-13,0,0 +2013,5,4,6,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1208,-7,0,1502,-35,0,0 +2013,4,26,5,US,15304,Tampa International,Tampa,FL,11278,Ronald Reagan Washington National,Washington,DC,1425,2,0,1640,36,1,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1625,-3,0,1638,-2,0,0 +2013,7,11,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1809,20,1,2020,9,0,0 +2013,9,30,1,US,12889,McCarran International,Las Vegas,NV,11057,Charlotte Douglas International,Charlotte,NC,925,-3,0,1643,-15,0,0 +2013,6,16,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-3,0,1427,-3,0,0 +2013,7,19,5,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,-3,0,1700,-8,0,0 +2013,5,2,4,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1310,-4,0,1510,-18,0,0 +2013,5,29,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,1114,3,0,0 +2013,8,8,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,-6,0,1028,-14,0,0 +2013,5,17,5,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,710,4,0,915,-14,0,0 +2013,7,26,5,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,625,-10,0,820,2,0,0 +2013,5,8,3,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1140,-1,0,1650,-3,0,0 +2013,8,25,7,UA,11618,Newark Liberty International,Newark,NJ,14057,Portland International,Portland,OR,1925,-4,0,2242,-15,0,0 +2013,7,19,5,DL,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-2,0,1802,7,0,0 +2013,6,12,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1740,-2,0,1829,-13,0,0 +2013,7,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,51,1,1830,29,1,0 +2013,7,24,3,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1509,-6,0,1610,-18,0,0 +2013,4,18,4,UA,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2053,15,1,2359,3,0,0 +2013,10,8,2,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-3,0,1335,8,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1925,-1,0,2140,4,0,0 +2013,7,30,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,830,-3,0,850,-7,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,-6,0,1101,-20,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,2020,48,1,2245,27,1,0 +2013,4,7,7,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,935,0,0,1010,-11,0,0 +2013,5,30,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1625,101,1,1645,99,1,0 +2013,5,26,7,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1230,-9,0,2102,-35,0,0 +2013,8,20,2,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1905,-11,0,2015,-15,0,0 +2013,10,3,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1010,2,0,1444,-17,0,0 +2013,5,18,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,0,0,1203,-13,0,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,820,-1,0,930,-4,0,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1007,-2,0,1157,-19,0,0 +2013,8,26,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-7,0,641,-8,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1535,25,1,1620,17,1,0 +2013,9,1,7,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2105,32,1,2345,21,1,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,650,-2,0,813,-5,0,0 +2013,5,13,1,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,724,0,0,931,-54,0,0 +2013,8,3,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14100,Philadelphia International,Philadelphia,PA,1342,-4,0,1715,-23,0,0 +2013,4,18,4,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,630,-4,0,756,-12,0,0 +2013,9,10,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,923,-4,0,1040,-8,0,0 +2013,10,21,1,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,909,-22,0,0 +2013,7,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,-3,0,2055,-5,0,0 +2013,4,16,2,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1245,-5,0,1445,-15,0,0 +2013,6,8,6,UA,14122,Pittsburgh International,Pittsburgh,PA,14771,San Francisco International,San Francisco,CA,600,-5,0,821,-17,0,0 +2013,6,20,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2105,-2,0,2200,-3,0,0 +2013,9,21,6,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,1845,44,1,1950,40,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1500,9,0,1703,-2,0,0 +2013,7,18,4,EV,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1848,-10,0,2049,-36,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14843,Luis Munoz Marin International,San Juan,PR,840,-4,0,1240,22,1,0 +2013,10,30,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1128,0,0,1359,-8,0,0 +2013,6,9,7,OO,10693,Nashville International,Nashville,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1040,-5,0,1249,7,0,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1705,1,0,2045,79,1,0 +2013,10,31,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,-6,0,1915,-11,0,0 +2013,5,1,3,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,625,-5,0,755,-17,0,0 +2013,9,24,2,DL,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,625,-2,0,920,-6,0,0 +2013,7,2,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,5,2,0,505,0,0,0 +2013,10,14,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,750,-1,0,920,1,0,0 +2013,4,21,7,OO,15376,Tucson International,Tucson,AZ,14771,San Francisco International,San Francisco,CA,1313,43,1,1540,48,1,0 +2013,5,11,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,650,-4,0,911,-49,0,0 +2013,5,5,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1520,41,1,1628,33,1,0 +2013,10,6,7,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,848,-5,0,1052,-9,0,0 +2013,9,30,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,840,-1,0,1638,-8,0,0 +2013,7,31,3,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-2,0,635,-13,0,0 +2013,6,5,3,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,1010,-5,0,1245,-8,0,0 +2013,5,6,1,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,-6,0,1907,2,0,0 +2013,6,21,5,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1420,10,0,1600,9,0,0 +2013,10,21,1,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1832,10,0,2056,-7,0,0 +2013,7,27,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,850,-1,0,1055,-4,0,0 +2013,7,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,630,-3,0,745,-16,0,0 +2013,10,24,4,YV,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,920,0,0,1209,-3,0,0 +2013,6,29,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,64,1,810,45,1,0 +2013,7,16,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1950,-5,0,2215,-1,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1750,-2,0,1916,-11,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1345,25,1,1655,12,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2020,61,1,2359,48,1,0 +2013,8,24,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-4,0,844,1,0,0 +2013,5,19,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1445,-2,0,1610,-8,0,0 +2013,5,30,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,10,0,1350,-16,0,0 +2013,8,30,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-5,0,1333,-1,0,0 +2013,6,11,2,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,930,7,0,1745,-3,0,0 +2013,8,25,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1545,7,0,1710,1,0,0 +2013,8,13,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,730,-1,0,835,-6,0,0 +2013,6,16,7,EV,13244,Memphis International,Memphis,TN,11278,Ronald Reagan Washington National,Washington,DC,1354,9,0,1708,-12,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1514,-1,0,1635,-13,0,0 +2013,9,24,2,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1205,3,0,1400,2,0,0 +2013,8,18,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,855,-3,0,1015,-20,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2208,7,0,619,-1,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1945,170,1,2221,154,1,0 +2013,5,21,2,UA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1024,-5,0,1213,-27,0,0 +2013,10,10,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,920,11,0,1125,6,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1300,5,0,1405,0,0,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,1405,3,0,1625,14,0,0 +2013,6,5,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1830,-2,0,2110,-3,0,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,900,0,0,1010,-7,0,0 +2013,4,18,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,630,14,0,816,38,1,0 +2013,9,6,5,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,1740,8,0,1900,5,0,0 +2013,10,23,3,AA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,830,-7,0,1655,-16,0,0 +2013,9,7,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1653,-10,0,1705,-10,0,0 +2013,5,15,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1630,-3,0,1904,-6,0,0 +2013,8,6,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,905,7,0,1140,-12,0,0 +2013,10,6,7,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,545,-8,0,801,2,0,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,-4,0,1253,-14,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,15,1,1623,16,1,0 +2013,7,31,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-7,0,1152,-23,0,0 +2013,6,23,7,WN,13198,Kansas City International,Kansas City,MO,13342,General Mitchell International,Milwaukee,WI,820,-2,0,940,-2,0,0 +2013,4,25,4,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,1450,-8,0,1538,-2,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1905,20,1,2135,5,0,0 +2013,10,12,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1725,-4,0,2001,-21,0,0 +2013,8,22,4,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2155,48,1,2245,39,1,0 +2013,5,30,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,843,10,0,1215,1,0,0 +2013,10,16,3,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,940,-6,0,1025,-14,0,0 +2013,10,11,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-4,0,940,14,0,0 +2013,7,9,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1541,-4,0,1835,-16,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-3,0,940,-16,0,0 +2013,6,24,1,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,640,0,0,904,11,0,0 +2013,8,21,3,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,1339,-8,0,1625,-2,0,0 +2013,9,22,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,1,0,1030,10,0,0 +2013,8,19,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1904,-8,0,2008,-17,0,0 +2013,7,22,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,15,1,1937,-5,0,0 +2013,8,21,3,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1942,-3,0,2155,-8,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1630,31,1,2355,13,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,845,1,0,950,-11,0,0 +2013,8,24,6,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-11,0,820,-19,0,0 +2013,8,8,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1823,31,1,2112,21,1,0 +2013,7,31,3,UA,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-5,0,1932,-14,0,0 +2013,4,29,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1903,-1,0,1925,-8,0,0 +2013,7,17,3,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1022,1,0,1547,12,0,0 +2013,9,17,2,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1308,-7,0,1605,-11,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1445,9,0,1600,8,0,0 +2013,5,27,1,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1750,15,1,2045,30,1,0 +2013,4,8,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,-1,0,1925,-3,0,0 +2013,10,12,6,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1224,7,0,1512,8,0,0 +2013,8,13,2,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1445,44,1,1846,80,1,0 +2013,6,22,6,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1825,49,1,2015,41,1,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2200,125,1,2306,112,1,0 +2013,7,24,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,600,12,0,725,3,0,0 +2013,6,8,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1340,-3,0,1612,-3,0,0 +2013,10,7,1,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1406,-8,0,1504,-16,0,0 +2013,4,12,5,OO,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1025,-2,0,1309,-3,0,0 +2013,10,19,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1125,6,0,1450,-2,0,0 +2013,10,29,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1913,-15,0,1932,-13,0,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1210,-1,0,1357,-11,0,0 +2013,6,8,6,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,930,-8,0,1114,-10,0,0 +2013,4,17,3,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1757,0,,2020,0,1,1 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,630,0,0,740,-9,0,0 +2013,10,21,1,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1810,-1,0,1840,-11,0,0 +2013,7,18,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,67,1,1935,60,1,0 +2013,5,20,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1215,-3,0,1355,-3,0,0 +2013,5,24,5,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2017,-3,0,2118,-6,0,0 +2013,8,10,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1220,-3,0,1756,-6,0,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,15016,Lambert-St. Louis International,St. Louis,MO,1325,12,0,1510,7,0,0 +2013,9,11,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1117,29,1,1250,19,1,0 +2013,7,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,-2,0,1200,-3,0,0 +2013,10,3,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1225,24,1,1715,16,1,0 +2013,4,12,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1615,-4,0,1745,-18,0,0 +2013,6,2,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1700,2,0,1756,116,1,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1442,-6,0,1641,-17,0,0 +2013,6,27,4,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,82,1,1555,55,1,0 +2013,8,4,7,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,757,0,0,852,3,0,0 +2013,9,15,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,1610,2,0,1930,-2,0,0 +2013,5,11,6,DL,12173,Honolulu International,Honolulu,HI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1610,-6,0,705,-14,0,0 +2013,6,30,7,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1904,86,1,2055,46,1,0 +2013,7,15,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,1511,49,1,1600,44,1,0 +2013,5,5,7,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1310,-7,0,2111,-2,0,0 +2013,6,21,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1820,-4,0,2012,-19,0,0 +2013,4,5,5,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2100,3,0,2215,-8,0,0 +2013,4,29,1,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1355,0,0,1504,-5,0,0 +2013,7,6,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,822,1,0,0 +2013,8,6,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,18,1,1940,14,0,0 +2013,7,30,2,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,26,1,2050,17,1,0 +2013,10,6,7,B6,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2010,-1,0,2239,-9,0,0 +2013,8,9,5,US,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,-3,0,1541,-5,0,0 +2013,9,14,6,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,955,-4,0,1240,-8,0,0 +2013,9,8,7,WN,14683,San Antonio International,San Antonio,TX,15304,Tampa International,Tampa,FL,1310,9,0,1640,-6,0,0 +2013,7,16,2,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1344,17,1,1601,54,1,0 +2013,9,9,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,840,0,0,1245,5,0,0 +2013,10,15,2,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-4,0,809,-5,0,0 +2013,8,8,4,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,10,0,1737,2,0,0 +2013,9,17,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,1758,0,0,2003,5,0,0 +2013,8,3,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,930,-2,0,1055,-4,0,0 +2013,10,3,4,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1825,-3,0,2040,11,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,854,2,0,1024,4,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2000,2,0,2100,-5,0,0 +2013,4,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1129,-3,0,1302,-6,0,0 +2013,6,24,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1629,-3,0,1910,0,0,0 +2013,7,7,7,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,-3,0,1005,-9,0,0 +2013,7,26,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,900,0,0,950,-14,0,0 +2013,6,18,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,83,1,2137,79,1,0 +2013,10,30,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14771,San Francisco International,San Francisco,CA,700,-6,0,958,15,1,0 +2013,6,8,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1710,37,1,1835,29,1,0 +2013,7,22,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1105,-6,0,1232,-10,0,0 +2013,5,16,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-10,0,805,-15,0,0 +2013,10,5,6,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,645,99,1,901,98,1,0 +2013,4,1,1,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,-4,0,1355,-9,0,0 +2013,9,18,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1500,2,0,1615,11,0,0 +2013,6,30,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,955,0,0,1234,46,1,0 +2013,8,9,5,WN,11292,Denver International,Denver,CO,13232,Chicago Midway International,Chicago,IL,2125,-1,0,35,-19,0,0 +2013,5,23,4,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,1,0,926,-2,0,0 +2013,5,4,6,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1450,2,0,1858,-12,0,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1649,6,0,1819,5,0,0 +2013,6,13,4,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1030,3,0,1400,-8,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1500,11,0,1600,2,0,0 +2013,7,6,6,OO,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,1,0,2107,-5,0,0 +2013,8,24,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,-3,0,1253,-4,0,0 +2013,4,12,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-2,0,913,5,0,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1421,13,0,1550,-6,0,0 +2013,8,3,6,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,1750,21,1,2100,13,0,0 +2013,8,15,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1115,-5,0,1204,-10,0,0 +2013,4,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2215,38,1,2320,12,0,0 +2013,4,12,5,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1130,8,0,1950,-1,0,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1130,-2,0,1345,6,0,0 +2013,4,13,6,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1050,-3,0,1215,-6,0,0 +2013,9,10,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,910,-1,0,1130,-15,0,0 +2013,10,6,7,VX,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,910,-4,0,1730,-6,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,730,-3,0,840,0,0,0 +2013,5,16,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-5,0,846,-8,0,0 +2013,4,18,4,EV,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1248,117,1,1523,118,1,0 +2013,7,24,3,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-3,0,1904,6,0,0 +2013,7,28,7,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1730,-1,0,2050,-7,0,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1030,-2,0,1350,-13,0,0 +2013,9,12,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-5,0,1555,-18,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1640,-2,0,1800,-6,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,15,1,2242,1,0,0 +2013,7,7,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,58,1,2134,100,1,0 +2013,9,2,1,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1425,20,1,1533,12,0,0 +2013,8,15,4,FL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1416,-1,0,1512,1,0,0 +2013,8,10,6,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,1,0,1115,1,0,0 +2013,7,26,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1750,30,1,1911,17,1,0 +2013,6,2,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1659,-4,0,2310,11,0,0 +2013,8,24,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1030,-1,0,1125,5,0,0 +2013,6,11,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1810,4,0,1958,-11,0,0 +2013,10,30,3,EV,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1353,15,1,1648,-6,0,0 +2013,10,22,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1720,15,1,2005,-6,0,0 +2013,6,28,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1235,16,1,1830,7,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1645,35,1,1815,0,1,1 +2013,5,15,3,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-1,0,1622,-18,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,2120,2,0,2225,-14,0,0 +2013,10,2,3,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,810,-1,0,955,-15,0,0 +2013,9,12,4,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1540,-4,0,1901,-11,0,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,1039,-2,0,1919,-36,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1054,-4,0,1132,3,0,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,604,-1,0,921,-9,0,0 +2013,5,29,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1435,14,0,1600,9,0,0 +2013,5,18,6,VX,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2125,-2,0,559,-11,0,0 +2013,4,8,1,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,808,31,1,939,24,1,0 +2013,9,21,6,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1005,-6,0,1300,-6,0,0 +2013,7,2,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,140,-6,0,558,-5,0,0 +2013,5,25,6,DL,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1518,-6,0,1800,-4,0,0 +2013,8,25,7,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1805,0,0,2115,-11,0,0 +2013,8,25,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,15016,Lambert-St. Louis International,St. Louis,MO,1655,8,0,1800,-13,0,0 +2013,10,16,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,15,1,2059,7,0,0 +2013,5,16,4,UA,14747,Seattle/Tacoma International,Seattle,WA,12264,Washington Dulles International,Washington,DC,1245,377,1,2042,352,1,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,2135,-8,0,2335,-23,0,0 +2013,5,23,4,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1710,256,1,1845,239,1,0 +2013,6,29,6,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,744,0,0,853,-25,0,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1922,4,0,117,-14,0,0 +2013,10,4,5,DL,12953,LaGuardia,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,805,-5,0,1034,-29,0,0 +2013,5,4,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,-10,0,925,1,0,0 +2013,8,10,6,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1916,-4,0,2025,-14,0,0 +2013,7,11,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14679,San Diego International,San Diego,CA,945,54,1,1200,44,1,0 +2013,10,16,3,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,755,-6,0,1008,49,1,0 +2013,8,7,3,FL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1708,92,1,2020,95,1,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2055,44,1,2220,31,1,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,-6,0,1402,-7,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,12,0,919,15,1,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1510,9,0,1621,-12,0,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-3,0,1805,-2,0,0 +2013,4,16,2,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,600,4,0,835,-1,0,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1940,3,0,50,-9,0,0 +2013,6,22,6,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1020,8,0,1125,-1,0,0 +2013,10,7,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1459,7,0,1814,24,1,0 +2013,9,21,6,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,1105,0,0,1905,-15,0,0 +2013,7,18,4,OO,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,2003,14,0,2212,11,0,0 +2013,6,1,6,WN,13342,General Mitchell International,Milwaukee,WI,13198,Kansas City International,Kansas City,MO,1530,34,1,1705,21,1,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2255,138,1,2355,129,1,0 +2013,7,31,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1450,13,0,1625,0,0,0 +2013,8,24,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,715,-4,0,830,-24,0,0 +2013,8,31,6,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1201,-1,0,1429,0,0,0 +2013,9,4,3,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1415,-4,0,1643,-11,0,0 +2013,6,6,4,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1750,36,1,1935,19,1,0 +2013,10,14,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,915,-6,0,1112,-4,0,0 +2013,9,1,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1825,40,1,1940,37,1,0 +2013,4,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2045,-2,0,2215,-5,0,0 +2013,6,1,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-2,0,1205,-11,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1630,-4,0,1827,-9,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,640,-2,0,812,6,0,0 +2013,6,8,6,OO,14771,San Francisco International,San Francisco,CA,14683,San Antonio International,San Antonio,TX,1657,-9,0,2233,-12,0,0 +2013,10,5,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1610,-5,0,1755,-15,0,0 +2013,4,11,4,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,1455,2,0,1720,-11,0,0 +2013,10,10,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1725,4,0,1830,8,0,0 +2013,8,23,5,9E,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1920,-10,0,2034,-17,0,0 +2013,5,30,4,9E,12953,LaGuardia,New York,NY,14730,Louisville International-Standiford Field,Louisville,KY,938,-3,0,1204,-19,0,0 +2013,9,29,7,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1745,5,0,2003,22,1,0 +2013,4,2,2,B6,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,720,-8,0,1001,-10,0,0 +2013,7,26,5,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1442,8,0,1723,-13,0,0 +2013,7,3,3,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1226,32,1,1343,91,1,0 +2013,5,15,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1815,130,1,1940,127,1,0 +2013,7,12,5,F9,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-2,0,950,-7,0,0 +2013,7,22,1,OO,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1502,3,0,1729,53,1,0 +2013,9,25,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1950,20,1,2110,14,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,2128,2,0,44,-7,0,0 +2013,4,10,3,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,2100,-5,0,2340,-20,0,0 +2013,8,29,4,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1905,14,0,2015,11,0,0 +2013,7,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2325,-8,0,738,20,1,0 +2013,7,16,2,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,2,0,846,3,0,0 +2013,9,15,7,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1225,4,0,1355,-3,0,0 +2013,8,24,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1456,-5,0,1615,0,0,0 +2013,10,30,3,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1331,-9,0,1443,-19,0,0 +2013,6,29,6,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1436,16,1,1615,5,0,0 +2013,7,6,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2340,5,0,759,2,0,0 +2013,9,27,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1355,12,0,1520,14,0,0 +2013,5,19,7,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,610,-3,0,720,-6,0,0 +2013,10,21,1,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,805,0,0,1120,-3,0,0 +2013,8,5,1,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2055,56,1,2334,52,1,0 +2013,8,5,1,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,705,-1,0,800,-5,0,0 +2013,8,25,7,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1836,-10,0,2002,0,0,0 +2013,10,14,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,700,13,0,823,4,0,0 +2013,6,16,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2155,20,1,2310,26,1,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,800,0,0,1050,-11,0,0 +2013,9,15,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,949,-10,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2150,40,1,2305,26,1,0 +2013,4,7,7,FL,14635,Southwest Florida International,Fort Myers,FL,11066,Port Columbus International,Columbus,OH,1234,-9,0,1500,7,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,740,9,0,900,2,0,0 +2013,10,31,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1710,3,0,1835,1,0,0 +2013,5,9,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,102,1,1855,124,1,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,35,1,2341,53,1,0 +2013,4,26,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,705,-4,0,815,24,1,0 +2013,4,5,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,725,-3,0,1045,-2,0,0 +2013,7,22,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-3,0,635,-13,0,0 +2013,9,6,5,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1427,-5,0,1536,6,0,0 +2013,6,2,7,EV,12339,Indianapolis International,Indianapolis,IN,11042,Cleveland-Hopkins International,Cleveland,OH,1322,-8,0,1427,-17,0,0 +2013,9,26,4,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,622,0,0,916,-20,0,0 +2013,7,14,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1439,-4,0,1559,-8,0,0 +2013,5,6,1,DL,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,845,-7,0,1439,-1,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1825,0,0,2056,-4,0,0 +2013,7,2,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1515,-6,0,1625,-9,0,0 +2013,4,21,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1645,6,0,1750,13,0,0 +2013,8,2,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1534,6,0,1930,6,0,0 +2013,5,6,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1413,74,1,1559,61,1,0 +2013,7,10,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1215,23,1,1330,26,1,0 +2013,9,22,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,-2,0,1451,0,0,0 +2013,7,1,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1938,-2,0,2220,5,0,0 +2013,9,24,2,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1705,-3,0,1824,-3,0,0 +2013,8,5,1,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,704,0,0,813,6,0,0 +2013,7,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1520,-1,0,1705,3,0,0 +2013,7,16,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,914,73,1,1037,68,1,0 +2013,7,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,950,-4,0,1120,-12,0,0 +2013,6,16,7,OO,13198,Kansas City International,Kansas City,MO,14869,Salt Lake City International,Salt Lake City,UT,1425,-3,0,1603,5,0,0 +2013,8,5,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1535,-7,0,1725,-19,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-3,0,1418,-22,0,0 +2013,7,21,7,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,948,-5,0,1045,-9,0,0 +2013,10,1,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1050,43,1,1237,29,1,0 +2013,10,18,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,758,-7,0,1020,-4,0,0 +2013,7,10,3,OO,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,845,-3,0,1007,8,0,0 +2013,8,21,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,47,1,1810,54,1,0 +2013,5,15,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1150,-5,0,1235,-4,0,0 +2013,6,23,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,-3,0,1730,-17,0,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1200,3,0,1332,-2,0,0 +2013,4,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1743,71,1,2106,54,1,0 +2013,5,19,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-4,0,950,13,0,0 +2013,4,14,7,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,600,-3,0,630,4,0,0 +2013,10,28,1,B6,14843,Luis Munoz Marin International,San Juan,PR,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1545,-7,0,1832,-18,0,0 +2013,6,27,4,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-2,0,830,-12,0,0 +2013,4,8,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,17,1,2158,24,1,0 +2013,8,26,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1815,-9,0,1929,-14,0,0 +2013,9,25,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1135,9,0,1230,23,1,0 +2013,5,2,4,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,830,3,0,1015,-4,0,0 +2013,8,13,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,1220,-2,0,1445,-15,0,0 +2013,6,28,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,42,1,2259,85,1,0 +2013,6,10,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1215,0,0,1313,11,0,0 +2013,6,16,7,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,915,-8,0,1100,-21,0,0 +2013,6,9,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1640,322,1,2005,305,1,0 +2013,6,22,6,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,46,1,840,38,1,0 +2013,8,29,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-5,0,1003,-17,0,0 +2013,6,6,4,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,828,2,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1450,0,0,1653,28,1,0 +2013,8,22,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1715,-4,0,2128,6,0,0 +2013,8,24,6,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2014,-7,0,2259,-21,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1813,1,0,2106,-9,0,0 +2013,7,9,2,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,-2,0,951,-4,0,0 +2013,10,5,6,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1210,7,0,1440,11,0,0 +2013,9,2,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1340,76,1,1455,70,1,0 +2013,9,9,1,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-6,0,1835,-7,0,0 +2013,8,20,2,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1130,14,0,1245,11,0,0 +2013,7,28,7,WN,14730,Louisville International-Standiford Field,Louisville,KY,13232,Chicago Midway International,Chicago,IL,1810,-6,0,1815,-3,0,0 +2013,5,7,2,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,0,0,1547,-3,0,0 +2013,8,22,4,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,823,-3,0,1323,-8,0,0 +2013,7,19,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1259,3,0,2104,7,0,0 +2013,7,23,2,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,1505,20,1,1835,-15,0,0 +2013,8,14,3,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,-5,0,1645,18,1,0 +2013,6,14,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1340,8,0,1507,-3,0,0 +2013,8,2,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,705,2,0,825,-4,0,0 +2013,7,9,2,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,1,0,1949,-5,0,0 +2013,8,29,4,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1850,29,1,1945,23,1,0 +2013,7,29,1,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,805,38,1,850,41,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,-1,0,2249,-12,0,0 +2013,9,12,4,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1721,5,0,1828,-8,0,0 +2013,4,11,4,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,2045,1,0,2145,12,0,0 +2013,4,20,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,900,-3,0,956,-11,0,0 +2013,4,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1010,0,0,1125,6,0,0 +2013,8,4,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1310,1,0,1435,-9,0,0 +2013,7,5,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,705,-5,0,1535,-17,0,0 +2013,4,6,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1336,-5,0,1533,-7,0,0 +2013,10,19,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,-3,0,1440,-26,0,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1430,97,1,1555,104,1,0 +2013,10,8,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1714,18,1,1910,18,1,0 +2013,5,19,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,-10,0,745,-12,0,0 +2013,7,16,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,4,0,1040,5,0,0 +2013,8,20,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-4,0,830,-11,0,0 +2013,8,9,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-4,0,1016,4,0,0 +2013,5,25,6,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1545,-4,0,1822,-13,0,0 +2013,6,20,4,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2300,1,0,704,23,1,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1515,10,0,1745,-18,0,0 +2013,6,16,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1641,88,1,1812,94,1,0 +2013,4,1,1,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,700,-1,0,1002,-7,0,0 +2013,5,10,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,1150,-4,0,1326,-13,0,0 +2013,10,2,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-5,0,1230,-16,0,0 +2013,10,11,5,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1104,15,1,1210,21,1,0 +2013,9,6,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13891,Ontario International,Ontario,CA,922,-4,0,1047,-29,0,0 +2013,8,17,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,-7,0,1947,-3,0,0 +2013,4,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1750,-6,0,2001,14,0,0 +2013,9,13,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1555,10,0,1705,-4,0,0 +2013,4,15,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,945,-8,0,1100,-14,0,0 +2013,10,14,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1803,-8,0,1933,-8,0,0 +2013,9,2,1,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,700,0,0,1004,-22,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1100,9,0,1228,8,0,0 +2013,10,16,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,837,-25,0,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10721,Logan International,Boston,MA,855,88,1,1657,70,1,0 +2013,6,30,7,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,2215,-7,0,609,1,0,0 +2013,10,4,5,WN,10693,Nashville International,Nashville,TN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,6,0,1110,-3,0,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,952,3,0,1312,-8,0,0 +2013,10,7,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,-5,0,2115,-26,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1615,8,0,1730,-1,0,0 +2013,5,23,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1005,6,0,1159,-9,0,0 +2013,7,1,1,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1940,11,0,2050,14,0,0 +2013,7,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,900,73,1,1034,76,1,0 +2013,6,17,1,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1905,3,0,2135,12,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1045,22,1,1210,16,1,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1145,0,0,1840,-17,0,0 +2013,10,11,5,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1019,-2,0,1315,-10,0,0 +2013,4,18,4,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2156,52,1,2320,36,1,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2235,23,1,28,17,1,0 +2013,4,26,5,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,635,0,0,1230,16,1,0 +2013,7,5,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1320,-10,0,1553,-4,0,0 +2013,5,28,2,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,2050,23,1,2140,13,0,0 +2013,8,29,4,DL,15304,Tampa International,Tampa,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1415,7,0,1635,-4,0,0 +2013,7,10,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-5,0,1604,-5,0,0 +2013,4,1,1,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1747,14,0,1839,14,0,0 +2013,8,16,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-6,0,2246,-7,0,0 +2013,4,24,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,5,0,1535,1,0,0 +2013,10,11,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1025,14,0,1215,25,1,0 +2013,6,25,2,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,735,10,0,910,1,0,0 +2013,6,24,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14843,Luis Munoz Marin International,San Juan,PR,1305,102,1,1900,71,1,0 +2013,10,9,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2015,2,0,2225,-7,0,0 +2013,10,10,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1030,16,1,1205,11,0,0 +2013,5,23,4,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,1125,-6,0,1720,-1,0,0 +2013,4,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,734,-3,0,859,2,0,0 +2013,8,15,4,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1135,1,0,1425,-8,0,0 +2013,7,22,1,EV,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1058,88,1,1327,82,1,0 +2013,6,15,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,0,0,2242,-7,0,0 +2013,6,9,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,1106,2,0,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,830,5,0,1015,-6,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1345,-7,0,1627,-15,0,0 +2013,10,18,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,10423,Austin - Bergstrom International,Austin,TX,1525,23,1,1740,35,1,0 +2013,5,4,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,-5,0,941,-1,0,0 +2013,7,10,3,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,920,58,1,1010,60,1,0 +2013,8,4,7,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,735,0,0,829,11,0,0 +2013,5,21,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,14747,Seattle/Tacoma International,Seattle,WA,1840,132,1,2100,100,1,0 +2013,7,23,2,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-9,0,845,-3,0,0 +2013,7,2,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1626,84,1,1835,96,1,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1220,90,1,1314,79,1,0 +2013,8,19,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,620,31,1,1505,41,1,0 +2013,9,4,3,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2253,1,0,725,-1,0,0 +2013,6,25,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1015,0,,1537,0,1,1 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1455,47,1,1810,25,1,0 +2013,5,15,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1920,2,0,2159,-12,0,0 +2013,8,18,7,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,800,-8,0,917,-24,0,0 +2013,10,7,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2056,15,1,2205,11,0,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,30,1,2216,33,1,0 +2013,9,14,6,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1730,-4,0,2010,-2,0,0 +2013,5,14,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,935,-1,0,1200,-10,0,0 +2013,9,10,2,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,1535,-6,0,1652,-23,0,0 +2013,5,29,3,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1155,-2,0,1425,-8,0,0 +2013,8,26,1,AS,14057,Portland International,Portland,OR,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,-2,0,1758,2,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,2010,18,1,2310,19,1,0 +2013,7,1,1,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1024,-2,0,1600,0,0,0 +2013,6,20,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1635,-2,0,40,11,0,0 +2013,8,26,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2150,-4,0,2300,-7,0,0 +2013,5,14,2,OO,13851,Will Rogers World,Oklahoma City,OK,12892,Los Angeles International,Los Angeles,CA,545,-1,0,700,-24,0,0 +2013,4,17,3,WN,12191,William P Hobby,Houston,TX,12889,McCarran International,Las Vegas,NV,950,11,0,1100,26,1,0 +2013,7,25,4,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,900,0,0,1305,-20,0,0 +2013,8,10,6,YV,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-4,0,1752,-10,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,950,327,1,1115,318,1,0 +2013,4,21,7,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1505,13,0,1540,16,1,0 +2013,4,18,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,42,30,1,531,16,1,0 +2013,9,25,3,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,541,-8,0,849,-15,0,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,930,0,0,1030,1,0,0 +2013,9,8,7,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1800,-5,0,2007,-10,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1355,0,0,1525,-2,0,0 +2013,4,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14683,San Antonio International,San Antonio,TX,1320,0,0,1725,-9,0,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,2200,51,1,2322,31,1,0 +2013,10,19,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1715,-2,0,1835,-9,0,0 +2013,5,18,6,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1405,-9,0,1820,-28,0,0 +2013,4,6,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-5,0,655,-4,0,0 +2013,10,21,1,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,1729,2,0,2030,-6,0,0 +2013,6,25,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2315,102,1,504,96,1,0 +2013,7,26,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,1130,-2,0,1332,-1,0,0 +2013,9,15,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-3,0,1905,0,0,0 +2013,4,3,3,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1115,-13,0,1236,-7,0,0 +2013,6,13,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1723,11,0,1742,19,1,0 +2013,5,8,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,810,4,0,1100,-1,0,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1210,305,1,1435,299,1,0 +2013,8,19,1,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,600,8,0,1130,16,1,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,930,18,1,1035,10,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2206,136,1,2345,139,1,0 +2013,4,22,1,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1700,171,1,2015,182,1,0 +2013,8,30,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1438,-2,0,1610,-6,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2100,165,1,2253,132,1,0 +2013,8,25,7,MQ,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1555,6,0,1600,1,0,0 +2013,10,7,1,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1655,-1,0,1750,-4,0,0 +2013,5,20,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,-2,0,2334,-1,0,0 +2013,6,10,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1951,5,0,2100,-7,0,0 +2013,5,27,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-4,0,845,-8,0,0 +2013,5,13,1,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,645,-6,0,946,-3,0,0 +2013,9,12,4,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1313,-7,0,1633,3,0,0 +2013,9,16,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13851,Will Rogers World,Oklahoma City,OK,2042,-4,0,2155,2,0,0 +2013,4,6,6,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1000,1,0,1315,-6,0,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1450,-2,0,1516,-8,0,0 +2013,8,4,7,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,-4,0,1857,-8,0,0 +2013,4,30,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,725,76,1,820,88,1,0 +2013,8,28,3,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1721,1,0,1938,-26,0,0 +2013,9,27,5,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,2200,-4,0,30,13,0,0 +2013,9,18,3,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,-1,0,1430,-5,0,0 +2013,5,10,5,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,1005,8,0,1325,16,1,0 +2013,7,8,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,19,1,1820,7,0,0 +2013,6,23,7,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1806,-8,0,2134,-25,0,0 +2013,8,17,6,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,550,0,0,755,-1,0,0 +2013,10,24,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1925,-7,0,2050,-15,0,0 +2013,10,24,4,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1920,1,0,2130,-7,0,0 +2013,10,13,7,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1555,3,0,1715,7,0,0 +2013,5,2,4,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1214,-2,0,1411,-5,0,0 +2013,8,23,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,1253,-14,0,0 +2013,5,14,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1759,-4,0,1859,-1,0,0 +2013,4,5,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1940,-4,0,2119,-8,0,0 +2013,9,10,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,725,-2,0,1030,-11,0,0 +2013,8,6,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-5,0,905,17,1,0 +2013,9,5,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,755,-3,0,1135,-2,0,0 +2013,8,25,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1351,18,1,1549,12,0,0 +2013,6,27,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,118,1,2006,160,1,0 +2013,4,14,7,OO,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1205,9,0,1330,36,1,0 +2013,10,18,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-5,0,2052,4,0,0 +2013,6,27,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,937,-16,0,0 +2013,7,22,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-8,0,2100,-9,0,0 +2013,9,9,1,9E,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1930,-6,0,2125,-17,0,0 +2013,8,8,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2240,-1,0,115,-8,0,0 +2013,10,19,6,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1234,-5,0,1522,-12,0,0 +2013,10,24,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,726,-5,0,928,-3,0,0 +2013,4,20,6,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,-5,0,1640,-6,0,0 +2013,7,3,3,US,10529,Bradley International,Hartford,CT,11278,Ronald Reagan Washington National,Washington,DC,620,-7,0,741,20,1,0 +2013,6,16,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1004,10,0,1055,16,1,0 +2013,9,27,5,MQ,10693,Nashville International,Nashville,TN,11278,Ronald Reagan Washington National,Washington,DC,550,-4,0,830,-3,0,0 +2013,6,20,4,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,649,-8,0,903,-20,0,0 +2013,8,26,1,F9,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1654,3,0,1815,13,0,0 +2013,10,27,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,2105,-1,0,2225,-11,0,0 +2013,10,27,7,OO,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1200,0,0,1515,-7,0,0 +2013,8,16,5,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,825,9,0,1420,10,0,0 +2013,7,19,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1418,-11,0,1547,-22,0,0 +2013,8,23,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1443,19,1,1630,2,0,0 +2013,10,2,3,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1800,31,1,1905,25,1,0 +2013,5,21,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,-3,0,2215,-19,0,0 +2013,9,19,4,YV,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-8,0,1011,-31,0,0 +2013,4,9,2,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,0,0,1220,9,0,0 +2013,4,14,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1530,2,0,1642,-1,0,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,715,-4,0,1127,8,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1445,0,0,1600,2,0,0 +2013,4,15,1,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,922,69,1,1130,53,1,0 +2013,6,8,6,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,0,0,1718,-13,0,0 +2013,5,6,1,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1405,-4,0,1530,2,0,0 +2013,6,9,7,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1505,-5,0,1630,-1,0,0 +2013,10,11,5,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-3,0,1848,-11,0,0 +2013,8,23,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-9,0,1303,-10,0,0 +2013,6,4,2,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-3,0,1028,-15,0,0 +2013,6,2,7,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1210,102,1,1459,101,1,0 +2013,4,9,2,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,1,0,1013,-12,0,0 +2013,8,17,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,737,-1,0,902,-9,0,0 +2013,7,21,7,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,-7,0,810,-16,0,0 +2013,7,17,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,-5,0,1655,-10,0,0 +2013,8,5,1,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1230,-4,0,1355,0,0,0 +2013,6,19,3,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,11,0,745,1,0,0 +2013,7,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1925,0,0,2055,-8,0,0 +2013,4,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1035,11,0,1250,14,0,0 +2013,9,26,4,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1359,47,1,1703,47,1,0 +2013,6,18,2,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1130,4,0,1921,32,1,0 +2013,7,25,4,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1319,58,1,1455,49,1,0 +2013,4,1,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,800,-16,0,912,-33,0,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1915,-4,0,2040,-16,0,0 +2013,8,8,4,YV,14683,San Antonio International,San Antonio,TX,12264,Washington Dulles International,Washington,DC,1152,63,1,1623,64,1,0 +2013,4,28,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1840,59,1,2159,40,1,0 +2013,8,3,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14679,San Diego International,San Diego,CA,1917,14,0,2021,4,0,0 +2013,5,27,1,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,900,-6,0,1159,-24,0,0 +2013,8,7,3,EV,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1646,-4,0,1811,-16,0,0 +2013,8,22,4,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2115,-7,0,510,-18,0,0 +2013,7,17,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,19,1,1705,7,0,0 +2013,8,7,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-4,0,901,6,0,0 +2013,10,31,4,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1930,82,1,2056,80,1,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1630,-4,0,1749,-3,0,0 +2013,8,30,5,OO,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1405,-8,0,1812,-3,0,0 +2013,4,28,7,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,-6,0,940,-5,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2120,10,0,2325,5,0,0 +2013,7,12,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1858,13,0,2159,10,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,910,-2,0,1125,2,0,0 +2013,6,2,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1523,43,1,1756,58,1,0 +2013,4,12,5,WN,13204,Orlando International,Orlando,FL,10423,Austin - Bergstrom International,Austin,TX,805,-4,0,955,-9,0,0 +2013,8,29,4,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,32,1,617,34,1,0 +2013,7,21,7,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1205,-2,0,1320,0,0,0 +2013,7,17,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1650,1,0,1820,-7,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,43,1,1911,31,1,0 +2013,5,29,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1910,-3,0,2045,-24,0,0 +2013,10,25,5,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1740,-7,0,1909,-23,0,0 +2013,6,4,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,700,-8,0,816,-16,0,0 +2013,10,30,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1530,39,1,2135,32,1,0 +2013,5,23,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1700,-4,0,1950,-4,0,0 +2013,6,16,7,OO,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,842,0,0,921,-1,0,0 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,105,-7,0,635,2,0,0 +2013,4,11,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,830,-1,0,1120,-11,0,0 +2013,4,15,1,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1520,-9,0,2339,-16,0,0 +2013,10,18,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,18,1,1415,18,1,0 +2013,8,21,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1500,4,0,1625,25,1,0 +2013,8,25,7,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1315,-2,0,1455,-25,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1106,19,1,1945,30,1,0 +2013,10,18,5,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1800,1,0,2005,0,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,847,-4,0,1132,-11,0,0 +2013,10,7,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,835,-6,0,935,0,0,0 +2013,6,20,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1920,5,0,2025,-16,0,0 +2013,8,26,1,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11278,Ronald Reagan Washington National,Washington,DC,1510,-6,0,1634,-29,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2145,14,0,2236,13,0,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1020,-4,0,1602,-3,0,0 +2013,7,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-2,0,922,-7,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1759,3,0,2115,3,0,0 +2013,7,12,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1500,76,1,1850,65,1,0 +2013,7,15,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1510,-9,0,1701,-8,0,0 +2013,8,23,5,EV,15016,Lambert-St. Louis International,St. Louis,MO,12266,George Bush Intercontinental/Houston,Houston,TX,955,-1,0,1158,-16,0,0 +2013,4,30,2,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,645,-8,0,910,-7,0,0 +2013,7,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1355,2,0,1755,83,1,0 +2013,7,6,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,40,-2,0,655,-21,0,0 +2013,6,24,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,20,1,1855,12,0,0 +2013,8,21,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,0,0,2025,-1,0,0 +2013,5,8,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,2045,29,1,2215,19,1,0 +2013,4,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,1340,-6,0,1707,-23,0,0 +2013,7,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1600,38,1,1913,65,1,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1208,-5,0,1355,-9,0,0 +2013,9,23,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1400,2,0,1540,27,1,0 +2013,5,23,4,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1000,5,0,1227,-12,0,0 +2013,7,14,7,US,13198,Kansas City International,Kansas City,MO,11057,Charlotte Douglas International,Charlotte,NC,710,104,1,1022,119,1,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1500,-1,0,1600,-1,0,0 +2013,8,9,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,900,-2,0,1005,0,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,4,0,1027,17,1,0 +2013,6,21,5,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1815,30,1,2125,22,1,0 +2013,7,17,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2315,1,0,623,2,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,2130,66,1,2250,71,1,0 +2013,7,26,5,9E,13871,Eppley Airfield,Omaha,NE,13244,Memphis International,Memphis,TN,1710,-6,0,1850,-20,0,0 +2013,5,20,1,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-5,0,920,-11,0,0 +2013,10,11,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1705,13,0,1805,9,0,0 +2013,8,24,6,YV,14307,Theodore Francis Green State,Providence,RI,12264,Washington Dulles International,Washington,DC,1439,-12,0,1614,-5,0,0 +2013,8,1,4,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-6,0,1405,-1,0,0 +2013,6,24,1,WN,14679,San Diego International,San Diego,CA,12191,William P Hobby,Houston,TX,1640,32,1,2145,19,1,0 +2013,6,28,5,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1809,16,1,2119,23,1,0 +2013,10,25,5,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,1728,2,0,1945,-2,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1250,-2,0,1350,-5,0,0 +2013,7,8,1,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,27,1,1508,12,0,0 +2013,7,7,7,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1740,-3,0,1830,-2,0,0 +2013,10,9,3,FL,14524,Richmond International,Richmond,VA,13204,Orlando International,Orlando,FL,1111,-2,0,1311,-6,0,0 +2013,8,29,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-7,0,1035,2,0,0 +2013,8,10,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,710,-3,0,825,-12,0,0 +2013,6,9,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-4,0,925,30,1,0 +2013,4,7,7,FL,13204,Orlando International,Orlando,FL,11066,Port Columbus International,Columbus,OH,1204,-3,0,1414,-3,0,0 +2013,4,5,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,839,-8,0,902,-12,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,2005,25,1,2206,22,1,0 +2013,4,29,1,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1745,0,0,1855,-10,0,0 +2013,7,31,3,EV,13244,Memphis International,Memphis,TN,14100,Philadelphia International,Philadelphia,PA,1940,-2,0,2308,-22,0,0 +2013,10,3,4,OO,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1517,-4,0,1615,3,0,0 +2013,4,15,1,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1900,-6,0,2021,-14,0,0 +2013,4,30,2,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1810,0,0,1945,-27,0,0 +2013,5,31,5,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,188,1,1916,198,1,0 +2013,6,3,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1500,-7,0,1845,-23,0,0 +2013,5,1,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1340,43,1,1445,56,1,0 +2013,4,20,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,600,-4,0,827,-1,0,0 +2013,5,11,6,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1600,-2,0,1948,49,1,0 +2013,8,29,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,11,0,1835,1,0,0 +2013,6,10,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2114,85,1,15,72,1,0 +2013,7,17,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1532,9,0,1900,-10,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,600,-2,0,1050,-16,0,0 +2013,7,20,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,615,-5,0,806,-19,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1615,0,0,1720,-4,0,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,1421,34,1,1820,10,0,0 +2013,10,5,6,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,915,0,0,1110,-17,0,0 +2013,9,22,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1710,0,0,1955,-7,0,0 +2013,6,5,3,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,28,1,1745,25,1,0 +2013,4,27,6,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1735,-4,0,2002,-15,0,0 +2013,10,14,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1425,-1,0,1545,11,0,0 +2013,6,22,6,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,1055,-2,0,1233,-6,0,0 +2013,7,7,7,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2100,-4,0,2142,-1,0,0 +2013,4,28,7,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,940,-3,0,1242,-26,0,0 +2013,10,24,4,F9,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,1,0,1448,-3,0,0 +2013,6,25,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1215,11,0,1320,46,1,0 +2013,7,14,7,B6,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,811,-6,0,952,-2,0,0 +2013,6,29,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1240,8,0,1405,5,0,0 +2013,4,15,1,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,2055,-8,0,2202,5,0,0 +2013,7,30,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1230,-21,0,0 +2013,6,16,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1033,170,1,1200,155,1,0 +2013,6,12,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,2040,-6,0,2200,-12,0,0 +2013,8,27,2,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,1045,3,0,1610,3,0,0 +2013,6,26,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,705,-3,0,930,8,0,0 +2013,4,14,7,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1020,0,0,1510,23,1,0 +2013,7,1,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1005,5,0,1115,2,0,0 +2013,9,16,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1240,13,0,1435,14,0,0 +2013,9,11,3,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,-2,0,1955,-21,0,0 +2013,7,14,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1205,-2,0,1324,-10,0,0 +2013,6,10,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1828,33,1,2107,28,1,0 +2013,8,4,7,YV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1709,-5,0,1850,1,0,0 +2013,8,17,6,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1720,30,1,1815,19,1,0 +2013,4,12,5,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1437,14,0,1804,0,0,0 +2013,10,19,6,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-7,0,912,-2,0,0 +2013,10,29,2,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1025,4,0,1345,1,0,0 +2013,10,31,4,WN,15376,Tucson International,Tucson,AZ,14679,San Diego International,San Diego,CA,1155,12,0,1310,11,0,0 +2013,6,8,6,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1632,0,0,1825,-7,0,0 +2013,9,8,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1605,-7,0,1919,-4,0,0 +2013,5,4,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1035,41,1,1358,34,1,0 +2013,6,8,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1436,4,0,1722,3,0,0 +2013,4,27,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1610,-2,0,1800,-25,0,0 +2013,10,10,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,647,-7,0,932,-9,0,0 +2013,8,28,3,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,-3,0,1545,-11,0,0 +2013,7,28,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1325,80,1,1335,80,1,0 +2013,5,27,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,835,-10,0,0 +2013,10,18,5,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1340,14,0,1500,5,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1906,3,0,2243,7,0,0 +2013,8,14,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,1825,52,1,1910,48,1,0 +2013,5,28,2,AS,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1710,-4,0,1940,-16,0,0 +2013,5,30,4,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,5,0,2015,-3,0,0 +2013,4,7,7,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1200,-3,0,1315,-12,0,0 +2013,7,6,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1844,-11,0,1905,-20,0,0 +2013,4,8,1,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,56,1,940,40,1,0 +2013,9,17,2,UA,14771,San Francisco International,San Francisco,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1345,11,0,2159,18,1,0 +2013,7,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1918,17,1,2239,4,0,0 +2013,5,3,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,610,-2,0,845,14,0,0 +2013,7,26,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1654,-1,0,1909,-3,0,0 +2013,10,15,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1423,13,0,0 +2013,8,27,2,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1240,0,0,1545,-40,0,0 +2013,10,10,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1745,32,1,1855,34,1,0 +2013,4,24,3,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2020,23,1,2140,43,1,0 +2013,7,28,7,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1130,23,1,1310,15,1,0 +2013,6,1,6,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1000,1,0,1110,-6,0,0 +2013,4,14,7,HA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,0,0,2240,2,0,0 +2013,4,14,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-2,0,1834,1,0,0 +2013,9,22,7,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,805,-3,0,951,-7,0,0 +2013,5,23,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1805,363,1,1905,401,1,0 +2013,9,6,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1200,-1,0,1455,-49,0,0 +2013,7,31,3,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,640,-5,0,805,-10,0,0 +2013,10,17,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-9,0,1259,-11,0,0 +2013,6,27,4,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1005,4,0,1252,-2,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2145,-1,0,2353,23,1,0 +2013,9,27,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,752,-5,0,951,-9,0,0 +2013,7,12,5,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1240,-1,0,1644,2,0,0 +2013,10,17,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1145,-3,0,1309,-1,0,0 +2013,8,8,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1130,20,1,1305,34,1,0 +2013,9,4,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1820,-2,0,1935,-8,0,0 +2013,8,4,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1235,19,1,1620,-3,0,0 +2013,7,24,3,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,13930,Chicago O'Hare International,Chicago,IL,1345,2,0,1555,-15,0,0 +2013,6,17,1,YV,12264,Washington Dulles International,Washington,DC,13198,Kansas City International,Kansas City,MO,833,0,0,1005,3,0,0 +2013,7,16,2,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1644,0,0,1825,49,1,0 +2013,9,13,5,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,913,5,0,1227,-11,0,0 +2013,4,10,3,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12191,William P Hobby,Houston,TX,1055,6,0,1255,-3,0,0 +2013,9,8,7,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1500,8,0,2002,12,0,0 +2013,7,10,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,605,0,0,741,-5,0,0 +2013,8,11,7,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1452,-6,0,1626,-15,0,0 +2013,6,25,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,735,-5,0,1200,-8,0,0 +2013,6,2,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,925,1,0,1040,-3,0,0 +2013,6,26,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,2110,6,0,2140,-5,0,0 +2013,10,6,7,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,2000,0,0,2230,-12,0,0 +2013,8,11,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,810,-4,0,910,-8,0,0 +2013,4,28,7,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,937,-2,0,1042,-20,0,0 +2013,7,3,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1800,-5,0,1820,-2,0,0 +2013,7,8,1,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,105,1,1655,125,1,0 +2013,7,16,2,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1150,3,0,1255,-20,0,0 +2013,10,13,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,153,1,2127,136,1,0 +2013,7,4,4,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1701,-3,0,1847,-6,0,0 +2013,8,3,6,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1949,54,1,2029,56,1,0 +2013,7,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,2,0,1755,-11,0,0 +2013,8,12,1,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1359,4,0,1640,-12,0,0 +2013,9,10,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1118,3,0,1310,-15,0,0 +2013,8,20,2,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1920,10,0,2049,7,0,0 +2013,5,30,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1425,-3,0,1512,-6,0,0 +2013,4,7,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1706,-2,0,2315,-21,0,0 +2013,9,7,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1650,38,1,1755,29,1,0 +2013,10,25,5,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1230,-2,0,1345,-8,0,0 +2013,5,3,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,601,-8,0,1001,-23,0,0 +2013,7,2,2,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,605,0,0,730,1,0,0 +2013,4,30,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,820,-5,0,935,-4,0,0 +2013,4,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1955,23,1,2115,21,1,0 +2013,7,13,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,115,1,1900,93,1,0 +2013,10,23,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,62,1,1334,49,1,0 +2013,5,29,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1544,-1,0,1832,-7,0,0 +2013,6,21,5,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,1500,15,1,1845,19,1,0 +2013,4,28,7,US,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-10,0,2039,-5,0,0 +2013,4,10,3,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,54,1,1910,66,1,0 +2013,10,18,5,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1800,-2,0,2100,-19,0,0 +2013,4,27,6,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1810,-10,0,2103,-26,0,0 +2013,4,26,5,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,1755,2,0,2030,-13,0,0 +2013,9,12,4,WN,15304,Tampa International,Tampa,FL,13342,General Mitchell International,Milwaukee,WI,1055,-4,0,1235,-5,0,0 +2013,4,20,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,840,-2,0,1030,-7,0,0 +2013,6,12,3,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1120,-2,0,1248,-2,0,0 +2013,7,31,3,WN,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,945,0,0,1325,-7,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,725,-2,0,1015,-14,0,0 +2013,7,14,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1900,69,1,2000,74,1,0 +2013,5,1,3,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1433,-4,0,1703,1,0,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,48,1,1445,38,1,0 +2013,4,4,4,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,630,-5,0,811,-16,0,0 +2013,5,19,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,700,0,0,920,-15,0,0 +2013,5,25,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,13,0,1004,-10,0,0 +2013,6,12,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1339,-1,0,1429,-5,0,0 +2013,8,26,1,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1114,33,1,1442,19,1,0 +2013,5,3,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2155,-1,0,2300,-13,0,0 +2013,6,14,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1555,12,0,1710,4,0,0 +2013,4,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1530,-2,0,1550,8,0,0 +2013,7,11,4,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2150,-6,0,25,11,0,0 +2013,8,1,4,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1850,3,0,2045,-2,0,0 +2013,4,16,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1445,12,0,1616,9,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1000,-8,0,1228,-9,0,0 +2013,6,13,4,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,1,0,1630,-18,0,0 +2013,5,23,4,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,815,0,0,928,-5,0,0 +2013,5,16,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,817,17,1,911,20,1,0 +2013,6,25,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,845,2,0,1055,17,1,0 +2013,4,9,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1912,-6,0,2025,-23,0,0 +2013,8,27,2,AA,15304,Tampa International,Tampa,FL,13303,Miami International,Miami,FL,700,-1,0,800,12,0,0 +2013,6,9,7,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,10,0,2020,0,0,0 +2013,9,3,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,539,10,0,720,4,0,0 +2013,9,20,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,4,0,1550,-1,0,0 +2013,8,13,2,B6,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1706,106,1,2111,197,1,0 +2013,7,14,7,FL,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1230,94,1,1415,72,1,0 +2013,10,10,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1915,9,0,2250,-2,0,0 +2013,9,13,5,FL,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,735,-6,0,905,-3,0,0 +2013,7,20,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1155,0,0,1410,0,0,0 +2013,5,23,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,1600,67,1,11,66,1,0 +2013,9,3,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1430,1,0,1530,2,0,0 +2013,10,21,1,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1435,-6,0,1450,-7,0,0 +2013,5,31,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,1450,8,0,1659,12,0,0 +2013,6,19,3,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1210,0,0,1545,1,0,0 +2013,8,23,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,641,-1,0,807,6,0,0 +2013,4,17,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1232,-11,0,1519,-7,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1800,-1,0,2008,6,0,0 +2013,9,19,4,WN,12889,McCarran International,Las Vegas,NV,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,1,0,1740,-5,0,0 +2013,5,15,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,1200,-5,0,1438,-11,0,0 +2013,4,26,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,1705,2,0,1845,5,0,0 +2013,7,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12892,Los Angeles International,Los Angeles,CA,935,16,1,1200,7,0,0 +2013,7,4,4,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,2,0,1345,-36,0,0 +2013,9,7,6,WN,12191,William P Hobby,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,945,-1,0,1335,4,0,0 +2013,8,7,3,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,910,4,0,1040,-6,0,0 +2013,6,2,7,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1920,-5,0,30,-11,0,0 +2013,6,13,4,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,39,1,2000,52,1,0 +2013,4,21,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1559,-10,0,1853,-25,0,0 +2013,10,19,6,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1344,-6,0,1655,-12,0,0 +2013,4,18,4,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-10,0,905,8,0,0 +2013,9,17,2,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1238,-3,0,1334,-7,0,0 +2013,8,21,3,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1615,-2,0,1822,11,0,0 +2013,7,18,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2150,-6,0,2359,-1,0,0 +2013,6,26,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1810,110,1,1925,102,1,0 +2013,7,1,1,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,830,-5,0,1105,-7,0,0 +2013,7,15,1,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,-1,0,1925,-7,0,0 +2013,9,29,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1441,-4,0,2005,-9,0,0 +2013,8,17,6,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1315,-4,0,1440,-18,0,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1713,-1,0,2338,0,0,0 +2013,10,13,7,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,807,3,0,1031,-5,0,0 +2013,7,26,5,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1515,22,1,1825,13,0,0 +2013,5,1,3,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,715,-9,0,1534,-11,0,0 +2013,10,31,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2100,14,0,2212,9,0,0 +2013,7,21,7,WN,13204,Orlando International,Orlando,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,0,0,930,-12,0,0 +2013,5,10,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,600,-1,0,846,1,0,0 +2013,8,17,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1835,0,0,1925,-10,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,632,-4,0,841,2,0,0 +2013,5,19,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,2145,140,1,2257,142,1,0 +2013,10,11,5,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1911,24,1,2215,30,1,0 +2013,8,31,6,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,10,0,1705,-16,0,0 +2013,10,22,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,545,-5,0,720,-8,0,0 +2013,10,25,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,740,-7,0,1029,-14,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1901,-4,0,2133,-43,0,0 +2013,5,16,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,955,-4,0,1148,-2,0,0 +2013,6,25,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2045,-9,0,2135,-20,0,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,600,-1,0,840,-19,0,0 +2013,8,22,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,9,0,1235,6,0,0 +2013,6,15,6,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,1120,-2,0,1905,-3,0,0 +2013,4,24,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,2,0,2230,-5,0,0 +2013,7,8,1,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,950,14,0,1240,5,0,0 +2013,6,3,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,940,5,0,1050,31,1,0 +2013,8,23,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1305,20,1,1340,13,0,0 +2013,9,26,4,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1220,18,1,1415,10,0,0 +2013,5,18,6,B6,12478,John F. Kennedy International,New York,NY,10140,Albuquerque International Sunport,Albuquerque,NM,2001,-5,0,2308,-16,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1406,82,1,1452,85,1,0 +2013,10,7,1,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,820,3,0,1230,9,0,0 +2013,5,17,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1805,44,1,1915,38,1,0 +2013,7,8,1,US,14679,San Diego International,San Diego,CA,14100,Philadelphia International,Philadelphia,PA,630,0,,1445,0,1,1 +2013,4,24,3,OO,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,1036,2,0,1345,-3,0,0 +2013,8,31,6,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,-1,0,1140,0,0,0 +2013,9,2,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2115,-12,0,2230,-19,0,0 +2013,7,9,2,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1815,20,1,2056,44,1,0 +2013,6,1,6,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1113,8,0,1436,17,1,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1340,1,0,1725,2,0,0 +2013,7,31,3,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,1145,-2,0,1859,-4,0,0 +2013,8,29,4,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,2,0,1340,-2,0,0 +2013,7,26,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2255,-2,0,612,-30,0,0 +2013,10,29,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1305,39,1,1435,36,1,0 +2013,10,13,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,0,0,1847,-11,0,0 +2013,7,8,1,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1310,56,1,1540,46,1,0 +2013,10,16,3,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1320,6,0,1730,-5,0,0 +2013,9,27,5,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,900,-2,0,1645,-9,0,0 +2013,6,21,5,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,600,-6,0,805,-32,0,0 +2013,5,23,4,F9,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,810,30,1,919,34,1,0 +2013,5,15,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,10,0,1728,0,0,0 +2013,10,6,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1910,-2,0,2035,-29,0,0 +2013,5,8,3,AA,14524,Richmond International,Richmond,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,-2,0,910,-23,0,0 +2013,6,11,2,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1424,-3,0,1605,-14,0,0 +2013,4,12,5,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1625,43,1,1843,25,1,0 +2013,9,12,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1905,0,0,1912,-7,0,0 +2013,4,22,1,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1622,0,0,1746,2,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,1315,19,1,1615,25,1,0 +2013,10,7,1,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,804,-2,0,925,-14,0,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,2220,-2,0,105,5,0,0 +2013,5,30,4,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,745,-4,0,1033,-6,0,0 +2013,7,16,2,UA,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1947,69,1,2345,38,1,0 +2013,9,30,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1310,4,0,1415,2,0,0 +2013,7,19,5,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1520,-7,0,1705,-11,0,0 +2013,5,25,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,945,3,0,1050,15,1,0 +2013,4,4,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1720,23,1,2010,8,0,0 +2013,8,27,2,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1721,-6,0,2015,-5,0,0 +2013,10,18,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1215,9,0,1400,-3,0,0 +2013,8,24,6,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1345,-1,0,1547,-13,0,0 +2013,5,2,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-2,0,1029,-1,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1110,-1,0,1236,-3,0,0 +2013,10,24,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1700,15,1,1750,42,1,0 +2013,9,21,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1420,3,0,2200,1,0,0 +2013,5,19,7,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1625,45,1,1845,35,1,0 +2013,8,5,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,826,-15,0,0 +2013,6,27,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1125,0,0,1235,6,0,0 +2013,4,14,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1055,112,1,1221,104,1,0 +2013,9,3,2,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,0,0,1955,2,0,0 +2013,6,14,5,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-3,0,1245,-2,0,0 +2013,4,24,3,B6,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,1410,25,1,2230,48,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2306,-3,0,2310,-10,0,0 +2013,10,14,1,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-15,0,1148,-13,0,0 +2013,9,12,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1020,4,0,1250,-24,0,0 +2013,8,4,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1435,-2,0,1540,-2,0,0 +2013,4,7,7,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1345,0,0,1617,-11,0,0 +2013,7,16,2,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,730,-3,0,920,8,0,0 +2013,7,8,1,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,820,8,0,1630,43,1,0 +2013,6,4,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1850,32,1,1940,27,1,0 +2013,8,28,3,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,907,-6,0,1138,-19,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1233,-6,0,1755,-6,0,0 +2013,4,19,5,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1720,60,1,1838,102,1,0 +2013,6,17,1,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,549,-4,0,913,-21,0,0 +2013,5,2,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,745,80,1,935,73,1,0 +2013,4,24,3,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2120,4,0,20,7,0,0 +2013,9,15,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,-2,0,1659,-13,0,0 +2013,9,15,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1350,-10,0,1459,-18,0,0 +2013,8,11,7,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1850,-4,0,2125,-17,0,0 +2013,5,27,1,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2130,122,1,2315,111,1,0 +2013,7,21,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,7,0,1800,-7,0,0 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1010,64,1,1620,59,1,0 +2013,5,5,7,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1645,6,0,42,7,0,0 +2013,7,19,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,958,-6,0,0 +2013,6,29,6,OO,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1710,-8,0,1925,-16,0,0 +2013,8,13,2,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1959,-19,0,2147,-9,0,0 +2013,7,6,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,930,-9,0,1140,-3,0,0 +2013,6,8,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,823,24,1,925,15,1,0 +2013,4,11,4,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1010,-7,0,1110,-6,0,0 +2013,4,22,1,DL,14100,Philadelphia International,Philadelphia,PA,14869,Salt Lake City International,Salt Lake City,UT,710,-2,0,1005,-12,0,0 +2013,5,6,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-3,0,715,-1,0,0 +2013,9,26,4,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,919,-1,0,1052,-6,0,0 +2013,5,15,3,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,820,-8,0,1035,-22,0,0 +2013,10,21,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1515,-6,0,1632,-15,0,0 +2013,10,21,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1623,-2,0,1803,-16,0,0 +2013,8,11,7,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1942,4,0,2323,8,0,0 +2013,7,24,3,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,759,-10,0,850,-14,0,0 +2013,10,4,5,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,-4,0,1538,-31,0,0 +2013,5,29,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,709,-5,0,743,2,0,0 +2013,6,29,6,DL,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-4,0,1254,3,0,0 +2013,6,15,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-7,0,850,10,0,0 +2013,7,29,1,WN,13232,Chicago Midway International,Chicago,IL,13796,Metropolitan Oakland International,Oakland,CA,1335,4,0,1610,3,0,0 +2013,6,25,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1000,49,1,1230,53,1,0 +2013,4,4,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,2,0,925,-1,0,0 +2013,9,30,1,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,853,-7,0,1209,-11,0,0 +2013,7,31,3,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,805,0,0,0 +2013,5,7,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1530,-2,0,1650,-7,0,0 +2013,4,23,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1940,-1,0,2010,10,0,0 +2013,10,1,2,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1653,16,1,1925,25,1,0 +2013,8,18,7,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,-1,0,1530,-11,0,0 +2013,9,29,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,0,0,1115,-2,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1435,0,0,1625,-5,0,0 +2013,7,10,3,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,755,0,0,943,-18,0,0 +2013,10,26,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1333,-1,0,1408,2,0,0 +2013,8,23,5,DL,13342,General Mitchell International,Milwaukee,WI,11433,Detroit Metro Wayne County,Detroit,MI,1441,-1,0,1650,-3,0,0 +2013,6,29,6,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-5,0,500,-16,0,0 +2013,6,6,4,9E,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-3,0,1523,-14,0,0 +2013,4,11,4,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1155,57,1,1250,53,1,0 +2013,4,18,4,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,645,-1,0,810,-12,0,0 +2013,6,15,6,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,41,1,2145,29,1,0 +2013,5,6,1,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1721,63,1,1915,82,1,0 +2013,8,2,5,AA,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,-10,0,2000,-19,0,0 +2013,5,2,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1745,10,0,2010,1,0,0 +2013,7,21,7,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1015,10,0,1145,7,0,0 +2013,6,29,6,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,0,0,1030,-21,0,0 +2013,5,3,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1345,4,0,1510,-7,0,0 +2013,6,22,6,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,710,0,0,1305,19,1,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,645,9,0,825,-10,0,0 +2013,9,13,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,805,-5,0,1020,-35,0,0 +2013,6,19,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,0,0,1425,6,0,0 +2013,5,20,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1050,15,1,1327,1,0,0 +2013,5,13,1,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1820,-2,0,1930,-17,0,0 +2013,10,11,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,8,0,2120,-19,0,0 +2013,6,17,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-3,0,901,-16,0,0 +2013,7,28,7,MQ,13931,Norfolk International,Norfolk,VA,12478,John F. Kennedy International,New York,NY,1400,68,1,1525,81,1,0 +2013,5,5,7,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1350,-4,0,1620,-5,0,0 +2013,4,5,5,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1549,102,1,1811,90,1,0 +2013,5,14,2,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1835,3,0,1935,7,0,0 +2013,10,28,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1249,-6,0,1355,0,0,0 +2013,4,26,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1118,28,1,1239,25,1,0 +2013,10,7,1,WN,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,745,-1,0,950,-17,0,0 +2013,7,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,530,-1,0,805,-4,0,0 +2013,5,11,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1625,71,1,1730,95,1,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,1,0,50,-7,0,0 +2013,10,20,7,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1304,7,0,1410,14,0,0 +2013,6,18,2,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,610,-7,0,730,-17,0,0 +2013,6,18,2,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1950,11,0,2115,17,1,0 +2013,5,24,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1105,16,1,1225,22,1,0 +2013,7,1,1,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,-7,0,1905,-13,0,0 +2013,4,10,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,103,1,1925,99,1,0 +2013,4,28,7,AS,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,2255,-12,0,725,-4,0,0 +2013,10,15,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1451,13,0,1607,-2,0,0 +2013,7,29,1,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,715,-9,0,1004,-9,0,0 +2013,10,3,4,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1225,14,0,1400,10,0,0 +2013,10,28,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1330,-3,0,1508,-16,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1725,-4,0,1910,-13,0,0 +2013,9,19,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2134,-11,0,2206,-11,0,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1905,15,1,2145,-18,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1933,-4,0,2338,-23,0,0 +2013,9,24,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-4,0,1550,-21,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1245,29,1,1441,77,1,0 +2013,9,15,7,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,847,-4,0,1122,-11,0,0 +2013,9,8,7,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,6,0,1735,-22,0,0 +2013,10,26,6,AA,12892,Los Angeles International,Los Angeles,CA,14122,Pittsburgh International,Pittsburgh,PA,810,-1,0,1545,45,1,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1845,63,1,2011,49,1,0 +2013,5,17,5,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,601,0,0,1001,-9,0,0 +2013,10,26,6,EV,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1849,13,0,2030,-7,0,0 +2013,10,5,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1320,17,1,1440,15,1,0 +2013,6,24,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-1,0,952,-9,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,745,0,0,1005,-1,0,0 +2013,5,29,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,610,-2,0,720,-8,0,0 +2013,4,29,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,-3,0,1925,-6,0,0 +2013,10,29,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1029,-8,0,1214,-21,0,0 +2013,10,1,2,9E,14730,Louisville International-Standiford Field,Louisville,KY,11433,Detroit Metro Wayne County,Detroit,MI,1322,-12,0,1448,-5,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,730,2,0,1055,-6,0,0 +2013,10,29,2,WN,13342,General Mitchell International,Milwaukee,WI,14771,San Francisco International,San Francisco,CA,835,0,0,1110,1,0,0 +2013,10,27,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1346,-7,0,1535,-17,0,0 +2013,4,14,7,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1105,-3,0,1415,-5,0,0 +2013,5,11,6,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1602,-4,0,1854,-8,0,0 +2013,6,16,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2035,-3,0,2153,-9,0,0 +2013,4,23,2,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,830,-5,0,955,-16,0,0 +2013,6,8,6,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1247,72,1,1343,52,1,0 +2013,9,24,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1615,-7,0,1747,-7,0,0 +2013,10,24,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1449,-1,0,1644,-14,0,0 +2013,10,10,4,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1825,22,1,2115,14,0,0 +2013,5,17,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-10,0,715,-2,0,0 +2013,5,21,2,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2050,-1,0,15,-3,0,0 +2013,5,4,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1605,7,0,2010,1,0,0 +2013,4,23,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,845,45,1,1005,32,1,0 +2013,5,11,6,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1244,-7,0,1641,6,0,0 +2013,7,11,4,AA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1710,-4,0,1915,-21,0,0 +2013,5,28,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,730,-5,0,1051,-4,0,0 +2013,5,4,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,2,0,1538,-2,0,0 +2013,7,22,1,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,600,-1,0,615,-5,0,0 +2013,6,22,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,841,-7,0,1156,-16,0,0 +2013,6,9,7,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,18,1,1750,69,1,0 +2013,6,5,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-4,0,1405,-2,0,0 +2013,4,7,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1122,-1,0,1315,-18,0,0 +2013,6,21,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1936,-10,0,2233,-24,0,0 +2013,9,23,1,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,1240,6,0,1345,-1,0,0 +2013,5,22,3,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1735,1,0,1900,-3,0,0 +2013,10,8,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-6,0,1435,-7,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1135,-4,0,1450,-15,0,0 +2013,10,28,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1543,4,0,1722,-9,0,0 +2013,6,16,7,F9,13495,Louis Armstrong New Orleans International,New Orleans,LA,11292,Denver International,Denver,CO,1433,-3,0,1620,-7,0,0 +2013,4,1,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,2000,52,1,2125,46,1,0 +2013,9,13,5,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,655,-4,0,935,-13,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1259,-3,0,1346,0,0,0 +2013,8,10,6,EV,13244,Memphis International,Memphis,TN,11292,Denver International,Denver,CO,1344,15,1,1515,31,1,0 +2013,10,21,1,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,13,0,2020,1,0,0 +2013,5,24,5,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1155,102,1,1430,94,1,0 +2013,6,8,6,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,1450,-6,0,1717,-4,0,0 +2013,7,7,7,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,344,1,753,340,1,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2245,5,0,124,-3,0,0 +2013,4,17,3,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1755,-5,0,2045,-20,0,0 +2013,9,3,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-10,0,1850,-30,0,0 +2013,4,10,3,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1832,0,,2029,0,1,1 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,944,77,1,1300,74,1,0 +2013,8,6,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1906,9,0,2032,-7,0,0 +2013,4,6,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1305,-2,0,1620,-14,0,0 +2013,6,15,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2040,16,1,2225,15,1,0 +2013,5,8,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1630,-1,0,1740,0,0,0 +2013,9,9,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,610,-6,0,904,-18,0,0 +2013,7,15,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1650,129,1,1823,130,1,0 +2013,9,17,2,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,0,0,1200,-1,0,0 +2013,6,9,7,YV,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1115,0,0,1231,3,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1840,78,1,2155,91,1,0 +2013,8,5,1,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1425,-1,0,1737,-16,0,0 +2013,10,15,2,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,740,-2,0,900,-21,0,0 +2013,5,2,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,840,-1,0,1030,7,0,0 +2013,4,10,3,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,755,112,1,920,175,1,0 +2013,6,27,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,945,66,1,1229,57,1,0 +2013,4,6,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1505,-6,0,1633,-21,0,0 +2013,10,4,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1847,0,,2145,0,1,1 +2013,6,11,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1250,0,,1355,0,1,1 +2013,6,8,6,US,14100,Philadelphia International,Philadelphia,PA,14843,Luis Munoz Marin International,San Juan,PR,945,-5,0,1338,-10,0,0 +2013,9,21,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1630,12,0,1820,19,1,0 +2013,4,15,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,2200,9,0,2245,5,0,0 +2013,7,30,2,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1735,-4,0,1940,-15,0,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14683,San Antonio International,San Antonio,TX,1247,-7,0,1835,-3,0,0 +2013,5,20,1,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1435,82,1,1654,86,1,0 +2013,5,15,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1945,7,0,2045,2,0,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1245,8,0,1425,-1,0,0 +2013,7,15,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1340,32,1,1550,26,1,0 +2013,6,26,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-2,0,850,-15,0,0 +2013,8,12,1,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1425,1,0,2235,-32,0,0 +2013,5,8,3,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,-7,0,914,-42,0,0 +2013,6,7,5,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1012,-5,0,1315,-7,0,0 +2013,8,20,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,-3,0,2135,-7,0,0 +2013,8,26,1,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,932,-9,0,1750,-30,0,0 +2013,9,4,3,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,-3,0,1913,-2,0,0 +2013,8,23,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1759,13,0,1916,-5,0,0 +2013,7,8,1,MQ,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2210,22,1,2300,22,1,0 +2013,4,12,5,WN,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,1525,92,1,1840,78,1,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1900,4,0,2214,5,0,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1330,0,0,1455,-5,0,0 +2013,8,18,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1433,4,0,1450,-4,0,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1441,38,1,1629,36,1,0 +2013,9,15,7,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,2030,19,1,2130,49,1,0 +2013,9,13,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,2055,-6,0,2220,-18,0,0 +2013,4,8,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1532,-3,0,1820,-4,0,0 +2013,10,5,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1800,-1,0,1956,-1,0,0 +2013,7,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,945,2,0,1046,-1,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,700,3,0,920,-7,0,0 +2013,8,11,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1513,-6,0,1645,-14,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1620,20,1,1745,22,1,0 +2013,8,3,6,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,2109,-4,0,2237,1,0,0 +2013,10,31,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,945,15,1,1107,10,0,0 +2013,8,6,2,B6,10721,Logan International,Boston,MA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1932,56,1,2244,36,1,0 +2013,8,12,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1739,1,0,1816,11,0,0 +2013,9,27,5,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1845,0,0,2125,-21,0,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2010,-3,0,2223,-4,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1835,13,0,2200,-1,0,0 +2013,5,21,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,730,-1,0,1159,3,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,6,0,2314,-4,0,0 +2013,8,23,5,DL,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,829,-7,0,1028,-9,0,0 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1700,66,1,1952,61,1,0 +2013,5,9,4,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,951,-13,0,0 +2013,10,30,3,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1210,58,1,1730,54,1,0 +2013,8,10,6,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,635,1,0,810,-8,0,0 +2013,9,4,3,WN,10693,Nashville International,Nashville,TN,10721,Logan International,Boston,MA,1410,8,0,1730,10,0,0 +2013,6,11,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,50,1,2156,33,1,0 +2013,8,10,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1745,23,1,2105,18,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1115,-3,0,1338,-24,0,0 +2013,5,5,7,WN,10529,Bradley International,Hartford,CT,11292,Denver International,Denver,CO,845,-5,0,1105,-36,0,0 +2013,6,5,3,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-6,0,1115,-11,0,0 +2013,5,1,3,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1855,-7,0,2112,-10,0,0 +2013,8,5,1,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1809,-8,0,1919,-8,0,0 +2013,7,31,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1745,-5,0,1930,-6,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1220,23,1,1420,1,0,0 +2013,7,14,7,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1005,8,0,1226,8,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1620,-7,0,1851,30,1,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,2055,1,0,2200,-5,0,0 +2013,9,28,6,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,15,1,2240,6,0,0 +2013,5,8,3,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1830,-5,0,1935,-10,0,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1445,-5,0,1610,-10,0,0 +2013,8,26,1,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1331,-6,0,1646,-18,0,0 +2013,5,26,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,2,0,1325,-7,0,0 +2013,7,10,3,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,17,1,2056,23,1,0 +2013,7,10,3,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,655,-3,0,1000,-3,0,0 +2013,4,16,2,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1555,-1,0,1650,-9,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1250,0,0,1500,-7,0,0 +2013,4,18,4,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1712,80,1,1945,68,1,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1725,-2,0,1941,-23,0,0 +2013,10,25,5,AA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,750,0,0,1040,-6,0,0 +2013,9,22,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,2055,69,1,2220,62,1,0 +2013,4,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1545,15,1,1902,1,0,0 +2013,6,5,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,735,-3,0,809,2,0,0 +2013,9,14,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,3,0,1300,-2,0,0 +2013,4,30,2,WN,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,720,-6,0,1000,-4,0,0 +2013,5,24,5,DL,12339,Indianapolis International,Indianapolis,IN,11433,Detroit Metro Wayne County,Detroit,MI,1538,-1,0,1650,-4,0,0 +2013,4,13,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,1845,13,0,2112,-5,0,0 +2013,10,8,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,545,-3,0,710,-9,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1700,1,0,1940,63,1,0 +2013,6,10,1,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,800,8,0,1007,17,1,0 +2013,10,21,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1023,-8,0,1136,-12,0,0 +2013,4,8,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,908,39,1,1418,13,0,0 +2013,7,5,5,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1325,10,0,1410,8,0,0 +2013,5,3,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,62,1,1225,52,1,0 +2013,5,24,5,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1456,1,0,1633,-7,0,0 +2013,6,6,4,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1005,-9,0,1710,-16,0,0 +2013,4,23,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,2100,12,0,2211,81,1,0 +2013,5,12,7,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,21,1,2105,31,1,0 +2013,7,20,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-6,0,950,5,0,0 +2013,6,27,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1345,22,1,1615,12,0,0 +2013,7,9,2,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,7,0,1630,-11,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1613,2,0,1810,-12,0,0 +2013,4,14,7,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1200,-7,0,1442,-5,0,0 +2013,5,8,3,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,-4,0,540,3,0,0 +2013,8,13,2,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1625,24,1,1815,25,1,0 +2013,5,25,6,AS,14679,San Diego International,San Diego,CA,10721,Logan International,Boston,MA,930,-8,0,1755,4,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1045,-1,0,1223,-28,0,0 +2013,10,29,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1920,-5,0,2032,-11,0,0 +2013,7,1,1,WN,14683,San Antonio International,San Antonio,TX,10693,Nashville International,Nashville,TN,615,-1,0,830,-10,0,0 +2013,4,28,7,B6,14843,Luis Munoz Marin International,San Juan,PR,10721,Logan International,Boston,MA,1845,-8,0,2245,-9,0,0 +2013,6,9,7,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1425,45,1,1700,43,1,0 +2013,8,8,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-5,0,2059,-32,0,0 +2013,10,1,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1655,-6,0,2035,-1,0,0 +2013,5,14,2,UA,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,1725,-8,0,1902,-27,0,0 +2013,7,18,4,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1513,-8,0,1626,-16,0,0 +2013,7,1,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,-6,0,2217,-22,0,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1750,8,0,1905,-4,0,0 +2013,7,25,4,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1559,-1,0,1816,20,1,0 +2013,10,27,7,B6,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1208,0,0,1338,-4,0,0 +2013,7,10,3,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,116,1,2212,106,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1340,8,0,1622,-14,0,0 +2013,5,17,5,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-2,0,1120,12,0,0 +2013,4,16,2,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-10,0,1821,-28,0,0 +2013,6,5,3,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1850,2,0,2035,-10,0,0 +2013,10,7,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,840,5,0,1210,-1,0,0 +2013,6,6,4,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,15,1,745,17,1,0 +2013,8,19,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1420,0,,1630,0,1,1 +2013,7,5,5,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1520,-6,0,1705,-10,0,0 +2013,10,1,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1910,-4,0,2145,-9,0,0 +2013,10,11,5,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1035,-13,0,1305,-17,0,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1430,24,1,1611,24,1,0 +2013,8,2,5,DL,10423,Austin - Bergstrom International,Austin,TX,14869,Salt Lake City International,Salt Lake City,UT,1416,-6,0,1603,-14,0,0 +2013,6,14,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,545,-5,0,720,-19,0,0 +2013,4,17,3,US,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1000,-7,0,1216,-18,0,0 +2013,8,21,3,YV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,2204,0,0,2319,-8,0,0 +2013,6,20,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1300,0,0,1400,0,0,0 +2013,8,23,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,-1,0,1454,-6,0,0 +2013,4,2,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-1,0,825,-5,0,0 +2013,9,3,2,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,30,1,1420,-7,0,0 +2013,7,2,2,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,700,-4,0,820,-6,0,0 +2013,7,24,3,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,925,0,0,945,-4,0,0 +2013,10,14,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-1,0,912,3,0,0 +2013,7,31,3,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1040,62,1,1630,33,1,0 +2013,8,28,3,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-2,0,1405,-11,0,0 +2013,5,16,4,EV,13342,General Mitchell International,Milwaukee,WI,11618,Newark Liberty International,Newark,NJ,922,64,1,1235,59,1,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1730,14,0,1835,23,1,0 +2013,9,29,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1200,20,1,1635,10,0,0 +2013,8,29,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,830,-4,0,929,-3,0,0 +2013,7,1,1,9E,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1605,0,,1804,0,1,1 +2013,9,20,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,50,1,2125,30,1,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1015,-4,0,1356,9,0,0 +2013,7,31,3,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2155,43,1,105,46,1,0 +2013,10,12,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,910,-5,0,1245,-4,0,0 +2013,10,27,7,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,2003,31,1,2212,24,1,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1605,73,1,1736,154,1,0 +2013,8,17,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1400,0,0,1648,6,0,0 +2013,10,13,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,5,0,1500,-8,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1930,0,0,2025,5,0,0 +2013,10,24,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1725,5,0,1810,5,0,0 +2013,4,24,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1210,-1,0,1335,-2,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,5,0,1444,-22,0,0 +2013,5,1,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,2235,-2,0,2250,-11,0,0 +2013,6,2,7,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1210,4,0,1335,-3,0,0 +2013,9,13,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-7,0,1021,6,0,0 +2013,6,11,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1235,-3,0,1505,-13,0,0 +2013,10,13,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1520,-5,0,1530,-9,0,0 +2013,10,16,3,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,905,-1,0,1124,1,0,0 +2013,10,31,4,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-6,0,1601,-11,0,0 +2013,4,7,7,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,2230,10,0,433,-9,0,0 +2013,5,26,7,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1410,4,0,1530,2,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,710,18,1,925,3,0,0 +2013,8,28,3,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,850,-11,0,1121,-7,0,0 +2013,7,23,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1015,2,0,1216,40,1,0 +2013,6,8,6,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,3,0,1230,2,0,0 +2013,9,1,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,13,0,1445,15,1,0 +2013,7,24,3,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1655,-3,0,1806,-2,0,0 +2013,8,25,7,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1225,-6,0,1353,-15,0,0 +2013,6,28,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,7,0,1820,-1,0,0 +2013,9,13,5,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,4,0,1913,22,1,0 +2013,5,10,5,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,199,1,2330,213,1,0 +2013,7,15,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1345,9,0,1450,13,0,0 +2013,4,18,4,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1459,-1,0,1632,-9,0,0 +2013,10,31,4,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1600,-7,0,1628,8,0,0 +2013,4,29,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,92,1,2104,88,1,0 +2013,8,7,3,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1125,6,0,1414,37,1,0 +2013,10,27,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1000,-6,0,1207,4,0,0 +2013,6,28,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14057,Portland International,Portland,OR,1833,77,1,2043,50,1,0 +2013,7,13,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,725,6,0,905,0,0,0 +2013,7,3,3,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2350,19,1,724,19,1,0 +2013,8,4,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,3,0,2159,0,0,0 +2013,8,7,3,F9,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1850,8,0,16,27,1,0 +2013,6,15,6,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-3,0,908,-20,0,0 +2013,8,12,1,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1106,10,0,1208,1,0,0 +2013,6,2,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,-2,0,1405,-3,0,0 +2013,5,19,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,630,-3,0,725,-1,0,0 +2013,6,3,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1759,-5,0,1925,-17,0,0 +2013,7,6,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1621,-1,0,1827,-7,0,0 +2013,7,13,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,40,1,2128,48,1,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,849,-6,0,1613,31,1,0 +2013,9,26,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1248,-5,0,1801,-17,0,0 +2013,7,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1735,18,1,1915,35,1,0 +2013,8,2,5,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1415,81,1,1549,75,1,0 +2013,5,24,5,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1111,11,0,1408,30,1,0 +2013,10,15,2,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1955,32,1,2145,8,0,0 +2013,6,22,6,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,31,1,2035,12,0,0 +2013,7,22,1,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,40,35,1,853,25,1,0 +2013,4,22,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1010,-5,0,1029,-15,0,0 +2013,7,8,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,0,0,1022,-19,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1300,-4,0,1427,-15,0,0 +2013,9,22,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1300,26,1,1455,11,0,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-5,0,1431,-30,0,0 +2013,7,15,1,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,1957,1,0,2309,-13,0,0 +2013,5,12,7,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2230,71,1,2354,51,1,0 +2013,6,12,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2000,0,,2137,0,1,1 +2013,5,3,5,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,720,-6,0,940,-16,0,0 +2013,4,5,5,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1945,27,1,2122,19,1,0 +2013,8,13,2,9E,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1800,-2,0,2004,-2,0,0 +2013,7,15,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-3,0,1309,3,0,0 +2013,8,13,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,1605,16,1,1725,15,1,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,705,-5,0,810,-13,0,0 +2013,10,24,4,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,1215,-7,0,1329,-15,0,0 +2013,5,29,3,WN,13342,General Mitchell International,Milwaukee,WI,13495,Louis Armstrong New Orleans International,New Orleans,LA,1705,63,1,1925,72,1,0 +2013,10,25,5,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,840,-2,0,1020,11,0,0 +2013,4,27,6,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,528,-7,0,734,-10,0,0 +2013,7,21,7,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1056,35,1,1325,36,1,0 +2013,5,18,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-7,0,759,-13,0,0 +2013,4,22,1,OO,14057,Portland International,Portland,OR,10800,Bob Hope,Burbank,CA,1235,-8,0,1444,-22,0,0 +2013,9,16,1,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,620,-7,0,715,-16,0,0 +2013,4,26,5,US,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,615,-4,0,1028,-27,0,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1910,11,0,2059,-10,0,0 +2013,4,29,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1335,-2,0,1630,-20,0,0 +2013,10,14,1,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,530,191,1,654,299,1,0 +2013,10,21,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1525,-5,0,2150,2,0,0 +2013,8,8,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1015,-4,0,1206,-9,0,0 +2013,5,14,2,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,1,0,1900,6,0,0 +2013,10,14,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-1,0,925,9,0,0 +2013,8,5,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,-1,0,1521,2,0,0 +2013,5,12,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14122,Pittsburgh International,Pittsburgh,PA,859,-3,0,1603,6,0,0 +2013,5,19,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1630,7,0,2323,28,1,0 +2013,4,21,7,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,950,-3,0,1110,-11,0,0 +2013,8,28,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1334,0,0,1727,10,0,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1645,18,1,1940,13,0,0 +2013,9,2,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,1110,-3,0,1240,-11,0,0 +2013,9,9,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,955,8,0,1600,4,0,0 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1703,6,0,2021,7,0,0 +2013,6,29,6,UA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2013,26,1,2135,16,1,0 +2013,5,20,1,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,615,-4,0,810,-30,0,0 +2013,6,17,1,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,735,-2,0,1305,-20,0,0 +2013,9,15,7,B6,10721,Logan International,Boston,MA,10423,Austin - Bergstrom International,Austin,TX,729,-5,0,1050,-23,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,14679,San Diego International,San Diego,CA,1805,14,0,1925,13,0,0 +2013,4,5,5,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1329,-10,0,1350,-18,0,0 +2013,4,5,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,910,-6,0,1115,-8,0,0 +2013,9,22,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1826,-6,0,1953,-21,0,0 +2013,10,15,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1350,-3,0,1502,-15,0,0 +2013,4,10,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,1700,12,0,1810,9,0,0 +2013,8,11,7,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,830,14,0,1050,2,0,0 +2013,4,16,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1250,-7,0,1440,-13,0,0 +2013,4,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2010,-7,0,2158,-6,0,0 +2013,4,6,6,FL,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1141,-10,0,1405,2,0,0 +2013,5,14,2,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-3,0,2046,-8,0,0 +2013,9,29,7,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2205,-8,0,555,-6,0,0 +2013,10,20,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1516,6,0,1645,2,0,0 +2013,6,10,1,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1905,11,0,2110,-9,0,0 +2013,4,15,1,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1540,-8,0,1756,-6,0,0 +2013,8,30,5,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1940,-8,0,2157,-18,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,2235,1,0,2345,-15,0,0 +2013,4,10,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1150,-10,0,0 +2013,9,2,1,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,1,0,1348,4,0,0 +2013,5,2,4,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-2,0,715,-13,0,0 +2013,7,17,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,2010,-5,0,2219,-7,0,0 +2013,6,18,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2215,0,,2329,0,1,1 +2013,5,12,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,708,-7,0,814,-15,0,0 +2013,8,30,5,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1015,-6,0,1412,-28,0,0 +2013,4,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1310,7,0,1459,27,1,0 +2013,5,10,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1225,-3,0,1334,-3,0,0 +2013,7,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1520,34,1,1745,31,1,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,12451,Jacksonville International,Jacksonville,FL,1105,44,1,1820,24,1,0 +2013,7,23,2,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-5,0,1409,2,0,0 +2013,6,10,1,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2004,-2,0,2108,-6,0,0 +2013,5,12,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1822,0,0,2059,-44,0,0 +2013,10,5,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2030,-6,0,2152,-1,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,1355,13,0,1451,0,0,0 +2013,5,22,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1506,37,1,1608,39,1,0 +2013,7,14,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2005,-3,0,2050,-1,0,0 +2013,7,12,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1940,148,1,2148,132,1,0 +2013,8,3,6,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1735,35,1,1850,71,1,0 +2013,10,10,4,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1400,39,1,1500,35,1,0 +2013,6,21,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-9,0,1417,-13,0,0 +2013,9,2,1,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1632,-12,0,1721,-21,0,0 +2013,5,3,5,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,2055,0,,2220,0,1,1 +2013,8,5,1,WN,13851,Will Rogers World,Oklahoma City,OK,15016,Lambert-St. Louis International,St. Louis,MO,1710,1,0,1835,-3,0,0 +2013,5,18,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-7,0,1405,7,0,0 +2013,7,24,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1140,-4,0,1331,-1,0,0 +2013,6,20,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1113,-2,0,1155,0,0,0 +2013,8,13,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1055,64,1,1425,59,1,0 +2013,6,14,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1141,0,0,1332,3,0,0 +2013,9,6,5,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,825,-1,0,1030,-9,0,0 +2013,7,10,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,625,2,0,800,4,0,0 +2013,6,22,6,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,950,-3,0,1310,-8,0,0 +2013,8,26,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2115,-1,0,2244,-20,0,0 +2013,7,22,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1920,2,0,2110,-1,0,0 +2013,7,1,1,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1326,-10,0,1501,-19,0,0 +2013,9,26,4,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,745,-6,0,1202,4,0,0 +2013,8,11,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,173,1,1457,167,1,0 +2013,5,26,7,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1345,-1,0,1700,-20,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2040,-7,0,2218,-16,0,0 +2013,6,23,7,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-6,0,1019,-12,0,0 +2013,8,10,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1025,-2,0,1130,-11,0,0 +2013,4,24,3,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1340,-5,0,1644,-13,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,930,2,0,1105,-26,0,0 +2013,9,30,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,700,-9,0,721,-19,0,0 +2013,5,19,7,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,635,-3,0,1230,3,0,0 +2013,4,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12173,Honolulu International,Honolulu,HI,1155,-4,0,1446,-28,0,0 +2013,4,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,745,10,0,915,-1,0,0 +2013,6,23,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1235,-4,0,1705,0,0,0 +2013,4,21,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,832,-6,0,1700,6,0,0 +2013,5,10,5,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-2,0,1110,-17,0,0 +2013,10,4,5,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1300,-6,0,1505,-9,0,0 +2013,8,6,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,835,-5,0,1140,-10,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,2104,21,1,14,-12,0,0 +2013,7,23,2,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-2,0,750,-4,0,0 +2013,7,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1505,0,0,1618,-16,0,0 +2013,4,10,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,1350,-4,0,1532,-13,0,0 +2013,4,17,3,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,610,-6,0,745,-20,0,0 +2013,9,27,5,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2156,-8,0,2344,-8,0,0 +2013,8,20,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14570,Reno/Tahoe International,Reno,NV,905,-4,0,1025,7,0,0 +2013,6,8,6,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,3,0,2020,-8,0,0 +2013,4,16,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,71,1,1956,88,1,0 +2013,8,23,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1320,0,0,1425,-19,0,0 +2013,10,15,2,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1350,17,1,1705,8,0,0 +2013,5,23,4,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,2030,137,1,2152,138,1,0 +2013,6,2,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1600,-5,0,1839,-13,0,0 +2013,9,29,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,600,-9,0,800,-5,0,0 +2013,6,27,4,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,930,-10,0,1205,7,0,0 +2013,4,25,4,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1130,-7,0,1950,-12,0,0 +2013,4,12,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1203,-1,0,1422,-10,0,0 +2013,4,14,7,WN,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1845,14,0,2130,6,0,0 +2013,8,4,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,-3,0,1708,-24,0,0 +2013,10,4,5,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1525,57,1,1746,48,1,0 +2013,4,27,6,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-3,0,1325,-15,0,0 +2013,5,14,2,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,2,0,915,-2,0,0 +2013,5,16,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,1,0,1130,0,0,0 +2013,7,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1731,2,0,1835,-10,0,0 +2013,6,23,7,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2225,50,1,2340,51,1,0 +2013,5,4,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1455,-7,0,1801,-21,0,0 +2013,7,28,7,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,115,16,1,615,1,0,0 +2013,4,23,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1729,0,0,2030,-3,0,0 +2013,8,24,6,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,1,0,1755,0,0,0 +2013,4,19,5,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,83,1,2054,78,1,0 +2013,9,15,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1527,1,0,1842,-3,0,0 +2013,5,3,5,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1340,15,1,1640,9,0,0 +2013,5,27,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1341,-9,0,1632,-13,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,740,-4,0,1039,-20,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1208,-3,0,1355,-12,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1130,-5,0,1440,-19,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1320,28,1,1630,18,1,0 +2013,10,24,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1010,0,0,1125,0,0,0 +2013,4,7,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1630,2,0,1839,-15,0,0 +2013,4,6,6,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1539,-6,0,1819,-22,0,0 +2013,8,28,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1130,-2,0,1550,-9,0,0 +2013,6,25,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,1655,-2,0,1755,-11,0,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,37,1,1910,27,1,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,78,1,815,84,1,0 +2013,6,30,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1600,3,0,1705,-9,0,0 +2013,4,23,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,714,-11,0,845,-17,0,0 +2013,5,20,1,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,0,0,1828,-1,0,0 +2013,10,29,2,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,1120,-5,0,1332,-11,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1725,33,1,2040,11,0,0 +2013,5,20,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,163,1,2105,136,1,0 +2013,7,16,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1355,-4,0,1500,-21,0,0 +2013,6,30,7,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,0,,1700,0,1,1 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1340,-5,0,1528,-11,0,0 +2013,8,3,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1145,18,1,1425,27,1,0 +2013,7,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1331,-6,0,1643,-7,0,0 +2013,6,28,5,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,550,-2,0,740,-17,0,0 +2013,10,30,3,US,13830,Kahului Airport,Kahului,HI,14107,Phoenix Sky Harbor International,Phoenix,AZ,2230,-10,0,716,-5,0,0 +2013,4,14,7,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-10,0,1035,-11,0,0 +2013,9,30,1,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,1749,-4,0,1924,-8,0,0 +2013,6,19,3,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,1102,6,0,1948,-18,0,0 +2013,6,18,2,WN,13198,Kansas City International,Kansas City,MO,12339,Indianapolis International,Indianapolis,IN,2050,17,1,2310,10,0,0 +2013,8,13,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1928,-1,0,2048,-9,0,0 +2013,4,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-2,0,825,-1,0,0 +2013,5,16,4,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,1,0,2020,-3,0,0 +2013,7,1,1,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1532,6,0,1833,4,0,0 +2013,6,26,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,1735,3,0,2210,11,0,0 +2013,7,17,3,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1010,-10,0,1302,-6,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,2225,-6,0,2337,-21,0,0 +2013,8,24,6,WN,14307,Theodore Francis Green State,Providence,RI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,725,-5,0,1035,-11,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1120,3,0,1515,6,0,0 +2013,4,17,3,F9,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1040,0,0,1501,49,1,0 +2013,8,5,1,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1555,0,0,1740,10,0,0 +2013,4,17,3,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,-1,0,1330,-4,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1730,-9,0,2015,-20,0,0 +2013,7,21,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1730,6,0,1922,1,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1620,0,0,1948,7,0,0 +2013,8,19,1,B6,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,805,-4,0,946,-11,0,0 +2013,7,16,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,-4,0,2036,11,0,0 +2013,10,28,1,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,725,2,0,1010,-9,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1855,16,1,1955,9,0,0 +2013,10,25,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,705,6,0,0 +2013,10,14,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-4,0,933,11,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1735,0,0,2018,-9,0,0 +2013,8,9,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1420,-5,0,1608,-8,0,0 +2013,8,8,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1514,58,1,1644,50,1,0 +2013,5,20,1,AS,14057,Portland International,Portland,OR,11278,Ronald Reagan Washington National,Washington,DC,945,-4,0,1740,59,1,0 +2013,6,12,3,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1505,22,1,2105,180,1,0 +2013,5,30,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2220,-10,0,47,-3,0,0 +2013,4,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2210,14,0,4,0,0,0 +2013,5,18,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,820,-7,0,940,-25,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,935,-3,0,1027,-1,0,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,820,-5,0,1005,-15,0,0 +2013,5,12,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1655,11,0,1850,10,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,815,-2,0,1029,-21,0,0 +2013,9,22,7,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-4,0,1636,-12,0,0 +2013,8,23,5,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2254,-6,0,2342,-6,0,0 +2013,9,16,1,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1850,3,0,2015,-6,0,0 +2013,10,17,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,1405,18,1,2005,20,1,0 +2013,8,4,7,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,755,8,0,932,17,1,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1005,24,1,1110,28,1,0 +2013,6,3,1,VX,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1150,15,1,1755,14,0,0 +2013,6,4,2,OO,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1456,0,0,1749,-3,0,0 +2013,7,16,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1820,62,1,2335,81,1,0 +2013,6,21,5,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,13,0,1535,6,0,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1910,-5,0,100,-12,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,1548,10,0,1801,34,1,0 +2013,7,24,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,759,6,0,1026,3,0,0 +2013,10,7,1,9E,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1315,-4,0,1520,57,1,0 +2013,6,17,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1325,12,0,1553,23,1,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,2210,-3,0,2322,-16,0,0 +2013,6,14,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1906,1,0,2111,-12,0,0 +2013,9,2,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1705,-5,0,1849,-2,0,0 +2013,6,28,5,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-8,0,749,-13,0,0 +2013,6,27,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,930,-6,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1046,3,0,1150,11,0,0 +2013,7,22,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,2,0,1905,-1,0,0 +2013,9,14,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1036,-5,0,1300,-10,0,0 +2013,4,1,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,0,,1241,0,1,1 +2013,10,11,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1655,6,0,1755,8,0,0 +2013,6,8,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,810,7,0,1030,-12,0,0 +2013,8,16,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,705,-3,0,1003,-13,0,0 +2013,6,30,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1440,0,0,1555,-6,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1025,1,0,1400,0,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,815,-2,0,925,-8,0,0 +2013,6,15,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1120,-5,0,1308,-11,0,0 +2013,4,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2005,1,0,2345,-8,0,0 +2013,9,12,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,2005,-6,0,2125,-10,0,0 +2013,8,25,7,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,4,0,2007,6,0,0 +2013,8,21,3,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1850,-3,0,2020,-4,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1817,-2,0,2004,12,0,0 +2013,10,23,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,745,-4,0,925,2,0,0 +2013,8,7,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,605,0,0,1008,-13,0,0 +2013,8,28,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1947,-3,0,2008,-15,0,0 +2013,6,14,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,40,1,0,655,-6,0,0 +2013,6,8,6,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1038,5,0,1306,-18,0,0 +2013,7,19,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-2,0,1205,-4,0,0 +2013,8,23,5,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,2228,-2,0,608,-10,0,0 +2013,10,23,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12173,Honolulu International,Honolulu,HI,1035,-5,0,1417,-2,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1525,10,0,1620,2,0,0 +2013,8,19,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1830,-3,0,2012,-16,0,0 +2013,9,23,1,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1350,20,1,1625,8,0,0 +2013,8,24,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,810,3,0,925,0,0,0 +2013,7,27,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,645,-2,0,1010,24,1,0 +2013,10,7,1,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1910,40,1,2053,50,1,0 +2013,7,17,3,UA,14771,San Francisco International,San Francisco,CA,14122,Pittsburgh International,Pittsburgh,PA,2239,22,1,631,44,1,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2150,-3,0,2339,-19,0,0 +2013,5,31,5,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1210,-2,0,1232,7,0,0 +2013,5,23,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,2017,3,0,2118,3,0,0 +2013,5,22,3,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1305,1,0,1450,3,0,0 +2013,4,2,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1052,-4,0,1315,-4,0,0 +2013,4,4,4,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,610,-4,0,857,11,0,0 +2013,8,2,5,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,900,104,1,1015,99,1,0 +2013,4,17,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,600,101,1,729,109,1,0 +2013,6,28,5,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-1,0,1215,-5,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,2150,1,0,2245,2,0,0 +2013,9,10,2,WN,15304,Tampa International,Tampa,FL,14683,San Antonio International,San Antonio,TX,1400,7,0,1535,9,0,0 +2013,7,11,4,WN,14747,Seattle/Tacoma International,Seattle,WA,13232,Chicago Midway International,Chicago,IL,1420,13,0,2020,3,0,0 +2013,5,8,3,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,706,-16,0,0 +2013,5,15,3,EV,13198,Kansas City International,Kansas City,MO,12953,LaGuardia,New York,NY,1100,15,1,1452,2,0,0 +2013,8,14,3,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,700,0,0,1456,-5,0,0 +2013,9,22,7,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,1620,17,1,1730,3,0,0 +2013,7,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,600,3,0,710,6,0,0 +2013,10,17,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,1,0,1454,-8,0,0 +2013,9,15,7,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,720,-5,0,1000,-18,0,0 +2013,5,24,5,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-3,0,1538,32,1,0 +2013,4,18,4,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,710,-6,0,1005,5,0,0 +2013,5,26,7,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,1200,-8,0,1205,-13,0,0 +2013,7,10,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,715,3,0,730,35,1,0 +2013,4,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1003,2,0,1344,-1,0,0 +2013,4,11,4,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1835,5,0,1955,13,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,1,0,800,-7,0,0 +2013,8,9,5,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-6,0,1314,-25,0,0 +2013,6,15,6,AA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1300,3,0,2120,-28,0,0 +2013,5,6,1,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,953,-7,0,1208,-12,0,0 +2013,7,7,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,1252,-12,0,0 +2013,7,8,1,AS,15376,Tucson International,Tucson,AZ,14747,Seattle/Tacoma International,Seattle,WA,1350,-11,0,1644,-10,0,0 +2013,5,1,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,13,0,1955,11,0,0 +2013,8,8,4,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,0,0,1305,7,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,940,-2,0,1110,-11,0,0 +2013,7,2,2,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1905,22,1,2140,1,0,0 +2013,6,9,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,939,0,0,1123,-28,0,0 +2013,10,5,6,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1820,7,0,1930,4,0,0 +2013,7,7,7,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1901,0,,1957,0,1,1 +2013,4,19,5,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1110,-5,0,1228,-12,0,0 +2013,6,1,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-6,0,1554,-8,0,0 +2013,10,29,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,605,-6,0,720,-6,0,0 +2013,8,27,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-6,0,829,-10,0,0 +2013,4,30,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1515,2,0,1700,-6,0,0 +2013,9,20,5,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,940,-10,0,1232,-34,0,0 +2013,4,28,7,VX,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1240,63,1,1525,70,1,0 +2013,10,7,1,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1135,56,1,1300,57,1,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,750,-5,0,955,-1,0,0 +2013,4,2,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,13204,Orlando International,Orlando,FL,1540,-5,0,1807,-19,0,0 +2013,8,1,4,DL,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,800,0,0,1006,-10,0,0 +2013,9,25,3,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1525,-1,0,1720,-18,0,0 +2013,10,24,4,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1917,-1,0,2048,-8,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1754,-5,0,2043,-18,0,0 +2013,4,8,1,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,-6,0,720,2,0,0 +2013,10,3,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1030,1,0,1159,-3,0,0 +2013,4,28,7,MQ,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-4,0,920,-1,0,0 +2013,4,24,3,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1240,-2,0,1350,-12,0,0 +2013,10,15,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1305,2,0,1405,12,0,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,645,81,1,955,76,1,0 +2013,7,31,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1325,-9,0,1505,-26,0,0 +2013,4,14,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,-3,0,1305,-4,0,0 +2013,7,1,1,AS,13891,Ontario International,Ontario,CA,14747,Seattle/Tacoma International,Seattle,WA,1045,-3,0,1310,-16,0,0 +2013,6,5,3,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2230,20,1,709,-10,0,0 +2013,10,31,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,2059,-9,0,2300,-29,0,0 +2013,5,14,2,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,15,1,1643,5,0,0 +2013,10,3,4,B6,12953,LaGuardia,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,729,-5,0,1021,-8,0,0 +2013,5,6,1,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,2055,0,0,2340,-8,0,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1020,-6,0,1351,-17,0,0 +2013,5,20,1,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,0,0,1854,8,0,0 +2013,7,9,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1825,7,0,2116,-18,0,0 +2013,7,31,3,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,635,2,0,810,0,0,0 +2013,5,3,5,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,2,0,1140,4,0,0 +2013,4,5,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1217,-13,0,1529,-18,0,0 +2013,4,1,1,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,930,-6,0,1016,-6,0,0 +2013,7,4,4,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1525,0,0,2055,-4,0,0 +2013,7,20,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1420,-3,0,1544,-9,0,0 +2013,6,10,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,2145,13,0,2243,6,0,0 +2013,8,30,5,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,615,3,0,810,-4,0,0 +2013,6,7,5,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,13,0,1215,25,1,0 +2013,7,29,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1728,-4,0,1802,0,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,940,8,0,1049,6,0,0 +2013,8,30,5,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,-3,0,805,-5,0,0 +2013,6,5,3,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1115,2,0,1535,-11,0,0 +2013,10,4,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,2100,-3,0,2130,-5,0,0 +2013,8,8,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1415,82,1,2030,69,1,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1900,3,0,2325,-15,0,0 +2013,9,5,4,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1950,0,0,2135,-7,0,0 +2013,9,28,6,UA,14679,San Diego International,San Diego,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1313,0,0,1815,-1,0,0 +2013,5,19,7,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,540,-6,0,702,-13,0,0 +2013,4,13,6,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-8,0,851,-29,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,927,-3,0,1021,-6,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,22,1,1145,7,0,0 +2013,8,25,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-5,0,1200,-13,0,0 +2013,10,7,1,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1135,-5,0,1250,6,0,0 +2013,10,17,4,AA,11066,Port Columbus International,Columbus,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,1,0,1735,-7,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,0,0,2244,9,0,0 +2013,10,20,7,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1310,-5,0,1429,-12,0,0 +2013,4,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1920,-4,0,2045,-6,0,0 +2013,4,26,5,9E,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1823,-5,0,2100,-12,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1745,78,1,1907,77,1,0 +2013,7,3,3,EV,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1438,-2,0,1659,-5,0,0 +2013,6,4,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,0,0,606,-20,0,0 +2013,8,6,2,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-8,0,1558,-2,0,0 +2013,9,20,5,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1235,-4,0,1550,31,1,0 +2013,10,4,5,MQ,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,620,-5,0,725,-6,0,0 +2013,7,5,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,944,-3,0,1133,-5,0,0 +2013,4,5,5,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1935,23,1,2045,26,1,0 +2013,10,23,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,650,-1,0,825,-14,0,0 +2013,10,22,2,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,19,1,810,30,1,0 +2013,6,16,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1605,1,0,1710,2,0,0 +2013,8,3,6,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1640,24,1,1925,40,1,0 +2013,4,27,6,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1515,-3,0,1715,-5,0,0 +2013,10,28,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1740,49,1,1901,40,1,0 +2013,7,26,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,88,1,1415,102,1,0 +2013,4,26,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1651,5,0,2026,-24,0,0 +2013,8,30,5,B6,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,1035,-9,0,1515,-18,0,0 +2013,5,14,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,700,22,1,755,26,1,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,2,0,1400,29,1,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2200,63,1,2305,55,1,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,1,0,802,-17,0,0 +2013,6,6,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,610,-4,0,809,-12,0,0 +2013,7,12,5,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,855,-10,0,1026,-18,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,2200,230,1,2306,221,1,0 +2013,7,2,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2045,10,0,2235,7,0,0 +2013,8,21,3,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,0,0,1750,-2,0,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1100,29,1,1155,28,1,0 +2013,10,19,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-4,0,1252,-6,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1105,-3,0,1114,-5,0,0 +2013,7,26,5,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,610,-1,0,725,-8,0,0 +2013,6,5,3,US,14100,Philadelphia International,Philadelphia,PA,14893,Sacramento International,Sacramento,CA,1750,3,0,2045,19,1,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,710,-3,0,835,-10,0,0 +2013,6,9,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,2055,-5,0,2243,-21,0,0 +2013,8,13,2,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1641,20,1,1823,18,1,0 +2013,4,13,6,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1830,3,0,2050,-1,0,0 +2013,8,23,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1959,17,1,2154,24,1,0 +2013,4,8,1,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,-1,0,722,8,0,0 +2013,9,24,2,AA,13303,Miami International,Miami,FL,12264,Washington Dulles International,Washington,DC,2055,45,1,2325,34,1,0 +2013,10,31,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,0,0,1338,-16,0,0 +2013,5,11,6,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1140,-3,0,1300,7,0,0 +2013,8,11,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,10,0,1641,26,1,0 +2013,6,16,7,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1054,-1,0,1300,-15,0,0 +2013,9,18,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1735,5,0,1840,-2,0,0 +2013,6,9,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1810,92,1,1950,79,1,0 +2013,4,16,2,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1317,10,0,1557,15,1,0 +2013,7,11,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,10,0,1305,9,0,0 +2013,6,20,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,1,0,1305,-4,0,0 +2013,10,27,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-5,0,1819,-16,0,0 +2013,10,31,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-5,0,840,13,0,0 +2013,8,27,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,600,-3,0,810,1,0,0 +2013,4,4,4,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,645,-2,0,1020,-13,0,0 +2013,5,1,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1140,5,0,1610,-3,0,0 +2013,5,20,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1110,-9,0,1441,-10,0,0 +2013,5,11,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,600,-5,0,913,-39,0,0 +2013,7,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1925,0,,2340,0,1,1 +2013,10,21,1,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1459,-2,0,1756,-21,0,0 +2013,6,19,3,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1330,31,1,1445,21,1,0 +2013,8,3,6,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,815,-3,0,1050,0,0,0 +2013,10,29,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1200,-4,0,1304,-18,0,0 +2013,7,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,915,1,0,1130,-5,0,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,909,-1,0,1155,16,1,0 +2013,6,24,1,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,600,0,,915,0,1,1 +2013,8,11,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1800,37,1,2125,15,1,0 +2013,10,13,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,935,-1,0,1005,1,0,0 +2013,5,22,3,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,815,-1,0,940,-12,0,0 +2013,4,22,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1113,-7,0,1415,-1,0,0 +2013,4,4,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1600,-1,0,1725,-9,0,0 +2013,10,19,6,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,59,-2,0,634,-6,0,0 +2013,5,23,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1800,0,,1913,0,1,1 +2013,5,1,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1749,-5,0,2057,-25,0,0 +2013,6,16,7,US,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-3,0,758,-4,0,0 +2013,4,8,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1855,-3,0,2110,-17,0,0 +2013,8,24,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,845,0,0,1059,-12,0,0 +2013,8,26,1,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1315,-3,0,1434,-16,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1531,-3,0,1657,-12,0,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10721,Logan International,Boston,MA,1845,4,0,2225,-12,0,0 +2013,9,21,6,AA,13303,Miami International,Miami,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1525,-9,0,1710,5,0,0 +2013,6,30,7,AA,13303,Miami International,Miami,FL,12889,McCarran International,Las Vegas,NV,705,-8,0,900,7,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1910,35,1,2045,34,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1016,1,0,1049,3,0,0 +2013,4,3,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1000,-3,0,1235,1,0,0 +2013,8,9,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14679,San Diego International,San Diego,CA,855,-3,0,1015,-3,0,0 +2013,6,13,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,605,-8,0,735,-7,0,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,2155,-3,0,2255,-9,0,0 +2013,10,7,1,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1209,-7,0,1346,-19,0,0 +2013,4,22,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13198,Kansas City International,Kansas City,MO,1655,32,1,1915,127,1,0 +2013,7,14,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1315,-1,0,1640,6,0,0 +2013,9,18,3,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1253,-3,0,1355,-7,0,0 +2013,5,11,6,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1725,14,0,1811,10,0,0 +2013,4,11,4,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,900,-3,0,1055,-15,0,0 +2013,6,14,5,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1035,0,0,1310,-5,0,0 +2013,5,29,3,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1320,-6,0,1610,-15,0,0 +2013,5,15,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1010,4,0,1532,13,0,0 +2013,10,16,3,VX,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1740,-10,0,1910,-10,0,0 +2013,9,7,6,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1155,-6,0,1340,-2,0,0 +2013,9,16,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1240,-3,0,1400,-5,0,0 +2013,9,28,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1935,-3,0,2023,-1,0,0 +2013,4,6,6,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,805,0,0,910,-15,0,0 +2013,4,24,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1625,44,1,1738,35,1,0 +2013,7,2,2,B6,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1330,4,0,1625,20,1,0 +2013,6,4,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1530,-3,0,1556,-1,0,0 +2013,8,12,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1627,0,0,2002,-6,0,0 +2013,8,27,2,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1825,41,1,1900,26,1,0 +2013,6,3,1,AA,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,1715,-8,0,1900,-7,0,0 +2013,10,19,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-3,0,1250,-12,0,0 +2013,7,18,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-1,0,1455,-27,0,0 +2013,8,10,6,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1450,5,0,1830,-2,0,0 +2013,10,24,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1400,2,0,1659,-16,0,0 +2013,6,18,2,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2105,26,1,2215,20,1,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1240,3,0,1345,4,0,0 +2013,4,22,1,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1145,3,0,1354,-17,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1230,10,0,1655,10,0,0 +2013,7,1,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,2020,36,1,2251,25,1,0 +2013,7,11,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1940,53,1,2110,88,1,0 +2013,5,27,1,US,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1530,-8,0,1704,-26,0,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,647,-1,0,926,4,0,0 +2013,4,8,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1742,-8,0,1924,-11,0,0 +2013,5,23,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,1020,3,0,1638,-8,0,0 +2013,8,30,5,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-2,0,1000,8,0,0 +2013,5,10,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-5,0,1315,-14,0,0 +2013,9,27,5,YV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1013,1,0,1027,-18,0,0 +2013,4,19,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,15304,Tampa International,Tampa,FL,1528,0,0,1759,12,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,955,-7,0,1021,1,0,0 +2013,4,21,7,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,-5,0,1705,-17,0,0 +2013,9,23,1,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1900,11,0,2020,1,0,0 +2013,9,19,4,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,-6,0,1659,-8,0,0 +2013,9,30,1,UA,12264,Washington Dulles International,Washington,DC,14679,San Diego International,San Diego,CA,1225,-8,0,1452,-36,0,0 +2013,6,28,5,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,2000,73,1,2015,90,1,0 +2013,6,15,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1005,1,0,1334,15,1,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,815,2,0,1015,-4,0,0 +2013,5,30,4,MQ,10693,Nashville International,Nashville,TN,12478,John F. Kennedy International,New York,NY,1220,26,1,1600,18,1,0 +2013,4,15,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1305,-1,0,1410,-8,0,0 +2013,10,6,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,16,1,1940,47,1,0 +2013,9,16,1,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1406,-2,0,2055,-3,0,0 +2013,10,16,3,EV,12264,Washington Dulles International,Washington,DC,11618,Newark Liberty International,Newark,NJ,2153,4,0,2303,4,0,0 +2013,8,16,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1110,45,1,1310,36,1,0 +2013,7,3,3,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,930,-8,0,1218,-10,0,0 +2013,10,6,7,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1815,33,1,2010,14,0,0 +2013,9,11,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,920,-1,0,1214,-9,0,0 +2013,9,12,4,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,800,44,1,1044,37,1,0 +2013,10,7,1,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,905,-3,0,1055,-17,0,0 +2013,8,16,5,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1725,0,0,1834,-2,0,0 +2013,9,27,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2155,-3,0,2311,-8,0,0 +2013,6,25,2,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1504,11,0,1630,2,0,0 +2013,8,15,4,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-10,0,1254,-14,0,0 +2013,10,5,6,EV,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1356,-3,0,1644,-8,0,0 +2013,10,2,3,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1825,23,1,2050,18,1,0 +2013,9,12,4,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-5,0,1652,-31,0,0 +2013,6,28,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,0,0,1155,-1,0,0 +2013,6,30,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,610,-7,0,858,-12,0,0 +2013,7,14,7,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1945,-5,0,2110,-19,0,0 +2013,7,23,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1535,-2,0,1640,-6,0,0 +2013,9,13,5,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,810,80,1,1100,74,1,0 +2013,5,24,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1550,15,1,1710,9,0,0 +2013,5,27,1,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,55,1,2227,46,1,0 +2013,9,18,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,5,0,1709,-3,0,0 +2013,9,28,6,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1335,31,1,1535,15,1,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1605,-6,0,1756,-2,0,0 +2013,4,6,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1250,-3,0,1520,-8,0,0 +2013,5,21,2,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1745,9,0,1910,7,0,0 +2013,9,9,1,VX,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1710,1,0,2000,-19,0,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1707,7,0,2318,31,1,0 +2013,8,2,5,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1550,186,1,1810,205,1,0 +2013,9,22,7,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,959,9,0,1315,5,0,0 +2013,5,10,5,OO,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,2035,-4,0,2354,-8,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,955,104,1,1135,101,1,0 +2013,7,27,6,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1732,9,0,1900,4,0,0 +2013,4,30,2,UA,14843,Luis Munoz Marin International,San Juan,PR,12264,Washington Dulles International,Washington,DC,1245,17,1,1640,17,1,0 +2013,7,1,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1459,43,1,1633,20,1,0 +2013,9,18,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,0,0,930,-3,0,0 +2013,6,30,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1710,54,1,2015,89,1,0 +2013,4,23,2,B6,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1714,-3,0,2019,2,0,0 +2013,5,6,1,WN,10693,Nashville International,Nashville,TN,14679,San Diego International,San Diego,CA,1100,2,0,1320,1,0,0 +2013,7,8,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,816,-4,0,1416,-6,0,0 +2013,6,9,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2025,-2,0,2232,10,0,0 +2013,4,12,5,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1945,-4,0,2100,-14,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1640,-3,0,1823,2,0,0 +2013,5,7,2,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1250,-2,0,1535,-16,0,0 +2013,7,26,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1525,56,1,1637,46,1,0 +2013,6,22,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,1310,-1,0,1451,-15,0,0 +2013,4,11,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1230,0,0,1355,-1,0,0 +2013,6,6,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1155,-7,0,1705,3,0,0 +2013,9,7,6,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-1,0,1620,-9,0,0 +2013,8,27,2,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,700,4,0,805,0,0,0 +2013,5,14,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1110,-6,0,1356,-35,0,0 +2013,6,22,6,WN,15304,Tampa International,Tampa,FL,12191,William P Hobby,Houston,TX,1750,52,1,1910,42,1,0 +2013,9,25,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1320,16,1,1645,3,0,0 +2013,5,28,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,600,-9,0,920,-15,0,0 +2013,9,23,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1815,15,1,1940,23,1,0 +2013,9,3,2,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1114,-1,0,1329,-1,0,0 +2013,4,22,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,850,10,0,955,-14,0,0 +2013,5,7,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,838,-6,0,1359,-10,0,0 +2013,8,30,5,MQ,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1030,-7,0,1150,1,0,0 +2013,8,29,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1830,55,1,2115,48,1,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2030,34,1,2145,35,1,0 +2013,5,26,7,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,720,-9,0,845,-32,0,0 +2013,4,27,6,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1132,-4,0,1220,-16,0,0 +2013,8,9,5,EV,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1108,-2,0,1405,-5,0,0 +2013,6,15,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,1345,-2,0,2050,-13,0,0 +2013,8,15,4,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-4,0,1332,-13,0,0 +2013,7,12,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1729,-1,0,1750,-16,0,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,0,0,1455,1,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,27,1,519,21,1,0 +2013,7,10,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1230,85,1,1335,83,1,0 +2013,10,6,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1220,1,0,1440,-17,0,0 +2013,7,8,1,AA,13303,Miami International,Miami,FL,14679,San Diego International,San Diego,CA,1850,12,0,2055,-8,0,0 +2013,6,7,5,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2130,116,1,17,125,1,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,1430,50,1,1620,76,1,0 +2013,9,29,7,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1350,12,0,1510,12,0,0 +2013,4,3,3,WN,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,-9,0,1930,-12,0,0 +2013,6,8,6,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,1640,45,1,1800,42,1,0 +2013,7,20,6,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,2035,57,1,2145,53,1,0 +2013,4,5,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-8,0,859,-2,0,0 +2013,8,31,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1459,-2,0,1638,16,1,0 +2013,4,4,4,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,840,-17,0,0 +2013,7,2,2,B6,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1400,11,0,1511,-4,0,0 +2013,9,8,7,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,829,-5,0,938,-10,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,835,-3,0,843,-13,0,0 +2013,7,31,3,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,12,0,1720,7,0,0 +2013,10,31,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12264,Washington Dulles International,Washington,DC,1227,10,0,1605,3,0,0 +2013,7,5,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1225,2,0,1425,-5,0,0 +2013,6,7,5,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2055,13,0,2240,18,1,0 +2013,9,13,5,EV,12953,LaGuardia,New York,NY,14524,Richmond International,Richmond,VA,1015,137,1,1202,134,1,0 +2013,8,24,6,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,730,-5,0,1024,-7,0,0 +2013,6,14,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,825,-6,0,1054,-4,0,0 +2013,7,29,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1550,-1,0,1907,-13,0,0 +2013,4,23,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,11,0,1105,11,0,0 +2013,10,27,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,-3,0,1200,-15,0,0 +2013,8,2,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1419,47,1,1559,60,1,0 +2013,10,3,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1735,-3,0,1945,-11,0,0 +2013,9,17,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,-11,0,1408,-15,0,0 +2013,6,30,7,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,4,0,935,0,0,0 +2013,10,11,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,0,0,2035,-5,0,0 +2013,5,23,4,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1140,-1,0,1650,-7,0,0 +2013,9,19,4,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1605,24,1,1811,36,1,0 +2013,4,18,4,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1330,-3,0,1559,29,1,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,8,0,1540,-3,0,0 +2013,6,30,7,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,73,1,1903,68,1,0 +2013,8,28,3,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1003,-8,0,1302,-11,0,0 +2013,8,16,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,720,-4,0,908,-11,0,0 +2013,4,18,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1810,183,1,2025,174,1,0 +2013,7,14,7,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1505,6,0,1755,3,0,0 +2013,4,30,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14057,Portland International,Portland,OR,1710,-2,0,1955,-13,0,0 +2013,7,7,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1136,8,0,1251,1,0,0 +2013,5,4,6,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14524,Richmond International,Richmond,VA,1910,-1,0,2126,1,0,0 +2013,5,14,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,714,-6,0,951,-16,0,0 +2013,5,20,1,US,14307,Theodore Francis Green State,Providence,RI,14100,Philadelphia International,Philadelphia,PA,700,6,0,831,12,0,0 +2013,6,2,7,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,600,0,0,816,22,1,0 +2013,8,26,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,900,-2,0,1024,-9,0,0 +2013,9,23,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,2030,29,1,2220,52,1,0 +2013,10,30,3,WN,12889,McCarran International,Las Vegas,NV,15304,Tampa International,Tampa,FL,1535,1,0,2255,-10,0,0 +2013,4,30,2,MQ,11066,Port Columbus International,Columbus,OH,12953,LaGuardia,New York,NY,1525,-10,0,1715,-28,0,0 +2013,9,9,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,-5,0,1804,-11,0,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1805,0,0,2128,-22,0,0 +2013,8,19,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-6,0,1830,-19,0,0 +2013,8,9,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,655,0,,829,0,1,1 +2013,8,21,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1120,-6,0,1316,-14,0,0 +2013,6,6,4,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1710,-3,0,1937,-2,0,0 +2013,9,22,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,913,-4,0,1133,-15,0,0 +2013,8,23,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1502,-7,0,1700,-16,0,0 +2013,7,6,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,625,-1,0,950,0,0,0 +2013,7,27,6,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,618,-7,0,935,-10,0,0 +2013,5,25,6,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1033,-6,0,1149,-5,0,0 +2013,9,10,2,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2030,107,1,2330,105,1,0 +2013,9,7,6,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1110,-8,0,1516,-10,0,0 +2013,10,4,5,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1507,23,1,2008,15,1,0 +2013,8,14,3,OO,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1210,6,0,1342,11,0,0 +2013,5,6,1,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,10,0,1720,-4,0,0 +2013,4,21,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1836,8,0,2113,16,1,0 +2013,10,7,1,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,910,19,1,1030,3,0,0 +2013,6,28,5,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,15,1,2030,25,1,0 +2013,9,22,7,US,10529,Bradley International,Hartford,CT,14100,Philadelphia International,Philadelphia,PA,715,-5,0,839,-26,0,0 +2013,9,26,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12478,John F. Kennedy International,New York,NY,1420,0,0,1818,-10,0,0 +2013,7,26,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,635,1,0,1010,-10,0,0 +2013,6,8,6,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1615,0,0,1825,-10,0,0 +2013,8,19,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,600,-6,0,927,-26,0,0 +2013,4,25,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1449,79,1,1755,64,1,0 +2013,6,3,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1345,29,1,1700,62,1,0 +2013,9,6,5,HA,12173,Honolulu International,Honolulu,HI,14679,San Diego International,San Diego,CA,1320,1,0,2140,-4,0,0 +2013,8,28,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-3,0,1323,-13,0,0 +2013,5,31,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,705,-3,0,1102,12,0,0 +2013,6,21,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1955,90,1,2110,135,1,0 +2013,9,27,5,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,750,-9,0,957,-4,0,0 +2013,7,31,3,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2130,100,1,2350,105,1,0 +2013,9,17,2,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-7,0,910,-10,0,0 +2013,10,15,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1340,7,0,1450,4,0,0 +2013,6,25,2,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,815,0,0,1319,-11,0,0 +2013,9,18,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,810,1,0,1045,-16,0,0 +2013,7,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1630,-2,0,1830,-18,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1530,0,0,1705,-8,0,0 +2013,10,30,3,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1430,-7,0,1555,-18,0,0 +2013,6,23,7,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,730,-3,0,945,12,0,0 +2013,8,19,1,YV,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,755,-7,0,950,-14,0,0 +2013,5,11,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1930,-12,0,2345,14,0,0 +2013,6,12,3,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1455,-3,0,1611,-4,0,0 +2013,6,8,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1330,-9,0,1612,7,0,0 +2013,4,26,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,137,1,1320,141,1,0 +2013,9,27,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,730,-4,0,857,-1,0,0 +2013,9,30,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1520,-8,0,1536,-25,0,0 +2013,5,12,7,DL,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,2218,1,0,559,5,0,0 +2013,9,7,6,WN,13232,Chicago Midway International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,2025,4,0,2310,-3,0,0 +2013,6,8,6,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,19,1,1355,0,0,0 +2013,5,15,3,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-4,0,1948,-2,0,0 +2013,6,30,7,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,600,-7,0,729,-21,0,0 +2013,8,6,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-5,0,2219,2,0,0 +2013,10,4,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1330,-2,0,1618,-1,0,0 +2013,8,28,3,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1630,-6,0,1820,-18,0,0 +2013,5,7,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1736,-6,0,1933,-13,0,0 +2013,4,11,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-2,0,2055,-5,0,0 +2013,7,9,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,915,8,0,1100,-7,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1544,6,0,1805,18,1,0 +2013,7,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1905,6,0,2025,21,1,0 +2013,4,9,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1950,21,1,2050,21,1,0 +2013,5,31,5,EV,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1733,128,1,1815,116,1,0 +2013,7,18,4,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,745,6,0,1036,3,0,0 +2013,5,3,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1948,5,0,2047,6,0,0 +2013,4,3,3,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1920,-2,0,2045,-10,0,0 +2013,4,13,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,825,-2,0,935,-13,0,0 +2013,5,14,2,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,44,1,2210,21,1,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1045,3,0,1315,-9,0,0 +2013,9,5,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1138,-2,0,1305,-6,0,0 +2013,9,29,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1520,1,0,1810,-2,0,0 +2013,5,9,4,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1015,-4,0,1255,-9,0,0 +2013,7,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,24,1,1845,14,0,0 +2013,6,4,2,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,606,-2,0,813,-17,0,0 +2013,7,20,6,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1500,-9,0,1656,-8,0,0 +2013,10,17,4,B6,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1114,7,0,1424,-10,0,0 +2013,8,2,5,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1759,-10,0,1924,6,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2208,96,1,619,67,1,0 +2013,7,15,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1405,-4,0,1455,-1,0,0 +2013,5,22,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,610,21,1,910,26,1,0 +2013,10,17,4,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,820,-1,0,1115,-13,0,0 +2013,5,6,1,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1815,-7,0,2016,-7,0,0 +2013,8,30,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1015,55,1,1515,53,1,0 +2013,8,21,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1953,-9,0,2115,-21,0,0 +2013,5,15,3,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,855,1,0,900,-8,0,0 +2013,6,24,1,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1252,-2,0,1819,-10,0,0 +2013,5,3,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,11292,Denver International,Denver,CO,1120,7,0,1220,-16,0,0 +2013,6,7,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1941,76,1,2117,68,1,0 +2013,9,6,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1100,-8,0,1215,-24,0,0 +2013,6,4,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,13244,Memphis International,Memphis,TN,835,0,0,947,-11,0,0 +2013,5,15,3,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-10,0,930,-21,0,0 +2013,4,28,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1215,0,0,1325,-2,0,0 +2013,8,22,4,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,915,-2,0,1020,-23,0,0 +2013,7,3,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,3,0,1020,-4,0,0 +2013,9,30,1,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,16,1,925,15,1,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1944,95,1,2054,100,1,0 +2013,10,31,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,1825,-2,0,0 +2013,9,12,4,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,13,0,1317,8,0,0 +2013,7,7,7,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,615,-1,0,830,-10,0,0 +2013,9,22,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1309,-3,0,1530,-8,0,0 +2013,10,9,3,EV,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1508,1,0,1648,2,0,0 +2013,7,30,2,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,820,3,0,945,-2,0,0 +2013,10,3,4,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1029,-6,0,1214,23,1,0 +2013,8,2,5,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1821,-6,0,2017,-7,0,0 +2013,4,1,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1740,-2,0,1855,-14,0,0 +2013,7,16,2,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,23,1,2350,16,1,0 +2013,4,19,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2155,27,1,2250,27,1,0 +2013,5,31,5,VX,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,1830,15,1,2115,38,1,0 +2013,6,14,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1105,3,0,1842,10,0,0 +2013,9,18,3,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-8,0,811,-10,0,0 +2013,6,22,6,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1345,2,0,1450,32,1,0 +2013,4,14,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,715,-8,0,825,-22,0,0 +2013,6,9,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,0,0,905,-5,0,0 +2013,5,22,3,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,4,0,1926,10,0,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2010,-2,0,2318,3,0,0 +2013,10,22,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1205,3,0,1315,5,0,0 +2013,8,13,2,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1055,-4,0,1257,-2,0,0 +2013,9,10,2,UA,12264,Washington Dulles International,Washington,DC,12889,McCarran International,Las Vegas,NV,823,-5,0,1033,-34,0,0 +2013,9,10,2,EV,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1648,75,1,1919,69,1,0 +2013,4,19,5,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1425,26,1,1549,36,1,0 +2013,5,28,2,EV,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,1704,73,1,1955,59,1,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1655,-1,0,1906,-16,0,0 +2013,6,19,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,1,0,1053,-6,0,0 +2013,4,2,2,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2150,-2,0,615,-23,0,0 +2013,8,5,1,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-2,0,635,-17,0,0 +2013,5,15,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2149,12,0,2303,-3,0,0 +2013,4,12,5,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1540,50,1,1713,73,1,0 +2013,5,20,1,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1328,4,0,1536,8,0,0 +2013,5,11,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1335,-2,0,1900,15,1,0 +2013,9,7,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1746,-2,0,2023,-15,0,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1010,-6,0,1120,-7,0,0 +2013,4,26,5,B6,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1040,18,1,1527,4,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,845,-4,0,1056,-13,0,0 +2013,4,9,2,FL,14122,Pittsburgh International,Pittsburgh,PA,14635,Southwest Florida International,Fort Myers,FL,806,-13,0,1030,-4,0,0 +2013,8,15,4,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,-5,0,2055,-9,0,0 +2013,8,2,5,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1315,19,1,1440,8,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,-7,0,40,-10,0,0 +2013,8,7,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-3,0,1319,-19,0,0 +2013,4,28,7,YV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1740,-3,0,1943,-8,0,0 +2013,7,27,6,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1249,-4,0,1407,-13,0,0 +2013,8,29,4,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1354,69,1,1502,67,1,0 +2013,9,18,3,OO,12264,Washington Dulles International,Washington,DC,10423,Austin - Bergstrom International,Austin,TX,1705,-3,0,1932,-21,0,0 +2013,4,15,1,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,1011,-5,0,0 +2013,6,30,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,14771,San Francisco International,San Francisco,CA,721,14,0,945,-22,0,0 +2013,4,15,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1400,35,1,1658,30,1,0 +2013,7,17,3,AA,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,1450,-2,0,1745,-14,0,0 +2013,10,28,1,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1855,128,1,2240,129,1,0 +2013,10,12,6,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1335,22,1,1525,72,1,0 +2013,4,21,7,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,1655,11,0,1820,5,0,0 +2013,10,6,7,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1755,-2,0,46,-2,0,0 +2013,7,24,3,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-9,0,1144,-10,0,0 +2013,7,1,1,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,620,2,0,812,2,0,0 +2013,10,9,3,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1152,-6,0,1445,-9,0,0 +2013,5,22,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,238,1,1857,239,1,0 +2013,10,29,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,-3,0,1450,-10,0,0 +2013,10,5,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,825,-7,0,1050,-19,0,0 +2013,5,6,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13198,Kansas City International,Kansas City,MO,1551,-5,0,1659,-15,0,0 +2013,6,7,5,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1715,11,0,1815,0,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,745,15,1,855,7,0,0 +2013,4,13,6,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1850,-5,0,2104,-14,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2200,-1,0,2332,-16,0,0 +2013,5,1,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,855,-2,0,1220,-2,0,0 +2013,4,18,4,9E,13851,Will Rogers World,Oklahoma City,OK,11433,Detroit Metro Wayne County,Detroit,MI,1500,4,0,1825,1,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1415,-1,0,1533,-14,0,0 +2013,4,26,5,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,752,-6,0,1547,0,0,0 +2013,6,30,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1550,8,0,1720,10,0,0 +2013,6,23,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1915,0,0,2003,5,0,0 +2013,8,5,1,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-9,0,1940,-30,0,0 +2013,4,3,3,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1114,-5,0,1332,-12,0,0 +2013,10,2,3,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1310,-11,0,1605,-26,0,0 +2013,4,14,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2130,-4,0,2311,-10,0,0 +2013,7,8,1,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1642,0,0,1955,-15,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,819,-3,0,915,-26,0,0 +2013,5,7,2,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-7,0,906,-4,0,0 +2013,7,9,2,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,950,0,0,1200,-5,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1600,122,1,1904,224,1,0 +2013,8,9,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,940,-7,0,1110,-18,0,0 +2013,5,19,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1954,13,0,2146,12,0,0 +2013,6,9,7,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,925,-3,0,1215,-12,0,0 +2013,8,18,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1130,-6,0,1319,-14,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1749,6,0,1843,14,0,0 +2013,7,18,4,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1715,7,0,1838,-5,0,0 +2013,10,15,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1901,8,0,2211,1,0,0 +2013,4,17,3,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1300,-4,0,1446,-12,0,0 +2013,8,21,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1300,-4,0,1425,-9,0,0 +2013,4,4,4,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,815,3,0,1030,-22,0,0 +2013,10,13,7,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1430,-3,0,1709,-29,0,0 +2013,6,5,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,832,-5,0,923,-8,0,0 +2013,4,8,1,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,-1,0,2120,-9,0,0 +2013,4,6,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,1,0,1433,-21,0,0 +2013,6,6,4,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,615,-4,0,745,-4,0,0 +2013,8,14,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-3,0,854,6,0,0 +2013,4,27,6,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,800,-4,0,1055,-2,0,0 +2013,6,17,1,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1130,-1,0,1407,7,0,0 +2013,10,26,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,2205,-5,0,2328,-9,0,0 +2013,4,27,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12889,McCarran International,Las Vegas,NV,1410,-2,0,1445,-15,0,0 +2013,8,5,1,AA,14843,Luis Munoz Marin International,San Juan,PR,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-5,0,1545,3,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2200,-1,0,2305,0,0,0 +2013,10,12,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,55,-3,0,518,-27,0,0 +2013,8,15,4,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1100,-5,0,1230,-5,0,0 +2013,7,22,1,WN,14683,San Antonio International,San Antonio,TX,14679,San Diego International,San Diego,CA,2020,38,1,2110,31,1,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1430,112,1,1540,270,1,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,852,-4,0,1334,9,0,0 +2013,9,14,6,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-7,0,1005,-18,0,0 +2013,6,21,5,EV,12264,Washington Dulles International,Washington,DC,14122,Pittsburgh International,Pittsburgh,PA,1718,-5,0,1828,-19,0,0 +2013,5,17,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,610,0,0,910,2,0,0 +2013,7,22,1,9E,13244,Memphis International,Memphis,TN,13342,General Mitchell International,Milwaukee,WI,846,-5,0,1034,4,0,0 +2013,9,16,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1530,80,1,1659,76,1,0 +2013,9,18,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,20,1,1615,30,1,0 +2013,4,26,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1010,0,0,1130,-3,0,0 +2013,4,21,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,725,-9,0,0 +2013,4,6,6,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,839,-14,0,0 +2013,8,13,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,705,-5,0,1118,5,0,0 +2013,7,7,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,18,1,1315,34,1,0 +2013,9,30,1,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11042,Cleveland-Hopkins International,Cleveland,OH,1110,80,1,1434,80,1,0 +2013,8,20,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1120,-4,0,1300,-14,0,0 +2013,9,12,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,1930,-2,0,2125,-14,0,0 +2013,4,1,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,4,0,1058,27,1,0 +2013,5,7,2,FL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,4,0,1920,2,0,0 +2013,7,5,5,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,700,-4,0,835,-15,0,0 +2013,5,10,5,AA,14635,Southwest Florida International,Fort Myers,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1820,7,0,2015,-4,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1500,-4,0,1844,-17,0,0 +2013,8,24,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1050,0,0,1230,-13,0,0 +2013,10,2,3,EV,15016,Lambert-St. Louis International,St. Louis,MO,11618,Newark Liberty International,Newark,NJ,1052,-4,0,1415,-9,0,0 +2013,4,2,2,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,958,3,0,1155,14,0,0 +2013,10,10,4,US,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1426,15,1,1625,13,0,0 +2013,6,4,2,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,-5,0,955,-11,0,0 +2013,8,10,6,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1650,20,1,1818,30,1,0 +2013,4,29,1,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,755,8,0,910,-2,0,0 +2013,10,23,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1515,-11,0,1724,6,0,0 +2013,8,29,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,815,-2,0,1000,-16,0,0 +2013,6,3,1,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,2015,-3,0,2220,-12,0,0 +2013,4,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14831,Norman Y. Mineta San Jose International,San Jose,CA,1502,-5,0,1604,-11,0,0 +2013,8,12,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,51,1,1619,32,1,0 +2013,5,23,4,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,600,2,0,900,-9,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1948,16,1,2316,5,0,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1629,-3,0,1921,-36,0,0 +2013,7,16,2,US,10792,Buffalo Niagara International,Buffalo,NY,11057,Charlotte Douglas International,Charlotte,NC,1910,107,1,2056,97,1,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,2,0,1650,10,0,0 +2013,6,14,5,WN,12953,LaGuardia,New York,NY,12191,William P Hobby,Houston,TX,1230,8,0,1520,5,0,0 +2013,10,8,2,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1701,-8,0,1825,-19,0,0 +2013,5,23,4,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1705,99,1,1921,101,1,0 +2013,4,9,2,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1246,-3,0,1456,-19,0,0 +2013,8,29,4,YV,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,2,0,628,1,0,0 +2013,6,3,1,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,15,1,1513,2,0,0 +2013,7,15,1,YV,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1214,-5,0,1350,-20,0,0 +2013,6,15,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,1400,-4,0,1553,9,0,0 +2013,5,13,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1345,20,1,1501,0,0,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1400,-2,0,1540,16,1,0 +2013,10,6,7,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,1450,-1,0,1605,-1,0,0 +2013,7,6,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1020,3,0,1135,0,0,0 +2013,4,2,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,717,-3,0,901,-4,0,0 +2013,10,6,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2230,0,0,645,-1,0,0 +2013,4,4,4,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2213,11,0,2347,5,0,0 +2013,10,27,7,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1205,-2,0,1433,28,1,0 +2013,4,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1815,1,0,1915,27,1,0 +2013,10,31,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,206,1,2215,168,1,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,10423,Austin - Bergstrom International,Austin,TX,720,9,0,1205,2,0,0 +2013,8,23,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13204,Orlando International,Orlando,FL,1005,-6,0,1627,-1,0,0 +2013,9,1,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,935,-2,0,1040,-1,0,0 +2013,8,19,1,WN,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1540,-1,0,1705,1,0,0 +2013,9,12,4,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1910,-5,0,2025,-9,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1355,-6,0,1500,-9,0,0 +2013,7,4,4,MQ,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,700,0,0,820,8,0,0 +2013,8,2,5,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1930,3,0,2137,9,0,0 +2013,7,31,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1421,12,0,1753,-8,0,0 +2013,10,18,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1420,-5,0,1550,23,1,0 +2013,4,5,5,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,14,0,2156,-2,0,0 +2013,9,17,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1210,-8,0,1703,-14,0,0 +2013,6,23,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2010,19,1,2156,4,0,0 +2013,5,13,1,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1127,-2,0,1300,-10,0,0 +2013,8,12,1,WN,11066,Port Columbus International,Columbus,OH,13204,Orlando International,Orlando,FL,700,0,0,910,-8,0,0 +2013,8,31,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14771,San Francisco International,San Francisco,CA,1434,14,0,1606,24,1,0 +2013,9,25,3,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1500,21,1,2010,-3,0,0 +2013,4,11,4,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,59,-3,0,600,38,1,0 +2013,9,13,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,800,0,0,930,-8,0,0 +2013,5,24,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1210,-4,0,1254,-6,0,0 +2013,10,6,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13891,Ontario International,Ontario,CA,815,0,0,930,-7,0,0 +2013,9,19,4,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1203,7,0,1337,20,1,0 +2013,9,26,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1011,-1,0,1049,-4,0,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1530,-3,0,1847,-9,0,0 +2013,4,16,2,WN,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,1920,-6,0,2050,-6,0,0 +2013,8,11,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,73,1,2125,61,1,0 +2013,4,8,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1614,-2,0,1751,-15,0,0 +2013,8,3,6,MQ,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,810,0,0,950,-17,0,0 +2013,5,28,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2141,10,0,615,8,0,0 +2013,7,21,7,OO,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-1,0,1647,10,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-5,0,1435,15,1,0 +2013,8,9,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2042,34,1,2210,33,1,0 +2013,6,11,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,720,2,0,825,1,0,0 +2013,6,13,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,0,,1825,0,1,1 +2013,6,28,5,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,-6,0,1211,14,0,0 +2013,4,29,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,745,-4,0,1025,-7,0,0 +2013,9,11,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1855,2,0,2240,28,1,0 +2013,8,9,5,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1410,31,1,1625,25,1,0 +2013,9,27,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1330,27,1,1445,25,1,0 +2013,9,13,5,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,73,1,1301,78,1,0 +2013,6,1,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1601,-8,0,1912,-16,0,0 +2013,4,18,4,WN,10693,Nashville International,Nashville,TN,10423,Austin - Bergstrom International,Austin,TX,955,21,1,1205,28,1,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1750,-3,0,1935,-19,0,0 +2013,8,15,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2105,59,1,2240,53,1,0 +2013,8,22,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2332,0,0,800,-13,0,0 +2013,8,31,6,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,605,-1,0,735,-16,0,0 +2013,7,10,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1105,-10,0,1314,-26,0,0 +2013,9,12,4,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,850,0,0,1106,0,0,0 +2013,6,21,5,B6,10721,Logan International,Boston,MA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1256,-3,0,1521,-14,0,0 +2013,5,22,3,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,741,-9,0,0 +2013,7,25,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1655,-6,0,2015,-18,0,0 +2013,10,31,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2155,-1,0,2310,-2,0,0 +2013,5,8,3,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1910,-3,0,2040,-6,0,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1655,-1,0,1923,-5,0,0 +2013,9,8,7,US,12953,LaGuardia,New York,NY,14100,Philadelphia International,Philadelphia,PA,1540,-6,0,1650,15,1,0 +2013,7,16,2,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,-5,0,1220,0,0,0 +2013,7,7,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,730,-2,0,907,-3,0,0 +2013,7,31,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,705,13,0,930,3,0,0 +2013,8,22,4,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,625,18,1,1225,66,1,0 +2013,10,3,4,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1244,-3,0,1349,-9,0,0 +2013,7,25,4,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,-4,0,1348,-14,0,0 +2013,4,8,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1440,35,1,1510,64,1,0 +2013,4,27,6,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2335,7,0,750,15,1,0 +2013,10,11,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,12,0,1149,10,0,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1350,1,0,1831,14,0,0 +2013,6,4,2,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1910,17,1,2245,13,0,0 +2013,4,29,1,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,700,-4,0,930,-23,0,0 +2013,7,29,1,FL,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,3,0,705,-31,0,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,14524,Richmond International,Richmond,VA,630,-7,0,816,-15,0,0 +2013,7,31,3,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,25,1,545,-1,0,0 +2013,7,12,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,1451,21,1,1715,7,0,0 +2013,8,14,3,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1458,0,0,1600,8,0,0 +2013,9,30,1,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,1,0,752,7,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1710,36,1,2025,20,1,0 +2013,6,11,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1215,23,1,1310,13,0,0 +2013,10,21,1,YV,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-12,0,1901,-2,0,0 +2013,8,6,2,WN,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1135,1,0,1325,-8,0,0 +2013,10,14,1,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1830,76,1,2041,70,1,0 +2013,9,8,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2245,-5,0,122,-18,0,0 +2013,6,28,5,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,81,1,1810,79,1,0 +2013,6,2,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-6,0,2215,-6,0,0 +2013,9,3,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-3,0,1019,-9,0,0 +2013,5,21,2,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1650,42,1,1830,23,1,0 +2013,7,18,4,UA,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1935,-1,0,2145,-8,0,0 +2013,4,6,6,AS,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1130,-8,0,2005,-23,0,0 +2013,9,25,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,836,2,0,1035,30,1,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,0,,1150,0,1,1 +2013,4,4,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1420,11,0,1540,-1,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2145,8,0,2250,1,0,0 +2013,10,22,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1825,0,0,1955,-12,0,0 +2013,9,29,7,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,930,-9,0,1045,4,0,0 +2013,8,4,7,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,2015,20,1,2258,17,1,0 +2013,9,10,2,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,840,-1,0,1035,-5,0,0 +2013,8,2,5,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1000,-3,0,1105,-8,0,0 +2013,5,9,4,UA,12173,Honolulu International,Honolulu,HI,12266,George Bush Intercontinental/Houston,Houston,TX,1937,-5,0,813,-5,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,15,1,1537,1,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1320,-3,0,1700,-16,0,0 +2013,4,9,2,WN,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1145,41,1,1320,38,1,0 +2013,4,21,7,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1445,6,0,1705,4,0,0 +2013,10,20,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,859,-2,0,1038,-13,0,0 +2013,8,1,4,UA,13204,Orlando International,Orlando,FL,12264,Washington Dulles International,Washington,DC,1845,-1,0,2104,-18,0,0 +2013,6,16,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1442,1,0,1609,25,1,0 +2013,5,7,2,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1255,-4,0,2145,1,0,0 +2013,5,11,6,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1316,63,1,1555,25,1,0 +2013,6,21,5,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1703,114,1,1815,94,1,0 +2013,4,9,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2050,20,1,2155,14,0,0 +2013,8,7,3,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,17,1,1942,11,0,0 +2013,10,15,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1559,-6,0,1712,-12,0,0 +2013,4,25,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1825,23,1,2133,21,1,0 +2013,9,12,4,EV,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1215,14,0,1324,13,0,0 +2013,4,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,2055,174,1,2215,168,1,0 +2013,9,26,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1100,-8,0,1320,-20,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,1255,5,0,1515,-26,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2110,-1,0,2300,-19,0,0 +2013,6,2,7,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,2125,0,,2235,0,1,1 +2013,9,13,5,AS,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1255,-3,0,1459,1,0,0 +2013,10,6,7,US,11057,Charlotte Douglas International,Charlotte,NC,12889,McCarran International,Las Vegas,NV,1808,-3,0,1950,-20,0,0 +2013,8,7,3,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,1150,0,0,1430,2,0,0 +2013,9,26,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1240,5,0,1515,-16,0,0 +2013,6,13,4,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,48,1,2030,43,1,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1300,-3,0,1455,-12,0,0 +2013,7,20,6,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,940,-5,0,1256,0,0,0 +2013,9,29,7,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,11,0,1310,16,1,0 +2013,4,9,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,2045,-2,0,2210,-3,0,0 +2013,4,26,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,13,0,1455,0,0,0 +2013,8,11,7,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1335,0,0,2200,-5,0,0 +2013,7,23,2,OO,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1252,-3,0,1745,-6,0,0 +2013,4,26,5,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,830,-1,0,1620,-7,0,0 +2013,6,24,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1647,-14,0,1709,-23,0,0 +2013,10,16,3,9E,12953,LaGuardia,New York,NY,14635,Southwest Florida International,Fort Myers,FL,805,5,0,1139,3,0,0 +2013,9,21,6,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,700,-6,0,825,-13,0,0 +2013,6,12,3,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1800,12,0,1920,7,0,0 +2013,5,29,3,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1750,4,0,1900,-3,0,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1755,-2,0,1935,5,0,0 +2013,7,7,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,950,3,0,1110,8,0,0 +2013,5,21,2,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1956,-1,0,2115,-4,0,0 +2013,6,5,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,855,-2,0,1005,-1,0,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,2210,9,0,2328,11,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,840,30,1,1100,17,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1025,-1,0,1350,-7,0,0 +2013,5,7,2,US,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,-4,0,1856,-51,0,0 +2013,4,17,3,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,825,11,0,1135,1,0,0 +2013,6,6,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1305,0,0,1405,-3,0,0 +2013,5,16,4,FL,13342,General Mitchell International,Milwaukee,WI,14635,Southwest Florida International,Fort Myers,FL,1550,0,0,1942,-9,0,0 +2013,7,5,5,UA,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1615,77,1,1750,66,1,0 +2013,7,2,2,EV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,625,-10,0,807,-23,0,0 +2013,4,3,3,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1033,-14,0,1418,-38,0,0 +2013,6,19,3,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,-6,0,1310,-15,0,0 +2013,6,11,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1251,37,1,1521,21,1,0 +2013,8,12,1,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1511,29,1,1845,20,1,0 +2013,4,22,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1649,24,1,1938,6,0,0 +2013,5,31,5,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1510,5,0,1630,5,0,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1220,19,1,1730,-3,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1135,66,1,1235,81,1,0 +2013,8,13,2,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1510,-2,0,1717,-4,0,0 +2013,7,17,3,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,730,1,0,850,1,0,0 +2013,7,6,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1335,-3,0,1524,10,0,0 +2013,7,28,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,32,1,1940,45,1,0 +2013,4,10,3,AA,13891,Ontario International,Ontario,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1425,17,1,1925,22,1,0 +2013,10,24,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,11,0,1810,14,0,0 +2013,9,22,7,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1635,-11,0,1756,-18,0,0 +2013,7,20,6,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,1430,10,0,1755,23,1,0 +2013,5,3,5,WN,12191,William P Hobby,Houston,TX,15304,Tampa International,Tampa,FL,2000,1,0,2255,-1,0,0 +2013,4,16,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-1,0,1509,-22,0,0 +2013,4,5,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,2035,-6,0,2155,-6,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1625,-6,0,1638,-18,0,0 +2013,5,23,4,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1729,166,1,2110,164,1,0 +2013,7,17,3,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,1615,-3,0,1710,0,0,0 +2013,10,15,2,WN,12889,McCarran International,Las Vegas,NV,14730,Louisville International-Standiford Field,Louisville,KY,1545,13,0,2230,-21,0,0 +2013,7,29,1,AA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-2,0,1025,-8,0,0 +2013,8,9,5,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,635,-3,0,805,-3,0,0 +2013,9,24,2,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,950,1,0,1050,0,0,0 +2013,7,4,4,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,850,-1,0,1723,20,1,0 +2013,4,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2200,103,1,2347,79,1,0 +2013,5,4,6,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1440,-3,0,1630,-9,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,10693,Nashville International,Nashville,TN,2230,-6,0,2246,-15,0,0 +2013,10,23,3,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-8,0,1325,-19,0,0 +2013,10,4,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1909,15,1,2129,-15,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2300,156,1,27,171,1,0 +2013,10,10,4,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,-2,0,1340,-15,0,0 +2013,7,21,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1840,4,0,2005,4,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,701,-6,0,1028,5,0,0 +2013,6,1,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1738,1,0,1851,-17,0,0 +2013,9,23,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13342,General Mitchell International,Milwaukee,WI,2010,1,0,2230,-8,0,0 +2013,5,25,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14100,Philadelphia International,Philadelphia,PA,1155,9,0,1510,-2,0,0 +2013,8,11,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1820,-6,0,1845,-11,0,0 +2013,8,11,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,655,-4,0,825,-4,0,0 +2013,10,23,3,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-3,0,1125,-26,0,0 +2013,10,26,6,UA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1934,8,0,2311,-6,0,0 +2013,4,9,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,750,-2,0,915,-7,0,0 +2013,9,26,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-3,0,2340,-7,0,0 +2013,7,28,7,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,30,-6,0,810,-16,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1717,-1,0,2311,-9,0,0 +2013,4,27,6,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,2128,-18,0,0 +2013,7,23,2,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1530,10,0,1630,0,0,0 +2013,10,15,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1747,-4,0,2012,-22,0,0 +2013,5,14,2,B6,12478,John F. Kennedy International,New York,NY,14831,Norman Y. Mineta San Jose International,San Jose,CA,1835,-2,0,2213,-32,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1400,58,1,1655,52,1,0 +2013,9,2,1,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,1010,-4,0,1110,-13,0,0 +2013,8,28,3,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1915,17,1,2015,10,0,0 +2013,7,20,6,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1435,19,1,1630,12,0,0 +2013,8,21,3,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-7,0,1016,-26,0,0 +2013,7,13,6,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1840,-1,0,2100,-12,0,0 +2013,5,17,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,120,-9,0,615,-13,0,0 +2013,6,26,3,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1758,-3,0,2033,29,1,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,2029,8,0,4,-28,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,-3,0,1445,-13,0,0 +2013,7,3,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,618,2,0,856,-3,0,0 +2013,4,17,3,WN,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1340,190,1,1505,194,1,0 +2013,7,9,2,WN,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1305,23,1,1425,2,0,0 +2013,10,13,7,DL,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,600,-5,0,758,-13,0,0 +2013,6,21,5,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,2155,195,1,5,195,1,0 +2013,9,27,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-6,0,1555,5,0,0 +2013,5,8,3,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1845,9,0,2010,-21,0,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,840,-2,0,1105,-28,0,0 +2013,6,16,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,-2,0,1235,-6,0,0 +2013,7,18,4,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,820,20,1,935,12,0,0 +2013,9,17,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,15,1,1517,18,1,0 +2013,10,5,6,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1709,-5,0,1840,-13,0,0 +2013,8,14,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15304,Tampa International,Tampa,FL,2359,-4,0,655,-3,0,0 +2013,9,6,5,AA,13303,Miami International,Miami,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,-6,0,2205,-12,0,0 +2013,9,15,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1953,-1,0,2051,-10,0,0 +2013,9,27,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1715,-16,0,1923,-18,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,16,1,2359,-3,0,0 +2013,4,24,3,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,1601,-6,0,1715,-12,0,0 +2013,6,1,6,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,2,0,1450,-12,0,0 +2013,10,25,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,-4,0,530,-8,0,0 +2013,10,16,3,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,2150,6,0,2305,13,0,0 +2013,4,26,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1911,5,0,2100,4,0,0 +2013,5,2,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1715,14,0,2330,13,0,0 +2013,5,4,6,EV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1438,35,1,1610,13,0,0 +2013,9,25,3,DL,14122,Pittsburgh International,Pittsburgh,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-8,0,809,-19,0,0 +2013,5,3,5,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-1,0,2204,-10,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1250,10,0,1455,18,1,0 +2013,4,26,5,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,830,-3,0,1030,5,0,0 +2013,8,1,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,928,8,0,1124,4,0,0 +2013,7,29,1,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1730,3,0,1850,-7,0,0 +2013,6,1,6,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,740,62,1,1039,41,1,0 +2013,7,15,1,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,554,0,0,914,-3,0,0 +2013,10,10,4,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,819,2,0,1144,-4,0,0 +2013,9,13,5,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,840,0,0,1007,-10,0,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1251,-7,0,1405,-14,0,0 +2013,10,13,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,922,-3,0,1020,-19,0,0 +2013,9,9,1,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,1,0,748,-13,0,0 +2013,5,17,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1556,17,1,1701,11,0,0 +2013,9,25,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,940,2,0,1045,-2,0,0 +2013,7,18,4,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,600,-3,0,846,-5,0,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,13,0,626,-2,0,0 +2013,10,22,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-12,0,925,19,1,0 +2013,9,12,4,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,920,-2,0,1105,14,0,0 +2013,10,1,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1905,0,0,2006,-11,0,0 +2013,9,26,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1300,-4,0,1450,-15,0,0 +2013,10,31,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1805,-2,0,1920,-7,0,0 +2013,8,1,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,14122,Pittsburgh International,Pittsburgh,PA,1525,2,0,1627,13,0,0 +2013,8,11,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1230,-6,0,1400,-15,0,0 +2013,6,15,6,UA,11618,Newark Liberty International,Newark,NJ,14635,Southwest Florida International,Fort Myers,FL,1455,-8,0,1804,-22,0,0 +2013,4,28,7,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,28,1,2206,27,1,0 +2013,8,14,3,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,2007,-5,0,2206,-12,0,0 +2013,4,7,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1220,2,0,1430,-2,0,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,910,261,1,1048,244,1,0 +2013,8,15,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,940,4,0,1205,2,0,0 +2013,5,27,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1314,-4,0,1710,-17,0,0 +2013,5,31,5,B6,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,800,-3,0,1105,-28,0,0 +2013,10,4,5,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,810,-4,0,910,-9,0,0 +2013,5,5,7,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13303,Miami International,Miami,FL,625,-8,0,1100,-10,0,0 +2013,7,4,4,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1825,102,1,2000,74,1,0 +2013,10,15,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1450,15,1,1555,32,1,0 +2013,5,27,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1820,12,0,1953,-8,0,0 +2013,5,8,3,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1015,-3,0,1302,2,0,0 +2013,4,3,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2150,-5,0,2355,0,0,0 +2013,10,17,4,9E,12339,Indianapolis International,Indianapolis,IN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1702,1,0,1839,0,0,0 +2013,5,16,4,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-3,0,1434,-10,0,0 +2013,10,5,6,WN,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,935,1,0,1055,4,0,0 +2013,10,2,3,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-4,0,1638,-14,0,0 +2013,6,2,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,13,0,25,28,1,0 +2013,4,1,1,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1614,19,1,1905,28,1,0 +2013,4,8,1,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1600,4,0,1735,-2,0,0 +2013,7,1,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1135,99,1,1448,113,1,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,29,1,1520,14,0,0 +2013,5,13,1,FL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1739,26,1,2002,10,0,0 +2013,10,25,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13198,Kansas City International,Kansas City,MO,725,-4,0,825,1,0,0 +2013,5,26,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1355,8,0,1646,-9,0,0 +2013,4,16,2,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1837,-4,0,2132,3,0,0 +2013,5,3,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1530,6,0,1647,-4,0,0 +2013,4,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1755,-7,0,1915,-21,0,0 +2013,9,23,1,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,600,-2,0,834,10,0,0 +2013,4,11,4,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1800,5,0,2014,25,1,0 +2013,9,7,6,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1025,0,0,1315,3,0,0 +2013,9,17,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13851,Will Rogers World,Oklahoma City,OK,1010,-5,0,1135,-9,0,0 +2013,7,26,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1452,28,1,1538,36,1,0 +2013,6,2,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,2210,7,0,5,5,0,0 +2013,5,24,5,WN,14679,San Diego International,San Diego,CA,14570,Reno/Tahoe International,Reno,NV,1715,21,1,1840,18,1,0 +2013,7,8,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,2320,130,1,510,114,1,0 +2013,5,25,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1915,-1,0,2304,-10,0,0 +2013,6,19,3,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1108,-2,0,1310,4,0,0 +2013,7,22,1,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2035,-5,0,458,-18,0,0 +2013,9,6,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13342,General Mitchell International,Milwaukee,WI,1422,-8,0,1440,-7,0,0 +2013,8,3,6,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1905,-4,0,2350,-16,0,0 +2013,6,11,2,WN,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1335,11,0,1635,9,0,0 +2013,9,15,7,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,740,-16,0,0 +2013,9,18,3,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1435,5,0,1645,-8,0,0 +2013,9,26,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1150,71,1,1350,55,1,0 +2013,8,22,4,MQ,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,0,,1905,0,1,1 +2013,10,30,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1740,88,1,1855,83,1,0 +2013,8,1,4,WN,12889,McCarran International,Las Vegas,NV,13495,Louis Armstrong New Orleans International,New Orleans,LA,950,23,1,1520,19,1,0 +2013,6,14,5,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1600,14,0,30,13,0,0 +2013,8,25,7,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-4,0,920,-31,0,0 +2013,9,3,2,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-4,0,847,-12,0,0 +2013,7,26,5,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-8,0,1034,-22,0,0 +2013,6,4,2,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1028,-5,0,1426,-18,0,0 +2013,10,25,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1620,-2,0,1905,-2,0,0 +2013,10,23,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,915,17,1,1025,18,1,0 +2013,4,27,6,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1830,-12,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2155,-3,0,2352,-4,0,0 +2013,5,29,3,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1525,-7,0,1829,-7,0,0 +2013,7,30,2,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1137,-5,0,1343,-3,0,0 +2013,6,9,7,OO,14869,Salt Lake City International,Salt Lake City,UT,13198,Kansas City International,Kansas City,MO,947,-3,0,1317,-12,0,0 +2013,4,21,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1335,-7,0,1713,18,1,0 +2013,5,15,3,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2249,-2,0,731,-16,0,0 +2013,10,3,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,820,5,0,1130,1,0,0 +2013,8,15,4,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1845,-3,0,2134,4,0,0 +2013,9,18,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1945,25,1,2210,21,1,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1405,4,0,1530,2,0,0 +2013,10,15,2,UA,11292,Denver International,Denver,CO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1755,-5,0,2128,-12,0,0 +2013,8,2,5,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,-3,0,1805,0,0,0 +2013,9,15,7,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1656,-5,0,1917,-24,0,0 +2013,10,22,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1950,-3,0,2150,-4,0,0 +2013,10,31,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1030,-2,0,1155,-10,0,0 +2013,6,21,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13851,Will Rogers World,Oklahoma City,OK,1120,6,0,1320,5,0,0 +2013,5,15,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1520,17,1,1615,13,0,0 +2013,10,8,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,-8,0,1815,-6,0,0 +2013,5,26,7,UA,12892,Los Angeles International,Los Angeles,CA,11042,Cleveland-Hopkins International,Cleveland,OH,1006,-2,0,1731,-12,0,0 +2013,5,28,2,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1242,2,0,2036,-12,0,0 +2013,4,2,2,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1010,0,0,1145,6,0,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1605,16,1,1915,7,0,0 +2013,5,4,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,630,-7,0,805,-20,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2225,-2,0,26,2,0,0 +2013,4,3,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1720,-6,0,1840,-4,0,0 +2013,7,4,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-7,0,820,-18,0,0 +2013,10,30,3,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1300,-9,0,1434,-13,0,0 +2013,8,4,7,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,10,0,1725,-3,0,0 +2013,6,25,2,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1215,162,1,1835,143,1,0 +2013,4,2,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1515,-2,0,1615,-10,0,0 +2013,10,10,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,17,1,1925,10,0,0 +2013,6,9,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1910,-1,0,2253,-11,0,0 +2013,6,18,2,EV,11066,Port Columbus International,Columbus,OH,11618,Newark Liberty International,Newark,NJ,1214,81,1,1359,71,1,0 +2013,5,2,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,0,0,622,61,1,0 +2013,6,1,6,YV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1940,-17,0,2105,-28,0,0 +2013,6,9,7,WN,10423,Austin - Bergstrom International,Austin,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1345,8,0,1735,-7,0,0 +2013,7,4,4,WN,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1550,35,1,2125,31,1,0 +2013,9,10,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,-11,0,1756,-14,0,0 +2013,5,14,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2044,-8,0,2159,-18,0,0 +2013,10,9,3,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,630,0,0,750,-7,0,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,2120,-6,0,2325,-7,0,0 +2013,9,20,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1710,94,1,2000,82,1,0 +2013,8,6,2,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1722,2,0,1808,2,0,0 +2013,8,25,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,2155,8,0,2305,17,1,0 +2013,10,26,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1223,-4,0,1440,-11,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1415,11,0,1515,0,0,0 +2013,4,24,3,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,515,-12,0,803,16,1,0 +2013,4,14,7,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,605,-5,0,855,-11,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,840,-2,0,1035,-14,0,0 +2013,5,13,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1726,-3,0,1916,-18,0,0 +2013,4,22,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1815,57,1,2103,62,1,0 +2013,4,29,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1530,2,0,1859,-13,0,0 +2013,9,25,3,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,4,0,1838,0,0,0 +2013,10,25,5,DL,12478,John F. Kennedy International,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2025,43,1,2342,36,1,0 +2013,5,6,1,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1206,9,0,1327,8,0,0 +2013,9,16,1,WN,13204,Orlando International,Orlando,FL,13198,Kansas City International,Kansas City,MO,1315,-3,0,1505,-16,0,0 +2013,9,11,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1037,-2,0,1354,-21,0,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,650,-9,0,828,-14,0,0 +2013,7,30,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,-8,0,1835,-29,0,0 +2013,7,21,7,OO,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,750,21,1,927,10,0,0 +2013,10,23,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1805,-1,0,2028,-11,0,0 +2013,8,16,5,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1515,-3,0,2105,9,0,0 +2013,7,10,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,5,0,1710,10,0,0 +2013,9,10,2,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,830,0,0,1010,3,0,0 +2013,7,8,1,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,2000,8,0,2205,2,0,0 +2013,9,28,6,9E,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1758,-6,0,1845,-21,0,0 +2013,7,27,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1255,-2,0,1600,-5,0,0 +2013,4,21,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,855,-4,0,1105,-6,0,0 +2013,4,17,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,545,1,0,756,0,0,0 +2013,6,6,4,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,630,-2,0,803,0,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2146,20,1,2321,9,0,0 +2013,6,12,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-1,0,1104,1,0,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1750,0,,1905,0,1,1 +2013,8,10,6,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1740,-2,0,1950,-28,0,0 +2013,9,15,7,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15,-8,0,530,-14,0,0 +2013,9,13,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-4,0,2134,-9,0,0 +2013,8,28,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,845,2,0,1350,-5,0,0 +2013,7,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1520,4,0,1745,-19,0,0 +2013,9,4,3,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,751,-3,0,1024,1,0,0 +2013,5,13,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,820,11,0,930,12,0,0 +2013,6,14,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2055,-6,0,2229,-4,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1351,-5,0,1449,3,0,0 +2013,7,2,2,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1513,-6,0,1616,-5,0,0 +2013,6,11,2,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,825,-6,0,1125,0,0,0 +2013,6,8,6,EV,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,1027,-10,0,1328,-19,0,0 +2013,6,23,7,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2300,-2,0,704,-7,0,0 +2013,4,23,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,2000,25,1,2310,21,1,0 +2013,10,23,3,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1515,32,1,1730,38,1,0 +2013,5,17,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2255,-4,0,19,-8,0,0 +2013,5,5,7,9E,13198,Kansas City International,Kansas City,MO,11433,Detroit Metro Wayne County,Detroit,MI,1750,-18,0,2047,-16,0,0 +2013,9,7,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,810,-3,0,1010,-7,0,0 +2013,4,23,2,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1900,0,0,2015,94,1,0 +2013,6,13,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1015,40,1,1305,55,1,0 +2013,10,1,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,935,-3,0,1135,-26,0,0 +2013,7,11,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,800,5,0,910,2,0,0 +2013,10,1,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1105,-6,0,1210,-7,0,0 +2013,4,18,4,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1418,-2,0,1545,0,0,0 +2013,4,5,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1410,8,0,1529,-6,0,0 +2013,10,13,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1745,-12,0,1925,-23,0,0 +2013,4,26,5,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,1256,39,1,1416,32,1,0 +2013,8,7,3,9E,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1106,-4,0,1208,6,0,0 +2013,8,11,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1900,-10,0,1945,5,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-4,0,1305,-15,0,0 +2013,4,19,5,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1200,71,1,1457,82,1,0 +2013,4,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1815,-6,0,2020,14,0,0 +2013,8,20,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-6,0,1200,-24,0,0 +2013,10,2,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,650,-7,0,815,-12,0,0 +2013,4,7,7,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-3,0,1755,-9,0,0 +2013,6,14,5,DL,14869,Salt Lake City International,Salt Lake City,UT,13244,Memphis International,Memphis,TN,941,-1,0,1345,-13,0,0 +2013,5,28,2,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,20,1,1400,22,1,0 +2013,5,3,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,26,1,1024,32,1,0 +2013,5,2,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1004,13,0,1320,70,1,0 +2013,4,9,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,910,0,,1035,0,1,1 +2013,6,30,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1530,0,0,1630,-7,0,0 +2013,4,7,7,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1415,-4,0,2248,-4,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1900,-1,0,2330,-4,0,0 +2013,4,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,1211,-9,0,1402,-7,0,0 +2013,4,16,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,-2,0,1510,-14,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,0,,1500,0,1,1 +2013,7,15,1,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1246,-4,0,1527,-9,0,0 +2013,7,24,3,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1745,23,1,1800,14,0,0 +2013,6,27,4,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1840,17,1,1940,15,1,0 +2013,5,16,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,925,6,0,1040,7,0,0 +2013,9,5,4,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1035,-7,0,1225,-28,0,0 +2013,7,25,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1730,-4,0,2102,-14,0,0 +2013,4,6,6,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1535,8,0,1710,-2,0,0 +2013,9,29,7,B6,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1800,-2,0,2103,35,1,0 +2013,6,24,1,FL,13198,Kansas City International,Kansas City,MO,13204,Orlando International,Orlando,FL,1452,3,0,1832,2,0,0 +2013,8,12,1,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,615,-1,0,932,-13,0,0 +2013,5,15,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-2,0,715,-15,0,0 +2013,5,27,1,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1535,20,1,1645,4,0,0 +2013,4,7,7,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1538,-2,0,1849,-21,0,0 +2013,7,28,7,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1440,-4,0,1628,-4,0,0 +2013,7,24,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1046,1,0,1210,-9,0,0 +2013,6,7,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1450,46,1,1540,62,1,0 +2013,6,22,6,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1620,-4,0,1945,-2,0,0 +2013,6,30,7,AS,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,2100,-5,0,2300,-8,0,0 +2013,4,9,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,655,-1,0,735,-15,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1435,-3,0,1825,12,0,0 +2013,9,8,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1015,-2,0,1205,-28,0,0 +2013,4,25,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,659,18,1,840,7,0,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,836,-4,0,914,4,0,0 +2013,7,21,7,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1255,3,0,1504,-10,0,0 +2013,6,6,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,700,0,,1025,0,1,1 +2013,10,13,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1100,1,0,1430,-12,0,0 +2013,8,20,2,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1405,0,0,1505,-6,0,0 +2013,7,28,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1740,8,0,1857,-10,0,0 +2013,4,28,7,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,-3,0,1630,-16,0,0 +2013,6,8,6,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1240,-7,0,1409,-10,0,0 +2013,5,19,7,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,810,-10,0,1100,-25,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,941,-2,0,1152,-18,0,0 +2013,7,6,6,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,930,-2,0,1115,-5,0,0 +2013,4,15,1,WN,12191,William P Hobby,Houston,TX,11618,Newark Liberty International,Newark,NJ,805,-1,0,1235,-16,0,0 +2013,8,26,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1000,3,0,1125,-3,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,710,-6,0,1227,-16,0,0 +2013,4,13,6,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1026,44,1,1236,56,1,0 +2013,10,10,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,924,-8,0,1117,-11,0,0 +2013,4,21,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,705,-9,0,1109,4,0,0 +2013,9,26,4,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,710,-10,0,1038,-38,0,0 +2013,5,16,4,WN,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,2130,23,1,2245,14,0,0 +2013,9,13,5,F9,11042,Cleveland-Hopkins International,Cleveland,OH,14122,Pittsburgh International,Pittsburgh,PA,805,-9,0,844,-2,0,0 +2013,7,2,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2228,4,0,429,36,1,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1535,6,0,1620,-9,0,0 +2013,10,15,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1051,-5,0,1205,-4,0,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,-5,0,1758,-14,0,0 +2013,10,27,7,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1115,-5,0,1353,0,0,0 +2013,7,17,3,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2215,1,0,2335,5,0,0 +2013,9,25,3,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1251,8,0,1429,3,0,0 +2013,8,3,6,F9,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,1130,-15,0,1715,-45,0,0 +2013,4,3,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1228,-4,0,1532,-1,0,0 +2013,4,7,7,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-6,0,1355,-3,0,0 +2013,7,15,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,847,-4,0,0 +2013,8,10,6,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,0,0,1545,-14,0,0 +2013,7,26,5,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,-5,0,1755,-17,0,0 +2013,6,26,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1025,0,0,1155,-4,0,0 +2013,5,5,7,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,-5,0,2059,19,1,0 +2013,10,17,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2000,-5,0,2257,-28,0,0 +2013,9,6,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,2120,75,1,2310,65,1,0 +2013,6,8,6,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,705,-6,0,1007,-19,0,0 +2013,10,21,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1320,0,0,1502,-4,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,2040,11,0,2340,-1,0,0 +2013,9,23,1,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,635,2,0,1235,-18,0,0 +2013,5,7,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,550,-4,0,705,-34,0,0 +2013,7,27,6,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1504,30,1,1622,19,1,0 +2013,5,28,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,2115,36,1,2250,37,1,0 +2013,8,10,6,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,600,-6,0,753,-26,0,0 +2013,5,14,2,WN,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,630,0,0,1230,15,1,0 +2013,8,3,6,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-2,0,628,-9,0,0 +2013,5,16,4,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1342,24,1,1520,16,1,0 +2013,5,23,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,14,0,1155,15,1,0 +2013,9,13,5,9E,13342,General Mitchell International,Milwaukee,WI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-7,0,1919,-12,0,0 +2013,6,26,3,B6,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,825,-1,0,1111,-6,0,0 +2013,9,26,4,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1500,29,1,2010,9,0,0 +2013,10,29,2,AA,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1140,-6,0,1335,-11,0,0 +2013,6,16,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,700,-2,0,959,-6,0,0 +2013,9,15,7,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,1800,4,0,2045,11,0,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2035,-5,0,2135,-12,0,0 +2013,5,31,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1850,-6,0,2324,-16,0,0 +2013,8,18,7,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,50,1,1859,64,1,0 +2013,7,6,6,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-8,0,833,-2,0,0 +2013,4,12,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13232,Chicago Midway International,Chicago,IL,1010,6,0,1610,6,0,0 +2013,4,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,2155,-2,0,2353,-25,0,0 +2013,10,30,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,645,4,0,1208,0,0,0 +2013,9,19,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,7,0,1015,-2,0,0 +2013,5,26,7,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-5,0,1950,4,0,0 +2013,4,6,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15376,Tucson International,Tucson,AZ,1051,-7,0,1202,-27,0,0 +2013,10,23,3,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-2,0,1250,3,0,0 +2013,9,1,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1312,7,0,1427,3,0,0 +2013,7,31,3,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,615,-4,0,700,-8,0,0 +2013,10,21,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,635,7,0,650,3,0,0 +2013,6,24,1,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,610,-7,0,805,-13,0,0 +2013,6,24,1,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1545,4,0,1710,7,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,2150,68,1,2245,61,1,0 +2013,6,8,6,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,1535,0,0,1725,-13,0,0 +2013,7,21,7,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,625,-4,0,805,-7,0,0 +2013,10,17,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,4,0,1610,-1,0,0 +2013,8,13,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,630,-4,0,749,-7,0,0 +2013,4,15,1,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1345,18,1,1649,1,0,0 +2013,8,18,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1020,-2,0,1245,-47,0,0 +2013,4,30,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-1,0,1250,-3,0,0 +2013,9,4,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1325,30,1,1450,20,1,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,605,-4,0,735,-5,0,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,211,1,1925,209,1,0 +2013,7,18,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-3,0,739,-3,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1700,1,0,1850,-7,0,0 +2013,5,2,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1530,7,0,1736,-1,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,700,5,0,931,-2,0,0 +2013,9,13,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,852,10,0,1143,10,0,0 +2013,8,23,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,600,-1,0,919,1,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1610,3,0,1731,0,0,0 +2013,8,13,2,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1705,-5,0,1855,-9,0,0 +2013,9,27,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1708,15,1,1833,9,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1635,-8,0,1819,-15,0,0 +2013,4,26,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1220,-7,0,1254,-20,0,0 +2013,6,26,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,0,0,1233,27,1,0 +2013,10,30,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1920,1,0,2100,-4,0,0 +2013,7,29,1,EV,14122,Pittsburgh International,Pittsburgh,PA,12264,Washington Dulles International,Washington,DC,1953,10,0,2101,9,0,0 +2013,6,7,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1134,0,0,1220,-2,0,0 +2013,5,2,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,-5,0,1445,-7,0,0 +2013,8,15,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,515,-5,0,751,-8,0,0 +2013,7,28,7,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,5,0,2117,17,1,0 +2013,5,4,6,AA,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,1205,-1,0,1325,-4,0,0 +2013,5,15,3,DL,13204,Orlando International,Orlando,FL,14869,Salt Lake City International,Salt Lake City,UT,1805,-6,0,2044,-16,0,0 +2013,9,6,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2250,-9,0,552,-2,0,0 +2013,6,28,5,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,55,1,1515,49,1,0 +2013,8,20,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2109,56,1,2343,32,1,0 +2013,7,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1447,4,0,1605,5,0,0 +2013,7,29,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,600,-8,0,800,-21,0,0 +2013,7,30,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1010,2,0,1132,-13,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2250,-2,0,15,-10,0,0 +2013,4,16,2,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1620,-9,0,1914,-6,0,0 +2013,7,12,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,4,0,1415,1,0,0 +2013,9,21,6,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1935,26,1,2229,45,1,0 +2013,8,17,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2205,2,0,2330,-6,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1520,-4,0,1632,-16,0,0 +2013,7,27,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1639,-4,0,1917,-21,0,0 +2013,6,30,7,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2100,75,1,2325,62,1,0 +2013,10,2,3,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1100,-6,0,1316,-2,0,0 +2013,7,21,7,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2056,14,0,2226,23,1,0 +2013,7,9,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1945,-4,0,25,-27,0,0 +2013,10,26,6,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,1,0,1432,-13,0,0 +2013,9,18,3,MQ,11057,Charlotte Douglas International,Charlotte,NC,13303,Miami International,Miami,FL,1310,-1,0,1515,8,0,0 +2013,9,1,7,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1759,4,0,1918,-9,0,0 +2013,8,30,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1510,11,0,1835,0,0,0 +2013,5,12,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1435,-3,0,1613,-37,0,0 +2013,6,16,7,US,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1120,4,0,1413,-1,0,0 +2013,10,15,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1230,-2,0,1325,4,0,0 +2013,5,24,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1340,155,1,1440,148,1,0 +2013,9,29,7,EV,13931,Norfolk International,Norfolk,VA,12266,George Bush Intercontinental/Houston,Houston,TX,1715,56,1,1929,40,1,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2330,-3,0,652,16,1,0 +2013,6,29,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1015,-1,0,1255,-14,0,0 +2013,5,15,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,951,-5,0,1210,-20,0,0 +2013,4,14,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,2200,-8,0,600,-19,0,0 +2013,8,22,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,815,2,0,1100,-11,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,750,-3,0,915,-12,0,0 +2013,7,1,1,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-6,0,1240,-12,0,0 +2013,4,22,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,752,-5,0,1309,-34,0,0 +2013,9,10,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1645,-6,0,1806,-20,0,0 +2013,6,22,6,B6,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,645,-13,0,822,-12,0,0 +2013,7,20,6,OO,13930,Chicago O'Hare International,Chicago,IL,12339,Indianapolis International,Indianapolis,IN,1440,0,0,1636,2,0,0 +2013,8,3,6,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,630,-3,0,837,-9,0,0 +2013,10,20,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,820,-4,0,1100,-5,0,0 +2013,5,5,7,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,735,-8,0,1110,-57,0,0 +2013,8,6,2,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,-4,0,15,-15,0,0 +2013,6,13,4,US,12339,Indianapolis International,Indianapolis,IN,11057,Charlotte Douglas International,Charlotte,NC,700,-1,0,833,15,1,0 +2013,8,13,2,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1741,49,1,1904,51,1,0 +2013,7,15,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,1,0,1241,-29,0,0 +2013,5,21,2,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,1406,14,0,2100,9,0,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,822,0,0,1630,-22,0,0 +2013,4,12,5,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1708,2,0,1932,-4,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1456,-1,0,1603,2,0,0 +2013,6,12,3,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,1,0,1617,-2,0,0 +2013,4,12,5,AA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2240,136,1,715,113,1,0 +2013,10,27,7,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-1,0,1818,-8,0,0 +2013,8,25,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1740,6,0,1823,-10,0,0 +2013,7,27,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1635,-6,0,1812,-28,0,0 +2013,4,15,1,WN,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1210,35,1,1520,20,1,0 +2013,6,21,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13851,Will Rogers World,Oklahoma City,OK,915,-2,0,1125,8,0,0 +2013,7,7,7,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1208,4,0,1452,-2,0,0 +2013,10,5,6,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,0,0,940,-10,0,0 +2013,6,28,5,AA,13303,Miami International,Miami,FL,14747,Seattle/Tacoma International,Seattle,WA,2055,36,1,15,11,0,0 +2013,5,13,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,846,10,0,1122,7,0,0 +2013,4,13,6,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,715,-4,0,958,-1,0,0 +2013,7,17,3,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1735,13,0,2020,29,1,0 +2013,7,3,3,DL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1314,109,1,1640,104,1,0 +2013,8,23,5,AS,14679,San Diego International,San Diego,CA,13204,Orlando International,Orlando,FL,2220,-5,0,550,-5,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,-1,0,2147,-2,0,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1007,-4,0,1150,-19,0,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1340,30,1,1430,35,1,0 +2013,6,20,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1445,-9,0,1554,-11,0,0 +2013,7,11,4,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1414,120,1,2245,123,1,0 +2013,5,6,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,940,9,0,1156,13,0,0 +2013,7,9,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1834,70,1,2025,62,1,0 +2013,10,20,7,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,835,-4,0,935,-16,0,0 +2013,7,29,1,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,2004,-6,0,2335,-5,0,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1706,2,0,1727,49,1,0 +2013,4,27,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-6,0,1925,-18,0,0 +2013,7,29,1,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1725,-1,0,1850,-2,0,0 +2013,7,3,3,HA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13830,Kahului Airport,Kahului,HI,800,2,0,1020,-11,0,0 +2013,4,9,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1345,1,0,1700,-26,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1818,49,1,2049,50,1,0 +2013,5,22,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,955,-1,0,1125,-6,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1655,-6,0,1809,12,0,0 +2013,9,7,6,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,-2,0,831,-2,0,0 +2013,4,24,3,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,735,-4,0,1040,-12,0,0 +2013,8,21,3,UA,14057,Portland International,Portland,OR,11042,Cleveland-Hopkins International,Cleveland,OH,2331,-8,0,646,-5,0,0 +2013,7,24,3,EV,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,61,1,1010,75,1,0 +2013,4,4,4,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2105,-2,0,2259,5,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2115,9,0,10,7,0,0 +2013,7,19,5,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,119,1,2105,104,1,0 +2013,8,22,4,9E,13244,Memphis International,Memphis,TN,11433,Detroit Metro Wayne County,Detroit,MI,825,-2,0,1124,-11,0,0 +2013,6,28,5,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-1,0,745,-5,0,0 +2013,9,25,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,-1,0,1735,7,0,0 +2013,4,13,6,WN,15304,Tampa International,Tampa,FL,12889,McCarran International,Las Vegas,NV,1135,16,1,1345,1,0,0 +2013,4,30,2,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1450,28,1,1705,30,1,0 +2013,9,30,1,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,16,1,710,-2,0,0 +2013,4,5,5,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,1140,48,1,1315,35,1,0 +2013,8,29,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,1435,0,0,1555,-20,0,0 +2013,9,9,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,715,9,0,1106,10,0,0 +2013,6,9,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1445,-5,0,1720,-4,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1547,1,0,1805,-20,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,1120,0,0,1835,-7,0,0 +2013,7,13,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,520,89,1,842,106,1,0 +2013,4,1,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,845,1,0,1005,-6,0,0 +2013,5,17,5,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1703,32,1,1848,26,1,0 +2013,9,8,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1920,-5,0,1957,-5,0,0 +2013,4,19,5,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1430,-8,0,1728,-7,0,0 +2013,4,24,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1400,-8,0,1522,-9,0,0 +2013,10,26,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,1315,16,1,1707,7,0,0 +2013,10,21,1,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,13,0,1927,18,1,0 +2013,7,3,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1000,-9,0,1349,-20,0,0 +2013,9,4,3,WN,11292,Denver International,Denver,CO,14307,Theodore Francis Green State,Providence,RI,1725,166,1,2310,175,1,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,900,14,0,1425,-1,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,180,1,1621,172,1,0 +2013,4,10,3,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1740,13,0,1925,2,0,0 +2013,8,25,7,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,955,-6,0,1528,-14,0,0 +2013,7,13,6,WN,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,1215,23,1,1525,15,1,0 +2013,6,9,7,9E,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,1150,-3,0,1303,-11,0,0 +2013,5,7,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1030,-2,0,1145,-17,0,0 +2013,7,28,7,UA,11618,Newark Liberty International,Newark,NJ,12889,McCarran International,Las Vegas,NV,1446,350,1,1714,380,1,0 +2013,8,2,5,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,855,-3,0,1115,-1,0,0 +2013,4,5,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1540,-2,0,1715,-14,0,0 +2013,4,23,2,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,620,0,,750,0,1,1 +2013,6,15,6,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,5,0,1030,0,0,0 +2013,8,22,4,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,-6,0,1040,-13,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1525,31,1,1749,10,0,0 +2013,6,25,2,US,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,955,-5,0,1143,-16,0,0 +2013,9,20,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1010,-4,0,1113,-1,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,1025,-1,0,1120,10,0,0 +2013,8,30,5,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,830,7,0,1100,17,1,0 +2013,6,10,1,WN,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,715,6,0,900,1,0,0 +2013,9,18,3,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,1249,28,1,1646,31,1,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,10800,Bob Hope,Burbank,CA,1800,-1,0,2104,-22,0,0 +2013,7,11,4,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,1100,4,0,1655,-11,0,0 +2013,8,7,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,6,0,1640,-6,0,0 +2013,5,21,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,955,13,0,1230,41,1,0 +2013,5,6,1,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1614,-6,0,1717,-3,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1500,3,0,1722,-2,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1050,7,0,1800,4,0,0 +2013,10,25,5,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-5,0,912,13,0,0 +2013,8,5,1,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,625,-3,0,758,-4,0,0 +2013,7,23,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,850,1,0,1342,-2,0,0 +2013,5,29,3,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,755,6,0,950,-7,0,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1930,31,1,2229,37,1,0 +2013,5,23,4,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,948,0,0,1230,-8,0,0 +2013,7,6,6,US,14100,Philadelphia International,Philadelphia,PA,13487,Minneapolis-St Paul International,Minneapolis,MN,1815,3,0,2020,-25,0,0 +2013,8,24,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,2047,-8,0,2317,-23,0,0 +2013,6,1,6,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,2120,726,1,25,736,1,0 +2013,5,5,7,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1915,115,1,2105,95,1,0 +2013,4,16,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,955,-8,0,1253,-2,0,0 +2013,5,16,4,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-3,0,1806,-10,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2105,-3,0,2352,-6,0,0 +2013,7,15,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,645,2,0,925,-4,0,0 +2013,10,18,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,1755,2,0,1935,1,0,0 +2013,5,30,4,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,-5,0,1452,-8,0,0 +2013,9,3,2,OO,13342,General Mitchell International,Milwaukee,WI,11042,Cleveland-Hopkins International,Cleveland,OH,554,9,0,811,8,0,0 +2013,7,8,1,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2050,3,0,2215,1,0,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1800,1,0,2047,16,1,0 +2013,10,1,2,VX,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,925,-2,0,1804,-12,0,0 +2013,5,20,1,WN,10529,Bradley International,Hartford,CT,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,725,-1,0,845,-16,0,0 +2013,4,21,7,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1500,43,1,1622,44,1,0 +2013,4,25,4,9E,12451,Jacksonville International,Jacksonville,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,845,-6,0,1050,-11,0,0 +2013,5,21,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,1135,1,0,1345,-14,0,0 +2013,10,4,5,MQ,13931,Norfolk International,Norfolk,VA,13303,Miami International,Miami,FL,1850,-13,0,2120,-27,0,0 +2013,10,11,5,B6,10423,Austin - Bergstrom International,Austin,TX,13204,Orlando International,Orlando,FL,1505,0,0,1834,-15,0,0 +2013,7,7,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1230,17,1,1414,6,0,0 +2013,7,23,2,WN,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1515,0,0,1825,3,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1125,-2,0,1218,-7,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,61,1,2155,99,1,0 +2013,7,21,7,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1614,-10,0,1659,-2,0,0 +2013,8,18,7,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-3,0,944,-21,0,0 +2013,4,5,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,835,4,0,0 +2013,7,26,5,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,642,-5,0,724,-4,0,0 +2013,9,21,6,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1325,33,1,1655,30,1,0 +2013,5,28,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1120,-2,0,1309,-10,0,0 +2013,5,1,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-3,0,1525,-12,0,0 +2013,4,24,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1032,-6,0,1318,28,1,0 +2013,6,18,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15304,Tampa International,Tampa,FL,940,-2,0,1139,-5,0,0 +2013,6,21,5,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,645,-3,0,809,3,0,0 +2013,8,12,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,825,2,0,920,13,0,0 +2013,4,20,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1715,-8,0,2010,-35,0,0 +2013,6,27,4,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,1655,2,0,1910,-14,0,0 +2013,10,6,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,908,4,0,1109,-25,0,0 +2013,8,29,4,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1630,23,1,1755,27,1,0 +2013,4,24,3,WN,13198,Kansas City International,Kansas City,MO,14057,Portland International,Portland,OR,1615,62,1,1800,60,1,0 +2013,5,6,1,F9,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1840,-9,0,2123,-8,0,0 +2013,4,4,4,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1042,6,0,1618,0,0,0 +2013,8,12,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,0,0,1255,8,0,0 +2013,9,26,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1020,-1,0,1203,-4,0,0 +2013,5,28,2,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12266,George Bush Intercontinental/Houston,Houston,TX,545,5,0,807,-19,0,0 +2013,5,6,1,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1720,-3,0,2018,-2,0,0 +2013,5,30,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,750,-10,0,1030,-12,0,0 +2013,4,26,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1530,3,0,1714,-9,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1240,2,0,1410,6,0,0 +2013,8,23,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1545,33,1,2030,37,1,0 +2013,5,11,6,AA,11433,Detroit Metro Wayne County,Detroit,MI,13303,Miami International,Miami,FL,1620,-9,0,1925,4,0,0 +2013,9,1,7,AA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1730,-2,0,2000,-12,0,0 +2013,10,10,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1245,-5,0,1435,5,0,0 +2013,8,4,7,F9,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,6,0,2335,8,0,0 +2013,8,28,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1430,-1,0,1530,-5,0,0 +2013,10,22,2,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1655,-11,0,1901,23,1,0 +2013,6,19,3,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1405,-7,0,1525,-20,0,0 +2013,10,3,4,AA,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,700,-1,0,1525,-9,0,0 +2013,5,21,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1935,11,0,2210,2,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,10,0,1140,11,0,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,14635,Southwest Florida International,Fort Myers,FL,1803,6,0,2106,-5,0,0 +2013,9,20,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,710,-8,0,842,-21,0,0 +2013,5,10,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-1,0,1110,1,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1135,19,1,1355,25,1,0 +2013,9,8,7,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1940,8,0,2135,1,0,0 +2013,5,1,3,VX,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1040,0,0,1900,21,1,0 +2013,7,27,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1945,11,0,2140,3,0,0 +2013,10,11,5,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,1911,0,0,2215,-21,0,0 +2013,9,17,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-9,0,708,-13,0,0 +2013,5,20,1,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1608,65,1,1704,57,1,0 +2013,5,17,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,1328,-6,0,1439,-13,0,0 +2013,5,10,5,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,-4,0,1235,-1,0,0 +2013,6,10,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,0,0,2118,-6,0,0 +2013,4,8,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1013,1,0,1412,-6,0,0 +2013,6,13,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-1,0,806,-1,0,0 +2013,6,3,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-4,0,1045,-29,0,0 +2013,8,16,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1840,23,1,2105,24,1,0 +2013,10,18,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1545,0,0,1607,-1,0,0 +2013,5,20,1,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1345,-4,0,1612,28,1,0 +2013,8,15,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,8,0,5,10,0,0 +2013,5,1,3,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-4,0,656,-5,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1341,-3,0,1516,-15,0,0 +2013,10,13,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1919,-3,0,2215,-4,0,0 +2013,6,30,7,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,823,-13,0,0 +2013,10,5,6,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1359,0,0,1511,-19,0,0 +2013,4,28,7,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1820,-2,0,2045,-2,0,0 +2013,4,5,5,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,815,-8,0,1620,-28,0,0 +2013,7,4,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1525,-4,0,1655,-9,0,0 +2013,5,24,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,746,-7,0,930,-2,0,0 +2013,6,1,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-10,0,2007,-10,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,2252,64,1,2339,41,1,0 +2013,7,17,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1945,-2,0,2104,-21,0,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,740,-2,0,1205,-17,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1151,13,0,1320,5,0,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1350,-2,0,1626,0,0,0 +2013,9,4,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,955,5,0,1320,8,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,741,-5,0,1051,-6,0,0 +2013,8,8,4,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,1205,12,0,2017,19,1,0 +2013,6,21,5,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,555,-1,0,915,3,0,0 +2013,7,9,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-5,0,1227,-14,0,0 +2013,9,27,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,803,-10,0,936,-14,0,0 +2013,7,4,4,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,1710,20,1,1835,20,1,0 +2013,5,23,4,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,840,19,1,1105,9,0,0 +2013,9,19,4,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1921,13,0,2201,5,0,0 +2013,4,25,4,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,19,1,1555,1,0,0 +2013,8,11,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2054,-5,0,2258,3,0,0 +2013,7,7,7,UA,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1653,1,0,1841,111,1,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1605,-3,0,1900,-18,0,0 +2013,8,22,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1454,18,1,1710,5,0,0 +2013,4,29,1,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1030,-9,0,1252,-20,0,0 +2013,7,22,1,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,705,-2,0,835,-2,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,14679,San Diego International,San Diego,CA,1815,13,0,2004,31,1,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1622,0,,1735,0,1,1 +2013,6,26,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1933,10,0,2100,8,0,0 +2013,4,24,3,VX,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,730,-1,0,1105,-11,0,0 +2013,6,23,7,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1235,39,1,1405,29,1,0 +2013,4,13,6,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1004,187,1,1546,174,1,0 +2013,6,28,5,WN,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1440,1,0,1700,-6,0,0 +2013,10,10,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,905,-1,0,1219,-1,0,0 +2013,6,14,5,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1340,-5,0,1505,-6,0,0 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1530,16,1,1740,16,1,0 +2013,10,29,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1045,36,1,1250,28,1,0 +2013,9,5,4,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,539,-8,0,658,-12,0,0 +2013,4,9,2,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1243,77,1,1557,72,1,0 +2013,8,30,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-2,0,1345,-19,0,0 +2013,9,21,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,735,-3,0,1012,-9,0,0 +2013,9,6,5,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1344,0,0,1515,-26,0,0 +2013,5,28,2,FL,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-4,0,930,-8,0,0 +2013,6,7,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1945,-4,0,110,-1,0,0 +2013,9,29,7,OO,13244,Memphis International,Memphis,TN,13198,Kansas City International,Kansas City,MO,1335,33,1,1503,27,1,0 +2013,8,10,6,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1650,-5,0,2020,-32,0,0 +2013,7,28,7,UA,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1255,6,0,1844,-2,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,10529,Bradley International,Hartford,CT,2035,-1,0,2140,-10,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,7,0,1252,31,1,0 +2013,5,20,1,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,3,0,850,-1,0,0 +2013,9,14,6,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1858,17,1,2026,4,0,0 +2013,5,1,3,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1125,33,1,1252,64,1,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1455,12,0,1656,9,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,2150,34,1,2335,21,1,0 +2013,8,8,4,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,1304,88,1,2139,114,1,0 +2013,7,20,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1300,22,1,1415,23,1,0 +2013,5,15,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1815,13,0,2125,8,0,0 +2013,10,24,4,UA,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,1035,16,1,1631,2,0,0 +2013,5,14,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2055,-6,0,2210,-11,0,0 +2013,7,30,2,DL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-4,0,1632,-7,0,0 +2013,4,11,4,F9,11292,Denver International,Denver,CO,14635,Southwest Florida International,Fort Myers,FL,1130,-3,0,1704,-2,0,0 +2013,6,16,7,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1618,-5,0,1748,-20,0,0 +2013,8,30,5,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1714,3,0,1959,3,0,0 +2013,7,3,3,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,-8,0,2110,-7,0,0 +2013,8,19,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1945,17,1,2055,13,0,0 +2013,4,20,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1310,-2,0,1415,-6,0,0 +2013,9,5,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,758,-7,0,1123,-6,0,0 +2013,10,4,5,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,629,6,0,1153,-12,0,0 +2013,8,18,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1245,5,0,1352,-1,0,0 +2013,5,14,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1025,4,0,1135,7,0,0 +2013,5,1,3,OO,15376,Tucson International,Tucson,AZ,11292,Denver International,Denver,CO,1235,-7,0,1526,-4,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1710,7,0,1950,64,1,0 +2013,8,1,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1940,31,1,2055,26,1,0 +2013,6,15,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14843,Luis Munoz Marin International,San Juan,PR,1011,19,1,1550,-2,0,0 +2013,5,10,5,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,600,-2,0,818,-10,0,0 +2013,10,22,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1347,-3,0,1630,-13,0,0 +2013,8,21,3,WN,15304,Tampa International,Tampa,FL,10423,Austin - Bergstrom International,Austin,TX,1135,14,0,1305,5,0,0 +2013,8,19,1,WN,13204,Orlando International,Orlando,FL,13232,Chicago Midway International,Chicago,IL,1240,8,0,1420,3,0,0 +2013,9,25,3,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,828,-5,0,1047,-27,0,0 +2013,10,4,5,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1550,13,0,1840,20,1,0 +2013,8,27,2,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1340,-1,0,1405,0,0,0 +2013,10,7,1,OO,14730,Louisville International-Standiford Field,Louisville,KY,13487,Minneapolis-St Paul International,Minneapolis,MN,1915,-13,0,2017,-4,0,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1025,4,0,1250,-8,0,0 +2013,8,10,6,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,850,-9,0,1121,2,0,0 +2013,6,9,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,-3,0,1345,-7,0,0 +2013,4,10,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1120,1,0,1530,26,1,0 +2013,6,21,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-6,0,1114,-25,0,0 +2013,8,29,4,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,945,1,0,1115,-12,0,0 +2013,4,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,14307,Theodore Francis Green State,Providence,RI,2205,-12,0,2319,-14,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-3,0,757,-2,0,0 +2013,6,5,3,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1020,3,0,1255,-12,0,0 +2013,9,24,2,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,610,-4,0,729,-8,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1258,-4,0,1703,-12,0,0 +2013,9,10,2,AA,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,2005,-3,0,2305,-3,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1736,14,0,1830,3,0,0 +2013,6,12,3,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1525,0,0,1650,5,0,0 +2013,10,24,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1935,-2,0,2035,-9,0,0 +2013,7,31,3,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,655,-3,0,1225,-3,0,0 +2013,9,16,1,AA,13930,Chicago O'Hare International,Chicago,IL,13204,Orlando International,Orlando,FL,1500,-2,0,1835,-14,0,0 +2013,7,11,4,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1755,-7,0,2024,-14,0,0 +2013,7,12,5,WN,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,1550,395,1,1830,395,1,0 +2013,4,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1920,1,0,2036,-6,0,0 +2013,9,5,4,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1855,46,1,2130,42,1,0 +2013,7,19,5,WN,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1025,15,1,1615,22,1,0 +2013,4,14,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,845,-3,0,945,-5,0,0 +2013,5,10,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1220,24,1,1345,20,1,0 +2013,10,3,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1201,29,1,1315,13,0,0 +2013,10,24,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1012,9,0,1245,4,0,0 +2013,8,12,1,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1700,17,1,1930,57,1,0 +2013,9,25,3,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1559,-6,0,1827,-13,0,0 +2013,5,6,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1315,-8,0,1435,-13,0,0 +2013,7,1,1,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,545,-6,0,650,-15,0,0 +2013,9,24,2,F9,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,1230,-5,0,1447,-5,0,0 +2013,9,10,2,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1710,-12,0,2001,-25,0,0 +2013,4,5,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1440,-3,0,1711,-11,0,0 +2013,9,25,3,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1825,-7,0,2103,-15,0,0 +2013,8,23,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,841,-2,0,956,-27,0,0 +2013,7,26,5,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1420,8,0,1712,-6,0,0 +2013,4,21,7,WN,13342,General Mitchell International,Milwaukee,WI,12889,McCarran International,Las Vegas,NV,1845,11,0,2040,0,0,0 +2013,10,16,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,7,0,2045,-5,0,0 +2013,10,2,3,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1625,-8,0,1831,-15,0,0 +2013,10,7,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,4,0,1949,-12,0,0 +2013,10,2,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1925,-10,0,2030,2,0,0 +2013,8,10,6,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2030,9,0,2145,4,0,0 +2013,10,3,4,WN,14057,Portland International,Portland,OR,13796,Metropolitan Oakland International,Oakland,CA,1535,0,0,1715,-14,0,0 +2013,10,3,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1500,10,0,1629,23,1,0 +2013,5,10,5,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,725,-1,0,1025,-1,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1455,-6,0,1737,-10,0,0 +2013,5,20,1,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1110,46,1,1251,28,1,0 +2013,6,24,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1808,129,1,2014,124,1,0 +2013,4,5,5,US,14307,Theodore Francis Green State,Providence,RI,11278,Ronald Reagan Washington National,Washington,DC,615,-6,0,740,10,0,0 +2013,10,12,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-9,0,1730,-14,0,0 +2013,7,31,3,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1905,-12,0,2015,-23,0,0 +2013,4,4,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1350,0,0,1555,4,0,0 +2013,8,31,6,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1620,72,1,1912,67,1,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2150,12,0,2316,-1,0,0 +2013,5,19,7,B6,12478,John F. Kennedy International,New York,NY,14057,Portland International,Portland,OR,2040,13,0,2353,4,0,0 +2013,8,19,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1325,2,0,1450,-1,0,0 +2013,5,3,5,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1630,-7,0,1906,-19,0,0 +2013,9,3,2,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1825,-4,0,2054,-20,0,0 +2013,7,12,5,DL,15304,Tampa International,Tampa,FL,13244,Memphis International,Memphis,TN,1755,9,0,1849,-1,0,0 +2013,8,29,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1100,4,0,1120,4,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1020,-4,0,1159,-8,0,0 +2013,4,3,3,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1723,-7,0,2000,-14,0,0 +2013,9,16,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2115,26,1,2359,13,0,0 +2013,5,28,2,OO,14747,Seattle/Tacoma International,Seattle,WA,12954,Long Beach Airport,Long Beach,CA,700,-6,0,933,-17,0,0 +2013,10,2,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,1805,2,0,1915,2,0,0 +2013,8,26,1,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,-3,0,1415,-16,0,0 +2013,4,19,5,B6,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,921,-7,0,1224,-14,0,0 +2013,5,9,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,830,-3,0,930,-3,0,0 +2013,6,20,4,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2145,-1,0,30,-10,0,0 +2013,6,22,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1345,49,1,1715,53,1,0 +2013,9,3,2,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1620,11,0,1850,-8,0,0 +2013,7,24,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,715,-2,0,915,-14,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-11,0,1336,-10,0,0 +2013,5,9,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1300,-1,0,1335,-12,0,0 +2013,8,16,5,AA,12339,Indianapolis International,Indianapolis,IN,13930,Chicago O'Hare International,Chicago,IL,1350,-13,0,1355,-30,0,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1920,-1,0,2204,-7,0,0 +2013,10,26,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1235,-6,0,1426,-12,0,0 +2013,6,24,1,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1823,-10,0,2030,-27,0,0 +2013,10,4,5,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1020,44,1,1150,39,1,0 +2013,4,6,6,FL,12339,Indianapolis International,Indianapolis,IN,15304,Tampa International,Tampa,FL,1410,22,1,1618,19,1,0 +2013,4,30,2,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,600,-7,0,741,14,0,0 +2013,8,26,1,B6,11292,Denver International,Denver,CO,12478,John F. Kennedy International,New York,NY,53,1,0,629,-1,0,0 +2013,10,21,1,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-4,0,910,-6,0,0 +2013,7,8,1,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1058,86,1,1345,71,1,0 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1215,11,0,1525,6,0,0 +2013,5,30,4,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1540,46,1,2213,51,1,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2010,5,0,2319,-9,0,0 +2013,7,27,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,2130,50,1,2259,63,1,0 +2013,10,20,7,US,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1810,-8,0,1858,-19,0,0 +2013,5,2,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1935,0,0,2120,-19,0,0 +2013,7,10,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,-6,0,1055,4,0,0 +2013,6,1,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1135,21,1,1530,19,1,0 +2013,9,25,3,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1708,4,0,1841,-4,0,0 +2013,9,16,1,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,5,0,1600,-7,0,0 +2013,8,16,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,830,-3,0,935,9,0,0 +2013,4,16,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1705,14,0,1805,10,0,0 +2013,7,11,4,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1030,-1,0,1248,-1,0,0 +2013,9,15,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-10,0,1544,-4,0,0 +2013,10,18,5,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1014,-11,0,1112,-20,0,0 +2013,4,10,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,705,-4,0,940,37,1,0 +2013,8,24,6,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1027,-2,0,1210,-15,0,0 +2013,7,21,7,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1230,7,0,1315,9,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-4,0,1520,1,0,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2135,-3,0,2359,-15,0,0 +2013,8,27,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1700,2,0,1853,1,0,0 +2013,5,23,4,MQ,13303,Miami International,Miami,FL,11066,Port Columbus International,Columbus,OH,950,35,1,1230,32,1,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-3,0,1005,-19,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,1710,-3,0,1925,-5,0,0 +2013,8,8,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,17,1,1545,15,1,0 +2013,6,1,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1003,-2,0,1324,24,1,0 +2013,9,3,2,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1355,-4,0,1514,-3,0,0 +2013,8,22,4,F9,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,815,59,1,948,52,1,0 +2013,10,31,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,835,-3,0,1010,-25,0,0 +2013,7,31,3,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,1950,35,1,2020,29,1,0 +2013,10,23,3,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1007,50,1,1441,28,1,0 +2013,10,25,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,750,-1,0,1044,-14,0,0 +2013,7,23,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,940,6,0,1050,2,0,0 +2013,10,11,5,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1220,15,1,1310,5,0,0 +2013,6,21,5,UA,11292,Denver International,Denver,CO,14679,San Diego International,San Diego,CA,1125,-2,0,1245,0,0,0 +2013,5,2,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,540,-6,0,730,22,1,0 +2013,6,9,7,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1610,50,1,1755,30,1,0 +2013,9,17,2,B6,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1515,-2,0,1631,3,0,0 +2013,6,18,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,735,24,1,1025,13,0,0 +2013,9,9,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,1340,21,1,1545,9,0,0 +2013,10,20,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1800,0,0,1855,2,0,0 +2013,4,26,5,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1355,-1,0,1535,-6,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1020,0,0,1550,-17,0,0 +2013,10,23,3,US,15016,Lambert-St. Louis International,St. Louis,MO,11057,Charlotte Douglas International,Charlotte,NC,1620,4,0,1905,-3,0,0 +2013,5,12,7,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1152,70,1,1308,72,1,0 +2013,9,24,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,2015,-8,0,2115,-11,0,0 +2013,6,19,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,923,-9,0,0 +2013,9,12,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1425,-1,0,1550,-6,0,0 +2013,4,15,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1110,-11,0,1325,-4,0,0 +2013,8,13,2,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1850,-5,0,2113,19,1,0 +2013,9,20,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1845,33,1,1951,15,1,0 +2013,8,14,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1115,22,1,1340,-3,0,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1432,-2,0,2014,-5,0,0 +2013,10,1,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,25,1,1605,21,1,0 +2013,8,19,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1437,73,1,1550,79,1,0 +2013,7,29,1,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,550,-6,0,732,-15,0,0 +2013,6,1,6,HA,12173,Honolulu International,Honolulu,HI,14057,Portland International,Portland,OR,1435,56,1,2305,43,1,0 +2013,10,1,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,-9,0,1040,-25,0,0 +2013,5,14,2,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-5,0,1101,-8,0,0 +2013,10,9,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1230,-2,0,1325,-9,0,0 +2013,7,11,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1205,42,1,1315,53,1,0 +2013,10,21,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,-4,0,1706,-19,0,0 +2013,5,24,5,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,725,-1,0,1045,-4,0,0 +2013,10,18,5,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1225,-10,0,1507,0,0,0 +2013,7,13,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,620,-5,0,717,3,0,0 +2013,6,26,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1425,3,0,1554,-16,0,0 +2013,4,21,7,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,720,-1,0,1118,-4,0,0 +2013,6,27,4,B6,12264,Washington Dulles International,Washington,DC,12954,Long Beach Airport,Long Beach,CA,625,-4,0,836,-27,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1545,-2,0,1709,9,0,0 +2013,5,11,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,-7,0,1854,-12,0,0 +2013,6,26,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1655,46,1,1710,41,1,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1000,-5,0,1130,7,0,0 +2013,7,14,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1250,1,0,1355,1,0,0 +2013,7,8,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,625,-2,0,745,6,0,0 +2013,7,9,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1936,47,1,2120,38,1,0 +2013,7,12,5,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,640,13,0,745,4,0,0 +2013,10,31,4,OO,13495,Louis Armstrong New Orleans International,New Orleans,LA,13244,Memphis International,Memphis,TN,655,-2,0,817,6,0,0 +2013,7,2,2,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1750,26,1,2105,0,0,0 +2013,9,30,1,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-2,0,1809,-3,0,0 +2013,5,29,3,MQ,12478,John F. Kennedy International,New York,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1830,-7,0,1940,-22,0,0 +2013,6,4,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1812,-7,0,2002,-6,0,0 +2013,4,20,6,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,27,1,2015,34,1,0 +2013,10,7,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2145,-7,0,24,-13,0,0 +2013,4,9,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-2,0,1104,-10,0,0 +2013,6,14,5,YV,13796,Metropolitan Oakland International,Oakland,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1905,96,1,2100,89,1,0 +2013,7,16,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,954,0,0,1340,-11,0,0 +2013,9,7,6,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2249,3,0,721,-2,0,0 +2013,10,31,4,EV,12264,Washington Dulles International,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1715,-11,0,1847,-18,0,0 +2013,9,25,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,945,109,1,1350,95,1,0 +2013,8,14,3,OO,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,2200,-2,0,2216,-15,0,0 +2013,10,30,3,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1730,1,0,1907,-7,0,0 +2013,7,17,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1510,14,0,1630,6,0,0 +2013,4,3,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,855,-5,0,946,-6,0,0 +2013,10,23,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1111,0,0,1353,-25,0,0 +2013,8,4,7,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1121,-1,0,1415,-19,0,0 +2013,6,9,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1455,72,1,1650,51,1,0 +2013,6,2,7,WN,10423,Austin - Bergstrom International,Austin,TX,13232,Chicago Midway International,Chicago,IL,1420,5,0,1650,-7,0,0 +2013,4,8,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,1730,5,0,1800,4,0,0 +2013,9,5,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-3,0,1230,5,0,0 +2013,8,26,1,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,925,23,1,945,9,0,0 +2013,9,30,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,755,1,0,940,-27,0,0 +2013,8,14,3,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1045,0,0,1320,-10,0,0 +2013,5,27,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1605,43,1,1630,34,1,0 +2013,7,23,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1537,24,1,1852,21,1,0 +2013,6,15,6,WN,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1600,20,1,1745,14,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,920,-2,0,1107,-9,0,0 +2013,4,24,3,WN,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1605,34,1,1735,53,1,0 +2013,10,9,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,920,-5,0,1045,-5,0,0 +2013,6,13,4,OO,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1219,-6,0,1356,-8,0,0 +2013,4,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1050,-2,0,1150,-7,0,0 +2013,8,19,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1245,13,0,1345,14,0,0 +2013,5,6,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1645,15,1,1810,12,0,0 +2013,6,27,4,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,2204,-4,0,2257,-1,0,0 +2013,8,11,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1525,21,1,1825,18,1,0 +2013,4,26,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1220,-9,0,1240,-7,0,0 +2013,6,1,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1155,-7,0,1310,-10,0,0 +2013,9,10,2,WN,13851,Will Rogers World,Oklahoma City,OK,13232,Chicago Midway International,Chicago,IL,1535,3,0,1725,-4,0,0 +2013,4,13,6,B6,12954,Long Beach Airport,Long Beach,CA,12478,John F. Kennedy International,New York,NY,1131,-3,0,2000,-6,0,0 +2013,5,4,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,0,0,1515,11,0,0 +2013,6,27,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,1200,-6,0,1225,-9,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,955,-2,0,1135,5,0,0 +2013,8,20,2,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,3,0,2015,10,0,0 +2013,7,15,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1918,51,1,2239,35,1,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12191,William P Hobby,Houston,TX,1041,59,1,1155,47,1,0 +2013,7,1,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,855,-5,0,1021,-7,0,0 +2013,7,6,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1518,6,0,1751,-4,0,0 +2013,9,4,3,WN,13204,Orlando International,Orlando,FL,13931,Norfolk International,Norfolk,VA,1525,-5,0,1720,-20,0,0 +2013,6,13,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,800,57,1,945,41,1,0 +2013,7,15,1,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,2030,-5,0,2246,-22,0,0 +2013,6,14,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1116,-7,0,1151,-3,0,0 +2013,10,4,5,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-4,0,803,0,0,0 +2013,7,31,3,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,533,-3,0,940,-28,0,0 +2013,7,18,4,AA,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1840,-1,0,2040,-33,0,0 +2013,7,24,3,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1822,18,1,2020,25,1,0 +2013,8,10,6,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1645,18,1,1750,-1,0,0 +2013,4,14,7,F9,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1859,17,1,2014,26,1,0 +2013,6,5,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,2145,83,1,25,68,1,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,0,0,1648,19,1,0 +2013,4,25,4,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1525,-9,0,1730,-6,0,0 +2013,7,19,5,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,605,-1,0,730,3,0,0 +2013,6,3,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1430,-2,0,1541,-11,0,0 +2013,4,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1021,-2,0,1100,-9,0,0 +2013,9,5,4,F9,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,640,3,0,717,-5,0,0 +2013,5,16,4,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2045,73,1,2215,88,1,0 +2013,6,8,6,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1300,5,0,1453,10,0,0 +2013,10,24,4,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1635,-11,0,1920,-25,0,0 +2013,7,18,4,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2047,10,0,2234,14,0,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,-3,0,2305,0,0,0 +2013,5,14,2,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,-13,0,2301,-23,0,0 +2013,7,18,4,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1415,6,0,1705,14,0,0 +2013,6,18,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1644,-8,0,1810,-6,0,0 +2013,9,13,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1500,104,1,1625,95,1,0 +2013,10,14,1,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1452,1,0,1757,2,0,0 +2013,7,30,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1707,-8,0,1811,-6,0,0 +2013,4,17,3,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-2,0,1559,6,0,0 +2013,6,14,5,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1435,17,1,1640,7,0,0 +2013,8,16,5,OO,13342,General Mitchell International,Milwaukee,WI,13244,Memphis International,Memphis,TN,606,8,0,755,4,0,0 +2013,7,17,3,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1630,35,1,1755,24,1,0 +2013,4,5,5,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-6,0,1830,-10,0,0 +2013,10,30,3,F9,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1450,-2,0,1812,-4,0,0 +2013,8,27,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1145,-4,0,1240,-11,0,0 +2013,5,5,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1920,-4,0,2205,-10,0,0 +2013,5,25,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1245,32,1,1850,12,0,0 +2013,9,26,4,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2140,11,0,2232,16,1,0 +2013,5,12,7,WN,12889,McCarran International,Las Vegas,NV,13198,Kansas City International,Kansas City,MO,1415,-1,0,1905,4,0,0 +2013,7,10,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1220,-7,0,1319,-11,0,0 +2013,8,21,3,WN,15304,Tampa International,Tampa,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1335,-3,0,1405,2,0,0 +2013,5,17,5,B6,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,700,-6,0,945,-11,0,0 +2013,4,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1020,4,0,1210,-23,0,0 +2013,7,14,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1420,0,0,1608,2,0,0 +2013,6,9,7,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1017,-7,0,1304,-12,0,0 +2013,7,2,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1005,-5,0,1200,-1,0,0 +2013,8,8,4,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,825,71,1,1000,55,1,0 +2013,8,2,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1907,2,0,2023,0,0,0 +2013,4,7,7,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-7,0,1805,-35,0,0 +2013,8,29,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1910,-4,0,2040,-6,0,0 +2013,6,2,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,940,-2,0,1100,-7,0,0 +2013,9,20,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,855,20,1,1020,24,1,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,2155,11,0,2340,17,1,0 +2013,5,2,4,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1125,-5,0,1806,-6,0,0 +2013,6,14,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1047,0,0,1121,6,0,0 +2013,5,26,7,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1254,-8,0,1500,-14,0,0 +2013,8,30,5,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1445,47,1,1740,40,1,0 +2013,7,10,3,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1230,-6,0,1441,-16,0,0 +2013,4,6,6,WN,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-2,0,2250,-5,0,0 +2013,8,7,3,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1815,118,1,1937,164,1,0 +2013,8,5,1,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1650,-5,0,1820,-14,0,0 +2013,8,20,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1220,80,1,1355,63,1,0 +2013,10,6,7,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,620,10,0,700,8,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,-2,0,1105,-24,0,0 +2013,9,30,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1358,-1,0,1736,4,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1705,16,1,2000,23,1,0 +2013,7,14,7,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1710,-6,0,1833,-18,0,0 +2013,5,18,6,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,-8,0,1956,-2,0,0 +2013,6,9,7,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,2243,-14,0,706,-37,0,0 +2013,9,4,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1827,12,0,2100,4,0,0 +2013,6,17,1,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,2015,103,1,2120,99,1,0 +2013,6,27,4,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1655,12,0,2015,2,0,0 +2013,9,30,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-5,0,1643,-13,0,0 +2013,6,10,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1150,50,1,1349,42,1,0 +2013,7,4,4,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1335,-3,0,1620,-16,0,0 +2013,6,19,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1905,-2,0,2148,-16,0,0 +2013,8,15,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1130,-4,0,1231,-1,0,0 +2013,8,22,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,44,1,1615,50,1,0 +2013,9,30,1,WN,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2105,6,0,2305,15,1,0 +2013,9,27,5,EV,11066,Port Columbus International,Columbus,OH,11042,Cleveland-Hopkins International,Cleveland,OH,1644,-16,0,1735,-31,0,0 +2013,5,23,4,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1555,-3,0,1813,66,1,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1925,40,1,2307,45,1,0 +2013,4,2,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-1,0,926,-6,0,0 +2013,9,30,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1139,8,0,1330,4,0,0 +2013,7,18,4,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1055,2,0,1330,1,0,0 +2013,7,12,5,UA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,2047,14,0,2210,3,0,0 +2013,10,25,5,B6,12191,William P Hobby,Houston,TX,12478,John F. Kennedy International,New York,NY,1715,1,0,2141,14,0,0 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1742,59,1,1823,58,1,0 +2013,9,8,7,UA,11292,Denver International,Denver,CO,14570,Reno/Tahoe International,Reno,NV,1936,11,0,2052,2,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,825,-1,0,1200,0,0,0 +2013,6,24,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1400,-1,0,1545,6,0,0 +2013,10,23,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1145,4,0,1735,-5,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1520,1,0,1640,13,0,0 +2013,9,6,5,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,800,-3,0,1025,-3,0,0 +2013,5,10,5,WN,10693,Nashville International,Nashville,TN,12889,McCarran International,Las Vegas,NV,1425,3,0,1630,-21,0,0 +2013,5,25,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,1000,0,0,1320,-10,0,0 +2013,9,19,4,UA,12264,Washington Dulles International,Washington,DC,14057,Portland International,Portland,OR,1728,8,0,2012,-19,0,0 +2013,7,23,2,B6,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1930,39,1,2248,90,1,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1400,0,0,1510,-14,0,0 +2013,7,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,-9,0,1735,11,0,0 +2013,6,8,6,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-7,0,701,-5,0,0 +2013,6,22,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1255,-4,0,1532,-7,0,0 +2013,4,30,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1530,-5,0,1650,-5,0,0 +2013,5,27,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1855,8,0,2156,8,0,0 +2013,6,9,7,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,2124,1,0,2358,-28,0,0 +2013,10,1,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1715,-11,0,2325,-11,0,0 +2013,6,16,7,9E,11042,Cleveland-Hopkins International,Cleveland,OH,11433,Detroit Metro Wayne County,Detroit,MI,1334,-8,0,1439,-19,0,0 +2013,5,30,4,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2010,145,1,2254,140,1,0 +2013,6,3,1,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1116,7,0,1350,-4,0,0 +2013,6,3,1,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-8,0,1353,-6,0,0 +2013,8,1,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1730,52,1,1915,56,1,0 +2013,4,25,4,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,955,77,1,1108,63,1,0 +2013,8,16,5,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1950,2,0,2108,-23,0,0 +2013,6,7,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2013,100,1,2030,96,1,0 +2013,5,17,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,3,0,2102,-5,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,2100,6,0,2350,14,0,0 +2013,10,2,3,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1059,11,0,1218,9,0,0 +2013,10,7,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1848,1,0,2015,-3,0,0 +2013,7,4,4,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1025,2,0,1330,-7,0,0 +2013,7,18,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,2135,-1,0,2255,-11,0,0 +2013,6,30,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,2140,-2,0,2240,-13,0,0 +2013,9,16,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1655,2,0,1820,18,1,0 +2013,4,24,3,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1705,21,1,2014,60,1,0 +2013,9,30,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,900,0,0,1000,-7,0,0 +2013,6,29,6,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,700,-2,0,805,-6,0,0 +2013,5,16,4,EV,12264,Washington Dulles International,Washington,DC,11042,Cleveland-Hopkins International,Cleveland,OH,815,-10,0,928,44,1,0 +2013,8,2,5,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1640,149,1,1715,155,1,0 +2013,7,8,1,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,750,-1,0,930,-2,0,0 +2013,7,30,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,647,1,0,817,-3,0,0 +2013,6,17,1,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,17,1,847,5,0,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,844,-1,0,1040,-15,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,10792,Buffalo Niagara International,Buffalo,NY,930,-5,0,1650,13,0,0 +2013,10,8,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1401,-11,0,1552,-17,0,0 +2013,6,7,5,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,959,-4,0,1114,-9,0,0 +2013,5,21,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1825,-2,0,2055,14,0,0 +2013,6,18,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,820,0,0,1055,-4,0,0 +2013,10,18,5,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1443,-8,0,1615,-19,0,0 +2013,4,14,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1245,-8,0,1345,-15,0,0 +2013,5,17,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,850,-2,0,1015,-7,0,0 +2013,7,15,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2157,-6,0,2250,1,0,0 +2013,6,13,4,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1426,-5,0,1558,9,0,0 +2013,10,12,6,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1027,-2,0,1328,-6,0,0 +2013,8,28,3,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1655,-7,0,1905,-27,0,0 +2013,5,24,5,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1730,90,1,1850,82,1,0 +2013,4,1,1,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,2155,-3,0,2310,-7,0,0 +2013,6,18,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,855,23,1,1020,37,1,0 +2013,9,16,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,11618,Newark Liberty International,Newark,NJ,1015,-10,0,1151,-24,0,0 +2013,4,30,2,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1614,-21,0,0 +2013,10,21,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,615,16,1,720,4,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1820,2,0,2014,12,0,0 +2013,10,22,2,EV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1347,-4,0,1515,-3,0,0 +2013,6,19,3,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,708,-4,0,1030,-14,0,0 +2013,4,9,2,9E,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1930,-10,0,2133,-17,0,0 +2013,5,14,2,WN,11057,Charlotte Douglas International,Charlotte,NC,13232,Chicago Midway International,Chicago,IL,700,-3,0,800,-13,0,0 +2013,5,10,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,600,16,1,738,22,1,0 +2013,10,18,5,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1315,-3,0,1508,-1,0,0 +2013,4,16,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1040,11,0,1320,155,1,0 +2013,9,6,5,AA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,745,-13,0,915,-35,0,0 +2013,9,23,1,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,-7,0,1435,-5,0,0 +2013,5,28,2,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,910,27,1,1059,11,0,0 +2013,5,4,6,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1218,23,1,2015,9,0,0 +2013,10,30,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,1543,-14,0,1716,-4,0,0 +2013,6,28,5,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,2055,-5,0,2230,-7,0,0 +2013,9,15,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1500,12,0,1721,6,0,0 +2013,7,24,3,AS,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1120,56,1,1417,50,1,0 +2013,7,26,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-3,0,1751,17,1,0 +2013,4,10,3,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,1035,-2,0,1159,-17,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1550,59,1,1655,48,1,0 +2013,6,23,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1516,108,1,1620,105,1,0 +2013,10,25,5,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,758,0,0,1020,-15,0,0 +2013,7,27,6,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1448,27,1,1655,78,1,0 +2013,4,4,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,815,-3,0,1634,14,0,0 +2013,7,8,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1135,-5,0,1451,8,0,0 +2013,4,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1220,45,1,1515,40,1,0 +2013,8,1,4,AS,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,800,-4,0,1000,-9,0,0 +2013,6,13,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,0,0,739,-2,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1620,110,1,1720,107,1,0 +2013,10,24,4,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,625,-2,0,820,-19,0,0 +2013,7,17,3,UA,11278,Ronald Reagan Washington National,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,755,2,0,1001,1,0,0 +2013,10,21,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,2,0,1343,-17,0,0 +2013,6,21,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,935,0,0,1230,-1,0,0 +2013,6,29,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,2200,105,1,511,101,1,0 +2013,5,5,7,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1710,0,0,1940,0,0,0 +2013,8,11,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,-10,0,1920,-15,0,0 +2013,6,3,1,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1130,27,1,1255,25,1,0 +2013,8,2,5,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,729,-7,0,855,14,0,0 +2013,8,11,7,UA,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,845,-1,0,1654,-26,0,0 +2013,5,13,1,B6,11278,Ronald Reagan Washington National,Washington,DC,13204,Orlando International,Orlando,FL,1445,-2,0,1701,7,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1520,-4,0,1835,-11,0,0 +2013,9,28,6,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-2,0,1946,-9,0,0 +2013,6,6,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,844,-3,0,1214,4,0,0 +2013,6,1,6,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1300,1,0,1355,35,1,0 +2013,9,21,6,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1415,3,0,1755,-2,0,0 +2013,8,9,5,WN,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-4,0,1415,-10,0,0 +2013,8,1,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1220,-3,0,1449,19,1,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1355,-6,0,1505,-11,0,0 +2013,7,13,6,UA,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1904,130,1,2036,128,1,0 +2013,7,10,3,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,720,59,1,940,68,1,0 +2013,7,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,944,37,1,1105,36,1,0 +2013,4,17,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,13930,Chicago O'Hare International,Chicago,IL,2300,-10,0,815,19,1,0 +2013,9,19,4,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,615,-4,0,1442,-10,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,945,-7,0,1108,-11,0,0 +2013,9,30,1,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1805,-12,0,2027,-16,0,0 +2013,7,16,2,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1104,-2,0,1233,-12,0,0 +2013,7,29,1,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1545,52,1,1710,56,1,0 +2013,7,30,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,14,0,25,-7,0,0 +2013,9,30,1,UA,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,2151,-4,0,2246,-12,0,0 +2013,6,8,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,2,0,1225,-13,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,903,-9,0,1143,-16,0,0 +2013,10,4,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2220,-4,0,2354,-14,0,0 +2013,7,6,6,VX,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2345,30,1,820,25,1,0 +2013,4,28,7,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1420,-4,0,1600,-21,0,0 +2013,9,23,1,UA,11292,Denver International,Denver,CO,12173,Honolulu International,Honolulu,HI,1138,-4,0,1448,1,0,0 +2013,6,28,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,13,0,1205,6,0,0 +2013,7,30,2,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1129,-2,0,1305,-8,0,0 +2013,9,9,1,DL,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,615,-2,0,902,-10,0,0 +2013,6,21,5,MQ,13303,Miami International,Miami,FL,10693,Nashville International,Nashville,TN,1105,1,0,1225,2,0,0 +2013,5,20,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,7,0,1645,-3,0,0 +2013,4,8,1,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,1450,-6,0,1540,-9,0,0 +2013,5,12,7,FL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1121,0,0,1356,2,0,0 +2013,4,13,6,9E,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,934,-5,0,1113,-4,0,0 +2013,6,21,5,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,1305,2,0,2041,0,0,0 +2013,5,21,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,740,5,0,1100,11,0,0 +2013,9,14,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1135,-1,0,1250,-8,0,0 +2013,8,6,2,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1855,17,1,2021,13,0,0 +2013,5,13,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1935,16,1,2051,-3,0,0 +2013,8,25,7,DL,12339,Indianapolis International,Indianapolis,IN,13487,Minneapolis-St Paul International,Minneapolis,MN,1557,-3,0,1645,-3,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,1403,-4,0,1554,-4,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2030,-1,0,2212,-25,0,0 +2013,9,26,4,US,13871,Eppley Airfield,Omaha,NE,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-5,0,646,-2,0,0 +2013,10,10,4,OO,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,705,-7,0,829,-2,0,0 +2013,5,22,3,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-5,0,920,20,1,0 +2013,9,10,2,WN,11292,Denver International,Denver,CO,11066,Port Columbus International,Columbus,OH,1020,4,0,1500,12,0,0 +2013,7,14,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1805,-6,0,1917,-14,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1131,0,0,1408,-7,0,0 +2013,5,23,4,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,926,-5,0,1129,5,0,0 +2013,5,17,5,EV,12264,Washington Dulles International,Washington,DC,12478,John F. Kennedy International,New York,NY,820,-2,0,932,0,0,0 +2013,8,11,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,725,19,1,905,2,0,0 +2013,10,23,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1525,-1,0,1630,3,0,0 +2013,10,19,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,625,-1,0,832,22,1,0 +2013,5,27,1,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,953,-3,0,1515,4,0,0 +2013,7,17,3,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-6,0,1159,-6,0,0 +2013,6,27,4,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,6,0,1807,3,0,0 +2013,10,21,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1140,-5,0,1150,-13,0,0 +2013,8,1,4,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,600,-1,0,1200,-17,0,0 +2013,9,30,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1100,-5,0,1230,-14,0,0 +2013,5,9,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,740,-1,0,1002,4,0,0 +2013,9,21,6,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1200,11,0,1330,8,0,0 +2013,8,5,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13204,Orlando International,Orlando,FL,736,-2,0,1106,-7,0,0 +2013,5,16,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1545,0,0,1820,18,1,0 +2013,6,28,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,805,0,,915,0,1,1 +2013,10,8,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1245,3,0,1600,-5,0,0 +2013,9,8,7,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1030,26,1,1335,0,0,0 +2013,7,28,7,B6,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,959,48,1,1225,55,1,0 +2013,7,21,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1000,-4,0,1221,0,0,0 +2013,9,11,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1410,0,0,1615,1,0,0 +2013,9,28,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1840,-7,0,2029,-21,0,0 +2013,9,26,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1140,10,0,1250,13,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1235,6,0,1405,0,0,0 +2013,5,19,7,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1125,-4,0,1235,0,0,0 +2013,10,3,4,OO,12954,Long Beach Airport,Long Beach,CA,14869,Salt Lake City International,Salt Lake City,UT,1014,-5,0,1302,-12,0,0 +2013,4,26,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,800,-7,0,914,16,1,0 +2013,8,10,6,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,1220,3,0,1325,-1,0,0 +2013,10,28,1,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1852,-5,0,2117,-3,0,0 +2013,4,14,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1515,18,1,1800,10,0,0 +2013,10,29,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1335,-2,0,1531,-3,0,0 +2013,4,9,2,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,755,3,0,1024,14,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2157,12,0,2250,6,0,0 +2013,7,23,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1500,18,1,1917,25,1,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,900,-1,0,1005,-4,0,0 +2013,5,23,4,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1205,0,0,1335,-13,0,0 +2013,10,10,4,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1413,6,0,1645,5,0,0 +2013,10,17,4,EV,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1259,9,0,1512,8,0,0 +2013,9,3,2,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1920,6,0,2200,-2,0,0 +2013,10,4,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1151,-8,0,1356,-29,0,0 +2013,4,12,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2130,-5,0,2311,-13,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1820,20,1,2300,6,0,0 +2013,10,25,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1505,0,0,2035,-6,0,0 +2013,9,2,1,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1610,18,1,1745,30,1,0 +2013,4,9,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1140,102,1,1247,105,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,2303,-1,0,13,4,0,0 +2013,7,7,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1630,8,0,1905,8,0,0 +2013,6,10,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,645,-5,0,1455,-21,0,0 +2013,4,11,4,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,-2,0,1935,12,0,0 +2013,4,3,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1411,-7,0,1755,-5,0,0 +2013,9,8,7,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-2,0,1340,-9,0,0 +2013,6,25,2,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-2,0,1659,11,0,0 +2013,9,16,1,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-4,0,1657,-27,0,0 +2013,9,27,5,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1315,16,1,1450,14,0,0 +2013,8,5,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1350,-5,0,1550,-16,0,0 +2013,9,20,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2230,-7,0,2352,-3,0,0 +2013,8,20,2,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,-3,0,1100,17,1,0 +2013,6,9,7,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1112,-7,0,1403,2,0,0 +2013,5,10,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,935,-3,0,1111,-11,0,0 +2013,9,5,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1630,-7,0,1810,-29,0,0 +2013,9,9,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,700,-4,0,802,-15,0,0 +2013,6,14,5,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1000,5,0,1125,-3,0,0 +2013,8,25,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2320,-2,0,612,-13,0,0 +2013,4,27,6,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,830,24,1,1020,5,0,0 +2013,4,11,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1745,32,1,1850,18,1,0 +2013,10,8,2,UA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2028,16,1,500,15,1,0 +2013,5,5,7,WN,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1020,2,0,1345,10,0,0 +2013,10,19,6,UA,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,1308,-7,0,1439,-13,0,0 +2013,7,30,2,WN,10792,Buffalo Niagara International,Buffalo,NY,12889,McCarran International,Las Vegas,NV,835,0,0,1025,7,0,0 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,940,-2,0,1151,9,0,0 +2013,10,24,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,1010,5,0,1420,9,0,0 +2013,10,24,4,US,11278,Ronald Reagan Washington National,Washington,DC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,-1,0,1909,16,1,0 +2013,4,9,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,733,-7,0,905,-14,0,0 +2013,6,11,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-7,0,1117,-14,0,0 +2013,4,25,4,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1745,25,1,2140,12,0,0 +2013,9,21,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-6,0,729,-6,0,0 +2013,8,9,5,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1355,1,0,1505,0,0,0 +2013,7,14,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1540,-2,0,1705,-5,0,0 +2013,10,6,7,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-2,0,1126,6,0,0 +2013,10,1,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,-8,0,1305,8,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,18,1,1320,7,0,0 +2013,5,1,3,MQ,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,835,0,0,1005,-2,0,0 +2013,9,27,5,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,840,-4,0,1006,-21,0,0 +2013,8,16,5,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,31,1,1945,23,1,0 +2013,6,13,4,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1535,-4,0,1809,-5,0,0 +2013,7,6,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1100,-5,0,1210,-1,0,0 +2013,4,5,5,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-4,0,843,-7,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1427,10,0,1531,8,0,0 +2013,6,25,2,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,-2,0,1415,-4,0,0 +2013,8,16,5,DL,12892,Los Angeles International,Los Angeles,CA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,2255,0,0,612,9,0,0 +2013,5,6,1,DL,14057,Portland International,Portland,OR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,-3,0,2024,-1,0,0 +2013,5,30,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,730,-1,0,905,-12,0,0 +2013,8,18,7,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1700,-1,0,2018,-48,0,0 +2013,5,10,5,AA,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1830,26,1,2200,42,1,0 +2013,5,23,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1125,8,0,1430,-1,0,0 +2013,4,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1820,-5,0,2010,-20,0,0 +2013,5,4,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1625,-2,0,1845,-3,0,0 +2013,9,19,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1855,27,1,2218,21,1,0 +2013,7,26,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-4,0,1655,20,1,0 +2013,10,4,5,AA,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1700,15,1,1935,46,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1755,-1,0,1919,-8,0,0 +2013,8,12,1,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1545,44,1,1915,59,1,0 +2013,10,23,3,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,1700,-6,0,2057,-19,0,0 +2013,8,25,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13232,Chicago Midway International,Chicago,IL,1645,-5,0,1855,-9,0,0 +2013,6,23,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1635,0,0,1829,-16,0,0 +2013,9,18,3,DL,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1442,-5,0,1627,7,0,0 +2013,10,19,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1159,-7,0,1309,5,0,0 +2013,8,13,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1624,41,1,1745,27,1,0 +2013,6,23,7,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-6,0,1345,-11,0,0 +2013,9,19,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,13871,Eppley Airfield,Omaha,NE,1544,0,0,1650,33,1,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1637,85,1,2000,62,1,0 +2013,9,4,3,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,650,-5,0,908,-36,0,0 +2013,6,12,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,630,-7,0,1459,-19,0,0 +2013,5,20,1,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1050,19,1,1610,9,0,0 +2013,10,19,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1925,-6,0,2050,-28,0,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10299,Ted Stevens Anchorage International,Anchorage,AK,1950,-2,0,32,11,0,0 +2013,9,25,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,610,0,,710,0,1,1 +2013,5,7,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,-3,0,945,-5,0,0 +2013,5,21,2,OO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10693,Nashville International,Nashville,TN,1130,87,1,1131,101,1,0 +2013,7,13,6,MQ,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1425,-4,0,1940,4,0,0 +2013,9,19,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,0,0,1630,43,1,0 +2013,7,6,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1000,-7,0,1315,-17,0,0 +2013,5,24,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,1100,-3,0,1128,-10,0,0 +2013,9,8,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1655,11,0,1901,2,0,0 +2013,8,1,4,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,1120,-1,0,1916,-24,0,0 +2013,4,16,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1635,3,0,1805,4,0,0 +2013,10,13,7,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1855,1,0,2000,-2,0,0 +2013,9,9,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-1,0,1941,-6,0,0 +2013,9,11,3,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1350,34,1,1450,29,1,0 +2013,6,28,5,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,1911,0,,2115,0,1,1 +2013,6,29,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,600,-4,0,756,-12,0,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,13,0,1545,3,0,0 +2013,5,12,7,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1120,-2,0,1409,-6,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,7,0,1909,-4,0,0 +2013,4,12,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1500,54,1,1619,36,1,0 +2013,5,20,1,UA,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1915,-5,0,2043,-17,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10140,Albuquerque International Sunport,Albuquerque,NM,1106,-2,0,1222,-14,0,0 +2013,8,6,2,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,-3,0,1715,-7,0,0 +2013,8,6,2,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,14,0,847,14,0,0 +2013,10,24,4,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1229,-4,0,1515,1,0,0 +2013,6,3,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1142,2,0,1245,-9,0,0 +2013,5,13,1,YV,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1259,-2,0,1515,-4,0,0 +2013,10,10,4,OO,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,815,-11,0,1056,-18,0,0 +2013,6,30,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12339,Indianapolis International,Indianapolis,IN,1315,4,0,1625,-3,0,0 +2013,8,26,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,2105,-1,0,2155,1,0,0 +2013,6,6,4,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,1506,41,1,1620,41,1,0 +2013,6,26,3,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1700,140,1,1800,131,1,0 +2013,8,23,5,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1505,-2,0,2203,-10,0,0 +2013,6,9,7,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1533,25,1,1900,8,0,0 +2013,8,23,5,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,1105,-5,0,1340,-10,0,0 +2013,5,4,6,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,2150,3,0,45,21,1,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,1610,9,0,1817,0,0,0 +2013,5,21,2,WN,10693,Nashville International,Nashville,TN,15304,Tampa International,Tampa,FL,1820,9,0,2105,1,0,0 +2013,5,9,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,850,-1,0,958,6,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1217,0,0,1246,-4,0,0 +2013,8,1,4,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1630,-1,0,1959,23,1,0 +2013,4,10,3,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,2215,-10,0,615,34,1,0 +2013,7,14,7,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1631,-5,0,1939,4,0,0 +2013,10,27,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,805,-1,0,920,-19,0,0 +2013,4,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-2,0,844,-5,0,0 +2013,10,27,7,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,-9,0,2027,-16,0,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,755,-4,0,1105,-11,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,815,-6,0,950,-3,0,0 +2013,7,5,5,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1435,0,,1526,0,1,1 +2013,5,20,1,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1559,-3,0,1745,-22,0,0 +2013,10,26,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1655,21,1,1900,14,0,0 +2013,8,6,2,EV,11259,Dallas Love Field,Dallas,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1228,-3,0,1534,0,0,0 +2013,8,31,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,19,1,1028,15,1,0 +2013,8,18,7,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1340,-1,0,1840,7,0,0 +2013,8,30,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1822,-5,0,1955,0,0,0 +2013,6,19,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,616,-3,0,715,-8,0,0 +2013,5,10,5,UA,14893,Sacramento International,Sacramento,CA,13930,Chicago O'Hare International,Chicago,IL,1336,43,1,1935,55,1,0 +2013,5,1,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2225,2,0,2330,-1,0,0 +2013,7,23,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1115,1,0,1125,-1,0,0 +2013,4,21,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2150,2,0,27,10,0,0 +2013,9,25,3,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-4,0,912,-20,0,0 +2013,7,13,6,WN,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1800,109,1,2030,103,1,0 +2013,4,11,4,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,14,0,745,3,0,0 +2013,7,14,7,B6,12889,McCarran International,Las Vegas,NV,12954,Long Beach Airport,Long Beach,CA,1810,34,1,1914,35,1,0 +2013,4,1,1,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1538,-1,0,1700,0,0,0 +2013,9,30,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,700,-2,0,930,-26,0,0 +2013,8,7,3,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,650,-1,0,935,3,0,0 +2013,4,19,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,10693,Nashville International,Nashville,TN,1755,3,0,1925,-11,0,0 +2013,7,23,2,EV,14122,Pittsburgh International,Pittsburgh,PA,11618,Newark Liberty International,Newark,NJ,1400,107,1,1529,112,1,0 +2013,7,8,1,EV,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,847,-6,0,1207,-23,0,0 +2013,10,12,6,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1530,-6,0,1843,9,0,0 +2013,6,18,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2015,62,1,2238,50,1,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,-3,0,1429,-9,0,0 +2013,4,26,5,US,11292,Denver International,Denver,CO,11057,Charlotte Douglas International,Charlotte,NC,1015,-3,0,1526,-8,0,0 +2013,7,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1430,1,0,1830,-4,0,0 +2013,6,5,3,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1430,27,1,1845,-6,0,0 +2013,7,2,2,DL,14635,Southwest Florida International,Fort Myers,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1410,76,1,1645,52,1,0 +2013,5,31,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,1140,3,0,1145,-3,0,0 +2013,10,19,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,4,0,1310,-12,0,0 +2013,6,4,2,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,725,-6,0,935,-17,0,0 +2013,7,8,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1550,46,1,1749,35,1,0 +2013,9,10,2,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,905,-7,0,1035,-17,0,0 +2013,5,2,4,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1445,-3,0,1802,-29,0,0 +2013,9,6,5,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1114,23,1,1239,9,0,0 +2013,9,3,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14730,Louisville International-Standiford Field,Louisville,KY,1100,30,1,1220,18,1,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,2145,4,0,2321,-5,0,0 +2013,10,1,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1455,16,1,1550,10,0,0 +2013,7,24,3,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,845,-1,0,1010,0,0,0 +2013,6,8,6,WN,14057,Portland International,Portland,OR,13232,Chicago Midway International,Chicago,IL,625,0,0,1230,-22,0,0 +2013,10,26,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,1340,-11,0,0 +2013,4,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1910,-5,0,2243,-17,0,0 +2013,10,28,1,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1940,17,1,2210,31,1,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,1700,131,1,1850,136,1,0 +2013,4,3,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14869,Salt Lake City International,Salt Lake City,UT,1700,2,0,1940,-5,0,0 +2013,9,9,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,745,-7,0,924,-2,0,0 +2013,8,13,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,1,0,2239,25,1,0 +2013,6,19,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1545,-7,0,1619,-5,0,0 +2013,7,16,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,820,127,1,959,132,1,0 +2013,4,1,1,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,700,-5,0,905,-14,0,0 +2013,6,20,4,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-2,0,1416,-23,0,0 +2013,4,30,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,1500,20,1,1725,8,0,0 +2013,4,24,3,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1220,25,1,1700,28,1,0 +2013,9,4,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1930,-4,0,2135,-15,0,0 +2013,4,24,3,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,1030,4,0,1505,-4,0,0 +2013,5,26,7,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1455,-8,0,1617,-6,0,0 +2013,6,26,3,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,735,-14,0,1600,-8,0,0 +2013,6,5,3,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,900,-10,0,1022,-19,0,0 +2013,9,27,5,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1605,9,0,1835,20,1,0 +2013,10,3,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,1620,-1,0,1720,-4,0,0 +2013,5,30,4,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,2000,-1,0,2200,4,0,0 +2013,8,26,1,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,1605,70,1,1731,61,1,0 +2013,4,12,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1937,-4,0,2125,0,0,0 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1025,0,,1350,0,1,1 +2013,6,6,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1645,9,0,1820,3,0,0 +2013,8,26,1,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-5,0,1810,-4,0,0 +2013,7,27,6,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,2010,20,1,2146,17,1,0 +2013,10,24,4,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1335,13,0,1450,9,0,0 +2013,4,6,6,YV,11057,Charlotte Douglas International,Charlotte,NC,11042,Cleveland-Hopkins International,Cleveland,OH,1135,-6,0,1312,-5,0,0 +2013,8,8,4,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1700,0,0,1910,-14,0,0 +2013,7,12,5,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1435,-1,0,1555,-10,0,0 +2013,7,11,4,EV,11292,Denver International,Denver,CO,12339,Indianapolis International,Indianapolis,IN,1010,0,0,1436,-3,0,0 +2013,10,30,3,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1240,3,0,1353,1,0,0 +2013,10,27,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10529,Bradley International,Hartford,CT,1430,51,1,1805,26,1,0 +2013,5,8,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-5,0,826,54,1,0 +2013,5,5,7,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2150,1,0,2255,-2,0,0 +2013,9,5,4,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,-5,0,1910,-17,0,0 +2013,10,4,5,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,850,1,0,945,-10,0,0 +2013,4,21,7,AS,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1735,-10,0,2020,-9,0,0 +2013,6,22,6,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,-5,0,1306,-7,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,2212,-10,0,1,-29,0,0 +2013,10,7,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1730,2,0,1841,-8,0,0 +2013,6,16,7,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1219,-3,0,1519,-14,0,0 +2013,8,19,1,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2100,28,1,2340,23,1,0 +2013,7,18,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,923,-3,0,1045,-11,0,0 +2013,8,17,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,805,-8,0,1330,-13,0,0 +2013,6,29,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1030,92,1,1245,92,1,0 +2013,5,16,4,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-4,0,1245,-18,0,0 +2013,6,15,6,US,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11057,Charlotte Douglas International,Charlotte,NC,645,-4,0,837,-3,0,0 +2013,4,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1025,-3,0,1220,-11,0,0 +2013,4,30,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1450,7,0,1800,-1,0,0 +2013,8,25,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-7,0,1843,-18,0,0 +2013,5,18,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1140,-3,0,1218,-2,0,0 +2013,7,8,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,600,-5,0,705,-3,0,0 +2013,9,13,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1740,-5,0,1905,-11,0,0 +2013,6,8,6,OO,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,1410,8,0,1520,17,1,0 +2013,4,2,2,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,817,-14,0,0 +2013,9,19,4,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1505,0,,2110,0,1,1 +2013,6,12,3,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1100,52,1,1145,57,1,0 +2013,5,5,7,EV,13871,Eppley Airfield,Omaha,NE,11618,Newark Liberty International,Newark,NJ,1618,-6,0,2009,-1,0,0 +2013,6,27,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,844,-4,0,1330,-15,0,0 +2013,6,24,1,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2100,60,1,2319,59,1,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1305,-2,0,1610,-24,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1352,19,1,1624,18,1,0 +2013,5,26,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1505,1,0,1845,7,0,0 +2013,5,20,1,UA,14771,San Francisco International,San Francisco,CA,12173,Honolulu International,Honolulu,HI,1613,0,0,1837,12,0,0 +2013,4,29,1,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-2,0,2040,6,0,0 +2013,6,17,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,630,-2,0,735,8,0,0 +2013,6,7,5,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1445,6,0,1623,17,1,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,32,1,1448,48,1,0 +2013,9,6,5,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,635,-7,0,751,-9,0,0 +2013,8,6,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-5,0,842,-4,0,0 +2013,6,18,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14492,Raleigh-Durham International,Raleigh/Durham,NC,1210,-4,0,1355,-18,0,0 +2013,6,21,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11278,Ronald Reagan Washington National,Washington,DC,1445,5,0,2159,17,1,0 +2013,5,23,4,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1810,222,1,2055,213,1,0 +2013,6,7,5,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1440,48,1,1600,42,1,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1002,-1,0,1527,-19,0,0 +2013,8,21,3,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1959,-4,0,2330,16,1,0 +2013,4,26,5,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1650,3,0,1830,-15,0,0 +2013,5,2,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,935,-1,0,1200,-4,0,0 +2013,8,11,7,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1120,0,,1225,0,1,1 +2013,9,29,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,1845,-8,0,2056,-26,0,0 +2013,8,12,1,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1130,36,1,1300,33,1,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14893,Sacramento International,Sacramento,CA,1953,8,0,2153,12,0,0 +2013,6,19,3,EV,13851,Will Rogers World,Oklahoma City,OK,11042,Cleveland-Hopkins International,Cleveland,OH,1117,-12,0,1440,-20,0,0 +2013,5,16,4,US,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,1130,-7,0,1306,-25,0,0 +2013,9,16,1,DL,14057,Portland International,Portland,OR,12478,John F. Kennedy International,New York,NY,700,2,0,1516,-25,0,0 +2013,9,15,7,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,1240,4,0,1525,-12,0,0 +2013,6,23,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,950,12,0,1110,7,0,0 +2013,7,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1230,-7,0,1427,-18,0,0 +2013,9,12,4,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1143,8,0,1614,9,0,0 +2013,10,30,3,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1845,-1,0,2034,15,1,0 +2013,9,8,7,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1650,11,0,1814,-1,0,0 +2013,8,14,3,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1100,3,0,1315,-12,0,0 +2013,10,6,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,600,-5,0,713,-8,0,0 +2013,4,12,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,625,-4,0,1358,-13,0,0 +2013,4,4,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1450,0,0,1658,-21,0,0 +2013,7,20,6,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,630,4,0,915,-2,0,0 +2013,6,9,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1850,-8,0,2353,-5,0,0 +2013,5,4,6,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1510,-4,0,1716,-1,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1200,-6,0,1431,-26,0,0 +2013,4,3,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1140,1,0,1455,-6,0,0 +2013,8,12,1,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,92,1,2059,88,1,0 +2013,6,17,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,96,1,1905,120,1,0 +2013,5,19,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,3,0,1155,2,0,0 +2013,9,20,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1840,-6,0,2127,-12,0,0 +2013,7,25,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2100,22,1,2251,3,0,0 +2013,6,5,3,EV,13244,Memphis International,Memphis,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,1420,-5,0,1539,-12,0,0 +2013,6,10,1,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1810,0,0,1935,-13,0,0 +2013,8,29,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,845,1,0,1010,7,0,0 +2013,7,5,5,WN,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1025,1,0,1210,-8,0,0 +2013,7,10,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1349,144,1,1455,140,1,0 +2013,9,28,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,935,-3,0,1035,-10,0,0 +2013,5,12,7,9E,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,540,-5,0,726,-21,0,0 +2013,10,22,2,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1305,4,0,1453,-8,0,0 +2013,10,14,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1805,7,0,1905,6,0,0 +2013,5,15,3,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,645,-1,0,740,-10,0,0 +2013,4,9,2,EV,13244,Memphis International,Memphis,TN,11618,Newark Liberty International,Newark,NJ,1615,44,1,2001,36,1,0 +2013,9,30,1,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1731,-11,0,1900,13,0,0 +2013,7,23,2,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1705,-2,0,2019,41,1,0 +2013,8,2,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1800,-3,0,1940,-7,0,0 +2013,8,19,1,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1040,5,0,1429,-6,0,0 +2013,6,29,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,2111,81,1,2223,79,1,0 +2013,6,3,1,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,942,-3,0,1042,-16,0,0 +2013,9,13,5,EV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1855,0,,2138,0,1,1 +2013,4,10,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1839,157,1,2158,132,1,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1100,-4,0,1336,-1,0,0 +2013,10,19,6,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,900,-12,0,1045,-32,0,0 +2013,9,15,7,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,700,-7,0,757,-21,0,0 +2013,8,7,3,OO,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,540,-5,0,700,-1,0,0 +2013,4,27,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,840,0,0,1055,-5,0,0 +2013,4,14,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1955,55,1,2115,53,1,0 +2013,10,17,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1200,-5,0,1329,-7,0,0 +2013,10,6,7,AS,14057,Portland International,Portland,OR,14679,San Diego International,San Diego,CA,1135,-8,0,1353,-2,0,0 +2013,10,11,5,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1353,-5,0,2100,-30,0,0 +2013,8,4,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-4,0,1705,-12,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,750,-1,0,850,7,0,0 +2013,5,23,4,DL,13204,Orlando International,Orlando,FL,12889,McCarran International,Las Vegas,NV,1940,85,1,2139,71,1,0 +2013,7,25,4,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,10,0,1445,1,0,0 +2013,8,1,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,705,0,0,730,10,0,0 +2013,5,16,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1055,25,1,1200,19,1,0 +2013,4,6,6,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1006,-3,0,1113,-5,0,0 +2013,5,27,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,615,-11,0,825,-8,0,0 +2013,10,15,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,-2,0,1754,-3,0,0 +2013,5,27,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,925,0,0,1030,-4,0,0 +2013,9,8,7,OO,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1835,-5,0,2115,-4,0,0 +2013,4,2,2,F9,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,840,-9,0,1055,-19,0,0 +2013,10,22,2,UA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,630,-2,0,1208,-13,0,0 +2013,6,10,1,MQ,12478,John F. Kennedy International,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1455,31,1,1640,44,1,0 +2013,4,15,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,12478,John F. Kennedy International,New York,NY,1610,6,0,1758,4,0,0 +2013,9,9,1,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1725,32,1,2037,24,1,0 +2013,9,13,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1746,7,0,1955,-13,0,0 +2013,7,13,6,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,820,-3,0,1006,23,1,0 +2013,4,18,4,EV,11618,Newark Liberty International,Newark,NJ,14730,Louisville International-Standiford Field,Louisville,KY,1529,124,1,1740,117,1,0 +2013,10,18,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1610,23,1,1730,12,0,0 +2013,5,21,2,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,1233,7,0,0 +2013,8,4,7,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-3,0,831,-12,0,0 +2013,5,7,2,YV,14307,Theodore Francis Green State,Providence,RI,13930,Chicago O'Hare International,Chicago,IL,615,-10,0,749,-28,0,0 +2013,10,22,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1430,0,0,1742,-15,0,0 +2013,5,3,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1555,2,0,1732,-10,0,0 +2013,9,7,6,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1115,-2,0,1430,-10,0,0 +2013,9,9,1,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1119,-2,0,1253,-10,0,0 +2013,4,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1525,-2,0,1625,-6,0,0 +2013,10,24,4,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1250,-3,0,1536,-8,0,0 +2013,10,18,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-6,0,1009,4,0,0 +2013,7,22,1,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,630,25,1,812,42,1,0 +2013,8,5,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1950,-5,0,2215,-6,0,0 +2013,4,4,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,800,-2,0,900,0,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1838,68,1,2017,58,1,0 +2013,4,6,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1252,41,1,1350,41,1,0 +2013,9,23,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,830,-5,0,958,-13,0,0 +2013,7,22,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14730,Louisville International-Standiford Field,Louisville,KY,855,22,1,1010,16,1,0 +2013,9,13,5,HA,12889,McCarran International,Las Vegas,NV,12173,Honolulu International,Honolulu,HI,155,-4,0,500,7,0,0 +2013,4,30,2,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1700,-7,0,1830,1,0,0 +2013,6,2,7,F9,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,1330,-5,0,1402,-9,0,0 +2013,7,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,1205,-2,0,1359,9,0,0 +2013,7,10,3,DL,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,715,-2,0,1010,1,0,0 +2013,10,21,1,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1515,45,1,1711,42,1,0 +2013,10,21,1,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1330,-5,0,1500,-14,0,0 +2013,10,20,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1450,-2,0,1745,-11,0,0 +2013,6,13,4,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,1439,35,1,1701,25,1,0 +2013,5,20,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1630,29,1,1740,16,1,0 +2013,5,1,3,WN,14679,San Diego International,San Diego,CA,13198,Kansas City International,Kansas City,MO,1745,11,0,2250,4,0,0 +2013,6,12,3,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1311,1,0,1353,13,0,0 +2013,10,26,6,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1845,-9,0,2034,-30,0,0 +2013,9,15,7,US,11057,Charlotte Douglas International,Charlotte,NC,14307,Theodore Francis Green State,Providence,RI,950,-4,0,1154,9,0,0 +2013,5,4,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,-7,0,2231,-5,0,0 +2013,9,11,3,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1215,-7,0,1500,5,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1630,-6,0,1758,-3,0,0 +2013,5,17,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,23,1,1735,22,1,0 +2013,7,12,5,F9,11292,Denver International,Denver,CO,10299,Ted Stevens Anchorage International,Anchorage,AK,1715,-6,0,2048,-17,0,0 +2013,9,16,1,WN,14730,Louisville International-Standiford Field,Louisville,KY,15016,Lambert-St. Louis International,St. Louis,MO,2000,24,1,2005,21,1,0 +2013,6,23,7,B6,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1844,27,1,2154,6,0,0 +2013,8,25,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1410,-12,0,1425,-24,0,0 +2013,6,7,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,23,1,1359,12,0,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,7,0,2155,6,0,0 +2013,9,5,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,815,8,0,945,-4,0,0 +2013,8,29,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1010,-6,0,1126,-3,0,0 +2013,10,15,2,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,940,-4,0,1025,1,0,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,1745,4,0,2033,-2,0,0 +2013,10,22,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,930,-5,0,1305,-24,0,0 +2013,4,2,2,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,532,4,0,950,-12,0,0 +2013,5,29,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2026,2,0,2148,6,0,0 +2013,9,10,2,WN,14122,Pittsburgh International,Pittsburgh,PA,12889,McCarran International,Las Vegas,NV,745,-4,0,925,-31,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1753,3,0,1843,2,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1730,-1,0,2205,2,0,0 +2013,9,11,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1710,22,1,2000,17,1,0 +2013,10,12,6,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,800,-1,0,940,-4,0,0 +2013,5,9,4,YV,13931,Norfolk International,Norfolk,VA,12264,Washington Dulles International,Washington,DC,1507,-6,0,1610,18,1,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1245,-3,0,1736,1,0,0 +2013,7,29,1,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,1,0,1531,12,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1310,-2,0,1430,-21,0,0 +2013,9,7,6,MQ,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,2155,52,1,2355,52,1,0 +2013,8,19,1,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,919,-6,0,1131,-9,0,0 +2013,7,26,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,3,0,1105,1,0,0 +2013,7,20,6,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,-2,0,1623,36,1,0 +2013,10,20,7,FL,13204,Orlando International,Orlando,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,1355,-6,0,1618,-14,0,0 +2013,6,18,2,MQ,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1925,87,1,2115,67,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,2215,36,1,2327,45,1,0 +2013,10,7,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,645,3,0,816,-5,0,0 +2013,4,13,6,WN,15376,Tucson International,Tucson,AZ,13232,Chicago Midway International,Chicago,IL,1140,0,0,1700,-3,0,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1730,-3,0,1956,9,0,0 +2013,10,16,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,-10,0,1605,-10,0,0 +2013,7,7,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1119,25,1,1321,24,1,0 +2013,8,29,4,WN,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,900,0,0,1015,-3,0,0 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2040,14,0,2215,10,0,0 +2013,5,29,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1618,5,0,1957,-9,0,0 +2013,9,3,2,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1310,22,1,1435,19,1,0 +2013,8,25,7,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,-7,0,1220,-10,0,0 +2013,4,6,6,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1510,-4,0,1635,-4,0,0 +2013,9,25,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,-4,0,1128,-14,0,0 +2013,4,7,7,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1515,9,0,1640,20,1,0 +2013,5,15,3,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,1710,-5,0,1840,-21,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1255,2,0,1755,0,0,0 +2013,5,27,1,UA,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,1138,-3,0,1430,-5,0,0 +2013,8,7,3,UA,10529,Bradley International,Hartford,CT,13930,Chicago O'Hare International,Chicago,IL,1708,27,1,1842,28,1,0 +2013,10,25,5,OO,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,908,13,0,1048,-1,0,0 +2013,4,17,3,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,850,-2,0,1653,13,0,0 +2013,6,11,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1955,-5,0,2215,-30,0,0 +2013,6,10,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1115,0,0,1320,1,0,0 +2013,8,15,4,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1330,-3,0,1600,-16,0,0 +2013,9,11,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,2045,-2,0,2156,8,0,0 +2013,8,31,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,606,-5,0,730,-23,0,0 +2013,10,22,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1620,-1,0,1913,-11,0,0 +2013,9,17,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1847,-3,0,2022,-31,0,0 +2013,6,3,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1846,2,0,1923,6,0,0 +2013,7,4,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1140,-6,0,1310,-26,0,0 +2013,7,16,2,YV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1819,-8,0,1900,-14,0,0 +2013,4,8,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1946,-1,0,2023,-1,0,0 +2013,10,22,2,WN,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-5,0,1735,-8,0,0 +2013,9,16,1,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,2245,2,0,617,10,0,0 +2013,5,8,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,4,0,1915,37,1,0 +2013,8,26,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,1105,-4,0,1330,6,0,0 +2013,4,2,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,15016,Lambert-St. Louis International,St. Louis,MO,1130,-1,0,1153,-9,0,0 +2013,10,3,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,700,-2,0,845,-1,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,735,58,1,920,42,1,0 +2013,8,29,4,EV,11618,Newark Liberty International,Newark,NJ,11066,Port Columbus International,Columbus,OH,1450,1,0,1637,-12,0,0 +2013,9,11,3,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1730,0,0,2005,22,1,0 +2013,8,28,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1922,46,1,2343,37,1,0 +2013,8,17,6,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,1533,-7,0,1838,-33,0,0 +2013,8,12,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10792,Buffalo Niagara International,Buffalo,NY,1930,0,0,2221,0,0,0 +2013,7,14,7,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1335,-8,0,1520,-21,0,0 +2013,5,26,7,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1819,-6,0,2050,-14,0,0 +2013,9,12,4,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-6,0,1634,10,0,0 +2013,4,13,6,WN,13204,Orlando International,Orlando,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1305,0,0,1445,-12,0,0 +2013,5,6,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1150,0,0,1305,-6,0,0 +2013,9,9,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1059,-3,0,1900,-19,0,0 +2013,6,16,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1526,15,1,1714,3,0,0 +2013,5,27,1,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1514,-5,0,1615,-16,0,0 +2013,9,12,4,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1500,159,1,1611,202,1,0 +2013,6,19,3,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,535,-2,0,650,-7,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1040,15,1,1250,15,1,0 +2013,10,8,2,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1340,23,1,1550,21,1,0 +2013,8,16,5,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,635,-2,0,800,-8,0,0 +2013,7,1,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1905,-7,0,2105,-1,0,0 +2013,8,2,5,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1525,15,1,1635,14,0,0 +2013,9,22,7,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1855,-12,0,2132,-20,0,0 +2013,4,4,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1300,-8,0,1422,-17,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1913,-3,0,2215,-5,0,0 +2013,5,25,6,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1124,-8,0,1357,-11,0,0 +2013,4,23,2,B6,12478,John F. Kennedy International,New York,NY,12451,Jacksonville International,Jacksonville,FL,1345,-8,0,1617,-33,0,0 +2013,6,11,2,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1129,50,1,1428,39,1,0 +2013,7,23,2,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1917,-4,0,2019,-3,0,0 +2013,4,28,7,WN,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,1715,7,0,2235,-3,0,0 +2013,4,23,2,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-4,0,1900,-3,0,0 +2013,8,7,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,950,-7,0,1114,2,0,0 +2013,10,22,2,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,653,-10,0,820,-13,0,0 +2013,5,27,1,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,15,1,2059,16,1,0 +2013,7,30,2,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1735,-1,0,1850,-19,0,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,935,36,1,1759,53,1,0 +2013,8,31,6,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2000,4,0,2200,-8,0,0 +2013,9,11,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1350,-7,0,1412,-8,0,0 +2013,4,9,2,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,930,-2,0,1500,-2,0,0 +2013,4,18,4,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1245,1,0,1350,2,0,0 +2013,6,1,6,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1715,-8,0,1852,-18,0,0 +2013,5,6,1,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,-2,0,1240,-2,0,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1015,-7,0,1136,-13,0,0 +2013,4,16,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1218,-2,0,2030,-19,0,0 +2013,6,5,3,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1915,0,0,2242,-7,0,0 +2013,6,27,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,847,-9,0,933,-18,0,0 +2013,8,30,5,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,-4,0,743,6,0,0 +2013,8,1,4,AA,14122,Pittsburgh International,Pittsburgh,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-5,0,2020,-20,0,0 +2013,8,16,5,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1757,-9,0,2005,-4,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1830,20,1,2200,-7,0,0 +2013,9,17,2,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2050,0,,2237,0,1,1 +2013,10,22,2,OO,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1102,7,0,1415,13,0,0 +2013,5,19,7,B6,13204,Orlando International,Orlando,FL,14524,Richmond International,Richmond,VA,941,-4,0,1136,-10,0,0 +2013,7,29,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1345,-8,0,1600,-9,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1900,0,0,2005,-9,0,0 +2013,6,8,6,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1455,-8,0,2245,16,1,0 +2013,8,15,4,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,0,0,930,-1,0,0 +2013,7,16,2,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-3,0,1305,-11,0,0 +2013,5,24,5,WN,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1825,57,1,2025,50,1,0 +2013,7,11,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13204,Orlando International,Orlando,FL,1050,14,0,1810,17,1,0 +2013,8,6,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-2,0,1615,2,0,0 +2013,10,7,1,AA,10529,Bradley International,Hartford,CT,12892,Los Angeles International,Los Angeles,CA,920,1,0,1235,-12,0,0 +2013,5,9,4,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,2010,25,1,2235,10,0,0 +2013,9,2,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1140,-13,0,1550,-10,0,0 +2013,6,23,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1015,-2,0,1219,-8,0,0 +2013,5,20,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1113,-2,0,1624,-23,0,0 +2013,8,21,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,740,-2,0,1205,-8,0,0 +2013,10,23,3,US,10423,Austin - Bergstrom International,Austin,TX,14100,Philadelphia International,Philadelphia,PA,755,20,1,1212,11,0,0 +2013,9,14,6,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1225,26,1,1405,2,0,0 +2013,4,21,7,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1745,0,,1859,0,1,1 +2013,8,27,2,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,-9,0,1015,-15,0,0 +2013,10,15,2,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1320,25,1,1450,25,1,0 +2013,9,27,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,1950,-2,0,2101,-12,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1705,12,0,1850,0,0,0 +2013,9,30,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1259,-9,0,1501,-17,0,0 +2013,5,12,7,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1331,-5,0,1520,7,0,0 +2013,7,15,1,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14747,Seattle/Tacoma International,Seattle,WA,930,0,0,1115,-11,0,0 +2013,7,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1306,13,0,1514,2,0,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12339,Indianapolis International,Indianapolis,IN,1720,-1,0,1905,-5,0,0 +2013,7,24,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1355,1,0,1659,-27,0,0 +2013,6,6,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2125,70,1,2220,59,1,0 +2013,5,6,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,1853,21,1,1913,32,1,0 +2013,7,30,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-6,0,1155,-15,0,0 +2013,8,2,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1215,-2,0,1332,-9,0,0 +2013,5,4,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1942,-7,0,2235,-5,0,0 +2013,5,6,1,EV,11618,Newark Liberty International,Newark,NJ,12451,Jacksonville International,Jacksonville,FL,1459,63,1,1727,53,1,0 +2013,7,25,4,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,2012,-9,0,2140,-24,0,0 +2013,7,9,2,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,0,0,1335,-9,0,0 +2013,6,10,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,1,0,2100,-17,0,0 +2013,4,28,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1955,33,1,2125,29,1,0 +2013,5,13,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,2040,22,1,2130,20,1,0 +2013,9,4,3,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,545,-9,0,649,-16,0,0 +2013,6,24,1,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,756,-1,0,1338,-12,0,0 +2013,10,5,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,2320,1,0,655,-1,0,0 +2013,4,3,3,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1032,5,0,1311,8,0,0 +2013,4,26,5,WN,13232,Chicago Midway International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,2100,-3,0,2340,-7,0,0 +2013,8,12,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1803,18,1,2133,21,1,0 +2013,10,2,3,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1730,10,0,2045,19,1,0 +2013,10,19,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1515,-5,0,1723,7,0,0 +2013,5,5,7,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,730,-7,0,1050,-52,0,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,955,-4,0,1158,16,1,0 +2013,5,3,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2109,33,1,2339,33,1,0 +2013,5,9,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1810,95,1,1905,105,1,0 +2013,5,17,5,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1132,-3,0,1940,-29,0,0 +2013,8,14,3,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,-4,0,1400,13,0,0 +2013,10,4,5,WN,10529,Bradley International,Hartford,CT,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,17,1,1105,0,0,0 +2013,9,27,5,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-4,0,748,-12,0,0 +2013,10,24,4,AA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1550,-4,0,1735,-4,0,0 +2013,4,19,5,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1435,11,0,1800,0,0,0 +2013,5,19,7,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,810,-7,0,1027,-27,0,0 +2013,8,17,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2201,0,0,2301,-9,0,0 +2013,7,15,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,24,1,1425,18,1,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1305,0,,1535,0,1,1 +2013,8,11,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1724,-7,0,2030,-9,0,0 +2013,9,25,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1355,-4,0,1550,6,0,0 +2013,9,18,3,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1940,135,1,2135,129,1,0 +2013,10,25,5,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,848,32,1,1040,22,1,0 +2013,8,8,4,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,19,1,949,35,1,0 +2013,9,9,1,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,1250,-2,0,1507,-16,0,0 +2013,10,18,5,9E,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1435,-8,0,1630,-12,0,0 +2013,4,4,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2250,-3,0,2328,2,0,0 +2013,5,8,3,US,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,545,-7,0,836,-9,0,0 +2013,7,22,1,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1830,23,1,1936,37,1,0 +2013,5,3,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1230,-4,0,1327,-8,0,0 +2013,4,15,1,AA,13303,Miami International,Miami,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,1,0,1830,0,0,0 +2013,10,10,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-1,0,2107,-4,0,0 +2013,6,16,7,WN,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,830,0,0,1110,-4,0,0 +2013,9,22,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12892,Los Angeles International,Los Angeles,CA,1150,0,0,1350,-3,0,0 +2013,5,7,2,MQ,13495,Louis Armstrong New Orleans International,New Orleans,LA,13930,Chicago O'Hare International,Chicago,IL,1115,-7,0,1330,-13,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1525,0,0,2055,52,1,0 +2013,9,19,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1115,-1,0,1311,-12,0,0 +2013,9,28,6,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,730,-8,0,827,-14,0,0 +2013,8,12,1,B6,13495,Louis Armstrong New Orleans International,New Orleans,LA,12478,John F. Kennedy International,New York,NY,1730,13,0,2144,21,1,0 +2013,5,7,2,EV,12953,LaGuardia,New York,NY,12264,Washington Dulles International,Washington,DC,600,-3,0,712,-5,0,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,945,34,1,1235,31,1,0 +2013,5,29,3,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1235,-11,0,1450,-27,0,0 +2013,6,7,5,UA,14122,Pittsburgh International,Pittsburgh,PA,12892,Los Angeles International,Los Angeles,CA,1918,21,1,2127,11,0,0 +2013,7,24,3,F9,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1520,-4,0,1810,0,0,0 +2013,4,20,6,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,-5,0,917,-14,0,0 +2013,6,21,5,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1305,-3,0,1606,-5,0,0 +2013,7,16,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-8,0,1439,35,1,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,2152,63,1,2338,44,1,0 +2013,5,30,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1905,306,1,1930,324,1,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,14,0,1655,2,0,0 +2013,8,2,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1341,-6,0,1456,-20,0,0 +2013,10,5,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,715,-4,0,830,1,0,0 +2013,8,6,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1035,-1,0,1250,1,0,0 +2013,5,31,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1350,-4,0,1549,-5,0,0 +2013,5,21,2,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1810,78,1,2010,52,1,0 +2013,5,16,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,930,-2,0,1020,-5,0,0 +2013,4,4,4,EV,10792,Buffalo Niagara International,Buffalo,NY,12264,Washington Dulles International,Washington,DC,1449,-10,0,1602,-23,0,0 +2013,4,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14893,Sacramento International,Sacramento,CA,2140,0,,2320,0,1,1 +2013,10,3,4,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1635,0,0,1810,-3,0,0 +2013,4,17,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,705,-8,0,755,-4,0,0 +2013,9,17,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1800,-8,0,1925,-23,0,0 +2013,9,22,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,1315,0,0,1454,-5,0,0 +2013,10,14,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,33,1,2045,7,0,0 +2013,7,14,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1625,10,0,1720,-8,0,0 +2013,10,18,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,650,3,0,905,14,0,0 +2013,8,13,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,50,1,1746,24,1,0 +2013,8,12,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1915,17,1,2047,-9,0,0 +2013,10,21,1,WN,12451,Jacksonville International,Jacksonville,FL,10693,Nashville International,Nashville,TN,930,-3,0,1000,-8,0,0 +2013,10,18,5,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1145,1,0,1350,-1,0,0 +2013,8,31,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-3,0,1425,-5,0,0 +2013,7,1,1,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-2,0,1237,-1,0,0 +2013,7,1,1,AS,11278,Ronald Reagan Washington National,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,745,0,0,1018,-15,0,0 +2013,6,4,2,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1640,-1,0,1933,-3,0,0 +2013,4,18,4,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,620,-4,0,725,5,0,0 +2013,9,6,5,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1615,-1,0,1913,2,0,0 +2013,7,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,14893,Sacramento International,Sacramento,CA,2105,-4,0,2336,-6,0,0 +2013,7,19,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,0,0,1210,-17,0,0 +2013,9,9,1,DL,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2115,-7,0,540,20,1,0 +2013,5,12,7,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1200,3,0,1520,-8,0,0 +2013,10,9,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,718,-4,0,831,-13,0,0 +2013,6,2,7,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-5,0,1148,1,0,0 +2013,4,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13342,General Mitchell International,Milwaukee,WI,1805,40,1,2320,28,1,0 +2013,8,8,4,FL,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1605,-2,0,1930,-9,0,0 +2013,8,19,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-6,0,2156,-22,0,0 +2013,4,22,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1130,19,1,1158,0,0,0 +2013,5,15,3,9E,11433,Detroit Metro Wayne County,Detroit,MI,14307,Theodore Francis Green State,Providence,RI,840,-4,0,1034,-20,0,0 +2013,8,22,4,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1359,15,1,1509,8,0,0 +2013,8,23,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1754,13,0,1937,3,0,0 +2013,4,18,4,AA,11278,Ronald Reagan Washington National,Washington,DC,15016,Lambert-St. Louis International,St. Louis,MO,1005,130,1,1115,146,1,0 +2013,6,5,3,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1325,-8,0,1613,-14,0,0 +2013,6,30,7,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1330,36,1,1700,29,1,0 +2013,5,7,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,2005,3,0,2050,-4,0,0 +2013,7,28,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,900,-6,0,1040,-6,0,0 +2013,7,14,7,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,15,1,1905,-13,0,0 +2013,10,14,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1625,-2,0,1754,-6,0,0 +2013,10,21,1,UA,12264,Washington Dulles International,Washington,DC,10140,Albuquerque International Sunport,Albuquerque,NM,1816,-5,0,2028,-5,0,0 +2013,9,25,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1530,9,0,1715,8,0,0 +2013,7,17,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1010,18,1,1140,5,0,0 +2013,9,15,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,530,-6,0,855,-15,0,0 +2013,5,19,7,WN,13342,General Mitchell International,Milwaukee,WI,10721,Logan International,Boston,MA,1955,57,1,2310,85,1,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1940,-5,0,2045,-5,0,0 +2013,7,1,1,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,931,-8,0,1410,-33,0,0 +2013,9,18,3,AA,14570,Reno/Tahoe International,Reno,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-5,0,1205,-27,0,0 +2013,9,16,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1325,-3,0,1450,-5,0,0 +2013,10,25,5,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,710,3,0,800,-4,0,0 +2013,5,4,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-5,0,2040,-25,0,0 +2013,6,18,2,B6,10721,Logan International,Boston,MA,12889,McCarran International,Las Vegas,NV,1208,-3,0,1502,-4,0,0 +2013,8,9,5,WN,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1420,15,1,2205,-11,0,0 +2013,4,27,6,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,1700,24,1,2100,0,0,0 +2013,7,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1328,-4,0,1724,-22,0,0 +2013,4,3,3,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,700,1,0,1525,-15,0,0 +2013,10,17,4,US,12892,Los Angeles International,Los Angeles,CA,11057,Charlotte Douglas International,Charlotte,NC,25,-2,0,806,-29,0,0 +2013,7,1,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,530,-3,0,735,-3,0,0 +2013,9,7,6,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,600,-6,0,753,-28,0,0 +2013,5,26,7,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,1000,-3,0,1542,5,0,0 +2013,7,6,6,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1055,1,0,1404,11,0,0 +2013,9,23,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-1,0,835,-2,0,0 +2013,5,4,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1230,-1,0,1550,12,0,0 +2013,5,4,6,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,955,-4,0,1100,-9,0,0 +2013,8,5,1,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1130,4,0,1245,-2,0,0 +2013,5,8,3,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1300,5,0,1605,-7,0,0 +2013,4,24,3,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,15,1,1135,18,1,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,850,2,0,1100,-8,0,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1540,-1,0,1710,-5,0,0 +2013,6,10,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,1655,15,1,1805,9,0,0 +2013,4,17,3,WN,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,835,1,0,1405,-9,0,0 +2013,8,7,3,DL,14057,Portland International,Portland,OR,13487,Minneapolis-St Paul International,Minneapolis,MN,1536,-7,0,2044,-12,0,0 +2013,10,5,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,705,6,0,815,-3,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,2154,-4,0,2353,17,1,0 +2013,6,14,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,2215,7,0,2355,-13,0,0 +2013,7,18,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-7,0,1344,2,0,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,700,-3,0,1001,-30,0,0 +2013,7,1,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,915,8,0,1015,3,0,0 +2013,4,20,6,WN,13198,Kansas City International,Kansas City,MO,10721,Logan International,Boston,MA,1320,4,0,1715,-9,0,0 +2013,5,1,3,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1740,-7,0,2010,-7,0,0 +2013,6,18,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,97,1,1748,105,1,0 +2013,9,11,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,910,-2,0,1040,-10,0,0 +2013,7,9,2,WN,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,1805,38,1,2040,62,1,0 +2013,6,13,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1720,118,1,1835,147,1,0 +2013,6,18,2,DL,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,950,-5,0,1336,-16,0,0 +2013,10,24,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,56,1,1351,36,1,0 +2013,6,22,6,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1110,-2,0,1425,-15,0,0 +2013,6,21,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,825,-1,0,950,-2,0,0 +2013,7,24,3,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,7,0,1748,4,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1150,23,1,1410,15,1,0 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1519,-10,0,0 +2013,5,1,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,910,-4,0,1024,1,0,0 +2013,6,12,3,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1055,-6,0,1335,-18,0,0 +2013,5,20,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,620,0,0,820,-2,0,0 +2013,7,10,3,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,1030,-1,0,1325,-39,0,0 +2013,10,11,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,2210,92,1,2353,88,1,0 +2013,7,17,3,9E,12478,John F. Kennedy International,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1559,0,0,1828,-21,0,0 +2013,8,3,6,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,740,-10,0,0 +2013,9,16,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1150,0,0,1549,-12,0,0 +2013,9,16,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2015,18,1,2155,12,0,0 +2013,5,3,5,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1430,-2,0,1552,-6,0,0 +2013,4,30,2,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,735,-9,0,1010,-20,0,0 +2013,4,25,4,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1200,3,0,1300,0,0,0 +2013,5,12,7,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1529,34,1,1647,43,1,0 +2013,8,10,6,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,2005,54,1,2149,52,1,0 +2013,6,11,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1350,98,1,1635,110,1,0 +2013,8,26,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,2015,111,1,2220,135,1,0 +2013,5,12,7,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,2135,-5,0,600,8,0,0 +2013,7,30,2,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1320,-4,0,1605,-8,0,0 +2013,4,16,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1140,0,0,1255,-10,0,0 +2013,10,6,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,800,15,1,821,9,0,0 +2013,8,31,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,630,2,0,920,-13,0,0 +2013,10,16,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,945,34,1,1105,25,1,0 +2013,5,16,4,US,14100,Philadelphia International,Philadelphia,PA,12953,LaGuardia,New York,NY,2250,-8,0,2339,-12,0,0 +2013,10,12,6,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,1,0,750,-4,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,10693,Nashville International,Nashville,TN,610,1,0,735,4,0,0 +2013,8,14,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,835,5,0,1202,-10,0,0 +2013,7,9,2,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,2005,-3,0,2057,-16,0,0 +2013,9,27,5,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1545,32,1,1855,10,0,0 +2013,10,3,4,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,2100,8,0,8,-1,0,0 +2013,6,11,2,US,10721,Logan International,Boston,MA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-3,0,1905,-8,0,0 +2013,5,4,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1430,-10,0,1728,-27,0,0 +2013,10,10,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,2230,14,0,645,10,0,0 +2013,5,30,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,745,-6,0,830,-7,0,0 +2013,7,22,1,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1708,7,0,1840,-4,0,0 +2013,8,5,1,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,-1,0,1200,-5,0,0 +2013,7,16,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1235,-7,0,1345,-11,0,0 +2013,9,19,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,655,74,1,905,119,1,0 +2013,10,16,3,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,800,-9,0,1032,-16,0,0 +2013,8,30,5,UA,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2103,0,,2346,0,1,1 +2013,4,27,6,WN,14843,Luis Munoz Marin International,San Juan,PR,15304,Tampa International,Tampa,FL,1130,4,0,1440,5,0,0 +2013,6,11,2,WN,12892,Los Angeles International,Los Angeles,CA,13198,Kansas City International,Kansas City,MO,1725,-4,0,2235,-15,0,0 +2013,5,29,3,B6,10721,Logan International,Boston,MA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1109,9,0,1413,6,0,0 +2013,9,20,5,B6,14771,San Francisco International,San Francisco,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2221,1,0,643,14,0,0 +2013,9,30,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1210,-4,0,1815,-22,0,0 +2013,9,13,5,UA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,7,0,1316,2,0,0 +2013,9,20,5,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-5,0,856,-12,0,0 +2013,6,19,3,AS,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,1740,1,0,2040,-36,0,0 +2013,5,20,1,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-3,0,931,-10,0,0 +2013,7,29,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,750,104,1,1035,159,1,0 +2013,6,11,2,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1300,1,0,1555,-9,0,0 +2013,4,29,1,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,20,1,730,35,1,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1035,1,0,1140,-8,0,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,1940,-3,0,2240,-8,0,0 +2013,9,9,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1503,-5,0,1715,-16,0,0 +2013,5,14,2,UA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1711,-3,0,1815,-11,0,0 +2013,4,3,3,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1145,2,0,1320,-12,0,0 +2013,6,4,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14747,Seattle/Tacoma International,Seattle,WA,1705,-2,0,1950,-12,0,0 +2013,7,11,4,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1210,96,1,1329,103,1,0 +2013,8,26,1,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1754,0,0,1844,-4,0,0 +2013,9,27,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1251,-8,0,1646,-7,0,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,13244,Memphis International,Memphis,TN,834,-11,0,1018,-5,0,0 +2013,6,22,6,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,1,0,2359,-6,0,0 +2013,6,23,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,700,-3,0,830,0,0,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,835,-7,0,1259,-11,0,0 +2013,7,31,3,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1435,-2,0,1600,-4,0,0 +2013,10,29,2,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,1613,2,0,1717,-13,0,0 +2013,6,17,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,725,-7,0,1004,-4,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,-4,0,857,-10,0,0 +2013,9,1,7,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,1305,-2,0,2034,-14,0,0 +2013,9,2,1,EV,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1312,-7,0,1428,-18,0,0 +2013,7,30,2,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1355,4,0,1621,-1,0,0 +2013,10,23,3,EV,12264,Washington Dulles International,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1226,-5,0,1400,-14,0,0 +2013,10,6,7,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1135,-3,0,1413,-12,0,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,821,0,0,926,5,0,0 +2013,6,14,5,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1043,-7,0,1159,-25,0,0 +2013,9,1,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1710,7,0,1913,14,0,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,830,-9,0,1700,-44,0,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,2025,61,1,2145,48,1,0 +2013,8,23,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1010,0,,1140,0,1,1 +2013,5,11,6,UA,12264,Washington Dulles International,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,814,0,0,1158,-12,0,0 +2013,10,4,5,US,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-7,0,1857,13,0,0 +2013,7,21,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1640,24,1,2310,28,1,0 +2013,6,26,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13204,Orlando International,Orlando,FL,1945,-4,0,2225,-7,0,0 +2013,8,7,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,1409,-6,0,2030,-2,0,0 +2013,8,16,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13198,Kansas City International,Kansas City,MO,1055,0,0,1345,4,0,0 +2013,8,2,5,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,900,-2,0,1155,-18,0,0 +2013,9,23,1,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1724,-7,0,1930,-15,0,0 +2013,9,5,4,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,845,-3,0,925,-10,0,0 +2013,7,16,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1400,-2,0,1716,-4,0,0 +2013,6,3,1,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,11433,Detroit Metro Wayne County,Detroit,MI,750,-3,0,1124,-8,0,0 +2013,8,20,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-2,0,1323,-17,0,0 +2013,7,4,4,F9,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,830,23,1,936,30,1,0 +2013,7,3,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1935,7,0,2035,3,0,0 +2013,7,3,3,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,815,16,1,1123,74,1,0 +2013,10,19,6,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,930,-13,0,1148,-22,0,0 +2013,4,17,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1725,-3,0,1957,-15,0,0 +2013,4,7,7,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1927,48,1,2255,29,1,0 +2013,7,25,4,WN,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,845,-1,0,1125,-9,0,0 +2013,10,17,4,EV,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,1059,-9,0,1242,-8,0,0 +2013,7,6,6,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1835,15,1,1940,38,1,0 +2013,5,11,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1200,0,0,1524,-6,0,0 +2013,9,28,6,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1340,-6,0,1600,-4,0,0 +2013,4,29,1,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1959,-7,0,2151,4,0,0 +2013,9,12,4,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1250,2,0,1436,-14,0,0 +2013,7,12,5,MQ,12478,John F. Kennedy International,New York,NY,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1600,-3,0,1815,33,1,0 +2013,8,22,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1404,7,0,1520,7,0,0 +2013,7,7,7,WN,14869,Salt Lake City International,Salt Lake City,UT,13232,Chicago Midway International,Chicago,IL,1625,-1,0,2025,8,0,0 +2013,10,28,1,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12191,William P Hobby,Houston,TX,1435,-3,0,1545,-16,0,0 +2013,7,11,4,B6,14747,Seattle/Tacoma International,Seattle,WA,10721,Logan International,Boston,MA,1136,-2,0,1949,28,1,0 +2013,8,22,4,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,620,-1,0,730,-5,0,0 +2013,9,30,1,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1635,145,1,1950,111,1,0 +2013,7,3,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,710,-5,0,0 +2013,5,28,2,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1210,-2,0,1345,-23,0,0 +2013,5,14,2,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,-8,0,810,-7,0,0 +2013,6,15,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14679,San Diego International,San Diego,CA,1520,138,1,1610,140,1,0 +2013,6,2,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1020,-7,0,1309,-6,0,0 +2013,6,29,6,VX,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,945,-1,0,1815,-12,0,0 +2013,4,27,6,AA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,920,12,0,1715,17,1,0 +2013,4,1,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,4,0,1527,0,0,0 +2013,5,8,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1820,7,0,1935,-3,0,0 +2013,8,26,1,AA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-11,0,935,-15,0,0 +2013,8,31,6,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1300,-1,0,1715,0,0,0 +2013,5,29,3,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1623,14,0,1747,43,1,0 +2013,5,2,4,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,530,-5,0,727,-31,0,0 +2013,10,31,4,MQ,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1810,-8,0,1905,-25,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1145,-2,0,1345,-6,0,0 +2013,9,10,2,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,857,5,0,1454,8,0,0 +2013,4,5,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1125,-3,0,1310,-10,0,0 +2013,4,10,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,2210,74,1,40,64,1,0 +2013,4,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1320,91,1,1530,137,1,0 +2013,6,29,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1020,13,0,1325,1,0,0 +2013,6,9,7,WN,10529,Bradley International,Hartford,CT,13204,Orlando International,Orlando,FL,1645,4,0,1935,2,0,0 +2013,5,28,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,2000,0,,2120,0,1,1 +2013,8,2,5,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,705,0,,810,0,1,1 +2013,8,2,5,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-4,0,1135,0,0,0 +2013,5,20,1,FL,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,958,-5,0,0 +2013,4,26,5,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,751,-1,0,1055,-11,0,0 +2013,5,1,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1440,0,0,1640,-5,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1642,13,0,1834,-5,0,0 +2013,4,6,6,WN,15304,Tampa International,Tampa,FL,10792,Buffalo Niagara International,Buffalo,NY,1700,12,0,1945,-2,0,0 +2013,5,13,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,925,15,1,1035,1,0,0 +2013,8,18,7,AA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1430,-7,0,1600,-4,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,0,0,710,16,1,0 +2013,10,24,4,DL,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,710,-1,0,820,6,0,0 +2013,6,9,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,-10,0,1114,-25,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1715,1,0,1929,-18,0,0 +2013,9,10,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,914,-7,0,0 +2013,5,16,4,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,19,1,2105,6,0,0 +2013,10,17,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,740,-1,0,825,0,0,0 +2013,7,1,1,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,625,-4,0,917,-16,0,0 +2013,4,20,6,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,920,7,0,1210,-4,0,0 +2013,5,10,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,1800,22,1,2325,50,1,0 +2013,6,22,6,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1120,-9,0,1244,-20,0,0 +2013,5,27,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1936,-6,0,2250,-26,0,0 +2013,9,11,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,620,0,0,705,-2,0,0 +2013,4,22,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,853,-1,0,958,-3,0,0 +2013,6,7,5,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1210,-12,0,1342,-15,0,0 +2013,8,29,4,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,2000,-8,0,2117,-18,0,0 +2013,8,25,7,WN,13232,Chicago Midway International,Chicago,IL,10529,Bradley International,Hartford,CT,2105,33,1,5,25,1,0 +2013,4,3,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,1,0,1409,19,1,0 +2013,10,18,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,905,5,0,1112,4,0,0 +2013,7,4,4,UA,14057,Portland International,Portland,OR,11618,Newark Liberty International,Newark,NJ,2212,12,0,610,6,0,0 +2013,8,22,4,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1220,43,1,1320,36,1,0 +2013,5,21,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1010,0,0,1145,-13,0,0 +2013,5,16,4,WN,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,2015,-2,0,2255,-9,0,0 +2013,6,24,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,3,0,2215,19,1,0 +2013,9,20,5,WN,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,1700,3,0,1845,6,0,0 +2013,4,2,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1400,7,0,1450,0,0,0 +2013,4,23,2,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2000,10,0,2230,4,0,0 +2013,6,17,1,US,14679,San Diego International,San Diego,CA,11057,Charlotte Douglas International,Charlotte,NC,1110,13,0,1849,42,1,0 +2013,4,16,2,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,752,-15,0,0 +2013,9,29,7,DL,12892,Los Angeles International,Los Angeles,CA,11433,Detroit Metro Wayne County,Detroit,MI,1325,-4,0,2059,16,1,0 +2013,6,4,2,AS,10721,Logan International,Boston,MA,14057,Portland International,Portland,OR,1715,-7,0,2045,-27,0,0 +2013,7,15,1,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1425,120,1,1635,122,1,0 +2013,4,28,7,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,1218,9,0,1431,12,0,0 +2013,7,22,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,50,1,1548,51,1,0 +2013,5,30,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,-2,0,1510,-18,0,0 +2013,10,24,4,YV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11057,Charlotte Douglas International,Charlotte,NC,700,-4,0,822,-6,0,0 +2013,6,25,2,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1259,1,0,1450,-1,0,0 +2013,10,16,3,WN,14679,San Diego International,San Diego,CA,15376,Tucson International,Tucson,AZ,2020,-1,0,2140,-20,0,0 +2013,4,3,3,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,855,109,1,1140,96,1,0 +2013,7,25,4,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,-1,0,805,4,0,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1850,38,1,2154,21,1,0 +2013,8,27,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1540,2,0,1725,7,0,0 +2013,9,11,3,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1505,5,0,1839,13,0,0 +2013,5,6,1,EV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-8,0,2134,-22,0,0 +2013,4,17,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1100,1,0,1215,6,0,0 +2013,10,12,6,WN,13871,Eppley Airfield,Omaha,NE,12889,McCarran International,Las Vegas,NV,1445,-7,0,1540,-10,0,0 +2013,9,23,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-5,0,1009,-15,0,0 +2013,8,28,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1955,-4,0,2150,5,0,0 +2013,10,21,1,YV,12264,Washington Dulles International,Washington,DC,14307,Theodore Francis Green State,Providence,RI,1221,-3,0,1340,-3,0,0 +2013,9,21,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,57,1,1332,58,1,0 +2013,9,8,7,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1945,4,0,2055,-4,0,0 +2013,6,17,1,UA,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,1004,12,0,1149,2,0,0 +2013,9,15,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,2005,-5,0,2132,-1,0,0 +2013,10,23,3,AA,10721,Logan International,Boston,MA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1830,-8,0,2145,-21,0,0 +2013,7,5,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,-2,0,1510,-1,0,0 +2013,7,22,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,11,0,1934,21,1,0 +2013,9,16,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1535,-5,0,1737,2,0,0 +2013,4,7,7,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,830,-4,0,1125,-6,0,0 +2013,6,11,2,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,920,3,0,1227,10,0,0 +2013,4,14,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,10423,Austin - Bergstrom International,Austin,TX,1441,5,0,1735,-5,0,0 +2013,6,28,5,WN,12889,McCarran International,Las Vegas,NV,13891,Ontario International,Ontario,CA,1510,56,1,1605,56,1,0 +2013,9,9,1,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,944,0,0,1302,-20,0,0 +2013,10,29,2,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1240,-2,0,1405,-2,0,0 +2013,5,31,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,610,18,1,720,9,0,0 +2013,4,20,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,2044,8,0,2230,13,0,0 +2013,9,2,1,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,730,-5,0,930,6,0,0 +2013,10,5,6,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,-9,0,1511,-15,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1141,-1,0,1332,22,1,0 +2013,8,2,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,750,13,0,901,10,0,0 +2013,6,13,4,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,241,1,1951,287,1,0 +2013,5,7,2,WN,11292,Denver International,Denver,CO,14122,Pittsburgh International,Pittsburgh,PA,1845,11,0,2345,9,0,0 +2013,10,1,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1520,16,1,1641,47,1,0 +2013,4,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1050,0,,1204,0,1,1 +2013,7,30,2,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1200,-3,0,1405,2,0,0 +2013,8,16,5,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1445,-2,0,2310,15,1,0 +2013,6,13,4,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,640,-1,0,805,-2,0,0 +2013,5,20,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1425,28,1,1730,25,1,0 +2013,9,18,3,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1846,-5,0,2014,1,0,0 +2013,5,22,3,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,745,7,0,1010,13,0,0 +2013,6,19,3,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2015,32,1,2215,22,1,0 +2013,9,23,1,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1330,25,1,1750,18,1,0 +2013,4,9,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,10693,Nashville International,Nashville,TN,1755,-4,0,1855,-10,0,0 +2013,7,27,6,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,38,1,1610,36,1,0 +2013,5,21,2,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,740,69,1,805,65,1,0 +2013,5,2,4,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1300,-3,0,1814,-2,0,0 +2013,5,22,3,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1322,114,1,1420,141,1,0 +2013,10,3,4,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,930,-1,0,1135,-4,0,0 +2013,8,26,1,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,1052,0,0,1906,-12,0,0 +2013,6,9,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1714,68,1,1843,64,1,0 +2013,7,8,1,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,2057,1,0,450,-5,0,0 +2013,4,12,5,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,600,-3,0,818,-16,0,0 +2013,9,12,4,DL,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,810,-5,0,1301,3,0,0 +2013,9,20,5,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1905,-4,0,2137,-22,0,0 +2013,10,24,4,WN,10423,Austin - Bergstrom International,Austin,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,715,-3,0,905,-9,0,0 +2013,10,9,3,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,950,3,0,1105,-14,0,0 +2013,10,27,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-6,0,1922,-12,0,0 +2013,5,31,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,-4,0,2220,-7,0,0 +2013,5,22,3,WN,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1415,-5,0,1640,-12,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1455,161,1,1628,149,1,0 +2013,6,8,6,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,843,-7,0,1211,-36,0,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,2057,19,1,2224,37,1,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1555,0,0,1920,-5,0,0 +2013,5,23,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1450,0,,1810,0,1,1 +2013,7,10,3,WN,14683,San Antonio International,San Antonio,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2010,15,1,2025,11,0,0 +2013,6,3,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-7,0,758,-18,0,0 +2013,5,12,7,F9,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,810,-10,0,956,-15,0,0 +2013,8,21,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1620,1,0,1900,12,0,0 +2013,4,7,7,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-10,0,1205,-10,0,0 +2013,10,5,6,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,950,1,0,1212,-17,0,0 +2013,6,26,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2135,76,1,10,68,1,0 +2013,10,6,7,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-4,0,1349,-7,0,0 +2013,10,26,6,WN,13232,Chicago Midway International,Chicago,IL,12191,William P Hobby,Houston,TX,1155,-2,0,1430,-8,0,0 +2013,7,7,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1955,72,1,2035,64,1,0 +2013,10,20,7,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1455,-7,0,1626,-24,0,0 +2013,8,28,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,2040,5,0,2320,12,0,0 +2013,7,14,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,925,-8,0,945,-4,0,0 +2013,4,9,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,714,3,0,924,-6,0,0 +2013,9,24,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1520,1,0,1635,-5,0,0 +2013,6,22,6,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,545,5,0,714,8,0,0 +2013,8,19,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2103,14,0,2222,-9,0,0 +2013,7,22,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2155,0,,5,0,1,1 +2013,6,10,1,B6,14057,Portland International,Portland,OR,12954,Long Beach Airport,Long Beach,CA,1515,-3,0,1736,-9,0,0 +2013,4,3,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1155,-8,0,1300,-11,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,2155,73,1,2255,70,1,0 +2013,10,5,6,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-6,0,1422,-10,0,0 +2013,7,1,1,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12953,LaGuardia,New York,NY,1535,24,1,1715,23,1,0 +2013,10,18,5,F9,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1650,19,1,2145,2,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1145,36,1,1305,35,1,0 +2013,7,21,7,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2011,61,1,705,61,1,0 +2013,9,29,7,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,2045,-9,0,500,-9,0,0 +2013,4,26,5,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-6,0,930,-13,0,0 +2013,7,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,1320,19,1,1410,11,0,0 +2013,10,18,5,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-13,0,1050,-18,0,0 +2013,6,30,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1205,-3,0,1223,-2,0,0 +2013,7,3,3,AA,14843,Luis Munoz Marin International,San Juan,PR,13303,Miami International,Miami,FL,1525,-9,0,1810,-22,0,0 +2013,8,2,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1155,8,0,1309,4,0,0 +2013,7,23,2,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2225,24,1,2355,35,1,0 +2013,10,16,3,WN,13204,Orlando International,Orlando,FL,14843,Luis Munoz Marin International,San Juan,PR,910,-1,0,1155,-11,0,0 +2013,4,23,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14683,San Antonio International,San Antonio,TX,1937,14,0,2155,59,1,0 +2013,8,10,6,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,745,-1,0,830,-8,0,0 +2013,10,1,2,WN,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,910,0,0,1145,14,0,0 +2013,8,31,6,9E,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1850,19,1,2018,7,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,930,2,0,1100,2,0,0 +2013,6,5,3,WN,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1340,26,1,1555,13,0,0 +2013,10,18,5,YV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1245,-1,0,1457,-5,0,0 +2013,8,25,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,-4,0,1455,-12,0,0 +2013,6,26,3,B6,15304,Tampa International,Tampa,FL,10721,Logan International,Boston,MA,1540,20,1,1843,20,1,0 +2013,9,26,4,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,845,9,0,1410,-1,0,0 +2013,4,14,7,VX,14771,San Francisco International,San Francisco,CA,11278,Ronald Reagan Washington National,Washington,DC,805,0,0,1605,-19,0,0 +2013,8,11,7,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1425,19,1,2221,-1,0,0 +2013,5,19,7,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-6,0,1720,-9,0,0 +2013,7,24,3,YV,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1120,-4,0,1213,-2,0,0 +2013,4,16,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1317,-10,0,1420,-25,0,0 +2013,4,24,3,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,1307,-6,0,1700,-29,0,0 +2013,7,20,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,938,-5,0,1028,-6,0,0 +2013,6,20,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,725,-6,0,928,-10,0,0 +2013,7,30,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1225,-2,0,1426,9,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1115,27,1,1245,29,1,0 +2013,7,11,4,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,0,0,1639,-8,0,0 +2013,9,15,7,9E,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1825,-10,0,2001,-15,0,0 +2013,10,15,2,WN,13198,Kansas City International,Kansas City,MO,15016,Lambert-St. Louis International,St. Louis,MO,1205,-1,0,1300,-6,0,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,915,-4,0,1150,-6,0,0 +2013,10,13,7,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1320,-4,0,1605,-5,0,0 +2013,4,15,1,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,2,0,2030,0,0,0 +2013,5,23,4,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2155,37,1,2320,29,1,0 +2013,5,4,6,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,900,-9,0,1019,-33,0,0 +2013,9,15,7,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2030,-4,0,2250,-5,0,0 +2013,5,12,7,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1620,-3,0,1820,-2,0,0 +2013,4,24,3,EV,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1405,49,1,1419,41,1,0 +2013,10,26,6,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,850,2,0,1610,-10,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1300,-1,0,1422,13,0,0 +2013,9,29,7,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1440,-9,0,1643,-15,0,0 +2013,6,27,4,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,1525,11,0,1615,6,0,0 +2013,8,22,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,644,-5,0,1025,-16,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1215,-3,0,1415,-12,0,0 +2013,5,1,3,WN,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,600,2,0,935,-3,0,0 +2013,5,20,1,AA,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,925,-2,0,1050,-7,0,0 +2013,4,16,2,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,600,-4,0,922,-18,0,0 +2013,4,15,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,0,0,2105,17,1,0 +2013,10,27,7,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-3,0,1355,-6,0,0 +2013,10,29,2,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1007,256,1,1441,246,1,0 +2013,7,31,3,AA,13303,Miami International,Miami,FL,13204,Orlando International,Orlando,FL,1210,-2,0,1315,-7,0,0 +2013,6,5,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,2002,-5,0,2155,-7,0,0 +2013,5,9,4,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,500,-5,0,705,-9,0,0 +2013,6,13,4,B6,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,805,22,1,1130,23,1,0 +2013,4,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1350,-7,0,1625,1,0,0 +2013,4,18,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,1930,37,1,2050,32,1,0 +2013,7,16,2,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,704,-1,0,830,-10,0,0 +2013,4,19,5,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,-3,0,1510,-11,0,0 +2013,9,16,1,EV,14730,Louisville International-Standiford Field,Louisville,KY,13930,Chicago O'Hare International,Chicago,IL,519,-5,0,542,-20,0,0 +2013,7,10,3,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1735,92,1,2000,97,1,0 +2013,10,5,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,1305,12,0,1559,25,1,0 +2013,10,16,3,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1800,-6,0,2007,-17,0,0 +2013,7,2,2,HA,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1230,-4,0,2020,8,0,0 +2013,9,12,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14307,Theodore Francis Green State,Providence,RI,2010,82,1,2151,85,1,0 +2013,5,18,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,740,-6,0,1019,6,0,0 +2013,8,30,5,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1000,0,0,1030,6,0,0 +2013,6,27,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,2205,210,1,2346,222,1,0 +2013,7,17,3,UA,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1524,-5,0,1845,-19,0,0 +2013,8,7,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1042,8,0,1908,15,1,0 +2013,9,1,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,13342,General Mitchell International,Milwaukee,WI,1200,-2,0,1209,-2,0,0 +2013,9,13,5,FL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,0,,815,0,1,1 +2013,9,24,2,FL,14683,San Antonio International,San Antonio,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,608,-6,0,925,3,0,0 +2013,9,27,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,839,-2,0,1035,5,0,0 +2013,7,27,6,UA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1106,4,0,1710,-20,0,0 +2013,8,12,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,16,1,1655,27,1,0 +2013,5,20,1,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,600,65,1,715,56,1,0 +2013,5,26,7,FL,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1610,3,0,1855,10,0,0 +2013,4,27,6,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1230,-2,0,1510,-10,0,0 +2013,6,26,3,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,817,0,0,0 +2013,9,19,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1540,38,1,1705,29,1,0 +2013,10,26,6,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,916,-8,0,1128,-19,0,0 +2013,6,24,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1250,-7,0,1607,-24,0,0 +2013,7,8,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,1918,23,1,2239,11,0,0 +2013,8,28,3,DL,13244,Memphis International,Memphis,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1425,1,0,1631,0,0,0 +2013,10,27,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1632,0,0,1758,4,0,0 +2013,10,20,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1510,4,0,1522,1,0,0 +2013,9,27,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1130,-5,0,1402,-23,0,0 +2013,5,8,3,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1930,-7,0,2108,-25,0,0 +2013,7,11,4,WN,10693,Nashville International,Nashville,TN,12451,Jacksonville International,Jacksonville,FL,1835,17,1,2100,9,0,0 +2013,9,23,1,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,933,1,0,1017,10,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,12953,LaGuardia,New York,NY,1745,-7,0,2330,-7,0,0 +2013,7,1,1,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1810,25,1,2330,32,1,0 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1100,5,0,1620,-5,0,0 +2013,7,20,6,B6,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1453,0,0,1755,-9,0,0 +2013,7,13,6,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1915,25,1,2150,27,1,0 +2013,10,17,4,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,-9,0,1256,-14,0,0 +2013,6,13,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,700,1,0,1100,-10,0,0 +2013,8,3,6,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,928,-5,0,1205,-5,0,0 +2013,8,19,1,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-3,0,713,-8,0,0 +2013,6,14,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1530,-3,0,2045,-15,0,0 +2013,10,26,6,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1710,-5,0,1749,-13,0,0 +2013,4,18,4,AA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,920,0,,1130,0,1,1 +2013,8,22,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1600,62,1,1810,55,1,0 +2013,7,7,7,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,935,-7,0,950,-2,0,0 +2013,9,27,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2110,-2,0,2356,3,0,0 +2013,7,16,2,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1800,0,0,1943,3,0,0 +2013,9,2,1,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,5,0,1943,3,0,0 +2013,8,11,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1137,-5,0,1337,-7,0,0 +2013,8,26,1,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1810,-7,0,2130,-14,0,0 +2013,4,12,5,MQ,12478,John F. Kennedy International,New York,NY,11066,Port Columbus International,Columbus,OH,1545,1,0,1745,13,0,0 +2013,4,14,7,VX,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,915,-5,0,1230,11,0,0 +2013,4,19,5,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,520,0,0,810,7,0,0 +2013,5,20,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1825,-6,0,2108,-5,0,0 +2013,6,26,3,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,600,-2,0,1107,-10,0,0 +2013,8,6,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,-3,0,1724,-12,0,0 +2013,9,3,2,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,2142,14,0,2252,4,0,0 +2013,7,9,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,1245,16,1,1415,6,0,0 +2013,8,12,1,UA,15304,Tampa International,Tampa,FL,11292,Denver International,Denver,CO,823,-10,0,1014,-26,0,0 +2013,6,18,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1555,-5,0,1729,-2,0,0 +2013,4,10,3,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,933,-10,0,0 +2013,7,21,7,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1735,11,0,1845,2,0,0 +2013,5,13,1,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,720,-4,0,825,-15,0,0 +2013,10,19,6,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1339,-1,0,1430,7,0,0 +2013,4,16,2,MQ,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-3,0,955,-19,0,0 +2013,9,22,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,1125,-3,0,1515,-8,0,0 +2013,5,17,5,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1522,-2,0,1811,19,1,0 +2013,4,14,7,WN,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,2,0,40,-15,0,0 +2013,7,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,130,1,2350,109,1,0 +2013,4,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,11292,Denver International,Denver,CO,740,-2,0,919,3,0,0 +2013,8,6,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,3,0,2006,11,0,0 +2013,4,24,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1449,1,0,1702,7,0,0 +2013,6,28,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1855,0,,2031,0,1,1 +2013,4,21,7,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1100,-4,0,1155,-2,0,0 +2013,6,20,4,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,35,1,747,47,1,0 +2013,6,21,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,821,0,0,1151,-9,0,0 +2013,5,15,3,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1850,4,0,2154,-7,0,0 +2013,5,5,7,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,-2,0,1807,5,0,0 +2013,5,29,3,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1302,-5,0,1341,-7,0,0 +2013,7,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,736,-4,0,856,-11,0,0 +2013,8,6,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,1449,-7,0,1726,-21,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,-7,0,815,-14,0,0 +2013,5,11,6,AA,13930,Chicago O'Hare International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1225,34,1,1420,13,0,0 +2013,5,6,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1215,-2,0,1328,-6,0,0 +2013,5,11,6,YV,12954,Long Beach Airport,Long Beach,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1005,-8,0,1122,-11,0,0 +2013,10,12,6,OO,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1736,-3,0,2007,2,0,0 +2013,10,16,3,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,705,-7,0,953,-1,0,0 +2013,6,13,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1150,81,1,1447,72,1,0 +2013,4,9,2,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1835,-2,0,2045,-1,0,0 +2013,8,28,3,YV,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1512,55,1,1834,68,1,0 +2013,5,1,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1645,96,1,1757,70,1,0 +2013,6,11,2,US,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1625,-7,0,1740,0,0,0 +2013,10,22,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,925,-2,0,1255,-9,0,0 +2013,4,5,5,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1132,5,0,1415,3,0,0 +2013,4,13,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1925,-2,0,2146,-9,0,0 +2013,8,20,2,AA,13303,Miami International,Miami,FL,10529,Bradley International,Hartford,CT,2145,-1,0,50,-15,0,0 +2013,6,18,2,VX,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,715,-3,0,935,1,0,0 +2013,5,13,1,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-1,0,1015,-20,0,0 +2013,8,1,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-7,0,1225,-33,0,0 +2013,10,6,7,FL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1205,9,0,1500,-3,0,0 +2013,10,3,4,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,-3,0,1527,-13,0,0 +2013,8,8,4,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1332,0,,1528,0,1,1 +2013,8,1,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,2055,14,0,2242,19,1,0 +2013,6,12,3,AA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,915,-7,0,1115,-8,0,0 +2013,6,2,7,WN,12892,Los Angeles International,Los Angeles,CA,13342,General Mitchell International,Milwaukee,WI,1850,8,0,35,-2,0,0 +2013,10,6,7,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1020,-5,0,1310,-20,0,0 +2013,6,11,2,DL,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1120,-2,0,1418,-9,0,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,15016,Lambert-St. Louis International,St. Louis,MO,1445,-7,0,1541,-6,0,0 +2013,4,24,3,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,734,-4,0,1009,25,1,0 +2013,6,18,2,UA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,830,18,1,1115,11,0,0 +2013,9,24,2,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1145,-9,0,1309,-9,0,0 +2013,5,16,4,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,12953,LaGuardia,New York,NY,1315,-7,0,1459,-18,0,0 +2013,9,7,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1514,-3,0,1633,-28,0,0 +2013,8,31,6,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,20,1,1605,-5,0,0 +2013,10,6,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,12953,LaGuardia,New York,NY,700,-3,0,1056,-5,0,0 +2013,7,9,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1230,-6,0,1510,-4,0,0 +2013,10,12,6,9E,12478,John F. Kennedy International,New York,NY,10693,Nashville International,Nashville,TN,1545,-1,0,1723,-14,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1415,-6,0,1530,2,0,0 +2013,8,21,3,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1942,2,0,2113,-5,0,0 +2013,5,8,3,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2115,-4,0,2355,5,0,0 +2013,4,1,1,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1218,16,1,1408,29,1,0 +2013,9,11,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,1235,12,0,1830,2,0,0 +2013,4,18,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1706,127,1,1915,162,1,0 +2013,4,21,7,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,-4,0,1050,-13,0,0 +2013,6,27,4,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,814,7,0,1000,12,0,0 +2013,4,29,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,832,4,0,1625,21,1,0 +2013,7,10,3,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2307,-6,0,511,-25,0,0 +2013,8,1,4,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,5,0,920,3,0,0 +2013,10,4,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,711,-4,0,950,-18,0,0 +2013,9,2,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15376,Tucson International,Tucson,AZ,1825,-4,0,1900,-28,0,0 +2013,8,28,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1830,-1,0,1950,-11,0,0 +2013,7,26,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1609,54,1,1954,50,1,0 +2013,8,23,5,AA,13931,Norfolk International,Norfolk,VA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1800,-5,0,2010,3,0,0 +2013,8,27,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1400,-5,0,1542,-19,0,0 +2013,5,19,7,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,642,1,0,927,-8,0,0 +2013,10,22,2,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1955,-6,0,2250,-16,0,0 +2013,7,11,4,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,3,0,1524,3,0,0 +2013,10,21,1,EV,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,2203,-6,0,115,-15,0,0 +2013,4,25,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,1205,-4,0,1409,-10,0,0 +2013,6,6,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,730,-8,0,950,-16,0,0 +2013,8,8,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1445,41,1,1550,37,1,0 +2013,10,14,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11066,Port Columbus International,Columbus,OH,850,1,0,1543,-35,0,0 +2013,7,16,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,0,0,1345,-9,0,0 +2013,8,3,6,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,645,3,0,822,3,0,0 +2013,7,25,4,OO,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,609,35,1,717,41,1,0 +2013,6,19,3,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,910,-3,0,1135,20,1,0 +2013,4,30,2,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,1515,-8,0,1747,-15,0,0 +2013,6,20,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1345,-6,0,1655,-17,0,0 +2013,6,11,2,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2030,73,1,2206,71,1,0 +2013,4,4,4,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1615,10,0,1832,-6,0,0 +2013,5,30,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,955,-4,0,1125,-13,0,0 +2013,8,2,5,OO,15376,Tucson International,Tucson,AZ,14869,Salt Lake City International,Salt Lake City,UT,1130,-9,0,1417,-8,0,0 +2013,9,6,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,13871,Eppley Airfield,Omaha,NE,1455,-3,0,1605,-4,0,0 +2013,5,14,2,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,645,2,0,740,-8,0,0 +2013,5,19,7,OO,14869,Salt Lake City International,Salt Lake City,UT,10140,Albuquerque International Sunport,Albuquerque,NM,1516,-8,0,1657,-15,0,0 +2013,6,30,7,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,1,0,2344,0,0,0 +2013,8,18,7,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1620,-5,0,1820,-24,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1715,14,0,45,16,1,0 +2013,5,9,4,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1740,4,0,1905,1,0,0 +2013,7,17,3,EV,11618,Newark Liberty International,Newark,NJ,13198,Kansas City International,Kansas City,MO,844,21,1,1104,-13,0,0 +2013,6,16,7,F9,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,2055,13,0,2220,20,1,0 +2013,10,28,1,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1657,110,1,1745,101,1,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,15,1,1705,16,1,0 +2013,6,14,5,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1855,-5,0,2123,-18,0,0 +2013,4,19,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1144,59,1,1359,67,1,0 +2013,6,4,2,9E,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-8,0,1314,-25,0,0 +2013,5,10,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1650,40,1,1925,-5,0,0 +2013,5,21,2,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-4,0,1746,-6,0,0 +2013,7,21,7,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1105,-3,0,1210,-6,0,0 +2013,8,2,5,AA,12892,Los Angeles International,Los Angeles,CA,10423,Austin - Bergstrom International,Austin,TX,640,-4,0,1140,-9,0,0 +2013,8,14,3,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1528,1,0,1624,3,0,0 +2013,7,26,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13495,Louis Armstrong New Orleans International,New Orleans,LA,1140,-5,0,1242,-5,0,0 +2013,7,9,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1519,10,0,1820,-1,0,0 +2013,7,16,2,EV,13930,Chicago O'Hare International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1300,-5,0,1521,-18,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,1730,15,1,1930,19,1,0 +2013,4,10,3,B6,13796,Metropolitan Oakland International,Oakland,CA,12954,Long Beach Airport,Long Beach,CA,1845,1,0,2003,0,0,0 +2013,7,16,2,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,25,1,1710,19,1,0 +2013,6,27,4,AS,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1520,138,1,2325,139,1,0 +2013,7,23,2,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,809,54,1,1051,31,1,0 +2013,9,9,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1005,-3,0,1128,-17,0,0 +2013,6,9,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,736,-3,0,942,-12,0,0 +2013,9,29,7,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,4,0,1327,-17,0,0 +2013,4,13,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,11278,Ronald Reagan Washington National,Washington,DC,1546,-4,0,1719,-15,0,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,805,0,0,929,12,0,0 +2013,4,26,5,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1715,105,1,1847,92,1,0 +2013,8,6,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,1,0,1006,-6,0,0 +2013,6,2,7,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,-4,0,1010,-10,0,0 +2013,4,2,2,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,900,-2,0,1029,6,0,0 +2013,5,10,5,EV,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,852,13,0,1035,5,0,0 +2013,7,9,2,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,620,-6,0,1130,-15,0,0 +2013,7,7,7,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,2030,-4,0,2305,-2,0,0 +2013,4,22,1,UA,14057,Portland International,Portland,OR,12264,Washington Dulles International,Washington,DC,752,1,0,1547,17,1,0 +2013,5,5,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1930,-1,0,2030,-7,0,0 +2013,6,14,5,FL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1550,3,0,1846,-8,0,0 +2013,9,3,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1500,-2,0,1610,-15,0,0 +2013,10,26,6,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,623,-9,0,1210,-13,0,0 +2013,4,6,6,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1705,-1,0,2235,-4,0,0 +2013,9,4,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,905,12,0,1730,-5,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1900,17,1,2130,10,0,0 +2013,7,31,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1850,13,0,2000,18,1,0 +2013,9,9,1,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1500,19,1,1940,13,0,0 +2013,4,21,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,850,2,0,1019,-1,0,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,800,-5,0,1104,-9,0,0 +2013,8,31,6,WN,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,900,-4,0,945,-6,0,0 +2013,10,16,3,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,2155,19,1,2310,15,1,0 +2013,8,1,4,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1231,0,0,1411,0,0,0 +2013,5,27,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1210,69,1,1425,61,1,0 +2013,9,8,7,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1445,0,0,1705,-3,0,0 +2013,4,30,2,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,-2,0,2125,-7,0,0 +2013,5,31,5,9E,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2047,-7,0,2235,-52,0,0 +2013,5,22,3,AA,13871,Eppley Airfield,Omaha,NE,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,610,-4,0,805,-4,0,0 +2013,8,8,4,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,620,-10,0,904,-10,0,0 +2013,10,24,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11618,Newark Liberty International,Newark,NJ,1905,34,1,2152,58,1,0 +2013,7,14,7,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,1845,16,1,19,50,1,0 +2013,5,9,4,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1425,88,1,1740,95,1,0 +2013,8,21,3,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,830,-9,0,950,-32,0,0 +2013,6,11,2,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1205,-4,0,1430,-5,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1225,7,0,1455,-4,0,0 +2013,10,26,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,600,10,0,720,6,0,0 +2013,9,21,6,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1215,6,0,1335,8,0,0 +2013,6,13,4,UA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,1421,-3,0,1614,6,0,0 +2013,7,29,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1710,-6,0,1849,-21,0,0 +2013,10,8,2,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-11,0,1001,6,0,0 +2013,5,16,4,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1733,-2,0,2018,-26,0,0 +2013,5,16,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,705,-1,0,915,-10,0,0 +2013,6,29,6,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,2021,-5,0,2200,-26,0,0 +2013,8,14,3,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1510,144,1,1745,125,1,0 +2013,5,26,7,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1816,8,0,2044,19,1,0 +2013,8,20,2,UA,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1509,-4,0,2051,-20,0,0 +2013,6,4,2,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1830,-5,0,2028,-10,0,0 +2013,10,24,4,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1619,-2,0,1839,-27,0,0 +2013,10,19,6,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,739,-1,0,0 +2013,10,8,2,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-10,0,445,-18,0,0 +2013,10,15,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1931,-5,0,2200,-3,0,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1520,11,0,1640,8,0,0 +2013,9,21,6,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,-6,0,1750,-32,0,0 +2013,9,14,6,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,1535,-1,0,1810,-31,0,0 +2013,8,14,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1210,53,1,1350,52,1,0 +2013,6,1,6,US,11057,Charlotte Douglas International,Charlotte,NC,14771,San Francisco International,San Francisco,CA,735,3,0,950,20,1,0 +2013,6,25,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1920,191,1,2125,187,1,0 +2013,10,31,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-1,0,1823,7,0,0 +2013,6,24,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,635,2,0,1453,-8,0,0 +2013,8,18,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13303,Miami International,Miami,FL,1845,12,0,2120,16,1,0 +2013,7,30,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13303,Miami International,Miami,FL,610,0,0,840,4,0,0 +2013,7,10,3,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1650,13,0,1820,-2,0,0 +2013,5,29,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,7,0,1545,-1,0,0 +2013,8,15,4,B6,13204,Orlando International,Orlando,FL,14307,Theodore Francis Green State,Providence,RI,1745,25,1,2029,28,1,0 +2013,10,28,1,AA,10693,Nashville International,Nashville,TN,12892,Los Angeles International,Los Angeles,CA,1800,8,0,2015,20,1,0 +2013,9,10,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2030,-1,0,10,-7,0,0 +2013,7,30,2,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,822,-6,0,1110,-17,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1000,22,1,1220,3,0,0 +2013,8,28,3,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,720,-6,0,940,-30,0,0 +2013,8,13,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,2220,-5,0,26,-18,0,0 +2013,4,13,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-9,0,1754,-17,0,0 +2013,10,7,1,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1153,372,1,1321,372,1,0 +2013,5,2,4,EV,13495,Louis Armstrong New Orleans International,New Orleans,LA,11618,Newark Liberty International,Newark,NJ,1851,-7,0,2300,-22,0,0 +2013,9,21,6,OO,14570,Reno/Tahoe International,Reno,NV,14771,San Francisco International,San Francisco,CA,1422,-8,0,1530,-1,0,0 +2013,5,24,5,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-7,0,2215,-16,0,0 +2013,9,3,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1950,-1,0,2228,-31,0,0 +2013,6,13,4,UA,13830,Kahului Airport,Kahului,HI,12892,Los Angeles International,Los Angeles,CA,1251,2,0,2109,-13,0,0 +2013,8,15,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1725,3,0,1858,36,1,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1254,12,0,1631,2,0,0 +2013,7,8,1,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,735,-18,0,1600,-38,0,0 +2013,9,4,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1955,1,0,2220,-14,0,0 +2013,9,21,6,UA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,11618,Newark Liberty International,Newark,NJ,738,-3,0,1022,-8,0,0 +2013,4,26,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,2059,-6,0,127,-27,0,0 +2013,7,28,7,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1335,-2,0,1510,-11,0,0 +2013,6,11,2,B6,12478,John F. Kennedy International,New York,NY,12191,William P Hobby,Houston,TX,1450,-2,0,1746,-25,0,0 +2013,7,9,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2010,18,1,2300,13,0,0 +2013,5,7,2,OO,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1650,-3,0,1750,0,0,0 +2013,9,7,6,MQ,12478,John F. Kennedy International,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2140,-5,0,2255,-23,0,0 +2013,8,1,4,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,17,1,2050,29,1,0 +2013,4,4,4,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-4,0,2006,2,0,0 +2013,10,13,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1012,-9,0,1159,-17,0,0 +2013,10,3,4,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1847,16,1,2017,6,0,0 +2013,9,3,2,DL,13303,Miami International,Miami,FL,11433,Detroit Metro Wayne County,Detroit,MI,1150,-4,0,1450,-2,0,0 +2013,5,8,3,B6,14771,San Francisco International,San Francisco,CA,12954,Long Beach Airport,Long Beach,CA,1936,29,1,2057,23,1,0 +2013,4,20,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1515,15,1,2152,-5,0,0 +2013,5,24,5,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,708,3,0,815,-1,0,0 +2013,10,29,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,832,-1,0,945,-16,0,0 +2013,7,30,2,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,720,22,1,1025,18,1,0 +2013,8,5,1,UA,14771,San Francisco International,San Francisco,CA,13830,Kahului Airport,Kahului,HI,1435,11,0,1654,-2,0,0 +2013,7,17,3,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,820,-2,0,940,-4,0,0 +2013,8,21,3,OO,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1940,-7,0,2105,3,0,0 +2013,8,30,5,UA,13204,Orlando International,Orlando,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1508,-10,0,1636,-32,0,0 +2013,5,5,7,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-3,0,922,-2,0,0 +2013,5,23,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,854,-6,0,1317,-22,0,0 +2013,7,27,6,AA,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1340,-2,0,1615,-7,0,0 +2013,7,11,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12266,George Bush Intercontinental/Houston,Houston,TX,1714,0,0,2025,-3,0,0 +2013,8,8,4,WN,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,19,1,1920,14,0,0 +2013,10,25,5,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,610,-2,0,941,2,0,0 +2013,7,13,6,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1640,-7,0,1715,-3,0,0 +2013,9,2,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2125,100,1,2249,92,1,0 +2013,10,17,4,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1429,-8,0,1543,-16,0,0 +2013,8,10,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,700,-2,0,815,-8,0,0 +2013,6,29,6,WN,14057,Portland International,Portland,OR,14893,Sacramento International,Sacramento,CA,845,0,0,1020,-10,0,0 +2013,9,19,4,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-3,0,1352,-21,0,0 +2013,7,3,3,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,0,0,801,9,0,0 +2013,8,27,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,630,-7,0,747,-15,0,0 +2013,4,5,5,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,2020,-1,0,55,-11,0,0 +2013,5,31,5,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1453,4,0,1607,3,0,0 +2013,4,2,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13342,General Mitchell International,Milwaukee,WI,1730,23,1,1835,24,1,0 +2013,4,26,5,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1826,-2,0,2110,-2,0,0 +2013,10,1,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,823,36,1,1114,16,1,0 +2013,5,31,5,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,2040,-3,0,2210,-9,0,0 +2013,4,12,5,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,-1,0,1821,15,1,0 +2013,10,11,5,EV,10693,Nashville International,Nashville,TN,11618,Newark Liberty International,Newark,NJ,1216,150,1,1532,192,1,0 +2013,9,4,3,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,630,-3,0,1130,2,0,0 +2013,4,7,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1420,-2,0,1535,0,0,0 +2013,8,23,5,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,2005,0,0,2228,-18,0,0 +2013,8,16,5,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1305,10,0,2110,8,0,0 +2013,10,17,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,-1,0,1045,-14,0,0 +2013,4,7,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,1150,-1,0,1840,-4,0,0 +2013,8,27,2,EV,14524,Richmond International,Richmond,VA,11042,Cleveland-Hopkins International,Cleveland,OH,630,-4,0,753,-4,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1820,50,1,2040,29,1,0 +2013,9,6,5,AA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1615,-1,0,1830,-17,0,0 +2013,8,7,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,610,-1,0,815,-4,0,0 +2013,4,2,2,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,926,-6,0,1153,-16,0,0 +2013,6,27,4,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2020,-5,0,2056,4,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,2050,5,0,35,-12,0,0 +2013,8,26,1,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1245,26,1,1605,17,1,0 +2013,8,29,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12889,McCarran International,Las Vegas,NV,1625,3,0,1805,-17,0,0 +2013,7,6,6,WN,13232,Chicago Midway International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1540,1,0,1825,-13,0,0 +2013,5,5,7,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1511,-4,0,1626,-10,0,0 +2013,4,8,1,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,821,-2,0,1001,-8,0,0 +2013,4,1,1,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1518,-1,0,1734,-2,0,0 +2013,9,1,7,WN,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1740,0,0,2045,-9,0,0 +2013,5,5,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1434,-9,0,1610,-20,0,0 +2013,4,23,2,DL,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1900,-1,0,2211,-19,0,0 +2013,7,3,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1435,9,0,1545,2,0,0 +2013,9,22,7,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-5,0,2013,-10,0,0 +2013,10,22,2,DL,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1825,-2,0,2042,-8,0,0 +2013,8,11,7,WN,14679,San Diego International,San Diego,CA,14683,San Antonio International,San Antonio,TX,1500,96,1,1940,89,1,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,15304,Tampa International,Tampa,FL,1131,-1,0,1310,7,0,0 +2013,7,29,1,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,620,-1,0,717,21,1,0 +2013,8,9,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1300,-8,0,1345,-11,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1030,23,1,1235,19,1,0 +2013,10,16,3,WN,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1035,8,0,1240,3,0,0 +2013,5,28,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1555,-3,0,1834,-3,0,0 +2013,7,8,1,WN,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,730,-5,0,930,-16,0,0 +2013,9,24,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,34,1,1025,23,1,0 +2013,8,6,2,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1820,-6,0,1955,-1,0,0 +2013,5,12,7,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,855,0,0,1120,-1,0,0 +2013,9,2,1,MQ,13303,Miami International,Miami,FL,13931,Norfolk International,Norfolk,VA,2130,-6,0,2350,3,0,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,12889,McCarran International,Las Vegas,NV,1050,-1,0,1210,5,0,0 +2013,9,20,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13931,Norfolk International,Norfolk,VA,1740,54,1,1830,52,1,0 +2013,10,10,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,4,0,1525,-6,0,0 +2013,9,1,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1230,-5,0,1405,-14,0,0 +2013,8,25,7,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,715,9,0,945,-2,0,0 +2013,4,25,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1535,40,1,1655,26,1,0 +2013,7,29,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1230,1,0,1246,-6,0,0 +2013,5,30,4,WN,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1405,0,0,1525,13,0,0 +2013,4,4,4,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2030,-2,0,2259,-5,0,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,2114,28,1,2359,23,1,0 +2013,7,8,1,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1005,12,0,1258,7,0,0 +2013,9,21,6,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1100,-13,0,1400,-22,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,2009,-2,0,2129,-15,0,0 +2013,10,22,2,WN,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,655,-4,0,825,-12,0,0 +2013,5,6,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,715,0,0,827,-8,0,0 +2013,7,3,3,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1530,2,0,1620,-5,0,0 +2013,4,1,1,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1215,11,0,1435,17,1,0 +2013,5,29,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,810,1,0,1610,5,0,0 +2013,10,17,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,25,1,2135,43,1,0 +2013,10,28,1,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1525,-2,0,1640,4,0,0 +2013,7,18,4,EV,11618,Newark Liberty International,Newark,NJ,14492,Raleigh-Durham International,Raleigh/Durham,NC,1624,-5,0,1816,-18,0,0 +2013,9,13,5,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1815,-8,0,2050,-13,0,0 +2013,5,23,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1110,-1,0,1237,-11,0,0 +2013,4,21,7,US,11057,Charlotte Douglas International,Charlotte,NC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1429,20,1,1627,30,1,0 +2013,9,22,7,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1120,-5,0,1225,-8,0,0 +2013,7,30,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1520,-1,0,2040,-2,0,0 +2013,10,14,1,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,800,-7,0,920,-13,0,0 +2013,9,14,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1200,-6,0,1821,-28,0,0 +2013,5,29,3,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1632,-7,0,1731,-7,0,0 +2013,4,23,2,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1905,7,0,2135,11,0,0 +2013,6,25,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1850,0,0,1925,5,0,0 +2013,8,1,4,EV,12478,John F. Kennedy International,New York,NY,12264,Washington Dulles International,Washington,DC,600,-5,0,712,-15,0,0 +2013,5,23,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,600,2,0,720,-6,0,0 +2013,5,4,6,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1422,-10,0,1814,-8,0,0 +2013,5,1,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-3,0,1415,-7,0,0 +2013,10,18,5,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1640,-7,0,1939,-10,0,0 +2013,5,3,5,YV,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1805,0,,2025,0,1,1 +2013,6,11,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,-2,0,1200,-9,0,0 +2013,6,4,2,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1352,-10,0,1649,-11,0,0 +2013,5,15,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1330,-4,0,1845,-11,0,0 +2013,8,17,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1830,-1,0,2140,-22,0,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1640,-4,0,2015,0,0,0 +2013,6,9,7,AA,15016,Lambert-St. Louis International,St. Louis,MO,13303,Miami International,Miami,FL,1600,34,1,1950,29,1,0 +2013,4,1,1,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-5,0,1150,0,0,0 +2013,5,6,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1930,-5,0,2043,-9,0,0 +2013,4,20,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1255,0,0,1350,-4,0,0 +2013,8,19,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,952,-13,0,1120,-27,0,0 +2013,5,14,2,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1550,1,0,1905,0,0,0 +2013,6,20,4,US,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2225,-5,0,2345,-11,0,0 +2013,5,2,4,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1950,34,1,2050,40,1,0 +2013,7,26,5,UA,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2212,2,0,2350,11,0,0 +2013,4,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1800,237,1,2018,253,1,0 +2013,9,17,2,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,829,-10,0,1029,-28,0,0 +2013,10,28,1,DL,14635,Southwest Florida International,Fort Myers,FL,11433,Detroit Metro Wayne County,Detroit,MI,1048,-6,0,1336,-14,0,0 +2013,5,2,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,2006,-5,0,2152,0,0,0 +2013,8,25,7,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,2000,3,0,2055,-1,0,0 +2013,10,14,1,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1810,27,1,1920,32,1,0 +2013,9,18,3,WN,12451,Jacksonville International,Jacksonville,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1915,13,0,2110,16,1,0 +2013,8,28,3,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,610,0,0,725,-14,0,0 +2013,7,5,5,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1105,101,1,1301,100,1,0 +2013,6,30,7,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,2110,-2,0,2225,-14,0,0 +2013,7,19,5,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1400,19,1,1505,25,1,0 +2013,4,5,5,EV,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,822,-6,0,1124,-6,0,0 +2013,9,17,2,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1645,0,0,1850,-2,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,726,-7,0,900,-14,0,0 +2013,4,23,2,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,43,1,1845,41,1,0 +2013,9,13,5,EV,10693,Nashville International,Nashville,TN,12266,George Bush Intercontinental/Houston,Houston,TX,1807,-12,0,2013,-13,0,0 +2013,5,8,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,725,-10,0,1030,-14,0,0 +2013,5,30,4,UA,12264,Washington Dulles International,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1451,1,0,1549,48,1,0 +2013,8,31,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1050,24,1,1230,19,1,0 +2013,9,10,2,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,2030,-7,0,2147,-6,0,0 +2013,6,19,3,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,745,-7,0,840,-9,0,0 +2013,9,19,4,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,755,4,0,915,-4,0,0 +2013,7,28,7,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1550,8,0,1610,-5,0,0 +2013,4,23,2,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,700,-3,0,825,18,1,0 +2013,10,30,3,OO,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,757,-6,0,1035,-4,0,0 +2013,8,8,4,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1220,40,1,1306,41,1,0 +2013,9,21,6,AA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1700,-4,0,2025,-18,0,0 +2013,8,27,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1715,-2,0,1824,-10,0,0 +2013,7,23,2,B6,14635,Southwest Florida International,Fort Myers,FL,12478,John F. Kennedy International,New York,NY,1700,161,1,1958,198,1,0 +2013,4,11,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,1419,11,0,1552,16,1,0 +2013,7,27,6,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,950,6,0,1115,4,0,0 +2013,6,23,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,72,1,545,75,1,0 +2013,9,2,1,OO,14771,San Francisco International,San Francisco,CA,10423,Austin - Bergstrom International,Austin,TX,1035,36,1,1607,47,1,0 +2013,6,5,3,MQ,13303,Miami International,Miami,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,910,-7,0,1145,-18,0,0 +2013,9,9,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1035,-9,0,1203,2,0,0 +2013,4,13,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1145,3,0,1349,-1,0,0 +2013,6,16,7,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2015,1,0,2308,6,0,0 +2013,7,19,5,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1436,0,0,1619,9,0,0 +2013,9,4,3,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,2040,0,0,2350,2,0,0 +2013,8,12,1,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1125,1,0,1449,-8,0,0 +2013,6,19,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1825,10,0,1916,6,0,0 +2013,9,23,1,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1930,8,0,2040,-1,0,0 +2013,9,6,5,UA,14570,Reno/Tahoe International,Reno,NV,11292,Denver International,Denver,CO,1333,16,1,1642,18,1,0 +2013,6,21,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,630,-3,0,840,-1,0,0 +2013,8,6,2,B6,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,730,-1,0,1129,-7,0,0 +2013,8,18,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1135,2,0,1255,23,1,0 +2013,7,7,7,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-1,0,1106,-6,0,0 +2013,5,19,7,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1715,17,1,1913,9,0,0 +2013,10,2,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1559,56,1,1740,44,1,0 +2013,10,2,3,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1935,15,1,2035,15,1,0 +2013,6,27,4,OO,13930,Chicago O'Hare International,Chicago,IL,10423,Austin - Bergstrom International,Austin,TX,1200,23,1,1435,9,0,0 +2013,4,5,5,UA,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1004,-7,0,1453,-16,0,0 +2013,7,19,5,WN,11057,Charlotte Douglas International,Charlotte,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1825,28,1,1945,73,1,0 +2013,4,19,5,WN,11066,Port Columbus International,Columbus,OH,13232,Chicago Midway International,Chicago,IL,2035,10,0,2045,3,0,0 +2013,4,15,1,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,1350,5,0,1535,0,0,0 +2013,10,2,3,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1334,41,1,1925,15,1,0 +2013,10,11,5,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,700,0,0,840,-11,0,0 +2013,9,22,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14057,Portland International,Portland,OR,110,-1,0,545,-10,0,0 +2013,10,25,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1218,0,,1340,0,1,1 +2013,8,17,6,EV,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1255,-1,0,1621,-4,0,0 +2013,10,16,3,AA,15376,Tucson International,Tucson,AZ,13930,Chicago O'Hare International,Chicago,IL,1210,10,0,1730,-9,0,0 +2013,5,15,3,B6,14679,San Diego International,San Diego,CA,12478,John F. Kennedy International,New York,NY,1230,8,0,2102,8,0,0 +2013,5,17,5,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2130,-4,0,2250,-4,0,0 +2013,8,3,6,UA,14869,Salt Lake City International,Salt Lake City,UT,12264,Washington Dulles International,Washington,DC,700,-4,0,1308,-33,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2150,15,1,2255,12,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1805,14,0,1950,4,0,0 +2013,4,21,7,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,-2,0,1520,-5,0,0 +2013,4,10,3,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1431,-7,0,1544,-11,0,0 +2013,10,14,1,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,7,0,1818,7,0,0 +2013,10,3,4,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1205,-6,0,1511,-25,0,0 +2013,4,17,3,AA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1615,25,1,35,21,1,0 +2013,8,24,6,B6,12954,Long Beach Airport,Long Beach,CA,10721,Logan International,Boston,MA,2125,3,0,541,3,0,0 +2013,7,19,5,AS,10800,Bob Hope,Burbank,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-5,0,1317,3,0,0 +2013,4,18,4,OO,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1857,0,,1921,0,1,1 +2013,4,17,3,MQ,12953,LaGuardia,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,279,1,1000,275,1,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15376,Tucson International,Tucson,AZ,1940,-1,0,1955,-5,0,0 +2013,5,2,4,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1408,33,1,1659,25,1,0 +2013,4,21,7,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1509,-8,0,1638,-8,0,0 +2013,8,4,7,WN,12892,Los Angeles International,Los Angeles,CA,14570,Reno/Tahoe International,Reno,NV,1625,0,0,1735,-3,0,0 +2013,4,19,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1715,47,1,1830,60,1,0 +2013,8,31,6,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1919,-2,0,2159,-3,0,0 +2013,8,14,3,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1020,4,0,1135,-1,0,0 +2013,6,24,1,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1900,202,1,2017,211,1,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,2000,1,0,2110,-7,0,0 +2013,5,4,6,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,910,-9,0,1058,-10,0,0 +2013,7,6,6,AA,12889,McCarran International,Las Vegas,NV,13303,Miami International,Miami,FL,1115,-2,0,1915,-13,0,0 +2013,9,2,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1448,209,1,1653,193,1,0 +2013,9,12,4,MQ,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,845,-4,0,1110,1,0,0 +2013,6,19,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,935,-4,0,1030,-1,0,0 +2013,4,23,2,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,-3,0,5,-3,0,0 +2013,10,10,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,1505,19,1,1620,12,0,0 +2013,6,11,2,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1555,9,0,1820,-22,0,0 +2013,6,12,3,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,830,-2,0,1028,-3,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,940,0,0,1043,-1,0,0 +2013,7,22,1,DL,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2200,37,1,553,27,1,0 +2013,9,9,1,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1940,-2,0,2059,-8,0,0 +2013,4,18,4,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1225,13,0,1526,20,1,0 +2013,9,13,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1645,37,1,1810,42,1,0 +2013,5,10,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1745,247,1,1839,250,1,0 +2013,4,2,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,-3,0,1638,9,0,0 +2013,8,16,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1940,1,0,2207,-27,0,0 +2013,7,10,3,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,700,-8,0,1000,2,0,0 +2013,4,18,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,855,-1,0,1010,-15,0,0 +2013,7,31,3,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,1413,36,1,1813,26,1,0 +2013,8,3,6,DL,14683,San Antonio International,San Antonio,TX,11433,Detroit Metro Wayne County,Detroit,MI,705,-2,0,1110,9,0,0 +2013,10,30,3,AA,10423,Austin - Bergstrom International,Austin,TX,12478,John F. Kennedy International,New York,NY,1020,-9,0,1455,-21,0,0 +2013,8,31,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,854,4,0,1455,-10,0,0 +2013,8,4,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1805,1,0,2120,-15,0,0 +2013,9,19,4,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2000,-5,0,2136,-4,0,0 +2013,6,13,4,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2340,57,1,738,47,1,0 +2013,8,13,2,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1810,7,0,1935,-5,0,0 +2013,5,11,6,UA,13871,Eppley Airfield,Omaha,NE,11292,Denver International,Denver,CO,855,42,1,936,33,1,0 +2013,7,19,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1420,-8,0,1525,-4,0,0 +2013,10,15,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1345,9,0,1445,10,0,0 +2013,6,18,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1011,10,0,1153,5,0,0 +2013,10,19,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,0,0,1337,-13,0,0 +2013,9,10,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,730,35,1,931,33,1,0 +2013,8,10,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1420,-1,0,1614,-12,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1020,-1,0,1122,-8,0,0 +2013,5,31,5,9E,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,832,11,0,1018,15,1,0 +2013,8,24,6,B6,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,647,-3,0,950,12,0,0 +2013,10,2,3,B6,12478,John F. Kennedy International,New York,NY,13796,Metropolitan Oakland International,Oakland,CA,1710,0,0,2033,-27,0,0 +2013,8,4,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1635,8,0,1735,9,0,0 +2013,9,17,2,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,829,-5,0,1139,3,0,0 +2013,4,22,1,US,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1450,69,1,1656,74,1,0 +2013,8,20,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1300,42,1,1424,59,1,0 +2013,8,30,5,EV,13198,Kansas City International,Kansas City,MO,11042,Cleveland-Hopkins International,Cleveland,OH,1810,-5,0,2107,-14,0,0 +2013,6,19,3,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-1,0,1613,-1,0,0 +2013,10,20,7,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1504,-1,0,1726,-5,0,0 +2013,4,22,1,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1514,7,0,2200,-3,0,0 +2013,9,10,2,YV,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1245,0,0,1325,17,1,0 +2013,9,16,1,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1735,-9,0,2015,3,0,0 +2013,7,10,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1650,-2,0,1806,-8,0,0 +2013,10,14,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1120,45,1,1240,52,1,0 +2013,9,6,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,13232,Chicago Midway International,Chicago,IL,1415,4,0,1625,8,0,0 +2013,5,3,5,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,1440,11,0,1623,-16,0,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,755,-1,0,1006,-4,0,0 +2013,8,11,7,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2215,-5,0,620,-24,0,0 +2013,7,9,2,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1320,237,1,1450,231,1,0 +2013,4,16,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1730,3,0,1904,-1,0,0 +2013,4,24,3,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,950,1,0,1216,-11,0,0 +2013,9,23,1,MQ,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1445,-3,0,1740,2,0,0 +2013,6,12,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1249,-6,0,1343,-13,0,0 +2013,8,31,6,AS,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1940,-5,0,2209,-13,0,0 +2013,8,8,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1623,-1,0,1700,-6,0,0 +2013,4,14,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1345,25,1,1523,16,1,0 +2013,9,15,7,US,13495,Louis Armstrong New Orleans International,New Orleans,LA,11057,Charlotte Douglas International,Charlotte,NC,1100,-6,0,1349,1,0,0 +2013,7,11,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,635,-1,0,730,-10,0,0 +2013,6,15,6,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1250,-4,0,1448,-14,0,0 +2013,6,11,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,1848,-3,0,2132,2,0,0 +2013,5,16,4,WN,11259,Dallas Love Field,Dallas,TX,10140,Albuquerque International Sunport,Albuquerque,NM,620,0,0,710,-8,0,0 +2013,5,22,3,B6,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,832,-8,0,1032,-3,0,0 +2013,4,12,5,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,5,0,1600,6,0,0 +2013,10,5,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,750,-3,0,1340,-10,0,0 +2013,6,29,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,2200,-2,0,2356,-8,0,0 +2013,8,4,7,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,905,-4,0,1114,-16,0,0 +2013,7,16,2,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-5,0,617,9,0,0 +2013,5,3,5,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1705,-6,0,1834,-10,0,0 +2013,4,13,6,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1735,19,1,1920,-4,0,0 +2013,6,27,4,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1835,46,1,2144,80,1,0 +2013,9,15,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1600,0,0,1805,-10,0,0 +2013,9,17,2,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1105,-6,0,1445,14,0,0 +2013,7,10,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1042,71,1,1908,105,1,0 +2013,10,25,5,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,840,-4,0,1046,-24,0,0 +2013,7,2,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1241,-5,0,1340,-19,0,0 +2013,4,16,2,OO,13342,General Mitchell International,Milwaukee,WI,12266,George Bush Intercontinental/Houston,Houston,TX,515,-7,0,803,5,0,0 +2013,5,4,6,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1710,33,1,2005,15,1,0 +2013,8,1,4,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1820,-2,0,1940,-4,0,0 +2013,5,5,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,742,3,0,0 +2013,4,15,1,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,846,-5,0,1025,-8,0,0 +2013,4,25,4,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1900,9,0,2050,-6,0,0 +2013,4,28,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1340,18,1,1520,19,1,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12892,Los Angeles International,Los Angeles,CA,1531,21,1,1708,0,0,0 +2013,8,12,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1306,1,0,1514,7,0,0 +2013,4,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13796,Metropolitan Oakland International,Oakland,CA,1135,47,1,1340,30,1,0 +2013,4,7,7,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,915,-4,0,1055,-13,0,0 +2013,10,29,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1955,18,1,2105,21,1,0 +2013,5,6,1,F9,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1055,-4,0,1351,2,0,0 +2013,4,7,7,B6,12954,Long Beach Airport,Long Beach,CA,13796,Metropolitan Oakland International,Oakland,CA,1627,-6,0,1744,4,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1950,21,1,2330,24,1,0 +2013,8,21,3,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,1555,-2,0,1825,-2,0,0 +2013,10,21,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13204,Orlando International,Orlando,FL,1600,2,0,1930,-9,0,0 +2013,6,2,7,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,2000,-8,0,2020,-18,0,0 +2013,9,17,2,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1745,14,0,1944,44,1,0 +2013,4,12,5,AA,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1255,7,0,1620,-1,0,0 +2013,10,7,1,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1225,-2,0,1500,4,0,0 +2013,9,9,1,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,735,-2,0,901,-8,0,0 +2013,10,9,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1725,-1,0,1911,5,0,0 +2013,7,29,1,YV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1410,-7,0,1530,-29,0,0 +2013,4,24,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1243,0,0,1330,24,1,0 +2013,9,22,7,WN,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,850,2,0,1035,-2,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,945,23,1,1202,61,1,0 +2013,6,24,1,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,9,0,608,-6,0,0 +2013,4,8,1,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1605,1,0,1713,0,0,0 +2013,9,25,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1459,-3,0,1814,-2,0,0 +2013,4,2,2,AA,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,830,88,1,1110,87,1,0 +2013,4,13,6,WN,12892,Los Angeles International,Los Angeles,CA,15376,Tucson International,Tucson,AZ,1625,-4,0,1745,-11,0,0 +2013,4,5,5,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1429,30,1,1545,14,0,0 +2013,10,24,4,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1620,46,1,1740,37,1,0 +2013,5,10,5,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-6,0,1058,-14,0,0 +2013,9,27,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1025,-1,0,1115,-13,0,0 +2013,6,10,1,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-4,0,1748,-18,0,0 +2013,8,7,3,B6,14122,Pittsburgh International,Pittsburgh,PA,10721,Logan International,Boston,MA,2020,-1,0,2151,-9,0,0 +2013,8,7,3,DL,12953,LaGuardia,New York,NY,13244,Memphis International,Memphis,TN,1650,3,0,1859,-20,0,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,939,-2,0,1042,-10,0,0 +2013,10,27,7,EV,11618,Newark Liberty International,Newark,NJ,13851,Will Rogers World,Oklahoma City,OK,2010,68,1,2248,57,1,0 +2013,5,26,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-3,0,1016,-7,0,0 +2013,5,7,2,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,729,-2,0,845,-5,0,0 +2013,10,20,7,AA,15304,Tampa International,Tampa,FL,13930,Chicago O'Hare International,Chicago,IL,1630,2,0,1820,-10,0,0 +2013,9,10,2,UA,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,621,-2,0,930,-19,0,0 +2013,5,3,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1050,7,0,1215,31,1,0 +2013,4,18,4,YV,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,1430,8,0,1547,-7,0,0 +2013,8,23,5,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,840,-2,0,925,-7,0,0 +2013,7,18,4,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,655,-3,0,927,-19,0,0 +2013,10,7,1,EV,10792,Buffalo Niagara International,Buffalo,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1700,-1,0,1813,-8,0,0 +2013,5,8,3,EV,12264,Washington Dulles International,Washington,DC,10792,Buffalo Niagara International,Buffalo,NY,1700,104,1,1814,93,1,0 +2013,9,1,7,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1137,3,0,1305,1,0,0 +2013,5,6,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,1610,-1,0,1840,-14,0,0 +2013,10,22,2,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1220,-7,0,1355,-1,0,0 +2013,5,25,6,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1615,0,0,1851,0,0,0 +2013,10,9,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,900,-5,0,1045,-8,0,0 +2013,5,17,5,OO,14893,Sacramento International,Sacramento,CA,14869,Salt Lake City International,Salt Lake City,UT,1825,-9,0,2104,7,0,0 +2013,7,8,1,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,0,0,900,10,0,0 +2013,7,20,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,733,-7,0,1016,-13,0,0 +2013,9,8,7,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1000,-3,0,1248,-7,0,0 +2013,10,11,5,WN,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1330,7,0,1505,5,0,0 +2013,9,18,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,753,-4,0,1118,-8,0,0 +2013,7,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2015,-9,0,2225,1,0,0 +2013,8,18,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10140,Albuquerque International Sunport,Albuquerque,NM,810,6,0,1020,-10,0,0 +2013,8,5,1,EV,10693,Nashville International,Nashville,TN,11042,Cleveland-Hopkins International,Cleveland,OH,1715,30,1,1948,16,1,0 +2013,8,3,6,UA,11292,Denver International,Denver,CO,13830,Kahului Airport,Kahului,HI,911,-4,0,1228,-17,0,0 +2013,7,18,4,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1925,-5,0,2035,-11,0,0 +2013,4,11,4,WN,13198,Kansas City International,Kansas City,MO,10140,Albuquerque International Sunport,Albuquerque,NM,1615,-1,0,1725,-4,0,0 +2013,6,27,4,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,30,1,2135,48,1,0 +2013,9,21,6,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,843,59,1,944,56,1,0 +2013,4,23,2,DL,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-3,0,918,-19,0,0 +2013,7,7,7,US,11057,Charlotte Douglas International,Charlotte,NC,14100,Philadelphia International,Philadelphia,PA,725,60,1,859,71,1,0 +2013,8,17,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,722,-2,0,1039,-12,0,0 +2013,7,13,6,UA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,600,-3,0,911,-9,0,0 +2013,5,20,1,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1924,11,0,2100,-1,0,0 +2013,8,11,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1910,-3,0,2159,-3,0,0 +2013,6,21,5,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-3,0,1010,-13,0,0 +2013,8,4,7,9E,11066,Port Columbus International,Columbus,OH,12478,John F. Kennedy International,New York,NY,1332,-4,0,1528,1,0,0 +2013,9,24,2,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1105,1,0,1115,-3,0,0 +2013,10,29,2,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1206,-1,0,1750,-16,0,0 +2013,5,19,7,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,745,-2,0,1315,1,0,0 +2013,10,2,3,OO,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1540,-6,0,1630,-6,0,0 +2013,8,3,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,618,-5,0,715,-9,0,0 +2013,6,22,6,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,1255,17,1,1440,16,1,0 +2013,8,31,6,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-9,0,1434,-15,0,0 +2013,6,15,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,645,-10,0,808,-19,0,0 +2013,6,29,6,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,936,15,1,1208,19,1,0 +2013,4,28,7,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,715,0,0,1012,4,0,0 +2013,9,25,3,UA,15304,Tampa International,Tampa,FL,11618,Newark Liberty International,Newark,NJ,1412,-4,0,1659,-11,0,0 +2013,5,31,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13871,Eppley Airfield,Omaha,NE,1845,2,0,2030,35,1,0 +2013,6,15,6,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1940,-9,0,2154,-2,0,0 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1921,0,0,2130,-17,0,0 +2013,5,29,3,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,515,-11,0,635,-10,0,0 +2013,6,15,6,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,720,25,1,1204,10,0,0 +2013,7,15,1,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1725,14,0,2056,7,0,0 +2013,10,31,4,WN,13232,Chicago Midway International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,1210,-2,0,1525,-5,0,0 +2013,6,14,5,DL,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,656,-2,0,825,-12,0,0 +2013,10,10,4,MQ,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1455,11,0,1750,5,0,0 +2013,10,17,4,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,639,-15,0,722,-8,0,0 +2013,9,21,6,DL,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,1215,-6,0,1505,-1,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,1101,0,0,1302,-10,0,0 +2013,8,16,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1630,13,0,1750,4,0,0 +2013,5,31,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1730,4,0,2141,9,0,0 +2013,7,16,2,US,14100,Philadelphia International,Philadelphia,PA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1203,-6,0,1435,-1,0,0 +2013,8,23,5,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,-7,0,2039,-13,0,0 +2013,8,30,5,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,66,1,1905,54,1,0 +2013,10,28,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1235,-3,0,1500,-8,0,0 +2013,5,24,5,9E,13232,Chicago Midway International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,916,-12,0,1130,-19,0,0 +2013,5,6,1,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1940,155,1,2252,139,1,0 +2013,10,13,7,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1020,-2,0,1158,-11,0,0 +2013,10,31,4,OO,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,758,-5,0,1103,-17,0,0 +2013,6,1,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12889,McCarran International,Las Vegas,NV,2121,-4,0,2246,-2,0,0 +2013,9,5,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,1127,-4,0,1208,-4,0,0 +2013,10,27,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2200,38,1,2250,46,1,0 +2013,6,9,7,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,-1,0,1935,-14,0,0 +2013,4,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,15304,Tampa International,Tampa,FL,1355,14,0,1735,18,1,0 +2013,9,8,7,DL,11433,Detroit Metro Wayne County,Detroit,MI,12892,Los Angeles International,Los Angeles,CA,835,-3,0,1030,-2,0,0 +2013,6,20,4,UA,11618,Newark Liberty International,Newark,NJ,10423,Austin - Bergstrom International,Austin,TX,2050,0,0,2352,-28,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1620,-4,0,1820,-13,0,0 +2013,9,10,2,WN,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1730,-5,0,2005,4,0,0 +2013,4,1,1,US,14747,Seattle/Tacoma International,Seattle,WA,11057,Charlotte Douglas International,Charlotte,NC,2225,8,0,622,-6,0,0 +2013,6,27,4,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1355,2,0,1505,1,0,0 +2013,10,10,4,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1415,-4,0,1707,-6,0,0 +2013,4,25,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,640,-4,0,818,-3,0,0 +2013,10,27,7,VX,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1855,67,1,2240,77,1,0 +2013,8,30,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1420,-3,0,1751,-15,0,0 +2013,5,14,2,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1430,20,1,1600,10,0,0 +2013,9,22,7,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1627,-3,0,2002,-14,0,0 +2013,10,12,6,F9,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,1027,-1,0,1121,-2,0,0 +2013,5,23,4,DL,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,830,10,0,1120,4,0,0 +2013,8,12,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1845,-3,0,2132,-2,0,0 +2013,4,7,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1705,12,0,2045,-3,0,0 +2013,5,23,4,B6,10721,Logan International,Boston,MA,14747,Seattle/Tacoma International,Seattle,WA,2040,26,1,2337,10,0,0 +2013,4,22,1,WN,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1155,21,1,1430,36,1,0 +2013,8,16,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12889,McCarran International,Las Vegas,NV,715,-1,0,920,-10,0,0 +2013,8,18,7,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1736,30,1,2005,35,1,0 +2013,10,12,6,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,40,1,809,37,1,0 +2013,10,16,3,WN,13891,Ontario International,Ontario,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1840,-1,0,2005,-21,0,0 +2013,4,5,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13342,General Mitchell International,Milwaukee,WI,1600,-1,0,1621,0,0,0 +2013,4,3,3,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1144,353,1,1706,334,1,0 +2013,8,16,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,1125,-3,0,1237,-4,0,0 +2013,10,4,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1755,-3,0,0 +2013,9,22,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1459,-2,0,1651,14,0,0 +2013,7,26,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,68,1,2226,56,1,0 +2013,7,30,2,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,2138,77,1,2317,75,1,0 +2013,4,16,2,UA,11618,Newark Liberty International,Newark,NJ,11042,Cleveland-Hopkins International,Cleveland,OH,1617,-4,0,1759,-16,0,0 +2013,6,16,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1550,211,1,1815,203,1,0 +2013,4,26,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,629,-9,0,925,-12,0,0 +2013,6,13,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,605,-4,0,819,-21,0,0 +2013,6,27,4,DL,13204,Orlando International,Orlando,FL,13244,Memphis International,Memphis,TN,1209,-6,0,1316,-9,0,0 +2013,4,11,4,EV,10792,Buffalo Niagara International,Buffalo,NY,11618,Newark Liberty International,Newark,NJ,1147,98,1,1315,89,1,0 +2013,5,30,4,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1025,-2,0,1130,-7,0,0 +2013,9,6,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12339,Indianapolis International,Indianapolis,IN,2038,-7,0,2358,-11,0,0 +2013,8,3,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12191,William P Hobby,Houston,TX,1725,29,1,1940,5,0,0 +2013,5,9,4,OO,10423,Austin - Bergstrom International,Austin,TX,12892,Los Angeles International,Los Angeles,CA,600,-4,0,724,-17,0,0 +2013,5,7,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15304,Tampa International,Tampa,FL,845,-4,0,945,-12,0,0 +2013,10,31,4,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,1900,-5,0,2131,2,0,0 +2013,7,17,3,FL,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-5,0,1020,1,0,0 +2013,10,20,7,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1005,-6,0,1237,-19,0,0 +2013,8,6,2,US,14100,Philadelphia International,Philadelphia,PA,12889,McCarran International,Las Vegas,NV,1124,-6,0,1333,8,0,0 +2013,4,17,3,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1935,49,1,2045,40,1,0 +2013,4,2,2,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-1,0,1613,-9,0,0 +2013,10,13,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1705,36,1,1825,24,1,0 +2013,5,24,5,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1230,-1,0,1506,-2,0,0 +2013,8,27,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1250,-7,0,1410,-11,0,0 +2013,7,11,4,AS,14057,Portland International,Portland,OR,10299,Ted Stevens Anchorage International,Anchorage,AK,1840,-2,0,2113,-5,0,0 +2013,4,9,2,B6,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,2000,4,0,2238,25,1,0 +2013,6,10,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1605,49,1,1742,33,1,0 +2013,4,13,6,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,1200,4,0,1330,-4,0,0 +2013,9,15,7,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1605,-8,0,1811,-7,0,0 +2013,4,25,4,WN,11066,Port Columbus International,Columbus,OH,11292,Denver International,Denver,CO,950,-1,0,1050,17,1,0 +2013,7,6,6,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1225,-5,0,1358,-19,0,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,740,-4,0,1200,-34,0,0 +2013,5,21,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,1115,-3,0,1225,-16,0,0 +2013,7,10,3,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,700,-10,0,900,38,1,0 +2013,5,18,6,EV,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,943,-5,0,1118,-30,0,0 +2013,8,20,2,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,1540,19,1,1825,-20,0,0 +2013,10,9,3,WN,13198,Kansas City International,Kansas City,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1100,-3,0,1220,-6,0,0 +2013,9,19,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1005,1,0,1110,-7,0,0 +2013,9,17,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1600,-3,0,1830,0,0,0 +2013,5,4,6,WN,13232,Chicago Midway International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,850,1,0,1140,-3,0,0 +2013,6,20,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,1340,0,0,1510,-22,0,0 +2013,5,14,2,AA,11292,Denver International,Denver,CO,13303,Miami International,Miami,FL,753,-2,0,1340,-11,0,0 +2013,9,9,1,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1702,5,0,1940,-6,0,0 +2013,10,7,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1515,11,0,1745,6,0,0 +2013,4,3,3,DL,14771,San Francisco International,San Francisco,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1445,-5,0,2025,-15,0,0 +2013,4,14,7,WN,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,730,-4,0,1045,-36,0,0 +2013,8,15,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,1130,-8,0,1304,-18,0,0 +2013,9,28,6,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1658,-1,0,1826,-9,0,0 +2013,8,15,4,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,805,1,0,930,4,0,0 +2013,10,3,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1000,1,0,1115,-9,0,0 +2013,9,27,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,725,-2,0,1047,10,0,0 +2013,7,16,2,YV,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1629,-4,0,1937,-16,0,0 +2013,6,22,6,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-7,0,1237,-19,0,0 +2013,6,17,1,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-4,0,915,7,0,0 +2013,4,6,6,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,650,-1,0,1245,-9,0,0 +2013,10,21,1,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,645,1,0,800,-3,0,0 +2013,7,20,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1446,-3,0,1630,-14,0,0 +2013,7,3,3,MQ,13303,Miami International,Miami,FL,14524,Richmond International,Richmond,VA,2100,-1,0,2325,4,0,0 +2013,5,3,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2115,7,0,544,-7,0,0 +2013,9,21,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1830,-1,0,2145,-2,0,0 +2013,6,29,6,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,825,0,0,1125,-16,0,0 +2013,9,22,7,WN,12191,William P Hobby,Houston,TX,12339,Indianapolis International,Indianapolis,IN,855,-2,0,1210,-14,0,0 +2013,4,18,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,-4,0,1409,-6,0,0 +2013,7,19,5,MQ,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1455,-4,0,1635,32,1,0 +2013,4,3,3,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1515,-6,0,1740,16,1,0 +2013,10,11,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,950,-3,0,1120,-16,0,0 +2013,10,23,3,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,1320,60,1,1440,63,1,0 +2013,5,28,2,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1550,162,1,1909,176,1,0 +2013,4,27,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,1420,-5,0,1714,-23,0,0 +2013,9,10,2,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1453,19,1,1811,-21,0,0 +2013,7,5,5,UA,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,545,-4,0,804,5,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1857,8,0,2027,-18,0,0 +2013,8,19,1,FL,13342,General Mitchell International,Milwaukee,WI,15304,Tampa International,Tampa,FL,1415,-5,0,1755,-10,0,0 +2013,6,10,1,F9,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,625,-7,0,942,1,0,0 +2013,8,8,4,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1220,-2,0,1506,-8,0,0 +2013,6,1,6,AA,12478,John F. Kennedy International,New York,NY,14679,San Diego International,San Diego,CA,1725,1,0,2040,-12,0,0 +2013,4,22,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1105,4,0,0 +2013,7,14,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,910,-2,0,1233,6,0,0 +2013,10,4,5,WN,13342,General Mitchell International,Milwaukee,WI,12892,Los Angeles International,Los Angeles,CA,750,0,0,1025,-4,0,0 +2013,9,21,6,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,0,0,1038,-15,0,0 +2013,9,12,4,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1900,9,0,2010,8,0,0 +2013,7,11,4,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-5,0,1344,-10,0,0 +2013,9,23,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,824,-4,0,1020,-13,0,0 +2013,8,30,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14893,Sacramento International,Sacramento,CA,730,-2,0,850,-6,0,0 +2013,6,30,7,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,600,7,0,733,2,0,0 +2013,9,30,1,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,-1,0,2000,-3,0,0 +2013,6,17,1,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,1245,-4,0,1416,-21,0,0 +2013,8,6,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1225,0,,1345,0,1,1 +2013,7,2,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1252,0,0,1408,-10,0,0 +2013,8,13,2,YV,11042,Cleveland-Hopkins International,Cleveland,OH,11057,Charlotte Douglas International,Charlotte,NC,1345,-1,0,1516,-3,0,0 +2013,10,20,7,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1725,0,0,1900,7,0,0 +2013,8,1,4,WN,14679,San Diego International,San Diego,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,705,-1,0,1510,2,0,0 +2013,8,2,5,WN,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1530,0,0,1700,-5,0,0 +2013,8,20,2,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1550,12,0,1640,4,0,0 +2013,4,23,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,600,-11,0,859,-17,0,0 +2013,5,2,4,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1653,13,0,1945,2,0,0 +2013,6,15,6,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1237,-6,0,1439,-8,0,0 +2013,4,26,5,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,600,-7,0,820,-6,0,0 +2013,9,18,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10423,Austin - Bergstrom International,Austin,TX,1911,-2,0,2032,-7,0,0 +2013,4,12,5,WN,11292,Denver International,Denver,CO,14831,Norman Y. Mineta San Jose International,San Jose,CA,1135,-2,0,1320,-17,0,0 +2013,6,26,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12173,Honolulu International,Honolulu,HI,1751,15,1,2045,38,1,0 +2013,7,22,1,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1250,13,0,1425,5,0,0 +2013,10,29,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1531,-5,0,1816,-22,0,0 +2013,10,1,2,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,955,-4,0,1218,-2,0,0 +2013,9,24,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1040,-4,0,1250,-6,0,0 +2013,10,13,7,FL,12339,Indianapolis International,Indianapolis,IN,13204,Orlando International,Orlando,FL,1700,4,0,1915,-7,0,0 +2013,8,21,3,EV,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,1434,-10,0,1625,-8,0,0 +2013,10,25,5,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1121,19,1,1300,41,1,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1235,9,0,2010,-1,0,0 +2013,5,9,4,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,626,-2,0,1128,-11,0,0 +2013,7,16,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,53,1,2025,64,1,0 +2013,10,11,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1012,0,0,1049,-9,0,0 +2013,6,24,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1510,2,0,2234,3,0,0 +2013,6,5,3,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1845,-6,0,2310,7,0,0 +2013,7,2,2,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1540,-4,0,1741,31,1,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11278,Ronald Reagan Washington National,Washington,DC,849,-4,0,1250,-21,0,0 +2013,5,3,5,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,847,-5,0,1724,-4,0,0 +2013,7,16,2,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1115,-2,0,1304,-7,0,0 +2013,6,1,6,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,625,0,,925,0,1,1 +2013,9,9,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,0,0,1518,0,0,0 +2013,9,21,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1740,-3,0,1955,-17,0,0 +2013,10,15,2,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2010,-4,0,2223,-4,0,0 +2013,6,2,7,EV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1606,69,1,1831,66,1,0 +2013,8,23,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1127,78,1,1255,62,1,0 +2013,4,17,3,AA,13303,Miami International,Miami,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1005,70,1,1210,81,1,0 +2013,6,10,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1116,-7,0,1151,-7,0,0 +2013,8,30,5,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-6,0,648,-17,0,0 +2013,7,23,2,DL,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1507,0,0,1639,-9,0,0 +2013,9,30,1,VX,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,1420,12,0,2230,1,0,0 +2013,9,11,3,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,18,1,1655,28,1,0 +2013,8,17,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1540,0,0,1557,-7,0,0 +2013,5,12,7,MQ,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,750,-6,0,1100,10,0,0 +2013,9,19,4,AA,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1050,1,0,1315,28,1,0 +2013,10,20,7,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1007,5,0,1355,-12,0,0 +2013,7,10,3,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1310,0,,1520,0,1,1 +2013,9,11,3,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,-5,0,1430,-21,0,0 +2013,8,13,2,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,61,1,1629,58,1,0 +2013,7,7,7,EV,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,545,-5,0,658,-28,0,0 +2013,10,6,7,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-5,0,525,-9,0,0 +2013,6,12,3,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1750,14,0,2019,21,1,0 +2013,6,23,7,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-9,0,1040,-5,0,0 +2013,4,7,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1030,2,0,1157,7,0,0 +2013,5,22,3,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1649,-8,0,1821,-15,0,0 +2013,6,7,5,UA,14869,Salt Lake City International,Salt Lake City,UT,12266,George Bush Intercontinental/Houston,Houston,TX,633,42,1,1038,31,1,0 +2013,7,30,2,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1030,-7,0,1243,-11,0,0 +2013,5,10,5,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1500,3,0,1705,1,0,0 +2013,6,22,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,0,0,1008,-18,0,0 +2013,9,30,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,1130,-4,0,1315,15,1,0 +2013,9,9,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2000,-1,0,2136,-1,0,0 +2013,8,30,5,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1000,-2,0,1113,5,0,0 +2013,9,20,5,AS,12892,Los Angeles International,Los Angeles,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,1130,-5,0,1615,-37,0,0 +2013,8,10,6,AS,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,700,-5,0,919,3,0,0 +2013,9,24,2,EV,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1113,-8,0,1409,-10,0,0 +2013,5,9,4,US,11278,Ronald Reagan Washington National,Washington,DC,14679,San Diego International,San Diego,CA,850,4,0,1124,-7,0,0 +2013,7,19,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,910,2,0,1010,-1,0,0 +2013,6,19,3,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1825,0,0,2115,-7,0,0 +2013,9,30,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1247,-4,0,1423,-18,0,0 +2013,8,29,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2056,1,0,2202,-3,0,0 +2013,5,17,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,1,0,630,-3,0,0 +2013,8,6,2,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,1845,48,1,2125,36,1,0 +2013,4,14,7,WN,12191,William P Hobby,Houston,TX,14683,San Antonio International,San Antonio,TX,2145,10,0,2235,11,0,0 +2013,9,13,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,825,6,0,940,8,0,0 +2013,10,26,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,2010,-6,0,2202,1,0,0 +2013,7,22,1,9E,14100,Philadelphia International,Philadelphia,PA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,159,1,1935,0,1,1 +2013,7,14,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1254,31,1,1909,16,1,0 +2013,8,10,6,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,9,0,2119,13,0,0 +2013,10,14,1,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2050,-12,0,2237,-13,0,0 +2013,7,8,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,1241,1,0,1516,-6,0,0 +2013,6,24,1,DL,14679,San Diego International,San Diego,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-4,0,1620,-17,0,0 +2013,7,30,2,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1850,-3,0,2020,34,1,0 +2013,5,30,4,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-8,0,2103,-14,0,0 +2013,9,26,4,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,830,-2,0,1010,3,0,0 +2013,6,22,6,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1639,8,0,2011,-8,0,0 +2013,7,2,2,UA,14492,Raleigh-Durham International,Raleigh/Durham,NC,12264,Washington Dulles International,Washington,DC,1936,41,1,2045,41,1,0 +2013,5,5,7,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-2,0,827,-21,0,0 +2013,5,11,6,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1450,-3,0,1624,-21,0,0 +2013,7,28,7,EV,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,610,-3,0,715,-23,0,0 +2013,4,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,66,1,2259,92,1,0 +2013,6,21,5,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,905,-7,0,1645,0,0,0 +2013,10,11,5,WN,14679,San Diego International,San Diego,CA,12889,McCarran International,Las Vegas,NV,1925,24,1,2035,18,1,0 +2013,8,27,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,-5,0,1558,-2,0,0 +2013,10,12,6,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1905,3,0,2129,-16,0,0 +2013,9,7,6,US,10529,Bradley International,Hartford,CT,11057,Charlotte Douglas International,Charlotte,NC,800,-10,0,1014,-19,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1455,7,0,1612,3,0,0 +2013,6,25,2,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2045,75,1,2330,93,1,0 +2013,6,16,7,OO,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1918,134,1,2055,125,1,0 +2013,8,8,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1740,15,1,1935,20,1,0 +2013,7,7,7,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,925,0,0,1040,-7,0,0 +2013,8,17,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,1111,-9,0,1638,-4,0,0 +2013,10,4,5,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,905,-5,0,1035,7,0,0 +2013,7,9,2,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,607,4,0,827,0,0,0 +2013,5,9,4,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,1920,10,0,2040,5,0,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13871,Eppley Airfield,Omaha,NE,1800,-4,0,2225,-9,0,0 +2013,6,6,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1845,21,1,1955,31,1,0 +2013,6,27,4,EV,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1010,32,1,1325,15,1,0 +2013,4,2,2,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1645,1,0,1910,-10,0,0 +2013,6,4,2,WN,14679,San Diego International,San Diego,CA,11292,Denver International,Denver,CO,1025,29,1,1345,7,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,3,0,1355,3,0,0 +2013,9,11,3,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1535,22,1,1655,42,1,0 +2013,6,28,5,US,14524,Richmond International,Richmond,VA,11057,Charlotte Douglas International,Charlotte,NC,1609,-8,0,1721,-11,0,0 +2013,7,21,7,EV,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,2020,35,1,2322,28,1,0 +2013,10,21,1,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,830,-1,0,1335,11,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,830,19,1,1335,18,1,0 +2013,4,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1220,19,1,1435,23,1,0 +2013,5,31,5,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1004,38,1,1320,31,1,0 +2013,4,24,3,FL,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1535,15,1,1745,8,0,0 +2013,6,24,1,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1450,-2,0,1600,-13,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,6,0,1911,11,0,0 +2013,9,16,1,MQ,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1940,-7,0,2125,-31,0,0 +2013,9,1,7,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1245,1,0,1511,10,0,0 +2013,7,7,7,9E,14307,Theodore Francis Green State,Providence,RI,11433,Detroit Metro Wayne County,Detroit,MI,1110,-6,0,1315,-10,0,0 +2013,9,17,2,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,15,1,1045,10,0,0 +2013,10,28,1,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,605,6,0,756,-2,0,0 +2013,8,29,4,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,735,39,1,929,40,1,0 +2013,7,26,5,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1145,-4,0,1432,-7,0,0 +2013,6,28,5,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1825,179,1,2120,175,1,0 +2013,5,2,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1346,2,0,1516,-13,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1245,-4,0,1718,-14,0,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,928,0,0,1809,-4,0,0 +2013,5,31,5,WN,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,2000,-2,0,2230,-2,0,0 +2013,5,31,5,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1735,3,0,1900,-3,0,0 +2013,4,15,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,950,-4,0,1151,-10,0,0 +2013,10,23,3,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1100,2,0,1432,24,1,0 +2013,6,23,7,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1800,26,1,1903,15,1,0 +2013,4,22,1,AA,11292,Denver International,Denver,CO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1155,13,0,1455,18,1,0 +2013,10,17,4,B6,14492,Raleigh-Durham International,Raleigh/Durham,NC,10721,Logan International,Boston,MA,2050,56,1,2237,49,1,0 +2013,4,5,5,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,-4,0,1925,-16,0,0 +2013,9,23,1,DL,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1345,-4,0,1600,2,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1935,14,0,2155,22,1,0 +2013,8,3,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1505,15,1,1720,12,0,0 +2013,7,15,1,DL,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1130,-4,0,2003,-15,0,0 +2013,6,29,6,DL,12889,McCarran International,Las Vegas,NV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1235,3,0,1936,-1,0,0 +2013,5,18,6,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1640,-7,0,1922,-7,0,0 +2013,6,15,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,2112,5,0,2228,-3,0,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,13931,Norfolk International,Norfolk,VA,1727,-2,0,1918,-5,0,0 +2013,8,27,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1720,0,0,1845,-7,0,0 +2013,4,24,3,UA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1030,67,1,1604,72,1,0 +2013,4,18,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1010,-3,0,1243,-16,0,0 +2013,4,3,3,WN,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,0,0,2120,-3,0,0 +2013,9,6,5,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,847,-4,0,0 +2013,9,9,1,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-7,0,1020,-15,0,0 +2013,9,29,7,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,801,109,1,1330,92,1,0 +2013,6,20,4,WN,13796,Metropolitan Oakland International,Oakland,CA,13198,Kansas City International,Kansas City,MO,650,2,0,1210,-13,0,0 +2013,6,28,5,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1254,190,1,2058,214,1,0 +2013,10,13,7,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,1805,5,0,1930,4,0,0 +2013,9,8,7,HA,12173,Honolulu International,Honolulu,HI,12889,McCarran International,Las Vegas,NV,1510,-11,0,2345,-7,0,0 +2013,5,29,3,FL,12339,Indianapolis International,Indianapolis,IN,14635,Southwest Florida International,Fort Myers,FL,710,-9,0,925,-11,0,0 +2013,10,4,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1605,2,0,1830,5,0,0 +2013,8,22,4,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,59,-5,0,629,-3,0,0 +2013,7,22,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,905,-13,0,1020,-13,0,0 +2013,8,8,4,9E,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1730,0,,1900,0,1,1 +2013,5,12,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1905,-4,0,2100,-8,0,0 +2013,8,23,5,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,600,-2,0,1310,13,0,0 +2013,9,20,5,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,645,-3,0,937,-23,0,0 +2013,5,5,7,FL,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,645,-4,0,915,-18,0,0 +2013,6,21,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,14679,San Diego International,San Diego,CA,1825,0,0,2015,-2,0,0 +2013,8,10,6,YV,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1925,-5,0,2050,-4,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14747,Seattle/Tacoma International,Seattle,WA,1740,95,1,1955,78,1,0 +2013,8,12,1,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-5,0,2215,3,0,0 +2013,9,1,7,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,2005,7,0,2115,-8,0,0 +2013,4,6,6,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,-5,0,2058,-8,0,0 +2013,8,14,3,WN,14893,Sacramento International,Sacramento,CA,10800,Bob Hope,Burbank,CA,1310,0,0,1420,-3,0,0 +2013,5,13,1,AA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1020,1,0,1625,9,0,0 +2013,7,19,5,EV,13198,Kansas City International,Kansas City,MO,12266,George Bush Intercontinental/Houston,Houston,TX,1813,73,1,2012,73,1,0 +2013,5,27,1,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1725,0,0,1904,-23,0,0 +2013,6,22,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,840,-1,0,1345,1,0,0 +2013,10,4,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,930,43,1,1055,41,1,0 +2013,7,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,910,21,1,1155,26,1,0 +2013,5,14,2,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1050,10,0,1555,23,1,0 +2013,7,10,3,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,2155,105,1,43,129,1,0 +2013,9,9,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,600,-8,0,835,-11,0,0 +2013,9,30,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1150,0,0,1340,3,0,0 +2013,5,3,5,9E,10721,Logan International,Boston,MA,13931,Norfolk International,Norfolk,VA,842,1,0,1020,-9,0,0 +2013,7,28,7,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2325,10,0,525,1,0,0 +2013,6,11,2,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1130,0,0,1250,-2,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,10693,Nashville International,Nashville,TN,1020,-3,0,1555,-9,0,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1939,1,0,2143,-17,0,0 +2013,4,12,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,2130,-1,0,2311,0,0,0 +2013,4,30,2,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1530,-7,0,1715,-1,0,0 +2013,5,23,4,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1220,7,0,1345,25,1,0 +2013,10,14,1,OO,14057,Portland International,Portland,OR,13891,Ontario International,Ontario,CA,640,3,0,855,-11,0,0 +2013,9,9,1,YV,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1934,-3,0,2053,-10,0,0 +2013,5,4,6,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1345,30,1,1615,18,1,0 +2013,5,27,1,F9,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,605,-6,0,722,-5,0,0 +2013,10,16,3,WN,11066,Port Columbus International,Columbus,OH,12889,McCarran International,Las Vegas,NV,710,1,0,845,-3,0,0 +2013,5,16,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,1935,-5,0,2343,-14,0,0 +2013,7,6,6,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,2355,-1,0,545,-11,0,0 +2013,8,18,7,WN,13796,Metropolitan Oakland International,Oakland,CA,13232,Chicago Midway International,Chicago,IL,955,16,1,1600,9,0,0 +2013,7,25,4,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1125,10,0,1700,-14,0,0 +2013,10,10,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,10721,Logan International,Boston,MA,1935,34,1,2125,34,1,0 +2013,9,17,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1945,-10,0,2214,-1,0,0 +2013,6,4,2,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1437,-4,0,1807,-13,0,0 +2013,5,1,3,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,-7,0,1230,-25,0,0 +2013,8,7,3,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1700,-5,0,1829,-25,0,0 +2013,4,26,5,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1118,-6,0,1203,4,0,0 +2013,8,31,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,910,-1,0,1045,-11,0,0 +2013,10,31,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1910,16,1,2030,16,1,0 +2013,4,6,6,MQ,13930,Chicago O'Hare International,Chicago,IL,12451,Jacksonville International,Jacksonville,FL,815,-5,0,1135,-15,0,0 +2013,7,7,7,OO,14771,San Francisco International,San Francisco,CA,14893,Sacramento International,Sacramento,CA,2012,0,,2100,0,1,1 +2013,9,24,2,UA,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1650,-6,0,1918,-12,0,0 +2013,8,28,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1410,15,1,1605,-2,0,0 +2013,8,27,2,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1800,0,0,1900,0,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1135,24,1,1235,24,1,0 +2013,8,24,6,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,2241,-3,0,2350,-5,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1715,95,1,2140,94,1,0 +2013,4,4,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1125,-2,0,1235,-6,0,0 +2013,5,7,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1704,-4,0,2227,0,0,0 +2013,6,29,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11259,Dallas Love Field,Dallas,TX,1545,58,1,1725,50,1,0 +2013,4,8,1,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1005,0,0,1115,-3,0,0 +2013,10,12,6,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,700,-7,0,845,-14,0,0 +2013,8,19,1,AS,11278,Ronald Reagan Washington National,Washington,DC,12892,Los Angeles International,Los Angeles,CA,900,-13,0,1122,-1,0,0 +2013,5,19,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1750,-1,0,1815,-12,0,0 +2013,6,22,6,WN,10792,Buffalo Niagara International,Buffalo,NY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1745,21,1,1850,22,1,0 +2013,10,30,3,WN,11259,Dallas Love Field,Dallas,TX,15016,Lambert-St. Louis International,St. Louis,MO,1455,7,0,1630,-4,0,0 +2013,5,19,7,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14747,Seattle/Tacoma International,Seattle,WA,1910,0,0,2115,-10,0,0 +2013,7,8,1,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,2157,37,1,2250,23,1,0 +2013,4,26,5,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,-10,0,928,-12,0,0 +2013,7,18,4,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1800,-5,0,35,-5,0,0 +2013,10,11,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14307,Theodore Francis Green State,Providence,RI,1345,1,0,1638,-1,0,0 +2013,10,1,2,UA,13930,Chicago O'Hare International,Chicago,IL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1311,29,1,1609,23,1,0 +2013,5,25,6,OO,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1856,3,0,2140,-4,0,0 +2013,10,20,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1635,91,1,1825,73,1,0 +2013,7,2,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,1526,3,0,1654,7,0,0 +2013,10,17,4,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1542,-1,0,1814,-1,0,0 +2013,6,14,5,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,715,-3,0,1046,-2,0,0 +2013,10,14,1,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2010,-4,0,2217,0,0,0 +2013,9,11,3,FL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1301,-3,0,1536,4,0,0 +2013,5,15,3,OO,13891,Ontario International,Ontario,CA,14057,Portland International,Portland,OR,935,-19,0,1148,-13,0,0 +2013,6,16,7,EV,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1354,0,0,1425,-1,0,0 +2013,7,22,1,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1225,41,1,1255,54,1,0 +2013,10,12,6,EV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1658,-4,0,1826,-7,0,0 +2013,7,5,5,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1040,0,0,1905,-1,0,0 +2013,6,28,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1605,59,1,1705,61,1,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2216,-3,0,2342,1,0,0 +2013,5,7,2,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,700,-4,0,805,-24,0,0 +2013,10,30,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11066,Port Columbus International,Columbus,OH,1615,-2,0,1906,0,0,0 +2013,7,29,1,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,2052,-7,0,22,-23,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,905,4,0,1240,4,0,0 +2013,5,8,3,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,1850,29,1,2110,30,1,0 +2013,5,28,2,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,11292,Denver International,Denver,CO,1800,13,0,1940,29,1,0 +2013,7,11,4,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2010,-9,0,2135,-12,0,0 +2013,9,10,2,EV,13851,Will Rogers World,Oklahoma City,OK,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-4,0,1301,-4,0,0 +2013,6,13,4,WN,14122,Pittsburgh International,Pittsburgh,PA,13232,Chicago Midway International,Chicago,IL,2055,67,1,2120,54,1,0 +2013,7,27,6,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1635,1,0,2000,1,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12953,LaGuardia,New York,NY,600,0,,1025,0,1,1 +2013,6,3,1,DL,15304,Tampa International,Tampa,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,835,-4,0,1045,4,0,0 +2013,7,2,2,DL,10693,Nashville International,Nashville,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,0,0,1923,-15,0,0 +2013,8,27,2,VX,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1145,2,0,1645,0,0,0 +2013,8,13,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1000,-1,0,1100,-8,0,0 +2013,6,15,6,EV,14524,Richmond International,Richmond,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,630,24,1,822,14,0,0 +2013,4,22,1,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1540,137,1,1855,138,1,0 +2013,8,21,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,12954,Long Beach Airport,Long Beach,CA,1015,-1,0,1132,6,0,0 +2013,8,22,4,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,34,1,2055,57,1,0 +2013,8,18,7,EV,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,-6,0,1831,6,0,0 +2013,4,24,3,AA,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1805,130,1,1935,152,1,0 +2013,6,15,6,US,11057,Charlotte Douglas International,Charlotte,NC,12892,Los Angeles International,Los Angeles,CA,1955,-2,0,2148,16,1,0 +2013,4,11,4,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,1635,-10,0,1817,-21,0,0 +2013,7,10,3,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,12,0,815,25,1,0 +2013,4,7,7,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,1930,0,0,2211,-16,0,0 +2013,8,5,1,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1422,7,0,1540,2,0,0 +2013,6,12,3,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1240,3,0,0 +2013,8,20,2,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1140,12,0,1250,9,0,0 +2013,8,26,1,YV,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,2132,11,0,2344,-1,0,0 +2013,10,4,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,1935,-6,0,2035,-2,0,0 +2013,8,5,1,UA,10721,Logan International,Boston,MA,11292,Denver International,Denver,CO,1011,-1,0,1241,6,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1235,2,0,1510,-6,0,0 +2013,7,19,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,2050,35,1,2205,34,1,0 +2013,7,20,6,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12889,McCarran International,Las Vegas,NV,831,4,0,1005,-10,0,0 +2013,6,2,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,2,0,1730,-10,0,0 +2013,9,15,7,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1420,3,0,2015,-8,0,0 +2013,8,6,2,DL,13204,Orlando International,Orlando,FL,11433,Detroit Metro Wayne County,Detroit,MI,1400,-9,0,1643,-16,0,0 +2013,4,5,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,1556,107,1,1719,102,1,0 +2013,7,16,2,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1730,91,1,1820,90,1,0 +2013,10,23,3,OO,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1625,1,0,2156,-12,0,0 +2013,4,22,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,13796,Metropolitan Oakland International,Oakland,CA,1655,35,1,1820,35,1,0 +2013,6,29,6,US,14635,Southwest Florida International,Fort Myers,FL,14100,Philadelphia International,Philadelphia,PA,600,-5,0,841,-11,0,0 +2013,7,27,6,YV,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1431,96,1,1525,84,1,0 +2013,5,11,6,OO,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1017,-4,0,1235,-12,0,0 +2013,8,16,5,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1555,-2,0,17,-3,0,0 +2013,9,12,4,B6,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2054,142,1,2359,151,1,0 +2013,4,19,5,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1535,-6,0,1907,-14,0,0 +2013,9,28,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1325,0,0,1455,0,0,0 +2013,10,8,2,WN,11292,Denver International,Denver,CO,11433,Detroit Metro Wayne County,Detroit,MI,1015,2,0,1500,3,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2015,-3,0,2115,-12,0,0 +2013,7,23,2,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2030,32,1,2300,20,1,0 +2013,4,19,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1351,31,1,1653,26,1,0 +2013,5,24,5,UA,10721,Logan International,Boston,MA,13930,Chicago O'Hare International,Chicago,IL,1723,7,0,1902,-4,0,0 +2013,9,24,2,9E,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,1135,-10,0,1313,-26,0,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11278,Ronald Reagan Washington National,Washington,DC,1300,-3,0,1645,-14,0,0 +2013,9,28,6,WN,10423,Austin - Bergstrom International,Austin,TX,14679,San Diego International,San Diego,CA,1405,1,0,1500,-4,0,0 +2013,4,23,2,MQ,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1135,-8,0,1155,-11,0,0 +2013,9,30,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1455,-6,0,1542,-10,0,0 +2013,6,20,4,WN,11433,Detroit Metro Wayne County,Detroit,MI,15016,Lambert-St. Louis International,St. Louis,MO,900,-3,0,935,-2,0,0 +2013,9,11,3,FL,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1230,-5,0,1445,59,1,0 +2013,4,15,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,2010,3,0,2345,2,0,0 +2013,8,2,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,2055,-1,0,2155,-7,0,0 +2013,6,23,7,FL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1904,14,0,2013,22,1,0 +2013,4,26,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1500,0,0,2040,-13,0,0 +2013,4,7,7,WN,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1345,-3,0,1510,2,0,0 +2013,4,30,2,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1705,-5,0,1843,3,0,0 +2013,6,3,1,US,14869,Salt Lake City International,Salt Lake City,UT,11057,Charlotte Douglas International,Charlotte,NC,2359,22,1,545,29,1,0 +2013,4,11,4,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1042,-10,0,1325,-26,0,0 +2013,7,2,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,640,-7,0,759,-17,0,0 +2013,5,29,3,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,945,-4,0,1152,-26,0,0 +2013,5,12,7,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1855,-5,0,2215,-27,0,0 +2013,8,6,2,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1415,8,0,1700,-3,0,0 +2013,5,3,5,WN,12451,Jacksonville International,Jacksonville,FL,12191,William P Hobby,Houston,TX,1945,25,1,2110,16,1,0 +2013,10,8,2,DL,14771,San Francisco International,San Francisco,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1415,-3,0,2145,-14,0,0 +2013,8,3,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,11,0,1940,-7,0,0 +2013,5,1,3,DL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-3,0,1942,2,0,0 +2013,7,2,2,WN,12191,William P Hobby,Houston,TX,10721,Logan International,Boston,MA,825,2,0,1310,-13,0,0 +2013,10,10,4,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2105,-2,0,2354,-4,0,0 +2013,5,10,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,930,12,0,1605,3,0,0 +2013,9,28,6,WN,10693,Nashville International,Nashville,TN,12191,William P Hobby,Houston,TX,925,-5,0,1120,-14,0,0 +2013,9,22,7,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,1340,1,0,1459,7,0,0 +2013,5,22,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1500,1,0,1845,-18,0,0 +2013,5,7,2,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,2130,-7,0,2308,1,0,0 +2013,10,23,3,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1500,0,0,1829,-12,0,0 +2013,5,6,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,825,-3,0,955,-4,0,0 +2013,9,18,3,WN,12892,Los Angeles International,Los Angeles,CA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,0,0,1450,-7,0,0 +2013,7,8,1,UA,13204,Orlando International,Orlando,FL,14771,San Francisco International,San Francisco,CA,701,-5,0,930,6,0,0 +2013,9,21,6,B6,12478,John F. Kennedy International,New York,NY,12954,Long Beach Airport,Long Beach,CA,1359,4,0,1703,1,0,0 +2013,9,21,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13830,Kahului Airport,Kahului,HI,1040,2,0,1412,-7,0,0 +2013,10,9,3,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1325,-8,0,1455,-22,0,0 +2013,9,24,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,14869,Salt Lake City International,Salt Lake City,UT,800,-4,0,1013,-7,0,0 +2013,7,18,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1145,249,1,1535,263,1,0 +2013,6,2,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1500,-2,0,2031,-10,0,0 +2013,8,12,1,AA,12892,Los Angeles International,Los Angeles,CA,14492,Raleigh-Durham International,Raleigh/Durham,NC,830,-4,0,1630,-20,0,0 +2013,6,17,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10529,Bradley International,Hartford,CT,1955,32,1,2149,24,1,0 +2013,10,13,7,WN,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1255,24,1,1415,24,1,0 +2013,9,15,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1720,0,0,1859,-7,0,0 +2013,7,24,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10693,Nashville International,Nashville,TN,1730,7,0,1800,3,0,0 +2013,4,8,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12892,Los Angeles International,Los Angeles,CA,1220,0,0,1430,-3,0,0 +2013,7,3,3,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1850,9,0,2045,-4,0,0 +2013,9,9,1,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2030,-1,0,2152,-3,0,0 +2013,5,22,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1640,9,0,1805,6,0,0 +2013,6,10,1,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2125,2,0,2345,6,0,0 +2013,10,15,2,F9,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1558,0,0,1909,-2,0,0 +2013,8,17,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-5,0,2003,7,0,0 +2013,7,3,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12191,William P Hobby,Houston,TX,2030,19,1,2330,17,1,0 +2013,9,11,3,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1305,14,0,1340,7,0,0 +2013,7,29,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,835,-2,0,953,10,0,0 +2013,8,28,3,AS,14679,San Diego International,San Diego,CA,14057,Portland International,Portland,OR,1445,5,0,1703,5,0,0 +2013,10,11,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1725,51,1,2000,35,1,0 +2013,5,3,5,FL,14635,Southwest Florida International,Fort Myers,FL,11278,Ronald Reagan Washington National,Washington,DC,1110,-10,0,1328,-16,0,0 +2013,10,27,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13495,Louis Armstrong New Orleans International,New Orleans,LA,1405,0,0,1555,9,0,0 +2013,4,25,4,OO,10693,Nashville International,Nashville,TN,13487,Minneapolis-St Paul International,Minneapolis,MN,1400,0,,1617,0,1,1 +2013,7,10,3,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1244,76,1,1356,116,1,0 +2013,7,2,2,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2330,-4,0,736,8,0,0 +2013,9,13,5,OO,14869,Salt Lake City International,Salt Lake City,UT,10423,Austin - Bergstrom International,Austin,TX,1351,-1,0,1745,14,0,0 +2013,5,23,4,UA,11042,Cleveland-Hopkins International,Cleveland,OH,10721,Logan International,Boston,MA,1521,21,1,1712,19,1,0 +2013,7,29,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1030,10,0,1130,4,0,0 +2013,7,31,3,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,-4,0,810,-8,0,0 +2013,5,20,1,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,845,-4,0,937,-16,0,0 +2013,8,29,4,DL,14831,Norman Y. Mineta San Jose International,San Jose,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-2,0,1812,-24,0,0 +2013,6,18,2,FL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,800,-3,0,929,-3,0,0 +2013,8,7,3,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,13204,Orlando International,Orlando,FL,713,-9,0,1120,-12,0,0 +2013,5,28,2,MQ,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1105,-12,0,1255,-8,0,0 +2013,8,19,1,WN,12191,William P Hobby,Houston,TX,12892,Los Angeles International,Los Angeles,CA,845,11,0,1010,-2,0,0 +2013,8,5,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13851,Will Rogers World,Oklahoma City,OK,730,13,0,852,14,0,0 +2013,6,17,1,VX,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1305,28,1,2135,22,1,0 +2013,10,26,6,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1025,-1,0,1235,-1,0,0 +2013,5,15,3,DL,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,815,-5,0,1122,-23,0,0 +2013,6,6,4,UA,14524,Richmond International,Richmond,VA,13930,Chicago O'Hare International,Chicago,IL,744,-2,0,849,-7,0,0 +2013,9,16,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,800,-2,0,850,5,0,0 +2013,10,30,3,AS,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14057,Portland International,Portland,OR,1710,-8,0,1930,-4,0,0 +2013,6,29,6,UA,12892,Los Angeles International,Los Angeles,CA,13930,Chicago O'Hare International,Chicago,IL,1413,42,1,2014,45,1,0 +2013,9,20,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2100,9,0,2300,7,0,0 +2013,6,5,3,AS,13830,Kahului Airport,Kahului,HI,14057,Portland International,Portland,OR,1105,-4,0,1925,25,1,0 +2013,5,30,4,HA,12173,Honolulu International,Honolulu,HI,14747,Seattle/Tacoma International,Seattle,WA,1305,0,0,2145,-8,0,0 +2013,6,26,3,UA,14831,Norman Y. Mineta San Jose International,San Jose,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1214,-9,0,1809,-18,0,0 +2013,9,26,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-2,0,2349,-25,0,0 +2013,6,11,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,930,2,0,1255,-22,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1325,15,1,1654,11,0,0 +2013,7,28,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,14730,Louisville International-Standiford Field,Louisville,KY,735,-10,0,857,-21,0,0 +2013,7,22,1,9E,15304,Tampa International,Tampa,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,1255,-2,0,1454,-10,0,0 +2013,7,30,2,AA,13303,Miami International,Miami,FL,12478,John F. Kennedy International,New York,NY,1345,-4,0,1700,-1,0,0 +2013,6,21,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14771,San Francisco International,San Francisco,CA,1800,4,0,2009,-7,0,0 +2013,8,30,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1550,2,0,1810,2,0,0 +2013,7,16,2,DL,13232,Chicago Midway International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1705,1,0,1831,-4,0,0 +2013,8,10,6,B6,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,630,-8,0,751,-7,0,0 +2013,10,31,4,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,13303,Miami International,Miami,FL,1435,6,0,1725,4,0,0 +2013,8,5,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1205,64,1,1650,57,1,0 +2013,10,2,3,EV,11042,Cleveland-Hopkins International,Cleveland,OH,12264,Washington Dulles International,Washington,DC,600,-3,0,718,-7,0,0 +2013,5,27,1,UA,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,2045,0,0,2224,-11,0,0 +2013,6,29,6,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-1,0,758,-4,0,0 +2013,10,3,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,726,-3,0,928,-5,0,0 +2013,4,9,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,4,0,2235,-13,0,0 +2013,9,1,7,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-9,0,525,5,0,0 +2013,5,12,7,HA,13830,Kahului Airport,Kahului,HI,14747,Seattle/Tacoma International,Seattle,WA,1435,12,0,2305,11,0,0 +2013,9,20,5,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1143,-4,0,1256,-8,0,0 +2013,4,18,4,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,630,-4,0,730,-6,0,0 +2013,8,5,1,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1859,1,0,2142,2,0,0 +2013,5,10,5,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,2155,26,1,2310,16,1,0 +2013,10,19,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1045,7,0,1335,-3,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,730,2,0,830,5,0,0 +2013,7,29,1,US,13204,Orlando International,Orlando,FL,11057,Charlotte Douglas International,Charlotte,NC,1905,-1,0,2046,9,0,0 +2013,5,25,6,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,1305,40,1,1545,46,1,0 +2013,10,14,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,75,1,1805,62,1,0 +2013,8,17,6,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2202,52,1,2359,40,1,0 +2013,5,11,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12173,Honolulu International,Honolulu,HI,1050,-2,0,1440,-35,0,0 +2013,4,22,1,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,830,0,0,1005,10,0,0 +2013,6,7,5,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1235,-2,0,1405,-16,0,0 +2013,8,21,3,B6,12264,Washington Dulles International,Washington,DC,13796,Metropolitan Oakland International,Oakland,CA,801,-4,0,1036,-27,0,0 +2013,6,26,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,700,3,0,1432,13,0,0 +2013,9,17,2,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,-8,0,1120,-15,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,1115,40,1,1205,23,1,0 +2013,4,10,3,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1842,-8,0,1916,-9,0,0 +2013,5,15,3,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1410,-1,0,1643,13,0,0 +2013,9,22,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11433,Detroit Metro Wayne County,Detroit,MI,1330,-11,0,1447,-12,0,0 +2013,7,31,3,WN,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1450,0,0,1610,3,0,0 +2013,6,22,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,720,-8,0,955,-1,0,0 +2013,6,6,4,OO,14869,Salt Lake City International,Salt Lake City,UT,13851,Will Rogers World,Oklahoma City,OK,1345,-2,0,1709,-13,0,0 +2013,6,13,4,WN,12191,William P Hobby,Houston,TX,11292,Denver International,Denver,CO,600,1,0,715,-3,0,0 +2013,9,10,2,US,10721,Logan International,Boston,MA,11057,Charlotte Douglas International,Charlotte,NC,945,-8,0,1207,-17,0,0 +2013,8,9,5,UA,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,829,-8,0,1008,-34,0,0 +2013,5,2,4,AS,13796,Metropolitan Oakland International,Oakland,CA,14747,Seattle/Tacoma International,Seattle,WA,950,-4,0,1137,-1,0,0 +2013,7,23,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,730,-5,0,1053,-18,0,0 +2013,8,4,7,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,2,0,1555,-17,0,0 +2013,8,12,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12339,Indianapolis International,Indianapolis,IN,2202,35,1,2309,53,1,0 +2013,10,2,3,WN,13232,Chicago Midway International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,2050,26,1,2315,21,1,0 +2013,8,1,4,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1713,-5,0,1831,-8,0,0 +2013,4,19,5,WN,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1635,40,1,1800,39,1,0 +2013,9,16,1,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,600,7,0,740,-2,0,0 +2013,7,10,3,YV,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,745,-10,0,817,-1,0,0 +2013,9,19,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1035,0,0,1145,-7,0,0 +2013,9,22,7,OO,14771,San Francisco International,San Francisco,CA,10800,Bob Hope,Burbank,CA,749,-6,0,901,-20,0,0 +2013,7,9,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,845,-5,0,1056,-16,0,0 +2013,7,29,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10721,Logan International,Boston,MA,1140,83,1,1346,75,1,0 +2013,10,11,5,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1355,16,1,1556,6,0,0 +2013,9,22,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10423,Austin - Bergstrom International,Austin,TX,1140,-5,0,1735,8,0,0 +2013,7,23,2,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1754,16,1,1907,28,1,0 +2013,5,27,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,940,-7,0,1236,-14,0,0 +2013,6,24,1,B6,11292,Denver International,Denver,CO,10721,Logan International,Boston,MA,2325,52,1,509,54,1,0 +2013,10,3,4,WN,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1630,10,0,1740,10,0,0 +2013,7,10,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,700,-11,0,806,11,0,0 +2013,8,27,2,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1342,1,0,1607,-12,0,0 +2013,10,20,7,WN,12451,Jacksonville International,Jacksonville,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1105,-5,0,1215,-8,0,0 +2013,7,31,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,13,0,1505,10,0,0 +2013,5,17,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10693,Nashville International,Nashville,TN,825,1,0,920,-9,0,0 +2013,6,24,1,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,710,-5,0,910,-6,0,0 +2013,10,11,5,AA,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,1150,-6,0,1445,-4,0,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,34,1,1210,24,1,0 +2013,5,14,2,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12892,Los Angeles International,Los Angeles,CA,1851,-1,0,2055,-27,0,0 +2013,10,27,7,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,915,-5,0,1130,-9,0,0 +2013,7,23,2,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2105,1,0,2310,5,0,0 +2013,9,27,5,B6,12451,Jacksonville International,Jacksonville,FL,10721,Logan International,Boston,MA,700,-2,0,928,18,1,0 +2013,9,19,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,28,1,1809,20,1,0 +2013,4,2,2,DL,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2012,-3,0,2343,6,0,0 +2013,4,7,7,WN,13796,Metropolitan Oakland International,Oakland,CA,14057,Portland International,Portland,OR,2155,7,0,2330,11,0,0 +2013,8,15,4,DL,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1830,0,0,2038,-20,0,0 +2013,7,8,1,WN,10693,Nashville International,Nashville,TN,14683,San Antonio International,San Antonio,TX,905,3,0,1115,1,0,0 +2013,4,8,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,910,-4,0,1029,-19,0,0 +2013,4,26,5,FL,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,700,-2,0,915,-20,0,0 +2013,10,26,6,WN,10529,Bradley International,Hartford,CT,13232,Chicago Midway International,Chicago,IL,630,5,0,755,19,1,0 +2013,8,28,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13198,Kansas City International,Kansas City,MO,1310,-7,0,1435,-16,0,0 +2013,5,30,4,B6,15304,Tampa International,Tampa,FL,12478,John F. Kennedy International,New York,NY,1835,-8,0,2126,-16,0,0 +2013,9,13,5,MQ,14492,Raleigh-Durham International,Raleigh/Durham,NC,11278,Ronald Reagan Washington National,Washington,DC,2120,1,0,2215,-6,0,0 +2013,6,16,7,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2100,3,0,2244,4,0,0 +2013,8,20,2,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,1315,38,1,1645,29,1,0 +2013,7,8,1,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,605,75,1,913,63,1,0 +2013,9,12,4,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,6,0,1945,-14,0,0 +2013,5,31,5,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,320,-6,0,713,-23,0,0 +2013,7,5,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,730,-1,0,900,-6,0,0 +2013,9,18,3,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1645,-3,0,1745,-12,0,0 +2013,8,28,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,2146,132,1,30,138,1,0 +2013,9,28,6,F9,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,955,-3,0,1137,2,0,0 +2013,8,15,4,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,600,2,0,710,-6,0,0 +2013,4,11,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,2135,28,1,2300,28,1,0 +2013,6,1,6,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,2220,-17,0,47,-24,0,0 +2013,4,9,2,OO,13871,Eppley Airfield,Omaha,NE,13487,Minneapolis-St Paul International,Minneapolis,MN,1925,0,0,2037,-1,0,0 +2013,9,29,7,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,645,-5,0,750,-11,0,0 +2013,7,29,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1510,-4,0,1630,-16,0,0 +2013,6,28,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,755,-4,0,900,-16,0,0 +2013,4,20,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1445,-5,0,1730,-1,0,0 +2013,4,3,3,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,940,-5,0,1118,-5,0,0 +2013,4,11,4,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1920,-4,0,2119,8,0,0 +2013,10,28,1,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1045,-4,0,1315,8,0,0 +2013,9,18,3,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,1155,3,0,1330,8,0,0 +2013,5,15,3,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1530,22,1,1635,18,1,0 +2013,6,3,1,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1959,-5,0,2126,11,0,0 +2013,7,10,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-8,0,826,-6,0,0 +2013,9,9,1,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1145,-7,0,1300,-13,0,0 +2013,9,23,1,UA,11618,Newark Liberty International,Newark,NJ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,-8,0,1100,-27,0,0 +2013,7,25,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1705,-5,0,1751,-5,0,0 +2013,9,29,7,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-5,0,1040,-22,0,0 +2013,5,6,1,YV,11057,Charlotte Douglas International,Charlotte,NC,10423,Austin - Bergstrom International,Austin,TX,921,-5,0,1109,12,0,0 +2013,5,27,1,DL,13204,Orlando International,Orlando,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,800,-8,0,1012,-13,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1030,15,1,1155,9,0,0 +2013,7,1,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,1320,19,1,1410,7,0,0 +2013,8,11,7,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1936,2,0,2120,-12,0,0 +2013,9,26,4,MQ,12953,LaGuardia,New York,NY,11066,Port Columbus International,Columbus,OH,1300,-8,0,1450,9,0,0 +2013,4,7,7,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1910,-2,0,2135,2,0,0 +2013,6,6,4,DL,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1530,6,0,1837,6,0,0 +2013,5,10,5,OO,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,806,-5,0,1253,6,0,0 +2013,10,2,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-6,0,1325,-14,0,0 +2013,7,27,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,2155,12,0,2321,12,0,0 +2013,9,19,4,US,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,1350,-5,0,1512,-10,0,0 +2013,6,26,3,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,735,-6,0,906,-3,0,0 +2013,7,1,1,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2215,34,1,2341,51,1,0 +2013,7,10,3,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,3,0,650,-7,0,0 +2013,6,16,7,US,14100,Philadelphia International,Philadelphia,PA,11292,Denver International,Denver,CO,2055,4,0,2259,18,1,0 +2013,6,30,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,1830,1,0,1925,-6,0,0 +2013,5,19,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1535,0,0,1700,-6,0,0 +2013,7,25,4,B6,12478,John F. Kennedy International,New York,NY,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1819,-3,0,2118,-15,0,0 +2013,8,22,4,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,720,-4,0,1025,17,1,0 +2013,8,26,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1220,-1,0,1409,-2,0,0 +2013,6,20,4,AA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1355,-2,0,1650,2,0,0 +2013,5,14,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12892,Los Angeles International,Los Angeles,CA,1958,-2,0,2200,-27,0,0 +2013,7,23,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1506,-2,0,1738,-22,0,0 +2013,6,6,4,VX,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1250,9,0,1515,14,0,0 +2013,9,11,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,706,-4,0,1052,-10,0,0 +2013,6,22,6,EV,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,755,-3,0,1025,0,0,0 +2013,7,21,7,AS,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,950,-4,0,1153,12,0,0 +2013,8,11,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,910,-8,0,1025,-16,0,0 +2013,8,18,7,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1355,-10,0,1434,-22,0,0 +2013,10,18,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1325,3,0,1435,-9,0,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,14843,Luis Munoz Marin International,San Juan,PR,2355,-1,0,345,4,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,1905,6,0,2025,-7,0,0 +2013,7,28,7,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1015,22,1,1320,14,0,0 +2013,10,3,4,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,800,-3,0,1122,-23,0,0 +2013,8,28,3,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1920,-5,0,2040,-2,0,0 +2013,9,18,3,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1555,-11,0,1755,-16,0,0 +2013,7,29,1,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1720,20,1,2214,12,0,0 +2013,10,11,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1650,-2,0,1738,-7,0,0 +2013,5,16,4,B6,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2205,28,1,642,18,1,0 +2013,8,22,4,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,830,-1,0,1040,43,1,0 +2013,9,28,6,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1121,-2,0,1214,-6,0,0 +2013,4,27,6,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,715,-4,0,907,12,0,0 +2013,4,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1433,17,1,1525,37,1,0 +2013,7,12,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1610,-9,0,1728,-26,0,0 +2013,7,5,5,US,14747,Seattle/Tacoma International,Seattle,WA,14100,Philadelphia International,Philadelphia,PA,1115,-9,0,1920,-20,0,0 +2013,4,2,2,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1707,3,0,1828,-4,0,0 +2013,7,22,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1503,30,1,1717,33,1,0 +2013,8,4,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1246,2,0,1408,1,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,11,0,1625,-6,0,0 +2013,9,23,1,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1510,-2,0,1630,-2,0,0 +2013,10,30,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1600,7,0,1716,28,1,0 +2013,4,1,1,WN,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,600,-1,0,850,4,0,0 +2013,6,3,1,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1455,2,0,1649,2,0,0 +2013,10,7,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1535,41,1,2010,37,1,0 +2013,5,5,7,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1200,19,1,1315,8,0,0 +2013,8,23,5,WN,13232,Chicago Midway International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1930,27,1,2120,28,1,0 +2013,8,5,1,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,720,4,0,840,-1,0,0 +2013,8,8,4,9E,13871,Eppley Airfield,Omaha,NE,11433,Detroit Metro Wayne County,Detroit,MI,1015,5,0,1315,4,0,0 +2013,4,29,1,DL,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,600,-3,0,710,4,0,0 +2013,6,28,5,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1915,-2,0,2205,-16,0,0 +2013,9,16,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,845,0,0,1115,-5,0,0 +2013,10,11,5,VX,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,715,-1,0,1045,-20,0,0 +2013,10,9,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,850,23,1,1628,31,1,0 +2013,7,22,1,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,605,-2,0,720,-11,0,0 +2013,10,22,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1333,-11,0,1408,-9,0,0 +2013,5,22,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,1330,-1,0,1545,-10,0,0 +2013,8,24,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,1215,-5,0,1330,-11,0,0 +2013,6,26,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14679,San Diego International,San Diego,CA,1625,16,1,1757,-1,0,0 +2013,4,12,5,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,1357,-6,0,1459,0,0,0 +2013,7,24,3,WN,12953,LaGuardia,New York,NY,15016,Lambert-St. Louis International,St. Louis,MO,625,1,0,805,0,0,0 +2013,4,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,1435,13,0,1610,12,0,0 +2013,5,16,4,WN,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1925,3,0,2250,-1,0,0 +2013,6,23,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,825,-3,0,1055,-6,0,0 +2013,9,20,5,UA,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1252,-2,0,1615,-24,0,0 +2013,8,25,7,EV,13871,Eppley Airfield,Omaha,NE,13930,Chicago O'Hare International,Chicago,IL,555,-4,0,722,0,0,0 +2013,7,31,3,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,1703,14,0,1910,4,0,0 +2013,5,21,2,YV,13244,Memphis International,Memphis,TN,11057,Charlotte Douglas International,Charlotte,NC,600,2,0,841,2,0,0 +2013,6,17,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14869,Salt Lake City International,Salt Lake City,UT,1045,-1,0,1248,-4,0,0 +2013,10,25,5,AS,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,1645,-7,0,1820,-6,0,0 +2013,9,21,6,WN,12339,Indianapolis International,Indianapolis,IN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-2,0,845,-6,0,0 +2013,10,7,1,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2000,57,1,2147,54,1,0 +2013,4,26,5,B6,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1415,10,0,1527,-2,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1347,-4,0,1545,-1,0,0 +2013,9,17,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13303,Miami International,Miami,FL,1315,-2,0,1520,7,0,0 +2013,4,26,5,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,625,-11,0,1439,-19,0,0 +2013,4,22,1,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,729,6,0,854,20,1,0 +2013,7,4,4,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1205,265,1,1250,263,1,0 +2013,10,7,1,DL,11278,Ronald Reagan Washington National,Washington,DC,13487,Minneapolis-St Paul International,Minneapolis,MN,830,0,0,1011,-8,0,0 +2013,4,14,7,DL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,833,-14,0,0 +2013,7,15,1,OO,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1855,-7,0,2025,-5,0,0 +2013,6,28,5,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,710,-7,0,1305,-29,0,0 +2013,7,27,6,MQ,11066,Port Columbus International,Columbus,OH,13303,Miami International,Miami,FL,620,-2,0,900,13,0,0 +2013,10,8,2,UA,10529,Bradley International,Hartford,CT,12264,Washington Dulles International,Washington,DC,1005,-3,0,1135,-19,0,0 +2013,10,5,6,WN,14679,San Diego International,San Diego,CA,10423,Austin - Bergstrom International,Austin,TX,1130,1,0,1610,-12,0,0 +2013,8,11,7,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,600,-1,0,858,-10,0,0 +2013,7,17,3,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1040,-5,0,1135,2,0,0 +2013,6,7,5,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1635,-2,0,1805,-9,0,0 +2013,6,4,2,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-2,0,1020,-10,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1440,-3,0,1800,-2,0,0 +2013,7,30,2,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1531,237,1,1855,220,1,0 +2013,6,27,4,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1310,-3,0,1615,-6,0,0 +2013,9,27,5,YV,12264,Washington Dulles International,Washington,DC,12339,Indianapolis International,Indianapolis,IN,2205,-7,0,2346,-7,0,0 +2013,8,5,1,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,555,-8,0,1010,-20,0,0 +2013,4,12,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,800,1,0,950,-18,0,0 +2013,7,28,7,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1315,88,1,1616,90,1,0 +2013,10,2,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1735,7,0,1915,-19,0,0 +2013,6,4,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1405,1,0,1745,-1,0,0 +2013,6,12,3,EV,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1657,13,0,1826,-3,0,0 +2013,10,12,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1930,-5,0,2124,2,0,0 +2013,4,27,6,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12266,George Bush Intercontinental/Houston,Houston,TX,851,-3,0,1025,31,1,0 +2013,8,10,6,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1755,32,1,1945,30,1,0 +2013,9,26,4,B6,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1600,-4,0,1847,-13,0,0 +2013,9,17,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,2052,-3,0,2245,-18,0,0 +2013,5,18,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1020,15,1,1130,19,1,0 +2013,4,28,7,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,915,-1,0,1015,-4,0,0 +2013,10,18,5,OO,11292,Denver International,Denver,CO,10800,Bob Hope,Burbank,CA,1119,7,0,1250,-15,0,0 +2013,4,8,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1727,6,0,1839,17,1,0 +2013,6,11,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13851,Will Rogers World,Oklahoma City,OK,1940,-2,0,2105,-4,0,0 +2013,4,30,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,932,-3,0,1025,1,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,700,-2,0,1155,-8,0,0 +2013,10,4,5,WN,15304,Tampa International,Tampa,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1225,-2,0,1435,0,0,0 +2013,9,28,6,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1017,-13,0,1156,-26,0,0 +2013,10,17,4,9E,10423,Austin - Bergstrom International,Austin,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,8,0,1420,-11,0,0 +2013,9,22,7,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2339,13,0,805,0,0,0 +2013,10,18,5,FL,12191,William P Hobby,Houston,TX,13204,Orlando International,Orlando,FL,825,-4,0,1135,-9,0,0 +2013,9,24,2,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,942,-2,0,1221,2,0,0 +2013,10,26,6,AS,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,735,-7,0,1559,-13,0,0 +2013,7,19,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1123,-5,0,1251,-8,0,0 +2013,4,6,6,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1625,-6,0,1754,-7,0,0 +2013,6,9,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1655,74,1,2110,55,1,0 +2013,9,15,7,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1740,3,0,1854,13,0,0 +2013,10,27,7,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,1435,-1,0,1537,-13,0,0 +2013,5,5,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,16,1,2326,25,1,0 +2013,4,30,2,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1510,22,1,1835,69,1,0 +2013,6,28,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14679,San Diego International,San Diego,CA,1935,73,1,2105,70,1,0 +2013,4,11,4,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,2120,-9,0,2240,-14,0,0 +2013,7,14,7,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1711,-4,0,2028,-9,0,0 +2013,10,11,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1543,1,0,1759,0,0,0 +2013,6,28,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11618,Newark Liberty International,Newark,NJ,1620,71,1,2003,93,1,0 +2013,6,20,4,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,915,-2,0,1020,0,0,0 +2013,7,29,1,WN,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1120,6,0,1210,2,0,0 +2013,5,28,2,WN,13232,Chicago Midway International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1905,233,1,2125,206,1,0 +2013,9,26,4,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,13,0,1422,6,0,0 +2013,9,9,1,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,1005,-5,0,1455,-22,0,0 +2013,8,9,5,WN,14057,Portland International,Portland,OR,14831,Norman Y. Mineta San Jose International,San Jose,CA,700,-3,0,850,-11,0,0 +2013,5,18,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,2359,-6,0,728,31,1,0 +2013,10,9,3,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,1,0,905,13,0,0 +2013,7,20,6,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,1240,30,1,1355,29,1,0 +2013,10,1,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,1805,-7,0,2351,-13,0,0 +2013,9,23,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1330,44,1,1535,43,1,0 +2013,8,26,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1500,0,,1615,0,1,1 +2013,5,24,5,9E,13930,Chicago O'Hare International,Chicago,IL,13487,Minneapolis-St Paul International,Minneapolis,MN,1053,-2,0,1220,-13,0,0 +2013,9,7,6,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1545,-6,0,1650,-8,0,0 +2013,5,13,1,B6,12953,LaGuardia,New York,NY,13204,Orlando International,Orlando,FL,630,-9,0,906,24,1,0 +2013,7,15,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1314,15,1,1517,-2,0,0 +2013,8,20,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,725,-2,0,826,-17,0,0 +2013,9,17,2,UA,11292,Denver International,Denver,CO,12264,Washington Dulles International,Washington,DC,613,-7,0,1129,-6,0,0 +2013,10,22,2,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,800,-7,0,1048,-2,0,0 +2013,8,3,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-5,0,959,-9,0,0 +2013,10,1,2,US,12892,Los Angeles International,Los Angeles,CA,14100,Philadelphia International,Philadelphia,PA,630,-7,0,1436,-4,0,0 +2013,5,31,5,UA,13930,Chicago O'Hare International,Chicago,IL,12173,Honolulu International,Honolulu,HI,1005,-2,0,1410,-16,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1256,-3,0,1425,-9,0,0 +2013,9,4,3,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1335,15,1,1500,0,0,0 +2013,9,13,5,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,1743,15,1,1910,-3,0,0 +2013,10,26,6,B6,14869,Salt Lake City International,Salt Lake City,UT,12954,Long Beach Airport,Long Beach,CA,1140,86,1,1226,83,1,0 +2013,6,10,1,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1857,-1,0,2014,-4,0,0 +2013,4,14,7,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,531,6,0,939,10,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1917,3,0,2058,-8,0,0 +2013,8,14,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,600,-5,0,818,-12,0,0 +2013,7,7,7,US,14635,Southwest Florida International,Fort Myers,FL,11057,Charlotte Douglas International,Charlotte,NC,1715,92,1,1908,84,1,0 +2013,6,25,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,-6,0,1722,-16,0,0 +2013,8,4,7,UA,12173,Honolulu International,Honolulu,HI,14771,San Francisco International,San Francisco,CA,1317,106,1,2132,95,1,0 +2013,4,10,3,AA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1810,179,1,2110,223,1,0 +2013,4,12,5,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1310,0,0,1601,-14,0,0 +2013,4,7,7,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11057,Charlotte Douglas International,Charlotte,NC,1715,-4,0,1841,-6,0,0 +2013,9,27,5,UA,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,925,-2,0,1257,-14,0,0 +2013,5,29,3,WN,13232,Chicago Midway International,Chicago,IL,14679,San Diego International,San Diego,CA,840,-2,0,1105,-23,0,0 +2013,5,29,3,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13244,Memphis International,Memphis,TN,1820,-5,0,1850,-13,0,0 +2013,9,11,3,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1730,-3,0,2017,-7,0,0 +2013,4,11,4,WN,10693,Nashville International,Nashville,TN,14100,Philadelphia International,Philadelphia,PA,1155,-3,0,1455,-13,0,0 +2013,7,3,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,2040,61,1,2140,55,1,0 +2013,9,9,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,2245,11,0,609,9,0,0 +2013,8,9,5,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,945,-5,0,1105,2,0,0 +2013,8,9,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,0,,2125,0,1,1 +2013,6,11,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,840,-1,0,1000,-2,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,845,3,0,1105,0,0,0 +2013,6,1,6,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1300,61,1,1620,48,1,0 +2013,9,20,5,F9,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,840,-7,0,1049,-12,0,0 +2013,6,26,3,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,1440,25,1,1915,17,1,0 +2013,10,25,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1636,-9,0,1825,-28,0,0 +2013,6,15,6,DL,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1123,-6,0,1142,-1,0,0 +2013,7,27,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1540,0,0,1758,0,0,0 +2013,5,3,5,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1400,75,1,1515,79,1,0 +2013,9,6,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1934,-14,0,2128,-18,0,0 +2013,6,13,4,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1037,74,1,1134,92,1,0 +2013,6,14,5,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1345,8,0,1450,7,0,0 +2013,8,11,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,925,-1,0,1355,-12,0,0 +2013,6,28,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,605,-1,0,740,-10,0,0 +2013,7,31,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1135,22,1,1340,13,0,0 +2013,5,3,5,WN,13204,Orlando International,Orlando,FL,15016,Lambert-St. Louis International,St. Louis,MO,830,-3,0,955,-11,0,0 +2013,10,31,4,MQ,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,655,-7,0,840,9,0,0 +2013,8,19,1,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1100,-8,0,1332,-13,0,0 +2013,7,6,6,9E,12478,John F. Kennedy International,New York,NY,13198,Kansas City International,Kansas City,MO,1715,31,1,1949,0,0,0 +2013,5,13,1,FL,13342,General Mitchell International,Milwaukee,WI,13204,Orlando International,Orlando,FL,835,-5,0,1220,-16,0,0 +2013,4,25,4,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1125,15,1,1948,16,1,0 +2013,6,20,4,EV,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1937,-4,0,2121,-25,0,0 +2013,9,22,7,YV,11057,Charlotte Douglas International,Charlotte,NC,14730,Louisville International-Standiford Field,Louisville,KY,2230,-8,0,2355,-16,0,0 +2013,8,10,6,AS,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,800,-12,0,1050,-20,0,0 +2013,9,26,4,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,1545,-13,0,1820,11,0,0 +2013,10,27,7,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,1225,1,0,1526,5,0,0 +2013,4,30,2,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1330,-7,0,1635,-20,0,0 +2013,5,28,2,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1415,-6,0,1525,-19,0,0 +2013,4,26,5,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,-2,0,1005,-2,0,0 +2013,10,27,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1630,17,1,1851,16,1,0 +2013,5,4,6,B6,14524,Richmond International,Richmond,VA,10721,Logan International,Boston,MA,1830,-13,0,2008,-28,0,0 +2013,10,16,3,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,745,3,0,1500,-23,0,0 +2013,4,15,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,1350,-3,0,1520,-15,0,0 +2013,9,2,1,UA,11618,Newark Liberty International,Newark,NJ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1210,0,0,1510,-21,0,0 +2013,5,16,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1625,1,0,1730,-3,0,0 +2013,7,1,1,EV,11618,Newark Liberty International,Newark,NJ,14307,Theodore Francis Green State,Providence,RI,1100,54,1,1208,40,1,0 +2013,6,25,2,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,1438,2,0,1628,2,0,0 +2013,10,13,7,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,2120,21,1,2230,2,0,0 +2013,6,30,7,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,12264,Washington Dulles International,Washington,DC,828,-5,0,1556,-13,0,0 +2013,7,25,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1600,-3,0,1750,-22,0,0 +2013,10,22,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1805,-2,0,2125,-10,0,0 +2013,7,3,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,1150,-3,0,1330,-1,0,0 +2013,6,20,4,DL,11278,Ronald Reagan Washington National,Washington,DC,11433,Detroit Metro Wayne County,Detroit,MI,1900,13,0,2036,-3,0,0 +2013,5,29,3,US,14100,Philadelphia International,Philadelphia,PA,13204,Orlando International,Orlando,FL,800,-6,0,1033,-14,0,0 +2013,10,14,1,OO,10800,Bob Hope,Burbank,CA,14771,San Francisco International,San Francisco,CA,2052,-4,0,2212,-4,0,0 +2013,8,20,2,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1335,2,0,1615,1,0,0 +2013,5,24,5,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,2005,-17,0,2050,-22,0,0 +2013,5,4,6,AA,13930,Chicago O'Hare International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1100,-2,0,1440,9,0,0 +2013,10,7,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,2105,-5,0,2354,-15,0,0 +2013,5,17,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1705,-2,0,1815,0,0,0 +2013,9,7,6,HA,14893,Sacramento International,Sacramento,CA,12173,Honolulu International,Honolulu,HI,920,-11,0,1150,-24,0,0 +2013,10,21,1,WN,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,2055,23,1,2240,-4,0,0 +2013,8,3,6,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1210,-5,0,1255,-9,0,0 +2013,8,19,1,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1400,0,0,1532,-6,0,0 +2013,10,16,3,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1830,-10,0,2147,-18,0,0 +2013,5,30,4,WN,10693,Nashville International,Nashville,TN,13495,Louis Armstrong New Orleans International,New Orleans,LA,810,-3,0,935,-4,0,0 +2013,6,23,7,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,625,31,1,739,33,1,0 +2013,4,27,6,OO,14683,San Antonio International,San Antonio,TX,14869,Salt Lake City International,Salt Lake City,UT,1415,-8,0,1617,-24,0,0 +2013,10,31,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,705,-5,0,1430,-6,0,0 +2013,4,18,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1310,0,,1410,0,1,1 +2013,10,23,3,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1910,18,1,2135,0,0,0 +2013,8,29,4,EV,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1840,-6,0,1955,-11,0,0 +2013,4,16,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1130,-5,0,1230,-12,0,0 +2013,6,23,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,134,1,800,129,1,0 +2013,6,25,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,39,1,2344,24,1,0 +2013,6,24,1,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1427,14,0,1531,25,1,0 +2013,6,19,3,F9,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,701,0,0,1229,-6,0,0 +2013,4,14,7,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-2,0,1808,-12,0,0 +2013,8,22,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1035,64,1,1430,60,1,0 +2013,4,24,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1240,139,1,1525,140,1,0 +2013,4,19,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1125,-1,0,1410,8,0,0 +2013,8,4,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1625,-4,0,1808,13,0,0 +2013,5,1,3,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,622,-10,0,750,-14,0,0 +2013,7,6,6,AA,12892,Los Angeles International,Los Angeles,CA,10693,Nashville International,Nashville,TN,2250,-3,0,500,-18,0,0 +2013,6,7,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,2359,-8,0,453,-5,0,0 +2013,7,11,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10693,Nashville International,Nashville,TN,1034,3,0,1231,-8,0,0 +2013,8,18,7,FL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,-5,0,758,-4,0,0 +2013,4,8,1,EV,11292,Denver International,Denver,CO,14730,Louisville International-Standiford Field,Louisville,KY,1050,1,0,1521,-2,0,0 +2013,7,7,7,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,755,-4,0,930,0,0,0 +2013,8,29,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2140,-4,0,2237,-20,0,0 +2013,8,25,7,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1121,-2,0,1251,-7,0,0 +2013,5,16,4,DL,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,815,2,0,1047,-15,0,0 +2013,10,18,5,DL,13931,Norfolk International,Norfolk,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,535,-5,0,721,-9,0,0 +2013,9,11,3,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1900,0,0,2005,0,0,0 +2013,7,24,3,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,720,-3,0,930,-16,0,0 +2013,7,17,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,750,14,0,1005,6,0,0 +2013,4,14,7,OO,13342,General Mitchell International,Milwaukee,WI,13930,Chicago O'Hare International,Chicago,IL,1920,-3,0,2008,-20,0,0 +2013,5,16,4,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,2010,5,0,2125,-1,0,0 +2013,6,13,4,YV,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1438,35,1,1546,27,1,0 +2013,6,3,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,1245,-3,0,1349,8,0,0 +2013,10,30,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-1,0,1034,14,0,0 +2013,10,20,7,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1503,15,1,1618,8,0,0 +2013,6,9,7,WN,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,915,-2,0,1005,-4,0,0 +2013,9,13,5,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,745,-3,0,905,-9,0,0 +2013,7,27,6,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,45,39,1,645,29,1,0 +2013,6,16,7,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,905,-3,0,1030,-10,0,0 +2013,9,9,1,MQ,12339,Indianapolis International,Indianapolis,IN,13303,Miami International,Miami,FL,1805,-1,0,2055,-19,0,0 +2013,5,20,1,FL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1340,-2,0,1510,-5,0,0 +2013,7,18,4,AA,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,0,0,655,7,0,0 +2013,8,23,5,B6,10721,Logan International,Boston,MA,10792,Buffalo Niagara International,Buffalo,NY,1650,-5,0,1818,-5,0,0 +2013,8,23,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,1530,-4,0,1645,-12,0,0 +2013,9,14,6,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,850,-1,0,1121,-8,0,0 +2013,8,30,5,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,2055,-4,0,2205,-15,0,0 +2013,4,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,13931,Norfolk International,Norfolk,VA,800,-6,0,1103,-8,0,0 +2013,6,21,5,FL,13232,Chicago Midway International,Chicago,IL,13204,Orlando International,Orlando,FL,1336,42,1,1711,47,1,0 +2013,7,10,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,39,1,1820,28,1,0 +2013,6,21,5,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1505,-4,0,1610,-6,0,0 +2013,10,7,1,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1310,-16,0,1527,-23,0,0 +2013,8,21,3,DL,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1800,4,0,2347,2,0,0 +2013,5,27,1,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-3,0,1253,2,0,0 +2013,4,21,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1205,1,0,1320,-3,0,0 +2013,7,3,3,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,600,1,0,840,1,0,0 +2013,10,31,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1325,24,1,1545,8,0,0 +2013,6,21,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14307,Theodore Francis Green State,Providence,RI,2030,-2,0,2302,-14,0,0 +2013,5,7,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,805,1,0,905,-2,0,0 +2013,6,8,6,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1151,3,0,1229,1,0,0 +2013,7,5,5,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,1349,-13,0,1520,80,1,0 +2013,10,13,7,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,1405,0,0,1715,24,1,0 +2013,7,31,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1759,0,0,2120,-12,0,0 +2013,5,17,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1835,56,1,2028,23,1,0 +2013,6,15,6,DL,11618,Newark Liberty International,Newark,NJ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,-4,0,2049,-27,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1428,15,1,1915,0,0,0 +2013,10,25,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1842,1,0,2057,-7,0,0 +2013,9,26,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1710,1,0,1829,-10,0,0 +2013,6,25,2,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-4,0,1539,3,0,0 +2013,4,20,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,845,1,0,1210,3,0,0 +2013,4,29,1,US,11292,Denver International,Denver,CO,14107,Phoenix Sky Harbor International,Phoenix,AZ,559,-1,0,652,-14,0,0 +2013,9,21,6,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,-3,0,1155,8,0,0 +2013,5,12,7,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1145,4,0,1220,11,0,0 +2013,9,10,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1431,-2,0,1529,-17,0,0 +2013,9,2,1,UA,12889,McCarran International,Las Vegas,NV,11042,Cleveland-Hopkins International,Cleveland,OH,1006,-4,0,1713,7,0,0 +2013,10,1,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,12,0,1655,3,0,0 +2013,4,20,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,1415,1,0,1610,-6,0,0 +2013,10,25,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,635,83,1,840,83,1,0 +2013,6,19,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14679,San Diego International,San Diego,CA,1653,-2,0,1744,-2,0,0 +2013,6,16,7,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2201,47,1,2358,37,1,0 +2013,9,16,1,DL,12478,John F. Kennedy International,New York,NY,11292,Denver International,Denver,CO,1900,1,0,2131,-23,0,0 +2013,4,2,2,UA,13495,Louis Armstrong New Orleans International,New Orleans,LA,12266,George Bush Intercontinental/Houston,Houston,TX,634,1,0,755,-13,0,0 +2013,10,24,4,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1215,0,0,1353,25,1,0 +2013,9,5,4,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,700,-10,0,757,-19,0,0 +2013,5,16,4,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1456,5,0,1837,-5,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1210,-3,0,1449,-15,0,0 +2013,5,31,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12953,LaGuardia,New York,NY,715,-9,0,1011,-21,0,0 +2013,6,18,2,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-2,0,820,-6,0,0 +2013,7,19,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1726,62,1,1739,47,1,0 +2013,10,19,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1615,14,0,1850,-11,0,0 +2013,10,7,1,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1245,34,1,1525,44,1,0 +2013,8,26,1,AA,13303,Miami International,Miami,FL,11292,Denver International,Denver,CO,2035,30,1,2245,16,1,0 +2013,4,1,1,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,610,1,0,805,-22,0,0 +2013,9,20,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,2150,5,0,2245,4,0,0 +2013,10,29,2,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1855,-8,0,2035,-21,0,0 +2013,8,5,1,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1025,-2,0,1308,-6,0,0 +2013,5,6,1,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1010,4,0,1115,-14,0,0 +2013,5,30,4,YV,10423,Austin - Bergstrom International,Austin,TX,12264,Washington Dulles International,Washington,DC,1135,-6,0,1546,-26,0,0 +2013,6,3,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,950,22,1,1109,10,0,0 +2013,4,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1340,-13,0,1638,26,1,0 +2013,9,28,6,AA,10693,Nashville International,Nashville,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-1,0,850,-6,0,0 +2013,6,13,4,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1530,151,1,1810,267,1,0 +2013,6,15,6,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,615,-7,0,629,1,0,0 +2013,5,26,7,MQ,10693,Nashville International,Nashville,TN,13303,Miami International,Miami,FL,1245,-5,0,1605,-20,0,0 +2013,6,12,3,DL,13244,Memphis International,Memphis,TN,12892,Los Angeles International,Los Angeles,CA,1945,171,1,2138,157,1,0 +2013,5,4,6,WN,12191,William P Hobby,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1225,1,0,1555,-13,0,0 +2013,7,27,6,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,630,-4,0,915,15,1,0 +2013,10,6,7,UA,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1304,1,0,1555,1,0,0 +2013,7,3,3,B6,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,840,9,0,1111,17,1,0 +2013,4,30,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1928,16,1,2258,7,0,0 +2013,9,5,4,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,16,1,1916,-9,0,0 +2013,9,18,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,705,-3,0,1043,15,1,0 +2013,8,19,1,US,11057,Charlotte Douglas International,Charlotte,NC,11278,Ronald Reagan Washington National,Washington,DC,1135,2,0,1256,0,0,0 +2013,7,10,3,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1235,-3,0,1345,-5,0,0 +2013,4,10,3,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,1,0,2035,-5,0,0 +2013,5,18,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,800,-2,0,855,-12,0,0 +2013,7,22,1,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1830,1,0,1945,-6,0,0 +2013,6,21,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,932,-2,0,1144,-24,0,0 +2013,6,17,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1520,1,0,1700,7,0,0 +2013,4,30,2,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1930,13,0,2235,-19,0,0 +2013,7,4,4,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1125,0,0,1445,-8,0,0 +2013,9,1,7,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,950,-4,0,1011,-4,0,0 +2013,10,5,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14100,Philadelphia International,Philadelphia,PA,1450,6,0,2215,38,1,0 +2013,5,24,5,MQ,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,900,-4,0,1025,-17,0,0 +2013,9,26,4,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,856,-1,0,1721,-24,0,0 +2013,8,24,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1015,0,0,1146,-15,0,0 +2013,6,2,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1920,22,1,2120,45,1,0 +2013,7,26,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1645,41,1,1755,92,1,0 +2013,7,31,3,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,545,-18,0,701,14,0,0 +2013,4,29,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11278,Ronald Reagan Washington National,Washington,DC,1030,-7,0,1356,-16,0,0 +2013,7,23,2,MQ,10693,Nashville International,Nashville,TN,13930,Chicago O'Hare International,Chicago,IL,750,8,0,935,-8,0,0 +2013,4,30,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1750,16,1,1935,3,0,0 +2013,8,28,3,US,14122,Pittsburgh International,Pittsburgh,PA,14100,Philadelphia International,Philadelphia,PA,710,-8,0,825,-1,0,0 +2013,4,16,2,WN,14057,Portland International,Portland,OR,13198,Kansas City International,Kansas City,MO,1055,3,0,1615,3,0,0 +2013,10,25,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2000,66,1,2120,63,1,0 +2013,4,22,1,AA,14679,San Diego International,San Diego,CA,13930,Chicago O'Hare International,Chicago,IL,1500,5,0,2055,-13,0,0 +2013,9,12,4,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-1,0,1610,0,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1132,5,0,1245,5,0,0 +2013,10,18,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1950,-6,0,2135,-1,0,0 +2013,5,27,1,WN,11292,Denver International,Denver,CO,14683,San Antonio International,San Antonio,TX,2135,0,0,35,0,0,0 +2013,8,3,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,833,77,1,931,90,1,0 +2013,5,24,5,HA,14679,San Diego International,San Diego,CA,12173,Honolulu International,Honolulu,HI,1020,-3,0,1315,-9,0,0 +2013,5,19,7,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,800,-6,0,1050,-13,0,0 +2013,7,30,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,12889,McCarran International,Las Vegas,NV,1105,17,1,1210,15,1,0 +2013,5,6,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13198,Kansas City International,Kansas City,MO,1435,-2,0,1615,-18,0,0 +2013,10,14,1,AA,13930,Chicago O'Hare International,Chicago,IL,14831,Norman Y. Mineta San Jose International,San Jose,CA,1905,-1,0,2130,-1,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1817,-5,0,1941,-17,0,0 +2013,9,15,7,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1800,13,0,1905,-2,0,0 +2013,6,25,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2220,0,0,10,5,0,0 +2013,4,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,840,-3,0,1023,-1,0,0 +2013,7,5,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-1,0,1730,-14,0,0 +2013,10,30,3,B6,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1436,4,0,2216,-2,0,0 +2013,9,7,6,DL,13204,Orlando International,Orlando,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,25,1,1902,10,0,0 +2013,4,2,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1125,54,1,1600,34,1,0 +2013,9,14,6,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,845,-1,0,935,-2,0,0 +2013,7,14,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1405,6,0,1459,-5,0,0 +2013,5,28,2,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1750,-4,0,2111,-4,0,0 +2013,8,4,7,UA,14771,San Francisco International,San Francisco,CA,14057,Portland International,Portland,OR,2105,0,0,2247,-13,0,0 +2013,4,3,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1935,-7,0,2055,-11,0,0 +2013,4,10,3,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,715,-4,0,1004,-9,0,0 +2013,10,19,6,AS,14747,Seattle/Tacoma International,Seattle,WA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,840,2,0,1720,-12,0,0 +2013,7,17,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,1350,5,0,1520,10,0,0 +2013,8,24,6,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1830,-2,0,1955,-23,0,0 +2013,6,24,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14747,Seattle/Tacoma International,Seattle,WA,835,284,1,1030,266,1,0 +2013,6,5,3,DL,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,730,-1,0,951,-11,0,0 +2013,8,1,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,14524,Richmond International,Richmond,VA,730,-2,0,907,-6,0,0 +2013,8,2,5,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,835,-4,0,933,-5,0,0 +2013,9,20,5,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-7,0,1904,-6,0,0 +2013,7,25,4,AS,12173,Honolulu International,Honolulu,HI,13796,Metropolitan Oakland International,Oakland,CA,1520,-10,0,2328,-16,0,0 +2013,8,18,7,WN,11066,Port Columbus International,Columbus,OH,15304,Tampa International,Tampa,FL,1005,-6,0,1215,-5,0,0 +2013,5,18,6,UA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,955,10,0,1226,-5,0,0 +2013,4,16,2,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1738,0,0,1926,-2,0,0 +2013,8,26,1,EV,10529,Bradley International,Hartford,CT,11618,Newark Liberty International,Newark,NJ,1319,-6,0,1430,12,0,0 +2013,7,20,6,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,605,-6,0,936,-15,0,0 +2013,9,15,7,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1655,-2,0,1820,-22,0,0 +2013,6,11,2,AA,14869,Salt Lake City International,Salt Lake City,UT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-7,0,940,-16,0,0 +2013,7,12,5,WN,13232,Chicago Midway International,Chicago,IL,13931,Norfolk International,Norfolk,VA,1255,3,0,1555,4,0,0 +2013,5,3,5,OO,11292,Denver International,Denver,CO,15376,Tucson International,Tucson,AZ,1514,13,0,1612,7,0,0 +2013,5,6,1,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,700,1,0,925,2,0,0 +2013,8,12,1,WN,10423,Austin - Bergstrom International,Austin,TX,11259,Dallas Love Field,Dallas,TX,1740,20,1,1835,16,1,0 +2013,8,9,5,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,943,-1,0,1416,-18,0,0 +2013,7,26,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,907,-7,0,1159,-13,0,0 +2013,6,4,2,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1535,3,0,1805,-4,0,0 +2013,4,8,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,845,33,1,1040,10,0,0 +2013,4,17,3,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1400,1,0,1450,-7,0,0 +2013,10,2,3,DL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1151,-3,0,1536,-3,0,0 +2013,9,29,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1643,-1,0,1835,-15,0,0 +2013,6,10,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,740,9,0,1130,-1,0,0 +2013,6,9,7,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,650,9,0,825,0,0,0 +2013,8,18,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-3,0,1604,0,0,0 +2013,7,16,2,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2015,162,1,2125,178,1,0 +2013,10,27,7,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1930,41,1,2237,25,1,0 +2013,5,17,5,AA,10721,Logan International,Boston,MA,13303,Miami International,Miami,FL,1740,108,1,2110,90,1,0 +2013,8,23,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-6,0,820,15,1,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,2301,-4,0,502,-26,0,0 +2013,9,30,1,AS,14747,Seattle/Tacoma International,Seattle,WA,14831,Norman Y. Mineta San Jose International,San Jose,CA,600,-2,0,759,10,0,0 +2013,7,2,2,UA,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,645,0,,1022,0,1,1 +2013,6,25,2,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,2210,3,0,2330,3,0,0 +2013,4,26,5,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,600,0,,815,0,1,1 +2013,8,6,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,630,-4,0,735,-2,0,0 +2013,8,19,1,9E,10792,Buffalo Niagara International,Buffalo,NY,11433,Detroit Metro Wayne County,Detroit,MI,800,-6,0,920,-25,0,0 +2013,9,26,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,0,0,1244,2,0,0 +2013,8,7,3,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1505,13,0,1758,34,1,0 +2013,9,19,4,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-3,0,729,-10,0,0 +2013,6,28,5,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,1825,293,1,2023,311,1,0 +2013,6,13,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,1505,13,0,1944,19,1,0 +2013,8,16,5,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,605,-4,0,715,-7,0,0 +2013,5,1,3,MQ,12451,Jacksonville International,Jacksonville,FL,13303,Miami International,Miami,FL,1120,-9,0,1235,-10,0,0 +2013,7,26,5,FL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,10,0,1050,11,0,0 +2013,10,20,7,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-3,0,811,-2,0,0 +2013,6,29,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,915,385,1,1257,375,1,0 +2013,6,23,7,UA,11042,Cleveland-Hopkins International,Cleveland,OH,11618,Newark Liberty International,Newark,NJ,1448,-3,0,1629,-15,0,0 +2013,10,1,2,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,1234,-5,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10529,Bradley International,Hartford,CT,1230,13,0,1655,-6,0,0 +2013,6,4,2,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1300,-4,0,1557,-1,0,0 +2013,6,25,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1110,-1,0,1205,15,1,0 +2013,6,14,5,US,14893,Sacramento International,Sacramento,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1915,0,,2102,0,1,1 +2013,9,12,4,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1630,4,0,1919,2,0,0 +2013,6,28,5,VX,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1850,-2,0,2000,8,0,0 +2013,6,30,7,EV,13198,Kansas City International,Kansas City,MO,11618,Newark Liberty International,Newark,NJ,603,0,,1000,0,1,1 +2013,9,20,5,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,26,1,2127,10,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2111,-1,0,2201,-4,0,0 +2013,6,5,3,YV,10423,Austin - Bergstrom International,Austin,TX,11057,Charlotte Douglas International,Charlotte,NC,1657,-9,0,2042,-9,0,0 +2013,6,24,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,11618,Newark Liberty International,Newark,NJ,1500,327,1,1646,325,1,0 +2013,7,9,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,1115,23,1,1247,31,1,0 +2013,10,6,7,AA,12266,George Bush Intercontinental/Houston,Houston,TX,12478,John F. Kennedy International,New York,NY,1025,-3,0,1455,-1,0,0 +2013,7,13,6,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1215,16,1,1235,17,1,0 +2013,10,23,3,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12953,LaGuardia,New York,NY,1148,17,1,1436,11,0,0 +2013,7,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14831,Norman Y. Mineta San Jose International,San Jose,CA,2125,17,1,2255,10,0,0 +2013,7,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1855,25,1,2120,22,1,0 +2013,4,4,4,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,645,-6,0,1150,1,0,0 +2013,10,20,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1655,-3,0,1915,11,0,0 +2013,7,1,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13871,Eppley Airfield,Omaha,NE,715,-5,0,830,-9,0,0 +2013,6,16,7,WN,13931,Norfolk International,Norfolk,VA,13204,Orlando International,Orlando,FL,1815,2,0,2010,-4,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,805,0,0,1030,-6,0,0 +2013,8,30,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1930,-3,0,2055,-11,0,0 +2013,6,6,4,WN,11618,Newark Liberty International,Newark,NJ,13232,Chicago Midway International,Chicago,IL,1530,0,0,1650,-9,0,0 +2013,8,9,5,FL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,650,2,0,805,9,0,0 +2013,4,23,2,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1056,9,0,1350,39,1,0 +2013,10,27,7,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1142,1,0,1402,-19,0,0 +2013,4,25,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,640,0,0,809,-7,0,0 +2013,10,5,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1325,27,1,1545,22,1,0 +2013,5,9,4,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,2040,17,1,2130,14,0,0 +2013,10,13,7,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,2302,113,1,730,88,1,0 +2013,8,5,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1455,6,0,1605,3,0,0 +2013,7,11,4,WN,13851,Will Rogers World,Oklahoma City,OK,12191,William P Hobby,Houston,TX,1210,-3,0,1330,-4,0,0 +2013,6,25,2,F9,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1700,0,0,1819,-4,0,0 +2013,10,25,5,OO,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,708,-8,0,1035,-15,0,0 +2013,9,24,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1310,0,0,1430,-7,0,0 +2013,5,7,2,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,725,7,0,915,-9,0,0 +2013,9,24,2,US,14570,Reno/Tahoe International,Reno,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1610,-2,0,1755,-8,0,0 +2013,8,12,1,MQ,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,620,-2,0,855,-20,0,0 +2013,6,18,2,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,654,-3,0,755,2,0,0 +2013,6,7,5,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,1400,-1,0,1521,11,0,0 +2013,10,6,7,OO,14771,San Francisco International,San Francisco,CA,13891,Ontario International,Ontario,CA,706,-10,0,828,-21,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,15376,Tucson International,Tucson,AZ,1235,-3,0,1405,-2,0,0 +2013,8,30,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10140,Albuquerque International Sunport,Albuquerque,NM,900,-7,0,1015,-15,0,0 +2013,8,4,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,62,1,1900,53,1,0 +2013,9,18,3,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-6,0,1436,-26,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,1835,0,0,1940,-2,0,0 +2013,10,2,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1020,-6,0,1326,-7,0,0 +2013,5,2,4,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11433,Detroit Metro Wayne County,Detroit,MI,1904,127,1,2249,133,1,0 +2013,4,14,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1252,15,1,1615,19,1,0 +2013,9,28,6,AA,12892,Los Angeles International,Los Angeles,CA,12173,Honolulu International,Honolulu,HI,1815,301,1,2100,282,1,0 +2013,10,30,3,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1400,41,1,1930,30,1,0 +2013,10,6,7,WN,13232,Chicago Midway International,Chicago,IL,12889,McCarran International,Las Vegas,NV,1245,-5,0,1440,-30,0,0 +2013,9,30,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-8,0,937,-11,0,0 +2013,7,10,3,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,600,-7,0,835,-23,0,0 +2013,8,3,6,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11433,Detroit Metro Wayne County,Detroit,MI,1104,19,1,1450,0,0,0 +2013,6,10,1,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2050,-5,0,2210,-3,0,0 +2013,9,18,3,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1615,-1,0,1742,13,0,0 +2013,4,1,1,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1833,-11,0,2110,-19,0,0 +2013,6,16,7,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1328,-1,0,1434,3,0,0 +2013,5,26,7,AS,14747,Seattle/Tacoma International,Seattle,WA,10299,Ted Stevens Anchorage International,Anchorage,AK,2350,-5,0,220,-16,0,0 +2013,8,9,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1350,-3,0,1350,1,0,0 +2013,5,15,3,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,645,-4,0,853,-17,0,0 +2013,7,26,5,DL,11278,Ronald Reagan Washington National,Washington,DC,14869,Salt Lake City International,Salt Lake City,UT,1650,0,0,1925,1,0,0 +2013,4,9,2,UA,11292,Denver International,Denver,CO,14893,Sacramento International,Sacramento,CA,1906,-2,0,2046,-5,0,0 +2013,8,27,2,DL,14893,Sacramento International,Sacramento,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1215,-2,0,1941,16,1,0 +2013,9,11,3,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1118,11,0,1208,5,0,0 +2013,8,18,7,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,2219,-5,0,2358,-18,0,0 +2013,9,6,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1745,-5,0,1902,-17,0,0 +2013,5,9,4,AA,13204,Orlando International,Orlando,FL,13303,Miami International,Miami,FL,1025,-1,0,1130,15,1,0 +2013,9,1,7,US,11278,Ronald Reagan Washington National,Washington,DC,10529,Bradley International,Hartford,CT,1725,-4,0,1835,5,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,839,-2,0,1026,-15,0,0 +2013,4,29,1,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,935,0,0,1118,-6,0,0 +2013,9,14,6,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,940,8,0,1050,-4,0,0 +2013,9,28,6,UA,11618,Newark Liberty International,Newark,NJ,12266,George Bush Intercontinental/Houston,Houston,TX,1629,-6,0,1919,-45,0,0 +2013,4,25,4,B6,10792,Buffalo Niagara International,Buffalo,NY,12478,John F. Kennedy International,New York,NY,545,-4,0,707,-16,0,0 +2013,6,20,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,1527,-4,0,1604,-2,0,0 +2013,5,20,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1910,-2,0,2050,27,1,0 +2013,7,16,2,AS,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1825,6,0,2147,-11,0,0 +2013,7,4,4,US,13931,Norfolk International,Norfolk,VA,11057,Charlotte Douglas International,Charlotte,NC,515,-7,0,628,-7,0,0 +2013,6,21,5,AA,13198,Kansas City International,Kansas City,MO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1435,20,1,1615,13,0,0 +2013,8,15,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1820,1,0,1945,3,0,0 +2013,8,19,1,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14869,Salt Lake City International,Salt Lake City,UT,2010,0,0,2244,-1,0,0 +2013,9,15,7,FL,14843,Luis Munoz Marin International,San Juan,PR,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1458,-9,0,1839,-8,0,0 +2013,7,27,6,FL,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,1110,-13,0,1340,-20,0,0 +2013,6,9,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,950,0,0,1050,-5,0,0 +2013,6,29,6,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1920,-3,0,2030,-7,0,0 +2013,4,14,7,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,-5,0,1452,-11,0,0 +2013,10,31,4,WN,12339,Indianapolis International,Indianapolis,IN,12191,William P Hobby,Houston,TX,640,5,0,810,63,1,0 +2013,10,27,7,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1842,-8,0,2014,-9,0,0 +2013,8,13,2,WN,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,810,-1,0,910,-10,0,0 +2013,10,9,3,VX,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,1105,-4,0,1850,14,0,0 +2013,4,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,600,-2,0,853,-12,0,0 +2013,5,13,1,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1905,-8,0,2018,-14,0,0 +2013,6,6,4,AS,13198,Kansas City International,Kansas City,MO,14747,Seattle/Tacoma International,Seattle,WA,1700,0,0,1845,-5,0,0 +2013,7,23,2,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1234,0,0,1849,-9,0,0 +2013,4,30,2,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,-8,0,1520,-8,0,0 +2013,9,14,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,1335,137,1,1626,124,1,0 +2013,9,10,2,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,900,-4,0,1633,-5,0,0 +2013,4,30,2,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1215,-2,0,1406,-13,0,0 +2013,7,29,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,-1,0,1049,-6,0,0 +2013,9,9,1,WN,10693,Nashville International,Nashville,TN,14492,Raleigh-Durham International,Raleigh/Durham,NC,1955,99,1,2215,94,1,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,830,11,0,1005,15,1,0 +2013,10,3,4,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,950,13,0,1120,5,0,0 +2013,9,10,2,OO,14057,Portland International,Portland,OR,14747,Seattle/Tacoma International,Seattle,WA,1035,-3,0,1131,-1,0,0 +2013,10,6,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14057,Portland International,Portland,OR,2100,2,0,2300,-10,0,0 +2013,8,27,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1645,-4,0,1810,-11,0,0 +2013,10,1,2,MQ,12953,LaGuardia,New York,NY,10693,Nashville International,Nashville,TN,1210,-2,0,1330,-23,0,0 +2013,8,12,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,1823,0,0,2112,-11,0,0 +2013,7,2,2,UA,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,540,0,0,908,1,0,0 +2013,9,22,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1020,-5,0,1237,-17,0,0 +2013,9,7,6,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1100,-3,0,1417,-18,0,0 +2013,10,9,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1716,11,0,1953,-1,0,0 +2013,7,6,6,UA,12264,Washington Dulles International,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2008,15,1,2248,-5,0,0 +2013,8,5,1,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1832,-13,0,2115,-21,0,0 +2013,8,20,2,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1843,26,1,2031,19,1,0 +2013,6,26,3,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,11292,Denver International,Denver,CO,1749,-6,0,2118,0,0,0 +2013,7,25,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,1550,3,0,1655,1,0,0 +2013,5,10,5,WN,13198,Kansas City International,Kansas City,MO,10693,Nashville International,Nashville,TN,1610,0,0,1740,-8,0,0 +2013,8,14,3,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,1425,6,0,1700,28,1,0 +2013,10,13,7,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,2245,-5,0,2335,-4,0,0 +2013,5,15,3,WN,15016,Lambert-St. Louis International,St. Louis,MO,12953,LaGuardia,New York,NY,1930,25,1,2255,9,0,0 +2013,5,2,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12889,McCarran International,Las Vegas,NV,700,-1,0,940,-17,0,0 +2013,5,6,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11278,Ronald Reagan Washington National,Washington,DC,1340,0,0,1528,-6,0,0 +2013,10,23,3,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,1656,-6,0,1752,-20,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14635,Southwest Florida International,Fort Myers,FL,926,-5,0,1119,-6,0,0 +2013,7,20,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,0,0,1505,-11,0,0 +2013,9,6,5,DL,12953,LaGuardia,New York,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,710,-6,0,1015,-11,0,0 +2013,10,16,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,11292,Denver International,Denver,CO,1905,-1,0,2017,2,0,0 +2013,4,1,1,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1915,-6,0,2219,-15,0,0 +2013,9,26,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,834,-3,0,935,-10,0,0 +2013,9,25,3,US,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1135,-5,0,1247,-10,0,0 +2013,5,11,6,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1435,27,1,1640,14,0,0 +2013,5,5,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,800,10,0,900,9,0,0 +2013,9,4,3,VX,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,700,1,0,825,5,0,0 +2013,9,12,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1615,-8,0,1725,-13,0,0 +2013,7,8,1,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,10693,Nashville International,Nashville,TN,1515,0,0,1722,0,0,0 +2013,7,31,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1510,-2,0,1630,-14,0,0 +2013,6,20,4,AA,12173,Honolulu International,Honolulu,HI,12892,Los Angeles International,Los Angeles,CA,1445,194,1,2310,158,1,0 +2013,9,7,6,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1255,7,0,1830,2,0,0 +2013,6,29,6,WN,13198,Kansas City International,Kansas City,MO,13796,Metropolitan Oakland International,Oakland,CA,1605,22,1,1750,0,0,0 +2013,4,25,4,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1605,-6,0,1907,3,0,0 +2013,5,6,1,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-2,0,1855,1,0,0 +2013,4,25,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,735,-3,0,911,-6,0,0 +2013,4,3,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1755,10,0,1933,-5,0,0 +2013,5,8,3,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13930,Chicago O'Hare International,Chicago,IL,938,2,0,1040,-13,0,0 +2013,5,31,5,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,800,-12,0,1005,-33,0,0 +2013,9,6,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1100,-8,0,1518,-8,0,0 +2013,7,17,3,WN,11292,Denver International,Denver,CO,13342,General Mitchell International,Milwaukee,WI,1020,8,0,1330,19,1,0 +2013,10,2,3,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,1955,-5,0,2121,-28,0,0 +2013,9,25,3,WN,13198,Kansas City International,Kansas City,MO,12191,William P Hobby,Houston,TX,640,15,1,840,2,0,0 +2013,5,5,7,WN,15016,Lambert-St. Louis International,St. Louis,MO,14635,Southwest Florida International,Fort Myers,FL,1435,5,0,1805,2,0,0 +2013,7,28,7,UA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1755,120,1,2054,153,1,0 +2013,6,27,4,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,815,26,1,1150,9,0,0 +2013,7,14,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2045,42,1,2215,54,1,0 +2013,8,2,5,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1235,-20,0,0 +2013,8,15,4,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1000,-7,0,1022,-10,0,0 +2013,10,18,5,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,-3,0,2142,-17,0,0 +2013,7,27,6,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1555,0,,1710,0,1,1 +2013,10,11,5,US,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,525,-3,0,756,-21,0,0 +2013,10,13,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,1340,-1,0,1347,-15,0,0 +2013,8,27,2,VX,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1135,-5,0,1325,-3,0,0 +2013,9,27,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1810,-3,0,2139,-29,0,0 +2013,4,16,2,B6,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1540,-3,0,1734,-21,0,0 +2013,9,16,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1630,20,1,1750,13,0,0 +2013,9,27,5,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,2000,6,0,2248,-16,0,0 +2013,10,28,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,2014,8,0,2317,-9,0,0 +2013,9,3,2,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1300,-6,0,1550,-44,0,0 +2013,5,22,3,US,14100,Philadelphia International,Philadelphia,PA,14747,Seattle/Tacoma International,Seattle,WA,2040,-5,0,2330,65,1,0 +2013,7,26,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,835,-3,0,853,-17,0,0 +2013,9,29,7,WN,10423,Austin - Bergstrom International,Austin,TX,12191,William P Hobby,Houston,TX,825,-3,0,920,-13,0,0 +2013,10,3,4,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2100,122,1,2221,107,1,0 +2013,5,27,1,DL,14635,Southwest Florida International,Fort Myers,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1035,-8,0,1258,-11,0,0 +2013,4,26,5,YV,12264,Washington Dulles International,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1700,7,0,1847,-2,0,0 +2013,8,19,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,645,3,0,835,7,0,0 +2013,5,24,5,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1645,29,1,1810,27,1,0 +2013,5,11,6,MQ,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,12478,John F. Kennedy International,New York,NY,1435,186,1,1600,0,1,1 +2013,10,31,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1930,-6,0,2115,5,0,0 +2013,5,14,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2015,-4,0,2300,-14,0,0 +2013,7,2,2,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1540,0,0,1655,-10,0,0 +2013,5,19,7,WN,10800,Bob Hope,Burbank,CA,12889,McCarran International,Las Vegas,NV,1120,1,0,1220,5,0,0 +2013,8,9,5,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1525,50,1,1635,52,1,0 +2013,5,4,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1505,-2,0,1832,0,0,0 +2013,4,21,7,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,2107,13,0,2248,-1,0,0 +2013,9,17,2,WN,10792,Buffalo Niagara International,Buffalo,NY,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,830,8,0,1125,3,0,0 +2013,8,18,7,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1140,-4,0,1300,-16,0,0 +2013,9,16,1,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1038,20,1,1140,26,1,0 +2013,8,2,5,WN,13342,General Mitchell International,Milwaukee,WI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,630,-2,0,925,-4,0,0 +2013,7,26,5,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,615,-5,0,801,-12,0,0 +2013,4,3,3,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,710,7,0,1035,-8,0,0 +2013,8,23,5,WN,14679,San Diego International,San Diego,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,845,2,0,1000,3,0,0 +2013,5,12,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14730,Louisville International-Standiford Field,Louisville,KY,2010,0,0,2150,6,0,0 +2013,4,23,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,842,-4,0,1119,-9,0,0 +2013,10,4,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,809,0,0,836,-2,0,0 +2013,8,26,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,15016,Lambert-St. Louis International,St. Louis,MO,925,-3,0,1110,-7,0,0 +2013,9,18,3,AA,12478,John F. Kennedy International,New York,NY,13303,Miami International,Miami,FL,915,42,1,1230,17,1,0 +2013,4,12,5,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1742,9,0,1929,4,0,0 +2013,4,20,6,EV,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1858,10,0,1957,2,0,0 +2013,4,25,4,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,650,-1,0,855,-5,0,0 +2013,4,1,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1630,-2,0,1935,-20,0,0 +2013,8,8,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,2359,-1,0,519,4,0,0 +2013,8,16,5,WN,15304,Tampa International,Tampa,FL,14307,Theodore Francis Green State,Providence,RI,1705,5,0,1950,-4,0,0 +2013,7,6,6,OO,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1732,-7,0,2023,-17,0,0 +2013,8,5,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1240,-3,0,1600,-5,0,0 +2013,5,13,1,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1430,11,0,1535,-6,0,0 +2013,5,22,3,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,1530,18,1,1650,19,1,0 +2013,6,30,7,WN,10423,Austin - Bergstrom International,Austin,TX,10693,Nashville International,Nashville,TN,700,-1,0,905,-8,0,0 +2013,8,9,5,WN,12191,William P Hobby,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1335,-3,0,1405,6,0,0 +2013,4,25,4,EV,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,638,-2,0,809,13,0,0 +2013,6,20,4,AA,12892,Los Angeles International,Los Angeles,CA,15016,Lambert-St. Louis International,St. Louis,MO,700,-6,0,1235,-10,0,0 +2013,9,17,2,DL,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,655,-5,0,1052,-25,0,0 +2013,5,11,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,2110,0,0,2205,-4,0,0 +2013,8,4,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11278,Ronald Reagan Washington National,Washington,DC,1130,-6,0,1256,-7,0,0 +2013,9,13,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,2,0,1033,0,0,0 +2013,6,2,7,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,1600,47,1,1721,56,1,0 +2013,4,11,4,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1700,-9,0,1827,-18,0,0 +2013,6,22,6,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1635,-7,0,1747,-15,0,0 +2013,9,20,5,WN,13796,Metropolitan Oakland International,Oakland,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,715,0,0,840,-4,0,0 +2013,9,8,7,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2150,-6,0,2226,-7,0,0 +2013,6,12,3,OO,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2100,23,1,2234,24,1,0 +2013,10,22,2,WN,13931,Norfolk International,Norfolk,VA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2005,-2,0,2115,-18,0,0 +2013,4,30,2,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1925,6,0,2050,0,0,0 +2013,4,19,5,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,1745,30,1,1952,31,1,0 +2013,9,16,1,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,-3,0,1452,-11,0,0 +2013,9,5,4,F9,11292,Denver International,Denver,CO,11278,Ronald Reagan Washington National,Washington,DC,1140,-3,0,1655,0,0,0 +2013,8,26,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,2045,-4,0,2255,-2,0,0 +2013,5,2,4,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,754,-6,0,830,-7,0,0 +2013,7,25,4,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-9,0,1250,-18,0,0 +2013,4,1,1,UA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,610,4,0,916,-21,0,0 +2013,9,20,5,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1020,-3,0,1430,-5,0,0 +2013,10,15,2,WN,12339,Indianapolis International,Indianapolis,IN,11292,Denver International,Denver,CO,1930,16,1,2015,22,1,0 +2013,7,16,2,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,940,-3,0,1042,-22,0,0 +2013,7,8,1,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,845,2,0,1645,9,0,0 +2013,6,4,2,EV,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1839,-3,0,1921,-2,0,0 +2013,5,29,3,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,2220,-3,0,2337,-5,0,0 +2013,10,10,4,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1145,-11,0,1235,-14,0,0 +2013,4,12,5,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2320,53,1,750,37,1,0 +2013,5,6,1,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12478,John F. Kennedy International,New York,NY,1215,-6,0,1425,-9,0,0 +2013,10,26,6,US,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14107,Phoenix Sky Harbor International,Phoenix,AZ,705,-2,0,911,5,0,0 +2013,5,19,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,1135,-7,0,1235,-6,0,0 +2013,5,5,7,UA,14747,Seattle/Tacoma International,Seattle,WA,11618,Newark Liberty International,Newark,NJ,1540,10,0,2349,31,1,0 +2013,6,28,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11042,Cleveland-Hopkins International,Cleveland,OH,1022,30,1,1212,22,1,0 +2013,10,7,1,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1320,29,1,1630,24,1,0 +2013,7,28,7,DL,14869,Salt Lake City International,Salt Lake City,UT,12478,John F. Kennedy International,New York,NY,830,-6,0,1458,-2,0,0 +2013,10,28,1,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13931,Norfolk International,Norfolk,VA,1250,2,0,1643,-9,0,0 +2013,8,19,1,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1645,-4,0,1750,-5,0,0 +2013,5,27,1,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1859,0,0,2359,-20,0,0 +2013,5,22,3,OO,13891,Ontario International,Ontario,CA,14869,Salt Lake City International,Salt Lake City,UT,1017,-10,0,1300,-14,0,0 +2013,6,3,1,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,1140,-1,0,1422,-2,0,0 +2013,8,7,3,WN,12889,McCarran International,Las Vegas,NV,11292,Denver International,Denver,CO,720,5,0,1010,-2,0,0 +2013,7,23,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1850,-4,0,2005,-11,0,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2035,-6,0,2259,-23,0,0 +2013,7,12,5,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1515,-11,0,1534,-25,0,0 +2013,8,25,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10423,Austin - Bergstrom International,Austin,TX,1005,0,0,1535,-7,0,0 +2013,4,18,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1655,116,1,2110,101,1,0 +2013,9,11,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-4,0,820,-8,0,0 +2013,5,19,7,WN,14057,Portland International,Portland,OR,14570,Reno/Tahoe International,Reno,NV,730,-3,0,855,-18,0,0 +2013,9,19,4,WN,13232,Chicago Midway International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,1320,82,1,1440,97,1,0 +2013,8,12,1,F9,11292,Denver International,Denver,CO,10423,Austin - Bergstrom International,Austin,TX,1120,4,0,1422,-1,0,0 +2013,4,11,4,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,31,1,850,29,1,0 +2013,5,16,4,OO,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14869,Salt Lake City International,Salt Lake City,UT,1749,-4,0,1937,-8,0,0 +2013,4,27,6,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1829,-10,0,2141,-18,0,0 +2013,5,14,2,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-4,0,1435,1,0,0 +2013,4,7,7,US,14100,Philadelphia International,Philadelphia,PA,12892,Los Angeles International,Los Angeles,CA,1759,0,0,2053,25,1,0 +2013,8,29,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1730,23,1,1955,-4,0,0 +2013,10,14,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,757,-3,0,910,-8,0,0 +2013,8,2,5,MQ,14683,San Antonio International,San Antonio,TX,13930,Chicago O'Hare International,Chicago,IL,1805,30,1,2045,54,1,0 +2013,4,10,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,900,2,0,1136,-8,0,0 +2013,4,5,5,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2116,-9,0,2148,18,1,0 +2013,10,22,2,WN,14679,San Diego International,San Diego,CA,14893,Sacramento International,Sacramento,CA,1030,14,0,1205,-3,0,0 +2013,5,18,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,910,-3,0,1005,-5,0,0 +2013,7,3,3,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1145,1,0,1500,1,0,0 +2013,6,28,5,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1440,-6,0,1900,2,0,0 +2013,8,17,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,815,-4,0,849,-3,0,0 +2013,5,3,5,WN,14100,Philadelphia International,Philadelphia,PA,10693,Nashville International,Nashville,TN,1530,12,0,1645,-8,0,0 +2013,9,12,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1732,91,1,2232,97,1,0 +2013,10,6,7,OO,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1700,69,1,1915,83,1,0 +2013,7,13,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,956,4,0,1103,8,0,0 +2013,10,25,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,831,0,0,929,1,0,0 +2013,5,10,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1000,-3,0,1344,-17,0,0 +2013,10,18,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1925,-4,0,2200,-11,0,0 +2013,8,17,6,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1420,1,0,1605,-10,0,0 +2013,5,17,5,DL,12892,Los Angeles International,Los Angeles,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,1230,-1,0,1806,-9,0,0 +2013,5,4,6,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-2,0,909,21,1,0 +2013,8,5,1,9E,12478,John F. Kennedy International,New York,NY,13930,Chicago O'Hare International,Chicago,IL,830,-4,0,1010,-19,0,0 +2013,9,29,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14831,Norman Y. Mineta San Jose International,San Jose,CA,835,-3,0,1040,-18,0,0 +2013,5,24,5,WN,10800,Bob Hope,Burbank,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1415,21,1,1540,10,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14843,Luis Munoz Marin International,San Juan,PR,1210,-5,0,1549,-23,0,0 +2013,4,27,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,745,-7,0,858,-13,0,0 +2013,7,16,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10529,Bradley International,Hartford,CT,1815,-2,0,2046,-13,0,0 +2013,4,14,7,F9,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,810,0,0,948,13,0,0 +2013,6,18,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1350,22,1,1500,20,1,0 +2013,9,26,4,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1300,1,0,1444,-4,0,0 +2013,6,8,6,UA,11618,Newark Liberty International,Newark,NJ,11292,Denver International,Denver,CO,1209,-1,0,1423,-14,0,0 +2013,10,25,5,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1345,39,1,2205,22,1,0 +2013,8,25,7,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,835,-3,0,926,-9,0,0 +2013,6,4,2,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1955,2,0,2131,-11,0,0 +2013,5,5,7,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,1404,7,0,2212,31,1,0 +2013,6,19,3,UA,11618,Newark Liberty International,Newark,NJ,14679,San Diego International,San Diego,CA,856,29,1,1153,36,1,0 +2013,8,3,6,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1900,7,0,2056,-1,0,0 +2013,8,2,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2015,5,0,2214,-6,0,0 +2013,4,12,5,DL,10721,Logan International,Boston,MA,13487,Minneapolis-St Paul International,Minneapolis,MN,1840,66,1,2100,54,1,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,935,-6,0,1044,-16,0,0 +2013,6,29,6,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,915,-4,0,1210,-9,0,0 +2013,6,4,2,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,2300,17,1,617,-9,0,0 +2013,4,22,1,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,815,-9,0,1040,-12,0,0 +2013,4,30,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,14100,Philadelphia International,Philadelphia,PA,2007,-2,0,2150,15,1,0 +2013,10,16,3,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,-2,0,1514,6,0,0 +2013,9,21,6,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1525,6,0,1640,-2,0,0 +2013,7,15,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1755,73,1,1855,81,1,0 +2013,6,13,4,US,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,2020,69,1,2207,89,1,0 +2013,9,29,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,2025,14,0,2045,7,0,0 +2013,5,27,1,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1600,0,0,1700,-11,0,0 +2013,7,7,7,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1250,-7,0,1530,-14,0,0 +2013,7,1,1,DL,14869,Salt Lake City International,Salt Lake City,UT,13487,Minneapolis-St Paul International,Minneapolis,MN,940,3,0,1311,9,0,0 +2013,8,24,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1135,2,0,1550,14,0,0 +2013,4,21,7,EV,12953,LaGuardia,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1610,-3,0,1755,14,0,0 +2013,4,30,2,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1355,160,1,1549,200,1,0 +2013,7,20,6,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1014,0,0,1120,15,1,0 +2013,4,20,6,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,709,-4,0,743,-5,0,0 +2013,10,20,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11292,Denver International,Denver,CO,1330,0,0,1455,-9,0,0 +2013,6,3,1,UA,14747,Seattle/Tacoma International,Seattle,WA,12266,George Bush Intercontinental/Houston,Houston,TX,803,-9,0,1419,-39,0,0 +2013,7,2,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1355,-4,0,1624,3,0,0 +2013,10,30,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,845,5,0,1159,5,0,0 +2013,10,13,7,MQ,12191,William P Hobby,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,830,-8,0,940,-10,0,0 +2013,7,22,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-2,0,641,1,0,0 +2013,10,16,3,9E,13342,General Mitchell International,Milwaukee,WI,12953,LaGuardia,New York,NY,600,-8,0,918,-24,0,0 +2013,10,31,4,F9,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1530,-4,0,1813,-1,0,0 +2013,5,5,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,5,0,2226,16,1,0 +2013,5,27,1,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,2055,11,0,2227,-4,0,0 +2013,8,17,6,DL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1430,1,0,1727,-5,0,0 +2013,10,29,2,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,0,0,830,-7,0,0 +2013,6,9,7,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,740,-2,0,1040,37,1,0 +2013,4,8,1,AA,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,1340,94,1,1450,93,1,0 +2013,5,3,5,US,12953,LaGuardia,New York,NY,11278,Ronald Reagan Washington National,Washington,DC,2100,21,1,2215,9,0,0 +2013,5,3,5,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13244,Memphis International,Memphis,TN,1320,-2,0,1528,26,1,0 +2013,7,20,6,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1630,-7,0,2140,1,0,0 +2013,5,26,7,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1200,-7,0,1336,-20,0,0 +2013,4,24,3,DL,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,830,28,1,1705,-1,0,0 +2013,4,3,3,WN,10721,Logan International,Boston,MA,13342,General Mitchell International,Milwaukee,WI,610,-5,0,805,-18,0,0 +2013,8,3,6,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,853,30,1,1144,27,1,0 +2013,6,5,3,UA,11042,Cleveland-Hopkins International,Cleveland,OH,12266,George Bush Intercontinental/Houston,Houston,TX,843,-7,0,1047,-21,0,0 +2013,8,10,6,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1130,-1,0,1222,4,0,0 +2013,7,13,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,715,7,0,811,1,0,0 +2013,7,1,1,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1844,8,0,0 +2013,9,24,2,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,645,-2,0,740,-23,0,0 +2013,9,30,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,835,-7,0,935,-17,0,0 +2013,6,12,3,UA,12889,McCarran International,Las Vegas,NV,12264,Washington Dulles International,Washington,DC,705,-1,0,1442,-3,0,0 +2013,8,27,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,1725,4,0,1925,-31,0,0 +2013,5,30,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11278,Ronald Reagan Washington National,Washington,DC,1251,-9,0,1521,-13,0,0 +2013,9,25,3,YV,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1500,-2,0,1649,3,0,0 +2013,5,1,3,UA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1050,-9,0,1839,-11,0,0 +2013,8,25,7,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,925,0,0,1055,2,0,0 +2013,5,31,5,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2051,-10,0,2226,-25,0,0 +2013,9,27,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11066,Port Columbus International,Columbus,OH,1010,4,0,1147,2,0,0 +2013,7,7,7,EV,14730,Louisville International-Standiford Field,Louisville,KY,12264,Washington Dulles International,Washington,DC,1405,-13,0,1544,-26,0,0 +2013,6,23,7,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1545,64,1,1740,46,1,0 +2013,8,7,3,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,933,67,1,1130,48,1,0 +2013,4,23,2,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,725,-4,0,900,5,0,0 +2013,4,12,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1800,0,,2001,0,1,1 +2013,8,11,7,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,1900,6,0,2216,20,1,0 +2013,6,13,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1045,5,0,1420,-2,0,0 +2013,8,26,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1500,21,1,1810,24,1,0 +2013,10,29,2,WN,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,900,-3,0,1230,16,1,0 +2013,10,16,3,WN,13232,Chicago Midway International,Chicago,IL,10721,Logan International,Boston,MA,630,-4,0,940,-14,0,0 +2013,7,12,5,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1820,26,1,2135,75,1,0 +2013,6,5,3,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,702,-15,0,829,-28,0,0 +2013,6,28,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1650,-4,0,1924,-12,0,0 +2013,9,15,7,AA,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1830,-6,0,1935,-5,0,0 +2013,8,22,4,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,1450,-1,0,1656,-5,0,0 +2013,5,24,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14057,Portland International,Portland,OR,1445,15,1,1640,1,0,0 +2013,9,11,3,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,930,-5,0,1055,-1,0,0 +2013,9,13,5,EV,15376,Tucson International,Tucson,AZ,12266,George Bush Intercontinental/Houston,Houston,TX,958,-9,0,1423,-9,0,0 +2013,10,14,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14869,Salt Lake City International,Salt Lake City,UT,1215,-6,0,1415,-4,0,0 +2013,9,27,5,US,14100,Philadelphia International,Philadelphia,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1840,66,1,2135,25,1,0 +2013,6,29,6,US,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,1954,-1,0,2112,0,0,0 +2013,7,17,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11066,Port Columbus International,Columbus,OH,1450,3,0,1815,4,0,0 +2013,8,11,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,1340,27,1,1445,19,1,0 +2013,5,1,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,1335,-10,0,1500,-15,0,0 +2013,8,23,5,WN,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1205,-1,0,1450,5,0,0 +2013,7,29,1,YV,11057,Charlotte Douglas International,Charlotte,NC,13871,Eppley Airfield,Omaha,NE,1119,7,0,1249,19,1,0 +2013,4,20,6,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,-1,0,913,-16,0,0 +2013,9,17,2,F9,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1830,-9,0,1948,-7,0,0 +2013,8,12,1,US,13303,Miami International,Miami,FL,14100,Philadelphia International,Philadelphia,PA,745,-4,0,1035,-4,0,0 +2013,8,26,1,DL,11292,Denver International,Denver,CO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,820,-1,0,1255,3,0,0 +2013,9,20,5,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,745,11,0,1144,-3,0,0 +2013,6,30,7,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1735,42,1,1905,37,1,0 +2013,9,8,7,DL,14747,Seattle/Tacoma International,Seattle,WA,11433,Detroit Metro Wayne County,Detroit,MI,715,-2,0,1432,7,0,0 +2013,10,7,1,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,700,-6,0,858,-17,0,0 +2013,4,15,1,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13198,Kansas City International,Kansas City,MO,1905,48,1,2335,32,1,0 +2013,8,27,2,UA,14893,Sacramento International,Sacramento,CA,11292,Denver International,Denver,CO,545,-8,0,906,-22,0,0 +2013,10,13,7,F9,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1745,-4,0,1918,-2,0,0 +2013,4,13,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,1500,-3,0,1620,-5,0,0 +2013,4,21,7,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2245,3,0,2355,-6,0,0 +2013,10,24,4,AS,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,750,2,0,1020,5,0,0 +2013,4,16,2,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1720,-6,0,1939,5,0,0 +2013,8,27,2,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,2155,-6,0,2307,-23,0,0 +2013,7,1,1,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1420,3,0,1550,11,0,0 +2013,6,16,7,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1306,-2,0,1436,3,0,0 +2013,6,19,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1410,0,0,1545,-10,0,0 +2013,10,30,3,DL,10529,Bradley International,Hartford,CT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-3,0,843,-9,0,0 +2013,10,29,2,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,738,10,0,930,11,0,0 +2013,8,4,7,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,0,0,1555,-13,0,0 +2013,5,14,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1051,-10,0,1145,-25,0,0 +2013,9,29,7,VX,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,920,36,1,1755,18,1,0 +2013,7,1,1,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,2059,13,0,2226,3,0,0 +2013,9,1,7,MQ,13930,Chicago O'Hare International,Chicago,IL,13244,Memphis International,Memphis,TN,2210,7,0,2355,-10,0,0 +2013,8,22,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10529,Bradley International,Hartford,CT,1155,23,1,1300,43,1,0 +2013,10,17,4,B6,12954,Long Beach Airport,Long Beach,CA,12264,Washington Dulles International,Washington,DC,2120,-8,0,501,-31,0,0 +2013,10,12,6,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-5,0,1259,-13,0,0 +2013,10,30,3,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1130,-6,0,1234,-24,0,0 +2013,9,5,4,US,13930,Chicago O'Hare International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,710,-12,0,857,-42,0,0 +2013,6,18,2,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1140,4,0,1305,15,1,0 +2013,4,2,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1550,0,0,1720,5,0,0 +2013,6,30,7,AA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,1630,11,0,1905,-11,0,0 +2013,9,25,3,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1700,19,1,1815,12,0,0 +2013,6,10,1,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1214,5,0,1335,-22,0,0 +2013,5,30,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1120,1,0,1225,1,0,0 +2013,8,7,3,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1325,-7,0,1619,-19,0,0 +2013,10,6,7,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1829,19,1,2100,13,0,0 +2013,8,21,3,9E,10529,Bradley International,Hartford,CT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,19,1,1907,5,0,0 +2013,10,29,2,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1032,0,0,1350,-27,0,0 +2013,7,10,3,OO,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1654,104,1,1843,115,1,0 +2013,8,30,5,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1955,27,1,2246,13,0,0 +2013,4,25,4,US,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,745,-1,0,1039,-5,0,0 +2013,9,9,1,B6,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1330,-8,0,1612,-26,0,0 +2013,8,28,3,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,940,-2,0,1620,8,0,0 +2013,4,9,2,EV,12264,Washington Dulles International,Washington,DC,13931,Norfolk International,Norfolk,VA,825,-4,0,931,-13,0,0 +2013,9,9,1,AA,10529,Bradley International,Hartford,CT,13303,Miami International,Miami,FL,540,-8,0,850,-26,0,0 +2013,10,30,3,US,11057,Charlotte Douglas International,Charlotte,NC,12478,John F. Kennedy International,New York,NY,1825,1,0,2023,11,0,0 +2013,5,15,3,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1025,-2,0,1313,-8,0,0 +2013,9,19,4,AS,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1310,0,0,1610,0,0,0 +2013,8,24,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14057,Portland International,Portland,OR,2104,12,0,2324,-12,0,0 +2013,8,17,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,1835,-4,0,2105,-8,0,0 +2013,7,18,4,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,2254,-11,0,2326,-10,0,0 +2013,5,4,6,YV,11057,Charlotte Douglas International,Charlotte,NC,10529,Bradley International,Hartford,CT,1429,38,1,1619,44,1,0 +2013,6,22,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1315,-1,0,1505,-16,0,0 +2013,10,23,3,UA,10140,Albuquerque International Sunport,Albuquerque,NM,12264,Washington Dulles International,Washington,DC,736,-8,0,1316,-28,0,0 +2013,6,8,6,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,700,-3,0,1250,-15,0,0 +2013,8,19,1,WN,10423,Austin - Bergstrom International,Austin,TX,12889,McCarran International,Las Vegas,NV,605,-3,0,700,-22,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1935,68,1,2249,47,1,0 +2013,10,26,6,UA,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1931,4,0,2108,0,0,0 +2013,8,2,5,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,15304,Tampa International,Tampa,FL,800,14,0,1015,5,0,0 +2013,4,22,1,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,1715,-4,0,1815,-24,0,0 +2013,10,7,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1630,-2,0,1911,2,0,0 +2013,5,13,1,WN,11292,Denver International,Denver,CO,14057,Portland International,Portland,OR,2100,2,0,2235,0,0,0 +2013,6,28,5,9E,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1400,0,,1636,0,1,1 +2013,6,18,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,715,-6,0,940,-15,0,0 +2013,7,29,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11278,Ronald Reagan Washington National,Washington,DC,1355,-5,0,2158,-28,0,0 +2013,6,20,4,US,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,735,-7,0,903,-9,0,0 +2013,10,16,3,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,-1,0,1524,-20,0,0 +2013,10,4,5,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,2125,1,0,148,-16,0,0 +2013,5,21,2,AS,14747,Seattle/Tacoma International,Seattle,WA,13891,Ontario International,Ontario,CA,730,-6,0,959,0,0,0 +2013,4,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1400,-2,0,1600,-4,0,0 +2013,9,3,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11057,Charlotte Douglas International,Charlotte,NC,1915,-5,0,2243,-21,0,0 +2013,9,18,3,EV,11292,Denver International,Denver,CO,11042,Cleveland-Hopkins International,Cleveland,OH,1930,-2,0,25,-12,0,0 +2013,10,4,5,VX,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1120,0,0,1320,6,0,0 +2013,4,26,5,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1906,-11,0,2227,1,0,0 +2013,8,30,5,YV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12264,Washington Dulles International,Washington,DC,725,-9,0,1116,-7,0,0 +2013,4,13,6,WN,14683,San Antonio International,San Antonio,TX,12892,Los Angeles International,Los Angeles,CA,1035,-1,0,1200,-20,0,0 +2013,8,24,6,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1500,13,0,2130,13,0,0 +2013,6,7,5,HA,13796,Metropolitan Oakland International,Oakland,CA,13830,Kahului Airport,Kahului,HI,830,-3,0,1045,-30,0,0 +2013,10,25,5,UA,13830,Kahului Airport,Kahului,HI,14771,San Francisco International,San Francisco,CA,1225,489,1,2016,489,1,0 +2013,7,5,5,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,630,-3,0,754,-15,0,0 +2013,10,10,4,EV,12451,Jacksonville International,Jacksonville,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1500,19,1,1626,3,0,0 +2013,6,3,1,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,-2,0,1420,-6,0,0 +2013,5,3,5,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1205,17,1,1325,8,0,0 +2013,6,30,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1910,4,0,2359,-7,0,0 +2013,7,27,6,EV,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1655,37,1,1955,23,1,0 +2013,10,4,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,1150,-1,0,1425,-10,0,0 +2013,6,21,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1410,1,0,1515,1,0,0 +2013,10,23,3,WN,11292,Denver International,Denver,CO,15304,Tampa International,Tampa,FL,1225,1,0,1740,-7,0,0 +2013,10,9,3,AA,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,910,-4,0,1145,-31,0,0 +2013,4,2,2,B6,12478,John F. Kennedy International,New York,NY,14635,Southwest Florida International,Fort Myers,FL,1530,-9,0,1849,-5,0,0 +2013,8,12,1,EV,14524,Richmond International,Richmond,VA,11618,Newark Liberty International,Newark,NJ,824,23,1,946,7,0,0 +2013,6,27,4,US,11057,Charlotte Douglas International,Charlotte,NC,11618,Newark Liberty International,Newark,NJ,2215,43,1,2359,37,1,0 +2013,7,1,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14122,Pittsburgh International,Pittsburgh,PA,1710,0,,1810,0,1,1 +2013,7,31,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,2010,-2,0,2230,8,0,0 +2013,7,5,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,905,-1,0,1135,6,0,0 +2013,7,22,1,WN,14307,Theodore Francis Green State,Providence,RI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2030,4,0,2155,-8,0,0 +2013,6,21,5,OO,11042,Cleveland-Hopkins International,Cleveland,OH,13930,Chicago O'Hare International,Chicago,IL,1055,-5,0,1115,-14,0,0 +2013,8,15,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,1345,-2,0,1620,-12,0,0 +2013,7,30,2,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1710,-4,0,2155,-24,0,0 +2013,5,3,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10721,Logan International,Boston,MA,1550,0,0,2035,-11,0,0 +2013,9,6,5,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,1711,2,0,1846,-11,0,0 +2013,8,11,7,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,-4,0,1114,-7,0,0 +2013,10,11,5,WN,12889,McCarran International,Las Vegas,NV,12191,William P Hobby,Houston,TX,1105,6,0,1600,1,0,0 +2013,5,11,6,WN,13198,Kansas City International,Kansas City,MO,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1615,84,1,2015,73,1,0 +2013,8,27,2,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,710,-7,0,941,-8,0,0 +2013,5,31,5,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,-5,0,1806,-9,0,0 +2013,4,28,7,FL,11278,Ronald Reagan Washington National,Washington,DC,13342,General Mitchell International,Milwaukee,WI,655,-11,0,753,-19,0,0 +2013,4,15,1,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,2050,-1,0,2224,-17,0,0 +2013,4,24,3,VX,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,2335,1,0,740,-12,0,0 +2013,7,16,2,UA,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,1608,-11,0,29,-13,0,0 +2013,9,23,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1255,12,0,1531,14,0,0 +2013,8,28,3,WN,13232,Chicago Midway International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,930,-3,0,1145,-15,0,0 +2013,6,6,4,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,910,-1,0,1305,-12,0,0 +2013,10,22,2,FL,14524,Richmond International,Richmond,VA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-1,0,925,0,0,0 +2013,7,21,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12339,Indianapolis International,Indianapolis,IN,1825,14,0,45,18,1,0 +2013,5,22,3,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,16,1,2230,25,1,0 +2013,10,9,3,WN,13198,Kansas City International,Kansas City,MO,12892,Los Angeles International,Los Angeles,CA,1855,0,0,2030,5,0,0 +2013,4,7,7,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1225,-2,0,1426,-12,0,0 +2013,8,16,5,AS,14747,Seattle/Tacoma International,Seattle,WA,14679,San Diego International,San Diego,CA,1530,1,0,1805,10,0,0 +2013,4,6,6,DL,14679,San Diego International,San Diego,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,2250,14,0,424,-10,0,0 +2013,5,1,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1215,-1,0,1240,-4,0,0 +2013,10,25,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,750,1,0,1125,-8,0,0 +2013,4,27,6,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1850,119,1,1950,108,1,0 +2013,6,1,6,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1435,2,0,1600,11,0,0 +2013,6,15,6,WN,14893,Sacramento International,Sacramento,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,8,0,1655,2,0,0 +2013,9,15,7,DL,14869,Salt Lake City International,Salt Lake City,UT,11433,Detroit Metro Wayne County,Detroit,MI,730,-6,0,1301,-13,0,0 +2013,7,27,6,DL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,12,0,1407,7,0,0 +2013,4,11,4,UA,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,940,111,1,1114,137,1,0 +2013,9,1,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1550,0,0,1700,0,0,0 +2013,9,10,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1240,18,1,1520,15,1,0 +2013,6,17,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1156,-3,0,1449,-23,0,0 +2013,9,2,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10423,Austin - Bergstrom International,Austin,TX,1533,39,1,1724,30,1,0 +2013,7,10,3,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,48,1,2050,46,1,0 +2013,8,12,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1955,9,0,2330,-1,0,0 +2013,6,20,4,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1920,13,0,2020,7,0,0 +2013,6,18,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,823,-5,0,1054,18,1,0 +2013,5,21,2,WN,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,1515,0,0,1810,-9,0,0 +2013,10,15,2,9E,14122,Pittsburgh International,Pittsburgh,PA,11433,Detroit Metro Wayne County,Detroit,MI,1019,104,1,1130,92,1,0 +2013,10,16,3,AA,13303,Miami International,Miami,FL,12953,LaGuardia,New York,NY,1235,-9,0,1529,-12,0,0 +2013,4,30,2,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,2115,-2,0,2310,-26,0,0 +2013,8,2,5,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1355,-4,0,1510,-7,0,0 +2013,10,3,4,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,910,-1,0,954,5,0,0 +2013,8,8,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13198,Kansas City International,Kansas City,MO,1035,-2,0,1146,-2,0,0 +2013,4,22,1,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,18,1,1824,32,1,0 +2013,4,12,5,MQ,13930,Chicago O'Hare International,Chicago,IL,10140,Albuquerque International Sunport,Albuquerque,NM,1950,246,1,2145,245,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1105,-4,0,1141,-17,0,0 +2013,10,8,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1058,0,0,1132,4,0,0 +2013,10,18,5,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1810,-5,0,2139,-16,0,0 +2013,7,9,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1520,2,0,1730,-3,0,0 +2013,7,21,7,WN,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,645,-3,0,745,-5,0,0 +2013,9,18,3,UA,13930,Chicago O'Hare International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,900,-9,0,1217,-26,0,0 +2013,10,3,4,UA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11292,Denver International,Denver,CO,815,-6,0,1017,-9,0,0 +2013,8,28,3,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,706,-3,0,1052,11,0,0 +2013,5,30,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1655,39,1,2005,79,1,0 +2013,9,1,7,AS,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1835,-14,0,2025,-23,0,0 +2013,9,2,1,9E,15016,Lambert-St. Louis International,St. Louis,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1700,-7,0,1915,-15,0,0 +2013,6,3,1,WN,11292,Denver International,Denver,CO,14771,San Francisco International,San Francisco,CA,825,67,1,1010,48,1,0 +2013,6,6,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10693,Nashville International,Nashville,TN,2257,-3,0,2302,-16,0,0 +2013,8,6,2,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,5,0,1011,19,1,0 +2013,7,2,2,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13851,Will Rogers World,Oklahoma City,OK,755,-4,0,845,-8,0,0 +2013,10,25,5,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1850,10,0,2005,7,0,0 +2013,9,29,7,US,11278,Ronald Reagan Washington National,Washington,DC,15304,Tampa International,Tampa,FL,1130,-9,0,1352,-33,0,0 +2013,8,2,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12339,Indianapolis International,Indianapolis,IN,1118,-1,0,1352,-1,0,0 +2013,9,26,4,F9,13342,General Mitchell International,Milwaukee,WI,11292,Denver International,Denver,CO,905,-6,0,1037,-12,0,0 +2013,6,24,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2035,109,1,2331,194,1,0 +2013,5,24,5,EV,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2005,-2,0,2220,-10,0,0 +2013,5,29,3,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1625,10,0,1720,6,0,0 +2013,4,18,4,DL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,630,4,0,839,-1,0,0 +2013,10,25,5,B6,14635,Southwest Florida International,Fort Myers,FL,10529,Bradley International,Hartford,CT,1950,-16,0,2239,-21,0,0 +2013,9,3,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1625,10,0,1803,-26,0,0 +2013,7,10,3,WN,10693,Nashville International,Nashville,TN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1305,-1,0,1550,-5,0,0 +2013,8,4,7,OO,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1119,39,1,1405,30,1,0 +2013,9,14,6,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,634,-5,0,715,2,0,0 +2013,4,17,3,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1146,-4,0,1429,-17,0,0 +2013,8,18,7,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-1,0,1454,12,0,0 +2013,10,6,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,1522,-5,0,1648,-6,0,0 +2013,5,21,2,WN,10721,Logan International,Boston,MA,13198,Kansas City International,Kansas City,MO,1655,106,1,1930,113,1,0 +2013,7,27,6,WN,13796,Metropolitan Oakland International,Oakland,CA,11292,Denver International,Denver,CO,605,4,0,940,-10,0,0 +2013,4,24,3,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1100,6,0,1200,8,0,0 +2013,9,20,5,WN,14122,Pittsburgh International,Pittsburgh,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1440,10,0,1545,2,0,0 +2013,8,11,7,WN,10423,Austin - Bergstrom International,Austin,TX,11292,Denver International,Denver,CO,650,2,0,800,2,0,0 +2013,4,12,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1510,13,0,1620,-3,0,0 +2013,9,23,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12953,LaGuardia,New York,NY,1859,-8,0,2327,-36,0,0 +2013,6,9,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,805,-5,0,1105,-9,0,0 +2013,6,27,4,EV,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,1452,3,0,1505,-7,0,0 +2013,7,26,5,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1125,77,1,1720,66,1,0 +2013,4,27,6,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,-8,0,2011,-12,0,0 +2013,5,16,4,DL,12953,LaGuardia,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1600,0,0,1837,15,1,0 +2013,6,11,2,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,12892,Los Angeles International,Los Angeles,CA,1554,-1,0,1721,-12,0,0 +2013,5,8,3,WN,10140,Albuquerque International Sunport,Albuquerque,NM,11259,Dallas Love Field,Dallas,TX,610,-2,0,850,-7,0,0 +2013,7,7,7,WN,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,1225,6,0,1335,1,0,0 +2013,7,5,5,AA,13303,Miami International,Miami,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1355,12,0,1630,-12,0,0 +2013,5,8,3,AA,10140,Albuquerque International Sunport,Albuquerque,NM,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1550,2,0,1835,8,0,0 +2013,4,2,2,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,2115,45,1,2250,38,1,0 +2013,6,2,7,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,828,5,0,1357,-7,0,0 +2013,9,27,5,YV,11057,Charlotte Douglas International,Charlotte,NC,12264,Washington Dulles International,Washington,DC,1959,29,1,2117,30,1,0 +2013,7,18,4,VX,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1255,-5,0,1405,-11,0,0 +2013,4,29,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1725,-2,0,1856,-10,0,0 +2013,8,24,6,UA,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1620,6,0,1810,5,0,0 +2013,10,23,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1924,-1,0,2202,-2,0,0 +2013,7,6,6,WN,12892,Los Angeles International,Los Angeles,CA,13495,Louis Armstrong New Orleans International,New Orleans,LA,1400,11,0,1950,0,0,0 +2013,9,2,1,AA,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1250,-6,0,1400,-21,0,0 +2013,6,2,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,1355,9,0,1750,7,0,0 +2013,5,15,3,MQ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1320,24,1,1630,18,1,0 +2013,10,22,2,OO,13851,Will Rogers World,Oklahoma City,OK,14869,Salt Lake City International,Salt Lake City,UT,615,-2,0,747,-12,0,0 +2013,7,18,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12889,McCarran International,Las Vegas,NV,1455,6,0,1555,26,1,0 +2013,10,1,2,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,930,0,0,1045,-3,0,0 +2013,7,15,1,WN,12892,Los Angeles International,Los Angeles,CA,14683,San Antonio International,San Antonio,TX,805,-2,0,1255,2,0,0 +2013,9,24,2,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1828,-4,0,1958,-8,0,0 +2013,5,8,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,2110,-7,0,2125,0,0,0 +2013,9,12,4,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1705,30,1,1945,23,1,0 +2013,9,5,4,WN,13198,Kansas City International,Kansas City,MO,13232,Chicago Midway International,Chicago,IL,2045,3,0,2200,-1,0,0 +2013,9,29,7,UA,11618,Newark Liberty International,Newark,NJ,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1916,23,1,2209,9,0,0 +2013,10,17,4,EV,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1935,69,1,2059,69,1,0 +2013,6,26,3,OO,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,850,-2,0,1125,16,1,0 +2013,6,14,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,845,59,1,945,46,1,0 +2013,9,30,1,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,600,-7,0,646,-15,0,0 +2013,5,15,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1859,-5,0,2220,-15,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,940,-1,0,1100,-34,0,0 +2013,9,9,1,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,700,-4,0,840,-18,0,0 +2013,8,7,3,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,805,11,0,1015,15,1,0 +2013,7,12,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1620,-2,0,1728,-11,0,0 +2013,4,18,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,15304,Tampa International,Tampa,FL,1535,78,1,1812,85,1,0 +2013,8,6,2,YV,11057,Charlotte Douglas International,Charlotte,NC,13198,Kansas City International,Kansas City,MO,750,87,1,914,93,1,0 +2013,4,26,5,B6,12451,Jacksonville International,Jacksonville,FL,14843,Luis Munoz Marin International,San Juan,PR,1035,0,0,1330,-4,0,0 +2013,6,7,5,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2050,-2,0,2205,8,0,0 +2013,4,30,2,OO,13930,Chicago O'Hare International,Chicago,IL,14683,San Antonio International,San Antonio,TX,1205,-3,0,1458,-19,0,0 +2013,6,27,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12892,Los Angeles International,Los Angeles,CA,1915,0,0,2113,0,0,0 +2013,4,20,6,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11042,Cleveland-Hopkins International,Cleveland,OH,755,-5,0,1048,-19,0,0 +2013,4,4,4,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,1750,23,1,1910,28,1,0 +2013,4,30,2,WN,14771,San Francisco International,San Francisco,CA,12889,McCarran International,Las Vegas,NV,1835,-3,0,2005,-11,0,0 +2013,9,25,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1025,1,0,1115,-6,0,0 +2013,7,1,1,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,757,-8,0,940,14,0,0 +2013,4,6,6,WN,14893,Sacramento International,Sacramento,CA,14679,San Diego International,San Diego,CA,645,-1,0,810,-5,0,0 +2013,4,1,1,AS,13830,Kahului Airport,Kahului,HI,13796,Metropolitan Oakland International,Oakland,CA,1515,-7,0,2317,-36,0,0 +2013,5,2,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,0,0,1045,-9,0,0 +2013,5,27,1,WN,12889,McCarran International,Las Vegas,NV,13871,Eppley Airfield,Omaha,NE,940,23,1,1415,22,1,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,620,-4,0,750,-11,0,0 +2013,6,19,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,905,0,0,955,-1,0,0 +2013,9,27,5,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,12953,LaGuardia,New York,NY,1720,11,0,2100,14,0,0 +2013,6,20,4,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1910,3,0,2035,4,0,0 +2013,5,20,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,817,66,1,911,64,1,0 +2013,8,31,6,DL,14869,Salt Lake City International,Salt Lake City,UT,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1705,0,0,2224,21,1,0 +2013,6,7,5,WN,14122,Pittsburgh International,Pittsburgh,PA,11292,Denver International,Denver,CO,945,-5,0,1105,-14,0,0 +2013,5,18,6,WN,13232,Chicago Midway International,Chicago,IL,11292,Denver International,Denver,CO,1425,21,1,1555,29,1,0 +2013,6,21,5,US,12451,Jacksonville International,Jacksonville,FL,11057,Charlotte Douglas International,Charlotte,NC,700,-5,0,819,-18,0,0 +2013,7,28,7,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-4,0,1317,-12,0,0 +2013,7,25,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,2340,0,0,626,3,0,0 +2013,8,9,5,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,715,4,0,1005,8,0,0 +2013,10,26,6,US,14100,Philadelphia International,Philadelphia,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,815,-6,0,1021,-22,0,0 +2013,5,24,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,2000,-8,0,2128,6,0,0 +2013,4,8,1,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1455,14,0,1600,20,1,0 +2013,10,18,5,US,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1700,-1,0,1837,3,0,0 +2013,6,27,4,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,-4,0,2045,43,1,0 +2013,10,17,4,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,13232,Chicago Midway International,Chicago,IL,1110,0,0,1230,12,0,0 +2013,5,21,2,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1825,22,1,2018,11,0,0 +2013,8,17,6,UA,10721,Logan International,Boston,MA,12264,Washington Dulles International,Washington,DC,1423,-3,0,1610,0,0,0 +2013,5,28,2,EV,11618,Newark Liberty International,Newark,NJ,11278,Ronald Reagan Washington National,Washington,DC,1309,11,0,1414,13,0,0 +2013,9,15,7,DL,12892,Los Angeles International,Los Angeles,CA,14869,Salt Lake City International,Salt Lake City,UT,1637,-3,0,1925,-7,0,0 +2013,4,26,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,12892,Los Angeles International,Los Angeles,CA,1305,13,0,1410,5,0,0 +2013,9,11,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,1125,4,0,1300,0,0,0 +2013,5,15,3,DL,13303,Miami International,Miami,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1630,34,1,1832,34,1,0 +2013,8,25,7,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,940,-2,0,1051,-8,0,0 +2013,4,17,3,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,655,1,0,955,6,0,0 +2013,6,2,7,MQ,13303,Miami International,Miami,FL,12339,Indianapolis International,Indianapolis,IN,1910,13,0,2155,19,1,0 +2013,10,31,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1529,33,1,1847,17,1,0 +2013,5,31,5,UA,13891,Ontario International,Ontario,CA,12266,George Bush Intercontinental/Houston,Houston,TX,600,-1,0,1106,-10,0,0 +2013,4,18,4,VX,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1345,-2,0,1505,-9,0,0 +2013,10,10,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,15304,Tampa International,Tampa,FL,925,-3,0,1230,-9,0,0 +2013,5,17,5,UA,11292,Denver International,Denver,CO,13204,Orlando International,Orlando,FL,835,-4,0,1405,-1,0,0 +2013,7,4,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1226,-5,0,1524,15,1,0 +2013,9,10,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,910,5,0,1010,-10,0,0 +2013,5,21,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1100,-14,0,1314,-30,0,0 +2013,7,15,1,UA,13930,Chicago O'Hare International,Chicago,IL,14908,John Wayne Airport-Orange County,Santa Ana,CA,2015,-4,0,2238,-36,0,0 +2013,6,16,7,MQ,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1600,-5,0,1645,-6,0,0 +2013,9,26,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1355,67,1,1915,51,1,0 +2013,4,13,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13871,Eppley Airfield,Omaha,NE,1519,15,1,1731,7,0,0 +2013,8,14,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1549,8,0,1914,-8,0,0 +2013,10,3,4,WN,12953,LaGuardia,New York,NY,13232,Chicago Midway International,Chicago,IL,930,-2,0,1055,14,0,0 +2013,6,7,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1530,8,0,1556,-4,0,0 +2013,5,9,4,EV,11042,Cleveland-Hopkins International,Cleveland,OH,14524,Richmond International,Richmond,VA,1119,-5,0,1238,-3,0,0 +2013,10,10,4,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,11057,Charlotte Douglas International,Charlotte,NC,530,-6,0,625,7,0,0 +2013,8,13,2,EV,13930,Chicago O'Hare International,Chicago,IL,13871,Eppley Airfield,Omaha,NE,752,-9,0,919,-13,0,0 +2013,8,16,5,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,840,31,1,935,45,1,0 +2013,10,1,2,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,2246,2,0,15,-10,0,0 +2013,8,4,7,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1615,-6,0,1739,-23,0,0 +2013,6,27,4,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1210,-6,0,1435,-8,0,0 +2013,7,19,5,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,12478,John F. Kennedy International,New York,NY,1220,16,1,1355,10,0,0 +2013,7,22,1,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,835,0,0,1045,-1,0,0 +2013,4,4,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,1515,1,0,1855,0,0,0 +2013,7,10,3,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1145,18,1,1240,7,0,0 +2013,8,9,5,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1427,7,0,1632,10,0,0 +2013,8,30,5,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,2002,100,1,2057,104,1,0 +2013,4,30,2,B6,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2358,0,0,744,7,0,0 +2013,4,25,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14122,Pittsburgh International,Pittsburgh,PA,905,-9,0,1047,-16,0,0 +2013,6,3,1,AS,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,840,-9,0,1017,-1,0,0 +2013,10,23,3,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11066,Port Columbus International,Columbus,OH,1632,-3,0,2008,-9,0,0 +2013,7,5,5,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1101,-3,0,1245,0,0,0 +2013,5,29,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15304,Tampa International,Tampa,FL,1255,6,0,1615,5,0,0 +2013,7,19,5,DL,14869,Salt Lake City International,Salt Lake City,UT,14908,John Wayne Airport-Orange County,Santa Ana,CA,1515,-5,0,1608,5,0,0 +2013,7,10,3,WN,10693,Nashville International,Nashville,TN,13931,Norfolk International,Norfolk,VA,2020,43,1,2300,53,1,0 +2013,10,9,3,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,700,-2,0,949,8,0,0 +2013,8,2,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12889,McCarran International,Las Vegas,NV,2220,-3,0,2300,-9,0,0 +2013,4,17,3,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,10693,Nashville International,Nashville,TN,1215,0,0,1240,-3,0,0 +2013,4,21,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,1805,-2,0,2030,-5,0,0 +2013,8,22,4,AA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,1940,50,1,2250,39,1,0 +2013,6,9,7,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,738,10,0,905,24,1,0 +2013,10,23,3,WN,14683,San Antonio International,San Antonio,TX,11292,Denver International,Denver,CO,940,-3,0,1055,-14,0,0 +2013,10,15,2,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1548,-6,0,1714,-9,0,0 +2013,4,8,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1130,-5,0,1254,-9,0,0 +2013,4,11,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1320,134,1,1530,149,1,0 +2013,5,22,3,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1345,5,0,1714,-1,0,0 +2013,7,24,3,FL,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,1543,62,1,1835,68,1,0 +2013,4,24,3,B6,10721,Logan International,Boston,MA,11278,Ronald Reagan Washington National,Washington,DC,1605,-5,0,1741,-1,0,0 +2013,9,15,7,US,14492,Raleigh-Durham International,Raleigh/Durham,NC,14100,Philadelphia International,Philadelphia,PA,700,-7,0,825,-11,0,0 +2013,6,10,1,DL,12339,Indianapolis International,Indianapolis,IN,14869,Salt Lake City International,Salt Lake City,UT,830,0,0,959,-8,0,0 +2013,8,20,2,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1716,15,1,1843,18,1,0 +2013,10,17,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1715,13,0,1943,18,1,0 +2013,9,4,3,EV,11618,Newark Liberty International,Newark,NJ,12339,Indianapolis International,Indianapolis,IN,1347,-9,0,1556,-19,0,0 +2013,6,15,6,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1350,38,1,1515,22,1,0 +2013,5,5,7,B6,14057,Portland International,Portland,OR,10721,Logan International,Boston,MA,2258,-6,0,720,25,1,0 +2013,10,14,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1310,-5,0,1620,0,0,0 +2013,8,13,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14730,Louisville International-Standiford Field,Louisville,KY,1540,15,1,1845,37,1,0 +2013,8,12,1,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,850,-1,0,1033,-11,0,0 +2013,7,26,5,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1506,-4,0,1743,-5,0,0 +2013,10,14,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1625,0,0,1849,-8,0,0 +2013,10,27,7,UA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1311,-3,0,1630,-14,0,0 +2013,7,14,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1950,-2,0,2050,-6,0,0 +2013,7,18,4,AA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,9,0,1310,-20,0,0 +2013,9,28,6,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2125,-4,0,2245,-12,0,0 +2013,5,14,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14100,Philadelphia International,Philadelphia,PA,2005,-4,0,2147,-20,0,0 +2013,10,21,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12266,George Bush Intercontinental/Houston,Houston,TX,1908,1,0,2023,2,0,0 +2013,4,19,5,WN,15376,Tucson International,Tucson,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,1005,-4,0,1205,-2,0,0 +2013,7,1,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1555,76,1,1911,64,1,0 +2013,9,16,1,OO,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1109,0,0,1237,-17,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,737,-1,0,1005,-27,0,0 +2013,7,26,5,WN,15016,Lambert-St. Louis International,St. Louis,MO,11278,Ronald Reagan Washington National,Washington,DC,835,34,1,1130,26,1,0 +2013,8,9,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14057,Portland International,Portland,OR,2135,13,0,10,-1,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11057,Charlotte Douglas International,Charlotte,NC,730,-4,0,851,-8,0,0 +2013,6,18,2,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,105,-4,0,602,0,0,0 +2013,7,18,4,UA,14771,San Francisco International,San Francisco,CA,13204,Orlando International,Orlando,FL,950,0,0,1817,2,0,0 +2013,4,14,7,UA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1440,3,0,1739,-3,0,0 +2013,4,21,7,DL,12478,John F. Kennedy International,New York,NY,14107,Phoenix Sky Harbor International,Phoenix,AZ,825,-3,0,1104,-24,0,0 +2013,5,2,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14869,Salt Lake City International,Salt Lake City,UT,1240,-1,0,1525,-24,0,0 +2013,10,7,1,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12892,Los Angeles International,Los Angeles,CA,1900,-2,0,2134,-9,0,0 +2013,6,25,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,936,-4,0,952,-3,0,0 +2013,7,6,6,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,835,-2,0,1025,-9,0,0 +2013,8,27,2,UA,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1529,-2,0,1656,-11,0,0 +2013,8,16,5,MQ,14730,Louisville International-Standiford Field,Louisville,KY,13303,Miami International,Miami,FL,1500,20,1,1740,6,0,0 +2013,9,15,7,WN,12451,Jacksonville International,Jacksonville,FL,13931,Norfolk International,Norfolk,VA,1430,1,0,1600,-2,0,0 +2013,8,5,1,B6,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,12478,John F. Kennedy International,New York,NY,1640,153,1,1925,167,1,0 +2013,9,20,5,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1935,-6,0,2135,3,0,0 +2013,8,8,4,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,650,-6,0,835,-22,0,0 +2013,4,23,2,DL,10721,Logan International,Boston,MA,11433,Detroit Metro Wayne County,Detroit,MI,1435,40,1,1649,14,0,0 +2013,7,9,2,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,1027,72,1,1124,67,1,0 +2013,10,27,7,US,14100,Philadelphia International,Philadelphia,PA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1820,365,1,1955,340,1,0 +2013,9,21,6,US,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1310,38,1,1452,17,1,0 +2013,10,23,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,1900,24,1,2035,20,1,0 +2013,4,28,7,EV,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1319,-4,0,1535,-5,0,0 +2013,8,12,1,DL,14679,San Diego International,San Diego,CA,11433,Detroit Metro Wayne County,Detroit,MI,720,-6,0,1445,-29,0,0 +2013,8,2,5,DL,10721,Logan International,Boston,MA,12478,John F. Kennedy International,New York,NY,1710,6,0,1833,2,0,0 +2013,9,21,6,EV,11618,Newark Liberty International,Newark,NJ,10693,Nashville International,Nashville,TN,1015,-10,0,1139,-18,0,0 +2013,8,14,3,US,14100,Philadelphia International,Philadelphia,PA,14122,Pittsburgh International,Pittsburgh,PA,1540,-1,0,1653,-11,0,0 +2013,9,29,7,UA,13930,Chicago O'Hare International,Chicago,IL,14057,Portland International,Portland,OR,1547,-8,0,1813,15,1,0 +2013,5,16,4,OO,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1810,-6,0,1922,-14,0,0 +2013,4,15,1,B6,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1640,-5,0,2020,17,1,0 +2013,5,30,4,FL,10721,Logan International,Boston,MA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1405,3,0,1535,-9,0,0 +2013,6,17,1,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1315,2,0,1442,-6,0,0 +2013,9,27,5,9E,12478,John F. Kennedy International,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,817,-1,0,1023,-12,0,0 +2013,5,23,4,9E,11278,Ronald Reagan Washington National,Washington,DC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1339,-7,0,1520,-21,0,0 +2013,9,4,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1557,-6,0,1746,-2,0,0 +2013,5,3,5,OO,13198,Kansas City International,Kansas City,MO,14771,San Francisco International,San Francisco,CA,1631,2,0,1823,-10,0,0 +2013,7,12,5,UA,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,724,-5,0,931,-17,0,0 +2013,7,21,7,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,934,60,1,1036,42,1,0 +2013,6,27,4,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,17,1,1106,26,1,0 +2013,10,6,7,MQ,13930,Chicago O'Hare International,Chicago,IL,11066,Port Columbus International,Columbus,OH,1920,17,1,2130,26,1,0 +2013,7,3,3,OO,13487,Minneapolis-St Paul International,Minneapolis,MN,15016,Lambert-St. Louis International,St. Louis,MO,1715,-3,0,1853,-12,0,0 +2013,10,24,4,OO,14771,San Francisco International,San Francisco,CA,13198,Kansas City International,Kansas City,MO,911,7,0,1439,-2,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,1217,-2,0,1314,-5,0,0 +2013,4,7,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1822,-4,0,1848,-17,0,0 +2013,7,16,2,UA,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,758,-5,0,1035,-10,0,0 +2013,5,6,1,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12478,John F. Kennedy International,New York,NY,1450,6,0,1757,-22,0,0 +2013,7,14,7,AA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1050,-8,0,1215,-18,0,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1254,174,1,1909,161,1,0 +2013,6,18,2,WN,15304,Tampa International,Tampa,FL,10693,Nashville International,Nashville,TN,1420,28,1,1510,20,1,0 +2013,5,21,2,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,815,-2,0,940,-11,0,0 +2013,5,13,1,B6,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1148,-1,0,1447,-12,0,0 +2013,8,15,4,US,11433,Detroit Metro Wayne County,Detroit,MI,11057,Charlotte Douglas International,Charlotte,NC,825,7,0,1006,27,1,0 +2013,6,10,1,9E,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1353,-2,0,1520,-3,0,0 +2013,9,26,4,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,27,1,2000,14,0,0 +2013,9,3,2,B6,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1725,4,0,2027,-3,0,0 +2013,7,17,3,UA,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,1948,60,1,2125,55,1,0 +2013,6,7,5,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1255,-1,0,1405,-6,0,0 +2013,9,17,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,11433,Detroit Metro Wayne County,Detroit,MI,1015,-3,0,1301,-13,0,0 +2013,5,17,5,UA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1009,0,0,1308,-12,0,0 +2013,6,7,5,AA,12889,McCarran International,Las Vegas,NV,13930,Chicago O'Hare International,Chicago,IL,35,3,0,605,3,0,0 +2013,5,3,5,WN,13232,Chicago Midway International,Chicago,IL,14107,Phoenix Sky Harbor International,Phoenix,AZ,2030,47,1,2210,30,1,0 +2013,10,29,2,DL,13871,Eppley Airfield,Omaha,NE,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1100,-1,0,1408,-9,0,0 +2013,8,17,6,WN,14893,Sacramento International,Sacramento,CA,13891,Ontario International,Ontario,CA,1415,48,1,1530,45,1,0 +2013,9,13,5,US,14100,Philadelphia International,Philadelphia,PA,14307,Theodore Francis Green State,Providence,RI,2050,-5,0,2158,-13,0,0 +2013,7,6,6,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1110,37,1,1223,23,1,0 +2013,4,3,3,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,649,-4,0,806,-10,0,0 +2013,6,4,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,850,-2,0,1025,-15,0,0 +2013,10,31,4,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1519,-6,0,1741,-14,0,0 +2013,5,27,1,US,15304,Tampa International,Tampa,FL,14100,Philadelphia International,Philadelphia,PA,1200,-4,0,1433,-17,0,0 +2013,7,22,1,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,2200,27,1,2346,12,0,0 +2013,4,29,1,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13244,Memphis International,Memphis,TN,640,-6,0,747,-13,0,0 +2013,7,22,1,AA,14100,Philadelphia International,Philadelphia,PA,13303,Miami International,Miami,FL,1840,22,1,2150,64,1,0 +2013,8,31,6,AA,13930,Chicago O'Hare International,Chicago,IL,13198,Kansas City International,Kansas City,MO,1325,6,0,1450,2,0,0 +2013,9,16,1,DL,12889,McCarran International,Las Vegas,NV,13487,Minneapolis-St Paul International,Minneapolis,MN,1129,375,1,1638,356,1,0 +2013,10,16,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1553,-1,0,1750,-14,0,0 +2013,8,29,4,AS,14057,Portland International,Portland,OR,12892,Los Angeles International,Los Angeles,CA,1745,-5,0,2003,-4,0,0 +2013,6,4,2,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1915,1,0,2212,-11,0,0 +2013,8,13,2,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1430,8,0,1800,-9,0,0 +2013,9,11,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1300,-7,0,1429,-12,0,0 +2013,7,2,2,B6,12478,John F. Kennedy International,New York,NY,10792,Buffalo Niagara International,Buffalo,NY,752,4,0,913,-2,0,0 +2013,9,6,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,1810,-1,0,1946,-5,0,0 +2013,5,31,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2040,0,0,2250,5,0,0 +2013,7,27,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14747,Seattle/Tacoma International,Seattle,WA,2114,0,0,2340,7,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1755,1,0,1912,-8,0,0 +2013,4,26,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1215,-1,0,1538,-15,0,0 +2013,10,20,7,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,14869,Salt Lake City International,Salt Lake City,UT,745,-1,0,1029,-6,0,0 +2013,9,3,2,B6,12954,Long Beach Airport,Long Beach,CA,14771,San Francisco International,San Francisco,CA,700,0,0,827,-6,0,0 +2013,9,14,6,WN,14771,San Francisco International,San Francisco,CA,13342,General Mitchell International,Milwaukee,WI,730,-4,0,1330,-8,0,0 +2013,10,6,7,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,-6,0,2223,-8,0,0 +2013,7,7,7,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1155,181,1,1804,172,1,0 +2013,10,16,3,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,655,-6,0,845,-17,0,0 +2013,5,21,2,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1830,56,1,1930,80,1,0 +2013,5,12,7,US,14100,Philadelphia International,Philadelphia,PA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1840,-6,0,2128,-19,0,0 +2013,8,11,7,OO,14771,San Francisco International,San Francisco,CA,14869,Salt Lake City International,Salt Lake City,UT,1505,31,1,1759,26,1,0 +2013,8,25,7,WN,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1825,3,0,2020,-13,0,0 +2013,9,18,3,F9,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11292,Denver International,Denver,CO,630,-5,0,727,-9,0,0 +2013,6,9,7,WN,12191,William P Hobby,Houston,TX,15016,Lambert-St. Louis International,St. Louis,MO,1005,15,1,1200,7,0,0 +2013,8,31,6,UA,14771,San Francisco International,San Francisco,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1246,-3,0,1832,3,0,0 +2013,8,25,7,UA,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,705,-8,0,839,-6,0,0 +2013,6,30,7,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1710,176,1,1855,173,1,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,835,5,0,959,-10,0,0 +2013,6,8,6,WN,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1725,-1,0,1800,-10,0,0 +2013,4,14,7,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-7,0,1905,5,0,0 +2013,9,19,4,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,525,-4,0,815,-12,0,0 +2013,5,2,4,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1031,-7,0,1327,-17,0,0 +2013,9,30,1,DL,13303,Miami International,Miami,FL,12892,Los Angeles International,Los Angeles,CA,705,-2,0,939,-17,0,0 +2013,4,4,4,DL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1755,-5,0,2055,15,1,0 +2013,9,21,6,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,-3,0,1910,-6,0,0 +2013,9,29,7,US,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-8,0,1048,-44,0,0 +2013,9,28,6,DL,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1757,-1,0,2052,-12,0,0 +2013,10,30,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,14635,Southwest Florida International,Fort Myers,FL,1210,2,0,1505,-17,0,0 +2013,9,16,1,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,525,-3,0,847,8,0,0 +2013,7,25,4,MQ,14122,Pittsburgh International,Pittsburgh,PA,13930,Chicago O'Hare International,Chicago,IL,1035,-1,0,1105,-5,0,0 +2013,4,16,2,AA,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1305,166,1,1625,148,1,0 +2013,6,17,1,WN,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,1145,10,0,1305,10,0,0 +2013,4,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,15016,Lambert-St. Louis International,St. Louis,MO,815,2,0,950,6,0,0 +2013,9,4,3,EV,12264,Washington Dulles International,Washington,DC,14524,Richmond International,Richmond,VA,1650,1,0,1736,-6,0,0 +2013,7,14,7,OO,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,700,-4,0,804,0,0,0 +2013,5,4,6,UA,12264,Washington Dulles International,Washington,DC,14747,Seattle/Tacoma International,Seattle,WA,1611,11,0,1858,-36,0,0 +2013,8,8,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1400,-1,0,1554,-9,0,0 +2013,4,22,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,1305,5,0,1640,-1,0,0 +2013,7,16,2,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1705,-2,0,2020,-30,0,0 +2013,9,5,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,2037,2,0,2204,-2,0,0 +2013,5,10,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,625,-3,0,1025,-17,0,0 +2013,10,11,5,UA,14635,Southwest Florida International,Fort Myers,FL,11618,Newark Liberty International,Newark,NJ,1100,7,0,1351,27,1,0 +2013,4,14,7,WN,11259,Dallas Love Field,Dallas,TX,13851,Will Rogers World,Oklahoma City,OK,2020,6,0,2110,4,0,0 +2013,4,29,1,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,14771,San Francisco International,San Francisco,CA,1317,-4,0,1530,-13,0,0 +2013,5,12,7,WN,10529,Bradley International,Hartford,CT,12889,McCarran International,Las Vegas,NV,1420,1,0,1700,-32,0,0 +2013,10,17,4,WN,12889,McCarran International,Las Vegas,NV,10800,Bob Hope,Burbank,CA,2040,1,0,2145,-5,0,0 +2013,6,15,6,DL,12478,John F. Kennedy International,New York,NY,10721,Logan International,Boston,MA,1200,-4,0,1314,-24,0,0 +2013,6,27,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,1705,143,1,1855,156,1,0 +2013,6,19,3,WN,12889,McCarran International,Las Vegas,NV,13796,Metropolitan Oakland International,Oakland,CA,2045,-3,0,2210,1,0,0 +2013,5,30,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-6,0,1058,-10,0,0 +2013,9,20,5,WN,12191,William P Hobby,Houston,TX,13198,Kansas City International,Kansas City,MO,1030,38,1,1220,37,1,0 +2013,4,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14679,San Diego International,San Diego,CA,2130,-6,0,2328,36,1,0 +2013,5,2,4,B6,13204,Orlando International,Orlando,FL,10721,Logan International,Boston,MA,850,-5,0,1146,-8,0,0 +2013,8,11,7,UA,12264,Washington Dulles International,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1900,2,0,2117,-6,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1055,-4,0,1202,-16,0,0 +2013,4,13,6,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,1350,-5,0,1630,25,1,0 +2013,9,17,2,B6,10721,Logan International,Boston,MA,12451,Jacksonville International,Jacksonville,FL,700,-3,0,950,-12,0,0 +2013,5,24,5,WN,13796,Metropolitan Oakland International,Oakland,CA,12892,Los Angeles International,Los Angeles,CA,1520,9,0,1640,8,0,0 +2013,6,15,6,OO,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,1252,13,0,1501,14,0,0 +2013,7,8,1,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,2,0,1313,-5,0,0 +2013,5,19,7,F9,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,615,-10,0,716,-6,0,0 +2013,8,3,6,DL,12478,John F. Kennedy International,New York,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,620,-2,0,842,-14,0,0 +2013,7,4,4,FL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,14100,Philadelphia International,Philadelphia,PA,1116,4,0,1350,0,0,0 +2013,6,13,4,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14057,Portland International,Portland,OR,1930,-4,0,2144,8,0,0 +2013,10,22,2,AA,12892,Los Angeles International,Los Angeles,CA,11066,Port Columbus International,Columbus,OH,955,-9,0,1715,-14,0,0 +2013,7,24,3,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,38,1,1820,26,1,0 +2013,6,16,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1631,12,0,1749,17,1,0 +2013,6,19,3,WN,14057,Portland International,Portland,OR,10423,Austin - Bergstrom International,Austin,TX,1100,11,0,1655,3,0,0 +2013,5,15,3,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,2026,-6,0,2147,-6,0,0 +2013,9,1,7,AA,13930,Chicago O'Hare International,Chicago,IL,12892,Los Angeles International,Los Angeles,CA,1040,-5,0,1300,-25,0,0 +2013,10,29,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14122,Pittsburgh International,Pittsburgh,PA,1340,-2,0,1720,-11,0,0 +2013,9,7,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,10721,Logan International,Boston,MA,1736,5,0,2236,-13,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14635,Southwest Florida International,Fort Myers,FL,1850,1,0,2220,-14,0,0 +2013,8,12,1,EV,13244,Memphis International,Memphis,TN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,840,-3,0,1014,6,0,0 +2013,5,29,3,9E,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13244,Memphis International,Memphis,TN,1727,6,0,1900,50,1,0 +2013,9,5,4,WN,13232,Chicago Midway International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,1910,-1,0,2120,-4,0,0 +2013,8,30,5,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,2005,15,1,2135,6,0,0 +2013,7,24,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1015,1,0,1258,-19,0,0 +2013,5,15,3,F9,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,845,-3,0,928,-6,0,0 +2013,10,22,2,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1930,1,0,2059,1,0,0 +2013,7,9,2,UA,15304,Tampa International,Tampa,FL,11042,Cleveland-Hopkins International,Cleveland,OH,1033,3,0,1259,-4,0,0 +2013,10,14,1,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,815,-7,0,940,-19,0,0 +2013,6,8,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14107,Phoenix Sky Harbor International,Phoenix,AZ,2142,-4,0,2248,-38,0,0 +2013,7,29,1,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1300,-3,0,1553,-14,0,0 +2013,8,17,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1700,-2,0,1807,-8,0,0 +2013,10,4,5,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,945,-5,0,1125,-13,0,0 +2013,10,16,3,OO,11259,Dallas Love Field,Dallas,TX,12266,George Bush Intercontinental/Houston,Houston,TX,530,-8,0,636,-14,0,0 +2013,5,20,1,WN,14893,Sacramento International,Sacramento,CA,14057,Portland International,Portland,OR,1235,2,0,1400,-1,0,0 +2013,7,11,4,B6,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,853,-4,0,1212,-2,0,0 +2013,8,15,4,FL,13244,Memphis International,Memphis,TN,13232,Chicago Midway International,Chicago,IL,600,-2,0,744,-16,0,0 +2013,8,6,2,US,11057,Charlotte Douglas International,Charlotte,NC,14524,Richmond International,Richmond,VA,1615,-3,0,1720,-10,0,0 +2013,7,26,5,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10693,Nashville International,Nashville,TN,650,-1,0,840,-15,0,0 +2013,8,21,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,13487,Minneapolis-St Paul International,Minneapolis,MN,730,-6,0,824,-18,0,0 +2013,10,2,3,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,1319,4,0,1635,4,0,0 +2013,8,14,3,WN,13204,Orlando International,Orlando,FL,14122,Pittsburgh International,Pittsburgh,PA,1550,160,1,1800,189,1,0 +2013,9,4,3,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,1356,-2,0,1453,-7,0,0 +2013,5,17,5,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1717,-3,0,1959,1,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,13198,Kansas City International,Kansas City,MO,800,-3,0,1035,-7,0,0 +2013,4,1,1,9E,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,805,-3,0,1030,0,0,0 +2013,9,18,3,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,13930,Chicago O'Hare International,Chicago,IL,1350,1,0,2010,66,1,0 +2013,7,11,4,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1100,5,0,1145,4,0,0 +2013,6,26,3,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,2212,-4,0,100,21,1,0 +2013,10,8,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1940,-4,0,2108,-13,0,0 +2013,6,6,4,DL,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2249,-7,0,647,-8,0,0 +2013,9,12,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,2050,10,0,2226,4,0,0 +2013,6,30,7,US,11057,Charlotte Douglas International,Charlotte,NC,14869,Salt Lake City International,Salt Lake City,UT,2030,59,1,2240,69,1,0 +2013,8,15,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,735,-5,0,1205,-23,0,0 +2013,7,31,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14492,Raleigh-Durham International,Raleigh/Durham,NC,1350,-4,0,1520,-16,0,0 +2013,8,26,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1410,14,0,1452,3,0,0 +2013,4,11,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1450,12,0,1910,5,0,0 +2013,10,16,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-1,0,1056,-14,0,0 +2013,8,11,7,UA,10721,Logan International,Boston,MA,14771,San Francisco International,San Francisco,CA,1634,17,1,2002,15,1,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,1412,12,0,2236,4,0,0 +2013,6,10,1,VX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14771,San Francisco International,San Francisco,CA,935,0,0,1235,-3,0,0 +2013,5,3,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13342,General Mitchell International,Milwaukee,WI,1720,39,1,1831,38,1,0 +2013,9,8,7,WN,13198,Kansas City International,Kansas City,MO,12889,McCarran International,Las Vegas,NV,1135,-5,0,1230,-15,0,0 +2013,8,16,5,AA,12892,Los Angeles International,Los Angeles,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,700,-3,0,1205,-18,0,0 +2013,10,12,6,WN,12889,McCarran International,Las Vegas,NV,14893,Sacramento International,Sacramento,CA,1520,23,1,1645,31,1,0 +2013,6,29,6,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,8,0,2128,0,0,0 +2013,7,19,5,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,1448,2,0,1558,17,1,0 +2013,4,10,3,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1345,0,,1515,0,1,1 +2013,5,3,5,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12264,Washington Dulles International,Washington,DC,1825,26,1,2055,17,1,0 +2013,6,5,3,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,920,-4,0,1215,-26,0,0 +2013,4,10,3,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,0,0,829,11,0,0 +2013,7,8,1,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,0,0,944,-2,0,0 +2013,4,23,2,9E,13198,Kansas City International,Kansas City,MO,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,810,-7,0,1058,-18,0,0 +2013,9,20,5,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1340,132,1,1520,132,1,0 +2013,4,12,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,850,30,1,933,19,1,0 +2013,6,11,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1945,15,1,2135,12,0,0 +2013,8,24,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1630,2,0,1745,5,0,0 +2013,4,7,7,UA,12892,Los Angeles International,Los Angeles,CA,12264,Washington Dulles International,Washington,DC,2323,-9,0,710,-24,0,0 +2013,4,11,4,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,2137,-8,0,559,-35,0,0 +2013,4,4,4,9E,12478,John F. Kennedy International,New York,NY,14100,Philadelphia International,Philadelphia,PA,1935,-1,0,2056,-2,0,0 +2013,8,28,3,DL,15016,Lambert-St. Louis International,St. Louis,MO,13487,Minneapolis-St Paul International,Minneapolis,MN,1707,0,0,1840,-10,0,0 +2013,9,11,3,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1345,-2,0,1610,-11,0,0 +2013,6,3,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,0,0,2240,-34,0,0 +2013,8,27,2,VX,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1850,-5,0,2000,-17,0,0 +2013,5,19,7,UA,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1920,3,0,2021,-9,0,0 +2013,9,5,4,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10299,Ted Stevens Anchorage International,Anchorage,AK,2130,-3,0,25,-6,0,0 +2013,8,21,3,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,655,-1,0,1055,-17,0,0 +2013,8,9,5,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1700,7,0,1815,2,0,0 +2013,9,26,4,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,1159,20,1,1514,29,1,0 +2013,9,8,7,DL,12451,Jacksonville International,Jacksonville,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1545,-3,0,1701,-15,0,0 +2013,7,12,5,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14747,Seattle/Tacoma International,Seattle,WA,920,-7,0,1120,-26,0,0 +2013,7,31,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2200,-6,0,2329,-17,0,0 +2013,10,7,1,AA,13303,Miami International,Miami,FL,10721,Logan International,Boston,MA,1505,13,0,1820,102,1,0 +2013,10,9,3,US,15304,Tampa International,Tampa,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,725,2,0,900,23,1,0 +2013,8,29,4,YV,14100,Philadelphia International,Philadelphia,PA,11042,Cleveland-Hopkins International,Cleveland,OH,1547,22,1,1714,43,1,0 +2013,5,29,3,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,1050,-3,0,1100,-10,0,0 +2013,4,16,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,639,-5,0,929,-14,0,0 +2013,8,28,3,UA,11292,Denver International,Denver,CO,12892,Los Angeles International,Los Angeles,CA,1138,-4,0,1305,-3,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,14570,Reno/Tahoe International,Reno,NV,1955,21,1,2115,10,0,0 +2013,5,8,3,MQ,12478,John F. Kennedy International,New York,NY,12339,Indianapolis International,Indianapolis,IN,1515,47,1,1740,52,1,0 +2013,7,6,6,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,12266,George Bush Intercontinental/Houston,Houston,TX,1025,-2,0,1208,-7,0,0 +2013,4,6,6,DL,11292,Denver International,Denver,CO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1030,0,0,1520,-15,0,0 +2013,6,8,6,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,12266,George Bush Intercontinental/Houston,Houston,TX,515,-6,0,810,-20,0,0 +2013,6,20,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14908,John Wayne Airport-Orange County,Santa Ana,CA,1330,6,0,1440,-1,0,0 +2013,10,4,5,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,655,-7,0,819,66,1,0 +2013,8,15,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,1105,0,0,1630,-7,0,0 +2013,9,5,4,US,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1950,-2,0,2130,-10,0,0 +2013,8,10,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1350,6,0,1505,18,1,0 +2013,7,18,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1737,-3,0,1800,-12,0,0 +2013,9,6,5,WN,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,905,-3,0,1125,-16,0,0 +2013,9,10,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1900,-5,0,2151,-7,0,0 +2013,8,30,5,AA,14057,Portland International,Portland,OR,13930,Chicago O'Hare International,Chicago,IL,1325,31,1,1920,57,1,0 +2013,9,8,7,DL,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1500,-5,0,1613,6,0,0 +2013,5,4,6,WN,12339,Indianapolis International,Indianapolis,IN,12889,McCarran International,Las Vegas,NV,800,0,0,905,1,0,0 +2013,7,17,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12339,Indianapolis International,Indianapolis,IN,1305,20,1,1542,17,1,0 +2013,8,8,4,WN,14057,Portland International,Portland,OR,14107,Phoenix Sky Harbor International,Phoenix,AZ,2005,85,1,2240,91,1,0 +2013,6,18,2,DL,10792,Buffalo Niagara International,Buffalo,NY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,615,14,0,818,17,1,0 +2013,9,29,7,DL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1759,9,0,1942,16,1,0 +2013,5,31,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,630,0,0,730,-8,0,0 +2013,5,8,3,UA,12339,Indianapolis International,Indianapolis,IN,12266,George Bush Intercontinental/Houston,Houston,TX,1656,22,1,1822,20,1,0 +2013,4,25,4,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,620,-6,0,820,-8,0,0 +2013,4,26,5,AA,13303,Miami International,Miami,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1340,-3,0,1440,0,0,0 +2013,9,22,7,AA,13303,Miami International,Miami,FL,15304,Tampa International,Tampa,FL,805,-2,0,905,-2,0,0 +2013,9,8,7,AA,14679,San Diego International,San Diego,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1245,60,1,1745,54,1,0 +2013,7,14,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14679,San Diego International,San Diego,CA,1505,-2,0,1610,-10,0,0 +2013,8,22,4,WN,14100,Philadelphia International,Philadelphia,PA,13232,Chicago Midway International,Chicago,IL,730,-5,0,850,-7,0,0 +2013,4,14,7,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2020,-8,0,2202,-16,0,0 +2013,9,2,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1430,-4,0,1549,-14,0,0 +2013,7,26,5,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,700,-8,0,759,-25,0,0 +2013,4,12,5,B6,12264,Washington Dulles International,Washington,DC,10721,Logan International,Boston,MA,1418,302,1,1545,319,1,0 +2013,4,4,4,DL,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,715,-4,0,912,-8,0,0 +2013,5,19,7,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,2,0,1805,-7,0,0 +2013,6,11,2,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1210,-1,0,1320,-5,0,0 +2013,7,19,5,F9,11433,Detroit Metro Wayne County,Detroit,MI,11292,Denver International,Denver,CO,1917,13,0,2019,9,0,0 +2013,5,7,2,OO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,1926,-5,0,2030,5,0,0 +2013,9,11,3,US,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,1309,-1,0,1354,-8,0,0 +2013,5,7,2,AA,12478,John F. Kennedy International,New York,NY,10423,Austin - Bergstrom International,Austin,TX,1720,-5,0,2025,-37,0,0 +2013,10,7,1,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1430,3,0,1540,-5,0,0 +2013,9,8,7,YV,12451,Jacksonville International,Jacksonville,FL,12264,Washington Dulles International,Washington,DC,1919,-7,0,2106,-8,0,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14100,Philadelphia International,Philadelphia,PA,1008,1,0,1220,-2,0,0 +2013,5,3,5,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1645,90,1,2055,90,1,0 +2013,9,24,2,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1847,-3,0,2358,-19,0,0 +2013,6,14,5,OO,14869,Salt Lake City International,Salt Lake City,UT,13891,Ontario International,Ontario,CA,2212,2,0,2305,-5,0,0 +2013,10,28,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1810,-6,0,1950,-16,0,0 +2013,10,8,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,725,-1,0,854,11,0,0 +2013,5,8,3,MQ,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,2140,-2,0,35,-5,0,0 +2013,7,14,7,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1115,-1,0,1335,6,0,0 +2013,4,27,6,US,14679,San Diego International,San Diego,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,625,-3,0,748,-11,0,0 +2013,9,20,5,WN,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,2000,15,1,2035,18,1,0 +2013,7,14,7,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1625,0,0,1745,-8,0,0 +2013,4,28,7,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1140,6,0,1420,-5,0,0 +2013,6,9,7,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2155,-2,0,2250,5,0,0 +2013,10,10,4,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,810,-2,0,1020,-5,0,0 +2013,6,7,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1615,13,0,2300,-3,0,0 +2013,7,10,3,UA,12889,McCarran International,Las Vegas,NV,11618,Newark Liberty International,Newark,NJ,2214,1,0,600,-11,0,0 +2013,6,29,6,WN,11259,Dallas Love Field,Dallas,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1215,76,1,1335,75,1,0 +2013,8,22,4,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-1,0,905,-5,0,0 +2013,6,3,1,AA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,920,-2,0,1530,-10,0,0 +2013,4,7,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1520,15,1,1805,3,0,0 +2013,6,26,3,US,11433,Detroit Metro Wayne County,Detroit,MI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1750,-4,0,1900,-25,0,0 +2013,4,5,5,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,900,-8,0,1045,0,0,0 +2013,5,23,4,VX,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1300,13,0,1615,-1,0,0 +2013,7,28,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13232,Chicago Midway International,Chicago,IL,1500,0,0,2020,1,0,0 +2013,8,4,7,EV,13931,Norfolk International,Norfolk,VA,13487,Minneapolis-St Paul International,Minneapolis,MN,1750,-1,0,1949,10,0,0 +2013,10,30,3,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1000,-3,0,1110,-16,0,0 +2013,4,9,2,B6,13204,Orlando International,Orlando,FL,11278,Ronald Reagan Washington National,Washington,DC,1920,-7,0,2127,-9,0,0 +2013,6,9,7,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,2155,94,1,2310,99,1,0 +2013,7,24,3,MQ,12953,LaGuardia,New York,NY,11042,Cleveland-Hopkins International,Cleveland,OH,1200,-4,0,1345,5,0,0 +2013,7,7,7,OO,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,1855,0,,2035,0,1,1 +2013,6,27,4,9E,15016,Lambert-St. Louis International,St. Louis,MO,13244,Memphis International,Memphis,TN,1210,-1,0,1318,-2,0,0 +2013,7,12,5,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1500,-5,0,1655,-13,0,0 +2013,4,17,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14057,Portland International,Portland,OR,2155,89,1,2340,86,1,0 +2013,10,26,6,OO,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1342,0,0,1507,14,0,0 +2013,10,16,3,WN,14893,Sacramento International,Sacramento,CA,14747,Seattle/Tacoma International,Seattle,WA,1800,40,1,1945,36,1,0 +2013,7,22,1,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1345,1,0,1645,0,0,0 +2013,5,29,3,OO,14570,Reno/Tahoe International,Reno,NV,12892,Los Angeles International,Los Angeles,CA,2030,14,0,2210,0,0,0 +2013,4,15,1,UA,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,900,-1,0,1729,-36,0,0 +2013,10,13,7,DL,14027,Palm Beach International,West Palm Beach/Palm Beach,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1915,-7,0,2102,7,0,0 +2013,10,8,2,AA,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,1810,-7,0,1940,1,0,0 +2013,4,4,4,AA,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,1925,42,1,2230,53,1,0 +2013,4,8,1,9E,13931,Norfolk International,Norfolk,VA,11433,Detroit Metro Wayne County,Detroit,MI,1055,-2,0,1259,-9,0,0 +2013,9,8,7,AA,14831,Norman Y. Mineta San Jose International,San Jose,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,945,-7,0,1510,-6,0,0 +2013,5,31,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11042,Cleveland-Hopkins International,Cleveland,OH,2200,48,1,5,56,1,0 +2013,4,24,3,DL,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,1855,41,1,2135,95,1,0 +2013,8,9,5,WN,14869,Salt Lake City International,Salt Lake City,UT,11292,Denver International,Denver,CO,1535,14,0,1700,53,1,0 +2013,7,9,2,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,14524,Richmond International,Richmond,VA,2005,7,0,2129,0,0,0 +2013,8,30,5,AA,12478,John F. Kennedy International,New York,NY,14843,Luis Munoz Marin International,San Juan,PR,820,1,0,1230,-23,0,0 +2013,9,6,5,DL,14679,San Diego International,San Diego,CA,14869,Salt Lake City International,Salt Lake City,UT,1824,-4,0,2110,-7,0,0 +2013,8,16,5,WN,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1425,9,0,1615,3,0,0 +2013,5,10,5,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14524,Richmond International,Richmond,VA,1935,-3,0,2309,-4,0,0 +2013,9,17,2,AA,13930,Chicago O'Hare International,Chicago,IL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,755,-3,0,1155,-17,0,0 +2013,5,31,5,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,800,1,0,925,-6,0,0 +2013,10,11,5,FL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,610,-4,0,802,-10,0,0 +2013,7,29,1,AA,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1405,-6,0,1515,-8,0,0 +2013,8,25,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2035,-7,0,2140,-28,0,0 +2013,5,28,2,UA,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1911,-3,0,2221,-13,0,0 +2013,10,21,1,9E,14492,Raleigh-Durham International,Raleigh/Durham,NC,11066,Port Columbus International,Columbus,OH,715,-1,0,840,-1,0,0 +2013,8,10,6,OO,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,600,1,0,755,7,0,0 +2013,10,1,2,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1455,-4,0,1544,8,0,0 +2013,8,26,1,WN,13204,Orlando International,Orlando,FL,10693,Nashville International,Nashville,TN,800,-2,0,850,-4,0,0 +2013,5,8,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1015,0,0,1220,-6,0,0 +2013,9,6,5,UA,11292,Denver International,Denver,CO,12266,George Bush Intercontinental/Houston,Houston,TX,635,-5,0,953,-2,0,0 +2013,9,8,7,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10800,Bob Hope,Burbank,CA,1855,1,0,2015,0,0,0 +2013,4,5,5,WN,13891,Ontario International,Ontario,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1050,-1,0,1200,-8,0,0 +2013,10,16,3,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1010,-4,0,1125,-9,0,0 +2013,6,20,4,VX,12889,McCarran International,Las Vegas,NV,14771,San Francisco International,San Francisco,CA,2025,-9,0,2155,25,1,0 +2013,4,17,3,B6,10721,Logan International,Boston,MA,15304,Tampa International,Tampa,FL,1835,-10,0,2152,-23,0,0 +2013,5,23,4,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1910,106,1,2240,111,1,0 +2013,7,24,3,VX,14771,San Francisco International,San Francisco,CA,10299,Ted Stevens Anchorage International,Anchorage,AK,2000,-1,0,2355,-22,0,0 +2013,10,20,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,820,-3,0,1035,25,1,0 +2013,9,14,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15016,Lambert-St. Louis International,St. Louis,MO,1001,-2,0,1044,-13,0,0 +2013,9,9,1,US,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1730,-5,0,1904,-32,0,0 +2013,5,9,4,9E,13244,Memphis International,Memphis,TN,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-1,0,1100,-2,0,0 +2013,4,13,6,WN,12889,McCarran International,Las Vegas,NV,14057,Portland International,Portland,OR,1915,18,1,2130,30,1,0 +2013,4,7,7,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1430,14,0,1545,11,0,0 +2013,9,24,2,DL,14869,Salt Lake City International,Salt Lake City,UT,14747,Seattle/Tacoma International,Seattle,WA,2100,-8,0,2201,-14,0,0 +2013,8,24,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14771,San Francisco International,San Francisco,CA,1735,-2,0,1946,-12,0,0 +2013,7,30,2,EV,10721,Logan International,Boston,MA,14492,Raleigh-Durham International,Raleigh/Durham,NC,645,-5,0,851,-2,0,0 +2013,5,17,5,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1304,-2,0,1439,16,1,0 +2013,8,2,5,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1215,-4,0,1335,-10,0,0 +2013,10,24,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13931,Norfolk International,Norfolk,VA,1905,-1,0,2041,-12,0,0 +2013,8,27,2,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,15016,Lambert-St. Louis International,St. Louis,MO,1455,-1,0,1950,0,0,0 +2013,6,20,4,UA,14843,Luis Munoz Marin International,San Juan,PR,11618,Newark Liberty International,Newark,NJ,1752,34,1,2159,20,1,0 +2013,8,24,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,955,-5,0,1054,-18,0,0 +2013,4,4,4,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1800,34,1,1925,41,1,0 +2013,6,3,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13303,Miami International,Miami,FL,545,-5,0,930,-9,0,0 +2013,10,15,2,WN,12892,Los Angeles International,Los Angeles,CA,13796,Metropolitan Oakland International,Oakland,CA,1325,33,1,1435,36,1,0 +2013,6,17,1,WN,11066,Port Columbus International,Columbus,OH,10693,Nashville International,Nashville,TN,1745,46,1,1800,40,1,0 +2013,7,15,1,DL,13342,General Mitchell International,Milwaukee,WI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-5,0,857,-4,0,0 +2013,5,12,7,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,1400,-1,0,1505,-3,0,0 +2013,7,1,1,AS,14747,Seattle/Tacoma International,Seattle,WA,10800,Bob Hope,Burbank,CA,1520,-9,0,1739,9,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,822,-2,0,944,-20,0,0 +2013,8,26,1,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1226,-4,0,1334,-14,0,0 +2013,7,5,5,WN,14679,San Diego International,San Diego,CA,13796,Metropolitan Oakland International,Oakland,CA,1315,-5,0,1440,-13,0,0 +2013,10,21,1,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,519,2,0,606,7,0,0 +2013,5,1,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1125,-5,0,1350,-15,0,0 +2013,4,29,1,WN,13232,Chicago Midway International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1305,1,0,1410,-9,0,0 +2013,7,31,3,MQ,13930,Chicago O'Hare International,Chicago,IL,10792,Buffalo Niagara International,Buffalo,NY,1715,3,0,1945,4,0,0 +2013,5,12,7,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,850,-5,0,1115,-24,0,0 +2013,6,8,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12451,Jacksonville International,Jacksonville,FL,1815,8,0,2130,16,1,0 +2013,5,7,2,9E,14524,Richmond International,Richmond,VA,11433,Detroit Metro Wayne County,Detroit,MI,1220,5,0,1418,-20,0,0 +2013,7,19,5,MQ,13930,Chicago O'Hare International,Chicago,IL,11433,Detroit Metro Wayne County,Detroit,MI,1830,156,1,2050,223,1,0 +2013,6,18,2,OO,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1800,167,1,1922,188,1,0 +2013,10,8,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1730,-2,0,2020,-7,0,0 +2013,5,19,7,AA,12889,McCarran International,Las Vegas,NV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1725,-3,0,2205,-16,0,0 +2013,10,6,7,UA,12892,Los Angeles International,Los Angeles,CA,13830,Kahului Airport,Kahului,HI,1340,0,0,1618,-12,0,0 +2013,10,26,6,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,2135,-5,0,530,-20,0,0 +2013,5,12,7,AA,11618,Newark Liberty International,Newark,NJ,13303,Miami International,Miami,FL,1200,-4,0,1510,-15,0,0 +2013,6,15,6,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13204,Orlando International,Orlando,FL,700,-4,0,905,-10,0,0 +2013,6,2,7,WN,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1525,9,0,1720,-4,0,0 +2013,7,14,7,9E,14100,Philadelphia International,Philadelphia,PA,12478,John F. Kennedy International,New York,NY,1830,-5,0,2005,13,0,0 +2013,7,25,4,OO,10140,Albuquerque International Sunport,Albuquerque,NM,11292,Denver International,Denver,CO,957,-1,0,1114,4,0,0 +2013,5,10,5,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,700,-2,0,810,1,0,0 +2013,4,11,4,DL,14869,Salt Lake City International,Salt Lake City,UT,14057,Portland International,Portland,OR,1106,0,0,1204,-17,0,0 +2013,6,8,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1300,2,0,1650,-12,0,0 +2013,5,4,6,AA,14635,Southwest Florida International,Fort Myers,FL,13930,Chicago O'Hare International,Chicago,IL,1525,9,0,1735,-12,0,0 +2013,6,18,2,DL,13244,Memphis International,Memphis,TN,14869,Salt Lake City International,Salt Lake City,UT,1359,-4,0,1612,0,0,0 +2013,6,18,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,-2,0,1928,38,1,0 +2013,10,29,2,DL,14057,Portland International,Portland,OR,11433,Detroit Metro Wayne County,Detroit,MI,1130,-6,0,1837,12,0,0 +2013,5,7,2,OO,14893,Sacramento International,Sacramento,CA,14771,San Francisco International,San Francisco,CA,1703,-5,0,1754,-8,0,0 +2013,7,3,3,AA,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,1050,53,1,1905,68,1,0 +2013,6,19,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12339,Indianapolis International,Indianapolis,IN,939,-2,0,1113,-8,0,0 +2013,5,3,5,WN,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,-1,0,720,-9,0,0 +2013,5,14,2,MQ,13303,Miami International,Miami,FL,11042,Cleveland-Hopkins International,Cleveland,OH,920,-7,0,1215,1,0,0 +2013,8,30,5,B6,12892,Los Angeles International,Los Angeles,CA,12478,John F. Kennedy International,New York,NY,700,0,0,1521,3,0,0 +2013,9,9,1,WN,10800,Bob Hope,Burbank,CA,14893,Sacramento International,Sacramento,CA,1830,-4,0,1945,-11,0,0 +2013,7,19,5,EV,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,743,-5,0,847,-10,0,0 +2013,10,24,4,AA,13930,Chicago O'Hare International,Chicago,IL,13303,Miami International,Miami,FL,1800,1,0,2205,-12,0,0 +2013,9,10,2,AS,12892,Los Angeles International,Los Angeles,CA,14747,Seattle/Tacoma International,Seattle,WA,810,0,0,1044,16,1,0 +2013,6,12,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,13930,Chicago O'Hare International,Chicago,IL,1026,-5,0,1308,-2,0,0 +2013,6,9,7,DL,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1330,-7,0,1834,7,0,0 +2013,7,14,7,WN,14893,Sacramento International,Sacramento,CA,12889,McCarran International,Las Vegas,NV,700,-3,0,820,-7,0,0 +2013,5,28,2,B6,13930,Chicago O'Hare International,Chicago,IL,10721,Logan International,Boston,MA,1315,30,1,1633,21,1,0 +2013,6,13,4,DL,15304,Tampa International,Tampa,FL,11433,Detroit Metro Wayne County,Detroit,MI,1203,59,1,1444,63,1,0 +2013,9,15,7,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-4,0,1125,-9,0,0 +2013,10,26,6,FL,13204,Orlando International,Orlando,FL,12191,William P Hobby,Houston,TX,1735,-7,0,1900,3,0,0 +2013,8,8,4,OO,14771,San Francisco International,San Francisco,CA,14908,John Wayne Airport-Orange County,Santa Ana,CA,1530,65,1,1712,44,1,0 +2013,9,10,2,US,12478,John F. Kennedy International,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,615,-11,0,811,-27,0,0 +2013,4,22,1,EV,10423,Austin - Bergstrom International,Austin,TX,13244,Memphis International,Memphis,TN,1106,-10,0,1250,-16,0,0 +2013,4,23,2,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1237,13,0,2105,45,1,0 +2013,9,18,3,WN,10721,Logan International,Boston,MA,10693,Nashville International,Nashville,TN,1420,27,1,1605,6,0,0 +2013,6,8,6,MQ,13851,Will Rogers World,Oklahoma City,OK,13930,Chicago O'Hare International,Chicago,IL,1430,13,0,1635,0,0,0 +2013,8,16,5,B6,14635,Southwest Florida International,Fort Myers,FL,10721,Logan International,Boston,MA,1255,12,0,1600,-2,0,0 +2013,5,3,5,WN,14747,Seattle/Tacoma International,Seattle,WA,10140,Albuquerque International Sunport,Albuquerque,NM,725,-3,0,1115,-12,0,0 +2013,9,26,4,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1445,-2,0,1705,-7,0,0 +2013,6,14,5,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1145,1,0,1348,-14,0,0 +2013,4,2,2,WN,13796,Metropolitan Oakland International,Oakland,CA,13891,Ontario International,Ontario,CA,705,-3,0,825,-18,0,0 +2013,6,10,1,AA,11618,Newark Liberty International,Newark,NJ,12892,Los Angeles International,Los Angeles,CA,1830,23,1,2200,20,1,0 +2013,5,20,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11057,Charlotte Douglas International,Charlotte,NC,1710,14,0,2040,10,0,0 +2013,8,23,5,MQ,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,1005,-4,0,1120,-28,0,0 +2013,8,14,3,OO,12892,Los Angeles International,Los Angeles,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-2,0,2012,-13,0,0 +2013,7,15,1,AA,14683,San Antonio International,San Antonio,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,143,1,2025,131,1,0 +2013,9,8,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,710,-5,0,1035,-39,0,0 +2013,6,4,2,WN,13232,Chicago Midway International,Chicago,IL,14730,Louisville International-Standiford Field,Louisville,KY,1740,7,0,1945,9,0,0 +2013,5,1,3,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1752,-2,0,1933,-15,0,0 +2013,5,3,5,AA,13303,Miami International,Miami,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,810,18,1,1025,9,0,0 +2013,7,11,4,YV,12264,Washington Dulles International,Washington,DC,14683,San Antonio International,San Antonio,TX,1845,17,1,2105,13,0,0 +2013,4,15,1,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1605,4,0,1833,21,1,0 +2013,8,16,5,AA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1920,-3,0,2100,-34,0,0 +2013,4,23,2,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,1020,-2,0,1130,-6,0,0 +2013,10,18,5,WN,12889,McCarran International,Las Vegas,NV,13342,General Mitchell International,Milwaukee,WI,1715,0,0,2245,-18,0,0 +2013,10,8,2,WN,12889,McCarran International,Las Vegas,NV,14908,John Wayne Airport-Orange County,Santa Ana,CA,705,-3,0,805,0,0,0 +2013,8,19,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11618,Newark Liberty International,Newark,NJ,1929,-3,0,15,-47,0,0 +2013,9,4,3,MQ,13303,Miami International,Miami,FL,14122,Pittsburgh International,Pittsburgh,PA,820,-4,0,1100,11,0,0 +2013,10,7,1,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,640,-3,0,1010,-12,0,0 +2013,9,29,7,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,1105,-2,0,1220,-5,0,0 +2013,5,30,4,UA,12953,LaGuardia,New York,NY,12266,George Bush Intercontinental/Houston,Houston,TX,632,-7,0,920,-19,0,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,10423,Austin - Bergstrom International,Austin,TX,1235,-1,0,1320,-5,0,0 +2013,4,13,6,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13851,Will Rogers World,Oklahoma City,OK,1345,-2,0,1605,-11,0,0 +2013,5,5,7,YV,14730,Louisville International-Standiford Field,Louisville,KY,11057,Charlotte Douglas International,Charlotte,NC,900,0,0,1023,19,1,0 +2013,6,17,1,FL,10792,Buffalo Niagara International,Buffalo,NY,13204,Orlando International,Orlando,FL,800,18,1,1025,20,1,0 +2013,10,27,7,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1740,-3,0,1905,-3,0,0 +2013,5,8,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,2205,-2,0,2347,-3,0,0 +2013,10,29,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,2145,-3,0,2326,-16,0,0 +2013,9,11,3,US,15304,Tampa International,Tampa,FL,11057,Charlotte Douglas International,Charlotte,NC,830,0,0,1010,10,0,0 +2013,7,26,5,AA,13303,Miami International,Miami,FL,14843,Luis Munoz Marin International,San Juan,PR,705,0,0,940,5,0,0 +2013,6,3,1,WN,10693,Nashville International,Nashville,TN,13232,Chicago Midway International,Chicago,IL,1840,-2,0,2005,-1,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1240,9,0,1535,-2,0,0 +2013,4,18,4,DL,12889,McCarran International,Las Vegas,NV,12478,John F. Kennedy International,New York,NY,2155,-5,0,541,-11,0,0 +2013,4,30,2,UA,13930,Chicago O'Hare International,Chicago,IL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1314,-1,0,1602,6,0,0 +2013,10,3,4,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,720,-5,0,1015,3,0,0 +2013,8,29,4,WN,12191,William P Hobby,Houston,TX,11259,Dallas Love Field,Dallas,TX,1400,0,0,1455,7,0,0 +2013,9,27,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14307,Theodore Francis Green State,Providence,RI,1115,60,1,1225,55,1,0 +2013,8,27,2,UA,11278,Ronald Reagan Washington National,Washington,DC,13930,Chicago O'Hare International,Chicago,IL,1645,115,1,1752,89,1,0 +2013,8,12,1,AS,13204,Orlando International,Orlando,FL,14679,San Diego International,San Diego,CA,735,-6,0,954,-19,0,0 +2013,6,2,7,WN,14307,Theodore Francis Green State,Providence,RI,11292,Denver International,Denver,CO,845,-5,0,1105,-12,0,0 +2013,8,20,2,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1340,-2,0,1602,-27,0,0 +2013,7,9,2,WN,13796,Metropolitan Oakland International,Oakland,CA,10140,Albuquerque International Sunport,Albuquerque,NM,830,15,1,1145,4,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14747,Seattle/Tacoma International,Seattle,WA,745,-2,0,1013,-9,0,0 +2013,10,12,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10721,Logan International,Boston,MA,1227,4,0,1455,25,1,0 +2013,7,6,6,AA,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,1410,12,0,1820,37,1,0 +2013,8,9,5,UA,13930,Chicago O'Hare International,Chicago,IL,11278,Ronald Reagan Washington National,Washington,DC,1100,-4,0,1353,-16,0,0 +2013,6,5,3,WN,13891,Ontario International,Ontario,CA,13796,Metropolitan Oakland International,Oakland,CA,1050,0,0,1200,-1,0,0 +2013,8,29,4,MQ,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,929,0,0,1129,-5,0,0 +2013,10,22,2,WN,14635,Southwest Florida International,Fort Myers,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1850,8,0,2115,-10,0,0 +2013,7,14,7,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,-2,0,2135,2,0,0 +2013,5,12,7,YV,11057,Charlotte Douglas International,Charlotte,NC,13244,Memphis International,Memphis,TN,930,-1,0,1018,0,0,0 +2013,4,7,7,DL,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,700,-7,0,1044,-17,0,0 +2013,6,20,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1010,0,0,1120,-5,0,0 +2013,7,19,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13851,Will Rogers World,Oklahoma City,OK,1020,-2,0,1430,-1,0,0 +2013,5,5,7,UA,12266,George Bush Intercontinental/Houston,Houston,TX,11042,Cleveland-Hopkins International,Cleveland,OH,1425,9,0,1811,3,0,0 +2013,7,31,3,EV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11259,Dallas Love Field,Dallas,TX,816,-4,0,925,-2,0,0 +2013,5,2,4,UA,12264,Washington Dulles International,Washington,DC,14771,San Francisco International,San Francisco,CA,936,38,1,1237,11,0,0 +2013,10,15,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1845,-7,0,2349,-12,0,0 +2013,9,9,1,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,710,-7,0,900,-14,0,0 +2013,5,7,2,9E,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,830,9,0,851,-7,0,0 +2013,6,11,2,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,2215,17,1,45,21,1,0 +2013,6,12,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1755,92,1,2045,74,1,0 +2013,4,2,2,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13342,General Mitchell International,Milwaukee,WI,1925,30,1,2030,19,1,0 +2013,8,20,2,WN,15376,Tucson International,Tucson,AZ,12889,McCarran International,Las Vegas,NV,640,0,0,750,-2,0,0 +2013,10,22,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12478,John F. Kennedy International,New York,NY,1515,-5,0,1735,-3,0,0 +2013,4,22,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11042,Cleveland-Hopkins International,Cleveland,OH,745,-4,0,855,-14,0,0 +2013,9,24,2,VX,12264,Washington Dulles International,Washington,DC,12892,Los Angeles International,Los Angeles,CA,1710,-3,0,1935,20,1,0 +2013,10,18,5,WN,13232,Chicago Midway International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,1910,12,0,2130,5,0,0 +2013,4,30,2,B6,11278,Ronald Reagan Washington National,Washington,DC,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1000,4,0,1236,21,1,0 +2013,4,28,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13342,General Mitchell International,Milwaukee,WI,1600,-4,0,1835,-7,0,0 +2013,5,6,1,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,1005,-6,0,1252,-9,0,0 +2013,5,13,1,WN,10792,Buffalo Niagara International,Buffalo,NY,15304,Tampa International,Tampa,FL,715,36,1,955,31,1,0 +2013,9,3,2,FL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,948,-5,0,1205,-5,0,0 +2013,9,23,1,AS,14057,Portland International,Portland,OR,14771,San Francisco International,San Francisco,CA,1235,16,1,1412,20,1,0 +2013,5,2,4,MQ,12892,Los Angeles International,Los Angeles,CA,13851,Will Rogers World,Oklahoma City,OK,1800,15,1,2235,14,0,0 +2013,10,12,6,FL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1559,-6,0,1749,-23,0,0 +2013,10,30,3,UA,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,28,1,2329,21,1,0 +2013,7,19,5,OO,11292,Denver International,Denver,CO,14908,John Wayne Airport-Orange County,Santa Ana,CA,849,-5,0,1013,-7,0,0 +2013,7,23,2,US,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,741,1,0,1005,-16,0,0 +2013,7,17,3,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1015,-3,0,1157,-10,0,0 +2013,4,4,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1610,0,0,1704,-3,0,0 +2013,8,16,5,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,1645,-5,0,1940,-37,0,0 +2013,8,4,7,EV,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,2116,13,0,2324,-13,0,0 +2013,8,13,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1314,-5,0,1605,-22,0,0 +2013,5,28,2,US,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1015,-9,0,1237,-9,0,0 +2013,7,19,5,YV,11057,Charlotte Douglas International,Charlotte,NC,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1800,-7,0,1925,-8,0,0 +2013,9,22,7,WN,14908,John Wayne Airport-Orange County,Santa Ana,CA,13796,Metropolitan Oakland International,Oakland,CA,1330,31,1,1445,38,1,0 +2013,9,7,6,B6,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,1640,-6,0,1915,-8,0,0 +2013,6,26,3,WN,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1805,-2,0,1840,2,0,0 +2013,5,13,1,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,-2,0,1630,-19,0,0 +2013,5,25,6,WN,14893,Sacramento International,Sacramento,CA,12892,Los Angeles International,Los Angeles,CA,1040,1,0,1210,-11,0,0 +2013,6,15,6,B6,14307,Theodore Francis Green State,Providence,RI,13204,Orlando International,Orlando,FL,1557,15,1,1850,5,0,0 +2013,7,24,3,WN,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1505,20,1,1650,18,1,0 +2013,8,21,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,915,-3,0,1030,-5,0,0 +2013,7,9,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1345,-1,0,1506,-10,0,0 +2013,9,4,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,856,-2,0,1047,-10,0,0 +2013,7,28,7,F9,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11292,Denver International,Denver,CO,1846,7,0,1946,6,0,0 +2013,10,9,3,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-2,0,920,-12,0,0 +2013,5,8,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,1750,24,1,1815,25,1,0 +2013,4,10,3,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10721,Logan International,Boston,MA,2105,37,1,2226,118,1,0 +2013,5,19,7,FL,14122,Pittsburgh International,Pittsburgh,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1820,52,1,1959,50,1,0 +2013,7,10,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,1615,-4,0,1748,-17,0,0 +2013,6,24,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15304,Tampa International,Tampa,FL,1950,-4,0,2215,-6,0,0 +2013,7,30,2,US,11278,Ronald Reagan Washington National,Washington,DC,12953,LaGuardia,New York,NY,600,-9,0,707,-20,0,0 +2013,5,6,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13198,Kansas City International,Kansas City,MO,745,-3,0,915,-6,0,0 +2013,4,5,5,F9,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1905,9,0,2216,19,1,0 +2013,5,19,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1921,6,0,2109,-6,0,0 +2013,8,20,2,DL,12478,John F. Kennedy International,New York,NY,14869,Salt Lake City International,Salt Lake City,UT,1055,-8,0,1347,-23,0,0 +2013,10,7,1,MQ,12953,LaGuardia,New York,NY,11433,Detroit Metro Wayne County,Detroit,MI,1050,-7,0,1250,-4,0,0 +2013,6,23,7,WN,10693,Nashville International,Nashville,TN,11292,Denver International,Denver,CO,1235,9,0,1415,-7,0,0 +2013,4,27,6,B6,14843,Luis Munoz Marin International,San Juan,PR,11278,Ronald Reagan Washington National,Washington,DC,1805,0,0,2200,-4,0,0 +2013,6,1,6,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,945,-7,0,1118,-17,0,0 +2013,5,11,6,DL,12953,LaGuardia,New York,NY,15304,Tampa International,Tampa,FL,1120,-6,0,1417,-13,0,0 +2013,9,24,2,UA,14771,San Francisco International,San Francisco,CA,14747,Seattle/Tacoma International,Seattle,WA,733,1,0,936,-6,0,0 +2013,7,31,3,AA,12953,LaGuardia,New York,NY,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1445,11,0,1740,-7,0,0 +2013,6,16,7,WN,14492,Raleigh-Durham International,Raleigh/Durham,NC,13232,Chicago Midway International,Chicago,IL,635,-1,0,730,-4,0,0 +2013,7,31,3,FL,13204,Orlando International,Orlando,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,800,-3,0,1010,14,0,0 +2013,6,10,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,14771,San Francisco International,San Francisco,CA,1955,1,0,2205,-11,0,0 +2013,10,3,4,EV,14730,Louisville International-Standiford Field,Louisville,KY,12266,George Bush Intercontinental/Houston,Houston,TX,1908,62,1,2026,54,1,0 +2013,7,21,7,WN,14122,Pittsburgh International,Pittsburgh,PA,13204,Orlando International,Orlando,FL,620,-5,0,830,-10,0,0 +2013,10,5,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,13487,Minneapolis-St Paul International,Minneapolis,MN,1520,121,1,2020,119,1,0 +2013,6,10,1,FL,14635,Southwest Florida International,Fort Myers,FL,13232,Chicago Midway International,Chicago,IL,1107,196,1,1256,183,1,0 +2013,5,28,2,MQ,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,1225,-6,0,1335,-12,0,0 +2013,10,13,7,AS,14747,Seattle/Tacoma International,Seattle,WA,14893,Sacramento International,Sacramento,CA,1840,-3,0,2025,-14,0,0 +2013,10,9,3,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,12889,McCarran International,Las Vegas,NV,1115,-2,0,1235,1,0,0 +2013,4,2,2,9E,11066,Port Columbus International,Columbus,OH,11433,Detroit Metro Wayne County,Detroit,MI,1730,-4,0,1854,-4,0,0 +2013,4,25,4,WN,14683,San Antonio International,San Antonio,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,930,2,0,1355,-24,0,0 +2013,6,17,1,FL,15016,Lambert-St. Louis International,St. Louis,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1007,9,0,1235,14,0,0 +2013,4,28,7,WN,14869,Salt Lake City International,Salt Lake City,UT,12889,McCarran International,Las Vegas,NV,1750,-5,0,1815,-18,0,0 +2013,5,6,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13930,Chicago O'Hare International,Chicago,IL,2150,11,0,2259,-3,0,0 +2013,5,23,4,US,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1124,-4,0,1253,11,0,0 +2013,4,5,5,F9,15016,Lambert-St. Louis International,St. Louis,MO,13930,Chicago O'Hare International,Chicago,IL,2040,-5,0,2145,-4,0,0 +2013,5,7,2,WN,13198,Kansas City International,Kansas City,MO,14679,San Diego International,San Diego,CA,1450,-2,0,1615,-1,0,0 +2013,7,21,7,US,12266,George Bush Intercontinental/Houston,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,830,-5,0,1159,-15,0,0 +2013,7,23,2,WN,10800,Bob Hope,Burbank,CA,13796,Metropolitan Oakland International,Oakland,CA,1740,-2,0,1850,-14,0,0 +2013,7,19,5,WN,14747,Seattle/Tacoma International,Seattle,WA,13342,General Mitchell International,Milwaukee,WI,1035,13,0,1615,14,0,0 +2013,9,7,6,WN,11292,Denver International,Denver,CO,12889,McCarran International,Las Vegas,NV,715,-5,0,805,-14,0,0 +2013,5,11,6,AA,11278,Ronald Reagan Washington National,Washington,DC,13303,Miami International,Miami,FL,710,-7,0,945,-9,0,0 +2013,9,24,2,WN,10800,Bob Hope,Burbank,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1840,120,1,1940,120,1,0 +2013,5,10,5,AA,14771,San Francisco International,San Francisco,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,600,-3,0,1125,17,1,0 +2013,5,16,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13342,General Mitchell International,Milwaukee,WI,816,-5,0,920,-8,0,0 +2013,6,8,6,WN,10792,Buffalo Niagara International,Buffalo,NY,13232,Chicago Midway International,Chicago,IL,710,-3,0,750,-8,0,0 +2013,7,8,1,US,14869,Salt Lake City International,Salt Lake City,UT,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-3,0,754,-5,0,0 +2013,8,24,6,B6,11278,Ronald Reagan Washington National,Washington,DC,14843,Luis Munoz Marin International,San Juan,PR,800,-4,0,1153,-17,0,0 +2013,7,31,3,DL,12953,LaGuardia,New York,NY,13487,Minneapolis-St Paul International,Minneapolis,MN,1135,0,0,1341,-8,0,0 +2013,10,2,3,OO,11042,Cleveland-Hopkins International,Cleveland,OH,14492,Raleigh-Durham International,Raleigh/Durham,NC,1632,-4,0,1804,-15,0,0 +2013,7,19,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1215,7,0,1737,-2,0,0 +2013,7,23,2,AA,11057,Charlotte Douglas International,Charlotte,NC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1510,-5,0,1650,-1,0,0 +2013,5,10,5,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,2135,44,1,2240,35,1,0 +2013,7,18,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1258,7,0,1413,-8,0,0 +2013,10,26,6,AA,14893,Sacramento International,Sacramento,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,835,8,0,1355,0,0,0 +2013,6,9,7,MQ,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,2150,-2,0,15,-3,0,0 +2013,10,26,6,UA,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,844,-7,0,1005,-15,0,0 +2013,9,6,5,AA,13204,Orlando International,Orlando,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-5,0,1115,-26,0,0 +2013,6,5,3,MQ,10693,Nashville International,Nashville,TN,12953,LaGuardia,New York,NY,600,-6,0,905,-9,0,0 +2013,10,24,4,OO,13930,Chicago O'Hare International,Chicago,IL,14869,Salt Lake City International,Salt Lake City,UT,1830,-11,0,2103,-38,0,0 +2013,6,19,3,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,2035,-4,0,2331,-3,0,0 +2013,6,28,5,OO,12266,George Bush Intercontinental/Houston,Houston,TX,14869,Salt Lake City International,Salt Lake City,UT,1419,2,0,1620,9,0,0 +2013,6,28,5,MQ,11292,Denver International,Denver,CO,13930,Chicago O'Hare International,Chicago,IL,1245,3,0,1600,15,1,0 +2013,10,22,2,WN,10693,Nashville International,Nashville,TN,13204,Orlando International,Orlando,FL,1845,-4,0,2140,-21,0,0 +2013,6,3,1,US,11057,Charlotte Douglas International,Charlotte,NC,14107,Phoenix Sky Harbor International,Phoenix,AZ,740,36,1,912,15,1,0 +2013,10,17,4,DL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,-3,0,1054,-2,0,0 +2013,10,9,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,15304,Tampa International,Tampa,FL,844,24,1,1006,32,1,0 +2013,9,17,2,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,924,-1,0,1117,0,0,0 +2013,8,29,4,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,625,-10,0,810,0,0,0 +2013,10,2,3,F9,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,1021,-5,0,1249,7,0,0 +2013,5,28,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12451,Jacksonville International,Jacksonville,FL,845,-3,0,1002,-22,0,0 +2013,9,11,3,YV,10423,Austin - Bergstrom International,Austin,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1845,-11,0,1913,-10,0,0 +2013,5,24,5,DL,14893,Sacramento International,Sacramento,CA,13487,Minneapolis-St Paul International,Minneapolis,MN,830,0,0,1356,-14,0,0 +2013,6,1,6,DL,14869,Salt Lake City International,Salt Lake City,UT,13796,Metropolitan Oakland International,Oakland,CA,2140,-11,0,2243,-30,0,0 +2013,4,15,1,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,1645,5,0,1755,-4,0,0 +2013,5,26,7,WN,11259,Dallas Love Field,Dallas,TX,14683,San Antonio International,San Antonio,TX,1140,3,0,1240,1,0,0 +2013,4,16,2,AS,14908,John Wayne Airport-Orange County,Santa Ana,CA,14747,Seattle/Tacoma International,Seattle,WA,2035,-19,0,2310,-2,0,0 +2013,8,21,3,B6,10721,Logan International,Boston,MA,14122,Pittsburgh International,Pittsburgh,PA,1546,-1,0,1729,-10,0,0 +2013,5,27,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,10693,Nashville International,Nashville,TN,1950,11,0,2033,1,0,0 +2013,6,20,4,WN,12191,William P Hobby,Houston,TX,13495,Louis Armstrong New Orleans International,New Orleans,LA,1545,4,0,1655,8,0,0 +2013,8,16,5,AA,13303,Miami International,Miami,FL,11618,Newark Liberty International,Newark,NJ,2100,-3,0,2355,-4,0,0 +2013,10,17,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14893,Sacramento International,Sacramento,CA,1640,-2,0,1834,-9,0,0 +2013,7,24,3,WN,13232,Chicago Midway International,Chicago,IL,11066,Port Columbus International,Columbus,OH,910,-1,0,1115,-8,0,0 +2013,10,18,5,UA,11292,Denver International,Denver,CO,13871,Eppley Airfield,Omaha,NE,955,-2,0,1218,-7,0,0 +2013,9,18,3,AA,12451,Jacksonville International,Jacksonville,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1050,-6,0,1230,-16,0,0 +2013,5,14,2,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,5,0,2105,-5,0,0 +2013,9,22,7,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14908,John Wayne Airport-Orange County,Santa Ana,CA,1000,-4,0,1147,-3,0,0 +2013,6,2,7,AA,10721,Logan International,Boston,MA,12892,Los Angeles International,Los Angeles,CA,1925,0,0,2300,38,1,0 +2013,4,20,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10423,Austin - Bergstrom International,Austin,TX,1030,1,0,1125,-3,0,0 +2013,5,2,4,VX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,12892,Los Angeles International,Los Angeles,CA,720,-1,0,845,-12,0,0 +2013,8,26,1,AA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,950,-5,0,1440,-6,0,0 +2013,8,31,6,WN,12889,McCarran International,Las Vegas,NV,13232,Chicago Midway International,Chicago,IL,1210,1,0,1740,-1,0,0 +2013,10,1,2,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,13930,Chicago O'Hare International,Chicago,IL,1334,17,1,1925,7,0,0 +2013,6,22,6,WN,13232,Chicago Midway International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1310,27,1,1625,18,1,0 +2013,5,31,5,OO,13891,Ontario International,Ontario,CA,11292,Denver International,Denver,CO,1442,2,0,1751,3,0,0 +2013,6,7,5,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1140,-2,0,1510,8,0,0 +2013,8,20,2,9E,13930,Chicago O'Hare International,Chicago,IL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,840,-4,0,1055,-10,0,0 +2013,9,10,2,DL,11433,Detroit Metro Wayne County,Detroit,MI,12889,McCarran International,Las Vegas,NV,836,-2,0,959,-19,0,0 +2013,5,14,2,B6,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1559,-6,0,1733,-6,0,0 +2013,8,7,3,DL,11057,Charlotte Douglas International,Charlotte,NC,13487,Minneapolis-St Paul International,Minneapolis,MN,1640,25,1,1830,9,0,0 +2013,6,25,2,UA,14100,Philadelphia International,Philadelphia,PA,13930,Chicago O'Hare International,Chicago,IL,614,4,0,723,2,0,0 +2013,6,30,7,WN,12264,Washington Dulles International,Washington,DC,13232,Chicago Midway International,Chicago,IL,1505,10,0,1555,1,0,0 +2013,6,13,4,MQ,11057,Charlotte Douglas International,Charlotte,NC,12953,LaGuardia,New York,NY,1150,138,1,1350,176,1,0 +2013,8,2,5,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1640,-5,0,1950,-11,0,0 +2013,5,9,4,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-3,0,936,-13,0,0 +2013,8,29,4,WN,13198,Kansas City International,Kansas City,MO,11259,Dallas Love Field,Dallas,TX,1650,32,1,1815,32,1,0 +2013,8,3,6,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1235,-4,0,1358,-7,0,0 +2013,8,9,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13930,Chicago O'Hare International,Chicago,IL,1300,51,1,1409,37,1,0 +2013,9,26,4,VX,14747,Seattle/Tacoma International,Seattle,WA,12892,Los Angeles International,Los Angeles,CA,1610,-5,0,1845,-32,0,0 +2013,7,4,4,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,728,-5,0,1000,-9,0,0 +2013,9,13,5,B6,12954,Long Beach Airport,Long Beach,CA,14057,Portland International,Portland,OR,1825,11,0,2040,2,0,0 +2013,6,18,2,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,545,-7,0,732,-15,0,0 +2013,10,28,1,US,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,735,0,0,1055,-12,0,0 +2013,5,24,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,15016,Lambert-St. Louis International,St. Louis,MO,800,7,0,950,-3,0,0 +2013,9,7,6,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1335,10,0,1605,-14,0,0 +2013,4,23,2,WN,11292,Denver International,Denver,CO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,600,-3,0,1125,-1,0,0 +2013,7,21,7,FL,13342,General Mitchell International,Milwaukee,WI,11278,Ronald Reagan Washington National,Washington,DC,912,-6,0,1159,-8,0,0 +2013,9,12,4,EV,11618,Newark Liberty International,Newark,NJ,13487,Minneapolis-St Paul International,Minneapolis,MN,620,-6,0,818,-19,0,0 +2013,7,6,6,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,2130,-10,0,2150,-8,0,0 +2013,5,10,5,HA,12173,Honolulu International,Honolulu,HI,14893,Sacramento International,Sacramento,CA,1400,-3,0,2215,-8,0,0 +2013,8,15,4,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1850,-3,0,1949,-14,0,0 +2013,7,18,4,9E,11433,Detroit Metro Wayne County,Detroit,MI,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1540,1,0,1654,22,1,0 +2013,8,24,6,OO,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1745,4,0,1905,-3,0,0 +2013,10,17,4,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13891,Ontario International,Ontario,CA,1720,8,0,1825,15,1,0 +2013,5,10,5,EV,14492,Raleigh-Durham International,Raleigh/Durham,NC,13204,Orlando International,Orlando,FL,1340,4,0,1532,-13,0,0 +2013,5,19,7,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14679,San Diego International,San Diego,CA,940,-4,0,1035,-6,0,0 +2013,7,22,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14771,San Francisco International,San Francisco,CA,1310,1,0,1522,-9,0,0 +2013,8,9,5,B6,13796,Metropolitan Oakland International,Oakland,CA,12264,Washington Dulles International,Washington,DC,2249,-3,0,646,-8,0,0 +2013,6,27,4,WN,14307,Theodore Francis Green State,Providence,RI,15304,Tampa International,Tampa,FL,635,-4,0,930,-10,0,0 +2013,8,1,4,DL,10299,Ted Stevens Anchorage International,Anchorage,AK,13487,Minneapolis-St Paul International,Minneapolis,MN,545,-2,0,1404,-22,0,0 +2013,8,5,1,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,10800,Bob Hope,Burbank,CA,1525,0,,1625,0,1,1 +2013,7,7,7,AS,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,1840,-4,0,2025,-9,0,0 +2013,8,19,1,9E,11433,Detroit Metro Wayne County,Detroit,MI,11042,Cleveland-Hopkins International,Cleveland,OH,1032,-11,0,1129,-20,0,0 +2013,7,17,3,WN,14307,Theodore Francis Green State,Providence,RI,13232,Chicago Midway International,Chicago,IL,605,-2,0,730,-20,0,0 +2013,8,19,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2301,-2,0,2326,-6,0,0 +2013,6,3,1,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1306,0,0,1818,-10,0,0 +2013,7,22,1,WN,13198,Kansas City International,Kansas City,MO,14107,Phoenix Sky Harbor International,Phoenix,AZ,1830,-1,0,1915,-11,0,0 +2013,9,27,5,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,1030,-3,0,1200,-12,0,0 +2013,5,26,7,AA,14747,Seattle/Tacoma International,Seattle,WA,13303,Miami International,Miami,FL,2130,-8,0,630,-36,0,0 +2013,8,19,1,DL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1001,22,1,1252,10,0,0 +2013,7,9,2,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,920,-1,0,1200,5,0,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1745,106,1,1850,93,1,0 +2013,6,26,3,UA,13930,Chicago O'Hare International,Chicago,IL,14524,Richmond International,Richmond,VA,1843,56,1,2146,41,1,0 +2013,7,22,1,FL,14100,Philadelphia International,Philadelphia,PA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,700,0,0,940,-6,0,0 +2013,4,3,3,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14908,John Wayne Airport-Orange County,Santa Ana,CA,1416,-1,0,1600,-22,0,0 +2013,9,27,5,WN,11618,Newark Liberty International,Newark,NJ,12191,William P Hobby,Houston,TX,625,-1,0,915,-17,0,0 +2013,8,8,4,FL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1813,10,0,2135,24,1,0 +2013,5,22,3,UA,11618,Newark Liberty International,Newark,NJ,10721,Logan International,Boston,MA,1458,9,0,1615,-6,0,0 +2013,9,27,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1909,-4,0,2233,-10,0,0 +2013,10,28,1,UA,14893,Sacramento International,Sacramento,CA,12266,George Bush Intercontinental/Houston,Houston,TX,1206,-1,0,1750,-21,0,0 +2013,9,19,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13204,Orlando International,Orlando,FL,1600,-3,0,1805,4,0,0 +2013,5,20,1,WN,12889,McCarran International,Las Vegas,NV,10140,Albuquerque International Sunport,Albuquerque,NM,600,-1,0,830,-19,0,0 +2013,8,19,1,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-10,0,1200,0,0,0 +2013,5,21,2,9E,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1247,-10,0,1532,-30,0,0 +2013,7,24,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11057,Charlotte Douglas International,Charlotte,NC,115,0,0,810,-7,0,0 +2013,8,2,5,EV,13244,Memphis International,Memphis,TN,10721,Logan International,Boston,MA,830,-2,0,1238,-29,0,0 +2013,7,12,5,F9,14771,San Francisco International,San Francisco,CA,11292,Denver International,Denver,CO,1905,124,1,2223,123,1,0 +2013,5,17,5,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,11292,Denver International,Denver,CO,1205,2,0,1305,4,0,0 +2013,6,15,6,WN,12889,McCarran International,Las Vegas,NV,15016,Lambert-St. Louis International,St. Louis,MO,1825,33,1,2335,19,1,0 +2013,10,6,7,AA,13303,Miami International,Miami,FL,11278,Ronald Reagan Washington National,Washington,DC,1755,41,1,2025,28,1,0 +2013,6,14,5,UA,13204,Orlando International,Orlando,FL,11292,Denver International,Denver,CO,1024,-12,0,1208,-22,0,0 +2013,10,1,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1015,-5,0,1300,-12,0,0 +2013,9,20,5,B6,12478,John F. Kennedy International,New York,NY,14492,Raleigh-Durham International,Raleigh/Durham,NC,1730,124,1,1916,103,1,0 +2013,7,10,3,UA,12892,Los Angeles International,Los Angeles,CA,11618,Newark Liberty International,Newark,NJ,2245,3,0,654,-8,0,0 +2013,5,24,5,OO,10140,Albuquerque International Sunport,Albuquerque,NM,14869,Salt Lake City International,Salt Lake City,UT,1216,-6,0,1356,-17,0,0 +2013,5,26,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10792,Buffalo Niagara International,Buffalo,NY,2040,1,0,2145,-3,0,0 +2013,5,27,1,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1330,2,0,1454,-8,0,0 +2013,9,10,2,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1545,-1,0,1840,-12,0,0 +2013,10,29,2,B6,10721,Logan International,Boston,MA,12191,William P Hobby,Houston,TX,1320,-2,0,1638,-4,0,0 +2013,4,8,1,AA,13303,Miami International,Miami,FL,14771,San Francisco International,San Francisco,CA,2020,2,0,2335,-12,0,0 +2013,10,21,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14107,Phoenix Sky Harbor International,Phoenix,AZ,1930,3,0,2005,-3,0,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1655,-2,0,1900,-16,0,0 +2013,8,27,2,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14730,Louisville International-Standiford Field,Louisville,KY,837,-5,0,1149,-6,0,0 +2013,8,26,1,OO,14570,Reno/Tahoe International,Reno,NV,14869,Salt Lake City International,Salt Lake City,UT,1704,-4,0,1927,-6,0,0 +2013,4,25,4,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11292,Denver International,Denver,CO,845,0,0,1105,25,1,0 +2013,9,4,3,F9,12266,George Bush Intercontinental/Houston,Houston,TX,11292,Denver International,Denver,CO,1059,-2,0,1215,3,0,0 +2013,10,17,4,WN,15016,Lambert-St. Louis International,St. Louis,MO,13232,Chicago Midway International,Chicago,IL,1700,15,1,1800,10,0,0 +2013,4,22,1,UA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,13930,Chicago O'Hare International,Chicago,IL,820,4,0,1049,-7,0,0 +2013,10,20,7,UA,11618,Newark Liberty International,Newark,NJ,13204,Orlando International,Orlando,FL,1729,-3,0,2023,7,0,0 +2013,4,16,2,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,1000,0,0,1421,-19,0,0 +2013,10,31,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14492,Raleigh-Durham International,Raleigh/Durham,NC,820,5,0,930,14,0,0 +2013,5,27,1,WN,14683,San Antonio International,San Antonio,TX,12191,William P Hobby,Houston,TX,900,-2,0,955,3,0,0 +2013,10,11,5,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,1336,26,1,1432,28,1,0 +2013,4,29,1,HA,12173,Honolulu International,Honolulu,HI,13830,Kahului Airport,Kahului,HI,2012,-4,0,2048,-6,0,0 +2013,9,28,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1830,9,0,2100,17,1,0 +2013,4,6,6,WN,13891,Ontario International,Ontario,CA,14893,Sacramento International,Sacramento,CA,1855,-2,0,2015,-4,0,0 +2013,7,25,4,UA,13930,Chicago O'Hare International,Chicago,IL,12266,George Bush Intercontinental/Houston,Houston,TX,623,-2,0,858,-21,0,0 +2013,6,21,5,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,14869,Salt Lake City International,Salt Lake City,UT,1630,-7,0,1918,-10,0,0 +2013,5,20,1,US,14057,Portland International,Portland,OR,11057,Charlotte Douglas International,Charlotte,NC,2220,5,0,608,54,1,0 +2013,8,22,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,1706,-1,0,1727,-16,0,0 +2013,7,7,7,WN,15304,Tampa International,Tampa,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,2030,11,0,2125,7,0,0 +2013,10,9,3,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,2245,1,0,651,15,1,0 +2013,7,13,6,DL,14771,San Francisco International,San Francisco,CA,11433,Detroit Metro Wayne County,Detroit,MI,700,-7,0,1430,3,0,0 +2013,6,18,2,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,635,-11,0,826,-13,0,0 +2013,8,8,4,YV,11057,Charlotte Douglas International,Charlotte,NC,14683,San Antonio International,San Antonio,TX,1440,-1,0,1629,-6,0,0 +2013,4,4,4,MQ,11042,Cleveland-Hopkins International,Cleveland,OH,13303,Miami International,Miami,FL,1710,-7,0,2005,26,1,0 +2013,7,9,2,AA,10423,Austin - Bergstrom International,Austin,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1535,-5,0,1645,-10,0,0 +2013,8,31,6,WN,13851,Will Rogers World,Oklahoma City,OK,12889,McCarran International,Las Vegas,NV,1035,0,0,1110,-11,0,0 +2013,10,29,2,EV,11618,Newark Liberty International,Newark,NJ,14524,Richmond International,Richmond,VA,1710,5,0,1829,-2,0,0 +2013,5,31,5,WN,14122,Pittsburgh International,Pittsburgh,PA,12191,William P Hobby,Houston,TX,1150,0,0,1400,-18,0,0 +2013,7,25,4,OO,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,847,-5,0,1042,-12,0,0 +2013,4,20,6,DL,14747,Seattle/Tacoma International,Seattle,WA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1425,-3,0,2203,-23,0,0 +2013,10,18,5,OO,14771,San Francisco International,San Francisco,CA,14570,Reno/Tahoe International,Reno,NV,1248,-8,0,1350,-17,0,0 +2013,10,14,1,9E,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1240,6,0,1438,1,0,0 +2013,5,29,3,OO,15376,Tucson International,Tucson,AZ,12892,Los Angeles International,Los Angeles,CA,610,-6,0,745,-4,0,0 +2013,10,19,6,WN,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,1250,38,1,1600,34,1,0 +2013,10,6,7,YV,12264,Washington Dulles International,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,2154,20,1,2306,24,1,0 +2013,6,10,1,WN,12889,McCarran International,Las Vegas,NV,14679,San Diego International,San Diego,CA,715,6,0,820,5,0,0 +2013,8,9,5,UA,11618,Newark Liberty International,Newark,NJ,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1310,4,0,1605,16,1,0 +2013,10,1,2,WN,15304,Tampa International,Tampa,FL,13232,Chicago Midway International,Chicago,IL,945,-3,0,1125,-15,0,0 +2013,9,16,1,DL,11433,Detroit Metro Wayne County,Detroit,MI,13204,Orlando International,Orlando,FL,1527,27,1,1804,19,1,0 +2013,7,25,4,WN,13232,Chicago Midway International,Chicago,IL,14635,Southwest Florida International,Fort Myers,FL,700,-5,0,1045,-22,0,0 +2013,5,14,2,UA,14771,San Francisco International,San Francisco,CA,11618,Newark Liberty International,Newark,NJ,806,-7,0,1641,-16,0,0 +2013,7,8,1,DL,12892,Los Angeles International,Los Angeles,CA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,2245,0,0,609,-5,0,0 +2013,4,7,7,UA,13930,Chicago O'Hare International,Chicago,IL,10529,Bradley International,Hartford,CT,1333,-8,0,1641,-24,0,0 +2013,5,7,2,WN,12889,McCarran International,Las Vegas,NV,13204,Orlando International,Orlando,FL,1350,0,0,2110,-7,0,0 +2013,8,12,1,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1331,-5,0,1406,2,0,0 +2013,9,30,1,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11618,Newark Liberty International,Newark,NJ,1350,-4,0,1551,-5,0,0 +2013,6,16,7,MQ,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1130,-5,0,1255,-7,0,0 +2013,8,21,3,EV,13244,Memphis International,Memphis,TN,10423,Austin - Bergstrom International,Austin,TX,840,-9,0,1030,-6,0,0 +2013,8,9,5,F9,11292,Denver International,Denver,CO,10693,Nashville International,Nashville,TN,1900,41,1,2229,30,1,0 +2013,5,5,7,DL,14869,Salt Lake City International,Salt Lake City,UT,10721,Logan International,Boston,MA,1706,-3,0,2344,3,0,0 +2013,9,8,7,DL,11066,Port Columbus International,Columbus,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,-6,0,1410,-14,0,0 +2013,4,10,3,WN,12889,McCarran International,Las Vegas,NV,15376,Tucson International,Tucson,AZ,2120,36,1,2235,27,1,0 +2013,9,5,4,WN,11259,Dallas Love Field,Dallas,TX,13198,Kansas City International,Kansas City,MO,1130,0,0,1255,-2,0,0 +2013,4,7,7,OO,14747,Seattle/Tacoma International,Seattle,WA,14057,Portland International,Portland,OR,1459,46,1,1547,39,1,0 +2013,6,18,2,WN,15016,Lambert-St. Louis International,St. Louis,MO,11292,Denver International,Denver,CO,1605,86,1,1720,102,1,0 +2013,6,18,2,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14100,Philadelphia International,Philadelphia,PA,1150,273,1,1445,295,1,0 +2013,10,14,1,B6,13204,Orlando International,Orlando,FL,11618,Newark Liberty International,Newark,NJ,1959,-1,0,2229,7,0,0 +2013,10,11,5,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1740,-4,0,2032,-17,0,0 +2013,6,29,6,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1315,-6,0,1418,-22,0,0 +2013,5,26,7,WN,12889,McCarran International,Las Vegas,NV,12339,Indianapolis International,Indianapolis,IN,1005,2,0,1640,-12,0,0 +2013,9,22,7,DL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14869,Salt Lake City International,Salt Lake City,UT,1320,-6,0,1602,-5,0,0 +2013,10,15,2,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,700,-6,0,1531,-22,0,0 +2013,10,10,4,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,1355,42,1,1717,2,0,0 +2013,9,19,4,DL,11433,Detroit Metro Wayne County,Detroit,MI,12953,LaGuardia,New York,NY,1935,16,1,2124,16,1,0 +2013,4,1,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,2140,0,0,2345,-15,0,0 +2013,6,29,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,545,1,0,805,-5,0,0 +2013,4,5,5,9E,12191,William P Hobby,Houston,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1230,2,0,1531,5,0,0 +2013,9,1,7,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10721,Logan International,Boston,MA,800,0,0,1106,7,0,0 +2013,8,5,1,AA,12173,Honolulu International,Honolulu,HI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1700,-4,0,525,-1,0,0 +2013,8,13,2,DL,14730,Louisville International-Standiford Field,Louisville,KY,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,730,4,0,854,8,0,0 +2013,9,3,2,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,12892,Los Angeles International,Los Angeles,CA,705,-1,0,930,-36,0,0 +2013,10,30,3,YV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1800,0,0,2050,1,0,0 +2013,7,7,7,US,14307,Theodore Francis Green State,Providence,RI,11057,Charlotte Douglas International,Charlotte,NC,1859,-1,0,2105,11,0,0 +2013,10,16,3,DL,14307,Theodore Francis Green State,Providence,RI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1818,0,0,2100,3,0,0 +2013,7,22,1,OO,11066,Port Columbus International,Columbus,OH,13930,Chicago O'Hare International,Chicago,IL,1308,-2,0,1326,-5,0,0 +2013,9,2,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,12889,McCarran International,Las Vegas,NV,945,1,0,1110,-23,0,0 +2013,10,13,7,VX,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1850,-4,0,2225,-12,0,0 +2013,8,9,5,B6,10721,Logan International,Boston,MA,13204,Orlando International,Orlando,FL,2015,155,1,2309,153,1,0 +2013,6,11,2,US,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,835,-2,0,1250,4,0,0 +2013,8,10,6,DL,12478,John F. Kennedy International,New York,NY,14122,Pittsburgh International,Pittsburgh,PA,1505,-2,0,1657,-21,0,0 +2013,6,24,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11433,Detroit Metro Wayne County,Detroit,MI,1900,84,1,2106,65,1,0 +2013,5,6,1,FL,13204,Orlando International,Orlando,FL,14100,Philadelphia International,Philadelphia,PA,1149,18,1,1414,23,1,0 +2013,4,9,2,US,11278,Ronald Reagan Washington National,Washington,DC,11057,Charlotte Douglas International,Charlotte,NC,1955,-2,0,2118,2,0,0 +2013,7,23,2,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,13891,Ontario International,Ontario,CA,1235,-4,0,1345,-6,0,0 +2013,7,7,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,12478,John F. Kennedy International,New York,NY,1710,5,0,1840,57,1,0 +2013,6,25,2,WN,14570,Reno/Tahoe International,Reno,NV,12889,McCarran International,Las Vegas,NV,1740,7,0,1855,-2,0,0 +2013,8,3,6,UA,12889,McCarran International,Las Vegas,NV,12266,George Bush Intercontinental/Houston,Houston,TX,1118,-6,0,1635,-23,0,0 +2013,8,8,4,9E,13930,Chicago O'Hare International,Chicago,IL,12478,John F. Kennedy International,New York,NY,1824,161,1,2148,140,1,0 +2013,7,30,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,2020,128,1,2155,127,1,0 +2013,9,20,5,WN,13232,Chicago Midway International,Chicago,IL,11618,Newark Liberty International,Newark,NJ,1650,2,0,1955,-12,0,0 +2013,6,23,7,MQ,11278,Ronald Reagan Washington National,Washington,DC,10693,Nashville International,Nashville,TN,1650,-6,0,1740,-17,0,0 +2013,8,3,6,DL,10721,Logan International,Boston,MA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,600,19,1,843,17,1,0 +2013,6,22,6,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10721,Logan International,Boston,MA,1310,-2,0,1655,-12,0,0 +2013,5,25,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1000,20,1,1157,-2,0,0 +2013,6,3,1,AA,12266,George Bush Intercontinental/Houston,Houston,TX,13303,Miami International,Miami,FL,1335,2,0,1700,3,0,0 +2013,8,9,5,US,14100,Philadelphia International,Philadelphia,PA,11057,Charlotte Douglas International,Charlotte,NC,1154,-5,0,1339,-18,0,0 +2013,4,23,2,MQ,12892,Los Angeles International,Los Angeles,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1915,-6,0,2155,-6,0,0 +2013,6,25,2,FL,13198,Kansas City International,Kansas City,MO,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,510,-3,0,805,-7,0,0 +2013,5,2,4,US,11057,Charlotte Douglas International,Charlotte,NC,14492,Raleigh-Durham International,Raleigh/Durham,NC,735,19,1,825,19,1,0 +2013,5,29,3,DL,14747,Seattle/Tacoma International,Seattle,WA,14869,Salt Lake City International,Salt Lake City,UT,550,-3,0,850,-16,0,0 +2013,5,9,4,WN,13232,Chicago Midway International,Chicago,IL,13198,Kansas City International,Kansas City,MO,925,-3,0,1050,-15,0,0 +2013,9,2,1,UA,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,758,-7,0,1020,-19,0,0 +2013,7,7,7,EV,13851,Will Rogers World,Oklahoma City,OK,12266,George Bush Intercontinental/Houston,Houston,TX,1043,-8,0,1208,-9,0,0 +2013,7,13,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,14747,Seattle/Tacoma International,Seattle,WA,1210,6,0,1500,-8,0,0 +2013,6,18,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,1046,1,0,1327,3,0,0 +2013,4,21,7,UA,10721,Logan International,Boston,MA,12266,George Bush Intercontinental/Houston,Houston,TX,618,-3,0,927,35,1,0 +2013,8,23,5,DL,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,4,0,1313,14,0,0 +2013,5,9,4,WN,13198,Kansas City International,Kansas City,MO,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1330,5,0,1700,4,0,0 +2013,4,4,4,MQ,11278,Ronald Reagan Washington National,Washington,DC,14492,Raleigh-Durham International,Raleigh/Durham,NC,1945,-3,0,2045,7,0,0 +2013,5,28,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14771,San Francisco International,San Francisco,CA,1020,1,0,1210,0,0,0 +2013,10,10,4,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,715,-5,0,830,-14,0,0 +2013,5,20,1,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,1640,2,0,1730,-8,0,0 +2013,4,23,2,AA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,830,-2,0,1430,0,0,0 +2013,5,13,1,WN,12889,McCarran International,Las Vegas,NV,14831,Norman Y. Mineta San Jose International,San Jose,CA,2010,-3,0,2130,-8,0,0 +2013,4,9,2,DL,15016,Lambert-St. Louis International,St. Louis,MO,11433,Detroit Metro Wayne County,Detroit,MI,1827,-8,0,2100,-12,0,0 +2013,10,20,7,UA,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1632,46,1,1929,34,1,0 +2013,7,8,1,FL,14908,John Wayne Airport-Orange County,Santa Ana,CA,14771,San Francisco International,San Francisco,CA,1800,155,1,1920,153,1,0 +2013,9,20,5,AA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,745,-5,0,910,15,1,0 +2013,7,6,6,FL,13204,Orlando International,Orlando,FL,12339,Indianapolis International,Indianapolis,IN,955,-4,0,1207,-14,0,0 +2013,6,22,6,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10423,Austin - Bergstrom International,Austin,TX,910,5,0,1320,3,0,0 +2013,4,20,6,UA,13930,Chicago O'Hare International,Chicago,IL,14679,San Diego International,San Diego,CA,955,5,0,1214,1,0,0 +2013,7,12,5,US,11057,Charlotte Douglas International,Charlotte,NC,13495,Louis Armstrong New Orleans International,New Orleans,LA,926,-4,0,1016,-4,0,0 +2013,5,6,1,DL,14869,Salt Lake City International,Salt Lake City,UT,12892,Los Angeles International,Los Angeles,CA,1500,-4,0,1555,-1,0,0 +2013,4,30,2,VX,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1840,-2,0,2059,-2,0,0 +2013,7,11,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,944,12,0,1036,10,0,0 +2013,5,18,6,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1745,-1,0,1905,-9,0,0 +2013,5,31,5,US,14100,Philadelphia International,Philadelphia,PA,11433,Detroit Metro Wayne County,Detroit,MI,2030,3,0,2212,-2,0,0 +2013,6,16,7,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,925,-1,0,1155,-10,0,0 +2013,5,8,3,OO,13930,Chicago O'Hare International,Chicago,IL,13342,General Mitchell International,Milwaukee,WI,1819,-6,0,1904,-7,0,0 +2013,10,23,3,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14771,San Francisco International,San Francisco,CA,1625,8,0,1849,-22,0,0 +2013,9,12,4,AA,15376,Tucson International,Tucson,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,730,-6,0,1145,-14,0,0 +2013,5,26,7,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1830,-1,0,2007,-15,0,0 +2013,8,10,6,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1825,-5,0,2005,-31,0,0 +2013,4,16,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14100,Philadelphia International,Philadelphia,PA,1924,7,0,2348,-7,0,0 +2013,5,3,5,US,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,730,-6,0,904,-35,0,0 +2013,4,5,5,DL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11433,Detroit Metro Wayne County,Detroit,MI,605,-5,0,740,3,0,0 +2013,4,7,7,US,13342,General Mitchell International,Milwaukee,WI,14107,Phoenix Sky Harbor International,Phoenix,AZ,1720,-6,0,1910,0,0,0 +2013,8,20,2,FL,14122,Pittsburgh International,Pittsburgh,PA,15304,Tampa International,Tampa,FL,1106,27,1,1331,12,0,0 +2013,8,12,1,DL,11292,Denver International,Denver,CO,13487,Minneapolis-St Paul International,Minneapolis,MN,1115,5,0,1413,-3,0,0 +2013,6,21,5,WN,14057,Portland International,Portland,OR,11292,Denver International,Denver,CO,605,0,0,940,-15,0,0 +2013,7,3,3,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,2020,-1,0,2359,-13,0,0 +2013,5,3,5,AA,13303,Miami International,Miami,FL,13930,Chicago O'Hare International,Chicago,IL,1215,192,1,1435,191,1,0 +2013,9,26,4,OO,11292,Denver International,Denver,CO,14869,Salt Lake City International,Salt Lake City,UT,1305,5,0,1435,5,0,0 +2013,5,9,4,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,1812,1,0,1945,-11,0,0 +2013,9,10,2,OO,14679,San Diego International,San Diego,CA,12892,Los Angeles International,Los Angeles,CA,1453,-6,0,1539,-5,0,0 +2013,6,4,2,VX,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,645,-1,0,805,-3,0,0 +2013,6,26,3,YV,15376,Tucson International,Tucson,AZ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1510,-4,0,1555,-10,0,0 +2013,8,6,2,MQ,11618,Newark Liberty International,Newark,NJ,13930,Chicago O'Hare International,Chicago,IL,1005,-2,0,1120,1,0,0 +2013,7,9,2,AA,12478,John F. Kennedy International,New York,NY,14771,San Francisco International,San Francisco,CA,1530,364,1,1855,380,1,0 +2013,9,20,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,1245,-4,0,1505,-18,0,0 +2013,8,18,7,F9,14908,John Wayne Airport-Orange County,Santa Ana,CA,11292,Denver International,Denver,CO,1002,-2,0,1309,4,0,0 +2013,5,27,1,WN,13232,Chicago Midway International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,1315,4,0,1530,-1,0,0 +2013,7,22,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,12266,George Bush Intercontinental/Houston,Houston,TX,650,-2,0,845,-2,0,0 +2013,10,4,5,AA,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1030,-7,0,1325,-12,0,0 +2013,8,28,3,UA,10792,Buffalo Niagara International,Buffalo,NY,13930,Chicago O'Hare International,Chicago,IL,1623,12,0,1705,11,0,0 +2013,6,18,2,EV,14100,Philadelphia International,Philadelphia,PA,13244,Memphis International,Memphis,TN,600,0,,729,0,1,1 +2013,10,25,5,B6,13204,Orlando International,Orlando,FL,12953,LaGuardia,New York,NY,600,-4,0,826,-5,0,0 +2013,9,16,1,B6,12478,John F. Kennedy International,New York,NY,15304,Tampa International,Tampa,FL,645,-7,0,938,-21,0,0 +2013,6,18,2,EV,11618,Newark Liberty International,Newark,NJ,13342,General Mitchell International,Milwaukee,WI,1043,5,0,1159,-4,0,0 +2013,5,10,5,VX,12892,Los Angeles International,Los Angeles,CA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1015,4,0,1805,11,0,0 +2013,4,13,6,UA,12173,Honolulu International,Honolulu,HI,13930,Chicago O'Hare International,Chicago,IL,1925,25,1,829,19,1,0 +2013,4,19,5,WN,13232,Chicago Midway International,Chicago,IL,15304,Tampa International,Tampa,FL,1710,7,0,2040,7,0,0 +2013,6,15,6,B6,14843,Luis Munoz Marin International,San Juan,PR,13204,Orlando International,Orlando,FL,1830,-6,0,2139,-1,0,0 +2013,4,25,4,WN,12191,William P Hobby,Houston,TX,10693,Nashville International,Nashville,TN,700,-1,0,850,-9,0,0 +2013,6,1,6,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11618,Newark Liberty International,Newark,NJ,1214,-2,0,1958,-10,0,0 +2013,4,18,4,VX,14100,Philadelphia International,Philadelphia,PA,14771,San Francisco International,San Francisco,CA,1750,42,1,2110,44,1,0 +2013,9,2,1,OO,14869,Salt Lake City International,Salt Lake City,UT,10693,Nashville International,Nashville,TN,1711,-2,0,2137,-11,0,0 +2013,4,21,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14747,Seattle/Tacoma International,Seattle,WA,1435,0,0,1705,-14,0,0 +2013,9,19,4,OO,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1559,-5,0,1657,-9,0,0 +2013,4,25,4,WN,14771,San Francisco International,San Francisco,CA,12892,Los Angeles International,Los Angeles,CA,1955,20,1,2115,31,1,0 +2013,5,23,4,WN,12191,William P Hobby,Houston,TX,11057,Charlotte Douglas International,Charlotte,NC,1145,11,0,1510,1,0,0 +2013,6,12,3,FL,14635,Southwest Florida International,Fort Myers,FL,13342,General Mitchell International,Milwaukee,WI,1220,19,1,1412,10,0,0 +2013,6,5,3,EV,11618,Newark Liberty International,Newark,NJ,10792,Buffalo Niagara International,Buffalo,NY,2157,-16,0,2331,-33,0,0 +2013,10,9,3,OO,14869,Salt Lake City International,Salt Lake City,UT,14570,Reno/Tahoe International,Reno,NV,855,-4,0,925,-5,0,0 +2013,10,18,5,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,850,-5,0,1056,-3,0,0 +2013,7,29,1,UA,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1305,8,0,1625,-4,0,0 +2013,7,15,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1935,-1,0,2200,-17,0,0 +2013,9,29,7,OO,12892,Los Angeles International,Los Angeles,CA,14893,Sacramento International,Sacramento,CA,705,-4,0,836,1,0,0 +2013,5,27,1,DL,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1530,-4,0,1643,-15,0,0 +2013,10,27,7,AA,13495,Louis Armstrong New Orleans International,New Orleans,LA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1325,-9,0,1500,-15,0,0 +2013,7,1,1,EV,11433,Detroit Metro Wayne County,Detroit,MI,10529,Bradley International,Hartford,CT,1435,89,1,1620,98,1,0 +2013,8,17,6,B6,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2020,-1,0,2144,-24,0,0 +2013,5,8,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14100,Philadelphia International,Philadelphia,PA,1325,0,,1745,0,1,1 +2013,4,9,2,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,1600,-2,0,1934,-10,0,0 +2013,5,7,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1500,-7,0,1831,-15,0,0 +2013,7,11,4,WN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12889,McCarran International,Las Vegas,NV,1725,22,1,1835,12,0,0 +2013,4,22,1,US,14100,Philadelphia International,Philadelphia,PA,15304,Tampa International,Tampa,FL,755,-7,0,1039,23,1,0 +2013,10,10,4,EV,13244,Memphis International,Memphis,TN,13930,Chicago O'Hare International,Chicago,IL,1745,-6,0,1940,-23,0,0 +2013,8,3,6,OO,11292,Denver International,Denver,CO,13891,Ontario International,Ontario,CA,1220,17,1,1336,22,1,0 +2013,5,26,7,B6,12954,Long Beach Airport,Long Beach,CA,12889,McCarran International,Las Vegas,NV,1514,-10,0,1619,-10,0,0 +2013,9,19,4,DL,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1055,0,0,1221,-8,0,0 +2013,9,9,1,EV,11278,Ronald Reagan Washington National,Washington,DC,11618,Newark Liberty International,Newark,NJ,1445,-7,0,1607,-2,0,0 +2013,8,28,3,AA,12264,Washington Dulles International,Washington,DC,13303,Miami International,Miami,FL,1425,0,0,1710,-11,0,0 +2013,8,16,5,9E,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,13930,Chicago O'Hare International,Chicago,IL,715,-10,0,734,-24,0,0 +2013,6,16,7,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,11066,Port Columbus International,Columbus,OH,1335,-3,0,1450,-11,0,0 +2013,6,25,2,WN,14679,San Diego International,San Diego,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1230,20,1,1515,17,1,0 +2013,4,20,6,WN,12889,McCarran International,Las Vegas,NV,14869,Salt Lake City International,Salt Lake City,UT,1305,7,0,1525,7,0,0 +2013,10,10,4,DL,12889,McCarran International,Las Vegas,NV,11433,Detroit Metro Wayne County,Detroit,MI,2345,-1,0,639,-9,0,0 +2013,10,21,1,US,10721,Logan International,Boston,MA,14100,Philadelphia International,Philadelphia,PA,830,9,0,1001,-1,0,0 +2013,8,30,5,AA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,1055,82,1,1325,62,1,0 +2013,5,3,5,US,11057,Charlotte Douglas International,Charlotte,NC,11433,Detroit Metro Wayne County,Detroit,MI,1635,-2,0,1828,-10,0,0 +2013,5,22,3,UA,13930,Chicago O'Hare International,Chicago,IL,14771,San Francisco International,San Francisco,CA,903,-2,0,1151,5,0,0 +2013,10,7,1,OO,12954,Long Beach Airport,Long Beach,CA,14747,Seattle/Tacoma International,Seattle,WA,2020,-3,0,2256,-14,0,0 +2013,4,22,1,OO,10800,Bob Hope,Burbank,CA,11292,Denver International,Denver,CO,707,-10,0,1028,-18,0,0 +2013,9,6,5,OO,13244,Memphis International,Memphis,TN,12266,George Bush Intercontinental/Houston,Houston,TX,909,15,1,1049,19,1,0 +2013,9,11,3,UA,12264,Washington Dulles International,Washington,DC,11292,Denver International,Denver,CO,1610,2,0,1800,21,1,0 +2013,9,15,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14683,San Antonio International,San Antonio,TX,2130,1,0,2235,-8,0,0 +2013,10,31,4,DL,13244,Memphis International,Memphis,TN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,-2,0,1008,-14,0,0 +2013,6,13,4,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,10423,Austin - Bergstrom International,Austin,TX,1415,0,0,1640,31,1,0 +2013,8,23,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1425,4,0,1540,-3,0,0 +2013,9,7,6,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,830,-5,0,1205,-8,0,0 +2013,5,1,3,WN,11292,Denver International,Denver,CO,13851,Will Rogers World,Oklahoma City,OK,2150,15,1,15,27,1,0 +2013,5,18,6,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1949,-7,0,2120,-19,0,0 +2013,8,5,1,WN,13487,Minneapolis-St Paul International,Minneapolis,MN,14107,Phoenix Sky Harbor International,Phoenix,AZ,1100,16,1,1215,13,0,0 +2013,8,3,6,B6,10800,Bob Hope,Burbank,CA,12478,John F. Kennedy International,New York,NY,2153,22,1,558,11,0,0 +2013,6,3,1,US,12889,McCarran International,Las Vegas,NV,14107,Phoenix Sky Harbor International,Phoenix,AZ,640,-5,0,749,4,0,0 +2013,4,24,3,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,1740,25,1,2115,8,0,0 +2013,4,23,2,US,14771,San Francisco International,San Francisco,CA,14107,Phoenix Sky Harbor International,Phoenix,AZ,915,-3,0,1107,-7,0,0 +2013,7,26,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,10140,Albuquerque International Sunport,Albuquerque,NM,645,-4,0,850,-6,0,0 +2013,10,8,2,WN,12892,Los Angeles International,Los Angeles,CA,12889,McCarran International,Las Vegas,NV,1440,0,,1540,0,1,1 +2013,8,25,7,DL,14492,Raleigh-Durham International,Raleigh/Durham,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1945,-2,0,2109,-10,0,0 +2013,5,7,2,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,1830,21,1,1956,15,1,0 +2013,6,12,3,DL,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,715,-4,0,944,-8,0,0 +2013,5,23,4,AA,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1345,18,1,1515,14,0,0 +2013,4,13,6,WN,11259,Dallas Love Field,Dallas,TX,12191,William P Hobby,Houston,TX,1030,2,0,1130,-1,0,0 +2013,9,24,2,EV,11057,Charlotte Douglas International,Charlotte,NC,12266,George Bush Intercontinental/Houston,Houston,TX,1408,-6,0,1555,-17,0,0 +2013,5,19,7,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13198,Kansas City International,Kansas City,MO,1545,7,0,1743,8,0,0 +2013,4,29,1,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,700,-3,0,1444,11,0,0 +2013,10,4,5,MQ,12339,Indianapolis International,Indianapolis,IN,12478,John F. Kennedy International,New York,NY,1310,-4,0,1525,15,1,0 +2013,9,18,3,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1245,-3,0,1405,-5,0,0 +2013,6,26,3,WN,13342,General Mitchell International,Milwaukee,WI,13487,Minneapolis-St Paul International,Minneapolis,MN,1055,24,1,1205,17,1,0 +2013,6,17,1,UA,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,702,-4,0,822,-9,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,10792,Buffalo Niagara International,Buffalo,NY,2015,-6,0,2156,-5,0,0 +2013,5,3,5,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,13930,Chicago O'Hare International,Chicago,IL,745,182,1,1303,208,1,0 +2013,8,28,3,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1201,-4,0,1259,0,0,0 +2013,5,3,5,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1810,1,0,1915,-6,0,0 +2013,5,13,1,AA,13930,Chicago O'Hare International,Chicago,IL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1915,6,0,2145,-20,0,0 +2013,6,13,4,AA,10529,Bradley International,Hartford,CT,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1250,0,0,1540,0,0,0 +2013,5,7,2,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,1850,-3,0,1939,-3,0,0 +2013,6,4,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14524,Richmond International,Richmond,VA,1425,-5,0,1602,-15,0,0 +2013,4,17,3,WN,14771,San Francisco International,San Francisco,CA,14679,San Diego International,San Diego,CA,1405,16,1,1545,-5,0,0 +2013,9,23,1,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1113,-7,0,1400,-7,0,0 +2013,6,2,7,VX,12892,Los Angeles International,Los Angeles,CA,13204,Orlando International,Orlando,FL,840,5,0,1645,-25,0,0 +2013,6,13,4,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1335,5,0,1440,5,0,0 +2013,7,15,1,9E,10423,Austin - Bergstrom International,Austin,TX,11433,Detroit Metro Wayne County,Detroit,MI,715,20,1,1116,17,1,0 +2013,6,24,1,WN,12892,Los Angeles International,Los Angeles,CA,14771,San Francisco International,San Francisco,CA,1910,19,1,2020,34,1,0 +2013,8,28,3,9E,13487,Minneapolis-St Paul International,Minneapolis,MN,12264,Washington Dulles International,Washington,DC,1951,-1,0,2316,-7,0,0 +2013,7,6,6,OO,14869,Salt Lake City International,Salt Lake City,UT,14771,San Francisco International,San Francisco,CA,836,-6,0,948,2,0,0 +2013,5,16,4,EV,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,1205,-8,0,1520,-14,0,0 +2013,8,19,1,EV,13871,Eppley Airfield,Omaha,NE,12266,George Bush Intercontinental/Houston,Houston,TX,545,-6,0,759,-16,0,0 +2013,10,1,2,FL,13495,Louis Armstrong New Orleans International,New Orleans,LA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-4,0,930,-7,0,0 +2013,7,2,2,WN,13204,Orlando International,Orlando,FL,14683,San Antonio International,San Antonio,TX,1750,92,1,1935,94,1,0 +2013,6,22,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,905,-1,0,1125,-9,0,0 +2013,9,14,6,OO,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1519,12,0,1634,38,1,0 +2013,7,19,5,B6,10792,Buffalo Niagara International,Buffalo,NY,10721,Logan International,Boston,MA,1855,54,1,2016,47,1,0 +2013,8,30,5,DL,12478,John F. Kennedy International,New York,NY,12892,Los Angeles International,Los Angeles,CA,2100,-2,0,22,-57,0,0 +2013,7,10,3,OO,10800,Bob Hope,Burbank,CA,14869,Salt Lake City International,Salt Lake City,UT,1628,-2,0,1914,-6,0,0 +2013,9,19,4,US,14122,Pittsburgh International,Pittsburgh,PA,11057,Charlotte Douglas International,Charlotte,NC,1535,-1,0,1704,-12,0,0 +2013,6,20,4,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14122,Pittsburgh International,Pittsburgh,PA,1920,0,0,2316,-8,0,0 +2013,9,25,3,US,10693,Nashville International,Nashville,TN,11057,Charlotte Douglas International,Charlotte,NC,1255,-2,0,1511,-4,0,0 +2013,10,31,4,WN,12191,William P Hobby,Houston,TX,13232,Chicago Midway International,Chicago,IL,1835,64,1,2100,42,1,0 +2013,9,27,5,WN,14679,San Diego International,San Diego,CA,13232,Chicago Midway International,Chicago,IL,1420,6,0,2015,-8,0,0 +2013,9,24,2,OO,11042,Cleveland-Hopkins International,Cleveland,OH,14635,Southwest Florida International,Fort Myers,FL,848,-1,0,1126,-4,0,0 +2013,5,27,1,EV,13487,Minneapolis-St Paul International,Minneapolis,MN,14683,San Antonio International,San Antonio,TX,905,-2,0,1201,-10,0,0 +2013,7,30,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14683,San Antonio International,San Antonio,TX,822,-1,0,944,-7,0,0 +2013,6,21,5,AA,12892,Los Angeles International,Los Angeles,CA,13303,Miami International,Miami,FL,915,0,0,1740,-22,0,0 +2013,8,8,4,WN,14683,San Antonio International,San Antonio,TX,11259,Dallas Love Field,Dallas,TX,1615,-1,0,1715,-2,0,0 +2013,9,20,5,WN,12892,Los Angeles International,Los Angeles,CA,12191,William P Hobby,Houston,TX,705,0,0,1225,13,0,0 +2013,10,13,7,UA,11292,Denver International,Denver,CO,14747,Seattle/Tacoma International,Seattle,WA,2156,-5,0,2344,-18,0,0 +2013,4,22,1,UA,14771,San Francisco International,San Francisco,CA,12264,Washington Dulles International,Washington,DC,842,-4,0,1651,-16,0,0 +2013,8,17,6,YV,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12264,Washington Dulles International,Washington,DC,1910,-6,0,2100,-18,0,0 +2013,6,2,7,DL,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,820,1,0,1110,-15,0,0 +2013,8,29,4,9E,10529,Bradley International,Hartford,CT,11433,Detroit Metro Wayne County,Detroit,MI,1800,6,0,2000,-6,0,0 +2013,7,26,5,DL,14747,Seattle/Tacoma International,Seattle,WA,13487,Minneapolis-St Paul International,Minneapolis,MN,55,-3,0,603,-16,0,0 +2013,10,31,4,B6,10721,Logan International,Boston,MA,11618,Newark Liberty International,Newark,NJ,1500,55,1,1629,74,1,0 +2013,8,31,6,UA,12266,George Bush Intercontinental/Houston,Houston,TX,14683,San Antonio International,San Antonio,TX,1905,3,0,2003,-5,0,0 +2013,5,5,7,US,13303,Miami International,Miami,FL,11057,Charlotte Douglas International,Charlotte,NC,1900,73,1,2105,53,1,0 +2013,7,5,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1410,-4,0,1524,-14,0,0 +2013,6,13,4,UA,12953,LaGuardia,New York,NY,13930,Chicago O'Hare International,Chicago,IL,1700,106,1,1844,119,1,0 +2013,8,28,3,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,1405,29,1,1515,24,1,0 +2013,8,12,1,UA,14771,San Francisco International,San Francisco,CA,10721,Logan International,Boston,MA,2245,-5,0,735,-33,0,0 +2013,6,20,4,B6,14843,Luis Munoz Marin International,San Juan,PR,12478,John F. Kennedy International,New York,NY,337,-5,0,728,-11,0,0 +2013,9,4,3,US,10721,Logan International,Boston,MA,12953,LaGuardia,New York,NY,1000,-8,0,1120,-18,0,0 +2013,7,31,3,DL,13930,Chicago O'Hare International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,710,-6,0,1003,-3,0,0 +2013,5,15,3,B6,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14843,Luis Munoz Marin International,San Juan,PR,1020,-3,0,1258,-23,0,0 +2013,7,16,2,MQ,13303,Miami International,Miami,FL,12451,Jacksonville International,Jacksonville,FL,1535,22,1,1700,8,0,0 +2013,7,8,1,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,12191,William P Hobby,Houston,TX,2035,1,0,2145,-7,0,0 +2013,9,4,3,US,11057,Charlotte Douglas International,Charlotte,NC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1150,-6,0,1307,0,0,0 +2013,7,30,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,1635,5,0,1709,12,0,0 +2013,4,17,3,AA,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,1715,-3,0,1825,-11,0,0 +2013,6,17,1,OO,14831,Norman Y. Mineta San Jose International,San Jose,CA,12892,Los Angeles International,Los Angeles,CA,1820,-2,0,1934,-5,0,0 +2013,10,13,7,WN,13851,Will Rogers World,Oklahoma City,OK,11259,Dallas Love Field,Dallas,TX,1845,9,0,1935,3,0,0 +2013,7,16,2,WN,12339,Indianapolis International,Indianapolis,IN,14107,Phoenix Sky Harbor International,Phoenix,AZ,925,-3,0,1015,-34,0,0 +2013,6,20,4,DL,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1315,-5,0,1628,1,0,0 +2013,5,10,5,WN,11292,Denver International,Denver,CO,10140,Albuquerque International Sunport,Albuquerque,NM,855,0,0,1005,6,0,0 +2013,4,10,3,F9,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,1042,12,0,1415,12,0,0 +2013,4,30,2,US,11618,Newark Liberty International,Newark,NJ,14107,Phoenix Sky Harbor International,Phoenix,AZ,1015,6,0,1230,-5,0,0 +2013,10,30,3,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1200,-5,0,1352,-16,0,0 +2013,9,7,6,EV,12266,George Bush Intercontinental/Houston,Houston,TX,14492,Raleigh-Durham International,Raleigh/Durham,NC,2024,2,0,7,-2,0,0 +2013,5,7,2,UA,12266,George Bush Intercontinental/Houston,Houston,TX,12264,Washington Dulles International,Washington,DC,1140,7,0,1540,13,0,0 +2013,7,26,5,OO,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,820,-3,0,938,13,0,0 +2013,6,29,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1657,-5,0,2304,-6,0,0 +2013,5,6,1,FL,14100,Philadelphia International,Philadelphia,PA,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1936,-1,0,2140,21,1,0 +2013,9,12,4,9E,10721,Logan International,Boston,MA,13244,Memphis International,Memphis,TN,1705,-7,0,1924,-10,0,0 +2013,6,18,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1450,5,0,1631,-6,0,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,13930,Chicago O'Hare International,Chicago,IL,1500,-3,0,1620,-10,0,0 +2013,10,19,6,AA,12266,George Bush Intercontinental/Houston,Houston,TX,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1305,24,1,1425,8,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,15304,Tampa International,Tampa,FL,1007,3,0,1259,-14,0,0 +2013,4,14,7,AA,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,1215,21,1,2040,0,0,0 +2013,9,24,2,WN,13232,Chicago Midway International,Chicago,IL,12953,LaGuardia,New York,NY,1440,7,0,1745,-5,0,0 +2013,7,13,6,B6,12478,John F. Kennedy International,New York,NY,13495,Louis Armstrong New Orleans International,New Orleans,LA,2120,34,1,2334,34,1,0 +2013,5,18,6,OO,12892,Los Angeles International,Los Angeles,CA,14679,San Diego International,San Diego,CA,2305,-6,0,2359,-14,0,0 +2013,4,30,2,YV,13871,Eppley Airfield,Omaha,NE,11057,Charlotte Douglas International,Charlotte,NC,1338,-7,0,1706,1,0,0 +2013,7,5,5,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14747,Seattle/Tacoma International,Seattle,WA,1120,-2,0,1256,-10,0,0 +2013,9,16,1,WN,10140,Albuquerque International Sunport,Albuquerque,NM,14107,Phoenix Sky Harbor International,Phoenix,AZ,1705,13,0,1715,10,0,0 +2013,8,6,2,AA,13204,Orlando International,Orlando,FL,13930,Chicago O'Hare International,Chicago,IL,800,-8,0,955,-14,0,0 +2013,10,5,6,UA,14771,San Francisco International,San Francisco,CA,13930,Chicago O'Hare International,Chicago,IL,1140,-5,0,1805,-13,0,0 +2013,7,12,5,EV,14524,Richmond International,Richmond,VA,12953,LaGuardia,New York,NY,1030,8,0,1157,15,1,0 +2013,5,26,7,UA,14908,John Wayne Airport-Orange County,Santa Ana,CA,11618,Newark Liberty International,Newark,NJ,745,4,0,1604,4,0,0 +2013,6,29,6,US,11618,Newark Liberty International,Newark,NJ,11057,Charlotte Douglas International,Charlotte,NC,1735,-5,0,1928,-14,0,0 +2013,5,3,5,DL,11278,Ronald Reagan Washington National,Washington,DC,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1000,-3,0,1146,0,0,0 +2013,6,12,3,UA,13930,Chicago O'Hare International,Chicago,IL,14747,Seattle/Tacoma International,Seattle,WA,956,3,0,1225,-1,0,0 +2013,5,8,3,US,14100,Philadelphia International,Philadelphia,PA,10721,Logan International,Boston,MA,2015,30,1,2127,27,1,0 +2013,7,15,1,WN,11066,Port Columbus International,Columbus,OH,14107,Phoenix Sky Harbor International,Phoenix,AZ,1535,16,1,1640,-7,0,0 +2013,7,25,4,EV,11618,Newark Liberty International,Newark,NJ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,830,-7,0,1032,-13,0,0 +2013,7,27,6,WN,10423,Austin - Bergstrom International,Austin,TX,11618,Newark Liberty International,Newark,NJ,810,-1,0,1300,-6,0,0 +2013,5,30,4,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,2,0,805,-3,0,0 +2013,8,18,7,FL,14635,Southwest Florida International,Fort Myers,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1825,8,0,2004,17,1,0 +2013,7,31,3,MQ,11433,Detroit Metro Wayne County,Detroit,MI,13930,Chicago O'Hare International,Chicago,IL,650,0,0,705,17,1,0 +2013,7,8,1,UA,11618,Newark Liberty International,Newark,NJ,14843,Luis Munoz Marin International,San Juan,PR,1255,14,0,1647,3,0,0 +2013,6,14,5,WN,14107,Phoenix Sky Harbor International,Phoenix,AZ,12892,Los Angeles International,Los Angeles,CA,1535,21,1,1655,15,1,0 +2013,5,11,6,FL,13204,Orlando International,Orlando,FL,10792,Buffalo Niagara International,Buffalo,NY,1010,7,0,1245,1,0,0 +2013,4,4,4,B6,14771,San Francisco International,San Francisco,CA,12478,John F. Kennedy International,New York,NY,2100,184,1,532,169,1,0 +2013,5,30,4,AA,14107,Phoenix Sky Harbor International,Phoenix,AZ,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-3,0,1415,6,0,0 +2013,4,24,3,WN,14679,San Diego International,San Diego,CA,14771,San Francisco International,San Francisco,CA,1435,-4,0,1600,-13,0,0 +2013,4,13,6,AA,14747,Seattle/Tacoma International,Seattle,WA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,900,418,1,1500,392,1,0 +2013,8,26,1,MQ,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13303,Miami International,Miami,FL,950,11,0,1200,-4,0,0 +2013,9,22,7,WN,12892,Los Angeles International,Los Angeles,CA,14831,Norman Y. Mineta San Jose International,San Jose,CA,1130,3,0,1230,2,0,0 +2013,7,5,5,MQ,13930,Chicago O'Hare International,Chicago,IL,13495,Louis Armstrong New Orleans International,New Orleans,LA,2030,73,1,2235,88,1,0 +2013,8,24,6,AA,15304,Tampa International,Tampa,FL,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,935,-7,0,1110,-18,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13232,Chicago Midway International,Chicago,IL,1015,2,0,1115,-14,0,0 +2013,5,9,4,WN,11042,Cleveland-Hopkins International,Cleveland,OH,13232,Chicago Midway International,Chicago,IL,855,-4,0,910,-13,0,0 +2013,9,20,5,WN,13891,Ontario International,Ontario,CA,12889,McCarran International,Las Vegas,NV,1815,82,1,1910,81,1,0 +2013,7,28,7,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13487,Minneapolis-St Paul International,Minneapolis,MN,1200,0,0,1333,-8,0,0 +2013,10,14,1,WN,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1635,72,1,1915,70,1,0 +2013,6,27,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,12451,Jacksonville International,Jacksonville,FL,1400,-2,0,1714,-8,0,0 +2013,7,24,3,DL,14057,Portland International,Portland,OR,14869,Salt Lake City International,Salt Lake City,UT,600,-2,0,848,-6,0,0 +2013,5,15,3,AS,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,720,-4,0,942,-4,0,0 +2013,7,16,2,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1025,-5,0,1347,5,0,0 +2013,7,1,1,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,10140,Albuquerque International Sunport,Albuquerque,NM,1430,-5,0,1515,-12,0,0 +2013,10,11,5,WN,10721,Logan International,Boston,MA,15016,Lambert-St. Louis International,St. Louis,MO,655,0,0,905,-21,0,0 +2013,5,10,5,US,11278,Ronald Reagan Washington National,Washington,DC,10721,Logan International,Boston,MA,2100,11,0,2224,10,0,0 +2013,4,21,7,WN,13871,Eppley Airfield,Omaha,NE,13232,Chicago Midway International,Chicago,IL,1945,17,1,2110,15,1,0 +2013,9,1,7,UA,13930,Chicago O'Hare International,Chicago,IL,12953,LaGuardia,New York,NY,904,0,0,1213,-18,0,0 +2013,7,6,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,640,-6,0,910,-23,0,0 +2013,10,14,1,UA,14747,Seattle/Tacoma International,Seattle,WA,13930,Chicago O'Hare International,Chicago,IL,841,-4,0,1440,-9,0,0 +2013,4,22,1,B6,12892,Los Angeles International,Los Angeles,CA,10721,Logan International,Boston,MA,2320,26,1,744,13,0,0 +2013,5,2,4,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,14635,Southwest Florida International,Fort Myers,FL,1345,27,1,1527,26,1,0 +2013,7,19,5,B6,13204,Orlando International,Orlando,FL,12478,John F. Kennedy International,New York,NY,1056,103,1,1325,100,1,0 +2013,4,26,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,850,-4,0,1020,-7,0,0 +2013,6,13,4,B6,13204,Orlando International,Orlando,FL,10529,Bradley International,Hartford,CT,948,-4,0,1230,-10,0,0 +2013,5,19,7,UA,11618,Newark Liberty International,Newark,NJ,14747,Seattle/Tacoma International,Seattle,WA,1559,3,0,1849,-11,0,0 +2013,10,13,7,WN,14747,Seattle/Tacoma International,Seattle,WA,12889,McCarran International,Las Vegas,NV,1355,0,0,1625,-8,0,0 +2013,10,22,2,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,14570,Reno/Tahoe International,Reno,NV,1650,-3,0,1837,-10,0,0 +2013,10,24,4,EV,14307,Theodore Francis Green State,Providence,RI,11618,Newark Liberty International,Newark,NJ,1626,47,1,1744,34,1,0 +2013,7,19,5,EV,11042,Cleveland-Hopkins International,Cleveland,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1212,-9,0,1314,-25,0,0 +2013,8,26,1,US,12953,LaGuardia,New York,NY,11057,Charlotte Douglas International,Charlotte,NC,1703,8,0,1912,-10,0,0 +2013,7,16,2,B6,12478,John F. Kennedy International,New York,NY,13204,Orlando International,Orlando,FL,835,-4,0,1120,-35,0,0 +2013,9,16,1,UA,13930,Chicago O'Hare International,Chicago,IL,14307,Theodore Francis Green State,Providence,RI,1317,-6,0,1632,-25,0,0 +2013,7,16,2,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13244,Memphis International,Memphis,TN,2105,3,0,2126,-7,0,0 +2013,9,23,1,WN,12889,McCarran International,Las Vegas,NV,12892,Los Angeles International,Los Angeles,CA,630,1,0,735,-7,0,0 +2013,8,29,4,F9,11278,Ronald Reagan Washington National,Washington,DC,11292,Denver International,Denver,CO,1319,-3,0,1500,-10,0,0 +2013,9,3,2,DL,15304,Tampa International,Tampa,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,830,22,1,1004,23,1,0 +2013,4,13,6,WN,11066,Port Columbus International,Columbus,OH,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,650,-4,0,800,-9,0,0 +2013,7,14,7,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,11618,Newark Liberty International,Newark,NJ,1640,114,1,2120,99,1,0 +2013,10,8,2,UA,13930,Chicago O'Hare International,Chicago,IL,12264,Washington Dulles International,Washington,DC,1122,-2,0,1410,-10,0,0 +2013,4,29,1,DL,14683,San Antonio International,San Antonio,TX,13487,Minneapolis-St Paul International,Minneapolis,MN,630,-1,0,918,-18,0,0 +2013,8,21,3,US,12953,LaGuardia,New York,NY,10721,Logan International,Boston,MA,1400,-9,0,1508,-30,0,0 +2013,4,25,4,US,11057,Charlotte Douglas International,Charlotte,NC,14122,Pittsburgh International,Pittsburgh,PA,1315,-6,0,1438,-15,0,0 +2013,9,7,6,MQ,13930,Chicago O'Hare International,Chicago,IL,14122,Pittsburgh International,Pittsburgh,PA,905,-2,0,1130,-4,0,0 +2013,7,19,5,US,14100,Philadelphia International,Philadelphia,PA,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,2100,30,1,2152,62,1,0 +2013,4,12,5,B6,15304,Tampa International,Tampa,FL,12953,LaGuardia,New York,NY,1855,97,1,2139,81,1,0 +2013,4,27,6,WN,14831,Norman Y. Mineta San Jose International,San Jose,CA,12889,McCarran International,Las Vegas,NV,710,-2,0,835,-14,0,0 +2013,7,20,6,AA,10423,Austin - Bergstrom International,Austin,TX,13930,Chicago O'Hare International,Chicago,IL,845,-2,0,1125,-13,0,0 +2013,10,25,5,F9,12953,LaGuardia,New York,NY,11292,Denver International,Denver,CO,1325,-1,0,1549,15,1,0 +2013,6,12,3,AA,13930,Chicago O'Hare International,Chicago,IL,15016,Lambert-St. Louis International,St. Louis,MO,1205,3,0,1310,6,0,0 +2013,8,17,6,US,11057,Charlotte Douglas International,Charlotte,NC,13204,Orlando International,Orlando,FL,2007,-2,0,2138,6,0,0 +2013,5,6,1,EV,13198,Kansas City International,Kansas City,MO,13930,Chicago O'Hare International,Chicago,IL,600,58,1,723,69,1,0 +2013,8,16,5,WN,12892,Los Angeles International,Los Angeles,CA,11292,Denver International,Denver,CO,1825,43,1,2140,32,1,0 +2013,8,12,1,US,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11057,Charlotte Douglas International,Charlotte,NC,830,-8,0,1030,-9,0,0 +2013,4,15,1,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11618,Newark Liberty International,Newark,NJ,730,-4,0,946,-23,0,0 +2013,4,9,2,WN,11433,Detroit Metro Wayne County,Detroit,MI,13232,Chicago Midway International,Chicago,IL,600,-4,0,620,-18,0,0 +2013,10,30,3,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11292,Denver International,Denver,CO,1450,0,0,1734,-9,0,0 +2013,9,23,1,DL,13487,Minneapolis-St Paul International,Minneapolis,MN,14057,Portland International,Portland,OR,915,-2,0,1044,-7,0,0 +2013,7,7,7,DL,10529,Bradley International,Hartford,CT,13487,Minneapolis-St Paul International,Minneapolis,MN,1855,6,0,2054,-20,0,0 +2013,7,16,2,AA,11278,Ronald Reagan Washington National,Washington,DC,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1055,-1,0,1255,-1,0,0 +2013,9,18,3,US,14122,Pittsburgh International,Pittsburgh,PA,14107,Phoenix Sky Harbor International,Phoenix,AZ,720,-8,0,856,-31,0,0 +2013,10,26,6,EV,12264,Washington Dulles International,Washington,DC,12953,LaGuardia,New York,NY,1712,-6,0,1835,-21,0,0 +2013,6,24,1,AS,14747,Seattle/Tacoma International,Seattle,WA,11292,Denver International,Denver,CO,700,-5,0,1030,4,0,0 +2013,9,28,6,HA,14747,Seattle/Tacoma International,Seattle,WA,13830,Kahului Airport,Kahului,HI,1005,-12,0,1300,-6,0,0 +2013,4,21,7,EV,13930,Chicago O'Hare International,Chicago,IL,11057,Charlotte Douglas International,Charlotte,NC,1110,-7,0,1403,-6,0,0 +2013,4,22,1,WN,15016,Lambert-St. Louis International,St. Louis,MO,13495,Louis Armstrong New Orleans International,New Orleans,LA,1925,9,0,2110,-6,0,0 +2013,8,5,1,AA,12953,LaGuardia,New York,NY,13303,Miami International,Miami,FL,705,-6,0,1015,11,0,0 +2013,9,7,6,AS,14679,San Diego International,San Diego,CA,14747,Seattle/Tacoma International,Seattle,WA,800,-16,0,1050,-20,0,0 +2013,4,16,2,EV,10423,Austin - Bergstrom International,Austin,TX,12266,George Bush Intercontinental/Houston,Houston,TX,1050,1,0,1148,5,0,0 +2013,4,4,4,AS,10721,Logan International,Boston,MA,14679,San Diego International,San Diego,CA,1855,6,0,2213,-1,0,0 +2013,7,3,3,US,11057,Charlotte Douglas International,Charlotte,NC,10721,Logan International,Boston,MA,2007,0,0,2215,1,0,0 +2013,6,5,3,DL,12478,John F. Kennedy International,New York,NY,12889,McCarran International,Las Vegas,NV,2030,-7,0,2330,-34,0,0 +2013,5,15,3,AA,11433,Detroit Metro Wayne County,Detroit,MI,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1515,-9,0,1720,-19,0,0 +2013,9,26,4,UA,13930,Chicago O'Hare International,Chicago,IL,11292,Denver International,Denver,CO,545,-5,0,720,-11,0,0 +2013,5,6,1,WN,14057,Portland International,Portland,OR,12889,McCarran International,Las Vegas,NV,1715,-1,0,1925,-9,0,0 +2013,9,15,7,WN,12191,William P Hobby,Houston,TX,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1740,12,0,2100,8,0,0 +2013,6,20,4,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13495,Louis Armstrong New Orleans International,New Orleans,LA,2110,112,1,2141,106,1,0 +2013,4,17,3,DL,11433,Detroit Metro Wayne County,Detroit,MI,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,745,8,0,948,-2,0,0 +2013,7,30,2,B6,12954,Long Beach Airport,Long Beach,CA,14893,Sacramento International,Sacramento,CA,1034,89,1,1152,85,1,0 +2013,6,30,7,OO,14771,San Francisco International,San Francisco,CA,10140,Albuquerque International Sunport,Albuquerque,NM,1045,-6,0,1415,-17,0,0 +2013,10,7,1,OO,12266,George Bush Intercontinental/Houston,Houston,TX,11259,Dallas Love Field,Dallas,TX,2027,0,0,2135,-16,0,0 +2013,8,30,5,FL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,14122,Pittsburgh International,Pittsburgh,PA,1045,3,0,1306,13,0,0 +2013,4,7,7,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,13796,Metropolitan Oakland International,Oakland,CA,950,-5,0,1151,-2,0,0 +2013,9,9,1,OO,14869,Salt Lake City International,Salt Lake City,UT,14893,Sacramento International,Sacramento,CA,832,-7,0,919,-12,0,0 +2013,9,10,2,9E,11066,Port Columbus International,Columbus,OH,13487,Minneapolis-St Paul International,Minneapolis,MN,1105,-2,0,1205,-15,0,0 +2013,4,19,5,YV,12264,Washington Dulles International,Washington,DC,12451,Jacksonville International,Jacksonville,FL,1655,1,0,1848,49,1,0 +2013,8,31,6,MQ,13851,Will Rogers World,Oklahoma City,OK,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,955,-3,0,1055,-18,0,0 +2013,4,5,5,UA,12892,Los Angeles International,Los Angeles,CA,12266,George Bush Intercontinental/Houston,Houston,TX,2359,18,1,510,4,0,0 +2013,7,17,3,UA,11618,Newark Liberty International,Newark,NJ,14771,San Francisco International,San Francisco,CA,743,-6,0,1103,-49,0,0 +2013,4,1,1,US,14771,San Francisco International,San Francisco,CA,11057,Charlotte Douglas International,Charlotte,NC,720,-5,0,1513,-14,0,0 +2013,7,8,1,WN,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,10693,Nashville International,Nashville,TN,1815,6,0,1935,-2,0,0 +2013,5,11,6,EV,11618,Newark Liberty International,Newark,NJ,11433,Detroit Metro Wayne County,Detroit,MI,1800,40,1,2001,41,1,0 +2013,5,2,4,US,14107,Phoenix Sky Harbor International,Phoenix,AZ,11433,Detroit Metro Wayne County,Detroit,MI,905,-3,0,1606,15,1,0 +2013,10,21,1,UA,12264,Washington Dulles International,Washington,DC,12266,George Bush Intercontinental/Houston,Houston,TX,2204,-3,0,15,15,1,0 +2013,5,7,2,FL,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,14635,Southwest Florida International,Fort Myers,FL,830,3,0,1110,2,0,0 +2013,6,25,2,UA,14122,Pittsburgh International,Pittsburgh,PA,12266,George Bush Intercontinental/Houston,Houston,TX,1151,-5,0,1350,-11,0,0 +2013,6,7,5,WN,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,13232,Chicago Midway International,Chicago,IL,2130,-4,0,2225,-17,0,0 +2013,5,15,3,US,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1059,0,,1918,0,1,1 +2013,7,21,7,UA,10423,Austin - Bergstrom International,Austin,TX,14771,San Francisco International,San Francisco,CA,600,-4,0,745,-18,0,0 +2013,8,2,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,12953,LaGuardia,New York,NY,2045,-1,0,2309,-13,0,0 +2013,5,14,2,FL,13232,Chicago Midway International,Chicago,IL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,639,65,1,929,61,1,0 +2013,8,14,3,AS,12892,Los Angeles International,Los Angeles,CA,14057,Portland International,Portland,OR,1810,2,0,2014,7,0,0 +2013,4,12,5,AS,12889,McCarran International,Las Vegas,NV,14747,Seattle/Tacoma International,Seattle,WA,1430,-4,0,1701,2,0,0 +2013,8,20,2,WN,11292,Denver International,Denver,CO,15016,Lambert-St. Louis International,St. Louis,MO,1915,12,0,2210,8,0,0 +2013,6,26,3,YV,14107,Phoenix Sky Harbor International,Phoenix,AZ,15376,Tucson International,Tucson,AZ,2145,-2,0,2225,6,0,0 +2013,5,23,4,WN,13198,Kansas City International,Kansas City,MO,11292,Denver International,Denver,CO,700,5,0,745,-4,0,0 +2013,9,26,4,DL,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,11433,Detroit Metro Wayne County,Detroit,MI,1130,-8,0,1434,-12,0,0 +2013,4,15,1,WN,13204,Orlando International,Orlando,FL,14107,Phoenix Sky Harbor International,Phoenix,AZ,1835,24,1,2015,27,1,0 +2013,6,20,4,9E,14122,Pittsburgh International,Pittsburgh,PA,12478,John F. Kennedy International,New York,NY,1225,-7,0,1359,-10,0,0 +2013,6,26,3,MQ,11193,Cincinnati/Northern Kentucky International,Cincinnati,OH,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,1220,5,0,1340,-5,0,0 +2013,10,20,7,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,12892,Los Angeles International,Los Angeles,CA,1715,-9,0,2325,-12,0,0 +2013,7,12,5,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,13204,Orlando International,Orlando,FL,1350,-2,0,1528,-10,0,0 +2013,4,15,1,WN,11259,Dallas Love Field,Dallas,TX,10423,Austin - Bergstrom International,Austin,TX,1055,-1,0,1145,-3,0,0 +2013,8,21,3,WN,12892,Los Angeles International,Los Angeles,CA,13232,Chicago Midway International,Chicago,IL,820,2,0,1420,9,0,0 +2013,8,16,5,WN,13796,Metropolitan Oakland International,Oakland,CA,10800,Bob Hope,Burbank,CA,635,-1,0,745,10,0,0 +2013,5,14,2,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13930,Chicago O'Hare International,Chicago,IL,1015,4,0,1235,-17,0,0 +2013,6,4,2,B6,14893,Sacramento International,Sacramento,CA,12954,Long Beach Airport,Long Beach,CA,1915,-6,0,2031,-3,0,0 +2013,8,13,2,DL,12339,Indianapolis International,Indianapolis,IN,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,705,-3,0,838,-8,0,0 +2013,7,23,2,EV,11433,Detroit Metro Wayne County,Detroit,MI,10792,Buffalo Niagara International,Buffalo,NY,1531,49,1,1645,116,1,0 +2013,9,2,1,UA,12266,George Bush Intercontinental/Houston,Houston,TX,15304,Tampa International,Tampa,FL,1955,-4,0,2300,-8,0,0 +2013,7,22,1,WN,10423,Austin - Bergstrom International,Austin,TX,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,820,12,0,1130,7,0,0 +2013,6,1,6,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,-2,0,1218,-6,0,0 +2013,4,1,1,UA,12264,Washington Dulles International,Washington,DC,13204,Orlando International,Orlando,FL,1445,-3,0,1701,3,0,0 +2013,6,27,4,UA,14683,San Antonio International,San Antonio,TX,12266,George Bush Intercontinental/Houston,Houston,TX,515,-6,0,622,-21,0,0 +2013,8,22,4,EV,12266,George Bush Intercontinental/Houston,Houston,TX,13244,Memphis International,Memphis,TN,605,-3,0,740,15,1,0 +2013,10,22,2,WN,11618,Newark Liberty International,Newark,NJ,15016,Lambert-St. Louis International,St. Louis,MO,705,-1,0,845,1,0,0 +2013,9,27,5,DL,12478,John F. Kennedy International,New York,NY,14747,Seattle/Tacoma International,Seattle,WA,735,-4,0,1031,-11,0,0 +2013,4,15,1,B6,14843,Luis Munoz Marin International,San Juan,PR,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,335,12,0,620,12,0,0 +2013,9,5,4,DL,14747,Seattle/Tacoma International,Seattle,WA,12478,John F. Kennedy International,New York,NY,1200,-8,0,2012,-6,0,0 +2013,9,14,6,UA,12264,Washington Dulles International,Washington,DC,15304,Tampa International,Tampa,FL,810,-1,0,1032,-19,0,0 +2013,9,24,2,DL,10693,Nashville International,Nashville,TN,11433,Detroit Metro Wayne County,Detroit,MI,847,-5,0,1123,-4,0,0 +2013,5,6,1,MQ,13930,Chicago O'Hare International,Chicago,IL,10693,Nashville International,Nashville,TN,1655,0,0,1820,-4,0,0 +2013,7,21,7,WN,12451,Jacksonville International,Jacksonville,FL,12889,McCarran International,Las Vegas,NV,1255,-2,0,1430,-16,0,0 +2013,7,27,6,US,12889,McCarran International,Las Vegas,NV,14100,Philadelphia International,Philadelphia,PA,1430,12,0,2213,-7,0,0 +2013,9,17,2,DL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,10792,Buffalo Niagara International,Buffalo,NY,1306,-7,0,1503,-7,0,0 +2013,8,2,5,OO,13851,Will Rogers World,Oklahoma City,OK,11292,Denver International,Denver,CO,1654,7,0,1730,9,0,0 +2013,7,20,6,EV,11433,Detroit Metro Wayne County,Detroit,MI,12264,Washington Dulles International,Washington,DC,1008,142,1,1138,133,1,0 +2013,6,30,7,YV,12339,Indianapolis International,Indianapolis,IN,12264,Washington Dulles International,Washington,DC,1437,-6,0,1615,48,1,0 +2013,7,11,4,AS,10299,Ted Stevens Anchorage International,Anchorage,AK,14747,Seattle/Tacoma International,Seattle,WA,220,-15,0,634,-8,0,0 +2013,9,27,5,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1420,-2,0,1540,-10,0,0 +2013,4,14,7,WN,13495,Louis Armstrong New Orleans International,New Orleans,LA,11259,Dallas Love Field,Dallas,TX,1905,-1,0,2035,-6,0,0 +2013,9,9,1,DL,14869,Salt Lake City International,Salt Lake City,UT,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,1655,0,0,2232,-6,0,0 +2013,9,24,2,US,11057,Charlotte Douglas International,Charlotte,NC,13930,Chicago O'Hare International,Chicago,IL,2000,12,0,2057,5,0,0 +2013,7,5,5,WN,15304,Tampa International,Tampa,FL,10529,Bradley International,Hartford,CT,1100,2,0,1350,-10,0,0 +2013,8,26,1,WN,11292,Denver International,Denver,CO,12191,William P Hobby,Houston,TX,1855,-2,0,2215,0,0,0 +2013,10,29,2,US,13930,Chicago O'Hare International,Chicago,IL,14100,Philadelphia International,Philadelphia,PA,1345,-6,0,1645,-11,0,0 +2013,4,13,6,AA,11298,Dallas/Fort Worth International,Dallas/Fort Worth,TX,13204,Orlando International,Orlando,FL,1335,-7,0,1705,-12,0,0 +2013,9,20,5,VX,13204,Orlando International,Orlando,FL,12892,Los Angeles International,Los Angeles,CA,1730,1,0,1945,18,1,0 +2013,4,19,5,FL,10397,Hartsfield-Jackson Atlanta International,Atlanta,GA,11697,Fort Lauderdale-Hollywood International,Fort Lauderdale,FL,1020,24,1,1218,61,1,0 +2013,10,26,6,WN,12191,William P Hobby,Houston,TX,10821,Baltimore/Washington International Thurgood Marshall,Baltimore,MD,1540,30,1,1935,15,1,0 +2013,5,7,2,HA,13830,Kahului Airport,Kahului,HI,12173,Honolulu International,Honolulu,HI,609,-5,0,641,-6,0,0 +2013,6,11,2,UA,14771,San Francisco International,San Francisco,CA,14100,Philadelphia International,Philadelphia,PA,1338,60,1,2200,40,1,0 From 5036ec9a076c4dde9555670fcc640e4b1d9396ae Mon Sep 17 00:00:00 2001 From: githubtemp5 Date: Sat, 7 Sep 2024 18:35:13 +0100 Subject: [PATCH 6/6] progress in learning --- .../2-Data/01 - Flights Challenge.ipynb | 213 +- 2-Regression/3-Linear/Housing.csv | 546 +++ 2-Regression/3-Linear/README.md | 3 +- 2-Regression/3-Linear/assignment.ipynb | 1984 +++++++++++ 2-Regression/3-Linear/image.png | Bin 0 -> 42788 bytes 2-Regression/3-Linear/notebook.ipynb | 1707 +++++++++- 2-Regression/4-Logistic/assignment.ipynb | 620 ++++ 2-Regression/4-Logistic/notebook.ipynb | 935 ++++- .../penguins_binary_classification.csv | 275 ++ 3-Web-App/1-Web-App/notebook.ipynb | 376 ++ 3-Web-App/1-Web-App/ufo-model.pkl | Bin 0 -> 1011 bytes 3-Web-App/1-Web-App/web-app/app.py | 32 + 3-Web-App/1-Web-App/web-app/requirements.txt | 4 + .../1-Web-App/web-app/static/css/styles.css | 29 + .../1-Web-App/web-app/templates/index.html | 30 + 3-Web-App/1-Web-App/web-app/ufo-model.pkl | Bin 0 -> 1011 bytes .../1-Introduction/notebook.ipynb | 796 ++++- 4-Classification/data/cleaned_cuisines.csv | 3032 ++++++++--------- 18 files changed, 9032 insertions(+), 1550 deletions(-) create mode 100644 2-Regression/3-Linear/Housing.csv create mode 100644 2-Regression/3-Linear/assignment.ipynb create mode 100644 2-Regression/3-Linear/image.png create mode 100644 2-Regression/4-Logistic/assignment.ipynb create mode 100644 2-Regression/4-Logistic/penguins_binary_classification.csv create mode 100644 3-Web-App/1-Web-App/ufo-model.pkl create mode 100644 3-Web-App/1-Web-App/web-app/app.py create mode 100644 3-Web-App/1-Web-App/web-app/requirements.txt create mode 100644 3-Web-App/1-Web-App/web-app/static/css/styles.css create mode 100644 3-Web-App/1-Web-App/web-app/templates/index.html create mode 100644 3-Web-App/1-Web-App/web-app/ufo-model.pkl diff --git a/2-Regression/2-Data/01 - Flights Challenge.ipynb b/2-Regression/2-Data/01 - Flights Challenge.ipynb index 17a653b82e..e4c2ddcec1 100644 --- a/2-Regression/2-Data/01 - Flights Challenge.ipynb +++ b/2-Regression/2-Data/01 - Flights Challenge.ipynb @@ -20,7 +20,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 1, "metadata": {}, "outputs": [ { @@ -77,7 +77,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -163,7 +163,7 @@ "(269167, 20)" ] }, - "execution_count": 81, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -197,7 +197,7 @@ }, { "cell_type": "code", - "execution_count": 97, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -216,7 +216,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_12428\\3811281340.py:40: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_14268\\3811281340.py:40: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", " fig.show()\n" ] }, @@ -256,7 +256,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_12428\\3811281340.py:40: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_14268\\3811281340.py:40: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", " fig.show()\n" ] }, @@ -359,7 +359,7 @@ }, { "cell_type": "code", - "execution_count": 110, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -504,7 +504,7 @@ "MQ 13.335253" ] }, - "execution_count": 110, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } @@ -523,7 +523,7 @@ }, { "cell_type": "code", - "execution_count": 106, + "execution_count": 5, "metadata": {}, "outputs": [ { @@ -599,7 +599,7 @@ "4 10.827256" ] }, - "execution_count": 106, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } @@ -617,7 +617,7 @@ }, { "cell_type": "code", - "execution_count": 120, + "execution_count": 6, "metadata": {}, "outputs": [ { @@ -1090,7 +1090,7 @@ "[12660 rows x 20 columns]" ] }, - "execution_count": 120, + "execution_count": 6, "metadata": {}, "output_type": "execute_result" } @@ -1118,6 +1118,193 @@ "Chicago O'Hare International is the aiport with the highert departure delay" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Correlation late departure and late arrival" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "On-time Departures:16521\n", + "Delayed Departures:111759\n", + "0.9545551003011256\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAroAAAHeCAYAAAB0cKjIAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABVRUlEQVR4nO3deVyU5d7H8e8wLAoKLoCAoSK4lGKaFUdLkNTcMkmxzMwl2zXP0TrH7FRq9WSWmpXZ8nTSSrRORFZuieZCKWWaKZmGHlFzBRdQUJbhfv7wMI8TqGiM49x83q8Xr5j7/s09vwHPnK+X131dFsMwDAEAAAAm4+HqBgAAAABnIOgCAADAlAi6AAAAMCWCLgAAAEyJoAsAAABTIugCAADAlAi6AAAAMCWCLgAAAEyJoAsAAABTIugCcAmLxaKJEye6ug3TW7VqlSwWi1atWnXeuokTJ8pisSgnJ+fyNGZi/NkGrhwEXcBk5syZI4vF4vAVHBys+Ph4LVmyxNXt/Wlbt27VxIkTlZWV5epWcAk6d+5s/3Pp4eEhf39/tWjRQvfee69SU1MvSw9ZWVkO//vw8vJSYGCgOnbsqKeeekp79uy5LH0AcD5PVzcAwDmee+45RUREyDAMHTp0SHPmzFGvXr301Vdf6bbbbnN1e5ds69atmjRpkjp37qwmTZq4uh1cgquuukqTJ0+WJOXn52vHjh1KSUnR3Llzdeedd2ru3Lny8vJyeh933323evXqpdLSUh07dkzr16/XjBkz9Nprr+lf//qXBg4c6PQeADgXQRcwqZ49e+r666+3Px4xYoQaNGig+fPnu3XQvZxKSkpUWloqb29vV7diKgEBARo8eLDDsZdeekmjR4/WrFmz1KRJE02ZMsXpfVx33XXl+ti9e7duvfVWDR06VFdffbWuvfZap/cBwHmYugBUE3Xq1FHNmjXl6en499v8/Hw9/vjjCg8Pl4+Pj1q0aKGpU6fKMAxJ0qlTp9SyZUu1bNlSp06dsj/v6NGjCg0NVceOHWWz2SRJw4YNU61atfSf//xH3bt3l5+fn8LCwvTcc8/Zr3c+P/30k3r27Cl/f3/VqlVLXbp0UXp6uv38nDlzNGDAAElSfHy8/Z+eLzT/9NNPP9U111yjGjVqqHXr1vr88881bNgwhxHhsn/Onjp1qmbMmKHIyEj5+Pho69atkqRvvvlGnTp1kp+fn+rUqaO+ffvq119/dXidP16zTNn817NZLBaNGjVKSUlJatGihWrUqKH27dtrzZo15Z6/b98+3XfffWrQoIF8fHzUqlUrvf/+++Xqfv/9dyUkJMjPz0/BwcEaM2aMCgsLz/uz+aOcnBzdeeed8vf3V/369fXXv/5Vp0+ftp+Pi4s7Z/hr0aKFunfvflGvV8Zqter111/XNddco5kzZyo3N9fh/Ny5c9W+fXvVrFlT9erV08CBA7V3716Hms6dO6t169basGGDOnbsqJo1ayoiIkJvv/12pfto3Lix5syZo6KiIr388ssO544fP66//e1v9v+tREVFacqUKSotLT3vNXfv3q1HH31ULVq0UM2aNVW/fn0NGDDAYfrNf/7zH1ksFr366qvlnr927VpZLBbNnz+/0u8DwBmM6AImlZubq5ycHBmGocOHD+uNN97QyZMnHUawDMPQ7bffrpUrV2rEiBFq27atvv76a/3973/Xvn379Oqrr6pmzZr64IMPdNNNN+mf//ynpk+fLkkaOXKkcnNzNWfOHFmtVvs1bTabevToob/85S96+eWXtXTpUk2YMEElJSV67rnnztnvL7/8ok6dOsnf31//+Mc/5OXlpXfeeUedO3fW6tWrFRMTo9jYWI0ePVqvv/66nnrqKV199dWSZP9vRRYtWqS77rpL0dHRmjx5so4dO6YRI0aoYcOGFdbPnj1bp0+f1oMPPigfHx/Vq1dPy5cvV8+ePdW0aVNNnDhRp06d0htvvKGbbrpJGzduvOQpFKtXr9Ynn3yi0aNHy8fHR7NmzVKPHj30ww8/qHXr1pKkQ4cO6S9/+Ys9GAcFBWnJkiUaMWKE8vLy9Le//U3Smb+QdOnSRXv27NHo0aMVFhamjz76SN98881F9XTnnXeqSZMmmjx5stLT0/X666/r2LFj+vDDDyVJ9957rx544AFlZGTYe5Sk9evX67ffftPTTz99ST8L6UzYvfvuu/XMM8/o22+/Ve/evSVJ//M//6NnnnlGd955p+6//35lZ2frjTfeUGxsrH766SfVqVPHfo1jx46pV69euvPOO3X33Xfr3//+tx555BF5e3vrvvvuq1QfHTp0UGRkpMOc4YKCAsXFxWnfvn166KGH1KhRI61du1bjx4/XgQMHNGPGjHNeb/369Vq7dq0GDhyoq666SllZWXrrrbfUuXNnbd26Vb6+vmratKluuukmJSUlacyYMQ7PT0pKUu3atdW3b9/K/zABnGEAMJXZs2cbksp9+fj4GHPmzHGoXbBggSHJeOGFFxyOJyYmGhaLxdixY4f92Pjx4w0PDw9jzZo1xqeffmpIMmbMmOHwvKFDhxqSjMcee8x+rLS01Ojdu7fh7e1tZGdn249LMiZMmGB/nJCQYHh7exs7d+60H9u/f79Ru3ZtIzY21n6s7LVXrlxZqZ9HdHS0cdVVVxknTpywH1u1apUhyWjcuLH92K5duwxJhr+/v3H48GGHa7Rt29YIDg42jhw5Yj/2888/Gx4eHsaQIUMc3v/Z1ywzYcIE448ft2W/lx9//NF+bPfu3UaNGjWMO+64w35sxIgRRmhoqJGTk+Pw/IEDBxoBAQFGQUGBYRiGMWPGDEOS8e9//9tek5+fb0RFRVXq51XW4+233+5w/NFHHzUkGT///LNhGIZx/Phxo0aNGsa4ceMc6kaPHm34+fkZJ0+ePO/rxMXFGa1atTrn+c8//9yQZLz22muGYRhGVlaWYbVajf/5n/9xqNuyZYvh6enpcDwuLs6QZEybNs1+rLCw0P77KyoqMgzj/3/Xr7zyyjn76Nu3ryHJyM3NNQzDMJ5//nnDz8/P+O233xzqnnzyScNqtRp79uyxH/vjn+2y39HZ1q1bZ0gyPvzwQ/uxd955x5Bk/Prrr/ZjRUVFRmBgoDF06NBz9grg3Ji6AJjUm2++qdTUVKWmpmru3LmKj4/X/fffr5SUFHvN4sWLZbVaNXr0aIfnPv744zIMw2GVhokTJ6pVq1YaOnSoHn30UcXFxZV7XplRo0bZvy8biSwqKtLy5csrrLfZbFq2bJkSEhLUtGlT+/HQ0FANGjRI3377rfLy8i76Z7B//35t2bJFQ4YMUa1atezH4+LiFB0dXeFz+vfvr6CgIPvjAwcOaNOmTRo2bJjq1atnP96mTRt169ZNixcvvui+ynTo0EHt27e3P27UqJH69u2rr7/+WjabTYZh6LPPPlOfPn1kGIZycnLsX927d1dubq42btwo6czvMjQ0VImJifbr+fr66sEHH7yonkaOHOnw+LHHHrNfXzozv7Zv376aP3++fTqKzWbTJ598Yp828WeU/Z5OnDghSUpJSVFpaanuvPNOh/cfEhKiZs2aaeXKlQ7P9/T01EMPPWR/7O3trYceekiHDx/Whg0bLrmPTz/9VJ06dVLdunUd+ujatatsNluFU07K1KxZ0/59cXGxjhw5oqioKNWpU8f++5POjKbXqFFDSUlJ9mNff/21cnJyys0lBlA5BF3ApG688UZ17dpVXbt21T333KNFixbpmmuusYdO6czcwbCwMNWuXdvhuWVTAXbv3m0/5u3trffff1+7du3SiRMnNHv27HLzTiXJw8PDIaxKUvPmzSXpnEuCZWdnq6CgQC1atCh37uqrr1ZpaWm5+ZiVUdZ/VFRUuXMVHZOkiIiICq9xrt5ycnKUn59/0b1JUrNmzcoda968uQoKCpSdna3s7GwdP35c7777roKCghy+hg8fLkk6fPiwvc+oqKhyv5OK+r6YniIjI+Xh4eHwuxsyZIj27NmjtLQ0SdLy5ct16NAh3XvvvRf1WhU5efKkJNn/TGZmZsowDDVr1qzcz+DXX3+1v/8yYWFh5cL2hf78VbaPpUuXluuha9euklSuj7OdOnVKzz77rH1ub2BgoIKCgnT8+HGHuch16tRRnz59NG/ePPuxpKQkNWzYULfcckulewfw/5ijC1QTHh4eio+P12uvvabMzEy1atXqoq/x9ddfS5JOnz6tzMzMcqHQDM4efbtYFQV/Sfab9S5W2U1OgwcP1tChQyusadOmzSVdu7Iqek/du3dXgwYNNHfuXMXGxmru3LkKCQmxh74/IyMjQ9L//0WktLRUFotFS5YscZgLXubskfqqlJGRoeDgYPn7+9v76Natm/7xj39UWF8Wpivy2GOPafbs2frb3/6mDh06KCAgQBaLRQMHDix3I9uQIUP06aefau3atYqOjtaXX36pRx99VB4ejEsBl4KgC1QjJSUlkv5/tKpx48Zavny5Tpw44TCqu23bNvv5Mps3b9Zzzz2n4cOHa9OmTbr//vu1ZcsWBQQEOLxGaWmp/vOf/zj8H/9vv/0mSee8aSsoKEi+vr7avn17uXPbtm2Th4eHwsPDJZ07TFakrP8dO3aUO1fRsfNd41y9BQYG2kcQ69atq+PHj5erO3tk/GyZmZnljv3222/y9fW1T5+oXbu2bDbbBUNk48aNlZGRIcMwHH5GFfV9Pn/8C8yOHTtUWlrq8LuzWq0aNGiQ5syZoylTpmjBggV64IEHKgyiF8Nms2nevHny9fXVzTffLOnMiLJhGIqIiDhvmCyzf/9+5efnO4zqXujP3x+tW7dOO3fudJguEBkZqZMnT15SmE9OTtbQoUM1bdo0+7HTp09X+GelR48eCgoKUlJSkmJiYlRQUFAlI+VAdcVfEYFqori4WMuWLZO3t7d9akKvXr1ks9k0c+ZMh9pXX31VFotFPXv2tD932LBhCgsL02uvvaY5c+bo0KFD5e4OL3P29QzD0MyZM+Xl5aUuXbpUWG+1WnXrrbfqiy++cPjn5UOHDmnevHm6+eab7SNrZQGmopDwR2FhYWrdurU+/PBDe7iXzqx2sGXLlgs+XzozT7ht27b64IMPHF4zIyNDy5YtU69evezHIiMjlZubq82bN9uPHThwQJ9//nmF1163bp3DHM29e/fqiy++0K233iqr1Sqr1ar+/fvrs88+s490ni07O9v+fa9evbR//34lJyfbjxUUFOjdd9+t1Pss8+abbzo8fuONNyTJ/mehzL333qtjx47poYceKreax6Ww2WwaPXq0fv31V40ePdr+++7Xr5+sVqsmTZpUbok6wzB05MgRh2MlJSV655137I+Lior0zjvvKCgoyGE+9Lns3r1bw4YNk7e3t/7+97/bj995551at26d/V81znb8+HH7XyIrYrVay/X+xhtvVDjS7+npaV8tYs6cOYqOjnb6qD1gZozoAia1ZMkS+8js4cOHNW/ePGVmZurJJ5+0h4g+ffooPj5e//znP5WVlaVrr71Wy5Yt0xdffKG//e1vioyMlCS98MIL2rRpk1asWKHatWurTZs2evbZZ/X0008rMTHRIezVqFFDS5cu1dChQxUTE6MlS5Zo0aJFeuqppxxu8vqjF154Qampqbr55pv16KOPytPTU++8844KCwsd1jNt27atrFarpkyZotzcXPn4+OiWW25RcHBwhdd98cUX1bdvX910000aPny4jh07ppkzZ6p169YO4fd8XnnlFfXs2VMdOnTQiBEj7MuLBQQEaOLEifa6gQMHaty4cbrjjjs0evRoFRQU6K233lLz5s0dAm2Z1q1bq3v37g7Li0nSpEmT7DUvvfSSVq5cqZiYGD3wwAO65pprdPToUW3cuFHLly/X0aNHJUkPPPCAZs6cqSFDhmjDhg0KDQ3VRx99JF9f30q9xzK7du3S7bffrh49emjdunWaO3euBg0aVG7t3Hbt2ql169b69NNPdfXVV+u6666r9Gvk5uZq7ty5ks6E8bKd0Xbu3KmBAwfq+eeft9dGRkbqhRde0Pjx45WVlaWEhATVrl1bu3bt0ueff64HH3xQTzzxhL0+LCxMU6ZMUVZWlpo3b65PPvlEmzZt0rvvvltut7WNGzdq7ty5Ki0t1fHjx7V+/Xp99tlnslgs+uijjxwC5t///nd9+eWXuu222zRs2DC1b99e+fn52rJli5KTk5WVlaXAwMAK3+9tt92mjz76SAEBAbrmmmu0bt06LV++XPXr16+wfsiQIXr99de1cuXKy7JxBmBqLlrtAYCTVLS8WI0aNYy2bdsab731llFaWupQf+LECWPMmDFGWFiY4eXlZTRr1sx45ZVX7HUbNmwwPD09HZYMMwzDKCkpMW644QYjLCzMOHbsmGEYZ5bX8vPzM3bu3Gnceuuthq+vr9GgQQNjwoQJhs1mc3i+/rAEk2EYxsaNG43u3bsbtWrVMnx9fY34+Hhj7dq15d7j//7v/xpNmzY1rFZrpZbO+vjjj42WLVsaPj4+RuvWrY0vv/zS6N+/v9GyZUt7zYWWnFq+fLlx0003GTVr1jT8/f2NPn36GFu3bi1Xt2zZMqN169aGt7e30aJFC2Pu3LnnXF5s5MiRxty5c41mzZoZPj4+Rrt27Sp8L4cOHTJGjhxphIeHG15eXkZISIjRpUsX491333Wo2717t3H77bcbvr6+RmBgoPHXv/7VWLp06UUtL7Z161YjMTHRqF27tlG3bl1j1KhRxqlTpyp8zssvv2xIMl588cXzXvtsZUuAlX3VqlXLaNasmTF48GBj2bJl53zeZ599Ztx8882Gn5+f4efnZ7Rs2dIYOXKksX37dodrt2rVyvjxxx+NDh06GDVq1DAaN25szJw50+FaZb/rsi9PT0+jXr16RkxMjDF+/Hhj9+7dFfZw4sQJY/z48UZUVJTh7e1tBAYGGh07djSmTp1qX7rMMMr/2T527JgxfPhwIzAw0KhVq5bRvXt3Y9u2bUbjxo3PuWxYq1atDA8PD+P333+vxE8VwLlYDKMS2xUBQCUMGzZMycnJlR4pdaW2bdsqKCjIYVOAy8lisWjkyJHlpo24k9dee01jxoxRVlaWGjVq5Op21LlzZ+Xk5FQ4zcPdtGvXTvXq1dOKFStc3Qrg1pijC8DUiouLy82fXLVqlX7++Wd17tzZNU2ZgGEY+te//qW4uLgrIuSayY8//qhNmzZpyJAhrm4FcHvM0QVgavv27VPXrl01ePBghYWFadu2bXr77bcVEhKihx9+2NXtuZ38/Hx9+eWXWrlypbZs2aIvvvjC1S2ZRkZGhjZs2KBp06YpNDRUd911l6tbAtweQReAqdWtW1ft27fXe++9p+zsbPn5+al379566aWXznkzEM4tOztbgwYNUp06dfTUU0/p9ttvd3VLppGcnKznnntOLVq00Pz581WjRg1XtwS4PeboAkA1MmfOHA0fPly7du2q9LqyAOCumKMLAH/CrFmzZLFYFBMTU2XXnDhxoiwWi/3L19dXjRo1Up8+fTR79mwVFhZW2WsBgJkxdQEA/oSkpCQ1adJEP/zwg3bs2GHfurYqvPXWW6pVq5YKCwu1b98+ff3117rvvvs0Y8YMLVy40L5bHACgYozoAsAl2rVrl9auXavp06fbt229kJKSEhUVFVV4Lj8/3+FxYmKiBg8erBEjRujZZ5/Vd999p7lz5yojI0MDBgyokvcAAGZG0AWAS5SUlKS6deuqd+/eSkxMLBd0s7KyZLFYNHXqVM2YMUORkZHy8fHR1q1b7dMTtm7dqkGDBqlu3bq6+eabL/ia99xzj+6//359//335dYA/v7779WjRw8FBATI19dXcXFx+u677y54zS+++EK9e/dWWFiYfHx8FBkZqeeff95hi9oJEybIy8vLYdvhMg8++KDq1Kmj06dPX/C1AOByIugCwCVKSkpSv3795O3trbvvvluZmZlav359ubrZs2frjTfe0IMPPqhp06apXr169nMDBgxQQUGBXnzxRT3wwAOVet17771XkrRs2TL7sW+++UaxsbHKy8vThAkT9OKLL+r48eO65ZZb9MMPP5z3enPmzFGtWrU0duxYvfbaa2rfvr2effZZPfnkkw6vWVJSok8++cThuUVFRUpOTlb//v1ZJQDAFYc5ugBwCTZs2KBt27bpjTfekCTdfPPNuuqqq5SUlKQbbrjBofb333/Xjh07FBQUVO461157rebNm3dRr926dWtJ0s6dOyWd2bzh4YcfVnx8vJYsWSKLxSJJeuihh9SqVSs9/fTTDqH4j+bNm6eaNWvaHz/88MN6+OGHNWvWLL3wwgvy8fFRVFSUOnTooLlz52rUqFH22kWLFunYsWP28A0AVxJGdAHgEiQlJalBgwaKj4+XdGZL37vuuksff/yxwz/5S1L//v0rDLmSLmnTilq1akmSTpw4IUnatGmTMjMzNWjQIB05ckQ5OTnKyclRfn6+unTpojVr1qi0tPSc1zs75J44cUI5OTnq1KmTCgoKtG3bNvu5IUOG6Pvvv7cHbOnMzyE8PFxxcXEX/T4AwNkIugBwkWw2mz7++GPFx8dr165d2rFjh3bs2KGYmBgdOnRIK1ascKiPiIg457XOd+5cTp48KUmqXbu2JCkzM1OSNHToUAUFBTl8vffeeyosLFRubu45r/fLL7/ojjvuUEBAgPz9/RUUFKTBgwdLksPz7rrrLvn4+NjnIufm5mrhwoW655577KPIAHAlYeoCAFykb775RgcOHNDHH3+sjz/+uNz5pKQk3XrrrfbHZ4+Y/tH5zp1LRkaGJNmXMisbrX3llVfUtm3bCp9TNgr8R8ePH1dcXJz8/f313HPPKTIyUjVq1NDGjRs1btw4h5HgunXr6rbbblNSUpKeffZZJScnq7Cw0B6KAeBKQ9AFgIuUlJSk4OBgvfnmm+XOpaSk6PPPP9fbb7/ttNf/6KOPJEndu3eXJEVGRkqS/P391bVr14u61qpVq3TkyBGlpKQoNjbWfnzXrl0V1g8ZMkR9+/bV+vXrlZSUpHbt2qlVq1aX8jYAwOkIugBwEU6dOqWUlBQNGDBAiYmJ5c6HhYVp/vz5+vLLL6t0t7Qy8+bN03vvvacOHTqoS5cukqT27dsrMjJSU6dO1aBBg8qN3mZnZ59zjrDVapV05oa2MkVFRZo1a1aF9T179lRgYKCmTJmi1atX65VXXqmKtwUATkHQBYCL8OWXX+rEiRO6/fbbKzz/l7/8xb55xJ8NusnJyapVq5aKiorsO6N99913uvbaa/Xpp5/a6zw8PPTee++pZ8+eatWqlYYPH66GDRtq3759Wrlypfz9/fXVV19V+BodO3ZU3bp1NXToUI0ePVoWi0UfffSRQ/A9m5eXlwYOHKiZM2fKarXq7rvv/lPvEQCciaALABchKSlJNWrUULdu3So87+Hhod69eyspKUlHjhz5U6/1yCOPSJJq1KihwMBAtW3bVu+//74GDRokHx8fh9rOnTtr3bp1ev755zVz5kydPHlSISEhiomJ0UMPPXTO16hfv74WLlyoxx9/XE8//bTq1q2rwYMHq0uXLvapEX80ZMgQzZw5U126dFFoaOifeo8A4EwW41x/bQcAoAI///yz2rZtqw8//JD1cwFc0VheDABwUf73f/9XtWrVUr9+/VzdCgCcF1MXAACV8tVXX2nr1q169913NWrUKPn5+bm6JQA4L6YuAAAqpUmTJjp06JC6d++ujz76yL5hBQBcqQi6AAAAMCXm6AIAAMCUCLoAAAAwJbe/Ga20tFT79+9X7dq1ZbFYXN0OAAAAnMwwDJ04cUJhYWHy8Dj3uK3bB939+/crPDzc1W0AAADgMtu7d6+uuuqqc553+6Bbdtfv3r175e/v7+JuAODyKS4u1rJly3TrrbfKy8vL1e0AwGWTl5en8PDwC67+4vZBt2y6gr+/P0EXQLVSXFwsX19f+fv7E3QBVEsXmrbKzWgAAAAwJYIuAAAATImgCwAAAFMi6AIAAMCUCLoAAAAwJYIuAAAATImgCwAAAFMi6AIAAMCUCLoAAAAwJYIuALghm82m1atXa82aNVq9erVsNpurWwKAKw5BFwDcTEpKiqKiotStWzdNnz5d3bp1U1RUlFJSUlzdGgBcUQi6AOBGUlJSlJiYqOjoaKWlpWn+/PlKS0tTdHS0EhMTCbsAcBaLYRiGq5v4M/Ly8hQQEKDc3Fz5+/u7uh0AcBqbzaaoqChFR0drwYIFstlsWrx4sXr16iWr1aqEhARlZGQoMzNTVqvV1e0CgNNUNv8xogsAbiItLU1ZWVl66qmn5OHh+PHt4eGh8ePHa9euXUpLS3NRhwBwZSHoAoCbOHDggCSpdevWFd6M1rp1a4c6AKjuLjnorlmzRn369FFYWJgsFosWLFhgP1dcXKxx48YpOjpafn5+CgsL05AhQ7R//36HazRp0kQWi8Xh66WXXrrkNwMAZhYaGipJmjlzZoU3o82cOdOhDgCqu0sOuvn5+br22mv15ptvljtXUFCgjRs36plnntHGjRuVkpKi7du36/bbby9X+9xzz+nAgQP2r8cee+xSWwIAU+vUqZOCg4M1fvx4tW7d2uFmtNatW+upp55ScHCwOnXq5OpWAeCK4HmpT+zZs6d69uxZ4bmAgAClpqY6HJs5c6ZuvPFG7dmzR40aNbIfr127tkJCQi61DQCoVs6+f7jseze/pxgAnOaSg+7Fys3NlcViUZ06dRyOv/TSS3r++efVqFEjDRo0SGPGjJGn57nbKiwsVGFhof1xXl6epDPTJYqLi53SOwBcCVavXq3s7Gy98MILeu+99xQbG2s/FxERoeeff17PPPOMVq5cqbi4OBd2CgDOVdnMd1mC7unTpzVu3DjdfffdDktAjB49Wtddd53q1auntWvXavz48Tpw4ICmT59+zmtNnjxZkyZNKnd82bJl8vX1dUr/AHAlWLNmjSQpMjJS06ZN09atW3Xs2DHVrVtX11xzjYqKiiRJS5YsUX5+vitbBQCnKigoqFRdlayja7FY9PnnnyshIaHcueLiYvXv31+///67Vq1add61zt5//3099NBDOnnypHx8fCqsqWhENzw8XDk5OayjC8DUVq9erW7duiktLU0xMTEqLi5WamqqunXrJi8vL6Wnpys2NlapqamM6AIwtby8PAUGBl5wHV2njugWFxfrzjvv1O7du/XNN99cMIjGxMSopKREWVlZatGiRYU1Pj4+FYZgLy8veXl5VUnfAHAlio+PV5MmTfTyyy87rHTj5eUlq9WqV155RREREYqPj2fDCACmVtnM57R1dMtCbmZmppYvX6769etf8DmbNm2Sh4eHgoODndUWALgtq9WqadOmaeHChUpISFB6erpOnTql9PR0JSQkaOHChZo6dSohFwD+65JHdE+ePKkdO3bYH+/atUubNm1SvXr1FBoaqsTERG3cuFELFy6UzWbTwYMHJUn16tWTt7e31q1bp++//17x8fGqXbu21q1bpzFjxmjw4MGqW7fun39nAGBC/fr1U3Jysh5//PFyN6MlJyerX79+LuwOAK4slzxHd9WqVYqPjy93fOjQoZo4caIiIiIqfN7KlSvVuXNnbdy4UY8++qi2bdumwsJCRURE6N5779XYsWPPOT+3IpXd6xgAzMRms2nlypVasmSJevbsyXQFANVKZfNfldyM5koEXQDVVXFxsRYvXqxevXpxjwKAaqWy+c9pc3QBAAAAVyLoAgAAwJQIugAAADAlgi4AAABMiaALAAAAUyLoAgAAwJQIugAAADAlgi4AAABMiaALAAAAUyLoAgAAwJQIugAAADAlgi4AAABMiaALAG7IZrNp9erVWrNmjVavXi2bzebqlgDgikPQBQA3k5KSoqioKHXr1k3Tp09Xt27dFBUVpZSUFFe3BgBXFIIuALiRlJQUJSYmKjo6WmlpaZo/f77S0tIUHR2txMREwi4AnMViGIbh6ib+jLy8PAUEBCg3N1f+/v6ubgcAnMZmsykqKkrR0dFasGCBbDabFi9erF69eslqtSohIUEZGRnKzMyU1Wp1dbsA4DSVzX+M6AKAm0hLS1NWVpaeeuopeXg4fnx7eHho/Pjx2rVrl9LS0lzUIQBcWQi6AOAmDhw4IElq3bp1hefLjpfVAUB1R9AFADcRGhoqScrIyKjwfNnxsjoAqO4IugDgJjp16qQmTZroxRdfVGlpqcO50tJSTZ48WREREerUqZOLOgSAKwtBFwDchNVq1bRp07Rw4UIlJCQoPT1dp06dUnp6uhISErRw4UJNnTqVG9EA4L88Xd0AAKDy+vXrp+TkZD3++OOKjY21H4+IiFBycrL69evnwu4A4MrCiC4AuKE/rgz5x6kMAACCLgC4lbM3jHj99dc1atQovf7662wYAQAVYMMIAHATZRtGBAYGKicnR1lZWfZzTZo0UWBgoI4cOcKGEQBMjw0jAMBkyjaM2LBhQ4VbAG/YsIENIwDgLARdAHAT+/btkyT16NFDCxYsUExMjGrWrKmYmBgtWLBAPXr0cKgDgOqOoAsAbiI7O1vSmZUXKtoCOCEhwaEOAKo7gi4AuImgoCBJZ25Iq2jDiAULFjjUAUB1R9AFADfRsGFDSdKSJUsq3DBiyZIlDnUAUN2x6gIAuImzV13Izs7W7t277edYdQFAdVLZ/MfOaADgJsq2AE5MTFTv3r01duxYZWZmqlmzZkpNTdWiRYuUnJxMyAWA/yLoAoAbOXsL4IULF9qPswUwAJTH1AUAcEM2m00rV67UkiVL1LNnT8XHxzOSC6DacPqGEWvWrFGfPn0UFhYmi8Viv9u3jGEYevbZZxUaGqqaNWuqa9euyszMdKg5evSo7rnnHvn7+6tOnToaMWKETp48eaktAUC1YbVaFRcXp9jYWMXFxRFyAaAClxx08/Pzde211+rNN9+s8PzLL7+s119/XW+//ba+//57+fn5qXv37jp9+rS95p577tEvv/yi1NRULVy4UGvWrNGDDz54qS0BAAAAdpc8R7dnz57q2bNnhecMw9CMGTP09NNPq2/fvpKkDz/8UA0aNNCCBQs0cOBA/frrr1q6dKnWr1+v66+/XpL0xhtvqFevXpo6darCwsIutTUAAADAOevo7tq1SwcPHlTXrl3txwICAhQTE6N169ZJktatW6c6derYQ64kde3aVR4eHvr++++d0RYAAACqEaesunDw4EFJUoMGDRyON2jQwH7u4MGDCg4OdmzG01P16tWz11SksLBQhYWF9sd5eXmSpOLiYhUXF1dJ/wDgDso+8/jsA1DdVPZzz+2WF5s8ebImTZpU7viyZcvk6+vrgo4A4PKz2WzaunWrjh07pi1btuiaa67hhjQA1UZBQUGl6pwSdENCQiRJhw4dUmhoqP34oUOH1LZtW3vN4cOHHZ5XUlKio0eP2p9fkfHjx2vs2LH2x3l5eQoPD9ett97K8mIAqoXPP/9c48aNU1ZWlv1YkyZNNGXKFN1xxx2uawwALpOyf9G/EKcE3YiICIWEhGjFihX2YJuXl6fvv/9ejzzyiCSpQ4cOOn78uDZs2KD27dtLkr755huVlpYqJibmnNf28fGRj49PueNeXl7y8vKq+jcDAFeQlJQUDRw40L4z2m+//abmzZtr2bJlGjhwIJtGAKgWKpv5LnnDiJMnT2rHjh2SpHbt2mn69OmKj49XvXr11KhRI02ZMkUvvfSSPvjgA0VEROiZZ57R5s2btXXrVtWoUUPSmZUbDh06pLffflvFxcUaPny4rr/+es2bN6/SfbBhBIDqwmazKSoqSoGBgcrJySk3ohsYGKgjR44oMzOTaQwATK2y+e+Sg+6qVasUHx9f7vjQoUM1Z84cGYahCRMm6N1339Xx48d18803a9asWWrevLm99ujRoxo1apS++uoreXh4qH///nr99ddVq1atSvdB0AVQXZR97losFvXq1UsRERH2Ed1du3Zp8eLFMgxDK1euVOfOnV3dLgA4jdOD7pWCoAugukhKStLgwYMVERGh3bt3q7S01H7Ow8NDjRs31q5duzR37lzdc889LuwUAJzL6VsAAwAur+zsbEln1iqvSNnxsjoAqO4IugDgJurWrWv/vmfPnkpLS9P8+fOVlpbmsFPl2XUAUJ0RdAHATZy9a6TFYlHZzDPDMGSxWCqsA4DqzO02jACA6mr//v2SpMjISG3evFmxsbH2c40bN1ZkZKR27txprwOA6o6gCwBuouyGi507d6pmzZoO5w4fPqxTp0451AFAdcfUBQBwE/fee2+V1gGA2TGiCwBuIi4uzj43t1atWnrooYdUUFAgX19fJSUl6dSpU7JYLIqLi3N1qwBwRSDoAoCbWLt2rf0GtJycHM2YMcN+ruxmNMMwtHbtWjaMAAAxdQEA3MaBAwckSXPnzlWjRo0czjVu3Fhz5851qAOA6o6gCwBuIjQ0VJK0d+/ecucMw9CePXsc6gCgumMLYABwEzabTaGhocrOztZtt92mcePG6ffff9dVV12lKVOmaOHChQoODtb+/ftltVpd3S4AOA1bAAOACZ29McTZG0YAAMoj6AKAm0hLS9Phw4c1efJkbdmyRbGxsbr77rsVGxurjIwMvfjiizp8+LDS0tJc3SoAXBEIugDgJspuMgsPD3cY2S1TdoMaN6MBwBksLwYAbqLsJrN7771XvXv31pgxY5SZmalmzZopNTXVvlEEN6MBwBncjAYAbqKoqEh+fn7y8/NTQECAfZUF6cxobm5urvLz85Wfny9vb28XdgoAzlXZ/MeILgC4ibVr16qkpES5ubmqUaOG3nrrLfn4+KiwsFATJ05Ubm6uvY4NIwCAoAsAbmPfvn2SpHbt2unYsWN65JFH7OciIiLUrl07/fTTT/Y6AKjuuBkNANxEdna2JOnRRx/Vjh07lJqaqrFjxyo1NVWZmZl6+OGHHeoAoLoj6AKAmwgKCpIkpaSkyGKxKC4uTrGxsYqLi5PFYtGCBQsc6gCguiPoAoCbaNiwoSRp6dKlSkhIUHp6uk6dOqX09HQlJCRo6dKlDnUAUN2x6gIAuAmbzaaoqCgFBgYqOztbu3fvtp9r0qSJAgMDdeTIEWVmZrIFMABTY9UFADAZq9WqadOmqX///uXOZWVlKSsrS5999hkhFwD+i6kLAOBG0tPTJanczmgeHh4O5wEATF0AALdx9oYRderUcZi60LhxYx0/fpwNIwBUC5XNf4zoAoCbmDVrlkpKSpSXl6fo6Gi99tprGjVqlF577TVFR0crLy9PJSUlmjVrlqtbBYArAnN0AcBNZGZmSpLatGmjLVu2aOHChfZzjRs3Vps2bfTzzz/b6wCgumNEFwDcRNm83J9//llt2rRRWlqa5s+fr7S0NHvIPbsOAKo7RnQBwE3ccMMNkiQvLy8lJyfLYrHoyJEjiomJUXJysmrVqqXi4mJ7HQBUd4zoAoCbOHbsmCSpuLhYjRo10nvvvaejR4/qvffeU6NGjVRcXOxQBwDVHSO6AOAmyrb2jYiI0J49e/Too4/az1mtVkVERGjXrl1sAQwA/0XQBQA3Uba1b1ZWlnr16qWIiAj99ttvat68uXbt2qXFixc71AFAdcc6ugDgJs7eAjgnJ0dZWVn2cxEREapfvz5bAAOoFtgCGABMpmwL4MTERPXu3VtjxoxRZmammjVrptTUVC1atEjJycmEXAD4L4IuALiRfv36KTk5WY8//rjDOroRERFKTk5Wv379XNgdAFxZnLrqQpMmTWSxWMp9jRw5UpLUuXPncucefvhhZ7YEAG6vX79+2rFjh1JTUzV27FilpqYqMzOTkAsAf+DUEd3169fLZrPZH2dkZKhbt24aMGCA/dgDDzyg5557zv7Y19fXmS0BgClYrVbFxcUpPz9fcXFxTFcAgAo4Nej+cYmbl156SZGRkYqLi7Mf8/X1VUhIiDPbAAAAQDV02eboFhUVae7cuRo7dqzD9pRJSUmaO3euQkJC1KdPHz3zzDPnHdUtLCxUYWGh/XFeXp6kMwuoly2WDgBmZ7PZtGrVKq1Zs0Y+Pj7q3Lkzo7oAqo3KZr7LFnQXLFig48ePa9iwYfZjgwYNUuPGjRUWFqbNmzdr3Lhx2r59u1JSUs55ncmTJ2vSpEnlji9btoxpDwCqhXXr1mn27Nk6fPiwJGn69OkKDg7W8OHD1aFDBxd3BwDOV1BQUKm6y7aObvfu3eXt7a2vvvrqnDXffPONunTpoh07digyMrLCmopGdMPDw5WTk8M6ugBM7/PPP9fAgQPVq1cvPfHEEzp48KBCQkI0depULV68WB9//LHuuOMOV7cJAE6Vl5enwMDAC66je1mC7u7du9W0aVOlpKSob9++56zLz89XrVq1tHTpUnXv3r1S12bDCADVRdmGEdHR0frss8+0evVqLVmyRD179lRcXJz69++vjIwMNowAYHqVzX9OXV6szOzZsxUcHKzevXuft27Tpk2SpNDQ0MvQFQC4l7S0NGVlZaljx45q3ry5unXrpunTp6tbt25q3ry5OnTooF27diktLc3VrQLAFcHpQbe0tFSzZ8/W0KFD5en5/1OCd+7cqeeff14bNmxQVlaWvvzySw0ZMkSxsbFq06aNs9sCALdz4MABSdJTTz2l6OhopaWlaf78+UpLS1N0dLT++c9/OtQBQHXn9JvRli9frj179ui+++5zOO7t7a3ly5drxowZys/PV3h4uPr376+nn37a2S0BgFsKDg6WJN10001asGCBbDabjhw5opiYGC1YsEBxcXH69ttv7XUAUN05PejeeuutqmgacHh4uFavXu3slweAauMy3VsMAG7jsszRBQD8eWXLiX377bdKSEhQenq6Tp06pfT0dCUkJOi7775zqAOA6o6gCwBuouxG3cmTJ2vz5s2KjY3V3XffrdjYWG3ZskUvvviiQx0AVHeXbR1dZ2F5MQDVRdnyYoGBgcrOztbu3bvt5xo3bqygoCAdOXKE5cUAmN4VtbwYAODPs1qtGjBggH788Uft3bvX4dzevXv1448/KjExkZALAP9F0AUAN2Gz2fTBBx9IOrNyzdl8fHwkSR988IFsNttl7w0ArkQEXQBwE6tWrdLhw4fVsmXLckuIBQUFqWXLljp8+LBWrVrlmgYB4Arj9OXFAABVoyzAbtu2Tb1791bfvn21fft2tWjRQv/5z3+0aNEie12XLl1c2CkAXBkIugDgJkpLSyWdWVXh66+/VklJiSRp2bJl8vT0VGhoqA4cOGCvA4DqjqALAG6ifv36ks5s8RscHKx77rlH+fn58vPzU1JSkn3r37I6AKjuCLoA4CbODrC5ubl69dVX7Y/Lbkb7Yx0AVGfcjAYAbmL9+vX274uKihzOFRcXV1gHANUZQRcA3ETZ3FtPT0/9ca+f0tJSeXp6OtQBQHVH0AUAN+HhceYju+wmtD8qO15WBwDVHZ+GAOAm2rdvX6V1AGB2BF0AcBPff/+9/fs/jtqe/fjsOgCozgi6AOAmMjIy7N//cY7u2Y/PrgOA6ozlxQDATZwdZnv27KmmTZvqt99+U/PmzfWf//xHixcvLlcHANUZQRcA3ER0dLTWrl0rHx8fZWRk2IPtsmXL1LhxY3l7e6uoqEjR0dEu7hQArgxMXQAAN3HTTTdJkgoLC/X77787nNu7d699bd2yOgCo7gi6AOAmwsPD7d//ca3csx+fXQcA1RlTFwDATXTs2NG+KURFa+mWnevYseNl7QsArlSM6AKAm1i7dq1KSkpUUlIiLy8vWa1WSZLVapWXl5f93Nq1a13cKQBcGRjRBQA3sXfvXvv3xcXF9u9tNptsNluFdQBQnTGiCwBuorIbQbBhBACcwYguALiJkydPOjxu1qyZLBaLDMNQZmbmOesAoLqyGG6+snheXp4CAgKUm5srf39/V7cDAE7j6+urU6dOXbCuZs2aKigouAwdAYBrVDb/MXUBANzE6dOnq7QOAMyOoAsAbsJisVRpHQCYHUEXANxEWFhYldYBgNkRdAHATURFRVVpHQCYHUEXANzE2WvnVkUdAJgdQRcA3MTVV19dpXUAYHYEXQBwEzk5OVVaBwBmR9AFADdRp06dKq0DALNzatCdOHGiLBaLw1fLli3t50+fPq2RI0eqfv36qlWrlvr3769Dhw45syUAcFvr1q2r0joAMDunj+i2atVKBw4csH99++239nNjxozRV199pU8//VSrV6/W/v371a9fP2e3BABuac+ePVVaBwBm5+n0F/D0VEhISLnjubm5+te//qV58+bplltukSTNnj1bV199tdLT0/WXv/zF2a0BgFspLS2t0joAMDunB93MzEyFhYWpRo0a6tChgyZPnqxGjRppw4YNKi4uVteuXe21LVu2VKNGjbRu3bpzBt3CwkIVFhbaH+fl5Uk6s5wOS+oAMLPg4GDt3bu3UnV8HgIws8p+xjk16MbExGjOnDlq0aKFDhw4oEmTJqlTp07KyMjQwYMH5e3tXe6miQYNGujgwYPnvObkyZM1adKkcseXLVsmX1/fqn4LAHDFaNq0aaWCbtOmTbV48eLL0BEAuEZBQUGl6iyGYRhO7sXu+PHjaty4saZPn66aNWtq+PDhDqOzknTjjTcqPj5eU6ZMqfAaFY3ohoeHKycnR/7+/k7tHwBcqW3bttq6desF66655hpt2rTJ+Q0BgIvk5eUpMDBQubm5581/Tp+6cLY6deqoefPm2rFjh7p166aioiIdP37cYVT30KFDFc7pLePj4yMfH59yx728vOTl5eWMtgHA7fB5CMDMKvsZd1nX0T158qR27typ0NBQtW/fXl5eXlqxYoX9/Pbt27Vnzx516NDhcrYFAG6hsv9UV9k6ADA7p47oPvHEE+rTp48aN26s/fv3a8KECbJarbr77rsVEBCgESNGaOzYsapXr578/f312GOPqUOHDqy4AAAVaNiwobKysipVBwBwctD9/fffdffdd+vIkSMKCgrSzTffrPT0dAUFBUmSXn31VXl4eKh///4qLCxU9+7dNWvWLGe2BABua8uWLVVaBwBmd1lvRnOGvLw8BQQEXHAyMgC4Oy8vL5WUlFywztPTk+XFAJhaZfPfZZ2jCwC4dBaLpUrrAMDsCLoA4CYqe5cxKy4AwBkEXQBwE56elbutorJ1AGB2BF0AcBOlpaVVWgcAZkfQBQA3cb7NdC6lDgDMjqALAG7i4MGDVVoHAGZH0AUAN8GqCwBwcQi6AOAm8vPzq7QOAMyOoAsAAABTIugCAADAlAi6AOAm2DACAC4OQRcA3IS3t3eV1gGA2RF0AcBNnDhxokrrAMDsCLoAAAAwJYIuAAAATImgCwAAAFMi6AIAAMCUCLoAAAAwJYIuAAAATImgCwBuwmq1VmkdAJgdQRcA3ERpaWmV1gGA2RF0AcBNGIZRpXUAYHYEXQAAAJgSQRcAAACmRNAFAACAKRF0AQAAYEoEXQAAAJgSQRcAAACmRNAFAACAKRF0AQAAYEoEXQAAAJgSQRcAAACmRNAFAACAKRF0AQAAYEpODbqTJ0/WDTfcoNq1ays4OFgJCQnavn27Q03nzp1lsVgcvh5++GFntgUAAIBqwKlBd/Xq1Ro5cqTS09OVmpqq4uJi3XrrrcrPz3eoe+CBB3TgwAH718svv+zMtgAAAFANeDrz4kuXLnV4PGfOHAUHB2vDhg2KjY21H/f19VVISIgzWwEAAEA1c1nn6Obm5kqS6tWr53A8KSlJgYGBat26tcaPH6+CgoLL2RYAAABMyKkjumcrLS3V3/72N910001q3bq1/figQYPUuHFjhYWFafPmzRo3bpy2b9+ulJSUCq9TWFiowsJC++O8vDxJUnFxsYqLi537JgDATfB5CMDMKvsZd9mC7siRI5WRkaFvv/3W4fiDDz5o/z46OlqhoaHq0qWLdu7cqcjIyHLXmTx5siZNmlTu+LJly+Tr61v1jQOAG1q8eLGrWwAAp6nsv/5bDMMwnNyLRo0apS+++EJr1qxRRETEeWvz8/NVq1YtLV26VN27dy93vqIR3fDwcOXk5Mjf37/KeweAK4W3t3ela4uKipzYCQC4Vl5engIDA5Wbm3ve/OfUEV3DMPTYY4/p888/16pVqy4YciVp06ZNkqTQ0NAKz/v4+MjHx6fccS8vL3l5ef2pfgHALPg8BGBmlf2Mc2rQHTlypObNm6cvvvhCtWvX1sGDByVJAQEBqlmzpnbu3Kl58+apV69eql+/vjZv3qwxY8YoNjZWbdq0cWZrAAAAMDmnTl2wWCwVHp89e7aGDRumvXv3avDgwcrIyFB+fr7Cw8N1xx136Omnn670NIS8vDwFBARccOgaANzduT5TK3IZZqUBgMtUNv85ferC+YSHh2v16tXObAEAAADV1GVdRxcAAAC4XAi6AAAAMCWCLgAAAEzpsm0YAQDVTUFBgbZt2+aS1964cWOVXatly5ZsyAPALRF0AcBJtm3bpvbt27vktavydTds2KDrrruuyq4HAJcLQRcAnKRly5basGFDlV1v8uTJSk5OvmBdYmKixo8fX2Wv27Jlyyq7FgBcTpdlC2BnYh1dANVJZdbSdfOPdQC4oMrmP25GAwA3cqEQS8gFgP9H0AUAN2MYhp544gmHY0888QQhFwD+gKkLAOCmNu0+ooS30rXgkb+obeP6rm4HAC4bpi4AAACgWiPoAgAAwJQIugAAADAlgi4AAABMiaALAAAAUyLoAgAAwJQIugAAADAlgi4AAABMiaALAAAAUyLoAgAAwJQIugAAADAlgi4AAABMiaALAAAAUyLoAgAAwJQIugAAADAlgi4AAABMiaALAAAAUyLoAgAAwJQIugAAADAlgi4AAABMiaALAAAAUyLoAgAAwJQIugAAADAlgi4AAABMiaALAAAAU7oigu6bb76pJk2aqEaNGoqJidEPP/zg6pYAAADg5jxd3cAnn3yisWPH6u2331ZMTIxmzJih7t27a/v27QoODnZ1ewBMbldOvvILS1zdxiXZmZ1v/6+np8s/zi+Jn4+nIgL9XN0GAJOyGIZhuLKBmJgY3XDDDZo5c6YkqbS0VOHh4Xrsscf05JNPXvD5eXl5CggIUG5urvz9/Z3dLgAT2ZWTr/ipq1zdRrW38onOhF0AF6Wy+c+lQwBFRUXasGGDxo8fbz/m4eGhrl27at26dRU+p7CwUIWFhfbHeXl5kqTi4mIVFxc7t2EAppKbf1qSNDUxWlFB7he08k8XamnaevXodIP8avi4up2LtiM7X08kb1Fu/mkVB3i7uh0AbqSymc+lQTcnJ0c2m00NGjRwON6gQQNt27atwudMnjxZkyZNKnd82bJl8vX1dUqfAMxp70lJ8tTB7T/Ja5+ru7k01wdJOdvWK8fVjVyCg//9+X/77bfaXcvV3QBwJwUFBZWqc7tJXePHj9fYsWPtj/Py8hQeHq5bb72VqQsALsov+/M0dUu6br75ZrUKc7/Pj+LiYqWmpqpbt27y8vJydTsXzd1//gBcp+xf9C/EpUE3MDBQVqtVhw4dcjh+6NAhhYSEVPgcHx8f+fiU/yc6Ly8vt/ygB+A6ZTdweXp6uvXnh7t+/pnl5w/g8qvsZ4ZLlxfz9vZW+/bttWLFCvux0tJSrVixQh06dHBhZwAAAHB3Lp+6MHbsWA0dOlTXX3+9brzxRs2YMUP5+fkaPny4q1sDAACAG3N50L3rrruUnZ2tZ599VgcPHlTbtm21dOnScjeoAQAAABfD5UFXkkaNGqVRo0a5ug0AAACYyBWxBTAAAABQ1a6IEV0AcBWLZ5525W2XRw33W8i1pKRE+0v269ejv7rlFsC78k7K4lm5JYIA4FK43ycjAFQhrzrf66kfXnR1G3/KrKWzXN3CJfOq00VSL1e3AcCkCLoAqrXi4zGa1nuQIoPdc0T3u2+/00033+SWI7o7D5/U6KSdrm4DgIm53ycjAFQho8RfEf4tdE39AFe3ctGKi4u1y3OXrq53tVtuuFB6OldGSbar2wBgYtyMBgAAAFMi6AIAAMCUCLoAAAAwJYIuAAAATImgCwAAAFMi6AIAAMCUCLoAAAAwJdbRBVBtnSq2SZIy9uW6uJNLk3+qUD9mSyG7j8mvpo+r27loOw6fdHULAEyOoAug2tr536D1ZMoWF3fyZ3jqox3rXd3En+Lnw/8VAXAOPl0AVFu3tgqRJEUG11JNL6uLu7l42w/k6vHkLZqWGK0Woe63s5t0JuRGBPq5ug0AJkXQBVBt1fPz1sAbG7m6jUtWUlIiSYoM8lPrhu4ZdAHAmbgZDQAAAKZE0AUAAIApEXQBAABgSgRdAAAAmBJBFwAAAKZE0AUAAIApEXQBAABgSgRdAAAAmBJBFwAAAKZE0AUAAIApEXQBAABgSgRdAAAAmBJBFwAAAKZE0AUAAIApEXQBAABgSgRdAAAAmBJBFwAAAKZE0AUAAIApOSXoZmVlacSIEYqIiFDNmjUVGRmpCRMmqKioyKHGYrGU+0pPT3dGSwAAAKhmPJ1x0W3btqm0tFTvvPOOoqKilJGRoQceeED5+fmaOnWqQ+3y5cvVqlUr++P69es7oyUAAABUM04Juj169FCPHj3sj5s2bart27frrbfeKhd069evr5CQEGe0AQAAgGrMKUG3Irm5uapXr16547fffrtOnz6t5s2b6x//+Iduv/32816nsLBQhYWF9sd5eXmSpOLiYhUXF1dt0wBwBSspKbH/l88/ANVJZT/zLkvQ3bFjh9544w2H0dxatWpp2rRpuummm+Th4aHPPvtMCQkJWrBgwXnD7uTJkzVp0qRyx5ctWyZfX1+n9A8AV6K9JyXJU+np6dqX4epuAODyKSgoqFSdxTAMo7IXffLJJzVlypTz1vz6669q2bKl/fG+ffsUFxenzp0767333jvvc4cMGaJdu3YpLS3tnDUVjeiGh4crJydH/v7+lXwnAOD+ft5zVIn/+6OSH7he1zYq/y9mAGBWeXl5CgwMVG5u7nnz30WN6D7++OMaNmzYeWuaNm1q/37//v2Kj49Xx44d9e67717w+jExMUpNTT1vjY+Pj3x8fMod9/LykpeX1wVfAwDMwtPT0/5fPv8AVCeV/cy7qKAbFBSkoKCgStXu27dP8fHxat++vWbPni0PjwuvZLZp0yaFhoZeTEsAAABAhZwyR3ffvn3q3LmzGjdurKlTpyo7O9t+rmyFhQ8++EDe3t5q166dJCklJUXvv//+Bac3AACk5ORkDRgwQJLUbor06aefKjEx0cVdAcCVxSlBNzU1VTt27NCOHTt01VVXOZw7e0rw888/r927d8vT01MtW7bUJ598wgc1AFyAxWIpd6ws9F7EbRcAYHoXdTPalSgvL08BAQEXnIwMAJdbQUGBtm3bVqXXbN++/QVrNmzYUKWv2bJlS1a1AXBFqWz+u2zr6AJAdbNt27ZKBdOqVtWvuWHDBl133XVVek0AuBwIugDgJC1btqzS0dWLCbBV+bpnLxkJAO6EoAsATuLr6+uykVBGYAFAuvCaXwAAAIAbIugCAADAlAi6AAAAMCWCLgAAAEyJoAsAAABTIugCAADAlAi6AAAAMCWCLgAAAEyJoAsAAABTIugCAADAlAi6AOAmLBZLldYBgNkRdAHATRiGUaV1AGB2BF0AAACYEkEXAAAApkTQBQA34ePjU6V1AGB2BF0AcBPFxcVVWgcAZkfQBQA34eFRuY/sytYBgNnxaQgAbsLLy6tK6wDA7Ai6AOAm/Pz8qrQOAMyOoAsAbsJqtVZpHQCYHUEXANxEfn5+ldYBgNkRdAHATfj7+1dpHQCYHUEXANxEvXr1qrQOAMyOoAsAbmL06NFVWgcAZkfQBQA3cfTo0SqtAwCzI+gCgJtITU2t0joAMDuCLgC4iSNHjlRpHQCYHUEXANzEsWPH7N9bLBaHc2dv+3t2HQBUZ56ubgAAUDk1a9a0f9+jRw/16NFDmZmZatasmZYuXaolS5aUqwOA6oygCwBuwtPz/z+ylyxZYg+256sDgOqMqQsA4CY6duxYpXUAYHZOC7pNmjSRxWJx+HrppZccajZv3qxOnTqpRo0aCg8P18svv+ysdgDA7V199dUOjxs2bKiQkBA1bNjwvHUAUF1ZDMMwnHHhJk2aaMSIEXrggQfsx2rXri0/Pz9JUl5enpo3b66uXbtq/Pjx2rJli+677z7NmDFDDz74YKVfJy8vTwEBAcrNzWXbSwCmVlRUJD8/PxmGIZvNVu681WqVxWJRfn6+vL29XdAhAFwelc1/Tp3IVbt2bYWEhFR4LikpSUVFRXr//ffl7e2tVq1aadOmTZo+ffpFBV0AqC68vb3Vu3dvffHFF/L29lZ4eLgKCgrk6+urvXv3qqioSH379iXkAsB/OXWO7ksvvaT69eurXbt2euWVV1RSUmI/t27dOsXGxjp8IHfv3l3bt29naRwAqIDNZtPPP/+syMhI2Ww27dy5UwcOHNDOnTtVWlqqyMhIbd68ucLRXgCojpw2ojt69Ghdd911qlevntauXavx48frwIEDmj59uiTp4MGDioiIcHhOgwYN7Ofq1q1b4XULCwtVWFhof5yXlydJKi4uVnFxsTPeCgBcEVavXq2srCy98MILevfdd7Vnzx77ubCwMA0bNkzPPPOMVq5cqbi4OBd2CgDOVdnMd1FB98knn9SUKVPOW/Prr7+qZcuWGjt2rP1YmzZt5O3trYceekiTJ0+Wj4/Pxbysg8mTJ2vSpEnlji9btky+vr6XfF0AuNKtWbNGkvTMM8+offv26tGjh7y9vVVUVKSNGzfq2WeflXRm6bH8/HxXtgoATlVQUFCpuou6GS07O/uCW0s2bdq0wvlhv/zyi1q3bq1t27apRYsWGjJkiPLy8rRgwQJ7zcqVK3XLLbfo6NGjFzWiGx4erpycHG5GA2Bq33zzjXr06KEWLVro9OnT2r17t/1c48aNVaNGDW3fvl1Lly7VLbfc4sJOAcC58vLyFBgYWLU3owUFBSkoKOiSGtq0aZM8PDwUHBwsSerQoYP++c9/qri4WF5eXpKk1NRUtWjR4pwhV5J8fHwqHBH28vKyXwcAzKhsI4jt27erd+/eevzxx/Xbb7+pefPm+vrrr7Vo0SJ7HZ+HAMyssp9xTpmju27dOn3//feKj49X7dq1tW7dOo0ZM0aDBw+2h9hBgwZp0qRJGjFihMaNG6eMjAy99tprevXVV53REgC4vYMHD9q//+abb+zBVnLc9vfsOgCozpwSdH18fPTxxx9r4sSJKiwsVEREhMaMGeMwbzcgIEDLli3TyJEj1b59ewUGBurZZ59laTEAOIfs7OxznrNYLJWqA4DqxClB97rrrlN6evoF69q0aaO0tDRntAAAplO/fn1JUnBwsPbs2aO0tDQtWbJEPXv2VKdOndSoUSMdPnzYXgcA1Z1T19EFAFSdspuBDx8+rAEDBsjHx0c33HCDfHx8NGDAAB0+fNihDgCqO6fujAYAqDplNwO3a9dOW7ZsUWxsrP1cRESE2rVrp59++umSbxoGALMh6AKAm2jYsKEk6aefftJtt92mMWPGKDMzU82aNVNqaqoWLlzoUAcA1d1FraN7JcrLy1NAQMAF11EDAHdns9kUFRWlwMBAZWdnO6yj26RJEwUGBurIkSPKzMyU1Wp1YacA4FyVzX+M6AKAm7BarZo2bZoSExPVu3dvjR071mFEd9GiRUpOTibkAsB/EXQBwI3069dPycnJevzxx+1TFaQzc3STk5PVr18/F3YHAFcWpi4AgBuy2WxauXKlfXmx+Ph4RnIBVBuVzX8sLwYAAABTIugCgJtJSUlRVFSUunXrpunTp6tbt26KiopSSkqKq1sDgCsKQRcA3EhKSooSExMVHR2ttLQ0zZ8/X2lpaYqOjlZiYiJhFwDOwhxdAHATZcuLRUdHa8GCBbLZbFq8eLF69eolq9WqhIQEZWRksLwYANNjji4AmExaWpqysrL01FNPycPD8ePbw8ND48eP165du5SWluaiDgHgykLQBQA3ceDAAUlS69atKzxfdrysDgCqO4IuALiJ0NBQSVJGRkaF58uOl9UBQHVH0AUAN9GpUyc1adJEL774okpLSx3OlZaWavLkyYqIiFCnTp1c1CEAXFkIugDgJsq2AF64cKESEhKUnp6uU6dOKT09XQkJCVq4cKGmTp3KjWgA8F9sAQwAbuTsLYBjY2Ptx9kCGADKY3kxAHBDbAEMoDqrbP5jRBcA3JDValVcXJzy8/MVFxdHyAWACjBHFwAAAKZE0AUAAIApEXQBAABgSgRdAAAAmBJBFwAAAKZE0AUAAIApEXQBAABgSgRdAAAAmBJBFwAAAKbk9jujle1gnJeX5+JOAODyKi4uVkFBgfLy8uTl5eXqdgDgsinLfWU58FzcPuieOHFCkhQeHu7iTgAAAHA5nThxQgEBAec8bzEuFIWvcKWlpdq/f79q164ti8Xi6nYA4LLJy8tTeHi49u7dK39/f1e3AwCXjWEYOnHihMLCwuThce6ZuG4fdAGgusrLy1NAQIByc3MJugBQAW5GAwAAgCkRdAEAAGBKBF0AcFM+Pj6aMGGCfHx8XN0KAFyRmKMLAAAAU2JEFwAAAKZE0AUAAIApEXQBAABgSgRdAAAAmBJBFwDc0JtvvqkmTZqoRo0aiomJ0Q8//ODqlgDgikPQBQA388knn2js2LGaMGGCNm7cqGuvvVbdu3fX4cOHXd0aAFxRWF4MANxMTEyMbrjhBs2cOVOSVFpaqvDwcD322GN68sknXdwdAFw5GNEFADdSVFSkDRs2qGvXrvZjHh4e6tq1q9atW+fCzgDgykPQBQA3kpOTI5vNpgYNGjgcb9CggQ4ePOiirgDgykTQBQAAgCkRdAHAjQQGBspqterQoUMOxw8dOqSQkBAXdQUAVyaCLgC4EW9vb7Vv314rVqywHystLdWKFSvUoUMHF3YGAFceT1c3AAC4OGPHjtXQoUN1/fXX68Ybb9SMGTOUn5+v4cOHu7o1ALiiEHQBwM3cddddys7O1rPPPquDBw+qbdu2Wrp0abkb1ACgumMdXQAAAJgSc3QBAABgSgRdAAAAmBJBFwAAAKZE0AUAAIApEXQBAABgSgRdAAAAmBJBFwAAAKZE0AWAambOnDmqU6eOq9sAAKcj6ALAJRo2bJgsFossFou8vLzUoEEDdevWTe+//75KS0ur9LUmTpxofy1PT08FBgYqNjZWM2bMUGFhYZW+FgCYBUEXAP6EHj166MCBA8rKytKSJUsUHx+vv/71r7rttttUUlJSpa/VqlUrHThwQHv27NHKlSs1YMAATZ48WR07dtSJEyeq9LUAwAwIugDwJ/j4+CgkJEQNGzbUddddp6eeekpffPGFlixZojlz5kiSjh8/rvvvv19BQUHy9/fXLbfcop9//tl+jYkTJ6pt27Z65513FB4eLl9fX915553Kzc11eC1PT0+FhIQoLCxM0dHReuyxx7R69WplZGRoypQp9rrCwkI98cQTatiwofz8/BQTE6NVq1ad8z3s3LlTffv2VYMGDVSrVi3dcMMNWr58uf38c889p9atW5d7Xtu2bfXMM89c4k8OAJyPoAsAVeyWW27Rtddeq5SUFEnSgAEDdPjwYS1ZskQbNmzQddddpy5duujo0aP25+zYsUP//ve/9dVXX2np0qX66aef9Oijj17wtVq2bKmePXvaX0uSRo0apXXr1unjjz/W5s2bNWDAAPXo0UOZmZkVXuPkyZPq1auXVqxYoZ9++kk9evRQnz59tGfPHknSfffdp19//VXr16+3P+enn37S5s2bNXz48Ev6GQHA5UDQBQAnaNmypbKysvTtt9/qhx9+0Keffqrrr79ezZo109SpU1WnTh0lJyfb60+fPq0PP/xQbdu2VWxsrN544w19/PHHOnjwYKVfS5L27Nmj2bNn69NPP1WnTp0UGRmpJ554QjfffLNmz55d4fOvvfZaPfTQQ2rdurWaNWum559/XpGRkfryyy8lSVdddZW6d+/u8PzZs2crLi5OTZs2/RM/JQBwLk9XNwAAZmQYhiwWi37++WedPHlS9evXdzh/6tQp7dy50/64UaNGatiwof1xhw4dVFpaqu3btyskJKRSryVJW7Zskc1mU/PmzR1qCgsLy/VQ5uTJk5o4caIWLVqkAwcOqKSkRKdOnbKP6ErSAw88oPvuu0/Tp0+Xh4eH5s2bp1dffbVyPwwAcBGCLgA4wa+//qqIiAidPHlSoaGhFc6RraolvspeSzoTWq1WqzZs2CCr1epQV6tWrQqf/8QTTyg1NVVTp05VVFSUatasqcTERBUVFdlr+vTpIx8fH33++efy9vZWcXGxEhMTq6R/AHAWgi4AVLFvvvlGW7Zs0ZgxY3TVVVfp4MGD8vT0VJMmTc75nD179mj//v0KCwuTJKWnp8vDw0MtWrQ472tt27ZNS5cu1fjx4yVJ7dq1k81m0+HDh9WpU6dK9fvdd99p2LBhuuOOOySdCctlUyHKeHp6aujQoZo9e7a8vb01cOBA1axZs1LXBwBXIegCwJ9QWFiogwcPymaz6dChQ1q6dKkmT56s2267TUOGDJGHh4c6dOighIQEvfzyy2revLn279+vRYsW6Y477tD1118vSapRo4aGDh2qqVOnKi8vT6NHj9add97pMG2hpKREBw8eVGlpqY4cOaJVq1bphRdeUNu2bfX3v/9dktS8eXPdc889GjJkiKZNm6Z27dopOztbK1asUJs2bdS7d+9y76FZs2ZKSUlRnz59ZLFY9Mwzz1S4DvD999+vq6++WtKZcAwAVzqCLgD8CUuXLlVoaKg8PT1Vt25dXXvttXr99dc1dOhQeXicud938eLF+uc//6nhw4crOztbISEhio2NVYMGDezXiYqKUr9+/dSrVy8dPXpUt912m2bNmuXwWr/88otCQ0NltVoVEBCga665RuPHj9cjjzwiHx8fe93s2bP1wgsv6PHHH9e+ffsUGBiov/zlL7rtttsqfA/Tp0/Xfffdp44dOyowMFDjxo1TXl5eubpmzZqpY8eOOnr0qGJiYqrixwcATmUxDMNwdRMAUJ1NnDhRCxYs0KZNm1zdynkZhqFmzZrp0Ucf1dixY13dDgBcECO6AIALys7Oti93xtq5ANwFQRcAcEHBwcEKDAzUu+++q7p167q6HQCoFKYuAAAAwJTYGQ0AAACmRNAFAACAKRF0AQAAYEoEXQAAAJgSQRcAAACmRNAFAACAKRF0AQAAYEoEXQAAAJgSQRcAAACm9H/2yAb4HL+fEgAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAHHCAYAAABZbpmkAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABivElEQVR4nO3dd1iV9fsH8PdhLw97iAtQzAFuQRzkxtLKHKmZoJkNR5nZL62vqeXK0gY5GoZZpGVZmX3V/CpqjgQVzRWiCJrKFg5DWef5/WHnxIEz4RzOer+ui+uKZ36e85jn9jPuWyQIggAiIiIiC2Vj7AYQERERGRKDHSIiIrJoDHaIiIjIojHYISIiIovGYIeIiIgsGoMdIiIismgMdoiIiMiiMdghIiIii8Zgh4iIiCwagx0iPTt48CBEIhEOHjxo7KaotGTJEohEImM3g6xIU/yZCwoKwtSpUw16DzJPDHbIKm3evBkikUj+4+TkhMDAQMTExOCjjz5CSUmJsZtoEqZOnarwObm5uSEkJATjxo3DDz/8AKlUauwmaqW8vBxLliwx6QDUVKxfvx4ikQiRkZHGbgqR3tgZuwFExvTWW28hODgYVVVVyM7OxsGDBzF37lysXbsWO3fuRJcuXYzdRKNzdHTE559/DgC4e/cusrKy8Msvv2DcuHEYOHAgfv75Z4jFYiO3Ur3y8nIsXboUADBw4EDjNsbEJSYmIigoCMnJybhy5QratWunl+v+5z//wYIFC/RyLSJdMdghq/bQQw+hV69e8t8XLlyIAwcOYNSoUXj00Udx6dIlODs7G7GFxmdnZ4ennnpKYduyZcuwatUqLFy4EDNmzMC3335rpNapJ5VKUVlZabDrV1dXQyqVwsHBwWD3aErXrl3DsWPHsGPHDjz33HNITEzE4sWLNZ6n7nMoKyuDq6sr7OzsYGfHrxwyDg5jEdUxePBgLFq0CFlZWfj6668V9v31118YN24cvLy84OTkhF69emHnzp0ar/n7779j/PjxaN26NRwdHdGqVSu8/PLLuHv3rvyYhIQEiEQipKam1jt/xYoVsLW1xc2bN+XbTpw4gREjRsDd3R0uLi548MEHcfTo0XrnHjlyBL1794aTkxPatm2LTz75RJePQ6UFCxZg+PDh2L59Oy5fvqywb/fu3RgwYABcXV3RrFkzjBw5EhcuXFA4ZurUqXBzc0NGRgZiYmLg6uqKwMBAvPXWWxAEQeHY9957D3379oW3tzecnZ3Rs2dPfP/99/XaJBKJMHv2bCQmJqJz585wdHTExo0b4evrCwBYunSpfEhuyZIlAO739Cjr7Zk6dSqCgoLkv2dmZkIkEuG9997DBx98gLZt28LR0REXL14EoN2fjaqqKixduhShoaFwcnKCt7c3+vfvj3379qn8nE+ePAmRSIQvv/yy3r69e/dCJBJh165dAICSkhLMnTsXQUFBcHR0hJ+fH4YNG4bTp0+rvH5tiYmJ8PT0xMiRIzFu3DgkJibWO0bd5yCbl3Px4kU8+eST8PT0RP/+/QHUn7MTFhaGQYMG1bu+VCpFixYtMG7cOPk2bd8/kSoMdoiUmDJlCgDgt99+k2+7cOEC+vTpg0uXLmHBggVYs2YNXF1dMXr0aPz4449qr7d9+3aUl5fjhRdeQHx8PGJiYhAfH4/Y2Fj5MePGjYOzs7PSL5jExEQMHDgQLVq0AAAcOHAA0dHRkEgkWLx4MVasWIGioiIMHjwYycnJ8vPOnTuH4cOHIzc3F0uWLMG0adOwePFije3V1pQpUyAIgsKX9VdffYWRI0fCzc0N77zzDhYtWoSLFy+if//+yMzMVDi/pqYGI0aMgL+/P1avXo2ePXti8eLF9XoTPvzwQ3Tv3h1vvfUWVqxYATs7O4wfPx6//vprvTYdOHAAL7/8MiZMmIAPP/wQvXv3xoYNGwAAjz/+OL766it89dVXGDNmTIOeOSEhAfHx8Xj22WexZs0aeHl5af1nY8mSJVi6dCkGDRqEjz/+GG+88QZat26tNhjp1asXQkJC8N1339Xb9+2338LT0xMxMTEAgOeffx4bNmzA2LFjsX79esyfPx/Ozs64dOmSVs+WmJiIMWPGwMHBAZMmTUJ6ejpSUlK0/hxkxo8fj/LycqxYsQIzZsxQev6ECRNw+PBhZGdnK2w/cuQIbt26hYkTJ8q36fL+iZQSiKxQQkKCAEBISUlReYy7u7vQvXt3+e9DhgwRwsPDhXv37sm3SaVSoW/fvkJoaKh8W1JSkgBASEpKkm8rLy+vd/2VK1cKIpFIyMrKkm+bNGmSEBgYKNTU1Mi3nT59WgAgJCQkyO8ZGhoqxMTECFKpVOEewcHBwrBhw+TbRo8eLTg5OSnc4+LFi4Ktra2gzf/+cXFxgqurq8r9qampAgDh5ZdfFgRBEEpKSgQPDw9hxowZCsdlZ2cL7u7uCtvj4uIEAMKcOXPk26RSqTBy5EjBwcFByMvLU3i22iorK4WwsDBh8ODBCtsBCDY2NsKFCxcUtufl5QkAhMWLF9d7hgcffFB48MEHlT57mzZt5L9fu3ZNACCIxWIhNzdX4Vht/2x07dpVGDlyZL17abJw4ULB3t5eKCwslG+rqKgQPDw8hKefflq+zd3dXZg1a5bO1xcEQTh58qQAQNi3b5+8/S1bthReeuklhePUfQ6LFy8WAAiTJk2qd33ZPpm0tDQBgBAfH69w3MyZMwU3NzeFd67t+2/Tpo0QFxen9TOT9WDPDpEKbm5u8lVZhYWFOHDgAJ544gmUlJQgPz8f+fn5KCgoQExMDNLT0xWGmOqqPe+nrKwM+fn56Nu3LwRBUBi2io2Nxa1bt5CUlCTflpiYCGdnZ4wdOxYAcObMGaSnp+PJJ59EQUGBvC1lZWUYMmQIDh8+DKlUipqaGuzduxejR49G69at5dfr2LGjvCdAH58RAPnntG/fPhQVFWHSpEnyduXn58PW1haRkZEKzyUze/Zs+X/LhqEqKyvxv//9T7699ud3584dFBcXY8CAAUp7RB588EF06tRJL8+nzNixY+XDYoBufzY8PDxw4cIFpKen63TPCRMmoKqqCjt27JBv++2331BUVIQJEybIt3l4eODEiRO4deuWzs+VmJgIf39/+dCSSCTChAkTsG3bNtTU1NQ7vu7nUNvzzz+v8X7t27dHt27dFOZ71dTU4Pvvv8cjjzyi8M51ef9EyjDYIVKhtLQUzZo1AwBcuXIFgiBg0aJF8PX1VfiRDbnk5uaqvNb169cxdepUeHl5wc3NDb6+vnjwwQcBAMXFxfLjhg0bhubNm8uHsqRSKbZu3YrHHntM3hbZF2VcXFy9tnz++eeoqKhAcXEx8vLycPfuXYSGhtZrzwMPPKCHT+j+ZwSgXtsGDx5cr22//fZbvc/IxsYGISEhCtvat28PAApDXrt27UKfPn3g5OQELy8v+Pr6YsOGDQqfnUxwcLBenk2VutfX5c/GW2+9haKiIrRv3x7h4eF49dVX8eeff2q8Z9euXdGhQweFwODbb7+Fj48PBg8eLN+2evVqnD9/Hq1atUJERASWLFmCjIwMjdevqanBtm3bMGjQIFy7dg1XrlzBlStXEBkZiZycHOzfv1/j56DtvtomTJiAo0ePyoPBgwcPIjc3VyGAA3R7/0TKcGo8kRJ///03iouL5ctuZflk5s+fr7JXRNUS3ZqaGgwbNgyFhYV47bXX0KFDB7i6uuLmzZuYOnWqQq4aW1tbPPnkk/jss8+wfv16HD16FLdu3VJYDSU7/t1330W3bt2U3tPNzQ0VFRU6P7euzp8/DwD1PqevvvoKAQEB9Y5vyGqc33//HY8++iiio6Oxfv16NG/eHPb29khISMA333xT73hdV8+JRKJ6E6IBKO3NUHZ9Xf5sREdH4+rVq/j555/x22+/4fPPP8f777+PjRs34plnnlHbzgkTJmD58uXIz89Hs2bNsHPnTkyaNEnhM33iiScwYMAA/Pjjj/jtt9/w7rvv4p133sGOHTvw0EMPqbz2gQMHcPv2bWzbtg3btm2rtz8xMRHDhw9X+zlou6/uMy1cuBDbt2/H3Llz8d1338Hd3R0jRoyQH6Pr+ydShsEOkRJfffUVAMi/vGS9D/b29hg6dKhO1zp37hwuX76ML7/8UmFCsqoVOLGxsVizZg1++eUX7N69G76+vgpfom3btgUAiMVitW3x9fWFs7Oz0iGTtLQ0nZ5Bla+++goikQjDhg1TaJufn59Wn5NUKkVGRoa8NweAfGWXbCXUDz/8ACcnJ+zduxeOjo7y4xISErRup7rMvZ6enkp7P7KysrS6tq5/Nry8vDBt2jRMmzYNpaWliI6OxpIlS7QKdpYuXYoffvgB/v7+kEgkCpN4ZZo3b46ZM2di5syZyM3NRY8ePbB8+XK1wU5iYiL8/Pywbt26evt27NiBH3/8ERs3btR7Gobg4GBERETg22+/xezZs7Fjxw6MHj1a4T3r4/0TcRiLqI4DBw7g7bffRnBwMCZPngzg/pf3wIED8cknn+D27dv1zsnLy1N5PVtbWwBQ6D0QBAEffvih0uO7dOmCLl264PPPP8cPP/yAiRMnKvzrvWfPnmjbti3ee+89+TCSsrbY2toiJiYGP/30E65fvy7ff+nSJezdu1fdR6CVVatW4bfffsOECRPkQ2UxMTEQi8VYsWIFqqqqVLatto8//lj+34Ig4OOPP4a9vT2GDBkifw6RSKTQ05KZmYmffvpJ67a6uLgAAIqKiurta9u2Lf766y+Ftp09e1bpMn5ldPmzUVBQoLDPzc0N7dq106oXrmPHjggPD8e3336Lb7/9Fs2bN0d0dLR8f01NTb1hHT8/PwQGBqq9/t27d7Fjxw6MGjUK48aNq/cze/ZslJSUaJVioSEmTJiAP/74A1988QXy8/PrDWHp4/0TsWeHrNru3bvx119/obq6Gjk5OThw4AD27duHNm3aYOfOnXBycpIfu27dOvTv3x/h4eGYMWMGQkJCkJOTg+PHj+Pvv//G2bNnld6jQ4cOaNu2LebPn4+bN29CLBbjhx9+wJ07d1S2KzY2FvPnzweAegn9bGxs8Pnnn+Ohhx5C586dMW3aNLRo0QI3b95EUlISxGIxfvnlFwD388rs2bMHAwYMwMyZM1FdXY34+Hh07txZq7kiwP2EcbJ8Q/fu3UNWVhZ27tyJP//8E4MGDcKnn34qP1YsFmPDhg2YMmUKevTogYkTJ8LX1xfXr1/Hr7/+in79+ikEN05OTtizZw/i4uIQGRmJ3bt349dff8Xrr78un/w6cuRIrF27FiNGjMCTTz6J3NxcrFu3Du3atdP6GZydndGpUyd8++23aN++Pby8vBAWFoawsDA8/fTTWLt2LWJiYjB9+nTk5uZi48aN6Ny5MyQSiVbX1/bPRqdOnTBw4ED07NkTXl5eOHnyJL7//nuFSdrqTJgwAW+++SacnJwwffp02Nj8++/VkpIStGzZEuPGjUPXrl3h5uaG//3vf0hJScGaNWtUXnPnzp0oKSnBo48+qnR/nz594Ovri8TExHqBiD488cQTmD9/PubPnw8vL696vWP6eP9EXHpOVkm29Fz24+DgIAQEBAjDhg0TPvzwQ0EikSg97+rVq0JsbKwQEBAg2NvbCy1atBBGjRolfP/99/JjlC09v3jxojB06FDBzc1N8PHxEWbMmCGcPXtWYUl5bbdv3xZsbW2F9u3bq3yG1NRUYcyYMYK3t7fg6OgotGnTRnjiiSeE/fv3Kxx36NAhoWfPnoKDg4MQEhIibNy4sd4yYFVky8NlPy4uLkJQUJAwduxY4fvvv1dYIl9bUlKSEBMTI7i7uwtOTk5C27ZthalTpwonT55UuLarq6tw9epVYfjw4YKLi4vg7+8vLF68uN51N23aJISGhgqOjo5Chw4dhISEBKXPAEDl0utjx47JPwfUWYb+9ddfCyEhIYKDg4PQrVs3Ye/evSqXnr/77rtKr6/Nn41ly5YJERERgoeHh+Ds7Cx06NBBWL58uVBZWan0mnWlp6fL38WRI0cU9lVUVAivvvqq0LVrV6FZs2aCq6ur0LVrV2H9+vVqr/nII48ITk5OQllZmcpjpk6dKtjb2wv5+flqPwfZO6mdNqDuPmX69esnABCeeeYZpfu1ff9cek6qiARBycw8IjKq/Px8NG/eHG+++SYWLVpk7OYYxNSpU/H9998rHYojItInztkhMkGbN29GTU2NPJMzERE1HOfsEJmQAwcO4OLFi1i+fDlGjx6tUJuJiIgahsEOkQl56623cOzYMfTr1w/x8fHGbg4RkUXgnB0iIiKyaJyzQ0RERBaNwQ4RERFZNM7Zwf2U9bdu3UKzZs3UppUnIiIi0yEIAkpKShAYGKiQZLMuBjsAbt26hVatWhm7GURERNQAN27cQMuWLVXuZ7ADoFmzZgDuf1hisdjIrSEiIiJtSCQStGrVSv49rgqDHfxbEVksFjPYISIiMjOapqBwgjIRERFZNAY7REREZNEY7BAREZFFY7BDREREFo3BDhEREVk0BjtERERk0RjsEBERkUVjsENEREQWjcEOERERWTQGO0RERGTRWC6CiIiIDCYjrxRZheUI8nZFsI+rUdrAYIeIiIj0rqi8Ei9uPYPD6XnybdGhvoif1B3uLvZN2hYOYxEREZHevbj1DI5eyVfYdvRKPuZsTW3ytjDYISIiIr3KyCvF4fQ81AiCwvYaQcDh9Dxcyy9r0vYw2CEiIiK9yiosV7s/s4DBDhEREZmxNl4uavcHeTftRGUGO0RERKRXIb5uiA71ha1IpLDdViRCdKhvk6/KYrBDREREehc/qTv6tfNR2NavnQ/iJ3Vv8rZw6TkRERHpnbuLPbZMj8C1/DJkFpQxzw4RERFZpmAf4wU5MhzGIiIiIovGYIeIiIgsGoMdIiIismics0NERGRhTKH4pilhsENERGQhTKn4pinhMBYREZGFaGzxzYy8UiSl5eJafpnCf5s79uwQERFZAFnxzbpqF99UNaSlrEeoNnPvHWLPDhERkQVoTPFNZT1CtenSO2SKGOwQERFZgIYW35T1CNUIgspza/cOmSOjBjs1NTVYtGgRgoOD4ezsjLZt2+Ltt9+GUOsDFwQBb775Jpo3bw5nZ2cMHToU6enpCtcpLCzE5MmTIRaL4eHhgenTp6O0tLSpH4eIiMhoGlp8U1OPUG3qeodMmVGDnXfeeQcbNmzAxx9/jEuXLuGdd97B6tWrER8fLz9m9erV+Oijj7Bx40acOHECrq6uiImJwb179+THTJ48GRcuXMC+ffuwa9cuHD58GM8++6wxHomIiMhoGlJ8U1OPUG2qeodMnUgQ1PRbGdioUaPg7++PTZs2ybeNHTsWzs7O+PrrryEIAgIDA/HKK69g/vz5AIDi4mL4+/tj8+bNmDhxIi5duoROnTohJSUFvXr1AgDs2bMHDz/8MP7++28EBgZqbIdEIoG7uzuKi4shFosN87BERERNRFXxTVX5d2I3JePolXyVQ1m2IhH6tfPBlukRBm+7LrT9/jZqz07fvn2xf/9+XL58GQBw9uxZHDlyBA899BAA4Nq1a8jOzsbQoUPl57i7uyMyMhLHjx8HABw/fhweHh7yQAcAhg4dChsbG5w4cULpfSsqKiCRSBR+iIiILEWwjysGPeAnD2iKyisRuykZg9ccwrSEFAx67yBiNyWjuLwKgPIeodo09Q6ZOqMuPV+wYAEkEgk6dOgAW1tb1NTUYPny5Zg8eTIAIDs7GwDg7++vcJ6/v798X3Z2Nvz8/BT229nZwcvLS35MXStXrsTSpUv1/ThEREQmSV3+nS3TI+DuYo8t0yMUeoQAKO0dMkdGDXa+++47JCYm4ptvvkHnzp1x5swZzJ07F4GBgYiLizPYfRcuXIh58+bJf5dIJGjVqpXB7kdERKRP6spB1N2nS/6dYB/F65l7kCNj1GDn1VdfxYIFCzBx4kQAQHh4OLKysrBy5UrExcUhICAAAJCTk4PmzZvLz8vJyUG3bt0AAAEBAcjNzVW4bnV1NQoLC+Xn1+Xo6AhHR0cDPBEREZHhqCsHIUBQum9Cr5Zqr5lZoDrZoKUw6pyd8vJy2NgoNsHW1hZSqRQAEBwcjICAAOzfv1++XyKR4MSJE4iKigIAREVFoaioCKdOnZIfc+DAAUilUkRGRjbBUxARETUNdcNRqvYlHMtUe01zXWGlC6P27DzyyCNYvnw5Wrdujc6dOyM1NRVr167F008/DQAQiUSYO3culi1bhtDQUAQHB2PRokUIDAzE6NGjAQAdO3bEiBEjMGPGDGzcuBFVVVWYPXs2Jk6cqNVKLCIiInOgaThKmRpBwMmsO+gd5InTWUUKq61kK6wsvVcHMHKwEx8fj0WLFmHmzJnIzc1FYGAgnnvuObz55pvyY/7v//4PZWVlePbZZ1FUVIT+/ftjz549cHJykh+TmJiI2bNnY8iQIbCxscHYsWPx0UcfGeORiIiIDEKX5H91xfUNgrP93wpBkbmvsNKFUfPsmArm2SEiIlMlm3BsKwJiv0hp0DWS5g9EsI+ryvw75krb729WPSciIjJByiYje7rYo6i8Ctr2UtQdqqq72spasBAoERGRCVI24VhytwqujrZaX8OahqrUYc8OERGRiVE9GRkorahRe+5X0yNQLRUsZqhKHxjsEBERmRhNk5HDAsW4dLtE6eqqAaG+hm6e2eEwFhERkYnRVIl8xePhOlc3t2bs2SEiIjIxIb5uiA71rVeJXNZ706WVR71aVhyyUo09O0RERCZIWSXyur03daubk3Ls2SEiIjJByiqRM6hpGAY7REREJsxac+PoE4exiIiIyKKxZ4eIiEjPZCUeOPRkGhjsEBER6YmyEg/Rob6In9Qd7i72RmyZdeMwFhERkZ4oK/Fw9Eo+5mxNNVKLCGDPDhERUaPUrkquvMSDgMPpebiWX8YhLSNhsENERNQAyoas1MksYLBjLBzGIiIiagBlQ1bqBHkz0DEW9uwQERHpSFVVcmVkJR7Yq2M87NkhIiLSkaaq5LWxQKfxsWeHiIhIR5qqkn81PQLVUoF5dkwEgx0iIiIdaapKPiDU14ito7o4jEVERNQA2lQlJ9PAnh0iIqIGYFVy88Fgh4iIqBFYldz0cRiLiIiILBqDHSIiIrJoHMYiIiJSQVb3ivNxzBuDHSIiojqU1b2KDvVF/KTucHexN2LLqCE4jEVERFSHsrpXR6/kY87WVCO1iBqDPTtERET/yMgrxYlrhUrrXtUIAg6n5+FaPquXmxsGO0REZPWUDVupklnAYMfccBiLiIisnrJhK1WCvBnomBv27BARkVVQtrJK3bBVXbK6V+zVMT8MdoiIyOypWyKubIiqb1tvCAJwPKNA63uw7pX5YrBDRERmS5sl4sqGqI5d1T7IWTUmHJEh3uzRMWOcs0NERGZL0xLxjLxSHE7PQ40g6HxtW5EI0aG+mBjRmoGOmWPPDhERmSVZIFNX7SXiWYXlDb4+h60sB4MdIiIyS5oCmcyCsgYNX3DYyvIw2CEiIrPUxstF7f71SVeQknlH6+vJVltNjGjd2KaRieGcHSIiMkshvm6IDvWFrUiksN1WJIKniz1OZxWpPLdvW29EhXgrbOOwleVizw4REZkkbSqOx0/qjjlbUxXm7nRv7YGTWap7dL6aHoEBob4AgGv5ZcgsKGNVcwvHYIeIiEyKLhXH3V3ssWV6hELQkllQhmkJKSqvXy39d2VWsA+DHGvAYSwiIjIpulYcz8grVeid0TSXh+UerA97doiIyGRos5xc1hOjrgcoOtQXR6/kK82vs/jnC0p7ichysWeHiIhMhjbLyWXU9QDFT+qOfu18lF5DXS8RWSYGO0REZDK0HYJSlRlZ1gNUWF6JJY92UnqN2r1EZB0Y7BARkclQt5w8OtRXPoSlTQ+QLr1EZNkY7BARkUlRNgRVNweONj1AnKhMMpygTERERlU3n46y5eTBPq7IyCvF6Rt3EOTtihBfN/Rt6620ennftv+WelA2UVmWKZlLzq0Hgx0iIjIKTfl0ZDlwisorEbspud5xVdVSpdetPY1HWdJBZkq2PiJBaEDdewsjkUjg7u6O4uJiiMViYzeHiMgqxG5KVtnrsmV6hNrjbESAVM23V9L8gQo9N8yUbJm0/f5mzw4RETU5bfPpqDpOXaAD3J98XDuoYaZk68YJykRE1OS0XSml6ThVOPmYamPPDhERNTltV0ppOq4uGwD9ay1RJwLYs0NEREagbT4dVcep4u5iz8nHVA+DHSIiMgpt8umoOk6VO+VVKCyv1FsbyTJwGIuIiIxCVT4dTcflFN/Dgh3nVF637uRkIgY7RERkVNqulJIdl5FXqvY4Tk6muhjsEBGRVupmOjbE9U9cK4QIQGSIt8p7yObxMDMyaYvBDhERqXX2xh288eN5nL8lkW+rnem4sYrKK/HC16dxPEOx9EPftt7YMLmn0nswMzLpghmUwQzKRETKKCvnIKMs07G26vYQ1S0FUVt0qK/aezAzsnVjBmUiImqUF7eewZEryoOQupmOtaEseOod5ImUzDsqz9F0D2ZGJm1w6TkREdUjK9OgTVkG2fFJabm4ll+m8tgXt57B0Sv5CttOZakOdOreg6ih2LNDRET1aFumwcvFQWlF8rrzeRpa4wrg6ipqPKP37Ny8eRNPPfUUvL294ezsjPDwcJw8eVK+XxAEvPnmm2jevDmcnZ0xdOhQpKenK1yjsLAQkydPhlgshoeHB6ZPn47SUvVLE4mISDVNZRpsAPRq44k3fjqH3+sEMUev5GPO1lSFbQ2tcRXN0g+kB0YNdu7cuYN+/frB3t4eu3fvxsWLF7FmzRp4enrKj1m9ejU++ugjbNy4ESdOnICrqytiYmJw7949+TGTJ0/GhQsXsG/fPuzatQuHDx/Gs88+a4xHIiKyCLLl3aq+JJo52+Fk1h2cvylB3c6Z2vN5ZDQFT91aedTb1retN1dXkV4YdTXWggULcPToUfz+++9K9wuCgMDAQLzyyiuYP38+AKC4uBj+/v7YvHkzJk6ciEuXLqFTp05ISUlBr169AAB79uzBww8/jL///huBgYEa28HVWERE9RWXV2Hge0m4U17VoPMTpvXGoAf85L/HbkpWmRtHliH5j4wCjXl2iGS0/f42as/Ozp070atXL4wfPx5+fn7o3r07PvvsM/n+a9euITs7G0OHDpVvc3d3R2RkJI4fPw4AOH78ODw8POSBDgAMHToUNjY2OHHihNL7VlRUQCKRKPwQEZGigrKKBgc6QP25NppqYQX7uGJSRGtMjGjNQIf0yqgTlDMyMrBhwwbMmzcPr7/+OlJSUvDiiy/CwcEBcXFxyM7OBgD4+/srnOfv7y/fl52dDT8/P4X9dnZ28PLykh9T18qVK7F06VIDPBERkeVo6DwbAAj1c6sXsGhbC4tI34wa7EilUvTq1QsrVqwAAHTv3h3nz5/Hxo0bERcXZ7D7Lly4EPPmzZP/LpFI0KpVK4Pdj4jIHGmaZ6POpAjVf6cyNw41NaMOYzVv3hydOnVS2NaxY0dcv34dABAQEAAAyMnJUTgmJydHvi8gIAC5ubkK+6urq1FYWCg/pi5HR0eIxWKFHyIiUiSbpGwrEul87qAO/poPImoiRg12+vXrh7S0NIVtly9fRps2bQAAwcHBCAgIwP79++X7JRIJTpw4gaioKABAVFQUioqKcOrUKfkxBw4cgFQqRWRkZBM8BRGR5VI2z6ZvW29EhXirPCeKk4vJxBh1GOvll19G3759sWLFCjzxxBNITk7Gp59+ik8//RQAIBKJMHfuXCxbtgyhoaEIDg7GokWLEBgYiNGjRwO43xM0YsQIzJgxAxs3bkRVVRVmz56NiRMnarUSi4iIlJPVsFr6WGcAqDfP5s+/i/D6j+dw/mb9AqFEpsTohUB37dqFhQsXIj09HcHBwZg3bx5mzJgh3y8IAhYvXoxPP/0URUVF6N+/P9avX4/27dvLjyksLMTs2bPxyy+/wMbGBmPHjsVHH30ENzc3rdrApedERP86c/0O/vPzeaVBjLIK5JxwTMai7fe30YMdU8Bgh4jIcFXOiQzFLPLsEBFR01NVtPPFrWdwREmgAyjPikxkLlgIlIjISijruZENTxWUVSjt0akrs6CMQ1VkdtizQ0RkJV7cegZHr+QrbJMV7dQ2gSArkJM5YrBDRGQFMvJKcTg9T6EuFfDv8JSthlQ6NiJWICfzxWCHiMgKaOq5qRGgNoFg/3ZcUk7mi8EOEZEV0FT6IcjbVWkCwbBAMXbO6oct0yOULjsnMgecoExERABYqJMsF3t2iIisgKZhrMyCf5eUB/u4oo2XCzILyrjUnCwCe3aIiKyANsNYgPrl6RzGInPFnh0iIiugqoK5rUiksMpK3fJ0InPFYIeIyEoom4Dcr52PfJWVpuXpHNIic8VhLCIiK6FpArI283o4YZnMEYMdIiIrE+yjfJWVtvN6iMwNh7GIiJqYqkKcxqbtvB4ic8OeHSKiJmIOK53iJ3XHnK2pCm2sPa+HyByJBKHOTDQrJJFI4O7ujuLiYojFYmM3h4gsVOymZBy9kq8wAdhWJEK/dj7YMj3CiC2rj4kFyRxo+/3Nnh0ioiYgW+lUV+2VTqYUVKia10Nkjjhnh4ioCeiSwRgw3Xk9ROaIPTtERE1AHxmMC8oqkFVYzqElIh0x2CEiagKylU6q5uzIgpeZiadx7GqBwrmH0/Pw4LtJKLpbJd9mahObiUwZh7GIiJqINhmM6wY6MrUDHYAlHIh0wZ4dIqImoiyDsSAIOH3jDoK8XXHimvJARxlTndhMZIoY7BARNbFgH1d4utjXm5sT6uem87VYwoFIMw5jEREZgbLq4lfzSnW+Dks4EGnGnh0ioiamKueOVIcUr3UnNhORauzZISJqYhdvSRp9DZZwINIee3aIiAwoI6+0Xm6czccyG3y9VWPCERnizR4dIh0w2CEiMgBVyQFfGd4eJ7PuNPi6/u5ODHSIdMRgh4jIAJRNQD56JR+FZRWNui4nJBPpjsEOEZGOlA1N1d4m/JMDp64aQcD5Bs7XsQHQP9SXvTpEDcBgh4hIS8qGprq18oCLg61C5uMQX/UBSaifG9JzdVtm3ilQzAnJRA3E1VhERFp6cesZHKnTY3PmRlG9Eg8ZeeorlU+KaK3zveOf7ME6WEQNxJ4dIiItqMqNo6tQP1e089N+KIr5dIgajz07RERayCos18t10nPLEPtFCuxsRPX2iQB41um9YT4dosZjzw4RkRbaeLno9XrVStIle7jY4+D8QSgsr5QXCmWPDlHjMdghItJCiK8berXxbFSOHE3ulFehsLwSwT4Mcoj0icNYRERa2hTXu94wk75lFqif3ExEumOwQ0SkJfd/hpl6B3ka7B5MGkikfxzGIiLSgbuLPd4Z2wUnrhUiLbukUXWuauOqKyLDYbBDRKQlZUkFG8rTxR53yqvkv3PVFZHh6BzsZGRkICQkxBBtISIyacrqXenq5WGheLRrCwT7uOJafhlXXRE1AZ3n7LRr1w6DBg3C119/jXv37hmiTURETS4jrxRJabm4lq98grAsqWCNUH/JuC5kgQ4ABPu4YtADfgx0iAxM52Dn9OnT6NKlC+bNm4eAgAA899xzSE5ONkTbiMgKaAoyDK2ovBKxm5IxeM0hTEtIwaD3DiJ2UzKKaw0x3R++SlV7nVeGtVe730YERLOQJ5FR6BzsdOvWDR9++CFu3bqFL774Ardv30b//v0RFhaGtWvXIi+v8WPZRGT5tAkymoKyoamjV/IxZ2uqPBCb8eVJXNRQrdy3maPa/SzkSWQ8IkFoXJ9sRUUF1q9fj4ULF6KyshIODg544okn8M4776B58+b6aqdBSSQSuLu7o7i4GGKx2NjNIbIKsZuScfRKvsKwkGxF0pbpEU3Shoy8Ugxec6hR17ARAT3beGJMj5ZYuOOcyuOS5g9krw6Rnmn7/d3gPDsnT57EzJkz0bx5c6xduxbz58/H1atXsW/fPty6dQuPPfZYQy9NRBZO1fyXGkHA4fQ8HL6c2yRDWxduq++t0YaLgy1SMu+oDHRsRSIOXxEZmc6rsdauXYuEhASkpaXh4YcfxpYtW/Dwww/DxuZ+3BQcHIzNmzcjKChI320lIguhqahm7Bcp8v+ODvVF/KTucDdA5uItesiRU15Zo3Y/l5QTGZ/Owc6GDRvw9NNPY+rUqSqHqfz8/LBp06ZGN46ILJMuRTVl82f0PbSVkVeKlMzG17lSUs8TALBqTDgiQ7zZo0NkAnQOdtLT0zUe4+DggLi4uAY1iIgsX4ivG6JDfevN2VFGNrR1Lb9Mq8AhI68UWYXlGnPXaOpdaix/dycGOkQmosEZlMvLy3H9+nVUVlYqbO/SpUujG0VEli9+UnfM2ZqqdTbizAL1wY6y7MbqhsB06V1qCNa4IjIdOgc7eXl5mDp1Kvbs2aN0f02N+vFrIiLgfo2pLdMj5FmEbUWKc3Xq0hQ8vPD1aRzPKFDYdjg9D89/fQpbn+2jsF3W+9M7yBOns4oalSjQBoC01u+scUVkenQOdubOnYvi4mKcOHECAwcOxI8//oicnBwsW7YMa9asMUQbiciCBfv8O9ykbGhLm+AhI6+0XqAjczyjQD4Epqz3p26NKl1EBHnCyd5O4XqckExkenQOdg4cOICff/4ZvXr1go2NDdq0aYNhw4ZBLBZj5cqVGDlypCHaSUQWQt2cGmVDW9oEDyeuFard/0dGAYJ9XDEz8TSOXVUMiu6UV6FjQDPE9m2DhTvOq7xG7yBPhQnNtYfIWOOKyLTpHOyUlZXBz88PAODp6Ym8vDy0b98e4eHhOH36tN4bSESWQZs5NXWHtrQPHtQPQ4lwP8iqG+jIXMouwRdHMtVeY+agdgjydlXartq9U0RkenROKvjAAw8gLS0NANC1a1d88sknuHnzJjZu3Gg2GZOJyLCU1btSV5ahLmUFMtXV0IoM9lbbnsgQb5y4pjzQkUnPLVW7XxbgsHAnkfnRuWfnpZdewu3btwEAixcvxogRI5CYmAgHBwds3rxZ3+0jIjOiqvfmleGhSlddabOsvKi8EjO2nFQ5hFRUXoklOy+qbJO7sz28XBxwv39HMxuRYu4cTjgmMn86BztPPfWU/L979uyJrKws/PXXX2jdujV8fHz02jgiMi+qem8KyyvUnqdqWXlReSUGvXew3gTio1fy5IkG799T9fL1krtVmLM1FdP7B2n1DJ0CxTh/898yEpxwTGT+GpxnR8bFxQU9evTQR1uIyIzJ6l3VVSMICsGDMt4uDkq3P/PlSaUrpWoE/FNDK09jnh4p7h8bEeyp9jiZ+En3/z7jhGMiy6FVsDNv3jytL7h27doGN4aIzJemjMRhgWKcv6U86Hn714vY/nxfhW0ZeaU4maW+nMPxjHy1+2t777fLavfbAOhfq2Angxwiy6FVsJOaWn8CoTIikXZj4kRkeTRlJJ41qC1eSFT+d0lK5h2M33AMn8f1lq/M0qacw5F07YMdTfr/Mw+IiCyPVsFOUlKSodtBRGZOVb0r2QRfJwf1f92cyrqjUPBTm3IO525K0DGgGS5llzS43WEtxFjxeDi6tPRo8DWIyLTpvPRc5sqVK9i7dy/u3r0LABAakW6diCxD/KTu6NdOcaGCbIKvpuBFNrdGtrRcFjxp6i8WcD8LcsPb3IOBDpGF0znYKSgowJAhQ9C+fXs8/PDD8mXo06dPxyuvvKL3BhKR+ZAlBUyaPxAJ03ojaf5AbJkeAXcXe4T4uqFvW/X5cID7E4Nl4id1R1cNgchf2SVY8Xg4Qv3cGtTm2vcjIsukc7Dz8ssvw97eHtevX4eLy7//UpswYYLK4qDaWLVqFUQiEebOnSvfdu/ePcyaNQve3t5wc3PD2LFjkZOTo3De9evXMXLkSLi4uMDPzw+vvvoqqqurG9wOImo4WeI/AEqT72nTAWwrgjx5oLuLPcTOmnttXkg8rTEpoCqsTk5k+XReev7bb79h7969aNmypcL20NBQZGVlNagRKSkp+OSTT9ClSxeF7S+//DJ+/fVXbN++He7u7pg9ezbGjBmDo0ePArhfYX3kyJEICAjAsWPHcPv2bcTGxsLe3h4rVqxoUFuISLVDabk483cRerT2xIBQX/l2bUpBqCvWCdz/l5e7i71C5fNebTw1rshqKCYLJLIeOvfslJWVKfToyBQWFsLR0VHnBpSWlmLy5Mn47LPP4On5bx6M4uJibNq0CWvXrsXgwYPRs2dPJCQk4NixY/jjjz8A3A+8Ll68iK+//hrdunXDQw89hLfffhvr1q1DZWWlzm0hIuWyCsrQ/a3fEJeQgvf3pWPKpmR0f+s33Ci4v2JKm1IQmlZXOTnY1supY6hAB2CyQCJronOwM2DAAGzZskX+u0gkglQqxerVqzFo0CCdGzBr1iyMHDkSQ4cOVdh+6tQpVFVVKWzv0KEDWrdujePHjwMAjh8/jvDwcPj7+8uPiYmJgUQiwYULF1Tes6KiAhKJROGHiFQbve5ovUDkTnkVHl13RJ5MsKbOGFXtUhCA5tVV5ZU1+m20Cjai+xXMZXOJiMjy6TyMtXr1agwZMgQnT55EZWUl/u///g8XLlxAYWGhfHhJW9u2bcPp06eRkpJSb192djYcHBzg4eGhsN3f3x/Z2dnyY2oHOrL9sn2qrFy5EkuXLtWprUTW6lBartIsxsD9gOe/526rPV9WCiLE1w1RId5qh7K0ZQPggQYuOZcK9/P6qKvHRUSWReeenbCwMFy+fBn9+/fHY489hrKyMowZMwapqalo27at1te5ceMGXnrpJSQmJsLJyUnXZjTKwoULUVxcLP+5ceNGk96fyJyc+btI7f78UvV1r2pPAL5XpZ/em55BnvB0VV5iAtBuKTpXYRFZjwbVxnJ3d8cbb7zRqBufOnUKubm5CnW1ampqcPjwYXz88cfYu3cvKisrUVRUpNC7k5OTg4CAAABAQEAAkpOTFa4rW60lO0YZR0fHBs0vIrJG3TQs/T6lYl5N7QnAReWVeObLk0i9UaSXNo3p0RILd5xTuf/LaREouluF2C+SVR7DVVhE1kPnYCc9PR0///wzMjMzIRKJEBISgtGjRyM4OFin6wwZMgTnzin+ZTVt2jR06NABr732Glq1agV7e3vs378fY8eOBQCkpaXh+vXriIqKAgBERUVh+fLlyM3NhZ+fHwBg3759EIvF6NSpk66PRmT2MvJKkVVYrtcClg8+4AdPF3ulQ1l2NiJcUFHvKjLESz4B+JkvT6oMihqiQENvUkF5JQY94Kc2ozOHsIish07BzsqVK/Hmm29CKpXCz88PgiAgLy8Pr732GlasWIH58+drfa1mzZohLCxMYZurqyu8vb3l26dPn4558+bBy8sLYrEYc+bMQVRUFPr06QMAGD58ODp16oQpU6Zg9erVyM7Oxn/+8x/MmjWLPTdkVbRZ+l2brkHRzln98ei6IwoBj4u9LcrVDEvll9yDAAHjNx7T+6oqZwdbtftlvTbxk7pjztZUhc+Fq7CIrI9I0LLOQ1JSEoYOHYpFixbhpZdeki8TLywsxAcffIAVK1bgwIEDiI6ObnBjBg4ciG7duuGDDz4AcD+p4CuvvIKtW7eioqICMTExWL9+vcIQVVZWFl544QUcPHgQrq6uiIuLw6pVq2Bnp30cJ5FI4O7ujuLiYojF4ga3n8hYYjclq+zBkNWaAnQPimorKq/EE58cx+Uc7ZP32doANVIdHkRLvYM84Wxvp9UzA8C1/DJkFpTptceLiIxP2+9vrYOdCRMmwMPDA5988onS/c8++yxKSkqwdevWhrXYiBjskDnLyCvF4DWHVO5Pmj9Q/gWvbVBU26G0XBy/VoCvj2ehtKJplodrY+fsfnhv7+UGBW5EZBm0/f7WuvsjOTkZX331lcr9U6ZMQWxsrG6tJKJG05SsT7b0W5YPp67a+XBq93pkFZQpza9jKgrKKrFlegR7bYhII62DnZycHAQFBancHxwcrDa3DREZhqZkfdnF93Atv0zroEjGlAMd4N95OcE+DHKISD2tg5179+7BwUF1Xgt7e3uWaCDSA10nD4f4uilddSQjW6Ldq41nvX212dmI5P+tLpGgsdmIgP7tfBngEJHWdFqN9fnnn8PNzU3pvpIS3TOZEtG/tC2mqSwQUrbqqK7U60XwdLGH5G610qBoyqZk+f2S0lRfx9h6tvHkaioi0onWE5SDgoIgEok0Hnft2rVGN6qpcYIymQJ1k4c/mtRNq1VU1/LL8EdGPhbuOK/yPr2DPJGSqXwpuAhAMyc7SO5VN/6B9MwG9wOd7S/0NXZTiMhE6H2CcmZmpj7aRURKaJo8PGPLSZzOKlLYdyQ9D5M//wPxT/aQ9/IE+7hqLIMwc1A72IpESrMLC4BJBjoA0P+f4I6ISFc61caqqqrCkCFDkJ6ebqj2EFklTZOHUzLv1Bt6kgI4f0uCQe8dROymZBT/M8dG04RlOxuR0mEsU7f0sc5cUk5EDaJTsGNvb48///zTUG0hsngZeaVISsvFtXzF3hdNAYomR6/kY87WVAD/Tli2VTHsPGVTMtYduNKo+xkDC3cSUUPpXPX8qaeewqZNmwzRFiKLVVReidhNyRi85hCmJaTU641RFaDYikQaV1EBirlygPsTlvu181F5vGyysjlh4U4iaiidC4FWV1fjiy++wP/+9z/07NkTrq6KfwGtXbtWb40jshQvbj2Do1fyFbbJemNkmYvV1XGaszVV5dLy2mS5ctxd7LHk0U7Y9edtrN13ud5xNYJgkkvL3RxscbdKysKdRKRXOgc758+fR48ePQAAly8r/iWqzWotImujbeZidxd7lRmBtVlaDtyfj6NsCbs56NvWG++M6YI3fjrPwp1EpFc6BTs1NTVYunQpwsPD5YVAiUg9XTMXK8sILAuEtiVfx4J/kgQqUy0VlPYimaox3VsgItgLkSHe8mdmCQgi0jedgh1bW1sMHz4cly5dYrBDpELdxH+aJh/rMhclIthL7X5bEcyqR6d3sBcmRrSut50lIIhIn3QexgoLC0NGRgaCg4MN0R4is6UuA7Kycg4NmYuiqjSE7Fo1ZraivKWns7GbQERWQOfVWMuWLcP8+fOxa9cu3L59GxKJROGHyFo98+VJHKnTqyKbhKxsdVRD56Kou1Zjl7A3tWqpmUVnRGSWtC4XIWNj8298VHtCsiAIEIlEqKmp0V/rmgjLRVBjFJVXYsaWkypLMADAV9MjMCDUt0FzUVTVw1J1rVEf/Y7zt8zjHx5J8wdyuIqIGkzv5SJkkpKSVO47d071xEkiS/Xi1jM4laU60AEUi2xq++WuqTBo3Xkth9JycebvIozv2RLnb11s2MM0ERvcL//AQIeImoLOPTt1lZSUYOvWrfj8889x6tQp9uyQVcnIK8XgNYe0OlY2r0aWV0cTdYVBa18jq6AMo9cdVcibY2cjglQQYCqjRG28nJFVeFf+u7IipkREujJYz47M4cOHsWnTJvzwww8IDAzEmDFjsG7duoZejsgsaVpWXlvdvDrqaJubB0C9QAe4PxfGxoTSXm1+OhIAuJyciIxCp2AnOzsbmzdvxqZNmyCRSPDEE0+goqICP/30Ezp16mSoNhKZrIZMCK6bV0cZTUHUnG9OI/GZPjhz447KTMim0qvTMaCZQlV2IqKmpvVqrEceeQQPPPAA/vzzT3zwwQe4desW4uPjDdk2IrMQ1kKsUy+KNnl1NAVRF29JMGdrKs78XaT9jY3kpSGhxm4CEVk5rXt2du/ejRdffBEvvPACQkP5lxdZt4aWZIhWMym39qorWT6dI1fylPbQSHE/eeDILgENaH3TunPX9GpwEZF10TrYOXLkCDZt2oSePXuiY8eOmDJlCiZOnGjIthE1iKql2vrU0JIM82Pa19umatXV8tFheOGbUzh/U/Uy8hxJBVzsbVBeJdW5LU3FhKYOEZGV0noYq0+fPvjss89w+/ZtPPfcc9i2bRsCAwMhlUqxb98+lJSUGLKdRBoVlVcidlMyBq85hGkJKRj03kHEbkpGsZ6re8smD2uqQK5MQVllvW2qKqK/8dN5TIlso/Z6a/ddNulABwAiQ7yN3QQisnI6Z1B2dXXF008/jSNHjuDcuXN45ZVXsGrVKvj5+eHRRx81RBuJtKIqaJizNVWv99FlBVZddefrqAqcZKuuXlNT9NMc9G3rzUnJRGR0Ogc7tT3wwANYvXo1/v77b2zdulVfbSLSmaag4Vp+md7u1ZAVWDZQPl+nMYGTqYsO9cWGyT2N3Qwioobn2anN1tYWo0ePxujRo/VxOSKdaQoaNC331mWej6pinOr0aOOJCb1a1sux06h/bRhJqJ8bruaWovbgmSzZ4dLHOjOXDhGZHL0EO0TGpqm3xVYkQlJabr0vYU0lGVRZNjoMj607ojLHTV0ns+7g5D8lJXq18cQTPVviqxNZOKdm8rGpkQU08ZO6Y87WVIXPTLZdVsaCiMiUNLpchCVguQjLoKy8gg0Adxd7haCkdjCjbUmGuj0/sZuSVS4Lt1R1g8CGFDUlItInbb+/GeyAwY6lKC6vqtfj4OliD8ndKtTU+lMuC2aWPNpJbV2rpPkD4eliX6/np3srD6TeKDLEI5ic8BZizBv+AAMaIjJJBq+NRWRq3F3ssWV6hLzHwVYkQuwXyfWOk01aTkrLVXu9zIIyLP45s94KL2sJdADAzdEePVp5smAnEZk1c5wfSaRWsI8rBj3gp3Hy8LbkG2r355Xca3A+HUuRfK1Q70v3iYiaGoMdsliaJi2n55aq3f9/35t3jht9MMTSfSKipsZghyyasiKdtiIRwlpwbpYuMgsY7BCR+WKwQ0aRkVeKpLRcg/QY1C4bcf6mpN6KqX7tfLB8dJje72vJtKnUTkRkqjhBmZpUQ/PaqKIsGaCyshE2ADoFihH/ZA/5cbomBrR07s52KL1Xo3QZPldiEZE5Y88ONSl91a9SVfTz7I0ipZOKpQDO31JM4Bc/qTv6tfNp0HNYmvBAMXbNHlDv85AlCyQiMmfs2aEmI6tfVVftSbDa9iCoCpoKyyrUnle7bIS7iz0+mtQNPZftQ41pFw43uKGd/VEtCApL95lbh4gsBXt2qNG0nX+jqX7VzrM3tZrDo67oZ93em7rqzj15atMJqw90AOD9feny3jEvFwcMesCPgQ4RWQz27FCD6Tr/RtNS8Pf3peP9feno1cYT0/oGoVMLd6VfuJqCprAWYly6VaJx7klGXinOm1FtqqYgG1KsXSqDiMjcsWeHGkzX+TeyauG2IpHS/TIns+5g1tZUDHrvIMZvPIbiOsU2NQVNKx4P12ruiaagyRoxrw4RWSL27FCDNHT+Tfyk7pj+ZYq8ArgmKZl3MPC9JBycP0jeWyQLmlQV8OzS0kPj3JOi8kqsO3BFl0e2KrXnNhERmTv27FCDaOoVUZaErqi8EnO2pmod6MjcKa/CM1+mKGxbNjoMYmfFWF3sbKeQP0dWNkLZl/aLW88g9XqRTu0wZ3X/R9f0Pz7z6hCRJWGwQw2iaShJ2ZelsmEvbaVk3cHvtXqSFuz4E3fqDG/dKa/Cazv+1HgtVROcLVnPNp4Kv/cP9UXftt71hhRtRSJEh/qyV4eILAqHsahBNA0l1f2yVDXspYspm5IRHeqLV4a3x7GrBUqPOXa1QOkQ2qG0XJz5uwg9Wnuium5KZQsXHeqrdFivuLwKc7amKrwX5tUhIkvEYIcaLH5Sd62/LPU1GfjolXzcLr6r9pgTGQXyYCeroAyj1x1V6AUSO1nXH/v5Me0B3B/Wqx0EurvYM68OEVkF6/pbn/RKly9LTcNe2qoRBI3VymX9Nhl5pXj04yMorahR2C+5Vw07GxEEAVYxlFVQVql2f90giIjI0jDYoUbT5ssyxNcNvYM8cSrrTr3CnPrWqbkYsZuS1Q6bVUsFBLo74lax+ozL5qC52BG3Jaqfg5ONicjacYIyGZysjlVKZv1Ap3srD3Rs3kxhW3SoLzZM7tHg+y3bdVGridCWEOgAwCexvRAd6gubOumLONmYiOg+BjtkcKqqkIud7JB6owiXbpcAAMICxdg5qx+2TI/AQ+HNlSYgtBWJ4OZoq/Z+KVl3rGJ4CrgfGHZp6YH4Sd3Rv52vwj5ONiYiuk8kCFbyraCGRCKBu7s7iouLIRaLjd0cs5WRV4qswnKFuTsZeaUYvOaQVufLVnLJShUoWy0U1kLMEg//UFaag5ONiciaaPv9zTk71GjqamTpsgqrbvbl2hOgL9wsxpfHMpGiISGhpvkr5i68hRjzhj+gMpjhZGMiovo4jEWNpmyY6kh6HuZsTW3QKqy62ZeDfVzx3cm/cVqLjMeWHOgAwHMPtmVFciIiHbFnhxpFVbJAKYDD6XkorahWmnxQnSBvV4UhMeGfHh8COge6G7sJRERmh8EONVhReSVe3Ka8wrnM6z+eQ+L0PvXm3ni62KO4vArSWsfaikSICPbC4p8v1JunQ0DvNp7s0SEiagAGO9RgL249g4u31E8WPn9Tgj9vFtVLPujl4lAvAOrRxgNFdyuRll2icI0LnJAMTxd7fB7X29jNICIyS1yNBa7GaghdVlkBQFSINzY+1VNh5RAAnSYfW6veQZ74PLZ3vc+OiMjacTUWGZSuta6OZxRgztZUbJkeUW+J+uKfL+AUAx25UD83rBnfFQXllVxCTkSkBwx2qEEassrqcHoehr9/CJdz/q1t1bF5M3lSQbrv09heDHCIiPSIS8+pQUJ83RAV4q3zebUDHQAMdOpgeQciIv1jzw5pRVl25DqVHKiRPF3sWd6BiMgAGOyQWmdv3MEbP57H+VqrrqJDffHK8PY4drXAiC2zPHfKq1BYXsmJyEREesZgxwIp64XRZT+gvASEzJH0PGQVlCo5ixors6CMw1hERHpm1Dk7K1euRO/evdGsWTP4+flh9OjRSEtLUzjm3r17mDVrFry9veHm5oaxY8ciJydH4Zjr169j5MiRcHFxgZ+fH1599VVUV1c35aOYhKLySsRuSsbgNYcwLSEFg947iNhNyTh74w6S0nJx9kaR0v3F5VX1rvXi1jM4ckV51mIpgKzCuwZ+GusU5M1Ah4hI34zas3Po0CHMmjULvXv3RnV1NV5//XUMHz4cFy9ehKvr/b/0X375Zfz666/Yvn073N3dMXv2bIwZMwZHjx4FANTU1GDkyJEICAjAsWPHcPv2bcTGxsLe3h4rVqww5uM1OWU1qg6n56kttXD0Sr58SbiMqhIQZFhhLcTs1SEiMgCTSiqYl5cHPz8/HDp0CNHR0SguLoavry+++eYbjBs3DgDw119/oWPHjjh+/Dj69OmD3bt3Y9SoUbh16xb8/f0BABs3bsRrr72GvLw8ODg4aLyvJSQV1DXJX11J8wfKv2iT0nIxLSGlwdcK8XFFRn6Z5gNJwc7Z/dClpYexm0FEZDa0/f42qaXnxcXFAAAvLy8AwKlTp1BVVYWhQ4fKj+nQoQNat26N48ePAwCOHz+O8PBweaADADExMZBIJLhw4YLS+1RUVEAikSj8mDtdk/zVNeeb0/LhrIbk0KktJswfHQOaNeoalkrsZAfbOsvYbHB/0jcDHSIiwzCZYEcqlWLu3Lno168fwsLCAADZ2dlwcHCAh4eHwrH+/v7Izs6WH1M70JHtl+1TZuXKlXB3d5f/tGrVSs9P0/QaG6BcvCXBnK2pKCqvxJKdFxt1rQ0HM3Apm/lzlFk0shP6tfNR2NY/1JdLzomIDMhkVmPNmjUL58+fx5EjRwx+r4ULF2LevHny3yUSiUUEPI0hxf35PTO+PInT14uM3RyL1SvYC+N7t1Ioisp5OkREhmUSwc7s2bOxa9cuHD58GC1btpRvDwgIQGVlJYqKihR6d3JychAQECA/Jjk5WeF6stVasmPqcnR0hKOjo56fQr+0WR5eW2OHsWRYjNNw+rb1lr/LYB8GOURETcWow1iCIGD27Nn48ccfceDAAQQHByvs79mzJ+zt7bF//375trS0NFy/fh1RUVEAgKioKJw7dw65ubnyY/bt2wexWIxOnTo1zYPokarl48qWh9fW2GEsarzwFmIkTOuNTs2Vz1cynaUARETWxajBzqxZs/D111/jm2++QbNmzZCdnY3s7GzcvXs/h4u7uzumT5+OefPmISkpCadOncK0adMQFRWFPn36AACGDx+OTp06YcqUKTh79iz27t2L//znP5g1a5bJ997UlpFXiqS0XExNSKm37Ptweh6e//qU2vNDfN0QHepbb/IrNZ3lj4ejjZcLLqqo93U8owDXuEqNiKjJGXUYa8OGDQCAgQMHKmxPSEjA1KlTAQDvv/8+bGxsMHbsWFRUVCAmJgbr16+XH2tra4tdu3bhhRdeQFRUFFxdXREXF4e33nqrqR6jUdRlKq5N9kWpbugjflJ3zNmayhw5RlJQVomCskq1xzBDMhFR0zNqsKNNih8nJyesW7cO69atU3lMmzZt8N///lefTWsyyhIBqvJHRoHaL0p3F3tsmR6B1Xv+wvqDV/XVRNJSkLerxj/TzJBMRNT0TGKCsrXSNVOxqgEq2WRmW5EINYKAX/+8pZ8GklZsRSL0a+cjD0SjQ31x9Eo+amoFPnWPISKipsNgx4h0XUEVGeKt8Lu2Q2BkWP3a+SjkyVE2nFj3GCIiajoMdoxIlxVUtZcty+gyBEaGsXJMOCZFtFbYJhtOZC4dIiLTwGCnidXOnyNbQVV3yKOuaCUZdlms0zT0qdPbVhtz6RARmQYGO01E2ZBTdKgvlo8Owxs/nVfYHuTtggUPdYCjva3KXgF9JRGkhuEcHCIi82EytbEsnbIhpyPpeXjjp/N4e3RnuDn+G3dmFpTj+a9PY0PSFUjuViEpLbdefhYmETQuzsEhIjIfIkGb9d8WTtsS8Q2VkVeKwWsOqdzfzNEWJRU1Gq8jG85yd7EHAMRuSuZQlhGsGhOOiXXm6RARUdPT9vubPTtNQNOQkzaBDnC/J2jO1lT5768Mb9+odlHD1F0VR0REpo3BjoEVlVdifdIVvVxLVpn89396cwrL1WfrJf2yFYkQHerLeTpERGaGwY6Bvbj1DE5l6reS+JRNyYjdlIy7ldr1CJF+cJ4OEZF54mosAzLk8vDD6Xmcr2Ng0aG+mD+8PQrKK5krh4jIjDHYMZD7S81TNR9IJomTkImILAeHsQzkxa1ncPGWxNjNoAbiJGQiIsvBnh0DYHZj88VkgUREloc9OwbA7MbmISrEG33bKvbgcBIyEZHlYc+OATC7sWlzc7TFNzP6oEtLDwBgwU4iIgvHYMcAtC3wSU2vdxtPfB7XW56FGmDBTiIiS8dgx0DiJ3XHC4mncOxqgbGbYvXa+7vixSHt0TnQnUENEZEVYrBjIO4u9rCz4ZQoY1s5JhyTuISciMiq8dvYQLgiyzT04RJyIiKrx54dA+GKLOPiEnIiIpJhz46B8INtWr2DPBV+5xJyIiKSYc+OAWQVlGFm4iljN8OqzBzUDkHerlxCTkRE9TDYMYBHPz6CskqpsZthVWQBDoMcIiKqi8GOnh1Ky0Xx3WpjN8Nq2ADoH+rLIIeIiFTi1BI9S0rLNXYTrEr/UF/OzSEiIrXYs6NnXq4Oxm6CVQhrIcaKx8PlJR+IiIhUYbCjZ6O6BGLtvnRjN8NihQX+E+S08jB2U4iIyEww2CGzEv9kD87PISIinXDOjp4xmaBhZRaUGbsJRERkZhjs6FkbLxdjN8GiBXmzV4eIiHTDYSwyCyz/QEREDcWeHT07ca3Q2E2wSCz/QEREDcWeHb0TjN0Ai/LysFA82rUFe3SIiKjB2LOjZ5HB3sZugkVhoENERI3FYEfPQnzd0MLdydjNMHu2IhGiWQaCiIj0gMGOAdwqvmfsJpg9ztEhIiJ9YbCjZ98mX+esHT1Y+lhnuLvYG7sZRERkARjs6Nm+SznGboJFYPJAIiLSFwY7eiYydgPMQFigGBsm91B7DJMHEhGRvnDpuZ65OXHoRZ2vpkdgQKgvACA61BdHr+SjRvh34I/JA4mISN/Ys6NnmXmlxm6CSZKtrpIFOgAQP6k7+rXzUTiOE5OJiEjf2LOjZzfusBCoMsqCGHcXe2yZHoFr+WXILChDkLcre3SIiEjvGOzomZO9LYAqYzfDZIQFihH/ZA+1QUywD4McIiIyHA5j6VkEMyjLhbcQI/GZPgxkiIjIqNizo2eXbhUbuwkmoXsrd/w4q7+xm0FERMRgR98yC5kfJjrUl5OMiYjIZDDY0TNbkQjWWPncRgR0ChQjfpL6+TlERERNjcGOnrk62qO0ssLYzWhy/dvd781hiQciIjI1DHb0zMHWenIofzU9AtVSgUvGiYjIpDHY0bNsK6l4HhYoVkgQSEREZKq49FzPqqxkus6Kx8ON3QQiIiKtsGeHdGIjuj8/p0srD2M3hYiISCvs2SGdyCYiExERmQv27JDWalcsJyIiMhfs2SGtVUutZEISERFZFAY7pLUgby4vJyIi88NhLNJINimZuXSIiMgcsWeHNOKkZCIiMmfs2SGVwgLFWPF4OJeZExGRWWOwQwpYAoKIiCwNgx0CcL9ae792PlxaTkREFodzdggA0K+dD+flEBGRRbKYnp1169bh3XffRXZ2Nrp27Yr4+HhEREQYu1kmqXcbT8wc3A52NiIOWRERkcWziGDn22+/xbx587Bx40ZERkbigw8+QExMDNLS0uDn52fs5pkULxd7hPq7IU9yDzUCkHKtANfyy+Dr5oShnf3g28wJuZJ7uHS7BD5uDujS0gM1wv2ASBAEnLhWiPySCvg0c0QLDyfUCICtCKgRUC9oysgrRVZhucL2uttq/y4IQr3ja1/rxLUCACL0CfFWeb261N1P2T20OVZZm21FIoXP6f425Z+Lvmh6dmocfr7Wge/ZOogEQTD7tLiRkZHo3bs3Pv74YwCAVCpFq1atMGfOHCxYsEDj+RKJBO7u7iguLoZYLG5UW4IW/Nqo881ddKgvlo3ujP/8dAGH0/Pk26NCvCESAceuFsi3ebrY4055lcrrxE/qDgECZiaeVjgPACKCPGFrY4PjGQX1znF3sUdReSVe3HpGoQ1171f7Htocu2x0GP7z03mF43T5XGRtayxlz6bP61s7fr7Wge/ZMmj7/W32wU5lZSVcXFzw/fffY/To0fLtcXFxKCoqws8//6zxGgx29MdWJILY2Q6Su9WoacQfLdmEaQBaBxeyc7ZMj0DspmQcvZKvtg2176HNsY15rtptayxlz6bP61s7fr7Wge/ZMmj7/W32w1j5+fmoqamBv7+/wnZ/f3/89ddfSs+pqKhARUWF/HeJRGLQNlqTGkFQ2Vuj63V07UGRnXP4cp5W5+pyj8Y+l+xe1/LLGtVVnpFXqrTN+rq+tePnax34nq2PVa7GWrlyJdzd3eU/rVq1MnaTSI9Sb9wxdhNUyiwoa9T5WYXlBr2+tePnax34nq2P2Qc7Pj4+sLW1RU5OjsL2nJwcBAQEKD1n4cKFKC4ulv/cuHGjKZpKTaR7K09jN0GlxhZTbePlYtDrWzt+vtaB79n6mH2w4+DggJ49e2L//v3ybVKpFPv370dUVJTScxwdHSEWixV+SD9sRSJ4utjDViRq9HWiQ30RrUOSQ/k57e+fp6kNte+hzbGNeS7ZvRrbNR7i66a0vfq6vrXj52sd+J6tj9kHOwAwb948fPbZZ/jyyy9x6dIlvPDCCygrK8O0adOM3TSr06+dD3bO6i+f+CsTFeKNvm29FbZ5qlnxIEtyGD+pe73zgPursaJCvJWeAwDxk7rXa0Pd+9W+hzbHKnsubekzaaOy9jIppP7w87UOfM/WxexXY8l8/PHH8qSC3bp1w0cffYTIyEitzjX31VjuznYY1tEfvYK80MLTGQf/ypXnjTiddQe3iu+ina8bItt6o6isElIB6BQoRrVUwKnMQlzNK4OvmyOGdfaHTzNH5JdU4MItCXzcHNC1lYc88SAA/JFRgILSCni7OaKlpzOqpYLK5ITX8suQWVCmsL3uttq/A6h3fO1rncgogAAo5NlRdo+656m6n7J7aHOssjbX/gyUbTPEvxQ1PTs1Dj9f68D3bN6sZum5PphzsMO8EEREZK2sZum5tbIB8NPsfujS0sPYTSEiIjJpDHbMkKuDLfa8FI1W3upXFBAREZGFTFC2NmWVNXjjp/Mo1kPyPiIiIkvHYMdMHb2SjzlbU43dDCIiIpPHYMdM1U5rTkRERKox2DFzTGtORESkHoMdM8e05kREROpxNZaZshWJ0K+dD5NgERERacCeHTPFtOZERETaYc+OntmKgBoD5KT+anoEWnq6MK05ERGRjhjs6JmHiz0KyvSb/yY61BcD/qn+zSCHiIhINxzG0rMH/Jvp9XpRId4criIiImoE9uzoWZ+23jiWUdigc8NbiLF8dDgu3pbUq+5NREREDcNgR89GdQnE2n3pOp1jIwJ6tvHE9uf7AgC6tPIwQMuIiIisE4ex9CzE1w0u9rp9rP3b+eLz2N4GahEREZF1Y8+OATzdPxgfJ11Vud+/mQM+i+2NgvJKrqwiIiIyMAY7BjA/poPaYOfEG8OasDVERETWjcNYBvLtjD46bSciIiLDYM+OgUS29UbmqpFYn3QFv6fnYUCoL2YOamfsZhEREVkdkSAIBsj3a14kEgnc3d1RXFwMsVhs7OYQERGRFrT9/uYwFhEREVk0BjtERERk0RjsEBERkUVjsENEREQWjcEOERERWTQGO0RERGTRGOwQERGRRWOwQ0RERBaNwQ4RERFZNAY7REREZNFYGwuArGKGRCIxckuIiIhIW7LvbU2VrxjsACgpKQEAtGrVysgtISIiIl2VlJTA3d1d5X4WAgUglUpx69YtNGvWDCKRSG/XlUgkaNWqFW7cuMECoyaI78e08f2YPr4j02YN70cQBJSUlCAwMBA2Nqpn5rBnB4CNjQ1atmxpsOuLxWKL/YNmCfh+TBvfj+njOzJtlv5+1PXoyHCCMhEREVk0BjtERERk0RjsGJCjoyMWL14MR0dHYzeFlOD7MW18P6aP78i08f38ixOUiYiIyKKxZ4eIiIgsGoMdIiIismgMdoiIiMiiMdghIiIii8Zgx0DWrVuHoKAgODk5ITIyEsnJycZuklVYuXIlevfujWbNmsHPzw+jR49GWlqawjH37t3DrFmz4O3tDTc3N4wdOxY5OTkKx1y/fh0jR46Ei4sL/Pz88Oqrr6K6uropH8UqrFq1CiKRCHPnzpVv4/sxvps3b+Kpp56Ct7c3nJ2dER4ejpMnT8r3C4KAN998E82bN4ezszOGDh2K9PR0hWsUFhZi8uTJEIvF8PDwwPTp01FaWtrUj2JxampqsGjRIgQHB8PZ2Rlt27bF22+/rVAbiu9HCYH0btu2bYKDg4PwxRdfCBcuXBBmzJgheHh4CDk5OcZumsWLiYkREhIShPPnzwtnzpwRHn74YaF169ZCaWmp/Jjnn39eaNWqlbB//37h5MmTQp8+fYS+ffvK91dXVwthYWHC0KFDhdTUVOG///2v4OPjIyxcuNAYj2SxkpOThaCgIKFLly7CSy+9JN/O92NchYWFQps2bYSpU6cKJ06cEDIyMoS9e/cKV65ckR+zatUqwd3dXfjpp5+Es2fPCo8++qgQHBws3L17V37MiBEjhK5duwp//PGH8Pvvvwvt2rUTJk2aZIxHsijLly8XvL29hV27dgnXrl0Ttm/fLri5uQkffvih/Bi+n/oY7BhARESEMGvWLPnvNTU1QmBgoLBy5Uojtso65ebmCgCEQ4cOCYIgCEVFRYK9vb2wfft2+TGXLl0SAAjHjx8XBEEQ/vvf/wo2NjZCdna2/JgNGzYIYrFYqKioaNoHsFAlJSVCaGiosG/fPuHBBx+UBzt8P8b32muvCf3791e5XyqVCgEBAcK7774r31ZUVCQ4OjoKW7duFQRBEC5evCgAEFJSUuTH7N69WxCJRMLNmzcN13grMHLkSOHpp59W2DZmzBhh8uTJgiDw/ajCYSw9q6ysxKlTpzB06FD5NhsbGwwdOhTHjx83YsusU3FxMQDAy8sLAHDq1ClUVVUpvJ8OHTqgdevW8vdz/PhxhIeHw9/fX35MTEwMJBIJLly40IStt1yzZs3CyJEjFd4DwPdjCnbu3IlevXph/Pjx8PPzQ/fu3fHZZ5/J91+7dg3Z2dkK78jd3R2RkZEK78jDwwO9evWSHzN06FDY2NjgxIkTTfcwFqhv377Yv38/Ll++DAA4e/Ysjhw5goceeggA348qLASqZ/n5+aipqVH4ixgA/P398ddffxmpVdZJKpVi7ty56NevH8LCwgAA2dnZcHBwgIeHh8Kx/v7+yM7Olh+j7P3J9lHjbNu2DadPn0ZKSkq9fXw/xpeRkYENGzZg3rx5eP3115GSkoIXX3wRDg4OiIuLk3/Gyt5B7Xfk5+ensN/Ozg5eXl58R420YMECSCQSdOjQAba2tqipqcHy5csxefJkAOD7UYHBDlmsWbNm4fz58zhy5Iixm0L/uHHjBl566SXs27cPTk5Oxm4OKSGVStGrVy+sWLECANC9e3ecP38eGzduRFxcnJFbR9999x0SExPxzTffoHPnzjhz5gzmzp2LwMBAvh81OIylZz4+PrC1ta23eiQnJwcBAQFGapX1mT17Nnbt2oWkpCS0bNlSvj0gIACVlZUoKipSOL72+wkICFD6/mT7qOFOnTqF3Nxc9OjRA3Z2drCzs8OhQ4fw0Ucfwc7ODv7+/nw/Rta8eXN06tRJYVvHjh1x/fp1AP9+xur+jgsICEBubq7C/urqahQWFvIdNdKrr76KBQsWYOLEiQgPD8eUKVPw8ssvY+XKlQD4flRhsKNnDg4O6NmzJ/bv3y/fJpVKsX//fkRFRRmxZdZBEATMnj0bP/74Iw4cOIDg4GCF/T179oS9vb3C+0lLS8P169fl7ycqKgrnzp1T+Mtg3759EIvF9b4ESDdDhgzBuXPncObMGflPr169MHnyZPl/8/0YV79+/eqla7h8+TLatGkDAAgODkZAQIDCO5JIJDhx4oTCOyoqKsKpU6fkxxw4cABSqRSRkZFN8BSWq7y8HDY2il/dtra2kEqlAPh+VDL2DGlLtG3bNsHR0VHYvHmzcPHiReHZZ58VPDw8FFaPkGG88MILgru7u3Dw4EHh9u3b8p/y8nL5Mc8//7zQunVr4cCBA8LJkyeFqKgoISoqSr5ftrR5+PDhwpkzZ4Q9e/YIvr6+XNpsILVXYwkC34+xJScnC3Z2dsLy5cuF9PR0ITExUXBxcRG+/vpr+TGrVq0SPDw8hJ9//ln4888/hccee0zp0ubu3bsLJ06cEI4cOSKEhoZa9NLmphIXFye0aNFCvvR8x44dgo+Pj/B///d/8mP4fupjsGMg8fHxQuvWrQUHBwchIiJC+OOPP4zdJKsAQOlPQkKC/Ji7d+8KM2fOFDw9PQUXFxfh8ccfF27fvq1wnczMTOGhhx4SnJ2dBR8fH+GVV14RqqqqmvhprEPdYIfvx/h++eUXISwsTHB0dBQ6dOggfPrppwr7pVKpsGjRIsHf319wdHQUhgwZIqSlpSkcU1BQIEyaNElwc3MTxGKxMG3aNKGkpKQpH8MiSSQS4aWXXhJat24tODk5CSEhIcIbb7yhkHaB76c+kSDUSrtIREREZGE4Z4eIiIgsGoMdIiIismgMdoiIiMiiMdghIiIii8Zgh4iIiCwagx0iIiKyaAx2iIiIyKIx2CEiUmLz5s31qq8TkXlisENEBjV16lSIRCKIRCLY29vD398fw4YNwxdffCGv56MvS5Yskd/Lzs4OPj4+iI6OxgcffICKigq93ouIzAeDHSIyuBEjRuD27dvIzMzE7t27MWjQILz00ksYNWoUqqur9Xqvzp074/bt27h+/TqSkpIwfvx4rFy5En379kVJSYle70VE5oHBDhEZnKOjIwICAtCiRQv06NEDr7/+On7++Wfs3r0bmzdvBgAUFRXhmWeega+vL8RiMQYPHoyzZ8/Kr7FkyRJ069YNn3zyCVq1agUXFxc88cQTKC4uVriXnZ0dAgICEBgYiPDwcMyZMweHDh3C+fPn8c4778iPq6iowPz589GiRQu4uroiMjISBw8eVPkMV69exWOPPQZ/f3+4ubmhd+/e+N///iff/9ZbbyEsLKzeed26dcOiRYsa+MkRkT4w2CEioxg8eDC6du2KHTt2AADGjx+P3Nxc7N69G6dOnUKPHj0wZMgQFBYWys+5cuUKvvvuO/zyyy/Ys2cPUlNTMXPmTI336tChAx566CH5vQBg9uzZOH78OLZt24Y///wT48ePx4gRI5Cenq70GqWlpXj44Yexf/9+pKamYsSIEXjkkUdw/fp1AMDTTz+NS5cuISUlRX5Oamoq/vzzT0ybNq1BnxER6QeDHSIymg4dOiAzMxNHjhxBcnIytm/fjl69eiE0NBTvvfcePDw88P3338uPv3fvHrZs2YJu3bohOjoa8fHx2LZtG7Kzs7W+FwBcv34dCQkJ2L59OwYMGIC2bdti/vz56N+/PxISEpSe37VrVzz33HMICwtDaGgo3n77bbRt2xY7d+4EALRs2RIxMTEK5yckJODBBx9ESEhIIz4lImosO2M3gIislyAIEIlEOHv2LEpLS+Ht7a2w/+7du7h69ar899atW6NFixby36OioiCVSpGWloaAgACt7gUA586dQ01NDdq3b69wTEVFRb02yJSWlmLJkiX49ddfcfv2bVRXV+Pu3bvynh0AmDFjBp5++mmsXbsWNjY2+Oabb/D+++9r92EQkcEw2CEio7l06RKCg4NRWlqK5s2bK50zo6/l37J7AfcDF1tbW5w6dQq2trYKx7m5uSk9f/78+di3bx/ee+89tGvXDs7Ozhg3bhwqKyvlxzzyyCNwdHTEjz/+CAcHB1RVVWHcuHF6aT8RNRyDHSIyigMHDuDcuXN4+eWX0bJlS2RnZ8POzg5BQUEqz7l+/Tpu3bqFwMBAAMAff/wBGxsbPPDAA2rv9ddff2HPnj1YuHAhAKB79+6oqalBbm4uBgwYoFV7jx49iqlTp+Lxxx8HcD9gkg2LydjZ2SEuLg4JCQlwcHDAxIkT4ezsrNX1ichwGOwQkcFVVFQgOzsbNTU1yMnJwZ49e7By5UqMGjUKsbGxsLGxQVRUFEaPHo3Vq1ejffv2uHXrFn799Vc8/vjj6NWrFwDAyckJcXFxeO+99yCRSPDiiy/iiSeeUBjCqq6uRnZ2NqRSKQoKCnDw4EEsW7YM3bp1w6uvvgoAaN++PSZPnozY2FisWbMG3bt3R15eHvbv348uXbpg5MiR9Z4hNDQUO3bswCOPPAKRSIRFixYpzRP0zDPPoGPHjgDuB0hEZHwMdojI4Pbs2YPmzZvDzs4Onp6e6Nq1Kz766CPExcXBxub+Oon//ve/eOONNzBt2jTk5eUhICAA0dHR8Pf3l1+nXbt2GDNmDB5++GEUFhZi1KhRWL9+vcK9Lly4gObNm8PW1hbu7u7o1KkTFi5ciBdeeAGOjo7y4xISErBs2TK88soruHnzJnx8fNCnTx+MGjVK6TOsXbsWTz/9NPr27QsfHx+89tprkEgk9Y4LDQ1F3759UVhYiMjISH18fETUSCJBEARjN4KISJMlS5bgp59+wpkzZ4zdFLUEQUBoaChmzpyJefPmGbs5RAT27BAR6U1eXp58KTxz6xCZDgY7RER64ufnBx8fH3z66afw9PQ0dnOI6B8cxiIiIiKLxgzKREREZNEY7BAREZFFY7BDREREFo3BDhEREVk0BjtERERk0RjsEBERkUVjsENEREQWjcEOERERWTQGO0RERGTR/h/lH8m4r7fb8gAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "onTimeDepartures = df_flights.query(\"DepDelay == 0\")\n", + "print(f\"On-time Departures:{onTimeDepartures.DepDelay.count()}\")\n", + "delayedDepartures = df_flights.query(\"DepDelay > 0\")\n", + "print(f\"Delayed Departures:{delayedDepartures.DepDelay.count()}\")\n", + "\n", + "onTimeDepartures.boxplot(column='ArrDelay', by='DepDelay', figsize=(8,5))\n", + "delayedDepartures.plot.scatter(title='Delayed Departures vs Arrival', x='DepDelay', y='ArrDelay')\n", + "print(delayedDepartures.DepDelay.corr(delayedDepartures.ArrDelay))\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Year 2013\n", + "Month 4\n", + "DayofMonth 21\n", + "DayOfWeek 7\n", + "Carrier WN\n", + "OriginAirportID 12892\n", + "OriginAirportName Los Angeles International\n", + "OriginCity Los Angeles\n", + "OriginState CA\n", + "DestAirportID 14771\n", + "DestAirportName San Francisco International\n", + "DestCity San Francisco\n", + "DestState CA\n", + "CRSDepTime 850\n", + "DepDelay 45\n", + "DepDel15 1.0\n", + "CRSArrTime 1010\n", + "ArrDelay 31\n", + "ArrDel15 1\n", + "Cancelled 0\n", + "Name: 564, dtype: object" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lateArrivals = df_flights.query(\"ArrDelay > 0\")\n", + "lateArrivals = lateArrivals[[\"OriginAirportID\", \"DestAirportID\", \"ArrDelay\"]]\n", + "pd.set_option(\"display.max_rows\", None)\n", + "\n", + "lateArrivals.groupby([\"OriginAirportID\", \"DestAirportID\"]).count().sort_values(by=\"ArrDelay\", ascending=False)\n", + "\n", + "df_flights.query(\"(OriginAirportID == 12892 and DestAirportID == 14771)\").iloc[0]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OriginAirportIDDestAirportIDArrDelay
1110821052912892225
\n", + "
" + ], + "text/plain": [ + " OriginAirportID DestAirportID ArrDelay\n", + "111082 10529 12892 225" + ] + }, + "execution_count": 110, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lateArrivals.groupby([\"OriginAirportID\", \"DestAirportID\"]).mean().sort_values(by=\"ArrDelay\", ascending=False)\n", + "\n", + "#only 1 data point\n", + "lateArrivals.query(\"(OriginAirportID == 10529 and DestAirportID == 12892)\").sort_values(by=\"ArrDelay\", ascending=False)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "mean(Departure Delay): 10.40\n", + "mean(Arrival Delay):6.51\n", + "\n", + "AS is the carrier with the least departure delays and least arrival delays\n", + "MQ is the carrier with the most departure delays and least arrival delays\n", + "\n", + "Saturday is the day with the least arrival delays with 2.152108 minutes\n", + "Thursday is the day with the most arrival delays with 10.827256 minutes\n", + "So yes, there is a noticable difference\n", + "\n", + "Chicago O'Hare International is the airport with the highest average departure delay.\n", + "\n", + "Around 75% of flights that departed on time arrived before arrival time or a few minutes after arrival time.\n", + "\n", + "With a strong corelation of 0.9545 for delayed departures, it does result in longer delayed arrivals.\n", + "\n", + "Los Angeles International to San Francisco International was the route with the most late arrivals.\n", + "\n", + "Bradley International to Los Angeles International has the highest average arrival delay of 225 minutes. Although there is one one data point for these airports.\n", + "\n", + "\n", + "\n" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -1169,7 +1356,7 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ diff --git a/2-Regression/3-Linear/Housing.csv b/2-Regression/3-Linear/Housing.csv new file mode 100644 index 0000000000..88ca478360 --- /dev/null +++ b/2-Regression/3-Linear/Housing.csv @@ -0,0 +1,546 @@ +price,area,bedrooms,bathrooms,stories,mainroad,guestroom,basement,hotwaterheating,airconditioning,parking,prefarea,furnishingstatus +13300000,7420,4,2,3,yes,no,no,no,yes,2,yes,furnished +12250000,8960,4,4,4,yes,no,no,no,yes,3,no,furnished +12250000,9960,3,2,2,yes,no,yes,no,no,2,yes,semi-furnished +12215000,7500,4,2,2,yes,no,yes,no,yes,3,yes,furnished +11410000,7420,4,1,2,yes,yes,yes,no,yes,2,no,furnished +10850000,7500,3,3,1,yes,no,yes,no,yes,2,yes,semi-furnished +10150000,8580,4,3,4,yes,no,no,no,yes,2,yes,semi-furnished +10150000,16200,5,3,2,yes,no,no,no,no,0,no,unfurnished +9870000,8100,4,1,2,yes,yes,yes,no,yes,2,yes,furnished +9800000,5750,3,2,4,yes,yes,no,no,yes,1,yes,unfurnished +9800000,13200,3,1,2,yes,no,yes,no,yes,2,yes,furnished +9681000,6000,4,3,2,yes,yes,yes,yes,no,2,no,semi-furnished +9310000,6550,4,2,2,yes,no,no,no,yes,1,yes,semi-furnished +9240000,3500,4,2,2,yes,no,no,yes,no,2,no,furnished +9240000,7800,3,2,2,yes,no,no,no,no,0,yes,semi-furnished +9100000,6000,4,1,2,yes,no,yes,no,no,2,no,semi-furnished +9100000,6600,4,2,2,yes,yes,yes,no,yes,1,yes,unfurnished +8960000,8500,3,2,4,yes,no,no,no,yes,2,no,furnished +8890000,4600,3,2,2,yes,yes,no,no,yes,2,no,furnished +8855000,6420,3,2,2,yes,no,no,no,yes,1,yes,semi-furnished +8750000,4320,3,1,2,yes,no,yes,yes,no,2,no,semi-furnished +8680000,7155,3,2,1,yes,yes,yes,no,yes,2,no,unfurnished +8645000,8050,3,1,1,yes,yes,yes,no,yes,1,no,furnished +8645000,4560,3,2,2,yes,yes,yes,no,yes,1,no,furnished +8575000,8800,3,2,2,yes,no,no,no,yes,2,no,furnished +8540000,6540,4,2,2,yes,yes,yes,no,yes,2,yes,furnished +8463000,6000,3,2,4,yes,yes,yes,no,yes,0,yes,semi-furnished +8400000,8875,3,1,1,yes,no,no,no,no,1,no,semi-furnished +8400000,7950,5,2,2,yes,no,yes,yes,no,2,no,unfurnished +8400000,5500,4,2,2,yes,no,yes,no,yes,1,yes,semi-furnished +8400000,7475,3,2,4,yes,no,no,no,yes,2,no,unfurnished +8400000,7000,3,1,4,yes,no,no,no,yes,2,no,semi-furnished +8295000,4880,4,2,2,yes,no,no,no,yes,1,yes,furnished +8190000,5960,3,3,2,yes,yes,yes,no,no,1,no,unfurnished +8120000,6840,5,1,2,yes,yes,yes,no,yes,1,no,furnished +8080940,7000,3,2,4,yes,no,no,no,yes,2,no,furnished +8043000,7482,3,2,3,yes,no,no,yes,no,1,yes,furnished +7980000,9000,4,2,4,yes,no,no,no,yes,2,no,furnished +7962500,6000,3,1,4,yes,yes,no,no,yes,2,no,unfurnished +7910000,6000,4,2,4,yes,no,no,no,yes,1,no,semi-furnished +7875000,6550,3,1,2,yes,no,yes,no,yes,0,yes,furnished +7840000,6360,3,2,4,yes,no,no,no,yes,0,yes,furnished +7700000,6480,3,2,4,yes,no,no,no,yes,2,no,unfurnished +7700000,6000,4,2,4,yes,no,no,no,no,2,no,semi-furnished +7560000,6000,4,2,4,yes,no,no,no,yes,1,no,furnished +7560000,6000,3,2,3,yes,no,no,no,yes,0,no,semi-furnished +7525000,6000,3,2,4,yes,no,no,no,yes,1,no,furnished +7490000,6600,3,1,4,yes,no,no,no,yes,3,yes,furnished +7455000,4300,3,2,2,yes,no,yes,no,no,1,no,unfurnished +7420000,7440,3,2,1,yes,yes,yes,no,yes,0,yes,semi-furnished +7420000,7440,3,2,4,yes,no,no,no,no,1,yes,unfurnished +7420000,6325,3,1,4,yes,no,no,no,yes,1,no,unfurnished +7350000,6000,4,2,4,yes,yes,no,no,yes,1,no,furnished +7350000,5150,3,2,4,yes,no,no,no,yes,2,no,semi-furnished +7350000,6000,3,2,2,yes,yes,no,no,yes,1,no,semi-furnished +7350000,6000,3,1,2,yes,no,no,no,yes,1,no,unfurnished +7343000,11440,4,1,2,yes,no,yes,no,no,1,yes,semi-furnished +7245000,9000,4,2,4,yes,yes,no,no,yes,1,yes,furnished +7210000,7680,4,2,4,yes,yes,no,no,yes,1,no,semi-furnished +7210000,6000,3,2,4,yes,yes,no,no,yes,1,no,furnished +7140000,6000,3,2,2,yes,yes,no,no,no,1,no,semi-furnished +7070000,8880,2,1,1,yes,no,no,no,yes,1,no,semi-furnished +7070000,6240,4,2,2,yes,no,no,no,yes,1,no,furnished +7035000,6360,4,2,3,yes,no,no,no,yes,2,yes,furnished +7000000,11175,3,1,1,yes,no,yes,no,yes,1,yes,furnished +6930000,8880,3,2,2,yes,no,yes,no,yes,1,no,furnished +6930000,13200,2,1,1,yes,no,yes,yes,no,1,no,furnished +6895000,7700,3,2,1,yes,no,no,no,no,2,no,unfurnished +6860000,6000,3,1,1,yes,no,no,no,yes,1,no,furnished +6790000,12090,4,2,2,yes,no,no,no,no,2,yes,furnished +6790000,4000,3,2,2,yes,no,yes,no,yes,0,yes,semi-furnished +6755000,6000,4,2,4,yes,no,no,no,yes,0,no,unfurnished +6720000,5020,3,1,4,yes,no,no,no,yes,0,yes,unfurnished +6685000,6600,2,2,4,yes,no,yes,no,no,0,yes,furnished +6650000,4040,3,1,2,yes,no,yes,yes,no,1,no,furnished +6650000,4260,4,2,2,yes,no,no,yes,no,0,no,semi-furnished +6650000,6420,3,2,3,yes,no,no,no,yes,0,yes,furnished +6650000,6500,3,2,3,yes,no,no,no,yes,0,yes,furnished +6650000,5700,3,1,1,yes,yes,yes,no,yes,2,yes,furnished +6650000,6000,3,2,3,yes,yes,no,no,yes,0,no,furnished +6629000,6000,3,1,2,yes,no,no,yes,no,1,yes,semi-furnished +6615000,4000,3,2,2,yes,no,yes,no,yes,1,no,semi-furnished +6615000,10500,3,2,1,yes,no,yes,no,yes,1,yes,furnished +6580000,6000,3,2,4,yes,no,no,no,yes,0,no,semi-furnished +6510000,3760,3,1,2,yes,no,no,yes,no,2,no,semi-furnished +6510000,8250,3,2,3,yes,no,no,no,yes,0,no,furnished +6510000,6670,3,1,3,yes,no,yes,no,no,0,yes,unfurnished +6475000,3960,3,1,1,yes,no,yes,no,no,2,no,semi-furnished +6475000,7410,3,1,1,yes,yes,yes,no,yes,2,yes,unfurnished +6440000,8580,5,3,2,yes,no,no,no,no,2,no,furnished +6440000,5000,3,1,2,yes,no,no,no,yes,0,no,semi-furnished +6419000,6750,2,1,1,yes,yes,yes,no,no,2,yes,furnished +6405000,4800,3,2,4,yes,yes,no,no,yes,0,no,furnished +6300000,7200,3,2,1,yes,no,yes,no,yes,3,no,semi-furnished +6300000,6000,4,2,4,yes,no,no,no,no,1,no,semi-furnished +6300000,4100,3,2,3,yes,no,no,no,yes,2,no,semi-furnished +6300000,9000,3,1,1,yes,no,yes,no,no,1,yes,furnished +6300000,6400,3,1,1,yes,yes,yes,no,yes,1,yes,semi-furnished +6293000,6600,3,2,3,yes,no,no,no,yes,0,yes,unfurnished +6265000,6000,4,1,3,yes,yes,yes,no,no,0,yes,unfurnished +6230000,6600,3,2,1,yes,no,yes,no,yes,0,yes,unfurnished +6230000,5500,3,1,3,yes,no,no,no,no,1,yes,unfurnished +6195000,5500,3,2,4,yes,yes,no,no,yes,1,no,semi-furnished +6195000,6350,3,2,3,yes,yes,no,no,yes,0,no,furnished +6195000,5500,3,2,1,yes,yes,yes,no,no,2,yes,furnished +6160000,4500,3,1,4,yes,no,no,no,yes,0,no,unfurnished +6160000,5450,4,2,1,yes,no,yes,no,yes,0,yes,semi-furnished +6125000,6420,3,1,3,yes,no,yes,no,no,0,yes,unfurnished +6107500,3240,4,1,3,yes,no,no,no,no,1,no,semi-furnished +6090000,6615,4,2,2,yes,yes,no,yes,no,1,no,semi-furnished +6090000,6600,3,1,1,yes,yes,yes,no,no,2,yes,semi-furnished +6090000,8372,3,1,3,yes,no,no,no,yes,2,no,unfurnished +6083000,4300,6,2,2,yes,no,no,no,no,0,no,furnished +6083000,9620,3,1,1,yes,no,yes,no,no,2,yes,furnished +6020000,6800,2,1,1,yes,yes,yes,no,no,2,no,furnished +6020000,8000,3,1,1,yes,yes,yes,no,yes,2,yes,semi-furnished +6020000,6900,3,2,1,yes,yes,yes,no,no,0,yes,unfurnished +5950000,3700,4,1,2,yes,yes,no,no,yes,0,no,furnished +5950000,6420,3,1,1,yes,no,yes,no,yes,0,yes,furnished +5950000,7020,3,1,1,yes,no,yes,no,yes,2,yes,semi-furnished +5950000,6540,3,1,1,yes,yes,yes,no,no,2,yes,furnished +5950000,7231,3,1,2,yes,yes,yes,no,yes,0,yes,semi-furnished +5950000,6254,4,2,1,yes,no,yes,no,no,1,yes,semi-furnished +5950000,7320,4,2,2,yes,no,no,no,no,0,no,furnished +5950000,6525,3,2,4,yes,no,no,no,no,1,no,furnished +5943000,15600,3,1,1,yes,no,no,no,yes,2,no,semi-furnished +5880000,7160,3,1,1,yes,no,yes,no,no,2,yes,unfurnished +5880000,6500,3,2,3,yes,no,no,no,yes,0,no,unfurnished +5873000,5500,3,1,3,yes,yes,no,no,yes,1,no,furnished +5873000,11460,3,1,3,yes,no,no,no,no,2,yes,semi-furnished +5866000,4800,3,1,1,yes,yes,yes,no,no,0,no,unfurnished +5810000,5828,4,1,4,yes,yes,no,no,no,0,no,semi-furnished +5810000,5200,3,1,3,yes,no,no,no,yes,0,no,semi-furnished +5810000,4800,3,1,3,yes,no,no,no,yes,0,no,unfurnished +5803000,7000,3,1,1,yes,no,yes,no,no,2,yes,semi-furnished +5775000,6000,3,2,4,yes,no,no,no,yes,0,no,unfurnished +5740000,5400,4,2,2,yes,no,no,no,yes,2,no,unfurnished +5740000,4640,4,1,2,yes,no,no,no,no,1,no,semi-furnished +5740000,5000,3,1,3,yes,no,no,no,yes,0,no,semi-furnished +5740000,6360,3,1,1,yes,yes,yes,no,yes,2,yes,furnished +5740000,5800,3,2,4,yes,no,no,no,yes,0,no,unfurnished +5652500,6660,4,2,2,yes,yes,yes,no,no,1,yes,semi-furnished +5600000,10500,4,2,2,yes,no,no,no,no,1,no,semi-furnished +5600000,4800,5,2,3,no,no,yes,yes,no,0,no,unfurnished +5600000,4700,4,1,2,yes,yes,yes,no,yes,1,no,furnished +5600000,5000,3,1,4,yes,no,no,no,no,0,no,furnished +5600000,10500,2,1,1,yes,no,no,no,no,1,no,semi-furnished +5600000,5500,3,2,2,yes,no,no,no,no,1,no,semi-furnished +5600000,6360,3,1,3,yes,no,no,no,no,0,yes,semi-furnished +5600000,6600,4,2,1,yes,no,yes,no,no,0,yes,semi-furnished +5600000,5136,3,1,2,yes,yes,yes,no,yes,0,yes,unfurnished +5565000,4400,4,1,2,yes,no,no,no,yes,2,yes,semi-furnished +5565000,5400,5,1,2,yes,yes,yes,no,yes,0,yes,furnished +5530000,3300,3,3,2,yes,no,yes,no,no,0,no,semi-furnished +5530000,3650,3,2,2,yes,no,no,no,no,2,no,semi-furnished +5530000,6100,3,2,1,yes,no,yes,no,no,2,yes,furnished +5523000,6900,3,1,1,yes,yes,yes,no,no,0,yes,semi-furnished +5495000,2817,4,2,2,no,yes,yes,no,no,1,no,furnished +5495000,7980,3,1,1,yes,no,no,no,no,2,no,semi-furnished +5460000,3150,3,2,1,yes,yes,yes,no,yes,0,no,furnished +5460000,6210,4,1,4,yes,yes,no,no,yes,0,no,furnished +5460000,6100,3,1,3,yes,yes,no,no,yes,0,yes,semi-furnished +5460000,6600,4,2,2,yes,yes,yes,no,no,0,yes,semi-furnished +5425000,6825,3,1,1,yes,yes,yes,no,yes,0,yes,semi-furnished +5390000,6710,3,2,2,yes,yes,yes,no,no,1,yes,furnished +5383000,6450,3,2,1,yes,yes,yes,yes,no,0,no,unfurnished +5320000,7800,3,1,1,yes,no,yes,no,yes,2,yes,unfurnished +5285000,4600,2,2,1,yes,no,no,no,yes,2,no,semi-furnished +5250000,4260,4,1,2,yes,no,yes,no,yes,0,no,furnished +5250000,6540,4,2,2,no,no,no,no,yes,0,no,semi-furnished +5250000,5500,3,2,1,yes,no,yes,no,no,0,no,semi-furnished +5250000,10269,3,1,1,yes,no,no,no,no,1,yes,semi-furnished +5250000,8400,3,1,2,yes,yes,yes,no,yes,2,yes,unfurnished +5250000,5300,4,2,1,yes,no,no,no,yes,0,yes,unfurnished +5250000,3800,3,1,2,yes,yes,yes,no,no,1,yes,unfurnished +5250000,9800,4,2,2,yes,yes,no,no,no,2,no,semi-furnished +5250000,8520,3,1,1,yes,no,no,no,yes,2,no,furnished +5243000,6050,3,1,1,yes,no,yes,no,no,0,yes,semi-furnished +5229000,7085,3,1,1,yes,yes,yes,no,no,2,yes,semi-furnished +5215000,3180,3,2,2,yes,no,no,no,no,2,no,semi-furnished +5215000,4500,4,2,1,no,no,yes,no,yes,2,no,semi-furnished +5215000,7200,3,1,2,yes,yes,yes,no,no,1,yes,furnished +5145000,3410,3,1,2,no,no,no,no,yes,0,no,semi-furnished +5145000,7980,3,1,1,yes,no,no,no,no,1,yes,semi-furnished +5110000,3000,3,2,2,yes,yes,yes,no,no,0,no,furnished +5110000,3000,3,1,2,yes,no,yes,no,no,0,no,unfurnished +5110000,11410,2,1,2,yes,no,no,no,no,0,yes,furnished +5110000,6100,3,1,1,yes,no,yes,no,yes,0,yes,semi-furnished +5075000,5720,2,1,2,yes,no,no,no,yes,0,yes,unfurnished +5040000,3540,2,1,1,no,yes,yes,no,no,0,no,semi-furnished +5040000,7600,4,1,2,yes,no,no,no,yes,2,no,furnished +5040000,10700,3,1,2,yes,yes,yes,no,no,0,no,semi-furnished +5040000,6600,3,1,1,yes,yes,yes,no,no,0,yes,furnished +5033000,4800,2,1,1,yes,yes,yes,no,no,0,no,semi-furnished +5005000,8150,3,2,1,yes,yes,yes,no,no,0,no,semi-furnished +4970000,4410,4,3,2,yes,no,yes,no,no,2,no,semi-furnished +4970000,7686,3,1,1,yes,yes,yes,yes,no,0,no,semi-furnished +4956000,2800,3,2,2,no,no,yes,no,yes,1,no,semi-furnished +4935000,5948,3,1,2,yes,no,no,no,yes,0,no,semi-furnished +4907000,4200,3,1,2,yes,no,no,no,no,1,no,furnished +4900000,4520,3,1,2,yes,no,yes,no,yes,0,no,semi-furnished +4900000,4095,3,1,2,no,yes,yes,no,yes,0,no,semi-furnished +4900000,4120,2,1,1,yes,no,yes,no,no,1,no,semi-furnished +4900000,5400,4,1,2,yes,no,no,no,no,0,no,semi-furnished +4900000,4770,3,1,1,yes,yes,yes,no,no,0,no,semi-furnished +4900000,6300,3,1,1,yes,no,no,no,yes,2,no,semi-furnished +4900000,5800,2,1,1,yes,yes,yes,no,yes,0,no,semi-furnished +4900000,3000,3,1,2,yes,no,yes,no,yes,0,no,semi-furnished +4900000,2970,3,1,3,yes,no,no,no,no,0,no,semi-furnished +4900000,6720,3,1,1,yes,no,no,no,no,0,no,unfurnished +4900000,4646,3,1,2,yes,yes,yes,no,no,2,no,semi-furnished +4900000,12900,3,1,1,yes,no,no,no,no,2,no,furnished +4893000,3420,4,2,2,yes,no,yes,no,yes,2,no,semi-furnished +4893000,4995,4,2,1,yes,no,yes,no,no,0,no,semi-furnished +4865000,4350,2,1,1,yes,no,yes,no,no,0,no,unfurnished +4830000,4160,3,1,3,yes,no,no,no,no,0,no,unfurnished +4830000,6040,3,1,1,yes,no,no,no,no,2,yes,semi-furnished +4830000,6862,3,1,2,yes,no,no,no,yes,2,yes,furnished +4830000,4815,2,1,1,yes,no,no,no,yes,0,yes,semi-furnished +4795000,7000,3,1,2,yes,no,yes,no,no,0,no,unfurnished +4795000,8100,4,1,4,yes,no,yes,no,yes,2,no,semi-furnished +4767000,3420,4,2,2,yes,no,no,no,no,0,no,semi-furnished +4760000,9166,2,1,1,yes,no,yes,no,yes,2,no,semi-furnished +4760000,6321,3,1,2,yes,no,yes,no,yes,1,no,furnished +4760000,10240,2,1,1,yes,no,no,no,yes,2,yes,unfurnished +4753000,6440,2,1,1,yes,no,no,no,yes,3,no,semi-furnished +4690000,5170,3,1,4,yes,no,no,no,yes,0,no,semi-furnished +4690000,6000,2,1,1,yes,no,yes,no,yes,1,no,furnished +4690000,3630,3,1,2,yes,no,no,no,no,2,no,semi-furnished +4690000,9667,4,2,2,yes,yes,yes,no,no,1,no,semi-furnished +4690000,5400,2,1,2,yes,no,no,no,no,0,yes,semi-furnished +4690000,4320,3,1,1,yes,no,no,no,no,0,yes,semi-furnished +4655000,3745,3,1,2,yes,no,yes,no,no,0,no,furnished +4620000,4160,3,1,1,yes,yes,yes,no,yes,0,no,unfurnished +4620000,3880,3,2,2,yes,no,yes,no,no,2,no,semi-furnished +4620000,5680,3,1,2,yes,yes,no,no,yes,1,no,semi-furnished +4620000,2870,2,1,2,yes,yes,yes,no,no,0,yes,semi-furnished +4620000,5010,3,1,2,yes,no,yes,no,no,0,no,semi-furnished +4613000,4510,4,2,2,yes,no,yes,no,no,0,no,semi-furnished +4585000,4000,3,1,2,yes,no,no,no,no,1,no,furnished +4585000,3840,3,1,2,yes,no,no,no,no,1,yes,semi-furnished +4550000,3760,3,1,1,yes,no,no,no,no,2,no,semi-furnished +4550000,3640,3,1,2,yes,no,no,no,yes,0,no,furnished +4550000,2550,3,1,2,yes,no,yes,no,no,0,no,furnished +4550000,5320,3,1,2,yes,yes,yes,no,no,0,yes,semi-furnished +4550000,5360,3,1,2,yes,no,no,no,no,2,yes,unfurnished +4550000,3520,3,1,1,yes,no,no,no,no,0,yes,semi-furnished +4550000,8400,4,1,4,yes,no,no,no,no,3,no,unfurnished +4543000,4100,2,2,1,yes,yes,yes,no,no,0,no,semi-furnished +4543000,4990,4,2,2,yes,yes,yes,no,no,0,yes,furnished +4515000,3510,3,1,3,yes,no,no,no,no,0,no,semi-furnished +4515000,3450,3,1,2,yes,no,yes,no,no,1,no,semi-furnished +4515000,9860,3,1,1,yes,no,no,no,no,0,no,semi-furnished +4515000,3520,2,1,2,yes,no,no,no,no,0,yes,furnished +4480000,4510,4,1,2,yes,no,no,no,yes,2,no,semi-furnished +4480000,5885,2,1,1,yes,no,no,no,yes,1,no,unfurnished +4480000,4000,3,1,2,yes,no,no,no,no,2,no,furnished +4480000,8250,3,1,1,yes,no,no,no,no,0,no,furnished +4480000,4040,3,1,2,yes,no,no,no,no,1,no,semi-furnished +4473000,6360,2,1,1,yes,no,yes,no,yes,1,no,furnished +4473000,3162,3,1,2,yes,no,no,no,yes,1,no,furnished +4473000,3510,3,1,2,yes,no,no,no,no,0,no,semi-furnished +4445000,3750,2,1,1,yes,yes,yes,no,no,0,no,semi-furnished +4410000,3968,3,1,2,no,no,no,no,no,0,no,semi-furnished +4410000,4900,2,1,2,yes,no,yes,no,no,0,no,semi-furnished +4403000,2880,3,1,2,yes,no,no,no,no,0,yes,semi-furnished +4403000,4880,3,1,1,yes,no,no,no,no,2,yes,unfurnished +4403000,4920,3,1,2,yes,no,no,no,no,1,no,semi-furnished +4382000,4950,4,1,2,yes,no,no,no,yes,0,no,semi-furnished +4375000,3900,3,1,2,yes,no,no,no,no,0,no,unfurnished +4340000,4500,3,2,3,yes,no,no,yes,no,1,no,furnished +4340000,1905,5,1,2,no,no,yes,no,no,0,no,semi-furnished +4340000,4075,3,1,1,yes,yes,yes,no,no,2,no,semi-furnished +4340000,3500,4,1,2,yes,no,no,no,no,2,no,furnished +4340000,6450,4,1,2,yes,no,no,no,no,0,no,semi-furnished +4319000,4032,2,1,1,yes,no,yes,no,no,0,no,furnished +4305000,4400,2,1,1,yes,no,no,no,no,1,no,semi-furnished +4305000,10360,2,1,1,yes,no,no,no,no,1,yes,semi-furnished +4277000,3400,3,1,2,yes,no,yes,no,no,2,yes,semi-furnished +4270000,6360,2,1,1,yes,no,no,no,no,0,no,furnished +4270000,6360,2,1,2,yes,no,no,no,no,0,no,unfurnished +4270000,4500,2,1,1,yes,no,no,no,yes,2,no,furnished +4270000,2175,3,1,2,no,yes,yes,no,yes,0,no,unfurnished +4270000,4360,4,1,2,yes,no,no,no,no,0,no,furnished +4270000,7770,2,1,1,yes,no,no,no,no,1,no,furnished +4235000,6650,3,1,2,yes,yes,no,no,no,0,no,semi-furnished +4235000,2787,3,1,1,yes,no,yes,no,no,0,yes,furnished +4200000,5500,3,1,2,yes,no,no,no,yes,0,no,unfurnished +4200000,5040,3,1,2,yes,no,yes,no,yes,0,no,unfurnished +4200000,5850,2,1,1,yes,yes,yes,no,no,2,no,semi-furnished +4200000,2610,4,3,2,no,no,no,no,no,0,no,semi-furnished +4200000,2953,3,1,2,yes,no,yes,no,yes,0,no,unfurnished +4200000,2747,4,2,2,no,no,no,no,no,0,no,semi-furnished +4200000,4410,2,1,1,no,no,no,no,no,1,no,unfurnished +4200000,4000,4,2,2,no,no,no,no,no,0,no,semi-furnished +4200000,2325,3,1,2,no,no,no,no,no,0,no,semi-furnished +4200000,4600,3,2,2,yes,no,no,no,yes,1,no,semi-furnished +4200000,3640,3,2,2,yes,no,yes,no,no,0,no,unfurnished +4200000,5800,3,1,1,yes,no,no,yes,no,2,no,semi-furnished +4200000,7000,3,1,1,yes,no,no,no,no,3,no,furnished +4200000,4079,3,1,3,yes,no,no,no,no,0,no,semi-furnished +4200000,3520,3,1,2,yes,no,no,no,no,0,yes,semi-furnished +4200000,2145,3,1,3,yes,no,no,no,no,1,yes,unfurnished +4200000,4500,3,1,1,yes,no,yes,no,no,0,no,furnished +4193000,8250,3,1,1,yes,no,yes,no,no,3,no,semi-furnished +4193000,3450,3,1,2,yes,no,no,no,no,1,no,semi-furnished +4165000,4840,3,1,2,yes,no,no,no,no,1,no,semi-furnished +4165000,4080,3,1,2,yes,no,no,no,no,2,no,semi-furnished +4165000,4046,3,1,2,yes,no,yes,no,no,1,no,semi-furnished +4130000,4632,4,1,2,yes,no,no,no,yes,0,no,semi-furnished +4130000,5985,3,1,1,yes,no,yes,no,no,0,no,semi-furnished +4123000,6060,2,1,1,yes,no,yes,no,no,1,no,semi-furnished +4098500,3600,3,1,1,yes,no,yes,no,yes,0,yes,furnished +4095000,3680,3,2,2,yes,no,no,no,no,0,no,semi-furnished +4095000,4040,2,1,2,yes,no,no,no,no,1,no,semi-furnished +4095000,5600,2,1,1,yes,no,no,no,yes,0,no,semi-furnished +4060000,5900,4,2,2,no,no,yes,no,no,1,no,unfurnished +4060000,4992,3,2,2,yes,no,no,no,no,2,no,unfurnished +4060000,4340,3,1,1,yes,no,no,no,no,0,no,semi-furnished +4060000,3000,4,1,3,yes,no,yes,no,yes,2,no,semi-furnished +4060000,4320,3,1,2,yes,no,no,no,no,2,yes,furnished +4025000,3630,3,2,2,yes,no,no,yes,no,2,no,semi-furnished +4025000,3460,3,2,1,yes,no,yes,no,yes,1,no,furnished +4025000,5400,3,1,1,yes,no,no,no,no,3,no,semi-furnished +4007500,4500,3,1,2,no,no,yes,no,yes,0,no,semi-furnished +4007500,3460,4,1,2,yes,no,no,no,yes,0,no,semi-furnished +3990000,4100,4,1,1,no,no,yes,no,no,0,no,unfurnished +3990000,6480,3,1,2,no,no,no,no,yes,1,no,semi-furnished +3990000,4500,3,2,2,no,no,yes,no,yes,0,no,semi-furnished +3990000,3960,3,1,2,yes,no,no,no,no,0,no,furnished +3990000,4050,2,1,2,yes,yes,yes,no,no,0,yes,unfurnished +3920000,7260,3,2,1,yes,yes,yes,no,no,3,no,furnished +3920000,5500,4,1,2,yes,yes,yes,no,no,0,no,semi-furnished +3920000,3000,3,1,2,yes,no,no,no,no,0,no,semi-furnished +3920000,3290,2,1,1,yes,no,no,yes,no,1,no,furnished +3920000,3816,2,1,1,yes,no,yes,no,yes,2,no,furnished +3920000,8080,3,1,1,yes,no,no,no,yes,2,no,semi-furnished +3920000,2145,4,2,1,yes,no,yes,no,no,0,yes,unfurnished +3885000,3780,2,1,2,yes,yes,yes,no,no,0,no,semi-furnished +3885000,3180,4,2,2,yes,no,no,no,no,0,no,furnished +3850000,5300,5,2,2,yes,no,no,no,no,0,no,semi-furnished +3850000,3180,2,2,1,yes,no,yes,no,no,2,no,semi-furnished +3850000,7152,3,1,2,yes,no,no,no,yes,0,no,furnished +3850000,4080,2,1,1,yes,no,no,no,no,0,no,semi-furnished +3850000,3850,2,1,1,yes,no,no,no,no,0,no,semi-furnished +3850000,2015,3,1,2,yes,no,yes,no,no,0,yes,semi-furnished +3850000,2176,2,1,2,yes,yes,no,no,no,0,yes,semi-furnished +3836000,3350,3,1,2,yes,no,no,no,no,0,no,unfurnished +3815000,3150,2,2,1,no,no,yes,no,no,0,no,semi-furnished +3780000,4820,3,1,2,yes,no,no,no,no,0,no,semi-furnished +3780000,3420,2,1,2,yes,no,no,yes,no,1,no,semi-furnished +3780000,3600,2,1,1,yes,no,no,no,no,0,no,semi-furnished +3780000,5830,2,1,1,yes,no,no,no,no,2,no,unfurnished +3780000,2856,3,1,3,yes,no,no,no,no,0,yes,furnished +3780000,8400,2,1,1,yes,no,no,no,no,1,no,furnished +3773000,8250,3,1,1,yes,no,no,no,no,2,no,furnished +3773000,2520,5,2,1,no,no,yes,no,yes,1,no,furnished +3773000,6930,4,1,2,no,no,no,no,no,1,no,furnished +3745000,3480,2,1,1,yes,no,no,no,no,0,yes,semi-furnished +3710000,3600,3,1,1,yes,no,no,no,no,1,no,unfurnished +3710000,4040,2,1,1,yes,no,no,no,no,0,no,semi-furnished +3710000,6020,3,1,1,yes,no,no,no,no,0,no,semi-furnished +3710000,4050,2,1,1,yes,no,no,no,no,0,no,furnished +3710000,3584,2,1,1,yes,no,no,yes,no,0,no,semi-furnished +3703000,3120,3,1,2,no,no,yes,yes,no,0,no,semi-furnished +3703000,5450,2,1,1,yes,no,no,no,no,0,no,furnished +3675000,3630,2,1,1,yes,no,yes,no,no,0,no,furnished +3675000,3630,2,1,1,yes,no,no,no,yes,0,no,unfurnished +3675000,5640,2,1,1,no,no,no,no,no,0,no,semi-furnished +3675000,3600,2,1,1,yes,no,no,no,no,0,no,furnished +3640000,4280,2,1,1,yes,no,no,no,yes,2,no,semi-furnished +3640000,3570,3,1,2,yes,no,yes,no,no,0,no,semi-furnished +3640000,3180,3,1,2,no,no,yes,no,no,0,no,semi-furnished +3640000,3000,2,1,2,yes,no,no,no,yes,0,no,furnished +3640000,3520,2,2,1,yes,no,yes,no,no,0,no,semi-furnished +3640000,5960,3,1,2,yes,yes,yes,no,no,0,no,unfurnished +3640000,4130,3,2,2,yes,no,no,no,no,2,no,semi-furnished +3640000,2850,3,2,2,no,no,yes,no,no,0,yes,unfurnished +3640000,2275,3,1,3,yes,no,no,yes,yes,0,yes,semi-furnished +3633000,3520,3,1,1,yes,no,no,no,no,2,yes,unfurnished +3605000,4500,2,1,1,yes,no,no,no,no,0,no,semi-furnished +3605000,4000,2,1,1,yes,no,no,no,no,0,yes,semi-furnished +3570000,3150,3,1,2,yes,no,yes,no,no,0,no,furnished +3570000,4500,4,2,2,yes,no,yes,no,no,2,no,furnished +3570000,4500,2,1,1,no,no,no,no,no,0,no,furnished +3570000,3640,2,1,1,yes,no,no,no,no,0,no,unfurnished +3535000,3850,3,1,1,yes,no,no,no,no,2,no,unfurnished +3500000,4240,3,1,2,yes,no,no,no,yes,0,no,semi-furnished +3500000,3650,3,1,2,yes,no,no,no,no,0,no,unfurnished +3500000,4600,4,1,2,yes,no,no,no,no,0,no,semi-furnished +3500000,2135,3,2,2,no,no,no,no,no,0,no,unfurnished +3500000,3036,3,1,2,yes,no,yes,no,no,0,no,semi-furnished +3500000,3990,3,1,2,yes,no,no,no,no,0,no,semi-furnished +3500000,7424,3,1,1,no,no,no,no,no,0,no,unfurnished +3500000,3480,3,1,1,no,no,no,no,yes,0,no,unfurnished +3500000,3600,6,1,2,yes,no,no,no,no,1,no,unfurnished +3500000,3640,2,1,1,yes,no,no,no,no,1,no,semi-furnished +3500000,5900,2,1,1,yes,no,no,no,no,1,no,furnished +3500000,3120,3,1,2,yes,no,no,no,no,1,no,unfurnished +3500000,7350,2,1,1,yes,no,no,no,no,1,no,semi-furnished +3500000,3512,2,1,1,yes,no,no,no,no,1,yes,unfurnished +3500000,9500,3,1,2,yes,no,no,no,no,3,yes,unfurnished +3500000,5880,2,1,1,yes,no,no,no,no,0,no,unfurnished +3500000,12944,3,1,1,yes,no,no,no,no,0,no,unfurnished +3493000,4900,3,1,2,no,no,no,no,no,0,no,unfurnished +3465000,3060,3,1,1,yes,no,no,no,no,0,no,unfurnished +3465000,5320,2,1,1,yes,no,no,no,no,1,yes,unfurnished +3465000,2145,3,1,3,yes,no,no,no,no,0,yes,furnished +3430000,4000,2,1,1,yes,no,no,no,no,0,no,unfurnished +3430000,3185,2,1,1,yes,no,no,no,no,2,no,unfurnished +3430000,3850,3,1,1,yes,no,no,no,no,0,no,unfurnished +3430000,2145,3,1,3,yes,no,no,no,no,0,yes,furnished +3430000,2610,3,1,2,yes,no,yes,no,no,0,yes,unfurnished +3430000,1950,3,2,2,yes,no,yes,no,no,0,yes,unfurnished +3423000,4040,2,1,1,yes,no,no,no,no,0,no,unfurnished +3395000,4785,3,1,2,yes,yes,yes,no,yes,1,no,furnished +3395000,3450,3,1,1,yes,no,yes,no,no,2,no,unfurnished +3395000,3640,2,1,1,yes,no,no,no,no,0,no,furnished +3360000,3500,4,1,2,yes,no,no,no,yes,2,no,unfurnished +3360000,4960,4,1,3,no,no,no,no,no,0,no,semi-furnished +3360000,4120,2,1,2,yes,no,no,no,no,0,no,unfurnished +3360000,4750,2,1,1,yes,no,no,no,no,0,no,unfurnished +3360000,3720,2,1,1,no,no,no,no,yes,0,no,unfurnished +3360000,3750,3,1,1,yes,no,no,no,no,0,no,unfurnished +3360000,3100,3,1,2,no,no,yes,no,no,0,no,semi-furnished +3360000,3185,2,1,1,yes,no,yes,no,no,2,no,furnished +3353000,2700,3,1,1,no,no,no,no,no,0,no,furnished +3332000,2145,3,1,2,yes,no,yes,no,no,0,yes,furnished +3325000,4040,2,1,1,yes,no,no,no,no,1,no,unfurnished +3325000,4775,4,1,2,yes,no,no,no,no,0,no,unfurnished +3290000,2500,2,1,1,no,no,no,no,yes,0,no,unfurnished +3290000,3180,4,1,2,yes,no,yes,no,yes,0,no,unfurnished +3290000,6060,3,1,1,yes,yes,yes,no,no,0,no,furnished +3290000,3480,4,1,2,no,no,no,no,no,1,no,semi-furnished +3290000,3792,4,1,2,yes,no,no,no,no,0,no,semi-furnished +3290000,4040,2,1,1,yes,no,no,no,no,0,no,unfurnished +3290000,2145,3,1,2,yes,no,yes,no,no,0,yes,furnished +3290000,5880,3,1,1,yes,no,no,no,no,1,no,unfurnished +3255000,4500,2,1,1,no,no,no,no,no,0,no,semi-furnished +3255000,3930,2,1,1,no,no,no,no,no,0,no,unfurnished +3234000,3640,4,1,2,yes,no,yes,no,no,0,no,unfurnished +3220000,4370,3,1,2,yes,no,no,no,no,0,no,unfurnished +3220000,2684,2,1,1,yes,no,no,no,yes,1,no,unfurnished +3220000,4320,3,1,1,no,no,no,no,no,1,no,unfurnished +3220000,3120,3,1,2,no,no,no,no,no,0,no,furnished +3150000,3450,1,1,1,yes,no,no,no,no,0,no,furnished +3150000,3986,2,2,1,no,yes,yes,no,no,1,no,unfurnished +3150000,3500,2,1,1,no,no,yes,no,no,0,no,semi-furnished +3150000,4095,2,1,1,yes,no,no,no,no,2,no,semi-furnished +3150000,1650,3,1,2,no,no,yes,no,no,0,no,unfurnished +3150000,3450,3,1,2,yes,no,yes,no,no,0,no,semi-furnished +3150000,6750,2,1,1,yes,no,no,no,no,0,no,semi-furnished +3150000,9000,3,1,2,yes,no,no,no,no,2,no,semi-furnished +3150000,3069,2,1,1,yes,no,no,no,no,1,no,unfurnished +3143000,4500,3,1,2,yes,no,no,no,yes,0,no,unfurnished +3129000,5495,3,1,1,yes,no,yes,no,no,0,no,unfurnished +3118850,2398,3,1,1,yes,no,no,no,no,0,yes,semi-furnished +3115000,3000,3,1,1,no,no,no,no,yes,0,no,unfurnished +3115000,3850,3,1,2,yes,no,no,no,no,0,no,unfurnished +3115000,3500,2,1,1,yes,no,no,no,no,0,no,unfurnished +3087000,8100,2,1,1,yes,no,no,no,no,1,no,unfurnished +3080000,4960,2,1,1,yes,no,yes,no,yes,0,no,unfurnished +3080000,2160,3,1,2,no,no,yes,no,no,0,no,semi-furnished +3080000,3090,2,1,1,yes,yes,yes,no,no,0,no,unfurnished +3080000,4500,2,1,2,yes,no,no,yes,no,1,no,semi-furnished +3045000,3800,2,1,1,yes,no,no,no,no,0,no,unfurnished +3010000,3090,3,1,2,no,no,no,no,no,0,no,semi-furnished +3010000,3240,3,1,2,yes,no,no,no,no,2,no,semi-furnished +3010000,2835,2,1,1,yes,no,no,no,no,0,no,semi-furnished +3010000,4600,2,1,1,yes,no,no,no,no,0,no,furnished +3010000,5076,3,1,1,no,no,no,no,no,0,no,unfurnished +3010000,3750,3,1,2,yes,no,no,no,no,0,no,unfurnished +3010000,3630,4,1,2,yes,no,no,no,no,3,no,semi-furnished +3003000,8050,2,1,1,yes,no,no,no,no,0,no,unfurnished +2975000,4352,4,1,2,no,no,no,no,no,1,no,unfurnished +2961000,3000,2,1,2,yes,no,no,no,no,0,no,semi-furnished +2940000,5850,3,1,2,yes,no,yes,no,no,1,no,unfurnished +2940000,4960,2,1,1,yes,no,no,no,no,0,no,unfurnished +2940000,3600,3,1,2,no,no,no,no,no,1,no,unfurnished +2940000,3660,4,1,2,no,no,no,no,no,0,no,unfurnished +2940000,3480,3,1,2,no,no,no,no,no,1,no,semi-furnished +2940000,2700,2,1,1,no,no,no,no,no,0,no,furnished +2940000,3150,3,1,2,no,no,no,no,no,0,no,unfurnished +2940000,6615,3,1,2,yes,no,no,no,no,0,no,semi-furnished +2870000,3040,2,1,1,no,no,no,no,no,0,no,unfurnished +2870000,3630,2,1,1,yes,no,no,no,no,0,no,unfurnished +2870000,6000,2,1,1,yes,no,no,no,no,0,no,semi-furnished +2870000,5400,4,1,2,yes,no,no,no,no,0,no,unfurnished +2852500,5200,4,1,3,yes,no,no,no,no,0,no,unfurnished +2835000,3300,3,1,2,no,no,no,no,no,1,no,semi-furnished +2835000,4350,3,1,2,no,no,no,yes,no,1,no,unfurnished +2835000,2640,2,1,1,no,no,no,no,no,1,no,furnished +2800000,2650,3,1,2,yes,no,yes,no,no,1,no,unfurnished +2800000,3960,3,1,1,yes,no,no,no,no,0,no,furnished +2730000,6800,2,1,1,yes,no,no,no,no,0,no,unfurnished +2730000,4000,3,1,2,yes,no,no,no,no,1,no,unfurnished +2695000,4000,2,1,1,yes,no,no,no,no,0,no,unfurnished +2660000,3934,2,1,1,yes,no,no,no,no,0,no,unfurnished +2660000,2000,2,1,2,yes,no,no,no,no,0,no,semi-furnished +2660000,3630,3,3,2,no,yes,no,no,no,0,no,unfurnished +2660000,2800,3,1,1,yes,no,no,no,no,0,no,unfurnished +2660000,2430,3,1,1,no,no,no,no,no,0,no,unfurnished +2660000,3480,2,1,1,yes,no,no,no,no,1,no,semi-furnished +2660000,4000,3,1,1,yes,no,no,no,no,0,no,semi-furnished +2653000,3185,2,1,1,yes,no,no,no,yes,0,no,unfurnished +2653000,4000,3,1,2,yes,no,no,no,yes,0,no,unfurnished +2604000,2910,2,1,1,no,no,no,no,no,0,no,unfurnished +2590000,3600,2,1,1,yes,no,no,no,no,0,no,unfurnished +2590000,4400,2,1,1,yes,no,no,no,no,0,no,unfurnished +2590000,3600,2,2,2,yes,no,yes,no,no,1,no,furnished +2520000,2880,3,1,1,no,no,no,no,no,0,no,unfurnished +2520000,3180,3,1,1,no,no,no,no,no,0,no,unfurnished +2520000,3000,2,1,2,yes,no,no,no,no,0,no,furnished +2485000,4400,3,1,2,yes,no,no,no,no,0,no,unfurnished +2485000,3000,3,1,2,no,no,no,no,no,0,no,semi-furnished +2450000,3210,3,1,2,yes,no,yes,no,no,0,no,unfurnished +2450000,3240,2,1,1,no,yes,no,no,no,1,no,unfurnished +2450000,3000,2,1,1,yes,no,no,no,no,1,no,unfurnished +2450000,3500,2,1,1,yes,yes,no,no,no,0,no,unfurnished +2450000,4840,2,1,2,yes,no,no,no,no,0,no,unfurnished +2450000,7700,2,1,1,yes,no,no,no,no,0,no,unfurnished +2408000,3635,2,1,1,no,no,no,no,no,0,no,unfurnished +2380000,2475,3,1,2,yes,no,no,no,no,0,no,furnished +2380000,2787,4,2,2,yes,no,no,no,no,0,no,furnished +2380000,3264,2,1,1,yes,no,no,no,no,0,no,unfurnished +2345000,3640,2,1,1,yes,no,no,no,no,0,no,unfurnished +2310000,3180,2,1,1,yes,no,no,no,no,0,no,unfurnished +2275000,1836,2,1,1,no,no,yes,no,no,0,no,semi-furnished +2275000,3970,1,1,1,no,no,no,no,no,0,no,unfurnished +2275000,3970,3,1,2,yes,no,yes,no,no,0,no,unfurnished +2240000,1950,3,1,1,no,no,no,yes,no,0,no,unfurnished +2233000,5300,3,1,1,no,no,no,no,yes,0,yes,unfurnished +2135000,3000,2,1,1,no,no,no,no,no,0,no,unfurnished +2100000,2400,3,1,2,yes,no,no,no,no,0,no,unfurnished +2100000,3000,4,1,2,yes,no,no,no,no,0,no,unfurnished +2100000,3360,2,1,1,yes,no,no,no,no,1,no,unfurnished +1960000,3420,5,1,2,no,no,no,no,no,0,no,unfurnished +1890000,1700,3,1,2,yes,no,no,no,no,0,no,unfurnished +1890000,3649,2,1,1,yes,no,no,no,no,0,no,unfurnished +1855000,2990,2,1,1,no,no,no,no,no,1,no,unfurnished +1820000,3000,2,1,1,yes,no,yes,no,no,2,no,unfurnished +1767150,2400,3,1,1,no,no,no,no,no,0,no,semi-furnished +1750000,3620,2,1,1,yes,no,no,no,no,0,no,unfurnished +1750000,2910,3,1,1,no,no,no,no,no,0,no,furnished +1750000,3850,3,1,2,yes,no,no,no,no,0,no,unfurnished diff --git a/2-Regression/3-Linear/README.md b/2-Regression/3-Linear/README.md index c9060034f4..e59777cbf6 100644 --- a/2-Regression/3-Linear/README.md +++ b/2-Regression/3-Linear/README.md @@ -57,7 +57,8 @@ We do so since we want to model a line that has the least cumulative distance fr > > `X` is the 'explanatory variable'. `Y` is the 'dependent variable'. The slope of the line is `b` and `a` is the y-intercept, which refers to the value of `Y` when `X = 0`. > ->![calculate the slope](images/slope.png) +>![calculate the slope](images/slope.png) DON't KNOW HOW THEY GOT THE SLOPE!!!!!!!! +![Better explanation](image.png) > > First, calculate the slope `b`. Infographic by [Jen Looper](https://twitter.com/jenlooper) > diff --git a/2-Regression/3-Linear/assignment.ipynb b/2-Regression/3-Linear/assignment.ipynb new file mode 100644 index 0000000000..419923faf8 --- /dev/null +++ b/2-Regression/3-Linear/assignment.ipynb @@ -0,0 +1,1984 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Housing Dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "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", + "
priceareabedroomsbathroomsstoriesmainroadguestroombasementhotwaterheatingairconditioningparkingprefareafurnishingstatus
0133000007420423yesnononoyes2yesfurnished
1122500008960444yesnononoyes3nofurnished
2122500009960322yesnoyesnono2yessemi-furnished
3122150007500422yesnoyesnoyes3yesfurnished
4114100007420412yesyesyesnoyes2nofurnished
..........................................
54018200003000211yesnoyesnono2nounfurnished
54117671502400311nonononono0nosemi-furnished
54217500003620211yesnononono0nounfurnished
54317500002910311nonononono0nofurnished
54417500003850312yesnononono0nounfurnished
\n", + "

545 rows × 13 columns

\n", + "
" + ], + "text/plain": [ + " price area bedrooms bathrooms stories mainroad guestroom basement \\\n", + "0 13300000 7420 4 2 3 yes no no \n", + "1 12250000 8960 4 4 4 yes no no \n", + "2 12250000 9960 3 2 2 yes no yes \n", + "3 12215000 7500 4 2 2 yes no yes \n", + "4 11410000 7420 4 1 2 yes yes yes \n", + ".. ... ... ... ... ... ... ... ... \n", + "540 1820000 3000 2 1 1 yes no yes \n", + "541 1767150 2400 3 1 1 no no no \n", + "542 1750000 3620 2 1 1 yes no no \n", + "543 1750000 2910 3 1 1 no no no \n", + "544 1750000 3850 3 1 2 yes no no \n", + "\n", + " hotwaterheating airconditioning parking prefarea furnishingstatus \n", + "0 no yes 2 yes furnished \n", + "1 no yes 3 no furnished \n", + "2 no no 2 yes semi-furnished \n", + "3 no yes 3 yes furnished \n", + "4 no yes 2 no furnished \n", + ".. ... ... ... ... ... \n", + "540 no no 2 no unfurnished \n", + "541 no no 0 no semi-furnished \n", + "542 no no 0 no unfurnished \n", + "543 no no 0 no furnished \n", + "544 no no 0 no unfurnished \n", + "\n", + "[545 rows x 13 columns]" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "\n", + "dataset = pd.read_csv(\"Housing.csv\")\n", + "\n", + "dataset\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "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", + "
priceareabedroomsbathroomsstoriesparking
count5.450000e+02545.000000545.000000545.000000545.000000545.000000
mean4.766729e+065150.5412842.9651381.2862391.8055050.693578
std1.870440e+062170.1410230.7380640.5024700.8674920.861586
min1.750000e+061650.0000001.0000001.0000001.0000000.000000
25%3.430000e+063600.0000002.0000001.0000001.0000000.000000
50%4.340000e+064600.0000003.0000001.0000002.0000000.000000
75%5.740000e+066360.0000003.0000002.0000002.0000001.000000
max1.330000e+0716200.0000006.0000004.0000004.0000003.000000
\n", + "
" + ], + "text/plain": [ + " price area bedrooms bathrooms stories \\\n", + "count 5.450000e+02 545.000000 545.000000 545.000000 545.000000 \n", + "mean 4.766729e+06 5150.541284 2.965138 1.286239 1.805505 \n", + "std 1.870440e+06 2170.141023 0.738064 0.502470 0.867492 \n", + "min 1.750000e+06 1650.000000 1.000000 1.000000 1.000000 \n", + "25% 3.430000e+06 3600.000000 2.000000 1.000000 1.000000 \n", + "50% 4.340000e+06 4600.000000 3.000000 1.000000 2.000000 \n", + "75% 5.740000e+06 6360.000000 3.000000 2.000000 2.000000 \n", + "max 1.330000e+07 16200.000000 6.000000 4.000000 4.000000 \n", + "\n", + " parking \n", + "count 545.000000 \n", + "mean 0.693578 \n", + "std 0.861586 \n", + "min 0.000000 \n", + "25% 0.000000 \n", + "50% 0.000000 \n", + "75% 1.000000 \n", + "max 3.000000 " + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset.describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "features and target" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [], + "source": [ + "y = dataset.price\n", + "X = dataset.drop(\"price\", axis=1)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Data pre-processing" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "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", + "
areabedroomsbathroomsstoriesmainroadguestroombasementhotwaterheatingairconditioningparkingprefareafurnishingstatus
07420423TrueFalseFalseFalseTrue2Truefurnished
18960444TrueFalseFalseFalseTrue3Falsefurnished
29960322TrueFalseTrueFalseFalse2Truesemi-furnished
37500422TrueFalseTrueFalseTrue3Truefurnished
47420412TrueTrueTrueFalseTrue2Falsefurnished
\n", + "
" + ], + "text/plain": [ + " area bedrooms bathrooms stories mainroad guestroom basement \\\n", + "0 7420 4 2 3 True False False \n", + "1 8960 4 4 4 True False False \n", + "2 9960 3 2 2 True False True \n", + "3 7500 4 2 2 True False True \n", + "4 7420 4 1 2 True True True \n", + "\n", + " hotwaterheating airconditioning parking prefarea furnishingstatus \n", + "0 False True 2 True furnished \n", + "1 False True 3 False furnished \n", + "2 False False 2 True semi-furnished \n", + "3 False True 3 True furnished \n", + "4 False True 2 False furnished " + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "for column in [\"mainroad\",\"guestroom\",\"basement\", \"hotwaterheating\",\"airconditioning\", \"prefarea\"]:\n", + " X[column] = X[column] == \"yes\"\n", + "\n", + "X.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(0.5359973457780801)" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAGsCAYAAAAPJKchAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABpAklEQVR4nO3deXgUVbo/8G8nZIc0CZF0QCARQYhB9iUiOmIQhEHUWRRluYzDjAozCDOKXEXkMgqOzoh3QFBcZkYE1DuIKEz8sSnLBFFChBiULQGFJBgCSUjIQrp+f8RqujtV3bV1Vy/fz/PwPKRTXXWqu9P11jnveY9FEAQBRERERCaJMLsBREREFN4YjBAREZGpGIwQERGRqRiMEBERkakYjBAREZGpGIwQERGRqRiMEBERkakYjBAREZGpGIwQERGRqRiMEBERkamCKhjZuXMnxo8fj06dOsFisWDDhg2qnv/MM8/AYrG0+peQkOCbBhMREZFXQRWM1NbWom/fvli+fLmm5//xj39EaWmpy7/MzEz84he/MLilREREpFRQBSN33HEH/vSnP+Huu++W/H1DQwP++Mc/onPnzkhISMDQoUPx6aefOn7ftm1b2Gw2x7/y8nIUFRXhwQcf9NMZEBERkbugCka8mTlzJvLy8rBu3TocPHgQv/jFLzBmzBgcPXpUcvvXX38dPXv2xIgRI/zcUiIiIhKFTDBy6tQpvPXWW3j//fcxYsQIdO/eHX/84x9x00034a233mq1fX19Pd555x32ihAREZmsjdkNMMqhQ4fQ3NyMnj17ujze0NCADh06tNr+gw8+QE1NDaZOneqvJhIREZGEkAlGLl68iMjISOzfvx+RkZEuv2vbtm2r7V9//XX89Kc/RWpqqr+aSERERBJCJhjp378/mpubcfbsWa85IMXFxdixYwc2btzop9YRERGRnKAKRi5evIhjx445fi4uLkZBQQGSk5PRs2dPPPDAA5gyZQr+8pe/oH///vjhhx+wbds23HDDDRg3bpzjeW+++SbS0tJwxx13mHEaRERE5MQiCIJgdiOU+vTTT3Hrrbe2enzq1Kn4+9//jqamJvzpT3/CP//5T5w+fRopKSkYNmwYFi5ciD59+gAA7HY7unXrhilTpuDZZ5/19ykQERGRm6AKRoiIiCj0hMzUXiIiIgpODEaIiIjIVEGRwGq323HmzBm0a9cOFovF7OYQERGRAoIgoKamBp06dUJEhHz/R1AEI2fOnEGXLl3MbgYRERFp8N133+Hqq6+W/X1QBCPt2rUD0HIyiYmJJreGiIiIlKiurkaXLl0c13E5QRGMiEMziYmJDEaIiIiCjLcUCyawEhERkakYjBAREZGpGIwQERGRqRiMEBERkakYjBAREZGpGIwQERGRqRiMEBERkakYjBAREZGpgqLoGRHJa7YL2FdcibM19ejYLhZDMpIRGcE1nIgoeDAYIQpiuYWlWPhREUqr6h2PpVljsWB8JsZkpZnYMiIi5ThMQxSkcgtL8fDqfJdABADKqurx8Op85BaWmtQyIiJ1GIwQBaFmu4CFHxVBkPid+NjCj4rQbJfagogosDAYIQpC+4orW/WIOBMAlFbVY19xpf8aRUSkEYMRoiB0tkY+ENGyHRGRmRiMEAWhju1iDd2OiMhMDEaIgtCQjGSkWWMhN4HXgpZZNUMykv3ZLCIiTRiMEAWhyAgLFozPBIBWAYn484Lxmaw3QkRBgcEIUZAak5WGFZMGwGZ1HYqxWWOxYtIA1hkhoqDBomdEQWxMVhpGZdpYgZWIghqDEaIgFxlhQXb3DmY3g4hIMw7TEBERkakYjBAREZGpGIwQERGRqRiMEBERkakYjBAREZGpGIwQERGRqRiMEBERkakYjBAREZGpGIwQERGRqRiMEBERkakYjBAREZGpGIwQERGRqRiMEBERkakYjBAREZGpGIwQERGRqRiMEBERkakYjBAREZGpGIwQERGRqRiMEBERkanamN0AIgpvzXYB+4orcbamHh3bxWJIRjIiIywhf2wiuoLBCFEICbaLa25hKRZ+VITSqnrHY2nWWCwYn4kxWWkhe2wicmURBEEwuxHeVFdXw2q1oqqqComJiWY3hyggBdvFNbewFA+vzof7F5AYOq2YNMBn7Tbz2EThROn1mzkjRCFAvLg6ByIAUFZVj4dX5yO3sNSklklrtgtY+FFRq2AAgOOxhR8Vodlu/L2SmccmImkMRoiCXDBeXPcVV7YKnJwJAEqr6rGvuDKkjk1E0hiMEAW5YLy4nq2Rb6+W7YLl2EQkjcEIUZALxotrx3axhm4XLMcmImkMRoiCXDBeXIdkJCPNGgu5eT4WtCTfDslIDqljE5E01cHIzp07MX78eHTq1AkWiwUbNmzwuP369esxatQoXHXVVUhMTER2djY++eQTre0lIjfBeHGNjLBgwfhMAGjVbvHnBeMzfTIt2cxjE5E01cFIbW0t+vbti+XLlyvafufOnRg1ahQ2b96M/fv349Zbb8X48eNx4MAB1Y0lotaC9eI6JisNKyYNgM3q2mNjs8b6fGqtmccmotZ01RmxWCz44IMPcNddd6l63vXXX497770XTz/9tKLtWWeEyLtgqzMiYgVWotCl9Prt9wqsdrsdNTU1SE6W7zJuaGhAQ0OD4+fq6mp/NI0oqI3JSsOoTFvQXVwjIyzI7t4h7I5NRFf4PRh58cUXcfHiRfzyl7+U3Wbx4sVYuHChH1tFFBp4cSWiYOTX2TRr1qzBwoUL8d5776Fjx46y282bNw9VVVWOf999950fW0lERET+5LeekXXr1uHXv/413n//feTk5HjcNiYmBjExMX5qGREREZnJLz0ja9euxbRp07B27VqMGzfOH4ckIiKiIKG6Z+TixYs4duyY4+fi4mIUFBQgOTkZXbt2xbx583D69Gn885//BNAyNDN16lS8/PLLGDp0KMrKygAAcXFxsFqtBp0GERERBSvVPSNffvkl+vfvj/79+wMA5syZg/79+zum6ZaWluLUqVOO7V977TVcvnwZM2bMQFpamuPfrFmzDDoFIiIiCma66oz4C+uMEBERBR+l12+uTUNERESmYjBCREREpmIwQkRERKZiMEJERESmYjBCREREpvL72jREZCyuPEtEwY7BCFEQyy0sxcKPilBaVe94LM0aiwXjMzEmK83ElhERKcdhGqIglVtYiodX57sEIgBQVlWPh1fnI7ew1KSWERGpw2CEKAg12wUs/KgIUhULxccWflSEZnvA1zQkImIwQhSM9hVXtuoRcSYAKK2qx77iSv81iohIIwYjREHobI18IKJlOyIiMzEYIQpCHdvFGrodEZGZGIwQBaEhGclIs8ZCbgKvBS2zaoZkJPuzWUREmjAYIQpCkREWLBifCQCtAhLx5wXjM1lvhIiCAoMRoiA1JisNKyYNgM3qOhRjs8ZixaQBrDNCREGDRc+IgtiYrDSMyrSxAisRBTUGI0RBLjLCguzuHcxuBhGRZhymISIiIlMxGCEiIiJTMRghIiIiUzEYISIiIlMxGCEiIiJTcTYNUQhptguc5ktEQYfBCFGIyC0sxcKPilxW802zxmLB+EwWQCOigMZhGqIQkFtYiodX57sEIgBQVlWPh1fnI7ew1KSWERF5x2CEKMg12wUs/KgIgsTvxMcWflSEZrvUFkRE5mMwQhTk9hVXtuoRcSYAKK2qx77iSv81iohIBQYjREHubI18IKJlOyIif2MwQhTkOraL9b6Riu2IiPyNwQhRkBuSkYw0ayzkJvBa0DKrZkhGsj+bRUSkGIMRoiAXGWHBgvGZANAqIBF/XjA+k/VGiChgMRghCgFjstKwYtIA2KyuQzE2ayxWTBrAOiNEFNBY9IwoRIzJSsOoTBsrsBJR0GEwQhRCIiMsyO7ewexmEBGpwmEaIiIiMhWDESIiIjIVgxEiIiIyFYMRIiIiMhWDESIiIjIVgxEiIiIyFYMRIiIiMhWDESIiIjIVi54RkaGa7QKrwBIFiUD5e2UwQkSGyS0sxcKPilBaVe94LM0aiwXjM7k+DlGACaS/Vw7TEJEhcgtL8fDqfJcvNgAoq6rHw6vzkVtYalLLiMhdoP29MhghIt2a7QIWflQEQeJ34mMLPypCs11qCyLyp0D8e2UwQkS67SuubHWH5UwAUFpVj33Flf5rFBFJCsS/V9XByM6dOzF+/Hh06tQJFosFGzZs8PqcTz/9FAMGDEBMTAyuvfZa/P3vf9fQVCIKVGdr5L/YtGxHRL4TiH+vqoOR2tpa9O3bF8uXL1e0fXFxMcaNG4dbb70VBQUFePTRR/HrX/8an3zyierGElFg6tgu1tDtiMh3AvHvVfVsmjvuuAN33HGH4u1XrlyJjIwM/OUvfwEA9O7dG7t378ZLL72E0aNHqz08EQWgIRnJSLPGoqyqXnIc2gLAZm2ZNkhE5grEv1ef54zk5eUhJyfH5bHRo0cjLy9P9jkNDQ2orq52+UdE/tNsF5B3/Bw+LDiNvOPnvCayRUZYsGB8JoCWLzJn4s8Lxmey3ghRAAjEv1efByNlZWVITU11eSw1NRXV1dW4dOmS5HMWL14Mq9Xq+NelSxdfN5OIfpRbWIqbnt+Oiav2Yta6AkxctRc3Pb/d61S/MVlpWDFpAGxW165dmzUWKyYNYJ0RogASaH+vAVn0bN68eZgzZ47j5+rqagYkZJhAqTgYiMTaA+79IGLtAW9fUmOy0jAq08bXlzTh36Z/BdLfq8+DEZvNhvLycpfHysvLkZiYiLi4OMnnxMTEICYmxtdNozAUSBUHA4232gMWtNQeGJVp8/hlFRlhQXb3Dr5qJoUo/m2aI1D+Xn0+TJOdnY1t27a5PLZlyxZkZ2f7+tBELgKt4mCgCcTaAxQe+LdJqoORixcvoqCgAAUFBQBapu4WFBTg1KlTAFqGWKZMmeLY/qGHHsKJEyfw+OOP45tvvsErr7yC9957D7NnzzbmDIgUCMSKg4EmEGsPUOjj3yYBGoKRL7/8Ev3790f//v0BAHPmzEH//v3x9NNPAwBKS0sdgQkAZGRkYNOmTdiyZQv69u2Lv/zlL3j99dc5rZf8Ss1dv9qZJKEiEGsPUOhjjxwBGnJGfvKTn0AQ5L+cpaqr/uQnP8GBAwfUHorIMErv5rcUlWHOewVhOW4diLUHKPSxR44Ark1DYULp3fybe0rCdtw6EGsPUOhjjxwBDEYoTIh3/Z4uo3LX2HAatw602gMU+rz9bVrQ0jvJHrnQFpB1RoiMJt71P7w6HxbAZRhC/NlTnOE8bh0I0+B8KZBqD1Do8/a3CbBHLhywZ4TChqe7/geHpyvaR7iMW4u1Byb064zs7h14ISCfYo8csWeEworcXf++4kq8safE6/M5bk3kG+yRC28MRijsSFUc5EwSIvMFSjVQ8j8O0xCBM0mIiMzEYIToRxy3JiIyB4dpiJxw3JqIyP8YjBC5MWLcmkuhExEpx2CEyGBcCp2ISB3mjIS4cF30zSzBsBQ6PxNEFGjYMxLCeIfuX96WQregpaT8qEybaUM2/EwQUSBiz0iICoY79FAT6Euh8zNBRIGKwUgI8naHDoTHom/+FshLofMzQUSBjMFICAr0O/RApzWnIpCXQudngogCGXNGQlAg36EHOj05Fd5KygNAhAU4X9toYIuV4WeCiAIZe0ZCUCDfoQcyvTkVziXl5dgFYMYa/+dn8DNBRIGMwUgIEu/Q5eZrWNByt89F364wKqdiTFYalt/fH94my/g7P4OfCSIKZAxGQhAXfVPPyJyKpIQYeIozzMjP8MdngvVLiEgr5oyEKHHRN/f8BxtrSkgyMqciUPMzfPmZYP0SItKDwUgIC6RF3wJ9rRYjcyoCOT/DF58JMdfGvR9EzLXhisdE5A2DkRBnxKJvegXDXbO3mTAWtPQgyOVUOAdbKW1jYEuMQXl1g6Z9+ZqRn4lgqDpLRIGPwQj5VLDcNYs5FQ+vzocFcGmvt5wKqWCrfXyU42KsZl/BRk2ujdlBMREFLiawks8EW9VPMafCZnUdPrFZY2WDJrnpwFV1TQAAa3yU4n0Fo0DNjyGi4MKeEdJNLh8kGO+a1eRUKBmiiIuKxPIHB6CitiEgc2X0CuT8GCIKHgxGSBdP+SANl+2K9hFod81KcyqUBlsRERZM6NfZwBYGDr25NkREAIdpSAdvFUtLKuoU7SdY75r9NUQRyPU7WNOGiIzAnhHSRMkQxbovTiG1XTTKa6TXYgn2u2Z/DFGYMRNJ7TRs1rQhIr0YjJAmSoco2sZIf8RC4a7Z10MUZsxE0hr8BFJNGyIKPhymIU2UDj1cbLgs+bg1PiroZ5X4cojCjJlIRiwUmN29Ayb064zs7h1kk34DdciJiMzDnhHSRG+eR1xUJEZl2gxqjXnkhihSE2MwcUhXNFy2I+/4OdW9BP6eieSP4mXBUPyOiMzBYIQ08TZE4U2gTenVw32IoqSiDmv3ncJLW486tlF70fV3/Q5fBz/BUvyOiMzBYRrSxNMQhVKBNqVXpGUoQRyiiGkTgaVbj6CsWttQh8jf9Tt8GfwEW/E7IvI/9oyQZnJDFMkJUaisbfL6/ECc0qtnKMHIoQ5/1+/wZfATjMXviMi/GIyQLlKzKAZ2S8ItL+wwtRCWllWC9Q4lGHHRdW73fYO74KWtRxWvb6NnZeSB3ZI8BpF63jOWjCcibxiMkG5SFUu1LjpnBC29G0b0aui96MotuAcAF+quBAlS9Tv09OiIz/UUiADa3zOlvSlKi+QRUehhzgj5hJZF54ygdXqqml4NOXqGOjwtuFdV14TZOT3x8n39sHb6MOyeO7JVIKJ1Sq7cc53pfc/EISdvYczSrUcU59QQUWhhzwj5jNpF5/QWzNLTu2HEUILWPA+l1Wx3zx3Zqt16ztnTc0UdEqLx2WO3IrqN9vsWMdn5odX5XrfVO32YiIITe0bIp5QUwsotLMVNz2/HxFV7MWtdASau2oubnt+u+i5ZT++GEQmcWoug6Wm3L58LAOdqG7H/5HmP2ygxJisNs3N6eNxGSe8TEYUmBiNkKr1VP53p6d3wNpRgQUsOhrcETi3DU3rabdZztUhPSfDr8YgoeHCYhkxjdNVPPb0bnoYS1CZwql2nRU+7zXquFv4+HhEFD/aMkGmMSBp1ZkTvhjh7xZmWdXSUDE8Z0W6znquFv49HRMGDwQiZxuhhAj0L14nDRc5TaEVVEo8ZQaz0+vHBM7hvcBdHb5Azb+3Wc86+XOhPir+PR0TBg8EImcYX3fZacjaUzCrxxQq5zkm7L209ivbxUUiMcx05TU2M8doro2catb+nYJs15ZuIAhtzRsg0vip5rjZnw9/lyuUqvUr1yihd+WdMVhpG9krF23klOFlZh27J8Zicna5oSq7a10svfx+PiAIfgxEyjdht74tKrVJVYeX4c1aJkl4YZ+XVykrRS1VgfX13seKVgtW8Xkbw9/GIKLBxmIZMFQjd9v6c5aGktoczJavaGjk92ixaVkomotChqWdk+fLleOGFF1BWVoa+ffvib3/7G4YMGSK7/dKlS7FixQqcOnUKKSkp+PnPf47FixcjNpZT+Mj8bntvw0WAcbM8tPSueBomMnp6tBn0rKtDRKFBdc/Iu+++izlz5mDBggXIz89H3759MXr0aJw9e1Zy+zVr1uCJJ57AggULcPjwYbzxxht499138d///d+6G0+hQ81UWF8cW5zlIefOvmmGtElP74pUIGP09Gh/C4VeHSLST3Uw8te//hXTp0/HtGnTkJmZiZUrVyI+Ph5vvvmm5Pb/+c9/MHz4cNx///1IT0/H7bffjokTJ2Lfvn26G09klDFZafjNzRmyv391Z7GqC6PcsIPSReOkSAUy/q6iaiRvvTqA8bOYiCgwqQpGGhsbsX//fuTk5FzZQUQEcnJykJeXJ/mcG2+8Efv373cEHydOnMDmzZsxduxY2eM0NDSgurra5R+RLzXbBbz75fcet3li/aFWF0apoMPTWjueam3I8VQMLJirmgZ7rw4RGUdVzkhFRQWam5uRmprq8nhqaiq++eYbyefcf//9qKiowE033QRBEHD58mU89NBDHodpFi9ejIULF6ppGpEue4+fk5lae8WFuibsPX4Ow3ukAJDOdWgfHyW5H3HYQUzKXTFpQKvnSvE2q8hX06P9IZh7dYjIWD6fTfPpp5/iueeewyuvvIL8/HysX78emzZtwqJFi2SfM2/ePFRVVTn+fffdd75uJoW5vBMVqraTy3WQC2jchx3GZKVh99yRWDt9GF6+rx/WTh+GV+4fgDSVs4qCuappMPfqEJGxVPWMpKSkIDIyEuXl5S6Pl5eXw2azST5n/vz5mDx5Mn79618DAPr06YPa2lr85je/wZNPPomIiNbxUExMDGJiYtQ0jUgn5YMmamuFiNxnxUjV2hidpX5WkVxPiy3AZ6QEc68OERlLVTASHR2NgQMHYtu2bbjrrrsAAHa7Hdu2bcPMmTMln1NXV9cq4IiMjAQACAIT0ygwZHfvgGU7jinaTm2tEHeehh20FgMze3q0Fr4sekdEwUV1nZE5c+Zg6tSpGDRoEIYMGYKlS5eitrYW06ZNAwBMmTIFnTt3xuLFiwEA48ePx1//+lf0798fQ4cOxbFjxzB//nyMHz/eEZQQmW3YNR1k8z1ESfFRGHZNB3x88IyuY/lq2CEYq5oGa68OERlLdTBy77334ocffsDTTz+NsrIy9OvXD7m5uY6k1lOnTrn0hDz11FOwWCx46qmncPr0aVx11VUYP348nn32WePOgkinyAgL7h10NV7dWSy7zS8HXY3ICIvmYILDDtKCsVeHiIxlEYJgrKS6uhpWqxVVVVVITEw0uzkUgprtAm56frvH4Zc0ayx2zx0JALjp+e0eK7bKWcmVaYkojCi9fnNtGiIoWzNGTD7VUisEAGbn9GAgQkQkgcEIEdTXvJBb4M+T9JQETW0jIgp1DEaIoK3mhVgrZP643oqeW1HTwNLmREQSGIwQAejXpb2m7SIjLPiv4RmK1ptZtOmwoyw8ERFdwWCEdJFbEC7YrN5bonk7NTkkXI2WiKg11VN7iURSa7OkBWl9iC9KzivebvrNLf9vtgsu01GX398fizYd9rr4mwUtZeFHZdoMm77aeNmOt/NKcLKyDt2S4zE5Ox3RbXivQUTBgcEIaSKuzeLeD+K+IFywSIhWVoBP3E4uEJs/LhOlVZewaNNh2X24l4XXa/HmIqzaVQznTqlnNx/G9BEZmDc2U/f+iYh8jbdOpJqntVncF4Qz+ri+GhK6Z8DVireTWySvrKoeM9bk4/SFS4r2ZcRqtIs3F+HVna6BCADYBeDVncVYvLlI9zEo8ITK8CiRiD0jpJq3mhxG3/kDvh8SuvHaFCRER6K2sVl2m4SYSAy9pgNueWGHbCBmAfBhgbJy8XrLwjdetmPVLvmKsQCwalcx/nB7Lw7ZhJBQGh4lEvEbilRTW5NDL089EUYlg0ZGWNC9o+c6IN2vSsD+k+e9BmLnahuRnBAlm8xqQcvFQ29Z+LfzSlr1iLizCy3bUWjwx98CkRkYjJBqWmpyaOWvIaFLjc04+H21x20Ofl+N7ytrFe3v7n6dAbSeXWPkarQnK+sM3c5MHHbwzqzhUSJ/4DANqTYkIxlp1ljZtVmMXBDOX0NCzynMrfh/ReWKtsvJtGFwRrJPV6PtlhyvaLsuSXHIO34uYBeh47CDMmYMjxL5C4MRUk2sq/Hw6nxYAJeAxMg7f8B/Q0Il55T1HlxqsisOxCIjLD5djXZydjqe3XzY41CNBcAbu0tQVh2YF/pQm5XlS/4eHiXyJw7TkCZya7PYrLGGXkD8NSSU3kFZL0NGSrxsgTOpQCwywoLs7h0woV9nZHfvYGiPRHSbCEwfkeFxGwFwCUSAwMkv4LCDOv4cHiXyN/aMkGZjstJ8eucP+G9IaO6Y3nh77ylF27WNbYMVkwb4dAhGKbGOiHudEQuAeJnZQb4qvKYWhx3U8efwKJG/MRghXcQ7f1/u3x9DQodOVynebkhGMqxx0Xh8TC9UXmxAckI0bNY403Ix5o3NxB9u7+VSgbVnajtMfnOf7HPMvtA32wXsOfaDom057NDCn8OjRP7GYIQCnjgk5MueiLIqZYXK/t/XpZjzXoFLO5ITohyzZ8wKSKLbRODBEdc4fv6w4LSi55lxoZdKWPWEww5X+ONvgcgMDEYoKPh6SKiytlHRdm/956TEc5vwxp4SvLGnJGCSQwM1v0AuYVVKuA47uK955P4598fwKJG/MRihoOHLIaHktjGG7CdQZoEEYn6Bp4RVd+E67KB0mrOvh0eJ/I2zaYgA2BKN6SEIlFkgYn4B4NvCa2p4S1h1ZvSsrGDA6qosfhfO2DNChCs9CUovlp6YnRwqkssvSEqIwp8mZPn9Qq80P2Xmrddi9qieYdUj4m2acyDMfvI1Fr8Lb+wZIcKVngQjv+YDYRbImKw0zB+XieSEaMdjlbVNWLTpsN/vtJXmpwy/NiVkL7hy1ExzDkXsFSIGI0Q/GpOVht/cnAH362CEBZg+IgNp1lhVwUogzALJLSzFjDX5rRJ0zfiSH9gtqdVr6y7C0rJduAnn6qosfkcAgxHyINzGb3MLS/HazuJW5dUFAXh9VzHu7Kusq9ioVXn1CrQv+f0nzytaZXj/yfN+aU8gMXv2k5l/6+HeK0QtmDNCksJt/FbJmP3Gr0qx/P7+WLTpsOyXZyDNAgm0CqfhfPfvjZmzn8z+W+fnggD2jJCEQBm/9efdmtILd1JCDHbPHYm104fhV8PTXXIxgMCaBRJoX/Jm3/0HMrNmPwXC3zo/FwSwZ4TcBEpWv7/v1tRcuMUaD9ndO+DJcZkei095K2DlS4H2JR+ItU8Cib+rqwbK3zo/FwQwGCE3arr2h2Qk++RC68tl5eWCg5QEZUXP3LcTAxNxvx8fPNOyjQXYfrgcHxScRmVtk2N7f3Z/B9qXPNdW8c6f1VUDZRiPnwsCGIyQG6U9BFuKylqt0WLEhdaXd2ueelvaxUYp24nEIdWsteLPCq2B+CUfimurGN375a/qqoE0jBeKnwtSh8EIuVDaZf/mnpJWjxlxofXV3Zq33pZpw9MV7afiYoOi/crxdwGrQPySD6W1VcxO/tQj0IbxQulzQeoxGCEXQzKS0T6uDS5cuqz6uUZcaH1xt6akt2XDAWWr3DoP06hZa8X9mP6cxRKIX/KhsLaKL4cT/SHQhvGA0PhckDacTRPmpGasXLZr35/emgC+uFtT0ttSWdck+3tnduHK17aatVak+HOqovglP6FfZ2R376ApEAm3ujOeBFoNFy0Ccf0iCl/sGQljUl3MyQnRuNigvlfEndYLrS/u1oy86OedqMCInlcZst+SijojmuSXGTvBPBzhC4GS/KlXIA7jUXhiMBKm5LqY3cuGa6V1nFm8W3todX6r32m9WzNyzPvMhStf2Hr3u3TrEVxna6vrC98fQYLa4QgzpzP7SyAlf+oViMN4FH4YjIQhrbkOSqjtuZC6cAFA+/goXHAbOrHGR2HJPX1UX2SV9LbER0eitrHZ6746J8Up3q83AoBnNn6tOb/GHzkLamc3hUsPSqAlf+rFXA0yG3NGwpDeXAeR3nHm3MJS3PT8dkxctRez1hVg4qq9GPinLXhodX6rQAQAqhTmdbhTMjY+fUSGon3d2D1F0X6VKqtuwLLtx1Q/z185C2qGIwKhmqe/iIGo3PseKOsTEQULBiNhSG/X8fgbbFg5aQBsVte7PjWl0OUuXFJBiDOtF1hxbFyuzb+7rSfax3uuNZIUH4Vh17jePcrtV42Xth5RfaH21+JiSj8rZVWXgj6hUw0mfxIZi8M0YUhv13G3DgkYlWnTPM5s1pRYb2PjS+7pI5mrIlp8Tx/J8xuVaUO72CjkHT8HQMDQ9A6IiLQg73gFlu04rqht3qZDuw9nlVVdUrRfvYGn0s9KZW2jroTOYMwzYfInkXEYjIQhvbkOy3Ycx7/yT2v+wjVzSqynsfExWWn47c0ZeG1ncatqpb+5OUPyXKVyJP5lbXltMtOsiLAASjoDPF2o5WY9KaE38FQ6uym5rbJy+lLvXTDnmTD5k8gYHKYJQ4bkOujIA/DH3bqWmhi5haV41S0QAVru6l/dWdzqXD3lSDy0Oh+PrMlXFIiI5C7UUsc472XWk1E5C0qHI2yJ2hI6QyHPxIgaLkThjsFImJLLdRDzJrx9nerJA9B6t670AptbWIobF291SYy9cfFWjxe2ZruAJ9Yf8rjfJ9YfcpyrkgRStdxfF63HMDpnwVu+zZisNE0JnaFQOIyIjMFhmjAm18W8pahM0cJvWvMAtAwTKb3Abj54Bo+sOdDq8fKaRjy0Oh8rZRJs9x4/5zV59kJdE/YeP4fhPVIMm5EEyE+HVnqM5IQol5WBfZGz4G04QsuifKFSOIyI9GMwEuakcijEC89LW45g2Q7v00615AF4unAJaF1nRMkFdvPBUsyQCESczXnvK8lE0bwTFR6f57zd8B4p2FJUpmh7bzwFWUqHs+b/9HrYEmN9nrPgrRaF2oTOUCocRkT6MBgJcr6ahRAZYcHwa1MUBSMVNQ34sOC0S8+KkmJcni5capMCcwtL8cga+ZkworrGZvznaAVGXHeV22+UvmYWNNsFbCg4o3B7zzwFWUqHs2yJsab0HEh99tQkdPqqcFgwzswhCncMRoKYr2chKBlOibAAizYddvxsS4xF/eVmRRU7vV24lF5gxdwDpf514PtWwUh29w6KAq/s7h2wr7jSkLL5M37SHXNuv072QhmIq6qKvH32lLx3vji/YJ6ZQxTOmMAapPwxC0HJrBv33MKy6nqPuRfuxbiMmImgNn+jTqLs+7BrOiguembUsEFyQjQ+PngGe45WYM+xilYzf/xdWEvpDCSjPntGn18ozMwhClfsGQlCatcL0UNuOEVp/Qw5RuYBqN3X4PTWd9qRERbFRc+MWm/EuUfJmfOdvL8KayntUTD6s2fU+fnzb4KIjKcpGFm+fDleeOEFlJWVoW/fvvjb3/6GIUOGyG5/4cIFPPnkk1i/fj0qKyvRrVs3LF26FGPHjtXc8HBmxCwENePq7sMpFTUNshdSpYxcQEzNviwWYOqN6ZK/G5OVhpWTBuCZjUUoq5a/KA/sltRqBouRSn+sU/Lg8HTk/FjpdlSmDXuPn/sx0daCoRnJiIiwuOTqaL3IqllwzxczYIwoHMaZORRuQi03SnUw8u6772LOnDlYuXIlhg4diqVLl2L06NH49ttv0bFjx1bbNzY2YtSoUejYsSP+7//+D507d8bJkyfRvn17I9oflvTOQtAyru48k+LDgtMqW3yFL/Ic1EwV/s2IDES3kR+d9HZhFF87XwUizt7YU4I39pQgzRqLO/umYeNXpY73bNkO12215kWo7VHw1QwYvavGcmYOhZNQzI1SnTPy17/+FdOnT8e0adOQmZmJlStXIj4+Hm+++abk9m+++SYqKyuxYcMGDB8+HOnp6bjlllvQt29f3Y0PV3pmIRgxrq6naBlg/AJiSnJbLAB+e3MG5o3NVLQ/qTwWudfO10qr6vHqzmKPx9WaF6F2wT1fzYDRK1DbRWS0UM2NUhWMNDY2Yv/+/cjJybmyg4gI5OTkIC8vT/I5GzduRHZ2NmbMmIHU1FRkZWXhueeeQ3Nz6yRCUUNDA6qrq13+0RValy83quKlkuMnxUfBlui6XonUqr5ayrZLkasSGh1pwc09UlD0P2MUBSJytC7u5y9aK5aq7VHQ+tnztUBtl68Y9XdDwSWUqxarGqapqKhAc3MzUlNTXR5PTU3FN998I/mcEydOYPv27XjggQewefNmHDt2DI888giampqwYMECyecsXrwYCxcuVNO0sKKl2iVg3Li6kuMvvqeP1zyA3MJSPLPxa5RVNzgesyXG4Jk7r5ftavQ0TioOsSzbfgxv7SnGhUtNaGwWsPNoBUb+5VPJLkyl465GVlz1FS15EWp7FLR+9nwtUNvlC6HYRU/KhHJulM9n09jtdnTs2BGvvfYaIiMjMXDgQJw+fRovvPCCbDAyb948zJkzx/FzdXU1unTp4uumBhUtsxCMHFdXeny5P4jcwlLJmStl1Q2yZduVfAlvKSrD0q1HFCVjyu1v/rjeSEqIcQlQginXQE1btdT68NcMH7UCtV1GUpNsTKEnlHOjVAUjKSkpiIyMRHl5ucvj5eXlsNlsks9JS0tDVFQUIiMjHY/17t0bZWVlaGxsRHR066XQY2JiEBOjbEnycKZ2FoLR4+pqjy/2QpRV1+OpDZ4XpZv7r4NoFxuFiosN6NguFudrGzBjzQHZL+Hl9/eHNT4aT/zrkKJkzC1FZZLBUGlVfau1bdKssbhvcFeP7VXL/e7dSGryIrT2KBgxA8YXArVdRuD0ZQrl3ChVwUh0dDQGDhyIbdu24a677gLQ0vOxbds2zJw5U/I5w4cPx5o1a2C32xER0ZKicuTIEaSlpUkGIqSOmlkIvqh4qfT4Ur0QnlRduowHXv/c8XOERfriLT42c+0Br3VPxC7MvcfPeV2h11lZVT2Wbj2C9vFRqKpr0hVEWOPaYPHdfbBo02HDh320zlTS2qOgdwaMrwRqu/QK5S56UiaQqzLrpXqYZs6cOZg6dSoGDRqEIUOGYOnSpaitrcW0adMAAFOmTEHnzp2xePFiAMDDDz+MZcuWYdasWfjd736Ho0eP4rnnnsPvf/97Y8+EvDJrXF2ua1kNb4GGmnyt1Z+XeF2h15l412lx+r/Wc/nV8AyMvaETRmelOe7ek+OiMeu9Al0l5vW+f6HcoxAqQrmLnpQJ5dwo1cHIvffeix9++AFPP/00ysrK0K9fP+Tm5jqSWk+dOuXoAQGALl264JNPPsHs2bNxww03oHPnzpg1axbmzp1r3FmQYv4eVw/EWSi7jipbodeZAOB8XRNm5/TA2n2nXJJulWobE4muHRKQd/wchmQkO+5e846f073WjRHvX6j2KISKUO6iJ+VCNTfKIghCIF0nJFVXV8NqtaKqqgqJiYlmNyck+Kt6X97xc5i4aq/h+9XCAiBJZ+XUl+/rh5S2MS5DSFo4J95+WHAas9YVqN7Ho7f1QMZVCezFMFnjZTvezivByco6dEuOx+TsdI+F9bRqtgu46fntXrvod88dyc9CGAiWCqxKr99cmyZM+eIuWOqPI5C6jAUAd/frjDf2lGjeR8d2sYack/PsB7V3spzGGTgWby7Cql3FLsOEz24+jOkjlBXYUyOUu+hJvVDryWQwQoaQmyZr9CwUvRLjtCVNOyeGidVI9XCe/fDZY7d6TUpLTojGU+N6w2aNC9g7oHCzeHMRXt1Z3OpxuwDH40YHJKHaRU/EYZoQoKa7zhdde3IJquJerfFRqhJGfUUMKARBQHl1g+o8ltk5PTBzZA802wX0mv9vXasWO3vnwaH48mQlXtp6tNXvxNeQ9SMCS+Nlu9fPQIQF+GbRHT4bsgmGLnoiDtMEGa1fLmqqMfqicqOS2geB8hUpTn2cndMDS7celZ0V014meHpp61Gs++I73De4q2GBCADMWJOPC5ekgzV/3fHy4qbO23klimZ4vZ1XggdHXGP48UOti56IwUgAUBskiBeOrUVlkvkPctVGfVG5UUntg/N1TRiblYrNheWy2/lTekqCZFe3+JqLJeVf2nqk1XNLq+olH9dDLhCZndMTM0de6/OggOXF1TtZWWfodkThjsGIydQGCUqKh7lXY8SP//dF5UalyZzXXNUOQGAEIx3bxSK7ewfZuhrNdgHrvjhlahstANZ9cQozR17r0+OwvLg23ZLjDd2OKNwZP5hJiqldgVHNEvbO1RjVLhOvhtKZINndO3hcVdUf3FduFbu6J/TrjOzuHRyBWCAsiqfnPVEqlFcA9bXJ2enwFrdHWFq2IyLvGIyYSE2QoLV42Nmaep9WblS6dPuwazpgwfhMx2N6iftoHx+laH9qpj6WVV3S0zRD+XJqtC+D1FAX3SYC00dkeNxm+ogMnySvEoUi/qWYSE2QoPVuvWO7WJ9WbhRrHwCtgwz3AECclmizyh8nzRqL396cgTS3bdzjB5s1FisnDcCSe/pIHtudzRqreMhBbzVUI/mimmazXUDe8XP4d2Gpou0DqVZMIJk3NhO/vTmj1WczwgL89mbj64wQhTLmjJhITZCg9oLgvmCSLxdXUlL7QEy6bbhsx4u/6AsIQEVtA1Laxjj+75y38fiY3i75HAO7JWH/yfOSsz3kklHvG9wV6SnxqmeHJLcNjBWj03yw4JXaBQsBlhf3ZN7YTPzh9l5+qcBKFMoYjJhIzQqMarrKpYYkPFVuFADcN7gLPj54RtWF23066GeP3SoZMHiarTH82hTJfUtNXXT/WS7AcQ9e1LIlBsbFd/643oZOt1W7YKG3INX9/fcUMAYCrdOXvT0vuk2ET6bvEoUTFj0zmXiBAKTLO4tDC97WpXCmps5I+/goAHCpq6FkWqeS6aDNdgHLth/1STEvT8cHoGuqarNdwMA/bTG1UNtPb0jD/pPnXc4hOSEKd/frjJxMm+oLvfj5Udoj4u39kXr9IyyuqycH0vRgrdOXOe2ZSB+l128GIwFA6Reetzvbkb2uwvQR3RVXYC2pqMPSrUdkK6d6uhB5qri6YtIAAMAzG4tQVi1/8dO6sJen48u9NmqCn9zCUjz0Y4BohvbxUaiqa/IYdKq9IKpdsNDT/pX2sARK9Vgln1etn3MGJESeMRgJMkq7kOXWwwBaviRXTBogWz/D/Xie7pTlAgUlz7MquJg6Wzt9mOJqkmrv8N3b5i34Ubt/W2IM6i/bVZ2vp/YJkK8A674toPyCqHRl4BE9UvCTnlfJ5j1o6WExcyVZX37OuUIukXcsBx9k5Mo7Oy9P3iUpHhsOnPa4nyfWH2rVIyF1l6tmWqdzu5Q8T+3whpq8Dj01QOTOScv+Z97aHcOvvQpDMpKxpajMMdSmh80ai/sGd5Ec1nKntlid0iTUXUcrsOtoBV7fXSzZM6L29VfymvuSLz/nZp0XS/dTKGIwEsCklif35Eog4BoMSFXT1Fp7xBfTPNXM1jDi+HuO/SD7Ra50/z1S2zkuQuJsoif+dUi2tLsUqRk/Hx88o/j5ai6I3pKl3clVYNX6+ps1PdjXn3N/nxdzWChUMRgJUJ6GY9QSLz5P/OsQ2sVGYdg1HTTXHjFymqcFQGpiDOyCgA8LTiu6yzPi+Mt2HHf83/2LXOn+Sypc1xwZk5WGdrFReOD1z70+17lXxf1ctZyf3AXR/Q56/rjemLHmgMfcGpFcz4vW19+s6cG+/px72s7oHgyW7qdQxmAkADVetmPVLmMCEWcXLjXhgdc/R5o1FvPHZWqqPaL2DtsTAUD9ZbvLBdzbXZ6Rxwdaf5EPyUiGLTEGZdUNHp8nrhvjfHEZdk0Hr22LsACZaVbZngwt5yd1QZS7g/7NzRnY+FWpqiUF/r6nGCntYhzTd9W0T28NG73UTJ834nkio3swlKyOrXV9KaJAwMo8AUKsivlhwWks+vhrQ5eod1dWVY8Za/JxZ9+WL0VvlVOdKam4mhAT6bUN7eNa4mD3/BIxOMiVqQ6q5PhSv5PjvgZLZIQFE4d09fo8qTLpzm2TYxeAGWuUnZ837mvtiOTWMCqtqserO4vx5B29sXb6MEzJ7qboOIs2HcasdQWYuGovbnlhh+znRqp9gLIS/L6ipkKwEc8D5F9/b59tT1i6n0Idg5EAkFtYipue346Jq/Zi1roCvL3XtyvGihfgjV+VYvn9/VuVZ/dWOl2urLs1Pgrt46NQ29Ds8fizbuuB2CjpTjklC7TJHV8sEb/SS8l5qWOWVtVj7/FzyDt+DucUloOXGh4Zk5WG5ff397qImpLzcy+J70zugqhkDaPfv3sA52sbcYeGO/Syqnq8trMYv7k5o9VrLFWyPxCGDjx9XrR8zj09z1eLDwZqDguRUThMYzK1VTHlqJ1iKl6AkxJisHvuSEVTgfceP4e8ExUt00/jovHH26/DhbpGJCdE41TlJcmaJc5S20Xj/qHd0NQseKw/IjU84N6mMVlpLlOYUxJiAAtQcbGhVTXYo+UXsWzHMa+vySPv7EdV/WWv24kqahokc12SEmI89mw5Bz/De0hXoHU+vy1FZdhQcMZlzRybTJe/ktkudgF4ZE0+Xrl/gOohIXFIYONXpa0q7gZyBVb3z4vS9ql9nq9m4fhyfSl/4Swg8oTBiIm0rsQLtNyF/uO/hqDyUqPjD3tLUZnqYl1na+plpxWLcgtL8cT6Q7JTdm2JsbjUdNnrefxwsVHRtFXRok2HHf+XGm8X251bWIo//t9XkuPzE/p1Rt7xc4qCETWBSIRFvn1K705nrMnHkp/1kb0zF88vu3sHPDkuU9EXuZo740WbilQltYrEC+r+k+e9luwPJN4+50Y8z1c9GHpzWMzGWUDkDYdpTKSnZsZtvTtixHVXYUK/zsju3kHzHYa3OymxGqmn2iFl1fWouuT9Qq4nD0ZuvF3J+Lz4RW7kPZj7uTgfT+nd6YVLTXhodT5e3noEHxacRt7xc7Ld9+IF0dv7rebOWOwZ87aSshwOCbTmqx4MPTksZvNFDg2FHgYjJtLzZX7o+yqXC5fYy6KUXPKjs2a7gGc2fq25jUaSGm9XOj4PQHFSqDdy3/XOxxNnnCi9LLy09agjQXT4km2KghM5YuCl1NmaeozJSsPuuSOxdvowvHxfP8wf11vRcwN5SMAs3gJfJX93crTmvpjJVzk0FHo4TGMiPV/mZdUNLuPOanpZlN5J7Suu9DrF1Z/cx9vVjM+LX+T//cEhVNZqXwBPSS7I/247qriSqruy6gaX56ntyhbvoJUO14mfQeehiM0HS1steufMX0MCgZBjoLYN4usvt0I2oK8HQ2vui1kCuZItBRYGIybSWzPDuWdFTS+LXPKjp/0HErFdasfnx2Sl4VKTHbPfLfBV0wDAkZ/SPj4KjZftqGv0PLvIEy0FrcZkpeGV+/tj5toDqgOK3MJSzFjjPaHa10MCgZBjoLUNYuDr/lylf3feaM19MQNnAZFSDEZM5OkuSgnnnhWlvSxPju2FzE5WVFxsQN7xcx7vqgK1G/5o+UXkHT/XMoNGAefzsCX675yMWDxPa0GrsTd0wjJY8Mia1j0keqYFR1iAZRP7+zQgMKrSqJ6eFb1tCLYeDF8JhVlA5B8MRkwmdxfljS0xxuWudmC3JI9d60DLReiN3SUu02qTE6Jwd7/OyMm0tfqyVFqN1N+W7TiGZTuOwZYY63WFW/fxeaMruHoiBhIWL++Lkv1o6coee0MaVkYov0NXOi04SWEQqIVRlUb19KwY1YZg6sHwlWCfBUT+w2AkADjfRZVVXcKeY+fwf/nfe3zOM3de7/JFuP/kea8XPAFoVd+jsrYJb+wpwRt7SmBLjMHEIV2RnpLguJN75s7rVU8X9pfyau8BxZ190xyvk3inPDbLhjf2lPi8fUDLay782EgtvV/OtHRlq7lDD4QudSNyDPT2ajDPwTi+zqGh0MFgJEBERlhQdakRf/7kW49fhO3jo7Dknta1KYy4QLgnT4rBybQbu+Gt/5zUvX+jKbmwb/yqFI+P6Y0tRWWt7pTde5K89SwBgDW2jap6JKIHh6djc2GZ5qncgPaubKV36IHQpa43IDKiVyMQgrJQ4uscGgoNDEb8xNv4tbdKrHdkpWLS0HQMk6kx4YsLhHtwopd4Z/Sr4emwxkV7rdhqhNKqeizbfkzyWGKPxa+Gp6Nz+ziXImZyRmWm4v/yT6tuR06mDf/tVLispKIOS7ceaWmHl+f6qytbbZe6L2a76A2IjOjVCISgLNQwh4a8YTDiB97Gr70lDloAFHxXhWX3yxe78mcuhFbinem/C8uwe+5IXGdr67W3wghv7Sn2eKf878IyPD76OkX7Gt7jKuw5fk7TqrXuPRRS5y/1fMA/XdlqutR9NdtFb46B0t6KPcd+kL0oMs/BN5hDQ55YBEEI1GuXQ3V1NaxWK6qqqpCYmGh2c1SR6/EQv/pWTBoAa1w0Jq7a63Vfa6cPQ3b3DrJ3pEatc+MPUudSUdOgqHfCF54c2wvPbv7G63Zrpw9D1aVGPPxjHo2n19r5PZa7QDuff0lFHdbuO+WS12NGyWy5QGP+uN5ISojB1qIyyZwbJeer9PhSr6+S/ecdP6fob8mZ1Guspw1EdIXS6zeDER9qtgu46fntsne+4h3W46Ovw+z3vvK6v5fv64eYNhEe70gXby7CqzuLjToFn3n5vn6Y0K+zy2Mf5H+v6HVQQ2mOhzUuClWX5GfliO/V7rkjHYGfp/V6AG2BRCAU+pJqx/naRiza5H3Gl/vrpJXWnhfxb05ND6FcgBEItU6Igp3S6zeHaXxI6fh1pcIl68U8A7lZAsvvH4CNXwXHOg/u4+3NdgH7T1YafhylOR7eAhGg9VBJlYdAZHZOT8wcea3qC3KgdGU7t0NpITTAuJkmWnMMtNTukUtsZZ4Dkf9wbRofUjp+ndw2xut6IrbEGKzdd8rjGg/zPyzUNVvDXyIsLXVRRLmFpRj4py1Y/fl3hh9reI+rdC+Sl5oY43LXrCTHZ90Xp3QcMXBoXVnaiJkmShcHdCe3hosnzkGUEW0gInUYjMhotgvIO35O84JlgPJse1tiLO7s67nbd1B6cqsaIc4EAOcU9rD4wuycnooXWbMLLXVRAGWrAru7q18nxdvaEmNlVztV6i+/7OfSLa+0x2vv8XMajxg4tK4sbfZME/fF/2beeq2i53G6LpE5OEwjwaixYqVZ+QO7JWHOewUe97X7WIXi4/qTWB587A2d0GwX8NKWbxU972xN/Y+rAitfaRhoeR/+/PO+2HvinNfKsGlOs1ik6hy0j4vCBQ/DM6KKi67HUXrBmrEmH0t+1romTDBRe3EOpJkmzkNNecfPOdYM8sRbEBUoOT1EoYbBiBs11Ru9fTEpnSq5/+R5r3efSnsOkhOidK1Kq9ayiQMw9oY0bD54Bk99WKj42B3bxf64KrC6i938cb0R3SZCUWVY5xwPqfF/uyDggdc/V9RWTz/LuXCpSfUid76m9mKqpocjkCtqGjFdlwmtRL7DYMSJmuqNUhU9pb6YlFQf/LBAWRGt9j/O+PD0ZfrTG9Kwapd/ZtMkxUdhdJZN9QweMWfk34Xqk23FdVHGZKVh5aQBkjNakuKjsFiiSq17cmizXdB0gRIvbEqHL57Z+DXaxUah4mKDqXfTWi6maurXBHJFTb1lyY1avI+IpDEYcaI0F2DZ9mN46cfqmc5Kq+rx0Op8PDg83WXhOfe1ZyprG5HcNgbWuGg0XrZj1xFlQzBTb+yG/912TPbL9M6+aXjNj9N6z9c14W/bjqqeSmwXgC+KKzXlFTgPG4iv697j55B3ogJAS7Ax7JorXfPeegDuHXQ1lm5r3X3v6QIVGWFBVudERcFIy3pADS49MJ4CAF8NA2i9mDpfxOX8ang6RkkstBhotJYlN2rhPCKSxzojTj4sOI1Z6wq8bhcfHYm6xmav27lfdKTuTC2WK2XJvbElxmJCvzRs/KpUsiDVok2H/T6bpm1MJC42eH8t3FnjorD47j74n4+LVA3VzM7piVk5PTxuo6QHwFudEE8BQ+NlO3rN/7fmSrH+rmuhtN6Np9ogizcXYdWu4lZr+UwfkYF5YzM1t80MagM+pYXUxEJ+RHQF64xooPROXUkgArjedQKQvDNVEwqWV9fjtZ3FWH7/ACQlRLt8mWqd9aCXlkAEaKnr8ciafIzK7IiyIuXtXrr1CK6ztZW9OCvpAQDgNd/k3kFdcKmxGW/sOoHktjGwJV65aL2dV6KrZL3U3bQvhwH0rteSW1iK13a2LqkvCMBrO4vRv2tSUA1RqK3lwoXziHyPwYgTJePjapaBd77oCIKgu0y7uL9Fm4pa3cXq/SJsG9MGFxvUr0ar15ais6qfI9cl7q07HQDmrT+E6EjvM9qXbmu9QKDYS3Gysk51m6XaIwYAQzKSfToMoOdiyiEKLpxH5A+sM+JEHB8HWtekEH9WG1CIFx1v01DV7s+9OJPeL8KLDZcxO6cHkhOidO3H1+TOH1BWE+N8XRPKa7S9F6U/9lLUGRi0na2pV9VzoYWei6mv2xYMxJsUuVDLgivTyIlIGwYjbuSqN9qssXhweLo5jZLgfhc7JCMZ7eP0BRJVl5ow/6fX69qHv7iff7NdwJ5jP/jl2HuOn9NV0dVZx3axPh8G0HMx5RCFspuUQJzOTBRMGIxIcK/euHb6MOyeOxI5mTazm+ZQUuE6VBAZYcE0ncHShwVn0LFtjK59+IvzXXxuYSluen47lu047vPjij0BP73B82ehXxcrkuLlg0PnAMDXwwB6LqYcomjh6SaF03qJ9NMUjCxfvhzp6emIjY3F0KFDsW/fPkXPW7duHSwWC+666y4th/UrqTUpvN1hShEvOrbEGMPupoGWtU/cS9TPHNkD8dGRmvd5rrYRsLTMkAlktsQYx128mPjp7+TdnEwbfntzBuRuhgu+q8J5mZk67gGAP4YBtF5MOURxhdxNCgMRIv1UJ7C+++67mDNnDlauXImhQ4di6dKlGD16NL799lt07NhR9nklJSX44x//iBEjRuhqsJmU1Fxw5nzRAaBqJVFvnGc/iFMVy6rrNa2h42z13hLNM2T8ZeKQroiMsGhexM0IHdvFYsLYzvjD7b3wdl4Jdh6twGdHlA0Tude1UFOQS08dEjWr0Dof577BXfDS1qOaioWFmkBZVZko1KiuMzJ06FAMHjwYy5YtAwDY7XZ06dIFv/vd7/DEE09IPqe5uRk333wzfvWrX2HXrl24cOECNmzYoPiY/qozopRUzQWLBYiLcq0/oqTOSIQFLvtpHx+F7Gs64N+FZV7bMfPW7rjU2IwPCk77tQS82V6+rx8m9OusuP6DkaRqciip45GcEI2nxvWGzRonGwB4qzPir3LkUsdp/+OQk3NdFpZCJyJvfFJnpLGxEfv378e8efMcj0VERCAnJwd5eXmyz/uf//kfdOzYEQ8++CB27drl9TgNDQ1oaLgy46G6ulpNM31CvFPcWlSGN/aUtPq9ILTUH5md0xPpKfGSd51Sd6YDuyVh/8nzrWqGKAlG/JEj4UvinXb7+ChVq/aK+QllVZd0HTtJ4zo+7j0BSmacnKtthM0a5/GuWq7nAgBe3noEL21tPd3Y6HLkcvVOqn58fzx9vomItFIVjFRUVKC5uRmpqakuj6empuKbb76RfM7u3bvxxhtvoKCgQPFxFi9ejIULF6ppmk9J3SnKees/xdj/1CjZL2mpbl73nwd2S2rVYxKKxOEK51L5izYdxvnaRq9rxeQWlmLRpsO6jv+nCVlYtOmwonVXAPmeACNnnLh/PnILS/HMRvkqtUbW+lBSU2TdF6c8VmolItLCp0XPampqMHnyZKxatQopKSmKnzdv3jzMmTPH8XN1dTW6dOniiyZ6JXenKOdCXROWbT/mtWS5nGa7oLvCZzCYPKwrnrkzy5EHAQARERZMze7mNT9hS1GZqvfEXXJCFJ67+8pCeo+sOSC77c8HdMbwHle5VGB156sZJ0o/e94qqCqltlKrr9bRIaLwoyoYSUlJQWRkJMrLy10eLy8vh83Weqrj8ePHUVJSgvHjxzses9vtLQdu0wbffvstunfv3up5MTExiIkxf4qp1gTJt/5TjJkjr3XJKVDypa2mByZQWAC0i41Edb3ypNcICzD/p9c7yqAryU9w7kW56fntupJW5//0ekcOhlzvipp8CCOWp3f/jAzslqT6s6e31ofS5/+7sBT7is9h7b5TLsX8mENCRFqpCkaio6MxcOBAbNu2zTE91263Y9u2bZg5c2ar7Xv16oVDhw65PPbUU0+hpqYGL7/8smm9HUppXe/lQl2T4+5RadKh2h6YQCEAWDFpEICWBcUAASUVdfj4UKnsc6aPyEB0mwhN+Ql5x8/pDtZsibFeX+8n7+gNa1w0Piw47fWu34jl6d0/I8kJ0aisbVR1XnprfSh9/j/zTko+bnT+ChGFD9XDNHPmzMHUqVMxaNAgDBkyBEuXLkVtbS2mTZsGAJgyZQo6d+6MxYsXIzY2FllZWS7Pb9++PQC0ejwQ6bnTPFtTr3jxMzOnqBqh4mIDJvTrjOHXXhmK6+xllVet+Ql67/7bx0XhcrMdz2z82uPr/ft3D7i03dtdv9bl6eU+I2oCESU9L0ooWZvJk3BZq4aIjKc6GLn33nvxww8/4Omnn0ZZWRn69euH3NxcR1LrqVOnEBERGoVd9dxpJsdF4/H1BxUtMGbWirtGqahpaNWDMG9spqMGx8nKOnRLjsfk7HREt2n5bGhdSVbv3f+FS02Y/Kb3In3uOTtK7vrV1PEAtA8DSjGi1oenHh6ljMpfIaLworrOiBnMqjMi1o/QcqeotJt97fRhOFtTj1nrCjS10WzuFy2leQMfFpxWdM5iTRGRnvdEL6kaI3oYUSfFlhiDZ+683ud1RtRyf9+IKDwpvX6HRheGj3ha08Mbpd3sZ2vqW60zE0zkhqByC0vRbBeQd/wcPiw4jbzj51yqw2qdgaLnPdHL6BVq9Q45zc7piT1P3GZ4foZz2fMp2d007SPU16ohImP5dGpvKJDLBWgfHwVBEFB1Sd9y8ikJMVi8WbpGSzASh6CeWH8IT28oxNmLV4Ky1HbRWDghC2Oy0nTNQJF7T/zFqBVqlV6wk92Ks/lj1opzvRO5hFUpRuWvEFF4YTCigFwuwN4T5/DA659r2qf4pQ0LZAta+dugbknI7JSIkopa7DxaoXk/AiBZUbW8phEPrc7Hyh/zLvTMQHF+T/5dWKrqgqmXUXf9SgOyzx67tVWVXn8lh6pJag3HtWqIyBgMRhRyvlMUa0J88rX3ku1SnL+0Ky42eNxWiwgAdg3P+/LkeXx58rzRzWll1roCHHomVbaHwxoXhWnD0zEqs3XtGmda7971MHKFWqVTgqPbREgmgzovkFh5sQHJCdEe174xuo3uvM0c8iUWYAsOfJ9IDhNYVdKS3Oepm90Xi73d1a8TNhScMXSfRkuOj8Zz92Q5pjYv234Mb+0pxoVL6oYjmu0C9p44hxnv5Ls8VwkLAGt8FBqamnGpSVn4ttIHNTS0LIDn6XPor8Xz0qyxuG9wV9PXqvHXAoKkD9+n8KT0+s1gxAvnSL6kolZysTI5Ut3sKQkxgKWlNodYafOWF3YYNjskOSEKk4Z2w/9uP2bA3nzLAmDFpAEAIFlrQ7ysyU2n1TPrQ+3U1QgLsGxif4y9oZPqYymh5o5RSYE88bU18ks+EO9q5V4Lb58d8i++T+GLwYgB9F7sANc/Mrk7gzv7puG1ncUAtNV2cDbtxm7YfKgM5TXGD//4QlJ8FOwCUCXTqyE3nVZpxVrx9d34ValrMbLEGNRftiteLfiV+wdg7A3mf1mKU5uVfCbTDJyGHIi8vRZGT8Umbfg+hTel12/mjMjQW57dffxcbn+lVfV4dWcxxt9gwxcl513W+tCipv5y0AQiAHDeSzAgVURLSbGw9vFRWD5xAIZ174DICAseH9Pb5a7eLgiKk49n5/QIiEAEULdEQagXH9NaOI/8i+8TKcFgRILeyphPju2FX910jctCed7299HBMtgSYx3rsRwtv4hlO9QPtWwu1JZUG+i2FJU5vqiUXJAv1DUhIsLieA+ck12BlqJrSqWnJGhosW+onVZs1DTkQKT03EL5NQgGfJ9ICRY9k6C3PHvVpSaX7sa9Chd3K6uux9KtRxDTJsJlnRc16hqVr54bTN7cU4LcwpbF94z4clMzPfdo+cVWRdvMonZacSgXH9NaOI/8i+8TKcFgRILeCN35mpVbWIoZa/JVPX/hR0UY2C0JyQlRutphBgtachWmj0g3fL8LPypCs10w5MttSEYybInK9rNsxzFMXLUXNz2/3REQmUWs+6FkZN3IaciByNtrIX4WQ/k1CAZ8n0gJBiMS9EboSfHRAK7kiaiZciqOn+4/eR5/mhD4Kxu7EwCMuT4VbWOikNouxtD9iuPKRny5RUZYMKGfujwQ51L3ZnEuh++JBaFffMzT0gAswBY4+D6REgxGJKi5+5SSnBCtO+/kbE09xt7QCbf1ukrjHszz1n9O4qWtR32SSHu2pt6QL7dmu4CNX6kLKsT3UuyhMYtYLC7NKh00p1ljw2aqpPha2NxeC1sYvQbBgO8TeRO2CayeaiboXUr9Ql2j7rwTsXfm1yO6Y9s3P2jeT6gRXxe56q02ayzmj+sNa1w0Piw4LVsPQ+v7ozfz36haHc7l8H1ZgdVf9Lwucss1BNtrEOr4PpEnYRmMKKkEqGcxtvbx0dhzTHsAYUuMcQwxDOyWhIToCNQ2ainwHjqkFmCT+nI7X9uIRZu8V3nUmxek5flGV6B0nyEUrIx4XULltQh1fJ9ITtgVPVNbCdD5jq2ipgGLNh32eozkhGhU1jZ63U7O7JwemJXTE7mFpXhi/SHFhblCmZKKomreW71l+NdOH6bqSzXYKlD6q9pqsL0uRKQOi55J8JTHIeDKjI1RmTbJ+hTNdgGv7y722lOiJxABWupa6C26FswsFsA5RI6wANNHZHhdo0bNe6tmNVqXtqF1D403Wj53ZvLXGiLB9roQke+EVQKrmkqAUiIjLLizr+/v0o6U1eC/PzgU0oHIzJ90R3JCtMtj7eNbpjK799XZBeDVncV4eesR2cRRte+tpyRYOVoz//V+7vwpt7AUD63Ob9VeX8wkCqbXhYh8K6yCEb3FsrTMwNBi+afHXVb5DUVvf34Kf5qQhbXTh+Hl+/rhnQeHIrZNpMfnvLT1KIYvka71oeW9lcvwT7PG4rc3Z7SaraI18z9YKlA22wU8sf6Q5O98MZMoWF4XIvK9sBqm0VssS+8MGQC4I8uG3B9Ltodyz4c3VZeaMGNNPlZMGoAJ/Toj7/g5lFUrq1L78Or8VkGB1vd2VKYN7WKjkHf8HAAB2dekyK5noyVvotkuoELhFGezK1Au237MY36S0WuIsDInEYnCKhjxlifgLR/AiDu0KdnpmNCvU0gkploAxEdHolZHCXoxJ0Dta+ueS6DlvZXKjfhX/mlHboTezH+lqz5ryUMxWrNdwFt7ihVta1RPhd6/RyIKHWE1TKO3WJaeOzT3qqBVIRCICACi2mj/CDnfaat5bcXn/X1PscuQwX2Du8he1ADX91ZMEJbKjXhodT5e3noEHxac1rwmjdz+lbTNDPuKKxVXCjaqp4KVOYlIFFY9I4DnYlneZgvomYEBwPHF+8zGr4N+iMZmjcV9g7vgpa1Hde/rbE097shKQ4TFdV0fbxZtOozXdxfjzr5p2PhVqeyF3/299TaLA4DLeamdSaKm+q6Sz50/KO3taB8XZWhPhZ6/RyIKHWEXjADaKwF6qswqPvM3N2e0ujA6f7G+vPUoyqqNL5PuC21jIjE1Ox0WCzA0vQMiIi2ouNjgeL0+PnjGkON0bBeL/SfPqwpERKVV9Xh1p/zwwuycnpg58lqX91Zt7o84k0Rp8qrS/c8f1xv/NTwjIO78lfZ2TBuebnh7WZmTiMIyGAG0VwJUcicnl/iYW1iKl7YeMfI0fOpiQzOWf3ocAPAva0suxYR+nR2/19td75wTYFRg477/dV+cwsyR17o8rjbnQW3NC6X7T2kXEzAXXCW9fknxUZg5sodPjs/KnEThLWyDET283clJfbF6mjYZDEp/zKVY6dQ7MLBbktehFbm1fdxzAnwxY0Ju9oeWY6mZSaJ0/xU1DR7Xz/Enb+sxWQAsvqdPwARPRBRaGIxopPZObu/xc0Exe6ZtTBtcbLgs+/sn1h9y9A4oGVoR0FLeft0X33nMCdCaj6OEe0+FnmMp6fVQsv8IC1yWFvBFhVO15Hr9AqFtRBTaGIwooGWdDvfn7DmufOG8O7JSMaBrEp7d/I3epqvyswGd8a/80x63uVDXhGXbj2FWTg/FwxHpKQnYPXekx9dQ70rJnrj3VOg5lpJeDyX7dw/i1Oal+ArzN4jIDAxGvNCyTofUc9rGeK4u6uzfheU4cKoK7eOjUFXX5JeZN0nxUbipx1VegxEAeHXnccwcea2qolVKepJk83ESY1B/2a76tfBUp0Ltqsxqa17I7V9uWCuQ1mJh/gYR+RuDEQ/kFqvzdBcr95yLDeoKgympRmqkXw66GqfO1Snatq6xGXuPn8Ow7h28DkekqSxaJXdnvqWoTFVPhpI6Fe7HKqmow9IfE4ylZkqprXnhvn9vqz4bXeGUiChYhFXRMzWU1KJwX6dDTX0JNfxxk7zxq1Ks+fyk4u13HTvrUrRKzp1901Tf5Yt35hP6dUb2j6XZfbWOjPOxZuX0kDyG1jVp3Pef0i5G0XO4FgsRhRv2jMhQs6KoeBdrxNo1UsR4Z0h6EvaVnDd8/wBUt/vQ99UAWu7+f3Nzhmytj9d2FqN/1yRD8iA85TMYsY6Mt2PoxbVYiIikMRiRoWVFUaXPscZFoUph6W1nvgpEtIj/MQdGyUrGRuZByOUzGJnn4KucCa7FQkQkjcM0MrTcxSp9zisPDMDa6cMw89bumtoWCIakK+sNcu5BktNsF5B3/JyutWCCgZlrsYTLa0xEwYk9IzK03MUqfc6wa1ryIIZkJONf+acNH9qxxrZBdf1lVbkr8VGRSIxro6hUvcUCTL0xHYC2HiRnWmYrBTMz1mIJt9eYiIIPe0ZkaLmL9fQcoKWXYP643i6VWr0lgGpRpTIQAYCxfWx45s7rJdvt7jcjMhD942q9KQnKkjKltvO0cu7Dq/ORW+h5+CdYjclKw+65I7F2+jC8fF8/rJ0+DLvnjvRZIBKOrzERBRcGIx7IzeDwNLtC7jmiRZsOu1wAxmSl4bZeVxnbcLT0Xqhxy3UdHW13n5kiirAAv705A/PGOgVQSo/jtp2W2UqhRGrGkNHC/TUmouDBYRovtMyuGJOVBrsdeGRNfqvfudcoyS0sxbZvlFdnVUpQeX15bvNhjO2T5nK+Z87XoeD7CwAsSO8Qj8nZ6Y4eEVHFRWUrELtvp2W2EqnD15iIggWDETdypd/VfFk32wUs2lQk+TvnSpsje6Vi4UfS2/mb80UpMsKCgd2SUHSmChaLBd2SpQMRQPt0Vb25JuQdX2MiChYMRpxIJfrZEmMwcUhXpKckKK45ofSO9O28Ep/UJdGqrOoSAGDx5iKs2lXsUrb82c2HMX2E2xANtE9XNaLmhpY1g8IJ65oQUbBgMPIj2dLv1Q14aetRx89KZiEovdM8Wams/Lq/VNY2YvHmIskCZnYBjsedAxJPi8J5mq6qt+YGZ4h4x7omRBQsmMAKdWXclcxCUHqn2S05XmELtVPTT5AYF4VVu6QrqYpW7SpG42W7y2NaEn311NzgDBFlzKxrQkSkBoMRqCvjrmQWgnhHKvcVb0HLXfzk7HSP24nbapFmjcUr9/eXndUj5eD3FyRXlHVmF4C380paPa5luqqWIIYzRNTR8hoTEfkbh2mgPoHP2yyEyAgL5o/rjUfWHGj1O+c70ug2ER6HOAQAiXFtUHXpsqr2AcB9g7tgdFYaRmelYe/xc5ixJh8XPJSgb5nOqyz0kRte0lJGXe1sJc4QUc+X6+0QERmBPSPQnsDnqaqo3FLx7nekcneu1vgoANAUiADAS1uP4qbnt2NLURmG90jBkp/1gQXS3fUWtARH6R2UDRsZPbykpuYGZ4ho44+6JkREWjEYgfdhFTlSQYxcPoNo/rjWCZbuQxzvPDgUqkuoSnDOoVDSXT85Ox3erlERFmBydrr+xmnEGSJERKGHwzTwPCNEitwsBG+JsBYAizYVYXRW6xVsnYc49hyt8DikopRzTZNRmTav3fXRbSIwfUSG5Gwa0XSnUvBm4AwRIqLQo+mqsnz5cqSnpyM2NhZDhw7Fvn37ZLddtWoVRowYgaSkJCQlJSEnJ8fj9mbxVsZd5GkWghEr2AJA3okKJU3GXf06eV351/2Y3rrr543NxG9vzmjVQyJZCt4EnCFCRBR6VPeMvPvuu5gzZw5WrlyJoUOHYunSpRg9ejS+/fZbdOzYsdX2n376KSZOnIgbb7wRsbGxeP7553H77bfj66+/RufOnQ05CaO49xyUVNRh7b5TKKtWtrqqcfkMyi6kVyfFo0dqW0XbbikqU5zQOW9sJv5wey+8nVeCk5V1HiuwmsGMlW+JiMh3LIKgbhWToUOHYvDgwVi2bBkAwG63o0uXLvjd736HJ554wuvzm5ubkZSUhGXLlmHKlCmKjlldXQ2r1YqqqiokJiaqaa739nip4qmmymfe8XOYuGqv12OunT7MY2Cw51gFHnj9c6/7eefXQxFhsSg6JgCsnDQgpGZVsAIrEVFgU3r9VtUz0tjYiP3792PevHmOxyIiIpCTk4O8vDxF+6irq0NTUxOSk+XH9BsaGtDQcGVhterqajXNVExJFU8101WNymcYdk0HtI+PwoU6+byRpPgoDLumg6PN3uqkWAA8sf4QntlY5NLTE8xVS7VMJSYiosCjqt+9oqICzc3NSE1NdXk8NTUVZWVlivYxd+5cdOrUCTk5ObLbLF68GFar1fGvS5cuapqpiC+qeBqVzxAZYcGSe/p43GbxPX0QGWFxOaYnAoALdU0ugQjAqqVERGQ+vyYBLFmyBOvWrcMHH3yA2Fj5RNF58+ahqqrK8e+7774ztB2+rOJpRsXLMVlpeHB4uqbnsmopERGZTdUwTUpKCiIjI1FeXu7yeHl5OWw2m8fnvvjii1iyZAm2bt2KG264weO2MTExiImJUdM0VXxdxXNMVhpG9krVnADaeNmOP7z/lcdtnlh/CKMyr0wRzsm04Y09JarbClw537/vKUZKuxjmXxARkV+pCkaio6MxcOBAbNu2DXfddReAlgTWbdu2YebMmbLP+/Of/4xnn30Wn3zyCQYNGqSrwUbwdRVPqVyU13cXK8rNyC0sxX9/UIjahmaP212oa8Le4+cwvEcKAO/5Kko4V40N5lwSIiIKLqqHaebMmYNVq1bhH//4Bw4fPoyHH34YtbW1mDZtGgBgypQpLgmuzz//PObPn48333wT6enpKCsrQ1lZGS5evGjcWajkyyqeenJRxOdW1jYqOpZzPRJP+SpaMJeEiIj8RXUwcu+99+LFF1/E008/jX79+qGgoAC5ubmOpNZTp06htPTKBWzFihVobGzEz3/+c6SlpTn+vfjii8adhUpKV9VVW8VTTy6Kt+qt8i29Qi5fRctoC3NJiIjIXzSVg585c6bssMynn37q8nNJSYmWQ/iUp/Lveqp46slF8fZcKVL5LO6F2ypqGmQX7fOGK+ASEZE/BEZJTRP4YtaLnlwUtfkpznVG3DmXfE9ppz8RmCvgEhGRL4X1QnneFo5TS08uitr8FLHOiFFt8vU+iIiI5IR1MAIYW8VTTwVWpbNhbIkxeObO6xX33OiZZcMVcImIyB/CdpjGF/RUYFUyG2Z2Tk/seeI2VUNIStqkpb1ERERGYTBiMD25KHLPTbPGYuWkAZiV00NTYOCpTSsnDcBKP1eMJSIicqZ61V4z+HLVXl/Rs6Ksr1aj9bRfroBLRERGU3r9ZjBCREREPqH0+s1hGiIiIjIVgxEiIiIyFYMRIiIiMhWDESIiIjIVgxEiIiIyFYMRIiIiMhWDESIiIjIVgxEiIiIyFYMRIiIiMlVQrNorFomtrq42uSVERESklHjd9lbsPSiCkZqaGgBAly5dTG4JERERqVVTUwOr1Sr7+6BYm8Zut+PMmTNo164dLBZzFm+rrq5Gly5d8N1334XV+jg8b553OOB587zDgRnnLQgCampq0KlTJ0REyGeGBEXPSEREBK6++mqzmwEASExMDKsPr4jnHV543uGF5x1e/H3ennpERExgJSIiIlMxGCEiIiJTMRhRKCYmBgsWLEBMTIzZTfErnjfPOxzwvHne4SCQzzsoEliJiIgodLFnhIiIiEzFYISIiIhMxWCEiIiITMVghIiIiEwVVsHI4sWLMXjwYLRr1w4dO3bEXXfdhW+//dZlm/r6esyYMQMdOnRA27Zt8bOf/Qzl5eUu25w6dQrjxo1DfHw8OnbsiMceewyXL1922ebTTz/FgAEDEBMTg2uvvRZ///vffX16iixZsgQWiwWPPvqo47FQPufTp09j0qRJ6NChA+Li4tCnTx98+eWXjt8LgoCnn34aaWlpiIuLQ05ODo4ePeqyj8rKSjzwwANITExE+/bt8eCDD+LixYsu2xw8eBAjRoxAbGwsunTpgj//+c9+OT93zc3NmD9/PjIyMhAXF4fu3btj0aJFLutChMo579y5E+PHj0enTp1gsViwYcMGl9/78zzff/999OrVC7GxsejTpw82b95s+PmKPJ13U1MT5s6diz59+iAhIQGdOnXClClTcObMGZd9hNp5u3vooYdgsViwdOlSl8dD9bwPHz6MO++8E1arFQkJCRg8eDBOnTrl+H1QfMcLYWT06NHCW2+9JRQWFgoFBQXC2LFjha5duwoXL150bPPQQw8JXbp0EbZt2yZ8+eWXwrBhw4Qbb7zR8fvLly8LWVlZQk5OjnDgwAFh8+bNQkpKijBv3jzHNidOnBDi4+OFOXPmCEVFRcLf/vY3ITIyUsjNzfXr+brbt2+fkJ6eLtxwww3CrFmzHI+H6jlXVlYK3bp1E/7rv/5L+Pzzz4UTJ04In3zyiXDs2DHHNkuWLBGsVquwYcMG4auvvhLuvPNOISMjQ7h06ZJjmzFjxgh9+/YV9u7dK+zatUu49tprhYkTJzp+X1VVJaSmpgoPPPCAUFhYKKxdu1aIi4sTXn31Vb+eryAIwrPPPit06NBB+Pjjj4Xi4mLh/fffF9q2bSu8/PLLjm1C5Zw3b94sPPnkk8L69esFAMIHH3zg8nt/neeePXuEyMhI4c9//rNQVFQkPPXUU0JUVJRw6NAhv5/3hQsXhJycHOHdd98VvvnmGyEvL08YMmSIMHDgQJd9hNp5O1u/fr3Qt29foVOnTsJLL73k8rtQPO9jx44JycnJwmOPPSbk5+cLx44dEz788EOhvLzcsU0wfMeHVTDi7uzZswIA4bPPPhMEoeUPOSoqSnj//fcd2xw+fFgAIOTl5QmC0PLBiIiIEMrKyhzbrFixQkhMTBQaGhoEQRCExx9/XLj++utdjnXvvfcKo0eP9vUpyaqpqRF69OghbNmyRbjlllscwUgon/PcuXOFm266Sfb3drtdsNlswgsvvOB47MKFC0JMTIywdu1aQRAEoaioSAAgfPHFF45t/v3vfwsWi0U4ffq0IAiC8MorrwhJSUmO10I89nXXXWf0KXk1btw44Ve/+pXLY/fcc4/wwAMPCIIQmucsCEKrL2l/nucvf/lLYdy4cS7tGTp0qPDb3/7W0HOU4umiLNq3b58AQDh58qQgCKF93t9//73QuXNnobCwUOjWrZtLMBKq533vvfcKkyZNkn1OsHzHh9UwjbuqqioAQHJyMgBg//79aGpqQk5OjmObXr16oWvXrsjLywMA5OXloU+fPkhNTXVsM3r0aFRXV+Prr792bOO8D3EbcR9mmDFjBsaNG9eqXaF8zhs3bsSgQYPwi1/8Ah07dkT//v2xatUqx++Li4tRVlbm0m6r1YqhQ4e6nHv79u0xaNAgxzY5OTmIiIjA559/7tjm5ptvRnR0tGOb0aNH49tvv8X58+d9fZoubrzxRmzbtg1HjhwBAHz11VfYvXs37rjjDgChec5S/HmegfjZd1ZVVQWLxYL27dsDCN3zttvtmDx5Mh577DFcf/31rX4fiudtt9uxadMm9OzZE6NHj0bHjh0xdOhQl6GcYPmOD9tgxG6349FHH8Xw4cORlZUFACgrK0N0dLTjj1aUmpqKsrIyxzbOb5j4e/F3nraprq7GpUuXfHE6Hq1btw75+flYvHhxq9+F6jkDwIkTJ7BixQr06NEDn3zyCR5++GH8/ve/xz/+8Q8AV9ou1W7n8+rYsaPL79u0aYPk5GRVr4+/PPHEE7jvvvvQq1cvREVFoX///nj00UfxwAMPuLQnlM5Zij/PU26bQHgd6uvrMXfuXEycONGxMFqonvfzzz+PNm3a4Pe//73k70PxvM+ePYuLFy9iyZIlGDNmDP7f//t/uPvuu3HPPffgs88+c7Q3GL7jg2LVXl+YMWMGCgsLsXv3brOb4lPfffcdZs2ahS1btiA2Ntbs5viV3W7HoEGD8NxzzwEA+vfvj8LCQqxcuRJTp041uXW+8d577+Gdd97BmjVrcP3116OgoACPPvooOnXqFLLnTNKamprwy1/+EoIgYMWKFWY3x6f279+Pl19+Gfn5+bBYLGY3x2/sdjsAYMKECZg9ezYAoF+/fvjPf/6DlStX4pZbbjGzeaqEZc/IzJkz8fHHH2PHjh24+uqrHY/bbDY0NjbiwoULLtuXl5fDZrM5tnHPQhZ/9rZNYmIi4uLijD4dj/bv34+zZ89iwIABaNOmDdq0aYPPPvsM//u//4s2bdogNTU15M5ZlJaWhszMTJfHevfu7cgyF9su1W7n8zp79qzL7y9fvozKykpVr4+/PPbYY47ekT59+mDy5MmYPXu2o1csFM9Zij/PU24bM18HMRA5efIktmzZ4rJcfCie965du3D27Fl07drV8T138uRJ/OEPf0B6erqjvaF23ikpKWjTpo3X77lg+I4Pq2BEEATMnDkTH3zwAbZv346MjAyX3w8cOBBRUVHYtm2b47Fvv/0Wp06dQnZ2NgAgOzsbhw4dcvlQi3/s4gciOzvbZR/iNuI+/Om2227DoUOHUFBQ4Pg3aNAgPPDAA47/h9o5i4YPH95q6vaRI0fQrVs3AEBGRgZsNptLu6urq/H555+7nPuFCxewf/9+xzbbt2+H3W7H0KFDHdvs3LkTTU1Njm22bNmC6667DklJST47Pyl1dXWIiHD9s46MjHTcQYXiOUvx53kG2mdfDESOHj2KrVu3okOHDi6/D8Xznjx5Mg4ePOjyPdepUyc89thj+OSTTxztDbXzjo6OxuDBgz1+zwXNdc2QNNgg8fDDDwtWq1X49NNPhdLSUse/uro6xzYPPfSQ0LVrV2H79u3Cl19+KWRnZwvZ2dmO34tToG6//XahoKBAyM3NFa666irJKVCPPfaYcPjwYWH58uWmT3N15jybRhBC95z37dsntGnTRnj22WeFo0ePCu+8844QHx8vrF692rHNkiVLhPbt2wsffvihcPDgQWHChAmS0z/79+8vfP7558Lu3buFHj16uEwHvHDhgpCamipMnjxZKCwsFNatWyfEx8ebMrV36tSpQufOnR1Te9evXy+kpKQIjz/+uGObUDnnmpoa4cCBA8KBAwcEAMJf//pX4cCBA45ZI/46zz179ght2rQRXnzxReHw4cPCggULfDrV09N5NzY2Cnfeeadw9dVXCwUFBS7fc84zRELtvKW4z6YJ1fNev369EBUVJbz22mvC0aNHHVNud+3a5dhHMHzHh1UwAkDy31tvveXY5tKlS8IjjzwiJCUlCfHx8cLdd98tlJaWuuynpKREuOOOO4S4uDghJSVF+MMf/iA0NTW5bLNjxw6hX79+QnR0tHDNNde4HMNs7sFIKJ/zRx99JGRlZQkxMTFCr169hNdee83l93a7XZg/f76QmpoqxMTECLfddpvw7bffumxz7tw5YeLEiULbtm2FxMREYdq0aUJNTY3LNl999ZVw0003CTExMULnzp2FJUuW+PzcpFRXVwuzZs0SunbtKsTGxgrXXHON8OSTT7pciELlnHfs2CH59zx16lRBEPx7nu+9957Qs2dPITo6Wrj++uuFTZs2mXLexcXFst9zO3bsCNnzliIVjITqeb/xxhvCtddeK8TGxgp9+/YVNmzY4LKPYPiOtwiCU2lGIiIiIj8Lq5wRIiIiCjwMRoiIiMhUDEaIiIjIVAxGiIiIyFQMRoiIiMhUDEaIiIjIVAxGiIiIyFQMRoiIiMhUDEaIiIjIVAxGiIiIyFQMRoiIiMhUDEaIiIjIVP8fMN/3enaCYE8AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "area = X.area\n", + "\n", + "plt.scatter(area, y)\n", + "\n", + "area.corr(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(0.3664940257738684)" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAGsCAYAAAAPJKchAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAfMUlEQVR4nO3de3BU9fnH8U8uZgMCQYjZXFyJ2iIgEGIoaaT8lBqNKU1LZ6oZpCZNkY42aZEdWoliIhUJtkJjp5EUMFBnxKCOoBYMpRki4xgHCWYK3hFoMsgGGNvcrIlm9/dHp2vTXGQj5MmG92vm/JGz37P77Bkd3549m4T4fD6fAAAAjIRaDwAAAC5sxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMBVUMbJv3z5lZWUpPj5eISEh2rFjR0DHP/jggwoJCemxXXzxxednYAAA8KWCKkba29uVlJSksrKyAR2/bNkynTx5sts2ZcoU3Xrrred4UgAAcLaCKkYyMzO1atUq/eAHP+j18Y6ODi1btkwJCQm6+OKLlZqaqpqaGv/jo0aNUmxsrH9ramrS22+/rUWLFg3SOwAAAP8rqGLkyxQUFKi2tlaVlZX629/+pltvvVW33HKLPvjgg17Xb9q0SRMnTtScOXMGeVIAAPAfwyZGGhoatHnzZj377LOaM2eOrrrqKi1btkzf+ta3tHnz5h7rP/30Uz311FNcFQEAwFi49QDnyqFDh9TV1aWJEyd229/R0aHx48f3WL99+3a1trYqNzd3sEYEAAC9GDYx0tbWprCwMNXV1SksLKzbY6NGjeqxftOmTfrud78rp9M5WCMCAIBeDJsYSU5OVldXl06dOvWl94AcO3ZMe/fu1YsvvjhI0wEAgL4EVYy0tbXpyJEj/p+PHTum+vp6jRs3ThMnTtTChQuVk5OjtWvXKjk5WadPn1Z1dbWmT5+uefPm+Y+rqKhQXFycMjMzLd4GAAD4LyE+n89nPcTZqqmp0dy5c3vsz83N1ZYtW/TZZ59p1apVevLJJ3XixAlFR0frm9/8plauXKlp06ZJkrxeryZMmKCcnBw9/PDDg/0WAADA/wiqGAEAAMPPsPlqLwAACE7ECAAAMBUUN7B6vV599NFHGj16tEJCQqzHAQAAZ8Hn86m1tVXx8fEKDe37+kdQxMhHH30kl8tlPQYAABiAxsZGXXbZZX0+HhQxMnr0aEn/fjNjxowxngYAAJyNlpYWuVwu/3/H+xIUMfKfj2bGjBlDjAAAEGS+7BYLbmAFAACmiBEAAGCKGAEAAKaIEQAAYIoYAQAApogRAABgihgBAACmiBEAAGCKGAEAAKaIEQAAYIoYAQAApogRAABgihgBAACmiBEAAGAq3HoAAOhP4vKd1iOYOb5mnvUIwKDgyggAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMBVuPQBwIUlcvtN6BBPH18yzHgHAEMaVEQAAYIoYAQAApgKOkX379ikrK0vx8fEKCQnRjh07+l3//PPP66abbtKll16qMWPGKC0tTbt37x7ovAAAYJgJOEba29uVlJSksrKys1q/b98+3XTTTdq1a5fq6uo0d+5cZWVl6c033wx4WAAAMPwEfANrZmamMjMzz3p9aWlpt59Xr16tF154QS+99JKSk5MDfXkAADDMDPq3abxer1pbWzVu3Lg+13R0dKijo8P/c0tLy2CMBgAADAz6DayPPvqo2tradNttt/W5pqSkRFFRUf7N5XIN4oQAAGAwDWqMbN26VStXrtQzzzyjmJiYPtcVFhaqubnZvzU2Ng7ilAAAYDAN2sc0lZWVuvPOO/Xss88qPT2937UOh0MOh2OQJgMAAJYG5crI008/rby8PD399NOaN4/fxAgAAL4Q8JWRtrY2HTlyxP/zsWPHVF9fr3Hjxunyyy9XYWGhTpw4oSeffFLSvz+ayc3N1WOPPabU1FR5PB5J0ogRIxQVFXWO3gYAAAhWAV8ZOXDggJKTk/1fy3W73UpOTlZRUZEk6eTJk2poaPCv37Bhgz7//HPl5+crLi7Ovy1ZsuQcvQUAABDMAr4ycsMNN8jn8/X5+JYtW7r9XFNTE+hLAACACwh/mwYAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAICp8EAP2Ldvn37729+qrq5OJ0+e1Pbt2zV//vx+j6mpqZHb7dZbb70ll8ulFStW6Mc//vEARwYAfJnE5TutRzBxfM086xEwAAFfGWlvb1dSUpLKysrOav2xY8c0b948zZ07V/X19brnnnt05513avfu3QEPCwAAhp+Ar4xkZmYqMzPzrNeXl5friiuu0Nq1ayVJkydP1quvvqrf/e53ysjICPTlAQDAMHPe7xmpra1Venp6t30ZGRmqra3t85iOjg61tLR02wAAwPB03mPE4/HI6XR22+d0OtXS0qJ//etfvR5TUlKiqKgo/+Zyuc73mAAAwMiQ/DZNYWGhmpub/VtjY6P1SAAA4DwJ+J6RQMXGxqqpqanbvqamJo0ZM0YjRozo9RiHwyGHw3G+RwMAAEPAeb8ykpaWpurq6m779uzZo7S0tPP90gAAIAgEHCNtbW2qr69XfX29pH9/dbe+vl4NDQ2S/v0RS05Ojn/9XXfdpaNHj+pXv/qV3n33XT3++ON65plntHTp0nPzDgAAQFALOEYOHDig5ORkJScnS5LcbreSk5NVVFQkSTp58qQ/TCTpiiuu0M6dO7Vnzx4lJSVp7dq12rRpE1/rBQAAkgZwz8gNN9wgn8/X5+Nbtmzp9Zg333wz0JcCAAAXgCH5bRoAAHDhIEYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAqQHFSFlZmRITExUZGanU1FTt37+/3/WlpaW6+uqrNWLECLlcLi1dulSffvrpgAYGAADDS8Axsm3bNrndbhUXF+vgwYNKSkpSRkaGTp061ev6rVu3avny5SouLtY777yjJ554Qtu2bdN99933lYcHAADBL+AYWbdunRYvXqy8vDxNmTJF5eXlGjlypCoqKnpd/9prr2n27Nm6/fbblZiYqJtvvlkLFiz40qspAADgwhBQjHR2dqqurk7p6elfPEFoqNLT01VbW9vrMdddd53q6ur88XH06FHt2rVL3/nOd/p8nY6ODrW0tHTbAADA8BQeyOIzZ86oq6tLTqez236n06l3332312Nuv/12nTlzRt/61rfk8/n0+eef66677ur3Y5qSkhKtXLkykNEAAECQOu/fpqmpqdHq1av1+OOP6+DBg3r++ee1c+dOPfTQQ30eU1hYqObmZv/W2Nh4vscEAABGAroyEh0drbCwMDU1NXXb39TUpNjY2F6PeeCBB3THHXfozjvvlCRNmzZN7e3t+ulPf6r7779foaE9e8jhcMjhcAQyGgAACFIBXRmJiIhQSkqKqqur/fu8Xq+qq6uVlpbW6zGffPJJj+AICwuTJPl8vkDnBQAAw0xAV0Ykye12Kzc3VzNnztSsWbNUWlqq9vZ25eXlSZJycnKUkJCgkpISSVJWVpbWrVun5ORkpaam6siRI3rggQeUlZXljxIAAHDhCjhGsrOzdfr0aRUVFcnj8WjGjBmqqqry39Ta0NDQ7UrIihUrFBISohUrVujEiRO69NJLlZWVpYcffvjcvQsAABC0Ao4RSSooKFBBQUGvj9XU1HR/gfBwFRcXq7i4eCAvBQAAhjn+Ng0AADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwFW49AIJT4vKd1iOYOL5mnvUIADDscGUEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmBpQjJSVlSkxMVGRkZFKTU3V/v37+13/z3/+U/n5+YqLi5PD4dDEiRO1a9euAQ0MAACGl/BAD9i2bZvcbrfKy8uVmpqq0tJSZWRk6L333lNMTEyP9Z2dnbrpppsUExOj5557TgkJCfr73/+usWPHnov5AQBAkAs4RtatW6fFixcrLy9PklReXq6dO3eqoqJCy5cv77G+oqJCH3/8sV577TVddNFFkqTExMSvNjUAAOdB4vKd1iOYOL5mnunrB/QxTWdnp+rq6pSenv7FE4SGKj09XbW1tb0e8+KLLyotLU35+flyOp2aOnWqVq9era6urj5fp6OjQy0tLd02AAAwPAUUI2fOnFFXV5ecTme3/U6nUx6Pp9djjh49queee05dXV3atWuXHnjgAa1du1arVq3q83VKSkoUFRXl31wuVyBjAgCAIHLev03j9XoVExOjDRs2KCUlRdnZ2br//vtVXl7e5zGFhYVqbm72b42Njed7TAAAYCSge0aio6MVFhampqambvubmpoUGxvb6zFxcXG66KKLFBYW5t83efJkeTwedXZ2KiIioscxDodDDocjkNEAAECQCujKSEREhFJSUlRdXe3f5/V6VV1drbS0tF6PmT17to4cOSKv1+vf9/777ysuLq7XEAEAABeWgD+mcbvd2rhxo/70pz/pnXfe0d1336329nb/t2tycnJUWFjoX3/33Xfr448/1pIlS/T+++9r586dWr16tfLz88/duwAAAEEr4K/2Zmdn6/Tp0yoqKpLH49GMGTNUVVXlv6m1oaFBoaFfNI7L5dLu3bu1dOlSTZ8+XQkJCVqyZInuvffec/cuAABA0Ao4RiSpoKBABQUFvT5WU1PTY19aWppef/31gbwUAAAY5vjbNAAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwNKEbKysqUmJioyMhIpaamav/+/Wd1XGVlpUJCQjR//vyBvCwAABiGAo6Rbdu2ye12q7i4WAcPHlRSUpIyMjJ06tSpfo87fvy4li1bpjlz5gx4WAAAMPwEHCPr1q3T4sWLlZeXpylTpqi8vFwjR45URUVFn8d0dXVp4cKFWrlypa688sqvNDAAABheAoqRzs5O1dXVKT09/YsnCA1Venq6amtr+zzu17/+tWJiYrRo0aKzep2Ojg61tLR02wAAwPAUUIycOXNGXV1dcjqd3fY7nU55PJ5ej3n11Vf1xBNPaOPGjWf9OiUlJYqKivJvLpcrkDEBAEAQOa/fpmltbdUdd9yhjRs3Kjo6+qyPKywsVHNzs39rbGw8j1MCAABL4YEsjo6OVlhYmJqamrrtb2pqUmxsbI/1H374oY4fP66srCz/Pq/X++8XDg/Xe++9p6uuuqrHcQ6HQw6HI5DRAABAkAroykhERIRSUlJUXV3t3+f1elVdXa20tLQe6ydNmqRDhw6pvr7ev33ve9/T3LlzVV9fz8cvAAAgsCsjkuR2u5Wbm6uZM2dq1qxZKi0tVXt7u/Ly8iRJOTk5SkhIUElJiSIjIzV16tRux48dO1aSeuwHAAAXpoBjJDs7W6dPn1ZRUZE8Ho9mzJihqqoq/02tDQ0NCg3lF7sCAICzE3CMSFJBQYEKCgp6faympqbfY7ds2TKQlwQAAMMUlzAAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmCJGAACAKWIEAACYIkYAAIApYgQAAJgiRgAAgCliBAAAmAq3HsBa4vKd1iOYOL5mnvUIAABI4soIAAAwRowAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwNaAYKSsrU2JioiIjI5Wamqr9+/f3uXbjxo2aM2eOLrnkEl1yySVKT0/vdz0AALiwBBwj27Ztk9vtVnFxsQ4ePKikpCRlZGTo1KlTva6vqanRggULtHfvXtXW1srlcunmm2/WiRMnvvLwAAAg+AUcI+vWrdPixYuVl5enKVOmqLy8XCNHjlRFRUWv65966in97Gc/04wZMzRp0iRt2rRJXq9X1dXVX3l4AAAQ/AKKkc7OTtXV1Sk9Pf2LJwgNVXp6umpra8/qOT755BN99tlnGjduXJ9rOjo61NLS0m0DAADDU0AxcubMGXV1dcnpdHbb73Q65fF4zuo57r33XsXHx3cLmv9VUlKiqKgo/+ZyuQIZEwAABJFB/TbNmjVrVFlZqe3btysyMrLPdYWFhWpubvZvjY2NgzglAAAYTOGBLI6OjlZYWJiampq67W9qalJsbGy/xz766KNas2aN/vrXv2r69On9rnU4HHI4HIGMBgAAglRAV0YiIiKUkpLS7ebT/9yMmpaW1udxv/nNb/TQQw+pqqpKM2fOHPi0AABg2Anoyogkud1u5ebmaubMmZo1a5ZKS0vV3t6uvLw8SVJOTo4SEhJUUlIiSXrkkUdUVFSkrVu3KjEx0X9vyahRozRq1Khz+FYAAEAwCjhGsrOzdfr0aRUVFcnj8WjGjBmqqqry39Ta0NCg0NAvLrisX79enZ2d+uEPf9jteYqLi/Xggw9+tekBAEDQCzhGJKmgoEAFBQW9PlZTU9Pt5+PHjw/kJQAAwAWCv00DAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADAFDECAABMESMAAMAUMQIAAEwRIwAAwBQxAgAATBEjAADA1IBipKysTImJiYqMjFRqaqr279/f7/pnn31WkyZNUmRkpKZNm6Zdu3YNaFgAADD8BBwj27Ztk9vtVnFxsQ4ePKikpCRlZGTo1KlTva5/7bXXtGDBAi1atEhvvvmm5s+fr/nz5+vw4cNfeXgAABD8Ao6RdevWafHixcrLy9OUKVNUXl6ukSNHqqKiotf1jz32mG655Rb98pe/1OTJk/XQQw/p2muv1R/+8IevPDwAAAh+4YEs7uzsVF1dnQoLC/37QkNDlZ6ertra2l6Pqa2tldvt7rYvIyNDO3bs6PN1Ojo61NHR4f+5ublZktTS0hLIuGfF2/HJOX/OYPBVzyXnbWA4b4G7UM+ZxHkbCP4dHZjz8d/X/35en8/X77qAYuTMmTPq6uqS0+nstt/pdOrdd9/t9RiPx9Preo/H0+frlJSUaOXKlT32u1yuQMZFP6JKrScITpy3geG8DQznLXCcs4E53+ettbVVUVFRfT4eUIwMlsLCwm5XU7xerz7++GONHz9eISEhhpOdOy0tLXK5XGpsbNSYMWOsxwkanLeB4bwNDOctcJyzgRmu583n86m1tVXx8fH9rgsoRqKjoxUWFqampqZu+5uamhQbG9vrMbGxsQGtlySHwyGHw9Ft39ixYwMZNWiMGTNmWP2DN1g4bwPDeRsYzlvgOGcDMxzPW39XRP4joBtYIyIilJKSourqav8+r9er6upqpaWl9XpMWlpat/WStGfPnj7XAwCAC0vAH9O43W7l5uZq5syZmjVrlkpLS9Xe3q68vDxJUk5OjhISElRSUiJJWrJkia6//nqtXbtW8+bNU2VlpQ4cOKANGzac23cCAACCUsAxkp2drdOnT6uoqEgej0czZsxQVVWV/ybVhoYGhYZ+ccHluuuu09atW7VixQrdd999+vrXv64dO3Zo6tSp5+5dBCGHw6Hi4uIeH0ehf5y3geG8DQznLXCcs4G50M9biO/Lvm8DAABwHvG3aQAAgCliBAAAmCJGAACAKWIEAACYIkYG2b59+5SVlaX4+HiFhIT0+zd68IWSkhJ94xvf0OjRoxUTE6P58+frvffesx5ryFu/fr2mT5/u/0VKaWlpevnll63HCipr1qxRSEiI7rnnHutRhrQHH3xQISEh3bZJkyZZjxUUTpw4oR/96EcaP368RowYoWnTpunAgQPWYw0qYmSQtbe3KykpSWVlZdajBJVXXnlF+fn5ev3117Vnzx599tlnuvnmm9Xe3m492pB22WWXac2aNaqrq9OBAwf07W9/W9///vf11ltvWY8WFN544w398Y9/1PTp061HCQrXXHONTp486d9effVV65GGvH/84x+aPXu2LrroIr388st6++23tXbtWl1yySXWow2qIfm3aYazzMxMZWZmWo8RdKqqqrr9vGXLFsXExKiurk7/93//ZzTV0JeVldXt54cffljr16/X66+/rmuuucZoquDQ1tamhQsXauPGjVq1apX1OEEhPDy83z/1gZ4eeeQRuVwubd682b/viiuuMJzIBldGEJSam5slSePGjTOeJHh0dXWpsrJS7e3t/DmGs5Cfn6958+YpPT3depSg8cEHHyg+Pl5XXnmlFi5cqIaGBuuRhrwXX3xRM2fO1K233qqYmBglJydr48aN1mMNOq6MIOh4vV7dc889mj179gX/m3zPxqFDh5SWlqZPP/1Uo0aN0vbt2zVlyhTrsYa0yspKHTx4UG+88Yb1KEEjNTVVW7Zs0dVXX62TJ09q5cqVmjNnjg4fPqzRo0dbjzdkHT16VOvXr5fb7dZ9992nN954Q7/4xS8UERGh3Nxc6/EGDTGCoJOfn6/Dhw/zefRZuvrqq1VfX6/m5mY999xzys3N1SuvvEKQ9KGxsVFLlizRnj17FBkZaT1O0Pjvj5+nT5+u1NRUTZgwQc8884wWLVpkONnQ5vV6NXPmTK1evVqSlJycrMOHD6u8vPyCihE+pkFQKSgo0J///Gft3btXl112mfU4QSEiIkJf+9rXlJKSopKSEiUlJemxxx6zHmvIqqur06lTp3TttdcqPDxc4eHheuWVV/T73/9e4eHh6urqsh4xKIwdO1YTJ07UkSNHrEcZ0uLi4nr8j8HkyZMvuI+4uDKCoODz+fTzn/9c27dvV01NzQV5g9e54vV61dHRYT3GkHXjjTfq0KFD3fbl5eVp0qRJuvfeexUWFmY0WXBpa2vThx9+qDvuuMN6lCFt9uzZPX5Nwfvvv68JEyYYTWSDGBlkbW1t3f5P4dixY6qvr9e4ceN0+eWXG042tOXn52vr1q164YUXNHr0aHk8HklSVFSURowYYTzd0FVYWKjMzExdfvnlam1t1datW1VTU6Pdu3dbjzZkjR49use9SBdffLHGjx/PPUr9WLZsmbKysjRhwgR99NFHKi4uVlhYmBYsWGA92pC2dOlSXXfddVq9erVuu+027d+/Xxs2bNCGDRusRxtcPgyqvXv3+iT12HJzc61HG9J6O2eSfJs3b7YebUj7yU9+4pswYYIvIiLCd+mll/puvPFG31/+8hfrsYLO9ddf71uyZIn1GENadna2Ly4uzhcREeFLSEjwZWdn+44cOWI9VlB46aWXfFOnTvU5HA7fpEmTfBs2bLAeadCF+Hw+n1EHAQAAcAMrAACwRYwAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU8QIAAAwRYwAAABTxAgAADBFjAAAAFPECAAAMEWMAAAAU/8PS2Dp6mNhoTIAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "X\n", + "bedrooms = X.bedrooms\n", + "\n", + "plt.bar(bedrooms, y)\n", + "bedrooms.corr(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(0.4207123661886168)" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAGsCAYAAAAPJKchAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAh5klEQVR4nO3df1BVZeLH8Q+gXDQDM/ICRtEvf5UC4spiOeqGkbHsujNbrjXCsGpbCzMaYyX9gFxLbCfNZqMoDd12M8xKa1dX1yh0ShoTZLIyy9RgTS467QJSQd17vn/09RYKyEHg6V7er5nzB+c+h/s8PjK853AvBFiWZQkAAMCQQNMTAAAAfRsxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjPKpGNm5c6fS0tIUFRWlgIAAbdq0ydb1Dz30kAICAs44zjvvvJ6ZMAAAOCufipGmpibFxsaqsLCwS9cvXLhQx44da3WMHj1aN998czfPFAAAdJZPxcj06dP18MMP6ze/+U2bjzc3N2vhwoUaNmyYzjvvPCUmJqqsrMz7+KBBgxQREeE9XC6XPvroI82ZM6eXVgAAAE7nUzFyNtnZ2SovL1dJSYnef/993Xzzzbrxxhv16aeftjl+9erVGj58uCZNmtTLMwUAAKf4TYxUV1drzZo12rBhgyZNmqQrrrhCCxcu1HXXXac1a9acMf6bb77RCy+8wF0RAAAM62d6At1l3759crvdGj58eKvzzc3NuvDCC88Yv3HjRjU2NiojI6O3pggAANrgNzFy8uRJBQUFqaKiQkFBQa0eGzRo0BnjV69erV/+8pdyOp29NUUAANAGv4mR+Ph4ud1u1dXVnfU1IIcPH9Zbb72l119/vZdmBwAA2uNTMXLy5EkdPHjQ+/Hhw4dVVVWlIUOGaPjw4brtttuUnp6u5cuXKz4+XsePH1dpaanGjh2r1NRU73XFxcWKjIzU9OnTTSwDAAD8SIBlWZbpSXRWWVmZpk6desb5jIwMrV27Vt9++60efvhhPf/88zp69KjCw8P185//XIsXL9aYMWMkSR6PR5deeqnS09P1yCOP9PYSAADAaXwqRgAAgP/xm7f2AgAA30SMAAAAo3ziBawej0dffPGFzj//fAUEBJieDgAA6ATLstTY2KioqCgFBrZ//8MnYuSLL75QdHS06WkAAIAuqKmp0cUXX9zu4z4RI+eff76k7xcTGhpqeDYAAKAzGhoaFB0d7f0+3h6fiJFTP5oJDQ0lRgAA8DFne4kFL2AFAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjOpnegIAYFfMos2mp9BnHVmWanoK8EPcGQEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGNXP9ASAnhKzaLPpKfRZR5almp4CfBBfs+aY/prlzggAADCKGAEAAEbZjpGdO3cqLS1NUVFRCggI0KZNmzoc/+qrr2ratGm66KKLFBoaqqSkJG3btq2r8wUAAH7Gdow0NTUpNjZWhYWFnRq/c+dOTZs2TVu2bFFFRYWmTp2qtLQ07d271/ZkAQCA/7H9Atbp06dr+vTpnR6/cuXKVh8vXbpUr732mv7xj38oPj7e7tMDAAA/0+vvpvF4PGpsbNSQIUPaHdPc3Kzm5mbvxw0NDb0xNQAAYECvv4D1scce08mTJ3XLLbe0O6agoEBhYWHeIzo6uhdnCAAAelOvxsi6deu0ePFivfTSSxo6dGi743Jzc1VfX+89ampqenGWAACgN/Xaj2lKSko0d+5cbdiwQcnJyR2OdTgccjgcvTQzAABgUq/cGXnxxReVmZmpF198Uamp/GZGAADwA9t3Rk6ePKmDBw96Pz58+LCqqqo0ZMgQXXLJJcrNzdXRo0f1/PPPS/r+RzMZGRl64oknlJiYqNraWknSgAEDFBYW1k3LAAAAvsr2nZE9e/YoPj7e+7bcnJwcxcfHKy8vT5J07NgxVVdXe8c/++yz+u6775SVlaXIyEjvMX/+/G5aAgAA8GW274xMmTJFlmW1+/jatWtbfVxWVmb3KQAAQB/C36YBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUf1MT8C0mEWbTU+hzzqyLNX0FAAAPwHcGQEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwCjbMbJz506lpaUpKipKAQEB2rRp01mvKSsr07hx4+RwOHTllVdq7dq1XZgqAADwR7ZjpKmpSbGxsSosLOzU+MOHDys1NVVTp05VVVWVFixYoLlz52rbtm22JwsAAPxPP7sXTJ8+XdOnT+/0+KKiIl122WVavny5JGnUqFF6++239fjjjyslJcXu0wMAAD/T468ZKS8vV3JycqtzKSkpKi8vb/ea5uZmNTQ0tDoAAIB/6vEYqa2tldPpbHXO6XSqoaFBX3/9dZvXFBQUKCwszHtER0f39DQBAIAhP8l30+Tm5qq+vt571NTUmJ4SAADoIbZfM2JXRESEXC5Xq3Mul0uhoaEaMGBAm9c4HA45HI6enhoAAPgJ6PE7I0lJSSotLW11bvv27UpKSurppwYAAD7AdoycPHlSVVVVqqqqkvT9W3erqqpUXV0t6fsfsaSnp3vH33HHHTp06JDuueceffzxx3rqqaf00ksv6a677uqeFQAAAJ9mO0b27Nmj+Ph4xcfHS5JycnIUHx+vvLw8SdKxY8e8YSJJl112mTZv3qzt27crNjZWy5cv1+rVq3lbLwAAkNSF14xMmTJFlmW1+3hbv111ypQp2rt3r92nAgAAfcBP8t00AACg7yBGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUV2KkcLCQsXExCgkJESJiYnavXt3h+NXrlypESNGaMCAAYqOjtZdd92lb775pksTBgAA/sV2jKxfv145OTnKz89XZWWlYmNjlZKSorq6ujbHr1u3TosWLVJ+fr7279+v5557TuvXr9d99913zpMHAAC+z3aMrFixQvPmzVNmZqZGjx6toqIiDRw4UMXFxW2O37Vrl6699lrdeuutiomJ0Q033KBZs2ad9W4KAADoG2zFSEtLiyoqKpScnPzDJwgMVHJyssrLy9u8ZuLEiaqoqPDGx6FDh7RlyxbddNNN7T5Pc3OzGhoaWh0AAMA/9bMz+MSJE3K73XI6na3OO51Offzxx21ec+utt+rEiRO67rrrZFmWvvvuO91xxx0d/pimoKBAixcvtjM1AADgo3r83TRlZWVaunSpnnrqKVVWVurVV1/V5s2btWTJknavyc3NVX19vfeoqanp6WkCAABDbN0ZCQ8PV1BQkFwuV6vzLpdLERERbV7z4IMPavbs2Zo7d64kacyYMWpqatLtt9+u+++/X4GBZ/aQw+GQw+GwMzUAAOCjbN0ZCQ4OVkJCgkpLS73nPB6PSktLlZSU1OY1X3311RnBERQUJEmyLMvufAEAgJ+xdWdEknJycpSRkaHx48drwoQJWrlypZqampSZmSlJSk9P17Bhw1RQUCBJSktL04oVKxQfH6/ExEQdPHhQDz74oNLS0rxRAgAA+i7bMTJz5kwdP35ceXl5qq2tVVxcnLZu3ep9UWt1dXWrOyEPPPCAAgIC9MADD+jo0aO66KKLlJaWpkceeaT7VgEAAHyW7RiRpOzsbGVnZ7f5WFlZWesn6NdP+fn5ys/P78pTAQAAP8ffpgEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEZ1KUYKCwsVExOjkJAQJSYmavfu3R2O/9///qesrCxFRkbK4XBo+PDh2rJlS5cmDAAA/Es/uxesX79eOTk5KioqUmJiolauXKmUlBQdOHBAQ4cOPWN8S0uLpk2bpqFDh+rll1/WsGHD9Pnnn2vw4MHdMX8AAODjbMfIihUrNG/ePGVmZkqSioqKtHnzZhUXF2vRokVnjC8uLtaXX36pXbt2qX///pKkmJiYc5s1AADwG7Z+TNPS0qKKigolJyf/8AkCA5WcnKzy8vI2r3n99deVlJSkrKwsOZ1OXXPNNVq6dKncbne7z9Pc3KyGhoZWBwAA8E+2YuTEiRNyu91yOp2tzjudTtXW1rZ5zaFDh/Tyyy/L7XZry5YtevDBB7V8+XI9/PDD7T5PQUGBwsLCvEd0dLSdaQIAAB/S4++m8Xg8Gjp0qJ599lklJCRo5syZuv/++1VUVNTuNbm5uaqvr/ceNTU1PT1NAABgiK3XjISHhysoKEgul6vVeZfLpYiIiDaviYyMVP/+/RUUFOQ9N2rUKNXW1qqlpUXBwcFnXONwOORwOOxMDQAA+Chbd0aCg4OVkJCg0tJS7zmPx6PS0lIlJSW1ec21116rgwcPyuPxeM998sknioyMbDNEAABA32L7xzQ5OTlatWqV/vrXv2r//v2688471dTU5H13TXp6unJzc73j77zzTn355ZeaP3++PvnkE23evFlLly5VVlZW960CAAD4LNtv7Z05c6aOHz+uvLw81dbWKi4uTlu3bvW+qLW6ulqBgT80TnR0tLZt26a77rpLY8eO1bBhwzR//nzde++93bcKAADgs2zHiCRlZ2crOzu7zcfKysrOOJeUlKR33323K08FAAD8HH+bBgAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo7oUI4WFhYqJiVFISIgSExO1e/fuTl1XUlKigIAAzZgxoytPCwAA/JDtGFm/fr1ycnKUn5+vyspKxcbGKiUlRXV1dR1ed+TIES1cuFCTJk3q8mQBAID/sR0jK1as0Lx585SZmanRo0erqKhIAwcOVHFxcbvXuN1u3XbbbVq8eLEuv/zyc5owAADwL7ZipKWlRRUVFUpOTv7hEwQGKjk5WeXl5e1e96c//UlDhw7VnDlzOvU8zc3NamhoaHUAAAD/ZCtGTpw4IbfbLafT2eq80+lUbW1tm9e8/fbbeu6557Rq1apOP09BQYHCwsK8R3R0tJ1pAgAAH9Kj76ZpbGzU7NmztWrVKoWHh3f6utzcXNXX13uPmpqaHpwlAAAwqZ+dweHh4QoKCpLL5Wp13uVyKSIi4ozxn332mY4cOaK0tDTvOY/H8/0T9+unAwcO6IorrjjjOofDIYfDYWdqAADAR9m6MxIcHKyEhASVlpZ6z3k8HpWWliopKemM8SNHjtS+fftUVVXlPX71q19p6tSpqqqq4scvAADA3p0RScrJyVFGRobGjx+vCRMmaOXKlWpqalJmZqYkKT09XcOGDVNBQYFCQkJ0zTXXtLp+8ODBknTGeQAA0DfZjpGZM2fq+PHjysvLU21treLi4rR161bvi1qrq6sVGMgvdgUAAJ1jO0YkKTs7W9nZ2W0+VlZW1uG1a9eu7cpTAgAAP8UtDAAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjOpSjBQWFiomJkYhISFKTEzU7t272x27atUqTZo0SRdccIEuuOACJScndzgeAAD0LbZjZP369crJyVF+fr4qKysVGxurlJQU1dXVtTm+rKxMs2bN0ltvvaXy8nJFR0frhhtu0NGjR8958gAAwPfZjpEVK1Zo3rx5yszM1OjRo1VUVKSBAwequLi4zfEvvPCC/vjHPyouLk4jR47U6tWr5fF4VFpaes6TBwAAvs9WjLS0tKiiokLJyck/fILAQCUnJ6u8vLxTn+Orr77St99+qyFDhrQ7prm5WQ0NDa0OAADgn2zFyIkTJ+R2u+V0Oluddzqdqq2t7dTnuPfeexUVFdUqaE5XUFCgsLAw7xEdHW1nmgAAwIf06rtpli1bppKSEm3cuFEhISHtjsvNzVV9fb33qKmp6cVZAgCA3tTPzuDw8HAFBQXJ5XK1Ou9yuRQREdHhtY899piWLVumN954Q2PHju1wrMPhkMPhsDM1AADgo2zdGQkODlZCQkKrF5+eejFqUlJSu9f9+c9/1pIlS7R161aNHz++67MFAAB+x9adEUnKyclRRkaGxo8frwkTJmjlypVqampSZmamJCk9PV3Dhg1TQUGBJOnRRx9VXl6e1q1bp5iYGO9rSwYNGqRBgwZ141IAAIAvsh0jM2fO1PHjx5WXl6fa2lrFxcVp69at3he1VldXKzDwhxsuTz/9tFpaWvTb3/621efJz8/XQw89dG6zBwAAPs92jEhSdna2srOz23ysrKys1cdHjhzpylMAAIA+gr9NAwAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUV2KkcLCQsXExCgkJESJiYnavXt3h+M3bNigkSNHKiQkRGPGjNGWLVu6NFkAAOB/bMfI+vXrlZOTo/z8fFVWVio2NlYpKSmqq6trc/yuXbs0a9YszZkzR3v37tWMGTM0Y8YMffDBB+c8eQAA4Ptsx8iKFSs0b948ZWZmavTo0SoqKtLAgQNVXFzc5vgnnnhCN954o+6++26NGjVKS5Ys0bhx4/Tkk0+e8+QBAIDv62dncEtLiyoqKpSbm+s9FxgYqOTkZJWXl7d5TXl5uXJyclqdS0lJ0aZNm9p9nubmZjU3N3s/rq+vlyQ1NDTYmW6neJq/6vbPic7pif38MfbWHPbWf/Xk3rKv5vTUvp76vJZldTjOVoycOHFCbrdbTqez1Xmn06mPP/64zWtqa2vbHF9bW9vu8xQUFGjx4sVnnI+OjrYzXfzEha00PQP0FPbWf7G3/qmn97WxsVFhYWHtPm4rRnpLbm5uq7spHo9HX375pS688EIFBAS0e11DQ4Oio6NVU1Oj0NDQ3piqUX1pvazVf/Wl9bJW/9WX1mtnrZZlqbGxUVFRUR2OsxUj4eHhCgoKksvlanXe5XIpIiKizWsiIiJsjZckh8Mhh8PR6tzgwYM7Pc/Q0FC//8/wY31pvazVf/Wl9bJW/9WX1tvZtXZ0R+QUWy9gDQ4OVkJCgkpLS73nPB6PSktLlZSU1OY1SUlJrcZL0vbt29sdDwAA+hbbP6bJyclRRkaGxo8frwkTJmjlypVqampSZmamJCk9PV3Dhg1TQUGBJGn+/PmaPHmyli9frtTUVJWUlGjPnj169tlnu3clAADAJ9mOkZkzZ+r48ePKy8tTbW2t4uLitHXrVu+LVKurqxUY+MMNl4kTJ2rdunV64IEHdN999+mqq67Spk2bdM0113TfKv6fw+FQfn7+GT/i8Vd9ab2s1X/1pfWyVv/Vl9bbE2sNsM72fhsAAIAexN+mAQAARhEjAADAKGIEAAAYRYwAAACjfC5GCgsLFRMTo5CQECUmJmr37t3tjl27dq0CAgJaHSEhIb04267buXOn0tLSFBUVpYCAgA7/ls8pZWVlGjdunBwOh6688kqtXbu2x+fZXeyut6ys7Iy9DQgI6PDPDPwUFBQU6Gc/+5nOP/98DR06VDNmzNCBAwfOet2GDRs0cuRIhYSEaMyYMdqyZUsvzPbcdWW9vvp1+/TTT2vs2LHeXwSVlJSkf/3rXx1e46v7Ktlfr6/u6+mWLVumgIAALViwoMNxvry3P9aZ9XbH3vpUjKxfv145OTnKz89XZWWlYmNjlZKSorq6unavCQ0N1bFjx7zH559/3osz7rqmpibFxsaqsLCwU+MPHz6s1NRUTZ06VVVVVVqwYIHmzp2rbdu29fBMu4fd9Z5y4MCBVvs7dOjQHpph99ixY4eysrL07rvvavv27fr22291ww03qKmpqd1rdu3apVmzZmnOnDnau3evZsyYoRkzZuiDDz7oxZl3TVfWK/nm1+3FF1+sZcuWqaKiQnv27NEvfvEL/frXv9aHH37Y5nhf3lfJ/nol39zXH3vvvff0zDPPaOzYsR2O8/W9PaWz65W6YW8tHzJhwgQrKyvL+7Hb7baioqKsgoKCNsevWbPGCgsL66XZ9RxJ1saNGzscc88991hXX311q3MzZ860UlJSenBmPaMz633rrbcsSdZ///vfXplTT6mrq7MkWTt27Gh3zC233GKlpqa2OpeYmGj94Q9/6OnpdbvOrNdfvm4ty7IuuOACa/Xq1W0+5k/7ekpH6/X1fW1sbLSuuuoqa/v27dbkyZOt+fPntzvWH/bWznq7Y2995s5IS0uLKioqlJyc7D0XGBio5ORklZeXt3vdyZMndemllyo6Ovqs1e7LysvLW/3bSFJKSkqH/zb+IC4uTpGRkZo2bZreeecd09Oxrb6+XpI0ZMiQdsf40952Zr2S73/dut1ulZSUqKmpqd0/feFP+9qZ9Uq+va9ZWVlKTU09Y8/a4g97a2e90rnvrc/EyIkTJ+R2u72/6fUUp9PZ7usERowYoeLiYr322mv6+9//Lo/Ho4kTJ+o///lPb0y5V9XW1rb5b9PQ0KCvv/7a0Kx6TmRkpIqKivTKK6/olVdeUXR0tKZMmaLKykrTU+s0j8ejBQsW6Nprr+3wNxK3t7c/9dfHnK6z6/Xlr9t9+/Zp0KBBcjgcuuOOO7Rx40aNHj26zbH+sK921uvL+1pSUqLKykrvnzk5G1/fW7vr7Y69tf3r4H1JUlJSq0qfOHGiRo0apWeeeUZLliwxODOcqxEjRmjEiBHejydOnKjPPvtMjz/+uP72t78ZnFnnZWVl6YMPPtDbb79teiq9orPr9eWv2xEjRqiqqkr19fV6+eWXlZGRoR07drT7DdrX2Vmvr+5rTU2N5s+fr+3bt/vkC27t6sp6u2NvfSZGwsPDFRQUJJfL1eq8y+VSREREpz5H//79FR8fr4MHD/bEFI2KiIho898mNDRUAwYMMDSr3jVhwgSf+caenZ2tf/7zn9q5c6cuvvjiDse2t7ed/X//U2Bnvafzpa/b4OBgXXnllZKkhIQEvffee3riiSf0zDPPnDHWH/bVznpP5yv7WlFRobq6Oo0bN857zu12a+fOnXryySfV3NysoKCgVtf48t52Zb2n68re+syPaYKDg5WQkKDS0lLvOY/Ho9LS0g5/Rvljbrdb+/btU2RkZE9N05ikpKRW/zaStH379k7/2/iDqqqqn/zeWpal7Oxsbdy4UW+++aYuu+yys17jy3vblfWezpe/bj0ej5qbm9t8zJf3tT0drfd0vrKv119/vfbt26eqqirvMX78eN12222qqqpq8xuzL+9tV9Z7ui7t7Tm9/LWXlZSUWA6Hw1q7dq310UcfWbfffrs1ePBgq7a21rIsy5o9e7a1aNEi7/jFixdb27Ztsz777DOroqLC+t3vfmeFhIRYH374oakldFpjY6O1d+9ea+/evZYka8WKFdbevXutzz//3LIsy1q0aJE1e/Zs7/hDhw5ZAwcOtO6++25r//79VmFhoRUUFGRt3brV1BJssbvexx9/3Nq0aZP16aefWvv27bPmz59vBQYGWm+88YapJXTKnXfeaYWFhVllZWXWsWPHvMdXX33lHXP6/+N33nnH6tevn/XYY49Z+/fvt/Lz863+/ftb+/btM7EEW7qyXl/9ul20aJG1Y8cO6/Dhw9b7779vLVq0yAoICLD+/e9/W5blX/tqWfbX66v72pbT313ib3t7urOttzv21qdixLIs6y9/+Yt1ySWXWMHBwdaECROsd9991/vY5MmTrYyMDO/HCxYs8I51Op3WTTfdZFVWVhqYtX2n3rp6+nFqfRkZGdbkyZPPuCYuLs4KDg62Lr/8cmvNmjW9Pu+usrveRx991LriiiuskJAQa8iQIdaUKVOsN99808zkbWhrjZJa7dXp/48ty7Jeeukla/jw4VZwcLB19dVXW5s3b+7diXdRV9brq1+3v//9761LL73UCg4Oti666CLr+uuv935jtiz/2lfLsr9eX93Xtpz+zdnf9vZ0Z1tvd+xtgGVZVufvowAAAHQvn3nNCAAA8E/ECAAAMIoYAQAARhEjAADAKGIEAAAYRYwAAACjiBEAAGAUMQIAAIwiRgAAgFHECAAAMIoYAQAARhEjAADAqP8D1bThsf9n9LEAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "X\n", + "stories = X.stories\n", + "plt.bar(stories, y)\n", + "\n", + "stories.corr(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAGsCAYAAAAPJKchAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAlIElEQVR4nO3df3CU9YHH8U8SyAaEJNDAhnCRiAqIQogw7MXKWKergXKptr0a0ZM0A3i1cKWmtJIqiRRr0AKl48XmRAN1TgjoKHIDF0pz5jg1lTOQKwr+QEMD1A0gYzYJmkj2e384rF3zgzwhyZdN3q+ZZyTPfp/d75eHDW939yERxhgjAAAASyJtTwAAAAxsxAgAALCKGAEAAFYRIwAAwCpiBAAAWEWMAAAAq4gRAABgFTECAACsIkYAAIBVxAgAALAqrGJk7969yszMVFJSkiIiIrR9+3ZHxz/88MOKiIhos1122WW9M2EAAHBBYRUjTU1NSk1NVVFRUbeOX7ZsmT766KOQbfLkyfr+97/fwzMFAABdFVYxMmfOHD3yyCP6zne+0+7tzc3NWrZsmcaOHavLLrtMHo9HFRUVwduHDRumxMTE4FZXV6dDhw5pwYIFfbQCAADwVWEVIxeyZMkSVVZWqrS0VH/+85/1/e9/X7Nnz9b777/f7vinn35aEyZM0KxZs/p4pgAA4Lx+EyO1tbXauHGjnn/+ec2aNUtXXnmlli1bphtvvFEbN25sM/6zzz7Tc889x6siAABYNsj2BHrKwYMH1draqgkTJoTsb25u1te+9rU241966SU1NDQoOzu7r6YIAADa0W9ipLGxUVFRUaqqqlJUVFTIbcOGDWsz/umnn9Y//MM/yO1299UUAQBAO/pNjKSlpam1tVUnT5684GdAampq9Morr2jHjh19NDsAANCRsIqRxsZGHTlyJPh1TU2NqqurNXLkSE2YMEF333235s+fr7Vr1yotLU2nTp1SeXm5pk6dqrlz5waPKykp0ZgxYzRnzhwbywAAAH8jwhhjbE+iqyoqKnTzzTe32Z+dna1Nmzbp888/1yOPPKJnn31WJ06cUEJCgv7+7/9eK1eu1JQpUyRJgUBA48aN0/z58/WrX/2qr5cAAAC+IqxiBAAA9D/95tJeAAAQnogRAABgVVh8gDUQCOivf/2rhg8froiICNvTAQAAXWCMUUNDg5KSkhQZ2fHrH2ERI3/961+VnJxsexoAAKAbjh07pr/7u7/r8PawiJHhw4dL+mIxsbGxlmcDAAC6wu/3Kzk5Ofj3eEfCIkbOvzUTGxtLjAAAEGYu9BELPsAKAACsIkYAAIBVxAgAALCKGAEAAFYRIwAAwCpiBAAAWEWMAAAAq4gRAABgFTECAACsIkYAAIBVxAgAALCKGAEAAFYRIwAAwCpiBAAAWDXI9gQAoC+kLN9pewrAJevo6rlWH59XRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACrHMfI3r17lZmZqaSkJEVERGj79u2djn/xxRd1yy23aNSoUYqNjVV6erp2797d3fkCAIB+xnGMNDU1KTU1VUVFRV0av3fvXt1yyy3atWuXqqqqdPPNNyszM1MHDhxwPFkAAND/DHJ6wJw5czRnzpwuj1+/fn3I148++qhefvll/cd//IfS0tKcPjwAAOhnHMfIxQoEAmpoaNDIkSM7HNPc3Kzm5ubg136/vy+mBgAALOjzD7CuWbNGjY2NuuOOOzocU1hYqLi4uOCWnJzchzMEAAB9qU9jZPPmzVq5cqW2bdum0aNHdzguLy9P9fX1we3YsWN9OEsAANCX+uxtmtLSUi1cuFDPP/+8vF5vp2NdLpdcLlcfzQwAANjUJ6+MbNmyRTk5OdqyZYvmzp3bFw8JAADChONXRhobG3XkyJHg1zU1NaqurtbIkSN1+eWXKy8vTydOnNCzzz4r6Yu3ZrKzs/Xb3/5WHo9HPp9PkjRkyBDFxcX10DIAAEC4cvzKyJtvvqm0tLTgZbm5ublKS0tTfn6+JOmjjz5SbW1tcPxTTz2lc+fOafHixRozZkxwW7p0aQ8tAQAAhDPHr4x84xvfkDGmw9s3bdoU8nVFRYXThwAAAAMIP5sGAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACrHMfI3r17lZmZqaSkJEVERGj79u0XPKaiokLXX3+9XC6XrrrqKm3atKkbUwUAAP2R4xhpampSamqqioqKujS+pqZGc+fO1c0336zq6mr95Cc/0cKFC7V7927HkwUAAP3PIKcHzJkzR3PmzOny+OLiYl1xxRVau3atJOmaa67Rq6++qt/85jfKyMhw+vAAAKCf6fXPjFRWVsrr9Ybsy8jIUGVlZYfHNDc3y+/3h2wAAKB/6vUY8fl8crvdIfvcbrf8fr8+/fTTdo8pLCxUXFxccEtOTu7taQIAAEsuyatp8vLyVF9fH9yOHTtme0oAAKCXOP7MiFOJiYmqq6sL2VdXV6fY2FgNGTKk3WNcLpdcLldvTw0AAFwCev2VkfT0dJWXl4fs27Nnj9LT03v7oQEAQBhwHCONjY2qrq5WdXW1pC8u3a2urlZtba2kL95imT9/fnD8D3/4Q3344Yf6+c9/rnfeeUdPPvmktm3bpvvvv79nVgAAAMKa4xh58803lZaWprS0NElSbm6u0tLSlJ+fL0n66KOPgmEiSVdccYV27typPXv2KDU1VWvXrtXTTz/NZb0AAECSFGGMMbYncSF+v19xcXGqr69XbGys7ekACEMpy3fangJwyTq6em6v3G9X//6+JK+mAQAAAwcxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArOpWjBQVFSklJUUxMTHyeDzat29fp+PXr1+viRMnasiQIUpOTtb999+vzz77rFsTBgAA/YvjGNm6datyc3NVUFCg/fv3KzU1VRkZGTp58mS74zdv3qzly5eroKBAhw8f1jPPPKOtW7fqF7/4xUVPHgAAhD/HMbJu3TotWrRIOTk5mjx5soqLizV06FCVlJS0O/7111/X17/+dd11111KSUnRrbfeqnnz5l3w1RQAADAwOIqRlpYWVVVVyev1fnkHkZHyer2qrKxs95gbbrhBVVVVwfj48MMPtWvXLn3rW9/q8HGam5vl9/tDNgAA0D8NcjL49OnTam1tldvtDtnvdrv1zjvvtHvMXXfdpdOnT+vGG2+UMUbnzp3TD3/4w07fpiksLNTKlSudTA0AAISpXr+apqKiQo8++qiefPJJ7d+/Xy+++KJ27typVatWdXhMXl6e6uvrg9uxY8d6e5oAAMASR6+MJCQkKCoqSnV1dSH76+rqlJiY2O4xK1as0D333KOFCxdKkqZMmaKmpibde++9evDBBxUZ2baHXC6XXC6Xk6kBAIAw5eiVkejoaE2fPl3l5eXBfYFAQOXl5UpPT2/3mLNnz7YJjqioKEmSMcbpfAEAQD/j6JURScrNzVV2drZmzJihmTNnav369WpqalJOTo4kaf78+Ro7dqwKCwslSZmZmVq3bp3S0tLk8Xh05MgRrVixQpmZmcEoAQAAA5fjGMnKytKpU6eUn58vn8+nadOmqaysLPih1tra2pBXQh566CFFRETooYce0okTJzRq1ChlZmbqV7/6Vc+tAgAAhK0IEwbvlfj9fsXFxam+vl6xsbG2pwMgDKUs32l7CsAl6+jqub1yv139+5ufTQMAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKzqVowUFRUpJSVFMTEx8ng82rdvX6fjP/nkEy1evFhjxoyRy+XShAkTtGvXrm5NGAAA9C+DnB6wdetW5ebmqri4WB6PR+vXr1dGRobeffddjR49us34lpYW3XLLLRo9erReeOEFjR07Vn/5y18UHx/fE/MHAABhznGMrFu3TosWLVJOTo4kqbi4WDt37lRJSYmWL1/eZnxJSYnOnDmj119/XYMHD5YkpaSkXNysAQBAv+HobZqWlhZVVVXJ6/V+eQeRkfJ6vaqsrGz3mB07dig9PV2LFy+W2+3Wddddp0cffVStra0dPk5zc7P8fn/IBgAA+idHMXL69Gm1trbK7XaH7He73fL5fO0e8+GHH+qFF15Qa2urdu3apRUrVmjt2rV65JFHOnycwsJCxcXFBbfk5GQn0wQAAGGk16+mCQQCGj16tJ566ilNnz5dWVlZevDBB1VcXNzhMXl5eaqvrw9ux44d6+1pAgAASxx9ZiQhIUFRUVGqq6sL2V9XV6fExMR2jxkzZowGDx6sqKio4L5rrrlGPp9PLS0tio6ObnOMy+WSy+VyMjUAABCmHL0yEh0drenTp6u8vDy4LxAIqLy8XOnp6e0e8/Wvf11HjhxRIBAI7nvvvfc0ZsyYdkMEAAAMLI7fpsnNzdWGDRv0+9//XocPH9Z9992npqam4NU18+fPV15eXnD8fffdpzNnzmjp0qV67733tHPnTj366KNavHhxz60CAACELceX9mZlZenUqVPKz8+Xz+fTtGnTVFZWFvxQa21trSIjv2yc5ORk7d69W/fff7+mTp2qsWPHaunSpXrggQd6bhUAACBsRRhjjO1JXIjf71dcXJzq6+sVGxtrezoAwlDK8p22pwBcso6untsr99vVv7/52TQAAMAqYgQAAFhFjAAAAKuIEQAAYJXjq2n6Gz7UBnSutz7YBgDn8coIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKu6FSNFRUVKSUlRTEyMPB6P9u3b16XjSktLFRERodtvv707DwsAAPohxzGydetW5ebmqqCgQPv371dqaqoyMjJ08uTJTo87evSoli1bplmzZnV7sgAAoP9xHCPr1q3TokWLlJOTo8mTJ6u4uFhDhw5VSUlJh8e0trbq7rvv1sqVKzV+/PiLmjAAAOhfHMVIS0uLqqqq5PV6v7yDyEh5vV5VVlZ2eNwvf/lLjR49WgsWLOjS4zQ3N8vv94dsAACgf3IUI6dPn1Zra6vcbnfIfrfbLZ/P1+4xr776qp555hlt2LChy49TWFiouLi44JacnOxkmgAAIIz06tU0DQ0Nuueee7RhwwYlJCR0+bi8vDzV19cHt2PHjvXiLAEAgE2DnAxOSEhQVFSU6urqQvbX1dUpMTGxzfgPPvhAR48eVWZmZnBfIBD44oEHDdK7776rK6+8ss1xLpdLLpfLydQAAECYcvTKSHR0tKZPn67y8vLgvkAgoPLycqWnp7cZP2nSJB08eFDV1dXB7dvf/rZuvvlmVVdX8/YLAABw9sqIJOXm5io7O1szZszQzJkztX79ejU1NSknJ0eSNH/+fI0dO1aFhYWKiYnRddddF3J8fHy8JLXZDwAABibHMZKVlaVTp04pPz9fPp9P06ZNU1lZWfBDrbW1tYqM5B92BQAAXeM4RiRpyZIlWrJkSbu3VVRUdHrspk2buvOQAACgn+IlDAAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArOpWjBQVFSklJUUxMTHyeDzat29fh2M3bNigWbNmacSIERoxYoS8Xm+n4wEAwMDiOEa2bt2q3NxcFRQUaP/+/UpNTVVGRoZOnjzZ7viKigrNmzdPr7zyiiorK5WcnKxbb71VJ06cuOjJAwCA8Oc4RtatW6dFixYpJydHkydPVnFxsYYOHaqSkpJ2xz/33HP60Y9+pGnTpmnSpEl6+umnFQgEVF5eftGTBwAA4c9RjLS0tKiqqkper/fLO4iMlNfrVWVlZZfu4+zZs/r88881cuTIDsc0NzfL7/eHbAAAoH9yFCOnT59Wa2ur3G53yH632y2fz9el+3jggQeUlJQUEjRfVVhYqLi4uOCWnJzsZJoAACCM9OnVNKtXr1ZpaaleeuklxcTEdDguLy9P9fX1we3YsWN9OEsAANCXBjkZnJCQoKioKNXV1YXsr6urU2JiYqfHrlmzRqtXr9Yf//hHTZ06tdOxLpdLLpfLydQAAECYcvTKSHR0tKZPnx7y4dPzH0ZNT0/v8LjHH39cq1atUllZmWbMmNH92QIAgH7H0SsjkpSbm6vs7GzNmDFDM2fO1Pr169XU1KScnBxJ0vz58zV27FgVFhZKkh577DHl5+dr8+bNSklJCX62ZNiwYRo2bFgPLgUAAIQjxzGSlZWlU6dOKT8/Xz6fT9OmTVNZWVnwQ621tbWKjPzyBZff/e53amlp0T/+4z+G3E9BQYEefvjhi5s9AAAIe45jRJKWLFmiJUuWtHtbRUVFyNdHjx7tzkMAAIABgp9NAwAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVcQIAACwihgBAABWESMAAMAqYgQAAFhFjAAAAKuIEQAAYBUxAgAArCJGAACAVd2KkaKiIqWkpCgmJkYej0f79u3rdPzzzz+vSZMmKSYmRlOmTNGuXbu6NVkAAND/OI6RrVu3Kjc3VwUFBdq/f79SU1OVkZGhkydPtjv+9ddf17x587RgwQIdOHBAt99+u26//Xa99dZbFz15AAAQ/hzHyLp167Ro0SLl5ORo8uTJKi4u1tChQ1VSUtLu+N/+9reaPXu2fvazn+maa67RqlWrdP311+tf//VfL3ryAAAg/A1yMrilpUVVVVXKy8sL7ouMjJTX61VlZWW7x1RWVio3NzdkX0ZGhrZv397h4zQ3N6u5uTn4dX19vSTJ7/c7mW6XBJrP9vh9Av1JbzzvbOC5DnSst57n5+/XGNPpOEcxcvr0abW2tsrtdofsd7vdeuedd9o9xufztTve5/N1+DiFhYVauXJlm/3JyclOpgugB8Sttz0DAL2tt5/nDQ0NiouL6/B2RzHSV/Ly8kJeTQkEAjpz5oy+9rWvKSIiwuLM+obf71dycrKOHTum2NhY29PpMwN13RJrH4hrH6jrllj7QFq7MUYNDQ1KSkrqdJyjGElISFBUVJTq6upC9tfV1SkxMbHdYxITEx2NlySXyyWXyxWyLz4+3slU+4XY2NgB8Yf1qwbquiXWPhDXPlDXLbH2gbL2zl4ROc/RB1ijo6M1ffp0lZeXB/cFAgGVl5crPT293WPS09NDxkvSnj17OhwPAAAGFsdv0+Tm5io7O1szZszQzJkztX79ejU1NSknJ0eSNH/+fI0dO1aFhYWSpKVLl+qmm27S2rVrNXfuXJWWlurNN9/UU0891bMrAQAAYclxjGRlZenUqVPKz8+Xz+fTtGnTVFZWFvyQam1trSIjv3zB5YYbbtDmzZv10EMP6Re/+IWuvvpqbd++Xdddd13PraKfcblcKigoaPNWVX83UNctsfaBuPaBum6JtQ/UtXcmwlzoehsAAIBexM+mAQAAVhEjAADAKmIEAABYRYwAAACriBELzpw5o7vvvluxsbGKj4/XggUL1NjY2On4f/mXf9HEiRM1ZMgQXX755frxj38c/Jk950VERLTZSktLe3s5nSoqKlJKSopiYmLk8Xi0b9++Tsc///zzmjRpkmJiYjRlyhTt2rUr5HZjjPLz8zVmzBgNGTJEXq9X77//fm8uoducrH3Dhg2aNWuWRowYoREjRsjr9bYZ/4Mf/KDN+Z09e3ZvL8MxJ+vetGlTmzXFxMSEjOmv5/wb3/hGu8/ZuXPnBseEwznfu3evMjMzlZSUpIiIiE5/7th5FRUVuv766+VyuXTVVVdp06ZNbcY4/d5hg9O1v/jii7rllls0atQoxcbGKj09Xbt37w4Z8/DDD7c555MmTerFVVwiDPrc7NmzTWpqqvnTn/5k/ud//sdcddVVZt68eR2OP3jwoPnud79rduzYYY4cOWLKy8vN1Vdfbb73ve+FjJNkNm7caD766KPg9umnn/b2cjpUWlpqoqOjTUlJiXn77bfNokWLTHx8vKmrq2t3/GuvvWaioqLM448/bg4dOmQeeughM3jwYHPw4MHgmNWrV5u4uDizfft283//93/m29/+trniiiusrrM9Ttd+1113maKiInPgwAFz+PBh84Mf/MDExcWZ48ePB8dkZ2eb2bNnh5zfM2fO9NWSusTpujdu3GhiY2ND1uTz+ULG9Ndz/vHHH4es+6233jJRUVFm48aNwTHhcM537dplHnzwQfPiiy8aSeall17qdPyHH35ohg4danJzc82hQ4fME088YaKiokxZWVlwjNPfS1ucrn3p0qXmscceM/v27TPvvfeeycvLM4MHDzb79+8PjikoKDDXXnttyDk/depUL6/EPmKkjx06dMhIMv/7v/8b3Pef//mfJiIiwpw4caLL97Nt2zYTHR1tPv/88+C+rjwZ+tLMmTPN4sWLg1+3traapKQkU1hY2O74O+64w8ydOzdkn8fjMf/8z/9sjDEmEAiYxMRE8+tf/zp4+yeffGJcLpfZsmVLL6yg+5yu/avOnTtnhg8fbn7/+98H92VnZ5vbbrutp6fao5yue+PGjSYuLq7D+xtI5/w3v/mNGT58uGlsbAzuC4dz/re68j3o5z//ubn22mtD9mVlZZmMjIzg1xf7e2lDd7//Tp482axcuTL4dUFBgUlNTe25iYUJ3qbpY5WVlYqPj9eMGTOC+7xeryIjI/XGG290+X7q6+sVGxurQYNC/926xYsXKyEhQTNnzlRJSckFf2xzb2lpaVFVVZW8Xm9wX2RkpLxeryorK9s9prKyMmS8JGVkZATH19TUyOfzhYyJi4uTx+Pp8D5t6M7av+rs2bP6/PPPNXLkyJD9FRUVGj16tCZOnKj77rtPH3/8cY/O/WJ0d92NjY0aN26ckpOTddttt+ntt98O3jaQzvkzzzyjO++8U5dddlnI/kv5nHfHhZ7nPfF7GS4CgYAaGhraPM/ff/99JSUlafz48br77rtVW1traYZ9hxjpYz6fT6NHjw7ZN2jQII0cOVI+n69L93H69GmtWrVK9957b8j+X/7yl9q2bZv27Nmj733ve/rRj36kJ554osfm7sTp06fV2toa/Jd5z3O73R2u0+fzdTr+/H+d3KcN3Vn7Vz3wwANKSkoK+YY8e/ZsPfvssyovL9djjz2m//7v/9acOXPU2trao/Pvru6se+LEiSopKdHLL7+sf//3f1cgENANN9yg48ePSxo453zfvn166623tHDhwpD9l/o5746Onud+v1+ffvppjzx/wsWaNWvU2NioO+64I7jP4/Fo06ZNKisr0+9+9zvV1NRo1qxZamhosDjT3uf4n4NH+5YvX67HHnus0zGHDx++6Mfx+/2aO3euJk+erIcffjjkthUrVgR/nZaWpqamJv3617/Wj3/844t+XPSd1atXq7S0VBUVFSEf5rzzzjuDv54yZYqmTp2qK6+8UhUVFfrmN79pY6oXLT09PeSHZt5www265ppr9G//9m9atWqVxZn1rWeeeUZTpkzRzJkzQ/b3x3OOL2zevFkrV67Uyy+/HPI/qHPmzAn+eurUqfJ4PBo3bpy2bdumBQsW2Jhqn+CVkR7y05/+VIcPH+50Gz9+vBITE3Xy5MmQY8+dO6czZ84oMTGx08doaGjQ7NmzNXz4cL300ksaPHhwp+M9Ho+OHz+u5ubmi16fUwkJCYqKilJdXV3I/rq6ug7XmZiY2On48/91cp82dGft561Zs0arV6/WH/7wB02dOrXTsePHj1dCQoKOHDly0XPuCRez7vMGDx6stLS04JoGwjlvampSaWlpl/6iudTOeXd09DyPjY3VkCFDeuTP0aWutLRUCxcu1LZt29q8ZfVV8fHxmjBhQlif864gRnrIqFGjNGnSpE636Ohopaen65NPPlFVVVXw2P/6r/9SIBCQx+Pp8P79fr9uvfVWRUdHa8eOHW0uf2xPdXW1RowYYeUHMkVHR2v69OkqLy8P7gsEAiovLw/5P+G/lZ6eHjJekvbs2RMcf8UVVygxMTFkjN/v1xtvvNHhfdrQnbVL0uOPP65Vq1aprKws5DNFHTl+/Lg+/vhjjRkzpkfmfbG6u+6/1draqoMHDwbX1N/PufTF5ezNzc36p3/6pws+zqV2zrvjQs/znvhzdCnbsmWLcnJytGXLlpDLuDvS2NioDz74IKzPeZfY/gTtQDR79myTlpZm3njjDfPqq6+aq6++OuTS3uPHj5uJEyeaN954wxhjTH19vfF4PGbKlCnmyJEjIZd8nTt3zhhjzI4dO8yGDRvMwYMHzfvvv2+efPJJM3ToUJOfn29ljcZ8cXmey+UymzZtMocOHTL33nuviY+PD166ec8995jly5cHx7/22mtm0KBBZs2aNebw4cOmoKCg3Ut74+Pjzcsvv2z+/Oc/m9tuu+2SvczTydpXr15toqOjzQsvvBByfhsaGowxxjQ0NJhly5aZyspKU1NTY/74xz+a66+/3lx99dXms88+s7LG9jhd98qVK83u3bvNBx98YKqqqsydd95pYmJizNtvvx0c01/P+Xk33nijycrKarM/XM55Q0ODOXDggDlw4ICRZNatW2cOHDhg/vKXvxhjjFm+fLm55557guPPX9r7s5/9zBw+fNgUFRW1e2lvZ7+Xlwqna3/uuefMoEGDTFFRUcjz/JNPPgmO+elPf2oqKipMTU2Nee2114zX6zUJCQnm5MmTfb6+vkSMWPDxxx+befPmmWHDhpnY2FiTk5MT/EvHGGNqamqMJPPKK68YY4x55ZVXjKR2t5qaGmPMF5cHT5s2zQwbNsxcdtllJjU11RQXF5vW1lYLK/zSE088YS6//HITHR1tZs6caf70pz8Fb7vppptMdnZ2yPht27aZCRMmmOjoaHPttdeanTt3htweCATMihUrjNvtNi6Xy3zzm9807777bl8sxTEnax83bly757egoMAYY8zZs2fNrbfeakaNGmUGDx5sxo0bZxYtWnTJfXM2xtm6f/KTnwTHut1u861vfSvk31wwpv+ec2OMeeedd4wk84c//KHNfYXLOe/o+9P5tWZnZ5ubbrqpzTHTpk0z0dHRZvz48SH/tsp5nf1eXiqcrv2mm27qdLwxX1zmPGbMGBMdHW3Gjh1rsrKyzJEjR/p2YRZEGGPp2k8AAADxmREAAGAZMQIAAKwiRgAAgFXECAAAsIoYAQAAVhEjAADAKmIEAABYRYwAAACriBEAAGAVMQIAAKwiRgAAgFXECAAAsOr/AeXwGgHVs5JkAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "X\n", + "mainroad = X.mainroad\n", + "\n", + "plt.bar(mainroad, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "np.float64(0.3843936486357261)" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAGsCAYAAAAPJKchAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAjDElEQVR4nO3df1BVdeL/8RegXDQDI5QfSpKWv1KBcOWD/VA3jMxl153Zcs0RYtW2VmZU1grKJLPEWjWdXYrSkG0n02zS2tV0jUTHJE2UyUwtFcM1QV03UCwo7vn+0ddbJBAHgbf38nzMnD84933ufb/ndMdn554LXpZlWQIAADDE2/QEAABA+0aMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo9wqRrZt26bExESFhYXJy8tL69ats3X8k08+KS8vr0u2q666qnUmDAAAfpZbxUhVVZUiIyOVnZ3drONnzZqlkydP1tkGDhyoe+65p4VnCgAAmsqtYmTMmDF6+umn9dvf/rbex6urqzVr1iz16NFDV111lWJjY1VQUOB6vEuXLgoJCXFt5eXl+vTTTzV58uQ2WgEAAPgpt4qRn5OamqrCwkKtWrVKH3/8se655x7ddddd+vzzz+sdv3z5cvXt21e33XZbG88UAABc5DExUlpaqhUrVmjNmjW67bbb1KdPH82aNUu33nqrVqxYccn4b775Rq+99hpXRQAAMKyD6Qm0lH379qm2tlZ9+/ats7+6ulrXXnvtJePXrl2rc+fOKTk5ua2mCAAA6uExMXL+/Hn5+PioqKhIPj4+dR7r0qXLJeOXL1+uX/3qVwoODm6rKQIAgHp4TIxER0ertrZWp06d+tl7QEpKSrRlyxa98847bTQ7AADQELeKkfPnz+vw4cOun0tKSlRcXKzAwED17dtXEydOVFJSkhYtWqTo6GidPn1a+fn5GjJkiMaOHes6Ljc3V6GhoRozZoyJZQAAgB/xsizLMj2JpiooKNCoUaMu2Z+cnKy8vDx9++23evrpp/Xqq6/qxIkTCgoK0v/93/9p7ty5Gjx4sCTJ6XSqV69eSkpK0jPPPNPWSwAAAD/hVjECAAA8j8d8tRcAALgnYgQAABjlFjewOp1Offnll7r66qvl5eVlejoAAKAJLMvSuXPnFBYWJm/vhq9/uEWMfPnllwoPDzc9DQAA0AzHjx9Xz549G3zcLWLk6quvlvT9Yvz9/Q3PBgAANEVlZaXCw8Nd/443xC1i5OJHM/7+/sQIAABu5uduseAGVgAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMCoDqYnAAB2RaSvNz2FduvYgrGmpwAPxJURAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRHUxPAAAASYpIX296Cu3WsQVjjb4+V0YAAIBRxAgAADDKdoxs27ZNiYmJCgsLk5eXl9atW9fo+LfeekujR49Wt27d5O/vr7i4OG3atKm58wUAAB7GdoxUVVUpMjJS2dnZTRq/bds2jR49Whs2bFBRUZFGjRqlxMRE7d271/ZkAQCA57F9A+uYMWM0ZsyYJo9fsmRJnZ/nz5+vt99+W//85z8VHR1t9+UBAICHafNv0zidTp07d06BgYENjqmurlZ1dbXr58rKyraYGgAAMKDNb2BduHChzp8/r3vvvbfBMVlZWQoICHBt4eHhbThDAADQlto0RlauXKm5c+fqjTfeUPfu3Rscl5GRoYqKCtd2/PjxNpwlAABoS232Mc2qVas0ZcoUrVmzRvHx8Y2OdTgccjgcbTQzAABgUptcGXn99deVkpKi119/XWPHmv0tbwAA4Mpi+8rI+fPndfjwYdfPJSUlKi4uVmBgoK677jplZGToxIkTevXVVyV9/9FMcnKyli5dqtjYWJWVlUmSOnXqpICAgBZaBgAAcFe2r4zs3r1b0dHRrq/lpqWlKTo6WnPmzJEknTx5UqWlpa7xL7/8sr777jtNmzZNoaGhrm369OkttAQAAODObF8ZGTlypCzLavDxvLy8Oj8XFBTYfQkAANCO8LdpAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwqoPdA7Zt26a//OUvKioq0smTJ7V27VqNGzeu0WMKCgqUlpam/fv3Kzw8XLNnz9b999/fzCm3rIj09aan0G4dWzDW9BQAAFcA21dGqqqqFBkZqezs7CaNLykp0dixYzVq1CgVFxdrxowZmjJlijZt2mR7sgAAwPPYvjIyZswYjRkzpsnjc3JydP3112vRokWSpAEDBmj79u16/vnnlZCQYPflAQCAh2n1e0YKCwsVHx9fZ19CQoIKCwsbPKa6ulqVlZV1NgAA4JlaPUbKysoUHBxcZ19wcLAqKyv19ddf13tMVlaWAgICXFt4eHhrTxMAABhyRX6bJiMjQxUVFa7t+PHjpqcEAABaie17RuwKCQlReXl5nX3l5eXy9/dXp06d6j3G4XDI4XC09tQAAMAVoNWvjMTFxSk/P7/Ovs2bNysuLq61XxoAALgB2zFy/vx5FRcXq7i4WNL3X90tLi5WaWmppO8/YklKSnKNf/DBB3X06FE98sgjOnjwoF544QW98cYbmjlzZsusAAAAuDXbH9Ps3r1bo0aNcv2clpYmSUpOTlZeXp5OnjzpChNJuv7667V+/XrNnDlTS5cuVc+ePbV8+XK+1otWxy+0M4dfaAfADtsxMnLkSFmW1eDjeXl59R6zd+9euy8FAADagSvy2zQAAKD9IEYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRzYqR7OxsRUREyM/PT7Gxsdq1a1ej45csWaJ+/fqpU6dOCg8P18yZM/XNN980a8IAAMCz2I6R1atXKy0tTZmZmdqzZ48iIyOVkJCgU6dO1Tt+5cqVSk9PV2Zmpg4cOKBXXnlFq1ev1mOPPXbZkwcAAO7PdowsXrxYU6dOVUpKigYOHKicnBx17txZubm59Y7fsWOHbrnlFt13332KiIjQnXfeqQkTJvzs1RQAANA+2IqRmpoaFRUVKT4+/ocn8PZWfHy8CgsL6z1m+PDhKioqcsXH0aNHtWHDBt19990Nvk51dbUqKyvrbAAAwDN1sDP4zJkzqq2tVXBwcJ39wcHBOnjwYL3H3HfffTpz5oxuvfVWWZal7777Tg8++GCjH9NkZWVp7ty5dqYGAADcVKt/m6agoEDz58/XCy+8oD179uitt97S+vXrNW/evAaPycjIUEVFhWs7fvx4a08TAAAYYuvKSFBQkHx8fFReXl5nf3l5uUJCQuo95oknntCkSZM0ZcoUSdLgwYNVVVWlBx54QI8//ri8vS/tIYfDIYfDYWdqAADATdm6MuLr66uYmBjl5+e79jmdTuXn5ysuLq7eYy5cuHBJcPj4+EiSLMuyO18AAOBhbF0ZkaS0tDQlJydr6NChGjZsmJYsWaKqqiqlpKRIkpKSktSjRw9lZWVJkhITE7V48WJFR0crNjZWhw8f1hNPPKHExERXlAAAgPbLdoyMHz9ep0+f1pw5c1RWVqaoqCht3LjRdVNraWlpnSshs2fPlpeXl2bPnq0TJ06oW7duSkxM1DPPPNNyqwAAAG7LdoxIUmpqqlJTU+t9rKCgoO4LdOigzMxMZWZmNuelAACAh+Nv0wAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOaFSPZ2dmKiIiQn5+fYmNjtWvXrkbHf/XVV5o2bZpCQ0PlcDjUt29fbdiwoVkTBgAAnqWD3QNWr16ttLQ05eTkKDY2VkuWLFFCQoIOHTqk7t27XzK+pqZGo0ePVvfu3fXmm2+qR48e+uKLL9S1a9eWmD8AAHBztmNk8eLFmjp1qlJSUiRJOTk5Wr9+vXJzc5Wenn7J+NzcXJ09e1Y7duxQx44dJUkRERGXN2sAAOAxbH1MU1NTo6KiIsXHx//wBN7eio+PV2FhYb3HvPPOO4qLi9O0adMUHBysQYMGaf78+aqtrW3wdaqrq1VZWVlnAwAAnslWjJw5c0a1tbUKDg6usz84OFhlZWX1HnP06FG9+eabqq2t1YYNG/TEE09o0aJFevrppxt8naysLAUEBLi28PBwO9MEAABupNW/TeN0OtW9e3e9/PLLiomJ0fjx4/X4448rJyenwWMyMjJUUVHh2o4fP97a0wQAAIbYumckKChIPj4+Ki8vr7O/vLxcISEh9R4TGhqqjh07ysfHx7VvwIABKisrU01NjXx9fS85xuFwyOFw2JkaAABwU7aujPj6+iomJkb5+fmufU6nU/n5+YqLi6v3mFtuuUWHDx+W0+l07fvss88UGhpab4gAAID2xfbHNGlpaVq2bJn+/ve/68CBA3rooYdUVVXl+nZNUlKSMjIyXOMfeughnT17VtOnT9dnn32m9evXa/78+Zo2bVrLrQIAALgt21/tHT9+vE6fPq05c+aorKxMUVFR2rhxo+um1tLSUnl7/9A44eHh2rRpk2bOnKkhQ4aoR48emj59uh599NGWWwUAAHBbtmNEklJTU5WamlrvYwUFBZfsi4uL04cffticlwIAAB6Ov00DAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRxAgAADCKGAEAAEYRIwAAwChiBAAAGEWMAAAAo4gRAABgFDECAACMIkYAAIBRzYqR7OxsRUREyM/PT7Gxsdq1a1eTjlu1apW8vLw0bty45rwsAADwQLZjZPXq1UpLS1NmZqb27NmjyMhIJSQk6NSpU40ed+zYMc2aNUu33XZbsycLAAA8j+0YWbx4saZOnaqUlBQNHDhQOTk56ty5s3Jzcxs8pra2VhMnTtTcuXPVu3fvy5owAADwLLZipKamRkVFRYqPj//hCby9FR8fr8LCwgaPe+qpp9S9e3dNnjy5Sa9TXV2tysrKOhsAAPBMtmLkzJkzqq2tVXBwcJ39wcHBKisrq/eY7du365VXXtGyZcua/DpZWVkKCAhwbeHh4XamCQAA3Eirfpvm3LlzmjRpkpYtW6agoKAmH5eRkaGKigrXdvz48VacJQAAMKmDncFBQUHy8fFReXl5nf3l5eUKCQm5ZPyRI0d07NgxJSYmuvY5nc7vX7hDBx06dEh9+vS55DiHwyGHw2FnagAAwE3ZujLi6+urmJgY5efnu/Y5nU7l5+crLi7ukvH9+/fXvn37VFxc7Np+/etfa9SoUSouLubjFwAAYO/KiCSlpaUpOTlZQ4cO1bBhw7RkyRJVVVUpJSVFkpSUlKQePXooKytLfn5+GjRoUJ3ju3btKkmX7AcAAO2T7RgZP368Tp8+rTlz5qisrExRUVHauHGj66bW0tJSeXvzi10BAEDT2I4RSUpNTVVqamq9jxUUFDR6bF5eXnNeEgAAeCguYQAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYFSzYiQ7O1sRERHy8/NTbGysdu3a1eDYZcuW6bbbbtM111yja665RvHx8Y2OBwAA7YvtGFm9erXS0tKUmZmpPXv2KDIyUgkJCTp16lS94wsKCjRhwgRt2bJFhYWFCg8P15133qkTJ05c9uQBAID7sx0jixcv1tSpU5WSkqKBAwcqJydHnTt3Vm5ubr3jX3vtNf3pT39SVFSU+vfvr+XLl8vpdCo/P/+yJw8AANyfrRipqalRUVGR4uPjf3gCb2/Fx8ersLCwSc9x4cIFffvttwoMDGxwTHV1tSorK+tsAADAM9mKkTNnzqi2tlbBwcF19gcHB6usrKxJz/Hoo48qLCysTtD8VFZWlgICAlxbeHi4nWkCAAA30qbfplmwYIFWrVqltWvXys/Pr8FxGRkZqqiocG3Hjx9vw1kCAIC21MHO4KCgIPn4+Ki8vLzO/vLycoWEhDR67MKFC7VgwQK99957GjJkSKNjHQ6HHA6HnakBAAA3ZevKiK+vr2JiYurcfHrxZtS4uLgGj3vuuec0b948bdy4UUOHDm3+bAEAgMexdWVEktLS0pScnKyhQ4dq2LBhWrJkiaqqqpSSkiJJSkpKUo8ePZSVlSVJevbZZzVnzhytXLlSERERrntLunTpoi5durTgUgAAgDuyHSPjx4/X6dOnNWfOHJWVlSkqKkobN2503dRaWloqb+8fLri8+OKLqqmp0e9+97s6z5OZmaknn3zy8mYPAADcnu0YkaTU1FSlpqbW+1hBQUGdn48dO9aclwAAAO0Ef5sGAAAYRYwAAACjiBEAAGAUMQIAAIwiRgAAgFHECAAAMIoYAQAARhEjAADAKGIEAAAYRYwAAACjiBEAAGAUMQIAAIwiRgAAgFHECAAAMIoYAQAARhEjAADAKGIEAAAYRYwAAACjiBEAAGAUMQIAAIwiRgAAgFHECAAAMIoYAQAARhEjAADAKGIEAAAYRYwAAACjiBEAAGAUMQIAAIwiRgAAgFHECAAAMIoYAQAARhEjAADAKGIEAAAYRYwAAACjiBEAAGAUMQIAAIwiRgAAgFHECAAAMIoYAQAARhEjAADAKGIEAAAYRYwAAACjmhUj2dnZioiIkJ+fn2JjY7Vr165Gx69Zs0b9+/eXn5+fBg8erA0bNjRrsgAAwPPYjpHVq1crLS1NmZmZ2rNnjyIjI5WQkKBTp07VO37Hjh2aMGGCJk+erL1792rcuHEaN26cPvnkk8uePAAAcH+2Y2Tx4sWaOnWqUlJSNHDgQOXk5Khz587Kzc2td/zSpUt111136eGHH9aAAQM0b9483Xzzzfrb3/522ZMHAADur4OdwTU1NSoqKlJGRoZrn7e3t+Lj41VYWFjvMYWFhUpLS6uzLyEhQevWrWvwdaqrq1VdXe36uaKiQpJUWVlpZ7pN4qy+0OLPiaZpjfP5Y5xbczi3nqs1zy3n1ZzWOq8Xn9eyrEbH2YqRM2fOqLa2VsHBwXX2BwcH6+DBg/UeU1ZWVu/4srKyBl8nKytLc+fOvWR/eHi4neniChewxPQM0Fo4t56Lc+uZWvu8njt3TgEBAQ0+bitG2kpGRkadqylOp1Nnz57VtddeKy8vrwaPq6ysVHh4uI4fPy5/f/+2mKpR7Wm9rNVztaf1slbP1Z7Wa2etlmXp3LlzCgsLa3ScrRgJCgqSj4+PysvL6+wvLy9XSEhIvceEhITYGi9JDodDDoejzr6uXbs2eZ7+/v4e/x/Dj7Wn9bJWz9We1staPVd7Wm9T19rYFZGLbN3A6uvrq5iYGOXn57v2OZ1O5efnKy4urt5j4uLi6oyXpM2bNzc4HgAAtC+2P6ZJS0tTcnKyhg4dqmHDhmnJkiWqqqpSSkqKJCkpKUk9evRQVlaWJGn69OkaMWKEFi1apLFjx2rVqlXavXu3Xn755ZZdCQAAcEu2Y2T8+PE6ffq05syZo7KyMkVFRWnjxo2um1RLS0vl7f3DBZfhw4dr5cqVmj17th577DHdeOONWrdunQYNGtRyq/j/HA6HMjMzL/mIx1O1p/WyVs/VntbLWj1Xe1pva6zVy/q579sAAAC0Iv42DQAAMIoYAQAARhEjAADAKGIEAAAY5fYxcvbsWU2cOFH+/v7q2rWrJk+erPPnzzd6zMiRI+Xl5VVne/DBB9toxvZkZ2crIiJCfn5+io2N1a5duxodv2bNGvXv319+fn4aPHiwNmzY0EYzvXx21pqXl3fJOfTz82vD2Tbftm3blJiYqLCwMHl5eTX6d5ouKigo0M033yyHw6EbbrhBeXl5rT7PlmB3rQUFBZecVy8vr0b/fMSVIisrS7/4xS909dVXq3v37ho3bpwOHTr0s8e543u2OWt15/fsiy++qCFDhrh+yVdcXJzefffdRo9xx/Mq2V9rS51Xt4+RiRMnav/+/dq8ebP+9a9/adu2bXrggQd+9ripU6fq5MmTru25555rg9nas3r1aqWlpSkzM1N79uxRZGSkEhISdOrUqXrH79ixQxMmTNDkyZO1d+9ejRs3TuPGjdMnn3zSxjO3z+5ape9/+9+Pz+EXX3zRhjNuvqqqKkVGRio7O7tJ40tKSjR27FiNGjVKxcXFmjFjhqZMmaJNmza18kwvn921XnTo0KE657Z79+6tNMOWs3XrVk2bNk0ffvihNm/erG+//VZ33nmnqqqqGjzGXd+zzVmr5L7v2Z49e2rBggUqKirS7t279ctf/lK/+c1vtH///nrHu+t5leyvVWqh82q5sU8//dSSZH300Ueufe+++67l5eVlnThxosHjRowYYU2fPr0NZnh5hg0bZk2bNs31c21trRUWFmZlZWXVO/7ee++1xo4dW2dfbGys9cc//rFV59kS7K51xYoVVkBAQBvNrvVIstauXdvomEceecS66aab6uwbP368lZCQ0Ioza3lNWeuWLVssSdb//ve/NplTazp16pQlydq6dWuDY9z5PftjTVmrp7xnL7rmmmus5cuX1/uYp5zXixpba0udV7e+MlJYWKiuXbtq6NChrn3x8fHy9vbWzp07Gz32tddeU1BQkAYNGqSMjAxduHBl/enqmpoaFRUVKT4+3rXP29tb8fHxKiwsrPeYwsLCOuMlKSEhocHxV4rmrFWSzp8/r169eik8PPxny92duet5vRxRUVEKDQ3V6NGj9cEHH5ieTrNUVFRIkgIDAxsc4ynntilrlTzjPVtbW6tVq1apqqqqwT9r4inntSlrlVrmvF6Rf7W3qcrKyi65fNuhQwcFBgY2+hnzfffdp169eiksLEwff/yxHn30UR06dEhvvfVWa0+5yc6cOaPa2lrXb7a9KDg4WAcPHqz3mLKysnrHX+mftzdnrf369VNubq6GDBmiiooKLVy4UMOHD9f+/fvVs2fPtph2m2novFZWVurrr79Wp06dDM2s5YWGhionJ0dDhw5VdXW1li9frpEjR2rnzp26+eabTU+vyZxOp2bMmKFbbrml0d827a7v2R9r6lrd/T27b98+xcXF6ZtvvlGXLl20du1aDRw4sN6x7n5e7ay1pc7rFRkj6enpevbZZxsdc+DAgWY//4/vKRk8eLBCQ0N1xx136MiRI+rTp0+znxdtJy4urk6pDx8+XAMGDNBLL72kefPmGZwZLke/fv3Ur18/18/Dhw/XkSNH9Pzzz+sf//iHwZnZM23aNH3yySfavn276am0uqau1d3fs/369VNxcbEqKir05ptvKjk5WVu3bm3wH2l3ZmetLXVer8gY+fOf/6z777+/0TG9e/dWSEjIJTc4fvfddzp79qxCQkKa/HqxsbGSpMOHD18xMRIUFCQfHx+Vl5fX2V9eXt7g2kJCQmyNv1I0Z60/1bFjR0VHR+vw4cOtMUWjGjqv/v7+HnVVpCHDhg1zq3/UU1NTXTfT/9z/Gbrre/YiO2v9KXd7z/r6+uqGG26QJMXExOijjz7S0qVL9dJLL10y1t3Pq521/lRzz+sVec9It27d1L9//0Y3X19fxcXF6auvvlJRUZHr2Pfff19Op9MVGE1RXFws6ftLxFcKX19fxcTEKD8/37XP6XQqPz+/wc/u4uLi6oyXpM2bNzf6Wd+VoDlr/ana2lrt27fvijqHLcVdz2tLKS4udovzalmWUlNTtXbtWr3//vu6/vrrf/YYdz23zVnrT7n7e9bpdKq6urrex9z1vDaksbX+VLPP62XfAmvYXXfdZUVHR1s7d+60tm/fbt14443WhAkTXI//5z//sfr162ft3LnTsizLOnz4sPXUU09Zu3fvtkpKSqy3337b6t27t3X77bebWkKDVq1aZTkcDisvL8/69NNPrQceeMDq2rWrVVZWZlmWZU2aNMlKT093jf/ggw+sDh06WAsXLrQOHDhgZWZmWh07drT27dtnaglNZnetc+fOtTZt2mQdOXLEKioqsn7/+99bfn5+1v79+00tocnOnTtn7d2719q7d68lyVq8eLG1d+9e64svvrAsy7LS09OtSZMmucYfPXrU6ty5s/Xwww9bBw4csLKzsy0fHx9r48aNppbQZHbX+vzzz1vr1q2zPv/8c2vfvn3W9OnTLW9vb+u9994ztYQme+ihh6yAgACroKDAOnnypGu7cOGCa4ynvGebs1Z3fs+mp6dbW7dutUpKSqyPP/7YSk9Pt7y8vKx///vflmV5znm1LPtrbanz6vYx8t///teaMGGC1aVLF8vf399KSUmxzp0753q8pKTEkmRt2bLFsizLKi0ttW6//XYrMDDQcjgc1g033GA9/PDDVkVFhaEVNO6vf/2rdd1111m+vr7WsGHDrA8//ND12IgRI6zk5OQ649944w2rb9++lq+vr3XTTTdZ69evb+MZN5+dtc6YMcM1Njg42Lr77rutPXv2GJi1fRe/vvrT7eL6kpOTrREjRlxyTFRUlOXr62v17t3bWrFiRZvPuznsrvXZZ5+1+vTpY/n5+VmBgYHWyJEjrffff9/M5G2qb52S6pwrT3nPNmet7vye/cMf/mD16tXL8vX1tbp162bdcccdrn+cLctzzqtl2V9rS51XL8uyLHvXUgAAAFrOFXnPCAAAaD+IEQAAYBQxAgAAjCJGAACAUcQIAAAwihgBAABGESMAAMAoYgQAABhFjAAAAKOIEQAAYBQxAgAAjCJGAACAUf8PIlnU49nbLBcAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "X\n", + "\n", + "parking = X.parking\n", + "\n", + "plt.bar(parking, y)\n", + "\n", + "parking.corr(y)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "One input regression model: area and price" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [], + "source": [ + "area = area.to_numpy().reshape(-1,1)\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [], + "source": [ + "y = y.to_numpy().reshape(-1,1)" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.linear_model import LinearRegression\n", + "from sklearn.metrics import mean_squared_error\n", + "from sklearn.model_selection import train_test_split\n", + "\n", + "XTrain, XTest, yTrain, yTest = train_test_split(area, y, test_size=0.2, random_state=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
LinearRegression()
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
" + ], + "text/plain": [ + "LinearRegression()" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lin_reg = LinearRegression()\n", + "lin_reg.fit(XTrain, yTrain)" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mean error: 1.41e+06 (29.6%)\n" + ] + } + ], + "source": [ + "pred = lin_reg.predict(XTest)\n", + "\n", + "mse = np.sqrt(mean_squared_error(yTest,pred))\n", + "print(f'Mean error: {mse:3.3} ({mse/np.mean(pred)*100:3.3}%)')" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAGsCAYAAAAPJKchAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABFG0lEQVR4nO3deXhTVd4H8G9augINS+0Clh1khwK2VGCc0TIFO3WbUUQEBpcZGFCgLsCwWRGLO86AoDjg6yDrvCoqWF8oIANTqQJFagFZyvJiW4RKU7a2NOf9o29i0+YmuVnuknw/z9PngdyT5NyTtPd3z/mdcwxCCAEiIiIilQSpXQEiIiIKbAxGiIiISFUMRoiIiEhVDEaIiIhIVQxGiIiISFUMRoiIiEhVDEaIiIhIVQxGiIiISFUMRoiIiEhVDEaIiIhIVboKRnbt2oWMjAy0adMGBoMBn3zyiaznP//88zAYDI1+mjZt6psKExERkVO6CkauXLmCfv36YenSpW49/5lnnkFJSYnNT8+ePfHAAw94uaZERETkKl0FIyNHjsSLL76I++67z+7xqqoqPPPMM2jbti2aNm2K5ORk7Ny503q8WbNmiIuLs/6UlZWhqKgIjz32mEJnQERERA3pKhhxZsqUKcjLy8O6devw3Xff4YEHHsCIESNw7Ngxu+Xfe+89dOvWDcOGDVO4pkRERGThN8HImTNnsGrVKmzcuBHDhg1D586d8cwzz2Do0KFYtWpVo/LXr1/Hhx9+yF4RIiIilTVRuwLecujQIdTW1qJbt242j1dVVaF169aNyn/88ceorKzE+PHjlaoiERER2eE3wcjly5cRHByMffv2ITg42OZYs2bNGpV/77338Lvf/Q6xsbFKVZGIiIjs8JtgJDExEbW1tTh//rzTHJDi4mLs2LEDn376qUK1IyIiIim6CkYuX76M48ePW/9fXFyMgoICtGrVCt26dcOYMWMwbtw4vP7660hMTMRPP/2E3Nxc9O3bF+np6dbnrVy5EvHx8Rg5cqQap0FERET1GIQQQu1KuGrnzp34zW9+0+jx8ePH4/3330dNTQ1efPFFfPDBBzh37hyio6MxePBgZGVloU+fPgAAs9mM9u3bY9y4cVi4cKHSp0BEREQN6CoYISIiIv/jN1N7iYiISJ8YjBAREZGqdJHAajab8eOPP6J58+YwGAxqV4eIiIhcIIRAZWUl2rRpg6Ag6f4PXQQjP/74IxISEtSuBhEREbnh7NmzuPnmmyWP6yIYad68OYC6k4mKilK5NkREROQKk8mEhIQE63Vcii6CEcvQTFRUFIMRIiIinXGWYsEEViIiIlIVgxEiIiJSFYMRIiIiUhWDESIiIlIVgxEiIiJSFYMRIiIiUhWDESIiIlIVgxEiIiJSlS4WPSMi8ge1ZoH84nKcr7yOmObhSOrYCsFB3G+LiMEIEZECcgpLkPVZEUoqrlsfizeGY35GT4zoHa9izYjUx2EaIiIfyykswaTV+20CEQAorbiOSav3I6ewRKWaEWkDgxEiIh+qNQtkfVYEYeeY5bGsz4pQa7ZXgigwMBghIvKh/OLyRj0i9QkAJRXXkV9crlyliDSGwQgRkQ+dr5QORNwpR+SPGIwQEflQTPNwr5Yj8kcMRoiIfCipYyvEG8MhNYHXgLpZNUkdWylZLSJNYTBCRORDwUEGzM/oCQCNAhLL/+dn9OR6IxTQZAcju3btQkZGBtq0aQODwYBPPvnEYfmPPvoIw4cPx0033YSoqCikpKTgyy+/dLe+RES6M6J3PJY9MgBxRtuhmDhjOJY9MoDrjFDAk73o2ZUrV9CvXz88+uijuP/++52W37VrF4YPH46XXnoJLVq0wKpVq5CRkYG9e/ciMTHRrUoTEenNiN7xGN4zjiuwEtlhEEK4PbndYDDg448/xr333ivreb169cKoUaMwb948l8qbTCYYjUZUVFQgKirKjZoSERGR0ly9fiu+HLzZbEZlZSVatZJO1qqqqkJVVZX1/yaTSYmqERERkQoUT2B97bXXcPnyZTz44IOSZbKzs2E0Gq0/CQkJCtaQiIiIlKRoMLJmzRpkZWVhw4YNiImJkSw3a9YsVFRUWH/Onj2rYC2JiIhISYoN06xbtw6PP/44Nm7ciNTUVIdlw8LCEBYWplDNiIiISE2K9IysXbsWEyZMwNq1a5Genq7EWxIREZFOyO4ZuXz5Mo4fP279f3FxMQoKCtCqVSu0a9cOs2bNwrlz5/DBBx8AqBuaGT9+PN566y0kJyejtLQUABAREQGj0eil0yAiIiK9kt0z8u233yIxMdG6RkhmZiYSExOt03RLSkpw5swZa/l3330XN27cwOTJkxEfH2/9mTp1qpdOgYiIiPTMo3VGlMJ1RoiIiPTH1es396YhIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlXJDkZ27dqFjIwMtGnTBgaDAZ988onT5+zcuRMDBgxAWFgYunTpgvfff9+NqhIREZE/kh2MXLlyBf369cPSpUtdKl9cXIz09HT85je/QUFBAaZNm4bHH38cX375pezKEhERkf9pIvcJI0eOxMiRI10uv3z5cnTs2BGvv/46AKBHjx7YvXs33nzzTaSlpcl9eyIiIvIzPs8ZycvLQ2pqqs1jaWlpyMvLk3xOVVUVTCaTzQ8RERH5J58HI6WlpYiNjbV5LDY2FiaTCdeuXbP7nOzsbBiNRutPQkKCr6tJREREKtHkbJpZs2ahoqLC+nP27Fm1q0REREQ+IjtnRK64uDiUlZXZPFZWVoaoqChERETYfU5YWBjCwsJ8XTUiIiLSAJ/3jKSkpCA3N9fmsa1btyIlJcXXb01EREQ6IDsYuXz5MgoKClBQUACgbupuQUEBzpw5A6BuiGXcuHHW8hMnTsTJkyfx3HPP4ciRI3j77bexYcMGTJ8+3TtnQERERLomOxj59ttvkZiYiMTERABAZmYmEhMTMW/ePABASUmJNTABgI4dO2Lz5s3YunUr+vXrh9dffx3vvfcep/USERERAMAghBBqV8IZk8kEo9GIiooKREVFqV0dIiIicoGr129NzqYhIiKiwMFghIiIiFTFYISIiIhUxWCEiIiIVMVghIiIiFTFYISIiIhUxWCEiIiIVMVghIiIiFTFYISIiIhUxWCEiIiIVMVghIiIiFTVRO0KEJHyas0C+cXlOF95HTHNw5HUsRWCgwxqV4uIAhSDEaIAk1NYgqzPilBScd36WLwxHPMzemJE73gVa0ZEgYrDNEQBJKewBJNW77cJRACgtOI6Jq3ej5zCEpVqRkSBjMEIUYCoNQtkfVYEYeeY5bGsz4pQa7ZXgojIdxiMEAWI/OLyRj0i9QkAJRXXkV9crlyliIjAYIQoYJyvlA5E3ClHROQtTGAl0jBvznqJaR7u1XJERN7CYIRIo7w96yWpYyvEG8NRWnHdbt6IAUCcsS7gISJSEodpiDTIF7NegoMMmJ/RE0Bd4FGf5f/zM3pyvREiUhyDESKN8eWslxG947HskQGIM9oOxcQZw7HskQFcZ4SIVMFhGiKNkTPrJaVza9mvP6J3PIb3jOMKrESkGQxGiDRGiVkvwUEGtwKZQMXl84l8i8EIkcZw1ou2cPl8It9jzgiRxlhmvUjddxtQdzHkrBff4/L5RMpgMEKkMZz1og1cPp9IOQxGiDSIs17Ux+XziZTDnBEijeKsF3Vx+Xwi5TAYIdIwznpRDxOJiZTDYRoiIjuYSEykHAYjRER2MJGYSDkMRojIq2rNAnknLmJTwTnknbio69kmTCQmUgZzRojIa/xxgTAmEhP5nkEIofnbFpPJBKPRiIqKCkRFRaldHSKyw7JAWMM/KJZLNnsSiAKPq9dvDtMQkce4QBgReYLBCBF5jAuEEZEnGIwQkce4QBgReYLBCBF5jAuEEelPTa0ZL3xWhA4zN+Ox97/Btepa1erC2TRE5DHLAmGlFdft5o0YUDcdlguEEakvv7gcD76TZ/NY7pHzqKyqQURosCp1YjBCRB6zLBA2afV+GACbgIQLhBGp73LVDcz413fYfKjE7vEV4wap2nPJYISIvMKyQFjDdUbidL7OCJGefXGoBJM+3G/3WGqPGLz+YH8YI0IUrlVjDEaIyGu4QBiR+g6XmDDyrX9LHl/9WDKGdo1WsEbOMRghIq/iTsNEyhNC4Nev7cTpi1ftHh+T3A7zMnoirIk6OSHOMBghIiLSqW1FZXj8g28lj29+aih6tTEqWCP3MBghIiLSkaobtbhlTo7k8dAmQSjKSkOTYP2s3sFghIiISAf+sbsYCz4vkjy+7k+DMbiTPodIGYwQERFpVPmVagxYsFXy+IB2LfDRX4YoWCPfYDBCRESkMTP/+zus++as5PEdz/waHaObKlgj32IwQkREpAHHz1ci9Y1dksfHpbTHC/f0VrBGymEwQkREpBIhBNL/thtFJSbJMgXzhqNFZKiCtVIegxEiIiKF7T52AY/8Y6/k8QX39sbYwe0VrJG6GIwQEREpoKbWjK6zv3BY5tjCkQjR0ZRcb2EwQkRE5EMf7j2N2R8XSh7/r0eTcHu3mxSskfa4FX4tXboUHTp0QHh4OJKTk5Gfn++w/OLFi3HLLbcgIiICCQkJmD59Oq5fv+7wOURE/qjWLJB34iI2FZxD3omLqDUL508i3am4WoMOMzejw8zNdgORHvFRKM6+C6cWpQd8IAK40TOyfv16ZGZmYvny5UhOTsbixYuRlpaGo0ePIiYmplH5NWvWYObMmVi5ciVuu+02/PDDD/jjH/8Ig8GAN954wysnQUSkBzmFJY12NY7nrsZ+5flPv8f7/zkleXzr9F+ha2xz5SqkEwYhhKywPDk5GbfeeiuWLFkCADCbzUhISMCTTz6JmTNnNio/ZcoUHD58GLm5udbHnn76aezduxe7d+926T1NJhOMRiMqKioQFRUlp7pERJqQU1iCSav3o+EfXMt+xsseGcCARKdOX7yC21/dKXn8gYE349UH+ilXIQ1x9fotq2ekuroa+/btw6xZs6yPBQUFITU1FXl5eXafc9ttt2H16tXIz89HUlISTp48iS1btmDs2LGS71NVVYWqqiqbkyEi0qtas0DWZ0WNAhEAEKgLSLI+K8LwnnEIDjLYKUVa9OA7ecgvLpc8vm9OKlo3C1OwRvolKxi5cOECamtrERsba/N4bGwsjhw5Yvc5Dz/8MC5cuIChQ4dCCIEbN25g4sSJ+Otf/yr5PtnZ2cjKypJTNSIizcovLrcZmmlIACipuI784nKkdNbn3iKBIr+4HA++Y//mGwDmpPfA48M6KVgj/+Dz2TQ7d+7ESy+9hLfffhvJyck4fvw4pk6digULFmDu3Ll2nzNr1ixkZmZa/28ymZCQkODrqhIR+cT5StcS9l0tR8qqNQv0mJeD6htmyTJHFoxAeEiwgrXyL7KCkejoaAQHB6OsrMzm8bKyMsTFxdl9zty5czF27Fg8/vjjAIA+ffrgypUr+NOf/oTZs2cjKKjxhJ6wsDCEhbFri4j8Q0zzcK+WI2X8a9//4pmNByWPrxg3CMN7xkoeJ9fJCkZCQ0MxcOBA5Obm4t577wVQl8Cam5uLKVOm2H3O1atXGwUcwcF10aPM3FkiIl1K6tgK8cZwlFZct5s3YgAQZwxHUsdWSleNGrhcdQO9538pebx960jsfObXMBiY2+NNsodpMjMzMX78eAwaNAhJSUlYvHgxrly5ggkTJgAAxo0bh7Zt2yI7OxsAkJGRgTfeeAOJiYnWYZq5c+ciIyPDGpQQEfmz4CAD5mf0xKTV+2EAbAISyyVtfkZPJq+q6JWcI3h75wnJ45ufGopebYwK1iiwyA5GRo0ahZ9++gnz5s1DaWkp+vfvj5ycHGtS65kzZ2x6QubMmQODwYA5c+bg3LlzuOmmm5CRkYGFCxd67yyIiDRuRO94LHtkQKN1RuK4zohqzl26hiGLtkseT+8Tj6VjBihYo8Ale50RNXCdESLyF7VmgfzicpyvvI6Y5nVDM+wRUdaEVfnYcfQnyeP5f70TMVHM3/EGn6wzQkREngkOMnD6rgoKzl7CvUv3SB5/eng3PHlnVwVrRPUxGCEiIr9kNgsMfHErfr5aI1nm8AsjEBHK/EW1MRghIiK/8vl3P2LKmgOSx5c8nIjf9W2jYI3IGQYjRBrG/AIi11yrrkWPeTmSx6ObhSH/r3ciiL8/msRghEijcgpL8Pyn36PU9Ms+TXFRYXj+7l6ceUH0//6WewxvbP1B8vgnk4egf0IL5SpEbmEwQqRBOYUlmLh6f6PHS01VmLh6P5Zzh1cKYGWm60h+KVfy+K9vuQnvT0hSsEbkKQYjRBpTaxaY+dEhh2VmfnSIO7xSwJn84X5sPlQieXzPzDvQtkWEgjUib2EwQqQxX5+4iEsOsv8B4NLVGnx94iKGdI1WqFZE6vj+xwqk/2235PHJv+mMZ9O6K1gj8gUGI0Qak3fygsvlGIyQPxJCYOjLO3Du0jXJMoVZaWgWxkuYv+AnSaQ5rg69cIiG/MvWojI88cG3ksdff6Affj/wZgVrREphMEKkMSmdW2PJjuMulSPSu+s1teg+V3pKbkRIMAqz0pgf5ecYjBBpzOBOrdEiMsRh3kjLyBAM7sRghPRrxa6TWLjlsOTxDX9OQVLHVgrWiNTEYIRIY4KDDFh0fx+7U3stsu/vwztF0p2Ll6sw8MVtkseTOrTChokpCtaItILBCJEGjegdj+WPDMDznxah1PTLdvPx3G6edOiZjQfxr33/K3n8q2d/jfatmypYI9IaBiNEGjWidzyG94zjcvCkS1+fvIiH3v1a8viEIR0wP6OXgjUiLWMwQqRh3G6e9EQIgY6ztjgsc3D+b2GMCFGoRqQXDEaIiMgj//z6NOZ+Uih5fHpqN0xN7apgjUhvGIwQEZFszqbkAsDRF0cgrEmwQjUiPWMwQkRELnOWjPrSfX3wcHI7BWtE/oDBCBEROeRsl1wAKM6+CwYDk6vJPQxGiIjIrmGvbMfZcun9YTZOTMGtHbgwGXmOwQgREVkdOPMz7nv7P5LHWzcNxb65wxWsEQUCBiNERIQOMzc7PL5n5h1o2yJCodpQoGEwQkQUoP573//i6Y0HJY9n9GuDv49OVLBGpLRas9DEwooMRoiIAkhNrRldZ3/hsMzhF0YgIpRTcv1dTmEJsj4rQkmF+ltOMBghIgoAWZ99j1V7Tkken5PeA48P66RchUhVOYUlmLR6P0SDx0srrmPS6v1Y9sgARQMSBiNERH7qvOk6kjgllxqoNQtkfVbUKBABAAHAACDrsyIM7xmn2JANgxEiIj/jLBn1n48lYVjXmxSqDWlNfnG5zdBMQwJAScV15BeXK7Y3FoMRIg3TSnIZad//fF+KP/1zn+TxkGADji28S8EakVadr5QORNwp5w0MRog0SkvJZaRdznpBNj81FL3aGBWqDelBTPNwr5bzBgYjRBqkteQy0paFm4uw4t/FDsucWpSuUG1Ib5I6tkK8MRylFdft5o0YAMQZ63pilcJghEhjtJhcRupzZUruN7NTcVPzMIVqRHoVHGTA/IyemLR6PwyAzd8ay1+U+Rk9Ff37wmCENMXfcyRcOT9vJpf5e3sGgl+9sgNnyq9KHu8ZH4UtU4cpWCPyByN6x2PZIwMaDQXHcZ0RCnT+niPh6vl5K7nM39vTn5VWXMfgbMdTck+8dBcDS/LIiN7xGN4zThM3LAYhhL3eYE0xmUwwGo2oqKhAVFSU2tUhH5DKkbD8Sug9R0LO+eWduIjRK752+pprnxgs2TPi7+3pr5wloz55Rxc8/dtbFKoNkedcvX6zZ4RU5+85EnLPz9PkMn9vT3+z5/gFjHlvr8MyTEYlf8dghFSnxQV4vEnu+XmaXObv7elNaubUOOsF+eDRJPyqGxcmo8DAYIRUp8UFeLzJnfPzJLnM39vTW9TIqbnv7T04cOaSwzLsBaFAxGCEVKf2Ajy+vjt29/zcTS5Tuz31wJN1XOR+X27UmtHFyZTcPTPvQNsWEXJPg8hvMBgh1am5AI8Sd8eenF9wkEH2UIoWFzTSEk9yauR8X5wNwwDsBSGyCFK7AkSWHAngl5wIC18uwGO5O26YX2G5O84pLPHK+yh9fmq1p17Iyampz5Xvy9nyq+gwc7PDQOTwCyNwalE6AxGiehiMkCZYciTijLZDB3HGcJ9MQ3V2dwzU3R3Xmr0z813p81P6/fTEnZwaZ98XAWDi6v0Y9soOu6/VqmmoNQCJCA2WX2kiP8dhGtIMJRfgUWPGidILDGlpQSMtcSenxtn3RQp7P4hcw2CENMWdHAl3qDXjRKnzU+v99MCdnBo534Mpv+mCZ9KkFybjEv1EjTEYoYDEGSeBy511XLK3HHHptR2tigtwiX4iKcwZoYBkuTuWuh81oO4iEagzTvydKzk1ZrOwJqOWmhz3jLjyfVEqYZpIj9gzQgHJl1toa6EbXgt10DqpnJrOf90i63Vc+b5wiX4ixxiMUMDyxRbaWuiG10Id9MKSU3O2/KrkTBiL/XOHI7/4olvfFy7RT+QYd+2lgOetXgQt7JQrVQeLtx9OxF192/i0DnrizsJk7nxfNhWcw9R1BU7f662H+uOe/m2dliPSC+7aS3ax+74xb8w40UI3vKM6WExZewBLYMBdfQO3h2Tl7mK88HmRwzLF2XfBYLD/ObnzfWHCNJFjDEYCCLvvfUcL3fCurIVhFsBf1uzH8qDAW/jMWS9It9hm+J/pt/vkvZVcop83HKRHDEYChCcbg5FzWtgpV85rB0qyZLc5X6D6htlhGSUWJvNlwnR9vOEgveLU3gCg9NLngUgL3fByXtve3iv+QohfpuRKBSLPjbhF8f1hfL1EP6cOk5651TOydOlSvPrqqygtLUW/fv3w97//HUlJSZLlL126hNmzZ+Ojjz5CeXk52rdvj8WLF+Ouu+5yu+LkOi0MIfg7LeyUa6mDq8uW+7KXRg162CXXV0v0ayFnicgTsoOR9evXIzMzE8uXL0dycjIWL16MtLQ0HD16FDExMY3KV1dXY/jw4YiJicG//vUvtG3bFqdPn0aLFi28UX9ygRaGEPydUt3wrtRh4ur9LpX3h2TJ86brSHop12GZ7U/fjk43NVOoRs75Yol+3nCQ3skORt544w088cQTmDBhAgBg+fLl2Lx5M1auXImZM2c2Kr9y5UqUl5fjP//5D0JCQgAAHTp08KzWJIsWhhACgS/WLXGnDm8/nIgpaw/A0aib3leX1UMviJJ4w0F6JysYqa6uxr59+zBr1izrY0FBQUhNTUVeXp7d53z66adISUnB5MmTsWnTJtx00014+OGHMWPGDAQH299Ku6qqClVVVdb/m0wmOdWkBrQwhBAotLBT7l192+Cxs5ew4t/FkmXu7hevu+76f+37Xzyz8aDDMidfugtBOjsvb+ANB+mdrGDkwoULqK2tRWxsrM3jsbGxOHLE/kZSJ0+exPbt2zFmzBhs2bIFx48fx1/+8hfU1NRg/vz5dp+TnZ2NrKwsOVUjB7QwhBBI1N4pt9Ys8Pl3jpMVPz1YgudG9NDFZ85eEOd4w0F65/OpvWazGTExMXj33XcRHByMgQMH4ty5c3j11Vclg5FZs2YhMzPT+n+TyYSEhARfV9WvaWEIgZThynojWs8fuHXhNvxUWeWwTKAHIPXxhoP0TlYwEh0djeDgYJSVldk8XlZWhri4OLvPiY+PR0hIiM2QTI8ePVBaWorq6mqEhoY2ek5YWBjCwsLkVI1coIUhBD3S2yJSSuUP+KJdnPWCjBqUgJf/0Nej9/BXvOEgPZMVjISGhmLgwIHIzc3FvffeC6Cu5yM3NxdTpkyx+5whQ4ZgzZo1MJvNCAqqW9bkhx9+QHx8vN1AhHxL7SEEvdHjIlJK5A94s104DOM9vOEgvZK9Ud769esxfvx4vPPOO0hKSsLixYuxYcMGHDlyBLGxsRg3bhzatm2L7OxsAMDZs2fRq1cvjB8/Hk8++SSOHTuGRx99FE899RRmz57t0ntyozxyhbfv1JXY+M4XvQu1ZoGhL293mj+we8Ydqm0IWHGtBv2y/sdhmf+edBsGtm8pu35EpB0+2yhv1KhR+OmnnzBv3jyUlpaif//+yMnJsSa1njlzxtoDAgAJCQn48ssvMX36dPTt2xdt27bF1KlTMWPGDDdOi8g+b/dgKLGIlK96XXyZP+Bpu7AXhIjskd0zogb2jJAjvujByDtxEaNXfO203NonBrs17KVEr4svgh132uXL70vx53/uc1j+6IsjENbE/lR/ItIvn/WMEGmJr3owfJkEqtTS3b7IH5DTLuwFISJXMRghXfPVMti+TAJVculubycsu3q+U9cVSB5jABI49DYTjdTDYIR0zVc9GL5cRErPS3c7axcpQ7q0xoePD/ZZvUh79DgTjdQT5LwIkXb5qgfDkgQK/JLHYeFpEqiel+6u3y6uOLUoHacWpTMQCTCWnKiGPYClFdcxafV+5BQ6XiGYAg+DkQBWaxbIO3ERmwrOIe/ERdQ62llNoyx36lIhgQHubwpnWUQqzmgbFMQZwz1KMPWkzmp/ZteqazHRTuJtfUseTrQGIRR4nOVEAXU5UXr8e0O+w2EanfHWGKy/dKH6ehlsXySBultnNT8zV5JRT7x0F/MBSNGcKPIfnNqrI+5ejBoGMD9fqcbkNb6dVqo0PQZXcursq6nAjoLbHUfOY8L73zh8/sF5v4UxMkT2+5L/2lRwzmECs8VbD/XHPf3b+r5CpCpO7fUzUhcjyxis1MXI3gUvyACfTytVmh6XwXa1zr6aCiwVDDnbZA/gjBiSpuecKFIPgxEdcPdiJBXAOBqq1XMXqh733XGlzt7o9na1d8zR+zAAIVf4ciYa+S8GIzrgzsXIUQDjCi1OKw1Unk4FltM7Zg+DEJLD13lc5J84m0YH3LkYOQtgnGEXqnZ40u0tNcXSlYkMa58YzECE3OKrmWjkv9gzogPuXIzc7dlgF6r2uNvtzd4xUpMe87hIPQxGdMCdi5E7PRvsQtUmd7u92TvmPi5j7h16zOMidTAY0QF3LkauLNsdZLDtro/T+FTYQGbp9m6Y+2HvM9v1w08YtzLf7fcK9N4xPU4TJ9I7rjOiI3L/SFryBQD7AczShxPRsmkY7/50xNEduysLkzmj57VmvMFX67kQBSpXr98MRnRGbvcx7/L8269e2YEz5VcdlmnYm1Zfw96xQP5u1JoFhr68XXJoy9JjtHvGHQzaiVzERc/8lNwxWCaR+SdXekFOLUq33ulLDe8tGc3eMQsuY06kHgYjfkSq14RJZP7B1QCkPjm5JoHO0/VciMh9DEb8BIdj9EPOUJsQAh1nbXH4ev0SWmDT5CGSx9k75houY06kHgYjfsDdfWtIea4Gje70gjjC3jHnuIw5kXoYjOicrzZRI+9zFjROS+2KN7cdc/gaax5Pxm1don1XST/nqFeKy5gTqYfBiM4x6U4fnAWNABwGIoG+LLs3FiFzpVeKOTZE6mAwonNMutMHd1ZDPfHSXbwLh3fyoeQMZTLHhkh5DEZ0jkl3+iAnGAz0XpD6vJEP5c5QJnNsiJTFYETnmHSnfXJWRv3wsWSP3suf9lTxVj4UhzIpkOj1bwCDEZ1j0p12ubM8+9MbD+L5u93LTfC36d3eCiI4lEmBQs9/A4LUrgB5zpJ0F2e0HYqJM4ZzWq/COszcbP2R4igsLDPVDT/kFJbIel/LcEbDi7dlOEPu62mBt4IIDmVSIND73wD2jPgJJt2p5/j5SqS+scthmTnpPfD4sE7IKSzB859+j1JTld1y7kzHVmt6t6+7g70VRHAok/ydPyzxwGDEjzDpTlnuLs/ePDwEY97bK/kcuTkMrg5nvLn1KIZ0uckrQYMS3cHeCiI4lEn+zh/yohiMEMnw4PI85J8qd1im6IU0RIZK/2pduGy/V6Qhb+c6LNlxAkt2nPA4aFBqxV9vBhFcP4T8mT/kRTEYIXKBN5dn93YOg9xcB0+CBqW7g70ZRATaUKZeZ1WQfP6QF8VghEiCt/eHsfB2DoOz12vIk6BBje5gbwYRgTKUqedZFSSfP+RFcTYNUQPOZsMAdUGIu4uTWYYfgMYza9zJYXD0elLqBw1yqNUdbAki7unfFimdW/MO3wG9z6og+bz9N0UN7BnRKX/pgnX3PLx9/r7qBWnIUu+qG2ZMS+2GtflnUGryPIdBajjDGblBgz90B/szf5hVQe7Re14UgxEd0mMXrL3gYWtRqVvn4a3zv3C5CoNe3OawzMPJ7fDSfX1cfk1H7NU7LioM01O7okN0U4+DqvrDGXuOX8CSHcedPkdu0OAP3cH+zB9mVZD79JwXZRBCuDLMrCqTyQSj0YiKigpERUWpXR1VSc1ksHzVtLjImb2LcIvIEFy6WtOorLPz8Mb5K9ULUp/Sn1utWWDoy9udBg27Z9zh1u63k1bvB2B/hosWv4OBYlPBOUxdV+C03FsP9cc9/dv6vkIU8Fy9fjNnREdc2YY+67Mi1Jq1E19KjV/bC0QAx+fhyfkv3FzkNBckf/adHuWCSFHjc/PlGDJX/NUuDqORXnGYRkf01gXr6CLsiNR5uHP+avSCNKTW5+bLMWQ9dwf7Mw6jkV4xGNERvS1s4+wi7EzD83D1vEav+NppGV8HIPWp+bn5MmgIlGmyesLVZkmvGIzoiN66YD29uDY8D2+c16lF6ag1C+SduKjYHb3anxuDhsCi91kVFJgYjOiI3rpg3b24Sp2H3MW9LOr3gqgxE0lvnxvpH4fRSG+YwKojelvYxnIRllMbR+dhOX9XApHBnVo1SkZVazEovX1u5B+4UBzpCaf26pCe1hmRmgZq0TQsGFeqaq3/d3QeniSjWqa6SuWweDLV1VV6+tyIiLzB1es3gxGd0tMKrPYuwvW1ahqKe/u3wfCecY3O45MD5zBtfYHD13/l933x+4E3Ozz/vBMXXUpsXfvEYJ/mV+jpcyMi8pSr12/mjHiRkhcaPSUlWsavl2w/jje3/dDo+M9XqrFqzymb9nKlF2R6ajd0iI50KTdFKzOR9PS5aRUDOiL/w2DES9gF79y6b87YfdyyZ8bE/x/OcVX9wMZZW6s9o4W8g79nRP6JCaxewF0ynXNl4S9PlDhpa2fJtAbUXdQ4o0W7+HtG5L8YjHhIj0u0q8Gd4Y+1TwyWVV5Auq2DgwyYm95DcmotwBktWsbfMyL/xmDEQ3KW+g5krg5/RDcLtU7JdSeAkWrrnMISLNh82O5ztLynimWBtk0F55B34mLAXmz5e0bk35gz4iGtJEb6midJg64kowJ1wyS7Z9xh/X900zC36lpacc3m/1I75lrMTddmvoHd3Y4jQjBhSAdMuaNrQPXiBMrvGVGgYjDioUBIjHQnafA/Jy7g4RV7Zb3P3PQGwyRuXmvLr1Rb/+1ssz4DgAWbi5DWO05TF3epAOrStRq8ue0YVv3nFBbd30eTQZQvBMLvGVEg4zCNh/w9MVJu0mCHmZvRYeZm2YEIALRsGmrz/wuXq+RXGECrZr/0qOite7/WLLDn+AXM/O9DDpN6L12tCaikTX//PSMKdOwZ8ZA/7pJpGZIprbiGBZsPSyYNGlCXNPjC50X48ZLn3eMNu9jdvcuNi/rleXrq3ne2OFxDloTd4T211avjC/74e0ZEv3CrZ2Tp0qXo0KEDwsPDkZycjPz8fJeet27dOhgMBtx7773uvK1mWXbJjDPaXjy1nBgpJaewBENf3o7RK77G9A0HbYY8GrL0KjgKRE68dBfmpvdw6b0bBh/u7G3T8O5YL937Uj1QzmipV8fX/On3jIhsye4ZWb9+PTIzM7F8+XIkJydj8eLFSEtLw9GjRxETEyP5vFOnTuGZZ57BsGHDPKqwVvnDLpnOEj1dZdkfxhLYOLvASu1a6+hu2N5rAI3vjvWwY66zvBZntNCroxR/+D0josZk94y88cYbeOKJJzBhwgT07NkTy5cvR2RkJFauXCn5nNraWowZMwZZWVno1KmTRxXWKr0vUe3pBRGAzS65rt7pO+til7obblhU6u5YDzvmOstrcUbtXh2lcTdaIv8jq2ekuroa+/btw6xZs6yPBQUFITU1FXl5eZLPe+GFFxATE4PHHnsM//73v52+T1VVFaqqfkleNJlMcqqpOH9YotrdC2K8MRxfPfsb7Dv9MzYVnENM83AMbN/S5cAmzoV2snc3PLB9S+w7/bNLwZ8loGn4Gbny3kpwt2dDC706RETeICsYuXDhAmpraxEbG2vzeGxsLI4cOWL3Obt378Y//vEPFBQUuPw+2dnZyMrKklM11UgNbVhmm+hlLFvuBdFy2b+7Xzxuf3WHzUW+eXgTVF6/4fQ15qb3wB+HdHTpztbeBnNyNpzTcve+Oz0bWunVsUfvvYREpDyfzqaprKzE2LFjsWLFCkRHR7v8vFmzZiEzM9P6f5PJhISEBF9U0SPOlqi2zDZRe7aDKxeHqesKZL1mnDEcd/eLx7u7ihudvyuBCABENw9TtF20umOus7wWADAYAFHvoFZ6dRryh15CIlKerGAkOjoawcHBKCsrs3m8rKwMcXFxjcqfOHECp06dQkZGhvUxs9lc98ZNmuDo0aPo3Llzo+eFhYUhLMy91TeVJGcNC7Uugo4uDofOVWDpjhMuv1arpiGY+7teiIuqGya5/dUdHuWYBFqugxRXpq0uHZ2Ilk3DNN3b4C+9hESkPFnBSGhoKAYOHIjc3Fzr9Fyz2Yzc3FxMmTKlUfnu3bvj0KFDNo/NmTMHlZWVeOuttzTZ2yGH1tewkLo4lFRcx8TV+11+HcsFcnxKB2vi6Den3E+6ZK5DY1rPa3FGL72EruJQE5GyZA/TZGZmYvz48Rg0aBCSkpKwePFiXLlyBRMmTAAAjBs3Dm3btkV2djbCw8PRu3dvm+e3aNECABo9rkdaXsPCndkx8cZwuwGGMTIEAPDmtmPWx1pEhLhVLy3nOqhNy3ktzuihl9BVHGoiUp7sYGTUqFH46aefMG/ePJSWlqJ///7IycmxJrWeOXMGQUGBscq8ltewcHV2THhIEBaP6u9wGu6lqzWNH7vW+DFX6OVOXy328lr0cJeu9V5CV3GoiUgdBiGEp2tc+ZzJZILRaERFRQWioqLUro4Nyx8vwP5Yvxp/vFzdJRcA3hzVH6/kHPFonQtXyZk9Q3X0cpeed+IiRq/42mm5tU8M1mzPSK1ZOFykz3JzsXvGHfwOE7nI1et3YHRh+JCjJaqXPjwAxohQbCo4h7wTF1Fr9l3cd6XqhnWTOjnKL1f5PBCxbGLGQEQeuZsUqskfNrLT26aKRP6EG+V5gb2x/p+vVGHBZt/f0coNPuqLN4ajVYOdct3RIiJEctjGcnGam95D80MNWqK3hFB/2MjOX4aaiPSIwYiX1B/rzyksweQ1B3w27pxfXI4H35Fe8dZVD93aDnHGCI9fZ+nDAxAUZMC2olJ8XHAO5Vd+CUws65Es2HxY80MNWqLHhFC9zwjSckI6kb9jMOJlvryjdaUX5NSidGwqOOfSImYdoiNdWnBLimUMffD/7w+S0rk1ZozsgX/mncLp8qto3yoSMVHheGqt7wIzf6XXu3Q9zwjSckI6kb9jMOIF9Wc7XKh0nIMh9452wedF+MfuYodlLJvTWepyobLKQel6z7twVdbOuPbU73q3l2wZZLD/mt4catDDbBO59HyXLmelWy19dv4w1ESkVwxGPGTvAuwKZ3e0znpBRvSKw/KxAz2qy7pvzmDKHV0ku9cdaREZgkX397H2akhNiXSUs+uNoQa9zDaRKxDu0rX42el9qIlIrxiMeEDqAuwKe3e0vebl4Ep1rcPn1e8F8bQu9QMBS/f6+3uKsWDzYafPXTp6AIZ0rdtvyJ0F1upzd6jBn9eE8Pe7dC1/dnoeaiLSKwYjbnL3AtzwjvZGrRldZn/h8DkfPp6MIV2kNxr0JBioHwgEBxkwNqUDFm457LBHI8gA3FrvjtzVBdakuDPUoLfZJu7w17t0PXx2Wt1UkchfMRhxkzsX4Pp3tJ3/usVpealeEG/UxaJhILDv9M8OAxGgbujlb7nHMKRLNJI6tnK7Z8OToQY9zjZxhz/epQfKZ0dErmMw4iZ3LsDRzULx0+Vqh5vUfZ+VhqZh8j4Wd+oiFQi4+lpLdhzHkh3HEW8Mx0O3tnPr/QH3hxr0OtvEHf52lx5Inx0RuYbBiJtcHVqYm97DmoPx0+VqyXKu9oJ4UhcLR4GA3NcqrbiOxdt+QIvIEFRcrZEcKgoy2CazGiNDMOG2jhjeM07W+8mtpxZnmwQ6fnZE1BCDETe5uj6Ho2RQTwIQd+pi0SIyBNn1ZsLYey1Xh30sY/yGev+2l2y5ZHQijp2/jJV7ilFx7QYuXa3Bm9t+wNr803j+7l6y8x/8cbaJo2muWpoC6yl//OyIyDMMRtxkme3gaMjFnjHJ7bDwvj4+qYura4WENQmS7JEIDjLg7n7xeGeX47VN6hMAfr5ag+mpXbHum7N2ky0B4M1txxo9t9RUhYmr92O5zNkT/jbbxNE0VwCamwLrCX/77IjIc9y11wO1ZoE+z3+Jq06m4wLe6wVxJKewBH/9uBDlV6SHgyykdk/1ZLryWw/1x+/6tml0Bw8AA1/ciktX7e9fA9T11uybM1z2BUiLa1XIJdXmjgJLNXeF9hZ/+OyIyDFXr9/sGXGTEAK3v7rDpUDkw8eSFahR3cyLa9W1mL7hoNOy9pIDPV0vJKZ5uN1kyz3HLjgMRADg0tUafH3ionXtElfpfbaJs2muUrQyBdYTev/siMh7GIzI9NUPP2H8ynxZz8k7eUH2RdZdrm58Zy850N0pws7G+PNOXnDpddxtJz3PNvFkWrY/TIHV82dHRN4TsMGInITA6htmdJvjeGEyx5S70/MkOdDdKcKAszF+V89f/3fEchNNvTF9lVNgiUjvAjIYcXWs+p95pzB30/eSrzNrZHdkf3HE6fspeefnSXKgO1MpXVkNNKVzayzZcdzpa+n9DtmdHAhvTF/lFFgi0ruAC0ac7Ynx2gN98fTG7ySf36etEZ9OGQKDwYBas8Cyr044zIdoGRmCwZ2Uvci6u4z49iOlTl873hiO1/7QDxeuVLk8xj+4U2u0iAzxajtpbaqru3utyJ2WXR+nwBKRvwio2TS1ZoGhL293a4x+W+bt6BLTrNHjOYUlDqf3yp2y6k1yh6K6z/3C6VLwfx+diIx+bWTXxZvtpLVZGM6+V5agYfeMO+y2vyWQARr3ZAk7/7b8H9D3bBoi8n+uXr+DFKyT6uQmCz50awJOLUrHqUXpdgMRrbMkB97Tvy1SOrd22HPwz7xTTgMRADhvci8/YUTveCx/ZADiomyHFOKN4bIDkUmr9zf6HC09EDmFJW7VzxNy9lqxx9KTFWe0bZu4/2+b5RLHGIgQkb8IqGEaVxP9Ft7XG2OS2zstZ5mWKUVPUy9Pl1/1ajl7PJ3KqdXdXr2x14qztuEUWCLyZwEVjLia6Ncp2rVeEH/afbR9q0iXy3mSr+HJVE6ttre39lpx1DacAktE/iygghFv74nhT7uPjk3pgIVbDjscqjEYgNjmYY3yI5TK19Bqe3OvFSIizwRUzohl2ivQeEULd/bE8KfdR0ObBOGJYR0dlhECmLKuQLV8Da22t7e/V0REgSagghHAcbKg3IRAyx2xo6W+4nV0R/zciB6IDA2W/TxLb0DWZ0WodSUL1k1abm9vfq+IiAJNQA3TWHhrTwxf7T6q1hoa+cXlLu21Y48S+Rpa3+2Ve60QEbknIIMRwHsJge4uMCZFzTU09LA0ubfb29uYaEpEJF/ABiPe5K07YndX8fQWvSxNzh4IIiL/wmDESzy9I9bCGhp6WpqcPRBERP4j4BJYtcrTVTy9wZVZIY6OccYIERG5g8GICmrNAnknLmJTwTnknbiIWrPQzBoaXJqciIiUxmEahUklqD50a4JLz9dCTgbzNYiIyJsYjCjIUYLqm9uOoUVkCCqu1mhiFU8uTU5ERErhMI1CXElQtWBOBhERBRIGIwpxJUH10tUaTEvtxpwMIiIKKBymUYiriacdoiOxe8YdzMkgIqKAwWBEIXI2eWNOBhERBRIO0yhEy5u8ERERqYnBiEK4zTwREZF9DEYU5Ok28/YWSyMiItI75owozN1N3tTczZeIiMiXDEIIzd9em0wmGI1GVFRUICoqSu3qKE5qsTRL+MJpv0REpEWuXr85TKNxzhZLA+p28+WQDRER6RWDEY3Twm6+REREvsRgROO0spsvERGRrzAY0Tg5i6URERHpEYMRjeNiaURE5O8YjGgcF0sjIiJ/x2BEBzxdLI2IiEjLuOiZTri7WBoREZHWMRjREe7mS0RE/ojDNERERKQqt4KRpUuXokOHDggPD0dycjLy8/Mly65YsQLDhg1Dy5Yt0bJlS6SmpjosT0RERIFFdjCyfv16ZGZmYv78+di/fz/69euHtLQ0nD9/3m75nTt3YvTo0dixYwfy8vKQkJCA3/72tzh37pzHlSfv4q7ARESkBtkb5SUnJ+PWW2/FkiVLAABmsxkJCQl48sknMXPmTKfPr62tRcuWLbFkyRKMGzfOpfcM9I3ylMBdgYmIyNt8slFedXU19u3bh9TU1F9eICgIqampyMvLc+k1rl69ipqaGrRqJb1IV1VVFUwmk82Pr7A34JddgRvugVNacR2TVu9HTmGJSjUjIqJAIGs2zYULF1BbW4vY2Fibx2NjY3HkyBGXXmPGjBlo06aNTUDTUHZ2NrKysuRUzS3sDXC+K7ABdbsCD+8Zx2nERETkE4rOplm0aBHWrVuHjz/+GOHh0nupzJo1CxUVFdafs2fPer0u7A2ow12BiYhIbbJ6RqKjoxEcHIyysjKbx8vKyhAXF+fwua+99hoWLVqEbdu2oW/fvg7LhoWFISwsTE7VZGFvwC+4KzAREalNVs9IaGgoBg4ciNzcXOtjZrMZubm5SElJkXzeK6+8ggULFiAnJweDBg1yv7Ze4i+9Ad7Id+GuwEREpDbZK7BmZmZi/PjxGDRoEJKSkrB48WJcuXIFEyZMAACMGzcObdu2RXZ2NgDg5Zdfxrx587BmzRp06NABpaWlAIBmzZqhWbNmXjwV1/lDb4C38l0suwKXVly321NkQN0eONwVmIiIfEV2zsioUaPw2muvYd68eejfvz8KCgqQk5NjTWo9c+YMSkp+ybdYtmwZqqur8Yc//AHx8fHWn9dee817ZyGT3nsDvJnvwl2BiYhIbbLXGVGDt9cZqTULDH15u9PegN0z7tDcRdhSd6lhJnfrzplFRETkba5evwNyozxLb8Ck1fthAGwCEq33BsjJd5GzqR53BSYiIrUEZDAC1F18lz0yoFFvQJzGewN8me/CXYGJiEgNARuMAPrsDdB7vgsREVFDAR2MAPrrDeDsFyIi8jeKrsBKnuPsFyIi8jcMRnTIku8SZ7QdiokzhmPZIwM0m+9CRERkT8AP0+iVHvNdiIiI7GEwomN6y3chIiKyh8M0REREpCoGI0RERKQqBiNERESkKgYjREREpCoGI0RERKQqBiNERESkKgYjREREpCoGI0RERKQqBiNERESkKl2swCpE3f60JpNJ5ZoQERGRqyzXbct1XIougpHKykoAQEJCgso1ISIiIrkqKythNBoljxuEs3BFA8xmM3788Uc0b94cBoP6G8GZTCYkJCTg7NmziIqKUrs6usF2cw/bzT1sN/ew3dzDdrNPCIHKykq0adMGQUHSmSG66BkJCgrCzTffrHY1GomKiuKXzg1sN/ew3dzDdnMP2809bLfGHPWIWDCBlYiIiFTFYISIiIhUxWDEDWFhYZg/fz7CwsLUroqusN3cw3ZzD9vNPWw397DdPKOLBFYiIiLyX+wZISIiIlUxGCEiIiJVMRghIiIiVTEYISIiIlUFZDCSnZ2NW2+9Fc2bN0dMTAzuvfdeHD161KbM9evXMXnyZLRu3RrNmjXD73//e5SVldmUOXPmDNLT0xEZGYmYmBg8++yzuHHjhk2ZnTt3YsCAAQgLC0OXLl3w/vvv+/r0FLNo0SIYDAZMmzbN+hjbTdq5c+fwyCOPoHXr1oiIiECfPn3w7bffWo8LITBv3jzEx8cjIiICqampOHbsmM1rlJeXY8yYMYiKikKLFi3w2GOP4fLlyzZlvvvuOwwbNgzh4eFISEjAK6+8osj5+UJtbS3mzp2Ljh07IiIiAp07d8aCBQts9rlguwG7du1CRkYG2rRpA4PBgE8++cTmuJJttHHjRnTv3h3h4eHo06cPtmzZ4vXz9RZH7VZTU4MZM2agT58+aNq0Kdq0aYNx48bhxx9/tHmNQGw3nxABKC0tTaxatUoUFhaKgoICcdddd4l27dqJy5cvW8tMnDhRJCQkiNzcXPHtt9+KwYMHi9tuu816/MaNG6J3794iNTVVHDhwQGzZskVER0eLWbNmWcucPHlSREZGiszMTFFUVCT+/ve/i+DgYJGTk6Po+fpCfn6+6NChg+jbt6+YOnWq9XG2m33l5eWiffv24o9//KPYu3evOHnypPjyyy/F8ePHrWUWLVokjEaj+OSTT8TBgwfF3XffLTp27CiuXbtmLTNixAjRr18/8fXXX4t///vfokuXLmL06NHW4xUVFSI2NlaMGTNGFBYWirVr14qIiAjxzjvvKHq+3rJw4ULRunVr8fnnn4vi4mKxceNG0axZM/HWW29Zy7DdhNiyZYuYPXu2+OijjwQA8fHHH9scV6qN9uzZI4KDg8Urr7wiioqKxJw5c0RISIg4dOiQz9vAHY7a7dKlSyI1NVWsX79eHDlyROTl5YmkpCQxcOBAm9cIxHbzhYAMRho6f/68ACC++uorIUTdlzAkJERs3LjRWubw4cMCgMjLyxNC1H2Jg4KCRGlpqbXMsmXLRFRUlKiqqhJCCPHcc8+JXr162bzXqFGjRFpamq9PyacqKytF165dxdatW8Xtt99uDUbYbtJmzJghhg4dKnncbDaLuLg48eqrr1ofu3TpkggLCxNr164VQghRVFQkAIhvvvnGWuaLL74QBoNBnDt3TgghxNtvvy1atmxpbUvLe99yyy3ePiVFpKeni0cffdTmsfvvv1+MGTNGCMF2s6fhRVXJNnrwwQdFenq6TX2Sk5PFn//8Z6+eoy/YC+Iays/PFwDE6dOnhRBsN28KyGGahioqKgAArVq1AgDs27cPNTU1SE1NtZbp3r072rVrh7y8PABAXl4e+vTpg9jYWGuZtLQ0mEwmfP/999Yy9V/DUsbyGno1efJkpKenNzo3tpu0Tz/9FIMGDcIDDzyAmJgYJCYmYsWKFdbjxcXFKC0ttTlvo9GI5ORkm7Zr0aIFBg0aZC2TmpqKoKAg7N2711rmV7/6FUJDQ61l0tLScPToUfz888++Pk2vu+2225Cbm4sffvgBAHDw4EHs3r0bI0eOBMB2c4WSbeSPv7v1VVRUwGAwoEWLFgDYbt4U8MGI2WzGtGnTMGTIEPTu3RsAUFpaitDQUOsXziI2NhalpaXWMvUvqJbjlmOOyphMJly7ds0Xp+Nz69atw/79+5Gdnd3oGNtN2smTJ7Fs2TJ07doVX375JSZNmoSnnnoK//Vf/wXgl3O3d9712yUmJsbmeJMmTdCqVStZ7asnM2fOxEMPPYTu3bsjJCQEiYmJmDZtGsaMGQOA7eYKJdtIqoze2xCoy4ebMWMGRo8ebd0Ij+3mPbrYtdeXJk+ejMLCQuzevVvtqmje2bNnMXXqVGzduhXh4eFqV0dXzGYzBg0ahJdeegkAkJiYiMLCQixfvhzjx49XuXbatWHDBnz44YdYs2YNevXqhYKCAkybNg1t2rRhu5Fiampq8OCDD0IIgWXLlqldHb8U0D0jU6ZMweeff44dO3bg5ptvtj4eFxeH6upqXLp0yaZ8WVkZ4uLirGUazhKx/N9ZmaioKERERHj7dHxu3759OH/+PAYMGIAmTZqgSZMm+Oqrr/C3v/0NTZo0QWxsLNtNQnx8PHr27GnzWI8ePXDmzBkAv5y7vfOu3y7nz5+3OX7jxg2Ul5fLal89efbZZ629I3369MHYsWMxffp0a88c2805JdtIqoye29ASiJw+fRpbt2619ooAbDdvCshgRAiBKVOm4OOPP8b27dvRsWNHm+MDBw5ESEgIcnNzrY8dPXoUZ86cQUpKCgAgJSUFhw4dsvkiWr6olotOSkqKzWtYylheQ2/uvPNOHDp0CAUFBdafQYMGYcyYMdZ/s93sGzJkSKPp4z/88APat28PAOjYsSPi4uJszttkMmHv3r02bXfp0iXs27fPWmb79u0wm81ITk62ltm1axdqamqsZbZu3YpbbrkFLVu29Nn5+crVq1cRFGT7Zyo4OBhmsxkA280VSraRv/3uWgKRY8eOYdu2bWjdurXNcbabF6mdQauGSZMmCaPRKHbu3ClKSkqsP1evXrWWmThxomjXrp3Yvn27+Pbbb0VKSopISUmxHrdMUf3tb38rCgoKRE5OjrjpppvsTlF99tlnxeHDh8XSpUt1P0W1ofqzaYRgu0nJz88XTZo0EQsXLhTHjh0TH374oYiMjBSrV6+2llm0aJFo0aKF2LRpk/juu+/EPffcY3f6ZWJioti7d6/YvXu36Nq1q800wkuXLonY2FgxduxYUVhYKNatWyciIyN1M0W1ofHjx4u2bdtap/Z+9NFHIjo6Wjz33HPWMmy3uhluBw4cEAcOHBAAxBtvvCEOHDhgnfWhVBvt2bNHNGnSRLz22mvi8OHDYv78+Zqeouqo3aqrq8Xdd98tbr75ZlFQUGBzrag/MyYQ280XAjIYAWD3Z9WqVdYy165dE3/5y19Ey5YtRWRkpLjvvvtESUmJzeucOnVKjBw5UkRERIjo6Gjx9NNPi5qaGpsyO3bsEP379xehoaGiU6dONu/hDxoGI2w3aZ999pno3bu3CAsLE927dxfvvvuuzXGz2Szmzp0rYmNjRVhYmLjzzjvF0aNHbcpcvHhRjB49WjRr1kxERUWJCRMmiMrKSpsyBw8eFEOHDhVhYWGibdu2YtGiRT4/N18xmUxi6tSpol27diI8PFx06tRJzJ492+ZiwHar+32x9zdt/PjxQghl22jDhg2iW7duIjQ0VPTq1Uts3rzZZ+ftKUftVlxcLHmt2LFjh/U1ArHdfMEgRL2lDImIiIgUFpA5I0RERKQdDEaIiIhIVQxGiIiISFUMRoiIiEhVDEaIiIhIVQxGiIiISFUMRoiIiEhVDEaIiIhIVQxGiIiISFUMRoiIiEhVDEaIiIhIVQxGiIiISFX/B1jO2XjcXgc3AAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.scatter(XTest, yTest)\n", + "plt.plot(XTest,pred)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Polynomial Regression on Area" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
Pipeline(steps=[('polynomialfeatures', PolynomialFeatures()),\n",
+       "                ('linearregression', LinearRegression())])
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
" + ], + "text/plain": [ + "Pipeline(steps=[('polynomialfeatures', PolynomialFeatures()),\n", + " ('linearregression', LinearRegression())])" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.preprocessing import PolynomialFeatures\n", + "from sklearn.pipeline import make_pipeline\n", + "\n", + "pipeline = make_pipeline(PolynomialFeatures(2), LinearRegression())\n", + "\n", + "pipeline.fit(XTrain, yTrain)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mean error: 2.06e+06 (43.2%)\n" + ] + }, + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAGsCAYAAAAPJKchAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABLy0lEQVR4nO3deXxTVd4/8E/SJV1oU9rSlULLIvtSQGoFx60IyFN1HB0HURCXGVEcBRdkVJBRB1xG0QFhxEd0HmSR+YmKSxksIMtUkKVILS1bS7F0oa1tutAtOb8/agJpkzZJk9x7k8/79eqLkpx7c+5Nmvu953zPOSohhAARERGRRNRSV4CIiIi8G4MRIiIikhSDESIiIpIUgxEiIiKSFIMRIiIikhSDESIiIpIUgxEiIiKSFIMRIiIikhSDESIiIpIUgxEiIiKSlKKCkd27dyM9PR1xcXFQqVT47LPP7Nr+xRdfhEql6vATHBzsmgoTERFRlxQVjNTX12PUqFFYuXKlQ9s/9dRTKCkpMfsZOnQo7rzzTifXlIiIiGylqGBk6tSpePnll/Hb3/7W4vNNTU146qmnEB8fj+DgYKSkpGDXrl2m53v06IGYmBjTT1lZGXJzc/HAAw+46QiIiIioPUUFI12ZO3cusrKysHHjRvz444+48847MWXKFJw8edJi+ffffx9XXHEFrrnmGjfXlIiIiIw8JhgpKirC2rVrsXnzZlxzzTXo378/nnrqKUycOBFr167tUL6xsREff/wxW0WIiIgk5it1BZzl2LFj0Ov1uOKKK8web2pqQkRERIfyW7ZsQW1tLWbNmuWuKhIREZEFHhOM1NXVwcfHB4cOHYKPj4/Zcz169OhQ/v3338f//M//IDo62l1VJCIiIgs8JhhJTk6GXq9HeXl5lzkgBQUF2LlzJ7744gs31Y6IiIisUVQwUldXh1OnTpn+X1BQgOzsbISHh+OKK67AjBkzMHPmTPz9739HcnIyLly4gMzMTIwcORLTpk0zbffBBx8gNjYWU6dOleIwiIiI6DIqIYSQuhK22rVrF66//voOj8+aNQsffvghWlpa8PLLL+Nf//oXiouLERkZiauuugpLlizBiBEjAAAGgwF9+/bFzJkz8corr7j7EIiIiKgdRQUjRERE5Hk8ZmgvERERKRODESIiIpKUIhJYDQYDzp8/j5CQEKhUKqmrQ0RERDYQQqC2thZxcXFQq623fygiGDl//jwSEhKkrgYRERE54Ny5c+jdu7fV5xURjISEhABoO5jQ0FCJa0NERES20Ol0SEhIMF3HrVFEMGLsmgkNDWUwQkREpDBdpVgwgZWIiIgkxWCEiIiIJMVghIiIiCTFYISIiIgkxWCEiIiIJMVghIiIiCTFYISIiIgkxWCEiIiIJKWISc+IiDyB3iBwoKAK5bWNiAoJwPikcPioud4WEYMRIiI3yMgpwZKtuSipaTQ9FqsNwOL0oZgyPFbCmhFJj900REQulpFTgjnrDpsFIgBQWtOIOesOIyOnRKKaEckDgxEiIhfSGwSWbM2FsPCc8bElW3OhN1gqQeQdGIwQEbnQgYKqDi0ilxMASmoacaCgyn2VIpIZBiNERC5UXms9EHGkHJEnYjBCRORCUSEBTi1H5IkYjBARudD4pHDEagNgbQCvCm2jasYnhbuzWkSywmCEiMiFfNQqLE4fCgAdAhLj/xenD+V8I+TV7A5Gdu/ejfT0dMTFxUGlUuGzzz7rtPynn36KSZMmoVevXggNDUVqaiq2bdvmaH2JiBRnyvBYrLpnDGK05l0xMdoArLpnDOcZIa9n96Rn9fX1GDVqFO6//37cfvvtXZbfvXs3Jk2ahL/97W8ICwvD2rVrkZ6ejv379yM5OdmhShMRKc2U4bGYNDSGM7ASWaASQjg8uF2lUmHLli247bbb7Npu2LBhuOuuu7Bo0SKbyut0Omi1WtTU1CA0NNSBmhIREZG72Xr9dvt08AaDAbW1tQgPt56s1dTUhKamJtP/dTqdO6pGREREEnB7Ausbb7yBuro6/P73v7daZunSpdBqtaafhIQEN9aQiIiI3Mmtwcj69euxZMkSfPLJJ4iKirJabuHChaipqTH9nDt3zo21JCIiIndyWzfNxo0b8eCDD2Lz5s1IS0vrtKxGo4FGo3FTzYiIiEhKbmkZ2bBhA2bPno0NGzZg2rRp7nhJIiIiUgi7W0bq6upw6tQp0/8LCgqQnZ2N8PBw9OnTBwsXLkRxcTH+9a9/AWjrmpk1axbefvttpKSkoLS0FAAQGBgIrVbrpMMgIiIipbK7ZeTgwYNITk42zREyf/58JCcnm4bplpSUoKioyFT+vffeQ2trKx599FHExsaafh5//HEnHQIREREpWbfmGXEXzjNCRESkPLZev7k2DREREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJisEIERERSYrBCBEREUmKwQgRERFJyu5gZPfu3UhPT0dcXBxUKhU+++yzLrfZtWsXxowZA41GgwEDBuDDDz90oKpERETkiewORurr6zFq1CisXLnSpvIFBQWYNm0arr/+emRnZ+OJJ57Agw8+iG3bttldWSIiIvI8vvZuMHXqVEydOtXm8qtXr0ZSUhL+/ve/AwCGDBmCvXv34q233sLkyZPtfXkiIiLyMC7PGcnKykJaWprZY5MnT0ZWVpbVbZqamqDT6cx+iIiIyDO5PBgpLS1FdHS02WPR0dHQ6XS4ePGixW2WLl0KrVZr+klISHB1NYmIiEgishxNs3DhQtTU1Jh+zp07J3WViIiIyEXszhmxV0xMDMrKysweKysrQ2hoKAIDAy1uo9FooNFoXF01IiIikgGXt4ykpqYiMzPT7LHt27cjNTXV1S9NRERECmB3MFJXV4fs7GxkZ2cDaBu6m52djaKiIgBtXSwzZ840lX/44Ydx5swZPPPMM8jLy8O7776LTz75BPPmzXPOERAREZGi2R2MHDx4EMnJyUhOTgYAzJ8/H8nJyVi0aBEAoKSkxBSYAEBSUhK++uorbN++HaNGjcLf//53vP/++xzWS0RERAAAlRBCSF2Jruh0Omi1WtTU1CA0NFTq6hAREZENbL1+y3I0DREREXkPBiNEREQkKQYjREREJCkGI0RERCQpBiNEREQkKQYjREREJCkGI0RERCQpBiNEREQkKQYjREREJCkGI0RERCQpBiNEREQkKV+pK0BE7qc3CBwoqEJ5bSOiQgIwPikcPmqV1NUiIi/FYITIy2TklGDJ1lyU1DSaHovVBmBx+lBMGR4rYc2IyFuxm4bIi2TklGDOusNmgQgAlNY0Ys66w8jIKZGoZkTkzRiMEHkJvUFgydZcCAvPGR9bsjUXeoOlEkRErsNghMhLHCio6tAicjkBoKSmEQcKqtxXKSIiMBgh8hrltdYDEUfKERE5CxNYiWTMmaNeokICnFqOiMhZGIwQyZSzR72MTwpHrDYApTWNFvNGVABitG0BDxGRO7GbhkiGXDHqxUetwuL0oQDaAo/LGf+/OH0o5xshIrdjMEIkM64c9TJleCxW3TMGMVrzrpgYbQBW3TOG84wQkSTYTUMkM/aMekntH2H3/qcMj8WkoTGcgZWIZIPBCJHMuGPUi49a5VAg4604fT6RazEYIZIZjnqRF06fT+R6zBkhkhnjqBdr990qtF0MOerF9Th9PpF7MBghkhmOepEHTp9P5D4MRohkiKNepMfp84nchzkjRDLFUS/S4vT5RO7DYIRIxjjqRTpMJCZyH3bTEBFZwERiIvdhMEJEZAETiYnch8EIETmV3iCQdboSn2cXI+t0paJHmzCRmMg9mDNCRE7jiROEMZGYyPVUQgjZ37bodDpotVrU1NQgNDRU6uoQkQXGCcLaf6EYL9lsSSDyPrZev9lNQ0TdxgnCiKg7GIwQUbdxgjAi6g4GI0TUbZwgjIi6g8EIEXUbJwgjou5gMEJE3cYJwoioOxiMEFG3cYIwIuoOBiNE5BScIIyIHMVJz4jIaThBGBE5gsEIETkVVxomInuxm4aIiIgkxWCEiIiIJMVghIiIiCTFYISIiIgkxWCEiIiIJMVghIiIiCTFYISIiIgkxWCEiIiIJMVghIiIiCTFYISIiIgk5VAwsnLlSiQmJiIgIAApKSk4cOBAp+WXL1+OQYMGITAwEAkJCZg3bx4aGxsdqjARkZLpDQJZpyvxeXYxsk5XQm8QUleJSHJ2r02zadMmzJ8/H6tXr0ZKSgqWL1+OyZMnIz8/H1FRUR3Kr1+/Hs8++yw++OADXH311Thx4gTuu+8+qFQqvPnmm045CCIiJcjIKcGSrbkoqbl0MxarDcDi9KFc1Zi8mkoIYVdYnpKSgiuvvBIrVqwAABgMBiQkJOCxxx7Ds88+26H83Llzcfz4cWRmZpoee/LJJ7F//37s3bvXptfU6XTQarWoqalBaGioPdUlIpKFjJwSzFl3GO2/cI3rGa+6ZwwDEvI4tl6/7eqmaW5uxqFDh5CWlnZpB2o10tLSkJWVZXGbq6++GocOHTJ15Zw5cwZff/01br75Zquv09TUBJ1OZ/ZDRKRUeoPAkq25HQIRAKbHlmzNZZcNeS27gpGKigro9XpER0ebPR4dHY3S0lKL29x9993461//iokTJ8LPzw/9+/fHddddh7/85S9WX2fp0qXQarWmn4SEBHuqSUQkKwcKqsy6ZtoTAEpqGnGgoMp9lSKSEZePptm1axf+9re/4d1338Xhw4fx6aef4quvvsJLL71kdZuFCxeipqbG9HPu3DlXV5OIyGXKa21L2Le1HJGnsSuBNTIyEj4+PigrKzN7vKysDDExMRa3eeGFF3DvvffiwQcfBACMGDEC9fX1+OMf/4jnnnsOanXHeEij0UCj0dhTNSIi2YoKCXBqOSJPY1fLiL+/P8aOHWuWjGowGJCZmYnU1FSL2zQ0NHQIOHx8fAAAdubOEhEp0vikcMRqA0zJqu2p0DaqZnxSuDurRSQbdnfTzJ8/H2vWrMFHH32E48ePY86cOaivr8fs2bMBADNnzsTChQtN5dPT07Fq1Sps3LgRBQUF2L59O1544QWkp6ebghIiIk/mo1ZhcfpQAOgQkBj/vzh9KHzU1sIVIs9m9zwjd911Fy5cuIBFixahtLQUo0ePRkZGhimptaioyKwl5Pnnn4dKpcLzzz+P4uJi9OrVC+np6XjllVecdxRERDI3ZXgsVt0zpsM8IzGcZ4TI/nlGpMB5RojIU+gNAgcKqlBe24iokLauGbaIkKey9fptd8sIERE5zketQmr/CKmrQSQrXCiPiIiIJMVghIiIiCTFbhoiGWN+ARF5AwYjRDKVkVOCF7/4CaW6JtNjMaEavHjLMI68ICKPwm4aIhnKyCnBw+sOmwUiAFCqa8LD6w4jI6dEopoRETkfgxEimdEbBJ799FinZZ799BhXeCUij8FghEhmvj9dieqGlk7LVDe04PvTlW6qERGRazEYIZKZrDMVTi1HRCR3DEaIZMfW0TIcVUNEnoHBCJHM2Do7J2fxJCJPwWCESGau6heBsCC/Tsv0DPLDVf0YjBCRZ2AwQiQzPmoVlt0+otMyS28fwcnPiMhjMBghkqEpw2Ox+p4xiAkNMHs8VhuA1feM4aRnRORROAMrkUxNGR6LSUNjOB08EXk8BiNEMsbl5onIG7CbhoiIiCTFYISIiIgkxWCEiIiIJMVghIiIiCTFYISIiIgkxWCEiIiIJMVghIiIiCTFeUaIiIhcxGAQaNYb0KI3oFUv0KI3oNmG31tM/7Y91mzld2v70AsBbaAfegb5oWeQP8KD/dEzyB89g/3bHgv2R4jGFwYBWUysyGCEiIhkTwgBvUGg1XhxbzW0/d7664W53e8trZ1d6M0v9pZ+7zpYsL6PywMGg5D6zFlnjDkur2OsNgCL04e6fckJBiNEROQ0za0GnPulAUWVDSisrMfZygbUN7W2Xah/DRIsBQ/tA4kWw68X98t+FzK+sNtKpQL8fNTw91HDz0cF33a/tz1n/F0Fv18fa/9759upoQKga2zBL/XNqGpoQXVDM6rqm1Hd0IKq+mZcbNFbDJRKaxoxZ91hrHLzGlgMRoiIyC6NLXoUVTWgsKIt2DAGHYWV9ThffdFtrQE+alWnF2w/H/WvF23Lv/v5qOCnVsPPt3v78Lfyu6V9ymFtKb1BYMKyTJTqmjo8JwCoACzZmotJQ2PcVl8GI0RE1EFdUyvOXhZknK24FHSU6ho73TbI3wd9I4KRGBGEPhFB0Ab6tV2k1Sr4+Vq/6JsFAGo1/H2tX/T91GqoZXBhV6IDBVUWAxEjAaCkphEHCqrctjYWgxEiGdMbhCySy8gz1TS0oLCy3qxl42xlA85W1qOirrnTbUMCfJEUGWwKOvpGBKNvRBD6RgShVw8NVCp+TuWqvLbzYNLecs7AYIRIpjJySrBkay5Kai59IUiVXEbKJIRAZX0zzlbWo7CiLcgorLz0b83Flk63jwj2R9+IICRGBJsFG4kRwQgL8mPAoVBRIQFOLecMDEaIZCgjpwRz1h1G+653qZLLSP5a9QaculCHnGIdcoprkHteh/yy2i4DjuhQTYfWjcSIYPSJCEJogJ+bak/uND4pHLHaAJTWNHb4jgHackZitG0tse7CYIRIZvQGgSVbcy1+SUiVXEby0txqwImyWvx0vgbHimuQU6zD8RIdmloNHcqqVECcNvDXVo1LQUdiZBD6hAchyJ+XAW/jo1ZhcfpQzFl3GCrA7LvG+I2yOH2oW79f+CkkWfH0HAlbju9AQZVZ10x79iSXefr59AaNLXrkl9biWHENfjrfFnjkl9aiWd8x8Oih8cWwuFAMj9diWFwoBseEol+vYAT4+UhQc5KzKcNjseqeMR26gmM4zwh5O0/PkbD1+JyVXObp59MTNTS34niJDjnFul9bPGpwsrwOegtjZbWBfhgeH4rhcVoMj2/76RsexBEmZLMpw2MxaWiMLG5YVELIfxoZnU4HrVaLmpoahIaGSl0dcgFrORLGPwml50jYc3xZpysxfc33Xe5zw0NXWW0Z8fTz6QlqG1uQe173a4tHW57H6Qt1FufoCA/2x/B4LUZcFnz07hnIBFKSPVuv32wZIcl5eo6EvcfX3eQyTz+fSiSEQEFFPQ4W/oIfCqtwuOgXnL5Qb7FsVIgGI+K1GBavxfC4UIzorUVMaAADD/JoDEZIcs7MkZAje4+vu8llnn4+nclVOTWtegNyS3Q4UFCFg4W/4ODZKovzdsSHBZpyPEb8mucRFeq+4ZREcsFghCQnxwl4nMmR4+tOcpmnn09ncWZOTUNzK44UVeOHwir8UFiFI0XVaGjWm5Xx91VjdO8wjEvsibF9e2J0QhgiemiccixESsdghCQn9QQ8rh5x4ujxOZpcJvX5VILuzOOiNwh8m1uG/YWVKK1uxM/VF/HTeV2HJNPQAF9cmRiOcYnhuDKxJ0b01kLjy1EtRJYwGCHJSTkBjztGnHTn+HzUKru7UuQ4oZGcOJJT80t9M74/U4mNP5zDvlMVaLWQZRofFohxiT0xLjEc4xPDMTCqB0e2ENmIwQhJTqoJeNw1y6m7j0+OExrJia05Ne/tPo2q+mbsO1WJ46W6Lpevf+F/hnCEEpGD1FJXgAi4lCMRozXvOojRBrhkGGpXd8dA292xpfkdHOHu43P36ymJrbkyr2bkY82eAuSWtAUivp0Eb8bWFGd9Xoi8DVtGSDbcOQGPFCNO3D3BkJwmNJITW3NlInv448bB0bh6QAT8fdSY8/Fhq2U5QomoexiMkKw4kiPhCKlGnLjr+KR6PTlrbjXgQEEVvj1eBh+1qtNWjF49/JG18Eb4+rQ1Hn+eXWzTa9jyeeEU/UQdMRghr8QRJ96hvLYRu/IuYEdeOfacvID6dsNt2zOGBC/dNtwUiADO+7xwin4iyxiMkFfiiBPPZDAI/HReh8y8MuzIK8ePP9eYPR/ZQ4MbBvfC9YOicLGlFa9vO2HTPC7O+Ly4K2GaSIkYjJBXcuWIEzk0w8uhDu5S19SKvScrsDOvHDvyy3Ghtsns+ZG9tbhhcBRuGByF4XFas+G2t47ubdN56u7nhVP0E3WOwQh5LVcsoS2HZng51MHVzlU14Nvjba0f+89UoVlvMD0X7O+Dawb2wg2Do3DdoF6dTq9uT05Ndz4vnKKfqHNctZe8nrNaEeSwUq61Ohi9e3cybh4Z59I6uIIQbd0v/8ktw39+KkVeaa3Z830jgnDD4CjcODgaVyb1dOlMp458Xj7PLsbjG7O73PfbfxiNW0fHO6mmRNLjqr1kkTc139vKGSNO5NAM31kdjOZuOIIVUOHmkfJvITEYBLJ/rkZGTim+ySnBuaqLpud81CpcmdgTNw6Oxg1DotAvMthtq9o68nlhwjRR5xiMeBFvaL6Xihya4buqAwAYBPDI+sNYrZZnsqTeIPBDYRUyckqRkVOKUt2l4wnwU+M3A3th8rAY3DA4Cj2D/SWsqX3cmTDNGw5SIgYjXoKZ/K4lh5Vy7dm3nJIlW/QGfH+mEl8fK8X23FJU1DWbnuuh8cUNg6MwdXgMrh3UC0H+yvzKctcU/bzhIKVS5l822UUOXQieTg7N8PbsW+pkSb1B4Pszldh69DwyfipFdUOL6TltoB/ShkRj6vAYTBwYiQA/z1jp1hUJ05fjDQcpmUPByMqVK/H666+jtLQUo0aNwj/+8Q+MHz/eavnq6mo899xz+PTTT1FVVYW+ffti+fLluPnmmx2uONlODl0Ink4O85YY69BVV42RK1tpLDEYBI6c+wVbj5bgyx9LUFF3aQhuRLA/bhoWg6nDY5DaPwJ+Pp65bJarpujnDQcpnd3ByKZNmzB//nysXr0aKSkpWL58OSZPnoz8/HxERUV1KN/c3IxJkyYhKioK//73vxEfH4+zZ88iLCzMGfUnG8ihC8HTyWGlXGMdHl5nfQ2Vy7kjWdI4Cmbr0fP48scSFFdfSkINC/LD1OGxSB8Zi5R+EV5zkXTFFP284SClszsYefPNN/HQQw9h9uzZAIDVq1fjq6++wgcffIBnn322Q/kPPvgAVVVV+O9//ws/Pz8AQGJiYvdqTXaRQxeCN3B1M7ytdXj37mTM3XAEnS0gG+viVppT5bX4Ivs8tv5YgoKKetPjPTS+uGlYNNJHxWHigEiPbQFxN95wkNLZFYw0Nzfj0KFDWLhwoekxtVqNtLQ0ZGVlWdzmiy++QGpqKh599FF8/vnn6NWrF+6++24sWLAAPj6W+4KbmprQ1HSpCVen09lTTWpHDl0I3kIOK+XePDIOD5yrxpo9BVbL3DIq1ul1Ktc14ouj5/FZdjFyii/9zQb4qXHjkGikj4zDdYN6eUwOiJzwhoOUzq5gpKKiAnq9HtHR0WaPR0dHIy8vz+I2Z86cwY4dOzBjxgx8/fXXOHXqFB555BG0tLRg8eLFFrdZunQplixZYk/VqBNy6ELwJlKvlKs3CHz5Y0mnZb44WoJnpgzp9nte39SKbT+VYsuRYuw7VWFqjfFVq3DtFb1wy+g4pA2JRrCGufKuxBsOUjqXf0MYDAZERUXhvffeg4+PD8aOHYvi4mK8/vrrVoORhQsXYv78+ab/63Q6JCQkuLqqHk0OXQjkHrbMN9Kd/AEh2uax2HzoZ3x9rAQNl62EO6ZPGH6bHI9pI+MQrqB5QJSONxykdHYFI5GRkfDx8UFZWZnZ42VlZYiJibG4TWxsLPz8/My6ZIYMGYLS0lI0NzfD37/jF5ZGo4FGo7GnamQDOXQhKJHSJpFyVf7A+eqL+PTwz/j3oZ9RWNlgejyyhz+uGxSFR67rj369eti1T3Ie3nCQktkVjPj7+2Ps2LHIzMzEbbfdBqCt5SMzMxNz5861uM2ECROwfv16GAwGqNVtyWonTpxAbGysxUCEXEvqLgSlUeIkUs7MH2hs0eM/uWXYfPAc9p6qgHElK42vGmqVChdb9Kioa8a/D/2MfacqZH1evAFvOEip7F4ob9OmTZg1axb++c9/Yvz48Vi+fDk++eQT5OXlITo6GjNnzkR8fDyWLl0KADh37hyGDRuGWbNm4bHHHsPJkydx//33489//jOee+45m16TC+WRLZzdguGOhe9c0eqiNwhMfHVHl/kDexfcYPG1hBA4VlyDzQd/xufZxdA1tpqeS0kKx+CYEHyUddbifgH3LAhIRMrgsoXy7rrrLly4cAGLFi1CaWkpRo8ejYyMDFNSa1FRkakFBAASEhKwbds2zJs3DyNHjkR8fDwef/xxLFiwwIHDIrLM2S0Y7phEylWtLo7mD1TUNeGzI8XYfPBn5JddWhU3ThuA343tjTvG9kbvnkGY+OoOi6/LybWIyFF2t4xIgS0j1BlXtGBkna7E9DXfd1luw0NXOdTt5Y5WF1uCnRa9AbvyL+CTg+ewM68crb8Oh/H3VWPKsBjcOa43ru4faQosXH1eiMizuKxlhEhOXNWC4cpJpNw1dXdn+QPnqhqw8YcibD74M8prL83pM6q3FneMS8AtI+OgDfLrsE9OrkVErsBghBTNVdNgu3ISKXdO3X15wnKL3oDtuWVYf6AIe05eMCWjRgT747fJ8bhzXAIGxYR0uj9OrkX2UNpINJIOgxFSNFfdqbtyEil3ty6cr76IjQeKsOngOZTpLrWCTBwQienj+2DS0Gj4+9o2LTsn1yJbKXEkGkmHwQgpmqvu1F05iZQ7WhcMBoHdJy9g3fdF2JFXZpoZNbKHP+4Ym4Dp4xPQNyLY7v1yci2yhbWcqNKaRsxZd5gjrqgDBiNezBOaUF15p+6qSaS6U+eu3rPqhmZsPvgz1u0/i7OXTUx2Vb9wzEjpi8nDYmxuBbGGk2tRZ9yVE0WehcGIwjgrgPCUJlRX36m7YhIpR+vc2XvWJzwY/8oqxGfZxWhsMQAAQgJ88bsxvXHPVX0wIKrzXBB7cXItssadOVHkOTi0V0EcDSDaBzC/1Dfj0fWuHVbqbkoMruyps7Vmb0uGxIZiZmpf3Do6DkH+nd9veELrGMnL59nFeHxjdpfl3v7DaNw6Ot71FSJJcWivh3G0D9bSBU+tgsc1oSrxTt3WOnfW7H25aSNicd+ERIzr2xMqVdfHrcQAjuSPI67IEQxGFMDRPlhrAYyhk6uakptQlbjuji11tmUVXgC456q+uDLRcm6Mra1jTDCk7uKIK3IEgxEFcKQP1ta7aWs4aZU8tOoN+E9uqU1lrb1n3tI6RvLAEVfkiO6l1ZNbODIvha1309awCVVausYWvL/nDK59fRfW7iu0aRtL75mxdaz9Z8HW1jEiRxhHXMVozT+TMdoAtrqRRWwZUQBH+mAdbdlgE6q0fv6lAWv3FWLTD+dQ19S2Wm7PID+06A2oa9Jb3Mbae8bWMZKSEvO4SDoMRhTAkT5YR1o22IQqnexz1Viz5wy+OVZiarUYENUDD0xMwm+T47Ervxxz1h0GYHuzN1vHHMdRRs6hxDwukgaDEQVwpA+2qwAGaMsbuLy5npNWuZfBILAjrxzv7T6DA4WXukSuGRiJByYm4TcDe0H963vqyERjbB1zDEcZEbkf5xlREHu/JI35AoDlAGbl3cnoGazh3Z+bNbXqseVwMdbsOYPTF+oBAH4+KtwyKh4PXpOEIbHWP+P23LFnna7E9DXf21U3Jc814wzWRqB5+3khcpSt128GIwpjb/Mx7/LkQ9fYgo+/L8IH+wpwobZtwbqQAF/MSOmL2RMSER3q3G4RvUFg4qs77God8+bPhvF8WevaMrYY7V1wA4N2Ihtx0jMPZW8fLJPIpFde24i1+wqxLussan9NSo3VBuCBiUn4w/g+6KFxzZ+hLd17K6azdcyI05gTSYfBiAex1mrCJDJpFFbU4709Z/DvQz+jubVtvZiBUT3wp2v745ZRcd1esM4WXNTOdo4MoSci52Aw4iHYHSMfued1eHfXKXx92ciY5D5heOS6AbhxcBQE4NaWKraO2YbTmBNJh8GIB3B03Rpyruxz1Vix4xS+PV5meuy6Qb0w59r+GJ8UDpVKJVnQyNaxrnEacyLpMBhROEfXrSHnOVBQhX/sOIk9JysAACpV26J1j1w3AEPjLiVsMWiUXmcJ4JzGnEg6DEYUjkl30hBCYN+pSryz46Rp2nQftQq3jY7HI9f3R/9ePczKM2jsHmdMQmZLqxRzbIikwWBE4Zh0515CCOzML8c7maeQfa4aQNscIXeOS8Cca/sjITzI4nYMGh3njK4te1qlmGND5H4MRhSOSXfuYTAIbPupFP/YcQq5JToAgMZXjenj++BP1/ZDrDaw0+0ZNDrGGV1bjrRKMceGyL0YjCgck+5cy2AQ+DqnBO9knsSJsjoAQJC/D+5N7YsHJ/ZDrxCNTfuxNRiMDLZtf9Z40poqzuraYqsUeROlfgcwGFE4Jt25hsEg8E1OKd7OPGEKQkICfDH76kTMnpCEnsH+du3PlrWCAODJzUfx4i2O5SZ42vBuZwURbJUib6Hk7wDXz7pELmdMuovRmt99x2gDOELDTgaDwDfHSnDzO3vw6PrDOFFWh5AAXzyRNhB7F9yA+TcNsjsQAS4FjcClINGSMl1b90NGTold+zd2Z7S/eBu7M+zdnxw4K4hgVyZ5A6V/B7BlxEMw6a57hBDY9lMZln97AnmltQCAEI0vZk9MwgMTk6AN9Ov2axiDxhe/+AmluibL9YD9I2ukGqnj6uZgZwUR7MokT+cJo/UYjHgQJt3ZTwiBHXnleHP7Cfx0vi0xtYfGF7MnJOLBif2gDep+EHK5KcNjERLghxnv77deJ9iXw2Brd8Zb2/MxYUAvpwQN7mgOdlYQwa5M8nSekBfFbhrySkII7Dl5Ab9997944KOD+Om8DsH+Pnj0+v7Yu+B6PHnTIKcHIkYVdZZbRdpzdq7Dip2nMX3N95j46o5uNdm6qzm4s64te4MIdmWSJ/OEvCi2jJDXOVhYhde35WP/r5OVBfipMevqRPzpN/0R7kA+iL2cncNgb65Dd2Z8dXdzsDMnIfO2rkyljqog+3lCXhSDEfIaP52vwevb8rEr/wIAwN9HjRlX9cGc6/q79Y/U2TkMto7UMepO0CBFc7Azgwhv6cpU8qgKsp8n5EWxm4Y8XmFFPR7bcATT3tmLXfkX4KNWYfr4BOx6+josTh/m9rsFZ3Y/dLU/ay4PGuwhVXOwMYi4dXQ8UvtH8A6/E0ofVUH2c/Z3ihQYjCiU3iCQdboSn2cXI+t0JfQGW+6J5cfR47BluzJdI/6y5RjS3vwOW4+eBwDcMioOmfOvxdLbRyIurPNZU13BWO+mVgOeSLsC0aHOyWGwlhPRFXuDBk9oDvZkXXWjAW0tYkr9viDrlJ4XxW4aBVJiE6yl/uvtuaUOHUdXx1/d0IxV353GR/8tRGOLAQBw/aBeeGryIAyL07ruILtgqd4xoRrMSxuIxMjgbvfrX96dse9UBVbsPNXlNvYGDZ7QHOzJPGFUBTlOyXlRKiGE7ENknU4HrVaLmpoahIaGdr2BB7O2VofxoybHCNjSRTgsyA/VDS0dynZ1HJ0dvwBw2+g4ZOaVo7axFQAwtm9PPDN5EFL6SfvF6+73TW8QmPjqji6Dhr0LbnBo9ds56w4DsDxMVo6fQW/xeXYxHt+Y3WW5t/8wGreOjnd9hcjr2Xr9ZjeNgiixCdZa/7WlQATo/DhsOf7Pss+jtrEVg6JD8P7Mcfj3w6mSByJSvG+u7ENWenOwJ2M3GikVu2kURGlNsJ1dhDtj7Ti6On6jR67rjydvGiSbpkmp3jdnDou1tG+lNgd7MnajkVIxGFEQpU1sY2vwYE3747D1uAbFhMjqoijl++bKoMFbhskqCWebJaViMKIgSmuC7e7Ftf1xOOv43T0ZlNTvG4MG7+LKFjEiV2EwoiBKa4J19OJq6TiqG5rxn9xSu7drT4qRSEp730j52I1GSsMEVgVR2sQ2xouwPbVpfxzNrQa8v+cMfvPaTqzdV2jzdpZINRmU0t438gycKI6UhMGIwihpJIMtM4MGa3zM/m88jsnDYvDNsRJMeus7vPzVcegaWzE4JgT/98B4rL5nDGLtPH6pRyIp6X0jInI3zjOiUEpaBMtS18jlwoP9cdvoOEwaGoPxSeHIKa7By1/l4ofCXwAAvUI0eHLSFUjoGYSK+iZEhQRgbN+eOHT2F5uPP+t0Jaav+b7Lum546CqX5lco6X0jIuouW6/fzBlxIndeaJSUlGjsv16x4xTe+vZEh+d/qW/G2n2FGBjVA5sPnsOnR4oBtK2m+8ff9Ee/yCC8mpHfbubSAEwf3weJkUE21UEuI5GU9L7JFQM6Is/DYMRJlDhFu7tt/KHI4uPGprmFW3JMj90+Jh5PTx6Eo+eqLc5cWqprNAtsujrXUo9oIefg3xmRZ2LOiBNwlcyu2TrnyKDoEHz+6AS8+fvRiAoJsHnStJIuznVXybQqtF3UOKJFvvh3RuS5GIx0k9SJkUpha/fHnOv6YVRCGAD7J00TsH6ufdQqvDBtiNWhtQBHtMgZ/86IPBuDkW6yZ6pvb2Zr90d0aKDpd0fyN6yd64ycErz01XGL28h5RIveIJB1uhKfZxcj63Sl115s+XdG5NmYM9JNckmMdLXuJg1e0F3sskz7bpLIYI1DdS2tMX8tayvmGr0wTZ75BhZXOw70w+wJiZh7w0CvasXxlr8zIm/FYKSbvCExsrtJgzvyyjFv849dlnthWrtuEgevtVX1zabfu1qsTwXgpa9yMXl4jKwu7tYCqOqLLXjr25NY+99CLLt9hCyDKFfwhr8zIm/Gbppu8vTEyO4kDRZVNuDBjw7i/g9/sKl7oWewv9n/K+qaHKpzeI9LLSpKa97XGwT2narAs//vWKeJu9UNLV6VtOnpf2dE3o7BSDd54lTfxjyFLYd/xl+25NidNHixWY+//ycfaW99h2+Pl8HWQ2/fxO7oXW5M6KXtlNS8n5FTgomv7sCM9/ej+mJLl+U7S9j1NJ74d0ZElzgUjKxcuRKJiYkICAhASkoKDhw4YNN2GzduhEqlwm233ebIy8qWJ031bbwgTl/zPeZ9ctSsy6O99q0KQghk5JQg7c3v8I8dp9DcasCEARH44zX9bHrt9sGHI2vbtL87VkrzvrUWqK7IqVXH1Tzp74yIzNmdM7Jp0ybMnz8fq1evRkpKCpYvX47JkycjPz8fUVFRVrcrLCzEU089hWuuuaZbFZYrT1gls6tET2vKaxtx5kIdFn/xE/acrAAAxIcFYtrIGHyRfR77TlV2ur21VWuNd8Nz1h2GCui0XtbujpWwYm5XeS1dkUOrjrt4wt8ZEXVkd8vIm2++iYceegizZ8/G0KFDsXr1agQFBeGDDz6wuo1er8eMGTOwZMkS9Otn212y0ih9iuruXBB35pVj8vLd2HOyAv4+ajx2wwAsmDIIa3YXoFTXed5HV03s1u6G2xe1dneshOZ9e+dTaU/qVh1342q0RJ7HrpaR5uZmHDp0CAsXLjQ9plarkZaWhqysLKvb/fWvf0VUVBQeeOAB7Nmzp8vXaWpqQlPTpYuYTqezp5pu5wlTVDt6QfRRAZ9lnwcADIkNwR+v6Y9pI2Nx7es7bQpsYmw4T5buhu1ZKM8Y0LR/j2x5bXdwtGVDDq06RETOYFcwUlFRAb1ej+joaLPHo6OjkZeXZ3GbvXv34n//93+RnZ1t8+ssXboUS5YssadqkrHWtWEcbaKUvmxHL4h60RaQ6AVwvKQW8z7JxqIvclDb2Nrlti9MG4L7JiTZdGdraYE5exack3PzviMtG3Jp1bFE6a2EROR+Lp1npLa2Fvfeey/WrFmDyMhIm7dbuHAh5s+fb/q/TqdDQkKCK6rYLV1NUa1C22iHSUOlncPClouDIxdEtQowiLZA5HK2BCIAEBmicet5keuKuV3ltQCASgWIy56US6tOe57QSkhE7mdXMBIZGQkfHx+UlZWZPV5WVoaYmJgO5U+fPo3CwkKkp6ebHjMYDG0v7OuL/Px89O/fv8N2Go0GGo1js2+6kz1zWEh1EbT14mDLBdEYfADAVf0icLq8FhfqrI+26Yq35TpY01mirjFUWzk9GT2DNbJubfCUVkIicj+7Elj9/f0xduxYZGZmmh4zGAzIzMxEampqh/KDBw/GsWPHkJ2dbfq55ZZbcP311yM7O1uWrR32kPscFvZMWNbZQnJGBgGEBPhi7vUDMPf6/g4HIpygqqOuhq3ePDJO1kmbnraQHdcEInIvu7tp5s+fj1mzZmHcuHEYP348li9fjvr6esyePRsAMHPmTMTHx2Pp0qUICAjA8OHDzbYPCwsDgA6PK5Gc57Cwtwups4XkLlfb2IoVO09h3fd+DtVLzrkOUpNzXktXlNBKaCt2NRG5n93ByF133YULFy5g0aJFKC0txejRo5GRkWFKai0qKoJa7R0Tu8p5Dgt7Lg41F5vtnl/ElhlCLZFrroNcWMprUUJCqNxbCW3FriYiaTiUwDp37lzMnTvX4nO7du3qdNsPP/zQkZeUJVv6+qVqAbD1S79U14jXMvIcnnDLHvaMnqE2SrlLl3Mroa2UkpBO5Im8ownDhTrr61959xhoA/0l6XcurKi3qVxVXVO3JtyyhTFHhIGIfbqzSKG7ecJCdkpbVJHIk7h0aK+3sNTX/0t9E176Spo7Wr1BYMOBoi7LxWoD4O/T/Xg0LNDPareN8eL0wrQhsu9qkBOl3aXLuZXQVp7S1USkRAxGnOTyvv6MnBI8uv6IZP3OBwqqupyGHQBGxGvx6rb8br/eyrvHQK1W4dvcUmzJLkZV/aXAJEYbgFtGxeKlr47LvqtBTpSYECr3mW674gldTURKxWDEyeRwR2vrndt/ctvmi/FVq9DqQBeSMUH3ql+Hmqb2j8CCqUPwf1mFOFvVgL7hQYgKDcCfN0gXmCmVUu/SlTwiSM4J6USejsGIE1w+2qGitvMcDFff0eoNAhW1XbeKAG2tOU/dNAh9wgMxd/0RU/3scXnTu6VkS7XK8j6dGZgpYbSJvZR8l27PTLdyeu88oauJSKkYjHSTpQuwLVxxR2tvXcKD/PDH3/SDj1oFH7XKrm3Dgvyw7PYRplYNa0MiO2twcUZgppTRJvbyhrt0Ob53Su9qIlIqBiPdYO0CbAtn39E6UpcLdc2mQMDYvP7hvgKbJj9bOX0MJgxsW2+os64pWzgamHnynBCefpcu5/dOyV1NRErFob0OcvQC7Iohjt0JBi4PBHzUKtybmoiuvnPVKuDKy+rfVbJlVxwJzDxt+nFLupoiXqmBlhLeO2NXk1yn3yfyNGwZcZAjF2BX3dF2JxhoHwgcOvtLp10rQFvXyzuZJzFhQCTGJ4U73LLRna4GJY42cYQn3qV7y3tHRLZjMOIgRy7Arup3dqQu1gIBW/e1YucprNh5CrHaAPzhyj4OvT7geGCm1NEmjrAnIVQJvOm9IyLbMBhxkK1dCy9MG4LIEI1L72jt7eboLBCwd1+lNY1Y/u0JhAX5oaahxWpXkVplnsyqDfLD7KuTMGlojF2vZ2895TjaxNvxvSOi9hiMOKir0Q5A24gTd0yB3tDc2uFi35mwID8svWwkzOWMx2Vrt49xiK7qst8tJVuumJ6Mk+V1+GBfAWoutqK6oQVvfXsCGw6cxYu3DLO7tcgTR5t0NsxVTkNgu8sT3zsi6h4GIw4yjnZ4eN1hq2WqG1qwPbfUZYmGNQ0teOmrXPz70M92bafxVVttkfBRq3DLqFj8c3eBzfsTAH5paMG8tIHY+MM5i0MiAeCtb0922LZU14SH1x3GajsTMj1ttElnw1wByG4IbHd42ntHRN2nEkLIfriBTqeDVqtFTU0NQkNDpa6Oid4gMOLFbWho1lstExbkh0PPT3L6F+vOvHI8++mPKNM1QaUCZl+dhNEJWry4NRdV9c1dbr/hoass5iF0Z7jy238Yjf8ZGdfhDh4Axr68HdUNltevARw/T3Kcq8Je1s55+wt1++cAKHpUjSe8d0TUOVuv32wZ6YbvT1d2GogAba0j35+uNM3J0V01F1vw8pe52Pxra0hSZDBev2MkxiW2XfT1BoF5nxztcj+WkgO7O19IVEiAxWTLfScrOg1EAMfPk9JHm9gyzNUSOS6WZy+lv3dE5DwMRroh60yFzeWcEYx8d+ICnv1/P6KkphEqFfDAhCQ8NXkQAvx8TGVitIE27ctScqCjQ4S76uN39XlS8miT7gzL9oQhsEp+74jIebw2GHFOQqCt5bt3p1fX1IpXvjqODQeKAACJEUF4/c5RuDKx48W/O8mBjg4RBrrq43fPeZIDez9Xzhi+yiGwRKR0XhmMOKuvOrV/BFbsPGVTOUdlna7E0/8+ip9/uQgAuO/qRDwzZRCC/C2/dd1JDnRkKKUtc6e44zzJgSOfK2cMX+UQWCJSOq8LRpy5JsZV/SIQFuTXaT5EzyA/XNXP/ovsxWY9XtuWh7X7CgEA8WGBeP3Okbi6f9fdGI4u9rUjr7TLfcdqA/DGHaNQUd9kc4uSK86T3Ia6Ovq5smWIuDUcAktEnsKrgpGukgXtTQj0Uauw7PYRnQ7vXXr7CLsvkkeKfsGTnxzFmYp6AMD08Qn4y81DEBLgZ/M+7E0ObG414H/3Fna537/cPMTuvA5nnye5jcLozueqq5YsYeF34/8BDoElIs/gVQvl2bMmhhRa9Aa8+Z983LE6C2cq6hEdqsHa2Vdi6e0j7QpEjOxZ7Ov/sgptmjStXOdYfsKU4bFYfc8YxISadynEagPsmmPE2ALR/n00tkBk5JQ4VL/u6O7nqrMF8VbfM6btvHnYYnlERJfzqpYRZ6+JYbwjtsaelpZT5bWYt+kojhXXAABuGRWHl24dDm2Q/UGII85WNTi1nCXdHcrp7JYtZ3HG56qrc8MhsETkybwqGHH2mhjOWH3UYBD48L+FeDUjD02tBmgD/fDybcORPirOpjo4S9/wIJvLdSdfoztDOeW62quzPlednRsOgSUiT+ZVwYiz18To7h3x+eqLePrfR7HvVCUA4DdX9MJrvxvZoUneHe5NTcQrXx/vtKtGpQKiQzSY+OoOSfI15LraK9daISLqHq/KGTEmCwIdZ7RwJCHQ0TtiIQS2HPkZk5fvxr5TlQj088FLtw3HR7OvlCQQAQB/XzUeuiap0zJCAHM3ZkuWryHX1V6d/bkiIvI2XhWMAJ0nC9qbEGi8I+5sqq/YdnfE1Q3NmLvhCOZtOoraxlaMTgjD149fg3uv6guVStqL1TNThiDI36frgu0YWwOWbM2F3talgx3gyPl2F2d+roiIvI1XddMYOWtNDHsnGPvvqQrM/+QoSnWN8FWr8OcbB+KR6/rD18c8JpRqDo0DBVVdrrVjjTvyNeS+2ivXWiEicoxXBiOA8xICbZlgrKlVjze25WPNngIAQL/IYLx112iMSgjrsD8p59BQwtTkjk7o5i5MNCUisp/XBiPO1NkdcX5pLR7feAR5pbUAgLtT+uD5aUMsTufuzNlhHaGUqcnZAkFE5FkYjDhJ+ztiIQQ+3FeAv32Th+ZWAyKC/fHq70YibWi0xe3lMIeGkqYmZwsEEZHn8LoEVne4UNuE+9b+gBe35qK51YDrB/VCxhO/sRqIAPKYHdaWUSGdPccRI0RE5Ai2jDjZjrwyPL35R1TWN0Pjq8Zz04Z0GCljKUFVLnNodJWTAUC2+RpERKRMDEacpLFFj2Xf5OHD/xYCAAbHhOCd6cm4IjrErJy1BNU/XJlg0+vIISeD+RpERORMDEac4FR5Leauv5SkOntCIhZMGYwAP/M5OzpLUH3r25MIC/JDTUOLLGbx5NTkRETkLgxGukEIgc2Hfsbiz3/CxRY9Inv44/U7R+H6QVEdytqSoGokxzk0iIiIXIXBiIPqmlrx3JZj+Dz7PABg4oBIvHnXKKvdKLYkqFY3tGBe2hXY+EMRczKIiMhrMBhxwLGfa/DYhsMorGyAj1qF+ZOuwJxr+0PdSauFrYmniZFB2LvgBuZkEBGR12AwYgchBD7YV4hl3xxHi14gPiwQ70wfjbF9u87jsGeRN+ZkEBGRN2EwYqOq+mY8vfkoMvPKAQCTh0Xj1d+NRFiQv03bc5l5IiIiyzjpmQ32n6nEzW/vQWZeOfx91Xjp1mFYfc9YmwMRgMvMExERWcOWkU7oDQIrdpzC25knYBBAv17B+Mf0ZAyL0zq0v+4u8ibVar5ERESuxGDEitKaRjy+8Qj2/zr9+u/G9MZfbx2GYE33Tpmji7xJuZovERGRK6mEEPauieZ2Op0OWq0WNTU1CA0Ndfnr7cgrw1Obf0RVfTOC/H3w8m3DcfuY3i5/XWusTZZmDF9cvZovERGRI2y9frNl5DLNrQa8lpGH9/cWAACGxoZixd3J6Nerh2R1ksNqvkRERK7EYORXZyvr8diGI/jx5xoAwH1XJ2LhzYOh8fXpYkvXsmc1Xw4HJiIiJWIwAmDr0fNY+Okx1DW1Qhvoh9fvGImbhsVIXS0Atk+W5urVfImIiFzFq4ORxhY9XvoyFx/vLwIAjOvbE+9MT0ZcWKDENbvEnsnSiIiIlMhrg5GLzXrcsfq/+Om8DgDw6PX9MS/tCvj6yGvqFU6WRkREnk5eV143CvT3QXKfMIQH++Oj+8fj6cmDZReIAJwsjYiIPJ9XD+1tbNGjuqEFMVr5d3FwnhEiIlIaDu21QYCfD2K00o6WsZWjk6URERHJnVcHI0rD1XyJiMgTyS9JgoiIiLyKQ8HIypUrkZiYiICAAKSkpODAgQNWy65ZswbXXHMNevbsiZ49eyItLa3T8kRERORd7A5GNm3ahPnz52Px4sU4fPgwRo0ahcmTJ6O8vNxi+V27dmH69OnYuXMnsrKykJCQgJtuugnFxcXdrjw5l94gkHW6Ep9nFyPrdCX0BtnnNhMRkQewezRNSkoKrrzySqxYsQIAYDAYkJCQgMceewzPPvtsl9vr9Xr07NkTK1aswMyZM216TXcvlOeNOFqHiIiczdbrt10tI83NzTh06BDS0tIu7UCtRlpaGrKysmzaR0NDA1paWhAebn2SrqamJuh0OrMfV2FrwKVVgduvgVNa04g56w4jI6dEopoREZE3sGs0TUVFBfR6PaKjo80ej46ORl5enk37WLBgAeLi4swCmvaWLl2KJUuW2FM1h7A1gKsCExGR9Nw6mmbZsmXYuHEjtmzZgoAA6xONLVy4EDU1Naafc+fOOb0ubA1oY8+qwERERK5gV8tIZGQkfHx8UFZWZvZ4WVkZYmI6X+X2jTfewLJly/Dtt99i5MiRnZbVaDTQaDT2VM0ubA24hKsCExGR1OxqGfH398fYsWORmZlpesxgMCAzMxOpqalWt3vttdfw0ksvISMjA+PGjXO8tk7iKa0Bzsh34arAREQkNbtnYJ0/fz5mzZqFcePGYfz48Vi+fDnq6+sxe/ZsAMDMmTMRHx+PpUuXAgBeffVVLFq0COvXr0diYiJKS0sBAD169ECPHj2ceCi284TWAGflu3BVYCIikprdOSN33XUX3njjDSxatAijR49GdnY2MjIyTEmtRUVFKCm5lG+xatUqNDc344477kBsbKzp54033nDeUdhJ6a0Bzsx34arAREQkNa9ctVdvEJj46o4uWwP2LrhBdhdhY92tdTM5WneOLCIiImfjqr2dMLYGzFl3GCrALCCRe2uAPfku9iyqx1WBiYhIKl4ZjABtF99V94zp0BoQI/PWAFfmu3BVYCIikoLXBiOAMlsDlJ7vQkRE1J5XByOA8loDOPqFiIg8jVtnYKXu4+gXIiLyNAxGFMiY7xKjNe+KidEGYNU9Y2Sb70JERGSJ13fTKJUS812IiIgsYTCiYErLdyEiIrKE3TREREQkKQYjREREJCkGI0RERCQpBiNEREQkKQYjREREJCkGI0RERCQpBiNEREQkKQYjREREJCkGI0RERCQpRczAKkTb+rQ6nU7imhAREZGtjNdt43XcGkUEI7W1tQCAhIQEiWtCRERE9qqtrYVWq7X6vEp0Fa7IgMFgwPnz5xESEgKVSvqF4HQ6HRISEnDu3DmEhoZKXR3F4HlzDM+bY3jeHMPz5hieN8uEEKitrUVcXBzUauuZIYpoGVGr1ejdu7fU1eggNDSUHzoH8Lw5hufNMTxvjuF5cwzPW0edtYgYMYGViIiIJMVghIiIiCTFYMQBGo0GixcvhkajkboqisLz5hieN8fwvDmG580xPG/do4gEViIiIvJcbBkhIiIiSTEYISIiIkkxGCEiIiJJMRghIiIiSXllMLJ06VJceeWVCAkJQVRUFG677Tbk5+eblWlsbMSjjz6KiIgI9OjRA7/73e9QVlZmVqaoqAjTpk1DUFAQoqKi8PTTT6O1tdWszK5duzBmzBhoNBoMGDAAH374oasPz22WLVsGlUqFJ554wvQYz5t1xcXFuOeeexAREYHAwECMGDECBw8eND0vhMCiRYsQGxuLwMBApKWl4eTJk2b7qKqqwowZMxAaGoqwsDA88MADqKurMyvz448/4pprrkFAQAASEhLw2muvueX4XEGv1+OFF15AUlISAgMD0b9/f7z00ktm61zwvAG7d+9Geno64uLioFKp8Nlnn5k9785ztHnzZgwePBgBAQEYMWIEvv76a6cfr7N0dt5aWlqwYMECjBgxAsHBwYiLi8PMmTNx/vx5s31443lzCeGFJk+eLNauXStycnJEdna2uPnmm0WfPn1EXV2dqczDDz8sEhISRGZmpjh48KC46qqrxNVXX216vrW1VQwfPlykpaWJI0eOiK+//lpERkaKhQsXmsqcOXNGBAUFifnz54vc3Fzxj3/8Q/j4+IiMjAy3Hq8rHDhwQCQmJoqRI0eKxx9/3PQ4z5tlVVVVom/fvuK+++4T+/fvF2fOnBHbtm0Tp06dMpVZtmyZ0Gq14rPPPhNHjx4Vt9xyi0hKShIXL140lZkyZYoYNWqU+P7778WePXvEgAEDxPTp003P19TUiOjoaDFjxgyRk5MjNmzYIAIDA8U///lPtx6vs7zyyisiIiJCfPnll6KgoEBs3rxZ9OjRQ7z99tumMjxvQnz99dfiueeeE59++qkAILZs2WL2vLvO0b59+4SPj4947bXXRG5urnj++eeFn5+fOHbsmMvPgSM6O2/V1dUiLS1NbNq0SeTl5YmsrCwxfvx4MXbsWLN9eON5cwWvDEbaKy8vFwDEd999J4Ro+xD6+fmJzZs3m8ocP35cABBZWVlCiLYPsVqtFqWlpaYyq1atEqGhoaKpqUkIIcQzzzwjhg0bZvZad911l5g8ebKrD8mlamtrxcCBA8X27dvFtddeawpGeN6sW7BggZg4caLV5w0Gg4iJiRGvv/666bHq6mqh0WjEhg0bhBBC5ObmCgDihx9+MJX55ptvhEqlEsXFxUIIId59913Rs2dP07k0vvagQYOcfUhuMW3aNHH//febPXb77beLGTNmCCF43ixpf1F15zn6/e9/L6ZNm2ZWn5SUFPGnP/3JqcfoCpaCuPYOHDggAIizZ88KIXjenMkru2naq6mpAQCEh4cDAA4dOoSWlhakpaWZygwePBh9+vRBVlYWACArKwsjRoxAdHS0qczkyZOh0+nw008/mcpcvg9jGeM+lOrRRx/FtGnTOhwbz5t1X3zxBcaNG4c777wTUVFRSE5Oxpo1a0zPFxQUoLS01Oy4tVotUlJSzM5dWFgYxo0bZyqTlpYGtVqN/fv3m8r85je/gb+/v6nM5MmTkZ+fj19++cXVh+l0V199NTIzM3HixAkAwNGjR7F3715MnToVAM+bLdx5jjzxb/dyNTU1UKlUCAsLA8Dz5kxeH4wYDAY88cQTmDBhAoYPHw4AKC0thb+/v+kDZxQdHY3S0lJTmcsvqMbnjc91Vkan0+HixYuuOByX27hxIw4fPoylS5d2eI7nzbozZ85g1apVGDhwILZt24Y5c+bgz3/+Mz766CMAl47d0nFffl6ioqLMnvf19UV4eLhd51dJnn32WfzhD3/A4MGD4efnh+TkZDzxxBOYMWMGAJ43W7jzHFkro/RzCLTlwy1YsADTp083LYTH8+Y8ili115UeffRR5OTkYO/evVJXRfbOnTuHxx9/HNu3b0dAQIDU1VEUg8GAcePG4W9/+xsAIDk5GTk5OVi9ejVmzZolce3k65NPPsHHH3+M9evXY9iwYcjOzsYTTzyBuLg4njdym5aWFvz+97+HEAKrVq2SujoeyatbRubOnYsvv/wSO3fuRO/evU2Px8TEoLm5GdXV1Wbly8rKEBMTYyrTfpSI8f9dlQkNDUVgYKCzD8flDh06hPLycowZMwa+vr7w9fXFd999h3feeQe+vr6Ijo7mebMiNjYWQ4cONXtsyJAhKCoqAnDp2C0d9+Xnpby83Oz51tZWVFVV2XV+leTpp582tY6MGDEC9957L+bNm2dqmeN565o7z5G1Mko+h8ZA5OzZs9i+fbupVQTgeXMmrwxGhBCYO3cutmzZgh07diApKcns+bFjx8LPzw+ZmZmmx/Lz81FUVITU1FQAQGpqKo4dO2b2QTR+UI0XndTUVLN9GMsY96E0N954I44dO4bs7GzTz7hx4zBjxgzT7zxvlk2YMKHD8PETJ06gb9++AICkpCTExMSYHbdOp8P+/fvNzl11dTUOHTpkKrNjxw4YDAakpKSYyuzevRstLS2mMtu3b8egQYPQs2dPlx2fqzQ0NECtNv+a8vHxgcFgAMDzZgt3niNP+9s1BiInT57Et99+i4iICLPned6cSOoMWinMmTNHaLVasWvXLlFSUmL6aWhoMJV5+OGHRZ8+fcSOHTvEwYMHRWpqqkhNTTU9bxyietNNN4ns7GyRkZEhevXqZXGI6tNPPy2OHz8uVq5cqfghqu1dPppGCJ43aw4cOCB8fX3FK6+8Ik6ePCk+/vhjERQUJNatW2cqs2zZMhEWFiY+//xz8eOPP4pbb73V4vDL5ORksX//frF3714xcOBAs2GE1dXVIjo6Wtx7770iJydHbNy4UQQFBSlmiGp7s2bNEvHx8aahvZ9++qmIjIwUzzzzjKkMz1vbCLcjR46II0eOCADizTffFEeOHDGN+nDXOdq3b5/w9fUVb7zxhjh+/LhYvHixrIeodnbempubxS233CJ69+4tsrOzza4Vl4+M8cbz5gpeGYwAsPizdu1aU5mLFy+KRx55RPTs2VMEBQWJ3/72t6KkpMRsP4WFhWLq1KkiMDBQREZGiieffFK0tLSYldm5c6cYPXq08Pf3F/369TN7DU/QPhjhebNu69atYvjw4UKj0YjBgweL9957z+x5g8EgXnjhBREdHS00Go248cYbRX5+vlmZyspKMX36dNGjRw8RGhoqZs+eLWpra83KHD16VEycOFFoNBoRHx8vli1b5vJjcxWdTicef/xx0adPHxEQECD69esnnnvuObOLAc9b29+Lpe+0WbNmCSHce44++eQTccUVVwh/f38xbNgw8dVXX7nsuLurs/NWUFBg9Vqxc+dO0z688by5gkqIy6YyJCIiInIzr8wZISIiIvlgMEJERESSYjBCREREkmIwQkRERJJiMEJERESSYjBCREREkmIwQkRERJJiMEJERESSYjBCREREkmIwQkRERJJiMEJERESSYjBCREREkvr/G0vFUxQ7l4EAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "pred2 = pipeline.predict(sorted(XTest))\n", + "\n", + "mse2 = np.sqrt(mean_squared_error(yTest,pred2))\n", + "print(f'Mean error: {mse2:3.3} ({mse2/np.mean(pred)*100:3.3}%)')\n", + "\n", + "plt.scatter(XTest, yTest)\n", + "plt.plot(sorted(XTest),pred2)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Multiple features" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "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", + "
areabedroomsbathroomsstoriesmainroadguestroombasementhotwaterheatingairconditioningparkingprefareafurnishingstatus
07420423TrueFalseFalseFalseTrue2Truefurnished
18960444TrueFalseFalseFalseTrue3Falsefurnished
29960322TrueFalseTrueFalseFalse2Truesemi-furnished
37500422TrueFalseTrueFalseTrue3Truefurnished
47420412TrueTrueTrueFalseTrue2Falsefurnished
\n", + "
" + ], + "text/plain": [ + " area bedrooms bathrooms stories mainroad guestroom basement \\\n", + "0 7420 4 2 3 True False False \n", + "1 8960 4 4 4 True False False \n", + "2 9960 3 2 2 True False True \n", + "3 7500 4 2 2 True False True \n", + "4 7420 4 1 2 True True True \n", + "\n", + " hotwaterheating airconditioning parking prefarea furnishingstatus \n", + "0 False True 2 True furnished \n", + "1 False True 3 False furnished \n", + "2 False False 2 True semi-furnished \n", + "3 False True 3 True furnished \n", + "4 False True 2 False furnished " + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "X.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [], + "source": [ + "features = pd.get_dummies(X.furnishingstatus).join(X.mainroad).join(X.guestroom).join(X.basement).join(X.hotwaterheating).join(X.airconditioning).join(X.prefarea) \\\n", + ".join(X.bedrooms).join(X.bathrooms).join(X.stories)" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mean error: 9.79e+14 (1.15e+03%)\n", + "Model determination: 0.8929338493561743\n" + ] + } + ], + "source": [ + "XTrain, XTest, yTrain, yTest = train_test_split(features, y, test_size=0.2, random_state=0)\n", + "\n", + "pipeline = make_pipeline(PolynomialFeatures(4), LinearRegression())\n", + "pipeline.fit(XTrain,yTrain)\n", + "\n", + "# predict results for test data\n", + "pred = pipeline.predict(XTest)\n", + "\n", + "# calculate MSE and determination\n", + "mse = np.sqrt(mean_squared_error(yTest,pred))\n", + "print(f'Mean error: {mse:3.3} ({mse/np.mean(pred)*100:3.3}%)')\n", + "\n", + "score = pipeline.score(XTrain,yTrain)\n", + "print('Model determination: ', score)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.12.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/2-Regression/3-Linear/image.png b/2-Regression/3-Linear/image.png new file mode 100644 index 0000000000000000000000000000000000000000..f515ae7f112848acd25304d71cdfeb1c5d5dd5f9 GIT binary patch literal 42788 zcmd43c{rP2v_Gm<)mBv}^)+|+(yE$+np@f`s+7h&6g3lL%%Y`qP(#ggs96v*F{Nm! zA!3f0=OAKeBnXmUe9v&teeOB;+8YzSl=t(j(J#)}Kh}QCz)%^(a%9Cs zzdrB&+}MkO;Zn!R->ELQqPGkT1qh8Nk6-&)Y)rFcu!HAmv^^{1%?BKA&jmx@8Lwl$ z=$;`(o-6pv#8OR72z5rE=E|X`hP-VMRM}_Nd$l!Hu*Y!l!SRKl@K|_H#JvI)VXg9o zdV@1d_bV#uX*eljs*+cEVE-nz_W>LiHs9Bms$>re^qIkVrH;=qg2AWhQZYO+VBR}- z^3SJxp}hZe@U&ezX>UirVLoZEs8=x3n|Gh?jGv;nkA7a+IO)E*aE?BI28PQXXB1A_ zPY?eaa_9Iq&@}q)YN=ENBIh+4aS&dwE1S00u#0n^^1f3hGMpdom&v2Fm$@<{h7yC? z@cbf>Fj!WaK>-*9$pP%)=~CP@@x0(8Q!`@u#EuhWwgJgLzrjQ^#AziT+tpee@Vy-y+&VZ@9WCr zh;>_RiA%mcEI@n6W-E0tQEEM8240X%hWostPfZbm#l!FU2%vH6jeB+O6^wh zvX+@PmgGcPCKmvuw9AxlOxQ|NJn01T8oPrse2f( zGR3#zfwXAdvJc4Zfuev8m} zb~2veN8fwbb*;iOTT&!AV2o5H3nd~ZKCi1auJ>uK$Y2V*H(Dn5j@=mTXi@ee3EKa| zVs7Splj;`6QY=Iz_z?Qj$J{POsZ(k4auY}j+;}o!&owO&zUmorU$#kYN>7q75J#I6)Nwj1d%dMzdF`Y(Ho33E4-Tl%UP7pdmWPwt%e17 z@7F>kXAXC2HqZ^kzmKFGwW2RjDO7(_hi^MD4^>6pFJ%3}KC`u4r`1kbuq_l4PUQ*OWV4earrE^xk8;qIFcq_P zrH2OqT5}pNwW{rmBR3yPxlv%bxeE8@T8VJdSBz|{;z-cD5vS>n>e>pSC_)^15YQz| zBWT?{;NgM`tsIT?2*?G?lm&uPXQU1Z8^o(<5AG*1Uh$-jAnv0oCNN!foxX2YVcOIW z8}p+eia8{^*Z>?l6GbHL)&}%+Aorr%4YOEYjAm4NJAQ%bOKz8gnWt&PEgatET0?uU z49s_IG}&|i@UFztey8(Sk(P5J=`$uR#4K#-Ag-{6pF8O25iuk@_;WkA;&0)diJBSn z5x99NM_)jm0yA0x^Wn#U+$uDFnPTPXh(5^w=2F-Iv3VLn?4kYnF4qsU5e!yeJWTs` z4BI6_TZ^1Rd>;QDVh7kFFO#v?GkRl!1=h6gUwZ;~c6mg%H1}fLnVP`d&1BUz0RC6- zrRGRg){&huNL%YO{Hz399mP;jA+tKP&c5u&tjfI1)15Xqw-E-8^Dg6Nmcj{3kJkFz+?x;dq1mM`|9obSgbTdzN6*OK)k>=^WaTIHZC zl58a*vkEVcz4Na18DpXnMC7p;rb^JfqABjZ;2+hIz}}j?ZRtg>vbDpmS=lWS%M3lI zq0*cgmZ%&V9pnDCx9DR%Ky6%U`Ii{fFued}Oq&k~Rxn*n2dR4ku z?|%ME8v(->mu^Du?$ZHzul~R5e<^I;h1ko87=&}tty5S#lfvY;_hkhMyM$Uoz?1<_ z;du6%0*m9T#~*JYFIe_XT9BtiE_yC#vU+Yf+=_3Low6PKRX40ba2?u&862$8jwCT{ z+G#Udu3O(&4Wzwtej7Mn6my1RMO-`uXNa!H+LGN3>nmEi!ZXD_ZJKt)GU6 z7RYi%Og<@}e6`8%^B!m1Q28)EGtnuHzM#w3#m70zKR%oU`VUb5Zus>mH*i+?+%-iA zzOjpK;#Y=*b{ZjMG7Cn8Si|t)6PTqbR6vS(^1kcM(Bq{o*n5hTl*K#y#p$`J>8zX0 zFK0w9m!on590u5ttU!_qe)i?f`bkc}MtHg!p50pkY6c#K-A}IJn|b5*-aYs@nMJ5; z=pt3*Ui+vtq0-ZQfw`A`SG6S;z6CX`|9Z}C_+pDoV1^4h{X2*AQhoVochoUJL*8Ib zMasneuupDjmU7#VU#0Ir>1e{8vrjgx>FIMkq?N8QpI5dpudh!%WT?4m`enVHv;M>{ zbBJqC`p2_jF!^`SrzGXXrMc{p@c+!^`5$^r9Fu|B<^56h9#@RDPvjuz_9@kAUlFRj zGjigAIcU2o#Mk7!vG;vlaB|IHV%k`G^h&*|jr%q4fhT_3KtG^v!WIw2xP)JA zx;Yr}F(U7f^B+&`QBHm@pO3?H8%Tk;$-{B!8mn%FTYsG}%C61tz3=n8AP2{i%T!`5 z16ET**Y};+8iscbAGnfOf%Puy#HisfZKAzL357?TWrjBF^qW6&?(^xyUHvSZDwMyZ zfOJfg7`F|;dJ|F2AFyCY8ClF|A6V{WfZx&%0;0IW=mAAHz_hb%!0`(rcVTL%d1La6 zEc*hyy#O-;&>Qh94tg?!cc)=mmn>5Yk3TFFw0w+!jA_ckJudKU47I#Y^C!7+UhL}q|vZ8B#dUDh0Gfigg zNt}Cv)lBlTAb;5PG@r%F5B>&!04JmXp!M%Bg(=%XQdyVB`~2$O;k3`9P3LziUJ$FD z3*K;K*>|Fle)m|EA{fn8Q>vRpmH9Xrsjc~ zd6BKCv&6D(znjy|5z=ZEEIR2PL@|jxEa&E637dDfmFU62BfnI$rA8h)i+5x(%-r<{ z$=82gZO>BSWAnFr&b@u)j|gvCTAKn$j0?~l{3gDphd_*2Rwg+?@&W?_==!T&$H8xt zJz|80Q2%)ME<@o$Qs{Kop)VX#p|%?~4pS^b)L5?VzS!3R7_<5E^KGIBUG2kmQ_ZDF zd7oC!tD0+0Egw@ha?|-Q1hieQR?$ZWr1EwAJ2$4{Hx@&==Uu?(1w25{&-wB8^I2(5cL3tkD%zw!7T3iG1fwrUou+h^k2&`ird_7_dJZcU}CE3DISZ@Juz?$9^X zuQ30W!6Pm1^>s$`h6GXNP3Fb{ueKvfti3=C^ORo&VZM;gl;LJ(!cnZK5w>gJ&-`H# zlUm;yg!>Po=K7Hba<{+V3vJ8l+h$|b=wE!{@rozBs$jK!Pkcic=7=iq8~ zO0^r&K1|1<=(3)$jE!-B_eVcU1$~ixOPi#nvcz<&Uop*5Wsb?JKg7kPK`ZMe{BxTq z0AwLJ9^}@_>Oz)qEh2Uu`|q@|c~iaC2T&W#3f_7jjlN--B|=nASUzH@lF08rGBh=` zS?GH#wINmc>!QW#`sE9LR9*h14VzAPjt7f(bAMLEJ1SNyhMD^f4)_K85e1KKUEhdP zGjE>A=k9Bme%(}A8Qn6PQv~}WpK{Ya>qPmztNSUKm1c5n*NF@(4=7CbJ#x3}NaJ3I z*;5u*RK&LO&NgNH^--HMFTLf`5sP_~+-xN7%7;=30Z-{#G7X=V;hs6#@y-!liNZX8 z`mwmk#`oIl26}?MKE@7mJeTy(*17?FdzSm>hK=}sYJP!CLE3tYU`fy%3f?O;b+8y- z8i(C|ldNlE-)?ws(JUf{rLls+mC@@1JLkX;*572+!>yrk&oJKlxLNL#^)NBH zT<#(+>=VZ71}-Tt2D*|A;yp^#=KIh5$aCj_$F1?TxZC4QeIVO>Z8kUkS75kbDwi6Pqb{tN)zhlE=#TAX^O%`S95Y^1 z%}lRb6dhq_XU^%rbcoV*Jj+cD#r&g4>weqaNH=$hs5CC<@0F2R94}pzmDB1`J&*lu zo0Z*ZBi?{L=(#n{1Trkn4xhIN4xL7%)w ziOckkztG3q@}z@ZRy5A}S_poz&->|Nsc6bXTtFWz&aXYu7OrGLTB$mkZx?{J4aQwQ z)murIYnyL3mjxITI{(o_PA*B6shxJ*$fbTeKKK){bH4MB>?8c_B-gbFrE?N0QEWad z$45^%P2L06q;hKd`^Bn8#liyeKFFVlL3ob>JZ^|QNbP#dukr(-IP#`AlQn2YZRXEK zAJ!JN#v%ETWdf?p_0Ho!Ek@*?mZ_OW(aGi*uo!o-k$Rb!?C(OZ1@_jtI5V25p=MQP2b2@PKYMb{Z@7)W4l$UiXq$8afvB8r;CkY zR{m$2e#*j<_1-!#33KpU+u0nkUj*s>V}%HbC`Do6AOVPy-A)A*Rv}$?eAwf zd&h35*f)|f(&-;><`NTxyi=uHWNxl%pcxAgo4%bja+hn=U(?A(`Px)7$KGtVat9N! z54o>cVtoP)J-psfk|M+6|EhcW&Yg_Z3xn@9b3@I2+B8$!OzYp!{arec1zeMilYMnr zo5iQQrOq#kwvkJ_%r7)`;pE*u+Wp%$m(rbAnow!qx8Zrw=b*X4e2o8(i1NR@z&`Zz zoxX&ojoup-_w5Q~FRXt(8TChwkhwx*Ljf-T^ce-!e?E7B`C>Kjz2-)mnE%NWj}8YF zvBh+QgpsZ5y|PX3Vc_Zc)BW@SS9rRvvO1LgTp2*A=%oA6J?`*7ddD`y*B}0?hi5`$ zZfZZHdvfzron7BEZ8jfc!|2y128O}ISW@rW!Zo18Ki|WD2XB>ghVm*|{UcAuh2%`@ zK(-NEzuN7Mfd*s66>Ur!R3-+zGWfM?!`nQH6E3m1Sy?`zZ3t_?zmWnFJYyK%{SMgk zFsFti0w%R7ookz;vTF}y=_g@EAjp22%4l8$4%iH#&9BhEp(NFRhxX=Ut1G;}MzE%rhl3g&$6zj@!7UQ^MfzA) zP_tPQX}WbYsK@%HLQPW}=w4u5C(7Y$xDxYZv@bv8IoheB{}A&tu6eBfb^cK_{d+<9 zT-_+CSti{D96B4WWxTR!i8NEV$Pca*ZC(&WWi{!A%<3;EMOmJ!U-{*y=A&X@f{bQD z{$>2Ig<3nzYId{)(#E=`84l{iTebr6HHuzqsNrtk08E@((pYI-SC&gBQjS$#2BuP z4Cj4eYJ>x|2%RN;RH~8`uq*>SsMnseIjHs2ihklQyYr_Fv^vSn@6$h7O1M zCy9bt-d>vtp~jkIii0`be(zHplXRLw;*xru`9(*s2J%JmlqGPbkPdIwvI2Ek9|k6B zU_fF7%3FWX(I}*NI?jw7*q~|IocX4JL|*a~J#z>Ma#6*7q-E`3o{zKnAT(qiqzB2n zX$B!O`g7j|F2G$s?&I&e<#PW~T*3AWZ;coDD}}UhIq4)%Qm~jbfLk@^WT}7rLa#uU zPBA>ubaZSVo&SKJ=WvM-xbu>=I%l(;-vQj3BdV6T{S`?gD?X>BzL-q(6n)|MoO{{} zyWGllwD;UnKxUGT%>$BuGdIO$O;4v(u8U?$Z<j>R@$N|8 z9CO|ggrr76ftI|UE6-)&(%8s*UO7tQuWh}kZ~ZwE)T9KCXiGb~f5eZi^1t zIWI0DcA%*$uei0xU$(qa(3T3bZJxJ_dH~G~7=&(0qr|=DB26;fztw6=MTlS;w(-CR z19?1ZA8v>yC*wQwvCjf|?6d5i^#y*gKwE5J#n@fg$2SN&RSB(S2VqI6OH!UrjaMrd zrTwz~?^$N47xKv5oD!U7pD?^bXw|rI+dqqCZJcP6wt4P2NF@<{&iv?7W{G{@jx6@| zaYq+Chxpt4t4^Bi%^jXfoSy1$(xmE`3NoNvu$PAjuzK*c9|zP2G(*(1_(^2bKUE}L zJcn|D!_1F#HMm#x*@;=yS+uLyjFQdFFweU${`KLipU)e}xbH!W4szngefhIWtY$5~ zvuw$14UVrT-|4_Ro+Sp_AYHTqUt(wXwsDchGUiQs+!c3G`U|bi!Wh#6Tq|2dl11@1 z@*b{r>A2A%GC6fy=}(UV{5vbd! zSEtD%&wv5w36+V@IYKl28?R_F?xR|bUSv%|Rd*@v7v0(;?()qz@C zGTD0bVes;|!rGw+$c0K_Z`BH46{Au)oh^@ROm<=s1d8nUb<^e=Nx+EZQ7TI+C#;zT z?tZS4Bgu!Bh<+~eep|GYyZIbjO5~0l6@Ry8O=?nVv>EcNnOPOCVqgoi7fAdXHA*6% zmc8}!Cq@pDIkzwA8-&MZ{{=yL!;`UT;PgJ)F~H%IN@n{9g{{+5W?uttjheY15_VQr z#=12lhU&8^xQ2^x2}lNOLVArTuEL5@b)l6rq=nTG1}IcE!-a_E+0-iqnT4_}+C~m1 zH!j_ud9OVrXB{HDj#fWxf(BhWbE+}NJqhhUYNTz9e7JQ~F@I-%PyAs$e^1Vt?(!}a z9=NCpjR^KXN77jj7ZpS2`u zq`g_`k)kY|D=@k%Z-pQ$c7#lBjm6r6iLdMG=Fq+7{} zm)yS}Z2P)GwRU2gd{%bGCy$^g(BN)T-3Dt+*j#w~`=*yfyrJLoJNNuGiImiKjRskL zg?-?VYE`M%<{xbNDXxs=@5<+tEi?*_>r}MGe{c9@st6ufPr<3!kUyivqbe-j=4T9D z+;J{aP!`hG@N;L`6k;~bSYD;K@?75Q!Rq&Ax0vMMp2I~X7_L7?0#^{!Ewy`8{lW;n zi%4`S?P-qFH}!Oel^32z$v?A%08lvfWA}JZ;X6_}a?LGuHI-B^8Fg;ikz|K*8Q ztAgj_s?ErcD=a%KLsQVj0xK!0?!m#;)VR|OvG*x${p$)Z^f!ZzgnOW4-Rmi+u2lNOW5$FsbHbQYXkIPP`+l@Q zCiFU%B8@S1w$J>n!7q@SCeM?=Ad$u1BPVl<^H!c~PZ;C0YQ_?jmJ+!DA@(9+fZvHP z1Je%89O6hO$@+^zDv#)sCzkZdWIyeP36@&^VA9=+{4nP$^w$Ol3snzMnV-4Yk`BWd zs{HIXK!|*1slynkutEd<|ENM3EgO~|BnMv}5jP?;tC*b?h;W2yGBOM_-{#-A0Xfvu zwye^&xK_8oC+|5>=smNn5AK5Vjr}oICWtIzYt1L891MQ(E+{P5I9k;9>_1fxa%hmB z=4&~?_@&@wZ(0ZcV&%+!fiYw?Q0og1JbqDcRs`pAJ~PU84fe9&n{8&gdWQgzMJw#; zCt%t)Ez|Nd5TF>+q+}LUh}FU?a@X9-IDInFtC;eNQ;>Tv%Y4$}Z#;yj)j&=e4y6q! zOE~^6=BltozVNWD$aC%*^VR}GMLcxMEwE1@=RMyqHLx|8^p-1?8d^VhD?!3G_i(Wj+C-^!dyD#Eko2{h9k8{9o!*iirr>*FW`_#6-FbQG zabXyw7}ncE0=at;dom}sd#*L^cp2I|!1T(T+y)sbxbID*IU3Q9D;T_za&5}*NkimM zZ&&jRf6DxlFgi<`Zz*iLVc1)f&Y~IdYKPyami6?OeUq%k#!yddk5^{Rj^X*x`AR$g}!F47k?pKy4(ge&KCP~j7ZIZ1rTaM*(+sb+VNI`0zrG5O` zHqu;Zj-=c-E0;>FnLT3e5~ri&>P1aY5pwf8wUn5VWxPkBJKWjD&fiR2OVl6uEn^ zwos=@#d8fZD~gl9u%kH?8vTSze<35BMeTDJmbbcKB#>49wMN6MkP2-?k1u};&h@VB zif@f=3H`&0wO9(9Zs4DSHx<4ZDDEN|Xf*64EP&R%rZgIt()U)eg>IvA!P7yxOL3Fl zTTAhy@W9KYzUb8VvM2O zZj;|$(->P)<@8EnO=a~^X?4rPmumv>?oOwS%`UjE*KyuP*U!_l&HNioTpbIamKa_5V#m$^S6A^8Zpg%m2;MMeFt+ znP+nAT+QO;l8x+YUNa#MuT;{3;hmJs^8aiTTzM23_@4m;-`a6p?_}V~dm*D#u;5cL zz~*U5Btl(kT>aNZgNT=uTHi&mgxi#$*sl%0o5K$Ue16kI$p16F_dfaPhM;dG(fyK_!+oPMCEi8p=d(xuGcduG z8dRGYSaYxiBP~stf*0YF5SDdY6-xQ0{~xgc`>s~MPcWtI>8T}@fMTGtT1xCepCk$(loRxfXmE@wWg5$w4lc(cyS=n;&d^Wq z6DA}S>3({3&*9KQfFAFF9sQ{0dPL+R_%2d@J~R*TbOY}Q%EQpzxb*^Nj@8eOg+=wU zXgHS*((1yviZ~=O;-_9oi3kj^$30(?X(PR!0o#p2z-p&O7FpJlC+8I?Sp9l@oR{c; zyMofu>C6xmPfNx=V=77hF-B?k(g%Jc~Ql=YFe;ta4SD^1&sRw2~Vsd45 z5J$~pRk)Or`isjQt3z^M+o4Lzjkj(a1e4p>(hj@mkdz5<6Ji*W5g6b4MtOJ0zE*ZO z-B@fbbDH_+>dy(r2@2)(^mcv|$>frN>*Cgacq_#teN|O?yqp*Gdc8bL08}#=jhTDD zl4Je8VA=0Vf=b}2YO_W9sY>AtP!YxdRU;iB?GLfwIA13kvQ6BS?y;9$Q@t~2l<1GQ zrG1K^KAKQjl`_z{;|5aI_-SOWf`IzZf7BEE>xQTyq738}+zQW}rL-Pyzh*roUp4ou z$NEN<7L0`anHr$h3p5WkYpjXM6MjtsrmvXPL5*d<4%D9bYQZ zPM6+lT_W1H+z^{|NotX#`P^1RkN)K~2&}XUOSfu>03vu6X*-LNMdH$+b zP~X;W!yGrQW|9uDq#eg^D}a*IYaU&IMoQ@r$u^xVv(G9gGtFG5Go0(rh(ggBAKa6v z4VOfMM-(=@p(qwD)S=;ciC?&5$Ms9}dMDagxCPvl`THK#p*D4Npx2eMdS(H9Jk5_PN%qEVBu?1I z8`C05k@=C$I73ldv0x+l6n`4qPk%?{jr_&kMD?sO&FZ5sUF8Gk+h&g6RIVttbZIZ; zYKqMq`W^q${g`9#Tza7R^78Azo?O@VeMuVIhduSt!w59%K@dx3;<4I|a<46F?AtWU zR>fuR&fN|E!==WfgVtxFeTQc_tY(xYLb40#P^|0S;h*cak1LGo9v*$fHn$q)3y?xp zWD(_CD!WK@8L>0#*k`o?!{%F(vlU19g_F{-jLVx9gti!65QF+)!`T{GFnKl#Z{J}H z%$6J3Bs0Wjts!01mYzUuvOhlxl{LxM+a`h!n3`B%wa zzk?!H4xi1~*Rl%BytTjN`*?2W^m=&{u|;wP+Sj8Nz91&kQ^ z==b%_(BO3?x6thx|MV6TYY5-3m z;@-W1O8c&{mw#~ih5dn-3Ev2zbibusYJPy~@s|X})I^siJ!$7^gnxF8C;u@&{ucbk z@*He8@m1S}QKyc{95Pj0VUW>E}9Uweu6{#>hLDXx}LBIF#) zjqNmb&(S1}6*j{*Y^3-hp|D;DW;mFGSH#}7Ba?N@w zdSK`Xd1gECav$GFsMt)i-DxR@?Z^$-Ve+RsJ<0zc~~3Ht|cf z%d8)eJb%e_pP8@erE6L{$Dvc%VETF3IQXMuPYav#(}Q7?nz=5@e7)d$sD8&|xWSev zH}e9|y%N5@ zbl<(a=k+3BYDG#6vBBt7`Eb-?WQ4g~F3m<%-kJk6Ndpw7yZ5u#ly z3~kAb79yz^d+E8SOao5;8(@S&vOe-)h0r{4zd-l(NY;+Z9-cIG8O>kA#&9 zFqP%D%Ayn2Q&2yTZn0`IdO2++2y;9*l2L~UJ$>BDs8Uehk?Q1 zNgFhrPUQ1^f2wv~bT`BBmvT|4fv(I{_}HCu3H~E4zm-Oe@j#ij#2eVS64i*&pwmFF z;FrtQmu^6vXOw?Sj~GLmUMM6jD~kNwDI3q@xo~uWrf1+~;E<@R@@NA&%s2CV*jF@2sfh-XE z+!p?-vXIU7iy>wuK!QlXBbu3aJ>OBt%!^!jKaW=^H`@BpXHR6{>ZGv5Kkl|k!E)Fh+z_&T6>D>S!^`WIaZ=s7a}q(L zs=(!?=4b4_B=Um*PAuOOaZkIRUpsqO^=&jq?Lm0s-1jMX;#}hE)C!Z>OI90O>dNnX z9Fow*L1VX|vumABc&M{~ggmnP`eYqC`24s0voH0d;q}2~5Oao`#=Bveg$7MyBBM%} zV4#iq0nql@*H(kQqi#3o*!=IoH2>jLi%D7hhz@Jn>~>~kp>u*^ZD;T`Bgx0r_Fr|y z+}^hYIM29J+E>w(QMYHu>4Fx%$gB{tTNfgl3$|h^;NbV7jfAJcb1USBc=_OC%c&>N z#MV1^WY<2k?rciIWE9JWSf&D*)&A7Gk=ZO853nvZ1oolbQg%u%cRBT1jhlwcUz^nN znv`8$@o^RFwt7T(_3Qlehi%de=xqYRFzW6!wXYK|)Ju~!(DlQWFdtlxdPyg zIjm~)n3`!D-0Tg32j+(`imRtSYp*YVL%&*&p+5&eU%$1ue$qDP@ut9;wk?ft`g_@i z*`)1hq|JKUac^o?M{Vvk#M*9#%RK`@(@B~3TF>=VK@Nd>%4ioMgMFjsl!>N1OfD2b zMddK^Y=z3aW<~Yv8dp8Y=TJp@tKCtTHS)T74lI+hbaj0}=`Tv{)ljnDnr6vH)y(V% zGe}n$+Q)S9R+lc$an7s6A9HJVcI}x{FVwkh*0`EYvQF)ySAP2O-Pw6V51&yZ{mD=A ztUR+WLlzti4q&=fT!gqIH?t%k7xH0D1?Fe;zcdx2J?^f>xy|I-LtBBkT`(~!P75^L z60c)`+}x3I=55@4jgF@J&F-iS&=eK4^q;Z4LdNy)WRB!iYf@MTSG(h-`ys}O-=WIj z&dLiGbq$A=@-{u00qdKCPWz%v%-%OYn%)Lvx+1TvJ54nCfx`~Mqz1@W(~i_J(r#VYkvvG2^?mtC(ZVn?NBEVa$2yJs;)iphdj$W5r(cCNUT|Nk@^~ywKra*1 z4$9s1Q&@x#%Mih+ImK;|^L%mwz#;-e3i#Rk^v>SRiJ;&tFA2uSg>OVfhi2HfVn}PJv{FxeG`KeU}zpOnO?yXWQ!kwUf4Ro6=8+c{o-7~K} z;ofRjRneT=G|Us_DvN=JNp|nuzgSc=ue(6?MQSfOC}U&X z%8yFg>jGRGOPU!>xc(*kB^#^DPA@>BCo?ksYgLz7Q|T9DbME0WHU%f*X7ofW{5c)K zxpH?vG5}osY8E8DZm3swC*U>A=Ho@AHJ$R|nVJ{CJ|B(^8NzBFX;Qw}t4p5ORi73^lH8 z)w=&)=0{dMd8!6iq-02tW1&BFT`w;zlW;ublVCkLLfX*NDpE_gMQaB}Pk4=HRg%5&S-Nw^K9MQyc;ftf5^&Ua?;sH z*T?_&JVA!G-+YN4Ajg3WAH2G3GX8@zwRASU7^y@q;S2$)Of0Fe%x-N}9{wgIvxmqm zE~izshluuN!N?i4xN`e>Z&q%ZXY?eSL9URKjJDYN=gdtT_W{4m%qCej`WR2;TM2MY zpcQ$>fOq$$Vmr?tyXYjF1H9jwy(As0J48k&ECm3CMruRJ}5-UVH*s{=t-o zW!jH)LmCd}g3YIj+;N6$Jj8JjruBhE;&6ZU5gAxa)NiOWq}RyQC*8E=40-MfUoJ_T z(f{^G%5gSiSU&2!NW2H)1qD3(83d>`u^YG~2Kbxc?8cvurBRi&r`Slnf^e^GV)x;_ zn8mcsW5pR~K?77&{oNNctpF7_fsN!KE$OcH0Qd+9aidX=F4Lp(iI9rw_Ic6ar~Zu8 z$_;d5n^_(6=)(||f_Pc9#VV~7>VN#Bj3w!U@XfqUhLy!cnCEzQ45l$`Z@dZ10_eEHDTxPR8z+u@8tuZ7>_cy)4@saJWsNtdAt&-tO~N71Q9 ziuhXisAFgx>-+iT;RlEHi3+=H;35Az3wX|rm^M(=pp5IF7k|pJ`}((>3XG+fb_HU> zr*X*WV`}zamtqAU9EU)~V>nl6i%}v`_o7fw?_TS?7Bl$^x`)n%vdh1S<}drUVzt;v zqMl^y$L6Zt9mmGyTefa7Wx(7}NI<^O(Hr1*mS+e~5(R&n+dyVZ>w-YHQUKMMEoD0) zdBB-MK)Q76>t##ltac`VdxqbET|3`u=ATkf1|@w_P7zsm3e#-Yx;-{7gX#m9oziKX^h zxU&KI$#snmL6cmD%hFr{4(|HVCuxbgZ$3V%aGut+KWNcRTJ5J~CjmwbMM?*Bl2b3I zn6*@0c4=T~!DZIvZNs^V_(uYFxHnZNuYLHfC@=jviLF+2_Uh{s$vA6?Z!nac{y#9) z&9Uzh^7pYdI(6VtiQ|C%VWvOzU1RwPS>{LD$b_=)(etup!!dF7y&s;7J%m(Px*d82 zbq|*n=sBl(+64G!^z#|aZMV21dQcrd+UmaFJz3QzAD)d+-Q)>JjYzM@cU{p*b?L|1 znoIBQfM=|_dEfu6&)xCKBex!#Q@bkt`A)=JdBD-sss#NtM+pScO@mCZB{mHw6#?}3N*~0)(vkEJH z_@(QK=Gf4TIp+KVtxx3M% z+%&|k!ki#m7M0mz-j)fi$SnN3WvlFtbbWVb;l(jYU;GCOrqwQYY|>Qt@7*!~DqrDG z+vLef^>KfZ`_q(($)|p!>cbinZjTSUKA0*m_5X|N1bxqMbepkrTypq^KUo;~i663N z{q4$s7Wb*>@r{aCMm=li0-eI->e8*AHUUM#}KuYe6J*X)DPxt6Mze& z+o9|*W&b{itf7g%4?++XFNh9#ov-$frmbOYX{N!*a4DgZTuxy<^FF1tHs$+vU9PF= zoYrEUYo`Jd>@E@mE0U&)iHkK(bjau2jhvUzVEdNR)xmmK4s> zizgWz5}qfIV~1imFus`c>U`Ux36UF=hjkM?1J~=)9CWSiVKy>J1fh|V;z&ojXAlsm zWuFN?vOp&I(~U@arRKWIDr9mtIIBRmwXygq?So_v#<2w7gzW@L;XJ*+w&(< z-mCe|tbnK6|A84s-rdb;YxwJ*2L6l_rvpVNyoR#U$vm~V`}F5@9SFC_!T8rOeTrcK zul{%msE&7-T5`#PySb)bl_Bk$5^e)wkAD1rAp7QKliXK_Fh!Qd%lnoNzfvk0Ei{d~ zgy&m-f7!u~ZiN-d?EWp5eE;Ie=pA3Bm#oA-#R)~(X=&A^MLL<9R85<`nJjUCq*a-@ zze_M!B#i_-iE-Mjq*vd&KmWII;-Ih~T}pQv!mpH-q-o9Ek$4ion%Ggl*&e7cs{TEVRt>U&DwAPGo&< z;9Amy40;&q@+=3bZVv>U!J%9Yqftl*2IUH)mZ;;DbCYSUPZh|WYDG?L4tokA zgYng^1!zbh!lwzVUFY6-o?9QFb4@ygBw1F@zv5JN!$D8#Bb40D))T*?5s&-0wBxB#t1xtI3eE>F-#lQmJZibYejAIu|L&i_$Jn}kfm2aBLBS#){b2a0n{f)@ zS+{)(1ru)qujJm>o+{?Dw2Q_aedby{sW*J5`X#7havvu>vDHcX?9sTpG_$^-?QH;! zM~`Z=i4I&Fe)-DHEz9z|WbRb@_PE}4WQm#edEkGMf-GbCU#1{m>|EbuXTz)OKU-b8 z6Ie9fe}6MaCm0;6Jg?+Nz_bQ~0CN+L%lg5d^T8~yb0BF!$40VuM+b(CbKI}abPmMo zD9FM;i0|MQ^9`x^!X!IH$#>RP9S~5{mAzYoD3e}^N|P08HM3^#9&tt0UReGQ*_76+ zuM-pbwgjuXZF#38eP;hAOn%J|73#XVR~I|Ko_}rABL5F!b{IFk)%mF!KIE!ZSFFig z1KMe6TnVBb@hdxhFBj6H2JbM9<`ieqe=tr8IA13hu!~S} z?1*Nxv#UI7M%Gu#7-p(<`!6$#Q(pepnZ-F1iE^;1VnfKz2kMew;Mb$?qMJBDdeT+W z_?t=EgG}h_l7wl;G|m!}h5!d&~6Fr{rT4~3Q)r|b{bltMlW9fO4dE$_6 z1GfpKXho+^LEHmdwL>LBwo}WZ;&Gjp_S7e?eU%rM2iocqhCg&VYCGhvGLiDYDgGua zP8sCC9&lz>w5G`l*kZlA-cXmc(*{4?uV*I~!n`+yDJpwSuWI+qMbfBX?ZypBZOUFD ziDE!If|ngVf}_)OQd#!=dg0Uu{E&s;=Qs&_=*Wk6^MIpmrA}wd) zk^omw8{l}QymB3%R4nUVl2wU^>g89RVq{*fJTgiw%gVn=+wWWt;EwA_wihEwSam1G z78vLN;Hg{k_HSdH|KQX8^>w6#mY$0A3pJD)VtJ4O>r(S#r~0UwPW{PW{Mi6zjna@L zejZ^L?x)BnJ^Y@mI(EDT|BJmhjb^iL`@VJ5R?%5Y(FsM-)>Kin)mBT*f|^ow)|{B< zv6Bvpwu+kPAqi3?=7^%ytcZ{ZH3f;7lOPiB;p~0h*Y#ZYc@Jwn>s`-U@B8F~53S)i zj(tD&ecS)rfBS7R26wjJR7=Bd|Nhy&E9uli-pL!MCk@U88sdBkgs6=CA~1J(e#0vzs;$*LgQghev8S*y~EI zZIO_!`=`Aj9jLoQPZq%&Z3T~BI-|#Eys+BC&VDY9D_gm&6YO+B<3+QJVWRwmKgaRhJX|KmAk#p9*o=pzyih+so#eP zRXVn)OpUxkXKgyk zSS;GH7cGzae1nf=m?8ZHH1aEkO-#Y)P{p>L*T|n6NuSHS+D|ACeA#gSvJqCc`2jTx zsU|o>xB6E`u{NVy*_H+H<*Ltqv^D!r5~eMyKm=FetJye)n%!jBOJWSW%AQ`*a#2oP zJPPwVCAhr*_0x)V2tQ>ZrqHFa7pZVQpr+#x%nev3 z!e@Y`)pCudqe!Awe!DoId7e8&d)itZ?6*m=mBCK+ja*H$CZao|?7_ol>x}i1$xOXO zd&kNHLw_YJewi!B$2_KQ4!WoIw&*&eILjNVu-XzUN!>2+u}*ac$g(6;whCn5xY?Uc zM(53)jSHfYje@c}5_$BN5LK<3M{S6n;0xfA`=@wF5qxdKE_pm@ySSByP5b4+Wlo=ZF2f z=R>iH0}zN!od3i^-z#eWBUIr=Zn3O1zUEtJr?j7QqqP1^bGLPBrnWU2fw{v!lO8!g z@O-N~*=ZG*Xs72saq3bnI9q*7Elws>$MP8yxnU3%M%f{QKvZpZPbX6~ z0YqEEB!1+QtM1V1C9sUwPz+#Z&S`(EklLm&IAQ;~LgQBI#2>1_w$J4#3QVT!XaX7r zpRbxn3aYlD9xFXwMORPj2VopkPpeqSyMg+!FT*`3`4IzdYhB;_6x)#TWP--uc~Wuc z|B)xvut;ia;dm#Dxuq|#dqH{pob?r#xS&)%iqC+uBJGmfx#GhWs*8yI1n0NqTHimV zdsXm#Udl>Vx0#M95q@?de(}4Ta8LMB>2PP&QDVXnBTzoR>P^P6E1Bm{)QA|@vKkbd z+;$}#vvTE6m_--_ig_iYT|GSGnoFd3827dH)5{SKvK4y=Co6JwYV>L4t9_F-U*n>M zQN1+}X3A4hFYw=7BT0BbFaP-no~b5l0Kb`Pjbc`iej*H#& zE$H`JNqYOhD;~G>O5(NMs0m&MW0#q-IWNvd$Z1qQ*X%*5KKF>Ljp{2(iVd+g$LI16 zoatfRnIif3WyLpD8z&JBHgca@SwHv~C-yy@cL0tB;f}9qY6fQ0&9N^WUNv`)UvaA* z*enYuT$wk2LQZU{7L>QKYbM#H(s;Y|{!v;;dnwbID1+sH+ls zgOhlF%fnnMXa0|XG5*h3H~%*{XorLqQ7$cWjjJPNc4%5$5zKxCwAMC72)1*>Ckgd_l#ikzkZ}!84DUlsq(4qM%4B9VBV`Qx3IEa!J zyZI(C>}T}DY!kQ)U?k9g{5H+cJvl~>Fn7Twk*!N%ea8@JN#R)DY6moBHBrPX=8^MwsA zq&=99c=jZCOq zVW<1Mj;{i01+uS_-K)tp1mXGMJo}fvY9@I}(bEMix;#z>pH&eYJ++ijP?>*q_e2zd zwR~XZ+O5=X*pPEMfCxAQ00()cMAR*by|>Ku-bNJQ(MS_d!kgast^Rpc zx&C5iZ2S9hDLm#eN3?i67PKz^@mSc#P5R~o4JXS)#`TqIQCH5=E}B)P5vbNgO`=Kl zx}^Gqh0j$vW7Y=yey*n~-F96bVXWaJsMOY}W3u_is}>I*TK%e#9W~=U9^*4u5t=hD zTVp~W&8I$ZNyz{7V_nZEow}tdtU70kTgZ2=@Vn&a+^rew{Yd}KTe-CCkHJVUa_}X6 ztzS{htcz?JKpcD|n- zDOb?FCVvcRl^LROswkB)uKs-#jKS5~E$AbzP235S@WD=EYkLa_%aLU(QD$WmAJX&W zo=R04SgSkT`t{AhWWB|pl{laR`tq~3+t3V7T!Ptrt!u=U)RJ32(Eq^JW$; z(~YJ-3gT)v0-#%+=fG9dM^;m^Y!XuP2ft0D{pLvoW}69(ZCPnjdc{*U-nxsEv_DS# zBzBpH=Ck5@{HL0n8p6WIIRAr__8&XARJLo*J&nAVy?s;&yYumR0)-Agl5{ojX-~pT ztY6hhaW;=q0zL(uyNRw;aU^SajL5b-`ujPq(pgNoD&Aau&X*qbRGL6+ZC7AQdhjI zrgP>)uGD((o>NS-{4uY7cGHnrjHoj{wi_-B-@Xq}JgL|qAtu?oZrTuBH>OQzsAaWP zFcRwns;X0x>TaLl>bVSLKF?_F!g&n~97Bc}$3<@Cx90ldgzRUYLq;+w&)GPqUMXSq ztgwhjOPLhcpT^TRyb0vfUdX_-fZF}f>}eZemTK~GH-tT^K*CUw(J%wnKypix19*MI zKGt8np#2mEbLU)c-mMzZYn{}y@{A9}eyS?)Hn`lS6s5(6WsN^BO?M7L_D#cDG1k_C zRif>Bl=a!Aw@&GN@fzcC7ftIHrNPOctQ0muK1_gvrmz!O2Huxu#X7*L;pcFe0IgVU z8eg49lzJt$<3;09+!O)tJqRB{a4`%z#H)AJ^qR>WWVP^@O^e0$gFc%ZE``uS&-Q7H zWY0H3RjWIJb+{C?*23~x%vdkcw@J?H`y>vs&x@{h$&c>xxE5T=s7N;`PiZNlt z+`%^*X6bIhs;}Oc8wZg?w7_8dZ+xmgi>*TFiVyeIuy#%PNULp zi9RRqRbD9z8huLq3k{MQ~f={ zi=d6LBF1K)Xfd{nUR>qGt4<8PGF=V56 z2o54v7JH$}m$+AdNfVZ0SIV~1gK%S?Mhg~jW(8h+-&P-m)KqH};2&ys)P>v&61j)j zbIUhMB|e^d`#a;oMm=w+T#hK#RBc9K4_DF)0F3%W=VuR*&8lMOKHygOmiO{BV8y4P zgt68I)v^<~5W-`+$a|e+L=1f5uy~Pc*d1>95smo__2AVk|C;LTx(szloslqb!I?Ha zZ{9x4v#&{1-#Fp}Em(LT;s&=z?LVjW`Ou6#I!UdY@?5psZ0ba*q=W2$Eu_vs1#LhK ztniH>;CyP_KU5DH4Nh8~`2#m-H_HPugpUP~|`pyt3KzdEwZz$EA zuwVMDZ0!}arN$VayW zFgGQ3`_`)Jp;=4BNS^~@>}wL%v8B)uQFaz_a~jUFjzKo*f-&xO~UbL_w#NVDjGh~?Ya`=o9xx|SEysuDVpvQ{q2m;dNXoqqI&u;locan z0uFgw9m>2zhkfztXcpBOz3CMy4DFKh!t|^N#&xV+p;5WY?EYgYllb?c%r^Q>aAM7} z-^Z~Xmny9uP`F-dmW?oD^C=&hOQbUA2B#t^9#0NY3V}`U8|gi(QElvWgCj3Ey0oxIcQ=l7 zJ-gaMo;Z)W0@B?P-jLD6$L0CK1oT+v2A@Vqs;}CTns6{vZN<<$$Gmlxvibd0|MYFk zVGjdt&W0w9L$d-ejJSnnAVH^9@2J&XH72cKb|}0{C8#kc2sPv%t75OCOjeq~gpD5y z$5d%5!u0QZ3HYjBOm(ct&%rCK9qv?9k zsuc|r`9+v;DBG-bP2gg<~AJ)JqRItJ11U#EtdjZTnUxg0Al zmh1{wlJ;Hop#-c1jfAvBSI&cuiv=e!jFoe^Abl>r9eGUeosB zqw0s?+%wBvm2Y0}0g^&JDcf~*i-bWsLmTHQq=$(VY*sA2>+!)6WifjhmbdQKK2reD!y6B}FLta)oQgLxlns z`%^)|mC2dEU-aR$e!U~QTc^ zdV#*~316RBOW~^ML9~?6z}Qhs(e<(;`S_9w3YAW9JpQE`DO8)M%unteF{u+1|7kG_4#sPDQ2vjMn8Q zb(H6=Gwy2w>r9o>=%D37XIf^+dhL?5KD_O^_ch8-2zyswf7T zlgxaOQqv7tYMMkuow`60xSU;=OHm8StFCUX|0d9d=ib5?l^Bck9foiU@wYNBKL}4& z!o7$B#;ts$NJgVhQxStQMkU+BEyqU6&Rm_3&0$@%A1L#E8K=|L8!hIBX#6n++FVKR z82h}NcFM_)I|Gv)1(bTr%s%2Qo(|SyC6s#}{~i+K!t|2PO*2DGPrW?oQ!dXhMEPT< zb5gihQw1()bDtCIbV#LZcJk0&g$eamaDoRGT(RR0!ulaX&63n{iJ=kla=#C`47751 zdunlQ@BPW&lnZnq@bXQ28ey8OH~DZgX&Z8z%4GyKId(dis%m>d3JI$ng;sXPts|k$m=VV9>&T@Mwj4*Lj_wPzDK2gdstI^H2kqG2HFiXY zuO#@wpGT+#b+1_l_|M}LT#a;P)F|QU9Yhc{H01Ny%~zVFpT@F2UOTvSx98zxq5m2d zSt^4LqWjVa6ZT4k!#2NWR;qr!r3Ks)?NYZSZVlWJu2bB~mWovXrEDDc@hcsVHfTN0 zEU46pa&F6a^s9`GRr5kqTc=I%Oi-Lv2pm*3WO|6=%Br{0j(MxW-s3Z8kWEoO;g3_Y zv>pgKGLr+Fh=(uW@C5}MiZtxjQ39iZa4^@|ekfAJB%x9FhUJPiEmX|=fwQS2Uh@fJ z)<3!$q9L!V+Bib-ZQJMdtgz>snelTs;7^2$_wTr2yZ!D2T)QtO5NuOIh(lPFopbT2 z8TK|xC=JW6GfS+`#Lm_Oi}t{~r;WRxD^4N$#-!A*XmU{*d+6)SaTJ3Z)3}(CdF@Y} zEMaDdK29)8HeodF(A|bi*?c`nA#B1V_)|de0$6x)x(uy)-j*Q5dg&UWaE!~oWt5-Sf;`TpIOVi5ow^});FdcVw0*mVouY^?wz9= zqbEd1`nbaHj{9ndgn)%RgspDO+f?&B zbu*jHE+^34CG9~@K(4m^NNg@4lP*B}98$jD+rI4ix~hVI^hS~oe@k`VqE7m!AZ517 zsAqjbcW6gQ`tEY)?nVb{qq20)c^w=z88|>pL=VB$_*1g@x61Lv7zX1grY^bofc@v1 zsHeT7h@D(~YQyuuK63YX>UEMd8p&!eOsOvKru>eKYYp(fu+3qZ_#~QF8sN((OZDF+9iWB&QjqKauI`x}7$RX=P#TDwo=h*O9Gq_% zp{!O}5{B6pA+GNBprB#`~3R!Qsw4?CVV@B() z8qbUC8=m-Tqt3vs=tOvS@5tjb?Ds)%2N712^l>%opsjM9lA~e8 z>Z5DEd}pEgj1E>b0@3kI*q8DvR@vDtn_r15LuGq%MHwlqp71&KOPi+dF27<>x&nlZ zOJ?5gW_~`WnJIiVj+JIN#gffG>^~Va>T>2DVSeMeua6wE<&9Wx-hz`ulI0l%Q|Qzy z^45{>)$4sllKCMYz2J^n&*?M@C&R{p_sY%9v$TLS^b`Bu_#(QLirdl04s#hC3MTL5 z5}e&ful|K3^S4?ef@j5)<&+hZ=LZ-yFaz)tx#L^Jc8cnJtc~>Z2=D98@7K2!!8LmN zz3}xFI)UA5@jZfLB6dEaU^;FESM}#*5cI%qL*hQ5o5HN>heZY7LOz4n6*k!4Inm3R5e|FT&;ys{4lR$F%?B%URLF^qSvc&9tN^q39+=5zP9uC*J3 zqh<+N%*V9$bSFKsUH&D6{b{2t4MX~>d8ZwIkUwE~QOXe-sQYzBzHF`hyesq5d7%W>p! zB!wIqhfxjude4K#+jzVXHauK3(F!0`J97tLGHUFRAA+z54vJ*<_%FU(KzIgyc*~)e zD;=d24h&0pSfZ(Z8fMT}#{EyOXYv6KY~Y>`$&h5htpVpf=Q2ye|4p%?sDjm+4|>ZJ zUk?x@&a%=mH&{xzg2vZZ>DL=NcXO4U1m3VSo}g6rmuh|)LsAm;K%mg`cZ}=BQ0C~9 z5r@~+R-r-3wfFrZ7h>N(M_D1Pw`xp1)f|m1xVdCvfS3>X^tf(^O2Fs;5*z-e{fP_Y z8|BUz%tT|JvH!?J0Rd);5VVst@*z)X+O5l~7f1 zNr+0m0aTZXig7z0)g0ywI?DhnPc zcxH(+E5x{U3wr-_K8VS^cyha`r&kNp+wj$tedZ*RD#4V;2J;&_15?D}LCrqj?X3I( zdf(@j7(cJ^-f}Zf=+Y6SOO@0+C!}x$LYZ*Zj+mJ<)$!g)?2?u67008FuNGMm(?Obc z4MS(*MidR%Xl*Y+OZpW}T%d9F<|+Mimz&7E*^Brme+Wi65=NKZ8c%KTC)Z=Wu69AR<$r zAd!fmkUeYrz_}fCb7FexKX8HHE6$HZ$o9GH27qz1aReF5;UA-FK*sGl8em3lgX1Dg zI1aO$3cP{MF{+)L*!$E5fj}M8fS4(rTLNeoCCBW5lPa=R-p+CM2Q7;|Zq{VtlwJP# zzEfAb?hHd#&tV(g2UC&nNH2(z?}Zcu3e@Y|ZAtLSeLQk!=ACZR_0dk{#?98`4v<1t zXIBqA3DjGM-xaklVs?nGbBxxpIeV?eE?JHx*q2lD438#4r-#m5b_gd+bf(8E{kVWi z9_qe|`cRwB<2~}^56I~5<)`wbW&6(>4{a9V{MT(-i;F@(`@4EcDN3iOR;t^Ro(xaru2vSaI1n8ck?r=4~})|WRTZ(;iv6ryyhPNL7+n-;uvFzA%x zl#bjPJ&m1+chJ_%jd=Jh&TmIbupy=yWd!mBJZQYo2aB{YJHp&MY~7n&-~F2*`5&@1 zS&cp?uQcl_eIUt=g?uib1o&}DX0~#5jV-xXh)L}w&=(x?xW=%@YgPWMo%&%*>9sI> z4SmJw!u>~38U({_C!KU*BUk>E2XW!_>hA<~gUZ>voMf z`(0J`EQyOy6~lV2uBh~dbyQ_`CzeQ+?(lk_{J_1oOVrK=`#5&sPlJCaoaCL>8)iU2 zN;igh)!9DRsB*8ux3*PY6?(Jr(G9XK!J4_U1*`=LaLj(i z`NOQH86i)*YTjLqf1C_H^#|ZKbv zEyq8cm$M24Hyc4(;>{J}M|B{@VnRcMMn^2^z1aFF6hz0DHZLlTscSzf5ljjbrvlbaKt9_={h*xOMs1(u`YTV0eLRFfUyJXU^J+>nY9z<&Ls3Srw+d890Gd+Cuq4 z1NzTB<;J@bw+J4bg*zbG$!T!!$T6U#ma*`_QmPs;#>m}Xx-$U7=V^r99@<=<+N4?I zL4R93FzE`>_TZ&!9(Wgis~O4tQPa^b~kojxf_UTPpW!5C`Xa=la@#o|shw1CS#1xW3`R4SMKo&Ym&zz_-*`ZpQjQBPu6cS{MB z^v1ATih5lKYCNtN);6+pY$MOQek0dc*H(5FifexX1!!rz+`3AV3aG7@ht-P>ZE+|* zLGKz-hyYe+6Fw$#j_2EH%dK*rC1y#*AB(_^sJG|6EQj{)l(deC-<}U&Q46q}hiVx) z0rp_Bz>N5>`_$A~G;QI|_!1vX&ES{23SbGmf(;u}${9(x=W%Rhd8F!77 z7@g0scI+ksZlh)VUnPW~q>^*E@59-r=CU9A4#!s|p0$st{;Uj(O?d2k{k>Cd>Zien zFRAN?xdh#8o#agp17e`#_6xM17B!R0cO$Zt#@V!tRnTH-0vntwLHD;N=os{W`CMGL z|Gni4ptAxWpxK?~O_@u=*|v>&E}6-)wYgHl_9NLqRMwnXuYuakEL+!;1)ky$XNhmc z+Lkt9w@R_Tab2er%Q-vU{}o>4Y9f0CxoSFOrZ8OOuu@13jMIIM4P^twsewu{LbBqM zgk)%~)sxOIPdP3U^X<(drDXmeMfqxOz>9Ii#fkeH>{VKN=u6pJa;VyRa}B}zA(gE2 zzw)L=eY~=5Sq-PEVIvyHMw510UL#pq>Hoa0+rNox2a;x=k*yXP_dAb;5=t|3W0Kf@ zrFRK$IGj)!p#?Qyns6x~0pc-YdI9%NjJV0wKXEK%<=d$9O96uuPP5NP`vml5-wfY1 z#VBe)lB={ut7o5W8}RK5Ki(ZF#C1Qw87LF|YPHiJ0&H&X%Iyj$E~quY5^UB${R~wu z)_>QRE5S4saLX#)NC_^61-d^?`|SHRFlc2H@k+i8vtNJxT?XNQY7SomUwj40SV1Lb zCmansQv;YJY1MlIE6Sfor*67|Iy<|5L@2Oq0!-4a{6}|!3)00Q8Uvm870bNiwW&uT z{z96X>a^k7BMnXI=>W}KZ5A6E4Elw5tF)$G1(rmE#Uwh3uFXm=BROlHZ*XG96=(zS zqY3b#*pc&2YBW!dO0~8;B|%5(rtVNW94yp`(~~#V=nAw-sU4ACH@_g8+*htRS$|i} zX95fgda<=~zS$Z%q*E?wGemG|S^(bX8zul4=idQIm%KjsHA1~sXS~9CBZRp-Iv(>@ z&gBPIuKI^1o_2-!Bh`b(ygS);mCg=DQhr#ZMi=Hj&(6M+2#s8HniRaFwI^_ zB?H0g`dmsws(_TeYwzUx8x0NjA<+Z=-=NQ&8>lr>xtWoHmS9gH%(TDcF|H&xsDIMK@(%enb7v{Z9~Qi)O9~Jo~;LlLXZ;qVb&ULvk3RC!#<@rj8-k<@L{S3r><8If3>dL~v z`+i+EaBHPR`rkXjl|G!#M_peoGfkQ@yYBl^Zy#fxJ5q6aRtHD+01; zhS*A%!i{Q&uYw?O_aI##ZZs7B^!c)RXknXax6xy-l9K9?h@9mq$z0|A56r)cDV%o@ zhtwwHJN#1RzqTl@(>rV7`S*{@IeQT7;#@Ipl_%&sBj!O zrduu7!qYz0?G#{8Q9917?s}n#s>aW_Io*7j>?Z51{9j;`)1qlRR+5t*)|pW}lI%B~ z5$Z5VPSldN8wJ@N<$)6{wJe3ju5SS`J>QAWGr4Bk#OTXrE}V=fU4e&`uH6CWkkah{?162Gho)X`M%C$rXSMi015_!cKUB9?`rLXB(N{xT z_fn{_>J!}x!1WmuAUePeYTf|Y892YsdBdzPrk^y5?(l>biiWym$zD@Dz3NP#AD>>0 zPi{jX22gh&ahQ`J6{)Nh0~m*F1J!8r?ex;<6W*_UOpZs=!!SJAX-I41n+z-zru8=46z8_ zS0N0&C)<*Hc|q~sbF2G)r6>L0QMwyaiTy_$wpVe>W9yG97KsVYfju6#{%8D|5QBZZ zync3AEjNy$2zi6|+CUUq$&B#P>-e407)+PxN8};0{f~@@Mu>5dWYCY@zxtiS15RDN zp%m7HB#ZOw`qOqUGaVk+>z(v0^!?oKA=wcG?TOgqv%jkzbK^dHj6WsPnR@)2q-^tA>o>*!s)eAmD}<&n~wQMWugKEbSt;ny|W z=;Qpw%#>|pmJmlJ{UVd&RMBH`65bQj#a%s-kiYkD&jP*ujO5ZtYClhFcu$HJe_W@f z^`buVHJn4kHa20d!(bU*2F^UEi1Fvpe3tJ5G~6>dEDx~IU| z$QeT%jF)q&l>Z$6Uef;wF@62VROPWr%z*2AwU7p|Rk9!h$%b47bG+c8Yri119@H=L z-MuZOYujx_!~r1CW%!`-#t+$wD|zyma<>6^x}XJi zOjST1e-Ra!NS#9c@yx#aWTwr?&LH|gEpheb&vZI6BWgogw{|{MZOi7?v4a7+qs;0@ z*c$>QMwYs}S5S&iY8^)omenKJms>+KX)rY|!&u~PrcjGRna|4NU(W2> zF6TCf3ydsBBDK?;EdI=>=>^~IxxfcMYfozjZ7R9n-_gWyPb@x=Yj(BbVfzV*imKDd zuaDAmR#%;nfhP(MxJF-%Ky0uR$w~(Sm&8nNe{8#l({fNETgmCE)P{aPJ=5)clHf_R zkkPG>(>_04WxTL|2nVLZ7lPRr!p_yxfSR)UvloEA62tuSc#^UBO#eh6^1^VCwudrZ zW&VQoa%a%$Twetx#XuldEMYh=NFu#3lr*9C$$J|COv3Ehh~9e2nI3wWbT#nxMx1x_ zLJnUlxYzCVUH!B|4<{bs{{#U{w3Q`L-S+?5Lwt1ER{N-;h6%j~s~dh~o~@+oH`(9Z z_0@V<6djY#}T}@;D9cpGo0*0?tV(I|y`2hq=Aw#n5`rEE%AE+&f6wb>b)x^JV3&CFH;MH$<*!`+pDBK>aC^c8x@YS-yTS`* z{xa4Jcbfkb?4^D9UtlkKzen)42w-ywH#NkJ>Cx8cVFlG+ZwqTwJP7F)84q!LGyG+X z>x>lOO99+U!rY{s^RU3%sev>wJuJN#%D<(@J;!{OSh!U@l0IOWEE+h#+PM4>rz1d7 zTiJ~NE<{QhSgtHjr2D%8?hd5?J<;KiETvJ$ynNxjPQQ2fXe?B*eGbn#4#CH(Ml%N1 zF+wo|EDfwNi*EzMI%qeWT$;vuF=O7NTTGR6Bq_c{7^oRwjvGtyn5d54JoM z2D&9?Hk>^!tB8;UTg1s@@f$I)k|Gxa=x$(I_IxoaW0&vcHM2ZVuewKaGtWOi zPk^7tV((e=$z5HMHYsh~+`(y5qbN?O2}9FV$BD}D9|N@ySKc#nUkvP>tlfGCgBYaC zLEwC77x4NF;J7$WWZzMpXQd$&Z(GY^tw{yl`?)^c1`=*%JG2T|0>F1KIb1ZYy2T2; zYM}}>(CM9;L&3Ax+rcYsa%K3=SU%@&ofw2Eso!bxxRkG#rS$@}pBg_}Fj?8iK5^W- z+n{yGAxIyvWv4_}Q?z}kL%8Jm!L1<5xZ<5KeKZmCFrW>(_3(~nSWcP)--q%oz*!n% z%1W!#jw6DQYb%lc4qQ)sxDJ80-ImD)rL)t7(zzG}wFm#=okai2Mdoeu3hDl-2~v() z3}TtrObWel7+iRvMHl5v$`?C!0J-Xq?^?ps z&4Lp7?CIGYn1I?$oX7xX{Wwhuf*kBgNBq%rcs_vZ#}hQO zbbGFSq9A-b6Me4+#Pu4qon8hD2TurwxQ8XaIVpi?N26xH7z)a4j?GsK?R9j8or(yxj7}~8J>Te}BKTSvirv9`XVd=|yBA*iH&$M&zQSsmUz_~M3 zgkR-m!$&{(8gQH16w_AH4WRk@NGcu}(wm{lrE^viQh_?$B9%9}nfFR!AV?8tZr`U9 zeS>Vj%l*akPw3Zv-X72$?dwvgxB;~6`_ry};6bIiXPxh+ZziSsof*?95~msyt@=#Q z#JQpfoLUWE>l08ipnt(QZE}!*CWDQ7ieaw)aba0C}CEM`0{|7%{&9(sepo?u^&O!x3L^r^<#HsA+=DBKHo@kM7J| z-XF47Kan-e$CV`kP|Z`BFCmD(uUtt&{S#zsgg5Y=_55M3_tL~>*tE_|9v2H!q_nvRkPOckLz-+l~Kra>T zV{mV2f-RYqDvAiAb#WWFK0ey4ygGn}yGaX}HN+v(L8$=+KHEPN2yC|D`|cILO$6s} z=YB;^x=$bN{#}EU{Nv^;d9#^OTbx@^7ynE2rb z-`>5Rtv))MmAyd7YQ%cffFgpbHP+to)s8h2vtbb2VGRO2dmCrbpAGmw&t+tG88g(? z%>lC`IgfAyZt)tr>osF+rp9;ME;s*g?!d!6k5He1gf8>M^=WZ}DX`r9>bVPiy~ewz zCMgcm6F;iHkhjd^`@scB?%v4hX$Fj9vCj!iMmua+fT~T`0^0bAZ96@8Uq~4Asa;bO zzJfrmzb55|$XOMWB28bY!!?SFmDz@v824DdChF zL6UJEAv2fqwdg^d>Tk!YnKH9>3a0kKQ|AB>&A#3K#xg@uvly>#<3it;QUb-ED}XGj zwvE*g%-r^S{aN%wM7zW!@8`N9y$vTF%h>-`FKs@KfMY+2XSn*v z0~@F9_OD6$BO@>r_7&7$2XA}XZ3HAz9gqL{?*)!CGL)%BTK5g-Zi3V26voIM>DS$*)55$RjV_A~kYk2hCMQIW7;{L;WO*z~ua z??f$t9o*+r-ufR!=-=%ai~qi*0Nc6eUm6eoTT|@G?I!>z`2Ss_#Q%-*IpEiy`~TRF zXQo;JG!r|8?L>c@x~qX27kY8?PIB0l!Rx4yf|ZzQZy^6v*x7zUZdPqtX zupgjo$h_U3L>AIqRDKd1fcILGaPtc>b2=ZA$%Cqb=+`Y3`S;m4mO=W^KnknK|8mH3NXuim|E2N(ZFZ~(18GXnn62~k|G>mU6FH0$o^ zh;F9U`Fq~KpzJyMV9S!zG-e2NR^&O>kfh=G@MQoB?&tU*3=Sldn*>;n$mRsa#)TWI zE$Z8=+F?LTS?YEv8;znKo$#J*#o)dt&lIXlq$86>tTH6>QnN-zY5{=D<-5Pd<%5=h zuv=~P_vDe6#Gk=h8bK6aYtODdg0TF5Xv-M@BJ$^Mmd#P}q;T7bk%}9~LAn#oqNtUY zRr%I=fbFn&4vxERj66yH`tCT2GaK>AhslIPV?Wip_UK8jW4@L{EUu|BpTsKE76a-0 zmF`k-lHt~h6QXIV7WRgQo_p`6IBr!T=2O*<@w((e8gIGyVM{fBFtn$W2b(ASab&b^ zAtxZYbI`ss`4~iYP;cvVzDoYH(We_{J41cj2kE*ab+;C@7S>N8JIwu61rZ;U1A{S{ zZ)lf|nTbK7tm>+?p!@BLwKBj!DE?2N{30~Va=BV?ItHlE<6N;qmzu`ajN(M6M{?vo zM`o=)r17%t2Xq1*m^-k$OBmthb#*tCgJ)rw6K>-PvHrgf?wpc>wyr3CwM2+1`M*0| zv_!U@S$B9+7(M&yQ=dX<-K6`ro8hUL_s!(?tKar;asqbUYM1Hjc*>(7+4=o3P&b{F zr%Fjk2H5+`-SY`5&&lGQSeX#jtmPrW@;^HwPV0Z_aQTDJ;OXXoVxo*>qDpV{OXhu} z*89uVo!2{wb)PcEtj)Uznp>Bk<;0SoDd&0JUd6G>2PdvMr6~l223O(yQm4|OZ$sap zoVxiFnf$4u+g%BxpDcfU!r0x}G@pE*N8z$bgId^El_qh6TpriiF8K1Ps*0N{OnrZi zYT7=UR*f*jTpZSNX@PmEX0ht=t7OIAwDX-mTlJ!+(*zDWxN2V$S&?w-JxHJdI|=!} zgP8noHYkGXb$G@DgVeTV*US|EciJ^0i~OH;8(crIbIRM=fA%yc?(}?w9!}nu4YUZU zb+!zEhIcSxynwIN2Z}7fezNO+rq~s(jp5MK6XISL&E{+2Wbj}lsVQ=J39qk^=^019 z@bVK!{KpH`lx^V!)k;1*yi(v_OdD78 zirEOqLluo}K9&QQLVtog>Eb-Hxd*b%tV{L}xc1y# zc@G<%^nBOosgmY00KK}EPt=&-^qf;rEf2!6~E|=zxqP<+;bjU(~qrZumH(?|sPP!QHUYoC(p12atLNJu=&?b}#W<=UZLpRbrJ=_#0dz8bWbj=?K+O`j`08Whb{&-NiHl`EIGy z{Gn0FeBBiUcmVP`BBGEMdOc{B44JSk9u2o6nfI;E4E04RjsO(@&EmnMgzM|i&2$xW zDG9u=%qcQaD!AP4wL7>XBHlv)%a(8s{qkV>P_f{^yUmXYu7s{?=O0|9qEMeo1?n%} zR`BWAsXCcZNwcx<-4zi7iu%9rDpXLRDP8tO2dm}fG-p@;USqjhTQVFTl<7KoVAQZ}1PmIv;aII&)Qtk2!*yb?q6o{|D6kRd1gYET`6u7t* zARko+^6JN$FM< z-{q#Xi{B<&%Ysj`Kc)kXGc^x5Rw^i7Xs>IXR`ZGr*mCXJYw3N>-QfIly}swRUXC5> zKzwJR{~t)`FMpHJols2ISLd}{$hr=J(9uF;4aKt1MnBoKVnZAHIWy>&zmw(9{HrW4 zY73$6wDu-OZq#?uJO+F=0z-V-IuL%){;Z%)J;*a=4JA#Pp2>9e3)v(rI4)~p-dr<# zDUFA%Jy)`1x1=O<&h`6b9jePG?X|>Q&9r;n@BX>{s;17uWfW9r$tbA5l!o%8j$P5e zPYa)8`3paK&}l<3c?}l9 zU1rqu@rNoYnol*=>V@E$ne;`sr|v#{V`6w{N&6lWle-=0TKps^+Cf#ka5R z8&H{}gLLH`moif`XwDkeLN%Gj^mmD(Fk~WK-HUK$GcHz3J0_;Rg zKp&c%-w7aCoOAvQuy}d@g^NEOEunveH!OC01c_o^SOP8*fb#h75=Z=nw58(U>BuQWYMQ-`OhqT`Z)H1L%r|@X8B>r=Y zZ_Oz#uAIMP$vEx}3z`F`x_742gOqszKi4@x6-c2asT5gB3@^sVo76nC4cgL=%}<(k zBNphwOkEat8CT`ieu2ns&Ub^hgrqUEN9#CWyRZxC1jhl4Gk`{$o5!!tqLSCiRk3wT zNwDAmEMnN@9(tqQ4mCSLuCisC%VDcK-jDLh826seNMhL^NE>*Zx+3Mg;4gsdb$kVa z|8%DYZHs*mjRs8@CBJC9IWhLsYNk zsfC4@jaqutcPb+^dW5n5kcDFjGtola)SPHosPx9Km@vEw6Fie!ghrIeJG-EtuvtmV z+2u#B@8Bwm0%l+V6TTANa|kyZC%{QGk*cufk6Ta|A>U;8GcRRs;(Jf9N_Xe=lZh(z~?i zJiVF!m1EZaTt&v8g$Yi?e(co%MyJ2-s zP4ZCNUA>KWBG|cm!uU>(q;#)V_j*BH4_@6kOZERL@4BO!%C>$S#R}q#A|h=Rk)bLC z!~rCLG6)DL9by2HA{`-wUc>SquaM2}lS5BJl2w z?_1xjZ@u;X_5OSJ&wI{2cdvc++4r8k&+oS*!pgnBA^FoMh8vR+0sGq>YQ#jwgn&#I zHYD5}mhbt)+%pQEo|hC7-bK#->XMW!w5Lc>Eyu!3S)%@1Cw58BdMl%^FZ!w8^06kRLr~1L3~SJ{M)<~*22MkK!a)RD*MN1=2Nz{>q^|jzX1F47monP3@lkR z_-_BS=&;nW71BzwY29fWf$^}4JRUGww03$tvB3MCrK8~w*X&UDT_c@~7L)y;w~n#a zSFKndSdw@q%w(*~yShflta`FkP!nKikHivk1aFqcz&NQLdoEQk)G`SkapJ{1P-aE6 zP^Fo-+A<9eD-`xG8+2cL%+8^xx%BtgqHN-GgnY?JfTVeE^_|+#01pJG62VF--&?u& zqCWEB-^!74bc_E_dJ~A?Las>f_s^+eu(*SR_8KX6w$R#vSxPnZ8Ffhl=`0(EUsWqB zN)R3}luF81(mJqxh{>M1j9Bl|_Iir|7_N3eQmWS?WwNn?h7F;cORw8^NBrRpmWq5Z zb%L>3c54!1PGt0bOU@?2LQx=~bSM&5Z&~x#-2f3bF|+Y6aE;&Ac4uTQOsO;3VJPq1k~;&(03euVH4hc_ zV5r&)&!CnyX+7~kwYMQ6l~NF}DKl*#_S#vH04$Na0?4=Z6{c$<*XQPnKBy=R(&Cp5 z>Xc4P(`Rfya)bj|ZIr3NzaGfsOu(hWzh0q)g#q9*Ts{BHWJ&s(=%%`UnPzFA9lTIK zg)tT(u)?H@EXxDIUL5G?-H^kQ5}_eRc#_?R+brX~r5X07YQWHV$&uV*I^WIK|6;}mV&o)paXA>nD6$-+?c5i+t>529rVE|p=K{d?kk zSP8F=ku+i{NtQXb^h|y@ejZlh6Gv`i?fwxFW)mMW#u#a5Hzo;3i8Ff&kwbdwWeJ=L z#KU0=!SH3Lz5V(bT+LxfP&4HamPYx5tyxt3I+9=nw(=m9$je) z5EVFagDn7{*1+}O&Y%qH;6I-QmrDcVYr0ICX{YEBWq+1jQlOdFKz4nf3K(eFFO(6b z0TFCqU#=Gtd|*YlcQrNFgIX5hGeec1hnx2&la*AVfA-%OWD>nLO#73MDJ3;wernzS zPJMiu52{x^ocKLD3J0tLnAUt0Lcl*P>qHRLB(>M|ECalWgVWU}f{BB}{jV15zFkVM z`s&&R1{H=*@d4#$%~;b)H!di=$*Wxj;aFK$^!tEX76|EU9=xI&ok?6HnQu67a7`2s z%-)H_X2_rBsZ;S+el+3f^+rS0F5G|7O(y@&)2T zkw&uV?TL>$4S3JWoa;pUs-8vNKJ@S9K>)=oW?D`SS_e%lD7JDhI+4L-7+Q%UqmGU| z1t>uwQCDv&M(4CZ{$JQ= zP$^M5>Q?{^nPf%(!JhJBm=)b`>1V#pZqt@CH+_Ncl1p+dFU@toiTx>|smAa^URJiL z4tI)-Nc+!oJ=kNB8=?g$pXbV@1oOI8erXGd@k+AO{u)O6_P6D*ZPHCEH+{Uq^${Uh z-;s{S(8EBM3j!JX4Akftzr9ezQ+^>Bn|C7c_1k%ikn!)uL*_VS`8U-7Q?pb|r$#ee zb|O#3%sa=y=h;i-wRRv(?s1{rnQLorx6ZD5-ZgX^Uo6*+4aM?;rD!dI!n#{Gj=mf0 zw=RAKMN7tXemkP7+cc-prZ6LarrHDxhb`d@ZM?qf5o zjs2P_!l$CrWS7dnQ7L{;P5zBa5q9ohZb^Nd_nm^`ub{k;Vd;mcw?Kjqxc*&wWBY*I z+9W#eb>-v-6x;Y}&ou8#b|e9!9o3>AeZ@<*!CEf9=og!ff|P@%0i$|k?P%bsG%sMR zFkdj41c7XS@#aTW*#Grj)d_rEr<0@v0V zh_!KBu6gzUrfYYRL!Lgf+GwX0JOmE6E6qb6ZGK1W(OWMu$$I;qOx-deT?1i)#d%f zIHI3fC-R(?05(MpR`vWgkLxk;B2FzOr#K!(-1T10cI0Zv-r|}>aS!65!0KX(HIcgX z?S1SPTWD2@^v+}{`2-9&Z+4#MpaFQO0&L~oaJ-%S&s0F#I{>R_AP#?{F2cr2B;87 ze!Nmj%|!6|jfdt5Ei6*WOhR)IWO&5wgc5hpT;Y&XtPqk5{(F%ZH}5I zI{z6gpCK}cfmMw=)2`Yyfc@8nq*s1n^8R|*DC>#5DoJGp)vSb2SsPXm`t2XW$dDuw zOf(jK0C!B z+(_Tren7tTyNEsxsLoD3jAvmY6Va>DtJ$kH;*K~S(83b?@TL_SFt`#u^B(Ha?2Gz;qJG!XgsBw zAJv0AG&20ihh*H|ZedV57{~0ZK^4~J`f`m-!Ym{He&9VDy)3D{%UZo!y*jTV+bk*q z<^@d*HaVWhQ42YD_hLKT1uMt&^GW5ol!>Q7b;5g9+iev7v27gzKzxXJl2T%QqEb?1 zwJ|V`-eh-^k4=><)?&28OH+Z`Kz?nm=F|49!JVWqd#5AoX?2}D6~>Q=+_ZKPIVe=w zQ`}S!e9CnsK`CiAX^6B(Y0hEA#zJ~Fn3DmoV#+!+Z951A;;iFWqOs`z8!oIFFs2s0SChxiKE{V*G zzZseHn|YL|qs0xS5T_^Q z1Ga2U`8}i}MShLDaBB>-jSm@xD-X(rY?{tSlwC7;(9Rby-#zTtX;=~Pt^oddQ1xcNne^5x!9L_$hS7qByPUxKr}Be5*LNZ*8|0lV(Z3J zkz3;8<7=bE`O5c0CeP8*{3^R#8Kwwi+u|d)=_creeoLsL@gar9F~N7n;lhlPsnKLN z`&m@bZV$tr&iOF%b&@d@J+r{Itf*GgdqeXX)H$c8i#{Ha)}D14KcF>T7Q=DNP~=HJ zO)(Fw1GQ%<C}XXj zXo&`*)WrzFk(3%M(L#sjm=KOTG<4lZb8toh!n={W;#0x1qS3i`20}u2@-HpX)(|UO##<-3nYIJh(nQ?w{^e_tFJL9R_eJx4!1+-{@z((6~zY$Gm1nnuFjWc1m zhNyr#u^u_~z|zo}r$xhLRB&GAv(bE==25jCPLbPak%*x>VU_40MW0)kCT?wf$)J|K z49()vSoY#y(1d$ZK+n-hZBkM0iZFsONms?GUQ8{iF)P{7V1n{yi){Dsr>0=7+SGcN z$DyPGc{U|V%Io8)g^pW>+;6{i{h5;TGlF3nF~8Pz2rvD~@hUJ5Y3LI>w^~$5zG<|# zm3uNcU+GKFdl|~PEgf~xe52r`Id=m^XA1Fg=2>Bk7P>ol_O6m<65TY}(2x}ncpOy_ zm|b$CgJj#8x^YuDWu)HDww&ugEd}3O(t5);g5*CJD>TNT6xydyfxM_;bqh@6g>@aV z6m1hVs{VPJVJo-0W3uhk{n3h_1;bVquZ+7sGj1H)YVof<)o#|Pl9N)b^hMuw)>L2{ z)ZmvxM2KJpHShk0MgTfF-Hxute-c%XoU)_1TeR?n)U%YD7~G`?|6tLck4b);5!>!B zpBq^gk$dcDYb|m&eb+NpkP!-23xfDgo-@h5^SUJTIr*{afH2VhnDe~m9N6SiE{BrN zq~Q0|YR;@0G{tIwH-mg;uJ)(r`5hQEPW#qyJu-a7S)f4$-8kDVdraN!;5ghH7nsO3 zmudL5&{BlofFk>AZ;E5}oZ>xj2yxO%Omm*9bsc>8D!KlDhDd+nvjUJ6sQ4Vjf&UQe n>FsOxHj=;pHb7PbZ+<%^Iri%?tLO75IEKEi@ttZNhv\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
City NameTypePackageVarietySub VarietyGradeDateLow PriceHigh PriceMostly Low...Unit of SaleQualityConditionAppearanceStorageCropRepackTrans ModeUnnamed: 24Unnamed: 25
0BALTIMORENaN24 inch binsNaNNaNNaN4/29/17270.0280.0270.0...NaNNaNNaNNaNNaNNaNENaNNaNNaN
1BALTIMORENaN24 inch binsNaNNaNNaN5/6/17270.0280.0270.0...NaNNaNNaNNaNNaNNaNENaNNaNNaN
2BALTIMORENaN24 inch binsHOWDEN TYPENaNNaN9/24/16160.0160.0160.0...NaNNaNNaNNaNNaNNaNNNaNNaNNaN
3BALTIMORENaN24 inch binsHOWDEN TYPENaNNaN9/24/16160.0160.0160.0...NaNNaNNaNNaNNaNNaNNNaNNaNNaN
4BALTIMORENaN24 inch binsHOWDEN TYPENaNNaN11/5/1690.0100.090.0...NaNNaNNaNNaNNaNNaNNNaNNaNNaN
\n", + "

5 rows × 26 columns

\n", + "" + ], + "text/plain": [ + " City Name Type Package Variety Sub Variety Grade Date \\\n", + "0 BALTIMORE NaN 24 inch bins NaN NaN NaN 4/29/17 \n", + "1 BALTIMORE NaN 24 inch bins NaN NaN NaN 5/6/17 \n", + "2 BALTIMORE NaN 24 inch bins HOWDEN TYPE NaN NaN 9/24/16 \n", + "3 BALTIMORE NaN 24 inch bins HOWDEN TYPE NaN NaN 9/24/16 \n", + "4 BALTIMORE NaN 24 inch bins HOWDEN TYPE NaN NaN 11/5/16 \n", + "\n", + " Low Price High Price Mostly Low ... Unit of Sale Quality Condition \\\n", + "0 270.0 280.0 270.0 ... NaN NaN NaN \n", + "1 270.0 280.0 270.0 ... NaN NaN NaN \n", + "2 160.0 160.0 160.0 ... NaN NaN NaN \n", + "3 160.0 160.0 160.0 ... NaN NaN NaN \n", + "4 90.0 100.0 90.0 ... NaN NaN NaN \n", + "\n", + " Appearance Storage Crop Repack Trans Mode Unnamed: 24 Unnamed: 25 \n", + "0 NaN NaN NaN E NaN NaN NaN \n", + "1 NaN NaN NaN E NaN NaN NaN \n", + "2 NaN NaN NaN N NaN NaN NaN \n", + "3 NaN NaN NaN N NaN NaN NaN \n", + "4 NaN NaN NaN N NaN NaN NaN \n", + "\n", + "[5 rows x 26 columns]" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "import pandas as pd\n", "import matplotlib.pyplot as plt\n", @@ -32,9 +239,129 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_5488\\2637987050.py:9: UserWarning: Could not infer format, so each element will be parsed individually, falling back to `dateutil`. To ensure parsing is consistent and as-expected, please specify a format.\n", + " day_of_year = pd.to_datetime(pumpkins['Date']).apply(lambda dt: (dt-datetime(dt.year,1,1)).days)\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", + "
MonthDayOfYearVarietyCityPackageLow PriceHigh PricePrice
709267PIE TYPEBALTIMORE1 1/9 bushel cartons15.015.013.636364
719267PIE TYPEBALTIMORE1 1/9 bushel cartons18.018.016.363636
7210274PIE TYPEBALTIMORE1 1/9 bushel cartons18.018.016.363636
7310274PIE TYPEBALTIMORE1 1/9 bushel cartons17.017.015.454545
7410281PIE TYPEBALTIMORE1 1/9 bushel cartons15.015.013.636364
\n", + "
" + ], + "text/plain": [ + " Month DayOfYear Variety City Package Low Price \\\n", + "70 9 267 PIE TYPE BALTIMORE 1 1/9 bushel cartons 15.0 \n", + "71 9 267 PIE TYPE BALTIMORE 1 1/9 bushel cartons 18.0 \n", + "72 10 274 PIE TYPE BALTIMORE 1 1/9 bushel cartons 18.0 \n", + "73 10 274 PIE TYPE BALTIMORE 1 1/9 bushel cartons 17.0 \n", + "74 10 281 PIE TYPE BALTIMORE 1 1/9 bushel cartons 15.0 \n", + "\n", + " High Price Price \n", + "70 15.0 13.636364 \n", + "71 18.0 16.363636 \n", + "72 18.0 16.363636 \n", + "73 17.0 15.454545 \n", + "74 15.0 13.636364 " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "pumpkins = pumpkins[pumpkins['Package'].str.contains('bushel', case=True, regex=True)]\n", "\n", @@ -71,9 +398,30 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAh8AAAGdCAYAAACyzRGfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABFAUlEQVR4nO3dfXhT9d0/8HfSkqalTbDFklTaUnCCtcCAUayjiDwIwopOftdQEXCyogy8BZwP3aaVqSvofY3NJ+Z6OZggw+0eKCiWG0FKcUUY0Bu6ug4wPElLHZWkT+lTzu+PLhlpm/Sc9OTknPT9uq5clznnk/A5nqb59Hu+38/RCYIggIiIiEgh+lAnQERERH0Liw8iIiJSFIsPIiIiUhSLDyIiIlIUiw8iIiJSFIsPIiIiUhSLDyIiIlIUiw8iIiJSVGSoE+jM5XLh0qVLiIuLg06nC3U6REREJIIgCKirq0NSUhL0ev9jG6orPi5duoTk5ORQp0FEREQBuHDhAgYPHuw3RnXFR1xcHICO5E0mU4izISIiIjEcDgeSk5M93+P+qK74cF9qMZlMLD6IiIg0RsyUCU44JSIiIkWx+CAiIiJFsfggIiIiRbH4ICIiIkWx+CAiIiJFsfggIiIiRbH4ICIiIkWx+CAiIiJFqa7JGJEv7S4Bh221qKlzIjHOiMy0eEToef8fIiKtYfFBmlBUXoXVOytQZXd6tlnNRuTnpGNmhjWEmRERkVS87EKqV1RehaWbj3kVHgBQbXdi6eZjKCqvClFmREQUCBYfpGrtLgGrd1ZA6Gafe9vqnRVod3UXQUREasTig1TtsK22y4jHtQQAVXYnDttqlUuKiIh6hcUHqVpNne/CI5A4IiIKPRYfpGqJcUZZ44iIKPRYfJCqZabFw2o2wteCWh06Vr1kpsUrmRYREfUCiw9StQi9Dvk56QDQpQBxP8/PSWe/DyIiDWHxQao3M8OK9Q+OxSBTlNf2QaYorH9wLPt8EBFpDIsP0hBfYx9ERKQlLD5I9dxNxqod3itaLjvYZIyISItYfJCqsckYEVH4YfFBqsYmY0RE4UdS8fH8889Dp9N5PUaMGOHZ73Q6sWzZMiQkJCA2NhZz587F5cuXZU+a+g42GSMiCj+SRz5uueUWVFVVeR4HDx707Fu5ciV27tyJP//5zyguLsalS5dw7733ypow9S1sMkZEFH4iJb8gMhIWi6XLdrvdjrfffhtbtmzBlClTAAAbNmzAzTffjEOHDuHWW2/tfbbU57ibjFXbnd3O+9ABsLDJGBGRpkge+Th16hSSkpIwdOhQzJ8/H+fPnwcAHD16FK2trZg2bZondsSIEUhJSUFpaanP92tubobD4fB6ELmxyRgRUfiRVHxMmDABGzduRFFREdavXw+bzYbs7GzU1dWhuroaBoMBAwYM8HrNoEGDUF1d7fM9CwoKYDabPY/k5OSADoTCl7vJmMXsfWnFYjayyRgRkQbpBEEIeI3i1atXkZqail/96leIjo7GD3/4QzQ3N3vFZGZm4o477sDatWu7fY/m5mav1zgcDiQnJ8Nut8NkMgWaGoWhdpeAw7Za1NQ5kRjXcamFIx5EROrgcDhgNptFfX9LnvNxrQEDBuCmm27C6dOnMX36dLS0tODq1ateox+XL1/udo6IW1RUFKKionzuJ3KL0OuQNSwh1GkQEVEv9arPR319Pc6cOQOr1Ypx48ahX79+2Lt3r2d/ZWUlzp8/j6ysrF4nSkREROFB0sjHT37yE+Tk5CA1NRWXLl1Cfn4+IiIicP/998NsNmPx4sVYtWoV4uPjYTKZ8NhjjyErK4srXYiIiMhDUvFx8eJF3H///bhy5Qquv/56TJw4EYcOHcL1118PAFi3bh30ej3mzp2L5uZmzJgxA2+++WZQEiciIiJt6tWE02CQMmGFiIiI1EHK9zfv7UJERESKYvFBREREimLxQURERIpi8UFERESK6lWTMSIlNbW045e7KnD2SiOGJMTgp7PSEW2ICHVaREQkEYsP0oTcd45gT0WN53nJKWDTofOYnp6IwoXjQ5gZERFJxcsupHqdC49r7amoQe47RxTOiIiIeoPFB6laU0u7z8LDbU9FDZpa2hXKiIiIeovFB6naL3dVyBpHREShx+KDVO3slUZZ44iIKPRYfJCqDUmIkTWOiIhCj8UHqdpPZ6XLGkdERKHH4oNULdoQgenpiX5jpqcnst8HEZGGsPgg1StcON5nAcI+H0RE2sPigzRh7tjBsJiivLZZTFGYO3ZwiDIiIqJAsfgg1Ssqr8LSzcdQ7Wj22n7Z0Yylm4+hqLwqRJkREVEgWHyQqrW7BKzeWQGhm33ubat3VqDd1V0EERGpEe/tQqp22FaLKrvT534BQJXdicO2WmQNS1AuMZKs3tmGle8dx/lvmpByXTTWzRuDWCN/BRH1Rfzkk6rV1PkuPAKJo9CY83oJTlx0eJ5XVtch4/ndGDXYhB3Ls0OYGRGFAi+7kKolxhlljSPldS48rnXiogNzXi9ROCMiCjUWH6RqmWnxsJqN0PnYrwNgNRuRmRavZFokUr2zzWfh4XbiogP1zjaFMiIiNWDxQaoWodchP8d/99L8nHRE6H2VJxRKK987LmscEYUHFh+kejMzrJjmo8nYtPREzMywKpwRiXX+myZZ44goPLD4INUr2FWBPRU13e7bU1GDgl0VCmdEYqVcFy1rHBGFBxYfpGotbS4Ultj8xhSW2NDS5lIoI5Ji3bwxssYRUXhg8UGqtqn0LHrqH+YSOuJIfWKNkRg12OQ3ZtRgE/t9EPUxLD5I1c7VNsoaR8rbsTzbZwHCPh9EfRP/3CBVS42PkTWOQmPH8mx2OCUiD50gCKq6KYbD4YDZbIbdbofJ5H+4lsJfS5sLI5792O+lF70O+McLd8EQyYE8IqJQkfL9zd/WpGqGSD1ys9P8xuRmp7HwIFJAu0tA6Zkr+KDsK5SeucIbOlLAevUbe82aNdDpdFixYoVn2+TJk6HT6bwejz76aG/zpD4sb1Y6HpmUhs59xPQ64JFJacib5b8JGRH1XlF5FSau3Yf7Cw/h8a1luL/wECau3Yei8qpQp0YaFPAF1yNHjuCtt97CqFGjuuzLzc3FL37xC8/zmBhej6feyZuVjifuHIFNpWdxrrYRqfExWJA1hCMeRAooKq/C0s3H0Hmco9ruxNLNx7D+wbFs9keSBFR81NfXY/78+SgsLMSLL77YZX9MTAwsFkuvkyO6liFSj8XZQ0OdBlGf0u4SsHpnRZfCAwAEdNxfafXOCkxPt/A2ByRaQH82Llu2DLNnz8a0adO63f/uu+9i4MCByMjIQF5eHhobfS+DbG5uhsPh8HoQEZE6HLbVosru9LlfAFBld+KwrVa5pEjzJI98bN26FceOHcORI0e63f/AAw8gNTUVSUlJOHHiBJ5++mlUVlZi27Zt3cYXFBRg9erVUtMgIiIF1NT5LjwCiSMCJBYfFy5cwOOPP449e/bAaDR2G7NkyRLPf48cORJWqxVTp07FmTNnMGzYsC7xeXl5WLVqlee5w+FAcnKylLSIiChIEuO6/10faBwRILH4OHr0KGpqajB27FjPtvb2dhw4cACvv/46mpubERER4fWaCRMmAABOnz7dbfERFRWFqKioQHInIqIgy0yLh9VsRLXd2e28Dx0Ai9mIzLR4pVMjDZM052Pq1Kk4efIkysrKPI/vfOc7mD9/PsrKyroUHgBQVlYGALBaOROaiEhrIvQ65Od0LGfvPJ3U/Tw/J52TTUkSSSMfcXFxyMjI8NrWv39/JCQkICMjA2fOnMGWLVswa9YsJCQk4MSJE1i5ciUmTZrU7ZJcIiJSv5kZVqx/cCxW76zwmnxqMRuRn5POZbYkmaw3VjAYDPjkk0/w61//Gg0NDUhOTsbcuXPx85//XM5/hoiIFDYzw4rp6RYcttWips6JxLiOSy0c8aBA8N4uRERE1Gu8twsRERGpFosPIiIiUhSLDyIiIlIUiw8iIiJSFIsPIiIiUhSLDyIiIlIUiw8iIiJSFIsPIiIiUhSLDyIiIlIUiw8iIiJSFIsPIiIiUhSLDyIiIlIUiw8iIiJSVGSoEyASq90l8HbeGlZ5qQ6zXjuAdgGI0AG7HpuE4UlxoU6LJGhpc2FT6Vmcq21EanwMFmQNgSGSf8OSdDpBEIRQJ3EtKbfkpb6jqLwKq3dWoMru9Gyzmo3Iz0nHzAxrCDMjMYY885HPfWfXzFYwEwpUwa4KFJbY4LrmG0OvA3Kz05A3Kz10iZFqSPn+ZslKqldUXoWlm495FR4AUG13YunmYygqrwpRZiSGv8JDzH4KvYJdFXjrgHfhAQAuAXjrgA0FuypCkxhpFosPUrV2l4DVOyvQ3fCce9vqnRVo7/xbkVSh8lKdrHGkvJY2FwpLbH5jCktsaGlzKZQRhQMWH6Rqh221XUY8riUAqLI7cdhWq1xSJNqs1w7IGkfK21R6tsuIR2cuoSOOSCwWH6RqNXW+C49A4khZ7SIHpMTGkfLO1TbKGkcEsPgglUuMM8oaR8qKELkYSWwcKS81PkbWOCKAxQepXGZaPKxmI3x9N+nQseolMy1eybRIpF2PTZI1jpS3IGsIelrRrtd1xBGJxeKDVC1Cr0N+Tscyvs6//9zP83PS2e9DpcT28WC/D/UyROqRm53mNyY3O439PkgS/rSQ6s3MsGL9g2NhMXtfWrGYjVj/4Fj2+VC5nvp4sM+H+uXNSscjk9K6jIDodcAjk9jng6RjkzHSDHY41TZ2ONU+djglf6R8f7P4ICIiol5jh1MiIiJSLRYfREREpCgWH0RERKQoFh9ERESkKBYfREREpKheFR9r1qyBTqfDihUrPNucTieWLVuGhIQExMbGYu7cubh8+XJv8yRCu0tA6Zkr+KDsK5SeucI72WrMV7VNGPV8EYblfYRRzxfhq9qmUKdEEtkbWzH3zc+QVbAXc9/8DPbG1lCnRBoV8FLbI0eO4Ac/+AFMJhPuuOMO/PrXvwYALF26FB999BE2btwIs9mM5cuXQ6/X47PPPhP1vlxqS90pKq/C6p0VXne4tZqNyM9JZ5MxDbjpZ7vQ0s3d4wwROvzzpVkhyIikuv2VfTh3pWvBmJoQjeInp4QgI1KboC+1ra+vx/z581FYWIjrrrvOs91ut+Ptt9/Gr371K0yZMgXjxo3Dhg0b8Ne//hWHDh0K5J8iQlF5FZZuPuZVeABAtd2JpZuPoai8KkSZkRi+Cg8AaGkXcNPPdimcEUnlq/AAgHNXmnD7K/sUzoi0LqDiY9myZZg9ezamTZvmtf3o0aNobW312j5ixAikpKSgtLS0d5lSn9TuErB6ZwW6++pyb1u9s4KXYFTqq9omn4WHW0u7wEswKmZvbPVZeLidu9LESzAkieTiY+vWrTh27BgKCgq67KuurobBYMCAAQO8tg8aNAjV1dXdvl9zczMcDofXg8jtsK22y4jHtQQAVXYnDttqlUuKRLvr1WJZ40h5D288LGscESCx+Lhw4QIef/xxvPvuuzAajT2/QISCggKYzWbPIzk5WZb3pfBQU+e78AgkjpTV0Nwuaxwp75Kf4j+QOCJAYvFx9OhR1NTUYOzYsYiMjERkZCSKi4vx6quvIjIyEoMGDUJLSwuuXr3q9brLly/DYrF0+555eXmw2+2ex4ULFwI+GAo/iXHiilyxcaSs/lERssaR8pLM4j5bYuOIAInFx9SpU3Hy5EmUlZV5Ht/5zncwf/58z3/369cPe/fu9bymsrIS58+fR1ZWVrfvGRUVBZPJ5PUgcstMi4fVbISve9fq0LHqJTMtXsm0SKSP/+t2WeNIeb9/KFPWOCIAiJQSHBcXh4yMDK9t/fv3R0JCgmf74sWLsWrVKsTHx8NkMuGxxx5DVlYWbr31Vvmypj4jQq9Dfk46lm4+Bh3gNfHUXZDk56QjQu+rPKFQuiE+GoYInd9Jp4YIHW6Ij1YwK5LCHNMPqQnRfiedpiZEwxzTT8GsSOtk73C6bt06fO9738PcuXMxadIkWCwWbNu2Te5/hvqQmRlWrH9wLCydhnUtZiPWPziWfT5U7p8vzYIhovvikH0+tKH4ySlITei+QGSfDwpEwE3GgoVNxsiXdpeAw7Za1NQ5kRjXcamFIx7a8VVtE+56tRgNze3oHxWBj//rdo54aIy9sRUPbzyMS3YnksxG/P6hTI54kIeU728WH0RERNRrQe9wSkRERBQoFh9ERESkKBYfREREpCgWH0RERKQoSX0+tIwrJbTva0czvv/mQdQ2tCK+fz9s//FEXG+KCnVaJFJLmwubSs/iXG0jUuNjsCBrCAyR/PuHqC/qE6tdisqrsHpnhdcNyqxmI/Jz0tkjQiNGPb8bDmdbl+0mYyROPD8jBBmRFAW7KlBYYsO1Nx/W64Dc7DTkzUoPXWJEJBuudrlGUXkVlm4+1uXOqNV2J5ZuPoai8qoQZUZi+So8AMDhbMOo53crnBFJUbCrAm8d8C48AMAlAG8dsKFgV0VoEiOikAnr4qPdJWD1zgp0N7Tj3rZ6ZwXaO/9WJNX42tHss/Bwczjb8LWjWaGMSIqWNhcKS2x+YwpLbGhpcymUERGpQVgXH4dttV1GPK4lAKiyO3HYVqtcUiTJ9988KGscKWtT6dkuIx6duYSOOCLqO8K6+Kip8114BBJHyqttaJU1jpR1rrZR1jgiCg9hXXwkxhl7DpIQR8qL7y/uvhFi40hZqfExssYRUXgI6+IjMy0eVrMRvhbU6tCx6iUzLV7JtEiC7T+eKGscKWtB1hD0tKJdr+uII6K+I6yLjwi9Dvk5Hcv4Ov/+cz/Pz0lnvw8Vu94UBZPRfzsakzGS/T5UyhCpR252mt+Y3Ow09vsg6mPC/hM/M8OK9Q+OhcXsfWnFYjZi/YNj2edDA048P8NnAcI+H+qXNysdj0xK6zICotcBj0xinw+ivqhPNBkD2OE0HLDDqbaxwylReJPy/d1nig8iIiIKHnY4JSIiItXqMzeWI6LQ4qVPInJj8UFEQcebOxLRtXjZhYiCijd3JKLOWHwQUdDw5o5E1B1ediHNOPrlN5j7u796nv9lyW0YN/S6EGZEPZFyc8esYQnKJUYB4bwdkguLD9KEIc981GWbuxA5u2a20umQSLy5Y/jgvB2SEy+7kOp1V3hI2U+hw5s7hgfO2yG5sfggVTv65TeyxpGyhFZxcznExpHyOG+HgoHFB6natXM85IgjZT2w8XNZ40h5UubtEInF4oOIiHzivB0KBhYfRETkE+ftUDCw+CBV+8uS22SNI2VtffhWWeNIeZlp8bCajfC1oFaHjlUvmWnxSqZFGsfig1RNbB8P9vtQp1tvEte7Q2wcKS9Cr0N+TjoAdClA3M/zc9LZ74MkkVR8rF+/HqNGjYLJZILJZEJWVhY+/vhjz/7JkydDp9N5PR599FHZk6a+pac+HuzzoW48f9o3M8OKaemJXVa8CACmpSeyzwdJJqn4GDx4MNasWYOjR4/ib3/7G6ZMmYK7774bf//73z0xubm5qKqq8jxefvll2ZOmviX3nSO92k+hxT4t2lewqwJ7Kmq63benogYFuyoUzoi0TlLxkZOTg1mzZuFb3/oWbrrpJrz00kuIjY3FoUOHPDExMTGwWCyeh8lkkj1p6juaWtp9/tJz21NRg6aWdoUyIikqL9XJGkfKa2lzobDE5jemsMSGljaXQhlROAh4zkd7ezu2bt2KhoYGZGVleba/++67GDhwIDIyMpCXl4fGxka/79Pc3AyHw+H1IHL7pci/qMTGkbJmvXZA1jhS3qbSs+ipf5hL6IgjEkvyvV1OnjyJrKwsOJ1OxMbGYvv27UhP75iM9MADDyA1NRVJSUk4ceIEnn76aVRWVmLbtm0+36+goACrV68O/AgorJ294r94lRpHymoX2fRSbBwp71ytuM+W2DgiIIDiY/jw4SgrK4Pdbsf//M//YNGiRSguLkZ6ejqWLFniiRs5ciSsViumTp2KM2fOYNiwYd2+X15eHlatWuV57nA4kJycHMChUDgakhCDklPi4kh9InTiCosILpRQrdR4cZ8tsXFEQACXXQwGA2688UaMGzcOBQUFGD16NH7zm990GzthwgQAwOnTp32+X1RUlGf1jPtB5PbTWemyxpGydj02SdY4Ut6CrCHoaRWtXtcRRyRWr/t8uFwuNDc3d7uvrKwMAGC1chkWBSbaEIHp6Yl+Y6anJyLaEKFQRiTF8KQ4WeNIeYZIPXKz0/zG5GanwRDJtlEknqSflry8PBw4cABnz57FyZMnkZeXh/3792P+/Pk4c+YMXnjhBRw9ehRnz57Fjh07sHDhQkyaNAmjRo0KVv7UBxQuHN+r/RRa7POhfXk9jCz2tJ+oM0nFR01NDRYuXIjhw4dj6tSpOHLkCHbv3o3p06fDYDDgk08+wZ133okRI0bgiSeewNy5c7Fz585g5U59xNA8/30getpPocU+H9rHzyDJTdKE07ffftvnvuTkZBQXF/c6IaJr2WoaRC3zs9U0IC2xvzJJkWgnz9tFx41MMQc5GwoEP4MUDLxIR6o28zfiClqxcaSsOW8elDWOlMfPIAUDiw9StWaRDSDExpGyxJ4Vnj314meQgoHFB6lalMgGEGLjSFlizwrPnnrxM0jBwOKDVK3o8dtljSNl7fjxRFnjSHn8DFIwsPggVUtL7C+qwREnuqmT2EmknGyqXvwMUjCw+CDV+7Jgts9ffnpdx35SL/b50D5+BkluLD5IExL6GyRtJyJ5JcdHS9pO5A+LD1K98S/uwdf1Ld3u+7q+BeNf3KNwRiQFm4xp3+2v7MO5K03d7jt3pQm3v7JP4YxI61h8kKrV1rf4LDzcvq5vQW0PMRQaH35+QdY4Up69sdVn4eF27koT7I2tCmVE4YDFB6nafb/7q6xxpKzl20/IGkfKe3jjYVnjiAAWH6RyNXXiRjTExhGRNJfsTlnjiAAWH6RyiXHiJpSKjSMiaZLMRlnjiAAWH6RyW5fcJmscKev174+SNY6U9/uHMmWNIwJYfJDKxccacH2s/1GN62MNiO8hhkLjexOSZY0j5Zlj+iE1wf9y2tSEaJhj+imUEYUDFh+kekd+Ph3R/br/UY3up8eRn09XOCOSgk3GtK/4ySk+C5DUhGgUPzlF4YxI61h8kOoV7KpAU6ur231NrS4U7KpQOCOSoqi8yueN43T/3k/qV/zkFPzfc3diXMoAWM1GjEsZgP977k4WHhQQnSAIqroPssPhgNlsht1uh8lkCnU6FGItbS6MePZjuPz8lOp1wD9euAuGSNbSatPuEjBx7T5U+VgJoQNgMRtx8OkpiOjpBiJEpGpSvr/525pUbVPpWb+FBwC4hI44Up/DtlqfhQcACACq7E4cttUqlxQRhRyLD1K1c7WNssaRsmrqxPV+EBtHROGBxQepWmp8jKxxpKzEOHG9H8TGEVF4YPFBqvbAhFRZ40hZmWnxsJqNfiecWs1GZKbFK5kWEYUYiw9StbILV2WNI2VF6HXIz0n3G5Ofk87JphrR0ubC2yVf4rkPyvF2yZdoaet+FRpRTyJDnQCRP5wzoH0zM6yIM0bC4Wzrsi/OGImZGdYQZEVSFeyqQGGJzWsC+Eu7vkBudhryZvkvMIk648gHqRrnDGjf+Bf3dFt4AIDD2YbxL+5ROCOSqmBXBd46YOuy8swlAG8dsLHXDknG4oNU7dvJA2SNI2XV1rfg63r/dxz+ur4FtT3EUOi0tLlQWGLzG1NYYuMlGJKExQep2pbPz8kaR8q673d/lTWOlMdeOxQMLD5I1c78q17WOFJWTZ24EQ2xcaQ89tqhYGDxQar2taNZ1jhSVmKcuLsNi40j5bHXDgUDiw9StUEmcRNJxcaRsrYuuU3WOFLegqwh6GkltF7XEUckFosPUrW0gf1ljSNlxccacH2s/1GN62MNiO8hhkLHEKlHbnaa35jc7DTe2JEkkfTTsn79eowaNQomkwkmkwlZWVn4+OOPPfudTieWLVuGhIQExMbGYu7cubh8+bLsSVPfwb+6tO/Iz6f3aj+FXt6sdDwyKa3LZ1GvAx6ZxD4fJJ1OEIQe5jH/x86dOxEREYFvfetbEAQBf/jDH/DKK6/g+PHjuOWWW7B06VJ89NFH2LhxI8xmM5YvXw69Xo/PPvtMdEJSbslLfcOQZz7qMebsmtkKZEKB4PkLHy1tLmwqPYtztY1IjY/BgqwhHPEgDynf35I6nObk5Hg9f+mll7B+/XocOnQIgwcPxttvv40tW7ZgypQpAIANGzbg5ptvxqFDh3DrrbdKPAwi4GDF16LjJqZfH+RsSKqT5+2i40ammIOcDfWWIVKPxdlDQ50GhYGAS9b29nZs3boVDQ0NyMrKwtGjR9Ha2opp06Z5YkaMGIGUlBSUlpb6fJ/m5mY4HA6vB5Hbg+8cljWOlDXnzYOyxhFReJBcfJw8eRKxsbGIiorCo48+iu3btyM9PR3V1dUwGAwYMGCAV/ygQYNQXV3t8/0KCgpgNps9j+TkZMkHQUTqJPaaruhrv0QUFiQXH8OHD0dZWRk+//xzLF26FIsWLUJFReB9/fPy8mC32z2PCxcuBPxeRKQuYu9Vy3vaEvUtkosPg8GAG2+8EePGjUNBQQFGjx6N3/zmN7BYLGhpacHVq1e94i9fvgyLxeLz/aKiojyrZ9wPIrfNCzNljSNl7fjxRFnjiCg89HqassvlQnNzM8aNG4d+/fph7969nn2VlZU4f/48srKyevvPUB8ldhIpJ5uqk9hJpJxsStS3SCo+8vLycODAAZw9exYnT55EXl4e9u/fj/nz58NsNmPx4sVYtWoVPv30Uxw9ehQ//OEPkZWVxZUu1Cs9LcPkMk114/kjos4kLbWtqanBwoULUVVVBbPZjFGjRmH37t2YPr2jSdC6deug1+sxd+5cNDc3Y8aMGXjzzTeDkjj1LWfXzMbBiq+9VrVsXpjJEQ+NOLtmNk6et2POmwchoGOOx44fT+SIB1EfJanJmBLYZIx8YYMjIiL1ClqTMaJQKdhVgcISG1zXlMov7foCudls7UxEpDUsPkj1CnZV4K0Dti7bXQI821mAEBFpB8esSdVa2lwoLOlaeFyrsMSGljaXQhkREVFvsfggVdtUetbrUkt3XEJHHBERaQOLD1K1c7WNssYREVHocc4HqVpqfIyscRQ65//ViJm/KUZTqwvR/fQoevx2pAzkeSPqi7jUllStpc2FEc9+7PfSi14H/OOFu7jsVsVu/OlH6G5aTqQeOP1LNhkjCgdSvr/525pUzRCpR8YN/n+IM24wsfBQMV+FBwC0uTr2E1Hfwt/YpGotbS6Uf+XwG1P+lYOrXVTq/L8afRYebm2ujjgi6jtYfJCqcbWLts38TbGscUQUHlh8kKpxtYu2NbWKG5ESG0dE4YHFB6kaV7toW3Q/cb9ixMYRUXjgJ55Ubd74FFnjSFlFj98uaxwRhQcWH6Rq7x05L2scKStlYAx6WogUqQf7fRD1MSw+SNU450P7Tv9yts8ChH0+iPomdjglVeOcj/Bw+pez2eGUiDzY4ZRUjR1OiYi0gR1OKWwYIvXIzU7zG5ObncbCg4hIQ3jZhVQvb1Y6AKCwxOY1AqLXdRQe7v1ERKQNvOxCmtHS5sKm0rM4V9uI1PgYLMgawhEPIiKVkPL9zZEP0gxDpB6Ls4eGOg0iIuol/tlIREREimLxQURERIpi8UFERESK4pwP0gxOOCUiCg8sPkgTCnZVdFlq+9KuL7jUlohIg1h8kOoV7KrAWwdsXba7BHi2swAhItIOjlmTqrW0uVBY0rXwuFZhiQ0tbS6FMiIiot5i8UGqtqn0rN/7ugAdIyCbSs8qkg8REfUeiw9StXO1jbLGERFR6LH4IFVLjRd3y3WxcUREFHqSio+CggKMHz8ecXFxSExMxD333IPKykqvmMmTJ0On03k9Hn30UVmTpr5jQdYQ6HX+Y/S6jjgiItIGScVHcXExli1bhkOHDmHPnj1obW3FnXfeiYaGBq+43NxcVFVVeR4vv/yyrElT32GI1GPqzYl+Y6benMh+H0REGiJpqW1RUZHX840bNyIxMRFHjx7FpEmTPNtjYmJgsVjkyZD6tHaXgPKvHH5jyr9yoN0lIKKnIRIiIlKFXv25aLfbAQDx8fFe2999910MHDgQGRkZyMvLQ2Oj78mAzc3NcDgcXg8it8O2WlTZnX5jquxOHLbVKpQRERH1VsBNxlwuF1asWIHvfve7yMjI8Gx/4IEHkJqaiqSkJJw4cQJPP/00KisrsW3btm7fp6CgAKtXrw40DQpzNXX+Cw+pcUREFHoBFx/Lli1DeXk5Dh486LV9yZIlnv8eOXIkrFYrpk6dijNnzmDYsGFd3icvLw+rVq3yPHc4HEhOTg40LQoziXFGWeOIiCj0Aio+li9fjg8//BAHDhzA4MGD/cZOmDABAHD69Olui4+oqChERUUFkgb1AZlp8bCajai2O9FdrzEdAIvZiMy0+G72EhGRGkma8yEIApYvX47t27dj3759SEtL6/E1ZWVlAACr1RpQgtS3Reh1yM/xf9+W/Jx0TjYlItIQSSMfy5Ytw5YtW/DBBx8gLi4O1dXVAACz2Yzo6GicOXMGW7ZswaxZs5CQkIATJ05g5cqVmDRpEkaNGhWUA6DwNzPDipSEaJy70tRlX0pCNGZmsLAlItISnSAIPdw545pgXfd/XW7YsAEPPfQQLly4gAcffBDl5eVoaGhAcnIyvv/97+PnP/85TCaTqH/D4XDAbDbDbreLfg2Ftzmvl+DERd+roEYNNmHH8mwFMyIios6kfH9LGvnoqU5JTk5GcXGxlLck8qve2ea38ACAExcdqHe2IdYY8PxpIiJSENtCkqqtfO+4rHFERBR6LD5I1c5/03WeR2/iiIgo9Fh8kKqlXBctaxwREYUeiw9StXXzxsgaR0REocfig1Qt1hiJUYP9z5oeNdjEyaZERBrC4oNUb8fybJ8FCJfZEhFpD/9cJE3YsTwb9c42rHzvOM5/04SU66Kxbt4YjngQEWkQf3OTZsQaI1G4aHyo0yAiol7iZRciIiJSFIsPIiIiUhSLDyIiIlIUiw8iIiJSFIsPIiIiUhRXu5BmtLS5sKn0LM7VNiI1PgYLsobAEMn6mYhIa1h8kCYU7KpAYYkNLuE/217a9QVys9OQNys9dIkREZFkLD5I9Qp2VeCtA7Yu210CPNtZgBARaQfHrEnVWtpcKCzpWnhcq7DEhpY2l0IZERFRb7H4IFXbVHrW61JLd1xCRxwREWkDiw9StXO1jbLGERFR6LH4IFVLjY+RNY6IiEKPxQep2oKsIdDr/MfodR1xRESkDSw+SNUMkXrkZqf5jcnNTmO/DyIiDeFSW1I99zLazn0+9DqwzwcRkQbpBEHoYS2BshwOB8xmM+x2O0wmU6jTIRVhh1MiIvWS8v3NkQ/SDEOkHouzh4Y6DSIi6iUWH0SkiHpnG1a+dxznv2lCynXRWDdvDGKN/BWkJTyH2tfuEnDYVouaOicS44zITItHRE+z+oOAl12IKOjmvF6CExcdXbaPGmzCjuXZIciIpOI51L6i8iqs3lmBKrvTs81qNiI/Jx0zM6y9fn8p39+8YE5EQeXrSwsATlx0YM7rJQpnRFLxHGpfUXkVlm4+5lV4AEC13Ymlm4+hqLxK0XxYfBBR0NQ723x+abmduOhAvbNNoYxIKp5D7Wt3CVi9swLdXeZwb1u9swLtPd3LQkYsPkgzmlra8ez7J7Hg7c/x7Psn0dTSHuqUqAcr3zsuaxwpj+dQ+w7baruMeFxLAFBld+KwrVaxnCQVHwUFBRg/fjzi4uKQmJiIe+65B5WVlV4xTqcTy5YtQ0JCAmJjYzF37lxcvnxZ1qSp78l95whufq4Imw6dR8mpf2HTofO4+bki5L5zJNSpkR/nv2mSNY6Ux3OofTV1vguPQOLkIKn4KC4uxrJly3Do0CHs2bMHra2tuPPOO9HQ0OCJWblyJXbu3Ik///nPKC4uxqVLl3DvvffKnjj1HbnvHMGeippu9+2pqGEBomIp10XLGkfK4znUvsQ4o6xxcujVapevv/4aiYmJKC4uxqRJk2C323H99ddjy5Yt+H//7/8BAP7xj3/g5ptvRmlpKW699dYe35OrXehaTS3tuPm5oh7jvvjFTEQbIhTIiKSod7Yh4/ndPcaVPz+DSzZViudQ+9pdAiau3Ydqu7PbeR86ABazEQefntKrZbeKrXax2+0AgPj4eADA0aNH0draimnTpnliRowYgZSUFJSWlnb7Hs3NzXA4HF4PIrdf7qqQNY6UFWuMxKjB/n8JjRps4peWivEcal+EXof8nI7bUHQuLdzP83PSFe33EXDx4XK5sGLFCnz3u99FRkYGAKC6uhoGgwEDBgzwih00aBCqq6u7fZ+CggKYzWbPIzk5OdCUKAydvdIoaxwpb8fybJ9fXuwRoQ08h9o3M8OK9Q+OhcXsfWnFYjZi/YNjZenzIUXApeqyZctQXl6OgwcP9iqBvLw8rFq1yvPc4XCwACGPIQkxKDklLo7Ua8fybHbH1DieQ+2bmWHF9HSLKjqcBvRTs3z5cnz44Yc4cOAABg8e7NlusVjQ0tKCq1eveo1+XL58GRaLpdv3ioqKQlRUVCBpUB/w01np2HTovKg4UrdYYyQKF40PdRrUCzyH2heh1yFrWEKo05B22UUQBCxfvhzbt2/Hvn37kJaW5rV/3Lhx6NevH/bu3evZVllZifPnzyMrK0uejKlPiTZEYHp6ot+Y6emJnGxKRKQhkkY+li1bhi1btuCDDz5AXFycZx6H2WxGdHQ0zGYzFi9ejFWrViE+Ph4mkwmPPfYYsrKyRK10IepO4cLxPpfbTk9PROFC/iWmBfbGVjy88TAu2Z1IMhvx+4cyYY7pF+q0SAK13JSMtE9S8bF+/XoAwOTJk722b9iwAQ899BAAYN26ddDr9Zg7dy6am5sxY8YMvPnmm7IkS33XPy/XSdpO6nL7K/tw7sp/mlBV2Z0Y/Yv/RWpCNIqfnBLCzEisYN+UjPoW3tWWVK/zF1dn/AJTN54/7XPflKzzl4V7zCMUqyVIfXhXWwob9sZWv19cAHDuShPsja0KZURS8PxpnxpvSkbax+KDVO3hjYdljSNl8fxpnxpvSkbax+KDVO2Sn196gcSRsnj+tE+NNyUj7eszxUe7S0DpmSv4oOwrlJ65wiFCjUgyi7vRkdg4UhbPn/ap8aZkpH19ojUdZ2lr1+8fysToX/yvqDhSH54/7ctMi4fVbOzxpmSZafFKp0YaFvYjH+5Z2p2vWVbbnVi6+RiKyqtClBmJYY7p1+VGSJ3p/h1H6mOO6YfUBP+3Wk9NiOb5UzE13pSMtC+siw/O0ta+rx3N3Z6/awn/jiN1Kn5yis8ChMtstUFtNyUj7QvrPh+lZ67g/sJDPcb9MfdWVfS6p64mrtmLi1d7nsg2eIARB5+ZqkBGFCh2ONU+djglf6R8f4f1nA/O0ta+2gZx/R/ExlHomGP64S8//m6o06BeUMtNyUj7wvqyC2dpa198f3F/GYuNIyKi0Avr4sM9S9vXoKAOHateOEtbvbb/eKKscUREFHphXXxcO0vbF87SVrfrTVEwGf1fHTQZI3G9KUqhjIiIqLfCuvgAOmZpL5mUhs71hV4HLJmUxlnaGnDi+RmI9PGTGqnv2E9ERNoR9sVHUXkVfnfAhs6raQUB+N0BG/t8aEDuO0fQ5up+X5urYz+pX1NLO559/yQWvP05nn3/JJpa2kOdEknU0ubC2yVf4rkPyvF2yZdo8fXBJOpBWC+1bXcJmLh2n8+bIrk78x18egovvahUU0s7bn6uqMe4L34xE9GGCAUyokDkvnMEeypqumyfnp6IwoXjQ5ARSVWwqwKFJd5/yOl1QG52GvJm+b+8TX2DlO/vsB754N0Yte+XuypkjSPl+So8AGBPRQ1HrjSgYFcF3upmBNklAG8dsKGAnz+SKKyLD/b50L6zVxpljSNlNbW0+yw83PZU1PASjIq1tLlQWGLzG1NYYuMlGJIkrIsP9vnQviEJMbLGkbI4cqV9m0rPdhnx6MwldMQRiRXWxQf7fGjfT0VeSxYbR8riyJX2nasVd27ExhEBYV588G6M2hdtiMD09ES/MdPTEznZVKU4cqV9qfHizo3YOCIgzIsPgHdjDAfFlV/3aj+FDkeutG9B1pAufZI60+s64ojECusby7nNzLBierqFd2PUoK9qm9DS7v+Cc0u7gK9qm3BDfPe3bafQsTeKu+GfvbGVo1cqZYjUIzc7DW8d8D3pNDc7DQZfnQCJutFnflrcd2O8+9s3IGtYAgsPjbjr1WJZ40hZ33vtgKxxFBp5s9LxiI9O0Y9MYp8Pkq5PjHyQdjU0i1uCKTaOlGV3tskaR6GTNysdT9w5AptKz+JcbSNS42OwIGsIRzwoICw+SNX6R0XA4ey5sOgfxSF7NRL7tcSvL20wROqxOHtoqNOgMMDPPKnaBz/OljWOlPWt68QVhWLjiCg8cOSDVG1f5WXRcYsT+ReZ2lTWirucIjaOQut0dT3uerUYrS6gnx74+L9ux42W2FCnRRLUO9uw8r3jOP9NE1Kui8a6eWMQa1S+FGDxQarGJlXa1lNnTKlxFDppz3yEa09TqwuY9uti6ADY1swOVVokwZzXS3DiosPzvLK6DhnP78aowSbsWK7s6DEvu5DKif1W4reXGomdi8M5O+rWufC4lvDv/aRunQuPa5246MCc10sUzYfFB6laujVO1jhS1q/mjJY1jpR3urq+x9Je+HccqVO9s81n4eF24qID9QquOpNcfBw4cAA5OTlISkqCTqfD+++/77X/oYcegk6n83rMnDlTrnypj9n3D3HdS8XGkbJ+9KdjssaR8thrR/tWvndc1jg5SC4+GhoaMHr0aLzxxhs+Y2bOnImqqirP449//GOvkqS+q6lV3G26xcYRkTRiP1r8CKrX+W+aZI2Tg+QJp3fddRfuuusuvzFRUVGwWCwBJ0XkljYwBgdPi4sjIvn104srLPrxIr5qpVwXjcrqOlFxSgnKj8v+/fuRmJiI4cOHY+nSpbhy5Uow/hnqA3hjMm37y5LbZI0j5X38X7fLGkfKWzdvjKxxcpC9+Jg5cybeeecd7N27F2vXrkVxcTHuuusutLd336WyubkZDofD60HkFm2IwPT0RL8x09MTeVMylWoRxI3Fi40j5d1oiUVPd8LS/TuO1CnWGIlRg01+Y0YNNina70P24uO+++7DnDlzMHLkSNxzzz348MMPceTIEezfv7/b+IKCApjNZs8jOTlZ7pRI4y47nL3aT6FTUyfu3IiNo9CwrZntswBhnw9t2LE822cBEoo+H0Evc4YOHYqBAwfi9OnTmDp1apf9eXl5WLVqlee5w+FgAUIeUpaIhaJLH/mXGGeUNY5Cx7ZmNjucatyO5dmq6XAa9ClCFy9exJUrV2C1WrvdHxUVBZPJ5PUgclPjEjESLzMtHlaz0e9fzVazEZlp8UqmRQGKNUbCHN0PhggdzNH9WPBrUIReB4vZiMS4KFjMRkToe7qoFhySf3Lq6+tx+vR/lh/YbDaUlZUhPj4e8fHxWL16NebOnQuLxYIzZ87gqaeewo033ogZM2bImjj1DWpcIkbiReh1yM9Jx6Obu+/jIQDIz0kP2S9AEu/mZz/2WtL+r4ZW3LpmL6L76fHFC/5XQJI65L5zBHsqajzPS04Bmw6dx/T0RBQuHK9oLpJHPv72t79hzJgxGDOmY1bsqlWrMGbMGDz33HOIiIjAiRMnMGfOHNx0001YvHgxxo0bh5KSEkRFRcmePIU/sUu/lFwiRtIs3+K/gVhP+yn0Ohce12pqdeHmZz9WOCOSqnPhca09FTXIfeeIovlIHvmYPHkyBMF3s93du3f3KiGia62dOxp7XtwjKo7U5/y/GtHWw0KWNldHXAp7tahS9VVnj038mlpdqL7qhGUA5+6oUVNLu8/Cw21PRQ2aWtoVWznItjCkatuPX5Q1jpQ18zfiWm6LjSPlfe+1A7LGkfJ+uatC1jg5sPggVTtX2yhrHCmL7fG1zyHyZmNi40h5Z6+I+/0oNk4OLD5I1VLjxQ3Fi40jZUWL7LktNo6UZxK5okVsHClvSIK4349i4+TATzyp2rzxKbLGkbL+55HvyhpHyvvwsUmyxpHy1HibChYfpGrvHTkvaxwpa93eSlnjSHmWAb77tLjp/h1H6qTG21Sw+CBV45wPbWOfFu2rd7bB9/rGDsK/40i9CheO91mAhKLPBy/Skapxzoe2qfFW3iSNlC7DhYuU/QIjaQoXjkdTSzt+uasCZ680YkhCDH46Kz0kN+Zk8UGqtiBrCF7a9QVcfv700us64kh91s0bg4zne+79o+StvEkajl6Fl2hDBF64Z2So0+BlF1I3Q6QeudlpfmNys9NgiOSPshqp8VbeJA27DFMw8Dc2qV7erHQ8MikNnW//odcBj0xKQ56CM7RJOrXdypukETsqxdErkoJ/bpAm5M1KxxN3jsCm0rM4V9uI1PgYLMgawhEPjVDTrbxJGvfo1YmLDp8xHL0iqXSCvxu1hIDD4YDZbIbdbofJ5H+4loiIlDHn9ZJuCxCOXpGblO9vlqpERNQjjl6RnPhTQ0REosQaI7mclmTBC+ZERESkKI58EJEi2l0CDttqUVPnRGKcEZlp8YjovISJiPoEFh9EFHRF5VVYvbMCVXanZ5vVbER+TjpmZlhDmBkRhQIvuxBRUBWVV2Hp5mNehQcAVNudWLr5GIrKq0KUGRGFCosPIgqadpeA1Tsrur0xmXvb6p0VaPfXP5+Iwg6LDyIKmsO22i4jHtcSAFTZnThsq1UuKSIKORYfRBQ0NXW+C49A4ogoPLD4IKKgSYwzyhpHROGBq12IKGgy0+JhNRtRbXd2O+9DB8Bi7lh2S+rH5dIkFxYfRBQ0EXod8nPS8ejmY93uFwDk56TzC0wDuFya5MTLLkQUVG/uP92r/RR6XC5NcmPxQURBU+9s83srdgA4cdGBemebQhmRVFwuTcHA4oOIgmble8dljSPlcbk0BQOLDyIKmvPfNMkaR8rjcmkKBhYfRBQ0KddFyxpHyuNyaQoGFh9EFDTr5o2RNY6U514u7Ws9kg4dq164XJqkYPFBREETa4zEqMEmvzGjBpsQa+Sqf7VyL5cG0KUAcT/ncmmSSnLxceDAAeTk5CApKQk6nQ7vv/++135BEPDcc8/BarUiOjoa06ZNw6lTp+TKl4g0ZsfybJ8FyKjBJuxYnq1wRiTVzAwr1j84Fhaz96UVi9mI9Q+OZZ8PkkzynxsNDQ0YPXo0Hn74Ydx7771d9r/88st49dVX8Yc//AFpaWl49tlnMWPGDFRUVMBo5DVBor5ox/Js1DvbsPK94zj/TRNSrovGunljOOKhITMzrJiebmGHU5KFThCEgBdn63Q6bN++Hffccw+AjlGPpKQkPPHEE/jJT34CALDb7Rg0aBA2btyI++67r8f3dDgcMJvNsNvtMJn8D9cSERGROkj5/pZ1zofNZkN1dTWmTZvm2WY2mzFhwgSUlpZ2+5rm5mY4HA6vBxEREYUvWYuP6upqAMCgQYO8tg8aNMizr7OCggKYzWbPIzk5Wc6UiIiISGVCvtolLy8Pdrvd87hw4UKoUyIiIqIgkrX4sFgsAIDLly97bb98+bJnX2dRUVEwmUxeDyIiIgpfshYfaWlpsFgs2Lt3r2ebw+HA559/jqysLDn/KSIiItIoyevc6uvrcfr0f26BbbPZUFZWhvj4eKSkpGDFihV48cUX8a1vfcuz1DYpKcmzIoaIiIj6NsnFx9/+9jfccccdnuerVq0CACxatAgbN27EU089hYaGBixZsgRXr17FxIkTUVRUxB4fREREBKCXfT6CgX0+iIiItCdkfT6IiIiIeqK63sbugRg2GyMiItIO9/e2mAsqqis+6urqAIDNxoiIiDSorq4OZrPZb4zq5ny4XC5cunQJcXFx0OnkvWGRw+FAcnIyLly4EJbzScL9+IDwP0Yen/aF+zHy+LQvWMcoCALq6uqQlJQEvd7/rA7VjXzo9XoMHjw4qP9GuDczC/fjA8L/GHl82hfux8jj075gHGNPIx5unHBKREREimLxQURERIrqU8VHVFQU8vPzERUVFepUgiLcjw8I/2Pk8WlfuB8jj0/71HCMqptwSkREROGtT418EBERUeix+CAiIiJFsfggIiIiRbH4ICIiIkWFTfHR3t6OZ599FmlpaYiOjsawYcPwwgsv9Nhjfv/+/Rg7diyioqJw4403YuPGjcokLFEgx7d//37odLouj+rqagUzF6+urg4rVqxAamoqoqOjcdttt+HIkSN+X6OV8+cm9RjVfg4PHDiAnJwcJCUlQafT4f333/faLwgCnnvuOVitVkRHR2PatGk4depUj+/7xhtvYMiQITAajZgwYQIOHz4cpCPwLxjH9/zzz3c5nyNGjAjiUfjW0/Ft27YNd955JxISEqDT6VBWVibqff/85z9jxIgRMBqNGDlyJHbt2iV/8iIF4xg3btzY5RwajcbgHEAP/B1fa2srnn76aYwcORL9+/dHUlISFi5ciEuXLvX4vsH+DIZN8bF27VqsX78er7/+Or744gusXbsWL7/8Ml577TWfr7HZbJg9ezbuuOMOlJWVYcWKFfjRj36E3bt3K5i5OIEcn1tlZSWqqqo8j8TERAUylu5HP/oR9uzZg02bNuHkyZO48847MW3aNHz11Vfdxmvp/LlJPUY3tZ7DhoYGjB49Gm+88Ua3+19++WW8+uqr+O1vf4vPP/8c/fv3x4wZM+B0On2+53vvvYdVq1YhPz8fx44dw+jRozFjxgzU1NQE6zB8CsbxAcAtt9zidT4PHjwYjPR71NPxNTQ0YOLEiVi7dq3o9/zrX/+K+++/H4sXL8bx48dxzz334J577kF5eblcaUsSjGMEOrqDXnsOz507J0e6kvk7vsbGRhw7dgzPPvssjh07hm3btqGyshJz5szx+56KfAaFMDF79mzh4Ycf9tp27733CvPnz/f5mqeeekq45ZZbvLbNmzdPmDFjRlBy7I1Aju/TTz8VAAjffPNNkLPrvcbGRiEiIkL48MMPvbaPHTtW+NnPftbta7R0/gQhsGPU0jkEIGzfvt3z3OVyCRaLRXjllVc8265evSpERUUJf/zjH32+T2ZmprBs2TLP8/b2diEpKUkoKCgISt5iyXV8+fn5wujRo4OYaWA6H9+1bDabAEA4fvx4j+/zgx/8QJg9e7bXtgkTJgiPPPKIDFn2jlzHuGHDBsFsNsuamxz8HZ/b4cOHBQDCuXPnfMYo8RkMm5GP2267DXv37sU///lPAMD//d//4eDBg7jrrrt8vqa0tBTTpk3z2jZjxgyUlpYGNddABHJ8bt/+9rdhtVoxffp0fPbZZ8FONSBtbW1ob2/vMnQZHR3t869CLZ0/ILBjdNPCOezMZrOhurra6xyZzWZMmDDB5zlqaWnB0aNHvV6j1+sxbdo01Z3XQI7P7dSpU0hKSsLQoUMxf/58nD9/PtjpKkZrn8tA1dfXIzU1FcnJybj77rvx97//PdQpiWK326HT6TBgwIBu9yv1GQyb4uOZZ57BfffdhxEjRqBfv34YM2YMVqxYgfnz5/t8TXV1NQYNGuS1bdCgQXA4HGhqagp2ypIEcnxWqxW//e1v8Ze//AV/+ctfkJycjMmTJ+PYsWMKZi5OXFwcsrKy8MILL+DSpUtob2/H5s2bUVpaiqqqqm5fo6XzBwR2jFo6h52556V0d458zVn517/+hfb2dkmvCZVAjg8AJkyYgI0bN6KoqAjr16+HzWZDdnY26urqgpqvUnx9LtV2/npj+PDh+P3vf48PPvgAmzdvhsvlwm233YaLFy+GOjW/nE4nnn76adx///0+byin1GdQdXe1DdSf/vQnvPvuu9iyZQtuueUWzxyApKQkLFq0KNTp9Vogxzd8+HAMHz7c8/y2227DmTNnsG7dOmzatEmp1EXbtGkTHn74Ydxwww2IiIjA2LFjcf/99+Po0aOhTk02Uo9Ra+eQenbtaOWoUaMwYcIEpKam4k9/+hMWL14cwsxIrKysLGRlZXme33bbbbj55pvx1ltv4YUXXghhZr61trbiBz/4AQRBwPr160OdTviMfDz55JOe0YGRI0diwYIFWLlyJQoKCny+xmKx4PLly17bLl++DJPJhOjo6GCnLEkgx9edzMxMnD59OkhZ9s6wYcNQXFyM+vp6XLhwAYcPH0ZrayuGDh3abbyWzp+b1GPsjprP4bUsFgsAdHuO3Ps6GzhwICIiIiS9JlQCOb7uDBgwADfddJMmzqkYvj6Xajt/cnKPRqv1HLoLj3PnzmHPnj0+Rz0A5T6DYVN8NDY2Qq/3PpyIiAi4XC6fr8nKysLevXu9tu3Zs8erolWLQI6vO2VlZbBarXKmJrv+/fvDarXim2++we7du3H33Xd3G6el89eZ2GPsjhbOIQCkpaXBYrF4nSOHw4HPP//c5zkyGAwYN26c12tcLhf27t2ruvMayPF1p76+HmfOnNHEORVDy5/LQLW3t+PkyZOqPIfuwuPUqVP45JNPkJCQ4Ddesc+gbFNXQ2zRokXCDTfcIHz44YeCzWYTtm3bJgwcOFB46qmnPDHPPPOMsGDBAs/zL7/8UoiJiRGefPJJ4YsvvhDeeOMNISIiQigqKgrFIfgVyPGtW7dOeP/994VTp04JJ0+eFB5//HFBr9cLn3zySSgOoUdFRUXCxx9/LHz55ZfC//7v/wqjR48WJkyYILS0tAiCoO3z5yb1GNV+Duvq6oTjx48Lx48fFwAIv/rVr4Tjx497ZtKvWbNGGDBggPDBBx8IJ06cEO6++24hLS1NaGpq8rzHlClThNdee83zfOvWrUJUVJSwceNGoaKiQliyZIkwYMAAobq6OiyO74knnhD2798v2Gw24bPPPhOmTZsmDBw4UKipqVHd8V25ckU4fvy48NFHHwkAhK1btwrHjx8XqqqqPO+xYMEC4ZlnnvE8/+yzz4TIyEjhv//7v4UvvvhCyM/PF/r16yecPHlS8eMThOAc4+rVq4Xdu3cLZ86cEY4ePSrcd999gtFoFP7+97+r6vhaWlqEOXPmCIMHDxbKysqEqqoqz6O5udnzHqH4DIZN8eFwOITHH39cSElJEYxGozB06FDhZz/7mdf/4EWLFgm333671+s+/fRT4dvf/rZgMBiEoUOHChs2bFA2cZECOb61a9cKw4YNE4xGoxAfHy9MnjxZ2LdvXwiyF+e9994Thg4dKhgMBsFisQjLli0Trl696tmv5fPnJvUY1X4O3UuBOz8WLVokCELHctRnn31WGDRokBAVFSVMnTpVqKys9HqP1NRUIT8/32vba6+9JqSkpAgGg0HIzMwUDh06pNAReQvG8c2bN0+wWq2CwWAQbrjhBmHevHnC6dOnFTyq/+jp+DZs2NDt/muP5/bbb/fEu/3pT38SbrrpJsFgMAi33HKL8NFHHyl3UJ0E4xhXrFjh+fkcNGiQMGvWLOHYsWPKHti/+Ts+9/Lh7h6ffvqp5z1C8RnUCUIPLUCJiIiIZBQ2cz6IiIhIG1h8EBERkaJYfBAREZGiWHwQERGRolh8EBERkaJYfBAREZGiWHwQERGRolh8EBERkaJYfBAREZGiWHwQERGRolh8EBERkaJYfBAREZGi/j+ktWVCcDC6BgAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "import matplotlib.pyplot as plt\n", "plt.scatter('Month','Price',data=new_pumpkins)" @@ -81,13 +429,1358 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAh8AAAGdCAYAAACyzRGfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABSC0lEQVR4nO3de3RU5bk/8O9MQm6QGUgkTCIhxEvBMaBABccaitwMeKJWuuoF8MaKSsFTwVqbLhGjPU05domen5Vjc1AURKw9okQhFqGGoEEwkANplEoaCEpC2kRmAiHX2b8/0hmZZC57JnvPO7P397PWrAUzb+bZ7549M8/s/b7Pa5AkSQIRERFRmBhFbwARERHpC5MPIiIiCismH0RERBRWTD6IiIgorJh8EBERUVgx+SAiIqKwYvJBREREYcXkg4iIiMIqVvQG9Od0OnHq1CkkJyfDYDCI3hwiIiKSQZIktLW1ISMjA0aj/3MbEZd8nDp1CpmZmaI3g4iIiEJw8uRJjB492m+biEs+kpOTAfRtvMlkErw1REREJIfD4UBmZqb7e9yfiEs+XJdaTCYTkw8iIqIoI2fIBAecEhERUVgx+SAiIqKwYvJBREREYcXkg4iIiMKKyQcRERGFFZMPIiIiCismH0RERBRWTD6IiIgorCKuyBhRMHqdEvbXt6K5rQNpyQmYmp2CGCPXBCIiimRMPihqldU0oqi0Fo32Dvd96eYErM63Ii8nXeCWERGRP7zsQlGprKYRSzcd9Eg8AKDJ3oGlmw6irKZR0JYREVEgTD4o6vQ6JRSV1kLy8pjrvqLSWvQ6vbUgIiLRmHxQ1Nlf3zrgjMeFJACN9g7sr28N30YREZFsTD4o6jS3+U48QmlHREThxeSDok5acoKi7YiIKLyYfFDUmZqdgnRzAnxNqDWgb9bL1OyUcG4WERHJxOSDok6M0YDV+VYAGJCAuP6/Ot/Keh9ERBGKyQdFpbycdKxbNBkWs+elFYs5AesWTVa1zkevU0JlXQveq/4GlXUtnFVDRBQkFhmjqJWXk445VktYK5yysBkR0eAZJEmKqJ9tDocDZrMZdrsdJpNJ9OYQubkKm/V/w7hSHbXPuBARRbJgvr952YVIBhY2IyJSDpMPIhlY2IyISDlBJR9PPfUUDAaDx238+PHuxzs6OrBs2TKkpqZi2LBhWLBgAU6fPq34RhOFGwubEREpJ+gzH1deeSUaGxvdt71797ofW7FiBUpLS/H222+jvLwcp06dwm233aboBhOJwMJmRETKCXq2S2xsLCwWy4D77XY71q9fj82bN2PmzJkAgFdffRVXXHEF9u3bh2uvvXbwW0skiKuwWZO9w+u4DwP6pvmysBkRUWBBn/n46quvkJGRgUsuuQQLFy5EQ0MDAKCqqgrd3d2YPXu2u+348eMxZswYVFZW+ny+zs5OOBwOjxtRpGFhMyIi5QSVfEybNg0bNmxAWVkZ1q1bh/r6euTm5qKtrQ1NTU2Ii4vD8OHDPf5m1KhRaGpq8vmcxcXFMJvN7ltmZmZIHSFSm8jCZkREWjKoOh9nzpxBVlYWnnvuOSQmJuK+++5DZ2enR5upU6fihhtuwJo1a7w+R2dnp8ffOBwOZGZmss4HRaxepxTWwmZERNEgmDofg6pwOnz4cHzve9/DsWPHMGfOHHR1deHMmTMeZz9Onz7tdYyIS3x8POLj4wezGURhFWM0wHZpqujNICKKWoOq83H27FnU1dUhPT0dU6ZMwZAhQ7Br1y7340ePHkVDQwNsNtugN5SIiIi0IagzHz//+c+Rn5+PrKwsnDp1CqtXr0ZMTAzuvPNOmM1mLFmyBCtXrkRKSgpMJhMefvhh2Gw2znQhIiIit6CSj6+//hp33nknWlpaMHLkSFx//fXYt28fRo4cCQBYu3YtjEYjFixYgM7OTtx444146aWXVNlwIiIiik5cWI6IiIgGjQvLERERUcRi8kFERERhxeSDiIiIworJBxEREYXVoIqMUWQSUYFTVNVPVhslIoo+TD40pqymEUWltWi0d7jvSzcnYHW+VbW1R0TEFBmXiIgGh5ddNKSsphFLNx30+DIGgCZ7B5ZuOoiymkZNxBQZl4iIBo/Jh0b0OiUUldbCW9EW131FpbXodSpX1kVETJFxiYhIGUw+NGJ/feuAswAXkgA02juwv741qmOKjEtERMpg8qERzW2+v4xDaRepMUXGJSIiZTD50Ii05ARF20VqTJFxiYhIGUw+NGJqdgrSzQnwNcnUgL6ZIFOzU6I6psi4RESkDCYfGhFjNGB1vhUABnwpu/6/Ot+qaA0METFFxiUiImUw+dCQvJx0rFs0GRaz5+UGizkB6xZNVqX2hYiYIuMCfbNtKuta8F71N6isa+GsGiKiIBkkSYqoT85gluQl71jhVL24LGxGRORdMN/fTD6IZHIVNuv/hnGlOmqfcSEiimTBfH/zsguRDCxsRkSkHK7tQiRDMIXNbJemhm/DIoCIS25dPU5srDyOE63tyEpJwmLbWMTFqv9bigsZEimDyQeRDCxs5p2IMTDF22tRUlGPC08y/cf2L1CQm43C+VZVYgIc70OkJF52IZKBhc0GErG4X/H2Wry8xzPxAACnBLy8px7F22sVjwlwIUMipTH5IJKBhc08iRgD09XjRElFvd82JRX16OpxKhYT4HgfIjUw+SBN6+pxYn3F3/HkezVYX/H3kL+YWNjMk4jF/TZWHh9wxqM/p9TXTklcyJBIeRzzQZql9NgAV2Gz/tf9LTq87i9iDMyJ1nZF28nF8T5EymPyQZrkGhvQn2tsAICQE5A5VovuZzyIGAOTlZKkaDu5ON6HSHm87EKao/bYgBijAbZLU3HL1RfDdmmq7hIPQMwYmMW2sQi0q42GvnZK4ngfIuUx+SDNETU2QE9EjIGJizWiIDfbb5uC3GzF631wvA+R8ph8kOaIGhugNyIW9yucb8WD07MHnAExGoAHp6tX50PkQoZEWsQxH6Q5osYG6JGIMTCF8614dO74sFc45XgfIuVwYTnSnK4eJ8av2uH30ovRAHz5zLywlOQmItIDLixHuiZqbACRGnqdEirrWvBe9TeorGthMTPShEF9+v72t7+FwWDAI4884r5vxowZMBgMHreHHnposNtJFBRRYwOIlFRW04jr1+zGnSX78LMt1bizZB+uX7Ob5dwp6oU85uPAgQN4+eWXMXHixAGPFRQU4Omnn3b/PymJ19Yp/ESNDSBSgms9mf7nOVzryXCgK0WzkJKPs2fPYuHChSgpKcGvf/3rAY8nJSXBYrEMeuOIBisu1ogluZeI3gyioARaT8aAvvVk5lgtHPBKUSmkn4DLli3DTTfdhNmzZ3t9/I033sBFF12EnJwcFBYWor3d95TGzs5OOBwOjxsRkZ5xPRnSuqDPfGzZsgUHDx7EgQMHvD5+1113ISsrCxkZGTh8+DAef/xxHD16FO+8847X9sXFxSgqKgp2M4iINIvryZDWBZV8nDx5Ej/72c+wc+dOJCR4X8fggQcecP97woQJSE9Px6xZs1BXV4dLL710QPvCwkKsXLnS/X+Hw4HMzMxgNouISFO4ngxpXVDJR1VVFZqbmzF58mT3fb29vdizZw9efPFFdHZ2IiYmxuNvpk2bBgA4duyY1+QjPj4e8fHxoWw7EZEmudaTabJ3eB33YUBfdVWuJ0PRKqgxH7NmzcKRI0dQXV3tvn3/+9/HwoULUV1dPSDxAIDq6moAQHo6R2UTEcnB9WRI64I685GcnIycnByP+4YOHYrU1FTk5OSgrq4Omzdvxvz585GamorDhw9jxYoVmD59utcpuURE5J1rPZmi0lqPwacWcwJW51s5zZaimqJru8TFxeGjjz7C888/j3PnziEzMxMLFizAE088oWQYIiJd4HoypFVc24WIiIgGjWu7EBERUcRi8kFERERhxeSDiIiIworJBxEREYUVkw8iIiIKKyYfREREFFZMPoiIiCismHwQERFRWDH5ICIiorBi8kFERERhxeSDiIiIworJBxEREYUVkw8iIiIKq1jRG0AUbXqdUkQucX62owcr3jqEhm/PY8yIRKy9fRKGJaj/FhcRV1RfRbz2oo63SD3OSRsMkiRJojfiQsEsyUsUbmU1jSgqrUWjvcN9X7o5AavzrcjLSRe2XTe/WIHDXzsG3D9xtAnbludqKq6ovop47UUdb5F6nFNkC+b7m8kHkUxlNY1Yuukg+r9hXL8F1y2aLOSD2deXsYtaX8oi4orqq4jXXtTxFqnHOUW+YL6/OeaDSIZep4Si0toBH8gA3PcVldai1xneXP5sR4/fL2MAOPy1A2c7eqI+rqi+injtRR1vkXqck/Yw+SCSYX99q8cp6P4kAI32Duyvbw3fRgFY8dYhRdtFclxRfRXx2os63iL1OCftYfJBJENzm+8P5FDaKaXh2/OKtovkuKL6KuK1F3W8RepxTtrD5INIhrTkBEXbKWXMiERF20VyXFF9FfHaizreIvU4J+1h8kEkw9TsFKSbE+BroqEBfbMBpmanhHOzsPb2SYq2i+S4ovoq4rUXdbxF6nFO2sPkg0iGGKMBq/OtADDgg9n1/9X51rDXQRiWEIuJo/2PKp842qR4DQwRcUX1VcRrL+p4i9TjnLSHyQeRTHk56Vi3aDIsZs9TzhZzgtDph9uW5/r8Ulaz9oWIuKL6KuK1F3W8RepxTtrCOh9EQYrUyo+scMoKp1qIS9GLRcaIiIgorFhkjIiIiCIWkw8iIiIKKyYfREREFFZMPoiIiCismHwQERFRWA0q+fjtb38Lg8GARx55xH1fR0cHli1bhtTUVAwbNgwLFizA6dOnB7udRCHpdUqorGvBe9XfoLKuJWyrcdrbu7HgpU9gK96FBS99Ant7t+oxRfVVT8539WLVu0eweP1nWPXuEZzv6tVkTADo6nFifcXf8eR7NVhf8Xd09TjDEpf0IeSptgcOHMBPfvITmEwm3HDDDXj++ecBAEuXLsUHH3yADRs2wGw2Y/ny5TAajfjkk09kPS+n2pJSymoaUVRa67FKZ7o5AavzraoWSvrhs7txomXg4mZZqYkof2ymKjFF9VVPCl4/gJ21zQPun2NNQ8nd12gmJgAUb69FSUU9LsxfjQagIDcbhfOtqsWl6Kb6VNuzZ89i4cKFKCkpwYgRI9z32+12rF+/Hs899xxmzpyJKVOm4NVXX8Wnn36Kffv2hRKKKCRlNY1YuunggOXBm+wdWLrpIMpqGlWJ6yvxAIATLefxw2d3Kx5TVF/1xFcSAAA7a5tR8PoBTcQE+hKPl/d4Jh4A4JSAl/fUo3h7rSpxSV9CSj6WLVuGm266CbNnz/a4v6qqCt3d3R73jx8/HmPGjEFlZeXgtpRIpl6nhKLSWng7pee6r6i0VvHLEvb2bp+Jh8uJlvOKXoIR1Vc9Od/V6zMJcNlZ26zo5RARMYG+Sy0lFfV+25RU1PMSDA1a0MnHli1bcPDgQRQXFw94rKmpCXFxcRg+fLjH/aNGjUJTU5PX5+vs7ITD4fC4EQ3G/vrWAWcBLiQBaLR3YH99q6Jx79+wX9F2cojqq578RuYvfbntIjUmAGysPD7gjEd/TqmvHdFgBJV8nDx5Ej/72c/wxhtvICEhIfAfyFBcXAyz2ey+ZWZmKvK8pF/Nbb6/jENpJ9cpP0lAKO3kENVXPTne0q5ou0iNCQAnWuU9n9x2RL4ElXxUVVWhubkZkydPRmxsLGJjY1FeXo7/+q//QmxsLEaNGoWuri6cOXPG4+9Onz4Ni8Xi9TkLCwtht9vdt5MnT4bcGSIASEuWlxjLbSdXhlne88ltJ4eovurJ2NQkRdtFakwAyEqR93xy2xH5ElTyMWvWLBw5cgTV1dXu2/e//30sXLjQ/e8hQ4Zg165d7r85evQoGhoaYLPZvD5nfHw8TCaTx41oMKZmpyDdnABf628a0DcTZGp2iqJxX7l3qqLt5BDVVz35lczZHXLbRWpMAFhsG4tAC9caDX3tiAYjqOQjOTkZOTk5HrehQ4ciNTUVOTk5MJvNWLJkCVauXIm//OUvqKqqwn333QebzYZrr71WrT4QeYgxGrA6v+9Duf/nqOv/q/Otii8Pbk4agqzURL9tslITYU4aolhMUX3Vk8S4GMyxpvltM8eahsS4mKiOCQBxsUYU5Gb7bVOQm424WNanpMFR/Ahau3Yt/u3f/g0LFizA9OnTYbFY8M477ygdhsivvJx0rFs0GZZ+lzgs5gSsWzRZtdoX5Y/N9JmAqFXnQ1Rf9aTk7mt8JgNq1dwQERMACudb8eD07AFnQIwG4MHprPNBygi5yJhaWGSMlNTrlLC/vhXNbR1IS+67/BCOswD29m7cv2E/Ttk7kGFOwCv3TlX0jIc3ovqqJ+e7evGb7bU43tKOsalJ+NV8q+JnHyIhJtA37XZj5XGcaG1HVkoSFtvG8owH+RXM9zeTDyIiIho01SucEhEREYWKyQcRERGFFZMPIiIiCismH0RERBRWsaI3IFz0NBNARF9FjYwXEZezADyJON709H4m0iJdzHYpq2lEUWmtxwJc6eYErM63aq4Ggoi+Fm+vRUmF5xLcRkNfMSI1awKIiCuqr5FKxPGmp/czUTThVNsLlNU0YummgwOWHHf9RtJSESYRfS3eXouX9/heglutokQi4orqa6QScbzp6f1MFG041fZfep0SikprB3xQAXDfV1Rai95Aa0hHARF97epxoqTC95cxAJRU1KOrx6lYTFFxRfU1Uok43vT0fibSOk0nH/vrWz1OzfYnAWi0d2B/fWv4NkolIvq6sfI4An3OO6W+dkoSEVdUXyOViONNT+9nIq3TdPLR3Ob7gyqUdpFMRF9PtLYr2i6S44rqa6QScbzp6f1MpHWaTj7SkhMCNwqiXSQT0deslCRF20VyXFF9jVQijjc9vZ+JtE7TycfU7BSkmxMGLDXuYkDfKPmp2Snh3CxViOjrYtvYAStf9mc09LVTkoi4ovoaqUQcb3p6PxNpnaaTjxijAavz+2Yf9P/Acv1/db5VE/UBRPQ1LtaIgtxsv20KcrMVr4EhIq6ovkYqEcebnt7PRFqn+U/KvJx0rFs0GRaz56lYizlBc9PyRPS1cL4VD07PHnBWwGhQd+qpiLii+hqpRBxveno/E2mZ5ut8uOipIiIrnLLCaTixwikRASwyRkRERGHGImNEREQUsXSzsByR1vFSBBFFCyYfRBrAxdaIKJrwsgtRlHMttta/9HiTvQNLNx1EWU2joC0jIvKOyQdRFONia0QUjXjZRYNEXPs/29GDFW8dQsO35zFmRCLW3j4JwxLUP7wCxVVju+Q8p729G/dv2I9T9g5kmBPwyr1TYU4aMqi43gSz2Jrt0lTF4wPA+a5e/GZ7LY63tGNsahJ+Nd+KxLgYVWKJjAmIOc45loe0iFNtNUbEtf+bX6zA4a8dA+6fONqEbctzVYkpJ64a2yXnOX/47G6caDk/oE1WaiLKH5sZUlxf3qv+Bj/bUh2w3Qt3XI1brr5Y0dgAUPD6AeysbR5w/xxrGkruvkbxeKJiAmKOc47loWjCOh865br23/8Fdf1GUqMCpK8PZBe1PpgDxU0cYsT5bqei2yWnr/bz3V4TDxelE5DKuhbcWbIvYLs3C65V/MyHryTARY1kQERMQMxxLuL9TDQYrPOhQyKu/Z/t6PH7gQwAh7924GxHj2Ix5cb1l3gAwW+X3L76SzwA4ETLedjbu2XHDcSaLi9Bl9tOrvNdvX6TAADYWduM8129UR0TEHOccywPaR2TD40I5tq/Ula8dUjRdkrHVfJ5lOzD/Rv2K/ZcP3+7WtF2cv1me62i7SI1JiDmOBfxfiYKJyYfGtHc5vuDKpR2cjR86/9XfrDtlI6r5PMo2YdTfr5UgiXqNTje0q5ou0iNCYjZxyLez0ThxORDI9KSEwI3CqKdHGNGJCraTum4Sj6Pkn3IMEf/azA2NUnRdpEaExCzj0W8n4nCicmHRkzNTkG6OQG+JuAZ0DdKfmp2imIx194+SdF2SsdV8nmU7MMr905V7LlEvQa/mm9VtF2kxgTE7GMR72eicGLyoRExRgNW5/d96Pb/wHL9f3W+VdH6AMMSYjFxtP+BjBNHmxSvgyAnbuIQ/4d2sNslt69Zqf5//WalJipa70PUa5AYF4M51jS/beZY0xStvSEiJiBmH4t4P/fX65RQWdeC96q/QWVdS1gGt4qISWIElXysW7cOEydOhMlkgslkgs1mw44dO9yPz5gxAwaDweP20EMPKb7R5F1eTjrWLZoMS7/T+hZzgmrT8rYtz/X5waxm/YNAcb94Zh5MPr4MTAmxIW2XnL6WPzYTsT7eVbFGKF7nw7VdvpKtxCFG1V6Dkruv8buP1ZjyWnL3NT4TEDXrfIg4zkW8n13Kahpx/ZrduLNkH362pRp3luzD9Wt2q1qqX0RMEieoOh+lpaWIiYnB5ZdfDkmS8Nprr+HZZ5/FoUOHcOWVV2LGjBn43ve+h6efftr9N0lJSUHV62Cdj8FjhdNYVetB+OurrwJjLmoUGovUWitqJp+scKre+1lEfRHWNNGGsBYZS0lJwbPPPoslS5ZgxowZuPrqq/H888+H/HxMPmiwznf14oonywK2++LpPEW/sOzt3bjq6T8HbPd/T85V7NLL2Y4e5Dz1YcB2NU/dqOiXpKi4pK5ep4Tr1+z2Oc3XgL4zL3sfn6lYAiQiJqkjLEXGent7sWXLFpw7dw42m819/xtvvIGLLroIOTk5KCwsRHu7/2lvnZ2dcDgcHjeiwRBVD0Ju/Q4l63xEeq0VpeOSukTUF2FNE30K+ifJkSNHYLPZ0NHRgWHDhmHr1q2wWvsGRt11113IyspCRkYGDh8+jMcffxxHjx7FO++84/P5iouLUVRUFHoPiPoRVQ9Cbv0OLdT5EBWX1CWivghrmuhT0MnHuHHjUF1dDbvdjj/96U+45557UF5eDqvVigceeMDdbsKECUhPT8esWbNQV1eHSy+91OvzFRYWYuXKle7/OxwOZGZmhtAVoj5jU5NQ8ZW8dkrKMCf4/QV3YTuljBmRiKNNbbLaKUlUXFKXiPoirGmiT0FfdomLi8Nll12GKVOmoLi4GFdddRVeeOEFr22nTZsGADh27JjP54uPj3fPnnHdiAZDVD0IufU7tFDnQ1RcUpeI+iKsaaJPgx4J5nQ60dnZ6fWx6upqAEB6uj5HKYsakS8qrgjeZgK46kEEmu0S6j7xNfvAnDQEWamJAWe7qFHnI9CsE7VqrYQ7rkvr2S7c8YdP0dzWhbTkOGx54DqkDItTJZbouPb2bty/YT9O2TuQYU7AK/dOVfQYupCrvsjSTQd9tlG6vsiFMQ2Ax4yXcNU0ofALarZLYWEh5s2bhzFjxqCtrQ2bN2/GmjVr8OGHH+KSSy7B5s2bMX/+fKSmpuLw4cNYsWIFRo8ejfLyctkbpJXZLr6meqpZi0BkXBHKahpRVFrrcakj3ZyA1flW5OWk45pf78Q/znYN+LuRw+Jw4Ik5qsQEoErcQHxN8VVjaq/ouCL2r6i4ol5XX9Oo1Zw+LSImKUu12S7Nzc24++67MW7cOMyaNQsHDhzAhx9+iDlz5iAuLg4fffQR5s6di/Hjx+PRRx/FggULUFpaOqjORCN/NSZ21jaj4PUDmoorgqsuQP8xFk32DizddBA3v1jh9YsCAP5xtiukfREoZllNI8pqGvFPH3H/ebZLlYJJZTWNaPBxtqWh5bxqRZpExPWVAAB9r+s1v96peExRcf3VjDnRch4/fHa34jGBvs8RX2e0Dn/tUOVzRERMEiuoc6Lr16/3+VhmZmZQZzi06nxXr9/T/UBfInC+q1fRSyGi4orQ65RQVFo7oCAR0HfK1gD4vRwABL8v5MQsKq2FJEle27gUldZijtWiaI0EX9ulVkxRcVvPdvlMAFz+cbYLrWe7FL0UIiKuvb3b7+U7oC8Bsbd3K3oJRsTniJ4+u+g7XNtFYaJqTIiKK4KcugByBLMv5NYiaHJ4H/90YRst1EgQEfeOP3yqaLtIjiuiZgwg5nNET59d9B0mHwoTVWNCVFwRlJrvH8y+EFHXQMnnUrpGgph6EP7PPgTbLpLjiqgZA4j5HNHTZxd9h8mHwuTWjlC6xoSouCIoNd8/mH0hoq6Bks+ldI0EMfUg5F3SkNsukuPKrQWjZM0YQMzniJ4+u+g7TD4UJqrGhKi4IsipCyBHMPtCbi0CiyleFzUSRMTd8sB1iraL5LgiasYAYj5H9PTZRd9h8qEwV40JfwZTYyLS4orgqgsADEw0XP/3tfy5S7D7Qk7M1flWPHXzlQHbqFEjIZwxRcVNGRaHkQEGdI4cFqd43Q0RcV01Y/xRumYMIOZzRE+fXfQdJh8qKLn7Gp9vJjXrbYiKK0JeTjrWLZoMS7/TzhZzAtYtmoxty3MV3xeumKNM8R73jzLFu5f8drVJTfL8oExNilFtWfDvYnpOXrtoaKyqS5G74o5I8PwYSUk0qhb3wBNzfCYCatbbEBG3/LGZPhMQNet8iPgc0dNnF/XhWtcqKbn7GiGVRkXFFSEvJx1zrBav1UYB4G+nva894ut++Xz91u9TvOML/LO91+O+f7b3onjHF6olAqvercE/23s87vvHuR6serdGtZgA8Is/HYajw+lxX8t5J37xp8OqxhUhKT4GOOvjfo0R8Tmip88uCrLCaThopcIpieWvQBMQ2i9HV5Gx/m8YV+qxbtFkFO/4QvG4gfgrgAWo98t84lMfwtHR4/NxU0IsDj91o6IxRfVVjeMpEmMSDYZqFU6JokEwBZrkClRkDABWb/ur4nEDCaYAlpL+4ej0m3gAgKOjB//wU/ckWKL6qsbxFIkxicKJyQdpjhoFmuQU1Tot84tWycJQogpv/eilvYq2k0NUX0UU/BJVZIwoXJh8kOaoUaBJyWJZShaGElV4q/WcvF/cctvJIaqvIgp+iSoyRhQuTD5Ic9Qo0KRksSwlC0OJKryVMlTeFE+57eQQ1VcRBb9EFRkjChcmH6Q5ahRoklNUq/8UXCXiBiKq8NbWn16vaDs5RPVVRMEvUUXGiMKFyYcG9TolVNa14L3qb1BZ14Jep/oTmkTE9EWNAk1yimoV3Xxl2AtDiSq8NdIUD1OC/5n6poRYjJSZkMkhqq8iCn6JKjJGFC6caqsxZTWNKCqt9RgcmW5OwOp8q2p1F0TElMPXVMXBTFGU01c14gbiawqqmoW3AN/TbdWYZusiqq8i4oo4lohCFcz3N5MPDZFTh0LpZEBEzGDY27tx/4b9OGXvQIY5Aa/cO3XQvxZ7nZLPwmZqxg2k9WwX7vjDp2hu60Jachy2PHCd4mcBvPmHoxM/emkvWs91I2XoEGz96fWKnvHwJtx99XWcA33HuprHuYhjiSgUTD50qNcp4fo1u31OBzWgr/T43sdnKrbehoiYROHG45xIHhYZ0yE5dSga7R3YX98a1THVEEnjVSjyaOU4J4okXNtFI+TWoVCyXoWImEqL1PEqFDm0cJwTRRqe+dAIuXUolKxXISKmklzX8fv/qm2yd2DppoMoq2kUtGUUSaL9OCeKREw+NEJOHYp0c9/gyGiOqRQ5a7UUldbyEgxF9XFOFKmYfGiEnDoUq/Otig6IExGzv0DjNXw9rvZ1fD3VWtF6Xy88zn1R8zjv6nFifcXf8eR7NVhf8Xd09ThViUMUThzzoSF5OelYt2jygDEMFhXHMIiI6RJovIa/xztlfoCHch1fT7VW9NLXvJx0zLamYWdt84DHZlvTVItbvL0WJRX1uDC3+o/tX6AgNxuF8/0nRESRjFNtNUhOHYpojxmovsgD07Pxhz31Ph9/ZPblWPvRVwHjrLrpCiy2jUXViW9l9U1PtVb01Nfi7bV4eU+9z8cfnK58MiAiJtFgsM4HaZqcugsGA+DrTPx367AYcNrR4XXcx4WM/Z7L169sPdVa0VNfu3qcGL9qh8/jCeg7Rr58Zh7iYpW5ki0iJtFgsc4HaZqc8Rr+PrQlAE2OTtw5dQyAgeNV+uv/XL5mw+ip1oqe+rqx8rjf4wnoO0Y2Vh6P6phE4cTkg6KOUvUUxl6UhHWLJsMS5LLkvmbD6KnWip76eqK1XdF2kRqTKJyYfFDUUaqeQlpyAvJy0rH38ZlYddMVQf2tt1/Zeqq1oqe+ZqUkKdouUmMShROTD4o6cuou+Lvk378uQ4zRgIuSQ1sI7cJf2XqqtaKnvi62jfV7PAF9x9ti29iojkkUTkw+SBHnu3qx6t0jWLz+M6x69wjOd/WqFktOfZGC3Oy+gac+Hr+wLkNXjxOfHw9tnMDvd38Fe3s3unqc2PBJPcaNGuZ3AKuatVbCFVNUXFF9jYs1oiA322+bgtxsRQd+iohJFE5BHbnr1q3DxIkTYTKZYDKZYLPZsGPHDvfjHR0dWLZsGVJTUzFs2DAsWLAAp0+fVnyjKbIUvH4AVzxZho37GlDx1T+xcV8DrniyDAWvH1AtZl5OOiaMNg34opcATBhtQuF8K2Zb07w+fmFdhuLttRi/agc27msIaTv+1nwOVz39Z3zviR145oMv8PHf/umz7YTRJtVqrYxJTfT62JjURFVrX0wY7X1Eu5p9DXdMACicb8VEH3En/ut4UyPmg9OzB5wBMRo4zZaiX1BTbUtLSxETE4PLL78ckiThtddew7PPPotDhw7hyiuvxNKlS/HBBx9gw4YNMJvNWL58OYxGIz755BPZG8SpttGl4PUDXgsvucyxpqHk7mvCHjcrNREnWs77fPzB6X2/Kv3VUVCDGvvj5hcrcPhrh8/HJ442YdvyXEVjAmJee1HHm8iaG109TmysPI4Tre3ISknCYttYnvGgiBTWOh8pKSl49tln8eMf/xgjR47E5s2b8eMf/xgA8OWXX+KKK65AZWUlrr32WsU3nsQ639WLK54sC9jui6fzkBgXE/a4gfSv3xEuSu6Psx09yHnqw4Dtap66EcMSlCtoLOK1F3W8seYGkTxhqfPR29uLLVu24Ny5c7DZbKiqqkJ3dzdmz57tbjN+/HiMGTMGlZWVPp+ns7MTDofD40bR4TfbaxVtp3TcQEStGafk/ljx1iFF28kl4rUXdbyx5gaR8oJOPo4cOYJhw4YhPj4eDz30ELZu3Qqr1YqmpibExcVh+PDhHu1HjRqFpqYmn89XXFwMs9nsvmVmZgbdCRLjeIu8GgNy2ykdN1Ipuf0N3/q+tBRKO7lEvPaijjfW3CBSXtDJx7hx41BdXY3PPvsMS5cuxT333IPa2tB/aRQWFsJut7tvJ0+eDPm5KLzGpsqrMSC3ndJxI5WS2z9mhPeBpqG2k0vEay/qeGPNDSLlBZ18xMXF4bLLLsOUKVNQXFyMq666Ci+88AIsFgu6urpw5swZj/anT5+GxWLx+Xzx8fHu2TOuG0WHX8kcYCe3ndJxA1F5rT2flNwfa2+fpGg7uUS89qKON9bcIFLeoEdHOZ1OdHZ2YsqUKRgyZAh27drlfuzo0aNoaGiAzWYbbBiKQIlxMZhjTfPbZo41TdHBf3LjZvmYeury4PTsgHUU1KD0/hiWEOtzCqjLxNEmRQebAmJee1HHG2tuECkvqHdLYWEh9uzZg+PHj+PIkSMoLCzExx9/jIULF8JsNmPJkiVYuXIl/vKXv6Cqqgr33XcfbDab7JkuFH1K7r7G5xeCWtMe5cQtf2xmwBoJvuooqEWt/bFtea7fGhRqTLMFxLz2oo431twgUlZQU22XLFmCXbt2obGxEWazGRMnTsTjjz+OOXPmAOgrMvboo4/izTffRGdnJ2688Ua89NJLfi+79MepttHpfFcvfrO9Fsdb2jE2NQm/mm9V/BdoKHHl1Ejo3+b2a8bgrQMNPv9/81UX46FNn+OUvQMZ5gS8cu9UJMbFeDzHj6dk4nd//jKs++NsRw9WvHUIDd+ex5gRiVh7+yTFz3h4I+K1F3W8seYGkW9hrfOhNCYfFOl6nRL217eiua0DacnfrSXS/z6ly3wTEUWyYL6/1f9ZRKQhZTWNKCqtRaP9uwXlhicNAQCcae9235duTsDqfKtq5b6JiKIZzxcSyVRW04ilmw56JB5AX9JxYeIBAE32DizddBBlNY3h3EQioqjA5INIhl6nhKLSWr8r1l7I1a6otBa9okqpEhFFKCYfRDLsr28dcMYjEAlAo70D++tb1dkoIqIoxeSDSIbmtuASD6X+lohIizjglDRNqamRackJIW/D58dbMS8nXfUpmaKmgYqIq6e+EmkRp9qSZhVvr0VJRb3HiqRGQ181ymCLQvU6JVy/Zjea7B2yx31cKNS4cinZ10iPq6e+EkWTYL6/mbKTJhVvr8XLe+oHLIXulICX99SjOMhl12OMBqzO7/uCCaV6R6hx5VC6r5EcV099JdIyJh+kOV09TpRU1PttU1JRj64eZ1DPm5eTjnWLJsNi9rwEMzxpiLvWRyChxPVHrb5GYlw99ZVI65h8kOZsrDw+4Bdqf06pr503vU4JlXUteK/6G1TWtaCrx+n+vzkxDuWP3YA3C67FC3dcjTcLrkXVE3NQ9cQcLL52TMBt8xc3FIPtazTF1VNfibSOA05Jc060tofczlsFU6MBHl8+ruqlt1x9scffGgzyLsjI3T4ln0vJmKLi6qmvRFrHMx+kOVkpSSG181XBtP+vXl/VS0ONOxgiYoqKq6e+Emkdkw/SnMW2sQOWPu/PaOhr5xJMBVNf1UtDiTtYImKKiqunvhJpHZMP0py4WCMKcrP9tinIzfaozxBsBVNv1UtDiTtYImKKiqunvhJpHcd8kCa56i7IrcsQahXS/n8XbFwliIgpKq6e+kqkZSwyRpomtyJlZV0L7izZF/Tzv1lwLWyXpoYcV0l6qvqpp74SRYtgvr+ZfBAh+AqmBgAWcwL2Pj4TMYEGBBAR6QArnBIFKZgKpq7HV+dbmXgQEYWAyQfRv/iqYNo/v7CYE7Bu0WTk5aSHceuIiLSDA06JLpCXk445Vgv217eiua0DackJmJI1AlUnvnX/f2p2Cs94EBENApMPon5ijIYBg0i9DSolIqLQ8LILERERhRWTDyIiIgorJh9EREQUVhzzQRSkXqfkMSB1anYKAAy4j4NSiYi8Y/JBFISymkYUldZ6rAMzPGkIAOBMe7f7vnRzAlbnWzkdl4jIC152IZKprKYRSzcdHLAA3Zn2bo/EAwCa7B1Yuukgymoaw7mJRERRgckHkQy9TglFpbWySq8DcLcrKq1FrzOiVjAgIhKOyQeRDPvrWwec8QhEAtBo78D++lZ1NoqIKEox+SCSobktuMRDqb8lItIiDjgl3fM2e6X/TJW05AQffx3YYP6WiEiLgjrzUVxcjGuuuQbJyclIS0vDrbfeiqNHj3q0mTFjBgwGg8ftoYceUnSjiZRSVtOI69fsxp0l+/CzLdW4s2Qfrl+ze8BA0anZKUg3JwRc8fZCBvTNenFNxSUioj5BJR/l5eVYtmwZ9u3bh507d6K7uxtz587FuXPnPNoVFBSgsbHRffvP//xPRTeaSAm+Zq94m6kSYzRgdb4VAGQlIK42q/OtrPdBRNRPUJddysrKPP6/YcMGpKWloaqqCtOnT3ffn5SUBIvFoswWEqnA3+wVCX3JQ1FpLeZYLe7kIS8nHesWTZZV58PCOh9ERD4NasyH3W4HAKSkeJ5WfuONN7Bp0yZYLBbk5+dj1apVSEpK8vocnZ2d6OzsdP/f4XAMZpOIZAk0e+XCmSoXrmibl5OOOVYLK5wSEQ1CyMmH0+nEI488gh/84AfIyclx33/XXXchKysLGRkZOHz4MB5//HEcPXoU77zzjtfnKS4uRlFRUaibQRQSuTNQvLWLMRo8EhIXb/cREdFAIScfy5YtQ01NDfbu3etx/wMPPOD+94QJE5Ceno5Zs2ahrq4Ol1566YDnKSwsxMqVK93/dzgcyMzMDHWziGSROwOFM1WIiJQXUvKxfPlyvP/++9izZw9Gjx7tt+20adMAAMeOHfOafMTHxyM+Pj6UzSAKmWv2SpO9w+u4DwP6xm1wpgoRkfKCSj4kScLDDz+MrVu34uOPP0Z2dnbAv6murgYApKdz4B1FDtfslaWbDsIAeCQggWaqdPU4sbHyOE60tiMrJQmLbWMBYMB9cbGs4UdE5I1BkiTZC0/89Kc/xebNm/Hee+9h3Lhx7vvNZjMSExNRV1eHzZs3Y/78+UhNTcXhw4exYsUKjB49GuXl5bJiOBwOmM1m2O12mEym4HtEFARvq9T6W5G2eHstSirq0X+5lv4JjNEAFORmo3C+VZ0NJyKKMMF8fweVfBgM3kfvv/rqq7j33ntx8uRJLFq0CDU1NTh37hwyMzPxox/9CE888YTsRILJB4WbnAqnQF/i8fKe+qCe+8HpTECISB9USz7CgckHRaKuHifGr9ox4IxHIEYD8OUz83gJhog0L5jvb34iEsmwsfJ40IkHADilvr8lIqLvMPkgkuFEa7uQvyUi0iImH0QyZKV4r9Cr9t8SEWkRkw8iGRbbxiKUaulGA9xTcYmIqA+TDyIZ4mKNKMgNXNemv4LcbA42JSLqZ1ALyxHpiWvKLOt8EBENDqfaEgWJFU6JiAZinQ8iIiIKK9b5ICIioojF5IOIiIjCiskHERERhRWTDyIiIgorJh9EREQUVqzzQVGt1ylhf30rmts6kJacgKnZKYgJpRRphMckItISJh8UtcpqGlFUWotGe4f7vnRzAlbnW5GXk66ZmEREWsPLLhSVymoasXTTQY8kAACa7B1YuukgymoaNRGTiEiLmHxQ1Ol1SigqrYW36niu+4pKa9HbvwZ6lMUkItIqJh8UdfbXtw44+3AhCUCjvQP761ujOiYRkVYx+aCo09zmOwkIpV2kxiQi0iomHxR10pITFG0XqTGJiLSKyQdFnanZKUg3J8DX5FYD+magTM1OieqYRERaxeSDok6M0YDV+VYAGJAMuP6/Ot+qaO0NETGJiLSKyQdFpbycdKxbNBkWs+dlDos5AesWTVal5oaImEREWmSQJCmi5gY6HA6YzWbY7XaYTCbRm0MRjhVOiYgiQzDf36xwSlEtxmiA7dJUzcckItISJh9EGiHqjIyezj6xr+xrNMeMJEw+iDRA1Jozelpfh31lX6M5ZqThmA+iKOdac6b/G9n1G0qtwbAi4rKv7Gu0xxXV13AI5vubs12IopioNWf0tL4O+6puXPZV3ZiRismHBvU6JVTWteC96m9QWdcSlgNZREyRcSOFqDVn9LS+Dvuqblz2Vd2YkSqoMR/FxcV455138OWXXyIxMRHXXXcd1qxZg3HjxrnbdHR04NFHH8WWLVvQ2dmJG2+8ES+99BJGjRql+MbTQHq6fsnrpuLWnNHT+jrsq7px2Vd1Y0aqoM58lJeXY9myZdi3bx927tyJ7u5uzJ07F+fOnXO3WbFiBUpLS/H222+jvLwcp06dwm233ab4htNArmuJ/TPrJnsHlm46iLKaRk3EFBk30ohac0ZP6+uwr+rGZV/VjRmpgko+ysrKcO+99+LKK6/EVVddhQ0bNqChoQFVVVUAALvdjvXr1+O5557DzJkzMWXKFLz66qv49NNPsW/fPlU6QH30dP2S102/I2rNGT2tr8O+qhuXfVU3ZqQa1JgPu90OAEhJ6dtRVVVV6O7uxuzZs91txo8fjzFjxqCystLrc3R2dsLhcHjcKHh6un7J66bfEbXmjJ7W12Ff1Y3LvqobM1KFnHw4nU488sgj+MEPfoCcnBwAQFNTE+Li4jB8+HCPtqNGjUJTU5PX5ykuLobZbHbfMjMzQ90kXdPT9UteN/Ukas0ZPa2vw76yr9EcMxKFXGRs2bJlqKmpwd69ewe1AYWFhVi5cqX7/w6HgwlICPR0/ZLXTQfKy0nHHKsl7BUTRcRlX9nXaI8rqq+RJKTkY/ny5Xj//fexZ88ejB492n2/xWJBV1cXzpw543H24/Tp07BYLF6fKz4+HvHx8aFsBl3AdS2xyd7hdSyEAX2ZtRrXL8MZU2TcSCdqzRk9ra/Dvmovpqi4el8jKqjLLpIkYfny5di6dSt2796N7Oxsj8enTJmCIUOGYNeuXe77jh49ioaGBthsNmW2mLzS0/VLXjclIopuQZVX/+lPf4rNmzfjvffe86jtYTabkZiYCABYunQptm/fjg0bNsBkMuHhhx8GAHz66aeyYrC8+uCU1TTiqW21aHKEt85HuGN+F/evaHJ0uu+zmOLx1M1XuuOqsXiTnOfU00JV7Ks2+0oUrGC+v4O67LJu3ToAwIwZMzzuf/XVV3HvvfcCANauXQuj0YgFCxZ4FBmjcPLMJ8OzfI+ImIDvcx/qFCGT85ws9Ma+RnNMonDgwnIaoqdFkgLFfWB6Nv6wp17R7ZLTVwB8DVSMy75qYwEy0iYuLKdDLDLmGbekYmDiMZjtktvXp7b9la+BSnHZV3VjEoUTkw+NYJExz7j+PpND2S65fb1w/IkScZXaLi0UemNf1Y1JFE5MPjSCRcbUfR4R+03J59JCoTf2Vd2YROEUcpGxaKP1UeosMqbu84jYb0o+lxYKvbGv6sYkCiddJB96GKXuKrzl71StWoskhTOm3LhGg+9LL6EUIZPbV0mScNrRyUJvKsRlX9WNSRROmr/sopdl5mOMBtx8lf+k5uar0hUvMpZzsf8RzTkXm1QpMiYnrgHKFSGTu3+fuvlKjziDjStnu/RS6I19VTcmUThpOvnQ0yj1XqeEbf/nP6nZ9n+Nisbt6nFi1xfNftvs+qIZXT1OxWLKjVvzjQP/746rFVu8Se7+nWO16GahKj0tyqWnvhKFg6YvuwQzYlypGvsiYsqJCxXibqw87ndWCdB36WNj5XEsyb1EkZjBxD3d1om9j89UZNxNMPtXTwtVsa/a7CuR2jSdfOhplLqIuCda2xVtp0ZcpRZvCnb/6mmhKvZVezGJ1Kbpyy56GqUuIm5WSpKi7SI5LmcfEBEpR9PJh2vEuK8TlAaoNwMknDFFxV1sG4tAZ3+Nhr52ShIRV9TrSkSkRZpOPi4cMe6LVkapi4gbF2tEQW623zYFudmIi1X2MBMRl7MPiIiUo+nkA+gbsPXA9OwBv5SNhr7Fx7Q0Sl1E3ML5Vsyxpnl9bI41DYXz/Sd/0RTXdSwZ+h1LBhWPJSIiLdL8qrYiV4YUUVU13HF97V+gbx+He5VRNeOK6muk03r1YNFx9dRXim7BfH9rOvnodUq4fs1un1MkXVUC9z4+k2+qEIjavyLi8ljyTg/Vg0XG1VNfKfoF8/2t6csuXBlSXVxlVN2YkU4v1YNFxdVTX0l/NJ18cGVIdemppgmPJU96qx7Mvqobl/RH08kHazOoS081TXgsedLT2Sf2Vf24pD+arnAqemVIrQ8Ui4ZVRpXaF8H2VcRrb2/vxv0b9uOUvQMZ5gS8cu9UmJOGqBJLT2ef2Ff145L+aDr5cNVmWLrpIAyAx5eG2rUZ9DBQzLV/H9p00OvjEtStaRIo7s7aJsX2RTB9FfHa//DZ3TjRct79/0Z7B656+s/ISk1E+WMzFY+np7NP7Kv6cUl/NH3ZBRBT+0JPA8X+9+DXg3o8VIcavg0YVy+vQf/E40InWs7jh8/uVjzm1OwUDI2L8dtmaHwMqwdHUUyRcUl/NJ98AH0JyN7HZ+LNgmvxwh1X482Ca7H38ZmqJB56Gih2vqsXO2v9L22/s7YZ57t6FYsJAF09TpRU1AeMq+S+cO1fXwz/es6ntv01rK+Bvb3bZ+LhcqLlPOzt3YrFBPr2R3uA17W9s1fRvrrOPvl6RrXPtAHhq26rp0rJpE+6SD6A71aGvOXqi2G7NFW1N4+eBor9ZrvvL+NQ2sm1sfI4BvOdFsq+kLt/mxydisYN5P4N+xVtJ9fGyuM+kwAX6V/ttEDEGVQ9VUom/dH0mA8R9DRQ7HiLvKXt5baT60SrMs8XzL4QMZhQjlNn/J/1CLadXCJee7lnn+ZYLar8uMjLScccqyWsA4lFxBQZl/SDyYfC9DRQbGxqEiq+ktdOSVkpyjxfMPtCxGBCOZITYtHo52zLhe2UJffUk3KXXYI5u2e7NFWxuBdynUENJxExRcYlfdDNZZdw0dNAsV/JXLxNbju57pqWNejnMBqAKVkjZLd37V9/LCZ5ScWEi82y4way0DZG0XZyWdOTFW0nB6eBEmkHkw+F6WmgWGJcjM+VZV3mWNOQGGBWRLCqT54Z9HM4JaDqhP8ZMxeKMRpw81X+r3WnDJVXU2NN2Rey4way928tiraTa/eX/1C0nRyRMA3U3t6NBS99AlvxLix46RPFB/J6c7ajBwWvHcCNz+9BwWsHcLajR/WYQN+A8lXvHsHi9Z9h1btHFB84Hikxgb5B7Osr/o4n36vB+oq/o6vHqcmYIuP2x8suKnAN2Opf68Gicq0HEXFL7r4GBa8f8DrrZY41DSV3X6N4TKV+2QbzPL1OCdv+z/802WPNZ2U9l5LjIM53y/vgkNsukuO6zj75u/Si5jTQcNdSAYCbX6zA4a8d7v8fbWpDzlMfYuJoE7Ytz1UlJoAB7+mKr4CN+xpUe0+LigkAxdtrUVJR7zGI/T+2f4GC3GwUKnzWVmRMkXG9YfKhEj0NFCu5+xqc7+rFb7bX4nhLO8amJuFX862Kn/FwUeqXbTDPE2i8AQB09cob36DkGJjsi5Kw95i8dkoSETfGaEBPr/9kpqfXqcqxLqeWitIJSP/E40KHv3bg5hcrVElAfP2YAPqmsBe8fkDxZEBETKDvy/jlPQOn7TsluO9X+ktZREyRcX3hZRcVhWt6byTETYyLwTO3TsDGJdPwzK0TVEs8AHnjW+QIZuyFkuMIfj53fNifS8mYouLa27vxj7Ndftv842yX4pdCRNRSOdvR4zPxcDn8tUPxSzAiavdEcr2gkop6RS9LiIgpMq4/QScfe/bsQX5+PjIyMmAwGPDuu+96PH7vvffCYDB43PLy8pTaXqKA41vkzq8IZuyFkuMI/lR1MuzPpWRMUXFF1TQREXfFW4cUbSeXiNo9kVwvyCkpW6tGREyRcf0JOvk4d+4crrrqKvz+97/32SYvLw+NjY3u25tvvjmojSTqz18hpCtkzrAIZuyFnLMtSTLP9ihVpySY51Iypqi4pwJc9gq2XSTHbfhWXl0Wue3kElG/JdLrBfH9qo6gx3zMmzcP8+bN89smPj4eFosl5I0iksPX+JanttXgi8a2gH8fzNgLOYsUzs9Jx59krGWjVJ2SYJ5LyZii4mYEGGx6YTsliYg7ZkQijjYFPobHjEhULCYgpnZPpNcL4vtVHaqM+fj444+RlpaGcePGYenSpWhpUXaaH5FLr1NC7Sk7qk58i9pTdvQ6JdXqj7jOtowyDTzbsm7RZPzmtgkINLzGaAAW28YGFdefxbaxYY8pKu4r905VtJ1ccgc6Kjkgcu3tkxRtJ5eI2j2i6gWJOIb19H4NRPHkIy8vD6+//jp27dqFNWvWoLy8HPPmzUNvr/fBQp2dnXA4HB43IjmKt9di/KodeOaDL/B65Qk888EXGL9qB57/6Khq9UcONXyL046BK9YeavgWcbFGFORm+/37gtxsxMUq97YTEVNUXHPSEGSl+v+ln5WaCHOSvHorch09HfgMRDDt5BiWEIuJo01+20wcbcIwhSvXiqjdI6peEN+v6sf1R/FId9xxB26++WZMmDABt956K95//30cOHAAH3/8sdf2xcXFMJvN7ltmZqbSm0Qa5Jo21n8QlWva2CUXDfX5gRZq3QBXzP7jtiT0xSzeXovC+VY8OD17wK8MowF4cLo6c+lFxBQVt/yxmT4TELXqbYiqrLptea7PBETNOh8ld1+j+HsnEmMCYo5hPb1f/TFIkhTy4gsGgwFbt27Frbfe6rfdyJEj8etf/xoPPvjggMc6OzvR2fnd2hQOhwOZmZmw2+0wmfxn/qRPXT1OjF+1w+/obaMB+PKZeeh1SorUHwkmZlysEV09TmysPI4Tre3ISknCYttY1X9ViIgpKq69vRv3b9iPU/YOZJgT8Mq9UxU/4+FSWdeCO0v2BWz3ZsG1qqyFcrajByveOoSGb89jzIhErL19kuJnPLwJZ+0ekTEBMcewFt+vDocDZrNZ1ve36kfw119/jZaWFqSne6+uGR8fj/j4eLU3gzQkmGlji21jMTZ1KAwGA7JSkkKueRJMzCW5l4QUg+RLjIvB/Anp7g/QcNSVabJ3eJ3GbUDfuB+1KqvGxRpx7SWpSP9XX8N1ajzGaFDkvRPpMfUmxmiANcOMi5LjkZacIGwfB33m4+zZszh2rK+04aRJk/Dcc8/hhhtuQEpKClJSUlBUVIQFCxbAYrGgrq4Ov/jFL9DW1oYjR47ISjKCyZxIn558rwavV54I2M6absKXTQ6PpMFoQEilhOXGvNuWhcQhxgEljEONK5e3sslqxxQVV0TMsppGPLTpoM/H/3vRZFWWL+Dryr4qqaymccDyG+kKLr8RzPd30Cn0559/jkmTJmHSpL5R1itXrsSkSZPw5JNPIiYmBocPH8bNN9+M733ve1iyZAmmTJmCiooKnt0gxcidDlbb6PA5JqQ4yIJFcmN+1dTmdyxKsHHlCDT+RY2YouKK6uuhBv+LEAZ6PBR8XdlXJZXVNGLppoMDpo032TuwdNNBlNX4X7tKaUEnHzNmzIAkSQNuGzZsQGJiIj788EM0Nzejq6sLx48fxx/+8AeMGjVKjW0nnZIzbSyQYEsJy4352fFWReMGoqdyzeyrujFFxWVf1Y0J9JUkKCqt9XrZ0HVfUWktegNdW1YQ13ahqCNn2lggwZYSlhPTdskIlmtWMS77qm5MUXHZV3VjAoEXxpTQt0rz/nr/P56UxOSDopK/aWNXZsgrrx5sKeHC+Va/0wEvHyVvjBLLNUdPTFFx2Vd1Y4qKK6qvoqaL+6P+fC0ilRTOt+LRueMHTBvbWHkcfz0VeNG4YEsJl9U04iMvq28aAHxU24wFky+W9Tws1xw9MUXFZV/VjSkqrqi+yl0YU8kFNAPhmQ+KanGxRizJvQRP35KDJbmXIC7WiLumZcn6W7ntAHnXTD+pa/G58JyL0iWM1ehrpMbVU1/1VIabfVU3JiBvYcx0FaeLe8PkgzSn+uQZRdsB8q+Z/ttE/wsqKl3CWI2+RmpcPfU1LtaIWVf4Lzk+64o0Vcpwhzuu3voqosy5a2FMAAMSENf/V+dbw1rzg8kHaY4a1zfltp1ttYS1hLGoa7ki4uqpr71OCTXf+F/nquYbh+KzE0TE1VNfAXFlzl0LY1rM3hfGVKNOjT8c80Gao8b1zWCe85b5F3sdi6JGZUpR13JFxNVTXwOdaQO+m52gZEl3EXH11FcXX+PV1K5em5eTjjlWC/bXt6K5rQNpyX2XWkRUOWXyQZqjRjnsYJ/TNRZFbaJKf4uIq6e+6uksj576eqFwfUb0F2M0qLIGUbB42YU0R43rm5F4zVTkdomIq6e+6uksj576St9h8kGapMb1zUi7Zip6u0TE1UtfRc1OEBFXT32l7wS9sJzauLAcKanXKSl+fVON51SCqO0SEVcPfXWtxQHA43KPK5payZaIuHrqq5YF8/3N5IOIKEKpvQppJMXVU1+1iskHEZFG6OEsj8iYIuNqDZMPIiIiCqtgvr854JSIiIjCinU+iGhQeMqaiILF5IOIQsbBekQUCl52IaKQuKYp9i9R3WTvwNJNB1FW0yhoy4go0jH5IKKg9TolFJXWei037rqvqLRW8UW5iEgbmHwQUdACLcol4btFuYiI+mPyQURBE70oFxFFNyYfRBQ0LspFRIPB2S5EFDRRy9u7dPU4sbHyOE60tiMrJQmLbWMRF6v+bykRcTmVmbSIFU6JKCSiFuUq3l6Lkop6XDiW1WgACnKzUTjfqng8kXE5lZmiCSucEpHqRCxvX7y9Fi/v8UwAAMApAS/vqUfx9lrFY4qKy6nMpGU880FEgxKuywJdPU6MX7VjQAJwIaMB+PKZeYpeChERt9cp4fo1u33OKHJd1tr7+ExegqGIwTMfRBQ2MUYDbJem4parL4bt0lTVvgw3Vh73mwAAfWciNlYej/q4nMpMWsfkg4iiwonWdkXbRXJcTmUmrWPyQURRISslSdF2kRyXU5lJ65h8EFFUWGwbi0BXdIyGvnbRHtc1ldlXWAP6Zr2oNZWZSG1MPogoKsTFGlGQm+23TUFutuJ1N0TEjTEasDq/b/pu/wTE9f/V+VYONqWoFfS7Zc+ePcjPz0dGRgYMBgPeffddj8clScKTTz6J9PR0JCYmYvbs2fjqq6+U2l4i0rHC+VY8OD17wJkIowF4cLp69TZExBUxlZkoXIKeartjxw588sknmDJlCm677TZs3boVt956q/vxNWvWoLi4GK+99hqys7OxatUqHDlyBLW1tUhICHx9klNtiSgQVjjlGQ+KPMF8fw+qzofBYPBIPiRJQkZGBh599FH8/Oc/BwDY7XaMGjUKGzZswB133KHoxhMREVFkEFbno76+Hk1NTZg9e7b7PrPZjGnTpqGystLr33R2dsLhcHjciIiISLsUTT6ampoAAKNGjfK4f9SoUe7H+isuLobZbHbfMjMzldwkIiIiijDCZ7sUFhbCbre7bydPnhS9SURERKQiRZMPi8UCADh9+rTH/adPn3Y/1l98fDxMJpPHjYiIiLRL0eQjOzsbFosFu3btct/ncDjw2WefwWazKRmKiIiIolRssH9w9uxZHDt2zP3/+vp6VFdXIyUlBWPGjMEjjzyCX//617j88svdU20zMjI8puMSERGRfgWdfHz++ee44YYb3P9fuXIlAOCee+7Bhg0b8Itf/ALnzp3DAw88gDNnzuD6669HWVmZrBofREREpH2DqvOhBtb5ICIiij7C6nwQERERBRL0ZRe1uU7EsNgYERFR9HB9b8u5oBJxyUdbWxsAsNgYERFRFGpra4PZbPbbJuLGfDidTpw6dQrJyckwGMQvnuRwOJCZmYmTJ09yDIoCuD+Vxf2pLO5P5XGfKiuS96ckSWhra0NGRgaMRv+jOiLuzIfRaMTo0aNFb8YALICmLO5PZXF/Kov7U3ncp8qK1P0Z6IyHCwecEhERUVgx+SAiIqKwYvIRQHx8PFavXo34+HjRm6IJ3J/K4v5UFven8rhPlaWV/RlxA06JiIhI23jmg4iIiMKKyQcRERGFFZMPIiIiCismH0RERBRWuks+iouLcc011yA5ORlpaWm49dZbcfToUa9tJUnCvHnzYDAY8O6773o81tDQgJtuuglJSUlIS0vDY489hp6enjD0IPLI3aeVlZWYOXMmhg4dCpPJhOnTp+P8+fPux1tbW7Fw4UKYTCYMHz4cS5YswdmzZ8PZlYggZ382NTVh8eLFsFgsGDp0KCZPnoz//d//9WjD/dln3bp1mDhxorsok81mw44dO9yPd3R0YNmyZUhNTcWwYcOwYMECnD592uM5+H735G+ftra24uGHH8a4ceOQmJiIMWPG4N///d9ht9s9noP79DuBjlEXLX0n6S75KC8vx7Jly7Bv3z7s3LkT3d3dmDt3Ls6dOzeg7fPPP++1xHtvby9uuukmdHV14dNPP8Vrr72GDRs24MknnwxHFyKOnH1aWVmJvLw8zJ07F/v378eBAwewfPlyjxK8CxcuxF//+lfs3LkT77//Pvbs2YMHHnhARJeEkrM/7777bhw9ehTbtm3DkSNHcNttt+EnP/kJDh065G7D/dln9OjR+O1vf4uqqip8/vnnmDlzJm655Rb89a9/BQCsWLECpaWlePvtt1FeXo5Tp07htttuc/893+8D+dunp06dwqlTp/C73/0ONTU12LBhA8rKyrBkyRL333Ofegp0jLpo6jtJ0rnm5mYJgFReXu5x/6FDh6SLL75YamxslABIW7dudT+2fft2yWg0Sk1NTe771q1bJ5lMJqmzszNcmx6xvO3TadOmSU888YTPv6mtrZUASAcOHHDft2PHDslgMEjffPONqtsb6bztz6FDh0qvv/66R7uUlBSppKREkiTuz0BGjBgh/c///I905swZaciQIdLbb7/tfuyLL76QAEiVlZWSJPH9Lpdrn3rzxz/+UYqLi5O6u7slSeI+laP//tTad5Luznz05zoVmJKS4r6vvb0dd911F37/+9/DYrEM+JvKykpMmDABo0aNct934403wuFwDMhU9aj/Pm1ubsZnn32GtLQ0XHfddRg1ahR++MMfYu/eve6/qaysxPDhw/H973/ffd/s2bNhNBrx2WefhbcDEcbbMXrdddfhrbfeQmtrK5xOJ7Zs2YKOjg7MmDEDAPenL729vdiyZQvOnTsHm82GqqoqdHd3Y/bs2e4248ePx5gxY1BZWQmA7/dA+u9Tb+x2O0wmE2Jj+5YT4z71zdv+1OJ3UsQtLBdOTqcTjzzyCH7wgx8gJyfHff+KFStw3XXX4ZZbbvH6d01NTR4vMgD3/5uamtTb4CjgbZ/+/e9/BwA89dRT+N3vfoerr74ar7/+OmbNmoWamhpcfvnlaGpqQlpamsdzxcbGIiUlRdf71Ncx+sc//hG33347UlNTERsbi6SkJGzduhWXXXYZAHB/9nPkyBHYbDZ0dHRg2LBh2Lp1K6xWK6qrqxEXF4fhw4d7tB81apR7P/H97p2vfdrfP//5TzzzzDMel/y4Twfytz+1+J2k6+Rj2bJlqKmp8fgFvm3bNuzevdvj2jnJ522fOp1OAMCDDz6I++67DwAwadIk7Nq1C6+88gqKi4uFbGs08LY/AWDVqlU4c+YMPvroI1x00UV499138ZOf/AQVFRWYMGGCoK2NXOPGjUN1dTXsdjv+9Kc/4Z577kF5ebnozYpqvvbphQmIw+HATTfdBKvViqeeekrcxkYBX/vz2LFjmvxO0m3ysXz5cvcgvNGjR7vv3717N+rq6gb8ElqwYAFyc3Px8ccfw2KxYP/+/R6Pu0bHezslphe+9ml6ejoADPhVdMUVV6ChoQFA335rbm72eLynpwetra263ae+9mddXR1efPFF1NTU4MorrwQAXHXVVaioqMDvf/97/Pd//zf3Zz9xcXHus0JTpkzBgQMH8MILL+D2229HV1cXzpw54/GeP336tHs/8f3una99+vLLLwMA2trakJeXh+TkZGzduhVDhgxx/y336UC+9mdiYqImv5N0N+ZDkiQsX74cW7duxe7du5Gdne3x+C9/+UscPnwY1dXV7hsArF27Fq+++ioAwGaz4ciRIx4f7jt37oTJZPJ62lHrAu3TsWPHIiMjY8B00b/97W/IysoC0LdPz5w5g6qqKvfju3fvhtPpxLRp09TvRAQJtD/b29sBwGOmEADExMS4zzJxf/rndDrR2dmJKVOmYMiQIdi1a5f7saNHj6KhocF9vZ3vd3lc+xToO+Mxd+5cxMXFYdu2bUhISPBoy30amGt/avY7SfCA17BbunSpZDabpY8//lhqbGx039rb233+DfqNLO7p6ZFycnKkuXPnStXV1VJZWZk0cuRIqbCwMAw9iDxy9unatWslk8kkvf3229JXX30lPfHEE1JCQoJ07Ngxd5u8vDxp0qRJ0meffSbt3btXuvzyy6U777xTRJeECrQ/u7q6pMsuu0zKzc2VPvvsM+nYsWPS7373O8lgMEgffPCB+3m4P/v88pe/lMrLy6X6+nrp8OHD0i9/+UvJYDBIf/7znyVJkqSHHnpIGjNmjLR7927p888/l2w2m2Sz2dx/z/f7QP72qd1ul6ZNmyZNmDBBOnbsmMcx3NPTI0kS92l/gY7R/rTwnaS75AOA19urr77q928ufKElSZKOHz8uzZs3T0pMTJQuuugi6dFHH3VPI9Mbufu0uLhYGj16tJSUlCTZbDapoqLC4/GWlhbpzjvvlIYNGyaZTCbpvvvuk9ra2sLYk8ggZ3/+7W9/k2677TYpLS1NSkpKkiZOnDhg6i33Z5/7779fysrKkuLi4qSRI0dKs2bN8vhQP3/+vPTTn/5UGjFihJSUlCT96Ec/khobGz2eg+93T/726V/+8hefx3B9fb37ObhPvxPoGO1PC99JBkmSpPCcYyEiIiLS4ZgPIiIiEovJBxEREYUVkw8iIiIKKyYfREREFFZMPoiIiCismHwQERFRWDH5ICIiorBi8kFERERhxeSDiIiIworJBxEREYUVkw8iIiIKKyYfREREFFb/H8h9OaeaH7wNAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "\n", "plt.scatter('DayOfYear','Price',data=new_pumpkins)" ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_5488\\3995499251.py:1: UserWarning: Could not infer format, so each element will be parsed individually, falling back to `dateutil`. To ensure parsing is consistent and as-expected, please specify a format.\n", + " day_of_year = pd.to_datetime(pumpkins['Date']).apply(lambda dt: (dt-datetime(dt.year,1,1)).days)\n" + ] + } + ], + "source": [ + "day_of_year = pd.to_datetime(pumpkins['Date']).apply(lambda dt: (dt-datetime(dt.year,1,1)).days)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-0.14878293554077535\n", + "-0.16673322492745407\n" + ] + } + ], + "source": [ + "print(new_pumpkins['Month'].corr(new_pumpkins['Price']))\n", + "print(new_pumpkins['DayOfYear'].corr(new_pumpkins['Price']))" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjIAAAGwCAYAAACzXI8XAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABpK0lEQVR4nO3de1xUZf4H8M+IgCI3QRFUVJSL5rXMJazMBBzM2ry0lbfVdNdL5qZppv5aK7fS3Wpz2y2rDUHb1M1SM1NQvGWJpBYl2TqAlLqCrqCDqSDC8/vjxMjA3IA588zl8369zqvmnDPn+zxnZjhfz3kuGiGEABEREZELaiG7AERERERNxUSGiIiIXBYTGSIiInJZTGSIiIjIZTGRISIiIpfFRIaIiIhcFhMZIiIiclktZRdAbTU1NTh79iwCAgKg0WhkF4eIiIhsIITA5cuX0bFjR7RoYf6+i9snMmfPnkVkZKTsYhAREVETnD59Gp07dza73e0TmYCAAADKiQgMDJRcGiIiIrJFeXk5IiMjDddxc9w+kal9nBQYGMhEhoiIyMVYaxbCxr5ERETkspjIEBERkctiIkNEREQuy+3byBCR+6iurkZVVZXsYhCRHXh7e8PLy6vZx2EiQ0ROTwiBkpISXLp0SXZRiMiOgoODER4e3qxx3pjIEJHTq01iwsLC4Ofnx8EtiVycEAJXr17F+fPnAQARERFNPhYTGSJyatXV1YYkJjQ0VHZxiMhOWrduDQA4f/48wsLCmvyYiY19icip1baJ8fPzk1wSIrK32t91c9q+MZEhIpfAx0lE7scev2smMkREROSy2EaGqA6dDigsBKKjgZgY2aUhIiJreEeGCEBZGZCSAsTFAffdB8TGKq8vXpRdMiIisoSJDBGA8eOBrCzjdVlZwLhxcspDrm/KlCnQaDTQaDTw8fFBdHQ0li1bhhs3bgAA9u3bB41GYxgbp/a1qaWkpKTB8Z9//nmz+9cuSUlJ0Gq1Dd771ltvITg4GGfOnGkQt0OHDhg7dixOnjxp2L9bt24mj79ixQp1Th5RI/DREnk8nQ7IzGy4vrpaWZ+fz8dMbsPBzw5TUlKQlpaGyspKbN++HbNnz4a3tzcWL15s9j0nTpxAYGCg0bqwsLAG+y1YsAAzZ840vB40aBCmT5+O3//+94Z1VVVV6Nu3L9555x3MmDEDAFBUVISFCxdi1apV6Ny5MwoKCgxxAwICkJ+fj+nTp+OBBx7Ad999Z+gSu2zZMqNjA0BAQEAjzwiR/TGRIY9XWGh5e0EBExmXV1am3Harm7FqtcD69UDbtqqF9fX1RXh4OABg1qxZ2Lx5M7Zu3WoxkQkLC0NwcLDVY/v7+8Pf39/w2svLCwEBAYZ4tf72t7/hiSeewPDhw9GtWzdMmzYNw4cPx6RJk0zGjYiIwNKlSzFhwgQUFBQgLi4OAEwem8gZMJEhj9ejh+Xt0dGOKQepyNKzw4wMhxWjdevWKC0tdVg8AJg8eTI2b96MqVOnYsyYMcjLy8P3339v8T21A5Vdv37dEUUkaha2kSGPFxur/OO8/qCSXl7Ket6NcXG1zw6rq43X1312qDIhBLKyspCZmYlhw4ZZ3Ldz586Guy3+/v7o3bt3s+O/++67yMvLw9y5c/Huu++iffv2ZvctLi7Gq6++ik6dOhnuxgDAM888Y1Quf39/HDhwoNllI2ou3pEhgvKEYdw44ycPSUnKenJxEp8dbtu2Df7+/qiqqkJNTQ3Gjx+P559/3uJ7Dhw4YNT2xNvbu9nlCAsLw4wZM7BlyxaMGjXK5D6dO3c2zH/Tv39/fPzxx/Dx8TFsf/rppzFlyhSj93Tq1KnZZSNqLiYyRFCaSWRkKP84Lyhw/DgyHL9GRRKfHd57771YtWoVfHx80LFjR7Rsaf1PblRUlE1tZBqrZcuWFuMfOHAAgYGBCAsLM9mIt127dojmc1ZyQkxkiOqIiXFsIiGpDapnqX12mJVl/HjJy0u57abiB96mTRuXufirlUARqY2JDJFETtIG1f250LPD8+fPo6KiwmhdaGioXR4xNcfly5cbjGfj5+fXoKs4kaOxsS+RJE7QBtVz1D471OmA7duV/2ZkOOVtr7i4OERERBgtR48elV0sLF26tEG5Fi5cKLtYRNAIIYTsQqipvLwcQUFB0Ov1/JcDOZUdO5TpEMzZvh0YMcJx5XFWFRUVKCoqQlRUFFq1aiW7OERkR5Z+37Zev6XekTE1xHbPnj0N2ysqKjB79myEhobC398fY8eOxblz5ySWmMh+OH4NEVHzSX+01Lt3bxQXFxuWL774wrBt3rx5+PTTT7Fx40bs378fZ8+exZgxYySWlsh+OH4NEVHzSW/s27JlS5PDXuv1eqSmpmLdunWGAaTS0tLQq1cvHDp0CHfccYfJ41VWVqKystLwury8XJ2CE9mBC7VBJSJyStLvyOTn56Njx47o3r07JkyYgFOnTgEAjh49iqqqKiQlJRn27dmzJ7p06YLs7Gyzx1u+fDmCgoIMS2RkpOp1IGoqF2qDSkTklKQmMvHx8UhPT0dGRgZWrVqFoqIi3H333YZufj4+Pg3GNejQoYPJKe1rLV68GHq93rCcPn1a5VoQNV9MjNKwl4+TiIgaR+qjpRF1umT069cP8fHx6Nq1Kz788EPDpGWN5evrC19fX3sVkYiIiJyY9EdLdQUHByM2NhYFBQUIDw/H9evXcenSJaN9zp07x6nkiYiICICTJTI///wzCgsLERERgYEDB8Lb2xu7d+82bD9x4gROnTqFhIQEiaUkIiIiZyH10dKCBQvwwAMPoGvXrjh79iyee+45eHl5Ydy4cQgKCsK0adPw1FNPISQkBIGBgZgzZw4SEhLM9lgiIiIizyL1jsyZM2cwbtw4xMXF4eGHH0ZoaCgOHTqE9u3bAwBef/113H///Rg7diyGDBmC8PBwbNq0SWaRiYhsNmXKFGg0GsycObPBttmzZ0Oj0WDKlCmGfUeNGtXgvStWrDB635YtW6DRaAyv9+3bB41G0+AxPKD09PT19TV0kKjd19Kyb98+PP/88xgwYECD4/3444/QaDTIzc01ebz27dvjvvvuw7Fjx0yeh/pLSkqKDWeRyDKpicyGDRtw9uxZVFZW4syZM9iwYQN61BnutFWrVnjzzTdRVlaGK1euYNOmTWwfQ0QuJTIyEhs2bMC1a9cM6yoqKrBu3Tp06dLF4ntbtWqFP//5z7h48WKj437xxRe4du0aHnroIaxZswYAMHjwYKMBSB9++GGkpKQYrRs8eHCjY504cQLFxcXIzMxEZWUlRo4cievXrxvtUz9OcXEx1nPAJLIDp2ojQ0SkJp1OmePKkRNy3nbbbYiMjDS6m7xp0yZ06dIFt956q8X3JiUlITw8HMuXL2903NTUVIwfPx6TJk3C6tWrAQA+Pj4IDw83LK1bt4avr6/ROh8fn0bHCgsLQ3h4OG677TbMnTsXp0+fxn/+8x+jferHCQ8PR1sOmER2wESGiNxeWRmQkgLExSkTdcbGKq+bcKOjSaZOnYq0tDTD69WrV+Oxxx6z+j4vLy+8/PLL+Pvf/44zZ87YHO/y5cvYuHEjJk6ciOTkZOj1ehw4cKBJZW8MvV6PDRs2AECTEiKipmAiQ0Rub/x4ICvLeF1WljI9hCNMnDgRX3zxBX766Sf89NNP+PLLLzFx4kSb3jt69GgMGDAAzz33nM3xNmzYgJiYGPTu3RteXl549NFHkZqa2tTiW9W5c2f4+/sjODgY69atw69//WujCYABYNu2bfD39zdaXn75ZdXKRJ5D+lxLRERq0umM57KqVV2trM/PV39E5fbt22PkyJFIT0+HEAIjR45Eu3btbH7/n//8ZwwbNgwLFiywaf/Vq1cbJUoTJ07EPffcg7///e8ICAhodPmtOXDgAPz8/HDo0CG8/PLLePvttxvsc++992LVqlVG60JCQuxeFvI8TGSIyK0VFlreXlDgmKkhpk6diieeeAIA8OabbzbqvUOGDIFWq8XixYsNvZzMOX78OA4dOoSvvvoKzzzzjGF9dXU1NmzYgN///vdW4wUGBkKv1zdYX9szKigoyGh9VFQUgoODERcXh/Pnz+ORRx7B559/brRPmzZtEB0dbTU2UWPx0RJZJaOBpKy4supK6qnTEdIkR11bU1JScP36dVRVVUGr1Tb6/StWrMCnn35qcdJcQGnkO2TIEHz77bfIzc01LE899ZTNj5fi4uJw5swZnDt3zmj9119/jVatWlnsbTV79mzk5eVh8+bNNsUiai4mMmSWrAaSMuLKbgxK6omNBbRawMvLeL2Xl7LeURN1enl54YcffsDx48fhVb8wNujbty8mTJiAN954w+w+VVVVeP/99zFu3Dj06dPHaPnd736HnJwcfP/991ZjabVaxMXFYdy4cTh48CBOnjyJjz76CM8++yyefPJJi+X38/PD73//ezz33HMQQhjWV1ZWoqSkxGi5cOFC404CkQlMZMgsWQ0kZcSV3RiU1LV+PZCUZLwuKUlZ70iBgYEIDAxs8vuXLVuGmpoas9u3bt2K0tJSjB49usG2Xr16oVevXjbdlWnZsiV27tyJLl26GJKi5557Dk8++ST+9Kc/WX3/E088gR9++AEbN240rMvIyEBERITRctddd1k9FpE1GlE3ZXZD5eXlCAoKgl6vb9YfEE+j0yl3JyxtV+NfsjLiyqor2aaiogJFRUWIiopCq1atmnWs/HylTUx0ND9TImdg6fdt6/Wbd2TIJFsaSLpLXFl1JceLiQFGjGASQ+ROmMiQSbIaSMqI6yyNQYmIqPGYyJBJshpIyojrLI1BiYio8ZjIkFmyGkjKiOssjUGJiKhxOCAemdW2LZCR4fgGkjLiyqprLZ1OaavDRqhERI3DRIasiomRc3GVEdfRMcvKlK7fdYfQ12qVO0GcGJiIyDo+WiKSiOPXEBE1DxMZIklqJzOsrjZeX3cyQyIisoyJDJEkHL/GNFnzXen1wNmzQHm542JWVChxKyocF5PI3bCNDJEkHL/GmLn2QmvWqBu3ogL4z3+AGzdurmvZEujVC/D1VSfmjRvAyZPGSVNgINC9uxKbiGzHOzJEknD8GmPm2gvNn69u3PpJDKC8/uGH5h97ypQp0Gg0DZa9ewtQXg6kpS1HfLwX3n//FZSXK8lNrfT0dAQHBxu9rn1/ixYtEBERgUceeQSnTp2CEAJJSUkmZ9V+6623EBwcjKSkJJNlqV26detmeM/y5cvh5eWFV155pcHx6pfL1jqnpKQ05RQSWcVEhkgijl+jsNRe6IsvgKoqdeLq9Q2TmFo3btjnMVNKSgqKi4sNS1FRMQIDowAAn366GpMmLcTWrasBKPEsPWYKDAxEcXEx/vvf/+Ljjz/GiRMn8Jvf/AYajQZpaWnIycnBO++8Y9i/qKgICxcuxN///nd8/PHHRuUAgLS0NMPrw4cPG963evVqLFy4EKtXr7ZLnYuLi7He077U5DBMZIgaKTMTWLYM2LWr+ceqHb9GpwO2b1f+m5HheV2vrbUXMpdsNJauVIcd+TuQX6o0wLlyxfL+P//c/Ji+vr4IDw83LG3bhsPLywtHj+5HZeU1zJy5DFeulOPbbw8CACorzR9Lo9EgPDwcERERGDx4MKZNm4avvvoK5eXliIyMxN/+9jcsWLAARUVFEEJg2rRpGD58OCZNmoSgoCCjcgBAcHCw4XX79u0BAPv378e1a9ewbNkylJeX4+DBg82us1JvD/tSk8PwaSyRjQoLgfh4oLT05rrQUODwYSAqqnnHljVWj7Ow1l6oue1Gyq6VYfzH45FZeLMBjraHFu8krwdg/gLr79+8uKbUtrvZujUVw4ePQ8uW3hg+fBy2bk1F//6DbW6Xc/78eWzevBleXl7w+uX55OTJk7F582ZMnToVY8aMQV5eHr7//vtGlS81NRXjxo2Dt7c3xo0bh9TUVAwePLhRxyByJN6RIbJR/SQGUF4PGiSnPO7EUnuhu+4CvL2bd/zxH49H1knjBjhZJ7MwY9c4s0lSy5ZKA9zm2rZtG/z9/Q3LpEm/QYsW5di9+yOMGDERADBixERkZX0IL6+f0aqV+WPp9Xr4+/ujTZs26NChA/bu3YvZs2ejTZs2hn3effdd5OXlYe7cuXj33XcNd1psUV5ejo8++ggTJyrlmjhxIj788EP83MhbU/Xr7O/vj5dffrlRxyCyFRMZIhtkZjZMYmqVltrnMZOnM9de6LXXmndcXakOmYWZqBbGDXCqRTUyCzPh3SG/QTJT22vJHu69917k5uYaljfeeAOHDq1H1649EBvbHwAQFzcAnTp1xeHD/7Z4rICAAOTm5uLIkSN47bXXcNttt+Gll14y2icsLAwzZsxAr169MGrUqEaVdf369ejRowf691fKNWDAAHTt2hX//rflctVXv865ubmYOXNmo45BZCs+WiKyQU6O5e3Z2UBysmPK4q7MzXdVUaF0zW6qwjLLDXBO/VyAEQNiUF6utInx97fPnZhabdq0QXS9vvTp6anIz/8ed9xx809wTU0N1qxZjenTp5k9VosWLQzH6tWrFwoLCzFr1iy8//77Rvu1bNkSLZvwPC41NRXff/+90XtramqwevVqTJtmvlz1maozkVqYyBDZID7e8vaEBMeUwxPYu71QjxDLDXCiQ5QLbmCgfRMYc44dO4YjR45g3759CAkJMawvKyvD0KFD8Z///Ac9e/a06ViLFi1Cjx49MG/ePNx2221OUy4iR2IiQ2QDrVZp2Gvq8VJoKO/GOLPY0Fhoe2iRdTLL6PGSl8YLSd2TEBPq2FbWqamp+NWvfoUhQ4Y02DZo0CCkpqaaHL/FlMjISIwePRpLly7Ftm3bHFau6upq5ObmGu3j6+uLXr88j6usrERJSYnR9pYtW6Jdu3bNKiORKWwjQ2Sjw4eVpKWu2l5L5NzWj12PpO7GDXCSuidh/VjHjm1y/fp1/Otf/8LYsWNNbh87dizWrl2LqkYMnDNv3jx89tln+OqrrxxWrp9//hm33nqr0fLAAw8Y9s/IyEBERITRctdddzW5fESWaIQQQnYh1FReXo6goCDo9XoEOuK+Mbm9XbuUNjEJCbwT4wgVFRUoKipCVFQUWlnq0mOD/NJ8FJQVIDok2uF3YoioIUu/b1uv305zR2bFihXQaDSYO3euYd3QoUMbDHPNlu8kW3IysHQpkxhXFBMagxExIzw+ieFkleROnKKNzOHDh/HOO++gX79+Dbb9/ve/x7Jlywyv/fz8HFk0IiK3wckqyR1JvyPz888/Y8KECfjnP/9pcghrPz8/o2Gu+XiIiKhp6icxABpMVknkaqQnMrNnz8bIkSORVH8krF988MEHaNeuHfr06YPFixfj6tWrFo9XWVmJ8vJyo4WIyNNVVJifBNPaZJVEzkzqzcQNGzbg66+/Npp1ta7x48eja9eu6NixI7777js888wzOHHiBDZt2mT2mMuXL8cLL7ygVpGJiFySpckoa7c3sy01kRTSEpnTp0/jySefxK5du8z2RJg+fbrh//v27YuIiAgkJiaisLAQPczMMrd48WI89dRThte1s8ISEXkya5NR2jpZJZGzkZbIHD16FOfPnzcajbK6uhqff/45/vGPf6CystIwo2ut+F+GVy0oKDCbyPj6+sKXv0giIiOtWikNe009XgoM5N0Ycl3SEpnExEQcO3bMaN1jjz2Gnj174plnnmmQxAAwjCQZERHhiCISEbmV7t3N91oiclXSEpmAgAD06dPHaF2bNm0QGhqKPn36oLCwEOvWrcN9992H0NBQfPfdd5g3bx6GDBlisps2ERFZ1rIlEBurNOytrFQeJ/FODLk6px05wMfHB1lZWVi5ciWuXLmCyMhIjB07Fs8++6zsohERubRWrZjAkPuQ3v26rn379mHlypUAlMnQ9u/fj9LSUlRUVCA/Px9/+ctfOI4MEbmEKVOmmB2NfPbs2dBoNJgyZYrR/qNGjQKgtBccPHgwxowZY/Q+vV6PyMhI/N///R8A4Mcff2ww+nntcujQIQBAenq6YZ2Xlxfatm2L+Ph4LFu2DHq93mId9u3bB41Gg0uXLjXY1q1bN8Pf69rXpsqxYsUKo7LWNhGoX/aQkBDcc889OHDggFGc559/HgMGDDBbxurqarz++uvo27cvWrVqhbZt22LEiBH48ssvG+x77do1PPfcc4iNjYWvry/atWuH3/zmN/j+++8bxNRoNEhJSWlwjFdeeQUajQZDhw41WZ6jR48anf/6EhMTjT7XM2fOwMfHp8ETilp1z1FgYCAGDRqETz75xGif9PR0BAcHG7029VnUdqwx952pXZ5//nmrn5ep71p1dTVWrFiBnj17onXr1ggJCUF8fDzee+89k3WzF6dKZIiI3ElkZCQ2bNiAa9euGdZVVFRg3bp16NKli9n3eXl5IT09HRkZGfjggw8M6+fMmYOQkBA899xzRvtnZWWhuLjYaBk4cKBhe2BgIIqLi3HmzBkcPHgQ06dPx9q1azFgwACcPXvWbvVdtmxZg3LMmTPH4ntqy/7555+jY8eOuP/++3Hu3Dmb4gkh8Oijj2LZsmV48skn8cMPP2Dfvn2IjIzE0KFDsWXLFsO+lZWVSEpKwurVq/Hiiy9Cp9Nh+/btuHHjBuLj4xskHhEREdi7dy/OnDljtH716tUWP7uBAweif//+WL16dYNtP/74I/bu3Ytp06YZ1qWnp+Phhx9GeXk5cnJyTB4zLS0NxcXFOHLkCO6880489NBDDdqY1lf7mdddfvrpJwAwWrdy5coG+y5YsMDscS1911544QW8/vrr+NOf/oTjx49j7969mD59uslE2J6c9tESEZH96QAUAogGoP58S7fddhsKCwuxadMmTJgwAQCwadMmdOnSBVFRURbfGxsbixUrVmDOnDkYNmwYvvrqK2zYsAGHDx+Gj4+P0b6hoaEIDw83eyyNRmPYHhERgV69euGBBx5A7969sXDhQvzrX/9qZk0VAQEBFsthSm3Zw8PDsWTJEmzYsAE5OTn49a9/bfW9H374IT766CNs3brVaPbtd999F6Wlpfjd736H5ORktGnTBitXrkR2dja++eYb9O/fHwDQtWtXfPzxx4iPj8e0adOQl5cHjUYDAAgLC8PAgQOxZs0awx2wgwcP4sKFC/jNb36D48ePmy3XtGnT8Oyzz2LlypVG0+qkp6cjIiLCcKdHCIG0tDS89dZb6Ny5M1JTUw29c+sKDg42nKM//elP+Nvf/oa9e/eib9++ZstQ9zOvr+76oKAgk/teuHDB5Hstfde2bt2Kxx9/HL/5zW8M62rPtZp4R4aIPEAZgBQAcQDuAxD7y+uLqkeeOnUq0tLSDK9Xr16Nxx57zKb3zpkzB/3798ekSZMwffp0LF261G4XhrCwMEyYMAFbt25FdXW1XY7ZHNeuXcPatWsBoEGiZs66desQGxtrlMTUmj9/PkpLS7Fr1y7DvsnJyQ3OX4sWLTBv3jwcP34c3377rdG2qVOnIj093fB69erVmDBhgtXyTZgwAZWVlfjoo48M64QQWLNmDaZMmWLolbt3715cvXoVSUlJmDhxIjZs2IArV66YPe6NGzeQmpoKwPZz5Ejh4eHYs2cP/ve//zk0LhMZIvIA4wFk1VuXBWCc6pEnTpyIL774Aj/99BN++uknfPnll5g4caJN79VoNFi1ahV2796NDh06YNGiRSb3Gzx4MPz9/Y0WW/Ts2ROXL19GaWmpxf06d+7c4PinTp1qsN8zzzzTYL/6bV7Mlb1NmzZ49dVXMXDgQCQmJtpUfp1Oh169epncVrtep9M1et9a999/P8rLy/H555/jypUr+PDDDzF16lSr5QoJCcHo0aONHi/t3bsXP/74o1ESm5qaikcffRReXl7o06cPunfvjo0bNzY43rhx4+Dv7w9fX1/MmzcP3bp1w8MPP2yxDHq9vsFnMWLECKtlt8bSd+2vf/0r/ve//yE8PBz9+vXDzJkzsWPHjmbHtIaPlojIzekAZJpYX/3L+nyo+Zipffv2GDlyJNLT0yGEwMiRI9GuXTub37969Wr4+fmhqKgIZ86cQbdu3Rrs8+9//9vsRdoSIQQAGB6nmHPgwAEEBAQYrTPV2PXpp582asAMAJ06dbJ47H//+9/o2bMn8vLysHDhQqSnp8Pb29t64X9RWwd77wsA3t7emDhxItLS0nDy5EnExsbaPPzH1KlTodVqDSPRr169Gvfccw+io6MBAJcuXcKmTZvwxRdfGN4zceJEpKamNjiHr7/+OpKSknDy5EnMmzcPb7zxBkJCQizGDwgIwNdff220rnXr1jaV3RJL37VbbrkFeXl5OHr0KL788kt8/vnneOCBBzBlyhRVG/wykSEiN1doZXsB1G4vM3XqVDzxxBMAgDfffNPm9x08eBCvv/46du7ciRdffBHTpk1DVlZWg8QjMjLScIFsjB9++AGBgYEIDQ21uF9UVJRRrxgAaNmy4eWjXbt2jS5HZGQkYmJiEBMTgxs3bmD06NHIy8uzaYT22NhY/PDDDya31a6PjY1t9L51TZ06FfHx8cjLy7PpbkytxMREdOnSBenp6Xj66aexadMmvPPOO4bt69atQ0VFhVGbGCEEampqoNPpjMoSHh6O6OhoREdHIy0tDffddx+OHz+OsLAws/FbtGjRpO+ENda+ay1atMCgQYMwaNAgzJ07F//6178wadIk/N///Z/VdmFNxUdLROTmTE9ncpP9/9jXl5KSguvXr6Oqqgpardam91y9ehVTpkzBrFmzcO+99yI1NRVfffUV3n77bbuU6fz581i3bh1GjRqFFi2c41Lw0EMPoWXLlnjrrbds2v/RRx9Ffn4+Pv300wbbXnvtNYSGhiI5Odmwb1ZWVoN2MDU1NXj99ddxyy23mGx/1Lt3b/Tu3Rt5eXkYP368zXVp0aIFHnvsMaxZswbr1q2Dj48PHnroIcP21NRUzJ8/H7m5uYbl22+/xd13322yx1OtX/3qVxg4cCBeeuklm8si0y233AIAFtv+NBfvyBCRm4sFoIXSJqZuo1YvAElwRO8lLy8vw7/6TU2/YsrixYshhDCMw9KtWze8+uqrWLBgAUaMGGH0iKm0tBQlJSVG7w8ODjaMGyKEQElJCYQQuHTpErKzs/Hyyy8jKCjIcHx7uHz5coNy+Pn52Tz+l0ajwR/+8Ac8//zzmDFjhqHHz7Vr1wzjmdQKCAjAo48+io0bN2Ly5Ml45ZVXkJiYiPLycrz55pvYunUrNm7ciDZt2gAA5s2bh08++QQPPPAAXnvtNcTHx+PcuXN4+eWX8cMPP5i801Vrz549qKqqanBXyprHHnsMy5Ytw5IlSzBu3DjDo53c3Fx8/fXX+OCDD9CzZ0+j94wbNw7Lli3Diy++aPKuFwDMnTsXo0ePxsKFC80+uqv9zOsLCwtrVuJq6bv20EMP4c4778TgwYMRHh6OoqIiLF68GLGxsQ3qaU/OkYYTEalqPZSkpa6kX9Y7RmBgoM0X9P379+PNN99EWlqaUffdGTNmYPDgwZg2bZpRe4+kpCREREQYLXXHUCkvL0dERAQ6deqEhIQEvPPOO5g8eTK++eYbu85dt3Tp0gblWLhwYaOOMXnyZFRVVeEf//iHYZ1Op8Ott95qtMyYMQMajQYffvghlixZgtdffx1xcXG4++678dNPP2Hfvn2GAQYBoFWrVtizZw9++9vfYsmSJYiOjkZKSgq8vLxw6NAh3HHHHWbL1KZNm0YnMQDQpUsXJCUl4eLFi0aPpVJTU3HLLbeYvLiPHj0a58+fx/bt280eNyUlBVFRURbvytR+5vWX8+fPN7oedVn6rmm1Wnz66ad44IEHEBsbi8mTJ6Nnz57YuXOn2aTMHjSisa2fXEx5eTmCgoKg1+s5KjCRC6qoqEBRURGioqIMdxiaLh9KmxjHjCNDRJZZ+n3bev3moyUi8iAxYAJD5F74aImIiIhcFhMZIiIicllMZIiIiMhlMZEhcgI6HbBjB5CfL7skxl56CRg2DLBjD90mx1S7X0JxMXDihPJfR6moAPR65b+OJCOurLqSc7PH75q9logkKisDxo8HMuuMoK/VAuvXA23byivXnj1AUhJQ96+DRgPs2wcMGeLomNVo316HsLAwqyPQNkV5uZJI1hcXB9Qbld9ubtwATp5UYtcKDAS6dwdU7KUqJa6supJrKC0txfnz5xEbG9tgjCVbr99MZIgkSkkBsrKAupMPe3kpF/SMDHnlatHCOKGopdEANTWOj/nf/xbj0qVLCAsLg5+fn9W5gRojL8/8tj597BbGSFERYGqg0zZtAJVGcZcWV1ZdybkJIXD16lWcP38ewcHBJsczYvdrIien0xnfialVXa2sz88HYiT0FH7pJdMJBaCsX7ECMDMJs2ox16wJx+TJaPZgXvXp9cClS+a35+YCQUF2DYmqKuDsWdPbLlxQtjdizkSnjiurruQ6goODER4e3qxjMJEhkqTQylyGBQVyEpnduy1v37nT/omM9ZgaLFoUgbCwMFRVVdkt7uTJQE6O+e3x8cCaNXYLBwD4/HNg5kzz2999V53HdzLiyqoruQZvb2+bp+ywhIkMkSQ9rMxlqMLEtTZJTAT27jW/ffhweTG9vLzs8oevVr9+wIcfmt8+cybQ7MGE6+nWDfjpJ/Pbo6LsH1NWXFl1Jc/CNjJEErGNjNyYsuLK+txlxHXW7zg5P1uv3+x+TSTR+vXKH/S6kpKU9TLt26dcyOuq7bXkTjFlxZX1ucuI66zfcXIfvCND5ATy85U2MdHRctrFmLNihdImZvhw+7eLcaaYsuLK+txlxHXW7zg5L3a//gUTGSIiItfDR0tERETk9pjIEBERkctiIkNEREQui4kMERERuSwmMkREROSymMgQERGRy3KaRGbFihXQaDSYO3euYV1FRQVmz56N0NBQ+Pv7Y+zYsTh37py8QhJBmexxxw5lXAxHmTcP6N8fWLDAcTEBOXX1JKmpwKRJQHq6+8fNzASWLQN27XJcTPIQwgl89dVXolu3bqJfv37iySefNKyfOXOmiIyMFLt37xZHjhwRd9xxhxg8eHCjjq3X6wUAodfr7Vxq8jSlpUJotUIoA9ori1YrRFmZejE3bzaOV7ts26ZeTCHk1NWTHDkihLe38fn19hbim2/cL25BgRChocYxQ0OFOHlSvZjkHmy9fksfEO/nn3/GbbfdhrfeegsvvvgiBgwYgJUrV0Kv16N9+/ZYt24dHnroIQDAf/7zH/Tq1QvZ2dm44447bDo+B8Qje5ExZ0z9ofPrUvOXy/lx1OXjA5iaxNvbG7h+3b3itmsHlJY2XB8aCly4oE5Mcg8uMyDe7NmzMXLkSCTVm4zj6NGjqKqqMlrfs2dPdOnSBdnZ2WaPV1lZifLycqOFqLl0OuXWeN0LO6C8zsxU59HLvHmWt6v1mElGXT1JaqrpZAJQ1qv1uEdG3MxM00kMoKznYyayB6mJzIYNG/D1119j+fLlDbaVlJTAx8cHwcHBRus7dOiAkpISs8dcvnw5goKCDEtkZKS9i00eqLDQ8vaCAvvH3LPH8na1LgIy6upJrE1GuXu3+8TNybG83cK/SYlsJi2ROX36NJ588kl88MEHaNWqld2Ou3jxYuj1esNy+vRpux2bPFePHpa3R0fbP+awYZa3JyfbPyYgp66eZOhQy9sTE90nbny85e0JCfaPSZ5HWhuZLVu2YPTo0fDy8jKsq66uhkajQYsWLZCZmYmkpCRcvHjR6K5M165dMXfuXMyzdt/9F2wjQ/bCNjJsI2MvbCPDNjJkndO3kUlMTMSxY8eQm5trWG6//XZMmDDB8P/e3t7YXed+54kTJ3Dq1CkkMI0nCdavVy7kdSUlKevVsm1b49bbi4y6epKvvlKSh7q8vZX17hb38GElaakrNFRZT2QP0nst1TV06FBDryUAmDVrFrZv34709HQEBgZizpw5AICDBw/afEzekSF7y89X2olERwMxMY6JuWCB0iYmORl49VXHxATk1NWTpKcrbVMSE4EpU9w77q5dSpuYhAT1HouSe7H1+u3UiUxFRQXmz5+P9evXo7KyElqtFm+99RbCw8NtPiYTGSIiItfjkomMGpjIEBERuR6nbyNDRERE1FxMZIiIiMhlMZEhIiIil8VEhoiIiFwWExkiIiJyWUxkiIiIyGW1lF0AV6XTKZPrecJAYbLqmpmpTDrnyAG0ZMSUGdcZyfq+edJvmsidMJFppLIyYPx45cJTS6tVhm5v21ZeudQgq66Fhcpkc3XnZ6kd0jwqyn1iyozrjGR93zzpN03kjjggXiN50mR6suoqY5I5WRPbcUK9m2R93zzpN03kSjggngp0OuVfbXX/4AHK68xMZV4adyGrrpmZpi/sgLJ+1y73iCkzrjOS9X3zpN80kbtiItMIhYWWtxcUOKYcjiCrrjk5lrdnZ7tHTJlxnZGs75sn/aaJ3BUTmUbo0cPy9uhox5TDEWTVNT7e8vaEBPeIKTOuM5L1ffOk3zSRu2Ii0wixsUojQC8v4/VeXsp6d+rpIKuuWq3SPsSU0FB1evTIiCkzrjOS9X3zpN80kbtiItNI69crjQDrSkpS1rsbWXU9fLjhBb62J487xZQZ1xnJ+r550m+ayB2x11IT5ecrz889YcwJWXXdtUtpJ+LIsVVkxJQZ1xnJ+r550m+ayBXYev1mIkNEREROh92viYiIyO0xkSEiIiKXxSkKiMgszj9ERM6Od2SIqIGyMmXo/rg44L77lG7KKSnAxYuyS0ZEZIyJDBE1MH68Mv9QXVlZwLhxcspDRGQOExkiMsL5h4jIlTCRIat0OmDHDsdfwF56CRg2DFixwrliqlEua8ecNw/o3x9YsMB+Mc2RPf9QaiowaRKQnq5uHGeIK+M7Dsj7TROpQrg5vV4vAAi9Xi+7KC6ntFQIrVYI4Oai1QpRVqZu3N27hdBojONqNELs3y83phrlsnbMzZuNt9Uu27Y1q7oWnThhOmbtotOpE/fIESG8vY1jeXsL8c036sSTGVfGd1wIeb9poqaw9frNAfHIrJQUpV1E3UcMXl7K8O0ZGerFbdFC+RNbn0YD1NTIi6lGuawdU6Mx/141f7ky4vr4AFVVDdd7ewPXr6sTU1ZcGd9xQN5vmqgpOCAeNYusdhIvvWT+QimEOrfgbYmpRrmsHfPOOy2/X63HTC+9ZHm7Gp9BaqrpZAJQ1qv1uEdGXBnfcYBtn8h9MZEhk2S1k9i92/L2nTvlxFSjXNaOmZtrefuuXY2PaQsZn8G+fZa3WyuTK8WVcX4B+W2fiNTCRIZM6tHD8vboaHXiJiZa3j58uJyYapTL2jEHDLC8Xa3JJWV8BkOHWt5urUyuFFfG+QXk/aaJ1MY2MmQW28h4bhsZGZ8B28iwjQxRXWwjQ822fr3yB66upCRlvZr27Wt4AddorD8GUDumGuWydsxt20y/z9x6e5HxGXz1lZI81OXtraxXk4y4Ms4vIO83TaQm3pEhq/Lzlefnjp5vZ8UKpb3A8OHAokXOE1ONclk75oIFSpuY5GTg1VftE9Me5VJDerrSjiQxEZgyxTExZcWVcX4Beb9posaw9fotddLIVatWYdWqVfjxxx8BAL1798bSpUsxYsQIAMDQoUOxf/9+o/fMmDEDb7/9tqOL6tFiYuT8sVu0yLF/3G2N2b490KkTEB7uuLj1e5o4ioy4//2vspSUODbulCmOTZwAOd9xQM5vWtYEpJz41P1JvSPz6aefwsvLCzExMRBCYM2aNXjllVfwzTffoHfv3hg6dChiY2OxbNkyw3v8/PwadWeFd2TIXo4eBRISjNtT1D6CsNYwt6m2bAFGj264fts2YORIdWICwJ49yiOHun8dah99DBniPjFJfWVlytxdmZk312m1yuOstm3dLy7Zj63Xb6d7tBQSEoJXXnkF06ZNw9ChQzFgwACsXLmyycdjIkP2IqNRqCc19pXVAJbUJauBMRs2uz6Xa+xbXV2NDRs24MqVK0hISDCs/+CDD9CuXTv06dMHixcvxtWrVy0ep7KyEuXl5UYLUXPJGDht3jzL29UcEM8ZByUk1yNrED4O/udZpCcyx44dg7+/P3x9fTFz5kxs3rwZt9xyCwBg/Pjx+Ne//oW9e/di8eLFeP/99zFx4kSLx1u+fDmCgoIMS2RkpCOqQW5OxsBpe/ZY3u5OA+LJGiSO1CVrED4O/udZpCcycXFxyM3NRU5ODmbNmoXJkyfj+PHjAIDp06dDq9Wib9++mDBhAtauXYvNmzej0MK3dPHixdDr9Ybl9OnTjqoKuTEZA6cNG2Z5uzsNiCdrkDhSl6xB+Dj4n2dxujYySUlJ6NGjB955550G265cuQJ/f39kZGRAq9XadDy2kSF7YRsZtpGhxmMbGWoql2sjU6umpgaVlZUmt+X+MvlMRESEA0tEpJAxcJonDYgna5A4UpesQfg4+J8HERItWrRI7N+/XxQVFYnvvvtOLFq0SGg0GrFz505RUFAgli1bJo4cOSKKiorEJ598Irp37y6GDBnSqBh6vV4AEHq9XqVaONZ77wkxcaIQaWnuHVOWEyeE2L5dCJ3O/D5TpgjRrZsQU6c6Lu7UqfaPaYv584Xo10/5rzvHFEKIyZMdf45lxBRCiLlzHX+OX3pJiHvvFWL5csfFlBmXms/W67fURGbq1Kmia9euwsfHR7Rv314kJiaKnTt3CiGEOHXqlBgyZIgICQkRvr6+Ijo6Wjz99NONTkjcJZE5ckQIb28hlJvvyuLtLcQ337hXTFlKS4XQao3rqtUKUVZ2cx81zoe1uLaUSw0y4sqq69q1xjFrlw0b3CumEEJs3mw67rZt6sWU9XfEk/5+uStbr99O10bG3tyljYyM9hmyJvGTwZbn6WqcD2txPal9gay6ymiHJKvtk4y4njQZKNmXy7aRoYZkjGEiI6Ystow5ocb5sBZ3507PGYND1rgf1qYkmDbNPWICcsYlkvV3xJP+fhETGZcgYwwTGTFlsWXMCTXOh7W4hw5Z3u5OY3DIGvej3lRuDVgby8dVYtpyXDXGJZL1d8ST/n4RExmXIGMMExkxZbFlzAk1zoe1uHfcYXm7O43BIWvcj3vusbzd2lg+rhLTluOqMS6RrL8jnvT3i5xwHBl7YxsZ14opC9vINK5c7hITYBsZteOyjQw1FdvIuBkZY5jIiCmLLWNOqHE+rMX1pDE4ZNV1w4bGrXfVmICccYlk/R3xpL9fno53ZFxMerryfDcx0XqjQVeOKUt+vtIeIzoaiIkxvU9yMnD4MBAfrzREtYedO5U2MQkJpm/xP/aY8tx/2DClIaOjjBkDfPklcPfdwEcfOSamGufXFtHRQFEREBXluLl4evdWGjrHxgLff++YmABw223A8eNK/KNHHRNT1t8RT/r75W5svn6r3hFcMncZR4bkU2MMDmtjp8gY90MIOeOcvPWW6ZjvvadeTCHk1FXW5yorLlFTcByZX7jbHRmSR432BdbahXhSWwrWVd2YMuMSNQXbyBDZkRpjcFgbO8XabXA1xv0A5IxzMnq05e0PPWT/mICcusoYz0VmXCK1MZEhsoEaY3BYGzvF2ngjaoz7YUtcNcY5OXjQ8vYDB+wfE5BTVxnjuciMS6Q2JjJENlBjDA5rY6dYG29EjXE/bImrxjgngwdb3n733faPCcipq4zxXGTGJVJbs9rIXL9+HUVFRejRowdatmxpz3LZDdvIkL2wjYy6cVlXdWPKjEvUFKq2kbl69SqmTZsGPz8/9O7dG6dOnQIAzJkzBytWrGhaiYmcnBpjcFgbO0XGuB+AnHFO3nuvcevtRUZdZX2usuISqaopXaL+8Ic/iIEDB4oDBw6INm3aiMLCQiGEEFu2bBEDBgxoyiFVw+7XzXfihBDbtwuh03lGXGvmzxeiXz/lv/ai01muqxoxbTF1qhDduin/dZSxY4UIC1P+60gy6iojphDyvk9EjaFq9+uuXbvi3//+N+644w4EBATg22+/Rffu3VFQUIDbbrsN5eXl9s+4moiPlpqurAwYP954UDKtVrlb0Lat+8UlchR+x4msU/XR0v/+9z+EhYU1WH/lyhVoLD2EJZcyfrzSfqOurCxg3Dj3jEvkKPyOE9lPkxKZ22+/HZ999pnhdW3y8t577yEhIcE+JSOprI1xkp/vXnGJHIXfcSL7alJXo5dffhkjRozA8ePHcePGDfztb3/D8ePHcfDgQey3NjADuQRrY5wUFJifi8gV49qTTqfUw9J8TeS53OE7TuRMmnRH5q677kJubi5u3LiBvn37YufOnQgLC0N2djYGDhxo7zKSBNbGOImOdq+49lBWpnSnjosD7rtPmQgwJQW4eFF2yciZuPJ3nMgZca4lMsvaGCfuFre5XLXc5Hj8rhBZp2pj3+3btyOzbnP7X2RmZmLHjh1NOSQ5IWtjnLhb3OZguwdqDFf8jhM5qyYlMosWLUJ1/b/YAIQQWLRoUbMLRc6hbVvlX4c6HbB9u/LfjAz1u4fKitsctrR7IKrlit9xImfVpMa++fn5uOWWWxqs79mzJwr4F9vtxMTIaXwoI64tDXV1pToUlhUiOiQaMaHKTmq3ezAV0xFkxPWkup7U63D4UiFalkcjBo6ra+YRHXLyC5EQG43kgWxZTK6tSYlMUFAQTp48iW7duhmtLygoQJs2bexRLiKHsmWAsrJrZRj/8XhkFt7cSdtDi/Vj1yM2ti20WvPtHpqakFmK2ba1ev98lxHXk+paeLYM8X8Zj9K2v8TUAaHva3H4mfWIilCvrrLiEqmpSY+WHnzwQcydOxeFde6nFxQUYP78+fj1r39tt8IROYotA5SN/3g8sk4a75R1MgvjPlZ2stTuQacDduy42Vam/muz5bISUy0y4npSXeP/Mh6lQcYxS4OyMOjP6tZVVlwiNTWp15Jer0dKSgqOHDmCzp07AwDOnDmDu+++G5s2bUJwcLC9y9lk7LVE1uh0SpdpS9tFiA5x/zC/k+4JneFxRH6+0iYmOhoIDW14pyc0FCgtvfna3ND0ulLbY9qTjLieVNfMIzqkfGY+5s77dao87pEVl6ipVO21FBQUhIMHD+Kzzz7D448/jvnz52P37t3Ys2ePUyUxRLawpaFuYZnlnQrKbrYNi4kBRoxQ/mvqTk/dJAYwPzR9Y2Lak4y4nlTXnHzLMbN16tRVVlwitTWpjQygTEswfPhwDB8+3J7lIXI4WxrqihDLO0WHNGzNW9sl25q6XbTrtqXp0YSY9iAjrifVNT6mB6Azvz0hVp26yopLpDabE5k33ngD06dPR6tWrfDGG29Y3PcPf/hDswtG5CixsbChoW4stD20yDqZhWpxcycvjReSuieZfPxg7U5PffWHpo8NbXxMe5AR15Pqqr09FqH/0iptVVrU+cLVeCFUn6Ta4x1ZcYnUZnMbmaioKBw5cgShoaGIiooyf0CNBidPnrRbAZuLbWTIFhcvKo93LPVaunjtIsZ9PM7m3i3W2t6Y2r9+76bGxrQXGXE9qa5FxRcx6M/jbvYeAhB6Uf3eQ7LiEjWFrddvqVMUrFq1CqtWrcKPP/4IAOjduzeWLl2KESNGAAAqKiowf/58bNiwAZWVldBqtXjrrbfQoUMHm2MwkXFdqanAvn1AYiIwZYpjYr78snJnZvhwwNzYjqu35GPvtwVIvDUaU37d8F+xmZlATg6QkAC89lrDOz31eXkBnToBwcFAcjLw6qvGx0hOBl5+Ox9Z3xRg+O3RWPR7x/3Led6L+diTW4Dk26Lx6hLHxJVVVxlxl7+Tj11fO76uu47mI1tXwHFkyKnZfP0WjXT9+nXRvXt3cfz48ca+tYGtW7eKzz77TOh0OnHixAmxZMkS4e3tLfLy8oQQQsycOVNERkaK3bt3iyNHjog77rhDDB48uFEx9Hq9ACD0en2zy0uOceSIEN7eQgA3F29vIb75Rm7MggIhQkON9wkNFeLkSfPbAwOFaNnSeF1zF7XPhRBC7N4thEZjHFejEWL/fvViyvjcZcW19l0iItuv3026I9OpUydkZWWhV69eTU+1zAgJCcErr7yChx56CO3bt8e6devw0EMPAQD+85//oFevXsjOzsYdd9xh0/F4R8b1+PgAVVUN13t7A9evy4vZrl3DHkeA0p36wgXz29Wg5rkAgBYtlMtrfRoNUFOjTkwZn7usuNa+S0Skcvfr2bNn489//jNu3LjR5ALWV11djQ0bNuDKlStISEjA0aNHUVVVhaQ6I4z17NkTXbp0QXZ2ttnjVFZWory83Ggh15GaavqiAijr09PlxMzMNJ+klJYCy5c7LompWy41vPSS6SQGUNavWGH/mDI+d1lxrX2Xdu2yf0wid9akRObw4cPYtGkTunTpAq1WizFjxhgtjXHs2DH4+/vD19cXM2fOxObNm3HLLbegpKQEPj4+Dcal6dChA0pKSsweb/ny5QgKCjIskZGRTakiSbJvn+Xtu3fLiZmTY3kfGRcfNc6FLcfdudP+MWV87rLiWvsuWfh3GhGZ0KREJjg4GGPHjoVWq0XHjh2NEoegoKBGHSsuLg65ubnIycnBrFmzMHnyZBw/frwpxQIALF68GHq93rCcPn26yccixxs61PL2xEQ5MePjLe+TnGy34thMjXNhy3HVGDpKxucuK66171JCgv1jErmzRrWRqampwSuvvIKtW7fi+vXrGDZsGJ5//nm0bt3abgVKSkpCjx498MgjjyAxMREXL140uivTtWtXzJ07F/PmzbPpeGwj43rYRsY6tpFx7bhsI0NknSptZF566SUsWbIE/v7+6NSpE9544w3Mnj272YWtq6amBpWVlRg4cCC8vb2xu8693RMnTuDUqVNI4D9Z3NpXXykXkbq8vZX1MmMePqxcaOoKDVXWm9seFNRwDiWNpnllVftcAMojl/rl1GisP4ppDhmfu6y41r5LRGS7Rt2RiYmJwYIFCzBjxgwAQFZWFkaOHIlr166hRYvGP6VavHgxRowYgS5duuDy5ctYt24d/vznPyMzMxPJycmYNWsWtm/fjvT0dAQGBmLOnDkAgIMHD9ocg3dkXFd6utJGwZHjyNgSc9cupR1D7Rgvtmyvv67+6wULlHW148jU3y7jXABKw96dOy2Pq2NvsuoqI6617xKRJ1NlQDxfX18UFBQYNaBt1aoVCgoKDLNgN8a0adOwe/duFBcXIygoCP369cMzzzyD5F9+0bUD4q1fv95oQLzw8HCbYzCRISIicj2qJDJeXl4oKSlB+/btDesCAgLw3XffWZy2QCYmMuQKdDplbqboaGWagvqviYg8ja3X70bNfi2EwJQpU+Dr62tYV1FRgZkzZ6JNmzaGdZs2bWpCkYk8T1kZMH688RxPoaHGDUHrz/lEREQ3NSqRmTx5coN1EydOtFthiDzN+PHKXEx11e/NkpWlTGiZkeG4chERuQqpk0Y6Ah8tkbOyx+zYRETuStUpCoio+QoLG7d/QYE65SAicmVMZIgk6dGjcftHR6tTDiIiV8ZEhqiRMjOBZcuaP79SbKzSkNfLy/J+Xl7AwIFKg19Hz+lkr7o6e0xZcWXVlcidNKqxL5EnKyxU5smp2xi3djTWpo4+sH690pDXUq+lFi2Ao0eVxR4xbaFGXZ0xpqy4supK5I7Y2JfIRmrOj5Ofr7SBqR03pvb1+PHApUvqxLRExlxAsuYf8qS6ErkSNvYlsqPMTPMTQpaWNv/RQEwMMGLEzV5JMTHKnRhTSYy9Ypqjdl2dJaasuLLqSuSumMgQ2SAnx/L27Gz3iCkrLuuqbkwid8Y2MkQ2iI+3vN3ahOxNmYKguTGbSkZc1lXdmETujG1kiGzUlHYNzZ2CgO1GWFciT8U2MkR2dviwcqGpq7aniTmNmYLAXjHtQUZc1lX9uhK5I96RIWqkXbuUdgwJCUBysvn97DkFga0x7U1GXNaViADbr99MZIhUsmMHcN99tu+/fbvSc4mIiPhoiUg6TkFARKQ+JjJEKmnMFARaLWe2JiJqCiYyRCpavx5ISjJeV7+RZ1KSsh8RETUex5EhUlHbtkBGhvkpCCyNI0NERNYxkSFygJgY44Sl/msiImoaPloiIiIil8VEhoiIiFwWExkiIiJyWUxkiIiIyGWxsS+RE2jK7NhERMREhkiq5s6OTUTk6fhoiUii5s6OTUTk6ZjIEEmi0yl3YqqrLe9XXa3sl5/vmHIREbkSJjJEkhQWNm7/ggJ1ykFE5MqYyBBJwtmxiYiaj4kMkZ3pdMCOHdYfBXF2bCKi5pOayCxfvhyDBg1CQEAAwsLCMGrUKJw4ccJon6FDh0Kj0RgtM2fOlFRiIvPKyoCUFCAuDrjvPiVRSUkBLl40/x7Ojk1E1DwaIYSQFTwlJQWPPvooBg0ahBs3bmDJkiXIy8vD8ePH0aZNGwBKIhMbG4tly5YZ3ufn54fAwECbYpSXlyMoKAh6vd7m9xA1RUqK0sOobuNdLy8lEcnIsPxezo5NRGTM1uu31HFkMur9dU9PT0dYWBiOHj2KIUOGGNb7+fkhPDzcpmNWVlaisrLS8Lq8vNw+hSWyoLYHUn11exxZSkg4OzYRUdM4VRsZvV4PAAgJCTFa/8EHH6Bdu3bo06cPFi9ejKtXr5o9xvLlyxEUFGRYIiMjVS0zEWC9BxJ7HBERqUPqo6W6ampq8Otf/xqXLl3CF198YVj/7rvvomvXrujYsSO+++47PPPMM/jVr36FTZs2mTyOqTsykZGRfLREqtLplLYxlrbzDgsRke1c4tFSXbNnz0ZeXp5REgMA06dPN/x/3759ERERgcTERBQWFqKHif6rvr6+8PX1Vb28RHXV9kAy10aGSQwRkTqc4tHSE088gW3btmHv3r3o3LmzxX3j4+MBAAW8V09OxlQPJPY4IiJSl9Q7MkIIzJkzB5s3b8a+ffsQFRVl9T25ubkAgIiICJVLR9Q4bdsqvZPY44iIyHGkJjKzZ8/GunXr8MknnyAgIAAlJSUAgKCgILRu3RqFhYVYt24d7rvvPoSGhuK7777DvHnzMGTIEPTr109m0YnMakqPo8xMICcHSEgAkpMbviYiItOkNvbVaDQm16elpWHKlCk4ffo0Jk6ciLy8PFy5cgWRkZEYPXo0nn32WY4jQ26hsBCIjzee8VqjAer+KkNDgcOHARtuWBIRuQ1br99O02tJLUxkyJm1a2ecxJgTGgpcuKB+eYiInIWt12+naOxL5IkyM21LYgBlv1271C0PEZErYiJDJElOTuP2z85WpxxERK6MiQyRJL+MJGCzhAR1ykFE5MqYyBBJotU2nOnanNBQ9l4iIjKFiQyRRIcPN0xm6nfmq+21REREDTnNFAVEnigqSumNtGuX0gamdtyY+q+JiMg0dr8mIiIip8Pu10REROT2mMgQERGRy2IiQ0RERC6LiQwRERG5LCYyRERE5LKYyBAREZHL4jgyRHXpdEBhIRAdDcTEuH9cIiIXxzsyRABQVgakpABxccB99wGxscrrixfdMy4RkZtgIkMEAOPHA1lZxuuysoBx49wzLhGRm2AiQ6TTAZmZQHW18frqamV9fr57xSUiciNMZIgKCy1vLyhwr7hERG6EiQxRjx6Wt0dHu1dcIiI3wkSGKDYW0GoBLy/j9V5eynq1ehHJiktE5EaYyBABwPr1QFKS8bqkJGW9O8YlInITGiGEkF0INdk6DTgRAKWBbUGB48dzkRWXiMhJ2Xr95oB4RHXFxMhJJGTFJSJycXy0RERERC6LiQwRERG5LCYyRERE5LLYRoaIzJMxmaUnTdzJurpnXE+qqzMQbk6v1wsAQq/Xyy4KkesoLRVCqxUCuLlotUKUlblXTFlxWVfW1R3iqszW6zcTGSJqSKsVwsvL+A+jl5ey3p1iyorLurKu7hBXZbZevzmODBEZ0+mAuDjL2+1921pGTFlxWVd1Y8qK60l1dRBbr99SG/suX74cgwYNQkBAAMLCwjBq1CicOHHCaJ+KigrMnj0boaGh8Pf3x9ixY3Hu3DlJJfZQOh2wY4fjZ2OWEVdWXZ2JjMksPWniTtZV3Ziy4npSXZ2M1ERm//79mD17Ng4dOoRdu3ahqqoKw4cPx5UrVwz7zJs3D59++ik2btyI/fv34+zZsxgzZozEUnuQsjIgJUXJ9u+7T5kbKCUFuHjR/eLKqqszkjGZpSdN3Mm6qhtTVlxPqquzcciDLhudP39eABD79+8XQghx6dIl4e3tLTZu3GjY54cffhAARHZ2tk3HZBuZZvCk571u+oy5yTzpM2BdWVdXjikzrspcsrFvfn6+ACCOHTsmhBBi9+7dAoC4ePGi0X5dunQRf/3rX00eo6KiQuj1esNy+vRpJjJNceKE8Y+i/qLTuU9cWXV1ZmVlju8FISOmrLisK+vqDnFVZmsi4zTjyNTU1GDu3Lm488470adPHwBASUkJfHx8EBwcbLRvhw4dUFJSYvI4y5cvxwsvvKB2cd2fLc9d1WhAJiOurLo6s7ZtgYwMx05mKSOmrLisq7oxZcX1pLo6EadJZGbPno28vDx88cUXzTrO4sWL8dRTTxlel5eXIzIysrnF8zye9LyXz5jNkzGZpSdN3Mm6umdcT6qrE3CKKQqeeOIJbNu2DXv37kXnzp0N68PDw3H9+nVcunTJaP9z584hPDzc5LF8fX0RGBhotFATxMYCWi3g5WW83stLWa/Wj0VGXFl1JSKiZpOayAgh8MQTT2Dz5s3Ys2cPoqKijLYPHDgQ3t7e2L17t2HdiRMncOrUKSQkJDi6uJ5n/XogKcl4XVKSst7d4sqqKxERNYvUAfEef/xxrFu3Dp988gni6gzoExQUhNatWwMAZs2ahe3btyM9PR2BgYGYM2cOAODgwYM2xeCAeHawcydw6BCQkAAkJ7t3XFtiqjGfibVjetLcLayr+8YlagSbr9+OaHlsDgCTS1pammGfa9euiccff1y0bdtW+Pn5idGjR4vi4mKbY7D7dTN40rwhtsRUo1zWjsnPgHV1h7hETeCS3a/VwESmGTxpTARbYqpRLmvH5GfAurpDXKIm4FxLv+CjpSbypHlDbIkphP3LZS1uZqbS2NieMe1RLs5T43oxZcYlaiKXmGuJnJgnzRtiS0w1ymXtmIcO2T+mLZz1M1AD66p+XCKVOc04MuRkOI6McUxrNy6bUi5rce+4w/4xbeGsn4EaWFf14xKpjHdkyDSOI2McU41yWTvm8OH8DFhX149LpDaHtNiRSLXGvidOCLF9u+Pn4XFkXNnzhsRAiBQIEe3AOVIsxVTjfFg7puzPgPPUuE9MmXGJmsDl5lpyGWVlwPjxSkPMWlqtMnBa27buFVdaO/Ay4MUjwO11Vh05AmguAVDrHNsQU435TKydY0+au4V1VTemzLhEKmKvpcZKSQGysoDq6pvrvLyUUWAzMpp/fGeKK6uuR9oBA0qNW3DdAJAbCtx+wX1iAvLOMRGRk7P1+s1EpjE8qdukrLoWZQJRKea3/7gT6GbnUX5lxATYHZaIyAJ2v1aDJ3WblFXXCzmWt/8v2z1iAuwOS0RkB0xkGsOTuk3Kqmu7eMvb26swWaiMmAC7wxIR2QETmcbwpG6TsuoapQWOhCrtU+q6AWW9Go94ZMQE2B2WiMgOmMg01vr1SkPMupKSlPXuFldWXaMPK41s68oNVda7U0xA3jkmInIT7H7dWLLaRntSF9GaIODZ24HCTCAaQAGAHrcD64PdKyYgsYs7EZF7YK+lxmJ3WfV5Uldzfp+IiExi9+tfuEX3a0/iSV3N+X0yTadTenQ5erA2GXFZVyKz2P1aDewuqz5P6mrO75OxsjLlDlVcHHDffUpj6JQU4OJF94vLuqpfV/IYTGQag91l1edJXc35fTI2frzymK2urCxg3Dj3i8u6ql9X8hhMZBqD3WXV50ldzfl9ukmnU+YRq9tWCFBeZ2YqDc7dJS7rqn5dyaMwkWksdpdVnyd1Nef3SeFJj/dYV3Vjksdh9+vGkj17rCc00qs9xy+/rNyCHj4cWLTIMTFXrwb27gUSE4EpU0zva8/zURt3507g0CEgIQFINjEAn6SGki/NO4/de1pgeLLAolfbqxeozmO2TCQjB/FIQDaSsVtZ6U6P9zzpUSYfn5IjCDen1+sFAKHX62UXpXlKS4XQaoVQRh5RFq1WiLIy94ophBBHjgjh7W0c19tbiG++US9mQYEQoaHGMUNDhTh58uY+apwPa8eU9Bns3qwXGlQbhdWgWuzfdkm1mAV3TRahOG/8EeC8OHn3b1WLKYRQzqeXl/E59vJS1rtTTFlxZdWVXJ6t128mMq7Ck/4A1U9i6iYzaqmfxNRNZmqpcT6sHVPSZ6AkMTX1TkeN0KBatZihIaZjhoaoF1MIoSSFjk4WZcSUFVdWXcnlMZH5hVskMidOmL7I1i46nXvEFEKI996zHDctzf4xMzIsx9y5U53zYe2YmZlSPoMX556zGHb5/PN2j2nLR6AaWXcehVA+w+3b1fs9OVNcWXUll2Xr9ZuNfV2BJzXS27fP8vbdu+0fMyfH8vbsbHXOh7VjHjpk/5g22L3H8p+Fnbs0do9py0egGpndg2NigBEjHN9DTUZcWXUlt8dExhV4UiO9oUMtb09MtH/M+HjL2xMS1DkfdY6pQwx2IAX5qHOcO+6wf0wbJN5aanH78NvL7B4zvtNpi9sTupyxe0wA7B5M5AaYyLgCTxpbZdo0wNvb9DZvb/M9iZpDq7UcMzlZOR+hoab3CQ1t2vmIjUXZvWORggzEQYf7sAOxyEcKMnBx2Filt5bGzN0PjUa1z+D/HjkJDaoBiHpbBDSoxqKHrNxJagJtxzyE4n8mY4bif0jucMzuMQGwezCRG2Ai4yo8aWyVr75qmFh4eyvr1aDTAVVVprdVVSn/KtfpgFIzdypKS5v8L/fxmvXI0hif4yxNEsZhPZCaqrTYMEUIID29STGt+vpr7MMQaFBjtFqDGuzDEODbb1WJeRiDEIoLRqtDcQGHMUidmID87sHz5gH9+wMLFqgbp76XXgKGDQNWrHBczNRUYNIk9b63zhQ3MxNYtgzYtctxMWXFlVXXuhzUZkcat2jsW5cnNdJLSxNi4kR1GvjWtX275Zam27fbtk8jWW0//Ov5lneYOFGFkyGU4/4SYzmeFvdil1iOp9WNWyfmTiSKF/Cs2IlE9esqhBADBpg+vwMGqBdz82bTMbdtUy+mEELs3i2ERmMcU6MRYv9+9WLKGE5BVlxbhnFwl7gOiGnr9ZuzXxPZMgu1EHafqXrHDmUOPXO2P5mJEX9LMb9DWpo6j9pSU4Hf/c6xcWXErGXu8R1g/o6YK8YEgBYtTB9fowFqahqutwcfH9N3PL29gevX1YkpK267dqbv3IaGAhcuNFzvynEdEJOzXxPZypb2QAcOWD7Gl182OqzVpxr9/Czv0KlTo2PapHNnx8eVERNQHu1YosYjHxkxAeVxkqVHlWo8ZkpNtfzYVq3HPTLiZmZafvys1qMXGXFl1dUMqYnM559/jgceeAAdO3aERqPBli1bjLZPmTIFGo3GaElJsfAvVKKmstYeSIVu4VbzpzN7LR9ArT7JMvpCy+p/vWeP5e1q/EGWEROw/h3dudP+MWUMpyArrqzvsCf9Xs2QmshcuXIF/fv3x5tvvml2n5SUFBQXFxuW9Z42mR45Ru2cRzodsH278t+MDGU9oFq3cIv5ky3dwtUgI66sug4bZnm7qXmvXDEmYP07Ony4/WPKGE5BVlz+XtWNaYHTtJHRaDTYvHkzRo0aZVg3ZcoUXLp0qcGdmsZgGxmyGxWfuZudg5TP3NWvK9vIsI2MvfD3yjYypuzbtw9hYWGIi4vDrFmzUGruudwvKisrUV5ebrQQ2YWK3cLNDnp6+HDD8WtCQ5X1apIRV1Zdt21r3Prm0uksb1dzEL59+xomURqN9UcxzeHo4RRkxuXvVf26muDUd2Q2bNgAPz8/REVFobCwEEuWLIG/vz+ys7PhVb9hwS+ef/55vPDCCw3W844M2SQzU3n+m5Bg/hZ/erryjD0x0X49aazF3bVLee5sqVxqkBFXVl0XLFBiJycDr76qXhyr3dW2K1mtmlasUNrEDB8OLFqkbqxaavxunDUuf692YesdGadOZOo7efIkevTogaysLCSaecZZWVmJyspKw+vy8nJERkYykSHLCguV57517/jV/usiKsr94pI8tnT353xERO7zaKmu7t27o127diiwMGy4r68vAgMDjRYiq+onE4DyetAg94xL8sia/oPITblUInPmzBmUlpYiIiJCdlHInXjS+A/kHGRN/0HkhlrKDP7zzz8b3V0pKipCbm4uQkJCEBISghdeeAFjx45FeHg4CgsLsXDhQkRHR0Or1UosNbkdW8ZEqPvs15Z2NPaOa6+YjSUjrifUtba7/+rVwN69jm83ws/V/WLKiqvTKY/IG3S5dCC7TYrQBHv37hVQprs1WiZPniyuXr0qhg8fLtq3by+8vb1F165dxe9//3tRUlLSqBhuN9cS2V9GhuU5jXbuVPaz99witsTl3C2sq6vHZV3ds66lpUJotcYxtVohysrsFoJzLf2C48iQTWwZE0GNcROsHZPjUrCurh6XdXXPuqakAFlZQHX1zXVeXsoj0owMu4Rwy8a+RKqxNiaCWu1ZLMX1pLY7rKu6MWXFZV3VjSkrrk6nxK2bxADK68xMdcdCMoGJDBGgdHW+cEEZW+OFF5T/Xrhwswu0WnOLBAUBt99uvO7224HgYM7donZMWXFZV3VjyorrSXUtLLS83ULPYjVIbexL5HSSk003klNrbpHx45Xbs3VlZQHjxlmfJZlzt7hmXNZV3Ziy4npSXXv0sLw9Otr+MS3gHRkiW1gbnK5bt8Yf09rt2e7dGz52qhUaql6vBDXq6owxZcWVVVetFggJMb0tJESd75OMmLLiyqyro/9OONlYSExkiGyhxq1UW44pYz4TGbeNZd2q9qS6AkDv3o1b76oxZcWVVVcZfyecaCwkPloisoUat1JtOWZt2x1HzqEi47axrFvVnlRXnQ44cMD0tgMHlAaa9v6XtIyYsuLKqisg5+9E7VhI+flK8i1xHBnekSGyhRq3UhtzzORkYOlSxwxyJeO2saxb1Z5UV0+6++RJda3LkX8nasXEKJOcSpxag4kMka3UuJXqRLdnjcgol6xz4Sl19aS7T55UV3Ke2a/VwgHxyO7UuJXqBLdnTZJRLlnnwhPq6oBBzJwipqy4surqpmy9fjORISLyFBcvKl37MzNvrtNqlTtBbdu6T0xZcWXV1U0xkfkFExkiono84e6TzLjOeofVxTCR+QUTGSIiItfDuZaIiIjI7TGRISIiIpfFRIaIiIhcFkf2JSLnotMpg4uxoSQR2YB3ZIjIOZSVKeNwxMUB992njICbkqJ0aSUiMoOJDBE5h/HjlcHE6srKUsblICIyg4kMEcmn0ymDiNUdERVQXmdmKuNyEBGZwESGiORzhgn3iMglMZEhIvk44R4RNRETGSKSLzZWmZPGy8t4vZeXsp69l4jIDCYyROQc1q9XZgmuKylJWU9EZAbHkSEi59C2LZCRIW/CvcxMICcHSEgAkpPdNybAsXrIrTCRISLnEhPj2ItrYSEQHw+Ult5cFxoKHD4MREW5T0xAGatn/Hglgaql1Sp3vdq2VS8ukYr4aImIPFv9hAJQXg8a5F4xAY7VQ26JiQwRea7MzIYJRa3SUmDXLveICXCsHnJbTGSIyHPl5Fjenp3tHjEBjtVDbouJDBF5rvh4y9sTEtwjJsCxeshtMZEhIs+l1SqNbE0JDVWnJ5GMmADH6iG3xUSGiDzb4cMNE4vaHkTuFBPgWD3klqQmMp9//jkeeOABdOzYERqNBlu2bDHaLoTA0qVLERERgdatWyMpKQn5bJBGRPYUFQVcuADs3Am88ILy3wsX1O0GLSMmcHOsHp0O2L5d+W9GBrtek0uTOo7MlStX0L9/f0ydOhVjxoxpsP0vf/kL3njjDaxZswZRUVH44x//CK1Wi+PHj6NVq1YSSkxEbis52bGD0smKCTh+rB4iFUlNZEaMGIERI0aY3CaEwMqVK/Hss8/iwQcfBACsXbsWHTp0wJYtW/Doo4+afF9lZSUqKysNr8vLy+1fcCIiInIKTttGpqioCCUlJUiq8zw3KCgI8fHxyLbQPXH58uUICgoyLJGRkY4oLhEREUngtIlMSUkJAKBDhw5G6zt06GDYZsrixYuh1+sNy+nTp1UtJxEREcnjdnMt+fr6wtfXV3YxiIiIyAGc9o5MeHg4AODcuXNG68+dO2fYRkRERJ7NaROZqKgohIeHY/fu3YZ15eXlyMnJQYJaI18SERGRS5H6aOnnn39GQZ35PYqKipCbm4uQkBB06dIFc+fOxYsvvoiYmBhD9+uOHTti1KhR8gpNRERETkNqInPkyBHce++9htdPPfUUAGDy5MlIT0/HwoULceXKFUyfPh2XLl3CXXfdhYyMDI4hQ0RERAAAjRBCyC6EmsrLyxEUFAS9Xo/AwEDZxSEiIiIb2Hr9dto2MkRERETWuF336/pqbzhxhF8iIiLXUXvdtvbgyO0TmcuXLwMAR/glIiJyQZcvX0ZQUJDZ7W7fRqampgZnz55FQEAANBqN1LKUl5cjMjISp0+fZnsdO+D5tD+eU/vi+bQvnk/7c+ZzKoTA5cuX0bFjR7RoYb4ljNvfkWnRogU6d+4suxhGAgMDne4L48p4Pu2P59S+eD7ti+fT/pz1nFq6E1OLjX2JiIjIZTGRISIiIpfFRMaBfH198dxzz3FSSzvh+bQ/nlP74vm0L55P+3OHc+r2jX2JiIjIffGODBEREbksJjJERETkspjIEBERkctiIkNEREQui4lMMy1fvhyDBg1CQEAAwsLCMGrUKJw4ccLkvkIIjBgxAhqNBlu2bDHadurUKYwcORJ+fn4ICwvD008/jRs3bjigBs7F1vOZnZ2NYcOGoU2bNggMDMSQIUNw7do1w/aysjJMmDABgYGBCA4OxrRp0/Dzzz87sipOwZbzWVJSgkmTJiE8PBxt2rTBbbfdho8//thoH57Pm1atWoV+/foZBhBLSEjAjh07DNsrKiowe/ZshIaGwt/fH2PHjsW5c+eMjsHf+02WzmdZWRnmzJmDuLg4tG7dGl26dMEf/vAH6PV6o2PwfN5k7ftZy52uR0xkmmn//v2YPXs2Dh06hF27dqGqqgrDhw/HlStXGuy7cuVKk9MkVFdXY+TIkbh+/ToOHjyINWvWID09HUuXLnVEFZyKLeczOzsbKSkpGD58OL766iscPnwYTzzxhNEQ1hMmTMD333+PXbt2Ydu2bfj8888xffp0GVWSypbz+dvf/hYnTpzA1q1bcezYMYwZMwYPP/wwvvnmG8M+PJ83de7cGStWrMDRo0dx5MgRDBs2DA8++CC+//57AMC8efPw6aefYuPGjdi/fz/Onj2LMWPGGN7P37sxS+fz7NmzOHv2LF599VXk5eUhPT0dGRkZmDZtmuH9PJ/GrH0/a7nV9UiQXZ0/f14AEPv37zda/80334hOnTqJ4uJiAUBs3rzZsG379u2iRYsWoqSkxLBu1apVIjAwUFRWVjqq6E7J1PmMj48Xzz77rNn3HD9+XAAQhw8fNqzbsWOH0Gg04r///a+q5XV2ps5nmzZtxNq1a432CwkJEf/85z+FEDyftmjbtq147733xKVLl4S3t7fYuHGjYdsPP/wgAIjs7GwhBH/vtqg9n6Z8+OGHwsfHR1RVVQkheD5tUf98utv1iHdk7Kz2lmdISIhh3dWrVzF+/Hi8+eabCA8Pb/Ce7Oxs9O3bFx06dDCs02q1KC8vb5BFe5r65/P8+fPIyclBWFgYBg8ejA4dOuCee+7BF198YXhPdnY2goODcfvttxvWJSUloUWLFsjJyXFsBZyMqe/n4MGD8e9//xtlZWWoqanBhg0bUFFRgaFDhwLg+bSkuroaGzZswJUrV5CQkICjR4+iqqoKSUlJhn169uyJLl26IDs7GwB/75bUP5+m6PV6BAYGomVLZapAnk/zTJ1Pd7weuf2kkY5UU1ODuXPn4s4770SfPn0M6+fNm4fBgwfjwQcfNPm+kpISoy8NAMPrkpIS9Qrs5Eydz5MnTwIAnn/+ebz66qsYMGAA1q5di8TEROTl5SEmJgYlJSUICwszOlbLli0REhLC82ni+/nhhx/ikUceQWhoKFq2bAk/Pz9s3rwZ0dHRAMDzacKxY8eQkJCAiooK+Pv7Y/PmzbjllluQm5sLHx8fBAcHG+3foUMHw7ni770hc+ezvgsXLuBPf/qT0WNNns+GLJ1Pd7weMZGxo9mzZyMvL8/o7sDWrVuxZ88eo/YGZBtT57OmpgYAMGPGDDz22GMAgFtvvRW7d+/G6tWrsXz5cilldQWmzicA/PGPf8SlS5eQlZWFdu3aYcuWLXj44Ydx4MAB9O3bV1JpnVtcXBxyc3Oh1+vx0UcfYfLkydi/f7/sYrksc+ezbjJTXl6OkSNH4pZbbsHzzz8vr7AuwNz5LCgocMvrERMZO3niiScMjSA7d+5sWL9nzx4UFhY2+Bfa2LFjcffdd2Pfvn0IDw/HV199ZbS9tpeDqVt/nsDc+YyIiACABv9a69WrF06dOgVAOWfnz5832n7jxg2UlZXxfNY7n4WFhfjHP/6BvLw89O7dGwDQv39/HDhwAG+++Sbefvttnk8TfHx8DHesBg4ciMOHD+Nvf/sbHnnkEVy/fh2XLl0y+s2fO3fOcK74e2/I3Pl85513AACXL19GSkoKAgICsHnzZnh7exvey/PZkLnz2bp1a7e8HrGNTDMJIfDEE09g8+bN2LNnD6Kiooy2L1q0CN999x1yc3MNCwC8/vrrSEtLAwAkJCTg2LFjRheLXbt2ITAw0OTtVXdm7Xx269YNHTt2bNCFWKfToWvXrgCU83np0iUcPXrUsH3Pnj2oqalBfHy8+pVwItbO59WrVwHAqMcXAHh5eRnufvF8WldTU4PKykoMHDgQ3t7e2L17t2HbiRMncOrUKUMbBf7eras9n4ByJ2b48OHw8fHB1q1b0apVK6N9eT6tqz2fbns9ktzY2OXNmjVLBAUFiX379oni4mLDcvXqVbPvQb1W4jdu3BB9+vQRw4cPF7m5uSIjI0O0b99eLF682AE1cC62nM/XX39dBAYGio0bN4r8/Hzx7LPPilatWomCggLDPikpKeLWW28VOTk54osvvhAxMTFi3LhxMqoklbXzef36dREdHS3uvvtukZOTIwoKCsSrr74qNBqN+OyzzwzH4fm8adGiRWL//v2iqKhIfPfdd2LRokVCo9GInTt3CiGEmDlzpujSpYvYs2ePOHLkiEhISBAJCQmG9/P3bszS+dTr9SI+Pl707dtXFBQUGH2Hb9y4IYTg+azP2vezPne4HjGRaSYAJpe0tDSL76n7xRFCiB9//FGMGDFCtG7dWrRr107Mnz/f0L3Qk9h6PpcvXy46d+4s/Pz8REJCgjhw4IDR9tLSUjFu3Djh7+8vAgMDxWOPPSYuX77swJo4B1vOp06nE2PGjBFhYWHCz89P9OvXr0F3bJ7Pm6ZOnSq6du0qfHx8RPv27UViYqLRReLatWvi8ccfF23bthV+fn5i9OjRori42OgY/L3fZOl87t271+x3uKioyHAMns+brH0/63OH65FGCCEcc++HiIiIyL7YRoaIiIhcFhMZIiIicllMZIiIiMhlMZEhIiIil8VEhoiIiFwWExkiIiJyWUxkiIiIyGUxkSEiIiKXxUSGiNzGl19+ib59+8Lb2xujRo2SXRwicgAmMkTUaFOmTIFGo4FGo4G3tzc6dOiA5ORkrF692jDZpD1t27YN99xzDwICAuDn54dBgwYhPT29wX5PPfUUBgwYgKKiIsybNw/e3t744osvjPa5cuUKunfvjgULFti9nETkeExkiKhJUlJSUFxcjB9//BE7duzAvffeiyeffBL3338/bty4Ybc4f//73/Hggw/izjvvRE5ODr777js8+uijmDlzZoNkpLCwEMOGDUPnzp1xzz33YM6cOZgyZQquXLli2GfhwoVo3bo1XnzxRbuVsdb169ftfkwiskL2ZE9E5HomT54sHnzwwQbrd+/eLQCIf/7zn0IIIV577TXRp08f4efnJzp37ixmzZplmGzy559/FgEBAWLjxo1Gx9i8ebPw8/MT5eXl4tSpU8Lb21s89dRTDWK98cYbAoA4dOiQKCoqMjkx5rVr10SvXr3E7NmzhRBC7NmzR/j4+IgjR46I6upq8fLLL4tu3bqJVq1aiX79+hmV5caNG2Lq1KmG7bGxsWLlypUmz8OLL74oIiIiRLdu3Zp1Xomo8XhHhojsZtiwYejfvz82bdoEAGjRogXeeOMNfP/991izZg327NmDhQsXAgDatGmDRx99FGlpaUbHSEtLw0MPPYSAgAB89NFHqKqqMvkYaMaMGfD398f69esRGRmJ4uJiBAYGYuXKlSguLsYjjzyCVq1aYe3atXj33XfxySefYOrUqViyZAkGDhyI5cuXY+3atXj77bfx/fffY968eZg4cSL2798PAKipqUHnzp2xceNGHD9+HEuXLsWSJUvw4YcfGpVj9+7dOHHiBHbt2oVt27apcVqJyBLZmRQRuR5zd2SEEOKRRx4RvXr1Mrlt48aNIjQ01PA6JydHeHl5ibNnzwohhDh37pxo2bKl2LdvnxBCiJkzZ4qgoCCz5ejXr58YMWKE4XVQUJBIS0trsN/SpUtFixYtxMCBA0VVVZWoqKgQfn5+4uDBg0b7TZs2TYwbN85svNmzZ4uxY8caXk+ePFl06NBBVFZWmn0PEamLd2SIyK6EENBoNACArKwsJCYmolOnTggICMCkSZNQWlqKq1evAgB+9atfoXfv3lizZg0A4F//+he6du2KIUOG2LVMf/zjH1FTU4NFixahZcuWKCgowNWrV5GcnAx/f3/DsnbtWhQWFhre9+abb2LgwIFo3749/P398e677+LUqVNGx+7bty98fHzsWl4ish0TGSKyqx9++AFRUVH48ccfcf/996Nfv374+OOPcfToUbz55psAjBvF/u53vzP0QEpLS8Njjz1mSIRiY2Oh1+tx9uzZBnGuX7+OwsJCxMbGWi1Ty5Ytjf77888/AwA+++wz5ObmGpbjx4/jo48+AgBs2LABCxYswLRp07Bz507k5ubisccea9Cgt02bNo05PURkZ0xkiMhu9uzZg2PHjmHs2LE4evQoampq8Nprr+GOO+5AbGysyYRk4sSJ+Omnn/DGG2/g+PHjmDx5smHb2LFj4e3tjddee63B+95++21cuXIF48aNa3Q5b7nlFvj6+uLUqVOIjo42WiIjIwEoY9IMHjwYjz/+OG699VZER0cb3a0hIufQUnYBiMg1VVZWoqSkBNXV1Th37hwyMjKwfPly3H///fjtb3+LvLw8VFVV4e9//zseeOABfPnll3j77bcbHKdt27YYM2YMnn76aQwfPhydO3c2bOvSpQv+8pe/YP78+WjVqhUmTZoEb29vfPLJJ1iyZAnmz5+P+Pj4Rpc9ICAACxYswLx581BTU4O77roLer0eX375JQIDAzF58mTExMRg7dq1yMzMRFRUFN5//30cPnwYUVFRzTpvRGRnshvpEJHrmTx5sqGbc8uWLUX79u1FUlKSWL16taiurjbs99e//lVERESI1q1bC61WK9auXSsAiIsXLxodr7bb9ocffmgy3ieffCLuvvtu0aZNG9GqVSsxcOBAsXr16gb7mWvsK4QQAMTmzZsNr2tqasTKlStFXFyc8Pb2Fu3btxdarVbs379fCCFERUWFmDJliggKChLBwcFi1qxZYtGiRaJ///5G58Fco2cicgyNEEJIzaSIyOO9//77mDdvHs6ePcuGs0TUKHy0RETSXL16FcXFxVixYgVmzJjBJIaIGo2NfYlImr/85S/o2bMnwsPDsXjxYtnFISIXxEdLRERE5LJ4R4aIiIhcFhMZIiIicllMZIiIiMhlMZEhIiIil8VEhoiIiFwWExkiIiJyWUxkiIiIyGUxkSEiIiKX9f9PmheX/r+mHwAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "ax=None\n", + "colors = ['red','blue','green','yellow']\n", + "for i,var in enumerate(new_pumpkins['Variety'].unique()):\n", + " df = new_pumpkins[new_pumpkins['Variety']==var]\n", + " ax = df.plot.scatter('DayOfYear','Price',ax=ax,c=colors[i],label=var)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAh8AAAJoCAYAAADGeoOoAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA6lElEQVR4nO3de1RVdeL+8eccL4ghKCoiCeT9kqJ5JydzFEVyHE1dqVnesLKsfuo4Ga0mJ/sWTdNM1lfHLgroFGg6mOM06ZQXLC9pOob30khtBExNQJSjwvn90bczkWiim88+B96vtc5a7gvnPHhEnvPZn723w+12uwUAAGCI0+4AAACgaqF8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMCo6nYH+KmSkhIdP35cderUkcPhsDsOAAC4Bm63WwUFBQoLC5PTefWxDa8rH8ePH1d4eLjdMQAAwHU4duyYmjRpctV9vK581KlTR9L34QMDA21OAwAArkV+fr7Cw8M9v8evxuvKxw+HWgIDAykfAAD4mGuZMsGEUwAAYBTlAwAAGFWu8jF//nxFRUV5DolER0frgw8+8Gzv06ePHA5HqcfkyZMtDw0AAHxXueZ8NGnSRC+++KJatmwpt9utRYsWaciQIfr3v/+tW2+9VZL0wAMPaPbs2Z6vqV27trWJAQCATytX+Rg8eHCp5eeff17z58/X1q1bPeWjdu3aCg0NtS4hAACoVK57zkdxcbGWLFmiwsJCRUdHe9a/8847atCggdq3b6+EhASdO3fuqs/jcrmUn59f6gEAACqvcp9qu3v3bkVHR6uoqEgBAQFasWKF2rVrJ0m69957FRkZqbCwMGVmZmrmzJk6ePCg0tPTr/h8iYmJevbZZ6//OwAAAD7F4Xa73eX5ggsXLujo0aPKy8vT8uXLtWDBAmVkZHgKyI+tW7dO/fr106FDh9S8efMyn8/lcsnlcnmWf7hISV5eHtf5AADAR+Tn5ysoKOiafn+Xu3z8VExMjJo3b6433njjsm2FhYUKCAjQ6tWrFRsbe03PV57wAADAO5Tn9/cNX+ejpKSk1MjFj+3atUuS1Lhx4xt9GQAAUEmUa85HQkKC4uLiFBERoYKCAqWmpmrDhg1as2aNDh8+rNTUVN11112qX7++MjMzNW3aNPXu3VtRUVEVlR8AAPiYcpWPEydOaOzYscrOzlZQUJCioqK0Zs0a9e/fX8eOHdNHH32kOXPmqLCwUOHh4Ro+fLiefvrpisoOAAB80A3P+bAacz4AAPA9Rud8AAAAlAflAwAAGFXui4wBlcktT75vdwRbfP3iILsjAKjCGPkAAABGUT4AAIBRlA8AAGAU5QMAABhF+QAAAEZRPgAAgFGUDwAAYBTlAwAAGEX5AAAARlE+AACAUZQPAABgFOUDAAAYRfkAAABGUT4AAIBRlA8AAGAU5QMAABhF+QAAAEZRPgAAgFGUDwAAYBTlAwAAGEX5AAAARlE+AACAUZQPAABgFOUDAAAYRfkAAABGUT4AAIBRlA8AAGAU5QMAABhF+QAAAEZRPgAAgFGUDwAAYFR1uwN4m1uefN/uCLb4+sVBdkcAAFQRjHwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwKhylY/58+crKipKgYGBCgwMVHR0tD744APP9qKiIk2ZMkX169dXQECAhg8frtzcXMtDAwAA31Wu8tGkSRO9+OKL2rFjhz777DP17dtXQ4YM0d69eyVJ06ZN06pVq7Rs2TJlZGTo+PHjGjZsWIUEBwAAvqlcFxkbPHhwqeXnn39e8+fP19atW9WkSRMtXLhQqamp6tu3ryQpOTlZbdu21datW9WzZ88yn9PlcsnlcnmW8/Pzy/s9AAAAH3Ldcz6Ki4u1ZMkSFRYWKjo6Wjt27NDFixcVExPj2adNmzaKiIjQli1brvg8iYmJCgoK8jzCw8OvNxIAAPAB5S4fu3fvVkBAgPz8/DR58mStWLFC7dq1U05OjmrWrKm6deuW2r9Ro0bKycm54vMlJCQoLy/P8zh27Fi5vwkAAOA7yn1vl9atW2vXrl3Ky8vT8uXLNW7cOGVkZFx3AD8/P/n5+V331wMAAN9S7vJRs2ZNtWjRQpLUpUsXbd++Xa+++qpGjhypCxcu6MyZM6VGP3JzcxUaGmpZYAAA4Ntu+DofJSUlcrlc6tKli2rUqKG1a9d6th08eFBHjx5VdHT0jb4MAACoJMo18pGQkKC4uDhFRESooKBAqamp2rBhg9asWaOgoCDFx8dr+vTpCg4OVmBgoB577DFFR0df8UwXAABQ9ZSrfJw4cUJjx45Vdna2goKCFBUVpTVr1qh///6SpFdeeUVOp1PDhw+Xy+VSbGys/vKXv1RIcAAA4JvKVT4WLlx41e21atXSvHnzNG/evBsKBQAAKi/u7QIAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMKpc5SMxMVHdunVTnTp1FBISoqFDh+rgwYOl9unTp48cDkepx+TJky0NDQAAfFe5ykdGRoamTJmirVu36sMPP9TFixc1YMAAFRYWltrvgQceUHZ2tufx0ksvWRoaAAD4rurl2Xn16tWlllNSUhQSEqIdO3aod+/envW1a9dWaGioNQkBAEClckNzPvLy8iRJwcHBpda/8847atCggdq3b6+EhASdO3fuis/hcrmUn59f6gEAACqvco18/FhJSYmmTp2qXr16qX379p719957ryIjIxUWFqbMzEzNnDlTBw8eVHp6epnPk5iYqGefffZ6YwAAAB9z3eVjypQp2rNnjz755JNS6x988EHPnzt06KDGjRurX79+Onz4sJo3b37Z8yQkJGj69Ome5fz8fIWHh19vLAAA4OWuq3w8+uij+sc//qGNGzeqSZMmV923R48ekqRDhw6VWT78/Pzk5+d3PTEAAIAPKlf5cLvdeuyxx7RixQpt2LBBTZs2/dmv2bVrlySpcePG1xUQAABULuUqH1OmTFFqaqpWrlypOnXqKCcnR5IUFBQkf39/HT58WKmpqbrrrrtUv359ZWZmatq0aerdu7eioqIq5BsAAAC+pVzlY/78+ZK+v5DYjyUnJ2v8+PGqWbOmPvroI82ZM0eFhYUKDw/X8OHD9fTTT1sWGAAA+LZyH3a5mvDwcGVkZNxQIAAAULlxbxcAAGAU5QMAABhF+QAAAEZRPgAAgFGUDwAAYBTlAwAAGEX5AAAARlE+AACAUZQPAABgFOUDAAAYRfkAAABGUT4AAIBRlA8AAGAU5QMAABhF+QAAAEZRPgAAgFGUDwAAYBTlAwAAGEX5AAAARlE+AACAUZQPAABgFOUDAAAYRfkAAABGUT4AAIBRlA8AAGAU5QMAABhF+QAAAEZRPgAAgFGUDwAAYBTlAwAAGEX5AAAARlE+AACAUZQPAABgFOUDAAAYRfkAAABGUT4AAIBRlA8AAGAU5QMAABhF+QAAAEZRPgAAgFGUDwAAYFS5ykdiYqK6deumOnXqKCQkREOHDtXBgwdL7VNUVKQpU6aofv36CggI0PDhw5Wbm2tpaAAA4LvKVT4yMjI0ZcoUbd26VR9++KEuXryoAQMGqLCw0LPPtGnTtGrVKi1btkwZGRk6fvy4hg0bZnlwAADgm6qXZ+fVq1eXWk5JSVFISIh27Nih3r17Ky8vTwsXLlRqaqr69u0rSUpOTlbbtm21detW9ezZ87LndLlccrlcnuX8/Pzr+T4AAICPuKE5H3l5eZKk4OBgSdKOHTt08eJFxcTEePZp06aNIiIitGXLljKfIzExUUFBQZ5HeHj4jUQCAABe7rrLR0lJiaZOnapevXqpffv2kqScnBzVrFlTdevWLbVvo0aNlJOTU+bzJCQkKC8vz/M4duzY9UYCAAA+oFyHXX5sypQp2rNnjz755JMbCuDn5yc/P78beg4AAOA7rmvk49FHH9U//vEPrV+/Xk2aNPGsDw0N1YULF3TmzJlS++fm5io0NPSGggIAgMqhXOXD7Xbr0Ucf1YoVK7Ru3To1bdq01PYuXbqoRo0aWrt2rWfdwYMHdfToUUVHR1uTGAAA+LRyHXaZMmWKUlNTtXLlStWpU8czjyMoKEj+/v4KCgpSfHy8pk+fruDgYAUGBuqxxx5TdHR0mWe6AACAqqdc5WP+/PmSpD59+pRan5ycrPHjx0uSXnnlFTmdTg0fPlwul0uxsbH6y1/+YklYAADg+8pVPtxu98/uU6tWLc2bN0/z5s277lAAAKDy4t4uAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjCrXvV0AwJfd8uT7dkewxdcvDrI7AlAKIx8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwqrrdAQAAqAi3PPm+3RFs8fWLg+yO8LMY+QAAAEZRPgAAgFGUDwAAYBTlAwAAGEX5AAAARpW7fGzcuFGDBw9WWFiYHA6H3nvvvVLbx48fL4fDUeoxcOBAq/ICAAAfV+7yUVhYqI4dO2revHlX3GfgwIHKzs72PNLS0m4oJAAAqDzKfZ2PuLg4xcXFXXUfPz8/hYaGXncoAABQeVXInI8NGzYoJCRErVu31sMPP6xTp05dcV+Xy6X8/PxSDwAAUHlZXj4GDhyoxYsXa+3atfrDH/6gjIwMxcXFqbi4uMz9ExMTFRQU5HmEh4dbHQkAAHgRyy+vPmrUKM+fO3TooKioKDVv3lwbNmxQv379Lts/ISFB06dP9yzn5+dTQAAAqMQq/FTbZs2aqUGDBjp06FCZ2/38/BQYGFjqAQAAKq8KLx/ffPONTp06pcaNG1f0SwEAAB9Q7sMuZ8+eLTWKkZWVpV27dik4OFjBwcF69tlnNXz4cIWGhurw4cN64okn1KJFC8XGxloaHAAA+KZyl4/PPvtMv/zlLz3LP8zXGDdunObPn6/MzEwtWrRIZ86cUVhYmAYMGKDnnntOfn5+1qUGAAA+q9zlo0+fPnK73VfcvmbNmhsKBAAAKjfu7QIAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjCp3+di4caMGDx6ssLAwORwOvffee6W2u91uPfPMM2rcuLH8/f0VExOjL7/80qq8AADAx5W7fBQWFqpjx46aN29emdtfeuklvfbaa3r99df16aef6qabblJsbKyKiopuOCwAAPB91cv7BXFxcYqLiytzm9vt1pw5c/T0009ryJAhkqTFixerUaNGeu+99zRq1KgbSwsAAHyepXM+srKylJOTo5iYGM+6oKAg9ejRQ1u2bCnza1wul/Lz80s9AABA5WVp+cjJyZEkNWrUqNT6Ro0aebb9VGJiooKCgjyP8PBwKyMBAAAvY/vZLgkJCcrLy/M8jh07ZnckAABQgSwtH6GhoZKk3NzcUutzc3M9237Kz89PgYGBpR4AAKDysrR8NG3aVKGhoVq7dq1nXX5+vj799FNFR0db+VIAAMBHlftsl7Nnz+rQoUOe5aysLO3atUvBwcGKiIjQ1KlT9T//8z9q2bKlmjZtqt/97ncKCwvT0KFDrcwNAAB8VLnLx2effaZf/vKXnuXp06dLksaNG6eUlBQ98cQTKiws1IMPPqgzZ87oF7/4hVavXq1atWpZlxoAAPiscpePPn36yO12X3G7w+HQ7NmzNXv27BsKBgAAKifbz3YBAABVC+UDAAAYRfkAAABGUT4AAIBRlA8AAGAU5QMAABhF+QAAAEZRPgAAgFGUDwAAYBTlAwAAGEX5AAAARlE+AACAUZQPAABgFOUDAAAYRfkAAABGUT4AAIBRlA8AAGAU5QMAABhF+QAAAEZRPgAAgFGUDwAAYBTlAwAAGEX5AAAARlE+AACAUZQPAABgFOUDAAAYRfkAAABGUT4AAIBRlA8AAGAU5QMAABhF+QAAAEZRPgAAgFGUDwAAYBTlAwAAGEX5AAAARlE+AACAUZQPAABgFOUDAAAYRfkAAABGUT4AAIBRlA8AAGCU5eXj97//vRwOR6lHmzZtrH4ZAADgo6pXxJPeeuut+uijj/77ItUr5GUAAIAPqpBWUL16dYWGhl7Tvi6XSy6Xy7Ocn59fEZEAAICXqJA5H19++aXCwsLUrFkzjRkzRkePHr3ivomJiQoKCvI8wsPDKyISAADwEpaXjx49eiglJUWrV6/W/PnzlZWVpTvuuEMFBQVl7p+QkKC8vDzP49ixY1ZHAgAAXsTywy5xcXGeP0dFRalHjx6KjIzUu+++q/j4+Mv29/Pzk5+fn9UxAACAl6rwU23r1q2rVq1a6dChQxX9UgAAwAdUePk4e/asDh8+rMaNG1f0SwEAAB9gefmYMWOGMjIy9PXXX2vz5s26++67Va1aNY0ePdrqlwIAAD7I8jkf33zzjUaPHq1Tp06pYcOG+sUvfqGtW7eqYcOGVr8UAADwQZaXjyVLllj9lAAAoBLh3i4AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjKJ8AAAAoygfAADAKMoHAAAwivIBAACMonwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMqrHzMmzdPt9xyi2rVqqUePXpo27ZtFfVSAADAh1RI+Vi6dKmmT5+uWbNmaefOnerYsaNiY2N14sSJing5AADgQyqkfPz5z3/WAw88oAkTJqhdu3Z6/fXXVbt2bSUlJVXEywEAAB9S3eonvHDhgnbs2KGEhATPOqfTqZiYGG3ZsuWy/V0ul1wul2c5Ly9PkpSfn291tGtS4jpny+vaza6/b7vxflctvN9VC++3Pa/rdrt/dl/Ly8fJkydVXFysRo0alVrfqFEjHThw4LL9ExMT9eyzz162Pjw83OpouIqgOXYngEm831UL73fVYvf7XVBQoKCgoKvuY3n5KK+EhARNnz7ds1xSUqLTp0+rfv36cjgcNiYzKz8/X+Hh4Tp27JgCAwPtjoMKxvtdtfB+Vy1V9f12u90qKChQWFjYz+5reflo0KCBqlWrptzc3FLrc3NzFRoaetn+fn5+8vPzK7Wubt26VsfyGYGBgVXqH2tVx/tdtfB+Vy1V8f3+uRGPH1g+4bRmzZrq0qWL1q5d61lXUlKitWvXKjo62uqXAwAAPqZCDrtMnz5d48aNU9euXdW9e3fNmTNHhYWFmjBhQkW8HAAA8CEVUj5Gjhypb7/9Vs8884xycnLUqVMnrV69+rJJqPgvPz8/zZo167JDUKiceL+rFt7vqoX3++c53NdyTgwAAIBFuLcLAAAwivIBAACMonwAAACjKB8AAMAoygcAVLAjR45o3759KikpsTsK4BUoHwBgkaSkJP35z38ute7BBx9Us2bN1KFDB7Vv317Hjh2zKR2s9tJLL+n8+fOe5U2bNpW6UWpBQYEeeeQRO6J5PcoHAFjkzTffVL169TzLq1evVnJyshYvXqzt27erbt26Zd5IE74pISFBBQUFnuW4uDj95z//8SyfO3dOb7zxhh3RvB7lwyZ33XWX8vLyPMsvvviizpw541k+deqU2rVrZ0MyVATe76rhyy+/VNeuXT3LK1eu1JAhQzRmzBh17txZL7zwQqlbT8C3/fQyWVw269pRPmyyZs2aUsNzL7zwgk6fPu1ZvnTpkg4ePGhHNFQA3u+q4fz586VuJLZ582b17t3bs9ysWTPl5OTYEQ3wKpQPm9CYqxbe76ohMjJSO3bskCSdPHlSe/fuVa9evTzbc3Jyrvmun0BlViH3dgGAqmjcuHGaMmWK9u7dq3Xr1qlNmzbq0qWLZ/vmzZvVvn17GxPCagsWLFBAQICk70cwU1JS1KBBA0kqNR8EpVE+bOJwOORwOC5bh8qJ97tqeOKJJ3Tu3Dmlp6crNDRUy5YtK7V906ZNGj16tE3pYLWIiAi99dZbnuXQ0FD99a9/vWwfXI4by9nE6XQqLi7Oc9fDVatWqW/fvrrpppskSS6XS6tXr1ZxcbGdMWER3m8A+C/Kh00mTJhwTfslJydXcBKYwPtdNWzbtk1dunRRtWrVytzucrm0cuVK3XPPPYaToaK43W4dOnRIFy5cUOvWrVW9OgcUrgXlAwAsUq1aNWVnZyskJESSFBgYqF27dqlZs2aSpNzcXIWFhTHCVUlkZWXp17/+tfbt2ydJuvnmm/W3v/1N3bp1szmZ9+NsFy914MABtWrVyu4YMGj58uV2R8ANupazmvi8V3n89re/1aVLl/T2229r+fLlCg8P1+TJk+2O5RMYH/JSLpdLhw8ftjsGLHTp0iUdOHBANWvWLFUsV65cqWeeeUYHDhzQiBEjbEwIE5hoXHl88sknWr58uX7xi19Iknr27KkmTZqosLDQM58LZWPkAzBgz549atGihTp27Ki2bdtq2LBhys3N1Z133qmJEycqLi6Osgn4mBMnTqhly5ae5caNG8vf318nTpywMZVvYOQDMGDmzJlq0aKF5s6dq7S0NKWlpWn//v2Kj4/X6tWr5e/vb3dEWGTfvn2eq5i63W4dOHBAZ8+elfT9hcdQeTgcDp09e7bUz6/T6VRBQYHy8/M963581Vt8jwmnXurzzz9X586dmZhWSYSEhOhf//qXOnXqpLy8PNWrV0+LFi3S/fffb3c0WMjpdMrhcJQ5r+OH9Q6Hg5/rSuKH9/vHfniPf/xn3u/LMfJhk3r16l312O+lS5cMpkFFO3nypMLCwiRJQUFBuummm9SzZ0+bU8FqWVlZdkeAQevXr7c7gs+ifNhkzpw5dkeAQQ6HQwUFBapVq5bn09D58+dLDc1KDM/6usjISLsjwKCWLVt6PlSgfDjs4sWKi4uveLEi+JafDs/+eGj2x8sMz/q2zMzMa9ovKiqqgpPAhHr16mnevHm699577Y7icxj58EJffPGFFi5cqMWLFys7O9vuOLAAw7NVQ6dOna445+MHlMzK4/nnn9dDDz2kFStW6PXXX1f9+vXtjuQzGPnwEufOndPSpUuVlJSkLVu2qGvXrho+fLh++9vf2h0NwDU6cuTINe3H4ZnKIysrS/Hx8dq3b5/eeustDR482O5IPoHyYbOtW7dqwYIFWrZsmSIiIrR//36tX79ed9xxh93RYKErDccHBQUpIiKCC09VErNnz9aMGTNUu3Ztu6PAsLlz52ratGlq27btZfd32blzp02pvBeHXWzypz/9SUlJScrLy9Po0aO1ceNGdezYUTVq1GDorhK60nC8w+FQrVq1NHXqVM2ePZs5Pj7u2Wef1eTJkykfVcyRI0eUnp6uevXqaciQIdxc7hrwN2STmTNnaubMmfzCqSKudArmmTNntGPHDv3ud79TvXr1NGPGDMPJYCUGkquet956S7/5zW8UExOjvXv3qmHDhnZH8gkcdrFJYmKikpOTVVRUpNGjR+v+++9X+/btVaNGDX3++edq166d3RFh0PLly/Xss89q9+7ddkfBDXA6ncrNzeUXUBUxcOBAbdu2TXPmzNHYsWPtjuNTGPmwSUJCghISEpSRkaGkpCT16NFDLVq0kNvt1nfffWd3PBjWpUsXLlBVSbRq1epn5/CcPn3aUBpUpOLiYmVmZqpJkyZ2R/E5jHx4iYKCAqWmpiopKUk7duxQ9+7dNWLECE2fPt3uaDBgy5YtuvfeeykgPs7pdGrOnDkKCgq66n7jxo0zlAgVqVq1asrOzlZISIjdUXwO5cMmzZo10/bt28ucXLp7924tXLhQqamp3B2xCvj22281evRoRUREKCkpye44uAFOp1M5OTn8MqoieL+vH+XDJtfyj/bixYuqUaOGwVSoKLfddluZQ/F5eXn65ptv1Lp1a/3rX/9SaGioDelgFT4JVy2Uj+vHnA8vRvGoPIYOHVrm+sDAQLVu3VqxsbGc9VQJ8Fmu6lmwYIECAgKuus/jjz9uKI3vYOTDJk6nU4sWLfrZY8O//vWvDSVCRdq4caNuv/12zv+v4txut7799ls+KVcSTqdTTZo0ueoHB4fDoa+++spgKt9A+bCJ0+n82X24B0TlwXB81VC7dm0dOXLEc6rtoEGDtGDBAjVu3FiSlJubq7CwMH6uKwkOu1y/n/8NiAqTk5OjkpKSKz74D6ryoONXDUVFRaXe640bN+r8+fOl9uHfQuXBbRGuH+UDMIT/qCDx76AyoUhePw5AA4aMHz9efn5+V90nPT3dUBoAN2rWrFk/O9kUZaN82KRfv37y9/e3OwYMqlOnDu95JedwOEqNbPx0GZXLrFmz7I7gs5hwapN69epp3rx5uvfee+2OAgOYmFY1OJ1OBQUFeQrHmTNnFBgY6Jlg7na7lZ+fz3wuVHmMfNjk+eef10MPPaQVK1bojTfeUHBwsN2RUIH49Fs1JCcn2x0B8AmMfNgoKytL8fHx2rdvn9566y0NHjzY7kioID838rF//34tXLhQL7/8suFkAGAe5cMLzJ07V9OmTVPbtm0vuwjVzp07bUoFK2VkZKhXr16l3t/CwkItWbJECxcu1NatW9WuXTvt2bPHxpQAyuPEiRNXPZR66dIl7dy5U927dzeYyjdw2MVmR44cUXp6uurVq6chQ4ZwBcxK6s477/T8edOmTVq4cKHeffddnT9/XtOmTVNSUpLatGljY0JYoV69etd0iO306dMG0qCiNW7cuNTFAzt06KB//vOfCg8PlySdOnVK0dHRzPEpA7/pbPTWW2/pN7/5jWJiYrR3717PVRFR+Zw4cUIpKSlKSkpSXl6eRo8erQ0bNig6OloTJ06keFQSc+bMsTsCDPrpgYOvv/5aFy9evOo++B7lwyYDBw7Utm3bNHfuXI0dO9buOKhgkZGRGjFihF599VX179//mi6vD98zbtw4uyPAyzDZvGz8D2iT4uJiZWZmXrV4fPbZZwYToSJFRkbqk08+0caNG/XFF1/YHQc2yc7O1qOPPmp3DMB2lA+bfPjhh2rSpInOnj172b0fdu3apcGDB6tHjx42pYPVDhw4oLffflvZ2dnq1q2bunTpoldeeUUSn4wqm71792ru3Ll68803debMGUnSyZMnNW3aNDVr1kzr16+3NyAs43A4VFBQoPz8fOXl5cnhcOjs2bPKz8/3PHAFbtji2LFj7p49e7qdTqe7Ro0a7mnTprkLCwvd999/v7tmzZrukSNHurdu3Wp3TFSAgoIC95tvvumOjo52OxwOd58+fdxvvvmm+8SJE3ZHww1auXKlu0aNGm6Hw+F2OBzu5s2bu9etW+du0KCBOzY21v3BBx/YHREWcjgcbqfT6XlcaRmX41Rbm4waNUoHDx5UfHy80tPTlZGRoc6dO6tHjx568skn1aRJE7sjwoAfru/x17/+VadPn75sshp8S/fu3dWrVy8999xzWrBggaZPn65bb71VSUlJ6tatm93xYLGMjIxr2u/HZ7vhe5QPm4SFhSk9PV09e/bUiRMnFBoaqj//+c+aOnWq3dFgg4sXL2rVqlUaNmyY3VFwA4KCgrRjxw61aNFCxcXF8vPz0+rVqxUTE2N3NMCrcLaLTXJzc9W0aVNJUkhIiGrXrq24uDibU6GiXMuxX35B+b6CggIFBgZKkqpVqyZ/f381a9bM5lSoKNc6p+OHfxP4L8qHjX58uqXT6VTNmjVtTIOKVLdu3atOLHW73XI4HFyMqBJYs2aNgoKCJEklJSVau3btZVeu/fWvf21HNFiMn+vrx2EXm/zc3S9/wJUQKweODVcN13L9Fn4ZVR78XF8/yodNFi1adE37cdEiAEBlQ/kAAENKSkr0z3/+U7/61a/sjgILlJSU6I9//KP+/ve/68KFC+rXr59mzZolf39/u6N5PS4yBhjgdDpVrVq1qz64qWDldejQIT311FNq0qSJ7r77brvjwCLPP/+8nnrqKQUEBOjmm2/Wq6++qilTptgdyycw8mET7n5ZtaxcufKK27Zs2aLXXntNJSUlKioqMpgKFen8+fNatmyZFixYoE2bNumOO+7QqFGjdPfdd6tRo0Z2x4MFWrZsqRkzZuihhx6SJH300UcaNGiQzp8/z/2bfgblwybM+cDBgwf15JNPatWqVRozZoxmz56tyMhIu2PhBm3fvl0LFizQkiVL1Lx5c40ZM0YzZ85UZmam2rVrZ3c8WMjPz0+HDh1SeHi4Z12tWrV06NAhLhT5Mxjntcm1lApmxFdOx48f16xZs7Ro0SLFxsZq165dat++vd2xYIGoqCjl5+fr3nvv1ebNm3XrrbdKkp588kmbk6EiXLp0SbVq1Sq1rkaNGlyp+BpQPrzQF198oYULF2rx4sXKzs62Ow4skpeXpxdeeEH/+7//q06dOmnt2rW644477I4FCx08eFAjR47UL3/5S0Y5qgC3263x48fLz8/Ps66oqEiTJ0/WTTfd5FmXnp5uRzyvRvnwEufOndPSpUuVlJSkLVu2qGvXrpo+fbrdsWCRl156SX/4wx8UGhqqtLQ0DRkyxO5IqABfffWVUlJS9PDDD+v8+fMaPXq0xowZw52LK6myRrDvu+8+G5L4HuZ82Gzr1q1asGCBli1bpoiICO3fv1/r16/nE3El43Q65e/vr5iYGFWrVu2K+/EJqfJYt26dkpKSlJ6erqKiIs2YMUOTJk1Sq1at7I4G2I6RD5v86U9/UlJSkvLy8jR69Ght3LhRHTt2VI0aNVS/fn2748FiY8eO5dNvFdO3b1/17dtXeXl5euedd5SUlKSXX35Z7du3V2Zmpt3xAFsx8mGT6tWra+bMmZo9e3apT8I1atTQ559/zvFiwAeNGDFCkyZNUmxsbJllc9euXUpKStJrr71mQzrAe3Aisk2ee+45LVu2TE2bNtXMmTMvu/EUAN/z3XffadCgQYqIiNAzzzyjr776qtT2Tp06UTwAMfJhu4yMDCUlJWn58uVq0aKF9u7dq4yMDPXq1cvuaLDQsGHDrmk/5nz4viNHjig5OVmLFy/WkSNHdOedd2rSpEkaPnx4qbMigKqM8mGTr776Sk2bNvUMzRYUFCg1NVVJSUnasWOHunfvrhEjRnDGSyUxYcKEa9ovOTm5gpPApB8mna5YsUJ+fn4aPXq0Jk6cqC5dutgdDbAV5cMm1apVU3Z2tkJCQiRJI0eO1GuvvaZGjRpp9+7dWrhwoVJTU3XixAmbkwK4UT98uHjqqaeUl5enS5cu2R0JsBXlwyZOp1M5OTme8lGnTh19/vnnatasmWefixcvqkaNGnZFhIUmTpz4s/s4HA4tXLjQQBqYlJWVpZSUFKWkpOg///mPYmJitHr1artjAbbiVFsvRvGoPFJSUhQZGanbbrtN9P3Kr6ioSMuXL1dSUpI2btyo8PBwxcfHa8KECaXuAwJUVZQPmzgcjstOxeM6EJXXww8/rLS0NGVlZWnChAm67777FBwcbHcsWGzbtm1KSkrS0qVLVVRUpLvvvlurV69Wv379+PkGfoTDLjZxOp2Ki4vzzH5ftWqV+vbtW+p+ABJnP1QmLpdL6enpSkpK0ubNmzVo0CDFx8drwIAB/GKqJJxOpzp27Kj4+HiNGTNG9erVszsS4JUoHzbh7Ieq7ciRI0pJSdHixYt16dIl7d27VwEBAXbHwg3auXOnOnfubHcMwOtx2MUmlIqqzel0yuFwyO12q7i42O44sAjFA7g2XOEUMMTlciktLU39+/dXq1attHv3bs2dO1dHjx5l1ANAlcLIB2DAI488oiVLlig8PFwTJ05UWlqaGjRoYHcsALAFcz4AA5xOpyIiInTbbbdddXIpE4wBVAWMfAAGjB07ljNaAOD/MPIBABbp27fvNe23bt26Ck4CeDdGPgDAIhs2bFBkZKQGDRrEFYqBq2DkAwAs8sc//lHJyck6deqUxowZo4kTJ6p9+/Z2xwK8DqfaAoBFfvvb32rfvn167733VFBQoF69eql79+56/fXXlZ+fb3c8wGsw8gEAFeTcuXNatmyZ5s2bp3379un48eMKDAy0OxZgO0Y+AKCC7Ny5UxkZGdq/f7/at2/PPBDg/1A+AMBCx48f1wsvvKBWrVppxIgRCg4O1qeffqqtW7fK39/f7niAV+CwCwBY5K677tL69es1YMAATZw4UYMGDVL16pxUCPwU5QMALOJ0OtW4cWOFhIRc9aJyO3fuNJgK8D5UcgCwyKxZs+yOAPgERj4AAIBRjHwAQAXIzMzUF198IUlq1aqVoqKibE4EeA/KBwBYaNu2bYqPj9e+ffv0w8Cyw+HQrbfeqoULF6pbt242JwTsx6m2AGCRffv2qV+/fvL399fbb7+tnTt3aufOnfrrX/8qPz8/9evXT/v27bM7JmA75nwAgEXuueceXbp0SX/7298uO9vF7XZr2LBhqlGjht59912bEgLegfIBABZp2LChPvjgA3Xt2rXM7du3b9ddd92lb7/91nAywLtw2AUALFJQUKBGjRpdcXtoaKgKCgoMJgK8E+UDACwSGRmpbdu2XXH7p59+qsjISIOJAO9E+QAAi4waNUrTp0/Xnj17Ltu2e/duzZgxQyNHjrQhGeBdmPMBABYpKipSv3799Omnn6p///5q27at3G639u/fr48++kjdu3fXunXrVKtWLbujAraifACAhS5cuKBXXnlFaWlppS4yNmrUKE2bNk1+fn42JwTsR/kAAABGcYVTALDY+fPn9eGHH3pGPlq3bq2YmBj5+/vbnAzwDpQPALDQ3//+d02aNEknT54stb5BgwZauHChBg8ebFMywHtwtgsAWGTz5s0aMWKEevfurU2bNun06dM6ffq0PvnkE91xxx0aMWKEtm7dandMwHbM+QAAi9x1110KDw/XG2+8Ueb2hx56SMeOHdM///lPw8kA70L5AACLBAcHKyMjQx06dChze2Zmpu6880599913hpMB3oXDLgBgkfPnzyswMPCK24OCglRUVGQwEeCdKB8AYJGWLVtq3bp1V9y+du1atWzZ0mAiwDtRPgDAIhMmTNCMGTPKnNPx/vvv64knntD48ePNBwO8DHM+AMAiJSUlGjlypP72t7+pdevWpS6v/uWXX2ro0KFatmyZnE4+96Fqo3wAgMWWLl1a5uXVR40aZXMywDtQPgDAkK+++kqTJ0/Wv/71L7ujALZi7A8ADCkoKNDatWvtjgHYjvIBAACMonwAAACjKB8AAMAo7moLABa57bbb5HA4rrj93LlzBtMA3ovyAQAWGTp0qN0RAJ/AqbYAAMAo5nwAgCFFRUV6+eWX7Y4B2I6RDwCw0LfffqtPP/1UNWvWVL9+/VStWjVdvHhRf/nLX5SYmKhLly7p5MmTdscEbEX5AACLfPLJJ/rVr36l/Px8ORwOde3aVcnJyRo6dKiqV6+uxx9/XOPGjZO/v7/dUQFbUT4AwCJ9+vRRWFiYnnrqKS1atEh/+tOf1LJlSz3//PMaMWKE3fEAr0H5AACL1K9fXx9//LHatWun8+fPKyAgQOnp6RoyZIjd0QCvwoRTALDId999pwYNGkiS/P39Vbt2bbVv397mVID34TofAGChffv2KScnR5Lkdrt18OBBFRYWltonKirKjmiA1+CwCwBYxOl0yuFwqKz/Vn9Y73A4VFxcbEM6wHsw8gEAFsnKyrI7AuATGPkAAABGMfIBABbJzMy8pv2Y84GqjpEPALDI1eZ8/IA5HwAjHwBgGeZ8ANeGkQ8AAGAUFxkDAIu89NJLOn/+vGd506ZNcrlcnuWCggI98sgjdkQDvAojHwBgkWrVqik7O1shISGSpMDAQO3atUvNmjWTJOXm5iosLIw5H6jyGPkAAIv89LMcn+2AslE+AACAUZQPAABgFKfaAoCFFixYoICAAEnSpUuXlJKS4rnTbUFBgZ3RAK/BhFMAsMgtt9wih8Pxs/txPRBUdZQPAABgFHM+AACAUcz5AACLvPbaa9e03+OPP17BSQDvxmEXALBI06ZNSy0fO3ZMjRs3VvXq//2c53A49NVXX5mOBngVygcAVJA6dero888/91zhFMD3mPMBAACMonwAAACjKB8AAMAoznYBAIvk5+eXWnY4HDp79uxl6wMDA03GArwOE04BwCJOp7PUFU7dbneZy8XFxXbEA7wGIx8AYJH169fbHQHwCYx8AAAAo5hwCgAAjKJ8AAAAoygfAADAKMoHAAAwivIBABXA7Xbr5MmTOnXqlN1RAK9D+QAAC+Xk5Gjs2LGqV6+eGjVqpJCQENWrV08TJ05Ubm6u3fEAr8CptgBgkfz8fHXq1Elnz57VmDFj1KZNG7ndbu3bt09paWmqV6+edu7cqYCAALujArbiImMAYJFXX31V1apV0969e9WwYcNS255++mn16tVLr732mp566imbEgLegcMuAGCR999/X0899dRlxUOSQkJClJCQoFWrVtmQDPAulA8AsMgXX3yh22+//Yrbb7/9dh08eNBgIsA7UT4AwCL5+fmqW7fuFbfXrVv3sjvcAlUR5QMALOJ2u+V0Xvm/VYfDIeb4A5ztAgCWcTqdCgoKksPhKHO72+1Wfn6+iouLDScDvAtnuwCARZKTk+2OAPgERj4AAIBRzPkAAIts27btqodUXC6X3n33XYOJAO/EyAcAWKRatWrKzs5WSEiIJCkwMFC7du1Ss2bNJEm5ubkKCwtjzgeqPEY+AMAiP/0sV9ZnOz7vAZQPADDqSmfCAFUJ5QMAABjFqbYAYKF9+/YpJydH0veHWA4cOKCzZ89Kkk6ePGlnNMBrMOEUACzidDqveBXTH9Y7HA4mnKLKY+QDACySlZVldwTAJzDyAQAAjGLCKQBY5He/+50uXbp0xe1Hjx5V//79DSYCvBPlAwAssmjRInXr1k179uy5bNsbb7yh9u3bq3p1jnYDlA8AsMiePXvUoUMHde3aVYmJiSopKdHRo0cVExOjJ554Qi+//LI++OADu2MCtmPOBwBYbOXKlXrooYcUGhqqrKwsde/eXQsWLFBkZKTd0QCvwMgHAFisZ8+e6tChgzIzM1VSUqKnn36a4gH8COUDACyUlpamdu3aqaSkRPv379fDDz+sAQMGaNq0aSoqKrI7HuAVOOwCABYZPny41qxZo8TERD322GOe9Zs3b9aECRMkSSkpKYqOjrYrIuAVmHYNABbJycnRv//9b7Vs2bLU+ttvv127du3Sk08+qTvvvFMXLlywKSHgHRj5AACLlJSUyOm8+tHsjRs3qnfv3oYSAd6J8gEAAIzisAsAWGTYsGHXtF96enoFJwG8G+UDACwSFBRkdwTAJ3DYBQAAGMV1PgAAgFEcdgEAi0ycOPGa9ktKSqrgJIB347ALAFjE6XQqMjJSt912m672X+uKFSsMpgK8DyMfAGCRhx9+WGlpacrKytKECRN03333KTg42O5YgNdh5AMALORyuZSenq6kpCRt3rxZgwYNUnx8vAYMGCCHw2F3PMArUD4AoIIcOXJEKSkpWrx4sS5duqS9e/cqICDA7liA7TjbBQAqiNPplMPhkNvtVnFxsd1xAK9B+QAAC7lcLqWlpal///5q1aqVdu/erblz5+ro0aOMegD/hwmnAGCRRx55REuWLFF4eLgmTpyotLQ0NWjQwO5YgNdhzgcAWMTpdCoiIkK33XbbVSeXcm8XVHWMfACARcaOHcsZLcA1YOQDAAAYxYRTAABgFOUDAAAYRfkAAABGUT4AAIBRlA8AAGAU5QOAMQ6HQ++9957dMQDYjPIBoJTBgwdr4MCBZW77+OOP5XA4lJmZeV3PnZ2drbi4uGvef/z48Ro6dOh1vRYA70X5AFBKfHy8PvzwQ33zzTeXbUtOTlbXrl0VFRVVrue8cOGCJCk0NFR+fn6W5ATguygfAEr51a9+pYYNGyolJaXU+rNnz2rZsmUaOnSoRo8erZtvvlm1a9dWhw4dlJaWVmrfPn366NFHH9XUqVPVoEEDxcbGSrr8sMuxY8d0zz33qG7dugoODtaQIUP09ddfS5J+//vfa9GiRVq5cqUcDoccDoc2bNigvn376tFHHy31et9++61q1qyptWvXWv73AcB6lA8ApVSvXl1jx45VSkqKfnwB5GXLlqm4uFj33XefunTpovfff1979uzRgw8+qPvvv1/btm0r9TyLFi1SzZo1tWnTJr3++uuXvc7FixcVGxurOnXq6OOPP9amTZsUEBCggQMH6sKFC5oxY4buueceDRw4UNnZ2crOztbtt9+uSZMmKTU1VS6Xy/Ncb7/9tm6++Wb17du34v5iAFiG8gHgMhMnTtThw4eVkZHhWZecnKzhw4crMjJSM2bMUKdOndSsWTM99thjGjhwoN59991Sz9GyZUu99NJLat26tVq3bn3ZayxdulQlJSVasGCBOnTooLZt2yo5OVlHjx7Vhg0bFBAQIH9/f/n5+Sk0NFShoaGqWbOmhg0bJklauXKl57lSUlI0fvx47qsC+AjKB4DLtGnTRrfffruSkpIkSYcOHdLHH3+s+Ph4FRcX67nnnlOHDh0UHBysgIAArVmzRkePHi31HF26dLnqa3z++ec6dOiQ6tSpo4CAAAUEBCg4OFhFRUU6fPjwFb+uVq1auv/++z3Zdu7cqT179mj8+PE39k0DMIa72gIoU3x8vB577DHNmzdPycnJat68ue6880794Q9/0Kuvvqo5c+aoQ4cOuummmzR16lTPpNIf3HTTTVd9/rNnz6pLly565513LtvWsGHDq37tpEmT1KlTJ33zzTdKTk5W3759FRkZWf5vEoAtKB8AynTPPffo//2//6fU1FQtXrxYDz/8sBwOhzZt2qQhQ4bovvvukySVlJToiy++ULt27cr1/J07d9bSpUsVEhKiwMDAMvepWbOmiouLL1vfoUMHde3aVW+99ZZSU1M1d+7c8n+DAGzDYRcAZQoICNDIkSOVkJCg7Oxsz2GNli1b6sMPP9TmzZu1f/9+PfTQQ8rNzS33848ZM0YNGjTQkCFD9PHHHysrK0sbNmzQ448/7jnN95ZbblFmZqYOHjyokydP6uLFi56vnzRpkl588UW53W7dfffdlnzPAMygfAC4ovj4eH333XeKjY1VWFiYJOnpp59W586dFRsbqz59+ig0NPS6LgRWu3Ztbdy4URERERo2bJjatm2r+Ph4FRUVeUZCHnjgAbVu3Vpdu3ZVw4YNtWnTJs/Xjx49WtWrV9fo0aNVq1YtS75fAGY43D8+lw4AfMTXX3+t5s2ba/v27ercubPdcQCUA+UDgE+5ePGiTp06pRkzZigrK6vUaAgA38BhFwA+ZdOmTWrcuLG2b99e5sXLAHg/Rj4AAIBRjHwAAACjKB8AAMAoygcAADCK8gEAAIyifAAAAKMoHwAAwCjKBwAAMIryAQAAjPr/0L+DkYC7SjUAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "new_pumpkins.groupby('Variety')['Price'].mean().plot(kind='bar')" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjMAAAGwCAYAAABcnuQpAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA4NklEQVR4nO3de3xU1b338e9AAiQhM0AuICYhoYkIChgpKgYDKAUpXqj00eZUReU8eAlwwEsLnNaDTz2l9Wi1prSeagVpX0XFGqR4VyDRgMotVcQTEwgEG5CES0ISCbms5w9ORobcw0z27JnP+/Wal2bvPfNba2Um82Vmr70cxhgjAAAAm+phdQMAAADOBWEGAADYGmEGAADYGmEGAADYGmEGAADYGmEGAADYGmEGAADYWojVDfC1xsZGlZaWKjIyUg6Hw+rmAACADjDG6MSJExo8eLB69Gj7s5eADzOlpaWKj4+3uhkAAKALDhw4oLi4uDaPCfgwExkZKen0YDidTotbAwAAOqKyslLx8fHu9/G2BHyYafpqyel0EmYAALCZjpwiwgnAAADA1ggzAADA1ggzAADA1ggzAADA1ggzAADA1ggzAADA1ggzAADA1ggzAADA1ggzAADA1ggzAADA1iwNM8uWLdPYsWMVGRmp2NhYzZgxQwUFBe79R48e1bx58zRs2DCFhYUpISFB8+fPV0VFhYWtRqDbW1aljQWHVVxeHdA1ASBQWLo2U05OjjIzMzV27FjV19dryZIlmjJlinbv3q2IiAiVlpaqtLRUjz/+uEaMGKH9+/frnnvuUWlpqV555RUrm44AdLzmlOavzlduYZl7W3pKjLIyUuUKDw2YmgAQaBzGGGN1I5qUlZUpNjZWOTk5Sk9Pb/GYNWvW6NZbb1V1dbVCQtrPYpWVlXK5XKqoqGChSbTp9j99oryicjWc8ZLo6XAoLTlaq2ZfFjA1AcAOOvP+7VfnzDR9fTRgwIA2j3E6na0GmdraWlVWVnrcgPbsLatSbmGZR6iQpAZjlFtY5pOvf6yoCQCByG/CTGNjoxYsWKC0tDRdfPHFLR5TXl6uX/ziF5ozZ06rj7Ns2TK5XC73LT4+3ldNRgDZf7Smzf37jng/WFhREwACkd+EmczMTO3atUsvvvhii/srKys1ffp0jRgxQkuXLm31cRYvXqyKigr37cCBAz5qMQLJkAHhbe5PjIoIiJoAEIj8IszMnTtX69ev18aNGxUXF9ds/4kTJ3TttdcqMjJS2dnZCg1t/cTI3r17y+l0etyA9gyN6av0lBj1dDg8tvd0OJSeEqOkaO8HCytqAkAgsjTMGGM0d+5cZWdna8OGDUpKSmp2TGVlpaZMmaJevXpp3bp16tOnjwUtRTDIykhVWnK0x7a05GhlZaQGVE0ACDSWzma677779Ne//lWvvfaahg0b5t7ucrkUFhbmDjI1NTXKzs5WRMS3/1KNiYlRz549263BbCZ0VnF5tfYdqVZiVES3fTpiRU0A8Gedef+2NMw4zvp4vcmKFSt0xx13aNOmTZo0aVKLxxQXFysxMbHdGoQZAADspzPv35ZeNK+9HDVx4sR2jwEAAMHNL04ABgAA6CrCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsDXCDAAAsLUQqxsAwH/tLavS/qM1SoyKUFJ0RMDWtKoufQ3MusHUV39BmAHQzPGaU5q/Ol+5hWXubekpMcrKSJUrPDRgalpVl77S10Co60/4mglAM/NX5yuvqNxjW15Rueat3hlQNa2qS1/payDU9SeEGQAe9pZVKbewTA3GeGxvMEa5hWUqLq8OiJpW1aWv9DUQ6vobwgwAD/uP1rS5f98R7/9xtKKmVXXpq29rWlU3mPrqjwgzADwMGRDe5v7EKO+fWGhFTavq0lff1rSqbjD11R8RZgB4GBrTV+kpMerpcHhs7+lwKD0lxiezJKyoaVVd+kpfA6GuvyHMAGgmKyNVacnRHtvSkqOVlZEaUDWtqktf6Wsg1PUnDmPOOmsowFRWVsrlcqmiokJOp9Pq5gC2UlxerX1Hqrv1uhVW1LSqLn0NzLrB1Fdf6sz7N2EGAAD4nc68f/M1EwAAsDXCDAAAsDXCDAAAsDXCDAAAsDVLw8yyZcs0duxYRUZGKjY2VjNmzFBBQYHHMSdPnlRmZqaioqLUt29fzZw5U19//bVFLQ5ee8uqtLHgcLdeGtuKmlbWBQB0jaWrZufk5CgzM1Njx45VfX29lixZoilTpmj37t2KiDg9rWzhwoV6/fXXtWbNGrlcLs2dO1c33XST8vLyrGx60GDl2eBaeRYA7MivpmaXlZUpNjZWOTk5Sk9PV0VFhWJiYvTXv/5VP/zhDyVJ//M//6Phw4dry5YtuuKKK9p9TKZmn5vb//SJ8orKPRYx6+lwKC05WqtmXxYwNa2sCwBozrZTsysqKiRJAwYMkCRt375ddXV1mjx5svuYCy+8UAkJCdqyZUuLj1FbW6vKykqPG7qGlWeDb+VZALAjvwkzjY2NWrBggdLS0nTxxRdLkg4dOqRevXqpX79+HscOHDhQhw4davFxli1bJpfL5b7Fx8f7uukBi5VnfV8XAHDu/CbMZGZmateuXXrxxRfP6XEWL16siooK9+3AgQNeamHwYeVZ39cFAJw7vwgzc+fO1fr167Vx40bFxcW5tw8aNEinTp3S8ePHPY7/+uuvNWjQoBYfq3fv3nI6nR43dA0rzwbfyrMAYEeWhhljjObOnavs7Gxt2LBBSUlJHvvHjBmj0NBQvf/+++5tBQUFKikp0bhx47q7uUGJlWeDa+VZALAjS2cz3XffffrrX/+q1157TcOGDXNvd7lcCgsLkyTde++9euONN7Ry5Uo5nU7NmzdPkrR58+YO1WA2k3ew8iwAoDvZZtVsx1kf6TdZsWKF7rjjDkmnL5r3wAMPaPXq1aqtrdXUqVP1+9//vtWvmc5GmAEAwH5sE2a6A2EGAAD7se11ZgAAADqLMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGwtxOoGwB72llVp/9EaJUZFKCk6ImBrdqSuL9plRU1vtCtQalpVN5j6CvgSYQZtOl5zSvNX5yu3sMy9LT0lRlkZqXKFhwZMzY7U9UW7rKjpjXYFSk2r6gZTX4HuwNdMaNP81fnKKyr32JZXVK55q3cGVM2O1PVFu6yo6Y12BUpNq+oGU1+B7kCYQav2llUpt7BMDcZ4bG8wRrmFZSourw6Imh2pm/vlYa+3y4qa3mhXMP3e6StgD4QZtGr/0Zo29+874v0/flbU7EjdnQeOt7m/K+2yomZH8Hv3bd1g6ivQXQgzaNWQAeFt7k+M8v6Jg1bU7Ejd1Ph+be7vSrusqNkR/N59WzeY+gp0F8IMWjU0pq/SU2LU0+Hw2N7T4VB6SoxPZkFYUbMjddMviPV6u6yo6Y12BdPvnb4C9kCYQZuyMlKVlhztsS0tOVpZGakBVbMjdX3RLitqeqNdgVLTqrrB1FegOziMOetssABTWVkpl8uliooKOZ1Oq5tjW8Xl1dp3pLpbr0thRc2O1PVFu6yo6Y12BUpNq+oGU1+BzurM+zdhBgAA+J3OvH/zNRMAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALC1EKsbYGd7y6q0/2iNEqMilBQdEbA1rapLXwEAHUGY6YLjNac0f3W+cgvL3NvSU2KUlZEqV3howNS0qi599X1fASCQ8DVTF8xfna+8onKPbXlF5Zq3emdA1bSqLn31fV8BIJAQZjppb1mVcgvL1GCMx/YGY5RbWKbi8uqAqGlVXfrq+74CQKAhzHTS/qM1be7fd8T7b0BW1LSqLn31bU0ACESWhpnc3Fxdf/31Gjx4sBwOh9auXeuxv6qqSnPnzlVcXJzCwsI0YsQIPfPMM9Y09n8NGRDe5v7EKO+fvGlFTavq0lff1gSAQGRpmKmurtbo0aO1fPnyFvfff//9euutt/SXv/xFX3zxhRYsWKC5c+dq3bp13dzSbw2N6av0lBj1dDg8tvd0OJSeEuOTmShW1LSqLn31fV8BINBYGmamTZumRx99VD/4wQ9a3L9582bNmjVLEydOVGJioubMmaPRo0frk08+6eaWesrKSFVacrTHtrTkaGVlpAZUTavq0lff9xUAAonDmLPOPrSIw+FQdna2ZsyY4d42Z84c7dy5U2vXrtXgwYO1adMm3XDDDXr99deVnp7e4uPU1taqtrbW/XNlZaXi4+NVUVEhp9Pp1TYXl1dr35Hqbr02iBU1rapLXwEgeFVWVsrlcnXo/duvw0xtba3mzJmjVatWKSQkRD169NCzzz6r22+/vdXHWbp0qR555JFm230RZgAAgG90Jsz49WymrKwsffTRR1q3bp22b9+uJ554QpmZmXrvvfdavc/ixYtVUVHhvh04cKAbWwwAALqb314B+JtvvtGSJUuUnZ2t6dOnS5JGjRql/Px8Pf7445o8eXKL9+vdu7d69+7dnU0FAAAW8ttPZurq6lRXV6cePTyb2LNnTzU2NlrUKgAA4G8s/WSmqqpKRUVF7p+Li4uVn5+vAQMGKCEhQRMmTNBDDz2ksLAwDRkyRDk5OVq1apV+85vfWNhqAADgTyw9AXjTpk2aNGlSs+2zZs3SypUrdejQIS1evFjvvPOOjh49qiFDhmjOnDlauHChHGddm6M1nTmBCAAA+AdbzmbyFcIMAAD2EzCzmQAAANpDmAEAALZGmAEAALZGmAEAALZGmAEAALZGmAEAALZGmAEAALZGmAEAALZGmAEAALZGmAEAALZGmAEAALZm6arZdre3rEr7j9YoMSpCSdERVjcn4Fg1vlbU5bkEAF1HmOmC4zWnNH91vnILy9zb0lNilJWRKld4qIUtCwxWja8VdXkuAcC542umLpi/Ol95ReUe2/KKyjVv9U6LWhRYrBpfK+ryXAKAc0eY6aS9ZVXKLSxTgzEe2xuMUW5hmYrLqy1qWWCwanytqMtzCQC8gzDTSfuP1rS5f98R3oDOhVXja0VdnksA4B2EmU4aMiC8zf2JUZy8eS6sGl8r6vJcAgDvIMx00tCYvkpPiVFPh8Nje0+HQ+kpMcxEOUdWja8VdXkuAYB3EGa6ICsjVWnJ0R7b0pKjlZWRalGLAotV42tFXZ5LAHDuHMacdfZhgKmsrJTL5VJFRYWcTqdXH7u4vFr7jlRzbRAfsWp8rajLc+lbXF8oMOtyLSV0VmfevwkzAPwC1xeir8CZOvP+zddMAPwC1xeir0BXEWYAWI7rC9FX4FwQZgBYjusL+bamVXW5lhK6C2EGgOW4vpBva1pVl2spobsQZgBYjusL0VfgXBBmAPgFri9EX4GuOqep2adOnVJxcbG+853vKCQkxJvt8hqmZgP2wvWFArMu11JCZ/n8OjM1NTWaN2+eXnjhBUnSl19+qaFDh2revHk6//zztWjRoq613AcIMwAA2I/PrzOzePFi/eMf/9CmTZvUp08f9/bJkyfrpZde6spDAgAAdEmXvhtau3atXnrpJV1xxRVynHFi10UXXaQ9e/Z4rXEAAADt6dInM2VlZYqNjW22vbq62iPcAAAA+FqXwsx3v/tdvf766+6fmwLMc889p3HjxnmnZQAAAB3Qpa+ZfvnLX2ratGnavXu36uvr9dvf/la7d+/W5s2blZOT4+02AgAAtKpLn8yMHz9e+fn5qq+v18iRI/XOO+8oNjZWW7Zs0ZgxY7zdRgAAgFad03Vm7ICp2QAA2I/Pp2a/8cYbevvtt5ttf/vtt/Xmm2925SEBAAC6pEthZtGiRWpoaGi23RjjVxfMAwAAga9LYaawsFAjRoxotv3CCy9UUVHROTcKAACgo7oUZlwul/bu3dtse1FRkSIiWHPDl/aWVWljwWEVl1cHfN2XPinRgpd2as22A91WU5JyCg7rt+9/qQ8Ky1rc74uxaO8xg+n3DgCd1aUTgO+++25t2bJF2dnZ+s53viPpdJCZOXOmxo4dq+eee87rDe2qQDkB+HjNKc1fna/cM95g01NilJWRKld4aEDV/eyr4/rB7zervvHbp2ZID4fWZaZpxPkun9SUpP1HqjVjeZ6O1dS5t/UPD9W6zPGKjwr3yVi095jB9HsHgDP5/ATgxx57TBEREbrwwguVlJSkpKQkDR8+XFFRUXr88ce71Gi0bf7qfOUVlXtsyysq17zVOwOu7tlBRpLqG41uWJ7ns5qSmgUZSTpWU6cbln8oyTdj0d5jBtPvHQC6qksXzXO5XNq8ebPeffdd/eMf/1BYWJhGjRql9PR0b7cPOv1Rf24LX3k0GKPcwjIVl1crKdr7X+9ZUfelT0qaBZkm9Y1Ga7Yd0P/5brxXa0qnv1o6O8g0OVZTp5e3lnh9LNob39wvDwfN7x0AzkWXwox0egmDKVOmaMqUKd5sD1qw/2hNm/v3HfHNm4sVdbcUH2lzf96ecp+Emfyvjre5f/PettvVlbFob3x3Hmi7TYH0eweAc9HhMPP0009rzpw56tOnj55++uk2j50/f/45NwzfGjIgvM39iVG+eWOxou64pCit3Vna6v6070R7vaYkXRLXr839Vw5tu11dGYv2xjc1vu02BdLvHQDORYfDzJNPPqkf//jH6tOnj5588slWj3M4HIQZLxsa01fpKTHKKypXwxnna/d0OJSWHO2zfyVbUfeWyxL072t3tfhVU0gPh08+lZGkCcNi1T88tMWvmvqHh+rmsQla/+khr45Fe+ObfkFs0PzeAeBcdPgE4OLiYkVFRbn/v7VbS1O2ce6yMlKVluz5qURacrSyMlIDru66zDSF9HB4bGuazeRL6zLHq/9ZM3WaZjNJvhmL9h4zmH7vTZiGDqCzOj01u66uThdeeKHWr1+v4cOH+6pdXhMoU7ObFJdXa9+RaiVGRXTrv5CtqLtm2wHl7SlX2neiffaJTEs+KCzTjpJjujShv65KiWm23xdj0d5jdvf4WzE1m2noAM7UmffvLl1n5vzzz9d7771HmAEC1O1/+qTVr5lWzb4sYGpaWRdA23x+nZnMzEz9+te/Vn19fZcaCMB/NU3Nbjjr3zlnTs0OhJpW1gXgXV0KM1u3btWrr76qhIQETZ06VTfddJPHraNyc3N1/fXXa/DgwXI4HFq7dm2zY7744gvdcMMNcrlcioiI0NixY1VSUtKVZgPogI5MzQ6EmlbWBeBdXbrOTL9+/TRz5sxzLl5dXa3Ro0frrrvuajEE7dmzR+PHj9fs2bP1yCOPyOl06vPPP1efPn3OuTaAllkxNTuYLj8AwPs6FWYaGxv1X//1X/ryyy916tQpXX311Vq6dKnCwsK6VHzatGmaNm1aq/v//d//Xd///vf12GOPubc1rQUF+MresirtP1rT6sm27e33hZc+KdGW4iPdcjK0FVOzg+nyAwC8r1Nh5j//8z+1dOlSTZ48WWFhYXr66adVVlam559/3usNa2xs1Ouvv66f/OQnmjp1qnbu3KmkpCQtXrxYM2bMaPV+tbW1qq2tdf9cWVnp9bYhMPnjoo9nL7q5dmepFr/6mc8X3bx3wtBmSxo0GKPMib77x4QVNaXT09Dnrd7pUbu7pqED8I5OzWZKSUnRgw8+qLvvvluS9N5772n69On65ptv1KNHl06/+bYhDoeys7PdQeXQoUM677zzFB4erkcffVSTJk3SW2+9pSVLlmjjxo2aMGFCi4+zdOlSPfLII822M5sJ7WlvVosVs16Sl7zR6gUEi375fZ/UtKquVX1tYtVlDwC0zGezmUpKSvT973/7R2Xy5MlyOBwqLW39Mu9d1djYKEm68cYbtXDhQl1yySVatGiRrrvuOj3zzDOt3m/x4sWqqKhw3w4cOOD1tiHwtDerpWnRx+6c9dKRRTd9wYq6VvX1TEnREZo0LJYgA9hQp8JMfX19s5NvQ0NDVVfX8mrD5yI6OlohISEaMWKEx/bhw4e3OZupd+/ecjqdHjegPd5Y9NHbOrLopi9YUdeqvgIIDJ06Z8YYozvuuEO9e/d2bzt58qTuueceRUR8+6+ZV1999Zwb1qtXL40dO1YFBQUe27/88ksNGTLknB8fOJM/Lvpo1aKbVtS1qq8AAkOnPpmZNWuWYmNj5XK53Ldbb71VgwcP9tjWUVVVVcrPz1d+fr6k02s+5efnuz95eeihh/TSSy/p2WefVVFRkX73u9/p73//u+67777ONBtoV9Oslp4OzzWhejocSk+JcS/62Np+Xy26efYaVU18ueimFXWt6iuAwNCl5Qy8ZdOmTZo0aVKz7bNmzdLKlSslSc8//7yWLVumr776SsOGDdMjjzyiG2+8scM1WM4AHVVRU9dsVsuZs5Xa2+8Lu/9ZoRuW53mcT9K06KYvZzNZUdeqvgLwTz5fm8lOCDPoLH9b9FGybtFNK+pa1VcA/oUwcwbCDAAA9uPzhSYBAAD8BWEGAADYGmEGAADYGmEGAADYWqcumgege1ewbpJTcFj5Xx3XpQn9dVVKTLfUtKquVX39f+s+1+a95RqfHKOfXTei/TvYtKYk/e79QuXtKddVKTG6b1Jyt9S04nVjVV1er92P2UxAB529grXk++ug7D9SrRnL83Ss5tslQ/qHh2pd5njFR7V91WK71bWqr+/sOqg5f9nRbPufbv+urhkxMGBqStLmojL9y3OfNNv+0v+9Qpd/J8onNa143VhVl9erd2symwnwgbP/MEqnF0G8YXmez2qe/cdCko7V1OmG5R/6rKZVda3qa0uhQpJmr9oWUDUltRhkJOmWZz/yWU0rXjdW1eX16vu+toYwA3SAFas65xQcbvbHosmxmjp9cMaViO1e16q+/r91n7e5/9H1uwOipnT6q6W2/H5jkddrBtPK77xefVuzPYQZoAOsWNU5/6vjbe7fUXLM6zWtqmtVXzfvbfv39mGR9/8oW1FTav856os3oGBa+Z3Xq29rtocwA3TAuKS2zyfwxarOl8T1a3P/pQn9vV7TqrpW9fXKoW3/3sYne/+ERitqSu0/R31x8qYVrxur6vJ69W3N9hBmgA6wYlXnCcNi1b+VBSz7h4f6bOaAFXWt6uvDN1zU5n5fzDCyoqYkzb0mpc39vpjVFEwrv/N69W3N9hBmgA5al5nW7A9k0+wI39Uc3+yPRtOMAV+yoq5Vff3T7d/t1Ha71pROz1rqzHZvsOJ1Y1VdXq++72trmJoNdJIVqzp/UFimHSXHuv1aDlbUtaqvj67frQ+Lyrr1mi9W1JROn+z7QWFZt15nJphWfuf16h2smn0GwgwAAPbDdWYAAEDQIMwAAABbI8wAAABbI8wAAABbY9VsALDI3rIq7T9ao8SoCCVFR1jdHMC2CDMA0M2O15zS/NX5yj1jCYH0lBhlZaTK1crFyAC0jq+ZAKCbzV+dr7wiz/WB8orKNW/1TotaBNgbYQYAutHesirlFpap4axLfDUYo9zCMhWXV1vUMsC+CDMA0I32H61pc/++I4QZoLMIMwDQjYYMCG9zf2IUJwIDnUWYAYBuNDSmr9JTYtTT4bkIYk+HQ+kpMcxqArqAMAMA3SwrI1VpydEe29KSo5WVkWpRiwB7Y2o2AHQzV3ioVs2+TMXl1dp3pJrrzADniDADABZJiibEAN7A10wAAMDWCDMAAMDWCDMAAMDWCDMAAMDWOAEYOEtOwWHlf3Vclyb011UpMQFbEwACBWEG+F/7j1RrxvI8Haupc2/rHx6qdZnjFR/V9lVb7VQTAAINXzMB/+vsUCFJx2rqdMPyDwOqJgAEGsIMoNNf85wdKpocq6nTB4VlAVETAAIRYQaQlP/V8Tb37yg5FhA1ASAQEWYASZfE9Wtz/6UJ/QOiJgAEIsIMIGnCsFj1Dw9tcV//8FCfzDCyoiYABCLCDPC/1mWObxYummYWBVJNAAg0DmOMsboRvlRZWSmXy6WKigo5nU6rmwMb+KCwTDtKjnXrNV+sqAkA/qwz79+EGQAA4Hc68/7N10wAAMDWCDMAAMDWCDMAAMDWCDMAAMDWWGgS6KRgWlWbvgZeTavq0tfArLu3rEr7j9YoMSpCSdER3VKzJYQZoIOCaVVt+kpf7VzTqrrB1NfjNac0f3W+cs9YQy49JUZZGalytXIxUF/iayagg4JpVW36Sl/tXNOqusHU1/mr85VXVO6xLa+oXPNW7/RZzbZYGmZyc3N1/fXXa/DgwXI4HFq7dm2rx95zzz1yOBx66qmnuq19QJNgWlWbvvq2Ln31bU2r6gZTX/eWVSm3sEwNZ12mrsEY5RaWqbi82us122NpmKmurtbo0aO1fPnyNo/Lzs7WRx99pMGDB3dTywBPwbSqNn31bV366tuaVtUNpr7uP1rT5v59R7o/zFh6zsy0adM0bdq0No/55z//qXnz5untt9/W9OnT233M2tpa1dbWun+urKw853YCwbSqNn31bV366tuaVtUNpr4OGdD2eTiJUd1/IrBfnzPT2Nio2267TQ899JAuuuiiDt1n2bJlcrlc7lt8fLyPW4lgEEyratNX39alr76taVXdYOrr0Ji+Sk+JUU+Hw2N7T4dD6Skxlsxq8usw8+tf/1ohISGaP39+h++zePFiVVRUuG8HDhzwYQsRTIJpVW36Sl/tXNOqusHU16yMVKUlR3tsS0uOVlZGqs9qtsVvFpp0OBzKzs7WjBkzJEnbt2/X9OnTtWPHDve5MomJiVqwYIEWLFjQ4cdloUl4WzCtqk1fA6+mVXXpa2DWLS6v1r4j1T65zowtV80+O8w89dRTuv/++9Wjx7cfHjU0NKhHjx6Kj4/Xvn37OvS4hBkAAOynM+/ffnvRvNtuu02TJ0/22DZ16lTddtttuvPOOy1qFQAA8DeWhpmqqioVFRW5fy4uLlZ+fr4GDBighIQERUVFeRwfGhqqQYMGadiwYd3dVAAA4KcsDTPbtm3TpEmT3D/ff//9kqRZs2Zp5cqVFrUKAADYiaVhZuLEierMKTsdPU8G8CVfLKzmL4u1nc2Kdlk1FsHUVyDQ+O05M4C/8cXCav62WJuV7bJqLIKpr0Cg8uvrzAD+xBcLq/nbYm1NrGiXVWMRTH0FAhVhBugAXyys5o+LtVnVLqvGIpj6CgQywgzQAb5YWM0fF2uTrGmXVWMRTH0FAhlhBugAXyys5o+LtUnWtMuqsQimvgKBjDADdIAvFlbzx8XarGqXVWMRTH0FAhlhBuggXyys5m+LtTWxol1WjUUw9bXJ3rIqbSw43K3n51hR06q6VvU1mPnN2ky+wtpM8DZfLKzmy8XazoUV7bJqLIKhr8E0DT2Y+hqobLnQpK8QZgDgtNv/9Inyiso9ZlL1dDiUlhytVbMvC5iaVtW1qq+BqjPv33zNBABBIJimoQdTX3EaYQYAgkAwTUMPpr7iNMIMAASBYJqGHkx9xWmEGQAIAsE0DT2Y+orTCDMAECSCaRp6MPUVzGYCgKATDNPQrazrr5dasBumZp+BMAMAgP0wNRsAAAQNwgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1wgwAALA1S8NMbm6urr/+eg0ePFgOh0Nr165176urq9NPf/pTjRw5UhERERo8eLBuv/12lZaWWtdgAADgdywNM9XV1Ro9erSWL1/ebF9NTY127Nihn//859qxY4deffVVFRQU6IYbbrCgpQAAwF85jDHG6kZIksPhUHZ2tmbMmNHqMVu3btVll12m/fv3KyEhoUOPW1lZKZfLpYqKCjmdTi+1FgAA+FJn3r9DuqlNXlFRUSGHw6F+/fq1ekxtba1qa2vdP1dWVnZDywAAgFVscwLwyZMn9dOf/lQZGRltJrRly5bJ5XK5b/Hx8d3YSgAA0N1sEWbq6up08803yxijP/zhD20eu3jxYlVUVLhvBw4c6KZWAvCGvWVV2lhwWMXl1VY3BYBN+P3XTE1BZv/+/dqwYUO735v17t1bvXv37qbWAfCW4zWnNH91vnILy9zb0lNilJWRKld4qIUtA+Dv/PqTmaYgU1hYqPfee09RUVFWNwmAj8xfna+8onKPbXlF5Zq3eqdFLQJgF5Z+MlNVVaWioiL3z8XFxcrPz9eAAQN03nnn6Yc//KF27Nih9evXq6GhQYcOHZIkDRgwQL169bKq2QC8bG9ZlccnMk0ajFFuYZmKy6uVFB1hQcsA2IGlYWbbtm2aNGmS++f7779fkjRr1iwtXbpU69atkyRdcsklHvfbuHGjJk6c2F3NBOBj+4/WtLl/3xHCDIDWWRpmJk6cqLYuc+Mnl8AB4GNDBoS3uT8xiiADoHV+fc4MgOAwNKav0lNi1NPh8Nje0+FQekoMn8oAaBNhBoBfyMpIVVpytMe2tORoZWWkWtQiAHbh91OzAQQHV3ioVs2+TMXl1dp3pFqJURF8IgOgQwgzAPxKUjQhBkDn8DUTAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwtRCrGwAA/iCn4LDyvzquSxP666qUmICtKUl7y6q0/2iNEqMilBQd0W11AV8hzAAIavuPVGvG8jwdq6lzb+sfHqp1meMVHxUeMDUl6XjNKc1fna/cwjL3tvSUGGVlpMoVHuqzuoCv8TUTgKB2dqiQpGM1dbph+YcBVVOS5q/OV15Ruce2vKJyzVu906d1AV8jzAAIWjkFh5uFiibHaur0wRmfYNi5pnT6q6XcwjI1GOOxvcEY5RaWqbi82id1ge5AmAEQtPK/Ot7m/h0lxwKipiTtP1rT5v59RwgzsC/CDICgdUlcvzb3X5rQPyBqStKQAW2fi5MYxYnAsC/CDICgNWFYrPq3cuJr//BQn8wwsqKmJA2N6av0lBj1dDg8tvd0OJSeEsOsJtgaYQZAUFuXOb5ZuGiaWRRINSUpKyNVacnRHtvSkqOVlZHq07qArzmMOetssABTWVkpl8uliooKOZ1Oq5sDwE99UFimHSXHuvWaL1bUlKTi8mrtO1LNdWbg1zrz/k2YAQAAfqcz7998zQQAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGyNMAMAAGwtxOoG+FrTag2VlZUWtwQAAHRU0/t2R1ZdCvgwc+LECUlSfHy8xS0BAACddeLECblcrjaPCfiFJhsbG1VaWqrIyEg5HA5L21JZWan4+HgdOHCARS+9gPH0PsbUuxhP72I8vc+fx9QYoxMnTmjw4MHq0aPts2IC/pOZHj16KC4uzupmeHA6nX73pLEzxtP7GFPvYjy9i/H0Pn8d0/Y+kWnCCcAAAMDWCDMAAMDWCDPdqHfv3vqP//gP9e7d2+qmBATG0/sYU+9iPL2L8fS+QBnTgD8BGAAABDY+mQEAALZGmAEAALZGmAEAALZGmAEAALZGmDlHy5Yt09ixYxUZGanY2FjNmDFDBQUFLR5rjNG0adPkcDi0du1aj30lJSWaPn26wsPDFRsbq4ceekj19fXd0AP/0tHx3LJli66++mpFRETI6XQqPT1d33zzjXv/0aNH9eMf/1hOp1P9+vXT7NmzVVVV1Z1d8RsdGdNDhw7ptttu06BBgxQREaFLL71Uf/vb3zyOYUxP+8Mf/qBRo0a5LzI2btw4vfnmm+79J0+eVGZmpqKiotS3b1/NnDlTX3/9tcdj8Hr/VlvjefToUc2bN0/Dhg1TWFiYEhISNH/+fFVUVHg8BuPpqb3naJNAek8izJyjnJwcZWZm6qOPPtK7776ruro6TZkyRdXV1c2Ofeqpp1pcUqGhoUHTp0/XqVOntHnzZr3wwgtauXKlHn744e7ogl/pyHhu2bJF1157raZMmaJPPvlEW7du1dy5cz0ud/3jH/9Yn3/+ud59912tX79eubm5mjNnjhVdslxHxvT2229XQUGB1q1bp88++0w33XSTbr75Zu3cudN9DGN6WlxcnH71q19p+/bt2rZtm66++mrdeOON+vzzzyVJCxcu1N///netWbNGOTk5Ki0t1U033eS+P693T22NZ2lpqUpLS/X4449r165dWrlypd566y3Nnj3bfX/Gs7n2nqNNAuo9ycCrDh8+bCSZnJwcj+07d+40559/vjl48KCRZLKzs9373njjDdOjRw9z6NAh97Y//OEPxul0mtra2u5qul9qaTwvv/xy87Of/azV++zevdtIMlu3bnVve/PNN43D4TD//Oc/fdpeO2hpTCMiIsyqVas8jhswYIB59tlnjTGMaXv69+9vnnvuOXP8+HETGhpq1qxZ4973xRdfGElmy5Ytxhhe7x3RNJ4tefnll02vXr1MXV2dMYbx7KizxzTQ3pP4ZMbLmj7+HDBggHtbTU2N/uVf/kXLly/XoEGDmt1ny5YtGjlypAYOHOjeNnXqVFVWVjZL0sHm7PE8fPiwPv74Y8XGxurKK6/UwIEDNWHCBH344Yfu+2zZskX9+vXTd7/7Xfe2yZMnq0ePHvr444+7twN+qKXn6JVXXqmXXnpJR48eVWNjo1588UWdPHlSEydOlMSYtqahoUEvvviiqqurNW7cOG3fvl11dXWaPHmy+5gLL7xQCQkJ2rJliyRe7205ezxbUlFRIafTqZCQ00sLMp5ta2lMA/E9KeAXmuxOjY2NWrBggdLS0nTxxRe7ty9cuFBXXnmlbrzxxhbvd+jQIY8njST3z4cOHfJdg/1cS+O5d+9eSdLSpUv1+OOP65JLLtGqVat0zTXXaNeuXUpJSdGhQ4cUGxvr8VghISEaMGBAUI+n1Ppz9OWXX9Ytt9yiqKgohYSEKDw8XNnZ2UpOTpYkxvQsn332mcaNG6eTJ0+qb9++ys7O1ogRI5Sfn69evXqpX79+HscPHDjQPU683ptrbTzPVl5erl/84hceX28yni1ra0wD8T2JMONFmZmZ2rVrl8enBOvWrdOGDRs8zj1Ax7Q0no2NjZKku+++W3feeackKTU1Ve+//76ef/55LVu2zJK22kVLYypJP//5z3X8+HG99957io6O1tq1a3XzzTfrgw8+0MiRIy1qrf8aNmyY8vPzVVFRoVdeeUWzZs1STk6O1c2yrdbG88xAU1lZqenTp2vEiBFaunSpdY21idbGtKioKCDfkwgzXjJ37lz3SZFxcXHu7Rs2bNCePXua/Utt5syZuuqqq7Rp0yYNGjRIn3zyicf+ptkPLX0EGAxaG8/zzjtPkpr9q2348OEqKSmRdHrMDh8+7LG/vr5eR48eDdrxlFof0z179uh3v/uddu3apYsuukiSNHr0aH3wwQdavny5nnnmGcb0LL169XJ/ajVmzBht3bpVv/3tb3XLLbfo1KlTOn78uMdr/uuvv3aPE6/35lobz//+7/+WJJ04cULXXnutIiMjlZ2drdDQUPd9Gc+WtTamYWFhAfmexDkz58gYo7lz5yo7O1sbNmxQUlKSx/5Fixbp008/VX5+vvsmSU8++aRWrFghSRo3bpw+++wzjzeLd999V06ns8WPWgNZe+OZmJiowYMHN5ta/OWXX2rIkCGSTo/n8ePHtX37dvf+DRs2qLGxUZdffrnvO+Fn2hvTmpoaSfKYDSZJPXv2dH8Sxpi2rbGxUbW1tRozZoxCQ0P1/vvvu/cVFBSopKTEfb4Cr/f2NY2ndPoTmSlTpqhXr15at26d+vTp43Es49kxTWMasO9JFp+AbHv33nuvcblcZtOmTebgwYPuW01NTav30VlnjtfX15uLL77YTJkyxeTn55u33nrLxMTEmMWLF3dDD/xLR8bzySefNE6n06xZs8YUFhaan/3sZ6ZPnz6mqKjIfcy1115rUlNTzccff2w+/PBDk5KSYjIyMqzokuXaG9NTp06Z5ORkc9VVV5mPP/7YFBUVmccff9w4HA7z+uuvux+HMT1t0aJFJicnxxQXF5tPP/3ULFq0yDgcDvPOO+8YY4y55557TEJCgtmwYYPZtm2bGTdunBk3bpz7/rzePbU1nhUVFebyyy83I0eONEVFRR7P3/r6emMM49mS9p6jZwuE9yTCzDmS1OJtxYoVbd7nzCeOMcbs27fPTJs2zYSFhZno6GjzwAMPuKceBpOOjueyZctMXFycCQ8PN+PGjTMffPCBx/4jR46YjIwM07dvX+N0Os2dd95pTpw40Y098R8dGdMvv/zS3HTTTSY2NtaEh4ebUaNGNZuqzZiedtddd5khQ4aYXr16mZiYGHPNNdd4vEl888035r777jP9+/c34eHh5gc/+IE5ePCgx2Pwev9WW+O5cePGVp+/xcXF7sdgPD219xw9WyC8JzmMMaZ7PgMCAADwPs6ZAQAAtkaYAQAAtkaYAQAAtkaYAQAAtkaYAQAAtkaYAQAAtkaYAQAAtkaYAQAAtkaYARAw8vLyNHLkSIWGhmrGjBlWNwdANyHMAOi0O+64Qw6HQw6HQ6GhoRo4cKC+973v6fnnn3cvTulN69ev14QJExQZGanw8HCNHTtWK1eubHbc/fffr0suuUTFxcVauHChQkND9eGHH3ocU11draFDh+rBBx/0ejsBWIMwA6BLrr32Wh08eFD79u3Tm2++qUmTJunf/u3fdN1116m+vt5rdbKysnTjjTcqLS1NH3/8sT799FP96Ec/0j333NMskOzZs0dXX3214uLiNGHCBM2bN0933HGHqqur3cf85Cc/UVhYmB599FGvtbHJqVOnvP6YADrA6sWhANjPrFmzzI033ths+/vvv28kmWeffdYYY8wTTzxhLr74YhMeHm7i4uLMvffe616csqqqykRGRpo1a9Z4PEZ2drYJDw83lZWVpqSkxISGhpr777+/Wa2nn37aSDIfffSRKS4ubnEhzW+++cYMHz7cZGZmGmOM2bBhg+nVq5fZtm2baWhoML/85S9NYmKi6dOnjxk1apRHW+rr681dd93l3n/BBReYp556qsVxePTRR815551nEhMTz2lcAXQNn8wA8Jqrr75ao0eP1quvvipJ6tGjh55++ml9/vnneuGFF7Rhwwb95Cc/kSRFREToRz/6kVasWOHxGCtWrNAPf/hDRUZG6pVXXlFdXV2LXwndfffd6tu3r1avXq34+HgdPHhQTqdTTz31lA4ePKhbbrlFffr00apVq/THP/5Rr732mu666y4tWbJEY8aM0bJly7Rq1So988wz+vzzz7Vw4ULdeuutysnJkSQ1NjYqLi5Oa9as0e7du/Xwww9ryZIlevnllz3a8f7776ugoEDvvvuu1q9f74thBdAeq9MUAPtp7ZMZY4y55ZZbzPDhw1vct2bNGhMVFeX++eOPPzY9e/Y0paWlxhhjvv76axMSEmI2bdpkjDHmnnvuMS6Xq9V2jBo1ykybNs39s8vlMitWrGh23MMPP2x69OhhxowZY+rq6szJkydNeHi42bx5s8dxs2fPNhkZGa3Wy8zMNDNnznT/PGvWLDNw4EBTW1vb6n0A+B6fzADwKmOMHA6HJOm9997TNddco/PPP1+RkZG67bbbdOTIEdXU1EiSLrvsMl100UV64YUXJEl/+ctfNGTIEKWnp3u1TT//+c/V2NioRYsWKSQkREVFRaqpqdH3vvc99e3b131btWqV9uzZ477f8uXLNWbMGMXExKhv37764x//qJKSEo/HHjlypHr16uXV9gLoHMIMAK/64osvlJSUpH379um6667TqFGj9Le//U3bt2/X8uXLJXmeKPuv//qv7plJK1as0J133ukOQxdccIEqKipUWlrarM6pU6e0Z88eXXDBBe22KSQkxOO/VVVVkqTXX39d+fn57tvu3bv1yiuvSJJefPFFPfjgg5o9e7beeecd5efn684772x2km9ERERnhgeADxBmAHjNhg0b9Nlnn2nmzJnavn27Ghsb9cQTT+iKK67QBRdc0GIoufXWW7V//349/fTT2r17t2bNmuXeN3PmTIWGhuqJJ55odr9nnnlG1dXVysjI6HQ7R4wYod69e6ukpETJycket/j4eEmnr1lz5ZVX6r777lNqaqqSk5M9PrUB4D9CrG4AAHuqra3VoUOH1NDQoK+//lpvvfWWli1bpuuuu0633367du3apbq6OmVlZen6669XXl6ennnmmWaP079/f91000166KGHNGXKFMXFxbn3JSQk6LHHHtMDDzygPn366LbbblNoaKhee+01LVmyRA888IAuv/zyTrc9MjJSDz74oBYuXKjGxkaNHz9eFRUVysvLk9Pp1KxZs5SSkqJVq1bp7bffVlJSkv785z9r69atSkpKOqdxA+ADVp+0A8B+Zs2a5Z4CHRISYmJiYszkyZPN888/bxoaGtzH/eY3vzHnnXeeCQsLM1OnTjWrVq0yksyxY8c8Hq9pSvfLL7/cYr3XXnvNXHXVVSYiIsL06dPHjBkzxjz//PPNjmvtBGBjjJFksrOz3T83Njaap556ygwbNsyEhoaamJgYM3XqVJOTk2OMMebkyZPmjjvuMC6Xy/Tr18/ce++9ZtGiRWb06NEe49DaidAAuo/DGGMsTVMAgt6f//xnLVy4UKWlpZxMC6DT+JoJgGVqamp08OBB/epXv9Ldd99NkAHQJZwADMAyjz32mC688EINGjRIixcvtro5AGyKr5kAAICt8ckMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwNcIMAACwtf8PBnCWtEJg2EcAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "pie_pumpkins = new_pumpkins[new_pumpkins['Variety']=='PIE TYPE']\n", + "pie_pumpkins.plot.scatter('DayOfYear','Price') " + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Index: 144 entries, 70 to 1630\n", + "Data columns (total 8 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 Month 144 non-null int32 \n", + " 1 DayOfYear 144 non-null int64 \n", + " 2 Variety 144 non-null object \n", + " 3 City 144 non-null object \n", + " 4 Package 144 non-null object \n", + " 5 Low Price 144 non-null float64\n", + " 6 High Price 144 non-null float64\n", + " 7 Price 144 non-null float64\n", + "dtypes: float64(3), int32(1), int64(1), object(3)\n", + "memory usage: 9.6+ KB\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_5488\\3144308612.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " pie_pumpkins.dropna(inplace=True)\n" + ] + } + ], + "source": [ + "pie_pumpkins.dropna(inplace=True)\n", + "pie_pumpkins.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.linear_model import LinearRegression\n", + "from sklearn.metrics import mean_squared_error\n", + "from sklearn.model_selection import train_test_split" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "X = pie_pumpkins['DayOfYear'].to_numpy().reshape(-1,1)\n", + "y = pie_pumpkins['Price']\n" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "" + ], + "text/plain": [ + "LinearRegression()" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lin_reg = LinearRegression()\n", + "lin_reg.fit(X_train,y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mean error: 2.77 (17.2%)\n" + ] + } + ], + "source": [ + "pred = lin_reg.predict(X_test)\n", + "\n", + "mse = np.sqrt(mean_squared_error(y_test,pred))\n", + "print(f'Mean error: {mse:3.3} ({mse/np.mean(pred)*100:3.3}%)')" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model determination: 0.04460606335028361\n" + ] + } + ], + "source": [ + "score = lin_reg.score(X_train,y_train)\n", + "print('Model determination: ', score)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiQAAAGdCAYAAAAi3mhQAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAto0lEQVR4nO3df3RU5b3v8c8kkIQfmQlBQ4JJIEctGoMUrGgQEZTyo5woYq8WC0XlHCtN8KC9VjlLi1n2NtLjafW0FHttlWO5SEttKKhNSw0EqPwSyNGIBdEolCSgxsyEQELI7PsHzeiQn5OZzLMn836tlcWaPc/M/mY/w+xP9t7PfhyWZVkCAAAwKMZ0AQAAAAQSAABgHIEEAAAYRyABAADGEUgAAIBxBBIAAGAcgQQAABhHIAEAAMb1M13A+bxer6qqqpSYmCiHw2G6HAAA0A2WZam+vl7Dhw9XTEzgxztsF0iqqqqUkZFhugwAANADR48eVXp6esCvs10gSUxMlHTuF3I6nYarAQAA3eHxeJSRkeHbjwfKdoGk9TSN0+kkkAAAEGF6erkFF7UCAADjCCQAAMA4AgkAADCOQAIAAIwjkAAAAOMIJAAAwDgCCQAAMI5AAgAAjLPdjdEAE1q8lnZX1upEfaNSEhM0PitZsTHMpQQA4RLQEZKioiJdffXVSkxMVEpKimbPnq2DBw/6nq+trdXixYs1atQoDRgwQJmZmbr//vvldrtDXjgQKiUV1Zq4vFRzn9upf1tbrrnP7dTE5aUqqag2XRoARI2AAklZWZny8/O1c+dObdq0Sc3NzZo2bZoaGhoknZsYr6qqSk899ZQqKiq0atUqlZSUaOHChb1SPBCskopqLVq9T9XuRr/lNe5GLVq9j1ACAGHisCzL6umLP/74Y6WkpKisrEyTJk1qt826des0b948NTQ0qF+/rs8QeTweuVwuud1u5rJBr2rxWpq4vLRNGGnlkJTqStD2h2/k9A0AdCHY/XdQF7W2nopJTk7utI3T6ewwjDQ1Ncnj8fj9AOGwu7K2wzAiSZakanejdlfWhq8oAIhSPQ4kXq9XS5Ys0XXXXaecnJx223zyySd64okndO+993b4PkVFRXK5XL6fjIyMnpYEBOREfcdhpCftAAA91+NAkp+fr4qKCq1du7bd5z0ej2bNmqXs7Gw9/vjjHb7P0qVL5Xa7fT9Hjx7taUlAQFISE0LaDgDQcz0a9ltQUKBXXnlFW7duVXp6epvn6+vrNWPGDCUmJqq4uFj9+/fv8L3i4+MVHx/fkzKAoIzPSlaaK0E17ka1dyFV6zUk47M6PiUJAAiNgI6QWJalgoICFRcXq7S0VFlZWW3aeDweTZs2TXFxcdqwYYMSEvjrEvYUG+PQsrxsSefCxxe1Pl6Wl80FrQAQBgEFkvz8fK1evVpr1qxRYmKiampqVFNTo9OnT0v6PIw0NDToV7/6lTwej69NS0tLr/wCQDBm5KRp5bxxSnX5B+dUV4JWzhunGTlphioDgOgS0LBfh6P9vxRfeOEF3XXXXdqyZYumTJnSbpvKykqNHDmyy3Uw7BcmcKdWAAhOsPvvgK4h6Sq7TJ48ucs2gB3FxjiUe/FQ02UAQNRicj0AAGAcgQQAABhHIAEAAMYRSAAAgHEEEgAAYByBBAAAGEcgAQAAxhFIAACAcQQSAABgHIEEAAAYRyABAADGEUgAAIBxBBIAAGAcgQQAABhHIAEAAMYRSAAAgHEEEgAAYByBBAAAGEcgAQAAxhFIAACAcQQSAABgHIEEAAAYRyABAADGEUgAAIBxBBIAAGAcgQQAABhHIAEAAMYRSAAAgHEEEgAAYByBBAAAGEcgAQAAxhFIAACAcQQSAABgHIEEAAAYRyABAADG9TNdAIDAtHgt7a6s1Yn6RqUkJmh8VrJiYxxRWwfsic8HAkUgASJISUW1CjceULW70bcszZWgZXnZmpGTFnV1wJ74fKAnOGUDRIiSimotWr3P70tekmrcjVq0ep9KKqqjqg7YE58P9BSBBIgALV5LhRsPyGrnudZlhRsPqMXbXou+Vwfsic8HgkEgASLA7sraNn9xfpElqdrdqN2VtVFRB+yJzweCQSABIsCJ+o6/5HvSLtLrgD3x+UAwCCRABEhJTAhpu0ivA/bE5wPBIJAAEWB8VrLSXAnqaNCkQ+dGMYzPSo6KOmBPfD4QDAIJEAFiYxxalpctSW2+7FsfL8vL7vX7PNilDtgTnw8Eg0ACRIgZOWlaOW+cUl3+h7tTXQlaOW9c2O7vYJc6YE98PtBTDsuybDX+yuPxyOVyye12y+l0mi4HsB273AHTLnXAnvh8RJ9g99/cqRWIMLExDuVePNR0GbapA/bE5wOB4pQNAAAwjkACAACM45RNmHFeFQCAtgI6QlJUVKSrr75aiYmJSklJ0ezZs3Xw4EG/No2NjcrPz9fQoUM1ePBg3XbbbTp+/HhIi45UJRXVmri8VHOf26l/W1uuuc/t1MTlpUw2BQCIegEFkrKyMuXn52vnzp3atGmTmpubNW3aNDU0NPjaPPDAA9q4caPWrVunsrIyVVVVac6cOSEvPNIwAyYAAB0Latjvxx9/rJSUFJWVlWnSpElyu9268MILtWbNGn3961+XJP3tb3/T5Zdfrh07dujaa6/t8j374rDfFq+lictLO5x0yqFzY/S3P3wjp28AABEp2P13UBe1ut1uSVJy8rnbAO/du1fNzc2aOnWqr81ll12mzMxM7dixo933aGpqksfj8fvpa5gBEwCAzvU4kHi9Xi1ZskTXXXedcnJyJEk1NTWKi4tTUlKSX9thw4appqam3fcpKiqSy+Xy/WRkZPS0JNtiBkwAADrX40CSn5+viooKrV27NqgCli5dKrfb7fs5evRoUO9nR8yACQBA53o07LegoECvvPKKtm7dqvT0dN/y1NRUnTlzRnV1dX5HSY4fP67U1NR23ys+Pl7x8fE9KSNitM6AWeNuVHsX7LReQ8IMmACAaBXQERLLslRQUKDi4mKVlpYqKyvL7/mrrrpK/fv31+uvv+5bdvDgQR05ckS5ubmhqTgCMQMmAACdC+gISX5+vtasWaM//OEPSkxM9F0X4nK5NGDAALlcLi1cuFAPPvigkpOT5XQ6tXjxYuXm5nZrhE1f1joDZuHGA34XuKa6ErQsL5sZMAEAUS2gYb8OR/t/wb/wwgu66667JJ27Mdp3v/tdvfTSS2pqatL06dP185//vMNTNufri8N+v4g7tQIA+qJg999B3YekN/T1QAIAQF9k9D4kAAAAoUAgAQAAxhFIAACAcQQSAABgHIEEAAAYRyABAADGEUgAAIBxBBIAAGAcgQQAABhHIAEAAMYRSAAAgHEEEgAAYByBBAAAGEcgAQAAxhFIAACAcQQSAABgHIEEAAAYRyABAADG9TNdAAAEo8VraXdlrU7UNyolMUHjs5IVG+MwXRaAABFIAESskopqFW48oGp3o29ZmitBy/KyNSMnzWBlAALFKRsAEamkolqLVu/zCyOSVONu1KLV+1RSUW2oMgA9QSABEHFavJYKNx6Q1c5zrcsKNx5Qi7e9FgDsiEACIOLsrqxtc2TkiyxJ1e5G7a6sDV9RAIJCIAEQcU7UdxxGetIOgHkEEgARJyUxIaTtAJhHIAEQccZnJSvNlaCOBvc6dG60zfis5HCWBSAIBBIAESc2xqFledmS1CaUtD5elpfN/UiACEIgARCRZuSkaeW8cUp1+Z+WSXUlaOW8cdyHBIgw3BgNQMSakZOmr2ancqdWoA8gkACIaLExDuVePNR0GQCCxCkbAABgHIEEAAAYRyABAADGEUgAAIBxBBIAAGAcgQQAABhHIAEAAMYRSAAAgHEEEgAAYByBBAAAGEcgAQAAxhFIAACAcQQSAABgXNTM9tvitZii/AvYHgAAO4mKQFJSUa3CjQdU7W70LUtzJWhZXrZm5KQZrMwMtgcAwG76/CmbkopqLVq9z2/nK0k17kYtWr1PJRXVhiozg+0BALCjPh1IWryWCjcekNXOc63LCjceUIu3vRZ9D9sDAGBXfTqQ7K6sbXMk4IssSdXuRu2urA1fUQaxPQAAdtWnA8mJ+o53vj1pF+nYHgAAuwo4kGzdulV5eXkaPny4HA6H1q9f7/f8yZMnVVBQoPT0dA0YMEDZ2dl69tlnQ1VvQFISE0LaLtKxPQAAdhVwIGloaNCYMWO0YsWKdp9/8MEHVVJSotWrV+vdd9/VkiVLVFBQoA0bNgRdbKDGZyUrzZWgjgazOnRudMn4rORwlmUM2wMAYFcBB5KZM2fqBz/4gW699dZ2n3/jjTe0YMECTZ48WSNHjtS9996rMWPGaPfu3UEXG6jYGIeW5WVLUpudcOvjZXnZUXP/DbYHAMCuQn4NyYQJE7RhwwYdO3ZMlmVp8+bNOnTokKZNmxbqVXXLjJw0rZw3Tqku/9MQqa4ErZw3Luruu8H2AADYUchvjPbTn/5U9957r9LT09WvXz/FxMToueee06RJk9pt39TUpKamJt9jj8cT6pI0IydNX81O5c6k/8D2AADYTa8Ekp07d2rDhg0aMWKEtm7dqvz8fA0fPlxTp05t076oqEiFhYWhLqON2BiHci8e2uvriRRsDwCAnTgsy+rxXbAcDoeKi4s1e/ZsSdLp06flcrlUXFysWbNm+dr9y7/8i/7+97+rpKSkzXu0d4QkIyNDbrdbTqezp6UBAIAw8ng8crlcPd5/h/QISXNzs5qbmxUT439pSmxsrLxeb7uviY+PV3x8fCjLAAAAESbgQHLy5EkdPnzY97iyslLl5eVKTk5WZmambrjhBj300EMaMGCARowYobKyMr344ov68Y9/HNLCAQBA3xHwKZstW7ZoypQpbZYvWLBAq1atUk1NjZYuXao///nPqq2t1YgRI3TvvffqgQcekMPR9UWTwR7yAQAA4Rfs/juoa0h6A4EEAIDIE+z+u0/PZQMAACIDgQQAABhHIAEAAMYRSAAAgHEEEgAAYByBBAAAGEcgAQAAxhFIAACAcQQSAABgHIEEAAAYRyABAADGEUgAAIBxBBIAAGAcgQQAABhHIAEAAMYRSAAAgHEEEgAAYByBBAAAGEcgAQAAxhFIAACAcQQSAABgHIEEAAAYRyABAADGEUgAAIBxBBIAAGAcgQQAABhHIAEAAMb1M11AOBX98V39ouwD3+OUxHiNzUzS2MwhGpuRpCvTkzQgLtZghQAARKeoCSSWZenlvcf8lp2ob9Kf3jmuP71zvMPXuQb0PxdaMoZobGaSxmQkyTWgf2+XCwBAVHFYlmWZLuKLPB6PXC6X3G63nE5nSN+7xt2oH5X8TfuP1qnyk4aQvW9C/xhfYBmbee7fCwbHh+z9AQCwu2D331EVSDrj9Vp6/+OT2n+kTvuPfqZ9H9Xp4PH6kL1/bIxDYzOSNDYzSTkXuZTQP1bTr0gN2fsDAGASgSSMLMvSR5+e0v6jn50LLkfq9PYxd6+tr/DmKzT/2hGKiXH02joAAAgFAokNVbtP/yOw/CO4HK1Ti7d3NnPBlEu0+KZLFN+Pi3EBAOYQSCLUzg8+1ZK15arxNPb6ur5xdYb+fdblciZwMS4AoHcQSPqwv9V49NC6t3r1tFArZ0I/bVw8USOGDur1dQEA+h4CSZQ7VndaS3//trYe+jgs69tQcJ2uTE8Ky7oAAJGDQIIufdZwRk+8ckC/33+s68Yh8PxdX9GNlw0Ly7oAAPZAIEFInGw6q0Wr92rbe5+EZX0/vHW07rwmMyzrAgD0PgJJhGnxWtpdWasT9Y1KSUzQ+KxkxUbIsN7mFq8eW1+htXuOhmV935l8sR6aPkoOR2RsHwCIZgSSCFJSUa3CjQdU7f58ZE2aK0HL8rI1IyfNYGWhY1mWnnn9PT39l/fCsr4B/WO1//tfVUJ/hj0DgEkEkghRUlGtRav36fyN3fq3/8p54/pMKOmO3+w5oodffjts69v76FQN5Xb+ANBrCCQRoMVraeLyUr8jI1/kkJTqStD2h2+MmNM34bDl4And9cKesK3vLw/eoEtSBodtfQDQlwS7/46a2X5N2l1Z22EYkSRLUrW7Ubsra5V78dDwFWZzk0el6MMnZ3XaZvPfTujuVaEJLVN/XNZlmzX/co0mXHJBSNYHAPgcgSQMTtR3726s3W2Hz025rOvQcqDKo6/917aQrO/OX+7qss2PbrtSt1+dEZL1AUC0IJCEQUpiQkjbITDZw51dhpbjnkZd88PXQ7K+7738lr738ludtvnO5Iv1vRmXhWR9ANAXcA1JGLReQ1LjbmxzUavENSSRoqHprK4s/HOvTZR4vhsvS9GvFnylzbDnSB46DqDv4qLWCNE6ykaSXyiJ1lE2fVWL11LeT7frQLUnbOtMdcbr8Zuv4PMDwCgCSQSJhvuQoHv+be1+/aG8Kmzr+5/vT5NrILM9A+g9BJIIw+F2dNdPX39P/7npUNjWt+V/T9bIC5jtGUDPEEiAKLDj/U8197mdpsvQuvtydfXIZNNlALChsN+HZOvWrfqP//gP7d27V9XV1SouLtbs2bP92rz77rt6+OGHVVZWprNnzyo7O1svv/yyMjOZTA3oie4OCX/mG1/WLV++yG/Zzg8+1Tf+b2jCzP96dkeXbZ6YnaP5144IyfoARI+AA0lDQ4PGjBmje+65R3PmzGnz/Pvvv6+JEydq4cKFKiwslNPp1DvvvKOEBIa0Aj0VzNDxa/9paJfDnj/4+KRu/M+ubwzXHY+tr9Bj6ys6bTPv2kz9YPbokKwPQN8Q1Ckbh8PR5gjJN77xDfXv31+//vWve/SenLJBe6L92hs7DB3/rOGMxj6xqVfeuz1jMpL0h/zrwrY+AMGx1a3jvV6vXn31VX3ve9/T9OnTtX//fmVlZWnp0qVtTuu0ampqUlNTk++xxxO+4ZKIDIxOkmJjHFqWl637/jF0/HyWpGV52b0a0oYMivMdaemoT/79a5dp8UvlIVnf/xyt08hHXu2y3fs//FpUhVOgrwppIDlx4oROnjypJ598Uj/4wQ+0fPlylZSUaM6cOdq8ebNuuOGGNq8pKipSYWFhKMtAH9LRLMk17kYtWr2P+7cY0Fmf3P9SuZ7tok8sy9LE5Zt1rO50SOq5+N9f67JNReF0DY7nxtSAnYX0lE1VVZUuuugizZ07V2vWrPG1u/nmmzVo0CC99NJLbd6jvSMkGRkZnLIBsyR/gV22RTjruO/Xe1XyTk1Q7xGI7Q9PUfqQgWFbH9DX2OqUzQUXXKB+/fopOzvbb/nll1+u7du3t/ua+Ph4xcfHh7IM9BHMkvw5u2yLcNbx7Pyrumzz9F8O6em/vBfUelpNXL65yza//84EjcscEpL1AfAX0kASFxenq6++WgcPHvRbfujQIY0YwTBABIZZkj9nl21hlzpaLZn6JS2Z+qVO22z8nyotfml/SNY35+dvdNnmZ3eO1T9fOTwk6wOiScCB5OTJkzp8+LDvcWVlpcrLy5WcnKzMzEw99NBDuuOOOzRp0iRNmTJFJSUl2rhxo7Zs2RLKuhEFmCX5c3bZFnapIxB5Y4Yrb0znAaH8aJ1mr/hrSNZXsGa/CtZ0HoAe++dsLZyYFZL1AX1FwNeQbNmyRVOmTGmzfMGCBVq1apUk6fnnn1dRUZH+/ve/a9SoUSosLNQtt9zSrfdn2C9a2WGoq13YZVvYpQ4TqupOa8KTpWFb39zxGSqac2XY1gcEi1vHo09jluTP2WVb2KUOOzp15qyyv/+nsK0v5yKnNhZMlMPRt8IfIhOBBH0e9yH5nF22hV3qiERer6WZz2zTweP1YVnf1MuHaeW8ceofGxOW9SF6EUgQFaL9Tq1fZJdtYZc6+qr8/7dPr75dHZZ1jRqWqN8tylViQv+wrA99E4EEAKLUf73+nn686VBY1jUoLlavf3eyUl32uWAZ9kIgAQB0aM+Htd2apTlUSpZcr8tS+e6ORgQSAEBQQjnbc2diYxy657qRWjBhJHfF7YMIJIgKXK/wObaFPdmlX3qrjk9ONumWn/01ZHMQdeaOr2TonolZGpWa2OvrQugQSNDnMaLjc2wLe7JLv5iu49SZs5r3y13ad6Su19f1z1em6Z6JWdzK30YIJOjTOppZNhrvecG2sCe79Itd6uiK12tp63sf6/m/fqithz7u1XVN+tKFuue6kZp06YWK4ShiryOQoM+yywy3dsC2sCe79Itd6gilfUc+0/PbK/XKW7079PnLGUm6Z2KWZuakcq+WINlqtl8glOwyw60dsC3syS79Ypc6Qmlc5hCNu3OIfnZnx20OHa/Xqjc+1JpdR3q8nvKjdbq/i8kX/+nCQbrnuizdNi5dA+Jie7wudI5AAtuy28yyJrEt7Mku/WKXOsLtS8MS9cNbR+uHt47usM2xutP69Y6P9PxfK3XmrLdH6/ng4wY9ur5Cj66v6LDNBYPjdc/EkbpzfKaSBsb1aD3RjkAC24rEmWV7C9vCnuzSL3apw44uShqgR2ZepkdmXtZhm09PNmnNriN6/q+V+uxUc4/W88nJJv2o5KB+VHKwwzYD42L149vHaOKlF2pwPLvf87FFYFvjs5KV5krocmbZ8VnJ4S4t7NgW9mSXfrFLHZFq6OB4Lb7pUi2+6dIO25xsOquX9/5dz/+1Uh99eqpH6zl1pkX3/WNiyvMNju+nsZlJGpuRpLGZQ/TljCQNGRRdR1q4qBW2xsyyn2Nb2JNd+sUudUSzprMteu3taj2//UO9fcwd8vfvH+vQ2Iwh54JL5rngMsxpn6NejLJBn2f63gp2wrawJ7v0i13qQMcsy1LlJw3af6RO+49+pv1H6vROlSek6xiT7tLYzH8El4whykgeIIej90dXEUgQFexyF0w7YFvYk136xS51oOcsy1KVu1H7j5wLLPuPfKb9R+sUyr31E7NzNP/aEaF7QxFIAACISic8jdp/tM4vtAQykujDJ2eFtB7uQwIAQBRKcSZo+hWpmn5Faodt6k6dUXlraDl6LrjUN57VnLEXhbHS7iGQAADQRyUNjNPkUSmaPCrFdCld4j65AADAOAIJAAAwjkACAACMI5AAAADjCCQAAMA4AgkAADCOQAIAAIwjkAAAAOMIJAAAwDgCCQAAMI5AAgAAjCOQAAAA4wgkAADAOGb7BSS1eC3trqzVifpGpSQmaHxWsmJjHKbLAoCoQSBB1CupqFbhxgOqdjf6lqW5ErQsL1szctIMVgYA0YNTNohqJRXVWrR6n18YkaQad6MWrd6nkopqQ5UBQHQhkCBqtXgtFW48IKud51qXFW48oBZvey0AAKFEIEHU2l1Z2+bIyBdZkqrdjdpdWRu+ogAgShFIELVO1HccRnrSDgDQcwQSRK2UxISQtgMA9ByBBFFrfFay0lwJ6mhwr0PnRtuMz0oOZ1kAEJUIJIhasTEOLcvLlqQ2oaT18bK8bO5HAgBhQCBBVJuRk6aV88Yp1eV/WibVlaCV88ZxHxIACBNujIaoNyMnTV/NTuVOrQBgEIEE0LnTN7kXDzVdBgBELU7ZAAAA4wgkAADAOE7ZABGGmYntyS79Qh3ojJ37hUACRBBmJrYnu/QLdaAzdu8Xh2VZtpo5zOPxyOVyye12y+l0mi4HsI3WmYnP/w/b+rcNw5TNsEu/UAc6E45+CXb/zTUkQARgZmJ7sku/UAc6Eyn9EnAg2bp1q/Ly8jR8+HA5HA6tX7++w7b33XefHA6Hnn766SBKBMDMxPZkl36hDnQmUvol4EDS0NCgMWPGaMWKFZ22Ky4u1s6dOzV8+PAeFwfgHGYmtie79At1oDOR0i8BX9Q6c+ZMzZw5s9M2x44d0+LFi/WnP/1Js2bN6nFxAM5hZmJ7sku/UAc6Eyn9EvJrSLxer+bPn6+HHnpIV1xxRZftm5qa5PF4/H4A+GNmYnuyS79QBzoTKf0S8kCyfPly9evXT/fff3+32hcVFcnlcvl+MjIyQl0SEPGYmdie7NIv1IHOREq/hDSQ7N27V88884xWrVolh6N7v9jSpUvldrt9P0ePHg1lSUCfwczE9mSXfqEOdCYS+iWo+5A4HA4VFxdr9uzZkqSnn35aDz74oGJiPs85LS0tiomJUUZGhj788MMu35P7kACds/OdFqOZXfqFOtCZ3uyXYPffIb1T6/z58zV16lS/ZdOnT9f8+fN19913h3JVQNRiZmJ7sku/UAc6Y+d+CTiQnDx5UocPH/Y9rqysVHl5uZKTk5WZmamhQ/1/0f79+ys1NVWjRo0KvloAANAnBRxI3nzzTU2ZMsX3+MEHH5QkLViwQKtWrQpZYQAAIHoEHEgmT56sQC476c51IwAiD9cIAAglZvsFEDC7zxoKIPIwuR6AgLTOGnr+3Bg17kYtWr1PJRXVhioDEMkIJAC6LVJmDQUQeQgkALotUmYNBRB5CCQAui1SZg0FEHkIJAC6LVJmDQUQeRhlA6DbWmcNrXE3tnsdiUPn5sYwPWsozGNYuD+2R9cIJAC6rXXW0EWr98kh+YUSO80aCrMYFu6P7dE9nLIBEJBImDUU5jAs3B/bo/uCmu23NzDbLxAZOASN87V4LU1cXtrhSKzWU3rbH74xKj4r0bY9bDXbL4DoYedZQ2FGIMPCo+Gzw/YIDKdsAAAhwbBwf2yPwBBIAAAhwbBwf2yPwBBIAAAh0TosvKOrIRw6N7okWoaFsz0CQyABAIRE67BwSW12wtE4LJztERgCCQAgZBgW7o/t0X0M+wUAhBzDwv1Fw/Zg2C8AwHYYFu6P7dE1TtkAAADjCCQAAMA4AgkAADCOQAIAAIwjkAAAAOMIJAAAwDgCCQAAMI5AAgAAjCOQAAAA4wgkAADAOAIJAAAwjkACAACMI5AAAADjCCQAAMA4AgkAADCOQAIAAIwjkAAAAOMIJAAAwDgCCQAAMI5AAgAAjCOQAAAA4wgkAADAOAIJAAAwjkACAACMI5AAAADjCCQAAMA4AgkAADCOQAIAAIwjkAAAAOMIJAAAwDgCCQAAMC7gQLJ161bl5eVp+PDhcjgcWr9+ve+55uZmPfzwwxo9erQGDRqk4cOH61vf+paqqqpCWTMAAOhjAg4kDQ0NGjNmjFasWNHmuVOnTmnfvn167LHHtG/fPv3+97/XwYMHdfPNN4ekWAAA0Dc5LMuyevxih0PFxcWaPXt2h2327Nmj8ePH66OPPlJmZmaX7+nxeORyueR2u+V0OntaGgAACKNg99/9eqEmP263Ww6HQ0lJSe0+39TUpKamJt9jj8fT2yUBAACb6dWLWhsbG/Xwww9r7ty5HaaloqIiuVwu309GRkZvlgQAAGyo1wJJc3Ozbr/9dlmWpZUrV3bYbunSpXK73b6fo0eP9lZJAADApnrllE1rGPnoo49UWlra6bmk+Ph4xcfH90YZAAAgQoQ8kLSGkffee0+bN2/W0KFDQ70KAADQxwQcSE6ePKnDhw/7HldWVqq8vFzJyclKS0vT17/+de3bt0+vvPKKWlpaVFNTI0lKTk5WXFxc6CoHAAB9RsDDfrds2aIpU6a0Wb5gwQI9/vjjysrKavd1mzdv1uTJk7t8f4b9AgAQecI+7Hfy5MnqLMMEcVsTAAAQpZjLBgAAGEcgAQAAxhFIAACAcQQSAABgHIEEAAAYRyABAADGEUgAAIBxBBIAAGAcgQQAABhHIAEAAMYRSAAAgHEEEgAAYByBBAAAGEcgAQAAxhFIAACAcQQSAABgHIEEAAAYRyABAADGEUgAAIBxBBIAAGAcgQQAABjXz3QBANAXnDnr1a93fKiPak9pRPJAzc8dqbh+4f+br8VraXdlrU7UNyolMUHjs5IVG+MIex1AoAgkABCkotcO6LltlfJany/7P6+9q3+9PktLv5YdtjpKKqpVuPGAqt2NvmVprgQty8vWjJy0sNUB9ASnbAAgCEWvHdAvtvqHEUnyWtIvtlaq6LUDYamjpKJai1bv8wsjklTjbtSi1ftUUlEdljqAniKQAEAPnTnr1XPbKjtt89y2Sp056+3VOlq8lgo3HpDVznOtywo3HlDL+akJsBECCQD00K93fNjmyMj5vNa5dr1pd2VtmyMjX2RJqnY3andlba/WAQSDQAIAPfRR7amQtuupE/Udh5GetANMIJAAQA+NSB4Y0nY9lZKYENJ2gAkEEgDoofm5I9XViNoYx7l2vWl8VrLSXAnqqBSHzo22GZ+V3Kt1AMEgkABAD8X1i9G/Xp/VaZt/vT6r1+9HEhvj0LK8c8OLzw8lrY+X5WVzPxLYGoEEAIKw9GvZ+vakrDZHSmIc0rcnhe8+JDNy0rRy3jiluvxPy6S6ErRy3jjuQwLbc1iWZatxYB6PRy6XS263W06n03Q5ANAt3KkV0S7Y/Td3agWAEIjrF6OF1/+T6TIUG+NQ7sVDTZcBBIxTNgAAwDgCCQAAMI5AAgAAjCOQAAAA4wgkAADAOAIJAAAwjkACAACMI5AAAADjCCQAAMA4292ptfVO9h6Px3AlAACgu1r32z2dkcZ2gaS+vl6SlJGRYbgSAAAQqPr6erlcroBfZ7vJ9bxer6qqqpSYmCiHwyGPx6OMjAwdPXqUyfYMoQ/Mow/Mow/Mow/M6mr7W5al+vp6DR8+XDExgV8RYrsjJDExMUpPT2+z3Ol08gE0jD4wjz4wjz4wjz4wq7Pt35MjI624qBUAABhHIAEAAMbZPpDEx8dr2bJlio+PN11K1KIPzKMPzKMPzKMPzOrt7W+7i1oBAED0sf0REgAA0PcRSAAAgHEEEgAAYByBBAAAGBf2QFJUVKSrr75aiYmJSklJ0ezZs3Xw4MF221qWpZkzZ8rhcGj9+vV+zx05ckSzZs3SwIEDlZKSooceekhnz54Nw28Q+brbBzt27NCNN96oQYMGyel0atKkSTp9+rTv+draWn3zm9+U0+lUUlKSFi5cqJMnT4bzV4lY3emDmpoazZ8/X6mpqRo0aJDGjRunl19+2a8NfdBzK1eu1JVXXum7yVNubq7++Mc/+p5vbGxUfn6+hg4dqsGDB+u2227T8ePH/d6D76HgdNYHtbW1Wrx4sUaNGqUBAwYoMzNT999/v9xut9970AfB6er/Qatw7I/DHkjKysqUn5+vnTt3atOmTWpubta0adPU0NDQpu3TTz8th8PRZnlLS4tmzZqlM2fO6I033tB///d/a9WqVfr+978fjl8h4nWnD3bs2KEZM2Zo2rRp2r17t/bs2aOCggK/2wF/85vf1DvvvKNNmzbplVde0datW3Xvvfea+JUiTnf64Fvf+pYOHjyoDRs26O2339acOXN0++23a//+/b429EHPpaen68knn9TevXv15ptv6sYbb9Qtt9yid955R5L0wAMPaOPGjVq3bp3KyspUVVWlOXPm+F7P91DwOuuDqqoqVVVV6amnnlJFRYVWrVqlkpISLVy40Pd6+iB4Xf0/aBWW/bFl2IkTJyxJVllZmd/y/fv3WxdddJFVXV1tSbKKi4t9z7322mtWTEyMVVNT41u2cuVKy+l0Wk1NTeEqvc9orw+uueYa69FHH+3wNQcOHLAkWXv27PEt++Mf/2g5HA7r2LFjvVpvX9ReHwwaNMh68cUX/dolJydbzz33nGVZ9EFvGDJkiPXLX/7Sqqurs/r372+tW7fO99y7775rSbJ27NhhWRbfQ72ltQ/a89vf/taKi4uzmpubLcuiD3rL+X0Qrv2x8WtIWg+/JScn+5adOnVKd955p1asWKHU1NQ2r9mxY4dGjx6tYcOG+ZZNnz5dHo+nTapD187vgxMnTmjXrl1KSUnRhAkTNGzYMN1www3avn277zU7duxQUlKSvvKVr/iWTZ06VTExMdq1a1d4f4E+oL3/BxMmTNBvfvMb1dbWyuv1au3atWpsbNTkyZMl0Qeh1NLSorVr16qhoUG5ubnau3evmpubNXXqVF+byy67TJmZmdqxY4ckvodC7fw+aI/b7ZbT6VS/fuemYaMPQqu9Pgjn/tjo5Hper1dLlizRddddp5ycHN/yBx54QBMmTNAtt9zS7utqamr8fnlJvsc1NTW9V3Af1F4ffPDBB5Kkxx9/XE899ZS+/OUv68UXX9RNN92kiooKXXrppaqpqVFKSorfe/Xr10/Jycn0QYA6+n/w29/+VnfccYeGDh2qfv36aeDAgSouLtYll1wiSfRBCLz99tvKzc1VY2OjBg8erOLiYmVnZ6u8vFxxcXFKSkryaz9s2DDftuV7KDQ66oPzffLJJ3riiSf8TknSB6HRWR+Ec39sNJDk5+eroqLC7y/vDRs2qLS01O88OXpPe33g9XolSd/+9rd19913S5LGjh2r119/Xc8//7yKioqM1NpXtdcHkvTYY4+prq5Of/nLX3TBBRdo/fr1uv3227Vt2zaNHj3aULV9y6hRo1ReXi63263f/e53WrBggcrKykyXFVU66oMvhhKPx6NZs2YpOztbjz/+uLli+6iO+uDw4cNh3R8bCyQFBQW+i/DS09N9y0tLS/X++++3+cvktttu0/XXX68tW7YoNTVVu3fv9nu+9er39g4poX0d9UFaWpoktfkr5fLLL9eRI0ckndvOJ06c8Hv+7Nmzqq2tpQ8C0FEfvP/++/rZz36miooKXXHFFZKkMWPGaNu2bVqxYoWeffZZ+iAE4uLifEecrrrqKu3Zs0fPPPOM7rjjDp05c0Z1dXV+30XHjx/3bVu+h0Kjoz74xS9+IUmqr6/XjBkzlJiYqOLiYvXv39/3WvogNDrqgwEDBoR1fxz2a0gsy1JBQYGKi4tVWlqqrKwsv+cfeeQRvfXWWyovL/f9SNJPfvITvfDCC5Kk3Nxcvf32235fxps2bZLT6Wz3UB/8ddUHI0eO1PDhw9sMQz106JBGjBgh6Vwf1NXVae/evb7nS0tL5fV6dc011/T+LxHhuuqDU6dOSZLfqCZJio2N9R3Bog9Cz+v1qqmpSVdddZX69++v119/3ffcwYMHdeTIEd+5db6HekdrH0jnjoxMmzZNcXFx2rBhgxISEvza0ge9o7UPwr4/Du5a3MAtWrTIcrlc1pYtW6zq6mrfz6lTpzp8jc67qvfs2bNWTk6ONW3aNKu8vNwqKSmxLrzwQmvp0qVh+A0iX3f64Cc/+YnldDqtdevWWe+995716KOPWgkJCdbhw4d9bWbMmGGNHTvW2rVrl7V9+3br0ksvtebOnWviV4o4XfXBmTNnrEsuucS6/vrrrV27dlmHDx+2nnrqKcvhcFivvvqq733og5575JFHrLKyMquystJ66623rEceecRyOBzWn//8Z8uyLOu+++6zMjMzrdLSUuvNN9+0cnNzrdzcXN/r+R4KXmd94Ha7rWuuucYaPXq0dfjwYb//J2fPnrUsiz4Iha7+H5yvN/fHYQ8kktr9eeGFFzp9zRc3gGVZ1ocffmjNnDnTGjBggHXBBRdY3/3ud31DwdC57vZBUVGRlZ6ebg0cONDKzc21tm3b5vf8p59+as2dO9caPHiw5XQ6rbvvvtuqr68P428SubrTB4cOHbLmzJljpaSkWAMHDrSuvPLKNsOA6YOeu+eee6wRI0ZYcXFx1oUXXmjddNNNfl/Cp0+ftr7zne9YQ4YMsQYOHGjdeuutVnV1td978D0UnM76YPPmzR3+P6msrPS9B30QnK7+H5yvN/fHjn+sAAAAwBjj9yEBAAAgkAAAAOMIJAAAwDgCCQAAMI5AAgAAjCOQAAAA4wgkAADAOAIJAAAwjkACAACMI5AAAADjCCQAAMA4AgkAADDu/wN0y0rqukSyqgAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.scatter(X_test,y_test)\n", + "plt.plot(X_test,pred)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "" + ], + "text/plain": [ + "Pipeline(steps=[('polynomialfeatures', PolynomialFeatures()),\n", + " ('linearregression', LinearRegression())])" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.preprocessing import PolynomialFeatures\n", + "from sklearn.pipeline import make_pipeline\n", + "\n", + "pipeline = make_pipeline(PolynomialFeatures(2), LinearRegression())\n", + "\n", + "pipeline.fit(X_train,y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "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", + "
FAIRYTALEMINIATUREMIXED HEIRLOOM VARIETIESPIE TYPE
70FalseFalseFalseTrue
71FalseFalseFalseTrue
72FalseFalseFalseTrue
73FalseFalseFalseTrue
74FalseFalseFalseTrue
...............
1738FalseTrueFalseFalse
1739FalseTrueFalseFalse
1740FalseTrueFalseFalse
1741FalseTrueFalseFalse
1742FalseTrueFalseFalse
\n", + "

415 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " FAIRYTALE MINIATURE MIXED HEIRLOOM VARIETIES PIE TYPE\n", + "70 False False False True\n", + "71 False False False True\n", + "72 False False False True\n", + "73 False False False True\n", + "74 False False False True\n", + "... ... ... ... ...\n", + "1738 False True False False\n", + "1739 False True False False\n", + "1740 False True False False\n", + "1741 False True False False\n", + "1742 False True False False\n", + "\n", + "[415 rows x 4 columns]" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.get_dummies(new_pumpkins['Variety'])" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [], + "source": [ + "X = pd.get_dummies(new_pumpkins['Variety'])\n", + "y = new_pumpkins['Price']" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "X = pd.get_dummies(new_pumpkins['Variety']) \\\n", + " .join(new_pumpkins['Month']) \\\n", + " .join(pd.get_dummies(new_pumpkins['City'])) \\\n", + " .join(pd.get_dummies(new_pumpkins['Package']))\n", + "y = new_pumpkins['Price']" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mean error: 2.23 (8.26%)\n", + "Model determination: 0.9643539089222867\n" + ] + } + ], + "source": [ + "# make train-test split\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=0)\n", + "\n", + "# setup and train the pipeline\n", + "pipeline = make_pipeline(PolynomialFeatures(2), LinearRegression())\n", + "pipeline.fit(X_train,y_train)\n", + "\n", + "# predict results for test data\n", + "pred = pipeline.predict(X_test)\n", + "\n", + "# calculate MSE and determination\n", + "mse = np.sqrt(mean_squared_error(y_test,pred))\n", + "print(f'Mean error: {mse:3.3} ({mse/np.mean(pred)*100:3.3}%)')\n", + "\n", + "score = pipeline.score(X_train,y_train)\n", + "print('Model determination: ', score)" + ] } ], "metadata": { @@ -106,7 +1799,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.3-final" + "version": "3.12.5" }, "orig_nbformat": 2 }, diff --git a/2-Regression/4-Logistic/assignment.ipynb b/2-Regression/4-Logistic/assignment.ipynb new file mode 100644 index 0000000000..803b408125 --- /dev/null +++ b/2-Regression/4-Logistic/assignment.ipynb @@ -0,0 +1,620 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 274 entries, 0 to 273\n", + "Data columns (total 7 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 species 274 non-null object \n", + " 1 island 274 non-null object \n", + " 2 bill_length_mm 274 non-null float64\n", + " 3 bill_depth_mm 274 non-null float64\n", + " 4 flipper_length_mm 274 non-null float64\n", + " 5 body_mass_g 274 non-null float64\n", + " 6 year 274 non-null int64 \n", + "dtypes: float64(4), int64(1), object(2)\n", + "memory usage: 15.1+ KB\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "\n", + "full_penguins = pd.read_csv('penguins_binary_classification.csv')\n", + "\n", + "full_penguins.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "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", + "
speciesislandbill_length_mmbill_depth_mmflipper_length_mmbody_mass_gyear
0AdelieTorgersen39.118.7181.03750.02007
1AdelieTorgersen39.517.4186.03800.02007
2AdelieTorgersen40.318.0195.03250.02007
3AdelieTorgersen36.719.3193.03450.02007
4AdelieTorgersen39.320.6190.03650.02007
\n", + "
" + ], + "text/plain": [ + " species island bill_length_mm bill_depth_mm flipper_length_mm \\\n", + "0 Adelie Torgersen 39.1 18.7 181.0 \n", + "1 Adelie Torgersen 39.5 17.4 186.0 \n", + "2 Adelie Torgersen 40.3 18.0 195.0 \n", + "3 Adelie Torgersen 36.7 19.3 193.0 \n", + "4 Adelie Torgersen 39.3 20.6 190.0 \n", + "\n", + " body_mass_g year \n", + "0 3750.0 2007 \n", + "1 3800.0 2007 \n", + "2 3250.0 2007 \n", + "3 3450.0 2007 \n", + "4 3650.0 2007 " + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "full_penguins.head()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAkAAAAHpCAYAAABqYYONAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAzmklEQVR4nO3deVxU9eL/8fcAMiyyKCpgiaBYYrmgaBGZmZZ220zLrtcSU7NccrupLdft54LtpZYt19TKyhbLwvTm3pVyV6zEXdIKs1sJAorgfH5/+Gi+TWohgiN+Xs/HYx4P5pwzZz6fwfTVOWdmHMYYIwAAAIv4eHsAAAAA5xoBBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEECVhDFGeXl54mObAAA4ewRQJXH48GGFhYXp8OHD3h4KAACVHgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACs4+ftAeDMhIWFeXsIqGSMMd4eAgCcdzgCBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACs47UAcjgcf3obO3ast4YGAAAucH7eeuKcnBz3z3PnztXo0aO1fft297KqVaue0f6Ki4tVpUqVchvfb4wxOn78uPz8vPZSAQCAcua1I0BRUVHuW1hYmBwOh/t+rVq19Mwzz+jiiy+W0+lUs2bNtGjRIvdjs7Oz5XA4NHfuXLVp00YBAQGaM2eOSkpKNGjQIIWHhysiIkIjR45UamqqOnXq5H6sy+VSWlqa4uLiFBgYqKZNm+r99993r1+xYoUcDocWLlyoFi1ayOl0atWqVcrMzFTbtm0VEhKi0NBQtWjRQuvXr3c/btWqVWrdurUCAwNVp04dDRo0SAUFBe71sbGxmjRpknr16qWQkBDFxMTolVdeOe3rU1RUpLy8PI8bAAAoJ+Y8MHPmTBMWFua+/8wzz5jQ0FDz9ttvm23btpkRI0aYKlWqmB07dhhjjNm7d6+RZGJjY80HH3xg9uzZY3744QczYcIEU716dTNv3jyTlZVlHnjgARMaGmpuu+02974nTJhgGjZsaBYtWmR2795tZs6caZxOp1mxYoUxxpjly5cbSaZJkybms88+M7t27TI///yzueyyy8zdd99tsrKyzI4dO8y7775rNm/ebIwxZteuXSY4ONg8++yzZseOHSYjI8MkJiaanj17up+3bt26pnr16uaFF14wO3fuNGlpacbHx8ds27btlK/JmDFjjKSTbrm5ueX86gMAYJ/zMoBq165tJk6c6LFNy5YtTf/+/Y0x/xdAzz33nMc2kZGR5sknn3TfLykpMTExMe4AOnr0qAkKCjJffPGFx+N69+5tunXrZoz5vwD66KOPPLYJCQkxs2bNOuX4e/fubfr27eux7L///a/x8fExR44cMcacCKC7777bvd7lcplatWqZ6dOnn3KfR48eNbm5ue7b/v37CSAAAMrJeXdhS15enn744QelpKR4LE9JSVFmZqbHsqSkJPfPubm5+vHHH9WqVSv3Ml9fX7Vo0UIul0uStGvXLhUWFur666/32M+xY8eUmJh42n1L0rBhw9SnTx+98cYbat++ve68807Vr19fkpSZmaktW7Zozpw57u2NMXK5XNq7d68SEhIkSU2aNHGv/+2U38GDB0/5OjidTjmdzlOuAwAAZ+e8C6AzERwcfEbb5+fnS5IWLFigiy66yGPdH2Pjj/seO3as/vGPf2jBggVauHChxowZo3feeUe333678vPzdf/992vQoEEnPWdMTIz75z9epO1wONxxBgAAzp3zLoBCQ0NVu3ZtZWRkqE2bNu7lGRkZHkd3/igsLEyRkZFat26drrnmGknS8ePHtXHjRjVr1kyS1KhRIzmdTu3bt89j36V1ySWX6JJLLtHQoUPVrVs3zZw5U7fffruaN2+urVu3Kj4+/oz3CQAAzr3zLoAkafjw4RozZozq16+vZs2aaebMmdq8ebPHKaZTefDBB5WWlqb4+Hg1bNhQU6dO1a+//iqHwyFJCgkJ0UMPPaShQ4fK5XLp6quvVm5urjIyMhQaGqrU1NRT7vfIkSMaPny47rjjDsXFxem7777TunXr1KVLF0nSyJEjdeWVV2rgwIHq06ePgoODtXXrVi1evFjTpk0r3xcHAACctfMygAYNGqTc3Fz985//1MGDB9WoUSN9/PHHatCgwZ8+buTIkTpw4IB69OghX19f9e3bVx06dJCvr697m/Hjx6tmzZpKS0vTnj17FB4erubNm+vRRx897X59fX31888/q0ePHvrxxx9Vo0YNde7cWePGjZN04tqelStX6rHHHlPr1q1ljFH9+vV11113lc8LAgAAypXDGGO8PYiK4nK5lJCQoK5du2r8+PHeHs5ZycvLU1hYmHJzcxUaGurt4QAAUKmdl0eAyurbb7/VZ599pjZt2qioqEjTpk3T3r179Y9//MPbQwMAAOeRC+rLUH18fDRr1iy1bNlSKSkp+uqrr7RkyRL329ABAACkC/wU2IWEU2AAAJSfC+oIEAAAQGkQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDp+3h4AzkxYWJi3h4AKZozx9hAA4ILHESAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB2/0m6YmJgoh8NRqm03btxY5gEBAABUtFIHUKdOndw/Hz16VC+++KIaNWqk5ORkSdLq1av1zTffqH///uU+SAAAgPLkMMaYM31Qnz59FB0drfHjx3ssHzNmjPbv36/XXnut3AaIE/Ly8hQWFubtYeAcKMN/kgCAM1SmAAoLC9P69evVoEEDj+U7d+5UUlKScnNzy22AOIEAsgcBBAAVr0wXQQcGBiojI+Ok5RkZGQoICDjrQQEAAFSkUl8D9HtDhgxRv379tHHjRrVq1UqStGbNGr322msaNWpUuQ4QAACgvJXpFJgkvfvuu3r++eeVlZUlSUpISNDgwYPVtWvXch0gTuAUmD04BQYAFa/MAYRziwCyB/9JAkDFK9MpsN8cO3ZMBw8elMvl8lgeExNzVoMCAACoSGUKoJ07d6pXr1764osvPJYbY+RwOHT8+PFyGRwAAEBFKFMA9ezZU35+fkpPT1d0dHSpPyEaAABUbj179tShQ4f00UcfeXsoZ6VM1wAFBwdrw4YNatiwYUWMqcJlZ2crLi5OmzZtUrNmzbw9nFLhGiB7cA0QgPNZbm6ujDEKDw/39lDOSpk+B6hRo0b63//+V95jKTc9e/aUw+Fw3yIiItSxY0dt2bJFklSnTh3l5OTo8ssv9/JIAQCoXMLCwip9/EhlDKDHH39cI0aM0IoVK/Tzzz8rLy/P43Y+6Nixo3JycpSTk6OlS5fKz89PN998syTJ19dXUVFR8vM7q2vAAQDwivfff1+NGzdWYGCgIiIi1L59exUUFKhnz57q1KmTxo0bp5o1ayo0NFQPPPCAjh075n6sy+VSWlqa4uLiFBgYqKZNm+r999/32P8333yjm2++WaGhoQoJCVHr1q21e/duSXI/R2n39+uvv6p79+6qWbOmAgMD1aBBA82cObNiX6BSKFMAtW/fXqtXr1a7du1Uq1YtVatWTdWqVVN4eLiqVatW3mMsE6fTqaioKEVFRalZs2Z6+OGHtX//fv3000/Kzs6Ww+HQ5s2bJf31L+e7775Tt27dVL16dQUHByspKUlr1qxxr58+fbrq168vf39/XXrppXrjjTc8xnLo0CH16dPH/YfxuuuuU2Zm5p+Ov6io6LwMSwCAd+Xk5Khbt27q1auXsrKytGLFCnXu3Nl9+nzp0qXu5W+//bbmzZuncePGuR+flpam119/XS+99JK++eYbDR06VHfffbdWrlwpSfr+++91zTXXyOl0atmyZdqwYYN69eqlkpKSU47nr/Y3atQobd26VQsXLlRWVpamT5+uGjVqVPCr9NfKdAhk+fLl5T2OCpWfn68333xT8fHxioiIUEFBgcf63/9yatSooV27dunIkSPux7Zp00YXXXSRPv74Y0VFRWnjxo3ut/5/+OGHGjx4sJ577jm1b99e6enpuvfee3XxxRerbdu2kqQ777xTgYGBWrhwocLCwvTyyy+rXbt22rFjh6pXr37KMaelpXn8gf3NlqkxCgksU7eiksieEeftIQDWiO2919tDOGM5OTkqKSlR586dVbduXUlS48aN3ev9/f312muvKSgoSJdddpn+3//7fxo+fLjGjx+v4uJiTZo0SUuWLFFycrIkqV69elq1apVefvlltWnTRi+88ILCwsL0zjvvqEqVKpKkSy655JRjKSoq+sv97du3T4mJiUpKSpIkxcbGVtRLc0bKFEBt2rQp73GUu/T0dFWtWlWSVFBQoOjoaKWnp8vH5+R4+LNfzltvvaWffvpJ69atc8dKfHy8e/1TTz2lnj17qn///pKkYcOGafXq1XrqqafUtm1brVq1SmvXrtXBgwfldDrdj/noo4/0/vvvq2/fvqcc/yOPPKJhw4a57+fl5alOnTpn8YoAAC4ETZs2Vbt27dS4cWN16NBBN9xwg+644w73GZimTZsqKCjIvX1ycrLy8/O1f/9+5efnq7CwUNdff73HPo8dO6bExERJ0ubNm9W6dWt3/PyZXbt2/eX++vXrpy5dumjjxo264YYb1KlTJ1111VVn9RqUh7O6CKawsFD79u3zOLcoSU2aNDmrQZWHtm3bavr06ZJOnOJ68cUXdeONN2rt2rUnbftnv5zNmzcrMTHxtEdqsrKyToqYlJQUPf/885KkzMxM5efnKyIiwmObI0eOuM+nnorT6XQHEwAAv/H19dXixYv1xRdf6LPPPtPUqVP12GOPeVyacTr5+fmSpAULFuiiiy7yWPfbvzmBgYGlHktp9nfjjTfq22+/1aeffqrFixerXbt2GjBggJ566qlSP09FKFMA/fTTT7r33nu1cOHCU64/Hz4IMTg42ONIzb///W+FhYXp1VdfVZ8+fTy2/bNfzpn8QTiV/Px8RUdHa8WKFSetuxCuogcAnHsOh0MpKSlKSUnR6NGjVbduXX344YeSTvyP95EjR9z/fq1evVpVq1ZVnTp1VL16dTmdTu3bt++0Z3OaNGmi2bNnq7i4+C+PAjVq1Ogv9ydJNWvWVGpqqlJTU9W6dWsNHz7c6wFUpotJhgwZokOHDmnNmjUKDAzUokWLNHv2bDVo0EAff/xxeY+xXDgcDvn4+Liv7fmj3345b775pp577jm98sorkk78Qdi8ebN++eWXUz4uISFBGRkZHssyMjLUqFEjSVLz5s114MAB+fn5KT4+3uN2PlwEBgCoXNasWaNJkyZp/fr12rdvn+bNm6effvpJCQkJkk6cfurdu7e2bt2qTz/9VGPGjNHAgQPl4+OjkJAQPfTQQxo6dKhmz56t3bt3a+PGjZo6dapmz54tSRo4cKDy8vL097//XevXr9fOnTv1xhtvaPv27SeNpTT7Gz16tObPn69du3bpm2++UXp6unus3lSmI0DLli3T/PnzlZSUJB8fH9WtW1fXX3+9QkNDlZaWpptuuqm8x3nGioqKdODAAUknToFNmzZN+fn5uuWWW07advTo0WrRooUuu+wyFRUVefxyunXrpkmTJqlTp05KS0tTdHS0Nm3apNq1ays5OVnDhw9X165dlZiYqPbt2+uTTz7RvHnztGTJEkkn3jGXnJysTp066YknntAll1yiH374QQsWLNDtt9/uvu4IAIDSCA0N1eeff67nnntOeXl5qlu3rp5++mndeOONmjt3rtq1a6cGDRrommuuUVFRkbp166axY8e6Hz9+/HjVrFlTaWlp2rNnj8LDw9W8eXM9+uijkqSIiAgtW7ZMw4cPV5s2beTr66tmzZopJSXllOP5q/35+/vrkUceUXZ2tgIDA9W6dWu98847Ff46/ZUyfRJ0aGiotmzZotjYWNWtW1dvvfWWUlJStHfvXl122WUqLCysiLGWWs+ePd3lKZ0o1IYNG2rkyJHq0qXLSZ8EPWHCBL311lsev5xnn31WcXEn3o3z7bff6p///KcWL16skpISNWrUSC+88IJatWol6cTb4J966int379fcXFx+te//qV77rnH/fyHDx/WY489pg8++EA//fSToqKidM011ygtLa3UFzb/9knQvAsMAMpPZXwX2J+5UL6m4lwoUwC1bNlSEyZMUIcOHXTrrbcqPDxcaWlpmjJlit5///0/vbgXZUMAAUD5I4DsVaZTYIMHD1ZOTo4kacyYMerYsaPmzJkjf39/zZo1qzzHBwAAUO7KdATojwoLC7Vt2zbFxMRwYW8F4QgQAJS/C+0IEEqvXL4MKygoSM2bNy+PXQEAAFS4UgfQ7z+V+K8888wzZRoMAADAuVDqANq0aVOptnM4HGUeDAAAwLlQ6gCqbF+ACgAAcDrlcjVtXl6ePvroI23btq08dgcAAFChyhRAXbt21bRp0ySd+FLPpKQkde3aVY0bN9YHH3xQrgMEAAAob2UKoM8//1ytW7eWJH344YcyxujQoUOaMmWKJkyYUK4DBACgMnM4HOf0di6MHTtWzZo1K/X22dnZcjgc2rx5syRpxYoVcjgcOnToUIWMrzTKFEC5ubmqXr26JGnRokXq0qWLgoKCdNNNN2nnzp3lOkAAAFDxvvzyS/n6+p6T7/O86qqrlJOTo7CwsAp/rtMpUwDVqVNHX375pQoKCrRo0SLdcMMNkk586WhAQEC5DhAAAFS8GTNm6MEHH9Tnn3+uH374oUKfy9/fX1FRUV5953iZAmjIkCHq3r27Lr74YkVHR+vaa6+VdOLUWOPGjctzfAAAoILl5+dr7ty56tevn2666aaTvtZq8uTJioyMVEhIiHr37q2jR4+etI9///vfSkhIUEBAgBo2bKgXX3zxtM93qlNgq1atUuvWrRUYGKg6depo0KBBKigoKK8pnqRMAdS/f3+tXr1ar732mr744gv5+JzYTb169TRx4sRyHSAAAKhY7777rho2bKhLL71Ud999t1577TX99k1Z7777rsaOHatJkyZp/fr1io6OPilu5syZo9GjR2vixInKysrSpEmTNGrUKM2ePbtUz79792517NhRXbp00ZYtWzR37lytWrVKAwcOLPe5/qbU3wU2bNgwjR8/XsHBwX/5qdB8EnT547vAAKD8nYvvAjvXp3nK8hWfKSkp6tq1qwYPHqySkhJFR0frvffe07XXXqurrrpKiYmJeuGFF9zbX3nllTp69Kj7oub4+HiNHz9e3bp1c28zYcIEffrpp/riiy+UnZ2tuLg4bdq0Sc2aNdOKFSvUtm1b/frrrwoPD1efPn3k6+url19+2f34VatWqU2bNiooKKiQy2vO6JOgi4uL3T+fDp8EDQBA5bF9+3atXbtWH374oSTJz89Pd911l2bMmKFrr71WWVlZeuCBBzwek5yc7P6A5IKCAu3evVu9e/fWfffd596mpKSk1Bc5Z2ZmasuWLZozZ457mTFGLpdLe/fuVUJCwtlO8yRl+iRoPhUaAIALw4wZM1RSUqLatWu7lxlj5HQ63Z/592fy8/MlSa+++qquuOIKj3W+vr6lGkN+fr7uv/9+DRo06KR1MTExpdrHmSqXb4MHAACVT0lJiV5//XU9/fTT7nd0/6ZTp056++23lZCQoDVr1qhHjx7udatXr3b/HBkZqdq1a2vPnj3q3r17mcbRvHlzbd26VfHx8WWbSBkQQAAAWCo9PV2//vqrevfufdLpqi5dumjGjBl66KGH1LNnTyUlJSklJUVz5szRN998o3r16rm3HTdunAYNGqSwsDB17NhRRUVFWr9+vX799de/vG5YkkaOHKkrr7xSAwcOVJ8+fRQcHKytW7dq8eLFpToKVRZcTQsAQAUyxpzT25mYMWOG2rdvf8prdbp06aL169crISFBo0aN0ogRI9SiRQt9++236tevn8e2ffr00b///W/NnDlTjRs3Vps2bTRr1izFxcWVahxNmjTRypUrtWPHDrVu3VqJiYkaPXq0x2m58lbqd4HBu3gXGACUv3PxLjCcn/iXFAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiH7wIDAKACZc8o3ddBlBc+3bp0OAIEAAB04MABDR48WPHx8QoICFBkZKRSUlI0ffp0FRYWltvzXHvttRoyZEi57a+sOAIEAIDl9uzZo5SUFIWHh2vSpElq3LixnE6nvvrqK73yyiu66KKLdOutt3p7mOWKI0AAAFiuf//+8vPz0/r169W1a1clJCSoXr16uu2227RgwQLdcsstkqRDhw6pT58+qlmzpkJDQ3XdddcpMzPTvZ+xY8eqWbNmeuONNxQbG6uwsDD9/e9/1+HDhyVJPXv21MqVK/X888/L4XDI4XAoOztbkrRy5Uq1atVKTqdT0dHRevjhh1VSUuLed1FRkQYNGqRatWopICBAV199tdatW1fmORNAAABY7Oeff9Znn32mAQMGKDg4+JTbOBwOSdKdd96pgwcPauHChdqwYYOaN2+udu3a6ZdffnFvu3v3bn300UdKT09Xenq6Vq5cqcmTJ0uSnn/+eSUnJ+u+++5TTk6OcnJyVKdOHX3//ff629/+ppYtWyozM1PTp0/XjBkzNGHCBPd+R4wYoQ8++ECzZ8/Wxo0bFR8frw4dOng895kggAAAsNiuXbtkjNGll17qsbxGjRqqWrWqqlatqpEjR2rVqlVau3at3nvvPSUlJalBgwZ66qmnFB4ervfff9/9OJfLpVmzZunyyy9X69atdc8992jp0qWSpLCwMPn7+ysoKEhRUVGKioqSr6+vXnzxRdWpU0fTpk1Tw4YN1alTJ40bN05PP/20XC6XCgoKNH36dD355JO68cYb1ahRI7366qsKDAzUjBkzyjRvrgECAAAnWbt2rVwul7p3766ioiJlZmYqPz9fERERHtsdOXJEu3fvdt+PjY1VSEiI+350dLQOHjz4p8+VlZWl5ORk95EmSUpJSVF+fr6+++47HTp0SMXFxUpJSXGvr1Klilq1aqWsrKwyzY8AAgDAYvHx8XI4HNq+fbvH8nr16kmSAgMDJUn5+fmKjo7WihUrTtpHeHi4++cqVap4rHM4HHK5XOU76HLAKTAAACwWERGh66+/XtOmTVNBQcFpt2vevLkOHDggPz8/xcfHe9xq1KhR6ufz9/fX8ePHPZYlJCToyy+/lDHGvSwjI0MhISG6+OKLVb9+ffn7+ysjI8O9vri4WOvWrVOjRo3OYLb/hwACAMByL774okpKSpSUlKS5c+cqKytL27dv15tvvqlt27bJ19dX7du3V3Jysjp16qTPPvtM2dnZ+uKLL/TYY49p/fr1pX6u2NhYrVmzRtnZ2frf//4nl8ul/v37a//+/XrwwQe1bds2zZ8/X2PGjNGwYcPk4+Oj4OBg9evXT8OHD9eiRYu0detW3XfffSosLFTv3r3LNGdOgQEAUIEqwycz169fX5s2bdKkSZP0yCOP6LvvvpPT6VSjRo300EMPqX///nI4HPr000/12GOP6d5779VPP/2kqKgoXXPNNYqMjCz1cz300ENKTU1Vo0aNdOTIEe3du1exsbH69NNPNXz4cDVt2lTVq1dX79699a9//cv9uMmTJ8vlcumee+7R4cOHlZSUpP/85z+qVq1amebsML8/3oTzVl5ensLCwrRlaoxCAjlwBwDloTLECSoG/5ICAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArMMHIVYSv30QYm5urkJDQ709HAAAKjWOAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArEMAAQAA6xBAAADAOgQQAACwDgEEAACsQwABAADrEEAAAMA6BBAAALAOAQQAAKxDAAEAAOsQQAAAwDoEEAAAsA4BBAAArOPn7QHgzISFhXl7CLCEMcbbQwCACsMRIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdS64AOrZs6ccDoccDoeqVKmiyMhIXX/99Xrttdfkcrm8PTwAAHAeuOACSJI6duyonJwcZWdna+HChWrbtq0GDx6sm2++WSUlJad8THFx8TkeJQAA8JYLMoCcTqeioqJ00UUXqXnz5nr00Uc1f/58LVy4ULNmzZIkORwOTZ8+XbfeequCg4M1ceJESdL8+fPVvHlzBQQEqF69eho3bpxHND3zzDNq3LixgoODVadOHfXv31/5+fnu9bNmzVJ4eLjS09N16aWXKigoSHfccYcKCws1e/ZsxcbGqlq1aho0aJCOHz9+Tl8XAABwgp+3B3CuXHfddWratKnmzZunPn36SJLGjh2ryZMn67nnnpOfn5/++9//qkePHpoyZYpat26t3bt3q2/fvpKkMWPGSJJ8fHw0ZcoUxcXFac+ePerfv79GjBihF1980f1chYWFmjJlit555x0dPnxYnTt31u23367w8HB9+umn2rNnj7p06aKUlBTdddddpxxvUVGRioqK3Pfz8vIq6qUBAMA+5gKTmppqbrvttlOuu+uuu0xCQoIxxhhJZsiQIR7r27VrZyZNmuSx7I033jDR0dGnfb733nvPREREuO/PnDnTSDK7du1yL7v//vtNUFCQOXz4sHtZhw4dzP3333/a/Y4ZM8ZIOumWm5t72scAAIDSseYIkCQZY+RwONz3k5KSPNZnZmYqIyPDfTpMko4fP66jR4+qsLBQQUFBWrJkidLS0rRt2zbl5eWppKTEY70kBQUFqX79+u59REZGKjY2VlWrVvVYdvDgwdOO9ZFHHtGwYcPc9/Py8lSnTp2yTx4AALhZFUBZWVmKi4tz3w8ODvZYn5+fr3Hjxqlz584nPTYgIEDZ2dm6+eab1a9fP02cOFHVq1fXqlWr1Lt3bx07dswdQFWqVPF47G/vSPvjsj97V5rT6ZTT6TzjOQIAgL9mTQAtW7ZMX331lYYOHXrabZo3b67t27crPj7+lOs3bNggl8ulp59+Wj4+J64ff/fddytkvAAAoOJckAFUVFSkAwcO6Pjx4/rxxx+1aNEipaWl6eabb1aPHj1O+7jRo0fr5ptvVkxMjO644w75+PgoMzNTX3/9tSZMmKD4+HgVFxdr6tSpuuWWW5SRkaGXXnrpHM4MAACUhwvybfCLFi1SdHS0YmNj1bFjRy1fvlxTpkzR/Pnz5evre9rHdejQQenp6frss8/UsmVLXXnllXr22WdVt25dSVLTpk31zDPP6PHHH9fll1+uOXPmKC0t7VxNCwAAlBOHMcZ4exD4a3l5eQoLC1Nubq5CQ0O9PRwAACq1C/IIEAAAwJ8hgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADWIYAAAIB1CCAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0/bw8ApWOMkSTl5eV5eSQAgFMJCQmRw+Hw9jBQSgRQJfHzzz9LkurUqePlkQAATiU3N1ehoaHeHgZKiQCqJKpXry5J2rdvn8LCwrw8mvKXl5enOnXqaP/+/RfcXyAX8twk5leZXchzk879/EJCQir8OVB+CKBKwsfnxOVaYWFhF+RfVL8JDQ29YOd3Ic9NYn6V2YU8N+nCnx/KhougAQCAdQggAABgHQKoknA6nRozZoycTqe3h1IhLuT5Xchzk5hfZXYhz0268OeHs+Mwv72/GgAAwBIcAQIAANYhgAAAgHUIIAAAYB0CCAAAWIcAqgReeOEFxcbGKiAgQFdccYXWrl3r7SGVSVpamlq2bKmQkBDVqlVLnTp10vbt2z22OXr0qAYMGKCIiAhVrVpVXbp00Y8//uilEZfd5MmT5XA4NGTIEPeyyj6377//XnfffbciIiIUGBioxo0ba/369e71xhiNHj1a0dHRCgwMVPv27bVz504vjrj0jh8/rlGjRikuLk6BgYGqX7++xo8fr9+/R6Qyze/zzz/XLbfcotq1a8vhcOijjz7yWF+aufzyyy/q3r27QkNDFR4ert69eys/P/8czuLU/mxuxcXFGjlypBo3bqzg4GDVrl1bPXr00A8//OCxj/N1bji3CKDz3Ny5czVs2DCNGTNGGzduVNOmTdWhQwcdPHjQ20M7YytXrtSAAQO0evVqLV68WMXFxbrhhhtUUFDg3mbo0KH65JNP9N5772nlypX64Ycf1LlzZy+O+sytW7dOL7/8spo0aeKxvDLP7ddff1VKSoqqVKmihQsXauvWrXr66adVrVo19zZPPPGEpkyZopdeeklr1qxRcHCwOnTooKNHj3px5KXz+OOPa/r06Zo2bZqysrL0+OOP64knntDUqVPd21Sm+RUUFKhp06Z64YUXTrm+NHPp3r27vvnmGy1evFjp6en6/PPP1bdv33M1hdP6s7kVFhZq48aNGjVqlDZu3Kh58+Zp+/btuvXWWz22O1/nhnPM4LzWqlUrM2DAAPf948ePm9q1a5u0tDQvjqp8HDx40EgyK1euNMYYc+jQIVOlShXz3nvvubfJysoyksyXX37prWGekcOHD5sGDRqYxYsXmzZt2pjBgwcbYyr/3EaOHGmuvvrq0653uVwmKirKPPnkk+5lhw4dMk6n07z99tvnYohn5aabbjK9evXyWNa5c2fTvXt3Y0zlnp8k8+GHH7rvl2YuW7duNZLMunXr3NssXLjQOBwO8/3335+zsf+VP87tVNauXWskmW+//dYYU3nmhorHEaDz2LFjx7Rhwwa1b9/evczHx0ft27fXl19+6cWRlY/c3FxJ//dFrxs2bFBxcbHHfBs2bKiYmJhKM98BAwbopptu8piDVPnn9vHHHyspKUl33nmnatWqpcTERL366qvu9Xv37tWBAwc85hcWFqYrrriiUszvqquu0tKlS7Vjxw5JUmZmplatWqUbb7xRUuWf3++VZi5ffvmlwsPDlZSU5N6mffv28vHx0Zo1a875mM9Gbm6uHA6HwsPDJV1Yc8PZ4ctQz2P/+9//dPz4cUVGRnosj4yM1LZt27w0qvLhcrk0ZMgQpaSk6PLLL5ckHThwQP7+/u6/qH4TGRmpAwcOeGGUZ+add97Rxo0btW7dupPWVfa57dmzR9OnT9ewYcP06KOPat26dRo0aJD8/f2VmprqnsOp/qxWhvk9/PDDysvLU8OGDeXr66vjx49r4sSJ6t69uyRV+vn9XmnmcuDAAdWqVctjvZ+fn6pXr16p5nv06FGNHDlS3bp1c38Z6oUyN5w9AgheMWDAAH399ddatWqVt4dSLvbv36/Bgwdr8eLFCggI8PZwyp3L5VJSUpImTZokSUpMTNTXX3+tl156SampqV4e3dl79913NWfOHL311lu67LLLtHnzZg0ZMkS1a9e+IOZno+LiYnXt2lXGGE2fPt3bw8F5iFNg57EaNWrI19f3pHcK/fjjj4qKivLSqM7ewIEDlZ6eruXLl+viiy92L4+KitKxY8d06NAhj+0rw3w3bNiggwcPqnnz5vLz85Ofn59WrlypKVOmyM/PT5GRkZV2bpIUHR2tRo0aeSxLSEjQvn37JMk9h8r6Z3X48OF6+OGH9fe//12NGzfWPffco6FDhyotLU1S5Z/f75VmLlFRUSe90aKkpES//PJLpZjvb/Hz7bffavHixe6jP1LlnxvKDwF0HvP391eLFi20dOlS9zKXy6WlS5cqOTnZiyMrG2OMBg4cqA8//FDLli1TXFycx/oWLVqoSpUqHvPdvn279u3bd97Pt127dvrqq6+0efNm9y0pKUndu3d3/1xZ5yZJKSkpJ31kwY4dO1S3bl1JUlxcnKKiojzml5eXpzVr1lSK+RUWFsrHx/OvQ19fX7lcLkmVf36/V5q5JCcn69ChQ9qwYYN7m2XLlsnlcumKK64452M+E7/Fz86dO7VkyRJFRER4rK/Mc0M58/ZV2Phz77zzjnE6nWbWrFlm69atpm/fviY8PNwcOHDA20M7Y/369TNhYWFmxYoVJicnx30rLCx0b/PAAw+YmJgYs2zZMrN+/XqTnJxskpOTvTjqsvv9u8CMqdxzW7t2rfHz8zMTJ040O3fuNHPmzDFBQUHmzTffdG8zefJkEx4ebubPn2+2bNlibrvtNhMXF2eOHDnixZGXTmpqqrnoootMenq62bt3r5k3b56pUaOGGTFihHubyjS/w4cPm02bNplNmzYZSeaZZ54xmzZtcr8TqjRz6dixo0lMTDRr1qwxq1atMg0aNDDdunXz1pTc/mxux44dM7feequ5+OKLzebNmz3+nikqKnLv43ydG84tAqgSmDp1qomJiTH+/v6mVatWZvXq1d4eUplIOuVt5syZ7m2OHDli+vfvb6pVq2aCgoLM7bffbnJycrw36LPwxwCq7HP75JNPzOWXX26cTqdp2LCheeWVVzzWu1wuM2rUKBMZGWmcTqdp166d2b59u5dGe2by8vLM4MGDTUxMjAkICDD16tUzjz32mMc/mpVpfsuXLz/lf2upqanGmNLN5eeffzbdunUzVatWNaGhoebee+81hw8f9sJsPP3Z3Pbu3Xvav2eWL1/u3sf5OjecWw5jfvdRpwAAABbgGiAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIQKWSnZ0th8OhzZs3e3soACoxAggAAFiHAAJwRlwul5544gnFx8fL6XQqJiZGEydOlCR99dVXuu666xQYGKiIiAj17dtX+fn57sdee+21GjJkiMf+OnXqpJ49e7rvx8bGatKkSerVq5dCQkIUExOjV155xb0+Li5OkpSYmCiHw6Frr722wuYK4MJFAAE4I4888ogmT56sUaNGaevWrXrrrbcUGRmpgoICdejQQdWqVdO6dev03nvvacmSJRo4cOAZP8fTTz+tpKQkbdq0Sf3791e/fv20fft2SdLatWslSUuWLFFOTo7mzZtXrvMDYAc/bw8AQOVx+PBhPf/885o2bZpSU1MlSfXr19fVV1+tV199VUePHtXrr7+u4OBgSdK0adN0yy236PHHH1dkZGSpn+dvf/ub+vfvL0kaOXKknn32WS1fvlyXXnqpatasKUmKiIhQVFRUOc8QgC04AgSg1LKyslRUVKR27dqdcl3Tpk3d8SNJKSkpcrlc7qM3pdWkSRP3zw6HQ1FRUTp48GDZBw4Af0AAASi1wMDAs3q8j4+PjDEey4qLi0/arkqVKh73HQ6HXC7XWT03APweAQSg1Bo0aKDAwEAtXbr0pHUJCQnKzMxUQUGBe1lGRoZ8fHx06aWXSpJq1qypnJwc9/rjx4/r66+/PqMx+Pv7ux8LAGVFAAEotYCAAI0cOVIjRozQ66+/rt27d2v16tWaMWOGunfvroCAAKWmpurrr7/W8uXL9eCDD+qee+5xX/9z3XXXacGCBVqwYIG2bdumfv366dChQ2c0hlq1aikwMFCLFi3Sjz/+qNzc3AqYKYALHQEE4IyMGjVK//znPzV69GglJCTorrvu0sGDBxUUFKT//Oc/+uWXX9SyZUvdcccdateunaZNm+Z+bK9evZSamqoePXqoTZs2qlevntq2bXtGz+/n56cpU6bo5ZdfVu3atXXbbbeV9xQBWMBh/nhCHgAA4ALHESAAAGAdAggAAFiHAAIAANYhgAAAgHUIIAAAYB0CCAAAWIcAAgAA1iGAAACAdQggAABgHQIIAABYhwACAADW+f8X7Mf3nmBhGwAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "full_penguins.species.unique()\n", + "\n", + "pallete = {\n", + " \"Adelie\" :\"black\",\n", + " \"Gentoo\" : \"orange\"\n", + "}\n", + "\n", + "import seaborn as sns\n", + "\n", + "sns.catplot(data=full_penguins, y=\"island\", hue=\"species\", kind=\"count\", palette=pallete)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.preprocessing import OneHotEncoder\n", + "\n", + "categorical_features = [\"island\"]\n", + "categorical_encoder = OneHotEncoder(sparse_output=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.preprocessing import OrdinalEncoder\n", + "\n", + "ordinal_features = [\"bill_length_mm\",\t\"bill_depth_mm\",\t\"flipper_length_mm\",\t\"body_mass_g\",\t\"year\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "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", + "
cat__island_Biscoecat__island_Dreamcat__island_Torgersen
00.00.01.0
10.00.01.0
20.00.01.0
30.00.01.0
40.00.01.0
\n", + "
" + ], + "text/plain": [ + " cat__island_Biscoe cat__island_Dream cat__island_Torgersen\n", + "0 0.0 0.0 1.0\n", + "1 0.0 0.0 1.0\n", + "2 0.0 0.0 1.0\n", + "3 0.0 0.0 1.0\n", + "4 0.0 0.0 1.0" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.compose import ColumnTransformer\n", + "ct = ColumnTransformer(transformers=[(\"cat\", categorical_encoder, categorical_features)])\n", + "\n", + "ct.set_output(transform=\"pandas\")\n", + "encoded_features = ct.fit_transform(full_penguins)\n", + "encoded_features.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "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", + "
bill_length_mmbill_depth_mmflipper_length_mmbody_mass_gyearcat__island_Biscoecat__island_Dreamcat__island_Torgersenspecies
039.118.7181.03750.020070.00.01.00
139.517.4186.03800.020070.00.01.00
240.318.0195.03250.020070.00.01.00
336.719.3193.03450.020070.00.01.00
439.320.6190.03650.020070.00.01.00
\n", + "
" + ], + "text/plain": [ + " bill_length_mm bill_depth_mm flipper_length_mm body_mass_g year \\\n", + "0 39.1 18.7 181.0 3750.0 2007 \n", + "1 39.5 17.4 186.0 3800.0 2007 \n", + "2 40.3 18.0 195.0 3250.0 2007 \n", + "3 36.7 19.3 193.0 3450.0 2007 \n", + "4 39.3 20.6 190.0 3650.0 2007 \n", + "\n", + " cat__island_Biscoe cat__island_Dream cat__island_Torgersen species \n", + "0 0.0 0.0 1.0 0 \n", + "1 0.0 0.0 1.0 0 \n", + "2 0.0 0.0 1.0 0 \n", + "3 0.0 0.0 1.0 0 \n", + "4 0.0 0.0 1.0 0 " + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.preprocessing import LabelEncoder\n", + "\n", + "label_encoder = LabelEncoder()\n", + "encoded_label = label_encoder.fit_transform(full_penguins.species)\n", + "encoded_penguins = encoded_features.assign(species=encoded_label)\n", + "encoded_penguins.head()\n", + "\n", + "full_penguins.head()\n", + "\n", + "columns_for_training = [\"bill_length_mm\", \"bill_depth_mm\", \"flipper_length_mm\", \"body_mass_g\", \"year\"]\n", + "\n", + "encoded_penguins = pd.concat([full_penguins[columns_for_training],encoded_penguins], axis=1)\n", + "\n", + "encoded_penguins.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Adelie', 'Gentoo']" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list(label_encoder.inverse_transform([0,1]))" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.9017964035172064\n", + "-0.8326064366975109\n", + "0.9017964035172064\n", + "0.8198367781987648\n" + ] + } + ], + "source": [ + "print(encoded_penguins.flipper_length_mm.corr(encoded_penguins.species))\n", + "print(encoded_penguins.bill_depth_mm.corr(encoded_penguins.species))\n", + "print(encoded_penguins.flipper_length_mm.corr(encoded_penguins.species))\n", + "print(encoded_penguins.body_mass_g.corr(encoded_penguins.species))\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.model_selection import train_test_split\n", + "X = encoded_penguins[encoded_penguins.columns.difference([\"species\"])]\n", + "\n", + "y = encoded_penguins.species\n", + "\n", + "XTrain, XTest, yTrain, yTest = train_test_split(X, y, test_size=0.2, random_state=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.metrics import f1_score, classification_report\n", + "from sklearn.linear_model import LogisticRegression\n", + "\n", + "model = LogisticRegression()\n", + "model.fit(XTrain, yTrain)\n", + "preds = model.predict(XTest)" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " precision recall f1-score support\n", + "\n", + " 0 1.00 1.00 1.00 28\n", + " 1 1.00 1.00 1.00 27\n", + "\n", + " accuracy 1.00 55\n", + " macro avg 1.00 1.00 1.00 55\n", + "weighted avg 1.00 1.00 1.00 55\n", + "\n", + "Predicted labels: [1 1 1 0 1 1 0 1 0 1 1 1 1 0 0 0 0 1 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 1 0 0 1\n", + " 0 0 1 0 1 1 0 0 1 1 1 1 0 1 0 0 0 1]\n", + "F1-score: 1.0\n" + ] + } + ], + "source": [ + "print(classification_report(yTest, preds))\n", + "print(\"Predicted labels: \", preds)\n", + "print(\"F1-score: \", f1_score(yTest, preds))" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAhgAAAIjCAYAAABBOWJ+AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABcL0lEQVR4nO3dd1gUZ8M18LOUZelqsEuCGmvsNWoUVBQsCFYsEST2/ojdKNg1sSbWWLGGYtQQC0QQ7EYjYi+xV1BiAens3t8fed0vRFAWF2aXPb/r4nrYYWb27DxRjvfcMyMTQggQERERaZGR1AGIiIio6GHBICIiIq1jwSAiIiKtY8EgIiIirWPBICIiIq1jwSAiIiKtY8EgIiIirWPBICIiIq1jwSAiIiKtY8EgIiIirWPBIDIAAQEBkMlk6i8TExOUL18eAwYMwOPHj3PcRgiBbdu2oVWrVihWrBgsLCxQu3ZtzJ49G8nJybm+1549e9ChQwfY2dlBLpejXLly6NWrFw4fPpynrGlpaVi2bBmaNm0KW1tbKBQKVK1aFaNGjcLNmzfz9fmJqPDJ+CwSoqIvICAAPj4+mD17NipWrIi0tDScPn0aAQEBcHBwwOXLl6FQKNTrK5VK9O3bF8HBwWjZsiW6desGCwsLHDt2DDt37kTNmjURERGB0qVLq7cRQuCbb75BQEAA6tevjx49eqBMmTJ4+vQp9uzZg3PnzuHEiRNo3rx5rjkTEhLg6uqKc+fOoXPnznB2doaVlRVu3LiBwMBAxMXFISMjo0CPFRFpiSCiIm/z5s0CgDh79my25ZMnTxYARFBQULbl8+fPFwDEhAkT3tlXaGioMDIyEq6urtmWL1q0SAAQ//vf/4RKpXpnu61bt4o//vjjvTk7deokjIyMxK5du975WVpamhg/fvx7t8+rzMxMkZ6erpV9EVHOWDCIDEBuBWPfvn0CgJg/f756WUpKiihevLioWrWqyMzMzHF/Pj4+AoA4deqUepsSJUqI6tWri6ysrHxlPH36tAAgBg8enKf1HR0dhaOj4zvLvb29xWeffaZ+fffuXQFALFq0SCxbtkxUqlRJGBkZidOnTwtjY2Mxc+bMd/Zx/fp1AUCsWLFCvezly5di7NixokKFCkIul4vKlSuLhQsXCqVSqfFnJTIEnINBZMDu3bsHAChevLh62fHjx/Hy5Uv07dsXJiYmOW7n5eUFANi3b596mxcvXqBv374wNjbOV5bQ0FAAQP/+/fO1/Yds3rwZK1aswJAhQ7BkyRKULVsWjo6OCA4OfmfdoKAgGBsbo2fPngCAlJQUODo6Yvv27fDy8sKPP/6IFi1aYOrUqfD19S2QvET6Lue/PYioSHr9+jUSEhKQlpaGP/74A7NmzYKZmRk6d+6sXufq1asAgLp16+a6n7c/u3btWrb/rV27dr6zaWMf7/Po0SPcunULJUuWVC/z9PTE0KFDcfnyZdSqVUu9PCgoCI6Ojuo5JkuXLsXt27dx/vx5VKlSBQAwdOhQlCtXDosWLcL48eNhb29fILmJ9BVHMIgMiLOzM0qWLAl7e3v06NEDlpaWCA0NRYUKFdTrJCUlAQCsra1z3c/bnyUmJmb73/dt8yHa2Mf7dO/ePVu5AIBu3brBxMQEQUFB6mWXL1/G1atX4enpqV4WEhKCli1bonjx4khISFB/OTs7Q6lU4ujRowWSmUifcQSDyICsWrUKVatWxevXr7Fp0yYcPXoUZmZm2dZ5+wv+bdHIyX9LiI2NzQe3+ZB/76NYsWL53k9uKlas+M4yOzs7tG3bFsHBwZgzZw6Af0YvTExM0K1bN/V6f/31Fy5evPhOQXnr2bNnWs9LpO9YMIgMSJMmTdCoUSMAgIeHB7766iv07dsXN27cgJWVFQCgRo0aAICLFy/Cw8Mjx/1cvHgRAFCzZk0AQPXq1QEAly5dynWbD/n3Plq2bPnB9WUyGUQOV9krlcoc1zc3N89xee/eveHj44PY2FjUq1cPwcHBaNu2Lezs7NTrqFQqtGvXDpMmTcpxH1WrVv1gXiJDw1MkRAbK2NgYCxYswJMnT7By5Ur18q+++grFihXDzp07c/1lvXXrVgBQz9346quvULx4cfz888+5bvMhbm5uAIDt27fnaf3ixYvj1atX7yy/f/++Ru/r4eEBuVyOoKAgxMbG4ubNm+jdu3e2dSpXrow3b97A2dk5x69PP/1Uo/ckMgQsGEQGzMnJCU2aNMHy5cuRlpYGALCwsMCECRNw48YNfPvtt+9ss3//fgQEBMDFxQVffvmlepvJkyfj2rVrmDx5co4jC9u3b8eZM2dyzdKsWTO4urpiw4YN2Lt37zs/z8jIwIQJE9SvK1eujOvXr+P58+fqZRcuXMCJEyfy/PkBoFixYnBxcUFwcDACAwMhl8vfGYXp1asXTp06hfDw8He2f/XqFbKysjR6TyJDwDt5EhmAt3fyPHv2rPoUyVu7du1Cz549sWbNGgwbNgzAP6cZPD098csvv6BVq1bo3r07zM3Ncfz4cWzfvh01atRAZGRktjt5qlQqDBgwANu2bUODBg3Ud/KMi4vD3r17cebMGZw8eRLNmjXLNefz58/Rvn17XLhwAW5ubmjbti0sLS3x119/ITAwEE+fPkV6ejqAf646qVWrFurWrYuBAwfi2bNnWLt2LUqXLo3ExET1Jbj37t1DxYoVsWjRomwF5d927NiBr7/+GtbW1nByclJfMvtWSkoKWrZsiYsXL2LAgAFo2LAhkpOTcenSJezatQv37t3LdkqFiMA7eRIZgtxutCWEEEqlUlSuXFlUrlw5202ylEql2Lx5s2jRooWwsbERCoVCfPHFF2LWrFnizZs3ub7Xrl27RPv27UWJEiWEiYmJKFu2rPD09BTR0dF5ypqSkiIWL14sGjduLKysrIRcLhdVqlQRo0ePFrdu3cq27vbt20WlSpWEXC4X9erVE+Hh4e+90VZuEhMThbm5uQAgtm/fnuM6SUlJYurUqeLzzz8Xcrlc2NnZiebNm4vFixeLjIyMPH02IkPCEQwiIiLSOs7BICIiIq1jwSAiIiKtY8EgIiIirWPBICIiIq1jwSAiIiKtY8EgIiIirTO4Z5GoVCo8efIE1tbWkMlkUschIiLSG0IIJCUloVy5cjAyev8YhcEVjCdPnsDe3l7qGERERHrr4cOHqFChwnvXMbiC8fbx0g8fPlQ/HpqIiIg+LDExEfb29urfpe9jcAXj7WkRGxsbFgwiIqJ8yMsUA07yJCIiIq1jwSAiIiKtY8EgIiIirWPBICIiIq1jwSAiIiKtY8EgIiIirWPBICIiIq1jwSAiIiKtY8EgIiIirWPBICIiIq1jwSAiIiKtY8EgIiIirWPBICIiIq1jwSAiIiKtk7RgHD16FG5ubihXrhxkMhn27t37wW2io6PRoEEDmJmZ4fPPP0dAQECB5yQiIiLNSFowkpOTUbduXaxatSpP69+9exedOnVC69atERsbi//9738YNGgQwsPDCzgpERERacJEyjfv0KEDOnTokOf1165di4oVK2LJkiUAgBo1auD48eNYtmwZXFxcCirmBwkhkJqplOz9iYiIcmNuagyZTFbo7ytpwdDUqVOn4OzsnG2Zi4sL/ve//+W6TXp6OtLT09WvExMTtZpJCIEea0/h3P2XWt0vERGRNlyd7QILeeH/uterSZ5xcXEoXbp0tmWlS5dGYmIiUlNTc9xmwYIFsLW1VX/Z29trNVNqppLlgoiI6D/0agQjP6ZOnQpfX1/168TERK2XjLf+nO4MC7lxgeybiIjoQ86fP4+f1v6EFStXwNTUFMA/p0ikoFcFo0yZMoiPj8+2LD4+HjY2NjA3N89xGzMzM5iZmRVGPFjIjSUZhiIiIjp79iw6u7bHq1evUPHT8pg1a5akefTqFEmzZs0QGRmZbdmhQ4fQrFkziRIRERFJ78yZM2jXrh1evXqFFi1aYMKECVJHkrZgvHnzBrGxsYiNjQXwz2WosbGxePDgAYB/Tm94eXmp1x82bBju3LmDSZMm4fr161i9ejWCg4Mxbtw4KeITERFJ7o8//kC7du3w+vVrfPXVVzh48CCsra2ljiVtwfjzzz9Rv3591K9fHwDg6+uL+vXrw8/PDwDw9OlTddkAgIoVK2L//v04dOgQ6tatiyVLlmDDhg2SXqJKREQkldOnT6N9+/ZITExEy5YtdaZcAIBMCCGkDlGYEhMTYWtri9evX8PGxuaj95eSkYWafv/c6EuqS4GIiMjwpKamonLlynj69CkcHR2xb98+WFlZFeh7avI7VK/mYBAREdE/zM3NsXPnTnTq1An79+8v8HKhKf5zm4iISI9kZmaqL0F1cnKCk5OTtIFywREMIiIiPXH8+HFUr14dly9fljrKB7FgEBER6YFjx47B1dUVd+7cwbx586SO80EsGERERDru6NGj6NChA5KTk+Hs7IxNmzZJHemDWDCIiIh02JEjR9Tlol27dggNDc317tW6hAWDiIhIR0VFRaFjx45ISUmBi4sLfv31V70oFwALBhERkU4SQmDBggVISUmBq6sr9u7dqzflAmDBICIi0kkymQy7du3C5MmTsWfPHigUCqkjaYQFg4iISIfcv39f/b2NjQ0WLlyod+UCYMEgIiLSGYcOHUL16tWxcOFCqaN8NBYMIiIiHfD777/Dzc0NaWlpOHnyJJRKpdSRPgoLBhERkcTCw8PRpUsXpKenw93dHbt27YKxsbHUsT4KCwYREZGEDh48CHd3d6Snp8PDwwPBwcGQy+VSx/poLBhEREQSOXDgADw8PJCeno6uXbsiKCioSJQLgAWDiIhIMrdu3UJGRga6d+9epMoFwMe1ExERSWbMmDGoWLEiXF1d1Y9gLyo4gkFERFSIDh8+jJcvX6pfu7m5FblyAbBgEBERFZpff/0Vrq6uaN++PRITE6WOU6BYMIiIiArBnj170KNHD2RmZqJKlSqwsLCQOlKBYsEgIiIqYLt370avXr2QlZWFvn37YuvWrTAxKdrTIFkwiIiICtAvv/wCT09PZGVloV+/fgZRLgAWDCIiogKzd+9edbno378/tmzZovd36Myrol+hiIiIJFKjRg2UKlUK7dq1w6ZNmwymXAAsGERERAWmWrVqOHPmDMqWLWtQ5QLgKRIiIiKt+vnnn/H777+rX1eoUMHgygXAEQwiIiKt2bFjB7y8vCCXy3HmzBnUrl1b6kiS4QgGERGRFmzfvh1eXl5QqVT4+uuv8cUXX0gdSVIsGERERB9p27Zt6nIxePBg/PTTTzAyMuxfsYb96YmIiD7Sli1b4O3tDSEEhgwZgrVr1xp8uQBYMIiIiPItOjoaPj4+EEJg2LBhWLNmDcvF/+EkTyIionz66quv4OnpieLFi2PVqlWQyWRSR9IZLBhERET5ZGJigm3btsHY2Jjl4j84jkNERKSBDRs2YNCgQVCpVAD+KRksF+/iCAYREVEerVu3DkOHDgUAODs7o3fv3hIn0l0cwSAiIsqDn376SV0uxo4dC09PT4kT6TYWDCIiog9Ys2YNhg0bBgAYN24cli1bxtMiH8CCQURE9B6rVq3CiBEjAADjx4/HkiVLWC7ygAWDiIgoF/fv34evry8AYMKECVi0aBHLRR5xkicREVEuPvvsMwQHB+PMmTOYO3cuy4UGWDCIiIj+IykpCdbW1gAAd3d3uLu7S5xI//AUCRER0b8sW7YMtWrVwt27d6WOotdYMIiIiP7P0qVL4evriwcPHuCXX36ROo5eY8EgIiICsGTJEowfPx4AMGPGDPX3lD8sGEREZPAWLVqECRMmAAD8/Pwwa9YsTuj8SCwYRERk0L7//ntMmjQJADBz5kyWCy3hVSRERGSw0tLSsGPHDgDArFmz4OfnJ3GiooMFg4iIDJZCoUBERAR2796tfs4IaQdPkRARkcE5f/68+vuSJUuyXBQAFgwiIjIoc+bMQYMGDbBu3TqpoxRpLBhERGQw/j3P4sWLFxKnKdo4B4OIiAzC2ytEAGDhwoWYPHmyxImKNhYMIiIq0oQQmDlzJmbPng3gn8tSJ06cKHGqoo8Fg4iIiiwhBPz8/DB37lwAwOLFi3mHzkLCgkFERAZh6dKlGDdunNQxDAYLBhERFVkymQyzZ89Ghw4d0Lx5c6njGBReRUJEREWKEALr169HSkoKgH9KBstF4WPBICKiIkMIgcmTJ2PIkCHo0qULlEql1JEMFk+REBFRkSCEwKRJk7B48WIAQNeuXWFsbCxxKsPFgkFERHpPCIEJEyZg6dKlAIBVq1ZhxIgREqcybCwYRESk14QQ8PX1xfLlywEAa9aswbBhw6QNRSwYRESk32bMmKEuF2vXruWDy3QEJ3kSEZFe69atG0qUKIGffvqJ5UKHcASDiIj0WoMGDfDXX3+hRIkSUkehf+EIBhER6ZW3V4ucPn1avYzlQvewYBARkd5QqVQYOXIkFi1ahA4dOvCR6zqMp0iIiEgvqFQqjBgxAj/99BNkMhmWL1/OkQsdxoJBREQ6T6VSYfjw4Vi3bh1kMhkCAgLg5eUldSx6DxYMIiLSaSqVCkOHDsWGDRtgZGSELVu24Ouvv5Y6Fn0ACwYREem0VatWqcvF1q1b0a9fP6kjUR6wYBARkU4bPHgwwsPD0bdvX/Tt21fqOJRHLBhERKRzVCoVZDIZZDIZFAoFfvvtN8hkMqljkQZ4mSoREekUpVIJHx8fTJw4EUIIAGC50EOSF4xVq1bBwcEBCoUCTZs2xZkzZ967/vLly1GtWjWYm5vD3t4e48aNQ1paWiGlJSKigvS2XGzduhXLly/HxYsXpY5E+SRpwQgKCoKvry/8/f0RExODunXrwsXFBc+ePctx/Z07d2LKlCnw9/fHtWvXsHHjRgQFBWHatGmFnJyIiLRNqVTC29sb27Ztg7GxMQIDA1G3bl2pY1E+SVowli5disGDB8PHxwc1a9bE2rVrYWFhgU2bNuW4/smTJ9GiRQv07dsXDg4OaN++Pfr06fPBUQ8iItJtWVlZ8PLywo4dO2BiYoKgoCD06NFD6lj0ESQrGBkZGTh37hycnZ3/fxgjIzg7O+PUqVM5btO8eXOcO3dOXSju3LmDAwcOoGPHjrm+T3p6OhITE7N9ERGR7nhbLnbu3AkTExMEBweje/fuUseijyTZVSQJCQlQKpUoXbp0tuWlS5fG9evXc9ymb9++SEhIwFdffQUhBLKysjBs2LD3niJZsGABZs2apdXsRESkPSdOnEBgYCBMTEwQEhICDw8PqSORFkg+yVMT0dHRmD9/PlavXo2YmBjs3r0b+/fvx5w5c3LdZurUqXj9+rX66+HDh4WYmIiIPsTR0REBAQHYtWsXy0URItkIhp2dHYyNjREfH59teXx8PMqUKZPjNjNmzED//v0xaNAgAEDt2rWRnJyMIUOG4Ntvv4WR0bt9yczMDGZmZtr/AERElG+ZmZl49eoVSpYsCQB8rkgRJNkIhlwuR8OGDREZGaleplKpEBkZiWbNmuW4TUpKyjslwtjYGADU10oTEZFuy8zMRJ8+fdCqVSvExcVJHYcKiKR38vT19YW3tzcaNWqEJk2aYPny5UhOToaPjw+Afxpt+fLlsWDBAgCAm5sbli5divr166Np06a4desWZsyYATc3N3XRICIi3ZWZmYnevXtj9+7dkMvluHz5cq6j1qTfJC0Ynp6eeP78Ofz8/BAXF4d69eohLCxMPfHzwYMH2UYspk+fDplMhunTp+Px48coWbIk3NzcMG/ePKk+AhER5VFGRgZ69+6NPXv2QC6XY8+ePdmuJKSiRSYM7NxCYmIibG1t8fr1a9jY2Hz0/lIyslDTLxwAcHW2CyzkfLwLEdF/ZWRkoFevXvj1119hZmaGvXv3wtXVVepYpCFNfofytyERERWojIwM9OzZE6GhoTAzM8Ovv/4KFxcXqWNRAdOry1SJiEj/vHjxAleuXIFCoUBoaCjLhYHgCAYRERWoMmXKICoqCrdu3ULr1q2ljkOFhCMYRESkdenp6YiOjla/tre3Z7kwMCwYRESkVWlpaejWrRucnZ0REhIidRySCAsGERFpTVpaGrp27YoDBw5ALpfjk08+kToSSYRzMIiISCtSU1Ph4eGB33//HRYWFti/fz+cnJykjkUSYcEgIqKPlpqaCnd3dxw6dAgWFhY4cOAAHB0dpY5FEmLBICKij5Keno4uXbogIiIClpaWOHDgAFq1aiV1LJIY52AQEdFHkcvlqFKlCiwtLXHw4EGWCwLAgkFERB9JJpNh5cqViImJQcuWLaWOQzqCBYOIiDSWnJyM2bNnIzMzEwBgZGSEqlWrSpyKdAnnYBARkUaSk5PRqVMnHDlyBHfu3EFAQIDUkUgHcQSDiIjy7M2bN+jYsSOOHDkCGxsbDBs2TOpIpKM4gkFERHnytlwcO3YMNjY2+P3339G0aVOpY5GO4ggGERF9UFJSEjp06IBjx47B1tYWhw4dYrmg9+IIBhERvZcQAj179sTx48dRrFgxHDp0CI0aNZI6Fuk4jmAQEdF7yWQyTJ06FeXLl0dERATLBeUJRzCIiOiDHB0dcevWLSgUCqmjkJ7gCAYREb3j9evXcHNzw+XLl9XLWC5IExzBICKibF69egUXFxecOXMGt27dwuXLl2FsbCx1LNIzLBhERKT26tUrtG/fHmfPnsUnn3yCwMBAlgvKF54iISIiAMDLly/Rrl07nD17FnZ2djh8+DDq1q0rdSzSUxzBICIivHjxAu3atUNMTIy6XNSuXVvqWKTHOIJBRESYNm0aYmJiULJkSURFRbFc0EdjwSAiIixatAgeHh44fPgwatWqJXUcKgJ4ioSIyEClpqbC3NwcAGBtbY09e/ZInIiKEo5gEBEZoISEBHz55ZdYsGCB1FGoiGLBICIyMM+fP0ebNm1w8eJF/PDDD3jx4oXUkagIYsEgIjIgz549Q5s2bXDp0iWUKVMG0dHRKFGihNSxqAjiHAwiIgPxtlxcuXIFZcuWRVRUFKpVqyZ1LCqiOIJBRGQA4uPj0bp1a1y5cgXlypVDdHQ0ywUVKI5gEBEZgPDwcFy9elVdLqpUqSJ1JCriWDCIiAyAl5cX0tLS0Lp1a5YLKhQsGERERVRcXBzMzMxQvHhxAMCQIUMkTkSGhHMwiIiKoKdPn8LJyQnt27fHq1evpI5DBogFg4ioiHny5AmcnJxw48YNxMfH4+XLl1JHIgPEgkFEVIQ8fvwYTk5OuHnzJj777DMcOXIEFStWlDoWGSDOwSAiKiIePXqE1q1b49atW/jss88QHR0NBwcHqWORgeIIBhFREfDw4UM4OTnh1q1bcHBwYLkgybFgEBEVAampqUhJSUHFihVZLkgn8BQJEVERULVqVURFRcHc3Byffvqp1HGIOIJBRKSv7t+/j8jISPXratWqsVyQzmDBICLSQ/fu3YOTkxM6deqEw4cPSx2H6B0sGEREeuZtubh37x7s7e350DLSSSwYRER65O7du3B0dMT9+/dRpUoVREdHo3z58lLHInoHCwYRkZ64c+cOnJyc8ODBA1StWpXlgnQaryIhItIDb2///fDhQ1SrVg1RUVEoW7as1LGIcsURDCIiPVCqVCm0aNEC1atXZ7kgvcARDCIiPWBiYoJt27bh1atXsLOzkzoO0QdxBIOISEfdvHkTEydOhEqlAvBPyWC5IH3BEQwiIh1048YNtG7dGk+fPoWVlRX8/f2ljkSkEY5gEBHpmOvXr6vLRa1atTB8+HCpIxFpjCMYREQ65G25iIuLQ+3atREZGYmSJUtKHYtIYxzBICLSEdeuXYOTkxPi4uJQp04dHD58mOWC9BYLBhGRDkhLS4OLiwvi4+NRr149HD58mBM6Sa+xYBAR6QCFQoFVq1ahadOmiIiIwCeffCJ1JKKPwoJBRCQhIYT6ezc3N5w8eZLlgoqEjyoYaWlp2spBRGRwLl68iEaNGuHOnTvqZUZG/HcfFQ0a/5esUqkwZ84clC9fHlZWVuo/GDNmzMDGjRu1HpCIqCi6cOEC2rRpg5iYGEyYMEHqOERap3HBmDt3LgICAvD9999DLperl9eqVQsbNmzQajgioqIoNjYWbdu2xd9//41GjRrxH2dUJGlcMLZu3Yp169ahX79+MDY2Vi+vW7curl+/rtVwRERFzfnz59XlonHjxjh06BCKFy8udSwirdO4YDx+/Biff/75O8tVKhUyMzO1EoqIqCiKiYlB27Zt8eLFCzRp0gSHDh1CsWLFpI5FVCA0Lhg1a9bEsWPH3lm+a9cu1K9fXyuhiIiKGiEExo8fj5cvX6Jp06b4/fffYWtrK3UsogKj8a3C/fz84O3tjcePH0OlUmH37t24ceMGtm7din379hVERiIivSeTyRASEoLJkydj2bJlsLGxkToSUYHSeATD3d0dv/32GyIiImBpaQk/Pz9cu3YNv/32G9q1a1cQGYmI9Nbff/+t/t7Ozg4bN25kuSCDkK+HnbVs2RKHDh3SdhYioiLl7NmzcHFxwcKFCzFkyBCp4xAVKo1HMCpVqpStkb/16tUrVKpUSSuhiIj03ZkzZ+Ds7IyXL19ix44dUCqVUkciKlQaF4x79+7l+AclPT0djx8/1kooIiJ99scff6Bdu3ZITExEy5YtsX///myX9RMZgjyfIgkNDVV/Hx4enm32s1KpRGRkJBwcHLQajohI35w6dQouLi5ISkpCq1atsH//flhZWUkdi6jQ5blgeHh4APhnJrS3t3e2n5mamsLBwQFLlizRajgiIn1y8uRJuLq6IikpCU5OTti3bx8sLS2ljkUkiTwXDJVKBQCoWLEizp49Czs7uwILRUSkj6KiopCUlITWrVvjt99+Y7kgg6bxVSR3794tiBxERHpv2rRpKFeuHDw9PWFhYSF1HCJJ5eu5wMnJyThw4ADWrl2LH3/8MduXplatWgUHBwcoFAo0bdoUZ86cee/6r169wsiRI1G2bFmYmZmhatWqOHDgQH4+BhHRR4uJiUFycjKAf04h+/j4sFwQIR8jGOfPn0fHjh2RkpKC5ORklChRAgkJCbCwsECpUqUwZsyYPO8rKCgIvr6+WLt2LZo2bYrly5fDxcUFN27cQKlSpd5ZPyMjA+3atUOpUqWwa9culC9fHvfv3+e9/IlIEkePHkXHjh3RpEkT7Nu3j8WC6F80HsEYN24c3Nzc8PLlS5ibm+P06dO4f/8+GjZsiMWLF2u0r6VLl2Lw4MHw8fFBzZo1sXbtWlhYWGDTpk05rr9p0ya8ePECe/fuRYsWLeDg4ABHR0fUrVtX049BRPRRjhw5gg4dOiA5ORmmpqaQyWRSRyLSKRoXjNjYWIwfPx5GRkYwNjZGeno67O3t8f3332PatGl53k9GRgbOnTsHZ2fn/x/GyAjOzs44depUjtuEhoaiWbNmGDlyJEqXLo1atWph/vz5772BTXp6OhITE7N9ERF9jOjoaPVIrouLC/bu3Qtzc3OpYxHpFI0LhqmpKYyM/tmsVKlSePDgAQDA1tYWDx8+zPN+EhISoFQqUbp06WzLS5cujbi4uBy3uXPnDnbt2gWlUokDBw5gxowZWLJkCebOnZvr+yxYsAC2trbqL3t7+zxnJCL6r8OHD6vLhaurK8sFUS40noNRv359nD17FlWqVIGjoyP8/PyQkJCAbdu2oVatWgWRUU2lUqFUqVJYt24djI2N0bBhQzx+/BiLFi2Cv79/jttMnToVvr6+6teJiYksGUSUL4cPH0bnzp2RmpqKDh06YPfu3VAoFFLHItJJGheM+fPnIykpCQAwb948eHl5Yfjw4ahSpQo2btyY5/3Y2dnB2NgY8fHx2ZbHx8ejTJkyOW5TtmxZmJqaZrvlbo0aNRAXF4eMjAzI5fJ3tjEzM4OZmVmecxER5aZYsWJQKBRo06YNfvnlF/7dQvQeGheMRo0aqb8vVaoUwsLC8vXGcrkcDRs2RGRkpPouoSqVCpGRkRg1alSO27Ro0QI7d+6ESqVSn6a5efMmypYtm2O5ICLSpgYNGuDkyZOoWLEiywXRB+TrPhg5iYmJQefOnTXaxtfXF+vXr8eWLVtw7do1DB8+HMnJyfDx8QEAeHl5YerUqer1hw8fjhcvXmDs2LG4efMm9u/fj/nz52PkyJHa+hhERNn8/vvvOHnypPp19erVWS6I8kCjEYzw8HAcOnQIcrkcgwYNQqVKlXD9+nVMmTIFv/32G1xcXDR6c09PTzx//hx+fn6Ii4tDvXr1EBYWpp74+eDBA/VIBQDY29sjPDwc48aNQ506dVC+fHmMHTsWkydP1uh9iYjyIiwsDB4eHpDL5Th16hS++OILqSMR6Q2ZEELkZcWNGzdi8ODBKFGiBF6+fIlPPvkES5cuxejRo+Hp6YmxY8eiRo0aBZ33oyUmJsLW1havX7+GjY3NR+8vJSMLNf3CAQBXZ7vAQq7xWSci0kEHDx5E165dkZ6eDg8PDwQFBfFULBk8TX6H5vkUyQ8//IDvvvsOCQkJCA4ORkJCAlavXo1Lly5h7dq1elEuiIjy4sCBA/Dw8EB6ejq6du2K4OBglgsiDeW5YNy+fRs9e/YEAHTr1g0mJiZYtGgRKlSoUGDhiIgK2759+9C1a1dkZGSge/fuCAoKgqmpqdSxiPROngtGamqq+j77MpkMZmZmKFu2bIEFIyIqbCdPnkS3bt2QkZGBHj164Oeff2a5IMonjSYMbNiwAVZWVgCArKwsBAQEwM7OLts6mjzsjIhIlzRo0ADOzs6wsrLCjh07WC6IPkKeJ3k6ODh88GE+MpkMd+7c0UqwgsJJnkT0PmlpaTAxMYGJCf8sE/2XJr9D8/wn6N69ex+bi4hI5+zZswenT5/GwoULIZPJeOtvIi1hRScig7V79254enoiKysL9erVQ58+faSORFRkaO1OnkRE+mTXrl3o1asXsrKy0K9fP/VVckSkHSwYRGRwQkJC0Lt3byiVSvTv3x9btmzhnAsiLWPBICKDEhQUhD59+kCpVMLLywubN2/O9oRmItIOFgwiMhgPHz5E//79oVQq4e3tjU2bNrFcEBWQfBWM27dvY/r06ejTpw+ePXsG4J/79l+5ckWr4YiItMne3h4bNmzAwIEDsXHjRpYLogKkccE4cuQIateujT/++AO7d+/GmzdvAAAXLlyAv7+/1gMSEX2szMxM9fdeXl7YsGEDywVRAdO4YEyZMgVz585VP7b9rTZt2uD06dNaDUdE9LG2b9+O+vXrIy4uTuooRAZF44Jx6dIldO3a9Z3lpUqVQkJCglZCERFpw7Zt2+Dt7Y0rV65g3bp1UschMigaF4xixYrh6dOn7yw/f/48ypcvr5VQREQfa8uWLfD29oZKpcLQoUMxffp0qSMRGRSNC0bv3r0xefJkxMXFQSaTQaVS4cSJE5gwYQK8vLwKIiMRkUYCAgLg4+MDIQSGDRuG1atXw8iIF80RFSaN/8TNnz8f1atXh729Pd68eYOaNWuiVatWaN68Of+FQESS27x5M7755hsIITBixAiWCyKJaHzrOrlcjvXr12PGjBm4fPky3rx5g/r166NKlSoFkY+IKM/S0tKwYMECCCEwcuRIrFix4oNPgSaigqFxwTh+/Di++uorfPrpp/j0008LIhMRUb4oFApERkZiy5Yt+Pbbb1kuiCSk8bhhmzZtULFiRUybNg1Xr14tiExERBq5e/eu+nt7e3tMnz6d5YJIYhoXjCdPnmD8+PE4cuQIatWqhXr16mHRokV49OhRQeQjInqvn376CVWrVkVwcLDUUYjoXzQuGHZ2dhg1ahROnDiB27dvo2fPntiyZQscHBzQpk2bgshIRJSjNWvWYNiwYcjKysLZs2eljkNE//JRU6srVqyIKVOmYOHChahduzaOHDmirVxERO+1evVqjBgxAgAwfvx4fP/99xInIqJ/y3fBOHHiBEaMGIGyZcuib9++qFWrFvbv36/NbEREOVq5ciVGjhwJAJg4cSIWLVrEORdEOkbjq0imTp2KwMBAPHnyBO3atcMPP/wAd3d3WFhYFEQ+IqJsVqxYgTFjxgAAJk2ahIULF7JcEOkgjQvG0aNHMXHiRPTq1Qt2dnYFkYmIKFc3btwA8M+DF+fPn89yQaSjNC4YJ06cKIgcRER5smLFCrRv3x5ubm4sF0Q6LE8FIzQ0FB06dICpqSlCQ0Pfu26XLl20EoyI6K1ff/0VHTp0gFwuh0wm498zRHogTwXDw8MDcXFxKFWqFDw8PHJdTyaTQalUaisbERGWLFmCCRMmwMPDA7t27YKxsbHUkYgoD/JUMFQqVY7fExEVpEWLFmHSpEkAgDp16vChZUR6ROM/rVu3bkV6evo7yzMyMrB161athCIi+u6779Tlwt/fH7NmzeKcCyI9onHB8PHxwevXr99ZnpSUBB8fH62EIiLDtnDhQkyZMgUAMHPmTMycOVPaQESkMY2vIhFC5PiviEePHsHW1lYroYjIcC1atAhTp04FAMyePRszZsyQOBER5UeeC0b9+vUhk8kgk8nQtm1bmJj8/02VSiXu3r0LV1fXAglJRIajSZMmsLCwwNSpUzF9+nSp4xBRPuW5YLy9eiQ2NhYuLi6wsrJS/0wul8PBwQHdu3fXekAiMiyOjo64du0aPv30U6mjENFHyHPB8Pf3BwA4ODjA09MTCoWiwEIRkWFZvHgxXF1dUatWLQBguSAqAjSe5Ont7c1yQURaM3PmTEycOBFt2rTB33//LXUcItKSPI1glChRAjdv3oSdnR2KFy/+3kvFXrx4obVwRFR0CSEwc+ZMzJ49G8A/Dy775JNPJE5FRNqSp4KxbNkyWFtbq7/ntehE9DGEEPDz88PcuXMB/HOKZPz48RKnIiJtylPB8Pb2Vn8/YMCAgspCRAZACIEZM2Zg3rx5AIClS5di3LhxEqciIm3TeA5GTEwMLl26pH7966+/wsPDA9OmTUNGRoZWwxFR0bNhwwZ1uVi2bBnLBVERpXHBGDp0KG7evAkAuHPnDjw9PWFhYYGQkBD1bX2JiHLTu3dvtGjRAsuXL8f//vc/qeMQUQHR+E6eN2/eRL169QAAISEhcHR0xM6dO3HixAn07t0by5cv13JEItJ3/74DsLW1NaKjo7PdrI+Iih6NRzCEEOonqkZERKBjx44AAHt7eyQkJGg3HRHpPSEEJk6ciAULFqiXsVwQFX0a/ylv1KgR5s6dC2dnZxw5cgRr1qwBANy9exelS5fWekAi0l9CCEyYMAFLly4FALi6uqJ+/foSpyKiwqDxCMby5csRExODUaNG4dtvv8Xnn38OANi1axeaN2+u9YBEpJ+EEPD19VWXizVr1rBcEBkQjUcw6tSpk+0qkrcWLVoEY2NjrYQiIv0mhMC4cePwww8/AAB++uknDBkyROJURFSY8n0i9Ny5c7h27RoAoGbNmmjQoIHWQhGR/hJCYOzYsVixYgUAYN26dRg8eLDEqYiosGlcMJ49ewZPT08cOXIExYoVAwC8evUKrVu3RmBgIEqWLKntjESkR44cOYIVK1ZAJpNh/fr1GDhwoNSRiEgCGs/BGD16NN68eYMrV67gxYsXePHiBS5fvozExESMGTOmIDISkR5xcnLC8uXLsWHDBpYLIgOm8QhGWFgYIiIiUKNGDfWymjVrYtWqVWjfvr1WwxGRflCpVEhOTlY/s2js2LESJyIiqWk8gqFSqWBqavrOclNTU/X9MYjIcKhUKowYMQKtW7fGq1evpI5DRDpC44LRpk0bjB07Fk+ePFEve/z4McaNG4e2bdtqNRwR6TaVSoVhw4bhp59+QkxMDI4ePSp1JCLSERoXjJUrVyIxMREODg6oXLkyKleujIoVKyIxMVE9a5yIij6VSoWhQ4di/fr1MDIywtatW9GlSxepYxGRjtB4Doa9vT1iYmIQGRmpvky1Ro0acHZ21no4ItJNKpUKgwcPxqZNm9Tlol+/flLHIiIdolHBCAoKQmhoKDIyMtC2bVuMHj26oHIRkY5SqVQYNGgQNm/eDCMjI2zbtg19+/aVOhYR6Zg8F4w1a9Zg5MiRqFKlCszNzbF7927cvn0bixYtKsh8RKRjnj59irCwMBgZGWHHjh3o3bu31JGISAfleQ7GypUr4e/vjxs3biA2NhZbtmzB6tWrCzIbEemg8uXLIyoqCiEhISwXRJSrPBeMO3fuwNvbW/26b9++yMrKwtOnTwskGBHpDqVSidjYWPXratWqoVu3btIFIiKdl+eCkZ6eDktLy/+/oZER5HI5UlNTCyQYEekGpVKJAQMG4Msvv0R4eLjUcYhIT2g0yXPGjBmwsLBQv87IyMC8efNga2urXvb20cxEpP+ysrLg7e2NnTt3wsTEBG/evJE6EhHpiTwXjFatWuHGjRvZljVv3hx37txRv5bJZNpLRkSSysrKgpeXF37++WeYmJggKCiIp0WIKM/yXDCio6MLMAYR6ZKsrCx8/fXXCAoKgomJCYKDg9G1a1epYxGRHtH4RltEVLRlZWWhX79+CA4OhqmpKUJCQuDu7i51LCLSMywYRPQOY2NjmJqaYteuXbz9NxHli8bPIiGios3ExARbt27FiRMnWC6IKN9YMIgImZmZWL16NZRKJYB/Skbjxo0lTkVE+owFg8jAZWRkwNPTEyNHjsTIkSOljkNERUS+CsaxY8fw9ddfo1mzZnj8+DEAYNu2bTh+/LhWwxFRwXpbLvbs2QMzMzNO5iQirdG4YPzyyy9wcXGBubk5zp8/j/T0dADA69evMX/+fK0HJKKCkZGRgZ49e2Lv3r0wMzPD3r170aFDB6ljEVERoXHBmDt3LtauXYv169fD1NRUvbxFixaIiYnRajgiKhjp6eno0aMHQkNDoVAoEBoaCldXV6ljEVERovFlqjdu3ECrVq3eWW5ra4tXr15pIxMRFbB+/frht99+U5eLdu3aSR2JiIoYjUcwypQpg1u3br2z/Pjx46hUqVK+QqxatQoODg5QKBRo2rQpzpw5k6ftAgMDIZPJ4OHhka/3JTJU3t7esLW1xW+//cZyQUQFQuOCMXjwYIwdOxZ//PEHZDIZnjx5gh07dmDChAkYPny4xgGCgoLg6+sLf39/xMTEoG7dunBxccGzZ8/eu929e/cwYcIEtGzZUuP3JDJ0bm5uuHfvHpydnaWOQkRFlMYFY8qUKejbty/atm2LN2/eoFWrVhg0aBCGDh2K0aNHaxxg6dKlGDx4MHx8fFCzZk2sXbsWFhYW2LRpU67bKJVK9OvXD7Nmzcr3qAmRIUlLS8PAgQOzPZywWLFi0gUioiJP44Ihk8nw7bff4sWLF7h8+TJOnz6N58+fY86cORq/eUZGBs6dO5ftX1FGRkZwdnbGqVOnct1u9uzZKFWqFAYOHPjB90hPT0diYmK2LyJDkpqaCnd3d2zatAmdO3dW30yLiKgg5ftZJHK5HDVr1vyoN09ISIBSqUTp0qWzLS9dujSuX7+e4zbHjx/Hxo0bERsbm6f3WLBgAWbNmvVROYn01dtycejQIVhaWmLt2rUwNjaWOhYRGQCNC0br1q0hk8ly/fnhw4c/KtD7JCUloX///li/fj3s7OzytM3UqVPh6+urfp2YmAh7e/uCikikM1JSUuDu7o6IiAhYWlri4MGDnLNERIVG44JRr169bK8zMzMRGxuLy5cvw9vbW6N92dnZwdjYGPHx8dmWx8fHo0yZMu+sf/v2bdy7dw9ubm7qZSqVCsA/z064ceMGKleunG0bMzMzmJmZaZSLSN+lpKSgS5cuiIyMhJWVFQ4ePIivvvpK6lhEZEA0LhjLli3LcfnMmTPx5s0bjfYll8vRsGFDREZGqi81ValUiIyMxKhRo95Zv3r16rh06VK2ZdOnT0dSUhJ++OEHjkwQ/Z9Jkyapy0VYWBhatGghdSQiMjD5noPxX19//TWaNGmCxYsXa7Sdr68vvL290ahRIzRp0gTLly9HcnIyfHx8AABeXl4oX748FixYAIVCgVq1amXb/u1M+P8uJzJkM2fOxIULF/Ddd9+hefPmUschIgOktYJx6tQpKBQKjbfz9PTE8+fP4efnh7i4ONSrVw9hYWHqiZ8PHjyAkREf+kr0IUqlUj2B087ODkePHn3vfCkiooKkccHo1q1bttdCCDx9+hR//vknZsyYka8Qo0aNyvGUCABER0e/d9uAgIB8vSdRUfLmzRt07twZffr0wdChQwGA5YKIJKVxwbC1tc322sjICNWqVcPs2bPRvn17rQUjorxJSkpCx44dcfz4cVy4cAHdu3fP81VWREQFRaOCoVQq4ePjg9q1a6N48eIFlYmI8igpKQkdOnTAiRMnYGtri/DwcJYLItIJGk1uMDY2Rvv27fnUVCIdkJiYCFdXV3W5OHToEJo0aSJ1LCIiAPm4VXitWrWyPc+AiArf23Jx8uRJFCtWDBEREWjcuLHUsYiI1DQuGHPnzsWECROwb98+PH36lM/5IJJAcHAwTp06heLFiyMiIgKNGjWSOhIRUTZ5noMxe/ZsjB8/Hh07dgQAdOnSJdssdSEEZDIZH6REVAgGDhyI58+fw8XFBQ0aNJA6DhHRO/JcMGbNmoVhw4YhKiqqIPMQUS5ev34NExMTWFpaQiaTYerUqVJHIiLKVZ4LhhACAODo6FhgYYgoZ69evUL79u1hZWWFffv2wcLCQupIRETvpdEcDN64h6jwvXz5Eu3atcPZs2dx8eJFPHjwQOpIREQfpNF9MKpWrfrBkvHixYuPCkRE/9+LFy/Qrl07xMTEwM7ODpGRkahevbrUsYiIPkijgjFr1qx37uRJRAXjxYsXcHZ2xvnz52FnZ4fDhw+jdu3aUsciIsoTjQpG7969UapUqYLKQkT/5++//4azszNiY2NRsmRJHD58mE8MJiK9kuc5GJx/QVR4njx5gvv376NUqVKIiopiuSAivaPxVSREVPBq166NiIgIKBQK1KxZU+o4REQay3PBUKlUBZmDyOAlJCTg7t276lt+8wZaRKTPNL5VOBFp3/Pnz9GmTRu0bdsWp0+fljoOEdFHY8EgktizZ8/Qpk0bXLp0CVZWVihevLjUkYiIPppGV5EQkXa9LRdXrlxBuXLlEBUVhapVq0odi4joo3EEg0gi8fHxaN26Na5cuYLy5csjOjqa5YKIigyOYBBJ4Pnz52jdujWuXbumLheff/651LGIiLSGBYNIAtbW1nBwcEBSUhKioqJYLoioyGHBIJKAQqHA7t278ezZM3z66adSxyEi0jrOwSAqJE+ePMF3332nvmmdQqFguSCiIosjGESF4PHjx2jdujX++usvqFQqTJ06VepIREQFiiMYRAXs0aNHcHJywl9//YXPPvsMffr0kToSEVGBY8EgKkAPHz6Ek5MTbt26BQcHBxw5cgQODg5SxyIiKnAsGEQF5G25uH37NipWrIjo6Gh89tlnUsciIioULBhEBSA9PR1t27bFnTt3UKlSJZYLIjI4LBhEBcDMzAx+fn6oWrUqoqOjebUIERkcFgyiAvL111/j4sWLsLe3lzoKEVGhY8Eg0pK7d+/C1dUVT58+VS8zMzOTMBERkXRYMIi04M6dO3ByckJ4eDiGDRsmdRwiIsmxYBB9pNu3b8PJyQkPHjxA1apVsWbNGqkjERFJjnfyJPoIb8vFo0ePUK1aNURFRaFs2bJSxyIikhxHMIjy6datW3B0dMSjR49QvXp1REdHs1wQEf0fFgyifBo0aBAeP36MGjVqICoqCmXKlJE6EhGRzmDBIMqnbdu2wc3NjeWCiCgHnINBpIHU1FSYm5sDAOzt7REaGipxIiIi3cQRDKI8unHjBqpVq4bg4GCpoxAR6TwWDKI8uH79OpycnPDw4UMsXLgQWVlZUkciItJpLBhEH3Dt2jU4OTkhLi4OderUwe+//w4TE55dJCJ6HxYMove4evUqnJycEB8fj7p16yIyMhJ2dnZSxyIi0nksGES5uHLlClq3bo1nz56hXr16LBdERBpgwSDKxc6dO/Hs2TPUr18fkZGR+OSTT6SORESkN3gimSgXc+fORbFixTBw4ECUKFFC6jhERHqFIxhE/3Lr1i1kZGQAAGQyGSZOnMhyQUSUDywYRP/nwoUL+PLLL9GrVy91ySAiovxhwSACEBsbizZt2uDvv//GkydPkJqaKnUkIiK9xoJBBu/8+fNo27YtXrx4gaZNm+LQoUOwtbWVOhYRkV5jwSCDFhMToy4XX375JcLDw1kuiIi0gAWDDNa5c+fQtm1bvHz5Es2aNWO5ICLSIhYMMljJycnIyMhA8+bNERYWBhsbG6kjEREVGbwPBhmsVq1aISoqCjVq1IC1tbXUcYiIihQWDDIoZ86cgUKhQJ06dQAATZo0kTgREVHRxFMkZDBOnz6Ndu3aoW3btrh+/brUcYiIijQWDDIIp06dQvv27ZGYmIiaNWuiQoUKUkciIirSWDCoyDt58iRcXFyQlJQER0dHHDhwAFZWVlLHIiIq0lgwqEg7ceKEulw4OTlh//79sLS0lDoWEVGRx4JBRda5c+fg6uqKN2/eoE2bNiwXRESFiFeRUJFVtWpV1K1bFwqFAqGhobCwsJA6EhGRwWDBoCLL2toaBw8ehLGxMcsFEVEh4ykSKlKOHDmCRYsWqV9bW1uzXBARSYAjGFRkREVFoXPnzkhJScGnn34KT09PqSMRERksjmBQkXD48GF06tQJKSkpcHV1hbu7u9SRiIgMGgsG6b3IyEh07twZqamp6NixI/bs2QOFQiF1LCIig8ZTJKTXIiIi4ObmhrS0NHTs2BG7d++GmZmZ1LGIiAweRzBIbz1+/BhdunRBWloaOnXqxHJBRKRDOIJBeqt8+fJYuHAhIiIiEBISwnJBRKRDOIJBekcIof5+zJgx2Lt3L8sFEZGOYcEgvXLw4EG0bNkSL1++VC8zMuJ/xkREuoZ/M5PeOHDgADw8PHDixIlsN9MiIiLdw4JBemHfvn3o2rUrMjIy0L17d8yaNUvqSERE9B4sGKTzfvvtN3Tr1g0ZGRno0aMHfv75Z5iamkodi4iI3kMnCsaqVavg4OAAhUKBpk2b4syZM7muu379erRs2RLFixdH8eLF4ezs/N71Sb+Fhoaie/fuyMzMRM+ePbFz506WCyIiPSB5wQgKCoKvry/8/f0RExODunXrwsXFBc+ePctx/ejoaPTp0wdRUVE4deoU7O3t0b59ezx+/LiQk1NBS09Px9ixY5GZmQlPT0+WCyIiPSIT/77mTwJNmzZF48aNsXLlSgCASqWCvb09Ro8ejSlTpnxwe6VSieLFi2PlypXw8vL64PqJiYmwtbXF69evYWNj89H5UzKyUNMvHABwdbYLLOS8tYg23bx5EytXrsTSpUthYsJjS0QkJU1+h0o6gpGRkYFz587B2dlZvczIyAjOzs44depUnvaRkpKCzMxMlChRIsefp6enIzExMdsX6baEhAT191WrVsWPP/7IckFEpGckLRgJCQlQKpUoXbp0tuWlS5dGXFxcnvYxefJklCtXLltJ+bcFCxbA1tZW/WVvb//Ruang7Nq1CxUrVkR4eLjUUYiI6CNIPgfjYyxcuBCBgYHvfXrm1KlT8fr1a/XXw4cPCzkl5VVISAh69+6NN2/eYNeuXVLHISKijyDpuLOdnR2MjY0RHx+fbXl8fDzKlCnz3m0XL16sfg5FnTp1cl3PzMyMt5HWA8HBwejbty+USiW8vLywdu1aqSMREdFHkHQEQy6Xo2HDhoiMjFQvU6lUiIyMRLNmzXLd7vvvv8ecOXMQFhaGRo0aFUZUKkCBgYHqcuHt7Y1NmzbB2NhY6lhERPQRJJ855+vrC29vbzRq1AhNmjTB8uXLkZycDB8fHwCAl5cXypcvjwULFgAAvvvuO/j5+WHnzp1wcHBQz9WwsrKClZWVZJ+D8ufnn3/G119/DZVKBR8fH6xfv57lgoioCJC8YHh6euL58+fw8/NDXFwc6tWrh7CwMPXEzwcPHmR7mNWaNWvUd3T8N39/f8ycObMwo5MWHDx4ECqVCt988w3Wr1/PB5cRERURkt8Ho7DxPhi6JSsrC1u2bIGPjw/LBRGRjtOb+2CQYTp+/DiUSiUAwMTEBAMHDmS5ICIqYvi3OhWqLVu2oFWrVhg4cKC6ZBARUdHDgkGFJiAgAD4+PhBCwNzcHDKZTOpIRERUQFgwqFBs2rQJ33zzDYQQGD58OFatWsXTIkRERRj/hqcCt3HjRgwaNAhCCIwYMYLlgojIAPBveSpQ/y4Xo0aNwsqVK3lqhIjIAPCaSipQpUqVgqmpKYYPH47ly5ezXBARGQgWDCpQbm5uOHfuHGrVqsVyQURkQHiKhLRuy5YtuH37tvp17dq1WS6IiAwMCwZp1erVqzFgwAC0bt0aCQkJUschIiKJsGCQ1qxatQojR44E8M8zZj755BOJExERkVRYMEgrVqxYgVGjRgEAJk2ahO+//56nRYiIDBgLBn20H3/8EWPGjAEATJ48GQsXLmS5ICIycCwY9FG2b9+OsWPHAgCmTp2KBQsWsFwQEREvU6WP4+rqijp16sDNzQ1z5sxhuSAiIgAsGPSR7OzscPLkSVhYWLBcEBGRGk+RkMYWLVqEtWvXql9bWlqyXBARUTYcwSCNfPfdd5gyZQoAoHHjxmjYsKHEiYiISBdxBIPybOHChepyMWvWLJYLIiLKFQsG5cn8+fMxdepUAMCcOXPg5+cncSIiItJlPEVCHzRv3jxMnz5d/f20adMkTkRERLqOBYPe6+jRo+py8e9RDCIiovdhwaD3atWqFfz8/GBhYYHJkydLHYeIiPQECwa9QwiBzMxMyOVyAP9M6CQiItIEJ3lSNkII+Pv7w8XFBSkpKVLHISIiPcWCQWpCCPj5+WHOnDmIjo7Gvn37pI5ERER6iqdICMA/5WL69OmYP38+AGDp0qXo1auXxKmIiEhfsWAQhBCYNm0aFi5cCABYtmwZ/ve//0kbioiI9BoLhoETQmDq1Kn47rvvAAA//PADxowZI3EqIiLSdywYBu7JkydYt24dAGDFihUYNWqUxImIiKgoYMEwcOXLl0dkZCT+/PNPDB48WOo4RERURLBgGCAhBO7du4eKFSsCAOrXr4/69etLnIqIiIoSXqZqYIQQGD9+POrWrYtTp05JHYeIiIooFgwDIoTAuHHjsGzZMiQlJeHKlStSRyIioiKKp0gMhBACY8eOxYoVKwAA69atw6BBgyRORURERRULhgEQQmD06NFYtWoVAGD9+vUsF0REVKBYMIo4IQRGjRqF1atXQyaTYcOGDfjmm2+kjkVEREUcC0YRl5mZiXv37kEmk2Hjxo3w8fGROhIRERkAFowiTi6X45dffsGRI0fg4uIidRwiIjIQvIqkCFKpVAgJCYEQAgCgUChYLoiIqFCxYBQxKpUKw4YNQ69evTBp0iSp4xARkYHiKZIiRKVSYciQIdi4cSOMjIxQr149qSMREZGBYsEoIlQqFQYPHoxNmzbByMgI27ZtQ9++faWORUREBooFowhQKpUYNGgQAgICYGRkhB07dqB3795SxyIiIgPGORhFwJAhQxAQEABjY2Ps3LmT5YKIiCTHglEEtG7dGnK5HDt37oSnp6fUcYiIiHiKpCj4+uuv4ejoCHt7e6mjEBERAeAIhl7KysrClClT8PTpU/UylgsiItIlLBh6JisrC15eXvjuu+/g4uKCrKwsqSMRERG9g6dI9EhWVhb69++PwMBAmJiYYPbs2TAx4f+FRESke/jbSU9kZWWhX79+CA4OhqmpKUJCQuDu7i51LCIiohyxYOiBzMxM9OvXDyEhITA1NcUvv/wCNzc3qWMRERHlinMw9MDkyZMREhICuVyO3bt3s1wQEZHOY8HQA76+vvjiiy+we/dudO7cWeo4REREH8RTJDpKCAGZTAYAqFChAmJjYzmhk4iI9AZHMHRQRkYGevbsiaCgIPUylgsiItInLBg6Jj09HT169MAvv/yCgQMH4vnz51JHIiIi0hj/WaxD3paLffv2QaFQYPfu3ShZsqTUsYiIiDTGgqEj0tPT0b17d+zfvx8KhQKhoaFo166d1LGIiIjyhQVDB6SlpaF79+44cOAAFAoFfvvtNzg7O0sdi4iIKN84B0MHbNmyBQcOHIC5uTn27dvHckFERHqPIxg6YMiQIbh58yY6deqENm3aSB2HiIjoo7FgSCQ1NRXGxsaQy+WQyWRYsmSJ1JGIiIi0hqdIJJCamgp3d3f06tULGRkZUschIiLSOo5gFLKUlBS4u7sjIiIClpaWuH79OurUqSN1LCIiIq1iwShEKSkpcHNzw+HDh2FpaYmDBw+yXBARUZHEUySFJDk5GZ07d8bhw4dhZWWFsLAwtGzZUupYREREBYIjGIXgbbmIjo6GtbU1wsLC0Lx5c6ljERERFRgWjEJw/fp1nD17FtbW1ggPD0ezZs2kjkRERFSgWDAKQcOGDbF//37I5XKWCyIiMggsGAXkzZs3ePToEapXrw4AcHR0lDgRERFR4eEkzwKQlJSEDh06oGXLlrh06ZLUcYiIiAodC4aWJSYmwtXVFcePH0dmZibS0tKkjkRERFTodKJgrFq1Cg4ODlAoFGjatCnOnDnz3vVDQkJQvXp1KBQK1K5dGwcOHCikpO+XmJgEV1dXnDx5EsWKFUNERAQaN24sdSwiIqJCJ3nBCAoKgq+vL/z9/RETE4O6devCxcUFz549y3H9kydPok+fPhg4cCDOnz8PDw8PeHh44PLly4Wc/F3u7u44deoUihcvjoiICDRq1EjqSERERJKQCSGElAGaNm2Kxo0bY+XKlQAAlUoFe3t7jB49GlOmTHlnfU9PTyQnJ2Pfvn3qZV9++SXq1auHtWvXfvD9EhMTYWtri9evX8PGxuaj86dkZKGmXzgA4MHS7ihmZYGIiAg0aNDgo/dNRESkSzT5HSrpCEZGRgbOnTsHZ2dn9TIjIyM4Ozvj1KlTOW5z6tSpbOsDgIuLS67rp6enIzExMdtXQSlevDgiIyNZLoiIyOBJWjASEhKgVCpRunTpbMtLly6NuLi4HLeJi4vTaP0FCxbA1tZW/WVvb6+d8Dk49Psh1K9fv8D2T0REpC+K/H0wpk6dCl9fX/XrxMRErZYMc1NjXJ3tov6eiIiIJC4YdnZ2MDY2Rnx8fLbl8fHxKFOmTI7blClTRqP1zczMYGZmpp3AOZDJZLCQF/meRkREpBFJT5HI5XI0bNgQkZGR6mUqlQqRkZG53lK7WbNm2dYHgEOHDvEW3ERERDpE8n96+/r6wtvbG40aNUKTJk2wfPlyJCcnw8fHBwDg5eWF8uXLY8GCBQCAsWPHwtHREUuWLEGnTp0QGBiIP//8E+vWrZPyYxAREdG/SF4wPD098fz5c/j5+SEuLg716tVDWFiYeiLngwcPYGT0/wdamjdvjp07d2L69OmYNm0aqlSpgr1796JWrVpSfQQiIiL6D8nvg1HYtH0fDCIiIkOhN/fBICIioqKJBYOIiIi0jgWDiIiItI4Fg4iIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLRO8se1F7a3D49NTEyUOAkREZF+efu7My8PYje4gpGUlAQAsLe3lzgJERGRfkpKSoKtre1715GJvNSQIkSlUuHJkyewtraGTCbTyj4TExNhb2+Phw8fwsbGRiv7NHQ8ptrHY6pdPJ7ax2OqXQVxPIUQSEpKQrly5WBk9P5ZFgY3gmFkZIQKFSoUyL5tbGz4h0LLeEy1j8dUu3g8tY/HVLu0fTw/NHLxFid5EhERkdaxYBAREZHWsWBogZmZGfz9/WFmZiZ1lCKDx1T7eEy1i8dT+3hMtUvq42lwkzyJiIio4HEEg4iIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLSOBSOPVq1aBQcHBygUCjRt2hRnzpx57/ohISGoXr06FAoFateujQMHDhRSUv2hyTFdv349WrZsieLFi6N48eJwdnb+4P8HhkbT/0bfCgwMhEwmg4eHR8EG1EOaHtNXr15h5MiRKFu2LMzMzFC1alX+2f8XTY/n8uXLUa1aNZibm8Pe3h7jxo1DWlpaIaXVfUePHoWbmxvKlSsHmUyGvXv3fnCb6OhoNGjQAGZmZvj8888REBBQcAEFfVBgYKCQy+Vi06ZN4sqVK2Lw4MGiWLFiIj4+Psf1T5w4IYyNjcX3338vrl69KqZPny5MTU3FpUuXCjm57tL0mPbt21esWrVKnD9/Xly7dk0MGDBA2NraikePHhVyct2k6fF86+7du6J8+fKiZcuWwt3dvXDC6glNj2l6erpo1KiR6Nixozh+/Li4e/euiI6OFrGxsYWcXDdpejx37NghzMzMxI4dO8Tdu3dFeHi4KFu2rBg3blwhJ9ddBw4cEN9++63YvXu3ACD27Nnz3vXv3LkjLCwshK+vr7h69apYsWKFMDY2FmFhYQWSjwUjD5o0aSJGjhypfq1UKkW5cuXEggULcly/V69eolOnTtmWNW3aVAwdOrRAc+oTTY/pf2VlZQlra2uxZcuWgoqoV/JzPLOyskTz5s3Fhg0bhLe3NwvGf2h6TNesWSMqVaokMjIyCiuiXtH0eI4cOVK0adMm2zJfX1/RokWLAs2pr/JSMCZNmiS++OKLbMs8PT2Fi4tLgWTiKZIPyMjIwLlz5+Ds7KxeZmRkBGdnZ5w6dSrHbU6dOpVtfQBwcXHJdX1Dk59j+l8pKSnIzMxEiRIlCiqm3sjv8Zw9ezZKlSqFgQMHFkZMvZKfYxoaGopmzZph5MiRKF26NGrVqoX58+dDqVQWVmydlZ/j2bx5c5w7d059GuXOnTs4cOAAOnbsWCiZi6LC/t1kcA8701RCQgKUSiVKly6dbXnp0qVx/fr1HLeJi4vLcf24uLgCy6lP8nNM/2vy5MkoV67cO39YDFF+jufx48exceNGxMbGFkJC/ZOfY3rnzh0cPnwY/fr1w4EDB3Dr1i2MGDECmZmZ8Pf3L4zYOis/x7Nv375ISEjAV199BSEEsrKyMGzYMEybNq0wIhdJuf1uSkxMRGpqKszNzbX6fhzBIL2zcOFCBAYGYs+ePVAoFFLH0TtJSUno378/1q9fDzs7O6njFBkqlQqlSpXCunXr0LBhQ3h6euLbb7/F2rVrpY6ml6KjozF//nysXr0aMTEx2L17N/bv3485c+ZIHY3yiCMYH2BnZwdjY2PEx8dnWx4fH48yZcrkuE2ZMmU0Wt/Q5OeYvrV48WIsXLgQERERqFOnTkHG1BuaHs/bt2/j3r17cHNzUy9TqVQAABMTE9y4cQOVK1cu2NA6Lj//jZYtWxampqYwNjZWL6tRowbi4uKQkZEBuVxeoJl1WX6O54wZM9C/f38MGjQIAFC7dm0kJydjyJAh+Pbbb2FkxH8fayq33002NjZaH70AOILxQXK5HA0bNkRkZKR6mUqlQmRkJJo1a5bjNs2aNcu2PgAcOnQo1/UNTX6OKQB8//33mDNnDsLCwtCoUaPCiKoXND2e1atXx6VLlxAbG6v+6tKlC1q3bo3Y2FjY29sXZnydlJ//Rlu0aIFbt26pyxoA3Lx5E2XLljXocgHk73impKS8UyLeljfBR2jlS6H/biqQqaNFTGBgoDAzMxMBAQHi6tWrYsiQIaJYsWIiLi5OCCFE//79xZQpU9TrnzhxQpiYmIjFixeLa9euCX9/f16m+h+aHtOFCxcKuVwudu3aJZ4+far+SkpKkuoj6BRNj+d/8SqSd2l6TB88eCCsra3FqFGjxI0bN8S+fftEqVKlxNy5c6X6CDpF0+Pp7+8vrK2txc8//yzu3Lkjfv/9d1G5cmXRq1cvqT6CzklKShLnz58X58+fFwDE0qVLxfnz58X9+/eFEEJMmTJF9O/fX73+28tUJ06cKK5duyZWrVrFy1R1wYoVK8Snn34q5HK5aNKkiTh9+rT6Z46OjsLb2zvb+sHBwaJq1apCLpeLL774Quzfv7+QE+s+TY7pZ599JgC88+Xv71/4wXWUpv+N/hsLRs40PaYnT54UTZs2FWZmZqJSpUpi3rx5Iisrq5BT6y5NjmdmZqaYOXOmqFy5slAoFMLe3l6MGDFCvHz5svCD66ioqKgc/158exy9vb2Fo6PjO9vUq1dPyOVyUalSJbF58+YCy8fHtRMREZHWcQ4GERERaR0LBhEREWkdCwYRERFpHQsGERERaR0LBhEREWkdCwYRERFpHQsGERERaR0LBhEREWkdCwZRERMQEIBixYpJHSPfZDIZ9u7d+951BgwYAA8Pj0LJQ0T5w4JBpIMGDBgAmUz2ztetW7ekjoaAgAB1HiMjI1SoUAE+Pj549uyZVvb/9OlTdOjQAQBw7949yGQyxMbGZlvnhx9+QEBAgFbeLzczZ85Uf05jY2PY29tjyJAhePHihUb7YRkiQ8XHtRPpKFdXV2zevDnbspIlS0qUJjsbGxvcuHEDKpUKFy5cgI+PD548eYLw8PCP3nduj+/+N1tb249+n7z44osvEBERAaVSiWvXruGbb77B69evERQUVCjvT6TPOIJBpKPMzMxQpkyZbF/GxsZYunQpateuDUtLS9jb22PEiBF48+ZNrvu5cOECWrduDWtra9jY2KBhw4b4888/1T8/fvw4WrZsCXNzc9jb22PMmDFITk5+bzaZTIYyZcqgXLly6NChA8aMGYOIiAikpqZCpVJh9uzZqFChAszMzFCvXj2EhYWpt83IyMCoUaNQtmxZKBQKfPbZZ1iwYEG2fb89RVKxYkUAQP369SGTyeDk5AQg+6jAunXrUK5cuWyPSQcAd3d3fPPNN+rXv/76Kxo0aACFQoFKlSph1qxZyMrKeu/nNDExQZkyZVC+fHk4OzujZ8+eOHTokPrnSqUSAwcORMWKFWFubo5q1arhhx9+UP985syZ2LJlC3799Vf1aEh0dDQA4OHDh+jVqxeKFSuGEiVKwN3dHffu3XtvHiJ9woJBpGeMjIzw448/4sqVK9iyZQsOHz6MSZMm5bp+v379UKFCBZw9exbnzp3DlClTYGpqCgC4ffs2XF1d0b17d1y8eBFBQUE4fvw4Ro0apVEmc3NzqFQqZGVl4YcffsCSJUuwePFiXLx4ES4uLujSpQv++usvAMCPP/6I0NBQBAcH48aNG9ixYwccHBxy3O+ZM2cAABEREXj69Cl27979zjo9e/bE33//jaioKPWyFy9eICwsDP369QMAHDt2DF5eXhg7diyuXr2Kn376CQEBAZg3b16eP+O9e/cQHh4OuVyuXqZSqVChQgWEhITg6tWr8PPzw7Rp0xAcHAwAmDBhAnr16gVXV1c8ffoUT58+RfPmzZGZmQkXFxdYW1vj2LFjOHHiBKysrODq6oqMjIw8ZyLSaQX2nFYiyjdvb29hbGwsLC0t1V89evTIcd2QkBDxySefqF9v3rxZ2Nraql9bW1uLgICAHLcdOHCgGDJkSLZlx44dE0ZGRiI1NTXHbf67/5s3b4qqVauKRo0aCSGEKFeunJg3b162bRo3bixGjBghhBBi9OjRok2bNkKlUuW4fwBiz549Qggh7t69KwCI8+fPZ1vnv4+Xd3d3F99884369U8//STKlSsnlEqlEEKItm3bivnz52fbx7Zt20TZsmVzzCCEEP7+/sLIyEhYWloKhUKhfhT20qVLc91GCCFGjhwpunfvnmvWt+9drVq1bMcgPT1dmJubi/Dw8Pfun0hfcA4GkY5q3bo11qxZo35taWkJ4J9/zS9YsADXr19HYmIisrKykJaWhpSUFFhYWLyzH19fXwwaNAjbtm1TD/NXrlwZwD+nTy5evIgdO3ao1xdCQKVS4e7du6hRo0aO2V6/fg0rKyuoVCqkpaXhq6++woYNG5CYmIgnT56gRYsW2dZv0aIFLly4AOCf0xvt2rVDtWrV4Orqis6dO6N9+/Yfdaz69euHwYMHY/Xq1TAzM8OOHTvQu3dvGBkZqT/niRMnso1YKJXK9x43AKhWrRpCQ0ORlpaG7du3IzY2FqNHj862zqpVq7Bp0yY8ePAAqampyMjIQL169d6b98KFC7h16xasra2zLU9LS8Pt27fzcQSIdA8LBpGOsrS0xOeff55t2b1799C5c2cMHz4c8+bNQ4kSJXD8+HEMHDgQGRkZOf6inDlzJvr27Yv9+/fj4MGD8Pf3R2BgILp27Yo3b95g6NChGDNmzDvbffrpp7lms7a2RkxMDIyMjFC2bFmYm5sDABITEz/4uRo0aIC7d+/i4MGDiIiIQK9eveDs7Ixdu3Z9cNvcuLm5QQiB/fv3o3Hjxjh27BiWLVum/vmbN28wa9YsdOvW7Z1tFQpFrvuVy+Xq/w8WLlyITp06YdasWZgzZw4AIDAwEBMmTMCSJUvQrFkzWFtbY9GiRfjjjz/em/fNmzdo2LBhtmL3lq5M5CX6WCwYRHrk3LlzUKlUWLJkifpf52/P979P1apVUbVqVYwbNw59+vTB5s2b0bVrVzRo0ABXr159p8h8iJGRUY7b2NjYoFy5cjhx4gQcHR3Vy0+cOIEmTZpkW8/T0xOenp7o0aMHXF1d8eLFC5QoUSLb/t7Od1Aqle/No1Ao0K1bN+zYsQO3bt1CtWrV0KBBA/XPGzRogBs3bmj8Of9r+vTpaNOmDYYPH67+nM2bN8eIESPU6/x3BEIul7+Tv0GDBggKCkKpUqVgY2PzUZmIdBUneRLpkc8//xyZmZlYsWIF7ty5g23btmHt2rW5rp+amopRo0YhOjoa9+/fx4kTJ3D27Fn1qY/Jkyfj5MmTGDVqFGJjY/HXX3/h119/1XiS579NnDgR3333HYKCgnDjxg1MmTIFsbGxGDt2LABg6dKl+Pnnn3H9+nXcvHkTISEhKFOmTI43BytVqhTMzc0RFhaG+Ph4vH79Otf37devH/bv349NmzapJ3e+5efnh61bt2LWrFm4cuUKrl27hsDAQEyfPl2jz9asWTPUqVMH8+fPBwBUqVIFf/75J8LDw3Hz5k3MmDEDZ8+ezbaNg4MDLl68iBs3biAhIQGZmZno168f7Ozs4O7ujmPHjuHu3buIjo7GmDFj8OjRI40yEeksqSeBENG7cpoY+NbSpUtF2bJlhbm5uXBxcRFbt24VAMTLly+FENknYaanp4vevXsLe3t7IZfLRbly5cSoUaOyTeA8c+aMaNeunbCyshKWlpaiTp0670zS/Lf/TvL8L6VSKWbOnCnKly8vTE1NRd26dcXBgwfVP1+3bp2oV6+esLS0FDY2NqJt27YiJiZG/XP8a5KnEEKsX79e2NvbCyMjI+Ho6Jjr8VEqlaJs2bICgLh9+/Y7ucLCwkTz5s2Fubm5sLGxEU2aNBHr1q3L9XP4+/uLunXrvrP8559/FmZmZuLBgwciLS1NDBgwQNja2opixYqJ4cOHiylTpmTb7tmzZ+rjC0BERUUJIYR4+vSp8PLyEnZ2dsLMzExUqlRJDB48WLx+/TrXTET6RCaEENJWHCIiIipqeIqEiIiItI4Fg4iIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLTu/wEAa5DmUrq8YgAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from sklearn.metrics import roc_curve, roc_auc_score\n", + "import matplotlib\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "\n", + "y_scores = model.predict_proba(XTest)\n", + "fpr, tpr, thresholds = roc_curve(yTest, y_scores[:,1])\n", + "\n", + "fig = plt.figure(figsize=(6, 6))\n", + "plt.plot([0, 1], [0, 1], 'k--')\n", + "plt.plot(fpr, tpr)\n", + "plt.xlabel('False Positive Rate')\n", + "plt.ylabel('True Positive Rate')\n", + "plt.title('ROC Curve')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1.0\n" + ] + } + ], + "source": [ + "auc = roc_auc_score(yTest,y_scores[:,1])\n", + "print(auc)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "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.12.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/2-Regression/4-Logistic/notebook.ipynb b/2-Regression/4-Logistic/notebook.ipynb index 7c21276363..a4eba9951d 100644 --- a/2-Regression/4-Logistic/notebook.ipynb +++ b/2-Regression/4-Logistic/notebook.ipynb @@ -224,6 +224,939 @@ "\n", "full_pumpkins.head()\n" ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "columns_to_select = [\"City Name\", \"Package\", \"Variety\",\"Origin\",\"Item Size\", \"Color\"]\n", + "pumpkins = full_pumpkins.loc[:,columns_to_select]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "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", + "
City NamePackageVarietyOriginItem SizeColor
2BALTIMORE24 inch binsHOWDEN TYPEDELAWAREmedORANGE
3BALTIMORE24 inch binsHOWDEN TYPEVIRGINIAmedORANGE
4BALTIMORE24 inch binsHOWDEN TYPEMARYLANDlgeORANGE
5BALTIMORE24 inch binsHOWDEN TYPEMARYLANDlgeORANGE
6BALTIMORE36 inch binsHOWDEN TYPEMARYLANDmedORANGE
\n", + "
" + ], + "text/plain": [ + " City Name Package Variety Origin Item Size Color\n", + "2 BALTIMORE 24 inch bins HOWDEN TYPE DELAWARE med ORANGE\n", + "3 BALTIMORE 24 inch bins HOWDEN TYPE VIRGINIA med ORANGE\n", + "4 BALTIMORE 24 inch bins HOWDEN TYPE MARYLAND lge ORANGE\n", + "5 BALTIMORE 24 inch bins HOWDEN TYPE MARYLAND lge ORANGE\n", + "6 BALTIMORE 36 inch bins HOWDEN TYPE MARYLAND med ORANGE" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pumpkins.dropna(inplace=True)\n", + "pumpkins.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjQAAAHpCAYAAACVw6ZvAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABU3klEQVR4nO3deVRU5f8H8PeFkQFZZXNQ2RQBwy3NNRVGMTCz3JW0JJcyjdwXLJcwBSszTcU0wKxccl9KyoVxS0VTEhXXRM1A+7qwmOz394eH+/M6A7IKV9+vc+7Jee6zfO7IkXfP3JkRRFEUQURERKRgRlVdABEREVF5MdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdDQc0sURaSnp4MfxUREpHwMNPTcysjIgLW1NTIyMqq6FCIiKicGGiIiIlI8BhoiIiJSPAYaIiIiUjwGGiIiIlI8VVUXQFTVrq5qAkszZnsipXIbdqWqS6BqgP+KExERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdCUU3BwMHr27KnXrtPpIAgC7t27J7Xl5+djwYIFaNKkCUxNTVGrVi1069YNhw4dkvqcO3cOgiDgyJEjsvnatm0LU1NTZGVlSW1ZWVkwNTVFVFSUVIsgCBAEATVq1EDt2rXRtWtXREdHo6CgQDafm5ub1PfRIyIiAgCQnJwMQRDg6OiIjIwM2djmzZtj1qxZBp8PPz8/g/MWHo0bN4ZGo8HcuXP1xvbv3x9t27ZFfn4+Zs2aJY1RqVRwc3PDuHHjkJmZKavP0PH4c0dERM8+BpqnRBRFDBw4EGFhYRgzZgySkpKg0+ng7OwMPz8/bNmyBQDg7e0NjUYDnU4njc3IyMCJEyfg4OAg+2V9+PBhZGdno3PnzlJbYGAgUlJSkJycjJ07d0Kr1WLMmDF47bXXkJeXJ6spLCwMKSkpsiMkJETWJyMjA1988UWJr3PTpk3SXPHx8QCA3bt3S2379+/H8uXL8cknnyAxMVEat379euzYsQPfffcdjI2NAQA+Pj7StcybNw/Lly/HhAkTZOs9Onfh0bJlyxLXS0REzwZVVRfwvPjpp5+wYcMGbNu2DT169JDaly9fjtu3b2P48OHo2rUrzM3NodVqodPpMHXqVADAwYMH4enpiU6dOkGn08HPzw/Aw10gV1dXuLu7S/Op1WpoNBoAQN26ddGiRQu0bdsWXbp0wcqVKzF8+HCpr6WlpdS3KCEhIfjyyy8xevRoODo6PvE6bW1tpT8X7ibZ2dnJ1nn99dfx5ptvYsiQITh69Cju3buH0aNHIyIiAl5eXlI/lUoljRswYAD27NmDbdu24ZtvvpH6PD43ERE9n7hD85SsXr0anp6esjBTaMKECbh9+zZ27doFANBqtTh48KC0oxIXFwc/Pz/4+voiLi5OGhcXFwetVvvEtTt37oxmzZph06ZNpa47KCgIHh4eCAsLK/XY4ixcuBC3b9/G7NmzMWrUKDRu3Fhvd+hxZmZmyMnJKfOa2dnZSE9Plx1ERPRs4A5NBdixYwcsLCxkbfn5+bLHFy5cQKNGjQyOL2y/cOECgIeB5v79+zh27BjatWsHnU6HSZMmoUOHDhgyZAiysrIgiiLi4+NlOy7F8fb2xqlTp2RtU6ZMwccffyxr27lzJzp27Cg9LryvpkePHhg3bhwaNGhQovWexMrKCjExMXjllVdgbm6OU6dOQRCEIvv/8ccfWL16tezlNQBo3749jIzkubzwPpvHhYeH45NPPtFrd307EVZWVmW4CiIiqi4YaCqAVqtFZGSkrO3o0aMYPHiwrE0UxRLN5+HhgXr16kGn08HHxwcnT56Er68vHB0d4eLigsOHD0MURWRnZ5doh6Zw7ccDw6RJkxAcHCxrq1u3rt7YgIAAdOjQAdOnT8fq1atLtF5JdO7cGW3btkXz5s3h6uqqdz4xMREWFhbIz89HTk4OunfvjsWLF8v6rFu3rsig+LjQ0FCMHz9eepyeng5nZ+fyXQQREVULDDQVwNzcHB4eHrK2v//+W/bY09MTSUlJBscXtnt6ekptfn5+iIuLQ9OmTdGwYUPp/pXCl51EUYSHh0eJfyEnJSXJ7rUBAHt7e726ixIREYF27dph0qRJJepfUiqVCiqV4R9DLy8vbNu2DSqVCnXq1IGJiYleH2dn5xJfg1qthlqtLle9RERUPfEemqdk4MCBuHjxIrZv3653bv78+bCzs0PXrl2lNq1Wi99//x27du2SbgIGIN0YrNPpSrw7s3fvXiQmJqJPnz5lrr9169bo3bu3dKPy02BiYgIPDw+4ubkZDDNERESFuEPzlAwcOBDr16/HkCFD8Pnnn6NLly5IT0/HkiVLsG3bNqxfvx7m5uZS/8L7aKKjo7FixQqp3dfXV7pvZtSoUXrrZGdnIzU1Ffn5+bh58yZiY2MRHh6O1157DW+//basb0ZGBlJTU2VtNWvWLPJ+kjlz5sDHx6fIHZWqcPv2bb1rsLGxgampaRVVREREVYE7NE+JIAj46aefMG3aNCxYsABeXl7o2LEjrl69Cp1Op/fhfO7u7nB1dUVGRgZ8fX2ldhcXF9SpUwc5OTmynZtCsbGxcHJygpubGwIDAxEXF4dFixZh69at0ue7FJoxYwacnJxkx+TJk4u8Bk9PTwwdOlT24X5Vzd/fX+8aCj/Th4iInh+CWNI7VYmeMenp6bC2tkZaWhrf5UREpHDcoSEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVTVXUBRFXt6qomsDRjtq8obsOuVHUJRPQc4r/iREREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0z5ng4GAIggBBEGBiYgIPDw+EhYUhLy8PAKDT6SAIAu7duyd7bOhITU3Vm3/WrFlF9i88/P39ERAQoDd26dKlsLGxwd9//623bu3atdGnTx/89ddfUn83NzeD80dERFTOk0dERNWWqqoLoKcvMDAQMTExyM7Oxi+//ILRo0ejRo0aCA0NLXLM+fPnYWVlJWtzdHTU6zdx4kSMHDlSetyqVSu8++67GDFihNSWm5uLJk2a4JtvvsF7770HALhy5QomT56MyMhI1KtXD5cuXZLWtbS0xMWLF/Huu++iR48eOHXqFIyNjQEAYWFhsrkBwNLSspTPCBERKR0DzXNIrVZDo9EAAN5//31s3rwZ27ZtKzbQODo6wsbG5olzW1hYwMLCQnpsbGwMS0tLab1CCxcuxAcffIBXXnkFbm5uGDZsGF555RW89dZbBtd1cnLCjBkzMGjQIFy6dAleXl4AYHDuomRnZyM7O1t6nJ6eXqJxRERU/THQEMzMzHD79u2nuuaQIUOwefNmDB06FL1798bp06dx5syZYseYmZkBAHJycsq0Znh4OD755BO9dssOi2BlaQ7bBv5lmpeIiKoe76F5jomiiN27d+PXX39F586di+1br149affFwsICPj4+5V5/+fLlOH36NMaOHYvly5fDwcGhyL4pKSn44osvULduXWl3BgCmTJkiq8vCwgIHDhwwOEdoaCjS0tKk4/r16+W+BiIiqh64Q/Mc2rFjBywsLJCbm4uCggK8+eabmDVrVrFjDhw4ILs3pUaNGuWuw9HREe+99x62bNmCnj17GuxTr149iKKI//77D82aNcPGjRthYmIinZ80aRKCg4NlY+rWrWtwLrVaDbVaXe66iYio+mGgeQ5ptVpERkbCxMQEderUgUr15B8Dd3f3Et1DU1oqlarY9Q8cOAArKys4OjoavNnX3t4eHh4eFV4XEREpCwPNc8jc3FwxIaCyghQRET1bGGioRG7duoWsrCxZm52dXYW89FQeGRkZep+HU7NmTb23mBMR0bONNwVTiXh5ecHJyUl2/PHHH1VdFmbMmKFX1+TJk6u6LCIiesoEURTFqi6CqCqkp6fD2toaV05u4du2iYgUjjs0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4/LZteu7Z1tfy27mJiBSOOzRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4/KRgeu5dXdUElmYlz/Zuw65UYjVERFQW3KEhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCml4OBgCIIgHXZ2dggMDMSpU6dk/QRBwJYtW2RtcXFxeO211+Dg4ABTU1M0aNAAAwYMwP79+4td083NDYIgYO3atXrnfHx8IAgCVq5cqXcuPDwcxsbG+Pzzzw3Om5qaipCQENSvXx9qtRrOzs7o0aMH9uzZI1v7q6++kh6LooiJEyfCysoKOp2uyFqLOt58803UrFkTq1evlo0rKChA+/bt0bdvXwDy59nExAQeHh4ICwtDXl4eAECn0xW5RmpqarHPJxERPXsYaMogMDAQKSkpSElJwZ49e6BSqfDaa68VO2bp0qXo0qUL7OzssG7dOpw/fx6bN29G+/btMW7cuCeu6ezsjJiYGFnbkSNHkJqaCnNzc4NjoqOjMXnyZERHR+udS05ORsuWLbF37158/vnnSExMRGxsLLRaLUaPHm1wvvz8fAwbNgyrVq1CXFwc/Pz89PocO3ZMem42btwIADh//rzUFhkZiYiICISEhCAlJUUaN3/+fPz1119YtmyZ1Fb4PF+8eBETJkzArFmz9MLZo3MXHo6OjoafRCIiemapqroAJVKr1dBoNAAAjUaDqVOnomPHjvj333/h4OCg1//atWsYO3Ysxo4diy+//FJ2rmnTpvjwww+fuOagQYOwYMECXL9+Hc7OzgAeBpZBgwZh1apVev337duHBw8eICwsDKtWrcLvv/+O9u3bS+dHjRoFQRAQHx8vC0Q+Pj4YOnSo3nzZ2dkICgrC8ePHceDAAXh5eRms89Hrt7W1BQA4OjrCxsZGag8JCcGWLVswYsQI7NixA+fOncOMGTOwbt062NvbS/0efZ7ff/99bN68Gdu2bUNoaKjU5/G5iYjo+cQdmnLKzMzEDz/8AA8PD9jZ2Rnss3HjRuTm5mLy5MkGzwuC8MR1ateujYCAAHz33XcAgP/++w/r1q0zGD4AICoqCkFBQahRowaCgoIQFRUlnbtz5w5iY2MxevRog7s7jweEzMxMdO/eHWfPnsWhQ4eKDDMlJQgCYmJicODAAaxYsQLBwcEYOHAgXn/99WLHmZmZIScnp8zrZmdnIz09XXYQEdGzgTs0ZbBjxw5YWFgAAO7fvw8nJyfs2LEDRkaG8+GFCxdgZWUl7TYAD0POkCFDpMeHDx9GkyZNil136NChmDBhAj766CNs2LABDRo0QPPmzfX6paenY8OGDTh8+DAAYPDgwejYsSMWLlwICwsLXLp0CaIowtvbu0TXO3v2bFhaWiIpKcngDlRZuLq64quvvsLw4cNRr149/Pbbb0X2FUURe/bswa+//oqQkBDZuXr16unNe+bMGYPzhIeH45NPPtFrt+ywCFaW+sHOtoF/SS6FiIiqAe7QlIFWq0VCQgISEhIQHx+PgIAAdOvWDVevXi1yzOO7MAEBAUhISMDPP/+M+/fvIz8//4nrdu/eHZmZmdi/fz+io6OL3J1Zs2YNGjRogGbNmgEAmjdvDldXV6xbtw7Aw4BQGq+88gru37+PuXPnlmrck7zzzjtwcnJCSEgIrKys9M4XBkdTU1N069YNAwYMwKxZs2R9Dhw4IP1dJCQk4JdffilyvdDQUKSlpUnH9evXK/R6iIio6nCHpgzMzc3h4eEhPf72229hbW2NFStW4NNPP9Xr37BhQ6SlpSE1NVXapbGwsICHhwdUqpL/FahUKrz11luYOXMmjh49is2bNxvsFxUVhTNnzsjmLigoQHR0NIYNG4aGDRtCEAScO3euROt26dIFISEheOONN1BQUICFCxeWuOYnUalURT4HWq0WkZGRMDExQZ06dQz2c3d3L/E9NGq1Gmq1ujzlEhFRNcUdmgogCAKMjIzw4MEDg+f79u2LGjVqYN68eeVea+jQodi3bx/eeOMN1KpVS+98YmIijh8/Dp1OJ9u50Ol0OHz4MM6dOwdbW1sEBARgyZIluH//vt4c9+7d02t75ZVXsH37dqxYsaJENzFXhMLg6OLiUqrgR0REzx/+liiD7Oxs6bNO7t69i8WLFyMzMxM9evQw2N/FxQXz58/HmDFjcOfOHQQHB8Pd3R137tzBDz/8AAAwNjYu0dqNGjXC//73P9SsWdPg+aioKLRu3RqdOnXSO9eqVStERUXh888/x5IlS/Dyyy+jdevWCAsLQ9OmTZGXl4ddu3YhMjISSUlJeuP9/f2xY8cO9OjRAwUFBVi8eHGJaq5Mt27dQlZWlqzNzs4ONWrUqKKKiIioKnCHpgxiY2Ph5OQEJycntGnTBseOHcP69esNfi5LoZCQEPz222/4999/0bdvXzRs2BCvvvoqrly5gtjY2CfeEPwoOzs7mJmZ6bXn5OTghx9+QJ8+fQyO69OnD1atWoXc3FzUr18fJ06cgFarxYQJE9C4cWN07doVe/bsQWRkZJFrd+7cGT///DNWrlyJ0aNHl/p+nIrm5eUl/V0UHn/88UeV1kRERE+fIFb1bySiKpKeng5ra2tcObmF73IiIlI47tAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeLx27bpuWdbXwsrK6uqLoOIiMqBOzRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4/KRgeu5dXdUElmaVl+3dhl2ptLmJiOgh7tAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0ChMcHAwBEHAyJEj9c6NHj0agiAgODhY6tuzZ0+9sREREbJxW7ZsgSAI0mOdTgdBEHDv3j29Nby9vaFWq5GamirrW9yh0+kwa9YsNG/eXG++5ORkCIKAhIQEg/M5ODjg1VdfRWJiosHn4fEjMDCwBM8iERE9axhoFMjZ2Rlr167FgwcPpLasrCysXr0aLi4uxY41NTXFvHnzcPfu3VKve/DgQTx48AB9+/bFd999BwBo3749UlJSpKN///4IDAyUtbVv377Ua50/fx4pKSn49ddfkZ2dje7duyMnJ0fW5/F1UlJSsGbNmlKvRUREysdAo0AtWrSAs7MzNm3aJLVt2rQJLi4uePHFF4sd6+/vD41Gg/Dw8FKvGxUVhTfffBNvvfUWoqOjAQAmJibQaDTSYWZmBrVaLWszMTEp9VqOjo7QaDRo0aIFxo4di+vXr+PcuXOyPo+vo9FoUKtWrVKvRUREysdAo1BDhw5FTEyM9Dg6OhrvvPPOE8cZGxtj7ty5+Prrr/H333+XeL2MjAysX78egwcPRteuXZGWloYDBw6UqfbSSEtLw9q1awGgTMHoUdnZ2UhPT5cdRET0bFBVdQFUNoMHD0ZoaCiuXr0KADh06BDWrl0LnU73xLG9evVC8+bNMXPmTERFRZVovbVr16Jhw4bw8fEBAAwcOBBRUVHo2LFjma+hOPXq1QMA3L9/HwDw+uuvw9vbW9Znx44dsLCwkLVNmzYN06ZNMzhneHg4PvnkE712yw6LYGVpXhFlG3Tn8u4n9rFt4F9p6xMRPQ8YaBTKwcEB3bt3x8qVKyGKIrp37w57e/sSj583bx46d+6MiRMnlqh/dHQ0Bg8eLD0ePHgwfH198fXXX8PS0rLU9T/JgQMHULNmTRw5cgRz587FsmXL9PpotVpERkbK2mxtbYucMzQ0FOPHj5cep6enw9nZueKKJiKiKsNAo2BDhw7FBx98AABYsmRJqcZ26tQJAQEBCA0Nld4VVZSzZ8/iyJEjiI+Px5QpU6T2/Px8rF27FiNGjHjielZWVkhLS9NrL3wnlbW1tazd3d0dNjY28PLywq1btzBgwADs379f1sfc3BweHh5PXLuQWq2GWq0ucX8iIlIO3kOjYIGBgcjJyUFubi4CAgJKPT4iIgLbt2/H4cOHi+0XFRWFTp064c8//0RCQoJ0jB8/vsQvWXl5eeHvv//GzZs3Ze0nTpyAqalpse/OGj16NE6fPo3NmzeXaC0iInr+cIdGwYyNjZGUlCT9ubSaNGmCQYMGYdGiRUX2yc3Nxffff4+wsDA0btxYdm748OH48ssvcebMGenemqIEBATAy8sLQUFB+PTTT6HRaHDixAl8/PHHGDNmTLH116xZEyNGjMDMmTPRs2dP6TNzsrOzpc/DKaRSqUr10hsRET0buEOjcFZWVrCysirz+LCwMBQUFBR5ftu2bbh9+zZ69eqld65Ro0Zo1KhRiXZpVCoVfvvtN7i4uCAoKAiNGzfGzJkzMWbMGMyePfuJ4z/44AMkJSVh/fr1UltsbCycnJxkR4cOHZ44FxERPXsEURTFqi6CqCqkp6fD2toaV05uqdR3OZUE3+VERFQ+3KEhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFU1V1AURVzba+tlzfWE5ERFWPOzRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4pQ40cXFxlVEHERERUZmVOtAEBgaiQYMG+PTTT3H9+vXKqImIiIioVEodaG7cuIEPPvgAGzZsQP369REQEICffvoJOTk5lVEfUaW7uqoJkqPcq7oMIiIqh1IHGnt7e4wbNw4JCQk4evQoPD09MWrUKNSpUwcffvgh/vzzz8qok4iIiKhI5bopuEWLFggNDcUHH3yAzMxMREdHo2XLlujYsSPOnDlTUTUSERERFatMgSY3NxcbNmzAq6++CldXV/z6669YvHgxbt68iUuXLsHV1RX9+vWr6FqJiIiIDCr1l1OGhIRgzZo1EEURb731Fj777DM0btxYOm9ubo4vvvgCderUqdBCiYiIiIpS6kBz9uxZfP311+jduzfUarXBPvb29nx7NxERET01pX7JaebMmejXr59emMnLy8P+/fsBACqVCr6+vhVTIREREdETlDrQaLVa3LlzR689LS0NWq22QooiIiIiKo1SBxpRFCEIgl777du3YW5uXiFFEREREZVGie+h6d27NwBAEAQEBwfLXnLKz8/HqVOn0L59+4qvkIiIiOgJShxorK2tATzcobG0tISZmZl0zsTEBG3btsWIESMqvkIiIiKiJyhxoImJiQEAuLm5YeLEiXx5iYiIiKqNMr3LSa1WY/fu3fjmm2+QkZEBAPjnn3+QmZlZ4QUSERERPUmpP4fm6tWrCAwMxLVr15CdnY2uXbvC0tIS8+bNQ3Z2NpYtW1YZdRIREREVqdQ7NGPGjMFLL72Eu3fvyu6j6dWrF/bs2VOhxREREVHpzZo1C82bN6/qMp6qUgeaAwcO4OOPP4aJiYms3c3NDTdu3KiwwoiIiJ5XqampCAkJQf369aFWq+Hs7IwePXpw46AYpQ40BQUFyM/P12v/+++/YWlpWSFFPY+e9MPr5uaGr776Surv5uYGQRBw5MgR2Txjx46Fn5+f9HjWrFkQBAGCIEClUsHe3h6dOnXCV199hezsbNlYPz8/qe+jx8iRI6U+j7ZbWVmhVatW2Lp1q2yelStXGpzH1NRU6hMcHIyePXsW+Xw8fr1FWbNmDYyNjTF69Ogn9iUiUoLk5GS0bNkSe/fuxeeff47ExETExsZCq9U+1X/rcnNzn9paFaHUgeaVV16R/aIRBAGZmZmYOXMmXn311Yqs7blR1h9eU1NTTJky5Ynz+/j4ICUlBdeuXUNcXBz69euH8PBwtG/fXrqpu9CIESOQkpIiOz777DNZn5iYGKSkpOD48eN4+eWX0bdvXyQmJsr6WFlZ6c1z9erVUjwrJRMVFYXJkydjzZo1yMrKqvD5iYietlGjRkEQBMTHx6NPnz7w9PSEj48Pxo8fL/1P7LVr1/DGG2/AwsICVlZW6N+/P27evFnknAUFBQgLC0O9evWgVqvRvHlzxMbGSueTk5MhCALWrVsHX19fmJqa4scff6z0a61IpQ408+fPx6FDh/DCCy8gKysLb775pvRy07x58yqjxmdeSX54DXn33Xdx5MgR/PLLL8XOr1KpoNFoUKdOHTRp0gQhISHYt28fTp8+rfd3VrNmTWg0GtlhZWUl62NjYwONRgNPT0/Mnj0beXl5el9GKgiC3jy1a9cu5TNTvCtXruD333/H1KlT4enpiU2bNhXbPzs7G+np6bKDiKg6uXPnDmJjYzF69GiDH49iY2ODgoICvPHGG7hz5w727duHXbt24a+//sKAAQOKnHfhwoWYP38+vvjiC5w6dQoBAQF4/fXXcfHiRVm/qVOnYsyYMUhKSkJAQECFX19lKnWgqVevHv78809MmzYN48aNw4svvoiIiAicPHkSjo6OlVHjM60kP7xFcXd3x8iRIxEaGoqCgoJSrevt7Y1u3bo9MQQUJy8vD1FRUQCgd0/V0xATE4Pu3bvD2toagwcPlmopSnh4OKytraXD2dkZAGDZYRGs/FY8jZKJiIp16dIliKIIb2/vIvvs2bMHiYmJWL16NVq2bIk2bdpg1apV2LdvH44dO2ZwzBdffIEpU6Zg4MCB8PLywrx589C8eXO9l/bHjh2L3r17w93dHU5OThV5aZWu1IEGePh//IMHD8Znn32GpUuXYvjw4bJ3PFHJleSHtzgff/wxrly5UqatQW9vbyQnJ8vali5dCgsLC9nx+NxBQUGwsLCAWq3GuHHj4Obmhv79+8v6pKWl6c3TrVu3UtdYlIKCAqxcuRKDBw8GAAwcOBAHDx7ElStXihwTGhqKtLQ06bh+/XqF1UNEVBFEUXxin6SkJDg7O0v/UwYAL7zwAmxsbJCUlKTXPz09Hf/88w9efvllWfvLL7+s1/+ll14qY+VVr0SfQ7Nt2zZ069YNNWrUwLZt24rt+/rrr1dIYc+LkvzwFsfBwQETJ07EjBkzit1uLGrtx79odNCgQfjoo49kbY+/VLRgwQL4+/vjr7/+wrhx47Bo0SLY2trK+lhaWuLEiROytooMvbt27cL9+/el+7bs7e3RtWtXREdHY/bs2QbHqNVq2XeQERFVNw0bNoQgCDh37lyVrK/kbwEoUaDp2bMnUlNT4ejoWOw7UwRBMPgOKCpaRfzwjh8/HkuXLsXSpUtLNS4pKQnu7u6yNmtra3h4eBQ7TqPRwMPDAx4eHoiJicGrr76Ks2fPyl5yNDIyeuI85REVFYU7d+7IQlJBQQFOnTqFTz75BEZGZdp8JCKqUra2tggICMCSJUvw4Ycf6gWMe/fuoVGjRrh+/TquX78u7dKcPXsW9+7dwwsvvKA3p5WVFerUqYNDhw7B19dXaj906BBat25duRf0FJXoX/2CggLpl1VBQUGRB8NM6T36w3v//n298/fu3XviHBYWFpg+fTrmzJmj966lopw7dw6xsbHo06dPaUuWad26NVq2bIk5c+aUa57SuH37NrZu3Yq1a9ciISFBOk6ePIm7d+/it99+e2q1EBFVtCVLliA/Px+tW7fGxo0bcfHiRSQlJWHRokVo164d/P390aRJEwwaNAgnTpxAfHw83n77bfj6+hb5ktGkSZMwb948rFu3DufPn8fUqVORkJCAMWPGPOWrqzyl+uqD3NxcBAYGYtmyZWjYsGFl1fTcWbJkCV5++WW0bt0aYWFhaNq0KfLy8rBr1y5ERkYafE30ce+++y4WLFiA1atXo02bNrJzeXl5SE1NRUFBAW7fvg2dTodPP/0UzZs3x6RJk2R9//vvP6Smpsra1Go1atWqVeTaY8eORa9evTB58mTUrVsXwMOXsx6fBwAcHR2l3ZO0tDQkJCTIztvZ2Un/x3Hjxg29866urvj+++9hZ2eH/v37671k9uqrryIqKgqBgYFF1ktEVJ3Vr18fJ06cwJw5czBhwgSkpKTAwcEBLVu2RGRkJARBwNatWxESEoJOnTrByMgIgYGB+Prrr4uc88MPP0RaWhomTJiAW7du4YUXXsC2bduerd/lYinZ29uLFy5cKO0weoJ//vlHHD16tOjq6iqamJiIdevWFV9//XUxLi5OFEVRdHV1FRcsWCD1f/yxKIri6tWrRQCir6+v1DZz5kwRgAhANDY2Fm1tbcUOHTqICxYsELOysmTjfX19pb6PHgEBAVIfAOLmzZtl4woKCkRvb2/x/fffF0VRFGNiYgzOA0BMSUkRRVEUhwwZYvD8sGHDpOszdP77778XmzRpIo4aNcrg87hu3TrRxMRE/Pfff5/4nKelpYkAxCsnt4i3L+16Yn8iIqq+BFEs3V2p48aNg1qtRkRERPmSFFEVS09Ph7W1Na6c3AIrS3PYNvCv6pKIiKiMSv1t23l5eYiOjsbu3bvRsmVLvRuWvvzyyworjoiIiKgkSh1oTp8+jRYtWgAALly4IDv3+P0MRERERE9DqQPN4x9xT0RERFTV+GEdREREpHil3qEBgOPHj+Onn37CtWvXkJOTIztXnu8GIiIiIiqLUu/QrF27Fu3bt0dSUhI2b96M3NxcnDlzBnv37oW1tXVl1EhERERUrFIHmrlz52LBggXYvn07TExMsHDhQpw7dw79+/eHi4tLZdRIREREVKxSB5rLly+je/fuAAATExPcv38fgiBg3LhxWL58eYUXSERERPQkpb6HplatWtL3BdWtWxenT59GkyZNcO/ePfz3338VXiAREdHTlBzl/uROFcRt2JWnttazrsQ7NKdPnwYAdOrUCbt27QIA9OvXD2PGjMGIESMQFBSELl26VE6VREREJLl+/TqGDh2KOnXqwMTEBK6urhgzZgxu374t9fHz84MgCBAEAaampvD09ER4eDgMfUHA4cOHYWxsLL0C86jk5GQIggBHR0e9L0Bu3rw5Zs2aJWu7dOkShg4dChcXF6jVatStWxddunTBjz/+iLy8PKlfYW2PH2vXri3Tc1LiQNO0aVO0adMGTZo0Qb9+/QAAH330EcaPH4+bN2+iT58+iIqKKlMRREREVDJ//fUXXnrpJVy8eBFr1qzBpUuXsGzZMuzZswft2rXDnTt3pL4jRoxASkoKzp8/j9DQUMyYMQPLli3TmzMqKgohISHYv38//vnnH4PrZmRk4Isvvii2tvj4eLRo0QJJSUlYsmQJTp8+DZ1Oh+HDhyMyMhJnzpyR9Y+JiUFKSors6NmzZ+mfFAAl/i6nAwcOICYmBhs2bEBBQQH69OmD4cOHo2PHjmVamKiqFX6XU1paGqysrKq6HCKqJqr7S07dunXD6dOnceHCBZiZmUntqampaNCgAd5++21ERkbCz88PzZs3x1dffSX1admyJVxdXWUfsZKZmQknJyccP34cM2fORNOmTTFt2jTpfHJyMtzd3TFp0iRERkbi8uXLcHR0BPBwh6Znz56YNWsWRFGEj48Patasifj4eBgZ6e+ZiKIofauAIAjYvHlzmQPM40q8Q9OxY0dER0cjJSUFX3/9NZKTk+Hr6wtPT0/MmzcPqampFVIQERERGXbnzh38+uuvGDVqlCzMAIBGo8GgQYOwbt06vZeVRFHEgQMHcO7cOZiYmMjO/fTTT/D29oaXlxcGDx6M6Ohogy9LBQUFwcPDA2FhYQZrS0hIQFJSEiZOnGgwzACV+xVJpX6Xk7m5Od555x3s27cPFy5cQL9+/bBkyRK4uLjg9ddfr4waiYiICMDFixchiiIaNWpk8HyjRo1w9+5d/PvvvwCApUuXwsLCAmq1Gp06dUJBQQE+/PBD2ZioqCgMHjwYABAYGIi0tDTs27dPb25BEBAREYHly5fj8uXLeucLv9/Ry8tLart16xYsLCykY+nSpbIxQUFBsvMWFha4du1aKZ6R/1eurz7w8PDAtGnT8PHHH8PS0hI///xzeaYjIiKiEijh3SIYNGgQEhIScOjQIXTr1g0fffQR2rdvL50/f/484uPjERQUBABQqVQYMGBAkffEBgQEoEOHDpg+fXqJ1rezs0NCQgISEhJgY2Oj9+0CCxYskM4XHnXq1CnR3I8r01cfAMD+/fsRHR2NjRs3wsjICP3798ewYcPKOh0RERE9gYeHBwRBQFJSEnr16qV3PikpCbVq1YKDgwMAwNraGh4eHgAevrTk4eGBtm3bwt/fH8DD3Zm8vDxZiBBFEWq1GosXLzb4DQARERFo164dJk2aJGtv2LAhgIch6cUXXwQAGBsbS+urVPqRQ6PRSOfLq1Q7NP/88w/mzp0LT09P+Pn54dKlS1i0aBH++ecfrFixAm3btq2QooiIiEifnZ0dunbtiqVLl+LBgweyc6mpqfjxxx8xYMAAg/eqWFhYYMyYMZg4cSJEUUReXh5WrVqF+fPny3ZI/vzzT9SpUwdr1qwxWEPr1q3Ru3dvTJ06Vdb+4osvwtvbG1988QUKCgoq7qJLqMQ7NN26dcPu3bthb2+Pt99+G0OHDpW9TkZERESVb/HixWjfvj0CAgLw6aefwt3dHWfOnMGkSZNQt25dzJkzp8ix7733HmbPno2NGzdCpVLh7t27GDZsmN5OTOFHsYwcOdLgPHPmzIGPj49s10UQBMTExKBr1654+eWXERoaikaNGiE3Nxf79+/Hv//+C2NjY9k89+7d03tTkaWlJczNzUv7tABiCfXo0UPcsmWLmJeXV9IhRNVaWlqaCEBMS0ur6lKIiEolOTlZHDJkiFi7dm2xRo0aorOzsxgSEiL+73//k/r4+vqKY8aM0Rv73nvviT4+PuJrr70mvvrqqwbnP3r0qAhA/PPPP8UrV66IAMSTJ0/K+rz77rsiAHHmzJmy9vPnz4tDhgwR69WrJ6pUKtHa2lrs1KmT+M0334i5ublSPwAGj/Dw8DI9JyX+HBqiZw0/h4aI6NlRrnc5EREREVUHZX6XE9Gz4uqqJrA008/2/NI4IiLl4A4NERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4/h4aIiOgRdy7vfmpr2Tbwf2prPeu4Q0NERKQQy5Ytg6WlJfLy8qS2zMxM1KhRA35+frK+Op0OgiDg8uXLcHNzw1dffaU336xZs9C8eXODj93c3CAIQpFHcHAwABR5fu3atRV89cXjDg0REZFCaLVaZGZm4vjx42jbti0A4MCBA9BoNDh69CiysrJgamoKAIiLi4OLiwsaNGhQprWOHTuG/Px8AMDvv/+OPn364Pz589J335mZmUl9Y2JiEBgYKBtvY2NTpnXLioGGiIhIIby8vODk5ASdTicFGp1OhzfeeAN79+7FkSNHpJ0anU4HrVZb5rUcHBykP9va2gIAHB0dDQYVGxsbaDSaMq9VEfiSExERkYJotVrExcVJj+Pi4uDn5wdfX1+p/cGDBzh69Gi5Ao3SMNAQEREpiFarxaFDh5CXl4eMjAycPHkSvr6+6NSpE3Q6HQDg8OHDyM7OlgWaKVOmwMLCQnbMnTu3QmoKCgrSm/vatWsVMndJ8SUnIiIiBfHz88P9+/dx7Ngx3L17F56ennBwcICvry/eeecdZGVlQafToX79+nBxcZHGTZo0SbqRt9CiRYuwf//+cte0YMEC+PvL37FVp06dcs9bGtyheQYEBwcbvMP80qVLAIDw8HAYGxvj888/1xu7cuVK2euhK1eulMYbGRnByckJAwYMwLVr1yCKIvz9/REQEKA3z9KlS2FjYwN/f/9i74p3c3OTxpSmrpJe8+M3pRERPWs8PDxQr149xMXFIS4uDr6+vgAeBghnZ2f8/vvviIuLQ+fOnWXj7O3t4eHhITsK740pL41Goze3SvV090wYaJ4RgYGBSElJkR3u7u4AgOjoaEyePBnR0dElmsvKygopKSm4ceMGNm7ciPPnz6Nfv34QBAExMTE4evQovvnmG6n/lStXMHnyZHz99dfYuHGjrAbg4d3vhY+PHTsmjSttXSW55jVr1pRpLiIiJdFqtdDpdNDpdLK3a3fq1Ak7d+5EfHz8c3X/DMBA88xQq9XQaDSyw9jYGPv27cODBw8QFhaG9PR0/P7770+cSxAEaDQaODk5oX379hg2bBji4+ORnp4OZ2dnLFy4EBMnTsSVK1cgiiKGDRuGV155BW+99Rasra1lNQD/f/e7RqOR7povS10lueZatWqVeh4iIqXRarU4ePAgEhISpB0aAPD19cU333yDnJycpxpo7t27h9TUVNlx//79p7Y+wHtonnlRUVEICgpCjRo1EBQUhKioKLRv377E42/duoXNmzfD2NgYxsbGAIAhQ4Zg8+bNGDp0KHr37o3Tp0/jzJkzT7WussjOzkZ2drb0OD09vVLXIyJlUsKn92q1Wjx48ADe3t6oXbu21O7r64uMjAzp7d1PyzvvvKPXFh4ejqlTpz61GiCS4g0ZMkQ0NjYWzc3NpaNv375iWlqaaGZmJiYkJIiiKIonT54ULSwsxIyMDGlsTEyMaG1tLXsMQDQ3Nxdr1qwpAhABiB9++KFszZs3b4r29vaikZGRuHnz5iJrA6B3vix1leSazc3NxTlz5hQ5ZubMmdL1PHpcOblFvH1pV5HjiIio+uMOzTNCq9UiMjJSemxubo41a9agQYMGaNasGQCgefPmcHV1xbp16zBs2LAi57K0tMSJEyeQm5uLnTt34scff8ScOXNkfRwdHfHee+9hy5Yt6NmzZ6lqLWtdj3v8mgEUe4NbaGgoxo8fLz0ufAmNiIiUj4HmGWFubg4PDw9ZW1RUFM6cOSO707ygoADR0dHFBgcjIyNprkaNGuHy5ct4//338f3338v6qVSqMt3FXta6HmfomoujVquhVqtLVSsRESkDA80zKjExEcePH4dOp5PtWty5cwd+fn44d+4cvL29SzTX1KlT0aBBA4wbNw4tWrSoNnUREREVYqB5RkVFRaF169bo1KmT3rlWrVohKirK4Oe/GOLs7IxevXphxowZ2LFjx1OrKz8/HwkJCbI+arUajRo1AvDwJt/U1FTZeZVKBXt7+3LVSEREysO3bT+DcnJy8MMPP6BPnz4Gz/fp0werVq1Cbm5uieccN24cfv75Z8THxz+1ujIzM/Hiiy/Kjh49ekj9Y2Nj4eTkJDs6dOhQ5vqIiEi5BFEUxaougqgqpKenw9raGldOboGVpbki3qpJRESGcYeGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUT1XVBRBVNdv6WlhZWVV1GUREVA7coSEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgISIiIsVjoCEiIiLFY6AhIiIixWOgoefe1VVNkBzlXtVlEBFROTDQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQEBERkeIx0BAREZHiMdAQERGR4jHQKFRwcDAEQZAOOzs7BAYG4tSpU7J+giBgy5YteuOTk5MhCAISEhL0zvn5+WHs2LHSYzc3N9lahUdERESR8xZ3zJ49G+bm5rh06ZJs7D///INatWph8eLFeuuam5ujRYsWWL9+vdR/1qxZBuf39vYuxTNJRETPAgYaBQsMDERKSgpSUlKwZ88eqFQqvPbaa5WyVlhYmLRW4RESEqLXz9nZWdZnwoQJ8PHxkbVNnDgRAQEBCA4ORkFBgTR2xIgRaNmyJUaPHq237smTJ9GqVSsMGDAAv//+u3T+8blTUlJw8ODBSnkOiIio+lJVdQFUdmq1GhqNBgCg0WgwdepUdOzYEf/++y8cHBwqdC1LS0tpreIYGxvL+llYWEClUumN/eabb+Dj44Mvv/wSEydOxMqVK3Ho0CEkJiZCEAS9dTUaDZYsWYIffvgB27dvR/v27QHA4NxFyc7ORnZ2tvQ4PT29ROOIiKj6Y6B5RmRmZuKHH36Ah4cH7OzsqrqcJ3JwcMDy5csRFBSEZs2aYdy4cVi4cCGcnZ2LHKNSqVCjRg3k5OSUac3w8HB88skneu2ubyfCysqqTHMSEVH1wJecFGzHjh2wsLCAhYUFLC0tsW3bNqxbtw5GRhX/1zplyhRprcLjwIED5ZqzZ8+e6N+/PwIDA+Hr64shQ4YU2TcnJwfh4eFIS0tD586dpfbExES9ukaOHGlwjtDQUKSlpUnH9evXy1U/ERFVH9yhUTCtVovIyEgAwN27d7F06VJ069YN8fHxcHV1rdC1Jk2ahODgYFlb3bp1yz3v9OnTsWrVKnz88ccGz0+ZMgUff/wxsrKyYGFhgYiICHTv3l067+XlhW3btsnGFLXbolaroVary10zERFVPww0CmZubg4PDw/p8bfffgtra2usWLECn376abFjC3/pp6Wl6Z27d+8erK2tZW329vaytSqKSqWS/fdxhUHKwsICtWvXlt1fAwAmJiaVUhcRESkLX3J6hgiCACMjIzx48OCJfW1tbWFvb48//vhD1p6eno5Lly7B09OzssoslcIgpdFo9MIMERFRIe7QKFh2djZSU1MBPHzJafHixcjMzESPHj1k/a5cuaL3eTMNGzbE+PHjMXfuXNSuXRtt27bF7du3MXv2bDg4OKB3796y/hkZGdJahWrWrFnlN9Pm5eXp1SUIAmrXrl1FFRERUVVgoFGw2NhYODk5AXj49mZvb2+sX78efn5+sn7jx4/XG3vgwAFMnjwZFhYWmDdvHi5fvgxbW1u8/PLLiIuLg5mZmaz/jBkzMGPGDFnbe++9h2XLllXsRZXSmTNnpOegkFqtRlZWVhVVREREVUEQRVGs6iKIqkJ6ejqsra2RlpZW5TtNRERUPryHhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+Bhp57V1c1QXKUe1WXQURE5cBAQ0RERIrHQENERESKx0BDREREisdAQ0RERIrHQENERESKx0BDREREisdAQ0RERIrHQENERESKx0BDREREisdAQ0RERIrHQENERESKx0BDREREisdAQ0RERIrHQENERESKx0BTCsHBwejZs6esbcOGDTA1NcX8+fOlPoIgICIiQtZvy5YtEARBerxy5UrY2NgYXEcQBGzZskXWtnHjRvj5+cHa2hoWFhZo2rQpwsLCcOfOnSLnS0pKgrOzM/r164ecnJxi13y09sePwMDAIsfMmjULzZs312tPTk6GIAhISEiQPTZ0HDlyRDb2wYMHsLW1hb29PbKzs/XmdnNzk8aamZnBzc0N/fv3x969e4usk4iInm0MNOXw7bffYtCgQYiMjMSECROkdlNTU8ybNw93796tkHU++ugjDBgwAK1atcLOnTtx+vRpzJ8/H3/++Se+//57g2OOHTuGjh07IjAwEOvWrYOJiUmJ1goMDERKSorsWLNmTYVcBwDs3r1bb/6WLVvK+mzcuBE+Pj7w9vbWC3aFwsLCkJKSgvPnz2PVqlWwsbGBv78/5syZU2G1EhGRcqiqugCl+uyzzzBz5kysXbsWvXr1kp3z9/fHpUuXEB4ejs8++6xc68THx2Pu3Ln46quvMGbMGKndzc0NXbt2xb179/TG7N27F2+88QZGjRqFefPmlWo9tVoNjUZTrpqLY2dn98T5o6KiMHjwYIiiiKioKAwYMECvj6WlpTSPi4sLOnXqBCcnJ8yYMQN9+/aFl5dXpdRPRETVE3doymDKlCmYPXs2duzYoRdmAMDY2Bhz587F119/jb///rtca/3444+wsLDAqFGjDJ5//CWkzZs3o3v37vj4449LHWaqg8uXL+Pw4cPo378/+vfvjwMHDuDq1aslGjtmzBiIooitW7caPJ+dnY309HTZQUREzwYGmlLauXMnPvvsM2zduhVdunQpsl+vXr3QvHlzzJw5s1zrXbx4EfXr10eNGjWe2DczMxP9+vXDpEmTMGXKlDKtt2PHDlhYWMiOuXPnFjsmMTFRb4yPj4/Bvu3bt9fr+6jo6Gh069YNtWrVgq2tLQICAhATE1Oi2m1tbeHo6Ijk5GSD58PDw2FtbS0dzs7OAADXtxPhNuxKidYgIqLqiS85lVLTpk3xv//9DzNnzkTr1q31fiE/at68eejcuTMmTpxY5vVEUSxxXzMzM3To0AErVqxAUFAQGjVqVOr1tFotIiMjZW22trbFjvHy8sK2bdtkbTdu3ICfn59e33Xr1hVZV35+Pr777jssXLhQahs8eDAmTpyIGTNmwMjoyflbFEXZzdePCg0Nxfjx46XH6enpUqghIiJlY6Appbp162LDhg3QarUIDAzEzp07YWlpabBvp06dEBAQgNDQUAQHB8vOWVlZ4f79+ygoKJD9oi68J8ba2hoA4OnpiYMHDyI3N/eJuzTGxsbYsmULevfuDa1Wi7i4uFKHGnNzc3h4eJRqjImJid4Ylcrwj5azs3OR8//666+4ceOG3j0z+fn52LNnD7p27VpsHbdv38a///4Ld3d3g+fVajXUanWxcxARkTLxJacycHV1xb59+5CamorAwEBkZGQU2TciIgLbt2/H4cOHZe1eXl7Iy8uT3tZc6MSJEwAeBhkAePPNN5GZmYmlS5canP/xm4LVajU2bdqEVq1aQavV4uzZs6W8uqoTFRWFgQMHIiEhQXYMHDgQUVFRTxy/cOFCGBkZ6b21noiInn3coSkjZ2dn6HQ6aLVaBAQEIDY2FlZWVnr9mjRpgkGDBmHRokWydh8fH7zyyisYOnQo5s+fj/r16+P8+fMYO3YsBgwYgLp16wIA2rRpg8mTJ2PChAm4ceMGevXqhTp16uDSpUtYtmwZOnToIHv3E/Aw1GzcuBH9+vWDVqvF3r17pXta8vPz9UKUWq2WdnKys7ORmpoqO69SqWBvb1+u56vQ7du39ea3sbFBRkYGtm/fjm3btqFx48ay82+//TZ69eqFO3fuSC9/ZWRkIDU1Fbm5ubhy5Qp++OEHfPvttwgPDy/1DhMRESkfA0051KtXTxZqfv31V4P9wsLCsG7dOr32devWYebMmXjvvffwzz//oF69eujVqxemT58u6zdv3jy0bNkSS5YswbJly1BQUIAGDRqgb9++GDJkiME1TUxMsGHDBvTv318KNcDDG4dffPFFWd8GDRrg0qVLAIDY2Fg4OTnJznt5eeHcuXMle1KewN/fX69tzZo1uHHjBszNzQ3eaN2lSxeYmZnhhx9+wIcffggAmDFjBmbMmAETExNoNBq0bdsWe/bsgVarrZA6iYhIWQSxNHedEj1D0tPTYW1tjbS0NIO7a0REpBy8h4aIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUr0oDTXBwMHr27KnXrtPpIAgC7t27J7Xl5+djwYIFaNKkCUxNTVGrVi1069YNhw4dkvqcO3cOgiDgyJEjsvnatm0LU1NTZGVlSW1ZWVkwNTVFVFSUVIsgCBAEATVq1EDt2rXRtWtXREdHo6CgQDafm5ub1PfRIyIiAgCQnJwMQRDg6OiIjIwM2djmzZtj1qxZBp+P8tZfkufy0cePXrOhw83NDQDg5+dn8PzIkSMNXkdxcwqCAK1Wixo1auDgwYOycffv30f9+vUxceJEvXVNTU3xwgsvYOnSpVL/lStXGpzf1NTUYF1ERPTsUsQOjSiKGDhwIMLCwjBmzBgkJSVBp9PB2dkZfn5+2LJlCwDA29sbGo0GOp1OGpuRkYETJ07AwcFBFhQOHz6M7OxsdO7cWWoLDAxESkoKkpOTsXPnTmi1WowZMwavvfYa8vLyZDWFhYUhJSVFdoSEhMj6ZGRk4IsvvijxdZa3/tJauHChrH4AiImJkR4fO3ZM6jtixAi96/3ss88Mzvton6+++gpWVlaytu3btyMkJATBwcG4f/++NG7y5MkwMzPDp59+qrfu2bNn0b9/f4wePRpr1qyRzj8+d0pKCq5evVrm54SIiJRJEYHmp59+woYNG7Bq1SoMHz4c7u7uaNasGZYvX47XX38dw4cPl34xarVaWSA4ePAgPD090aNHD1m7TqeDq6sr3N3dpTa1Wg2NRoO6deuiRYsWmDZtGrZu3YqdO3di5cqVsposLS2h0Whkh7m5uaxPSEgIvvzyS9y6davE11qe+kvL2tpaVj8A2NjYSI8dHBykvjVr1tS7XisrK4PzPtrH2toagiDI2iwsLDB37lyYmJhgypQpAIC4uDh8++23WLVqlWyHpXDd+vXrY9asWWjYsCG2bdsmnX98bo1Gg9q1axusKzs7G+np6bKDiIieDYoINKtXr5Z+qT9uwoQJuH37Nnbt2gXgYSA4ePCgtKMSFxcHPz8/+Pr6Ii4uThoXFxcHrVb7xLU7d+6MZs2aYdOmTaWuOygoCB4eHggLCyvxmIquv7oyNTXFqlWrsHz5cmzduhVDhw7FtGnT0LJly2LHmZmZIScnp0xrhoeHw9raWjqcnZ0BAHf+isOdy7sr9CAioqerygPNjh07YGFhITu6desm63PhwgU0atTI4PjC9gsXLgB4GAju378vvVyi0+ng6+uLTp064ejRo8jKysKDBw8QHx9f4kDg7e2N5ORkWduUKVP06j5w4ICsT+F9NcuXL8fly5dLtFZ56i/Jc1lWS5cu1Zv7xx9/LNecL730EkJDQ9G7d2/Y2dnho48+KrJvfn4+fvjhB5w6dUr2MltaWlqJrzk0NBRpaWnScf369XLVT0RE1YeqqgvQarWIjIyUtR09ehSDBw+WtYmiWKL5PDw8UK9ePeh0Ovj4+ODkyZPw9fWFo6MjXFxccPjwYYiiiOzs7BIHGlEUIQiCrG3SpEkIDg6WtdWtW1dvbEBAADp06IDp06dj9erVlVp/SZ/Lshg0aJBe4CjqpZ3SmD59OsLCwjB16lSoVPo/jkuXLsW3336LnJwcGBsbY9y4cXj//fel85aWljhx4oRsjJmZmcG11Go11Gp1uWsmIqLqp8oDjbm5OTw8PGRtf//9t+yxp6cnkpKSDI4vbPf09JTa/Pz8EBcXh6ZNm6Jhw4ZwdHQEAOllG1EU4eHhIb3k8CRJSUl696rY29vr1V2UiIgItGvXDpMmTSpR/7LWX5Lnsqysra1LfL2lURhiDIUZ4P+DlJmZGZycnGBkJN9UNDIyqpS6iIhIWar8JaeSGDhwIC5evIjt27frnZs/fz7s7OzQtWtXqU2r1eL333/Hrl274OfnJ7V36tQJOp0OOp2uxLsze/fuRWJiIvr06VPm+lu3bo3evXtj6tSpJepfkfUrXWGQqlu3rl6YISIiKlTlOzQlMXDgQKxfvx5DhgzB559/ji5duiA9PR1LlizBtm3bsH79etk7jArvQ4mOjsaKFSukdl9fXwwfPhwAMGrUKL11srOzkZqaivz8fNy8eROxsbEIDw/Ha6+9hrffflvWNyMjA6mpqbK2mjVrFvnOnzlz5sDHx6fInYhHlbX+yvTff//pXa9arUatWrWeah2PE0VRry4AcHR0ZAAiInqOKOJffEEQ8NNPP2HatGlYsGABvLy80LFjR1y9ehU6nU7vA+Xc3d3h6uqKjIwM+Pr6Su0uLi6oU6cOcnJyZDsfhWJjY+Hk5AQ3NzcEBgYiLi4OixYtwtatW2FsbCzrO2PGDDg5OcmOyZMnF3kNnp6eGDp0qOzD8YpS1vor04oVK/SuNygo6KnWYEh6erpeXU5OTqV6qzwRESmfIJb0bluiZ0x6ejqsra1x5eQWWFmaP3lAKdg28K/Q+YiIqHiK2KEhIiIiKg4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESkeAw0REREpHgMNERERKR4DDRERESmeIr5tm6gy2dbXFvkt6UREpAzcoSEiIiLFY6AhIiIixWOgISIiIsXjPTT03BJFEQCQnp5exZUQ0dNmaWkJQRCqugyqQAw09Ny6ffs2AMDZ2bmKKyGipy0tLY1vBnjGMNDQc8vW1hYAcO3aNVhbW1dxNSWXnp4OZ2dnXL9+XTH/ICuxZkCZdSuxZuDp121paVnpa9DTxUBDzy0jo4e3kFlbWyvqH/5CVlZWiqtbiTUDyqxbiTUDyq2bqh5vCiYiIiLFY6AhIiIixWOgoeeWWq3GzJkzoVarq7qUUlFi3UqsGVBm3UqsGVBu3VR9CGLhe1eJiIiIFIo7NERERKR4DDRERESkeAw0REREpHgMNERERKR4DDT03FqyZAnc3NxgamqKNm3aID4+vspq2b9/P3r06IE6depAEARs2bJFdl4URcyYMQNOTk4wMzODv78/Ll68KOtz584dDBo0CFZWVrCxscGwYcOQmZlZaTWHh4ejVatWsLS0hKOjI3r27Inz58/L+mRlZWH06NGws7ODhYUF+vTpg5s3b8r6XLt2Dd27d0fNmjXh6OiISZMmIS8vr9LqjoyMRNOmTaUPcGvXrh127txZrWt+XEREBARBwNixY6t13bNmzYIgCLLD29u7WtdMCiYSPYfWrl0rmpiYiNHR0eKZM2fEESNGiDY2NuLNmzerpJ5ffvlF/Oijj8RNmzaJAMTNmzfLzkdERIjW1tbili1bxD///FN8/fXXRXd3d/HBgwdSn8DAQLFZs2bikSNHxAMHDogeHh5iUFBQpdUcEBAgxsTEiKdPnxYTEhLEV199VXRxcREzMzOlPiNHjhSdnZ3FPXv2iMePHxfbtm0rtm/fXjqfl5cnNm7cWPT39xdPnjwp/vLLL6K9vb0YGhpaaXVv27ZN/Pnnn8ULFy6I58+fF6dNmybWqFFDPH36dLWt+VHx8fGim5ub2LRpU3HMmDFSe3Wse+bMmaKPj4+YkpIiHf/++2+1rpmUi4GGnkutW7cWR48eLT3Oz88X69SpI4aHh1dhVQ89HmgKCgpEjUYjfv7551LbvXv3RLVaLa5Zs0YURVE8e/asCEA8duyY1Gfnzp2iIAjijRs3nkrdt27dEgGI+/btk2qsUaOGuH79eqlPUlKSCEA8fPiwKIoPg5yRkZGYmpoq9YmMjBStrKzE7Ozsp1K3KIpirVq1xG+//bba15yRkSE2bNhQ3LVrl+jr6ysFmupa98yZM8VmzZoZPFddaybl4ktO9NzJycnBH3/8AX9/f6nNyMgI/v7+OHz4cBVWZtiVK1eQmpoqq9fa2hpt2rSR6j18+DBsbGzw0ksvSX38/f1hZGSEo0ePPpU609LSAPz/l37+8ccfyM3NldXt7e0NFxcXWd1NmjRB7dq1pT4BAQFIT0/HmTNnKr3m/Px8rF27Fvfv30e7du2qfc2jR49G9+7dZfUB1fu5vnjxIurUqYP69etj0KBBuHbtWrWvmZSJX05Jz53//e9/yM/Pl/0jCQC1a9fGuXPnqqiqoqWmpgKAwXoLz6WmpsLR0VF2XqVSwdbWVupTmQoKCjB27Fi8/PLLaNy4sVSTiYkJbGxsiq3b0HUVnqssiYmJaNeuHbKysmBhYYHNmzfjhRdeQEJCQrWtee3atThx4gSOHTumd666Ptdt2rTBypUr4eXlhZSUFHzyySfo2LEjTp8+XW1rJuVioCGichs9ejROnz6NgwcPVnUpJeLl5YWEhASkpaVhw4YNGDJkCPbt21fVZRXp+vXrGDNmDHbt2gVTU9OqLqfEunXrJv25adOmaNOmDVxdXfHTTz/BzMysCiujZxFfcqLnjr29PYyNjfXeTXHz5k1oNJoqqqpohTUVV69Go8GtW7dk5/Py8nDnzp1Kv6YPPvgAO3bsQFxcHOrVqyerOycnB/fu3Su2bkPXVXiuspiYmMDDwwMtW7ZEeHg4mjVrhoULF1bbmv/44w/cunULLVq0gEqlgkqlwr59+7Bo0SKoVCrUrl27Wtb9OBsbG3h6euLSpUvV9rkm5WKgoeeOiYkJWrZsiT179khtBQUF2LNnD9q1a1eFlRnm7u4OjUYjqzc9PR1Hjx6V6m3Xrh3u3buHP/74Q+qzd+9eFBQUoE2bNpVSlyiK+OCDD7B582bs3bsX7u7usvMtW7ZEjRo1ZHWfP38e165dk9WdmJgoC2O7du2ClZUVXnjhhUqp25CCggJkZ2dX25q7dOmCxMREJCQkSMdLL72EQYMGSX+ujnU/LjMzE5cvX4aTk1O1fa5Jwar6rmSiqrB27VpRrVaLK1euFM+ePSu+++67oo2NjezdFE9TRkaGePLkSfHkyZMiAPHLL78UT548KV69elUUxYdv27axsRG3bt0qnjp1SnzjjTcMvm37xRdfFI8ePSoePHhQbNiwYaW+bfv9998Xra2tRZ1OJ3tb7n///Sf1GTlypOji4iLu3btXPH78uNiuXTuxXbt20vnCt+W+8sorYkJCghgbGys6ODhU6ttyp06dKu7bt0+8cuWKeOrUKXHq1KmiIAjib7/9Vm1rNuTRdzlV17onTJgg6nQ68cqVK+KhQ4dEf39/0d7eXrx161a1rZmUi4GGnltff/216OLiIpqYmIitW7cWjxw5UmW1xMXFiQD0jiFDhoii+PCt29OnTxdr164tqtVqsUuXLuL58+dlc9y+fVsMCgoSLSwsRCsrK/Gdd94RMzIyKq1mQ/UCEGNiYqQ+Dx48EEeNGiXWqlVLrFmzptirVy8xJSVFNk9ycrLYrVs30czMTLS3txcnTJgg5ubmVlrdQ4cOFV1dXUUTExPRwcFB7NKlixRmqmvNhjweaKpj3QMGDBCdnJxEExMTsW7duuKAAQPES5cuVeuaSbkEURTFqtkbIiIiIqoYvIeGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiIiIFI+BhoiIiBSPgYaIiIgUj4GGiKgUkpOTIQgCEhISqroUInoEAw0REREpHgMNESlKQUEBPvvsM3h4eECtVsPFxQVz5swBACQmJqJz584wMzODnZ0d3n33XWRmZkpj/fz8MHbsWNl8PXv2RHBwsPTYzc0Nc+fOxdChQ2FpaQkXFxcsX75cOu/u7g4AePHFFyEIAvz8/CrtWomo5BhoiEhRQkNDERERgenTp+Ps2bNYvXo1ateujfv37yMgIAC1atXCsWPHsH79euzevRsffPBBqdeYP38+XnrpJZw8eRKjRo3C+++/j/PnzwMA4uPjAQC7d+9GSkoKNm3aVKHXR0Rlo6rqAoiISiojIwMLFy7E4sWLMWTIEABAgwYN0KFDB6xYsQJZWVlYtWoVzM3NAQCLFy9Gjx49MG/ePNSuXbvE67z66qsYNWoUAGDKlClYsGAB4uLi4OXlBQcHBwCAnZ0dNBpNBV8hEZUVd2iISDGSkpKQnZ2NLl26GDzXrFkzKcwAwMsvv4yCggJpd6WkmjZtKv1ZEARoNBrcunWr7IUTUaVjoCEixTAzMyvXeCMjI4iiKGvLzc3V61ejRg3ZY0EQUFBQUK61iahyMdAQkWI0bNgQZmZm2LNnj965Ro0a4c8//8T9+/eltkOHDsHIyAheXl4AAAcHB6SkpEjn8/Pzcfr06VLVYGJiIo0louqDgYaIFMPU1BRTpkzB5MmTsWrVKly+fBlHjhxBVFQUBg0aBFNTUwwZMgSnT59GXFwcQkJC8NZbb0n3z3Tu3Bk///wzfv75Z5w7dw7vv/8+7t27V6oaHB0dYWZmhtjYWNy8eRNpaWmVcKVEVFoMNESkKNOnT8eECRMwY8YMNGrUCAMGDMCtW7dQs2ZN/Prrr7hz5w5atWqFvn37okuXLli8eLE0dujQoRgyZAjefvtt+Pr6on79+tBqtaVaX6VSYdGiRfjmm29Qp04dvPHGGxV9iURUBoL4+AvKRERERArDHRoiIiJSPAYaIiIiUjwGGiIiIlI8BhoiIiJSPAYaIiIiUjwGGiIiIlI8BhoiIiJSPAYaIiIiUjwGGiIiIlI8BhoiIiJSPAYaIiIiUrz/A+sUfVTiRBWAAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import seaborn as sns\n", + "\n", + "palette = {\n", + " \"ORANGE\": \"orange\",\n", + " \"WHITE\": \"wheat\"\n", + "}\n", + "\n", + "sns.catplot(data=pumpkins, y=\"Variety\", hue=\"Color\", kind=\"count\", palette=palette)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['med', 'lge', 'sml', 'xlge', 'med-lge', 'jbo', 'exjbo'],\n", + " dtype=object)" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pumpkins[\"Item Size\"].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.preprocessing import OrdinalEncoder\n", + "\n", + "item_size_categories = [['sml','med', 'med-lge', 'lge', 'xlge', 'jbo','exjbo']]\n", + "ordinal_features = ['Item Size']\n", + "ordinal_encoder = OrdinalEncoder(categories=item_size_categories)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.preprocessing import OneHotEncoder\n", + "\n", + "categorical_features=[\"City Name\", \"Package\", \"Variety\", \"Origin\"]\n", + "categorical_encoder = OneHotEncoder(sparse_output=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "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", + "
ord__Item Sizecat__City Name_ATLANTAcat__City Name_BALTIMOREcat__City Name_BOSTONcat__City Name_CHICAGOcat__City Name_COLUMBIAcat__City Name_DALLAScat__City Name_DETROITcat__City Name_LOS ANGELEScat__City Name_MIAMI...cat__Origin_MICHIGANcat__Origin_NEW JERSEYcat__Origin_NEW YORKcat__Origin_NORTH CAROLINAcat__Origin_OHIOcat__Origin_PENNSYLVANIAcat__Origin_TENNESSEEcat__Origin_TEXAScat__Origin_VERMONTcat__Origin_VIRGINIA
21.00.01.00.00.00.00.00.00.00.0...0.00.00.00.00.00.00.00.00.00.0
31.00.01.00.00.00.00.00.00.00.0...0.00.00.00.00.00.00.00.00.01.0
43.00.01.00.00.00.00.00.00.00.0...0.00.00.00.00.00.00.00.00.00.0
53.00.01.00.00.00.00.00.00.00.0...0.00.00.00.00.00.00.00.00.00.0
61.00.01.00.00.00.00.00.00.00.0...0.00.00.00.00.00.00.00.00.00.0
\n", + "

5 rows × 48 columns

\n", + "
" + ], + "text/plain": [ + " ord__Item Size cat__City Name_ATLANTA cat__City Name_BALTIMORE \\\n", + "2 1.0 0.0 1.0 \n", + "3 1.0 0.0 1.0 \n", + "4 3.0 0.0 1.0 \n", + "5 3.0 0.0 1.0 \n", + "6 1.0 0.0 1.0 \n", + "\n", + " cat__City Name_BOSTON cat__City Name_CHICAGO cat__City Name_COLUMBIA \\\n", + "2 0.0 0.0 0.0 \n", + "3 0.0 0.0 0.0 \n", + "4 0.0 0.0 0.0 \n", + "5 0.0 0.0 0.0 \n", + "6 0.0 0.0 0.0 \n", + "\n", + " cat__City Name_DALLAS cat__City Name_DETROIT cat__City Name_LOS ANGELES \\\n", + "2 0.0 0.0 0.0 \n", + "3 0.0 0.0 0.0 \n", + "4 0.0 0.0 0.0 \n", + "5 0.0 0.0 0.0 \n", + "6 0.0 0.0 0.0 \n", + "\n", + " cat__City Name_MIAMI ... cat__Origin_MICHIGAN cat__Origin_NEW JERSEY \\\n", + "2 0.0 ... 0.0 0.0 \n", + "3 0.0 ... 0.0 0.0 \n", + "4 0.0 ... 0.0 0.0 \n", + "5 0.0 ... 0.0 0.0 \n", + "6 0.0 ... 0.0 0.0 \n", + "\n", + " cat__Origin_NEW YORK cat__Origin_NORTH CAROLINA cat__Origin_OHIO \\\n", + "2 0.0 0.0 0.0 \n", + "3 0.0 0.0 0.0 \n", + "4 0.0 0.0 0.0 \n", + "5 0.0 0.0 0.0 \n", + "6 0.0 0.0 0.0 \n", + "\n", + " cat__Origin_PENNSYLVANIA cat__Origin_TENNESSEE cat__Origin_TEXAS \\\n", + "2 0.0 0.0 0.0 \n", + "3 0.0 0.0 0.0 \n", + "4 0.0 0.0 0.0 \n", + "5 0.0 0.0 0.0 \n", + "6 0.0 0.0 0.0 \n", + "\n", + " cat__Origin_VERMONT cat__Origin_VIRGINIA \n", + "2 0.0 0.0 \n", + "3 0.0 1.0 \n", + "4 0.0 0.0 \n", + "5 0.0 0.0 \n", + "6 0.0 0.0 \n", + "\n", + "[5 rows x 48 columns]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.compose import ColumnTransformer\n", + "ct = ColumnTransformer(transformers=[(\"ord\", ordinal_encoder, ordinal_features),\n", + " (\"cat\", categorical_encoder, categorical_features)])\n", + "\n", + "ct.set_output(transform=\"pandas\")\n", + "encoded_features = ct.fit_transform(pumpkins)\n", + "encoded_features.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "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", + "
ord__Item Sizecat__City Name_ATLANTAcat__City Name_BALTIMOREcat__City Name_BOSTONcat__City Name_CHICAGOcat__City Name_COLUMBIAcat__City Name_DALLAScat__City Name_DETROITcat__City Name_LOS ANGELEScat__City Name_MIAMI...cat__Origin_NEW JERSEYcat__Origin_NEW YORKcat__Origin_NORTH CAROLINAcat__Origin_OHIOcat__Origin_PENNSYLVANIAcat__Origin_TENNESSEEcat__Origin_TEXAScat__Origin_VERMONTcat__Origin_VIRGINIAColor
16944.00.00.00.00.00.00.00.00.00.0...0.00.00.00.00.00.00.00.00.01
16954.00.00.00.00.00.00.00.00.00.0...0.00.00.00.00.00.00.00.00.01
16964.00.00.00.00.00.00.00.00.00.0...0.00.00.00.00.00.00.00.00.01
16974.00.00.00.00.00.00.00.00.00.0...0.00.00.00.00.00.00.00.00.01
16984.00.00.00.00.00.00.00.00.00.0...0.00.00.00.00.00.00.00.00.01
\n", + "

5 rows × 49 columns

\n", + "
" + ], + "text/plain": [ + " ord__Item Size cat__City Name_ATLANTA cat__City Name_BALTIMORE \\\n", + "1694 4.0 0.0 0.0 \n", + "1695 4.0 0.0 0.0 \n", + "1696 4.0 0.0 0.0 \n", + "1697 4.0 0.0 0.0 \n", + "1698 4.0 0.0 0.0 \n", + "\n", + " cat__City Name_BOSTON cat__City Name_CHICAGO cat__City Name_COLUMBIA \\\n", + "1694 0.0 0.0 0.0 \n", + "1695 0.0 0.0 0.0 \n", + "1696 0.0 0.0 0.0 \n", + "1697 0.0 0.0 0.0 \n", + "1698 0.0 0.0 0.0 \n", + "\n", + " cat__City Name_DALLAS cat__City Name_DETROIT \\\n", + "1694 0.0 0.0 \n", + "1695 0.0 0.0 \n", + "1696 0.0 0.0 \n", + "1697 0.0 0.0 \n", + "1698 0.0 0.0 \n", + "\n", + " cat__City Name_LOS ANGELES cat__City Name_MIAMI ... \\\n", + "1694 0.0 0.0 ... \n", + "1695 0.0 0.0 ... \n", + "1696 0.0 0.0 ... \n", + "1697 0.0 0.0 ... \n", + "1698 0.0 0.0 ... \n", + "\n", + " cat__Origin_NEW JERSEY cat__Origin_NEW YORK \\\n", + "1694 0.0 0.0 \n", + "1695 0.0 0.0 \n", + "1696 0.0 0.0 \n", + "1697 0.0 0.0 \n", + "1698 0.0 0.0 \n", + "\n", + " cat__Origin_NORTH CAROLINA cat__Origin_OHIO cat__Origin_PENNSYLVANIA \\\n", + "1694 0.0 0.0 0.0 \n", + "1695 0.0 0.0 0.0 \n", + "1696 0.0 0.0 0.0 \n", + "1697 0.0 0.0 0.0 \n", + "1698 0.0 0.0 0.0 \n", + "\n", + " cat__Origin_TENNESSEE cat__Origin_TEXAS cat__Origin_VERMONT \\\n", + "1694 0.0 0.0 0.0 \n", + "1695 0.0 0.0 0.0 \n", + "1696 0.0 0.0 0.0 \n", + "1697 0.0 0.0 0.0 \n", + "1698 0.0 0.0 0.0 \n", + "\n", + " cat__Origin_VIRGINIA Color \n", + "1694 0.0 1 \n", + "1695 0.0 1 \n", + "1696 0.0 1 \n", + "1697 0.0 1 \n", + "1698 0.0 1 \n", + "\n", + "[5 rows x 49 columns]" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.preprocessing import LabelEncoder\n", + "\n", + "label_encoder = LabelEncoder()\n", + "encoded_label = label_encoder.fit_transform(pumpkins[\"Color\"])\n", + "encoded_pumpkins = encoded_features.assign(Color=encoded_label)\n", + "encoded_pumpkins.tail()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['ORANGE', 'WHITE']" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list(label_encoder.inverse_transform([0,1]))" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_16772\\2446460816.py:3: FutureWarning: \n", + "\n", + "Passing `palette` without assigning `hue` is deprecated and will be removed in v0.14.0. Assign the `y` variable to `hue` and set `legend=False` for the same effect.\n", + "\n", + " g = sns.catplot(data=pumpkins, x=\"Item Size\", y=\"Color\", row=\"Variety\",\n", + "c:\\Users\\billg\\Desktop\\alvinsstuff\\Learning\\ML-For-Beginners\\.venv\\Lib\\site-packages\\seaborn\\axisgrid.py:123: UserWarning: Tight layout not applied. tight_layout cannot make Axes height small enough to accommodate all Axes decorations.\n", + " self._figure.tight_layout(*args, **kwargs)\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnQAAAU5CAYAAADtCJnzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzde1zPd/8/8MenTyr0UXROJ6RyWGRGyVTOri0ZF9blkJhthGJsmmuLDdl1GUMIS7brMoc57HhhDpUhKmSEKEUo1aTTOvf+/eHX57vPKj6fVG/vPO632/um9+n1fnpfu7o9vN+v9+slEwRBABERERFJlpbYBRARERHRs2GgIyIiIpI4BjoiIiIiiWOgIyIiIpI4BjoiIiIiiWOgIyIiIpI4BjoiIiIiiWOgIyIiIpI4BjoiIiIiiWOgIyIiIpI4BjoiIiIiidMWuwAiIiKiF42/v79ax0VGRqp1HAMdERERUTPLz89XWS8uLsaJEyfg7e3doPZkgiAIjVEYERERETVMWloanJ2dUVhY2KDz2YeOiIiISGTP+nyNgY6IiIhI4hjoiIiIiCSOH0UQERERNbOYmBiV9Xv37qGqqgrR0dGQyWTK7R4eHmq1x48iiIiIiJqZXC6HIAgq4e2vBEFAdXW1Wu3xCR0RERFRM8vLy2vU9viEjoiIiEji+FEEERERkUh2796NMWPGoHv37ujevTvGjBmDPXv2aNwOn9ARERERNbPq6mqMHz8e3333Hbp27Ypu3bpBJpPh2rVrSE5Oxrhx47Bnzx5oaan37I196IiIiIia2RdffIGYmBj88MMPeO2111T2/e9//8OUKVOwbt06zJ8/X632+ISOiIiIqJk5OzsjKCgI06dPr3N/ZGQk1q5di99++02t9hjoiIiIiJpZ69atcf36ddja2ta5//bt23ByckJJSYla7fGjCCIiIqJmpqenh/z8/Hr3FxQUoHXr1mq3x0BHRERE1Mzc3NywcePGeveHhYXB1dVV7fb4UQQRERFRM/v444/h4eGB3NxcvPfee+jevTsA4Nq1a/j888/xww8/IDo6Wu322IeOiIiISAQ//vgjZsyYgdzcXJXtxsbG+PLLLzF69Gi122KgIyIiIhJJSUkJjh49ihs3bgAAHBwcMGzYMI36zwEMdERERETPpeTkZDg6Oqp1LPvQERERET0HUlNTERUVpVyysrJQXV2t1rkMdEREREQiSE9PV4a36Oho3L17F/r6+hg4cCCCgoLg6empdlt85UpERETUzDp16oTbt2+jbdu2cHd3h5eXFzw9PfHKK6+oPX/rnzHQERERETUzbW1t6Ovrw9/fH8OGDcOrr74KhULR4PYY6IiIiIiaWXZ2NmJiYhATE4Po6GjcuHEDLi4u8PT0hJeXFwYOHAh9fX2122OgIyIiIhLZ77//jujoaGXAS05OhouLC86ePavW+fwogoiIiEhkRkZGcHd3R3V1Naqrq5Gfn49Lly6pfT6f0BERERGJICMjAzExMTh58iROnjyJ27dvo3///hg8eDA8PT3h6uoKHR0dtdpioCMiIiJqZp07d8b9+/fRv39/eHp6YvDgwXBzc1M7wP2V5t/FEhEREdEzuXPnDmQyGQRBgCAIyletDcUndERERETN7MGDB4iOjlYOLJySkgIdHR3069cPXl5e8PDwwIABA6Crq6tWewx0RERERCK7d++eyrRft2/fho6ODkpKStQ6n4GugQRBQGFhIRQKBWQymdjlEBERUQty584dHD9+HP7+/modz0DXQAUFBTAwMEB+fj7atWsndjktSk5ODgoKCsQug4hE0q5dO5iYmIhdBpGkcBw6eq7k5ORg9qx3UVZeIXYpRCQSXZ1W2LQ5nKGOWjR1nrwJgoAdO3ao1R4DHT1XCgoKUFZegSl9MmCuKBW7HKInelCoi68v2GBqnzswU5SJXU6LkFWoh/9csEZBQQEDHbVoX3/9NUaOHFnvRw9lZWU4dOhQ0wa6jIwMhISE4PDhw8jNzYWFhQXGjBmDjz/+GEZGRgAAT09PxMTEAAB0dXVhY2MDf39/LF68uFafs9jYWAwcOBAjR47Ezz//rLIvPT0dnTp1gomJCVJTU1Umru3duzfGjBmDpUuXKrelpKRg5cqVOHbsGB48eABjY2M4OTlh+vTpmDhxIrS1H/+V6+v3tmvXLrz55ptq34uyMv4SbwrmilJYGzLQkTSYKcr43yvRC6isrEztr1Drsn37dpiZmdW5LycnB+bm5mq3pfE4dLdu3ULfvn1x8+ZN7Nq1CykpKQgPD8fx48fh5uaGhw8fKo+dOXMmMjMzkZycjODgYHz88ccIDw+v1WZERATmzp2LkydP4v79+3Vet7CwEKtXr35ibXFxcejTpw+uXbuGjRs34sqVK4iOjsZbb72FzZs3IykpSeX4yMhIZGZmqixjxozR6H7cu3dPo+OJiIioZbh7926Dz9XW1kZVVVW9+ysrKyGXy9VvT9MCAgICoKOjg19++QWtW7cGANjY2MDFxQVdunTBkiVLsHnzZgBAmzZtlOnS398fYWFhOHr0KGbNmqVsr6ioCHv27EFCQgKysrKwY8cOfPjhh7WuO3fuXKxZswYBAQEwNTWttV8QBEybNg0ODg44ffo0tLT+L6t27doVvr6++Ov3H4aGhhqlXyIiIqLG0L59ezx48ACWlpZ17n/w4AE6dOigdnsaPaF7+PAhjhw5gtmzZyvDXA1zc3NMmjQJe/bsqRWcBEHAr7/+iuvXr9ea0mLv3r1wcnKCo6MjJk+ejO3bt9c6HwB8fX1hb2+PTz75pM7aEhMTce3aNSxcuFAlzP0ZhxchIiKi50GvXr1w6NChevcfPnwYzs7Oaren0RO6mzdvQhAEdOvWrc793bp1Q15eHnJycgAAmzZtwpdffony8nJUVFRAT08P8+bNUzknIiICkydPBgCMHDkS+fn5iImJgaenp8pxMpkMq1atgre3N+bPn48uXbqo7L9x4wYAwNHRUbktOzsbnTt3Vq7/61//wuzZs5Xrvr6+tR5nXr16FTY2NrX+bmVlZSr95WqG1bh3755Kvz56NhkZGWKXQETPAf4uICnIyMiolUfUNWnSJMyZMweurq4YPHiwyr6oqCisXLkS69atU7u9Bn0Uoe7QdZMmTcKSJUuQl5eHkJAQDBgwAAMGDFDuT05ORlxcHA4ePPi4GG1tTJw4EREREbUCHQCMGDECAwcOxEcffYRvvvnmqdc3MjJCYmIigMcfaZSXl6vsX7t2LYYOHaqyrb5Hn6GhoVi2bFmt7WFhYWjVqtVTayEiIvWtWbNG7BKI1FJXXlHH1KlTceDAAQwdOhQvvfQSunXrBplMhuvXr+PSpUv429/+hmnTpqndnkaBzt7eHjKZDNeuXcMbb7xRa/+1a9fQvn175afmBgYGsLe3B/D41aq9vT1cXV2VISoiIgKVlZUqIUoQBOjq6iIsLAwGBga1rrFq1Sq4ublh0aJFKtu7du0K4HFIdHFxAQDI5XLl9Wu+bv0zc3Nz5f6nCQ4OxoIFC5TrBQUFsLa2xpw5c+Dk5KRWG/R0GRkZ/EVORFiwYAGsra3FLoPoiZ71SfLBgwfxn//8B/v27UNSUhIEQYCdnR3mzp2LadOmadRVTKNAZ2RkhGHDhmHTpk2YP3++Sj+6rKws7Ny5E1OnTq2zAH19fQQGBmLhwoW4ePEiqqqq8PXXX+Pzzz/H8OHDVY4dM2YMdu3ahXfffbdWO/369cPYsWOxePFile0uLi5wcnLC6tWrMWHChHr70TWUrq5unZ8md+zYscGPW4mIqG7W1tb83Uotnkwmw9SpUzF16tRnbkvjV65hYWEYMGAARowYgeXLl6NTp05ISkrCokWL0LFjR6xYsaLec9955x18+umn2L9/P7S1tZGXl4cZM2bUehI3btw4RERE1BnoAGDFihXo0aOHylM3mUyGyMhIDBs2DO7u7ggODka3bt1QUVGBkydPIicnp1Z/uUePHiErK0tlm0KhQNu2bTW9LURERESi0TjQde3aFQkJCQgJCcGECRPw8OFDmJubY8yYMQgJCXniJ7YdOnTA1KlTsXTpUnTq1AlDhw6t87XquHHj8K9//Qu//fZbnfOkOjg4YPr06di6davKdldXV5w/fx4rV65EQEAAsrKy0LZtW/Tq1Qtr167F9OnTVY6va9qN0NDQWk//nqRjx45qH0tEREQth5WVVYPP7dSp01OPEQQB6enparUnE9T9woFUFBQUwMDAAPn5+XWGTmqY1NRUzJ8/n1N/kSRw6q/GVzP119q1a/nKlVo0uVyOTz75RDlSRm5uLv7973/js88+A/B4nN5//vOfqK6uVqs9BroGYqBrGjk5OZg9612UlVeIXQoRiURXpxU2bQ7nXK7Uosnlcty/f1859detW7fQq1cvFBYWAng89Jq5ubnaga5Bw5YQNRUTExNs2hyuHOePiF487dq1Y5gj0hADHT13TExM+MuciIhIA407tgcRERERNchfh33TZBw6BjoiIiKiZvbOO++gTZs2yvWOHTuqzO2qUCgQGhqqdntNHujCw8OhUChQWVmp3FZUVIRWrVrVmi4jOjoaMpkMqampsLOzwxdffFGrvaVLl6J37951rtvZ2UEmk9W71EyhUd/+3bt3N/LfnoiIiKi2TZs2qcwFr6urC3d3d+V669at8f7776vdXpP3ofPy8kJRURESEhLg6uoKAPj1119hbm6Oc+fOobS0FHp6egAeT0ZrY2PT4E/V4+PjUVVVBQA4c+YMxo0bh+TkZOVXqH+e2SIyMhIjR45UOd/Q0LBB1yUiIiLSxO3bt9U6ztbWVq3jmjzQOTo6wsLCAtHR0cpAFx0dDR8fH5w4cQJnz55VPqmLjo6Gl5dXg6/15470NQMcm5qa1hnUDA0NYW5u3uBrERERETVU586dIQgCZDIZ/jyC3F/Xn6thS7y8vBAVFaWcgSEqKgrvv/8+qqqqEBUVBU9PT5SUlODcuXO1ZnN4XpSVlaGs7P8GDuWwGkRERNRQFy9erHO7IAjYtWsXNmzYoPJK9mmaLdAFBQWhsrISJSUluHjxIjw8PFBRUYHw8HAAQGxsLMrKylSe0H3wwQf45z//qdJWeXk5unfv/sw1+fr61prb9erVq7Cxsanz+NDQUCxbtuyZr0tERETk7Oxca9svv/yC4OBgpKSk4P3338fChQvVbq9ZAp2npyeKi4sRHx+PvLw8ODg4wMTEBB4eHvD390dpaSmio6PRuXNnlUC1aNEi5YcMNdavX4+TJ08+c01r167F0KFDVbZZWlrWe3xwcDAWLFigXC8oKIC1tfUz10FEREQvtvj4eCxevBinTp3C22+/jSNHjsDY2FijNpol0Nnb28PKygpRUVHIy8uDh4cHgMcBytraGmfOnEFUVBQGDx6scp6xsTHs7e1VttX0jXtW5ubmtdp+El1dXejq6jbKtYmIiIhu3ryJf/7znzhw4AAmTpyI69evo1OnTg1qq9nGofPy8kJ0dDSio6NVhisZNGgQDh06hLi4uGf6IIKIiIhIKt5991306NED+fn5iI+Px3//+98GhzmgGaf+8vLyQkBAACoqKpRP6ADAw8MDc+bMQXl5ebMGukePHiErK0tlm0KhQNu2bZutBiIiInoxbdu2DXp6esjOzoa/v3+9x9X38cRfNWugKykpgZOTE8zMzJTbPTw8UFhYqBzepLnUdfNCQ0OVX+ISERERNZWQkJBGbU8m/HmwE1JbQUEBDAwMkJ+frxy4mIiIiEgMzfaErqWpycEcj46IiOjFplAoIJPJRK2Bga6Bfv/9dwDg0CVEREQvuOzsbJXZqsTAQNdANcOn3LlzBwYGBiJX03LUjO+XkZHBV9mNiPe1afC+Nj7e06bB+9o0au6rjo6O2KUw0DWUltbjEV8MDAz4f44m0K5dO97XJsD72jR4Xxsf72nT4H1tGmK/bgWacRw6IiIiIlLPo0ePNBrOjYGOiIiI6DlTXl6OmJgYtY9noGsgXV1dhISEcDqwRsb72jR4X5sG72vj4z1tGryvTeN5uq8ch46IiIiomd2+ffuJ+3NyctCvXz9UV1er1R4DHREREVEzk8vlEAQBMpkMdUWxmu3qBjp+5UpERETUzJ42R+vDhw8xePBgtdvjEzoiIiKi50x2djbMzc3VfkLHjyKIiIiInkOajG/HQNdAGzduhJ2dHfT09NC/f3/ExcWJXZKknTx5Et7e3rC0tIRMJsN3330ndkmSFxoaildeeQUKhQKmpqYYM2YMkpOTxS5L8jZv3gxnZ2flAK1ubm44dOiQ2GW1OKtWrYJMJkNQUJDYpUja0qVLIZPJVBYnJyexy2oR7t27h8mTJ8PIyAitW7fGSy+9hISEhEZrX0dHB927d1f7eAa6BtizZw8WLFiAkJAQXLhwAb169cKIESOQnZ0tdmmSVVxcjF69emHjxo1il9JixMTEICAgAGfPnsXRo0dRUVGB4cOHo7i4WOzSJM3KygqrVq3C+fPnkZCQgMGDB8PHxwdJSUlil9ZixMfHY8uWLXB2dha7lBahR48eyMzMVC6nTp0SuyTJy8vLg7u7O1q1aoVDhw7h6tWr+Pzzz9G+fftGu8avv/6K3Nxc9U8QSGP9+vUTAgIClOtVVVWCpaWlEBoaKmJVLQcA4eDBg2KX0eJkZ2cLAISYmBixS2lx2rdvL3z55Zdil9EiFBYWCl27dhWOHj0qeHh4CIGBgWKXJGkhISFCr169xC6jxfnggw+EgQMHNknbBQUFgr+/v6CrqyusXLlS7fP4hE5D5eXlOH/+PIYOHarcpqWlhaFDhyI2NlbEyoieLD8/HwDQoUMHkStpOaqqqrB7924UFxfDzc1N7HJahICAALz22msqv2Pp2dy8eROWlpbo3LkzJk2ahDt37ohdkuT98MMP6Nu3L8aPHw9TU1O4uLhg27Ztz9xuVFQUnJ2dcenSJZw/fx7BwcFqn8thSzSUm5uLqqoqmJmZqWw3MzPD9evXRaqK6Mmqq6sRFBQEd3d39OzZU+xyJO/y5ctwc3NDaWkp9PX1cfDgQY36ulDddu/ejQsXLiA+Pl7sUlqM/v37Y8eOHXB0dERmZiaWLVuGV199FVeuXIFCoRC7PMm6desWNm/ejAULFuDDDz9EfHw85s2bBx0dHfj5+anVxuDBg1XGn6usrMTZs2fx4Ycf4uOPP4ZcLteoJgY6ohdAQEAArly5wr4zjcTR0RGJiYnIz8/Hvn374Ofnh5iYGIa6Z5CRkYHAwEAcPXoUenp6YpfTYowaNUr5s7OzM/r37w9bW1vs3bsXM2bMELEyaauurkbfvn2xcuVKAICLiwuuXLmC8PBwtQNd7969VdYrKytx5coVXLt2DQ8fPoSJiYlGNTHQacjY2BhyuRwPHjxQ2f7gwQOYm5uLVBVR/ebMmYOffvoJJ0+ehJWVldjltAg6Ojqwt7cHALz88suIj4/HunXrsGXLFpErk67z588jOzsbffr0UW6rqqrCyZMnERYWhrKyMo2fWFBthoaGcHBwQEpKitilSJqFhUWtf8B169YN+/fvV7uNNWvW1Nr2/vvvw9/fHz179kRYWBjGjx+vdnvsQ6chHR0dvPzyyzh+/LhyW3V1NY4fP84+NPRcEQQBc+bMwcGDB3HixAl06tRJ7JJarOrqapSVlYldhqQNGTIEly9fRmJionLp27cvJk2ahMTERIa5RlJUVITU1FRYWFiIXYqkubu71xoG6saNG7C1tX2mdq2srHD06FF8/PHH8Pf3x4QJE9Q+l0/oGmDBggXw8/ND37590a9fP3zxxRcoLi6Gv7+/2KVJVlFRkcq/GNPS0pCYmIgOHTrAxsZGxMqkKyAgAN988w2+//57KBQKZGVlAQAMDAzQunVrkauTruDgYIwaNQo2NjYoLCzEN998g+joaBw5ckTs0iRNoVDU6t/Ztm1bGBkZsd/nM1i4cCG8vb1ha2uL+/fvIyQkBHK5HL6+vmKXJmnz58/HgAEDsHLlSkyYMAFxcXHYunUrtm7d2ijtBwQEYMSIEZg6dar6JzXJN7cvgA0bNgg2NjaCjo6O0K9fP+Hs2bNilyRpUVFRAoBai5+fn9ilSVZd9xOAEBkZKXZpkjZ9+nTB1tZW0NHREUxMTIQhQ4YIv/zyi9hltUgctuTZTZw4UbCwsBB0dHSEjh07ChMnThRSUlLELqtF+PHHH4WePXsKurq6gpOTk7B169ZGv0Z1dbXax3IuVyIiIqJmtmzZsqceIwgCli5dqlZ7DHREREREzezPHwCVl5fj+vXrKrOj1Hz1Wl1drVZ7DHREREREIkpLS0OvXr1QUFCg3JaTkwNzc3NUVVWp1Qa/ciUiIiISkVwuR2Vlpcq2iooKaGmpH9MY6IiIiIhEZGlpiYqKCpw/f1657fTp0xqNHcphS4iIiIhEpK2tjddffx2jRo2Cr68vSktLsXPnTrz99ttqt8E+dEREREQiy8nJwdy5c3H8+HHo6Ohg9OjRWL16Ndq2bavW+Qx0RERERBLHV65EREREzez27dtqHafudGJ8QkdE1IzS09PRqVMnXLx4Eb179xa7HCISiVwuhyAIkMlkqCuK1WxXdxw6fuVKRJI2bdo0jBkzRrnu6emJoKAg0epJS0vDP/7xD1haWkJPTw9WVlbw8fHB9evXAQDW1tbIzMzk/KREhGPHjuHixYtITEzETz/9hDZt2iAxMRGJiYk4fvy4Rm3xlSsRUSOpqKjAsGHD4OjoiAMHDsDCwgJ3797FoUOH8OjRIwCP/1Vubm4ubqFE9Fzo0aMHzMzMAAD6+vqQyWTK2SKys7M1aotP6IioxZg2bRpiYmKwbt06yGQyyGQypKenAwCuXLmCUaNGQV9fH2ZmZpgyZQpyc3OV53p6emLu3LkICgpC+/btYWZmhm3btqG4uBj+/v5QKBSwt7fHoUOH6r1+UlISUlNTsWnTJri6usLW1hbu7u5Yvnw5XF1dATx+5SqTyZCYmKisuabWPy/R0dEAgLKyMixcuBAdO3ZE27Zt0b9/f+U+IqIaDHRE1GKsW7cObm5umDlzJjIzM5GZmQlra2s8evQIgwcPhouLCxISEnD48GE8ePAAEyZMUDn/q6++grGxMeLi4jB37lzMmjUL48ePx4ABA3DhwgUMHz4cU6ZMwR9//FHn9U1MTKClpYV9+/apPV3PunXrlLVmZmYiMDAQpqamcHJyAgDMmTMHsbGx2L17N3777TeMHz8eI0eOxM2bN5/tZhGRqBr9EwaBiEjC/Pz8BB8fH+W6h4eHEBgYqHLMp59+KgwfPlxlW0ZGhgBASE5OVp43cOBA5f7Kykqhbdu2wpQpU5TbMjMzBQBCbGxsvfWEhYUJbdq0ERQKheDl5SV88sknQmpqqnJ/WlqaAEC4ePFirXP3798v6OnpCadOnRIEQRBu374tyOVy4d69eyrHDRkyRAgODq63BiJ6/mlpaQlZWVnK9dTUVEGhUCjXHzx4IGhpaanfXuPGQyKi58+lS5cQFRUFfX195VLzBCw1NVV5XE3fFeBxXzcjIyO89NJLym01fV2e1LclICAAWVlZ2LlzJ9zc3PDtt9+iR48eOHr06BNrvHjxIqZMmYKwsDC4u7sDAC5fvoyqqio4ODio1B4TE6NSNxFJz65du2BoaKhc79y5MwoKCpTrRkZGiI2NVbs9fhRBRC1eUVERvL298dlnn9XaZ2Fhofy5VatWKvtkMpnKNplMBgBPHUZAoVDA29sb3t7eWL58OUaMGIHly5dj2LBhdR6flZWF0aNH46233sKMGTNU6pbL5Th//jzkcrnKOfr6+k+sgYieb3/t8vFXcrkc/fr1U7s9BjoialF0dHRq9V/r06cP9u/fDzs7O2hrN++vPZlMBicnJ5w5c6bO/aWlpfDx8YGTkxPWrFmjss/FxQVVVVXIzs7Gq6++2hzlEpFE8ZUrEbUodnZ2OHfuHNLT05Gbm4vq6moEBATg4cOH8PX1RXx8PFJTU3HkyBH4+/ur/fGCOhITE+Hj44N9+/bh6tWrSElJQUREBLZv3w4fH586z3nnnXeQkZGB9evXIycnB1lZWcjKykJ5eTkcHBwwadIkTJ06FQcOHEBaWhri4uIQGhqKn3/+udHqJiLp4xM6ImpRFi5cCD8/P3Tv3h0lJSVIS0uDnZ0dTp8+jQ8++ADDhw9HWVkZbG1tMXLkSGhpNd6/a62srGBnZ4dly5YphyepWZ8/f36d58TExCAzMxPdu3dX2R4VFQVPT09ERkZi+fLleO+993Dv3j0YGxvD1dUVr7/+eqPVTUTSx6m/iIiIiCSOr1yJiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJI6BjoiIiEjiGOiIiIiIJE5b7AKIiIiIXjT+/v5qHRcZGanWcTJBEIRnKYiIiIiINDN27Fjlz8XFxThx4gS8vb2V28rKynDo0CFUV1er1R4DHREREZGI0tLS4OzsjMLCQuW2nJwcmJubo6qqSq022IeOiIiISEStWrVCRUWFyrbS0lJoa6vfM46BjoiIiEhElpaWEAQBx44dU2773//+BxsbG7Xb4EcRRERERCLS0tLCpEmT4O3tjREjRqCkpATHjh3D0qVL1W6DfeiIiIiIRFZSUoJly5bh+PHj0NHRwejRo7Fo0SJoaan3MpWBjoiIiEji+MqViIiIqJnFxMSodZyHh4dax/EJHREREVEzk8vlEAQBMpms3mMEQVB7HDo+oSMiIiJqZnl5eY3aHp/QNZAgCCgsLIRCoXhiuiYiIiJqanxC10CFhYUwMDBAfn4+2rVrJ3Y5REREJCHsQ/ecKCgogIGBAS5evAiFQiF2OURP1a5dO5iYmIhdBhERoe4+dHWtcy7XJlYT6EaOHIlWrVqJXQ7RU+nqtMKmzeEMdUREzwG5XI7r16/DzMwMAJCeno6BAwciIyMDMpkMOTk5cHBwUHsuV75yfUZv9r6HzsYVTz+Q1PKgUBdfX7DB1D53YKYoE7ucFiOrUA//uWCNgoICBjoioudEu3btlN229PX1IQgCDAwMADyey1WTZ24NCnQZGRkICQnB4cOHkZubCwsLC4wZMwYff/wxjIyMAACenp7K98O6urqwsbGBv78/Fi9eXOsjgtjYWAwcOBAjR47Ezz//rLIvPT0dnTp1gomJCVJTU1Veb/bu3RtjxoxRmRojJSUFK1euxLFjx/DgwQMYGxvDyckJ06dPx8SJE5UT3db3IcOuXbvw5ptvqn0vOrQug7VhudrHk3rMFGWwNiwVuwwiamZlZWW4e/curKysoKurK3Y5RJKh3nwSf3Lr1i307dsXN2/exK5du5CSkoLw8HAcP34cbm5uePjwofLYmTNnIjMzE8nJyQgODsbHH3+M8PDwWm1GRERg7ty5OHnyJO7fv1/ndQsLC7F69eon1hYXF4c+ffrg2rVr2LhxI65cuYLo6Gi89dZb2Lx5M5KSklSOj4yMRGZmpsoyZswYje5HXomORscTEVH97t69i/nz5+Pu3btil0LUpBq7x5vGT+gCAgKgo6ODX375Ba1btwYA2NjYwMXFBV26dMGSJUuwefNmAECbNm1gbm4OAPD390dYWBiOHj2KWbNmKdsrKirCnj17kJCQgKysLOzYsQMffvhhrevOnTsXa9asQUBAAExNTWvtFwQB06ZNg4ODA06fPq0y91nXrl3h6+tb6+YZGhoq6yMiIiJqLn99U9iqVSvY2dk98Zgn0SjQPXz4EEeOHMGKFSuUYa6Gubk5Jk2ahD179mDTpk0q+wRBwKlTp3D9+nV07dpVZd/evXvh5OQER0dHTJ48GUFBQQgODq71l/D19cXRo0fxySefICwsrFZtiYmJuHbtGnbt2lXvRLbPMl5cWVkZysr+r09XQUFBg9siEktGRobYJRA9Ef8bpRdFbGysspsaAFhbW+Py5cvKdVNTU2RmZqrdnkaB7ubNmxAEAd26datzf7du3ZCXl4ecnBwAwKZNm/Dll1+ivLwcFRUV0NPTw7x581TOiYiIwOTJkwEAI0eORH5+PmJiYuDp6alynEwmw6pVq+Dt7Y358+ejS5cuKvtv3LgBAHB0dFRuy87ORufOnZXr//rXvzB79mzluq+vL+RyuUo7V69ehY2NTa2/W2hoKJYtW1bn35tIKtasWSN2CUREBKBfv35PPaauN5L1adBHEeq+9500aRKWLFmCvLw8hISEYMCAARgwYIByf3JyMuLi4nDw4MHHxWhrY+LEiYiIiKgV6ABgxIgRGDhwID766CN88803T72+kZEREhMTATz+SKO8XPXjhbVr12Lo0KEq2ywtLetsKzg4GAsWLFCuFxQUwNra+qk1ED1PFixYwP9u6bmWkZHBf3gQNYBGgc7e3h4ymQzXrl3DG2+8UWv/tWvX0L59e+WwCAYGBrC3twfw+NWqvb09XF1dlSEqIiIClZWVKiFKEATo6uoiLCxM+enun61atQpubm5YtGiRyvaaV7nJyclwcXEB8HiMl5rr13zd+mfm5ubK/U+jq6vLL65I8qytrWs93SYiIunT6CtXIyMjDBs2DJs2bUJJSYnKvqysLOzcuRMTJ06ss6+avr4+AgMDsXDhQgiCgMrKSnz99df4/PPPkZiYqFwuXboES0tL7Nq1q84a+vXrh7Fjx2Lx4sUq211cXODk5ITVq1erPaoyERERUUug8bAlYWFhKCsrw4gRI3Dy5ElkZGTg8OHDGDZsGDp27IgVK1bUe+4777yDGzduYP/+/fjpp5+Ql5eHGTNmoGfPnirLuHHjEBERUW87K1aswIkTJ5CcnKzcJpPJEBkZieTkZLi7u+OHH37AzZs3cfXqVYSHhyMnJ6dWf7lHjx4hKytLZSkuLtbofrRvzTHoiIgai5WVFdauXQsrKyuxSyES1R9//KFR332NA13Xrl2RkJCAzp07Y8KECejSpQvefvtteHl5ITY2Fh06dKj33A4dOmDq1KlYunQpIiIiMHTo0Dpfq44bNw4JCQn47bff6mzHwcEB06dPR2mp6sCzrq6uOH/+PBwdHREQEIDu3btjwIAB2LVrF9auXasyXArweCgVCwsLlWXDhg0a3Y9Wcs6cRkTUWHR1ddGlSxd2caEXXlFRkUaBjnO5NlDNXK47Fr/Eqb8aEaf+aho1U3+tXbuWfeiIiCQgOzsbFhYWnMu1uexO7IhWrVqJXUaL8/WF2kPH0LPR1WmlnDOQiIief5o8c+MTugaqeUJ38eJFlflliZ5X7dq1U36BTkRE4urcufMTA1tVVRXu3r2r9oeefEL3jDp37synHkRERKSRoKCgJ+4vKirCP//5T7Xb4xO6Bqp5Qpefn89AR8+9W7duYdu2bZg5c6bK7ClERPR8ys7Ohrm5udpP6DT+ypWIpOfOnTtISkrCnTt3xC6FiIiaQJMHuvDwcCgUClRWViq3FRUVoVWrVrWm94qOjoZMJkNqairs7OzwxRdf1Gpv6dKl6N27d53rdnZ2kMlk9S7Tpk0DgHr37969u5H/9kTPh5qBwP86IDgRET2/6pqooT5N3ofOy8sLRUVFSEhIgKurKwDg119/hbm5Oc6dO4fS0lLo6ekBAKKiomBjY9PgYRXi4+OVn/eeOXMG48aNQ3JysvKVaOvWrZXHRkZGYuTIkSrnGxoaNui6RM+79PR0lT+JiOj5Vl5ejsGDB6t9fJM/oXN0dISFhQWio6OV26Kjo+Hj44NOnTrh7NmzKtu9vLwafC0TExOYm5vD3NxcOcCxqampctufBzE2NDRUbq9ZaoIlERERkVi+/vprODs715rh6kmapQ+dl5cXoqKilOtRUVHw9PSEh4eHcntJSQnOnTv3TIGuKZWVlaGgoEBlISIiImosOTk5GDt2LObMmYPPPvsMhw8fVvvcZhm2xMvLC0FBQaisrERJSQkuXrwIDw8PVFRUIDw8HAAQGxuLsrIylUD3wQcf1Ppkt7y8HN27d3/mmnx9fWsl36tXr8LGpu4BbUNDQzWagoOIiIioPn/NFJWVldiyZQt69uyJy5cvw9bWVqP2miXQeXp6ori4GPHx8cjLy4ODgwNMTEzg4eEBf39/lJaWIjo6Gp07d1YJVIsWLVJ+yFBj/fr1OHny5DPXtHbtWgwdOlRlm6WlZb3HBwcHY8GCBcr1goICWFtbP3MdRERE9OL5/vvvVdYrKyuRl5eHsWPHahzmgGYKdPb29rCyskJUVBTy8vLg4eEB4HGAsra2xpkzZxAVFVWr85+xsTHs7e1VttX0jXtW5ubmtdp+El1dXU4WTURERI3iwoULtbb9+OOPmDlzJg4cOICIiAh06tRJ7faabRw6Ly8vREdHIzo6WmW4kkGDBuHQoUOIi4t7bvvPERERETU1b29vJCUlwcjICM7Ozti0aZPa5zZroDt16hQSExOVT+gAwMPDA1u2bEF5eXmzBrpHjx4hKytLZSkuLm626xM1Jzs7O5U/iYjo+WRkZIRvv/0WW7ZswZIlS9Q+r1kDXUlJCezt7WFmZqbc7uHhgcLCQuXwJs3F398fFhYWKsuGDRua7fpEzalmDMY/j8VIRETPr3/84x9ISkpS+3jO5dpAnMuVpIRzuRIRPV9iYmLUOu7PbzWfhIGugfLz82FoaIiMjAwGOiIioheYQqHQaJouAJDL5RAEQXnen3+uIQgCqqur1WqvWb5ybYl+//13AODQJURERC+47OxsmJiYaHROXl6e8uf09HQMHDgQd+/eVW7LycmBg4OD2u0x0DVQzfApd+7cUZlSjJ5Nzfh+fPLZuHhfmwbva+PjPW0avK9No+a+6ujoaHzun/93UCgUqK6uVtlWUlICTV6iMtA1kJbW4+9JDAwM+H+OJtCuXTve1ybA+9o0eF8bH+9p0+B9bRqavm79K1NTU5SUlCAzM1P5gejNmzdhamqqdhsMdEREREQiatu2LXr37o2///3vWLhwIUpLS/HJJ59g4MCBarfRbMOWEBEREVHdwsPDkZGRgb///e+YPHkytLW18e9//1vt8/mEroF0dXUREhLC6cAaGe9r0+B9bRq8r42P97Rp8L42jca8r6+88gpu3bqF5ORk6OjowN7eXqNXuRy2hIiIiEji+ISOiIiIqJl16tTpqccIgoD09HS12uMTOiIiIqJmJpfL8cknn0ChUAAAcnNz8e9//xufffYZAKCoqAj//Oc/1R5YmIGOiIiIqJnJ5XLcv39fOb/9rVu30KtXLxQWFgJ4PFixubm52oGOX7kSERERSRwDXQNt3LgRdnZ20NPTQ//+/REXFyd2SZJ28uRJeHt7w9LSEjKZDN99953YJUleaGgoXnnlFSgUCpiammLMmDFITk4WuyzJ27x5M5ydnZUDtLq5ueHQoUNil9XirFq1CjKZDEFBQWKXImlLly6FTCZTWZycnMQuq0W4d+8eJk+eDCMjI7Ru3RovvfQSEhISRKuHga4B9uzZgwULFiAkJAQXLlxAr169MGLECGRnZ4tdmmQVFxejV69e2Lhxo9iltBgxMTEICAjA2bNncfToUVRUVGD48OEoLi4WuzRJs7KywqpVq3D+/HkkJCRg8ODB8PHxQVJSktiltRjx8fHYsmULnJ2dxS6lRejRowcyMzOVy6lTp8QuSfLy8vLg7u6OVq1a4dChQ7h69So+//xztG/f/pna/eswJRrNQCGQxvr16ycEBAQo16uqqgRLS0shNDRUxKpaDgDCwYMHxS6jxcnOzhYACDExMWKX0uK0b99e+PLLL8Uuo0UoLCwUunbtKhw9elTw8PAQAgMDxS5J0kJCQoRevXqJXUaL88EHHwgDBw58pjZmzZolFBQUKNdLS0uFU6dOKdf/+OMP4bPPPlO7PT6h01B5eTnOnz+PoUOHKrdpaWlh6NChiI2NFbEyoifLz88HAHTo0EHkSlqOqqoq7N69G8XFxXBzcxO7nBYhICAAr732msrvWHo2N2/ehKWlJTp37oxJkybhzp07YpckeT/88AP69u2L8ePHw9TUFC4uLti2bZtGbWzatEn5hSvweJBid3d35Xrr1q3x/vvvq90eA52GcnNzUVVVpfwqpYaZmRmysrJEqoroyaqrqxEUFAR3d3f07NlT7HIk7/Lly9DX14euri7effddHDx4EN27dxe7LMnbvXs3Lly4gNDQULFLaTH69++PHTt24PDhw9i8eTPS0tLw6quvKr+kpIa5desWNm/ejK5du+LIkSOYNWsW5s2bh6+++kq0mjiwMNELICAgAFeuXGHfmUbi6OiIxMRE5OfnY9++ffDz80NMTAxD3TPIyMhAYGAgjh49Cj09PbHLaTFGjRql/NnZ2Rn9+/eHra0t9u7dixkzZohYmbRVV1ejb9++WLlyJQDAxcUFV65cQXh4OPz8/ESpiU/oNGRsbAy5XI4HDx6obH/w4AHMzc1FqoqofnPmzMFPP/2EqKgoWFlZiV1Oi1Azz+LLL7+M0NBQ9OrVC+vWrRO7LEk7f/48srOz0adPH2hra0NbWxsxMTFYv349tLW1UVVVJXaJLYKhoSEcHByQkpIidimSZmFhUesfcN26dRP1dTYDnYZ0dHTw8ssv4/jx48pt1dXVOH78OPvQ0HNFEATMmTMHBw8exIkTJ9SaZoYaprq6GmVlZWKXIWlDhgzB5cuXkZiYqFz69u2LSZMmITExEXK5XOwSW4SioiKkpqbCwsJC7FIkzd3dvdYwUDdu3ICtra1IFfGVa4MsWLAAfn5+6Nu3L/r164cvvvgCxcXF8Pf3F7s0ySoqKlL5F2NaWhoSExPRoUMH2NjYiFiZdAUEBOCbb77B999/D4VCoezjaWBggNatW4tcnXQFBwdj1KhRsLGxQWFhIb755htER0fjyJEjYpcmaQqFolb/zrZt28LIyIj9Pp/BwoUL4e3tDVtbW9y/fx8hISGQy+Xw9fUVuzRJmz9/PgYMGICVK1diwoQJiIuLw9atW7F161bxinqmb25fYBs2bBBsbGwEHR0doV+/fsLZs2fFLknSoqKiBAC1Fj8/P7FLk6y67icAITIyUuzSJG369OmCra2toKOjI5iYmAhDhgwRfvnlF7HLapE4bMmzmzhxomBhYSHo6OgIHTt2FCZOnCikpKSIXVaL8OOPPwo9e/YUdHV1BScnJ2Hr1q2i1sO5XImIiIgkjn3oiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IqBmlp6dDJpMhMTFR7FKIqAVhoCMiSZs2bRrGjBmjXPf09ERQUJBo9aSlpeEf//gHLC0toaenBysrK/j4+OD69esAAGtra2RmZnI6KyJqVJzLlYiokVRUVGDYsGFwdHTEgQMHYGFhgbt37+LQoUN49OgRAEAul8Pc3FzcQomoxeETOiJqMaZNm4aYmBisW7cOMpkMMpkM6enpAIArV65g1KhR0NfXh5mZGaZMmYLc3FzluZ6enpg7dy6CgoLQvn17mJmZYdu2bSguLoa/vz8UCgXs7e1x6NCheq+flJSE1NRUbNq0Ca6urrC1tYW7uzuWL18OV1dXALVfuU6bNk1Z65+X6OhoAEBZWRkWLlyIjh07om3btujfv79yHxFRDQY6Imox1q1bBzc3N8ycOROZmZnIzMyEtbU1Hj16hMGDB8PFxQUJCQk4fPgwHjx4gAkTJqic/9VXX8HY2BhxcXGYO3cuZs2ahfHjx2PAgAG4cOEChg8fjilTpuCPP/6o8/omJibQ0tLCvn37UFVVpXbNNbVmZmYiMDAQpqamcHJyAgDMmTMHsbGx2L17N3777TeMHz8eI0eOxM2bN5/tZhFRyyIQEUmYn5+f4OPjo1z38PAQAgMDVY759NNPheHDh6tsy8jIEAAIycnJyvMGDhyo3F9ZWSm0bdtWmDJlinJbZmamAECIjY2tt56wsDChTZs2gkKhELy8vIRPPvlESE1NVe5PS0sTAAgXL16sde7+/fsFPT094dSpU4IgCMLt27cFuVwu3Lt3T+W4IUOGCMHBwfXWQEQvHj6hI6IW79KlS4iKioK+vr5yqXkClpqaqjzO2dlZ+bNcLoeRkRFeeukl5TYzMzMAQHZ2dr3XCggIQFZWFnbu3Ak3Nzd8++236NGjB44ePfrEGi9evIgpU6YgLCwM7u7uAIDLly+jqqoKDg4OKrXHxMSo1E1ExI8iiKjFKyoqgre3Nz777LNa+ywsLJQ/t2rVSmWfTCZT2SaTyQAA1dXVT7yeQqGAt7c3vL29sXz5cowYMQLLly/HsGHD6jw+KysLo0ePxltvvYUZM2ao1C2Xy3H+/HnI5XKVc/T19Z9YAxG9WBjoiKhF0dHRqdV/rU+fPti/fz/s7Oygrd28v/ZkMhmcnJxw5syZOveXlpbCx8cHTk5OWLNmjco+FxcXVFVVITs7G6+++mpzlEtEEsVXrkTUotjZ2eHcuXNIT09Hbm4uqqurERAQgIcPH8LX1xfx8fFITU3FkSNH4O/vr/bHC+pITEyEj48P9u3bh6tXryIlJQURERHYvn07fHx86jznnXfeQUZGBtavX4+cnBxkZWUhKysL5eXlcHBwwKRJkzB16lQcOHAAaWlpiIuLQ2hoKH7++edGq5uIpI9P6IioRVm4cCH8/PzQvXt3lJSUIC0tDXZ2djh9+jQ++OADDB8+HGVlZbC1tcXIkSOhpdV4/661srKCnZ0dli1bphyepGZ9/vz5dZ4TExODzMxMdO/eXWV7VFQUPD09ERkZieXLl+O9997DvXv3YGxsDFdXV7z++uuNVjcRSZ9MEARB7CKIiIiIqOH4ypWIiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCSOgY6IiIhI4hjoiIiIiCROW+wCiIiIiF40/v7+ah0XGRmp1nEyQRCEZymIiIiIiDQjl8sxcuRI6OrqAgCKi4tx4sQJeHt7AwDKyspw6NAhVFdXq9UeAx0RERFRM5PL5bh//z7MzMwAAGlpaXB2dkZhYSEAICcnB2ZmZmoHOvahIyIiIhLZX5+vafq8jYGOiIiIqJkpFArk5eUp1/Py8lBcXIyioiIAQFZWFjp06KB2ewx0RERERM3MyckJGzZsQHV1Naqrq7Fp0yZYWlpi4cKFOH36NJYsWYJXXnlF7fbYh46IiIiomX333Xf4+9//jrZt26K6uhpt27bF4cOH8eabb+LmzZuwtrbGjz/+iJdeekmt9hjoiIiIiERw8uRJ/Pjjj2jdujVmzpwJa2trAMDvv/8OIyMjjdpioCMiIiKSOPahIyIiIpI4zhRBRERE1MzkcrlaQ5OoOw4dAx0RERFRMzt48GCjtsc+dEREREQSxyd0RERERCLJyMjAvn37cPPmTQBA165d8fe//135xau6+ISOiIiISARhYWF47733UFlZCQMDAwiCgIKCAmhra2Pt2rWYPXu22m3xK1ciIiKiZnbixAkEBQVhzpw5yMzMxMOHD5GXl4fMzEzMmzcPc+fORVRUlNrt8QkdERERUTN7/fXXYWxsjB07dtS5f/r06cjJycGPP/6oVnt8QkdERETUzM6dO4dp06bVu3/q1Kk4d+6c2u0x0BERERE1s4KCAnTq1Em5/scff+DAgQPK9S5duqCwsFDt9hjoiIiIiJqZkZERHj58qFzPysqCn5+fcj0/Px9WVlZqt8dhS4iIiIiamZubG/7zn/+gffv2kMlkuHv3rsr+EydOoG/fvmq3x48iiIiIiJrZsWPHMGLECOX0XzKZDG3atFG+Zn3llVewZs0avPrqq2q1x0BHREREJIKkpCRUVVUp1+VyOXr06NGgthjoiIiIiCSOH0UQERERSRwDHREREZHEMdARERERSRwDHREREZHEMdARERERSRwHFiYiIiJqZp07d8bTBhoRBAHp6elqtcdAR0RERNTMgoKC6t334MED7Ny5E3fu3FG7PY5DR0RERCSyqqoq/Pzzz4iMjMSRI0fg4eEBf39/TJgwQa3zGeiIiIiIRHL9+nVs374d//3vf9G2bVv4+/vDz88PHTt21KgdvnIlIiIiEkFeXh569OiBQYMGYffu3Rg0aFCD2+JXrkREREQiaNOmDd58803ExcUhJCQEX3/9NUpKShrUFl+5NpAgCCgsLIRCoYBMJhO7HCIiIpKogoIC7Ny5ExEREUhJScHEiRMxffp09O/fX+02GOgaqKCgAAYGBsjPz0e7du3ELoeIRJKTk4OCggKxy2hR2rVrBxMTE7HLIBLFb7/9puxTZ2ZmhqSkJLXOYx86IqIGysnJwexZ76KsvELsUloUuZYW/vXvf6Nr165il0LUZDp06FDvOHQymQyVlZW4du2a2u0x0BERNVBBQQHKyiswpU8GzBWlYpfTIiQ9UOB/181x7949Bjpq0datW/fUgYU10aBAl5GRgZCQEBw+fBi5ubmwsLDAmDFj8PHHH8PIyAgA4OnpiZiYGACArq4ubGxs4O/vj8WLF9fqcxYbG4uBAwdi5MiR+Pnnn1X2paeno1OnTjAxMUFqaioUCoVyX+/evTFmzBgsXbpUuS0lJQUrV67EsWPH8ODBAxgbG8PJyQnTp0/HxIkToa39+K9cX7+3Xbt24c0332zIbSGiF5S5ohTWhgx0jeFBoa7YJRA1izfffBOtWrVqtPY0/sr11q1b6Nu3L27evIldu3YhJSUF4eHhOH78ONzc3PDw4UPlsTNnzkRmZiaSk5MRHByMjz/+GOHh4bXajIiIwNy5c3Hy5Encv3+/zusWFhZi9erVT6wtLi4Offr0wbVr17Bx40ZcuXIF0dHReOutt7B58+Za76EjIyORmZmpsowZM0aj+/Huu+/i2LFjGp1DdTt27BimTZuG8ePHY9q0abyv9NwrLy8HAFRU8cMoer6VlZUhNTUVZWVlYpdC/1/Hjh0RFBSEy5cvN0p7Gge6gIAA6Ojo4JdffoGHhwdsbGwwatQoHDt2DPfu3cOSJUuUx7Zp0wbm5uawtbWFv78/nJ2dcfToUZX2ioqKsGfPHsyaNQuvvfYaduzYUed1586dizVr1iA7O7vO/YIgYNq0aXBwcMDp06fh7e2Nrl27omvXrvD19cWpU6fg7Oysco6hoSHMzc1VFj09PY3uR15eHtavX4/g4GCNziNVixcvxvr16/Hw4UNUVFTg4cOHvK/03Hvw4AEA4OEfOiJXQvRkd+/exfz583H37l2xS6H/b/HixYiLi4OLiwv69++PLVu2oLCwsMHtaRToHj58iCNHjmD27Nlo3bq1yj5zc3NMmjQJe/bsqfVOWBAE/Prrr7h+/Tp0dFR/8e3duxdOTk5wdHTE5MmTsX379jrfKfv6+sLe3h6ffPJJnbUlJibi2rVrWLhwIbS06v5rNcXwIps2bUKbNm2QlJSE48ePN3r7L4Jjx47h6tWraNOmDbZv347vvvsO27dv530lIqIWa8GCBThz5gxiYmJw/vx5bNq0Cebm5vDz81N2WdOERn3obt68CUEQ0K1btzr3d+vWDXl5ecjJyQHwOOx8+eWXKC8vR0VFBfT09DBv3jyVcyIiIjB58mQAwMiRI5Gfn4+YmBh4enqqHCeTybBq1Sp4e3tj/vz56NKli8r+GzduAAAcHR2V27Kzs9G5c2fl+r/+9S/Mnj1bue7r6wu5XK7SztWrV2FjY1Pr71ZWVqbyqLpmmAIjIyOEhYVh+vTp+M9//oMhQ4bUeW+ofv/9738BPP7vpUOHDgAAY2Nj3leiF9iDBw+QmpoqdhktRkZGhtglUD3at28PmUyGS5cu4cqVK/jPf/6DKVOmQE9PD/7+/mq/qWrQRxHqfpUxadIkLFmyBHl5eQgJCcGAAQMwYMAA5f7k5GTExcXh4MGDj4vR1sbEiRMRERFRK9ABwIgRIzBw4EB89NFH+Oabb556fSMjIyQmJgJ4/JFGTX+XGmvXrsXQoUNVtllaWtbZVmhoKJYtW1bnPmNjY2hpaaG4uPipNVFtxcXF0NLSUoa5GryvRC+unTt3YufOnWKXQdSsevbsic8++wwrV67Exx9/jI8++qhpAp29vT1kMhmuXbuGN954o9b+a9euoX379soBIQ0MDGBvbw/g8atVe3t7uLq6KkNUREQEKisrVUKUIAjQ1dVFWFgYDAwMal1j1apVcHNzw6JFi1S213zenpycDBcXFwCAXC5XXr/m69Y/Mzc3V+5/muDgYCxYsEC5XlBQAGtrawBAbm4uqqur0bZtW7XaIlVt27bFw4cPkZubC2NjY+V23leiF9ekSZPQt29fsctoMTIyMrBmzRqxy6CnuHTpEv773/9i165dMDAwwGeffab2uRoFOiMjIwwbNgybNm3C/PnzVfrRZWVlYefOnZg6dWqdfdX09fURGBiIhQsX4uLFi6iqqsLXX3+Nzz//HMOHD1c5dsyYMdi1axfefffdWu3069cPY8eOxeLFi1W2u7i4wMnJCatXr8aECRPq7UfXULq6utDVrf05/e+//65Mz1OmTGnUa74oJk+ejPXr12POnDkICwuDsbExcnNzMWfOHAC8r0QvIjMzs1pda4haot9//x2CIOCll17CnTt3MH78eOzbtw+urq4ataPxK9ewsDAMGDAAI0aMwPLly9GpUyckJSVh0aJF6NixI1asWFHvue+88w4+/fRT7N+/H9ra2sjLy8OMGTNqPYkbN24cIiIi6gx0ALBixQr06NFD5ambTCZDZGQkhg0bBnd3dwQHB6Nbt26oqKjAyZMnkZOTU6u/3KNHj5CVlaWyTaFQaPREaPbs2WjVqhV69OjBfl4NNHToUBw/fhxJSUmYPn06tLS0UF1dDQC8r0RE1CL9+9//xv79+5GQkAA3NzfleLlt2rRpUHsaP8bq2rUrEhIS0LlzZ0yYMAFdunTB22+/DS8vL8TGxtbqB/VnHTp0wNSpU7F06VJERERg6NChdb5WHTduHBISEvDbb7/V2Y6DgwOmT5+O0lLVgTxdXV1x/vx5ODo6IiAgAN27d8eAAQOwa9curF27FrNmzVI53t/fHxYWFirLhg0bNLof7du3R2BgIEJDQzU6j1SFhoYiMDAQHTp0QKtWrdChQwfeV3rumZmZAQA6tCl/ypFE4rKyssLatWthZWUldin0/61ZswaDBg3C1atX8euvv8Lf37/BYQ4AZEJjzjvxAikoKICBgQHy8/PRrl07scshIhGkpqZi/vz5nPqrEdVM/bVgwYI6P44jaimqqqqUbw7z8vJw8+ZNyGQy2Nvbo3379hq3x7lciYgaqF27dtDVaYX/XLAWu5QWRa6lhY4dO4pdBlGTksvlSEtLQ0BAAI4cOaIcQUQmk2HEiBHYvHkzbG1t1W6PT+gaiE/oiAgAcnJylONSUuNo166dcrQEopbqwYMH6NOnD+RyOQICAuDk5ATg8WgdYWFhqKqqwoULF5RdO56Gga6BGOiICGCgI+lgUH6+zJs3D1FRUYiLi6s1+1ZpaSleeeUVeHp6qt23n4GugRjoiCgnJwezZ89CWRk/iqDnn1yuhX/969/KcVtJXJ07d8bq1asxduzYOvd/9913eO+999SeMYV96IiIGqigoABlZeV4e/JwWJrW/4U/kdh+u5aOA4fO4t69ewx0z4nMzEw4OzvXu79nz564d++e2u01eaALDw/HokWLkJeXpxw3rqioCO3bt4e7uzuio6OVx0ZHR8PLywspKSkYMmQIgoKCEBQUpNLe0qVL8d133ymn9Przup2dHW7fvl1vLX5+ftixY0edAx8DwK5du/Dmm28+09+XiF48lqYdYGdtKnYZRPW6/+Ch2CXQX5iYmKCysrLe/RUVFWr3nwOaIdB5eXmhqKgICQkJylGPf/31V5ibm+PcuXMoLS2Fnp4eACAqKgo2NjYNHh08Pj4eVVVVAIAzZ85g3LhxSE5OVr4S/fM76sjISIwcOVLlfENDwwZdlxpPWVkZ7t69Cysrqzpn5iAiIs1VVlb9/z/rDxDUvF5++WX88ssvyo8h/urw4cPo1auX2u017vxYdXB0dISFhUWtJ3E+Pj7o1KkTzp49q7Ldy8urwdcyMTGBubk5zM3NlQMcm5qaKrf9eRBjQ0ND5faapSZYknju3r2L+fPn4+7du2KXQkTUYjwqKAbweJopej7Mnz8fW7ZsQX5+fq19BQUF2LZtW623lE/S5IEOePyULioqSrkeFRUFT09PeHh4KLeXlJTg3LlzzxToiIiIiKRg0KBBSEpKqnPGrHbt2uHq1asYPHiw2u01y0cRXl5eCAoKQmVlJUpKSnDx4kV4eHigoqIC4eHhAIDY2FiUlZWpBLoPPvgA//znP1XaKi8vR/fu3Z+5Jl9f31pzu169ehU2NjZ1Hl9WVoaysjLlOocpaFoZGRlil0D0VPzvlIieF80S6Dw9PVFcXIz4+Hjk5eXBwcEBJiYm8PDwgL+/P0pLSxEdHY3OnTurBKpFixZh2rRpKm2tX78eJ0+efOaa1q5di6FDh6pss7S0rPf40NBQLFu27JmvS+pZs2aN2CUQERE1mc6dO0OdkePS0tLUaq9ZAp29vT2srKwQFRWFvLw8eHh4AHgcoKytrXHmzBlERUXVerRobGwMe3t7lW01feOelbm5ea22nyQ4OBgLFixQrhcUFMDamtP9NJUFCxbw/tJzLyMjg//4IKIG+Wv/uOPHj+PIkSP46KOPoFAoNG6v2cah8/LyQnR0NPLy8rBo0SLl9kGDBuHQoUOIi4vDrFmzmqscjenq6vKry2ZkbW3d4K+diYiInnfz5s1T/nzs2DEEBwejXbt2iI6Oxs8//wwdHR2N2muWjyKAx4Hu1KlTSExMVD6hAwAPDw9s2bIF5eXlzfpBxKNHj5CVlaWyFBcXN9v1iYiIiI4fP47Ro0fjnXfewbVr13Dv3j28+eabqK6u1qidZg10JSUlsLe3Vxkoz8PDA4WFhcrhTZqLv78/LCwsVBZ150ujpmNlZYW1a9fCyspK7FKIiFoMw3ZtAQBGRkYiV0J/FhUVhdGjR+Ptt9/GmjVrYGRkhGPHjuHChQt46623NGqLc7k2EOdyJaLU1FTMnz+fU3/Rc69m6q8FCxbA09NT7HIIQExMDF577TXMmDED69atU9mXkpKCgQMHYvLkyVi9erVa7THQNRADHRHl5ORg9uxZKCsrF7sUoqeSy7Xwr3/9m3O5PifatWsHPz+/et8OJiYmwtPTE48ePVKrPQa6BsrPz4ehoSEyMjIY6IheYLm5uRyXkiShXbt2MDY2FruMFkmhUNQ7T3x95s6d+9SuXidPnsSgQYPUao+BroFu3brFrzCJiIgI2dnZMDExEbWGZhu2pKWpGQ/vzp07dU7bQQ1TM74fn3w2Lt7XpsH72vh4T5sG72vTqLmvmg4x0hQY6BpIS+vxB8IGBgb8P0cTaNeuHe9rE+B9bRq8r42P97Rp8L42DU1ftzaFZhu2hIiIiIiaBgMdERER0XPm999/R6dOndQ+noGugXR1dRESEsLpwBoZ72vT4H1tGryvjY/3tGnwvjaNpryvVVVVuH37ttrH8ytXIiIioudMdnY2zM3N1Z4CjB9FEBERETWzmJiYJ+5/+PChRu3xCR0RERFRM5PL5RAE4YlfyAqCwCd0RERERM+rvLy8J+7PycnRaJo2fhTRQBs3boSdnR309PTQv39/xMXFiV2SpJ08eRLe3t6wtLSETCbDd999J3ZJkhcaGopXXnkFCoUCpqamGDNmDJKTk8UuS/I2b94MZ2dn5Xhebm5uOHTokNhltTirVq2CTCZDUFCQ2KVI2tKlSyGTyVQWJycnsctqEe7du4fJkyfDyMgIrVu3xksvvYSEhAS1z6/5HVLfolAoNKqHga4B9uzZgwULFiAkJAQXLlxAr169MGLECGRnZ4tdmmQVFxejV69e2Lhxo9iltBgxMTEICAjA2bNncfToUVRUVGD48OEoLi4WuzRJs7KywqpVq3D+/HkkJCRg8ODB8PHxQVJSktiltRjx8fHYsmULnJ2dxS6lRejRowcyMzOVy6lTp8QuSfLy8vLg7u6OVq1a4dChQ7h69So+//xztG/fvlGvo9GAxQJprF+/fkJAQIByvaqqSrC0tBRCQ0NFrKrlACAcPHhQ7DJanOzsbAGAEBMTI3YpLU779u2FL7/8UuwyWoTCwkKha9euwtGjRwUPDw8hMDBQ7JIkLSQkROjVq5fYZbQ4H3zwgTBw4MAmvUZBQYHwj3/8Q+3j+YROQ+Xl5Th//jyGDh2q3KalpYWhQ4ciNjZWxMqIniw/Px/A/81DTM+uqqoKu3fvRnFxMdzc3MQup0UICAjAa6+9pvI7lp7NzZs3YWlpic6dO2PSpEm4c+eO2CVJ3g8//IC+ffti/PjxMDU1hYuLC7Zt29ao1/jqq6806n7EjyI0lJubi6qqKpiZmalsNzMzw/Xr10WqiujJqqurERQUBHd3d/Ts2VPsciTv8uXLcHNzQ2lpKfT19XHw4EF0795d7LIkb/fu3bhw4QLi4+PFLqXF6N+/P3bs2AFHR0dkZmZi2bJlePXVV3HlyhWN+2jR/7l16xY2b96MBQsW4MMPP0R8fDzmzZsHHR0d+Pn5PVPbd+7cwfTp05GYmIiIiAi1z2OgI3oBBAQE4MqVK+w700gcHR2RmJiI/Px87Nu3D35+foiJiWGoewYZGRkIDAzE0aNHoaenJ3Y5LcaoUaOUPzs7O6N///6wtbXF3r17MWPGDBErk7bq6mr07dsXK1euBAC4uLjgypUrCA8Pf6ZA99VXXyEoKAgDBw5EUlJSrYdHT8JApyFjY2PI5XI8ePBAZfuDBw9gbm4uUlVE9ZszZw5++uknnDx5ElZWVmKX0yLo6OjA3t4eAPDyyy8jPj4e69atw5YtW0SuTLrOnz+P7Oxs9OnTR7mtqqoKJ0+eRFhYGMrKyiCXy0WssGUwNDSEg4MDUlJSxC5F0iwsLGr9A65bt27Yv3+/2m107twZwp+GAq6srERmZibCw8Px1ltvaVwTA52GdHR08PLLL+P48eMYM2YMgMdJ/fjx45gzZ464xRH9iSAImDt3Lg4ePIjo6GiNJnkmzVRXV6OsrEzsMiRtyJAhuHz5sso2f39/ODk54YMPPmCYayRFRUVITU3FlClTxC5F0tzd3WsNA3Xjxg3Y2tqq3cZfh+SprKzEhg0bEBERgYEDB2o8vAwDXQMsWLAAfn5+6Nu3L/r164cvvvgCxcXF8Pf3F7s0ySoqKlL5F2NaWhoSExPRoUMH2NjYiFiZdAUEBOCbb77B999/D4VCgaysLACAgYEBWrduLXJ10hUcHIxRo0bBxsYGhYWF+OabbxAdHY0jR46IXZqkKRSKWv0727ZtCyMjI/b7fAYLFy6Et7c3bG1tcf/+fYSEhEAul8PX11fs0iRt/vz5GDBgAFauXIkJEyYgLi4OW7duxdatW9VuY968ebW2vf322wgKCkKfPn2wbNkyLFy4UP2hS5rse9sWbsOGDYKNjY2go6Mj9OvXTzh79qzYJUlaVFSUAKDW4ufnJ3ZpklXX/QQgREZGil2apE2fPl2wtbUVdHR0BBMTE2HIkCHCL7/8InZZLRKHLXl2EydOFCwsLAQdHR2hY8eOwsSJE4WUlBSxy2oRfvzxR6Fnz56Crq6u4OTkJGzdurXR2v7pp58ECwsLwc3NTe1zOJcrERER0XMmLy8P77zzDvbu3avW8Qx0RERERBLHPnREREREzUydfveCIGDHjh1qtccndERERETNbOzYscqfi4uLceLECXh7eyu3lZWV4dChQ6iurlarPQY6IiIiIhGlpaXB2dkZhYWFym05OTkwNzdHVVWVWm1wLlciIiIiEbVq1QoVFRUq20pLS6GtrX7POAY6IiIiIhFZWlpCEAQcO3ZMue1///ufRuOw8qMIIiIiIhFpaWlh0qRJ8Pb2xogRI1BSUoJjx45h6dKlarfBPnREREREIispKcGyZctw/Phx6OjoYPTo0Vi0aBG0tNR7mcpAR0TUjNLT09GpUydcvHgRvXv3FrscImohGOiISNKmTZuGR48e4bvvvgMAeHp6onfv3vjiiy9EqSctLQ1LlixBdHQ0Hj58CGNjY7z88sv47LPP4OTkhKqqKuTk5MDY2FijDs9E1LLExMSodZyHh4dax/G3CRFRI6moqMCwYcPg6OiIAwcOwMLCAnfv3sWhQ4fw6NEjAIBcLoe5ubm4hRKR6AYPHgxBECCTyZTb6lpXdxw6fuVKRC3GtGnTEBMTg3Xr1kEmk0EmkyE9PR0AcOXKFYwaNQr6+vowMzPDlClTkJubqzzX09MTc+fORVBQENq3bw8zMzNs27YNxcXF8Pf3h0KhgL29PQ4dOlTv9ZOSkpCamopNmzbB1dUVtra2cHd3x/Lly+Hq6grg8StXmUyGxMREZc01tf55iY6OBvB4cNGFCxeiY8eOaNu2Lfr376/cR0TSlpycjLy8POTl5eHixYvQ19fHw4cPkZeXhxs3bqiEu6dhoCOiFmPdunVwc3PDzJkzkZmZiczMTFhbW+PRo0cYPHgwXFxckJCQgMOHD+PBgweYMGGCyvlfffUVjI2NERcXh7lz52LWrFkYP348BgwYgAsXLmD48OGYMmUK/vjjjzqvb2JiAi0tLezbt0/twUDXrVunrDUzMxOBgYEwNTWFk5MTAGDOnDmIjY3F7t278dtvv2H8+PEYOXIkbt68+Ww3i4hE165dO+Wir68PQRBgYGCAdu3aQaFQQKNecQIRkYT5+fkJPj4+ynUPDw8hMDBQ5ZhPP/1UGD58uMq2jIwMAYCQnJysPG/gwIHK/ZWVlULbtm2FKVOmKLdlZmYKAITY2Nh66wkLCxPatGkjKBQKwcvLS/jkk0+E1NRU5f60tDQBgHDx4sVa5+7fv1/Q09MTTp06JQiCINy+fVuQy+XCvXv3VI4bMmSIEBwcXG8NRPT809LSErKyspTrqampgr6+vnL9wYMHgkwmU7+9JgqdRETPjUuXLiEqKgr6+vrKpeYJWGpqqvI4Z2dn5c9yuRxGRkZ46aWXlNvMzMwAANnZ2fVeKyAgAFlZWdi5cyfc3Nzw7bffokePHjh69OgTa7x48SKmTJmCsLAwuLu7AwAuX76MqqoqODg4qNQeExOjUjcRSY/QyN+k8qMIImrxioqK4O3tjc8++6zWPgsLC+XPrVq1Utknk8lUttX0Z3laJ2WFQgFvb294e3tj+fLlGDFiBJYvX45hw4bVeXxWVhZGjx6Nt956CzNmzFCpWy6X4/z585DL5Srn6OvrP7EGInq+/bV/XKtWrWBnZ/fEY56EgY6IWhQdHZ1a/df69OmD/fv3w87OrtmHCpHJZHBycsKZM2fq3F9aWgofHx84OTlhzZo1KvtcXFxQVVWF7OxsvPrqq81RLhE1k9jYWBgZGSnXra2tcfnyZeW6qakpMjMz1W6Pr1yJqEWxs7PDuXPnkJ6ejtzcXFRXVyMgIAAPHz6Er68v4uPjkZqaiiNHjsDf31/tjxfUkZiYCB8fH+zbtw9Xr15FSkoKIiIisH37dvj4+NR5zjvvvIOMjAysX78eOTk5yMrKQlZWFsrLy+Hg4IBJkyZh6tSpOHDgANLS0hAXF4fQ0FD8/PPPjVY3ETW/fv36PfUfmKampmq3xyd0RNSiLFy4EH5+fujevTtKSkqQlpYGOzs7nD59Gh988AGGDx+OsrIy2NraYuTIkWpPq6MOKysr2NnZYdmyZcrhSWrW58+fX+c5MTExyMzMRPfu3VW2R0VFwdPTE5GRkVi+fDnee+893Lt3D8bGxnB1dcXrr7/eaHUTkfRxpggiIiIiieMrVyIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJY6AjIiIikjgGOiIiIiKJ0xa7ACIiIqIXlb+//1OPEQQBO3bseOIxMkEQhEaqiYiIiIg0MHbs2Hr3CYKAixcv4s6dO6iurn5iO3xCR0RERCSSAwcO1NqWm5uLnTt3Yvv27SgoKMC777771Hb4hI6IiIhIZNXV1Th8+DAiIyPx008/YeDAgZg+fTrGjh0LXV3dp57PQEdEREQkoqKiIjg5OUFHRwfTpk2Dv78/rK2tNWqDX7kSERERiUwul0Mmk0EQhKf2l6sLAx0RERGRiPT19ZGeno5NmzYhKSkJ3bt3x7Bhw7Br1y6UlZWp1QZfuRIRERE9Rx4+fIj//ve/iIyMxO3bt+Hr64uNGzc+8RwGOiIiIiKRvPHGG/Xuk8lkuHjxIm7fvs1hS4iIiIieVx06dMCTnq15eXmp1Q6f0BERERFJHJ/QEREREYlEnam/ACAyMvKJ+xnoiIiIiESSn5/fKO3wlSsRERGRxHEcOiIiIiKJ4ytXIiIiIpGo04dOEATs2LHjicfwlSsRERGRSMaOHVvvvqqqKhw7dgwlJSUch46IiIjoeXXgwIE6t3///ff48MMPoaenh5CQkKe2wz50RERERM+JX3/9FQMGDICvry9ef/113Lp1C++///5Tz2OgIyIiIhLZlStX4O3tjSFDhqBHjx5ISUnBZ599BgMDA7XOZ6BrIEEQUFBQ8MTpOoiIiIie5Pbt2/Dz80Pv3r2hra2Ny5cvY9u2bbC0tNSoHX4U0UAFBQUwMDBAfn4+2rVrJ3Y5REREJEF6enrQ0tLCvHnz4ObmVu9xPj4+T2yHga6BagJdYmIievXqJXY5REREJEHa2tpPfdsnCMJTv3LlK9dndPfuXbFLICIiIomqrKxEVVXVE5enhTmggYEuIyMD06dPh6WlJXR0dGBra4vAwED8/vvvymM8PT0hk8kgk8mgp6cHBwcHhIaG1plCY2NjIZfL8dprr9Xal56eDplMBlNTUxQWFqrs6927N5YuXaqyLSUlBdOnT4eNjQ10dXXRsWNHDBkyBDt37kRlZaXyuJra/rrs3r1bo3tRWlqq0fFE1DJs374db7zxBkaPHo033ngD27dvF7skInqBaTwO3a1bt+Dm5gYHBwfs2rULnTp1QlJSEhYtWoRDhw7h7Nmz6NChAwBg5syZ+OSTT1BWVoYTJ07g7bffhqGhIWbNmqXSZkREBObOnYuIiAjcv3+/zo6AhYWFWL16NZYtW1ZvbXFxcRg6dCh69OiBjRs3wsnJCQCQkJCAjRs3omfPniqvRyMjIzFy5EiVNgwNDTW6H7dv39boeCKSvqlTp+LRo0fK9aqqKnz33XeIjo7G119/LV5hRCQ5MTExah3n4eHxxP0aB7qAgADo6Ojgl19+QevWrQEANjY2cHFxQZcuXbBkyRJs3rwZANCmTRuYm5sDeDy1RVhYGI4ePaoS6IqKirBnzx4kJCQgKysLO3bswIcffljrunPnzsWaNWsQEBAAU1PTWvsFQcC0adPg4OCA06dPQ0vr/x4+du3aFb6+vrWeDhoaGirrIyJSx/bt2/Ho0SPIZDKsW7cOdnZ2SE9PR2BgIB49eoTIyEi1pvIhIgKAwYMHQxAEyGSyeo9p9D50Dx8+xJEjRzB79mxlmKthbm6OSZMmYc+ePbWCkyAI+PXXX3H9+nXo6Oio7Nu7dy+cnJzg6OiIyZMnY/v27XW+lvX19YW9vT0++eSTOmtLTEzEtWvXsHDhQpUw92dPullPU1ZWhoKCApWFiF48P/74IwAgLCwMdnZ2AAA7OzusW7cOAPDDDz+IVRoRSVBeXh4ePXqEvLy8epc/vxGoj0aB7ubNmxAEAd26datzf7du3ZCXl4ecnBwAwKZNm6Cvrw9dXV0MGjQI1dXVmDdvnso5ERERmDx5MgBg5MiRyM/Pr/Pxo0wmw6pVq7B161akpqbW2n/jxg0AgKOjo3JbdnY29PX1lcumTZtUzvH19VXZr6+vjzt37tT5dwsNDYWBgYFysba2ru82EVELVlVVBQC1fgfUhLua/URE6jh27Bhat26Ndu3aPXF5mgZ9FKHuSCeTJk1CYmIiTp8+jVGjRmHJkiUYMGCAcn9ycjLi4uLg6+sL4PGnuxMnTkRERESd7Y0YMQIDBw7ERx99pNb1jYyMkJiYiMTERBgaGqK8vFxl/9q1a5X7a5b6BvILDg5Gfn6+csnIyFCrBiJqWeRyOYDHH2z9Wc16zX4iInVMnDgRVlZWWLhwIa5du9bgdjQKdPb29pDJZPVe8Nq1a2jfvj1MTEwAAAYGBrC3t8crr7yCvXv3IiwsDMeOHVMeHxERgcrKSlhaWkJbWxva2trYvHkz9u/fj/z8/DqvsWrVKuzZswcXL15U2d61a1cAj0NiDblcDnt7e9jb20Nbu3Z3QXNzc+X+Jx0HALq6uhqnZSJqeby9vQEAgYGByhBX04cOAEaPHi1WaUQkQffv38fy5ctx/vx59OjRAwMGDMC2bdtQVFSkUTsaBTojIyMMGzYMmzZtQklJicq+rKws7Ny5ExMnTqyzr5q+vj4CAwOxcOFCCIKAyspKfP311/j8889VnpBdunQJlpaW2LVrV5019OvXD2PHjsXixYtVtru4uMDJyQmrV69Wa7wWIqKGmD59OgwNDSEIAubNm4fRo0dj3rx5EAQBhoaG/CCCiDRiYmKCmTNnYtOmTZDL5Rg/fjzCw8NhYWGB6dOn4/Tp02q1o/Er17CwMJSVlWHEiBE4efIkMjIycPjwYQwbNgwdO3bEihUr6j33nXfewY0bN7B//3789NNPyMvLw4wZM9CzZ0+VZdy4cfW+dgWAFStW4MSJEypP42QyGSIjI5GcnAx3d3f88MMPuHnzJq5evYrw8HDk5OTUehXy6NEjZGVlqSzFxcWa3hIiesF8/fXXeOONN5S/U+RyOd544w0OWUJEDVbTnW3+/Pk4f/484uPjYWFhgcmTJyuHYXtaAxpLT08X/Pz8BDMzM6FVq1aCtbW1MHfuXCE3N1d5jIeHhxAYGFjr3HfeeUfo0aOH8Prrrwt/+9vf6mz/3LlzAgDh0qVLQlpamgBAuHjxosoxb7/9tgBACAkJUdmenJws+Pn5CVZWVoK2trZgYGAgDBo0SNiyZYtQUVGhPA5AnUtoaKha9yA/P18AIOzbt0+t44mIiIjqk5SUJGhrayvXq6qqhMOHDwuTJ08W9PT0nno+53JtoJq5XH/66ac6Z7ggIiIiUtfVq1fRq1cvxMbG4ptvvsGuXbtgYGCA6dOnY9q0aXWOwftnGg8sTKqsrKzELoGIiIgk7Pr169i+fTuqq6vh6emJCRMmYN++fXB3d1e7DQa6Z9SpUyexSyAiIiKJ6tmzJ65evQpXV1ds3boVb775Jtq2bavcX1lZidOnTzf+1F9ERERE1DhGjhyJb7/9tt5JGx4+fAgvL6+njuDBPnQNVNOHLjExEb169RK7HCIiImqBsrOzYWFh8dRZaBo0UwT9n7t374pdAhEREbVg6jx7a/JXruHh4Vi0aBHy8vKUszAUFRWhffv2cHd3R3R0tPLY6OhoeHl5ISUlBUOGDEFQUBCCgoJU2lu6dCm+++47JCYm1lq3s7PD7du3663Fz88PO3bsqHPgYwDYtWsX3nzzTY3+fqWlpRodT0RERFTjaYOR/3Uih/o0eaDz8vJCUVEREhIS4OrqCgD49ddfYW5ujnPnzqG0tBR6enoAgKioKNjY2KBLly4NulZ8fLzykeSZM2cwbtw4JCcnK6fpat26tfLYyMhIjBw5UuV8Q0NDja/5pABJRERE9CT1TXVao6ysTK12mjzQOTo6wsLCAtHR0cpAFx0dDR8fH5w4cQJnz56Fp6encruXl1eDr1UzhywAdOjQAQBgampaZ1AzNDSEubl5g69FRERE9KwOHDjwxP05OTkwMzN7ajvN0ofOy8sLUVFRyvWoqCh4enrCw8NDub2kpATnzp17pkDXlMrKylBQUKCyEBERETUldb9dbbZAd/r0aVRWVqKwsBAXL16Eh4cHBg0apOxDFxsbi7KyMpVA98EHH0BfX19lWblyZaPU5OvrW6vtO3fu1Ht8aGgoDAwMlIu1tXWj1EFERET0JPX1/f+zZhmHztPTE8XFxYiPj0deXh4cHBxgYmICDw8P+Pv7o7S0FNHR0ejcuTNsbGyU5y1atAjTpk1TaWv9+vU4efLkM9e0du1aDB06VGWbpaVlvccHBwdjwYIFyvWCggKGOiIiImpSHTp0UHnLWZ9mCXT29vawsrJCVFQU8vLylKMdW1pawtraGmfOnEFUVBQGDx6scp6xsTHs7e1VttX0jXtW5ubmtdp+El1dXejq6jbKtYmIiIhqVFVV4ciRI0hOTq63S9egQYOe2EazzRTh5eWF6Oho5OXlYdGiRcrtgwYNwqFDhxAXF4dZs2Y1VzlEREREosvKysLw4cORnJwMKysrGBgY1DpGEASEhIQ8sZ1mDXQBAQGoqKhQmY/Mw8MDc+bMQXl5ebN+EPHo0SNkZWWpbFMoFCrzp6nD1ta2McsiIiKiF8iHH34IU1NTHD9+XGW0Dk0120wRXl5eKCkpgb29vcrntx4eHigsLFQOb9Jc/P39YWFhobJs2LBB43ZqxtAjIiIi0lRUVBQ+/fTTZwpzAOdybbCauVx/+uknvPbaa2KXQ0RERBKkr6+Py5cvo1OnTs/UTrO9cm1panKwoaEhx6QjIiJ6gSkUCrWGFqlLp06dcP78eQY6sfz+++8AgIEDB4pcCREREYkpOzu7wa9M/fz8EBgYiIKCArz88sv1TkP6tD77DHQNVDN8yp07d+r8IoUapmZ8v4yMDOUcvPTseF+bBu9r4+M9bRq8r02j5r7q6Og0uI358+cjLy8Pc+fORWlpaa2ZIWQyGQRBQHV19RPbYaBrIC2tx9+TGBgY8P8cTaBdu3a8r02A97Vp8L42Pt7TpsH72jQa+roVAORyOVasWIHly5fjzp07yM/Pb1A7DHREREREIpPJZM80FBoDHREREZFIYmJi1Druz2P41oWBroF0dXUREhLC6cAaGe9r0+B9bRq8r42P97Rp8L42jca4r4MHD4YgCCqvbetaf1ofOo5DR0RERCSSvw59lp6ejoEDByIjIwMymQw5OTlwcHBAVVXVE9vhEzoiIiIikfz1I5XWrVtDEATlCBp1fflal2ab+ouIiIiInuzs2bMoLi5Wfu16//59GBsbP/U8PqEjIiIiEllJSQk2btyIiIgIAMDs2bPh6+uLL774Aq+88spTz2cfOiIiIiKR3L17F2FhYdi2bRt69uyJvXv3YtasWfj+++8BANbW1vjpp5/Qs2fPJ7bDV64NtHHjRtjZ2UFPTw/9+/dHXFyc2CVJ2smTJ+Ht7Q1LS0vIZDJ89913YpckeaGhoXjllVegUChgamqKMWPGIDk5WeyyJG/z5s1wdnZWDtDq5uaGQ4cOiV1Wi7Nq1SrIZDIEBQWJXYqkLV26FDKZTGVxcnISu6wW4d69e5g8eTKMjIzQunVrvPTSS0hISNC4nS5duuDQoUPYvn07YmJiYGZmhgMHDuDatWu4dOkSUlJSnhrmAAa6BtmzZw8WLFiAkJAQXLhwAb169cKIESOQnZ0tdmmSVVxcjF69emHjxo1il9JixMTEICAgAGfPnsXRo0dRUVGB4cOHo7i4WOzSJM3KygqrVq3C+fPnkZCQgMGDB8PHxwdJSUlil9ZixMfHY8uWLXB2dha7lBahR48eyMzMVC6nTp0SuyTJy8vLg7u7O1q1aoVDhw7h6tWr+Pzzz9G+fXuN29q5cycuXboEHx8fle0ODg7o2bMntLXV6x3HV64N0L9/f7zyyisICwsDAFRXV8Pa2hpz587F4sWLRa5O+mQyGQ4ePIgxY8aIXUqLkpOTA1NTU8TExGDQoEFil9OidOjQAf/+978xY8YMsUuRvKKiIvTp0webNm3C8uXL0bt3b3zxxRdilyVZS5cuxXfffYfExESxS2lRFi9ejNOnT+PXX38VuxQlfhShofLycpw/fx7BwcHKbVpaWhg6dChiY2NFrIzoyWq+mOrQoYPIlbQcVVVV+Pbbb1FcXAw3Nzexy2kRAgIC8Nprr2Ho0KFYvny52OW0CDdv3oSlpSX09PTg5uaG0NBQ2NjYiF2WpP3www8YMWIExo8fj5iYGHTs2BGzZ8/GzJkzNW7L399freMiIyOfuJ+vXDWUm5uLqqoqmJmZqWw3MzNDVlaWSFURPVl1dTWCgoLg7u6uVl8MerLLly9DX18furq6ePfdd3Hw4EF0795d7LIkb/fu3bhw4QJCQ0PFLqXF6N+/P3bs2IHDhw9j8+bNSEtLw6uvvorCwkKxS5O0W7duYfPmzejatSuOHDmCWbNmYd68efjqq680buvrr79GdnY28vPzkZ+fj/v37+O///2vcj07O1utdvmEjugFEBAQgCtXrrDvTCNxdHREYmIi8vPzsW/fPvj5+SEmJoah7hlkZGQgMDAQR48ehZ6entjltBijRo1S/uzs7Iz+/fvD1tYWe/fuZReBZ1BdXY2+ffti5cqVAAAXFxdcuXIF4eHh8PPz07i97du3Kx8UpaWlwdnZGQcOHADwuLuMubn5U9vgEzoNGRsbQy6X48GDByrbHzx4oNYNJ2puc+bMwU8//YSoqChYWVmJXU6LoKOjA3t7e7z88ssIDQ1Fr169sG7dOrHLkrTz588jOzsbffr0gba2NrS1tRETE4P169dDW1v7qdMekXoMDQ3h4OCAlJQUsUuRNAsLi1r/gOvWrRvu3LnzzG3/9dMGQRA4U0RT0NHRwcsvv4zjx48rt1VXV+P48ePsQ0PPFUEQMGfOHBw8eBAnTpxAp06dxC6pxaqurkZZWZnYZUjakCFDcPnyZSQmJiqXvn37YtKkSUhMTIRcLhe7xBahqKgIqampsLCwELsUSXN3d681DNSNGzdga2srUkV85dogCxYsgJ+fH/r27Yt+/frhiy++QHFxsdodG6m2oqIilX8xpqWlITExER06dGDn3QYKCAjAN998g++//x4KhULZx9PAwACtW7cWuTrpCg4OxqhRo2BjY4PCwkJ88803iI6OxpEjR8QuTdIUCkWt/p1t27aFkZER+30+g4ULF8Lb2xu2tra4f/8+QkJCIJfL4evrK3ZpkjZ//nwMGDAAK1euxIQJExAXF4etW7di69atjdK+TCZ74nqdBGqQDRs2CDY2NoKOjo7Qr18/4ezZs2KXJGlRUVECgFqLn5+f2KVJVl33E4AQGRkpdmmSNn36dMHW1lbQ0dERTExMhCFDhgi//PKL2GW1SB4eHkJgYKDYZUjaxIkTBQsLC0FHR0fo2LGjMHHiRCElJUXsslqEH3/8UejZs6egq6srODk5CVu3bm1QO926dRNyc3OV63l5eUJoaKhy/dGjR8KoUaOe2g7HoSMiIiKSOPahIyIiIpI4BjoiIiIiiWOgIyIiIpI4BjoiIiIiiWOgIyIiIpI4BjoiIiIiiWOgIyIiIpI4BjoiIiIiiWOgIyJqRunp6ZDJZEhMTBS7FCJqQRjoiEjSpk2bhjFjxijXPT09ERQUJFo9aWlp+Mc//gFLS0vo6enBysoKPj4+uH79OgDA2toamZmZnJ+UiBqVttgFEBG1FBUVFRg2bBgcHR1x4MABWFhY4O7duzh06BAePXoEAJDL5TA3Nxe3UCJqcfiEjohajGnTpiEmJgbr1q2DTCaDTCZDeno6AODKlSsYNWoU9PX1YWZmhilTpiA3N1d5rqenJ+bOnYugoCC0b98eZmZm2LZtG4qLi+Hv7w+FQgF7e3scOnSo3usnJSUhNTUVmzZtgqurK2xtbeHu7o7ly5fD1dUVQO1XrtOmTVPW+uclOjoaAFBWVoaFCxeiY8eOaNu2Lfr376/cR0RUg4GOiFqMdevWwc3NDTNnzkRmZiYyMzNhbW2NR48eYfDgwXBxcUFCQgIOHz6MBw8eYMKECSrnf/XVVzA2NkZcXBzmzp2LWbNmYfz48RgwYAAuXLiA4cOHY8qUKfjjjz/qvL6JiQm0tLSwb98+VFVVqV1zTa2ZmZkIDAyEqakpnJycAABz5sxBbGwsdu/ejd9++w3jx4/HyJEjcfPmzWe7WUTUsghERBLm5+cn+Pj4KNc9PDyEwMBAlWM+/fRTYfjw4SrbMjIyBABCcnKy8ryBAwcq91dWVgpt27YVpkyZotyWmZkpABBiY2PrrScsLExo06aNoFAoBC8vL+GTTz4RUlNTlfvT0tIEAMLFixdrnbt//35BT09POHXqlCAIgnD79m1BLpcL9+7dUzluyJAhQnBwcL01ENGLh0/oiKjFu3TpEqKioqCvr69cap6ApaamKo9zdnZW/iyXy2FkZISXXnpJuc3MzAwAkJ2dXe+1AgICkJWVhZ07d8LNzQ3ffvstevTogaNHjz6xxosXL2LKlCkICwuDu7s7AODy5cuoqqqCg4ODSu0xMTEqdRMR8aMIImrxioqK4O3tjc8++6zWPgsLC+XPrVq1Utknk8lUtslkMgBAdXX1E6+nUCjg7e0Nb29vLF++HCNGjMDy5csxbNiwOo/PysrC6NGj8dZbb2HGjBkqdcvlcpw/fx5yuVzlHH19/SfWQEQvFgY6ImpRdHR0avVf69OnD/bv3w87Oztoazfvrz2ZTAYnJyecOXOmzv2lpaXw8fGBk5MT1qxZo7LPxcUFVVVVyM7Oxquvvtoc5RKRRPGVKxG1KHZ2djh37hzS09ORm5uL6upqBAQE4OHDh/D19UV8fDxSU1Nx5MgR+Pv7q/3xgjoSExPh4+ODffv24erVq0hJSUFERAS2b98OHx+fOs955513kJGRgfXr1yMnJwdZWVnIyspCeXk5HBwcMGnSJEydOhUHDhxAWloa4uLiEBoaip9//rnR6iYi6eMTOiJqURYuXAg/Pz90794dJSUlSEtLg52dHU6fPo0PPvgAw4cPR1lZGWxtbTFy5EhoaTXev2utrKxgZ2eHZcuWKYcnqVmfP39+nefExMQgMzMT3bt3V9keFRUFT09PREZGYvny5Xjvvfdw7949GBsbw9XVFa+//nqj1U1E0icTBEEQuwgiIiIiaji+ciUiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIoljoCMiIiKSOAY6IiIiIonTFrsAIiIiohddXl4ebt68CZlMBnt7e7Rv316j8/mEjoiIiEgkaWlp+Nvf/gZjY2O4urqif//+MDY2xt/+9jfcvn1b7XZkgiAITVgnEREREdXhwYMH6NOnD+RyOQICAuDk5AQASE5ORlhYGKqqqnDhwgWYmZk9tS0GOiIiIiIRzJs3D1FRUYiLi0Pr1q1V9pWWluKVV16Bp6cnNmzY8NS2+MqViIiISAQ//fQTli1bVivMAYCenh4+/fRT/O9//1OrLQY6IiIiIhFkZmbC2dm53v09e/bEvXv31GqLgY6IiIhIBCYmJqisrKx3f0VFhVr95wAGOiIiIiJRvPzyy/jll1/q3X/48GH06tVLrbYY6IiIiIhEsGDBAmzZsgX5+fm19hUUFGDbtm0ICgpSqy1+5UpEREQkcZwpgoiIiEgEnTt3hjrP1dLS0p56DAMdERERkQjUfZ2qDr5yJSIiIpI4fhRBREREJHF85UpEREQkAnX60AmCgPT09Ke2xUBHREREJIIn9aFLS0vD1q1bUVJSolZb7ENHRERE9JzIzc3FihUrEB4eDldXV3z22Wfo16/fU8/jEzoiIiIikRUXF2PNmjVYvXo1OnXqhIMHD2LkyJFqn89AR0RERCSSyspKbN26FcuXL0fr1q2xadMmTJo0SeN2GOiIiIiIRLB792589NFHyM/Px5IlSxAQEABt7YZFM/ahIyIiIhKBXC6Hrq4u/vGPf0ChUNR73Nq1a5/aFp/QEREREYnA09MTgiDg1q1b9R6j7nM3PqEjIiIikjjOFEFEREQkcXzlSkRERCSCZcuWqXVcSEjIU4/hK1ciIiIiEcjlcvTo0aPeL1srKytx5coVVFdXP7UtBroGEgQBhYWFUCgUkMlkYpdDREREEiOXy3H//n2YmZnVuT8nJwfm5uaoqqp6alvsQ9dAhYWFMDAwQGFhodilEBERkQTJ5fInPn2rqqqClpZ6UY2BjoiIiEgEBgYG+P333+vd//vvv8PQ0FCtthjoiIjouXHr1i0EBwc/cVwuopaie/fuiIqKqnd/dHQ0unfvrlZbDHRERPTcuHPnDpKSknDnzh2xSyFqcn//+9+xYsUKXL9+vda+5ORkfPrppxg7dqxabTUo0GVkZGD69OmwtLSEjo4ObG1tERgYqPLY0NPTEzKZDDKZDHp6enBwcEBoaGidIx7HxsZCLpfjtddeq7UvPT0dMpkMpqamtfqr9e7dG0uXLlXZlpKSgunTp8PGxga6urro2LEjhgwZgp07d6KyslJ5XE1tf112797dkFtCRESNoKSkROVPopbs3XffRadOndCrVy/4+Phg8eLFCA4OxhtvvIFevXrBysoKs2bNUqstjQPdrVu30LdvX9y8eRO7du1CSkoKwsPDcfz4cbi5ueHhw4fKY2fOnInMzEwkJycjODgYH3/8McLDw2u1GRERgblz5+LkyZO4f/9+ndctLCzE6tWrn1hbXFwc+vTpg2vXrmHjxo24cuUKoqOj8dZbb2Hz5s1ISkpSOT4yMhKZmZkqy5gxYzS9JURE1EjS09NV/iRqyVq1aoXjx49jyZIlSEtLw8aNG7FhwwbcvHkT77//PmJiYqCjo6NWWxoPLBwQEAAdHR388ssvaN26NQDAxsYGLi4u6NKlC5YsWYLNmzcDANq0aQNzc3MAgL+/P8LCwnD06FGVtFlUVIQ9e/YgISEBWVlZ2LFjBz788MNa1507dy7WrFmDgIAAmJqa1tovCAKmTZsGBwcHnD59WuWrkK5du8LX17fW00FDQ0NlfURERETNrU2bNvj444/x8ccfP1M7Gj2he/jwIY4cOYLZs2crw1wNc3NzTJo0CXv27KkVnARBwK+//orr16/XSpp79+6Fk5MTHB0dMXnyZGzfvr3O17K+vr6wt7fHJ598UmdtiYmJuHbtGhYuXFjvJ77PMl5cWVkZCgoKVBYiIiKi54FGT+hu3rwJQRDQrVu3Ovd369YNeXl5yMnJAQBs2rQJX375JcrLy1FRUQE9PT3MmzdP5ZyIiAhMnjwZADBy5Ejk5+cjJiYGnp6eKsfJZDKsWrUK3t7emD9/Prp06aKy/8aNGwAAR0dH5bbs7Gx07txZuf6vf/0Ls2fPVq77+vpCLpertHP16lXY2NjU+ruFhoaqPUUHERER0dN4eXk99RhBEBAdHf3U4xr0UYS6k0tMmjQJiYmJOH36NEaNGoUlS5ZgwIAByv3JycmIi4uDr68vAEBbWxsTJ05EREREne2NGDECAwcOxEcffaTW9Y2MjJCYmIjExEQYGhqivLxcZf/atWuV+2sWS0vLOtsKDg5Gfn6+csnIyFCrBiIiIqK6nDx5Eo6OjnBxcYGLiws6d+6MM2fOKNcdHR1x8uRJtdrS6Amdvb09ZDIZrl27hjfeeKPW/mvXrqF9+/YwMTEB8HjAPHt7ewCPX63a29vD1dUVQ4cOBfD46VxlZaVKiBIEAbq6uggLC4OBgUGta6xatQpubm5YtGiRyvauXbsCeBwSXVxcADwegbnm+nXNk2Zubq7c/zS6urrQ1dVV61giIiIidSxbtkw59detW7ewd+9erFmzBsDjN41bt25Vqx2NntAZGRlh2LBh2LRpU61PyrOysrBz505MnDixzr5q+vr6CAwMxMKFCyEIAiorK/H111/j888/V3lCdunSJVhaWmLXrl111tCvXz+MHTsWixcvVtnu4uICJycnrF69Wq1JbImIiIhaCo2/cg0LC8OAAQMwYsQILF++HJ06dUJSUhIWLVqEjh07YsWKFfWe+8477+DTTz/F/v37oa2tjby8PMyYMaPWk7hx48YhIiIC7777bp3trFixAj169FB56iaTyRAZGYlhw4bB3d0dwcHB6NatGyoqKnDy5Enk5OTU6i/36NEjZGVlqWxTKBRo27atpreFiIgagZ2dncqfRKQejfvQde3aFQkJCejcuTMmTJiALl264O2334aXlxdiY2PRoUOHes/t0KEDpk6diqVLlyIiIgJDhw6t87XquHHjkJCQgN9++63OdhwcHDB9+nSUlpaqbHd1dcX58+fh6OiIgIAAdO/eHQMGDMCuXbuwdu3aWoPz+fv7w8LCQmXZsGGDpreEiIgaSc0ICn8dSYHoRfHXt5zqjtAhE9T9woFUFBQUwMDAAPn5+WjXrp3Y5RARtQi3bt3Ctm3bMHPmTJVRCohaor/97W/45ptvYGhoCAAoLi7GDz/8oPxYtKioCO+//z42bdr01LYY6BqIgY6IiIieFw0atoSIiIiInh8afxRBRERERM9OLperNbavOqN3MNAREdFzg33o6EVy8OBBlfUHDx4gKChIOXRbfn4+/Pz81GqLgY6IiJ4bd+7cQVJSEu7cucNARy3e6NGjVdZv3boFLS0t5fbs7Gy122ryPnTh4eFQKBSorKxUbisqKkKrVq1qzdcaHR0NmUyG1NRU2NnZ4YsvvqjV3tKlS9G7d+861+3s7CCTyepdpk2bBgD17t+9e3cj/+2JiEgTNYPW/3XweqIXwa1bt1BSUoKqqioAjz/AVCgUap3b5E/ovLy8UFRUhISEBLi6ugIAfv31V5ibm+PcuXMoLS2Fnp4eACAqKgo2Njbo0qVLg64VHx+vvAlnzpzBuHHjkJycrPwK9c/jGkVGRmLkyJEq59d8NkxEROJIT09X+ZPoRREfH4/58+ejuroaGzZswFtvvYWNGzfC0dFRrfObPNA5OjrCwsIC0dHRykAXHR0NHx8fnDhxAmfPnlU+qYuOjoaXl1eDr1UzhywA5QDHpqamdQY1Q0NDmJubN/haRERERM/q8OHD+OKLL3D+/Hns3bsXM2fOxIIFC7BgwQJoa2tj3759arXTLMOWeHl5ISoqSrkeFRUFT09PeHh4KLeXlJTg3LlzzxTomlJZWRkKCgpUFiIiIqKG6tGjB9544w1069YN165dg5eXFxISEhAeHo7169fj4sWLtfrZ1adZPorw8vJCUFAQKisrUVJSgosXL8LDwwMVFRUIDw8HAMTGxqKsrEwl0H3wwQf45z//qdJWeXk5unfv/sw1+fr61prb9erVq7Cxsanz+NDQUCxbtuyZr0tEREQEPM5Hx44dg4WFhXKboaEh3n77bY3bapZA5+npieLiYsTHxyMvL+//sXfnYVVV+//A34dDgMIRZAZlUBFwAnECxAScvUV4NfVy1RDMrxkaZppi3VAj0Vs5kppeQpvUcqpuF80UcBZRMEdUBiVlMpEpBOHs3x8+nF8nQM9h2m56v55nP7LX2nvtj/v7vfZh7TXA2dkZFhYW8PX1RUhICB4+fIjExER07dpVLaFauHChaiJDrfXr1+Po0aNNjmnNmjUYMWKEWpmtrW2D10dERGD+/Pmq85KSEtjZ2TU5DiIiIvpriomJaba2WiWhc3JyQufOnZGQkICioiL4+voCeJxA2dnZ4eTJk0hISMCwYcPU7jM3N4eTk5NaWe3YuKaytrau0/aT6OvrQ19fv1meTURERLR9+3aNrtNkLbpWW4fO398fiYmJKCoqwsKFC1XlQ4cORXx8PJKTkzF79uzWCoeIiIhIVKGhoejQoQNkMhmAxztClJSUqCZzCoKg8eLCrZrQhYWF4dGjR6oeOgDw9fXFnDlzUFVV1aoTIh48eIC8vDy1MoVCAUNDw1aLgYiI1Dk6Oqr9SdTWXbt2DVZWVgCArKwsuLu74/79+wCAwsJCjVfkaJVZrsDjhK6iogJOTk6qwIHHCV1paalqeZPWEhISAhsbG7Vjw4YNrfZ8IiKqq3a90D+uG0r0VyEIgtrern8+fxKZoOmVpKakpATGxsYoLi5WLVxMRERNw71c6a9ELpfj7t27qo6uzMxMuLu7o7S0FMDjrb+sra2hVCqf2hb3cm2k2jyY69ERETUfc3NzREREAOC/ryQdCoVCNQ5OG83Zp8aErpF+++03AODSJURERH9xBQUFartVaerPSWC7du0wdOhQtfra7VGf2hY/uTbOgwcP0LFjR9y+fRvGxsZih9Nm1K7vl5OTw0/ZzYjvtWXwvTY/vtOWwffaMmrf64MHDxqVCxQUFMDS0rJZYmEPXSPp6DyeT2JsbMz/cbSADh068L22AL7XlsH32vz4TlsG32vLaMznVgDNlswBTOiIiIiIRBESEqLRdXFxcU+9hgkdERERkQg+//xz+Pr6qhYSbgomdI2kr6+PyMhIbgfWzPheWwbfa8vge21+fKctg++1ZTTHe12zZg3c3d2bHAsnRRARERGJQC6X4/z5882S0LXaThFERERE1DKY0BERERFJHBM6IiIiIhHMmDEDZmZmzdIWx9ARERERSRx76Brpk08+gaOjIwwMDODp6Ynk5GSxQ5K0o0ePIiAgALa2tpDJZNi/f7/YIUledHQ0Bg4cCIVCAUtLS4wbNw7p6elihyV5mzZtgpubm2qBVm9vb8THx4sdVpuzcuVKyGQyzJs3T+xQJG3p0qWQyWRqh6urq9hhtQl37tzB1KlTYWZmhnbt2qFPnz5ISUnRqo0uXbpodGiCy5Y0wq5duzB//nxs3rwZnp6eWLt2LUaPHo309PRmXfX5r6S8vBzu7u4IDQ3F+PHjxQ6nTUhKSkJYWBgGDhyI6upqLFmyBKNGjcKVK1dgaGgodniS1blzZ6xcuRLdu3eHIAjYvn07AgMDkZqail69eokdXptw9uxZfPrpp3BzcxM7lDahV69e+Pnnn1Xnurr8T39TFRUVwcfHB/7+/oiPj4eFhQVu3LiBjh07atXO7du3sWDBAnTq1KnJMfGTayN4enpi4MCBiImJAQAolUrY2dlh7ty5WLx4scjRSZ9MJsO+ffswbtw4sUNpUwoLC2FpaYmkpCS1zZ+p6UxNTfHhhx9ixowZYocieWVlZejXrx82btyIqKgo9O3bF2vXrhU7LMlaunQp9u/fj7S0NLFDaVMWL16MEydO4NixY01qh8uWiKiqqgrnzp3DiBEjVGU6OjoYMWIETp06JWJkRE9WXFwM4HHyQc2jpqYGO3fuRHl5Oby9vcUOp00ICwvDCy+8oPZvLDXNjRs3YGtri65du2LKlCm4ffu22CFJ3vfff48BAwZg4sSJsLS0hIeHB7Zu3SpqTEzotHTv3j3U1NTAyspKrdzKygp5eXkiRUX0ZEqlEvPmzYOPjw969+4tdjiSd/HiRRgZGUFfXx+vvfYa9u3bh549e4odluTt3LkT58+fR3R0tNihtBmenp7Ytm0bDhw4gE2bNiErKwvPP/88SktLxQ5N0jIzM7Fp0yZ0794dBw8exOzZs/HGG29g+/btosXED+lEfwFhYWG4dOkSjh8/LnYobYKLiwvS0tJQXFyM3bt3Izg4GElJSUzqmiAnJwfh4eE4dOgQDAwMxA6nzRg7dqzqZzc3N3h6esLBwQHffPMNhwg0gVKpxIABA7BixQoAgIeHBy5duoTNmzcjODhYlJjYQ6clc3NzyOVy5Ofnq5Xn5+fD2tpapKiIGjZnzhz897//RUJCAjp37ix2OG2Cnp4enJyc0L9/f0RHR8Pd3R3r1q0TOyxJO3fuHAoKCtCvXz/o6upCV1cXSUlJWL9+PXR1dVFTUyN2iG2CiYkJnJ2dcfPmTbFDkTQbG5s6v8D16NFD68/ZX3zxBRwcHJolJiZ0WtLT00P//v1x+PBhVZlSqcThw4c5hoaeKYIgYM6cOdi3bx+OHDmi8dR30p5SqURlZaXYYUja8OHDcfHiRaSlpamOAQMGYMqUKUhLS4NcLhc7xDahrKwMGRkZsLGxETsUSfPx8amzDNT169e1Ts7+/e9/Y9u2bbh//36TY+In10aYP38+goODMWDAAAwaNAhr165FeXk5QkJCxA5NssrKytR+Y8zKykJaWhpMTU1hb28vYmTSFRYWhq+//hrfffcdFAqFaoynsbEx2rVrJ3J00hUREYGxY8fC3t4epaWl+Prrr5GYmIiDBw+KHZqkKRSKOuM7DQ0NYWZmxnGfTbBgwQIEBATAwcEBd+/eRWRkJORyOYKCgsQOTdLefPNNDB48GCtWrMCkSZOQnJyMLVu2YMuWLVq1M3ToUHz00UdYvHgxXnrpJcyYMQOjRo2CTCbTPiiBGmXDhg2Cvb29oKenJwwaNEg4ffq02CFJWkJCggCgzhEcHCx2aJJV3/sEIMTFxYkdmqSFhoYKDg4Ogp6enmBhYSEMHz5c+Omnn8QOq03y9fUVwsPDxQ5D0iZPnizY2NgIenp6QqdOnYTJkycLN2/eFDusNuGHH34QevfuLejr6wuurq7Cli1bGt3Wt99+K+jo6Ajm5uaCvb298N577wmZmZlatcF16IiIiIhEdOXKFbi7u+Phw4eIj4/HF198gR9//BHe3t4IDQ3VqEeVY+iIiIiIngFyuRwvvvgidu3ahdzcXAwaNAjTpk3T6F6OoSMiIiJ6Rvz222/YuXMnvvzyS9y4cQOzZ8/W6D4mdEREREQiqqmpgSAICAgIwM8//wwfHx+Eh4dj/Pjx0NPT06gNJnREREREIvj222+xZ88exMfHo3PnzujXrx9iYmIatTYdJ0UQERERiaBdu3YICAjAq6++ilGjRjWpLSZ0RERERCK4f/8+TE1Nm6UtJnREREREEsdlS4iIWlF2djZkMhnS0tLEDoWI2hAmdEQkadOnT8e4ceNU535+fpg3b55o8WRlZeGf//wnbG1tYWBggM6dOyMwMBDXrl0DANjZ2SE3N5fbWRFRs+IsVyKiZvLo0SOMHDkSLi4u2Lt3L2xsbPDrr78iPj4eDx48APB44VBra2txAyWiNoc9dETUZkyfPh1JSUlYt24dZDIZZDIZsrOzAQCXLl3C2LFjYWRkBCsrK0ybNg337t1T3evn54e5c+di3rx56NixI6ysrLB161aUl5cjJCQECoUCTk5OiI+Pb/D5ly9fRkZGBjZu3AgvLy84ODjAx8cHUVFR8PLyAlD3k+v06dNVsf7xSExMBABUVlZiwYIF6NSpEwwNDeHp6amqIyKqxYSOiNqMdevWwdvbGzNnzkRubi5yc3NhZ2eHBw8eYNiwYfDw8EBKSgoOHDiA/Px8TJo0Se3+7du3w9zcHMnJyZg7dy5mz56NiRMnYvDgwTh//jxGjRqFadOm4ffff6/3+RYWFtDR0cHu3btRU1Ojccy1sebm5iI8PByWlpZwdXUFAMyZMwenTp3Czp078csvv2DixIkYM2YMbty40bSXRURti0BEJGHBwcFCYGCg6tzX11cIDw9Xu+b9998XRo0apVaWk5MjABDS09NV9w0ZMkRVX11dLRgaGgrTpk1TleXm5goAhFOnTjUYT0xMjNC+fXtBoVAI/v7+wvLly4WMjAxVfVZWlgBASE1NrXPvnj17BAMDA+H48eOCIAjCrVu3BLlcLty5c0ftuuHDhwsRERENxkBEfz3soSOiNu/ChQtISEiAkZGR6qjtAcvIyFBd5+bmpvpZLpfDzMwMffr0UZVZWVkBAAoKChp8VlhYGPLy8vDVV1/B29sb3377LXr16oVDhw49McbU1FRMmzYNMTEx8PHxAQBcvHgRNTU1cHZ2Vos9KSlJLW4iIk6KIKI2r6ysDAEBAVi1alWdOhsbG9XPzz33nFqdTCZTK5PJZAAApVL5xOcpFAoEBAQgICAAUVFRGD16NKKiojBy5Mh6r8/Ly8NLL72EV199FTNmzFCLWy6X49y5c5DL5Wr3GBkZPTEGIvprYUJHRG2Knp5enfFr/fr1w549e+Do6Ahd3db9Z08mk8HV1RUnT56st/7hw4cIDAyEq6srVq9erVbn4eGBmpoaFBQU4Pnnn2+NcIlIovjJlYjaFEdHR5w5cwbZ2dm4d+8elEolwsLCcP/+fQQFBeHs2bPIyMjAwYMHERISovHkBU2kpaUhMDAQu3fvxpUrV3Dz5k3Exsbis88+Q2BgYL33zJo1Czk5OVi/fj0KCwuRl5eHvLw8VFVVwdnZGVOmTMErr7yCvXv3IisrC8nJyYiOjsaPP/7YbHETkfSxh46I2pQFCxYgODgYPXv2REVFBbKysuDo6IgTJ05g0aJFGDVqFCorK+Hg4IAxY8ZAR6f5fq/t3LkzHB0dsWzZMtXyJLXnb775Zr33JCUlITc3Fz179lQrT0hIgJ+fH+Li4hAVFYW33noLd+7cgbm5Oby8vPDiiy82W9xEJH3cy5WIiIhI4vjJlYiIiEjimNARERERSRwTOiIiIiKJY0JHREREJHFM6IiIiIgkjgkdERERkcQxoSMiIiKSOCZ0RERERBLHhI6IiIhI4pjQEREREUkcEzoiIiIiiWNCR0RERCRxTOiIiIiIJI4JHREREZHEMaEjIiIikjgmdEREREQSx4SOiIiISOKY0BERERFJHBM6IiIiIoljQkdEREQkcUzoiIiIiCSOCR0RERGRxDGhIyIiIpI4JnREREREEseEjoiIiEjimNARERERSRwTOiIiIiKJY0JHREREJHFM6IiIiIgkjgkdERERkcQxoSMiIiKSOCZ0RERERBLHhI6IiIhI4pjQEREREUkcEzoiIiIiiWNCR0RERCRxTOiIiIiIJI4JHREREZHEMaEjIiIikjgmdEREREQSx4SOiIiISOKY0BERERFJHBM6IiIiIoljQkdEREQkcUzoiIiIiCSOCR0RERGRxDGhIyIiIpI4JnREREREEseEjoiIiEjimNARERERSRwTOiIiIiKJY0JHREREJHFM6IiIiIgkjgkdERERkcQxoSMiIiKSOCZ0RERERBLHhI6IiIhI4nTFDoCIiIjoryokJESj6+Li4p5YLxMEQWiOgIiIiIhIO+PHj1c7Ly8vx5EjRxAQEAAAqKysRHx8PJRK5RPbYUJHRERE9IzIysqCm5sbSktLAQCFhYWwtrZGTU3NE+/jGDoiIiKiZ8Sf+9kEQahTVh8mdEREREQiefToUbO0w4SOiIiISCSdOnXCvHnzcPHiRQCAoaEh/va3v6ldI5PJntoOEzoiIiIikSxevBjJycnw8PCAp6cn9u/fj//85z+qegsLC9y4ceOp7XBSBBEREZHITpw4AV9fX/Tq1Qs3b97Eyy+/jNDQUPj6+mp0P3voiIiIiETWsWNHyGQyXLhwAWfOnIG1tTWmTZsGZ2dnREdHP/V+9tARERERiezKlStwd3dXmyRRU1OD9957D6tWrUJ1dfUT7+dOEURERETPkAsXLuDLL7/Ejh07YGxsjFWrVj31HiZ0RERERCL77bffIAgC+vTpg9u3b2PixInYvXs3vLy8NLqfCR0RERGRSD788EPs2bMHKSkp8Pb2RmhoKCZPnoz27dtr1Q7H0BERERGJxMbGBq+88gpmzJgBZ2fnRrfDhI6IiIhIJDU1NZDL5U1uh59ciYiIiETy5ZdfanRdcHDwE+vZQ0dEREQkElNT06deIwgCioqKnngNEzoiIiIiieNOEY0kCAJKSkrAfJiIiIjExjF0jVRaWgpjY2OkpqZCoVCIHQ4RUZvRoUMHWFhYiB0GUavYvn27RtdxDF0LKSkpgbGxMcaMGYPnnntO7HCIiNoMfb3nsHHTZiZ19Jfw5zF0SqUSJSUlMDExAfD4i2BxcTGUSuUT22EPXRP9o+8ddDV/9PQLiUSUX6qPz8/b45V+t2GlqBQ7HKIG5ZUa4IvzdigpKWFCR38J9+/fVzvPysqCu7u7qrywsBDW1tZPbadRCV1OTg4iIyNx4MAB3Lt3DzY2Nhg3bhzee+89mJmZAQD8/PyQlJQEANDX14e9vT1CQkKwePFiyGQytfZOnTqFIUOGYMyYMfjxxx/V6rKzs9GlSxdYWFggIyND7fNm3759MW7cOCxdulRVdvPmTaxYsQI///wz8vPzYW5uDldXV9XKy7q6j//Kf46h1o4dO/CPf/xD43dhZfQQdiZM6EgarBSVsDN5KHYYRETUgKqqKrXeuKf1zNXSelJEZmYmBgwYgBs3bmDHjh24efMmNm/ejMOHD8Pb21st05w5cyZyc3ORnp6OiIgIvPfee9i8eXOdNmNjYzF37lwcPXoUd+/erfe5paWl+Oijj54YW3JyMvr164erV6/ik08+waVLl5CYmIhXX30VmzZtwuXLl9Wuj4uLQ25urtoxbtw4rd7Ho5r6E0MiItJe7b+pVVVVIkdCJI74+Hj8/vvvKCgoAPC4x87Kyuqp92ndQxcWFgY9PT389NNPaNeuHQDA3t4eHh4e6NatG9555x1s2rQJANC+fXtVN2FISAhiYmJw6NAhzJ49W9VeWVkZdu3ahZSUFOTl5WHbtm1YsmRJnefOnTsXq1evRlhYGCwtLevUC4KA6dOnw9nZGSdOnICOzv/PVbt3746goKA6M1JNTEw06sZ8kqIKPQD8h4eIqDnc/10PAJCfn48ePXqIHA1R6/n111+xcuVKnDlzBjKZDP/4xz8wfvx4xMbGYujQoU+9X6seuvv37+PgwYN4/fXXVclcLWtra0yZMgW7du2qkzgJgoBjx47h2rVr0NPTU6v75ptv4OrqChcXF0ydOhWfffZZvUuBBAUFwcnJCcuXL683trS0NFy9ehULFixQS+b+qKHPrERERERiOHPmDP7xj3+gW7duKCkpQVJSEsLDw3H8+HGEh4fDwMDgqV8oAS0Tuhs3bkAQhAZ/a+rRoweKiopQWFgIANi4cSOMjIygr6+PoUOHQqlU4o033lC7JzY2FlOnTgUAjBkzBsXFxaqxd38kk8mwcuVKbNmyBRkZGXXqr1+/DgBwcXFRlRUUFMDIyEh1bNy4Ue2eoKAgtXojIyPcvn273r9bZWUlSkpK1A4iIiKiphg8eDDKy8tx5swZfP7552jfvj1Wr16N4uJiFBcX49SpU+jcufNT22nUwsKarnQyZcoUpKWl4cSJExg7dizeeecdDB48WFWfnp6O5ORkBAUFAQB0dXUxefJkxMbG1tve6NGjMWTIEPzrX//S6PlmZmZIS0tDWloaTExM6ozJWLNmjaq+9rC1ta23rejoaBgbG6sOOzs7jWIgIiIiasiZM2fwww8/oG/fvmrl7dq1g5GREX799VeMHDnyqe1oldA5OTlBJpPh6tWr9dZfvXoVHTt2VE01NzY2hpOTEwYOHIhvvvkGMTEx+Pnnn1XXx8bGorq6Gra2ttDV1YWuri42bdqEPXv2oLi4uN5nrFy5Ert27UJqaqpaeffu3QE8ThJryeVyODk5wcnJSTW79Y+sra1V9U+6DgAiIiJU2XJxcTFycnKe8KaIiIiInm7AgAEN1n3++edwc3ODXC5/ajtaJXRmZmYYOXIkNm7ciIqKCrW6vLw8fPXVV5g8eXK9Y9WMjIwQHh6OBQsWQBAEVFdX4/PPP8fHH3+s1kN24cIF2NraYseOHfXGMGjQIIwfPx6LFy9WK/fw8ICrqys++ugjjaf4akNfXx8dOnRQO4iIiIiaW2FhIcaPH485c+Zg1apVOHDgwFPv0XqWa0xMDAYPHozRo0cjKioKXbp0weXLl7Fw4UJ06tQJH3zwQYP3zpo1C++//z727NkDXV1dFBUVYcaMGTA2Nla7bsKECYiNjcVrr71WbzsffPABevXqpdabJpPJEBcXh5EjR8LHxwcRERHo0aMHHj16hKNHj6KwsLBOhvvgwQPk5eWplSkUChgaGmr7WoiIiIi0tmzZMrXz6upqfPrpp+jduzcuXrwIBwcHjdrROqHr3r07UlJSEBkZiUmTJuH+/fuwtrbGuHHjEBkZWWcLiz8yNTXFK6+8gqVLl6JLly4YMWJEnWQOeJzQ/fvf/8Yvv/xSb0+Ys7MzQkNDsWXLFrVyLy8vnDt3DitWrEBYWBjy8vJgaGgId3d3rFmzBqGhoWrXh4SE1Gk7Ojq6Tu/fk3RsxyVLiIiai2n7x/+marLuFlFb8N1336mdV1dXo6ioCOPHj9c4mQO4l2uj1e7lum1xH279Rc88bv1FUlG79deaNWvQrVs3scMhEsUPP/yAmTNnomfPnoiNjUWXLl2eeg/3cm2inWmd8Nxzz4kdBpFGPj9vL3YIRE+lr/ccxynTX1pAQACuXLmCWbNmwc3NDatWrcLrr7/+xHvYQ9dItT10qampavvLEhFR03To0EG1WgLRX93XX3+NsLAwFBUVPfE69tA1UdeuXfmbJBEREbWIgIAAxMXFPfW6Ri0sTERE1BIyMzMRERGBzMxMsUMheiZUVFTg8OHDT72OCR0RET0zbt++jcuXLze4DSMR1a/FE7rNmzdDoVCgurpaVVZWVobnnnsOfn5+atcmJiZCJpMhIyMDjo6OWLt2bZ32li5dqrY9xh/PHR0dIZPJGjymT58OAA3W79y5s5n/9kREpI3aRev/vHg9ET1Zi4+h8/f3R1lZGVJSUuDl5QUAOHbsGKytrXHmzBk8fPgQBgYGAICEhATY29s3eqr62bNnUVNTAwA4efIkJkyYgPT0dNUYt3bt2qmujYuLw5gxY9TuNzExadRziYioeWRnZ6v9SdTWyeVyNMf81BZP6FxcXGBjY4PExERVQpeYmIjAwEAcOXIEp0+fVvXUJSYmwt/fv9HP+uOsqNoFji0tLetN1ExMTGBtbd3oZxERERE11b59+55YX1xcjODg4Ke20yqzXP39/ZGQkKDagSEhIQFvv/02ampqkJCQAD8/P1RUVODMmTN1dnMgIiIiaqteeumlJ9YXFBRo1E6rTIrw9/fHiRMnUF1djdLSUqSmpsLX1xdDhw5FYmIiAODUqVOorKxU66FbtGgRjIyM1I4VK1Y0S0xBQUF12n7SINzKykqUlJSoHURERERN8ehR8+w21So9dH5+figvL8fZs2dRVFQEZ2dnWFhYwNfXFyEhIXj48CESExPRtWtX2Nv//5XsFy5cqJrIUGv9+vU4evRok2Nas2YNRowYoVZma2vb4PXR0dF1NtAlIiIiaopOnTrhn//8J2bMmIE+ffrUqZfL5XB0dHxqO62S0Dk5OaFz585ISEhAUVERfH19ATxOoOzs7HDy5EkkJCRg2LBhaveZm5vDyclJrax2bFxTWVtb12n7SSIiIjB//nzVeUlJCezs7JolFiIiIvprWrx4MXbv3o2YmBj0798foaGh+Oc//6nahcrMzEyjdRlbbR06f39/JCYmIjExUW25kqFDhyI+Ph7JyclNmhDR0vT19dGhQwe1g4iIiKgp5s+fj5MnTyIpKQnnzp3Dxo0bYW1tjeDgYCQlJWncTqsmdMePH0daWpqqhw4AfH198emnn6KqqqpVE7oHDx4gLy9P7SgvL2+15xMRERHV6tixI2QyGS5cuIAzZ87A2toa06ZNg7OzM6Kjo596f6smdBUVFXBycoKVlZWq3NfXF6WlparlTVpLSEgIbGxs1I4NGza02vOJiKiu2rFCmowZImqrevfujVWrViErKwsTJ07Ev/71r6feIxOaYzW7v6CSkhIYGxujuLiYn1+JiJpJYmIiVq9ejfnz59fZTYioLbty5Qrc3d3x6NEjXLhwAV9++SV27NgBY2NjhIaG4q233nri/a0yKaItqs2DuXwJEVHz6dixI5ycnNCxY0f++0qSoVAoIJPJmtTGb7/9BkEQ0KdPH9y+fRsTJ07E7t27VZsyPA176BopMzOz0VuUERERUdtRUFCgtluVNj788EPs2bMHKSkp8Pb2RmhoKCZPnoz27dtr1Q4TukZ68OABOnbsiNu3b8PY2FjscNqM2uVgcnJy+Cm7GfG9tgy+1+bHd9oy+F5bRu17ffDgQaNzARsbG7zyyiuYMWMGnJ2dGx0LP7k2ko7O4/kkxsbG/B9HC+DSMC2D77Vl8L02P77TlsH32jKa8rn1119/hVwub3IMTOiIiIiIRPLll19qdF1wcPAT65nQEREREYkkNDQUhoaG0NVtOCUTBIEJXUvR19dHZGQk9PX1xQ6lTeF7bRl8ry2D77X58Z22DL7XltFc7/XYsWNwd3dvUhucFEFEREQkErlcjvPnzzc5oWu1nSKIiIiIqGUwoSMiIiKSOCZ0RERERCLp1q1bs4xt5Bg6IiIiIoljD10jffLJJ3B0dISBgQE8PT2RnJwsdkiSdvToUQQEBMDW1hYymQz79+8XOyTJi46OxsCBA6FQKGBpaYlx48YhPT1d7LAkb9OmTXBzc1Mt0Ort7Y34+Hixw2pzVq5cCZlMhnnz5okdiqQtXboUMplM7XB1dRU7rDbhzp07mDp1KszMzNCuXTv06dMHKSkpWrcTEhKi0fE0TOgaYdeuXZg/fz4iIyNVM1NGjx6NgoICsUOTrPLycri7u+OTTz4RO5Q2IykpCWFhYTh9+jQOHTqER48eYdSoUSgvLxc7NEnr3LkzVq5ciXPnziElJQXDhg1DYGAgLl++LHZobcbZs2fx6aefws3NTexQ2oRevXohNzdXdRw/flzskCSvqKgIPj4+eO655xAfH48rV67g448/RseOHbVu6/PPP0dBQQGKi4tRXFyMu3fv4ssvv1SdFxQUYPv27U9vSCCtDRo0SAgLC1Od19TUCLa2tkJ0dLSIUbUdAIR9+/aJHUabU1BQIAAQkpKSxA6lzenYsaPwn//8R+ww2oTS0lKhe/fuwqFDhwRfX18hPDxc7JAkLTIyUnB3dxc7jDZn0aJFwpAhQ5qlLR0dHSEvL091npmZKRgZGanOCwoKBB0dnae3o3Uq+RdXVVWFc+fOYcSIEaoyHR0djBgxAqdOnRIxMqInKy4uBgCYmpqKHEnbUVNTg507d6K8vBze3t5ih9MmhIWF4YUXXlD7N5aa5saNG7C1tUXXrl0xZcoU3L59W+yQJO/777/HgAEDMHHiRFhaWsLDwwNbt25tlraFP01tEAShTll9mNBp6d69e6ipqYGVlZVauZWVFfLy8kSKiujJlEol5s2bBx8fH/Tu3VvscCTv4sWLMDIygr6+Pl577TXs27cPPXv2FDssydu5cyfOnz+P6OhosUNpMzw9PbFt2zYcOHAAmzZtQlZWFp5//nmUlpaKHZqkZWZmYtOmTejevTsOHjyI2bNn44033tDs02gL4dZfRH8BYWFhuHTpEsfONBMXFxekpaWhuLgYu3fvRnBwMJKSkpjUNUFOTg7Cw8Nx6NAhGBgYiB1OmzF27FjVz25ubvD09ISDgwO++eYbzJgxQ8TIpE2pVGLAgAFYsWIFAMDDwwOXLl3C5s2bn7rnqiZkMtkTz+vDHjotmZubQy6XIz8/X608Pz8f1tbWIkVF1LA5c+bgv//9LxISEtC5c2exw2kT9PT04OTkhP79+yM6Ohru7u5Yt26d2GFJ2rlz51BQUIB+/fpBV1cXurq6SEpKwvr166Grq4uamhqxQ2wTTExM4OzsjJs3b4odiqTZ2NjU+QWuR48ejfqc7eLiAl3d/9+/ZmpqiiVLlqjO9fX1MXr06Ke2w4ROS3p6eujfvz8OHz6sKlMqlTh8+DDH0NAzRRAEzJkzB/v27cORI0fQpUsXsUNqs5RKJSorK8UOQ9KGDx+OixcvIi0tTXUMGDAAU6ZMQVpaGuRyudghtgllZWXIyMiAjY2N2KFImo+PT51loK5fvw4HBwet27py5QrMzMxU5yYmJli8eLHq3NjYGP/73/+e2g4/uTbC/PnzERwcjAEDBmDQoEFYu3YtysvLNVonhupXVlam9htjVlYW0tLSYGpqCnt7exEjk66wsDB8/fXX+O6776BQKFRjPI2NjdGuXTuRo5OuiIgIjB07Fvb29igtLcXXX3+NxMREHDx4UOzQJE2hUNQZ32loaAgzMzOO+2yCBQsWICAgAA4ODrh79y4iIyMhl8sRFBQkdmiS9uabb2Lw4MFYsWIFJk2ahOTkZGzZsgVbtmwRL6hmmXP7F7RhwwbB3t5e0NPTEwYNGiScPn1a7JAkLSEhQQBQ5wgODhY7NMmq730CEOLi4sQOTdJCQ0MFBwcHQU9PT7CwsBCGDx8u/PTTT2KH1SZx2ZKmmzx5smBjYyPo6ekJnTp1EiZPnizcvHlT7LDahB9++EHo3bu3oK+vL7i6ugpbtmwRNR5u/UVEREQkcRxDR0RERCRxTOiIiIiIJI4JHREREZHEMaEjIiIikjgmdEREREQSx4SOiIiISOKY0BERERFJHBM6IiIiIoljQkdE1Iqys7Mhk8mQlpYmdihE1IYwoSMiSZs+fTrGjRunOvfz88O8efNEiycrKwv//Oc/YWtrCwMDA3Tu3BmBgYG4du0aAMDOzg65ubncn5SImpWu2AEQEbUVjx49wsiRI+Hi4oK9e/fCxsYGv/76K+Lj4/HgwQMAgFwuh7W1tbiBElGbwx46Imozpk+fjqSkJKxbtw4ymQwymQzZ2dkAgEuXLmHs2LEwMjKClZUVpk2bhnv37qnu9fPzw9y5czFv3jx07NgRVlZW2Lp1K8rLyxESEgKFQgEnJyfEx8c3+PzLly8jIyMDGzduhJeXFxwcHODj44OoqCh4eXkBqPvJdfr06apY/3gkJiYCACorK7FgwQJ06tQJhoaG8PT0VNUREdViQkdEbca6devg7e2NmTNnIjc3F7m5ubCzs8ODBw8wbNgweHh4ICUlBQcOHEB+fj4mTZqkdv/27dthbm6O5ORkzJ07F7Nnz8bEiRMxePBgnD9/HqNGjcK0adPw+++/1/t8CwsL6OjoYPfu3aipqdE45tpYc3NzER4eDktLS7i6ugIA5syZg1OnTmHnzp345ZdfMHHiRIwZMwY3btxo2ssiorZFICKSsODgYCEwMFB17uvrK4SHh6td8/777wujRo1SK8vJyREACOnp6ar7hgwZoqqvrq4WDA0NhWnTpqnKcnNzBQDCqVOnGownJiZGaN++vaBQKAR/f39h+fLlQkZGhqo+KytLACCkpqbWuXfPnj2CgYGBcPz4cUEQBOHWrVuCXC4X7ty5o3bd8OHDhYiIiAZjIKK/HvbQEVGbd+HCBSQkJMDIyEh11PaAZWRkqK5zc3NT/SyXy2FmZoY+ffqoyqysrAAABQUFDT4rLCwMeXl5+Oqrr+Dt7Y1vv/0WvXr1wqFDh54YY2pqKqZNm4aYmBj4+PgAAC5evIiamho4OzurxZ6UlKQWNxERJ0UQUZtXVlaGgIAArFq1qk6djY2N6ufnnntOrU4mk6mVyWQyAIBSqXzi8xQKBQICAhAQEICoqCiMHj0aUVFRGDlyZL3X5+Xl4aWXXsKrr76KGTNmqMUtl8tx7tw5yOVytXuMjIyeGAMR/bUwoSOiNkVPT6/O+LV+/fphz549cHR0hK5u6/6zJ5PJ4OrqipMnT9Zb//DhQwQGBsLV1RWrV69Wq/Pw8EBNTQ0KCgrw/PPPt0a4RCRR/ORKRG2Ko6Mjzpw5g+zsbNy7dw9KpRJhYWG4f/8+goKCcPbsWWRkZODgwYMICQnRePKCJtLS0hAYGIjdu3fjypUruHnzJmJjY/HZZ58hMDCw3ntmzZqFnJwcrF+/HoWFhcjLy0NeXh6qqqrg7OyMKVOm4JVXXsHevXuRlZWF5ORkREdH48cff2y2uIlI+thDR0RtyoIFCxAcHIyePXuioqICWVlZcHR0xIkTJ7Bo0SKMGjUKlZWVcHBwwJgxY6Cj03y/13bu3BmOjo5YtmyZanmS2vM333yz3nuSkpKQm5uLnj17qpUnJCTAz88PcXFxiIqKwltvvYU7d+7A3NwcXl5eePHFF5stbiKSPpkgCILYQRARERFR4/GTKxEREZHEMaEjIiIikjgmdEREREQSx4SOiIiISOKY0BERERFJHBM6IiIiIoljQkdEREQkcUzoiIiIiCSOCR0RERGRxDGhIyIiIpI4JnREREREEseEjoiIiEjimNARERERSRwTOiIiIiKJY0JHREREJHFM6IiIiIgkjgkdERERkcQxoSMiIiKSOCZ0RERERBLHhI6IiIhI4pjQEREREUkcEzoiIiIiiWNCR0RERCRxTOiIiIiIJI4JHREREZHEMaEjIiIikjgmdEREREQSx4SOiIiISOKY0BERERFJHBM6IiIiIoljQkdEREQkcUzoiIiIiCSOCR0RERGRxDGhIyIiIpI4JnREREREEseEjoiIiEjimNARERERSRwTOiIiIiKJY0JHREREJHFM6IiIiIgkjgkdERERkcQxoSMiIiKSOCZ0RERERBLHhI6IiIhI4pjQEREREUkcEzoiIiIiiWNCR0RERCRxTOiIiIiIJI4JHREREZHEMaEjIiIikjgmdEREREQSx4SOiIiISOKY0BERERFJHBM6IiIiIoljQkdEREQkcUzoiIiIiCROV+wAiIiIiP5qQkJCNLouLi5Oo+tkgiAITQmIiIiIiLQjl8sxZswY6OvrAwDKy8tx5MgRBAQEAAAqKysRHx8PpVKpUXtM6IiIiIhamVwux927d2FlZQUAyMrKgpubG0pLSwEAhYWFsLKy0jih4xg6IiIiIpH9uX9N2/42JnRERERErUyhUKCoqEh1XlRUhPLycpSVlQEA8vLyYGpqqnF7TOiIiIiIWpmrqys2bNgApVIJpVKJjRs3wtbWFgsWLMCJEyfwzjvvYODAgRq3xzF0RERERK1s//79ePnll2FoaAilUglDQ0McOHAA//jHP3Djxg3Y2dnhhx9+QJ8+fTRqjwkdERERkQiOHj2KH374Ae3atcPMmTNhZ2cHAPjtt99gZmamVVtM6IiIiIgkjmPoiIiIiCSOO0UQERERtTK5XK7R0iSarkPHhI6IiIhIBGvWrEGXLl2apS2OoSMiIiJqZXK5HOfPn4e7u3uztMcxdEREREQSx4SOiIiISOKY0BERERFJHCdFEBEREbWyY8eOoXv37gAe7+NaUlJS73UODg4atcdJEUREREStTBAErFq1CqtXr8a9e/fq1MtkMgiCwGVLWpogCCgtLYVCoYBMJhM7HCIiIpKQjRs3YvXq1ViyZAn69+8PY2PjJrXHHrpGKikpgbGxMYqLi9GhQwexwyEiIiIJ6du3L95++23885//bJb2OCmCiIiIqJVlZGTAy8ur2dpjQkdERM+MzMxMREREIDMzU+xQiFqUqalpvWPnGosJHRERPTNu376Ny5cv4/bt22KHQtSifHx88P777zc4u1VbjUrocnJyEBoaCltbW+jp6cHBwQHh4eH47bffVNf4+flBJpNBJpPBwMAAzs7OiI6Orncj2lOnTkEul+OFF16oU5ednQ2ZTAZLS0uUlpaq1fXt2xdLly5VK7t58yZCQ0Nhb28PfX19dOrUCcOHD8dXX32F6upq1XW1sf352LlzZ2NeCRERNYOKigq1P4naqpUrV+Lq1avo1KkTPDw84O/vX++hKa1nuWZmZsLb2xvOzs7YsWMHunTpgsuXL2PhwoWIj4/H6dOnYWpqCgCYOXMmli9fjsrKShw5cgT/93//BxMTE8yePVutzdjYWMydOxexsbG4e/cubG1t6zy3tLQUH330EZYtW9ZgbMnJyRgxYgR69eqFTz75BK6urgCAlJQUfPLJJ+jdu7fanmlxcXEYM2aMWhsmJibavhIiImom2dnZan8StVX29va4fPky9u7di+vXr6O4uLhJ7Wmd0IWFhUFPTw8//fQT2rVrpwrKw8MD3bp1wzvvvINNmzYBANq3bw9ra2sAQEhICGJiYnDo0CG1hK6srAy7du1CSkoK8vLysG3bNixZsqTOc+fOnYvVq1cjLCwMlpaWdeoFQcD06dPh7OyMEydOQEfn/3c+du/eHUFBQXV6B01MTFTxEREREbUmfX19BAUFNUtbWn1yvX//Pg4ePIjXX39dlczVsra2xpQpU7Br1646iZMgCDh27BiuXbsGPT09tbpvvvkGrq6ucHFxwdSpU/HZZ5/V+1k2KCgITk5OWL58eb2xpaWl4erVq1iwYIFaMvdHTVkvrrKyEiUlJWoHERER0bNAq4Tuxo0bEAQBPXr0qLe+R48eKCoqQmFhIYDHi+YZGRlBX18fQ4cOhVKpxBtvvKF2T2xsLKZOnQoAGDNmDIqLi5GUlFSnbZlMhpUrV2LLli3IyMioU3/9+nUAgIuLi6qsoKAARkZGqmPjxo1q9wQFBanVGxkZNTgQNzo6GsbGxqrDzs6uoddERERE9ERdunR56uHo6Khxe43aKULTtYinTJmCd955B0VFRYiMjMTgwYMxePBgVX16ejqSk5Oxb9++x8Ho6mLy5MmIjY2Fn59fnfZGjx6NIUOG4F//+he+/vrrpz7fzMwMaWlpAB5P0qiqqlKrX7NmDUaMGKFWVt/4PQCIiIjA/PnzVeclJSVM6oiIiKhRbt++jeXLl0OhUAAA7t27hw8//BCrVq0C8HhI2rvvvqtxe1oldE5OTpDJZLh69Sr+/ve/16m/evUqOnbsCAsLCwCAsbExnJycADz+tOrk5AQvLy9VEhUbG4vq6mq1JEoQBOjr6yMmJqbebTBWrlwJb29vLFy4UK28doPb9PR0eHh4AADkcrnq+bq6df+q1tbWqvqn0dfXh76+vkbXEhERET3Nq6++CisrKwCPJ52uWbNG9SWzoKBAq4ROq0+uZmZmGDlyJDZu3FhnSnleXh6++uorTJ48ud6xakZGRggPD8eCBQsgCAKqq6vx+eef4+OPP0ZaWprquHDhAmxtbbFjx456Yxg0aBDGjx+PxYsXq5V7eHjA1dUVH330kcYb2RIRERG1BVp/co2JicHgwYMxevRoREVFqS1b0qlTJ3zwwQcN3jtr1iy8//772LNnD3R1dVFUVIQZM2bU6YmbMGECYmNj8dprr9XbzgcffIBevXqp9brJZDLExcVh5MiR8PHxQUREBHr06IFHjx7h6NGjKCwshFwuV2vnwYMHyMvLUytTKBQwNDTU9rUQEVEzqB0zpM3YISJqxMLC3bt3R0pKCrp27YpJkyahW7du+L//+z/4+/vj1KlTqjXo6mNqaopXXnkFS5cuRWxsLEaMGFHvZ9UJEyYgJSUFv/zyS73tODs7IzQ0FA8fPlQr9/Lywrlz5+Di4oKwsDD07NkTgwcPxo4dO7BmzZo669+FhITAxsZG7diwYYO2r4SIiJpJ7QoKf15Jgeiv4M9fOLVZnUMmaDrDgdSUlJTA2NgYxcXF6NChg9jhEBG1CYmJiVi9ejXmz59f7+Q4orbi9ddfx6pVq1STIiorK5GSkgIfHx8Aj3dL2bBhA95++22N2mNC10hM6IiIml9mZia2bt2KmTNnomvXrmKHQyQZTOgaiQkdERERPSu0HkNHRERERM8WJnREREREEseEjoiIiOgZIwgCbt26pfH1LZ7Qbd68GQqFAtXV1aqysrIyPPfcc3VmMCUmJkImkyEjIwOOjo5Yu3ZtnfaWLl2Kvn371nvu6OgImUzW4DF9+nQAaLB+586dzfy3JyIiItJeYWEhunTpovH1jdrLVRv+/v4oKytDSkoKvLy8AADHjh2DtbU1zpw5g4cPH8LAwAAAkJCQAHt7e3Tr1q1Rzzp79ixqamoAACdPnsSECROQnp6umrTwx3WN4uLiMGbMGLX7TUxMGvVcIiIiouamzTp0LZ7Qubi4wMbGBomJiaqELjExEYGBgThy5AhOnz6t6qlLTEyEv79/o59Vu4csANUCx5aWlvUmaiYmJrC2tm70s4iIiIhakjYLkbR4Qgc87qVLSEhQ7b+akJCAt99+GzU1NUhISICfnx8qKipw5swZhIaGtkZIWqusrERlZaXqvKSkRMRoiIiISMqWLVv2xPqysjKt2mu1hG7evHmorq5GRUUFUlNT4evri0ePHmHz5s0AgFOnTqGyslKth27RokV499131dqqqqpCz549mxxTUFBQnb1dr1y5Ant7+3qvj46OfurLJyIiItLEd99998T6P8490ESrJHR+fn4oLy/H2bNnUVRUBGdnZ1hYWMDX1xchISF4+PAhEhMT0bVrV7WEauHChaqJDLXWr1+Po0ePNjmmNWvWYMSIEWpltra2DV4fERGB+fPnq85LSkpgZ2fX5DiIiIjor+f8+fNPrC8sLISVlZXG7bVKQufk5ITOnTsjISEBRUVF8PX1BfA4gbKzs8PJkyeRkJCAYcOGqd1nbm4OJycntbLasXFNZW1tXaftJ9HX14e+vn6zPJuIiIjoSbTdyKvV1qHz9/dHYmIiEhMT1ZYrGTp0KOLj45GcnNykCRFEREREbckzNcu1lr+/P8LCwvDo0SNVDx0A+Pr6Ys6cOaiqqmrVhO7BgwfIy8tTK1MoFDA0NGy1GIiIiIjqY2xsrNXY/VbtoauoqICTk5PaN2FfX1+UlpaqljdpLSEhIbCxsVE7NmzY0GrPJyIiIqrPvXv3MGXKFKxcuVLje2SCth9pCcDjSRHGxsYoLi5WLVxMRERE1BTfffcdZs2ahe7du2P79u3o2rWrRve12ifXtqY2D+Z6dERERH9tCoVCq/FuAOrs01pdXY33338f3377Ld5//321lTU0wR66RsrMzGz0FmVERETUdhQUFKjtVqUJuVwOQRAgk8lUf8pkMhw4cKDOsmqaYA9dI9Uun3L79m0YGxuLHE3bUbu+X05ODj9lNyO+15bB99r8+E5bBt9ry6h9r3p6elrfm5qaqnZeXV2NDz74AJMmTcLq1avrrMP7NEzoGklH5/F8EmNjY/6PowV06NCB77UF8L22DL7X5sd32jL4XluGtp9bAcDNza1O2Z49e/Dll1/ijTfewLfffoutW7c+cdODP2q1Wa5ERERE9GRTp07FpUuXUF1djd69e2t8H3voiIiIiJ4htra2OHjwIDZu3KjxPeyhayR9fX1ERkZyO7BmxvfaMvheWwbfa/PjO20ZfK8to6Xf6+uvv67xtZzlSkRERNTKunbt+tT9WgVBQHZ2tkbt8ZMrERERUSubN2+e6ud79+7hww8/xKpVq1RlZWVlePfddzVujz10RERERCLKzMyEu7s7SktLVWUFBQWwtraGUqnUqA2OoSMiIiISkZGRER4+fIiqqipVWUlJCdq3b69xG0zoiIiIiERkaWkJhUKBjz/+GABQU1ODjz76CC4uLhq3wYSukT755BM4OjrCwMAAnp6eSE5OFjskSTt69CgCAgJga2sLmUyG/fv3ix2S5EVHR2PgwIFQKBSwtLTEuHHjkJ6eLnZYkrdp0ya4ubmpFmj19vZGfHy82GG1OStXroRMJlMbZ0TaW7p0qWpLqdrD1dVV7LDahDt37mDq1KkwMzNDu3bt0KdPH6SkpDS6vSVLluDdd99Fx44dYWxsjK1btyIiIkLj+zkpohF27dqF+fPnY/PmzfD09MTatWsxevRopKenw9LSUuzwJKm8vBzu7u4IDQ3F+PHjxQ6nTUhKSkJYWBgGDhyI6upqLFmyBKNGjcKVK1dgaGgodniS1blzZ6xcuRLdu3eHIAjYvn07AgMDkZqail69eokdXptw9uxZfPrpp/WupE/a69WrF37++WfVua4u/9PfVEVFRfDx8YG/vz/i4+NhYWGBGzduoGPHjo1uc8GCBejduzcOHz4MPT09BAQEwMvLS+P7OSmiETw9PTFw4EDExMQAAJRKJezs7DB37lwsXrxY5OikTyaTYd++fRg3bpzYobQphYWFsLS0RFJSEoYOHSp2OG2KqakpPvzwQ8yYMUPsUCSvrKwM/fr1w8aNGxEVFYW+ffti7dq1YoclWUuXLsX+/fuRlpYmdihtyuLFi3HixAkcO3ZM7FBUmKZrqaqqCufOnVPrBtXR0cGIESNw6tQpESMjerLi4mIAj5MPah41NTX49ttvUV5eDm9vb7HDaRPCwsLwwgsvYMSIEYiKihI7nDbhxo0bsLW1hYGBAby9vREdHQ17e3uxw5K077//HqNHj8bEiRORlJSETp064fXXX8fMmTM1bmPZsmUaXRcZGanRdUzotHTv3j3U1NTAyspKrdzKygrXrl0TKSqiJ1MqlZg3bx58fHy02huQ6nfx4kV4e3vj4cOHMDIywr59+9CzZ0+xw5K8nTt34vz58zh79qzYobQZnp6e2LZtG1xcXJCbm4tly5bh+eefx6VLl6BQKMQOT7IyMzOxadMmzJ8/H0uWLMHZs2fxxhtvQE9PD8HBwRq1sXz5cvTq1Uv1CbyqqgrXrl1TDTWorq7GpUuXmNAR0f8XFhaGS5cu4fjx42KH0ia4uLggLS0NxcXF2L17N4KDg5GUlMSkrglycnIQHh6OQ4cOwcDAQOxw2oyxY8eqfnZzc4OnpyccHBzwzTffcIhAEyiVSgwYMAArVqwAAHh4eODSpUvYvHmzxgkdABw6dEjVQZSVlQU3NzecP38ewONhMtbW1hq3xVmuWjI3N4dcLkd+fr5aeX5+vlYvnqi1zJkzB//973+RkJCAzp07ix1Om6CnpwcnJyf0798f0dHRcHd3x7p168QOS9LOnTuHgoIC9OvXD7q6utDV1UVSUhLWr18PXV1d1NTUiB1im2BiYgJnZ2fcvHlT7FAkzcbGps4vcD169MDt27cb3eafpzQIgvDUrcH+iAmdlvT09NC/f38cPnxYVaZUKnH48GGOoaFniiAImDNnDvbt24cjR46gS5cuYofUZimVSlRWVoodhqQNHz4cFy9eRFpamuoYMGAApkyZgrS0NMjlcrFDbBPKysqQkZEBGxsbsUORNB8fnzrLQF2/fh0ODg4iRcRPro0yf/58BAcHY8CAARg0aBDWrl2L8vJyhISEiB2aZJWVlan9xpiVlYW0tDSYmppy8G4jhYWF4euvv8Z3330HhUKBvLw8AICxsTHatWsncnTSFRERgbFjx8Le3h6lpaX4+uuvkZiYiIMHD4odmqQpFIo64zsNDQ1hZmbGcZ9NsGDBAgQEBMDBwQF3795FZGQk5HI5goKCxA5N0t58800MHjwYK1aswKRJk5CcnIwtW7Zgy5YtGrdRX++bTCZrfFACNcqGDRsEe3t7QU9PTxg0aJBw+vRpsUOStISEBAFAnSM4OFjs0CSrvvcJQIiLixM7NEkLDQ0VHBwcBD09PcHCwkIYPny48NNPP4kdVpvk6+srhIeHix2GpE2ePFmwsbER9PT0hE6dOgmTJ08Wbt68KXZYbcIPP/wg9O7dW9DX1xdcXV2FLVu2aHV/u3bthPz8fNV5YWGhMHv2bNX5b7/9JvTo0UPj9rgOHREREZHEcQwdERERkcQxoSMiIiKSOCZ0RERERBLHhI6IiIhI4pjQEREREUkcEzoiIiIiiWNCR0RERCRxTOiIiFpRdnY2ZDIZ0tLSxA6FiNoQJnREJGnTp0/HuHHjVOd+fn6YN2+eaPFkZWXhn//8J2xtbWFgYIDOnTsjMDAQ165dAwDY2dkhNzeX21kRUbPiXq5ERM3k0aNHGDlyJFxcXLB3717Y2Njg119/RXx8PB48eAAAkMvlsLa2FjdQImpz2ENHRG3G9OnTkZSUhHXr1kEmk0EmkyE7OxsAcOnSJYwdOxZGRkawsrLCtGnTcO/ePdW9fn5+mDt3LubNm4eOHTvCysoKW7duRXl5OUJCQqBQKODk5IT4+PgGn3/58mVkZGRg48aN8PLygoODA3x8fBAVFQUvLy8AdT+5Tp8+XRXrH4/ExEQAQGVlJRYsWIBOnTrB0NAQnp6eqjoiolpM6IiozVi3bh28vb0xc+ZM5ObmIjc3F3Z2dnjw4AGGDRsGDw8PpKSk4MCBA8jPz8ekSZPU7t++fTvMzc2RnJyMuXPnYvbs2Zg4cSIGDx6M8+fPY9SoUZg2bRp+//33ep9vYWEBHR0d7N69GzU1NRrHXBtrbm4uwsPDYWlpCVdXVwDAnDlzcOrUKezcuRO//PILJk6ciDFjxuDGjRtNe1lE1LYIREQSFhwcLAQGBqrOfX19hfDwcLVr3n//fWHUqFFqZTk5OQIAIT09XXXfkCFDVPXV1dWCoaGhMG3aNFVZbm6uAEA4depUg/HExMQI7du3FxQKheDv7y8sX75cyMjIUNVnZWUJAITU1NQ69+7Zs0cwMDAQjh8/LgiCINy6dUuQy+XCnTt31K4bPny4EBER0WAMRPTXwx46ImrzLly4gISEBBgZGamO2h6wjIwM1XVubm6qn+VyOczMzNCnTx9VmZWVFQCgoKCgwWeFhYUhLy8PX331Fby9vfHtt9+iV69eOHTo0BNjTE1NxbRp0xATEwMfHx8AwMWLF1FTUwNnZ2e12JOSktTiJiLipAgiavPKysoQEBCAVatW1amzsbFR/fzcc8+p1clkMrUymUwGAFAqlU98nkKhQEBAAAICAhAVFYXRo0cjKioKI0eOrPf6vLw8vPTSS3j11VcxY8YMtbjlcjnOnTsHuVyudo+RkdETYyCivxYmdETUpujp6dUZv9avXz/s2bMHjo6O0NVt3X/2ZDIZXF1dcfLkyXrrHz58iMDAQLi6umL16tVqdR4eHqipqUFBQQGef/751giXiCSKn1yJqE1xdHTEmTNnkJ2djXv37kGpVCIsLAz3799HUFAQzp49i4yMDBw8eBAhISEaT17QRFpaGgIDA7F7925cuXIFN2/eRGxsLD777DMEBgbWe8+sWbOQk5OD9evXo7CwEHl5ecjLy0NVVRWcnZ0xZcoUvPLKK9i7dy+ysrKQnJyM6Oho/Pjjj80WNxFJH3voiKhNWbBgAYKDg9GzZ09UVFQgKysLjo6OOHHiBBYtWoRRo0ahsrISDg4OGDNmDHR0mu/32s6dO8PR0RHLli1TLU9Se/7mm2/We09SUhJyc3PRs2dPtfKEhAT4+fkhLi4OUVFReOutt3Dnzh2Ym5vDy8sLL774YrPFTUTSJxMEQRA7CCIiIiJqPH5yJSIiIpI4JnREREREEseEjoiIiEjimNARERERSRwTOiIiIiKJY0JHREREJHFM6IiIiIgkjgkdERERkcQxoSMiIiKSOCZ0RERERBLHhI6IiIhI4pjQEREREUkcEzoiIiIiiWNCR0RERCRxTOiIiIiIJI4JHREREZHEMaEjIiIikjgmdEREREQSx4SOiIiISOKY0BERERFJHBM6IiIiIoljQkdEREQkcUzoiIiIiCSOCR0RERGRxDGhIyIiIpI4JnREREREEseEjoiIiEjimNARERERSRwTOiIiIiKJY0JHREREJHFM6IiIiIgkjgkdERERkcQxoSMiIiKSOCZ0RERERBLHhI6IiIhI4pjQEREREUkcEzoiIiIiiWNCR0RERCRxTOiIiIiIJI4JHREREZHE6YodABEREdFfTUhIiEbXxcXFaXQdEzoiIiKiVlZcXKx2fufOHVy4cAF/+9vfGtUeEzoiIiKiVrZ3717Vzzk5OfDz88OjR4/g7OyMlStXat0ex9ARERERieTXX3+Fn58fOnXqhMOHD2PTpk3497//rXU77KEjIiIiEsHdu3fh7+8PW1tbxMfHw9DQEN999x1eeOEFmJqa4tVXX9W4LSZ0RERERK0sNzcXfn5+sLKywoEDB2BoaAgA8PPzw44dOzB58mSYmJjg5Zdf1qg9mSAIQksGTERERETqXF1dYWZmhoMHD8LIyKhO/eeff45Zs2ahoqJCo/bYQ0dERETUyszMzHDgwIF6kzkAeOWVV/Dbb79p3B576IiIiIhaWVlZWYPJXGMwoSMiIiJqZZosLCwIArZt26ZRe0zoiIiIiFrZ+PHjG6yrqanBzz//jIqKCiiVSo3a4xg6IiIiolb2x4WF/+i7777DkiVLYGBggMjISI3b48LCRERERCI7duwYBg8ejKCgILz44ovIzMzE22+/rfH9TOiIiIiIRHLp0iUEBARg+PDh6NWrF27evIlVq1bB2NhYq3aY0BERERG1slu3biE4OBh9+/aFrq4uLl68iK1bt8LW1rZR7XFSBBEREVErMzAwgI6ODt544w14e3s3eF1gYKBG7TGhIyIiImplurq6eFoKJgiCxrNcmdARERERSRzH0BERERFJHNehIyIiIhLJlStXkJ6ejpKSknrrg4ODNWqHn1yJiIiIWllJSQkmTZqEQ4cOQVdXF4aGhnWuEQQBRUVFGrXHHjoiIiKiVhYZGYmCggKcO3cOffv2bXJ77KEjIiIiamXOzs7YvHkzhg0b1iztcVIEERERUSu7e/cuunbt2mztMaEjIiIiamWdO3fGtWvXmq09jqEjIiIiamXjx4/Hm2++CT09PfTv31/rvVv/jGPoiIiIiFrZ77//jpkzZ2Lnzp1P3DGCO0UQERERPeNyc3Nx/fp1FBcX11v/0ksvadQOEzoiIiIiieMYOiIiIiKRJCcn4+uvv8b169chk8ng5OSEKVOmYNCgQVq1wx46IiIiIhEsXrwYH374IYyMjFRLmGRmZqK0tBQRERH44IMPNG6Ly5YQERERtbLdu3dj9erVWLt2Le7fv4/U1FSkpqbi/v37WL9+Pf79739jz549GrfHHjoiIiKiVubv749BgwZh1apV9dYvXrwYZ86cQUJCgkbtsYeOiIiIqJWlpqbi73//e4P148aNQ2pqqsbtMaEjIiIiamVKpRK2trYN1tva2qKmpkbj9pjQNZIgCCgpKXniYoBERERE9enWrRtu3LjRYP2NGzfQrVs3jdtjQtdIpaWlMDY2RmlpqdihEBERkcS8/PLL+PTTTxus37x5MyZMmKBxe0zoiIiIiFrZ3Llz8fzzz9e7Q0RJSQmGDh2KOXPmaNweZ7k2UklJCYyNjVFcXIwOHTqIHQ4RUZuQmZmJrVu3YubMmap1uYjo6bhTBBERPTNu376Ny5cv4/bt20zoqE3bvn27RtcFBwdrdF2jErqcnBxERkbiwIEDuHfvHmxsbDBu3Di89957MDMzAwD4+fkhKSkJAKCvrw97e3uEhIRg8eLFkMlkau2dOnUKQ4YMwZgxY/Djjz+q1WVnZ6NLly6wsLBARkYGFAqFqq5v374YN24cli5dqiq7efMmVqxYgZ9//hn5+fkwNzeHq6srQkNDMXnyZOjqPv4r/zmGWjt27MA//vGPxrwWIiJqooqKCrU/idqqN998U+28uroaFRUVanmOIAgaJ3Raj6HLzMzEgAEDcOPGDezYsQM3b97E5s2bcfjwYXh7e+P+/fuqa2fOnInc3Fykp6cjIiIC7733HjZv3lynzdjYWMydOxdHjx7F3bt3631uaWkpPvrooyfGlpycjH79+uHq1av45JNPcOnSJSQmJuLVV1/Fpk2bcPnyZbXr4+LikJubq3aMGzdO21dCRETNJDs7W+1Porbq/v37qiM/Px/PP/88AOCzzz5TlRcVFWncntYJXVhYGPT09PDTTz/B19cX9vb2GDt2LH7++WfcuXMH77zzjura9u3bw9raGg4ODggJCYGbmxsOHTqk1l5ZWRl27dqF2bNn44UXXsC2bdvqfe7cuXOxevVqFBQU1FsvCAKmT58OZ2dnnDhxAgEBAejevTu6d++OoKAgHD9+HG5ubmr3mJiYwNraWu0wMDDQ9pUQERERNUpVVRX+/ve/Iy0tDe+88w7++c9/4siRI1q3o1VCd//+fRw8eBCvv/462rVrp1ZnbW2NKVOmYNeuXXXWZhMEAceOHcO1a9egp6enVvfNN9/A1dUVLi4umDp1Kj777LN613YLCgqCk5MTli9fXm9saWlpuHr1KhYsWAAdnfr/Wg19ZtVEZWUlSkpK1A4iIiKixqqursbLL7+Mc+fO4fDhw1i6dCmWL1+OcePG4ezZs1q1pVVCd+PGDQiCgB49etRb36NHDxQVFaGwsBAAsHHjRhgZGUFfXx9Dhw6FUqnEG2+8oXZPbGwspk6dCgAYM2YMiouLVWPv/kgmk2HlypXYsmULMjIy6tRfv34dAODi4qIqKygogJGRkerYuHGj2j1BQUFq9UZGRrh9+3a9f7fo6GgYGxurDjs7u4ZeExEREdET1dTU4OWXX8bZs2eRkJAAV1dXAMCCBQswZ84c/O1vf8PVq1c1bq9R69BputLJlClTkJaWhhMnTmDs2LF45513MHjwYFV9eno6kpOTERQUBADQ1dXF5MmTERsbW297o0ePxpAhQ/Cvf/1Lo+ebmZkhLS0NaWlpMDExQVVVlVr9mjVrVPW1R0PbcERERKC4uFh15OTkaBQDERER0Z9NnDgRp0+fxpEjR1TJXK0VK1ZgwoQJGD16tMbtaTXL1cnJCTKZDFevXq13Q9mrV6+iY8eOsLCwAAAYGxvDyckJwONPq05OTvDy8sKIESMAPO6dq66uVkuiBEGAvr4+YmJiYGxsXOcZK1euhLe3NxYuXKhW3r17dwCPk0QPDw8AgFwuVz2/dnbrH1lbW6vqn0ZfXx/6+voaXUtERET0JCdPnsSRI0ca/Oq5efNmTJ48WeP2tOqhMzMzw8iRI7Fx48Y6U8rz8vLw1VdfYfLkyfWOVTMyMkJ4eDgWLFgAQRBQXV2Nzz//HB9//LFaD9mFCxdga2uLHTt21BvDoEGDMH78eCxevFit3MPDA66urvjoo4+gVCq1+WsRERERtaojR46gZ8+eT7zmq6++0rg9rdehi4mJweDBgzF69GhERUWhS5cuuHz5MhYuXIhOnTrhgw8+aPDeWbNm4f3338eePXugq6uLoqIizJgxo05P3IQJExAbG4vXXnut3nY++OAD9OrVS63XTSaTIS4uDiNHjoSPjw8iIiLQo0cPPHr0CEePHkVhYSHkcrlaOw8ePEBeXp5amUKhgKGhobavhYiImoGjo6Pan0Rt1dmzZ5868aF2BQ9NaJ3Qde/eHSkpKYiMjMSkSZNw//59WFtbY9y4cYiMjISpqWmD95qamuKVV17B0qVL0aVLF4wYMaLez6oTJkzAv//9b/zyyy/1bqvl7OyM0NBQbNmyRa3cy8sL586dw4oVKxAWFoa8vDwYGhrC3d0da9asQWhoqNr1ISEhddqOjo6u0/tHRESto3YFhT+vpEDU1oSGhsLQ0LDeIWG1tEnouJdrI3EvVyKi5se9XOmvQi6X4/z583B3d2+W9riXKxERPTO6du2K6OhoscMgkpxGLVtCRERERM8OJnREREREEseEjoiIiKiVdevWrVnXt23xhG7z5s1QKBSorq5WlZWVleG5556Dn5+f2rWJiYmQyWTIyMiAo6Mj1q5dW6e9pUuXom/fvvWeOzo6QiaTNXjUzhRpqH7nzp3N/LcnIiIiquv69et1dohoihafFOHv74+ysjKkpKTAy8sLAHDs2DFYW1vjzJkzePjwIQwMDAAACQkJsLe3R7du3Rr1rLNnz6KmpgbA4xWYJ0yYgPT0dNUs1D9Og4+Li8OYMWPU7jcxMWnUc4mIiIi0Ud/SafWJi4vT6LoW76FzcXGBjY0NEhMTVWWJiYkIDAxEly5dcPr0abVyf3//Rj/LwsIC1tbWsLa2Vq2HZ2lpqSr745p3JiYmqvLaozaxJCIiImpJn3/+OQoKClR7xN+9exdffvml6rygoADbt2/XuL1WWbbE398fCQkJqgV7ExIS8Pbbb6OmpgYJCQnw8/NDRUUFzpw5U2fxXyIiIqK26LPPPoOVlRUAICsrC25ubti7dy8AoLCwENbW1hq31WoJ3bx581BdXY2KigqkpqbC19cXjx49wubNmwEAp06dQmVlpVoP3aJFi/Duu++qtVVVVfXUvc80ERQUVGcrsCtXrsDe3r7e6ysrK1FZWak6LykpaXIMRERERMDjXSH+fK7N3g+tktD5+fmhvLwcZ8+eRVFREZydnWFhYQFfX1+EhITg4cOHSExMRNeuXdUSqoULF9bZ8mL9+vU4evRok2Nas2YNRowYoVZma2vb4PXR0dFYtmxZk59LRERE1NxaJaFzcnJC586dkZCQgKKiIvj6+gJ4nEDZ2dnh5MmTSEhIwLBhw9TuMzc3h5OTk1rZk/aK1Ya1tXWdtp8kIiIC8+fPV52XlJTAzs6uWWIhIiIikslkTzx/klbb+svf3x+JiYkoKirCwoULVeVDhw5FfHw8kpOTMXv27NYKR2v6+vrNul4MERER/XW5uLhAV/f/p2GmpqZYsmSJ6lxfXx+jR4/WuL1WTejCwsLw6NEjVQ8dAPj6+mLOnDmoqqpq0gxXbT148AB5eXlqZQqFAoaGhq0WAxEREf01XblyRe3cxMRENXkUAIyNjfG///1P4/ZabacIf39/VFRUwMnJSTWjA3ic0JWWlqqWN2ktISEhsLGxUTs2bNjQas8nIiIiai4yQZspFKRSUlICY2NjFBcXqxYuJiIiIhID93IlIiIikrhWG0PX1tR2bHI9OiIior82hUKh1YzUlsCErpF+++03AODSJURERH9xBQUFsLCwEDUGJnSNVLse3u3bt9X2iKWmqV3fLycnh2MTmxHfa8vge21+fKctg++1ZdS+Vz09Pa3v1XSzgsjISI2uY0LXSDo6j4cfGhsb838cLaBDhw58ry2A77Vl8L02P77TlsH32jIa87n1u+++UzuvqqrCtWvX4ObmpioTBIEJHREREdGz6vz582rnWVlZcHNzq1OuKc5yJSIiIhJZU1eRY0LXSPr6+oiMjOR2YM2M77Vl8L22DL7X5sd32jL4XlvGs/ReubAwERERkcgyMzPh7u6O0tLSRt3PMXRERERErezWrVtq57/++isEQUB2drbaJAsHBweN2mMPHREREVErk8vlauPmapO42jKZTAZBEKBUKjVqjz10RERERK0sNTW1WdtjDx0RERGRxHGWayN98skncHR0hIGBATw9PZGcnCx2SJJ29OhRBAQEwNbWFjKZDPv37xc7JMmLjo7GwIEDoVAoYGlpiXHjxiE9PV3ssCRv06ZNcHNzUy3Q6u3tjfj4eLHDanNWrlwJmUyGefPmiR2KpC1duhQymUztcHV1FTusNuHOnTuYOnUqzMzM0K5dO/Tp0wcpKSka33/r1i2NDk3xk2sj7Nq1C/Pnz8fmzZvh6emJtWvXYvTo0UhPT4elpaXY4UlSeXk53N3dERoaivHjx4sdTpuQlJSEsLAwDBw4ENXV1ViyZAlGjRqFK1euwNDQUOzwJKtz585YuXIlunfvDkEQsH37dgQGBiI1NRW9evUSO7w24ezZs/j000/VVsynxuvVqxd+/vln1bmuLv/T31RFRUXw8fGBv78/4uPjYWFhgRs3bqBjx44at9G1a1cIgqAaK/dn2o6h4yfXRvD09MTAgQMRExMDAFAqlbCzs8PcuXOxePFikaOTPplMhn379mHcuHFih9KmFBYWwtLSEklJSRg6dKjY4bQppqam+PDDDzFjxgyxQ5G8srIy9OvXDxs3bkRUVBT69u2LtWvXih2WZC1duhT79+9HWlqa2KG0KYsXL8aJEydw7NixRrchl8tx6NAhmJubA3g8y3XSpEk4efIkAOD+/fsYNmyYxgkdP7lqqaqqCufOncOIESNUZTo6OhgxYgROnTolYmRET1ZcXAzgcfJBzaOmpgY7d+5EeXk5vL29xQ6nTQgLC8MLL7yg9m8sNc2NGzdga2uLrl27YsqUKbh9+7bYIUne999/jwEDBmDixImwtLSEh4cHtm7dqnU7vXr1gpubG9zc3ODq6gqZTKY679mzp1ZtMaHT0r1791BTUwMrKyu1cisrK+Tl5YkUFdGTKZVKzJs3Dz4+Pujdu7fY4UjexYsXYWRkBH19fbz22mvYt2+f1v/4Ul07d+7E+fPnER0dLXYobYanpye2bduGAwcOYNOmTcjKysLzzz/f6MVr6bHMzExs2rQJ3bt3x8GDBzF79my88cYb2L59u2gx8UM60V9AWFgYLl26hOPHj4sdSpvg4uKCtLQ0FBcXY/fu3QgODkZSUhKTuibIyclBeHg4Dh06BAMDA7HDaTPGjh2r+tnNzQ2enp5wcHDAN998wyECTaBUKjFgwACsWLECAODh4YFLly5h8+bNCA4O1qiN5h7xxh46LZmbm0MulyM/P1+tPD8/H9bW1iJFRdSwOXPm4L///S8SEhLQuXNnscNpE/T09ODk5IT+/fsjOjoa7u7uWLdundhhSdq5c+dQUFCAfv36QVdXF7q6ukhKSsL69euhq6uLmpoasUNsE0xMTODs7IybN2+KHYqk2djY1PkFrkePHlp9zv7jbhANldV3TUOY0GlJT08P/fv3x+HDh1VlSqUShw8f5hgaeqYIgoA5c+Zg3759OHLkCLp06SJ2SG2WUqlEZWWl2GFI2vDhw3Hx4kWkpaWpjgEDBmDKlClIS0uDXC4XO8Q2oaysDBkZGbCxsRE7FEnz8fGpswzU9evXNd6mCwB27NgBExMT1XnXrl1RUlKiOjczM9NqbD4/uTbC/PnzERwcjAEDBmDQoEFYu3YtysvLERISInZoklVWVqb2G2NWVhbS0tJgamoKe3t7ESOTrrCwMHz99df47rvvoFAoVGM8jY2N0a5dO5Gjk66IiAiMHTsW9vb2KC0txddff43ExEQcPHhQ7NAkTaFQ1BnfaWhoCDMzM477bIIFCxYgICAADg4OuHv3LiIjIyGXyxEUFCR2aJL25ptvYvDgwVixYgUmTZqE5ORkbNmyBVu2bNG4jV9//RUlJSWwsLCot14ul2PQoEGaByVQo2zYsEGwt7cX9PT0hEGDBgmnT58WOyRJS0hIEADUOYKDg8UOTbLqe58AhLi4OLFDk7TQ0FDBwcFB0NPTEywsLIThw4cLP/30k9hhtUm+vr5CeHi42GFI2uTJkwUbGxtBT09P6NSpkzB58mTh5s2bYofVJvzwww9C7969BX19fcHV1VXYsmWLVvebmpoKenp6woQJE4T//e9/Qk1NTZPi4Tp0RERERK2spqYGR44cwbZt27Bjxw506tQJwcHBCAkJQbdu3bRuj2PoiIiIiFqZXC7HyJEj8c4770BXVxfr16/H1atX0adPHwwbNgxfffUVHj58qHF77KEjIiIiEsmVK1fg7u6OR48eAQBKSkqwa9cufPnll7h48SLu37+vUTvsoSMiIiJ6RtTU1EAQBAiCoNW+u0zoiIiIiES2e/dujB8/Hp06dcKePXswd+5c3LlzR+P7+cmViIiIqJU9evQIhw8fxhdffIGdO3fC3t4eISEhCAkJgZ2dndbtcR06IiIiolZmbW2N33//HX//+9/x008/Yfjw4U1qjz10RERERK0sJiYGU6dOVdstoimY0BERtaLs7Gx06dIFqamp6Nu3r9jhEFEbwYSOiCRt+vTpePDgAfbv3w8A8PPzQ9++fbF27VpR4snKysI777yDxMRE3L9/H+bm5ujfvz9WrVoFV1dX1NTUoLCwEObm5lrNYCOitkWT/bUFQUB2drZG7fFfEyKiZvLo0SOMHDkSLi4u2Lt3L2xsbPDrr78iPj4eDx48APB4MVFra2txAyUi0d2+fRvLly+HQqGot76srAzvvvuu5g02aeMwIiKRBQcHC4GBgaqf8ae9a7OysgRBEISLFy8KY8aMEQwNDQVLS0th6tSpQmFhoaodX19fYc6cOUJ4eLhgYmIiWFpaClu2bBHKysqE6dOnC0ZGRkK3bt2E//3vfw3GkpqaKgAQsrOzG7wmKytLACCkpqY2GDMAISEhQRAEQXj48KHw1ltvCba2tkL79u2FQYMGqeqISLp0dHSEvLy8Buvz8/MFmUymeXtNyS6JiJ4l69atg7e3N2bOnInc3Fzk5ubCzs4ODx48wLBhw+Dh4YGUlBQcOHAA+fn5mDRpktr927dvh7m5OZKTkzF37lzMnj0bEydOxODBg3H+/HmMGjUK06ZNw++//17v8y0sLKCjo4Pdu3ejpqZG45hrY83NzUV4eDgsLS3h6uoKAJgzZw5OnTqFnTt34pdffsHEiRMxZswY3Lhxo2kvi4hEpaenp9odoj5VVVUwMDDQvMHmyDKJiMTyxx46QXjc0xYeHq52zfvvvy+MGjVKrSwnJ0cAIKSnp6vuGzJkiKq+urpaMDQ0FKZNm6Yqy83NFQAIp06dajCemJgYoX379oJCoRD8/f2F5cuXCxkZGar6P/fQ/dGePXsEAwMD4fjx44IgCMKtW7cEuVwu3LlzR+264cOHCxEREQ3GQETPPkdHR+Ho0aMN1h87dkxwdHTUuD320BFRm3fhwgUkJCTAyMhIddT2gGVkZKiuc3NzU/0sl8thZmaGPn36qMqsrKwAAAUFBQ0+KywsDHl5efjqq6/g7e2Nb7/9Fr169cKhQ4eeGGNqaiqmTZuGmJgY+Pj4AAAuXryImpoaODs7q8WelJSkFjcRSY+Xlxe++OKLBuu/+OILDBo0SOP2OCmCiNq8srIyBAQEYNWqVXXqbGxsVD8/99xzanUymUytTCaTAQCUSuUTn6dQKBAQEICAgABERUVh9OjRiIqKwsiRI+u9Pi8vDy+99BJeffVVzJgxQy1uuVyOc+fOQS6Xq91jZGT0xBiI6Nk2e/ZsDBs2DNbW1pg3bx5MTU0BAEVFRVi3bh3+85//4Oeff9a4PSZ0RNSm6Onp1Rm/1q9fP+zZsweOjo6tvlSITCaDq6srTp48WW/9w4cPERgYCFdXV6xevVqtzsPDAzU1NSgoKMDzzz/fGuESUSsZOnQoVq5ciSVLluCDDz6AhYUFZDIZCgoKoKOjg6ioKPj7+2vcHhM6ImpTHB0dcebMGWRnZ8PIyAimpqYICwvD1q1bERQUhLfffhumpqa4efMmdu7cif/85z91er8aKy0tDZGRkZg2bRp69uwJPT09JCUl4bPPPsOiRYvqvWfWrFnIycnB4cOHUVhYqCo3NTWFs7MzpkyZgldeeQUff/wxPDw8UFhYiMOHD8PNzQ0vvPBCs8RNROJYsGABxo8fj/379yMrKwuCIMDR0RGBgYHo3r27Vm0xoSOiNmXBggUIDg5Gz549UVFRgaysLDg6OuLEiRNYtGgRRo0ahcrKSjg4OGDMmDHQ0Wm+ocSdO3eGo6Mjli1bhuzsbMhkMtX5m2++We89SUlJyM3NRc+ePdXKExIS4Ofnh7i4OERFReGtt97CnTt3YG5uDi8vL7z44ovNFjcRiadr166YP39+k9vhThFEREREEsdZrkREREQSx4SOiIiISOKY0BERERFJHBM6IiIiIoljQkdEREQkcUzoiIiIiCSOCR0RERGRxDGhIyIiIpI4JnREREREEseEjoiIiEjimNARERERSRwTOiIiIiKJY0JHREREJHFM6IiIiIgkjgkdERERkcQxoSMiIiKSOCZ0RERERBKnK3YARERERH81ISEhGl0XFxen0XVM6IiIiIhaWXFxsdp5eXk5jhw5goCAgEa1JxMEQWiOwIiIiIiocbKysuDm5obS0tJG3c8xdEREREQia2r/GhM6IiIiIoljQkdEREQkcZwUQURERNTKkpKS1M7v3LmDmpoaJCYmQiaTqcp9fX01ao+TIoiIiIhamVwuhyAIasnbnwmCAKVSqVF77KEjIiIiamVFRUXN2h576IiIiIgkjpMiiIiIiESyc+dOjBs3Dj179kTPnj0xbtw47Nq1S+t22ENHRERE1MqUSiUmTpyI/fv3o3v37ujRowdkMhmuXr2K9PR0TJgwAbt27YKOjmZ9bxxDR0RERNTK1q5di6SkJHz//fd44YUX1Or+97//Ydq0aVi3bh3efPNNjdpjDx0RERFRK3Nzc8O8efMQGhpab31cXBzWrFmDX375RaP2mNARERERtbJ27drh2rVrcHBwqLf+1q1bcHV1RUVFhUbtcVIEERERUSszMDBAcXFxg/UlJSVo166dxu0xoSMiIiJqZd7e3vjkk08arI+JiYGXl5fG7XFSBBEREVEre++99+Dr64t79+7hrbfeQs+ePQEAV69exccff4zvv/8eiYmJGrfHMXREREREIvjhhx8wY8YM3Lt3T63c3Nwc//nPf/DSSy9p3BYTOiIiIiKRVFRU4NChQ7h+/ToAwNnZGSNHjtRq/BzAhI6IiIjomZSeng4XFxeNruUYOiIiIqJnQEZGBhISElRHXl4elEqlRvcyoSMiIiISQXZ2tip5S0xMxK+//gojIyMMGTIE8+bNg5+fn8Zt8ZMrERERUSvr0qULbt26BUNDQ/j4+MDf3x9+fn4YOHCgxvu3/hETOiIiIqJWpqurCyMjI4SEhGDkyJF4/vnnoVAoGt0eEzoiIiKiVlZQUICkpCQkJSUhMTER169fh4eHB/z8/ODv748hQ4bAyMhI4/aY0BERERGJ7LfffkNiYqIqwUtPT4eHhwdOnz6t0f2cFEFEREQkMjMzM/j4+ECpVEKpVKK4uBgXLlzQ+H720BERERGJICcnB0lJSTh69CiOHj2KW7duwdPTE8OGDYOfnx+8vLygp6enUVtM6IiIiIhaWdeuXXH37l14enrCz88Pw4YNg7e3t8YJ3J9pPy+WiIiIiJrk9u3bkMlkEAQBgiCoPrU2FnvoiIiIiFpZfn4+EhMTVQsL37x5E3p6ehg0aBD8/f3h6+uLwYMHQ19fX6P2mNARERERiezOnTtq237dunULenp6qKio0Oh+JnREREREz5jbt2/j8OHDCAkJ0eh6JnREREREEsd16IiIiIhamSY9b4IgYNu2bRq1xx46IiIiolYml8sxZsyYBic9VFZWIj4+XuOZr0zoiIiIiFqZXC7H3bt3YWVlVW99YWEhrK2tUVNTo1F7XIeOiIiIqJXp6uo+MVmrrq6GXC7XuD0mdEREREStrGPHjsjPz2+wPj8/H6amphq3x4SOiIiIqJW5u7sjPj6+wfoDBw7Azc1N4/aY0BERERG1silTpmDlypU4cuRInbqEhASsWLECQUFBGrfHSRFEREREIhg3bhy+//579OnTBz169IBMJsO1a9dw4cIF/O1vf8MPP/wAmUymUVtM6IiIiIhEIAgCvvjiC+zevRtZWVkQBAGOjo4YP348pk+fDh0dzT+kMqEjIiIikjiOoSMiIiKSOG79RURERNTKunTp8tRrBEFAdna2Ru3xkysRERFRK5PL5Vi+fDkUCgUA4N69e/jwww+xatUqAEBZWRneffddbv1FRERE9Kz689ZfmZmZcHd3R2lpKQCgoKAA1tbWGid0HENHREREJHFM6IiIiIgkjgkdERER0TPgz4sIa7qoMMCEjoiIiKjVzZo1C+3bt1edd+rUSW1vV4VCgejoaI3b46QIIiIiIonjOnRERERErezWrVsaXefg4KDRdeyhIyIiImplcrkcgiBAJpPhj6nYn881XbaEPXRERERErSw1NbXeckEQsGPHDmzYsEG16LAm2ENHRERE9Az46aefEBERgZs3b2L+/PlYsGABDA0NNbqXs1wbSRAElJSUgPkwERERNcXZs2cxfPhwBAQEYPDgwcjIyEBkZKTGyRzAhK7RSktLYWxsrNqig4iIiEgbN27cwOTJkzF48GDY2Njg2rVr2LBhA8zNzbVuiwkdERERUSt77bXX0KtXLxQXF+Ps2bP48ssv0aVLl0a3xzF0jVRSUgJjY2MUFxejQ4cOYodDREREEiKXy2FgYAAXF5cnDt9qaPLEnzWqhy4nJwehoaGwtbWFnp4eHBwcEB4ejt9++011jZ+fH2QyGWQyGQwMDODs7Izo6Oh6gz516hTkcjleeOGFOnXZ2dmQyWSwtLSs83mzb9++WLp0qVrZzZs3ERoaCnt7e+jr66NTp04YPnw4vvrqK1RXV6uuq43tz8fOnTsb80qIiIiINBYZGYlFixZh3Lhx+Pvf/97goSmtly3JzMyEt7c3nJ2dsWPHDnTp0gWXL1/GwoULER8fj9OnT8PU1BQAMHPmTCxfvhyVlZU4cuQI/u///g8mJiaYPXu2WpuxsbGYO3cuYmNjcffuXdja2tZ5bmlpKT766CMsW7aswdiSk5MxYsQI9OrVC5988glcXV0BACkpKfjkk0/Qu3dvuLu7q66Pi4vDmDFj1NowMTHR9pUQERERaeW9995r1va0TujCwsKgp6eHn376Ce3atQMA2Nvbw8PDA926dcM777yDTZs2AQDat28Pa2trAEBISAhiYmJw6NAhtYSurKwMu3btQkpKCvLy8rBt2zYsWbKkznPnzp2L1atXIywsDJaWlnXqBUHA9OnT4ezsjBMnTkBH5/93Pnbv3h1BQUF1egdNTExU8RERERFJlVafXO/fv4+DBw/i9ddfVyVztaytrTFlyhTs2rWrTuIkCAKOHTuGa9euQU9PT63um2++gaurK1xcXDB16lR89tln9X6WDQoKgpOTE5YvX15vbGlpabh69SoWLFiglsz9kUwm0+avS0RERCQJWiV0N27cgCAI6NGjR731PXr0QFFREQoLCwEAGzduhJGREfT19TF06FAolUq88cYbavfExsZi6tSpAIAxY8aguLgYSUlJddqWyWRYuXIltmzZgoyMjDr1169fBwC4uLioygoKCmBkZKQ6Nm7cqHZPUFCQWr2RkRFu375d79+tsrISJSUlagcRERHRs6BRkyI0nRg7ZcoUpKWl4cSJExg7dizeeecdDB48WFWfnp6O5ORkBAUFAQB0dXUxefJkxMbG1tve6NGjMWTIEPzrX//S6PlmZmZIS0tDWloaTExMUFVVpVa/Zs0aVX3tUd/4PQCIjo6GsbGx6rCzs9MoBiIiIqKWptUYOicnJ8hkMly9erXemRdXr15Fx44dYWFhAQAwNjaGk5MTgMefVp2cnODl5YURI0YAeNw7V11drZZECYIAfX19xMTEwNjYuM4zVq5cCW9vbyxcuFCtvHv37gAeJ4keHh4AHk8Jrn2+rm7dv6q1tbWq/mkiIiIwf/581XlJSQmTOiIiImox6enpal8en0SrHjozMzOMHDkSGzduREVFhVpdXl4evvrqK0yePLnesWpGRkYIDw/HggULIAgCqqur8fnnn+Pjjz9W6yG7cOECbG1tsWPHjnpjGDRoEMaPH4/FixerlXt4eMDV1RUfffQRlEqlNn8tjejr66NDhw5qBxEREVFzycjIwH/+8x9MmTIFtra2DQ5xq4/Ws1xjYmIwePBgjB49GlFRUWrLlnTq1AkffPBBg/fOmjUL77//Pvbs2QNdXV0UFRVhxowZdXriJkyYgNjYWLz22mv1tvPBBx+gV69ear1uMpkMcXFxGDlyJHx8fBAREYEePXrg0aNHOHr0KAoLCyGXy9XaefDgAfLy8tTKFAqFVnunERERETVGdnY2EhISkJCQgMTERPz6668wMjLCkCFDMG/ePPj5+WncltYJXffu3ZGSkoLIyEhMmjQJ9+/fh7W1NcaNG4fIyEjVGnT1MTU1xSuvvIKlS5eiS5cuGDFiRL2fVSdMmIB///vf+OWXX+rtCXN2dkZoaCi2bNmiVu7l5YVz585hxYoVCAsLQ15eHgwNDeHu7o41a9YgNDRU7fqQkJA6bUdHR9fp/SMiIiJqTl26dMGtW7dgaGgIHx8fhIWFwc/PDwMHDmxwtY4n4dZfjcStv4iIiKixdHV1YWRkhJCQEIwcORLPP/88FApFo9tr1CxXIiIiImq8u3fvYuvWrXj06BHefvttmJmZwdPTE4sWLcKBAwdQVlamVXvsoWsk9tARERFRc/ntt9+QmJiIpKQkJCYmqlbtOH36tEb3az2GjqilFRYWcuFmIqJm1qFDB9WyYvTsMTMzg4+PD5RKJZRKJYqLi3HhwgWN72dCR8+UwsJCvP76bFRWVj39YiIi0pi+vh42btzEpO4ZkpOTg6SkJBw9ehRHjx7FrVu34OnpiWHDhuGLL76Al5eXxm0xoaNnSklJCSorq/B/U0fB1rLhGdNEz4K7+fex5auf8H9TRsHWiv//Ss+uuwX3seXLn1BSUsKE7hnRtWtX3L17F56envDz88Onn34Kb2/vOnvea6rFE7rNmzdj4cKFKCoqUq0bV1ZWho4dO8LHxweJiYmqaxMTE+Hv74+bN29i+PDhmDdvHubNm6fW3tKlS7F//36kpaXVOXd0dMStW7cajCU4OBjbtm2rd+FjANixYwf+8Y9/aPX3q6ys1Op60oytpSkc7SzFDoNII7ZW/P9XerZVPap+/GcVv348K27fvo3nnnsOgiBAEATVp9bGavGEzt/fH2VlZUhJSVF1HR47dgzW1tY4c+YMHj58CAMDAwBAQkIC7O3t0a1bt0Y96+zZs6ipqQEAnDx5EhMmTEB6erpq0kK7du1U18bFxWHMmDFq95uYmGj9zDt37vC3HSIieqbdu/94XHJ+fr5Wuw9Qy7lz5w4SExORkJCAXbt24YMPPoCenh4GDRoEf39/+Pr6YvDgwdDX19eovRZP6FxcXGBjY4PExERVQpeYmIjAwEAcOXIEp0+fVq2EXNtD11h/TKxqFzi2tLSsN1EzMTGBtbV1o59FRERE1FhWVlaYPHkyJk+eDOBxgle7a8Tnn3+O999/H3p6enW2Wm1Iq4yh8/f3R0JCgmoHhoSEBLz99tuoqalBQkIC/Pz8UFFRgTNnztTZzeFZUVlZqfZ5tXYW5p07d5q0ECCpy8nJETsEIiKiVtepUydMnToVU6dOBfD4k+zhw4c1vr/VErp58+ahuroaFRUVSE1Nha+vLx49eoTNmzcDAE6dOoXKykq1HrpFixbh3XffVWurqqoKPXv2bHJMQUFBdfZ2vXLlCuzt7eu9Pjo6GsuWLatTHhMTg+eee67J8RARERHVsre3r3eL0oa0SkLn5+eH8vJynD17FkVFRXB2doaFhQV8fX0REhKChw8fIjExEV27dlVLqBYuXIjp06ertbV+/XocPXq0yTGtWbMGI0aMUCuztbVt8PqIiAjMnz9fdV5SUgI7OzvMmTMHrq6uTY6HHsvJycHq1avFDoOIiKhFaZqsxcXFaXRdqyR0Tk5O6Ny5MxISElBUVARfX18AjxMoOzs7nDx5EgkJCRg2bJjafebm5nByclIrqx0b11TW1tZ12n4SfX39egcmdurUqdGTOIiIiOivqbi4WO28vLwcR44cQUBAQKPaa7V16Pz9/ZGYmIiioiIsXLhQVT506FDEx8cjOTkZs2fPbq1wiIiIiESzd+9etfOsrCy4ubnVKddUqyZ0YWFhePTokaqHDgB8fX0xZ84cVFVVNWmGq7YePHiAvLw8tTKFQgFDQ8NWi4GIiIgIAARBaNL9Os0Ux1P5+/ujoqICTk5OsLKyUpX7+vqitLRUtbxJawkJCYGNjY3asWHDBq3b6dSpUwtER0RE1HzMTR+vx/rH//5S29JqPXSOjo71Zp8ODg71lmdnZ9fbztKlS7F06dIGz2v5+fk1mO02NQv+I00X/CPt3C24L3YIRE91N/++2p9Ez6p7RY+X2mrstlL07ONero1UmxTWrkdHzUMmk0FHR4ZP4n4UOxQijX2yjf//Ss8+fX09yGQy/nerBSgUiga3FW1IUlKS2vmdO3dQU1ODxMREtbb+OEztSWRCc3ZX/YVkZmZydisRERGhoKBA621A5XI5BEF4YiJYu8erJthD10i1y6fcvn0bxsbGIkfTdtSu75eTk6Pag5eaju+1ZfC9Nj++05bB99oyat9rYz5lFxUVNWssTOgaSUfn8XwSY2Nj/o+jBXTo0IHvtQXwvbYMvtfmx3faMvheW4a2n1sBNPv/HZjQEREREbWyP4+ha4imY+iY0BERERG1smHDhnEM3bNAX18fkZGRXLakmfG9tgy+15bB99r8+E5bBt9ry2jKe23uMXSc5UpERET0jCktLcUbb7yBuLg4ja5nQkdERET0jCkoKIC1tbXGn1xbbesvIiIiItKcNrNnmdARERERPYO0+YjKSRFERERErax2p4jmwh66Rvrkk0/g6OgIAwMDeHp6Ijk5WeyQJO3o0aMICAiAra0tZDIZ9u/fL3ZIkhcdHY2BAwdCoVDA0tIS48aNQ3p6uthhSd6mTZvg5uamWqDV29sb8fHxYofV5qxcuRIymQzz5s0TOxRJW7p0KWQymdrh6uoqdlhtwp07dzB16lSYmZmhXbt26NOnD1JSUjS+f9++fdi/f3+Dx/bt27WKhz10jbBr1y7Mnz8fmzdvhqenJ9auXYvRo0cjPT0dlpaWYocnSeXl5XB3d0doaCjGjx8vdjhtQlJSEsLCwjBw4EBUV1djyZIlGDVqFK5cuQJDQ0Oxw5Oszp07Y+XKlejevTsEQcD27dsRGBiI1NRU9OrVS+zw2oSzZ8/i008/hZubm9ihtAm9evXCzz//rDrX1eV/+puqqKgIPj4+8Pf3R3x8PCwsLHDjxg107NhR4zZeeumlJ9YXFBRoFRNnuTaCp6cnBg4ciJiYGACAUqmEnZ0d5s6di8WLF4scnfTJZDLs27cP48aNEzuUNqWwsBCWlpZISkrC0KFDxQ6nTTE1NcWHH36IGTNmiB2K5JWVlaFfv37YuHEjoqKi0LdvX6xdu1bssCRr6dKl2L9/P9LS0sQOpU1ZvHgxTpw4gWPHjrXYMzjLtYVVVVXh3LlzGDFihKpMR0cHI0aMwKlTp0SMjOjJiouLATxOPqh51NTUYOfOnSgvL4e3t7fY4bQJYWFheOGFF9T+jaWmuXHjBmxtbdG1a1dMmTIFt2/fFjskyfv+++8xYMAATJw4EZaWlvDw8MDWrVub9RlyuRyOjo4aX8+ETkv37t1DTU0NrKys1MqtrKyQl5cnUlRET6ZUKjFv3jz4+Pigd+/eYocjeRcvXoSRkRH09fXx2muvYd++fejZs6fYYUnezp07cf78eURHR4sdSpvh6emJbdu24cCBA9i0aROysrLw/PPPo7S0VOzQJC0zMxObNm1C9+7dcfDgQcyePRtvvPGG1uPensTMzAyZmZkaX88P6UR/AWFhYbh06RKOHz8udihtgouLC9LS0lBcXIzdu3cjODgYSUlJTOqaICcnB+Hh4Th06BAMDAzEDqfNGDt2rOpnNzc3eHp6wsHBAd988w2HCDSBUqnEgAEDsGLFCgCAh4cHLl26hM2bNyM4OFijNvz9/Z96jSAISExM1Kg99tBpydzcHHK5HPn5+Wrl+fn5sLa2FikqoobNmTMH//3vf5GQkIDOnTuLHU6boKenBycnJ/Tv3x/R0dFwd3fHunXrxA5L0s6dO4eCggL069cPurq60NXVRVJSEtavXw9dXV3U1NSIHWKbYGJiAmdnZ9y8eVPsUCTNxsamzi9wPXr00Opz9tGjR+Hi4gIPDw94eHiga9euOHnypOrcxcUFR48e1bg99tBpSU9PD/3798fhw4dVg/aVSiUOHz6MOXPmiBsc0R8IgoC5c+di3759SExMRJcuXcQOqc1SKpWorKwUOwxJGz58OC5evKhWFhISAldXVyxatAhyuVykyNqWsrIyZGRkYNq0aWKHImk+Pj51loG6fv06HBwctGpn2bJlqiFcmZmZ+Oabb7B69WoAjydFbNmyReO2mNA1wvz58xEcHIwBAwZg0KBBWLt2LcrLyxESEiJ2aJJVVlam9htjVlYW0tLSYGpqCnt7exEjk66wsDB8/fXX+O6776BQKFRjPI2NjdGuXTuRo5OuiIgIjB07Fvb29igtLcXXX3+NxMREHDx4UOzQJE2hUNQZ32loaAgzMzOO+2yCBQsWICAgAA4ODrh79y4iIyMhl8sRFBQkdmiS9uabb2Lw4MFYsWIFJk2ahOTkZGzZskWrBKzZCdQoGzZsEOzt7QU9PT1h0KBBwunTp8UOSdISEhIEAHWO4OBgsUOTrPreJwAhLi5O7NAkLTQ0VHBwcBD09PQECwsLYfjw4cJPP/0kdlhtkq+vrxAeHi52GJI2efJkwcbGRtDT0xM6deokTJ48Wbh586bYYbUJP/zwg9C7d29BX19fcHV1FbZs2aLV/To6OkJeXp7qPCMjQzAyMlKd5+fnCzKZTOP2uA4dERERUSuTy+W4e/eu2ifXvn37oqSkBMDjT642NjYajx/lpAgiIiKiVjZ69Gjo6+urzq2srPDpp5+qztu3b49Zs2Zp3B576IiIiIgkjj10RERERBLHhI6IiIhI4pjQEREREUkcEzoiIiIiiWNCR0RERPSMKSgogI6OD2EQrwAAB2dJREFU5mkaEzoiIiKiZ5BMJtP4WiZ0REStKDs7GzKZDGlpaWKHQkTPOG1WluNerkQkadOnT8eDBw+wf/9+AICfnx/69u2LtWvXihJPVlYW3nnnHSQmJuL+/fswNzdH//79sWrVKri6usLOzg65ubkwNzcXJT4iejZs3779ifXFxcVatceEjoiomTx69AgjR46Ei4sL9u7dCxsbG/z666+Ij4/HgwcPADze7sfa2lrcQIlIdG+++eYT67Xd94GfXImozZg+fTqSkpKwbt06yGQyyGQyZGdnAwAuXbqEsWPHwsjICFZWVpg2bRru3bunutfPzw9z587FvHnz0LFjR1hZWWHr1q0oLy9HSEgIFAoFnJycEB8f3+DzL1++jIyMDGzcuBFeXl5wcHCAj48PoqKi4OXlBaDuJ9fp06erYv3jkZiYCACorKzEggUL0KlTJxgaGsLT01NVR0TSdf/+/Sce169f16o9JnRE1GasW7cO3t7emDlzJnJzc5Gbmws7Ozs8ePAAw4YNg4eHB1JSUnDgwAHk5+dj0qRJavdv374d5ubmSE5Oxty5czF79mxMnDgRgwcPxvnz5zFq1ChMmzYNv//+e73Pt7CwgI6ODnbv3q3xhtrr1q1TxZqbm4vw8HBYWlrC1dUVADBnzhycOnUKO3fuxC+//IKJEydizJgxuHHjRtNeFhE907TemVUgIpKw4OBgITAwUHXu6+srhIeHq13z/vvvC6NGjVIry8nJEQAI6enpqvuGDBmiqq+urhYMDQ2FadOmqcpyc3MFAMKpU6cajCcmJkZo3769oFAoBH9/f2H58uVCRkaGqj4rK0sAIKSmpta5d8+ePYKBgYFw/PhxQRAE4datW4JcLhfu3Lmjdt3w4cOFiIiIBmMgIunLz88XdHR0NL6ePXRE1OZduHABCQkJMDIyUh21PWAZGRmq69zc3FQ/y+VymJmZoU+fPqoyKysrAI/Xh2pIWFgY8vLy8NVXX8Hb2xvffvstevXqhUOHDj0xxtTUVEybNg0xMTHw8fEBAFy8eBE1NTVwdnZWiz0pKUktbiJqe4yMjODr66vx9ZwUQURtXllZGQICArBq1ao6dTY2Nqqfn3vuObU6mUymVla7JpRSqXzi8xQKBQICAhAQEICoqCiMHj0aUVFRGDlyZL3X5+Xl4aWXXsKrr76KGTNmqMUtl8tx7tw5yOVytXuMjIyeGAMRSVdlZSXee+89HD9+XON7mNARUZuip6dXZ/xav379sGfPHjg6OkJXt3X/2ZPJZHB1dcXJkyfrrX/48CECAwPh6uqK1atXq9V5eHigpqYGBQUFeP7551sjXCIS2blz5xAcHIzKykqtJkDxkysRtSmOjo44c+YMsrOzce/ePSiVSoSFheH+/fsICgrC2bNnkZGRgYMHDyIkJETjyQuaSEtLQ2BgIHbv3o0rV67g5s2biI2NxWeffYbAwMB675k1axZycnKwfv16FBYWIi8vD3l5eaiqqoKzszOmTJmCV155BXv37kVWVhaSk5MRHR2NH3/8sdniJiLx1dTUYNmyZfDx8cGwYcPwyy+/YPDgwRrfzx46ImpTFixYgODgYPTs2RMVFRXIysqCo6MjTpw4gUWLFmHUqFGorKyEg4MDxowZo9VeiU/TuXNnODo6YtmyZarlSWrPG1pzKikpCbm5uejZs6daeUJCAvz8/BAXF4eoqCi89dZbuHPnDszNzeHl5YUXX3yx2eImotYnl8vrzGTV0dHB3r178dJLL2ndnkz4c2tERERE1KK+//57tfOamhqsXLkShYWFiI2Nhb+/v1btMaEjIiIiegYolUqsWLECH3zwAUJDQ/Hhhx+iffv2Gt3LhI6IiIjoGZKWloZp06ahvLwcmZmZGt3DSRFEREREz5C+ffvi/PnzePnllzW+hz10RERERBLHWa5ERERErWzYsGFP3a9VEASN16JjQkdERETUyvr27av6ubj4/7V3x7imRVEYgJcQrkY0gtYEzMAQtEo9U9FKRCcRszASCZ2CCkEiwStuSLxX3JOXF95Jvq87++y96j9n773OLqbTafT7/efY6XSK8XicuJ4tVwCAD1oul9FsNuNwODzHttttVKvVH381+OBSBADABxWLxbhcLi/h7Xg8RqFQSFxDoAMA+KB6vR65XC5ms9lzbDKZRKPRSFzDGToAgA/r9XrR7XZjMBjE+XyOxWIRw+Ew8Xpn6AAA/gOj0Sjm83nk8/lot9vR6XQSrxXoAABSzpYrAMCbTSaTRPO63W6ieb7QAQC8WTabjVKpFJlMJiIibrdb7Pf7KJfLEfHdVHi32yVuWyLQAQC8WTabjfV6HdVqNSIiVqtVNJvN2O/3EfHdh65Wq8X1ek1UT9sSAIAPu9/vL78C+/35JwIdAEDKCXQAAG/2r0+8CXQAAG/2uAzxUCwWo9Vqvbz/+vpKXs+lCACA99psNlGpVP4Idn9LoAMASDlbrgAAKSfQAQCknEAHAJByAh0AQMoJdAAAKSfQAQCknEAHAJByAh0AQMr9Aubl5pswqB8dAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "pumpkins['Item Size'] = encoded_pumpkins['ord__Item Size']\n", + "\n", + "g = sns.catplot(data=pumpkins, x=\"Item Size\", y=\"Color\", row=\"Variety\",\n", + " kind=\"box\", orient=\"h\",\n", + " sharex=False, margin_titles=True,\n", + " height=1.5,aspect=4,palette=palette)\n", + "\n", + "g.set(xlabel=\"Item Size\", ylabel=\"\").set(xlim=(0,6))\n", + "g.set_titles(row_template=\"{row_name}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\billg\\AppData\\Local\\Temp\\ipykernel_16772\\1781995252.py:5: FutureWarning: \n", + "\n", + "Passing `palette` without assigning `hue` is deprecated and will be removed in v0.14.0. Assign the `x` variable to `hue` and set `legend=False` for the same effect.\n", + "\n", + " sns.swarmplot(x=\"Color\", y=\"ord__Item Size\", data=encoded_pumpkins, palette=palette)\n", + "c:\\Users\\billg\\Desktop\\alvinsstuff\\Learning\\ML-For-Beginners\\.venv\\Lib\\site-packages\\seaborn\\categorical.py:3399: UserWarning: 63.4% of the points cannot be placed; you may want to decrease the size of the markers or use stripplot.\n", + " warnings.warn(msg, UserWarning)\n", + "c:\\Users\\billg\\Desktop\\alvinsstuff\\Learning\\ML-For-Beginners\\.venv\\Lib\\site-packages\\seaborn\\categorical.py:3399: UserWarning: 21.8% of the points cannot be placed; you may want to decrease the size of the markers or use stripplot.\n", + " warnings.warn(msg, UserWarning)\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\billg\\Desktop\\alvinsstuff\\Learning\\ML-For-Beginners\\.venv\\Lib\\site-packages\\seaborn\\categorical.py:3399: UserWarning: 79.2% of the points cannot be placed; you may want to decrease the size of the markers or use stripplot.\n", + " warnings.warn(msg, UserWarning)\n", + "c:\\Users\\billg\\Desktop\\alvinsstuff\\Learning\\ML-For-Beginners\\.venv\\Lib\\site-packages\\seaborn\\categorical.py:3399: UserWarning: 35.9% of the points cannot be placed; you may want to decrease the size of the markers or use stripplot.\n", + " warnings.warn(msg, UserWarning)\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAioAAAGwCAYAAACHJU4LAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB3v0lEQVR4nO3deZxU1Z3//9ddaumtmm56X6ChAUEUWUQgQkDAqEPUrO4TNTHfmWjMfMcZJzGP32M0zqKOmcQkGjNJTEwyGreoIfHrEhXcAhG3uJEoyNJAL6y9d3XX8vvjdHfV7apqaKClkPfz8eiHUp+6555z76l7PnXvOd1WPB6PIyIiIpKF7CNdAREREZFMlKiIiIhI1lKiIiIiIllLiYqIiIhkLSUqIiIikrWUqIiIiEjWUqIiIiIiWcs90hU4FLFYjB07dlBQUIBlWUe6OiIiInIA4vE47e3tVFVVYdvD3zM5qhOVHTt2UFtbe6SrISIiIgehoaGBmpqaYd9zVCcqBQUFgGloKBQ6wrURERGRA9HW1kZtbe3gOD6cozpRGXjcEwqFlKiIiIgcZQ5k2oYm04qIiEjWUqIiIiIiWUuJioiIiGQtJSoiIiKStZSoiIiISNZSoiIiIiJZS4mKiIiIZC0lKiIiIpK1lKiIiIhI1lKiIiIiIlnriP8K/e3bt/P1r3+dxx9/nK6uLiZNmsTPf/5zTj755CNdtY+2aBgafgP73oSCKTD+AnBzE/GWF6DxCfCFoO5iyE36o1Edm2HLryHSCdWfhJL5iVhfh4l1bISi2VD7abB9JhaPwY4nYOcLEKyACZdAYGxi233vQMND5v9rPwdjpidi4d2w+R7oboTSRVB1Jlj9eXasDxoegb2vQX49jL8QfPmJbXethe2/BzfPxPLrErGubabcvjaoPBPKFiVikS7Ycj+0/xXGzIDaz4IT6G9LHJqehuZnIVBq2hIsG+lZEBGR/bDi8Xj8SO187969zJo1i9NOO42vfOUrlJaW8v7771NfX099ff1+t29ra6OwsJDW1lb9rZ+R6NkFzyyB1ncSr+XVwfLVkDsO/nQFfPCzRMz2w6n3Q+2nYPN9sOZvIR5JxCdfBXNvh/YN8PQS6N6eiBXNgmXPgJMHz59rkp8BvkJY8jiULoD134bXr/XWc+Z/wfHXmkRj1ZnQ15qIVZ4BH18J0S54ZplJUgbkVMOyVRCaDK9cDe/dnohZLiz4JdRdCNt+Cy+eB7HeRHzi5TDvLujaatrSuTkRK5xuyvUXwYufh22PJmJuHiz+PZQvSXvIRUQkYSTj9xFNVL7xjW/w0ksv8cILLxzU9kpUDtK6r8L7d6S+Pu7zMOEyeG5FaiwwFlash5X1EGlPjS9bDetvhR2PpcamXWsSoVeuSo0VTofFv4PfTTJ3XJJZNpy9AZ4725tUDTj5DpNIrL81NVa1wuz3mSWpMbcAztkIj00zd2qGWvwYbLobtj6YGpt8FYydC2svS43lT4Sz30/c6RERkbRGMn4f0SvqypUrOfnkk/n85z9PWVkZs2bN4ic/+UnG94fDYdra2jw/chCS7wR4Xv8tbP9t+lh4N7x/Z/okBcxjpMbHM+9vW4ZyW9+BjXelJilgXttwV/okZX/lNj4OW3+TPhZpN21Jl6QMlrsyQ+yRzPvs+AD2vZU+JiIiB+WIJioffPABd955J5MnT+bJJ5/kK1/5Cl/72tf4xS9+kfb9N910E4WFhYM/tbW1H3KNPyIG5lkMZQfMT8btcoeJBcHyZY5l2uf+ynX3s89M5Vo+cIMHt08naB53jTQGwx8/EREZsSOaqMRiMWbPns1//ud/MmvWLP7P//k/fPnLX+ZHP/pR2vdfd911tLa2Dv40NDR8yDX+iKi7OMPrF5mfdPLqYMpXzSTYFJYpc9x56bcdf1HmfZYugklfNgnAUHbAxEoXpcb2V+6486DuElO3oYIVpi15dem3rRum3LqLM8eKZkPh1PQxERE5KEc0UamsrOT444/3vDZt2jS2bt2a9v2BQIBQKOT5kYMw/ZtQ9Unva6WLYOYtZgXPzFsSK3XADOwLHzB3KBY9BIGSRMz2w5zboOgkmPNdGDvPW27tZ2HqNTD+fJhyNZ7EoWAyLLgbgqXwsXvMhNQBbp55LVhq3lMwJalQyyQadReYsms/593n2HmmLkUzYM73vHdAAiWw8EHTloUPehMvy4WZN/cfg5tTE6SqFebY1ZwN0/7FOxclr87UV0REDqsjOpn2oosuoqGhwTOZ9h//8R/505/+xB//+Mf9bq/JtIdoz2v9y5OPMytvknU3muW3vhBUngVO0mAf7YEdj5vlyZWfSF2W2/IidGwwdxiKZnhj7Rth54uQUwkVy72DfV+bKReg6iyz7wHxmKlPdyOULoSCIavC9r6ZWJ5cNiTB6GmBxqdM8lN1lvfuTbTXrETqazX1yan0brtzTWJ5cvFsb6xjM7Q8Z9pfcTrYR3y1v4jIUeGoWfWzbt06Pvaxj/Gtb32L8847j5dffpkvf/nL/PjHP+biizPcXk+iREVEROToc9Ss+pk7dy6PPPIIv/71rznhhBP4t3/7N2677bYDSlJERETko++I3lE5VLqjIiIicvQ5au6oiIiIiAxHiYqIiIhkLSUqIiIikrWUqIiIiEjWUqIiIiIiWUuJioiIiGQtJSoiIiKStZSoiIiISNZSoiIiIiJZS4mKiIiIZC0lKiIiIpK1lKiIiIhI1lKiIiIiIllLiYqIiIhkLSUqIiIikrWUqIiIiEjWUqIiIiIiWUuJioiIiGQtJSoiIiKStZSoiIiISNZSoiIiIiJZS4mKiIiIZC0lKiIiIpK1lKiIiIhI1lKiIiIiIllLiYqIiIhkLSUqIiIikrWUqIiIiEjWUqIiIiIiWUuJioiIiGQtJSoiIiKStZSoiIiISNZSoiIiIiJZS4mKiIiIZC0lKiIiIpK1lKiIiIhI1lKiIiIiIllLiYqIiIhkLSUqIiIikrWUqIiIiEjWUqIiIiIiWUuJioiIiGQtJSoiIiKStZSoiIiISNZSoiIiIiJZyz2SO7/hhhv41re+5XntuOOO4y9/+csRqtEQ9waA3sS/z++GLQ9A6ztQOB3GnwdOMBFvXgWNf4BAMdRdDDmViVj7RthyH0R7oPZTUDwnEetrg833QudmGHsKVJ8Ddv+picdg+2Ow6yXIqYEJF4O/KLHt3j9Dw8NgOTD+fAgdl4j1tMCm/4XwTig/DSpOB8sysWgYGn4D+96Egikw/gJwcxPbtrwAjU+AL2TakluTiHVshi2/hkgnVH8SSuYntaXDxDo2QtFsqP002L5EW3Y8ATtfgGAFTLgEAmMT2+57BxoeMv9f+zkYMz0RC++GzfdAdyOULoKqM8Hqz7NjfdDwCOx9DfLrYfyF4MtPbLtrLWz/Pbh5JpZfl4h1bTPl9rVB5ZlQtigRi3TBlvuh/a8wZgbUfhacQH9b4tD0NDQ/C4FS05ZgWWLbtr+abeNRqP0MFJ2UiPXuhU33QPc2KPmYOYaDbYnA9pWw+2XIq4O6i8w5GLDnVWh41NRj/IVQUJ+IdTeatoT3QOXp5pwPiPYcvr67/qew5UeJeP0/wbxv81EX7d5FtHsXluPDzavGchPHL9bXSbRzB/F4DDe3HDswZjAWj/UR6dhBPNKFHRiDk1uO1X++4/E40e4WYj17sNygKdfxJ8oNtxHpasTCwsmrwvYn+nU8GibSsZ14NIwTLMHOKcHq/3zH41GinU3EetuwfXk4edVYtpNoS89uol07sWwXJ78a281JakuXaUssgpNbjhNMXG/isQjRju3EIl3Y/kKcvApPW2LdLUR79mA5Adz8Gm9betuJdjYC4ORVYvsLktrS29+WHpxgMXZOWVJbYv1tacV2c3Hyq7HsxNAV7dlLtKvZtCWvCtuXuI7FIt1EO7b3t6UUJ5i43sRjUaKdO4j1dWD7Q/1tcRJt6Rk43wHc/Gqsgc8+EOvtMMeIOG5uJXYg8RmNR3uJdG4nHunBDhT1n++ktnQ1Ewvvw3JzcfOrsAauj0AsvI9IVzMWNk5+FbYvL1FupMeUG+3DySnBySkZ0pZGYn3t2L4CnLxKz/k+2lnxeDx+pHZ+ww038NBDD/H0008Pvua6LiUlJcNsldDW1kZhYSGtra2EQqH9bzAS91r7f0/BZFi2GnIq4I+XmAF6gJMDix42A+rGn8PLXzaD1oBp/wKzbjGD87PLoKc5ERs7H5Y+BZYLq/8GWlYnYoGxcNpTUDwb3roR3ro+qUIWnPwDmHIVNK+G586GSEciXHMuLHwIevfBM0vMoDUgrw6Wr4bccfCnK+CDnyVith9Ovd8MUpvvgzV/C/FIIj75Kph7O7RvgKeXQPf2RKxoFix7Bpw8eP5ck/wM8BXCksehdAGs/za8fq33+M78Lzj+WpNorDoT+loTscoz4OMrIdoFzywzScqAnGpYtgpCk+GVq+G925MOkQsLfgl1F8K238KL50EsKRmdeDnMuwu6tpq2dG5OxAqnm3L9RfDi52Hbo4mYmweLfw/lS+C9H8IrXwWSPlon3gAnXg97XodVp5vEa0DZYnMc4lF49nTYvTYRC5bB0mdN0vbGN+DdW5LaYsMpP4H6L8KOJ+GFT0O0OxEffwF87B7Tt55eDO3vJ2KH0nfTccfCebuGf89RKh6P07vzdaKdOxIvWjaBspNxcsuItDfQu+tNks+3W1iPv3gasd52eprWmi8G/ezAGAIV8wGLcPPLxHqS+oLtI1gxHztQSN/e9+jb956nLr6xJ+AL1RHt3kW4eZ3nvDi55fjL5kAsQk/jGuJ97YnqujkEKhZguTn07nqTaEdDUqk2/rLZuHkVRDq207vzDW9bCsbjLzmRWF8n4cY1xKM9iXL9IYIV88F2CTevI9a9M6lYl0D5PJxgEX2tG+nbs97blqJp+MbUE+3ZS7j5TyZJH9g0p5RA+VyIRelpWku8N/HZt5wggcr52L58ene/TaRtc1KpFv7Smbj51UQ6m+hteQ2IJY5Rfi3+khnEI92Em9YQjyQ+L5avgGDlfLB99La8SrQr6ZpsOQTK5+LklNDXtpm+3W972zJmCr6iKcTCreZ8x/oSbQkWEyifB8QJN60lFt6XdIz8BCsXYPsL6N2znkjrRk+5/pIZuAXjiHa1EG55xXzZG2hLXhX+0lkQDZvzHelMVNfNI1C5ADspmc42Ixm/j3ii8uijj/LGG28c1Pajlqj8bha0H2CdJl4GVSvMwDVUThWc+TqsHG++jQ51xjozOCcnIgNOvMEMfkMHb4DiubDgbnhsemrM9sE5m+Dpj0PHB6nx+XfD7nXw/h2psXGfhwmXwXMrUmOBsbBiPaysh0h7anzZalh/K+x4LDU27VqTCL1yVWqscDos/h38bpLnQwiYgfjsDSbhSk6qBpx8h0kk1t+aGqtaYfb7zJLUmFsA52yEx6Z5E4YBix+DTXfD1gdTY5OvgrFzYe1lqbH8ibD8eVg5wXOhGrTiHVhzGexZlxqbdau5Q/XWDamxsiUm/uTc1JgThHO2wBOzoHtHanzhg+acfHB3auxQ+m46Fx2xS8moinTu6B/wvCwnQKBqET3bnk3tu0CgaiF9e9Z7E5F+vjFTwHZSBm8A21+Iv3QmPdufS1Mbi2DN0v5Btisl6i85yXwrb9+SEnPyKnHza0yCk7JTH8GaJfQ0rPJ+CRloS8UC+lo3EutuSYm5hROx3NyUwRvM4B8on2uOURrBmqWEm9d5kqoBvrEnEI90EWlNvY7ZOWX4CusJN61JLdRyCdaeRs+21Wk/h4HyuUQ6tg3e3fG0pWA8dmAMvbv+nKbYXAIVC/rbktrXg9WL6d35BrGkpGqwLcXTIBZNSTwB7OBYfMXTCO94MU1bbHOMdrxAPCnZHeAvm020q4Vox7aUmJNfQ6B0ZmqZWWIk4/cRffQD8P7771NVVUUwGGTBggXcdNNNjBs3Lu17w+Ew4XDiZLW1tY1OpQ40SQFzGz7doARm4Hj/zswX+i33pU9SwHxbd/PSx/asg02/Sh+L9cGGH6dPUgbK3Z3mQgXmDkPyY6Vk4d2mLemSFDCPkRofz7zPvAnpY63vwMafpb3QE4/BxrvSJykD5XamXpABU5e8ieljkXbTlnRJykC521ZmiD2SPiEAc8w3/Dhzf9j0q/RJCphHV8l3Q5K1rDZ9JZ1oD2y4M3OdGh7JfF4Ope8eQ6KdzWlfj0fDJiFI13eBaMeOtEkKQKSrafAxw1Cx3lYiaQae/r0Sad+SNkkBiHY1EQunDpRg2pH8mMG70z5zZyJNkmLq25g2SRksN+lxi6e2fe1E2rem3ycQad+aNkkx5TYRz/CZiHW3EHHT75N4hEjblox9O9LV7L1bkrzPrqa0CYEptqu/LekT8kjHtrRJCvS3JcNdyVjPbqIdGT6/8Zg5RhnqFO1sIpp8Fys5lqGNR6MjOpl23rx53H333TzxxBPceeedbNq0iUWLFtHenr7j3nTTTRQWFg7+1NbWfsg1TsMJgB3IHM+UbIC5xZ7hYoU9XLmW2TbjPjN8gAfKdTKUO+w+AWeYcp0gWBkugk4w8z5h+Lbsb5+ZyrV8MNxtz/2Va/tHHoPhj72TC2R4pDhcuZazn/M9XB8bri2H0HePJVbmy6RlDfNdz7LJdL4tyx623IzXhf3u08lc7n72OVy5FsNsa9mD81TSGm6uxDAxM8fiYNsy3PGzhyl3mOM3WKdMweFiwx0j66D7wn7P90fEEW3JWWedxec//3lmzJjBGWecwf/7f/+Pffv28cADD6R9/3XXXUdra+vgT0NDQ9r3HbLxf3/g76272PykE5pq5ov4i1Njlg0TvmDmjYy03MpPmHkJ6S4sbj5M+nszkXWk5dZdZH7SyauDKV81k2BTWKbMceel33b8RZn3WboIJn3ZO7FzgB0wsdJFqbH9lTvuPKi7hLQDRbDCtCWvLv22dcOUO9zxK5ptjr2bnxqzXKi/3MytGWm5NefCxEvTX3j8RTD5SghNG3m5B9t3jzFufnXa1y1fPm6oLjFZfOh2BTU4ueVpY05edcZy7ZxS3IJa0vZdy8EtHI/lL0xfbn41ToZy3fwqnLwMbXFzcEJ1GRN/N78GJ68yQ6w6Y7l2oBhfwbj0fdey8RWMww6k72NOXlXGY+TkVeIrqEkbwwnghOqw3PTJ/XDHfrjjZ/kLcUPjMyQOFm5BLXZOadpthztGTm55//lOw/bhC9Vh+dJcU/rLdTOUm+n1o1FWpVxjxoxhypQpbNiwIW08EAgQCoU8P6Pi1DsP7H0Vy2HGjVCx1MwpSe7AuTVw6n3g5sDCB7yPVOwAzP0fM9nz5DvMhNNkdRebwWfi5VB/BZ4LVuF0M4Eyt8bMN0n+pu0LmX36C80kyuTHLZZt5mzUnA3TvwlVn/Tus3QRzLzFrOCZeYv34husMG1wg7DoIQgkTXa2/TDnNrOqZc53Yew8b7m1n4Wp15gVSVOu9ralYLKZaxMsNfVN/gbv5pnXgqXmPQVTkgq1TKJRd4Epu/Zz3n2OnWfqUjQD5nzPe0chUGLmbbhB89/kxMtyYebN/cfg5tQEqWqFOXY1Z5vJ0MkX37w6U19/oZl4nLxSx8mB+T835+yUH5tzmNyW+ivMuZ58ZX9ylaRopukjBZNMn0m+A+Iv6m9LrjnvySuzLAdOuN70zRk3mr6a7GD7biaVGZLUjwAnp8TMKUnqu5YTJFA6G8t2CJTN8X5eLBt/yQxsXz7+sSdg+b3XKSevGjdUh5Nfi5PvHaAsX4HZ1s3BX3qSt49ZLoGy2Vi2j0DpLKwhd+/cwom4ueX4Cidh55R5YnagGF/xNJxgEb6iqZ624ATwl83BHmxL8h04G1/xdOxACH/xdM9qJgAnt8LsN7/KJG3JbXHz8JeehOUEzKTP5D5mOfhLZ/XHTsJKWt0C4IbqzCBcOBEn15sg2YExpi7+EL7i6XiGMdtPoL8t/rI5QxIvC1/RVHMMiqemJEhm3ssk3Nxy3MJ6T8xyc8wxt30EymZ7vyRaNv7Sk8w5K5mB5SvwbDtwnt1QXUqyYvlD+MeegO3Lw18yw3u+bR+Bsjn9fWw2lufLnIU7ZrLpm0VTsIPeBSh20Lz+UXFEJ9MO1dHRwbhx47jhhhv42te+tt/3j+qqH4DnL4VtvzT/nzMBPv0B7HoZ2t6F0PFQcor3/V3boOlZs8Sz8gzvxSvSBTseN8/8q870LsuNx6HlOTMxtHiud1kumKWuu9aaAaR8aWKJMZilrjueMMuZK8/yLsuNRaDpD2aZctli77JcgD2v9S9PPs6svEnW3WiW3/pCptykZYZEe0xbIp3m7k7Qe1Gk5UXo2GDuMBTN8MbaN8LOF83y14rl3g9mX5spF6DqLO9gH4+Z+nQ3QulC77JcgL1vJpYnlw1JMHpaoPEpk/xUneW9exPtNSuR+lpNfXKGfGvcuSaxPLl4yF2qjs3mvAXLzNLvpCWT9HWYuSGxiDnfyYN9PG6WNXc1QMkC75JygNZ3E8uTyxZ7z3d4tznfTtC0JXmwivVB45NmeXLFUm/iAoe37yavivuITqIdKhbpJta9G8vxYeeUem7lx2NRot0tEI/i5JR5luWapa67iUe6sQNjPMtywSx1jYX3Yrk52MGxg0tZwSx1jXbvBMsy5Sb1sXg8Rqx7F/FoGDs41rMsFyAWbiXW24bly/csMQaz1DXavQtsFye3bJi2lHqW5QJEe/YQ7+vEDhRiD0nCYn2dZqm1E/Qslzbl9hHtMvMpnNxSz3wZs7R5F/FoD3aw2LMs1xyjNmLhVixfrmeJsTlG4f5j5PQfIyep3BjRrhaIRXBySjxLyk1b9hLvX55sB7x3qWJ9XcR6dmM5gf62JB+jSP8xivcfo0znu8izpNy0pb1/eXKm892SsS2x7p3Eo33YOWM9S8oBouG9xHs7sPz5OIED+HJxhB01q37++Z//mbPPPpvx48ezY8cOrr/+et544w3effddSkvT30JLNuqJioiIiBx2R82qn23btnHhhReye/duSktLWbhwIWvXrj2gJEVEREQ++o5oonLffRmWXIqIiIiQZZNpRURERJIpUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRruUe6AsluvvlmrrvuOv7hH/6B22677UhXB+61vP8+vxu2PACt70DhdBh/HjjBRLx5FTT+AQLFUHcx5FQmYu0bYct9EO2B2k9B8ZxErK8NNt8LnZth7ClQfQ7Y/acmHoPtj8GulyCnBiZcDP6ixLZ7/wwND4PlwPjzIXRcItbTApv+F8I7ofw0qDgdrP42RcPQ8BvY9yYUTIHxF4Cbm9i25QVofAJ8IdOW3JpErGMzbPk1RDqh+pNQMj+pLR0m1rERimZD7afB9iXasuMJ2PkCBCtgwiUQGJvYdt870PCQ+f/az8GY6YlYeDdsvge6G6F0EVSdCVZ/nh3rg4ZHYO9rkF8P4y8EX35i211rYfvvwc0zsfy6RKxrmym3rw0qz4SyRYlYpAu23A/tf4UxM6D2s+AE+tsSh6anoflZCJSatgTLEtu2/dVsG49C7Weg6KRErHcvbLoHurdBycfMMRxsSwS2r4TdL0NeHdRdZM7BgD2vQsOjph7jL4SC+kSsu9G0JbwHKk8353xAtOfw9d0nzgB2J+JUwkU7kJGLx+NEu1uI9ezBcoO4edVYjn8wHgu3EelqxMLCyavC9if6dTwaJtKxnXg0jBMswc4pwer/fMfjUaKdTcR627B9eTh51Vi2M7httGc30a6dWLaLk1+N7eYk9tnXRbRzB/FYBCe3HCeYuN7EYxGiHduJRbqw/YU4eRVY/X03Ho8T624h2rMHywng5td429LbTrSzEQAnrxLbX5DUlt7+tvTgBIuxc8qS2hLrb0srtpuLk1+NZSeGrmjPXqJdzaYteVXYvsR1LBbpJtqxvb8tpTjBxPUmHosS7dxBrK8D2x/qb4uTaEvPLqLdu/rbUo018NkHYr0d5hgRx82txA4kPqPxaC+Rzu3EIz3YgSKc3HJvW7qaiYX3Ybm5uPlVWAPXRyAW3kekqxkLGye/CtuXl7bfHGuseDweP9KVAFi3bh3nnXceoVCI00477YASlba2NgoLC2ltbSUUCu33/SMyNElJp2AyLFsNORXwx0vMAD3AyYFFD5sBdePP4eUvm0FrwLR/gVm3mMH52WXQ05yIjZ0PS58Cy4XVfwMtqxOxwFg47Skong1v3QhvXZ9UIQtO/gFMuQqaV8NzZ0OkIxGuORcWPgS9++CZJWbQGpBXB8tXQ+44+NMV8MHPEjHbD6febwapzffBmr+FeCQRn3wVzL0d2jfA00uge3siVjQLlj0DTh48f65Jfgb4CmHJ41C6ANZ/G16/1nt8Z/4XHH+tSTRWnQl9rYlY5Rnw8ZUQ7YJnlpkkZUBONSxbBaHJ8MrV8N7tSYfIhQW/hLoLYdtv4cXzINabiE+8HObdBV1bTVs6NydihdNNuf4iePHzsO3RRMzNg8W/h/Il8N4P4ZWvAkkfrRNvgBOvhz2vw6rTTeI1oGyxOQ7xKDx7Ouxem4gFy2DpsyZpe+Mb8O4tSW2x4ZSfQP0XYceT8MKnIdqdiI+/AD52j+lbTy+G9vcTsUPpu5lclBWXkqNGPBYl3PwysZ6kvmD7CFbMxw4U0rf3Pfr2vefZxjf2BHyhOqLduwg3r/OcFye3HH/ZHIhF6GlcQ7yvfTBmuTkEKhZguTn07nqTaEdDUqk2/rLZuHkVRDq207vzDZL7rlswHn/JicT6Ogk3riEe7UmU6w8RrJgPtku4eR2x7p1JxboEyufhBIvoa91I35713rYUTcM3pp5oz17CzX8ySfrApjmlBMrnQixKT9Na4r2Jz77lBAlUzsf25dO7+20ibZuTSrXwl87Eza8m0tlEb8trQCxxjPJr8ZfMIB7pJty0hngk8XmxfAUEK+eD7aO35VWiXUnXZMshUD4XJ6eEvrbN9O1+29uWMVPwFU0hFm6lp2mt+fI00JZgMYHyeUCccNNaYuF9ScfIT7ByAba/gN4964m0bvSU6y+ZgVswjo+ikYzfWZGodHR0MHv2bH74wx/y7//+78ycOfPIJioHkqQMmHgZVK0wA9dQOVVw5uuwcrz5NjrUGevM4JyciAw48QYz+A0dvAGK58KCu+Gx6akx2wfnbIKnPw4dH6TG598Nu9fB+3ekxsZ9HiZcBs+tSI0FxsKK9bCyHiLtqfFlq2H9rbDjsdTYtGtNIvTKVamxwumw+Hfwu0nmjksyy4azN5iEKzmpGnDyHSaRWH9raqxqhdnvM0tSY24BnLMRHpvmTRgGLH4MNt0NWx9MjU2+CsbOhbWXpcbyJ8Ly52HlBM+FatCKd2DNZbBnXWps1q3mDtVbN6TGypaY+JNzU2NOEM7ZAk/Mgu40dzUWPmjOyQd3p8YOpe+mo0RlRNIN3gC2vxB/6Ux6tj+XZiuLYM3S/kG2KyXqLznJfCtv35ISc/IqcfNrTIKTslMfwZol9DSs8n4J6ReoWEBf60Zi3S0pMbdwIpabmzJ4gxn8A+Vz6dn2bJq2YNrSvM6TVA3wjT2BeKSLSGvqdczOKcNXWE+4aU1qoZZLsPY0eratTvs5DJTPJdKxbfDujqctBeOxA2Po3fXnNMXmEqhY0N+W1L4erF5M7843iCUlVYNtKZ4GsWhK4glgB8fiK55GeMeLadpik1O73HNn6qNiJON3Vjz6ueqqq1ixYgXLly/n3//93zO+LxwOEw6HB//d1tb2YVRveA2Pph+UwAwc79+Z+UK/5dfpkxQw39bdDLf99qyDTb9KH4v1wYYfp09SBsrdneZCBeYOQ/JjpWTh3aYt6ZIUMI+RGh/PvM+8Celjre/Axp+lJilgXttwV/okZaDcztQLMmDqkjcxfSzSbtqSLkkZKHfbygyxR9InBGCO+YYfZ+4Pm36VPkkB8+gq+W5IspbV5tFLOtEe05ZMdWp4JPN5OZS+K4cs2tmU9vVYbyuRjm0ZtooT6diaNkkBiHY1EQunDpRmf82exwzenfaZOxNpkhSASGdj2iRlsNykxy2e2va1E2nfmn6fQKR9a9okxZTbRDzDZyLW3UIkwz6JR4i0bcnYtyNdzd67Jcn77GoiHg2njcUjXUQ6tpIuSQGIdGxLm6RAf1sy3JWM9ewm2pHh8xuPEe3eiZtfnT5+jDjiicp9993Ha6+9xrp1GS7gSW666Sa+9a1vfQi1GgEnAHYgc3y4Z4xOrplbkq4D28OVa5lthys3EzuQmGcxon3up1wnCJYP4mk+5E4w8z7BPGrIxN3PPjOVa/nADaaPwf7bYvshlqEt9jDfboatby5gkfZC5wQzP16xnP0co+H62DD1PZS+K4fOGmYtg+VkDg0Tw3Iyl2vZw+7TsoYZDga2TfeFwrIH56lkrFMm9jDttB3i0cxtsYZZCzLcMTJ1tUl+JJQIDnP8AIv9HPuMMRuLeIYUx9pPX9CalyN6BBoaGviHf/gH7rnnHoLBYQaVftdddx2tra2DPw0NDfvd5uCM3f9bBtRdbH7SCU01jwr8xakxy4YJXzDzRkZabuUnoP5yM99iKDcfJv+9mcg60nLrLjI/6eTVwZSvmkmwKSxT5rjz0m87/qLM+yxdBJO+7J3YOcAOmFjpotTY/soddx7UXWLqNlSwwrQlry79tnXDlDvc8SuaDZP+3pyDoSzXnLPKM0Zebs25MPHS9BcsfxFMuRJC00Ze7sH2XTksMn1LtnNKcQtqSdt3LQc3NB7LX5h2Wye/GidDuW5+FU5e+pjl5uCE6jIm/r78Gpy8yrQxN786Y7l2oBhfaFz6vmvZ+ArGYQfS9zEnryrjMXLyKnELatLGcAI4oTosN31y7+RVZy53mONn+QtxC8dnSEgs3IJa7JzStNsOd4yc3PL+852G7cPJKUsfO4Yc0UTl1VdfpaWlhdmzZ+O6Lq7r8txzz/H9738f13WJRr3fMAOBAKFQyPMzKi7adWDvq1gOM26EiqVmTklyB86tgVPvAzcHFj7gfaRiB2Du/5jJniffYSacJqu7GCZfaSZ21l+B54JVON1MoMytMfNNkr9p+0Jmn/5CM4ky+XGLZZs5GzVnw/RvQtUnvfssXQQzbzEreGbeklipA2ZgX/iAuUOx6CEIlCS1xQ9zbjOrWuZ8F8bO85Zb+1mYeo1ZkTTlam9bCiabuTbBUlPf5DsDbp55LVhq3lMwJalQyyQadReYsms/593n2HmmLkUzYM73vHcUAiVm3oYbNP9NTrwsF2be3H8Mbk5NkKpWmGNXc7aZDJ188c2rM/X1F5qJx8krdZwcmP9zc85O+bE5h8ltqb/CnOvJV/YnV0mKZpo+UjDJ9JnkOyD+ov625Jrznrwyy3LghOtN35xxo+mryQ6272Y0zB0fScvJr8XJ9w5Qlq8Af8kMbDcHf+lJ3j5muQTKZmPZPgKls7CG3L1zCyfi5pbjK5yEPWRwswPF+Iqn4QSL8BVNxfM5dAL4y+Zg2w6BsjlD7sDZ+IqnYwdC+IunYwfGeNuQW2H2m1+FG6rztsXNw196EpYTwF86y9vHLAd/6az+2ElYQ+7euaE63Pxq3MKJOLneBMkOjDF18YfwFU/HM4zZfgL9bfGXzRmSeFn4iqaaY1A8NSVBMvNeJuHmluMW1ntilptjjrntI1A22/sl0bLxl55kzlnJDCxfgWfbgfPshupSkhXLH8I/9gRsXx7+khne8237CJTN8azWOlYd0cm07e3tbNninWNw+eWXM3XqVL7+9a9zwgknDLv9qK76Abg3BCQ9P70oDrtehrZ3IXQ8lJzifX/XNmh61izxrDzDO9hHumDH4+aZf9WZ3mW58Ti0PGcmhhbP9S7LBbPUdddaM4CUL00sMQaz1HXHE2Y5c+VZ3mW5sQg0/cEsUy5b7F2WC7Dntf7lyceZlTfJuhvN8ltfyJSbPJkr2mPaEuk0d3eCQzL+lhehY4O5w1A0wxtr3wg7XzTLXyuWez+YfW2mXICqs7yDfTxm6tPdCKULvctyAfa+mVieXDYkwehpgcanTPJTdZb37k2016xE6ms19ckZ8q1x55rE8uTiIXepOjab8xYsM0u/k5ZM0tdh5obEIuZ8Jw/28bhZ1tzVACULvEvKAVrfTSxPLlvsPd/h3eZ8O0HTluTBKtYHjU+a5ckVS72JCxzevps84VyTaA9JrLeDWHgvlpuDHRw7uJQVzFLXaPdOsCycnDLPstx4PEasexfxaBg7ONazLBcgFm4l1tuG5cv3LDEGiEd6iHbvAtvFyS3zPLqJx6JEu1sgHsXJKfUsywWI9uwh3teJHSjE9nuvu7G+TrPU2gl6lkubcvuIdplVQU5uqWe+jFnavIt4tAc7WJyyLDfW20Ys3Irly/UsMTbHKNx/jJz+Y+QklRsj2tUCsQhOTgnWkMfB0Z69xPuXJ9sB712qWF8XsZ7dWE6gvy3JxyjSf4zi/ccocX00S5t3E490YweKPEvKTVva+5cnZzrfLWnb8lFz1K36SbZkyZIjv+pHRERERs1Ixm/N0hEREZGsdcRX/Qy1evXqI10FERERyRIHdUdl3759/PSnP+W6665jz549ALz22mts3759P1uKiIiIHLgR31F58803Wb58OYWFhWzevJkvf/nLFBcX8/DDD7N161Z++ctfjkY9RURE5Bg04jsq11xzDZdddhnvv/++53ef/M3f/A3PP//8Ya2ciIiIHNtGnKisW7eOv/u7v0t5vbq6mqam9L8SWkRERORgjDhRCQQCaf/GznvvvUdpafrfyiciIiJyMEacqJxzzjnceOON9PWZP/hkWRZbt27l61//Op/97GcPewVFRETk2DXiROW///u/6ejooKysjO7ubhYvXsykSZMoKCjgP/7jP0ajjiIiInKMGvGqn8LCQv7whz/w4osv8uabb9LR0cHs2bNZvnz5/jcWERERGYERJypbt26lvLychQsXsnDhwsHX4/E4DQ0NjBs37rBWUERERI5dI370U1dXx+zZs9m4caPn9ZaWFiZMmJBhKxEREZGRO6jfTDtt2jROOeUUnnnmGc/rWfb3DUVEROQoN+JExbIsfvjDH/L//X//HytWrOD73/++JyYiIiJyuIx4jsrAXZN//Md/ZOrUqVx44YW89dZb/Ou//uthr5yIiIgc2w7pryefddZZ/PGPf+Scc87h5ZdfPlx1EhEREQEO4tHP4sWL8fv9g/8+/vjj+dOf/sSYMWM0R0VEREQOKyt+FGcXbW1tFBYW0traSigUOtLVERERkQMwkvH7gB79tLW1DRaU7u/8JFPCICIiIofLASUqRUVFNDY2UlZWxpgxY9Ku7onH41iWRTQaPeyVFBERkWPTASUqzz77LMXFxQCsWrVqVCskIiIiMkBzVERERORDNZLx+4BX/ezatYstW7Z4XnvnnXe4/PLLOe+887j33nsPrrYiIiIiGRxwonL11Vd7fgttS0sLixYtYt26dYTDYS677DJ+9atfjUolRURE5Nh0wInK2rVrOeeccwb//ctf/pLi4mLeeOMNfvvb3/Kf//mf3HHHHaNSSRERETk2HXCi0tTURF1d3eC/n332WT7zmc/gumY+7jnnnMP7779/2CsoIiIix64DTlRCoRD79u0b/PfLL7/MvHnzBv9tWRbhcPiwVk5ERESObQecqMyfP5/vf//7xGIxHnroIdrb21m6dOlg/L333qO2tnZUKikiIiLHpgP+o4T/9m//xrJly/jf//1fIpEI3/zmNykqKhqM33fffSxevHhUKikiIiLHpgNOVGbMmMH69et56aWXqKio8Dz2Abjgggs4/vjjD3sFRURE5NilX/gmIiIiH6pR+YVvIiIiIh82JSoiIiKStZSoiIiISNZSoiIiIiJZ64BX/QzV0tJCS0sLsVjM8/qMGTMOuVIiIiIicBCJyquvvsqll17K+vXrGVgwZFkW8Xgcy7KIRqOHvZIiIiJybBpxovLFL36RKVOmcNddd1FeXo5lWaNRLxEREZGRJyoffPABv/nNb5g0adJo1EdERERk0Ign0y5btow///nPo1EXEREREY8R31H56U9/yqWXXsrbb7/NCSecgM/n88TPOeecw1Y5ERERObaNOFFZs2YNL730Eo8//nhKTJNpRURE5HAa8aOfq6++mksuuYTGxkZisZjnR0mKiIiIHE4jTlR2797NP/7jP1JeXj4a9REREREZNOJE5TOf+QyrVq0ajbqIiIiIeIx4jsqUKVO47rrrePHFFznxxBNTJtN+7WtfO2yVExERkWObFR/49bIHaMKECZkLsyw++OCDQ67UgWpra6OwsJDW1lZCodCHtl8RERE5eCMZv0d8R2XTpk0HXbGh7rzzTu688042b94MwPTp0/nXf/1XzjrrrMO2j0Ny75Dfunt+N2x5AFrfgcLpMP48cIKJePMqaPwDBIqh7mLIqUzE2jfClvsg2gO1n4LiOYlYXxtsvhc6N8PYU6D6HLD7T008Btsfg10vQU4NTLgY/EWJbff+GRoeBsuB8edD6LhErKcFNv0vhHdC+WlQcToM/CbhaBgafgP73oSCKTD+AnBzE9u2vACNT4AvZNqSW5OIdWyGLb+GSCdUfxJK5ie1pcPEOjZC0Wyo/TTYvkRbdjwBO1+AYAVMuAQCYxPb7nsHGh4y/1/7ORgzPREL74bN90B3I5Qugqozwep/chnrg4ZHYO9rkF8P4y8EX35i211rYfvvwc0zsfy6RKxrmym3rw0qz4SyRYlYpAu23A/tf4UxM6D2s+AE+tsSh6anoflZCJSatgTLEtu2/dVsG49C7Weg6KRErHcvbLoHurdBycfMMRxsSwS2r4TdL0NeHdRdZM7BgD2vQsOjph7jL4SC+kSsu9G0JbwHKk8353xAtOfw9d0nTsbLBxf1IkePaM9uol07sWwXJ78a280ZjMX6uoh27iAei+DkluMEE9ebeCxCtGM7sUgXtr8QJ68Cq7/vxuNxYt0tRHv2YDkB3PwaLMefKLe3nWhnIwBOXiW2vyBRbrSXSMd24tEenGAxdk7Z4G89j8djRDubiPW2Yru5OPnVWHZi6Ir27CXa1WzakleF7Utcx2KRbqId2/vbUooTTFxv4rEo0c4dxPo6sP2h/rY4ibb07CLavau/LdVYA599+dCN+I7KgN7eXjZt2kR9fT2ue3B/2/B3v/sdjuMwefJk4vE4v/jFL7j11lt5/fXXmT59+n63H9U7KkOTlHQKJsOy1ZBTAX+8xAzQA5wcWPSwGVA3/hxe/rIZtAZM+xeYdYsZnJ9dBj3NidjY+bD0KbBcWP030LI6EQuMhdOeguLZ8NaN8Nb1SRWy4OQfwJSroHk1PHc2RDoS4ZpzYeFD0LsPnlliBq0BeXWwfDXkjoM/XQEf/CwRs/1w6v1mkNp8H6z5W4hHEvHJV8Hc26F9Azy9BLq3J2JFs2DZM+DkwfPnmuRngK8QljwOpQtg/bfh9Wu9x3fmf8Hx15pEY9WZ0NeaiFWeAR9fCdEueGaZSVIG5FTDslUQmgyvXA3v3Z50iFxY8EuouxC2/RZePA9iSYPsxMth3l3QtdW0pXNzIlY43ZTrL4IXPw/bHk3E3DxY/HsoXwLv/RBe+SqQ9NE68QY48XrY8zqsOt0kXgPKFpvjEI/Cs6fD7rWJWLAMlj5rkrY3vgHv3pLUFhtO+QnUfxF2PAkvfBqi3Yn4+AvgY/eYvvX0Ymh/PxE7lL6byUUHdSmRD1E8Hqd315tEOxqSXrXxl83Gzasg0rGd3p1vkNx33YLx+EtOJNbXSbhxDfFoz2DM8ocIVswH2yXcvI5Y986kYl0C5fNwgkX0tW6kb896T118RdPwjakn2rOXcPOfTJI+sGlOKYHyuRCL0tO0lnhv4rNvOUEClfOxffn07n6bSNvmpFIt/KUzcfOriXQ20dvyGpD4w7lOfi3+khnEI92Em9YQjyQ+L5avgGDlfLB99La8SrQr6ZpsOQTK5+LklBzgkZb9Gcn4PeJEpauri6uvvppf/OIXALz33ntMnDiRq6++murqar7xjW8cfM2B4uJibr31Vr70pS/t972jlqgcSJIyYOJlULXCDFxD5VTBma/DyvHm2+hQZ6wzg3NyIjLgxBvM4Dd08AYongsL7obH0iRztg/O2QRPfxw60jyGm3837F4H79+RGhv3eZhwGTy3IjUWGAsr1sPKeoi0p8aXrYb1t8KOx1Jj0641idArV6XGCqfD4t/B7yaZOy7JLBvO3mASruSkasDJd5hEYv2tqbGqFWa/zyxJjbkFcM5GeGyaN2EYsPgx2HQ3bH0wNTb5Khg7F9ZelhrLnwjLn4eVE8xdnqFWvANrLoM961Jjs241d6jeuiE1VrbExJ+cmxpzgnDOFnhiFnTvSI0vfNCckw/uTo0dSt9NR4lK1ot2NRNuTtP/bB/BmiX0NKzyfgnpF6hYQF/rRmLdLSkxt3AilptL3+63U2KWr4BA+Vx6tj2btj7BmqWEm9cR70u9pvjGnkA80kWkNfU6ZueU4SusJ9y0JrVQyyVYexo921an/RwGyucS6dg2eHfH05aC8diBMfTuSv3t65abS7DmNP19u8NkVB/9XHfddfz5z39m9erVnHnmmYOvL1++nBtuuOGgE5VoNMqDDz5IZ2cnCxYsSPuecDhMOBwe/HdbW9tB7euwang0/aAEZuB4/87MF/otv06fpID5tu7mpY/tWQebfpU+FuuDDT9On6QMlLs7zYUKzB2G5MdKycK7TVvSJSlgHiM1pv4SwMF95mWY29T6Dmz8WWqSAua1jXelT1IGyu3ckj7W+Lh5DJROpN20JV2SMlDutpUZYo+kTwjAHPMNP87cHzb9Mn2SAubRVfLdkGQtq82jl3SiPbDhzsx1angk83k5lL4rRyXPXYJksT5zZyJNkgIQ6WxMm6QARDubsZIetySL97UTad+asT6R9q1pkxRTbhPxDJ+JWHcLkQz7JB4h0rYlY9+OdDVnPA7Rribi0XDaWDzSRby3HSug+ZAfthEnKo8++ij3338/8+fP92SW06dPZ+PGjSOuwFtvvcWCBQvo6ekhPz+fRx55hOOPPz7te2+66Sa+9a1vjXgfo8oJgD3Ms0tfhmQDwMk1c0vS3Va3hyvXMrfnM3EzfIAHys30rHXYfWLqmzEWBMsH8TQfcieYeZ8wfFv2t89M5Vq+/exzP+XafohlaIvtT339gMrNAyw8j4SSy830eMVywA6mj0HmhHag3Ez1PZS+K0cnK/NvpLCsYYYDyzY/6b5QWPbgPJW0bGeYcjPHLNshHs1QrmVjDfPbNazhyrVszG/mSNcWZ9hjNGxMRs2Ij/rOnTspKytLeb2zs/Ogbokdd9xxvPHGG/zpT3/iK1/5Cpdeeinvvvtu2vded911tLa2Dv40NDSkfd+Hqu5i85NOaKp5VOAvTo1ZNkz4gpk3MtJyKz9h5iWku7C4+TDp781E1pGWW3eR+Uknrw6mfNVMgk1hmTLHnZd+2/EXZd5n6SKY9GXvxM4BdsDEShelxvZX7rjzoO4SU7ehghWmLXl16betG6bc4Y5f0WyY/PfmHAxluVB/uZlbM9Jya86F+svSXyT9RTD5SghNG3m5B9t35ajl5FWnfd1yc3BCdRmTe19+DU5eZdqYm1+dsVw7UIyvYFz6vmvZ+ELjsAPp+5iTV4Wbn75cJ68St6AmbQwngBOqw3LTfwFy8qozl5tfjZMhZvkLsf1pPtsy6kacqJx88sk89lhiHsJAcvLTn/404yOb4fj9fiZNmsScOXO46aabOOmkk/je976X9r2BQIBQKOT5GRUH+qy9YjnMuBEqlpo5JclZfG4NnHofuDmw8AHvIxU7AHP/x0z2PPkOM+E0Wd3FZvCZeDnUX4FnsC2cbiZQ5taY+SbJdyN8IbNPf6GZRJn8uMWyzZyNmrNh+jeh6pPefZYugpm3mBU8M29JrNQBM7AvfADcICx6CAJJE8psP8y5zaxqmfNdGDvPW27tZ2HqNWZF0pSrvW0pmGzm2gRLTX2T7wy4eea1YKl5T8GUpEItk2jUXWDKrv2cd59j55m6FM2AOd/z3lEIlJh5G27Q/Dc58bJcmHlz/zG4OTVBqlphjl3N2WYydPLFN6/O1NdfaCYeJ6/UcXJg/s/NOTvlx+YcJrel/gpzridf2Z9cJSmaafpIwSTTZ5LvgPiL+tuSa8578sosy4ETrjd9c8aNpq8mO9i+K0c1J1iEr2gqns+hE8BfNgfbdgiUzRlyB87GVzwdOxDCXzwdOzDGW15uBW7hRNz8KtxQnSdmuXn4S0/CcgL4S2d5+5jl4C+d1R87CWvI3Ts3VIebX41bOBEn15sg2YExpi7+EL7i6XiGMdtPoL8t/rI5QxIvC1/RVHMMiqemJEhm3ssk3Nxy3ELvY2PLzSFQOuQ6LR+aEU+mffHFFznrrLO45JJLuPvuu/m7v/s73n33Xf74xz/y3HPPMWfOnP0XMoylS5cybtw47r777v2+d9R/j8rQSbUXxWHXy9D2LoSOh5JTvPGubdD0rFniWXmGd7CPdMGOx80z/6ozvcty43Foec5MDC2e612WC2ap6661ZgApX5pYYgxmqeuOJ8xy5sqzvMtyYxFo+oNZply22LssF2DPa/3Lk48zK2+SdTea5be+kCk3aZkh0R7TlkinubsTHHKHreVF6Nhg7jAUzfDG2jfCzhfN8teK5d7Bvq/NlAtQdZZ3sI/HTH26G6F0oXdZLsDeNxPLk8uGJBg9LdD4lEl+qs7y3r2J9pqVSH2tpj45Q7417lyTWJ5cPOQuVcdmc96CZWbpd9KSSfo6zNyQWMSc7+TBPh43y5q7GqBkgXdJOUDru4nlyWWLvec7vNucbydo2pL8mC/WB41PmuXJFUu9iQsc3r6b/NnQJNqjTjzSQ7R7F9guTm6Z59FNPBYl2t0C8ShOTmnKstxozx7ifZ3YgUJsv/e6G+vrJNazB8sJYueUeO6yx2N9RLvMqiAntxQrqY+Zpc27iEd7sIPF2EMSl1hvG7FwK5Yv17PEGCAeDRPt3gmWg5NThpX0qCkejxHtaoFYBCenBMv13rmN9uwl3r882Q4UDmlLF7Ge3VhOoL8teuxzOI3qqh+AjRs3cvPNN/PnP/+Zjo4OZs+ezde//nVOPPHEEZVz3XXXcdZZZzFu3Dja29u59957ueWWW3jyySc5/fTT97u9fuGbiIjI0WdUV/0A1NfX85Of/OSgKpespaWFL3zhCzQ2NlJYWMiMGTMOOEkRERGRj74RJyqO49DY2JgyoXb37t2UlZURjR7AL4bqd9ddd4109yIiInIMGfFDt0xPisLhMH7/MMs2RUREREbogO+ofP/73wfMKp+f/vSn5OcnJm1Go1Gef/55pk6devhrKCIiIsesA05Uvvvd7wLmjsqPfvQjHCcxs9rv91NXV8ePfvSjw19DEREROWYdcKIy8FeTTzvtNB5++GGKivS7FURERGR0jXgy7apVq0ajHiIiIiIpDjhRueaaaw7ofd/5zncOujIiIiIiyQ44UXn99df3+x79+WsRERE5nA44UdEjHxEREfmwjdofLwiFQnzwwQejVbyIiIgcA0YtUTmIPyEkIiIi4qE/BykiIiJZS4mKiIiIZC0lKiIiIpK1lKiIiIhI1lKiIiIiIllr1BKV7u5uuru7R6t4EREROQaMWqKSk5NDTk7OaBUvIiIixwA9+hEREZGspURFREREspYSFREREclao5ao6C8pi4iIyKHS3/oRERGRrDVqicrjjz9OdXX1aBUvIiIixwD3QN50zTXXHHCB3/nOdwBYuHDhwdVIREREpN8BJSqvv/6659+vvfYakUiE4447DoD33nsPx3GYM2fO4a+hiIiIHLMOKFFZtWrV4P9/5zvfoaCggF/84hcUFRUBsHfvXi6//HIWLVo0OrUUERGRY5IVH+Gs1+rqap566immT5/uef3tt9/mE5/4BDt27DisFRxOW1sbhYWFtLa2EgqFPrT9ioiIyMEbyfg94sm0bW1t7Ny5M+X1nTt30t7ePtLiRERERDIacaLy6U9/mssvv5yHH36Ybdu2sW3bNn7zm9/wpS99ic985jOjUUcRERE5Rh3QHJVkP/rRj/jnf/5nLrroIvr6+kwhrsuXvvQlbr311sNeQRERETl2jWiOSjQa5aWXXuLEE0/E7/ezceNGAOrr68nLyxu1SmaiOSoiIiJHn5GM3yO6o+I4Dp/4xCdYv349EyZMYMaMGYdUUREREZHhjHiOygknnMAHH3wwGnURERER8RhxovLv//7v/PM//zO///3vaWxspK2tzfMjIiIicriM+Peo2HYit0n+C8nxeBzLsohGo4evdvuhOSoiIiJHn1GbowLe31IrIiIiMppGnKgsXrx4NOohIiIikmLEiQrAvn37uOuuu1i/fj0A06dP54tf/CKFhYWHtXIiIiJybBvxZNpXXnmF+vp6vvvd77Jnzx727NnDd77zHerr63nttddGo44iIiJyjBrxZNpFixYxadIkfvKTn+C65oZMJBLhiiuu4IMPPuD5558flYqmo8m0IiIiR5+RjN8jTlRycnJ4/fXXmTp1quf1d999l5NPPpmurq6R1/ggKVERERE5+ozqX08OhUJs3bo15fWGhgYKCgpGWpyIiIhIRiNOVM4//3y+9KUvcf/999PQ0EBDQwP33XcfV1xxBRdeeOFo1FFERESOUSNe9fPtb38by7L4whe+QCQSAcDn8/GVr3yFm2+++bBXUERERI5dI56jMqCrq8vz15Nzc3MPa8UOhOaoiIiIHH1G9TfTDsjNzeXEE0882M0BuOmmm3j44Yf5y1/+Qk5ODh/72Me45ZZbOO644w6p3MPmXsv77/O7YcsD0PoOFE6H8eeBE0zEm1dB4x8gUAx1F0NOZSLWvhG23AfRHqj9FBTPScT62mDzvdC5GcaeAtXngN1/auIx2P4Y7HoJcmpgwsXgL0psu/fP0PAwWA6MPx9CSceupwU2/S+Ed0L5aVBxOgz82YNoGBp+A/vehIIpMP4CcJOSzZYXoPEJ8IVMW3JrErGOzbDl1xDphOpPQsn8pLZ0mFjHRiiaDbWfBtuXaMuOJ2DnCxCsgAmXQGBsYtt970DDQ+b/az8HY6YnYuHdsPke6G6E0kVQdSZY/U8uY33Q8AjsfQ3y62H8heDLT2y7ay1s/z24eSaWX5eIdW0z5fa1QeWZULYoEYt0wZb7of2vMGYG1H4WnEB/W+LQ9DQ0PwuBUtOWYFli27a/mm3jUaj9DBSdlIj17oVN90D3Nij5mDmGg22JwPaVsPtlyKuDuovMORiw51VoeNTUY/yFUFCfiHU3mraE90Dl6eacD4j2HL6++9qN0LIyEa+6EJbci2SPeDxKtLOJWG8bti8PJ68ay3YG49Ge3US7dmLZLk5+NbabMxiL9XUR7dxBPBbByS3HCSauN/FYhGjHdmKRLmx/IU5eBVZ/343H48S6W4j27MFyArj5NViOP1FubzvRzkYAnLxKbH9iTmM82kukYzvxaA9OsBg7p2zwT7TE47H+trRiu7k4+dVYdmLoivbsJdrVbNqSV4XtS1zHYpFuoh3b+9tSihNMXG/isSjRzh3E+jqw/aH+tjiJtvTsItq9q78t1VgDn3350B30HZXD4cwzz+SCCy5g7ty5RCIRvvnNb/L222/z7rvvkpeXt9/tR/WOytAkJZ2CybBsNeRUwB8vMQP0ACcHFj1sBtSNP4eXv2wGrQHT/gVm3WIG52eXQU9zIjZ2Pix9CiwXVv8NtKxOxAJj4bSnoHg2vHUjvHV9UoUsOPkHMOUqaF4Nz50NkY5EuOZcWPgQ9O6DZ5aYQWtAXh0sXw254+BPV8AHP0vEbD+cer8ZpDbfB2v+FuKRRHzyVTD3dmjfAE8vge7tiVjRLFj2DDh58Py5JvkZ4CuEJY9D6QJY/214/Vrv8Z35X3D8tSbRWHUm9LUmYpVnwMdXQrQLnllmkpQBOdWwbBWEJsMrV8N7tycdIhcW/BLqLoRtv4UXz4NYbyI+8XKYdxd0bTVt6dyciBVON+X6i+DFz8O2RxMxNw8W/x7Kl8B7P4RXvgokfbROvAFOvB72vA6rTjeJ14CyxeY4xKPw7Omwe20iFiyDpc+apO2Nb8C7tyS1xYZTfgL1X4QdT8ILn4ZodyI+/gL42D2mbz29GNrfT8QOpe+mFYCLevbzHvkwxKO99DSuId7XPvia5eYQqFiA5ebQu+tNoh0NSVvY+Mtm4+ZVEOnYTu/ON0juu27BePwlJxLr6yTcuIZ4NHGeLX+IYMV8sF3CzeuIde9MKtYlUD4PJ1hEX+tG+vas99TTVzQN35h6oj17CTf/ySTpA5vmlBIonwuxKD1Na4n3Jj77lhMkUDkf25dP7+63ibRtTirVwl86Eze/mkhnE70trwGxwaiTX4u/ZAbxSDfhpjXEI4nPi+UrIFg5H2wfvS2vEu1KuiZbDoHyuTg5Jfs7/HKARnV58mjauXMnZWVlPPfcc3z84x/f7/tHLVF5sAr6Gg/svRMvg6oVZuAaKqcKznwdVo4330aHOmOdGZyTE5EBJ95gBr+hgzdA8VxYcDc8Nj01ZvvgnE3w9Meh44PU+Py7Yfc6eP+O1Ni4z8OEy+C5FamxwFhYsR5W1kOkPTW+bDWsvxV2PJYam3atSYReuSo1VjgdFv8OfjfJ3HFJZtlw9gaTcCUnVQNOvsMkEutvTY1VrTD7fWZJaswtgHM2wmPTvAnDgMWPwaa7YeuDqbHJV8HYubD2stRY/kRY/jysnGDu8gy14h1YcxnsWZcam3WruUP11g2psbIlJv7k3NSYE4RztsATs6B7R2p84YPmnHxwd2rsUPpuOhdlzaXkmNa76y0i7VtSXnfyKnHzawg3p+l/to9gzRJ6GlZ5v4T0C1QsoK91I7HulpSYWzgRy82lb/fbKTHLV0CgfC49255NW9dgzVLCzes8SdUA39gTiEe6iLSmXsfsnDJ8hfWEm9akFmq5BGtPo2fb6rSfw0D5XCId2wbv7njaUjAeOzCG3l1/TlNsLsGa0zx/jFcO3ofy6Gc0tLaarLm4uDhtPBwOEw6HB//d1tY2OhU50CQFzG34dIMSmIHj/TszX+i33Jc+SQHzbd3NcFdpzzrY9Kv0sVgfbPhx+iRloNzdaS5UYO4wJD9WShbebdqSLkkB8xip8fHM+8ybkD7W+g5svCs1SQHz2sa70icpA+V2pl6QAVOX/Pr0sUi7aUu6JGWg3G0rM8QeSZ8QgDnmG36cuT9s+mX6JAXMo6vkuyHJWlabvpJOtMe0JVOdGh7JfF4Ope9K1vLcCUh+vbMZa+Ax7FCxPnNnIk2SAhDpbEybpAyW60s/RzHe106kPfXXWQyW2741bZJiym0inuEzEetuIZJhn8QjRNq2ZOzbka7mzMeoq4l4NJw2Fo90Ee9txwpoPuSHbcTLk0dLLBbj//7f/8upp57KCSeckPY9N910E4WFhYM/tbW1H3It03ACYA/z7NI3zCMsJ8fMLUnHHq5cC5xhJi8PF7MDiXkWI9rnfsp1gmBluAg6wcz73G+5+9lnpnIt3yHsM2ged400Bt55Pinb5gEZvo0NV67lgB1MH4PMCe3+yj2UvivZy8pwWbfszDHAsob53jrctpY9OE8lfTzDNW4/MTOnZph9DjN8WcOVa9nDlOsMe4yGjcmoyZqjftVVV/H2229z330ZvjkC1113Ha2trYM/DQ0NGd97SErTPPrIpO5i85NOaKp5VOBPc4fIsmHCF8y8kZGWW/kJqL/czLcYys2HyX9vJrKOtNy6i8xPOnl1MOWrZhJsCsuUOe689NuOvyjzPksXwaQveyd2DrADJla6KDW2v3LHnQd1l5A2MQhWmLbk1aXftm6Ycoc7fkWzYdLfm3MwlOWac1Z5xsjLrTkX6i9Lf5H0F8GUKyE0beTlHmzflazm5Fenfd3Nr8LJSx+z3BycUF3G5N6XX4OTV5k25uZXZyzXDhTjC41L33ctG19oHHYgfR9z8qpwM7TFyavELahJG8MJ4ITqsJImCHu3rc5cbn51xuNn+Qux/Wk+2zLqsiJR+epXv8rvf/97Vq1aRU1Nhs4HBAIBQqGQ52dUnP77A3tfxXKYcSNULDVzSpKz+NwaOPU+cHNg4QPeRyp2AOb+j5nsefIdZsJpsrqLYfKVZmJn/RV4BtvC6WYCZW6NmW/iJH0YfSGzT3+hmUSZ/LjFss2cjZqzYfo3oeqT3n2WLoKZt5gVPDNvSazUATOwL3wA3CAseggCSRPKbD/Muc2sapnzXRg7z1tu7Wdh6jVmRdKUq71tKZhs5toES019k+8MuHnmtWCpeU/BlKRCLZNo1F1gyq79nHefY+eZuhTNgDnf895RCJSYeRtu0Pw3OfGyXJh5c/8xuDk1QapaYY5dzdlmMnTyxTevztTXX2gmHiev1HFyYP7PzTk75cfmHCa3pf4Kc64nX9mfXCUpmmn6SMEk02eS74D4i/rbkmvOe/LKLMuBE643fXPGjaavJjvYvptJ0cL9v0c+FL7CSdg5ZZ7X7EAxvuJpOMEifEVT8XwOnQD+sjnYtkOgbM6QO3A2vuLp2IEQ/uLp2IExnnKd3Arcwom4+VW4oTpPzHLz8JeehOUE8JfO8vYxy8FfOqs/dhLWkLt3bqgON78at3AiTq43QbIDY0xd/CF8xdPxDGO2n0B/W/xlc4YkXha+oqnmGBRPTUmQzLyXSbi55biF3sfGlptDoHTIdVo+NEd0Mm08Hufqq6/mkUceYfXq1UyePHlE24/671F5YinsWWX+3wrBha2w62VoexdCx0PJKd73d22DpmfNEs/KM7yDfaQLdjxunvlXneldlhuPQ8tzZmJo8VzvslwwS113rTUDSPnSxBJjMEtddzxhljNXnuVdlhuLQNMfzDLlssXeZbkAe17rX558nFl5k6y70Sy/9YVMuUnLDIn2mLZEOs3dnaD3okjLi9CxwdxhKJrhjbVvhJ0vmuWvFcu9g31fmykXoOos72Afj5n6dDdC6ULvslyAvW8mlieXDUkwelqg8SmT/FSd5b17E+01K5H6Wk19coZ8a9y5JrE8uXjIXaqOzea8BcvM0u+kJZP0dZi5IbGIOd/Jg308bpY1dzVAyQLvknKA1ncTy5PLFnvPd3i3Od9O0LQl+VFTrA8anzTLkyuWehMXOLx9N3lVnCbRZqVYuJVYbxuWL9+zxBggHukh2r0LbBcnt8zz6CYeixLtboF4FCenNGVZbrRnD/G+TuxAIbbfe92N9XUS69mD5QSxc0o8E0/jsT6iXWZVkJNb6pkvY5Y27yIe7cEOFmMPSVxivW3Ewq1YvlzPEmOAeDRMtHsnWA5OTplnGXY8HiPa1QKxCE5OCZbrvXMb7dlLvH95sh0oHNKWLmI9u7GcQH9bsuJ7/UfGUbPq58orr+Tee+/lt7/9red3pxQWFpKTk/62XTL9wjcREZGjz1GTqGRa5vXzn/+cyy67bL/bK1ERERE5+hw1y5Oz6Fe4iIiISBbSQzcRERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVrukdz5888/z6233sqrr75KY2MjjzzyCJ/61KeOZJW87rW8/z6/G7Y8AK3vQOF0GH8eOMFEvHkVNP4BAsVQdzHkVCZi7Rthy30Q7YHaT0HxnESsrw023wudm2HsKVB9Dtj9pyYeg+2Pwa6XIKcGJlwM/qLEtnv/DA0Pg+XA+PMhdFwi1tMCm/4Xwjuh/DSoOB2s/jZFw9DwG9j3JhRMgfEXgJub2LblBWh8Anwh05bcmkSsYzNs+TVEOqH6k1AyP6ktHSbWsRGKZkPtp8H2Jdqy4wnY+QIEK2DCJRAYm9h23zvQ8JD5/9rPwZjpiVh4N2y+B7oboXQRVJ0JVn+eHeuDhkdg72uQXw/jLwRffmLbXWth++/BzTOx/LpErGubKbevDSrPhLJFiVikC7bcD+1/hTEzoPaz4AT62xKHpqeh+VkIlJq2BMsS27b91Wwbj0LtZ6DopESsdy9suge6t0HJx8wxHGxLBLavhN0vQ14d1F1kzsGAPa9Cw6OmHuMvhIL6RKy70bQlvAcqTzfnfEC05/D13SdWAM2JOLVw0Vbkoy8eixDt2E4s0oXtL8TJq8Dq77vxeJxYdwvRnj1YTgA3vwbL8Q9uG+ttJ9rZCICTV4ntL0iUG+0l0rGdeLQHJ1iMnVOG1X+tisdjRDubiPW2Yru5OPnVWHZi6Ir27CXa1Yxluzh5Vdi+xHUsFukm2rGdeCyCk1uKE0y63shRw4rH4/EjtfPHH3+cl156iTlz5vCZz3xmxIlKW1sbhYWFtLa2EgqF9r/BSAxNUtIpmAzLVkNOBfzxEjNAD3ByYNHDZkDd+HN4+ctm0Bow7V9g1i1mcH52GfQkXfjHzoelT4Hlwuq/gZbViVhgLJz2FBTPhrduhLeuT6qQBSf/AKZcBc2r4bmzIdKRCNecCwsfgt598MwSM2gNyKuD5ashdxz86Qr44GeJmO2HU+83g9Tm+2DN30I8kohPvgrm3g7tG+DpJdC9PRErmgXLngEnD54/1yQ/A3yFsORxKF0A678Nr1/rPb4z/wuOv9YkGqvOhL7WRKzyDPj4Soh2wTPLTJIyIKcalq2C0GR45Wp47/akQ+TCgl9C3YWw7bfw4nkQ603EJ14O8+6Crq2mLZ2bE7HC6aZcfxG8+HnY9mgi5ubB4t9D+RJ474fwyleBpI/WiTfAidfDntdh1ekm8RpQttgch3gUnj0ddq9NxIJlsPRZk7S98Q1495aktthwyk+g/ouw40l44dMQ7U7Ex18AH7vH9K2nF0P7+4nYofTdTC46YpcS+RDE+joJN64hHu0ZfM3yhwhWzAfbJdy8jlj3zsQGtkugfB5OsIi+1o307VnvKc9XNA3fmHqiPXsJN//JJOkDm+aUEiifC7EoPU1rifcmPvuWEyRQOR/bl0/v7reJtG1OKtXCXzoTN7+aSGcTvS2vAbHBqJNfi79kxmASJEfOSMbvI5qoJLMsK3sSlQNJUgZMvAyqVpiBa6icKjjzdVg53nwbHeqMdWZwTk5EBpx4gxn8hg7eAMVzYcHd8Nj01Jjtg3M2wdMfh44PUuPz74bd6+D9O1Jj4z4PEy6D51akxgJjYcV6WFkPkfbU+LLVsP5W2PFYamzatSYReuWq1FjhdFj8O/jdJHPHJZllw9kbTMKVnFQNOPkOk0isvzU1VrXC7PeZJakxtwDO2QiPTfMmDAMWPwab7oatD6bGJl8FY+fC2stSY/kTYfnzsHKCucsz1Ip3YM1lsGddamzWreYO1Vs3pMbKlpj4k3NTY04QztkCT8yC7h2p8YUPmnPywd2psUPpu+koUflI62l6mVh3S8rrbuFELDeXvt1vp8QsXwGB8rn0bHs2bZnBmqWEm9cR70u9pvjGnkA80kWkNfU6ZueU4SusJ9y0JrVQyyVYexo921an/RwGyufi5JanrY98eEYyfh/RRz8jFQ6HCYfDg/9ua2s7grXp1/Bo+kEJzMDx/p2ZL/Rbfp0+SQHzbd3NSx/bsw42/Sp9LNYHG36cPkkZKHd3moESzB2G5MdKycK7TVvSJSlgHiM1Pp55n3kT0sda34GNP0tNUsC8tvGu9EnKQLmdW9LHGh+HvInpY5F205Z0ScpAudtWZog9kj4hAHPMN/w4c3/Y9Kv0SQqYR1fJd0OStaw2j17SifaYtmSqU8Mjmc/LofRdOabE47G0SQpAtLMZK+lxi2e7vnYi7ZkfC0bat6ZNUky5TcQzfCZi3S1E3PT7JB4h0rYlY9+OdDUrUTnKHFWTaW+66SYKCwsHf2pra490lcxcATuQOe7LkGwAOLlmbkk69nDlWmbbTDJ9gAfKdTKUO+w+GX6fThAsX+ZYpn2CedRwsPvMVK7lAzeYPnYg5dr+kcdg+GPv5AIZ7tYNV67lgD1MWzIltPsr91D6rhx7rAzDhWUPzlNJH89wjQOwM8cs2yHjEGXZmesDWMPsc9i6SlY6qs7YddddR2tr6+BPQ0PDKO1pBNl23cXmJ53QVPOowF+cGrNsmPAFM29kpOVWfgLqLzfzLYZy82HS35uJrCMtt+4i85NOXh1M+aqZBJvCMmWOOy/9tuMvyrzP0kUw6cveiZ0D7ICJlS5Kje2v3HHnQd0lpE0MghWmLXl16betG6bc4Y5f0Wxz7N381JjlmnNWecbIy605F+ovS39h9hfBlCshNG3k5R5s35VjjmXZOHmVaWNufjVOXnXamB0oxhcal77vWja+gnHYgfR9zMmrws1PX66TV4mvoCZtDCeAE6rDctN/AcpUV8leR1WiEggECIVCnp9RcVHTgb2vYjnMuBEqlpo5JclZfG4NnHofuDmw8AHvIxU7AHP/x0z2PPkOM+E0Wd3FMPlKM7Gz/go8g23hdDOBMrfGzDdJvhvhC5l9+gvNJMrkxy2WbeZs1JwN078JVZ/07rN0Ecy8xazgmXlLYqUOmIF94QPmDsWihyBQktQWP8y5zaxqmfNdGDvPW27tZ2HqNWZF0pSrvW0pmGzm2gRLTX2T7wy4eea1YKl5T8GUpEItk2jUXWDKrv2cd59j55m6FM2AOd/z3lEIlJh5G27Q/Dc58bJcmHlz/zG4OTVBqlphjl3N2WYydPLFN6/O1NdfaCYeJ6/UcXJg/s/NOTvlx+YcJrel/gpzridf2Z9cJSmaafpIwSTTZ5LvgPiL+tuSa8578sosy4ETrjd9c8aNpq8mO9i+m1HB/t8iRzV/8XTswBjPa05uBW7hRNz8KtxQnSdmuXn4S0/CcgL4S2d5+5jl4C+d1R87CWvI3Ts3VIebX41bOBEn15sg2YExpi7+EL7i6XiGMdtPoGwOtu3gL5sz5I6rha9oKk7wQPqzZBNNph3OvcXA3sS/L4rDrpeh7V0IHQ8lp3jf37UNmp41Szwrz/AO9pEu2PG4eeZfdaZ3WW48Di3PmYmhxXO9y3LBLHXdtdYMIOVLE0uMwSx13fGEWc5ceZZ3WW4sAk1/MMuUyxZ7l+UC7Hmtf3nycWblTbLuRrP81hcy5SYtMyTaY9oS6TR3d5KX5QK0vAgdG8wdhqIZ3lj7Rtj5oln+WrHcO9j3tZlyAarO8g728ZipT3cjlC70LssF2PtmYnly2ZAEo6cFGp8yyU/VWd67N9FesxKpr9XUJ2fIt8adaxLLk4uH3KXq2GzOW7DMLP1OWjJJX4eZGxKLmPOdPNjH42ZZc1cDlCzwLikHaH03sTy5bLH3fId3m/PtBE1bkh81xfqg8UmzPLliqTdxgcPbd5MnnGsS7TEl2rOHeF8ndqAQ2++97sb6Oon17MFygtg5JZ7VNfFYH9EusyrIyS3FSupjZmnzLuLRHuxgMfaQxCXW20Ys3Irly01ZYhyPhol27wTLwckp639kNFBujGhXC8QiODklWMM9DpYP1VGz6qejo4MNGzYAMGvWLL7zne9w2mmnUVxczLhx4/a7/agnKiIiInLYHTWrfl555RVOOy3xS6muueYaAC699FLuvvvuI1QrERERyRZHNFFZsmQJWfLkSURERLLQUTWZVkRERI4tSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWu6RrgDAHXfcwa233kpTUxMnnXQSP/jBDzjllFOOdLXgXsv77/O7YcsD0PoOFE6H8eeBE0zEm1dB4x8gUAx1F0NOZSLWvhG23AfRHqj9FBTPScT62mDzvdC5GcaeAtXngN1/auIx2P4Y7HoJcmpgwsXgL0psu/fP0PAwWA6MPx9CxyViPS2w6X8hvBPKT4OK08Hqb1M0DA2/gX1vQsEUGH8BuLmJbVtegMYnwBcybcmtScQ6NsOWX0OkE6o/CSXzk9rSYWIdG6FoNtR+Gmxfoi07noCdL0CwAiZcAoGxiW33vQMND5n/r/0cjJmeiIV3w+Z7oLsRShdB1Zlg9efZsT5oeAT2vgb59TD+QvDlJ7bdtRa2/x7cPBPLr0vEuraZcvvaoPJMKFuUiEW6YMv90P5XGDMDaj8LTqC/LXFoehqan4VAqWlLsCyxbdtfzbbxKNR+BopOSsR698Kme6B7G5R8zBzDwbZEYPtK2P0y5NVB3UXmHAzY8yo0PGrqMf5CKKhPxLobTVvCe6DydHPOB0R7Dl/ffeJkvBy4KMLRpmvT7z3/zhl/FtHORmJ97di+Apy8SizbGYxHu3cR7d6F5fhw86qx3MTxi/V1Eu3cQTwew80txw6MGYzFY31EOnYQj3RhB8bg5JZj9Z/veDxOtLuFWM8eLDdoynX8iXLDbUS6GrGwcPKqsP2Jfh2Phol0bCceDeMES7BzSrD6P9/xeJRoZxOx3jZsXx5OXrW3LT27iXbtxLJdnPxqbDcnqS1dpi2xCE5uOU4wcb2JxyJEO7YTi3Rh+wtx8io8bYl1txDt2YPlBHDza7xt6W0n2tkIgJNXie0vSGpLb39benCCxdg5ZUltifW3pRXbzcXJr8ayE0NXtGcv0a5m05a8Kmxf4joWi3QT7dje35ZSnGDiehOPRYl27iDW14HtD/W3xUm0pWfgfAdw86uxBj77QKy3wxwj4ri5ldiBxGc0Hu0l0rmdeKQHO1DUf76T2tLVTCy8D8vNxc2vwhq4PgKx8D4iXc1Y2Dj5Vdi+vES5kR5TbrQPJ6cEJ6dkSFsOT9/tafoLxHYNxnHLya2dy5FkxePx+JGswP33388XvvAFfvSjHzFv3jxuu+02HnzwQf76179SVlY27LZtbW0UFhbS2tpKKBQa9r0jNjRJSadgMixbDTkV8MdLzAA9wMmBRQ+bAXXjz+HlL5tBa8C0f4FZt5jB+dll0NOciI2dD0ufAsuF1X8DLasTscBYOO0pKJ4Nb90Ib12fVCELTv4BTLkKmlfDc2dDpCMRrjkXFj4EvfvgmSVm0BqQVwfLV0PuOPjTFfDBzxIx2w+n3m8Gqc33wZq/hXjSwDT5Kph7O7RvgKeXQPf2RKxoFix7Bpw8eP5ck/wM8BXCksehdAGs/za8fq33+M78Lzj+WpNorDoT+loTscoz4OMrIdoFzywzScqAnGpYtgpCk+GVq+G925MOkQsLfgl1F8K238KL50GsNxGfeDnMuwu6tpq2dG5OxAqnm3L9RfDi52Hbo4mYmweLfw/lS+C9H8IrXwWSPlon3gAnXg97XodVp5vEa0DZYnMc4lF49nTYvTYRC5bB0mdN0vbGN+DdW5LaYsMpP4H6L8KOJ+GFT0O0OxEffwF87B7Tt55eDO3vJ2KH0nczueiIXkpGZGiSko7l5hGoXIDlBOjd+TrRzh1JQZtA2ck4uWVE2hvo3fUmyefbLazHXzyNWG87PU1rzReDfnZgDIGK+YBFuPllYj1JfcH2EayYjx0opG/ve/Tte89TJ9/YE/CF6oh27yLcvM5zXpzccvxlcyAWoadxDfG+9qS25BCoWIDl5tC7602iHQ1Jpdr4y2bj5lUQ6dhO7843vG0pGI+/5ERifZ2EG9cQj/YkyvWHCFbMB9sl3LyOWPfOpGJdAuXzcIJF9LVupG/Pem9biqbhG1NPtGcv4eY/mSR9YNOcUgLlcyEWpadpLfHexGffcoIEKudj+/Lp3f02kbbNyWcNf+lM3PxqIp1N9La8BsQSxyi/Fn/JDOKRbsJNa4hHEp8Xy1dAsHI+2D56W14l2pV0TbYcAuVzcXJK6GvbTN/ut71tGTMFX9EUYuFWc75jfYm2BIsJlM8D4oSb1hIL70s6Rn6ClQuw/QX07llPpHWjp1x/yQzcgnFEu1oIt7xivuwNtCWvCn/pLIiGzfmOdCaqewh9N5PcCZ/c73tGYiTj9xFPVObNm8fcuXO5/XYzmMRiMWpra7n66qv5xje+Mey2o5aoHEiSMmDiZVC1wgxcQ+VUwZmvw8rx5tvoUGesM4NzciIy4MQbzOA3dPAGKJ4LC+6Gx6anxmwfnLMJnv44dHyQGp9/N+xeB+/fkRob93mYcBk8tyI1FhgLK9bDynqItKfGl62G9bfCjsdSY9OuNYnQK1elxgqnw+Lfwe8meT6EgBmIz95gEq7kpGrAyXeYRGL9ramxqhVmv88sSY25BXDORnhsmjdhGLD4Mdh0N2x9MDU2+SoYOxfWXpYay58Iy5+HlRM8F6pBK96BNZfBnnWpsVm3mjtUb92QGitbYuJPpvlW4wThnC3wxCzo3pEaX/igOScf3J0aO5S+m85Rkqh0bXoK6N3v+wCc/Bqc3LL+Ac/LcgIEqhbRs+3Z1L4LBKoW0rdnvTcR6ecbMwVsJ2XwBrD9hfhLZ9Kz/bk0NbII1iztH2S7UqL+kpPMt/L2LaltyavEza8xCU7KTn0Eq5fQs22V90vIQFsqFtDXupFYd0tKzC2ciOXmpgzeYAb/QPlcc4zSCNYsJdy8zpNUDfCNPYF4pItIa+p1zM4pw1dYT7hpTWqhlkuw5jR6tq9O+zkMlM8l0rFt8O6Opy0F47EDY+jd9ec0xeYSqFjQ35bUvh6sXkzvzjeIJSVVg20pngaxaEriCWAHx+IrnkZ4x4tp2mKbY7TjBeJJye4Af9lsol0tRDu2pcQOpe+mcyQTlSP66Ke3t5dXX32V6667bvA127ZZvnw5a9akdsBwOEw4nDhZbW1tH0o9h9XwaPpBCczA8f6dmS/0W+5Ln6SA+bbu5qWP7VkHm36VPhbrgw0/Tp+kDJS7O82FCswdhuTHSsnCu01b0iUpYB4jNT6eeZ95E9LHWt+BjXel/7DEYyaWLkkZKLcz9YIMmLrk16ePRdpNW9IlKQPlbluZIfZI+oQAzDHf8OPM/WHTL9MnKWAeXSXfDUnWstr0lXSiPbDhzsx1angk83k5lL57VDuwJAUw36ozfJeLR8MmIchwoY927EibpABEupoGHzMMFettJZJm4OnfK5H2LWmTFFPfJmLh1IESINrZ7HnM4N1pX39b0j/Ci3Q2pk1SBstNetziqW1fO5H2ren3CUTat6ZNUky5TcQzfCZi3S1E3PT7JB4h0r45Y9+OdDV775Yk77OrKW1CYIrtItKxlUx3HyId29ImKdDflgx3JWM9u4l2ZPj8xmPmGGWoU7SziWjyXazk2CH03WxzRCfT7tq1i2g0Snl5uef18vJympqaUt5/0003UVhYOPhTW1v7YVU1MycAdiBzPFOyAeYWe4aLFfZw5Vpm24zlZvgAD5TrZCh32H3up1wnCFaGi6ATzLzP/Za7n31mKtfyHcI+g+Zx10hj+y03D8hwt264ci1n+PM9bB8bri37Od++Yco9Vlh2Yv5QurA1zHc9yybT+bb2U27G68J+9+lkLne/bRmuPsNsa9nDb2tnbstwMTPH4mDbMtzxs4cpd5jjB1gM05Zh9jn8MbIOui8c2vnOiimqB+SoWvVz3XXX0draOvjT0NCw/41GW93F5ied0FQzX8RfnBqzbJjwBTNvZKTlVn7CzEtI19HcfJj892Yi60jLrbvI/KSTVwdTvmomwaawTJnjzku/7fiLMu+zdBFM+rJ3YucAO2BipYtSY/srd9x5UHcJaQeKYIVpS15d+m3rhil3uONXNNscezc/NWa5UH+5mVsz0nJrzoWJl6a/6PiLYPKVEJo28nL313cnZ+i7Rzu7ZP/v6efmVePmV6eNWb583FBdYrL40G0LanByy9PGnGHKtXNKcQtqSdt3LQe3cDyWvzB9ufnVOBnKdfOrcPIytMXNwQlNyJjc+/JrcPIq08bc/OqM5dqBYnwF49L3XcvGVzAOO5C+jzl5VRmPkZNXia+gJm0MJ4ATmoDlpk/uhzv2wx0/y1+IWzg+Q+Jg4RbUYueUpt12uGPk5Jb3n+80bB++UB2WL801pb9cN0O5h9J3s80RTVRKSkpwHIfmZu9tuObmZioqUgfEQCBAKBTy/IyKA33WXrEcZtwIFUvNnJLkDpxbA6feB24OLHzA+0jFDsDc/zGTPU++w0w4TVZ3sRl8Jl4O9VfguWAVTjcTKHNrzHyT5G/avpDZp7/QTKJMftxi2WbORs3ZMP2bUDXkeWPpIph5i1nBM/MWbwcOVpg2uEFY9BAEki70th/m3GZWtcz5Loyd5y239rMw9RqzImnK1d62FEw2c22Cpaa+yXcG3DzzWrDUvKdgSlKhlkk06i4wZdd+zrvPsfNMXYpmwJzvee8oBErMvA03aP6bnHhZLsy8uf8Y3JyaIFWtMMeu5mwzGTr54ptXZ+rrLzQTj5NX6jg5MP/n5pyd8mNzDpPbUn+FOdeTr+xPrpIUzTR9pGCS6TPJd0D8Rf1tyTXnPXllluXACdebvjnjRtNXkx1s3/0IyB0/f/9vAuxgCb6iKTg5JWZOSVLftZwggdLZWLZDoGyO9/Ni2fhLZmD78vGPPQHL771OOXnVuKE6nPxanHzvAGX5Csy2bg7+0pO8fcxyCZTNxrJ9BEpnYQ159OEWTsTNLcdXOAk7x7sQwQ4U4yuehhMswlc01dMWnAD+sjnYg21JvgNn4yuejh0I4S+e7lnNBODkVpj95leZgS+5LW4e/tKTsJyAmfSZ3McsB3/prP7YSVhD7t65oTozCBdOxMn1Jkh2YIypiz+Er3g6nmHM9hPob4u/bM6QxMvCVzTVHIPiqSkJkpn3Mgk3txy30PvY2HJzzDG3fQTKZnu/JFo2/tKTzDkrmYHlK/BsO3Ce3VBdSrJi+UP4x56A7cvDXzLDe75tH4GyOf19bDaW58uchTtmsumbRVOwg97k+6D7bkbpE+MPS1ZMpj3llFP4wQ9+AJjJtOPGjeOrX/3qkZtMO2DopNqL4rDrZWh7F0LHQ8mQJdRd26DpWbPEs/IMbweIdMGOx80z/6ozvcty43Foec5MDC2e612WC2ap6661ZgApX5pYYgxmqeuOJ8xy5sqzvMtyYxFo+oNZply22LssF2DPa/3Lk48zK2+SdTea5be+kCk3aZkh0R7TlkinubsT9F4UaXkROjaYOwxFM7yx9o2w80Wz/LViufeD2ddmygWoOss72Mdjpj7djVC60LssF2Dvm4nlyWVDEoyeFmh8yiQ/VWd5795Ee81KpL5WU5+cId8ad65JLE8uHnKXqmOzOW/BMrP0O2nJJH0dZm5ILGLOd/JgH4+bZc1dDVCywLukHKD13cTy5LLF3vMd3m3OtxM0bUkerGJ90PikWZ5csdSbuMDh7bvJn42jZBLtUF2b/wjxPf3/ssmd8DdEw3uJ93Zg+fNxAt4ELRbpJta9G8vxYeeUem7lx2NRot0tEI/i5JR5luWapa67iUe6sQNjPMtywSx1jYX3Yrk52MGxg0tZwSx1jXbvBMsy5Sb1sXg8Rqx7F/FoGDs41rMsFyAWbiXW24bly/csMQaz1DXavQtsFye3bJi2lHqW5QJEe/YQ7+vEDhRiD0nCYn2dZqm1E/Qslzbl9hHtMvMpnNxSz3wZs7R5F/FoD3aw2LMs1xyjNmLhVixfrmeJsTlG4f5j5PQfIyep3BjRrhaIRXBySjzLck1b9hLvX55sB7yDcayvi1jPbiwn0N+W5GMU6T9G8f5jlOl8F3mWlJu2tPcvT850vlsytiXWvZN4tA87Z6xnSTlwWPtu8qq4wz2JdsBRtern/vvv59JLL+V//ud/OOWUU7jtttt44IEH+Mtf/pIyd2WoUU9URERE5LA7alb9AJx//vns3LmTf/3Xf6WpqYmZM2fyxBNP7DdJERERkY++I35H5VDojoqIiMjRZyTj91G16kdERESOLUpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpH/FfoH4qBX6rb1tZ2hGsiIiIiB2pg3D6QX45/VCcq7e3tANTW1u7nnSIiIpJt2tvbKSwsHPY9R/Xf+onFYuzYsYOCggLPn8qWj6a2tjZqa2tpaGjQ33YS+YjR5/vYEo/HaW9vp6qqCtsefhbKUX1HxbZtampqjnQ15EMWCoV0IRP5iNLn+9ixvzspAzSZVkRERLKWEhURERHJWkpU5KgRCAS4/vrrCQQCR7oqInKY6fMtmRzVk2lFRETko013VERERCRrKVERERGRrKVERURERLKWEhURERHJWkpU5Khxxx13UFdXRzAYZN68ebz88stHukoicoief/55zj77bKqqqrAsi0cfffRIV0myjBIVOSrcf//9XHPNNVx//fW89tprnHTSSZxxxhm0tLQc6aqJyCHo7OzkpJNO4o477jjSVZEspeXJclSYN28ec+fO5fbbbwfM33mqra3l6quv5hvf+MYRrp2IHA6WZfHII4/wqU996khXRbKI7qhI1uvt7eXVV19l+fLlg6/Zts3y5ctZs2bNEayZiIiMNiUqkvV27dpFNBqlvLzc83p5eTlNTU1HqFYiIvJhUKIiIiIiWUuJimS9kpISHMehubnZ83pzczMVFRVHqFYiIvJhUKIiWc/v9zNnzhyeeeaZwddisRjPPPMMCxYsOII1ExGR0eYe6QqIHIhrrrmGSy+9lJNPPplTTjmF2267jc7OTi6//PIjXTUROQQdHR1s2LBh8N+bNm3ijTfeoLi4mHHjxh3Bmkm20PJkOWrcfvvt3HrrrTQ1NTFz5ky+//3vM2/evCNdLRE5BKtXr+a0005Lef3SSy/l7rvv/vArJFlHiYqIiIhkLc1RERERkaylREVERESylhIVERERyVpKVERERCRrKVERERGRrKVERURERLKWEhURERHJWkpUREREJGspURGRrHbDDTcwc+bMI10NETlClKiIyKhqamri6quvZuLEiQQCAWprazn77LM9f2RSRCQT/VFCERk1mzdv5tRTT2XMmDHceuutnHjiifT19fHkk09y1VVX8Ze//OVDqUdfXx8+n+9D2ZeIHF66oyIio+bKK6/EsixefvllPvvZzzJlyhSmT5/ONddcw9q1awHYunUr5557Lvn5+YRCIc477zyam5szlhmLxbjxxhupqakhEAgwc+ZMnnjiicH45s2bsSyL+++/n8WLFxMMBrnnnntGva0iMjqUqIjIqNizZw9PPPEEV111FXl5eSnxMWPGEIvFOPfcc9mzZw/PPfccf/jDH/jggw84//zzM5b7ve99j//+7//m29/+Nm+++SZnnHEG55xzDu+//77nfd/4xjf4h3/4B9avX88ZZ5xx2NsnIh8OPfoRkVGxYcMG4vE4U6dOzfieZ555hrfeeotNmzZRW1sLwC9/+UumT5/OunXrmDt3bso23/72t/n617/OBRdcAMAtt9zCqlWruO2227jjjjsG3/d//+//5TOf+cxhbpWIfNh0R0VERkU8Ht/ve9avX09tbe1gkgJw/PHHM2bMGNavX5/y/ra2Nnbs2MGpp57qef3UU09Nef/JJ598kDUXkWyiREVERsXkyZOxLOtDmzA7VLrHTSJy9FGiIiKjori4mDPOOIM77riDzs7OlPi+ffuYNm0aDQ0NNDQ0DL7+7rvvsm/fPo4//viUbUKhEFVVVbz00kue11966aW07xeRo5/mqIjIqLnjjjs49dRTOeWUU7jxxhuZMWMGkUiEP/zhD9x55528++67nHjiiVx88cXcdtttRCIRrrzyShYvXpzx0c21117L9ddfT319PTNnzuTnP/85b7zxhlb2iHxEKVERkVEzceJEXnvtNf7jP/6Df/qnf6KxsZHS0lLmzJnDnXfeiWVZ/Pa3v+Xqq6/m4x//OLZtc+aZZ/KDH/wgY5lf+9rXaG1t5Z/+6Z9oaWnh+OOPZ+XKlUyePPlDbJmIfFis+IHMeBMRERE5AjRHRURERLKWEhURERHJWkpUREREJGspUREREZGspURFREREspYSFREREclaSlREREQkaylRERERkaylREVERESylhIVERERyVpKVERERCRr/f97Gkd2Lj2Y9QAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "palette = {\n", + " \"0\": 'orange',\n", + " \"1\": 'wheat'\n", + " }\n", + "sns.swarmplot(x=\"Color\", y=\"ord__Item Size\", data=encoded_pumpkins, palette=palette)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.model_selection import train_test_split\n", + "\n", + "X = encoded_pumpkins[encoded_pumpkins.columns.difference([\"Color\"])]\n", + "\n", + "y = encoded_pumpkins[\"Color\"]\n", + "\n", + "XTrain, XTest, yTrain, yTest = train_test_split(X, y, test_size=0.2, random_state=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.metrics import f1_score, classification_report\n", + "from sklearn.linear_model import LogisticRegression\n", + "\n", + "model = LogisticRegression()\n", + "model.fit(XTrain, yTrain)\n", + "preds = model.predict(XTest)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " precision recall f1-score support\n", + "\n", + " 0 0.94 0.98 0.96 166\n", + " 1 0.85 0.67 0.75 33\n", + "\n", + " accuracy 0.92 199\n", + " macro avg 0.89 0.82 0.85 199\n", + "weighted avg 0.92 0.92 0.92 199\n", + "\n", + "Predicted labels: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0\n", + " 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", + " 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0\n", + " 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0\n", + " 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1\n", + " 0 0 0 1 0 0 0 0 0 0 0 0 1 1]\n", + "F1-score: 0.7457627118644068\n" + ] + } + ], + "source": [ + "print(classification_report(yTest, preds))\n", + "print(\"Predicted labels: \", preds)\n", + "print(\"F1-score: \", f1_score(yTest, preds))" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAhgAAAIjCAYAAABBOWJ+AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABgUElEQVR4nO3dd1gUV8MF8LOUZelqsItBjTV2jcYKKgoWFDWKJUKIvUc0tqjYoibWxKDGFqwRNGqMjQiC3WhE7CX2BiixgHR27/eHL/tJBGVxl9lyfs/DE3aY2T07ETjcuTMjE0IIEBEREWmRmdQBiIiIyPiwYBAREZHWsWAQERGR1rFgEBERkdaxYBAREZHWsWAQERGR1rFgEBERkdaxYBAREZHWsWAQERGR1rFgEBERkdaxYBCZgODgYMhkMvWHhYUFypYtiy+++AIPHz7MdRshBDZs2ICWLVuiSJEisLGxQa1atTBz5kwkJyfn+Vo7duxA+/bt4eTkBLlcjjJlyqBnz544ePBgvrKmpaVh8eLFaNy4MRwdHaFQKFClShWMGDEC169fL9D7J6LCJ+O9SIiMX3BwMPz9/TFz5kxUqFABaWlpOHnyJIKDg+Hi4oKLFy9CoVCo11cqlejTpw9CQ0PRokULdOvWDTY2Njhy5Ag2b96MGjVqIDw8HCVLllRvI4TAl19+ieDgYNSrVw+fffYZSpUqhdjYWOzYsQNnzpzBsWPH0LRp0zxzJiQkwNPTE2fOnEGnTp3g7u4OOzs7XLt2DVu2bEFcXBwyMjJ0uq+ISEsEERm9X375RQAQp0+fzrF8woQJAoAICQnJsXzOnDkCgBg3btwbz7Vr1y5hZmYmPD09cyyfP3++ACC++uoroVKp3thu/fr14q+//nprzo4dOwozMzOxbdu2N76WlpYmxo4d+9bt8yszM1Okp6dr5bmIKHcsGEQmIK+CsXv3bgFAzJkzR70sJSVFFC1aVFSpUkVkZmbm+nz+/v4CgDhx4oR6m2LFiolq1aqJrKysAmU8efKkACAGDhyYr/VdXV2Fq6vrG8v9/PzEhx9+qH58+/ZtAUDMnz9fLF68WFSsWFGYmZmJkydPCnNzczF9+vQ3nuPq1asCgFi6dKl62bNnz8To0aNFuXLlhFwuF5UqVRLz5s0TSqVS4/dKZAo4B4PIhN25cwcAULRoUfWyo0eP4tmzZ+jTpw8sLCxy3c7X1xcAsHv3bvU2T58+RZ8+fWBubl6gLLt27QIA9OvXr0Dbv8svv/yCpUuXYtCgQVi4cCFKly4NV1dXhIaGvrFuSEgIzM3N0aNHDwBASkoKXF1dsXHjRvj6+uLHH39Es2bNMGnSJAQEBOgkL5Ghy/2nBxEZpRcvXiAhIQFpaWn466+/MGPGDFhZWaFTp07qdS5fvgwAqFOnTp7Pk/21K1eu5PhvrVq1CpxNG8/xNg8ePMCNGzdQvHhx9TIfHx8MHjwYFy9eRM2aNdXLQ0JC4Orqqp5jsmjRIty8eRNnz55F5cqVAQCDBw9GmTJlMH/+fIwdOxbOzs46yU1kqDiCQWRC3N3dUbx4cTg7O+Ozzz6Dra0tdu3ahXLlyqnXSUpKAgDY29vn+TzZX0tMTMzx37dt8y7aeI636d69e45yAQDdunWDhYUFQkJC1MsuXryIy5cvw8fHR71s69ataNGiBYoWLYqEhAT1h7u7O5RKJQ4fPqyTzESGjCMYRCYkKCgIVapUwYsXL7B27VocPnwYVlZWOdbJ/gWfXTRy898S4uDg8M5t3uX15yhSpEiBnycvFSpUeGOZk5MT2rRpg9DQUMyaNQvAq9ELCwsLdOvWTb3eP//8g/Pnz79RULI9fvxY63mJDB0LBpEJadSoERo2bAgA8Pb2RvPmzdGnTx9cu3YNdnZ2AIDq1asDAM6fPw9vb+9cn+f8+fMAgBo1agAAqlWrBgC4cOFCntu8y+vP0aJFi3euL5PJIHI5y16pVOa6vrW1da7Le/XqBX9/f8TExKBu3boIDQ1FmzZt4OTkpF5HpVKhbdu2GD9+fK7PUaVKlXfmJTI1PERCZKLMzc0xd+5cPHr0CD/99JN6efPmzVGkSBFs3rw5z1/W69evBwD13I3mzZujaNGi+PXXX/Pc5l28vLwAABs3bszX+kWLFsXz58/fWH737l2NXtfb2xtyuRwhISGIiYnB9evX0atXrxzrVKpUCS9fvoS7u3uuH+XLl9foNYlMAQsGkQlzc3NDo0aNsGTJEqSlpQEAbGxsMG7cOFy7dg3ffPPNG9vs2bMHwcHB8PDwwKeffqreZsKECbhy5QomTJiQ68jCxo0bcerUqTyzNGnSBJ6enli9ejV27tz5xtczMjIwbtw49eNKlSrh6tWrePLkiXrZuXPncOzYsXy/fwAoUqQIPDw8EBoaii1btkAul78xCtOzZ0+cOHECYWFhb2z//PlzZGVlafSaRKaAV/IkMgHZV/I8ffq0+hBJtm3btqFHjx5Yvnw5hgwZAuDVYQYfHx/89ttvaNmyJbp37w5ra2scPXoUGzduRPXq1REREZHjSp4qlQpffPEFNmzYgPr166uv5BkXF4edO3fi1KlTOH78OJo0aZJnzidPnqBdu3Y4d+4cvLy80KZNG9ja2uKff/7Bli1bEBsbi/T0dACvzjqpWbMm6tSpg/79++Px48dYsWIFSpYsicTERPUpuHfu3EGFChUwf/78HAXldZs2bcLnn38Oe3t7uLm5qU+ZzZaSkoIWLVrg/Pnz+OKLL9CgQQMkJyfjwoUL2LZtG+7cuZPjkAoRgVfyJDIFeV1oSwghlEqlqFSpkqhUqVKOi2QplUrxyy+/iGbNmgkHBwehUCjExx9/LGbMmCFevnyZ52tt27ZNtGvXThQrVkxYWFiI0qVLCx8fHxEVFZWvrCkpKWLBggXik08+EXZ2dkIul4vKlSuLkSNHihs3buRYd+PGjaJixYpCLpeLunXrirCwsLdeaCsviYmJwtraWgAQGzduzHWdpKQkMWnSJPHRRx8JuVwunJycRNOmTcWCBQtERkZGvt4bkSnhCAYRERFpHedgEBERkdaxYBAREZHWsWAQERGR1rFgEBERkdaxYBAREZHWsWAQERGR1pncvUhUKhUePXoEe3t7yGQyqeMQEREZDCEEkpKSUKZMGZiZvX2MwuQKxqNHj+Ds7Cx1DCIiIoN1//59lCtX7q3rmFzByL699P3799W3hyYiIqJ3S0xMhLOzs/p36duYXMHIPizi4ODAgkFERFQA+ZliwEmeREREpHUsGERERKR1LBhERESkdSwYREREpHUsGERERKR1LBhERESkdSwYREREpHUsGERERKR1LBhERESkdSwYREREpHUsGERERKR1LBhERESkdSwYREREpHUsGERERKR1khaMw4cPw8vLC2XKlIFMJsPOnTvfuU1UVBTq168PKysrfPTRRwgODtZ5TiIiItKMpAUjOTkZderUQVBQUL7Wv337Njp27IhWrVohJiYGX331FQYMGICwsDAdJyUiIiJNWEj54u3bt0f79u3zvf6KFStQoUIFLFy4EABQvXp1HD16FIsXL4aHh4euYhoVIQSi7z3Dk6R0qaMQEVEhaFLJCY7WloX+upIWDE2dOHEC7u7uOZZ5eHjgq6++ynOb9PR0pKf//y/TxMREXcUzCCdvPUXvVSeljkFERIVk76gWLBjvEhcXh5IlS+ZYVrJkSSQmJiI1NRXW1tZvbDN37lzMmDGjsCLqvQsPnwMAnOys4PKBjbRhiIhI52zk5pK8rkEVjIKYNGkSAgIC1I8TExPh7OwsYSJp3XuaAgDo9YkzxnlUlTgNERFp05kzZ/DTTz9h5cqVsLQs/FGL1xlUwShVqhTi4+NzLIuPj4eDg0OuoxcAYGVlBSsrq8KIZxDuPU0FAJQvxtELIiJjcvr0abRr1w7Pnz9H+fLlJR+9N6jrYDRp0gQRERE5lh04cABNmjSRKJHhuf+/EQxnFgwiIqNx6tQptG3bFs+fP0ezZs0wbtw4qSNJWzBevnyJmJgYxMTEAHh1GmpMTAzu3bsH4NXhDV9fX/X6Q4YMwa1btzB+/HhcvXoVy5YtQ2hoKMaMGSNFfIOjVAk8ePaqYJTn/AsiIqPw119/oW3btnjx4gWaN2+Offv2wd7eXupY0haMv//+G/Xq1UO9evUAAAEBAahXrx6mTZsGAIiNjVWXDQCoUKEC9uzZgwMHDqBOnTpYuHAhVq9ezVNU8yn2RSoylQKW5jKUclBIHYeIiN7TyZMn0a5dOyQmJqJFixZ6Uy4AQCaEEFKHKEyJiYlwdHTEixcv4ODgIHWcQnX8ZgL6rPoLFZxsETnOTeo4RET0HlJTU1GpUiXExsbC1dUVu3fvhp2dnU5fU5PfoQY1B4PeD+dfEBEZD2tra2zevBkdO3bEnj17dF4uNGVQZ5HQ+8k+RfVDFgwiIoOVmZmpPgXVzc0Nbm5u0gbKA0cwTAhPUSUiMmxHjx5FtWrVcPHiRamjvBMLhgm5x0MkREQG68iRI/D09MStW7fw7bffSh3nnVgwTEj2HAyOYBARGZbDhw+jffv2SE5Ohru7O9auXSt1pHdiwTARSWmZeJqcAQBwLpb7VU+JiEj/HDp0SF0u2rZti127duV59Wp9woJhIrIPjxSzlcNeIe316YmIKH8iIyPRoUMHpKSkwMPDA7///rtBlAuABcNk8BRVIiLDIoTA3LlzkZKSAk9PT+zcudNgygXAgmEyeIoqEZFhkclk2LZtGyZMmIAdO3ZAoTCsKzCzYJiIe5zgSURkEO7evav+3MHBAfPmzTO4cgGwYJgMXgODiEj/HThwANWqVcO8efOkjvLeWDBMBOdgEBHptz///BNeXl5IS0vD8ePHoVQqpY70XlgwTABv005EpN/CwsLQuXNnpKeno0uXLti2bRvMzc2ljvVeWDBMAG/TTkSkv/bt24cuXbogPT0d3t7eCA0NhVwulzrWe2PBMAHZEzzLFbWBuZlM4jRERJRt79698Pb2Rnp6Orp27YqQkBCjKBcAC4ZJ4CXCiYj0040bN5CRkYHu3bsbVbkAeLt2k8BTVImI9NOoUaNQoUIFeHp6qm/Bbiw4gmECeIoqEZH+OHjwIJ49e6Z+7OXlZXTlAmDBMAn3/k0GwFNUiYik9vvvv8PT0xPt2rVDYmKi1HF0igXDBPAQCRGR9Hbs2IHPPvsMmZmZqFy5MmxsjPtnMguGkUtMy8SzlEwAvAYGEZFUtm/fjp49eyIrKwt9+vTB+vXrYWFh3NMgWTCMXPYZJB/YymFnZdz/mImI9NFvv/0GHx8fZGVloW/fviZRLgAWDKPHS4QTEUln586d6nLRr18/rFu3zuCv0Jlfxl+hTBznXxARSad69eooUaIE2rZti7Vr15pMuQBYMIweCwYRkXSqVq2KU6dOoXTp0iZVLgAeIjF6d/9lwSAiKky//vor/vzzT/XjcuXKmVy5ADiCYfQ4B4OIqPBs2rQJvr6+kMvlOHXqFGrVqiV1JMlwBMOIvbpN+/+u4slTVImIdGrjxo3w9fWFSqXC559/jo8//ljqSJJiwTBisS9SkaUSkJub8TbtREQ6tGHDBnW5GDhwIH7++WeYmZn2r1geIjEiT5LSkZKRpX4cc/85AKBcUWvepp2ISEfWrVsHf39/CCEwaNAgLF++3OTLBcCCYTR2n3+EEZvP5vo1zr8gItKNqKgodbkYMmQIgoKCWC7+hwXDSFx+9OqmOZbmMlhZ/P9sZbmFGbrVLytVLCIio9a8eXP4+PigaNGiCAoKgkzG0eJsLBhG5vNPP0Sgl2lPLCIiKiwWFhbYsGEDzM3NWS7+g+M4REREGli9ejUGDBgAlUoF4FXJYLl4E0cwiIiI8mnlypUYPHgwAMDd3R29evWSOJH+4ggGERFRPvz888/qcjF69Gj4+PhInEi/sWAQERG9w/LlyzFkyBAAwJgxY7B48WIeFnkHFgwiIqK3CAoKwrBhwwAAY8eOxcKFC1ku8oEFg4iIKA93795FQEAAAGDcuHGYP38+y0U+cZInERFRHj788EOEhobi1KlTmD17NsuFBlgwiIiI/iMpKQn29vYAgC5duqBLly4SJzI8PERCRET0msWLF6NmzZq4ffu21FEMGgsGERHR/yxatAgBAQG4d+8efvvtN6njGDQWDCIiIgALFy7E2LFjAQBTp05Vf04Fw4JBREQmb/78+Rg3bhwAYNq0aZgxYwYndL4nFgwiIjJp33//PcaPHw8AmD59OsuFlvAsEiIiMllpaWnYtGkTAGDGjBmYNm2axImMBwsGERGZLIVCgfDwcGzfvl19nxHSDh4iISIik3P27Fn158WLF2e50AEWDCIiMimzZs1C/fr1sXLlSqmjGDUWDCIiMhmvz7N4+vSpxGmMG+dgEBGRScg+QwQA5s2bhwkTJkicyLixYBARkVETQmD69OmYOXMmgFenpX799dcSpzJ+LBhERGS0hBCYNm0aZs+eDQBYsGABr9BZSFgwiIjIJCxatAhjxoyROobJYMEgIiKjJZPJMHPmTLRv3x5NmzaVOo5J4VkkRERkVIQQWLVqFVJSUgC8KhksF4WPBYOIiIyGEAITJkzAoEGD0LlzZyiVSqkjmSweIiEiIqMghMD48eOxYMECAEDXrl1hbm4ucSrTxYJBREQGTwiBcePGYdGiRQCAoKAgDBs2TOJUpo0Fg4iIDJoQAgEBAViyZAkAYPny5RgyZIi0oYgFg4iIDNvUqVPV5WLFihW8cZme4CRPIiIyaN26dUOxYsXw888/s1zoEY5gEBGRQatfvz7++ecfFCtWTOoo9BqOYBARkUHJPlvk5MmT6mUsF/qHBYOIiAyGSqXC8OHDMX/+fLRv3563XNdjPERCREQGQaVSYdiwYfj5558hk8mwZMkSjlzoMRYMIiLSeyqVCkOHDsXKlSshk8kQHBwMX19fqWPRW7BgGAkhdQAiIh1RqVQYPHgwVq9eDTMzM6xbtw6ff/651LHoHVgwjMSp26+OQ5Z2VEichIhIu4KCgtTlYv369ejbt6/UkSgfWDCMwLW4JJy5+wwWZjJ41ysrdRwiIq0aOHAgwsLC0KdPH/Tp00fqOJRPLBhG4NdT9wAA7tVLooQ9RzCIyPCpVCrIZDLIZDIoFAr88ccfkMlkUsciDfA0VQOXmqHEb9EPAAC9G5eXOA0R0ftTKpXw9/fH119/DSFezTBjuTA8kheMoKAguLi4QKFQoHHjxjh16tRb11+yZAmqVq0Ka2trODs7Y8yYMUhLSyuktPpnz4VYJKVloVxRa7T4yEnqOERE7yW7XKxfvx5LlizB+fPnpY5EBSRpwQgJCUFAQAACAwMRHR2NOnXqwMPDA48fP851/c2bN2PixIkIDAzElStXsGbNGoSEhGDy5MmFnFx/ZB8e6d2oPMzM2PCJyHAplUr4+flhw4YNMDc3x5YtW1CnTh2pY1EBSVowFi1ahIEDB8Lf3x81atTAihUrYGNjg7Vr1+a6/vHjx9GsWTP06dMHLi4uaNeuHXr37v3OUQ9j9frkzh4Ny0kdh4iowLKysuDr64tNmzbBwsICISEh+Oyzz6SORe9BsoKRkZGBM2fOwN3d/f/DmJnB3d0dJ06cyHWbpk2b4syZM+pCcevWLezduxcdOnTI83XS09ORmJiY48NYcHInERmD7HKxefNmWFhYIDQ0FN27d5c6Fr0nyc4iSUhIgFKpRMmSJXMsL1myJK5evZrrNn369EFCQgKaN28OIQSysrIwZMiQtx4imTt3LmbMmKHV7Prg9cmdfTi5k4gM2LFjx7BlyxZYWFhg69at8Pb2ljoSaYHkkzw1ERUVhTlz5mDZsmWIjo7G9u3bsWfPHsyaNSvPbSZNmoQXL16oP+7fv1+IiXUne3KnczFrNOfkTiIyYK6urggODsa2bdtYLoyIZCMYTk5OMDc3R3x8fI7l8fHxKFWqVK7bTJ06Ff369cOAAQMAALVq1UJycjIGDRqEb775BmZmb/YlKysrWFlZaf8NSCz78EivTzi5k4gMT2ZmJp4/f47ixYsDAO8rYoQkG8GQy+Vo0KABIiIi1MtUKhUiIiLQpEmTXLdJSUl5o0SYm5sDgPpcaVPAyZ1EZMgyMzPRu3dvtGzZEnFxcVLHIR2R9EqeAQEB8PPzQ8OGDdGoUSMsWbIEycnJ8Pf3B/Cq0ZYtWxZz584FAHh5eWHRokWoV68eGjdujBs3bmDq1Knw8vJSFw1TsO3Mq8M8bWtwcicRGZbMzEz06tUL27dvh1wux8WLF/MctSbDJmnB8PHxwZMnTzBt2jTExcWhbt262L9/v3ri571793KMWEyZMgUymQxTpkzBw4cPUbx4cXh5eeHbb7+V6i1I4u+7zwAAHh/zm5KIDEdGRgZ69eqFHTt2QC6XY8eOHTnOJCTjIhOmdGwBQGJiIhwdHfHixQs4ODhIHUdjWUoVak4PQ1qmChFjXVGpuJ3UkYiI3ikjIwM9e/bE77//DisrK+zcuROenp5SxyINafI7lDc7MzA3nrxEWqYKdlYWqPCBrdRxiIjeKSMjAz169MCuXbtgZWWF33//HR4eHlLHIh0zqNNUCbjw4AUA4OMyDjx7hIgMwtOnT3Hp0iUoFArs2rWL5cJEcATDwFx8+Kpg1CrrKHESIqL8KVWqFCIjI3Hjxg20atVK6jhUSDiCYWDOZxeMciwYRKS/0tPTERUVpX7s7OzMcmFiWDAMSJZShSuxr+6lUpMjGESkp9LS0tCtWze4u7tj69atUschibBgGBBO8CQifZeWloauXbti7969kMvl+OCDD6SORBLhHAwDwgmeRKTPUlNT4e3tjT///BM2NjbYs2cP3NzcpI5FEmHBMCAXOMGTiPRUamoqunTpggMHDsDGxgZ79+6Fq6ur1LFIQiwYBuQCJ3gSkR5KT09H586dER4eDltbW+zduxctW7aUOhZJjHMwDAQneBKRvpLL5ahcuTJsbW2xb98+lgsCwIJhMDjBk4j0lUwmw08//YTo6Gi0aNFC6jikJ1gwDAQneBKRPklOTsbMmTORmZkJADAzM0OVKlUkTkX6hHMwDAQneBKRvkhOTkbHjh1x6NAh3Lp1C8HBwVJHIj3EEQwDwQmeRKQPXr58iQ4dOuDQoUNwcHDAkCFDpI5EeoojGAbg9QmeHMEgIqlkl4sjR47AwcEBf/75Jxo3bix1LNJTHMEwAK9P8HThBE8ikkBSUhLat2+PI0eOwNHREQcOHGC5oLfiCIYBOM8JnkQkISEEevTogaNHj6JIkSI4cOAAGjZsKHUs0nMcwTAAvEU7EUlJJpNh0qRJKFu2LMLDw1kuKF84gmEAOMGTiKTm6uqKGzduQKFQSB2FDARHMPQcJ3gSkRRevHgBLy8vXLx4Ub2M5YI0wREMPccJnkRU2J4/fw4PDw+cOnUKN27cwMWLF2Fubi51LDIwLBh6jhM8iagwPX/+HO3atcPp06fxwQcfYMuWLSwXVCA8RKLnOMGTiArLs2fP0LZtW5w+fRpOTk44ePAg6tSpI3UsMlAcwdBjSpVAxJXHAIB65YtKnIaIjNnTp0/Rtm1bREdHq8tFrVq1pI5FBowjGHrs8D9P8PB5KhytLdGmegmp4xCREZs8eTKio6NRvHhxREZGslzQe2PB0GO//nUPANCtflkoLHkMlIh0Z/78+fD29sbBgwdRs2ZNqeOQEeAhEj0Vn5iGiKuvDo/0aVRe4jREZIxSU1NhbW0NALC3t8eOHTskTkTGhCMYeir09H0oVQKfuBRF5ZL2UschIiOTkJCATz/9FHPnzpU6ChkpFgw9pFQJbDl9HwDQpzFHL4hIu548eYLWrVvj/Pnz+OGHH/D06VOpI5ERYsHQQ69P7mxfs7TUcYjIiDx+/BitW7fGhQsXUKpUKURFRaFYsWJSxyIjxDkYeoiTO4lIF7LLxaVLl1C6dGlERkaiatWqUsciI8URDD3DyZ1EpAvx8fFo1aoVLl26hDJlyiAqKorlgnSKIxh6hpM7iUgXwsLCcPnyZXW5qFy5stSRyMixYOgRTu4kIl3x9fVFWloaWrVqxXJBhYIFQ49wcicRaVNcXBysrKxQtOirWw0MGjRI4kRkSjgHQ49s/t/kzu71y3FyJxG9l9jYWLi5uaFdu3Z4/vy51HHIBLFg6Im4F2k4mD25s7GzxGmIyJA9evQIbm5uuHbtGuLj4/Hs2TOpI5EJYsHQE6F/v5rc2cilGD4qwcmdRFQwDx8+hJubG65fv44PP/wQhw4dQoUKFaSORSaIczD0gFIlEPK/yZ29OXpBRAX04MEDtGrVCjdu3MCHH36IqKgouLi4SB2LTBRHMPTA4euc3ElE7+f+/ftwc3PDjRs34OLiwnJBkmPB0AObT3FyJxG9n9TUVKSkpKBChQosF6QXeIhEYpzcSUTaUKVKFURGRsLa2hrly/M6OiQ9jmBIjJM7iaig7t69i4iICPXjqlWrslyQ3mDBkNDrkzt55U4i0sSdO3fg5uaGjh074uDBg1LHIXoDC4aEXp/c6VmzlNRxiMhAZJeLO3fuwNnZmTctI73EgiEhTu4kIk3dvn0brq6uuHv3LipXroyoqCiULVtW6lhEb2DBkAgndxKRpm7dugU3Nzfcu3cPVapUYbkgvcazSAqRSiVw/Oa/eJmeicirTzi5k4jyLfvy3/fv30fVqlURGRmJ0qV53RzSXywYhWjTX3cx9fdLOZZxcicR5UeJEiXQrFkzxMTE4ODBgywXpPdYMAqJEALrTtwFAFQpaQcHhSVcnGzRoRZ/SBDRu1lYWGDDhg14/vw5nJycpI5D9E4sGIXk77vPcOPxS1hbmuO3oU1hr7CUOhIR6bnr169j1apV+O6772BmZgYLCwuWCzIYLBiFZPNfr84Y6VynDMsFEb3TtWvX0KpVK8TGxsLOzg6BgYFSRyLSCM8iKQTPUzKw50IsAKA351wQ0TtcvXpVXS5q1qyJoUOHSh2JSGMcwSgEv0U/REaWCjVKO6BOOUep4xCRHssuF3FxcahVqxYiIiJQvHhxqWMRaYwjGDomhMCv/7ugVu/G5SGTySRORET66sqVK3Bzc0NcXBxq166NgwcPslyQwWLB0LHTd/5/cqd33TJSxyEiPZWWlgYPDw/Ex8ejbt26OHjwICd0kkFjwdCx7NELTu4kordRKBQICgpC48aNER4ejg8++EDqSETvhQVDh54lc3InEb2dEEL9uZeXF44fP85yQUbhvQpGWlqatnIYpe1nObmTiPJ2/vx5NGzYELdu3VIvMzPj331kHDT+l6xSqTBr1iyULVsWdnZ26m+MqVOnYs2aNVoPaKiEENj816srd3JyJxH917lz59C6dWtER0dj3LhxUsch0jqNC8bs2bMRHByM77//HnK5XL28Zs2aWL16tVbDGbLTd57h5pNkTu4kojfExMSgTZs2+Pfff9GwYUP+cUZGSeOCsX79eqxcuRJ9+/aFubm5enmdOnVw9epVrYYzZNmjF5zcSUSvO3v2rLpcfPLJJzhw4ACKFi0qdSwirdO4YDx8+BAfffTRG8tVKhUyMzO1EsrQPUvOwN6LcQB4t1Qi+n/R0dFo06YNnj59ikaNGuHAgQMoUqSI1LGIdELjglGjRg0cOXLkjeXbtm1DvXr1tBLK0L0+ubM2J3cSEV7Nyxo7diyePXuGxo0b488//4SjI38+kPHS+FLh06ZNg5+fHx4+fAiVSoXt27fj2rVrWL9+PXbv3q2LjAaFkzuJKDcymQxbt27FhAkTsHjxYjg4OEgdiUinNB7B6NKlC/744w+Eh4fD1tYW06ZNw5UrV/DHH3+gbdu2ushoUDi5k4he9++//6o/d3Jywpo1a1guyCQU6GZnLVq0wIEDB7SdxShwcicRZTt9+jQ8PDwwb948DBo0SOo4RIVK4xGMihUr5mjk2Z4/f46KFStqJZSh4uROIsp26tQpuLu749mzZ9i0aROUSqXUkYgKlcYF486dO7l+o6Snp+Phw4daCWWofot+wMmdRIS//voLbdu2RWJiIlq0aIE9e/bkOK2fyBTk+xDJrl271J+HhYXlmP2sVCoREREBFxcXrYYzJK/flr0PJ3cSmawTJ07Aw8MDSUlJaNmyJfbs2QM7OzupYxEVunwXDG9vbwCvZkL7+fnl+JqlpSVcXFywcOFCrYYzJKduP1VP7uzCyZ1EJun48ePw9PREUlIS3NzcsHv3btja2kodi0gS+S4YKpUKAFChQgWcPn0aTk5OOgtliHhbdiKKjIxEUlISWrVqhT/++IPlgkyaxmeR3L59Wxc5DBondxIRAEyePBllypSBj48PbGxspI5DJKkC3Rc4OTkZe/fuxYoVK/Djjz/m+NBUUFAQXFxcoFAo0LhxY5w6deqt6z9//hzDhw9H6dKlYWVlhSpVqmDv3r0FeRtawyt3Epmu6OhoJCcnA3h1CNnf35/lgggFGME4e/YsOnTogJSUFCQnJ6NYsWJISEiAjY0NSpQogVGjRuX7uUJCQhAQEIAVK1agcePGWLJkCTw8PHDt2jWUKFHijfUzMjLQtm1blChRAtu2bUPZsmVx9+5dya/lf+nRCwCAZ81SnNxJZEIOHz6MDh06oFGjRti9ezeLBdFrNB7BGDNmDLy8vPDs2TNYW1vj5MmTuHv3Lho0aIAFCxZo9FyLFi3CwIED4e/vjxo1amDFihWwsbHB2rVrc11/7dq1ePr0KXbu3IlmzZrBxcUFrq6uqFOnjqZvQyesLAo0IEREBujQoUNo3749kpOTYWlpyT8uiP5D49+IMTExGDt2LMzMzGBubo709HQ4Ozvj+++/x+TJk/P9PBkZGThz5gzc3d3/P4yZGdzd3XHixIlct9m1axeaNGmC4cOHo2TJkqhZsybmzJnz1gvYpKenIzExMccHEdH7iIqKUo/kenh4YOfOnbC2tpY6FpFe0bhgWFpawszs1WYlSpTAvXuvzp5wdHTE/fv38/08CQkJUCqVKFmyZI7lJUuWRFxcXK7b3Lp1C9u2bYNSqcTevXsxdepULFy4ELNnz87zdebOnQtHR0f1h7Ozc74zEhH918GDB9XlwtPTk+WCKA8az8GoV68eTp8+jcqVK8PV1RXTpk1DQkICNmzYgJo1a+oio5pKpUKJEiWwcuVKmJubo0GDBnj48CHmz5+PwMDAXLeZNGkSAgIC1I8TExNZMoioQA4ePIhOnTohNTUV7du3x/bt26FQKKSORaSXNC4Yc+bMQVJSEgDg22+/ha+vL4YOHYrKlStjzZo1+X4eJycnmJubIz4+Psfy+Ph4lCpVKtdtSpcuDUtLyxyX3K1evTri4uKQkZEBuVz+xjZWVlawsrLKdy4iorwUKVIECoUCrVu3xm+//cafLURvoXHBaNiwofrzEiVKYP/+/QV6YblcjgYNGiAiIkJ9lVCVSoWIiAiMGDEi122aNWuGzZs3Q6VSqQ/TXL9+HaVLl861XBARaVP9+vVx/PhxVKhQgeWC6B20dtpDdHQ0OnXqpNE2AQEBWLVqFdatW4crV65g6NChSE5Ohr+/PwDA19cXkyZNUq8/dOhQPH36FKNHj8b169exZ88ezJkzB8OHD9fW2yAiyuHPP//E8ePH1Y+rVavGckGUDxqNYISFheHAgQOQy+UYMGAAKlasiKtXr2LixIn4448/4OHhodGL+/j44MmTJ5g2bRri4uJQt25d7N+/Xz3x8969e+qRCgBwdnZGWFgYxowZg9q1a6Ns2bIYPXo0JkyYoNHrEhHlx/79++Ht7Q25XI4TJ07g448/ljoSkcHId8FYs2YNBg4ciGLFiuHZs2dYvXo1Fi1ahJEjR8LHxwcXL15E9erVNQ4wYsSIPA+JREVFvbGsSZMmOHnypMavQ0SkiX379qFr165IT09H+/btUblyZakjERmUfB8i+eGHH/Ddd98hISEBoaGhSEhIwLJly3DhwgWsWLGiQOWCiEgf7d27F97e3khPT0fXrl0RGhrKeV5EGsp3wbh58yZ69OgBAOjWrRssLCwwf/58lCtXTmfhiIgK2+7du9G1a1dkZGSge/fuCAkJgaUl75BMpKl8F4zU1FT1dfZlMhmsrKxQunRpnQUjIipsx48fR7du3ZCRkYHPPvsMv/76K8sFUQFpNMlz9erVsLOzAwBkZWUhODgYTk5OOdbR5GZnRET6pH79+nB3d4ednR02bdrEckH0HvJdMMqXL49Vq1apH5cqVQobNmzIsY5MJmPBICKDpVAosH37dlhYWMDCQuPLBBHRa/L9HXTnzh0dxiAiksaOHTtw8uRJzJs3DzKZjJf+JtISVnQiMlnbt2+Hj48PsrKyULduXfTu3VvqSERGQ2tX8iQiMiTbtm1Dz549kZWVhb59+6rPkiMi7WDBICKTs3XrVvTq1QtKpRL9+vXDunXrOOeCSMtYMIjIpISEhKB3795QKpXw9fXFL7/8kuMOzUSkHSwYRGQy7t+/j379+kGpVMLPzw9r165luSDSkQIVjJs3b2LKlCno3bs3Hj9+DODVdfsvXbqk1XBERNrk7OyM1atXo3///lizZg3LBZEOaVwwDh06hFq1auGvv/7C9u3b8fLlSwDAuXPnEBgYqPWARETvKzMzU/25r68vVq9ezXJBpGMaF4yJEydi9uzZ6tu2Z2vdujXvckpEemfjxo2oV68e4uLipI5CZFI0LhgXLlxA165d31heokQJJCQkaCUUEZE2bNiwAX5+frh06RJWrlwpdRwik6JxwShSpAhiY2PfWH727FmULVtWK6GIiN7XunXr4OfnB5VKhcGDB2PKlClSRyIyKRoXjF69emHChAmIi4uDTCaDSqXCsWPHMG7cOPj6+uoiIxGRRoKDg+Hv7w8hBIYMGYJly5bBzIwnzREVJo2/4+bMmYNq1arB2dkZL1++RI0aNdCyZUs0bdqUfyEQkeR++eUXfPnllxBCYNiwYSwXRBLR+NJ1crkcq1atwtSpU3Hx4kW8fPkS9erVQ+XKlXWRj4go39LS0jB37lwIITB8+HAsXboUMplM6lhEJknjgnH06FE0b94c5cuXR/ny5XWRiYioQBQKBSIiIrBu3Tp88803LBdEEtJ43LB169aoUKECJk+ejMuXL+siExGRRm7fvq3+3NnZGVOmTGG5IJKYxgXj0aNHGDt2LA4dOoSaNWuibt26mD9/Ph48eKCLfEREb/Xzzz+jSpUqCA0NlToKEb1G44Lh5OSEESNG4NixY7h58yZ69OiBdevWwcXFBa1bt9ZFRiKiXC1fvhxDhgxBVlYWTp8+LXUcInrNe02trlChAiZOnIh58+ahVq1aOHTokLZyERG91bJlyzBs2DAAwNixY/H9999LnIiIXlfggnHs2DEMGzYMpUuXRp8+fVCzZk3s2bNHm9mIiHL1008/Yfjw4QCAr7/+GvPnz+ecCyI9o/FZJJMmTcKWLVvw6NEjtG3bFj/88AO6dOkCGxsbXeQjIsph6dKlGDVqFABg/PjxmDdvHssFkR7SuGAcPnwYX3/9NXr27AknJyddZCIiytO1a9cAvLrx4pw5c1guiPSUxgXj2LFjushBRJQvS5cuRbt27eDl5cVyQaTH8lUwdu3ahfbt28PS0hK7du1667qdO3fWSjAiomy///472rdvD7lcDplMxp8zRAYgXwXD29sbcXFxKFGiBLy9vfNcTyaTQalUaisbEREWLlyIcePGwdvbG9u2bYO5ubnUkYgoH/JVMFQqVa6fExHp0vz58zF+/HgAQO3atXnTMiIDovF36/r165Genv7G8oyMDKxfv14roYiIvvvuO3W5CAwMxIwZMzjngsiAaFww/P398eLFizeWJyUlwd/fXyuhiMi0zZs3DxMnTgQATJ8+HdOnT5c2EBFpTOOzSIQQuf4V8eDBAzg6OmolFBGZrvnz52PSpEkAgJkzZ2Lq1KkSJyKigsh3wahXrx5kMhlkMhnatGkDC4v/31SpVOL27dvw9PTUSUgiMh2NGjWCjY0NJk2ahClTpkgdh4gKKN8FI/vskZiYGHh4eMDOzk79NblcDhcXF3Tv3l3rAYnItLi6uuLKlSsoX7681FGI6D3ku2AEBgYCAFxcXODj4wOFQqGzUERkWhYsWABPT0/UrFkTAFguiIyAxpM8/fz8WC6ISGumT5+Or7/+Gq1bt8a///4rdRwi0pJ8jWAUK1YM169fh5OTE4oWLfrWU8WePn2qtXBEZLyEEJg+fTpmzpwJ4NWNyz744AOJUxGRtuSrYCxevBj29vbqz3kuOhG9DyEEpk2bhtmzZwN4dYhk7NixEqciIm3KV8Hw8/NTf/7FF1/oKgsRmQAhBKZOnYpvv/0WALBo0SKMGTNG4lREpG0az8GIjo7GhQsX1I9///13eHt7Y/LkycjIyNBqOCIyPqtXr1aXi8WLF7NcEBkpjQvG4MGDcf36dQDArVu34OPjAxsbG2zdulV9WV8iorz06tULzZo1w5IlS/DVV19JHYeIdETjK3lev34ddevWBQBs3boVrq6u2Lx5M44dO4ZevXphyZIlWo5IRIbu9SsA29vbIyoqKsfF+ojI+Gg8giGEUN9RNTw8HB06dAAAODs7IyEhQbvpiMjgCSHw9ddfY+7cueplLBdExk/j7/KGDRti9uzZcHd3x6FDh7B8+XIAwO3bt1GyZEmtByQiwyWEwLhx47Bo0SIAgKenJ+rVqydxKiIqDBqPYCxZsgTR0dEYMWIEvvnmG3z00UcAgG3btqFp06ZaD0hEhkkIgYCAAHW5WL58OcsFkQnReASjdu3aOc4iyTZ//nyYm5trJRQRGTYhBMaMGYMffvgBAPDzzz9j0KBBEqciosJU4AOhZ86cwZUrVwAANWrUQP369bUWiogMlxACo0ePxtKlSwEAK1euxMCBAyVORUSFTeOC8fjxY/j4+ODQoUMoUqQIAOD58+do1aoVtmzZguLFi2s7IxEZkEOHDmHp0qWQyWRYtWoV+vfvL3UkIpKAxnMwRo4ciZcvX+LSpUt4+vQpnj59iosXLyIxMRGjRo3SRUYiMiBubm5YsmQJVq9ezXJBZMI0HsHYv38/wsPDUb16dfWyGjVqICgoCO3atdNqOCIyDCqVCsnJyep7Fo0ePVriREQkNY1HMFQqFSwtLd9Ybmlpqb4+BhGZDpVKhWHDhqFVq1Z4/vy51HGISE9oXDBat26N0aNH49GjR+plDx8+xJgxY9CmTRuthiMi/aZSqTBkyBD8/PPPiI6OxuHDh6WORER6QuOC8dNPPyExMREuLi6oVKkSKlWqhAoVKiAxMVE9a5yIjJ9KpcLgwYOxatUqmJmZYf369ejcubPUsYhIT2g8B8PZ2RnR0dGIiIhQn6ZavXp1uLu7az0cEeknlUqFgQMHYu3atepy0bdvX6ljEZEe0ahghISEYNeuXcjIyECbNm0wcuRIXeUiIj2lUqkwYMAA/PLLLzAzM8OGDRvQp08fqWMRkZ7Jd8FYvnw5hg8fjsqVK8Pa2hrbt2/HzZs3MX/+fF3mIyI9Exsbi/3798PMzAybNm1Cr169pI5ERHoo33MwfvrpJwQGBuLatWuIiYnBunXrsGzZMl1mIyI9VLZsWURGRmLr1q0sF0SUp3wXjFu3bsHPz0/9uE+fPsjKykJsbKxOghGR/lAqlYiJiVE/rlq1Krp16yZdICLSe/kuGOnp6bC1tf3/Dc3MIJfLkZqaqpNgRKQflEolvvjiC3z66acICwuTOg4RGQiNJnlOnToVNjY26scZGRn49ttv4ejoqF6WfWtmIjJ8WVlZ8PPzw+bNm2FhYYGXL19KHYmIDES+C0bLli1x7dq1HMuaNm2KW7duqR/LZDLtJSMiSWVlZcHX1xe//vorLCwsEBISwsMiRJRv+S4YUVFROoxBRPokKysLn3/+OUJCQmBhYYHQ0FB07dpV6lhEZEA0vtAWERm3rKws9O3bF6GhobC0tMTWrVvRpUsXqWMRkYFhwSCiN5ibm8PS0hLbtm3j5b+JqEA0vhcJERk3CwsLrF+/HseOHWO5IKICY8EgImRmZmLZsmVQKpUAXpWMTz75ROJURGTIWDCITFxGRgZ8fHwwfPhwDB8+XOo4RGQkClQwjhw5gs8//xxNmjTBw4cPAQAbNmzA0aNHtRqOiHQru1zs2LEDVlZWnMxJRFqjccH47bff4OHhAWtra5w9exbp6ekAgBcvXmDOnDlaD0hEupGRkYEePXpg586dsLKyws6dO9G+fXupYxGRkdC4YMyePRsrVqzAqlWrYGlpqV7erFkzREdHazUcEelGeno6PvvsM+zatQsKhQK7du2Cp6en1LGIyIhofJrqtWvX0LJlyzeWOzo64vnz59rIREQ61rdvX/zxxx/qctG2bVupIxGRkdF4BKNUqVK4cePGG8uPHj2KihUrFihEUFAQXFxcoFAo0LhxY5w6dSpf223ZsgUymQze3t4Fel0iU+Xn5wdHR0f88ccfLBdEpBMaF4yBAwdi9OjR+OuvvyCTyfDo0SNs2rQJ48aNw9ChQzUOEBISgoCAAAQGBiI6Ohp16tSBh4cHHj9+/Nbt7ty5g3HjxqFFixYavyaRqfPy8sKdO3fg7u4udRQiMlIaF4yJEyeiT58+aNOmDV6+fImWLVtiwIABGDx4MEaOHKlxgEWLFmHgwIHw9/dHjRo1sGLFCtjY2GDt2rV5bqNUKtG3b1/MmDGjwKMmRKYkLS0N/fv3z3FzwiJFikgXiIiMnsYFQyaT4ZtvvsHTp09x8eJFnDx5Ek+ePMGsWbM0fvGMjAycOXMmx19RZmZmcHd3x4kTJ/LcbubMmShRogT69+//ztdIT09HYmJijg8iU5KamoouXbpg7dq16NSpk/piWkREulTge5HI5XLUqFHjvV48ISEBSqUSJUuWzLG8ZMmSuHr1aq7bHD16FGvWrEFMTEy+XmPu3LmYMWPGe+UkMlTZ5eLAgQOwtbXFihUrYG5uLnUsIjIBGheMVq1aQSaT5fn1gwcPvlegt0lKSkK/fv2watUqODk55WubSZMmISAgQP04MTERzs7OuopIpDdSUlLQpUsXhIeHw9bWFvv27eOcJSIqNBoXjLp16+Z4nJmZiZiYGFy8eBF+fn4aPZeTkxPMzc0RHx+fY3l8fDxKlSr1xvo3b97EnTt34OXlpV6mUqkAvLp3wrVr11CpUqUc21hZWcHKykqjXESGLiUlBZ07d0ZERATs7Oywb98+NG/eXOpYRGRCNC4YixcvznX59OnT8fLlS42eSy6Xo0GDBoiIiFCfaqpSqRAREYERI0a8sX61atVw4cKFHMumTJmCpKQk/PDDDxyZIPqf8ePHq8vF/v370axZM6kjEZGJKfAcjP/6/PPP0ahRIyxYsECj7QICAuDn54eGDRuiUaNGWLJkCZKTk+Hv7w8A8PX1RdmyZTF37lwoFArUrFkzx/bZM+H/u5zIlE2fPh3nzp3Dd999h6ZNm0odh4hMkNYKxokTJ6BQKDTezsfHB0+ePMG0adMQFxeHunXrYv/+/eqJn/fu3YOZGW/6SvQuSqVSPYHTyckJhw8ffut8KSIiXdK4YHTr1i3HYyEEYmNj8ffff2Pq1KkFCjFixIhcD4kAQFRU1Fu3DQ4OLtBrEhmTly9folOnTujduzcGDx4MACwXRCQpjQuGo6NjjsdmZmaoWrUqZs6ciXbt2mktGBHlT1JSEjp06ICjR4/i3Llz6N69e77PsiIi0hWNCoZSqYS/vz9q1aqFokWL6ioTEeVTUlIS2rdvj2PHjsHR0RFhYWEsF0SkFzSa3GBubo527drxrqlEeiAxMRGenp7qcnHgwAE0atRI6lhERAAKcKnwmjVr5rifAREVvuxycfz4cRQpUgTh4eH45JNPpI5FRKSmccGYPXs2xo0bh927dyM2Npb3+SCSQGhoKE6cOIGiRYsiPDwcDRs2lDoSEVEO+Z6DMXPmTIwdOxYdOnQAAHTu3DnHLHUhBGQyGW+kRFQI+vfvjydPnsDDwwP169eXOg4R0RvyXTBmzJiBIUOGIDIyUpd5iCgPL168gIWFBWxtbSGTyTBp0iSpIxER5SnfBUMIAQBwdXXVWRgiyt3z58/Rrl072NnZYffu3bCxsZE6EhHRW2k0B4MX7iEqfM+ePUPbtm1x+vRpnD9/Hvfu3ZM6EhHRO2l0HYwqVaq8s2Q8ffr0vQIR0f97+vQp2rZti+joaDg5OSEiIgLVqlWTOhYR0TtpVDBmzJjxxpU8iUg3nj59Cnd3d5w9exZOTk44ePAgatWqJXUsIqJ80ahg9OrVCyVKlNBVFiL6n3///Rfu7u6IiYlB8eLFcfDgQd4xmIgMSr7nYHD+BVHhefToEe7evYsSJUogMjKS5YKIDI7GZ5EQke7VqlUL4eHhUCgUqFGjhtRxiIg0lu+CoVKpdJmDyOQlJCTg9u3b6kt+8wJaRGTINL5UOBFp35MnT9C6dWu0adMGJ0+elDoOEdF7Y8Egktjjx4/RunVrXLhwAXZ2dihatKjUkYiI3ptGZ5EQkXZll4tLly6hTJkyiIyMRJUqVaSORUT03jiCQSSR+Ph4tGrVCpcuXULZsmURFRXFckFERoMjGEQSePLkCVq1aoUrV66oy8VHH30kdSwiIq1hwSCSgL29PVxcXJCUlITIyEiWCyIyOiwYRBJQKBTYvn07Hj9+jPLly0sdh4hI6zgHg6iQPHr0CN999536onUKhYLlgoiMFkcwiArBw4cP0apVK/zzzz9QqVSYNGmS1JGIiHSKIxhEOvbgwQO4ubnhn3/+wYcffojevXtLHYmISOdYMIh06P79+3Bzc8ONGzfg4uKCQ4cOwcXFRepYREQ6x4JBpCPZ5eLmzZuoUKECoqKi8OGHH0odi4ioULBgEOlAeno62rRpg1u3bqFixYosF0RkclgwiHTAysoK06ZNQ5UqVRAVFcWzRYjI5LBgEOnI559/jvPnz8PZ2VnqKEREhY4Fg0hLbt++DU9PT8TGxqqXWVlZSZiIiEg6LBhEWnDr1i24ubkhLCwMQ4YMkToOEZHkWDCI3tPNmzfh5uaGe/fuoUqVKli+fLnUkYiIJMcreRK9h+xy8eDBA1StWhWRkZEoXbq01LGIiCTHEQyiArpx4wZcXV3x4MEDVKtWDVFRUSwXRET/w4JBVEADBgzAw4cPUb16dURGRqJUqVJSRyIi0hssGEQFtGHDBnh5ebFcEBHlgnMwiDSQmpoKa2trAICzszN27dolcSIiIv3EEQyifLp27RqqVq2K0NBQqaMQEek9FgyifLh69Src3Nxw//59zJs3D1lZWVJHIiLSaywYRO9w5coVuLm5IS4uDrVr18aff/4JCwseXSQiehsWDKK3uHz5Mtzc3BAfH486deogIiICTk5OUsciItJ7LBhEebh06RJatWqFx48fo27duiwXREQaYMEgysPmzZvx+PFj1KtXDxEREfjggw+kjkREZDB4IJkoD7Nnz0aRIkXQv39/FCtWTOo4REQGhSMYRK+5ceMGMjIyAAAymQxff/01ywURUQGwYBD9z7lz5/Dpp5+iZ8+e6pJBREQFw4JBBCAmJgatW7fGv//+i0ePHiE1NVXqSEREBo0Fg0ze2bNn0aZNGzx9+hSNGzfGgQMH4OjoKHUsIiKDxoJBJi06OlpdLj799FOEhYWxXBARaQELBpmsM2fOoE2bNnj27BmaNGnCckFEpEUsGGSykpOTkZGRgaZNm2L//v1wcHCQOhIRkdHgdTDIZLVs2RKRkZGoXr067O3tpY5DRGRUWDDIpJw6dQoKhQK1a9cGADRq1EjiRERExomHSMhknDx5Em3btkWbNm1w9epVqeMQERk1FgwyCSdOnEC7du2QmJiIGjVqoFy5clJHIiIyaiwYZPSOHz8ODw8PJCUlwdXVFXv37oWdnZ3UsYiIjBoLBhm1Y8eOqcuFm5sb9uzZA1tbW6ljEREZPRYMMlpnzpyBp6cnXr58idatW7NcEBEVIp5FQkarSpUqqFOnDhQKBXbt2gUbGxupIxERmQwWDDJa9vb22LdvH8zNzVkuiIgKGQ+RkFE5dOgQ5s+fr35sb2/PckFEJAGOYJDRiIyMRKdOnZCSkoLy5cvDx8dH6khERCaLIxhkFA4ePIiOHTsiJSUFnp6e6NKli9SRiIhMGgsGGbyIiAh06tQJqamp6NChA3bs2AGFQiF1LCIik8ZDJGTQwsPD4eXlhbS0NHTo0AHbt2+HlZWV1LGIiEweRzDIYD18+BCdO3dGWloaOnbsyHJBRKRHOIJBBqts2bKYN28ewsPDsXXrVpYLIiI9whEMMjhCCPXno0aNws6dO1kuiIj0DAsGGZR9+/ahRYsWePbsmXqZmRn/GRMR6Rv+ZCaDsXfvXnh7e+PYsWM5LqZFRET6hwWDDMLu3bvRtWtXZGRkoHv37pgxY4bUkYiI6C1YMEjv/fHHH+jWrRsyMjLw2Wef4ddff4WlpaXUsYiI6C30omAEBQXBxcUFCoUCjRs3xqlTp/Jcd9WqVWjRogWKFi2KokWLwt3d/a3rk2HbtWsXunfvjszMTPTo0QObN29muSAiMgCSF4yQkBAEBAQgMDAQ0dHRqFOnDjw8PPD48eNc14+KikLv3r0RGRmJEydOwNnZGe3atcPDhw8LOTnpWnp6OkaPHo3MzEz4+PiwXBARGRDJC8aiRYswcOBA+Pv7o0aNGlixYgVsbGywdu3aXNfftGkThg0bhrp166JatWpYvXo1VCoVIiIiCjk56ZqVlRXCwsIwcuRIbNy4ERYWvGwLEZGhkLRgZGRk4MyZM3B3d1cvMzMzg7u7O06cOJGv50hJSUFmZiaKFSuW69fT09ORmJiY44P0W0JCgvrzKlWq4Mcff2S5ICIyMJIWjISEBCiVSpQsWTLH8pIlSyIuLi5fzzFhwgSUKVMmR0l53dy5c+Ho6Kj+cHZ2fu/cpDvbtm1DhQoVEBYWJnUUIiJ6D5IfInkf8+bNw5YtW95698xJkybhxYsX6o/79+8XckrKr61bt6JXr154+fIltm3bJnUcIiJ6D5KOOzs5OcHc3Bzx8fE5lsfHx6NUqVJv3XbBggXq+1DUrl07z/WsrKx4GWkDEBoaij59+kCpVMLX1xcrVqyQOhIREb0HSUcw5HI5GjRokGOCZvaEzSZNmuS53ffff49Zs2Zh//79aNiwYWFEJR3asmWLulz4+flh7dq1MDc3lzoWERG9B8lnzgUEBMDPzw8NGzZEo0aNsGTJEiQnJ8Pf3x8A4Ovri7Jly2Lu3LkAgO+++w7Tpk3D5s2b4eLiop6rYWdnBzs7O8neBxXMr7/+is8//xwqlQr+/v5YtWoVywURkRGQvGD4+PjgyZMnmDZtGuLi4lC3bl3s379fPfHz3r17OW5mtXz5cvUVHV8XGBiI6dOnF2Z00oJ9+/ZBpVLhyy+/xKpVq3jjMiIiIyF5wQCAESNGYMSIEbl+LSoqKsfjO3fu6D4QFZq1a9fC1dUV/v7+LBdEREaEP9Gp0B09ehRKpRIAYGFhgf79+7NcEBEZGf5Up0K1bt06tGzZEv3791eXDCIiMj4sGFRogoOD4e/vDyEErK2tIZPJpI5EREQ6woJBhWLt2rX48ssvIYTA0KFDERQUxMMiRERGjD/hSefWrFmDAQMGQAiBYcOGsVwQEZkA/pQnnXq9XIwYMQI//fQTD40QEZkAvThNlYxXiRIlYGlpiaFDh2LJkiUsF0REJoIFg3TKy8sLZ86cQc2aNVkuiIhMCA+RkNatW7cON2/eVD+uVasWywURkYlhwSCtWrZsGb744gu0atUKCQkJUschIiKJsGCQ1gQFBWH48OEAXt1j5oMPPpA4ERERSYUFg7Ri6dKl6vvJjB8/Ht9//z0PixARmTAWDHpvP/74I0aNGgUAmDBhAubNm8dyQURk4lgw6L1s3LgRo0ePBgBMmjQJc+fOZbkgIiKepkrvx9PTE7Vr14aXlxdmzZrFckFERABYMOg9OTk54fjx47CxsWG5ICIiNR4iIY3Nnz8fK1asUD+2tbVluSAiohw4gkEa+e677zBx4kQAwCeffIIGDRpInIiIiPQRRzAo3+bNm6cuFzNmzGC5ICKiPLFgUL7MmTMHkyZNAgDMmjUL06ZNkzgRERHpMx4ioXf69ttvMWXKFPXnkydPljgRERHpOxYMeqvDhw+ry8XroxhERERvw4JBb9WyZUtMmzYNNjY2mDBhgtRxiIjIQLBg0BuEEMjMzIRcLgfwakInERGRJjjJk3IQQiAwMBAeHh5ISUmROg4RERkoFgxSE0Jg2rRpmDVrFqKiorB7926pIxERkYHiIRIC8KpcTJkyBXPmzAEALFq0CD179pQ4FRERGSoWDIIQApMnT8a8efMAAIsXL8ZXX30lbSgiIjJoLBgmTgiBSZMm4bvvvgMA/PDDDxg1apTEqYiIyNCxYJi4R48eYeXKlQCApUuXYsSIERInIiIiY8CCYeLKli2LiIgI/P333xg4cKDUcYiIyEiwYJggIQTu3LmDChUqAADq1auHevXqSZyKiIiMCU9TNTFCCIwdOxZ16tTBiRMnpI5DRERGigXDhAghMGbMGCxevBhJSUm4dOmS1JGIiMhI8RCJiRBCYPTo0Vi6dCkAYOXKlRgwYIDEqYiIyFixYJgAIQRGjhyJoKAgAMCqVatYLoiISKdYMIycEAIjRozAsmXLIJPJsHr1anz55ZdSxyIiIiPHgmHkMjMzcefOHchkMqxZswb+/v5SRyIiIhPAgmHk5HI5fvvtNxw6dAgeHh5SxyEiIhPBs0iMkEqlwtatWyGEAAAoFAqWCyIiKlQsGEZGpVJhyJAh6NmzJ8aPHy91HCIiMlE8RGJEVCoVBg0ahDVr1sDMzAx169aVOhIREZkoFgwjoVKpMHDgQKxduxZmZmbYsGED+vTpI3UsIiIyUSwYRkCpVGLAgAEIDg6GmZkZNm3ahF69ekkdi4iITBjnYBiBQYMGITg4GObm5ti8eTPLBRERSY4Fwwi0atUKcrkcmzdvho+Pj9RxiIiIeIjEGHz++edwdXWFs7Oz1FGIiIgAcATDIGVlZWHixImIjY1VL2O5ICIifcKCYWCysrLg6+uL7777Dh4eHsjKypI6EhER0Rt4iMSAZGVloV+/ftiyZQssLCwwc+ZMWFjwfyEREekf/nYyEFlZWejbty9CQ0NhaWmJrVu3okuXLlLHIiIiyhULhgHIzMxE3759sXXrVlhaWuK3336Dl5eX1LGIiIjyxDkYBmDChAnYunUr5HI5tm/fznJBRER6jwXDAAQEBODjjz/G9u3b0alTJ6njEBERvRMPkegpIQRkMhkAoFy5coiJieGETiIiMhgcwdBDGRkZ6NGjB0JCQtTLWC6IiMiQsGDomfT0dHz22Wf47bff0L9/fzx58kTqSERERBrjn8V6JLtc7N69GwqFAtu3b0fx4sWljkVERKQxFgw9kZ6eju7du2PPnj1QKBTYtWsX2rZtK3UsIiKiAmHB0ANpaWno3r079u7dC4VCgT/++APu7u5SxyIiIiowzsHQA+vWrcPevXthbW2N3bt3s1wQEZHB4wiGHhg0aBCuX7+Ojh07onXr1lLHISIiem8sGBJJTU2Fubk55HI5ZDIZFi5cKHUkIiIireEhEgmkpqaiS5cu6NmzJzIyMqSOQ0REpHUcwShkKSkp6NKlC8LDw2Fra4urV6+idu3aUsciIiLSKhaMQpSSkgIvLy8cPHgQtra22LdvH8sFEREZJR4iKSTJycno1KkTDh48CDs7O+zfvx8tWrSQOhYREZFOcASjEGSXi6ioKNjb22P//v1o2rSp1LGIiIh0hgWjEFy9ehWnT5+Gvb09wsLC0KRJE6kjERER6RQLRiFo0KAB9uzZA7lcznJBREQmgQVDR16+fIkHDx6gWrVqAABXV1eJExERERUeTvLUgaSkJLRv3x4tWrTAhQsXpI5DRERU6FgwtCwxMRGenp44evQoMjMzkZaWJnUkIiKiQqcXBSMoKAguLi5QKBRo3LgxTp069db1t27dimrVqkGhUKBWrVrYu3dvISV9u7T0dHh6euL48eMoUqQIwsPD8cknn0gdi4iIqNBJXjBCQkIQEBCAwMBAREdHo06dOvDw8MDjx49zXf/48ePo3bs3+vfvj7Nnz8Lb2xve3t64ePFiISd/0+pVq3DixAkULVoU4eHhaNiwodSRiIiIJCETQggpAzRu3BiffPIJfvrpJwCASqWCs7MzRo4ciYkTJ76xvo+PD5KTk7F79271sk8//RR169bFihUr3vl6iYmJcHR0xIsXL+Dg4KCV9zBy42n8cfExnkWuhfk/kQgPD0f9+vW18txERET6QpPfoZKOYGRkZODMmTNwd3dXLzMzM4O7uztOnDiR6zYnTpzIsT4AeHh45Ll+eno6EhMTc3xom0z26r/WNjaIiIhguSAiIpMnacFISEiAUqlEyZIlcywvWbIk4uLict0mLi5Oo/Xnzp0LR0dH9Yezs7N2wr+mcqkiqFfOAVPHjkS9evW0/vxERESGxuivgzFp0iQEBASoHycmJmq9ZIxsUxkj21TW6nMSEREZMkkLhpOTE8zNzREfH59jeXx8PEqVKpXrNqVKldJofSsrK1hZWWknMBEREeWLpIdI5HI5GjRogIiICPUylUqFiIiIPC+p3aRJkxzrA8CBAwd4CW4iIiI9IvkhkoCAAPj5+aFhw4Zo1KgRlixZguTkZPj7+wMAfH19UbZsWcydOxcAMHr0aLi6umLhwoXo2LEjtmzZgr///hsrV66U8m0QERHRayQvGD4+Pnjy5AmmTZuGuLg41K1bF/v371dP5Lx37x7MzP5/oKVp06bYvHkzpkyZgsmTJ6Ny5crYuXMnatasKdVbICIiov+Q/DoYhU0X18EgIiIyBQZzHQwiIiIyTiwYREREpHUsGERERKR1LBhERESkdSwYREREpHUsGERERKR1LBhERESkdSwYREREpHUsGERERKR1LBhERESkdSwYREREpHUsGERERKR1LBhERESkdZLfrr2wZd88NjExUeIkREREhiX7d2d+bsRucgUjKSkJAODs7CxxEiIiIsOUlJQER0fHt64jE/mpIUZEpVLh0aNHsLe3h0wm08pzJiYmwtnZGffv34eDg4NWntPUcZ9qH/epdnF/ah/3qXbpYn8KIZCUlIQyZcrAzOztsyxMbgTDzMwM5cqV08lzOzg48JtCy7hPtY/7VLu4P7WP+1S7tL0/3zVykY2TPImIiEjrWDCIiIhI61gwtMDKygqBgYGwsrKSOorR4D7VPu5T7eL+1D7uU+2Sen+a3CRPIiIi0j2OYBAREZHWsWAQERGR1rFgEBERkdaxYBAREZHWsWDkU1BQEFxcXKBQKNC4cWOcOnXqretv3boV1apVg0KhQK1atbB3795CSmo4NNmnq1atQosWLVC0aFEULVoU7u7u7/x/YGo0/TeabcuWLZDJZPD29tZtQAOk6T59/vw5hg8fjtKlS8PKygpVqlTh9/5rNN2fS5YsQdWqVWFtbQ1nZ2eMGTMGaWlphZRW/x0+fBheXl4oU6YMZDIZdu7c+c5toqKiUL9+fVhZWeGjjz5CcHCw7gIKeqctW7YIuVwu1q5dKy5duiQGDhwoihQpIuLj43Nd/9ixY8Lc3Fx8//334vLly2LKlCnC0tJSXLhwoZCT6y9N92mfPn1EUFCQOHv2rLhy5Yr44osvhKOjo3jw4EEhJ9dPmu7PbLdv3xZly5YVLVq0EF26dCmcsAZC032anp4uGjZsKDp06CCOHj0qbt++LaKiokRMTEwhJ9dPmu7PTZs2CSsrK7Fp0yZx+/ZtERYWJkqXLi3GjBlTyMn11969e8U333wjtm/fLgCIHTt2vHX9W7duCRsbGxEQECAuX74sli5dKszNzcX+/ft1ko8FIx8aNWokhg8frn6sVCpFmTJlxNy5c3Ndv2fPnqJjx445ljVu3FgMHjxYpzkNiab79L+ysrKEvb29WLduna4iGpSC7M+srCzRtGlTsXr1auHn58eC8R+a7tPly5eLihUrioyMjMKKaFA03Z/Dhw8XrVu3zrEsICBANGvWTKc5DVV+Csb48ePFxx9/nGOZj4+P8PDw0EkmHiJ5h4yMDJw5cwbu7u7qZWZmZnB3d8eJEydy3ebEiRM51gcADw+PPNc3NQXZp/+VkpKCzMxMFCtWTFcxDUZB9+fMmTNRokQJ9O/fvzBiGpSC7NNdu3ahSZMmGD58OEqWLImaNWtizpw5UCqVhRVbbxVkfzZt2hRnzpxRH0a5desW9u7diw4dOhRKZmNU2L+bTO5mZ5pKSEiAUqlEyZIlcywvWbIkrl69mus2cXFxua4fFxens5yGpCD79L8mTJiAMmXKvPHNYooKsj+PHj2KNWvWICYmphASGp6C7NNbt27h4MGD6Nu3L/bu3YsbN25g2LBhyMzMRGBgYGHE1lsF2Z99+vRBQkICmjdvDiEEsrKyMGTIEEyePLkwIhulvH43JSYmIjU1FdbW1lp9PY5gkMGZN28etmzZgh07dkChUEgdx+AkJSWhX79+WLVqFZycnKSOYzRUKhVKlCiBlStXokGDBvDx8cE333yDFStWSB3NIEVFRWHOnDlYtmwZoqOjsX37duzZswezZs2SOhrlE0cw3sHJyQnm5uaIj4/PsTw+Ph6lSpXKdZtSpUpptL6pKcg+zbZgwQLMmzcP4eHhqF27ti5jGgxN9+fNmzdx584deHl5qZepVCoAgIWFBa5du4ZKlSrpNrSeK8i/0dKlS8PS0hLm5ubqZdWrV0dcXBwyMjIgl8t1mlmfFWR/Tp06Ff369cOAAQMAALVq1UJycjIGDRqEb775BmZm/PtYU3n9bnJwcND66AXAEYx3ksvlaNCgASIiItTLVCoVIiIi0KRJk1y3adKkSY71AeDAgQN5rm9qCrJPAeD777/HrFmzsH//fjRs2LAwohoETfdntWrVcOHCBcTExKg/OnfujFatWiEmJgbOzs6FGV8vFeTfaLNmzXDjxg11WQOA69evo3Tp0iZdLoCC7c+UlJQ3SkR2eRO8hVaBFPrvJp1MHTUyW7ZsEVZWViI4OFhcvnxZDBo0SBQpUkTExcUJIYTo16+fmDhxonr9Y8eOCQsLC7FgwQJx5coVERgYyNNU/0PTfTpv3jwhl8vFtm3bRGxsrPojKSlJqregVzTdn//Fs0jepOk+vXfvnrC3txcjRowQ165dE7t37xYlSpQQs2fPluot6BVN92dgYKCwt7cXv/76q7h165b4888/RaVKlUTPnj2legt6JykpSZw9e1acPXtWABCLFi0SZ8+eFXfv3hVCCDFx4kTRr18/9frZp6l+/fXX4sqVKyIoKIinqeqDpUuXivLlywu5XC4aNWokTp48qf6aq6ur8PPzy7F+aGioqFKlipDL5eLjjz8We/bsKeTE+k+Tffrhhx8KAG98BAYGFn5wPaXpv9HXsWDkTtN9evz4cdG4cWNhZWUlKlasKL799luRlZVVyKn1lyb7MzMzU0yfPl1UqlRJKBQK4ezsLIYNGyaePXtW+MH1VGRkZK4/F7P3o5+fn3B1dX1jm7p16wq5XC4qVqwofvnlF53l4+3aiYiISOs4B4OIiIi0jgWDiIiItI4Fg4iIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLSOBYOIiIi0jgWDiIiItI4Fg8jIBAcHo0iRIlLHKDCZTIadO3e+dZ0vvvgC3t7ehZKHiAqGBYNID33xxReQyWRvfNy4cUPqaAgODlbnMTMzQ7ly5eDv74/Hjx9r5fljY2PRvn17AMCdO3cgk8kQExOTY50ffvgBwcHBWnm9vEyfPl39Ps3NzeHs7IxBgwbh6dOnGj0PyxCZKt6unUhPeXp64pdffsmxrHjx4hKlycnBwQHXrl2DSqXCuXPn4O/vj0ePHiEsLOy9nzuv23e/ztHR8b1fJz8+/vhjhIeHQ6lU4sqVK/jyyy/x4sULhISEFMrrExkyjmAQ6SkrKyuUKlUqx4e5uTkWLVqEWrVqwdbWFs7Ozhg2bBhevnyZ5/OcO3cOrVq1gr29PRwcHNCgQQP8/fff6q8fPXoULVq0gLW1NZydnTFq1CgkJye/NZtMJkOpUqVQpkwZtG/fHqNGjUJ4eDhSU1OhUqkwc+ZMlCtXDlZWVqhbty7279+v3jYjIwMjRoxA6dKloVAo8OGHH2Lu3Lk5njv7EEmFChUAAPXq1YNMJoObmxuAnKMCK1euRJkyZXLcJh0AunTpgi+//FL9+Pfff0f9+vWhUChQsWJFzJgxA1lZWW99nxYWFihVqhTKli0Ld3d39OjRAwcOHFB/XalUon///qhQoQKsra1RtWpV/PDDD+qvT58+HevWrcPvv/+uHg2JiooCANy/fx89e/ZEkSJFUKxYMXTp0gV37tx5ax4iQ8KCQWRgzMzM8OOPP+LSpUtYt24dDh48iPHjx+e5ft++fVGuXDmcPn0aZ86cwcSJE2FpaQkAuHnzJjw9PdG9e3ecP38eISEhOHr0KEaMGKFRJmtra6hUKmRlZeGHH37AwoULsWDBApw/fx4eHh7o3Lkz/vnnHwDAjz/+iF27diE0NBTXrl3Dpk2b4OLikuvznjp1CgAQHh6O2NhYbN++/Y11evTogX///ReRkZHqZU+fPsX+/fvRt29fAMCRI0fg6+uL0aNH4/Lly/j5558RHByMb7/9Nt/v8c6dOwgLC4NcLlcvU6lUKFeuHLZu3YrLly9j2rRpmDx5MkJDQwEA48aNQ8+ePeHp6YnY2FjExsaiadOmyMzMhIeHB+zt7XHkyBEcO3YMdnZ28PT0REZGRr4zEek1nd2nlYgKzM/PT5ibmwtbW1v1x2effZbrulu3bhUffPCB+vEvv/wiHB0d1Y/t7e1FcHBwrtv2799fDBo0KMeyI0eOCDMzM5GamprrNv99/uvXr4sqVaqIhg0bCiGEKFOmjPj2229zbPPJJ5+IYcOGCSGEGDlypGjdurVQqVS5Pj8AsWPHDiGEELdv3xYAxNmzZ3Os89/by3fp0kV8+eWX6sc///yzKFOmjFAqlUIIIdq0aSPmzJmT4zk2bNggSpcunWsGIYQIDAwUZmZmwtbWVigUCvWtsBctWpTnNkIIMXz4cNG9e/c8s2a/dtWqVXPsg/T0dGFtbS3CwsLe+vxEhoJzMIj0VKtWrbB8+XL1Y1tbWwCv/pqfO3curl69isTERGRlZSEtLQ0pKSmwsbF543kCAgIwYMAAbNiwQT3MX6lSJQCvDp+cP38emzZtUq8vhIBKpcLt27dRvXr1XLO9ePECdnZ2UKlUSEtLQ/PmzbF69WokJibi0aNHaNasWY71mzVrhnPnzgF4dXijbdu2qFq1Kjw9PdGpUye0a9fuvfZV3759MXDgQCxbtgxWVlbYtGkTevXqBTMzM/X7PHbsWI4RC6VS+db9BgBVq1bFrl27kJaWho0bNyImJgYjR47MsU5QUBDWrl2Le/fuITU1FRkZGahbt+5b8547dw43btyAvb19juVpaWm4efNmAfYAkf5hwSDSU7a2tvjoo49yLLtz5w46deqEoUOH4ttvv0WxYsVw9OhR9O/fHxkZGbn+opw+fTr69OmDPXv2YN++fQgMDMSWLVvQtWtXvHz5EoMHD8aoUaPe2K58+fJ5ZrO3t0d0dDTMzMxQunRpWFtbAwASExPf+b7q16+P27dvY9++fQgPD0fPnj3h7u6Obdu2vXPbvHh5eUEIgT179uCTTz7BkSNHsHjxYvXXX758iRkzZqBbt25vbKtQKPJ8Xrlcrv5/MG/ePHTs2BEzZszArFmzAABbtmzBuHHjsHDhQjRp0gT29vaYP38+/vrrr7fmffnyJRo0aJCj2GXTl4m8RO+LBYPIgJw5cwYqlQoLFy5U/3Wefbz/bapUqYIqVapgzJgx6N27N3755Rd07doV9evXx+XLl98oMu9iZmaW6zYODg4oU6YMjh07BldXV/XyY8eOoVGjRjnW8/HxgY+PDz777DN4enri6dOnKFasWI7ny57voFQq35pHoVCgW7du2LRpE27cuIGqVauifv366q/Xr18f165d0/h9/teUKVPQunVrDB06VP0+mzZtimHDhqnX+e8IhFwufyN//fr1ERISghIlSsDBweG9MhHpK07yJDIgH330ETIzM7F06VLcunULGzZswIoVK/JcPzU1FSNGjEBUVBTu3r2LY8eO4fTp0+pDHxMmTMDx48cxYsQIxMTE4J9//sHvv/+u8STP13399df47rvvEBISgmvXrmHixImIiYnB6NGjAQCLFi3Cr7/+iqtXr+L69evYunUrSpUqlevFwUqUKAFra2vs378f8fHxePHiRZ6v27dvX+zZswdr165VT+7MNm3aNKxfvx4zZszApUuXcOXKFWzZsgVTpkzR6L01adIEtWvXxpw5cwAAlStXxt9//42wsDBcv34dU6dOxenTp3Ns4+LigvPnz+PatWtISEhAZmYm+vbtCycnJ3Tp0gVHjhzB7du3ERUVhVGjRuHBgwcaZSLSW1JPAiGiN+U2MTDbokWLROnSpYW1tbXw8PAQ69evFwDEs2fPhBA5J2Gmp6eLXr16CWdnZyGXy0WZMmXEiBEjckzgPHXqlGjbtq2ws7MTtra2onbt2m9M0nzdfyd5/pdSqRTTp08XZcuWFZaWlqJOnTpi37596q+vXLlS1K1bV9ja2goHBwfRpk0bER0drf46XpvkKYQQq1atEs7OzsLMzEy4urrmuX+USqUoXbq0ACBu3rz5Rq79+/eLpk2bCmtra+Hg4CAaNWokVq5cmef7CAwMFHXq1Hlj+a+//iqsrKzEvXv3RFpamvjiiy+Eo6OjKFKkiBg6dKiYOHFiju0eP36s3r8ARGRkpBBCiNjYWOHr6yucnJyElZWVqFixohg4cKB48eJFnpmIDIlMCCGkrThERERkbHiIhIiIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLSOBYOIiIi0jgWDiIiItI4Fg4iIiLSOBYOIiIi07v8A1k+hWenkwRsAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from sklearn.metrics import roc_curve, roc_auc_score\n", + "import matplotlib\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "\n", + "y_scores = model.predict_proba(XTest)\n", + "fpr, tpr, thresholds = roc_curve(yTest, y_scores[:,1])\n", + "\n", + "fig = plt.figure(figsize=(6, 6))\n", + "plt.plot([0, 1], [0, 1], 'k--')\n", + "plt.plot(fpr, tpr)\n", + "plt.xlabel('False Positive Rate')\n", + "plt.ylabel('True Positive Rate')\n", + "plt.title('ROC Curve')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.9749908725812341\n" + ] + } + ], + "source": [ + "auc = roc_auc_score(yTest,y_scores[:,1])\n", + "print(auc)" + ] } ], "metadata": { @@ -242,7 +1175,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.1" + "version": "3.12.5" }, "metadata": { "interpreter": { diff --git a/2-Regression/4-Logistic/penguins_binary_classification.csv b/2-Regression/4-Logistic/penguins_binary_classification.csv new file mode 100644 index 0000000000..57fdab32db --- /dev/null +++ b/2-Regression/4-Logistic/penguins_binary_classification.csv @@ -0,0 +1,275 @@ +species,island,bill_length_mm,bill_depth_mm,flipper_length_mm,body_mass_g,year +Adelie,Torgersen,39.1,18.7,181.0,3750.0,2007 +Adelie,Torgersen,39.5,17.4,186.0,3800.0,2007 +Adelie,Torgersen,40.3,18.0,195.0,3250.0,2007 +Adelie,Torgersen,36.7,19.3,193.0,3450.0,2007 +Adelie,Torgersen,39.3,20.6,190.0,3650.0,2007 +Adelie,Torgersen,38.9,17.8,181.0,3625.0,2007 +Adelie,Torgersen,39.2,19.6,195.0,4675.0,2007 +Adelie,Torgersen,34.1,18.1,193.0,3475.0,2007 +Adelie,Torgersen,42.0,20.2,190.0,4250.0,2007 +Adelie,Torgersen,37.8,17.1,186.0,3300.0,2007 +Adelie,Torgersen,37.8,17.3,180.0,3700.0,2007 +Adelie,Torgersen,41.1,17.6,182.0,3200.0,2007 +Adelie,Torgersen,38.6,21.2,191.0,3800.0,2007 +Adelie,Torgersen,34.6,21.1,198.0,4400.0,2007 +Adelie,Torgersen,36.6,17.8,185.0,3700.0,2007 +Adelie,Torgersen,38.7,19.0,195.0,3450.0,2007 +Adelie,Torgersen,42.5,20.7,197.0,4500.0,2007 +Adelie,Torgersen,34.4,18.4,184.0,3325.0,2007 +Adelie,Torgersen,46.0,21.5,194.0,4200.0,2007 +Adelie,Biscoe,37.8,18.3,174.0,3400.0,2007 +Adelie,Biscoe,37.7,18.7,180.0,3600.0,2007 +Adelie,Biscoe,35.9,19.2,189.0,3800.0,2007 +Adelie,Biscoe,38.2,18.1,185.0,3950.0,2007 +Adelie,Biscoe,38.8,17.2,180.0,3800.0,2007 +Adelie,Biscoe,35.3,18.9,187.0,3800.0,2007 +Adelie,Biscoe,40.6,18.6,183.0,3550.0,2007 +Adelie,Biscoe,40.5,17.9,187.0,3200.0,2007 +Adelie,Biscoe,37.9,18.6,172.0,3150.0,2007 +Adelie,Biscoe,40.5,18.9,180.0,3950.0,2007 +Adelie,Dream,39.5,16.7,178.0,3250.0,2007 +Adelie,Dream,37.2,18.1,178.0,3900.0,2007 +Adelie,Dream,39.5,17.8,188.0,3300.0,2007 +Adelie,Dream,40.9,18.9,184.0,3900.0,2007 +Adelie,Dream,36.4,17.0,195.0,3325.0,2007 +Adelie,Dream,39.2,21.1,196.0,4150.0,2007 +Adelie,Dream,38.8,20.0,190.0,3950.0,2007 +Adelie,Dream,42.2,18.5,180.0,3550.0,2007 +Adelie,Dream,37.6,19.3,181.0,3300.0,2007 +Adelie,Dream,39.8,19.1,184.0,4650.0,2007 +Adelie,Dream,36.5,18.0,182.0,3150.0,2007 +Adelie,Dream,40.8,18.4,195.0,3900.0,2007 +Adelie,Dream,36.0,18.5,186.0,3100.0,2007 +Adelie,Dream,44.1,19.7,196.0,4400.0,2007 +Adelie,Dream,37.0,16.9,185.0,3000.0,2007 +Adelie,Dream,39.6,18.8,190.0,4600.0,2007 +Adelie,Dream,41.1,19.0,182.0,3425.0,2007 +Adelie,Dream,37.5,18.9,179.0,2975.0,2007 +Adelie,Dream,36.0,17.9,190.0,3450.0,2007 +Adelie,Dream,42.3,21.2,191.0,4150.0,2007 +Adelie,Biscoe,39.6,17.7,186.0,3500.0,2008 +Adelie,Biscoe,40.1,18.9,188.0,4300.0,2008 +Adelie,Biscoe,35.0,17.9,190.0,3450.0,2008 +Adelie,Biscoe,42.0,19.5,200.0,4050.0,2008 +Adelie,Biscoe,34.5,18.1,187.0,2900.0,2008 +Adelie,Biscoe,41.4,18.6,191.0,3700.0,2008 +Adelie,Biscoe,39.0,17.5,186.0,3550.0,2008 +Adelie,Biscoe,40.6,18.8,193.0,3800.0,2008 +Adelie,Biscoe,36.5,16.6,181.0,2850.0,2008 +Adelie,Biscoe,37.6,19.1,194.0,3750.0,2008 +Adelie,Biscoe,35.7,16.9,185.0,3150.0,2008 +Adelie,Biscoe,41.3,21.1,195.0,4400.0,2008 +Adelie,Biscoe,37.6,17.0,185.0,3600.0,2008 +Adelie,Biscoe,41.1,18.2,192.0,4050.0,2008 +Adelie,Biscoe,36.4,17.1,184.0,2850.0,2008 +Adelie,Biscoe,41.6,18.0,192.0,3950.0,2008 +Adelie,Biscoe,35.5,16.2,195.0,3350.0,2008 +Adelie,Biscoe,41.1,19.1,188.0,4100.0,2008 +Adelie,Torgersen,35.9,16.6,190.0,3050.0,2008 +Adelie,Torgersen,41.8,19.4,198.0,4450.0,2008 +Adelie,Torgersen,33.5,19.0,190.0,3600.0,2008 +Adelie,Torgersen,39.7,18.4,190.0,3900.0,2008 +Adelie,Torgersen,39.6,17.2,196.0,3550.0,2008 +Adelie,Torgersen,45.8,18.9,197.0,4150.0,2008 +Adelie,Torgersen,35.5,17.5,190.0,3700.0,2008 +Adelie,Torgersen,42.8,18.5,195.0,4250.0,2008 +Adelie,Torgersen,40.9,16.8,191.0,3700.0,2008 +Adelie,Torgersen,37.2,19.4,184.0,3900.0,2008 +Adelie,Torgersen,36.2,16.1,187.0,3550.0,2008 +Adelie,Torgersen,42.1,19.1,195.0,4000.0,2008 +Adelie,Torgersen,34.6,17.2,189.0,3200.0,2008 +Adelie,Torgersen,42.9,17.6,196.0,4700.0,2008 +Adelie,Torgersen,36.7,18.8,187.0,3800.0,2008 +Adelie,Torgersen,35.1,19.4,193.0,4200.0,2008 +Adelie,Dream,37.3,17.8,191.0,3350.0,2008 +Adelie,Dream,41.3,20.3,194.0,3550.0,2008 +Adelie,Dream,36.3,19.5,190.0,3800.0,2008 +Adelie,Dream,36.9,18.6,189.0,3500.0,2008 +Adelie,Dream,38.3,19.2,189.0,3950.0,2008 +Adelie,Dream,38.9,18.8,190.0,3600.0,2008 +Adelie,Dream,35.7,18.0,202.0,3550.0,2008 +Adelie,Dream,41.1,18.1,205.0,4300.0,2008 +Adelie,Dream,34.0,17.1,185.0,3400.0,2008 +Adelie,Dream,39.6,18.1,186.0,4450.0,2008 +Adelie,Dream,36.2,17.3,187.0,3300.0,2008 +Adelie,Dream,40.8,18.9,208.0,4300.0,2008 +Adelie,Dream,38.1,18.6,190.0,3700.0,2008 +Adelie,Dream,40.3,18.5,196.0,4350.0,2008 +Adelie,Dream,33.1,16.1,178.0,2900.0,2008 +Adelie,Dream,43.2,18.5,192.0,4100.0,2008 +Adelie,Biscoe,35.0,17.9,192.0,3725.0,2009 +Adelie,Biscoe,41.0,20.0,203.0,4725.0,2009 +Adelie,Biscoe,37.7,16.0,183.0,3075.0,2009 +Adelie,Biscoe,37.8,20.0,190.0,4250.0,2009 +Adelie,Biscoe,37.9,18.6,193.0,2925.0,2009 +Adelie,Biscoe,39.7,18.9,184.0,3550.0,2009 +Adelie,Biscoe,38.6,17.2,199.0,3750.0,2009 +Adelie,Biscoe,38.2,20.0,190.0,3900.0,2009 +Adelie,Biscoe,38.1,17.0,181.0,3175.0,2009 +Adelie,Biscoe,43.2,19.0,197.0,4775.0,2009 +Adelie,Biscoe,38.1,16.5,198.0,3825.0,2009 +Adelie,Biscoe,45.6,20.3,191.0,4600.0,2009 +Adelie,Biscoe,39.7,17.7,193.0,3200.0,2009 +Adelie,Biscoe,42.2,19.5,197.0,4275.0,2009 +Adelie,Biscoe,39.6,20.7,191.0,3900.0,2009 +Adelie,Biscoe,42.7,18.3,196.0,4075.0,2009 +Adelie,Torgersen,38.6,17.0,188.0,2900.0,2009 +Adelie,Torgersen,37.3,20.5,199.0,3775.0,2009 +Adelie,Torgersen,35.7,17.0,189.0,3350.0,2009 +Adelie,Torgersen,41.1,18.6,189.0,3325.0,2009 +Adelie,Torgersen,36.2,17.2,187.0,3150.0,2009 +Adelie,Torgersen,37.7,19.8,198.0,3500.0,2009 +Adelie,Torgersen,40.2,17.0,176.0,3450.0,2009 +Adelie,Torgersen,41.4,18.5,202.0,3875.0,2009 +Adelie,Torgersen,35.2,15.9,186.0,3050.0,2009 +Adelie,Torgersen,40.6,19.0,199.0,4000.0,2009 +Adelie,Torgersen,38.8,17.6,191.0,3275.0,2009 +Adelie,Torgersen,41.5,18.3,195.0,4300.0,2009 +Adelie,Torgersen,39.0,17.1,191.0,3050.0,2009 +Adelie,Torgersen,44.1,18.0,210.0,4000.0,2009 +Adelie,Torgersen,38.5,17.9,190.0,3325.0,2009 +Adelie,Torgersen,43.1,19.2,197.0,3500.0,2009 +Adelie,Dream,36.8,18.5,193.0,3500.0,2009 +Adelie,Dream,37.5,18.5,199.0,4475.0,2009 +Adelie,Dream,38.1,17.6,187.0,3425.0,2009 +Adelie,Dream,41.1,17.5,190.0,3900.0,2009 +Adelie,Dream,35.6,17.5,191.0,3175.0,2009 +Adelie,Dream,40.2,20.1,200.0,3975.0,2009 +Adelie,Dream,37.0,16.5,185.0,3400.0,2009 +Adelie,Dream,39.7,17.9,193.0,4250.0,2009 +Adelie,Dream,40.2,17.1,193.0,3400.0,2009 +Adelie,Dream,40.6,17.2,187.0,3475.0,2009 +Adelie,Dream,32.1,15.5,188.0,3050.0,2009 +Adelie,Dream,40.7,17.0,190.0,3725.0,2009 +Adelie,Dream,37.3,16.8,192.0,3000.0,2009 +Adelie,Dream,39.0,18.7,185.0,3650.0,2009 +Adelie,Dream,39.2,18.6,190.0,4250.0,2009 +Adelie,Dream,36.6,18.4,184.0,3475.0,2009 +Adelie,Dream,36.0,17.8,195.0,3450.0,2009 +Adelie,Dream,37.8,18.1,193.0,3750.0,2009 +Adelie,Dream,36.0,17.1,187.0,3700.0,2009 +Adelie,Dream,41.5,18.5,201.0,4000.0,2009 +Gentoo,Biscoe,46.1,13.2,211.0,4500.0,2007 +Gentoo,Biscoe,50.0,16.3,230.0,5700.0,2007 +Gentoo,Biscoe,48.7,14.1,210.0,4450.0,2007 +Gentoo,Biscoe,50.0,15.2,218.0,5700.0,2007 +Gentoo,Biscoe,47.6,14.5,215.0,5400.0,2007 +Gentoo,Biscoe,46.5,13.5,210.0,4550.0,2007 +Gentoo,Biscoe,45.4,14.6,211.0,4800.0,2007 +Gentoo,Biscoe,46.7,15.3,219.0,5200.0,2007 +Gentoo,Biscoe,43.3,13.4,209.0,4400.0,2007 +Gentoo,Biscoe,46.8,15.4,215.0,5150.0,2007 +Gentoo,Biscoe,40.9,13.7,214.0,4650.0,2007 +Gentoo,Biscoe,49.0,16.1,216.0,5550.0,2007 +Gentoo,Biscoe,45.5,13.7,214.0,4650.0,2007 +Gentoo,Biscoe,48.4,14.6,213.0,5850.0,2007 +Gentoo,Biscoe,45.8,14.6,210.0,4200.0,2007 +Gentoo,Biscoe,49.3,15.7,217.0,5850.0,2007 +Gentoo,Biscoe,42.0,13.5,210.0,4150.0,2007 +Gentoo,Biscoe,49.2,15.2,221.0,6300.0,2007 +Gentoo,Biscoe,46.2,14.5,209.0,4800.0,2007 +Gentoo,Biscoe,48.7,15.1,222.0,5350.0,2007 +Gentoo,Biscoe,50.2,14.3,218.0,5700.0,2007 +Gentoo,Biscoe,45.1,14.5,215.0,5000.0,2007 +Gentoo,Biscoe,46.5,14.5,213.0,4400.0,2007 +Gentoo,Biscoe,46.3,15.8,215.0,5050.0,2007 +Gentoo,Biscoe,42.9,13.1,215.0,5000.0,2007 +Gentoo,Biscoe,46.1,15.1,215.0,5100.0,2007 +Gentoo,Biscoe,44.5,14.3,216.0,4100.0,2007 +Gentoo,Biscoe,47.8,15.0,215.0,5650.0,2007 +Gentoo,Biscoe,48.2,14.3,210.0,4600.0,2007 +Gentoo,Biscoe,50.0,15.3,220.0,5550.0,2007 +Gentoo,Biscoe,47.3,15.3,222.0,5250.0,2007 +Gentoo,Biscoe,42.8,14.2,209.0,4700.0,2007 +Gentoo,Biscoe,45.1,14.5,207.0,5050.0,2007 +Gentoo,Biscoe,59.6,17.0,230.0,6050.0,2007 +Gentoo,Biscoe,49.1,14.8,220.0,5150.0,2008 +Gentoo,Biscoe,48.4,16.3,220.0,5400.0,2008 +Gentoo,Biscoe,42.6,13.7,213.0,4950.0,2008 +Gentoo,Biscoe,44.4,17.3,219.0,5250.0,2008 +Gentoo,Biscoe,44.0,13.6,208.0,4350.0,2008 +Gentoo,Biscoe,48.7,15.7,208.0,5350.0,2008 +Gentoo,Biscoe,42.7,13.7,208.0,3950.0,2008 +Gentoo,Biscoe,49.6,16.0,225.0,5700.0,2008 +Gentoo,Biscoe,45.3,13.7,210.0,4300.0,2008 +Gentoo,Biscoe,49.6,15.0,216.0,4750.0,2008 +Gentoo,Biscoe,50.5,15.9,222.0,5550.0,2008 +Gentoo,Biscoe,43.6,13.9,217.0,4900.0,2008 +Gentoo,Biscoe,45.5,13.9,210.0,4200.0,2008 +Gentoo,Biscoe,50.5,15.9,225.0,5400.0,2008 +Gentoo,Biscoe,44.9,13.3,213.0,5100.0,2008 +Gentoo,Biscoe,45.2,15.8,215.0,5300.0,2008 +Gentoo,Biscoe,46.6,14.2,210.0,4850.0,2008 +Gentoo,Biscoe,48.5,14.1,220.0,5300.0,2008 +Gentoo,Biscoe,45.1,14.4,210.0,4400.0,2008 +Gentoo,Biscoe,50.1,15.0,225.0,5000.0,2008 +Gentoo,Biscoe,46.5,14.4,217.0,4900.0,2008 +Gentoo,Biscoe,45.0,15.4,220.0,5050.0,2008 +Gentoo,Biscoe,43.8,13.9,208.0,4300.0,2008 +Gentoo,Biscoe,45.5,15.0,220.0,5000.0,2008 +Gentoo,Biscoe,43.2,14.5,208.0,4450.0,2008 +Gentoo,Biscoe,50.4,15.3,224.0,5550.0,2008 +Gentoo,Biscoe,45.3,13.8,208.0,4200.0,2008 +Gentoo,Biscoe,46.2,14.9,221.0,5300.0,2008 +Gentoo,Biscoe,45.7,13.9,214.0,4400.0,2008 +Gentoo,Biscoe,54.3,15.7,231.0,5650.0,2008 +Gentoo,Biscoe,45.8,14.2,219.0,4700.0,2008 +Gentoo,Biscoe,49.8,16.8,230.0,5700.0,2008 +Gentoo,Biscoe,46.2,14.4,214.0,4650.0,2008 +Gentoo,Biscoe,49.5,16.2,229.0,5800.0,2008 +Gentoo,Biscoe,43.5,14.2,220.0,4700.0,2008 +Gentoo,Biscoe,50.7,15.0,223.0,5550.0,2008 +Gentoo,Biscoe,47.7,15.0,216.0,4750.0,2008 +Gentoo,Biscoe,46.4,15.6,221.0,5000.0,2008 +Gentoo,Biscoe,48.2,15.6,221.0,5100.0,2008 +Gentoo,Biscoe,46.5,14.8,217.0,5200.0,2008 +Gentoo,Biscoe,46.4,15.0,216.0,4700.0,2008 +Gentoo,Biscoe,48.6,16.0,230.0,5800.0,2008 +Gentoo,Biscoe,47.5,14.2,209.0,4600.0,2008 +Gentoo,Biscoe,51.1,16.3,220.0,6000.0,2008 +Gentoo,Biscoe,45.2,13.8,215.0,4750.0,2008 +Gentoo,Biscoe,45.2,16.4,223.0,5950.0,2008 +Gentoo,Biscoe,49.1,14.5,212.0,4625.0,2009 +Gentoo,Biscoe,52.5,15.6,221.0,5450.0,2009 +Gentoo,Biscoe,47.4,14.6,212.0,4725.0,2009 +Gentoo,Biscoe,50.0,15.9,224.0,5350.0,2009 +Gentoo,Biscoe,44.9,13.8,212.0,4750.0,2009 +Gentoo,Biscoe,50.8,17.3,228.0,5600.0,2009 +Gentoo,Biscoe,43.4,14.4,218.0,4600.0,2009 +Gentoo,Biscoe,51.3,14.2,218.0,5300.0,2009 +Gentoo,Biscoe,47.5,14.0,212.0,4875.0,2009 +Gentoo,Biscoe,52.1,17.0,230.0,5550.0,2009 +Gentoo,Biscoe,47.5,15.0,218.0,4950.0,2009 +Gentoo,Biscoe,52.2,17.1,228.0,5400.0,2009 +Gentoo,Biscoe,45.5,14.5,212.0,4750.0,2009 +Gentoo,Biscoe,49.5,16.1,224.0,5650.0,2009 +Gentoo,Biscoe,44.5,14.7,214.0,4850.0,2009 +Gentoo,Biscoe,50.8,15.7,226.0,5200.0,2009 +Gentoo,Biscoe,49.4,15.8,216.0,4925.0,2009 +Gentoo,Biscoe,46.9,14.6,222.0,4875.0,2009 +Gentoo,Biscoe,48.4,14.4,203.0,4625.0,2009 +Gentoo,Biscoe,51.1,16.5,225.0,5250.0,2009 +Gentoo,Biscoe,48.5,15.0,219.0,4850.0,2009 +Gentoo,Biscoe,55.9,17.0,228.0,5600.0,2009 +Gentoo,Biscoe,47.2,15.5,215.0,4975.0,2009 +Gentoo,Biscoe,49.1,15.0,228.0,5500.0,2009 +Gentoo,Biscoe,47.3,13.8,216.0,4725.0,2009 +Gentoo,Biscoe,46.8,16.1,215.0,5500.0,2009 +Gentoo,Biscoe,41.7,14.7,210.0,4700.0,2009 +Gentoo,Biscoe,53.4,15.8,219.0,5500.0,2009 +Gentoo,Biscoe,43.3,14.0,208.0,4575.0,2009 +Gentoo,Biscoe,48.1,15.1,209.0,5500.0,2009 +Gentoo,Biscoe,50.5,15.2,216.0,5000.0,2009 +Gentoo,Biscoe,49.8,15.9,229.0,5950.0,2009 +Gentoo,Biscoe,43.5,15.2,213.0,4650.0,2009 +Gentoo,Biscoe,51.5,16.3,230.0,5500.0,2009 +Gentoo,Biscoe,46.2,14.1,217.0,4375.0,2009 +Gentoo,Biscoe,55.1,16.0,230.0,5850.0,2009 +Gentoo,Biscoe,44.5,15.7,217.0,4875.0,2009 +Gentoo,Biscoe,48.8,16.2,222.0,6000.0,2009 +Gentoo,Biscoe,47.2,13.7,214.0,4925.0,2009 +Gentoo,Biscoe,46.8,14.3,215.0,4850.0,2009 +Gentoo,Biscoe,50.4,15.7,222.0,5750.0,2009 +Gentoo,Biscoe,45.2,14.8,212.0,5200.0,2009 +Gentoo,Biscoe,49.9,16.1,213.0,5400.0,2009 diff --git a/3-Web-App/1-Web-App/notebook.ipynb b/3-Web-App/1-Web-App/notebook.ipynb index e69de29bb2..278b55adba 100644 --- a/3-Web-App/1-Web-App/notebook.ipynb +++ b/3-Web-App/1-Web-App/notebook.ipynb @@ -0,0 +1,376 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 110, + "metadata": {}, + "outputs": [ + { + "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", + "
datetimecitystatecountryshapeduration (seconds)duration (hours/min)commentsdate postedlatitudelongitude
010/10/1949 20:30san marcostxuscylinder2700.045 minutesThis event took place in early fall around 194...4/27/200429.883056-97.941111
110/10/1949 21:00lackland afbtxNaNlight7200.01-2 hrs1949 Lackland AFB&#44 TX. Lights racing acros...12/16/200529.384210-98.581082
210/10/1955 17:00chester (uk/england)NaNgbcircle20.020 secondsGreen/Orange circular disc over Chester&#44 En...1/21/200853.200000-2.916667
310/10/1956 21:00ednatxuscircle20.01/2 hourMy older brother and twin sister were leaving ...1/17/200428.978333-96.645833
410/10/1960 20:00kaneohehiuslight900.015 minutesAS a Marine 1st Lt. flying an FJ4B fighter/att...1/22/200421.418056-157.803611
\n", + "
" + ], + "text/plain": [ + " datetime city state country shape \\\n", + "0 10/10/1949 20:30 san marcos tx us cylinder \n", + "1 10/10/1949 21:00 lackland afb tx NaN light \n", + "2 10/10/1955 17:00 chester (uk/england) NaN gb circle \n", + "3 10/10/1956 21:00 edna tx us circle \n", + "4 10/10/1960 20:00 kaneohe hi us light \n", + "\n", + " duration (seconds) duration (hours/min) \\\n", + "0 2700.0 45 minutes \n", + "1 7200.0 1-2 hrs \n", + "2 20.0 20 seconds \n", + "3 20.0 1/2 hour \n", + "4 900.0 15 minutes \n", + "\n", + " comments date posted latitude \\\n", + "0 This event took place in early fall around 194... 4/27/2004 29.883056 \n", + "1 1949 Lackland AFB, TX. Lights racing acros... 12/16/2005 29.384210 \n", + "2 Green/Orange circular disc over Chester, En... 1/21/2008 53.200000 \n", + "3 My older brother and twin sister were leaving ... 1/17/2004 28.978333 \n", + "4 AS a Marine 1st Lt. flying an FJ4B fighter/att... 1/22/2004 21.418056 \n", + "\n", + " longitude \n", + "0 -97.941111 \n", + "1 -98.581082 \n", + "2 -2.916667 \n", + "3 -96.645833 \n", + "4 -157.803611 " + ] + }, + "execution_count": 110, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "\n", + "import pandas as pd\n", + "import numpy as np\n", + "\n", + "ufos =pd.read_csv(\"./data/ufos.csv\")\n", + "ufos.head()\n", + "\n", + "\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['us', nan, 'gb', 'ca', 'au', 'de'], dtype=object)" + ] + }, + "execution_count": 111, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ufos = pd.DataFrame({'Seconds': ufos['duration (seconds)'], 'Country': ufos['country'],'Latitude': ufos['latitude'],'Longitude': ufos['longitude']})\n", + " \n", + "ufos.Country.unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 112, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Index: 25863 entries, 2 to 80330\n", + "Data columns (total 4 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 Seconds 25863 non-null float64\n", + " 1 Country 25863 non-null object \n", + " 2 Latitude 25863 non-null float64\n", + " 3 Longitude 25863 non-null float64\n", + "dtypes: float64(3), object(1)\n", + "memory usage: 1010.3+ KB\n" + ] + } + ], + "source": [ + "ufos.dropna(inplace=True)\n", + " \n", + "ufos = ufos[(ufos['Seconds'] >= 1) & (ufos['Seconds'] <= 60)]\n", + " \n", + "ufos.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 113, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0, 1, 2, 3, 4]\n", + "['au' 'ca' 'de' 'gb' 'us']\n" + ] + } + ], + "source": [ + "from sklearn.preprocessing import LabelEncoder\n", + "labelencoder = LabelEncoder()\n", + "ufos['Country'] = labelencoder.fit_transform(ufos['Country'])\n", + " \n", + "ufos.head()\n", + "countries = [0,1,2,3,4]\n", + "print(countries)\n", + "print(labelencoder.inverse_transform(countries))" + ] + }, + { + "cell_type": "code", + "execution_count": 114, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.model_selection import train_test_split\n", + "\n", + "selected_features = [\"Seconds\", \"Latitude\", \"Longitude\"]\n", + "\n", + "X = ufos[selected_features]\n", + "y= ufos[\"Country\"]\n", + "\n", + "XTrain, XTest, yTrain, yTest = train_test_split(X, y, test_size=0.2, random_state=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 115, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " precision recall f1-score support\n", + "\n", + " 0 1.00 1.00 1.00 41\n", + " 1 0.83 0.23 0.36 250\n", + " 2 1.00 1.00 1.00 8\n", + " 3 1.00 1.00 1.00 131\n", + " 4 0.96 1.00 0.98 4743\n", + "\n", + " accuracy 0.96 5173\n", + " macro avg 0.96 0.85 0.87 5173\n", + "weighted avg 0.96 0.96 0.95 5173\n", + "\n", + "Predicted labels: [4 4 4 ... 3 4 4]\n", + "Accuracy: 0.9605644693601392\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\billg\\Desktop\\alvinsstuff\\Learning\\ML-For-Beginners\\.venv\\Lib\\site-packages\\sklearn\\linear_model\\_logistic.py:469: ConvergenceWarning: lbfgs failed to converge (status=1):\n", + "STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.\n", + "\n", + "Increase the number of iterations (max_iter) or scale the data as shown in:\n", + " https://scikit-learn.org/stable/modules/preprocessing.html\n", + "Please also refer to the documentation for alternative solver options:\n", + " https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression\n", + " n_iter_i = _check_optimize_result(\n" + ] + } + ], + "source": [ + "from sklearn.metrics import accuracy_score, classification_report\n", + "from sklearn.linear_model import LogisticRegression\n", + "\n", + "model = LogisticRegression()\n", + "model.fit(XTrain, yTrain)\n", + "\n", + "preds = model.predict(XTest)\n", + "\n", + "print(classification_report(yTest, preds))\n", + "print('Predicted labels: ', preds)\n", + "print('Accuracy: ', accuracy_score(yTest, preds))" + ] + }, + { + "cell_type": "code", + "execution_count": 116, + "metadata": {}, + "outputs": [], + "source": [ + "import pickle\n", + "\n", + "model_filename = \"ufo-model.pkl\"\n", + "pickle.dump(model, open(model_filename, \"wb\"))\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 117, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\billg\\Desktop\\alvinsstuff\\Learning\\ML-For-Beginners\\.venv\\Lib\\site-packages\\sklearn\\base.py:493: UserWarning: X does not have valid feature names, but LogisticRegression was fitted with feature names\n", + " warnings.warn(\n" + ] + } + ], + "source": [ + "model = pickle.load(open(model_filename, \"rb\"))\n", + "\n", + "print(model.predict([[50,44,-12]]))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "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.12.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/3-Web-App/1-Web-App/ufo-model.pkl b/3-Web-App/1-Web-App/ufo-model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..7b492f405f35b9ec976e6de76d33ce4b96abf715 GIT binary patch literal 1011 zcmZ`&OK1~87|x^Hq-iTQh(aG)QLs6PfMML9NMPoZk=`vP%r0NO9B#H#o-)VSzd1HY7aJma%wD|FoAkgVjof%EC@2KOl4G} zAPWPiPsV8jORP`^>S0we-NYa`sIONvEJ%Ye)#VyGs>e(Q?p1@x5Q(C*xF(K8k})vS z#1uA}as+gxmPw_vJd$(+^A?q87$WOJ6=FQPW)dSK5!NQkStl8*CYO$kFy29kIAd@c zx}ZsL3hqHj)=^F-*)%SexOTR|aIW;%O`ZJ^jYd0uvSodQ5P{h6kz()n6shE*^-iXh zWMmAqqEpurr5Lk=beV>1{Uzywn|iITFe{L(O*RzOB-i}b!m(sMbt#J!wEv^PQB)9V zD&42U;j{ynz1x%JD6?}Y>hNgR-7LlFv^iTATqoNWdoD4S$qdm#<0Ku&m%`!%_mJfv z{+ENL(fWoy_7Cv0UqY9+UClM_t}OUk>aGv%SQq~OXmrKFGjpL$qZ8jelU!l{mhSPV z?SaDBcs_9JzI*&h uqI + + + + 🛸 UFO Appearance Prediction! 👽 + + + + +
+ +
+ +

According to the number of seconds, latitude and longitude, which country is likely to have reported seeing a UFO?

+ +
+ + + + +
+ +

{{ prediction_text }}

+ +
+ +
+ + + \ No newline at end of file diff --git a/3-Web-App/1-Web-App/web-app/ufo-model.pkl b/3-Web-App/1-Web-App/web-app/ufo-model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..7b492f405f35b9ec976e6de76d33ce4b96abf715 GIT binary patch literal 1011 zcmZ`&OK1~87|x^Hq-iTQh(aG)QLs6PfMML9NMPoZk=`vP%r0NO9B#H#o-)VSzd1HY7aJma%wD|FoAkgVjof%EC@2KOl4G} zAPWPiPsV8jORP`^>S0we-NYa`sIONvEJ%Ye)#VyGs>e(Q?p1@x5Q(C*xF(K8k})vS z#1uA}as+gxmPw_vJd$(+^A?q87$WOJ6=FQPW)dSK5!NQkStl8*CYO$kFy29kIAd@c zx}ZsL3hqHj)=^F-*)%SexOTR|aIW;%O`ZJ^jYd0uvSodQ5P{h6kz()n6shE*^-iXh zWMmAqqEpurr5Lk=beV>1{Uzywn|iITFe{L(O*RzOB-i}b!m(sMbt#J!wEv^PQB)9V zD&42U;j{ynz1x%JD6?}Y>hNgR-7LlFv^iTATqoNWdoD4S$qdm#<0Ku&m%`!%_mJfv z{+ENL(fWoy_7Cv0UqY9+UClM_t}OUk>aGv%SQq~OXmrKFGjpL$qZ8jelU!l{mhSPV z?SaDBcs_9JzI*&h uqI\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0cuisinealmondangelicaaniseanise_seedappleapple_brandyapricotarmagnac...whiskeywhite_breadwhite_winewhole_grain_wheat_flourwinewoodyamyeastyogurtzucchini
065indian00000000...0000000000
166indian10000000...0000000000
267indian00000000...0000000000
368indian00000000...0000000000
469indian00000000...0000000010
\n", + "

5 rows × 385 columns

\n", + "" + ], + "text/plain": [ + " Unnamed: 0 cuisine almond angelica anise anise_seed apple \\\n", + "0 65 indian 0 0 0 0 0 \n", + "1 66 indian 1 0 0 0 0 \n", + "2 67 indian 0 0 0 0 0 \n", + "3 68 indian 0 0 0 0 0 \n", + "4 69 indian 0 0 0 0 0 \n", + "\n", + " apple_brandy apricot armagnac ... whiskey white_bread white_wine \\\n", + "0 0 0 0 ... 0 0 0 \n", + "1 0 0 0 ... 0 0 0 \n", + "2 0 0 0 ... 0 0 0 \n", + "3 0 0 0 ... 0 0 0 \n", + "4 0 0 0 ... 0 0 0 \n", + "\n", + " whole_grain_wheat_flour wine wood yam yeast yogurt zucchini \n", + "0 0 0 0 0 0 0 0 \n", + "1 0 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 0 0 \n", + "3 0 0 0 0 0 0 0 \n", + "4 0 0 0 0 0 1 0 \n", + "\n", + "[5 rows x 385 columns]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 2448 entries, 0 to 2447\n", + "Columns: 385 entries, Unnamed: 0 to zucchini\n", + "dtypes: int64(384), object(1)\n", + "memory usage: 7.2+ MB\n" + ] + } + ], + "source": [ + "\n", + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmAAAAGdCAYAAAC1j8+KAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAs50lEQVR4nO3de1xVdb7/8fdGZAMioIICBqKJN0S8UB60spNOmubRmjOWQ4ZjN/NSVF5zTJ1SbMwmz6mpyUpnyjItdSorxwhNybziLQ1DJZxSSU0umWjs7+8Pj/vXzkuK9N2wfT0fj/14sNf6rrU/n70U3o/vWmtvhzHGCAAAANb4ebsAAACAyw0BDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALDM39sF4Ewul0vffPON6tatK4fD4e1yAADABTDGqLS0VDExMfLzO/8cFwGsGvrmm28UGxvr7TIAAEAl7Nu3T1dcccV5xxDAqqG6detKOnUAQ0NDvVwNAAC4ECUlJYqNjXX/HT8fAlg1dPq0Y2hoKAEMAIAa5kIuH+IifAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCMAAYAAGAZAQwAAMAyAhgAAIBlBDAAAADLCGAAAACWEcAAAAAsI4ABAABYRgADAACwjAAGAABgGQEMAADAMn9vF4Bzaztpmfycwd4uAzivgul9vF0CANQ4zIABAABYRgADAACwjAAGAABgGQEMAADAMgIYAACAZQQwAAAAywhgAAAAlhHAAAAALCOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDIC2HmsWLFCDodDR48evaT9xMfH65lnnqmSmgAAQM3n7+0CqpPrr79e7du3r/KwtH79etWpU6dK9wkAAGouApgFkZGR3i4BAABUI5yC/D+DBw/WypUrNWvWLDkcDjkcDhUUFEiSNm7cqJSUFAUHB6tLly7Ky8tzb7d7927169dPjRo1UkhIiK666ip99NFHHvvmFCQAAPgpAtj/mTVrllJTU3XPPfdo//792r9/v2JjYyVJEyZM0MyZM7Vhwwb5+/tryJAh7u3KysrUu3dvZWVlKTc3V7169VLfvn1VWFjorVYAAEA1xynI/xMWFqaAgAAFBwcrKipKkvTFF19IkqZOnapu3bpJksaNG6c+ffro+PHjCgwMVHJyspKTk937efzxx7V48WK98847GjFixAW9dnl5ucrLy93PS0pKqqotAABQDTEDdgHatWvn/jk6OlqSVFRUJOnUDNioUaPUunVrhYeHKyQkRDt37ryoGbDMzEyFhYW5H6dn3gAAgG8igF2A2rVru392OBySJJfLJUkaNWqUFi9erGnTpmnVqlXavHmzkpKSdOLEiQve//jx41VcXOx+7Nu3r2obAAAA1QqnIH8iICBAFRUVF7VNTk6OBg8erFtuuUXSqRmx0xfvXyin0ymn03lR2wAAgJqLGbCfiI+P19q1a1VQUKBDhw65Z7nOJyEhQYsWLdLmzZu1ZcsW/f73v7+g7QAAwOWLAPYTo0aNUq1atdSmTRtFRkZe0HVcTz/9tOrVq6cuXbqob9++6tmzpzp27GihWgAAUFM5jDHG20XAU0lJyamL8TMWyM8Z7O1ygPMqmN7H2yUAQLVw+u93cXGxQkNDzzuWGTAAAADLCGAAAACWEcAAAAAsI4ABAABYRgADAACwjAAGAABgGQEMAADAMgIYAACAZQQwAAAAywhgAAAAlhHAAAAALCOAAQAAWObv7QJwbtun9PzFL/MEAAA1DzNgAAAAlhHAAAAALCOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCMAAYAAGAZAQwAAMAyAhgAAIBlBDAAAADLCGAAAACWEcAAAAAsI4ABAABYRgADAACwjAAGAABgGQEMAADAMgIYAACAZQQwAAAAywhgAAAAlhHAAAAALCOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALDM39sF4NzaTlomP2ewt8sArCiY3sfbJQCANcyAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCMAAYAAGAZAQwAAMAyrwawwYMHq3///t4sAQAAwDp/b774rFmzZIzxZgkAAADWeTWAhYWFefPlAQAAvKLanIL88MMPdc011yg8PFwNGjTQzTffrN27d7vHFhQUyOFwaP78+erSpYsCAwPVtm1brVy50j2moqJCd911l5o2baqgoCC1bNlSs2bNOutrPvXUU4qOjlaDBg00fPhwnTx50j2mvLxco0aNUuPGjVWnTh117txZK1ascK//6quv1LdvX9WrV0916tRRYmKi3n//fff67du366abblJISIgaNWqkQYMG6dChQ1X87gEAgJqq2lyE//333+vhhx/Whg0blJWVJT8/P91yyy1yuVwe40aPHq1HHnlEubm5Sk1NVd++fXX48GFJksvl0hVXXKGFCxdqx44deuyxx/Too49qwYIFHvvIzs7W7t27lZ2drb///e+aO3eu5s6d614/YsQIrVmzRvPnz9fWrVv1u9/9Tr169dKXX34pSRo+fLjKy8v1ySefaNu2bXryyScVEhIiSTp69KhuuOEGdejQQRs2bNCHH36ogwcPasCAAb/iuwcAAGoSh/HiRViDBw/W0aNHtWTJkjPWHTp0SJGRkdq2bZvatm2rgoICNW3aVNOnT9fYsWMlST/++KOaNm2qkSNHasyYMWd9jREjRujAgQN666233K+5YsUK7d69W7Vq1ZIkDRgwQH5+fpo/f74KCwvVrFkzFRYWKiYmxr2fHj166Oqrr9a0adPUrl07/fa3v9WkSZPOeL0nnnhCq1at0rJly9zL/v3vfys2NlZ5eXlq0aLFGduUl5ervLzc/bykpESxsbGKzVggP2fwBbyTQM1XML2Pt0sAgEtSUlKisLAwFRcXKzQ09Lxjq80M2JdffqmBAweqWbNmCg0NVXx8vCSpsLDQY1xqaqr7Z39/f6WkpGjnzp3uZc8995w6deqkyMhIhYSE6MUXXzxjH4mJie7wJUnR0dEqKiqSJG3btk0VFRVq0aKFQkJC3I+VK1e6T4k+8MADeuKJJ9S1a1dNmjRJW7dude9ry5Ytys7O9ti2VatWkuRxSvWnMjMzFRYW5n7ExsZe7NsHAABqEK9ehP9Tffv2VZMmTTR79mzFxMTI5XKpbdu2OnHixAXvY/78+Ro1apRmzpyp1NRU1a1bVzNmzNDatWs9xtWuXdvjucPhcJ/qLCsrU61atbRx40aPkCbJfZrx7rvvVs+ePbV06VL961//UmZmpmbOnKmRI0eqrKxMffv21ZNPPnlGfdHR0Wete/z48Xr44Yfdz0/PgAEAAN9ULQLY4cOHlZeXp9mzZ+vaa6+VJK1evfqsYz/77DNdd911kk6dgty4caNGjBghScrJyVGXLl00bNgw9/hzzTqdS4cOHVRRUaGioiJ3LWcTGxuroUOHaujQoRo/frxmz56tkSNHqmPHjnr77bcVHx8vf/8Le3udTqecTudF1QkAAGquanEKsl69emrQoIFefPFF5efn6+OPP/aYEfqp5557TosXL9YXX3yh4cOH67vvvtOQIUMkSQkJCdqwYYOWLVumXbt2aeLEiVq/fv1F1dKiRQulpaXpzjvv1KJFi7R3716tW7dOmZmZWrp0qSQpIyNDy5Yt0969e7Vp0yZlZ2erdevWkk5doH/kyBENHDhQ69ev1+7du7Vs2TL94Q9/UEVFxSW8SwAAwFdUiwB2+gL4jRs3qm3btnrooYc0Y8aMs46dPn26pk+fruTkZK1evVrvvPOOIiIiJEn33Xefbr31Vt12223q3LmzDh8+7DEbdqHmzJmjO++8U4888ohatmyp/v37a/369YqLi5N06uMuhg8frtatW6tXr15q0aKF/vrXv0qSYmJilJOTo4qKCt14441KSkpSRkaGwsPD5edXLd5uAADgZV69C3LgwIGqVauWXnvttV8ce/ouyNzcXLVv3/7XL86LTt9FwV2QuJxwFySAmq7a3wX5448/aseOHVqzZo0SExO9UQIAAIDXeCWAbd++XSkpKUpMTNTQoUO9UQIAAIDXeOUuyPbt2+vYsWMXtU18fDxf3A0AAHwCV4UDAABYRgADAACwjAAGAABgGQEMAADAMgIYAACAZQQwAAAAywhgAAAAlhHAAAAALCOAAQAAWOaVT8LHhdk+pecvfpknAACoeZgBAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCMAAYAAGAZAQwAAMAyAhgAAIBlBDAAAADLCGAAAACWEcAAAAAsI4ABAABYRgADAACwjAAGAABgGQEMAADAMgIYAACAZQQwAAAAywhgAAAAlhHAAAAALCOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCs0gFs1apVuuOOO5Samqqvv/5akvTqq69q9erVVVYcAACAL6pUAHv77bfVs2dPBQUFKTc3V+Xl5ZKk4uJiTZs2rUoLBAAA8DWVCmBPPPGEXnjhBc2ePVu1a9d2L+/atas2bdpUZcUBAAD4Iv/KbJSXl6frrrvujOVhYWE6evTopdaE/9N20jL5OYO9XQaAaqJgeh9vlwCgilRqBiwqKkr5+flnLF+9erWaNWt2yUUBAAD4skoFsHvuuUcPPvig1q5dK4fDoW+++Ubz5s3TqFGjdP/991d1jQAAAD6lUqcgx40bJ5fLpe7du+vYsWO67rrr5HQ6NWrUKI0cObKqawQAAPAplQpgDodDEyZM0OjRo5Wfn6+ysjK1adNGISEhVV0fAACAz6lUADstICBAbdq0qapaAAAALguVCmDff/+9pk+frqysLBUVFcnlcnms37NnT5UUBwAA4IsqFcDuvvturVy5UoMGDVJ0dLQcDkdV1wUAAOCzKhXAPvjgAy1dulRdu3at6noAAAB8XqU+hqJevXqqX79+VdcCAABwWahUAHv88cf12GOP6dixY1VdDwAAgM+r1CnImTNnavfu3WrUqJHi4+M9vg9SEt8HCQAAcB6VCmD9+/ev4jIAAAAuH5UKYJMmTarqOiqloKBATZs2VW5urtq3b3/WMXPnzlVGRgZfEg4AAKqNSl0DVpPcdttt2rVrl7fLAAAAcLvgGbD69etr165dioiIUL169c772V9HjhypkuKqQlBQkIKCgrxdBgAAgNsFz4D95S9/Ud26dd0/n+9R1Vwul/785z+refPmcjqdiouL09SpU93r9+zZo//8z/9UcHCwkpOTtWbNGve6uXPnKjw83P188uTJat++vV599VXFx8crLCxMt99+u0pLSz1eLzMzU02bNlVQUJCSk5P11ltvudd/9913SktLU2RkpIKCgpSQkKA5c+a41+/bt08DBgxQeHi46tevr379+qmgoKDK3xcAAFAzXfAMWHp6uvvnwYMH/xq1nNP48eM1e/Zs/eUvf9E111yj/fv364svvnCvnzBhgp566iklJCRowoQJGjhwoPLz8+Xvf/b2du/erSVLlui9997Td999pwEDBmj69OnuUJeZmanXXntNL7zwghISEvTJJ5/ojjvuUGRkpLp166aJEydqx44d+uCDDxQREaH8/Hz98MMPkqSTJ0+qZ8+eSk1N1apVq+Tv768nnnhCvXr10tatWxUQEHBGPeXl5SovL3c/Lykpqcq3DwAAVDOVugh/06ZNql27tpKSkiRJ//znPzVnzhy1adNGkydPPmvIqKzS0lLNmjVLzz77rDsEXnnllbrmmmvcs0qjRo1Snz59JElTpkxRYmKi8vPz1apVq7Pu0+Vyae7cue4ZvUGDBikrK0tTp05VeXm5pk2bpo8++kipqamSpGbNmmn16tX629/+pm7duqmwsFAdOnRQSkqKJCk+Pt697zfffFMul0svvfSS+zTtnDlzFB4erhUrVujGG288o57MzExNmTLl0t8sAABQI1TqIvz77rvPfWH7nj17dNtttyk4OFgLFy7UmDFjqrTAnTt3qry8XN27dz/nmHbt2rl/jo6OliQVFRWdc3x8fLw7fJ3e5vT4/Px8HTt2TL/5zW8UEhLifvzjH//Q7t27JUn333+/5s+fr/bt22vMmDH69NNP3fvasmWL8vPzVbduXfe29evX1/Hjx93b/9z48eNVXFzsfuzbt+8C3hkAAFBTVWoGbNeuXe6PfVi4cKG6deum119/XTk5Obr99tv1zDPPVFmBF3IB/U8/CPb0rJPL5bqg8ae3OT2+rKxMkrR06VI1btzYY5zT6ZQk3XTTTfrqq6/0/vvva/ny5erevbuGDx+up556SmVlZerUqZPmzZt3xutGRkaetR6n0+neNwAA8H2VCmDGGHdg+eijj3TzzTdLkmJjY3Xo0KGqq05SQkKCgoKClJWVpbvvvrtK9302bdq0kdPpVGFhobp163bOcZGRkUpPT1d6erquvfZajR49Wk899ZQ6duyoN998Uw0bNlRoaOivXi8AAKh5KhXAUlJS9MQTT6hHjx5auXKlnn/+eUnS3r171ahRoyotMDAwUGPHjtWYMWMUEBCgrl276ttvv9Xnn39+3tOSlVW3bl2NGjVKDz30kFwul6655hoVFxcrJydHoaGhSk9P12OPPaZOnTopMTFR5eXleu+999S6dWtJUlpammbMmKF+/frpT3/6k6644gp99dVXWrRokcaMGaMrrriiymsGAAA1S6UC2DPPPKO0tDQtWbJEEyZMUPPmzSVJb731lrp06VKlBUrSxIkT5e/vr8cee0zffPONoqOjNXTo0Cp/ndMef/xxRUZGKjMzU3v27FF4eLg6duyoRx99VJIUEBCg8ePHq6CgQEFBQbr22ms1f/58SVJwcLA++eQTjR07VrfeeqtKS0vVuHFjde/enRkxAAAgSXIYY0xV7ez48eOqVavWGddY4eKUlJQoLCxMsRkL5OcM9nY5AKqJgul9vF0CgPM4/fe7uLj4FyddKjUDdi6BgYFVuTsAAACf5PNfRQQAAFDdXHAA++lXEVXlx0wAAABcbir1VUQ//RkAAAAXp1LXgBUWFp53fVxcXKWKAQAAuBxUKoDFx8ef9xqwioqKShcEAADg6yoVwHJzcz2enzx5Urm5uXr66ac1derUKikMAADAV1UqgCUnJ5+xLCUlRTExMZoxY4ZuvfXWSy4MAADAV/lV5c5atmyp9evXV+UuAQAAfE6lZsBKSko8nhtjtH//fk2ePFkJCQlVUhgAAICvqlQACw8PP+MifGOMYmNj9cYbb1RJYQAAAL6qUgEsOzvb47mfn58iIyPVvHlz+ftX6bcbAQAA+JxKpaVPP/1UjRo10pAhQzyWv/LKK/r22281duzYKinucrd9Ss9f/DJPAABQ81TqIvy//e1vatWq1RnLExMT9cILL1xyUQAAAL6sUgHswIEDio6OPmN5ZGSk9u/ff8lFAQAA+LJKBbDY2Fjl5OScsTwnJ0cxMTGXXBQAAIAvq9Q1YPfcc48yMjJ08uRJ3XDDDZKkrKwsjRkzRo888kiVFggAAOBrKhXARo8ercOHD2vYsGE6ceKEJCkwMFBjx47V+PHjq7RAAAAAX+MwxpjKblxWVqadO3cqKChICQkJcjqdVVnbZaukpERhYWEqLi7mLkgAAGqIi/n7fUkf2hUSEqKrrrrqUnYBAABw2anS74IEAADALyOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCMAAYAAGAZAQwAAMAyAhgAAIBlBDAAAADLCGAAAACWEcAAAAAsI4ABAABYRgADAACwjAAGAABgGQEMAADAMgIYAACAZQQwAAAAywhgAAAAlhHAAAAALCOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDJ/bxeAc2s7aZn8nMHeLgMALksF0/t4uwT4MGbAAAAALCOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCMAAYAAGCZTwWw66+/XhkZGZXevqCgQA6HQ5s3b5YkrVixQg6HQ0ePHq2S+gAAACTJ39sFVKVFixapdu3aVba/Ll26aP/+/QoLC6uyfQIAAPhUAKtfv36V7i8gIEBRUVFVuk8AAACfPQUZHx+vadOmaciQIapbt67i4uL04osveoxft26dOnTooMDAQKWkpCg3N9dj/c9PQR4+fFgDBw5U48aNFRwcrKSkJL3xxhtn1PDAAw9ozJgxql+/vqKiojR58uRfq2UAAFAD+VQA+7mZM2e6g9WwYcN0//33Ky8vT5JUVlamm2++WW3atNHGjRs1efJkjRo16rz7O378uDp16qSlS5dq+/btuvfeezVo0CCtW7fOY9zf//531alTR2vXrtWf//xn/elPf9Ly5cvPud/y8nKVlJR4PAAAgO/y6QDWu3dvDRs2TM2bN9fYsWMVERGh7OxsSdLrr78ul8ull19+WYmJibr55ps1evTo8+6vcePGGjVqlNq3b69mzZpp5MiR6tWrlxYsWOAxrl27dpo0aZISEhJ05513KiUlRVlZWefcb2ZmpsLCwtyP2NjYS28eAABUWz4dwNq1a+f+2eFwKCoqSkVFRZKknTt3ql27dgoMDHSPSU1NPe/+Kioq9PjjjyspKUn169dXSEiIli1bpsLCwnO+riRFR0e7X/dsxo8fr+LiYvdj3759F9wjAACoeXzqIvyf+/kdkQ6HQy6Xq9L7mzFjhmbNmqVnnnlGSUlJqlOnjjIyMnTixIlLel2n0ymn01npugAAQM3i0zNg59O6dWtt3bpVx48fdy/77LPPzrtNTk6O+vXrpzvuuEPJyclq1qyZdu3a9WuXCgAAfMxlG8B+//vfy+Fw6J577tGOHTv0/vvv66mnnjrvNgkJCVq+fLk+/fRT7dy5U/fdd58OHjxoqWIAAOArLtsAFhISonfffVfbtm1Thw4dNGHCBD355JPn3eaPf/yjOnbsqJ49e+r6669XVFSU+vfvb6dgAADgMxzGGOPtIuCppKTk1N2QGQvk5wz2djkAcFkqmN7H2yWghjn997u4uFihoaHnHXvZzoABAAB4CwEMAADAMgIYAACAZQQwAAAAywhgAAAAlhHAAAAALCOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMv8vV0Azm37lJ6/+GWeAACg5mEGDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCMAAYAAGAZAQwAAMAyAhgAAIBlBDAAAADLCGAAAACWEcAAAAAsI4ABAABYRgADAACwjAAGAABgGQEMAADAMgIYAACAZQQwAAAAywhgAAAAlhHAAAAALCOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCMAAYAAGAZAQwAAMAyAhgAAIBlBDAAAADLCGAAAACW+Xu7AJxb20nL5OcM9nYZAAD4lILpfbxdAjNgAAAAthHAAAAALCOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCsxgaw66+/XhkZGd4uAwAA4KLV2AAGAABQUxHAJJ04ccLbJQAAgMuIzwSwpUuXKiwsTPPmzdO2bdt0ww03KCgoSA0aNNC9996rsrIy99jBgwerf//+mjp1qmJiYtSyZUtJ0r59+zRgwACFh4erfv366tevnwoKCtzbrV+/Xr/5zW8UERGhsLAwdevWTZs2bfKow+Fw6KWXXtItt9yi4OBgJSQk6J133rHyHgAAgJrBJwLY66+/roEDB2revHnq37+/evbsqXr16mn9+vVauHChPvroI40YMcJjm6ysLOXl5Wn58uV67733dPLkSfXs2VN169bVqlWrlJOTo5CQEPXq1cs9Q1ZaWqr09HStXr1an332mRISEtS7d2+VlpZ67HvKlCkaMGCAtm7dqt69eystLU1Hjhw5Z/3l5eUqKSnxeAAAAN9V4wPYc889p2HDhundd9/VzTffrNdff13Hjx/XP/7xD7Vt21Y33HCDnn32Wb366qs6ePCge7s6deropZdeUmJiohITE/Xmm2/K5XLppZdeUlJSklq3bq05c+aosLBQK1askCTdcMMNuuOOO9SqVSu1bt1aL774oo4dO6aVK1d61DR48GANHDhQzZs317Rp01RWVqZ169ads4fMzEyFhYW5H7Gxsb/KewUAAKoHf28XcCneeustFRUVKScnR1dddZUkaefOnUpOTladOnXc47p27SqXy6W8vDw1atRIkpSUlKSAgAD3mC1btig/P19169b1eI3jx49r9+7dkqSDBw/qj3/8o1asWKGioiJVVFTo2LFjKiws9NimXbt27p/r1Kmj0NBQFRUVnbOP8ePH6+GHH3Y/LykpIYQBAODDanQA69ChgzZt2qRXXnlFKSkpcjgcF7ztTwOaJJWVlalTp06aN2/eGWMjIyMlSenp6Tp8+LBmzZqlJk2ayOl0KjU19YyL+GvXru3x3OFwyOVynbMWp9Mpp9N5wbUDAICarUYHsCuvvFIzZ87U9ddfr1q1aunZZ59V69atNXfuXH3//ffukJWTkyM/Pz/3xfZn07FjR7355ptq2LChQkNDzzomJydHf/3rX9W7d29Jpy7aP3ToUNU3BgAAfFqNvwasRYsWys7O1ttvv62MjAylpaUpMDBQ6enp2r59u7KzszVy5EgNGjTIffrxbNLS0hQREaF+/fpp1apV2rt3r1asWKEHHnhA//73vyVJCQkJevXVV7Vz506tXbtWaWlpCgoKstUqAADwETU+gElSy5Yt9fHHH+uNN97QxIkTtWzZMh05ckRXXXWV/vu//1vdu3fXs88+e959BAcH65NPPlFcXJxuvfVWtW7dWnfddZeOHz/unhF7+eWX9d1336ljx44aNGiQHnjgATVs2NBGiwAAwIc4jDHG20XAU0lJyam7ITMWyM8Z7O1yAADwKQXT+/wq+z3997u4uPiclzOd5hMzYAAAADUJAQwAAMAyAhgAAIBlBDAAAADLCGAAAACWEcAAAAAsI4ABAABYRgADAACwjAAGAABgGQEMAADAMgIYAACAZQQwAAAAy/y9XQDObfuUnr/4ZZ4AAKDmYQYMAADAMgIYAACAZQQwAAAAywhgAAAAlhHAAAAALCOAAQAAWEYAAwAAsIwABgAAYBkBDAAAwDICGAAAgGUEMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAAMAALCMAAYAAGCZv7cLwJmMMZKkkpISL1cCAAAu1Om/26f/jp8PAawaOnz4sCQpNjbWy5UAAICLVVpaqrCwsPOOIYBVQ/Xr15ckFRYW/uIBrOlKSkoUGxurffv2KTQ01Nvl/Ooup37p1TfRq2+i16phjFFpaaliYmJ+cSwBrBry8zt1aV5YWJjP/0c4LTQ09LLpVbq8+qVX30SvvoleL92FTpxwET4AAIBlBDAAAADLCGDVkNPp1KRJk+R0Or1dyq/ucupVurz6pVffRK++iV7tc5gLuVcSAAAAVYYZMAAAAMsIYAAAAJYRwAAAACwjgAEAAFhGAKuGnnvuOcXHxyswMFCdO3fWunXrvF3SRfvkk0/Ut29fxcTEyOFwaMmSJR7rjTF67LHHFB0draCgIPXo0UNffvmlx5gjR44oLS1NoaGhCg8P11133aWysjKLXfyyzMxMXXXVVapbt64aNmyo/v37Ky8vz2PM8ePHNXz4cDVo0EAhISH67W9/q4MHD3qMKSwsVJ8+fRQcHKyGDRtq9OjR+vHHH222ckGef/55tWvXzv0Bhqmpqfrggw/c632p15+aPn26HA6HMjIy3Mt8qdfJkyfL4XB4PFq1auVe70u9StLXX3+tO+64Qw0aNFBQUJCSkpK0YcMG93pf+f0UHx9/xnF1OBwaPny4JN86rhUVFZo4caKaNm2qoKAgXXnllXr88cc9vpOx2h1Xg2pl/vz5JiAgwLzyyivm888/N/fcc48JDw83Bw8e9HZpF+X99983EyZMMIsWLTKSzOLFiz3WT58+3YSFhZklS5aYLVu2mP/6r/8yTZs2NT/88IN7TK9evUxycrL57LPPzKpVq0zz5s3NwIEDLXdyfj179jRz5swx27dvN5s3bza9e/c2cXFxpqyszD1m6NChJjY21mRlZZkNGzaY//iP/zBdunRxr//xxx9N27ZtTY8ePUxubq55//33TUREhBk/frw3Wjqvd955xyxdutTs2rXL5OXlmUcffdTUrl3bbN++3RjjW72etm7dOhMfH2/atWtnHnzwQfdyX+p10qRJJjEx0ezfv9/9+Pbbb93rfanXI0eOmCZNmpjBgwebtWvXmj179phly5aZ/Px89xhf+f1UVFTkcUyXL19uJJns7GxjjG8d16lTp5oGDRqY9957z+zdu9csXLjQhISEmFmzZrnHVLfjSgCrZq6++mozfPhw9/OKigoTExNjMjMzvVjVpfl5AHO5XCYqKsrMmDHDvezo0aPG6XSaN954wxhjzI4dO4wks379eveYDz74wDgcDvP1119bq/1iFRUVGUlm5cqVxphTfdWuXdssXLjQPWbnzp1GklmzZo0x5lRY9fPzMwcOHHCPef75501oaKgpLy+320Al1KtXz7z00ks+2WtpaalJSEgwy5cvN926dXMHMF/rddKkSSY5Ofms63yt17Fjx5prrrnmnOt9+ffTgw8+aK688krjcrl87rj26dPHDBkyxGPZrbfeatLS0owx1fO4cgqyGjlx4oQ2btyoHj16uJf5+fmpR48eWrNmjRcrq1p79+7VgQMHPPoMCwtT586d3X2uWbNG4eHhSklJcY/p0aOH/Pz8tHbtWus1X6ji4mJJ//8L1Tdu3KiTJ0969NqqVSvFxcV59JqUlKRGjRq5x/Ts2VMlJSX6/PPPLVZ/cSoqKjR//nx9//33Sk1N9clehw8frj59+nj0JPnmcf3yyy8VExOjZs2aKS0tTYWFhZJ8r9d33nlHKSkp+t3vfqeGDRuqQ4cOmj17tnu9r/5+OnHihF577TUNGTJEDofD545rly5dlJWVpV27dkmStmzZotWrV+umm26SVD2PK1/GXY0cOnRIFRUVHv/YJalRo0b64osvvFRV1Ttw4IAknbXP0+sOHDighg0beqz39/dX/fr13WOqG5fLpYyMDHXt2lVt27aVdKqPgIAAhYeHe4z9ea9ney9Or6tutm3bptTUVB0/flwhISFavHix2rRpo82bN/tUr/Pnz9emTZu0fv36M9b52nHt3Lmz5s6dq5YtW2r//v2aMmWKrr32Wm3fvt3net2zZ4+ef/55Pfzww3r00Ue1fv16PfDAAwoICFB6errP/n5asmSJjh49qsGDB0vyvX/D48aNU0lJiVq1aqVatWqpoqJCU6dOVVpamqTq+XeHAAZUkeHDh2v79u1avXq1t0v5VbVs2VKbN29WcXGx3nrrLaWnp2vlypXeLqtK7du3Tw8++KCWL1+uwMBAb5fzqzs9SyBJ7dq1U+fOndWkSRMtWLBAQUFBXqys6rlcLqWkpGjatGmSpA4dOmj79u164YUXlJ6e7uXqfj0vv/yybrrpJsXExHi7lF/FggULNG/ePL3++utKTEzU5s2blZGRoZiYmGp7XDkFWY1ERESoVq1aZ9yFcvDgQUVFRXmpqqp3upfz9RkVFaWioiKP9T/++KOOHDlSLd+LESNG6L333lN2drauuOIK9/KoqCidOHFCR48e9Rj/817P9l6cXlfdBAQEqHnz5urUqZMyMzOVnJysWbNm+VSvGzduVFFRkTp27Ch/f3/5+/tr5cqV+p//+R/5+/urUaNGPtPr2YSHh6tFixbKz8/3qeMqSdHR0WrTpo3HstatW7tPufri76evvvpKH330ke6++273Ml87rqNHj9a4ceN0++23KykpSYMGDdJDDz2kzMxMSdXzuBLAqpGAgAB16tRJWVlZ7mUul0tZWVlKTU31YmVVq2nTpoqKivLos6SkRGvXrnX3mZqaqqNHj2rjxo3uMR9//LFcLpc6d+5sveZzMcZoxIgRWrx4sT7++GM1bdrUY32nTp1Uu3Ztj17z8vJUWFjo0eu2bds8/uMvX75coaGhZ/yhqI5cLpfKy8t9qtfu3btr27Zt2rx5s/uRkpKitLQ098++0uvZlJWVaffu3YqOjvap4ypJXbt2PeOjYnbt2qUmTZpI8q3fT6fNmTNHDRs2VJ8+fdzLfO24Hjt2TH5+npGmVq1acrlckqrpca3yy/pxSebPn2+cTqeZO3eu2bFjh7n33ntNeHi4x10oNUFpaanJzc01ubm5RpJ5+umnTW5urvnqq6+MMaduBw4PDzf//Oc/zdatW02/fv3Oejtwhw4dzNq1a83q1atNQkJCtbvN+/777zdhYWFmxYoVHrd7Hzt2zD1m6NChJi4uznz88cdmw4YNJjU11aSmprrXn77V+8YbbzSbN282H374oYmMjKyWt3qPGzfOrFy50uzdu9ds3brVjBs3zjgcDvOvf/3LGONbvf7cT++CNMa3en3kkUfMihUrzN69e01OTo7p0aOHiYiIMEVFRcYY3+p13bp1xt/f30ydOtV8+eWXZt68eSY4ONi89tpr7jG+8vvJmFN30sfFxZmxY8eesc6Xjmt6erpp3Lix+2MoFi1aZCIiIsyYMWPcY6rbcSWAVUP/+7//a+Li4kxAQIC5+uqrzWeffebtki5adna2kXTGIz093Rhz6pbgiRMnmkaNGhmn02m6d+9u8vLyPPZx+PBhM3DgQBMSEmJCQ0PNH/7wB1NaWuqFbs7tbD1KMnPmzHGP+eGHH8ywYcNMvXr1THBwsLnlllvM/v37PfZTUFBgbrrpJhMUFGQiIiLMI488Yk6ePGm5m182ZMgQ06RJExMQEGAiIyNN9+7d3eHLGN/q9ed+HsB8qdfbbrvNREdHm4CAANO4cWNz2223eXwuli/1aowx7777rmnbtq1xOp2mVatW5sUXX/RY7yu/n4wxZtmyZUbSGfUb41vHtaSkxDz44IMmLi7OBAYGmmbNmpkJEyZ4fFxGdTuuDmN+8jGxAAAA+NVxDRgAAIBlBDAAAADLCGAAAACWEcAAAAAsI4ABAABYRgADAACwjAAGAABgGQEMAADAMgIYAACAZQQwAAAAywhgAAAAlhHAAAAALPt/1xzNOS8ayLkAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df.cuisine.value_counts().plot.barh()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "thai df: (289, 385)\n", + "japanese df: (320, 385)\n", + "chinese df: (442, 385)\n", + "indian df: (598, 385)\n", + "korean df: (799, 385)\n" + ] + } + ], + "source": [ + "thai_df = df[(df.cuisine == \"thai\")]\n", + "japanese_df = df[(df.cuisine == \"japanese\")]\n", + "chinese_df = df[(df.cuisine == \"chinese\")]\n", + "indian_df = df[(df.cuisine == \"indian\")]\n", + "korean_df = df[(df.cuisine == \"korean\")]\n", + " \n", + "print(f'thai df: {thai_df.shape}')\n", + "print(f'japanese df: {japanese_df.shape}')\n", + "print(f'chinese df: {chinese_df.shape}')\n", + "print(f'indian df: {indian_df.shape}')\n", + "print(f'korean df: {korean_df.shape}')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def create_ingredient_df(df):\n", + " ingredient_df = df.T.drop([\"cuisine\", \"Unnamed: 0\"]).sum(axis=1).to_frame(\"value\")\n", + " ingredient_df = ingredient_df[(ingredient_df.T != 0).any()]\n", + " ingredient_df = ingredient_df.sort_values(by='value', ascending=False,\n", + " inplace=False)\n", + " return ingredient_df" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmoAAAGdCAYAAACirV9DAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABApklEQVR4nO3deVgW9f7/8deNws0OkspiIKKkluKKZpqaG5aZZh3NOIllmeUSqUfiFCKaQZZrnpbT4tLR1DbtZGVIaopmlFsqUqKEHUkrDyB6BIT5/dHX+9cd7or3AM/Hdd3XxT3zmc+85+Pg/bo+M3NjMQzDEAAAAEzHydEFAAAA4OwIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmFRtRxeAy1deXq7Dhw/Ly8tLFovF0eUAAICLYBiGjh8/rqCgIDk5nX/OjKBWhR0+fFjBwcGOLgMAAFyGQ4cO6frrrz9vG4JaFebl5SXp939ob29vB1cDAAAuRmFhoYKDg22f4+dDUKvCzlzu9Pb2JqgBAFDFXMxtSzxMAAAAYFIENQAAAJMiqAEAAJgU96gBAFDDlZWVqbS01NFlVCu1atVS7dq1r/jrswhqAADUYEVFRfrpp59kGIajS6l23N3dFRgYKBcXl8vug6AGAEANVVZWpp9++knu7u6qV68eX55+lRiGoZKSEv3yyy86ePCgwsPDL/jFtudCUKsGWiSukZPV3dFlADChnJR+ji4BJlZaWirDMFSvXj25ubk5upxqxc3NTc7Ozvrxxx9VUlIiV1fXy+qHhwkAAKjhmEmrHJc7i2bXx1WoAwAAAJWAoAYAAGBSNeYetZycHDVq1Ejbt29X69atz9pm4cKFio2NVX5+/kX1GRoaqtjYWMXGxl61OgEAcLTQp1Zf0/1d63spq9LnNzNqfzBkyBB9//33ji4DAABAUg2aUbsYbm5uPPUCAABMo9rNqJWXl2vGjBlq0qSJrFarQkJCNH36dNv6AwcO6LbbbpO7u7tatWqlLVu22NYtXLhQvr6+dv39+9//VmRkpFxdXVW3bl3dfffd59z3G2+8IV9fX6WlpUmSdu/erdtvv12enp7y9/fXAw88oF9//dXWvnv37ho3bpwmTZokPz8/BQQEaMqUKVdnIAAAqIb++c9/KigoSOXl5XbLBwwYoIceekjZ2dkaMGCA/P395enpqcjISK1du/ac/eXk5MhisWjHjh22Zfn5+bJYLFq/fr1t2YU+0ytLtQtq8fHxSklJUUJCgvbu3aulS5fK39/ftv7pp5/WxIkTtWPHDt1www0aOnSoTp8+fda+Vq9erbvvvlt33HGHtm/frrS0NHXo0OGsbWfMmKGnnnpKn3/+uXr27Kn8/Hz16NFDbdq00TfffKPPPvtMR44c0eDBg+22W7RokTw8PLR161bNmDFDU6dOVWpq6ln3UVxcrMLCQrsXAAA1yV/+8hf99ttvWrdunW3ZsWPH9Nlnnyk6OlpFRUW64447lJaWpu3bt6tv377q37+/cnNzL3ufF/uZXhmq1aXP48ePa+7cuZo/f75iYmIkSY0bN1aXLl2Uk5MjSZo4caL69fv9psWkpCTddNNN2r9/v5o1a1ahv+nTp+u+++5TUlKSbVmrVq0qtIuLi9Pbb7+tDRs26KabbpIkzZ8/X23atNFzzz1na/fWW28pODhY33//vW644QZJUkREhBITEyVJ4eHhmj9/vtLS0tS7d+8K+0lOTrarBQCAmqZOnTq6/fbbtXTpUvXs2VOS9N5776lu3bq67bbb5OTkZPdZPW3aNH344Yf66KOPNGbMmMva58V+pleGajWjlpmZqeLiYts/3NlERETYfg4MDJQkHT169Kxtd+zYcd6+JGnmzJl6/fXXtWnTJltIk6SdO3dq3bp18vT0tL3OhMHs7Oyz1nOmpnPVEx8fr4KCAtvr0KFD560NAIDqKDo6Wu+//76Ki4slSUuWLNF9990nJycnFRUVaeLEiWrevLl8fX3l6empzMzMK5pRu9jP9MpQrWbULuZBAGdnZ9vPZ76J+c/XuS+lv1tvvVWrV6/WihUr9NRTT9mWFxUVqX///nr++ecrbHMmIP65njM1naseq9Uqq9V6wZoAAKjO+vfvL8MwtHr1akVGRmrjxo2aPXu2pN+vnKWmpurFF19UkyZN5ObmpnvvvVclJSVn7evMXw/44x+lLy0ttWtzsZ/plaFaBbXw8HC5ubkpLS1NDz/88BX3FxERobS0ND344IPnbNOhQweNGTNGffv2Ve3atTVx4kRJUtu2bfX+++8rNDRUtWtXq2EGAMChXF1dNWjQIC1ZskT79+9X06ZN1bZtW0lSenq6hg8fbnv4r6ioyHb709nUq1dPkpSXl6c2bdpIkt2DBZJjP9Or1aVPV1dXxcXFadKkSVq8eLGys7P11Vdf6c0337ys/hITE/XOO+8oMTFRmZmZ+u67786apm+55RZ98sknSkpK0pw5cyRJo0eP1rFjxzR06FBlZGQoOztba9as0YMPPqiysrIrOUwAAGq86OhorV69Wm+99Zaio6Nty8PDw/XBBx9ox44d2rlzp+6///5zXqmSfr96dvPNNyslJUWZmZnasGGDnnnmGbs2jvxMr3ZTPQkJCapdu7YmT56sw4cPKzAwUKNGjbqsvrp37653331X06ZNU0pKiry9vdW1a9eztu3SpYtWr16tO+64Q7Vq1dLYsWOVnp6uuLg49enTR8XFxWrYsKH69u17Vf5IKwAAleVa/6WAy9GjRw/5+fkpKytL999/v235rFmz9NBDD+mWW25R3bp1FRcXd8FvSXjrrbc0YsQItWvXTk2bNtWMGTPUp08f2/qgoCCHfaZbjD9elEWVUlhYKB8fHwXHrpCT1d3R5QAwoarwgQvHOXXqlA4ePKhGjRrJ1dXV0eVUO+ca3zOf3wUFBfL29j5vH0ztAAAAmBRBDQAAwKSq3T1qNdHupKgLTp0CAICqhxk1AAAAkyKoAQBQw/FcYeW4GuNKUAMAoIaqVauWJJ3zW/txZU6ePCmp4l8huhTcowYAQA1Vu3Ztubu765dffpGzszPf83mVGIahkydP6ujRo/L19bUF4stBUAMAoIayWCwKDAzUwYMH9eOPPzq6nGrH19dXAQEBV9QHQQ0AgBrMxcVF4eHhXP68ypydna9oJu0MghoAADWck5MTf5nApLgYDQAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUf+uzGmiRuEZOVndHlwGgGslJ6efoEgCIGTUAAADTIqgBAACYFEENAADApAhqV5HFYtHKlSsdXQYAAKgmeJjgKsrLy1OdOnUcXQYAAKgmCGpXSUlJiQICAhxdBgAAqEa49HmZunfvrjFjxig2NlZ169ZVVFRUhUufP/30k4YOHSo/Pz95eHioffv22rp1q239qlWr1LZtW7m6uiosLExJSUk6ffq0A44GAACYETNqV2DRokV67LHHlJ6eLklq1qyZbV1RUZG6deumBg0a6KOPPlJAQIC2bdum8vJySdLGjRs1bNgwzZs3T7feequys7M1cuRISVJiYuJZ91dcXKzi4mLb+8LCwso6NAAAYAIEtSsQHh6uGTNmnHXd0qVL9csvvygjI0N+fn6SpCZNmtjWJyUl6amnnlJMTIwkKSwsTNOmTdOkSZPOGdSSk5OVlJR0lY8CAACYFUHtCrRr1+6c63bs2KE2bdrYQtqf7dy5U+np6Zo+fbptWVlZmU6dOqWTJ0/K3b3iXxqIj4/X+PHjbe8LCwsVHBx8BUcAAADMjKB2BTw8PM65zs3N7bzbFhUVKSkpSYMGDaqwztXV9azbWK1WWa3WSysSAABUWQS1ShIREaE33nhDx44dO+usWtu2bZWVlWV3ORQAAOCPeOqzkgwdOlQBAQEaOHCg0tPTdeDAAb3//vvasmWLJGny5MlavHixkpKStGfPHmVmZmrZsmV65plnHFw5AAAwC4JaJXFxcdHnn3+u+vXr64477lDLli2VkpKiWrVqSZKioqL08ccf6/PPP1dkZKRuvvlmzZ49Ww0bNnRw5QAAwCwshmEYji4Cl6ewsFA+Pj4Kjl0hJ2vFhw8A4HLlpPRzdAlAtXXm87ugoEDe3t7nbcuMGgAAgEkR1AAAAEyKpz6rgd1JURecOgUAAFUPM2oAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwqdqOLgBXrkXiGjlZ3R1dBoAaJCeln6NLAGoEZtQAAABMiqAGAABgUgQ1AAAAk6pRQS00NFRz5syp9P0MHz5cAwcOrPT9AACA6q1GPUyQkZEhDw8PR5cBAABwUWpEUCspKZGLi4vq1avn6FIuimEYKisrU+3aNeKfBwAAnINpL32Wl5drxowZatKkiaxWq0JCQjR9+nRJ0nfffacePXrIzc1N1113nUaOHKmioiLbtmcuPU6fPl1BQUFq2rSppIqXPmfNmqWWLVvKw8NDwcHBevzxx+36WbhwoXx9fbVmzRo1b95cnp6e6tu3r/Ly8mxtysrKNH78ePn6+uq6667TpEmTZBhGhWNJTk5Wo0aN5ObmplatWum9996zrV+/fr0sFos+/fRTtWvXTlarVZs2bbqq4wkAAKoe0wa1+Ph4paSkKCEhQXv37tXSpUvl7++vEydOKCoqSnXq1FFGRobeffddrV27VmPGjLHbPi0tTVlZWUpNTdXHH3981n04OTlp3rx52rNnjxYtWqQvvvhCkyZNsmtz8uRJvfjii3r77bf15ZdfKjc3VxMnTrStnzlzphYuXKi33npLmzZt0rFjx/Thhx/a9ZGcnKzFixfr1Vdf1Z49e/Tkk0/qr3/9qzZs2GDX7qmnnlJKSooyMzMVERFRod7i4mIVFhbavQAAQPVlymtrx48f19y5czV//nzFxMRIkho3bqwuXbro9ddf16lTp7R48WLb/Wbz589X//799fzzz8vf31+S5OHhoTfeeEMuLi7n3E9sbKzt59DQUD377LMaNWqUXn75Zdvy0tJSvfrqq2rcuLEkacyYMZo6dapt/Zw5cxQfH69BgwZJkl599VWtWbPGtr64uFjPPfec1q5dq06dOkmSwsLCtGnTJr322mvq1q2bre3UqVPVu3fvc9abnJyspKSk8w8eAACoNkwZ1DIzM1VcXKyePXuedV2rVq3sHgro3LmzysvLlZWVZQtqLVu2PG9Ik6S1a9cqOTlZ+/btU2FhoU6fPq1Tp07p5MmTcnf//Zv+3d3dbSFNkgIDA3X06FFJUkFBgfLy8tSxY0fb+tq1a6t9+/a2y5/79+/XyZMnKwSwkpIStWnTxm5Z+/btz1tvfHy8xo8fb3tfWFio4ODg824DAACqLlMGNTc3tyvu40JPd+bk5OjOO+/UY489punTp8vPz0+bNm3SiBEjVFJSYgtqzs7OdttZLJYK96Cdz5l73lavXq0GDRrYrbNarZdUs9VqrbANAACovkx5j1p4eLjc3NyUlpZWYV3z5s21c+dOnThxwrYsPT1dTk5OtocGLsa3336r8vJyzZw5UzfffLNuuOEGHT58+JLq9PHxUWBgoLZu3Wpbdvr0aX377be29zfeeKOsVqtyc3PVpEkTuxezYQAA4HxMOaPm6uqquLg4TZo0SS4uLurcubN++eUX7dmzR9HR0UpMTFRMTIymTJmiX375RWPHjtUDDzxgu+x5MZo0aaLS0lK99NJL6t+/v9LT0/Xqq69ecq1PPPGEUlJSFB4ermbNmmnWrFnKz8+3rffy8tLEiRP15JNPqry8XF26dFFBQYHS09Pl7e1tuwcPAADgz0wZ1CQpISFBtWvX1uTJk3X48GEFBgZq1KhRcnd315o1a/TEE08oMjJS7u7uuueeezRr1qxL6r9Vq1aaNWuWnn/+ecXHx6tr165KTk7WsGHDLqmfCRMmKC8vTzExMXJyctJDDz2ku+++WwUFBbY206ZNU7169ZScnKwDBw7I19dXbdu21d///vdL2hcAAKhZLMal3HAFUyksLJSPj4+CY1fIyeru6HIA1CA5Kf0cXQJQZZ35/C4oKJC3t/d525ryHjUAAAAQ1AAAAEzLtPeo4eLtToq64NQpAACoephRAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEnVdnQBuHItEtfIyeru6DIA1FA5Kf0cXQJQbTGjBgAAYFIENQAAAJMiqAEAAJhUjQlqU6ZMUevWrc/bZvjw4Ro4cOA1qUeSunfvrtjYWNv70NBQzZkz55rtHwAAmFuVe5hg+PDhys/P18qVKx1dyhX74IMP5Ozs7OgyAACASVW5oFad+Pn5OboEAABgYhd96fOf//yngoKCVF5ebrd8wIABeuihhyRJq1atUtu2beXq6qqwsDAlJSXp9OnTtrb79u1Tly5d5OrqqhtvvFFr166VxWKxmx07dOiQBg8eLF9fX/n5+WnAgAHKycmR9Pvly0WLFmnVqlWyWCyyWCxav369JCkuLk433HCD3N3dFRYWpoSEBJWWllY4jtdee03BwcFyd3fX4MGDVVBQcM5jLi8vV3Jysho1aiQ3Nze1atVK77333sUOmTZs2KAOHTrIarUqMDBQTz31lN14/PnSJwAAwB9ddFD7y1/+ot9++03r1q2zLTt27Jg+++wzRUdHa+PGjRo2bJieeOIJ7d27V6+99poWLlyo6dOnS5LKyso0cOBAubu7a+vWrfrnP/+pp59+2m4fpaWlioqKkpeXlzZu3Kj09HR5enqqb9++Kikp0cSJEzV48GD17dtXeXl5ysvL0y233CJJ8vLy0sKFC7V3717NnTtXr7/+umbPnm3X//79+7VixQr9+9//1meffabt27fr8ccfP+cxJycna/HixXr11Ve1Z88ePfnkk/rrX/+qDRs2XHC8/vOf/+iOO+5QZGSkdu7cqVdeeUVvvvmmnn322Ysd8gqKi4tVWFho9wIAANXXRV/6rFOnjm6//XYtXbpUPXv2lCS99957qlu3rm677Tb16dNHTz31lGJiYiRJYWFhmjZtmiZNmqTExESlpqYqOztb69evV0BAgCRp+vTp6t27t20fy5cvV3l5ud544w1ZLBZJ0oIFC+Tr66v169erT58+cnNzU3Fxsa2PM5555hnbz6GhoZo4caKWLVumSZMm2ZafOnVKixcvVoMGDSRJL730kvr166eZM2dW6K+4uFjPPfec1q5dq06dOtmOadOmTXrttdfUrVu3847Xyy+/rODgYM2fP18Wi0XNmjXT4cOHFRcXp8mTJ8vJ6dKf40hOTlZSUtIlbwcAAKqmS7pHLTo6Wo888ohefvllWa1WLVmyRPfdd5+cnJy0c+dOpaen22bQpN9n0U6dOqWTJ08qKytLwcHBdoGoQ4cOdv3v3LlT+/fvl5eXl93yU6dOKTs7+7y1LV++XPPmzVN2draKiop0+vRpeXt727UJCQmxhTRJ6tSpk8rLy5WVlVUhqO3fv18nT560C5KSVFJSojZt2py3FknKzMxUp06dbIFTkjp37qyioiL99NNPCgkJuWAffxYfH6/x48fb3hcWFio4OPiS+wEAAFXDJQW1/v37yzAMrV69WpGRkdq4caPt8mJRUZGSkpI0aNCgCtu5urpeVP9FRUVq166dlixZUmFdvXr1zrndli1bFB0draSkJEVFRcnHx0fLli3TzJkzL/LIzl6LJK1evdou3EmS1Wq97H6vhNVqddi+AQDAtXdJQc3V1VWDBg3SkiVLtH//fjVt2lRt27aVJLVt21ZZWVlq0qTJWbdt2rSpDh06pCNHjsjf31+SlJGRYdembdu2Wr58uerXr19hNuwMFxcXlZWV2S3bvHmzGjZsaHfP248//lhh29zcXB0+fFhBQUGSpK+++kpOTk5q2rRphbY33nijrFarcnNzL3iZ82yaN2+u999/X4Zh2GbV0tPT5eXlpeuvv/6S+wMAADXPJd8oFR0drdWrV+utt95SdHS0bfnkyZO1ePFiJSUlac+ePcrMzNSyZcts94717t1bjRs3VkxMjHbt2qX09HTbujNBJjo6WnXr1tWAAQO0ceNGHTx4UOvXr9e4ceP0008/Sfr9/rNdu3YpKytLv/76q0pLSxUeHq7c3FwtW7ZM2dnZmjdvnj788MMKtbu6uiomJkY7d+7Uxo0bNW7cOA0ePLjCZU/p94cTJk6cqCeffFKLFi1Sdna2tm3bppdeekmLFi264Dg9/vjjOnTokMaOHat9+/Zp1apVSkxM1Pjx4y/r/jQAAFDzXHJi6NGjh/z8/JSVlaX777/ftjwqKkoff/yxPv/8c0VGRurmm2/W7Nmz1bBhQ0lSrVq1tHLlShUVFSkyMlIPP/ywbQbszKVRd3d3ffnllwoJCdGgQYPUvHlzjRgxQqdOnbLNsD3yyCNq2rSp2rdvr3r16ik9PV133XWXnnzySY0ZM0atW7fW5s2blZCQUKH2Jk2aaNCgQbrjjjvUp08fRURE6OWXXz7nsU6bNk0JCQlKTk5W8+bN1bdvX61evVqNGjW64Dg1aNBAn3zyib7++mu1atVKo0aN0ogRI+weegAAADgfi2EYhqN2np6eri5dumj//v1q3Lixo8qosgoLC+Xj46Pg2BVysro7uhwANVROSj9HlwBUKWc+vwsKCs55q9cZ1/QvE3z44Yfy9PRUeHi49u/fryeeeEKdO3cmpAEAAJzFNb1Z6vjx4xo9erSaNWum4cOHKzIyUqtWrbqWJVw1o0aNkqen51lfo0aNcnR5AACgGnDopc+q7OjRo+f8ywDe3t6qX79+pddwKVOnAADAHEx76bM6qV+//jUJYwAAoObieyIAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMqrajC8CVa5G4Rk5Wd0eXAQCXJCeln6NLAEyPGTUAAACTIqgBAACYFEENAADApAhqAAAAJkVQMwmLxaKVK1c6ugwAAGAiBDUAAACTqhZBrby8XDNmzFCTJk1ktVoVEhKi6dOnS5K+++479ejRQ25ubrruuus0cuRIFRUV2W3/1ltv6aabbpLValVgYKDGjBljW5ebm6sBAwbI09NT3t7eGjx4sI4cOWJbP2XKFLVu3Vpvv/22QkND5ePjo/vuu0/Hjx+3tQkNDdWcOXPs9tm6dWtNmTLFtl6S7r77blksFtt7AABQs1WLoBYfH6+UlBQlJCRo7969Wrp0qfz9/XXixAlFRUWpTp06ysjI0Lvvvqu1a9faBbFXXnlFo0eP1siRI/Xdd9/po48+UpMmTST9HgAHDBigY8eOacOGDUpNTdWBAwc0ZMgQu/1nZ2dr5cqV+vjjj/Xxxx9rw4YNSklJuej6MzIyJEkLFixQXl6e7f2fFRcXq7Cw0O4FAACqryr/hbfHjx/X3LlzNX/+fMXExEiSGjdurC5duuj111/XqVOntHjxYnl4eEiS5s+fr/79++v555+Xv7+/nn32WU2YMEFPPPGErc/IyEhJUlpamr777jsdPHhQwcHBkqTFixfrpptuUkZGhq1deXm5Fi5cKC8vL0nSAw88oLS0NNus3oXUq1dPkuTr66uAgIBztktOTlZSUtKlDA8AAKjCqvyMWmZmpoqLi9WzZ8+zrmvVqpUtpElS586dVV5erqysLB09elSHDx8+67Zntg8ODraFNEm68cYb5evrq8zMTNuy0NBQW0iTpMDAQB09evRqHJ6d+Ph4FRQU2F6HDh266vsAAADmUeVn1Nzc3Byy7R85OzvbvbdYLCovL7e9d3JykmEYdm1KS0sveT9Wq1VWq/XyigQAAFVOlZ9RCw8Pl5ubm9LS0iqsa968uXbu3KkTJ07YlqWnp8vJyUlNmzaVl5eXQkNDz7rtme0PHTpkN3O1d+9e5efn68Ybb7zoGuvVq6e8vDzb+8LCQh08eNCujbOzs8rKyi66TwAAUP1V+aDm6uqquLg4TZo0SYsXL1Z2dra++uorvfnmm4qOjparq6tiYmK0e/durVu3TmPHjtUDDzwgf39/Sb8/tTlz5kzNmzdPP/zwg7Zt26aXXnpJktSrVy+1bNlS0dHR2rZtm77++msNGzZM3bp1U/v27S+6xh49eujtt9/Wxo0b9d133ykmJka1atWya3MmMP7888/673//e/UGCAAAVFlVPqhJUkJCgiZMmKDJkyerefPmGjJkiI4ePSp3d3etWbNGx44dU2RkpO6991717NlT8+fPt20bExOjOXPm6OWXX9ZNN92kO++8Uz/88IOk3y9hrlq1SnXq1FHXrl3Vq1cvhYWFafny5ZdUX3x8vLp166Y777xT/fr108CBA9W4cWO7NjNnzlRqaqqCg4PVpk2bKx8UAABQ5VmMP988hSqjsLBQPj4+Co5dISeru6PLAYBLkpPSz9ElAA5x5vO7oKBA3t7e521bLWbUAAAAqiOCGgAAgElV+a/ngLQ7KeqCU6cAAKDqYUYNAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJlXb0QXgyrVIXCMnq7ujywCAqyonpZ+jSwAcjhk1AAAAkyKoAQAAmBRBDQAAwKQIan8SGhqqOXPmOLoMAAAAHib4s4yMDHl4eDi6DAAAAILan9WrV8/RJUiSSkpK5OLi4ugyAACAA9W4S5/Hjx9XdHS0PDw8FBgYqNmzZ6t79+6KjY2VVPHSp8Vi0RtvvKG7775b7u7uCg8P10cffWTX50cffaTw8HC5urrqtttu06JFi2SxWJSfn29rs2nTJt16661yc3NTcHCwxo0bpxMnTtjWh4aGatq0aRo2bJi8vb01cuTIyhwGAABQBdS4oDZ+/Hilp6fro48+UmpqqjZu3Kht27add5ukpCQNHjxYu3bt0h133KHo6GgdO3ZMknTw4EHde++9GjhwoHbu3KlHH31UTz/9tN322dnZ6tu3r+655x7t2rVLy5cv16ZNmzRmzBi7di+++KJatWql7du3KyEhoUIdxcXFKiwstHsBAIDqq0YFtePHj2vRokV68cUX1bNnT7Vo0UILFixQWVnZebcbPny4hg4dqiZNmui5555TUVGRvv76a0nSa6+9pqZNm+qFF15Q06ZNdd9992n48OF22ycnJys6OlqxsbEKDw/XLbfconnz5mnx4sU6deqUrV2PHj00YcIENW7cWI0bN65QR3Jysnx8fGyv4ODgKx8UAABgWjUqqB04cEClpaXq0KGDbZmPj4+aNm163u0iIiJsP3t4eMjb21tHjx6VJGVlZSkyMtKu/R/7l6SdO3dq4cKF8vT0tL2ioqJUXl6ugwcP2tq1b9/+vHXEx8eroKDA9jp06ND5DxgAAFRpPExwEZydne3eWywWlZeXX/T2RUVFevTRRzVu3LgK60JCQmw/X+hpU6vVKqvVetH7BQAAVVuNCmphYWFydnZWRkaGLSAVFBTo+++/V9euXS+rz6ZNm+qTTz6xW5aRkWH3vm3bttq7d6+aNGlyeYUDAIAaqUZd+vTy8lJMTIz+9re/ad26ddqzZ49GjBghJycnWSyWy+rz0Ucf1b59+xQXF6fvv/9eK1as0MKFCyXJ1mdcXJw2b96sMWPGaMeOHfrhhx+0atWqCg8TAAAA/FGNCmqSNGvWLHXq1El33nmnevXqpc6dO6t58+ZydXW9rP4aNWqk9957Tx988IEiIiL0yiuv2J76PHOZMiIiQhs2bND333+vW2+9VW3atNHkyZMVFBR01Y4LAABUPxbDMAxHF+FIJ06cUIMGDTRz5kyNGDHiqvQ5ffp0vfrqq5V+s39hYeHvT3/GrpCT1b1S9wUA11pOSj9HlwBUijOf3wUFBfL29j5v2xp1j5okbd++Xfv27VOHDh1UUFCgqVOnSpIGDBhw2X2+/PLLioyM1HXXXaf09HS98MILXNYEAABXrMYFNen3L5bNysqSi4uL2rVrp40bN6pu3bqX3d8PP/ygZ599VseOHVNISIgmTJig+Pj4q1gxAACoiWr8pc+q7FKmTgEAgDlcyud3jXuYAAAAoKogqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJhUbUcXgCvXInGNnKzuji4DAEwrJ6Wfo0sALgszagAAACZFUAMAADApghoAAIBJ1ZiglpOTI4vFoh07dkiS1q9fL4vFovz8fIfWBQAAcC41JqgFBwcrLy9PLVq0qNT9WCwWrVy5slL3AQAAaoYaE9Rq1aqlgIAA1a7t+AddS0pKHF0CAACoAqpdUCsvL9eMGTPUpEkTWa1WhYSEaPr06RUuff7Zb7/9pqFDh6pBgwZyd3dXy5Yt9c4779i16d69u8aNG6dJkybJz89PAQEBmjJlim19aGioJOnuu++WxWKxvZ8yZYpat26tN954Q40aNZKrq6skKTc3VwMGDJCnp6e8vb01ePBgHTly5GoPCQAAqKKqXVCLj49XSkqKEhIStHfvXi1dulT+/v4X3O7UqVNq166dVq9erd27d2vkyJF64IEH9PXXX9u1W7RokTw8PLR161bNmDFDU6dOVWpqqiQpIyNDkrRgwQLl5eXZ3kvS/v379f777+uDDz7Qjh07VF5ergEDBujYsWPasGGDUlNTdeDAAQ0ZMuScNRYXF6uwsNDuBQAAqi/HXwe8io4fP665c+dq/vz5iomJkSQ1btxYXbp0UU5Oznm3bdCggSZOnGh7P3bsWK1Zs0YrVqxQhw4dbMsjIiKUmJgoSQoPD9f8+fOVlpam3r17q169epIkX19fBQQE2PVfUlKixYsX29qkpqbqu+++08GDBxUcHCxJWrx4sW666SZlZGQoMjKyQo3JyclKSkq6xFEBAABVVbWaUcvMzFRxcbF69ux5yduWlZVp2rRpatmypfz8/OTp6ak1a9YoNzfXrl1ERITd+8DAQB09evSC/Tds2NAW0s7UGhwcbAtpknTjjTfK19dXmZmZZ+0jPj5eBQUFttehQ4cu5RABAEAVU61m1Nzc3C572xdeeEFz587VnDlz1LJlS3l4eCg2NrbCjf/Ozs527y0Wi8rLyy/Yv4eHx2XXdobVapXVar3ifgAAQNVQrWbUwsPD5ebmprS0tEveNj09XQMGDNBf//pXtWrVSmFhYfr+++8vuR9nZ2eVlZVdsF3z5s116NAhu1mxvXv3Kj8/XzfeeOMl7xcAAFQ/1Sqoubq6Ki4uTpMmTdLixYuVnZ2tr776Sm+++eYFtw0PD1dqaqo2b96szMxMPfroo5f1BGZoaKjS0tL0888/67///e852/Xq1UstW7ZUdHS0tm3bpq+//lrDhg1Tt27d1L59+0veLwAAqH6qVVCTpISEBE2YMEGTJ09W8+bNNWTIkIu6h+yZZ55R27ZtFRUVpe7duysgIEADBw685P3PnDlTqampCg4OVps2bc7ZzmKxaNWqVapTp466du2qXr16KSwsTMuXL7/kfQIAgOrJYhiG4egicHkKCwvl4+Oj4NgVcrK6O7ocADCtnJR+ji4BsDnz+V1QUCBvb+/ztq12M2oAAADVBUENAADApKrV13PUVLuToi44dQoAAKoeZtQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUrUdXQCuXIvENXKyuju6DADAFchJ6efoEmBCzKgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyqSga18vJyzZgxQ02aNJHValVISIimT58uSYqLi9MNN9wgd3d3hYWFKSEhQaWlpZKknJwcOTk56ZtvvrHrb86cOWrYsKHKy8slSbt379btt98uT09P+fv764EHHtCvv/5qa9+9e3eNGzdOkyZNkp+fnwICAjRlyhS7Pi0Wi9544w3dfffdcnd3V3h4uD766CO7NhfaDwAAqNmqZFCLj49XSkqKEhIStHfvXi1dulT+/v6SJC8vLy1cuFB79+7V3Llz9frrr2v27NmSpNDQUPXq1UsLFiyw62/BggUaPny4nJyclJ+frx49eqhNmzb65ptv9Nlnn+nIkSMaPHiw3TaLFi2Sh4eHtm7dqhkzZmjq1KlKTU21a5OUlKTBgwdr165duuOOOxQdHa1jx45J0kXv54+Ki4tVWFho9wIAANWXxTAMw9FFXIrjx4+rXr16mj9/vh5++OELtn/xxRe1bNky2yzaihUrNGrUKOXl5clqtWrbtm1q3769Dhw4oNDQUD377LPauHGj1qxZY+vjp59+UnBwsLKysnTDDTeoe/fuKisr08aNG21tOnTooB49eiglJUXS7zNqzzzzjKZNmyZJOnHihDw9PfXpp5+qb9++F7WfP5syZYqSkpIqLA+OXcEX3gJAFccX3tYchYWF8vHxUUFBgby9vc/btsrNqGVmZqq4uFg9e/Y86/rly5erc+fOCggIkKenp5555hnl5uba1g8cOFC1atXShx9+KElauHChbrvtNoWGhkqSdu7cqXXr1snT09P2atasmSQpOzvb1k9ERITdfgMDA3X06FG7ZX9s4+HhIW9vb1ubi93PH8XHx6ugoMD2OnTo0AXHCwAAVF1V7k9Iubm5nXPdli1bFB0draSkJEVFRcnHx0fLli3TzJkzbW1cXFw0bNgwLViwQIMGDdLSpUs1d+5c2/qioiL1799fzz//fIX+AwMDbT87OzvbrbNYLLZ73C6mzcXu54+sVqusVuu5Dh8AAFQzVS6ohYeHy83NTWlpaRUufW7evFkNGzbU008/bVv2448/Vujj4YcfVosWLfTyyy/r9OnTGjRokG1d27Zt9f777ys0NFS1a1fe8Fyr/QAAgKqryl36dHV1VVxcnCZNmqTFixcrOztbX331ld58802Fh4crNzdXy5YtU3Z2tubNm2e7xPlHzZs3180336y4uDgNHTrUbpZu9OjROnbsmIYOHaqMjAxlZ2drzZo1evDBB1VWVnbVjuNa7QcAAFRdVS6oSVJCQoImTJigyZMnq3nz5hoyZIiOHj2qu+66S08++aTGjBmj1q1ba/PmzUpISDhrHyNGjFBJSYkeeughu+VBQUFKT09XWVmZ+vTpo5YtWyo2Nla+vr5ycrp6w3Wt9gMAAKquKvfU59Uybdo0vfvuu9q1a5ejS7lsZ54a4alPAKj6eOqz5qjWT31eqaKiIu3evVvz58/X2LFjHV0OAADAOdW4oDZmzBi1a9dO3bt3r3DZEwAAwExq7KXP6uBSpk4BAIA5cOkTAACgGiCoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmFRtRxeAK9cicY2crO6OLgMAUAPlpPRzdAnVGjNqAAAAJkVQAwAAMCmCGgAAgEkR1K6AYRgaOXKk/Pz8ZLFY5Ovrq9jY2Ivatnv37hfdFgAA1Ew8THAFPvvsMy1cuFDr169XWFiYnJyc5Obm5uiyAABANUFQuwLZ2dkKDAzULbfc4uhSAABANcSlz8s0fPhwjR07Vrm5ubJYLAoNDa1wOfPll19WeHi4XF1d5e/vr3vvvdeuj/Lyck2aNEl+fn4KCAjQlClTru1BAAAAUyOoXaa5c+dq6tSpuv7665WXl6eMjAy79d98843GjRunqVOnKisrS5999pm6du1q12bRokXy8PDQ1q1bNWPGDE2dOlWpqann3GdxcbEKCwvtXgAAoPri0udl8vHxkZeXl2rVqqWAgIAK63Nzc+Xh4aE777xTXl5eatiwodq0aWPXJiIiQomJiZKk8PBwzZ8/X2lpaerdu/dZ95mcnKykpKSrfzAAAMCUmFGrJL1791bDhg0VFhamBx54QEuWLNHJkyft2kRERNi9DwwM1NGjR8/ZZ3x8vAoKCmyvQ4cOVUrtAADAHAhqlcTLy0vbtm3TO++8o8DAQE2ePFmtWrVSfn6+rY2zs7PdNhaLReXl5efs02q1ytvb2+4FAACqL4JaJapdu7Z69eqlGTNmaNeuXcrJydEXX3zh6LIAAEAVwT1qleTjjz/WgQMH1LVrV9WpU0effPKJysvL1bRpU0eXBgAAqgiCWiXx9fXVBx98oClTpujUqVMKDw/XO++8o5tuusnRpQEAgCrCYhiG4egicHkKCwvl4+Oj4NgVcrK6O7ocAEANlJPSz9ElVDlnPr8LCgoueL8596gBAACYFEENAADApLhHrRrYnRTFV3UAAFANMaMGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAk6rt6AJw5VokrpGT1d3RZQAAUK3kpPRzdAnMqAEAAJgVQQ0AAMCkCGoAAAAmRVCrZFOmTFHr1q1t74cPH66BAwc6rB4AAFB18DDBNTZ37lwZhuHoMgAAQBVAUKskhmGorKyswnIfHx8HVAMAAKoiLn3+n+PHjys6OloeHh4KDAzU7Nmz1b17d8XGxkqS3n77bbVv315eXl4KCAjQ/fffr6NHj9q2X79+vSwWiz799FO1a9dOVqtVmzZtqrCfP1/6LC8v14wZM9SkSRNZrVaFhIRo+vTplX24AACgCiCo/Z/x48crPT1dH330kVJTU7Vx40Zt27bNtr60tFTTpk3Tzp07tXLlSuXk5Gj48OEV+nnqqaeUkpKizMxMRUREXHC/8fHxSklJUUJCgvbu3aulS5fK39//rG2Li4tVWFho9wIAANUXlz71+2zaokWLtHTpUvXs2VOStGDBAgUFBdnaPPTQQ7afw8LCNG/ePEVGRqqoqEienp62dVOnTlXv3r0ver9z587V/PnzFRMTI0lq3LixunTpctb2ycnJSkpKuuTjAwAAVRMzapIOHDig0tJSdejQwbbMx8dHTZs2tb3/9ttv1b9/f4WEhMjLy0vdunWTJOXm5tr11b59+4veb2ZmpoqLi23h8ELi4+NVUFBgex06dOii9wUAAKoeZtQuwokTJxQVFaWoqCgtWbJE9erVU25urqKiolRSUmLX1sPD46L7dXNzu6Q6rFarrFbrJW0DAACqLmbU9PulTGdnZ2VkZNiWFRQU6Pvvv5ck7du3T7/99ptSUlJ06623qlmzZnYPElyu8PBwubm5KS0t7Yr7AgAA1Q8zapK8vLwUExOjv/3tb/Lz81P9+vWVmJgoJycnWSwWhYSEyMXFRS+99JJGjRql3bt3a9q0aVe8X1dXV8XFxWnSpElycXFR586d9csvv2jPnj0aMWLEVTgyAABQlTGj9n9mzZqlTp066c4771SvXr3UuXNnNW/eXK6urqpXr54WLlyod999VzfeeKNSUlL04osvXpX9JiQkaMKECZo8ebKaN2+uIUOGXJXZOgAAUPVZDL4m/6xOnDihBg0aaObMmaad3SosLJSPj4+CY1fIyeru6HIAAKhWclL6VUq/Zz6/CwoK5O3tfd62XPr8P9u3b9e+ffvUoUMHFRQUaOrUqZKkAQMGOLgyAABQUxHU/uDFF19UVlaWXFxc1K5dO23cuFF169Z1dFkAAKCG4tJnFXYpU6cAAMAcLuXzm4cJAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKb7wtgo78xV4hYWFDq4EAABcrDOf2xfzVbYEtSrst99+kyQFBwc7uBIAAHCpjh8/Lh8fn/O2IahVYX5+fpKk3NzcC/5D1xSFhYUKDg7WoUOH+GsNYjz+jPGoiDGxx3jYYzzsXa3xMAxDx48fV1BQ0AXbEtSqMCen328x9PHx4RfoT7y9vRmTP2A87DEeFTEm9hgPe4yHvasxHhc7wcLDBAAAACZFUAMAADApgloVZrValZiYKKvV6uhSTIMxscd42GM8KmJM7DEe9hgPe44YD4txMc+GAgAA4JpjRg0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUqrB//OMfCg0Nlaurqzp27Kivv/7a0SVdE8nJyYqMjJSXl5fq16+vgQMHKisry65N9+7dZbFY7F6jRo1yUMWVa8qUKRWOtVmzZrb1p06d0ujRo3XdddfJ09NT99xzj44cOeLAiitfaGhohTGxWCwaPXq0pOp/fnz55Zfq37+/goKCZLFYtHLlSrv1hmFo8uTJCgwMlJubm3r16qUffvjBrs2xY8cUHR0tb29v+fr6asSIESoqKrqGR3H1nG88SktLFRcXp5YtW8rDw0NBQUEaNmyYDh8+bNfH2c6plJSUa3wkV8eFzo/hw4dXONa+ffvatalO54d04TE52/8nFotFL7zwgq1NZZ0jBLUqavny5Ro/frwSExO1bds2tWrVSlFRUTp69KijS6t0GzZs0OjRo/XVV18pNTVVpaWl6tOnj06cOGHX7pFHHlFeXp7tNWPGDAdVXPluuukmu2PdtGmTbd2TTz6pf//733r33Xe1YcMGHT58WIMGDXJgtZUvIyPDbjxSU1MlSX/5y19sbarz+XHixAm1atVK//jHP866fsaMGZo3b55effVVbd26VR4eHoqKitKpU6dsbaKjo7Vnzx6lpqbq448/1pdffqmRI0deq0O4qs43HidPntS2bduUkJCgbdu26YMPPlBWVpbuuuuuCm2nTp1qd86MHTv2WpR/1V3o/JCkvn372h3rO++8Y7e+Op0f0oXH5I9jkZeXp7feeksWi0X33HOPXbtKOUcMVEkdOnQwRo8ebXtfVlZmBAUFGcnJyQ6syjGOHj1qSDI2bNhgW9atWzfjiSeecFxR11BiYqLRqlWrs67Lz883nJ2djXfffde2LDMz05BkbNmy5RpV6HhPPPGE0bhxY6O8vNwwjJp1fkgyPvzwQ9v78vJyIyAgwHjhhRdsy/Lz8w2r1Wq88847hmEYxt69ew1JRkZGhq3Np59+algsFuM///nPNau9Mvx5PM7m66+/NiQZP/74o21Zw4YNjdmzZ1ducQ5wtvGIiYkxBgwYcM5tqvP5YRgXd44MGDDA6NGjh92yyjpHmFGrgkpKSvTtt9+qV69etmVOTk7q1auXtmzZ4sDKHKOgoEDS//8j9WcsWbJEdevWVYsWLRQfH6+TJ086orxr4ocfflBQUJDCwsIUHR2t3NxcSdK3336r0tJSu3OlWbNmCgkJqTHnSklJif71r3/poYceksVisS2vSefHHx08eFA///yz3Tnh4+Ojjh072s6JLVu2yNfXV+3bt7e16dWrl5ycnLR169ZrXvO1VlBQIIvFIl9fX7vlKSkpuu6669SmTRu98MILOn36tGMKvAbWr1+v+vXrq2nTpnrsscf022+/2dbV9PPjyJEjWr16tUaMGFFhXWWcI/xR9iro119/VVlZmfz9/e2W+/v7a9++fQ6qyjHKy8sVGxurzp07q0WLFrbl999/vxo2bKigoCDt2rVLcXFxysrK0gcffODAaitHx44dtXDhQjVt2lR5eXlKSkrSrbfeqt27d+vnn3+Wi4tLhQ8cf39//fzzz44p+BpbuXKl8vPzNXz4cNuymnR+/NmZf/ez/f9xZt3PP/+s+vXr262vXbu2/Pz8qv15c+rUKcXFxWno0KF2f3R73Lhxatu2rfz8/LR582bFx8crLy9Ps2bNcmC1laNv374aNGiQGjVqpOzsbP3973/X7bffri1btqhWrVo1+vyQpEWLFsnLy6vCLSSVdY4Q1FCljR49Wrt377a7J0uS3b0SLVu2VGBgoHr27Kns7Gw1btz4WpdZqW6//XbbzxEREerYsaMaNmyoFStWyM3NzYGVmcObb76p22+/XUFBQbZlNen8wMUrLS3V4MGDZRiGXnnlFbt148ePt/0cEREhFxcXPfroo0pOTq52f17pvvvus/3csmVLRUREqHHjxlq/fr169uzpwMrM4a233lJ0dLRcXV3tllfWOcKlzyqobt26qlWrVoUn944cOaKAgAAHVXXtjRkzRh9//LHWrVun66+//rxtO3bsKEnav3//tSjNoXx9fXXDDTdo//79CggIUElJifLz8+3a1JRz5ccff9TatWv18MMPn7ddTTo/zvy7n+//j4CAgAoPJp0+fVrHjh2rtufNmZD2448/KjU11W427Ww6duyo06dPKycn59oU6EBhYWGqW7eu7fejJp4fZ2zcuFFZWVkX/D9FunrnCEGtCnJxcVG7du2UlpZmW1ZeXq60tDR16tTJgZVdG4ZhaMyYMfrwww/1xRdfqFGjRhfcZseOHZKkwMDASq7O8YqKipSdna3AwEC1a9dOzs7OdudKVlaWcnNza8S5smDBAtWvX1/9+vU7b7uadH40atRIAQEBdudEYWGhtm7dajsnOnXqpPz8fH377be2Nl988YXKy8ttobY6ORPSfvjhB61du1bXXXfdBbfZsWOHnJycKlwCrI5++ukn/fbbb7bfj5p2fvzRm2++qXbt2qlVq1YXbHvVzpGr/ngCrolly5YZVqvVWLhwobF3715j5MiRhq+vr/Hzzz87urRK99hjjxk+Pj7G+vXrjby8PNvr5MmThmEYxv79+42pU6ca33zzjXHw4EFj1apVRlhYmNG1a1cHV145JkyYYKxfv944ePCgkZ6ebvTq1cuoW7eucfToUcMwDGPUqFFGSEiI8cUXXxjffPON0alTJ6NTp04OrrrylZWVGSEhIUZcXJzd8ppwfhw/ftzYvn27sX37dkOSMWvWLGP79u22pxhTUlIMX19fY9WqVcauXbuMAQMGGI0aNTL+97//2fro27ev0aZNG2Pr1q3Gpk2bjPDwcGPo0KGOOqQrcr7xKCkpMe666y7j+uuvN3bs2GH3f0pxcbFhGIaxefNmY/bs2caOHTuM7Oxs41//+pdRr149Y9iwYQ4+sstzvvE4fvy4MXHiRGPLli3GwYMHjbVr1xpt27Y1wsPDjVOnTtn6qE7nh2Fc+HfGMAyjoKDAcHd3N1555ZUK21fmOUJQq8JeeuklIyQkxHBxcTE6dOhgfPXVV44u6ZqQdNbXggULDMMwjNzcXKNr166Gn5+fYbVajSZNmhh/+9vfjIKCAscWXkmGDBliBAYGGi4uLkaDBg2MIUOGGPv377et/9///mc8/vjjRp06dQx3d3fj7rvvNvLy8hxY8bWxZs0aQ5KRlZVlt7wmnB/r1q076+9ITEyMYRi/f0VHQkKC4e/vb1itVqNnz54Vxum3334zhg4danh6ehre3t7Ggw8+aBw/ftwBR3PlzjceBw8ePOf/KevWrTMMwzC+/fZbo2PHjoaPj4/h6upqNG/e3HjuuefsgktVcr7xOHnypNGnTx+jXr16hrOzs9GwYUPjkUceqTAJUJ3OD8O48O+MYRjGa6+9Zri5uRn5+fkVtq/Mc8RiGIZxZXNyAAAAqAzcowYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApP4fcktX1RY4fokAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "thai_ingredient_df = create_ingredient_df(thai_df)\n", + "thai_ingredient_df.head(10).plot.barh()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmoAAAGdCAYAAACirV9DAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABBn0lEQVR4nO3df3xP9f//8ftr2Gu/N79t2ubXGmJjjCQ/8msk+VFEE96oFIkorRIjbW/5UZSUd0KRSpI3pUamWdKKUWKxrCmKyH7Y27bsfP/w8fr2asyv8Tp77Xa9XF6Xy17nPM/zPM7Zudjd85zn62UxDMMQAAAATMfF0QUAAADg/AhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYVEVHF4ArV1RUpMOHD8vb21sWi8XR5QAAgEtgGIZycnIUEBAgF5eSx8wIamXY4cOHFRgY6OgyAADAFTh06JBuuOGGEtsQ1Mowb29vSWd/0T4+Pg6uBgAAXIrs7GwFBgba/o6XhKBWhp273enj40NQAwCgjLmUx5aYTAAAAGBSBDUAAACTIqgBAACYFM+oAQBQzp05c0aFhYWOLsOpVKhQQRUrVrzqj88iqAEAUI7l5ubql19+kWEYji7F6Xh4eMjf31+urq5X3AdBDQCAcurMmTP65Zdf5OHhoerVq/Ph6aXEMAwVFBTo2LFjOnjwoEJCQi76wbYXQlBzAk2mfCoXq4ejywDsZMT3dHQJAC6isLBQhmGoevXqcnd3d3Q5TsXd3V2VKlXSzz//rIKCArm5uV1RP0wmAACgnGMk7dq40lE0uz5KoQ4AAABcAwQ1AAAAk+IZtVKyZMkSjRs3TidPnnR0KQAAXJU6T66/rvu73s+01qlTR+PGjdO4ceOu636vBCNqpeSee+7Rjz/+6OgyAACAE2FErZS4u7szYwYAAJQqRtRKsG7dOvn5+enMmTOSpNTUVFksFj355JO2NiNHjtTgwYO1ZMkS+fn52ZZPnTpVzZo101tvvaU6derI19dXAwcOVE5Ojq1NUVGR4uLiVLduXbm7uys8PFyrVq26bscHAEBZ8/rrrysgIEBFRUV2y3v37q3hw4crPT1dvXv3Vs2aNeXl5aXIyEht3Ljxgv1lZGTIYrEoNTXVtuzkyZOyWCxKTEy0Lfv+++/Vo0cPeXl5qWbNmrrvvvv0xx9/lPbhFUNQK0G7du2Uk5OjnTt3SpK2bNmiatWq2f3itmzZoo4dO553+/T0dK1Zs0br1q3TunXrtGXLFsXHx9vWx8XFadmyZVq4cKH27Nmj8ePHa/DgwdqyZct5+8vPz1d2drbdCwCA8qR///46fvy4Nm/ebFt24sQJbdiwQdHR0crNzdXtt9+uTZs2aefOnerevbt69eqlzMzMK97nyZMn1alTJzVv3lzffPONNmzYoN9//10DBgwojUMqEUGtBL6+vmrWrJktmCUmJmr8+PHauXOncnNz9euvv+rAgQPq0KHDebcvKirSkiVL1KRJE7Vr10733XefNm3aJOls6Hr++ee1ePFiRUVFqV69eho2bJgGDx6s11577bz9xcXFydfX1/YKDAy8JscNAIBZVa5cWT169NCKFStsy1atWqVq1arptttuU3h4uB588EE1adJEISEhmj59uurXr6+1a9de8T5ffvllNW/eXM8//7waNmyo5s2ba/Hixdq8efM1fz6doHYRHTp0UGJiogzDUFJSkvr166dGjRpp69at2rJliwICAhQSEnLebevUqSNvb2/be39/fx09elSSdODAAeXl5alr167y8vKyvZYtW6b09PTz9hcTE6OsrCzb69ChQ6V/wAAAmFx0dLQ++OAD5efnS5KWL1+ugQMHysXFRbm5uZo4caIaNWokPz8/eXl5ae/evVc1orZr1y5t3rzZ7u91w4YNJemCf7NLC5MJLqJjx45avHixdu3apUqVKqlhw4bq2LGjEhMT9eeff15wNE2SKlWqZPfeYrHY7qnn5uZKktavX6/atWvbtbNareftz2q1XnAdAADlRa9evWQYhtavX6/IyEglJSVp7ty5kqSJEycqISFBs2bNUoMGDeTu7q67775bBQUF5+3r3LcH/P1L6QsLC+3a5ObmqlevXvr3v/9dbHt/f//SOqzzIqhdxLnn1ObOnWsLZR07dlR8fLz+/PNPTZgw4Yr6bdy4saxWqzIzM0sMewAAwJ6bm5v69eun5cuX68CBAwoNDVVERIQkKTk5WcOGDVPfvn0lnQ1ZGRkZF+yrevXqkqQjR46oefPmkmQ3sUCSIiIi9MEHH6hOnTqqWPH6RidufV5E5cqVFRYWpuXLl9smDbRv3147duzQjz/+eMUhy9vbWxMnTtT48eO1dOlSpaena8eOHZo/f76WLl1aikcAAIDziY6O1vr167V48WJFR0fbloeEhGj16tVKTU3Vrl27dO+99xabIfp37u7uuvnmmxUfH6+9e/dqy5YteuaZZ+zajB49WidOnNCgQYOUkpKi9PR0ffrpp/rXv/5l+2SIa4URtUvQoUMHpaam2oJalSpV1LhxY/3+++8KDQ294n6nT5+u6tWrKy4uTj/99JP8/PwUERGhp556qpQqBwDg8l3vbwq4Ep06dVKVKlWUlpame++917Z8zpw5Gj58uG655RZVq1ZNkyZNuuinJCxevFgjRoxQixYtFBoaqpkzZ6pbt2629QEBAUpOTtakSZPUrVs35efnKzg4WN27dy+VL14vicX4+01ZlCnZ2dlnZ3+Oe08uVg9HlwPYKQv/0APl3enTp3Xw4EHVrVtXbm5uji7H6Vzo/J77+52VlSUfH58S++DWJwAAgEkR1AAAAEyKZ9ScwPexURcdOgUAAGUPI2oAAAAmRVADAKCcY17htVEa55WgBgBAOVWhQgVJuuCn9uPq5OXlSSr+TUWXg2fUAAAopypWrCgPDw8dO3ZMlSpVuuafCVZeGIahvLw8HT16VH5+frZAfCUIagAAlFMWi0X+/v46ePCgfv75Z0eX43T8/PxUq1atq+qDoAYAQDnm6uqqkJAQbn+WskqVKl3VSNo5BDUAAMo5FxcXvpnApLgZDQAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgU3/XpBJpM+VQuVg9HlwFcExnxPR1dAgA4DCNqAAAAJkVQAwAAMCmCGgAAgEkR1K6xqVOnqlmzZrb3w4YNU58+fRxWDwAAKDuYTHCdvfTSSzIMw9FlAACAMoCgdo0YhqEzZ84UW+7r6+uAagAAQFnErc//k5OTo+joaHl6esrf319z585Vx44dNW7cOEnSW2+9pZYtW8rb21u1atXSvffeq6NHj9q2T0xMlMVi0SeffKIWLVrIarVq69atxfbzz1ufRUVFmjlzpho0aCCr1aqgoCDNmDHjWh8uAAAoAwhq/+exxx5TcnKy1q5dq4SEBCUlJWnHjh229YWFhZo+fbp27dqlNWvWKCMjQ8OGDSvWz5NPPqn4+Hjt3btXYWFhF91vTEyM4uPjNXnyZP3www9asWKFatased62+fn5ys7OtnsBAADnxa1PnR1NW7p0qVasWKHOnTtLkt58800FBATY2gwfPtz2c7169TRv3jxFRkYqNzdXXl5etnXTpk1T165dL3m/L730kl5++WUNHTpUklS/fn3deuut520fFxen2NjYyz4+AABQNjGiJumnn35SYWGhWrVqZVvm6+ur0NBQ2/tvv/1WvXr1UlBQkLy9vdWhQwdJUmZmpl1fLVu2vOT97t27V/n5+bZweDExMTHKysqyvQ4dOnTJ+wIAAGUPI2qX4NSpU4qKilJUVJSWL1+u6tWrKzMzU1FRUSooKLBr6+npecn9uru7X1YdVqtVVqv1srYBAABlFyNqOnsrs1KlSkpJSbEty8rK0o8//ihJ2rdvn44fP674+Hi1a9dODRs2tJtIcKVCQkLk7u6uTZs2XXVfAADA+TCiJsnb21tDhw7V448/ripVqqhGjRqaMmWKXFxcZLFYFBQUJFdXV82fP1+jRo3S999/r+nTp1/1ft3c3DRp0iQ98cQTcnV1Vdu2bXXs2DHt2bNHI0aMKIUjAwAAZRkjav9nzpw5atOmje644w516dJFbdu2VaNGjeTm5qbq1atryZIlev/999W4cWPFx8dr1qxZpbLfyZMna8KECXr22WfVqFEj3XPPPaUyWgcAAMo+i8HH5J/XqVOnVLt2bc2ePdu0o1vZ2dny9fVV4Lj35GL1cHQ5wDWREd/T0SUAQKk69/c7KytLPj4+Jbbl1uf/2blzp/bt26dWrVopKytL06ZNkyT17t3bwZUBAIDyiqD2N7NmzVJaWppcXV3VokULJSUlqVq1ao4uCwAAlFPc+izDLmfoFAAAmMPl/P1mMgEAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMqqKjC8DVazLlU7lYPRxdBuAUMuJ7OroEALBhRA0AAMCkCGoAAAAmRVADAAAwKYLaP9SpU0cvvviio8sAAABgMsE/paSkyNPT09FlAAAAENT+qXr16o4uQZJUUFAgV1dXR5cBAAAcqNzd+szJyVF0dLQ8PT3l7++vuXPnqmPHjho3bpyk4rc+LRaL/vOf/6hv377y8PBQSEiI1q5da9fn2rVrFRISIjc3N912221aunSpLBaLTp48aWuzdetWtWvXTu7u7goMDNTYsWN16tQp2/o6depo+vTpGjJkiHx8fPTAAw9cy9MAAADKgHIX1B577DElJydr7dq1SkhIUFJSknbs2FHiNrGxsRowYIB2796t22+/XdHR0Tpx4oQk6eDBg7r77rvVp08f7dq1Sw8++KCefvppu+3T09PVvXt33XXXXdq9e7feffddbd26VWPGjLFrN2vWLIWHh2vnzp2aPHlysTry8/OVnZ1t9wIAAM6rXAW1nJwcLV26VLNmzVLnzp3VpEkTvfnmmzpz5kyJ2w0bNkyDBg1SgwYN9Pzzzys3N1dff/21JOm1115TaGioXnjhBYWGhmrgwIEaNmyY3fZxcXGKjo7WuHHjFBISoltuuUXz5s3TsmXLdPr0aVu7Tp06acKECapfv77q169frI64uDj5+vraXoGBgVd/UgAAgGmVq6D2008/qbCwUK1atbIt8/X1VWhoaInbhYWF2X729PSUj4+Pjh49KklKS0tTZGSkXfu/9y9Ju3bt0pIlS+Tl5WV7RUVFqaioSAcPHrS1a9myZYl1xMTEKCsry/Y6dOhQyQcMAADKNCYTXIJKlSrZvbdYLCoqKrrk7XNzc/Xggw9q7NixxdYFBQXZfr7YbFOr1Sqr1XrJ+wUAAGVbuQpq9erVU6VKlZSSkmILSFlZWfrxxx/Vvn37K+ozNDRUH3/8sd2ylJQUu/cRERH64Ycf1KBBgysrHAAAlEvl6tant7e3hg4dqscff1ybN2/Wnj17NGLECLm4uMhisVxRnw8++KD27dunSZMm6ccff9R7772nJUuWSJKtz0mTJunLL7/UmDFjlJqaqv379+ujjz4qNpkAAADg78pVUJOkOXPmqE2bNrrjjjvUpUsXtW3bVo0aNZKbm9sV9Ve3bl2tWrVKq1evVlhYmF599VXbrM9ztynDwsK0ZcsW/fjjj2rXrp2aN2+uZ599VgEBAaV2XAAAwPlYDMMwHF2EI506dUq1a9fW7NmzNWLEiFLpc8aMGVq4cOE1f9g/Ozv77OzPce/JxepxTfcFlBcZ8T0dXQIAJ3fu73dWVpZ8fHxKbFuunlGTpJ07d2rfvn1q1aqVsrKyNG3aNElS7969r7jPBQsWKDIyUlWrVlVycrJeeOEFbmsCAICrVu6CmnT2g2XT0tLk6uqqFi1aKCkpSdWqVbvi/vbv36/nnntOJ06cUFBQkCZMmKCYmJhSrBgAAJRH5f7WZ1l2OUOnAADAHC7n73e5m0wAAABQVhDUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATKqiowvA1Wsy5VO5WD0cXQZQLmTE93R0CQDKEUbUAAAATIqgBgAAYFIENQAAAJMiqF2iJUuWyM/Pz/Z+6tSpatasme39sGHD1KdPn+teFwAAcF5MJiglL730kgzDcHQZAADAiRDUSomvr6+jSwAAAE7G6W59rlq1Sk2bNpW7u7uqVq2qLl266NSpU5KkxYsX66abbpLVapW/v7/GjBlj227OnDlq2rSpPD09FRgYqIcffli5ubmXvN9/3vrMz8/X2LFjVaNGDbm5uenWW29VSkqKbX1iYqIsFos2bdqkli1bysPDQ7fccovS0tKu/iQAAACn4FRB7ciRIxo0aJCGDx+uvXv3KjExUf369ZNhGHr11Vc1evRoPfDAA/ruu++0du1aNWjQwLati4uL5s2bpz179mjp0qX6/PPP9cQTT1xxLU888YQ++OADLV26VDt27FCDBg0UFRWlEydO2LV7+umnNXv2bH3zzTeqWLGihg8ffsE+8/PzlZ2dbfcCAADOy6lufR45ckR//fWX+vXrp+DgYElS06ZNJUnPPfecJkyYoEcffdTWPjIy0vbzuHHjbD/XqVNHzz33nEaNGqUFCxZcdh2nTp3Sq6++qiVLlqhHjx6SpEWLFikhIUFvvPGGHn/8cVvbGTNmqEOHDpKkJ598Uj179tTp06fl5uZWrN+4uDjFxsZedj0AAKBscqoRtfDwcHXu3FlNmzZV//79tWjRIv355586evSoDh8+rM6dO19w240bN6pz586qXbu2vL29dd999+n48ePKy8u77DrS09NVWFiotm3b2pZVqlRJrVq10t69e+3ahoWF2X729/eXJB09evS8/cbExCgrK8v2OnTo0GXXBgAAyg6nCmoVKlRQQkKCPvnkEzVu3Fjz589XaGiofv/99xK3y8jI0B133KGwsDB98MEH+vbbb/XKK69IkgoKCq5pzZUqVbL9bLFYJElFRUXnbWu1WuXj42P3AgAAzsupgpp0Nuy0bdtWsbGx2rlzp1xdXZWQkKA6depo06ZN593m22+/VVFRkWbPnq2bb75ZN954ow4fPnzFNdSvX1+urq5KTk62LSssLFRKSooaN258xf0CAIDyxameUdu+fbs2bdqkbt26qUaNGtq+fbuOHTumRo0aaerUqRo1apRq1KihHj16KCcnR8nJyXrkkUfUoEEDFRYWav78+erVq5eSk5O1cOHCK67D09NTDz30kB5//HFVqVJFQUFBmjlzpvLy8jRixIhSPGIAAODMnCqo+fj46IsvvtCLL76o7OxsBQcHa/bs2bYH+k+fPq25c+dq4sSJqlatmu6++25JZ59tmzNnjv79738rJiZG7du3V1xcnIYMGXLFtcTHx6uoqEj33XefcnJy1LJlS3366aeqXLlyqRwrAABwfhaDj9Mvs7Kzs+Xr66vAce/Jxerh6HKAciEjvqejSwBQxp37+52VlXXR582d7hk1AAAAZ0FQAwAAMCmnekatvPo+NoqP6gAAwAkxogYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTqujoAnD1mkz5VC5WD0eXAUBSRnxPR5cAwIkwogYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmC2hUqKipSXFyc6tatK3d3d4WHh2vVqlW29WvXrlVISIjc3Nx02223aenSpbJYLDp58qStzaJFixQYGCgPDw/17dtXc+bMkZ+f3/U/GAAAYEp8jtoViouL09tvv62FCxcqJCREX3zxhQYPHqzq1asrKChId999tx599FGNHDlSO3fu1MSJE+22T05O1qhRo/Tvf/9bd955pzZu3KjJkyeXuM/8/Hzl5+fb3mdnZ1+TYwMAAOZgMQzDcHQRZU1+fr6qVKmijRs3qk2bNrblI0eOVF5enoKCgrR+/Xp99913tnXPPPOMZsyYoT///FN+fn4aOHCgcnNztW7dOlubwYMHa926dXajbn83depUxcbGFlseOO49PvAWMAk+8BbAxWRnZ8vX11dZWVny8fEpsS23Pq/AgQMHlJeXp65du8rLy8v2WrZsmdLT05WWlqbIyEi7bVq1amX3Pi0trdiyf77/p5iYGGVlZdlehw4dKp0DAgAApsStzyuQm5srSVq/fr1q165tt85qtWrs2LHXZL9Wq1VWq/Wa9A0AAMyHoHYFGjduLKvVqszMTHXo0KHY+tDQUH388cd2y1JSUoq1+eeyf74HAADlG0HtCnh7e2vixIkaP368ioqKdOuttyorK0vJycny8fHRgw8+qDlz5mjSpEkaMWKEUlNTtWTJEkmSxWKRJD3yyCNq37695syZo169eunzzz/XJ598YlsPAADAM2pXaPr06Zo8ebLi4uLUqFEjde/eXevXr1fdunVVt25drVq1SqtXr1ZYWJheffVVPf3005Jku3XZtm1bLVy4UHPmzFF4eLg2bNig8ePHy83NzZGHBQAATIRZn9fJjBkztHDhwhInANx///3at2+fkpKSLqnPc7NGmPUJmAezPgFczOXM+uTW5zWyYMECRUZGqmrVqkpOTtYLL7ygMWPG2LWZNWuWunbtKk9PT33yySdaunSpFixY4KCKAQCA2RDUrpH9+/frueee04kTJxQUFKQJEyYoJibGrs3XX3+tmTNnKicnR/Xq1dO8efM0cuRIB1UMAADMhlufZdjlDJ0CAABz4ANvAQAAnABBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQqOroAXL0mUz6Vi9XD0WUA+JuM+J6OLgGAE2BEDQAAwKQIagAAACZFUAMAADApgto1ZrFYtGbNGkeXAQAAyiCCGgAAgEkR1AAAAEyKoHYJVq1apaZNm8rd3V1Vq1ZVly5ddOrUKaWkpKhr166qVq2afH191aFDB+3YsaPEvqZMmSJ/f3/t3r1bkrR161a1a9dO7u7uCgwM1NixY3Xq1KnrcVgAAMDkCGoXceTIEQ0aNEjDhw/X3r17lZiYqH79+skwDOXk5Gjo0KHaunWrvvrqK4WEhOj2229XTk5OsX4Mw9AjjzyiZcuWKSkpSWFhYUpPT1f37t111113affu3Xr33Xe1detWjRkz5ry15OfnKzs72+4FAACcl8UwDMPRRZjZjh071KJFC2VkZCg4OLjEtkVFRfLz89OKFSt0xx13SDo7meD999/Xhx9+qJ07dyohIUG1a9eWJI0cOVIVKlTQa6+9Zutj69at6tChg06dOiU3Nze7/qdOnarY2Nhi+w0c9x4feAuYDB94C+BCsrOz5evrq6ysLPn4+JTYlhG1iwgPD1fnzp3VtGlT9e/fX4sWLdKff/4pSfr99991//33KyQkRL6+vvLx8VFubq4yMzPt+hg/fry2b9+uL774whbSJGnXrl1asmSJvLy8bK+oqCgVFRXp4MGDxWqJiYlRVlaW7XXo0KFre/AAAMChCGoXUaFCBSUkJOiTTz5R48aNNX/+fIWGhurgwYMaOnSoUlNT9dJLL+nLL79UamqqqlatqoKCArs+unbtql9//VWffvqp3fLc3Fw9+OCDSk1Ntb127dql/fv3q379+sVqsVqt8vHxsXsBAADnxXd9XgKLxaK2bduqbdu2evbZZxUcHKwPP/xQycnJWrBggW6//XZJ0qFDh/THH38U2/7OO+9Ur169dO+996pChQoaOHCgJCkiIkI//PCDGjRocF2PBwAAlA0EtYvYvn27Nm3apG7duqlGjRravn27jh07pkaNGikkJERvvfWWWrZsqezsbD3++ONyd3c/bz99+/bVW2+9pfvuu08VK1bU3XffrUmTJunmm2/WmDFjNHLkSHl6euqHH35QQkKCXn755et8pAAAwGwIahfh4+OjL774Qi+++KKys7MVHBys2bNnq0ePHqpVq5YeeOABRUREKDAwUM8//7wmTpx4wb7uvvtuFRUV6b777pOLi4v69eunLVu26Omnn1a7du1kGIbq16+ve+655zoeIQAAMCtmfZZh52aNMOsTMB9mfQK4EGZ9AgAAOAGCGgAAgEnxjJoT+D42io/qAADACTGiBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJOq6OgCcPWaTPlULlYPR5cBoBzLiO/p6BIAp8SIGgAAgEkR1AAAAEyKoAYAAGBS5SaoTZ06Vc2aNSuxzbBhw9SnT5/rUo8kdezYUePGjbO9r1Onjl588cXrtn8AAGBuZW4ywbBhw3Ty5EmtWbPG0aVctdWrV6tSpUqOLgMAAJhUmQtqzqRKlSqOLgEAAJjYJd/6fP311xUQEKCioiK75b1799bw4cMlSR999JEiIiLk5uamevXqKTY2Vn/99Zet7b59+3TrrbfKzc1NjRs31saNG2WxWOxGxw4dOqQBAwbIz89PVapUUe/evZWRkSHp7O3LpUuX6qOPPpLFYpHFYlFiYqIkadKkSbrxxhvl4eGhevXqafLkySosLCx2HK+99poCAwPl4eGhAQMGKCsr64LHXFRUpLi4ONWtW1fu7u4KDw/XqlWrLvWUacuWLWrVqpWsVqv8/f315JNP2p2Pf976BAAA+LtLDmr9+/fX8ePHtXnzZtuyEydOaMOGDYqOjlZSUpKGDBmiRx99VD/88INee+01LVmyRDNmzJAknTlzRn369JGHh4e2b9+u119/XU8//bTdPgoLCxUVFSVvb28lJSUpOTlZXl5e6t69uwoKCjRx4kQNGDBA3bt315EjR3TkyBHdcsstkiRvb28tWbJEP/zwg1566SUtWrRIc+fOtev/wIEDeu+99/Tf//5XGzZs0M6dO/Xwww9f8Jjj4uK0bNkyLVy4UHv27NH48eM1ePBgbdmy5aLn69dff9Xtt9+uyMhI7dq1S6+++qreeOMNPffcc5d6yovJz89Xdna23QsAADivS771WblyZfXo0UMrVqxQ586dJUmrVq1StWrVdNttt6lbt2568sknNXToUElSvXr1NH36dD3xxBOaMmWKEhISlJ6ersTERNWqVUuSNGPGDHXt2tW2j3fffVdFRUX6z3/+I4vFIkl688035efnp8TERHXr1k3u7u7Kz8+39XHOM888Y/u5Tp06mjhxolauXKknnnjCtvz06dNatmyZateuLUmaP3++evbsqdmzZxfrLz8/X88//7w2btyoNm3a2I5p69ateu2119ShQ4cSz9eCBQsUGBiol19+WRaLRQ0bNtThw4c1adIkPfvss3Jxufx5HHFxcYqNjb3s7QAAQNl0Wc+oRUdH6/7779eCBQtktVq1fPlyDRw4UC4uLtq1a5eSk5NtI2jS2VG006dPKy8vT2lpaQoMDLQLRK1atbLrf9euXTpw4IC8vb3tlp8+fVrp6ekl1vbuu+9q3rx5Sk9PV25urv766y/5+PjYtQkKCrKFNElq06aNioqKlJaWViyoHThwQHl5eXZBUpIKCgrUvHnzEmuRpL1796pNmza2wClJbdu2VW5urn755RcFBQVdtI9/iomJ0WOPPWZ7n52drcDAwMvuBwAAlA2XFdR69eolwzC0fv16RUZGKikpyXZ7MTc3V7GxserXr1+x7dzc3C6p/9zcXLVo0ULLly8vtq569eoX3G7btm2Kjo5WbGysoqKi5Ovrq5UrV2r27NmXeGTnr0WS1q9fbxfuJMlqtV5xv1fDarU6bN8AAOD6u6yg5ubmpn79+mn58uU6cOCAQkNDFRERIUmKiIhQWlqaGjRocN5tQ0NDdejQIf3++++qWbOmJCklJcWuTUREhN59913VqFGj2GjYOa6urjpz5ozdsi+//FLBwcF2z7z9/PPPxbbNzMzU4cOHFRAQIEn66quv5OLiotDQ0GJtGzduLKvVqszMzIve5jyfRo0a6YMPPpBhGLZRteTkZHl7e+uGG2647P4AAED5c9kPSkVHR2v9+vVavHixoqOjbcufffZZLVu2TLGxsdqzZ4/27t2rlStX2p4d69q1q+rXr6+hQ4dq9+7dSk5Otq07F2Sio6NVrVo19e7dW0lJSTp48KASExM1duxY/fLLL5LOPn+2e/dupaWl6Y8//lBhYaFCQkKUmZmplStXKj09XfPmzdOHH35YrHY3NzcNHTpUu3btUlJSksaOHasBAwYUu+0pnZ2cMHHiRI0fP15Lly5Venq6duzYofnz52vp0qUXPU8PP/ywDh06pEceeUT79u3TRx99pClTpuixxx67oufTAABA+XPZiaFTp06qUqWK0tLSdO+999qWR0VFad26dfrss88UGRmpm2++WXPnzlVwcLAkqUKFClqzZo1yc3MVGRmpkSNH2kbAzt0a9fDw0BdffKGgoCD169dPjRo10ogRI3T69GnbCNv999+v0NBQtWzZUtWrV1dycrLuvPNOjR8/XmPGjFGzZs305ZdfavLkycVqb9Cggfr166fbb79d3bp1U1hYmBYsWHDBY50+fbomT56suLg4NWrUSN27d9f69etVt27di56n2rVr6+OPP9bXX3+t8PBwjRo1SiNGjLCb9AAAAFASi2EYhqN2npycrFtvvVUHDhxQ/fr1HVVGmZWdnS1fX18FjntPLlYPR5cDoBzLiO/p6BKAMuPc3++srKwLPup1znX9ZoIPP/xQXl5eCgkJ0YEDB/Too4+qbdu2hDQAAIDzuK4PS+Xk5Gj06NFq2LChhg0bpsjISH300UfXs4RSM2rUKHl5eZ33NWrUKEeXBwAAnIBDb32WZUePHr3gNwP4+PioRo0a17yGyxk6BQAA5mDaW5/OpEaNGtcljAEAgPKLz4kAAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwqYqOLgBXr8mUT+Vi9XB0GQBwxTLiezq6BMCUGFEDAAAwKYIaAACASRHUAAAATKpcBbWpU6eqWbNmji4DAADgkpSroDZx4kRt2rTJ0WUAAABcknI169PLy0teXl6OLuOSFBQUyNXV1dFlAAAAB3KqEbXXX39dAQEBKioqslveu3dvDR8+vNitz2HDhqlPnz6aNWuW/P39VbVqVY0ePVqFhYW2Nvn5+Zo4caJq164tT09PtW7dWomJiXb9L1q0SIGBgfLw8FDfvn01Z84c+fn52danp6erd+/eqlmzpry8vBQZGamNGzfa9VGnTh1Nnz5dQ4YMkY+Pjx544IFSOy8AAKBscqqg1r9/fx0/flybN2+2LTtx4oQ2bNig6Ojo826zefNmpaena/PmzVq6dKmWLFmiJUuW2NaPGTNG27Zt08qVK7V79271799f3bt31/79+yVJycnJGjVqlB599FGlpqaqa9eumjFjht0+cnNzdfvtt2vTpk3auXOnunfvrl69eikzM9Ou3axZsxQeHq6dO3dq8uTJxWrNz89Xdna23QsAADgvi2EYhqOLKE19+vRR1apV9cYbb0g6O8oWGxurQ4cOadq0aVqzZo1SU1MlnR1RS0xMVHp6uipUqCBJGjBggFxcXLRy5UplZmaqXr16yszMVEBAgG0fXbp0UatWrfT8889r4MCBys3N1bp162zrBw8erHXr1unkyZMXrLNJkyYaNWqUxowZI+nsiFrz5s314YcfXnCbqVOnKjY2ttjywHHv8YG3AMo0PvAW5Ul2drZ8fX2VlZUlHx+fEts61YiaJEVHR+uDDz5Qfn6+JGn58uUaOHCgXFzOf6g33XSTLaRJkr+/v44ePSpJ+u6773TmzBndeOONtufbvLy8tGXLFqWnp0uS0tLS1KpVK7s+//k+NzdXEydOVKNGjeTn5ycvLy/t3bu32Ihay5YtSzy2mJgYZWVl2V6HDh26hDMCAADKKqebTNCrVy8ZhqH169crMjJSSUlJmjt37gXbV6pUye69xWKxPeOWm5urChUq6Ntvv7ULc5Iua1LCxIkTlZCQoFmzZqlBgwZyd3fX3XffrYKCArt2np6eJfZjtVpltVoveb8AAKBsc7qg5ubmpn79+mn58uU6cOCAQkNDFRERcUV9NW/eXGfOnNHRo0fVrl2787YJDQ1VSkqK3bJ/vk9OTtawYcPUt29fSWcDYEZGxhXVBAAAyg+nC2rS2dufd9xxh/bs2aPBgwdfcT833nijoqOjNWTIEM2ePVvNmzfXsWPHtGnTJoWFhalnz5565JFH1L59e82ZM0e9evXS559/rk8++UQWi8XWT0hIiFavXq1evXrJYrFo8uTJxWamAgAA/JPTPaMmSZ06dVKVKlWUlpame++996r6evPNNzVkyBBNmDBBoaGh6tOnj1JSUhQUFCRJatu2rRYuXKg5c+YoPDxcGzZs0Pjx4+Xm5mbrY86cOapcubJuueUW9erVS1FRUVc8ygcAAMoPp5v1aQb333+/9u3bp6SkpGu6n3OzRpj1CaCsY9YnypPLmfXplLc+r7dZs2apa9eu8vT01CeffKKlS5dqwYIFji4LAACUcQS1UvD1119r5syZysnJUb169TRv3jyNHDnS0WUBAIAyjlufZdjlDJ0CAABzKNcfeAsAAOAsCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmVdHRBeDqNZnyqVysHo4uAwBwmTLiezq6BJgcI2oAAAAmRVADAAAwKYIaAACASRHUSpHFYtGaNWscXQYAAHASTCYoRUeOHFHlypUdXQYAAHASBLVSUlBQoFq1ajm6DAAA4ES49XmFOnbsqDFjxmjcuHGqVq2aoqKiit36/OWXXzRo0CBVqVJFnp6eatmypbZv325b/9FHHykiIkJubm6qV6+eYmNj9ddffzngaAAAgBkxonYVli5dqoceekjJycmSpIYNG9rW5ebmqkOHDqpdu7bWrl2rWrVqaceOHSoqKpIkJSUlaciQIZo3b57atWun9PR0PfDAA5KkKVOmnHd/+fn5ys/Pt73Pzs6+VocGAABMgKB2FUJCQjRz5szzrluxYoWOHTumlJQUValSRZLUoEED2/rY2Fg9+eSTGjp0qCSpXr16mj59up544okLBrW4uDjFxsaW8lEAAACzIqhdhRYtWlxwXWpqqpo3b24Laf+0a9cuJScna8aMGbZlZ86c0enTp5WXlycPj+LfNBATE6PHHnvM9j47O1uBgYFXcQQAAMDMCGpXwdPT84Lr3N3dS9w2NzdXsbGx6tevX7F1bm5u593GarXKarVeXpEAAKDMIqhdI2FhYfrPf/6jEydOnHdULSIiQmlpaXa3QwEAAP6OWZ/XyKBBg1SrVi316dNHycnJ+umnn/TBBx9o27ZtkqRnn31Wy5YtU2xsrPbs2aO9e/dq5cqVeuaZZxxcOQAAMAuC2jXi6uqqzz77TDVq1NDtt9+upk2bKj4+XhUqVJAkRUVFad26dfrss88UGRmpm2++WXPnzlVwcLCDKwcAAGZhMQzDcHQRuDLZ2dny9fVV4Lj35GItPvkAAGBuGfE9HV0CHODc3++srCz5+PiU2JYRNQAAAJMiqAEAAJgUsz6dwPexURcdOgUAAGUPI2oAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwqYqOLgBXr8mUT+Vi9XB0GQAAOJWM+J6OLoERNQAAALMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASZkiqK1atUpNmzaVu7u7qlatqi5duujUqVMqKirStGnTdMMNN8hqtapZs2basGGDbbtOnTppzJgxdn0dO3ZMrq6u2rRp00X3u2DBAoWEhMjNzU01a9bU3XffbVu3YcMG3XrrrfLz81PVqlV1xx13KD093bY+MTFRFotFJ0+etC1LTU2VxWJRRkaGbVlycrI6duwoDw8PVa5cWVFRUfrzzz8lSUVFRYqLi1PdunXl7u6u8PBwrVq16nJPHwAAcFIOD2pHjhzRoEGDNHz4cO3du1eJiYnq16+fDMPQSy+9pNmzZ2vWrFnavXu3oqKidOedd2r//v2SpJEjR2rFihXKz8+39ff222+rdu3a6tSpU4n7/eabbzR27FhNmzZNaWlp2rBhg9q3b29bf+rUKT322GP65ptvtGnTJrm4uKhv374qKiq65GNLTU1V586d1bhxY23btk1bt25Vr169dObMGUlSXFycli1bpoULF2rPnj0aP368Bg8erC1btpy3v/z8fGVnZ9u9AACA87IYhmE4soAdO3aoRYsWysjIUHBwsN262rVra/To0Xrqqadsy1q1aqXIyEi98sorOn36tAICArRw4UINGDBAkhQeHq5+/fppypQpJe539erV+te//qVffvlF3t7eF63zjz/+UPXq1fXdd9+pSZMmSkxM1G233aY///xTfn5+ks4Gs+bNm+vgwYOqU6eO7r33XmVmZmrr1q3F+svPz1eVKlW0ceNGtWnTxrZ85MiRysvL04oVK4ptM3XqVMXGxhZbHjjuPT7wFgCAUnatPvA2Oztbvr6+ysrKko+PT4ltHT6iFh4ers6dO6tp06bq37+/Fi1apD///FPZ2dk6fPiw2rZta9e+bdu22rt3ryTJzc1N9913nxYvXizpbOj7/vvvNWzYsIvut2vXrgoODla9evV03333afny5crLy7Ot379/vwYNGqR69erJx8dHderUkSRlZmZe8rGdG1E7nwMHDigvL09du3aVl5eX7bVs2TK7W6x/FxMTo6ysLNvr0KFDl1wLAAAoexz+FVIVKlRQQkKCvvzyS3322WeaP3++nn76aSUkJFzS9iNHjlSzZs30yy+/6M0331SnTp2Kjcydj7e3t3bs2KHExER99tlnevbZZzV16lSlpKTIz89PvXr1UnBwsBYtWqSAgAAVFRWpSZMmKigokCS5uJzNuH8fkCwsLLTbh7u7+wX3n5ubK0lav369ateubbfOarWedxur1XrBdQAAwPk4fERNkiwWi9q2bavY2Fjt3LnTNhkgICBAycnJdm2Tk5PVuHFj2/umTZuqZcuWWrRokVasWKHhw4df8n4rVqyoLl26aObMmdq9e7cyMjL0+eef6/jx40pLS9Mzzzyjzp07q1GjRrYJAOdUr15d0tln7M5JTU21axMWFnbBSQ2NGzeW1WpVZmamGjRoYPcKDAy85GMAAADOy+Ejatu3b9emTZvUrVs31ahRQ9u3b9exY8fUqFEjPf7445oyZYrq16+vZs2a6c0331RqaqqWL19u18fIkSM1ZswYeXp6qm/fvpe033Xr1umnn35S+/btVblyZX388ccqKipSaGioKleurKpVq+r111+Xv7+/MjMz9eSTT9ptfy5QTZ06VTNmzNCPP/6o2bNn27WJiYlR06ZN9fDDD2vUqFFydXXV5s2b1b9/f1WrVk0TJ07U+PHjVVRUpFtvvVVZWVlKTk6Wj4+Phg4denUnFgAAlHkOD2o+Pj764osv9OKLLyo7O1vBwcGaPXu2evTooaioKGVlZWnChAk6evSoGjdurLVr1yokJMSuj0GDBmncuHEaNGiQ3NzcLmm/fn5+Wr16taZOnarTp08rJCRE77zzjm666SZJ0sqVKzV27Fg1adJEoaGhmjdvnjp27GjbvlKlSnrnnXf00EMPKSwsTJGRkXruuefUv39/W5sbb7xRn332mZ566im1atVK7u7uat26tQYNGiRJmj59uqpXr664uDj99NNP8vPzU0REhN3kCQAAUH45fNZnacjIyFD9+vWVkpKiiIgIR5dz3ZybNcKsTwAASp8ZZn06fETtahQWFur48eN65plndPPNN5erkAYAAJyfKSYTXKnk5GT5+/srJSVFCxcutFuXlJRk97EX/3wBAACYnVPc+jyf//3vf/r1118vuL5BgwbXsZpr43KGTgEAgDmUm1ufJXF3d3eKMAYAAMqvMn3rEwAAwJkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApJz24znKg3MfgZedne3gSgAAwKU693f7Uj7KlqBWhh0/flySFBgY6OBKAADA5crJyZGvr2+JbQhqZViVKlUkSZmZmRf9RTur7OxsBQYG6tChQ+X22xk4B5wDiXMgcQ4kzoFUNs6BYRjKyclRQEDARdsS1MowF5ezjxj6+vqa9mK8Xnx8fDgHnAPOgTgHEudA4hxI5j8HlzrAwmQCAAAAkyKoAQAAmBRBrQyzWq2aMmWKrFaro0txGM4B50DiHEicA4lzIHEOJOc7BxbjUuaGAgAA4LpjRA0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUyrBXXnlFderUkZubm1q3bq2vv/7a0SVdM3FxcYqMjJS3t7dq1KihPn36KC0tza5Nx44dZbFY7F6jRo1yUMWlb+rUqcWOr2HDhrb1p0+f1ujRo1W1alV5eXnprrvu0u+//+7AiktfnTp1ip0Di8Wi0aNHS3K+a+CLL75Qr169FBAQIIvFojVr1titNwxDzz77rPz9/eXu7q4uXbpo//79dm1OnDih6Oho+fj4yM/PTyNGjFBubu51PIqrU9I5KCws1KRJk9S0aVN5enoqICBAQ4YM0eHDh+36ON91Ex8ff52P5Mpd7DoYNmxYsePr3r27XRtnvg4knfffBYvFohdeeMHWpqxeBwS1Murdd9/VY489pilTpmjHjh0KDw9XVFSUjh496ujSroktW7Zo9OjR+uqrr5SQkKDCwkJ169ZNp06dsmt3//3368iRI7bXzJkzHVTxtXHTTTfZHd/WrVtt68aPH6///ve/ev/997VlyxYdPnxY/fr1c2C1pS8lJcXu+BMSEiRJ/fv3t7Vxpmvg1KlTCg8P1yuvvHLe9TNnztS8efO0cOFCbd++XZ6enoqKitLp06dtbaKjo7Vnzx4lJCRo3bp1+uKLL/TAAw9cr0O4aiWdg7y8PO3YsUOTJ0/Wjh07tHr1aqWlpenOO+8s1nbatGl218UjjzxyPcovFRe7DiSpe/fudsf3zjvv2K135utAkt2xHzlyRIsXL5bFYtFdd91l165MXgcGyqRWrVoZo0ePtr0/c+aMERAQYMTFxTmwquvn6NGjhiRjy5YttmUdOnQwHn30UccVdY1NmTLFCA8PP++6kydPGpUqVTLef/9927K9e/cakoxt27Zdpwqvv0cffdSoX7++UVRUZBiGc18DkowPP/zQ9r6oqMioVauW8cILL9iWnTx50rBarcY777xjGIZh/PDDD4YkIyUlxdbmk08+MSwWi/Hrr79et9pLyz/Pwfl8/fXXhiTj559/ti0LDg425s6de22Lu07Odw6GDh1q9O7d+4LblMfroHfv3kanTp3slpXV64ARtTKooKBA3377rbp06WJb5uLioi5dumjbtm0OrOz6ycrKkvT/v5j+nOXLl6tatWpq0qSJYmJilJeX54jyrpn9+/crICBA9erVU3R0tDIzMyVJ3377rQoLC+2uiYYNGyooKMhpr4mCggK9/fbbGj58uCwWi225s18D5xw8eFC//fab3e/c19dXrVu3tv3Ot23bJj8/P7Vs2dLWpkuXLnJxcdH27duve83XQ1ZWliwWi/z8/OyWx8fHq2rVqmrevLleeOEF/fXXX44p8BpJTExUjRo1FBoaqoceekjHjx+3rStv18Hvv/+u9evXa8SIEcXWlcXrgC9lL4P++OMPnTlzRjVr1rRbXrNmTe3bt89BVV0/RUVFGjdunNq2basmTZrYlt97770KDg5WQECAdu/erUmTJiktLU2rV692YLWlp3Xr1lqyZIlCQ0N15MgRxcbGql27dvr+++/122+/ydXVtdgfp5o1a+q3335zTMHX2Jo1a3Ty5EkNGzbMtszZr4G/O/d7Pd+/A+fW/fbbb6pRo4bd+ooVK6pKlSpOeV2cPn1akyZN0qBBg+y+jHvs2LGKiIhQlSpV9OWXXyomJkZHjhzRnDlzHFht6enevbv69eununXrKj09XU899ZR69Oihbdu2qUKFCuXuOli6dKm8vb2LPfpRVq8DghrKnNGjR+v777+3ez5Lkt3zFk2bNpW/v786d+6s9PR01a9f/3qXWep69Ohh+zksLEytW7dWcHCw3nvvPbm7uzuwMsd444031KNHDwUEBNiWOfs1gAsrLCzUgAEDZBiGXn31Vbt1jz32mO3nsLAwubq66sEHH1RcXJxTfM3QwIEDbT83bdpUYWFhql+/vhITE9W5c2cHVuYYixcvVnR0tNzc3OyWl9XrgFufZVC1atVUoUKFYjP6fv/9d9WqVctBVV0fY8aM0bp167R582bdcMMNJbZt3bq1JOnAgQPXo7Trzs/PTzfeeKMOHDigWrVqqaCgQCdPnrRr46zXxM8//6yNGzdq5MiRJbZz5mvg3O+1pH8HatWqVWyC0V9//aUTJ0441XVxLqT9/PPPSkhIsBtNO5/WrVvrr7/+UkZGxvUp8DqrV6+eqlWrZrvuy8t1IElJSUlKS0u76L8NUtm5DghqZZCrq6tatGihTZs22ZYVFRVp06ZNatOmjQMru3YMw9CYMWP04Ycf6vPPP1fdunUvuk1qaqokyd/f/xpX5xi5ublKT0+Xv7+/WrRooUqVKtldE2lpacrMzHTKa+LNN99UjRo11LNnzxLbOfM1ULduXdWqVcvud56dna3t27fbfudt2rTRyZMn9e2339rafP755yoqKrKF2LLuXEjbv3+/Nm7cqKpVq150m9TUVLm4uBS7HegsfvnlFx0/ftx23ZeH6+CcN954Qy1atFB4ePhF25aZ68DRsxlwZVauXGlYrVZjyZIlxg8//GA88MADhp+fn/Hbb785urRr4qGHHjJ8fX2NxMRE48iRI7ZXXl6eYRiGceDAAWPatGnGN998Yxw8eND46KOPjHr16hnt27d3cOWlZ8KECUZiYqJx8OBBIzk52ejSpYtRrVo14+jRo4ZhGMaoUaOMoKAg4/PPPze++eYbo02bNkabNm0cXHXpO3PmjBEUFGRMmjTJbrkzXgM5OTnGzp07jZ07dxqSjDlz5hg7d+60zWiMj483/Pz8jI8++sjYvXu30bt3b6Nu3brG//73P1sf3bt3N5o3b25s377d2Lp1qxESEmIMGjTIUYd02Uo6BwUFBcadd95p3HDDDUZqaqrdvw35+fmGYRjGl19+acydO9dITU010tPTjbffftuoXr26MWTIEAcf2aUr6Rzk5OQYEydONLZt22YcPHjQ2LhxoxEREWGEhIQYp0+ftvXhzNfBOVlZWYaHh4fx6quvFtu+LF8HBLUybP78+UZQUJDh6upqtGrVyvjqq68cXdI1I+m8rzfffNMwDMPIzMw02rdvb1SpUsWwWq1GgwYNjMcff9zIyspybOGl6J577jH8/f0NV1dXo3bt2sY999xjHDhwwLb+f//7n/Hwww8blStXNjw8PIy+ffsaR44ccWDF18ann35qSDLS0tLsljvjNbB58+bzXvdDhw41DOPsR3RMnjzZqFmzpmG1Wo3OnTsXOy/Hjx83Bg0aZHh5eRk+Pj7Gv/71LyMnJ8cBR3NlSjoHBw8evOC/DZs3bzYMwzC+/fZbo3Xr1oavr6/h5uZmNGrUyHj++eftQozZlXQO8vLyjG7duhnVq1c3KlWqZAQHBxv3339/sf+0O/N1cM5rr71muLu7GydPniy2fVm+DiyGYRjXdMgOAAAAV4Rn1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACY1P8DIN6oc82rTnIAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "japanese_ingredient_df = create_ingredient_df(japanese_df)\n", + "japanese_ingredient_df.head(10).plot.barh()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmoAAAGdCAYAAACirV9DAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABE8klEQVR4nO3de3hNZ/7//9cOsnNOhCDRSJBIqTiHalpVVIIaZIpqWgxtRyuj1KmmTnGYGBVt6ahWW4f5MKpUGUodKhph1FnrkBLSUFqGSoSRRLJ+f/jav+46RWj2SvJ8XNe+ruy17nWv97q7XfvVex22xTAMQwAAADAdJ0cXAAAAgJsjqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFLlHV0Aiq6goECnTp2Sp6enLBaLo8sBAACFYBiGLl68qICAADk53X7OjKBWgp06dUqBgYGOLgMAABTBiRMn9MADD9y2DUGtBPP09JR07T+0l5eXg6sBAACFkZWVpcDAQNv3+O0Q1Eqw66c7vby8CGoAAJQwhblsiZsJAAAATIqgBgAAYFIENQAAAJPiGjUAAMq4/Px85eXlObqMUqVcuXIqX778PT8+i6AGAEAZlp2drZMnT8owDEeXUuq4ubnJ399fzs7ORe6DoAYAQBmVn5+vkydPys3NTX5+fjw8/T4xDEO5ubk6e/asjh8/rtDQ0Ds+2PZWCGqlQP1xX8rJ6uboMoD7In1KJ0eXAJQZeXl5MgxDfn5+cnV1dXQ5pYqrq6sqVKigH374Qbm5uXJxcSlSP9xMAABAGcdM2u+jqLNodn3chzoAAADwOyCoAQAAmBTXqAEAADvBr68u1v0V97WpwcHBGjx4sAYPHlys+y0KZtQAAABMiqAGAABgUiUyqBUUFGjq1KkKCQmR1WpVjRo1NHnyZEnSyJEjVadOHbm5ualWrVoaM2aM7WnL6enpcnJy0s6dO+36e/vttxUUFKSCggJJ0nfffacOHTrIw8NDVatW1fPPP6///ve/tvatW7fWoEGDNGLECPn6+qpatWoaP368XZ8Wi0UffvihunXrJjc3N4WGhmrlypV2be60HwAAYO+DDz5QQECA7Tv7ui5duqhfv35KS0tTly5dVLVqVXl4eCgiIkIbNmy4ZX/p6emyWCzau3evbdmFCxdksViUlJRkW+ao7+wSGdRGjRqlKVOmaMyYMTp48KAWLVqkqlWrSpI8PT01b948HTx4UO+8847mzJmjt956S9K1c9Lt2rXT3Llz7fqbO3eu+vbtKycnJ124cEFt2rRR48aNtXPnTq1du1Y///yzevToYbfN/Pnz5e7uru3bt2vq1KmaMGGC1q9fb9cmPj5ePXr00P79+9WxY0fFxsbq/PnzklTo/fxaTk6OsrKy7F4AAJQl3bt317lz57Rp0ybbsvPnz2vt2rWKjY1Vdna2OnbsqI0bN2rPnj2Kjo5W586dlZGRUeR9FuU7+36xGCXsNyMuXrwoPz8/vfvuu3rhhRfu2H7atGlavHixbRZtyZIlGjBggE6fPi2r1ardu3erWbNmOnbsmIKDgzVp0iQlJyfryy+/tPVx8uRJBQYGKjU1VXXq1FHr1q2Vn5+v5ORkW5vmzZurTZs2mjJliqRrM2qjR4/WxIkTJUmXLl2Sh4eH1qxZo+jo6ELt57fGjx+v+Pj4G5YHDl7CA29RavDAW6D4XLlyRcePH1fNmjXtHshq9psJunbtqkqVKumjjz6SdG2WLT4+XidOnLjps8vq16+vAQMGKC4uTpL9zQTp6emqWbOm9uzZo0aNGkm6FswqVqyoTZs2qXXr1kX6zpZuPb5ZWVny9vZWZmamvLy8bnusJW5G7dChQ8rJyVHbtm1vuv6TTz5RZGSkqlWrJg8PD40ePdouRXft2lXlypXT8uXLJUnz5s3TE088oeDgYEnSvn37tGnTJnl4eNheDz74oCQpLS3N1k+DBg3s9uvv768zZ87YLft1G3d3d3l5ednaFHY/vzZq1ChlZmbaXidOnLjjeAEAUNrExsZq2bJlysnJkSQtXLhQzzzzjJycnJSdna1hw4apbt268vHxkYeHhw4dOnRPM2pF+c6+X0rc4zlu9xMX27ZtU2xsrOLj4xUVFSVvb28tXrxYiYmJtjbOzs7q3bu35s6dq5iYGC1atEjvvPOObX12drY6d+6sv//97zf07+/vb/u7QoUKdussFssN58tv16aw+/k1q9Uqq9V6q8MHAKBM6Ny5swzD0OrVqxUREaHk5GTbZU7Dhg3T+vXrNW3aNIWEhMjV1VVPP/20cnNzb9rX9Rm4X59gvH5t+3VF+c6+X0pcUAsNDZWrq6s2btx4w6nPrVu3KigoSG+88YZt2Q8//HBDHy+88ILq16+vWbNm6erVq4qJibGta9KkiZYtW6bg4GCVL//7DU9x7QcAgNLGxcVFMTExWrhwoY4ePaqwsDA1adJEkpSSkqK+ffuqW7dukq6FrPT09Fv25efnJ0k6ffq0GjduLEl2NxZIjv3OLnGnPl1cXDRy5EiNGDFCCxYsUFpamv7zn//oo48+UmhoqDIyMrR48WKlpaVpxowZtlOcv1a3bl09/PDDGjlypHr16mU3Szdw4ECdP39evXr10o4dO5SWlqYvv/xSf/rTn5Sfn3/fjqO49gMAQGkUGxur1atX6+OPP1ZsbKxteWhoqD777DPt3btX+/bt07PPPnvDGa9fc3V11cMPP6wpU6bo0KFD2rx5s0aPHm3XxpHf2SVyKmfMmDEqX768xo4dq1OnTsnf318DBgxQ//79NWTIEMXFxSknJ0edOnXSmDFjbnh0hiT1799fW7duVb9+/eyWBwQEKCUlRSNHjlT79u2Vk5OjoKAgRUdH35cfVy3u/QAAcLdKwk09bdq0ka+vr1JTU/Xss8/alk+fPl39+vXTI488osqVK2vkyJF3fErCxx9/rP79+6tp06YKCwvT1KlT1b59e9t6R35nl7i7Pu+XiRMn6tNPP9X+/fsdXUqRXb9rhLs+UZqUhC8IoLS41V2JuD/K5F2f9yo7O1vfffed3n33Xf3lL39xdDkAAAC3VOaCWlxcnJo2barWrVvfcNoTAADATMrsqc/S4G6mTgEA+C1Off6+OPUJAABQihHUAAAo4zi59vu4H+NKUAMAoIwqV66cJN3yqf24N5cvX5Z04y8V3Y0S+Rw1AABw78qXLy83NzedPXtWFSpU4Dme94lhGLp8+bLOnDkjHx8fWyAuCoIaAABllMVikb+/v44fP37Tn1zEvfHx8VG1atXuqQ+CGgAAZZizs7NCQ0M5/XmfVahQ4Z5m0q4jqAEAUMY5OTnxeA6T4mQ0AACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFL81mcpUH/cl3Kyujm6DOC+S5/SydElAIBDMaMGAABgUgQ1AAAAkyKoAQAAmBRB7T6yWCz6/PPPHV0GAAAoJbiZ4D46ffq0Klas6OgyAABAKUFQu09yc3NVrVo1R5cBAABKEU59FlHr1q0VFxenwYMHq3LlyoqKirrh1OfJkyfVq1cv+fr6yt3dXc2aNdP27dtt61esWKEmTZrIxcVFtWrVUnx8vK5eveqAowEAAGbEjNo9mD9/vl5++WWlpKRIkh588EHbuuzsbD3++OOqXr26Vq5cqWrVqmn37t0qKCiQJCUnJ6t3796aMWOGHnvsMaWlpemll16SJI0bN+6m+8vJyVFOTo7tfVZW1u91aAAAwAQIavcgNDRUU6dOvem6RYsW6ezZs9qxY4d8fX0lSSEhIbb18fHxev3119WnTx9JUq1atTRx4kSNGDHilkEtISFB8fHx9/koAACAWRHU7kHTpk1vuW7v3r1q3LixLaT91r59+5SSkqLJkyfbluXn5+vKlSu6fPmy3Nxu/KWBUaNG6bXXXrO9z8rKUmBg4D0cAQAAMDOC2j1wd3e/5TpXV9fbbpudna34+HjFxMTcsM7FxeWm21itVlmt1rsrEgAAlFgEtd9JgwYN9OGHH+r8+fM3nVVr0qSJUlNT7U6HAgAA/Bp3ff5OevXqpWrVqqlr165KSUnRsWPHtGzZMm3btk2SNHbsWC1YsEDx8fE6cOCADh06pMWLF2v06NEOrhwAAJgFQe134uzsrHXr1qlKlSrq2LGjwsPDNWXKFJUrV06SFBUVpVWrVmndunWKiIjQww8/rLfeektBQUEOrhwAAJiFxTAMw9FFoGiysrLk7e2twMFL5GS98eYDoKRLn9LJ0SUAwH13/fs7MzNTXl5et23LjBoAAIBJEdQAAABMirs+S4Hv4qPuOHUKAABKHmbUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFLlHV0A7l39cV/Kyerm6DIAU0if0snRJQDAfcOMGgAAgEkR1AAAAEyKoAYAAGBSZSqojR8/Xo0aNXJ0GQAAAIVSpoLasGHDtHHjRkeXAQAAUChl6q5PDw8PeXh4OLqMQsnNzZWzs7OjywAAAA5UqmbUPvjgAwUEBKigoMBueZcuXdSvX78bTn327dtXXbt21bRp0+Tv769KlSpp4MCBysvLs7XJycnRsGHDVL16dbm7u6tFixZKSkqy63/OnDkKDAyUm5ubunXrpunTp8vHx8e2Pi0tTV26dFHVqlXl4eGhiIgIbdiwwa6P4OBgTZw4Ub1795aXl5deeuml+zYuAACgZCpVQa179+46d+6cNm3aZFt2/vx5rV27VrGxsTfdZtOmTUpLS9OmTZs0f/58zZs3T/PmzbOtj4uL07Zt27R48WLt379f3bt3V3R0tI4cOSJJSklJ0YABA/Tqq69q7969evLJJzV58mS7fWRnZ6tjx47auHGj9uzZo+joaHXu3FkZGRl27aZNm6aGDRtqz549GjNmzA215uTkKCsry+4FAABKL4thGIaji7ifunbtqkqVKumjjz6SdG2WLT4+XidOnNCECRP0+eefa+/evZKuzaglJSUpLS1N5cqVkyT16NFDTk5OWrx4sTIyMlSrVi1lZGQoICDAto927dqpefPm+tvf/qZnnnlG2dnZWrVqlW39c889p1WrVunChQu3rLN+/foaMGCA4uLiJF2bUWvcuLGWL19+y23Gjx+v+Pj4G5YHDl7CA2+B/4cH3gIwu6ysLHl7eyszM1NeXl63bVuqZtQkKTY2VsuWLVNOTo4kaeHChXrmmWfk5HTzQ33ooYdsIU2S/P39debMGUnSt99+q/z8fNWpU8d2fZuHh4c2b96stLQ0SVJqaqqaN29u1+dv32dnZ2vYsGGqW7eufHx85OHhoUOHDt0wo9asWbPbHtuoUaOUmZlpe504caIQIwIAAEqqUnczQefOnWUYhlavXq2IiAglJyfrrbfeumX7ChUq2L23WCy2a9yys7NVrlw57dq1yy7MSbqrmxKGDRum9evXa9q0aQoJCZGrq6uefvpp5ebm2rVzd3e/bT9Wq1VWq7XQ+wUAACVbqQtqLi4uiomJ0cKFC3X06FGFhYWpSZMmReqrcePGys/P15kzZ/TYY4/dtE1YWJh27Nhht+y371NSUtS3b19169ZN0rUAmJ6eXqSaAABA2VHqgpp07fTnU089pQMHDui5554rcj916tRRbGysevfurcTERDVu3Fhnz57Vxo0b1aBBA3Xq1El/+ctf1KpVK02fPl2dO3fWV199pTVr1shisdj6CQ0N1WeffabOnTvLYrFozJgxN9yZCgAA8Ful7ho1SWrTpo18fX2VmpqqZ5999p76mjt3rnr37q2hQ4cqLCxMXbt21Y4dO1SjRg1JUmRkpGbPnq3p06erYcOGWrt2rYYMGSIXFxdbH9OnT1fFihX1yCOPqHPnzoqKiiryLB8AACg7St1dn2bw4osv6vDhw0pOTv5d93P9rhHu+gT+f9z1CcDs7uauz1J56rO4TZs2TU8++aTc3d21Zs0azZ8/X7NmzXJ0WQAAoIQjqN0H33zzjaZOnaqLFy+qVq1amjFjhl544QVHlwUAAEo4Tn2WYHczdQoAAMyhTD/wFgAAoLQgqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJhUeUcXgHtXf9yXcrK6OboMAMUsfUonR5cA4HfGjBoAAIBJEdQAAABMiqAGAABgUgQ1B5k3b558fHwcXQYAADAxgtqv9O3bV127dnV0GQAAAJIIar+L3NxcR5cAAABKgTIZ1JYuXarw8HC5urqqUqVKateunYYPH6758+drxYoVslgsslgsSkpKkiSNHDlSderUkZubm2rVqqUxY8YoLy/P1t/48ePVqFEjffjhh6pZs6ZcXFwkSRcuXNCf//xnVa1aVS4uLqpfv75WrVplV8uXX36punXrysPDQ9HR0Tp9+nSxjQMAADC3MvcctdOnT6tXr16aOnWqunXrposXLyo5OVm9e/dWRkaGsrKyNHfuXEmSr6+vJMnT01Pz5s1TQECAvv32W7344ovy9PTUiBEjbP0ePXpUy5Yt02effaZy5cqpoKBAHTp00MWLF/V///d/ql27tg4ePKhy5crZtrl8+bKmTZumf/7zn3JyctJzzz2nYcOGaeHChTetPScnRzk5Obb3WVlZv8cQAQAAkyiTQe3q1auKiYlRUFCQJCk8PFyS5OrqqpycHFWrVs1um9GjR9v+Dg4O1rBhw7R48WK7oJabm6sFCxbIz89PkrRu3Tp98803OnTokOrUqSNJqlWrll2/eXl5mj17tmrXri1JiouL04QJE25Ze0JCguLj44t66AAAoIQpc6c+GzZsqLZt2yo8PFzdu3fXnDlz9Msvv9x2m08++USRkZGqVq2aPDw8NHr0aGVkZNi1CQoKsoU0Sdq7d68eeOABW0i7GTc3N1tIkyR/f3+dOXPmlu1HjRqlzMxM2+vEiRN3OlwAAFCClbmgVq5cOa1fv15r1qxRvXr1NHPmTIWFhen48eM3bb9t2zbFxsaqY8eOWrVqlfbs2aM33njjhhsG3N3d7d67urresZYKFSrYvbdYLDIM45btrVarvLy87F4AAKD0KnOnPqVrgSgyMlKRkZEaO3asgoKCtHz5cjk7Oys/P9+u7datWxUUFKQ33njDtuyHH3644z4aNGigkydP6vvvv7/trBoAAMCtlLmgtn37dm3cuFHt27dXlSpVtH37dp09e1Z169bVlStX9OWXXyo1NVWVKlWSt7e3QkNDlZGRocWLFysiIkKrV6/W8uXL77ifxx9/XK1atdIf//hHTZ8+XSEhITp8+LAsFouio6OL4UgBAEBJV+ZOfXp5eenrr79Wx44dVadOHY0ePVqJiYnq0KGDXnzxRYWFhalZs2by8/NTSkqK/vCHP2jIkCGKi4tTo0aNtHXrVo0ZM6ZQ+1q2bJkiIiLUq1cv1atXTyNGjLhhxg4AAOBWLMbtLoqCqWVlZcnb21uBg5fIyerm6HIAFLP0KZ0cXQKAIrj+/Z2ZmXnH683L3IwaAABASUFQAwAAMKkydzNBafRdfBSP6gAAoBRiRg0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmVd7RBeDe1R/3pZysbo4uA4ADpU/p5OgSAPwOmFEDAAAwKYIaAACASRHUAAAATKrMBLXx48erUaNGt23Tt29fde3atVjqkaTWrVtr8ODBtvfBwcF6++23i23/AADA3ErczQR9+/bVhQsX9Pnnnzu6lHv22WefqUKFCo4uAwAAmFSJC2qlia+vr6NLAAAAJlboU58ffPCBAgICVFBQYLe8S5cu6tevnyRpxYoVatKkiVxcXFSrVi3Fx8fr6tWrtraHDx/Wo48+KhcXF9WrV08bNmyQxWKxmx07ceKEevToIR8fH/n6+qpLly5KT0+XdO305fz587VixQpZLBZZLBYlJSVJkkaOHKk6derIzc1NtWrV0pgxY5SXl3fDcbz//vsKDAyUm5ubevTooczMzFsec0FBgRISElSzZk25urqqYcOGWrp0aWGHTJs3b1bz5s1ltVrl7++v119/3W48fnvqEwAA4NcKHdS6d++uc+fOadOmTbZl58+f19q1axUbG6vk5GT17t1br776qg4ePKj3339f8+bN0+TJkyVJ+fn56tq1q9zc3LR9+3Z98MEHeuONN+z2kZeXp6ioKHl6eio5OVkpKSny8PBQdHS0cnNzNWzYMPXo0UPR0dE6ffq0Tp8+rUceeUSS5OnpqXnz5ungwYN65513NGfOHL311lt2/R89elRLlizRv//9b61du1Z79uzRK6+8cstjTkhI0IIFCzR79mwdOHBAQ4YM0XPPPafNmzffcbx+/PFHdezYUREREdq3b5/ee+89ffTRR5o0aVJhh/wGOTk5ysrKsnsBAIDSq9CnPitWrKgOHTpo0aJFatu2rSRp6dKlqly5sp544gm1b99er7/+uvr06SNJqlWrliZOnKgRI0Zo3LhxWr9+vdLS0pSUlKRq1apJkiZPnqwnn3zSto9PPvlEBQUF+vDDD2WxWCRJc+fOlY+Pj5KSktS+fXu5uroqJyfH1sd1o0ePtv0dHBysYcOGafHixRoxYoRt+ZUrV7RgwQJVr15dkjRz5kx16tRJiYmJN/SXk5Ojv/3tb9qwYYNatmxpO6YtW7bo/fff1+OPP37b8Zo1a5YCAwP17rvvymKx6MEHH9SpU6c0cuRIjR07Vk5Od38fR0JCguLj4+96OwAAUDLd1TVqsbGxevHFFzVr1ixZrVYtXLhQzzzzjJycnLRv3z6lpKTYZtCka7NoV65c0eXLl5WamqrAwEC7QNS8eXO7/vft26ejR4/K09PTbvmVK1eUlpZ229o++eQTzZgxQ2lpacrOztbVq1fl5eVl16ZGjRq2kCZJLVu2VEFBgVJTU28IakePHtXly5ftgqQk5ebmqnHjxretRZIOHTqkli1b2gKnJEVGRio7O1snT55UjRo17tjHb40aNUqvvfaa7X1WVpYCAwPvuh8AAFAy3FVQ69y5swzD0OrVqxUREaHk5GTb6cXs7GzFx8crJibmhu1cXFwK1X92draaNm2qhQsX3rDOz8/vlttt27ZNsbGxio+PV1RUlLy9vbV48WIlJiYW8shuXoskrV692i7cSZLVai1yv/fCarU6bN8AAKD43VVQc3FxUUxMjBYuXKijR48qLCxMTZo0kSQ1adJEqampCgkJuem2YWFhOnHihH7++WdVrVpVkrRjxw67Nk2aNNEnn3yiKlWq3DAbdp2zs7Py8/Ptlm3dulVBQUF217z98MMPN2ybkZGhU6dOKSAgQJL0n//8R05OTgoLC7uhbb169WS1WpWRkXHH05w3U7duXS1btkyGYdhm1VJSUuTp6akHHnjgrvsDAABlz11fKBUbG6vVq1fr448/VmxsrG352LFjtWDBAsXHx+vAgQM6dOiQFi9ebLt27Mknn1Tt2rXVp08f7d+/XykpKbZ114NMbGysKleurC5duig5OVnHjx9XUlKSBg0apJMnT0q6dv3Z/v37lZqaqv/+97/Ky8tTaGioMjIytHjxYqWlpWnGjBlavnz5DbW7uLioT58+2rdvn5KTkzVo0CD16NHjhtOe0rWbE4YNG6YhQ4Zo/vz5SktL0+7duzVz5kzNnz//juP0yiuv6MSJE/rLX/6iw4cPa8WKFRo3bpxee+21Il2fBgAAyp67Tgxt2rSRr6+vUlNT9eyzz9qWR0VFadWqVVq3bp0iIiL08MMP66233lJQUJAkqVy5cvr888+VnZ2tiIgIvfDCC7YZsOunRt3c3PT111+rRo0aiomJUd26ddW/f39duXLFNsP24osvKiwsTM2aNZOfn59SUlL0hz/8QUOGDFFcXJwaNWqkrVu3asyYMTfUHhISopiYGHXs2FHt27dXgwYNNGvWrFse68SJEzVmzBglJCSobt26io6O1urVq1WzZs07jlP16tX1xRdf6JtvvlHDhg01YMAA9e/f3+6mBwAAgNuxGIZhOGrnKSkpevTRR3X06FHVrl3bUWWUWFlZWfL29lbg4CVysro5uhwADpQ+pZOjSwBQSNe/vzMzM295qdd1xfrLBMuXL5eHh4dCQ0N19OhRvfrqq4qMjCSkAQAA3ESxXix18eJFDRw4UA8++KD69u2riIgIrVixojhLuG8GDBggDw+Pm74GDBjg6PIAAEAp4NBTnyXZmTNnbvnLAF5eXqpSpcrvXsPdTJ0CAABzMO2pz9KkSpUqxRLGAABA2cVzIgAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyqvKMLwL2rP+5LOVndHF0GgBIofUonR5cA4DaYUQMAADApghoAAIBJEdQAAABMiqDmYMHBwXr77bdt7y0Wiz7//HOH1QMAAMyDmwkcbMeOHXJ3d3d0GQAAwIQIag7m5+fn6BIAAIBJFfupz6VLlyo8PFyurq6qVKmS2rVrp0uXLkmSPvzwQ9WtW1cuLi568MEHNWvWLNt2ubm5iouLk7+/v1xcXBQUFKSEhATb+unTpys8PFzu7u4KDAzUK6+8ouzsbNv6efPmycfHR6tWrVJYWJjc3Nz09NNP6/Lly5o/f76Cg4NVsWJFDRo0SPn5+bbtcnJyNGzYMFWvXl3u7u5q0aKFkpKSCn28y5Yt00MPPSSr1arg4GAlJibarf/tqU8AAIDrinVG7fTp0+rVq5emTp2qbt266eLFi0pOTpZhGFq4cKHGjh2rd999V40bN9aePXv04osvyt3dXX369NGMGTO0cuVKLVmyRDVq1NCJEyd04sQJW99OTk6aMWOGatasqWPHjumVV17RiBEj7MLe5cuXNWPGDC1evFgXL15UTEyMunXrJh8fH33xxRc6duyY/vjHPyoyMlI9e/aUJMXFxengwYNavHixAgICtHz5ckVHR+vbb79VaGjobY93165d6tGjh8aPH6+ePXtq69ateuWVV1SpUiX17dv3rscvJydHOTk5tvdZWVl33QcAACg5ij2oXb16VTExMQoKCpIkhYeHS5LGjRunxMRExcTESJJq1qypgwcP6v3331efPn2UkZGh0NBQPfroo7JYLLbtrxs8eLDt7+DgYE2aNEkDBgywC2p5eXl67733VLt2bUnS008/rX/+85/6+eef5eHhoXr16umJJ57Qpk2b1LNnT2VkZGju3LnKyMhQQECAJGnYsGFau3at5s6dq7/97W+3Pd7p06erbdu2GjNmjCSpTp06OnjwoN58880iBbWEhATFx8ff9XYAAKBkKtZTnw0bNlTbtm0VHh6u7t27a86cOfrll1906dIlpaWlqX///vLw8LC9Jk2apLS0NElS3759tXfvXoWFhWnQoEFat26dXd8bNmxQ27ZtVb16dXl6eur555/XuXPndPnyZVsbNzc3W0iTpKpVqyo4OFgeHh52y86cOSNJ+vbbb5Wfn686derY1bV582ZbXbdz6NAhRUZG2i2LjIzUkSNH7E6vFtaoUaOUmZlpe/16RhEAAJQ+xTqjVq5cOa1fv15bt27VunXrNHPmTL3xxhv697//LUmaM2eOWrRoccM2ktSkSRMdP35ca9as0YYNG9SjRw+1a9dOS5cuVXp6up566im9/PLLmjx5snx9fbVlyxb1799fubm5cnO79vNKFSpUsOvbYrHcdFlBQYEkKTs7W+XKldOuXbtsdVz363BXXKxWq6xWa7HvFwAAOEax3/VpsVgUGRmpyMhIjR07VkFBQUpJSVFAQICOHTum2NjYW27r5eWlnj17qmfPnnr66acVHR2t8+fPa9euXSooKFBiYqKcnK5NEi5ZsuSea23cuLHy8/N15swZPfbYY3e9fd26dZWSkmK3LCUlRXXq1Lkh+AEAAPxWsQa17du3a+PGjWrfvr2qVKmi7du36+zZs6pbt67i4+M1aNAgeXt7Kzo6Wjk5Odq5c6d++eUXvfbaa5o+fbr8/f3VuHFjOTk56dNPP1W1atXk4+OjkJAQ5eXlaebMmercubNSUlI0e/bse663Tp06io2NVe/evZWYmKjGjRvr7Nmz2rhxoxo0aKBOnW7/Y8ZDhw5VRESEJk6cqJ49e2rbtm1699137a6bAwAAuJViDWpeXl76+uuv9fbbbysrK0tBQUFKTExUhw4dJF27huzNN9/U8OHD5e7urvDwcNtNAp6enpo6daqOHDmicuXKKSIiQl988YWcnJzUsGFDTZ8+XX//+981atQotWrVSgkJCerdu/c91zx37lxNmjRJQ4cO1Y8//qjKlSvr4Ycf1lNPPXXHbZs0aaIlS5Zo7Nixmjhxovz9/TVhwoQi3UgAAADKHothGIaji0DRZGVlydvbW4GDl8jJ6ubocgCUQOlTbn9mAMD9d/37OzMzU15eXrdty299AgAAmBRB7R506NDB7rEdv37d6RlrAAAAd8Kpz3vw448/6n//+99N1/n6+srX1/d33f/dTJ0CAABzuJvvb36U/R5Ur17d0SUAAIBSjFOfAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJlXe0QXg3tUf96WcrG6OLgMATC99SidHlwDcFWbUAAAATIqgBgAAYFIENQAAAJMiqBXSvHnz5OPjY3s/fvx4NWrUyPa+b9++6tq1a7HXBQAASi9uJrhP3nnnHRmG4egyAABAKUJQu0+8vb0dXQIAAChlSt2pz6VLlyo8PFyurq6qVKmS2rVrp0uXLkmSPv74Yz300EOyWq3y9/dXXFycbbvp06crPDxc7u7uCgwM1CuvvKLs7OxC7/e3pz5zcnI0aNAgValSRS4uLnr00Ue1Y8cO2/qkpCRZLBZt3LhRzZo1k5ubmx555BGlpqbe+yAAAIBSoVQFtdOnT6tXr17q16+fDh06pKSkJMXExMgwDL333nsaOHCgXnrpJX377bdauXKlQkJCbNs6OTlpxowZOnDggObPn6+vvvpKI0aMKHItI0aM0LJlyzR//nzt3r1bISEhioqK0vnz5+3avfHGG0pMTNTOnTtVvnx59evX75Z95uTkKCsry+4FAABKr1J16vP06dO6evWqYmJiFBQUJEkKDw+XJE2aNElDhw7Vq6++amsfERFh+3vw4MG2v4ODgzVp0iQNGDBAs2bNuus6Ll26pPfee0/z5s1Thw4dJElz5szR+vXr9dFHH2n48OG2tpMnT9bjjz8uSXr99dfVqVMnXblyRS4uLjf0m5CQoPj4+LuuBwAAlEylakatYcOGatu2rcLDw9W9e3fNmTNHv/zyi86cOaNTp06pbdu2t9x2w4YNatu2rapXry5PT089//zzOnfunC5fvnzXdaSlpSkvL0+RkZG2ZRUqVFDz5s116NAhu7YNGjSw/e3v7y9JOnPmzE37HTVqlDIzM22vEydO3HVtAACg5ChVQa1cuXJav3691qxZo3r16mnmzJkKCwvTzz//fNvt0tPT9dRTT6lBgwZatmyZdu3apX/84x+SpNzc3N+15goVKtj+tlgskqSCgoKbtrVarfLy8rJ7AQCA0qtUBTXpWtiJjIxUfHy89uzZI2dnZ61fv17BwcHauHHjTbfZtWuXCgoKlJiYqIcfflh16tTRqVOnilxD7dq15ezsrJSUFNuyvLw87dixQ/Xq1StyvwAAoGwpVdeobd++XRs3blT79u1VpUoVbd++XWfPnlXdunU1fvx4DRgwQFWqVFGHDh108eJFpaSk6C9/+YtCQkKUl5enmTNnqnPnzkpJSdHs2bOLXIe7u7tefvllDR8+XL6+vqpRo4amTp2qy5cvq3///vfxiAEAQGlWqoKal5eXvv76a7399tvKyspSUFCQEhMTbRf0X7lyRW+99ZaGDRumypUr6+mnn5Z07dq26dOn6+9//7tGjRqlVq1aKSEhQb179y5yLVOmTFFBQYGef/55Xbx4Uc2aNdOXX36pihUr3pdjBQAApZ/F4HH6JVZWVpa8vb0VOHiJnKxuji4HAEwvfUonR5cA2L6/MzMz73i9eam7Rg0AAKC0IKgBAACYVKm6Rq2s+i4+ikd1AABQCjGjBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMq7+gCcO/qj/tSTlY3R5cBALiD9CmdHF0CShhm1AAAAEyKoAYAAGBSBDUAAACTIqj9zsaPH69GjRrZ3vft21ddu3Z1WD0AAKDk4GaCYvbOO+/IMAxHlwEAAEoAgtrvxDAM5efn37Dc29vbAdUAAICSiFOf/8/FixcVGxsrd3d3+fv766233lLr1q01ePBgSdI///lPNWvWTJ6enqpWrZqeffZZnTlzxrZ9UlKSLBaL1qxZo6ZNm8pqtWrLli037Oe3pz4LCgo0depUhYSEyGq1qkaNGpo8efLvfbgAAKAEIKj9P6+99ppSUlK0cuVKrV+/XsnJydq9e7dtfV5eniZOnKh9+/bp888/V3p6uvr27XtDP6+//rqmTJmiQ4cOqUGDBnfc76hRozRlyhSNGTNGBw8e1KJFi1S1atWbts3JyVFWVpbdCwAAlF6c+tS12bT58+dr0aJFatu2rSRp7ty5CggIsLXp16+f7e9atWppxowZioiIUHZ2tjw8PGzrJkyYoCeffLLQ+33nnXf07rvvqk+fPpKk2rVr69FHH71p+4SEBMXHx9/18QEAgJKJGTVJx44dU15enpo3b25b5u3trbCwMNv7Xbt2qXPnzqpRo4Y8PT31+OOPS5IyMjLs+mrWrFmh93vo0CHl5OTYwuGdjBo1SpmZmbbXiRMnCr0vAABQ8jCjVgiXLl1SVFSUoqKitHDhQvn5+SkjI0NRUVHKzc21a+vu7l7ofl1dXe+qDqvVKqvVelfbAACAkosZNV07lVmhQgXt2LHDtiwzM1Pff/+9JOnw4cM6d+6cpkyZoscee0wPPvig3Y0ERRUaGipXV1dt3LjxnvsCAAClDzNqkjw9PdWnTx8NHz5cvr6+qlKlisaNGycnJydZLBbVqFFDzs7OmjlzpgYMGKDvvvtOEydOvOf9uri4aOTIkRoxYoScnZ0VGRmps2fP6sCBA+rfv/99ODIAAFCSMaP2/0yfPl0tW7bUU089pXbt2ikyMlJ169aVi4uL/Pz8NG/ePH366aeqV6+epkyZomnTpt2X/Y4ZM0ZDhw7V2LFjVbduXfXs2fO+zNYBAICSz2LwmPybunTpkqpXr67ExETTzm5lZWXJ29tbgYOXyMnq5uhyAAB3kD6lk6NLgAlc//7OzMyUl5fXbdty6vP/2bNnjw4fPqzmzZsrMzNTEyZMkCR16dLFwZUBAICyiqD2K9OmTVNqaqqcnZ3VtGlTJScnq3Llyo4uCwAAlFGc+izB7mbqFAAAmMPdfH9zMwEAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMqryjC8C9qz/uSzlZ3RxdBgDgLqRP6eToElACMKMGAABgUgQ1AAAAkyKoAQAAmBRB7TeCg4P19ttvO7oMAAAAbib4rR07dsjd3d3RZQAAABDUfsvPz8/RJUiScnNz5ezs7OgyAACAA5W5U58XL15UbGys3N3d5e/vr7feekutW7fW4MGDJd146tNisejDDz9Ut27d5ObmptDQUK1cudKuz5UrVyo0NFQuLi564oknNH/+fFksFl24cMHWZsuWLXrsscfk6uqqwMBADRo0SJcuXbKtDw4O1sSJE9W7d295eXnppZde+j2HAQAAlABlLqi99tprSklJ0cqVK7V+/XolJydr9+7dt90mPj5ePXr00P79+9WxY0fFxsbq/PnzkqTjx4/r6aefVteuXbVv3z79+c9/1htvvGG3fVpamqKjo/XHP/5R+/fv1yeffKItW7YoLi7Ort20adPUsGFD7dmzR2PGjLmhjpycHGVlZdm9AABA6VWmgtrFixc1f/58TZs2TW3btlX9+vU1d+5c5efn33a7vn37qlevXgoJCdHf/vY3ZWdn65tvvpEkvf/++woLC9Obb76psLAwPfPMM+rbt6/d9gkJCYqNjdXgwYMVGhqqRx55RDNmzNCCBQt05coVW7s2bdpo6NChql27tmrXrn1DHQkJCfL29ra9AgMD731QAACAaZWpoHbs2DHl5eWpefPmtmXe3t4KCwu77XYNGjSw/e3u7i4vLy+dOXNGkpSamqqIiAi79r/uX5L27dunefPmycPDw/aKiopSQUGBjh8/bmvXrFmz29YxatQoZWZm2l4nTpy4/QEDAIASjZsJCqFChQp27y0WiwoKCgq9fXZ2tv785z9r0KBBN6yrUaOG7e873W1qtVpltVoLvV8AAFCylamgVqtWLVWoUEE7duywBaTMzEx9//33atWqVZH6DAsL0xdffGG3bMeOHXbvmzRpooMHDyokJKRohQMAgDKpTJ369PT0VJ8+fTR8+HBt2rRJBw4cUP/+/eXk5CSLxVKkPv/85z/r8OHDGjlypL7//nstWbJE8+bNkyRbnyNHjtTWrVsVFxenvXv36siRI1qxYsUNNxMAAAD8WpkKapI0ffp0tWzZUk899ZTatWunyMhI1a1bVy4uLkXqr2bNmlq6dKk+++wzNWjQQO+9957trs/rpykbNGigzZs36/vvv9djjz2mxo0ba+zYsQoICLhvxwUAAEofi2EYhqOLcKRLly6pevXqSkxMVP/+/e9Ln5MnT9bs2bN/94v9s7Kyrt39OXiJnKxuv+u+AAD3V/qUTo4uAQ5y/fs7MzNTXl5et21bpq5Rk6Q9e/bo8OHDat68uTIzMzVhwgRJUpcuXYrc56xZsxQREaFKlSopJSVFb775Jqc1AQDAPStzQU269mDZ1NRUOTs7q2nTpkpOTlblypWL3N+RI0c0adIknT9/XjVq1NDQoUM1atSo+1gxAAAoi8r8qc+S7G6mTgEAgDnczfd3mbuZAAAAoKQgqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJhUeUcXgHtXf9yXcrK6OboMAABKlfQpnRxdAjNqAAAAZkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTMkVQW7p0qcLDw+Xq6qpKlSqpXbt2unTpkgoKCjRhwgQ98MADslqtatSokdauXWvbrk2bNoqLi7Pr6+zZs3J2dtbGjRvvuN9Zs2YpNDRULi4uqlq1qp5++mnburVr1+rRRx+Vj4+PKlWqpKeeekppaWm29UlJSbJYLLpw4YJt2d69e2WxWJSenm5blpKSotatW8vNzU0VK1ZUVFSUfvnlF0lSQUGBEhISVLNmTbm6uqphw4ZaunTp3Q4fAAAopRwe1E6fPq1evXqpX79+OnTokJKSkhQTEyPDMPTOO+8oMTFR06ZN0/79+xUVFaU//OEPOnLkiCTphRde0KJFi5STk2Pr7//+7/9UvXp1tWnT5rb73blzpwYNGqQJEyYoNTVVa9euVatWrWzrL126pNdee007d+7Uxo0b5eTkpG7duqmgoKDQx7Z37161bdtW9erV07Zt27RlyxZ17txZ+fn5kqSEhAQtWLBAs2fP1oEDBzRkyBA999xz2rx58037y8nJUVZWlt0LAACUXhbDMAxHFrB79241bdpU6enpCgoKsltXvXp1DRw4UH/9619ty5o3b66IiAj94x//0JUrVxQQEKDZs2erR48ekqSGDRsqJiZG48aNu+1+P/vsM/3pT3/SyZMn5enpecc6//vf/8rPz0/ffvut6tevr6SkJD3xxBP65Zdf5OPjI+laMGvcuLGOHz+u4OBgPfvss8rIyNCWLVtu6C8nJ0e+vr7asGGDWrZsaVv+wgsv6PLly1q0aNEN24wfP17x8fE3LA8cvIQH3gIAcJ/9Xg+8zcrKkre3tzIzM+Xl5XXbtg6fUWvYsKHatm2r8PBwde/eXXPmzNEvv/yirKwsnTp1SpGRkXbtIyMjdejQIUmSi4uLnn/+eX388ceSroW+7777Tn379r3jfp988kkFBQWpVq1aev7557Vw4UJdvnzZtv7IkSPq1auXatWqJS8vLwUHB0uSMjIyCn1s12fUbubo0aO6fPmynnzySXl4eNheCxYssDvF+mujRo1SZmam7XXixIlC1wIAAEoeh/+EVLly5bR+/Xpt3bpV69at08yZM/XGG29o/fr1hdr+hRdeUKNGjXTy5EnNnTtXbdq0uWFm7mY8PT21e/duJSUlad26dRo7dqzGjx+vHTt2yMfHR507d1ZQUJDmzJmjgIAAFRQUqH79+srNzZUkOTldy7i/npDMy8uz24erq+st95+dnS1JWr16tapXr263zmq13nQbq9V6y3UAAKD0cfiMmiRZLBZFRkYqPj5ee/bssd0MEBAQoJSUFLu2KSkpqlevnu19eHi4mjVrpjlz5mjRokXq169fofdbvnx5tWvXTlOnTtX+/fuVnp6ur776SufOnVNqaqpGjx6ttm3bqm7durYbAK7z8/OTdO0au+v27t1r16ZBgwa3vKmhXr16slqtysjIUEhIiN0rMDCw0McAAABKL4fPqG3fvl0bN25U+/btVaVKFW3fvl1nz55V3bp1NXz4cI0bN061a9dWo0aNNHfuXO3du1cLFy606+OFF15QXFyc3N3d1a1bt0Ltd9WqVTp27JhatWqlihUr6osvvlBBQYHCwsJUsWJFVapUSR988IH8/f2VkZGh119/3W7764Fq/Pjxmjx5sr7//nslJibatRk1apTCw8P1yiuvaMCAAXJ2dtamTZvUvXt3Va5cWcOGDdOQIUNUUFCgRx99VJmZmUpJSZGXl5f69OlzbwMLAABKPIcHNS8vL3399dd6++23lZWVpaCgICUmJqpDhw6KiopSZmamhg4dqjNnzqhevXpauXKlQkND7fro1auXBg8erF69esnFxaVQ+/Xx8dFnn32m8ePH68qVKwoNDdW//vUvPfTQQ5KkxYsXa9CgQapfv77CwsI0Y8YMtW7d2rZ9hQoV9K9//Usvv/yyGjRooIiICE2aNEndu3e3talTp47WrVunv/71r2revLlcXV3VokUL9erVS5I0ceJE+fn5KSEhQceOHZOPj4+aNGlid/MEAAAouxx+1+f9kJ6ertq1a2vHjh1q0qSJo8spNtfvGuGuTwAA7j8z3PXp8Bm1e5GXl6dz585p9OjRevjhh8tUSAMAAKWfKW4mKKqUlBT5+/trx44dmj17tt265ORku8de/PYFAABgdqXi1OfN/O9//9OPP/54y/UhISHFWM3v426mTgEAgDmUmVOft+Pq6loqwhgAACi7SvSpTwAAgNKMoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJlVqH89RFlx/BF5WVpaDKwEAAIV1/Xu7MI+yJaiVYOfOnZMkBQYGOrgSAABwty5evChvb+/btiGolWC+vr6SpIyMjDv+h8b/LysrS4GBgTpx4gS/6HAXGLeiYdyKhnErGsataIp73AzD0MWLFxUQEHDHtgS1EszJ6dolht7e3vyDLAIvLy/GrQgYt6Jh3IqGcSsaxq1oinPcCjvBws0EAAAAJkVQAwAAMCmCWglmtVo1btw4Wa1WR5dSojBuRcO4FQ3jVjSMW9EwbkVj5nGzGIW5NxQAAADFjhk1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUCvB/vGPfyg4OFguLi5q0aKFvvnmG0eXZCrjx4+XxWKxez344IO29VeuXNHAgQNVqVIleXh46I9//KN+/vlnB1bsGF9//bU6d+6sgIAAWSwWff7553brDcPQ2LFj5e/vL1dXV7Vr105Hjhyxa3P+/HnFxsbKy8tLPj4+6t+/v7Kzs4vxKIrfncatb9++N3z+oqOj7dqUtXFLSEhQRESEPD09VaVKFXXt2lWpqal2bQrz7zIjI0OdOnWSm5ubqlSpouHDh+vq1avFeSjFqjDj1rp16xs+bwMGDLBrU9bG7b333lODBg1sD7Ft2bKl1qxZY1tfUj5rBLUS6pNPPtFrr72mcePGaffu3WrYsKGioqJ05swZR5dmKg899JBOnz5te23ZssW2bsiQIfr3v/+tTz/9VJs3b9apU6cUExPjwGod49KlS2rYsKH+8Y9/3HT91KlTNWPGDM2ePVvbt2+Xu7u7oqKidOXKFVub2NhYHThwQOvXr9eqVav09ddf66WXXiquQ3CIO42bJEVHR9t9/v71r3/ZrS9r47Z582YNHDhQ//nPf7R+/Xrl5eWpffv2unTpkq3Nnf5d5ufnq1OnTsrNzdXWrVs1f/58zZs3T2PHjnXEIRWLwoybJL344ot2n7epU6fa1pXFcXvggQc0ZcoU7dq1Szt37lSbNm3UpUsXHThwQFIJ+qwZKJGaN29uDBw40PY+Pz/fCAgIMBISEhxYlbmMGzfOaNiw4U3XXbhwwahQoYLx6aef2pYdOnTIkGRs27atmCo0H0nG8uXLbe8LCgqMatWqGW+++aZt2YULFwyr1Wr861//MgzDMA4ePGhIMnbs2GFrs2bNGsNisRg//vhjsdXuSL8dN8MwjD59+hhdunS55TaMm2GcOXPGkGRs3rzZMIzC/bv84osvDCcnJ+Onn36ytXnvvfcMLy8vIycnp3gPwEF+O26GYRiPP/648eqrr95yG8btmooVKxoffvhhifqsMaNWAuXm5mrXrl1q166dbZmTk5PatWunbdu2ObAy8zly5IgCAgJUq1YtxcbGKiMjQ5K0a9cu5eXl2Y3hgw8+qBo1ajCGv3L8+HH99NNPduPk7e2tFi1a2MZp27Zt8vHxUbNmzWxt2rVrJycnJ23fvr3YazaTpKQkValSRWFhYXr55Zd17tw52zrGTcrMzJQk+fr6Sircv8tt27YpPDxcVatWtbWJiopSVlaWbaaktPvtuF23cOFCVa5cWfXr19eoUaN0+fJl27qyPm75+flavHixLl26pJYtW5aozxo/yl4C/fe//1V+fr7dh0eSqlatqsOHDzuoKvNp0aKF5s2bp7CwMJ0+fVrx8fF67LHH9N133+mnn36Ss7OzfHx87LapWrWqfvrpJ8cUbELXx+Jmn7Xr63766SdVqVLFbn358uXl6+tbpscyOjpaMTExqlmzptLS0vTXv/5VHTp00LZt21SuXLkyP24FBQUaPHiwIiMjVb9+fUkq1L/Ln3766aafx+vrSrubjZskPfvsswoKClJAQID279+vkSNHKjU1VZ999pmksjtu3377rVq2bKkrV67Iw8NDy5cvV7169bR3794S81kjqKHU6tChg+3vBg0aqEWLFgoKCtKSJUvk6urqwMpQFjzzzDO2v8PDw9WgQQPVrl1bSUlJatu2rQMrM4eBAwfqu+++s7tuFHd2q3H79bWN4eHh8vf3V9u2bZWWlqbatWsXd5mmERYWpr179yozM1NLly5Vnz59tHnzZkeXdVc49VkCVa5cWeXKlbvh7pSff/5Z1apVc1BV5ufj46M6dero6NGjqlatmnJzc3XhwgW7NoyhvetjcbvPWrVq1W64ieXq1as6f/48Y/krtWrVUuXKlXX06FFJZXvc4uLitGrVKm3atEkPPPCAbXlh/l1Wq1btpp/H6+tKs1uN2820aNFCkuw+b2Vx3JydnRUSEqKmTZsqISFBDRs21DvvvFOiPmsEtRLI2dlZTZs21caNG23LCgoKtHHjRrVs2dKBlZlbdna20tLS5O/vr6ZNm6pChQp2Y5iamqqMjAzG8Fdq1qypatWq2Y1TVlaWtm/fbhunli1b6sKFC9q1a5etzVdffaWCggLblwWkkydP6ty5c/L395dUNsfNMAzFxcVp+fLl+uqrr1SzZk279YX5d9myZUt9++23diF3/fr18vLyUr169YrnQIrZncbtZvbu3StJdp+3sjZuN1NQUKCcnJyS9VkrttsWcF8tXrzYsFqtxrx584yDBw8aL730kuHj42N3d0pZN3ToUCMpKck4fvy4kZKSYrRr186oXLmycebMGcMwDGPAgAFGjRo1jK+++srYuXOn0bJlS6Nly5YOrrr4Xbx40dizZ4+xZ88eQ5Ixffp0Y8+ePcYPP/xgGIZhTJkyxfDx8TFWrFhh7N+/3+jSpYtRs2ZN43//+5+tj+joaKNx48bG9u3bjS1bthihoaFGr169HHVIxeJ243bx4kVj2LBhxrZt24zjx48bGzZsMJo0aWKEhoYaV65csfVR1sbt5ZdfNry9vY2kpCTj9OnTttfly5dtbe707/Lq1atG/fr1jfbt2xt79+411q5da/j5+RmjRo1yxCEVizuN29GjR40JEyYYO3fuNI4fP26sWLHCqFWrltGqVStbH2Vx3F5//XVj8+bNxvHjx439+/cbr7/+umGxWIx169YZhlFyPmsEtRJs5syZRo0aNQxnZ2ejefPmxn/+8x9Hl2QqPXv2NPz9/Q1nZ2ejevXqRs+ePY2jR4/a1v/vf/8zXnnlFaNixYqGm5ub0a1bN+P06dMOrNgxNm3aZEi64dWnTx/DMK49omPMmDFG1apVDavVarRt29ZITU216+PcuXNGr169DA8PD8PLy8v405/+ZFy8eNEBR1N8bjduly9fNtq3b2/4+fkZFSpUMIKCgowXX3zxhv+RKmvjdrPxkmTMnTvX1qYw/y7T09ONDh06GK6urkblypWNoUOHGnl5ecV8NMXnTuOWkZFhtGrVyvD19TWsVqsREhJiDB8+3MjMzLTrp6yNW79+/YygoCDD2dnZ8PPzM9q2bWsLaYZRcj5rFsMwjOKbvwMAAEBhcY0aAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJP6/wCZJMYvD+kvnAAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "chinese_ingredient_df = create_ingredient_df(chinese_df)\n", + "chinese_ingredient_df.head(10).plot.barh()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmoAAAGdCAYAAACirV9DAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABD/klEQVR4nO3de1iUdf7/8dcgMDAgkIkKBqKCqF/F84HMMjWx1DWtrGRXTTtYmeJZtkXFQ5B5trXcLNH9WWZ20M3SNVdcJTPP5okUNSwp21w5aALC/fvDZa4mPOBx7oHn47rmumbu+3N/7vf9cWhefe77nrEYhmEIAAAApuPm7AIAAABwaQQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMyt3ZBeD6FRcX6+TJk6pcubIsFouzywEAAGVgGIZyc3MVHBwsN7crz5kR1FzYyZMnFRIS4uwyAADAdThx4oTuuuuuK7YhqLmwypUrS7r4D+3n5+fkagAAQFnk5OQoJCTE/jl+JQQ1F1ZyutPPz4+gBgCAiynLZUvcTAAAAGBSBDUAAACTIqgBAACYFNeoAQBQwRUVFamwsNDZZZQrlSpVkru7+w1/fRZBDQCACiwvL0/ff/+9DMNwdinljs1mU1BQkDw9Pa+7D4IaAAAVVFFRkb7//nvZbDYFBgby5ek3iWEYKigo0M8//6xjx44pIiLiql9sezkEtXKg0YS1crPanF0GUGEdT+7m7BKA61JYWCjDMBQYGChvb29nl1OueHt7y8PDQ999950KCgrk5eV1Xf1wMwEAABUcM2m3xvXOojn0cRPqAAAAwC1AUAMAADAp01yjZhiGnnvuOa1YsUL//e9/tWvXLjVt2tTZZd1SKSkpiouL05kzZ5xdCgAAdmHjVt/W/d3u6zzDwsIUFxenuLi427rf62GaoLZmzRqlpKQoNTVVderUUdWqVZ1dEgAAgFOZJqhlZGQoKChId999t7NLuaqCgoIb+k4UAACAsjDFNWoDBgzQSy+9pMzMTFksFoWFham4uFhJSUmqXbu2vL291aRJE61YscK+TWpqqiwWi9avX6+WLVvKZrPp7rvvVnp6ukO/Dz/8sMO+4uLi1KFDB/vr3NxcxcbGysfHR0FBQZo1a5Y6dOjgMB0aFhamyZMnq1+/fvLz89Ozzz4rSdq8ebPat28vb29vhYSEaOjQoTp79qx9u/z8fI0aNUo1a9aUj4+P2rRpo9TU1MuOw88//6yWLVuqV69eys/Pv77BBACgHPvb3/6m4OBgFRcXOyzv2bOnBg4cqIyMDPXs2VPVq1eXr6+vWrVqpS+++OKy/R0/flwWi0W7d++2Lztz5owsFovDZ/a+ffv04IMPytfXV9WrV9ef/vQn/ec//7nZh1eKKYLanDlzNGnSJN11113KysrStm3blJSUpCVLlujNN9/U/v37NXz4cP3xj3/Uxo0bHbZ9+eWXNWPGDG3fvl3u7u4aOHDgNe17xIgRSktL06pVq7Ru3Tpt2rRJO3fuLNVu+vTpatKkiXbt2qWEhARlZGSoa9eueuSRR7R37169//772rx5s4YMGWLfZsiQIdqyZYuWLVumvXv36rHHHlPXrl11+PDhUv2fOHFC7du3V6NGjbRixQpZrdZSbfLz85WTk+PwAACgInnsscf0yy+/aMOGDfZlp0+f1po1axQbG6u8vDw99NBDWr9+vXbt2qWuXbuqR48eyszMvO59njlzRh07dlSzZs20fft2rVmzRj/99JP69OlzMw7pikxx6tPf31+VK1dWpUqVVKNGDeXn5+uVV17RF198oejoaElSnTp1tHnzZi1YsED33XeffdupU6faX48bN07dunXT+fPny/TFcrm5uVq8eLHeffddderUSZK0aNEiBQcHl2rbsWNHjRw50v766aefVmxsrH3mLSIiQnPnztV9992nN954Q6dOndKiRYuUmZlp72/UqFFas2aNFi1apFdeecXeV3p6uh544AH16tVLs2fPvuz32SQlJSkxMfGqxwUAQHl1xx136MEHH3T47F6xYoWqVq2q+++/X25ubmrSpIm9/eTJk/Xxxx9r1apVDpMp1+L1119Xs2bNHD6733nnHYWEhOjbb79VvXr1buygrsAUQe33jhw5onPnzumBBx5wWF5QUKBmzZo5LIuKirI/DwoKkiSdOnVKoaGhV93P0aNHVVhYqNatW9uX+fv7KzIyslTbli1bOrzes2eP9u7dq6VLl9qXGYah4uJiHTt2TEePHlVRUVGpf7z8/Hzdeeed9te//vqr2rdvr759+2r27NlXrDc+Pl4jRoywv87JyVFISMhVjxMAgPIkNjZWzzzzjObPny+r1aqlS5fqiSeekJubm/Ly8jRx4kStXr1aWVlZunDhgn799dcbmlHbs2ePNmzYIF9f31LrMjIyKl5Qy8vLkyStXr1aNWvWdFj3+1OCHh4e9uclM1El563d3NxK/chsYWHhddXk4+NTqsbnnntOQ4cOLdU2NDRUe/fuVaVKlbRjxw5VqlTJYf1v/6GtVqs6d+6sTz/9VKNHjy51vL9ltVoveUoUAICKpEePHjIMQ6tXr1arVq20adMmzZo1S9LFs1fr1q3T9OnTFR4eLm9vbz366KMqKCi4ZF8lvx7w27zw+6yQl5enHj166NVXXy21fckk0a1iyqDWsGFDWa1WZWZmOpzmvFaBgYHat2+fw7Ldu3fbw12dOnXk4eGhbdu22WfgsrOz9e233+ree++9Yt/NmzfXgQMHFB4efsn1zZo1U1FRkU6dOqX27dtfth83Nzf9/e9/V9++fXX//fcrNTX1kqdeAQDARV5eXurdu7eWLl2qI0eOKDIyUs2bN5ckpaWlacCAAerVq5ekiyHr+PHjl+0rMDBQkpSVlWU/a/fbGwuki5/5H374ocLCwuTufnujkyluJvi9ypUra9SoURo+fLgWL16sjIwM7dy5U/PmzdPixYvL3E/Hjh21fft2LVmyRIcPH9aECRMcglvlypXVv39/jR49Whs2bND+/fs1aNAgubm5XfV3z8aOHasvv/xSQ4YM0e7du3X48GGtXLnSfv67Xr16io2NVb9+/fTRRx/p2LFj+vrrr5WUlKTVqx2/SLBSpUpaunSpmjRpoo4dO+rHH3+8htECAKDiiY2N1erVq/XOO+8oNjbWvjwiIkIfffSRdu/erT179qhv376l7hD9LW9vb7Vt21bJyck6ePCgNm7cqL/85S8ObV588UWdPn1aTz75pLZt26aMjAytXbtWTz31lIqKim7ZMUomnVGTLl78FxgYqKSkJB09elQBAQFq3ry5/vznP5e5j5iYGCUkJGjMmDE6f/68Bg4cqH79+umbb76xt5k5c6YGDx6s7t27y8/PT2PGjNGJEyeuejNCVFSUNm7cqJdfflnt27eXYRiqW7euHn/8cXubRYsWacqUKRo5cqR++OEHVa1aVW3btlX37t1L9efu7q733ntPjz/+uDp27KjU1FRVq1atzMcKAMDNcrt/KeB6dOzYUVWqVFF6err69u1rXz5z5kwNHDhQd999t6pWraqxY8de9VsS3nnnHQ0aNEgtWrRQZGSkpk2bpi5dutjXBwcHKy0tTWPHjlWXLl2Un5+vWrVqqWvXrjflh9evxGL8/iKuCu7s2bOqWbOmZsyYoUGDBjm7nCvKycmRv7+/QuKWy81qc3Y5QIXlCh9qwKWcP39ex44dU+3atcv0bQm4Npcb35LP7+zsbPn5+V2xD9POqN0uu3bt0qFDh9S6dWtlZ2dr0qRJki5+cR4AAIAzVfigJl38Mtv09HR5enqqRYsW2rRpE781CgAAnK7CB7VmzZppx44dzi7jhuxLjLnq1CkAAHA9przrEwAAAAQ1AAAqPO4rvDVuxrgS1AAAqKBKfjnnct/ajxtz7tw5SY6/onStKvw1agAAVFTu7u6y2Wz6+eef5eHhccu/E6yiMAxD586d06lTpxQQEFDqpySvBUENAIAKymKxKCgoSMeOHdN3333n7HLKnYCAANWoUeOG+iCoAQBQgXl6eioiIoLTnzeZh4fHDc2klSCoAQBQwbm5ufHLBCbFyWgAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApPitz3Kg0YS1crPanF0GgBtwPLmbs0sAYELMqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUTKqwsNDZJQAAACcr10GtQ4cOGjJkiIYMGSJ/f39VrVpVCQkJMgxDkpSfn69Ro0apZs2a8vHxUZs2bZSammrfPiUlRQEBAfrkk08UEREhLy8vxcTE6MSJE/Y2EydOVNOmTbVgwQKFhITIZrOpT58+ys7Odqhl4cKFatCggby8vFS/fn3Nnz/fvu748eOyWCx6//33dd9998nLy0tLly69tYMDAABMr1wHNUlavHix3N3d9fXXX2vOnDmaOXOmFi5cKEkaMmSItmzZomXLlmnv3r167LHH1LVrVx0+fNi+/blz5zR16lQtWbJEaWlpOnPmjJ544gmHfRw5ckTLly/XP/7xD61Zs0a7du3SCy+8YF+/dOlSjR8/XlOnTtXBgwf1yiuvKCEhQYsXL3boZ9y4cRo2bJgOHjyomJiYUseSn5+vnJwchwcAACi/yv0X3oaEhGjWrFmyWCyKjIzUN998o1mzZikmJkaLFi1SZmamgoODJUmjRo3SmjVrtGjRIr3yyiuSLp6CfP3119WmTRtJF4NfgwYN9PXXX6t169aSpPPnz2vJkiWqWbOmJGnevHnq1q2bZsyYoRo1amjChAmaMWOGevfuLUmqXbu2Dhw4oAULFqh///72WuPi4uxtLiUpKUmJiYk3f5AAAIAplfsZtbZt28pisdhfR0dH6/Dhw/rmm29UVFSkevXqydfX1/7YuHGjMjIy7O3d3d3VqlUr++v69esrICBABw8etC8LDQ21h7SSfRQXFys9PV1nz55VRkaGBg0a5LCfKVOmOOxHklq2bHnFY4mPj1d2drb98dtTsAAAoPwp9zNql5OXl6dKlSppx44dqlSpksM6X1/fm7ofSXrrrbfss3Ilfr9fHx+fK/ZltVpltVpvWm0AAMDcyn1Q27p1q8Prr776ShEREWrWrJmKiop06tQptW/f/rLbX7hwQdu3b7ef5kxPT9eZM2fUoEEDe5vMzEydPHnSfgr1q6++kpubmyIjI1W9enUFBwfr6NGjio2NvQVHCAAAyqtyH9QyMzM1YsQIPffcc9q5c6fmzZunGTNmqF69eoqNjVW/fv00Y8YMNWvWTD///LPWr1+vqKgodet28QeSPTw89NJLL2nu3Llyd3fXkCFD1LZtW3twkyQvLy/1799f06dPV05OjoYOHao+ffqoRo0akqTExEQNHTpU/v7+6tq1q/Lz87V9+3b997//1YgRI5wyLgAAwPzKfVDr16+ffv31V7Vu3VqVKlXSsGHD9Oyzz0qSFi1apClTpmjkyJH64YcfVLVqVbVt21bdu3e3b2+z2TR27Fj17dtXP/zwg9q3b6+3337bYR/h4eHq3bu3HnroIZ0+fVrdu3d3+PqNp59+WjabTa+99ppGjx4tHx8fNW7cWHFxcbdlDAAAgGuyGCVfKlYOdejQQU2bNtXs2bOva/uUlBTFxcXpzJkzl20zceJEffLJJ9q9e/d17eNG5OTkyN/fXyFxy+Vmtd32/QO4eY4nd3N2CQBuk5LP7+zsbPn5+V2xbbm/6xMAAMBVEdQAAABMqlyf+izvrmXqFAAAmAOnPgEAAMoBghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJuTu7ANy4RhPWys1qc3YZAGAKx5O7ObsE4KZhRg0AAMCkCGoAAAAmRVADAAAwqQoT1CZOnKimTZtesc2AAQP08MMP35Z6JKlDhw6Ki4uzvw4LC9Ps2bNv2/4BAIC5udzNBAMGDNCZM2f0ySefOLuUG/bRRx/Jw8PD2WUAAACTcrmgVp5UqVLF2SUAAAATK/Opz7/97W8KDg5WcXGxw/KePXtq4MCBkqSVK1eqefPm8vLyUp06dZSYmKgLFy7Y2x46dEj33HOPvLy81LBhQ33xxReyWCwOs2MnTpxQnz59FBAQoCpVqqhnz546fvy4pIunLxcvXqyVK1fKYrHIYrEoNTVVkjR27FjVq1dPNptNderUUUJCggoLC0sdx4IFCxQSEiKbzaY+ffooOzv7ssdcXFyspKQk1a5dW97e3mrSpIlWrFhR1iHTxo0b1bp1a1mtVgUFBWncuHEO4/H7U58AAAC/Veag9thjj+mXX37Rhg0b7MtOnz6tNWvWKDY2Vps2bVK/fv00bNgwHThwQAsWLFBKSoqmTp0qSSoqKtLDDz8sm82mrVu36m9/+5tefvllh30UFhYqJiZGlStX1qZNm5SWliZfX1917dpVBQUFGjVqlPr06aOuXbsqKytLWVlZuvvuuyVJlStXVkpKig4cOKA5c+borbfe0qxZsxz6P3LkiJYvX65//OMfWrNmjXbt2qUXXnjhsseclJSkJUuW6M0339T+/fs1fPhw/fGPf9TGjRuvOl4//PCDHnroIbVq1Up79uzRG2+8obfffltTpkwp65CXkp+fr5ycHIcHAAAov8p86vOOO+7Qgw8+qHfffVedOnWSJK1YsUJVq1bV/fffry5dumjcuHHq37+/JKlOnTqaPHmyxowZowkTJmjdunXKyMhQamqqatSoIUmaOnWqHnjgAfs+3n//fRUXF2vhwoWyWCySpEWLFikgIECpqanq0qWLvL29lZ+fb++jxF/+8hf787CwMI0aNUrLli3TmDFj7MvPnz+vJUuWqGbNmpKkefPmqVu3bpoxY0ap/vLz8/XKK6/oiy++UHR0tP2YNm/erAULFui+++674njNnz9fISEhev3112WxWFS/fn2dPHlSY8eO1fjx4+Xmdu33cSQlJSkxMfGatwMAAK7pmq5Ri42N1TPPPKP58+fLarVq6dKleuKJJ+Tm5qY9e/YoLS3NPoMmXZxFO3/+vM6dO6f09HSFhIQ4BKLWrVs79L9nzx4dOXJElStXdlh+/vx5ZWRkXLG2999/X3PnzlVGRoby8vJ04cIF+fn5ObQJDQ21hzRJio6OVnFxsdLT00sFtSNHjujcuXMOQVKSCgoK1KxZsyvWIkkHDx5UdHS0PXBKUrt27ZSXl6fvv/9eoaGhV+3j9+Lj4zVixAj765ycHIWEhFxzPwAAwDVcU1Dr0aOHDMPQ6tWr1apVK23atMl+ejEvL0+JiYnq3bt3qe28vLzK1H9eXp5atGihpUuXlloXGBh42e22bNmi2NhYJSYmKiYmRv7+/lq2bJlmzJhRxiO7dC2StHr1aodwJ0lWq/W6+70RVqvVafsGAAC33zUFNS8vL/Xu3VtLly7VkSNHFBkZqebNm0uSmjdvrvT0dIWHh19y28jISJ04cUI//fSTqlevLknatm2bQ5vmzZvr/fffV7Vq1UrNhpXw9PRUUVGRw7Ivv/xStWrVcrjm7bvvviu1bWZmpk6ePKng4GBJ0ldffSU3NzdFRkaWatuwYUNZrVZlZmZe9TTnpTRo0EAffvihDMOwz6qlpaWpcuXKuuuuu665PwAAUPFc84VSsbGxWr16td555x3Fxsbal48fP15LlixRYmKi9u/fr4MHD2rZsmX2a8ceeOAB1a1bV/3799fevXuVlpZmX1cSZGJjY1W1alX17NlTmzZt0rFjx5SamqqhQ4fq+++/l3Tx+rO9e/cqPT1d//nPf1RYWKiIiAhlZmZq2bJlysjI0Ny5c/Xxxx+Xqt3Ly0v9+/fXnj17tGnTJg0dOlR9+vQpddpTunhzwqhRozR8+HAtXrxYGRkZ2rlzp+bNm6fFixdfdZxeeOEFnThxQi+99JIOHTqklStXasKECRoxYsR1XZ8GAAAqnmtODB07dlSVKlWUnp6uvn372pfHxMTo008/1T//+U+1atVKbdu21axZs1SrVi1JUqVKlfTJJ58oLy9PrVq10tNPP22fASs5NWqz2fTvf/9boaGh6t27txo0aKBBgwbp/Pnz9hm2Z555RpGRkWrZsqUCAwOVlpamP/zhDxo+fLiGDBmipk2b6ssvv1RCQkKp2sPDw9W7d2899NBD6tKli6KiojR//vzLHuvkyZOVkJCgpKQkNWjQQF27dtXq1atVu3btq45TzZo19dlnn+nrr79WkyZNNHjwYA0aNMjhpgcAAIArsRiGYThr52lpabrnnnt05MgR1a1b11lluKycnBz5+/srJG653Kw2Z5cDAKZwPLmbs0sArqjk8zs7O/uyl3qVuK2/TPDxxx/L19dXEREROnLkiIYNG6Z27doR0gAAAC7htl4slZubqxdffFH169fXgAED1KpVK61cufJ2lnDTDB48WL6+vpd8DB482NnlAQCAcsCppz5d2alTpy77ywB+fn6qVq3aLa/hWqZOAQCAOZj21Gd5Uq1atdsSxgAAQMXF90QAAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYlLuzC8CNazRhrdysNmeXAQCmcjy5m7NLAG4YM2oAAAAmRVADAAAwKYIaAACASRHUficsLEyzZ892dhkAAADcTPB727Ztk4+Pj7PLAAAAIKj9XmBgoLNLkCQVFBTI09PT2WUAAAAnqnCnPnNzcxUbGysfHx8FBQVp1qxZ6tChg+Li4iSVPvVpsVi0cOFC9erVSzabTREREVq1apVDn6tWrVJERIS8vLx0//33a/HixbJYLDpz5oy9zebNm9W+fXt5e3srJCREQ4cO1dmzZ+3rw8LCNHnyZPXr109+fn569tlnb+UwAAAAF1DhgtqIESOUlpamVatWad26ddq0aZN27tx5xW0SExPVp08f7d27Vw899JBiY2N1+vRpSdKxY8f06KOP6uGHH9aePXv03HPP6eWXX3bYPiMjQ127dtUjjzyivXv36v3339fmzZs1ZMgQh3bTp09XkyZNtGvXLiUkJJSqIz8/Xzk5OQ4PAABQflWooJabm6vFixdr+vTp6tSpkxo1aqRFixapqKjoitsNGDBATz75pMLDw/XKK68oLy9PX3/9tSRpwYIFioyM1GuvvabIyEg98cQTGjBggMP2SUlJio2NVVxcnCIiInT33Xdr7ty5WrJkic6fP29v17FjR40cOVJ169ZV3bp1S9WRlJQkf39/+yMkJOTGBwUAAJhWhQpqR48eVWFhoVq3bm1f5u/vr8jIyCtuFxUVZX/u4+MjPz8/nTp1SpKUnp6uVq1aObT/bf+StGfPHqWkpMjX19f+iImJUXFxsY4dO2Zv17JlyyvWER8fr+zsbPvjxIkTVz5gAADg0riZoAw8PDwcXlssFhUXF5d5+7y8PD333HMaOnRoqXWhoaH251e729RqtcpqtZZ5vwAAwLVVqKBWp04deXh4aNu2bfaAlJ2drW+//Vb33nvvdfUZGRmpzz77zGHZtm3bHF43b95cBw4cUHh4+PUVDgAAKqQKdeqzcuXK6t+/v0aPHq0NGzZo//79GjRokNzc3GSxWK6rz+eee06HDh3S2LFj9e2332r58uVKSUmRJHufY8eO1ZdffqkhQ4Zo9+7dOnz4sFauXFnqZgIAAIDfqlBBTZJmzpyp6Ohode/eXZ07d1a7du3UoEEDeXl5XVd/tWvX1ooVK/TRRx8pKipKb7zxhv2uz5LTlFFRUdq4caO+/fZbtW/fXs2aNdP48eMVHBx8044LAACUPxbDMAxnF+FMZ8+eVc2aNTVjxgwNGjTopvQ5depUvfnmm7f8Yv+cnJyLd3/GLZeb1XZL9wUAruZ4cjdnlwBcUsnnd3Z2tvz8/K7YtkJdoyZJu3bt0qFDh9S6dWtlZ2dr0qRJkqSePXted5/z589Xq1atdOeddyotLU2vvfYapzUBAMANq3BBTbr4xbLp6eny9PRUixYttGnTJlWtWvW6+zt8+LCmTJmi06dPKzQ0VCNHjlR8fPxNrBgAAFREFf7Upyu7lqlTAABgDtfy+V3hbiYAAABwFQQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAk3J3dgG4cY0mrJWb1ebsMgAAl3A8uZuzS4ALY0YNAADApAhqAAAAJkVQAwAAMCmC2i02ceJENW3a1P56wIABevjhh51WDwAAcB3cTHCbzZkzR4ZhOLsMAADgAghqt4hhGCoqKiq13N/f3wnVAAAAV8Spz//Jzc1VbGysfHx8FBQUpFmzZqlDhw6Ki4uTJP39739Xy5YtVblyZdWoUUN9+/bVqVOn7NunpqbKYrHo888/V4sWLWS1WrV58+ZS+/n9qc/i4mJNmzZN4eHhslqtCg0N1dSpU2/14QIAABdAUPufESNGKC0tTatWrdK6deu0adMm7dy5076+sLBQkydP1p49e/TJJ5/o+PHjGjBgQKl+xo0bp+TkZB08eFBRUVFX3W98fLySk5OVkJCgAwcO6N1331X16tUv2TY/P185OTkODwAAUH5x6lMXZ9MWL16sd999V506dZIkLVq0SMHBwfY2AwcOtD+vU6eO5s6dq1atWikvL0++vr72dZMmTdIDDzxQ5v3OmTNHr7/+uvr37y9Jqlu3ru65555Ltk9KSlJiYuI1Hx8AAHBNzKhJOnr0qAoLC9W6dWv7Mn9/f0VGRtpf79ixQz169FBoaKgqV66s++67T5KUmZnp0FfLli3LvN+DBw8qPz/fHg6vJj4+XtnZ2fbHiRMnyrwvAADgephRK4OzZ88qJiZGMTExWrp0qQIDA5WZmamYmBgVFBQ4tPXx8Slzv97e3tdUh9VqldVqvaZtAACA62JGTRdPZXp4eGjbtm32ZdnZ2fr2228lSYcOHdIvv/yi5ORktW/fXvXr13e4keB6RUREyNvbW+vXr7/hvgAAQPnDjJqkypUrq3///ho9erSqVKmiatWqacKECXJzc5PFYlFoaKg8PT01b948DR48WPv27dPkyZNveL9eXl4aO3asxowZI09PT7Vr104///yz9u/fr0GDBt2EIwMAAK6MGbX/mTlzpqKjo9W9e3d17txZ7dq1U4MGDeTl5aXAwEClpKTogw8+UMOGDZWcnKzp06fflP0mJCRo5MiRGj9+vBo0aKDHH3/8pszWAQAA12cx+Jr8Szp79qxq1qypGTNmmHZ2KycnR/7+/gqJWy43q83Z5QAALuF4cjdnlwCTKfn8zs7Olp+f3xXbcurzf3bt2qVDhw6pdevWys7O1qRJkyRJPXv2dHJlAACgoiKo/cb06dOVnp4uT09PtWjRQps2bVLVqlWdXRYAAKigOPXpwq5l6hQAAJjDtXx+czMBAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATMrd2QXgxjWasFZuVpuzywAA3IDjyd2cXQJMiBk1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJuWRQKy4u1rRp0xQeHi6r1arQ0FBNnTpVkjR27FjVq1dPNptNderUUUJCggoLCyVJx48fl5ubm7Zv3+7Q3+zZs1WrVi0VFxdLkvbt26cHH3xQvr6+ql69uv70pz/pP//5j719hw4dNHToUI0ZM0ZVqlRRjRo1NHHiRIc+LRaLFi5cqF69eslmsykiIkKrVq1yaHO1/QAAgIrNJYNafHy8kpOTlZCQoAMHDujdd99V9erVJUmVK1dWSkqKDhw4oDlz5uitt97SrFmzJElhYWHq3LmzFi1a5NDfokWLNGDAALm5uenMmTPq2LGjmjVrpu3bt2vNmjX66aef1KdPH4dtFi9eLB8fH23dulXTpk3TpEmTtG7dOoc2iYmJ6tOnj/bu3auHHnpIsbGxOn36tCSVeT+/lZ+fr5ycHIcHAAAovyyGYRjOLuJa5ObmKjAwUK+//rqefvrpq7afPn26li1bZp9FW758uQYPHqysrCxZrVbt3LlTLVu21NGjRxUWFqYpU6Zo06ZNWrt2rb2P77//XiEhIUpPT1e9evXUoUMHFRUVadOmTfY2rVu3VseOHZWcnCzp4ozaX/7yF02ePFmSdPbsWfn6+urzzz9X165dy7Sf35s4caISExNLLQ+JW84X3gKAi+MLbyuOnJwc+fv7Kzs7W35+flds63IzagcPHlR+fr46dep0yfXvv/++2rVrpxo1asjX11d/+ctflJmZaV//8MMPq1KlSvr4448lSSkpKbr//vsVFhYmSdqzZ482bNggX19f+6N+/fqSpIyMDHs/UVFRDvsNCgrSqVOnHJb9to2Pj4/8/Pzsbcq6n9+Kj49Xdna2/XHixImrjhcAAHBdLvcTUt7e3pddt2XLFsXGxioxMVExMTHy9/fXsmXLNGPGDHsbT09P9evXT4sWLVLv3r317rvvas6cOfb1eXl56tGjh1599dVS/QcFBdmfe3h4OKyzWCz2a9zK0qas+/ktq9Uqq9V6ucMHAADljMsFtYiICHl7e2v9+vWlTn1++eWXqlWrll5++WX7su+++65UH08//bQaNWqk+fPn68KFC+rdu7d9XfPmzfXhhx8qLCxM7u63bnhu134AAIDrcrlTn15eXho7dqzGjBmjJUuWKCMjQ1999ZXefvttRUREKDMzU8uWLVNGRobmzp1rP8X5Ww0aNFDbtm01duxYPfnkkw6zdC+++KJOnz6tJ598Utu2bVNGRobWrl2rp556SkVFRTftOG7XfgAAgOtyuaAmSQkJCRo5cqTGjx+vBg0a6PHHH9epU6f0hz/8QcOHD9eQIUPUtGlTffnll0pISLhkH4MGDVJBQYEGDhzosDw4OFhpaWkqKipSly5d1LhxY8XFxSkgIEBubjdvuG7XfgAAgOtyubs+b5bJkyfrgw8+0N69e51dynUruWuEuz4BwPVx12fFUa7v+rxReXl52rdvn15//XW99NJLzi4HAADgsipcUBsyZIhatGihDh06lDrtCQAAYCYV9tRneXAtU6cAAMAcOPUJAABQDhDUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATMrd2QXgxjWasFZuVpuzywAA3CTHk7s5uwSYBDNqAAAAJkVQAwAAMCmCGgAAgElVqKAWFham2bNn3/L9DBgwQA8//PAt3w8AACjfKtTNBNu2bZOPj4+zywAAACiTChHUCgoK5OnpqcDAQGeXUiaGYaioqEju7hXinwcAAFyGaU99FhcXa9q0aQoPD5fValVoaKimTp0qSfrmm2/UsWNHeXt7684779Szzz6rvLw8+7Ylpx6nTp2q4OBgRUZGSip96nPmzJlq3LixfHx8FBISohdeeMGhn5SUFAUEBGjt2rVq0KCBfH191bVrV2VlZdnbFBUVacSIEQoICNCdd96pMWPGyDCMUseSlJSk2rVry9vbW02aNNGKFSvs61NTU2WxWPT555+rRYsWslqt2rx5800dTwAA4HpMG9Ti4+OVnJyshIQEHThwQO+++66qV6+us2fPKiYmRnfccYe2bdumDz74QF988YWGDBnisP369euVnp6udevW6dNPP73kPtzc3DR37lzt379fixcv1r/+9S+NGTPGoc25c+c0ffp0/f3vf9e///1vZWZmatSoUfb1M2bMUEpKit555x1t3rxZp0+f1scff+zQR1JSkpYsWaI333xT+/fv1/Dhw/XHP/5RGzdudGg3btw4JScn6+DBg4qKiipVb35+vnJychweAACg/DLlubXc3FzNmTNHr7/+uvr37y9Jqlu3ru655x699dZbOn/+vJYsWWK/3uz1119Xjx499Oqrr6p69eqSJB8fHy1cuFCenp6X3U9cXJz9eVhYmKZMmaLBgwdr/vz59uWFhYV68803VbduXUnSkCFDNGnSJPv62bNnKz4+Xr1795Ykvfnmm1q7dq19fX5+vl555RV98cUXio6OliTVqVNHmzdv1oIFC3TffffZ206aNEkPPPDAZetNSkpSYmLilQcPAACUG6YMagcPHlR+fr46dep0yXVNmjRxuCmgXbt2Ki4uVnp6uj2oNW7c+IohTZK++OILJSUl6dChQ8rJydGFCxd0/vx5nTt3TjbbxW/6t9ls9pAmSUFBQTp16pQkKTs7W1lZWWrTpo19vbu7u1q2bGk//XnkyBGdO3euVAArKChQs2bNHJa1bNnyivXGx8drxIgR9tc5OTkKCQm54jYAAMB1mTKoeXt733AfV7u78/jx4+revbuef/55TZ06VVWqVNHmzZs1aNAgFRQU2IOah4eHw3YWi6XUNWhXUnLN2+rVq1WzZk2HdVar9ZpqtlqtpbYBAADllymvUYuIiJC3t7fWr19fal2DBg20Z88enT171r4sLS1Nbm5u9psGymLHjh0qLi7WjBkz1LZtW9WrV08nT568pjr9/f0VFBSkrVu32pdduHBBO3bssL9u2LChrFarMjMzFR4e7vBgNgwAAFyJKWfUvLy8NHbsWI0ZM0aenp5q166dfv75Z+3fv1+xsbGaMGGC+vfvr4kTJ+rnn3/WSy+9pD/96U/2055lER4ersLCQs2bN089evRQWlqa3nzzzWuuddiwYUpOTlZERITq16+vmTNn6syZM/b1lStX1qhRozR8+HAVFxfrnnvuUXZ2ttLS0uTn52e/Bg8AAOD3TBnUJCkhIUHu7u4aP368Tp48qaCgIA0ePFg2m01r167VsGHD1KpVK9lsNj3yyCOaOXPmNfXfpEkTzZw5U6+++qri4+N17733KikpSf369bumfkaOHKmsrCz1799fbm5uGjhwoHr16qXs7Gx7m8mTJyswMFBJSUk6evSoAgIC1Lx5c/35z3++pn0BAICKxWJcywVXMJWcnBz5+/srJG653Kw2Z5cDALhJjid3c3YJuIVKPr+zs7Pl5+d3xbamvEYNAAAABDUAAADTMu01aii7fYkxV506BQAArocZNQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJiUu7MLwI1rNGGt3Kw2Z5cBADCB48ndnF0CbiJm1AAAAEyKoAYAAGBSBDUAAACTIqjdJBMnTlTTpk2dXQYAAChHCGo3yahRo7R+/XpnlwEAAMoR7vq8SXx9feXr6+vsMgAAQDnCjNr/5Ofna+jQoapWrZq8vLx0zz33aNu2bZKk1NRUWSwWrV+/Xi1btpTNZtPdd9+t9PR0+/a/P/VZXFysSZMm6a677pLValXTpk21Zs0a+/rjx4/LYrHoo48+0v333y+bzaYmTZpoy5Ytt+2YAQCAuRHU/mfMmDH68MMPtXjxYu3cuVPh4eGKiYnR6dOn7W1efvllzZgxQ9u3b5e7u7sGDhx42f7mzJmjGTNmaPr06dq7d69iYmL0hz/8QYcPH3Zo9/LLL2vUqFHavXu36tWrpyeffFIXLly4ZJ/5+fnKyclxeAAAgPKLoCbp7NmzeuONN/Taa6/pwQcfVMOGDfXWW2/J29tbb7/9tr3d1KlTdd9996lhw4YaN26cvvzyS50/f/6SfU6fPl1jx47VE088ocjISL366qtq2rSpZs+e7dBu1KhR6tatm+rVq6fExER99913OnLkyCX7TEpKkr+/v/0REhJy08YAAACYD0FNUkZGhgoLC9WuXTv7Mg8PD7Vu3VoHDx60L4uKirI/DwoKkiSdOnWqVH85OTk6efKkQ3+S1K5dO4f+rqVPSYqPj1d2drb9ceLEibIeIgAAcEHcTHANPDw87M8tFouki9ei3a4+rVarrFbrDe0PAAC4DmbUJNWtW1eenp5KS0uzLyssLNS2bdvUsGHDa+7Pz89PwcHBDv1JUlpa2nX1BwAAKiZm1CT5+Pjo+eef1+jRo1WlShWFhoZq2rRpOnfunAYNGqQ9e/Zcc5+jR4/WhAkTVLduXTVt2lSLFi3S7t27tXTp0ltwBAAAoDwiqP1PcnKyiouL9ac//Um5ublq2bKl1q5dqzvuuOO6+hs6dKiys7M1cuRInTp1Sg0bNtSqVasUERFxkysHAADllcUwDMPZReD65OTkXLz7M2653Kw2Z5cDADCB48ndnF0CrqLk8zs7O1t+fn5XbMs1agAAACZFUAMAADAprlErB/Ylxlx16hQAALgeZtQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBDQAAwKQIagAAACZFUAMAADApghoAAIBJEdQAAABMiqAGAABgUu7OLgA3rtGEtXKz2pxdBgDABRxP7ubsEnANmFEDAAAwKYIaAACASRHUAAAATIqgdhulpqbKYrHozJkzzi4FAAC4AJcMah06dFBcXJyzy7hmd999t7KysuTv7+/sUgAAgAtwyaB2MxQUFNzW/RUWFsrT01M1atSQxWK5rfsGAACuyeWC2oABA7Rx40bNmTNHFotFFotFKSkpCggIcGj3ySefOASiiRMnqmnTplq4cKFq164tLy8vSZLFYtGCBQvUvXt32Ww2NWjQQFu2bNGRI0fUoUMH+fj46O6771ZGRoZD/ytXrlTz5s3l5eWlOnXqKDExURcuXLCvt1gseuONN/SHP/xBPj4+mjp16iVPfaalpalDhw6y2Wy64447FBMTo//+9783f+AAAIDLcbmgNmfOHEVHR+uZZ55RVlaWsrKyVFRUVKZtjxw5og8//FAfffSRdu/ebV8+efJk9evXT7t371b9+vXVt29fPffcc4qPj9f27dtlGIaGDBlib79p0yb169dPw4YN04EDB7RgwQKlpKRo6tSpDvubOHGievXqpW+++UYDBw4sVc/u3bvVqVMnNWzYUFu2bNHmzZvVo0ePyx5Pfn6+cnJyHB4AAKD8crkvvPX395enp6dsNptq1KghSapUqVKZti0oKNCSJUsUGBjosPypp55Snz59JEljx45VdHS0EhISFBMTI0kaNmyYnnrqKXv7xMREjRs3Tv3795ck1alTR5MnT9aYMWM0YcIEe7u+ffs6bHf06FGH/U6bNk0tW7bU/Pnz7cv+7//+77L1JyUlKTExsUzHCgAAXJ/LzajdiFq1apUKaZIUFRVlf169enVJUuPGjR2WnT9/3j6DtWfPHk2aNEm+vr72R8kM37lz5+zbtWzZ8or1lMyolVV8fLyys7PtjxMnTpR5WwAA4HpcbkbtUtzc3GQYhsOywsLCUu18fHwuub2Hh4f9ecl1bZdaVlxcLEnKy8tTYmKievfuXaqvkmvfrrS/Et7e3ldc/3tWq1VWq/WatgEAAK7LJYOap6enw3VcgYGBys3N1dmzZ+3h6LfXoN1szZs3V3p6usLDw2+on6ioKK1fv57TmQAA4JJcMqiFhYVp69atOn78uHx9fdWmTRvZbDb9+c9/1tChQ7V161alpKTcsv2PHz9e3bt3V2hoqB599FG5ublpz5492rdvn6ZMmVLmfuLj49W4cWO98MILGjx4sDw9PbVhwwY99thjqlq16i2rHwAAuAaXvEZt1KhRqlSpkho2bKjAwEDl5OTo//2//6fPPvtMjRs31nvvvaeJEyfesv3HxMTo008/1T//+U+1atVKbdu21axZs1SrVq1r6qdevXr65z//qT179qh169aKjo7WypUr5e7ukvkZAADcZBbj9xd3wWXk5OTI399fIXHL5Wa1ObscAIALOJ7czdklVHgln9/Z2dny8/O7YluXnFEDAACoCAhqAAAAJsXFUOXAvsSYq06dAgAA18OMGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCmCGgAAgEkR1AAAAEzK3dkF4MY1mrBWblabs8sAAKBcOZ7czdklMKMGAABgVgQ1AAAAkyKoAQAAmBRB7TYKCwvT7NmznV0GAABwEdxMcBtt27ZNPj4+zi4DAAC4CILabRQYGOjsEgAAgAupsKc+i4uLNW3aNIWHh8tqtSo0NFRTp05VamqqLBaLzpw5Y2+7e/duWSwWHT9+XJKUkpKigIAAffrpp4qMjJTNZtOjjz6qc+fOafHixQoLC9Mdd9yhoUOHqqioyN7P7099WiwWLVy4UL169ZLNZlNERIRWrVp1m0YAAACYXYWdUYuPj9dbb72lWbNm6Z577lFWVpYOHTpU5u3PnTunuXPnatmyZcrNzVXv3r3Vq1cvBQQE6LPPPtPRo0f1yCOPqF27dnr88ccv209iYqKmTZum1157TfPmzVNsbKy+++47ValSpVTb/Px85efn21/n5ORc20EDAACXUiFn1HJzczVnzhxNmzZN/fv3V926dXXPPffo6aefLnMfhYWFeuONN9SsWTPde++9evTRR7V582a9/fbbatiwobp37677779fGzZsuGI/AwYM0JNPPqnw8HC98sorysvL09dff33JtklJSfL397c/QkJCrum4AQCAa6mQQe3gwYPKz89Xp06drrsPm82munXr2l9Xr15dYWFh8vX1dVh26tSpK/YTFRVlf+7j4yM/P7/LbhMfH6/s7Gz748SJE9ddPwAAML8KeerT29v7suvc3C5mV8Mw7MsKCwtLtfPw8HB4bbFYLrmsuLj4irVcyzZWq1VWq/WK/QEAgPKjQs6oRUREyNvbW+vXry+1ruTOzKysLPuy3bt3367SAAAA7CrkjJqXl5fGjh2rMWPGyNPTU+3atdPPP/+s/fv3q1+/fgoJCdHEiRM1depUffvtt5oxY4azSwYAABVQhQxqkpSQkCB3d3eNHz9eJ0+eVFBQkAYPHiwPDw+99957ev755xUVFaVWrVppypQpeuyxx5xdMgAAqGAsxm8vxoJLycnJuXj3Z9xyuVltzi4HAIBy5Xhyt1vSb8nnd3Z2tvz8/K7YtkJeowYAAOAKCGoAAAAmVWGvUStP9iXGXHXqFAAAuB5m1AAAAEyKoAYAAGBSBDUAAACTIqgBAACYFEENAADApAhqAAAAJkVQAwAAMCm+R82Flfz6V05OjpMrAQAAZVXyuV2WX/EkqLmwX375RZIUEhLi5EoAAMC1ys3Nlb+//xXbENRcWJUqVSRJmZmZV/2HLs9ycnIUEhKiEydOVNhfaGAMLmIcGIMSjANjIJl3DAzDUG5uroKDg6/alqDmwtzcLl5i6O/vb6o3oLP4+flV+HFgDC5iHBiDEowDYyCZcwzKOsHCzQQAAAAmRVADAAAwKYKaC7NarZowYYKsVquzS3EqxoExKME4MAYlGAfGQCofY2AxynJvKAAAAG47ZtQAAABMiqAGAABgUgQ1AAAAkyKoAQAAmBRBzYX99a9/VVhYmLy8vNSmTRt9/fXXzi7plpk4caIsFovDo379+vb158+f14svvqg777xTvr6+euSRR/TTTz85seKb49///rd69Oih4OBgWSwWffLJJw7rDcPQ+PHjFRQUJG9vb3Xu3FmHDx92aHP69GnFxsbKz89PAQEBGjRokPLy8m7jUdyYq43BgAEDSr03unbt6tDG1ccgKSlJrVq1UuXKlVWtWjU9/PDDSk9Pd2hTlr+BzMxMdevWTTabTdWqVdPo0aN14cKF23ko160sY9ChQ4dS74XBgwc7tHHlMZCkN954Q1FRUfYvcI2Ojtbnn39uX1/e3wfS1cegvL0PCGou6v3339eIESM0YcIE7dy5U02aNFFMTIxOnTrl7NJumf/7v/9TVlaW/bF582b7uuHDh+sf//iHPvjgA23cuFEnT55U7969nVjtzXH27Fk1adJEf/3rXy+5ftq0aZo7d67efPNNbd26VT4+PoqJidH58+ftbWJjY7V//36tW7dOn376qf7973/r2WefvV2HcMOuNgaS1LVrV4f3xnvvveew3tXHYOPGjXrxxRf11Vdfad26dSosLFSXLl109uxZe5ur/Q0UFRWpW7duKigo0JdffqnFixcrJSVF48ePd8YhXbOyjIEkPfPMMw7vhWnTptnXufoYSNJdd92l5ORk7dixQ9u3b1fHjh3Vs2dP7d+/X1L5fx9IVx8DqZy9Dwy4pNatWxsvvvii/XVRUZERHBxsJCUlObGqW2fChAlGkyZNLrnuzJkzhoeHh/HBBx/Ylx08eNCQZGzZsuU2VXjrSTI+/vhj++vi4mKjRo0axmuvvWZfdubMGcNqtRrvvfeeYRiGceDAAUOSsW3bNnubzz//3LBYLMYPP/xw22q/WX4/BoZhGP379zd69ux52W3K2xgYhmGcOnXKkGRs3LjRMIyy/Q189tlnhpubm/Hjjz/a27zxxhuGn5+fkZ+ff3sP4Cb4/RgYhmHcd999xrBhwy67TXkbgxJ33HGHsXDhwgr5PihRMgaGUf7eB8youaCCggLt2LFDnTt3ti9zc3NT586dtWXLFidWdmsdPnxYwcHBqlOnjmJjY5WZmSlJ2rFjhwoLCx3Go379+goNDS3X43Hs2DH9+OOPDsft7++vNm3a2I97y5YtCggIUMuWLe1tOnfuLDc3N23duvW213yrpKamqlq1aoqMjNTzzz+vX375xb6uPI5Bdna2JKlKlSqSyvY3sGXLFjVu3FjVq1e3t4mJiVFOTo7DTISr+P0YlFi6dKmqVq2qRo0aKT4+XufOnbOvK29jUFRUpGXLluns2bOKjo6ukO+D349BifL0PuBH2V3Qf/7zHxUVFTm8ySSpevXqOnTokJOqurXatGmjlJQURUZGKisrS4mJiWrfvr327dunH3/8UZ6engoICHDYpnr16vrxxx+dU/BtUHJsl3oflKz78ccfVa1aNYf17u7uqlKlSrkZm65du6p3796qXbu2MjIy9Oc//1kPPvigtmzZokqVKpW7MSguLlZcXJzatWunRo0aSVKZ/gZ+/PHHS75XSta5kkuNgST17dtXtWrVUnBwsPbu3auxY8cqPT1dH330kaTyMwbffPONoqOjdf78efn6+urjjz9Ww4YNtXv37grzPrjcGEjl731AUINLePDBB+3Po6Ki1KZNG9WqVUvLly+Xt7e3EyuDsz3xxBP2540bN1ZUVJTq1q2r1NRUderUyYmV3Rovvvii9u3b53CNZkVzuTH47XWHjRs3VlBQkDp16qSMjAzVrVv3dpd5y0RGRmr37t3Kzs7WihUr1L9/f23cuNHZZd1WlxuDhg0blrv3Aac+XVDVqlVVqVKlUnfy/PTTT6pRo4aTqrq9AgICVK9ePR05ckQ1atRQQUGBzpw549CmvI9HybFd6X1Qo0aNUjeYXLhwQadPny63Y1OnTh1VrVpVR44ckVS+xmDIkCH69NNPtWHDBt1111325WX5G6hRo8Yl3ysl61zF5cbgUtq0aSNJDu+F8jAGnp6eCg8PV4sWLZSUlKQmTZpozpw5Fep9cLkxuBRXfx8Q1FyQp6enWrRoofXr19uXFRcXa/369Q7n6MuzvLw8ZWRkKCgoSC1atJCHh4fDeKSnpyszM7Ncj0ft2rVVo0YNh+POycnR1q1b7ccdHR2tM2fOaMeOHfY2//rXv1RcXGz/j1d58/333+uXX35RUFCQpPIxBoZhaMiQIfr444/1r3/9S7Vr13ZYX5a/gejoaH3zzTcOoXXdunXy8/OznzIys6uNwaXs3r1bkhzeC648BpdTXFys/Pz8CvE+uJySMbgUl38fOPtuBlyfZcuWGVar1UhJSTEOHDhgPPvss0ZAQIDDXSzlyciRI43U1FTj2LFjRlpamtG5c2ejatWqxqlTpwzDMIzBgwcboaGhxr/+9S9j+/btRnR0tBEdHe3kqm9cbm6usWvXLmPXrl2GJGPmzJnGrl27jO+++84wDMNITk42AgICjJUrVxp79+41evbsadSuXdv49ddf7X107drVaNasmbF161Zj8+bNRkREhPHkk08665Cu2ZXGIDc31xg1apSxZcsW49ixY8YXX3xhNG/e3IiIiDDOnz9v78PVx+D55583/P39jdTUVCMrK8v+OHfunL3N1f4GLly4YDRq1Mjo0qWLsXv3bmPNmjVGYGCgER8f74xDumZXG4MjR44YkyZNMrZv324cO3bMWLlypVGnTh3j3nvvtffh6mNgGIYxbtw4Y+PGjcaxY8eMvXv3GuPGjTMsFovxz3/+0zCM8v8+MIwrj0F5fB8Q1FzYvHnzjNDQUMPT09No3bq18dVXXzm7pFvm8ccfN4KCggxPT0+jZs2axuOPP24cOXLEvv7XX381XnjhBeOOO+4wbDab0atXLyMrK8uJFd8cGzZsMCSVevTv398wjItf0ZGQkGBUr17dsFqtRqdOnYz09HSHPn755RfjySefNHx9fQ0/Pz/jqaeeMnJzc51wNNfnSmNw7tw5o0uXLkZgYKDh4eFh1KpVy3jmmWdK/Q+Lq4/BpY5fkrFo0SJ7m7L8DRw/ftx48MEHDW9vb6Nq1arGyJEjjcLCwtt8NNfnamOQmZlp3HvvvUaVKlUMq9VqhIeHG6NHjzays7Md+nHlMTAMwxg4cKBRq1Ytw9PT0wgMDDQ6depkD2mGUf7fB4Zx5TEoj+8Di2EYxu2bvwMAAEBZcY0aAACASRHUAAAATIqgBgAAYFIENQAAAJMiqAEAAJgUQQ0AAMCkCGoAAAAmRVADAAAwKYIaAACASRHUAAAATIqgBgAAYFIENQAAAJP6/9OBNWMtWcYUAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "indian_ingredient_df = create_ingredient_df(indian_df)\n", + "indian_ingredient_df.head(10).plot.barh()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAqYAAAGdCAYAAADALrFsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABNtUlEQVR4nO3deVhV5f7//9dGZDODOIIhaKDiEU0c0mgwMdHMVE7qIY9p6uljaopDDscRhzALS22w7ORw0swsbTAHJDHFIpwolahIwo4W5gCiCQj794df968domjmXsDzcV37utjrvtda77UXxct7rXttk8VisQgAAACwMwd7FwAAAABIBFMAAAAYBMEUAAAAhkAwBQAAgCEQTAEAAGAIBFMAAAAYAsEUAAAAhkAwBQAAgCE42rsA4HqUlJTo2LFj8vDwkMlksnc5AACgHCwWi86ePSs/Pz85OJQ9LkowRYVy7Ngx+fv727sMAABwA44eParbbrutzHaCKSoUDw8PSZd+sT09Pe1cDQAAKI+8vDz5+/tb/46XhWCKCuXy5XtPT0+CKQAAFcy1bsNj8hMAAAAMgWAKAAAAQyCYAgAAwBC4xxQAAFQpFotFFy9eVHFxsb1LqTSqVasmR0fHP/0oR4IpAACoMgoLC3X8+HGdP3/e3qVUOq6urvL19ZWTk9MNb4NgCgAAqoSSkhIdOXJE1apVk5+fn5ycnPiylpvAYrGosLBQJ06c0JEjRxQcHHzVh+hfDcEUFVLzGVvkYHa1dxlAlZU1r7u9SwCuW2FhoUpKSuTv7y9XV/6G3EwuLi6qXr26fvzxRxUWFsrZ2fmGtsPkJwAAUKXc6Ggeru5mfK6cGQAAABgCwRQAAACGwD2muCEzZ87Uhg0bdODAgTL7DBo0SGfOnNGGDRtuWV0AAFyvwEkbb+n+7HGPdmBgoGJiYhQTE3PL9309GDGt4gYNGqRevXrZuwwAAACCKQAAAIyBYGonr7/+uvz8/FRSUmKzvGfPnho8eLAk6YMPPlBYWJicnZ3VqFEjxcbG6uLFi9a+33zzje6++245OzurWbNm2rZtm0wmk82l86NHj6pv377y9vaWj4+PevbsqaysLEmXLsevWLFCH3zwgUwmk0wmk5KSkiRJEydOVOPGjeXq6qpGjRpp2rRpKioqKnUcr732mvWxG3379lVubm6Zx1xSUqK4uDg1bNhQLi4uatmypdatW3eDnyAAAFXDtTJDZmamevbsqbp168rd3V1t27bVtm3bytxeVlaWTCaTze14Z86csckBknTw4EF169ZN7u7uqlu3rgYMGKBff/31Zh+eDYKpnfTp00cnT57U9u3brctOnTqlzZs3q3///tq5c6cee+wxjR49WocPH9Zrr72m5cuXa+7cuZKk4uJi9erVS66urkpJSdHrr7+uKVOm2OyjqKhIkZGR8vDw0M6dO5WcnCx3d3d17dpVhYWFGj9+vPr27auuXbvq+PHjOn78uO666y5JkoeHh5YvX67Dhw9r4cKFWrp0qV544QWb7X///fdau3atPvroI23evFn79+/X8OHDyzzmuLg4rVy5UkuWLNGhQ4c0ZswY/fOf/9SOHTvKXKegoEB5eXk2LwAAqpJrZYb8/Hw9+OCDSkxM1P79+9W1a1f16NFD2dnZN7zPM2fOqFOnTmrVqpX27NmjzZs365dfflHfvn1vxiGViclPdlKjRg1169ZNq1evVkREhCRp3bp1qlWrlu6//3516dJFkyZN0sCBAyVJjRo10uzZszVhwgTNmDFDCQkJyszMVFJSkurVqydJmjt3rh544AHrPt555x2VlJTojTfesH6zxbJly+Tt7a2kpCR16dJFLi4uKigosG7jsqlTp1p/DgwM1Pjx47VmzRpNmDDBuvzChQtauXKl6tevL0lavHixunfvrvj4+FLbKygo0DPPPKNt27apQ4cO1mPatWuXXnvtNd13331X/Jzi4uIUGxt7/R8wAACVxLUyg4ODg1q2bGntP3v2bK1fv14ffvihRo4ceUP7fOmll9SqVSs988wz1mVvvvmm/P399e2336px48Z/7qDKwIipHfXv31/vvfeeCgoKJEmrVq3SP/7xDzk4OCgtLU2zZs2Su7u79fWvf/3L+v2+GRkZ8vf3twmA7dq1s9l+Wlqavv/+e3l4eFi34ePjowsXLigzM/Oqtb3zzjsKDw9XvXr15O7urqlTp5b6l1eDBg2soVSSOnTooJKSEmVkZJTa3vfff6/z58/rgQcesDmmlStXXrWWyZMnKzc31/o6evToVesGAKAyulpmyM/P1/jx4xUSEiJvb2+5u7srPT39T42YpqWlafv27TZ/s5s2bSpJ18wQfwYjpnbUo0cPWSwWbdy4UW3bttXOnTutl8vz8/MVGxurqKioUuuV92u+8vPz1bp1a61atapUW+3atctc7/PPP1f//v0VGxuryMhIeXl5ac2aNYqPjy/nkV25FknauHGjTZiVJLPZXOZ6ZrP5qu0AAFQFV8sM48ePV0JCgp5//nkFBQXJxcVFjzzyiAoLC6+4rcvf0GSxWKzL/jiPJD8/Xz169NCzzz5ban1fX9+bdVilEEztyNnZWVFRUVq1apW+//57NWnSRGFhYZKksLAwZWRkKCgo6IrrNmnSREePHtUvv/yiunXrSpJSU1Nt+oSFhemdd95RnTp15OnpecXtODk5qbi42GbZ7t27FRAQYHPP6o8//lhq3ezsbB07dkx+fn6SpC+++EIODg5q0qRJqb7NmjWT2WxWdnZ2mZftAQDAlV0tMyQnJ2vQoEHq3bu3pEuh8vJE5yu5PDh1/PhxtWrVSpJKPZc8LCxM7733ngIDA+XoeOviIpfy7ax///7auHGj3nzzTfXv39+6fPr06Vq5cqViY2N16NAhpaena82aNdZ7Px944AHdfvvtGjhwoL766islJydb2y7fT9q/f3/VqlVLPXv21M6dO3XkyBElJSVp1KhR+umnnyRdun/0q6++UkZGhn799VcVFRUpODhY2dnZWrNmjTIzM7Vo0SKtX7++VO3Ozs4aOHCg0tLStHPnTo0aNUp9+/YtdX+pdGky1fjx4zVmzBitWLFCmZmZ2rdvnxYvXqwVK1bc9M8VAIDKpqzMEBwcrPfff18HDhxQWlqaHn300VIz+H/PxcVF7du317x585Senq4dO3bYzC2RpBEjRujUqVOKjo5WamqqMjMztWXLFj3++OOlBrRuJkZM7axTp07y8fFRRkaGHn30UevyyMhIffzxx5o1a5aeffZZVa9eXU2bNtXQoUMlSdWqVdOGDRs0dOhQtW3bVo0aNdJzzz2nHj16WC/1u7q66rPPPtPEiRMVFRWls2fPqn79+oqIiLCOoP7rX/9SUlKS2rRpo/z8fG3fvl0PP/ywxowZo5EjR6qgoEDdu3fXtGnTNHPmTJvag4KCFBUVpQcffFCnTp3SQw89pFdeeaXMY509e7Zq166tuLg4/fDDD/L29lZYWJj+/e9/3+RPFQCA8rPHNzHdiLIyw4IFCzR48GDdddddqlWrliZOnHjNp9i8+eabGjJkiFq3bq0mTZpo/vz56tKli7Xdz89PycnJmjhxorp06aKCggIFBASoa9eu1lsB/gomy+9vMECFlpycrLvvvlvff/+9br/9dnuX85fIy8uTl5eX/GPWysHsau9ygCqrovwhB37vwoULOnLkiBo2bFju+Roov6t9vpf/fufm5pZ5e6HEiGmFtn79erm7uys4OFjff/+9Ro8erfDw8EobSgEAQOVGMK3Azp49q4kTJyo7O1u1atVS586d/9TMeQAAAHviUj4qlPJeCgAA4I+4lP/XuhmX8pmVDwAAAEMgmAIAgCqFi8V/jZvxuRJMAQBAlVC9enVJ0vnz5+1cSeV0+XO9/DnfCCY/AQCAKqFatWry9vZWTk6OpEvP+778pTS4cRaLRefPn1dOTo68vb1VrVq1G94WwRQAAFQZl7+d8HI4xc3j7e19xW9/vB4EUwAAUGWYTCb5+vqqTp06Kioqsnc5lUb16tX/1EjpZQRTAABQ5VSrVu2mBCncXEx+AgAAgCEQTAEAAGAIBFMAAAAYAsEUAAAAhkAwBQAAgCEQTAEAAGAIBFMAAAAYAsEUAAAAhkAwBQAAgCEQTAEAAGAIBFMAAAAYgqO9CwBuRPMZW+RgdrV3GQCuIWted3uXAKACYcQUAAAAhkAwBQAAgCEQTAEAAGAIVSqYmkwmbdiwwd5l4P8ZNGiQevXqZe8yAACAQRg+mBImAQAAqoY/FUwLCwtvVh0AAACo4q4rmHbs2FEjR45UTEyMatWqpcjISO3YsUPt2rWT2WyWr6+vJk2apIsXL1rX2bx5s+6++255e3urZs2aeuihh5SZmWltLyws1MiRI+Xr6ytnZ2cFBAQoLi5OkhQYGChJ6t27t0wmk/W9JH3wwQcKCwuTs7OzGjVqpNjYWJv9fvfdd7r33nvl7OysZs2aKSEhodzHebWaJOnMmTMaOnSoateuLU9PT3Xq1ElpaWnW9rS0NN1///3y8PCQp6enWrdurT179kiSTp48qejoaNWvX1+urq4KDQ3V22+/XepzfuqppxQTE6MaNWqobt26Wrp0qc6dO6fHH39cHh4eCgoK0qZNm2zWO3jwoLp16yZ3d3fVrVtXAwYM0K+//lquY163bp1CQ0Pl4uKimjVrqnPnzjp37py1/Y033lBISIicnZ3VtGlTvfLKKzbrHz16VH379pW3t7d8fHzUs2dPZWVlWduLi4s1duxY6+/BhAkTZLFYylUbAACoGq57xHTFihVycnJScnKyZs6cqQcffFBt27ZVWlqaXn31Vf3nP//RnDlzrP3PnTunsWPHas+ePUpMTJSDg4N69+6tkpISSdKiRYv04Ycfau3atcrIyNCqVausATQ1NVWStGzZMh0/ftz6fufOnXrsscc0evRoHT58WK+99pqWL1+uuXPnSpJKSkoUFRUlJycnpaSkaMmSJZo4cWK5j/FqNUlSnz59lJOTo02bNmnv3r0KCwtTRESETp06JUnq37+/brvtNqWmpmrv3r2aNGmSqlevLkm6cOGCWrdurY0bN+rgwYN64oknNGDAAH355ZelPudatWrpyy+/1FNPPaUnn3xSffr00V133aV9+/apS5cuGjBggM6fPy/pUlju1KmTWrVqpT179mjz5s365Zdf1Ldv32se7/HjxxUdHa3BgwcrPT1dSUlJioqKsgbHVatWafr06Zo7d67S09P1zDPPaNq0aVqxYoUkqaioSJGRkfLw8NDOnTuVnJwsd3d3de3a1TqqHh8fr+XLl+vNN9/Url27dOrUKa1fv/6atRUUFCgvL8/mBQAAKieT5TqGrTp27Ki8vDzt27dPkjRlyhS99957Sk9Pl8lkkiS98sormjhxonJzc+XgUDr3/vrrr6pdu7a+/vprNW/eXKNGjdKhQ4e0bds26zZsCjSZtH79eptJMp07d1ZERIQmT55sXfbWW29pwoQJOnbsmLZu3aru3bvrxx9/lJ+fn6RLI7fdunUrta0ruVpNu3btUvfu3ZWTkyOz2WxdHhQUpAkTJuiJJ56Qp6enFi9erIEDB179A/1/HnroITVt2lTPP/+8pEufc3FxsXbu3Cnp0mijl5eXoqKitHLlSknSzz//LF9fX33++edq37695syZo507d2rLli3W7f7000/y9/dXRkaGGjduXOb+9+3bp9atWysrK0sBAQGl2oOCgjR79mxFR0dbl82ZM0effPKJdu/erbfeektz5syx+T0oLCyUt7e3NmzYoC5dusjPz09jxozR008/LUm6ePGiGjZsqNatW1/1HuKZM2cqNja21HL/mLU8YB+oAHjAPgBJysvLk5eXl3Jzc+Xp6Vlmv+seMW3durX15/T0dHXo0MEmvIWHhys/P18//fSTpEuX1KOjo9WoUSN5enpaRx6zs7MlXZqZfeDAATVp0kSjRo3S1q1br1lDWlqaZs2aJXd3d+vrX//6l44fP67z588rPT1d/v7+1lAqSR06dCj3MV6tprS0NOXn56tmzZo2+z9y5Ij1FoWxY8dq6NCh6ty5s+bNm2dz60JxcbFmz56t0NBQ+fj4yN3dXVu2bLF+Hpe1aNHC+nO1atVUs2ZNhYaGWpfVrVtXkpSTk2Ota/v27TY1NW3aVJJs9n8lLVu2VEREhEJDQ9WnTx8tXbpUp0+flnRpxDszM1NDhgyx2facOXOs201LS9P3338vDw8Pa7uPj48uXLigzMxM5ebm6vjx47rzzjut+3R0dFSbNm2ueS4mT56s3Nxc6+vo0aPXXAcAAFRM1/2VpG5ubtfVv0ePHgoICNDSpUvl5+enkpISNW/e3HqJNywsTEeOHNGmTZu0bds29e3bV507d9a6devK3GZ+fr5iY2MVFRVVqs3Z2fn6DugKrlZTfn6+fH19lZSUVGo9b29vSZdG+R599FFt3LhRmzZt0owZM7RmzRr17t1bzz33nBYuXKgXX3xRoaGhcnNzU0xMTKmJZJcv/V9mMplsll3+x8DlWyLy8/PVo0cPPfvss6Xq8vX1verxVqtWTQkJCdq9e7e2bt2qxYsXa8qUKUpJSZGr66VRyaVLl9oEy8vrXd5369attWrVqlLbrl279lX3fS1ms9lmZBoAAFRe1x1Mfy8kJETvvfeeLBaLNSglJyfLw8NDt912m06ePKmMjAwtXbpU99xzj6RLl8L/yNPTU/369VO/fv30yCOPqGvXrjp16pR8fHxUvXp1FRcX2/QPCwtTRkaGgoKCyqzr6NGjOn78uDWUffHFF9d1bGXVFBYWpp9//lmOjo42953+UePGjdW4cWONGTNG0dHRWrZsmXr37q3k5GT17NlT//znPyVdCpbffvutmjVrdl31/VFYWJjee+89BQYGytHx+k+ryWRSeHi4wsPDNX36dAUEBGj9+vUaO3as/Pz89MMPP6h///5l7vudd95RnTp1yhye9/X1VUpKiu69915Jly7lX74/FwAAQPqTj4saPny4jh49qqeeekrffPONPvjgA82YMUNjx46Vg4ODatSooZo1a+r111/X999/r08//VRjx4612caCBQv09ttv65tvvtG3336rd999V/Xq1bOOPgYGBioxMVE///yz9fLy9OnTtXLlSsXGxurQoUNKT0/XmjVrNHXqVEmX7kFt3LixBg4cqLS0NO3cuVNTpkwp93FdrabOnTurQ4cO6tWrl7Zu3aqsrCzt3r1bU6ZM0Z49e/Tbb79p5MiRSkpK0o8//qjk5GSlpqYqJCREkhQcHGwdnUxPT9f//d//6Zdffvkzp0GSNGLECJ06dUrR0dFKTU1VZmamtmzZoscff7xUsP+jlJQUPfPMM9qzZ4+ys7P1/vvv68SJE9aaY2NjFRcXp0WLFunbb7/V119/rWXLlmnBggWSLk32qlWrlnr27KmdO3fqyJEjSkpK0qhRo6y3dIwePVrz5s3Thg0b9M0332j48OE6c+bMnz5uAABQefypYFq/fn198skn+vLLL9WyZUsNGzZMQ4YMsQZEBwcHrVmzRnv37lXz5s01ZswYPffcczbb8PDw0Pz589WmTRu1bdtWWVlZ+uSTT6wTp+Lj45WQkCB/f3+1atVKkhQZGamPP/5YW7duVdu2bdW+fXu98MIL1ok7Dg4OWr9+vX777Te1a9dOQ4cOtc7YL4+r1WQymfTJJ5/o3nvv1eOPP67GjRvrH//4h3788UfVrVtX1apV08mTJ/XYY4+pcePG6tu3r7p162adwDN16lSFhYUpMjJSHTt2VL169W7Ktx/5+fkpOTlZxcXF6tKli0JDQxUTEyNvb+8rTkL7PU9PT3322Wd68MEH1bhxY02dOlXx8fHq1q2bJGno0KF64403tGzZMoWGhuq+++7T8uXL1bBhQ0mSq6urPvvsMzVo0EBRUVEKCQnRkCFDdOHCBesI6rhx4zRgwAANHDhQHTp0kIeHh3r37v2njxsAAFQe1zUrH7C3y7P6mJUPVAzMygcg/YWz8gEAAIC/QpUMps8884zNo49+/7p8+boyyc7OLvN43d3dSz2qCgAAwB6q5KX8U6dOWb+l6Y9cXFxUv379W1zRX+vixYs2Xw/6Rzc6k98eynspAAAAGEd5/35XjDRyk/n4+MjHx8feZdwyjo6OZT5aCwAAwCiq5KV8AAAAGA/BFAAAAIZAMAUAAIAhEEwBAABgCARTAAAAGALBFAAAAIZAMAUAAIAhEEwBAABgCARTAAAAGALBFAAAAIZAMAUAAIAhEEwBAABgCARTAAAAGALBFAAAAIZAMAUAAIAhEEwBAABgCARTAAAAGIKjvQsAbkTzGVvkYHa1dxkAboKsed3tXQIAg2DEFAAAAIZAMAUAAIAhEEwBAABgCARTKDAwUC+++KK9ywAAAFUcwRQAAACGQDAFAACAIRBMK4h169YpNDRULi4uqlmzpjp37qxz586ppKREs2bN0m233Saz2aw77rhDmzdvtq7XqVMnjRw50mZbJ06ckJOTkxITE63Lzp49q+joaLm5ual+/fp6+eWXbdY5c+aMhg4dqtq1a8vT01OdOnVSWlqatT0zM1M9e/ZU3bp15e7urrZt22rbtm022wgMDNQzzzyjwYMHy8PDQw0aNNDrr79+Mz8mAABQgRFMK4Djx48rOjpagwcPVnp6upKSkhQVFSWLxaKFCxcqPj5ezz//vL766itFRkbq4Ycf1nfffSdJGjp0qFavXq2CggLr9t566y3Vr19fnTp1si577rnn1LJlS+3fv1+TJk3S6NGjlZCQYG3v06ePcnJytGnTJu3du1dhYWGKiIjQqVOnJEn5+fl68MEHlZiYqP3796tr167q0aOHsrOzbY4lPj5ebdq00f79+zV8+HA9+eSTysjIKPPYCwoKlJeXZ/MCAACVk8lisVjsXQSubt++fWrdurWysrIUEBBg01a/fn2NGDFC//73v63L2rVrp7Zt2+rll1/WhQsX5OfnpyVLlqhv376SpJYtWyoqKkozZsyQdGkkMyQkRJs2bbJu4x//+Ify8vL0ySefaNeuXerevbtycnJkNputfYKCgjRhwgQ98cQTV6y7efPmGjZsmHXENjAwUPfcc4/++9//SpIsFovq1aun2NhYDRs27IrbmDlzpmJjY0st949ZywP2gUqCB+wDlV9eXp68vLyUm5srT0/PMvsxYloBtGzZUhEREQoNDVWfPn20dOlSnT59Wnl5eTp27JjCw8Nt+oeHhys9PV2S5OzsrAEDBujNN9+UdCnkHjx4UIMGDbJZp0OHDqXeX95GWlqa8vPzVbNmTbm7u1tfR44cUWZmpqRLI6bjx49XSEiIvL295e7urvT09FIjpi1atLD+bDKZVK9ePeXk5JR57JMnT1Zubq71dfTo0ev45AAAQEXCV5JWANWqVVNCQoJ2796trVu3avHixZoyZYrNpfarGTp0qO644w799NNPWrZsmTp16lRq5PVq8vPz5evrq6SkpFJt3t7ekqTx48crISFBzz//vIKCguTi4qJHHnlEhYWFNv2rV69u895kMqmkpKTMfZvNZptRWgAAUHkRTCsIk8mk8PBwhYeHa/r06QoICFBiYqL8/PyUnJys++67z9o3OTlZ7dq1s74PDQ1VmzZttHTpUq1evVovvfRSqe1/8cUXpd6HhIRIksLCwvTzzz/L0dFRgYGBV6wvOTlZgwYNUu/evSVdCrNZWVl/8qgBAEBVQjCtAFJSUpSYmKguXbqoTp06SklJ0YkTJxQSEqKnn35aM2bM0O2336477rhDy5Yt04EDB7Rq1SqbbQwdOlQjR46Um5ubNTz+XnJysubPn69evXopISFB7777rjZu3ChJ6ty5szp06KBevXpp/vz5aty4sY4dO6aNGzeqd+/eatOmjYKDg/X++++rR48eMplMmjZt2lVHQgEAAP6IYFoBeHp66rPPPtOLL76ovLw8BQQEKD4+Xt26dVNkZKRyc3M1btw45eTkqFmzZvrwww8VHBxss43o6GjFxMQoOjpazs7OpfYxbtw47dmzR7GxsfL09NSCBQsUGRkp6dJo7SeffKIpU6bo8ccf14kTJ1SvXj3de++9qlu3riRpwYIFGjx4sO666y7VqlVLEydOZAY9AAC4LszKryKysrJ0++23KzU1VWFhYfYu54ZdntXHrHyg8mBWPlD5lXdWPiOmlVxRUZFOnjypqVOnqn379hU6lAIAgMqNx0VVcsnJyfL19VVqaqqWLFli73IAAADKxKV8VCjlvRQAAACMgwfsAwAAoEIhmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAEMgmAIAAMAQHO1dAHAjms/YIgezq73LAFCBZc3rbu8SAPwBI6YAAAAwBIIpAAAADIFgCgAAAEMgmOKGmUwmbdiwwd5lAACASoLJT7hhx48fV40aNexdBgAAqCQIprghhYWFqlevnr3LAAAAlQiX8lEuHTt21MiRIxUTE6NatWopMjKy1KX8n376SdHR0fLx8ZGbm5vatGmjlJQUa/sHH3ygsLAwOTs7q1GjRoqNjdXFixftcDQAAMCIGDFFua1YsUJPPvmkkpOTJUlNmza1tuXn5+u+++5T/fr19eGHH6pevXrat2+fSkpKJEk7d+7UY489pkWLFumee+5RZmamnnjiCUnSjBkzytxnQUGBCgoKrO/z8vL+ikMDAAAGQDBFuQUHB2v+/PlXbFu9erVOnDih1NRU+fj4SJKCgoKs7bGxsZo0aZIGDhwoSWrUqJFmz56tCRMmXDWYxsXFKTY29iYeBQAAMCqCKcqtdevWZbYdOHBArVq1sobSP0pLS1NycrLmzp1rXVZcXKwLFy7o/PnzcnW98rc4TZ48WWPHjrW+z8vLk7+//w0eAQAAMDKCKcrNzc2tzDYXF5errpufn6/Y2FhFRUWVanN2di5zPbPZLLPZXP4iAQBAhUUwxU3RokULvfHGGzp16tQVR03DwsKUkZFhc3kfAADg95iVj5siOjpa9erVU69evZScnKwffvhB7733nj7//HNJ0vTp07Vy5UrFxsbq0KFDSk9P15o1azR16lQ7Vw4AAIyCYIqbwsnJSVu3blWdOnX04IMPKjQ0VPPmzVO1atUkSZGRkfr444+1detWtW3bVu3bt9cLL7yggIAAO1cOAACMwmSxWCz2LgIor7y8PHl5eck/Zq0czFeeMAUA5ZE1r7u9SwCqjMt/v3Nzc+Xp6VlmP0ZMAQAAYAgEUwAAABgCs/JRIR2MjbzqpQAAAFDxMGIKAAAAQyCYAgAAwBAIpgAAADAEgikAAAAMgWAKAAAAQyCYAgAAwBAIpgAAADAEgikAAAAMgWAKAAAAQyCYAgAAwBAIpgAAADAEgikAAAAMgWAKAAAAQyCYAgAAwBAIpgAAADAEgikAAAAMgWAKAAAAQyCYAgAAwBAc7V0AcCOaz9giB7OrvcsAUIVkzetu7xKASo8RUwAAABgCwRQAAACGQDAFAACAIRBMr6Jjx46KiYkpsz0wMFAvvvjiLdsfAABAZUYwBQAAgCEQTGEIRUVF9i4BAADYGcH0Gi5evKiRI0fKy8tLtWrV0rRp02SxWK7Yd8GCBQoNDZWbm5v8/f01fPhw5efn2/RJTk5Wx44d5erqqho1aigyMlKnT5++4vY2btwoLy8vrVq16pp1Dho0SL169VJsbKxq164tT09PDRs2TIWFhdY+JSUliouLU8OGDeXi4qKWLVtq3bp11vakpCSZTCZt3LhRLVq0kLOzs9q3b6+DBw9a+yxfvlze3t7asGGDgoOD5ezsrMjISB09etSmng8++EBhYWFydnZWo0aNFBsbq4sXL1rbTSaTXn31VT388MNyc3PT3Llzr3mMAACgciOYXsOKFSvk6OioL7/8UgsXLtSCBQv0xhtvXLGvg4ODFi1apEOHDmnFihX69NNPNWHCBGv7gQMHFBERoWbNmunzzz/Xrl271KNHDxUXF5fa1urVqxUdHa1Vq1apf//+5ao1MTFR6enpSkpK0ttvv633339fsbGx1va4uDitXLlSS5Ys0aFDhzRmzBj985//1I4dO2y28/TTTys+Pl6pqamqXbu2evToYTOief78ec2dO1crV65UcnKyzpw5o3/84x/W9p07d+qxxx7T6NGjdfjwYb322mtavnx5qfA5c+ZM9e7dW19//bUGDx58xWMqKChQXl6ezQsAAFROJktZw39Qx44dlZOTo0OHDslkMkmSJk2apA8//FCHDx9WYGCgYmJiypywtG7dOg0bNky//vqrJOnRRx9Vdna2du3aVeb+7rjjDgUHB2vKlCn64IMPdN9995Wr1kGDBumjjz7S0aNH5ep66cHzS5Ys0dNPP63c3FwVFRXJx8dH27ZtU4cOHazrDR06VOfPn9fq1auVlJSk+++/X2vWrFG/fv0kSadOndJtt92m5cuXq2/fvlq+fLkef/xxffHFF7rzzjslSd98841CQkKUkpKidu3aqXPnzoqIiNDkyZOt+3nrrbc0YcIEHTt2TNKlEdOYmBi98MILVz2umTNn2oTry/xj1vKAfQC3FA/YB25cXl6evLy8lJubK09PzzL78c1P19C+fXtrKJWkDh06KD4+/oqjnNu2bVNcXJy++eYb5eXl6eLFi7pw4YLOnz8vV1dXHThwQH369Lnq/tatW6ecnBwlJyerbdu211Vry5YtraH0cq35+fk6evSo8vPzdf78eT3wwAM26xQWFqpVq1Y2y34fXH18fNSkSROlp6dblzk6OtrU1rRpU3l7eys9PV3t2rVTWlqakpOTbUZIi4uLbT4LSWrTps01j2ny5MkaO3as9X1eXp78/f2vuR4AAKh4CKY3SVZWlh566CE9+eSTmjt3rnx8fLRr1y4NGTJEhYWFcnV1lYuLyzW306pVK+3bt09vvvmm2rRpYxOK/4zL97pu3LhR9evXt2kzm803ZR+/31dsbKyioqJKtTk7O1t/dnNzu+a2zGbzTa8PAAAYE8H0GlJSUmzef/HFFwoODla1atVslu/du1clJSWKj4+Xg8OlW3fXrl1r06dFixZKTEy84qXpy26//XbFx8erY8eOqlatml566aVy15qWlqbffvvNGoC/+OILubu7y9/fXz4+PjKbzcrOzr7m7QFffPGFGjRoIEk6ffq0vv32W4WEhFjbL168qD179qhdu3aSpIyMDJ05c8baJywsTBkZGQoKCip37QAAAATTa8jOztbYsWP1f//3f9q3b58WL16s+Pj4Uv2CgoJUVFSkxYsXq0ePHkpOTtaSJUts+kyePFmhoaEaPny4hg0bJicnJ23fvl19+vRRrVq1rP0aN26s7du3q2PHjnJ0dCz3Q/wLCws1ZMgQTZ06VVlZWZoxY4ZGjhwpBwcHeXh4aPz48RozZoxKSkp09913Kzc3V8nJyfL09NTAgQOt25k1a5Zq1qypunXrasqUKapVq5Z69eplba9evbqeeuopLVq0SI6Ojho5cqTat29vDarTp0/XQw89pAYNGuiRRx6Rg4OD0tLSdPDgQc2ZM+c6Pn0AAFCVMCv/Gh577DH99ttvateunUaMGKHRo0friSeeKNWvZcuWWrBggZ599lk1b95cq1atUlxcnE2fxo0ba+vWrUpLS1O7du3UoUMHffDBB3J0LP3vgyZNmujTTz/V22+/rXHjxpWr1oiICAUHB+vee+9Vv3799PDDD2vmzJnW9tmzZ2vatGmKi4tTSEiIunbtqo0bN6phw4Y225k3b55Gjx6t1q1b6+eff9ZHH30kJycna7urq6smTpyoRx99VOHh4XJ3d9c777xjbY+MjNTHH3+srVu3qm3btmrfvr1eeOEFBQQElOs4AABA1cSs/Epi0KBBOnPmjDZs2HDD27g8K//06dPy9va+Yp/ly5crJiZGZ86cueH9/BmXZ/UxKx/ArcasfODGlXdWPiOmAAAAMATuMa0g3N3dy2zbtGnTLawEAADgr8Gl/Ari+++/L7Otfv365XoUVWVQ3ksBAADAOHjAfiXDo5cAAEBlxz2mAAAAMASCKQAAAAyBYAoAAABDIJgCAADAEAimAAAAMASCKQAAAAyBYAoAAABDIJgCAADAEAimAAAAMASCKQAAAAyBYAoAAABDIJgCAADAEAimAAAAMASCKQAAAAyBYAoAAABDIJgCAADAEAimAAAAMARHexcA3IjmM7bIwexq7zIAoFLKmtfd3iWgimLEFAAAAIZAMAUAAIAhEEwBAABgCART3FKBgYF68cUXre9NJpM2bNhgt3oAAIBxMPkJt1Rqaqrc3NzsXQYAADAggiluqdq1a9u7BAAAYFBcyv+LrVu3TqGhoXJxcVHNmjXVuXNnnTt3TpL0xhtvKCQkRM7OzmratKleeeUV63qFhYUaOXKkfH195ezsrICAAMXFxVnbFyxYoNDQULm5ucnf31/Dhw9Xfn6+tX358uXy9vbWxx9/rCZNmsjV1VWPPPKIzp8/rxUrVigwMFA1atTQqFGjVFxcbF2voKBA48ePV/369eXm5qY777xTSUlJ5T7e9957T3/7299kNpsVGBio+Ph4m/Y/XsoHAAC4jBHTv9Dx48cVHR2t+fPnq3fv3jp79qx27twpi8WiVatWafr06XrppZfUqlUr7d+/X//617/k5uamgQMHatGiRfrwww+1du1aNWjQQEePHtXRo0et23ZwcNCiRYvUsGFD/fDDDxo+fLgmTJhgE27Pnz+vRYsWac2aNTp79qyioqLUu3dveXt765NPPtEPP/ygv//97woPD1e/fv0kSSNHjtThw4e1Zs0a+fn5af369eratau+/vprBQcHX/V49+7dq759+2rmzJnq16+fdu/ereHDh6tmzZoaNGjQDX2GBQUFKigosL7Py8u7oe0AAADjI5j+hY4fP66LFy8qKipKAQEBkqTQ0FBJ0owZMxQfH6+oqChJUsOGDXX48GG99tprGjhwoLKzsxUcHKy7775bJpPJuv5lMTEx1p8DAwM1Z84cDRs2zCaYFhUV6dVXX9Xtt98uSXrkkUf03//+V7/88ovc3d3VrFkz3X///dq+fbv69eun7OxsLVu2TNnZ2fLz85MkjR8/Xps3b9ayZcv0zDPPXPV4FyxYoIiICE2bNk2S1LhxYx0+fFjPPffcDQfTuLg4xcbG3tC6AACgYuFS/l+oZcuWioiIUGhoqPr06aOlS5fq9OnTOnfunDIzMzVkyBC5u7tbX3PmzFFmZqYkadCgQTpw4ICaNGmiUaNGaevWrTbb3rZtmyIiIlS/fn15eHhowIABOnnypM6fP2/t4+rqag2lklS3bl0FBgbK3d3dZllOTo4k6euvv1ZxcbEaN25sU9eOHTusdV1Nenq6wsPDbZaFh4fru+++s7ld4HpMnjxZubm51tfvR40BAEDlwojpX6hatWpKSEjQ7t27tXXrVi1evFhTpkzRRx99JElaunSp7rzzzlLrSFJYWJiOHDmiTZs2adu2berbt686d+6sdevWKSsrSw899JCefPJJzZ07Vz4+Ptq1a5eGDBmiwsJCubpe+qrO6tWr22zbZDJdcVlJSYkkKT8/X9WqVdPevXutdVz2+zB7K5nNZpnNZrvsGwAA3FoE07+YyWRSeHi4wsPDNX36dAUEBCg5OVl+fn764Ycf1L9//zLX9fT0VL9+/dSvXz898sgj6tq1q06dOqW9e/eqpKRE8fHxcnC4NOi9du3aP11rq1atVFxcrJycHN1zzz3XvX5ISIiSk5NtliUnJ6tx48algi4AAMAfEUz/QikpKUpMTFSXLl1Up04dpaSk6MSJEwoJCVFsbKxGjRolLy8vde3aVQUFBdqzZ49Onz6tsWPHasGCBfL19VWrVq3k4OCgd999V/Xq1ZO3t7eCgoJUVFSkxYsXq0ePHkpOTtaSJUv+dL2NGzdW//799dhjjyk+Pl6tWrXSiRMnlJiYqBYtWqh79+5XXX/cuHFq27atZs+erX79+unzzz/XSy+9ZHPfKwAAQFkIpn8hT09PffbZZ3rxxReVl5engIAAxcfHq1u3bpIu3QP63HPP6emnn5abm5tCQ0Otk5o8PDw0f/58fffdd6pWrZratm2rTz75RA4ODmrZsqUWLFigZ599VpMnT9a9996ruLg4PfbYY3+65mXLlmnOnDkaN26c/ve//6lWrVpq3769HnrooWuuGxYWprVr12r69OmaPXu2fH19NWvWrBue+AQAAKoWk8Visdi7CKC88vLy5OXlJf+YtXIwu9q7HAColLLmXf0KGXC9Lv/9zs3NlaenZ5n9mJUPAAAAQyCYoty6detm8xip37+u9YxTAACAa+FSPsrtf//7n3777bcrtvn4+MjHx+cvr6G8lwIAAIBxlPfvN5OfUG7169e3dwkAAKAS41I+AAAADIFgCgAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADMHR3gUAN6L5jC1yMLvauwwAgAFlzetu7xJwgxgxBQAAgCEQTAEAAGAIBFMAAAAYAsEUAAAAhkAwBQAAgCEQTAEAAGAIBFM7WLdunUJDQ+Xi4qKaNWuqc+fOOnfunEpKSjRr1izddtttMpvNuuOOO7R582brep06ddLIkSNttnXixAk5OTkpMTHxmvt95ZVXFBwcLGdnZ9WtW1ePPPKItW3z5s26++675e3trZo1a+qhhx5SZmamtT0pKUkmk0lnzpyxLjtw4IBMJpOysrKsy5KTk9WxY0e5urqqRo0aioyM1OnTpyVJJSUliouLU8OGDeXi4qKWLVtq3bp11/vxAQCASopgeosdP35c0dHRGjx4sNLT05WUlKSoqChZLBYtXLhQ8fHxev755/XVV18pMjJSDz/8sL777jtJ0tChQ7V69WoVFBRYt/fWW2+pfv366tSp01X3u2fPHo0aNUqzZs1SRkaGNm/erHvvvdfafu7cOY0dO1Z79uxRYmKiHBwc1Lt3b5WUlJT72A4cOKCIiAg1a9ZMn3/+uXbt2qUePXqouLhYkhQXF6eVK1dqyZIlOnTokMaMGaN//vOf2rFjR5nbLCgoUF5ens0LAABUTiaLxWKxdxFVyb59+9S6dWtlZWUpICDApq1+/foaMWKE/v3vf1uXtWvXTm3bttXLL7+sCxcuyM/PT0uWLFHfvn0lSS1btlRUVJRmzJhx1f2+//77evzxx/XTTz/Jw8PjmnX++uuvql27tr7++ms1b95cSUlJuv/++3X69Gl5e3tLuhREW7VqpSNHjigwMFCPPvqosrOztWvXrlLbKygokI+Pj7Zt26YOHTpYlw8dOlTnz5/X6tWrr1jHzJkzFRsbW2q5f8xaHrAPALgiHrBvPHl5efLy8lJubq48PT3L7MeI6S3WsmVLRUREKDQ0VH369NHSpUt1+vRp5eXl6dixYwoPD7fpHx4ervT0dEmSs7OzBgwYoDfffFPSpZB78OBBDRo06Jr7feCBBxQQEKBGjRppwIABWrVqlc6fP29t/+677xQdHa1GjRrJ09NTgYGBkqTs7OxyH9vlEdMr+f7773X+/Hk98MADcnd3t75Wrlxpc8vAH02ePFm5ubnW19GjR8tdDwAAqFj4StJbrFq1akpISNDu3bu1detWLV68WFOmTFFCQkK51h86dKjuuOMO/fTTT1q2bJk6depUauT1Sjw8PLRv3z4lJSVp69atmj59umbOnKnU1FR5e3urR48eCggI0NKlS+Xn56eSkhI1b95chYWFkiQHh0v/hvn9AHtRUZHNPlxcXMrcf35+viRp48aNql+/vk2b2Wwucz2z2XzVdgAAUHkwYmoHJpNJ4eHhio2N1f79+62Tl/z8/JScnGzTNzk5Wc2aNbO+Dw0NVZs2bbR06VKtXr1agwcPLvd+HR0d1blzZ82fP19fffWVsrKy9Omnn+rkyZPKyMjQ1KlTFRERoZCQEOuEpctq164t6dI9spcdOHDApk+LFi3KnITVrFkzmc1mZWdnKygoyObl7+9f7mMAAACVFyOmt1hKSooSExPVpUsX1alTRykpKTpx4oRCQkL09NNPa8aMGbr99tt1xx13aNmyZTpw4IBWrVpls42hQ4dq5MiRcnNzU+/evcu1348//lg//PCD7r33XtWoUUOffPKJSkpK1KRJE9WoUUM1a9bU66+/Ll9fX2VnZ2vSpEk2618OkDNnztTcuXP17bffKj4+3qbP5MmTFRoaquHDh2vYsGFycnLS9u3b1adPH9WqVUvjx4/XmDFjVFJSorvvvlu5ublKTk6Wp6enBg4c+Oc+WAAAUOERTG8xT09PffbZZ3rxxReVl5engIAAxcfHq1u3boqMjFRubq7GjRunnJwcNWvWTB9++KGCg4NtthEdHa2YmBhFR0fL2dm5XPv19vbW+++/r5kzZ+rChQsKDg7W22+/rb/97W+SpDVr1mjUqFFq3ry5mjRpokWLFqljx47W9atXr663335bTz75pFq0aKG2bdtqzpw56tOnj7VP48aNtXXrVv373/9Wu3bt5OLiojvvvFPR0dGSpNmzZ6t27dqKi4vTDz/8IG9vb4WFhdlM9gIAAFUXs/IroKysLN1+++1KTU1VWFiYvcu5pS7P6mNWPgCgLMzKN57yzspnxLQCKSoq0smTJzV16lS1b9++yoVSAABQuTH5qQJJTk6Wr6+vUlNTtWTJEpu2nTt32jyG6Y8vAAAAo+NSfiXx22+/6X//+1+Z7UFBQbewmr9OeS8FAAAA4+BSfhXj4uJSacInAAComriUDwAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAEMgmAIAAMAQCKYAAAAwBIIpAAAADIFgCgAAAENwtHcBwI1oPmOLHMyu9i4DAFDJZc3rbu8SqhRGTAEAAGAIBFMAAAAYAsEUAAAAhkAwBQAAgCEQTAEAAGAIBFMAAAAYAsG0gigpKdH8+fMVFBQks9msBg0aaO7cuZKkiRMnqnHjxnJ1dVWjRo00bdo0FRUVSZKysrLk4OCgPXv22GzvxRdfVEBAgEpKSiRJBw8eVLdu3eTu7q66detqwIAB+vXXX639O3bsqFGjRmnChAny8fFRvXr1NHPmTJttmkwmvfHGG+rdu7dcXV0VHBysDz/80KbPtfYDAACqLoJpBTF58mTNmzdP06ZN0+HDh7V69WrVrVtXkuTh4aHly5fr8OHDWrhwoZYuXaoXXnhBkhQYGKjOnTtr2bJlNttbtmyZBg0aJAcHB505c0adOnVSq1attGfPHm3evFm//PKL+vbta7POihUr5ObmppSUFM2fP1+zZs1SQkKCTZ/Y2Fj17dtXX331lR588EH1799fp06dkqRy7+f3CgoKlJeXZ/MCAACVk8lisVjsXQSu7uzZs6pdu7ZeeuklDR069Jr9n3/+ea1Zs8Y6Srp27VoNGzZMx48fl9ls1r59+9SmTRv98MMPCgwM1Jw5c7Rz505t2bLFuo2ffvpJ/v7+ysjIUOPGjdWxY0cVFxdr586d1j7t2rVTp06dNG/ePEmXRkynTp2q2bNnS5LOnTsnd3d3bdq0SV27di3Xfv5o5syZio2NLbXcP2YtD9gHAPzleMD+zZGXlycvLy/l5ubK09OzzH6MmFYA6enpKigoUERExBXb33nnHYWHh6tevXpyd3fX1KlTlZ2dbW3v1auXqlWrpvXr10uSli9frvvvv1+BgYGSpLS0NG3fvl3u7u7WV9OmTSVJmZmZ1u20aNHCZr++vr7KycmxWfb7Pm5ubvL09LT2Ke9+fm/y5MnKzc21vo4ePXrNzwsAAFRMfCVpBeDi4lJm2+eff67+/fsrNjZWkZGR8vLy0po1axQfH2/t4+TkpMcee0zLli1TVFSUVq9erYULF1rb8/Pz1aNHDz377LOltu/r62v9uXr16jZtJpPJeo9qefqUdz+/ZzabZTabyzp8AABQiRBMK4Dg4GC5uLgoMTGx1KX83bt3KyAgQFOmTLEu+/HHH0ttY+jQoWrevLleeeUVXbx4UVFRUda2sLAwvffeewoMDJSj41/3K3Gr9gMAAComLuVXAM7Ozpo4caImTJiglStXKjMzU1988YX+85//KDg4WNnZ2VqzZo0yMzO1aNEi6yX73wsJCVH79u01ceJERUdH24zCjhgxQqdOnVJ0dLRSU1OVmZmpLVu26PHHH1dxcfFNO45btR8AAFAxEUwriGnTpmncuHGaPn26QkJC1K9fP+Xk5Ojhhx/WmDFjNHLkSN1xxx3avXu3pk2bdsVtDBkyRIWFhRo8eLDNcj8/PyUnJ6u4uFhdunRRaGioYmJi5O3tLQeHm/crcqv2AwAAKiZm5Vchs2fP1rvvvquvvvrK3qXcsMuz+piVDwC4FZiVf3MwKx9W+fn5OnjwoF566SU99dRT9i4HAADgigimVcDIkSPVunVrdezYsdRlfAAAAKPgUj4qlPJeCgAAAMbBpXwAAABUKARTAAAAGALBFAAAAIZAMAUAAIAhEEwBAABgCARTAAAAGALBFAAAAIZAMAUAAIAhEEwBAABgCARTAAAAGALBFAAAAIZAMAUAAIAhEEwBAABgCARTAAAAGALBFAAAAIZAMAUAAIAhEEwBAABgCARTAAAAGIKjvQsAbkTzGVvkYHa1dxkAgCoqa153e5dQKTFiCgAAAEMgmAIAAMAQCKYAAAAwBIIprmj58uXy9va2vp85c6buuOMO6/tBgwapV69et7wuAABQeTH5CTdk4cKFslgs9i4DAABUIgRT3BAvLy97lwAAACoZLuVXcOvWrVNoaKhcXFxUs2ZNde7cWefOnZMkvfnmm/rb3/4ms9ksX19fjRw50rreggULFBoaKjc3N/n7+2v48OHKz88v937/eCm/oKBAo0aNUp06deTs7Ky7775bqamp1vakpCSZTCYlJiaqTZs2cnV11V133aWMjIw//yEAAIBKgWBagR0/flzR0dEaPHiw0tPTlZSUpKioKFksFr366qsaMWKEnnjiCX399df68MMPFRQUZF3XwcFBixYt0qFDh7RixQp9+umnmjBhwg3XMmHCBL333ntasWKF9u3bp6CgIEVGRurUqVM2/aZMmaL4+Hjt2bNHjo6OGjx48FW3W1BQoLy8PJsXAAConLiUX4EdP35cFy9eVFRUlAICAiRJoaGhkqQ5c+Zo3LhxGj16tLV/27ZtrT/HxMRYfw4MDNScOXM0bNgwvfLKK9ddx7lz5/Tqq69q+fLl6tatmyRp6dKlSkhI0H/+8x89/fTT1r5z587VfffdJ0maNGmSunfvrgsXLsjZ2fmK246Li1NsbOx11wQAACoeRkwrsJYtWyoiIkKhoaHq06ePli5dqtOnTysnJ0fHjh1TREREmetu27ZNERERql+/vjw8PDRgwACdPHlS58+fv+46MjMzVVRUpPDwcOuy6tWrq127dkpPT7fp26JFC+vPvr6+kqScnJwytz158mTl5uZaX0ePHr3u+gAAQMVAMK3AqlWrpoSEBG3atEnNmjXT4sWL1aRJE/3yyy9XXS8rK0sPPfSQWrRooffee0979+7Vyy+/LEkqLCz8S2uuXr269WeTySRJKikpKbO/2WyWp6enzQsAAFROBNMKzmQyKTw8XLGxsdq/f7+cnJyUkJCgwMBAJSYmXnGdvXv3qqSkRPHx8Wrfvr0aN26sY8eO3XANt99+u5ycnJScnGxdVlRUpNTUVDVr1uyGtwsAAKoW7jGtwFJSUpSYmKguXbqoTp06SklJ0YkTJxQSEqKZM2dq2LBhqlOnjrp166azZ88qOTlZTz31lIKCglRUVKTFixerR48eSk5O1pIlS264Djc3Nz355JN6+umn5ePjowYNGmj+/Pk6f/68hgwZchOPGAAAVGYE0wrM09NTn332mV588UXl5eUpICBA8fHx1glIFy5c0AsvvKDx48erVq1aeuSRRyRdujd1wYIFevbZZzV58mTde++9iouL02OPPXbDtcybN08lJSUaMGCAzp49qzZt2mjLli2qUaPGTTlWAABQ+ZksfH0PKpC8vDx5eXnJP2atHMyu9i4HAFBFZc3rbu8SKpTLf79zc3OvOl+Ee0wBAABgCARTAAAAGAL3mKJCOhgbyaOjAACoZBgxBQAAgCEQTAEAAGAIBFMAAAAYAsEUAAAAhkAwBQAAgCEQTAEAAGAIBFMAAAAYAsEUAAAAhkAwBQAAgCEQTAEAAGAIBFMAAAAYAsEUAAAAhkAwBQAAgCEQTAEAAGAIBFMAAAAYAsEUAAAAhkAwBQAAgCEQTAEAAGAIjvYuALgRzWdskYPZ1d5lAABQaWTN627vEhgxBQAAgDEQTAEAAGAIBFMAAAAYAsEUN9XMmTN1xx13WN8PGjRIvXr1sls9AACg4mDyE/5SCxculMVisXcZAACgAiCY4qawWCwqLi4utdzLy8sO1QAAgIqIS/lV1NmzZ9W/f3+5ubnJ19dXL7zwgjp27KiYmBhJ0n//+1+1adNGHh4eqlevnh599FHl5ORY109KSpLJZNKmTZvUunVrmc1m7dq1q9R+/ngpv6SkRPPnz1dQUJDMZrMaNGiguXPn/tWHCwAAKgCCaRU1duxYJScn68MPP1RCQoJ27typffv2WduLioo0e/ZspaWlacOGDcrKytKgQYNKbWfSpEmaN2+e0tPT1aJFi2vud/LkyZo3b56mTZumw4cPa/Xq1apbt26Z/QsKCpSXl2fzAgAAlROX8qugs2fPasWKFVq9erUiIiIkScuWLZOfn5+1z+DBg60/N2rUSIsWLVLbtm2Vn58vd3d3a9usWbP0wAMPlHu/Cxcu1EsvvaSBAwdKkm6//XbdfffdZa4TFxen2NjY6zo+AABQMTFiWgX98MMPKioqUrt27azLvLy81KRJE+v7vXv3qkePHmrQoIE8PDx03333SZKys7NtttWmTZty7zc9PV0FBQXWMFwekydPVm5urvV19OjRcq8LAAAqFkZMUcq5c+cUGRmpyMhIrVq1SrVr11Z2drYiIyNVWFho09fNza3c23VxcbnuWsxms8xm83WvBwAAKh5GTKugRo0aqXr16kpNTbUuy83N1bfffitJ+uabb3Ty5EnNmzdP99xzj5o2bWoz8elGBQcHy8XFRYmJiX96WwAAoPJhxLQK8vDw0MCBA/X000/Lx8dHderU0YwZM+Tg4CCTyaQGDRrIyclJixcv1rBhw3Tw4EHNnj37T+/X2dlZEydO1IQJE+Tk5KTw8HCdOHFChw4d0pAhQ27CkQEAgIqMEdMqasGCBerQoYMeeughde7cWeHh4QoJCZGzs7Nq166t5cuX691331WzZs00b948Pf/88zdlv9OmTdO4ceM0ffp0hYSEqF+/fjdlNBYAAFR8JgtfywNduq+0fv36io+PN/ToZV5enry8vOQfs1YOZld7lwMAQKWRNa/7X7bty3+/c3Nz5enpWWY/LuVXUfv379c333yjdu3aKTc3V7NmzZIk9ezZ086VAQCAqopgWoU9//zzysjIkJOTk1q3bq2dO3eqVq1a9i4LAABUUVzKR4VS3ksBAADAOMr795vJTwAAADAEgikAAAAMgWAKAAAAQyCYAgAAwBAIpgAAADAEgikAAAAMgWAKAAAAQ+AB+6hQLj92Ny8vz86VAACA8rr8d/taj88nmKJCOXnypCTJ39/fzpUAAIDrdfbsWXl5eZXZTjBFheLj4yNJys7OvuovNm6NvLw8+fv76+jRo3wTlwFwPoyF82EsnA/7slgsOnv2rPz8/K7aj2CKCsXB4dJt0V5eXvyPxUA8PT05HwbC+TAWzoexcD7spzwDSkx+AgAAgCEQTAEAAGAIBFNUKGazWTNmzJDZbLZ3KRDnw2g4H8bC+TAWzkfFYLJca94+AAAAcAswYgoAAABDIJgCAADAEAimAAAAMASCKQAAAAyBYIoK4+WXX1ZgYKCcnZ1155136ssvv7R3SZXSZ599ph49esjPz08mk0kbNmywabdYLJo+fbp8fX3l4uKizp0767vvvrPpc+rUKfXv31+enp7y9vbWkCFDlJ+ffwuPovKIi4tT27Zt5eHhoTp16qhXr17KyMiw6XPhwgWNGDFCNWvWlLu7u/7+97/rl19+semTnZ2t7t27y9XVVXXq1NHTTz+tixcv3spDqRReffVVtWjRwvqQ9g4dOmjTpk3Wds6Ffc2bN08mk0kxMTHWZZyTioVgigrhnXfe0dixYzVjxgzt27dPLVu2VGRkpHJycuxdWqVz7tw5tWzZUi+//PIV2+fPn69FixZpyZIlSklJkZubmyIjI3XhwgVrn/79++vQoUNKSEjQxx9/rM8++0xPPPHErTqESmXHjh0aMWKEvvjiCyUkJKioqEhdunTRuXPnrH3GjBmjjz76SO+++6527NihY8eOKSoqytpeXFys7t27q7CwULt379aKFSu0fPlyTZ8+3R6HVKHddtttmjdvnvbu3as9e/aoU6dO6tmzpw4dOiSJc2FPqampeu2119SiRQub5ZyTCsYCVADt2rWzjBgxwvq+uLjY4ufnZ4mLi7NjVZWfJMv69eut70tKSiz16tWzPPfcc9ZlZ86csZjNZsvbb79tsVgslsOHD1skWVJTU619Nm3aZDGZTJb//e9/t6z2yionJ8ciybJjxw6LxXLp869evbrl3XfftfZJT0+3SLJ8/vnnFovFYvnkk08sDg4Olp9//tna59VXX7V4enpaCgoKbu0BVEI1atSwvPHGG5wLOzp79qwlODjYkpCQYLnvvvsso0ePtlgs/PdRETFiCsMrLCzU3r171blzZ+syBwcHde7cWZ9//rkdK6t6jhw5op9//tnmXHh5eenOO++0novPP/9c3t7eatOmjbVP586d5eDgoJSUlFtec2WTm5srSfLx8ZEk7d27V0VFRTbnpGnTpmrQoIHNOQkNDVXdunWtfSIjI5WXl2cd6cP1Ky4u1po1a3Tu3Dl16NCBc2FHI0aMUPfu3W0+e4n/PioiR3sXAFzLr7/+quLiYpv/aUhS3bp19c0339ipqqrp559/lqQrnovLbT///LPq1Klj0+7o6CgfHx9rH9yYkpISxcTEKDw8XM2bN5d06fN2cnKSt7e3Td8/npMrnbPLbbg+X3/9tTp06KALFy7I3d1d69evV7NmzXTgwAHOhR2sWbNG+/btU2pqaqk2/vuoeAimAFBBjBgxQgcPHtSuXbvsXUqV1qRJEx04cEC5ublat26dBg4cqB07dti7rCrp6NGjGj16tBISEuTs7GzvcnATcCkfhlerVi1Vq1at1CzKX375RfXq1bNTVVXT5c/7aueiXr16pSalXbx4UadOneJ8/QkjR47Uxx9/rO3bt+u2226zLq9Xr54KCwt15swZm/5/PCdXOmeX23B9nJycFBQUpNatWysuLk4tW7bUwoULORd2sHfvXuXk5CgsLEyOjo5ydHTUjh07tGjRIjk6Oqpu3bqckwqGYArDc3JyUuvWrZWYmGhdVlJSosTERHXo0MGOlVU9DRs2VL169WzORV5enlJSUqznokOHDjpz5oz27t1r7fPpp5+qpKREd9555y2vuaKzWCwaOXKk1q9fr08//VQNGza0aW/durWqV69uc04yMjKUnZ1tc06+/vprm38wJCQkyNPTU82aNbs1B1KJlZSUqKCggHNhBxEREfr666914MAB66tNmzbq37+/9WfOSQVj79lXQHmsWbPGYjabLcuXL7ccPnzY8sQTT1i8vb1tZlHi5jh79qxl//79lv3791skWRYsWGDZv3+/5ccff7RYLBbLvHnzLN7e3pYPPvjA8tVXX1l69uxpadiwoeW3336zbqNr166WVq1aWVJSUiy7du2yBAcHW6Kjo+11SBXak08+afHy8rIkJSVZjh8/bn2dP3/e2mfYsGGWBg0aWD799FPLnj17LB06dLB06NDB2n7x4kVL8+bNLV26dLEcOHDAsnnzZkvt2rUtkydPtschVWiTJk2y7Nixw3LkyBHLV199ZZk0aZLFZDJZtm7darFYOBdG8PtZ+RYL56SiIZiiwli8eLGlQYMGFicnJ0u7du0sX3zxhb1LqpS2b99ukVTqNXDgQIvFcumRUdOmTbPUrVvXYjabLREREZaMjAybbZw8edISHR1tcXd3t3h6eloef/xxy9mzZ+1wNBXflc6FJMuyZcusfX777TfL8OHDLTVq1LC4urpaevfubTl+/LjNdrKysizdunWzuLi4WGrVqmUZN26cpaio6BYfTcU3ePBgS0BAgMXJyclSu3ZtS0REhDWUWiycCyP4YzDlnFQsJovFYrHPWC0AAADw/+MeUwAAABgCwRQAAACGQDAFAACAIRBMAQAAYAgEUwAAABgCwRQAAACGQDAFAACAIRBMAQAAYAgEUwAAABgCwRQAAACGQDAFAACAIRBMAQAAYAj/H/5y0dlqBoQYAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "korean_ingredient_df = create_ingredient_df(korean_df)\n", + "korean_ingredient_df.head(10).plot.barh()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "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", + "
almondangelicaaniseanise_seedappleapple_brandyapricotarmagnacartemisiaartichoke...whiskeywhite_breadwhite_winewhole_grain_wheat_flourwinewoodyamyeastyogurtzucchini
00000000000...0000000000
11000000000...0000000000
20000000000...0000000000
30000000000...0000000000
40000000000...0000000010
\n", + "

5 rows × 380 columns

\n", + "
" + ], + "text/plain": [ + " almond angelica anise anise_seed apple apple_brandy apricot \\\n", + "0 0 0 0 0 0 0 0 \n", + "1 1 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 0 0 \n", + "3 0 0 0 0 0 0 0 \n", + "4 0 0 0 0 0 0 0 \n", + "\n", + " armagnac artemisia artichoke ... whiskey white_bread white_wine \\\n", + "0 0 0 0 ... 0 0 0 \n", + "1 0 0 0 ... 0 0 0 \n", + "2 0 0 0 ... 0 0 0 \n", + "3 0 0 0 ... 0 0 0 \n", + "4 0 0 0 ... 0 0 0 \n", + "\n", + " whole_grain_wheat_flour wine wood yam yeast yogurt zucchini \n", + "0 0 0 0 0 0 0 0 \n", + "1 0 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 0 0 \n", + "3 0 0 0 0 0 0 0 \n", + "4 0 0 0 0 0 1 0 \n", + "\n", + "[5 rows x 380 columns]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "feature_df = df.drop([\"cuisine\", \"Unnamed: 0\", \"rice\", \"garlic\", \"ginger\"], axis=1)\n", + "labels_df = df.cuisine\n", + "feature_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "oversample = SMOTE()\n", + "transformed_feature_df, transformed_label_df = oversample.fit_resample(feature_df, labels_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "new label count: cuisine\n", + "indian 799\n", + "thai 799\n", + "chinese 799\n", + "japanese 799\n", + "korean 799\n", + "Name: count, dtype: int64\n", + "old label count: cuisine\n", + "korean 799\n", + "indian 598\n", + "chinese 442\n", + "japanese 320\n", + "thai 289\n", + "Name: count, dtype: int64\n" + ] + } + ], + "source": [ + "print(f'new label count: {transformed_label_df.value_counts()}')\n", + "print(f'old label count: {df.cuisine.value_counts()}')" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "transformed_df = pd.concat([transformed_label_df, transformed_feature_df], axis=1, join=\"outer\")" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 3995 entries, 0 to 3994\n", + "Columns: 381 entries, cuisine to zucchini\n", + "dtypes: int64(380), object(1)\n", + "memory usage: 11.6+ MB\n" + ] + } + ], + "source": [ + "transformed_df.head()\n", + "transformed_df.info()\n", + "transformed_df.to_csv(\"../data/cleaned_cuisines.csv\")" + ] + } + ], "metadata": { + "kernelspec": { + "display_name": ".venv", + "language": "python", + "name": "python3" + }, "language_info": { "codemirror_mode": { "name": "ipython", @@ -10,19 +791,10 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": 3 + "version": "3.12.5" }, "orig_nbformat": 2 }, "nbformat": 4, - "nbformat_minor": 2, - "cells": [ - { - "source": [ - "# Delicious Asian and Indian Cuisines " - ], - "cell_type": "markdown", - "metadata": {} - } - ] -} \ No newline at end of file + "nbformat_minor": 2 +} diff --git a/4-Classification/data/cleaned_cuisines.csv b/4-Classification/data/cleaned_cuisines.csv index 84526cc22a..71fe39f113 100644 --- a/4-Classification/data/cleaned_cuisines.csv +++ b/4-Classification/data/cleaned_cuisines.csv @@ -2447,1550 +2447,1550 @@ 2445,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2446,japanese,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 2447,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2448,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2449,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2450,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2451,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2452,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2453,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2454,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2455,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2456,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2457,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2458,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2459,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2460,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2461,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2462,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2463,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2464,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2465,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2466,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2467,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2468,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2469,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2470,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2471,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2472,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2473,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2474,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2475,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2476,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2477,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2478,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2479,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2480,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2481,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2482,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2483,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2484,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2485,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2486,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2487,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2488,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2489,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2490,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2491,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2492,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2493,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2494,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2495,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2496,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2497,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2498,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2499,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2500,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2501,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2502,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2503,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2504,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2505,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2506,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2507,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2508,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2509,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2510,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2511,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2512,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2513,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2514,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2515,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2516,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2517,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2518,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2519,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2520,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2521,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2522,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2523,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2524,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2525,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2526,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2527,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2528,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2529,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2530,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2531,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2532,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2533,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2534,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2535,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2536,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2537,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2538,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2539,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 -2540,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2541,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2542,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2543,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2544,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2545,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2546,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2547,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2548,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2549,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2550,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2551,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2552,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2553,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2554,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2555,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2556,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2557,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2558,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2559,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2560,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2561,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2562,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2563,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2564,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2565,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2566,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2567,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2448,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2449,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2450,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2451,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2452,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2453,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2454,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2455,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2456,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2457,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2458,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2459,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2460,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2461,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2462,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2463,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2464,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2465,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2466,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2467,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2468,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2469,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2470,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2471,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2472,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2473,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2474,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2475,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2476,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2477,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2478,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2479,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2480,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2481,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2482,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2483,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2484,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2485,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2486,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2487,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2488,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2489,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2490,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2491,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2492,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2493,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2494,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2495,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2496,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2497,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2498,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2499,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2500,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2501,chinese,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2502,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2503,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2504,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2505,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2506,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2507,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2508,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2509,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2510,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2511,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2512,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2513,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2514,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2515,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2516,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2517,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2518,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2519,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2520,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2521,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2522,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2523,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2524,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2525,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2526,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2527,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2528,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2529,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2530,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2531,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2532,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2533,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2534,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2535,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2536,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2537,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2538,chinese,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2539,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2540,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2541,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2542,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2543,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2544,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2545,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2546,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2547,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2548,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2549,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2550,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2551,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2552,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2553,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2554,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2555,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2556,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2557,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2558,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2559,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2560,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2561,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2562,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2563,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2564,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2565,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2566,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2567,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2568,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2569,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2570,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0 -2571,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2572,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2573,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2574,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2575,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2569,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2570,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2571,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2572,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2573,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2574,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2575,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2576,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2577,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2578,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2579,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 -2580,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2581,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2582,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2583,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2584,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2585,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2586,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2587,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2588,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2589,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2590,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2591,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2592,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2593,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2594,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2595,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2596,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2597,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2598,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2599,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2600,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2601,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2602,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2603,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2604,chinese,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2605,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2606,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2607,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2608,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2577,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2578,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2579,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2580,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2581,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2582,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2583,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2584,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2585,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2586,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2587,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2588,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2589,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2590,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2591,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2592,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2593,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2594,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2595,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2596,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2597,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2598,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2599,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2600,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2601,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2602,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2603,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2604,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2605,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2606,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2607,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2608,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2609,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2610,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2611,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2612,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2613,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2614,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2615,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 -2616,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2617,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2618,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2619,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2620,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2621,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2622,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2623,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2624,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2625,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2626,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2627,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2628,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2629,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2630,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2631,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2632,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2633,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2634,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2635,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2636,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2637,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2638,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2639,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2640,chinese,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2641,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2642,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2643,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2644,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2645,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2646,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2647,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2648,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2649,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2650,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2651,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2610,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2611,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2612,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2613,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2614,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2615,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2616,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2617,chinese,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2618,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2619,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2620,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2621,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2622,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2623,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2624,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2625,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2626,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2627,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2628,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2629,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2630,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2631,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0 +2632,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2633,chinese,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2634,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2635,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2636,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2637,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2638,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2639,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2640,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2641,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2642,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2643,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 +2644,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2645,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2646,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2647,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2648,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2649,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2650,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2651,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2652,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2653,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2654,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2655,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2656,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2657,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2658,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2659,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2660,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2661,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2662,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2663,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2664,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2665,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2666,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2667,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2668,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2669,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2670,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2671,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2672,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2673,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2674,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2675,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2676,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2677,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2678,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2679,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2680,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2681,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2682,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2683,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2684,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2685,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2686,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2687,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2688,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2689,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2690,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2691,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2692,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2693,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2694,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2695,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2696,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2697,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2698,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2699,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2700,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2701,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2702,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2703,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2704,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2705,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2706,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2707,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2708,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2709,chinese,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2710,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2711,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2712,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2713,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2714,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2715,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2716,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2717,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2718,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2719,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2720,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2721,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2722,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2723,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2724,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2725,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2726,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2727,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2728,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2729,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2730,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2731,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2732,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2733,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2734,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2735,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2736,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2737,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2738,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2739,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2740,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2741,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2742,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2743,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2744,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2745,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2746,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2747,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2748,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2749,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2750,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2751,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2752,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2753,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2754,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2755,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2756,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2757,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2758,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2759,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2760,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2761,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2762,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2763,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0 -2764,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2765,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2766,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2767,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2768,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2769,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2770,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2771,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2772,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2773,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2774,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2775,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2653,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2654,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2655,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2656,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2657,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2658,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2659,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2660,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2661,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2662,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2663,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2664,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2665,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2666,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2667,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2668,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2669,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2670,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2671,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2672,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2673,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2674,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2675,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2676,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2677,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2678,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2679,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2680,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2681,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2682,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2683,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2684,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2685,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2686,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2687,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2688,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2689,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2690,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2691,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2692,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2693,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2694,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2695,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2696,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2697,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2698,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2699,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2700,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2701,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2702,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2703,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2704,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2705,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2706,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2707,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2708,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2709,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 +2710,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2711,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2712,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2713,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2714,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 +2715,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2716,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2717,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2718,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2719,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2720,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2721,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2722,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2723,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2724,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2725,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2726,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2727,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2728,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2729,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2730,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2731,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2732,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2733,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2734,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2735,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2736,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2737,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2738,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2739,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2740,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2741,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2742,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2743,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2744,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2745,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2746,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2747,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2748,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2749,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2750,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2751,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2752,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2753,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2754,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2755,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2756,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2757,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2758,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2759,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2760,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2761,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2762,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2763,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2764,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2765,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2766,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2767,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2768,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2769,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2770,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2771,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2772,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2773,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2774,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2775,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 2776,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2777,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2778,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2779,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2780,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2781,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2782,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2783,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2784,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2785,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2786,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2787,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2788,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2789,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2790,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2791,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2792,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2793,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2794,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2795,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2796,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2797,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2798,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2799,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2800,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2777,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2778,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2779,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2780,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2781,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2782,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2783,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2784,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2785,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2786,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2787,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2788,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2789,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2790,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2791,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2792,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2793,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2794,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2795,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2796,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2797,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2798,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2799,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2800,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2801,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2802,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2803,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2804,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -2805,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2806,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2807,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2808,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2809,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2810,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2811,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -2812,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2813,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2814,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2815,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2816,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2817,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2818,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2819,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2820,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2821,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2822,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2823,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2824,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2825,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2826,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2827,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2828,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2829,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2830,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2831,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2832,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2833,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2834,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2835,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2836,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2837,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2838,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2839,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2840,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2841,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2842,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2843,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2844,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2845,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2846,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2847,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2848,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2849,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0 -2850,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2851,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2852,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2853,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2854,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2855,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2856,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2857,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2858,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2859,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2860,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2861,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2862,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2863,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2864,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2865,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2866,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2867,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2868,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2869,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2870,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2871,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2872,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2873,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2874,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2875,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2876,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2877,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2878,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 -2879,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2880,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -2881,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2882,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2883,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2884,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2885,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2886,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2887,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2888,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2889,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2890,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2891,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2892,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2893,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2894,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2895,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2896,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2897,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2898,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2899,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2900,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2901,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2902,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2903,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2904,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2905,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2906,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2907,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2908,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2909,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2910,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2911,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2912,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2913,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0 -2914,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2915,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2916,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2917,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2918,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2919,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2920,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2921,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2922,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2923,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2924,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2925,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2926,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2927,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2928,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2802,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2803,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2804,chinese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2805,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2806,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2807,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2808,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2809,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2810,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2811,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2812,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2813,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2814,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2815,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2816,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2817,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2818,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2819,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2820,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2821,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2822,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2823,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2824,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2825,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2826,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2827,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2828,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2829,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2830,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2831,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2832,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2833,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2834,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2835,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2836,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2837,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2838,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2839,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2840,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2841,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2842,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2843,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2844,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2845,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2846,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2847,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2848,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2849,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2850,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2851,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2852,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0 +2853,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2854,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2855,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2856,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2857,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2858,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2859,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0 +2860,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2861,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2862,indian,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2863,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2864,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2865,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2866,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2867,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2868,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2869,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2870,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2871,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2872,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2873,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2874,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2875,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2876,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2877,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2878,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2879,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2880,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2881,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2882,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2883,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2884,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2885,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +2886,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2887,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2888,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2889,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2890,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2891,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2892,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2893,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2894,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2895,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2896,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2897,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2898,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2899,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2900,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2901,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2902,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2903,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2904,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +2905,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2906,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2907,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2908,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2909,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2910,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2911,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2912,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2913,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2914,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2915,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2916,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2917,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2918,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2919,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2920,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2921,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2922,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2923,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2924,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2925,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2926,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2927,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2928,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 2929,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2930,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2931,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0 -2932,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2933,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2934,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2935,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2936,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2937,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2938,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2939,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2940,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2941,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2942,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2943,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2944,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2945,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2946,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2947,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2948,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2949,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2950,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2951,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2930,indian,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2931,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2932,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2933,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2934,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2935,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2936,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2937,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2938,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2939,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2940,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2941,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2942,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2943,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2944,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2945,indian,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2946,indian,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2947,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2948,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2949,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2950,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2951,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 2952,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2953,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2954,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2955,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2956,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2957,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2958,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2959,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2960,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2961,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2962,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2963,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2964,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2965,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2966,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2967,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2968,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2969,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2970,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2971,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2972,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0 -2973,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2974,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2975,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2976,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2977,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2978,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2979,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2980,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2981,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2982,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2983,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2984,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2985,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2986,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2987,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2988,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2989,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2990,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2991,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2992,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2993,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2994,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2995,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2996,indian,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2997,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -2998,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0 -2999,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -3000,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3001,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -3002,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3003,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3004,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3005,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3006,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3007,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3008,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3009,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3010,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3011,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3012,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3013,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3014,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3015,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3016,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3017,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3018,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3019,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3020,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3021,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3022,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3023,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3024,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3025,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3026,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3027,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3028,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3029,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3030,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3031,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3032,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3033,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3034,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3035,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3036,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3037,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3038,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3039,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3040,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3041,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3042,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3043,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3044,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3045,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3046,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3047,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3048,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3049,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3050,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3051,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3052,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3053,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3054,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3055,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3056,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3057,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3058,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3059,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3060,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3061,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3062,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3063,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3064,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3065,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3066,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3067,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3068,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3069,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3070,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3071,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3072,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3073,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3074,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3075,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3076,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3077,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3078,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3079,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3080,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3081,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3082,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3083,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3084,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3085,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3086,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3087,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +2953,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2954,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2955,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2956,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2957,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2958,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2959,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2960,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2961,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2962,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2963,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2964,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2965,indian,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2966,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2967,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2968,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2969,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2970,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2971,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2972,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2973,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2974,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2975,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2976,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2977,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2978,indian,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2979,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2980,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2981,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2982,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2983,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2984,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2985,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2986,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2987,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2988,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2989,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2990,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +2991,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2992,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2993,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2994,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +2995,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2996,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2997,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2998,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2999,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3000,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3001,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3002,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3003,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3004,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3005,indian,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +3006,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3007,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3008,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3009,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3010,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3011,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3012,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3013,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3014,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3015,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3016,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3017,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3018,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3019,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3020,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3021,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3022,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3023,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3024,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3025,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3026,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3027,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3028,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3029,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3030,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3031,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3032,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3033,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3034,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3035,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3036,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3037,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3038,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3039,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3040,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3041,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3042,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3043,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3044,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3045,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3046,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3047,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3048,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3049,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3050,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3051,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3052,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3053,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3054,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3055,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3056,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3057,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3058,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3059,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3060,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3061,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3062,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3063,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3064,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3065,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3066,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3067,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3068,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3069,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3070,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3071,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3072,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3073,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3074,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3075,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3076,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3077,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3078,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3079,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3080,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3081,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3082,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3083,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3084,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3085,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3086,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3087,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3088,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3089,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3090,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3091,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3092,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3093,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3094,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3095,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3096,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3097,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3098,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3099,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3100,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3101,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3102,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3103,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3104,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3105,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3106,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3107,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3108,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3109,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3110,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3111,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0 -3112,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3113,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3114,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3115,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3116,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3117,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3118,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3119,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3120,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3121,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3122,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3123,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3124,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3089,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3090,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3091,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3092,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3093,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3094,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3095,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3096,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3097,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3098,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3099,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3100,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3101,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3102,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3103,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3104,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3105,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3106,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3107,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3108,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3109,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3110,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3111,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3112,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3113,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3114,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3115,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3116,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3117,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3118,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3119,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3120,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3121,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3122,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3123,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3124,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 3125,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3126,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3127,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3128,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3129,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3130,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3131,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3132,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3133,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3134,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3135,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3136,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3137,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3138,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3139,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3140,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3141,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3142,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3143,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3144,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3145,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3146,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3147,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3148,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3149,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3150,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3151,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3152,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3153,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3154,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3155,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3156,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3157,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3158,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3159,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3160,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3161,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3162,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3163,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3164,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3165,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3166,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3167,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3168,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3169,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3170,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3171,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3172,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3173,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3174,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3175,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3176,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3177,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3178,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3179,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3180,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3181,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3182,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3183,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3184,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3185,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3186,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3187,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3188,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3189,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3190,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3191,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3192,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3193,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3194,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3195,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3196,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3197,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3198,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3199,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3200,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3201,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3202,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3203,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3204,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3205,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3206,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3126,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3127,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3128,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3129,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3130,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3131,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3132,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3133,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3134,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3135,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3136,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3137,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3138,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3139,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3140,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3141,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3142,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3143,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3144,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3145,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3146,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3147,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3148,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3149,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3150,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3151,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3152,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3153,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3154,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3155,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3156,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3157,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3158,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3159,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3160,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3161,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3162,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3163,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3164,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3165,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3166,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3167,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3168,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3169,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3170,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3171,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3172,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3173,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3174,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3175,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3176,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3177,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3178,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3179,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3180,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3181,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3182,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3183,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3184,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3185,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3186,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3187,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3188,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3189,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3190,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3191,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3192,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3193,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3194,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3195,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3196,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3197,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3198,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3199,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3200,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3201,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3202,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3203,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3204,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3205,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3206,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 3207,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3208,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3209,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3210,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3211,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3212,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3213,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3208,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3209,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3210,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3211,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3212,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3213,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3214,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3215,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3216,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3217,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3218,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3219,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3220,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3221,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3222,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3223,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3215,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3216,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3217,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3218,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3219,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3220,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3221,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3222,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3223,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 3224,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3225,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3226,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3227,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3228,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3229,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3230,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3231,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3232,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3233,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3234,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3235,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3236,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3237,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3238,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3239,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3240,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3241,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3242,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3243,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3244,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3245,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3246,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3247,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3248,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3249,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3250,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3251,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3252,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3253,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3254,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3255,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3256,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3257,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3258,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3259,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3260,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3261,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3262,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3263,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3264,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3265,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3266,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3267,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3268,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3269,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3270,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3271,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3272,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3273,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3274,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3275,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3276,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3277,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3278,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3279,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3280,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3281,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3282,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3283,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3284,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3285,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3286,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3287,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3288,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3289,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3290,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3291,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3292,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3293,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3294,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3295,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3296,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3297,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3298,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3299,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3300,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3301,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3302,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3303,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3304,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3305,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3306,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3307,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3308,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3309,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3310,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3311,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3312,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3313,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3314,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3315,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3316,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3317,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3318,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3319,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3320,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3321,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3322,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3323,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3324,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3325,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3326,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3327,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3328,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3329,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3330,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3331,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3332,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3333,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3334,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3335,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3336,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3337,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3338,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3339,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3340,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3341,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3342,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3343,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3344,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3345,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3346,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3347,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3348,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3349,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3350,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3351,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3352,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3353,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3354,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3355,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3356,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3357,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3358,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3359,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3360,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3361,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3362,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3363,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3364,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3365,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3366,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3367,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3368,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3369,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3370,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3371,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3372,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3373,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3374,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3375,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3376,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3377,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3378,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3379,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3380,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3381,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3382,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3383,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3384,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3385,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3386,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3387,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3388,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3389,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3390,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3391,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3392,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3393,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3394,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3395,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3396,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3397,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3398,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3399,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3400,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3401,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3402,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3403,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3404,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3405,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3406,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3407,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3408,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3409,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3410,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3411,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3412,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3413,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3414,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3415,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3416,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3417,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3418,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3419,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3420,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3421,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3422,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3423,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3424,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3425,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3426,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3427,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3428,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3429,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3430,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3431,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3432,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3433,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3434,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3435,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3436,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3437,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3438,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3439,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3440,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3441,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3442,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3443,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3444,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3445,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3446,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3447,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3448,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3449,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3450,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0 -3451,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3452,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3453,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3454,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3455,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3456,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3457,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3458,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3459,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3460,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3461,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3462,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0 -3463,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3464,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3465,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3466,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3467,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3468,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3469,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3470,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3471,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3472,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3473,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3474,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3475,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3476,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3477,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3478,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3479,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3480,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3481,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3482,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3483,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3484,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3225,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3226,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3227,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3228,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3229,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3230,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3231,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3232,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3233,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3234,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3235,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3236,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3237,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3238,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3239,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3240,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3241,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3242,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3243,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3244,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3245,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3246,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3247,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3248,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3249,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3250,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3251,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3252,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3253,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3254,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3255,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3256,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3257,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3258,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3259,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3260,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3261,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3262,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3263,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3264,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3265,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3266,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3267,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3268,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3269,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3270,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3271,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3272,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3273,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3274,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3275,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3276,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3277,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3278,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3279,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3280,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3281,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3282,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3283,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3284,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3285,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3286,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3287,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3288,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3289,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3290,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3291,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3292,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3293,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3294,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3295,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3296,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3297,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3298,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3299,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3300,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3301,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3302,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3303,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3304,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3305,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3306,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3307,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3308,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3309,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3310,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3311,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3312,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3313,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3314,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3315,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3316,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3317,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3318,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3319,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3320,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3321,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3322,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3323,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3324,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3325,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3326,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3327,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3328,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3329,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3330,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3331,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3332,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3333,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3334,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3335,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3336,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3337,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3338,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3339,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3340,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3341,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3342,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3343,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3344,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3345,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3346,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3347,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3348,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3349,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3350,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3351,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3352,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3353,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3354,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3355,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3356,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3357,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3358,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3359,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3360,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3361,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3362,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3363,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3364,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3365,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3366,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3367,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3368,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3369,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3370,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3371,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3372,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3373,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3374,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3375,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3376,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3377,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3378,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3379,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3380,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3381,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3382,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3383,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3384,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3385,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3386,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3387,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3388,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3389,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3390,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3391,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3392,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3393,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3394,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3395,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3396,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3397,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3398,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3399,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3400,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3401,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3402,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3403,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3404,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3405,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3406,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3407,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3408,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3409,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3410,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3411,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3412,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3413,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3414,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3415,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3416,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3417,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3418,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3419,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3420,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3421,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3422,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3423,japanese,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3424,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3425,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3426,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3427,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3428,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3429,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3430,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3431,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3432,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3433,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3434,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3435,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3436,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3437,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3438,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3439,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3440,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3441,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3442,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3443,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3444,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3445,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3446,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3447,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3448,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3449,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3450,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3451,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3452,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3453,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3454,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3455,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3456,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3457,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3458,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3459,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3460,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3461,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3462,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3463,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3464,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3465,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3466,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3467,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3468,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3469,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3470,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3471,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3472,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3473,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3474,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3475,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3476,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3477,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3478,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3479,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3480,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3481,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3482,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3483,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3484,japanese,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3485,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3486,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3487,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3488,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3489,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3490,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3491,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3492,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3493,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3494,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3495,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3496,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3497,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3498,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3499,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3500,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3501,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3486,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3487,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3488,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3489,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3490,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3491,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3492,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3493,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3494,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3495,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3496,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3497,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3498,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3499,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3500,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3501,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3502,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3503,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3504,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3505,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3506,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3507,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3508,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3509,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3510,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3511,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3512,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3513,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3514,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3515,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3516,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3517,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3518,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3519,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3520,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3521,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -3522,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3523,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3524,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3525,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3526,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3527,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3528,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3529,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3530,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3531,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3532,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3533,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3534,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3535,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3536,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3537,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3538,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3539,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3540,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3541,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3542,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3543,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3544,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3545,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3546,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3547,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3548,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3549,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3550,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3551,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3552,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3553,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3554,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3503,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3504,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3505,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3506,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3507,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3508,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3509,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3510,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3511,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3512,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3513,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3514,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3515,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3516,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3517,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3518,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3519,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3520,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3521,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3522,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3523,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3524,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3525,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3526,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3527,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3528,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3529,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3530,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3531,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3532,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3533,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3534,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3535,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3536,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3537,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3538,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3539,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3540,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3541,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3542,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3543,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3544,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3545,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3546,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3547,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3548,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3549,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3550,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3551,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3552,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3553,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3554,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3555,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3556,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3557,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3558,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3559,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3560,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3556,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3557,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3558,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3559,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3560,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3561,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3562,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3563,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3564,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3565,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3566,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3567,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3568,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3569,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3570,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3571,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3572,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3573,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3562,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3563,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3564,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3565,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3566,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3567,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3568,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3569,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3570,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3571,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3572,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3573,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3574,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3575,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3576,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3577,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3578,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3579,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3580,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3581,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3582,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3583,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3584,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3585,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3586,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3587,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3588,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3589,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3590,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3591,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3592,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3593,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3594,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3595,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3596,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3597,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3598,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3599,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3600,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3601,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3602,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3603,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3604,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3605,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3606,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3607,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3608,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3609,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3610,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3611,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3612,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3613,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3614,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3615,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3616,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3617,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3618,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3619,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3620,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3621,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3622,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3623,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3624,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3625,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3626,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3627,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3628,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3629,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3630,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3631,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3575,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3576,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3577,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3578,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3579,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3580,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3581,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3582,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3583,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3584,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3585,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3586,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3587,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3588,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3589,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3590,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3591,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3592,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3593,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3594,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3595,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3596,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3597,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3598,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3599,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3600,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3601,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3602,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3603,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3604,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3605,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3606,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3607,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3608,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3609,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3610,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3611,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3612,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3613,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3614,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3615,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3616,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3617,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3618,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3619,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3620,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3621,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3622,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3623,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3624,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3625,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3626,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3627,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3628,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3629,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3630,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3631,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3632,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3633,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3634,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3635,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3636,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3637,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3638,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3633,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3634,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3635,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3636,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3637,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3638,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3639,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3640,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3640,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3641,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3642,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3643,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3644,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3645,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3646,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3647,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3648,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3649,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3650,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3651,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3652,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3653,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3654,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3655,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3656,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3642,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3643,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3644,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3645,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3646,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3647,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3648,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3649,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3650,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3651,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3652,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3653,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3654,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3655,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3656,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3657,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3658,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3659,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3660,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3661,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3662,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3663,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3664,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3665,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3666,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3667,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3668,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3669,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3670,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3671,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3672,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3673,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3674,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3675,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3676,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3677,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3678,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -3679,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3680,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3681,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3682,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3683,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3684,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3685,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3686,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3687,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3688,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -3689,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3690,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3691,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3692,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3693,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3694,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3695,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3696,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3697,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3698,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3699,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3700,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3701,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3702,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3703,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3704,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3705,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3706,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3707,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3708,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3709,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3710,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3711,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3712,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3713,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3714,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3715,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3716,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3717,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3718,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3719,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3720,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3721,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3722,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3723,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3724,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3725,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3726,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3727,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3728,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3729,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3730,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3731,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3732,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3733,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3734,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3735,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3736,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3737,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3738,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3739,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3740,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3741,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3742,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3743,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3744,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3745,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3746,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3747,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3748,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3749,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3750,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3751,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3752,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3753,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3754,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3755,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3756,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3757,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3758,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3759,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3760,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3761,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3762,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3763,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3764,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3765,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3766,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3767,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3768,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3769,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3770,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3771,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3772,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3773,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3774,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3775,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3776,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3777,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3778,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3779,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3780,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3781,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3782,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3783,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3784,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3785,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3786,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3787,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3788,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3789,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3790,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3791,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3658,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3659,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3660,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3661,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3662,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3663,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3664,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3665,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3666,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3667,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3668,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3669,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3670,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3671,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3672,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3673,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3674,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3675,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3676,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3677,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3678,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3679,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3680,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3681,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3682,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3683,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3684,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3685,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3686,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3687,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3688,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3689,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3690,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3691,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3692,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3693,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3694,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3695,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3696,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3697,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3698,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3699,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3700,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3701,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3702,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3703,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3704,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3705,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3706,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3707,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3708,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3709,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3710,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3711,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3712,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3713,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3714,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3715,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3716,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3717,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3718,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3719,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3720,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3721,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3722,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3723,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3724,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3725,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3726,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3727,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3728,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3729,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3730,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3731,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3732,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3733,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3734,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3735,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3736,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3737,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3738,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3739,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3740,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3741,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3742,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3743,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3744,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3745,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3746,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3747,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3748,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3749,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3750,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3751,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3752,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3753,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3754,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3755,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3756,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3757,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3758,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3759,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3760,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3761,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3762,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3763,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3764,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3765,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3766,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3767,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3768,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3769,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3770,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3771,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3772,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3773,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3774,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3775,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3776,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3777,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3778,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3779,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3780,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3781,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3782,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3783,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3784,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3785,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3786,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3787,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3788,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3789,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3790,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3791,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3792,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3793,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3794,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3795,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3796,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3797,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3798,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3799,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3800,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3801,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3802,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3803,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3804,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3805,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3806,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3807,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3808,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3809,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3810,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3811,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3812,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3813,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3814,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3815,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3816,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3817,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3818,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3819,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3820,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3821,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3822,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3823,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3824,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3825,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3826,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3827,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3828,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3829,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3830,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3831,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3832,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3833,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3834,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3835,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3836,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3837,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3838,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3839,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3840,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3841,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3842,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3793,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3794,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3795,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3796,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3797,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3798,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3799,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3800,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3801,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3802,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3803,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3804,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3805,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3806,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3807,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3808,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3809,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3810,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3811,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3812,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3813,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3814,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3815,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3816,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3817,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3818,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3819,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3820,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3821,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3822,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3823,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3824,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3825,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3826,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3827,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3828,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3829,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3830,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3831,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3832,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3833,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3834,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3835,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3836,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3837,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3838,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3839,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3840,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3841,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3842,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3843,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3844,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3844,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3845,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3846,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3847,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3848,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3849,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3850,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3851,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3852,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3853,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3854,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3855,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3856,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3857,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3858,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3859,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3860,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3861,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3862,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -3863,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3864,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3865,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3866,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3867,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3868,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3869,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3870,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3871,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3872,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3873,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3846,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3847,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3848,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3849,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3850,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3851,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3852,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3853,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3854,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3855,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3856,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3857,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3858,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3859,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3860,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3861,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3862,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3863,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3864,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3865,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3866,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3867,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3868,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3869,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3870,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3871,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3872,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3873,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3874,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3875,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3876,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3877,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3878,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3879,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3880,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3881,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3875,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3876,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3877,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3878,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3879,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3880,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3881,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3882,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3883,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3884,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3885,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3886,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3887,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3888,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3889,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3890,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3891,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3892,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3893,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3894,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3895,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3896,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3897,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3898,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3899,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3900,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3901,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3902,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3903,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3904,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3905,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3906,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3907,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3908,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3909,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3910,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3911,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3912,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3913,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3914,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3915,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3916,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3917,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3918,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3919,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3920,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3921,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3922,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3923,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3924,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3925,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3926,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3927,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3928,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3929,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3930,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3931,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3932,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3933,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3934,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3935,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3936,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3937,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3883,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3884,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3885,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3886,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3887,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3888,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3889,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3890,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3891,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3892,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3893,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3894,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3895,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3896,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3897,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3898,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3899,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3900,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3901,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3902,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3903,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3904,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3905,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3906,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3907,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3908,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 +3909,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3910,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3911,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3912,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3913,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3914,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3915,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3916,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3917,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3918,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3919,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3920,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3921,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3922,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 +3923,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3924,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3925,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3926,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3927,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3928,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3929,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3930,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3931,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3932,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3933,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3934,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3935,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3936,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3937,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3938,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3939,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3940,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3941,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3942,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3943,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3944,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3945,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3946,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3947,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3948,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -3949,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3950,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3951,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3952,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3953,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3954,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3955,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3956,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3957,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3958,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3959,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3960,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3961,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3962,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3963,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3964,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3965,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3939,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3940,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3941,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3942,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3943,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3944,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3945,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3946,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3947,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3948,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3949,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3950,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3951,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3952,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3953,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3954,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3955,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3956,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3957,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3958,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3959,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3960,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3961,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3962,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3963,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3964,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3965,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3966,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3967,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3968,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3967,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3968,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3969,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3970,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3971,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3972,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3973,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3974,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3975,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3976,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3977,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3978,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3979,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3980,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3981,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3970,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3971,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3972,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3973,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3974,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3975,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3976,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3977,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3978,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3979,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +3980,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3981,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 3982,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3983,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3984,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3985,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3986,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3987,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3988,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3989,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3990,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3991,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3992,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3993,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3994,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3983,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3984,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3985,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3986,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3987,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3988,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3989,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3990,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3991,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3992,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3993,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +3994,thai,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0